From 7c1716aa1ea0464185cb4a8904ee7f4d38511c04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20W=2E=20Crompton?= Date: Fri, 6 Sep 2013 01:47:14 +0200 Subject: [PATCH 001/268] This pull request solves issue #674, see it for details. --- .gitignore | 1 + lib/linguist/languages.yml | 2 +- lib/linguist/samples.json | 4 + samples/Pike/Error.pmod | 38 ++++ samples/Pike/FakeFile.pike | 360 +++++++++++++++++++++++++++++++++++++ 5 files changed, 404 insertions(+), 1 deletion(-) create mode 100644 samples/Pike/Error.pmod create mode 100644 samples/Pike/FakeFile.pike diff --git a/.gitignore b/.gitignore index b844b143..d8647b47 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ Gemfile.lock +.idea/ diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 11e7a62d..83856098 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1020,7 +1020,7 @@ Perl: Pike: type: programming color: "#066ab2" - lexer: C + lexer: Pike primary_extension: .pike extensions: - .pmod diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index b0c0f6bb..23d3c788 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -217,6 +217,10 @@ ".php", ".script!" ], + "Pike": [ + ".pmod", + ".pike" + ], "PogoScript": [ ".pogo" ], diff --git a/samples/Pike/Error.pmod b/samples/Pike/Error.pmod new file mode 100644 index 00000000..808ecb0e --- /dev/null +++ b/samples/Pike/Error.pmod @@ -0,0 +1,38 @@ +#pike __REAL_VERSION__ + +constant Generic = __builtin.GenericError; + +constant Index = __builtin.IndexError; + +constant BadArgument = __builtin.BadArgumentError; + +constant Math = __builtin.MathError; + +constant Resource = __builtin.ResourceError; + +constant Permission = __builtin.PermissionError; + +constant Decode = __builtin.DecodeError; + +constant Cpp = __builtin.CppError; + +constant Compilation = __builtin.CompilationError; + +constant MasterLoad = __builtin.MasterLoadError; + +constant ModuleLoad = __builtin.ModuleLoadError; + +//! Returns an Error object for any argument it receives. If the +//! argument already is an Error object or is empty, it does nothing. +object mkerror(mixed error) +{ + if (error == UNDEFINED) + return error; + if (objectp(error) && error->is_generic_error) + return error; + if (arrayp(error)) + return Error.Generic(@error); + if (stringp(error)) + return Error.Generic(error); + return Error.Generic(sprintf("%O", error)); +} \ No newline at end of file diff --git a/samples/Pike/FakeFile.pike b/samples/Pike/FakeFile.pike new file mode 100644 index 00000000..48f3ea64 --- /dev/null +++ b/samples/Pike/FakeFile.pike @@ -0,0 +1,360 @@ +#pike __REAL_VERSION__ + +//! A string wrapper that pretends to be a @[Stdio.File] object +//! in addition to some features of a @[Stdio.FILE] object. + + +//! This constant can be used to distinguish a FakeFile object +//! from a real @[Stdio.File] object. +constant is_fake_file = 1; + +protected string data; +protected int ptr; +protected int(0..1) r; +protected int(0..1) w; +protected int mtime; + +protected function read_cb; +protected function read_oob_cb; +protected function write_cb; +protected function write_oob_cb; +protected function close_cb; + +//! @seealso +//! @[Stdio.File()->close()] +int close(void|string direction) { + direction = lower_case(direction||"rw"); + int cr = has_value(direction, "r"); + int cw = has_value(direction, "w"); + + if(cr) { + r = 0; + } + + if(cw) { + w = 0; + } + + // FIXME: Close callback + return 1; +} + +//! @decl void create(string data, void|string type, void|int pointer) +//! @seealso +//! @[Stdio.File()->create()] +void create(string _data, void|string type, int|void _ptr) { + if(!_data) error("No data string given to FakeFile.\n"); + data = _data; + ptr = _ptr; + mtime = time(); + if(type) { + type = lower_case(type); + if(has_value(type, "r")) + r = 1; + if(has_value(type, "w")) + w = 1; + } + else + r = w = 1; +} + +protected string make_type_str() { + string type = ""; + if(r) type += "r"; + if(w) type += "w"; + return type; +} + +//! @seealso +//! @[Stdio.File()->dup()] +this_program dup() { + return this_program(data, make_type_str(), ptr); +} + +//! Always returns 0. +//! @seealso +//! @[Stdio.File()->errno()] +int errno() { return 0; } + +//! Returns size and the creation time of the string. +Stdio.Stat stat() { + Stdio.Stat st = Stdio.Stat(); + st->size = sizeof(data); + st->mtime=st->ctime=mtime; + st->atime=time(); + return st; +} + +//! @seealso +//! @[Stdio.File()->line_iterator()] +String.SplitIterator line_iterator(int|void trim) { + if(trim) + return String.SplitIterator( data-"\r", '\n' ); + return String.SplitIterator( data, '\n' ); +} + +protected mixed id; + +//! @seealso +//! @[Stdio.File()->query_id()] +mixed query_id() { return id; } + +//! @seealso +//! @[Stdio.File()->set_id()] +void set_id(mixed _id) { id = _id; } + +//! @seealso +//! @[Stdio.File()->read_function()] +function(:string) read_function(int nbytes) { + return lambda() { return read(nbytes); }; +} + +//! @seealso +//! @[Stdio.File()->peek()] +int(-1..1) peek(int|float|void timeout) { + if(!r) return -1; + if(ptr >= sizeof(data)) return 0; + return 1; +} + +//! Always returns 0. +//! @seealso +//! @[Stdio.File()->query_address()] +string query_address(void|int(0..1) is_local) { return 0; } + +//! @seealso +//! @[Stdio.File()->read()] +string read(void|int(0..) len, void|int(0..1) not_all) { + if(!r) return 0; + if (len < 0) error("Cannot read negative number of characters.\n"); + int start=ptr; + ptr += len; + if(zero_type(len) || ptr>sizeof(data)) + ptr = sizeof(data); + + // FIXME: read callback + return data[start..ptr-1]; +} + +//! @seealso +//! @[Stdio.FILE()->gets()] +string gets() { + if(!r) return 0; + string ret; + sscanf(data,"%*"+(string)ptr+"s%[^\n]",ret); + if(ret) + { + ptr+=sizeof(ret)+1; + if(ptr>sizeof(data)) + { + ptr=sizeof(data); + if(!sizeof(ret)) + ret = 0; + } + } + + // FIXME: read callback + return ret; +} + +//! @seealso +//! @[Stdio.FILE()->getchar()] +int getchar() { + if(!r) return 0; + int c; + if(catch(c=data[ptr])) + c=-1; + else + ptr++; + + // FIXME: read callback + return c; +} + +//! @seealso +//! @[Stdio.FILE()->unread()] +void unread(string s) { + if(!r) return; + if(data[ptr-sizeof(s)..ptr-1]==s) + ptr-=sizeof(s); + else + { + data=s+data[ptr..]; + ptr=0; + } +} + +//! @seealso +//! @[Stdio.File()->seek()] +int seek(int pos, void|int mult, void|int add) { + if(mult) + pos = pos*mult+add; + if(pos<0) + { + pos = sizeof(data)+pos; + if( pos < 0 ) + pos = 0; + } + ptr = pos; + if( ptr > strlen( data ) ) + ptr = strlen(data); + return ptr; +} + +//! Always returns 1. +//! @seealso +//! @[Stdio.File()->sync()] +int(1..1) sync() { return 1; } + +//! @seealso +//! @[Stdio.File()->tell()] +int tell() { return ptr; } + +//! @seealso +//! @[Stdio.File()->truncate()] +int(0..1) truncate(int length) { + data = data[..length-1]; + return sizeof(data)==length; +} + +//! @seealso +//! @[Stdio.File()->write()] +int(-1..) write(string|array(string) str, mixed ... extra) { + if(!w) return -1; + if(arrayp(str)) str=str*""; + if(sizeof(extra)) str=sprintf(str, @extra); + + if(ptr==sizeof(data)) { + data += str; + ptr = sizeof(data); + } + else if(sizeof(str)==1) + data[ptr++] = str[0]; + else { + data = data[..ptr-1] + str + data[ptr+sizeof(str)..]; + ptr += sizeof(str); + } + + // FIXME: write callback + return sizeof(str); +} + +//! @seealso +//! @[Stdio.File()->set_blocking] +void set_blocking() { + close_cb = 0; + read_cb = 0; + read_oob_cb = 0; + write_cb = 0; + write_oob_cb = 0; +} + +//! @seealso +//! @[Stdio.File()->set_blocking_keep_callbacks] +void set_blocking_keep_callbacks() { } + +//! @seealso +//! @[Stdio.File()->set_blocking] +void set_nonblocking(function rcb, function wcb, function ccb, + function rocb, function wocb) { + read_cb = rcb; + write_cb = wcb; + close_cb = ccb; + read_oob_cb = rocb; + write_oob_cb = wocb; +} + +//! @seealso +//! @[Stdio.File()->set_blocking_keep_callbacks] +void set_nonblocking_keep_callbacks() { } + + +//! @seealso +//! @[Stdio.File()->set_close_callback] +void set_close_callback(function cb) { close_cb = cb; } + +//! @seealso +//! @[Stdio.File()->set_read_callback] +void set_read_callback(function cb) { read_cb = cb; } + +//! @seealso +//! @[Stdio.File()->set_read_oob_callback] +void set_read_oob_callback(function cb) { read_oob_cb = cb; } + +//! @seealso +//! @[Stdio.File()->set_write_callback] +void set_write_callback(function cb) { write_cb = cb; } + +//! @seealso +//! @[Stdio.File()->set_write_oob_callback] +void set_write_oob_callback(function cb) { write_oob_cb = cb; } + + +//! @seealso +//! @[Stdio.File()->query_close_callback] +function query_close_callback() { return close_cb; } + +//! @seealso +//! @[Stdio.File()->query_read_callback] +function query_read_callback() { return read_cb; } + +//! @seealso +//! @[Stdio.File()->query_read_oob_callback] +function query_read_oob_callback() { return read_oob_cb; } + +//! @seealso +//! @[Stdio.File()->query_write_callback] +function query_write_callback() { return write_cb; } + +//! @seealso +//! @[Stdio.File()->query_write_oob_callback] +function query_write_oob_callback() { return write_oob_cb; } + +string _sprintf(int t) { + return t=='O' && sprintf("%O(%d,%O)", this_program, sizeof(data), + make_type_str()); +} + + +// FakeFile specials. + +//! A FakeFile can be casted to a string. +mixed cast(string to) { + switch(to) { + case "string": return data; + case "object": return this; + } + error("Can not cast object to %O.\n", to); +} + +//! Sizeof on a FakeFile returns the size of its contents. +int(0..) _sizeof() { + return sizeof(data); +} + +//! @ignore + +#define NOPE(X) mixed X (mixed ... args) { error("This is a FakeFile. %s is not available.\n", #X); } +NOPE(assign); +NOPE(async_connect); +NOPE(connect); +NOPE(connect_unix); +NOPE(open); +NOPE(open_socket); +NOPE(pipe); +NOPE(tcgetattr); +NOPE(tcsetattr); + +// Stdio.Fd +NOPE(dup2); +NOPE(lock); // We could implement this +NOPE(mode); // We could implement this +NOPE(proxy); // We could implement this +NOPE(query_fd); +NOPE(read_oob); +NOPE(set_close_on_exec); +NOPE(set_keepalive); +NOPE(trylock); // We could implement this +NOPE(write_oob); + +//! @endignore \ No newline at end of file From aa78060e41d079f68be7973cee1e7bef6f51e370 Mon Sep 17 00:00:00 2001 From: waddlesplash Date: Tue, 10 Dec 2013 10:23:13 -0500 Subject: [PATCH 002/268] Adding QMake (Make-like) language. Mostly because the file extension conflicts with that of Prolog. --- lib/linguist/languages.yml | 6 + lib/linguist/samples.json | 9869 +++++++++++++++++++---------------- samples/QMake/complex.pro | 30 + samples/QMake/functions.pri | 8 + samples/QMake/qmake.script! | 2 + samples/QMake/simple.pro | 17 + 6 files changed, 5449 insertions(+), 4483 deletions(-) create mode 100644 samples/QMake/complex.pro create mode 100644 samples/QMake/functions.pri create mode 100644 samples/QMake/qmake.script! create mode 100644 samples/QMake/simple.pro diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 4838d2e2..ad4f4c97 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1296,6 +1296,12 @@ QML: color: "#44a51c" primary_extension: .qml +QMake: + primary_extension: .pro + lexer: Text only + extensions: + - .pri + R: type: programming color: "#198ce7" diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index 83f5d00d..04af4454 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -15,6 +15,11 @@ "Arduino": [ ".ino" ], + "AsciiDoc": [ + ".adoc", + ".asc", + ".asciidoc" + ], "AutoHotkey": [ ".ahk" ], @@ -34,12 +39,6 @@ ".c", ".h" ], - "C++": [ - ".cc", - ".cpp", - ".h", - ".hpp" - ], "Ceylon": [ ".ceylon" ], @@ -67,6 +66,9 @@ "Coq": [ ".v" ], + "Creole": [ + ".creole" + ], "CSS": [ ".css" ], @@ -103,10 +105,6 @@ "fish": [ ".fish" ], - "Forth": [ - ".forth", - ".fth" - ], "GAS": [ ".s" ], @@ -152,7 +150,8 @@ ".script!" ], "JSON": [ - ".json" + ".json", + ".lock" ], "Julia": [ ".jl" @@ -163,12 +162,6 @@ "KRL": [ ".krl" ], - "Lasso": [ - ".las", - ".lasso", - ".lasso9", - ".ldml" - ], "Less": [ ".less" ], @@ -210,12 +203,12 @@ ".maxpat", ".mxt" ], + "MediaWiki": [ + ".mediawiki" + ], "Monkey": [ ".monkey" ], - "MoonScript": [ - ".moon" - ], "Nemerle": [ ".n" ], @@ -254,6 +247,9 @@ ".cls", ".p" ], + "Org": [ + ".org" + ], "Oxygene": [ ".oxygene", ".pas" @@ -299,6 +295,11 @@ ".py", ".script!" ], + "QMake": [ + ".pri", + ".pro", + ".script!" + ], "R": [ ".R", ".script!" @@ -309,6 +310,28 @@ "Ragel in Ruby Host": [ ".rl" ], + "RDoc": [ + ".rdoc" + ], + "C++": [ + ".cc", + ".cpp", + ".h", + ".hpp" + ], + "Forth": [ + ".forth", + ".fth" + ], + "Lasso": [ + ".las", + ".lasso", + ".lasso9", + ".ldml" + ], + "MoonScript": [ + ".moon" + ], "Rebol": [ ".r" ], @@ -482,8 +505,8 @@ ".gemrc" ] }, - "tokens_total": 424139, - "languages_total": 488, + "tokens_total": 426040, + "languages_total": 500, "tokens": { "ABAP": { "*/**": 1, @@ -1912,6 +1935,73 @@ "loop": 1, "Serial.print": 1 }, + "AsciiDoc": { + "Gregory": 2, + "Rom": 2, + "has": 2, + "written": 2, + "an": 2, + "AsciiDoc": 3, + "plugin": 2, + "for": 2, + "the": 2, + "Redmine": 2, + "project": 2, + "management": 2, + "application.": 2, + "https": 1, + "//github.com/foo": 1, + "-": 4, + "users/foo": 1, + "vicmd": 1, + "gif": 1, + "tag": 1, + "rom": 2, + "[": 2, + "]": 2, + "end": 1, + "berschrift": 1, + "*": 4, + "Codierungen": 1, + "sind": 1, + "verr": 1, + "ckt": 1, + "auf": 1, + "lteren": 1, + "Versionen": 1, + "von": 1, + "Ruby": 1, + "Home": 1, + "Page": 1, + "Example": 1, + "Articles": 1, + "Item": 6, + "Document": 1, + "Title": 1, + "Doc": 1, + "Writer": 1, + "": 1, + "idprefix": 1, + "id_": 1, + "Preamble": 1, + "paragraph.": 4, + "NOTE": 1, + "This": 1, + "is": 1, + "test": 1, + "only": 1, + "a": 1, + "test.": 1, + "Section": 3, + "A": 2, + "*Section": 3, + "A*": 2, + "Subsection": 1, + "B": 2, + "B*": 1, + ".Section": 1, + "list": 1 + }, "AutoHotkey": { "MsgBox": 1, "Hello": 1, @@ -5535,175 +5625,11 @@ "aeSetBeforeSleepProc": 1, "aeMain": 1, "aeDeleteEventLoop": 1, - "": 1, - "": 2, "": 2, - "//": 257, - "rfUTF8_IsContinuationbyte": 1, - "e.t.c.": 1, - "rfFReadLine_UTF8": 5, - "FILE*": 64, - "utf8": 36, - "uint32_t*": 34, - "byteLength": 197, - "bufferSize": 6, - "eof": 53, - "bytesN": 98, - "bIndex": 5, - "RF_NEWLINE_CRLF": 1, - "newLineFound": 1, - "*bufferSize": 1, - "RF_OPTION_FGETS_READBYTESN": 5, - "RF_MALLOC": 47, - "tempBuff": 6, - "RF_LF": 10, - "buff": 95, - "RF_SUCCESS": 14, - "RE_FILE_EOF": 22, - "found": 20, - "*eofReached": 14, - "LOG_ERROR": 64, - "RF_HEXEQ_UI": 7, - "rfFgetc_UTF32BE": 3, - "else//": 14, - "undo": 5, - "peek": 5, - "ahead": 5, - "file": 6, - "pointer": 5, - "fseek": 19, - "SEEK_CUR": 19, - "rfFgets_UTF32LE": 2, - "eofReached": 4, - "rfFgetc_UTF32LE": 4, - "rfFgets_UTF16BE": 2, - "rfFgetc_UTF16BE": 4, - "rfFgets_UTF16LE": 2, - "rfFgetc_UTF16LE": 4, - "rfFgets_UTF8": 2, - "rfFgetc_UTF8": 3, - "RF_HEXEQ_C": 9, - "fgetc": 9, - "check": 8, - "RE_FILE_READ": 2, - "cp": 12, - "c2": 13, - "c3": 9, - "c4": 5, - "i_READ_CHECK": 20, - "///": 4, - "success": 4, - "cc": 24, - "we": 10, - "more": 2, - "bytes": 225, - "xC0": 3, - "xC1": 1, - "RE_UTF8_INVALID_SEQUENCE_INVALID_BYTE": 6, - "RE_UTF8_INVALID_SEQUENCE_END": 6, - "rfUTF8_IsContinuationByte": 12, - "RE_UTF8_INVALID_SEQUENCE_CONBYTE": 6, - "decoded": 3, - "codepoint": 47, - "F": 38, - "xE0": 2, - "xF": 5, - "decode": 6, - "xF0": 2, - "RF_HEXGE_C": 1, - "xBF": 2, - "//invalid": 1, - "byte": 6, - "are": 6, - "xFF": 1, - "//if": 1, - "needing": 1, - "than": 5, - "swapE": 21, - "v1": 38, - "v2": 26, - "rfUTILS_Endianess": 24, - "RF_LITTLE_ENDIAN": 23, - "fread": 12, - "endianess": 40, - "needed": 10, - "rfUTILS_SwapEndianUS": 10, - "RF_HEXGE_US": 4, - "xD800": 8, - "RF_HEXLE_US": 4, - "xDFFF": 8, - "RF_HEXL_US": 8, - "RF_HEXG_US": 8, - "xDBFF": 4, - "RE_UTF16_INVALID_SEQUENCE": 20, - "RE_UTF16_NO_SURRPAIR": 2, - "xDC00": 4, - "user": 2, - "wants": 2, - "ff": 10, - "uint16_t*": 11, - "surrogate": 4, - "pair": 4, - "existence": 2, - "RF_BIG_ENDIAN": 10, - "rfUTILS_SwapEndianUI": 11, - "rfFback_UTF32BE": 2, - "i_FSEEK_CHECK": 14, - "rfFback_UTF32LE": 2, - "rfFback_UTF16BE": 2, - "rfFback_UTF16LE": 2, - "rfFback_UTF8": 2, - "depending": 1, - "number": 19, - "read": 1, - "backwards": 1, - "RE_UTF8_INVALID_SEQUENCE": 2, - "REFU_IO_H": 2, - "": 2, - "opening": 2, - "bracket": 4, - "calling": 4, - "C": 14, - "xA": 1, - "RF_CR": 1, - "xD": 1, - "REFU_WIN32_VERSION": 1, - "i_PLUSB_WIN32": 2, - "foff_rft": 2, - "off64_t": 1, - "///Fseek": 1, - "and": 15, - "Ftelll": 1, - "definitions": 1, - "rfFseek": 2, - "i_FILE_": 16, - "i_OFFSET_": 4, - "i_WHENCE_": 4, - "_fseeki64": 1, - "rfFtell": 2, - "_ftelli64": 1, - "fseeko64": 1, - "ftello64": 1, - "i_DECLIMEX_": 121, - "rfFReadLine_UTF16BE": 6, - "rfFReadLine_UTF16LE": 4, - "rfFReadLine_UTF32BE": 1, - "rfFReadLine_UTF32LE": 4, - "rfFgets_UTF32BE": 1, - "RF_IAMHERE_FOR_DOXYGEN": 22, - "rfPopen": 2, - "command": 2, - "i_rfPopen": 2, - "i_CMD_": 2, - "i_MODE_": 2, - "i_rfLMS_WRAP2": 5, - "rfPclose": 1, - "stream": 3, - "///closing": 1, - "#endif//include": 1, - "guards": 2, + "": 2, "": 1, "": 2, + "//": 257, "local": 5, "stack": 6, "memory": 4, @@ -5712,11 +5638,16 @@ "rfString_Create": 4, "i_rfString_Create": 3, "READ_VSNPRINTF_ARGS": 5, + "byteLength": 197, "rfUTF8_VerifySequence": 7, + "buff": 95, "RF_FAILURE": 24, + "LOG_ERROR": 64, "RE_STRING_INIT_FAILURE": 8, "buffAllocated": 11, + "RF_MALLOC": 47, "RF_String": 27, + "bytes": 225, "i_NVrfString_Create": 3, "i_rfString_CreateLocal1": 3, "RF_OPTION_SOURCE_ENCODING": 30, @@ -5732,7 +5663,10 @@ "#elif": 14, "RF_UTF32_LE": 3, "RF_UTF32_BE": 3, + "decode": 6, "UTF16": 4, + "rfUTILS_Endianess": 24, + "RF_LITTLE_ENDIAN": 23, "rfUTF16_Decode": 5, "rfUTF16_Decode_swap": 5, "RF_UTF16_BE//": 2, @@ -5740,13 +5674,19 @@ "copy": 4, "UTF32": 4, "into": 8, + "codepoint": 47, + "rfUTILS_SwapEndianUI": 11, + "uint32_t*": 34, "RF_UTF32_BE//": 2, + "RF_BIG_ENDIAN": 10, "": 2, "any": 3, "other": 16, + "than": 5, "UTF": 17, "8": 15, "encode": 2, + "and": 15, "them": 3, "rfUTF8_Encode": 4, "While": 2, @@ -5754,6 +5694,7 @@ "create": 2, "temporary": 4, "given": 5, + "byte": 6, "sequence": 6, "could": 2, "not": 6, @@ -5767,7 +5708,9 @@ "normally": 1, "since": 5, "here": 5, + "we": 10, "have": 2, + "check": 8, "validity": 2, "get": 4, "Error": 2, @@ -5792,6 +5735,7 @@ "Quitting": 2, "proccess": 2, "RE_LOCALMEMSTACK_INSUFFICIENT": 8, + "RE_UTF16_INVALID_SEQUENCE": 20, "i_NVrfString_CreateLocal": 3, "during": 1, "rfString_Init": 3, @@ -5801,6 +5745,8 @@ "rfString_Init_cp": 3, "RF_HEXLE_UI": 8, "RF_HEXGE_UI": 6, + "ff": 10, + "F": 38, "C0": 3, "ffff": 4, "xFC0": 4, @@ -5827,8 +5773,10 @@ "rfString_Create_f": 2, "rfString_Init_f": 2, "rfString_Create_UTF16": 2, + "endianess": 40, "rfString_Init_UTF16": 3, "utf8ByteLength": 34, + "utf8": 36, "last": 1, "utf": 1, "null": 4, @@ -5837,12 +5785,15 @@ "allocate": 1, "same": 1, "as": 4, + "else//": 14, "different": 1, "RE_INPUT": 1, "ends": 3, "rfString_Create_UTF32": 2, "rfString_Init_UTF32": 3, + "swapE": 21, "codeBuffer": 9, + "RF_HEXEQ_UI": 7, "xFEFF": 1, "big": 14, "endian": 20, @@ -5870,6 +5821,7 @@ "i_NVrfString_Init_nc": 3, "rfString_Destroy": 2, "rfString_Deinit": 3, + "uint16_t*": 11, "rfString_ToUTF16": 4, "charsN": 5, "rfUTF8_Decode": 2, @@ -5883,12 +5835,18 @@ "codePoint": 18, "RF_STRING_INDEX_OUT_OF_BOUNDS": 2, "rfString_BytePosToCodePoint": 7, + "RF_HEXEQ_C": 9, + "xC0": 3, + "xE0": 2, + "xF": 5, + "xF0": 2, "rfString_BytePosToCharPos": 4, "thisstrP": 32, "bytepos": 12, "before": 4, "charPos": 8, "byteI": 7, + "rfUTF8_IsContinuationByte": 12, "i_rfString_Equal": 3, "s1P": 2, "s2P": 2, @@ -5897,6 +5855,7 @@ "optionsP": 11, "sstr": 39, "*optionsP": 8, + "found": 20, "RF_BITFLAG_ON": 5, "RF_CASE_IGNORE": 2, "strstr": 2, @@ -5910,9 +5869,11 @@ "zero": 2, "equals": 1, "then": 1, + "are": 6, "okay": 1, "rfString_Equal": 4, "RFS_": 8, + "RF_SUCCESS": 14, "ERANGE": 1, "RE_STRING_TOFLOAT_UNDERFLOW": 1, "RE_STRING_TOFLOAT": 1, @@ -5939,6 +5900,7 @@ "sstr2": 2, "move": 12, "rfString_FindBytePos": 10, + "i_DECLIMEX_": 121, "rfString_Tokenize": 2, "sep": 3, "tokensN": 2, @@ -5976,6 +5938,7 @@ "goes": 1, "i_rfString_Remove": 6, "numberP": 1, + "number": 19, "*numberP": 1, "occurences": 5, "done": 1, @@ -6038,6 +6001,7 @@ "rfString_PruneMiddleF": 2, "got": 1, "all": 2, + "needed": 10, "i_rfString_Replace": 6, "numP": 1, "*numP": 1, @@ -6081,8 +6045,13 @@ "res2": 2, "rfString_StripEnd": 3, "rfString_Create_fUTF8": 2, + "FILE*": 64, + "eof": 53, "rfString_Init_fUTF8": 3, + "bytesN": 98, + "bufferSize": 6, "unused": 3, + "rfFReadLine_UTF8": 5, "rfString_Assign_fUTF8": 2, "FILE*f": 2, "utf8BufferSize": 4, @@ -6091,11 +6060,14 @@ "rfString_Append": 5, "rfString_Create_fUTF16": 2, "rfString_Init_fUTF16": 3, + "rfFReadLine_UTF16LE": 4, + "rfFReadLine_UTF16BE": 6, "rfString_Assign_fUTF16": 2, "rfString_Append_fUTF16": 2, "char*utf8": 3, "rfString_Create_fUTF32": 2, "rfString_Init_fUTF32": 3, + "rfFReadLine_UTF32LE": 4, "<0)>": 1, "Failure": 1, "initialize": 1, @@ -6103,6 +6075,7 @@ "Little": 1, "Endian": 1, "32": 1, + "file": 6, "bytesN=": 1, "rfString_Assign_fUTF32": 2, "rfString_Append_fUTF32": 2, @@ -6114,6 +6087,7 @@ "*encodingP": 1, "fwrite": 5, "logging": 5, + "rfUTILS_SwapEndianUS": 10, "utf32": 10, "i_WRITE_CHECK": 1, "RE_FILE_WRITE": 1, @@ -6122,12 +6096,17 @@ "RF_MODULE_STRINGS//": 1, "included": 2, "module": 3, + "": 2, "": 1, "argument": 1, "wrapping": 1, "functionality": 1, "": 1, "unicode": 2, + "opening": 2, + "bracket": 4, + "calling": 4, + "C": 14, "xFF0FFFF": 1, "rfUTF8_IsContinuationByte2": 1, "b__": 3, @@ -6167,6 +6146,7 @@ "been": 1, "created": 1, "assumed": 1, + "stream": 3, "valid": 1, "every": 1, "performs": 1, @@ -6201,6 +6181,7 @@ "*/": 1, "#pragma": 1, "pop": 1, + "RF_IAMHERE_FOR_DOXYGEN": 22, "i_rfString_CreateLocal": 2, "__VA_ARGS__": 66, "RP_SELECT_FUNC_IF_NARGIS": 5, @@ -6226,6 +6207,7 @@ "rfString_Assign": 2, "i_DESTINATION_": 2, "i_SOURCE_": 2, + "i_rfLMS_WRAP2": 5, "rfString_ToUTF8": 2, "i_STRING_": 2, "rfString_ToCstr": 2, @@ -6419,6 +6401,7 @@ "i_SELECT_RF_STRING_FWRITE": 1, "i_SELECT_RF_STRING_FWRITE3": 1, "i_STR_": 8, + "i_FILE_": 16, "i_ENCODING_": 4, "i_SELECT_RF_STRING_FWRITE2": 1, "i_SELECT_RF_STRING_FWRITE1": 1, @@ -6434,6 +6417,113 @@ "added": 1, "you": 1, "#endif//": 1, + "guards": 2, + "": 1, + "rfUTF8_IsContinuationbyte": 1, + "e.t.c.": 1, + "bIndex": 5, + "RF_NEWLINE_CRLF": 1, + "newLineFound": 1, + "*bufferSize": 1, + "RF_OPTION_FGETS_READBYTESN": 5, + "tempBuff": 6, + "RF_LF": 10, + "RE_FILE_EOF": 22, + "*eofReached": 14, + "rfFgetc_UTF32BE": 3, + "undo": 5, + "peek": 5, + "ahead": 5, + "pointer": 5, + "fseek": 19, + "SEEK_CUR": 19, + "rfFgets_UTF32LE": 2, + "eofReached": 4, + "rfFgetc_UTF32LE": 4, + "rfFgets_UTF16BE": 2, + "rfFgetc_UTF16BE": 4, + "rfFgets_UTF16LE": 2, + "rfFgetc_UTF16LE": 4, + "rfFgets_UTF8": 2, + "rfFgetc_UTF8": 3, + "fgetc": 9, + "RE_FILE_READ": 2, + "cp": 12, + "c2": 13, + "c3": 9, + "c4": 5, + "i_READ_CHECK": 20, + "///": 4, + "success": 4, + "cc": 24, + "more": 2, + "xC1": 1, + "RE_UTF8_INVALID_SEQUENCE_INVALID_BYTE": 6, + "RE_UTF8_INVALID_SEQUENCE_END": 6, + "RE_UTF8_INVALID_SEQUENCE_CONBYTE": 6, + "decoded": 3, + "RF_HEXGE_C": 1, + "xBF": 2, + "//invalid": 1, + "xFF": 1, + "//if": 1, + "needing": 1, + "v1": 38, + "v2": 26, + "fread": 12, + "RF_HEXGE_US": 4, + "xD800": 8, + "RF_HEXLE_US": 4, + "xDFFF": 8, + "RF_HEXL_US": 8, + "RF_HEXG_US": 8, + "xDBFF": 4, + "RE_UTF16_NO_SURRPAIR": 2, + "xDC00": 4, + "user": 2, + "wants": 2, + "surrogate": 4, + "pair": 4, + "existence": 2, + "rfFback_UTF32BE": 2, + "i_FSEEK_CHECK": 14, + "rfFback_UTF32LE": 2, + "rfFback_UTF16BE": 2, + "rfFback_UTF16LE": 2, + "rfFback_UTF8": 2, + "depending": 1, + "read": 1, + "backwards": 1, + "RE_UTF8_INVALID_SEQUENCE": 2, + "REFU_IO_H": 2, + "xA": 1, + "RF_CR": 1, + "xD": 1, + "REFU_WIN32_VERSION": 1, + "i_PLUSB_WIN32": 2, + "foff_rft": 2, + "off64_t": 1, + "///Fseek": 1, + "Ftelll": 1, + "definitions": 1, + "rfFseek": 2, + "i_OFFSET_": 4, + "i_WHENCE_": 4, + "_fseeki64": 1, + "rfFtell": 2, + "_ftelli64": 1, + "fseeko64": 1, + "ftello64": 1, + "rfFReadLine_UTF32BE": 1, + "rfFgets_UTF32BE": 1, + "rfPopen": 2, + "command": 2, + "i_rfPopen": 2, + "i_CMD_": 2, + "i_MODE_": 2, + "rfPclose": 1, + "///closing": 1, + "#endif//include": 1, "PY_SSIZE_T_CLEAN": 1, "Py_PYTHON_H": 1, "Python": 2, @@ -8463,2289 +8553,6 @@ "yajl_get_bytes_consumed": 1, "yajl_free_error": 1 }, - "C++": { - "class": 34, - "Bar": 2, - "{": 550, - "protected": 4, - "char": 122, - "*name": 6, - ";": 2290, - "public": 27, - "void": 150, - "hello": 2, - "(": 2422, - ")": 2424, - "}": 549, - "#include": 106, - "": 1, - "": 1, - "": 2, - "static": 260, - "Env": 13, - "*env_instance": 1, - "*": 159, - "NULL": 108, - "*Env": 1, - "instance": 4, - "if": 295, - "env_instance": 3, - "new": 9, - "return": 147, - "QObject": 2, - "QCoreApplication": 1, - "parse": 3, - "const": 166, - "**envp": 1, - "**env": 1, - "**": 2, - "QString": 20, - "envvar": 2, - "name": 21, - "value": 18, - "int": 144, - "indexOfEquals": 5, - "for": 18, - "env": 3, - "envp": 4, - "*env": 1, - "+": 50, - "envvar.indexOf": 1, - "continue": 2, - "envvar.left": 1, - "envvar.mid": 1, - "m_map.insert": 1, - "QVariantMap": 3, - "asVariantMap": 2, - "m_map": 2, - "#ifndef": 23, - "ENV_H": 3, - "#define": 190, - "": 1, - "Q_OBJECT": 1, - "*instance": 1, - "private": 12, - "#endif": 82, - "//": 238, - "GDSDBREADER_H": 3, - "": 1, - "GDS_DIR": 1, - "enum": 6, - "level": 1, - "LEVEL_ONE": 1, - "LEVEL_TWO": 1, - "LEVEL_THREE": 1, - "dbDataStructure": 2, - "label": 1, - "quint32": 3, - "depth": 1, - "userIndex": 1, - "QByteArray": 1, - "data": 2, - "This": 6, - "is": 35, - "COMPRESSED": 1, - "optimize": 1, - "ram": 1, - "and": 14, - "disk": 1, - "space": 2, - "decompressed": 1, - "quint64": 1, - "uniqueID": 1, - "QVector": 2, - "": 1, - "nextItems": 1, - "": 1, - "nextItemsIndices": 1, - "dbDataStructure*": 1, - "father": 1, - "fatherIndex": 1, - "bool": 99, - "noFatherRoot": 1, - "Used": 1, - "to": 75, - "tell": 1, - "this": 22, - "node": 1, - "the": 178, - "root": 1, - "so": 1, - "hasn": 1, - "t": 13, - "in": 9, - "argument": 1, - "list": 2, - "of": 48, - "an": 3, - "operator": 10, - "overload.": 1, - "A": 1, - "friend": 10, - "stream": 5, - "<<": 18, - "myclass.label": 2, - "myclass.depth": 2, - "myclass.userIndex": 2, - "qCompress": 2, - "myclass.data": 4, - "myclass.uniqueID": 2, - "myclass.nextItemsIndices": 2, - "myclass.fatherIndex": 2, - "myclass.noFatherRoot": 2, - "myclass.fileName": 2, - "myclass.firstLineData": 4, - "myclass.linesNumbers": 2, - "QDataStream": 2, - "&": 146, - "myclass": 1, - "//Don": 1, - "read": 1, - "it": 2, - "either": 1, - "qUncompress": 2, - "": 1, - "using": 1, - "namespace": 26, - "std": 49, - "main": 2, - "cout": 1, - "endl": 1, - "": 1, - "": 1, - "": 1, - "EC_KEY_regenerate_key": 1, - "EC_KEY": 3, - "*eckey": 2, - "BIGNUM": 9, - "*priv_key": 1, - "ok": 3, - "BN_CTX": 2, - "*ctx": 2, - "EC_POINT": 4, - "*pub_key": 1, - "eckey": 7, - "EC_GROUP": 2, - "*group": 2, - "EC_KEY_get0_group": 2, - "ctx": 26, - "BN_CTX_new": 2, - "goto": 156, - "err": 26, - "pub_key": 6, - "EC_POINT_new": 4, - "group": 12, - "EC_POINT_mul": 3, - "priv_key": 2, - "EC_KEY_set_private_key": 1, - "EC_KEY_set_public_key": 2, - "EC_POINT_free": 4, - "BN_CTX_free": 2, - "ECDSA_SIG_recover_key_GFp": 3, - "ECDSA_SIG": 3, - "*ecsig": 1, - "unsigned": 20, - "*msg": 2, - "msglen": 2, - "recid": 3, - "check": 2, - "ret": 24, - "*x": 1, - "*e": 1, - "*order": 1, - "*sor": 1, - "*eor": 1, - "*field": 1, - "*R": 1, - "*O": 1, - "*Q": 1, - "*rr": 1, - "*zero": 1, - "n": 28, - "i": 47, - "/": 13, - "-": 225, - "BN_CTX_start": 1, - "order": 8, - "BN_CTX_get": 8, - "EC_GROUP_get_order": 1, - "x": 44, - "BN_copy": 1, - "BN_mul_word": 1, - "BN_add": 1, - "ecsig": 3, - "r": 36, - "field": 3, - "EC_GROUP_get_curve_GFp": 1, - "BN_cmp": 1, - "R": 6, - "EC_POINT_set_compressed_coordinates_GFp": 1, - "%": 4, - "O": 5, - "EC_POINT_is_at_infinity": 1, - "Q": 5, - "EC_GROUP_get_degree": 1, - "e": 14, - "BN_bin2bn": 3, - "msg": 1, - "*msglen": 1, - "BN_rshift": 1, - "zero": 3, - "BN_zero": 1, - "BN_mod_sub": 1, - "rr": 4, - "BN_mod_inverse": 1, - "sor": 3, - "BN_mod_mul": 2, - "s": 9, - "eor": 3, - "BN_CTX_end": 1, - "CKey": 26, - "SetCompressedPubKey": 4, - "EC_KEY_set_conv_form": 1, - "pkey": 14, - "POINT_CONVERSION_COMPRESSED": 1, - "fCompressedPubKey": 5, - "true": 39, - "Reset": 5, - "false": 42, - "EC_KEY_new_by_curve_name": 2, - "NID_secp256k1": 2, - "throw": 4, - "key_error": 6, - "fSet": 7, - "b": 57, - "EC_KEY_dup": 1, - "b.pkey": 2, - "b.fSet": 2, - "EC_KEY_copy": 1, - "hash": 20, - "sizeof": 14, - "vchSig": 18, - "[": 201, - "]": 201, - "nSize": 2, - "vchSig.clear": 2, - "vchSig.resize": 2, - "Shrink": 1, - "fit": 1, - "actual": 1, - "size": 9, - "SignCompact": 2, - "uint256": 10, - "vector": 14, - "": 19, - "fOk": 3, - "*sig": 2, - "ECDSA_do_sign": 1, - "char*": 14, - "sig": 11, - "nBitsR": 3, - "BN_num_bits": 2, - "nBitsS": 3, - "<": 53, - "&&": 23, - "nRecId": 4, - "<4;>": 1, - "keyRec": 5, - "1": 2, - "GetPubKey": 5, - "break": 34, - "BN_bn2bin": 2, - "/8": 2, - "ECDSA_SIG_free": 2, - "SetCompactSignature": 2, - "vchSig.size": 2, - "nV": 6, - "<27>": 1, - "ECDSA_SIG_new": 1, - "EC_KEY_free": 1, - "Verify": 2, - "ECDSA_verify": 1, - "VerifyCompact": 2, - "key": 23, - "key.SetCompactSignature": 1, - "key.GetPubKey": 1, - "IsValid": 4, - "fCompr": 3, - "CSecret": 4, - "secret": 2, - "GetSecret": 2, - "key2": 1, - "key2.SetSecret": 1, - "key2.GetPubKey": 1, - "BITCOIN_KEY_H": 2, - "": 1, - "": 2, - "": 1, - "definition": 1, - "runtime_error": 2, - "explicit": 3, - "string": 10, - "str": 2, - "CKeyID": 5, - "uint160": 8, - "CScriptID": 3, - "CPubKey": 11, - "vchPubKey": 6, - "vchPubKeyIn": 2, - "a": 84, - "a.vchPubKey": 3, - "b.vchPubKey": 3, - "IMPLEMENT_SERIALIZE": 1, - "READWRITE": 1, - "GetID": 1, - "Hash160": 1, - "GetHash": 1, - "Hash": 1, - "vchPubKey.begin": 1, - "vchPubKey.end": 1, - "vchPubKey.size": 3, - "||": 17, - "IsCompressed": 2, - "Raw": 1, - "typedef": 38, - "secure_allocator": 2, - "CPrivKey": 3, - "EC_KEY*": 1, - "IsNull": 1, - "MakeNewKey": 1, - "fCompressed": 3, - "SetPrivKey": 1, - "vchPrivKey": 1, - "SetSecret": 1, - "vchSecret": 1, - "GetPrivKey": 1, - "SetPubKey": 1, - "Sign": 1, - "#ifdef": 16, - "Q_OS_LINUX": 2, - "": 1, - "#if": 44, - "QT_VERSION": 1, - "QT_VERSION_CHECK": 1, - "#error": 9, - "Something": 1, - "wrong": 1, - "with": 6, - "setup.": 1, - "Please": 3, - "report": 2, - "mailing": 1, - "argc": 2, - "char**": 2, - "argv": 2, - "google_breakpad": 1, - "ExceptionHandler": 1, - "eh": 1, - "Utils": 4, - "exceptionHandler": 2, - "qInstallMsgHandler": 1, - "messageHandler": 2, - "QApplication": 1, - "app": 1, - "STATIC_BUILD": 1, - "Q_INIT_RESOURCE": 2, - "WebKit": 1, - "InspectorBackendStub": 1, - "app.setWindowIcon": 1, - "QIcon": 1, - "app.setApplicationName": 1, - "app.setOrganizationName": 1, - "app.setOrganizationDomain": 1, - "app.setApplicationVersion": 1, - "PHANTOMJS_VERSION_STRING": 1, - "Phantom": 1, - "phantom": 1, - "phantom.execute": 1, - "app.exec": 1, - "phantom.returnValue": 1, - "INTERNAL_SUPPRESS_PROTOBUF_FIELD_DEPRECATION": 1, - "": 1, - "": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "persons": 4, - "google": 72, - "protobuf": 72, - "Descriptor*": 3, - "Person_descriptor_": 6, - "internal": 46, - "GeneratedMessageReflection*": 1, - "Person_reflection_": 4, - "protobuf_AssignDesc_protocol_2dbuffer_2eproto": 4, - "protobuf_AddDesc_protocol_2dbuffer_2eproto": 6, - "FileDescriptor*": 1, - "file": 6, - "DescriptorPool": 3, - "generated_pool": 2, - "FindFileByName": 1, - "GOOGLE_CHECK": 1, - "message_type": 1, - "Person_offsets_": 2, - "GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET": 3, - "Person": 65, - "name_": 30, - "GeneratedMessageReflection": 1, - "default_instance_": 8, - "_has_bits_": 14, - "_unknown_fields_": 5, - "MessageFactory": 3, - "generated_factory": 1, - "GOOGLE_PROTOBUF_DECLARE_ONCE": 1, - "protobuf_AssignDescriptors_once_": 2, - "inline": 39, - "protobuf_AssignDescriptorsOnce": 4, - "GoogleOnceInit": 1, - "protobuf_RegisterTypes": 2, - "InternalRegisterGeneratedMessage": 1, - "default_instance": 3, - "protobuf_ShutdownFile_protocol_2dbuffer_2eproto": 4, - "delete": 6, - "already_here": 3, - "GOOGLE_PROTOBUF_VERIFY_VERSION": 1, - "InternalAddGeneratedFile": 1, - "InternalRegisterGeneratedFile": 1, - "InitAsDefaultInstance": 3, - "OnShutdown": 1, - "struct": 8, - "StaticDescriptorInitializer_protocol_2dbuffer_2eproto": 2, - "static_descriptor_initializer_protocol_2dbuffer_2eproto_": 1, - "_MSC_VER": 3, - "kNameFieldNumber": 2, - "Message": 7, - "SharedCtor": 4, - "from": 25, - "MergeFrom": 9, - "_cached_size_": 7, - "const_cast": 3, - "string*": 11, - "kEmptyString": 12, - "memset": 2, - "SharedDtor": 3, - "SetCachedSize": 2, - "GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN": 2, - "GOOGLE_SAFE_CONCURRENT_WRITES_END": 2, - "descriptor": 2, - "*default_instance_": 1, - "Person*": 7, - "New": 4, - "Clear": 5, - "xffu": 3, - "has_name": 6, - "clear": 2, - "mutable_unknown_fields": 4, - "MergePartialFromCodedStream": 2, - "io": 4, - "CodedInputStream*": 2, - "input": 6, - "DO_": 4, - "EXPRESSION": 2, - "uint32": 2, - "tag": 6, - "while": 11, - "ReadTag": 1, - "switch": 3, - "WireFormatLite": 9, - "GetTagFieldNumber": 1, - "case": 33, - "GetTagWireType": 2, - "WIRETYPE_LENGTH_DELIMITED": 1, - "ReadString": 1, - "mutable_name": 3, - "WireFormat": 10, - "VerifyUTF8String": 3, - ".data": 3, - ".length": 3, - "PARSE": 1, - "else": 46, - "handle_uninterpreted": 2, - "ExpectAtEnd": 1, - "default": 4, - "WIRETYPE_END_GROUP": 1, - "SkipField": 1, - "#undef": 3, - "SerializeWithCachedSizes": 2, - "CodedOutputStream*": 2, - "output": 5, - "SERIALIZE": 2, - "WriteString": 1, - "unknown_fields": 7, - ".empty": 3, - "SerializeUnknownFields": 1, - "uint8*": 4, - "SerializeWithCachedSizesToArray": 2, - "target": 6, - "WriteStringToArray": 1, - "SerializeUnknownFieldsToArray": 1, - "ByteSize": 2, - "total_size": 5, - "StringSize": 1, - "ComputeUnknownFieldsSize": 1, - "GOOGLE_CHECK_NE": 2, - "source": 9, - "dynamic_cast_if_available": 1, - "": 12, - "ReflectionOps": 1, - "Merge": 1, - "from._has_bits_": 1, - "from.has_name": 1, - "set_name": 7, - "from.name": 1, - "from.unknown_fields": 1, - "CopyFrom": 5, - "IsInitialized": 3, - "Swap": 2, - "other": 7, - "swap": 3, - "_unknown_fields_.Swap": 1, - "Metadata": 3, - "GetMetadata": 2, - "metadata": 2, - "metadata.descriptor": 1, - "metadata.reflection": 1, - "PROTOBUF_protocol_2dbuffer_2eproto__INCLUDED": 3, - "": 1, - "GOOGLE_PROTOBUF_VERSION": 1, - "was": 3, - "generated": 2, - "by": 5, - "newer": 2, - "version": 4, - "protoc": 2, - "which": 2, - "incompatible": 2, - "your": 3, - "Protocol": 2, - "Buffer": 2, - "headers.": 3, - "update": 1, - "GOOGLE_PROTOBUF_MIN_PROTOC_VERSION": 1, - "older": 1, - "regenerate": 1, - "protoc.": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "virtual": 10, - "*this": 1, - "UnknownFieldSet": 2, - "UnknownFieldSet*": 1, - "GetCachedSize": 1, - "clear_name": 2, - "size_t": 5, - "release_name": 2, - "set_allocated_name": 2, - "set_has_name": 7, - "clear_has_name": 5, - "mutable": 1, - "u": 9, - "|": 8, - "*name_": 1, - "assign": 3, - "reinterpret_cast": 7, - "temp": 2, - "SWIG": 2, - "QSCICOMMAND_H": 2, - "__APPLE__": 4, - "extern": 4, - "": 1, - "": 2, - "": 1, - "QsciScintilla": 7, - "brief": 2, - "The": 8, - "QsciCommand": 7, - "represents": 1, - "editor": 1, - "command": 9, - "that": 7, - "may": 2, - "have": 1, - "one": 42, - "or": 10, - "two": 1, - "keys": 3, - "bound": 4, - "it.": 2, - "Methods": 1, - "are": 3, - "provided": 1, - "change": 1, - "remove": 1, - "binding.": 1, - "Each": 1, - "has": 2, - "user": 2, - "friendly": 2, - "description": 3, - "use": 1, - "mapping": 1, - "dialogs.": 1, - "QSCINTILLA_EXPORT": 2, - "defines": 1, - "different": 1, - "commands": 1, - "can": 3, - "be": 9, - "assigned": 1, - "key.": 1, - "Command": 4, - "Move": 26, - "down": 12, - "line.": 33, - "LineDown": 1, - "QsciScintillaBase": 100, - "SCI_LINEDOWN": 1, - "Extend": 33, - "selection": 39, - "LineDownExtend": 1, - "SCI_LINEDOWNEXTEND": 1, - "rectangular": 9, - "LineDownRectExtend": 1, - "SCI_LINEDOWNRECTEXTEND": 1, - "Scroll": 5, - "view": 2, - "LineScrollDown": 1, - "SCI_LINESCROLLDOWN": 1, - "up": 13, - "LineUp": 1, - "SCI_LINEUP": 1, - "LineUpExtend": 1, - "SCI_LINEUPEXTEND": 1, - "LineUpRectExtend": 1, - "SCI_LINEUPRECTEXTEND": 1, - "LineScrollUp": 1, - "SCI_LINESCROLLUP": 1, - "start": 11, - "document.": 8, - "ScrollToStart": 1, - "SCI_SCROLLTOSTART": 1, - "end": 18, - "ScrollToEnd": 1, - "SCI_SCROLLTOEND": 1, - "vertically": 1, - "centre": 1, - "current": 9, - "VerticalCentreCaret": 1, - "SCI_VERTICALCENTRECARET": 1, - "paragraph.": 4, - "ParaDown": 1, - "SCI_PARADOWN": 1, - "ParaDownExtend": 1, - "SCI_PARADOWNEXTEND": 1, - "ParaUp": 1, - "SCI_PARAUP": 1, - "ParaUpExtend": 1, - "SCI_PARAUPEXTEND": 1, - "left": 7, - "character.": 9, - "CharLeft": 1, - "SCI_CHARLEFT": 1, - "CharLeftExtend": 1, - "SCI_CHARLEFTEXTEND": 1, - "CharLeftRectExtend": 1, - "SCI_CHARLEFTRECTEXTEND": 1, - "right": 8, - "CharRight": 1, - "SCI_CHARRIGHT": 1, - "CharRightExtend": 1, - "SCI_CHARRIGHTEXTEND": 1, - "CharRightRectExtend": 1, - "SCI_CHARRIGHTRECTEXTEND": 1, - "word.": 9, - "WordLeft": 1, - "SCI_WORDLEFT": 1, - "WordLeftExtend": 1, - "SCI_WORDLEFTEXTEND": 1, - "WordRight": 1, - "SCI_WORDRIGHT": 1, - "WordRightExtend": 1, - "SCI_WORDRIGHTEXTEND": 1, - "previous": 5, - "WordLeftEnd": 1, - "SCI_WORDLEFTEND": 1, - "WordLeftEndExtend": 1, - "SCI_WORDLEFTENDEXTEND": 1, - "next": 6, - "WordRightEnd": 1, - "SCI_WORDRIGHTEND": 1, - "WordRightEndExtend": 1, - "SCI_WORDRIGHTENDEXTEND": 1, - "word": 6, - "part.": 4, - "WordPartLeft": 1, - "SCI_WORDPARTLEFT": 1, - "WordPartLeftExtend": 1, - "SCI_WORDPARTLEFTEXTEND": 1, - "WordPartRight": 1, - "SCI_WORDPARTRIGHT": 1, - "WordPartRightExtend": 1, - "SCI_WORDPARTRIGHTEXTEND": 1, - "document": 16, - "Home": 1, - "SCI_HOME": 1, - "HomeExtend": 1, - "SCI_HOMEEXTEND": 1, - "HomeRectExtend": 1, - "SCI_HOMERECTEXTEND": 1, - "displayed": 10, - "HomeDisplay": 1, - "SCI_HOMEDISPLAY": 1, - "HomeDisplayExtend": 1, - "SCI_HOMEDISPLAYEXTEND": 1, - "HomeWrap": 1, - "SCI_HOMEWRAP": 1, - "HomeWrapExtend": 1, - "SCI_HOMEWRAPEXTEND": 1, - "first": 8, - "visible": 6, - "character": 8, - "VCHome": 1, - "SCI_VCHOME": 1, - "VCHomeExtend": 1, - "SCI_VCHOMEEXTEND": 1, - "VCHomeRectExtend": 1, - "SCI_VCHOMERECTEXTEND": 1, - "VCHomeWrap": 1, - "SCI_VCHOMEWRAP": 1, - "VCHomeWrapExtend": 1, - "SCI_VCHOMEWRAPEXTEND": 1, - "LineEnd": 1, - "SCI_LINEEND": 1, - "LineEndExtend": 1, - "SCI_LINEENDEXTEND": 1, - "LineEndRectExtend": 1, - "SCI_LINEENDRECTEXTEND": 1, - "LineEndDisplay": 1, - "SCI_LINEENDDISPLAY": 1, - "LineEndDisplayExtend": 1, - "SCI_LINEENDDISPLAYEXTEND": 1, - "LineEndWrap": 1, - "SCI_LINEENDWRAP": 1, - "LineEndWrapExtend": 1, - "SCI_LINEENDWRAPEXTEND": 1, - "DocumentStart": 1, - "SCI_DOCUMENTSTART": 1, - "DocumentStartExtend": 1, - "SCI_DOCUMENTSTARTEXTEND": 1, - "DocumentEnd": 1, - "SCI_DOCUMENTEND": 1, - "DocumentEndExtend": 1, - "SCI_DOCUMENTENDEXTEND": 1, - "page.": 13, - "PageUp": 1, - "SCI_PAGEUP": 1, - "PageUpExtend": 1, - "SCI_PAGEUPEXTEND": 1, - "PageUpRectExtend": 1, - "SCI_PAGEUPRECTEXTEND": 1, - "PageDown": 1, - "SCI_PAGEDOWN": 1, - "PageDownExtend": 1, - "SCI_PAGEDOWNEXTEND": 1, - "PageDownRectExtend": 1, - "SCI_PAGEDOWNRECTEXTEND": 1, - "Stuttered": 4, - "move": 2, - "StutteredPageUp": 1, - "SCI_STUTTEREDPAGEUP": 1, - "extend": 2, - "StutteredPageUpExtend": 1, - "SCI_STUTTEREDPAGEUPEXTEND": 1, - "StutteredPageDown": 1, - "SCI_STUTTEREDPAGEDOWN": 1, - "StutteredPageDownExtend": 1, - "SCI_STUTTEREDPAGEDOWNEXTEND": 1, - "Delete": 10, - "SCI_CLEAR": 1, - "DeleteBack": 1, - "SCI_DELETEBACK": 1, - "not": 1, - "at": 4, - "DeleteBackNotLine": 1, - "SCI_DELETEBACKNOTLINE": 1, - "left.": 2, - "DeleteWordLeft": 1, - "SCI_DELWORDLEFT": 1, - "right.": 2, - "DeleteWordRight": 1, - "SCI_DELWORDRIGHT": 1, - "DeleteWordRightEnd": 1, - "SCI_DELWORDRIGHTEND": 1, - "line": 10, - "DeleteLineLeft": 1, - "SCI_DELLINELEFT": 1, - "DeleteLineRight": 1, - "SCI_DELLINERIGHT": 1, - "LineDelete": 1, - "SCI_LINEDELETE": 1, - "Cut": 2, - "clipboard.": 5, - "LineCut": 1, - "SCI_LINECUT": 1, - "Copy": 2, - "LineCopy": 1, - "SCI_LINECOPY": 1, - "Transpose": 1, - "lines.": 1, - "LineTranspose": 1, - "SCI_LINETRANSPOSE": 1, - "Duplicate": 2, - "LineDuplicate": 1, - "SCI_LINEDUPLICATE": 1, - "Select": 33, - "whole": 2, - "SelectAll": 1, - "SCI_SELECTALL": 1, - "selected": 2, - "lines": 3, - "MoveSelectedLinesUp": 1, - "SCI_MOVESELECTEDLINESUP": 1, - "MoveSelectedLinesDown": 1, - "SCI_MOVESELECTEDLINESDOWN": 1, - "selection.": 1, - "SelectionDuplicate": 1, - "SCI_SELECTIONDUPLICATE": 1, - "Convert": 2, - "lower": 1, - "case.": 2, - "SelectionLowerCase": 1, - "SCI_LOWERCASE": 1, - "upper": 1, - "SelectionUpperCase": 1, - "SCI_UPPERCASE": 1, - "SelectionCut": 1, - "SCI_CUT": 1, - "SelectionCopy": 1, - "SCI_COPY": 1, - "Paste": 2, - "SCI_PASTE": 1, - "Toggle": 1, - "insert/overtype.": 1, - "EditToggleOvertype": 1, - "SCI_EDITTOGGLEOVERTYPE": 1, - "Insert": 2, - "platform": 1, - "dependent": 1, - "newline.": 1, - "Newline": 1, - "SCI_NEWLINE": 1, - "formfeed.": 1, - "Formfeed": 1, - "SCI_FORMFEED": 1, - "Indent": 1, - "level.": 2, - "Tab": 1, - "SCI_TAB": 1, - "De": 1, - "indent": 1, - "Backtab": 1, - "SCI_BACKTAB": 1, - "Cancel": 2, - "any": 5, - "operation.": 1, - "SCI_CANCEL": 1, - "Undo": 2, - "last": 4, - "command.": 5, - "SCI_UNDO": 1, - "Redo": 2, - "SCI_REDO": 1, - "Zoom": 2, - "in.": 1, - "ZoomIn": 1, - "SCI_ZOOMIN": 1, - "out.": 1, - "ZoomOut": 1, - "SCI_ZOOMOUT": 1, - "Return": 3, - "will": 2, - "executed": 1, - "instance.": 2, - "scicmd": 2, - "Execute": 1, - "execute": 1, - "Binds": 2, - "If": 4, - "then": 6, - "binding": 3, - "removed.": 2, - "invalid": 5, - "unchanged.": 1, - "Valid": 1, - "control": 1, - "c": 50, - "Key_Down": 1, - "Key_Up": 1, - "Key_Left": 1, - "Key_Right": 1, - "Key_Home": 1, - "Key_End": 1, - "Key_PageUp": 1, - "Key_PageDown": 1, - "Key_Delete": 1, - "Key_Insert": 1, - "Key_Escape": 1, - "Key_Backspace": 1, - "Key_Tab": 1, - "Key_Return.": 1, - "Keys": 1, - "modified": 2, - "combination": 1, - "SHIFT": 1, - "CTRL": 1, - "ALT": 1, - "META.": 1, - "sa": 8, - "setAlternateKey": 3, - "validKey": 3, - "setKey": 3, - "alternate": 3, - "altkey": 3, - "alternateKey": 3, - "currently": 2, - "returned.": 4, - "qkey": 2, - "qaltkey": 2, - "valid": 2, - "QsciCommandSet": 1, - "*qs": 1, - "cmd": 1, - "*desc": 1, - "bindKey": 1, - "qk": 1, - "scik": 1, - "*qsCmd": 1, - "scikey": 1, - "scialtkey": 1, - "*descCmd": 1, - "QSCIPRINTER_H": 2, - "": 1, - "": 1, - "QT_BEGIN_NAMESPACE": 1, - "QRect": 2, - "QPainter": 2, - "QT_END_NAMESPACE": 1, - "QsciPrinter": 9, - "sub": 2, - "Qt": 1, - "QPrinter": 3, - "able": 1, - "print": 4, - "text": 5, - "Scintilla": 2, - "further": 1, - "classed": 1, - "alter": 1, - "layout": 1, - "adding": 2, - "headers": 3, - "footers": 2, - "example.": 1, - "Constructs": 1, - "printer": 1, - "paint": 1, - "device": 1, - "mode": 4, - "mode.": 1, - "PrinterMode": 1, - "ScreenResolution": 1, - "Destroys": 1, - "Format": 1, - "page": 4, - "example": 1, - "before": 1, - "drawn": 2, - "on": 1, - "painter": 4, - "used": 4, - "add": 3, - "customised": 2, - "graphics.": 2, - "drawing": 4, - "actually": 1, - "being": 2, - "rather": 1, - "than": 1, - "sized.": 1, - "methods": 1, - "must": 1, - "only": 1, - "called": 1, - "when": 5, - "true.": 1, - "area": 5, - "draw": 1, - "text.": 3, - "should": 1, - "necessary": 1, - "reserve": 1, - "By": 1, - "relative": 1, - "printable": 1, - "Use": 1, - "setFullPage": 1, - "because": 2, - "calling": 1, - "printRange": 2, - "you": 1, - "want": 2, - "try": 1, - "over": 1, - "pagenr": 2, - "number": 3, - "numbered": 1, - "formatPage": 1, - "points": 2, - "each": 2, - "font": 2, - "printing.": 2, - "setMagnification": 2, - "magnification": 3, - "mag": 2, - "Sets": 2, - "printing": 2, - "magnification.": 1, - "Print": 1, - "range": 1, - "qsb.": 1, - "negative": 2, - "signifies": 2, - "returned": 2, - "there": 1, - "no": 1, - "error.": 1, - "*qsb": 1, - "wrap": 4, - "WrapWord.": 1, - "setWrapMode": 2, - "WrapMode": 3, - "wrapMode": 2, - "wmode.": 1, - "wmode": 1, - "v8": 9, - "Scanner": 16, - "UnicodeCache*": 4, - "unicode_cache": 3, - "unicode_cache_": 10, - "octal_pos_": 5, - "Location": 14, - "harmony_scoping_": 4, - "harmony_modules_": 4, - "Initialize": 4, - "Utf16CharacterStream*": 3, - "source_": 7, - "Init": 3, - "has_line_terminator_before_next_": 9, - "SkipWhiteSpace": 4, - "Scan": 5, - "uc32": 19, - "ScanHexNumber": 2, - "expected_length": 4, - "ASSERT": 17, - "prevent": 1, - "overflow": 1, - "digits": 3, - "c0_": 64, - "d": 8, - "HexValue": 2, - "j": 4, - "PushBack": 8, - "Advance": 44, - "STATIC_ASSERT": 5, - "Token": 212, - "NUM_TOKENS": 1, - "byte": 1, - "one_char_tokens": 2, - "ILLEGAL": 120, - "LPAREN": 2, - "RPAREN": 2, - "COMMA": 2, - "COLON": 2, - "SEMICOLON": 2, - "CONDITIONAL": 2, - "f": 5, - "LBRACK": 2, - "RBRACK": 2, - "LBRACE": 2, - "RBRACE": 2, - "BIT_NOT": 2, - "Value": 23, - "Next": 3, - "current_": 2, - "next_": 2, - "has_multiline_comment_before_next_": 5, - "static_cast": 7, - "token": 64, - "": 1, - "pos": 12, - "source_pos": 10, - "next_.token": 3, - "next_.location.beg_pos": 3, - "next_.location.end_pos": 4, - "current_.token": 4, - "IsByteOrderMark": 2, - "xFEFF": 1, - "xFFFE": 1, - "start_position": 2, - "IsWhiteSpace": 2, - "IsLineTerminator": 6, - "SkipSingleLineComment": 6, - "undo": 4, - "WHITESPACE": 6, - "SkipMultiLineComment": 3, - "ch": 5, - "ScanHtmlComment": 3, - "LT": 2, - "next_.literal_chars": 13, - "do": 4, - "ScanString": 3, - "LTE": 1, - "ASSIGN_SHL": 1, - "SHL": 1, - "GTE": 1, - "ASSIGN_SAR": 1, - "ASSIGN_SHR": 1, - "SHR": 1, - "SAR": 1, - "GT": 1, - "EQ_STRICT": 1, - "EQ": 1, - "ASSIGN": 1, - "NE_STRICT": 1, - "NE": 1, - "NOT": 1, - "INC": 1, - "ASSIGN_ADD": 1, - "ADD": 1, - "DEC": 1, - "ASSIGN_SUB": 1, - "SUB": 1, - "ASSIGN_MUL": 1, - "MUL": 1, - "ASSIGN_MOD": 1, - "MOD": 1, - "ASSIGN_DIV": 1, - "DIV": 1, - "AND": 1, - "ASSIGN_BIT_AND": 1, - "BIT_AND": 1, - "OR": 1, - "ASSIGN_BIT_OR": 1, - "BIT_OR": 1, - "ASSIGN_BIT_XOR": 1, - "BIT_XOR": 1, - "IsDecimalDigit": 2, - "ScanNumber": 3, - "PERIOD": 1, - "IsIdentifierStart": 2, - "ScanIdentifierOrKeyword": 2, - "EOS": 1, - "SeekForward": 4, - "current_pos": 4, - "ASSERT_EQ": 1, - "ScanEscape": 2, - "IsCarriageReturn": 2, - "IsLineFeed": 2, - "fall": 2, - "through": 2, - "v": 3, - "xx": 1, - "xxx": 1, - "error": 1, - "immediately": 1, - "octal": 1, - "escape": 1, - "quote": 3, - "consume": 2, - "LiteralScope": 4, - "literal": 2, - ".": 2, - "X": 2, - "E": 3, - "l": 1, - "p": 5, - "w": 1, - "y": 13, - "keyword": 1, - "Unescaped": 1, - "in_character_class": 2, - "AddLiteralCharAdvance": 3, - "literal.Complete": 2, - "ScanLiteralUnicodeEscape": 3, - "V8_SCANNER_H_": 3, - "ParsingFlags": 1, - "kNoParsingFlags": 1, - "kLanguageModeMask": 4, - "kAllowLazy": 1, - "kAllowNativesSyntax": 1, - "kAllowModules": 1, - "CLASSIC_MODE": 2, - "STRICT_MODE": 2, - "EXTENDED_MODE": 2, - "detect": 1, - "x16": 1, - "x36.": 1, - "Utf16CharacterStream": 3, - "pos_": 6, - "buffer_cursor_": 5, - "buffer_end_": 3, - "ReadBlock": 2, - "": 1, - "kEndOfInput": 2, - "code_unit_count": 7, - "buffered_chars": 2, - "SlowSeekForward": 2, - "int32_t": 1, - "code_unit": 6, - "uc16*": 3, - "UnicodeCache": 3, - "unibrow": 11, - "Utf8InputBuffer": 2, - "<1024>": 2, - "Utf8Decoder": 2, - "StaticResource": 2, - "": 2, - "utf8_decoder": 1, - "utf8_decoder_": 2, - "uchar": 4, - "kIsIdentifierStart.get": 1, - "IsIdentifierPart": 1, - "kIsIdentifierPart.get": 1, - "kIsLineTerminator.get": 1, - "kIsWhiteSpace.get": 1, - "Predicate": 4, - "": 1, - "128": 4, - "kIsIdentifierStart": 1, - "": 1, - "kIsIdentifierPart": 1, - "": 1, - "kIsLineTerminator": 1, - "": 1, - "kIsWhiteSpace": 1, - "DISALLOW_COPY_AND_ASSIGN": 2, - "LiteralBuffer": 6, - "is_ascii_": 10, - "position_": 17, - "backing_store_": 7, - "backing_store_.length": 4, - "backing_store_.Dispose": 3, - "INLINE": 2, - "AddChar": 2, - "uint32_t": 8, - "ExpandBuffer": 2, - "kMaxAsciiCharCodeU": 1, - "": 6, - "kASCIISize": 1, - "ConvertToUtf16": 2, - "*reinterpret_cast": 1, - "": 2, - "kUC16Size": 2, - "is_ascii": 3, - "Vector": 13, - "uc16": 5, - "utf16_literal": 3, - "backing_store_.start": 5, - "ascii_literal": 3, - "length": 8, - "kInitialCapacity": 2, - "kGrowthFactory": 2, - "kMinConversionSlack": 1, - "kMaxGrowth": 2, - "MB": 1, - "NewCapacity": 3, - "min_capacity": 2, - "capacity": 3, - "Max": 1, - "new_capacity": 2, - "Min": 1, - "new_store": 6, - "memcpy": 1, - "new_store.start": 3, - "new_content_size": 4, - "src": 2, - "": 1, - "dst": 2, - "Scanner*": 2, - "self": 5, - "scanner_": 5, - "complete_": 4, - "StartLiteral": 2, - "DropLiteral": 2, - "Complete": 1, - "TerminateLiteral": 2, - "beg_pos": 5, - "end_pos": 4, - "kNoOctalLocation": 1, - "scanner_contants": 1, - "current_token": 1, - "location": 4, - "current_.location": 2, - "literal_ascii_string": 1, - "ASSERT_NOT_NULL": 9, - "current_.literal_chars": 11, - "literal_utf16_string": 1, - "is_literal_ascii": 1, - "literal_length": 1, - "literal_contains_escapes": 1, - "source_length": 3, - "location.end_pos": 1, - "location.beg_pos": 1, - "STRING": 1, - "peek": 1, - "peek_location": 1, - "next_.location": 1, - "next_literal_ascii_string": 1, - "next_literal_utf16_string": 1, - "is_next_literal_ascii": 1, - "next_literal_length": 1, - "kCharacterLookaheadBufferSize": 3, - "ScanOctalEscape": 1, - "octal_position": 1, - "clear_octal_position": 1, - "HarmonyScoping": 1, - "SetHarmonyScoping": 1, - "scoping": 2, - "HarmonyModules": 1, - "SetHarmonyModules": 1, - "modules": 2, - "HasAnyLineTerminatorBeforeNext": 1, - "ScanRegExpPattern": 1, - "seen_equal": 1, - "ScanRegExpFlags": 1, - "IsIdentifier": 1, - "CharacterStream*": 1, - "buffer": 1, - "TokenDesc": 3, - "LiteralBuffer*": 2, - "literal_chars": 1, - "free_buffer": 3, - "literal_buffer1_": 3, - "literal_buffer2_": 2, - "AddLiteralChar": 2, - "tok": 2, - "else_": 2, - "ScanDecimalDigits": 1, - "seen_period": 1, - "ScanIdentifierSuffix": 1, - "LiteralScope*": 1, - "ScanIdentifierUnicodeEscape": 1, - "desc": 2, - "as": 1, - "look": 1, - "ahead": 1, - "UTILS_H": 3, - "": 1, - "": 1, - "": 1, - "QTemporaryFile": 1, - "showUsage": 1, - "QtMsgType": 1, - "type": 6, - "dump_path": 1, - "minidump_id": 1, - "void*": 1, - "context": 8, - "succeeded": 1, - "QVariant": 1, - "coffee2js": 1, - "script": 1, - "injectJsInFrame": 2, - "jsFilePath": 5, - "libraryPath": 5, - "QWebFrame": 4, - "*targetFrame": 4, - "startingScript": 2, - "Encoding": 3, - "jsFileEnc": 2, - "readResourceFileUtf8": 1, - "resourceFilePath": 1, - "loadJSForDebug": 2, - "autorun": 2, - "cleanupFromDebug": 1, - "findScript": 1, - "jsFromScriptFile": 1, - "scriptPath": 1, - "enc": 1, - "shouldn": 1, - "instantiated": 1, - "QTemporaryFile*": 2, - "m_tempHarness": 1, - "We": 1, - "make": 1, - "sure": 1, - "clean": 1, - "after": 1, - "ourselves": 1, - "m_tempWrapper": 1, - "V8_DECLARE_ONCE": 1, - "init_once": 2, - "V8": 21, - "is_running_": 6, - "has_been_set_up_": 4, - "has_been_disposed_": 6, - "has_fatal_error_": 5, - "use_crankshaft_": 6, - "List": 3, - "": 3, - "call_completed_callbacks_": 16, - "LazyMutex": 1, - "entropy_mutex": 1, - "LAZY_MUTEX_INITIALIZER": 1, - "EntropySource": 3, - "entropy_source": 4, - "Deserializer*": 2, - "des": 3, - "FlagList": 1, - "EnforceFlagImplications": 1, - "InitializeOncePerProcess": 4, - "Isolate": 9, - "CurrentPerIsolateThreadData": 4, - "EnterDefaultIsolate": 1, - "thread_id": 1, - ".Equals": 1, - "ThreadId": 1, - "Current": 5, - "isolate": 15, - "IsDead": 2, - "Isolate*": 6, - "SetFatalError": 2, - "TearDown": 5, - "IsDefaultIsolate": 1, - "ElementsAccessor": 2, - "LOperand": 2, - "TearDownCaches": 1, - "RegisteredExtension": 1, - "UnregisterAll": 1, - "OS": 3, - "seed_random": 2, - "uint32_t*": 2, - "state": 15, - "FLAG_random_seed": 2, - "val": 3, - "ScopedLock": 1, - "lock": 1, - "entropy_mutex.Pointer": 1, - "random": 1, - "random_base": 3, - "xFFFF": 2, - "FFFF": 1, - "SetEntropySource": 2, - "SetReturnAddressLocationResolver": 3, - "ReturnAddressLocationResolver": 2, - "resolver": 3, - "StackFrame": 1, - "Random": 3, - "Context*": 4, - "IsGlobalContext": 1, - "ByteArray*": 1, - "seed": 2, - "random_seed": 1, - "": 1, - "GetDataStartAddress": 1, - "RandomPrivate": 2, - "private_random_seed": 1, - "IdleNotification": 3, - "hint": 3, - "FLAG_use_idle_notification": 1, - "HEAP": 1, - "AddCallCompletedCallback": 2, - "CallCompletedCallback": 4, - "callback": 7, - "Lazy": 1, - "init.": 1, - "Add": 1, - "RemoveCallCompletedCallback": 2, - "Remove": 1, - "FireCallCompletedCallback": 2, - "HandleScopeImplementer*": 1, - "handle_scope_implementer": 5, - "CallDepthIsZero": 1, - "IncrementCallDepth": 1, - "DecrementCallDepth": 1, - "union": 1, - "double": 23, - "double_value": 1, - "uint64_t": 2, - "uint64_t_value": 1, - "double_int_union": 2, - "Object*": 4, - "FillHeapNumberWithRandom": 2, - "heap_number": 4, - "random_bits": 2, - "binary_million": 3, - "r.double_value": 3, - "r.uint64_t_value": 1, - "HeapNumber": 1, - "cast": 1, - "set_value": 1, - "InitializeOncePerProcessImpl": 3, - "SetUp": 4, - "FLAG_crankshaft": 1, - "Serializer": 1, - "enabled": 1, - "CPU": 2, - "SupportsCrankshaft": 1, - "PostSetUp": 1, - "RuntimeProfiler": 1, - "GlobalSetUp": 1, - "FLAG_stress_compaction": 1, - "FLAG_force_marking_deque_overflows": 1, - "FLAG_gc_global": 1, - "FLAG_max_new_space_size": 1, - "kPageSizeBits": 1, - "SetUpCaches": 1, - "SetUpJSCallerSavedCodeData": 1, - "SamplerRegistry": 1, - "ExternalReference": 1, - "CallOnce": 1, - "V8_V8_H_": 3, - "defined": 21, - "GOOGLE3": 2, - "DEBUG": 3, - "NDEBUG": 4, - "both": 1, - "set": 1, - "Deserializer": 1, - "AllStatic": 1, - "IsRunning": 1, - "UseCrankshaft": 1, - "FatalProcessOutOfMemory": 1, - "take_snapshot": 1, - "NilValue": 1, - "kNullValue": 1, - "kUndefinedValue": 1, - "EqualityKind": 1, - "kStrictEquality": 1, - "kNonStrictEquality": 1, - "PY_SSIZE_T_CLEAN": 1, - "Py_PYTHON_H": 1, - "Python": 1, - "needed": 1, - "compile": 1, - "C": 1, - "extensions": 1, - "please": 1, - "install": 1, - "development": 1, - "Python.": 1, - "#else": 24, - "": 1, - "offsetof": 2, - "member": 2, - "type*": 1, - "WIN32": 2, - "MS_WINDOWS": 2, - "__stdcall": 2, - "__cdecl": 2, - "__fastcall": 2, - "DL_IMPORT": 2, - "DL_EXPORT": 2, - "PY_LONG_LONG": 5, - "LONG_LONG": 1, - "PY_VERSION_HEX": 9, - "METH_COEXIST": 1, - "PyDict_CheckExact": 1, - "op": 6, - "Py_TYPE": 4, - "PyDict_Type": 1, - "PyDict_Contains": 1, - "o": 20, - "PySequence_Contains": 1, - "Py_ssize_t": 17, - "PY_SSIZE_T_MAX": 1, - "INT_MAX": 1, - "PY_SSIZE_T_MIN": 1, - "INT_MIN": 1, - "PY_FORMAT_SIZE_T": 1, - "PyInt_FromSsize_t": 2, - "z": 46, - "PyInt_FromLong": 13, - "PyInt_AsSsize_t": 2, - "PyInt_AsLong": 2, - "PyNumber_Index": 1, - "PyNumber_Int": 1, - "PyIndex_Check": 1, - "PyNumber_Check": 1, - "PyErr_WarnEx": 1, - "category": 2, - "message": 2, - "stacklevel": 1, - "PyErr_Warn": 1, - "Py_REFCNT": 1, - "ob": 6, - "PyObject*": 16, - "ob_refcnt": 1, - "ob_type": 7, - "Py_SIZE": 1, - "PyVarObject*": 1, - "ob_size": 1, - "PyVarObject_HEAD_INIT": 1, - "PyObject_HEAD_INIT": 1, - "PyType_Modified": 1, - "*buf": 1, - "PyObject": 221, - "*obj": 2, - "len": 1, - "itemsize": 2, - "readonly": 2, - "ndim": 2, - "*format": 1, - "*shape": 1, - "*strides": 1, - "*suboffsets": 1, - "*internal": 1, - "Py_buffer": 5, - "PyBUF_SIMPLE": 1, - "PyBUF_WRITABLE": 1, - "PyBUF_FORMAT": 1, - "PyBUF_ND": 2, - "PyBUF_STRIDES": 5, - "PyBUF_C_CONTIGUOUS": 3, - "PyBUF_F_CONTIGUOUS": 3, - "PyBUF_ANY_CONTIGUOUS": 1, - "PyBUF_INDIRECT": 1, - "PY_MAJOR_VERSION": 10, - "__Pyx_BUILTIN_MODULE_NAME": 2, - "Py_TPFLAGS_CHECKTYPES": 1, - "Py_TPFLAGS_HAVE_INDEX": 1, - "Py_TPFLAGS_HAVE_NEWBUFFER": 1, - "PyBaseString_Type": 1, - "PyUnicode_Type": 2, - "PyStringObject": 2, - "PyUnicodeObject": 1, - "PyString_Type": 2, - "PyString_Check": 2, - "PyUnicode_Check": 1, - "PyString_CheckExact": 2, - "PyUnicode_CheckExact": 1, - "PyBytesObject": 1, - "PyBytes_Type": 1, - "PyBytes_Check": 1, - "PyBytes_CheckExact": 1, - "PyBytes_FromString": 2, - "PyString_FromString": 1, - "PyBytes_FromStringAndSize": 1, - "PyString_FromStringAndSize": 1, - "PyBytes_FromFormat": 1, - "PyString_FromFormat": 1, - "PyBytes_DecodeEscape": 1, - "PyString_DecodeEscape": 1, - "PyBytes_AsString": 2, - "PyString_AsString": 1, - "PyBytes_AsStringAndSize": 1, - "PyString_AsStringAndSize": 1, - "PyBytes_Size": 1, - "PyString_Size": 1, - "PyBytes_AS_STRING": 1, - "PyString_AS_STRING": 1, - "PyBytes_GET_SIZE": 1, - "PyString_GET_SIZE": 1, - "PyBytes_Repr": 1, - "PyString_Repr": 1, - "PyBytes_Concat": 1, - "PyString_Concat": 1, - "PyBytes_ConcatAndDel": 1, - "PyString_ConcatAndDel": 1, - "PySet_Check": 1, - "obj": 42, - "PyObject_TypeCheck": 3, - "PySet_Type": 2, - "PyFrozenSet_Check": 1, - "PyFrozenSet_Type": 1, - "PySet_CheckExact": 2, - "__Pyx_TypeCheck": 1, - "PyTypeObject": 2, - "PyIntObject": 1, - "PyLongObject": 2, - "PyInt_Type": 1, - "PyLong_Type": 1, - "PyInt_Check": 1, - "PyLong_Check": 1, - "PyInt_CheckExact": 1, - "PyLong_CheckExact": 1, - "PyInt_FromString": 1, - "PyLong_FromString": 1, - "PyInt_FromUnicode": 1, - "PyLong_FromUnicode": 1, - "PyLong_FromLong": 1, - "PyInt_FromSize_t": 1, - "PyLong_FromSize_t": 1, - "PyLong_FromSsize_t": 1, - "PyLong_AsLong": 1, - "PyInt_AS_LONG": 1, - "PyLong_AS_LONG": 1, - "PyLong_AsSsize_t": 1, - "PyInt_AsUnsignedLongMask": 1, - "PyLong_AsUnsignedLongMask": 1, - "PyInt_AsUnsignedLongLongMask": 1, - "PyLong_AsUnsignedLongLongMask": 1, - "PyBoolObject": 1, - "__Pyx_PyNumber_Divide": 2, - "PyNumber_TrueDivide": 1, - "__Pyx_PyNumber_InPlaceDivide": 2, - "PyNumber_InPlaceTrueDivide": 1, - "PyNumber_Divide": 1, - "PyNumber_InPlaceDivide": 1, - "__Pyx_PySequence_GetSlice": 2, - "PySequence_GetSlice": 2, - "__Pyx_PySequence_SetSlice": 2, - "PySequence_SetSlice": 2, - "__Pyx_PySequence_DelSlice": 2, - "PySequence_DelSlice": 2, - "unlikely": 69, - "PyErr_SetString": 4, - "PyExc_SystemError": 3, - "likely": 15, - "tp_as_mapping": 3, - "PyErr_Format": 4, - "PyExc_TypeError": 5, - "tp_name": 4, - "PyMethod_New": 2, - "func": 3, - "klass": 1, - "PyInstanceMethod_New": 1, - "__Pyx_GetAttrString": 2, - "PyObject_GetAttrString": 3, - "__Pyx_SetAttrString": 2, - "PyObject_SetAttrString": 2, - "__Pyx_DelAttrString": 2, - "PyObject_DelAttrString": 2, - "__Pyx_NAMESTR": 3, - "__Pyx_DOCSTR": 3, - "__cplusplus": 10, - "__PYX_EXTERN_C": 2, - "_USE_MATH_DEFINES": 1, - "": 1, - "__PYX_HAVE_API__wrapper_inner": 1, - "PYREX_WITHOUT_ASSERTIONS": 1, - "CYTHON_WITHOUT_ASSERTIONS": 1, - "CYTHON_INLINE": 68, - "__GNUC__": 5, - "__inline__": 1, - "#elif": 3, - "__inline": 1, - "__STDC_VERSION__": 2, - "L": 1, - "CYTHON_UNUSED": 7, - "**p": 1, - "*s": 1, - "long": 5, - "encoding": 1, - "is_unicode": 1, - "is_str": 1, - "intern": 1, - "__Pyx_StringTabEntry": 1, - "__Pyx_PyBytes_FromUString": 1, - "__Pyx_PyBytes_AsUString": 1, - "__Pyx_PyBool_FromLong": 1, - "Py_INCREF": 3, - "Py_True": 2, - "Py_False": 2, - "__Pyx_PyObject_IsTrue": 8, - "__Pyx_PyNumber_Int": 1, - "__Pyx_PyIndex_AsSsize_t": 1, - "__Pyx_PyInt_FromSize_t": 1, - "__Pyx_PyInt_AsSize_t": 1, - "__pyx_PyFloat_AsDouble": 3, - "PyFloat_CheckExact": 1, - "PyFloat_AS_DOUBLE": 1, - "PyFloat_AsDouble": 1, - "__GNUC_MINOR__": 1, - "__builtin_expect": 2, - "*__pyx_m": 1, - "*__pyx_b": 1, - "*__pyx_empty_tuple": 1, - "*__pyx_empty_bytes": 1, - "__pyx_lineno": 80, - "__pyx_clineno": 80, - "__pyx_cfilenm": 1, - "__FILE__": 2, - "*__pyx_filename": 1, - "CYTHON_CCOMPLEX": 12, - "_Complex_I": 3, - "": 1, - "": 1, - "__sun__": 1, - "fj": 1, - "*__pyx_f": 1, - "npy_int8": 1, - "__pyx_t_5numpy_int8_t": 1, - "npy_int16": 1, - "__pyx_t_5numpy_int16_t": 1, - "npy_int32": 1, - "__pyx_t_5numpy_int32_t": 1, - "npy_int64": 1, - "__pyx_t_5numpy_int64_t": 1, - "npy_uint8": 1, - "__pyx_t_5numpy_uint8_t": 1, - "npy_uint16": 1, - "__pyx_t_5numpy_uint16_t": 1, - "npy_uint32": 1, - "__pyx_t_5numpy_uint32_t": 1, - "npy_uint64": 1, - "__pyx_t_5numpy_uint64_t": 1, - "npy_float32": 1, - "__pyx_t_5numpy_float32_t": 1, - "npy_float64": 1, - "__pyx_t_5numpy_float64_t": 1, - "npy_long": 1, - "__pyx_t_5numpy_int_t": 1, - "npy_longlong": 1, - "__pyx_t_5numpy_long_t": 1, - "npy_intp": 10, - "__pyx_t_5numpy_intp_t": 1, - "npy_uintp": 1, - "__pyx_t_5numpy_uintp_t": 1, - "npy_ulong": 1, - "__pyx_t_5numpy_uint_t": 1, - "npy_ulonglong": 1, - "__pyx_t_5numpy_ulong_t": 1, - "npy_double": 2, - "__pyx_t_5numpy_float_t": 1, - "__pyx_t_5numpy_double_t": 1, - "npy_longdouble": 1, - "__pyx_t_5numpy_longdouble_t": 1, - "complex": 2, - "float": 7, - "__pyx_t_float_complex": 27, - "_Complex": 2, - "real": 2, - "imag": 2, - "__pyx_t_double_complex": 27, - "npy_cfloat": 1, - "__pyx_t_5numpy_cfloat_t": 1, - "npy_cdouble": 2, - "__pyx_t_5numpy_cdouble_t": 1, - "npy_clongdouble": 1, - "__pyx_t_5numpy_clongdouble_t": 1, - "__pyx_t_5numpy_complex_t": 1, - "CYTHON_REFNANNY": 3, - "__Pyx_RefNannyAPIStruct": 4, - "*__Pyx_RefNanny": 1, - "__Pyx_RefNannyImportAPI": 1, - "*modname": 1, - "*m": 1, - "*p": 1, - "*r": 1, - "m": 4, - "PyImport_ImportModule": 1, - "modname": 1, - "PyLong_AsVoidPtr": 1, - "Py_XDECREF": 3, - "__Pyx_RefNannySetupContext": 13, - "*__pyx_refnanny": 1, - "__Pyx_RefNanny": 6, - "SetupContext": 1, - "__LINE__": 84, - "__Pyx_RefNannyFinishContext": 12, - "FinishContext": 1, - "__pyx_refnanny": 5, - "__Pyx_INCREF": 36, - "INCREF": 1, - "__Pyx_DECREF": 66, - "DECREF": 1, - "__Pyx_GOTREF": 60, - "GOTREF": 1, - "__Pyx_GIVEREF": 10, - "GIVEREF": 1, - "__Pyx_XDECREF": 26, - "Py_DECREF": 1, - "__Pyx_XGIVEREF": 7, - "__Pyx_XGOTREF": 1, - "__Pyx_TypeTest": 4, - "*type": 3, - "*__Pyx_GetName": 1, - "*dict": 1, - "__Pyx_ErrRestore": 1, - "*value": 2, - "*tb": 2, - "__Pyx_ErrFetch": 1, - "**type": 1, - "**value": 1, - "**tb": 1, - "__Pyx_Raise": 8, - "__Pyx_RaiseNoneNotIterableError": 1, - "__Pyx_RaiseNeedMoreValuesError": 1, - "index": 2, - "__Pyx_RaiseTooManyValuesError": 1, - "expected": 1, - "__Pyx_UnpackTupleError": 2, - "*__Pyx_Import": 1, - "*from_list": 1, - "__Pyx_Print": 1, - "__pyx_print": 1, - "__pyx_print_kwargs": 1, - "__Pyx_PrintOne": 4, - "*o": 1, - "*__Pyx_PyInt_to_py_Py_intptr_t": 1, - "Py_intptr_t": 1, - "__Pyx_CREAL": 4, - ".real": 3, - "__Pyx_CIMAG": 4, - ".imag": 3, - "__real__": 1, - "__imag__": 1, - "_WIN32": 1, - "__Pyx_SET_CREAL": 2, - "__Pyx_SET_CIMAG": 2, - "__pyx_t_float_complex_from_parts": 1, - "__Pyx_c_eqf": 2, - "__Pyx_c_sumf": 2, - "__Pyx_c_difff": 2, - "__Pyx_c_prodf": 2, - "__Pyx_c_quotf": 2, - "__Pyx_c_negf": 2, - "__Pyx_c_is_zerof": 3, - "__Pyx_c_conjf": 3, - "conj": 3, - "__Pyx_c_absf": 3, - "abs": 2, - "__Pyx_c_powf": 3, - "pow": 2, - "conjf": 1, - "cabsf": 1, - "cpowf": 1, - "__pyx_t_double_complex_from_parts": 1, - "__Pyx_c_eq": 2, - "__Pyx_c_sum": 2, - "__Pyx_c_diff": 2, - "__Pyx_c_prod": 2, - "__Pyx_c_quot": 2, - "__Pyx_c_neg": 2, - "__Pyx_c_is_zero": 3, - "__Pyx_c_conj": 3, - "__Pyx_c_abs": 3, - "__Pyx_c_pow": 3, - "cabs": 1, - "cpow": 1, - "__Pyx_PyInt_AsUnsignedChar": 1, - "short": 3, - "__Pyx_PyInt_AsUnsignedShort": 1, - "__Pyx_PyInt_AsUnsignedInt": 1, - "__Pyx_PyInt_AsChar": 1, - "__Pyx_PyInt_AsShort": 1, - "__Pyx_PyInt_AsInt": 1, - "signed": 5, - "__Pyx_PyInt_AsSignedChar": 1, - "__Pyx_PyInt_AsSignedShort": 1, - "__Pyx_PyInt_AsSignedInt": 1, - "__Pyx_PyInt_AsLongDouble": 1, - "__Pyx_PyInt_AsUnsignedLong": 1, - "__Pyx_PyInt_AsUnsignedLongLong": 1, - "__Pyx_PyInt_AsLong": 1, - "__Pyx_PyInt_AsLongLong": 1, - "__Pyx_PyInt_AsSignedLong": 1, - "__Pyx_PyInt_AsSignedLongLong": 1, - "__Pyx_WriteUnraisable": 3, - "__Pyx_ExportFunction": 1, - "*__pyx_f_5numpy_PyArray_MultiIterNew2": 2, - "*__pyx_f_5numpy_PyArray_MultiIterNew3": 2, - "*__pyx_f_5numpy_PyArray_MultiIterNew4": 2, - "*__pyx_f_5numpy_PyArray_MultiIterNew5": 2, - "*__pyx_f_5numpy__util_dtypestring": 2, - "PyArray_Descr": 6, - "__pyx_f_5numpy_set_array_base": 1, - "PyArrayObject": 19, - "*__pyx_f_5numpy_get_array_base": 1, - "inner_work_1d": 2, - "inner_work_2d": 2, - "__Pyx_MODULE_NAME": 1, - "__pyx_module_is_main_wrapper_inner": 1, - "*__pyx_builtin_ValueError": 1, - "*__pyx_builtin_range": 1, - "*__pyx_builtin_RuntimeError": 1, - "__pyx_k_1": 1, - "__pyx_k_2": 1, - "__pyx_k_3": 1, - "__pyx_k_5": 1, - "__pyx_k_7": 1, - "__pyx_k_9": 1, - "__pyx_k_11": 1, - "__pyx_k_12": 1, - "__pyx_k_15": 1, - "__pyx_k__B": 2, - "__pyx_k__H": 2, - "__pyx_k__I": 2, - "__pyx_k__L": 2, - "__pyx_k__O": 2, - "__pyx_k__Q": 2, - "__pyx_k__b": 2, - "__pyx_k__d": 2, - "__pyx_k__f": 2, - "__pyx_k__g": 2, - "__pyx_k__h": 2, - "__pyx_k__i": 2, - "__pyx_k__l": 2, - "__pyx_k__q": 2, - "__pyx_k__Zd": 2, - "__pyx_k__Zf": 2, - "__pyx_k__Zg": 2, - "__pyx_k__np": 1, - "__pyx_k__buf": 1, - "__pyx_k__obj": 1, - "__pyx_k__base": 1, - "__pyx_k__ndim": 1, - "__pyx_k__ones": 1, - "__pyx_k__descr": 1, - "__pyx_k__names": 1, - "__pyx_k__numpy": 1, - "__pyx_k__range": 1, - "__pyx_k__shape": 1, - "__pyx_k__fields": 1, - "__pyx_k__format": 1, - "__pyx_k__strides": 1, - "__pyx_k____main__": 1, - "__pyx_k____test__": 1, - "__pyx_k__itemsize": 1, - "__pyx_k__readonly": 1, - "__pyx_k__type_num": 1, - "__pyx_k__byteorder": 1, - "__pyx_k__ValueError": 1, - "__pyx_k__suboffsets": 1, - "__pyx_k__work_module": 1, - "__pyx_k__RuntimeError": 1, - "__pyx_k__pure_py_test": 1, - "__pyx_k__wrapper_inner": 1, - "__pyx_k__do_awesome_work": 1, - "*__pyx_kp_s_1": 1, - "*__pyx_kp_u_11": 1, - "*__pyx_kp_u_12": 1, - "*__pyx_kp_u_15": 1, - "*__pyx_kp_s_2": 1, - "*__pyx_kp_s_3": 1, - "*__pyx_kp_u_5": 1, - "*__pyx_kp_u_7": 1, - "*__pyx_kp_u_9": 1, - "*__pyx_n_s__RuntimeError": 1, - "*__pyx_n_s__ValueError": 1, - "*__pyx_n_s____main__": 1, - "*__pyx_n_s____test__": 1, - "*__pyx_n_s__base": 1, - "*__pyx_n_s__buf": 1, - "*__pyx_n_s__byteorder": 1, - "*__pyx_n_s__descr": 1, - "*__pyx_n_s__do_awesome_work": 1, - "*__pyx_n_s__fields": 1, - "*__pyx_n_s__format": 1, - "*__pyx_n_s__itemsize": 1, - "*__pyx_n_s__names": 1, - "*__pyx_n_s__ndim": 1, - "*__pyx_n_s__np": 1, - "*__pyx_n_s__numpy": 1, - "*__pyx_n_s__obj": 1, - "*__pyx_n_s__ones": 1, - "*__pyx_n_s__pure_py_test": 1, - "*__pyx_n_s__range": 1, - "*__pyx_n_s__readonly": 1, - "*__pyx_n_s__shape": 1, - "*__pyx_n_s__strides": 1, - "*__pyx_n_s__suboffsets": 1, - "*__pyx_n_s__type_num": 1, - "*__pyx_n_s__work_module": 1, - "*__pyx_n_s__wrapper_inner": 1, - "*__pyx_int_5": 1, - "*__pyx_int_15": 1, - "*__pyx_k_tuple_4": 1, - "*__pyx_k_tuple_6": 1, - "*__pyx_k_tuple_8": 1, - "*__pyx_k_tuple_10": 1, - "*__pyx_k_tuple_13": 1, - "*__pyx_k_tuple_14": 1, - "*__pyx_k_tuple_16": 1, - "__pyx_v_num_x": 4, - "*__pyx_v_data_ptr": 2, - "*__pyx_v_answer_ptr": 2, - "__pyx_v_nd": 6, - "*__pyx_v_dims": 2, - "__pyx_v_typenum": 6, - "*__pyx_v_data_np": 2, - "__pyx_v_sum": 6, - "__pyx_t_1": 154, - "*__pyx_t_2": 4, - "*__pyx_t_3": 4, - "*__pyx_t_4": 3, - "__pyx_t_5": 75, - "__pyx_kp_s_1": 1, - "__pyx_filename": 79, - "__pyx_f": 79, - "__pyx_L1_error": 88, - "__pyx_v_dims": 4, - "NPY_DOUBLE": 3, - "__pyx_t_2": 120, - "PyArray_SimpleNewFromData": 2, - "__pyx_v_data_ptr": 2, - "Py_None": 38, - "__pyx_ptype_5numpy_ndarray": 2, - "__pyx_v_data_np": 10, - "__Pyx_GetName": 4, - "__pyx_m": 4, - "__pyx_n_s__work_module": 3, - "__pyx_t_3": 113, - "PyObject_GetAttr": 4, - "__pyx_n_s__do_awesome_work": 3, - "PyTuple_New": 4, - "PyTuple_SET_ITEM": 4, - "__pyx_t_4": 35, - "PyObject_Call": 11, - "PyErr_Occurred": 2, - "__pyx_v_answer_ptr": 2, - "__pyx_L0": 24, - "__pyx_v_num_y": 2, - "__pyx_kp_s_2": 1, - "*__pyx_pf_13wrapper_inner_pure_py_test": 2, - "*__pyx_self": 2, - "*unused": 2, - "PyMethodDef": 1, - "__pyx_mdef_13wrapper_inner_pure_py_test": 1, - "PyCFunction": 1, - "__pyx_pf_13wrapper_inner_pure_py_test": 1, - "METH_NOARGS": 1, - "*__pyx_v_data": 1, - "*__pyx_r": 7, - "*__pyx_t_1": 8, - "__pyx_self": 2, - "__pyx_v_data": 7, - "__pyx_kp_s_3": 1, - "__pyx_n_s__np": 1, - "__pyx_n_s__ones": 1, - "__pyx_k_tuple_4": 1, - "__pyx_r": 39, - "__Pyx_AddTraceback": 7, - "__pyx_pf_5numpy_7ndarray___getbuffer__": 2, - "*__pyx_v_self": 4, - "*__pyx_v_info": 4, - "__pyx_v_flags": 4, - "__pyx_v_copy_shape": 5, - "__pyx_v_i": 6, - "__pyx_v_ndim": 6, - "__pyx_v_endian_detector": 6, - "__pyx_v_little_endian": 8, - "__pyx_v_t": 29, - "*__pyx_v_f": 2, - "*__pyx_v_descr": 2, - "__pyx_v_offset": 9, - "__pyx_v_hasfields": 4, - "__pyx_t_6": 40, - "__pyx_t_7": 9, - "*__pyx_t_8": 1, - "*__pyx_t_9": 1, - "__pyx_v_info": 33, - "__pyx_v_self": 16, - "PyArray_NDIM": 1, - "__pyx_L5": 6, - "PyArray_CHKFLAGS": 2, - "NPY_C_CONTIGUOUS": 1, - "__pyx_builtin_ValueError": 5, - "__pyx_k_tuple_6": 1, - "__pyx_L6": 6, - "NPY_F_CONTIGUOUS": 1, - "__pyx_k_tuple_8": 1, - "__pyx_L7": 2, - "buf": 1, - "PyArray_DATA": 1, - "strides": 5, - "malloc": 2, - "shape": 3, - "PyArray_STRIDES": 2, - "PyArray_DIMS": 2, - "__pyx_L8": 2, - "suboffsets": 1, - "PyArray_ITEMSIZE": 1, - "PyArray_ISWRITEABLE": 1, - "__pyx_v_f": 31, - "descr": 2, - "__pyx_v_descr": 10, - "PyDataType_HASFIELDS": 2, - "__pyx_L11": 7, - "type_num": 2, - "byteorder": 4, - "__pyx_k_tuple_10": 1, - "__pyx_L13": 2, - "NPY_BYTE": 2, - "__pyx_L14": 18, - "NPY_UBYTE": 2, - "NPY_SHORT": 2, - "NPY_USHORT": 2, - "NPY_INT": 2, - "NPY_UINT": 2, - "NPY_LONG": 1, - "NPY_ULONG": 1, - "NPY_LONGLONG": 1, - "NPY_ULONGLONG": 1, - "NPY_FLOAT": 1, - "NPY_LONGDOUBLE": 1, - "NPY_CFLOAT": 1, - "NPY_CDOUBLE": 1, - "NPY_CLONGDOUBLE": 1, - "NPY_OBJECT": 1, - "__pyx_t_8": 16, - "PyNumber_Remainder": 1, - "__pyx_kp_u_11": 1, - "format": 6, - "__pyx_L12": 2, - "__pyx_t_9": 7, - "__pyx_f_5numpy__util_dtypestring": 1, - "__pyx_L2": 2, - "__pyx_pf_5numpy_7ndarray_1__releasebuffer__": 2, - "PyArray_HASFIELDS": 1, - "free": 2, - "*__pyx_f_5numpy_PyArray_MultiIterNew1": 1, - "*__pyx_v_a": 5, - "PyArray_MultiIterNew": 5, - "__pyx_v_a": 5, - "*__pyx_v_b": 4, - "__pyx_v_b": 4, - "*__pyx_v_c": 3, - "__pyx_v_c": 3, - "*__pyx_v_d": 2, - "__pyx_v_d": 2, - "*__pyx_v_e": 1, - "__pyx_v_e": 1, - "*__pyx_v_end": 1, - "*__pyx_v_offset": 1, - "*__pyx_v_child": 1, - "*__pyx_v_fields": 1, - "*__pyx_v_childname": 1, - "*__pyx_v_new_offset": 1, - "*__pyx_v_t": 1, - "*__pyx_t_5": 1, - "__pyx_t_10": 7, - "*__pyx_t_11": 1, - "__pyx_v_child": 8, - "__pyx_v_fields": 7, - "__pyx_v_childname": 4, - "__pyx_v_new_offset": 5, - "names": 2, - "PyTuple_GET_SIZE": 2, - "PyTuple_GET_ITEM": 3, - "PyObject_GetItem": 1, - "fields": 1, - "PyTuple_CheckExact": 1, - "tuple": 3, - "__pyx_ptype_5numpy_dtype": 1, - "__pyx_v_end": 2, - "PyNumber_Subtract": 2, - "PyObject_RichCompare": 8, - "__pyx_int_15": 1, - "Py_LT": 2, - "__pyx_builtin_RuntimeError": 2, - "__pyx_k_tuple_13": 1, - "__pyx_k_tuple_14": 1, - "elsize": 1, - "__pyx_k_tuple_16": 1, - "__pyx_L10": 2, - "Py_EQ": 6 - }, "Ceylon": { "doc": 2, "by": 1, @@ -13031,6 +10838,95 @@ "IHhas_type1.": 1, "IHhas_type2.": 1 }, + "Creole": { + "Creole": 6, + "is": 3, + "a": 2, + "-": 5, + "to": 2, + "HTML": 1, + "converter": 2, + "for": 1, + "the": 5, + "lightweight": 1, + "markup": 1, + "language": 1, + "(": 5, + "http": 4, + "//wikicreole.org/": 1, + ")": 5, + ".": 1, + "Github": 1, + "uses": 1, + "this": 1, + "render": 1, + "*.creole": 1, + "files.": 1, + "Project": 1, + "page": 1, + "on": 2, + "github": 1, + "*": 5, + "//github.com/minad/creole": 1, + "Travis": 1, + "CI": 1, + "https": 1, + "//travis": 1, + "ci.org/minad/creole": 1, + "RDOC": 1, + "//rdoc.info/projects/minad/creole": 1, + "INSTALLATION": 1, + "{": 6, + "gem": 1, + "install": 1, + "creole": 1, + "}": 6, + "SYNOPSIS": 1, + "require": 1, + "html": 1, + "Creole.creolize": 1, + "BUGS": 1, + "If": 1, + "you": 1, + "found": 1, + "bug": 1, + "please": 1, + "report": 1, + "it": 1, + "at": 1, + "project": 1, + "s": 1, + "tracker": 1, + "GitHub": 1, + "//github.com/minad/creole/issues": 1, + "AUTHORS": 1, + "Lars": 2, + "Christensen": 2, + "larsch": 1, + "Daniel": 2, + "Mendler": 1, + "minad": 1, + "LICENSE": 1, + "Copyright": 1, + "c": 1, + "Mendler.": 1, + "It": 1, + "free": 1, + "software": 1, + "and": 1, + "may": 1, + "be": 1, + "redistributed": 1, + "under": 1, + "terms": 1, + "specified": 1, + "in": 1, + "README": 1, + "file": 1, + "of": 1, + "Ruby": 1, + "distribution.": 1 + }, "CSS": { ".clearfix": 8, "{": 1661, @@ -15119,258 +13015,6 @@ "stat": 2, "rm": 1 }, - "Forth": { - "(": 88, - "Block": 2, - "words.": 6, - ")": 87, - "variable": 3, - "blk": 3, - "current": 5, - "-": 473, - "block": 8, - "n": 22, - "addr": 11, - ";": 61, - "buffer": 2, - "evaluate": 1, - "extended": 3, - "semantics": 3, - "flush": 1, - "load": 2, - "...": 4, - "dup": 10, - "save": 2, - "input": 2, - "in": 4, - "@": 13, - "source": 5, - "#source": 2, - "interpret": 1, - "restore": 1, - "buffers": 2, - "update": 1, - "extension": 4, - "empty": 2, - "scr": 2, - "list": 1, - "bounds": 1, - "do": 2, - "i": 5, - "emit": 2, - "loop": 4, - "refill": 2, - "thru": 1, - "x": 10, - "y": 5, - "+": 17, - "swap": 12, - "*": 9, - "forth": 2, - "Copyright": 3, - "Lars": 3, - "Brinkhoff": 3, - "Kernel": 4, - "#tib": 2, - "TODO": 12, - ".r": 1, - ".": 5, - "[": 16, - "char": 10, - "]": 15, - "parse": 5, - "type": 3, - "immediate": 19, - "<": 14, - "flag": 4, - "r": 18, - "x1": 5, - "x2": 5, - "R": 13, - "rot": 2, - "r@": 2, - "noname": 1, - "align": 2, - "here": 9, - "c": 3, - "allot": 2, - "lastxt": 4, - "SP": 1, - "query": 1, - "tib": 1, - "body": 1, - "true": 1, - "tuck": 2, - "over": 5, - "u.r": 1, - "u": 3, - "if": 9, - "drop": 4, - "false": 1, - "else": 6, - "then": 5, - "unused": 1, - "value": 1, - "create": 2, - "does": 5, - "within": 1, - "compile": 2, - "Forth2012": 2, - "core": 1, - "action": 1, - "of": 3, - "defer": 2, - "name": 1, - "s": 4, - "c@": 2, - "negate": 1, - "nip": 2, - "bl": 4, - "word": 9, - "ahead": 2, - "resolve": 4, - "literal": 4, - "postpone": 14, - "nonimmediate": 1, - "caddr": 1, - "C": 9, - "find": 2, - "cells": 1, - "postponers": 1, - "execute": 1, - "unresolved": 4, - "orig": 5, - "chars": 1, - "n1": 2, - "n2": 2, - "orig1": 1, - "orig2": 1, - "branch": 5, - "dodoes_code": 1, - "code": 3, - "begin": 2, - "dest": 5, - "while": 2, - "repeat": 2, - "until": 1, - "recurse": 1, - "pad": 3, - "If": 1, - "necessary": 1, - "and": 3, - "keep": 1, - "parsing.": 1, - "string": 3, - "cmove": 1, - "state": 2, - "cr": 3, - "abort": 3, - "": 1, - "Undefined": 1, - "ok": 1, - "HELLO": 4, - "KataDiversion": 1, - "Forth": 1, - "utils": 1, - "the": 7, - "stack": 3, - "EMPTY": 1, - "DEPTH": 2, - "IF": 10, - "BEGIN": 3, - "DROP": 5, - "UNTIL": 3, - "THEN": 10, - "power": 2, - "**": 2, - "n1_pow_n2": 1, - "SWAP": 8, - "DUP": 14, - "DO": 2, - "OVER": 2, - "LOOP": 2, - "NIP": 4, - "compute": 1, - "highest": 1, - "below": 1, - "N.": 1, - "e.g.": 2, - "MAXPOW2": 2, - "log2_n": 1, - "ABORT": 1, - "ELSE": 7, - "|": 4, - "I": 5, - "i*2": 1, - "/": 3, - "kata": 1, - "test": 1, - "given": 3, - "N": 6, - "has": 1, - "two": 2, - "adjacent": 2, - "bits": 3, - "NOT": 3, - "TWO": 3, - "ADJACENT": 3, - "BITS": 3, - "bool": 1, - "uses": 1, - "following": 1, - "algorithm": 1, - "return": 5, - "A": 5, - "X": 5, - "LOG2": 1, - "end": 1, - "OR": 1, - "INVERT": 1, - "maximum": 1, - "number": 4, - "which": 3, - "can": 2, - "be": 2, - "made": 2, - "with": 2, - "MAX": 2, - "NB": 3, - "m": 2, - "**n": 1, - "numbers": 1, - "or": 1, - "less": 1, - "have": 1, - "not": 1, - "bits.": 1, - "see": 1, - "http": 1, - "//www.codekata.com/2007/01/code_kata_fifte.html": 1, - "HOW": 1, - "MANY": 1, - "Tools": 2, - ".s": 1, - "depth": 1, - "traverse": 1, - "dictionary": 1, - "assembler": 1, - "kernel": 1, - "bye": 1, - "cs": 2, - "pick": 1, - "roll": 1, - "editor": 1, - "forget": 1, - "reveal": 1, - "tools": 1, - "nr": 1, - "synonym": 1, - "undefined": 2, - "defined": 1, - "invert": 1, - "/cell": 2, - "cell": 2 - }, "GAS": { ".cstring": 1, "LC0": 2, @@ -23188,10 +20832,10 @@ "logger": 2 }, "JSON": { - "{": 17, - "}": 17, - "[": 2, - "]": 2, + "{": 73, + "[": 17, + "]": 17, + "}": 73, "true": 3 }, "Julia": { @@ -23379,870 +21023,6 @@ ")": 1, ";": 1 }, - "Lasso": { - "<": 7, - "LassoScript": 1, - "//": 169, - "JSON": 2, - "Encoding": 1, - "and": 52, - "Decoding": 1, - "Copyright": 1, - "-": 2248, - "LassoSoft": 1, - "Inc.": 1, - "": 1, - "": 1, - "": 1, - "This": 5, - "tag": 11, - "is": 35, - "now": 23, - "incorporated": 1, - "in": 46, - "Lasso": 15, - "If": 4, - "(": 640, - "Lasso_TagExists": 1, - ")": 639, - "False": 1, - ";": 573, - "Define_Tag": 1, - "Namespace": 1, - "Required": 1, - "Optional": 1, - "Local": 7, - "Map": 3, - "r": 8, - "n": 30, - "t": 8, - "f": 2, - "b": 2, - "output": 30, - "newoptions": 1, - "options": 2, - "array": 20, - "set": 10, - "list": 4, - "queue": 2, - "priorityqueue": 2, - "stack": 2, - "pair": 1, - "map": 23, - "[": 22, - "]": 23, - "literal": 3, - "string": 59, - "integer": 30, - "decimal": 5, - "boolean": 4, - "null": 26, - "date": 23, - "temp": 12, - "object": 7, - "{": 18, - "}": 18, - "client_ip": 1, - "client_address": 1, - "__jsonclass__": 6, - "deserialize": 2, - "": 3, - "": 3, - "Decode_JSON": 2, - "Decode_": 1, - "value": 14, - "consume_string": 1, - "ibytes": 9, - "unescapes": 1, - "u": 1, - "UTF": 4, - "%": 14, - "QT": 4, - "TZ": 2, - "T": 3, - "consume_token": 1, - "obytes": 3, - "delimit": 7, - "true": 12, - "false": 8, - ".": 5, - "consume_array": 1, - "consume_object": 1, - "key": 3, - "val": 1, - "native": 2, - "comment": 2, - "http": 6, - "//www.lassosoft.com/json": 1, - "start": 5, - "Literal": 2, - "String": 1, - "Object": 2, - "JSON_RPCCall": 1, - "RPCCall": 1, - "JSON_": 1, - "method": 7, - "params": 11, - "id": 7, - "host": 6, - "//localhost/lassoapps.8/rpc/rpc.lasso": 1, - "request": 2, - "result": 6, - "JSON_Records": 3, - "KeyField": 1, - "ReturnField": 1, - "ExcludeField": 1, - "Fields": 1, - "_fields": 1, - "fields": 2, - "No": 1, - "found": 5, - "for": 65, - "_keyfield": 4, - "keyfield": 4, - "ID": 1, - "_index": 1, - "_return": 1, - "returnfield": 1, - "_exclude": 1, - "excludefield": 1, - "_records": 1, - "_record": 1, - "_temp": 1, - "_field": 1, - "_output": 1, - "error_msg": 15, - "error_code": 11, - "found_count": 11, - "rows": 1, - "#_records": 1, - "Return": 7, - "@#_output": 1, - "/Define_Tag": 1, - "/If": 3, - "define": 20, - "trait_json_serialize": 2, - "trait": 1, - "require": 1, - "asString": 3, - "json_serialize": 18, - "e": 13, - "bytes": 8, - "+": 146, - "#e": 13, - "Replace": 19, - "&": 21, - "json_literal": 1, - "asstring": 4, - "format": 7, - "gmt": 1, - "|": 13, - "trait_forEach": 1, - "local": 116, - "foreach": 1, - "#output": 50, - "#delimit": 7, - "#1": 3, - "return": 75, - "with": 25, - "pr": 1, - "eachPair": 1, - "select": 1, - "#pr": 2, - "first": 12, - "second": 8, - "join": 5, - "json_object": 2, - "foreachpair": 1, - "any": 14, - "serialize": 1, - "json_consume_string": 3, - "while": 9, - "#temp": 19, - "#ibytes": 17, - "export8bits": 6, - "#obytes": 5, - "import8bits": 4, - "Escape": 1, - "/while": 7, - "unescape": 1, - "//Replace": 1, - "if": 76, - "BeginsWith": 1, - "&&": 30, - "EndsWith": 1, - "Protect": 1, - "serialization_reader": 1, - "xml": 1, - "read": 1, - "/Protect": 1, - "else": 32, - "size": 24, - "or": 6, - "regexp": 1, - "d": 2, - "Z": 1, - "matches": 1, - "Format": 1, - "yyyyMMdd": 2, - "HHmmssZ": 1, - "HHmmss": 1, - "/if": 53, - "json_consume_token": 2, - "marker": 4, - "Is": 1, - "also": 5, - "end": 2, - "of": 24, - "token": 1, - "//............................................................................": 2, - "string_IsNumeric": 1, - "json_consume_array": 3, - "While": 1, - "Discard": 1, - "whitespace": 3, - "Else": 7, - "insert": 18, - "#key": 12, - "json_consume_object": 2, - "Loop_Abort": 1, - "/While": 1, - "Find": 3, - "isa": 25, - "First": 4, - "find": 57, - "Second": 1, - "json_deserialize": 1, - "removeLeading": 1, - "bom_utf8": 1, - "Reset": 1, - "on": 1, - "provided": 1, - "**/": 1, - "type": 63, - "parent": 5, - "public": 1, - "onCreate": 1, - "...": 3, - "..onCreate": 1, - "#rest": 1, - "json_rpccall": 1, - "#id": 2, - "#host": 4, - "Lasso_UniqueID": 1, - "Include_URL": 1, - "PostParams": 1, - "Encode_JSON": 1, - "#method": 1, - "#params": 5, - "": 6, - "2009": 14, - "09": 10, - "04": 8, - "JS": 126, - "Added": 40, - "content_body": 14, - "compatibility": 4, - "pre": 4, - "8": 6, - "5": 4, - "05": 4, - "07": 6, - "timestamp": 4, - "to": 98, - "knop_cachestore": 4, - "maxage": 2, - "parameter": 8, - "knop_cachefetch": 4, - "Corrected": 8, - "construction": 2, - "cache_name": 2, - "internally": 2, - "the": 86, - "knop_cache": 2, - "tags": 14, - "so": 16, - "it": 20, - "will": 12, - "work": 6, - "correctly": 2, - "at": 10, - "site": 4, - "root": 2, - "2008": 6, - "11": 8, - "dummy": 2, - "knop_debug": 4, - "ctype": 2, - "be": 38, - "able": 14, - "transparently": 2, - "without": 4, - "L": 2, - "Debug": 2, - "24": 2, - "knop_stripbackticks": 2, - "01": 4, - "28": 2, - "Cache": 2, - "name": 32, - "used": 12, - "when": 10, - "using": 8, - "session": 4, - "storage": 8, - "2007": 6, - "12": 8, - "knop_cachedelete": 2, - "Created": 4, - "03": 2, - "knop_foundrows": 2, - "condition": 4, - "returning": 2, - "normal": 2, - "For": 2, - "lasso_tagexists": 4, - "define_tag": 48, - "namespace=": 12, - "__html_reply__": 4, - "define_type": 14, - "debug": 2, - "_unknowntag": 6, - "onconvert": 2, - "stripbackticks": 2, - "description=": 2, - "priority=": 2, - "required=": 2, - "input": 2, - "split": 2, - "@#output": 2, - "/define_tag": 36, - "description": 34, - "namespace": 16, - "priority": 8, - "Johan": 2, - "S": 2, - "lve": 2, - "#charlist": 6, - "current": 10, - "time": 8, - "a": 52, - "mixed": 2, - "up": 4, - "as": 26, - "seed": 6, - "#seed": 36, - "convert": 4, - "this": 14, - "base": 6, - "conversion": 4, - "get": 12, - "#base": 8, - "/": 6, - "over": 2, - "new": 14, - "chunk": 2, - "millisecond": 2, - "math_random": 2, - "lower": 2, - "upper": 2, - "__lassoservice_ip__": 2, - "response_localpath": 8, - "removetrailing": 8, - "response_filepath": 8, - "//tagswap.net/found_rows": 2, - "action_statement": 2, - "string_findregexp": 8, - "#sql": 42, - "ignorecase": 12, - "||": 8, - "maxrecords_value": 2, - "inaccurate": 2, - "must": 4, - "accurate": 2, - "Default": 2, - "usually": 2, - "fastest.": 2, - "Can": 2, - "not": 10, - "GROUP": 4, - "BY": 6, - "example.": 2, - "normalize": 4, - "around": 2, - "FROM": 2, - "expression": 6, - "string_replaceregexp": 8, - "replace": 8, - "ReplaceOnlyOne": 2, - "substring": 6, - "remove": 6, - "ORDER": 2, - "statement": 4, - "since": 4, - "causes": 4, - "problems": 2, - "field": 26, - "aliases": 2, - "we": 2, - "can": 14, - "simple": 2, - "later": 2, - "query": 4, - "contains": 2, - "use": 10, - "SQL_CALC_FOUND_ROWS": 2, - "which": 2, - "much": 2, - "slower": 2, - "see": 16, - "//bugs.mysql.com/bug.php": 2, - "removeleading": 2, - "inline": 4, - "sql": 2, - "exit": 2, - "here": 2, - "normally": 2, - "/inline": 2, - "fallback": 4, - "required": 10, - "optional": 36, - "local_defined": 26, - "knop_seed": 2, - "#RandChars": 4, - "Get": 2, - "Math_Random": 2, - "Min": 2, - "Max": 2, - "Size": 2, - "#value": 14, - "#numericValue": 4, - "length": 8, - "#cryptvalue": 10, - "#anyChar": 2, - "Encrypt_Blowfish": 2, - "decrypt_blowfish": 2, - "String_Remove": 2, - "StartPosition": 2, - "EndPosition": 2, - "Seed": 2, - "String_IsAlphaNumeric": 2, - "self": 72, - "_date_msec": 4, - "/define_type": 4, - "seconds": 4, - "default": 4, - "store": 4, - "all": 6, - "page": 14, - "vars": 8, - "specified": 8, - "iterate": 12, - "keys": 6, - "var": 38, - "#item": 10, - "#type": 26, - "#data": 14, - "/iterate": 12, - "//fail_if": 6, - "session_id": 6, - "#session": 10, - "session_addvar": 4, - "#cache_name": 72, - "duration": 4, - "#expires": 4, - "server_name": 6, - "initiate": 10, - "thread": 6, - "RW": 6, - "lock": 24, - "global": 40, - "Thread_RWLock": 6, - "create": 6, - "reference": 10, - "@": 8, - "writing": 6, - "#lock": 12, - "writelock": 4, - "check": 6, - "cache": 4, - "unlock": 6, - "writeunlock": 4, - "#maxage": 4, - "cached": 8, - "data": 12, - "too": 4, - "old": 4, - "reading": 2, - "readlock": 2, - "readunlock": 2, - "ignored": 2, - "//##################################################################": 4, - "knoptype": 2, - "All": 4, - "Knop": 6, - "custom": 8, - "types": 10, - "should": 4, - "have": 6, - "identify": 2, - "registered": 2, - "knop": 6, - "isknoptype": 2, - "knop_knoptype": 2, - "prototype": 4, - "version": 4, - "14": 4, - "Base": 2, - "framework": 2, - "Contains": 2, - "common": 4, - "member": 10, - "Used": 2, - "boilerplate": 2, - "creating": 4, - "other": 4, - "instance": 8, - "variables": 2, - "are": 4, - "available": 2, - "well": 2, - "CHANGE": 4, - "NOTES": 4, - "Syntax": 4, - "adjustments": 4, - "9": 2, - "Changed": 6, - "error": 22, - "numbers": 2, - "added": 10, - "even": 2, - "language": 10, - "already": 2, - "exists.": 2, - "improved": 4, - "reporting": 2, - "messages": 6, - "such": 2, - "from": 6, - "bad": 2, - "database": 14, - "queries": 2, - "error_lang": 2, - "provide": 2, - "knop_lang": 8, - "add": 12, - "localized": 2, - "except": 2, - "knop_base": 8, - "html": 4, - "xhtml": 28, - "help": 10, - "nicely": 2, - "formatted": 2, - "output.": 2, - "Centralized": 2, - "knop_base.": 2, - "Moved": 6, - "codes": 2, - "improve": 2, - "documentation.": 2, - "It": 2, - "always": 2, - "an": 8, - "parameter.": 2, - "trace": 2, - "tagtime": 4, - "was": 6, - "nav": 4, - "earlier": 2, - "varname": 4, - "retreive": 2, - "variable": 8, - "that": 18, - "stored": 2, - "in.": 2, - "automatically": 2, - "sense": 2, - "doctype": 6, - "exists": 2, - "buffer.": 2, - "The": 6, - "performance.": 2, - "internal": 2, - "html.": 2, - "Introduced": 2, - "_knop_data": 10, - "general": 2, - "level": 2, - "caching": 2, - "between": 2, - "different": 2, - "objects.": 2, - "TODO": 2, - "option": 2, - "Google": 2, - "Code": 2, - "Wiki": 2, - "working": 2, - "properly": 4, - "run": 2, - "by": 12, - "atbegin": 2, - "handler": 2, - "explicitly": 2, - "*/": 2, - "entire": 4, - "ms": 2, - "defined": 4, - "each": 8, - "instead": 4, - "avoid": 2, - "recursion": 2, - "properties": 4, - "#endslash": 10, - "#tags": 2, - "#t": 2, - "doesn": 4, - "p": 2, - "Parameters": 4, - "nParameters": 2, - "Internal.": 2, - "Finds": 2, - "out": 2, - "used.": 2, - "Looks": 2, - "unless": 2, - "array.": 2, - "variable.": 2, - "Looking": 2, - "#xhtmlparam": 4, - "plain": 2, - "#doctype": 4, - "copy": 4, - "standard": 2, - "code": 2, - "errors": 12, - "error_data": 12, - "form": 2, - "grid": 2, - "lang": 2, - "user": 4, - "#error_lang": 12, - "addlanguage": 4, - "strings": 6, - "@#errorcodes": 2, - "#error_lang_custom": 2, - "#custom_language": 10, - "once": 4, - "one": 2, - "#custom_string": 4, - "#errorcodes": 4, - "#error_code": 10, - "message": 6, - "getstring": 2, - "test": 2, - "known": 2, - "lasso": 2, - "knop_timer": 2, - "knop_unique": 2, - "look": 2, - "#varname": 6, - "loop_abort": 2, - "tag_name": 2, - "#timer": 2, - "#trace": 4, - "merge": 2, - "#eol": 8, - "2010": 4, - "23": 4, - "Custom": 2, - "interact": 2, - "databases": 2, - "Supports": 4, - "both": 2, - "MySQL": 2, - "FileMaker": 2, - "datasources": 2, - "2012": 4, - "06": 2, - "10": 2, - "SP": 4, - "Fix": 2, - "precision": 2, - "bug": 2, - "6": 2, - "0": 2, - "1": 2, - "renderfooter": 2, - "15": 2, - "Add": 2, - "support": 6, - "Thanks": 2, - "Ric": 2, - "Lewis": 2, - "settable": 4, - "removed": 2, - "table": 6, - "nextrecord": 12, - "deprecation": 2, - "warning": 2, - "corrected": 2, - "verification": 2, - "index": 4, - "before": 4, - "calling": 2, - "resultset_count": 6, - "break": 2, - "versions": 2, - "fixed": 4, - "incorrect": 2, - "debug_trace": 2, - "addrecord": 4, - "how": 2, - "keyvalue": 10, - "returned": 6, - "adding": 2, - "records": 4, - "inserting": 2, - "generated": 2, - "suppressed": 2, - "specifying": 2, - "saverecord": 8, - "deleterecord": 4, - "case.": 2, - "recorddata": 6, - "no": 2, - "longer": 2, - "touch": 2, - "current_record": 2, - "zero": 2, - "access": 2, - "occurrence": 2, - "same": 4, - "returns": 4, - "knop_databaserows": 2, - "inlinename.": 4, - "next.": 2, - "remains": 2, - "supported": 2, - "backwards": 2, - "compatibility.": 2, - "resets": 2, - "record": 20, - "pointer": 8, - "reaching": 2, - "last": 4, - "honors": 2, - "incremented": 2, - "recordindex": 4, - "specific": 2, - "found.": 2, - "getrecord": 8, - "REALLY": 2, - "works": 4, - "keyvalues": 4, - "double": 2, - "oops": 4, - "I": 4, - "thought": 2, - "but": 2, - "misplaced": 2, - "paren...": 2, - "corresponding": 2, - "resultset": 2, - "/resultset": 2, - "through": 2, - "handling": 2, - "better": 2, - "knop_user": 4, - "keeplock": 4, - "updates": 2, - "datatype": 2, - "knop_databaserow": 2, - "iterated.": 2, - "When": 2, - "iterating": 2, - "row": 2, - "values.": 2, - "Addedd": 2, - "increments": 2, - "recordpointer": 2, - "called": 2, - "until": 2, - "reached.": 2, - "Returns": 2, - "long": 2, - "there": 2, - "more": 2, - "records.": 2, - "Useful": 2, - "loop": 2, - "example": 2, - "below": 2, - "Implemented": 2, - "reset": 2, - "query.": 2, - "shortcut": 2, - "Removed": 2, - "onassign": 2, - "touble": 2, - "Extended": 2, - "field_names": 2, - "names": 4, - "db": 2, - "objects": 2, - "never": 2, - "been": 2, - "optionally": 2, - "supports": 2, - "sql.": 2, - "Make": 2, - "sure": 2, - "SQL": 2, - "includes": 2, - "relevant": 2, - "lockfield": 2, - "locking": 4, - "capturesearchvars": 2, - "mysteriously": 2, - "after": 2, - "operations": 2, - "caused": 2, - "errors.": 2, - "flag": 2, - "save": 2, - "locked": 2, - "releasing": 2, - "Adding": 2, - "progress.": 2, - "Done": 2, - "oncreate": 2, - "getrecord.": 2, - "documentation": 2, - "most": 2, - "existing": 2, - "it.": 2, - "Faster": 2, - "than": 2, - "scratch.": 2, - "shown_first": 2, - "again": 2, - "hoping": 2, - "s": 2, - "only": 2, - "captured": 2, - "update": 2, - "uselimit": 2, - "querys": 2, - "LIMIT": 2, - "still": 2, - "gets": 2, - "proper": 2, - "searchresult": 2, - "separate": 2, - "COUNT": 2 - }, "Less": { "@blue": 4, "#3bbfce": 1, @@ -25131,48 +21911,34 @@ "in_8_list": 1 }, "M": { - "%": 203, - "zewdAPI": 52, + "start": 24, ";": 1275, - "Enterprise": 5, - "Web": 5, - "Developer": 5, - "run": 2, - "-": 1604, - "time": 9, - "functions": 4, - "and": 56, - "user": 27, - "APIs": 1, - "Product": 2, + "create": 6, + "student": 14, + "data": 43, + "set": 98, "(": 2142, - "Build": 6, ")": 2150, - "Date": 2, - "Fri": 1, - "Nov": 1, - "|": 170, + "zwrite": 1, + "write": 59, + "order": 11, + "x": 96, "for": 77, - "GT.M": 30, - "m_apache": 3, - "Copyright": 12, - "c": 113, - "M/Gateway": 4, - "Developments": 4, - "Ltd": 4, - "Reigate": 4, - "Surrey": 4, - "UK.": 4, - "All": 4, - "rights": 4, - "reserved.": 4, - "http": 13, - "//www.mgateway.com": 4, - "Email": 4, - "rtweed@mgateway.com": 4, + "do": 15, + "quit": 30, + ".": 814, "This": 26, - "program": 19, + "file": 10, "is": 81, + "part": 3, + "of": 80, + "DataBallet.": 4, + "Copyright": 12, + "C": 9, + "Laurent": 2, + "Parenteau": 2, + "": 2, + "DataBallet": 4, "free": 15, "software": 12, "you": 16, @@ -25184,7 +21950,6 @@ "under": 14, "the": 217, "terms": 11, - "of": 80, "GNU": 33, "Affero": 33, "General": 33, @@ -25237,438 +22002,48 @@ "copy": 13, "along": 11, "with": 43, - "this": 38, - "program.": 9, "If": 14, "not": 37, "see": 25, "": 11, - ".": 814, - "QUIT": 249, - "_": 126, - "getVersion": 1, - "zewdCompiler": 6, - "date": 1, - "getDate": 1, - "compilePage": 2, - "app": 13, - "page": 12, - "mode": 12, - "technology": 9, - "outputPath": 4, - "multilingual": 4, - "maxLines": 4, - "d": 381, - "g": 228, - "compileAll": 2, - "templatePageName": 2, - "autoTranslate": 2, - "language": 6, - "verbose": 2, - "zewdMgr": 1, - "startSession": 2, - "requestArray": 2, - "serverArray": 1, - "sessionArray": 5, - "filesArray": 1, - "zewdPHP": 8, - ".requestArray": 2, - ".serverArray": 1, - ".sessionArray": 3, - ".filesArray": 1, - "closeSession": 2, - "saveSession": 2, - "endOfPage": 2, - "prePageScript": 2, - "sessid": 146, - "releaseLock": 2, - "tokeniseURL": 2, - "url": 2, - "zewdCompiler16": 5, - "getSessid": 1, - "token": 21, - "i": 465, - "isTokenExpired": 2, - "p": 84, - "zewdSession": 39, - "initialiseSession": 1, - "k": 122, - "deleteSession": 2, - "changeApp": 1, - "appName": 4, - "setSessionValue": 6, - "setRedirect": 1, - "toPage": 1, - "e": 210, - "n": 197, - "path": 4, - "s": 775, - "getRootURL": 1, - "l": 84, - "zewd": 17, - "trace": 24, - "_sessid_": 3, - "_token_": 1, - "_nextPage": 1, - "zcvt": 11, - "nextPage": 1, - "isNextPageTokenValid": 2, - "zewdCompiler13": 10, - "isCSP": 1, - "normaliseTextValue": 1, - "text": 6, - "replaceAll": 11, - "writeLine": 2, - "line": 9, - "CacheTempBuffer": 2, - "j": 67, - "increment": 11, - "w": 127, - "displayOptions": 2, - "fieldName": 5, - "listName": 6, - "escape": 7, - "codeValue": 7, - "name": 121, - "nnvp": 1, - "nvp": 1, - "pos": 33, - "textValue": 6, - "value": 72, - "getSessionValue": 3, - "tr": 13, - "+": 188, - "f": 93, - "o": 51, - "q": 244, - "codeValueEsc": 7, - "textValueEsc": 7, - "htmlOutputEncode": 2, - "zewdAPI2": 5, - "_codeValueEsc_": 1, - "selected": 4, - "translationMode": 1, - "_appName": 1, - "typex": 1, - "type": 2, - "avoid": 1, - "Cache": 3, - "bug": 1, - "getPhraseIndex": 1, - "zewdCompiler5": 1, - "licensed": 1, - "setWarning": 2, - "isTemp": 11, - "setWLDSymbol": 1, - "Duplicate": 1, - "performance": 1, - "also": 4, - "wldAppName": 1, - "wldName": 1, - "wldSessid": 1, - "zzname": 1, - "zv": 6, - "[": 53, - "extcErr": 1, - "mess": 3, - "namespace": 1, - "zt": 20, - "valueErr": 1, - "exportCustomTags": 2, - "tagList": 1, - "filepath": 10, - ".tagList": 1, - "exportAllCustomTags": 2, - "importCustomTags": 2, - "filePath": 2, - "zewdForm": 1, - "stripSpaces": 6, - "np": 17, - "obj": 6, - "prop": 6, - "setSessionObject": 3, - "allowJSONAccess": 1, - "sessionName": 30, - "access": 21, - "disallowJSONAccess": 1, - "JSONAccess": 1, - "existsInSession": 2, - "existsInSessionArray": 2, - "p1": 5, - "p2": 10, - "p3": 3, - "p4": 2, - "p5": 2, - "p6": 2, - "p7": 2, - "p8": 2, - "p9": 2, - "p10": 2, - "p11": 2, - "clearSessionArray": 1, - "arrayName": 35, - "setSessionArray": 1, - "itemName": 16, - "itemValue": 7, - "getSessionArray": 1, - "array": 22, - "clearArray": 2, - "set": 98, - "m": 37, - "getSessionArrayErr": 1, - "Come": 1, - "here": 4, - "if": 44, - "error": 62, - "occurred": 2, - "addToSession": 2, - "@name": 4, - "mergeToSession": 1, - "mergeGlobalToSession": 2, - "globalName": 7, - "mergeGlobalFromSession": 2, - "mergeArrayToSession": 1, - "mergeArrayToSessionObject": 2, - ".array": 1, - "mergeArrayFromSession": 1, - "mergeFromSession": 1, - "deleteFromSession": 1, - "deleteFromSessionObject": 1, - "sessionNameExists": 1, - "getSessionArrayValue": 2, - "subscript": 7, - "exists": 6, - ".exists": 1, - "sessionArrayValueExists": 2, - "deleteSessionArrayValue": 2, - "Objects": 1, - "objectName": 13, - "propertyName": 3, - "propertyValue": 5, - "comma": 3, - "x": 96, - "replace": 27, - "objectName_": 2, - "_propertyName": 2, - "_propertyName_": 2, - "_propertyValue_": 1, - "_p": 1, - "quoted": 1, - "string": 50, - "FromStr": 6, - "S": 99, - "ToStr": 4, - "InText": 4, - "old": 3, - "new": 15, - "ok": 14, - "removeDocument": 1, - "zewdDOM": 3, - "instanceName": 2, - "clearXMLIndex": 1, - "zewdSchemaForm": 1, - "closeDOM": 1, - "makeTokenString": 1, - "length": 7, - "token_": 1, - "r": 88, - "makeString": 3, - "char": 9, - "len": 8, - "create": 6, - "characters": 4, - "str": 15, - "convertDateToSeconds": 1, - "hdate": 7, - "Q": 58, - "hdate*86400": 1, - "convertSecondsToDate": 1, - "secs": 2, - "secs#86400": 1, - "getTokenExpiry": 2, - "h*86400": 1, - "h": 39, - "randChar": 1, - "R": 2, - "lowerCase": 2, - "stripLeadingSpaces": 2, - "stripTrailingSpaces": 2, - "d1": 7, - "zd": 1, - "yy": 19, - "dd": 4, - "I": 43, - "<10>": 1, - "dd=": 2, - "mm=": 3, - "1": 74, - "d1=": 1, - "2": 14, - "p1=": 1, - "mm": 7, - "p2=": 1, - "yy=": 1, - "3": 6, - "dd_": 1, - "mm_": 1, - "inetTime": 1, - "Decode": 1, - "Internet": 1, - "Format": 1, - "Time": 1, - "from": 16, - "H": 1, - "format": 2, - "Offset": 1, - "relative": 1, - "to": 73, - "GMT": 1, - "eg": 3, - "hh": 4, - "ss": 4, - "<": 19, - "_hh": 1, - "time#3600": 1, - "_mm": 1, - "time#60": 1, - "_ss": 2, - "hh_": 1, - "_mm_": 1, - "openNewFile": 2, - "openFile": 2, - "openDOM": 2, - "&": 27, - "#39": 1, - "<\",\"<\")>": 1, - "string=": 1, - "gt": 1, - "amp": 1, - "HTML": 1, - "quot": 2, - "stop": 20, - "no": 53, - "no2": 1, - "p1_c_p2": 1, - "getIP": 2, - "Get": 2, - "own": 2, - "IP": 1, - "address": 1, - "ajaxErrorRedirect": 2, - "classExport": 2, - "className": 2, - "methods": 2, - ".methods": 1, - "strx": 2, - "disableEwdMgr": 1, - "enableEwdMgr": 1, - "enableWLDAccess": 1, - "disableWLDAccess": 1, - "isSSOValid": 2, - "sso": 2, - "username": 8, - "password": 8, - "zewdMgrAjax2": 1, - "uniqueId": 1, - "nodeOID": 2, - "filename": 2, - "linkToParentSession": 2, - "zewdCompiler20": 1, - "exportToGTM": 1, - "routine": 4, - "zewdDemo": 1, - "Tutorial": 1, - "Wed": 1, - "Apr": 1, - "getLanguage": 1, - "getRequestValue": 1, - "login": 1, - "getTextValue": 4, - "getPasswordValue": 2, - "_username_": 1, - "_password": 1, - "logine": 1, - "message": 8, - "textid": 1, - "errorMessage": 1, - "ewdDemo": 8, - "clearList": 2, - "appendToList": 4, - "addUsername": 1, - "newUsername": 5, - "newUsername_": 1, - "setTextValue": 4, - "testValue": 1, - "pass": 24, - "getSelectValue": 3, - "_user": 1, - "getPassword": 1, - "setPassword": 1, - "getObjDetails": 1, - "data": 43, - "_user_": 1, - "_data": 2, - "setRadioOn": 2, - "initialiseCheckbox": 2, - "setCheckboxOn": 3, - "createLanguageList": 1, - "setMultipleSelectOn": 2, - "clearTextArea": 2, - "textarea": 2, - "createTextArea": 1, - ".textarea": 1, - "userType": 4, - "setMultipleSelectValues": 1, - ".selected": 1, - "testField3": 3, - ".value": 1, - "testField2": 1, - "field3": 1, - "must": 7, - "null": 6, - "dateTime": 1, - "start": 24, - "student": 14, - "zwrite": 1, - "write": 59, - "order": 11, - "do": 15, - "quit": 30, - "file": 10, - "part": 3, - "DataBallet.": 4, - "C": 9, - "Laurent": 2, - "Parenteau": 2, - "": 2, - "DataBallet": 4, "encode": 1, + "message": 8, "Return": 1, "base64": 6, "URL": 2, + "and": 56, "Filename": 1, "safe": 3, "alphabet": 2, "RFC": 1, + "new": 15, "todrop": 2, + "i": 465, "Populate": 1, "values": 4, "on": 15, "first": 10, "use": 5, "only.": 1, + "if": 44, "zextract": 3, "zlength": 3, + "-": 1604, + "GT.M": 30, "Digest": 2, "Extension": 9, "Piotr": 7, "Koper": 7, "": 7, + "program": 19, + "this": 38, + "program.": 9, "trademark": 2, "Fidelity": 2, "Information": 2, "Services": 2, "Inc.": 2, + "http": 13, "//sourceforge.net/projects/fis": 2, "gtm/": 2, "simple": 2, @@ -25686,6 +22061,9 @@ "//www.openssl.org/docs/crypto/EVP_DigestInit.html": 1, "The": 11, "return": 7, + "value": 72, + "from": 16, + "&": 27, "digest.init": 3, "usually": 1, "when": 11, @@ -25701,20 +22079,27 @@ "fail.": 1, "Please": 2, "feel": 2, + "to": 73, "contact": 2, "me": 2, "questions": 2, "comments": 4, + "m": 37, "returns": 7, "ASCII": 1, "HEX": 1, "all": 8, "one": 5, + "n": 197, + "c": 113, + "d": 381, + "s": 775, "digest.update": 2, ".c": 2, ".m": 11, "digest.final": 2, ".d": 1, + "q": 244, "init": 6, "alg": 3, "context": 1, @@ -25722,6 +22107,7 @@ "try": 1, "etc": 1, "returned": 1, + "error": 62, "occurs": 1, "e.g.": 2, "unknown": 1, @@ -25737,6 +22123,7 @@ "frees": 1, "memory": 1, "allocated": 1, + "also": 4, ".digest": 1, "algorithms": 1, "availability": 1, @@ -25761,6 +22148,7 @@ "variables": 2, "triangle1": 1, "sum": 15, + "+": 188, "main2": 1, "y": 33, "triangle2": 1, @@ -25772,10 +22160,12 @@ "start1": 2, "entry": 5, "label": 4, + "<": 19, "start2": 1, "function": 6, "computes": 1, "factorial": 3, + "f": 93, "f*n": 1, "main": 1, "GMRGPNB0": 1, @@ -25800,17 +22190,21 @@ "WANT": 1, "START": 1, "BUILDING": 1, + "S": 99, "GMRGE0": 11, "GMRGADD": 4, + "Q": 58, "D": 64, "GMR": 6, "GMRGA0": 11, "GMRGPDA": 9, "GMRGCSW": 2, "NOW": 1, + "%": 203, "DTC": 1, "GMRGB0": 9, "O": 24, + "I": 43, "GMRGST": 6, "GMRGPDT": 2, "STAT": 8, @@ -25819,8 +22213,10 @@ "GMRGSTAT": 8, "P": 68, "_GMRGB0_": 2, + "_": 126, "GMRD": 6, "GMRGSSW": 3, + "[": 53, "SNT": 1, "GMRGPNB1": 1, "GMRGNAR": 8, @@ -25878,12 +22274,21 @@ "engineering": 1, "obtaining": 1, "boolean": 2, + "functions": 4, "integer": 1, "addition": 1, "modulo": 1, "division.": 1, "//en.wikipedia.org/wiki/MD5": 1, + "r": 88, + "k": 122, + "h": 39, + "j": 67, + "g": 228, + "w": 127, "t": 11, + "p": 84, + "l": 84, "#64": 1, "msg_": 1, "_m_": 1, @@ -25893,6 +22298,7 @@ ".p": 1, "..": 28, "...": 6, + "e": 210, "*i": 3, "#16": 3, "xor": 4, @@ -25919,14 +22325,31 @@ "Emulation": 1, "Amazon": 1, "SimpleDB": 1, + "|": 170, + "M/Gateway": 4, + "Developments": 4, + "Ltd": 4, + "Reigate": 4, + "Surrey": 4, + "UK.": 4, + "All": 4, + "rights": 4, + "reserved.": 4, + "//www.mgateway.com": 4, + "Email": 4, + "rtweed@mgateway.com": 4, + "QUIT": 249, "buildDate": 1, "indexLength": 10, "Note": 2, "keyId": 108, "been": 4, "tested": 1, + "must": 7, "valid": 1, + "time": 9, "these": 1, + "methods": 2, "are": 11, "called": 8, "To": 2, @@ -25940,6 +22363,7 @@ "requestId": 17, "boxUsage": 11, "startTime": 21, + "stop": 20, ".startTime": 5, "MDBUAF": 2, "end": 33, @@ -25950,16 +22374,22 @@ "dnx": 3, "id": 33, "noOfDomains": 12, + "token": 21, + "tr": 13, "MDBConfig": 1, "getDomainId": 3, + "name": 121, "found": 7, "namex": 8, + "o": 51, "buildItemNameIndex": 2, "domainId": 53, "itemId": 41, + "itemValue": 7, "itemValuex": 3, "countDomains": 2, "key": 22, + "no": 53, "deleteDomain": 2, "listDomains": 1, "maxNoOfDomains": 2, @@ -25974,13 +22404,16 @@ "attribId": 36, "valuex": 13, "putAttributes": 2, + "itemName": 16, "attributes": 32, + "replace": 27, "valueId": 16, "xvalue": 4, "add": 5, "Item": 1, "Domain": 1, "itemNamex": 4, + "increment": 11, "parseJSON": 1, "zmwire": 53, "attributesJSON": 1, @@ -26011,12 +22444,15 @@ "left": 5, "completely": 3, "references": 1, + "pos": 33, "maxNoOfItems": 3, "itemList": 12, "session": 1, "identifier": 1, "stored": 1, "queryExpression": 16, + "zewd": 17, + "ok": 14, "relink": 1, "zewdGTMRuntime": 1, "CGIEVAR": 1, @@ -26026,7 +22462,9 @@ "KEY": 36, "response": 29, "WebLink": 1, + "access": 21, "point": 2, + "here": 4, "action": 15, "AWSAcessKeyId": 1, "db": 9, @@ -26037,6 +22475,7 @@ "signatureVersion": 3, "stringToSign": 2, "rltKey": 2, + "trace": 24, "_action_": 2, "h_": 3, "mdbKey": 2, @@ -26085,6 +22524,7 @@ "limit": 14, "asc": 1, "inValue": 6, + "str": 15, "expr": 18, "rel": 2, "itemStack": 3, @@ -26096,14 +22536,18 @@ "thisWord=": 7, "inAttr": 2, "c=": 28, + "1": 74, "queryExpression=": 4, "_queryExpression": 2, "4": 5, + "null": 6, + "3": 6, "isNull": 1, "5": 1, "8": 1, "isNotNull": 1, "9": 1, + "np": 17, "offset": 6, "prevName": 1, "np=": 1, @@ -26124,6 +22568,7 @@ ".queryExpression": 1, ".orderBy": 1, ".limit": 1, + "replaceAll": 11, "executeSelect": 1, ".itemStack": 1, "***": 2, @@ -26131,12 +22576,25 @@ "numeric": 6, "N.N": 12, "N.N1": 4, + "escape": 7, "externalSelect": 2, "json": 9, "_keyId_": 1, "_selectExpression": 1, + "FromStr": 6, + "ToStr": 4, + "InText": 4, + "old": 3, + "string": 50, + "p1": 5, + "p2": 10, + "stripTrailingSpaces": 2, "spaces": 3, + "makeString": 3, "string_spaces": 1, + "char": 9, + "len": 8, + "characters": 4, "test": 6, "miles": 4, "gallons": 4, @@ -26208,6 +22666,7 @@ "help": 2, "drop": 2, "hd=": 1, + "2": 14, "matrix": 2, "stack": 8, "draw": 3, @@ -26393,6 +22852,7 @@ "exec": 4, "subject": 24, "startoffset": 3, + "length": 7, "octets": 2, "starts": 1, "like": 4, @@ -26440,6 +22900,7 @@ "above": 2, "stores": 1, "captured": 6, + "array": 22, "key=": 2, "gstore": 3, "round": 12, @@ -26484,6 +22945,7 @@ "check": 2, "UTF8": 2, "double": 1, + "line": 9, "utf8=": 1, "crlf=": 3, "NL_CRLF": 1, @@ -26501,6 +22963,7 @@ "LF": 1, "CR": 1, "CRLF": 1, + "mode": 12, "middle": 1, ".i": 2, ".match": 2, @@ -26536,6 +22999,7 @@ "print": 8, "aa": 9, "et": 4, + "zt": 20, "direct": 3, "take": 1, "default": 6, @@ -26624,6 +23088,7 @@ "zl_": 2, "Compile": 2, ".options": 1, + "pass": 24, "Run": 1, ".offset": 1, "used.": 2, @@ -26633,6 +23098,7 @@ "exact": 1, "usable": 1, "integers": 1, + "Get": 2, "way": 1, "i*2": 3, "what": 2, @@ -26647,6 +23113,7 @@ "Locale": 5, "Support": 1, "Polish": 1, + "language": 6, "I18N": 2, "PCRE.": 1, "Polish.": 1, @@ -26708,6 +23175,7 @@ "get": 2, "install": 1, "append": 1, + "user": 27, "chown": 1, "gtm": 1, "/opt/gtm": 1, @@ -26718,6 +23186,7 @@ "ZLINK": 1, "due": 1, "unexpected": 1, + "format": 2, "Object": 1, "compiled": 1, "CHSET": 1, @@ -26750,6 +23219,7 @@ "library": 1, "compilation": 2, "Example": 1, + "run": 2, "longrun": 3, "Equal": 1, "corrected": 1, @@ -26772,13 +23242,16 @@ "mechanism.": 1, "depending": 1, "caller": 1, + "type": 2, "exception.": 1, "lead": 1, "writing": 4, "prompt": 1, + "routine": 4, "terminating": 1, "image.": 1, "define": 2, + "own": 2, "handlers.": 1, "Handler": 1, "No": 17, @@ -26890,6 +23363,7 @@ "DPTNOFZY": 2, "DPTNOFZK": 2, "K": 5, + "R": 2, "DTIME": 1, "UPPER": 1, "VALM1": 1, @@ -26933,6 +23407,7 @@ "ENCOUNTER": 2, "**15": 1, "Aug": 1, + "Build": 6, "DATA2PCE": 1, "PXADATA": 7, "PXAPKG": 9, @@ -27011,6 +23486,7 @@ "Order": 1, "#100": 1, "process": 3, + "occurred": 2, "processed": 1, "could": 1, "incorrectly": 1, @@ -27265,6 +23741,8 @@ "M/Wire": 4, "Protocol": 2, "Systems": 1, + "eg": 3, + "Cache": 3, "By": 1, "server": 1, "port": 4, @@ -27290,6 +23768,7 @@ "On": 1, "installed": 1, "MGWSI": 1, + "m_apache": 3, "provide": 1, "hashing": 1, "passwords": 1, @@ -27312,6 +23791,7 @@ "_crlf": 22, "_response_": 4, "_crlf_response_crlf": 4, + "zv": 6, "authNeeded": 6, "input": 41, "cleardown": 2, @@ -27349,18 +23829,21 @@ "subs": 8, "nsp": 1, "subs_": 2, + "quot": 2, "_data_": 3, "subscripts": 8, "_value_": 1, "_error_": 1, "kill": 3, "xx": 16, + "yy": 19, "method": 2, "Missing": 5, "JSON": 7, "transaction": 6, "document": 6, "setJSON": 4, + "globalName": 7, "GlobalName": 3, "setGlobal": 1, "zmwire_null_value": 1, @@ -27374,6 +23857,7 @@ "##": 2, "decr": 1, "decrby": 1, + "subscript": 7, "direction": 1, "subscriptValue": 1, "dataStatus": 1, @@ -27384,6 +23868,7 @@ "queryget": 1, "xxyy": 2, "zz": 2, + "exists": 6, "getallsubscripts": 1, "orderall": 1, "": 3, @@ -27418,6 +23903,7 @@ "valquot_value_valquot": 1, "json_value_": 1, "subscripts1": 2, + "dd": 4, "subx": 3, "subNo": 1, "numsub": 1, @@ -27437,7 +23923,301 @@ "Unescape": 1, "buf": 4, "c1": 4, - "buf_c1_": 1 + "buf_c1_": 1, + "zewdAPI": 52, + "Enterprise": 5, + "Web": 5, + "Developer": 5, + "APIs": 1, + "Product": 2, + "Date": 2, + "Fri": 1, + "Nov": 1, + "getVersion": 1, + "zewdCompiler": 6, + "date": 1, + "getDate": 1, + "compilePage": 2, + "app": 13, + "page": 12, + "technology": 9, + "outputPath": 4, + "multilingual": 4, + "maxLines": 4, + "compileAll": 2, + "templatePageName": 2, + "autoTranslate": 2, + "verbose": 2, + "zewdMgr": 1, + "startSession": 2, + "requestArray": 2, + "serverArray": 1, + "sessionArray": 5, + "filesArray": 1, + "zewdPHP": 8, + ".requestArray": 2, + ".serverArray": 1, + ".sessionArray": 3, + ".filesArray": 1, + "closeSession": 2, + "saveSession": 2, + "endOfPage": 2, + "prePageScript": 2, + "sessid": 146, + "releaseLock": 2, + "tokeniseURL": 2, + "url": 2, + "zewdCompiler16": 5, + "getSessid": 1, + "isTokenExpired": 2, + "zewdSession": 39, + "initialiseSession": 1, + "deleteSession": 2, + "changeApp": 1, + "appName": 4, + "setSessionValue": 6, + "setRedirect": 1, + "toPage": 1, + "path": 4, + "getRootURL": 1, + "_sessid_": 3, + "_token_": 1, + "_nextPage": 1, + "zcvt": 11, + "nextPage": 1, + "isNextPageTokenValid": 2, + "zewdCompiler13": 10, + "isCSP": 1, + "normaliseTextValue": 1, + "text": 6, + "writeLine": 2, + "CacheTempBuffer": 2, + "displayOptions": 2, + "fieldName": 5, + "listName": 6, + "codeValue": 7, + "nnvp": 1, + "nvp": 1, + "textValue": 6, + "getSessionValue": 3, + "codeValueEsc": 7, + "textValueEsc": 7, + "htmlOutputEncode": 2, + "zewdAPI2": 5, + "_codeValueEsc_": 1, + "selected": 4, + "translationMode": 1, + "_appName": 1, + "typex": 1, + "avoid": 1, + "bug": 1, + "getPhraseIndex": 1, + "zewdCompiler5": 1, + "licensed": 1, + "setWarning": 2, + "isTemp": 11, + "setWLDSymbol": 1, + "Duplicate": 1, + "performance": 1, + "wldAppName": 1, + "wldName": 1, + "wldSessid": 1, + "zzname": 1, + "extcErr": 1, + "mess": 3, + "namespace": 1, + "valueErr": 1, + "exportCustomTags": 2, + "tagList": 1, + "filepath": 10, + ".tagList": 1, + "exportAllCustomTags": 2, + "importCustomTags": 2, + "filePath": 2, + "zewdForm": 1, + "stripSpaces": 6, + "obj": 6, + "prop": 6, + "setSessionObject": 3, + "allowJSONAccess": 1, + "sessionName": 30, + "disallowJSONAccess": 1, + "JSONAccess": 1, + "existsInSession": 2, + "existsInSessionArray": 2, + "p3": 3, + "p4": 2, + "p5": 2, + "p6": 2, + "p7": 2, + "p8": 2, + "p9": 2, + "p10": 2, + "p11": 2, + "clearSessionArray": 1, + "arrayName": 35, + "setSessionArray": 1, + "getSessionArray": 1, + "clearArray": 2, + "getSessionArrayErr": 1, + "Come": 1, + "addToSession": 2, + "@name": 4, + "mergeToSession": 1, + "mergeGlobalToSession": 2, + "mergeGlobalFromSession": 2, + "mergeArrayToSession": 1, + "mergeArrayToSessionObject": 2, + ".array": 1, + "mergeArrayFromSession": 1, + "mergeFromSession": 1, + "deleteFromSession": 1, + "deleteFromSessionObject": 1, + "sessionNameExists": 1, + "getSessionArrayValue": 2, + ".exists": 1, + "sessionArrayValueExists": 2, + "deleteSessionArrayValue": 2, + "Objects": 1, + "objectName": 13, + "propertyName": 3, + "propertyValue": 5, + "comma": 3, + "objectName_": 2, + "_propertyName": 2, + "_propertyName_": 2, + "_propertyValue_": 1, + "_p": 1, + "quoted": 1, + "removeDocument": 1, + "zewdDOM": 3, + "instanceName": 2, + "clearXMLIndex": 1, + "zewdSchemaForm": 1, + "closeDOM": 1, + "makeTokenString": 1, + "token_": 1, + "convertDateToSeconds": 1, + "hdate": 7, + "hdate*86400": 1, + "convertSecondsToDate": 1, + "secs": 2, + "secs#86400": 1, + "getTokenExpiry": 2, + "h*86400": 1, + "randChar": 1, + "lowerCase": 2, + "stripLeadingSpaces": 2, + "d1": 7, + "zd": 1, + "<10>": 1, + "dd=": 2, + "mm=": 3, + "d1=": 1, + "p1=": 1, + "mm": 7, + "p2=": 1, + "yy=": 1, + "dd_": 1, + "mm_": 1, + "inetTime": 1, + "Decode": 1, + "Internet": 1, + "Format": 1, + "Time": 1, + "H": 1, + "Offset": 1, + "relative": 1, + "GMT": 1, + "hh": 4, + "ss": 4, + "_hh": 1, + "time#3600": 1, + "_mm": 1, + "time#60": 1, + "_ss": 2, + "hh_": 1, + "_mm_": 1, + "openNewFile": 2, + "openFile": 2, + "openDOM": 2, + "#39": 1, + "<\",\"<\")>": 1, + "string=": 1, + "gt": 1, + "amp": 1, + "HTML": 1, + "no2": 1, + "p1_c_p2": 1, + "getIP": 2, + "IP": 1, + "address": 1, + "ajaxErrorRedirect": 2, + "classExport": 2, + "className": 2, + ".methods": 1, + "strx": 2, + "disableEwdMgr": 1, + "enableEwdMgr": 1, + "enableWLDAccess": 1, + "disableWLDAccess": 1, + "isSSOValid": 2, + "sso": 2, + "username": 8, + "password": 8, + "zewdMgrAjax2": 1, + "uniqueId": 1, + "nodeOID": 2, + "filename": 2, + "linkToParentSession": 2, + "zewdCompiler20": 1, + "exportToGTM": 1, + "zewdDemo": 1, + "Tutorial": 1, + "Wed": 1, + "Apr": 1, + "getLanguage": 1, + "getRequestValue": 1, + "login": 1, + "getTextValue": 4, + "getPasswordValue": 2, + "_username_": 1, + "_password": 1, + "logine": 1, + "textid": 1, + "errorMessage": 1, + "ewdDemo": 8, + "clearList": 2, + "appendToList": 4, + "addUsername": 1, + "newUsername": 5, + "newUsername_": 1, + "setTextValue": 4, + "testValue": 1, + "getSelectValue": 3, + "_user": 1, + "getPassword": 1, + "setPassword": 1, + "getObjDetails": 1, + "_user_": 1, + "_data": 2, + "setRadioOn": 2, + "initialiseCheckbox": 2, + "setCheckboxOn": 3, + "createLanguageList": 1, + "setMultipleSelectOn": 2, + "clearTextArea": 2, + "textarea": 2, + "createTextArea": 1, + ".textarea": 1, + "userType": 4, + "setMultipleSelectValues": 1, + ".selected": 1, + "testField3": 3, + ".value": 1, + "testField2": 1, + "field3": 1, + "dateTime": 1 }, "Makefile": { "all": 1, @@ -27466,52 +24246,96 @@ "Tender": 1 }, "Matlab": { - "function": 34, + "data": 27, + "load_data": 4, + "(": 1379, + ")": 1380, + ";": 909, + "t0": 6, + "t1": 6, + "t2": 6, + "t3": 1, + "dataPlantOne": 3, + "/": 59, + "data.Ts": 6, + "dataAdapting": 3, + "dataPlantTwo": 3, + "end": 150, + "guessPlantOne": 4, "[": 311, + "]": 311, + "%": 554, + "resultPlantOne": 1, + "find_structural_gains": 2, + "yh": 2, + "fit": 6, + "x0": 4, + "compare": 3, + "resultPlantOne.fit": 1, + "display": 10, + "sprintf": 11, + "guessPlantTwo": 3, + "resultPlantTwo": 1, + "resultPlantTwo.fit": 1, + "kP1": 4, + "resultPlantOne.fit.par": 1, + "kP2": 3, + "resultPlantTwo.fit.par": 1, + "gainSlopeOffset": 6, + "*": 46, + "eye": 9, + "aux.pars": 3, + "this": 2, + "only": 7, + "uses": 1, + "tau": 1, + "through": 1, + "wfs": 1, + "aux.timeDelay": 2, + "true": 2, + "aux.plantFirst": 2, + "s": 13, + "aux.plantSecond": 2, + "+": 169, + "plantOneSlopeOffset": 3, + "plantTwoSlopeOffset": 3, + "aux.m": 3, + "aux.b": 3, "dx": 6, "y": 25, - "]": 311, "adapting_structural_model": 2, - "(": 1379, + "ones": 6, + "{": 157, + "aux": 3, + "}": 157, + "mod": 3, + "idnlgrey": 1, + "...": 162, + "zeros": 61, + "pem": 1, + "function": 34, "t": 32, "x": 46, "u": 3, "varargin": 25, - ")": 1380, - "%": 554, "size": 11, - "aux": 3, - "{": 157, - "end": 150, - "}": 157, - ";": 909, "m": 44, - "zeros": 61, "b": 12, "for": 78, "i": 338, "if": 52, - "+": 169, "elseif": 14, "else": 23, - "display": 10, - "aux.pars": 3, ".*": 2, "Yp": 2, "human": 1, - "aux.timeDelay": 2, "c1": 5, - "aux.m": 3, - "*": 46, - "aux.b": 3, "e": 14, "-": 673, "c2": 5, "Yc": 5, "parallel": 2, "plant": 4, - "aux.plantFirst": 2, - "aux.plantSecond": 2, "Ys": 1, "feedback": 1, "A": 11, @@ -27539,7 +24363,6 @@ "par": 7, "par_text_to_struct": 4, "filesep": 14, - "...": 162, "whipple_pull_force_abcd": 2, "states": 7, "outputs": 10, @@ -27563,8 +24386,6 @@ "row": 6, "abs": 12, "col": 5, - "s": 13, - "sprintf": 11, "removeInputs": 2, "settings.inputs": 1, "keepOutputs": 2, @@ -27603,12 +24424,10 @@ "get_variables": 2, "columns": 4, "create_ieee_paper_plots": 2, - "data": 27, "rollData": 8, "global": 6, "goldenRatio": 12, "sqrt": 14, - "/": 59, "exist": 1, "mkdir": 1, "linestyles": 15, @@ -27873,7 +24692,6 @@ "eig": 6, "real": 3, "zeroIndices": 3, - "ones": 6, "maxEvals": 4, "maxLine": 7, "minLine": 4, @@ -27969,44 +24787,6 @@ "grid_width/": 1, "*grid_width/": 4, "colorbar": 1, - "load_data": 4, - "t0": 6, - "t1": 6, - "t2": 6, - "t3": 1, - "dataPlantOne": 3, - "data.Ts": 6, - "dataAdapting": 3, - "dataPlantTwo": 3, - "guessPlantOne": 4, - "resultPlantOne": 1, - "find_structural_gains": 2, - "yh": 2, - "fit": 6, - "x0": 4, - "compare": 3, - "resultPlantOne.fit": 1, - "guessPlantTwo": 3, - "resultPlantTwo": 1, - "resultPlantTwo.fit": 1, - "kP1": 4, - "resultPlantOne.fit.par": 1, - "kP2": 3, - "resultPlantTwo.fit.par": 1, - "gainSlopeOffset": 6, - "eye": 9, - "this": 2, - "only": 7, - "uses": 1, - "tau": 1, - "through": 1, - "wfs": 1, - "true": 2, - "plantOneSlopeOffset": 3, - "plantTwoSlopeOffset": 3, - "mod": 3, - "idnlgrey": 1, - "pem": 1, "guess.plantOne": 3, "guess.plantTwo": 2, "plantNum.plantOne": 2, @@ -28046,11 +24826,6 @@ "identified": 1, "gains": 12, ".vaf": 1, - "Elements": 1, - "grid": 1, - "definition": 2, - "Dimensionless": 1, - "integrating": 1, "Choice": 2, "mass": 2, "parameter": 2, @@ -28073,9 +24848,6 @@ "energy": 8, "E_L1": 4, "Omega": 7, - "C_L1": 3, - "*E_L1": 1, - "Szebehely": 1, "E": 8, "Offset": 2, "Initial": 3, @@ -28092,13 +24864,18 @@ "*Omega": 5, "vx_0.": 2, "E_cin": 4, + "Transforming": 1, + "into": 1, + "Hamiltonian": 1, + "variables": 2, + "px_0": 2, + "py_0": 2, "x_T": 25, "y_T": 17, - "vx_T": 22, - "vy_T": 12, + "px_T": 4, + "py_T": 4, "filtro": 15, "E_T": 11, - "delta_E": 7, "a": 17, "matrix": 3, "numbers": 2, @@ -28113,17 +24890,72 @@ "tolerance": 2, "setting": 4, "energy_tol": 6, - "Setting": 1, + "inf": 1, "options": 14, + "odeset": 4, + "@cr3bp_jac": 1, + "Parallel": 2, + "equations": 2, + "motion": 2, + "isreal": 8, + "Check": 6, + "velocity": 2, + "positive": 2, + "Kinetic": 2, + "Y": 19, + "@fH": 1, + "Saving": 4, + "solutions": 2, + "final": 2, + "difference": 2, + "with": 2, + "EnergyH": 1, + "delta_E": 7, + "conservation": 2, + "position": 2, + "point": 14, + "interesting": 4, + "non": 2, + "sense": 2, + "bad": 4, + "t_integrazione": 3, + "t_integr": 1, + "Back": 1, + "vx_T": 22, + "vy_T": 12, + "dphi": 12, + "ftle": 10, + "Manual": 2, + "visualize": 2, + "Inf": 1, + "*log": 2, + "tempo": 4, + "integrare": 2, + ".2f": 5, + "calcolare": 2, + "var_": 2, + "_": 2, + "var_xvx_": 2, + "ode00": 2, + "_n": 2, + "_e": 1, + "_H": 1, + "save": 2, + "nome": 2, + "Elements": 1, + "grid": 1, + "definition": 2, + "Dimensionless": 1, + "integrating": 1, + "C_L1": 3, + "*E_L1": 1, + "Szebehely": 1, + "Setting": 1, "integrator": 2, "RelTol": 2, "AbsTol": 2, "From": 1, "Short": 1, - "odeset": 4, - "Parallel": 2, - "equations": 2, - "motion": 2, "h": 19, "waitbar": 6, "r1": 3, @@ -28133,30 +24965,9 @@ "y_0.": 2, "./": 1, "mu./": 1, - "isreal": 8, - "Check": 6, - "velocity": 2, - "positive": 2, - "Kinetic": 2, - "Y": 19, "@f_reg": 1, - "Saving": 4, - "solutions": 2, - "final": 2, - "difference": 2, - "with": 2, - "conservation": 2, - "position": 2, - "point": 14, - "interesting": 4, - "non": 2, - "sense": 2, - "bad": 4, "close": 4, - "t_integrazione": 3, "filtro_1": 12, - "dphi": 12, - "ftle": 10, "ftle_norm": 1, "ds_x": 1, "ds_vx": 1, @@ -28180,38 +24991,7 @@ "x2": 1, "*ds_x": 2, "*ds_vx": 2, - "Manual": 2, - "visualize": 2, - "*log": 2, "dphi*dphi": 1, - "tempo": 4, - "integrare": 2, - ".2f": 5, - "calcolare": 2, - "var_": 2, - "_": 2, - "var_xvx_": 2, - "ode00": 2, - "_n": 2, - "save": 2, - "nome": 2, - "Transforming": 1, - "into": 1, - "Hamiltonian": 1, - "variables": 2, - "px_0": 2, - "py_0": 2, - "px_T": 4, - "py_T": 4, - "inf": 1, - "@cr3bp_jac": 1, - "@fH": 1, - "EnergyH": 1, - "t_integr": 1, - "Back": 1, - "Inf": 1, - "_e": 1, - "_H": 1, "Range": 1, "E_0": 4, "C_L1/2": 1, @@ -28563,6 +25343,283 @@ "fasten": 1, "pop": 1 }, + "MediaWiki": { + "Overview": 1, + "The": 17, + "GDB": 15, + "Tracepoint": 4, + "Analysis": 1, + "feature": 3, + "is": 9, + "an": 3, + "extension": 1, + "to": 12, + "the": 72, + "Tracing": 3, + "and": 20, + "Monitoring": 1, + "Framework": 1, + "that": 4, + "allows": 2, + "visualization": 1, + "analysis": 1, + "of": 8, + "C/C": 10, + "+": 20, + "tracepoint": 5, + "data": 5, + "collected": 2, + "by": 10, + "stored": 1, + "a": 12, + "log": 1, + "file.": 1, + "Getting": 1, + "Started": 1, + "can": 9, + "be": 18, + "installed": 2, + "from": 8, + "Eclipse": 1, + "update": 2, + "site": 1, + "selecting": 1, + ".": 8, + "requires": 1, + "version": 1, + "or": 8, + "later": 1, + "on": 3, + "local": 1, + "host.": 1, + "executable": 3, + "program": 1, + "must": 3, + "found": 1, + "in": 15, + "path.": 1, + "Trace": 9, + "Perspective": 1, + "To": 1, + "open": 1, + "perspective": 2, + "select": 5, + "includes": 1, + "following": 1, + "views": 2, + "default": 2, + "*": 6, + "This": 7, + "view": 7, + "shows": 7, + "projects": 1, + "workspace": 2, + "used": 1, + "create": 1, + "manage": 1, + "projects.": 1, + "running": 1, + "Postmortem": 5, + "Debugger": 4, + "instances": 1, + "displays": 2, + "thread": 1, + "stack": 2, + "trace": 17, + "associated": 1, + "with": 4, + "tracepoint.": 3, + "status": 1, + "debugger": 1, + "navigation": 1, + "records.": 1, + "console": 1, + "output": 1, + "Debugger.": 1, + "editor": 7, + "area": 2, + "contains": 1, + "editors": 1, + "when": 1, + "opened.": 1, + "[": 11, + "Image": 2, + "images/GDBTracePerspective.png": 1, + "]": 11, + "Collecting": 2, + "Data": 4, + "outside": 2, + "scope": 1, + "this": 5, + "feature.": 1, + "It": 1, + "done": 2, + "command": 1, + "line": 2, + "using": 3, + "CDT": 3, + "debug": 1, + "component": 1, + "within": 1, + "Eclipse.": 1, + "See": 1, + "FAQ": 2, + "entry": 2, + "#References": 2, + "|": 2, + "References": 3, + "section.": 2, + "Importing": 2, + "Some": 1, + "information": 1, + "section": 1, + "redundant": 1, + "LTTng": 3, + "User": 3, + "Guide.": 1, + "For": 1, + "further": 1, + "details": 1, + "see": 1, + "Guide": 2, + "Creating": 1, + "Project": 1, + "In": 5, + "right": 3, + "-": 8, + "click": 8, + "context": 4, + "menu.": 4, + "dialog": 1, + "name": 2, + "your": 2, + "project": 2, + "tracing": 1, + "folder": 5, + "Browse": 2, + "enter": 2, + "source": 2, + "directory.": 1, + "Select": 1, + "file": 6, + "tree.": 1, + "Optionally": 1, + "set": 1, + "type": 2, + "Click": 1, + "Alternatively": 1, + "drag": 1, + "&": 1, + "dropped": 1, + "any": 2, + "external": 1, + "manager.": 1, + "Selecting": 2, + "Type": 1, + "Right": 2, + "imported": 1, + "choose": 2, + "step": 1, + "omitted": 1, + "if": 1, + "was": 2, + "selected": 3, + "at": 3, + "import.": 1, + "will": 6, + "updated": 2, + "icon": 1, + "images/gdb_icon16.png": 1, + "Executable": 1, + "created": 1, + "identified": 1, + "so": 2, + "launched": 1, + "properly.": 1, + "path": 1, + "press": 1, + "recognized": 1, + "as": 1, + "executable.": 1, + "Visualizing": 1, + "Opening": 1, + "double": 1, + "it": 3, + "opened": 2, + "Events": 5, + "instance": 1, + "launched.": 1, + "If": 2, + "available": 1, + "code": 1, + "corresponding": 1, + "first": 1, + "record": 2, + "also": 2, + "editor.": 2, + "At": 1, + "point": 1, + "recommended": 1, + "relocate": 1, + "not": 1, + "hidden": 1, + "Viewing": 1, + "table": 1, + "shown": 1, + "one": 1, + "row": 1, + "for": 2, + "each": 1, + "record.": 2, + "column": 6, + "sequential": 1, + "number.": 1, + "number": 2, + "assigned": 1, + "collection": 1, + "time": 2, + "method": 1, + "where": 1, + "set.": 1, + "run": 1, + "Searching": 1, + "filtering": 1, + "entering": 1, + "regular": 1, + "expression": 1, + "header.": 1, + "Navigating": 1, + "records": 1, + "keyboard": 1, + "mouse.": 1, + "show": 1, + "current": 1, + "navigated": 1, + "clicking": 1, + "buttons.": 1, + "updated.": 1, + "http": 4, + "//wiki.eclipse.org/index.php/Linux_Tools_Project/LTTng2/User_Guide": 1, + "//wiki.eclipse.org/CDT/User/FAQ#How_can_I_trace_my_application_using_C.2FC.2B.2B_Tracepoints.3F": 1, + "How": 1, + "I": 1, + "my": 1, + "application": 1, + "Tracepoints": 1, + "Updating": 1, + "Document": 1, + "document": 2, + "maintained": 1, + "collaborative": 1, + "wiki.": 1, + "you": 1, + "wish": 1, + "modify": 1, + "please": 1, + "visit": 1, + "//wiki.eclipse.org/index.php/Linux_Tools_Project/GDB_Tracepoint_Analysis/User_Guide": 1, + "//wiki.eclipse.org/Linux_Tools_Project/GDB_Tracepoint_Analysis/User_Guide": 1 + }, "Monkey": { "Strict": 1, "sample": 1, @@ -28677,280 +25734,6 @@ "&": 1, "c": 1 }, - "MoonScript": { - "types": 2, - "require": 5, - "util": 2, - "data": 1, - "import": 5, - "reversed": 2, - "unpack": 22, - "from": 4, - "ntype": 16, - "mtype": 3, - "build": 7, - "smart_node": 7, - "is_slice": 2, - "value_is_singular": 3, - "insert": 18, - "table": 2, - "NameProxy": 14, - "LocalName": 2, - "destructure": 1, - "local": 1, - "implicitly_return": 2, - "class": 4, - "Run": 8, - "new": 2, - "(": 54, - "@fn": 1, - ")": 54, - "self": 2, - "[": 79, - "]": 79, - "call": 3, - "state": 2, - "self.fn": 1, - "-": 51, - "transform": 2, - "the": 4, - "last": 6, - "stm": 16, - "is": 2, - "a": 4, - "list": 6, - "of": 1, - "stms": 4, - "will": 1, - "puke": 1, - "on": 1, - "group": 1, - "apply_to_last": 6, - "fn": 3, - "find": 2, - "real": 1, - "exp": 17, - "last_exp_id": 3, - "for": 20, - "i": 15, - "#stms": 1, - "if": 43, - "and": 8, - "break": 1, - "return": 11, - "in": 18, - "ipairs": 3, - "else": 22, - "body": 26, - "sindle": 1, - "expression/statement": 1, - "is_singular": 2, - "false": 2, - "#body": 1, - "true": 4, - "find_assigns": 2, - "out": 9, - "{": 135, - "}": 136, - "thing": 4, - "*body": 2, - "switch": 7, - "when": 12, - "table.insert": 3, - "extract": 1, - "names": 16, - "hoist_declarations": 1, - "assigns": 5, - "hoist": 1, - "plain": 1, - "old": 1, - "*find_assigns": 1, - "name": 31, - "*names": 3, - "type": 5, - "after": 1, - "runs": 1, - "idx": 4, - "while": 3, - "do": 2, - "+": 2, - "expand_elseif_assign": 2, - "ifstm": 5, - "#ifstm": 1, - "case": 13, - "split": 4, - "constructor_name": 2, - "with_continue_listener": 4, - "continue_name": 13, - "nil": 8, - "@listen": 1, - "unless": 6, - "@put_name": 2, - "build.group": 14, - "@splice": 1, - "lines": 2, - "Transformer": 2, - "@transformers": 3, - "@seen_nodes": 3, - "setmetatable": 1, - "__mode": 1, - "scope": 4, - "node": 68, - "...": 10, - "transformer": 3, - "res": 3, - "or": 6, - "bind": 1, - "@transform": 2, - "__call": 1, - "can_transform": 1, - "construct_comprehension": 2, - "inner": 2, - "clauses": 4, - "current_stms": 7, - "_": 10, - "clause": 4, - "t": 10, - "iter": 2, - "elseif": 1, - "cond": 11, - "error": 4, - "..t": 1, - "Statement": 2, - "root_stms": 1, - "@": 1, - "assign": 9, - "values": 10, - "bubble": 1, - "cascading": 2, - "transformed": 2, - "#values": 1, - "value": 7, - "@transform.statement": 2, - "types.cascading": 1, - "ret": 16, - "types.is_value": 1, - "destructure.has_destructure": 2, - "destructure.split_assign": 1, - "continue": 1, - "@send": 1, - "build.assign_one": 11, - "export": 1, - "they": 1, - "are": 1, - "included": 1, - "#node": 3, - "cls": 5, - "cls.name": 1, - "build.assign": 3, - "update": 1, - "op": 2, - "op_final": 3, - "match": 1, - "..op": 1, - "not": 2, - "source": 7, - "stubs": 1, - "real_names": 4, - "build.chain": 7, - "base": 8, - "stub": 4, - "*stubs": 2, - "source_name": 3, - "comprehension": 1, - "action": 4, - "decorated": 1, - "dec": 6, - "wrapped": 4, - "fail": 5, - "..": 1, - "build.declare": 1, - "*stm": 1, - "expand": 1, - "destructure.build_assign": 2, - "build.do": 2, - "apply": 1, - "decorator": 1, - "mutate": 1, - "all": 1, - "bodies": 1, - "body_idx": 3, - "with": 3, - "block": 2, - "scope_name": 5, - "named_assign": 2, - "assign_name": 1, - "@set": 1, - "foreach": 1, - "node.iter": 1, - "destructures": 5, - "node.names": 3, - "proxy": 2, - "next": 1, - "node.body": 9, - "index_name": 3, - "list_name": 6, - "slice_var": 3, - "bounds": 3, - "slice": 7, - "#list": 1, - "table.remove": 2, - "max_tmp_name": 5, - "index": 2, - "conds": 3, - "exp_name": 3, - "convert": 1, - "into": 1, - "statment": 1, - "convert_cond": 2, - "case_exps": 3, - "cond_exp": 5, - "first": 3, - "if_stm": 5, - "*conds": 1, - "if_cond": 4, - "parent_assign": 3, - "parent_val": 1, - "apart": 1, - "properties": 4, - "statements": 4, - "item": 3, - "tuple": 8, - "*item": 1, - "constructor": 7, - "*properties": 1, - "key": 3, - "parent_cls_name": 5, - "base_name": 4, - "self_name": 4, - "cls_name": 1, - "build.fndef": 3, - "args": 3, - "arrow": 1, - "then": 2, - "constructor.arrow": 1, - "real_name": 6, - "#real_name": 1, - "build.table": 2, - "look": 1, - "up": 1, - "object": 1, - "class_lookup": 3, - "cls_mt": 2, - "out_body": 1, - "make": 1, - "sure": 1, - "we": 1, - "don": 1, - "string": 1, - "parens": 2, - "colon_stub": 1, - "super": 1, - "dot": 1, - "varargs": 2, - "arg_list": 1, - "Value": 1 - }, "Nemerle": { "using": 1, "System.Console": 1, @@ -32683,6 +29466,206 @@ "CHR": 2, "lcPostBase64Data.": 1 }, + "Org": { + "#": 13, + "+": 13, + "OPTIONS": 1, + "H": 1, + "num": 1, + "nil": 4, + "toc": 2, + "n": 1, + "@": 1, + "t": 10, + "|": 4, + "-": 30, + "f": 2, + "*": 3, + "TeX": 1, + "LaTeX": 1, + "skip": 1, + "d": 2, + "(": 11, + "HIDE": 1, + ")": 11, + "tags": 2, + "not": 1, + "in": 2, + "STARTUP": 1, + "align": 1, + "fold": 1, + "nodlcheck": 1, + "hidestars": 1, + "oddeven": 1, + "lognotestate": 1, + "SEQ_TODO": 1, + "TODO": 1, + "INPROGRESS": 1, + "i": 1, + "WAITING": 1, + "w@": 1, + "DONE": 1, + "CANCELED": 1, + "c@": 1, + "TAGS": 1, + "Write": 1, + "w": 1, + "Update": 1, + "u": 1, + "Fix": 1, + "Check": 1, + "c": 1, + "TITLE": 1, + "org": 10, + "ruby": 6, + "AUTHOR": 1, + "Brian": 1, + "Dewey": 1, + "EMAIL": 1, + "bdewey@gmail.com": 1, + "LANGUAGE": 1, + "en": 1, + "PRIORITIES": 1, + "A": 1, + "C": 1, + "B": 1, + "CATEGORY": 1, + "worg": 1, + "{": 1, + "Back": 1, + "to": 8, + "Worg": 1, + "rubygems": 2, + "ve": 1, + "already": 1, + "created": 1, + "a": 4, + "site.": 1, + "Make": 1, + "sure": 1, + "you": 2, + "have": 1, + "installed": 1, + "sudo": 1, + "gem": 1, + "install": 1, + ".": 1, + "You": 1, + "need": 1, + "register": 1, + "new": 2, + "Webby": 3, + "filter": 3, + "handle": 1, + "mode": 2, + "content.": 2, + "makes": 1, + "this": 2, + "easy.": 1, + "In": 1, + "the": 6, + "lib/": 1, + "folder": 1, + "of": 2, + "your": 2, + "site": 1, + "create": 1, + "file": 1, + "orgmode.rb": 1, + "BEGIN_EXAMPLE": 2, + "require": 1, + "Filters.register": 1, + "do": 2, + "input": 3, + "Orgmode": 2, + "Parser.new": 1, + ".to_html": 1, + "end": 1, + "END_EXAMPLE": 1, + "This": 2, + "code": 1, + "creates": 1, + "that": 1, + "will": 1, + "use": 1, + "parser": 1, + "translate": 1, + "into": 1, + "HTML.": 1, + "Create": 1, + "For": 1, + "example": 1, + "title": 2, + "Parser": 1, + "created_at": 1, + "status": 2, + "Under": 1, + "development": 1, + "erb": 1, + "orgmode": 3, + "<%=>": 2, + "page": 2, + "Status": 1, + "Description": 1, + "Helpful": 1, + "Ruby": 1, + "routines": 1, + "for": 3, + "parsing": 1, + "files.": 1, + "The": 3, + "most": 1, + "significant": 1, + "thing": 2, + "library": 1, + "does": 1, + "today": 1, + "is": 5, + "convert": 1, + "files": 1, + "textile.": 1, + "Currently": 1, + "cannot": 1, + "much": 1, + "customize": 1, + "conversion.": 1, + "supplied": 1, + "textile": 1, + "conversion": 1, + "optimized": 1, + "extracting": 1, + "from": 1, + "orgfile": 1, + "as": 1, + "opposed": 1, + "History": 1, + "**": 1, + "Version": 1, + "first": 1, + "output": 2, + "HTML": 2, + "gets": 1, + "class": 1, + "now": 1, + "indented": 1, + "Proper": 1, + "support": 1, + "multi": 1, + "paragraph": 2, + "list": 1, + "items.": 1, + "See": 1, + "part": 1, + "last": 1, + "bullet.": 1, + "Fixed": 1, + "bugs": 1, + "wouldn": 1, + "s": 1, + "all": 1, + "there": 1, + "it": 1 + }, "Oxygene": { "": 1, "DefaultTargets=": 1, @@ -37140,6 +34123,70 @@ "e.args": 1, "socket.EAI_NONAME": 1 }, + "QMake": { + "QT": 4, + "+": 13, + "core": 2, + "gui": 2, + "greaterThan": 1, + "(": 8, + "QT_MAJOR_VERSION": 1, + ")": 8, + "widgets": 1, + "contains": 2, + "QT_CONFIG": 2, + "opengl": 2, + "|": 1, + "opengles2": 1, + "{": 6, + "}": 6, + "else": 2, + "DEFINES": 1, + "QT_NO_OPENGL": 1, + "TEMPLATE": 2, + "app": 2, + "win32": 2, + "TARGET": 3, + "BlahApp": 1, + "RC_FILE": 1, + "Resources/winres.rc": 1, + "blahapp": 1, + "include": 1, + "functions.pri": 1, + "SOURCES": 2, + "file.cpp": 2, + "HEADERS": 2, + "file.h": 2, + "FORMS": 2, + "file.ui": 1, + "RESOURCES": 1, + "res.qrc": 1, + "exists": 1, + ".git/HEAD": 1, + "system": 2, + "git": 1, + "rev": 1, + "-": 1, + "parse": 1, + "HEAD": 1, + "rev.txt": 2, + "echo": 1, + "ThisIsNotAGitRepo": 1, + "SHEBANG#!qmake": 1, + "message": 1, + "This": 1, + "is": 1, + "QMake.": 1, + "CONFIG": 1, + "qt": 1, + "simpleapp": 1, + "file2.c": 1, + "This/Is/Folder/file3.cpp": 1, + "file2.h": 1, + "This/Is/Folder/file3.h": 1, + "This/Is/Folder/file3.ui": 1, + "Test.ui": 1 + }, "R": { "SHEBANG#!Rscript": 1, "ParseDates": 2, @@ -37441,6 +34488,3850 @@ "my_ts..": 1, "SimpleTokenizer.new": 1 }, + "RDoc": { + "RDoc": 7, + "-": 9, + "Ruby": 4, + "Documentation": 2, + "System": 1, + "home": 1, + "https": 3, + "//github.com/rdoc/rdoc": 1, + "rdoc": 7, + "http": 1, + "//docs.seattlerb.org/rdoc": 1, + "bugs": 1, + "//github.com/rdoc/rdoc/issues": 1, + "code": 1, + "quality": 1, + "{": 1, + "": 1, + "src=": 1, + "alt=": 1, + "}": 1, + "[": 3, + "//codeclimate.com/github/rdoc/rdoc": 1, + "]": 3, + "Description": 1, + "produces": 1, + "HTML": 1, + "and": 9, + "command": 4, + "line": 1, + "documentation": 8, + "for": 9, + "projects.": 1, + "includes": 1, + "the": 12, + "+": 8, + "ri": 1, + "tools": 1, + "generating": 1, + "displaying": 1, + "from": 1, + "line.": 1, + "Generating": 1, + "Once": 1, + "installed": 1, + "you": 3, + "can": 2, + "create": 1, + "using": 1, + "options": 1, + "names...": 1, + "For": 1, + "an": 1, + "up": 1, + "to": 4, + "date": 1, + "option": 1, + "summary": 1, + "type": 2, + "help": 1, + "A": 1, + "typical": 1, + "use": 1, + "might": 1, + "be": 3, + "generate": 1, + "a": 5, + "package": 1, + "of": 2, + "source": 2, + "(": 3, + "such": 1, + "as": 1, + "itself": 1, + ")": 3, + ".": 2, + "This": 2, + "generates": 1, + "all": 1, + "C": 1, + "files": 2, + "in": 4, + "below": 1, + "current": 1, + "directory.": 1, + "These": 1, + "will": 1, + "stored": 1, + "tree": 1, + "starting": 1, + "subdirectory": 1, + "doc": 1, + "You": 2, + "make": 2, + "this": 1, + "slightly": 1, + "more": 1, + "useful": 1, + "your": 1, + "readers": 1, + "by": 1, + "having": 1, + "index": 1, + "page": 1, + "contain": 1, + "primary": 1, + "file.": 1, + "In": 1, + "our": 1, + "case": 1, + "we": 1, + "could": 1, + "#": 1, + "rdoc/rdoc": 1, + "s": 1, + "OK": 1, + "file": 1, + "bug": 1, + "report": 1, + "anything": 1, + "t": 1, + "figure": 1, + "out": 1, + "how": 1, + "produce": 1, + "output": 1, + "like": 1, + "that": 1, + "is": 4, + "probably": 1, + "bug.": 1, + "License": 1, + "Copyright": 1, + "c": 2, + "Dave": 1, + "Thomas": 1, + "The": 1, + "Pragmatic": 1, + "Programmers.": 1, + "Portions": 2, + "Eric": 1, + "Hodel.": 1, + "copyright": 1, + "others": 1, + "see": 1, + "individual": 1, + "LEGAL.rdoc": 1, + "details.": 1, + "free": 1, + "software": 2, + "may": 1, + "redistributed": 1, + "under": 1, + "terms": 1, + "specified": 1, + "LICENSE.rdoc.": 1, + "Warranty": 1, + "provided": 1, + "without": 2, + "any": 1, + "express": 1, + "or": 1, + "implied": 2, + "warranties": 2, + "including": 1, + "limitation": 1, + "merchantability": 1, + "fitness": 1, + "particular": 1, + "purpose.": 1 + }, + "C++": { + "class": 34, + "Bar": 2, + "{": 550, + "protected": 4, + "char": 122, + "*name": 6, + ";": 2290, + "public": 27, + "void": 150, + "hello": 2, + "(": 2422, + ")": 2424, + "}": 549, + "#include": 106, + "": 1, + "": 1, + "": 2, + "static": 260, + "Env": 13, + "*env_instance": 1, + "*": 159, + "NULL": 108, + "*Env": 1, + "instance": 4, + "if": 295, + "env_instance": 3, + "new": 9, + "return": 147, + "QObject": 2, + "QCoreApplication": 1, + "parse": 3, + "const": 166, + "**envp": 1, + "**env": 1, + "**": 2, + "QString": 20, + "envvar": 2, + "name": 21, + "value": 18, + "int": 144, + "indexOfEquals": 5, + "for": 18, + "env": 3, + "envp": 4, + "*env": 1, + "+": 50, + "envvar.indexOf": 1, + "continue": 2, + "envvar.left": 1, + "envvar.mid": 1, + "m_map.insert": 1, + "QVariantMap": 3, + "asVariantMap": 2, + "m_map": 2, + "#ifndef": 23, + "ENV_H": 3, + "#define": 190, + "": 1, + "Q_OBJECT": 1, + "*instance": 1, + "private": 12, + "#endif": 82, + "//": 238, + "GDSDBREADER_H": 3, + "": 1, + "GDS_DIR": 1, + "enum": 6, + "level": 1, + "LEVEL_ONE": 1, + "LEVEL_TWO": 1, + "LEVEL_THREE": 1, + "dbDataStructure": 2, + "label": 1, + "quint32": 3, + "depth": 1, + "userIndex": 1, + "QByteArray": 1, + "data": 2, + "This": 6, + "is": 35, + "COMPRESSED": 1, + "optimize": 1, + "ram": 1, + "and": 14, + "disk": 1, + "space": 2, + "decompressed": 1, + "quint64": 1, + "uniqueID": 1, + "QVector": 2, + "": 1, + "nextItems": 1, + "": 1, + "nextItemsIndices": 1, + "dbDataStructure*": 1, + "father": 1, + "fatherIndex": 1, + "bool": 99, + "noFatherRoot": 1, + "Used": 1, + "to": 75, + "tell": 1, + "this": 22, + "node": 1, + "the": 178, + "root": 1, + "so": 1, + "hasn": 1, + "t": 13, + "in": 9, + "argument": 1, + "list": 2, + "of": 48, + "an": 3, + "operator": 10, + "overload.": 1, + "A": 1, + "friend": 10, + "stream": 5, + "<<": 18, + "myclass.label": 2, + "myclass.depth": 2, + "myclass.userIndex": 2, + "qCompress": 2, + "myclass.data": 4, + "myclass.uniqueID": 2, + "myclass.nextItemsIndices": 2, + "myclass.fatherIndex": 2, + "myclass.noFatherRoot": 2, + "myclass.fileName": 2, + "myclass.firstLineData": 4, + "myclass.linesNumbers": 2, + "QDataStream": 2, + "&": 146, + "myclass": 1, + "//Don": 1, + "read": 1, + "it": 2, + "either": 1, + "qUncompress": 2, + "": 1, + "using": 1, + "namespace": 26, + "std": 49, + "main": 2, + "cout": 1, + "endl": 1, + "": 1, + "": 1, + "": 1, + "EC_KEY_regenerate_key": 1, + "EC_KEY": 3, + "*eckey": 2, + "BIGNUM": 9, + "*priv_key": 1, + "ok": 3, + "BN_CTX": 2, + "*ctx": 2, + "EC_POINT": 4, + "*pub_key": 1, + "eckey": 7, + "EC_GROUP": 2, + "*group": 2, + "EC_KEY_get0_group": 2, + "ctx": 26, + "BN_CTX_new": 2, + "goto": 156, + "err": 26, + "pub_key": 6, + "EC_POINT_new": 4, + "group": 12, + "EC_POINT_mul": 3, + "priv_key": 2, + "EC_KEY_set_private_key": 1, + "EC_KEY_set_public_key": 2, + "EC_POINT_free": 4, + "BN_CTX_free": 2, + "ECDSA_SIG_recover_key_GFp": 3, + "ECDSA_SIG": 3, + "*ecsig": 1, + "unsigned": 20, + "*msg": 2, + "msglen": 2, + "recid": 3, + "check": 2, + "ret": 24, + "*x": 1, + "*e": 1, + "*order": 1, + "*sor": 1, + "*eor": 1, + "*field": 1, + "*R": 1, + "*O": 1, + "*Q": 1, + "*rr": 1, + "*zero": 1, + "n": 28, + "i": 47, + "/": 13, + "-": 225, + "BN_CTX_start": 1, + "order": 8, + "BN_CTX_get": 8, + "EC_GROUP_get_order": 1, + "x": 44, + "BN_copy": 1, + "BN_mul_word": 1, + "BN_add": 1, + "ecsig": 3, + "r": 36, + "field": 3, + "EC_GROUP_get_curve_GFp": 1, + "BN_cmp": 1, + "R": 6, + "EC_POINT_set_compressed_coordinates_GFp": 1, + "%": 4, + "O": 5, + "EC_POINT_is_at_infinity": 1, + "Q": 5, + "EC_GROUP_get_degree": 1, + "e": 14, + "BN_bin2bn": 3, + "msg": 1, + "*msglen": 1, + "BN_rshift": 1, + "zero": 3, + "BN_zero": 1, + "BN_mod_sub": 1, + "rr": 4, + "BN_mod_inverse": 1, + "sor": 3, + "BN_mod_mul": 2, + "s": 9, + "eor": 3, + "BN_CTX_end": 1, + "CKey": 26, + "SetCompressedPubKey": 4, + "EC_KEY_set_conv_form": 1, + "pkey": 14, + "POINT_CONVERSION_COMPRESSED": 1, + "fCompressedPubKey": 5, + "true": 39, + "Reset": 5, + "false": 42, + "EC_KEY_new_by_curve_name": 2, + "NID_secp256k1": 2, + "throw": 4, + "key_error": 6, + "fSet": 7, + "b": 57, + "EC_KEY_dup": 1, + "b.pkey": 2, + "b.fSet": 2, + "EC_KEY_copy": 1, + "hash": 20, + "sizeof": 14, + "vchSig": 18, + "[": 201, + "]": 201, + "nSize": 2, + "vchSig.clear": 2, + "vchSig.resize": 2, + "Shrink": 1, + "fit": 1, + "actual": 1, + "size": 9, + "SignCompact": 2, + "uint256": 10, + "vector": 14, + "": 19, + "fOk": 3, + "*sig": 2, + "ECDSA_do_sign": 1, + "char*": 14, + "sig": 11, + "nBitsR": 3, + "BN_num_bits": 2, + "nBitsS": 3, + "<": 53, + "&&": 23, + "nRecId": 4, + "<4;>": 1, + "keyRec": 5, + "1": 2, + "GetPubKey": 5, + "break": 34, + "BN_bn2bin": 2, + "/8": 2, + "ECDSA_SIG_free": 2, + "SetCompactSignature": 2, + "vchSig.size": 2, + "nV": 6, + "<27>": 1, + "ECDSA_SIG_new": 1, + "EC_KEY_free": 1, + "Verify": 2, + "ECDSA_verify": 1, + "VerifyCompact": 2, + "key": 23, + "key.SetCompactSignature": 1, + "key.GetPubKey": 1, + "IsValid": 4, + "fCompr": 3, + "CSecret": 4, + "secret": 2, + "GetSecret": 2, + "key2": 1, + "key2.SetSecret": 1, + "key2.GetPubKey": 1, + "BITCOIN_KEY_H": 2, + "": 1, + "": 2, + "": 1, + "definition": 1, + "runtime_error": 2, + "explicit": 3, + "string": 10, + "str": 2, + "CKeyID": 5, + "uint160": 8, + "CScriptID": 3, + "CPubKey": 11, + "vchPubKey": 6, + "vchPubKeyIn": 2, + "a": 84, + "a.vchPubKey": 3, + "b.vchPubKey": 3, + "IMPLEMENT_SERIALIZE": 1, + "READWRITE": 1, + "GetID": 1, + "Hash160": 1, + "GetHash": 1, + "Hash": 1, + "vchPubKey.begin": 1, + "vchPubKey.end": 1, + "vchPubKey.size": 3, + "||": 17, + "IsCompressed": 2, + "Raw": 1, + "typedef": 38, + "secure_allocator": 2, + "CPrivKey": 3, + "EC_KEY*": 1, + "IsNull": 1, + "MakeNewKey": 1, + "fCompressed": 3, + "SetPrivKey": 1, + "vchPrivKey": 1, + "SetSecret": 1, + "vchSecret": 1, + "GetPrivKey": 1, + "SetPubKey": 1, + "Sign": 1, + "#ifdef": 16, + "Q_OS_LINUX": 2, + "": 1, + "#if": 44, + "QT_VERSION": 1, + "QT_VERSION_CHECK": 1, + "#error": 9, + "Something": 1, + "wrong": 1, + "with": 6, + "setup.": 1, + "Please": 3, + "report": 2, + "mailing": 1, + "argc": 2, + "char**": 2, + "argv": 2, + "google_breakpad": 1, + "ExceptionHandler": 1, + "eh": 1, + "Utils": 4, + "exceptionHandler": 2, + "qInstallMsgHandler": 1, + "messageHandler": 2, + "QApplication": 1, + "app": 1, + "STATIC_BUILD": 1, + "Q_INIT_RESOURCE": 2, + "WebKit": 1, + "InspectorBackendStub": 1, + "app.setWindowIcon": 1, + "QIcon": 1, + "app.setApplicationName": 1, + "app.setOrganizationName": 1, + "app.setOrganizationDomain": 1, + "app.setApplicationVersion": 1, + "PHANTOMJS_VERSION_STRING": 1, + "Phantom": 1, + "phantom": 1, + "phantom.execute": 1, + "app.exec": 1, + "phantom.returnValue": 1, + "INTERNAL_SUPPRESS_PROTOBUF_FIELD_DEPRECATION": 1, + "": 1, + "": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "persons": 4, + "google": 72, + "protobuf": 72, + "Descriptor*": 3, + "Person_descriptor_": 6, + "internal": 46, + "GeneratedMessageReflection*": 1, + "Person_reflection_": 4, + "protobuf_AssignDesc_protocol_2dbuffer_2eproto": 4, + "protobuf_AddDesc_protocol_2dbuffer_2eproto": 6, + "FileDescriptor*": 1, + "file": 6, + "DescriptorPool": 3, + "generated_pool": 2, + "FindFileByName": 1, + "GOOGLE_CHECK": 1, + "message_type": 1, + "Person_offsets_": 2, + "GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET": 3, + "Person": 65, + "name_": 30, + "GeneratedMessageReflection": 1, + "default_instance_": 8, + "_has_bits_": 14, + "_unknown_fields_": 5, + "MessageFactory": 3, + "generated_factory": 1, + "GOOGLE_PROTOBUF_DECLARE_ONCE": 1, + "protobuf_AssignDescriptors_once_": 2, + "inline": 39, + "protobuf_AssignDescriptorsOnce": 4, + "GoogleOnceInit": 1, + "protobuf_RegisterTypes": 2, + "InternalRegisterGeneratedMessage": 1, + "default_instance": 3, + "protobuf_ShutdownFile_protocol_2dbuffer_2eproto": 4, + "delete": 6, + "already_here": 3, + "GOOGLE_PROTOBUF_VERIFY_VERSION": 1, + "InternalAddGeneratedFile": 1, + "InternalRegisterGeneratedFile": 1, + "InitAsDefaultInstance": 3, + "OnShutdown": 1, + "struct": 8, + "StaticDescriptorInitializer_protocol_2dbuffer_2eproto": 2, + "static_descriptor_initializer_protocol_2dbuffer_2eproto_": 1, + "_MSC_VER": 3, + "kNameFieldNumber": 2, + "Message": 7, + "SharedCtor": 4, + "from": 25, + "MergeFrom": 9, + "_cached_size_": 7, + "const_cast": 3, + "string*": 11, + "kEmptyString": 12, + "memset": 2, + "SharedDtor": 3, + "SetCachedSize": 2, + "GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN": 2, + "GOOGLE_SAFE_CONCURRENT_WRITES_END": 2, + "descriptor": 2, + "*default_instance_": 1, + "Person*": 7, + "New": 4, + "Clear": 5, + "xffu": 3, + "has_name": 6, + "clear": 2, + "mutable_unknown_fields": 4, + "MergePartialFromCodedStream": 2, + "io": 4, + "CodedInputStream*": 2, + "input": 6, + "DO_": 4, + "EXPRESSION": 2, + "uint32": 2, + "tag": 6, + "while": 11, + "ReadTag": 1, + "switch": 3, + "WireFormatLite": 9, + "GetTagFieldNumber": 1, + "case": 33, + "GetTagWireType": 2, + "WIRETYPE_LENGTH_DELIMITED": 1, + "ReadString": 1, + "mutable_name": 3, + "WireFormat": 10, + "VerifyUTF8String": 3, + ".data": 3, + ".length": 3, + "PARSE": 1, + "else": 46, + "handle_uninterpreted": 2, + "ExpectAtEnd": 1, + "default": 4, + "WIRETYPE_END_GROUP": 1, + "SkipField": 1, + "#undef": 3, + "SerializeWithCachedSizes": 2, + "CodedOutputStream*": 2, + "output": 5, + "SERIALIZE": 2, + "WriteString": 1, + "unknown_fields": 7, + ".empty": 3, + "SerializeUnknownFields": 1, + "uint8*": 4, + "SerializeWithCachedSizesToArray": 2, + "target": 6, + "WriteStringToArray": 1, + "SerializeUnknownFieldsToArray": 1, + "ByteSize": 2, + "total_size": 5, + "StringSize": 1, + "ComputeUnknownFieldsSize": 1, + "GOOGLE_CHECK_NE": 2, + "source": 9, + "dynamic_cast_if_available": 1, + "": 12, + "ReflectionOps": 1, + "Merge": 1, + "from._has_bits_": 1, + "from.has_name": 1, + "set_name": 7, + "from.name": 1, + "from.unknown_fields": 1, + "CopyFrom": 5, + "IsInitialized": 3, + "Swap": 2, + "other": 7, + "swap": 3, + "_unknown_fields_.Swap": 1, + "Metadata": 3, + "GetMetadata": 2, + "metadata": 2, + "metadata.descriptor": 1, + "metadata.reflection": 1, + "PROTOBUF_protocol_2dbuffer_2eproto__INCLUDED": 3, + "": 1, + "GOOGLE_PROTOBUF_VERSION": 1, + "was": 3, + "generated": 2, + "by": 5, + "newer": 2, + "version": 4, + "protoc": 2, + "which": 2, + "incompatible": 2, + "your": 3, + "Protocol": 2, + "Buffer": 2, + "headers.": 3, + "update": 1, + "GOOGLE_PROTOBUF_MIN_PROTOC_VERSION": 1, + "older": 1, + "regenerate": 1, + "protoc.": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "virtual": 10, + "*this": 1, + "UnknownFieldSet": 2, + "UnknownFieldSet*": 1, + "GetCachedSize": 1, + "clear_name": 2, + "size_t": 5, + "release_name": 2, + "set_allocated_name": 2, + "set_has_name": 7, + "clear_has_name": 5, + "mutable": 1, + "u": 9, + "|": 8, + "*name_": 1, + "assign": 3, + "reinterpret_cast": 7, + "temp": 2, + "SWIG": 2, + "QSCICOMMAND_H": 2, + "__APPLE__": 4, + "extern": 4, + "": 1, + "": 2, + "": 1, + "QsciScintilla": 7, + "brief": 2, + "The": 8, + "QsciCommand": 7, + "represents": 1, + "editor": 1, + "command": 9, + "that": 7, + "may": 2, + "have": 1, + "one": 42, + "or": 10, + "two": 1, + "keys": 3, + "bound": 4, + "it.": 2, + "Methods": 1, + "are": 3, + "provided": 1, + "change": 1, + "remove": 1, + "binding.": 1, + "Each": 1, + "has": 2, + "user": 2, + "friendly": 2, + "description": 3, + "use": 1, + "mapping": 1, + "dialogs.": 1, + "QSCINTILLA_EXPORT": 2, + "defines": 1, + "different": 1, + "commands": 1, + "can": 3, + "be": 9, + "assigned": 1, + "key.": 1, + "Command": 4, + "Move": 26, + "down": 12, + "line.": 33, + "LineDown": 1, + "QsciScintillaBase": 100, + "SCI_LINEDOWN": 1, + "Extend": 33, + "selection": 39, + "LineDownExtend": 1, + "SCI_LINEDOWNEXTEND": 1, + "rectangular": 9, + "LineDownRectExtend": 1, + "SCI_LINEDOWNRECTEXTEND": 1, + "Scroll": 5, + "view": 2, + "LineScrollDown": 1, + "SCI_LINESCROLLDOWN": 1, + "up": 13, + "LineUp": 1, + "SCI_LINEUP": 1, + "LineUpExtend": 1, + "SCI_LINEUPEXTEND": 1, + "LineUpRectExtend": 1, + "SCI_LINEUPRECTEXTEND": 1, + "LineScrollUp": 1, + "SCI_LINESCROLLUP": 1, + "start": 11, + "document.": 8, + "ScrollToStart": 1, + "SCI_SCROLLTOSTART": 1, + "end": 18, + "ScrollToEnd": 1, + "SCI_SCROLLTOEND": 1, + "vertically": 1, + "centre": 1, + "current": 9, + "VerticalCentreCaret": 1, + "SCI_VERTICALCENTRECARET": 1, + "paragraph.": 4, + "ParaDown": 1, + "SCI_PARADOWN": 1, + "ParaDownExtend": 1, + "SCI_PARADOWNEXTEND": 1, + "ParaUp": 1, + "SCI_PARAUP": 1, + "ParaUpExtend": 1, + "SCI_PARAUPEXTEND": 1, + "left": 7, + "character.": 9, + "CharLeft": 1, + "SCI_CHARLEFT": 1, + "CharLeftExtend": 1, + "SCI_CHARLEFTEXTEND": 1, + "CharLeftRectExtend": 1, + "SCI_CHARLEFTRECTEXTEND": 1, + "right": 8, + "CharRight": 1, + "SCI_CHARRIGHT": 1, + "CharRightExtend": 1, + "SCI_CHARRIGHTEXTEND": 1, + "CharRightRectExtend": 1, + "SCI_CHARRIGHTRECTEXTEND": 1, + "word.": 9, + "WordLeft": 1, + "SCI_WORDLEFT": 1, + "WordLeftExtend": 1, + "SCI_WORDLEFTEXTEND": 1, + "WordRight": 1, + "SCI_WORDRIGHT": 1, + "WordRightExtend": 1, + "SCI_WORDRIGHTEXTEND": 1, + "previous": 5, + "WordLeftEnd": 1, + "SCI_WORDLEFTEND": 1, + "WordLeftEndExtend": 1, + "SCI_WORDLEFTENDEXTEND": 1, + "next": 6, + "WordRightEnd": 1, + "SCI_WORDRIGHTEND": 1, + "WordRightEndExtend": 1, + "SCI_WORDRIGHTENDEXTEND": 1, + "word": 6, + "part.": 4, + "WordPartLeft": 1, + "SCI_WORDPARTLEFT": 1, + "WordPartLeftExtend": 1, + "SCI_WORDPARTLEFTEXTEND": 1, + "WordPartRight": 1, + "SCI_WORDPARTRIGHT": 1, + "WordPartRightExtend": 1, + "SCI_WORDPARTRIGHTEXTEND": 1, + "document": 16, + "Home": 1, + "SCI_HOME": 1, + "HomeExtend": 1, + "SCI_HOMEEXTEND": 1, + "HomeRectExtend": 1, + "SCI_HOMERECTEXTEND": 1, + "displayed": 10, + "HomeDisplay": 1, + "SCI_HOMEDISPLAY": 1, + "HomeDisplayExtend": 1, + "SCI_HOMEDISPLAYEXTEND": 1, + "HomeWrap": 1, + "SCI_HOMEWRAP": 1, + "HomeWrapExtend": 1, + "SCI_HOMEWRAPEXTEND": 1, + "first": 8, + "visible": 6, + "character": 8, + "VCHome": 1, + "SCI_VCHOME": 1, + "VCHomeExtend": 1, + "SCI_VCHOMEEXTEND": 1, + "VCHomeRectExtend": 1, + "SCI_VCHOMERECTEXTEND": 1, + "VCHomeWrap": 1, + "SCI_VCHOMEWRAP": 1, + "VCHomeWrapExtend": 1, + "SCI_VCHOMEWRAPEXTEND": 1, + "LineEnd": 1, + "SCI_LINEEND": 1, + "LineEndExtend": 1, + "SCI_LINEENDEXTEND": 1, + "LineEndRectExtend": 1, + "SCI_LINEENDRECTEXTEND": 1, + "LineEndDisplay": 1, + "SCI_LINEENDDISPLAY": 1, + "LineEndDisplayExtend": 1, + "SCI_LINEENDDISPLAYEXTEND": 1, + "LineEndWrap": 1, + "SCI_LINEENDWRAP": 1, + "LineEndWrapExtend": 1, + "SCI_LINEENDWRAPEXTEND": 1, + "DocumentStart": 1, + "SCI_DOCUMENTSTART": 1, + "DocumentStartExtend": 1, + "SCI_DOCUMENTSTARTEXTEND": 1, + "DocumentEnd": 1, + "SCI_DOCUMENTEND": 1, + "DocumentEndExtend": 1, + "SCI_DOCUMENTENDEXTEND": 1, + "page.": 13, + "PageUp": 1, + "SCI_PAGEUP": 1, + "PageUpExtend": 1, + "SCI_PAGEUPEXTEND": 1, + "PageUpRectExtend": 1, + "SCI_PAGEUPRECTEXTEND": 1, + "PageDown": 1, + "SCI_PAGEDOWN": 1, + "PageDownExtend": 1, + "SCI_PAGEDOWNEXTEND": 1, + "PageDownRectExtend": 1, + "SCI_PAGEDOWNRECTEXTEND": 1, + "Stuttered": 4, + "move": 2, + "StutteredPageUp": 1, + "SCI_STUTTEREDPAGEUP": 1, + "extend": 2, + "StutteredPageUpExtend": 1, + "SCI_STUTTEREDPAGEUPEXTEND": 1, + "StutteredPageDown": 1, + "SCI_STUTTEREDPAGEDOWN": 1, + "StutteredPageDownExtend": 1, + "SCI_STUTTEREDPAGEDOWNEXTEND": 1, + "Delete": 10, + "SCI_CLEAR": 1, + "DeleteBack": 1, + "SCI_DELETEBACK": 1, + "not": 1, + "at": 4, + "DeleteBackNotLine": 1, + "SCI_DELETEBACKNOTLINE": 1, + "left.": 2, + "DeleteWordLeft": 1, + "SCI_DELWORDLEFT": 1, + "right.": 2, + "DeleteWordRight": 1, + "SCI_DELWORDRIGHT": 1, + "DeleteWordRightEnd": 1, + "SCI_DELWORDRIGHTEND": 1, + "line": 10, + "DeleteLineLeft": 1, + "SCI_DELLINELEFT": 1, + "DeleteLineRight": 1, + "SCI_DELLINERIGHT": 1, + "LineDelete": 1, + "SCI_LINEDELETE": 1, + "Cut": 2, + "clipboard.": 5, + "LineCut": 1, + "SCI_LINECUT": 1, + "Copy": 2, + "LineCopy": 1, + "SCI_LINECOPY": 1, + "Transpose": 1, + "lines.": 1, + "LineTranspose": 1, + "SCI_LINETRANSPOSE": 1, + "Duplicate": 2, + "LineDuplicate": 1, + "SCI_LINEDUPLICATE": 1, + "Select": 33, + "whole": 2, + "SelectAll": 1, + "SCI_SELECTALL": 1, + "selected": 2, + "lines": 3, + "MoveSelectedLinesUp": 1, + "SCI_MOVESELECTEDLINESUP": 1, + "MoveSelectedLinesDown": 1, + "SCI_MOVESELECTEDLINESDOWN": 1, + "selection.": 1, + "SelectionDuplicate": 1, + "SCI_SELECTIONDUPLICATE": 1, + "Convert": 2, + "lower": 1, + "case.": 2, + "SelectionLowerCase": 1, + "SCI_LOWERCASE": 1, + "upper": 1, + "SelectionUpperCase": 1, + "SCI_UPPERCASE": 1, + "SelectionCut": 1, + "SCI_CUT": 1, + "SelectionCopy": 1, + "SCI_COPY": 1, + "Paste": 2, + "SCI_PASTE": 1, + "Toggle": 1, + "insert/overtype.": 1, + "EditToggleOvertype": 1, + "SCI_EDITTOGGLEOVERTYPE": 1, + "Insert": 2, + "platform": 1, + "dependent": 1, + "newline.": 1, + "Newline": 1, + "SCI_NEWLINE": 1, + "formfeed.": 1, + "Formfeed": 1, + "SCI_FORMFEED": 1, + "Indent": 1, + "level.": 2, + "Tab": 1, + "SCI_TAB": 1, + "De": 1, + "indent": 1, + "Backtab": 1, + "SCI_BACKTAB": 1, + "Cancel": 2, + "any": 5, + "operation.": 1, + "SCI_CANCEL": 1, + "Undo": 2, + "last": 4, + "command.": 5, + "SCI_UNDO": 1, + "Redo": 2, + "SCI_REDO": 1, + "Zoom": 2, + "in.": 1, + "ZoomIn": 1, + "SCI_ZOOMIN": 1, + "out.": 1, + "ZoomOut": 1, + "SCI_ZOOMOUT": 1, + "Return": 3, + "will": 2, + "executed": 1, + "instance.": 2, + "scicmd": 2, + "Execute": 1, + "execute": 1, + "Binds": 2, + "If": 4, + "then": 6, + "binding": 3, + "removed.": 2, + "invalid": 5, + "unchanged.": 1, + "Valid": 1, + "control": 1, + "c": 50, + "Key_Down": 1, + "Key_Up": 1, + "Key_Left": 1, + "Key_Right": 1, + "Key_Home": 1, + "Key_End": 1, + "Key_PageUp": 1, + "Key_PageDown": 1, + "Key_Delete": 1, + "Key_Insert": 1, + "Key_Escape": 1, + "Key_Backspace": 1, + "Key_Tab": 1, + "Key_Return.": 1, + "Keys": 1, + "modified": 2, + "combination": 1, + "SHIFT": 1, + "CTRL": 1, + "ALT": 1, + "META.": 1, + "sa": 8, + "setAlternateKey": 3, + "validKey": 3, + "setKey": 3, + "alternate": 3, + "altkey": 3, + "alternateKey": 3, + "currently": 2, + "returned.": 4, + "qkey": 2, + "qaltkey": 2, + "valid": 2, + "QsciCommandSet": 1, + "*qs": 1, + "cmd": 1, + "*desc": 1, + "bindKey": 1, + "qk": 1, + "scik": 1, + "*qsCmd": 1, + "scikey": 1, + "scialtkey": 1, + "*descCmd": 1, + "QSCIPRINTER_H": 2, + "": 1, + "": 1, + "QT_BEGIN_NAMESPACE": 1, + "QRect": 2, + "QPainter": 2, + "QT_END_NAMESPACE": 1, + "QsciPrinter": 9, + "sub": 2, + "Qt": 1, + "QPrinter": 3, + "able": 1, + "print": 4, + "text": 5, + "Scintilla": 2, + "further": 1, + "classed": 1, + "alter": 1, + "layout": 1, + "adding": 2, + "headers": 3, + "footers": 2, + "example.": 1, + "Constructs": 1, + "printer": 1, + "paint": 1, + "device": 1, + "mode": 4, + "mode.": 1, + "PrinterMode": 1, + "ScreenResolution": 1, + "Destroys": 1, + "Format": 1, + "page": 4, + "example": 1, + "before": 1, + "drawn": 2, + "on": 1, + "painter": 4, + "used": 4, + "add": 3, + "customised": 2, + "graphics.": 2, + "drawing": 4, + "actually": 1, + "being": 2, + "rather": 1, + "than": 1, + "sized.": 1, + "methods": 1, + "must": 1, + "only": 1, + "called": 1, + "when": 5, + "true.": 1, + "area": 5, + "draw": 1, + "text.": 3, + "should": 1, + "necessary": 1, + "reserve": 1, + "By": 1, + "relative": 1, + "printable": 1, + "Use": 1, + "setFullPage": 1, + "because": 2, + "calling": 1, + "printRange": 2, + "you": 1, + "want": 2, + "try": 1, + "over": 1, + "pagenr": 2, + "number": 3, + "numbered": 1, + "formatPage": 1, + "points": 2, + "each": 2, + "font": 2, + "printing.": 2, + "setMagnification": 2, + "magnification": 3, + "mag": 2, + "Sets": 2, + "printing": 2, + "magnification.": 1, + "Print": 1, + "range": 1, + "qsb.": 1, + "negative": 2, + "signifies": 2, + "returned": 2, + "there": 1, + "no": 1, + "error.": 1, + "*qsb": 1, + "wrap": 4, + "WrapWord.": 1, + "setWrapMode": 2, + "WrapMode": 3, + "wrapMode": 2, + "wmode.": 1, + "wmode": 1, + "v8": 9, + "Scanner": 16, + "UnicodeCache*": 4, + "unicode_cache": 3, + "unicode_cache_": 10, + "octal_pos_": 5, + "Location": 14, + "harmony_scoping_": 4, + "harmony_modules_": 4, + "Initialize": 4, + "Utf16CharacterStream*": 3, + "source_": 7, + "Init": 3, + "has_line_terminator_before_next_": 9, + "SkipWhiteSpace": 4, + "Scan": 5, + "uc32": 19, + "ScanHexNumber": 2, + "expected_length": 4, + "ASSERT": 17, + "prevent": 1, + "overflow": 1, + "digits": 3, + "c0_": 64, + "d": 8, + "HexValue": 2, + "j": 4, + "PushBack": 8, + "Advance": 44, + "STATIC_ASSERT": 5, + "Token": 212, + "NUM_TOKENS": 1, + "byte": 1, + "one_char_tokens": 2, + "ILLEGAL": 120, + "LPAREN": 2, + "RPAREN": 2, + "COMMA": 2, + "COLON": 2, + "SEMICOLON": 2, + "CONDITIONAL": 2, + "f": 5, + "LBRACK": 2, + "RBRACK": 2, + "LBRACE": 2, + "RBRACE": 2, + "BIT_NOT": 2, + "Value": 23, + "Next": 3, + "current_": 2, + "next_": 2, + "has_multiline_comment_before_next_": 5, + "static_cast": 7, + "token": 64, + "": 1, + "pos": 12, + "source_pos": 10, + "next_.token": 3, + "next_.location.beg_pos": 3, + "next_.location.end_pos": 4, + "current_.token": 4, + "IsByteOrderMark": 2, + "xFEFF": 1, + "xFFFE": 1, + "start_position": 2, + "IsWhiteSpace": 2, + "IsLineTerminator": 6, + "SkipSingleLineComment": 6, + "undo": 4, + "WHITESPACE": 6, + "SkipMultiLineComment": 3, + "ch": 5, + "ScanHtmlComment": 3, + "LT": 2, + "next_.literal_chars": 13, + "do": 4, + "ScanString": 3, + "LTE": 1, + "ASSIGN_SHL": 1, + "SHL": 1, + "GTE": 1, + "ASSIGN_SAR": 1, + "ASSIGN_SHR": 1, + "SHR": 1, + "SAR": 1, + "GT": 1, + "EQ_STRICT": 1, + "EQ": 1, + "ASSIGN": 1, + "NE_STRICT": 1, + "NE": 1, + "NOT": 1, + "INC": 1, + "ASSIGN_ADD": 1, + "ADD": 1, + "DEC": 1, + "ASSIGN_SUB": 1, + "SUB": 1, + "ASSIGN_MUL": 1, + "MUL": 1, + "ASSIGN_MOD": 1, + "MOD": 1, + "ASSIGN_DIV": 1, + "DIV": 1, + "AND": 1, + "ASSIGN_BIT_AND": 1, + "BIT_AND": 1, + "OR": 1, + "ASSIGN_BIT_OR": 1, + "BIT_OR": 1, + "ASSIGN_BIT_XOR": 1, + "BIT_XOR": 1, + "IsDecimalDigit": 2, + "ScanNumber": 3, + "PERIOD": 1, + "IsIdentifierStart": 2, + "ScanIdentifierOrKeyword": 2, + "EOS": 1, + "SeekForward": 4, + "current_pos": 4, + "ASSERT_EQ": 1, + "ScanEscape": 2, + "IsCarriageReturn": 2, + "IsLineFeed": 2, + "fall": 2, + "through": 2, + "v": 3, + "xx": 1, + "xxx": 1, + "error": 1, + "immediately": 1, + "octal": 1, + "escape": 1, + "quote": 3, + "consume": 2, + "LiteralScope": 4, + "literal": 2, + ".": 2, + "X": 2, + "E": 3, + "l": 1, + "p": 5, + "w": 1, + "y": 13, + "keyword": 1, + "Unescaped": 1, + "in_character_class": 2, + "AddLiteralCharAdvance": 3, + "literal.Complete": 2, + "ScanLiteralUnicodeEscape": 3, + "V8_SCANNER_H_": 3, + "ParsingFlags": 1, + "kNoParsingFlags": 1, + "kLanguageModeMask": 4, + "kAllowLazy": 1, + "kAllowNativesSyntax": 1, + "kAllowModules": 1, + "CLASSIC_MODE": 2, + "STRICT_MODE": 2, + "EXTENDED_MODE": 2, + "detect": 1, + "x16": 1, + "x36.": 1, + "Utf16CharacterStream": 3, + "pos_": 6, + "buffer_cursor_": 5, + "buffer_end_": 3, + "ReadBlock": 2, + "": 1, + "kEndOfInput": 2, + "code_unit_count": 7, + "buffered_chars": 2, + "SlowSeekForward": 2, + "int32_t": 1, + "code_unit": 6, + "uc16*": 3, + "UnicodeCache": 3, + "unibrow": 11, + "Utf8InputBuffer": 2, + "<1024>": 2, + "Utf8Decoder": 2, + "StaticResource": 2, + "": 2, + "utf8_decoder": 1, + "utf8_decoder_": 2, + "uchar": 4, + "kIsIdentifierStart.get": 1, + "IsIdentifierPart": 1, + "kIsIdentifierPart.get": 1, + "kIsLineTerminator.get": 1, + "kIsWhiteSpace.get": 1, + "Predicate": 4, + "": 1, + "128": 4, + "kIsIdentifierStart": 1, + "": 1, + "kIsIdentifierPart": 1, + "": 1, + "kIsLineTerminator": 1, + "": 1, + "kIsWhiteSpace": 1, + "DISALLOW_COPY_AND_ASSIGN": 2, + "LiteralBuffer": 6, + "is_ascii_": 10, + "position_": 17, + "backing_store_": 7, + "backing_store_.length": 4, + "backing_store_.Dispose": 3, + "INLINE": 2, + "AddChar": 2, + "uint32_t": 8, + "ExpandBuffer": 2, + "kMaxAsciiCharCodeU": 1, + "": 6, + "kASCIISize": 1, + "ConvertToUtf16": 2, + "*reinterpret_cast": 1, + "": 2, + "kUC16Size": 2, + "is_ascii": 3, + "Vector": 13, + "uc16": 5, + "utf16_literal": 3, + "backing_store_.start": 5, + "ascii_literal": 3, + "length": 8, + "kInitialCapacity": 2, + "kGrowthFactory": 2, + "kMinConversionSlack": 1, + "kMaxGrowth": 2, + "MB": 1, + "NewCapacity": 3, + "min_capacity": 2, + "capacity": 3, + "Max": 1, + "new_capacity": 2, + "Min": 1, + "new_store": 6, + "memcpy": 1, + "new_store.start": 3, + "new_content_size": 4, + "src": 2, + "": 1, + "dst": 2, + "Scanner*": 2, + "self": 5, + "scanner_": 5, + "complete_": 4, + "StartLiteral": 2, + "DropLiteral": 2, + "Complete": 1, + "TerminateLiteral": 2, + "beg_pos": 5, + "end_pos": 4, + "kNoOctalLocation": 1, + "scanner_contants": 1, + "current_token": 1, + "location": 4, + "current_.location": 2, + "literal_ascii_string": 1, + "ASSERT_NOT_NULL": 9, + "current_.literal_chars": 11, + "literal_utf16_string": 1, + "is_literal_ascii": 1, + "literal_length": 1, + "literal_contains_escapes": 1, + "source_length": 3, + "location.end_pos": 1, + "location.beg_pos": 1, + "STRING": 1, + "peek": 1, + "peek_location": 1, + "next_.location": 1, + "next_literal_ascii_string": 1, + "next_literal_utf16_string": 1, + "is_next_literal_ascii": 1, + "next_literal_length": 1, + "kCharacterLookaheadBufferSize": 3, + "ScanOctalEscape": 1, + "octal_position": 1, + "clear_octal_position": 1, + "HarmonyScoping": 1, + "SetHarmonyScoping": 1, + "scoping": 2, + "HarmonyModules": 1, + "SetHarmonyModules": 1, + "modules": 2, + "HasAnyLineTerminatorBeforeNext": 1, + "ScanRegExpPattern": 1, + "seen_equal": 1, + "ScanRegExpFlags": 1, + "IsIdentifier": 1, + "CharacterStream*": 1, + "buffer": 1, + "TokenDesc": 3, + "LiteralBuffer*": 2, + "literal_chars": 1, + "free_buffer": 3, + "literal_buffer1_": 3, + "literal_buffer2_": 2, + "AddLiteralChar": 2, + "tok": 2, + "else_": 2, + "ScanDecimalDigits": 1, + "seen_period": 1, + "ScanIdentifierSuffix": 1, + "LiteralScope*": 1, + "ScanIdentifierUnicodeEscape": 1, + "desc": 2, + "as": 1, + "look": 1, + "ahead": 1, + "UTILS_H": 3, + "": 1, + "": 1, + "": 1, + "QTemporaryFile": 1, + "showUsage": 1, + "QtMsgType": 1, + "type": 6, + "dump_path": 1, + "minidump_id": 1, + "void*": 1, + "context": 8, + "succeeded": 1, + "QVariant": 1, + "coffee2js": 1, + "script": 1, + "injectJsInFrame": 2, + "jsFilePath": 5, + "libraryPath": 5, + "QWebFrame": 4, + "*targetFrame": 4, + "startingScript": 2, + "Encoding": 3, + "jsFileEnc": 2, + "readResourceFileUtf8": 1, + "resourceFilePath": 1, + "loadJSForDebug": 2, + "autorun": 2, + "cleanupFromDebug": 1, + "findScript": 1, + "jsFromScriptFile": 1, + "scriptPath": 1, + "enc": 1, + "shouldn": 1, + "instantiated": 1, + "QTemporaryFile*": 2, + "m_tempHarness": 1, + "We": 1, + "make": 1, + "sure": 1, + "clean": 1, + "after": 1, + "ourselves": 1, + "m_tempWrapper": 1, + "V8_DECLARE_ONCE": 1, + "init_once": 2, + "V8": 21, + "is_running_": 6, + "has_been_set_up_": 4, + "has_been_disposed_": 6, + "has_fatal_error_": 5, + "use_crankshaft_": 6, + "List": 3, + "": 3, + "call_completed_callbacks_": 16, + "LazyMutex": 1, + "entropy_mutex": 1, + "LAZY_MUTEX_INITIALIZER": 1, + "EntropySource": 3, + "entropy_source": 4, + "Deserializer*": 2, + "des": 3, + "FlagList": 1, + "EnforceFlagImplications": 1, + "InitializeOncePerProcess": 4, + "Isolate": 9, + "CurrentPerIsolateThreadData": 4, + "EnterDefaultIsolate": 1, + "thread_id": 1, + ".Equals": 1, + "ThreadId": 1, + "Current": 5, + "isolate": 15, + "IsDead": 2, + "Isolate*": 6, + "SetFatalError": 2, + "TearDown": 5, + "IsDefaultIsolate": 1, + "ElementsAccessor": 2, + "LOperand": 2, + "TearDownCaches": 1, + "RegisteredExtension": 1, + "UnregisterAll": 1, + "OS": 3, + "seed_random": 2, + "uint32_t*": 2, + "state": 15, + "FLAG_random_seed": 2, + "val": 3, + "ScopedLock": 1, + "lock": 1, + "entropy_mutex.Pointer": 1, + "random": 1, + "random_base": 3, + "xFFFF": 2, + "FFFF": 1, + "SetEntropySource": 2, + "SetReturnAddressLocationResolver": 3, + "ReturnAddressLocationResolver": 2, + "resolver": 3, + "StackFrame": 1, + "Random": 3, + "Context*": 4, + "IsGlobalContext": 1, + "ByteArray*": 1, + "seed": 2, + "random_seed": 1, + "": 1, + "GetDataStartAddress": 1, + "RandomPrivate": 2, + "private_random_seed": 1, + "IdleNotification": 3, + "hint": 3, + "FLAG_use_idle_notification": 1, + "HEAP": 1, + "AddCallCompletedCallback": 2, + "CallCompletedCallback": 4, + "callback": 7, + "Lazy": 1, + "init.": 1, + "Add": 1, + "RemoveCallCompletedCallback": 2, + "Remove": 1, + "FireCallCompletedCallback": 2, + "HandleScopeImplementer*": 1, + "handle_scope_implementer": 5, + "CallDepthIsZero": 1, + "IncrementCallDepth": 1, + "DecrementCallDepth": 1, + "union": 1, + "double": 23, + "double_value": 1, + "uint64_t": 2, + "uint64_t_value": 1, + "double_int_union": 2, + "Object*": 4, + "FillHeapNumberWithRandom": 2, + "heap_number": 4, + "random_bits": 2, + "binary_million": 3, + "r.double_value": 3, + "r.uint64_t_value": 1, + "HeapNumber": 1, + "cast": 1, + "set_value": 1, + "InitializeOncePerProcessImpl": 3, + "SetUp": 4, + "FLAG_crankshaft": 1, + "Serializer": 1, + "enabled": 1, + "CPU": 2, + "SupportsCrankshaft": 1, + "PostSetUp": 1, + "RuntimeProfiler": 1, + "GlobalSetUp": 1, + "FLAG_stress_compaction": 1, + "FLAG_force_marking_deque_overflows": 1, + "FLAG_gc_global": 1, + "FLAG_max_new_space_size": 1, + "kPageSizeBits": 1, + "SetUpCaches": 1, + "SetUpJSCallerSavedCodeData": 1, + "SamplerRegistry": 1, + "ExternalReference": 1, + "CallOnce": 1, + "V8_V8_H_": 3, + "defined": 21, + "GOOGLE3": 2, + "DEBUG": 3, + "NDEBUG": 4, + "both": 1, + "set": 1, + "Deserializer": 1, + "AllStatic": 1, + "IsRunning": 1, + "UseCrankshaft": 1, + "FatalProcessOutOfMemory": 1, + "take_snapshot": 1, + "NilValue": 1, + "kNullValue": 1, + "kUndefinedValue": 1, + "EqualityKind": 1, + "kStrictEquality": 1, + "kNonStrictEquality": 1, + "PY_SSIZE_T_CLEAN": 1, + "Py_PYTHON_H": 1, + "Python": 1, + "needed": 1, + "compile": 1, + "C": 1, + "extensions": 1, + "please": 1, + "install": 1, + "development": 1, + "Python.": 1, + "#else": 24, + "": 1, + "offsetof": 2, + "member": 2, + "type*": 1, + "WIN32": 2, + "MS_WINDOWS": 2, + "__stdcall": 2, + "__cdecl": 2, + "__fastcall": 2, + "DL_IMPORT": 2, + "DL_EXPORT": 2, + "PY_LONG_LONG": 5, + "LONG_LONG": 1, + "PY_VERSION_HEX": 9, + "METH_COEXIST": 1, + "PyDict_CheckExact": 1, + "op": 6, + "Py_TYPE": 4, + "PyDict_Type": 1, + "PyDict_Contains": 1, + "o": 20, + "PySequence_Contains": 1, + "Py_ssize_t": 17, + "PY_SSIZE_T_MAX": 1, + "INT_MAX": 1, + "PY_SSIZE_T_MIN": 1, + "INT_MIN": 1, + "PY_FORMAT_SIZE_T": 1, + "PyInt_FromSsize_t": 2, + "z": 46, + "PyInt_FromLong": 13, + "PyInt_AsSsize_t": 2, + "PyInt_AsLong": 2, + "PyNumber_Index": 1, + "PyNumber_Int": 1, + "PyIndex_Check": 1, + "PyNumber_Check": 1, + "PyErr_WarnEx": 1, + "category": 2, + "message": 2, + "stacklevel": 1, + "PyErr_Warn": 1, + "Py_REFCNT": 1, + "ob": 6, + "PyObject*": 16, + "ob_refcnt": 1, + "ob_type": 7, + "Py_SIZE": 1, + "PyVarObject*": 1, + "ob_size": 1, + "PyVarObject_HEAD_INIT": 1, + "PyObject_HEAD_INIT": 1, + "PyType_Modified": 1, + "*buf": 1, + "PyObject": 221, + "*obj": 2, + "len": 1, + "itemsize": 2, + "readonly": 2, + "ndim": 2, + "*format": 1, + "*shape": 1, + "*strides": 1, + "*suboffsets": 1, + "*internal": 1, + "Py_buffer": 5, + "PyBUF_SIMPLE": 1, + "PyBUF_WRITABLE": 1, + "PyBUF_FORMAT": 1, + "PyBUF_ND": 2, + "PyBUF_STRIDES": 5, + "PyBUF_C_CONTIGUOUS": 3, + "PyBUF_F_CONTIGUOUS": 3, + "PyBUF_ANY_CONTIGUOUS": 1, + "PyBUF_INDIRECT": 1, + "PY_MAJOR_VERSION": 10, + "__Pyx_BUILTIN_MODULE_NAME": 2, + "Py_TPFLAGS_CHECKTYPES": 1, + "Py_TPFLAGS_HAVE_INDEX": 1, + "Py_TPFLAGS_HAVE_NEWBUFFER": 1, + "PyBaseString_Type": 1, + "PyUnicode_Type": 2, + "PyStringObject": 2, + "PyUnicodeObject": 1, + "PyString_Type": 2, + "PyString_Check": 2, + "PyUnicode_Check": 1, + "PyString_CheckExact": 2, + "PyUnicode_CheckExact": 1, + "PyBytesObject": 1, + "PyBytes_Type": 1, + "PyBytes_Check": 1, + "PyBytes_CheckExact": 1, + "PyBytes_FromString": 2, + "PyString_FromString": 1, + "PyBytes_FromStringAndSize": 1, + "PyString_FromStringAndSize": 1, + "PyBytes_FromFormat": 1, + "PyString_FromFormat": 1, + "PyBytes_DecodeEscape": 1, + "PyString_DecodeEscape": 1, + "PyBytes_AsString": 2, + "PyString_AsString": 1, + "PyBytes_AsStringAndSize": 1, + "PyString_AsStringAndSize": 1, + "PyBytes_Size": 1, + "PyString_Size": 1, + "PyBytes_AS_STRING": 1, + "PyString_AS_STRING": 1, + "PyBytes_GET_SIZE": 1, + "PyString_GET_SIZE": 1, + "PyBytes_Repr": 1, + "PyString_Repr": 1, + "PyBytes_Concat": 1, + "PyString_Concat": 1, + "PyBytes_ConcatAndDel": 1, + "PyString_ConcatAndDel": 1, + "PySet_Check": 1, + "obj": 42, + "PyObject_TypeCheck": 3, + "PySet_Type": 2, + "PyFrozenSet_Check": 1, + "PyFrozenSet_Type": 1, + "PySet_CheckExact": 2, + "__Pyx_TypeCheck": 1, + "PyTypeObject": 2, + "PyIntObject": 1, + "PyLongObject": 2, + "PyInt_Type": 1, + "PyLong_Type": 1, + "PyInt_Check": 1, + "PyLong_Check": 1, + "PyInt_CheckExact": 1, + "PyLong_CheckExact": 1, + "PyInt_FromString": 1, + "PyLong_FromString": 1, + "PyInt_FromUnicode": 1, + "PyLong_FromUnicode": 1, + "PyLong_FromLong": 1, + "PyInt_FromSize_t": 1, + "PyLong_FromSize_t": 1, + "PyLong_FromSsize_t": 1, + "PyLong_AsLong": 1, + "PyInt_AS_LONG": 1, + "PyLong_AS_LONG": 1, + "PyLong_AsSsize_t": 1, + "PyInt_AsUnsignedLongMask": 1, + "PyLong_AsUnsignedLongMask": 1, + "PyInt_AsUnsignedLongLongMask": 1, + "PyLong_AsUnsignedLongLongMask": 1, + "PyBoolObject": 1, + "__Pyx_PyNumber_Divide": 2, + "PyNumber_TrueDivide": 1, + "__Pyx_PyNumber_InPlaceDivide": 2, + "PyNumber_InPlaceTrueDivide": 1, + "PyNumber_Divide": 1, + "PyNumber_InPlaceDivide": 1, + "__Pyx_PySequence_GetSlice": 2, + "PySequence_GetSlice": 2, + "__Pyx_PySequence_SetSlice": 2, + "PySequence_SetSlice": 2, + "__Pyx_PySequence_DelSlice": 2, + "PySequence_DelSlice": 2, + "unlikely": 69, + "PyErr_SetString": 4, + "PyExc_SystemError": 3, + "likely": 15, + "tp_as_mapping": 3, + "PyErr_Format": 4, + "PyExc_TypeError": 5, + "tp_name": 4, + "PyMethod_New": 2, + "func": 3, + "klass": 1, + "PyInstanceMethod_New": 1, + "__Pyx_GetAttrString": 2, + "PyObject_GetAttrString": 3, + "__Pyx_SetAttrString": 2, + "PyObject_SetAttrString": 2, + "__Pyx_DelAttrString": 2, + "PyObject_DelAttrString": 2, + "__Pyx_NAMESTR": 3, + "__Pyx_DOCSTR": 3, + "__cplusplus": 10, + "__PYX_EXTERN_C": 2, + "_USE_MATH_DEFINES": 1, + "": 1, + "__PYX_HAVE_API__wrapper_inner": 1, + "PYREX_WITHOUT_ASSERTIONS": 1, + "CYTHON_WITHOUT_ASSERTIONS": 1, + "CYTHON_INLINE": 68, + "__GNUC__": 5, + "__inline__": 1, + "#elif": 3, + "__inline": 1, + "__STDC_VERSION__": 2, + "L": 1, + "CYTHON_UNUSED": 7, + "**p": 1, + "*s": 1, + "long": 5, + "encoding": 1, + "is_unicode": 1, + "is_str": 1, + "intern": 1, + "__Pyx_StringTabEntry": 1, + "__Pyx_PyBytes_FromUString": 1, + "__Pyx_PyBytes_AsUString": 1, + "__Pyx_PyBool_FromLong": 1, + "Py_INCREF": 3, + "Py_True": 2, + "Py_False": 2, + "__Pyx_PyObject_IsTrue": 8, + "__Pyx_PyNumber_Int": 1, + "__Pyx_PyIndex_AsSsize_t": 1, + "__Pyx_PyInt_FromSize_t": 1, + "__Pyx_PyInt_AsSize_t": 1, + "__pyx_PyFloat_AsDouble": 3, + "PyFloat_CheckExact": 1, + "PyFloat_AS_DOUBLE": 1, + "PyFloat_AsDouble": 1, + "__GNUC_MINOR__": 1, + "__builtin_expect": 2, + "*__pyx_m": 1, + "*__pyx_b": 1, + "*__pyx_empty_tuple": 1, + "*__pyx_empty_bytes": 1, + "__pyx_lineno": 80, + "__pyx_clineno": 80, + "__pyx_cfilenm": 1, + "__FILE__": 2, + "*__pyx_filename": 1, + "CYTHON_CCOMPLEX": 12, + "_Complex_I": 3, + "": 1, + "": 1, + "__sun__": 1, + "fj": 1, + "*__pyx_f": 1, + "npy_int8": 1, + "__pyx_t_5numpy_int8_t": 1, + "npy_int16": 1, + "__pyx_t_5numpy_int16_t": 1, + "npy_int32": 1, + "__pyx_t_5numpy_int32_t": 1, + "npy_int64": 1, + "__pyx_t_5numpy_int64_t": 1, + "npy_uint8": 1, + "__pyx_t_5numpy_uint8_t": 1, + "npy_uint16": 1, + "__pyx_t_5numpy_uint16_t": 1, + "npy_uint32": 1, + "__pyx_t_5numpy_uint32_t": 1, + "npy_uint64": 1, + "__pyx_t_5numpy_uint64_t": 1, + "npy_float32": 1, + "__pyx_t_5numpy_float32_t": 1, + "npy_float64": 1, + "__pyx_t_5numpy_float64_t": 1, + "npy_long": 1, + "__pyx_t_5numpy_int_t": 1, + "npy_longlong": 1, + "__pyx_t_5numpy_long_t": 1, + "npy_intp": 10, + "__pyx_t_5numpy_intp_t": 1, + "npy_uintp": 1, + "__pyx_t_5numpy_uintp_t": 1, + "npy_ulong": 1, + "__pyx_t_5numpy_uint_t": 1, + "npy_ulonglong": 1, + "__pyx_t_5numpy_ulong_t": 1, + "npy_double": 2, + "__pyx_t_5numpy_float_t": 1, + "__pyx_t_5numpy_double_t": 1, + "npy_longdouble": 1, + "__pyx_t_5numpy_longdouble_t": 1, + "complex": 2, + "float": 7, + "__pyx_t_float_complex": 27, + "_Complex": 2, + "real": 2, + "imag": 2, + "__pyx_t_double_complex": 27, + "npy_cfloat": 1, + "__pyx_t_5numpy_cfloat_t": 1, + "npy_cdouble": 2, + "__pyx_t_5numpy_cdouble_t": 1, + "npy_clongdouble": 1, + "__pyx_t_5numpy_clongdouble_t": 1, + "__pyx_t_5numpy_complex_t": 1, + "CYTHON_REFNANNY": 3, + "__Pyx_RefNannyAPIStruct": 4, + "*__Pyx_RefNanny": 1, + "__Pyx_RefNannyImportAPI": 1, + "*modname": 1, + "*m": 1, + "*p": 1, + "*r": 1, + "m": 4, + "PyImport_ImportModule": 1, + "modname": 1, + "PyLong_AsVoidPtr": 1, + "Py_XDECREF": 3, + "__Pyx_RefNannySetupContext": 13, + "*__pyx_refnanny": 1, + "__Pyx_RefNanny": 6, + "SetupContext": 1, + "__LINE__": 84, + "__Pyx_RefNannyFinishContext": 12, + "FinishContext": 1, + "__pyx_refnanny": 5, + "__Pyx_INCREF": 36, + "INCREF": 1, + "__Pyx_DECREF": 66, + "DECREF": 1, + "__Pyx_GOTREF": 60, + "GOTREF": 1, + "__Pyx_GIVEREF": 10, + "GIVEREF": 1, + "__Pyx_XDECREF": 26, + "Py_DECREF": 1, + "__Pyx_XGIVEREF": 7, + "__Pyx_XGOTREF": 1, + "__Pyx_TypeTest": 4, + "*type": 3, + "*__Pyx_GetName": 1, + "*dict": 1, + "__Pyx_ErrRestore": 1, + "*value": 2, + "*tb": 2, + "__Pyx_ErrFetch": 1, + "**type": 1, + "**value": 1, + "**tb": 1, + "__Pyx_Raise": 8, + "__Pyx_RaiseNoneNotIterableError": 1, + "__Pyx_RaiseNeedMoreValuesError": 1, + "index": 2, + "__Pyx_RaiseTooManyValuesError": 1, + "expected": 1, + "__Pyx_UnpackTupleError": 2, + "*__Pyx_Import": 1, + "*from_list": 1, + "__Pyx_Print": 1, + "__pyx_print": 1, + "__pyx_print_kwargs": 1, + "__Pyx_PrintOne": 4, + "*o": 1, + "*__Pyx_PyInt_to_py_Py_intptr_t": 1, + "Py_intptr_t": 1, + "__Pyx_CREAL": 4, + ".real": 3, + "__Pyx_CIMAG": 4, + ".imag": 3, + "__real__": 1, + "__imag__": 1, + "_WIN32": 1, + "__Pyx_SET_CREAL": 2, + "__Pyx_SET_CIMAG": 2, + "__pyx_t_float_complex_from_parts": 1, + "__Pyx_c_eqf": 2, + "__Pyx_c_sumf": 2, + "__Pyx_c_difff": 2, + "__Pyx_c_prodf": 2, + "__Pyx_c_quotf": 2, + "__Pyx_c_negf": 2, + "__Pyx_c_is_zerof": 3, + "__Pyx_c_conjf": 3, + "conj": 3, + "__Pyx_c_absf": 3, + "abs": 2, + "__Pyx_c_powf": 3, + "pow": 2, + "conjf": 1, + "cabsf": 1, + "cpowf": 1, + "__pyx_t_double_complex_from_parts": 1, + "__Pyx_c_eq": 2, + "__Pyx_c_sum": 2, + "__Pyx_c_diff": 2, + "__Pyx_c_prod": 2, + "__Pyx_c_quot": 2, + "__Pyx_c_neg": 2, + "__Pyx_c_is_zero": 3, + "__Pyx_c_conj": 3, + "__Pyx_c_abs": 3, + "__Pyx_c_pow": 3, + "cabs": 1, + "cpow": 1, + "__Pyx_PyInt_AsUnsignedChar": 1, + "short": 3, + "__Pyx_PyInt_AsUnsignedShort": 1, + "__Pyx_PyInt_AsUnsignedInt": 1, + "__Pyx_PyInt_AsChar": 1, + "__Pyx_PyInt_AsShort": 1, + "__Pyx_PyInt_AsInt": 1, + "signed": 5, + "__Pyx_PyInt_AsSignedChar": 1, + "__Pyx_PyInt_AsSignedShort": 1, + "__Pyx_PyInt_AsSignedInt": 1, + "__Pyx_PyInt_AsLongDouble": 1, + "__Pyx_PyInt_AsUnsignedLong": 1, + "__Pyx_PyInt_AsUnsignedLongLong": 1, + "__Pyx_PyInt_AsLong": 1, + "__Pyx_PyInt_AsLongLong": 1, + "__Pyx_PyInt_AsSignedLong": 1, + "__Pyx_PyInt_AsSignedLongLong": 1, + "__Pyx_WriteUnraisable": 3, + "__Pyx_ExportFunction": 1, + "*__pyx_f_5numpy_PyArray_MultiIterNew2": 2, + "*__pyx_f_5numpy_PyArray_MultiIterNew3": 2, + "*__pyx_f_5numpy_PyArray_MultiIterNew4": 2, + "*__pyx_f_5numpy_PyArray_MultiIterNew5": 2, + "*__pyx_f_5numpy__util_dtypestring": 2, + "PyArray_Descr": 6, + "__pyx_f_5numpy_set_array_base": 1, + "PyArrayObject": 19, + "*__pyx_f_5numpy_get_array_base": 1, + "inner_work_1d": 2, + "inner_work_2d": 2, + "__Pyx_MODULE_NAME": 1, + "__pyx_module_is_main_wrapper_inner": 1, + "*__pyx_builtin_ValueError": 1, + "*__pyx_builtin_range": 1, + "*__pyx_builtin_RuntimeError": 1, + "__pyx_k_1": 1, + "__pyx_k_2": 1, + "__pyx_k_3": 1, + "__pyx_k_5": 1, + "__pyx_k_7": 1, + "__pyx_k_9": 1, + "__pyx_k_11": 1, + "__pyx_k_12": 1, + "__pyx_k_15": 1, + "__pyx_k__B": 2, + "__pyx_k__H": 2, + "__pyx_k__I": 2, + "__pyx_k__L": 2, + "__pyx_k__O": 2, + "__pyx_k__Q": 2, + "__pyx_k__b": 2, + "__pyx_k__d": 2, + "__pyx_k__f": 2, + "__pyx_k__g": 2, + "__pyx_k__h": 2, + "__pyx_k__i": 2, + "__pyx_k__l": 2, + "__pyx_k__q": 2, + "__pyx_k__Zd": 2, + "__pyx_k__Zf": 2, + "__pyx_k__Zg": 2, + "__pyx_k__np": 1, + "__pyx_k__buf": 1, + "__pyx_k__obj": 1, + "__pyx_k__base": 1, + "__pyx_k__ndim": 1, + "__pyx_k__ones": 1, + "__pyx_k__descr": 1, + "__pyx_k__names": 1, + "__pyx_k__numpy": 1, + "__pyx_k__range": 1, + "__pyx_k__shape": 1, + "__pyx_k__fields": 1, + "__pyx_k__format": 1, + "__pyx_k__strides": 1, + "__pyx_k____main__": 1, + "__pyx_k____test__": 1, + "__pyx_k__itemsize": 1, + "__pyx_k__readonly": 1, + "__pyx_k__type_num": 1, + "__pyx_k__byteorder": 1, + "__pyx_k__ValueError": 1, + "__pyx_k__suboffsets": 1, + "__pyx_k__work_module": 1, + "__pyx_k__RuntimeError": 1, + "__pyx_k__pure_py_test": 1, + "__pyx_k__wrapper_inner": 1, + "__pyx_k__do_awesome_work": 1, + "*__pyx_kp_s_1": 1, + "*__pyx_kp_u_11": 1, + "*__pyx_kp_u_12": 1, + "*__pyx_kp_u_15": 1, + "*__pyx_kp_s_2": 1, + "*__pyx_kp_s_3": 1, + "*__pyx_kp_u_5": 1, + "*__pyx_kp_u_7": 1, + "*__pyx_kp_u_9": 1, + "*__pyx_n_s__RuntimeError": 1, + "*__pyx_n_s__ValueError": 1, + "*__pyx_n_s____main__": 1, + "*__pyx_n_s____test__": 1, + "*__pyx_n_s__base": 1, + "*__pyx_n_s__buf": 1, + "*__pyx_n_s__byteorder": 1, + "*__pyx_n_s__descr": 1, + "*__pyx_n_s__do_awesome_work": 1, + "*__pyx_n_s__fields": 1, + "*__pyx_n_s__format": 1, + "*__pyx_n_s__itemsize": 1, + "*__pyx_n_s__names": 1, + "*__pyx_n_s__ndim": 1, + "*__pyx_n_s__np": 1, + "*__pyx_n_s__numpy": 1, + "*__pyx_n_s__obj": 1, + "*__pyx_n_s__ones": 1, + "*__pyx_n_s__pure_py_test": 1, + "*__pyx_n_s__range": 1, + "*__pyx_n_s__readonly": 1, + "*__pyx_n_s__shape": 1, + "*__pyx_n_s__strides": 1, + "*__pyx_n_s__suboffsets": 1, + "*__pyx_n_s__type_num": 1, + "*__pyx_n_s__work_module": 1, + "*__pyx_n_s__wrapper_inner": 1, + "*__pyx_int_5": 1, + "*__pyx_int_15": 1, + "*__pyx_k_tuple_4": 1, + "*__pyx_k_tuple_6": 1, + "*__pyx_k_tuple_8": 1, + "*__pyx_k_tuple_10": 1, + "*__pyx_k_tuple_13": 1, + "*__pyx_k_tuple_14": 1, + "*__pyx_k_tuple_16": 1, + "__pyx_v_num_x": 4, + "*__pyx_v_data_ptr": 2, + "*__pyx_v_answer_ptr": 2, + "__pyx_v_nd": 6, + "*__pyx_v_dims": 2, + "__pyx_v_typenum": 6, + "*__pyx_v_data_np": 2, + "__pyx_v_sum": 6, + "__pyx_t_1": 154, + "*__pyx_t_2": 4, + "*__pyx_t_3": 4, + "*__pyx_t_4": 3, + "__pyx_t_5": 75, + "__pyx_kp_s_1": 1, + "__pyx_filename": 79, + "__pyx_f": 79, + "__pyx_L1_error": 88, + "__pyx_v_dims": 4, + "NPY_DOUBLE": 3, + "__pyx_t_2": 120, + "PyArray_SimpleNewFromData": 2, + "__pyx_v_data_ptr": 2, + "Py_None": 38, + "__pyx_ptype_5numpy_ndarray": 2, + "__pyx_v_data_np": 10, + "__Pyx_GetName": 4, + "__pyx_m": 4, + "__pyx_n_s__work_module": 3, + "__pyx_t_3": 113, + "PyObject_GetAttr": 4, + "__pyx_n_s__do_awesome_work": 3, + "PyTuple_New": 4, + "PyTuple_SET_ITEM": 4, + "__pyx_t_4": 35, + "PyObject_Call": 11, + "PyErr_Occurred": 2, + "__pyx_v_answer_ptr": 2, + "__pyx_L0": 24, + "__pyx_v_num_y": 2, + "__pyx_kp_s_2": 1, + "*__pyx_pf_13wrapper_inner_pure_py_test": 2, + "*__pyx_self": 2, + "*unused": 2, + "PyMethodDef": 1, + "__pyx_mdef_13wrapper_inner_pure_py_test": 1, + "PyCFunction": 1, + "__pyx_pf_13wrapper_inner_pure_py_test": 1, + "METH_NOARGS": 1, + "*__pyx_v_data": 1, + "*__pyx_r": 7, + "*__pyx_t_1": 8, + "__pyx_self": 2, + "__pyx_v_data": 7, + "__pyx_kp_s_3": 1, + "__pyx_n_s__np": 1, + "__pyx_n_s__ones": 1, + "__pyx_k_tuple_4": 1, + "__pyx_r": 39, + "__Pyx_AddTraceback": 7, + "__pyx_pf_5numpy_7ndarray___getbuffer__": 2, + "*__pyx_v_self": 4, + "*__pyx_v_info": 4, + "__pyx_v_flags": 4, + "__pyx_v_copy_shape": 5, + "__pyx_v_i": 6, + "__pyx_v_ndim": 6, + "__pyx_v_endian_detector": 6, + "__pyx_v_little_endian": 8, + "__pyx_v_t": 29, + "*__pyx_v_f": 2, + "*__pyx_v_descr": 2, + "__pyx_v_offset": 9, + "__pyx_v_hasfields": 4, + "__pyx_t_6": 40, + "__pyx_t_7": 9, + "*__pyx_t_8": 1, + "*__pyx_t_9": 1, + "__pyx_v_info": 33, + "__pyx_v_self": 16, + "PyArray_NDIM": 1, + "__pyx_L5": 6, + "PyArray_CHKFLAGS": 2, + "NPY_C_CONTIGUOUS": 1, + "__pyx_builtin_ValueError": 5, + "__pyx_k_tuple_6": 1, + "__pyx_L6": 6, + "NPY_F_CONTIGUOUS": 1, + "__pyx_k_tuple_8": 1, + "__pyx_L7": 2, + "buf": 1, + "PyArray_DATA": 1, + "strides": 5, + "malloc": 2, + "shape": 3, + "PyArray_STRIDES": 2, + "PyArray_DIMS": 2, + "__pyx_L8": 2, + "suboffsets": 1, + "PyArray_ITEMSIZE": 1, + "PyArray_ISWRITEABLE": 1, + "__pyx_v_f": 31, + "descr": 2, + "__pyx_v_descr": 10, + "PyDataType_HASFIELDS": 2, + "__pyx_L11": 7, + "type_num": 2, + "byteorder": 4, + "__pyx_k_tuple_10": 1, + "__pyx_L13": 2, + "NPY_BYTE": 2, + "__pyx_L14": 18, + "NPY_UBYTE": 2, + "NPY_SHORT": 2, + "NPY_USHORT": 2, + "NPY_INT": 2, + "NPY_UINT": 2, + "NPY_LONG": 1, + "NPY_ULONG": 1, + "NPY_LONGLONG": 1, + "NPY_ULONGLONG": 1, + "NPY_FLOAT": 1, + "NPY_LONGDOUBLE": 1, + "NPY_CFLOAT": 1, + "NPY_CDOUBLE": 1, + "NPY_CLONGDOUBLE": 1, + "NPY_OBJECT": 1, + "__pyx_t_8": 16, + "PyNumber_Remainder": 1, + "__pyx_kp_u_11": 1, + "format": 6, + "__pyx_L12": 2, + "__pyx_t_9": 7, + "__pyx_f_5numpy__util_dtypestring": 1, + "__pyx_L2": 2, + "__pyx_pf_5numpy_7ndarray_1__releasebuffer__": 2, + "PyArray_HASFIELDS": 1, + "free": 2, + "*__pyx_f_5numpy_PyArray_MultiIterNew1": 1, + "*__pyx_v_a": 5, + "PyArray_MultiIterNew": 5, + "__pyx_v_a": 5, + "*__pyx_v_b": 4, + "__pyx_v_b": 4, + "*__pyx_v_c": 3, + "__pyx_v_c": 3, + "*__pyx_v_d": 2, + "__pyx_v_d": 2, + "*__pyx_v_e": 1, + "__pyx_v_e": 1, + "*__pyx_v_end": 1, + "*__pyx_v_offset": 1, + "*__pyx_v_child": 1, + "*__pyx_v_fields": 1, + "*__pyx_v_childname": 1, + "*__pyx_v_new_offset": 1, + "*__pyx_v_t": 1, + "*__pyx_t_5": 1, + "__pyx_t_10": 7, + "*__pyx_t_11": 1, + "__pyx_v_child": 8, + "__pyx_v_fields": 7, + "__pyx_v_childname": 4, + "__pyx_v_new_offset": 5, + "names": 2, + "PyTuple_GET_SIZE": 2, + "PyTuple_GET_ITEM": 3, + "PyObject_GetItem": 1, + "fields": 1, + "PyTuple_CheckExact": 1, + "tuple": 3, + "__pyx_ptype_5numpy_dtype": 1, + "__pyx_v_end": 2, + "PyNumber_Subtract": 2, + "PyObject_RichCompare": 8, + "__pyx_int_15": 1, + "Py_LT": 2, + "__pyx_builtin_RuntimeError": 2, + "__pyx_k_tuple_13": 1, + "__pyx_k_tuple_14": 1, + "elsize": 1, + "__pyx_k_tuple_16": 1, + "__pyx_L10": 2, + "Py_EQ": 6 + }, + "Forth": { + "(": 88, + "Block": 2, + "words.": 6, + ")": 87, + "variable": 3, + "blk": 3, + "current": 5, + "-": 473, + "block": 8, + "n": 22, + "addr": 11, + ";": 61, + "buffer": 2, + "evaluate": 1, + "extended": 3, + "semantics": 3, + "flush": 1, + "load": 2, + "...": 4, + "dup": 10, + "save": 2, + "input": 2, + "in": 4, + "@": 13, + "source": 5, + "#source": 2, + "interpret": 1, + "restore": 1, + "buffers": 2, + "update": 1, + "extension": 4, + "empty": 2, + "scr": 2, + "list": 1, + "bounds": 1, + "do": 2, + "i": 5, + "emit": 2, + "loop": 4, + "refill": 2, + "thru": 1, + "x": 10, + "y": 5, + "+": 17, + "swap": 12, + "*": 9, + "forth": 2, + "Copyright": 3, + "Lars": 3, + "Brinkhoff": 3, + "Kernel": 4, + "#tib": 2, + "TODO": 12, + ".r": 1, + ".": 5, + "[": 16, + "char": 10, + "]": 15, + "parse": 5, + "type": 3, + "immediate": 19, + "<": 14, + "flag": 4, + "r": 18, + "x1": 5, + "x2": 5, + "R": 13, + "rot": 2, + "r@": 2, + "noname": 1, + "align": 2, + "here": 9, + "c": 3, + "allot": 2, + "lastxt": 4, + "SP": 1, + "query": 1, + "tib": 1, + "body": 1, + "true": 1, + "tuck": 2, + "over": 5, + "u.r": 1, + "u": 3, + "if": 9, + "drop": 4, + "false": 1, + "else": 6, + "then": 5, + "unused": 1, + "value": 1, + "create": 2, + "does": 5, + "within": 1, + "compile": 2, + "Forth2012": 2, + "core": 1, + "action": 1, + "of": 3, + "defer": 2, + "name": 1, + "s": 4, + "c@": 2, + "negate": 1, + "nip": 2, + "bl": 4, + "word": 9, + "ahead": 2, + "resolve": 4, + "literal": 4, + "postpone": 14, + "nonimmediate": 1, + "caddr": 1, + "C": 9, + "find": 2, + "cells": 1, + "postponers": 1, + "execute": 1, + "unresolved": 4, + "orig": 5, + "chars": 1, + "n1": 2, + "n2": 2, + "orig1": 1, + "orig2": 1, + "branch": 5, + "dodoes_code": 1, + "code": 3, + "begin": 2, + "dest": 5, + "while": 2, + "repeat": 2, + "until": 1, + "recurse": 1, + "pad": 3, + "If": 1, + "necessary": 1, + "and": 3, + "keep": 1, + "parsing.": 1, + "string": 3, + "cmove": 1, + "state": 2, + "cr": 3, + "abort": 3, + "": 1, + "Undefined": 1, + "ok": 1, + "HELLO": 4, + "KataDiversion": 1, + "Forth": 1, + "utils": 1, + "the": 7, + "stack": 3, + "EMPTY": 1, + "DEPTH": 2, + "IF": 10, + "BEGIN": 3, + "DROP": 5, + "UNTIL": 3, + "THEN": 10, + "power": 2, + "**": 2, + "n1_pow_n2": 1, + "SWAP": 8, + "DUP": 14, + "DO": 2, + "OVER": 2, + "LOOP": 2, + "NIP": 4, + "compute": 1, + "highest": 1, + "below": 1, + "N.": 1, + "e.g.": 2, + "MAXPOW2": 2, + "log2_n": 1, + "ABORT": 1, + "ELSE": 7, + "|": 4, + "I": 5, + "i*2": 1, + "/": 3, + "kata": 1, + "test": 1, + "given": 3, + "N": 6, + "has": 1, + "two": 2, + "adjacent": 2, + "bits": 3, + "NOT": 3, + "TWO": 3, + "ADJACENT": 3, + "BITS": 3, + "bool": 1, + "uses": 1, + "following": 1, + "algorithm": 1, + "return": 5, + "A": 5, + "X": 5, + "LOG2": 1, + "end": 1, + "OR": 1, + "INVERT": 1, + "maximum": 1, + "number": 4, + "which": 3, + "can": 2, + "be": 2, + "made": 2, + "with": 2, + "MAX": 2, + "NB": 3, + "m": 2, + "**n": 1, + "numbers": 1, + "or": 1, + "less": 1, + "have": 1, + "not": 1, + "bits.": 1, + "see": 1, + "http": 1, + "//www.codekata.com/2007/01/code_kata_fifte.html": 1, + "HOW": 1, + "MANY": 1, + "Tools": 2, + ".s": 1, + "depth": 1, + "traverse": 1, + "dictionary": 1, + "assembler": 1, + "kernel": 1, + "bye": 1, + "cs": 2, + "pick": 1, + "roll": 1, + "editor": 1, + "forget": 1, + "reveal": 1, + "tools": 1, + "nr": 1, + "synonym": 1, + "undefined": 2, + "defined": 1, + "invert": 1, + "/cell": 2, + "cell": 2 + }, + "Lasso": { + "<": 7, + "LassoScript": 1, + "//": 169, + "JSON": 2, + "Encoding": 1, + "and": 52, + "Decoding": 1, + "Copyright": 1, + "-": 2248, + "LassoSoft": 1, + "Inc.": 1, + "": 1, + "": 1, + "": 1, + "This": 5, + "tag": 11, + "is": 35, + "now": 23, + "incorporated": 1, + "in": 46, + "Lasso": 15, + "If": 4, + "(": 640, + "Lasso_TagExists": 1, + ")": 639, + "False": 1, + ";": 573, + "Define_Tag": 1, + "Namespace": 1, + "Required": 1, + "Optional": 1, + "Local": 7, + "Map": 3, + "r": 8, + "n": 30, + "t": 8, + "f": 2, + "b": 2, + "output": 30, + "newoptions": 1, + "options": 2, + "array": 20, + "set": 10, + "list": 4, + "queue": 2, + "priorityqueue": 2, + "stack": 2, + "pair": 1, + "map": 23, + "[": 22, + "]": 23, + "literal": 3, + "string": 59, + "integer": 30, + "decimal": 5, + "boolean": 4, + "null": 26, + "date": 23, + "temp": 12, + "object": 7, + "{": 18, + "}": 18, + "client_ip": 1, + "client_address": 1, + "__jsonclass__": 6, + "deserialize": 2, + "": 3, + "": 3, + "Decode_JSON": 2, + "Decode_": 1, + "value": 14, + "consume_string": 1, + "ibytes": 9, + "unescapes": 1, + "u": 1, + "UTF": 4, + "%": 14, + "QT": 4, + "TZ": 2, + "T": 3, + "consume_token": 1, + "obytes": 3, + "delimit": 7, + "true": 12, + "false": 8, + ".": 5, + "consume_array": 1, + "consume_object": 1, + "key": 3, + "val": 1, + "native": 2, + "comment": 2, + "http": 6, + "//www.lassosoft.com/json": 1, + "start": 5, + "Literal": 2, + "String": 1, + "Object": 2, + "JSON_RPCCall": 1, + "RPCCall": 1, + "JSON_": 1, + "method": 7, + "params": 11, + "id": 7, + "host": 6, + "//localhost/lassoapps.8/rpc/rpc.lasso": 1, + "request": 2, + "result": 6, + "JSON_Records": 3, + "KeyField": 1, + "ReturnField": 1, + "ExcludeField": 1, + "Fields": 1, + "_fields": 1, + "fields": 2, + "No": 1, + "found": 5, + "for": 65, + "_keyfield": 4, + "keyfield": 4, + "ID": 1, + "_index": 1, + "_return": 1, + "returnfield": 1, + "_exclude": 1, + "excludefield": 1, + "_records": 1, + "_record": 1, + "_temp": 1, + "_field": 1, + "_output": 1, + "error_msg": 15, + "error_code": 11, + "found_count": 11, + "rows": 1, + "#_records": 1, + "Return": 7, + "@#_output": 1, + "/Define_Tag": 1, + "/If": 3, + "define": 20, + "trait_json_serialize": 2, + "trait": 1, + "require": 1, + "asString": 3, + "json_serialize": 18, + "e": 13, + "bytes": 8, + "+": 146, + "#e": 13, + "Replace": 19, + "&": 21, + "json_literal": 1, + "asstring": 4, + "format": 7, + "gmt": 1, + "|": 13, + "trait_forEach": 1, + "local": 116, + "foreach": 1, + "#output": 50, + "#delimit": 7, + "#1": 3, + "return": 75, + "with": 25, + "pr": 1, + "eachPair": 1, + "select": 1, + "#pr": 2, + "first": 12, + "second": 8, + "join": 5, + "json_object": 2, + "foreachpair": 1, + "any": 14, + "serialize": 1, + "json_consume_string": 3, + "while": 9, + "#temp": 19, + "#ibytes": 17, + "export8bits": 6, + "#obytes": 5, + "import8bits": 4, + "Escape": 1, + "/while": 7, + "unescape": 1, + "//Replace": 1, + "if": 76, + "BeginsWith": 1, + "&&": 30, + "EndsWith": 1, + "Protect": 1, + "serialization_reader": 1, + "xml": 1, + "read": 1, + "/Protect": 1, + "else": 32, + "size": 24, + "or": 6, + "regexp": 1, + "d": 2, + "Z": 1, + "matches": 1, + "Format": 1, + "yyyyMMdd": 2, + "HHmmssZ": 1, + "HHmmss": 1, + "/if": 53, + "json_consume_token": 2, + "marker": 4, + "Is": 1, + "also": 5, + "end": 2, + "of": 24, + "token": 1, + "//............................................................................": 2, + "string_IsNumeric": 1, + "json_consume_array": 3, + "While": 1, + "Discard": 1, + "whitespace": 3, + "Else": 7, + "insert": 18, + "#key": 12, + "json_consume_object": 2, + "Loop_Abort": 1, + "/While": 1, + "Find": 3, + "isa": 25, + "First": 4, + "find": 57, + "Second": 1, + "json_deserialize": 1, + "removeLeading": 1, + "bom_utf8": 1, + "Reset": 1, + "on": 1, + "provided": 1, + "**/": 1, + "type": 63, + "parent": 5, + "public": 1, + "onCreate": 1, + "...": 3, + "..onCreate": 1, + "#rest": 1, + "json_rpccall": 1, + "#id": 2, + "#host": 4, + "Lasso_UniqueID": 1, + "Include_URL": 1, + "PostParams": 1, + "Encode_JSON": 1, + "#method": 1, + "#params": 5, + "": 6, + "2009": 14, + "09": 10, + "04": 8, + "JS": 126, + "Added": 40, + "content_body": 14, + "compatibility": 4, + "pre": 4, + "8": 6, + "5": 4, + "05": 4, + "07": 6, + "timestamp": 4, + "to": 98, + "knop_cachestore": 4, + "maxage": 2, + "parameter": 8, + "knop_cachefetch": 4, + "Corrected": 8, + "construction": 2, + "cache_name": 2, + "internally": 2, + "the": 86, + "knop_cache": 2, + "tags": 14, + "so": 16, + "it": 20, + "will": 12, + "work": 6, + "correctly": 2, + "at": 10, + "site": 4, + "root": 2, + "2008": 6, + "11": 8, + "dummy": 2, + "knop_debug": 4, + "ctype": 2, + "be": 38, + "able": 14, + "transparently": 2, + "without": 4, + "L": 2, + "Debug": 2, + "24": 2, + "knop_stripbackticks": 2, + "01": 4, + "28": 2, + "Cache": 2, + "name": 32, + "used": 12, + "when": 10, + "using": 8, + "session": 4, + "storage": 8, + "2007": 6, + "12": 8, + "knop_cachedelete": 2, + "Created": 4, + "03": 2, + "knop_foundrows": 2, + "condition": 4, + "returning": 2, + "normal": 2, + "For": 2, + "lasso_tagexists": 4, + "define_tag": 48, + "namespace=": 12, + "__html_reply__": 4, + "define_type": 14, + "debug": 2, + "_unknowntag": 6, + "onconvert": 2, + "stripbackticks": 2, + "description=": 2, + "priority=": 2, + "required=": 2, + "input": 2, + "split": 2, + "@#output": 2, + "/define_tag": 36, + "description": 34, + "namespace": 16, + "priority": 8, + "Johan": 2, + "S": 2, + "lve": 2, + "#charlist": 6, + "current": 10, + "time": 8, + "a": 52, + "mixed": 2, + "up": 4, + "as": 26, + "seed": 6, + "#seed": 36, + "convert": 4, + "this": 14, + "base": 6, + "conversion": 4, + "get": 12, + "#base": 8, + "/": 6, + "over": 2, + "new": 14, + "chunk": 2, + "millisecond": 2, + "math_random": 2, + "lower": 2, + "upper": 2, + "__lassoservice_ip__": 2, + "response_localpath": 8, + "removetrailing": 8, + "response_filepath": 8, + "//tagswap.net/found_rows": 2, + "action_statement": 2, + "string_findregexp": 8, + "#sql": 42, + "ignorecase": 12, + "||": 8, + "maxrecords_value": 2, + "inaccurate": 2, + "must": 4, + "accurate": 2, + "Default": 2, + "usually": 2, + "fastest.": 2, + "Can": 2, + "not": 10, + "GROUP": 4, + "BY": 6, + "example.": 2, + "normalize": 4, + "around": 2, + "FROM": 2, + "expression": 6, + "string_replaceregexp": 8, + "replace": 8, + "ReplaceOnlyOne": 2, + "substring": 6, + "remove": 6, + "ORDER": 2, + "statement": 4, + "since": 4, + "causes": 4, + "problems": 2, + "field": 26, + "aliases": 2, + "we": 2, + "can": 14, + "simple": 2, + "later": 2, + "query": 4, + "contains": 2, + "use": 10, + "SQL_CALC_FOUND_ROWS": 2, + "which": 2, + "much": 2, + "slower": 2, + "see": 16, + "//bugs.mysql.com/bug.php": 2, + "removeleading": 2, + "inline": 4, + "sql": 2, + "exit": 2, + "here": 2, + "normally": 2, + "/inline": 2, + "fallback": 4, + "required": 10, + "optional": 36, + "local_defined": 26, + "knop_seed": 2, + "#RandChars": 4, + "Get": 2, + "Math_Random": 2, + "Min": 2, + "Max": 2, + "Size": 2, + "#value": 14, + "#numericValue": 4, + "length": 8, + "#cryptvalue": 10, + "#anyChar": 2, + "Encrypt_Blowfish": 2, + "decrypt_blowfish": 2, + "String_Remove": 2, + "StartPosition": 2, + "EndPosition": 2, + "Seed": 2, + "String_IsAlphaNumeric": 2, + "self": 72, + "_date_msec": 4, + "/define_type": 4, + "seconds": 4, + "default": 4, + "store": 4, + "all": 6, + "page": 14, + "vars": 8, + "specified": 8, + "iterate": 12, + "keys": 6, + "var": 38, + "#item": 10, + "#type": 26, + "#data": 14, + "/iterate": 12, + "//fail_if": 6, + "session_id": 6, + "#session": 10, + "session_addvar": 4, + "#cache_name": 72, + "duration": 4, + "#expires": 4, + "server_name": 6, + "initiate": 10, + "thread": 6, + "RW": 6, + "lock": 24, + "global": 40, + "Thread_RWLock": 6, + "create": 6, + "reference": 10, + "@": 8, + "writing": 6, + "#lock": 12, + "writelock": 4, + "check": 6, + "cache": 4, + "unlock": 6, + "writeunlock": 4, + "#maxage": 4, + "cached": 8, + "data": 12, + "too": 4, + "old": 4, + "reading": 2, + "readlock": 2, + "readunlock": 2, + "ignored": 2, + "//##################################################################": 4, + "knoptype": 2, + "All": 4, + "Knop": 6, + "custom": 8, + "types": 10, + "should": 4, + "have": 6, + "identify": 2, + "registered": 2, + "knop": 6, + "isknoptype": 2, + "knop_knoptype": 2, + "prototype": 4, + "version": 4, + "14": 4, + "Base": 2, + "framework": 2, + "Contains": 2, + "common": 4, + "member": 10, + "Used": 2, + "boilerplate": 2, + "creating": 4, + "other": 4, + "instance": 8, + "variables": 2, + "are": 4, + "available": 2, + "well": 2, + "CHANGE": 4, + "NOTES": 4, + "Syntax": 4, + "adjustments": 4, + "9": 2, + "Changed": 6, + "error": 22, + "numbers": 2, + "added": 10, + "even": 2, + "language": 10, + "already": 2, + "exists.": 2, + "improved": 4, + "reporting": 2, + "messages": 6, + "such": 2, + "from": 6, + "bad": 2, + "database": 14, + "queries": 2, + "error_lang": 2, + "provide": 2, + "knop_lang": 8, + "add": 12, + "localized": 2, + "except": 2, + "knop_base": 8, + "html": 4, + "xhtml": 28, + "help": 10, + "nicely": 2, + "formatted": 2, + "output.": 2, + "Centralized": 2, + "knop_base.": 2, + "Moved": 6, + "codes": 2, + "improve": 2, + "documentation.": 2, + "It": 2, + "always": 2, + "an": 8, + "parameter.": 2, + "trace": 2, + "tagtime": 4, + "was": 6, + "nav": 4, + "earlier": 2, + "varname": 4, + "retreive": 2, + "variable": 8, + "that": 18, + "stored": 2, + "in.": 2, + "automatically": 2, + "sense": 2, + "doctype": 6, + "exists": 2, + "buffer.": 2, + "The": 6, + "performance.": 2, + "internal": 2, + "html.": 2, + "Introduced": 2, + "_knop_data": 10, + "general": 2, + "level": 2, + "caching": 2, + "between": 2, + "different": 2, + "objects.": 2, + "TODO": 2, + "option": 2, + "Google": 2, + "Code": 2, + "Wiki": 2, + "working": 2, + "properly": 4, + "run": 2, + "by": 12, + "atbegin": 2, + "handler": 2, + "explicitly": 2, + "*/": 2, + "entire": 4, + "ms": 2, + "defined": 4, + "each": 8, + "instead": 4, + "avoid": 2, + "recursion": 2, + "properties": 4, + "#endslash": 10, + "#tags": 2, + "#t": 2, + "doesn": 4, + "p": 2, + "Parameters": 4, + "nParameters": 2, + "Internal.": 2, + "Finds": 2, + "out": 2, + "used.": 2, + "Looks": 2, + "unless": 2, + "array.": 2, + "variable.": 2, + "Looking": 2, + "#xhtmlparam": 4, + "plain": 2, + "#doctype": 4, + "copy": 4, + "standard": 2, + "code": 2, + "errors": 12, + "error_data": 12, + "form": 2, + "grid": 2, + "lang": 2, + "user": 4, + "#error_lang": 12, + "addlanguage": 4, + "strings": 6, + "@#errorcodes": 2, + "#error_lang_custom": 2, + "#custom_language": 10, + "once": 4, + "one": 2, + "#custom_string": 4, + "#errorcodes": 4, + "#error_code": 10, + "message": 6, + "getstring": 2, + "test": 2, + "known": 2, + "lasso": 2, + "knop_timer": 2, + "knop_unique": 2, + "look": 2, + "#varname": 6, + "loop_abort": 2, + "tag_name": 2, + "#timer": 2, + "#trace": 4, + "merge": 2, + "#eol": 8, + "2010": 4, + "23": 4, + "Custom": 2, + "interact": 2, + "databases": 2, + "Supports": 4, + "both": 2, + "MySQL": 2, + "FileMaker": 2, + "datasources": 2, + "2012": 4, + "06": 2, + "10": 2, + "SP": 4, + "Fix": 2, + "precision": 2, + "bug": 2, + "6": 2, + "0": 2, + "1": 2, + "renderfooter": 2, + "15": 2, + "Add": 2, + "support": 6, + "Thanks": 2, + "Ric": 2, + "Lewis": 2, + "settable": 4, + "removed": 2, + "table": 6, + "nextrecord": 12, + "deprecation": 2, + "warning": 2, + "corrected": 2, + "verification": 2, + "index": 4, + "before": 4, + "calling": 2, + "resultset_count": 6, + "break": 2, + "versions": 2, + "fixed": 4, + "incorrect": 2, + "debug_trace": 2, + "addrecord": 4, + "how": 2, + "keyvalue": 10, + "returned": 6, + "adding": 2, + "records": 4, + "inserting": 2, + "generated": 2, + "suppressed": 2, + "specifying": 2, + "saverecord": 8, + "deleterecord": 4, + "case.": 2, + "recorddata": 6, + "no": 2, + "longer": 2, + "touch": 2, + "current_record": 2, + "zero": 2, + "access": 2, + "occurrence": 2, + "same": 4, + "returns": 4, + "knop_databaserows": 2, + "inlinename.": 4, + "next.": 2, + "remains": 2, + "supported": 2, + "backwards": 2, + "compatibility.": 2, + "resets": 2, + "record": 20, + "pointer": 8, + "reaching": 2, + "last": 4, + "honors": 2, + "incremented": 2, + "recordindex": 4, + "specific": 2, + "found.": 2, + "getrecord": 8, + "REALLY": 2, + "works": 4, + "keyvalues": 4, + "double": 2, + "oops": 4, + "I": 4, + "thought": 2, + "but": 2, + "misplaced": 2, + "paren...": 2, + "corresponding": 2, + "resultset": 2, + "/resultset": 2, + "through": 2, + "handling": 2, + "better": 2, + "knop_user": 4, + "keeplock": 4, + "updates": 2, + "datatype": 2, + "knop_databaserow": 2, + "iterated.": 2, + "When": 2, + "iterating": 2, + "row": 2, + "values.": 2, + "Addedd": 2, + "increments": 2, + "recordpointer": 2, + "called": 2, + "until": 2, + "reached.": 2, + "Returns": 2, + "long": 2, + "there": 2, + "more": 2, + "records.": 2, + "Useful": 2, + "loop": 2, + "example": 2, + "below": 2, + "Implemented": 2, + "reset": 2, + "query.": 2, + "shortcut": 2, + "Removed": 2, + "onassign": 2, + "touble": 2, + "Extended": 2, + "field_names": 2, + "names": 4, + "db": 2, + "objects": 2, + "never": 2, + "been": 2, + "optionally": 2, + "supports": 2, + "sql.": 2, + "Make": 2, + "sure": 2, + "SQL": 2, + "includes": 2, + "relevant": 2, + "lockfield": 2, + "locking": 4, + "capturesearchvars": 2, + "mysteriously": 2, + "after": 2, + "operations": 2, + "caused": 2, + "errors.": 2, + "flag": 2, + "save": 2, + "locked": 2, + "releasing": 2, + "Adding": 2, + "progress.": 2, + "Done": 2, + "oncreate": 2, + "getrecord.": 2, + "documentation": 2, + "most": 2, + "existing": 2, + "it.": 2, + "Faster": 2, + "than": 2, + "scratch.": 2, + "shown_first": 2, + "again": 2, + "hoping": 2, + "s": 2, + "only": 2, + "captured": 2, + "update": 2, + "uselimit": 2, + "querys": 2, + "LIMIT": 2, + "still": 2, + "gets": 2, + "proper": 2, + "searchresult": 2, + "separate": 2, + "COUNT": 2 + }, + "MoonScript": { + "types": 2, + "require": 5, + "util": 2, + "data": 1, + "import": 5, + "reversed": 2, + "unpack": 22, + "from": 4, + "ntype": 16, + "mtype": 3, + "build": 7, + "smart_node": 7, + "is_slice": 2, + "value_is_singular": 3, + "insert": 18, + "table": 2, + "NameProxy": 14, + "LocalName": 2, + "destructure": 1, + "local": 1, + "implicitly_return": 2, + "class": 4, + "Run": 8, + "new": 2, + "(": 54, + "@fn": 1, + ")": 54, + "self": 2, + "[": 79, + "]": 79, + "call": 3, + "state": 2, + "self.fn": 1, + "-": 51, + "transform": 2, + "the": 4, + "last": 6, + "stm": 16, + "is": 2, + "a": 4, + "list": 6, + "of": 1, + "stms": 4, + "will": 1, + "puke": 1, + "on": 1, + "group": 1, + "apply_to_last": 6, + "fn": 3, + "find": 2, + "real": 1, + "exp": 17, + "last_exp_id": 3, + "for": 20, + "i": 15, + "#stms": 1, + "if": 43, + "and": 8, + "break": 1, + "return": 11, + "in": 18, + "ipairs": 3, + "else": 22, + "body": 26, + "sindle": 1, + "expression/statement": 1, + "is_singular": 2, + "false": 2, + "#body": 1, + "true": 4, + "find_assigns": 2, + "out": 9, + "{": 135, + "}": 136, + "thing": 4, + "*body": 2, + "switch": 7, + "when": 12, + "table.insert": 3, + "extract": 1, + "names": 16, + "hoist_declarations": 1, + "assigns": 5, + "hoist": 1, + "plain": 1, + "old": 1, + "*find_assigns": 1, + "name": 31, + "*names": 3, + "type": 5, + "after": 1, + "runs": 1, + "idx": 4, + "while": 3, + "do": 2, + "+": 2, + "expand_elseif_assign": 2, + "ifstm": 5, + "#ifstm": 1, + "case": 13, + "split": 4, + "constructor_name": 2, + "with_continue_listener": 4, + "continue_name": 13, + "nil": 8, + "@listen": 1, + "unless": 6, + "@put_name": 2, + "build.group": 14, + "@splice": 1, + "lines": 2, + "Transformer": 2, + "@transformers": 3, + "@seen_nodes": 3, + "setmetatable": 1, + "__mode": 1, + "scope": 4, + "node": 68, + "...": 10, + "transformer": 3, + "res": 3, + "or": 6, + "bind": 1, + "@transform": 2, + "__call": 1, + "can_transform": 1, + "construct_comprehension": 2, + "inner": 2, + "clauses": 4, + "current_stms": 7, + "_": 10, + "clause": 4, + "t": 10, + "iter": 2, + "elseif": 1, + "cond": 11, + "error": 4, + "..t": 1, + "Statement": 2, + "root_stms": 1, + "@": 1, + "assign": 9, + "values": 10, + "bubble": 1, + "cascading": 2, + "transformed": 2, + "#values": 1, + "value": 7, + "@transform.statement": 2, + "types.cascading": 1, + "ret": 16, + "types.is_value": 1, + "destructure.has_destructure": 2, + "destructure.split_assign": 1, + "continue": 1, + "@send": 1, + "build.assign_one": 11, + "export": 1, + "they": 1, + "are": 1, + "included": 1, + "#node": 3, + "cls": 5, + "cls.name": 1, + "build.assign": 3, + "update": 1, + "op": 2, + "op_final": 3, + "match": 1, + "..op": 1, + "not": 2, + "source": 7, + "stubs": 1, + "real_names": 4, + "build.chain": 7, + "base": 8, + "stub": 4, + "*stubs": 2, + "source_name": 3, + "comprehension": 1, + "action": 4, + "decorated": 1, + "dec": 6, + "wrapped": 4, + "fail": 5, + "..": 1, + "build.declare": 1, + "*stm": 1, + "expand": 1, + "destructure.build_assign": 2, + "build.do": 2, + "apply": 1, + "decorator": 1, + "mutate": 1, + "all": 1, + "bodies": 1, + "body_idx": 3, + "with": 3, + "block": 2, + "scope_name": 5, + "named_assign": 2, + "assign_name": 1, + "@set": 1, + "foreach": 1, + "node.iter": 1, + "destructures": 5, + "node.names": 3, + "proxy": 2, + "next": 1, + "node.body": 9, + "index_name": 3, + "list_name": 6, + "slice_var": 3, + "bounds": 3, + "slice": 7, + "#list": 1, + "table.remove": 2, + "max_tmp_name": 5, + "index": 2, + "conds": 3, + "exp_name": 3, + "convert": 1, + "into": 1, + "statment": 1, + "convert_cond": 2, + "case_exps": 3, + "cond_exp": 5, + "first": 3, + "if_stm": 5, + "*conds": 1, + "if_cond": 4, + "parent_assign": 3, + "parent_val": 1, + "apart": 1, + "properties": 4, + "statements": 4, + "item": 3, + "tuple": 8, + "*item": 1, + "constructor": 7, + "*properties": 1, + "key": 3, + "parent_cls_name": 5, + "base_name": 4, + "self_name": 4, + "cls_name": 1, + "build.fndef": 3, + "args": 3, + "arrow": 1, + "then": 2, + "constructor.arrow": 1, + "real_name": 6, + "#real_name": 1, + "build.table": 2, + "look": 1, + "up": 1, + "object": 1, + "class_lookup": 3, + "cls_mt": 2, + "out_body": 1, + "make": 1, + "sure": 1, + "we": 1, + "don": 1, + "string": 1, + "parens": 2, + "colon_stub": 1, + "super": 1, + "dot": 1, + "varargs": 2, + "arg_list": 1, + "Value": 1 + }, "Rebol": { "REBOL": 1, "[": 3, @@ -39500,48 +40391,14 @@ "esac": 7, "done": 8, "exit": 10, - "/usr/bin/clear": 2, "##": 28, - "if": 39, - "z": 12, - "then": 41, - "export": 25, - "SCREENDIR": 2, - "fi": 34, - "PATH": 14, - "/usr/local/bin": 6, - "/usr/local/sbin": 6, - "/usr/xpg4/bin": 4, - "/usr/sbin": 6, - "/usr/bin": 8, - "/usr/sfw/bin": 4, - "/usr/ccs/bin": 4, - "/usr/openwin/bin": 4, - "/opt/mysql/current/bin": 4, - "MANPATH": 2, - "/usr/local/man": 2, - "/usr/share/man": 2, - "Random": 2, - "ENV...": 2, - "TERM": 4, - "COLORTERM": 2, - "CLICOLOR": 2, - "#": 53, - "can": 3, - "be": 3, - "set": 21, - "to": 33, - "anything": 2, - "actually": 2, - "DISPLAY": 2, - "r": 17, - "&&": 65, - ".": 5, "function": 6, "ls": 6, "command": 5, "Fh": 2, "l": 8, + "#": 53, + "to": 33, "list": 3, "long": 2, "format...": 2, @@ -39664,10 +40521,12 @@ "v": 11, "readonly": 4, "unset": 10, + "export": 25, "and": 5, "shell": 4, "variables": 2, "setopt": 8, + "set": 21, "options": 8, "helptopic": 2, "help": 5, @@ -39734,6 +40593,38 @@ "ping": 2, "histappend": 2, "PROMPT_COMMAND": 2, + "PATH": 14, + "/usr/local/bin": 6, + "/usr/local/sbin": 6, + "/usr/xpg4/bin": 4, + "/usr/sbin": 6, + "/usr/bin": 8, + "/usr/sfw/bin": 4, + "/usr/ccs/bin": 4, + "/usr/openwin/bin": 4, + "/opt/mysql/current/bin": 4, + "/usr/bin/clear": 2, + "if": 39, + "z": 12, + "then": 41, + "SCREENDIR": 2, + "fi": 34, + "MANPATH": 2, + "/usr/local/man": 2, + "/usr/share/man": 2, + "Random": 2, + "ENV...": 2, + "TERM": 4, + "COLORTERM": 2, + "CLICOLOR": 2, + "can": 3, + "be": 3, + "anything": 2, + "actually": 2, + "DISPLAY": 2, + "r": 17, + "&&": 65, + ".": 5, "umask": 2, "path": 13, "/opt/local/bin": 2, @@ -43622,19 +44513,20 @@ "Apex": 4408, "AppleScript": 1862, "Arduino": 20, + "AsciiDoc": 103, "AutoHotkey": 3, "Awk": 544, "BlitzBasic": 2065, "Bluespec": 1298, "Brightscript": 579, "C": 58858, - "C++": 21308, "Ceylon": 50, "Clojure": 510, "COBOL": 90, "CoffeeScript": 2951, "Common Lisp": 103, "Coq": 18259, + "Creole": 134, "CSS": 43867, "Cuda": 290, "Dart": 68, @@ -43646,7 +44538,6 @@ "Emacs Lisp": 1756, "Erlang": 2928, "fish": 636, - "Forth": 1516, "GAS": 133, "GLSL": 3766, "Gosu": 413, @@ -43660,11 +44551,10 @@ "Jade": 3, "Java": 8987, "JavaScript": 76934, - "JSON": 41, + "JSON": 183, "Julia": 247, "Kotlin": 155, "KRL": 25, - "Lasso": 9849, "Less": 39, "LFE": 1711, "Literate Agda": 478, @@ -43678,8 +44568,8 @@ "Markdown": 1, "Matlab": 11942, "Max": 714, + "MediaWiki": 766, "Monkey": 207, - "MoonScript": 1718, "Nemerle": 17, "NetLogo": 243, "Nginx": 179, @@ -43692,6 +44582,7 @@ "Opa": 28, "OpenCL": 144, "OpenEdge ABL": 762, + "Org": 358, "Oxygene": 555, "Parrot Assembly": 6, "Parrot Internal Representation": 5, @@ -43704,9 +44595,15 @@ "Prolog": 4040, "Protocol Buffer": 63, "Python": 5715, + "QMake": 119, "R": 175, "Racket": 331, "Ragel in Ruby Host": 593, + "RDoc": 279, + "C++": 21308, + "Forth": 1516, + "Lasso": 9849, + "MoonScript": 1718, "Rebol": 11, "RobotFramework": 483, "Ruby": 3862, @@ -43749,19 +44646,20 @@ "Apex": 6, "AppleScript": 7, "Arduino": 1, + "AsciiDoc": 3, "AutoHotkey": 1, "Awk": 1, "BlitzBasic": 3, "Bluespec": 2, "Brightscript": 1, "C": 26, - "C++": 19, "Ceylon": 1, "Clojure": 7, "COBOL": 4, "CoffeeScript": 9, "Common Lisp": 1, "Coq": 12, + "Creole": 1, "CSS": 2, "Cuda": 2, "Dart": 1, @@ -43773,7 +44671,6 @@ "Emacs Lisp": 2, "Erlang": 5, "fish": 3, - "Forth": 7, "GAS": 1, "GLSL": 3, "Gosu": 5, @@ -43787,11 +44684,10 @@ "Jade": 1, "Java": 6, "JavaScript": 20, - "JSON": 3, + "JSON": 4, "Julia": 1, "Kotlin": 1, "KRL": 1, - "Lasso": 4, "Less": 1, "LFE": 4, "Literate Agda": 1, @@ -43805,8 +44701,8 @@ "Markdown": 1, "Matlab": 39, "Max": 3, + "MediaWiki": 1, "Monkey": 1, - "MoonScript": 1, "Nemerle": 1, "NetLogo": 1, "Nginx": 1, @@ -43819,6 +44715,7 @@ "Opa": 2, "OpenCL": 2, "OpenEdge ABL": 5, + "Org": 1, "Oxygene": 2, "Parrot Assembly": 1, "Parrot Internal Representation": 1, @@ -43831,9 +44728,15 @@ "Prolog": 6, "Protocol Buffer": 1, "Python": 7, + "QMake": 4, "R": 2, "Racket": 2, "Ragel in Ruby Host": 3, + "RDoc": 1, + "C++": 19, + "Forth": 7, + "Lasso": 4, + "MoonScript": 1, "Rebol": 1, "RobotFramework": 3, "Ruby": 17, @@ -43869,5 +44772,5 @@ "Xtend": 2, "YAML": 1 }, - "md5": "000e8e3491187dfff9cd69405f10d8ab" + "md5": "3b94c2e2a38e812cdf16b2e91e51695b" } \ No newline at end of file diff --git a/samples/QMake/complex.pro b/samples/QMake/complex.pro new file mode 100644 index 00000000..6f6a5317 --- /dev/null +++ b/samples/QMake/complex.pro @@ -0,0 +1,30 @@ +# This QMake file is complex, as it usese +# boolean operators and function calls + +QT += core gui +greaterThan(QT_MAJOR_VERSION, 4): QT += widgets + +# We could use some OpenGL right now +contains(QT_CONFIG, opengl) | contains(QT_CONFIG, opengles2) { + QT += opengl +} else { + DEFINES += QT_NO_OPENGL +} + +TEMPLATE = app +win32 { + TARGET = BlahApp + RC_FILE = Resources/winres.rc +} +!win32 { TARGET = blahapp } + +# Let's add a PRI file! +include(functions.pri) + +SOURCES += file.cpp + +HEADERS += file.h + +FORMS += file.ui + +RESOURCES += res.qrc diff --git a/samples/QMake/functions.pri b/samples/QMake/functions.pri new file mode 100644 index 00000000..ef1541a5 --- /dev/null +++ b/samples/QMake/functions.pri @@ -0,0 +1,8 @@ +# QMake include file that calls some functions +# and does nothing else... + +exists(.git/HEAD) { + system(git rev-parse HEAD >rev.txt) +} else { + system(echo ThisIsNotAGitRepo >rev.txt) +} diff --git a/samples/QMake/qmake.script! b/samples/QMake/qmake.script! new file mode 100644 index 00000000..297139da --- /dev/null +++ b/samples/QMake/qmake.script! @@ -0,0 +1,2 @@ +#!/usr/bin/qmake +message(This is QMake.) diff --git a/samples/QMake/simple.pro b/samples/QMake/simple.pro new file mode 100644 index 00000000..3bdf5ab8 --- /dev/null +++ b/samples/QMake/simple.pro @@ -0,0 +1,17 @@ +# Simple QMake file + +CONFIG += qt +QT += core gui +TEMPLATE = app +TARGET = simpleapp + +SOURCES += file.cpp \ + file2.c \ + This/Is/Folder/file3.cpp + +HEADERS += file.h \ + file2.h \ + This/Is/Folder/file3.h + +FORMS += This/Is/Folder/file3.ui \ + Test.ui From ee3c9bcdbdf5389ad412decabfd57c3ae0d69d24 Mon Sep 17 00:00:00 2001 From: Michael Hendricks Date: Mon, 17 Mar 2014 08:56:45 -0600 Subject: [PATCH 003/268] Add misclassified Prolog samples These two files are incorrectly classified as Perl. They should be classified as Prolog. There are many distinctive tokens in each file which clearly differentiate between Perl and Prolog. --- samples/Prolog/format_spec.pl | 260 ++++++++++++++++++++++++++++++++++ samples/Prolog/func.pl | 194 +++++++++++++++++++++++++ 2 files changed, 454 insertions(+) create mode 100644 samples/Prolog/format_spec.pl create mode 100644 samples/Prolog/func.pl diff --git a/samples/Prolog/format_spec.pl b/samples/Prolog/format_spec.pl new file mode 100644 index 00000000..1508f3a3 --- /dev/null +++ b/samples/Prolog/format_spec.pl @@ -0,0 +1,260 @@ +:- module(format_spec, [ format_error/2 + , format_spec/2 + , format_spec//1 + , spec_arity/2 + , spec_types/2 + ]). + +:- use_module(library(dcg/basics), [eos//0, integer//1, string_without//2]). +:- use_module(library(error)). +:- use_module(library(when), [when/2]). + +% TODO loading this module is optional +% TODO it's for my own convenience during development +%:- use_module(library(mavis)). + +%% format_error(+Goal, -Error:string) is nondet. +% +% True if Goal exhibits an Error in its format string. The +% Error string describes what is wrong with Goal. Iterates each +% error on backtracking. +% +% Goal may be one of the following predicates: +% +% * format/2 +% * format/3 +% * debug/3 +format_error(format(Format,Args), Error) :- + format_error_(Format, Args,Error). +format_error(format(_,Format,Args), Error) :- + format_error_(Format,Args,Error). +format_error(debug(_,Format,Args), Error) :- + format_error_(Format,Args,Error). + +format_error_(Format,Args,Error) :- + format_spec(Format, Spec), + !, + is_list(Args), + spec_types(Spec, Types), + types_error(Args, Types, Error). +format_error_(Format,_,Error) :- + % \+ format_spec(Format, _), + format(string(Error), "Invalid format string: ~q", [Format]). + +types_error(Args, Types, Error) :- + length(Types, TypesLen), + length(Args, ArgsLen), + TypesLen =\= ArgsLen, + !, + format( string(Error) + , "Wrong argument count. Expected ~d, got ~d" + , [TypesLen, ArgsLen] + ). +types_error(Args, Types, Error) :- + types_error_(Args, Types, Error). + +types_error_([Arg|_],[Type|_],Error) :- + ground(Arg), + \+ is_of_type(Type,Arg), + message_to_string(error(type_error(Type,Arg),_Location),Error). +types_error_([_|Args],[_|Types],Error) :- + types_error_(Args, Types, Error). + + +% check/0 augmentation +:- multifile check:checker/2. +:- dynamic check:checker/2. +check:checker(format_spec:checker, "format/2 strings and arguments"). + +:- dynamic format_fail/3. + +checker :- + prolog_walk_code([ module_class([user]) + , infer_meta_predicates(false) + , autoload(false) % format/{2,3} are always loaded + , undefined(ignore) + , trace_reference(_) + , on_trace(check_format) + ]), + retract(format_fail(Goal,Location,Error)), + print_message(warning, format_error(Goal,Location,Error)), + fail. % iterate all errors +checker. % succeed even if no errors are found + +check_format(Module:Goal, _Caller, Location) :- + predicate_property(Module:Goal, imported_from(Source)), + memberchk(Source, [system,prolog_debug]), + can_check(Goal), + format_error(Goal, Error), + assert(format_fail(Goal, Location, Error)), + fail. +check_format(_,_,_). % succeed to avoid printing goals + +% true if format_error/2 can check this goal +can_check(Goal) :- + once(clause(format_error(Goal,_),_)). + +prolog:message(format_error(Goal,Location,Error)) --> + prolog:message_location(Location), + ['~n In goal: ~q~n ~s'-[Goal,Error]]. + + +%% format_spec(-Spec)// +% +% DCG for parsing format strings. It doesn't yet generate format +% strings from a spec. See format_spec/2 for details. +format_spec([]) --> + eos. +format_spec([escape(Numeric,Modifier,Action)|Rest]) --> + "~", + numeric_argument(Numeric), + modifier_argument(Modifier), + action(Action), + format_spec(Rest). +format_spec([text(String)|Rest]) --> + { when((ground(String);ground(Codes)),string_codes(String, Codes)) }, + string_without("~", Codes), + { Codes \= [] }, + format_spec(Rest). + + +%% format_spec(+Format, -Spec:list) is semidet. +% +% Parse a format string. Each element of Spec is one of the following: +% +% * `text(Text)` - text sent to the output as is +% * `escape(Num,Colon,Action)` - a format escape +% +% `Num` represents the optional numeric portion of an esape. `Colon` +% represents the optional colon in an escape. `Action` is an atom +% representing the action to be take by this escape. +format_spec(Format, Spec) :- + when((ground(Format);ground(Codes)),text_codes(Format, Codes)), + once(phrase(format_spec(Spec), Codes, [])). + +%% spec_arity(+FormatSpec, -Arity:positive_integer) is det. +% +% True if FormatSpec requires format/2 to have Arity arguments. +spec_arity(Spec, Arity) :- + spec_types(Spec, Types), + length(Types, Arity). + + +%% spec_types(+FormatSpec, -Types:list(type)) is det. +% +% True if FormatSpec requires format/2 to have arguments of Types. Each +% value of Types is a type as described by error:has_type/2. This +% notion of types is compatible with library(mavis). +spec_types(Spec, Types) :- + phrase(spec_types(Spec), Types). + +spec_types([]) --> + []. +spec_types([Item|Items]) --> + item_types(Item), + spec_types(Items). + +item_types(text(_)) --> + []. +item_types(escape(Numeric,_,Action)) --> + numeric_types(Numeric), + action_types(Action). + +numeric_types(number(_)) --> + []. +numeric_types(character(_)) --> + []. +numeric_types(star) --> + [number]. +numeric_types(nothing) --> + []. + +action_types(Action) --> + { atom_codes(Action, [Code]) }, + { action_types(Code, Types) }, + phrase(Types). + + +%% text_codes(Text:text, Codes:codes). +text_codes(Var, Codes) :- + var(Var), + !, + string_codes(Var, Codes). +text_codes(Atom, Codes) :- + atom(Atom), + !, + atom_codes(Atom, Codes). +text_codes(String, Codes) :- + string(String), + !, + string_codes(String, Codes). +text_codes(Codes, Codes) :- + is_of_type(codes, Codes). + + +numeric_argument(number(N)) --> + integer(N). +numeric_argument(character(C)) --> + "`", + [C]. +numeric_argument(star) --> + "*". +numeric_argument(nothing) --> + "". + + +modifier_argument(colon) --> + ":". +modifier_argument(no_colon) --> + \+ ":". + + +action(Action) --> + [C], + { is_action(C) }, + { atom_codes(Action, [C]) }. + + +%% is_action(+Action:integer) is semidet. +%% is_action(-Action:integer) is multi. +% +% True if Action is a valid format/2 action character. Iterates all +% acceptable action characters, if Action is unbound. +is_action(Action) :- + action_types(Action, _). + +%% action_types(?Action:integer, ?Types:list(type)) +% +% True if Action consumes arguments matching Types. An action (like +% `~`), which consumes no arguments, has `Types=[]`. For example, +% +% ?- action_types(0'~, Types). +% Types = []. +% ?- action_types(0'a, Types). +% Types = [atom]. +action_types(0'~, []). +action_types(0'a, [atom]). +action_types(0'c, [integer]). % specifically, a code +action_types(0'd, [integer]). +action_types(0'D, [integer]). +action_types(0'e, [float]). +action_types(0'E, [float]). +action_types(0'f, [float]). +action_types(0'g, [float]). +action_types(0'G, [float]). +action_types(0'i, [any]). +action_types(0'I, [integer]). +action_types(0'k, [any]). +action_types(0'n, []). +action_types(0'N, []). +action_types(0'p, [any]). +action_types(0'q, [any]). +action_types(0'r, [integer]). +action_types(0'R, [integer]). +action_types(0's, [text]). +action_types(0'@, [callable]). +action_types(0't, []). +action_types(0'|, []). +action_types(0'+, []). +action_types(0'w, [any]). +action_types(0'W, [any, list]). diff --git a/samples/Prolog/func.pl b/samples/Prolog/func.pl new file mode 100644 index 00000000..944514e2 --- /dev/null +++ b/samples/Prolog/func.pl @@ -0,0 +1,194 @@ +:- module(func, [ op(675, xfy, ($)) + , op(650, xfy, (of)) + , ($)/2 + , (of)/2 + ]). +:- use_module(library(list_util), [xfy_list/3]). +:- use_module(library(function_expansion)). +:- use_module(library(arithmetic)). +:- use_module(library(error)). + + +% true if the module whose terms are being read has specifically +% imported library(func). +wants_func :- + prolog_load_context(module, Module), + Module \== func, % we don't want func sugar ourselves + predicate_property(Module:of(_,_),imported_from(func)). + + +%% compile_function(+Term, -In, -Out, -Goal) is semidet. +% +% True if Term represents a function from In to Out +% implemented by calling Goal. This multifile hook is +% called by $/2 and of/2 to convert a term into a goal. +% It's used at compile time for macro expansion. +% It's used at run time to handle functions which aren't +% known at compile time. +% When called as a hook, Term is guaranteed to be =nonvar=. +% +% For example, to treat library(assoc) terms as functions which +% map a key to a value, one might define: +% +% :- multifile compile_function/4. +% compile_function(Assoc, Key, Value, Goal) :- +% is_assoc(Assoc), +% Goal = get_assoc(Key, Assoc, Value). +% +% Then one could write: +% +% list_to_assoc([a-1, b-2, c-3], Assoc), +% Two = Assoc $ b, +:- multifile compile_function/4. +compile_function(Var, _, _, _) :- + % variables storing functions must be evaluated at run time + % and can't be compiled, a priori, into a goal + var(Var), + !, + fail. +compile_function(Expr, In, Out, Out is Expr) :- + % arithmetic expression of one variable are simply evaluated + \+ string(Expr), % evaluable/1 throws exception with strings + arithmetic:evaluable(Expr), + term_variables(Expr, [In]). +compile_function(F, In, Out, func:Goal) :- + % composed functions + function_composition_term(F), + user:function_expansion(F, func:Functor, true), + Goal =.. [Functor,In,Out]. +compile_function(F, In, Out, Goal) :- + % string interpolation via format templates + format_template(F), + ( atom(F) -> + Goal = format(atom(Out), F, In) + ; string(F) -> + Goal = format(string(Out), F, In) + ; error:has_type(codes, F) -> + Goal = format(codes(Out), F, In) + ; fail % to be explicit + ). +compile_function(Dict, In, Out, Goal) :- + is_dict(Dict), + Goal = get_dict(In, Dict, Out). + +%% $(+Function, +Argument) is det. +% +% Apply Function to an Argument. A Function is any predicate +% whose final argument generates output and whose penultimate argument +% accepts input. +% +% This is realized by expanding function application to chained +% predicate calls at compile time. Function application itself can +% be chained. +% +% == +% Reversed = reverse $ sort $ [c,d,b]. +% == +:- meta_predicate $(2,+). +$(_,_) :- + throw(error(permission_error(call, predicate, ($)/2), + context(_, '$/2 must be subject to goal expansion'))). + +user:function_expansion($(F,X), Y, Goal) :- + wants_func, + ( func:compile_function(F, X, Y, Goal) -> + true + ; var(F) -> Goal = % defer until run time + ( func:compile_function(F, X, Y, P) -> + call(P) + ; call(F, X, Y) + ) + ; Goal = call(F, X, Y) + ). + + +%% of(+F, +G) is det. +% +% Creates a new function by composing F and G. The functions are +% composed at compile time to create a new, compiled predicate which +% behaves like a function. Function composition can be chained. +% Composed functions can also be applied with $/2. +% +% == +% Reversed = reverse of sort $ [c,d,b]. +% == +:- meta_predicate of(2,2). +of(_,_). + + +%% format_template(Format) is semidet. +% +% True if Format is a template string suitable for format/3. +% The current check is very naive and should be improved. +format_template(Format) :- + atom(Format), !, + atom_codes(Format, Codes), + format_template(Codes). +format_template(Format) :- + string(Format), + !, + string_codes(Format, Codes), + format_template(Codes). +format_template(Format) :- + error:has_type(codes, Format), + memberchk(0'~, Format). % ' fix syntax highlighting + + +% True if the argument is a function composition term +function_composition_term(of(_,_)). + +% Converts a function composition term into a list of functions to compose +functions_to_compose(Term, Funcs) :- + functor(Term, Op, 2), + Op = (of), + xfy_list(Op, Term, Funcs). + +% Thread a state variable through a list of functions. This is similar +% to a DCG expansion, but much simpler. +thread_state([], [], Out, Out). +thread_state([F|Funcs], [Goal|Goals], In, Out) :- + ( compile_function(F, In, Tmp, Goal) -> + true + ; var(F) -> + instantiation_error(F) + ; F =.. [Functor|Args], + append(Args, [In, Tmp], NewArgs), + Goal =.. [Functor|NewArgs] + ), + thread_state(Funcs, Goals, Tmp, Out). + +user:function_expansion(Term, func:Functor, true) :- + wants_func, + functions_to_compose(Term, Funcs), + debug(func, 'building composed function for: ~w', [Term]), + variant_sha1(Funcs, Sha), + format(atom(Functor), 'composed_function_~w', [Sha]), + debug(func, ' name: ~s', [Functor]), + ( func:current_predicate(Functor/2) -> + debug(func, ' composed predicate already exists', []) + ; true -> + reverse(Funcs, RevFuncs), + thread_state(RevFuncs, Threaded, In, Out), + xfy_list(',', Body, Threaded), + Head =.. [Functor, In, Out], + func:assert(Head :- Body), + func:compile_predicates([Functor/2]) + ). + + +% support foo(x,~,y) evaluation +user:function_expansion(Term, Output, Goal) :- + wants_func, + compound(Term), + + % has a single ~ argument + setof( X + , ( arg(X,Term,Arg), Arg == '~' ) + , [N] + ), + + % replace ~ with a variable + Term =.. [Name|Args0], + nth1(N, Args0, ~, Rest), + nth1(N, Args, Output, Rest), + Goal =.. [Name|Args]. From 9d569c8bd52395d34246b329270aaf0bd83ccacd Mon Sep 17 00:00:00 2001 From: Ricky Elrod Date: Tue, 22 Apr 2014 02:54:27 -0400 Subject: [PATCH 004/268] Idris is upstream in Pygments now: https://bitbucket.org/birkenfeld/pygments-main/pull-request/210 --- lib/linguist/languages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index d77f5622..91ca647c 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -878,7 +878,7 @@ Inno Setup: Idris: type: programming - lexer: Text only + lexer: Idris primary_extension: .idr extensions: - .lidr From 04f4b0541257f567cfbb0dacde68aa558ed6f0e7 Mon Sep 17 00:00:00 2001 From: Josh Oldenburg Date: Mon, 26 May 2014 10:35:11 -0400 Subject: [PATCH 006/268] Ignore files related to Cocoapods. These include Podfile, Podfile.lock, and Pods/. --- lib/linguist/vendor.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/linguist/vendor.yml b/lib/linguist/vendor.yml index 51383984..bc98429f 100644 --- a/lib/linguist/vendor.yml +++ b/lib/linguist/vendor.yml @@ -124,6 +124,11 @@ ## Obj-C ## +# Cocoapods +- ^Podfile$ +- ^Podfile.lock$ +- ^Pods/$ + # Sparkle - (^|/)Sparkle/ From a7cba235265338b956c742a353a99d189fa9e3de Mon Sep 17 00:00:00 2001 From: Niklas Rosenstein Date: Sat, 7 Jun 2014 01:29:30 +0200 Subject: [PATCH 007/268] added .pyp suffix and an example source file. closes issue #1 --- lib/linguist/languages.yml | 1 + samples/Python/Cinema4DPythonPlugin.pyp | 241 ++++++++++++++++++++++++ 2 files changed, 242 insertions(+) create mode 100644 samples/Python/Cinema4DPythonPlugin.pyp diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 7a6ee504..2e3ba7ed 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1702,6 +1702,7 @@ Python: - .pyw - .wsgi - .xpy + - .pyp filenames: - wscript - SConstruct diff --git a/samples/Python/Cinema4DPythonPlugin.pyp b/samples/Python/Cinema4DPythonPlugin.pyp new file mode 100644 index 00000000..30c2aa78 --- /dev/null +++ b/samples/Python/Cinema4DPythonPlugin.pyp @@ -0,0 +1,241 @@ +# +# Cinema 4D Python Plugin Source file +# https://github.com/nr-plugins/nr-xpresso-alignment-tools +# + +# coding: utf-8 +# +# Copyright (C) 2012, Niklas Rosenstein +# Licensed under the GNU General Public License +# +# XPAT - XPresso Alignment Tools +# ============================== +# +# The XPAT plugin provides tools for aligning nodes in the Cinema 4D +# XPresso Editor, improving readability of complex XPresso set-ups +# immensively. +# +# Requirements: +# - MAXON Cinema 4D R13+ +# - Python `c4dtools` library. Get it from +# http://github.com/NiklasRosenstein/c4dtools +# +# Author: Niklas Rosenstein +# Version: 1.1 (01/06/2012) + +import os +import sys +import json +import c4d +import c4dtools +import itertools + +from c4d.modules import graphview as gv +from c4dtools.misc import graphnode + +res, importer = c4dtools.prepare(__file__, __res__) +settings = c4dtools.helpers.Attributor({ + 'options_filename': res.file('config.json'), +}) + +def align_nodes(nodes, mode, spacing): + r""" + Aligns the passed nodes horizontally and apply the minimum spacing + between them. + """ + + modes = ['horizontal', 'vertical'] + if not nodes: + return + if mode not in modes: + raise ValueError('invalid mode, choices are: ' + ', '.join(modes)) + + get_0 = lambda x: x.x + get_1 = lambda x: x.y + set_0 = lambda x, v: setattr(x, 'x', v) + set_1 = lambda x, v: setattr(x, 'y', v) + + if mode == 'vertical': + get_0, get_1 = get_1, get_0 + set_0, set_1 = set_1, set_0 + + nodes = [graphnode.GraphNode(n) for n in nodes] + nodes.sort(key=lambda n: get_0(n.position)) + midpoint = graphnode.find_nodes_mid(nodes) + + # Apply the spacing between the nodes relative to the coordinate-systems + # origin. We can offset them later because we now the nodes' midpoint + # already. + first_position = nodes[0].position + new_positions = [] + prev_offset = 0 + for node in nodes: + # Compute the relative position of the node. + position = node.position + set_0(position, get_0(position) - get_0(first_position)) + + # Obtain it's size and check if the node needs to be re-placed. + size = node.size + if get_0(position) < prev_offset: + set_0(position, prev_offset) + prev_offset += spacing + get_0(size) + else: + prev_offset = get_0(position) + get_0(size) + spacing + + set_1(position, get_1(midpoint)) + new_positions.append(position) + + # Center the nodes again. + bbox_size = prev_offset - spacing + bbox_size_2 = bbox_size * 0.5 + for node, position in itertools.izip(nodes, new_positions): + # TODO: Here is some issue with offsetting the nodes. Some value + # dependent on the spacing must be added here to not make the nodes + # move horizontally/vertically although they have already been + # aligned. + set_0(position, get_0(midpoint) + get_0(position) - bbox_size_2 + spacing) + node.position = position + +def align_nodes_shortcut(mode, spacing): + master = gv.GetMaster(0) + if not master: + return + + root = master.GetRoot() + if not root: + return + + nodes = graphnode.find_selected_nodes(root) + if nodes: + master.AddUndo() + align_nodes(nodes, mode, spacing) + c4d.EventAdd() + + return True + +class XPAT_Options(c4dtools.helpers.Attributor): + r""" + This class organizes the options for the XPAT plugin, i.e. + validating, loading and saving. + """ + + defaults = { + 'hspace': 50, + 'vspace': 20, + } + + def __init__(self, filename=None): + super(XPAT_Options, self).__init__() + self.load(filename) + + def load(self, filename=None): + r""" + Load the options from file pointed to by filename. If filename + is None, it defaults to the filename defined in options in the + global scope. + """ + + if filename is None: + filename = settings.options_filename + + if os.path.isfile(filename): + self.dict_ = self.defaults.copy() + with open(filename, 'rb') as fp: + self.dict_.update(json.load(fp)) + else: + self.dict_ = self.defaults.copy() + self.save() + + def save(self, filename=None): + r""" + Save the options defined in XPAT_Options instance to HD. + """ + + if filename is None: + filename = settings.options_filename + + values = dict((k, v) for k, v in self.dict_.iteritems() + if k in self.defaults) + with open(filename, 'wb') as fp: + json.dump(values, fp) + +class XPAT_OptionsDialog(c4d.gui.GeDialog): + r""" + This class implements the behavior of the XPAT options dialog, + taking care of storing the options on the HD and loading them + again on startup. + """ + + # c4d.gui.GeDialog + + def CreateLayout(self): + return self.LoadDialogResource(res.DLG_OPTIONS) + + def InitValues(self): + self.SetLong(res.EDT_HSPACE, options.hspace) + self.SetLong(res.EDT_VSPACE, options.vspace) + return True + + def Command(self, id, msg): + if id == res.BTN_SAVE: + options.hspace = self.GetLong(res.EDT_HSPACE) + options.vspace = self.GetLong(res.EDT_VSPACE) + options.save() + self.Close() + return True + +class XPAT_Command_OpenOptionsDialog(c4dtools.plugins.Command): + r""" + This Cinema 4D CommandData plugin opens the XPAT options dialog + when being executed. + """ + + def __init__(self): + super(XPAT_Command_OpenOptionsDialog, self).__init__() + self._dialog = None + + @property + def dialog(self): + if not self._dialog: + self._dialog = XPAT_OptionsDialog() + return self._dialog + + # c4dtools.plugins.Command + + PLUGIN_ID = 1029621 + PLUGIN_NAME = res.string.XPAT_COMMAND_OPENOPTIONSDIALOG() + PLUGIN_HELP = res.string.XPAT_COMMAND_OPENOPTIONSDIALOG_HELP() + + # c4d.gui.CommandData + + def Execute(self, doc): + return self.dialog.Open(c4d.DLG_TYPE_MODAL) + +class XPAT_Command_AlignHorizontal(c4dtools.plugins.Command): + + PLUGIN_ID = 1029538 + PLUGIN_NAME = res.string.XPAT_COMMAND_ALIGNHORIZONTAL() + PLUGIN_ICON = res.file('xpresso-align-h.png') + PLUGIN_HELP = res.string.XPAT_COMMAND_ALIGNHORIZONTAL_HELP() + + def Execute(self, doc): + align_nodes_shortcut('horizontal', options.hspace) + return True + +class XPAT_Command_AlignVertical(c4dtools.plugins.Command): + + PLUGIN_ID = 1029539 + PLUGIN_NAME = res.string.XPAT_COMMAND_ALIGNVERTICAL() + PLUGIN_ICON = res.file('xpresso-align-v.png') + PLUGIN_HELP = res.string.XPAT_COMMAND_ALIGNVERTICAL_HELP() + + def Execute(self, doc): + align_nodes_shortcut('vertical', options.vspace) + return True + +options = XPAT_Options() + +if __name__ == '__main__': + c4dtools.plugins.main() + + From 33c42638e995296d387f9f009395ab520ddd6811 Mon Sep 17 00:00:00 2001 From: William Woodruff Date: Sat, 7 Jun 2014 21:21:47 -0400 Subject: [PATCH 008/268] added two more common mathematica suffixes --- lib/linguist/languages.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index f90e7f17..5346492d 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1285,6 +1285,8 @@ Mathematica: type: programming extensions: - .mathematica + - .m + - .nb lexer: Text only Matlab: From b5c49f6d1ceea9574cbe1888093f3b45e8bb551b Mon Sep 17 00:00:00 2001 From: William Woodruff Date: Sun, 8 Jun 2014 22:57:25 -0400 Subject: [PATCH 009/268] added a sample package --- samples/Mathematica/Problem12.m | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 samples/Mathematica/Problem12.m diff --git a/samples/Mathematica/Problem12.m b/samples/Mathematica/Problem12.m new file mode 100644 index 00000000..2e8e0ac7 --- /dev/null +++ b/samples/Mathematica/Problem12.m @@ -0,0 +1,8 @@ +(* ::Package:: *) + +(* Problem12.m *) +(* Author: William Woodruff *) +(* Problem: What is the value of the first triangle number to have over five hundred divisors? *) + +Do[If[Length[Divisors[Binomial[i + 1, 2]]] > 500, + Print[Binomial[i + 1, 2]]; Break[]], {i, 1000000}] From de4d48b0fe08ac30a412ddc76a0ffa342316e6fb Mon Sep 17 00:00:00 2001 From: William Woodruff Date: Sun, 8 Jun 2014 23:11:19 -0400 Subject: [PATCH 010/268] added two notebook samples --- samples/Mathematica/MiscCalculations.nb | 232 ++ samples/Mathematica/MiscCalculations2.nb | 3666 ++++++++++++++++++++++ 2 files changed, 3898 insertions(+) create mode 100644 samples/Mathematica/MiscCalculations.nb create mode 100644 samples/Mathematica/MiscCalculations2.nb diff --git a/samples/Mathematica/MiscCalculations.nb b/samples/Mathematica/MiscCalculations.nb new file mode 100644 index 00000000..5e34ac95 --- /dev/null +++ b/samples/Mathematica/MiscCalculations.nb @@ -0,0 +1,232 @@ +(* Content-type: application/vnd.wolfram.mathematica *) + +(*** Wolfram Notebook File ***) +(* http://www.wolfram.com/nb *) + +(* CreatedBy='Mathematica 9.0' *) + +(*CacheID: 234*) +(* Internal cache information: +NotebookFileLineBreakTest +NotebookFileLineBreakTest +NotebookDataPosition[ 157, 7] +NotebookDataLength[ 7164, 223] +NotebookOptionsPosition[ 6163, 182] +NotebookOutlinePosition[ 6508, 197] +CellTagsIndexPosition[ 6465, 194] +WindowFrame->Normal*) + +(* Beginning of Notebook Content *) +Notebook[{ + +Cell[CellGroupData[{ +Cell[BoxData[ + RowBox[{ + RowBox[{"Solve", "[", + RowBox[{ + RowBox[{"y", "'"}], "\[Equal]", " ", "xy"}], "]"}], + "\[IndentingNewLine]"}]], "Input", + CellChangeTimes->{{3.6112716342092056`*^9, 3.6112716549793935`*^9}}], + +Cell[BoxData[ + RowBox[{"{", + RowBox[{"{", + RowBox[{"xy", "\[Rule]", + SuperscriptBox["y", "\[Prime]", + MultilineFunction->None]}], "}"}], "}"}]], "Output", + CellChangeTimes->{3.6112716579295626`*^9}] +}, Open ]], + +Cell[CellGroupData[{ + +Cell[BoxData[ + RowBox[{"Log", "[", + RowBox[{"Sin", "[", "38", "]"}], "]"}]], "Input", + CellChangeTimes->{{3.611271663920905*^9, 3.6112716759275913`*^9}}], + +Cell[BoxData[ + RowBox[{"Log", "[", + RowBox[{"Sin", "[", "38", "]"}], "]"}]], "Output", + CellChangeTimes->{3.611271678256725*^9}] +}, Open ]], + +Cell[CellGroupData[{ + +Cell[BoxData[ + RowBox[{"N", "[", + RowBox[{"Log", "[", + RowBox[{"Sin", "[", "38", "]"}], "]"}], "]"}]], "Input", + NumberMarks->False], + +Cell[BoxData[ + RowBox[{"-", "1.2161514009320473`"}]], "Output", + CellChangeTimes->{3.611271682061942*^9}] +}, Open ]], + +Cell[CellGroupData[{ + +Cell[BoxData[ + RowBox[{"Abs", "[", + RowBox[{"-", "1.2161514009320473`"}], "]"}]], "Input", + NumberMarks->False], + +Cell[BoxData["1.2161514009320473`"], "Output", + CellChangeTimes->{3.6112716842780695`*^9}] +}, Open ]], + +Cell[CellGroupData[{ + +Cell[BoxData[ + RowBox[{"RealDigits", "[", "1.2161514009320473`", "]"}]], "Input", + NumberMarks->False], + +Cell[BoxData[ + RowBox[{"{", + RowBox[{ + RowBox[{"{", + RowBox[{ + "1", ",", "2", ",", "1", ",", "6", ",", "1", ",", "5", ",", "1", ",", "4", + ",", "0", ",", "0", ",", "9", ",", "3", ",", "2", ",", "0", ",", "4", + ",", "7"}], "}"}], ",", "1"}], "}"}]], "Output", + CellChangeTimes->{3.611271685319129*^9}] +}, Open ]], + +Cell[CellGroupData[{ + +Cell[BoxData[ + RowBox[{ + RowBox[{"Graph", "[", + RowBox[{"Log", "[", "x", "]"}], "]"}], "\[IndentingNewLine]"}]], "Input", + CellChangeTimes->{{3.611271689258354*^9, 3.611271702038085*^9}}], + +Cell[BoxData[ + RowBox[{"Graph", "[", + RowBox[{"Log", "[", "x", "]"}], "]"}]], "Output", + CellChangeTimes->{3.611271704295214*^9}] +}, Open ]], + +Cell[BoxData[""], "Input", + CellChangeTimes->{{3.611271712769699*^9, 3.6112717423153887`*^9}}], + +Cell[CellGroupData[{ + +Cell[BoxData[ + RowBox[{ + RowBox[{"Plot", "[", + RowBox[{ + RowBox[{"Log", "[", "x", "]"}], ",", " ", + RowBox[{"{", + RowBox[{"x", ",", " ", "0", ",", " ", "10"}], "}"}]}], "]"}], + "\[IndentingNewLine]"}]], "Input", + CellChangeTimes->{{3.6112717573482485`*^9, 3.6112717747822456`*^9}}], + +Cell[BoxData[ + GraphicsBox[{{}, {}, + {Hue[0.67, 0.6, 0.6], LineBox[CompressedData[" +1:eJwVzXs81Pkex/GZH7XlsutSQprwqxTSZVfJGp9P6UYqlyxHUhTaLrq4JpVK +0SHRisGWjYiEbHSvb+Q27rllmYwaY6JpwxgZTI7zx/vxejz/eht4H3PyoRgM +Rsj0/t+1MEPjP1Zc8O6L0tCYkJERTokxP5YLLR+MQy2qZWSzX62gWcaFn9s7 +5sVFyohY4ZvLs5Ya6AheLQxnyIgFe4fllag6yH4zayhMcYw0FU5SRl8bweS/ +wyVFa0aJBsz2VDVrAl8V299DGKPk1yWJllEHmqD42vuI4RopiRvJlYS9bYLZ +a2c4j3pJyS8JbT7eeW/By6ht44vkEXKuxtRu1d4WOB5QmStjSUhO0eMleTda +4EZtHmU5PEyaORsUFte1QFHRg6WjFcNkkZ/bC+11rVC0s8n9nf8wqVGINGNo +tkFRzD3HsYohosXu0misbAdxXml1VdQgKSi80nXErBNo/oP47aliMqAxEGvn +1QlVgoRvezzExCjYznppYifkn+K6CVli8peV8m2BrBNM20LljlmfyXVurK97 +RRfcVCpPCXg8QIIF14a2eLyHn6Y4909//UTSlWsvqm/qge1fVjduzhISa/Zp +jwjPHvCM6ZD7BQgJz9/E/GtIDyRsSj3Svl5ItJtj+uru9cBdE2PXZH4vSeDY +20arfYAT6Z3e8axecnFxw49TXR/gU5X5vDu5H4kfvE0RnxSAsqvDMcduPmFk +jD7rihGA7RmZ5qlYPuEo6vFq7gigR67QPetXPqnm+rJy2wUA0hVVHindZOmu +yQwfy17Y4OU185n7e/LpoNH9bqYQPPrPvwn+2kkOXT/zqim+DzJ72WEzdrcT +SprBJ7l9UD/Fag2c005SXasZhWV9kH51Z/aqhjZSo6dpc3WkD4L1tqolbGgj +JndzqmzdRPD67PLxVrNWIn7e0lS28BMs6Ba9FM1pJv7CZYLign6IeWFYmrqk +jvR4/jOrlNsPoqNsieZftcS5I9qsvrcf8tnmIzq6tcSiVnRKqDsALqbKTVU/ +1RCFoiw1ragBULG3LYphVhNOuIF1yN7PkFMpYVXI35BSTZ2UdWpfgMls07e/ +84QoGUQa8S0GgVn/55MIdixUWyWsOLtpEAIiTazYlglw2e3W2gVOg5BMOVFO +zolAxT/ZsvvwIJAvj7SczqbC+Hex37ubgxD8udJ0tkcmfOa55DRSQ8DwsFzc +6lkIdRyjZa/rhsAywLBSze45xKnVGt/eJwFLB1UN7sVq8O7aRRTqRsFbq7Mr +JqcdTlREeh8zGoeOsKZ1bgF8KDqu4qxtK4c/T0q26boJ4PbpwwMrXRn4N9vd +qamzDy6kTzqOiJmo6OOuteZtPzBaevBFmALy6nNqfwkTw5JA39BdxjPwSH3B +vlWGX6FXmvyb8suZeCtkhRV5NAh2wkNnrp+YhaOXrkQMdg/Bjt54ExZLCdti +v+y2+XcYBt54R1TnKyOH4R+txpOAmXr7Apu9quiaByGbG0dACaRePMmPmLmw +vX84Swpbvrh/M3RRQziRFnP5wih0lB1gupuqY0FCbZyewzcoiS731JeqY4Zj +3+qZP4yB74ygnoYGDcz5GOJ8uXwM9p88XaKSqonn9R26+EdlsMLPpMHeaw4K +rc1neaqOQ6OGqXLQurmYKexKyno4Ds8LLqSZKmhhhvxW6cjWCTjNNHaoe6+F +pidKHHi9E6DEC9vqXzwPGaH7eO6hkyDMNkhMD9fGsUD+Knv5JCQu1VF86qKD +h3vll15HyyE+1bfKS18XbTje/KqZ38E9cU+DikgXNYxUk++f/Q5jG7Nk6a/m +49yHih6fJ7+DQLghtCxKD9We/pFtf2wKMtir5td7LcDHFdUyrmgK8i8Fqfst +Z2H5rdC2ZGMGRrns36YgZWHfc/sj7Z4MNOfdzo2qX4jaWiITpSQGcpal5ddv +08c4nrYPVjPw3OurnG1P9ZGdfship5yB2+e7ZNUsMsAzD/MLtFcycb1/1W71 +Kwb4qn7LsIcnE9P1vBfVSQ1QUbd5z75rTFz05m7Sjt2GeHJ9UIrOCybGLy8z +bn5liLETFcsURUz0lSi+5RrTGL/GlX1jDoXeRcP6V67R6DRvQNHcmsIjF5wn +7RJoPPVD0ph42kHOxe9U/qDR/97LrjtAYbQ0KC4+iUa6N+b4nPUUFqyTTSTf +pDFTFtw6bEOhrHSqPTuPRo1786Pv21IY36xytbyKxo0v5z7UdKEwNfPowctc +GuUeojTutDMDG2y21tIYpHQ98NxvFD7Sih+vbaBRfeZZ6YArhTx3zYMtbTRC +CmNNqTuFRgIdm48CGveGmxUf2kfhyuIw1h0hjasPiNIWelFoealL5iOiMZKf +HdA6bXujmw/6B2gk7zZK2PspPHlYnzU0RGN40raf1XwpDLc6L/tbMv0vikor +n/Yl1Y+tgVIayzZ/kIT6UcgpzIwZG6Px0d7RwA8HKcyIUPR7Nk7j8sLHN2/8 +TmGeo8+G8Ekab1ncfmR7iMJiw8oF1t9pnF9RQuTTfiVZIpuaonFCb+xJ0WEK +/wc13qzo + "]]}}, + AspectRatio->NCache[GoldenRatio^(-1), 0.6180339887498948], + Axes->True, + AxesLabel->{None, None}, + AxesOrigin->{0, 0}, + Method->{}, + PlotRange->{{0, 10}, {-1.623796532045525, 2.3025850725858823`}}, + PlotRangeClipping->True, + PlotRangePadding->{ + Scaled[0.02], + Scaled[0.02]}]], "Output", + CellChangeTimes->{3.6112717778594217`*^9}] +}, Open ]] +}, +WindowSize->{716, 833}, +WindowMargins->{{Automatic, 214}, {Automatic, 26}}, +FrontEndVersion->"9.0 for Microsoft Windows (64-bit) (January 25, 2013)", +StyleDefinitions->"Default.nb" +] +(* End of Notebook Content *) + +(* Internal cache information *) +(*CellTagsOutline +CellTagsIndex->{} +*) +(*CellTagsIndex +CellTagsIndex->{} +*) +(*NotebookFileOutline +Notebook[{ +Cell[CellGroupData[{ +Cell[579, 22, 224, 6, 52, "Input"], +Cell[806, 30, 211, 6, 31, "Output"] +}, Open ]], +Cell[CellGroupData[{ +Cell[1054, 41, 155, 3, 31, "Input"], +Cell[1212, 46, 130, 3, 31, "Output"] +}, Open ]], +Cell[CellGroupData[{ +Cell[1379, 54, 137, 4, 31, "Input"], +Cell[1519, 60, 105, 2, 31, "Output"] +}, Open ]], +Cell[CellGroupData[{ +Cell[1661, 67, 113, 3, 31, "Input"], +Cell[1777, 72, 90, 1, 31, "Output"] +}, Open ]], +Cell[CellGroupData[{ +Cell[1904, 78, 102, 2, 31, "Input"], +Cell[2009, 82, 321, 8, 31, "Output"] +}, Open ]], +Cell[CellGroupData[{ +Cell[2367, 95, 191, 4, 52, "Input"], +Cell[2561, 101, 131, 3, 31, "Output"] +}, Open ]], +Cell[2707, 107, 94, 1, 31, "Input"], +Cell[CellGroupData[{ +Cell[2826, 112, 299, 8, 52, "Input"], +Cell[3128, 122, 3019, 57, 265, "Output"] +}, Open ]] +} +] +*) + +(* End of internal cache information *) diff --git a/samples/Mathematica/MiscCalculations2.nb b/samples/Mathematica/MiscCalculations2.nb new file mode 100644 index 00000000..84960c53 --- /dev/null +++ b/samples/Mathematica/MiscCalculations2.nb @@ -0,0 +1,3666 @@ +(* Content-type: application/vnd.wolfram.mathematica *) + +(*** Wolfram Notebook File ***) +(* http://www.wolfram.com/nb *) + +(* CreatedBy='Mathematica 9.0' *) + +(*CacheID: 234*) +(* Internal cache information: +NotebookFileLineBreakTest +NotebookFileLineBreakTest +NotebookDataPosition[ 157, 7] +NotebookDataLength[ 200462, 3656] +NotebookOptionsPosition[ 199657, 3624] +NotebookOutlinePosition[ 200002, 3639] +CellTagsIndexPosition[ 199959, 3636] +WindowFrame->Normal*) + +(* Beginning of Notebook Content *) +Notebook[{ + +Cell[CellGroupData[{ +Cell["\<\ +How far is the Earth from the Moon?\ +\>", "WolframAlphaLong", + CellChangeTimes->{{3.6112720079145803`*^9, 3.61127201386392*^9}}], + +Cell[BoxData[ + NamespaceBox["WolframAlphaQueryResults", + DynamicModuleBox[{Typeset`q$$ = "How far is the Earth from the Moon?", + Typeset`opts$$ = { + AppearanceElements -> { + "Warnings", "Assumptions", "Brand", "Pods", "PodMenus", "Unsuccessful", + "Sources"}, Asynchronous -> All, + TimeConstraint -> {30, Automatic, Automatic, Automatic}, + Method -> { + "Formats" -> {"cell", "minput", "msound", "dataformats"}, "Server" -> + "http://api.wolframalpha.com/v1/"}}, Typeset`elements$$ = { + "Warnings", "Assumptions", "Brand", "Pods", "PodMenus", "Unsuccessful", + "Sources"}, Typeset`pod1$$ = XMLElement[ + "pod", {"title" -> "Input interpretation", "scanner" -> "Identity", "id" -> + "Input", "position" -> "100", "error" -> "false", "numsubpods" -> "1"}, { + XMLElement["subpod", {"title" -> ""}, { + XMLElement["cell", {"compressed" -> False, "string" -> True}, { + Cell[ + BoxData[ + FormBox[ + TagBox[ + FormBox[ + TagBox[ + GridBox[{{ + PaneBox[ + StyleBox[ + TagBox[ + GridBox[{{ + StyleBox[ + TagBox[ + TagBox["\"Moon\"", + $CellContext`TagBoxWrapper[ + "Entity" -> {AstronomicalData, "Moon"}]], Identity], { + LineIndent -> 0, LineSpacing -> {0.9, 0, 1.5}}], + "\"distance from Earth\""}}, + GridBoxBackground -> {"Columns" -> { + GrayLevel[0.949], None}, "Rows" -> {{None}}}, + GridBoxItemSize -> { + "Columns" -> {{Automatic}}, "Rows" -> {{Automatic}}}, + ColumnsEqual -> False, RowsEqual -> False, + GridBoxDividers -> {"Columns" -> { + GrayLevel[0.84], + GrayLevel[0.84], + GrayLevel[0.84]}, "Rows" -> {{ + GrayLevel[0.84]}}, + "RowsIndexed" -> { + 1 -> GrayLevel[0.84], -1 -> GrayLevel[0.84]}}, + GridBoxSpacings -> { + "Columns" -> {1, 1, 1}, "Rows" -> {{0.3}}}, + GridBoxAlignment -> { + "Columns" -> {{Left}}, "Rows" -> {{Baseline}}}, + AllowScriptLevelChange -> False, BaselinePosition -> 1], + $CellContext`TagBoxWrapper["Separator" -> " | "]], + LineSpacing -> {1, 0, 1.5}, LineIndent -> 0], + BaselinePosition -> Center]}}, + GridBoxItemSize -> { + "Columns" -> {{Automatic}}, "Rows" -> {{Automatic}}}, + ColumnsEqual -> False, RowsEqual -> False, + GridBoxSpacings -> {"Columns" -> {{ + AbsoluteThickness[-1]}}, "Rows" -> {{0}}}, + AllowScriptLevelChange -> False], + $CellContext`TagBoxWrapper["Separator" -> " | "]], + TraditionalForm], + PolynomialForm[#, TraditionalOrder -> False]& ], + TraditionalForm]], "Output", {}]}], + XMLElement[ + "dataformats", {}, {"plaintext,computabledata,formatteddata"}]}]}], + Typeset`pod2$$ = XMLElement[ + "pod", {"title" -> "Current result", "scanner" -> "Data", "id" -> "Result", + "position" -> "200", "error" -> "false", "numsubpods" -> "1", "primary" -> + "true"}, { + XMLElement["subpod", {"title" -> ""}, { + XMLElement["cell", {"compressed" -> False, "string" -> True}, { + Cell[ + BoxData[ + FormBox[ + StyleBox[ + TagBox[ + TagBox[ + TagBox[ + RowBox[{ + TagBox["239\[ThinSpace]262", + $CellContext`TagBoxWrapper["StringBoxes" -> "239262"]], + "\[InvisibleSpace]", " ", + StyleBox[ + "\"miles\"", LinebreakAdjustments -> {1, 100, 1, 0, 100}, + LineIndent -> 0, { + FontFamily :> $CellContext`$UnitFontFamily, FontSize -> + Smaller}, StripOnInput -> False]}], Identity], #& , + SyntaxForm -> Dot], "Unit", SyntaxForm -> Dot], + LinebreakAdjustments -> {1, 100, 1, 0, 100}, LineIndent -> 0, + ZeroWidthTimes -> False], TraditionalForm]], "Output", {}]}], + XMLElement[ + "dataformats", {}, { + "plaintext,moutput,computabledata,formatteddata,numberdata,\ +quantitydata"}]}], + XMLElement["states", {"count" -> "1"}, { + XMLElement[ + "state", { + "name" -> "Show metric", "input" -> "Result__Show metric"}, {}]}]}], + Typeset`pod3$$ = XMLElement[ + "pod", {"title" -> "History", "scanner" -> "Data", "id" -> + "DistanceHistory:AstronomicalData", "position" -> "300", "error" -> + "false", "numsubpods" -> "1"}, { + XMLElement["subpod", {"title" -> ""}, { + XMLElement["cell", {"compressed" -> True, "string" -> False}, { + Cell[ + BoxData[ + FormBox[ + TemplateBox[{ + GraphicsBox[ + GraphicsComplexBox[CompressedData[" +1:eJxcnHc8lv/7961K0lCUnRWl7JHMt7JCIoRCGso4r+u0QktRpIyGKCoaRkap +bNFQUQoVSRlZITOJkHS/rvv+fP+5f//8Hq/Hh+s8jufxfh/H6zgvfSX30Nvc +OdjY2ATnsrGx/v+wEU/7SFO/YUOKbGH4LpoEPBBMiPjcb6j70EbK25YmdcFB +U2u+9BvKxbtfdz7CJIXcHGcqoJ1lDalFZxnksi4t7NjcbzivYCPbyRKKWL1Z +5zQN/eiozmB4AEUuSC1/caGl3/DCduc4Q3sGyWzY2qLR2m+YkhR6eOAjkzyS +pyYaoc3/GAj4HqCJ0+Z8XUZbv6GqcrJn4nMmqamwVF7ytd9QJ2Ms9Uwig9Rw +8VnfgS7McrW78Y0iVf1Fvnrt/YZncyYcxR5RJGFtLvkKHap4MvC8AoOMqn/Q +CezoN/QLi+9o1GYSqUTjbqHOfkOj6GrBUGOaWN68GlsK3T4+P1pQliacfmLu +1l39hsun8pUNZxnk3PWRvp/QNV66JcoVFMm4MHTlbHe/4Zb30xPV5ykS364z +ofit39CJ42NTNJ53tJ6yfwfNXFIyv3Ylk/yIfd2+v6ff8Lpc+POzvDTZkBYo +xNPbb1iZvGJ3AUWTRae2htyCzghf4ut2nUnY/r//UznCp6ODepx28K88fZgm +UgKvTJuguRKsZjaMM0nFU13DQNQjhO2Z82IOJkm/VWyzEPwzm7oCY4UZ5Cdn +7YZM6L9n15gMoB4/Am8uMkE9Iv94sp1GPtf/qL7rgj57QkDQX4xJHv5z8YxA +PWSKtN/8NacJj/Z5ISnUo7h8aIOwKk2WRZwofAy9h8OpUH4d6tOlSJxRjyfz +4zakrmOQ6qDu9p/QKisin4g+o4hilJpTLOoRXXKl7U0zRYzuk8fyqMfN0yb8 +NukMwtO7YMkraN663d2un5hk/XWfDV6ox6/4SofZPTS5c6bl0Bzwd/GfN/dV +OpO8Pj034yb0l0SfQx2mDHL18vBTfdRDcmHz69IzFBEvuVTVAv0y4dQPmVqK +cO9oSDuOejzMLKzISmEQTRWRqyKox8noIVfua0zCLyxxrBh6rjrvcArOfyp/ +l8V21OPkJbHJyjU0CTS+qzIEffXJl8GD7QyypD0mRgD8swMtLXQDaWKx9wcz +F7po3/ePB/Dzr0R3iFmjHrwX/g4M6DPJPXuXoV5oi79b1q+2YRCjG+JZJ1CP +mCmuPck4Pysle9UkwH9E72x+/wWKrDgnU10KXXRgRuRkEYMo9jdKuaIerSvv +rYwVpske1dnTM9D8/Y9v7rWnSeGBpKl41COG+8TbqENMsqVeT0sT/Gdsik/l +uTKI5ePDV2qgSXPw9fA6ikyXHvzmjnp8U7eWbHhJkaGhoH9c4L/v8ivXD/sY +ZHbhyKoU6I0Bh2o0o5lknUjzoo2oh/l8jWd24HNYQJerHfqJYdSXc0NM0jPD +N/cQ6rHNYp3KQ/CNFx5pEAR/d44FT3yvU2TPKsP7edDfV271H89EfxDjtnJA +PfZVKU2dwPOcOIwmx6G/vnhYKeHKJGENv+6dQz12OzonL9GjyXBLjqoy+P/J +qOhkR74V+2Y/VUF/mfkxw9jEJNuWx/e5gb9d268PUkyaTFamSLCDd1yy+KRJ +KZMkjywrVAXvI0X8krt7KXLjwLHX76E97kfN8/OiyNO3O797g3d1QtSFAi4G +kfYwbOQF39oNIpY6x5lEU+Bb7j1oLl/7ky37aPLQUCrbFLxlfmWJu7LRxCd1 +v38v9Cb5NdmKOB9bfq00CwPvcFONtJv4PDMVqzWC4D2g/PuObil47Bx9Wwi9 +bnt3ssIsRZL85h+zBu9etuGl08MMsvzp6ukf0Eo+juTVcppsXDl330Xwrt5w +cfTOVpo0/j06Ig/eOW/fOJ60Z5KcpX9Mq6E9t5auSpqhyE3+4Zx94O0re8FF +PIIiXyz72uaA78nET9SdaYosc/upZwi+hd1zuXhx39J3WVh0QBc1Lg8/4oP+ +aynkfhR8d9aeXNs9wPzv/H/57/y7kONL3xZygDeJKmHr8KKJ29lTHFehDb5k +qKob0uRttccCPfCvu+w1bunCJKq5SjofoesvVNlcZTAIc9hkDwX+uY7SIa9v +UURz4ozJQvBPDqiM6AqhSIOjmGk6tFlRwbadEQxC7Yr7txn8VW0sFzRPMkms +osaT79AD6iLn/XbTJNJR7moo+I/MvmEYpTDJQgtjdWnwn+Iwvlt4hEGiO4x/ +lUL/ZRP/RH2mSPuHhGwb8LfNLC1sfEyRiuhlEj+hh47VXu43Y5Dgm+33z4J/ +j7NMyfu9TCK34/yUAvhzHa8S+rOdJnubvTfXQKuMLBFrQj8PKLpcsA/851+w +cpyqZZClziNtc8D/vDDbxsG7FDm187JMCvSJiVizliSK/JyVlNqEeix5cbJm +N57X79Uk2wVtoDVmMYV+UaLy1fQI6mEsrON/FvOI/xmfrBjqERtX+mzBfpp4 +/JJdWwDNZ+ofWueD/m9Wz2cF/rzD3cXn0Y8WDqvlD0IfOXbiAt9nzLvNPZwS +4H2Nmah5mY1BXhekhZZDX6kcdKrF+W+6OfvHEbzPZeXpb+4EHxVt20noVIq6 +5GrFJAFnb0YngbeTJqfWkBNN2vScOtXBWz1eN+2eKM5n/Bh/PfS3sqSQ1Dng +T8kZ0eA90snmHybIIGfshMLngO+Utc3Sc5jPZv5L425BP2iVLUoeoAjNl3Zd +D7wzmv/Y7atmkPO2wuEt0MvD9xodnGISXddHViHgPSAletoQ/efJ8xx1QfAO +ThsS9g9hEu2aE78LoB/U7nMKk2QQ8e3DhTbgbdLJOKJ+iiIzYfq2o9CzNSfP +reuiSOqrCEoRfJ/2zOy5W8IkrWUa3W+hvWJUbfO8aRKiHOLoCb6vrd11+hfS +RPCX4bdRhW7D/MWpvo4e+8mNu1v3rQZfAS+dC7cO0URT17n5OfRgruiBPXw0 +Edk2MXoJfM/wv+YjxzF/LI0k1cBTRDt7Yk8G5m+AsIkfeH5WsT+6SB2/r1ll +vRj8dHuSa8NNaRKzU1N3M/i13l31NduYQRZczdVth/ZsfUxlVVKE/7bdysPg +Z8ambW6Ifn7q8N+kPPCyv1nNvygP961llcx28Jrh9l39COflwlbeJz+h2Xmr +fKLfMInjxujtMeBV+PxMYaQ/gwh+Hq5eCz628nUaiZhHZKRf5xW0wpKtZubo +VxZBPMtTwefvQfk2DhuavJ40NdjEmo+PqjknN9FE9OPHU1+gddq+/RrlY5Ku +ru1P/MHj+6qXE2f20kQ4wdDDGDxePL2a7I54g4Ts+Xqg1yfJFwjg/N35XdwY +Aj5zXv8KK4N/2J9s5iQJPhcb/L3eZzHJZMrq+groLxcSMqs8aBJhPOC/A7yi +Ri2ss7uYJOaooGU8+By7kFHp/wu8F52skQefQbUFSznhR49uejf3DXQev/ej +9/wMcm3denoOeLhEa3PkqNDEtN36UDr0li/lk28MaCLuePBKG/jwemgP8rVR +RKZ+6FYQeFzzyjfgjqRI2G+XxXbgIRovffDITybx4dj9cBw6sk05WdKfJuoe ++b7nwKNsRerdTZX/65/V//XPLaRwrbfFFPy2noDPTjV3mvRft3p7Hrx+be6S +uwe/VSvpE6aGfvlAwOO1HcUkv5oFO99Ar3Dm+tqAfhYmsFN/D/iZ8ERtTEV/ +qXBrruMEv5zJEyX5hyjysDxxzjXokjnz/WvRb3mSRocMwE/ZQySUvY9JUnPe +7WiHts5WsXqP8/Hj3ZB3EHgeFCwYYD5gkqG5mx8KgaeQveiaG/D36/zX3noA +3RL3w98NPBpcM2JNwXNudtO86TKKrHPefb8Pen3j6tN6Ogyi7u0UeALnsWxT ++bdzW/G8qf5hafAlF+9o6WF+OT7mHHwO3eIbYxcsRJOySztidoD3+QdfB671 +MMi7oyN7Z1j+O+PwyTWF8POBFW2XwH9V94uU+niKvBhR5N3A8gt719n+1mYQ +tRSpx5+hHWQas/YqMYmdmx2/L+pxIo3LKht+SVbtRcoy1GPCuPpNgSdNdHQf +NWRDu/QYTq04zSTTu/3SjcC/b7wluwr++gr77LFO6EVneitX9TJJ98G6rOXg +rVC901B1IYO0tZS45EH/funU/pSmyD5e6/Ct4M1bH7vS4wNFHicU8g1Dt3HF +a/3QYJJlL/8dPg/eHEI7Lh60o8mvR7+OrQXvwDXx9D45mmQtLP32Cjq+/VBS +ryD4y62tcAfv1Ps9n/2kGES+Z1Z1htVP8wb77DGvdP5JBV4B7xtvvpoXoJ99 +af+poA7e/15zBAoVw3+IxZl/gP7urmB5+juTlP4VMAoAb0dn35GVmJf56Uaf +FoGvQ9Th89cvwm9lbarLhj7Fq+0/ocYgLYHDOmbgnT/bHmcB/7Aw2XNhL/Ru +Va6nd5rgF2feca4C39i+oKWzuJ/BA1n3K6Bzl/49OMzqN7eUP+wC33S/Z4lN +IjSpuhYUNXK21/DOAQOlAzJepKlyeFIcfHf7p0wooX8+3SqbVsLab+TPZoSK +0UT5EE/tWfBd8Xq8PvI0RS4VxmetAc+EsqSP6dcoci43WN0DPNXozoaE1djf +8vcMzgG/Oy/OyzvjfDFWaJcagNfwv+EHStsYJGddfH8j9G6zdLaL1RSZp+TO +4QN+l4VfFpyFNjQKdMsErx//bjt43mCS3CMnhCzBK7V24FIo+leEauru79CT +qzJXxbYwScrKrYonWf3Tabm98xkGaZwa3ioFPo8Dzx9Tx/m04Vk+UQ69QLCu +deVDivSkHe9MBJ+OicE8WzOatHhNF28Any0PTMaOWtJkRNRL8T10FGNgMlee +SYT/jtt6gUdw48zXAZzXlgr5xbrg0b9z2/LKLxSJJp5DzdBWq3a2bUL/VN/D +43YQfPqUCE8J5q0R58sVK8An5Ae1xyieSS5/iXhWDC3c+mzMD5937XnEYhvw +avI7UsSF/sXQEq2OAp92rrfHW/+gH6d4HJEEH2/V0NYU9E+6rv37U2hmgdzd +4/Ph1ydy1f+AV/m3bY99V9HkxfFs5jXw8eVZfbAU88tdQ8unAXycD5SEcwxS +pHNsSI4JHkde3bJahnpWr72Tbg4eh6p/1vh/Y5IFKo0hA9DH/nAnf/WjicmX +/QPh4MH9K25wGfzL/5u/Df/N3+3EbGqdFC/4bGTnTI+FX20MLNVKg+5JNuOy +0oB/rVKNCASflWv4f+QlUiQrSqt8OfiYPjkUp4jn18ho8NmBR6TWsfj8+TQJ +vp8oPQZ9fPGQoPdOmgxudTN5AR7iTAvtQw047yYRr3Yif42tzdFi2GezSjW4 +tFjzwyhkSA4/z5ysT2+EPu3COHdhFv1HZ8RpMav+seFsuWkU8SeUVyZ0pVwd +95ub2E85vY6Es85DyZvIGswf9q27cmSR74vr+h8iXGhyVkn9mAPyUe4ZfOkE +HvmxF9KqkE+YTpnyDdT749ZNyamI955tTus++KFXT8pN9FFPv4NfwosW0UTh +vnRlMOLXFhDhvbiIQfoq1D4tQvxeSoyAz5jn9r3s93OgX4wwpCPHKFJ/5uaT +HtTz9rRLhTg3/NVjN6dI5DPoOcO47ECTsZHylU9Z8/DcOYNFixnETWNYZSfy +8Tx1nFoTTpGNsU9XfEI+Sg9lqBXYv6jHb9r8kM/dO/5e+eDhZcFr8Otdu+Gz +Iu78zTl7iMel+3UqyO+V26e1Aui3c9d2CqQgvznWU9kChzGvO35e1mX5ARnj +jjTcHxvtMoejrPr8qpKOwHyWKF5bIIh8p21MuN7p0uRuiurjbci3bqcz7+oN +DOI1vzr2O7T/YemErucUkVxhpHuK5T+/3Wv7XU+RfN03im7I70KdyFPWPrej +eNhYA/lEi3z8tyaGIkoNT0I/QMv94ZK8id+/bxa/+R7yc7EX2W/jiH07Iv6l +JfJrLDq0vWA9TTbHGDZ3Qfdbtf9Qm0K/qS6SP4b80ryjog/jfOz5STR+NLPu +U7H+JJMikRveJq1FPmnFh/1cnzLJDvfq7rfQZ0y8d4nC33gcvb5SHfG2/r7H +sR/37+uex5mLEa9NdFhMgg5NqsnEyfvQXibvbG+p4fwffvi0D/UR83q0TfId +RfY/HBILRfwvOE0frorGvK4f+PYP8dfppx4foP/3PqP0Pz+iR7YVl8b/gh+J +3PEm0nkPTXIz1B5EIX7BEOE0XvRTq5qxckX4D43G/XlN/kxi7xejUQW94dmt +tNEwBuFd477OBfnptu+/GZcH/7X8FP8/6Dzttm1iQRSR+vGpOwH1dMhV5Yzc +zSA7iiS+aSNf53GOsktfmeS+d/KdZmij+mIVyQM0kVloY+eH+q5Py5Q/hf29 +tdt8lB/1lJ+d18t/kUFmdMSncqDT9rlJzXZQpDZV6cRG8PqafeD+AviRjk2R +k13QzhyNs/vVsY+9E3A6gvPNvydzr5oxk+zdfOW7OPhtOleyehf81ofcrXpP +oNvyLHxercQ+y6l7yB48GwzvFDB/MohyDJ3+G5pt/4YtudhfxLmaHp0D38Nf +dllsjYP/8dBgV4f/8HvItnwjnudYUjX/I7TmVdMvV+SY5Nbv2Glv1rzsecF9 +dRnmG3W9ZRHOi8ZPnwQN7BsybuFrMqDV16/R0MU8Thh+9sMA/Ie2PVv2DPfD +ZUHXnlboM4uvdigNM4kxr9EsH/je4Hre+GQZg3j8eG5xD/rQHcNl2/3Qn55N +vjYHb4sDM+eCMN8UX//60QftYpvJU7KGSfZ0KvpFgXfvil/JJdY0+Xe44o0s +eF/2f2b3ZB32u81itc+hmX6eq89Igf8cBfbd4B1y2WmhtxyDTN8bPfMb+py7 +tl3JE8wf4+wDceCttrHs0tOvmM+vhAKVwFuNRMz9dQ/+MWyrQg2061VTQf92 ++IUtz/Vp8Nabuiq9GOdN8cr51Tzg6/SPvHl4jUlkhVY9SodmZsucUNZjEN3T +zJBN4F02p02RM5L1fvd4fwe0gLtR037c56UrArdKgK+ul4ZX+m0mqQz7llAO +7XSbS9UU8zupef7ineBrfWrkVZ0U9nVb/U3C4Dkv2CZzIhjz3WnB2Xzo+VUl +jwOkaVIazV8WDp7bdv9NWob788Vbf0QG/OqPLX1pdpkibW8z1u4FP6uFa9ib +8XkO/sra7ODl8kmuZ9c21GtcZ0obfMbv2F71dWSQo+OnDT9Av7uwuG5BDUXY +Dg6NeYHXyYyz3kqvKCKRqboplbXvPopdap3AJMw3Cvym4LOOWrLWG36NTebH +w27oZjVhtsWYlxtjlYVDwKc6zVnG5BKDaPLQF8XAQ6psi7gt5t2Xy2vri6F3 +iZ67w3MP9dErfXUJPG5kyKx5uJEm327Xj6uDx+0cLu8nqH8TUT/5Fjpcc3h6 +0XomKTxjnOwOHvu/BDvNo2ii55SyZz14PDyTd3UZ7ttyO//mRugvXmM/d2Ae +HV6Rl+oDPk5d37YUYd7ka3D+5gOf2BOebcfOMknP74LiPGivf2u2X8H9zgiz +c7EEr+Nqy7xVsN+7LBeffxp8stwqfDP/USTYY+cHUfDJUdHdNIz+5yHg2fwI +Wm/O3PRGTgbR2kmtmACve9n2/0TFaXKyztHzMviISbnkPbCgCXeqkHMd+Jy4 +Xyfohvm2kYvp5QkeYb+FGq/Azw4bb/lpDB7z9m7O2duGffjVEvce6Jm+cxfu ++tLEehlZHcq6n+0LeI92wv+HH6XmgUesiWt9EYMmV0+kiN2AjtMNFjFEP+7+ +ohvgCx4BT0WK9JOx35MO9qXgEX5iNOxdKEVEN+7j3or8573Y986UHfHSB3yH +oTWlTjUwXbH/CNpef4L8Y4ryucca4RejF5VuR77Bd9Yueon75cHTNauK/I50 +3DrJ50STvu8rJ99DR97bxh45lyZ5FvQ1Htb3EQ0bb9ZkUmSmJtQ0FVpk3bn6 +gusUoZJSd59g1d+Lc3Yt7jdPpNZ3SeQnkjiz+TXOl2zZyaptyEe838PgYABN +9G9djatAPktC7YyLUF8Zhl98CuItf/GJJ9OZJvUhUZc2oH6Cmn4bugVoIha7 +ak4A4uefiTE4i35UHCWryIP4MxVXf5FDv7RSOHszA3r7fnNG3Aj202GXWx2o +36WnbpzVbDQJWbTI7iTySQxVyYnFvExwTVnwCPWrUjpsaQY/+8SYGbAd+Tjk +TYzdO0WR86v+/H2PfPpTsnd9w/k8+DtVhIl8JAzW846BB5ckm7AC8mG6n2lr +xn5xXn+QMwn5nFbtaMs6in054WrLetSnNVht3rMcitxwGLAKQn5JFxdZV2+g +ydqgKQ5+5Cdyze+7PO7L9WPqf7cgv0auZ+OeBgyi/aHsWzcr33W+7KYvKSLs +8lbhOOt9ul/ApWvv4feig9fsRD6mlMmvN9jvS14xI5UR/4jUh6SOWIoU7/7o +WgN9m/fcsV3Y52a/1illIh/uHimpLOyHT58wOcyQz/xXGeE5+jRRfbBA+St0 +z4qunxfnMImZw7yDwchvh9kdwzD4v8E5FtIDyG9jzMQBFYoiv715Dssin6sm +QcOXC5gkM2yquYr1/nTwBJcf/IWW8flAJdb9UrfOyS/Gvlp1OJoH8dZHt5ne +1KRJ5PnbIdnQ3D556w9o0+Tw97icLtRD4PvhFKFPFHlZwXA7ivifiQ4trj+D ++e4t+3Ya8WfH9sdG4P6suuTZG4/43gnkZG01ockku431AcS3VT23Kz8D/i5b +NYob/NMKpSUsUY/EIY6F3xDfLdOHFoHwY85ZWhaF4MswP53W04x+JrjyuiXi +XZu1eVdfOe5Hpt6v1YhvfcJlMxHwantblPQK+otSndZqzFdfipZkR3z1buWd +PPCPC7/nsCex3m8NrfnlcIUiYtP9ewTB0z1Rml0TPFw/SjlvRrzTo26qOZgH +dq9z6WLE69/le3ctgyIvMt6djEd8YxmK7irww99nZJWVcT7sv3qcnY/+v0OM +t4UN8W3hSDn2E/7jz12PzYcQz80nJo+U3WhybD9zyhLPt/ndNRmH8ytv51Nd +BV7fD5eYhHqBt6dD/D7E89ctzquDnya62in3pBHPI+bQJk+c33R3tvZziKdF +eZh3Ngz3iX3IXZHVb/9I9XDdogi5uFmPgfgE31+9s02RJobjl5J5EN/ogymm +I/bLlr234prBc3RWV1UQ82bR95YlB1n1j/n379tb9Ku19eI2iFdEpWr2Ms5r +0HfmQjnEW6Ty9p31RYq8Osom9By6YNniZRqFFLmyyHgmGfGPzlFN2rkF/klF +8qg+4m8ujDyijf02xCd9Ps3aXzk7sy+g33Mo7PrXjviffq14vQ79xKzcoboc +8fquz7ESwz7a1HhQRpZVX7XKIBv0+8MXxmzYEE9fVEJZIfrVXOVZ/5vQU6M/ +NZ9vQv/sYnzzY/n1xLVVMdjnHidevfKD9X5yYVgWH/pXDtX6aQme//tRRrC7 +P032NZ4LFgEvnln21GjM85B5c4Wd8Pz5d+N3SC6lyS+22UY31vvUCoFPwfD7 +v+ZG2jfjebe3zuQvmWBi/+fPyGR9X9154r4E/IrzzUOPH+DnhTIqLp+apMie +8J83g5D/ibI/5pbjTPJ23u5wTTxfynnVISv4N8115raGeH7VuU8+Cdi/OMRi +3ELxefu2h/42NKZJ+TPl4w6oT9XD31I9qgyy+v0j8zP4/D7lg6s/4b65eQZF +9OHzf4S3DjcMMsiVvKxXWvjvlh8+3DXE590I6dT+Cf+u9Dd45SjO28V16dJn +PrPePxZ26djQZNHtgp3r4NeDNfffSQpCPuWmX19Azxsb5T4RwSAfVL1u70B9 +eKsbrKNQ32yfpsIZ6KLm6JT3BymyY36Q3SXEL3vK9M2+nQzCYVLspoX48wfF +4zWamUTTInzrZ2j9A0elN6Pe+tlhr2icvysD0tWLnjDJx/o355civ4cf/hrX +xTPIvhuXU7Ogl0bu0qnrokh11dikAfIRW5d76hLmRVnR1Wsd0KsTc0r/KDNI +GEdAdTDmhYl/itQcAv8zOrxflNVfF1ZI/DClybk749/KWN/fN8iH/MB9fFi6 +bmQb+tXvM9FJDpPYV+NzTcehi3q1OX+g33ZW75GPwflJs1eQXIjz7ZZafEQF +fv3RZ6+gXjzPyyQp9wP0B3s2vzxpJtm8KYfhifMlMG9Vz9Il2Me5eY7wsr6v +N3txZBz+Xcivvz4VmtEmalt7GX4h/3u8Hvgb2gszUlF/ct7+4xfo5R9+DeeP +Mkmgw2zGYtb7HEa9rNwKBlGYflWRDV2WWJBzw58iW0S3UGbg7amiZna8Evtc +Z5xbD/TVw3n+1xEPj2/lUCR4RxxYUdCM+3dqR6afDHhvSHSoopTQb3utNj6D +3qGze8QJ+8fHX3dvuIL3AM8yud41DLJnmbfGOOt9mH7HfO+nFFHxoNvPs/an +Y1kbKlsp4qWrIKwA3ikHkv95ZDHI1fy7ydXQGgV2s32ot+O4UBkF3qGmD8oj +cB8Gzmu+nwe+OzakepTfhL9/J6CSCl3uV3OB2sgg1Ll7Kw3B2+CM80wb/PuO +n/Odvnazvm/b1/0S+6pMqtm4GPhu2eDb1JPCJIxaDp5H0Pe9uc/7w5+sDA68 +6wi+XtERbhayNPkb1DE6zHpfVixk+aGZQSqE9vetAN85Dcn5GUHYn9uOzTyA +DkywMWfi548nCKmdBF9aIXTWEfP3aOXFC1Lgae1SW5Z4iSIROw0y3MDT1Ek7 +7AX8ZMu2FR2z0Dy7x5532NLEvrvsihZ4Hfo75/xFnP9uJ/ahOujTmkaFZrUU ++Xv5AeXBej/EZFSyV2H/aT6ffxO87q7g8tl0gUm2+J+6YAReZaVSE7twP8tF +E3Z2QteUbmNs/c4kl4wlzx8BLyVOM8vXiQyyf2mumghrfrnmMPdcpUiya6Fh +IbS0+MhCNviV5shPOhfBh/3E070dBjTxIuSSKni0Znalt2P/qNmWqFANfT9x +5Ii+HpNwWTM27QUPlxbN5QLwr8xUJ16NZtb38ftctbvxeS7B2xqgb8UYHNuP +/izmN8+UCT5Ly4vpwvkMMmh1a/9i8Ljy6sA14XAmiY3Yov6A5V+Ln1Da+2my +bo8Olznr/TX/1xdVM0xiPyflzinwEWw4ErWKg0Ha3zYcEwYfiwdCgQLoV+5a +CnYl0PkKB6U42BkkI6Y6cgy8RhZ+SvFj/X1DUG7PJfBxuBe07S7O946dPB/e +gs+vf0Yr//6miB/vvQUHwGPuuY+JO+Hn2epXXtkEHsulVzcVfWGSf8sUm7qg +v+yyjeKHH2nIzakMAQ+jpioR5V4mUbVM5ZsDHurfF3hZwj+GzFl6/jp0A8+S +DG34rcxuwwEmeFyMThE+dYMicVc1UheDR2L9Cm2lE/AD7/6ctET+1882Mfj+ +Mgn3VivBQeiu7K0Pf8CPyRx7a1aO/E2cv48oNVGkK/eDqh3LH67279wCP2/2 +cMNRZeR3ULnAaq4j5nvnyxt1rO+Ta1UW359Pk07bXD1u5Pc16OZoSzZFnl7i +LbwJvf3IMz/xa9h3e541HEN+PYYpWjvXoP/JpJ1eifxsE5rD+7HvBoRlU9as +7ycHZWfCDsIP59zgeYp8Pty+UVeB+r79M5/vOuKNOsaQtIDfdnT101mP+imv +0I87LEQTgWPpqb6IP5Q2dZq7nEEkfqR8nof4ze/NWbgV/dnC2ko4DZrrltbS +xCGKSEqWLfuK+jVIdd5eCR4uhfven0A+DQstLc66YF8ROB9ajPrpHh/Z9k2U +QYa33BOwQz4V5g+LfOGHNH0FfeuQT/Ry2olVj+k4vlJv5KNtWnubyUOTbb1y +T+SRT8WBzvVP4Ie2m40evox8TKXtg8eP4TyNjoRooD7HnEZm+bLAtyesOgD5 +behU2T8IP3t/e3smH/Irf8bt3GREk3iq4JoF8tvh5N9/Fv3plqbmhU7obi7B +okn4+RUnzqcfZX0/sMFhhIn+tE29Lt0R+ZSW7ozdhPPe9+7eGkXEX5du7VF+ +Dv1ktVtNNfSBRSOddvB/qWuHbqUjn/S7sicacR+NnJtvGCMf88cDVY2GNJF7 +7vOlBXrJkW7/igVMkiCmJByI/PIKNUUj0O8eLrZO6kN+Gx7Fz9SgXorhmd+l +kc/Z6IM56veZxJrvgsNL6MVPFny6Bv96I3O+lALrfuUrfG2Gn1eYbvo7j7VP +RfOmyaqjH2pN/7kDfYwzLfO1Hk3e3jgl1YF6XLjz5WX8F/id6rvshxE/+5qn +jzPRn18XbjKYRPyJhTHL7fywTwu1OMUhvoBc0+8h8HflC7ZX7UN8FivF4nLA +e+Xc0wpzwT/T4QPFdoQi4jXf8zoR39b3x9ZMwk++WPRwIg98ZUYeRUtjvnzS +6RIwR7yJ8hfUfOHnX9pc8pVFfLr8N0gO/MrVly6bKlnfD1rfM7FejvwCcitm +Ee9eLlE14XyKfMhd73MZ8f7x+P1a4DJFbiU4sC8Hz1MjgT3j4JFz1ZzdFPGO +jomPlOC8CNXn9xQg3vyGbyaBTOzDmh7/LiK+p24vjtTbox+2LPykgPPxm+vf +TKEMTSpCw0/PIt6VzcZqqYjvi/2TykDEw7/I2f4O+ncO816SOZ6vcmRPJR1O +kfcpMXovWe+bzKdWVOD5vHNfqO1BPDFe8hwugjQ5y1ZlK8n6PtHX5Lol4vGm +5zjEIJ6pGV+fTfj90Z2G3OvA73dzW6t9CkX6JDqKvRBfocSTxwFraVLZcMSY +G/El67y0/IJ+aPRKxOAz4rtz21fI/jVFeHhvnvFj9Rfbzh3Fbyjyrn7NNStW +vCc+v47GPpU+eu+eDOK9UmCevC6OItGbok4/Zb2/FKCD5cHTYMce+hriDxW3 +OSRjQROH2hhhXcTPn3+gaKc5zotm7T0K8Yc16Eu3Ib8qzX2BbYg/gmOxnRbO +5w+LEeNHiFePZ72kGfw80Rmpk0Y8bx/ezgqGn+9/bvP8L/rDkZPvxUTRr759 +shtNRnwaIQsbH8P/Phy4G+GDeCaUe89aw8/v+1a8YBjxpJwyTg2Gf59WnXNs +EZ5/3dV+8TT6+TyVbmEh8LrTVn61FfunbML1+O0sf+4/f5L19xo/pCu2urLe +r0VOqlhUUOTBP4XZJjwvvlFdymaaSRSfZUtl4Oepq8urKlBPxxd663Px8761 +Kvz3xynSK7mLHET+lx8W7WDDzwvXRsqrs86/a8gHFfi5zxHJ4/p4fq/TojXJ +8MtZ2TItIfg8zvTUhfs20qTg/gNxe9THfF7WinmaDCLz6/jzCHx+jffempaP +FLE70qLcg89/NtBGc40xCJugTIAm/jv/N9JUD17y0UXsbay/hzUYN5hCv7n0 +KXVLLj5vg+Hu+QrtFDl105CSZL0/5XugXIv9ji1cac407sfm7vWXmbj/2XXK ++nz4/OXXxB4cxH5ptjrJYiPiv2rtUdqK+EttL0/EsN63vx+5swL+hve4Yqsx ++GuF7dotB/4r17+Sfgr+XM1sDcK4v7Ixy5NF8fsFBye3LmP9vYv+kvvu+P3c +8jkDxauw/8VtjuPE+by/xZm7zZom/BcWJTSw5v/Ql95anMdY6U8JmxGvqtjs +rkD4xbkcSqMr8TxaaKRmE+5vzOg1+8t4nmFd5HAYzoPHc7GpA3ge3VR6bQrx +63uK6xXieddMLhlM4Py5y133PIPPL5EUGC76i/109aL0SZyvWdMG1ypJmhQO +ru55Dx7rVwvlhLDeNx0dG+3D5+/we3vZBP1sS0/0Ln7U71uKRtRxzJ9+T3ND +J/DXWd29QRd+eO3ooa0NiPdQd9rMew6aaM373ZTOev8kr8R8ivtpLXc3jBc/ +z5NrnsGGebiNp3J1FrTfWudXMaPgp2uqrY3P178StNgnF/1Qm7sgFP89O+fC +huoP6LdJ5j/q8HlzBFYpsD2jiI40xz5z1n73ZMmwsg7mw4xxzhDuV+Muh/pL +DNzn9uVvVPD76TxiCpOob2afJfs9xLeh+dlLrvU0SShVeBLCer+5RHj3zFmK +qE1afPbE79fIZHQsSqMI/yLR/b3gN17ew/j1f/n3Bq7F78fVfO4eQf+74hLy +Qpjljza9EwnE/hb7JGuyFL9f8PPvsg5v3EcxckYV9c0r+bDCeSVNfhZfVOZE +POjuVQTzTnTu0rdH8HlKviqSJfA/Vq6KjlsRz5tDawx+n8R55bZ1qAZ/U64J +S2HsS+07/3hcxOenuntlFsNPlQnc+82Lzy/l0TBUQ78J+Le6rxX1HSxwl3KG +n+Y7dfSmLT4/qjNf7Tbug1mHIrUGn//p7hbOgxco8rNC7sxNfP42fUVdJdb3 +VfH5rYT19zfFmQZCJjRRzgrZ58t6vxlv+z4G51lXekdkF54/WxZoIIn+tWBX +fDsHPl862mOXCvYn2ciMidus96v7my5XYV7bNSsYHWT9fTGHD+cb3I8VViGr +xvC8g3MbVo2gP738kPvVCfFucjVWfKnEIN4OS1v68fyXUi2MtB4GaZ274Nv6 +vn7DYfVaVYYQg4R2L5/6DD3V1tDSJYPzedZqg+93/HxNurVGKkWKoxplBfpx +/h65fipuY5BiZcPlhdA5R7e8HsS+YJT8ScVyoN9Q7pP3NVHc57T9j6eHoU1O +TqpaaNMk7ve7kYjBfsOgOr/BO0MMcnhdZY/IUL+hvErwuqVOFFlftiCqHPqR +vaD+6SFvcoL/2E67YfiRBTPC1FIGSa7S//wb2sny7t7+ONb+u+7k+ZF+w3V5 +EbsJ+A3tmVGU/YHz75lpuieaJgdaRSNfQZfKJyckNWJ/k/Bc6DaK8yxoW/TU +gUHMHs8hXD8x/xs5bwu1ehMxtvCANOiLEZm6mgoUCeFR/qgzhv616MB3/QoG +KaDXdrVBL1t18L2/PE2Cr28TC/qF+b8py1sijiYatLMT7zjuc9fZ1aLw61VX +Czfeg15Rw5PxWZlJvp3XdTSewDzg2HI8Gn576aPxf0PQCyZ6RpIavQlH8P/b +H0XOWaxm7Y+540tGIlGPELuJ9DKaIklFqomrUI/+k3P1agwoohG1VPk59GXv +ANczegyi1RaV7I56ZEuJzByimSTkAK8MO6seG9afvon+H8BhkXAd+sISlfXx +x2kimms6ro16eG2qMm97wCRzL1p4v4eOF4opEYS/dvzVV0yhHn92l6Xnd3kT +Zw+jMW7wbxM8pVi9iyKLh12E06FfRs7YJbUzSEC4hqIR6rFr/7XTHEtpImLL +79QMXefzeNPBWJrI34jeGYR6ZL/97h8K/9k/W2HOj3qs/mDLEbGGSXbQRbIP +oXN8qjQ2BVFEdZfxFzvUo33VrO6ZZ97EKvxL6g/oBetGR/71U0S4XME5BvXo +SePQCMB5SJhrwLYW9fi50KvdFudve4TDo2fQdmf7t5ofxT4VPt/KBfX4HGY8 +90Itk2xPOFQzBd1HMt+2HGWQmVVCOYmoh7FVZchlAeq/+1H93/3YQkxmF3q5 +oR7zZWT+sv49x6Jamdf/oM/e0E3wlUP/PHtfPek76+9FBBQ+Yv+YVH+wRw/1 +0IzZL3MZ+Ym8lb3eDD1o92ewDPuMszVfdwDqsSZJ+7xGOPoPD+ckP/i3eR7a +dnyWSd4axSrkQP/2YsY9D2UQz/OfthqhHve1fobXLqaI+dLVBl3Q9bY7jr8T +wX4ROqR9DPU4X/OvqO4wg5yRLeUUB//rXEGtlk3YLy0khgug7S6OsdWF0CQ6 +1OilFeoxt9dNfWsQTVYP057D0AfP+Gati2CSbtMlwmdQD9k5ome0uihSHrsq +Zh34S6WELhgs9yaFFbm8b6ANnjn7H4RffNt178o+1KP8xKRgGs67rE7BKBf4 +x1bHpuc50aSXz566Bv3s6N59XDHYn6cf1quDvyX3gQ86vDRZJCTI3QB95eql +kqrPDOLTLB9Gox7pL7iF+HbDf8g6Ry0F74wBi5lPyE9waFnAA+gDa2ee5erC +b90knhbgL1CxopO1Twaf3v8lBrwFynni3+QySQfHzyxZ8B5MnuO1FftodP4p +s0rodr2qoIWYL4620T/dwPu8bLPLV3smIV+5MyegwwKNns5/AL6O05Lx4C28 +6+YtzSZvwnzslqEI3pPrE2dewK827qidqoWOO3o729SASVy77zt6gbes8BPV +UYJ9dyf3Czbw1RQ9PnQc/eLV44bRFOh7Cl8sOcXg3xcvX6cN3lqWk1F7nzPI ++wRXtWbon13f/XnFKHJHyV3uGHh7jqt0f+j1Jj2mc/SWg/fLPZkKedsZxCMh +Z2UhtPS129ese5lk3odXi2zA2/z7lgxh8K6cduLphd4mfchwCvvcrSVur8LB +u3FT6wK1cCZJXtZ8cSV4u1hQPXZiDHLaZ17jc+g2k4hRl2/e/92H0v/ugx65 +GBYtZwn+rR7BX3T7wOezWMcgtNwF25iOlRSpP/uvMBz1cEhlWx/3iiKO7c+N +1qAejqmdf+W4mMRrNu/zK2ir9KXte+BnrIN+nXVDPd5q5lh0hmHfKXabYgd/ +A9m5cw3EMS+Tc2MTof/221+SK2YQvzYrEWXUo8dc4M9vRYqQXiH3d9Dnf+W/ +buSgSLe5xhsP1KN2cUXNHhMG4Q86OsyDelhN+QuJFzOJvmm61m1o86oxDyPM +S10/icPaqEfiw/Un/uL5r9wrg5uhTTu3BQ1jv12dXxYXgHowD4oOXhdlkLD0 ++P2CqMc6ZeE3b6u9idfuJFIMvXwVZ5M95tmqoBFN6zFWvRUzo/4wCNPep390 +jPV+2PaiJvzk/U/1L86gHn+/zvVYeh7Pyz+dIIF6iPPt3lIvRxOvHQdWPYM2 +rAycyJ7LJPKFaowdqMf7rto88/PwXwWn2v5hXoSqCMQU3WWQfb4XVa6z7odg +eqSJDUXccjaEaoE/ezBvRdk2ijSpHio7BN4eCRcOVZ9jEmWN473LwFtAUNeb +E37rRPOBkQfQTsraihmBNNFm7x/bwuKtbtPQdpJJbmvJ83RDT71/4OLXAb+Z +7jt0ArwP5I2PfcJ9cI/bViMC3t53YuNN4ff8ZJafLYVemZe6YQ4fk3xX99/k +AN4PnkgGyKyjyRKH2EXD0Jcqk69MI/9DuffTo8DbvCJDpWoDTSxOUzpy4O3H +m5HJel++nHPB3UrW/Vhb+tPJlCIM049snuAtLO72s6remyT1jPhwgu/85dJ3 +10gwyLM1Q+U3ocVcMrWOPGMSq8GT8/R/sb7fXHm45RT85NOmPQ3QBZmTn8x8 +EM8b9Shf8Jbelu5blcMk03by93nB+620dc+0JYNstFjy7B60LNd22+C/3kTW ++NXAGsUGw4cZwj189fZk+tC5nADwf5vK/bcD/q+hYu2DpeA/lLsqhV0J/TEx +0W0Y/Fvvj713gJ/zWKOodwa8KV/xA9Xo/7POaRNy4Ds5Z83udvRrt41upxzB +18z2/gqBX97EVk9TaAJ6eudT3xg9isx+/C2oAn73F6y42v4b/XZr0u1X0EXm +x7fIn6ZJ83mPJXvBs2dp37Jj8KcpzXtvXAc/j72+4QbZmE+BBXkE/Op+5ha0 +op/7WzOng8Erd3inCsOdSdokpidXgM/wmvuZEhRNxC0bl+VCv1YMFxNFvIMG +bUs2g1dsXnfSjh9MUsgmdfnUBOvfK93aY60Df52gprUKPC4GpS/N2cwgbz3i +C19Czy55kdcqT5HBeFMbV5afoai0wAiKXHy3j7kBPJ6vqvO4in36SszNm1+g +pd7fty/APtga3ms6H/nzinySugl/TnhObs+EFrt+1PdTmzdpiBtmHEP+Hw+m +r+DHeZ50DTu0jHWeuuKfr8X5Eqyd1M2HHm04Gqo4wyTR8g9LRsCj3uNoQd+U +N+lcMb7lAnicctvT58mD+c5JhVaDxz3HrF0/MJ+eFi1cvg/5v7VSVPPF582q +Nz+Ygl51/dDt7zY0eRs/29+E/G8lF/rMtP6vX2b91y8VSPELi7kbWX4u2vC5 +4T/0J1dhRhf0voMtPMJSFKngkQs+Ah5ri+s37cP+zq1Zo7ES5+V77g0vn1EG +uXB5OugJ9G6r5M8FE0xSzbPfdTv4TM/lDTiOeZ5/bvHhSeg5dsdFjXG/Os2J +wXmcJ7bs15ec6hkkMJyHXRa8uB9XLptjhP3m/dLJSujCtB5OpUlv8lDJKc4V +93VQ+bbjunUM4pTSupcdPA3jE8wG0+Hvjb+3JkIn6em5b8R5uOQVa6cMnnsF +pdMbIlGvm75sH6Avc+/05nvJJOb9F629wPfGqyIbJW0GcX+4xXYR+K7mXLx+ +DPf1xf1zX+5Bszls5zHZRJEPTxfPNQHv0qyj7Gu/MsjFzpr9fdAdQt0qH7FP +XtJe5nsCvB9caPJMvAD+fD+DluP8PS5MFHJVQ33/LMovgq6uflpbIcIkkdLF +nVtRD6GfMYkDGRS5/VcwcgL9km44ZC9XxSBn82yWxIH/ibVDfzJdKfJXRXOh +EviPHzvzz2gzRSIjw+7S4L2U8+PA6+NM4lD7MpwHfLf8bdptYkmTaebnigzo +gzcKVMWP0GRt05UAI/BW140+15bEJHbfSku/QDfamHab/aGI3RaF+kDwfsDj +tMUE57X9mIXbUvA+uWt+J/dBnOf52tvuQysG6CxsmGIQRZeG4i3g7bT067Fl +2G+X27/P64Z+cVVxuOgcTT5kiIeGgndn1CKZNWY0EX6+4rkYeCf6/P04vIRJ +tDZ0eJax/EMNuWQFv25tGzPkCt6+UrmX72Be/dL4xjMNnTXydbCbC/PJf2HM +ZfC+zdFYGJTFJH6HOk6qg7dFjJHCFewLftKCi99A91Bat33gF01Xp1AHwPt4 +/7hOTjmT3Bl/r88J3jseHv08sI9BUoovaaZCa65Z9P30fPjVbtkRqffvDPk7 +nhp0K20jEmVWUV7gn8x+ODYW+6Wv2Wq9+eCvu/pB0oa18NOq7bPd4N+cQ495 +rsJ5LktZchy8q8Nz/hxH/xlRswsSB9+B9e8/5w4wyb7vIl5W4Jtt8r52lJ0i +tXJKOYPQ7A4xk/fWUcRo1jFWDvzEooIN9vUxybotrWZPoMOZGzJmMO/VzzT2 +O4JnhEZv12HMgwo+bZc48Ot/aDJPF/v+lzDGDU3wmnp1pb0b/VIiKfY1E7ys +8lvfqVgwCcc9h4OLwMfg8MrV/XtowpEr8DQNmjN0G1f4GZpIXzf7qQ9enZz9 +/D7w98uY6byHwaf47sdyZSuKOLRVdYiAh2LSxbA3uxnkZ5Zd/CPoSvUM132q +FDkjYtRqBz7HV1Q8vxZMkVLPbF5l8Cjd4+XJep+2VHLZwXfQofPK9u92wXxT +DZ78Bz4C1TG+H68g/wf6uingITq7iOd0szcRKtva5Y/8Z6tU0zgsWPPnpTgP +8reSiA5dcpEmPpX7V2Sx9rU9/jtuLqLJPbfIwG/goSeXd+nwAoq8lL6rfRo8 +JuTN94ujfz6yjLZ+Ch6e07IhEtPYH4y8L+5A/lKi+kMvsf91XhZ2/QEt4bYh +8P0O7IOcJ91qkX+cn7jK3Y7/zdMX/81TY0KRGrPtyN/PpNb77nuKZNtK2k9A +fxZ8dSFTGn67K6zIC/mevvdKZgDz/H3Hg+AFyPffRPSI1hKaMNfHaWgj3wL5 +ZXrZ8M8vZyQ+fIaONjp5LmQhRbQ2743LQf6/rbMoE+yL3Ycephgh33eWljtk +j9HkRlLrISnkZ+a8alc69k/zV0uZf5DfV+FZmWPW6PcBlwTjWP5aUWN/FPK7 +4CBWII/65vN2n5snTCP63N/7kJ95/eLaTNTrL+OH+nzEfyn2/gvTSwyir1S/ +LQOaW8pm1R8TijyX1Rs3RH2zKQbbd2f0/2tam8UGWO/7b3itcabJXLMJkTJo +EvAhsgTn0/Jfwbwo5CP0VE2np8GbpPIurXVDPi4Mi6dfNWnC42Th+RvafXTR +Jj3UU6Jo49t45Pdwkhi4r6XJr7fqP96hnsci1Wzc4U/O6ojx+yPf50J8W3pb +vAl/+9vhbOQ7R1fi0YkG+M9dslGmyHcmaqpS4ixNslwSC1uhT/YU80p6gl9r +lEUJ8tVpv17uMepNONI9+5SjPhlaMwOiDQKdSMP6dzUhyPfYsX82dZjf6/WU +Voki37YzJw/ba1JkOL7MMw753T2Ro8OLejpfTU3eg/yMS1aySX/3Jk3b9CL+ +QY+5jfV7476U3E24rY385pc4XRjlQn42DrPvoftkX445RNEk7Mq0BoPl33/0 +bToOfgLefyvNkV+6aNXZRtzf0rhrRyURf1LsubjFB+F3vyccKGbtqy1Fmnkn +aFLQ6a9ki3qqicS/O/iVSZzirkueQ37Nx+l5Pqspki7b+KkO+UgGW75qx/7v +vV783UbEL2zBrckH/yw+rVTbDZ16784Km800Wfd5++WlQ6x/j7gqJZiiiO7e +Kp88aHHd/ia5Tm8S6x0zGYH4b7C1hwi70uSnm0GDKOI3Sk+ZY4rz5fWreWYK +9fLMMm7c3udN2Hj1dl9FPq8vH/YqwP6/p8TiYQPqddh2fq24KE2uyd9PZCCf +wFDxQ6Kov/CHq3M4kU+RAUcPB+YFvfrwwS7ks73a6r7FF29S7Z49rot82Dvn +HXHgZZCHNwXz2qDts5rGQnDfSqtLHQNRr8mNetWWdynS3m6jKIz+/KDg3w3+ +PgaR6RarKoX+pnB7IgV+8HSDuJkN8l8yosNtdRT5/9lfOga9b/CRnBnmtfbN +yMtRuK/engFfm9oZZNKxb0wCPK4ErbwRhfpOm5wzrIA2D/kn0fwT/UrKO8gJ +87H4q0ad9koGOaoWmzwD/XZUcrv3dSYxeXFWOR78OCd3733mAb+2/6XhWvA7 +1bNz906chxMGpkY10I+uzLA11jCJ85xZRXfw3E6Hc02aMcj24szN88FThDGf +EYF9xsfxrFwW9LWh49L6Wti/v6UMEfANa/Edz3+HfDNnUrugFW/khMqo4H4O +qlYdAe+zXs/6ncE7iWR48IH3KculkuVa6Kdv9vx5CF1f/U3bSpZJNHccvm4O +/keOMHjL8igSLdnVMgp/YiiXs+Er/No1uwf/YsC/8amvjdoB7A8B6rby4O/D +biZ+Bv7NTW1euhd4HyiZSH0dxCT9wt8b5oBvoXDkL39TmhRpXcy5BX3KcSzf +Cf0sddOPfAPwTny8huEKP3dXh3NZI3SBRn/tfW4GaZRYUOkL3tsLeQ7/bfcm +4mNVmQvBV7nMJNKT9e9h/1hoZkMX/BNRWT/EIDajp8bMwNu5rJwjShD+q8Fv +bju0VsTEleXwJ7O37ZlHwbtNuz8qbAvm4e6huULgvfvmakpbjEk221maFUFv +Xcn1zcybIoZO37ucwHtN6vZ+wUpvcrP1q8M4tIrqj4ze35hfV64HXARvI7vB +8fFkJuEiSyqUwDt5y6e5Ezhf3Q3r3Suh13ecbGH9+53O7XYue8A7rEjspngl +k/x7uSpiFvrm1FLbbh8GsRrZPpoM/vI6/XnnFlNEzeXeYXfwrl9aZ9yYCz8W +JXuSC7wTugOv2K+BHzzOadUO3idDNXzi4MdSIhynD7H897mxlzvgRzxSsouE +wLN366qEFeNM0lM25bwZPF2e7pZv56YI7/Xs8V5or49jjwxkKLL/4vzXUuA1 +tyoo1rGdSZTehlwthWacWN7wDf3HLXxhky34Sal739wbQJP6dWk6seDF7axi +pv0R5yHydYIK+CxUXxjYh3428Vj8gSf4hAsPBAzoMcmlgIi8+eCxX8qh1wr9 +JMBNY/lNaEn5kqAS3IfHb/52bgCPlxF3xuznwO+kelQFsOaVFj1wwwH5c1zU +XAEeMVeFBCWYDDLHMv9UIfSK+zZLzq6niKPrRmlr8IkYGvyQ60sRq8LanWvB +Q4292LMT+2Zd/xvXN9D3bxnS6+GHeiOfWv8BHwuJ71dG4PcqT4kqJYHHNUXH +xrbP3kTXmk2cZu0Xo5MDU8Y0YW/Z7zsH+b/XP93OEYd+VnGdKw163at02w8C +uN9HxuzawaPslNWpTfwUKVwzXyUMPOwW66cF//AmF31FtR6Bh5qle0wx+lHg +gqR39si/hsPE/EcMTew2a+cPQJcYft7pDj5NG4xFXk+w/vcVtl0I7/ImxzvW +adkg3zsO0tLjLRQ5nLDy6ii02seYcy8lKRJ3V+emO/IrLl488hLzynzL/JK5 +yK8z5vW0zgqa/ODxXa2B/Pan3r6SiHpz+F0X+Qj9V+RajjzOg84rrp4M5CvJ +W+f1EvNiSeD3aIMfrPtlOMSH+l+4scFHDPnoVK6M34D70BJrmDOBfLifa3R3 +wK/py+YzYxG/9DzxXivct3URH9JWoZ6Xz91iDknQ5Ohx34e7kA+9Y4QcPkWR +ngulZ7hY70s7Ou/8u4H7+0514y1ox+t/GiUssX976ujooZ6nx7fcDkb9r/Xt +vCKI/BIPDXslONLkOV/unCJoy+CZbG+cx9oPcdPhyKdinlGVRKM3qbxRwe2M +fAbi+eZ9Qj9c2DT46Cf03+bGoavY1yzzDpWcR35qrgFaCao0mdOXUvsG9Wv+ +PHFzlw5Fjhoe4mEi3z3XilMc0H/7uVwa05HvRJRrteAbJilbZf96I/K1toy+ +EXKaJqKLS3g/Q4u+cvyZj300jt9qbj7yVf15KNLntzfpbVIqP4T8ZPhOZTie +ocjcEwreK5Cf08KNiYkq8JO7DtrGIh+9A5+ujeD+tjHDLrggn4TPK8tkh7zJ +8lclddPQO7863ZsxpkiLoWmbBvLh3au13BP+XfrdpHUN6/sNrVsShvD39y6p +SHsgP/6wvrUhuzEPfJ3KjZFP6WkdiS+4n5Y73pSKIt6XocH9j+DfcpIKy/Og +c8LFs3qxf1jzrZGwQv00+8o0+nqZhLt6V8sZ5MPgma/RjnhLqjSqqpHPOSNu +/V3oR7MnDVfqI/7mU41hC1CP5ud9RV+hRzXWbvlqRZNTSikjCxF/U+HRprWB +FHmsmbb3HnQypZZ2HP39wT89tTDEr23Z/k4Ufnz8a7usIOKvfJG0bwPO05HF +ps2/UJ/r8zteroSfG+VLdEhAPnJHmZmLl8E/tzUn1qE+fzxtLX/x00RxtO2T +B6u/eMg2mqDe0Scf7ZyFpofLjSawL4vv0lVuQz5b88OWyMBfLhcVletDPv6k +XbJAgiILDe8G7ET8XeItX+/j/P96sG7RWsQbyMU8HbIB86HSNCp5hPW/lyV4 +4DmNfst0OKCBeEPcFZZ9R/0CckadlyE+zUR+drc6+CPRlNVDiC8+TqQzXJ8m +e7t0T4uwvu9ZKbn0nwJNSj9bqf3BvL0WaupLlzJI0NKfEldY33/GWWtT2ymi +OLK+Sg3n5ch0dTsb/MiL0FuaixFf99c1dYI2NNFLk/icA+3RF3S/Mxj7+KGt +7UdY76d2ZUicw37F+1o6ZBviLfBkm7qK/TU9uzcuAvHulm2WnyQ0uWJ1LO0a +4mN78CRoqoBJ2h8+NN4AXr/fPrDVxnlg85ssroPeEnWlvMUf90lk5CrN4qUV +s807iSK35sj/Xoj4OrwHrokpUGTVWI/sKcRz9Yi7Shp4dAroB9kinqm3xJ/z +jzfhjkn564LnF93u/XPEmybfj/Jl6YBXt4uMRQfOp0/v6vXLfrH+HrjXI/wA +Tc7/HffMYu37nwbOW+O+RTLj2I3Ab/bEWs2zv5nk6/zxtKeIJ7BkJkcfz5cV +iyxXx/P1X4h6cjNpYu+wI+ojtA2l6RqF/qHZonSDC/EY+aqaP4qmSEWr2+ZU +6Os1L/WUWjG/5FLuBIPX3mTKdQH2qz+t0m8XId637BekxHGejKqV5HOhx4+r +H43DvLpuLHalf5T171FWpD1gve+Xm/F4CZ437vQxIzlpsi1E124X4g/S0Dx/ +FefZp2d63jh0i4UGR+t2mggJV9fQA6zvI0J3LAEvx8AdWkvQvxtO1izqnUeT +wb0FGw0QH8eDsI6y5Zj/p1Mj21j+/cPTjbtx/jWqn5EHiFcn9Z1C8VHW/Q89 +KQee63kmboyAZzF7txIbnlfkV+kuaE+THc8DKi5D+9pbfqvC/BFfOqTrhfsg +Z6m88zP2gV9d+rkmqGdqwsbRj3spsjlET/UZ4lv82fJEF+pVvbaJ/zyen3Su +nxmLfjvvS+byGTy/dq7plTb4zc4Hr/kaWd/XbQrf+3EVRRI1nokFIx7eK57T +gdivr1z5bWnJen9bZ89lHI16ZLw+/xjPl6x59tNtwJt4TCt/lcDz9819uZMP +/VjlLeeJKwOs93fMknehNPlSVZl9AM+/sZBZ793jTZJa/09RVx6P1fa9M5Qh +pAwp0q0oQyKRpLRTSTSSjGWWvOd9T/ESciuXkoQikZKpkAjhkhQiiUsoQ4ZK +ykwqUVJ9n/NHv9+fz6ez91rrOWuv/ax99quyDfzQg+ffXVjRgfUi31Rwp4VZ +n1L9VRzEp+CS1LAH9i/lmn5tAh9KdWz95bBvWD99P/c4+kfbDtfLsL/ja/Or +3/LoXzSOvx+AvXWxexXrN2N9Rgz8XQR7ohs1jzb2sQjV2vkwFPMbWq85moX6 +OtYdH7AE+RAefDN1P+xZvToq/xvxz1SVinmMeMVmdbsnwn5+7llVG+y/ws4B +Nh6wXxsnLfcZfJV9Kizuh/1Dbxfu9cR+s3+tDXs9c/4iPHTg3Tw2c552oBM4 +oPKA22qM/zeD/5kn+Dkk6CFank6RnWsvZ8yHHoxep17i2sMmnPPZnCLgHebf +7AxHOMRV90fJbsRj2mNmqn2CJv05kdafgCPXWWc9Q3/u+l/mlhDkW2P8lw+k +j03uG1iw5RGvw0uT3nozisQG7OotBfYYCFVfDT2zU5Y7cAB8LxuX8XohwyZh +f/fqTQFLJPR1ZsRySHVgx6tI5jzDnPtuBtZvy3v7IiXw0532z8vX0HtcMc3e +GuA6+zqTdU0c8j5yzQ1H8HV52/BB271ssudBa+Us8JWYNEuwAf2gYaZAfRrw +UJGkRrEmRSS+HXbQ/8KcV1MffZ+xCSUiubUbeKT7ovJ/qKellQYevkz9atG+ +8wj89rfydIuhXhyOqb9J6UG/5Ykk5AC3GX8bi1LlkHCvjqntE8zfl+vadvM+ +RQLWGAV/RD3es+eJql47myxXdDgeyuhxIa3p4+gP1lxZM7EC/GcZpKmpGjD6 +d8dSN/AdeTk44Jknh2iV+/nzgd+Pt988FIZ+vBLPWZIIbKY1z/v4Sejp77Lm +G8E3b8A3G/lMDml3XVH6Alg7Va/SeQ6bxAj7baLBt9IFJ3Er9OMP1c7ung1+ +z7q7dCxwwf4/vj89Hdhvm0hFfy+bOOp1XTQE39niak8MoUfjoiqyu4CjT1iP +Muddkks/vfcdY37vPvibB/VsQr0tXRp8P9HV17FfxiFN3QGF+cz3hyoXUUPo +5/W28+0swLevS4ZEYwWL+Kw++Osz8MmcsVrPTxTJznDpjwDfUn8fl9K+yiG7 +UlY4qDHrOSvxy03kV3zWdvFK4CptHWkNYI3Ru8124FstPveFRQ2HqNx9rjwN +HCL/OuKtN5vcEi7afZ05f9xqeTVqHkVK1A59dmTuM1z3XeJXQJG0TMXlvOD7 +4mOrGCclijQpRn/tAt9trNhV6XI0OTmkRR9nvh9KzVc1Qv1UMG+1mA8+e2z3 +cGu/c0h6qluLIfhs+aFsaSECvdV6JO4Doz8k0xYJYr/36XRw/Qt83XadLDDt +5JCc0Odbi4BXCJ1xbz9FE2++27v3gb9o0V73V140sS1uzwgFX7rZqW660OOV +oZNz1cFPzJGnZBD1xaGxV+EwU//rPhka6XBIV2u8qQD48Jv4bMhjC32iu638 +BrCZ+MeUZNQ/ESdLGx3wce6pQE+1IPaDsmcKHuDD95cer5Ut6rvk5FtJ8BFX +oSnsz2WTcDnn6TzgzaPLB+TWU6T01OaqXeCn3uIfa10O1qutPZ8y+PBoeD0g +44L9YE/6i2rg53SQZ7Iz8iH//fQ38LOw5krmdAZFgjmh6THgo6PKv0QY/c+u +OMsHFOJ/M9M2wmsLTf65VriQj+l36vnF/dH/3CO6J5KBR/xIg/sCmhgJKVd2 +gQ9NbbnpNBnkx0qdzFPg4xBvUaXiMIv8DHx/pwh8qHL5o/mHOeQRJ5c2Q/xf +vz7zOYN6KbrU2G4A+Kzm7d3q9sgX81SfKsRfsI8qP/YeeuFeZ/ZuxGvfXfcr +9h1Fugvl9T8Cq+UdDX+B9+cxT0baCfFNGlzm+REIvcunbcWP+Oa2Hz79cCFN +csffJGky3+dG+/PzoVeTMm3KmoC3n1N6cHom8i3YPOIW4jU/0j3Aj/e7fDyI +byPiW/Gq5N9g7DfnUw4PLUQ8pVNyGoHVLKL42dJkHPEsqeEMhhvRZPJXxYIL +8P+SZ2RaDvZ3v0Vq8svwPm0aeA7ZK6BfjmuacxDx/LXYzs/xPEU6UhZr8cJ/ +rtB0nE0am7QnvrufwNT3jobsPOi77+fXv16P91m5NuveQnP0S+Ejm6QRX5uR +1NB/0AvJ3qF++cCy+2XZIfA3ooSXG4h4LnddP+jfyiJtgwtTrRDPpjvcDFN1 +moTHbHQZY85DGtdvMYF+cVwtpRHO6BdxsYJVqP/hXs0bn+H9HQqwrLHdTBHu +1rQzLMRbayvybA729wPzFY1vIt7qgp+NzlUcMjOEciNMPmeah6mdpUlzX3Vh +C/BAkdKHk9Bbg+rZTrmIt/RHH5s7BT13+43W8X7m748YmsaHUYSdtFJMCvF9 +aTRI/MKc91buqw5FPBbDUzxdWL8Jlp+EbRAPR7p/IB77TT6vD/cbcJWcqPgT ++DcSmnBiDXO/qzCtTeEHh9yM2DFVAxxSLl6ofY4mlfPqrrogvinj/oSfTjT5 +7Rm8bgvi2frw62AH1mf0w3dWC+HvK3NJYw78dfGscssF1mtv7OFB/3wjPTDW +hPk+UrfXbQny1e5DmW4w4rnW0GwSu5YiBrEf9KsRz7BKr4+8CkWMVF5U6cH/ +8aSNtwWhj4uVnqzsYs4b+Tj7jKHPc6wrrs1m6vkyJa+ZJyhy6i/JrjsjzN+/ +sgy984ZFHu+40nAK/gfYb+HGWqDeJKxukGLOW/bLXL6HfOKP9zf+zLyforsb +g76iH5V82hTFnEfR/dUlYhRJGUsRrcP70fPymW03lybH9094uzJ60yaDv/Mi +TbbZ1s6aBq55IjtO76GJl198WAdTX25fJ+LQu39vlK35gHiGrA9dObyEIsO3 +QgYs4b+ixLgy872t4Nq1YCX4u8khrq5cH3r5TKzWdfib+kallxf8nRz+3KUJ +f8f00zsPQZ9T2YvbxOFfSv3c67cbWWTHqX+fDsK/By2/Q9Sw/+b4xfyWAb/t +rK7ouxqoT0N5Xd+w3zpk2jvVlrHJjJ6k2Gj4E/hOZZ+LNUWuiOu4r0a+FG1Q +GUs2oYiYktZrEfgnRwfEZqO/lBP+uSsDWKfyyrEZfui/nR5Z+TL8as0oHER/ +t0jCX3Yvc771iH5gsZQmJcqBwkEMv6+4aRe30oTPYduCOPjX+Mo4Zl0OhyhL +17xfy/SPaifIAPq/+8aCznXAC/zdclKx3q4M3ZBgM+ftfs/vDd6AnluhHDcb +/m0xrr+mupIi/JYV1wLgT+GMkCuRyOeU35lje5n7cUJCSX6/WER+th7XZozp +f/voH2zo5VObFHXBFzvqtVQP8vO+MWkRhz3V1MBqHdTvHS0zpdKBuSsTatyR +3y0zR303g7/y8vOKP6c4xK395qJH8CdxsvFMI9bT0YoFLpqwfyJqy4A+RROt +krUzXgAf1fV1nEB/7Siwfycv/Mlc9PZgdSRFAp8+f5wE3OkyuMwGfAl6TG7z +Zu5v5D3nCd5FE/94rpcI/F1+Scw0BvXD2qg2MRPYx/zi923CqJcvTAX6kZ/V +3h/kpAUosnd9Zedj8HmsKdj75S8OudZt9sWWOe9SKn6kgXxWLhXO+8zsf/SR +QAErmnw7mWrAhn9c5VulP7H+JFeebRNF/W64ODkcJ0KTrF0KJRuY/WnEeI7W +QvR3jx3VOoEN2iZOK4lDD4fMG7wLfydWbqrMhN5Ii8n+pcB8P1qhVGlbyiI8 +Lj/qf8KfWkPHJzWmNJG4HsSOhv2u8rJbytBH3mq74w5jPVwVS7xc7kER25n6 +pluZ/oO3zcfOniJKPQvSHsG/VakRQbuR76FS28PDYL99xRzz4mYWOXd1qvQ7 +7AtOZ4yEQW+yNv0+/QJ89H0y7dBFfYhc9zHWC/7YWD1cpo713v1DbHgH7Dep +arQfgx4Oe6wy+gD277aotzmPskiDrMY/8rCfbKTAyltHEfHVb8ejYZ++GeY3 +in78Wq62ogujx3uqjjxFP6Irc6qbB3rw0RISkmJKkYRLs8xfwh+1GwcOOkFf +yLk9N9kF+3J9ImUvkV/HNM50LWPOQ1ZVpdp704TXZ0PlJdjPup88VriMIiTa +zKoP9jgp/jcioF9P+FpOFsCegsamkAnsx38v0bYJwfyeWSGTPXY0OZY0qrIY ++dAvvbSlDvv5O9fUsGnEz9u8aO58PC8gNKc3HvYf3Zxhwugts6exUzSzvsLj +jIPBl4zoAple2Fdr1jptB/1hcnqBeDdzny/C+tR/SymS0a9cq4b5Wz7F08bn +aRI756TmOOqF/3Tk9sA6NpEI4jl3Ec+v9M5OHXWkSL9i8eRJPD9xbHA+nwlN +VKdXFFfD3u0LDck/fNDvXfjF64bnZUMU3DWhf4wFPBwO4Pkc67HWEQ+aPAhW +ZKUw+3nzTP0E2PM/wS96n6n3x/x1JrUoclpOulqAuZ+aLZQbAv/PbuUNTwOm +pERbdefh/RxVERrF+OG9QkeuQe/lG9mtdAOf19cMh7Qx971iumSEkN/5m1W9 +iiVoor6EN1sH/IYd7nBfivrrrPPGuxW4OWfOjZfCFCkWzN+QAb6H75YMnYH/ +sfGzvy4Gn/9eWjr1Efo8SlVF9Dvye3z0apA66qGK0YbYTcifHXmjUS1WFHmf +2XTxPnP+YSAVpsCc3wwoBJzD/B9XD2k8ecki/tbudvV4Xxaa0b6O2qgH+iYR +RzH/vA5n7wT0X56PN6psQzzLhx/nPUf9uXFoVfUCzC9b+y5kcg36n6nY1xcx +/6ht7bQy6t2iMxIy9phfJsLnyslBFkkWT097Dv8lc9ac3wk+xTiqBkaYX900 +wLwN+cg3mSe7mLlPk9V5Xgj+5XdlHyeYr/IwbSuGejt9SGTLO+CXbv1G3J00 ++blz7WAO8z3jpVipGfrrxIIP0UGYP2z/2ln7wPfngLnUJOJ5bS2x+wH054ew +p+tYzH0pbnJaLupX9pRc0CDe5w9Fxyxe5OPoZoPbccD15iccXqHf9esQj5jL +9Mt9jkO6ZjRZuaFgdQL4HT2jZVn8gEP03qvsF0f8fWGCN+asosgB3W2rKjBe +bDJp9Loq+jPvCSkdjOf5+rW/kaZJoeiQ7STsB3BbTZ3202RgZ2/PW/gvECXa +HTsf9euSmaAK+Mh8qdcyAj4SB53nx+H5VQOtCq5YT08nQt9QWB/c4LIln1wp +cnahFfsXc19xbo+BOvR4omZUsh/Gl7RINT7qYZG92m+zdmN8YmdjczbW/+tQ +tzXlGH+/0kz0YD+LXJ/nwvsK44Vdl15VQP1TdfQ0N8V4jb59rptRL802+wnF +4Hk5daGK7ai3DSZ62Tz4d6EAkUUc1C9pvryPycAOZSIid9GPlc9wL+Ey33fT +Ikds4c+RlgMHhzBee2jGX8Gt//97gqhLPltNY9z/7/cGf/Cf/1/hD/7z+/U/ ++H+hweW+ + "], {{{}, { + EdgeForm[], + Directive[ + Opacity[0.05], + Hue[0.67, 0.6, 0.6]], + GraphicsGroupBox[{ + PolygonBox[CompressedData[" +1:eJwl1nfYjnUYxvEH2XuTkD2yV1b23iTKnmWFMkr2SJTsVfauEClSSUOiUkaI +llIhIQ0qUX0u/XEe5/d73e/xep/7/t2Xp0CvIe0GJ00kEknkctL/O2eKRCKX +lOIV+VX9tws7dWX9hjyK17n2l0zktXgLPEYOyX1m2c1y4x2Shs+V1ma9+BW8 +DRfVm2UAnmt+Ei/EZ/AQfAeugCvhk/h1/Yhea3ZJ/8BX6z/5BHwXbo5z45XS +lY/m3+pD/Gl9kO/W9/JsOhevjffKJL6d/64v8hd0an1Qz9GtdE/Xi+BN0j/m +/Kw+wRfE38Tf1YN5SV2eV8SvyUi+hl/U3/NV+g/+gR7Pa+pmPBdeIV34Y/wT +6ciz8pz4FUnFZ0tLsx58tnwvD5qVMCuHm8oo+Vg6mGcxz4HLShN5VA7IPa5l +di077i6z5DsZZF7cvAyugE/gnXqEXh0/E/cZX8XjcA3cOM4Q/hQv1531I2YH +8Qz8EW6PM+FsuBb+Cr+nJ+qXzX7TF/jzOqWeJS1wN9cK443Sj8/kZ/RnfL4+ +zd/RA3kxXZqXx6/KcL6KX4ifi/urr/D9eiyvrhvxHHiZdOIj497jp/CH+E19 +N8+os/K78B6ZwLfxFPiT+Lt0c93VrFCcI3mAPx1nUQbworwUXhnnLd4ds2pm +DfGIOBPSziyDWRbcRWbIN9LfvIj5HXhF3C8ZbVbVrAH+FW+J56mP6KX6Pj08 +zgJ+Eu/HbXF6nBnXxF/id/V4/VL8Hv0Tf04nj/dHmuHOrhWM5yP386f4D/o4 +n6dP8X64MC6Jy+EdMizOBP9Jf8uX61/5vjjn/E5dn2fDS+RePiw+sz7Ap+t9 +fJduw9PpTLwGfkfG8a38F32eb9C36I/1DN1Ud3K9QHwm6cuf5F/LA7wQL4GX +xe+Id8esilk9/LC8L63N0ppljD0n0+Urud+8oHlxXFcekr3SyjyNeQa8RZLF +eZImsYPi2eOX8O36mN6g++hprn0pfXkBXgxfi7OMy+rPYlfph+P5xj2Kc4sv +x3uNK+M68Tnwi3Fe9WH9rO6oh7r2EZ4W7x5uiVPj9Ph67CtcXX+h39Zj9Yuu +/YjX46RxjqQx7mieHx/F63Vv/UTsI32Mz9Vf8D74dlwUl8GvyEN8CT8f54Yv +1T/HvY69wSvp2jwLfkY68CH8Q/wE3oPf0C14Kp2Ob5Yk/ACfrhvpDmb58Drp +xafyz6U3z8+L4Cv6rzirsTv0yzI07plrl2Qkr8hr4cGx56W5WUqztLFH5XE5 +Kb3M85kXjj0Rezl2kzQzT2GeBm9KJG7+pztNGpq1p3nxWunJp8SO1Uf5HH2C +98R5cSFcCm+TIfyZeDb663h39MU4f3oEr6Br8sx4sdzDB/FT+gM+NZ4xf103 +5cl1al4NvyVj+EZ+Lu4f/jfOTjxj3iB2YuwgvBXfptdIDzzZ/FM8O3Y0flv3 +4LfpgvxPvD32WLwDEl9GFsf7hJ/FF/B7sbd4eV2DX8ab473Xi6Q9Hmj+ljTh +t/BUuCreLaP5C/wfmcrr83Z4khyX7mZ5zArg6rGbZbc0Nk9mnhI/Lzfi2ZrV +M2uLJ8ox6WZ2a7y/+I8407Hz9PHYRfpBvSje5Ti/sU/xMFwOV8M/402xT/Qh +vVDfrfu7th8/jt/EjXBS7KtZ4k78ecz1Y/q5xP/f387G2dHX+RRcN/YkzoNX +S3c+gZ/WR/isOFu8K86N8+MSeIsMir8lnnm8u3FuYqfGHsRlcVWcAS+Qdrxf +7NHYz3yK3sUb4iQ4Od4gf8tkszpmrfH4OB/SxSyXWb74bLGL452WBuaJ2OHx +XkiV2LNxTqW+a//GM4odK+PkiHQ2yxnnEC+IdyJ2sVkZs8o4PZ4vbXnf2DN4 +Mn4N18P/JLn5Tyaq6F0yKnZaPCd9Js62vhb7R0/itXVLfiteJd34WH4Yz8SH +42zqTjyHzsOvxm7BxWM3y0A8P/ZRnGl8Du+JHc1L60qxf/DG2G96nrTBfcx3 +Sl1+Q/4D9Bd4ag== + "]]}]}, {}, { + EdgeForm[], + Directive[ + Opacity[0.05], + Hue[0.67, 0.6, 0.6]], + GraphicsGroupBox[{ + PolygonBox[CompressedData[" +1:eJwl1nfcVnMcxvG78bT30iYVbTLae+89VTRQifZSaUgTUbRRKqloKomoRFFU +CCkZIUlD2tv7+/LH9bo+1/U7z32fc+7z+56nUPd+rfomTyQSyShPikQiC+VM +lUjkosw4B0+dlEh8T+VTJhIf0TT8trWbNFnuIHfEGR17Ud4p5+dLaDCeau0w +9ZTLy8Xiexx7U94rl+BraRx+xdppGi43kGvitI49LW+RM/KZ9AgeaO1Tai7f +KmfCHWgK/UiP6svp78Q1aAB9Qs30BeOzcPu4BjpEj+jv19+Bi+M1NFaeLx/E +K/ApPAzXx9VxBvwyPSz3l3fgWXg7booL4Ay4HP6QnpffkpNc01H5XfmG/Duf +JLfn7eR8eDENil7+Cr+OD8a95A/L9/GicjG8msbI8+Qf8HJ8Ev/Ch8r1eDU5 +je89Fb+jnJ6/RD1wP2sfUxM5f6zh7I5Nhb+j+/XX+Wb+HF9h/Q+8AV/HE3E7 +3Dbuib+7IO+Q8/IzfBEfyCda34cX4h9wD3wvLoJv4D3xe/GLfBUfzedaO4CX +4RN4CK6Lq+KTcV9xOv43n8G7877xbMSzgrfhxjhfHIfvwx/Qs/LyuPd4Pb6G +J+C2uA3OE/ecBsgT5GSua6+8QD4gd8f34MJ4Dv1Ng3V1dFXwE7SVGuny6tLi +1vQMfU/d9GX1t+PK9DhtoYb6PPo0OJvvTMLf0r3692kqXmbtanyW3EZuhdM7 +9rz8qZyb/8MX8v58vPXvqKt8t1wIZ3b8dfnLeOb5Bb6SP8VnxzniN/FxPAjX +xpVwan93Qt4c18SP8+m8G+8Teyz2BP4IN8C5cWqc1d+lxPvpHv01volP4W9a +/w2/g6/g8bg1bonP4U/wLfw0X8D78aetfUsPyXfJt+FZ9BcN1NXSVcSP0YdU +X3eLLhVuQeNoPz2oL6O/FVeg3rSZ6ulz6ZPwUjoir5Mvx7nG98uteHM5F36N ++spj5T2R8Tcxi3gXuTQvKBfFb9MoeWb8LngpPoZ/5gPkmjFvY7/iF6mr3Eve +HnsWfxD7nNeVc/KUcor4Piqre48m4zf0v8Z8xZfiGvg4uSVvJqfzm5yVt8s5 ++av0BB5j7WvqLJeSC+BMjr0mfxH7lZ+PWcZH8pet/0n95RpyudgPsc/it+d/ +8Rf4Q7xnzBo8A7+P6+AcOAVOzr+mu3VX+UY+iS+JWRYzGV/EY3EL3BTnwK/Q +4/Jo+cu4DvwV7oRL4vy4cMxwGiG/JB+lfnL1mG/xvqBNVFuXXZc85iE9FTOL +HtCX0OeLGRLvC3qPaumz6ZPFnKFRtJc66ovHDIy9infHXo/ZTE/GrIoZSn3l +arG/cSr3+Hjs83hO+TE+jT8YM9/6RqopZ5UTMZPiOuku3RX+Lp/IF8ezFO8F +fAGPwc1xI/wv/hhn56f4fN6Hj7T2RdxLvAd3wMWS/v+/4AreFXODn4v5w4fH +vo89iN/Av8fMw1Vjf8c+xJti//A/+fO8C+9hbRueHueLa+As+KZ/RMrgDTRB +XmTtJ7wKn8ejcTPcEI+I35na6+6MeYfLxkymDVRdn1l/w2c2kJ+Ma6N2+jti +luAXYx/H3NVViWcOH4u9E/uJH+XP8c68m7X1VE3OJF+Pf5r4Piqtu8zX82f4 +6447jFfic/H84Ka4Pj6Dt+Fs/CSfxx/jw63txvPxbtwWF8W58GX8ecw3fjZm +JR8W+ynmF16Cj+A+uHI8C7EX8cbYU/wP/izvxLta2xozBb+Dq+KM+JrrKYUv +Rc/H84XWU3oef4x5JZ+NZxs3wfVinuO51FseJiccu0ueJ++S2+AiMVfwtJhD +MYt1lXRlYm7TOqqiy6C76hzqykPpc2qtL6zPgUvHnKa1VFmfPt4Tjs8ul6Iu +tIYqWUsXM9ragnjWaaSusa4O/gdvxVn4CT6H9+JD4jvjevBnuBW+PX4nfAl/ +Fu8H/i9fyofG8xzzyjV/Iy+Wf4l3B66IS8YankoPyJ3lG3yL/AJfLR/gFeW0 +MZudb0m8jp6WX4t57rMPyW/JZ+L+8RFyI15bzoxnU095sHwzzl2ew3fKh3hL +uRDPKheMfUpD4rmO+Y4X4Z9jn/FecgVeIuYKnkId5U7yKqogp4n561xfjXsZ ++0rXUFcr3g94Fj0qD5J3xvnhHfggbyHfxv8DtIGUAA== + "]]}]}, {}, {}, {}, {}, {}, {}}, {{}, {}, { + Hue[0.67, 0.6, 0.6], + Directive[ + RGBColor[0.24720000000000014`, 0.24, 0.6]], + LineBox[CompressedData[" +1:eJwl1nfYiFUcxvFXJNolJBUqKg07JaMiiowQIjM7hRKRrUJlJKLSsBLtEhoo +bRpWQ3soEdp7fu6rP2739/t7XK/nPc8551Khx8DWVxQqKCjYs1dBQfpvf5wt +K3FPaWV+K99fHsB7dE3zU/Ag/IL+ms/W7/OZ+DL8MD5BnsC/6LLmpXBHvEZv +5FPTfBTugufhI6Q5b8DH43X6D75Af8W/1ffx4fpZfprAgn/0OfIUnmDwMu6F +L8Qz8QFSi5/KB+MdeJYcKaXNOpltwqOlhRSWf80aytO4t5wmR0kRyT/ayLNn +YB+pLUfL4eaXmG/GY6SlnGU2wexPvFj2lkJm55o9i6/Dr+CPdV/eWs/iB8rp +vAq/Eu/Ec/AH+Gt9Gx+gH+EnSjlehnfGW/A0vAl/rsfyrnp+voW04mfz6/Bf +eCHejr/T9/MRehV/X9fWRfMr48Z4Fb4ev4r74TZ5F7xBH6Qf1N/qMzyriq/C +3+Db8Yd4Nr4cP4rf0ZX1Mv2rLu/ZEbgLfhuPyzeUc8yuN/sbL5F98o3Mmpit +xv2ljlSQsuZd87Px+KynNDS7wewfvFSu5auzvlIs35Sfl72Z/Stt+Wx+sDyE +v9NnmlfDQ/CLehe/Q3/E5+Ar8GP4JHkS/6aPyR7D3fBz+l0+XW/mE3A3vAAf +KY/iH3Ub80Z4Il6v/+WLcs5yBvFIvCbrK8Wzn/j52af6OX6Dfo1/ogfwi/Qc +fojU5dX51fglvZvfqT/OmdC384H6cX6yHJs9z7vj9/AteAv+InuHd9cL+VHS +lp/LJ+UiyT5Q+0pRs6b8+Xx3qSfH5byY9zDfmv2U95T98m3Nm5mvzZpKfalh +NtRsT9ZcBvEn+CmyHP+uf9YVPSunL83ezVpID76IHy3teGM+Gb+eOy/f12x/ +KcYvyJnWL/CJeh0fiNtlbfCh0oDX5MPwy9nrfK7+JGdU38kH62X8VKnEy/Oe ++AM8A7+Nt+Ub80tzp+XM6nK6vVkTfGPuNrkP79APm4/KN87P0XVy3+m/cr95 +Vhw3z97Ek/B6PAi3x3fgjbpEfo7+Xp/lWS18Tc49vgt/iufiK/GT+F1dRa/I +PayPzxnDvfCH+XekJ1+c86rL68f0T7qDZ+fhm3BheYQfmD1h1iL7L+uUe0hO +kGPMe5t/hCfLxXJQ9oR5y6x13it3Qe5is+Fm3+e95UQ51qxP7lF8o/TKXcYr +SEd+Pr8Zv6GL6MV6Z35G7iLPR+vnc85z7rMneKvc0bmf8076df5p7jTeId+a +HyYNeW0+Ar+if+B3689y9+m7+VV6Oa8qlXMGeN+cU3wrfgd/mfXivfWS3B/S +iTflU/Decj/+Rv+Q+8azMXptvoeum3NudgC+EL+atcBv4CFZUzwXb9Il803y +rrqRZ6fja/GP+B45SSqa9cvvjG+WS+TQfEfz1uav4atz7uUMs5FmP+F75WSp +ZNbf7DM8RfrwpblXpDNvxqfiN3VR/bjZ2Jw/XE9KZA/wNnhVziO/Sb/Jh+KO ++C5cShrzOnxUfm/9c34P/TnfpefxIXoFr5a7gx/PL8vdlL/HZ+aO5l/lvXhf +/QA/TrrwC/g0vI8swbuyXrmLPBunX8z+1fWzL8wOxm3x+qwffgsPw52yJ/Bm +XVo3MTsTj8a/ZP3wF3h+1hevzP2rq+dOyXnBA3IP42nSVUrKIeYX5W7D1+T8 +SRUple/mWbvsfzw850Gq5uyYX577CE+XbtLcbLpZMVnGS0sJs/b5VnhE9gK/ +hx8uTXldPiZ7Qv/K5+ltfLdewIfqp3iNrD+vzPOfz7X6Sz5Lv8e361t4P/0g +ryjdeYvM8Vu6uF6qd2e/5a7yfLx+Kfdz3okfxjvg1Vn37D+9IXsx+5x31vfy +MtKM1+Nj8W94ft6p0P//L17Ih+mn+VZdU1fP+cADs1fwbXgrnoH744dwpezn +7EPdw7wlnoH3leW8TL6Z2cV8Ax6Z/SX1zcaZ/Y4X5TvyZ3gtWYn/zB7RNXLG +9H+6xHgr + "]]}, { + Hue[0.9060679774997897, 0.6, 0.6], + Directive[ + RGBColor[0.24720000000000014`, 0.24, 0.6], + Dashing[{0, Small}]], + LineBox[CompressedData[" +1:eJwl1XccjfUbxvFjr8y0JFmhLRooZEUKEUpTIUqhkEppokFSycwMGVFWu2hv +7ZSGSlvSFEq/9/X6/XG9rs91388553m+z/d7n1oXDu42qEihUNinWKFQiWqW +KBROK14ofMJfkifzl+Wh+CJ8H65AreWT5avxNnw/bS9aKJRWa6K2TD6besm3 +yUXoELmJPAB/zr+Q5/J35XF4OJ6Pa1BluZbcFW/MPchT+Cvyf3yY3J9PlitS +G7mjfA3+kv8qL+Eb5WIlC4WZ8k3yCvlQ+tu9lpGb4g18uf4E/qy8m58jn8Vv +l4vmM3JT+WK8Cc/D76Xnu8fLV8oL5N/4gfwV/jevolcbd0sNT8Wv4uF4AJ6C +t/BKfC3fxtvqnYJH5vvwLNrhfsuqNVN7WD6XDqM9aadeOb3j9R6Rz6PDqSrV +UT9d/dXcI7WjXa7fQ/0E9RXy+XQENVO7JOuH76S9qK5ad7XX8DT8Gi545hHy +xfLUvCs6ST5Vvhb/jpfiT3Fx186Wb5ZXZt35Yfwf91AeN8cr9e/Ca3Hv7Bt8 +B/6GF+OP8u/4kXrH44H4K/wAfh9PwCPwwvw2r5nn5Tv43noH4R74dTwdv46v +wpfgafhnXoWvy77h7fU64evwH/gh/Bmeg2/Bq/AOfjh/mxfoX89TgbdQW+W6 +C+gceZz8LS/OH+Pf84Z6J+BL8dd59mL/P3/11HqqvYGvpg602/dWVG+pvlq+ +kI6ifam++hnqb+Jrch6ps9ootT/xMvw5notH49X4iJwf31lJPhGv0ZuI1+E+ +2Vd4PP6Ol+CP8x94I73m+DK8Gc/HH+CJ+Cr8YNaK18pe4Tv5fnoN8Jn4LTwD +v4FH4oF4Ot7K9+TP8d94R70u+Hr8F16eOYHn4TF4Dd7Jj+Tv8CJZf73KvFX2 +Cu6bMyDfKX/PS/In+I+8pP3YWL+FPCh7DN+d9ZYXybWzT/AuXk39YNwLr8fX +5lxSEaqi3jrvFPejo2l/OkT9rOwLfF3OBBXNOVVvk/XMHKVjqKXa4OwPfE/e +obxYrkPV5UPls/Ocma/4TTwKX4pn4KrUST5NvgFvxw/jTfgBPBY/infxhvxd +XjRnKrOBt8265Pnxc7h/ZgGegH/gpfiT/Cd+rN6JeEj2Br6XRspLstd43exb +/k/+H6zxAZlPmaP5XXw9XSbfL+9Fz+PfeVnXdtbrKt+Yc525KT/Cv5Tn41vx +Y/goei/3n/OU+cTbqX3Mn8wa8uflAbg3vguXpuPkVvLl+IucQXkB/1CelPeK +l+KDqEZmp3wu/jQzXp7J35JvwIPwzMwV6iJ3k2/KOc68kVfwr+QFuATtLZ8k +P5V5SU3owMxb9fPU38c35h1SycwB9fbqT2c+UVNqrXZF3gm+j2rSkWrnq32A +b6LB8iz5F74Pf4H/wbvqnY5vzrnBK/HXeCG+DT+eWcwb5V6yrlTZOymVGYM7 +qD+T941fwAMz2/BE/CMvk2fjW3gpn2um30Yemj5eiD/Ck3Me8EM517xe5lbm +Jq/oc7X0G8q95Q/zf0FD5NnyNr4vf5H/ycu5vpt+d/mW7G/8IN0uPyE3zrpk +fmWuu7a03n74ZPVnc37yP0K1M0vVL1D/KLM9a0VlqJp6R/W12beZ19RWbZja +T3gK1aFGaheqbcCz8HpcxG+Oli+X52QOUne5hzw6641X4c14Eb4j+xcfnfOQ +OSKfgtfhSfhFPCizH9+d3+dls0f4z7y5Xjs8HG/JWuANeCoehZdlNvD6mcN8 +N6+r1xj3yfnBs/HbeAy+As/Fv/Jq/CX+F9/Dc/XQ7ymPkf/Fq/E3eDEeh59K +nR+T95jZm/nuc+X0q+NTM+uzX6mPfE/eZ/YY3prz6toWeifJV8qb8ozyIv6x +PC2zBC/HDXJmM3vlvvgz/ok8h78jj8VD8Ty8P/WUz5DH4s1ZB3kN/1Yu4XeX +yOPlpzPv8rzyAXKnzKucPfwSHoL74ntzDbWU28sj8Fa8OPeBp+Mb8MP4YKqX +uS/3wxsz13I/VJ5qqHfOuc2+yayl+nSs+kWZRTmvdCZVyAxR75IzkfdF/eRJ +cvnscfwLL+OZWul1kK/KbMAzMm/kR+RDaD3+j1dybQO94+T+WcucJxomPyBX +p5fx9vyGa3vlXuRb5f/wUrpTfibzNucp/x9U1bUV9f4HQ42TxQ== + "]]}}}], {GridLines -> Dynamic[ + Join[{{{3605299200, + GrayLevel[0.9]}, {3607891200, + GrayLevel[0.9]}, {3610569600, + GrayLevel[0.9]}, {3613161600, + GrayLevel[0.9]}, {3615840000, + GrayLevel[0.9]}, {3618518400, + GrayLevel[0.9]}}, {210, 220, 230, 240, 250, 260}}, + Replace[ + MousePosition[{"Graphics", Graphics}, None], { + None -> {{}, {}}, { + Pattern[CalculateUtilities`GraphicsUtilities`Private`x$, + Blank[]], + Pattern[CalculateUtilities`GraphicsUtilities`Private`y$, + Blank[]]} :> {{{ + CalculateUtilities`GraphicsUtilities`Private`x$, + GrayLevel[0.7]}}, {{ + CalculateUtilities`GraphicsUtilities`Private`y$, + GrayLevel[0.7]}}}}], 2]], Epilog -> {{ + Directive[ + AbsoluteThickness[0.5], + RGBColor[1, 0, 0]], + + LineBox[{{3611188800, 212.72879241512837`}, { + 3611188800, 257.21097084166985`}}], { + CapForm[None], { + GrayLevel[1], + PolygonBox[{ + Offset[{-4.6, -4.25}, + Scaled[{0, 0.08}]], + Offset[{-4.6, -0.34999999999999987`}, + Scaled[{0, 0.08}]], + Offset[{4.6, 4.25}, + Scaled[{0, 0.08}]], + Offset[{4.6, 0.34999999999999987`}, + Scaled[{0, 0.08}]]}]}, { + AbsoluteThickness[1], + GrayLevel[0], + LineBox[{{ + Offset[{-4.6, -4.25}, + Scaled[{0, 0.08}]], + Offset[{4.6, 0.34999999999999987`}, + Scaled[{0, 0.08}]]}, { + Offset[{-4.6, -0.34999999999999987`}, + Scaled[{0, 0.08}]], + Offset[{4.6, 4.25}, + Scaled[{0, 0.08}]]}}]}}}, + DynamicBox[ + Typeset`ToBoxes[ + + DynamicModule[{ + CalculateUtilities`GraphicsUtilities`Private`pt = ( + NearestFunction[1, {1541, 1}, 3, CompressedData[" +1:eJwl2nc41t//B3AjQshKdjbZO1lRZIayV0kI2clKSkZKJDIiq0QhK0miRCER +4SNlZCWUmZXE7/n+/v5wPf64Xec8X6/zHufc183n5HPChYyEhIQUfxSUJCRz +2jQj8/0zWrnhYypL8ERNbcoyrBY/Z/gHXmZqryb7MqMlZ5TPSAEnosM8d0K9 +PxL8tHBDjuISPSzxHPrMABlG4uP3wEZ216m9MMBM4wgHFI5nzeaC/c1z6zzw +BkmLGR9UU8kpFYC5T0ycReGJHyKvxeAOPhIOSeh2p7xTFnJ8jBVTgO07T0cr +QdmLjKqqRJ6q6RR1mDr3ZuEQkUs0w/Awkeu0f4E2kSvTgFQXnvyP316fyKXX +w2hM5Lpa7GlK5KqLbDlB5JFWuGRFzM+aMuVIzG/qdeQMrL6uk+1C5Gji/nOW +yPFvxcyDyKH0sdQThvsWUPtAmaJwZz84Pm75+jyRh1uaI5DIY7XzQjCRo+25 +2CVi3gq21BiYJFEgcB2WFcpXxMGZLOP2REjFPmiTDIXuuP9IgY43osgyiXko +mBKzYOaVHO5c2BdYq/wQGp5Z8C4j8g1f2qyAMTa7blTBBhPhhy+gkpr9QBPk +39Oq2w81Ey3++woddo07DcF00q1LY5BuTr7qF1xvzuEl/Tqj1Rkc9Gc/pH/w +zE4CGnf8rpeCH/l8r8rD9ja3XeqwlcuW2xQ2NqhpBcJqKrLrjTCmXvfbW2jh +H6/YApcH2MY+QLkyadX/YKmFw+wPWHC/5jjdwIxWoNVW4W6oQ6u9xQgnLnQW +sUJ+/UlyXpg9z1wtB73zbWgVobpNjtMBONgotlsNcqRquenANDUfDmvYLefx +wBbS7neRcIBX99hpOMH6XZYtznCd9LjpWSi/bvjFnRh37qiTJ3w8ofXTm5j/ +q1qAH7RpkYsJhNq5PEVX4OVUdvlIWHuTpS4ayoTQfLwBz/lQWMXDAheSkVtw +xO6vWxLkPLG6eAda6i2GpsFEjV/kGZBSfGxPDlwi/3jwMZTcaG0shm4LTYal +cHjwhcNTyN5TNfkMmr8v86mBCa+L1mvh+2cPI+rhjpJcmgaocT8zuRFWJdx+ +2AJzz156/wkOOASf6IWs5ucH+uBNTffZAdii5Bw4DMkkT22PQDUB29hxGMRu +wTgJK3ebZkzBXxSGAj+hyKZOySx0WtJUXIDGHyRsNmCxb3/1JqRijWLZho2O +A53kgzNa+yivSVLCsGK5OCqotHr9KB1MzlTM3w0XNEdJmeCxyZunWGBRnHI9 +K9wpO8HBDp37bgVzEuPw/ZDnJcZpTrrND7+e05gXhHeqU4r2w0U7LSoJaEw6 +6yIFqYy0+eShy+J8uCJsTM0cPECMo6arokKMM7qUpga/xGSvaBC5JAzMtIg8 +gXn0R4k8XMc89Yg8b9bfGxA5aE2jTWB/3tZfa9jQbjd9DnL779T1hqF7n+b7 +QgUnGscL8NFaTV84vM3P+vY2tKUOMr8D+Rc+T6TCyvq7FPdgrzW3bgHce0uw +rRZm/ZXrGoeuY8mOk1Dq/fLCFHyVWs04B0dkVczWoYCbVh/tENbF+L7rblil +SL7GCLXJ3+3dC12z9Wz4oFT042kBuHaOJlQYxh5szxCHj3tNBhUh2dEaR2Vo ++5z3uwqkyVicPQQ9TyVv68O3XX8jjSDXYWcqE9ghqMhoDoVTs1IsYfhOSg4b +Yp6ZPv6TMMbuUKEjHG4vFD8DlTQYyl3grbJgBTc4xTta4wE1k/TVveBCAMdR +f6g3ebUtAOZa/TQOgsdV6qzCYFGx4GA4kZM73jECVm47uMcQOf2aZ2Oh05iU +fxysNUtbjYfM77ZDE4n8Sm7bSUT+wq7IFBhwI+9mBmz/S82YBQW9/FNy4H8m +R7LzifxvivkLifxyLIWPidx7vpeVwoSYYwoVcHLtWc1TqOHOo14N077GvKkh +8hvO67wk8tdbtdXD9RzRnkZoynjb6h3R56t/BlqI/rq0TbTDl2Keq33E+IbR +Jl9g+bnsRwNQ7OZz0mGYX9JlOwJ5OqafjsG7s2R03yELPZfrDyKPlOLraUhl +Ysz2C0b6nPWbg8HldwV+E/2Q27q2CQdP7B3dglbnZVRIh/EcTNZPJodGVU6/ +KGBz70UdKqi1ciebBtbtKV2jhUpKLaa7YbnlyGNGKB70h4wF8taIP2ODNCqJ +7PwwyvaxvyDcDm38IAyXXy5fEofeg3SfJeH0prCMDHTm1rwuB4fVbcYUoPVJ +f9UDsCc87s5B2Pq6/qgGrNTiL9aFEk6qOwxg4VVzByN4rylm93EYo/PzvC20 +0a9S84IaxVdbfaAg3XFzf7jQNXsuCMZai2RGwOqzGX9SIHPMlepXcP2H8eE3 +RA597o9NsIiu9nsrPJzym6UH+ua7nv8BOxqNZBi+4bro+ZDIBIcmDBZZ4Cyl +fiU7pDPUURCAx3rUlZWgxURdujJ0WFH9owK99qrUHoLxdkpq+jDF89k9Q5h1 +SeHfMfgkR+7VCfisvILHAta/kblsBd91l32zgR3jUpr2xPzLT3JPEvNTSJKe +JuYXEW90Ieb3FNH2gXsuFeT7Qe4EIYoAKFku0BxM5Frep3eVyEWR8yiKyMXK +Q30NuohkuV8n8ilztcUR+cLYjFKI+XYwmj6Czrlp+UVwU5XnTwm88zn/WBmU +OC9+vwK+pa9cfQrti5QNq+HNUZ3lWih4qV2vHtaxmWW9hr9MHI++hUavQtM7 +4IQN6WwnDFu5ptUNWW7Tp/bCEomUmT6o3cp56AscPHM/eQAGbItODcFdmWVq +I/C+ktLtMajSXfd9AnpQtyVMw7agiZEl6MR8TnEFbpQuXl+DYpNbcpuwMSL6 +2ha05aYdJBnB+7UmSYYcXjdnj6aAvAs5X3bCmjhhKRpoKvLkKi2capT/TA/1 +ZI33s8GR9t5LHDDYza6bCz7KcbvIBzVV5zsFYH/fBUFhSEUf2SEGcx9T80tC +ZZ3EQGnYNcL6QRa6hWXtU4AkbIIBSjD9aVGrMmyZee6nDttafq8fgh/zpa8c +hr0nCxN04WfV8T0G8CvbviwjIk93avFxOF7WLWcOJ2/S11rCGXcDLRs4ezSm +1Q4uCDSanITLJFt9jnCj9sJ3F/gvrcLTjchxYfa3B9wp7ULmC2lo8677Q/rp +QYYLkOWB+b5QuPdKYkEY5HBol7wMeVSonkVAvr3aalFQcPlyUwwU/fTS4DqU +ipO3SYCybj4jiVBBp/hsMlTd5g9MJ/p6nin5PjQ0NeZ4CI0lb+QVwhM0zaJF +0OIHaXkJtH6rfqAM2ueFvKqATnaL7dXQRVnS/AXRzz3uAy+hT+fIdAMMO9JF ++QGmipdpfoN1zzPvjcLRI7Hr41DC/nT5FGy8ycy7RPRpNmh7xyiuv3LNV2LQ +Q02SQxLeamUPlIZfR5YkFaAP48MsdZjhT33JFC4qdKsGwqtkAW3BkKlrj81F +qHDOJvAKDM4bKb8Bt+jmhXKI8QYSq/Ig72O5I/lQSzvQ8TGMCv2X8RTS/NjF +0Aozq55kt0GJqyaSHfAYd7JBN0w044gehHx8dczfYOWcw/1R2HM97/UkZG0Q +3ViAhfFtsb+hsp3n3lXYKkpfsA5tVssU/sKZpuNN/2Do7d/HScZwf51KGSGD +9yQO+FCMEfvO/n874auW0Js08JvTq8e7If9dnQl2eHhxzpULntFPn+aBUXla +nnww/8/MnAB8d/yOnzCcfKy+LAopyX4EikMR28Q/klCv8mCYDHSjGd+Sg0W1 +ijuUoQTnAP1heOx81G1t6P1BkkUXJgh8TtWHZRevsBvBrp7994zhgngPz3HI +GBWWZwblBoUELeEJhc4Ca3j+ZvB+O1il9kHKER7I8j3oAa1X2Os8YfCxJg0f +WPtvj3YA/GrxujkQ/n3iph8CuSiZ2i9CtZMvjcOhQ7XzpyswnJ7ePBK+fuVo +E0v0Yx+lcxJ0CiqbvAMjO63d0+Dby8Xe9+D3z+aL2UQfZLbO50Hh2MLVB1B3 +xDSkgOiD8sbfRzA28UF4MXw8ZURaCts0VyPLoVFeZkItvPVo5Xsd7C4zUX9N +1PGK/FcTzHzncKR5jNhnPc9oJdZl4Jx+BywYe5fbCaem961/guKLISa9RF/X +ewr6YMW25FY/XKaMtRiAoXvUdozAeq5UuzFIIrhQOTFG7IPyT0/D2ya0r5fg +o+uDIRTjM1o/E5U+7YRS6YmiNLCqQPszPXzdVKLABvv+hc2LQXJ/bhdTWFkr +MX8COpKrhVjAuju28bYw4HnaM2c4uclIGQLv6PAlXoSHE2Q4wmHOPhOpSGh9 ++KZlPHx/jbIwDwZ37ZHNh8LsQi8L4NWiI53FUKXjytozOLUnMaIGpp7M2fUS +/p6v39cAS5j+6rZBWzua7nZIlc9u3wmrf4lOfoIuisq+vZDH+kL6MGzPjeIf +haHTySXjRF2hlQ1T8FbW/NQSUU9Kme4KlIn3KViDJNHSFBuwK2z+zCbMDShr +3IJ+nj58pBN4TtjPD1PAMbMydSr41NDnHg00V5232Q1TOOZ72aArU5k8J1Si +8UniniDuI+nFfbDvz5wJPyxYLC0VhEHT3nQiUG9UynM/ZPsy1yYOp7pK90vB +F63esTLQtmZORxFmps01aEDPW6X7tKDaNe/wI5D2stSQDhwMnFPVgyXepRkG +8JKr9x8jaHxSytoE8ljOVR+Hc8dK95jD1zreAZbQUXFO1g7mscyVOEN/2tJd +Z+HhHd4e7kS9v2dFvGHlzycxvjBy3Ou7P1H3gKT2BSjYM3s/CC63PSENhe8a +vRzDYGqt5Otwoh+Vs9wRsPD2bPoNYrw2J7F4Is+O/pe3iP8LbBy+M0HcHwd8 +0yDddAlpBoyySxPMgQ13aKvz4GZHhG4+VN651l8Az2t6ejyGTkJa5U9h9slq +rWr4NU28pwYep2FdrYc3j8Rda4CtYSTsTVBzfka1FYaJOna0wZrT/53sIPJn +GCx0Qune1xHdRL4Xd1oGif4vUdt8I3KKX54ZJfJlu9P9IPJc1TBbJOYzmhqm ++I71H1FdlYKO+TUXZaGEmyKpAnw7L0V7EC5t8fEfgcbcVMZWkMq29+FlGNbj +adEFPY5mlHVD6xct1P9B+Rz+V1/gjEe/8Di0IdNeX4FKspyZnJPoe77eCjdk +2htowgtnN7vIhWB+a4ynFGR2XFLXgiQ9+9KPwDmdY0s6sE38UYEBvLrmsNsc +LiS8H3GF+kdKvNzh/bWEjXPQ3NGcxQ++kP2me5GYZ/JN7yXomZF/+grkIfe4 +GE2M07tcegsOxH5WTYIK6rWtd2D84j2LNDj58PLYXXjI1snnHkyn19nMhkuN +ItfzoGEQDWs+kVt89n4B3PrWKf0Yluul6JdCFg7eSzXQ6yMZzUvYfPV7aj3c +d6BVoAEG/ywqb4SfcuLV30Exc9+2FhhFZWbVBofqFCfaoZIfm18nTBT6++/T +JPGcatj7GRacMjQchdvMUv3j0LqVwWUSVob9XpyCu2T7wn9C5+81u+bgq7uZ +6Qtwr3G40G/oS3a6cgW+rz5yaB3ynxNu34C9PT+/b8ODDwPZaX7gOUtFc5EW +ynhmDdLD4k4ZDUYoLP82hxneT7UiZYXcGzNObDDdIfwtB2R5wyjMDW8JPry2 +D9LEKk/zQVKTUyXCcG6wRE4Gemhq3pGD3x/0rCjAQY+NmoPQ6mM8hxrsluUL +04DGKVVDmvD9uu6hI1DbfiBXBza89ibTg6oCZM4GsDom5Z0RzGcZN7SE+4ID +n1jDjAHq3Xbw9n2Z7lOQlvKtvBOMdbdKcYbhMuHW7nAjmbH2HLywls/pDT1f +fRj2hz/4TmlegE7RS3lB0MaI3SUM9paVNIdDU2ZN0Qh49Kvrz2io4FbldwvS +R5mE34fs/jM9+VDQMXp/IZFX7WVvMXRbFhZ/Bhudtz63wI4TdyXbYL+mQmQ7 +nOfykPoEuf77L+orFGny/ToI5Sp2yXyD+vFaA+PQ/OKgzCR0dA+KmYLnrJgG +Z2CgzhPZWfgvaHRxDpIF/78R8nrX5uFNvvHBRWLddofLLcMH/9hiV2Hpz6dD +67D2i7H8X9j1LGp4Gw482KdANoX743bt9R3wn9eCAjUUE7aPY4KKLGsjLFCT +LElpL7QabhnlhFGp8spCcIhy1/cD0FzJzksFtrkUr6jBmreGlIdh0tWbIkaQ +qnKwzBheHpVQPg49NTv0LOHRLToPR1gneXLJCco7lIa6wKKbW2RukLfOOM4D +pv7MZvaCdJzzmT5wI+RWSQD0ffxNIQj+6JeuD4G9B7o6wmHZCsN8LBQWOh0U +B++ZV2zHQ+Yo0thEeOPpcYZkSDKel54Cg5iWeNPhnNbhxxnQ2S9JNgt+zR17 +kQOPd8kdvg81pHtOFEK2WeaACpjA5bz5FFIYVUVVw7CLO+hewKUi85SX0O1r +Pvcr+I165WEDtDyoI9UE291Sqt/Bw+nfNVrhixbFljZYINz3uRNGTLD++QI5 +mvZaDsLKPLanw9DwCjvDKJw4yeE1Di+pc7Z9h6xcXCJTRN0bXFEzUO8L9+gv +OPqcR2Mehqbuy1yExWZ8FquQ/qPg+21YWCIkTDaN9Y0TjtwB/fRE1akhjcj+ +jF3wPoXYGh1UnRAzZ4C9jeIVTNArT4J+D6S8Inlu7zTx3pNqZYcH1KWFuGAX +p8xVHui2IfONF2Y8l7srBOVT5VdFYHuAgpkY/CerRCcNUxkOeMhCqfkDLfLQ +seRghDL8c0NlWAUmuauqqkMxPbX0Q7BJWH1FC9pTaJzQhsvjGmVHoXCeprsh +fH1Zq/nYNPE90WEBU3idU3vIHP5K0T1+ElbeMD7oB6uLdrw/D2vbaq0DYSON +SPBF2HNjuzqaGPdGuUIGVIxjkmmaJs75fcJ7ZrCvVrpTtBeOjByX4oBUSh2K ++6D1SJP2friuUOGkDpWH47JdYHusPr8bdJTfWeABY2OvPvGB/XIhdSEw+Jrr +13hYI6PFWg29b5R510DBCe6WWng7bSPoNfTYevqlFXK2C2cNwG6hlJUhYrzL +5MYjcFluZGuCmO/uXcc5GH6WVpD0J55fb0LDyOEMx3QvxU/iefwumgbSiyoM +08K3EfeVdsPQAYZbjFBG8fIPZjiZMHuIFd6bsktng1T3lPW54SjZUpEwTLd3 +JN8Pjas/2onDWvdiWhno28TuIgeFuWPrFX4S+8LVPQdgUpez90GoJ9bTrAq3 +IrX2acCqobIgTXjuAE/XYaid/VnWCLoe/FtnDK/18ugdh200rict4a+H16et +IZ3WkwA7aBq0fMMR+jOxsZ6ByU9U81yIcfVOSbjBvvGrzz3genjBYS/IztHW +4QPtTRknAmD4TwWfIJgTY70RAsfqchguwx3WTZkREC9Z4Sjotl9K/Tq88fZ4 +axwsPnXBLAG2b6QPJ8K5lDr3ZMggO7KcAmXbya+kwwAyw9QsmJrlzZcLnysn +ldyHG95fGgshF82/Y0VQ/SHvlxJ4ZeDsfAW8HxgXWgWbGMsonsOJku7EF5BS +b5WzDoqOsxe+gvrh6nJv4M2qKL1mWGryqKcVds58OPkBMvExX+giroM6JZIe +aGFlG/cfsX7xeXlfiXUTfScxBAeapp5/g5snaY+MQZ4N6Y8TUDPFzOYHdJIJ +mpiGD11fbczBqfIk20Uo8de19jfR71u7Q9dhY43jH9JfyEmuaLMDGhyjfkEJ +E9KG2Kjhp9GK4F2QRSKmnw5aB9oqM8ARGvJ1Fiho8dlqL3TLKX7ODuflzYN4 +4Jb9w1URyIVjkwp0/MNpoQ7zjyxUHYLi/ekB2lCFdOb3MWJcs5tLjjB5rWs+ +Brq2lxy5TnyeF5sWB8cMNA8lQpnssoS7sF07QbKEyJ1keO4T/Ooq8roHPlEl +Z+6D5t9ra7/CB8piNBNQ8xvV41WijqqJzXX4I7bB9C9Rp1zw+jZ02mluRDaL +fd+gdO4OOBT9Q5calts2Ze6CUdI583RQ4otlGhMMlWie5IQvDlt58cB166nf +vDAwmoZUGD7LzLwmCpcrJOjFof+wMacMrFj+licHF2j8RBWhNB9Z2QHofSBZ +UQU+OSZYpwZ/nXl2+BB0T/xsog0fFbj1HYWTdX/s9aHzNKeHMXywXbJgCsf2 +aASZQcfDjlHWMMd6kcYODntfve0AuaOZ2RyhfWZ+thPMrFAUcoFfW5qLz0Lr +5akaT5hGE3rIB/bx7mr2g+bHJHsCYfKZVzYhsDvEZOQiNC3wm70Cb9WRBUTC +j93JG9GzxHlMMCIWGm0/2xkH4/boJsTPEueIfpZEqGe9wZcCr3nHPUqDzVFc +0hlQu0JDLQdGtnQ25sHGIUf9fKhJE2n5GF7mZRkqhq+UHp4phf+MlGbKodqZ +Ft+n8GKI9dozWHtr+lINPFC3K64epkccm3wNN47e0mqEdZ+Y1puJcX+wu3TB +vBK7hm5I5p/F+R/R1wPfAj/Dd5u83V+gcKOT5CCMvZYfOwynjSbHR6ABk+ih +cVj82T3jO6TNKl75QfRBRLrkFzRTV2JfhVVkwQHrkLX1RecG7D+hHrMND7Jd +HiWdw/t2qEFtB7R30/5NBeslY4x3QZ7fLY/p4MglQ0cm6JJ8ooMTer9yLJSC +V1gu2ZlDI86AaUvIzn8uyAZWStskn4QTBoof3KBexKzKJbh7zoGjAA4umz96 +BB/9NVQqhprUKifKob8g641a2Gf78c9HmN2i8WUNxl+aVN2AYfIJ2ZvQJmfo +DOk87qOgsDkaeF24lpwHBg+eduWFrknU7/mh9pZ1ggjc+m+NTRbOxuVclIeD +WrrDivDFk9QHKjAgWlFKGzqpDiUehccXo37rQSmH3ppjkJs5jNMU0r4XCD8B +pxXOH7GC/TMcBTawObeRyh7m0zJ9dIQnJ8qtPeCxDOuXnlDNlITHB7LXmYyf +h1T+azqBcFUk51Ew7E2e87oEG/VTuy7PE9+XqctfhbnPvqdEwYRz8esx8BKf +ot116Pl5sD5unjj/SkQmwtbIgS9J8OjbGzIpRN0600N3ifGi0xXuQa1m3bhs +qKFboPwA1l2zuPUQqrbumCyEtVRVakVQWf9Mcsk88bsTpplSqNj2RrMCyhny +zj2D5XGd2jVQuj08sxZKHBvSew2FTTIetBL139LfaIMCXeumHfA+w6PCTsh7 +3GrrE8y5TWnRC3m6nxX3wXtMLmRfIKcZi80AzEhuKhuCbL3+lCOQ1eLT0wnI +YJVAP0f0IU3dZQHS9f96uQRpbAzd12Ds3Y3Xf+DOr49ZN2EMh43XFtxhR/WW +ZAHn/cznHOSQdNDVjwJe4WJt3blAvB/e8dDAsKyAC7Tw75BAOz1cP3k1hBkG +5sh27YEr30aE2eCS46FeLuiXNye2Dy6MZkXwwVmnTSlh2DfhWCMKG1zfaYnD +oqn9HyThHY8EcxkY/mtpSA66eVudVYRq/ryhKlB4OYpcHTIETt88BCdCKnO0 +4c0I7XfGRA7yx8bHoWM0Xb8ZNNjpf9oSKlzvm7GGPLtUA+wgVXzOPwc4kOjG +cAa+Zeq46wJL78gKuBF9SN9Q9IJiuTftgiAL/+JECNGHBxbeYXBKqHYtHHYX +8kREwLr9kTRRsKD4R3IMDCkrL4iDTrJ7ZBKg0dOQF4mQ9/nh9hTY+qp3MQdW +ah68eB/ea8za8RDGaJMlFELfZte9RdBW70NuCdRukxYrg2wf19Wq4NkhrthW +GEAvN9lGrNMhXe0OmJ7nR9JNjO/SHDwARed83OfgzFajAcsi7iPp/keskOz0 +LCX74v/OQU3c0PCap6oILNnNKqECvXjd6RzhRJJ8ttMicR7YknKBBjNJph5Q +tKouOYD4XJeB4zrxee3XojjYI/FQNQE2Mqo4JMOcgTO5WdDW57lwJewejXhe +BfXNjfSeQ+WDo+51kJV815NmmHDhP/X3kGIq5+MHGGbrceojXG5XWOiC5w5t +X+mBYxXvGfvgp9ST8gNQj3r/2yHYcPG3+QgsdYwN/A6Fe07snIJZOtzpM/Cm +WOWLebgjK8xgCV7crTuwDJciGD3XoMfywOYfYnzXgvhNaPPFl2cbdhmqlpEu +YZ5XFJo7oMnLz28poWXNY31q6FJ5zIweepbt62eAASWL9szwakGKKxu88eDs +Tw54O/egLzdMz9q1sg/mZgyF8MPCtLItwSXi+ouIFIHVt82oxGB9glC8BHwb +t8YovUScd96nysKvV71yleDY5UNCB+F0GGORKlwPfPZUE26fv6Z8BFL62dTr +QHpv8cN6cM+5f80GkMut0/AYFHTJ6zKB4k7nLU5AuVM6X82hiv3eU1ZQy2Z6 +3AaamsXPnoReuv+RuBP1aRdGn4NhWiE03jBSw/CWL1GnKjfLeZikPJ9+Ad5V +fMMdTNQpl3w/FD6SdhG5BMskDpRcJurcTy17Fb4TeKJyjahn78qx23CGpaU7 +GS4y3rVKhSS06qcz4U7q3ZNZRD2Uox65S8R183T+PuQmiQ54CI+W7PxYCH2t +b4gUEX0rv/W1FHqcztCsIeZrLKP9AI2jv+YvwGBZh60lmDf0zWoFLit+p9mA +GZPzvuS/sX/TpVBnheE0Mv+pQub1s6c14KPvObOasLthN+VRKBQ0r2QK28dL +053h6U+Tgmfh6iueCnfIm5Hw3hueN/XeCIYc9ZL28bCsyGXqFtROzwpIgt7n +6eLTIPlpHfYMmG586eE9KKH2TDYHvtk/W58HLfcKGeTDmR0OfQWQZaR9rhi6 +pZbsq4b/IieKa2CSH5fyS/jS6KZpAzRVeTvYCCdENt3eQXpyz4g2+GDhAV3H +b+JcPXC3Ezq9MKzshc98xMeHoScti/YoFHy8mT9OjDvW4ToF9S9Xt8xAEq4c +0Vkiv4XvzCLRjyVrw2U4mKBVsgqTxcXo/kCDVibvv5DU5e/Hf7CGdEKaZBn3 +qeqzxR1w6HPWiZ3wTkDMU2pIVmp1gR6+MNDsY4C+P0QPMMNh3o31vTClfsyG +AxrZfqjlguRrTzn3wdrke2F80E8mekgAinZ4aQjDVMpDJOLw2AOR05JwhyZD +ozT0DxmNVID7WdsmlOBIZaXOQWj8K3KnBqS47ummCeuELN4fhucb1cV0oNgp +4ThdOPqX/pc+TE9fMzKCpoojT4zhzu5W+uPwlXeFjxkM3JXRZQEntM8l2cLM +UbPf9vBEuJr5KdjwnI7VGQaZrwa6QqnF4c9u8Ht8i/I5eE+s/K4XNGtJ3/CB +NM4Rdv7wDYlHXQAMzjrBHQRfvz3sHwIpf8m1XCT6qcLsdwWWf+55ex2ubTWx +34QawlXeCcvE90Z32JIh870orxRo2xTQmAZzZ5z3ZsAfjBae94g8B3XeZMMA +R0XWPPjymtC5B8Q6le1peAj1+yj2PIKJ/1bciyCPUR9zGXQ53+xWAUsyquuf +QpXp1LM10DLG6uUbmPVEl+Et0ZfeAy7NUHxTpLaVWBcBtt0f/rf+VM4dkMR/ +vaYTJjT0O/XC/360Pu+DXLtf0H6BRQ53q4dg84YNzQ9Ix29wahqa66tU/ST6 +7StGPQfH0jhOLhDr/Zrm6RJxXU1u7FyBz+l+2q/BLYWBij9Qx/4D5Sa8GfnS +bgtydGdSkK9gv+djb0MLpz6TjtLDDM1CN0a4xbgUxArLQ9O22eCZcbVrnLC1 +6loqLwzlluQRgBIx3Q+F4G0r7mdi0HajskcB0p6xtjsAX334N3YQCmTpLWnA +Poq5EC0Y651Mqg1/HRpm0IfZjyLTDVeI37Pt5zWGz8bOS5vB8GhqYwcoM1f6 +3yk4Zmnu4AR1RXM8z0KGDwpxfivEvtOxNRq2ZFYfLoX3ntLmlEPfD05/KyHb +X/qq59DD9qzQG0jPzkbVCy1TQzr+QLHSzv2bcPudUMwWfLTySYN8Fec3c7Fy +WpjNPJC0D35PVLPWWSXe7wMbulDJNjTLAMYK1IyZQLFqeS9b2JPRvdsBhl32 +qzwFO/TK1pxhoKRxxlnIwzSr5gFbVuO+eULfAbGrPpC94b2gP2zMd2sJgMze +BbShsJqEPy0KnvrecPAapGo7NXgd2iRn8d1aJb7nV3t7GxbZD7jegWZaodRp +cFOIveQufEhTY3wPGs9bLmbDnJo7SvnwsCHDm1I4I112pgImsxhTVsGJoTjD +FzC+UWzuJVFn4fvEV3A4zk3+Dbzmu7OvCcpYFAQ3w/6DOpzvifrJIx0/wvaU +rZl+eCE0K36AqPeUmsww9BENvTAO2ejY2SZhw+Lz2ino3mfp8BMyvVzZnoX/ +B69ISgU= + "], CompressedData[" +1:eJwl2nc8l9/7B3AjQshKdjbZO1lRZIayV0kI2clKSkZKJDIiq0QhK0miRCER +4SNlZCWUmZXE73V/f389/3h7nPO6rnOPc+4HPiefEy6kJCQkFJQkJHPaNCPz +/TNaueFjKkvwRE1tyjKsFj9n+AdeZmqvJvsyoyVnlM9IASeiwzx3Qr0/Evy0 +cEOO4hI9LPEc+swAGUbi4/fARnbXqb0wwEzjCAcUjmfN5oL9zXPrPPAGSYsZ +H1RTySkVgLlPTJxF4YkfIq/F4A4+Eg5J6HanvFMWcnyMFVOA7TtPRytB2YuM +qqpEnqrpFHWYOvdm4RCRSzTD8DCR67R/gTaRK9OAVBee/I/fXp/IpdfDaEzk +ulrsaUrkqotsOUHkkVa4ZEXMz5oy5UjMb+p15Aysvq6T7ULkaOL+c5bI8W/F +zIPIofSx1BOG+xZQ+0CZonBnPzg+bvn6PJGHW5ojkMhjtfNCMJGj7bnYJWLe +CrbUGJgkUSBwHZYVylfEwZks4/ZESMU+aJMMhe64/0iBjjeiyDKJeSiYErNg +5pUc7lzYF1ir/BAanlnwLiPyDV/arIAxNrtuVMEGE+GHL6CSmv1AE+Tf06rb +DzUTLf77Ch12jTsNwXTSrUtjkG5OvuoXXG/O4SX9OqPVGRz0Zz+kf/DMTgIa +d/yul4If+XyvysP2Nrdd6rCVy5bbFDY2qGkFwmoqsuuNMKZe99tbaOEfr9gC +lwfYxj5AuTJp1f9gqYXD7A9YcL/mON3AjFag1VbhbqhDq73FCCcudBaxQn79 +SXJemD3PXC0HvfNtaBWhuk2O0wE42Ci2Ww1ypGq56cA0NR8Oa9gt5/HAFtLu +d5FwgFf32Gk4wfpdli3OcJ30uOlZKL9u+MWdGHfuqJMnfDyh9dObmP+rWoAf +tGmRiwmE2rk8RVfg5VR2+UhYe5OlLhrKhNB8vAHP+VBYxcMCF5KRW3DE7q9b +EuQ8sbp4B1rqLYamwUSNX+QZkFJ8bE8OXCL/ePAxlNxobSyGbgtNhqVwePCF +w1PI3lM1+Qyavy/zqYEJr4vWa+H7Zw8j6uGOklyaBqhxPzO5EVYl3H7YAnPP +Xnr/CQ44BJ/ohazm5wf64E1N99kB2KLkHDgMySRPbY9ANQHb2HEYxG7BOAkr +d5tmTMFfFIYCP6HIpk7JLHRa0lRcgMYfJGw2YLFvf/UmpGKNYtmGjY4DneSD +M1r7KK9JUsKwYrk4Kqi0ev0oHUzOVMzfDRc0R0mZ4LHJm6dYYFGccj0r3Ck7 +wcEOnftuBXMS4/D9kOclxmlOus0Pv57TmBeEd6pTivbDRTstKgloTDrrIgWp +jLT55KHL4ny4ImxMzRw8QIyjpquiQowzupSmBr/EZK9oELkkDMy0iDyBefRH +iTxcxzz1iDxv1t8bEDloTaNNYH/e1l9r2NBuN30Ocvvv1PWGoXuf5vtCBSca +xwvw0VpNXzi8zc/69ja0pQ4yvwP5Fz5PpMLK+rsU92CvNbduAdx7S7CtFmb9 +lesah65jyY6TUOr98sIUfJVazTgHR2RVzNahgJtWH+0Q1sX4vutuWKVIvsYI +tcnf7d0LXbP1bPigVPTjaQG4do4mVBjGHmzPEIePe00GFSHZ0RpHZWj7nPe7 +CqTJWJw9BD1PJW/rw7ddfyONINdhZyoT2CGoyGgOhVOzUixh+E5KDhtinpk+ +/pMwxu5QoSMcbi8UPwOVNBjKXeCtsmAFNzjFO1rjATWT9NW94EIAx1F/qDd5 +tS0A5lr9NA6Cx1XqrMJgUbHgYDiRkzveMQJWbju4xxA5/ZpnY6HTmJR/HKw1 +S1uNh8zvtkMTifxKbttJRP7CrsgUGHAj72YGbP9LzZgFBb38U3LgfyZHsvOJ +/G+K+QuJ/HIshY+J3Hu+l5XChJhjChVwcu1ZzVOo4c6jXg3Tvsa8qSHyG87r +vCTy11u11cP1HNGeRmjKeNvqHdHnq38GWoj+urRNtMOXYp6rfcT4htEmX2D5 +uexHA1Ds5nPSYZhf0mU7Ank6pp+OwbuzZHTfIQs9l+sPIo+U4utpSGVizPYL +Rvqc9ZuDweV3BX4T/ZDburYJB0/sHd2CVudlVEiH8RxM1k8mh0ZVTr8oYHPv +RR0qqLVyJ5sG1u0pXaOFSkotprthueXIY0YoHvSHjAXy1og/Y4M0Kons/DDK +9rG/INwObfwgDJdfLl8Sh96DdJ8l4fSmsIwMdObWvC4Hh9VtxhSg9Ul/1QOw +JzzuzkHY+rr+qAas1OIv1oUSTqo7DGDhVXMHI3ivKWb3cRij8/O8LbTRr1Lz +ghrFV1t9oCDdcXN/uNA1ey4IxlqLZEbA6rMZf1Igc8yV6ldw/Yfx4TdEDn3u +j02wiK72eys8nPKbpQf65rue/wE7Go1kGL7huuj5kMgEhyYMFlngLKV+JTuk +M9RREIDHetSVlaDFRF26MnRYUf2jAr32qtQegvF2Smr6MMXz2T1DmHVJ4d8x ++CRH7tUJ+Ky8gscC1r+RuWwF33WXfbOBHeNSmvbE/MtPck8S81NIkp4m5hcR +b3Qh5vcU0faBey4V5PtB7gQhigAoWS7QHEzkWt6nd5XIRZHzKIrIxcpDfQ26 +iGS5XyfyKXO1xRH5wtiMUoj5djCaPoLOuWn5RXBTledPCbzzOf9YGZQ4L36/ +Ar6lr1x9Cu2LlA2r4c1RneVaKHipXa8e1rGZZb2Gv0wcj76FRq9C0zvghA3p +bCcMW7mm1Q1ZbtOn9sISiZSZPqjdynnoCxw8cz95AAZsi04NwV2ZZWoj8L6S +0u0xqNJd930CelC3JUzDtqCJkSXoxHxOcQVulC5eX4Nik1tym7AxIvraFrTl +ph0kGcH7tSZJhhxeN2ePpoC8CzlfdsKaOGEpGmgq8uQqLZxqlP9MD/Vkjfez +wZH23kscMNjNrpsLPspxu8gHNVXnOwVgf98FQWFIRR/ZIQZzH1PzS0JlncRA +adg1wvpBFrqFZe1TgCRsggFKMP1pUasybJl57qcO21p+rx+CH/OlrxyGvScL +E3ThZ9XxPQbwK9u+LCMiT3dq8XE4XtYtZw4nb9LXWsIZdwMtGzh7NKbVDi4I +NJqchMskW32OcKP2wncX+C+twtONyHFh9rcH3CntQuYLaWjzrvtD+ulBhguQ +5YH5vlC490piQRjkcGiXvAx5VKieRUC+vdpqUVBw+XJTDBT99NLgOpSKk7dJ +gLJuPiOJUEGn+GwyVN3mD0wn+nqeKfk+NDQ15ngIjSVv5BXCEzTNokXQ4gdp +eQm0fqt+oAza54W8qoBOdovt1dBFWdL8BdHPPe4DL6FP58h0Aww70kX5AaaK +l2l+g3XPM++NwtEjsevjUML+dPkUbLzJzLtE9Gk2aHvHKK6/cs1XYtBDTZJD +Et5qZQ+Uhl9HliQVoA/jwyx1mOFPfckULip0qwbCq2QBbcGQqWuPzUWocM4m +8AoMzhspvwG36OaFcojxBhKr8iDvY7kj+VBLO9DxMYwK/ZfxFNL82MXQCjOr +nmS3QYmrJpId8Bh3skE3TDTjiB6EfHx1zN9g5ZzD/VHYcz3v9SRkbRDdWICF +8W2xv6GynefeVdgqSl+wDm1WyxT+wpmm403/YOjt38dJxnB/nUoZIYP3JA74 +UIwR+87+fzvhq5bQmzTwm9Orx7sh/12dCXZ4eHHOlQue0U+f5oFReVqefDD/ +z8ycAHx3/I6fMJx8rL4sCinJfgSKQxHbxD+SUK/yYJgMdKMZ35KDRbWKO5Sh +BOcA/WF47HzUbW3o/UGSRRcmCHxO1YdlF6+wG8Gunv33jOGCeA/PccgYFZZn +BuUGhQQt4QmFzgJreP5m8H47WKX2QcoRHsjyPegBrVfY6zxh8LEmDR9Y+2+P +dgD8avG6ORD+feKmHwK5KJnaL0K1ky+Nw6FDtfOnKzCcnt48Er5+5WgTS/Rj +H6VzEnQKKpu8AyM7rd3T4NvLxd734PfP5ovZRB9kts7nQeHYwtUHUHfENKSA +6IPyxt9HMDbxQXgxfDxlRFoK2zRXI8uhUV5mQi289Wjlex3sLjNRf03U8Yr8 +VxPMfOdwpHmM2Gc9z2gl1mXgnH4HLBh7l9sJp6b3rX+C4oshJr1EX9d7Cvpg +xbbkVj9cpoy1GIChe9R2jMB6rlS7MUgiuFA5MUbsg/JPT8PbJrSvl+Cj64Mh +FOMzWj8TlT7thFLpiaI0sKpA+zM9fN1UosAG+/6FzYtBcn9uF1NYWSsxfwI6 +kquFWMC6O7bxtjDgedozZzi5yUgZAu/o8CVehIcTZDjCYc4+E6lIaH34pmU8 +fH+NsjAPBnftkc2HwuxCLwvg1aIjncVQpePK2jM4tScxogamnszZ9RL+nq/f +1wBLmP7qtkFbO5rudkiVz27fCat/iU5+gi6Kyr69kMf6QvowbM+N4h+FodPJ +JeNEXaGVDVPwVtb81BJRT0qZ7gqUifcpWIMk0dIUG7ArbP7MJswNKGvcgn6e +PnykE3hO2M8PU8AxszJ1KvjU0OceDTRXnbfZDVM45nvZoCtTmTwnVKLxSeKe +IO4j6cV9sO/PnAk/LFgsLRWEQdPedCJQb1TKcz9k+zLXJg6nukr3S8EXrd6x +MtC2Zk5HEWamzTVoQM9bpfu0oNo17/AjkPay1JAOHAycU9WDJd6lGQbwkqv3 +HyNofFLK2gTyWM5VH4dzx0r3mMPXOt4BltBRcU7WDuaxzJU4Q3/a0l1n4eEd +3h7uRL2/Z0W8YeXPJzG+MHLc67s/UfeApPYFKNgzez8ILrc9IQ2F7xq9HMNg +aq3k63CiH5Wz3BGw8PZs+g1ivDYnsXgiz47+l7eIvwtsHL4zQdwfB3zTIN10 +CWkGjLJLE8yBDXdoq/PgZkeEbj5U3rnWXwDPa3p6PIZOQlrlT2H2yWqtavg1 +TbynBh6nYV2thzePxF1rgK1hJOxNUHN+RrUVhok6drTBmtP/newg8mcYLHRC +6d7XEd1Evhd3WgaJ/i9R23wjcopfnhkl8mW70/0g8lzVMFsk5jOaGqb4jvUf +UV2Vgo75NRdloYSbIqkCfDsvRXsQLm3x8R+BxtxUxlaQyrb34WUY1uNp0QU9 +jmaUdUPrFy3U/0H5HP5XX+CMR7/wOLQh015fgUqynJmck+h7vt4KN2TaG2jC +C2c3u8iFYH5rjKcUZHZcUteCJD370o/AOZ1jSzqwTfxRgQG8uuaw2xwuJLwf +cYX6R0q83OH9tYSNc9Dc0ZzFD76Q/aZ7kZhn8k3vJeiZkX/6CuQh97gYTYzT +u1x6Cw7EflZNggrqta13YPziPYs0OPnw8thdeMjWyeceTKfX2cyGS40i1/Og +YRANaz6RW3z2fgHc+tYp/RiW66Xol0IWDt5LNdDrIxnNS9h89XtqPdx3oFWg +AQb/LCpvhJ9y4tXfQTFz37YWGEVlZtUGh+oUJ9qhkh+bXydMFPr779Mk8Zxq +2PsZFpwyNByF28xS/ePQupXBZRJWhv1enIK7ZPvCf0Ln7zW75uCru5npC3Cv +cbjQb+hLdrpyBb6vPnJoHfKfE27fgL09P79vw4MPA9lpfuA5S0VzkRbKeGYN +0sPiThkNRigs/zaHGd5PtSJlhdwbM05sMN0h/C0HZHnDKMwNbwk+vLYP0sQq +T/NBUpNTJcJwbrBETgZ6aGrekYPfH/SsKMBBj42ag9DqYzyHGuyW5QvTgMYp +VUOa8P267qEjUNt+IFcHNrz2JtODqgJkzgawOiblnRHMZxk3tIT7ggOfWMOM +AerddvD2fZnuU5CW8q28E4x1t0pxhuEy4dbucCOZsfYcvLCWz+kNPV99GPaH +P/hOaV6ATtFLeUHQxojdJQz2lpU0h0NTZk3RCHj0q+vPaKjgVuV3C9JHmYTf +h+z+Mz35UNAxen8hkVftZW8xdFsWFn8GG523PrfAjhN3Jdtgv6ZCZDuc5/KQ ++gS5/vsv6isUafL9OgjlKnbJfIP68VoD49D84qDMJHR0D4qZguesmAZnYKDO +E9lZ+C9odHEOkgX/vxHyetfm4U2+8cFFYt12h8stwwf/2GJXYenPp0PrsPaL +sfxf2PUsangbDjzYp0A2hfvjdu31HfCf14ICNRQTto9jgoosayMsUJMsSWkv +tBpuGeWEUanyykJwiHLX9wPQXMnOSwW2uRSvqMGat4aUh2HS1ZsiRpCqcrDM +GF4elVA+Dj01O/Qs4dEtOg9HWCd5cskJyjuUhrrAoptbZG6Qt844zgOm/sxm +9oJ0nPOZPnAj5FZJAPR9/E0hCP7ol64Pgb0HujrCYdkKw3wsFBY6HRQH75lX +bMdD5ijS2ER44+lxhmRIMp6XngKDmJZ40+Gc1uHHGdDZL0k2C37NHXuRA493 +yR2+DzWke04UQrZZ5oAKmMDlvPkUUhhVRVXDsIs76F7ApSLzlJfQ7Ws+9yv4 +jXrlYQO0PKgj1QTb3VKq38HD6d81WuGLFsWWNlgg3Pe5E0ZMsP75Ajma9loO +wso8tqfD0PAKO8MonDjJ4TUOL6lztn2HrFxcIlNE3RtcUTNQ7wv36C84+pxH +Yx6Gpu7LXITFZnwWq5D+o+D7bVhYIiRMNo31jROO3AH99ETVqSGNyP6MXfA+ +hdgaHVSdEDNngL2N4hVM0CtPgn4PpLwieW7vNPHek2plhwfUpYW4YBenzFUe +6LYh840XZjyXuysE5VPlV0Vge4CCmRj8J6tEJw1TGQ54yEKp+QMt8tCx5GCE +MvxzQ2VYBSa5q6qqQzE9tfRDsElYfUUL2lNonNCGy+MaZUehcJ6muyF8fVmr ++dg08Z3osIApvM6pPWQOf6XoHj8JK28YH/SD1UU73p+HtW211oGwkUYk+CLs +ubFdHU2Me6NcIQMqxjHJNE0T5/w+4T0z2Fcr3SnaC0dGjktxQCqlDsV90Hqk +SXs/XFeocFKHysNx2S6wPVaf3w06yu8s8ICxsVef+MB+uZC6EBh8zfVrPKyR +0WKtht43yrxroOAEd0stvJ22EfQaemw9/dIKOduFswZgt1DKyhAx3mVy4xG4 +LDeyNUHMd/eu4xwMP0srSPoTz683oWHkcIZjupfiJ/E8fhdNA+lFFYZp4duI ++0q7YegAwy1GKKN4+QcznEyYPcQK703ZpbNBqnvK+txwlGypSBim2zuS74fG +1R/txGGtezGtDPRtYneRg8LcsfUKP4l94eqeAzCpy9n7INQT62lWhVuRWvs0 +YNVQWZAmPHeAp+sw1M7+LGsEXQ/+rTOG13p59I7DNhrXk5bw18Pr09aQTutJ +gB00DVq+4Qj9mdhYz8DkJ6p5LsS4eqck3GDf+NXnHnA9vOCwF2TnaOvwgfam +jBMBMPyngk8QzImx3giBY3U5DJfhDuumzAiIl6xwFHTbL6V+Hd54e7w1Dhaf +umCWANs30ocT4VxKnXsyZJAdWU6Bsu3kV9JhAJlhahZMzfLmy4XPlZNK7sMN +7y+NhZCL5t+xIqj+kPdLCbwycHa+At4PjAutgk2MZRTP4URJd+ILSKm3ylkH +RcfZC19B/XB1uTfwZlWUXjMsNXnU0wo7Zz6c/ACZ+JgvdBHXQZ0SSQ+0sLKN ++49Yv/i8vK/Euom+kxiCA01Tz7/BzZO0R8Ygz4b0xwmomWJm8wM6yQRNTMOH +rq825uBUeZLtIpT461r7m+j3rd2h67CxxvEP6S/kJFe02QENjlG/oIQJaUNs +1PDTaEXwLsgiEdNPB60DbZUZ4AgN+ToLFLT4bLUXuuUUP2eH8/LmQTxwy/7h +qgjkwrFJBTr+4bRQh/lHFqoOQfH+9ABtqEI68/sYMa7ZzSVHmLzWNR8DXdtL +jlwnfs+LTYuDYwaahxKhTHZZwl3Yrp0gWULkTjI89wl+dRV53QOfqJIz90Hz +77W1X+EDZTGaCaj5jerxKlFH1cTmOvwR22D6l6hTLnh9GzrtNDcim8W+b1A6 +dwcciv6hSw3LbZsyd8Eo6Zx5OijxxTKNCYZKNE9ywheHrbx44Lr11G9eGBhN +QyoMn2VmXhOFyxUS9OLQf9iYUwZWLH/Lk4MLNH6iilCaj6zsAPQ+kKyoAp8c +E6xTg7/OPDt8CLonfjbRho8K3PqOwsm6P/b60Hma08MYPtguWTCFY3s0gsyg +42HHKGuYY71IYweHva/edoDc0cxsjtA+Mz/bCWZWKAq5wK8tzcVnofXyVI0n +TKMJPeQD+3h3NftB82OSPYEw+cwrmxDYHWIychGaFvjNXoG36sgCIuHH7uSN +6FniPCYYEQuNtp/tjINxe3QT4meJc0Q/SyLUs97gS4HXvOMepcHmKC7pDKhd +oaGWAyNbOhvzYOOQo34+1KSJtHwML/OyDBXDV0oPz5TCf0ZKM+VQ7UyL71N4 +McR67RmsvTV9qQYeqNsVVw/TI45NvoYbR29pNcK6T0zrzcS4P9hdumBeiV1D +NyTzz+L8j+jrgW+Bn+G7Td7uL1C40UlyEMZey48dhtNGk+Mj0IBJ9NA4LP7s +nvEd0mYVr/wg+iAiXfILmqkrsa/CKrLggHXI2vqicwP2n1CP2YYH2S6Pks7h +fTvUoLYD2rtp/6aC9ZIxxrsgz++Wx3Rw5JKhIxN0ST7RwQm9XzkWSsErLJfs +zKERZ8C0JWTnPxdkAyulbZJPwgkDxQ9uUC9iVuUS3D3nwFEAB5fNHz2Cj/4a +KhVDTWqVE+XQX5D1Ri3ss/345yPMbtH4sgbjL02qbsAw+YTsTWiTM3SGdB73 +UVDYHA28LlxLzgODB0+78kLXJOr3/FB7yzpBBG79t8YmC2fjci7Kw0Et3WFF ++OJJ6gMVGBCtKKUNnVSHEo/C44tRv/WglENvzTHIzRzGaQpp3wuEn4DTCueP +WMH+GY4CG9ic20hlD/NpmT46wpMT5dYe8FiG9UtPqGZKwuMD2etMxs9DKv81 +nUC4KpLzKBj2Js95XYKN+qldl+eJ72Xq8ldh7rPvKVEw4Vz8egy8xKdodx16 +fh6sj5snzr8SkYmwNXLgSxI8+vaGTApRt8700F1ivOh0hXtQq1k3Lhtq6BYo +P4B11yxuPYSqrTsmC2EtVZVaEVTWP5NcMk/83wnTTClUbHujWQHlDHnnnsHy +uE7tGijdHp5ZCyWODem9hsImGQ9aifpv6W+0QYGuddMOeJ/hUWEn5D1utfUJ +5tymtOiFPN3PivvgPSYXsi+Q04zFZgBmJDeVDUG2Xn/KEchq8enpBGSwSqCf +I/qQpu6yAOn6f71cgjQ2hu5rMPbuxus/cOfXx6ybMIbDxmsL7rCjekuygPN+ +5nMOckg66OpHAa9wsbbuXCDeD+94aGBYVsAFWvh3SKCdHq6fvBrCDANzZLv2 +wJVvI8JscMnxUC8X9MubE9sHF0azIvjgrNOmlDDsm3CsEYUNru+0xGHR1P4P +kvCOR4K5DAz/tTQkB928rc4qQjV/3lAVKLwcRa4OGQKnbx6CEyGVOdrwZoT2 +O2MiB/lj4+PQMZqu3wwa7PQ/bQkVrvfNWEOeXaoBdpAqPuefAxxIdGM4A98y +ddx1gaV3ZAXciD6kbyh6QbHcm3ZBkIV/cSKE6MMDC+8wOCVUuxYOuwt5IiJg +3f5ImihYUPwjOQaGlJUXxEEn2T0yCdDoaciLRMj7/HB7Cmx91buYAys1D168 +D+81Zu14CGO0yRIKoW+z694iaKv3IbcEardJi5VBto/ralXw7BBXbCsMoJeb +bCPW6ZCudgdMz/Mj6SbGd2kOHoCicz7uc3Bmq9GAZRH3kXT/I1ZIdnqWkn3x +f+egJm5oeM1TVQSW7GaVUIFevO50jnAiST7baZE4D2xJuUCDmSRTDyhaVZcc +QPyuy8Bxnfi99mtRHOyReKiaABsZVRySYc7AmdwsaOvzXLgSdo9GPK+C+uZG +es+h8sFR9zrISr7rSTNMuPCf+ntIMZXz8QMMs/U49REutyssdMFzh7av9MCx +iveMffBT6kn5AahHvf/tEGy4+Nt8BJY6xgZ+h8I9J3ZOwSwd7vQZeFOs8sU8 +3JEVZrAEL+7WHViGSxGMnmvQY3lg8w8xvmtB/Ca0+eLLsw27DFXLSJcwzysK +zR3Q5OXnt5TQsuaxPjV0qTxmRg89y/b1M8CAkkV7Zni1IMWVDd54cPYnB7yd +e9CXG6Zn7VrZB3MzhkL4YWFa2ZbgEnH9RUSKwOrbZlRisD5BKF4Cvo1bY5Re +Is4771Nl4derXrlKcOzyIaGDcDqMsUgVrgc+e6oJt89fUz4CKf1s6nUgvbf4 +YT2459y/ZgPI5dZpeAwKuuR1mUBxp/MWJ6DcKZ2v5lDFfu8pK6hlMz1uA03N +4mdPQi/d/0jcifq0C6PPwTCtEBpvGKlheMuXqFOVm+U8TFKeT78A7yq+4Q4m +6pRLvh8KH0m7iFyCZRIHSi4Tde6nlr0K3wk8UblG1LN35dhtOMPS0p0MFxnv +WqVCElr105lwJ/XuySyiHspRj9wl4rp5On8fcpNEBzyER0t2fiyEvtY3RIqI +vpXf+loKPU5naNYQ8zWW0X6AxtFf8xdgsKzD1hLMG/pmtQKXFb/TbMCMyXlf +8t/Yv+lSqLPCcBqZ/1Qh8/rZ0xrw0fecWU3Y3bCb8igUCppXMoXt46XpzvD0 +p0nBs3D1FU+FO+TNSHjvDc+bem8EQ456Sft4WFbkMnULaqdnBSRB7/N08WmQ +/LQOewZMN7708B6UUHsmmwPf7J+tz4OWe4UM8uHMDoe+Asgy0j5XDN1SS/ZV +w3+RE8U1MMmPS/klfGl007QBmqq8HWyEEyKbbu8gPblnRBt8sPCAruM3ca4e +uNsJnV4YVvbCZz7i48PQk5ZFexQKPt7MHyfGHetwnYL6l6tbZiAJV47oLJHf +wndmkejHkrXhMhxM0CpZhcniYnR/oEErk/dfSOry9+M/WEM6IU2yjPtU9dni +Djj0OevETngnIOYpNSQrtbpAD18YaPYxQN8fogeY4TDvxvpemFI/ZsMBjWw/ +1HJB8rWnnPtgbfK9MD7oJxM9JABFO7w0hGEq5SEScXjsgchpSbhDk6FRGvqH +jEYqwP2sbRNKcKSyUucgNP4VuVMDUlz3dNOEdUIW7w/D843qYjpQ7JRwnC4c +/Uv/Sx+mp68ZGUFTxZEnxnBndyv9cfjKu8LHDAbuyuiygBPa55JsYeao2W97 +eCJczfwUbHhOx+oMg8xXA12h1OLwZzf4Pb5F+Ry8J1Z+1wuataRv+EAa5wg7 +f/iGxKMuAAZnneAOgq/fHvYPgZS/5FouEv1UYfa7Ass/97y9Dte2mthvQg3h +Ku+EZeK70R22ZMh8L8orBdo2BTSmwdwZ570Z8Aejhec9Is9BnTfZMMBRkTUP +vrwmdO4BsU5lexoeQv0+ij2PYOK/FfciyGPUx1wGXc43u1XAkozq+qdQZTr1 +bA20jLF6+QZmPdFleEv0pfeASzMU3xSpbSXWRYBt94f/rT+Vcwck8V+v6YQJ +Df1OvfC/H63P+yDX7he0X2CRw93qIdi8YUPzA9LxG5yahub6KlU/iX77ilHP +wbE0jpMLxHq/pnm6RFxXkxs7V+Bzup/2a3BLYaDiD9Sx/0C5CW9GvrTbghzd +mRTkK9jv+djb0MKpz6Sj9DBDs9CNEW4xLgWxwvLQtG02eGZc7RonbK26lsoL +Q7kleQSgREz3QyF424r7mRi03ajsUYC0Z6ztDsBXH/6NHYQCWXpLGrCPYi5E +C8Z6J5Nqw1+Hhhn0YfajyHTDFeL/2fbzGsNnY+elzWB4NLWxA5SZK/3vFByz +NHdwgrqiOZ5nIcMHhTi/FWLf6dgaDVsyqw+XwntPaXPKoe8Hp7+VkO0vfdVz +6GF7VugNpGdno+qFlqkhHX+gWGnn/k24/U4oZgs+WvmkQb6K85u5WDktzGYe +SNoHvyeqWeusEu/3gQ1dqGQbmmUAYwVqxkygWLW8ly3syeje7QDDLvtVnoId +emVrzjBQ0jjjLORhmlXzgC2rcd88oe+A2FUfyN7wXtAfNua7tQRAZu8C2lBY +TcKfFgVPfW84eA1StZ0avA5tkrP4bq0S3/nV3t6GRfYDrnegmVYodRrcFGIv +uQsf0tQY34PG85aL2TCn5o5SPjxsyPCmFM5Il52pgMksxpRVcGIozvAFjG8U +m3tJ1Fn4PvEVHI5zk38Dr/nu7GuCMhYFwc2w/6AO53uifvJIx4+wPWVrph9e +CM2KHyDqPaUmMwx9REMvjEM2Ona2Sdiw+Lx2Crr3WTr8hEwvV7Zn4f8BSDhK +Aw== + "], CompressedData[" +1:eJwk3Hc41e0fB3CzJCSRrUhkb9luJYREESJpKON7zskIqRRRZJZIFCmRURpW +0lIhhYpHyshKtjSQpN/7XL+/nut1cc65x+e+v593zvVI72Vs82JjYWHhXMTC +wvzvhDl3z2T7iFlrtlx59G4GuRreZ/AdVvsbumrKk0G2VVal/oRjdr6Ocd/L +IOVKfja/YWOhQ25aXgxyQuBNOdvHETMS94Cl15dBNG1zl3PC2sNLfW0pBhmI +PkYthhMtPFoqaAxi9VtZhgfewMqel3iIQeY0OY/zwVc8nJbN+TNIMdX1gR+e +eZgf6hXIIPw9CQlCcFGwrY1RMIPUiB4YEoY5W7NK80MYJGi7yUYxeHGoQ8F0 +KIPIJazMkoDLDs9uXXGEQdprJ2al4D2B2dNq8FmWuu3SMJ+/xRVb2Mgg+/Ya ++CF9fKMPfPXW1v3rYCFfw3PX4G1f5Z8owjUH+9Y/gTmkWcRUYLpXbHcH7H3h +TrMGXO/5QUkojEHEmmIUteEgj/D3GvCbxXuidWEZ97VH7GCNo8sNDeEzzoG1 +Z+CB0uFUY9jMSYyWC6dNPPtmCo9ve7biGWy1LsNmA5xp713VBc/tCcgzh4d+ +dRbVwcWZ1qyW8NQPqckHGI/HfzLum+G5KU/NYqxHjVXLcjuYZ2KgMhnrFxRZ +RNkz5zcmNx95GOtVfapuGyw14m16OAjro6Z93BlWHxx76RqA+a9MHfKEHbt/ +vpehY/72tI374F2duiuFsJ/lsZuyvOADn0JdF2O/vZ9L/j4IM9qrLv9GPYj9 +/bXdFw5tm/886oP10G26TcGRrSZrur0ZJPxQ3hIG8+fsfUXnDjKIemH4fn/m +eFK3v0tAffX373gSCA+vfTkduw/rI6kmFgzfL9eVOL0H6+O8+HAovNPqplkk +6re4oULxOHzDLy4+zA3zvSuSdho2uucg47edQc4r562JhauFy/sNHRikJF/r +bhwsEi52g2crg4xcsXuTDP/c3C9/25pBuEQ7XVOY+1liORxuxSBrL/h8TYXf +ChUXbrVgEM+zUWyZsOmnfE1tM8yHUyD5CtzKzZ9vYMIgmSezJa/CKUah4maG +DNIWXKV3Ax7MsuKw02EQm33f6CVwxf7h/w4qYP26j8/fhYPTHKzpcgxy2nXp +2VJ4Sd2Dx0FrGOTpVrkbD5j1o3g2P0KSQXSN3Duew2MlEgf3LmcQGaF6y3aY +I81uXv8XnZBkp/8+wSvf/5wonaKTXUv793bBscsye9Um6CSddeF4H/M8xH6t +XfuVTngntErH4KPHT55b/pFOZmuzV7N+wvizpGYtquikOTTktwIsn+p1xf0o +nfBdL3NThkN1D9zMCKETu8Yfj1RhnbYD99sD6aRJ+lCkFnxXyPuVI0Unbxq8 +lxrDzRd9f9nuopN6iZ2S9jDPub+joyZ0UvPUyCwYDmd55r6MjU7Kudhia2B3 +OTOK7yyNnH5k+fkFvPjHFNfJ0zTiFJCgUwfrP7t2YyqSRn52iPS9hoXdOT63 +HqURzRI1w//glnN1Dpk0GrnttGv8K2zzd8v6dQ40knet0oG3Y8SsoL0/OFGM +RoKdF/KXwSO0Fjl5YRrZxGO+sBy+yvG87ckKGhk43Fy4ElZpcDPT5KURmc2D +7Kvhy/RLuhdZaCRrckW5Jny0QlB6z1eK0HNdeXTg4VX7PQwGKGLsmr13PXwv +9n7mil6KdNYoLjNifp7btpW1nygilmbmvQl+8TQzy6uZIheNGGIu8OKyDSyn +HlDkvabv9Z0wT0OrfVw5RXgUvJR3wUY9B3JS7lMkUsjNZC9swR23IfcWRR4t +3VG3H7ZZJZlSXEiRWVYH+4PwVu2S/tJ8imjN2nz0gRtl83v5bmC8ExZ7KbjE +ZU34q2sUKRgwG6XD5+OzxaKuUmTgk1GQPxz0VLzCJIsirnWap4PhVQqC3+5f +ooj5VanCk3DCb469WckUOZEmqnUKZqhELLgkUqQqXrA6Gt6252/GiniKqB/h +bjoLC7/61RJzhiJ+DE7nBPj3vP+hjdEUyfNi6UmCO9UneBYiKdLj9sf7PJzr +5VtQeZIi4tumpy7AsYKvlpMTFNlhNRV2EbZc4xT66zhFkk3G2DPgM5q93YXH +KLJIqU8oG+a0/10kFEaR7+xN+gXw37MKFqNBFFGZq68pgqsvlRVfDaSI97fn +NrfhIzfNVuwIoEh354Nd9+GZl649TxkUEW0pHSyDS1u/WATTKeL4qoRRCQf2 ++99SolEk8UnhbBVc9v3vil4/irwquxHxCE6vHXNt8qUIR/FV7qfw++tXm2tg +k2uZKTUwf4Tjpgq4NPHcjTo40rBa/Sp89eDxV+9g7ztxiwPgjl2h21rhawmm +xw/AKx0DO9rgT74/vu+E44nPeAdst9ateyNcp7s/uBs+zbbMUQ9mU9n9rwd+ ++rnmlTJstGZnTD+8UB1sKg2HiDotH4TXZyiWCcH3ltlnDMH6D1PnG+ExTps1 +o/CGhOmDGhRF5Oc3FY/DbbudWy5g/nu/E51vsJ9mpcks1sfutbLrHPzwmOFY +NNa76FB7+Txc0RGf/e4wRbhWRgn+g+8bdG+TDKFIjWdHM3vniFnx7MkHpUco +smrRGZVFcIHze4rlKEWOFWnGccE3ytestsX+6k7HWvDCWUG1p/vDKZKSqZO7 +DL7UImyghnr5RnpZBeDok1ORbyMosmUwfrcg/CVbJ+5EFEUK4/QerYQtnxxJ +UUU9LtYYEBOFb3Y/yuyKpcj+tqRQcZh7gTU3HvW7Svqr1mp40vhs6cg5jKf2 +/DkZ2H5XU/WlCxT55GcyKQu3HBd4aXWRIhfKUwsV4LTqjP/yLlNkys2MSxme +6ejucsrG+rCOe6nCrn9kBjlw/rhszaW1YHGDoum9OK9eU5PhOvBx18mF5TjP +NWmZnevhrlCtxc+KMR4jSwMD2CQ9ZNmhEoyn9/tFI5hTdlPvjXsU+Xg665cJ +/NWVTyEL94eusvV2M7gu6cOhtCqsT3AOnwUc88eH5UwN1kdiC2UF+2hoWZ2o +xfo8m31lDdscnE8KacB68NhHb4V5WhJXeb+nSHvOwh8XOKnwvsnmPoo8feM2 +7Ac3pMWdK+OgEcmAxZZ0WOBRJaN8CY2ECd/PPcScb/+XLRV8NKK9l9vzMDyk +RrgfiNDIzZnKtnDm+F/9jKxWppFzMitfnIPP7XBPMXOikZ1LQhwvwHJRlq/3 +u+E+/vZhIA12LtFkj9lDI/ceXeK8DD/gXBLYhPu/1UXSMg+2qijb5obnh3CS +bEMVXHFwXvxUBY1c+aP5th8+e1JIJFCSTg70pXgOwplh9wOvrKET1Vc/vw3B +u7YXcD9QoJPHaeXLJ+BujlS9bzp00qNhsH0WzqWoCx52dLLG26yNp2vErElf +3NbwBJ2M2V07sAxOrz94WSyaTkp12GeWw4knfbqPn6UTc/aXwsJw+Ddqr3kq +Pj/LylUaPt8a6PuuEJ8fXTC8Bj4bf7hY+w6dzPhxh8nBmRYhExfL6CRG/02G +EnyjMizA4ymdFLRu7dSBszMiwkb/oxM2i0pPPbh0TCpVp4NOdlas/mIAu/9i +q77wmU64M6bGTWF1b/EI1iE6oXan/NsMazrYLu2YpZMXb/+csoWvnG2nLf9L +JxIb9nNthRe/2P/WkpVBGmV1ljvCMXrHU0uXoL9Mu5K6g/n5gUtmR3jRHy1e +JOYKL7mVulNagEFUR9pkPOCuVbdXJYqh33EzzfeELV0NIl9IMUj3m3ylfbAd +rwJrhwz6HRP+O15wySPO0cq1DJJUEqrtDWsx+lrT1jHI0OreSl+4fPWTx0FK +DELObzamwSLvMm9uU2WQb0FiFgHwRw2nY3za6B8HIxuCYP0+jQNjuuj/nUft +QuCM83z2DfoM4mBQ7XwMPvGzbs1pUwYpLJLtDIfZ83J5929gEDbJBM8IeP+O +iBmzTQxy798un9OwbIXB67/oH7n9a8dj4NMHhcs6tjDI3j7VgDj4q/DPrAf2 +DFK1/eJ0Amz+bvKmMPrTFS//hSXDbKI7zx92ZBBK1/vfefip54ujLU4M8iL/ +7alU+Ee+qpeGM/rbsznxGbCrLrveuCv66z9Lll+B447TpG3Q/8rSAlKz4Ucv +PnAXuDPIf1s3ZuXCt7cXd+1Hv6z6rEgmH6YyV9bVIO+d1hTML2DuV9/JO6uR +93SFvpTchjn8nU517meQxNNbtO/CupVPKIMDDDI4U1Z5H/b9p7AjHf27iY+U +cTl82eKC6TT6+4ufTj+rhMW6nv0IQP//zWZy00PYmHu9tBVs9ci54RHsv77Y +ThKezV7XUgN/OpdWUIfX2y8/5/wSXvZk6YfLcEHk7446Zj2OneQIgHd6NQy8 +gWMt/HZLwA8Vqek22PqPqZA/xqNrE731I2xy8NiazfAdv6ybHcz1bqnUkIYV +4ytYu5m/b/rL9Dfmk1v8dmcPbF+kYfcOlmocvt8Hb313XGEWeeTSOBvvF/ia +5T2bYKyHIJ/Ega/wr0eDtJ9Yr0RVnSfD8Ki2eHIA8gnXVjuRMbi/aOu9b1jv +U4yD/hPM9ZOJaqV7MEjonUtrfjDra9m4iB/2a6/mwpl5WHDkcc4+7HfnNuHe +BZh7z4/nvagP50B1A9Zu3D8f5Ad3b2OQ9ymbU9jhO1vcubpRT7ale8c44Zsv +khXdkWdqW49u4oKzDF/afkL9mf26kMUNT939TXexZZBqodszPHAVt46ZFupV +V7fOfhlsNJjVFG2J9drRU7AcfvSMy73dnEGUQn6zCcLilwOGFVH/qyuVykTg +OQcLjrdGqHeDZFEZuPLRuL6YJoNE7SwIkIX1LznXUWoM8i+s5rUcfDHwmeMT +ZQb5+fDncSU4WCGVsV+eQeidvB9U4BmOf/PlsgwyPC+nrg47ffY+uwTnf78k +idWE7z94L+y+CveDsWufNqydanTjtgSDuHgEGK6H1YVNUsJEGaQlPO6CPiyi +G6A/IMQg9U8eWZjAAYc/RVfw4byayRRZwrI/C6U8WBhEea8hhzWcKvj5Rd08 +neRHOu6yhU9orfDT+E0nl5+fXuYAtwccreD4TienN40G7oTjpmzsi/rpxHVz +qREN1lTP8rn0nE5MiiLrGXD66JoGvid0Isvr4BgAr79RoBiFPPXt7bhfCHxY +pGyUfhf3t4t8ZgQ8ufCaZp6N/HMw43cqnMB18k3cETpZcfpk+WN4L5truaIy +8tlXuw3P4J2GeyZd5emke7Nk03OYHuCzLlaGTgp5q77UM+fTcyTjqwidbEj9 +IdgCf6nOCM/lpJNDuQcCv8IbFRWKVHtopLHGVp3/84iZYf6P3NhLNPJfy+tk +Afje+7+bmlNppGvAekoQVlxY/FXwPI2ML9p8TxQWdZJQuIp8xmuzSXsN/Jtt +061y5K8tLcZ6uvC8Q2XUfQ/ktYHqdD34yF/O5PN4Xu/6ZfjbAP51c3umvwuN +0IQNqkzhiX8Td9W20UiCm67RZrjr1trPRZtoJJUqu2wD73QNHDm7Ac/r49p/ +t8BtHM9++ZjSyK1szcfb4GY3d551+jRSdueulBNsvbhQeLEujTx6pn7CGa67 +NyMzqEkjL9+XfHaFN3psUn2phvn3qxJ3+MmSFP1c9Bv//bx11QMe5V4h/1UB +8+dUYd0Dh1905fWTx/zllWq84Nw7gx8DZDB/St6cAU/2sQRGon8ROp6X6w9H +MCxdF61E/5O4ljMIFpxPMD2LPKlyZ01tKGwgJM5zHv3Plp+rrCLhaEudGzno +l5w4s29GwSKtR+PWsmG9VkotOQMXetb4F/xDPyh/xScWfiAtNFHxlyI0PYmG +OLiH482Jrj8USTgmYpsKHz+XXxv4kyKNHMvtb8LlhR6OV7+gf7t6MbcQFojZ +bdjcT5F5Q6nfxfCN/Z4yC8inFz7kbimB9c32LFHpoYhyoNK1u3BnyrdAz26K +vOC7N30flp18GL+miyLuhXo25TDN+syNwQ7kj95NP6vgvyxSH6iPFJE9/sbq +EWzhPjyp1k6RapHtV57ACRWlXD/akCe2elq8gKXoNgZHWili+zgsvREmHaFX +opGHB1xZx5vhM7rm5VZN6G9/nTF7D789t6x5aSNFBM/xpbUy12v809em1xQp +Vk4daYP3WOWxnEe/al4vbvoRvnndX9TpFfL3vmspHfDUgpGmSD1Fgv6tG+qC +x8q8ZNzrKLI0s8SoB/bpekwVov+9pqt7rg8e4BCpmH1JEYP31V8GmPup7M9q +CfsuaUgchgPD1qT1P6dIQ8hAz3dYQzjmicQz5KEVfjq/mOMx6V3i95Qic7en +YmfgJC8DxwdPKKI4uKA5z6yf+2NDTo/R30dEn1mAV3Vs0sp9RJGdkjydLD0j +ZlvYso9/r0Z+rTyvzg7j6VRH4FhH0WhO+Le9g0DSQ4qs/pb9cTFsfZuTdytc +GSenyg0XqK77JA/by9+K5IG5S6zzWeChGq0PfLCvGi3oI/KAlYadggg8qj5z +0wjuedN6XAy2uSsaLASHeru9l4CLNYw2TjygyM1s76PSPcy8F9GVDRPDyeY1 +8Jt71wtD4fa2w7JysJJWbYgDzMV3qlERHtNaKsAOXy1YIqPCfP9Slc8dlRTR +25QcrMZ8f2374lL4bc/K1xpwHrekyizsfezKKm24a+Y22wG8nkVENkgXFvxC +2lvg9PuF9Xqw7fv3t8ww3rqRCn9j+GzxtIsk5ttQ92PWFJZULom6ADflqp3c +AH8uOnhnKdaz1SM/0RJeVNS+eA7+YNgvZA1fUjyn5Y/9+CSy6ootcz6Fm3cP +wT3v04oc4O0FVeVt2L/+kveajvCXdYF9W7C/g/F8VTvg0JtKfC/hER9rM1fY +cN2AvhHqYdzidL0brLO1I14S9fJtTc1WD/hUzKyGDfLYT5aFNk/YqkboQyjq +a67q8Bcv5vtr20u3ov7+XrxLeTNfT6fVsqJ+WQ6P//Blvj7/rJ8a6nuxmhfb +Ifii2MuyszgP3Dw5sQHM12/v21mJ88I33Ml/mLneCf/+fXmD83TdcVUY8/NY +DKzNcP6ETybnHWO+Xt95kv6WImK73qicYL4+IOjC5XcUkTLgKouAi4rP6Tcg +D0oLmxtFMevxy+3umRac/58nnp+GG/32NXb+R5F17x5ax8JD6ofXffhAEdU4 +LddEOP5Bevdr3B8a3oyeZOZ+HC/Ur8X9or2p6GAKrLWh+sLTzxQx/CcTnA5f +ff3Zugz3l1WgQMo1+G6XXEXWKEVs7O3EbsAc1/QELo0jX6uczcmHdxywpqVM +UmQbd+26QjhAyb0+YYoiTl9Z7xTDLyZpa2J+UMTlhfH6Eti/SUPwzi/cbzlH +Ht+FRfNrLkbN4jy7Tb0ph5V3DGSpLOA+1lNxfACXqhyWYWOlEW8hn46HsDHn +orw2dhphNPcMP4XpZfK3TiD/Htv4dtFr+L6g38N3gjSSplRCPsMRqqeCk1Vo +pLoi83IvvO5ScdUfdRrp3Rgz2w+7s7UtHNCmEWX3PXeG4PVt684YG9JITfyK +1d/h8eNNF0es8HwaD/nH0Yt8crHe4/1+GjG/Qx4rwjlnLAQd8mjE10hFTAXO +Ppj1z7uQRpLqRYPVYC1yetHP2zTyqee7ijb87xVbsGglxr/8xhVjOL/jj+P+ +BhrJCFhy3B7+yjIhMDdBI1Pa7w2D4YDI1N42AzqJZAtqCIUtArNlOAmdCLwV +cj0KC+4t2Ke1iU60/VyDT8LVGx99SdpKJ6E5PXfOwoPusg/e7aOTBd7Jtdnw +hqAjjbrxdJLUkVyaA98S5ji08RydrC7Q3JgLr3yYKGCfRidm5sGeBfC3f9ed +fa7SSVTY34z7sFNOgyDffeTbr0v562Ge5j0DHh/oJLP0VlYDrFPmuDCEPKwc +uVWlEfbItBQJ7KGTLZIp1u/hYS8V2zPDdJK8XSy6k/l50fvMD6MflJauXvEZ +bpXpu74KefjexK5rvfCFp57sDegnW2JzngzC1+d21UhxMcjKp+vmvsFqh1xI +/UoGyU9oiPkBT/J+yA5A/tVzo4Sn4dtFTv8kkH/r1/HlzcILlq0eddIM4jpd +ov0HfvRl22N/5N+R5w7P/8JHT72TlFBgkLBzPxxY+nCe4tKqy9FfL92d2sMG +r4n33q2B/vuy8noGJ7wr3oCtWINBVOba/y6GL8Xz3JBDHn5cFxbPDbfEd1vm +IA9/3vu4YBnsEB+ZkGbIIDKXNg2IwubxDSIRyLsbpiYOSMCWvDWrvyEv7Nuc +PiwFb0x6sG438kRUjhklDRsvv6vehLyR+3tkYg1Mzt/UM0Y+eelwwV8ONhK8 +SoodkCcLjH+ug9enXbQSR/5dxPY1WAlOafw4MIk8JL8z+bcKzHGiTvTPDuTH +e/rH1OHD6mV2i1wYxJu7f0ETPtp77dRy5OHCKh0OPeZ8zcPH5ZGvlMU7+DbA +1kt0njkij20JjDpnDldXyUzvRv6lv1YRtISVKX4lP+S3xDUf0jbDmpILu4OR +70qOnhS1hXObRi9E7GOQty0Kl+1gwZMfX8UjD35TapFygMU16hYuIi8ujzqW +sx2O6yvVuo48qdm5VnYHPM/lv+4hvE27Oc8FrqpyS9wIB8aHKrgx15Oy+Pka +ry81eq3qCZ9rFn/KzN/rrxzS94V/ptY6L2A8Lr9Eqyk4wvLuo9Nw6JbnJgzm +ev/OXLMMrvorZB4Eu7j7T67CfD45PakNZo6Xz93pJub755b35iNwzhOLh+qw +xCKBN0dhNX8N6QdYHyOPh3bh8KiMxBkzeFf5/ncn4VZeW5uzuxgknI/P8RSz +fiI0ihOxvk8ee7rGwGM+87SLzqiPVYv2n4cb9M9P3cR+7w0pGbwAO98O2XYL +efRUs4vPRVhSZtf9uzYM8uJEEf0y7M+97nAV6unLB8epLFgnnLftMeptkfpC +YA78e+q77vONDCIXkz99HY450H6xzoxBLHvsj+TBWz49mn1tinrQm/tzEz7O +fqPglTGDxCRfDy+CuQ7dX3/QgEEKhmxZb8P6Hc9ecqxnkAYyfeoO7Gvxdvs1 +LeTpnMzEKrjn15J4ETkGSbr560s1062K4d+QR9+XbDV+AnfftzlUjzzq8ph9 +7Dnc6Z/gGIr8mfly18Zapu1vW9ivZP57VkVGPfxJrVlv3Qqclw6/zY2wxiS/ +ZDsPg+T1vbzazHSTxrI7SxhkaHjV7Dvm/G5vY41ZhPw9dWRrK3xk4Mb8OzbU +62xLXht8Zhct6dwCndz9p7LQDqe2acs4zNHJz0UxTh3w9a3zpfzTdBImZMTR +Az8xi/uUNE4njyTS3PrgxqpttK2431hkv90bgDu0xFiWfUG+1czdMwzPri1Y +m9hJJ+e28jz5DrPy1B2Kf00nN2M7j3D243wFLl5Un0cno8m67xbDO/VzvR/l +0IlqevI6btj1H3l97zKdlOaZf+CDnePCkq+cp5Mnz4u1ReDQG+NigeF00vb3 +2KQiXPzmtcspJzphD5D0sodX/i5VN1ugkXtVypPb4JnY+AznWRrxZDc64gS3 +mt0so3/H8/LCzoSdcPLdz6OXB2kkqOJi2X54yTk7l99NNDI4v3zREXibjbLG +vWwaubBJOvkorMZuZfsKeXdDorpYONxww13W4gKNZK/aqnoKLndd6eQeSyMu +G+J3JDD9PLY8JpBGXp1ZlJ8Df7p06EivJY2EvhXSyIUfBTSeo5BP5UTXPsyD +6UWyJ9WNaSSycGNzERzFYxA4rUUjBo0nZ8rgu037XSOlaWRIKDmiEjY6Mbnt +iwT6AY/spQ/hOrUwWyvkyR+Tj1Y9hXmSkkz5ltFIscAfywbYZ2vV2ox55AM3 +7vdv4J//zFf9nUF/nSvq3gyfvNMs4ol+pnxs3eA7eP060eJw9D9eOnqHWmH3 +gw+i2cbQv7kcTu9mvr+3wdhy5Ls3V6NkeuFzNz+9TP1EkbDhlOJ+WGg4LFsU +/Vpb2L2nQ7Ck78Nt0ugHk65MDn2HG32NHqijX/VMLbH8BVd8NWD/hn5YPYGR +NwOzHNDfUoJ+myVajXMO3jyw/iKd2d8fm9w3z9zv/LBTCuXIA0ElNQvwPg4J +LbFSivhTDGnWATyfPB/1cd+jiID7ZDcnnCzGsmHsFkX6tpcYc8GfQ3KmOoso +ct+GcZkb3tK6IaexgCKOhpOuy+ClidEsJTcokio22SoCe7EtfeJ/hSIHBEq0 +xJnv71FM35tJEV1uxnlJWKZ6i9T2SxSeR2pTq2CG6GTjxouY/++JrTLw4+Dk +49qpFMmbun1bFk4vs85STqFIyDCdVx6u0Hjz1v48+tNeVUoB/nBrC/vhcxQR ++TjRoARvV2zWuZSM/PX2toIq3Jxn7/0oiSIP6ukx6vCkzPuM3kTsb+XEJh04 +Xvy/fwoJFMm8OPHUBJbm7XhVFUsRKun2KjPYNNZ9vjuGIkZn6OEb4WrOblV2 +mOeEatcmWC9y9x75M8i/wROGVnDpQk+KzWnkZfrtDGtY4+jeWkY0RY4foP+2 +hR1m+mdTotA/e6i6bIVfH1EwnTmFetkxUe4AW/TRjmrj5xNbbgs5wjXW9yr8 +4Seb6EE7YOf70z9uw546ExpusE/UCUoB758jOFG8H/aXO7dLCp8fwHN76UF4 +UdJ/l9zgDRx0Xx84cka0LR3u+zEuT4eP1l+zW4Hx3xu9dfoQPK3+9aw9fKqf +9iWAuT6XlOoSYMcOFfPDzPVhO8T+GpZtGb8WAl/2LTXlwnr8bLjFGgazKjx9 +XAC/rKF5HoOfSYwva8F6plWpPAlnfj6/2J75s6iPe+OSEfALdst7a+Mpkn9u +PP0ss77ezU03YP/6GvYqJsA3nFSkebHfUhztD5PgsE+7bbaiHtKCa7ovwGsH +XmS3oF7el6w/dBH+4z3zSgj1xDtczJrBrIdxhZ/O6RSJcrsomw2fnE606syg +yNMLPOU58I6jzwKkLlNkvjHCMhcWV05qKUP96i2eac9jrreiGv1pNkUCCeVb +ANfKN3O9zkFeWWt25/4A8/sIWwN/4TxkeZSblcNrpCZ5WYqRZy8qtVTCuyWS +bnLfpogD98rpR8zzItLctQrnLX5j3JmnzPkIMUIVcR7rj7GIPofLVixboYPz +SiZHDOthFf6tVtbI28fWeTY2wAf5JvsckZ8r9/zn0Qhf50k6vhv3wc8M62/N +MKfQWhUW5F211icR72H5PxzSOci3Ug8u1HXCL9Oivsk2of6/L3H9PMDMN/sH +XuK+SVM6MdILC3mZtx9AvuTN8uH9Cu/R5Hh6sx3rE2myfQpeaDyVpIx8+Ml2 +qJvzC/LwpQ/UzTmc/x7DaVXYle2/9njkLc/cyqMa8MOPviFfkbeUvXVYteGA +eywrNyBvvZhU5dGHP+9T3j5jQCPfF6RlNsL8L0417kHespPksnOG99ep/T6J +vMW1s/XGCfheQXlNIZ43x1oop7cwnf/BkqZVdOJrkVHyHn7vxBJwfw2duDyo +W/IfrJtp+Sldnk60smUef4SdZdsK96nRyYhvu1w/bKr3w+a3CZ24spnP/mKO +58W92tUedKKrIZ4pPoj5xY97cOF5K5tr9UsS3qLv3z6YjfwlHLx1NWzkq+Ob +d51Oxuffsq+FE4dCBBYK6SS3/jSlCj8dnN976wGdrPD8bmwGlw8s4uBBXmJp +WZW+EV65Zl17xSc6mdi05fsmePG+zcX7uumkQelmnjV8pOF7YyD6h8iZXcsc +YYnUNYePfqeTb4mveg7AV+Sjn59Fv7N5YzHNBxZavHZQgJ9Brs0kzvkxxzP4 +gisT/ZGjp6OgP3zyBoddEfLRA43PlkfhTWKGgWfRjwkMPms9Dg+aZeu5If9Q +Gbl7TsJXfdkXlJB/pNh9j0bDvQ9exzQi70S2/rydBO9xcc/iRz/YEfPB8DzM +evLpvl70i9rGVfUXmK/Pl1W4t4FBEqYuO12EzZpjJiLRfw7eONF3ifl+02P3 +t1sxiOnOvYzLcISUwxFZ9K/pfJvms+ApTs0MN/S332vkY3PgbSaqRmrof21C +uFfmwn8PK3azIe/kKo1fy4PzbsmdbNvGIAufm9UKYK5BGZlC5J87Vqmbb8O7 +nMQPOCDfCIqtPl4JL9LmmchGP05rYuN+CN/x40oORH9fG/kl7RHsep1D0xL5 +ZNX6+jVPYY4OllYx5InQ0cI7NXCJwN/DE8gb77ITjF8yf9/6t3CNN4MoOh5q +qIOHwx5YRPgiv3Ftd26ALTmmbcX8GKSrWmfgDeyboLn9PqzrL+LfDMevZLgy +v++ZvPbP33fwSHbR7i/whsSnwh9gtXuylDAd/e1uG5teuKJtZfTRQwzyb4Vq +ez/8aff2OEF/9M/1/F6D8PxQ0rlb8L1jP6aG4J0Bby5aBCDParSFj8LH/3Bl +fYb3f6lcOgFnR23KDQ1Efr2Umf6Nub68kYXLgxhE2C587Q/48KLWtZP4+SG2 +Pfd+wTHd6lnS8Kvyjaaz8KXyhJWOeD8ZP7k3c3BR4kjiaXx+a8vol39ws0nu +iVEGg+jfCBbl/or7NEt4TxnmV8rFfZQHzrd6cfQX1kOdutLJB+t8P5SmAxc1 +q5ssh1delrx7GOspp/UiewU8vanhdZkP6j3NmXUlHDUZPPgL6y85N7JXBPa6 +tIZVF07fFf5CDDbf+FY8+CD2/9lyOUk4MaXq2VLsX5LsjTOr4O1pHdEj2G/u +GL1haVj80vzmV6gH1q27i+XgF1dM3p9GXpvoLNZUh//k1/SxIk/7EnJBE+4q +6M/rQf19ud7ySxu+Xszh98SeQTp95yr14S13LX4cQ353bkoQM4IFSw9WuCHf +v9eQPmYCd5THHDXAebBLLe0icHVlgamoBdZ31tJ0I3zqYQP7LPKauXvH1U2w +9ePRujbktadP6GxW8JL6/OhiEwYxXMO23xr+9oR/Qt2QQcpPp760hdsqjuwo +Qz7LFey32cF8vwuSs7U476tCg2+5wL7xpz1tcB9kdCxZ5gbbR03WNyOfnbum +/n43nBfw7FK7OIPwLHqhtRdO8FVk2yWCPOjjnLof/uuZ4tsriDyrHu7iA7+y +9zJkfl9hLmV5lR9sYNl0nc7NIIdncsXp8GrT9Tw/kMeox6+7A+BbNwN9S5G/ +vkrvJofhi/cqdrIgf+2N/p4TAp+s/mNt+wv3ta2o1zHYremU0sAonbSWFNeG +M/e3vU5c/Sud2K8g6yKY9dOzlOdYH51YfDowGg1z/UwZW/GRTrS9S/2TmOsr +nHtrYy2d8EVtDb/GrL9ofn/PK3QiGjDSkgvTuiW2N13E/e8ZrZAPa69X0DFC +3jI0ethaBO8aNPstfIZOvH/KKZXByy0DI5oP0UnN/oUPdfCn+W/ztI100rjt +kkoDfOfS5FETYzppJ9qn3sDRuhNzfOvpZFLCV/UdHEcbnS1RpBOJ//6L+gQb +dn/5ObWcTuSfH/rUCfMfHQisWUonmneXqn+GB4X7v5/npJPNCWYd/fCIXc83 +rd804ni0U30QfjbazeD4geexT8jpIWY9RHdNtI7RiJ+zQOcI/FKmk3YD+S54 +0y2NcTjzyaexwz008jekd2qCOZ5KUdv3HTTCFvp/iyfZrGM6QsvqzCS8detL +JcNPNBIv3d85BZvJF+t/bqGR9GXhmj/hY/PnLU810sj1vyIx0zCj9YiTfB2N +3B693zUL7yn23Pf6KY1UfbTT+gNfjrD0Z1TRyNuyqO5/cISGUELFLRrpuL5K +m21oxCxoyXyGWz7y57mqWA74YG/fzX9XMV7aN+0l8IXEOy8skTcV5dzjBOD8 +UZv5D2E0oiM40yMIZzzX5D4WRCOE7byuMJyQKSqymk4jzt11veKwasb5yNd7 +aCQqTUtvLXw+JE+geDONdC1a+mU9PKHdpEkTxfrqutEMmL/PPbqjT4BGGryK +fhnBrH2Ljzrz0EjlC5tFG+DweLPnZv8ocj4yXt4W7vIO/WQ0hDx5r7PEDvbs +bVxI76PIiV5lPQf4pvOaNb86kT9Io9UOOMCiye/WO4pYLPD6esJLZGX/Mv/e +Uq3i8X0vfPbyEemwMopo7bod5gW3CDRvaiuhSGH8Aps3LB4r66tZSJHV1XZx +vnAWa1hiYi76vdGsFTRYOqz53kgW+j3xyUwGHKiXsM0P/fHckaTiIPhNLtff +XuSrQwWftUOGmH8Ptth2BXnpa7vaoyOw7PKofBf0963r3zaGw8eP/3NoPkmR +kl/8kzHM+TtO51UzKCK3dk9IHHN8S7TnQ/woctnx7r8EuO2pv4PWQYqsiGKN +SYaVg0vyJvZS5Ox9B/4U+KTS+J8CD+Tb/pz0VPhUn6KD107kQYHvq9Ph3yn2 +BtQO5CWzDQUZcJPT0T0ft1Nkv/95jSvM/RfJi7FwQL96te9BNhzR8bbkvh36 +8beaG67BLlf+tK22pYiJWsu2fJhLxmHtHwvkyfEVQXeZ9aU0/6zEiCKJEvvn +78NmE3LDEgYU4bQtjSqHhe848J9dj/78KAfvA3jM/9j6GW2KfC90TH0I12rn +e+zXpIj3p1zJx/DVmXfR79Qo8nnJrxtP4eAH88UmKhTZob9J9TnMN5MzcVmJ +Im+8U8tfwgv8L+53KSK/pX8xqWe+v+JgqBT8oE6nrgFOMucy2a2AvCzX9qGZ +uZ+htvU98hSJGFj5+yNzfbpbO/tlKSL2XHhHJ3P+L3Z4a8D3ckTud8NOhe0/ +wtdQxOakKH8vsz6Tdp54I0ORAQ8xWj+8/3Antxh83Fi84Qs8utMj7aA0RVZK +SMgPMeuF9EiXrcZ+z0lEjcB/1u69xQZbfZTsHYPlz21P6F1Fkd4KKZNJWOX+ +ocQW/DwsbVXmFKz1X0LSS7xf0XZpp2n4o0j9uQKMh69J9tU/Zn1fNUrzx3zy +i9fKsQ2PmCXXuF7ctw75KE7uFAecNhCc7oT5+1utM14CG627m6GP9eOWV8hY +Cm+0bspUUqbINU7FGV6412/0siTW23BA0ZEf/prAlbVMFfVbo3RXAB4vWZvN +iv2h5SjzCcE/3m24+gNedFLFTxh25d1w6ZIGM++p1ovC4q/7Yme0KLLeWG2t +BNwdeyrMSZcib8XVI6Xga1ayfvf1sP9z6p9Xw/sXvXRbbkiRjArNS2vhkVOL +jBtNcX7TtKbl4Vsb8lWUNmD/g7S3K8KHWK2kYs0p8ldDl1cN/nU89p/5Zpxf +/vW+GnClkeK3azYUUZ1cX6cFH51r6GFBfXsW60fowayhPDXV2yjy+6xBtwH8 +QvfWPTEn3Ec+hobG8JlfW66HOlNE0coo3RTefH8ipc2VIs/ljH+ZwUUUjWXY +nSLunCbbzJnjZ2sP3e2JvNlvUmIB56ZtmPpvH853DvGxgYVqhPuY379+csKs +dgvc5By5U59OERePDWvs4dPjY+9L/CkSK27e5QifEK55fjmUImOplg4ezPWg +qBvBp1GfZ+30/eGXjXn2Orivygs5XgXCHlwBvM9uUqSqocolGJ7dYNxge4si +NdzyoUdhpcqWjfuRn1vO/iuPhp1zWdan1GO8Z+9oZwwz+10hlf/GKaITJ6D+ +HL7oF+QRa4z7Oq5NTmgEeeuhx4fKbhqx1b1QKAyn6qlVH+inkZ4eB1Ux+G7Z +v6uCQ8ijuo06q+Dhkqu+h6ZoxKXnubkC7JLb91eeg05mte/uNYZ1Ew7IXlSg +E73uuCwvuEhGfP4Ig07exGyW8YbPXzgT8SqQTjy1Fuf5wgcfTOe+CqGTmJjI +WwxYgP2/0Vcn0C9oHqk+AnunnTvSkEQnoWcOfEqAhR5xp74uoZNKdbOV5XDx +sS2vxobphH62hF4Jb3aa3W0xjv5lQLKuCv6icn06+xudnLs4F/IE3mOX9bFs +Gvl54f7HetguT6BnLxuDiL+Ru9IBjzn+GasWRX+6NvVXF9zul656UwL93gl2 +ux74VITOoZRVDPJTs2dhAO4oZvzwWcsgby5d8pyAu+78eOeshn7wII8s6yju +A/31Z3KQB7WfhR1jhycLPj/iRh4cERtu5YTLxWJ+Bloy++OX0dzwlr/teyzQ +L/Ot0+7mgSUYEekldgzyIuKa7jJ44LNCswjyX1gHf9JyeNvXvaP625EfdE58 +XQELiRj5saM/H0wcN10Jt1sJjb7ZwSCXh9zSReBLRyZ805AHuS7rbZYcZX4/ +5KqvgjuD9LJ9L5SDx7I4fbciD6S7e7IrwAFvu4dFkP/sypvclGAt1kqfPuSH +Kp8iHnW4aq+vDzOfHHou6qUJH03ZOGyCfCMnGfNIGzZ5IeHDhfzWGTwttB5m +/fVr6B3y0Pm3++n68PO1zd6ZyEtWii21hvDPHOMCLuSrhVNmq0zgjqi2yKXI +Y6VdJSEEfnGQ4c53mEH81ku93QCL2XDpLg9GPsj6oGHLXO8PfpclwhjkgP6f +ajvm+vRv36ZzlEHOtEpZOcD8k4ZcdscYpIH7gMcOeG4RT9CJcAYZuxE77AKv +XfFTIf0Eg/Ca3Qpyg/ulOj/fOckg9iE/z3rCb3SLbfoiGSRAQGTlPnhmwwXW +P6cYJOWWYY4XXFm5bPJlFMZrtVvZG76sNRbbDrf1R1b4wmdu18uOwrPheRto +cJDCjSd/YVGxhkbGKPM8Rezkj2YQd/vlA0GwQoZBsg4cPqrNCGHur5CwkhWc +fdpl7ghz/Ek/Xu6E+6qz+U/ADdHFf07AHC7PMyPgCpbYtPMwwqxcFJx51Evj +BuytoGocC1P+Ugcb4LMvHOrjYOexOdYuuGj34e2JsPHBD5cn4Tdz6d3J8IT7 +63kFeCK12icFvnWy2JAH4+fX6PmZCjNyE8ImsD4ab9hPpsNX6+kP3kYwSBCb +TdoV+By/xvpUrG/aFbr0VXi7tkBwCNa/Qu988TU4yuVHqetx5Cf6x5p8+PDV +Mk0p7J8E998thfD6F2n+LNhf4xurPxbD3kMhd/pCGeRkx8HJu7CruoFqPurh +WnBcWCks7ihOi0W9PF9ewlkB24bOF/mhngaK3yc/gB02CCXIot4WWU2LV8Mk +6H3Mg0MMsq5fNP8xrJqXFGWH+t0cbqz5DF720fZkP/J5fGmUVS3cY1wXwot8 +fXvrzZZ6uJkRFXhtP4M0j7z2eA3fuWbGWL+XQQSkVxx+C0csrj6wB3lau1qX +pQU+pH9k7/ROBnFy3hn3H3M8lK5HHM5nekJOzidY5t0dpzKc76p1L5W7mPXL +TnewxvnveD5U8Rme0lHa8hn3w7wHz8Y+uNV7yCoI94fUnFrTAJx7+6aww2YG +IanbXb/C9OvHspJw/+xVDxkYhvXS7dc2IU/fOPB4bgK2ODWraWPAIEN3zu+c +gs/r7bz1SpdBlP8cqPoB7x97KG+lhfpOWhY2C3M6npDYpMwgNZWev1nHRsxM +5RYtMpXCerLruHLAyz8dPPlIjEGstyx5sAjuS3g1ZyjMIIkXu0SWwKVmSoer +VjDIu967oUvhf9Pxk3r8DCKofLqdF36bPDOWwcMgLsE79fjh1lONfF8XM0gP +N/usINztc2TbCeRnWacPzsJwv/vWoNe/kU+ziypE4a9b16YJIz9PajmGSMGj +6999LEF+XnC/MS0Pz3Iq7OlpR/4ssfxlAPturLPuvovn029xJ2OYLWLWTaqY +TnI3fis1hS89VqB55NGJUnt6kDmsbRSf1J1BJwasIz+2wH+1HVq7T9GJy/b4 +755wslzHrs9OdJIy83byNBzSHDB2c5xGDrwp3hgLv7vy4wv5SiMGOTEX42A/ +n6DP7cijfdbENBlmKXp1wRX5Uj2rJPES8/1HnC7IV9LIG/NElWJ4xpee8jyC +Rhadt/F7B6eKJjwQWUkjnw7IP2mBdfIMX+xfRiO3DNlXtMFlOiNNd7iQ575U +VX2C2xwsB6z+UOS6niL3APz73d1dAb3oNz9zFUzDkcHmT5fcpYhg6cD8LCzW +kFY8j3z1Neap/R/YZvVw+iT6lUTN0Nl/sFBDgv9/6RTZu9jRlm0cz2fJnl31 +5ymi26l2lQM299e0fhhPka7or5ZLYB7xDzI5yE93dj7PXAqvW7PuMOdRikSp +ZU/ywu3lx9qVgimi/HHHRYFx5r8PrM0OpdBPK9cOisOKGqHKAujfHmxwpknB +e1ptBpuQh2Zdhn6shtNDVl2NQ38YHM3NKgdzPa5dwYn+siwz88w62HRPRuMz +E/RLd5X5lOBgDvqZcH2KBHTbiavDg9ZCf2bQL9/9+TlHE5acGCotRf/9jdt/ +nQ58IPd6+iXkCzVptpL1cMLBDl8Z9Pf09Sk6BnCZ4grjIkmK3NoiW20Ed4xb +L9MWQ/+3r2yDKcx2N7K3eiVFfJI/bDWH7+h9j25aRpGbed5tFnDbHwUXZx6K +DFb/dt8M73q6R7GHC3lvWNzXDi6yeNc0xYr9+1f8zX6cmTeX5IQt+JE+IZOQ +7fDvNySQ/Y8f8dzgGeUCW22/Iyz0049ku0xxu8H0lUPDV775kW565LldcNrH +VdVy435EMnqFiCcskhSaFj7iR9wzc7P2wpserGJZM+xHMu/qrPWCA/prfeq+ ++pFPdbVFB+GrvPQWv0E/4vJzqJKC/+ypzivt9yMXucNMGcz9jd/H79rnR9pW +L631h3eUc4f97fEjjltUWoLhu9yuWyy6/UjKvseuR+BubZaKkU4/8v7I1p6j +zHrZnb86qcOP2Of5j5+ED97/9eNDux9JqmYLOgVf6Lq869gHP9L0PmUuGq5Z +bF63us2P8A7LRsTAkxqj6i9b/Yjtv7LFcbDoUy3DQThOyDIxAf4kv8yp6j8/ +0qDULpgMZySN0BPxeiuXOelUWGx3zjVdfN4ZetzNi8z9rD1Wzf3Rj9RGSahl +wJdVXdq6YfO7JkbZsMQCH/cZjPdUXXNNDtzpNbLGDfOp6fLcnAtfaXxprNbl +Rwj3qR0FzPq6csz/A+Z/YrVgVxFz/hwucUWf/chj3Rv7bsNZlNaNE1ivv7a6 +I3eY9dDK92R7rx8x2ld36D4sZTTSLo/1PXrEZaYMllU3jZ0e8CNVScPHK2Fe +Y81D77Bf66uXxj2CHzqJmJzBfqdHbBl8wtzP4Tg1DdTDnEWSWQ1sHf5vdcd3 +P1L9TmC2Fi6/MciuNovxfhX1egsn/yx91cZGkZxit6fvYcuYdQ9PclKELeCK ++H/wX/HLxYrMel3/OfgD/N+dZVmt3BR5Ob/6/Uc43vxUUjgv8lTNXpVOeEP7 +9Ml1/BSJOZMb08087++fbtizgiLDtoP9PfDiFN7edGGKWAusM+1n1vv2nSfe +iiNPf/DJ+MJcH8F8SS7kbZ4rRb++wr7//XhoivPZJK9WPAazOifM3kY+3m6s +KzoNz7k99U8wpkgpW2jQLFwrwcv/0gx5v/5B8xzs9tn19vwmirRvMz79D/7h ++WPED/eJvsiJXtaJEbPH0iT2OvJmRtdTIw74bF+8fMcO5Edv8x9ccLdIlGrD +boo8UjlttxQ+7evVIepFEakfdQW8sHq1RYwP8mPPcRtPAfjU7iV9XIcp4pWy +rVEc9ruZmGp5FvfJY898VXh2/aX5F6UUOSl43M0R5l86L0YJIL+JBw3vgNf8 +FDncIkIjojJ+Ia5w5WedZoNVNHJPzTXFAx5Tv+6irEwjA9Y6r73hpmU1jXst +aMQqYtzgOJzc+K+iOYxGlk3sEsuDX8bMO2bgedT50/HmTThsE8/zoUEaufnH +RrcILvsnrrEezzOyxGDbHVg1yJC39TeNBMiuPFsFr7qfq8+5nE7adjb9boJT +jl0vsjSlk6w6k48zsKvtrX0jKXSScHzQcA5ekf21szCdTo5pJWbNw2+mpHf4 +XaET1+yufayTI2ZmqWlWY3j+CoYcm+CG7X4HikpV0kmsXBW7FHyFI6TLFs/z +0M49B1bDBQdmyrZ10smB80teycCL6kISXXroxHzBJVEelowLNd0/hH7gvxkR +DfjOUuHMnhk6GY/LPqoF767Ib5f9QyedZpbdOjDPPr2VPug3HtxKu24AL3ng +em6KA/1ttI6qOfP3D1w+wyaA/sqwK9kCLuFXeWkhxCAOU1E/rGD36kdscSIM +orqrtXIL7Crw+fgK5EnJFcfE7Znje8x46CzDIDyv1oRvg8t8WH5nIl8Oawdu +dIbvPpEOkkW/1T4ilucKmxYFFW5D3qy9WsPlDo+mLl/8QYNBcnkEmjzhXTSb +p5/Rv3kM3HHxheXEnmhOEQbZkuHykII/c7onHd7IIEb2LFIMOGNqdvQ3+kPR +6q39gfBCneYNNhvkxYCZTcFwxf1m1jNbGGRaPvtmKLwvi/JYas8grSkTtOPw +f4fzhAWRP2s2p709AUd4bgxKd2aQu/+MtSJhA9uetxLod6+WfUmNghMcdRc5 +IH8m+iXMnoavsvSEi3kwyHFpHbdYOPBW7Ez/bgahPnQ+ioMtdmodurWH+fdf +5VPJsPL903sI8mn9qY6P5+EZp6A+FvTjFi/OqqfC7LN79j3zRj7cNNx1iTk/ +Y2OvDcinNdHp2pfhvM+Kg2zo781qLeOyJpnfPxY5+Bz51MQyT+86bF33w9sc ++aD6jFPSDdjJp3eYA3nCsJ5jMB+W5mn2fYm8UcVValQIj92uHo1GHtHbvC+l +mDke+0LKIoz5/zsRGLkNTyubvihGntFpeEbuwoa5b1UqkUc1bVZPlMGO53+w +NCMP3YlrNq+E5ZdE+35CXlJ7E55ZBdNOrmz9gjyqvKXL6gkcTdfPn0fektua +cb2euT/WJ7YonsH+J22ea4Bjn/FX6MQwyJq3s/aNcLPetdVmschH/Dfzm2HB +O1pnbc8yyGoH54V38JDcyx/OcciX5xY5tcIqWTt27YtHnnhfVtTGXB+hoVp6 +AoNcFvBi+whzH5C5JJvIIOLbBV07mO9/6PHGw3BGyvOSLjj16M6Jl7BIa8Ci +Hljv9HT6yiQGWen07v4A/CJTdaIC5ndO5JuAL9Rmpc8lM/OBsdc35u+/M9ho +cw55vH3s4Xf4b0fbeCbM7WrjMwN7TfFtND7PIDGX5p78hrnmC8cT4MWfClbO +w02LLNO74dNirrQF5vsv79+gloJ87Mb1guXbiJmuxInxE3BkZoUYO6zcxMF/ +DGbtPODPCb8zOdPDBp+UWFm/GD5csuRuLN5vwf2lFDdstzo+gh8+diXoMA8s +d45v20WM70/Xmjd88BvWczJS8KxH5JEVsHV/6nMlzC84W+OtECzjKHLhHub/ +63OPnAhc+yJjvz783dO0VQI2z8vmtMT6+edMKK6Ch1bKtDVi/b/1XomQhhPP +5OY5wuN751XlYG6fAsu92K+2Ac/KdXBvfmRrN/bz6YGXZkpw1KDbHje4cEjh +tQrcNnWFYY39v+Cb6KgO7xNZk9eKegkf+96lCX8zudnpgXrypjsf1IHDvVRW +DCP/GwWsDjOAL91bf/Ivs/5+RrEbw/Ifq8vPIO/zBw/Hm35jPh/MxpejXgeO +3Ms2h9/a2u6UQ76PjzB/aQcv+uqpvTUE68FeYOcAp/IO+n7E+fKM5m3fzlwf +bb+cfcjr1osD9uyA7+z89mE8APk5tm3EBT6t87U/DHldaqlhkNs3Zn/0lfGH +hvsqIfvvLrji+tc/R5HXO5K9+ffBgwJDK44fYJAXAo2XvOA566Hsv/uQ3y9o +rPGGBSOHlMJxv0Smz+nQYMtvQxtP4H5SvBrvFgIXvRkOjNiGfCozNXDkG/P7 +XCP/WHH/LVx3oh+Duw1G4iJxPw6trZoJh6f9R4TZcX++z5eKiID74vhkFaxw +nyic4o5izu9jUH6yOYPkFX1NOQ3vketQnMX9fKTkTl4cs15q8jXq9PE80RBS +T4R/8fOVqeI+t71/5EEyrOURpJemifNbseFNKnxvlph6KeE+fNw6lQ3fVvlk +yy7JIPeI/tFr8HgYeesrivNbc4XjBrPe6/O2v8fz6bQ5W2I+TAnxftDH8+tQ +7QHhQuZ89wbuzOFjkJ1Wr68Ww6FOyb83ceM+bVBTLGGO54T2sRROnO+mWaNS +eKr1WITqPJ0c7JKIqYerFLPSMtroJIhPc7ABbvRstNF7TycnTS3NG+GH6fMs +bY10kp7jz/Ievsjl5rf8JZ3Ue9WGdjDXv29byMQdOlk3wfCZYJ6/WP9C5dN0 +MrJQYy04hTzxfjvbaQU6mVZrv7kSfqlvst5zDZ2w7RlfJArvyVlHGUjSmX8P +ei4JXzr0978JfjqxOUMZysMBPPkFzO8DFy9bqWwA69nOxu17TiO01T68nvA3 +ke0VT53RL53XytoLX9g0tsvdnkbcORdUveAdjGiOWSsasR45b+87xfz3rgoH +NQMaWVdanRIE0w9LjF2RwOst+cViYTlOiVi9fvSHVZ8K42D9kjxv/U6KtCjf +MEyEudw1rAz+o0jNcoNdKfDIPYvFRnUUye7Yd/UK7L3PP9q0iCI7GRVy9+Di +Q3U6G0Mo8r43oqIUbqn14rXwp8hmR1urCnjrKo4vVn4U0dPv9amGvzeSC3bo +R1eyL71Vy5yvUtV3V0vk98P/Gb+CPSJcGtzR/3IOZTe9hjs+TufsNqTIsZ2+ +u5tgZ83UI3t1kJffaH97Cx+P0XLwUqOIn+m/ky3w16ltHfqKFOm7+2p5G3O+ +G6P3/beWIu/SPLQ6mJ/fPxzIgzxstUThRResqSMxny9CkadHfzj2wNVRdlEb +BSly2zMm+AtsLH//QthS5IOWbYuH4PrgLxIrF1PkyibJ9JEp5vc/hG/cRf6I +V7z3YJI5f+9jZUO//QjHlWPW35nzqbxtHPULeWiZZcdP+MqS3perpvzI94jl +1AzcvXOF3cMxP+L7s2P+N+xTuKltxxDy84G8hHmY7T/J5cLIT64fD0n9gzmV +hC7WIG+9tTEsYf2Oz4/gkaQjn1k95iQcsGwb+3VR5LmtDz+8WARfzVnE9faT +H9lRWbB5CSxOW0I7jfzodW/Ldj54Hfuy9T9a/AhVsqqdH77etPxywTs/ElQ8 +5b4C1r0kyOrZ7Eci81IPiMDK6mKv3zT4kbPXD46KwU/mJNRP1fuRc1f1D0nC +hrWrUvVrkeeuLP21Ci4/JzM3+dyPXM3oOiIDW7mv3Z33zI/kXyxZkIWfy697 +4f7ED/dfxCl5eP3/KrjzcKq2MAzgQkTGRiQRypBQkeJq1Y1uSK4xUySKzjn7 +EJlut0kooqIyRCQRV4YMkRSSmaKQDJkyz0Wl6b77z99zDvZe61trfe/jnM0/ +nzhVwiAF182WKMEZb7VbJ+CScPmwTfD6hPNLx+GK0C+iqnCUWxUZhesv1dxS +hwW3CXoPw+8vsBI14W/V0T0DcN/ZXfI7YFZk98p+eOS0aLo2PGAvZ9gLf/XO +zyXwq9ms/C74t2ew1p/w3pK50Q6Yx8O6RA9+Eqwt/R4WopT3/AWrmp63eAev +ZPysNIBTJKtCWmFJ11eGB2DJIYHSt7Ccy93XB+HrOaZzzbCyk6eFKaw29Pex +3bj/LQ56783hHvlfOpcxPjvtVjtYwX4u6cubMH67rUf6rWHFZMtRMYyviVnY +xGHYY31W1APMB2tfC4cbLCHlOFuF+fTamxrIgOvsBGqEWxnk9G4/fgp2iitM +sML8B+gaXnWHl3U4eyegPkK0167wpOdDXPTAUCeDRGhNRZ+Cba1LZFVRXzEa +ZWt9YYFotwVv1F/ilsgkf/hp68qmZ/0M8kDVZeO/sNuc+kAz8n3Wpu0ZZ+HD +nIUV8qjvAkU+9QuwubDufV/k+5eyD3cGw/NKBseksF76Vs8duA5fdHQadkM+ +H11R1RwJq7OHq58KMcmMaIzVLXjjaSpNGHmcQ+CPI7fhmij/E/nI37x8woPx +8LNkDkM6fwvx9J5IhPNygpRt5ej9JncqCT5SKiCQqcAkazkCve7DEUFpOpoq +TKKfwduYCo8VrlB7soVJ3A+FbEyH4ybOyupqMUlF9tX3mTCHlSW//p9McuJI +LCmEV8lzvbOwZpKC8iyBOnhXmZ3nqUAmMQ58nzwNL900M/V7lEl81e1/zcJn +sqfrPGeY5G7XB6s5+v62TKcOfcF+pvGRfwFOn/owPsDNIrGDU+5cn7C+V8k+ +VJRmkcF9i/9YBb90SlPJtWSRM/xqLdrwfqHjI7rlLLL86/Ejup/ozw8wp/xq +kI8/JkwQ+EKnx1zeaxZpLhXm0YefpJ9epPyBReR9pjRNPtH95+a00O8sUt+f +Ge0Ml5z7KnZfjSJHmgbljsOJDTP6f23H+fZMKscNDpQY8xr7gyLSseE1FGyc +1/Va3ZAinibUgi+cNWmrznLBeVeiYhcGD97n1PBCvs5Kdxm+Cq/812elRgzy +b3S8VwS813x8bu4ORShPwbAo+B5na4FPOkW4juiJx8JN7QZRWjh/o43/vR8H +c+Q89/mWT5FNOvnqCfBk4LZDT4opUqY4UXIXXmufpvVPGUUsV8sbJMPV+T+b +nCtxXnPbt6bA86GHa8XqkN976if/gxfrSBefe0sR11sZ6wpg2bh7cSZDFPkZ +MPBfIazsxX2Te5wiER6SWsXwViOXsMJpihQbXTEphd0WNpyRXqCIyc6KznLY +oznY+y3y+cDGH64v6fF7MExd4mITIS7m+Vo481C6w7QAm9ybvifYAGuf8l3q +IIq81t0R8wr+7mZm9HkF+q0iw0dvYX8zvkYpSTbJZyv3d8PL5U81eSohjwqs +2NsLT/ReU6xXYRO5tB/J/fDmxIzzcsjfEX0Nx4bhXvEB9ZbtyKtnC6pG4eLW +35dVtNmEQzJBYQK+GbmmL1CXTSgL99GZT/T3Ic0iNJG/5WcPGX6GZWqp0XD0 +i53huzPm4SUvNAZ60U9GKisJfoM/T8ZcVDVGf1y9jPoOf5D4Jfcv+tFFLt8b +f8J1+k4va9GvFi4aUOX4jH74ZKWLGPL5Bu38GW44vDY8JdeaTbra4k15Yf/5 +Wf1F6HdveAXl8sHH1lsNGSOPc2ZanRKCd/mvUxh1YpMiA9IqAiunBFRvR/52 +H1LYvvwz/bzIIddA5O9u6YWvq+FJxew0aeTtmyV91hJwu8UKAwp528im7okk +/PK872gx+neuL7lr1sE5DztD+JC3n0TGnZaBY8OvRgojD3ioBXbJwuzNlSmO +yNsKDSzdDbB+44+iHOSHWzy7OJThWcETPWbI2wfubTyiAtc8TPyUjLzNTUTK +VeE7B9p45pG3T/r1BmyDDcP2qtD/71VcVTugCcuo/ENGkFd6Hj3S2wF/qc8x +24l8YzwewKv7mf7+wTr/zotssvgy05XQ45VhEaYShH5e3qJmD2xidCXxDPKS +Z/kfSnrwhvHy3FfIU0oOG0L3wT9Cv1VKI2/1fhca3w83K6u990Aei47+YmRE +X+8rC2495DcTjZ6HxnBiZ1NLFszbXC30N2wwciBVAnnvGZXDNoPn5mp8A2Hv +pbGvLeAGTn2DaXhgLyPCBl4vqTtB5+/bvWaf7OjXFZ48U0O+ND2jY+4A+2ho +XrsNlz4WXOUM1xtv3uqBfOpjPu99jH7dNp27E948093mSo+P64ZWfeTZj2FV +Wgz6/V5JqTlwnFJ2DAv2Pi/lJ4k8bFYVvcCm3x8eaxAM8zuftz0J18WukpyF +yzhOPPWi358aMWGHfO0bb7rWBz76ZzpDGn5eseekHz3+rRr/PcP7eca3VP0D +h5woG7WDb+xc7nGOrpfr79xi8Pez295UXIZ/fuBxXYbr/fLrhfgV+LpnRGo2 +7k93Qx4VDsvySg0Zw/VeN8Qi6fHcrHEsFOOzPO4i6ybcVVZ6XxG2eeFVHgV7 +WBh9rMJ4Jo46r46FN4+0yR2Dh0QtmHFw2emjztzw5h16ZXdgM5Gpe0mYLy9H +jVV36ftXKvIpwvwWB8sz7tHX07JYNwHzz5m1svQ+zHXelDvwMvaH1sUrH8Be +mxJqT6Berv2cc0uHB9vGrpmgnqSMWpdn0fWxOXCtJPK3i2elaw6s/b6pfxHq +MSO2oCQXzgiUSh9Cve4cuXW8kF7fnY81c1HPlkFWxWWwecjoQQPUf/zDfSIV +cKXG9lVqWB8Db7e7VMLbewM66ecRK//Y+KQaTrvyOum7L9aLrJhwHX09TK17 +7j70+l/i3ACLn3bNTsH65Dj5tfAVfCA0uqQT6ze89J3TWzg/7WvbX1jfLUPV +j1vhkUKFj2ew/iWFiwTaYcnqQ7N52B/S7WMKuuCAwUIBGTc2qVyw5h+CTWX9 +dn9DHhdcb+AwAgdtSTNWdWQT8/0788bgot3tti7Yn267K/FNwuMmfG63sX/1 +RUkcnoalHXd4N9lgfT/nz52l54ftFsCL/c59cIF3Du401ODssmSTx4Jjdl/g +815tpkfNkee3deR8g+Xj/e6N/M0menZ1PD/g2pdrPrMPssmVgGLbX/R+NFmy +d96ITSSaby/mmsP+uotzkBP7tQbbzloAtukPUZDE/j7ctqhXCD4e1ZjMxP4f +S1JdReGLRstkSrTw90RnfVbBzwpixA9vRT37R/0Wg98zum5mqrHJ0X6d4DXw +8DqZZb9x3lTnBd+ShqVEjxx4s5FN/NeqSMnCtq8XHXaUY5NNQc335eGoq0nU +hDSbXLdam68E5wkMXOWVQH0vPHqzDTZacrxZG+ehwNFDttvhS1W8/dVLsL/U +/ezbAb8MevDJAvleNv6vWV24j2t0hTvO19bFk3674bKyEPmfOH8vUZGL9sK/ +zilrhnyhyPiubpH9cHjuQKwNzus7DwKiDemfbzBxlcF5biKqKG0Maw4/1RjG +eZ/f56lqBm9dc/P1qQ8UORPIZ2wPt1/Q47neSBG1ycwWB1glPueNVS1F+izN +7Z3gC4/X3pVCf7FPIYF5HD47OqedUUIRkbptoR6wrGmKR1UGRZJEHKsD4dY/ +u5ZuDaRI1e2CPZnw6gb+1Hb0W3G5AgnZ8DuDr9ORyhRxr3P6/gh+U/txp/EG +ioh9F8p7DNfWljaWr6HICZvj8mXw7krv+f94KCIkLrbkLRx9+0ZRVTuLWN7y +a/hGzxdJq+88zSJKma8Uf8CXpbqv9nizyO+X8kG/4LvflpkNuKNfnGvS5ZpH +vTw63T7mzCIL5krZAnC9rMngghGL3FneEbEOtjdkDpqvZZGP13QO6cEJnAfO +XnlO5/eOhX3z9PNEu/SSi5hE08Y/3gD+5x+WwNNcJrkkW9h3EBafDYsZS2US +pYKtLBu4qb8x1+Aak7yJbRa2h6XXOfg7hSDvn/V45ACzbaaI/0X609lZX5xh +gzfCjWm+TOKtYhx7HI4RSrxRdpJJpJZN6JyANxqp2bYzmaRqPvQDE/YKLpWZ +OYZ+vkPpAhtOqVgiLnqEScRLa+ROwn6/tDmt7ZikPNm1yov+/VrssUQrJllO +pQj4w4UPW0rUjNHfc6yPujhPPw80yclEm0kcPpbuCIZvv24xjNZkkiW1Dp2X +YRY/n0aPOpNYR8bLXIU7zrJ53ZE3OH11Kq7DD4uSph/LMkm6XcexG/D+uZb2 +31JMYrbbny8KllTle7FPgkl+yItnxMB6xpVnolYyyX3+QuM4+nr2HoqJXIZ8 +MWU5cwdW0h7NvSrMJAmFNzSTYU1FoZFgPibZYyhSlglv4LY08/3JIKOqWUdz +4Offh1heCwwSucKYJw/eMut3yf0Lgwx0hRoWwdo98SWuMwwSVq40WQxntqq+ +c55kEM3UmmvPYJmGslnHMQbpDnXdWgYXVZgJ2g8zSLA7b+sLuFs/aMb+I4Oo +WaT4VsL5fzPLPAYY5N0OvTU18/TzUUyvByIvKnEFODbCkSel1B8iT9bf/DX6 +Dk66U+D+o4tBTvnHh3XQ85MWR0RgKQcdtW74YN4FETnkU7aC/6l+2LLWONsQ ++VVMUFxsEFZp2XbOoZ1BSmcePxmGD/dImHgi77q1WtqPwRpjHNLBbQyyrHju +9wS8dH5wKhb5+H+PylPO + "], Automatic, + Hold[ + Nearest[CompressedData[" +1:eJwl2nc8l9/7B3AjQshKdjbZO1lRZIayV0kI2clKSkZKJDIiq0QhK0miRCER +4SNlZCWUmZXE73V/f389/3h7nPO6rnOPc+4HPiefEy6kJCQkFJQkJHPaNCPz +/TNaueFjKkvwRE1tyjKsFj9n+AdeZmqvJvsyoyVnlM9IASeiwzx3Qr0/Evy0 +cEOO4hI9LPEc+swAGUbi4/fARnbXqb0wwEzjCAcUjmfN5oL9zXPrPPAGSYsZ +H1RTySkVgLlPTJxF4YkfIq/F4A4+Eg5J6HanvFMWcnyMFVOA7TtPRytB2YuM +qqpEnqrpFHWYOvdm4RCRSzTD8DCR67R/gTaRK9OAVBee/I/fXp/IpdfDaEzk +ulrsaUrkqotsOUHkkVa4ZEXMz5oy5UjMb+p15Aysvq6T7ULkaOL+c5bI8W/F +zIPIofSx1BOG+xZQ+0CZonBnPzg+bvn6PJGHW5ojkMhjtfNCMJGj7bnYJWLe +CrbUGJgkUSBwHZYVylfEwZks4/ZESMU+aJMMhe64/0iBjjeiyDKJeSiYErNg +5pUc7lzYF1ir/BAanlnwLiPyDV/arIAxNrtuVMEGE+GHL6CSmv1AE+Tf06rb +DzUTLf77Ch12jTsNwXTSrUtjkG5OvuoXXG/O4SX9OqPVGRz0Zz+kf/DMTgIa +d/yul4If+XyvysP2Nrdd6rCVy5bbFDY2qGkFwmoqsuuNMKZe99tbaOEfr9gC +lwfYxj5AuTJp1f9gqYXD7A9YcL/mON3AjFag1VbhbqhDq73FCCcudBaxQn79 +SXJemD3PXC0HvfNtaBWhuk2O0wE42Ci2Ww1ypGq56cA0NR8Oa9gt5/HAFtLu +d5FwgFf32Gk4wfpdli3OcJ30uOlZKL9u+MWdGHfuqJMnfDyh9dObmP+rWoAf +tGmRiwmE2rk8RVfg5VR2+UhYe5OlLhrKhNB8vAHP+VBYxcMCF5KRW3DE7q9b +EuQ8sbp4B1rqLYamwUSNX+QZkFJ8bE8OXCL/ePAxlNxobSyGbgtNhqVwePCF +w1PI3lM1+Qyavy/zqYEJr4vWa+H7Zw8j6uGOklyaBqhxPzO5EVYl3H7YAnPP +Xnr/CQ44BJ/ohazm5wf64E1N99kB2KLkHDgMySRPbY9ANQHb2HEYxG7BOAkr +d5tmTMFfFIYCP6HIpk7JLHRa0lRcgMYfJGw2YLFvf/UmpGKNYtmGjY4DneSD +M1r7KK9JUsKwYrk4Kqi0ev0oHUzOVMzfDRc0R0mZ4LHJm6dYYFGccj0r3Ck7 +wcEOnftuBXMS4/D9kOclxmlOus0Pv57TmBeEd6pTivbDRTstKgloTDrrIgWp +jLT55KHL4ny4ImxMzRw8QIyjpquiQowzupSmBr/EZK9oELkkDMy0iDyBefRH +iTxcxzz1iDxv1t8bEDloTaNNYH/e1l9r2NBuN30Ocvvv1PWGoXuf5vtCBSca +xwvw0VpNXzi8zc/69ja0pQ4yvwP5Fz5PpMLK+rsU92CvNbduAdx7S7CtFmb9 +lesah65jyY6TUOr98sIUfJVazTgHR2RVzNahgJtWH+0Q1sX4vutuWKVIvsYI +tcnf7d0LXbP1bPigVPTjaQG4do4mVBjGHmzPEIePe00GFSHZ0RpHZWj7nPe7 +CqTJWJw9BD1PJW/rw7ddfyONINdhZyoT2CGoyGgOhVOzUixh+E5KDhtinpk+ +/pMwxu5QoSMcbi8UPwOVNBjKXeCtsmAFNzjFO1rjATWT9NW94EIAx1F/qDd5 +tS0A5lr9NA6Cx1XqrMJgUbHgYDiRkzveMQJWbju4xxA5/ZpnY6HTmJR/HKw1 +S1uNh8zvtkMTifxKbttJRP7CrsgUGHAj72YGbP9LzZgFBb38U3LgfyZHsvOJ +/G+K+QuJ/HIshY+J3Hu+l5XChJhjChVwcu1ZzVOo4c6jXg3Tvsa8qSHyG87r +vCTy11u11cP1HNGeRmjKeNvqHdHnq38GWoj+urRNtMOXYp6rfcT4htEmX2D5 +uexHA1Ds5nPSYZhf0mU7Ank6pp+OwbuzZHTfIQs9l+sPIo+U4utpSGVizPYL +Rvqc9ZuDweV3BX4T/ZDburYJB0/sHd2CVudlVEiH8RxM1k8mh0ZVTr8oYHPv +RR0qqLVyJ5sG1u0pXaOFSkotprthueXIY0YoHvSHjAXy1og/Y4M0Kons/DDK +9rG/INwObfwgDJdfLl8Sh96DdJ8l4fSmsIwMdObWvC4Hh9VtxhSg9Ul/1QOw +JzzuzkHY+rr+qAas1OIv1oUSTqo7DGDhVXMHI3ivKWb3cRij8/O8LbTRr1Lz +ghrFV1t9oCDdcXN/uNA1ey4IxlqLZEbA6rMZf1Igc8yV6ldw/Yfx4TdEDn3u +j02wiK72eys8nPKbpQf65rue/wE7Go1kGL7huuj5kMgEhyYMFlngLKV+JTuk +M9RREIDHetSVlaDFRF26MnRYUf2jAr32qtQegvF2Smr6MMXz2T1DmHVJ4d8x ++CRH7tUJ+Ky8gscC1r+RuWwF33WXfbOBHeNSmvbE/MtPck8S81NIkp4m5hcR +b3Qh5vcU0faBey4V5PtB7gQhigAoWS7QHEzkWt6nd5XIRZHzKIrIxcpDfQ26 +iGS5XyfyKXO1xRH5wtiMUoj5djCaPoLOuWn5RXBTledPCbzzOf9YGZQ4L36/ +Ar6lr1x9Cu2LlA2r4c1RneVaKHipXa8e1rGZZb2Gv0wcj76FRq9C0zvghA3p +bCcMW7mm1Q1ZbtOn9sISiZSZPqjdynnoCxw8cz95AAZsi04NwV2ZZWoj8L6S +0u0xqNJd930CelC3JUzDtqCJkSXoxHxOcQVulC5eX4Nik1tym7AxIvraFrTl +ph0kGcH7tSZJhhxeN2ePpoC8CzlfdsKaOGEpGmgq8uQqLZxqlP9MD/Vkjfez +wZH23kscMNjNrpsLPspxu8gHNVXnOwVgf98FQWFIRR/ZIQZzH1PzS0JlncRA +adg1wvpBFrqFZe1TgCRsggFKMP1pUasybJl57qcO21p+rx+CH/OlrxyGvScL +E3ThZ9XxPQbwK9u+LCMiT3dq8XE4XtYtZw4nb9LXWsIZdwMtGzh7NKbVDi4I +NJqchMskW32OcKP2wncX+C+twtONyHFh9rcH3CntQuYLaWjzrvtD+ulBhguQ +5YH5vlC490piQRjkcGiXvAx5VKieRUC+vdpqUVBw+XJTDBT99NLgOpSKk7dJ +gLJuPiOJUEGn+GwyVN3mD0wn+nqeKfk+NDQ15ngIjSVv5BXCEzTNokXQ4gdp +eQm0fqt+oAza54W8qoBOdovt1dBFWdL8BdHPPe4DL6FP58h0Aww70kX5AaaK +l2l+g3XPM++NwtEjsevjUML+dPkUbLzJzLtE9Gk2aHvHKK6/cs1XYtBDTZJD +Et5qZQ+Uhl9HliQVoA/jwyx1mOFPfckULip0qwbCq2QBbcGQqWuPzUWocM4m +8AoMzhspvwG36OaFcojxBhKr8iDvY7kj+VBLO9DxMYwK/ZfxFNL82MXQCjOr +nmS3QYmrJpId8Bh3skE3TDTjiB6EfHx1zN9g5ZzD/VHYcz3v9SRkbRDdWICF +8W2xv6GynefeVdgqSl+wDm1WyxT+wpmm403/YOjt38dJxnB/nUoZIYP3JA74 +UIwR+87+fzvhq5bQmzTwm9Orx7sh/12dCXZ4eHHOlQue0U+f5oFReVqefDD/ +z8ycAHx3/I6fMJx8rL4sCinJfgSKQxHbxD+SUK/yYJgMdKMZ35KDRbWKO5Sh +BOcA/WF47HzUbW3o/UGSRRcmCHxO1YdlF6+wG8Gunv33jOGCeA/PccgYFZZn +BuUGhQQt4QmFzgJreP5m8H47WKX2QcoRHsjyPegBrVfY6zxh8LEmDR9Y+2+P +dgD8avG6ORD+feKmHwK5KJnaL0K1ky+Nw6FDtfOnKzCcnt48Er5+5WgTS/Rj +H6VzEnQKKpu8AyM7rd3T4NvLxd734PfP5ovZRB9kts7nQeHYwtUHUHfENKSA +6IPyxt9HMDbxQXgxfDxlRFoK2zRXI8uhUV5mQi289Wjlex3sLjNRf03U8Yr8 +VxPMfOdwpHmM2Gc9z2gl1mXgnH4HLBh7l9sJp6b3rX+C4oshJr1EX9d7Cvpg +xbbkVj9cpoy1GIChe9R2jMB6rlS7MUgiuFA5MUbsg/JPT8PbJrSvl+Cj64Mh +FOMzWj8TlT7thFLpiaI0sKpA+zM9fN1UosAG+/6FzYtBcn9uF1NYWSsxfwI6 +kquFWMC6O7bxtjDgedozZzi5yUgZAu/o8CVehIcTZDjCYc4+E6lIaH34pmU8 +fH+NsjAPBnftkc2HwuxCLwvg1aIjncVQpePK2jM4tScxogamnszZ9RL+nq/f +1wBLmP7qtkFbO5rudkiVz27fCat/iU5+gi6Kyr69kMf6QvowbM+N4h+FodPJ +JeNEXaGVDVPwVtb81BJRT0qZ7gqUifcpWIMk0dIUG7ArbP7MJswNKGvcgn6e +PnykE3hO2M8PU8AxszJ1KvjU0OceDTRXnbfZDVM45nvZoCtTmTwnVKLxSeKe +IO4j6cV9sO/PnAk/LFgsLRWEQdPedCJQb1TKcz9k+zLXJg6nukr3S8EXrd6x +MtC2Zk5HEWamzTVoQM9bpfu0oNo17/AjkPay1JAOHAycU9WDJd6lGQbwkqv3 +HyNofFLK2gTyWM5VH4dzx0r3mMPXOt4BltBRcU7WDuaxzJU4Q3/a0l1n4eEd +3h7uRL2/Z0W8YeXPJzG+MHLc67s/UfeApPYFKNgzez8ILrc9IQ2F7xq9HMNg +aq3k63CiH5Wz3BGw8PZs+g1ivDYnsXgiz47+l7eIvwtsHL4zQdwfB3zTIN10 +CWkGjLJLE8yBDXdoq/PgZkeEbj5U3rnWXwDPa3p6PIZOQlrlT2H2yWqtavg1 +TbynBh6nYV2thzePxF1rgK1hJOxNUHN+RrUVhok6drTBmtP/newg8mcYLHRC +6d7XEd1Evhd3WgaJ/i9R23wjcopfnhkl8mW70/0g8lzVMFsk5jOaGqb4jvUf +UV2Vgo75NRdloYSbIqkCfDsvRXsQLm3x8R+BxtxUxlaQyrb34WUY1uNp0QU9 +jmaUdUPrFy3U/0H5HP5XX+CMR7/wOLQh015fgUqynJmck+h7vt4KN2TaG2jC +C2c3u8iFYH5rjKcUZHZcUteCJD370o/AOZ1jSzqwTfxRgQG8uuaw2xwuJLwf +cYX6R0q83OH9tYSNc9Dc0ZzFD76Q/aZ7kZhn8k3vJeiZkX/6CuQh97gYTYzT +u1x6Cw7EflZNggrqta13YPziPYs0OPnw8thdeMjWyeceTKfX2cyGS40i1/Og +YRANaz6RW3z2fgHc+tYp/RiW66Xol0IWDt5LNdDrIxnNS9h89XtqPdx3oFWg +AQb/LCpvhJ9y4tXfQTFz37YWGEVlZtUGh+oUJ9qhkh+bXydMFPr779Mk8Zxq +2PsZFpwyNByF28xS/ePQupXBZRJWhv1enIK7ZPvCf0Ln7zW75uCru5npC3Cv +cbjQb+hLdrpyBb6vPnJoHfKfE27fgL09P79vw4MPA9lpfuA5S0VzkRbKeGYN +0sPiThkNRigs/zaHGd5PtSJlhdwbM05sMN0h/C0HZHnDKMwNbwk+vLYP0sQq +T/NBUpNTJcJwbrBETgZ6aGrekYPfH/SsKMBBj42ag9DqYzyHGuyW5QvTgMYp +VUOa8P267qEjUNt+IFcHNrz2JtODqgJkzgawOiblnRHMZxk3tIT7ggOfWMOM +AerddvD2fZnuU5CW8q28E4x1t0pxhuEy4dbucCOZsfYcvLCWz+kNPV99GPaH +P/hOaV6ATtFLeUHQxojdJQz2lpU0h0NTZk3RCHj0q+vPaKjgVuV3C9JHmYTf +h+z+Mz35UNAxen8hkVftZW8xdFsWFn8GG523PrfAjhN3Jdtgv6ZCZDuc5/KQ ++gS5/vsv6isUafL9OgjlKnbJfIP68VoD49D84qDMJHR0D4qZguesmAZnYKDO +E9lZ+C9odHEOkgX/vxHyetfm4U2+8cFFYt12h8stwwf/2GJXYenPp0PrsPaL +sfxf2PUsangbDjzYp0A2hfvjdu31HfCf14ICNRQTto9jgoosayMsUJMsSWkv +tBpuGeWEUanyykJwiHLX9wPQXMnOSwW2uRSvqMGat4aUh2HS1ZsiRpCqcrDM +GF4elVA+Dj01O/Qs4dEtOg9HWCd5cskJyjuUhrrAoptbZG6Qt844zgOm/sxm +9oJ0nPOZPnAj5FZJAPR9/E0hCP7ol64Pgb0HujrCYdkKw3wsFBY6HRQH75lX +bMdD5ijS2ER44+lxhmRIMp6XngKDmJZ40+Gc1uHHGdDZL0k2C37NHXuRA493 +yR2+DzWke04UQrZZ5oAKmMDlvPkUUhhVRVXDsIs76F7ApSLzlJfQ7Ws+9yv4 +jXrlYQO0PKgj1QTb3VKq38HD6d81WuGLFsWWNlgg3Pe5E0ZMsP75Ajma9loO +wso8tqfD0PAKO8MonDjJ4TUOL6lztn2HrFxcIlNE3RtcUTNQ7wv36C84+pxH +Yx6Gpu7LXITFZnwWq5D+o+D7bVhYIiRMNo31jROO3AH99ETVqSGNyP6MXfA+ +hdgaHVSdEDNngL2N4hVM0CtPgn4PpLwieW7vNPHek2plhwfUpYW4YBenzFUe +6LYh840XZjyXuysE5VPlV0Vge4CCmRj8J6tEJw1TGQ54yEKp+QMt8tCx5GCE +MvxzQ2VYBSa5q6qqQzE9tfRDsElYfUUL2lNonNCGy+MaZUehcJ6muyF8fVmr ++dg08Z3osIApvM6pPWQOf6XoHj8JK28YH/SD1UU73p+HtW211oGwkUYk+CLs +ubFdHU2Me6NcIQMqxjHJNE0T5/w+4T0z2Fcr3SnaC0dGjktxQCqlDsV90Hqk +SXs/XFeocFKHysNx2S6wPVaf3w06yu8s8ICxsVef+MB+uZC6EBh8zfVrPKyR +0WKtht43yrxroOAEd0stvJ22EfQaemw9/dIKOduFswZgt1DKyhAx3mVy4xG4 +LDeyNUHMd/eu4xwMP0srSPoTz683oWHkcIZjupfiJ/E8fhdNA+lFFYZp4duI ++0q7YegAwy1GKKN4+QcznEyYPcQK703ZpbNBqnvK+txwlGypSBim2zuS74fG +1R/txGGtezGtDPRtYneRg8LcsfUKP4l94eqeAzCpy9n7INQT62lWhVuRWvs0 +YNVQWZAmPHeAp+sw1M7+LGsEXQ/+rTOG13p59I7DNhrXk5bw18Pr09aQTutJ +gB00DVq+4Qj9mdhYz8DkJ6p5LsS4eqck3GDf+NXnHnA9vOCwF2TnaOvwgfam +jBMBMPyngk8QzImx3giBY3U5DJfhDuumzAiIl6xwFHTbL6V+Hd54e7w1Dhaf +umCWANs30ocT4VxKnXsyZJAdWU6Bsu3kV9JhAJlhahZMzfLmy4XPlZNK7sMN +7y+NhZCL5t+xIqj+kPdLCbwycHa+At4PjAutgk2MZRTP4URJd+ILSKm3ylkH +RcfZC19B/XB1uTfwZlWUXjMsNXnU0wo7Zz6c/ACZ+JgvdBHXQZ0SSQ+0sLKN ++49Yv/i8vK/Euom+kxiCA01Tz7/BzZO0R8Ygz4b0xwmomWJm8wM6yQRNTMOH +rq825uBUeZLtIpT461r7m+j3rd2h67CxxvEP6S/kJFe02QENjlG/oIQJaUNs +1PDTaEXwLsgiEdNPB60DbZUZ4AgN+ToLFLT4bLUXuuUUP2eH8/LmQTxwy/7h +qgjkwrFJBTr+4bRQh/lHFqoOQfH+9ABtqEI68/sYMa7ZzSVHmLzWNR8DXdtL +jlwnfs+LTYuDYwaahxKhTHZZwl3Yrp0gWULkTjI89wl+dRV53QOfqJIz90Hz +77W1X+EDZTGaCaj5jerxKlFH1cTmOvwR22D6l6hTLnh9GzrtNDcim8W+b1A6 +dwcciv6hSw3LbZsyd8Eo6Zx5OijxxTKNCYZKNE9ywheHrbx44Lr11G9eGBhN +QyoMn2VmXhOFyxUS9OLQf9iYUwZWLH/Lk4MLNH6iilCaj6zsAPQ+kKyoAp8c +E6xTg7/OPDt8CLonfjbRho8K3PqOwsm6P/b60Hma08MYPtguWTCFY3s0gsyg +42HHKGuYY71IYweHva/edoDc0cxsjtA+Mz/bCWZWKAq5wK8tzcVnofXyVI0n +TKMJPeQD+3h3NftB82OSPYEw+cwrmxDYHWIychGaFvjNXoG36sgCIuHH7uSN +6FniPCYYEQuNtp/tjINxe3QT4meJc0Q/SyLUs97gS4HXvOMepcHmKC7pDKhd +oaGWAyNbOhvzYOOQo34+1KSJtHwML/OyDBXDV0oPz5TCf0ZKM+VQ7UyL71N4 +McR67RmsvTV9qQYeqNsVVw/TI45NvoYbR29pNcK6T0zrzcS4P9hdumBeiV1D +NyTzz+L8j+jrgW+Bn+G7Td7uL1C40UlyEMZey48dhtNGk+Mj0IBJ9NA4LP7s +nvEd0mYVr/wg+iAiXfILmqkrsa/CKrLggHXI2vqicwP2n1CP2YYH2S6Pks7h +fTvUoLYD2rtp/6aC9ZIxxrsgz++Wx3Rw5JKhIxN0ST7RwQm9XzkWSsErLJfs +zKERZ8C0JWTnPxdkAyulbZJPwgkDxQ9uUC9iVuUS3D3nwFEAB5fNHz2Cj/4a +KhVDTWqVE+XQX5D1Ri3ss/345yPMbtH4sgbjL02qbsAw+YTsTWiTM3SGdB73 +UVDYHA28LlxLzgODB0+78kLXJOr3/FB7yzpBBG79t8YmC2fjci7Kw0Et3WFF ++OJJ6gMVGBCtKKUNnVSHEo/C44tRv/WglENvzTHIzRzGaQpp3wuEn4DTCueP +WMH+GY4CG9ic20hlD/NpmT46wpMT5dYe8FiG9UtPqGZKwuMD2etMxs9DKv81 +nUC4KpLzKBj2Js95XYKN+qldl+eJ72Xq8ldh7rPvKVEw4Vz8egy8xKdodx16 +fh6sj5snzr8SkYmwNXLgSxI8+vaGTApRt8700F1ivOh0hXtQq1k3Lhtq6BYo +P4B11yxuPYSqrTsmC2EtVZVaEVTWP5NcMk/83wnTTClUbHujWQHlDHnnnsHy +uE7tGijdHp5ZCyWODem9hsImGQ9aifpv6W+0QYGuddMOeJ/hUWEn5D1utfUJ +5tymtOiFPN3PivvgPSYXsi+Q04zFZgBmJDeVDUG2Xn/KEchq8enpBGSwSqCf +I/qQpu6yAOn6f71cgjQ2hu5rMPbuxus/cOfXx6ybMIbDxmsL7rCjekuygPN+ +5nMOckg66OpHAa9wsbbuXCDeD+94aGBYVsAFWvh3SKCdHq6fvBrCDANzZLv2 +wJVvI8JscMnxUC8X9MubE9sHF0azIvjgrNOmlDDsm3CsEYUNru+0xGHR1P4P +kvCOR4K5DAz/tTQkB928rc4qQjV/3lAVKLwcRa4OGQKnbx6CEyGVOdrwZoT2 +O2MiB/lj4+PQMZqu3wwa7PQ/bQkVrvfNWEOeXaoBdpAqPuefAxxIdGM4A98y +ddx1gaV3ZAXciD6kbyh6QbHcm3ZBkIV/cSKE6MMDC+8wOCVUuxYOuwt5IiJg +3f5ImihYUPwjOQaGlJUXxEEn2T0yCdDoaciLRMj7/HB7Cmx91buYAys1D168 +D+81Zu14CGO0yRIKoW+z694iaKv3IbcEardJi5VBto/ralXw7BBXbCsMoJeb +bCPW6ZCudgdMz/Mj6SbGd2kOHoCicz7uc3Bmq9GAZRH3kXT/I1ZIdnqWkn3x +f+egJm5oeM1TVQSW7GaVUIFevO50jnAiST7baZE4D2xJuUCDmSRTDyhaVZcc +QPyuy8Bxnfi99mtRHOyReKiaABsZVRySYc7AmdwsaOvzXLgSdo9GPK+C+uZG +es+h8sFR9zrISr7rSTNMuPCf+ntIMZXz8QMMs/U49REutyssdMFzh7av9MCx +iveMffBT6kn5AahHvf/tEGy4+Nt8BJY6xgZ+h8I9J3ZOwSwd7vQZeFOs8sU8 +3JEVZrAEL+7WHViGSxGMnmvQY3lg8w8xvmtB/Ca0+eLLsw27DFXLSJcwzysK +zR3Q5OXnt5TQsuaxPjV0qTxmRg89y/b1M8CAkkV7Zni1IMWVDd54cPYnB7yd +e9CXG6Zn7VrZB3MzhkL4YWFa2ZbgEnH9RUSKwOrbZlRisD5BKF4Cvo1bY5Re +Is4771Nl4derXrlKcOzyIaGDcDqMsUgVrgc+e6oJt89fUz4CKf1s6nUgvbf4 +YT2459y/ZgPI5dZpeAwKuuR1mUBxp/MWJ6DcKZ2v5lDFfu8pK6hlMz1uA03N +4mdPQi/d/0jcifq0C6PPwTCtEBpvGKlheMuXqFOVm+U8TFKeT78A7yq+4Q4m +6pRLvh8KH0m7iFyCZRIHSi4Tde6nlr0K3wk8UblG1LN35dhtOMPS0p0MFxnv +WqVCElr105lwJ/XuySyiHspRj9wl4rp5On8fcpNEBzyER0t2fiyEvtY3RIqI +vpXf+loKPU5naNYQ8zWW0X6AxtFf8xdgsKzD1hLMG/pmtQKXFb/TbMCMyXlf +8t/Yv+lSqLPCcBqZ/1Qh8/rZ0xrw0fecWU3Y3bCb8igUCppXMoXt46XpzvD0 +p0nBs3D1FU+FO+TNSHjvDc+bem8EQ456Sft4WFbkMnULaqdnBSRB7/N08WmQ +/LQOewZMN7708B6UUHsmmwPf7J+tz4OWe4UM8uHMDoe+Asgy0j5XDN1SS/ZV +w3+RE8U1MMmPS/klfGl007QBmqq8HWyEEyKbbu8gPblnRBt8sPCAruM3ca4e +uNsJnV4YVvbCZz7i48PQk5ZFexQKPt7MHyfGHetwnYL6l6tbZiAJV47oLJHf +wndmkejHkrXhMhxM0CpZhcniYnR/oEErk/dfSOry9+M/WEM6IU2yjPtU9dni +Djj0OevETngnIOYpNSQrtbpAD18YaPYxQN8fogeY4TDvxvpemFI/ZsMBjWw/ +1HJB8rWnnPtgbfK9MD7oJxM9JABFO7w0hGEq5SEScXjsgchpSbhDk6FRGvqH +jEYqwP2sbRNKcKSyUucgNP4VuVMDUlz3dNOEdUIW7w/D843qYjpQ7JRwnC4c +/Uv/Sx+mp68ZGUFTxZEnxnBndyv9cfjKu8LHDAbuyuiygBPa55JsYeao2W97 +eCJczfwUbHhOx+oMg8xXA12h1OLwZzf4Pb5F+Ry8J1Z+1wuataRv+EAa5wg7 +f/iGxKMuAAZnneAOgq/fHvYPgZS/5FouEv1UYfa7Ass/97y9Dte2mthvQg3h +Ku+EZeK70R22ZMh8L8orBdo2BTSmwdwZ570Z8Aejhec9Is9BnTfZMMBRkTUP +vrwmdO4BsU5lexoeQv0+ij2PYOK/FfciyGPUx1wGXc43u1XAkozq+qdQZTr1 +bA20jLF6+QZmPdFleEv0pfeASzMU3xSpbSXWRYBt94f/rT+Vcwck8V+v6YQJ +Df1OvfC/H63P+yDX7he0X2CRw93qIdi8YUPzA9LxG5yahub6KlU/iX77ilHP +wbE0jpMLxHq/pnm6RFxXkxs7V+Bzup/2a3BLYaDiD9Sx/0C5CW9GvrTbghzd +mRTkK9jv+djb0MKpz6Sj9DBDs9CNEW4xLgWxwvLQtG02eGZc7RonbK26lsoL +Q7kleQSgREz3QyF424r7mRi03ajsUYC0Z6ztDsBXH/6NHYQCWXpLGrCPYi5E +C8Z6J5Nqw1+Hhhn0YfajyHTDFeL/2fbzGsNnY+elzWB4NLWxA5SZK/3vFByz +NHdwgrqiOZ5nIcMHhTi/FWLf6dgaDVsyqw+XwntPaXPKoe8Hp7+VkO0vfdVz +6GF7VugNpGdno+qFlqkhHX+gWGnn/k24/U4oZgs+WvmkQb6K85u5WDktzGYe +SNoHvyeqWeusEu/3gQ1dqGQbmmUAYwVqxkygWLW8ly3syeje7QDDLvtVnoId +emVrzjBQ0jjjLORhmlXzgC2rcd88oe+A2FUfyN7wXtAfNua7tQRAZu8C2lBY +TcKfFgVPfW84eA1StZ0avA5tkrP4bq0S3/nV3t6GRfYDrnegmVYodRrcFGIv +uQsf0tQY34PG85aL2TCn5o5SPjxsyPCmFM5Il52pgMksxpRVcGIozvAFjG8U +m3tJ1Fn4PvEVHI5zk38Dr/nu7GuCMhYFwc2w/6AO53uifvJIx4+wPWVrph9e +CM2KHyDqPaUmMwx9REMvjEM2Ona2Sdiw+Lx2Crr3WTr8hEwvV7Zn4f8BSDhK +Aw== + "] -> CompressedData[" +1:eJwk3Hc41e0fB3CzJCSRrUhkb9luJYREESJpKON7zskIqRRRZJZIFCmRURpW +0lIhhYpHyshKtjSQpN/7XL+/nut1cc65x+e+v593zvVI72Vs82JjYWHhXMTC +wvzvhDl3z2T7iFlrtlx59G4GuRreZ/AdVvsbumrKk0G2VVal/oRjdr6Ocd/L +IOVKfja/YWOhQ25aXgxyQuBNOdvHETMS94Cl15dBNG1zl3PC2sNLfW0pBhmI +PkYthhMtPFoqaAxi9VtZhgfewMqel3iIQeY0OY/zwVc8nJbN+TNIMdX1gR+e +eZgf6hXIIPw9CQlCcFGwrY1RMIPUiB4YEoY5W7NK80MYJGi7yUYxeHGoQ8F0 +KIPIJazMkoDLDs9uXXGEQdprJ2al4D2B2dNq8FmWuu3SMJ+/xRVb2Mgg+/Ya ++CF9fKMPfPXW1v3rYCFfw3PX4G1f5Z8owjUH+9Y/gTmkWcRUYLpXbHcH7H3h +TrMGXO/5QUkojEHEmmIUteEgj/D3GvCbxXuidWEZ97VH7GCNo8sNDeEzzoG1 +Z+CB0uFUY9jMSYyWC6dNPPtmCo9ve7biGWy1LsNmA5xp713VBc/tCcgzh4d+ +dRbVwcWZ1qyW8NQPqckHGI/HfzLum+G5KU/NYqxHjVXLcjuYZ2KgMhnrFxRZ +RNkz5zcmNx95GOtVfapuGyw14m16OAjro6Z93BlWHxx76RqA+a9MHfKEHbt/ +vpehY/72tI374F2duiuFsJ/lsZuyvOADn0JdF2O/vZ9L/j4IM9qrLv9GPYj9 +/bXdFw5tm/886oP10G26TcGRrSZrur0ZJPxQ3hIG8+fsfUXnDjKIemH4fn/m +eFK3v0tAffX373gSCA+vfTkduw/rI6kmFgzfL9eVOL0H6+O8+HAovNPqplkk +6re4oULxOHzDLy4+zA3zvSuSdho2uucg47edQc4r562JhauFy/sNHRikJF/r +bhwsEi52g2crg4xcsXuTDP/c3C9/25pBuEQ7XVOY+1liORxuxSBrL/h8TYXf +ChUXbrVgEM+zUWyZsOmnfE1tM8yHUyD5CtzKzZ9vYMIgmSezJa/CKUah4maG +DNIWXKV3Ax7MsuKw02EQm33f6CVwxf7h/w4qYP26j8/fhYPTHKzpcgxy2nXp +2VJ4Sd2Dx0FrGOTpVrkbD5j1o3g2P0KSQXSN3Duew2MlEgf3LmcQGaF6y3aY +I81uXv8XnZBkp/8+wSvf/5wonaKTXUv793bBscsye9Um6CSddeF4H/M8xH6t +XfuVTngntErH4KPHT55b/pFOZmuzV7N+wvizpGYtquikOTTktwIsn+p1xf0o +nfBdL3NThkN1D9zMCKETu8Yfj1RhnbYD99sD6aRJ+lCkFnxXyPuVI0Unbxq8 +lxrDzRd9f9nuopN6iZ2S9jDPub+joyZ0UvPUyCwYDmd55r6MjU7Kudhia2B3 +OTOK7yyNnH5k+fkFvPjHFNfJ0zTiFJCgUwfrP7t2YyqSRn52iPS9hoXdOT63 +HqURzRI1w//glnN1Dpk0GrnttGv8K2zzd8v6dQ40knet0oG3Y8SsoL0/OFGM +RoKdF/KXwSO0Fjl5YRrZxGO+sBy+yvG87ckKGhk43Fy4ElZpcDPT5KURmc2D +7Kvhy/RLuhdZaCRrckW5Jny0QlB6z1eK0HNdeXTg4VX7PQwGKGLsmr13PXwv +9n7mil6KdNYoLjNifp7btpW1nygilmbmvQl+8TQzy6uZIheNGGIu8OKyDSyn +HlDkvabv9Z0wT0OrfVw5RXgUvJR3wUY9B3JS7lMkUsjNZC9swR23IfcWRR4t +3VG3H7ZZJZlSXEiRWVYH+4PwVu2S/tJ8imjN2nz0gRtl83v5bmC8ExZ7KbjE +ZU34q2sUKRgwG6XD5+OzxaKuUmTgk1GQPxz0VLzCJIsirnWap4PhVQqC3+5f +ooj5VanCk3DCb469WckUOZEmqnUKZqhELLgkUqQqXrA6Gt6252/GiniKqB/h +bjoLC7/61RJzhiJ+DE7nBPj3vP+hjdEUyfNi6UmCO9UneBYiKdLj9sf7PJzr +5VtQeZIi4tumpy7AsYKvlpMTFNlhNRV2EbZc4xT66zhFkk3G2DPgM5q93YXH +KLJIqU8oG+a0/10kFEaR7+xN+gXw37MKFqNBFFGZq68pgqsvlRVfDaSI97fn +NrfhIzfNVuwIoEh354Nd9+GZl649TxkUEW0pHSyDS1u/WATTKeL4qoRRCQf2 ++99SolEk8UnhbBVc9v3vil4/irwquxHxCE6vHXNt8qUIR/FV7qfw++tXm2tg +k2uZKTUwf4Tjpgq4NPHcjTo40rBa/Sp89eDxV+9g7ztxiwPgjl2h21rhawmm +xw/AKx0DO9rgT74/vu+E44nPeAdst9ateyNcp7s/uBs+zbbMUQ9mU9n9rwd+ ++rnmlTJstGZnTD+8UB1sKg2HiDotH4TXZyiWCcH3ltlnDMH6D1PnG+ExTps1 +o/CGhOmDGhRF5Oc3FY/DbbudWy5g/nu/E51vsJ9mpcks1sfutbLrHPzwmOFY +NNa76FB7+Txc0RGf/e4wRbhWRgn+g+8bdG+TDKFIjWdHM3vniFnx7MkHpUco +smrRGZVFcIHze4rlKEWOFWnGccE3ytestsX+6k7HWvDCWUG1p/vDKZKSqZO7 +DL7UImyghnr5RnpZBeDok1ORbyMosmUwfrcg/CVbJ+5EFEUK4/QerYQtnxxJ +UUU9LtYYEBOFb3Y/yuyKpcj+tqRQcZh7gTU3HvW7Svqr1mp40vhs6cg5jKf2 +/DkZ2H5XU/WlCxT55GcyKQu3HBd4aXWRIhfKUwsV4LTqjP/yLlNkys2MSxme +6ejucsrG+rCOe6nCrn9kBjlw/rhszaW1YHGDoum9OK9eU5PhOvBx18mF5TjP +NWmZnevhrlCtxc+KMR4jSwMD2CQ9ZNmhEoyn9/tFI5hTdlPvjXsU+Xg665cJ +/NWVTyEL94eusvV2M7gu6cOhtCqsT3AOnwUc88eH5UwN1kdiC2UF+2hoWZ2o +xfo8m31lDdscnE8KacB68NhHb4V5WhJXeb+nSHvOwh8XOKnwvsnmPoo8feM2 +7Ac3pMWdK+OgEcmAxZZ0WOBRJaN8CY2ECd/PPcScb/+XLRV8NKK9l9vzMDyk +RrgfiNDIzZnKtnDm+F/9jKxWppFzMitfnIPP7XBPMXOikZ1LQhwvwHJRlq/3 +u+E+/vZhIA12LtFkj9lDI/ceXeK8DD/gXBLYhPu/1UXSMg+2qijb5obnh3CS +bEMVXHFwXvxUBY1c+aP5th8+e1JIJFCSTg70pXgOwplh9wOvrKET1Vc/vw3B +u7YXcD9QoJPHaeXLJ+BujlS9bzp00qNhsH0WzqWoCx52dLLG26yNp2vErElf +3NbwBJ2M2V07sAxOrz94WSyaTkp12GeWw4knfbqPn6UTc/aXwsJw+Ddqr3kq +Pj/LylUaPt8a6PuuEJ8fXTC8Bj4bf7hY+w6dzPhxh8nBmRYhExfL6CRG/02G +EnyjMizA4ymdFLRu7dSBszMiwkb/oxM2i0pPPbh0TCpVp4NOdlas/mIAu/9i +q77wmU64M6bGTWF1b/EI1iE6oXan/NsMazrYLu2YpZMXb/+csoWvnG2nLf9L +JxIb9nNthRe/2P/WkpVBGmV1ljvCMXrHU0uXoL9Mu5K6g/n5gUtmR3jRHy1e +JOYKL7mVulNagEFUR9pkPOCuVbdXJYqh33EzzfeELV0NIl9IMUj3m3ylfbAd +rwJrhwz6HRP+O15wySPO0cq1DJJUEqrtDWsx+lrT1jHI0OreSl+4fPWTx0FK +DELObzamwSLvMm9uU2WQb0FiFgHwRw2nY3za6B8HIxuCYP0+jQNjuuj/nUft +QuCM83z2DfoM4mBQ7XwMPvGzbs1pUwYpLJLtDIfZ83J5929gEDbJBM8IeP+O +iBmzTQxy798un9OwbIXB67/oH7n9a8dj4NMHhcs6tjDI3j7VgDj4q/DPrAf2 +DFK1/eJ0Amz+bvKmMPrTFS//hSXDbKI7zx92ZBBK1/vfefip54ujLU4M8iL/ +7alU+Ee+qpeGM/rbsznxGbCrLrveuCv66z9Lll+B447TpG3Q/8rSAlKz4Ucv +PnAXuDPIf1s3ZuXCt7cXd+1Hv6z6rEgmH6YyV9bVIO+d1hTML2DuV9/JO6uR +93SFvpTchjn8nU517meQxNNbtO/CupVPKIMDDDI4U1Z5H/b9p7AjHf27iY+U +cTl82eKC6TT6+4ufTj+rhMW6nv0IQP//zWZy00PYmHu9tBVs9ci54RHsv77Y +ThKezV7XUgN/OpdWUIfX2y8/5/wSXvZk6YfLcEHk7446Zj2OneQIgHd6NQy8 +gWMt/HZLwA8Vqek22PqPqZA/xqNrE731I2xy8NiazfAdv6ybHcz1bqnUkIYV +4ytYu5m/b/rL9Dfmk1v8dmcPbF+kYfcOlmocvt8Hb313XGEWeeTSOBvvF/ia +5T2bYKyHIJ/Ega/wr0eDtJ9Yr0RVnSfD8Ki2eHIA8gnXVjuRMbi/aOu9b1jv +U4yD/hPM9ZOJaqV7MEjonUtrfjDra9m4iB/2a6/mwpl5WHDkcc4+7HfnNuHe +BZh7z4/nvagP50B1A9Zu3D8f5Ad3b2OQ9ymbU9jhO1vcubpRT7ale8c44Zsv +khXdkWdqW49u4oKzDF/afkL9mf26kMUNT939TXexZZBqodszPHAVt46ZFupV +V7fOfhlsNJjVFG2J9drRU7AcfvSMy73dnEGUQn6zCcLilwOGFVH/qyuVykTg +OQcLjrdGqHeDZFEZuPLRuL6YJoNE7SwIkIX1LznXUWoM8i+s5rUcfDHwmeMT +ZQb5+fDncSU4WCGVsV+eQeidvB9U4BmOf/PlsgwyPC+nrg47ffY+uwTnf78k +idWE7z94L+y+CveDsWufNqydanTjtgSDuHgEGK6H1YVNUsJEGaQlPO6CPiyi +G6A/IMQg9U8eWZjAAYc/RVfw4byayRRZwrI/C6U8WBhEea8hhzWcKvj5Rd08 +neRHOu6yhU9orfDT+E0nl5+fXuYAtwccreD4TienN40G7oTjpmzsi/rpxHVz +qREN1lTP8rn0nE5MiiLrGXD66JoGvid0Isvr4BgAr79RoBiFPPXt7bhfCHxY +pGyUfhf3t4t8ZgQ8ufCaZp6N/HMw43cqnMB18k3cETpZcfpk+WN4L5truaIy +8tlXuw3P4J2GeyZd5emke7Nk03OYHuCzLlaGTgp5q77UM+fTcyTjqwidbEj9 +IdgCf6nOCM/lpJNDuQcCv8IbFRWKVHtopLHGVp3/84iZYf6P3NhLNPJfy+tk +Afje+7+bmlNppGvAekoQVlxY/FXwPI2ML9p8TxQWdZJQuIp8xmuzSXsN/Jtt +061y5K8tLcZ6uvC8Q2XUfQ/ktYHqdD34yF/O5PN4Xu/6ZfjbAP51c3umvwuN +0IQNqkzhiX8Td9W20UiCm67RZrjr1trPRZtoJJUqu2wD73QNHDm7Ac/r49p/ +t8BtHM9++ZjSyK1szcfb4GY3d551+jRSdueulBNsvbhQeLEujTx6pn7CGa67 +NyMzqEkjL9+XfHaFN3psUn2phvn3qxJ3+MmSFP1c9Bv//bx11QMe5V4h/1UB +8+dUYd0Dh1905fWTx/zllWq84Nw7gx8DZDB/St6cAU/2sQRGon8ROp6X6w9H +MCxdF61E/5O4ljMIFpxPMD2LPKlyZ01tKGwgJM5zHv3Plp+rrCLhaEudGzno +l5w4s29GwSKtR+PWsmG9VkotOQMXetb4F/xDPyh/xScWfiAtNFHxlyI0PYmG +OLiH482Jrj8USTgmYpsKHz+XXxv4kyKNHMvtb8LlhR6OV7+gf7t6MbcQFojZ +bdjcT5F5Q6nfxfCN/Z4yC8inFz7kbimB9c32LFHpoYhyoNK1u3BnyrdAz26K +vOC7N30flp18GL+miyLuhXo25TDN+syNwQ7kj95NP6vgvyxSH6iPFJE9/sbq +EWzhPjyp1k6RapHtV57ACRWlXD/akCe2elq8gKXoNgZHWili+zgsvREmHaFX +opGHB1xZx5vhM7rm5VZN6G9/nTF7D789t6x5aSNFBM/xpbUy12v809em1xQp +Vk4daYP3WOWxnEe/al4vbvoRvnndX9TpFfL3vmspHfDUgpGmSD1Fgv6tG+qC +x8q8ZNzrKLI0s8SoB/bpekwVov+9pqt7rg8e4BCpmH1JEYP31V8GmPup7M9q +CfsuaUgchgPD1qT1P6dIQ8hAz3dYQzjmicQz5KEVfjq/mOMx6V3i95Qic7en +YmfgJC8DxwdPKKI4uKA5z6yf+2NDTo/R30dEn1mAV3Vs0sp9RJGdkjydLD0j +ZlvYso9/r0Z+rTyvzg7j6VRH4FhH0WhO+Le9g0DSQ4qs/pb9cTFsfZuTdytc +GSenyg0XqK77JA/by9+K5IG5S6zzWeChGq0PfLCvGi3oI/KAlYadggg8qj5z +0wjuedN6XAy2uSsaLASHeru9l4CLNYw2TjygyM1s76PSPcy8F9GVDRPDyeY1 +8Jt71wtD4fa2w7JysJJWbYgDzMV3qlERHtNaKsAOXy1YIqPCfP9Slc8dlRTR +25QcrMZ8f2374lL4bc/K1xpwHrekyizsfezKKm24a+Y22wG8nkVENkgXFvxC +2lvg9PuF9Xqw7fv3t8ww3rqRCn9j+GzxtIsk5ttQ92PWFJZULom6ADflqp3c +AH8uOnhnKdaz1SM/0RJeVNS+eA7+YNgvZA1fUjyn5Y/9+CSy6ootcz6Fm3cP +wT3v04oc4O0FVeVt2L/+kveajvCXdYF9W7C/g/F8VTvg0JtKfC/hER9rM1fY +cN2AvhHqYdzidL0brLO1I14S9fJtTc1WD/hUzKyGDfLYT5aFNk/YqkboQyjq +a67q8Bcv5vtr20u3ov7+XrxLeTNfT6fVsqJ+WQ6P//Blvj7/rJ8a6nuxmhfb +Ifii2MuyszgP3Dw5sQHM12/v21mJ88I33Ml/mLneCf/+fXmD83TdcVUY8/NY +DKzNcP6ETybnHWO+Xt95kv6WImK73qicYL4+IOjC5XcUkTLgKouAi4rP6Tcg +D0oLmxtFMevxy+3umRac/58nnp+GG/32NXb+R5F17x5ax8JD6ofXffhAEdU4 +LddEOP5Bevdr3B8a3oyeZOZ+HC/Ur8X9or2p6GAKrLWh+sLTzxQx/CcTnA5f +ff3Zugz3l1WgQMo1+G6XXEXWKEVs7O3EbsAc1/QELo0jX6uczcmHdxywpqVM +UmQbd+26QjhAyb0+YYoiTl9Z7xTDLyZpa2J+UMTlhfH6Eti/SUPwzi/cbzlH +Ht+FRfNrLkbN4jy7Tb0ph5V3DGSpLOA+1lNxfACXqhyWYWOlEW8hn46HsDHn +orw2dhphNPcMP4XpZfK3TiD/Htv4dtFr+L6g38N3gjSSplRCPsMRqqeCk1Vo +pLoi83IvvO5ScdUfdRrp3Rgz2w+7s7UtHNCmEWX3PXeG4PVt684YG9JITfyK +1d/h8eNNF0es8HwaD/nH0Yt8crHe4/1+GjG/Qx4rwjlnLAQd8mjE10hFTAXO +Ppj1z7uQRpLqRYPVYC1yetHP2zTyqee7ijb87xVbsGglxr/8xhVjOL/jj+P+ +BhrJCFhy3B7+yjIhMDdBI1Pa7w2D4YDI1N42AzqJZAtqCIUtArNlOAmdCLwV +cj0KC+4t2Ke1iU60/VyDT8LVGx99SdpKJ6E5PXfOwoPusg/e7aOTBd7Jtdnw +hqAjjbrxdJLUkVyaA98S5ji08RydrC7Q3JgLr3yYKGCfRidm5sGeBfC3f9ed +fa7SSVTY34z7sFNOgyDffeTbr0v562Ge5j0DHh/oJLP0VlYDrFPmuDCEPKwc +uVWlEfbItBQJ7KGTLZIp1u/hYS8V2zPDdJK8XSy6k/l50fvMD6MflJauXvEZ +bpXpu74KefjexK5rvfCFp57sDegnW2JzngzC1+d21UhxMcjKp+vmvsFqh1xI +/UoGyU9oiPkBT/J+yA5A/tVzo4Sn4dtFTv8kkH/r1/HlzcILlq0eddIM4jpd +ov0HfvRl22N/5N+R5w7P/8JHT72TlFBgkLBzPxxY+nCe4tKqy9FfL92d2sMG +r4n33q2B/vuy8noGJ7wr3oCtWINBVOba/y6GL8Xz3JBDHn5cFxbPDbfEd1vm +IA9/3vu4YBnsEB+ZkGbIIDKXNg2IwubxDSIRyLsbpiYOSMCWvDWrvyEv7Nuc +PiwFb0x6sG438kRUjhklDRsvv6vehLyR+3tkYg1Mzt/UM0Y+eelwwV8ONhK8 +SoodkCcLjH+ug9enXbQSR/5dxPY1WAlOafw4MIk8JL8z+bcKzHGiTvTPDuTH +e/rH1OHD6mV2i1wYxJu7f0ETPtp77dRy5OHCKh0OPeZ8zcPH5ZGvlMU7+DbA +1kt0njkij20JjDpnDldXyUzvRv6lv1YRtISVKX4lP+S3xDUf0jbDmpILu4OR +70qOnhS1hXObRi9E7GOQty0Kl+1gwZMfX8UjD35TapFygMU16hYuIi8ujzqW +sx2O6yvVuo48qdm5VnYHPM/lv+4hvE27Oc8FrqpyS9wIB8aHKrgx15Oy+Pka +ry81eq3qCZ9rFn/KzN/rrxzS94V/ptY6L2A8Lr9Eqyk4wvLuo9Nw6JbnJgzm +ev/OXLMMrvorZB4Eu7j7T67CfD45PakNZo6Xz93pJub755b35iNwzhOLh+qw +xCKBN0dhNX8N6QdYHyOPh3bh8KiMxBkzeFf5/ncn4VZeW5uzuxgknI/P8RSz +fiI0ihOxvk8ee7rGwGM+87SLzqiPVYv2n4cb9M9P3cR+7w0pGbwAO98O2XYL +efRUs4vPRVhSZtf9uzYM8uJEEf0y7M+97nAV6unLB8epLFgnnLftMeptkfpC +YA78e+q77vONDCIXkz99HY450H6xzoxBLHvsj+TBWz49mn1tinrQm/tzEz7O +fqPglTGDxCRfDy+CuQ7dX3/QgEEKhmxZb8P6Hc9ecqxnkAYyfeoO7Gvxdvs1 +LeTpnMzEKrjn15J4ETkGSbr560s1062K4d+QR9+XbDV+AnfftzlUjzzq8ph9 +7Dnc6Z/gGIr8mfly18Zapu1vW9ivZP57VkVGPfxJrVlv3Qqclw6/zY2wxiS/ +ZDsPg+T1vbzazHSTxrI7SxhkaHjV7Dvm/G5vY41ZhPw9dWRrK3xk4Mb8OzbU +62xLXht8Zhct6dwCndz9p7LQDqe2acs4zNHJz0UxTh3w9a3zpfzTdBImZMTR +Az8xi/uUNE4njyTS3PrgxqpttK2431hkv90bgDu0xFiWfUG+1czdMwzPri1Y +m9hJJ+e28jz5DrPy1B2Kf00nN2M7j3D243wFLl5Un0cno8m67xbDO/VzvR/l +0IlqevI6btj1H3l97zKdlOaZf+CDnePCkq+cp5Mnz4u1ReDQG+NigeF00vb3 +2KQiXPzmtcspJzphD5D0sodX/i5VN1ugkXtVypPb4JnY+AznWRrxZDc64gS3 +mt0so3/H8/LCzoSdcPLdz6OXB2kkqOJi2X54yTk7l99NNDI4v3zREXibjbLG +vWwaubBJOvkorMZuZfsKeXdDorpYONxww13W4gKNZK/aqnoKLndd6eQeSyMu +G+J3JDD9PLY8JpBGXp1ZlJ8Df7p06EivJY2EvhXSyIUfBTSeo5BP5UTXPsyD +6UWyJ9WNaSSycGNzERzFYxA4rUUjBo0nZ8rgu037XSOlaWRIKDmiEjY6Mbnt +iwT6AY/spQ/hOrUwWyvkyR+Tj1Y9hXmSkkz5ltFIscAfywbYZ2vV2ox55AM3 +7vdv4J//zFf9nUF/nSvq3gyfvNMs4ol+pnxs3eA7eP060eJw9D9eOnqHWmH3 +gw+i2cbQv7kcTu9mvr+3wdhy5Ls3V6NkeuFzNz+9TP1EkbDhlOJ+WGg4LFsU +/Vpb2L2nQ7Ck78Nt0ugHk65MDn2HG32NHqijX/VMLbH8BVd8NWD/hn5YPYGR +NwOzHNDfUoJ+myVajXMO3jyw/iKd2d8fm9w3z9zv/LBTCuXIA0ElNQvwPg4J +LbFSivhTDGnWATyfPB/1cd+jiID7ZDcnnCzGsmHsFkX6tpcYc8GfQ3KmOoso +ct+GcZkb3tK6IaexgCKOhpOuy+ClidEsJTcokio22SoCe7EtfeJ/hSIHBEq0 +xJnv71FM35tJEV1uxnlJWKZ6i9T2SxSeR2pTq2CG6GTjxouY/++JrTLw4+Dk +49qpFMmbun1bFk4vs85STqFIyDCdVx6u0Hjz1v48+tNeVUoB/nBrC/vhcxQR ++TjRoARvV2zWuZSM/PX2toIq3Jxn7/0oiSIP6ukx6vCkzPuM3kTsb+XEJh04 +Xvy/fwoJFMm8OPHUBJbm7XhVFUsRKun2KjPYNNZ9vjuGIkZn6OEb4WrOblV2 +mOeEatcmWC9y9x75M8i/wROGVnDpQk+KzWnkZfrtDGtY4+jeWkY0RY4foP+2 +hR1m+mdTotA/e6i6bIVfH1EwnTmFetkxUe4AW/TRjmrj5xNbbgs5wjXW9yr8 +4Seb6EE7YOf70z9uw546ExpusE/UCUoB758jOFG8H/aXO7dLCp8fwHN76UF4 +UdJ/l9zgDRx0Xx84cka0LR3u+zEuT4eP1l+zW4Hx3xu9dfoQPK3+9aw9fKqf +9iWAuT6XlOoSYMcOFfPDzPVhO8T+GpZtGb8WAl/2LTXlwnr8bLjFGgazKjx9 +XAC/rKF5HoOfSYwva8F6plWpPAlnfj6/2J75s6iPe+OSEfALdst7a+Mpkn9u +PP0ss77ezU03YP/6GvYqJsA3nFSkebHfUhztD5PgsE+7bbaiHtKCa7ovwGsH +XmS3oF7el6w/dBH+4z3zSgj1xDtczJrBrIdxhZ/O6RSJcrsomw2fnE606syg +yNMLPOU58I6jzwKkLlNkvjHCMhcWV05qKUP96i2eac9jrreiGv1pNkUCCeVb +ANfKN3O9zkFeWWt25/4A8/sIWwN/4TxkeZSblcNrpCZ5WYqRZy8qtVTCuyWS +bnLfpogD98rpR8zzItLctQrnLX5j3JmnzPkIMUIVcR7rj7GIPofLVixboYPz +SiZHDOthFf6tVtbI28fWeTY2wAf5JvsckZ8r9/zn0Qhf50k6vhv3wc8M62/N +MKfQWhUW5F211icR72H5PxzSOci3Ug8u1HXCL9Oivsk2of6/L3H9PMDMN/sH +XuK+SVM6MdILC3mZtx9AvuTN8uH9Cu/R5Hh6sx3rE2myfQpeaDyVpIx8+Ml2 +qJvzC/LwpQ/UzTmc/x7DaVXYle2/9njkLc/cyqMa8MOPviFfkbeUvXVYteGA +eywrNyBvvZhU5dGHP+9T3j5jQCPfF6RlNsL8L0417kHespPksnOG99ep/T6J +vMW1s/XGCfheQXlNIZ43x1oop7cwnf/BkqZVdOJrkVHyHn7vxBJwfw2duDyo +W/IfrJtp+Sldnk60smUef4SdZdsK96nRyYhvu1w/bKr3w+a3CZ24spnP/mKO +58W92tUedKKrIZ4pPoj5xY97cOF5K5tr9UsS3qLv3z6YjfwlHLx1NWzkq+Ob +d51Oxuffsq+FE4dCBBYK6SS3/jSlCj8dnN976wGdrPD8bmwGlw8s4uBBXmJp +WZW+EV65Zl17xSc6mdi05fsmePG+zcX7uumkQelmnjV8pOF7YyD6h8iZXcsc +YYnUNYePfqeTb4mveg7AV+Sjn59Fv7N5YzHNBxZavHZQgJ9Brs0kzvkxxzP4 +gisT/ZGjp6OgP3zyBoddEfLRA43PlkfhTWKGgWfRjwkMPms9Dg+aZeu5If9Q +Gbl7TsJXfdkXlJB/pNh9j0bDvQ9exzQi70S2/rydBO9xcc/iRz/YEfPB8DzM +evLpvl70i9rGVfUXmK/Pl1W4t4FBEqYuO12EzZpjJiLRfw7eONF3ifl+02P3 +t1sxiOnOvYzLcISUwxFZ9K/pfJvms+ApTs0MN/S332vkY3PgbSaqRmrof21C +uFfmwn8PK3azIe/kKo1fy4PzbsmdbNvGIAufm9UKYK5BGZlC5J87Vqmbb8O7 +nMQPOCDfCIqtPl4JL9LmmchGP05rYuN+CN/x40oORH9fG/kl7RHsep1D0xL5 +ZNX6+jVPYY4OllYx5InQ0cI7NXCJwN/DE8gb77ITjF8yf9/6t3CNN4MoOh5q +qIOHwx5YRPgiv3Ftd26ALTmmbcX8GKSrWmfgDeyboLn9PqzrL+LfDMevZLgy +v++ZvPbP33fwSHbR7i/whsSnwh9gtXuylDAd/e1uG5teuKJtZfTRQwzyb4Vq +ez/8aff2OEF/9M/1/F6D8PxQ0rlb8L1jP6aG4J0Bby5aBCDParSFj8LH/3Bl +fYb3f6lcOgFnR23KDQ1Efr2Umf6Nub68kYXLgxhE2C587Q/48KLWtZP4+SG2 +Pfd+wTHd6lnS8Kvyjaaz8KXyhJWOeD8ZP7k3c3BR4kjiaXx+a8vol39ws0nu +iVEGg+jfCBbl/or7NEt4TxnmV8rFfZQHzrd6cfQX1kOdutLJB+t8P5SmAxc1 +q5ssh1delrx7GOspp/UiewU8vanhdZkP6j3NmXUlHDUZPPgL6y85N7JXBPa6 +tIZVF07fFf5CDDbf+FY8+CD2/9lyOUk4MaXq2VLsX5LsjTOr4O1pHdEj2G/u +GL1haVj80vzmV6gH1q27i+XgF1dM3p9GXpvoLNZUh//k1/SxIk/7EnJBE+4q +6M/rQf19ud7ySxu+Xszh98SeQTp95yr14S13LX4cQ353bkoQM4IFSw9WuCHf +v9eQPmYCd5THHDXAebBLLe0icHVlgamoBdZ31tJ0I3zqYQP7LPKauXvH1U2w +9ePRujbktadP6GxW8JL6/OhiEwYxXMO23xr+9oR/Qt2QQcpPp760hdsqjuwo +Qz7LFey32cF8vwuSs7U476tCg2+5wL7xpz1tcB9kdCxZ5gbbR03WNyOfnbum +/n43nBfw7FK7OIPwLHqhtRdO8FVk2yWCPOjjnLof/uuZ4tsriDyrHu7iA7+y +9zJkfl9hLmV5lR9sYNl0nc7NIIdncsXp8GrT9Tw/kMeox6+7A+BbNwN9S5G/ +vkrvJofhi/cqdrIgf+2N/p4TAp+s/mNt+wv3ta2o1zHYremU0sAonbSWFNeG +M/e3vU5c/Sud2K8g6yKY9dOzlOdYH51YfDowGg1z/UwZW/GRTrS9S/2TmOsr +nHtrYy2d8EVtDb/GrL9ofn/PK3QiGjDSkgvTuiW2N13E/e8ZrZAPa69X0DFC +3jI0ethaBO8aNPstfIZOvH/KKZXByy0DI5oP0UnN/oUPdfCn+W/ztI100rjt +kkoDfOfS5FETYzppJ9qn3sDRuhNzfOvpZFLCV/UdHEcbnS1RpBOJ//6L+gQb +dn/5ObWcTuSfH/rUCfMfHQisWUonmneXqn+GB4X7v5/npJPNCWYd/fCIXc83 +rd804ni0U30QfjbazeD4geexT8jpIWY9RHdNtI7RiJ+zQOcI/FKmk3YD+S54 +0y2NcTjzyaexwz008jekd2qCOZ5KUdv3HTTCFvp/iyfZrGM6QsvqzCS8detL +JcNPNBIv3d85BZvJF+t/bqGR9GXhmj/hY/PnLU810sj1vyIx0zCj9YiTfB2N +3B693zUL7yn23Pf6KY1UfbTT+gNfjrD0Z1TRyNuyqO5/cISGUELFLRrpuL5K +m21oxCxoyXyGWz7y57mqWA74YG/fzX9XMV7aN+0l8IXEOy8skTcV5dzjBOD8 +UZv5D2E0oiM40yMIZzzX5D4WRCOE7byuMJyQKSqymk4jzt11veKwasb5yNd7 +aCQqTUtvLXw+JE+geDONdC1a+mU9PKHdpEkTxfrqutEMmL/PPbqjT4BGGryK +fhnBrH2Ljzrz0EjlC5tFG+DweLPnZv8ocj4yXt4W7vIO/WQ0hDx5r7PEDvbs +bVxI76PIiV5lPQf4pvOaNb86kT9Io9UOOMCiye/WO4pYLPD6esJLZGX/Mv/e +Uq3i8X0vfPbyEemwMopo7bod5gW3CDRvaiuhSGH8Aps3LB4r66tZSJHV1XZx +vnAWa1hiYi76vdGsFTRYOqz53kgW+j3xyUwGHKiXsM0P/fHckaTiIPhNLtff +XuSrQwWftUOGmH8Ptth2BXnpa7vaoyOw7PKofBf0963r3zaGw8eP/3NoPkmR +kl/8kzHM+TtO51UzKCK3dk9IHHN8S7TnQ/woctnx7r8EuO2pv4PWQYqsiGKN +SYaVg0vyJvZS5Ox9B/4U+KTS+J8CD+Tb/pz0VPhUn6KD107kQYHvq9Ph3yn2 +BtQO5CWzDQUZcJPT0T0ft1Nkv/95jSvM/RfJi7FwQL96te9BNhzR8bbkvh36 +8beaG67BLlf+tK22pYiJWsu2fJhLxmHtHwvkyfEVQXeZ9aU0/6zEiCKJEvvn +78NmE3LDEgYU4bQtjSqHhe848J9dj/78KAfvA3jM/9j6GW2KfC90TH0I12rn +e+zXpIj3p1zJx/DVmXfR79Qo8nnJrxtP4eAH88UmKhTZob9J9TnMN5MzcVmJ +Im+8U8tfwgv8L+53KSK/pX8xqWe+v+JgqBT8oE6nrgFOMucy2a2AvCzX9qGZ +uZ+htvU98hSJGFj5+yNzfbpbO/tlKSL2XHhHJ3P+L3Z4a8D3ckTud8NOhe0/ +wtdQxOakKH8vsz6Tdp54I0ORAQ8xWj+8/3Antxh83Fi84Qs8utMj7aA0RVZK +SMgPMeuF9EiXrcZ+z0lEjcB/1u69xQZbfZTsHYPlz21P6F1Fkd4KKZNJWOX+ +ocQW/DwsbVXmFKz1X0LSS7xf0XZpp2n4o0j9uQKMh69J9tU/Zn1fNUrzx3zy +i9fKsQ2PmCXXuF7ctw75KE7uFAecNhCc7oT5+1utM14CG627m6GP9eOWV8hY +Cm+0bspUUqbINU7FGV6412/0siTW23BA0ZEf/prAlbVMFfVbo3RXAB4vWZvN +iv2h5SjzCcE/3m24+gNedFLFTxh25d1w6ZIGM++p1ovC4q/7Yme0KLLeWG2t +BNwdeyrMSZcib8XVI6Xga1ayfvf1sP9z6p9Xw/sXvXRbbkiRjArNS2vhkVOL +jBtNcX7TtKbl4Vsb8lWUNmD/g7S3K8KHWK2kYs0p8ldDl1cN/nU89p/5Zpxf +/vW+GnClkeK3azYUUZ1cX6cFH51r6GFBfXsW60fowayhPDXV2yjy+6xBtwH8 +QvfWPTEn3Ec+hobG8JlfW66HOlNE0coo3RTefH8ipc2VIs/ljH+ZwUUUjWXY +nSLunCbbzJnjZ2sP3e2JvNlvUmIB56ZtmPpvH853DvGxgYVqhPuY379+csKs +dgvc5By5U59OERePDWvs4dPjY+9L/CkSK27e5QifEK55fjmUImOplg4ezPWg +qBvBp1GfZ+30/eGXjXn2Orivygs5XgXCHlwBvM9uUqSqocolGJ7dYNxge4si +NdzyoUdhpcqWjfuRn1vO/iuPhp1zWdan1GO8Z+9oZwwz+10hlf/GKaITJ6D+ +HL7oF+QRa4z7Oq5NTmgEeeuhx4fKbhqx1b1QKAyn6qlVH+inkZ4eB1Ux+G7Z +v6uCQ8ijuo06q+Dhkqu+h6ZoxKXnubkC7JLb91eeg05mte/uNYZ1Ew7IXlSg +E73uuCwvuEhGfP4Ig07exGyW8YbPXzgT8SqQTjy1Fuf5wgcfTOe+CqGTmJjI +WwxYgP2/0Vcn0C9oHqk+AnunnTvSkEQnoWcOfEqAhR5xp74uoZNKdbOV5XDx +sS2vxobphH62hF4Jb3aa3W0xjv5lQLKuCv6icn06+xudnLs4F/IE3mOX9bFs +Gvl54f7HetguT6BnLxuDiL+Ru9IBjzn+GasWRX+6NvVXF9zul656UwL93gl2 +ux74VITOoZRVDPJTs2dhAO4oZvzwWcsgby5d8pyAu+78eOeshn7wII8s6yju +A/31Z3KQB7WfhR1jhycLPj/iRh4cERtu5YTLxWJ+Bloy++OX0dzwlr/teyzQ +L/Ot0+7mgSUYEekldgzyIuKa7jJ44LNCswjyX1gHf9JyeNvXvaP625EfdE58 +XQELiRj5saM/H0wcN10Jt1sJjb7ZwSCXh9zSReBLRyZ805AHuS7rbZYcZX4/ +5KqvgjuD9LJ9L5SDx7I4fbciD6S7e7IrwAFvu4dFkP/sypvclGAt1kqfPuSH +Kp8iHnW4aq+vDzOfHHou6qUJH03ZOGyCfCMnGfNIGzZ5IeHDhfzWGTwttB5m +/fVr6B3y0Pm3++n68PO1zd6ZyEtWii21hvDPHOMCLuSrhVNmq0zgjqi2yKXI +Y6VdJSEEfnGQ4c53mEH81ku93QCL2XDpLg9GPsj6oGHLXO8PfpclwhjkgP6f +ajvm+vRv36ZzlEHOtEpZOcD8k4ZcdscYpIH7gMcOeG4RT9CJcAYZuxE77AKv +XfFTIf0Eg/Ca3Qpyg/ulOj/fOckg9iE/z3rCb3SLbfoiGSRAQGTlPnhmwwXW +P6cYJOWWYY4XXFm5bPJlFMZrtVvZG76sNRbbDrf1R1b4wmdu18uOwrPheRto +cJDCjSd/YVGxhkbGKPM8Rezkj2YQd/vlA0GwQoZBsg4cPqrNCGHur5CwkhWc +fdpl7ghz/Ek/Xu6E+6qz+U/ADdHFf07AHC7PMyPgCpbYtPMwwqxcFJx51Evj +BuytoGocC1P+Ugcb4LMvHOrjYOexOdYuuGj34e2JsPHBD5cn4Tdz6d3J8IT7 +63kFeCK12icFvnWy2JAH4+fX6PmZCjNyE8ImsD4ab9hPpsNX6+kP3kYwSBCb +TdoV+By/xvpUrG/aFbr0VXi7tkBwCNa/Qu988TU4yuVHqetx5Cf6x5p8+PDV +Mk0p7J8E998thfD6F2n+LNhf4xurPxbD3kMhd/pCGeRkx8HJu7CruoFqPurh +WnBcWCks7ihOi0W9PF9ewlkB24bOF/mhngaK3yc/gB02CCXIot4WWU2LV8Mk +6H3Mg0MMsq5fNP8xrJqXFGWH+t0cbqz5DF720fZkP/J5fGmUVS3cY1wXwot8 +fXvrzZZ6uJkRFXhtP4M0j7z2eA3fuWbGWL+XQQSkVxx+C0csrj6wB3lau1qX +pQU+pH9k7/ROBnFy3hn3H3M8lK5HHM5nekJOzidY5t0dpzKc76p1L5W7mPXL +TnewxvnveD5U8Rme0lHa8hn3w7wHz8Y+uNV7yCoI94fUnFrTAJx7+6aww2YG +IanbXb/C9OvHspJw/+xVDxkYhvXS7dc2IU/fOPB4bgK2ODWraWPAIEN3zu+c +gs/r7bz1SpdBlP8cqPoB7x97KG+lhfpOWhY2C3M6npDYpMwgNZWev1nHRsxM +5RYtMpXCerLruHLAyz8dPPlIjEGstyx5sAjuS3g1ZyjMIIkXu0SWwKVmSoer +VjDIu967oUvhf9Pxk3r8DCKofLqdF36bPDOWwcMgLsE79fjh1lONfF8XM0gP +N/usINztc2TbCeRnWacPzsJwv/vWoNe/kU+ziypE4a9b16YJIz9PajmGSMGj +6999LEF+XnC/MS0Pz3Iq7OlpR/4ssfxlAPturLPuvovn029xJ2OYLWLWTaqY +TnI3fis1hS89VqB55NGJUnt6kDmsbRSf1J1BJwasIz+2wH+1HVq7T9GJy/b4 +755wslzHrs9OdJIy83byNBzSHDB2c5xGDrwp3hgLv7vy4wv5SiMGOTEX42A/ +n6DP7cijfdbENBlmKXp1wRX5Uj2rJPES8/1HnC7IV9LIG/NElWJ4xpee8jyC +Rhadt/F7B6eKJjwQWUkjnw7IP2mBdfIMX+xfRiO3DNlXtMFlOiNNd7iQ575U +VX2C2xwsB6z+UOS6niL3APz73d1dAb3oNz9zFUzDkcHmT5fcpYhg6cD8LCzW +kFY8j3z1Neap/R/YZvVw+iT6lUTN0Nl/sFBDgv9/6RTZu9jRlm0cz2fJnl31 +5ymi26l2lQM299e0fhhPka7or5ZLYB7xDzI5yE93dj7PXAqvW7PuMOdRikSp +ZU/ywu3lx9qVgimi/HHHRYFx5r8PrM0OpdBPK9cOisOKGqHKAujfHmxwpknB +e1ptBpuQh2Zdhn6shtNDVl2NQ38YHM3NKgdzPa5dwYn+siwz88w62HRPRuMz +E/RLd5X5lOBgDvqZcH2KBHTbiavDg9ZCf2bQL9/9+TlHE5acGCotRf/9jdt/ +nQ58IPd6+iXkCzVptpL1cMLBDl8Z9Pf09Sk6BnCZ4grjIkmK3NoiW20Ed4xb +L9MWQ/+3r2yDKcx2N7K3eiVFfJI/bDWH7+h9j25aRpGbed5tFnDbHwUXZx6K +DFb/dt8M73q6R7GHC3lvWNzXDi6yeNc0xYr9+1f8zX6cmTeX5IQt+JE+IZOQ +7fDvNySQ/Y8f8dzgGeUCW22/Iyz0049ku0xxu8H0lUPDV775kW565LldcNrH +VdVy435EMnqFiCcskhSaFj7iR9wzc7P2wpserGJZM+xHMu/qrPWCA/prfeq+ ++pFPdbVFB+GrvPQWv0E/4vJzqJKC/+ypzivt9yMXucNMGcz9jd/H79rnR9pW +L631h3eUc4f97fEjjltUWoLhu9yuWyy6/UjKvseuR+BubZaKkU4/8v7I1p6j +zHrZnb86qcOP2Of5j5+ED97/9eNDux9JqmYLOgVf6Lq869gHP9L0PmUuGq5Z +bF63us2P8A7LRsTAkxqj6i9b/Yjtv7LFcbDoUy3DQThOyDIxAf4kv8yp6j8/ +0qDULpgMZySN0BPxeiuXOelUWGx3zjVdfN4ZetzNi8z9rD1Wzf3Rj9RGSahl +wJdVXdq6YfO7JkbZsMQCH/cZjPdUXXNNDtzpNbLGDfOp6fLcnAtfaXxprNbl +Rwj3qR0FzPq6csz/A+Z/YrVgVxFz/hwucUWf/chj3Rv7bsNZlNaNE1ivv7a6 +I3eY9dDK92R7rx8x2ld36D4sZTTSLo/1PXrEZaYMllU3jZ0e8CNVScPHK2Fe +Y81D77Bf66uXxj2CHzqJmJzBfqdHbBl8wtzP4Tg1DdTDnEWSWQ1sHf5vdcd3 +P1L9TmC2Fi6/MciuNovxfhX1egsn/yx91cZGkZxit6fvYcuYdQ9PclKELeCK ++H/wX/HLxYrMel3/OfgD/N+dZVmt3BR5Ob/6/Uc43vxUUjgv8lTNXpVOeEP7 +9Ml1/BSJOZMb08087++fbtizgiLDtoP9PfDiFN7edGGKWAusM+1n1vv2nSfe +iiNPf/DJ+MJcH8F8SS7kbZ4rRb++wr7//XhoivPZJK9WPAazOifM3kY+3m6s +KzoNz7k99U8wpkgpW2jQLFwrwcv/0gx5v/5B8xzs9tn19vwmirRvMz79D/7h ++WPED/eJvsiJXtaJEbPH0iT2OvJmRtdTIw74bF+8fMcO5Edv8x9ccLdIlGrD +boo8UjlttxQ+7evVIepFEakfdQW8sHq1RYwP8mPPcRtPAfjU7iV9XIcp4pWy +rVEc9ruZmGp5FvfJY898VXh2/aX5F6UUOSl43M0R5l86L0YJIL+JBw3vgNf8 +FDncIkIjojJ+Ia5w5WedZoNVNHJPzTXFAx5Tv+6irEwjA9Y6r73hpmU1jXst +aMQqYtzgOJzc+K+iOYxGlk3sEsuDX8bMO2bgedT50/HmTThsE8/zoUEaufnH +RrcILvsnrrEezzOyxGDbHVg1yJC39TeNBMiuPFsFr7qfq8+5nE7adjb9boJT +jl0vsjSlk6w6k48zsKvtrX0jKXSScHzQcA5ekf21szCdTo5pJWbNw2+mpHf4 +XaET1+yufayTI2ZmqWlWY3j+CoYcm+CG7X4HikpV0kmsXBW7FHyFI6TLFs/z +0M49B1bDBQdmyrZ10smB80teycCL6kISXXroxHzBJVEelowLNd0/hH7gvxkR +DfjOUuHMnhk6GY/LPqoF767Ib5f9QyedZpbdOjDPPr2VPug3HtxKu24AL3ng +em6KA/1ttI6qOfP3D1w+wyaA/sqwK9kCLuFXeWkhxCAOU1E/rGD36kdscSIM +orqrtXIL7Crw+fgK5EnJFcfE7Znje8x46CzDIDyv1oRvg8t8WH5nIl8Oawdu +dIbvPpEOkkW/1T4ilucKmxYFFW5D3qy9WsPlDo+mLl/8QYNBcnkEmjzhXTSb +p5/Rv3kM3HHxheXEnmhOEQbZkuHykII/c7onHd7IIEb2LFIMOGNqdvQ3+kPR +6q39gfBCneYNNhvkxYCZTcFwxf1m1jNbGGRaPvtmKLwvi/JYas8grSkTtOPw +f4fzhAWRP2s2p709AUd4bgxKd2aQu/+MtSJhA9uetxLod6+WfUmNghMcdRc5 +IH8m+iXMnoavsvSEi3kwyHFpHbdYOPBW7Ez/bgahPnQ+ioMtdmodurWH+fdf +5VPJsPL903sI8mn9qY6P5+EZp6A+FvTjFi/OqqfC7LN79j3zRj7cNNx1iTk/ +Y2OvDcinNdHp2pfhvM+Kg2zo781qLeOyJpnfPxY5+Bz51MQyT+86bF33w9sc ++aD6jFPSDdjJp3eYA3nCsJ5jMB+W5mn2fYm8UcVValQIj92uHo1GHtHbvC+l +mDke+0LKIoz5/zsRGLkNTyubvihGntFpeEbuwoa5b1UqkUc1bVZPlMGO53+w +NCMP3YlrNq+E5ZdE+35CXlJ7E55ZBdNOrmz9gjyqvKXL6gkcTdfPn0fektua +cb2euT/WJ7YonsH+J22ea4Bjn/FX6MQwyJq3s/aNcLPetdVmschH/Dfzm2HB +O1pnbc8yyGoH54V38JDcyx/OcciX5xY5tcIqWTt27YtHnnhfVtTGXB+hoVp6 +AoNcFvBi+whzH5C5JJvIIOLbBV07mO9/6PHGw3BGyvOSLjj16M6Jl7BIa8Ci +Hljv9HT6yiQGWen07v4A/CJTdaIC5ndO5JuAL9Rmpc8lM/OBsdc35u+/M9ho +cw55vH3s4Xf4b0fbeCbM7WrjMwN7TfFtND7PIDGX5p78hrnmC8cT4MWfClbO +w02LLNO74dNirrQF5vsv79+gloJ87Mb1guXbiJmuxInxE3BkZoUYO6zcxMF/ +DGbtPODPCb8zOdPDBp+UWFm/GD5csuRuLN5vwf2lFDdstzo+gh8+diXoMA8s +d45v20WM70/Xmjd88BvWczJS8KxH5JEVsHV/6nMlzC84W+OtECzjKHLhHub/ +63OPnAhc+yJjvz783dO0VQI2z8vmtMT6+edMKK6Ch1bKtDVi/b/1XomQhhPP +5OY5wuN751XlYG6fAsu92K+2Ac/KdXBvfmRrN/bz6YGXZkpw1KDbHje4cEjh +tQrcNnWFYY39v+Cb6KgO7xNZk9eKegkf+96lCX8zudnpgXrypjsf1IHDvVRW +DCP/GwWsDjOAL91bf/Ivs/5+RrEbw/Ifq8vPIO/zBw/Hm35jPh/MxpejXgeO +3Ms2h9/a2u6UQ76PjzB/aQcv+uqpvTUE68FeYOcAp/IO+n7E+fKM5m3fzlwf +bb+cfcjr1osD9uyA7+z89mE8APk5tm3EBT6t87U/DHldaqlhkNs3Zn/0lfGH +hvsqIfvvLrji+tc/R5HXO5K9+ffBgwJDK44fYJAXAo2XvOA566Hsv/uQ3y9o +rPGGBSOHlMJxv0Smz+nQYMtvQxtP4H5SvBrvFgIXvRkOjNiGfCozNXDkG/P7 +XCP/WHH/LVx3oh+Duw1G4iJxPw6trZoJh6f9R4TZcX++z5eKiID74vhkFaxw +nyic4o5izu9jUH6yOYPkFX1NOQ3vketQnMX9fKTkTl4cs15q8jXq9PE80RBS +T4R/8fOVqeI+t71/5EEyrOURpJemifNbseFNKnxvlph6KeE+fNw6lQ3fVvlk +yy7JIPeI/tFr8HgYeesrivNbc4XjBrPe6/O2v8fz6bQ5W2I+TAnxftDH8+tQ +7QHhQuZ89wbuzOFjkJ1Wr68Ww6FOyb83ceM+bVBTLGGO54T2sRROnO+mWaNS +eKr1WITqPJ0c7JKIqYerFLPSMtroJIhPc7ABbvRstNF7TycnTS3NG+GH6fMs +bY10kp7jz/Ievsjl5rf8JZ3Ue9WGdjDXv29byMQdOlk3wfCZYJ6/WP9C5dN0 +MrJQYy04hTzxfjvbaQU6mVZrv7kSfqlvst5zDZ2w7RlfJArvyVlHGUjSmX8P +ei4JXzr0978JfjqxOUMZysMBPPkFzO8DFy9bqWwA69nOxu17TiO01T68nvA3 +ke0VT53RL53XytoLX9g0tsvdnkbcORdUveAdjGiOWSsasR45b+87xfz3rgoH +NQMaWVdanRIE0w9LjF2RwOst+cViYTlOiVi9fvSHVZ8K42D9kjxv/U6KtCjf +MEyEudw1rAz+o0jNcoNdKfDIPYvFRnUUye7Yd/UK7L3PP9q0iCI7GRVy9+Di +Q3U6G0Mo8r43oqIUbqn14rXwp8hmR1urCnjrKo4vVn4U0dPv9amGvzeSC3bo +R1eyL71Vy5yvUtV3V0vk98P/Gb+CPSJcGtzR/3IOZTe9hjs+TufsNqTIsZ2+ +u5tgZ83UI3t1kJffaH97Cx+P0XLwUqOIn+m/ky3w16ltHfqKFOm7+2p5G3O+ +G6P3/beWIu/SPLQ6mJ/fPxzIgzxstUThRResqSMxny9CkadHfzj2wNVRdlEb +BSly2zMm+AtsLH//QthS5IOWbYuH4PrgLxIrF1PkyibJ9JEp5vc/hG/cRf6I +V7z3YJI5f+9jZUO//QjHlWPW35nzqbxtHPULeWiZZcdP+MqS3perpvzI94jl +1AzcvXOF3cMxP+L7s2P+N+xTuKltxxDy84G8hHmY7T/J5cLIT64fD0n9gzmV +hC7WIG+9tTEsYf2Oz4/gkaQjn1k95iQcsGwb+3VR5LmtDz+8WARfzVnE9faT +H9lRWbB5CSxOW0I7jfzodW/Ldj54Hfuy9T9a/AhVsqqdH77etPxywTs/ElQ8 +5b4C1r0kyOrZ7Eci81IPiMDK6mKv3zT4kbPXD46KwU/mJNRP1fuRc1f1D0nC +hrWrUvVrkeeuLP21Ci4/JzM3+dyPXM3oOiIDW7mv3Z33zI/kXyxZkIWfy697 +4f7ED/dfxCl5eP3/KrjzcKq2MAzgQkTGRiQRypBQkeJq1Y1uSK4xUySKzjn7 +EJlut0kooqIyRCQRV4YMkRSSmaKQDJkyz0Wl6b77z99zDvZe61trfe/jnM0/ +nzhVwiAF182WKMEZb7VbJ+CScPmwTfD6hPNLx+GK0C+iqnCUWxUZhesv1dxS +hwW3CXoPw+8vsBI14W/V0T0DcN/ZXfI7YFZk98p+eOS0aLo2PGAvZ9gLf/XO +zyXwq9ms/C74t2ew1p/w3pK50Q6Yx8O6RA9+Eqwt/R4WopT3/AWrmp63eAev +ZPysNIBTJKtCWmFJ11eGB2DJIYHSt7Ccy93XB+HrOaZzzbCyk6eFKaw29Pex +3bj/LQ56783hHvlfOpcxPjvtVjtYwX4u6cubMH67rUf6rWHFZMtRMYyviVnY +xGHYY31W1APMB2tfC4cbLCHlOFuF+fTamxrIgOvsBGqEWxnk9G4/fgp2iitM +sML8B+gaXnWHl3U4eyegPkK0167wpOdDXPTAUCeDRGhNRZ+Cba1LZFVRXzEa +ZWt9YYFotwVv1F/ilsgkf/hp68qmZ/0M8kDVZeO/sNuc+kAz8n3Wpu0ZZ+HD +nIUV8qjvAkU+9QuwubDufV/k+5eyD3cGw/NKBseksF76Vs8duA5fdHQadkM+ +H11R1RwJq7OHq58KMcmMaIzVLXjjaSpNGHmcQ+CPI7fhmij/E/nI37x8woPx +8LNkDkM6fwvx9J5IhPNygpRt5ej9JncqCT5SKiCQqcAkazkCve7DEUFpOpoq +TKKfwduYCo8VrlB7soVJ3A+FbEyH4ybOyupqMUlF9tX3mTCHlSW//p9McuJI +LCmEV8lzvbOwZpKC8iyBOnhXmZ3nqUAmMQ58nzwNL900M/V7lEl81e1/zcJn +sqfrPGeY5G7XB6s5+v62TKcOfcF+pvGRfwFOn/owPsDNIrGDU+5cn7C+V8k+ +VJRmkcF9i/9YBb90SlPJtWSRM/xqLdrwfqHjI7rlLLL86/Ejup/ozw8wp/xq +kI8/JkwQ+EKnx1zeaxZpLhXm0YefpJ9epPyBReR9pjRNPtH95+a00O8sUt+f +Ge0Ml5z7KnZfjSJHmgbljsOJDTP6f23H+fZMKscNDpQY8xr7gyLSseE1FGyc +1/Va3ZAinibUgi+cNWmrznLBeVeiYhcGD97n1PBCvs5Kdxm+Cq/812elRgzy +b3S8VwS813x8bu4ORShPwbAo+B5na4FPOkW4juiJx8JN7QZRWjh/o43/vR8H +c+Q89/mWT5FNOvnqCfBk4LZDT4opUqY4UXIXXmufpvVPGUUsV8sbJMPV+T+b +nCtxXnPbt6bA86GHa8XqkN976if/gxfrSBefe0sR11sZ6wpg2bh7cSZDFPkZ +MPBfIazsxX2Te5wiER6SWsXwViOXsMJpihQbXTEphd0WNpyRXqCIyc6KznLY +oznY+y3y+cDGH64v6fF7MExd4mITIS7m+Vo481C6w7QAm9ybvifYAGuf8l3q +IIq81t0R8wr+7mZm9HkF+q0iw0dvYX8zvkYpSTbJZyv3d8PL5U81eSohjwqs +2NsLT/ReU6xXYRO5tB/J/fDmxIzzcsjfEX0Nx4bhXvEB9ZbtyKtnC6pG4eLW +35dVtNmEQzJBYQK+GbmmL1CXTSgL99GZT/T3Ic0iNJG/5WcPGX6GZWqp0XD0 +i53huzPm4SUvNAZ60U9GKisJfoM/T8ZcVDVGf1y9jPoOf5D4Jfcv+tFFLt8b +f8J1+k4va9GvFi4aUOX4jH74ZKWLGPL5Bu38GW44vDY8JdeaTbra4k15Yf/5 +Wf1F6HdveAXl8sHH1lsNGSOPc2ZanRKCd/mvUxh1YpMiA9IqAiunBFRvR/52 +H1LYvvwz/bzIIddA5O9u6YWvq+FJxew0aeTtmyV91hJwu8UKAwp528im7okk +/PK872gx+neuL7lr1sE5DztD+JC3n0TGnZaBY8OvRgojD3ioBXbJwuzNlSmO +yNsKDSzdDbB+44+iHOSHWzy7OJThWcETPWbI2wfubTyiAtc8TPyUjLzNTUTK +VeE7B9p45pG3T/r1BmyDDcP2qtD/71VcVTugCcuo/ENGkFd6Hj3S2wF/qc8x +24l8YzwewKv7mf7+wTr/zotssvgy05XQ45VhEaYShH5e3qJmD2xidCXxDPKS +Z/kfSnrwhvHy3FfIU0oOG0L3wT9Cv1VKI2/1fhca3w83K6u990Aei47+YmRE +X+8rC2495DcTjZ6HxnBiZ1NLFszbXC30N2wwciBVAnnvGZXDNoPn5mp8A2Hv +pbGvLeAGTn2DaXhgLyPCBl4vqTtB5+/bvWaf7OjXFZ48U0O+ND2jY+4A+2ho +XrsNlz4WXOUM1xtv3uqBfOpjPu99jH7dNp27E948093mSo+P64ZWfeTZj2FV +Wgz6/V5JqTlwnFJ2DAv2Pi/lJ4k8bFYVvcCm3x8eaxAM8zuftz0J18WukpyF +yzhOPPWi358aMWGHfO0bb7rWBz76ZzpDGn5eseekHz3+rRr/PcP7eca3VP0D +h5woG7WDb+xc7nGOrpfr79xi8Pez295UXIZ/fuBxXYbr/fLrhfgV+LpnRGo2 +7k93Qx4VDsvySg0Zw/VeN8Qi6fHcrHEsFOOzPO4i6ybcVVZ6XxG2eeFVHgV7 +WBh9rMJ4Jo46r46FN4+0yR2Dh0QtmHFw2emjztzw5h16ZXdgM5Gpe0mYLy9H +jVV36ftXKvIpwvwWB8sz7tHX07JYNwHzz5m1svQ+zHXelDvwMvaH1sUrH8Be +mxJqT6Berv2cc0uHB9vGrpmgnqSMWpdn0fWxOXCtJPK3i2elaw6s/b6pfxHq +MSO2oCQXzgiUSh9Cve4cuXW8kF7fnY81c1HPlkFWxWWwecjoQQPUf/zDfSIV +cKXG9lVqWB8Db7e7VMLbewM66ecRK//Y+KQaTrvyOum7L9aLrJhwHX09TK17 +7j70+l/i3ACLn3bNTsH65Dj5tfAVfCA0uqQT6ze89J3TWzg/7WvbX1jfLUPV +j1vhkUKFj2ew/iWFiwTaYcnqQ7N52B/S7WMKuuCAwUIBGTc2qVyw5h+CTWX9 +dn9DHhdcb+AwAgdtSTNWdWQT8/0788bgot3tti7Yn267K/FNwuMmfG63sX/1 +RUkcnoalHXd4N9lgfT/nz52l54ftFsCL/c59cIF3Du401ODssmSTx4Jjdl/g +815tpkfNkee3deR8g+Xj/e6N/M0menZ1PD/g2pdrPrMPssmVgGLbX/R+NFmy +d96ITSSaby/mmsP+uotzkBP7tQbbzloAtukPUZDE/j7ctqhXCD4e1ZjMxP4f +S1JdReGLRstkSrTw90RnfVbBzwpixA9vRT37R/0Wg98zum5mqrHJ0X6d4DXw +8DqZZb9x3lTnBd+ShqVEjxx4s5FN/NeqSMnCtq8XHXaUY5NNQc335eGoq0nU +hDSbXLdam68E5wkMXOWVQH0vPHqzDTZacrxZG+ehwNFDttvhS1W8/dVLsL/U +/ezbAb8MevDJAvleNv6vWV24j2t0hTvO19bFk3674bKyEPmfOH8vUZGL9sK/ +zilrhnyhyPiubpH9cHjuQKwNzus7DwKiDemfbzBxlcF5biKqKG0Maw4/1RjG +eZ/f56lqBm9dc/P1qQ8UORPIZ2wPt1/Q47neSBG1ycwWB1glPueNVS1F+izN +7Z3gC4/X3pVCf7FPIYF5HD47OqedUUIRkbptoR6wrGmKR1UGRZJEHKsD4dY/ +u5ZuDaRI1e2CPZnw6gb+1Hb0W3G5AgnZ8DuDr9ORyhRxr3P6/gh+U/txp/EG +ioh9F8p7DNfWljaWr6HICZvj8mXw7krv+f94KCIkLrbkLRx9+0ZRVTuLWN7y +a/hGzxdJq+88zSJKma8Uf8CXpbqv9nizyO+X8kG/4LvflpkNuKNfnGvS5ZpH +vTw63T7mzCIL5krZAnC9rMngghGL3FneEbEOtjdkDpqvZZGP13QO6cEJnAfO +XnlO5/eOhX3z9PNEu/SSi5hE08Y/3gD+5x+WwNNcJrkkW9h3EBafDYsZS2US +pYKtLBu4qb8x1+Aak7yJbRa2h6XXOfg7hSDvn/V45ACzbaaI/0X609lZX5xh +gzfCjWm+TOKtYhx7HI4RSrxRdpJJpJZN6JyANxqp2bYzmaRqPvQDE/YKLpWZ +OYZ+vkPpAhtOqVgiLnqEScRLa+ROwn6/tDmt7ZikPNm1yov+/VrssUQrJllO +pQj4w4UPW0rUjNHfc6yPujhPPw80yclEm0kcPpbuCIZvv24xjNZkkiW1Dp2X +YRY/n0aPOpNYR8bLXIU7zrJ53ZE3OH11Kq7DD4uSph/LMkm6XcexG/D+uZb2 +31JMYrbbny8KllTle7FPgkl+yItnxMB6xpVnolYyyX3+QuM4+nr2HoqJXIZ8 +MWU5cwdW0h7NvSrMJAmFNzSTYU1FoZFgPibZYyhSlglv4LY08/3JIKOqWUdz +4Offh1heCwwSucKYJw/eMut3yf0Lgwx0hRoWwdo98SWuMwwSVq40WQxntqq+ +c55kEM3UmmvPYJmGslnHMQbpDnXdWgYXVZgJ2g8zSLA7b+sLuFs/aMb+I4Oo +WaT4VsL5fzPLPAYY5N0OvTU18/TzUUyvByIvKnEFODbCkSel1B8iT9bf/DX6 +Dk66U+D+o4tBTvnHh3XQ85MWR0RgKQcdtW74YN4FETnkU7aC/6l+2LLWONsQ ++VVMUFxsEFZp2XbOoZ1BSmcePxmGD/dImHgi77q1WtqPwRpjHNLBbQyyrHju +9wS8dH5wKhb5+H+PylPO + "]]]][ + Part[#, 1]]& )[ + MousePosition[{"Graphics", Graphics}, {0, 0}]], + CalculateUtilities`GraphicsUtilities`Private`scaled = + MousePosition[{"GraphicsScaled", Graphics}, None]}, + If[ + CalculateUtilities`GraphicsUtilities`Private`scaled === + None, {}, { + Text[ + Style[ + Row[{ + ( + DateString[#, { + "DayShort", " ", "MonthNameShort", " ", "Year"}]& )[ + Part[ + CalculateUtilities`GraphicsUtilities`Private`pt, 1, 1]], + ( + Function[{ + CalculateUtilities`GraphicsUtilities`Private`a, + CalculateUtilities`GraphicsUtilities`Private`acc}, + Quiet[ + RawBoxes[ + ToBoxes[ + NumberForm[CalculateUtilities`GraphicsUtilities`Private`a, + Max[1, + Ceiling[ + RealExponent[ + CalculateUtilities`GraphicsUtilities`Private`a] + + CalculateUtilities`GraphicsUtilities`Private`acc]], + ExponentFunction -> (Null& ), + NumberFormat -> (StringReplace[#, StringExpression[ + Pattern[CalculateUtilities`GraphicsUtilities`Private`s, + BlankSequence[]], ".", EndOfString] -> + CalculateUtilities`GraphicsUtilities`Private`s]& )]]]]][#, + 0]& )[ + Part[ + CalculateUtilities`GraphicsUtilities`Private`pt, 1, 2]]}, + ","], 12], + Part[ + CalculateUtilities`GraphicsUtilities`Private`pt, 1], { + 1.5 Sign[ + Part[CalculateUtilities`GraphicsUtilities`Private`scaled, + 1] - 0.5], 0}, Background -> White], + AbsolutePointSize[7], + Point[CalculateUtilities`GraphicsUtilities`Private`pt], + White, + AbsolutePointSize[5], + Point[CalculateUtilities`GraphicsUtilities`Private`pt]}]], + TraditionalForm, Graphics]]}, FrameTicks -> {{{{220., + FormBox[ + TagBox["220", #& ], TraditionalForm], {0.00625, 0.}, { + GrayLevel[0.], + AbsoluteThickness[0.25]}}, {230., + FormBox[ + TagBox["230", #& ], TraditionalForm], {0.00625, 0.}, { + GrayLevel[0.], + AbsoluteThickness[0.25]}}, {240., + FormBox[ + TagBox["240", #& ], TraditionalForm], {0.00625, 0.}, { + GrayLevel[0.], + AbsoluteThickness[0.25]}}, {250., + FormBox[ + TagBox["250", #& ], TraditionalForm], {0.00625, 0.}, { + GrayLevel[0.], + AbsoluteThickness[0.25]}}, {222., + FormBox["\"\"", TraditionalForm], {0.00375, 0.}, { + GrayLevel[0.], + AbsoluteThickness[0.125]}}, {224., + FormBox["\"\"", TraditionalForm], {0.00375, 0.}, { + GrayLevel[0.], + AbsoluteThickness[0.125]}}, {226., + FormBox["\"\"", TraditionalForm], {0.00375, 0.}, { + GrayLevel[0.], + AbsoluteThickness[0.125]}}, {228., + FormBox["\"\"", TraditionalForm], {0.00375, 0.}, { + GrayLevel[0.], + AbsoluteThickness[0.125]}}, {232., + FormBox["\"\"", TraditionalForm], {0.00375, 0.}, { + GrayLevel[0.], + AbsoluteThickness[0.125]}}, {234., + FormBox["\"\"", TraditionalForm], {0.00375, 0.}, { + GrayLevel[0.], + AbsoluteThickness[0.125]}}, {236., + FormBox["\"\"", TraditionalForm], {0.00375, 0.}, { + GrayLevel[0.], + AbsoluteThickness[0.125]}}, {238., + FormBox["\"\"", TraditionalForm], {0.00375, 0.}, { + GrayLevel[0.], + AbsoluteThickness[0.125]}}, {242., + FormBox["\"\"", TraditionalForm], {0.00375, 0.}, { + GrayLevel[0.], + AbsoluteThickness[0.125]}}, {244., + FormBox["\"\"", TraditionalForm], {0.00375, 0.}, { + GrayLevel[0.], + AbsoluteThickness[0.125]}}, {246., + FormBox["\"\"", TraditionalForm], {0.00375, 0.}, { + GrayLevel[0.], + AbsoluteThickness[0.125]}}, {248., + FormBox["\"\"", TraditionalForm], {0.00375, 0.}, { + GrayLevel[0.], + AbsoluteThickness[0.125]}}, {252., + FormBox["\"\"", TraditionalForm], {0.00375, 0.}, { + GrayLevel[0.], + AbsoluteThickness[0.125]}}, {254., + FormBox["\"\"", TraditionalForm], {0.00375, 0.}, { + GrayLevel[0.], + AbsoluteThickness[0.125]}}, {256., + FormBox["\"\"", TraditionalForm], {0.00375, 0.}, { + GrayLevel[0.], + AbsoluteThickness[0.125]}}}, {{220., + FormBox["\"\"", TraditionalForm], {0.00625, 0.}, { + GrayLevel[0.], + AbsoluteThickness[0.25]}}, {230., + FormBox["\"\"", TraditionalForm], {0.00625, 0.}, { + GrayLevel[0.], + AbsoluteThickness[0.25]}}, {240., + FormBox["\"\"", TraditionalForm], {0.00625, 0.}, { + GrayLevel[0.], + AbsoluteThickness[0.25]}}, {250., + FormBox["\"\"", TraditionalForm], {0.00625, 0.}, { + GrayLevel[0.], + AbsoluteThickness[0.25]}}, {222., + FormBox["\"\"", TraditionalForm], {0.00375, 0.}, { + GrayLevel[0.], + AbsoluteThickness[0.125]}}, {224., + FormBox["\"\"", TraditionalForm], {0.00375, 0.}, { + GrayLevel[0.], + AbsoluteThickness[0.125]}}, {226., + FormBox["\"\"", TraditionalForm], {0.00375, 0.}, { + GrayLevel[0.], + AbsoluteThickness[0.125]}}, {228., + FormBox["\"\"", TraditionalForm], {0.00375, 0.}, { + GrayLevel[0.], + AbsoluteThickness[0.125]}}, {232., + FormBox["\"\"", TraditionalForm], {0.00375, 0.}, { + GrayLevel[0.], + AbsoluteThickness[0.125]}}, {234., + FormBox["\"\"", TraditionalForm], {0.00375, 0.}, { + GrayLevel[0.], + AbsoluteThickness[0.125]}}, {236., + FormBox["\"\"", TraditionalForm], {0.00375, 0.}, { + GrayLevel[0.], + AbsoluteThickness[0.125]}}, {238., + FormBox["\"\"", TraditionalForm], {0.00375, 0.}, { + GrayLevel[0.], + AbsoluteThickness[0.125]}}, {242., + FormBox["\"\"", TraditionalForm], {0.00375, 0.}, { + GrayLevel[0.], + AbsoluteThickness[0.125]}}, {244., + FormBox["\"\"", TraditionalForm], {0.00375, 0.}, { + GrayLevel[0.], + AbsoluteThickness[0.125]}}, {246., + FormBox["\"\"", TraditionalForm], {0.00375, 0.}, { + GrayLevel[0.], + AbsoluteThickness[0.125]}}, {248., + FormBox["\"\"", TraditionalForm], {0.00375, 0.}, { + GrayLevel[0.], + AbsoluteThickness[0.125]}}, {218., + FormBox["\"\"", TraditionalForm], {0.00375, 0.}, { + GrayLevel[0.], + AbsoluteThickness[0.125]}}, {216., + FormBox["\"\"", TraditionalForm], {0.00375, 0.}, { + GrayLevel[0.], + AbsoluteThickness[0.125]}}, {214., + FormBox["\"\"", TraditionalForm], {0.00375, 0.}, { + GrayLevel[0.], + AbsoluteThickness[0.125]}}, {252., + FormBox["\"\"", TraditionalForm], {0.00375, 0.}, { + GrayLevel[0.], + AbsoluteThickness[0.125]}}, {254., + FormBox["\"\"", TraditionalForm], {0.00375, 0.}, { + GrayLevel[0.], + AbsoluteThickness[0.125]}}, {256., + FormBox["\"\"", TraditionalForm], {0.00375, 0.}, { + GrayLevel[0.], + AbsoluteThickness[0.125]}}}}, {{{3605299200, + FormBox["\"Apr\"", TraditionalForm], { + 0.020601132958329826`, 0}}, {3607891200, + FormBox["\"May\"", TraditionalForm], { + 0.020601132958329826`, 0}}, {3610569600, + FormBox["\"Jun\"", TraditionalForm], { + 0.020601132958329826`, 0}}, {3613161600, + FormBox["\"Jul\"", TraditionalForm], { + 0.020601132958329826`, 0}}, {3615840000, + FormBox["\"Aug\"", TraditionalForm], { + 0.020601132958329826`, 0}}, {3618518400, + FormBox["\"Sep\"", TraditionalForm], { + 0.020601132958329826`, 0}}, {3603830400, + FormBox["\"\"", TraditionalForm], { + 0.012360679774997897`, 0}}, {3606508800, + FormBox["\"\"", TraditionalForm], { + 0.012360679774997897`, 0}}, {3609100800, + FormBox["\"\"", TraditionalForm], { + 0.012360679774997897`, 0}}, {3611779200, + FormBox["\"\"", TraditionalForm], { + 0.012360679774997897`, 0}}, {3614371200, + FormBox["\"\"", TraditionalForm], { + 0.012360679774997897`, 0}}, {3617049600, + FormBox["\"\"", TraditionalForm], { + 0.012360679774997897`, 0}}}, {{3605299200, + FormBox[ + StyleBox["\"\"", 0, StripOnInput -> False], + TraditionalForm], {0.020601132958329826`, 0}}, { + 3607891200, + FormBox[ + StyleBox["\"\"", 0, StripOnInput -> False], + TraditionalForm], {0.020601132958329826`, 0}}, { + 3610569600, + FormBox[ + StyleBox["\"\"", 0, StripOnInput -> False], + TraditionalForm], {0.020601132958329826`, 0}}, { + 3613161600, + FormBox[ + StyleBox["\"\"", 0, StripOnInput -> False], + TraditionalForm], {0.020601132958329826`, 0}}, { + 3615840000, + FormBox[ + StyleBox["\"\"", 0, StripOnInput -> False], + TraditionalForm], {0.020601132958329826`, 0}}, { + 3618518400, + FormBox[ + StyleBox["\"\"", 0, StripOnInput -> False], + TraditionalForm], {0.020601132958329826`, 0}}, { + 3603830400, + FormBox[ + StyleBox["\"\"", 0, StripOnInput -> False], + TraditionalForm], {0.012360679774997897`, 0}}, { + 3606508800, + FormBox[ + StyleBox["\"\"", 0, StripOnInput -> False], + TraditionalForm], {0.012360679774997897`, 0}}, { + 3609100800, + FormBox[ + StyleBox["\"\"", 0, StripOnInput -> False], + TraditionalForm], {0.012360679774997897`, 0}}, { + 3611779200, + FormBox[ + StyleBox["\"\"", 0, StripOnInput -> False], + TraditionalForm], {0.012360679774997897`, 0}}, { + 3614371200, + FormBox[ + StyleBox["\"\"", 0, StripOnInput -> False], + TraditionalForm], {0.012360679774997897`, 0}}, { + 3617049600, + FormBox[ + StyleBox["\"\"", 0, StripOnInput -> False], + TraditionalForm], {0.012360679774997897`, 0}}}}}, + ImagePadding -> All, GridLines -> {{{3605299200, + GrayLevel[0.9]}, {3607891200, + GrayLevel[0.9]}, {3610569600, + GrayLevel[0.9]}, {3613161600, + GrayLevel[0.9]}, {3615840000, + GrayLevel[0.9]}, {3618518400, + GrayLevel[0.9]}}, Automatic}, Epilog -> { + Directive[ + AbsoluteThickness[0.5], + RGBColor[1, 0, 0]], + + LineBox[{{3611188800, 212.72879241512837`}, { + 3611188800, 257.21097084166985`}}], { + CapForm[None], { + GrayLevel[1], + PolygonBox[{ + Offset[{-4.6, -4.25}, + Scaled[{0, 0.08}]], + Offset[{-4.6, -0.34999999999999987`}, + Scaled[{0, 0.08}]], + Offset[{4.6, 4.25}, + Scaled[{0, 0.08}]], + Offset[{4.6, 0.34999999999999987`}, + Scaled[{0, 0.08}]]}]}, { + AbsoluteThickness[1], + GrayLevel[0], + LineBox[{{ + Offset[{-4.6, -4.25}, + Scaled[{0, 0.08}]], + Offset[{4.6, 0.34999999999999987`}, + Scaled[{0, 0.08}]]}, { + Offset[{-4.6, -0.34999999999999987`}, + Scaled[{0, 0.08}]], + Offset[{4.6, 4.25}, + Scaled[{0, 0.08}]]}}]}}}, PlotRangeClipping -> False, + PlotRangePadding -> None, AspectRatio -> 0.3, + AxesOrigin -> {3.604*^9, 214.}, AxesStyle -> Directive[ + GrayLevel[0, 0.35], FontColor -> GrayLevel[0.25], + FontOpacity -> 1], BaseStyle -> AbsoluteThickness[1], + Epilog -> { + Directive[ + AbsoluteThickness[0.5], + RGBColor[1, 0, 0]], + + LineBox[{{3611188800, 212.72879241512837`}, { + 3611188800, 257.21097084166985`}}]}, Frame -> True, + FrameLabel -> {None, None}, FrameStyle -> Directive[ + GrayLevel[0, 0.35], FontColor -> GrayLevel[0.25], + FontOpacity -> 1], FrameTicksStyle -> + Directive[FontFamily -> "Times", FontSize -> 10], + GridLines -> {{{3605299200, + GrayLevel[0.9]}, {3607891200, + GrayLevel[0.9]}, {3610569600, + GrayLevel[0.9]}, {3613161600, + GrayLevel[0.9]}, {3615840000, + GrayLevel[0.9]}, {3618518400, + GrayLevel[0.9]}}, Automatic}, GridLinesStyle -> + GrayLevel[0.9], ImageSize -> Full, + LabelStyle -> {FontFamily -> "Verdana", FontSize -> 10}, + Method -> {"AxesInFront" -> True}, + PlotRange -> {{3603398400, 3619123200}, {212.72879241512837`, + 257.21097084166985`}}, PlotRangeClipping -> True, + PlotRangePadding -> None, Prolog -> { + Opacity[0], + TagBox[ + RectangleBox[ + Scaled[{0, 0}], + Scaled[{1, 1}]], Annotation[#, "DatePlot", "Frame"]& ]}, + TicksStyle -> + Directive[FontFamily -> "Times", FontSize -> 10]}], + TagBox[ + GridBox[{{ + TagBox[ + GridBox[{{ + StyleBox[ + RowBox[{"\"(\"", "\[NoBreak]", + FormBox[ + TagBox[ + FormBox[ + TemplateBox[{"\"from \"", + FormBox[ + TagBox["\"Mar 10, 2014\"", Identity], TraditionalForm], + "\" to \"", + FormBox[ + TagBox["\"Sep 8, 2014\"", Identity], TraditionalForm]}, + "RowDefault"], TraditionalForm], + Format[#, TraditionalForm]& ], TraditionalForm], + "\[NoBreak]", "\")\""}], { + FontFamily -> "Verdana", FontSize -> 10, + GrayLevel[0.5], + LinebreakAdjustments -> {1, 100, 1, 0, 100}, LineIndent -> + 0}, StripOnInput -> False]}}, + GridBoxAlignment -> {"Columns" -> {{Left}}}, + DefaultBaseStyle -> "Column", + GridBoxItemSize -> { + "Columns" -> {{Automatic}}, "Rows" -> {{Automatic}}}], + "Column"], + TagBox[ + GridBox[{{ + StyleBox[ + RowBox[{"\"(\"", "\[NoBreak]", + + TemplateBox[{ + "\"in \"", "\"thousands\"", "\" of \"", "\"miles\""}, + "RowDefault"], "\[NoBreak]", "\")\""}], { + FontFamily -> "Verdana", FontSize -> 10, + GrayLevel[0.5], + LinebreakAdjustments -> {1, 100, 1, 0, 100}, LineIndent -> + 0}, StripOnInput -> False]}}, + GridBoxAlignment -> {"Columns" -> {{Left}}}, + DefaultBaseStyle -> "Column", + GridBoxItemSize -> { + "Columns" -> {{Automatic}}, "Rows" -> {{Automatic}}}], + "Column"]}}, + GridBoxAlignment -> { + "Columns" -> {{Automatic}}, "Rows" -> {{Baseline}}}, + AutoDelete -> False, + GridBoxItemSize -> { + "Columns" -> {{Automatic}}, "Rows" -> {{Automatic}}}, + GridBoxSpacings -> {"Columns" -> {{0.5}}}], "Grid"]}, + "Labeled", DisplayFunction -> (FormBox[ + GridBox[{{ + TagBox[ + ItemBox[ + PaneBox[ + TagBox[#, "SkipImageSizeLevel"], + Alignment -> {Center, Baseline}, BaselinePosition -> + Baseline], DefaultBaseStyle -> "Labeled"], + "SkipImageSizeLevel"]}, { + + ItemBox[#2, Alignment -> {Left, Inherited}, + DefaultBaseStyle -> "LabeledLabel"]}}, + GridBoxAlignment -> { + "Columns" -> {{Center}}, "Rows" -> {{Center}}}, AutoDelete -> + False, GridBoxItemSize -> { + "Columns" -> {{Automatic}}, "Rows" -> {{Automatic}}}, + BaselinePosition -> {1, 1}], TraditionalForm]& ), + InterpretationFunction -> (RowBox[{ + StyleBox[ + "Labeled", FontFamily -> "Bitstream Vera Sans", + FontSize -> -1 + Inherited], "[", + RowBox[{#, ",", + RowBox[{"{", #2, "}"}], ",", + RowBox[{"(", "\[NoBreak]", + GridBox[{{ + StyleBox[ + "Bottom", FontFamily -> "Bitstream Vera Sans", + FontSize -> -1 + Inherited], + StyleBox[ + "Left", FontFamily -> "Bitstream Vera Sans", + FontSize -> -1 + Inherited]}}, RowSpacings -> 1, + ColumnSpacings -> 1, RowAlignments -> Baseline, + ColumnAlignments -> Center], "\[NoBreak]", ")"}]}], + "]"}]& )], TraditionalForm]], "Output", { + Background -> None}]}], + XMLElement[ + "dataformats", {}, {"computabledata,formatteddata,timeseriesdata"}]}], + XMLElement["states", {"count" -> "2"}, { + XMLElement[ + "state", { + "name" -> "Use Metric", "input" -> + "DistanceHistory:AstronomicalData__Use Metric"}, {}], + XMLElement[ + "statelist", { + "count" -> "5", "value" -> "\[PlusMinus]3 months", "delimiters" -> + ""}, { + XMLElement[ + "state", { + "name" -> "\[PlusMinus]3 months", "input" -> + "DistanceHistory:AstronomicalData__\[PlusMinus]3 months"}, {}], + XMLElement[ + "state", { + "name" -> "\[PlusMinus]6 months", "input" -> + "DistanceHistory:AstronomicalData__\[PlusMinus]6 months"}, {}], + XMLElement[ + "state", { + "name" -> "\[PlusMinus]1 year", "input" -> + "DistanceHistory:AstronomicalData__\[PlusMinus]1 year"}, {}], + XMLElement[ + "state", { + "name" -> "\[PlusMinus]5 years", "input" -> + "DistanceHistory:AstronomicalData__\[PlusMinus]5 years"}, {}], + XMLElement[ + "state", { + "name" -> "\[PlusMinus]10 years", "input" -> + "DistanceHistory:AstronomicalData__\[PlusMinus]10 years"}, \ +{}]}]}]}], Typeset`pod4$$ = XMLElement[ + "pod", {"title" -> "Unit conversions", "scanner" -> "Unit", "id" -> + "UnitConversion", "position" -> "400", "error" -> "false", "numsubpods" -> + "2"}, { + XMLElement["subpod", {"title" -> ""}, { + XMLElement["cell", {"compressed" -> False, "string" -> True}, { + Cell[ + BoxData[ + FormBox[ + StyleBox[ + TagBox[ + RowBox[{ + TagBox[ + TagBox[ + RowBox[{ + TagBox["385\[ThinSpace]056", + $CellContext`TagBoxWrapper["StringBoxes" -> "385056"]], + "\[NoBreak]", + StyleBox[ + RowBox[{}], FontFamily -> "Helvetica", FontSize -> + Smaller], "\[InvisibleSpace]", "\[ThickSpace]", + "\[InvisibleSpace]", + StyleBox[ + "\"km\"", FontFamily -> "Helvetica", FontSize -> + Smaller]}], Identity], #& , SyntaxForm -> Dot], " ", + StyleBox[ + + RowBox[{ + "\"(\"", "\[NoBreak]", "\"kilometers\"", "\[NoBreak]", + "\")\""}], { + FontFamily :> $CellContext`$UnitFontFamily, FontSize -> + Smaller, + GrayLevel[0.6], LinebreakAdjustments -> {1, 100, 1, 0, 100}, + LineIndent -> 0}, StripOnInput -> False]}], "Unit", + SyntaxForm -> Dot], LinebreakAdjustments -> {1, 100, 1, 0, 100}, + LineIndent -> 0, ZeroWidthTimes -> False], TraditionalForm]], + "Output", {}]}], + XMLElement[ + "dataformats", {}, { + "plaintext,computabledata,formatteddata,numberdata,quantitydata"}]}], + XMLElement["subpod", {"title" -> ""}, { + XMLElement["cell", {"compressed" -> False, "string" -> True}, { + Cell[ + BoxData[ + FormBox[ + StyleBox[ + TagBox[ + TagBox[ + TagBox[ + RowBox[{ + TagBox[ + RowBox[{"3.851", + StyleBox["\[Times]", + GrayLevel[0.5]], + SuperscriptBox["10", "8"]}], + $CellContext`TagBoxWrapper[ + "StringBoxes" -> RowBox[{"3.851", "\[Times]", + SuperscriptBox["10", "8"]}]], SyntaxForm -> CenterDot], + "\[InvisibleSpace]", " ", + StyleBox[ + "\"meters\"", LinebreakAdjustments -> {1, 100, 1, 0, 100}, + LineIndent -> 0, { + FontFamily :> $CellContext`$UnitFontFamily, FontSize -> + Smaller}, StripOnInput -> False]}], Identity], #& , + SyntaxForm -> Dot], "Unit", SyntaxForm -> Dot], + LinebreakAdjustments -> {1, 100, 1, 0, 100}, LineIndent -> 0, + ZeroWidthTimes -> False], TraditionalForm]], "Output", {}]}], + XMLElement[ + "dataformats", {}, { + "plaintext,computabledata,formatteddata,numberdata,quantitydata"}]}]}]\ +, Typeset`pod5$$ = XMLElement[ + "pod", {"title" -> "Comparison as distance", "scanner" -> "Unit", "id" -> + "ComparisonAsDistance", "position" -> "500", "error" -> "false", + "numsubpods" -> "1"}, { + XMLElement["subpod", {"title" -> ""}, { + XMLElement["cell", {"compressed" -> False, "string" -> True}, { + Cell[ + BoxData[ + FormBox[ + FormBox[ + + TemplateBox[{ + "\" \[TildeTilde] \"", + "1.00017081986198578379799203020065608125`4.767535813146223", + "\" \"", + StyleBox["\"\[Times]\"", + GrayLevel[0.3], FontSize -> 10.219999999999999`, StripOnInput -> + False], "\"\[MediumSpace]\"", + StyleBox[ + "\"mean Moon\[Hyphen]Earth distance\"", FontFamily -> + "Helvetica", FontSize -> Smaller, StripOnInput -> False], + "\" \"", + StyleBox[ + RowBox[{"\"(\"", "\[NoBreak]", + TemplateBox[{"\"\[MediumSpace]\"", + StyleBox[ + TagBox[ + TagBox[ + TagBox[ + RowBox[{ + TagBox[ + RowBox[{"3.85", + StyleBox["\[Times]", + GrayLevel[0.5]], + SuperscriptBox["10", "8"]}], + $CellContext`TagBoxWrapper[ + "StringBoxes" -> RowBox[{"3.85", "\[Times]", + SuperscriptBox["10", "8"]}]], SyntaxForm -> CenterDot], + "\[NoBreak]", + StyleBox[ + RowBox[{}], FontFamily -> "Helvetica", FontSize -> + Smaller], "\[InvisibleSpace]", "\[ThickSpace]", + "\[InvisibleSpace]", + StyleBox[ + "\"m\"", FontFamily -> "Helvetica", FontSize -> + Smaller]}], Identity], #& , SyntaxForm -> Dot], "Unit", + SyntaxForm -> Dot], + LinebreakAdjustments -> {1, 100, 1, 0, 100}, LineIndent -> + 0, ZeroWidthTimes -> False], "\"\[MediumSpace]\""}, + "RowDefault"], "\[NoBreak]", "\")\""}], { + FontFamily -> "Verdana", FontSize -> 10, + GrayLevel[0.5], LinebreakAdjustments -> {1, 100, 1, 0, 100}, + LineIndent -> 0}, StripOnInput -> False]}, "RowDefault"], + TraditionalForm], TraditionalForm]], "Output", {}]}], + XMLElement["dataformats", {}, {"plaintext"}]}]}], Typeset`pod6$$ = + XMLElement[ + "pod", {"title" -> "Corresponding quantities", "scanner" -> "Unit", "id" -> + "CorrespondingQuantity", "position" -> "600", "error" -> "false", + "numsubpods" -> "2"}, { + XMLElement["subpod", {"title" -> ""}, { + XMLElement["cell", {"compressed" -> False, "string" -> True}, { + Cell[ + BoxData[ + FormBox[ + TagBox[ + GridBox[{{ + InterpretationBox[ + Cell[ + TextData[{"Light travel time ", + Cell[ + BoxData[ + FormBox["t", TraditionalForm]]], " in vacuum from ", + Cell[ + BoxData[ + FormBox[ + FormBox[ + TemplateBox[{ + TagBox[ + RowBox[{"t", "\[LongEqual]", + + RowBox[{"x", "\[InvisibleSpace]", "\"/\"", + "\[InvisibleSpace]", "c"}]}], + PolynomialForm[#, TraditionalOrder -> False]& ]}, + "RowDefault"], TraditionalForm], TraditionalForm]]], + ":"}]], + TextCell[ + Row[{"Light travel time ", + $CellContext`CalculateSymbol["t"], " in vacuum from ", + $CellContext`InlineForm["t \[LongEqual] x/c"], ":"}]]]}, { + TagBox[ + GridBox[{{ + InterpretationBox[ + StyleBox[ + + GraphicsBox[{}, ImageSize -> {10, 0}, BaselinePosition -> + Baseline], "CacheGraphics" -> False], + Spacer[10]], + StyleBox[ + TagBox[ + TagBox[ + TagBox[ + RowBox[{ + TagBox["1.3", + $CellContext`TagBoxWrapper["StringBoxes" -> "1.3"]], + "\[InvisibleSpace]", " ", + StyleBox[ + "\"seconds\"", + LinebreakAdjustments -> {1, 100, 1, 0, 100}, LineIndent -> + 0, {FontFamily :> $CellContext`$UnitFontFamily, FontSize -> + Smaller}, StripOnInput -> False]}], Identity], #& , + SyntaxForm -> Dot], "Unit", SyntaxForm -> Dot], + LinebreakAdjustments -> {1, 100, 1, 0, 100}, LineIndent -> + 0, ZeroWidthTimes -> False]}}, + GridBoxAlignment -> {"Columns" -> {{Left}}}, AutoDelete -> + False, GridBoxItemSize -> { + "Columns" -> {{Automatic}}, "Rows" -> {{Automatic}}}], + "Grid"]}}, GridBoxAlignment -> {"Columns" -> {{Left}}}, + DefaultBaseStyle -> "Column", + GridBoxItemSize -> {"ColumnsIndexed" -> {1 -> 0}}], "Column"], + TraditionalForm]], "Output", {}]}], + XMLElement[ + "dataformats", {}, { + "plaintext,computabledata,formatteddata,numberdata,quantitydata"}]}], + XMLElement["subpod", {"title" -> ""}, { + XMLElement["cell", {"compressed" -> False, "string" -> True}, { + Cell[ + BoxData[ + FormBox[ + TagBox[ + GridBox[{{ + InterpretationBox[ + Cell[ + TextData[{"Light travel time ", + Cell[ + BoxData[ + FormBox["t", TraditionalForm]]], " in an optical fiber ", + Cell[ + BoxData[ + FormBox[ + FormBox[ + TemplateBox[{ + TagBox[ + RowBox[{"t", "\[LongEqual]", + RowBox[{ + RowBox[{"1.48`", "\[InvisibleSpace]", "x"}], + "\[InvisibleSpace]", "\"/\"", "\[InvisibleSpace]", + "c"}]}], PolynomialForm[#, TraditionalOrder -> False]& ]}, + "RowDefault"], TraditionalForm], TraditionalForm]]], + ":"}]], + TextCell[ + Row[{"Light travel time ", + $CellContext`CalculateSymbol["t"], + " in an optical fiber ", + $CellContext`InlineForm["t \[LongEqual] 1.48x/c"], + ":"}]]]}, { + TagBox[ + GridBox[{{ + InterpretationBox[ + StyleBox[ + + GraphicsBox[{}, ImageSize -> {10, 0}, BaselinePosition -> + Baseline], "CacheGraphics" -> False], + Spacer[10]], + StyleBox[ + TagBox[ + TagBox[ + TagBox[ + RowBox[{ + TagBox["1.9", + $CellContext`TagBoxWrapper["StringBoxes" -> "1.9"]], + "\[InvisibleSpace]", " ", + StyleBox[ + "\"seconds\"", + LinebreakAdjustments -> {1, 100, 1, 0, 100}, LineIndent -> + 0, {FontFamily :> $CellContext`$UnitFontFamily, FontSize -> + Smaller}, StripOnInput -> False]}], Identity], #& , + SyntaxForm -> Dot], "Unit", SyntaxForm -> Dot], + LinebreakAdjustments -> {1, 100, 1, 0, 100}, LineIndent -> + 0, ZeroWidthTimes -> False]}}, + GridBoxAlignment -> {"Columns" -> {{Left}}}, AutoDelete -> + False, GridBoxItemSize -> { + "Columns" -> {{Automatic}}, "Rows" -> {{Automatic}}}], + "Grid"]}}, GridBoxAlignment -> {"Columns" -> {{Left}}}, + DefaultBaseStyle -> "Column", + GridBoxItemSize -> {"ColumnsIndexed" -> {1 -> 0}}], "Column"], + TraditionalForm]], "Output", {}]}], + XMLElement[ + "dataformats", {}, { + "plaintext,computabledata,formatteddata,numberdata,quantitydata"}]}]}]\ +, Typeset`pod7$$ = XMLElement[ + "pod", {"title" -> "Orbital properties", "scanner" -> "Data", "id" -> + "BasicPlanetOrbitalProperties:AstronomicalData", "position" -> "700", + "error" -> "false", "numsubpods" -> "1"}, { + XMLElement["subpod", {"title" -> ""}, { + XMLElement["cell", {"compressed" -> True, "string" -> False}, { + Cell[ + BoxData[ + FormBox[ + StyleBox[ + TagBox[ + GridBox[{{ + TagBox[ + PaneBox[ + "\"current distance from Earth\"", + BaseStyle -> {{ + BaselinePosition -> Baseline, FontColor -> + GrayLevel[0.3]}, LineSpacing -> {0.9, 0, 1.5}, + LinebreakAdjustments -> {1, 10, 10000, 0, 100}, + TextAlignment -> Left}, BaselinePosition -> Baseline], + $CellContext`TagBoxWrapper["Label"]], + TagBox[ + GridBox[{{ + StyleBox[ + TagBox[ + TagBox[ + TagBox[ + RowBox[{ + TagBox["239\[ThinSpace]262", + $CellContext`TagBoxWrapper["StringBoxes" -> "239262"]], + "\[NoBreak]", + StyleBox[ + RowBox[{}], FontFamily -> "Helvetica", FontSize -> + Smaller], "\[InvisibleSpace]", "\[ThickSpace]", + "\[InvisibleSpace]", + StyleBox[ + "\"mi\"", FontFamily -> "Helvetica", FontSize -> + Smaller]}], Identity], #& , SyntaxForm -> Dot], "Unit", + SyntaxForm -> Dot], + LinebreakAdjustments -> {1, 100, 1, 0, 100}, LineIndent -> + 0, ZeroWidthTimes -> False]}, { + StyleBox[ + TagBox[ + TagBox[ + TagBox[ + RowBox[{ + TagBox["60.37", + $CellContext`TagBoxWrapper["StringBoxes" -> "60.37"]], + "\[NoBreak]", + StyleBox[ + RowBox[{}], FontFamily -> "Helvetica", FontSize -> + Smaller], "\[InvisibleSpace]", "\[ThickSpace]", + "\[InvisibleSpace]", + StyleBox[ + SubscriptBox[ + StyleBox["\"a\"", Italic, StripOnInput -> False], + "\"\[Earth]\""], FontFamily -> "Helvetica", FontSize -> + Smaller]}], Identity], #& , SyntaxForm -> Dot], "Unit", + SyntaxForm -> Dot], + LinebreakAdjustments -> {1, 100, 1, 0, 100}, LineIndent -> + 0, ZeroWidthTimes -> False]}}, + GridBoxAlignment -> {"Columns" -> {{Left}}}, + BaselinePosition -> 1, DefaultBaseStyle -> "Column", + GridBoxItemSize -> { + "Columns" -> {{Automatic}}, "Rows" -> {{Automatic}}}, + GridBoxSpacings -> { + "Columns" -> {{Automatic}}, "Rows" -> {{Automatic}}}], + "Column"]}, { + TagBox[ + PaneBox[ + TagBox["\"average distance from Earth\"", Identity], + BaseStyle -> {{ + BaselinePosition -> Baseline, FontColor -> + GrayLevel[0.3]}, LineSpacing -> {0.9, 0, 1.5}, + LinebreakAdjustments -> {1, 10, 10000, 0, 100}, + TextAlignment -> Left}, BaselinePosition -> Baseline], + $CellContext`TagBoxWrapper["Label"]], + TagBox[ + GridBox[{{ + StyleBox[ + TagBox[ + TagBox[ + TagBox[ + RowBox[{ + TagBox["239\[ThinSpace]200", + $CellContext`TagBoxWrapper["StringBoxes" -> "239200"]], + "\[NoBreak]", + StyleBox[ + RowBox[{}], FontFamily -> "Helvetica", FontSize -> + Smaller], "\[InvisibleSpace]", "\[ThickSpace]", + "\[InvisibleSpace]", + StyleBox[ + "\"mi\"", FontFamily -> "Helvetica", FontSize -> + Smaller]}], Identity], #& , SyntaxForm -> Dot], "Unit", + SyntaxForm -> Dot], + LinebreakAdjustments -> {1, 100, 1, 0, 100}, LineIndent -> + 0, ZeroWidthTimes -> False]}, { + StyleBox[ + TagBox[ + TagBox[ + TagBox[ + RowBox[{ + TagBox["60.36", + $CellContext`TagBoxWrapper["StringBoxes" -> "60.36"]], + "\[NoBreak]", + StyleBox[ + RowBox[{}], FontFamily -> "Helvetica", FontSize -> + Smaller], "\[InvisibleSpace]", "\[ThickSpace]", + "\[InvisibleSpace]", + StyleBox[ + SubscriptBox[ + StyleBox["\"a\"", Italic, StripOnInput -> False], + "\"\[Earth]\""], FontFamily -> "Helvetica", FontSize -> + Smaller]}], Identity], #& , SyntaxForm -> Dot], "Unit", + SyntaxForm -> Dot], + LinebreakAdjustments -> {1, 100, 1, 0, 100}, LineIndent -> + 0, ZeroWidthTimes -> False]}}, + GridBoxAlignment -> {"Columns" -> {{Left}}}, + BaselinePosition -> 1, DefaultBaseStyle -> "Column", + GridBoxItemSize -> { + "Columns" -> {{Automatic}}, "Rows" -> {{Automatic}}}, + GridBoxSpacings -> { + "Columns" -> {{Automatic}}, "Rows" -> {{Automatic}}}], + "Column"]}, { + TagBox[ + PaneBox[ + "\"largest distance from orbit center\"", + BaseStyle -> {{ + BaselinePosition -> Baseline, FontColor -> + GrayLevel[0.3]}, LineSpacing -> {0.9, 0, 1.5}, + LinebreakAdjustments -> {1, 10, 10000, 0, 100}, + TextAlignment -> Left}, BaselinePosition -> Baseline], + $CellContext`TagBoxWrapper["Label"]], + TagBox[ + GridBox[{{ + StyleBox[ + TagBox[ + TagBox[ + TagBox[ + RowBox[{ + TagBox["252\[ThinSpace]100", + $CellContext`TagBoxWrapper["StringBoxes" -> "252100"]], + "\[NoBreak]", + StyleBox[ + RowBox[{}], FontFamily -> "Helvetica", FontSize -> + Smaller], "\[InvisibleSpace]", "\[ThickSpace]", + "\[InvisibleSpace]", + StyleBox[ + "\"mi\"", FontFamily -> "Helvetica", FontSize -> + Smaller]}], Identity], #& , SyntaxForm -> Dot], "Unit", + SyntaxForm -> Dot], + LinebreakAdjustments -> {1, 100, 1, 0, 100}, LineIndent -> + 0, ZeroWidthTimes -> False]}, { + StyleBox[ + TagBox[ + TagBox[ + TagBox[ + RowBox[{ + TagBox["63.61", + $CellContext`TagBoxWrapper["StringBoxes" -> "63.61"]], + "\[NoBreak]", + StyleBox[ + RowBox[{}], FontFamily -> "Helvetica", FontSize -> + Smaller], "\[InvisibleSpace]", "\[ThickSpace]", + "\[InvisibleSpace]", + StyleBox[ + SubscriptBox[ + StyleBox["\"a\"", Italic, StripOnInput -> False], + "\"\[Earth]\""], FontFamily -> "Helvetica", FontSize -> + Smaller]}], Identity], #& , SyntaxForm -> Dot], "Unit", + SyntaxForm -> Dot], + LinebreakAdjustments -> {1, 100, 1, 0, 100}, LineIndent -> + 0, ZeroWidthTimes -> False]}}, + GridBoxAlignment -> {"Columns" -> {{Left}}}, + BaselinePosition -> 1, DefaultBaseStyle -> "Column", + GridBoxItemSize -> { + "Columns" -> {{Automatic}}, "Rows" -> {{Automatic}}}, + GridBoxSpacings -> { + "Columns" -> {{Automatic}}, "Rows" -> {{Automatic}}}], + "Column"]}, { + TagBox[ + PaneBox[ + "\"nearest distance from orbit center\"", + BaseStyle -> {{ + BaselinePosition -> Baseline, FontColor -> + GrayLevel[0.3]}, LineSpacing -> {0.9, 0, 1.5}, + LinebreakAdjustments -> {1, 10, 10000, 0, 100}, + TextAlignment -> Left}, BaselinePosition -> Baseline], + $CellContext`TagBoxWrapper["Label"]], + TagBox[ + GridBox[{{ + StyleBox[ + TagBox[ + TagBox[ + TagBox[ + RowBox[{ + TagBox["225\[ThinSpace]600", + $CellContext`TagBoxWrapper["StringBoxes" -> "225600"]], + "\[NoBreak]", + StyleBox[ + RowBox[{}], FontFamily -> "Helvetica", FontSize -> + Smaller], "\[InvisibleSpace]", "\[ThickSpace]", + "\[InvisibleSpace]", + StyleBox[ + "\"mi\"", FontFamily -> "Helvetica", FontSize -> + Smaller]}], Identity], #& , SyntaxForm -> Dot], "Unit", + SyntaxForm -> Dot], + LinebreakAdjustments -> {1, 100, 1, 0, 100}, LineIndent -> + 0, ZeroWidthTimes -> False]}, { + StyleBox[ + TagBox[ + TagBox[ + TagBox[ + RowBox[{ + TagBox["56.93", + $CellContext`TagBoxWrapper["StringBoxes" -> "56.93"]], + "\[NoBreak]", + StyleBox[ + RowBox[{}], FontFamily -> "Helvetica", FontSize -> + Smaller], "\[InvisibleSpace]", "\[ThickSpace]", + "\[InvisibleSpace]", + StyleBox[ + SubscriptBox[ + StyleBox["\"a\"", Italic, StripOnInput -> False], + "\"\[Earth]\""], FontFamily -> "Helvetica", FontSize -> + Smaller]}], Identity], #& , SyntaxForm -> Dot], "Unit", + SyntaxForm -> Dot], + LinebreakAdjustments -> {1, 100, 1, 0, 100}, LineIndent -> + 0, ZeroWidthTimes -> False]}}, + GridBoxAlignment -> {"Columns" -> {{Left}}}, + BaselinePosition -> 1, DefaultBaseStyle -> "Column", + GridBoxItemSize -> { + "Columns" -> {{Automatic}}, "Rows" -> {{Automatic}}}, + GridBoxSpacings -> { + "Columns" -> {{Automatic}}, "Rows" -> {{Automatic}}}], + "Column"]}, { + TagBox[ + PaneBox[ + TagBox["\"orbital period\"", Identity], + BaseStyle -> {{ + BaselinePosition -> Baseline, FontColor -> + GrayLevel[0.3]}, LineSpacing -> {0.9, 0, 1.5}, + LinebreakAdjustments -> {1, 10, 10000, 0, 100}, + TextAlignment -> Left}, BaselinePosition -> Baseline], + $CellContext`TagBoxWrapper["Label"]], + StyleBox[ + TagBox[ + TagBox[ + TagBox[ + RowBox[{ + TagBox["27.322", + $CellContext`TagBoxWrapper["StringBoxes" -> "27.322"]], + "\[InvisibleSpace]", " ", + StyleBox[ + "\"days\"", LinebreakAdjustments -> {1, 100, 1, 0, 100}, + LineIndent -> 0, { + FontFamily :> $CellContext`$UnitFontFamily, FontSize -> + Smaller}, StripOnInput -> False]}], Identity], #& , + SyntaxForm -> Dot], "Unit", SyntaxForm -> Dot], + LinebreakAdjustments -> {1, 100, 1, 0, 100}, LineIndent -> + 0, ZeroWidthTimes -> False]}}, + GridBoxAlignment -> { + "Columns" -> {Left, Left}, "Rows" -> {{Baseline}}}, + AutoDelete -> False, + GridBoxBackground -> {"Columns" -> {None, None}}, + GridBoxFrame -> {"Columns" -> {{True}}, "Rows" -> {{True}}}, + GridBoxItemSize -> { + "Columns" -> {{Automatic}}, "Rows" -> {{Automatic}}}, + GridBoxSpacings -> {"Columns" -> {{1.5}, 2}, "Rows" -> {{1}}}, + FrameStyle -> GrayLevel[0.84], BaselinePosition -> Automatic, + AllowScriptLevelChange -> False], "Grid"], + LineSpacing -> {0.9, 0, 1.5}, LineIndent -> 0, StripOnInput -> + False], TraditionalForm]], "Output", {}]}], + XMLElement[ + "dataformats", {}, { + "plaintext,computabledata,formatteddata,numberdata,quantitydata"}]}], + XMLElement["states", {"count" -> "2"}, { + XMLElement[ + "state", { + "name" -> "Show metric", "input" -> + "BasicPlanetOrbitalProperties:AstronomicalData__Show metric"}, {}], + XMLElement[ + "state", { + "name" -> "More", "input" -> + "BasicPlanetOrbitalProperties:AstronomicalData__More"}, {}]}], + XMLElement["infos", {"count" -> "1"}, { + XMLElement["info", {}, { + XMLElement["units", {"count" -> "2"}, { + XMLElement[ + "unit", { + "short" -> "a_\[Earth]", "long" -> + "equatorial radii of Earth"}, {}], + XMLElement["unit", {"short" -> "mi", "long" -> "miles"}, {}], + XMLElement["cell", {"compressed" -> False, "string" -> True}, { + Cell[ + BoxData[ + FormBox[ + StyleBox[ + TagBox[ + GridBox[{{ + StyleBox[ + StyleBox[ + TagBox[ + TagBox[ + RowBox[{ + StyleBox[ + SubscriptBox[ + StyleBox["\"a\"", Italic, StripOnInput -> False], + "\"\[Earth]\""], FontFamily -> "Helvetica", FontSize -> + Smaller]}], Identity], "UnitOnly", SyntaxForm -> Dot], + LinebreakAdjustments -> {1, 100, 1, 0, 100}, LineIndent -> + 0, ZeroWidthTimes -> False], 10, StripOnInput -> False], + StyleBox[ + "\"equatorial radii of Earth\"", FontSize -> 10, + LinebreakAdjustments -> {1, 100, 1, 0, 100}, LineIndent -> + 0, {FontFamily :> $CellContext`$UnitFontFamily, FontSize -> + Smaller}, + GrayLevel[0.6], StripOnInput -> False]}, { + StyleBox[ + StyleBox[ + TagBox[ + TagBox[ + RowBox[{ + StyleBox[ + "\"mi\"", FontFamily -> "Helvetica", FontSize -> + Smaller]}], Identity], "UnitOnly", SyntaxForm -> Dot], + LinebreakAdjustments -> {1, 100, 1, 0, 100}, LineIndent -> + 0, ZeroWidthTimes -> False], 10, StripOnInput -> False], + StyleBox[ + "\"miles\"", FontSize -> 10, + LinebreakAdjustments -> {1, 100, 1, 0, 100}, LineIndent -> + 0, {FontFamily :> $CellContext`$UnitFontFamily, FontSize -> + Smaller}, + GrayLevel[0.6], StripOnInput -> False]}}, + GridBoxAlignment -> { + "Columns" -> {Left, Left}, "Rows" -> {{Baseline}}}, + AutoDelete -> False, + GridBoxBackground -> {"Columns" -> {{None}}}, + GridBoxFrame -> { + "Columns" -> {{True}}, "Rows" -> {{True}}}, + GridBoxItemSize -> { + "Columns" -> {{Automatic}}, "Rows" -> {{Automatic}}}, + GridBoxSpacings -> { + "Columns" -> {{1.5}}, "Rows" -> {{0.5}}}, FrameStyle -> + GrayLevel[0.84], BaselinePosition -> Automatic, + AllowScriptLevelChange -> False], "Grid"], + LineSpacing -> {0.9, 0, 1.5}, LineIndent -> 0, StripOnInput -> + False], TraditionalForm]], "Output", {}]}]}]}]}]}], + Typeset`aux1$$ = {True, False, {False}, True}, Typeset`aux2$$ = { + True, False, {False}, True}, Typeset`aux3$$ = {True, False, {False}, True}, + Typeset`aux4$$ = {True, False, {False, False}, True}, Typeset`aux5$$ = { + True, False, {False}, True}, Typeset`aux6$$ = { + True, False, {False, False}, True}, Typeset`aux7$$ = { + True, False, {False}, True}, Typeset`asyncpods$$ = {}, Typeset`nonpods$$ = { + XMLElement["sources", {"count" -> "1"}, { + XMLElement[ + "source", { + "url" -> + "http://www.wolframalpha.com/sources/\ +AstronomicalDataSourceInformationNotes.html", "text" -> + "Astronomical data"}, {}]}]}, Typeset`initdone$$ = True, + Typeset`queryinfo$$ = { + "success" -> "true", "error" -> "false", "numpods" -> "7", "datatypes" -> + "Astronomical", "timedout" -> "", "timedoutpods" -> "", "timing" -> + "2.573", "parsetiming" -> "0.486", "parsetimedout" -> "false", + "recalculate" -> "", "id" -> + "MSPa79522303fg0608bh95i00004h41i28eicg1ci5g", "host" -> + "http://www3.wolframalpha.com", "server" -> "20", "related" -> + "http://www3.wolframalpha.com/api/v2/relatedQueries.jsp?id=\ +MSPa79622303fg0608bh95i000037d20g9h7ib3ec64&s=20", "version" -> "2.6"}, + Typeset`sessioninfo$$ = { + "TimeZone" -> -4., + "Date" -> {2014, 6, 8, 23, 7, 20.2144277`9.058236384941416}, "Line" -> 3, + "SessionID" -> 25552092645876612485}, Typeset`showpods$$ = {1, 2, 3, 4, 5, + 6, 7}, Typeset`failedpods$$ = {}, Typeset`chosen$$ = {}, Typeset`open$$ = + False, Typeset`newq$$ = "How far is the Earth from the Moon?"}, + DynamicBox[ToBoxes[ + AlphaIntegration`FormatAlphaResults[ + Dynamic[{ + 1, {Typeset`pod1$$, Typeset`pod2$$, Typeset`pod3$$, Typeset`pod4$$, + Typeset`pod5$$, Typeset`pod6$$, Typeset`pod7$$}, { + Typeset`aux1$$, Typeset`aux2$$, Typeset`aux3$$, Typeset`aux4$$, + Typeset`aux5$$, Typeset`aux6$$, Typeset`aux7$$}, Typeset`chosen$$, + Typeset`open$$, Typeset`elements$$, Typeset`q$$, Typeset`opts$$, + Typeset`nonpods$$, Typeset`queryinfo$$, Typeset`sessioninfo$$, + Typeset`showpods$$, Typeset`failedpods$$, Typeset`newq$$}]], + StandardForm], + ImageSizeCache->{648., {478., 483.}}, + TrackedSymbols:>{Typeset`showpods$$, Typeset`failedpods$$}], + DynamicModuleValues:>{}, + Initialization:>If[ + Not[Typeset`initdone$$], Null; WolframAlphaClient`Private`doAsyncUpdates[ + Hold[{ + Typeset`pod1$$, Typeset`pod2$$, Typeset`pod3$$, Typeset`pod4$$, + Typeset`pod5$$, Typeset`pod6$$, Typeset`pod7$$}], + Typeset`asyncpods$$, + Dynamic[Typeset`failedpods$$]]; Typeset`asyncpods$$ = {}; + Typeset`initdone$$ = True], + SynchronousInitialization->False], + BaseStyle->{Deployed -> True}, + DeleteWithContents->True, + Editable->False, + SelectWithContents->True]], "Print", + CellMargins->{{20, 10}, {Inherited, Inherited}}, + CellChangeTimes->{3.611272040233429*^9}] +}, Open ]], + +Cell[CellGroupData[{ + +Cell[BoxData[ + RowBox[{"Plot3D", "[", + RowBox[{ + RowBox[{ + RowBox[{"Power", "[", + RowBox[{"x", ",", " ", "2"}], "]"}], " ", "+", " ", "y", " ", "+", " ", + "z"}], ",", " ", + RowBox[{"{", + RowBox[{"x", ",", " ", "0", ",", " ", "10"}], "}"}], " ", ",", " ", + RowBox[{"{", + RowBox[{"y", ",", " ", "0", ",", " ", "10"}], "}"}]}], "]"}]], "Input", + CellChangeTimes->{{3.6112720578024335`*^9, 3.6112721112124887`*^9}}], + +Cell[BoxData[ + Graphics3DBox[{}, + Axes->True, + BoxRatios->{1, 1, 0.4}, + Method->{"RotationControl" -> "Globe"}, + PlotRange->{{0, 10}, {0, 10}, {0., 0.}}, + PlotRangePadding->{ + Scaled[0.02], + Scaled[0.02], + Scaled[0.02]}]], "Output", + CellChangeTimes->{3.6112721144606743`*^9}] +}, Open ]], + +Cell[CellGroupData[{ + +Cell[BoxData[ + RowBox[{"Plot3D", "[", + RowBox[{ + RowBox[{ + SuperscriptBox["x", "2"], "+", "y", "+", "z"}], ",", + RowBox[{"{", + RowBox[{"x", ",", "0", ",", "10"}], "}"}], ",", + RowBox[{"{", + RowBox[{"y", ",", "0", ",", "10"}], "}"}], ",", + RowBox[{"Mesh", "\[Rule]", "Automatic"}], ",", + RowBox[{"MeshFunctions", "\[Rule]", "Automatic"}]}], "]"}]], "Input", + NumberMarks->False], + +Cell[BoxData[ + Graphics3DBox[{}, + Axes->True, + BoxRatios->{1, 1, 0.4}, + Method->{"RotationControl" -> "Globe"}, + PlotRange->{{0, 10}, {0, 10}, {0., 0.}}, + PlotRangePadding->{ + Scaled[0.02], + Scaled[0.02], + Scaled[0.02]}]], "Output", + CellChangeTimes->{3.6112721290995116`*^9}] +}, Open ]], + +Cell[CellGroupData[{ + +Cell[BoxData[ + RowBox[{"Plot3D", "[", + RowBox[{ + RowBox[{ + SuperscriptBox["x", "2"], "+", "y", "+", "z"}], ",", + RowBox[{"{", + RowBox[{"x", ",", "0", ",", "10"}], "}"}], ",", + RowBox[{"{", + RowBox[{"y", ",", "0", ",", "10"}], "}"}], ",", + RowBox[{"MeshStyle", "\[Rule]", + RowBox[{"Directive", "[", + RowBox[{ + RowBox[{"RGBColor", "[", + RowBox[{"0.05`", ",", "1.`", ",", "0.98`"}], "]"}], ",", + RowBox[{"Opacity", "[", "0.11`", "]"}], ",", + RowBox[{"AbsoluteThickness", "[", "1.555`", "]"}]}], "]"}]}], ",", + RowBox[{"Mesh", "\[Rule]", "Automatic"}], ",", + RowBox[{"MeshFunctions", "\[Rule]", "Automatic"}]}], "]"}]], "Input", + NumberMarks->False], + +Cell[BoxData[ + Graphics3DBox[{}, + Axes->True, + BoxRatios->{1, 1, 0.4}, + Method->{"RotationControl" -> "Globe"}, + PlotRange->{{0, 10}, {0, 10}, {0., 0.}}, + PlotRangePadding->{ + Scaled[0.02], + Scaled[0.02], + Scaled[0.02]}]], "Output", + CellChangeTimes->{3.6112721409161873`*^9}] +}, Open ]], + +Cell[CellGroupData[{ + +Cell[BoxData[ + RowBox[{"Manipulate", "[", + RowBox[{ + RowBox[{"Plot", "[", + RowBox[{ + RowBox[{"Derivative", "[", + RowBox[{"Power", "[", + RowBox[{"x", ",", " ", "3"}], "]"}], "]"}], ",", " ", + RowBox[{"{", + RowBox[{"x", ",", " ", "0", ",", " ", "10"}], "}"}]}], "]"}], ",", " ", + RowBox[{"{", + RowBox[{"x", ",", " ", "0", ",", " ", "100"}], "}"}]}], "]"}]], "Input", + CellChangeTimes->{{3.611272144379386*^9, 3.61127220827404*^9}}], + +Cell[BoxData[ + TagBox[ + StyleBox[ + DynamicModuleBox[{$CellContext`x$$ = 74.60000000000001, Typeset`show$$ = + True, Typeset`bookmarkList$$ = {}, Typeset`bookmarkMode$$ = "Menu", + Typeset`animator$$, Typeset`animvar$$ = 1, Typeset`name$$ = + "\"untitled\"", Typeset`specs$$ = {{ + Hold[$CellContext`x$$], 0, 100}}, Typeset`size$$ = {360., {106., 110.}}, + Typeset`update$$ = 0, Typeset`initDone$$, Typeset`skipInitDone$$ = + True, $CellContext`x$5214$$ = 0}, + DynamicBox[Manipulate`ManipulateBoxes[ + 1, StandardForm, "Variables" :> {$CellContext`x$$ = 0}, + "ControllerVariables" :> { + Hold[$CellContext`x$$, $CellContext`x$5214$$, 0]}, + "OtherVariables" :> { + Typeset`show$$, Typeset`bookmarkList$$, Typeset`bookmarkMode$$, + Typeset`animator$$, Typeset`animvar$$, Typeset`name$$, + Typeset`specs$$, Typeset`size$$, Typeset`update$$, Typeset`initDone$$, + Typeset`skipInitDone$$}, "Body" :> Plot[ + Derivative[$CellContext`x$$^3], {$CellContext`x$$, 0, 10}], + "Specifications" :> {{$CellContext`x$$, 0, 100}}, "Options" :> {}, + "DefaultOptions" :> {}], + ImageSizeCache->{411., {152., 157.}}, + SingleEvaluation->True], + Deinitialization:>None, + DynamicModuleValues:>{}, + SynchronousInitialization->True, + UnsavedVariables:>{Typeset`initDone$$}, + UntrackedVariables:>{Typeset`size$$}], "Manipulate", + Deployed->True, + StripOnInput->False], + Manipulate`InterpretManipulate[1]]], "Output", + CellChangeTimes->{3.611272211487224*^9}] +}, Open ]] +}, +WindowSize->{716, 833}, +WindowMargins->{{Automatic, 275}, {Automatic, 64}}, +FrontEndVersion->"9.0 for Microsoft Windows (64-bit) (January 25, 2013)", +StyleDefinitions->"Default.nb" +] +(* End of Notebook Content *) + +(* Internal cache information *) +(*CellTagsOutline +CellTagsIndex->{} +*) +(*CellTagsIndex +CellTagsIndex->{} +*) +(*NotebookFileOutline +Notebook[{ +Cell[CellGroupData[{ +Cell[579, 22, 138, 3, 41, "WolframAlphaLong"], +Cell[720, 27, 194311, 3452, 971, "Print"] +}, Open ]], +Cell[CellGroupData[{ +Cell[195068, 3484, 441, 11, 31, "Input"], +Cell[195512, 3497, 292, 10, 306, "Output"] +}, Open ]], +Cell[CellGroupData[{ +Cell[195841, 3512, 404, 11, 55, "Input"], +Cell[196248, 3525, 292, 10, 306, "Output"] +}, Open ]], +Cell[CellGroupData[{ +Cell[196577, 3540, 708, 18, 76, "Input"], +Cell[197288, 3560, 292, 10, 306, "Output"] +}, Open ]], +Cell[CellGroupData[{ +Cell[197617, 3575, 472, 12, 31, "Input"], +Cell[198092, 3589, 1549, 32, 358, "Output"] +}, Open ]] +} +] +*) + +(* End of internal cache information *) + From 3d23d1be696cf737930aa0f778d6734783a48c3d Mon Sep 17 00:00:00 2001 From: Viacheslav Kroilov Date: Tue, 10 Jun 2014 21:25:27 +0400 Subject: [PATCH 011/268] Added .inc extension in Assembly group. It`s include file for assembler source that helps to structure code. Usually contains normal assembly source. --- lib/linguist/languages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 233fa3e1..82ed98ea 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -157,6 +157,7 @@ Assembly: - nasm extensions: - .asm + - .inc Augeas: type: programming From 878fe95ec38f08e4b253b5194f015df791a97a6c Mon Sep 17 00:00:00 2001 From: Andy Lindeman Date: Tue, 10 Jun 2014 15:54:48 -0400 Subject: [PATCH 012/268] Upgrades to pygments.rb 0.6.0 --- github-linguist.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github-linguist.gemspec b/github-linguist.gemspec index c17525f4..d4c2337a 100644 --- a/github-linguist.gemspec +++ b/github-linguist.gemspec @@ -16,7 +16,7 @@ Gem::Specification.new do |s| s.add_dependency 'charlock_holmes', '~> 0.7.3' s.add_dependency 'escape_utils', '~> 1.0.1' s.add_dependency 'mime-types', '~> 1.19' - s.add_dependency 'pygments.rb', '~> 0.5.4' + s.add_dependency 'pygments.rb', '~> 0.6.0' s.add_development_dependency 'json' s.add_development_dependency 'mocha' From 3ad4eb2b59def80cf443b350d19f3d6a15b2a53f Mon Sep 17 00:00:00 2001 From: Andy Lindeman Date: Mon, 9 Jun 2014 11:28:26 -0400 Subject: [PATCH 013/268] Adds supports for Slim --- lib/linguist/languages.yml | 7 ++++ lib/linguist/samples.json | 75 ++++++++++++++++++++++++++++++++++++-- samples/Slim/sample.slim | 31 ++++++++++++++++ 3 files changed, 110 insertions(+), 3 deletions(-) create mode 100644 samples/Slim/sample.slim diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 233fa3e1..42112de1 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -2002,6 +2002,13 @@ Slash: extensions: - .sl +Slim: + group: HTML + type: markup + color: "#ff8877" + extensions: + - .slim + Smalltalk: type: programming color: "#596706" diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index 91c30ab5..1f3db02c 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -549,6 +549,9 @@ "Slash": [ ".sl" ], + "Slim": [ + ".slim" + ], "Smalltalk": [ ".st" ], @@ -740,8 +743,8 @@ ".gemrc" ] }, - "tokens_total": 614357, - "languages_total": 811, + "tokens_total": 614434, + "languages_total": 812, "tokens": { "ABAP": { "*/**": 1, @@ -60170,6 +60173,70 @@ "ast.eval": 1, "Env.new": 1 }, + "Slim": { + "doctype": 1, + "html": 2, + "head": 1, + "title": 1, + "Slim": 2, + "Examples": 1, + "meta": 2, + "name": 2, + "content": 2, + "author": 2, + "javascript": 1, + "alert": 1, + "(": 1, + ")": 1, + "body": 1, + "h1": 1, + "Markup": 1, + "examples": 1, + "#content": 1, + "p": 2, + "This": 1, + "example": 1, + "shows": 1, + "you": 2, + "how": 1, + "a": 1, + "basic": 1, + "file": 1, + "looks": 1, + "like.": 1, + "yield": 1, + "-": 3, + "unless": 1, + "items.empty": 1, + "table": 1, + "for": 1, + "item": 1, + "in": 1, + "items": 2, + "do": 1, + "tr": 1, + "td.name": 1, + "item.name": 1, + "td.price": 1, + "item.price": 1, + "else": 1, + "|": 2, + "No": 1, + "found.": 1, + "Please": 1, + "add": 1, + "some": 1, + "inventory.": 1, + "Thank": 1, + "div": 1, + "id": 1, + "render": 1, + "Copyright": 1, + "#": 2, + "{": 2, + "year": 1, + "}": 2 + }, "Smalltalk": { "Object": 1, "subclass": 2, @@ -67089,6 +67156,7 @@ "ShellSession": 233, "Shen": 3472, "Slash": 187, + "Slim": 77, "Smalltalk": 423, "SourcePawn": 2080, "SQL": 1485, @@ -67279,6 +67347,7 @@ "ShellSession": 3, "Shen": 3, "Slash": 1, + "Slim": 1, "Smalltalk": 3, "SourcePawn": 1, "SQL": 5, @@ -67314,5 +67383,5 @@ "Zephir": 2, "Zimpl": 1 }, - "md5": "92c117f774abe712958bb369c4e1dde9" + "md5": "3e0901633ee5729c6dac371442522f33" } \ No newline at end of file diff --git a/samples/Slim/sample.slim b/samples/Slim/sample.slim new file mode 100644 index 00000000..9480a9ff --- /dev/null +++ b/samples/Slim/sample.slim @@ -0,0 +1,31 @@ +doctype html +html + head + title Slim Examples + meta name="keywords" content="template language" + meta name="author" content=author + javascript: + alert('Slim supports embedded javascript!') + + body + h1 Markup examples + + #content + p This example shows you how a basic Slim file looks like. + + == yield + + - unless items.empty? + table + - for item in items do + tr + td.name = item.name + td.price = item.price + - else + p + | No items found. Please add some inventory. + Thank you! + + div id="footer" + = render 'footer' + | Copyright © #{year} #{author} From 85479cc2dedcce28a2ad1f181ede499c31686db0 Mon Sep 17 00:00:00 2001 From: Andy Lindeman Date: Mon, 9 Jun 2014 11:30:01 -0400 Subject: [PATCH 014/268] Swift has a lexer now --- lib/linguist/languages.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 42112de1..504a9cd5 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -2072,7 +2072,6 @@ SuperCollider: Swift: type: programming color: "#ffac45" - lexer: Text only extensions: - .swift From 09b9a8b4410009d1ef2ca4f3a4737ea05de428ea Mon Sep 17 00:00:00 2001 From: Brian Lopez Date: Tue, 10 Jun 2014 16:00:08 -0500 Subject: [PATCH 015/268] bump version for 2.11.5 release --- lib/linguist/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/version.rb b/lib/linguist/version.rb index b681d0e0..fba87ba8 100644 --- a/lib/linguist/version.rb +++ b/lib/linguist/version.rb @@ -1,3 +1,3 @@ module Linguist - VERSION = "2.11.4" + VERSION = "2.11.5" end From 607185ac6111378a93d74c6815944779ef54137f Mon Sep 17 00:00:00 2001 From: Andy Lindeman Date: Wed, 11 Jun 2014 13:56:40 -0400 Subject: [PATCH 016/268] Be explicit about lexer --- lib/linguist/languages.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 504a9cd5..d9c3f4f2 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -2005,6 +2005,7 @@ Slash: Slim: group: HTML type: markup + lexer: Slim color: "#ff8877" extensions: - .slim @@ -2071,6 +2072,7 @@ SuperCollider: Swift: type: programming + lexer: Swift color: "#ffac45" extensions: - .swift From a707587182642159d37ac4752ed1abeae2ba3888 Mon Sep 17 00:00:00 2001 From: Andy Lindeman Date: Wed, 11 Jun 2014 14:00:46 -0400 Subject: [PATCH 017/268] Bumps to 2.12.0 --- lib/linguist/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/version.rb b/lib/linguist/version.rb index fba87ba8..6704b3fb 100644 --- a/lib/linguist/version.rb +++ b/lib/linguist/version.rb @@ -1,3 +1,3 @@ module Linguist - VERSION = "2.11.5" + VERSION = "2.12.0" end From 382870a881f79863221a6f1a7be22b18f5d0a641 Mon Sep 17 00:00:00 2001 From: Kepler Sticka-Jones Date: Thu, 12 Jun 2014 13:11:56 -0600 Subject: [PATCH 018/268] Add Mavenfile and Jarfile as Ruby files. --- lib/linguist/languages.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index d9c3f4f2..cedd1813 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1868,6 +1868,8 @@ Ruby: - Gemfile - Gemfile.lock - Guardfile + - Jarfile + - Mavenfile - Podfile - Thorfile - Vagrantfile From 138c1e6024a8e95d5d65fbaabdaa2ab260afceff Mon Sep 17 00:00:00 2001 From: metopa Date: Sat, 14 Jun 2014 19:21:02 +0400 Subject: [PATCH 019/268] Added examples for Assembly From FASM source under BSD --- samples/Assembly/ASSEMBLE.INC | 2048 ++++++++++ samples/Assembly/FASM.ASM | 350 ++ samples/Assembly/SYSTEM.INC | 503 +++ samples/Assembly/X86_64.INC | 7060 +++++++++++++++++++++++++++++++++ 4 files changed, 9961 insertions(+) create mode 100644 samples/Assembly/ASSEMBLE.INC create mode 100644 samples/Assembly/FASM.ASM create mode 100644 samples/Assembly/SYSTEM.INC create mode 100644 samples/Assembly/X86_64.INC diff --git a/samples/Assembly/ASSEMBLE.INC b/samples/Assembly/ASSEMBLE.INC new file mode 100644 index 00000000..c4ffdae3 --- /dev/null +++ b/samples/Assembly/ASSEMBLE.INC @@ -0,0 +1,2048 @@ + +; flat assembler core +; Copyright (c) 1999-2014, Tomasz Grysztar. +; All rights reserved. + +assembler: + xor eax,eax + mov [stub_size],eax + mov [current_pass],ax + mov [resolver_flags],eax + mov [number_of_sections],eax + mov [actual_fixups_size],eax + assembler_loop: + mov eax,[labels_list] + mov [tagged_blocks],eax + mov eax,[additional_memory] + mov [free_additional_memory],eax + mov eax,[additional_memory_end] + mov [structures_buffer],eax + mov esi,[source_start] + mov edi,[code_start] + xor eax,eax + mov dword [adjustment],eax + mov dword [adjustment+4],eax + mov [addressing_space],eax + mov [error_line],eax + mov [counter],eax + mov [format_flags],eax + mov [number_of_relocations],eax + mov [undefined_data_end],eax + mov [file_extension],eax + mov [next_pass_needed],al + mov [output_format],al + mov [adjustment_sign],al + mov [code_type],16 + call init_addressing_space + pass_loop: + call assemble_line + jnc pass_loop + mov eax,[additional_memory_end] + cmp eax,[structures_buffer] + je pass_done + sub eax,18h + mov eax,[eax+4] + mov [current_line],eax + jmp missing_end_directive + pass_done: + call close_pass + mov eax,[labels_list] + check_symbols: + cmp eax,[memory_end] + jae symbols_checked + test byte [eax+8],8 + jz symbol_defined_ok + mov cx,[current_pass] + cmp cx,[eax+18] + jne symbol_defined_ok + test byte [eax+8],1 + jz symbol_defined_ok + sub cx,[eax+16] + cmp cx,1 + jne symbol_defined_ok + and byte [eax+8],not 1 + or [next_pass_needed],-1 + symbol_defined_ok: + test byte [eax+8],10h + jz use_prediction_ok + mov cx,[current_pass] + and byte [eax+8],not 10h + test byte [eax+8],20h + jnz check_use_prediction + cmp cx,[eax+18] + jne use_prediction_ok + test byte [eax+8],8 + jz use_prediction_ok + jmp use_misprediction + check_use_prediction: + test byte [eax+8],8 + jz use_misprediction + cmp cx,[eax+18] + je use_prediction_ok + use_misprediction: + or [next_pass_needed],-1 + use_prediction_ok: + test byte [eax+8],40h + jz check_next_symbol + and byte [eax+8],not 40h + test byte [eax+8],4 + jnz define_misprediction + mov cx,[current_pass] + test byte [eax+8],80h + jnz check_define_prediction + cmp cx,[eax+16] + jne check_next_symbol + test byte [eax+8],1 + jz check_next_symbol + jmp define_misprediction + check_define_prediction: + test byte [eax+8],1 + jz define_misprediction + cmp cx,[eax+16] + je check_next_symbol + define_misprediction: + or [next_pass_needed],-1 + check_next_symbol: + add eax,LABEL_STRUCTURE_SIZE + jmp check_symbols + symbols_checked: + cmp [next_pass_needed],0 + jne next_pass + mov eax,[error_line] + or eax,eax + jz assemble_ok + mov [current_line],eax + cmp [error],undefined_symbol + jne error_confirmed + mov eax,[error_info] + or eax,eax + jz error_confirmed + test byte [eax+8],1 + jnz next_pass + error_confirmed: + call error_handler + error_handler: + mov eax,[error] + sub eax,error_handler + add [esp],eax + ret + next_pass: + inc [current_pass] + mov ax,[current_pass] + cmp ax,[passes_limit] + je code_cannot_be_generated + jmp assembler_loop + assemble_ok: + ret + +create_addressing_space: + mov ebx,[addressing_space] + test ebx,ebx + jz init_addressing_space + test byte [ebx+0Ah],1 + jnz illegal_instruction + mov eax,edi + sub eax,[ebx+18h] + mov [ebx+1Ch],eax + init_addressing_space: + mov ebx,[tagged_blocks] + mov dword [ebx-4],10h + mov dword [ebx-8],20h + sub ebx,8+20h + cmp ebx,edi + jbe out_of_memory + mov [tagged_blocks],ebx + mov [addressing_space],ebx + xor eax,eax + mov [ebx],edi + mov [ebx+4],eax + mov [ebx+8],eax + mov [ebx+10h],eax + mov [ebx+14h],eax + mov [ebx+18h],edi + mov [ebx+1Ch],eax + ret + +assemble_line: + mov eax,[tagged_blocks] + sub eax,100h + cmp edi,eax + ja out_of_memory + lods byte [esi] + cmp al,1 + je assemble_instruction + jb source_end + cmp al,3 + jb define_label + je define_constant + cmp al,4 + je label_addressing_space + cmp al,0Fh + je new_line + cmp al,13h + je code_type_setting + cmp al,10h + jne illegal_instruction + lods byte [esi] + jmp segment_prefix + code_type_setting: + lods byte [esi] + mov [code_type],al + jmp instruction_assembled + new_line: + lods dword [esi] + mov [current_line],eax + mov [prefixed_instruction],0 + cmp [symbols_file],0 + je continue_line + cmp [next_pass_needed],0 + jne continue_line + mov ebx,[tagged_blocks] + mov dword [ebx-4],1 + mov dword [ebx-8],14h + sub ebx,8+14h + cmp ebx,edi + jbe out_of_memory + mov [tagged_blocks],ebx + mov [ebx],eax + mov [ebx+4],edi + mov eax,[addressing_space] + mov [ebx+8],eax + mov al,[code_type] + mov [ebx+10h],al + continue_line: + cmp byte [esi],0Fh + je line_assembled + jmp assemble_line + define_label: + lods dword [esi] + cmp eax,0Fh + jb invalid_use_of_symbol + je reserved_word_used_as_symbol + mov ebx,eax + lods byte [esi] + mov [label_size],al + call make_label + jmp continue_line + make_label: + mov eax,edi + xor edx,edx + xor cl,cl + mov ebp,[addressing_space] + sub eax,[ds:ebp] + sbb edx,[ds:ebp+4] + sbb cl,[ds:ebp+8] + jp label_value_ok + call recoverable_overflow + label_value_ok: + mov [address_sign],cl + test byte [ds:ebp+0Ah],1 + jnz make_virtual_label + or byte [ebx+9],1 + xchg eax,[ebx] + xchg edx,[ebx+4] + mov ch,[ebx+9] + shr ch,1 + and ch,1 + neg ch + sub eax,[ebx] + sbb edx,[ebx+4] + sbb ch,cl + mov dword [adjustment],eax + mov dword [adjustment+4],edx + mov [adjustment_sign],ch + or al,ch + or eax,edx + setnz ah + jmp finish_label + make_virtual_label: + and byte [ebx+9],not 1 + cmp eax,[ebx] + mov [ebx],eax + setne ah + cmp edx,[ebx+4] + mov [ebx+4],edx + setne al + or ah,al + finish_label: + mov ebp,[addressing_space] + mov ch,[ds:ebp+9] + mov cl,[label_size] + mov edx,[ds:ebp+14h] + mov ebp,[ds:ebp+10h] + finish_label_symbol: + mov al,[address_sign] + xor al,[ebx+9] + and al,10b + or ah,al + xor [ebx+9],al + cmp cl,[ebx+10] + mov [ebx+10],cl + setne al + or ah,al + cmp ch,[ebx+11] + mov [ebx+11],ch + setne al + or ah,al + cmp ebp,[ebx+12] + mov [ebx+12],ebp + setne al + or ah,al + or ch,ch + jz label_symbol_ok + cmp edx,[ebx+20] + mov [ebx+20],edx + setne al + or ah,al + label_symbol_ok: + mov cx,[current_pass] + xchg [ebx+16],cx + mov edx,[current_line] + mov [ebx+28],edx + and byte [ebx+8],not 2 + test byte [ebx+8],1 + jz new_label + cmp cx,[ebx+16] + je symbol_already_defined + btr dword [ebx+8],10 + jc requalified_label + inc cx + sub cx,[ebx+16] + setnz al + or ah,al + jz label_made + test byte [ebx+8],8 + jz label_made + mov cx,[current_pass] + cmp cx,[ebx+18] + jne label_made + requalified_label: + or [next_pass_needed],-1 + label_made: + ret + new_label: + or byte [ebx+8],1 + ret + define_constant: + lods dword [esi] + inc esi + cmp eax,0Fh + jb invalid_use_of_symbol + je reserved_word_used_as_symbol + mov edx,[eax+8] + push edx + cmp [current_pass],0 + je get_constant_value + test dl,4 + jnz get_constant_value + mov cx,[current_pass] + cmp cx,[eax+16] + je get_constant_value + or dl,4 + mov [eax+8],dl + get_constant_value: + push eax + mov al,byte [esi-1] + push eax + or [size_override],-1 + call get_value + pop ebx + mov ch,bl + pop ebx + pop ecx + test cl,4 + jnz constant_referencing_mode_ok + and byte [ebx+8],not 4 + constant_referencing_mode_ok: + xor cl,cl + mov ch,[value_type] + cmp ch,3 + je invalid_use_of_symbol + make_constant: + and byte [ebx+9],not 1 + cmp eax,[ebx] + mov [ebx],eax + setne ah + cmp edx,[ebx+4] + mov [ebx+4],edx + setne al + or ah,al + mov al,[value_sign] + xor al,[ebx+9] + and al,10b + or ah,al + xor [ebx+9],al + cmp cl,[ebx+10] + mov [ebx+10],cl + setne al + or ah,al + cmp ch,[ebx+11] + mov [ebx+11],ch + setne al + or ah,al + xor edx,edx + cmp edx,[ebx+12] + mov [ebx+12],edx + setne al + or ah,al + or ch,ch + jz constant_symbol_ok + mov edx,[symbol_identifier] + cmp edx,[ebx+20] + mov [ebx+20],edx + setne al + or ah,al + constant_symbol_ok: + mov cx,[current_pass] + xchg [ebx+16],cx + mov edx,[current_line] + mov [ebx+28],edx + test byte [ebx+8],1 + jz new_constant + cmp cx,[ebx+16] + jne redeclare_constant + test byte [ebx+8],2 + jz symbol_already_defined + or byte [ebx+8],4 + and byte [ebx+9],not 4 + jmp instruction_assembled + redeclare_constant: + btr dword [ebx+8],10 + jc requalified_constant + inc cx + sub cx,[ebx+16] + setnz al + or ah,al + jz instruction_assembled + test byte [ebx+8],4 + jnz instruction_assembled + test byte [ebx+8],8 + jz instruction_assembled + mov cx,[current_pass] + cmp cx,[ebx+18] + jne instruction_assembled + requalified_constant: + or [next_pass_needed],-1 + jmp instruction_assembled + new_constant: + or byte [ebx+8],1+2 + jmp instruction_assembled + label_addressing_space: + lods dword [esi] + cmp eax,0Fh + jb invalid_use_of_symbol + je reserved_word_used_as_symbol + mov cx,[current_pass] + test byte [eax+8],1 + jz make_addressing_space_label + cmp cx,[eax+16] + je symbol_already_defined + test byte [eax+9],4 + jnz make_addressing_space_label + or [next_pass_needed],-1 + make_addressing_space_label: + mov dx,[eax+8] + and dx,not (2 or 100h) + or dx,1 or 4 or 400h + mov [eax+8],dx + mov [eax+16],cx + mov edx,[current_line] + mov [eax+28],edx + mov ebx,[addressing_space] + mov [eax],ebx + or byte [ebx+0Ah],2 + jmp continue_line + assemble_instruction: +; mov [operand_size],0 +; mov [size_override],0 +; mov [operand_prefix],0 +; mov [opcode_prefix],0 + and dword [operand_size],0 +; mov [rex_prefix],0 +; mov [vex_required],0 +; mov [vex_register],0 +; mov [immediate_size],0 + and dword [rex_prefix],0 + call instruction_handler + instruction_handler: + movzx ebx,word [esi] + mov al,[esi+2] + add esi,3 + add [esp],ebx + ret + instruction_assembled: + mov al,[esi] + cmp al,0Fh + je line_assembled + or al,al + jnz extra_characters_on_line + line_assembled: + clc + ret + source_end: + dec esi + stc + ret + +org_directive: + lods byte [esi] + cmp al,'(' + jne invalid_argument + cmp byte [esi],'.' + je invalid_value + call get_qword_value + mov cl,[value_type] + test cl,1 + jnz invalid_use_of_symbol + push eax + mov ebx,[addressing_space] + mov eax,edi + sub eax,[ebx+18h] + mov [ebx+1Ch],eax + test byte [ebx+0Ah],1 + jnz in_virtual + call init_addressing_space + jmp org_space_ok + in_virtual: + call close_virtual_addressing_space + call init_addressing_space + or byte [ebx+0Ah],1 + org_space_ok: + pop eax + mov [ebx+9],cl + mov cl,[value_sign] + sub [ebx],eax + sbb [ebx+4],edx + sbb byte [ebx+8],cl + jp org_value_ok + call recoverable_overflow + org_value_ok: + mov edx,[symbol_identifier] + mov [ebx+14h],edx + cmp [output_format],1 + ja instruction_assembled + cmp edi,[code_start] + jne instruction_assembled + cmp eax,100h + jne instruction_assembled + bts [format_flags],0 + jmp instruction_assembled +label_directive: + lods byte [esi] + cmp al,2 + jne invalid_argument + lods dword [esi] + cmp eax,0Fh + jb invalid_use_of_symbol + je reserved_word_used_as_symbol + inc esi + mov ebx,eax + mov [label_size],0 + lods byte [esi] + cmp al,':' + je get_label_size + dec esi + cmp al,11h + jne label_size_ok + get_label_size: + lods word [esi] + cmp al,11h + jne invalid_argument + mov [label_size],ah + label_size_ok: + cmp byte [esi],80h + je get_free_label_value + call make_label + jmp instruction_assembled + get_free_label_value: + inc esi + lods byte [esi] + cmp al,'(' + jne invalid_argument + push ebx ecx + or byte [ebx+8],4 + cmp byte [esi],'.' + je invalid_value + call get_address_value + or bh,bh + setnz ch + xchg ch,cl + mov bp,cx + shl ebp,16 + xchg bl,bh + mov bp,bx + pop ecx ebx + and byte [ebx+8],not 4 + mov ch,[value_type] + test ch,1 + jnz invalid_use_of_symbol + make_free_label: + and byte [ebx+9],not 1 + cmp eax,[ebx] + mov [ebx],eax + setne ah + cmp edx,[ebx+4] + mov [ebx+4],edx + setne al + or ah,al + mov edx,[address_symbol] + mov cl,[label_size] + call finish_label_symbol + jmp instruction_assembled +load_directive: + lods byte [esi] + cmp al,2 + jne invalid_argument + lods dword [esi] + cmp eax,0Fh + jb invalid_use_of_symbol + je reserved_word_used_as_symbol + inc esi + push eax + mov al,1 + cmp byte [esi],11h + jne load_size_ok + lods byte [esi] + lods byte [esi] + load_size_ok: + cmp al,8 + ja invalid_value + mov [operand_size],al + and dword [value],0 + and dword [value+4],0 + lods byte [esi] + cmp al,82h + jne invalid_argument + call get_data_point + jc value_loaded + push esi edi + mov esi,ebx + mov edi,value + rep movs byte [edi],[esi] + pop edi esi + value_loaded: + mov [value_sign],0 + mov eax,dword [value] + mov edx,dword [value+4] + pop ebx + xor cx,cx + jmp make_constant + get_data_point: + mov ebx,[addressing_space] + mov ecx,edi + sub ecx,[ebx+18h] + mov [ebx+1Ch],ecx + lods byte [esi] + cmp al,'(' + jne invalid_argument + cmp byte [esi],11h + jne get_data_address + cmp word [esi+1+4],'):' + jne get_data_address + inc esi + lods dword [esi] + add esi,2 + cmp byte [esi],'(' + jne invalid_argument + inc esi + cmp eax,0Fh + jbe reserved_word_used_as_symbol + mov edx,undefined_symbol + test byte [eax+8],1 + jz addressing_space_unavailable + mov edx,symbol_out_of_scope + mov cx,[eax+16] + cmp cx,[current_pass] + jne addressing_space_unavailable + test byte [eax+9],4 + jz invalid_use_of_symbol + mov ebx,eax + mov ax,[current_pass] + mov [ebx+18],ax + or byte [ebx+8],8 + cmp [symbols_file],0 + je get_addressing_space + cmp [next_pass_needed],0 + jne get_addressing_space + call store_label_reference + get_addressing_space: + mov ebx,[ebx] + get_data_address: + push ebx + cmp byte [esi],'.' + je invalid_value + or [size_override],-1 + call get_address_value + pop ebp + call calculate_relative_offset + cmp [next_pass_needed],0 + jne data_address_type_ok + cmp [value_type],0 + jne invalid_use_of_symbol + data_address_type_ok: + mov ebx,edi + xor ecx,ecx + add ebx,eax + adc edx,ecx + mov eax,ebx + sub eax,[ds:ebp+18h] + sbb edx,ecx + jnz bad_data_address + mov cl,[operand_size] + add eax,ecx + cmp eax,[ds:ebp+1Ch] + ja bad_data_address + clc + ret + addressing_space_unavailable: + cmp [error_line],0 + jne get_data_address + push [current_line] + pop [error_line] + mov [error],edx + mov [error_info],eax + jmp get_data_address + bad_data_address: + call recoverable_overflow + stc + ret +store_directive: + cmp byte [esi],11h + je sized_store + lods byte [esi] + cmp al,'(' + jne invalid_argument + call get_byte_value + xor edx,edx + movzx eax,al + mov [operand_size],1 + jmp store_value_ok + sized_store: + or [size_override],-1 + call get_value + store_value_ok: + cmp [value_type],0 + jne invalid_use_of_symbol + mov dword [value],eax + mov dword [value+4],edx + lods byte [esi] + cmp al,80h + jne invalid_argument + call get_data_point + jc instruction_assembled + push esi edi + mov esi,value + mov edi,ebx + rep movs byte [edi],[esi] + mov eax,edi + pop edi esi + cmp ebx,[undefined_data_end] + jae instruction_assembled + cmp eax,[undefined_data_start] + jbe instruction_assembled + mov [undefined_data_start],eax + jmp instruction_assembled + +display_directive: + lods byte [esi] + cmp al,'(' + jne invalid_argument + cmp byte [esi],0 + jne display_byte + inc esi + lods dword [esi] + mov ecx,eax + push edi + mov edi,[tagged_blocks] + sub edi,8 + sub edi,eax + cmp edi,[esp] + jbe out_of_memory + mov [tagged_blocks],edi + rep movs byte [edi],[esi] + stos dword [edi] + xor eax,eax + stos dword [edi] + pop edi + inc esi + jmp display_next + display_byte: + call get_byte_value + push edi + mov edi,[tagged_blocks] + sub edi,8+1 + mov [tagged_blocks],edi + stos byte [edi] + mov eax,1 + stos dword [edi] + dec eax + stos dword [edi] + pop edi + display_next: + cmp edi,[tagged_blocks] + ja out_of_memory + lods byte [esi] + cmp al,',' + je display_directive + dec esi + jmp instruction_assembled +show_display_buffer: + mov eax,[tagged_blocks] + or eax,eax + jz display_done + mov esi,[labels_list] + cmp esi,eax + je display_done + display_messages: + sub esi,8 + mov eax,[esi+4] + mov ecx,[esi] + sub esi,ecx + test eax,eax + jnz skip_block + push esi + call display_block + pop esi + skip_block: + cmp esi,[tagged_blocks] + jne display_messages + display_done: + ret + +times_directive: + lods byte [esi] + cmp al,'(' + jne invalid_argument + cmp byte [esi],'.' + je invalid_value + call get_count_value + cmp eax,0 + je zero_times + cmp byte [esi],':' + jne times_argument_ok + inc esi + times_argument_ok: + push [counter] + push [counter_limit] + mov [counter_limit],eax + mov [counter],1 + times_loop: + mov eax,esp + sub eax,100h + jc stack_overflow + cmp eax,[stack_limit] + jb stack_overflow + push esi + or [prefixed_instruction],-1 + call continue_line + mov eax,[counter_limit] + cmp [counter],eax + je times_done + inc [counter] + pop esi + jmp times_loop + times_done: + pop eax + pop [counter_limit] + pop [counter] + jmp instruction_assembled + zero_times: + call skip_symbol + jnc zero_times + jmp instruction_assembled + +virtual_directive: + lods byte [esi] + cmp al,80h + jne virtual_at_current + lods byte [esi] + cmp al,'(' + jne invalid_argument + cmp byte [esi],'.' + je invalid_value + call get_address_value + mov ebp,[address_symbol] + or bh,bh + setnz ch + jmp set_virtual + virtual_at_current: + dec esi + mov ebp,[addressing_space] + mov al,[ds:ebp+9] + mov [value_type],al + mov eax,edi + xor edx,edx + xor cl,cl + sub eax,[ds:ebp] + sbb edx,[ds:ebp+4] + sbb cl,[ds:ebp+8] + mov [address_sign],cl + mov bx,[ds:ebp+10h] + mov cx,[ds:ebp+10h+2] + xchg bh,bl + xchg ch,cl + mov ebp,[ds:ebp+14h] + set_virtual: + xchg bl,bh + xchg cl,ch + shl ecx,16 + mov cx,bx + push ecx eax + call allocate_structure_data + mov word [ebx],virtual_directive-instruction_handler + mov ecx,[addressing_space] + mov [ebx+12],ecx + mov [ebx+8],edi + mov ecx,[current_line] + mov [ebx+4],ecx + mov ebx,[addressing_space] + mov eax,edi + sub eax,[ebx+18h] + mov [ebx+1Ch],eax + call init_addressing_space + or byte [ebx+0Ah],1 + pop eax + mov cl,[address_sign] + not eax + not edx + not cl + add eax,1 + adc edx,0 + adc cl,0 + add eax,edi + adc edx,0 + adc cl,0 + mov [ebx],eax + mov [ebx+4],edx + mov [ebx+8],cl + pop dword [ebx+10h] + mov [ebx+14h],ebp + mov al,[value_type] + test al,1 + jnz invalid_use_of_symbol + mov [ebx+9],al + jmp instruction_assembled + allocate_structure_data: + mov ebx,[structures_buffer] + sub ebx,18h + cmp ebx,[free_additional_memory] + jb out_of_memory + mov [structures_buffer],ebx + ret + find_structure_data: + mov ebx,[structures_buffer] + scan_structures: + cmp ebx,[additional_memory_end] + je no_such_structure + cmp ax,[ebx] + je structure_data_found + add ebx,18h + jmp scan_structures + structure_data_found: + ret + no_such_structure: + stc + ret + end_virtual: + call find_structure_data + jc unexpected_instruction + push ebx + call close_virtual_addressing_space + pop ebx + mov eax,[ebx+12] + mov [addressing_space],eax + mov edi,[ebx+8] + remove_structure_data: + push esi edi + mov ecx,ebx + sub ecx,[structures_buffer] + shr ecx,2 + lea esi,[ebx-4] + lea edi,[esi+18h] + std + rep movs dword [edi],[esi] + cld + add [structures_buffer],18h + pop edi esi + ret + close_virtual_addressing_space: + mov ebx,[addressing_space] + mov eax,edi + sub eax,[ebx+18h] + mov [ebx+1Ch],eax + test byte [ebx+0Ah],2 + jz addressing_space_closed + push esi edi ecx edx + mov ecx,eax + mov eax,[tagged_blocks] + mov dword [eax-4],11h + mov dword [eax-8],ecx + sub eax,8 + sub eax,ecx + mov [tagged_blocks],eax + lea edi,[eax+ecx-1] + xchg eax,[ebx+18h] + lea esi,[eax+ecx-1] + mov eax,edi + sub eax,esi + std + shr ecx,1 + jnc virtual_byte_ok + movs byte [edi],[esi] + virtual_byte_ok: + dec esi + dec edi + shr ecx,1 + jnc virtual_word_ok + movs word [edi],[esi] + virtual_word_ok: + sub esi,2 + sub edi,2 + rep movs dword [edi],[esi] + cld + xor edx,edx + add [ebx],eax + adc dword [ebx+4],edx + adc byte [ebx+8],dl + pop edx ecx edi esi + addressing_space_closed: + ret +repeat_directive: + cmp [prefixed_instruction],0 + jne unexpected_instruction + lods byte [esi] + cmp al,'(' + jne invalid_argument + cmp byte [esi],'.' + je invalid_value + call get_count_value + cmp eax,0 + je zero_repeat + call allocate_structure_data + mov word [ebx],repeat_directive-instruction_handler + xchg eax,[counter_limit] + mov [ebx+10h],eax + mov eax,1 + xchg eax,[counter] + mov [ebx+14h],eax + mov [ebx+8],esi + mov eax,[current_line] + mov [ebx+4],eax + jmp instruction_assembled + end_repeat: + cmp [prefixed_instruction],0 + jne unexpected_instruction + call find_structure_data + jc unexpected_instruction + mov eax,[counter_limit] + inc [counter] + cmp [counter],eax + jbe continue_repeating + stop_repeat: + mov eax,[ebx+10h] + mov [counter_limit],eax + mov eax,[ebx+14h] + mov [counter],eax + call remove_structure_data + jmp instruction_assembled + continue_repeating: + mov esi,[ebx+8] + jmp instruction_assembled + zero_repeat: + mov al,[esi] + or al,al + jz missing_end_directive + cmp al,0Fh + jne extra_characters_on_line + call find_end_repeat + jmp instruction_assembled + find_end_repeat: + call find_structure_end + cmp ax,repeat_directive-instruction_handler + jne unexpected_instruction + ret +while_directive: + cmp [prefixed_instruction],0 + jne unexpected_instruction + call allocate_structure_data + mov word [ebx],while_directive-instruction_handler + mov eax,1 + xchg eax,[counter] + mov [ebx+10h],eax + mov [ebx+8],esi + mov eax,[current_line] + mov [ebx+4],eax + do_while: + push ebx + call calculate_logical_expression + or al,al + jnz while_true + mov al,[esi] + or al,al + jz missing_end_directive + cmp al,0Fh + jne extra_characters_on_line + stop_while: + call find_end_while + pop ebx + mov eax,[ebx+10h] + mov [counter],eax + call remove_structure_data + jmp instruction_assembled + while_true: + pop ebx + jmp instruction_assembled + end_while: + cmp [prefixed_instruction],0 + jne unexpected_instruction + call find_structure_data + jc unexpected_instruction + mov eax,[ebx+4] + mov [current_line],eax + inc [counter] + jz too_many_repeats + mov esi,[ebx+8] + jmp do_while + find_end_while: + call find_structure_end + cmp ax,while_directive-instruction_handler + jne unexpected_instruction + ret +if_directive: + cmp [prefixed_instruction],0 + jne unexpected_instruction + call calculate_logical_expression + mov dl,al + mov al,[esi] + or al,al + jz missing_end_directive + cmp al,0Fh + jne extra_characters_on_line + or dl,dl + jnz if_true + call find_else + jc instruction_assembled + mov al,[esi] + cmp al,1 + jne else_true + cmp word [esi+1],if_directive-instruction_handler + jne else_true + add esi,4 + jmp if_directive + if_true: + xor al,al + make_if_structure: + call allocate_structure_data + mov word [ebx],if_directive-instruction_handler + mov byte [ebx+2],al + mov eax,[current_line] + mov [ebx+4],eax + jmp instruction_assembled + else_true: + or al,al + jz missing_end_directive + cmp al,0Fh + jne extra_characters_on_line + or al,-1 + jmp make_if_structure + else_directive: + cmp [prefixed_instruction],0 + jne unexpected_instruction + mov ax,if_directive-instruction_handler + call find_structure_data + jc unexpected_instruction + cmp byte [ebx+2],0 + jne unexpected_instruction + found_else: + mov al,[esi] + cmp al,1 + jne skip_else + cmp word [esi+1],if_directive-instruction_handler + jne skip_else + add esi,4 + call find_else + jnc found_else + call remove_structure_data + jmp instruction_assembled + skip_else: + or al,al + jz missing_end_directive + cmp al,0Fh + jne extra_characters_on_line + call find_end_if + call remove_structure_data + jmp instruction_assembled + end_if: + cmp [prefixed_instruction],0 + jne unexpected_instruction + call find_structure_data + jc unexpected_instruction + call remove_structure_data + jmp instruction_assembled + find_else: + call find_structure_end + cmp ax,else_directive-instruction_handler + je else_found + cmp ax,if_directive-instruction_handler + jne unexpected_instruction + stc + ret + else_found: + clc + ret + find_end_if: + call find_structure_end + cmp ax,if_directive-instruction_handler + jne unexpected_instruction + ret + find_structure_end: + push [error_line] + mov eax,[current_line] + mov [error_line],eax + find_end_directive: + call skip_symbol + jnc find_end_directive + lods byte [esi] + cmp al,0Fh + jne no_end_directive + lods dword [esi] + mov [current_line],eax + skip_labels: + cmp byte [esi],2 + jne labels_ok + add esi,6 + jmp skip_labels + labels_ok: + cmp byte [esi],1 + jne find_end_directive + mov ax,[esi+1] + cmp ax,prefix_instruction-instruction_handler + je find_end_directive + add esi,4 + cmp ax,repeat_directive-instruction_handler + je skip_repeat + cmp ax,while_directive-instruction_handler + je skip_while + cmp ax,if_directive-instruction_handler + je skip_if + cmp ax,else_directive-instruction_handler + je structure_end + cmp ax,end_directive-instruction_handler + jne find_end_directive + cmp byte [esi],1 + jne find_end_directive + mov ax,[esi+1] + add esi,4 + cmp ax,repeat_directive-instruction_handler + je structure_end + cmp ax,while_directive-instruction_handler + je structure_end + cmp ax,if_directive-instruction_handler + jne find_end_directive + structure_end: + pop [error_line] + ret + no_end_directive: + mov eax,[error_line] + mov [current_line],eax + jmp missing_end_directive + skip_repeat: + call find_end_repeat + jmp find_end_directive + skip_while: + call find_end_while + jmp find_end_directive + skip_if: + call skip_if_block + jmp find_end_directive + skip_if_block: + call find_else + jc if_block_skipped + cmp byte [esi],1 + jne skip_after_else + cmp word [esi+1],if_directive-instruction_handler + jne skip_after_else + add esi,4 + jmp skip_if_block + skip_after_else: + call find_end_if + if_block_skipped: + ret +end_directive: + lods byte [esi] + cmp al,1 + jne invalid_argument + lods word [esi] + inc esi + cmp ax,virtual_directive-instruction_handler + je end_virtual + cmp ax,repeat_directive-instruction_handler + je end_repeat + cmp ax,while_directive-instruction_handler + je end_while + cmp ax,if_directive-instruction_handler + je end_if + cmp ax,data_directive-instruction_handler + je end_data + jmp invalid_argument +break_directive: + mov ebx,[structures_buffer] + mov al,[esi] + or al,al + jz find_breakable_structure + cmp al,0Fh + jne extra_characters_on_line + find_breakable_structure: + cmp ebx,[additional_memory_end] + je unexpected_instruction + mov ax,[ebx] + cmp ax,repeat_directive-instruction_handler + je break_repeat + cmp ax,while_directive-instruction_handler + je break_while + cmp ax,if_directive-instruction_handler + je break_if + add ebx,18h + jmp find_breakable_structure + break_if: + push [current_line] + mov eax,[ebx+4] + mov [current_line],eax + call remove_structure_data + call skip_if_block + pop [current_line] + mov ebx,[structures_buffer] + jmp find_breakable_structure + break_repeat: + push ebx + call find_end_repeat + pop ebx + jmp stop_repeat + break_while: + push ebx + jmp stop_while + +data_bytes: + call define_data + lods byte [esi] + cmp al,'(' + je get_byte + cmp al,'?' + jne invalid_argument + mov eax,edi + mov byte [edi],0 + inc edi + jmp undefined_data + get_byte: + cmp byte [esi],0 + je get_string + call get_byte_value + stos byte [edi] + ret + get_string: + inc esi + lods dword [esi] + mov ecx,eax + lea eax,[edi+ecx] + cmp eax,[tagged_blocks] + ja out_of_memory + rep movs byte [edi],[esi] + inc esi + ret + undefined_data: + mov ebp,[addressing_space] + test byte [ds:ebp+0Ah],1 + jz mark_undefined_data + ret + mark_undefined_data: + cmp eax,[undefined_data_end] + je undefined_data_ok + mov [undefined_data_start],eax + undefined_data_ok: + mov [undefined_data_end],edi + ret + define_data: + cmp edi,[tagged_blocks] + jae out_of_memory + cmp byte [esi],'(' + jne simple_data_value + mov ebx,esi + inc esi + call skip_expression + xchg esi,ebx + cmp byte [ebx],81h + jne simple_data_value + inc esi + call get_count_value + inc esi + or eax,eax + jz duplicate_zero_times + cmp byte [esi],'{' + jne duplicate_single_data_value + inc esi + duplicate_data: + push eax esi + duplicated_values: + cmp edi,[tagged_blocks] + jae out_of_memory + call near dword [esp+8] + lods byte [esi] + cmp al,',' + je duplicated_values + cmp al,'}' + jne invalid_argument + pop ebx eax + dec eax + jz data_defined + mov esi,ebx + jmp duplicate_data + duplicate_single_data_value: + cmp edi,[tagged_blocks] + jae out_of_memory + push eax esi + call near dword [esp+8] + pop ebx eax + dec eax + jz data_defined + mov esi,ebx + jmp duplicate_single_data_value + duplicate_zero_times: + cmp byte [esi],'{' + jne skip_single_data_value + inc esi + skip_data_value: + call skip_symbol + jc invalid_argument + cmp byte [esi],'}' + jne skip_data_value + inc esi + jmp data_defined + skip_single_data_value: + call skip_symbol + jmp data_defined + simple_data_value: + cmp edi,[tagged_blocks] + jae out_of_memory + call near dword [esp] + data_defined: + lods byte [esi] + cmp al,',' + je define_data + dec esi + add esp,4 + jmp instruction_assembled +data_unicode: + or [base_code],-1 + jmp define_words +data_words: + mov [base_code],0 + define_words: + call define_data + lods byte [esi] + cmp al,'(' + je get_word + cmp al,'?' + jne invalid_argument + mov eax,edi + and word [edi],0 + scas word [edi] + jmp undefined_data + ret + get_word: + cmp [base_code],0 + je word_data_value + cmp byte [esi],0 + je word_string + word_data_value: + call get_word_value + call mark_relocation + stos word [edi] + ret + word_string: + inc esi + lods dword [esi] + mov ecx,eax + jecxz word_string_ok + lea eax,[edi+ecx*2] + cmp eax,[tagged_blocks] + ja out_of_memory + xor ah,ah + copy_word_string: + lods byte [esi] + stos word [edi] + loop copy_word_string + word_string_ok: + inc esi + ret +data_dwords: + call define_data + lods byte [esi] + cmp al,'(' + je get_dword + cmp al,'?' + jne invalid_argument + mov eax,edi + and dword [edi],0 + scas dword [edi] + jmp undefined_data + get_dword: + push esi + call get_dword_value + pop ebx + cmp byte [esi],':' + je complex_dword + call mark_relocation + stos dword [edi] + ret + complex_dword: + mov esi,ebx + cmp byte [esi],'.' + je invalid_value + call get_word_value + push eax + inc esi + lods byte [esi] + cmp al,'(' + jne invalid_operand + mov al,[value_type] + push eax + cmp byte [esi],'.' + je invalid_value + call get_word_value + call mark_relocation + stos word [edi] + pop eax + mov [value_type],al + pop eax + call mark_relocation + stos word [edi] + ret +data_pwords: + call define_data + lods byte [esi] + cmp al,'(' + je get_pword + cmp al,'?' + jne invalid_argument + mov eax,edi + and dword [edi],0 + scas dword [edi] + and word [edi],0 + scas word [edi] + jmp undefined_data + get_pword: + push esi + call get_pword_value + pop ebx + cmp byte [esi],':' + je complex_pword + call mark_relocation + stos dword [edi] + mov ax,dx + stos word [edi] + ret + complex_pword: + mov esi,ebx + cmp byte [esi],'.' + je invalid_value + call get_word_value + push eax + inc esi + lods byte [esi] + cmp al,'(' + jne invalid_operand + mov al,[value_type] + push eax + cmp byte [esi],'.' + je invalid_value + call get_dword_value + call mark_relocation + stos dword [edi] + pop eax + mov [value_type],al + pop eax + call mark_relocation + stos word [edi] + ret +data_qwords: + call define_data + lods byte [esi] + cmp al,'(' + je get_qword + cmp al,'?' + jne invalid_argument + mov eax,edi + and dword [edi],0 + scas dword [edi] + and dword [edi],0 + scas dword [edi] + jmp undefined_data + get_qword: + call get_qword_value + call mark_relocation + stos dword [edi] + mov eax,edx + stos dword [edi] + ret +data_twords: + call define_data + lods byte [esi] + cmp al,'(' + je get_tword + cmp al,'?' + jne invalid_argument + mov eax,edi + and dword [edi],0 + scas dword [edi] + and dword [edi],0 + scas dword [edi] + and word [edi],0 + scas word [edi] + jmp undefined_data + get_tword: + cmp byte [esi],'.' + jne complex_tword + inc esi + cmp word [esi+8],8000h + je fp_zero_tword + mov eax,[esi] + stos dword [edi] + mov eax,[esi+4] + stos dword [edi] + mov ax,[esi+8] + add ax,3FFFh + jo value_out_of_range + cmp ax,7FFFh + jge value_out_of_range + cmp ax,0 + jg tword_exp_ok + mov cx,ax + neg cx + inc cx + cmp cx,64 + jae value_out_of_range + cmp cx,32 + ja large_shift + mov eax,[esi] + mov edx,[esi+4] + mov ebx,edx + shr edx,cl + shrd eax,ebx,cl + jmp tword_mantissa_shift_done + large_shift: + sub cx,32 + xor edx,edx + mov eax,[esi+4] + shr eax,cl + tword_mantissa_shift_done: + jnc store_shifted_mantissa + add eax,1 + adc edx,0 + store_shifted_mantissa: + mov [edi-8],eax + mov [edi-4],edx + xor ax,ax + test edx,1 shl 31 + jz tword_exp_ok + inc ax + tword_exp_ok: + mov bl,[esi+11] + shl bx,15 + or ax,bx + stos word [edi] + add esi,13 + ret + fp_zero_tword: + xor eax,eax + stos dword [edi] + stos dword [edi] + mov al,[esi+11] + shl ax,15 + stos word [edi] + add esi,13 + ret + complex_tword: + call get_word_value + push eax + cmp byte [esi],':' + jne invalid_operand + inc esi + lods byte [esi] + cmp al,'(' + jne invalid_operand + mov al,[value_type] + push eax + cmp byte [esi],'.' + je invalid_value + call get_qword_value + call mark_relocation + stos dword [edi] + mov eax,edx + stos dword [edi] + pop eax + mov [value_type],al + pop eax + call mark_relocation + stos word [edi] + ret +data_file: + lods word [esi] + cmp ax,'(' + jne invalid_argument + add esi,4 + call open_binary_file + mov eax,[esi-4] + lea esi,[esi+eax+1] + mov al,2 + xor edx,edx + call lseek + push eax + xor edx,edx + cmp byte [esi],':' + jne position_ok + inc esi + cmp byte [esi],'(' + jne invalid_argument + inc esi + cmp byte [esi],'.' + je invalid_value + push ebx + call get_count_value + pop ebx + mov edx,eax + sub [esp],edx + jc value_out_of_range + position_ok: + cmp byte [esi],',' + jne size_ok + inc esi + cmp byte [esi],'(' + jne invalid_argument + inc esi + cmp byte [esi],'.' + je invalid_value + push ebx edx + call get_count_value + pop edx ebx + cmp eax,[esp] + ja value_out_of_range + mov [esp],eax + size_ok: + xor al,al + call lseek + pop ecx + mov edx,edi + add edi,ecx + jc out_of_memory + cmp edi,[tagged_blocks] + ja out_of_memory + call read + jc error_reading_file + call close + lods byte [esi] + cmp al,',' + je data_file + dec esi + jmp instruction_assembled + open_binary_file: + push esi + push edi + mov eax,[current_line] + find_current_source_path: + mov esi,[eax] + test byte [eax+7],80h + jz get_current_path + mov eax,[eax+8] + jmp find_current_source_path + get_current_path: + lodsb + stosb + or al,al + jnz get_current_path + cut_current_path: + cmp edi,[esp] + je current_path_ok + cmp byte [edi-1],'\' + je current_path_ok + cmp byte [edi-1],'/' + je current_path_ok + dec edi + jmp cut_current_path + current_path_ok: + mov esi,[esp+4] + call expand_path + pop edx + mov esi,edx + call open + jnc file_opened + mov edx,[include_paths] + search_in_include_paths: + push edx esi + mov edi,esi + mov esi,[esp+4] + call get_include_directory + mov [esp+4],esi + mov esi,[esp+8] + call expand_path + pop edx + mov esi,edx + call open + pop edx + jnc file_opened + cmp byte [edx],0 + jne search_in_include_paths + mov edi,esi + mov esi,[esp] + push edi + call expand_path + pop edx + mov esi,edx + call open + jc file_not_found + file_opened: + mov edi,esi + pop esi + ret +reserve_bytes: + lods byte [esi] + cmp al,'(' + jne invalid_argument + cmp byte [esi],'.' + je invalid_value + call get_count_value + mov ecx,eax + mov edx,ecx + add edx,edi + jc out_of_memory + cmp edx,[tagged_blocks] + ja out_of_memory + push edi + cmp [next_pass_needed],0 + je zero_bytes + add edi,ecx + jmp reserved_data + zero_bytes: + xor eax,eax + shr ecx,1 + jnc bytes_stosb_ok + stos byte [edi] + bytes_stosb_ok: + shr ecx,1 + jnc bytes_stosw_ok + stos word [edi] + bytes_stosw_ok: + rep stos dword [edi] + reserved_data: + pop eax + call undefined_data + jmp instruction_assembled +reserve_words: + lods byte [esi] + cmp al,'(' + jne invalid_argument + cmp byte [esi],'.' + je invalid_value + call get_count_value + mov ecx,eax + mov edx,ecx + shl edx,1 + jc out_of_memory + add edx,edi + jc out_of_memory + cmp edx,[tagged_blocks] + ja out_of_memory + push edi + cmp [next_pass_needed],0 + je zero_words + lea edi,[edi+ecx*2] + jmp reserved_data + zero_words: + xor eax,eax + shr ecx,1 + jnc words_stosw_ok + stos word [edi] + words_stosw_ok: + rep stos dword [edi] + jmp reserved_data +reserve_dwords: + lods byte [esi] + cmp al,'(' + jne invalid_argument + cmp byte [esi],'.' + je invalid_value + call get_count_value + mov ecx,eax + mov edx,ecx + shl edx,1 + jc out_of_memory + shl edx,1 + jc out_of_memory + add edx,edi + jc out_of_memory + cmp edx,[tagged_blocks] + ja out_of_memory + push edi + cmp [next_pass_needed],0 + je zero_dwords + lea edi,[edi+ecx*4] + jmp reserved_data + zero_dwords: + xor eax,eax + rep stos dword [edi] + jmp reserved_data +reserve_pwords: + lods byte [esi] + cmp al,'(' + jne invalid_argument + cmp byte [esi],'.' + je invalid_value + call get_count_value + mov ecx,eax + shl ecx,1 + jc out_of_memory + add ecx,eax + mov edx,ecx + shl edx,1 + jc out_of_memory + add edx,edi + jc out_of_memory + cmp edx,[tagged_blocks] + ja out_of_memory + push edi + cmp [next_pass_needed],0 + je zero_words + lea edi,[edi+ecx*2] + jmp reserved_data +reserve_qwords: + lods byte [esi] + cmp al,'(' + jne invalid_argument + cmp byte [esi],'.' + je invalid_value + call get_count_value + mov ecx,eax + shl ecx,1 + jc out_of_memory + mov edx,ecx + shl edx,1 + jc out_of_memory + shl edx,1 + jc out_of_memory + add edx,edi + jc out_of_memory + cmp edx,[tagged_blocks] + ja out_of_memory + push edi + cmp [next_pass_needed],0 + je zero_dwords + lea edi,[edi+ecx*4] + jmp reserved_data +reserve_twords: + lods byte [esi] + cmp al,'(' + jne invalid_argument + cmp byte [esi],'.' + je invalid_value + call get_count_value + mov ecx,eax + shl ecx,2 + jc out_of_memory + add ecx,eax + mov edx,ecx + shl edx,1 + jc out_of_memory + add edx,edi + jc out_of_memory + cmp edx,[tagged_blocks] + ja out_of_memory + push edi + cmp [next_pass_needed],0 + je zero_words + lea edi,[edi+ecx*2] + jmp reserved_data +align_directive: + lods byte [esi] + cmp al,'(' + jne invalid_argument + cmp byte [esi],'.' + je invalid_value + call get_count_value + mov edx,eax + dec edx + test eax,edx + jnz invalid_align_value + or eax,eax + jz invalid_align_value + cmp eax,1 + je instruction_assembled + mov ecx,edi + mov ebp,[addressing_space] + sub ecx,[ds:ebp] + cmp dword [ds:ebp+10h],0 + jne section_not_aligned_enough + cmp byte [ds:ebp+9],0 + je make_alignment + cmp [output_format],3 + je pe_alignment + mov ebx,[ds:ebp+14h] + cmp byte [ebx],0 + jne section_not_aligned_enough + cmp eax,[ebx+10h] + jbe make_alignment + jmp section_not_aligned_enough + pe_alignment: + cmp eax,1000h + ja section_not_aligned_enough + make_alignment: + dec eax + and ecx,eax + jz instruction_assembled + neg ecx + add ecx,eax + inc ecx + mov edx,ecx + add edx,edi + jc out_of_memory + cmp edx,[tagged_blocks] + ja out_of_memory + push edi + cmp [next_pass_needed],0 + je nops + add edi,ecx + jmp reserved_data + invalid_align_value: + cmp [error_line],0 + jne instruction_assembled + mov eax,[current_line] + mov [error_line],eax + mov [error],invalid_value + jmp instruction_assembled + nops: + mov eax,90909090h + shr ecx,1 + jnc nops_stosb_ok + stos byte [edi] + nops_stosb_ok: + shr ecx,1 + jnc nops_stosw_ok + stos word [edi] + nops_stosw_ok: + rep stos dword [edi] + jmp reserved_data +err_directive: + mov al,[esi] + cmp al,0Fh + je invoked_error + or al,al + jz invoked_error + jmp extra_characters_on_line +assert_directive: + call calculate_logical_expression + or al,al + jnz instruction_assembled + cmp [error_line],0 + jne instruction_assembled + mov eax,[current_line] + mov [error_line],eax + mov [error],assertion_failed + jmp instruction_assembled diff --git a/samples/Assembly/FASM.ASM b/samples/Assembly/FASM.ASM new file mode 100644 index 00000000..9a2201ae --- /dev/null +++ b/samples/Assembly/FASM.ASM @@ -0,0 +1,350 @@ + +; flat assembler interface for Win32 +; Copyright (c) 1999-2014, Tomasz Grysztar. +; All rights reserved. + + format PE console + +section '.text' code readable executable + +start: + + mov [con_handle],STD_OUTPUT_HANDLE + mov esi,_logo + call display_string + + call get_params + jc information + + call init_memory + + mov esi,_memory_prefix + call display_string + mov eax,[memory_end] + sub eax,[memory_start] + add eax,[additional_memory_end] + sub eax,[additional_memory] + shr eax,10 + call display_number + mov esi,_memory_suffix + call display_string + + call [GetTickCount] + mov [start_time],eax + + call preprocessor + call parser + call assembler + call formatter + + call display_user_messages + movzx eax,[current_pass] + inc eax + call display_number + mov esi,_passes_suffix + call display_string + call [GetTickCount] + sub eax,[start_time] + xor edx,edx + mov ebx,100 + div ebx + or eax,eax + jz display_bytes_count + xor edx,edx + mov ebx,10 + div ebx + push edx + call display_number + mov dl,'.' + call display_character + pop eax + call display_number + mov esi,_seconds_suffix + call display_string + display_bytes_count: + mov eax,[written_size] + call display_number + mov esi,_bytes_suffix + call display_string + xor al,al + jmp exit_program + +information: + mov esi,_usage + call display_string + mov al,1 + jmp exit_program + +get_params: + mov [input_file],0 + mov [output_file],0 + mov [symbols_file],0 + mov [memory_setting],0 + mov [passes_limit],100 + call [GetCommandLine] + mov esi,eax + mov edi,params + find_command_start: + lodsb + cmp al,20h + je find_command_start + cmp al,22h + je skip_quoted_name + skip_name: + lodsb + cmp al,20h + je find_param + or al,al + jz all_params + jmp skip_name + skip_quoted_name: + lodsb + cmp al,22h + je find_param + or al,al + jz all_params + jmp skip_quoted_name + find_param: + lodsb + cmp al,20h + je find_param + cmp al,'-' + je option_param + cmp al,0Dh + je all_params + or al,al + jz all_params + cmp [input_file],0 + jne get_output_file + mov [input_file],edi + jmp process_param + get_output_file: + cmp [output_file],0 + jne bad_params + mov [output_file],edi + process_param: + cmp al,22h + je string_param + copy_param: + stosb + lodsb + cmp al,20h + je param_end + cmp al,0Dh + je param_end + or al,al + jz param_end + jmp copy_param + string_param: + lodsb + cmp al,22h + je string_param_end + cmp al,0Dh + je param_end + or al,al + jz param_end + stosb + jmp string_param + option_param: + lodsb + cmp al,'m' + je memory_option + cmp al,'M' + je memory_option + cmp al,'p' + je passes_option + cmp al,'P' + je passes_option + cmp al,'s' + je symbols_option + cmp al,'S' + je symbols_option + bad_params: + stc + ret + get_option_value: + xor eax,eax + mov edx,eax + get_option_digit: + lodsb + cmp al,20h + je option_value_ok + cmp al,0Dh + je option_value_ok + or al,al + jz option_value_ok + sub al,30h + jc invalid_option_value + cmp al,9 + ja invalid_option_value + imul edx,10 + jo invalid_option_value + add edx,eax + jc invalid_option_value + jmp get_option_digit + option_value_ok: + dec esi + clc + ret + invalid_option_value: + stc + ret + memory_option: + lodsb + cmp al,20h + je memory_option + cmp al,0Dh + je bad_params + or al,al + jz bad_params + dec esi + call get_option_value + or edx,edx + jz bad_params + cmp edx,1 shl (32-10) + jae bad_params + mov [memory_setting],edx + jmp find_param + passes_option: + lodsb + cmp al,20h + je passes_option + cmp al,0Dh + je bad_params + or al,al + jz bad_params + dec esi + call get_option_value + or edx,edx + jz bad_params + cmp edx,10000h + ja bad_params + mov [passes_limit],dx + jmp find_param + symbols_option: + mov [symbols_file],edi + find_symbols_file_name: + lodsb + cmp al,20h + jne process_param + jmp find_symbols_file_name + param_end: + dec esi + string_param_end: + xor al,al + stosb + jmp find_param + all_params: + cmp [input_file],0 + je bad_params + clc + ret + +include 'system.inc' + +include '..\errors.inc' +include '..\symbdump.inc' +include '..\preproce.inc' +include '..\parser.inc' +include '..\exprpars.inc' +include '..\assemble.inc' +include '..\exprcalc.inc' +include '..\formats.inc' +include '..\x86_64.inc' +include '..\avx.inc' + +include '..\tables.inc' +include '..\messages.inc' + +section '.data' data readable writeable + +include '..\version.inc' + +_copyright db 'Copyright (c) 1999-2014, Tomasz Grysztar',0Dh,0Ah,0 + +_logo db 'flat assembler version ',VERSION_STRING,0 +_usage db 0Dh,0Ah + db 'usage: fasm [output]',0Dh,0Ah + db 'optional settings:',0Dh,0Ah + db ' -m set the limit in kilobytes for the available memory',0Dh,0Ah + db ' -p set the maximum allowed number of passes',0Dh,0Ah + db ' -s dump symbolic information for debugging',0Dh,0Ah + db 0 +_memory_prefix db ' (',0 +_memory_suffix db ' kilobytes memory)',0Dh,0Ah,0 +_passes_suffix db ' passes, ',0 +_seconds_suffix db ' seconds, ',0 +_bytes_suffix db ' bytes.',0Dh,0Ah,0 + +align 4 + +include '..\variable.inc' + +con_handle dd ? +memory_setting dd ? +start_time dd ? +bytes_count dd ? +displayed_count dd ? +character db ? +last_displayed rb 2 + +params rb 1000h +options rb 1000h +buffer rb 4000h + +stack 10000h + +section '.idata' import data readable writeable + + dd 0,0,0,rva kernel_name,rva kernel_table + dd 0,0,0,0,0 + + kernel_table: + ExitProcess dd rva _ExitProcess + CreateFile dd rva _CreateFileA + ReadFile dd rva _ReadFile + WriteFile dd rva _WriteFile + CloseHandle dd rva _CloseHandle + SetFilePointer dd rva _SetFilePointer + GetCommandLine dd rva _GetCommandLineA + GetEnvironmentVariable dd rva _GetEnvironmentVariable + GetStdHandle dd rva _GetStdHandle + VirtualAlloc dd rva _VirtualAlloc + VirtualFree dd rva _VirtualFree + GetTickCount dd rva _GetTickCount + GetSystemTime dd rva _GetSystemTime + GlobalMemoryStatus dd rva _GlobalMemoryStatus + dd 0 + + kernel_name db 'KERNEL32.DLL',0 + + _ExitProcess dw 0 + db 'ExitProcess',0 + _CreateFileA dw 0 + db 'CreateFileA',0 + _ReadFile dw 0 + db 'ReadFile',0 + _WriteFile dw 0 + db 'WriteFile',0 + _CloseHandle dw 0 + db 'CloseHandle',0 + _SetFilePointer dw 0 + db 'SetFilePointer',0 + _GetCommandLineA dw 0 + db 'GetCommandLineA',0 + _GetEnvironmentVariable dw 0 + db 'GetEnvironmentVariableA',0 + _GetStdHandle dw 0 + db 'GetStdHandle',0 + _VirtualAlloc dw 0 + db 'VirtualAlloc',0 + _VirtualFree dw 0 + db 'VirtualFree',0 + _GetTickCount dw 0 + db 'GetTickCount',0 + _GetSystemTime dw 0 + db 'GetSystemTime',0 + _GlobalMemoryStatus dw 0 + db 'GlobalMemoryStatus',0 + +section '.reloc' fixups data readable discardable diff --git a/samples/Assembly/SYSTEM.INC b/samples/Assembly/SYSTEM.INC new file mode 100644 index 00000000..77a61d29 --- /dev/null +++ b/samples/Assembly/SYSTEM.INC @@ -0,0 +1,503 @@ + +; flat assembler interface for Win32 +; Copyright (c) 1999-2014, Tomasz Grysztar. +; All rights reserved. + +CREATE_NEW = 1 +CREATE_ALWAYS = 2 +OPEN_EXISTING = 3 +OPEN_ALWAYS = 4 +TRUNCATE_EXISTING = 5 + +FILE_SHARE_READ = 1 +FILE_SHARE_WRITE = 2 +FILE_SHARE_DELETE = 4 + +GENERIC_READ = 80000000h +GENERIC_WRITE = 40000000h + +STD_INPUT_HANDLE = 0FFFFFFF6h +STD_OUTPUT_HANDLE = 0FFFFFFF5h +STD_ERROR_HANDLE = 0FFFFFFF4h + +MEM_COMMIT = 1000h +MEM_RESERVE = 2000h +MEM_DECOMMIT = 4000h +MEM_RELEASE = 8000h +MEM_FREE = 10000h +MEM_PRIVATE = 20000h +MEM_MAPPED = 40000h +MEM_RESET = 80000h +MEM_TOP_DOWN = 100000h + +PAGE_NOACCESS = 1 +PAGE_READONLY = 2 +PAGE_READWRITE = 4 +PAGE_WRITECOPY = 8 +PAGE_EXECUTE = 10h +PAGE_EXECUTE_READ = 20h +PAGE_EXECUTE_READWRITE = 40h +PAGE_EXECUTE_WRITECOPY = 80h +PAGE_GUARD = 100h +PAGE_NOCACHE = 200h + +init_memory: + xor eax,eax + mov [memory_start],eax + mov eax,esp + and eax,not 0FFFh + add eax,1000h-10000h + mov [stack_limit],eax + mov eax,[memory_setting] + shl eax,10 + jnz allocate_memory + push buffer + call [GlobalMemoryStatus] + mov eax,dword [buffer+20] + mov edx,dword [buffer+12] + cmp eax,0 + jl large_memory + cmp edx,0 + jl large_memory + shr eax,2 + add eax,edx + jmp allocate_memory + large_memory: + mov eax,80000000h + allocate_memory: + mov edx,eax + shr edx,2 + mov ecx,eax + sub ecx,edx + mov [memory_end],ecx + mov [additional_memory_end],edx + push PAGE_READWRITE + push MEM_COMMIT + push eax + push 0 + call [VirtualAlloc] + or eax,eax + jz not_enough_memory + mov [memory_start],eax + add eax,[memory_end] + mov [memory_end],eax + mov [additional_memory],eax + add [additional_memory_end],eax + ret + not_enough_memory: + mov eax,[additional_memory_end] + shl eax,1 + cmp eax,4000h + jb out_of_memory + jmp allocate_memory + +exit_program: + movzx eax,al + push eax + mov eax,[memory_start] + test eax,eax + jz do_exit + push MEM_RELEASE + push 0 + push eax + call [VirtualFree] + do_exit: + call [ExitProcess] + +get_environment_variable: + mov ecx,[memory_end] + sub ecx,edi + cmp ecx,4000h + jbe buffer_for_variable_ok + mov ecx,4000h + buffer_for_variable_ok: + push ecx + push edi + push esi + call [GetEnvironmentVariable] + add edi,eax + cmp edi,[memory_end] + jae out_of_memory + ret + +open: + push 0 + push 0 + push OPEN_EXISTING + push 0 + push FILE_SHARE_READ + push GENERIC_READ + push edx + call [CreateFile] + cmp eax,-1 + je file_error + mov ebx,eax + clc + ret + file_error: + stc + ret +create: + push 0 + push 0 + push CREATE_ALWAYS + push 0 + push FILE_SHARE_READ + push GENERIC_WRITE + push edx + call [CreateFile] + cmp eax,-1 + je file_error + mov ebx,eax + clc + ret +write: + push 0 + push bytes_count + push ecx + push edx + push ebx + call [WriteFile] + or eax,eax + jz file_error + clc + ret +read: + mov ebp,ecx + push 0 + push bytes_count + push ecx + push edx + push ebx + call [ReadFile] + or eax,eax + jz file_error + cmp ebp,[bytes_count] + jne file_error + clc + ret +close: + push ebx + call [CloseHandle] + ret +lseek: + movzx eax,al + push eax + push 0 + push edx + push ebx + call [SetFilePointer] + ret + +display_string: + push [con_handle] + call [GetStdHandle] + mov ebp,eax + mov edi,esi + or ecx,-1 + xor al,al + repne scasb + neg ecx + sub ecx,2 + push 0 + push bytes_count + push ecx + push esi + push ebp + call [WriteFile] + ret +display_character: + push ebx + mov [character],dl + push [con_handle] + call [GetStdHandle] + mov ebx,eax + push 0 + push bytes_count + push 1 + push character + push ebx + call [WriteFile] + pop ebx + ret +display_number: + push ebx + mov ecx,1000000000 + xor edx,edx + xor bl,bl + display_loop: + div ecx + push edx + cmp ecx,1 + je display_digit + or bl,bl + jnz display_digit + or al,al + jz digit_ok + not bl + display_digit: + mov dl,al + add dl,30h + push ecx + call display_character + pop ecx + digit_ok: + mov eax,ecx + xor edx,edx + mov ecx,10 + div ecx + mov ecx,eax + pop eax + or ecx,ecx + jnz display_loop + pop ebx + ret + +display_user_messages: + mov [displayed_count],0 + call show_display_buffer + cmp [displayed_count],1 + jb line_break_ok + je make_line_break + mov ax,word [last_displayed] + cmp ax,0A0Dh + je line_break_ok + cmp ax,0D0Ah + je line_break_ok + make_line_break: + mov word [buffer],0A0Dh + push [con_handle] + call [GetStdHandle] + push 0 + push bytes_count + push 2 + push buffer + push eax + call [WriteFile] + line_break_ok: + ret +display_block: + add [displayed_count],ecx + cmp ecx,1 + ja take_last_two_characters + jb block_displayed + mov al,[last_displayed+1] + mov ah,[esi] + mov word [last_displayed],ax + jmp block_ok + take_last_two_characters: + mov ax,[esi+ecx-2] + mov word [last_displayed],ax + block_ok: + push ecx + push [con_handle] + call [GetStdHandle] + pop ecx + push 0 + push bytes_count + push ecx + push esi + push eax + call [WriteFile] + block_displayed: + ret + +fatal_error: + mov [con_handle],STD_ERROR_HANDLE + mov esi,error_prefix + call display_string + pop esi + call display_string + mov esi,error_suffix + call display_string + mov al,0FFh + jmp exit_program +assembler_error: + mov [con_handle],STD_ERROR_HANDLE + call display_user_messages + push dword 0 + mov ebx,[current_line] + get_error_lines: + mov eax,[ebx] + cmp byte [eax],0 + je get_next_error_line + push ebx + test byte [ebx+7],80h + jz display_error_line + mov edx,ebx + find_definition_origin: + mov edx,[edx+12] + test byte [edx+7],80h + jnz find_definition_origin + push edx + get_next_error_line: + mov ebx,[ebx+8] + jmp get_error_lines + display_error_line: + mov esi,[ebx] + call display_string + mov esi,line_number_start + call display_string + mov eax,[ebx+4] + and eax,7FFFFFFFh + call display_number + mov dl,']' + call display_character + pop esi + cmp ebx,esi + je line_number_ok + mov dl,20h + call display_character + push esi + mov esi,[esi] + movzx ecx,byte [esi] + inc esi + call display_block + mov esi,line_number_start + call display_string + pop esi + mov eax,[esi+4] + and eax,7FFFFFFFh + call display_number + mov dl,']' + call display_character + line_number_ok: + mov esi,line_data_start + call display_string + mov esi,ebx + mov edx,[esi] + call open + mov al,2 + xor edx,edx + call lseek + mov edx,[esi+8] + sub eax,edx + jz line_data_displayed + push eax + xor al,al + call lseek + mov ecx,[esp] + mov edx,[additional_memory] + lea eax,[edx+ecx] + cmp eax,[additional_memory_end] + ja out_of_memory + call read + call close + pop ecx + mov esi,[additional_memory] + get_line_data: + mov al,[esi] + cmp al,0Ah + je display_line_data + cmp al,0Dh + je display_line_data + cmp al,1Ah + je display_line_data + or al,al + jz display_line_data + inc esi + loop get_line_data + display_line_data: + mov ecx,esi + mov esi,[additional_memory] + sub ecx,esi + call display_block + line_data_displayed: + mov esi,cr_lf + call display_string + pop ebx + or ebx,ebx + jnz display_error_line + mov esi,error_prefix + call display_string + pop esi + call display_string + mov esi,error_suffix + call display_string + mov al,2 + jmp exit_program + +make_timestamp: + push buffer + call [GetSystemTime] + movzx ecx,word [buffer] + mov eax,ecx + sub eax,1970 + mov ebx,365 + mul ebx + mov ebp,eax + mov eax,ecx + sub eax,1969 + shr eax,2 + add ebp,eax + mov eax,ecx + sub eax,1901 + mov ebx,100 + div ebx + sub ebp,eax + mov eax,ecx + xor edx,edx + sub eax,1601 + mov ebx,400 + div ebx + add ebp,eax + movzx ecx,word [buffer+2] + mov eax,ecx + dec eax + mov ebx,30 + mul ebx + add ebp,eax + cmp ecx,8 + jbe months_correction + mov eax,ecx + sub eax,7 + shr eax,1 + add ebp,eax + mov ecx,8 + months_correction: + mov eax,ecx + shr eax,1 + add ebp,eax + cmp ecx,2 + jbe day_correction_ok + sub ebp,2 + movzx ecx,word [buffer] + test ecx,11b + jnz day_correction_ok + xor edx,edx + mov eax,ecx + mov ebx,100 + div ebx + or edx,edx + jnz day_correction + mov eax,ecx + mov ebx,400 + div ebx + or edx,edx + jnz day_correction_ok + day_correction: + inc ebp + day_correction_ok: + movzx eax,word [buffer+6] + dec eax + add eax,ebp + mov ebx,24 + mul ebx + movzx ecx,word [buffer+8] + add eax,ecx + mov ebx,60 + mul ebx + movzx ecx,word [buffer+10] + add eax,ecx + mov ebx,60 + mul ebx + movzx ecx,word [buffer+12] + add eax,ecx + adc edx,0 + ret + +error_prefix db 'error: ',0 +error_suffix db '.' +cr_lf db 0Dh,0Ah,0 +line_number_start db ' [',0 +line_data_start db ':',0Dh,0Ah,0 diff --git a/samples/Assembly/X86_64.INC b/samples/Assembly/X86_64.INC new file mode 100644 index 00000000..28413065 --- /dev/null +++ b/samples/Assembly/X86_64.INC @@ -0,0 +1,7060 @@ + +; flat assembler core +; Copyright (c) 1999-2014, Tomasz Grysztar. +; All rights reserved. + +simple_instruction_except64: + cmp [code_type],64 + je illegal_instruction +simple_instruction: + stos byte [edi] + jmp instruction_assembled +simple_instruction_only64: + cmp [code_type],64 + jne illegal_instruction + jmp simple_instruction +simple_instruction_16bit_except64: + cmp [code_type],64 + je illegal_instruction +simple_instruction_16bit: + cmp [code_type],16 + jne size_prefix + stos byte [edi] + jmp instruction_assembled + size_prefix: + mov ah,al + mov al,66h + stos word [edi] + jmp instruction_assembled +simple_instruction_32bit_except64: + cmp [code_type],64 + je illegal_instruction +simple_instruction_32bit: + cmp [code_type],16 + je size_prefix + stos byte [edi] + jmp instruction_assembled +iret_instruction: + cmp [code_type],64 + jne simple_instruction +simple_instruction_64bit: + cmp [code_type],64 + jne illegal_instruction + mov ah,al + mov al,48h + stos word [edi] + jmp instruction_assembled +simple_extended_instruction_64bit: + cmp [code_type],64 + jne illegal_instruction + mov byte [edi],48h + inc edi +simple_extended_instruction: + mov ah,al + mov al,0Fh + stos word [edi] + jmp instruction_assembled +prefix_instruction: + stos byte [edi] + or [prefixed_instruction],-1 + jmp continue_line +segment_prefix: + mov ah,al + shr ah,4 + cmp ah,6 + jne illegal_instruction + and al,1111b + mov [segment_register],al + call store_segment_prefix + or [prefixed_instruction],-1 + jmp continue_line +int_instruction: + lods byte [esi] + call get_size_operator + cmp ah,1 + ja invalid_operand_size + cmp al,'(' + jne invalid_operand + call get_byte_value + test eax,eax + jns int_imm_ok + call recoverable_overflow + int_imm_ok: + mov ah,al + mov al,0CDh + stos word [edi] + jmp instruction_assembled +aa_instruction: + cmp [code_type],64 + je illegal_instruction + push eax + mov bl,10 + cmp byte [esi],'(' + jne aa_store + inc esi + xor al,al + xchg al,[operand_size] + cmp al,1 + ja invalid_operand_size + call get_byte_value + mov bl,al + aa_store: + cmp [operand_size],0 + jne invalid_operand + pop eax + mov ah,bl + stos word [edi] + jmp instruction_assembled + +basic_instruction: + mov [base_code],al + lods byte [esi] + call get_size_operator + cmp al,10h + je basic_reg + cmp al,'[' + jne invalid_operand + basic_mem: + call get_address + push edx ebx ecx + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,'(' + je basic_mem_imm + cmp al,10h + jne invalid_operand + basic_mem_reg: + lods byte [esi] + call convert_register + mov [postbyte_register],al + pop ecx ebx edx + mov al,ah + cmp al,1 + je instruction_ready + call operand_autodetect + inc [base_code] + instruction_ready: + call store_instruction + jmp instruction_assembled + basic_mem_imm: + mov al,[operand_size] + cmp al,1 + jb basic_mem_imm_nosize + je basic_mem_imm_8bit + cmp al,2 + je basic_mem_imm_16bit + cmp al,4 + je basic_mem_imm_32bit + cmp al,8 + jne invalid_operand_size + basic_mem_imm_64bit: + cmp [size_declared],0 + jne long_immediate_not_encodable + call operand_64bit + call get_simm32 + cmp [value_type],4 + jae long_immediate_not_encodable + jmp basic_mem_imm_32bit_ok + basic_mem_imm_nosize: + call recoverable_unknown_size + basic_mem_imm_8bit: + call get_byte_value + mov byte [value],al + mov al,[base_code] + shr al,3 + mov [postbyte_register],al + pop ecx ebx edx + mov [base_code],80h + call store_instruction_with_imm8 + jmp instruction_assembled + basic_mem_imm_16bit: + call operand_16bit + call get_word_value + mov word [value],ax + mov al,[base_code] + shr al,3 + mov [postbyte_register],al + pop ecx ebx edx + cmp [value_type],0 + jne basic_mem_imm_16bit_store + cmp [size_declared],0 + jne basic_mem_imm_16bit_store + cmp word [value],80h + jb basic_mem_simm_8bit + cmp word [value],-80h + jae basic_mem_simm_8bit + basic_mem_imm_16bit_store: + mov [base_code],81h + call store_instruction_with_imm16 + jmp instruction_assembled + basic_mem_simm_8bit: + mov [base_code],83h + call store_instruction_with_imm8 + jmp instruction_assembled + basic_mem_imm_32bit: + call operand_32bit + call get_dword_value + basic_mem_imm_32bit_ok: + mov dword [value],eax + mov al,[base_code] + shr al,3 + mov [postbyte_register],al + pop ecx ebx edx + cmp [value_type],0 + jne basic_mem_imm_32bit_store + cmp [size_declared],0 + jne basic_mem_imm_32bit_store + cmp dword [value],80h + jb basic_mem_simm_8bit + cmp dword [value],-80h + jae basic_mem_simm_8bit + basic_mem_imm_32bit_store: + mov [base_code],81h + call store_instruction_with_imm32 + jmp instruction_assembled + get_simm32: + call get_qword_value + mov ecx,edx + cdq + cmp ecx,edx + jne value_out_of_range + cmp [value_type],4 + jne get_simm32_ok + mov [value_type],2 + get_simm32_ok: + ret + basic_reg: + lods byte [esi] + call convert_register + mov [postbyte_register],al + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,10h + je basic_reg_reg + cmp al,'(' + je basic_reg_imm + cmp al,'[' + jne invalid_operand + basic_reg_mem: + call get_address + mov al,[operand_size] + cmp al,1 + je basic_reg_mem_8bit + call operand_autodetect + add [base_code],3 + jmp instruction_ready + basic_reg_mem_8bit: + add [base_code],2 + jmp instruction_ready + basic_reg_reg: + lods byte [esi] + call convert_register + mov bl,[postbyte_register] + mov [postbyte_register],al + mov al,ah + cmp al,1 + je nomem_instruction_ready + call operand_autodetect + inc [base_code] + nomem_instruction_ready: + call store_nomem_instruction + jmp instruction_assembled + basic_reg_imm: + mov al,[operand_size] + cmp al,1 + je basic_reg_imm_8bit + cmp al,2 + je basic_reg_imm_16bit + cmp al,4 + je basic_reg_imm_32bit + cmp al,8 + jne invalid_operand_size + basic_reg_imm_64bit: + cmp [size_declared],0 + jne long_immediate_not_encodable + call operand_64bit + call get_simm32 + cmp [value_type],4 + jae long_immediate_not_encodable + jmp basic_reg_imm_32bit_ok + basic_reg_imm_8bit: + call get_byte_value + mov dl,al + mov bl,[base_code] + shr bl,3 + xchg bl,[postbyte_register] + or bl,bl + jz basic_al_imm + mov [base_code],80h + call store_nomem_instruction + mov al,dl + stos byte [edi] + jmp instruction_assembled + basic_al_imm: + mov al,[base_code] + add al,4 + stos byte [edi] + mov al,dl + stos byte [edi] + jmp instruction_assembled + basic_reg_imm_16bit: + call operand_16bit + call get_word_value + mov dx,ax + mov bl,[base_code] + shr bl,3 + xchg bl,[postbyte_register] + cmp [value_type],0 + jne basic_reg_imm_16bit_store + cmp [size_declared],0 + jne basic_reg_imm_16bit_store + cmp dx,80h + jb basic_reg_simm_8bit + cmp dx,-80h + jae basic_reg_simm_8bit + basic_reg_imm_16bit_store: + or bl,bl + jz basic_ax_imm + mov [base_code],81h + call store_nomem_instruction + basic_store_imm_16bit: + mov ax,dx + call mark_relocation + stos word [edi] + jmp instruction_assembled + basic_reg_simm_8bit: + mov [base_code],83h + call store_nomem_instruction + mov al,dl + stos byte [edi] + jmp instruction_assembled + basic_ax_imm: + add [base_code],5 + call store_instruction_code + jmp basic_store_imm_16bit + basic_reg_imm_32bit: + call operand_32bit + call get_dword_value + basic_reg_imm_32bit_ok: + mov edx,eax + mov bl,[base_code] + shr bl,3 + xchg bl,[postbyte_register] + cmp [value_type],0 + jne basic_reg_imm_32bit_store + cmp [size_declared],0 + jne basic_reg_imm_32bit_store + cmp edx,80h + jb basic_reg_simm_8bit + cmp edx,-80h + jae basic_reg_simm_8bit + basic_reg_imm_32bit_store: + or bl,bl + jz basic_eax_imm + mov [base_code],81h + call store_nomem_instruction + basic_store_imm_32bit: + mov eax,edx + call mark_relocation + stos dword [edi] + jmp instruction_assembled + basic_eax_imm: + add [base_code],5 + call store_instruction_code + jmp basic_store_imm_32bit + recoverable_unknown_size: + cmp [error_line],0 + jne ignore_unknown_size + push [current_line] + pop [error_line] + mov [error],operand_size_not_specified + ignore_unknown_size: + ret +single_operand_instruction: + mov [base_code],0F6h + mov [postbyte_register],al + lods byte [esi] + call get_size_operator + cmp al,10h + je single_reg + cmp al,'[' + jne invalid_operand + single_mem: + call get_address + mov al,[operand_size] + cmp al,1 + je single_mem_8bit + jb single_mem_nosize + call operand_autodetect + inc [base_code] + jmp instruction_ready + single_mem_nosize: + call recoverable_unknown_size + single_mem_8bit: + jmp instruction_ready + single_reg: + lods byte [esi] + call convert_register + mov bl,al + mov al,ah + cmp al,1 + je single_reg_8bit + call operand_autodetect + inc [base_code] + single_reg_8bit: + jmp nomem_instruction_ready +mov_instruction: + mov [base_code],88h + lods byte [esi] + call get_size_operator + cmp al,10h + je mov_reg + cmp al,'[' + jne invalid_operand + mov_mem: + call get_address + push edx ebx ecx + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,'(' + je mov_mem_imm + cmp al,10h + jne invalid_operand + mov_mem_reg: + lods byte [esi] + cmp al,60h + jb mov_mem_general_reg + cmp al,70h + jb mov_mem_sreg + mov_mem_general_reg: + call convert_register + mov [postbyte_register],al + pop ecx ebx edx + cmp ah,1 + je mov_mem_reg_8bit + mov al,ah + call operand_autodetect + mov al,[postbyte_register] + or al,bl + or al,bh + jz mov_mem_ax + inc [base_code] + jmp instruction_ready + mov_mem_reg_8bit: + or al,bl + or al,bh + jnz instruction_ready + mov_mem_al: + test ch,22h + jnz mov_mem_address16_al + test ch,44h + jnz mov_mem_address32_al + test ch,88h + jnz mov_mem_address64_al + or ch,ch + jnz invalid_address_size + cmp [code_type],64 + je mov_mem_address64_al + cmp [code_type],32 + je mov_mem_address32_al + cmp edx,10000h + jb mov_mem_address16_al + mov_mem_address32_al: + call store_segment_prefix_if_necessary + call address_32bit_prefix + mov [base_code],0A2h + store_mov_address32: + call store_instruction_code + call store_address_32bit_value + jmp instruction_assembled + mov_mem_address16_al: + call store_segment_prefix_if_necessary + call address_16bit_prefix + mov [base_code],0A2h + store_mov_address16: + cmp [code_type],64 + je invalid_address + call store_instruction_code + mov eax,edx + stos word [edi] + cmp edx,10000h + jge value_out_of_range + jmp instruction_assembled + mov_mem_address64_al: + call store_segment_prefix_if_necessary + mov [base_code],0A2h + store_mov_address64: + call store_instruction_code + call store_address_64bit_value + jmp instruction_assembled + mov_mem_ax: + test ch,22h + jnz mov_mem_address16_ax + test ch,44h + jnz mov_mem_address32_ax + test ch,88h + jnz mov_mem_address64_ax + or ch,ch + jnz invalid_address_size + cmp [code_type],64 + je mov_mem_address64_ax + cmp [code_type],32 + je mov_mem_address32_ax + cmp edx,10000h + jb mov_mem_address16_ax + mov_mem_address32_ax: + call store_segment_prefix_if_necessary + call address_32bit_prefix + mov [base_code],0A3h + jmp store_mov_address32 + mov_mem_address16_ax: + call store_segment_prefix_if_necessary + call address_16bit_prefix + mov [base_code],0A3h + jmp store_mov_address16 + mov_mem_address64_ax: + call store_segment_prefix_if_necessary + mov [base_code],0A3h + jmp store_mov_address64 + mov_mem_sreg: + sub al,61h + mov [postbyte_register],al + pop ecx ebx edx + mov ah,[operand_size] + or ah,ah + jz mov_mem_sreg_store + cmp ah,2 + jne invalid_operand_size + mov_mem_sreg_store: + mov [base_code],8Ch + jmp instruction_ready + mov_mem_imm: + mov al,[operand_size] + cmp al,1 + jb mov_mem_imm_nosize + je mov_mem_imm_8bit + cmp al,2 + je mov_mem_imm_16bit + cmp al,4 + je mov_mem_imm_32bit + cmp al,8 + jne invalid_operand_size + mov_mem_imm_64bit: + cmp [size_declared],0 + jne long_immediate_not_encodable + call operand_64bit + call get_simm32 + cmp [value_type],4 + jae long_immediate_not_encodable + jmp mov_mem_imm_32bit_store + mov_mem_imm_8bit: + call get_byte_value + mov byte [value],al + mov [postbyte_register],0 + mov [base_code],0C6h + pop ecx ebx edx + call store_instruction_with_imm8 + jmp instruction_assembled + mov_mem_imm_16bit: + call operand_16bit + call get_word_value + mov word [value],ax + mov [postbyte_register],0 + mov [base_code],0C7h + pop ecx ebx edx + call store_instruction_with_imm16 + jmp instruction_assembled + mov_mem_imm_nosize: + call recoverable_unknown_size + mov_mem_imm_32bit: + call operand_32bit + call get_dword_value + mov_mem_imm_32bit_store: + mov dword [value],eax + mov [postbyte_register],0 + mov [base_code],0C7h + pop ecx ebx edx + call store_instruction_with_imm32 + jmp instruction_assembled + mov_reg: + lods byte [esi] + mov ah,al + sub ah,10h + and ah,al + test ah,0F0h + jnz mov_sreg + call convert_register + mov [postbyte_register],al + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,'[' + je mov_reg_mem + cmp al,'(' + je mov_reg_imm + cmp al,10h + jne invalid_operand + mov_reg_reg: + lods byte [esi] + mov ah,al + sub ah,10h + and ah,al + test ah,0F0h + jnz mov_reg_sreg + call convert_register + mov bl,[postbyte_register] + mov [postbyte_register],al + mov al,ah + cmp al,1 + je mov_reg_reg_8bit + call operand_autodetect + inc [base_code] + mov_reg_reg_8bit: + jmp nomem_instruction_ready + mov_reg_sreg: + mov bl,[postbyte_register] + mov ah,al + and al,1111b + mov [postbyte_register],al + shr ah,4 + cmp ah,5 + je mov_reg_creg + cmp ah,7 + je mov_reg_dreg + ja mov_reg_treg + dec [postbyte_register] + cmp [operand_size],8 + je mov_reg_sreg64 + cmp [operand_size],4 + je mov_reg_sreg32 + cmp [operand_size],2 + jne invalid_operand_size + call operand_16bit + jmp mov_reg_sreg_store + mov_reg_sreg64: + call operand_64bit + jmp mov_reg_sreg_store + mov_reg_sreg32: + call operand_32bit + mov_reg_sreg_store: + mov [base_code],8Ch + jmp nomem_instruction_ready + mov_reg_treg: + cmp ah,9 + jne invalid_operand + mov [extended_code],24h + jmp mov_reg_xrx + mov_reg_dreg: + mov [extended_code],21h + jmp mov_reg_xrx + mov_reg_creg: + mov [extended_code],20h + mov_reg_xrx: + mov [base_code],0Fh + cmp [code_type],64 + je mov_reg_xrx_64bit + cmp [operand_size],4 + jne invalid_operand_size + cmp [postbyte_register],8 + jne mov_reg_xrx_store + cmp [extended_code],20h + jne mov_reg_xrx_store + mov al,0F0h + stos byte [edi] + mov [postbyte_register],0 + mov_reg_xrx_store: + jmp nomem_instruction_ready + mov_reg_xrx_64bit: + cmp [operand_size],8 + jne invalid_operand_size + jmp nomem_instruction_ready + mov_reg_mem: + call get_address + mov al,[operand_size] + cmp al,1 + je mov_reg_mem_8bit + call operand_autodetect + mov al,[postbyte_register] + or al,bl + or al,bh + jz mov_ax_mem + add [base_code],3 + jmp instruction_ready + mov_reg_mem_8bit: + mov al,[postbyte_register] + or al,bl + or al,bh + jz mov_al_mem + add [base_code],2 + jmp instruction_ready + mov_al_mem: + test ch,22h + jnz mov_al_mem_address16 + test ch,44h + jnz mov_al_mem_address32 + test ch,88h + jnz mov_al_mem_address64 + or ch,ch + jnz invalid_address_size + cmp [code_type],64 + je mov_al_mem_address64 + cmp [code_type],32 + je mov_al_mem_address32 + cmp edx,10000h + jb mov_al_mem_address16 + mov_al_mem_address32: + call store_segment_prefix_if_necessary + call address_32bit_prefix + mov [base_code],0A0h + jmp store_mov_address32 + mov_al_mem_address16: + call store_segment_prefix_if_necessary + call address_16bit_prefix + mov [base_code],0A0h + jmp store_mov_address16 + mov_al_mem_address64: + call store_segment_prefix_if_necessary + mov [base_code],0A0h + jmp store_mov_address64 + mov_ax_mem: + test ch,22h + jnz mov_ax_mem_address16 + test ch,44h + jnz mov_ax_mem_address32 + test ch,88h + jnz mov_ax_mem_address64 + or ch,ch + jnz invalid_address_size + cmp [code_type],64 + je mov_ax_mem_address64 + cmp [code_type],32 + je mov_ax_mem_address32 + cmp edx,10000h + jb mov_ax_mem_address16 + mov_ax_mem_address32: + call store_segment_prefix_if_necessary + call address_32bit_prefix + mov [base_code],0A1h + jmp store_mov_address32 + mov_ax_mem_address16: + call store_segment_prefix_if_necessary + call address_16bit_prefix + mov [base_code],0A1h + jmp store_mov_address16 + mov_ax_mem_address64: + call store_segment_prefix_if_necessary + mov [base_code],0A1h + jmp store_mov_address64 + mov_reg_imm: + mov al,[operand_size] + cmp al,1 + je mov_reg_imm_8bit + cmp al,2 + je mov_reg_imm_16bit + cmp al,4 + je mov_reg_imm_32bit + cmp al,8 + jne invalid_operand_size + mov_reg_imm_64bit: + call operand_64bit + call get_qword_value + mov ecx,edx + cmp [size_declared],0 + jne mov_reg_imm_64bit_store + cmp [value_type],4 + jae mov_reg_imm_64bit_store + cdq + cmp ecx,edx + je mov_reg_64bit_imm_32bit + mov_reg_imm_64bit_store: + push eax ecx + mov al,0B8h + call store_mov_reg_imm_code + pop edx eax + call mark_relocation + stos dword [edi] + mov eax,edx + stos dword [edi] + jmp instruction_assembled + mov_reg_imm_8bit: + call get_byte_value + mov dl,al + mov al,0B0h + call store_mov_reg_imm_code + mov al,dl + stos byte [edi] + jmp instruction_assembled + mov_reg_imm_16bit: + call get_word_value + mov dx,ax + call operand_16bit + mov al,0B8h + call store_mov_reg_imm_code + mov ax,dx + call mark_relocation + stos word [edi] + jmp instruction_assembled + mov_reg_imm_32bit: + call operand_32bit + call get_dword_value + mov edx,eax + mov al,0B8h + call store_mov_reg_imm_code + mov_store_imm_32bit: + mov eax,edx + call mark_relocation + stos dword [edi] + jmp instruction_assembled + store_mov_reg_imm_code: + mov ah,[postbyte_register] + test ah,1000b + jz mov_reg_imm_prefix_ok + or [rex_prefix],41h + mov_reg_imm_prefix_ok: + and ah,111b + add al,ah + mov [base_code],al + call store_instruction_code + ret + mov_reg_64bit_imm_32bit: + mov edx,eax + mov bl,[postbyte_register] + mov [postbyte_register],0 + mov [base_code],0C7h + call store_nomem_instruction + jmp mov_store_imm_32bit + mov_sreg: + mov ah,al + and al,1111b + mov [postbyte_register],al + shr ah,4 + cmp ah,5 + je mov_creg + cmp ah,7 + je mov_dreg + ja mov_treg + cmp al,2 + je illegal_instruction + dec [postbyte_register] + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,'[' + je mov_sreg_mem + cmp al,10h + jne invalid_operand + mov_sreg_reg: + lods byte [esi] + call convert_register + or ah,ah + jz mov_sreg_reg_size_ok + cmp ah,2 + jne invalid_operand_size + mov bl,al + mov_sreg_reg_size_ok: + mov [base_code],8Eh + jmp nomem_instruction_ready + mov_sreg_mem: + call get_address + mov al,[operand_size] + or al,al + jz mov_sreg_mem_size_ok + cmp al,2 + jne invalid_operand_size + mov_sreg_mem_size_ok: + mov [base_code],8Eh + jmp instruction_ready + mov_treg: + cmp ah,9 + jne invalid_operand + mov [extended_code],26h + jmp mov_xrx + mov_dreg: + mov [extended_code],23h + jmp mov_xrx + mov_creg: + mov [extended_code],22h + mov_xrx: + mov [base_code],0Fh + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_register + mov bl,al + cmp [code_type],64 + je mov_xrx_64bit + cmp ah,4 + jne invalid_operand_size + cmp [postbyte_register],8 + jne mov_xrx_store + cmp [extended_code],22h + jne mov_xrx_store + mov al,0F0h + stos byte [edi] + mov [postbyte_register],0 + mov_xrx_store: + jmp nomem_instruction_ready + mov_xrx_64bit: + cmp ah,8 + je mov_xrx_store + jmp invalid_operand_size +test_instruction: + mov [base_code],84h + lods byte [esi] + call get_size_operator + cmp al,10h + je test_reg + cmp al,'[' + jne invalid_operand + test_mem: + call get_address + push edx ebx ecx + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,'(' + je test_mem_imm + cmp al,10h + jne invalid_operand + test_mem_reg: + lods byte [esi] + call convert_register + mov [postbyte_register],al + pop ecx ebx edx + mov al,ah + cmp al,1 + je test_mem_reg_8bit + call operand_autodetect + inc [base_code] + test_mem_reg_8bit: + jmp instruction_ready + test_mem_imm: + mov al,[operand_size] + cmp al,1 + jb test_mem_imm_nosize + je test_mem_imm_8bit + cmp al,2 + je test_mem_imm_16bit + cmp al,4 + je test_mem_imm_32bit + cmp al,8 + jne invalid_operand_size + test_mem_imm_64bit: + cmp [size_declared],0 + jne long_immediate_not_encodable + call operand_64bit + call get_simm32 + cmp [value_type],4 + jae long_immediate_not_encodable + jmp test_mem_imm_32bit_store + test_mem_imm_8bit: + call get_byte_value + mov byte [value],al + mov [postbyte_register],0 + mov [base_code],0F6h + pop ecx ebx edx + call store_instruction_with_imm8 + jmp instruction_assembled + test_mem_imm_16bit: + call operand_16bit + call get_word_value + mov word [value],ax + mov [postbyte_register],0 + mov [base_code],0F7h + pop ecx ebx edx + call store_instruction_with_imm16 + jmp instruction_assembled + test_mem_imm_nosize: + call recoverable_unknown_size + test_mem_imm_32bit: + call operand_32bit + call get_dword_value + test_mem_imm_32bit_store: + mov dword [value],eax + mov [postbyte_register],0 + mov [base_code],0F7h + pop ecx ebx edx + call store_instruction_with_imm32 + jmp instruction_assembled + test_reg: + lods byte [esi] + call convert_register + mov [postbyte_register],al + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,'[' + je test_reg_mem + cmp al,'(' + je test_reg_imm + cmp al,10h + jne invalid_operand + test_reg_reg: + lods byte [esi] + call convert_register + mov bl,[postbyte_register] + mov [postbyte_register],al + mov al,ah + cmp al,1 + je test_reg_reg_8bit + call operand_autodetect + inc [base_code] + test_reg_reg_8bit: + jmp nomem_instruction_ready + test_reg_imm: + mov al,[operand_size] + cmp al,1 + je test_reg_imm_8bit + cmp al,2 + je test_reg_imm_16bit + cmp al,4 + je test_reg_imm_32bit + cmp al,8 + jne invalid_operand_size + test_reg_imm_64bit: + cmp [size_declared],0 + jne long_immediate_not_encodable + call operand_64bit + call get_simm32 + cmp [value_type],4 + jae long_immediate_not_encodable + jmp test_reg_imm_32bit_store + test_reg_imm_8bit: + call get_byte_value + mov dl,al + mov bl,[postbyte_register] + mov [postbyte_register],0 + mov [base_code],0F6h + or bl,bl + jz test_al_imm + call store_nomem_instruction + mov al,dl + stos byte [edi] + jmp instruction_assembled + test_al_imm: + mov [base_code],0A8h + call store_instruction_code + mov al,dl + stos byte [edi] + jmp instruction_assembled + test_reg_imm_16bit: + call operand_16bit + call get_word_value + mov dx,ax + mov bl,[postbyte_register] + mov [postbyte_register],0 + mov [base_code],0F7h + or bl,bl + jz test_ax_imm + call store_nomem_instruction + mov ax,dx + call mark_relocation + stos word [edi] + jmp instruction_assembled + test_ax_imm: + mov [base_code],0A9h + call store_instruction_code + mov ax,dx + stos word [edi] + jmp instruction_assembled + test_reg_imm_32bit: + call operand_32bit + call get_dword_value + test_reg_imm_32bit_store: + mov edx,eax + mov bl,[postbyte_register] + mov [postbyte_register],0 + mov [base_code],0F7h + or bl,bl + jz test_eax_imm + call store_nomem_instruction + mov eax,edx + call mark_relocation + stos dword [edi] + jmp instruction_assembled + test_eax_imm: + mov [base_code],0A9h + call store_instruction_code + mov eax,edx + stos dword [edi] + jmp instruction_assembled + test_reg_mem: + call get_address + mov al,[operand_size] + cmp al,1 + je test_reg_mem_8bit + call operand_autodetect + inc [base_code] + test_reg_mem_8bit: + jmp instruction_ready +xchg_instruction: + mov [base_code],86h + lods byte [esi] + call get_size_operator + cmp al,10h + je xchg_reg + cmp al,'[' + jne invalid_operand + xchg_mem: + call get_address + push edx ebx ecx + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,10h + je test_mem_reg + jmp invalid_operand + xchg_reg: + lods byte [esi] + call convert_register + mov [postbyte_register],al + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,'[' + je test_reg_mem + cmp al,10h + jne invalid_operand + xchg_reg_reg: + lods byte [esi] + call convert_register + mov bl,al + mov al,ah + cmp al,1 + je xchg_reg_reg_8bit + call operand_autodetect + cmp [postbyte_register],0 + je xchg_ax_reg + or bl,bl + jnz xchg_reg_reg_store + mov bl,[postbyte_register] + xchg_ax_reg: + cmp [code_type],64 + jne xchg_ax_reg_ok + cmp ah,4 + jne xchg_ax_reg_ok + or bl,bl + jz xchg_reg_reg_store + xchg_ax_reg_ok: + test bl,1000b + jz xchg_ax_reg_store + or [rex_prefix],41h + and bl,111b + xchg_ax_reg_store: + add bl,90h + mov [base_code],bl + call store_instruction_code + jmp instruction_assembled + xchg_reg_reg_store: + inc [base_code] + xchg_reg_reg_8bit: + jmp nomem_instruction_ready +push_instruction: + mov [push_size],al + push_next: + lods byte [esi] + call get_size_operator + cmp al,10h + je push_reg + cmp al,'(' + je push_imm + cmp al,'[' + jne invalid_operand + push_mem: + call get_address + mov al,[operand_size] + mov ah,[push_size] + cmp al,2 + je push_mem_16bit + cmp al,4 + je push_mem_32bit + cmp al,8 + je push_mem_64bit + or al,al + jnz invalid_operand_size + cmp ah,2 + je push_mem_16bit + cmp ah,4 + je push_mem_32bit + cmp ah,8 + je push_mem_64bit + call recoverable_unknown_size + jmp push_mem_store + push_mem_16bit: + test ah,not 2 + jnz invalid_operand_size + call operand_16bit + jmp push_mem_store + push_mem_32bit: + test ah,not 4 + jnz invalid_operand_size + cmp [code_type],64 + je illegal_instruction + call operand_32bit + jmp push_mem_store + push_mem_64bit: + test ah,not 8 + jnz invalid_operand_size + cmp [code_type],64 + jne illegal_instruction + push_mem_store: + mov [base_code],0FFh + mov [postbyte_register],110b + call store_instruction + jmp push_done + push_reg: + lods byte [esi] + mov ah,al + sub ah,10h + and ah,al + test ah,0F0h + jnz push_sreg + call convert_register + test al,1000b + jz push_reg_ok + or [rex_prefix],41h + and al,111b + push_reg_ok: + add al,50h + mov [base_code],al + mov al,ah + mov ah,[push_size] + cmp al,2 + je push_reg_16bit + cmp al,4 + je push_reg_32bit + cmp al,8 + jne invalid_operand_size + push_reg_64bit: + test ah,not 8 + jnz invalid_operand_size + cmp [code_type],64 + jne illegal_instruction + jmp push_reg_store + push_reg_32bit: + test ah,not 4 + jnz invalid_operand_size + cmp [code_type],64 + je illegal_instruction + call operand_32bit + jmp push_reg_store + push_reg_16bit: + test ah,not 2 + jnz invalid_operand_size + call operand_16bit + push_reg_store: + call store_instruction_code + jmp push_done + push_sreg: + mov bl,al + mov dl,[operand_size] + mov dh,[push_size] + cmp dl,2 + je push_sreg16 + cmp dl,4 + je push_sreg32 + cmp dl,8 + je push_sreg64 + or dl,dl + jnz invalid_operand_size + cmp dh,2 + je push_sreg16 + cmp dh,4 + je push_sreg32 + cmp dh,8 + je push_sreg64 + jmp push_sreg_store + push_sreg16: + test dh,not 2 + jnz invalid_operand_size + call operand_16bit + jmp push_sreg_store + push_sreg32: + test dh,not 4 + jnz invalid_operand_size + cmp [code_type],64 + je illegal_instruction + call operand_32bit + jmp push_sreg_store + push_sreg64: + test dh,not 8 + jnz invalid_operand_size + cmp [code_type],64 + jne illegal_instruction + push_sreg_store: + mov al,bl + cmp al,70h + jae invalid_operand + sub al,61h + jc invalid_operand + cmp al,4 + jae push_sreg_386 + shl al,3 + add al,6 + mov [base_code],al + cmp [code_type],64 + je illegal_instruction + jmp push_reg_store + push_sreg_386: + sub al,4 + shl al,3 + add al,0A0h + mov [extended_code],al + mov [base_code],0Fh + jmp push_reg_store + push_imm: + mov al,[operand_size] + mov ah,[push_size] + or al,al + je push_imm_size_ok + or ah,ah + je push_imm_size_ok + cmp al,ah + jne invalid_operand_size + push_imm_size_ok: + cmp al,2 + je push_imm_16bit + cmp al,4 + je push_imm_32bit + cmp al,8 + je push_imm_64bit + cmp ah,2 + je push_imm_optimized_16bit + cmp ah,4 + je push_imm_optimized_32bit + cmp ah,8 + je push_imm_optimized_64bit + or al,al + jnz invalid_operand_size + cmp [code_type],16 + je push_imm_optimized_16bit + cmp [code_type],32 + je push_imm_optimized_32bit + push_imm_optimized_64bit: + cmp [code_type],64 + jne illegal_instruction + call get_simm32 + mov edx,eax + cmp [value_type],0 + jne push_imm_32bit_store + cmp eax,-80h + jl push_imm_32bit_store + cmp eax,80h + jge push_imm_32bit_store + jmp push_imm_8bit + push_imm_optimized_32bit: + cmp [code_type],64 + je illegal_instruction + call get_dword_value + mov edx,eax + call operand_32bit + cmp [value_type],0 + jne push_imm_32bit_store + cmp eax,-80h + jl push_imm_32bit_store + cmp eax,80h + jge push_imm_32bit_store + jmp push_imm_8bit + push_imm_optimized_16bit: + call get_word_value + mov dx,ax + call operand_16bit + cmp [value_type],0 + jne push_imm_16bit_store + cmp ax,-80h + jl push_imm_16bit_store + cmp ax,80h + jge push_imm_16bit_store + push_imm_8bit: + mov ah,al + mov [base_code],6Ah + call store_instruction_code + mov al,ah + stos byte [edi] + jmp push_done + push_imm_16bit: + call get_word_value + mov dx,ax + call operand_16bit + push_imm_16bit_store: + mov [base_code],68h + call store_instruction_code + mov ax,dx + call mark_relocation + stos word [edi] + jmp push_done + push_imm_64bit: + cmp [code_type],64 + jne illegal_instruction + call get_simm32 + mov edx,eax + jmp push_imm_32bit_store + push_imm_32bit: + cmp [code_type],64 + je illegal_instruction + call get_dword_value + mov edx,eax + call operand_32bit + push_imm_32bit_store: + mov [base_code],68h + call store_instruction_code + mov eax,edx + call mark_relocation + stos dword [edi] + push_done: + lods byte [esi] + dec esi + cmp al,0Fh + je instruction_assembled + or al,al + jz instruction_assembled + mov [operand_size],0 + mov [size_override],0 + mov [operand_prefix],0 + mov [rex_prefix],0 + jmp push_next +pop_instruction: + mov [push_size],al + pop_next: + lods byte [esi] + call get_size_operator + cmp al,10h + je pop_reg + cmp al,'[' + jne invalid_operand + pop_mem: + call get_address + mov al,[operand_size] + mov ah,[push_size] + cmp al,2 + je pop_mem_16bit + cmp al,4 + je pop_mem_32bit + cmp al,8 + je pop_mem_64bit + or al,al + jnz invalid_operand_size + cmp ah,2 + je pop_mem_16bit + cmp ah,4 + je pop_mem_32bit + cmp ah,8 + je pop_mem_64bit + call recoverable_unknown_size + jmp pop_mem_store + pop_mem_16bit: + test ah,not 2 + jnz invalid_operand_size + call operand_16bit + jmp pop_mem_store + pop_mem_32bit: + test ah,not 4 + jnz invalid_operand_size + cmp [code_type],64 + je illegal_instruction + call operand_32bit + jmp pop_mem_store + pop_mem_64bit: + test ah,not 8 + jnz invalid_operand_size + cmp [code_type],64 + jne illegal_instruction + pop_mem_store: + mov [base_code],08Fh + mov [postbyte_register],0 + call store_instruction + jmp pop_done + pop_reg: + lods byte [esi] + mov ah,al + sub ah,10h + and ah,al + test ah,0F0h + jnz pop_sreg + call convert_register + test al,1000b + jz pop_reg_ok + or [rex_prefix],41h + and al,111b + pop_reg_ok: + add al,58h + mov [base_code],al + mov al,ah + mov ah,[push_size] + cmp al,2 + je pop_reg_16bit + cmp al,4 + je pop_reg_32bit + cmp al,8 + je pop_reg_64bit + jmp invalid_operand_size + pop_reg_64bit: + test ah,not 8 + jnz invalid_operand_size + cmp [code_type],64 + jne illegal_instruction + jmp pop_reg_store + pop_reg_32bit: + test ah,not 4 + jnz invalid_operand_size + cmp [code_type],64 + je illegal_instruction + call operand_32bit + jmp pop_reg_store + pop_reg_16bit: + test ah,not 2 + jnz invalid_operand_size + call operand_16bit + pop_reg_store: + call store_instruction_code + pop_done: + lods byte [esi] + dec esi + cmp al,0Fh + je instruction_assembled + or al,al + jz instruction_assembled + mov [operand_size],0 + mov [size_override],0 + mov [operand_prefix],0 + mov [rex_prefix],0 + jmp pop_next + pop_sreg: + mov dl,[operand_size] + mov dh,[push_size] + cmp al,62h + je pop_cs + mov bl,al + cmp dl,2 + je pop_sreg16 + cmp dl,4 + je pop_sreg32 + cmp dl,8 + je pop_sreg64 + or dl,dl + jnz invalid_operand_size + cmp dh,2 + je pop_sreg16 + cmp dh,4 + je pop_sreg32 + cmp dh,8 + je pop_sreg64 + jmp pop_sreg_store + pop_sreg16: + test dh,not 2 + jnz invalid_operand_size + call operand_16bit + jmp pop_sreg_store + pop_sreg32: + test dh,not 4 + jnz invalid_operand_size + cmp [code_type],64 + je illegal_instruction + call operand_32bit + jmp pop_sreg_store + pop_sreg64: + test dh,not 8 + jnz invalid_operand_size + cmp [code_type],64 + jne illegal_instruction + pop_sreg_store: + mov al,bl + cmp al,70h + jae invalid_operand + sub al,61h + jc invalid_operand + cmp al,4 + jae pop_sreg_386 + shl al,3 + add al,7 + mov [base_code],al + cmp [code_type],64 + je illegal_instruction + jmp pop_reg_store + pop_cs: + cmp [code_type],16 + jne illegal_instruction + cmp dl,2 + je pop_cs_store + or dl,dl + jnz invalid_operand_size + cmp dh,2 + je pop_cs_store + or dh,dh + jnz illegal_instruction + pop_cs_store: + test dh,not 2 + jnz invalid_operand_size + mov al,0Fh + stos byte [edi] + jmp pop_done + pop_sreg_386: + sub al,4 + shl al,3 + add al,0A1h + mov [extended_code],al + mov [base_code],0Fh + jmp pop_reg_store +inc_instruction: + mov [base_code],al + lods byte [esi] + call get_size_operator + cmp al,10h + je inc_reg + cmp al,'[' + je inc_mem + jne invalid_operand + inc_mem: + call get_address + mov al,[operand_size] + cmp al,1 + je inc_mem_8bit + jb inc_mem_nosize + call operand_autodetect + mov al,0FFh + xchg al,[base_code] + mov [postbyte_register],al + jmp instruction_ready + inc_mem_nosize: + call recoverable_unknown_size + inc_mem_8bit: + mov al,0FEh + xchg al,[base_code] + mov [postbyte_register],al + jmp instruction_ready + inc_reg: + lods byte [esi] + call convert_register + mov bl,al + mov al,0FEh + xchg al,[base_code] + mov [postbyte_register],al + mov al,ah + cmp al,1 + je inc_reg_8bit + call operand_autodetect + cmp [code_type],64 + je inc_reg_long_form + mov al,[postbyte_register] + shl al,3 + add al,bl + add al,40h + mov [base_code],al + call store_instruction_code + jmp instruction_assembled + inc_reg_long_form: + inc [base_code] + inc_reg_8bit: + jmp nomem_instruction_ready +set_instruction: + mov [base_code],0Fh + mov [extended_code],al + lods byte [esi] + call get_size_operator + cmp al,10h + je set_reg + cmp al,'[' + jne invalid_operand + set_mem: + call get_address + cmp [operand_size],1 + ja invalid_operand_size + mov [postbyte_register],0 + jmp instruction_ready + set_reg: + lods byte [esi] + call convert_register + cmp ah,1 + jne invalid_operand_size + mov bl,al + mov [postbyte_register],0 + jmp nomem_instruction_ready +arpl_instruction: + cmp [code_type],64 + je illegal_instruction + mov [base_code],63h + lods byte [esi] + call get_size_operator + cmp al,10h + je arpl_reg + cmp al,'[' + jne invalid_operand + call get_address + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_register + mov [postbyte_register],al + cmp ah,2 + jne invalid_operand_size + jmp instruction_ready + arpl_reg: + lods byte [esi] + call convert_register + cmp ah,2 + jne invalid_operand_size + mov bl,al + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_register + mov [postbyte_register],al + jmp nomem_instruction_ready +bound_instruction: + cmp [code_type],64 + je illegal_instruction + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_register + mov [postbyte_register],al + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,'[' + jne invalid_operand + call get_address + mov al,[operand_size] + cmp al,2 + je bound_store + cmp al,4 + jne invalid_operand_size + bound_store: + call operand_autodetect + mov [base_code],62h + jmp instruction_ready +enter_instruction: + lods byte [esi] + call get_size_operator + cmp ah,2 + je enter_imm16_size_ok + or ah,ah + jnz invalid_operand_size + enter_imm16_size_ok: + cmp al,'(' + jne invalid_operand + call get_word_value + cmp [next_pass_needed],0 + jne enter_imm16_ok + cmp [value_type],0 + jne invalid_use_of_symbol + test eax,eax + js value_out_of_range + enter_imm16_ok: + push eax + mov [operand_size],0 + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp ah,1 + je enter_imm8_size_ok + or ah,ah + jnz invalid_operand_size + enter_imm8_size_ok: + cmp al,'(' + jne invalid_operand + call get_byte_value + cmp [next_pass_needed],0 + jne enter_imm8_ok + test eax,eax + js value_out_of_range + enter_imm8_ok: + mov dl,al + pop ebx + mov al,0C8h + stos byte [edi] + mov ax,bx + stos word [edi] + mov al,dl + stos byte [edi] + jmp instruction_assembled +ret_instruction_only64: + cmp [code_type],64 + jne illegal_instruction + jmp ret_instruction +ret_instruction_32bit_except64: + cmp [code_type],64 + je illegal_instruction +ret_instruction_32bit: + call operand_32bit + jmp ret_instruction +ret_instruction_16bit: + call operand_16bit + jmp ret_instruction +retf_instruction: + cmp [code_type],64 + jne ret_instruction +ret_instruction_64bit: + call operand_64bit +ret_instruction: + mov [base_code],al + lods byte [esi] + dec esi + or al,al + jz simple_ret + cmp al,0Fh + je simple_ret + lods byte [esi] + call get_size_operator + or ah,ah + jz ret_imm + cmp ah,2 + je ret_imm + jmp invalid_operand_size + ret_imm: + cmp al,'(' + jne invalid_operand + call get_word_value + cmp [next_pass_needed],0 + jne ret_imm_ok + cmp [value_type],0 + jne invalid_use_of_symbol + test eax,eax + js value_out_of_range + ret_imm_ok: + cmp [size_declared],0 + jne ret_imm_store + or ax,ax + jz simple_ret + ret_imm_store: + mov dx,ax + call store_instruction_code + mov ax,dx + stos word [edi] + jmp instruction_assembled + simple_ret: + inc [base_code] + call store_instruction_code + jmp instruction_assembled +lea_instruction: + mov [base_code],8Dh + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_register + mov [postbyte_register],al + lods byte [esi] + cmp al,',' + jne invalid_operand + xor al,al + xchg al,[operand_size] + push eax + lods byte [esi] + call get_size_operator + cmp al,'[' + jne invalid_operand + mov [size_override],-1 + call get_address + pop eax + mov [operand_size],al + call operand_autodetect + jmp instruction_ready +ls_instruction: + or al,al + jz les_instruction + cmp al,3 + jz lds_instruction + add al,0B0h + mov [extended_code],al + mov [base_code],0Fh + jmp ls_code_ok + les_instruction: + mov [base_code],0C4h + jmp ls_short_code + lds_instruction: + mov [base_code],0C5h + ls_short_code: + cmp [code_type],64 + je illegal_instruction + ls_code_ok: + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_register + mov [postbyte_register],al + lods byte [esi] + cmp al,',' + jne invalid_operand + add [operand_size],2 + lods byte [esi] + call get_size_operator + cmp al,'[' + jne invalid_operand + call get_address + mov al,[operand_size] + cmp al,4 + je ls_16bit + cmp al,6 + je ls_32bit + cmp al,10 + je ls_64bit + jmp invalid_operand_size + ls_16bit: + call operand_16bit + jmp instruction_ready + ls_32bit: + call operand_32bit + jmp instruction_ready + ls_64bit: + call operand_64bit + jmp instruction_ready +sh_instruction: + mov [postbyte_register],al + lods byte [esi] + call get_size_operator + cmp al,10h + je sh_reg + cmp al,'[' + jne invalid_operand + sh_mem: + call get_address + push edx ebx ecx + mov al,[operand_size] + push eax + mov [operand_size],0 + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,'(' + je sh_mem_imm + cmp al,10h + jne invalid_operand + sh_mem_reg: + lods byte [esi] + cmp al,11h + jne invalid_operand + pop eax ecx ebx edx + cmp al,1 + je sh_mem_cl_8bit + jb sh_mem_cl_nosize + call operand_autodetect + mov [base_code],0D3h + jmp instruction_ready + sh_mem_cl_nosize: + call recoverable_unknown_size + sh_mem_cl_8bit: + mov [base_code],0D2h + jmp instruction_ready + sh_mem_imm: + mov al,[operand_size] + or al,al + jz sh_mem_imm_size_ok + cmp al,1 + jne invalid_operand_size + sh_mem_imm_size_ok: + call get_byte_value + mov byte [value],al + pop eax ecx ebx edx + cmp al,1 + je sh_mem_imm_8bit + jb sh_mem_imm_nosize + call operand_autodetect + cmp byte [value],1 + je sh_mem_1 + mov [base_code],0C1h + call store_instruction_with_imm8 + jmp instruction_assembled + sh_mem_1: + mov [base_code],0D1h + jmp instruction_ready + sh_mem_imm_nosize: + call recoverable_unknown_size + sh_mem_imm_8bit: + cmp byte [value],1 + je sh_mem_1_8bit + mov [base_code],0C0h + call store_instruction_with_imm8 + jmp instruction_assembled + sh_mem_1_8bit: + mov [base_code],0D0h + jmp instruction_ready + sh_reg: + lods byte [esi] + call convert_register + mov bx,ax + mov [operand_size],0 + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,'(' + je sh_reg_imm + cmp al,10h + jne invalid_operand + sh_reg_reg: + lods byte [esi] + cmp al,11h + jne invalid_operand + mov al,bh + cmp al,1 + je sh_reg_cl_8bit + call operand_autodetect + mov [base_code],0D3h + jmp nomem_instruction_ready + sh_reg_cl_8bit: + mov [base_code],0D2h + jmp nomem_instruction_ready + sh_reg_imm: + mov al,[operand_size] + or al,al + jz sh_reg_imm_size_ok + cmp al,1 + jne invalid_operand_size + sh_reg_imm_size_ok: + push ebx + call get_byte_value + mov dl,al + pop ebx + mov al,bh + cmp al,1 + je sh_reg_imm_8bit + call operand_autodetect + cmp dl,1 + je sh_reg_1 + mov [base_code],0C1h + call store_nomem_instruction + mov al,dl + stos byte [edi] + jmp instruction_assembled + sh_reg_1: + mov [base_code],0D1h + jmp nomem_instruction_ready + sh_reg_imm_8bit: + cmp dl,1 + je sh_reg_1_8bit + mov [base_code],0C0h + call store_nomem_instruction + mov al,dl + stos byte [edi] + jmp instruction_assembled + sh_reg_1_8bit: + mov [base_code],0D0h + jmp nomem_instruction_ready +shd_instruction: + mov [base_code],0Fh + mov [extended_code],al + lods byte [esi] + call get_size_operator + cmp al,10h + je shd_reg + cmp al,'[' + jne invalid_operand + shd_mem: + call get_address + push edx ebx ecx + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_register + mov [postbyte_register],al + lods byte [esi] + cmp al,',' + jne invalid_operand + mov al,ah + mov [operand_size],0 + push eax + lods byte [esi] + call get_size_operator + cmp al,'(' + je shd_mem_reg_imm + cmp al,10h + jne invalid_operand + lods byte [esi] + cmp al,11h + jne invalid_operand + pop eax ecx ebx edx + call operand_autodetect + inc [extended_code] + jmp instruction_ready + shd_mem_reg_imm: + mov al,[operand_size] + or al,al + jz shd_mem_reg_imm_size_ok + cmp al,1 + jne invalid_operand_size + shd_mem_reg_imm_size_ok: + call get_byte_value + mov byte [value],al + pop eax ecx ebx edx + call operand_autodetect + call store_instruction_with_imm8 + jmp instruction_assembled + shd_reg: + lods byte [esi] + call convert_register + mov [postbyte_register],al + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_register + mov bl,[postbyte_register] + mov [postbyte_register],al + mov al,ah + push eax ebx + lods byte [esi] + cmp al,',' + jne invalid_operand + mov [operand_size],0 + lods byte [esi] + call get_size_operator + cmp al,'(' + je shd_reg_reg_imm + cmp al,10h + jne invalid_operand + lods byte [esi] + cmp al,11h + jne invalid_operand + pop ebx eax + call operand_autodetect + inc [extended_code] + jmp nomem_instruction_ready + shd_reg_reg_imm: + mov al,[operand_size] + or al,al + jz shd_reg_reg_imm_size_ok + cmp al,1 + jne invalid_operand_size + shd_reg_reg_imm_size_ok: + call get_byte_value + mov dl,al + pop ebx eax + call operand_autodetect + call store_nomem_instruction + mov al,dl + stos byte [edi] + jmp instruction_assembled +movx_instruction: + mov [base_code],0Fh + mov [extended_code],al + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_register + mov [postbyte_register],al + mov al,ah + push eax + lods byte [esi] + cmp al,',' + jne invalid_operand + mov [operand_size],0 + lods byte [esi] + call get_size_operator + cmp al,10h + je movx_reg + cmp al,'[' + jne invalid_operand + call get_address + pop eax + mov ah,[operand_size] + or ah,ah + jz movx_unknown_size + cmp ah,al + jae invalid_operand_size + cmp ah,1 + je movx_mem_store + cmp ah,2 + jne invalid_operand_size + inc [extended_code] + movx_mem_store: + call operand_autodetect + jmp instruction_ready + movx_unknown_size: + call recoverable_unknown_size + jmp movx_mem_store + movx_reg: + lods byte [esi] + call convert_register + pop ebx + xchg bl,al + cmp ah,al + jae invalid_operand_size + cmp ah,1 + je movx_reg_8bit + cmp ah,2 + je movx_reg_16bit + jmp invalid_operand_size + movx_reg_8bit: + call operand_autodetect + jmp nomem_instruction_ready + movx_reg_16bit: + call operand_autodetect + inc [extended_code] + jmp nomem_instruction_ready +movsxd_instruction: + mov [base_code],al + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_register + mov [postbyte_register],al + cmp ah,8 + jne invalid_operand_size + lods byte [esi] + cmp al,',' + jne invalid_operand + mov [operand_size],0 + lods byte [esi] + call get_size_operator + cmp al,10h + je movsxd_reg + cmp al,'[' + jne invalid_operand + call get_address + cmp [operand_size],4 + je movsxd_mem_store + cmp [operand_size],0 + jne invalid_operand_size + movsxd_mem_store: + call operand_64bit + jmp instruction_ready + movsxd_reg: + lods byte [esi] + call convert_register + cmp ah,4 + jne invalid_operand_size + mov bl,al + call operand_64bit + jmp nomem_instruction_ready +bt_instruction: + mov [postbyte_register],al + shl al,3 + add al,83h + mov [extended_code],al + mov [base_code],0Fh + lods byte [esi] + call get_size_operator + cmp al,10h + je bt_reg + cmp al,'[' + jne invalid_operand + call get_address + push eax ebx ecx + lods byte [esi] + cmp al,',' + jne invalid_operand + cmp byte [esi],'(' + je bt_mem_imm + cmp byte [esi],11h + jne bt_mem_reg + cmp byte [esi+2],'(' + je bt_mem_imm + bt_mem_reg: + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_register + mov [postbyte_register],al + pop ecx ebx edx + mov al,ah + call operand_autodetect + jmp instruction_ready + bt_mem_imm: + xor al,al + xchg al,[operand_size] + push eax + lods byte [esi] + call get_size_operator + cmp al,'(' + jne invalid_operand + mov al,[operand_size] + or al,al + jz bt_mem_imm_size_ok + cmp al,1 + jne invalid_operand_size + bt_mem_imm_size_ok: + call get_byte_value + mov byte [value],al + pop eax + or al,al + jz bt_mem_imm_nosize + call operand_autodetect + bt_mem_imm_store: + pop ecx ebx edx + mov [extended_code],0BAh + call store_instruction_with_imm8 + jmp instruction_assembled + bt_mem_imm_nosize: + call recoverable_unknown_size + jmp bt_mem_imm_store + bt_reg: + lods byte [esi] + call convert_register + mov bl,al + lods byte [esi] + cmp al,',' + jne invalid_operand + cmp byte [esi],'(' + je bt_reg_imm + cmp byte [esi],11h + jne bt_reg_reg + cmp byte [esi+2],'(' + je bt_reg_imm + bt_reg_reg: + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_register + mov [postbyte_register],al + mov al,ah + call operand_autodetect + jmp nomem_instruction_ready + bt_reg_imm: + xor al,al + xchg al,[operand_size] + push eax ebx + lods byte [esi] + call get_size_operator + cmp al,'(' + jne invalid_operand + mov al,[operand_size] + or al,al + jz bt_reg_imm_size_ok + cmp al,1 + jne invalid_operand_size + bt_reg_imm_size_ok: + call get_byte_value + mov byte [value],al + pop ebx eax + call operand_autodetect + bt_reg_imm_store: + mov [extended_code],0BAh + call store_nomem_instruction + mov al,byte [value] + stos byte [edi] + jmp instruction_assembled +bs_instruction: + mov [extended_code],al + mov [base_code],0Fh + call get_reg_mem + jc bs_reg_reg + mov al,[operand_size] + call operand_autodetect + jmp instruction_ready + bs_reg_reg: + mov al,ah + call operand_autodetect + jmp nomem_instruction_ready + get_reg_mem: + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_register + mov [postbyte_register],al + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,10h + je get_reg_reg + cmp al,'[' + jne invalid_argument + call get_address + clc + ret + get_reg_reg: + lods byte [esi] + call convert_register + mov bl,al + stc + ret + +imul_instruction: + mov [base_code],0F6h + mov [postbyte_register],5 + lods byte [esi] + call get_size_operator + cmp al,10h + je imul_reg + cmp al,'[' + jne invalid_operand + imul_mem: + call get_address + mov al,[operand_size] + cmp al,1 + je imul_mem_8bit + jb imul_mem_nosize + call operand_autodetect + inc [base_code] + jmp instruction_ready + imul_mem_nosize: + call recoverable_unknown_size + imul_mem_8bit: + jmp instruction_ready + imul_reg: + lods byte [esi] + call convert_register + cmp byte [esi],',' + je imul_reg_ + mov bl,al + mov al,ah + cmp al,1 + je imul_reg_8bit + call operand_autodetect + inc [base_code] + imul_reg_8bit: + jmp nomem_instruction_ready + imul_reg_: + mov [postbyte_register],al + inc esi + cmp byte [esi],'(' + je imul_reg_imm + cmp byte [esi],11h + jne imul_reg_noimm + cmp byte [esi+2],'(' + je imul_reg_imm + imul_reg_noimm: + lods byte [esi] + call get_size_operator + cmp al,10h + je imul_reg_reg + cmp al,'[' + jne invalid_operand + imul_reg_mem: + call get_address + push edx ebx ecx + cmp byte [esi],',' + je imul_reg_mem_imm + mov al,[operand_size] + call operand_autodetect + pop ecx ebx edx + mov [base_code],0Fh + mov [extended_code],0AFh + jmp instruction_ready + imul_reg_mem_imm: + inc esi + lods byte [esi] + call get_size_operator + cmp al,'(' + jne invalid_operand + mov al,[operand_size] + cmp al,2 + je imul_reg_mem_imm_16bit + cmp al,4 + je imul_reg_mem_imm_32bit + cmp al,8 + jne invalid_operand_size + imul_reg_mem_imm_64bit: + cmp [size_declared],0 + jne long_immediate_not_encodable + call operand_64bit + call get_simm32 + cmp [value_type],4 + jae long_immediate_not_encodable + jmp imul_reg_mem_imm_32bit_ok + imul_reg_mem_imm_16bit: + call operand_16bit + call get_word_value + mov word [value],ax + cmp [value_type],0 + jne imul_reg_mem_imm_16bit_store + cmp [size_declared],0 + jne imul_reg_mem_imm_16bit_store + cmp ax,-80h + jl imul_reg_mem_imm_16bit_store + cmp ax,80h + jl imul_reg_mem_imm_8bit_store + imul_reg_mem_imm_16bit_store: + pop ecx ebx edx + mov [base_code],69h + call store_instruction_with_imm16 + jmp instruction_assembled + imul_reg_mem_imm_32bit: + call operand_32bit + call get_dword_value + imul_reg_mem_imm_32bit_ok: + mov dword [value],eax + cmp [value_type],0 + jne imul_reg_mem_imm_32bit_store + cmp [size_declared],0 + jne imul_reg_mem_imm_32bit_store + cmp eax,-80h + jl imul_reg_mem_imm_32bit_store + cmp eax,80h + jl imul_reg_mem_imm_8bit_store + imul_reg_mem_imm_32bit_store: + pop ecx ebx edx + mov [base_code],69h + call store_instruction_with_imm32 + jmp instruction_assembled + imul_reg_mem_imm_8bit_store: + pop ecx ebx edx + mov [base_code],6Bh + call store_instruction_with_imm8 + jmp instruction_assembled + imul_reg_imm: + mov bl,[postbyte_register] + dec esi + jmp imul_reg_reg_imm + imul_reg_reg: + lods byte [esi] + call convert_register + mov bl,al + cmp byte [esi],',' + je imul_reg_reg_imm + mov al,ah + call operand_autodetect + mov [base_code],0Fh + mov [extended_code],0AFh + jmp nomem_instruction_ready + imul_reg_reg_imm: + inc esi + lods byte [esi] + call get_size_operator + cmp al,'(' + jne invalid_operand + mov al,[operand_size] + cmp al,2 + je imul_reg_reg_imm_16bit + cmp al,4 + je imul_reg_reg_imm_32bit + cmp al,8 + jne invalid_operand_size + imul_reg_reg_imm_64bit: + cmp [size_declared],0 + jne long_immediate_not_encodable + call operand_64bit + push ebx + call get_simm32 + cmp [value_type],4 + jae long_immediate_not_encodable + jmp imul_reg_reg_imm_32bit_ok + imul_reg_reg_imm_16bit: + call operand_16bit + push ebx + call get_word_value + pop ebx + mov dx,ax + cmp [value_type],0 + jne imul_reg_reg_imm_16bit_store + cmp [size_declared],0 + jne imul_reg_reg_imm_16bit_store + cmp ax,-80h + jl imul_reg_reg_imm_16bit_store + cmp ax,80h + jl imul_reg_reg_imm_8bit_store + imul_reg_reg_imm_16bit_store: + mov [base_code],69h + call store_nomem_instruction + mov ax,dx + call mark_relocation + stos word [edi] + jmp instruction_assembled + imul_reg_reg_imm_32bit: + call operand_32bit + push ebx + call get_dword_value + imul_reg_reg_imm_32bit_ok: + pop ebx + mov edx,eax + cmp [value_type],0 + jne imul_reg_reg_imm_32bit_store + cmp [size_declared],0 + jne imul_reg_reg_imm_32bit_store + cmp eax,-80h + jl imul_reg_reg_imm_32bit_store + cmp eax,80h + jl imul_reg_reg_imm_8bit_store + imul_reg_reg_imm_32bit_store: + mov [base_code],69h + call store_nomem_instruction + mov eax,edx + call mark_relocation + stos dword [edi] + jmp instruction_assembled + imul_reg_reg_imm_8bit_store: + mov [base_code],6Bh + call store_nomem_instruction + mov al,dl + stos byte [edi] + jmp instruction_assembled +in_instruction: + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_register + or al,al + jnz invalid_operand + lods byte [esi] + cmp al,',' + jne invalid_operand + mov al,ah + push eax + mov [operand_size],0 + lods byte [esi] + call get_size_operator + cmp al,'(' + je in_imm + cmp al,10h + je in_reg + jmp invalid_operand + in_reg: + lods byte [esi] + cmp al,22h + jne invalid_operand + pop eax + cmp al,1 + je in_al_dx + cmp al,2 + je in_ax_dx + cmp al,4 + jne invalid_operand_size + in_ax_dx: + call operand_autodetect + mov [base_code],0EDh + call store_instruction_code + jmp instruction_assembled + in_al_dx: + mov al,0ECh + stos byte [edi] + jmp instruction_assembled + in_imm: + mov al,[operand_size] + or al,al + jz in_imm_size_ok + cmp al,1 + jne invalid_operand_size + in_imm_size_ok: + call get_byte_value + mov dl,al + pop eax + cmp al,1 + je in_al_imm + cmp al,2 + je in_ax_imm + cmp al,4 + jne invalid_operand_size + in_ax_imm: + call operand_autodetect + mov [base_code],0E5h + call store_instruction_code + mov al,dl + stos byte [edi] + jmp instruction_assembled + in_al_imm: + mov al,0E4h + stos byte [edi] + mov al,dl + stos byte [edi] + jmp instruction_assembled +out_instruction: + lods byte [esi] + call get_size_operator + cmp al,'(' + je out_imm + cmp al,10h + jne invalid_operand + lods byte [esi] + cmp al,22h + jne invalid_operand + lods byte [esi] + cmp al,',' + jne invalid_operand + mov [operand_size],0 + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_register + or al,al + jnz invalid_operand + mov al,ah + cmp al,1 + je out_dx_al + cmp al,2 + je out_dx_ax + cmp al,4 + jne invalid_operand_size + out_dx_ax: + call operand_autodetect + mov [base_code],0EFh + call store_instruction_code + jmp instruction_assembled + out_dx_al: + mov al,0EEh + stos byte [edi] + jmp instruction_assembled + out_imm: + mov al,[operand_size] + or al,al + jz out_imm_size_ok + cmp al,1 + jne invalid_operand_size + out_imm_size_ok: + call get_byte_value + mov dl,al + lods byte [esi] + cmp al,',' + jne invalid_operand + mov [operand_size],0 + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_register + or al,al + jnz invalid_operand + mov al,ah + cmp al,1 + je out_imm_al + cmp al,2 + je out_imm_ax + cmp al,4 + jne invalid_operand_size + out_imm_ax: + call operand_autodetect + mov [base_code],0E7h + call store_instruction_code + mov al,dl + stos byte [edi] + jmp instruction_assembled + out_imm_al: + mov al,0E6h + stos byte [edi] + mov al,dl + stos byte [edi] + jmp instruction_assembled + +call_instruction: + mov [postbyte_register],10b + mov [base_code],0E8h + mov [extended_code],9Ah + jmp process_jmp +jmp_instruction: + mov [postbyte_register],100b + mov [base_code],0E9h + mov [extended_code],0EAh + process_jmp: + lods byte [esi] + call get_jump_operator + call get_size_operator + cmp al,'(' + je jmp_imm + mov [base_code],0FFh + cmp al,10h + je jmp_reg + cmp al,'[' + jne invalid_operand + jmp_mem: + cmp [jump_type],1 + je illegal_instruction + call get_address + mov edx,eax + mov al,[operand_size] + or al,al + jz jmp_mem_size_not_specified + cmp al,2 + je jmp_mem_16bit + cmp al,4 + je jmp_mem_32bit + cmp al,6 + je jmp_mem_48bit + cmp al,8 + je jmp_mem_64bit + cmp al,10 + je jmp_mem_80bit + jmp invalid_operand_size + jmp_mem_size_not_specified: + cmp [jump_type],3 + je jmp_mem_far + cmp [jump_type],2 + je jmp_mem_near + call recoverable_unknown_size + jmp_mem_near: + cmp [code_type],16 + je jmp_mem_16bit + cmp [code_type],32 + je jmp_mem_near_32bit + jmp_mem_64bit: + cmp [jump_type],3 + je invalid_operand_size + cmp [code_type],64 + jne illegal_instruction + jmp instruction_ready + jmp_mem_far: + cmp [code_type],16 + je jmp_mem_far_32bit + jmp_mem_48bit: + call operand_32bit + jmp_mem_far_store: + cmp [jump_type],2 + je invalid_operand_size + inc [postbyte_register] + jmp instruction_ready + jmp_mem_80bit: + call operand_64bit + jmp jmp_mem_far_store + jmp_mem_far_32bit: + call operand_16bit + jmp jmp_mem_far_store + jmp_mem_32bit: + cmp [jump_type],3 + je jmp_mem_far_32bit + cmp [jump_type],2 + je jmp_mem_near_32bit + cmp [code_type],16 + je jmp_mem_far_32bit + jmp_mem_near_32bit: + cmp [code_type],64 + je illegal_instruction + call operand_32bit + jmp instruction_ready + jmp_mem_16bit: + cmp [jump_type],3 + je invalid_operand_size + call operand_16bit + jmp instruction_ready + jmp_reg: + test [jump_type],1 + jnz invalid_operand + lods byte [esi] + call convert_register + mov bl,al + mov al,ah + cmp al,2 + je jmp_reg_16bit + cmp al,4 + je jmp_reg_32bit + cmp al,8 + jne invalid_operand_size + jmp_reg_64bit: + cmp [code_type],64 + jne illegal_instruction + jmp nomem_instruction_ready + jmp_reg_32bit: + cmp [code_type],64 + je illegal_instruction + call operand_32bit + jmp nomem_instruction_ready + jmp_reg_16bit: + call operand_16bit + jmp nomem_instruction_ready + jmp_imm: + cmp byte [esi],'.' + je invalid_value + mov ebx,esi + dec esi + call skip_symbol + xchg esi,ebx + cmp byte [ebx],':' + je jmp_far + cmp [jump_type],3 + je invalid_operand + jmp_near: + mov al,[operand_size] + cmp al,2 + je jmp_imm_16bit + cmp al,4 + je jmp_imm_32bit + cmp al,8 + je jmp_imm_64bit + or al,al + jnz invalid_operand_size + cmp [code_type],16 + je jmp_imm_16bit + cmp [code_type],64 + je jmp_imm_64bit + jmp_imm_32bit: + cmp [code_type],64 + je invalid_operand_size + call get_address_dword_value + cmp [code_type],16 + jne jmp_imm_32bit_prefix_ok + mov byte [edi],66h + inc edi + jmp_imm_32bit_prefix_ok: + call calculate_jump_offset + cdq + call check_for_short_jump + jc jmp_short + jmp_imm_32bit_store: + mov edx,eax + sub edx,3 + jno jmp_imm_32bit_ok + cmp [code_type],64 + je relative_jump_out_of_range + jmp_imm_32bit_ok: + mov al,[base_code] + stos byte [edi] + mov eax,edx + call mark_relocation + stos dword [edi] + jmp instruction_assembled + jmp_imm_64bit: + cmp [code_type],64 + jne invalid_operand_size + call get_address_qword_value + call calculate_jump_offset + mov ecx,edx + cdq + cmp edx,ecx + jne relative_jump_out_of_range + call check_for_short_jump + jnc jmp_imm_32bit_store + jmp_short: + mov ah,al + mov al,0EBh + stos word [edi] + jmp instruction_assembled + jmp_imm_16bit: + call get_address_word_value + cmp [code_type],16 + je jmp_imm_16bit_prefix_ok + mov byte [edi],66h + inc edi + jmp_imm_16bit_prefix_ok: + call calculate_jump_offset + cwde + cdq + call check_for_short_jump + jc jmp_short + cmp [value_type],0 + jne invalid_use_of_symbol + mov edx,eax + dec edx + mov al,[base_code] + stos byte [edi] + mov eax,edx + stos word [edi] + jmp instruction_assembled + calculate_jump_offset: + add edi,2 + mov ebp,[addressing_space] + call calculate_relative_offset + sub edi,2 + ret + check_for_short_jump: + cmp [jump_type],1 + je forced_short + ja no_short_jump + cmp [base_code],0E8h + je no_short_jump + cmp [value_type],0 + jne no_short_jump + cmp eax,80h + jb short_jump + cmp eax,-80h + jae short_jump + no_short_jump: + clc + ret + forced_short: + cmp [base_code],0E8h + je illegal_instruction + cmp [next_pass_needed],0 + jne jmp_short_value_type_ok + cmp [value_type],0 + jne invalid_use_of_symbol + jmp_short_value_type_ok: + cmp eax,-80h + jae short_jump + cmp eax,80h + jae jump_out_of_range + short_jump: + stc + ret + jump_out_of_range: + cmp [error_line],0 + jne instruction_assembled + mov eax,[current_line] + mov [error_line],eax + mov [error],relative_jump_out_of_range + jmp instruction_assembled + jmp_far: + cmp [jump_type],2 + je invalid_operand + cmp [code_type],64 + je illegal_instruction + mov al,[extended_code] + mov [base_code],al + call get_word_value + push eax + inc esi + lods byte [esi] + cmp al,'(' + jne invalid_operand + mov al,[value_type] + push eax [symbol_identifier] + cmp byte [esi],'.' + je invalid_value + mov al,[operand_size] + cmp al,4 + je jmp_far_16bit + cmp al,6 + je jmp_far_32bit + or al,al + jnz invalid_operand_size + cmp [code_type],16 + jne jmp_far_32bit + jmp_far_16bit: + call get_word_value + mov ebx,eax + call operand_16bit + call store_instruction_code + mov ax,bx + call mark_relocation + stos word [edi] + jmp_far_segment: + pop [symbol_identifier] eax + mov [value_type],al + pop eax + call mark_relocation + stos word [edi] + jmp instruction_assembled + jmp_far_32bit: + call get_dword_value + mov ebx,eax + call operand_32bit + call store_instruction_code + mov eax,ebx + call mark_relocation + stos dword [edi] + jmp jmp_far_segment +conditional_jump: + mov [base_code],al + lods byte [esi] + call get_jump_operator + cmp [jump_type],3 + je invalid_operand + call get_size_operator + cmp al,'(' + jne invalid_operand + cmp byte [esi],'.' + je invalid_value + mov al,[operand_size] + cmp al,2 + je conditional_jump_16bit + cmp al,4 + je conditional_jump_32bit + cmp al,8 + je conditional_jump_64bit + or al,al + jnz invalid_operand_size + cmp [code_type],16 + je conditional_jump_16bit + cmp [code_type],64 + je conditional_jump_64bit + conditional_jump_32bit: + cmp [code_type],64 + je invalid_operand_size + call get_address_dword_value + cmp [code_type],16 + jne conditional_jump_32bit_prefix_ok + mov byte [edi],66h + inc edi + conditional_jump_32bit_prefix_ok: + call calculate_jump_offset + cdq + call check_for_short_jump + jc conditional_jump_short + conditional_jump_32bit_store: + mov edx,eax + sub edx,4 + jno conditional_jump_32bit_range_ok + cmp [code_type],64 + je relative_jump_out_of_range + conditional_jump_32bit_range_ok: + mov ah,[base_code] + add ah,10h + mov al,0Fh + stos word [edi] + mov eax,edx + call mark_relocation + stos dword [edi] + jmp instruction_assembled + conditional_jump_64bit: + cmp [code_type],64 + jne invalid_operand_size + call get_address_qword_value + call calculate_jump_offset + mov ecx,edx + cdq + cmp edx,ecx + jne relative_jump_out_of_range + call check_for_short_jump + jnc conditional_jump_32bit_store + conditional_jump_short: + mov ah,al + mov al,[base_code] + stos word [edi] + jmp instruction_assembled + conditional_jump_16bit: + call get_address_word_value + cmp [code_type],16 + je conditional_jump_16bit_prefix_ok + mov byte [edi],66h + inc edi + conditional_jump_16bit_prefix_ok: + call calculate_jump_offset + cwde + cdq + call check_for_short_jump + jc conditional_jump_short + cmp [value_type],0 + jne invalid_use_of_symbol + mov edx,eax + sub dx,2 + mov ah,[base_code] + add ah,10h + mov al,0Fh + stos word [edi] + mov eax,edx + stos word [edi] + jmp instruction_assembled +loop_instruction_16bit: + cmp [code_type],64 + je illegal_instruction + cmp [code_type],16 + je loop_instruction + mov [operand_prefix],67h + jmp loop_instruction +loop_instruction_32bit: + cmp [code_type],32 + je loop_instruction + mov [operand_prefix],67h + jmp loop_instruction +loop_instruction_64bit: + cmp [code_type],64 + jne illegal_instruction +loop_instruction: + mov [base_code],al + lods byte [esi] + call get_jump_operator + cmp [jump_type],1 + ja invalid_operand + call get_size_operator + cmp al,'(' + jne invalid_operand + cmp byte [esi],'.' + je invalid_value + mov al,[operand_size] + cmp al,2 + je loop_jump_16bit + cmp al,4 + je loop_jump_32bit + cmp al,8 + je loop_jump_64bit + or al,al + jnz invalid_operand_size + cmp [code_type],16 + je loop_jump_16bit + cmp [code_type],64 + je loop_jump_64bit + loop_jump_32bit: + cmp [code_type],64 + je invalid_operand_size + call get_address_dword_value + cmp [code_type],16 + jne loop_jump_32bit_prefix_ok + mov byte [edi],66h + inc edi + loop_jump_32bit_prefix_ok: + call loop_counter_size + call calculate_jump_offset + cdq + make_loop_jump: + call check_for_short_jump + jc conditional_jump_short + scas word [edi] + jmp jump_out_of_range + loop_counter_size: + cmp [operand_prefix],0 + je loop_counter_size_ok + push eax + mov al,[operand_prefix] + stos byte [edi] + pop eax + loop_counter_size_ok: + ret + loop_jump_64bit: + cmp [code_type],64 + jne invalid_operand_size + call get_address_qword_value + call loop_counter_size + call calculate_jump_offset + mov ecx,edx + cdq + cmp edx,ecx + jne relative_jump_out_of_range + jmp make_loop_jump + loop_jump_16bit: + call get_address_word_value + cmp [code_type],16 + je loop_jump_16bit_prefix_ok + mov byte [edi],66h + inc edi + loop_jump_16bit_prefix_ok: + call loop_counter_size + call calculate_jump_offset + cwde + cdq + jmp make_loop_jump + +movs_instruction: + lods byte [esi] + call get_size_operator + cmp al,'[' + jne invalid_operand + call get_address + or eax,eax + jnz invalid_address + or bl,ch + jnz invalid_address + cmp [segment_register],1 + ja invalid_address + push ebx + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,'[' + jne invalid_operand + call get_address + pop edx + or eax,eax + jnz invalid_address + or bl,ch + jnz invalid_address + mov al,dh + mov ah,bh + shr al,4 + shr ah,4 + cmp al,ah + jne address_sizes_do_not_agree + and bh,111b + and dh,111b + cmp bh,6 + jne invalid_address + cmp dh,7 + jne invalid_address + cmp al,2 + je movs_address_16bit + cmp al,4 + je movs_address_32bit + cmp [code_type],64 + jne invalid_address_size + jmp movs_store + movs_address_32bit: + call address_32bit_prefix + jmp movs_store + movs_address_16bit: + cmp [code_type],64 + je invalid_address_size + call address_16bit_prefix + movs_store: + xor ebx,ebx + call store_segment_prefix_if_necessary + mov al,0A4h + movs_check_size: + mov bl,[operand_size] + cmp bl,1 + je simple_instruction + inc al + cmp bl,2 + je simple_instruction_16bit + cmp bl,4 + je simple_instruction_32bit + cmp bl,8 + je simple_instruction_64bit + or bl,bl + jnz invalid_operand_size + call recoverable_unknown_size + jmp simple_instruction +lods_instruction: + lods byte [esi] + call get_size_operator + cmp al,'[' + jne invalid_operand + call get_address + or eax,eax + jnz invalid_address + or bl,ch + jnz invalid_address + cmp bh,26h + je lods_address_16bit + cmp bh,46h + je lods_address_32bit + cmp bh,86h + jne invalid_address + cmp [code_type],64 + jne invalid_address_size + jmp lods_store + lods_address_32bit: + call address_32bit_prefix + jmp lods_store + lods_address_16bit: + cmp [code_type],64 + je invalid_address_size + call address_16bit_prefix + lods_store: + xor ebx,ebx + call store_segment_prefix_if_necessary + mov al,0ACh + jmp movs_check_size +stos_instruction: + mov [base_code],al + lods byte [esi] + call get_size_operator + cmp al,'[' + jne invalid_operand + call get_address + or eax,eax + jnz invalid_address + or bl,ch + jnz invalid_address + cmp bh,27h + je stos_address_16bit + cmp bh,47h + je stos_address_32bit + cmp bh,87h + jne invalid_address + cmp [code_type],64 + jne invalid_address_size + jmp stos_store + stos_address_32bit: + call address_32bit_prefix + jmp stos_store + stos_address_16bit: + cmp [code_type],64 + je invalid_address_size + call address_16bit_prefix + stos_store: + cmp [segment_register],1 + ja invalid_address + mov al,[base_code] + jmp movs_check_size +cmps_instruction: + lods byte [esi] + call get_size_operator + cmp al,'[' + jne invalid_operand + call get_address + or eax,eax + jnz invalid_address + or bl,ch + jnz invalid_address + mov al,[segment_register] + push eax ebx + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,'[' + jne invalid_operand + call get_address + or eax,eax + jnz invalid_address + or bl,ch + jnz invalid_address + pop edx eax + cmp [segment_register],1 + ja invalid_address + mov [segment_register],al + mov al,dh + mov ah,bh + shr al,4 + shr ah,4 + cmp al,ah + jne address_sizes_do_not_agree + and bh,111b + and dh,111b + cmp bh,7 + jne invalid_address + cmp dh,6 + jne invalid_address + cmp al,2 + je cmps_address_16bit + cmp al,4 + je cmps_address_32bit + cmp [code_type],64 + jne invalid_address_size + jmp cmps_store + cmps_address_32bit: + call address_32bit_prefix + jmp cmps_store + cmps_address_16bit: + cmp [code_type],64 + je invalid_address_size + call address_16bit_prefix + cmps_store: + xor ebx,ebx + call store_segment_prefix_if_necessary + mov al,0A6h + jmp movs_check_size +ins_instruction: + lods byte [esi] + call get_size_operator + cmp al,'[' + jne invalid_operand + call get_address + or eax,eax + jnz invalid_address + or bl,ch + jnz invalid_address + cmp bh,27h + je ins_address_16bit + cmp bh,47h + je ins_address_32bit + cmp bh,87h + jne invalid_address + cmp [code_type],64 + jne invalid_address_size + jmp ins_store + ins_address_32bit: + call address_32bit_prefix + jmp ins_store + ins_address_16bit: + cmp [code_type],64 + je invalid_address_size + call address_16bit_prefix + ins_store: + cmp [segment_register],1 + ja invalid_address + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + cmp al,10h + jne invalid_operand + lods byte [esi] + cmp al,22h + jne invalid_operand + mov al,6Ch + ins_check_size: + cmp [operand_size],8 + jne movs_check_size + jmp invalid_operand_size +outs_instruction: + lods byte [esi] + cmp al,10h + jne invalid_operand + lods byte [esi] + cmp al,22h + jne invalid_operand + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,'[' + jne invalid_operand + call get_address + or eax,eax + jnz invalid_address + or bl,ch + jnz invalid_address + cmp bh,26h + je outs_address_16bit + cmp bh,46h + je outs_address_32bit + cmp bh,86h + jne invalid_address + cmp [code_type],64 + jne invalid_address_size + jmp outs_store + outs_address_32bit: + call address_32bit_prefix + jmp outs_store + outs_address_16bit: + cmp [code_type],64 + je invalid_address_size + call address_16bit_prefix + outs_store: + xor ebx,ebx + call store_segment_prefix_if_necessary + mov al,6Eh + jmp ins_check_size +xlat_instruction: + lods byte [esi] + call get_size_operator + cmp al,'[' + jne invalid_operand + call get_address + or eax,eax + jnz invalid_address + or bl,ch + jnz invalid_address + cmp bh,23h + je xlat_address_16bit + cmp bh,43h + je xlat_address_32bit + cmp bh,83h + jne invalid_address + cmp [code_type],64 + jne invalid_address_size + jmp xlat_store + xlat_address_32bit: + call address_32bit_prefix + jmp xlat_store + xlat_address_16bit: + cmp [code_type],64 + je invalid_address_size + call address_16bit_prefix + xlat_store: + call store_segment_prefix_if_necessary + mov al,0D7h + cmp [operand_size],1 + jbe simple_instruction + jmp invalid_operand_size + +pm_word_instruction: + mov ah,al + shr ah,4 + and al,111b + mov [base_code],0Fh + mov [extended_code],ah + mov [postbyte_register],al + lods byte [esi] + call get_size_operator + cmp al,10h + je pm_reg + pm_mem: + cmp al,'[' + jne invalid_operand + call get_address + mov al,[operand_size] + cmp al,2 + je pm_mem_store + or al,al + jnz invalid_operand_size + pm_mem_store: + jmp instruction_ready + pm_reg: + lods byte [esi] + call convert_register + mov bl,al + cmp ah,2 + jne invalid_operand_size + jmp nomem_instruction_ready +pm_store_word_instruction: + mov ah,al + shr ah,4 + and al,111b + mov [base_code],0Fh + mov [extended_code],ah + mov [postbyte_register],al + lods byte [esi] + call get_size_operator + cmp al,10h + jne pm_mem + lods byte [esi] + call convert_register + mov bl,al + mov al,ah + call operand_autodetect + jmp nomem_instruction_ready +lgdt_instruction: + mov [base_code],0Fh + mov [extended_code],1 + mov [postbyte_register],al + lods byte [esi] + call get_size_operator + cmp al,'[' + jne invalid_operand + call get_address + mov al,[operand_size] + cmp al,6 + je lgdt_mem_48bit + cmp al,10 + je lgdt_mem_80bit + or al,al + jnz invalid_operand_size + jmp lgdt_mem_store + lgdt_mem_80bit: + cmp [code_type],64 + jne illegal_instruction + jmp lgdt_mem_store + lgdt_mem_48bit: + cmp [code_type],64 + je illegal_instruction + cmp [postbyte_register],2 + jb lgdt_mem_store + call operand_32bit + lgdt_mem_store: + jmp instruction_ready +lar_instruction: + mov [extended_code],al + mov [base_code],0Fh + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_register + mov [postbyte_register],al + lods byte [esi] + cmp al,',' + jne invalid_operand + xor al,al + xchg al,[operand_size] + call operand_autodetect + lods byte [esi] + call get_size_operator + cmp al,10h + je lar_reg_reg + cmp al,'[' + jne invalid_operand + call get_address + mov al,[operand_size] + or al,al + jz lar_reg_mem + cmp al,2 + jne invalid_operand_size + lar_reg_mem: + jmp instruction_ready + lar_reg_reg: + lods byte [esi] + call convert_register + cmp ah,2 + jne invalid_operand_size + mov bl,al + jmp nomem_instruction_ready +invlpg_instruction: + mov [base_code],0Fh + mov [extended_code],1 + mov [postbyte_register],7 + lods byte [esi] + call get_size_operator + cmp al,'[' + jne invalid_operand + call get_address + jmp instruction_ready +swapgs_instruction: + cmp [code_type],64 + jne illegal_instruction +rdtscp_instruction: + mov [base_code],0Fh + mov [extended_code],1 + mov [postbyte_register],7 + mov bl,al + jmp nomem_instruction_ready + +basic_486_instruction: + mov [base_code],0Fh + mov [extended_code],al + lods byte [esi] + call get_size_operator + cmp al,10h + je basic_486_reg + cmp al,'[' + jne invalid_operand + call get_address + push edx ebx ecx + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_register + mov [postbyte_register],al + pop ecx ebx edx + mov al,ah + cmp al,1 + je basic_486_mem_reg_8bit + call operand_autodetect + inc [extended_code] + basic_486_mem_reg_8bit: + jmp instruction_ready + basic_486_reg: + lods byte [esi] + call convert_register + mov [postbyte_register],al + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_register + mov bl,[postbyte_register] + mov [postbyte_register],al + mov al,ah + cmp al,1 + je basic_486_reg_reg_8bit + call operand_autodetect + inc [extended_code] + basic_486_reg_reg_8bit: + jmp nomem_instruction_ready +bswap_instruction: + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_register + test al,1000b + jz bswap_reg_code_ok + or [rex_prefix],41h + and al,111b + bswap_reg_code_ok: + add al,0C8h + mov [extended_code],al + mov [base_code],0Fh + cmp ah,8 + je bswap_reg64 + cmp ah,4 + jne invalid_operand_size + call operand_32bit + call store_instruction_code + jmp instruction_assembled + bswap_reg64: + call operand_64bit + call store_instruction_code + jmp instruction_assembled +cmpxchgx_instruction: + mov [base_code],0Fh + mov [extended_code],0C7h + mov [postbyte_register],al + lods byte [esi] + call get_size_operator + cmp al,'[' + jne invalid_operand + call get_address + mov ah,1 + xchg [postbyte_register],ah + mov al,[operand_size] + or al,al + jz cmpxchgx_size_ok + cmp al,ah + jne invalid_operand_size + cmpxchgx_size_ok: + cmp ah,16 + jne cmpxchgx_store + call operand_64bit + cmpxchgx_store: + jmp instruction_ready +nop_instruction: + mov ah,[esi] + cmp ah,10h + je extended_nop + cmp ah,11h + je extended_nop + cmp ah,'[' + je extended_nop + stos byte [edi] + jmp instruction_assembled + extended_nop: + mov [base_code],0Fh + mov [extended_code],1Fh + mov [postbyte_register],0 + lods byte [esi] + call get_size_operator + cmp al,10h + je extended_nop_reg + cmp al,'[' + jne invalid_operand + call get_address + mov al,[operand_size] + or al,al + jz extended_nop_store + call operand_autodetect + extended_nop_store: + jmp instruction_ready + extended_nop_reg: + lods byte [esi] + call convert_register + mov bl,al + mov al,ah + call operand_autodetect + jmp nomem_instruction_ready + +basic_fpu_instruction: + mov [postbyte_register],al + mov [base_code],0D8h + lods byte [esi] + call get_size_operator + cmp al,10h + je basic_fpu_streg + cmp al,'[' + je basic_fpu_mem + dec esi + mov ah,[postbyte_register] + cmp ah,2 + jb invalid_operand + cmp ah,3 + ja invalid_operand + mov bl,1 + jmp nomem_instruction_ready + basic_fpu_mem: + call get_address + mov al,[operand_size] + cmp al,4 + je basic_fpu_mem_32bit + cmp al,8 + je basic_fpu_mem_64bit + or al,al + jnz invalid_operand_size + call recoverable_unknown_size + basic_fpu_mem_32bit: + jmp instruction_ready + basic_fpu_mem_64bit: + mov [base_code],0DCh + jmp instruction_ready + basic_fpu_streg: + lods byte [esi] + call convert_fpu_register + mov bl,al + mov ah,[postbyte_register] + cmp ah,2 + je basic_fpu_single_streg + cmp ah,3 + je basic_fpu_single_streg + or al,al + jz basic_fpu_st0 + test ah,110b + jz basic_fpu_streg_st0 + xor [postbyte_register],1 + basic_fpu_streg_st0: + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_fpu_register + or al,al + jnz invalid_operand + mov [base_code],0DCh + jmp nomem_instruction_ready + basic_fpu_st0: + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_fpu_register + mov bl,al + basic_fpu_single_streg: + mov [base_code],0D8h + jmp nomem_instruction_ready +simple_fpu_instruction: + mov ah,al + or ah,11000000b + mov al,0D9h + stos word [edi] + jmp instruction_assembled +fi_instruction: + mov [postbyte_register],al + lods byte [esi] + call get_size_operator + cmp al,'[' + jne invalid_operand + call get_address + mov al,[operand_size] + cmp al,2 + je fi_mem_16bit + cmp al,4 + je fi_mem_32bit + or al,al + jnz invalid_operand_size + call recoverable_unknown_size + fi_mem_32bit: + mov [base_code],0DAh + jmp instruction_ready + fi_mem_16bit: + mov [base_code],0DEh + jmp instruction_ready +fld_instruction: + mov [postbyte_register],al + lods byte [esi] + call get_size_operator + cmp al,10h + je fld_streg + cmp al,'[' + jne invalid_operand + call get_address + mov al,[operand_size] + cmp al,4 + je fld_mem_32bit + cmp al,8 + je fld_mem_64bit + cmp al,10 + je fld_mem_80bit + or al,al + jnz invalid_operand_size + call recoverable_unknown_size + fld_mem_32bit: + mov [base_code],0D9h + jmp instruction_ready + fld_mem_64bit: + mov [base_code],0DDh + jmp instruction_ready + fld_mem_80bit: + mov al,[postbyte_register] + cmp al,0 + je fld_mem_80bit_store + dec [postbyte_register] + cmp al,3 + je fld_mem_80bit_store + jmp invalid_operand_size + fld_mem_80bit_store: + add [postbyte_register],5 + mov [base_code],0DBh + jmp instruction_ready + fld_streg: + lods byte [esi] + call convert_fpu_register + mov bl,al + cmp [postbyte_register],2 + jae fst_streg + mov [base_code],0D9h + jmp nomem_instruction_ready + fst_streg: + mov [base_code],0DDh + jmp nomem_instruction_ready +fild_instruction: + mov [postbyte_register],al + lods byte [esi] + call get_size_operator + cmp al,'[' + jne invalid_operand + call get_address + mov al,[operand_size] + cmp al,2 + je fild_mem_16bit + cmp al,4 + je fild_mem_32bit + cmp al,8 + je fild_mem_64bit + or al,al + jnz invalid_operand_size + call recoverable_unknown_size + fild_mem_32bit: + mov [base_code],0DBh + jmp instruction_ready + fild_mem_16bit: + mov [base_code],0DFh + jmp instruction_ready + fild_mem_64bit: + mov al,[postbyte_register] + cmp al,1 + je fisttp_64bit_store + jb fild_mem_64bit_store + dec [postbyte_register] + cmp al,3 + je fild_mem_64bit_store + jmp invalid_operand_size + fild_mem_64bit_store: + add [postbyte_register],5 + mov [base_code],0DFh + jmp instruction_ready + fisttp_64bit_store: + mov [base_code],0DDh + jmp instruction_ready +fbld_instruction: + mov [postbyte_register],al + lods byte [esi] + call get_size_operator + cmp al,'[' + jne invalid_operand + call get_address + mov al,[operand_size] + or al,al + jz fbld_mem_80bit + cmp al,10 + je fbld_mem_80bit + jmp invalid_operand_size + fbld_mem_80bit: + mov [base_code],0DFh + jmp instruction_ready +faddp_instruction: + mov [postbyte_register],al + mov [base_code],0DEh + mov edx,esi + lods byte [esi] + call get_size_operator + cmp al,10h + je faddp_streg + mov esi,edx + mov bl,1 + jmp nomem_instruction_ready + faddp_streg: + lods byte [esi] + call convert_fpu_register + mov bl,al + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_fpu_register + or al,al + jnz invalid_operand + jmp nomem_instruction_ready +fcompp_instruction: + mov ax,0D9DEh + stos word [edi] + jmp instruction_assembled +fucompp_instruction: + mov ax,0E9DAh + stos word [edi] + jmp instruction_assembled +fxch_instruction: + mov dx,01D9h + jmp fpu_single_operand +ffreep_instruction: + mov dx,00DFh + jmp fpu_single_operand +ffree_instruction: + mov dl,0DDh + mov dh,al + fpu_single_operand: + mov ebx,esi + lods byte [esi] + call get_size_operator + cmp al,10h + je fpu_streg + or dh,dh + jz invalid_operand + mov esi,ebx + shl dh,3 + or dh,11000001b + mov ax,dx + stos word [edi] + jmp instruction_assembled + fpu_streg: + lods byte [esi] + call convert_fpu_register + shl dh,3 + or dh,al + or dh,11000000b + mov ax,dx + stos word [edi] + jmp instruction_assembled + +fstenv_instruction: + mov byte [edi],9Bh + inc edi +fldenv_instruction: + mov [base_code],0D9h + jmp fpu_mem +fstenv_instruction_16bit: + mov byte [edi],9Bh + inc edi +fldenv_instruction_16bit: + call operand_16bit + jmp fldenv_instruction +fstenv_instruction_32bit: + mov byte [edi],9Bh + inc edi +fldenv_instruction_32bit: + call operand_32bit + jmp fldenv_instruction +fsave_instruction_32bit: + mov byte [edi],9Bh + inc edi +fnsave_instruction_32bit: + call operand_32bit + jmp fnsave_instruction +fsave_instruction_16bit: + mov byte [edi],9Bh + inc edi +fnsave_instruction_16bit: + call operand_16bit + jmp fnsave_instruction +fsave_instruction: + mov byte [edi],9Bh + inc edi +fnsave_instruction: + mov [base_code],0DDh + fpu_mem: + mov [postbyte_register],al + lods byte [esi] + call get_size_operator + cmp al,'[' + jne invalid_operand + call get_address + cmp [operand_size],0 + jne invalid_operand_size + jmp instruction_ready +fstcw_instruction: + mov byte [edi],9Bh + inc edi +fldcw_instruction: + mov [postbyte_register],al + mov [base_code],0D9h + lods byte [esi] + call get_size_operator + cmp al,'[' + jne invalid_operand + call get_address + mov al,[operand_size] + or al,al + jz fldcw_mem_16bit + cmp al,2 + je fldcw_mem_16bit + jmp invalid_operand_size + fldcw_mem_16bit: + jmp instruction_ready +fstsw_instruction: + mov al,9Bh + stos byte [edi] +fnstsw_instruction: + mov [base_code],0DDh + mov [postbyte_register],7 + lods byte [esi] + call get_size_operator + cmp al,10h + je fstsw_reg + cmp al,'[' + jne invalid_operand + call get_address + mov al,[operand_size] + or al,al + jz fstsw_mem_16bit + cmp al,2 + je fstsw_mem_16bit + jmp invalid_operand_size + fstsw_mem_16bit: + jmp instruction_ready + fstsw_reg: + lods byte [esi] + call convert_register + cmp ax,0200h + jne invalid_operand + mov ax,0E0DFh + stos word [edi] + jmp instruction_assembled +finit_instruction: + mov byte [edi],9Bh + inc edi +fninit_instruction: + mov ah,al + mov al,0DBh + stos word [edi] + jmp instruction_assembled +fcmov_instruction: + mov dh,0DAh + jmp fcomi_streg +fcomi_instruction: + mov dh,0DBh + jmp fcomi_streg +fcomip_instruction: + mov dh,0DFh + fcomi_streg: + mov dl,al + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_fpu_register + mov ah,al + cmp byte [esi],',' + je fcomi_st0_streg + add ah,dl + mov al,dh + stos word [edi] + jmp instruction_assembled + fcomi_st0_streg: + or ah,ah + jnz invalid_operand + inc esi + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_fpu_register + mov ah,al + add ah,dl + mov al,dh + stos word [edi] + jmp instruction_assembled + +basic_mmx_instruction: + mov [base_code],0Fh + mov [extended_code],al + mmx_instruction: + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_mmx_register + call make_mmx_prefix + mov [postbyte_register],al + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,10h + je mmx_mmreg_mmreg + cmp al,'[' + jne invalid_operand + mmx_mmreg_mem: + call get_address + jmp instruction_ready + mmx_mmreg_mmreg: + lods byte [esi] + call convert_mmx_register + mov bl,al + jmp nomem_instruction_ready +mmx_bit_shift_instruction: + mov [base_code],0Fh + mov [extended_code],al + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_mmx_register + call make_mmx_prefix + mov [postbyte_register],al + lods byte [esi] + cmp al,',' + jne invalid_operand + mov [operand_size],0 + lods byte [esi] + call get_size_operator + cmp al,10h + je mmx_mmreg_mmreg + cmp al,'(' + je mmx_ps_mmreg_imm8 + cmp al,'[' + je mmx_mmreg_mem + jmp invalid_operand + mmx_ps_mmreg_imm8: + call get_byte_value + mov byte [value],al + test [operand_size],not 1 + jnz invalid_value + mov bl,[extended_code] + mov al,bl + shr bl,4 + and al,1111b + add al,70h + mov [extended_code],al + sub bl,0Ch + shl bl,1 + xchg bl,[postbyte_register] + call store_nomem_instruction + mov al,byte [value] + stos byte [edi] + jmp instruction_assembled +pmovmskb_instruction: + mov [base_code],0Fh + mov [extended_code],al + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_register + cmp ah,4 + je pmovmskb_reg_size_ok + cmp [code_type],64 + jne invalid_operand_size + cmp ah,8 + jnz invalid_operand_size + pmovmskb_reg_size_ok: + mov [postbyte_register],al + mov [operand_size],0 + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_mmx_register + mov bl,al + call make_mmx_prefix + cmp [extended_code],0C5h + je mmx_nomem_imm8 + jmp nomem_instruction_ready + mmx_imm8: + push ebx ecx edx + xor cl,cl + xchg cl,[operand_size] + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + test ah,not 1 + jnz invalid_operand_size + mov [operand_size],cl + cmp al,'(' + jne invalid_operand + call get_byte_value + mov byte [value],al + pop edx ecx ebx + call store_instruction_with_imm8 + jmp instruction_assembled + mmx_nomem_imm8: + call store_nomem_instruction + call append_imm8 + jmp instruction_assembled + append_imm8: + mov [operand_size],0 + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + test ah,not 1 + jnz invalid_operand_size + cmp al,'(' + jne invalid_operand + call get_byte_value + stosb + ret +pinsrw_instruction: + mov [extended_code],al + mov [base_code],0Fh + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_mmx_register + call make_mmx_prefix + mov [postbyte_register],al + mov [operand_size],0 + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,10h + je pinsrw_mmreg_reg + cmp al,'[' + jne invalid_operand + call get_address + cmp [operand_size],0 + je mmx_imm8 + cmp [operand_size],2 + jne invalid_operand_size + jmp mmx_imm8 + pinsrw_mmreg_reg: + lods byte [esi] + call convert_register + cmp ah,4 + jne invalid_operand_size + mov bl,al + jmp mmx_nomem_imm8 +pshufw_instruction: + mov [mmx_size],8 + mov [opcode_prefix],al + jmp pshuf_instruction +pshufd_instruction: + mov [mmx_size],16 + mov [opcode_prefix],al + pshuf_instruction: + mov [base_code],0Fh + mov [extended_code],70h + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_mmx_register + cmp ah,[mmx_size] + jne invalid_operand_size + mov [postbyte_register],al + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,10h + je pshuf_mmreg_mmreg + cmp al,'[' + jne invalid_operand + call get_address + jmp mmx_imm8 + pshuf_mmreg_mmreg: + lods byte [esi] + call convert_mmx_register + mov bl,al + jmp mmx_nomem_imm8 +movd_instruction: + mov [base_code],0Fh + mov [extended_code],7Eh + lods byte [esi] + call get_size_operator + cmp al,10h + je movd_reg + cmp al,'[' + jne invalid_operand + call get_address + test [operand_size],not 4 + jnz invalid_operand_size + mov [operand_size],0 + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_mmx_register + call make_mmx_prefix + mov [postbyte_register],al + jmp instruction_ready + movd_reg: + lods byte [esi] + cmp al,0B0h + jae movd_mmreg + call convert_register + cmp ah,4 + jne invalid_operand_size + mov [operand_size],0 + mov bl,al + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_mmx_register + mov [postbyte_register],al + call make_mmx_prefix + jmp nomem_instruction_ready + movd_mmreg: + mov [extended_code],6Eh + call convert_mmx_register + call make_mmx_prefix + mov [postbyte_register],al + mov [operand_size],0 + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,10h + je movd_mmreg_reg + cmp al,'[' + jne invalid_operand + call get_address + test [operand_size],not 4 + jnz invalid_operand_size + jmp instruction_ready + movd_mmreg_reg: + lods byte [esi] + call convert_register + cmp ah,4 + jne invalid_operand_size + mov bl,al + jmp nomem_instruction_ready + make_mmx_prefix: + cmp [vex_required],0 + jne mmx_prefix_for_vex + cmp [operand_size],16 + jne no_mmx_prefix + mov [operand_prefix],66h + no_mmx_prefix: + ret + mmx_prefix_for_vex: + cmp [operand_size],16 + jne invalid_operand + mov [opcode_prefix],66h + ret +movq_instruction: + mov [base_code],0Fh + lods byte [esi] + call get_size_operator + cmp al,10h + je movq_reg + cmp al,'[' + jne invalid_operand + call get_address + test [operand_size],not 8 + jnz invalid_operand_size + mov [operand_size],0 + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_mmx_register + mov [postbyte_register],al + cmp ah,16 + je movq_mem_xmmreg + mov [extended_code],7Fh + jmp instruction_ready + movq_mem_xmmreg: + mov [extended_code],0D6h + mov [opcode_prefix],66h + jmp instruction_ready + movq_reg: + lods byte [esi] + cmp al,0B0h + jae movq_mmreg + call convert_register + cmp ah,8 + jne invalid_operand_size + mov bl,al + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + mov [operand_size],0 + lods byte [esi] + call convert_mmx_register + mov [postbyte_register],al + call make_mmx_prefix + mov [extended_code],7Eh + call operand_64bit + jmp nomem_instruction_ready + movq_mmreg: + call convert_mmx_register + mov [postbyte_register],al + mov [extended_code],6Fh + mov [mmx_size],ah + cmp ah,16 + jne movq_mmreg_ + mov [extended_code],7Eh + mov [opcode_prefix],0F3h + movq_mmreg_: + lods byte [esi] + cmp al,',' + jne invalid_operand + mov [operand_size],0 + lods byte [esi] + call get_size_operator + cmp al,10h + je movq_mmreg_reg + call get_address + test [operand_size],not 8 + jnz invalid_operand_size + jmp instruction_ready + movq_mmreg_reg: + lods byte [esi] + cmp al,0B0h + jae movq_mmreg_mmreg + mov [operand_size],0 + call convert_register + cmp ah,8 + jne invalid_operand_size + mov [extended_code],6Eh + mov [opcode_prefix],0 + mov bl,al + cmp [mmx_size],16 + jne movq_mmreg_reg_store + mov [opcode_prefix],66h + movq_mmreg_reg_store: + call operand_64bit + jmp nomem_instruction_ready + movq_mmreg_mmreg: + call convert_mmx_register + cmp ah,[mmx_size] + jne invalid_operand_size + mov bl,al + jmp nomem_instruction_ready +movdq_instruction: + mov [opcode_prefix],al + mov [base_code],0Fh + mov [extended_code],6Fh + lods byte [esi] + call get_size_operator + cmp al,10h + je movdq_mmreg + cmp al,'[' + jne invalid_operand + call get_address + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_xmm_register + mov [postbyte_register],al + mov [extended_code],7Fh + jmp instruction_ready + movdq_mmreg: + lods byte [esi] + call convert_xmm_register + mov [postbyte_register],al + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,10h + je movdq_mmreg_mmreg + cmp al,'[' + jne invalid_operand + call get_address + jmp instruction_ready + movdq_mmreg_mmreg: + lods byte [esi] + call convert_xmm_register + mov bl,al + jmp nomem_instruction_ready +lddqu_instruction: + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_xmm_register + push eax + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,'[' + jne invalid_operand + call get_address + pop eax + mov [postbyte_register],al + mov [opcode_prefix],0F2h + mov [base_code],0Fh + mov [extended_code],0F0h + jmp instruction_ready + +movdq2q_instruction: + mov [opcode_prefix],0F2h + mov [mmx_size],8 + jmp movq2dq_ +movq2dq_instruction: + mov [opcode_prefix],0F3h + mov [mmx_size],16 + movq2dq_: + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_mmx_register + cmp ah,[mmx_size] + jne invalid_operand_size + mov [postbyte_register],al + mov [operand_size],0 + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_mmx_register + xor [mmx_size],8+16 + cmp ah,[mmx_size] + jne invalid_operand_size + mov bl,al + mov [base_code],0Fh + mov [extended_code],0D6h + jmp nomem_instruction_ready + +sse_ps_instruction_imm8: + mov [immediate_size],1 +sse_ps_instruction: + mov [mmx_size],16 + jmp sse_instruction +sse_pd_instruction_imm8: + mov [immediate_size],1 +sse_pd_instruction: + mov [mmx_size],16 + mov [opcode_prefix],66h + jmp sse_instruction +sse_ss_instruction: + mov [mmx_size],4 + mov [opcode_prefix],0F3h + jmp sse_instruction +sse_sd_instruction: + mov [mmx_size],8 + mov [opcode_prefix],0F2h + jmp sse_instruction +cmp_pd_instruction: + mov [opcode_prefix],66h +cmp_ps_instruction: + mov [mmx_size],16 + mov byte [value],al + mov al,0C2h + jmp sse_instruction +cmp_ss_instruction: + mov [mmx_size],4 + mov [opcode_prefix],0F3h + jmp cmp_sx_instruction +cmpsd_instruction: + mov al,0A7h + mov ah,[esi] + or ah,ah + jz simple_instruction_32bit + cmp ah,0Fh + je simple_instruction_32bit + mov al,-1 +cmp_sd_instruction: + mov [mmx_size],8 + mov [opcode_prefix],0F2h + cmp_sx_instruction: + mov byte [value],al + mov al,0C2h + jmp sse_instruction +comiss_instruction: + mov [mmx_size],4 + jmp sse_instruction +comisd_instruction: + mov [mmx_size],8 + mov [opcode_prefix],66h + jmp sse_instruction +cvtdq2pd_instruction: + mov [opcode_prefix],0F3h +cvtps2pd_instruction: + mov [mmx_size],8 + jmp sse_instruction +cvtpd2dq_instruction: + mov [mmx_size],16 + mov [opcode_prefix],0F2h + jmp sse_instruction +movshdup_instruction: + mov [mmx_size],16 + mov [opcode_prefix],0F3h +sse_instruction: + mov [base_code],0Fh + mov [extended_code],al + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + sse_xmmreg: + lods byte [esi] + call convert_xmm_register + sse_reg: + mov [postbyte_register],al + mov [operand_size],0 + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,10h + je sse_xmmreg_xmmreg + sse_reg_mem: + cmp al,'[' + jne invalid_operand + call get_address + cmp [operand_size],0 + je sse_mem_size_ok + mov al,[mmx_size] + cmp [operand_size],al + jne invalid_operand_size + sse_mem_size_ok: + mov al,[extended_code] + mov ah,[supplemental_code] + cmp al,0C2h + je sse_cmp_mem_ok + cmp ax,443Ah + je sse_cmp_mem_ok + cmp [immediate_size],1 + je mmx_imm8 + cmp [immediate_size],-1 + jne sse_ok + call take_additional_xmm0 + mov [immediate_size],0 + sse_ok: + jmp instruction_ready + sse_cmp_mem_ok: + cmp byte [value],-1 + je mmx_imm8 + call store_instruction_with_imm8 + jmp instruction_assembled + sse_xmmreg_xmmreg: + cmp [operand_prefix],66h + jne sse_xmmreg_xmmreg_ok + cmp [extended_code],12h + je invalid_operand + cmp [extended_code],16h + je invalid_operand + sse_xmmreg_xmmreg_ok: + lods byte [esi] + call convert_xmm_register + mov bl,al + mov al,[extended_code] + mov ah,[supplemental_code] + cmp al,0C2h + je sse_cmp_nomem_ok + cmp ax,443Ah + je sse_cmp_nomem_ok + cmp [immediate_size],1 + je mmx_nomem_imm8 + cmp [immediate_size],-1 + jne sse_nomem_ok + call take_additional_xmm0 + mov [immediate_size],0 + sse_nomem_ok: + jmp nomem_instruction_ready + sse_cmp_nomem_ok: + cmp byte [value],-1 + je mmx_nomem_imm8 + call store_nomem_instruction + mov al,byte [value] + stosb + jmp instruction_assembled + take_additional_xmm0: + cmp byte [esi],',' + jne additional_xmm0_ok + inc esi + lods byte [esi] + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_xmm_register + test al,al + jnz invalid_operand + additional_xmm0_ok: + ret + +pslldq_instruction: + mov [postbyte_register],al + mov [opcode_prefix],66h + mov [base_code],0Fh + mov [extended_code],73h + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_xmm_register + mov bl,al + jmp mmx_nomem_imm8 +movpd_instruction: + mov [opcode_prefix],66h +movps_instruction: + mov [base_code],0Fh + mov [extended_code],al + mov [mmx_size],16 + jmp sse_mov_instruction +movss_instruction: + mov [mmx_size],4 + mov [opcode_prefix],0F3h + jmp sse_movs +movsd_instruction: + mov al,0A5h + mov ah,[esi] + or ah,ah + jz simple_instruction_32bit + cmp ah,0Fh + je simple_instruction_32bit + mov [mmx_size],8 + mov [opcode_prefix],0F2h + sse_movs: + mov [base_code],0Fh + mov [extended_code],10h + jmp sse_mov_instruction +sse_mov_instruction: + lods byte [esi] + call get_size_operator + cmp al,10h + je sse_xmmreg + sse_mem: + cmp al,'[' + jne invalid_operand + inc [extended_code] + call get_address + cmp [operand_size],0 + je sse_mem_xmmreg + mov al,[mmx_size] + cmp [operand_size],al + jne invalid_operand_size + mov [operand_size],0 + sse_mem_xmmreg: + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_xmm_register + mov [postbyte_register],al + jmp instruction_ready +movlpd_instruction: + mov [opcode_prefix],66h +movlps_instruction: + mov [base_code],0Fh + mov [extended_code],al + mov [mmx_size],8 + lods byte [esi] + call get_size_operator + cmp al,10h + jne sse_mem + lods byte [esi] + call convert_xmm_register + mov [postbyte_register],al + mov [operand_size],0 + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + jmp sse_reg_mem +movhlps_instruction: + mov [base_code],0Fh + mov [extended_code],al + mov [mmx_size],0 + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_xmm_register + mov [postbyte_register],al + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,10h + je sse_xmmreg_xmmreg_ok + jmp invalid_operand +maskmovq_instruction: + mov cl,8 + jmp maskmov_instruction +maskmovdqu_instruction: + mov cl,16 + mov [opcode_prefix],66h + maskmov_instruction: + mov [base_code],0Fh + mov [extended_code],0F7h + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_mmx_register + cmp ah,cl + jne invalid_operand_size + mov [postbyte_register],al + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_mmx_register + mov bl,al + jmp nomem_instruction_ready +movmskpd_instruction: + mov [opcode_prefix],66h +movmskps_instruction: + mov [base_code],0Fh + mov [extended_code],50h + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_register + mov [postbyte_register],al + cmp ah,4 + je movmskps_reg_ok + cmp ah,8 + jne invalid_operand_size + cmp [code_type],64 + jne invalid_operand + movmskps_reg_ok: + mov [operand_size],0 + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,10h + je sse_xmmreg_xmmreg_ok + jmp invalid_operand + +cvtpi2pd_instruction: + mov [opcode_prefix],66h +cvtpi2ps_instruction: + mov [base_code],0Fh + mov [extended_code],al + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_xmm_register + mov [postbyte_register],al + mov [operand_size],0 + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,10h + je cvtpi_xmmreg_xmmreg + cmp al,'[' + jne invalid_operand + call get_address + cmp [operand_size],0 + je cvtpi_size_ok + cmp [operand_size],8 + jne invalid_operand_size + cvtpi_size_ok: + jmp instruction_ready + cvtpi_xmmreg_xmmreg: + lods byte [esi] + call convert_mmx_register + cmp ah,8 + jne invalid_operand_size + mov bl,al + jmp nomem_instruction_ready +cvtsi2ss_instruction: + mov [opcode_prefix],0F3h + jmp cvtsi_instruction +cvtsi2sd_instruction: + mov [opcode_prefix],0F2h + cvtsi_instruction: + mov [base_code],0Fh + mov [extended_code],al + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_xmm_register + mov [postbyte_register],al + cvtsi_xmmreg: + mov [operand_size],0 + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,10h + je cvtsi_xmmreg_reg + cmp al,'[' + jne invalid_operand + call get_address + cmp [operand_size],0 + je cvtsi_size_ok + cmp [operand_size],4 + je cvtsi_size_ok + cmp [operand_size],8 + jne invalid_operand_size + call operand_64bit + cvtsi_size_ok: + jmp instruction_ready + cvtsi_xmmreg_reg: + lods byte [esi] + call convert_register + cmp ah,4 + je cvtsi_xmmreg_reg_store + cmp ah,8 + jne invalid_operand_size + call operand_64bit + cvtsi_xmmreg_reg_store: + mov bl,al + jmp nomem_instruction_ready +cvtps2pi_instruction: + mov [mmx_size],8 + jmp cvtpd_instruction +cvtpd2pi_instruction: + mov [opcode_prefix],66h + mov [mmx_size],16 + cvtpd_instruction: + mov [base_code],0Fh + mov [extended_code],al + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_mmx_register + cmp ah,8 + jne invalid_operand_size + mov [operand_size],0 + jmp sse_reg +cvtss2si_instruction: + mov [opcode_prefix],0F3h + mov [mmx_size],4 + jmp cvt2si_instruction +cvtsd2si_instruction: + mov [opcode_prefix],0F2h + mov [mmx_size],8 + cvt2si_instruction: + mov [extended_code],al + mov [base_code],0Fh + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_register + mov [operand_size],0 + cmp ah,4 + je sse_reg + cmp ah,8 + jne invalid_operand_size + call operand_64bit + jmp sse_reg + +ssse3_instruction: + mov [base_code],0Fh + mov [extended_code],38h + mov [supplemental_code],al + jmp mmx_instruction +palignr_instruction: + mov [base_code],0Fh + mov [extended_code],3Ah + mov [supplemental_code],0Fh + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_mmx_register + call make_mmx_prefix + mov [postbyte_register],al + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,10h + je palignr_mmreg_mmreg + cmp al,'[' + jne invalid_operand + call get_address + jmp mmx_imm8 + palignr_mmreg_mmreg: + lods byte [esi] + call convert_mmx_register + mov bl,al + jmp mmx_nomem_imm8 +amd3dnow_instruction: + mov [base_code],0Fh + mov [extended_code],0Fh + mov byte [value],al + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_mmx_register + cmp ah,8 + jne invalid_operand_size + mov [postbyte_register],al + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,10h + je amd3dnow_mmreg_mmreg + cmp al,'[' + jne invalid_operand + call get_address + call store_instruction_with_imm8 + jmp instruction_assembled + amd3dnow_mmreg_mmreg: + lods byte [esi] + call convert_mmx_register + cmp ah,8 + jne invalid_operand_size + mov bl,al + call store_nomem_instruction + mov al,byte [value] + stos byte [edi] + jmp instruction_assembled + +sse4_instruction_38_xmm0: + mov [immediate_size],-1 +sse4_instruction_38: + mov [mmx_size],16 + mov [opcode_prefix],66h + mov [supplemental_code],al + mov al,38h + jmp sse_instruction +sse4_ss_instruction_3a_imm8: + mov [immediate_size],1 + mov [mmx_size],4 + jmp sse4_instruction_3a_setup +sse4_sd_instruction_3a_imm8: + mov [immediate_size],1 + mov [mmx_size],8 + jmp sse4_instruction_3a_setup +sse4_instruction_3a_imm8: + mov [immediate_size],1 + mov [mmx_size],16 + sse4_instruction_3a_setup: + mov [opcode_prefix],66h + mov [supplemental_code],al + mov al,3Ah + jmp sse_instruction +pclmulqdq_instruction: + mov byte [value],al + mov [mmx_size],16 + mov al,44h + jmp sse4_instruction_3a_setup +extractps_instruction: + mov [opcode_prefix],66h + mov [base_code],0Fh + mov [extended_code],3Ah + mov [supplemental_code],17h + lods byte [esi] + call get_size_operator + cmp al,10h + je extractps_reg + cmp al,'[' + jne invalid_operand + call get_address + cmp [operand_size],4 + je extractps_size_ok + cmp [operand_size],0 + jne invalid_operand_size + extractps_size_ok: + push edx ebx ecx + mov [operand_size],0 + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_xmm_register + mov [postbyte_register],al + pop ecx ebx edx + jmp mmx_imm8 + extractps_reg: + lods byte [esi] + call convert_register + push eax + mov [operand_size],0 + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_xmm_register + mov [postbyte_register],al + pop ebx + mov al,bh + cmp al,4 + je mmx_nomem_imm8 + cmp al,8 + jne invalid_operand_size + call operand_64bit + jmp mmx_nomem_imm8 +insertps_instruction: + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_xmm_register + mov [postbyte_register],al + insertps_xmmreg: + mov [opcode_prefix],66h + mov [base_code],0Fh + mov [extended_code],3Ah + mov [supplemental_code],21h + mov [operand_size],0 + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,10h + je insertps_xmmreg_reg + cmp al,'[' + jne invalid_operand + call get_address + cmp [operand_size],4 + je insertps_size_ok + cmp [operand_size],0 + jne invalid_operand_size + insertps_size_ok: + jmp mmx_imm8 + insertps_xmmreg_reg: + lods byte [esi] + call convert_mmx_register + mov bl,al + jmp mmx_nomem_imm8 +pextrq_instruction: + mov [mmx_size],8 + jmp pextr_instruction +pextrd_instruction: + mov [mmx_size],4 + jmp pextr_instruction +pextrw_instruction: + mov [mmx_size],2 + jmp pextr_instruction +pextrb_instruction: + mov [mmx_size],1 + pextr_instruction: + mov [opcode_prefix],66h + mov [base_code],0Fh + mov [extended_code],3Ah + mov [supplemental_code],al + lods byte [esi] + call get_size_operator + cmp al,10h + je pextr_reg + cmp al,'[' + jne invalid_operand + call get_address + mov al,[mmx_size] + cmp al,[operand_size] + je pextr_size_ok + cmp [operand_size],0 + jne invalid_operand_size + pextr_size_ok: + cmp al,8 + jne pextr_prefix_ok + call operand_64bit + pextr_prefix_ok: + push edx ebx ecx + mov [operand_size],0 + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_xmm_register + mov [postbyte_register],al + pop ecx ebx edx + jmp mmx_imm8 + pextr_reg: + lods byte [esi] + call convert_register + cmp [mmx_size],4 + ja pextrq_reg + cmp ah,4 + je pextr_reg_size_ok + cmp [code_type],64 + jne pextr_invalid_size + cmp ah,8 + je pextr_reg_size_ok + pextr_invalid_size: + jmp invalid_operand_size + pextrq_reg: + cmp ah,8 + jne pextr_invalid_size + call operand_64bit + pextr_reg_size_ok: + mov [operand_size],0 + push eax + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_mmx_register + mov ebx,eax + pop eax + mov [postbyte_register],al + mov al,ah + cmp [mmx_size],2 + jne pextr_reg_store + mov [opcode_prefix],0 + mov [extended_code],0C5h + call make_mmx_prefix + jmp mmx_nomem_imm8 + pextr_reg_store: + cmp bh,16 + jne invalid_operand_size + xchg bl,[postbyte_register] + call operand_autodetect + jmp mmx_nomem_imm8 +pinsrb_instruction: + mov [mmx_size],1 + jmp pinsr_instruction +pinsrd_instruction: + mov [mmx_size],4 + jmp pinsr_instruction +pinsrq_instruction: + mov [mmx_size],8 + call operand_64bit + pinsr_instruction: + mov [opcode_prefix],66h + mov [base_code],0Fh + mov [extended_code],3Ah + mov [supplemental_code],al + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_xmm_register + mov [postbyte_register],al + pinsr_xmmreg: + mov [operand_size],0 + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,10h + je pinsr_xmmreg_reg + cmp al,'[' + jne invalid_operand + call get_address + cmp [operand_size],0 + je mmx_imm8 + mov al,[mmx_size] + cmp al,[operand_size] + je mmx_imm8 + jmp invalid_operand_size + pinsr_xmmreg_reg: + lods byte [esi] + call convert_register + mov bl,al + cmp [mmx_size],8 + je pinsrq_xmmreg_reg + cmp ah,4 + je mmx_nomem_imm8 + jmp invalid_operand_size + pinsrq_xmmreg_reg: + cmp ah,8 + je mmx_nomem_imm8 + jmp invalid_operand_size +pmovsxbw_instruction: + mov [mmx_size],8 + jmp pmovsx_instruction +pmovsxbd_instruction: + mov [mmx_size],4 + jmp pmovsx_instruction +pmovsxbq_instruction: + mov [mmx_size],2 + jmp pmovsx_instruction +pmovsxwd_instruction: + mov [mmx_size],8 + jmp pmovsx_instruction +pmovsxwq_instruction: + mov [mmx_size],4 + jmp pmovsx_instruction +pmovsxdq_instruction: + mov [mmx_size],8 + pmovsx_instruction: + mov [opcode_prefix],66h + mov [base_code],0Fh + mov [extended_code],38h + mov [supplemental_code],al + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_xmm_register + mov [postbyte_register],al + lods byte [esi] + cmp al,',' + jne invalid_operand + mov [operand_size],0 + lods byte [esi] + call get_size_operator + cmp al,10h + je pmovsx_xmmreg_reg + cmp al,'[' + jne invalid_operand + call get_address + cmp [operand_size],0 + je instruction_ready + mov al,[mmx_size] + cmp al,[operand_size] + jne invalid_operand_size + jmp instruction_ready + pmovsx_xmmreg_reg: + lods byte [esi] + call convert_xmm_register + mov bl,al + jmp nomem_instruction_ready + +fxsave_instruction_64bit: + call operand_64bit +fxsave_instruction: + mov [extended_code],0AEh + mov [base_code],0Fh + mov [postbyte_register],al + lods byte [esi] + call get_size_operator + cmp al,'[' + jne invalid_operand + call get_address + mov ah,[operand_size] + or ah,ah + jz fxsave_size_ok + mov al,[postbyte_register] + cmp al,111b + je clflush_size_check + cmp al,10b + jb invalid_operand_size + cmp al,11b + ja invalid_operand_size + cmp ah,4 + jne invalid_operand_size + jmp fxsave_size_ok + clflush_size_check: + cmp ah,1 + jne invalid_operand_size + fxsave_size_ok: + jmp instruction_ready +prefetch_instruction: + mov [extended_code],18h + prefetch_mem_8bit: + mov [base_code],0Fh + mov [postbyte_register],al + lods byte [esi] + call get_size_operator + cmp al,'[' + jne invalid_operand + or ah,ah + jz prefetch_size_ok + cmp ah,1 + jne invalid_operand_size + prefetch_size_ok: + call get_address + jmp instruction_ready +amd_prefetch_instruction: + mov [extended_code],0Dh + jmp prefetch_mem_8bit +fence_instruction: + mov bl,al + mov ax,0AE0Fh + stos word [edi] + mov al,bl + stos byte [edi] + jmp instruction_assembled +pause_instruction: + mov ax,90F3h + stos word [edi] + jmp instruction_assembled +movntq_instruction: + mov [mmx_size],8 + jmp movnt_instruction +movntpd_instruction: + mov [opcode_prefix],66h +movntps_instruction: + mov [mmx_size],16 + movnt_instruction: + mov [extended_code],al + mov [base_code],0Fh + lods byte [esi] + call get_size_operator + cmp al,'[' + jne invalid_operand + call get_address + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_mmx_register + cmp ah,[mmx_size] + jne invalid_operand_size + mov [postbyte_register],al + jmp instruction_ready + +movntsd_instruction: + mov [opcode_prefix],0F2h + mov [mmx_size],8 + jmp movnts_instruction +movntss_instruction: + mov [opcode_prefix],0F3h + mov [mmx_size],4 + movnts_instruction: + mov [extended_code],al + mov [base_code],0Fh + lods byte [esi] + call get_size_operator + cmp al,'[' + jne invalid_operand + call get_address + mov al,[operand_size] + cmp al,[mmx_size] + je movnts_size_ok + test al,al + jnz invalid_operand_size + movnts_size_ok: + lods byte [esi] + cmp al,',' + jne invalid_operand + mov [operand_size],0 + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_xmm_register + mov [postbyte_register],al + jmp instruction_ready + +movnti_instruction: + mov [base_code],0Fh + mov [extended_code],al + lods byte [esi] + call get_size_operator + cmp al,'[' + jne invalid_operand + call get_address + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_register + cmp ah,4 + je movnti_store + cmp ah,8 + jne invalid_operand_size + call operand_64bit + movnti_store: + mov [postbyte_register],al + jmp instruction_ready +monitor_instruction: + mov [postbyte_register],al + cmp byte [esi],0 + je monitor_instruction_store + cmp byte [esi],0Fh + je monitor_instruction_store + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_register + cmp ax,0400h + jne invalid_operand + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_register + cmp ax,0401h + jne invalid_operand + cmp [postbyte_register],0C8h + jne monitor_instruction_store + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_register + cmp ax,0402h + jne invalid_operand + monitor_instruction_store: + mov ax,010Fh + stos word [edi] + mov al,[postbyte_register] + stos byte [edi] + jmp instruction_assembled +movntdqa_instruction: + mov [opcode_prefix],66h + mov [base_code],0Fh + mov [extended_code],38h + mov [supplemental_code],al + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_xmm_register + mov [postbyte_register],al + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,'[' + jne invalid_operand + call get_address + jmp instruction_ready + +extrq_instruction: + mov [opcode_prefix],66h + mov [base_code],0Fh + mov [extended_code],78h + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_xmm_register + mov [postbyte_register],al + mov [operand_size],0 + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,10h + je extrq_xmmreg_xmmreg + test ah,not 1 + jnz invalid_operand_size + cmp al,'(' + jne invalid_operand + xor bl,bl + xchg bl,[postbyte_register] + call store_nomem_instruction + call get_byte_value + stosb + call append_imm8 + jmp instruction_assembled + extrq_xmmreg_xmmreg: + inc [extended_code] + lods byte [esi] + call convert_xmm_register + mov bl,al + jmp nomem_instruction_ready +insertq_instruction: + mov [opcode_prefix],0F2h + mov [base_code],0Fh + mov [extended_code],78h + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_xmm_register + mov [postbyte_register],al + mov [operand_size],0 + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_xmm_register + mov bl,al + cmp byte [esi],',' + je insertq_with_imm + inc [extended_code] + jmp nomem_instruction_ready + insertq_with_imm: + call store_nomem_instruction + call append_imm8 + call append_imm8 + jmp instruction_assembled + +crc32_instruction: + mov [opcode_prefix],0F2h + mov [base_code],0Fh + mov [extended_code],38h + mov [supplemental_code],0F0h + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_register + mov [postbyte_register],al + cmp ah,8 + je crc32_reg64 + cmp ah,4 + jne invalid_operand + lods byte [esi] + cmp al,',' + jne invalid_operand + mov [operand_size],0 + lods byte [esi] + call get_size_operator + cmp al,10h + je crc32_reg32_reg + cmp al,'[' + jne invalid_operand + call get_address + mov al,[operand_size] + test al,al + jz crc32_unknown_size + cmp al,1 + je crc32_reg32_mem_store + cmp al,4 + ja invalid_operand_size + inc [supplemental_code] + call operand_autodetect + crc32_reg32_mem_store: + jmp instruction_ready + crc32_unknown_size: + call recoverable_unknown_size + jmp crc32_reg32_mem_store + crc32_reg32_reg: + lods byte [esi] + call convert_register + mov bl,al + mov al,ah + cmp al,1 + je crc32_reg32_reg_store + cmp al,4 + ja invalid_operand_size + inc [supplemental_code] + call operand_autodetect + crc32_reg32_reg_store: + jmp nomem_instruction_ready + crc32_reg64: + lods byte [esi] + cmp al,',' + jne invalid_operand + mov [operand_size],0 + call operand_64bit + lods byte [esi] + call get_size_operator + cmp al,10h + je crc32_reg64_reg + cmp al,'[' + jne invalid_operand + call get_address + mov ah,[operand_size] + mov al,8 + test ah,ah + jz crc32_unknown_size + cmp ah,1 + je crc32_reg32_mem_store + cmp ah,al + jne invalid_operand_size + inc [supplemental_code] + jmp crc32_reg32_mem_store + crc32_reg64_reg: + lods byte [esi] + call convert_register + mov bl,al + mov al,8 + cmp ah,1 + je crc32_reg32_reg_store + cmp ah,al + jne invalid_operand_size + inc [supplemental_code] + jmp crc32_reg32_reg_store +popcnt_instruction: + mov [opcode_prefix],0F3h + jmp bs_instruction +movbe_instruction: + mov [supplemental_code],al + mov [extended_code],38h + mov [base_code],0Fh + lods byte [esi] + call get_size_operator + cmp al,'[' + je movbe_mem + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_register + mov [postbyte_register],al + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,'[' + jne invalid_argument + call get_address + mov al,[operand_size] + call operand_autodetect + jmp instruction_ready + movbe_mem: + inc [supplemental_code] + call get_address + push edx ebx ecx + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_register + mov [postbyte_register],al + pop ecx ebx edx + mov al,[operand_size] + call operand_autodetect + jmp instruction_ready +adx_instruction: + mov [base_code],0Fh + mov [extended_code],38h + mov [supplemental_code],0F6h + mov [operand_prefix],al + call get_reg_mem + jc adx_reg_reg + mov al,[operand_size] + cmp al,4 + je instruction_ready + cmp al,8 + jne invalid_operand_size + call operand_64bit + jmp instruction_ready + adx_reg_reg: + cmp ah,4 + je nomem_instruction_ready + cmp ah,8 + jne invalid_operand_size + call operand_64bit + jmp nomem_instruction_ready + +simple_vmx_instruction: + mov ah,al + mov al,0Fh + stos byte [edi] + mov al,1 + stos word [edi] + jmp instruction_assembled +vmclear_instruction: + mov [opcode_prefix],66h + jmp vmx_instruction +vmxon_instruction: + mov [opcode_prefix],0F3h +vmx_instruction: + mov [postbyte_register],al + mov [extended_code],0C7h + lods byte [esi] + call get_size_operator + cmp al,'[' + jne invalid_operand + call get_address + mov al,[operand_size] + or al,al + jz vmx_size_ok + cmp al,8 + jne invalid_operand_size + vmx_size_ok: + mov [base_code],0Fh + jmp instruction_ready +vmread_instruction: + mov [extended_code],78h + lods byte [esi] + call get_size_operator + cmp al,10h + je vmread_nomem + cmp al,'[' + jne invalid_operand + call get_address + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_register + mov [postbyte_register],al + call vmread_check_size + jmp vmx_size_ok + vmread_nomem: + lods byte [esi] + call convert_register + push eax + call vmread_check_size + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_register + mov [postbyte_register],al + call vmread_check_size + pop ebx + mov [base_code],0Fh + jmp nomem_instruction_ready + vmread_check_size: + cmp [code_type],64 + je vmread_long + cmp [operand_size],4 + jne invalid_operand_size + ret + vmread_long: + cmp [operand_size],8 + jne invalid_operand_size + ret +vmwrite_instruction: + mov [extended_code],79h + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_register + mov [postbyte_register],al + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,10h + je vmwrite_nomem + cmp al,'[' + jne invalid_operand + call get_address + call vmread_check_size + jmp vmx_size_ok + vmwrite_nomem: + lods byte [esi] + call convert_register + mov bl,al + mov [base_code],0Fh + jmp nomem_instruction_ready +vmx_inv_instruction: + mov [opcode_prefix],66h + mov [extended_code],38h + mov [supplemental_code],al + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_register + mov [postbyte_register],al + call vmread_check_size + mov [operand_size],0 + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,'[' + jne invalid_operand + call get_address + mov al,[operand_size] + or al,al + jz vmx_size_ok + cmp al,16 + jne invalid_operand_size + jmp vmx_size_ok +simple_svm_instruction: + push eax + mov [base_code],0Fh + mov [extended_code],1 + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_register + or al,al + jnz invalid_operand + simple_svm_detect_size: + cmp ah,2 + je simple_svm_16bit + cmp ah,4 + je simple_svm_32bit + cmp [code_type],64 + jne invalid_operand_size + jmp simple_svm_store + simple_svm_16bit: + cmp [code_type],16 + je simple_svm_store + cmp [code_type],64 + je invalid_operand_size + jmp prefixed_svm_store + simple_svm_32bit: + cmp [code_type],32 + je simple_svm_store + prefixed_svm_store: + mov al,67h + stos byte [edi] + simple_svm_store: + call store_instruction_code + pop eax + stos byte [edi] + jmp instruction_assembled +skinit_instruction: + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_register + cmp ax,0400h + jne invalid_operand + mov al,0DEh + jmp simple_vmx_instruction +invlpga_instruction: + push eax + mov [base_code],0Fh + mov [extended_code],1 + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_register + or al,al + jnz invalid_operand + mov bl,ah + mov [operand_size],0 + lods byte [esi] + cmp al,',' + jne invalid_operand + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_register + cmp ax,0401h + jne invalid_operand + mov ah,bl + jmp simple_svm_detect_size + +rdrand_instruction: + mov [base_code],0Fh + mov [extended_code],0C7h + mov [postbyte_register],al + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_register + mov bl,al + mov al,ah + call operand_autodetect + jmp nomem_instruction_ready +rdfsbase_instruction: + cmp [code_type],64 + jne illegal_instruction + mov [opcode_prefix],0F3h + mov [base_code],0Fh + mov [extended_code],0AEh + mov [postbyte_register],al + lods byte [esi] + call get_size_operator + cmp al,10h + jne invalid_operand + lods byte [esi] + call convert_register + mov bl,al + mov al,ah + cmp ah,2 + je invalid_operand_size + call operand_autodetect + jmp nomem_instruction_ready + +xabort_instruction: + lods byte [esi] + call get_size_operator + cmp ah,1 + ja invalid_operand_size + cmp al,'(' + jne invalid_operand + call get_byte_value + mov dl,al + mov ax,0F8C6h + stos word [edi] + mov al,dl + stos byte [edi] + jmp instruction_assembled +xbegin_instruction: + lods byte [esi] + cmp al,'(' + jne invalid_operand + mov al,[code_type] + cmp al,64 + je xbegin_64bit + cmp al,32 + je xbegin_32bit + xbegin_16bit: + call get_address_word_value + add edi,4 + mov ebp,[addressing_space] + call calculate_relative_offset + sub edi,4 + shl eax,16 + mov ax,0F8C7h + stos dword [edi] + jmp instruction_assembled + xbegin_32bit: + call get_address_dword_value + jmp xbegin_address_ok + xbegin_64bit: + call get_address_qword_value + xbegin_address_ok: + add edi,5 + mov ebp,[addressing_space] + call calculate_relative_offset + sub edi,5 + mov edx,eax + cwde + cmp eax,edx + jne xbegin_rel32 + mov al,66h + stos byte [edi] + mov eax,edx + shl eax,16 + mov ax,0F8C7h + stos dword [edi] + jmp instruction_assembled + xbegin_rel32: + sub edx,1 + jno xbegin_rel32_ok + cmp [code_type],64 + je relative_jump_out_of_range + xbegin_rel32_ok: + mov ax,0F8C7h + stos word [edi] + mov eax,edx + stos dword [edi] + jmp instruction_assembled + +convert_register: + mov ah,al + shr ah,4 + and al,0Fh + cmp ah,8 + je match_register_size + cmp ah,4 + ja invalid_operand + cmp ah,1 + ja match_register_size + cmp al,4 + jb match_register_size + or ah,ah + jz high_byte_register + or [rex_prefix],40h + match_register_size: + cmp ah,[operand_size] + je register_size_ok + cmp [operand_size],0 + jne operand_sizes_do_not_match + mov [operand_size],ah + register_size_ok: + ret + high_byte_register: + mov ah,1 + or [rex_prefix],80h + jmp match_register_size +convert_fpu_register: + mov ah,al + shr ah,4 + and al,111b + cmp ah,10 + jne invalid_operand + jmp match_register_size +convert_mmx_register: + mov ah,al + shr ah,4 + cmp ah,0Ch + je xmm_register + ja invalid_operand + and al,111b + cmp ah,0Bh + jne invalid_operand + mov ah,8 + cmp [vex_required],0 + jne invalid_operand + jmp match_register_size + xmm_register: + and al,0Fh + mov ah,16 + cmp al,8 + jb match_register_size + cmp [code_type],64 + jne invalid_operand + jmp match_register_size +convert_xmm_register: + mov ah,al + shr ah,4 + cmp ah,0Ch + je xmm_register + jmp invalid_operand +get_size_operator: + xor ah,ah + cmp al,11h + jne no_size_operator + mov [size_declared],1 + lods word [esi] + xchg al,ah + mov [size_override],1 + cmp ah,[operand_size] + je size_operator_ok + cmp [operand_size],0 + jne operand_sizes_do_not_match + mov [operand_size],ah + size_operator_ok: + ret + no_size_operator: + mov [size_declared],0 + cmp al,'[' + jne size_operator_ok + mov [size_override],0 + ret +get_jump_operator: + mov [jump_type],0 + cmp al,12h + jne jump_operator_ok + lods word [esi] + mov [jump_type],al + mov al,ah + jump_operator_ok: + ret +get_address: + mov [segment_register],0 + mov [address_size],0 + mov [free_address_range],0 + mov al,[code_type] + shr al,3 + mov [value_size],al + mov al,[esi] + and al,11110000b + cmp al,60h + jne get_size_prefix + lods byte [esi] + sub al,60h + mov [segment_register],al + mov al,[esi] + and al,11110000b + get_size_prefix: + cmp al,70h + jne address_size_prefix_ok + lods byte [esi] + sub al,70h + cmp al,2 + jb invalid_address_size + cmp al,8 + ja invalid_address_size + mov [address_size],al + mov [value_size],al + address_size_prefix_ok: + call calculate_address + cmp byte [esi-1],']' + jne invalid_address + mov [address_high],edx + mov edx,eax + cmp [code_type],64 + jne address_ok + or bx,bx + jnz address_ok + test ch,0Fh + jnz address_ok + calculate_relative_address: + mov edx,[address_symbol] + mov [symbol_identifier],edx + mov edx,[address_high] + mov ebp,[addressing_space] + call calculate_relative_offset + mov [address_high],edx + cdq + cmp edx,[address_high] + je address_high_ok + call recoverable_overflow + address_high_ok: + mov edx,eax + ror ecx,16 + mov cl,[value_type] + rol ecx,16 + mov bx,0FF00h + address_ok: + ret +operand_16bit: + cmp [code_type],16 + je size_prefix_ok + mov [operand_prefix],66h + ret +operand_32bit: + cmp [code_type],16 + jne size_prefix_ok + mov [operand_prefix],66h + size_prefix_ok: + ret +operand_64bit: + cmp [code_type],64 + jne illegal_instruction + or [rex_prefix],48h + ret +operand_autodetect: + cmp al,2 + je operand_16bit + cmp al,4 + je operand_32bit + cmp al,8 + je operand_64bit + jmp invalid_operand_size +store_segment_prefix_if_necessary: + mov al,[segment_register] + or al,al + jz segment_prefix_ok + cmp al,4 + ja segment_prefix_386 + cmp [code_type],64 + je segment_prefix_ok + cmp al,3 + je ss_prefix + jb segment_prefix_86 + cmp bl,25h + je segment_prefix_86 + cmp bh,25h + je segment_prefix_86 + cmp bh,45h + je segment_prefix_86 + cmp bh,44h + je segment_prefix_86 + ret + ss_prefix: + cmp bl,25h + je segment_prefix_ok + cmp bh,25h + je segment_prefix_ok + cmp bh,45h + je segment_prefix_ok + cmp bh,44h + je segment_prefix_ok + jmp segment_prefix_86 +store_segment_prefix: + mov al,[segment_register] + or al,al + jz segment_prefix_ok + cmp al,5 + jae segment_prefix_386 + segment_prefix_86: + dec al + shl al,3 + add al,26h + stos byte [edi] + jmp segment_prefix_ok + segment_prefix_386: + add al,64h-5 + stos byte [edi] + segment_prefix_ok: + ret +store_instruction_code: + cmp [vex_required],0 + jne store_vex_instruction_code + mov al,[operand_prefix] + or al,al + jz operand_prefix_ok + stos byte [edi] + operand_prefix_ok: + mov al,[opcode_prefix] + or al,al + jz opcode_prefix_ok + stos byte [edi] + opcode_prefix_ok: + mov al,[rex_prefix] + test al,40h + jz rex_prefix_ok + cmp [code_type],64 + jne invalid_operand + test al,0B0h + jnz disallowed_combination_of_registers + stos byte [edi] + rex_prefix_ok: + mov al,[base_code] + stos byte [edi] + cmp al,0Fh + jne instruction_code_ok + store_extended_code: + mov al,[extended_code] + stos byte [edi] + cmp al,38h + je store_supplemental_code + cmp al,3Ah + je store_supplemental_code + instruction_code_ok: + ret + store_supplemental_code: + mov al,[supplemental_code] + stos byte [edi] + ret +store_nomem_instruction: + test [postbyte_register],1000b + jz nomem_reg_code_ok + or [rex_prefix],44h + and [postbyte_register],111b + nomem_reg_code_ok: + test bl,1000b + jz nomem_rm_code_ok + or [rex_prefix],41h + and bl,111b + nomem_rm_code_ok: + call store_instruction_code + mov al,[postbyte_register] + shl al,3 + or al,bl + or al,11000000b + stos byte [edi] + ret +store_instruction: + mov [current_offset],edi + test [postbyte_register],1000b + jz reg_code_ok + or [rex_prefix],44h + and [postbyte_register],111b + reg_code_ok: + cmp [code_type],64 + jne address_value_ok + xor eax,eax + bt edx,31 + sbb eax,[address_high] + jz address_value_ok + cmp [address_high],0 + jne address_value_out_of_range + test ch,44h + jnz address_value_ok + test bx,8080h + jz address_value_ok + address_value_out_of_range: + call recoverable_overflow + address_value_ok: + call store_segment_prefix_if_necessary + test [vex_required],4 + jnz address_vsib + or bx,bx + jz address_immediate + cmp bx,0F800h + je address_rip_based + cmp bx,0F400h + je address_eip_based + cmp bx,0FF00h + je address_relative + mov al,bl + or al,bh + and al,11110000b + cmp al,80h + je postbyte_64bit + cmp al,40h + je postbyte_32bit + cmp al,20h + jne invalid_address + cmp [code_type],64 + je invalid_address_size + call address_16bit_prefix + call store_instruction_code + cmp bl,bh + jbe determine_16bit_address + xchg bl,bh + determine_16bit_address: + cmp bx,2600h + je address_si + cmp bx,2700h + je address_di + cmp bx,2300h + je address_bx + cmp bx,2500h + je address_bp + cmp bx,2625h + je address_bp_si + cmp bx,2725h + je address_bp_di + cmp bx,2723h + je address_bx_di + cmp bx,2623h + jne invalid_address + address_bx_si: + xor al,al + jmp postbyte_16bit + address_bx_di: + mov al,1 + jmp postbyte_16bit + address_bp_si: + mov al,10b + jmp postbyte_16bit + address_bp_di: + mov al,11b + jmp postbyte_16bit + address_si: + mov al,100b + jmp postbyte_16bit + address_di: + mov al,101b + jmp postbyte_16bit + address_bx: + mov al,111b + jmp postbyte_16bit + address_bp: + mov al,110b + postbyte_16bit: + test ch,22h + jnz address_16bit_value + or ch,ch + jnz address_sizes_do_not_agree + cmp edx,10000h + jge value_out_of_range + cmp edx,-8000h + jl value_out_of_range + or dx,dx + jz address + cmp dx,80h + jb address_8bit_value + cmp dx,-80h + jae address_8bit_value + address_16bit_value: + or al,10000000b + mov cl,[postbyte_register] + shl cl,3 + or al,cl + stos byte [edi] + mov eax,edx + stos word [edi] + ret + address_8bit_value: + or al,01000000b + mov cl,[postbyte_register] + shl cl,3 + or al,cl + stos byte [edi] + mov al,dl + stos byte [edi] + cmp dx,80h + jge value_out_of_range + cmp dx,-80h + jl value_out_of_range + ret + address: + cmp al,110b + je address_8bit_value + mov cl,[postbyte_register] + shl cl,3 + or al,cl + stos byte [edi] + ret + address_vsib: + mov al,bl + shr al,4 + cmp al,0Ch + je vector_index_ok + cmp al,0Dh + jne invalid_address + vector_index_ok: + mov al,bh + shr al,4 + cmp al,4 + je postbyte_32bit + cmp [code_type],64 + je address_prefix_ok + test al,al + jnz invalid_address + postbyte_32bit: + call address_32bit_prefix + jmp address_prefix_ok + postbyte_64bit: + cmp [code_type],64 + jne invalid_address_size + address_prefix_ok: + cmp bl,44h + je invalid_address + cmp bl,84h + je invalid_address + test bh,1000b + jz base_code_ok + or [rex_prefix],41h + base_code_ok: + test bl,1000b + jz index_code_ok + or [rex_prefix],42h + index_code_ok: + call store_instruction_code + or cl,cl + jz only_base_register + base_and_index: + mov al,100b + xor ah,ah + cmp cl,1 + je scale_ok + cmp cl,2 + je scale_1 + cmp cl,4 + je scale_2 + or ah,11000000b + jmp scale_ok + scale_2: + or ah,10000000b + jmp scale_ok + scale_1: + or ah,01000000b + scale_ok: + or bh,bh + jz only_index_register + and bl,111b + shl bl,3 + or ah,bl + and bh,111b + or ah,bh + sib_ready: + test ch,44h + jnz sib_address_32bit_value + test ch,88h + jnz sib_address_32bit_value + or ch,ch + jnz address_sizes_do_not_agree + cmp bh,5 + je address_value + or edx,edx + jz sib_address + address_value: + cmp edx,80h + jb sib_address_8bit_value + cmp edx,-80h + jae sib_address_8bit_value + sib_address_32bit_value: + or al,10000000b + mov cl,[postbyte_register] + shl cl,3 + or al,cl + stos word [edi] + jmp store_address_32bit_value + sib_address_8bit_value: + or al,01000000b + mov cl,[postbyte_register] + shl cl,3 + or al,cl + stos word [edi] + mov al,dl + stos byte [edi] + cmp edx,80h + jge value_out_of_range + cmp edx,-80h + jl value_out_of_range + ret + sib_address: + mov cl,[postbyte_register] + shl cl,3 + or al,cl + stos word [edi] + ret + only_index_register: + or ah,101b + and bl,111b + shl bl,3 + or ah,bl + mov cl,[postbyte_register] + shl cl,3 + or al,cl + stos word [edi] + test ch,44h + jnz store_address_32bit_value + test ch,88h + jnz store_address_32bit_value + or ch,ch + jnz invalid_address_size + jmp store_address_32bit_value + zero_index_register: + mov bl,4 + mov cl,1 + jmp base_and_index + only_base_register: + mov al,bh + and al,111b + cmp al,4 + je zero_index_register + test ch,44h + jnz simple_address_32bit_value + test ch,88h + jnz simple_address_32bit_value + or ch,ch + jnz address_sizes_do_not_agree + or edx,edx + jz simple_address + cmp edx,80h + jb simple_address_8bit_value + cmp edx,-80h + jae simple_address_8bit_value + simple_address_32bit_value: + or al,10000000b + mov cl,[postbyte_register] + shl cl,3 + or al,cl + stos byte [edi] + jmp store_address_32bit_value + simple_address_8bit_value: + or al,01000000b + mov cl,[postbyte_register] + shl cl,3 + or al,cl + stos byte [edi] + mov al,dl + stos byte [edi] + cmp edx,80h + jge value_out_of_range + cmp edx,-80h + jl value_out_of_range + ret + simple_address: + cmp al,5 + je simple_address_8bit_value + mov cl,[postbyte_register] + shl cl,3 + or al,cl + stos byte [edi] + ret + address_immediate: + cmp [code_type],64 + je address_immediate_sib + test ch,44h + jnz address_immediate_32bit + test ch,88h + jnz address_immediate_32bit + test ch,22h + jnz address_immediate_16bit + or ch,ch + jnz invalid_address_size + cmp [code_type],16 + je addressing_16bit + address_immediate_32bit: + call address_32bit_prefix + call store_instruction_code + store_immediate_address: + mov al,101b + mov cl,[postbyte_register] + shl cl,3 + or al,cl + stos byte [edi] + store_address_32bit_value: + test ch,0F0h + jz address_32bit_relocation_ok + mov eax,ecx + shr eax,16 + cmp al,4 + jne address_32bit_relocation + mov al,2 + address_32bit_relocation: + xchg [value_type],al + mov ebx,[address_symbol] + xchg ebx,[symbol_identifier] + call mark_relocation + mov [value_type],al + mov [symbol_identifier],ebx + address_32bit_relocation_ok: + mov eax,edx + stos dword [edi] + ret + store_address_64bit_value: + test ch,0F0h + jz address_64bit_relocation_ok + mov eax,ecx + shr eax,16 + xchg [value_type],al + mov ebx,[address_symbol] + xchg ebx,[symbol_identifier] + call mark_relocation + mov [value_type],al + mov [symbol_identifier],ebx + address_64bit_relocation_ok: + mov eax,edx + stos dword [edi] + mov eax,[address_high] + stos dword [edi] + ret + address_immediate_sib: + test ch,44h + jnz address_immediate_sib_32bit + test ch,not 88h + jnz invalid_address_size + address_immediate_sib_store: + call store_instruction_code + mov al,100b + mov ah,100101b + mov cl,[postbyte_register] + shl cl,3 + or al,cl + stos word [edi] + jmp store_address_32bit_value + address_immediate_sib_32bit: + test ecx,0FF0000h + jnz address_immediate_sib_nosignextend + test edx,80000000h + jz address_immediate_sib_store + address_immediate_sib_nosignextend: + call address_32bit_prefix + jmp address_immediate_sib_store + address_eip_based: + mov al,67h + stos byte [edi] + address_rip_based: + cmp [code_type],64 + jne invalid_address + call store_instruction_code + jmp store_immediate_address + address_relative: + call store_instruction_code + movzx eax,[immediate_size] + add eax,edi + sub eax,[current_offset] + add eax,5 + sub edx,eax + jo value_out_of_range + mov al,101b + mov cl,[postbyte_register] + shl cl,3 + or al,cl + stos byte [edi] + shr ecx,16 + xchg [value_type],cl + mov ebx,[address_symbol] + xchg ebx,[symbol_identifier] + mov eax,edx + call mark_relocation + mov [value_type],cl + mov [symbol_identifier],ebx + stos dword [edi] + ret + addressing_16bit: + cmp edx,10000h + jge address_immediate_32bit + cmp edx,-8000h + jl address_immediate_32bit + movzx edx,dx + address_immediate_16bit: + call address_16bit_prefix + call store_instruction_code + mov al,110b + mov cl,[postbyte_register] + shl cl,3 + or al,cl + stos byte [edi] + mov eax,edx + stos word [edi] + cmp edx,10000h + jge value_out_of_range + cmp edx,-8000h + jl value_out_of_range + ret + address_16bit_prefix: + cmp [code_type],16 + je instruction_prefix_ok + mov al,67h + stos byte [edi] + ret + address_32bit_prefix: + cmp [code_type],32 + je instruction_prefix_ok + mov al,67h + stos byte [edi] + instruction_prefix_ok: + ret +store_instruction_with_imm8: + mov [immediate_size],1 + call store_instruction + mov al,byte [value] + stos byte [edi] + ret +store_instruction_with_imm16: + mov [immediate_size],2 + call store_instruction + mov ax,word [value] + call mark_relocation + stos word [edi] + ret +store_instruction_with_imm32: + mov [immediate_size],4 + call store_instruction + mov eax,dword [value] + call mark_relocation + stos dword [edi] + ret From cf43aa9111cd14d105514e85cc362c1d43905cce Mon Sep 17 00:00:00 2001 From: Viacheslav Kroilov Date: Sat, 14 Jun 2014 20:11:58 +0400 Subject: [PATCH 020/268] Rename ASSEMBLE.INC to ASSEMBLE.inc --- samples/Assembly/{ASSEMBLE.INC => ASSEMBLE.inc} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename samples/Assembly/{ASSEMBLE.INC => ASSEMBLE.inc} (100%) diff --git a/samples/Assembly/ASSEMBLE.INC b/samples/Assembly/ASSEMBLE.inc similarity index 100% rename from samples/Assembly/ASSEMBLE.INC rename to samples/Assembly/ASSEMBLE.inc From 5ff16e1195d6e54a29f4dbaba65369aefba503ae Mon Sep 17 00:00:00 2001 From: Viacheslav Kroilov Date: Sat, 14 Jun 2014 20:12:50 +0400 Subject: [PATCH 021/268] Rename FASM.ASM to FASM.asm --- samples/Assembly/{FASM.ASM => FASM.asm} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename samples/Assembly/{FASM.ASM => FASM.asm} (100%) diff --git a/samples/Assembly/FASM.ASM b/samples/Assembly/FASM.asm similarity index 100% rename from samples/Assembly/FASM.ASM rename to samples/Assembly/FASM.asm From 309d14a95503fd67a0fe97c693c5f6ac71b51a55 Mon Sep 17 00:00:00 2001 From: Viacheslav Kroilov Date: Sat, 14 Jun 2014 20:13:19 +0400 Subject: [PATCH 022/268] Rename SYSTEM.INC to SYSTEM.inc --- samples/Assembly/{SYSTEM.INC => SYSTEM.inc} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename samples/Assembly/{SYSTEM.INC => SYSTEM.inc} (100%) diff --git a/samples/Assembly/SYSTEM.INC b/samples/Assembly/SYSTEM.inc similarity index 100% rename from samples/Assembly/SYSTEM.INC rename to samples/Assembly/SYSTEM.inc From db15367775c6219635ba046381cabb6f1658f58f Mon Sep 17 00:00:00 2001 From: Viacheslav Kroilov Date: Sat, 14 Jun 2014 20:13:38 +0400 Subject: [PATCH 023/268] Rename X86_64.INC to X86_64.inc --- samples/Assembly/{X86_64.INC => X86_64.inc} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename samples/Assembly/{X86_64.INC => X86_64.inc} (100%) diff --git a/samples/Assembly/X86_64.INC b/samples/Assembly/X86_64.inc similarity index 100% rename from samples/Assembly/X86_64.INC rename to samples/Assembly/X86_64.inc From 625bed8fca6961ab66bd5125d59ddaece1962aa7 Mon Sep 17 00:00:00 2001 From: James Dennes Date: Sun, 15 Jun 2014 16:19:59 +0200 Subject: [PATCH 024/268] Add failing test for vendored Octicons --- test/test_blob.rb | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/test/test_blob.rb b/test/test_blob.rb index 23a649ec..7b55f8d1 100644 --- a/test/test_blob.rb +++ b/test/test_blob.rb @@ -374,7 +374,7 @@ class TestBlob < Test::Unit::TestCase # NuGet Packages assert blob("packages/Modernizr.2.0.6/Content/Scripts/modernizr-2.0.6-development-only.js").vendored? - + # Html5shiv assert blob("Scripts/html5shiv.js").vendored? assert blob("Scripts/html5shiv.min.js").vendored? @@ -399,6 +399,11 @@ class TestBlob < Test::Unit::TestCase assert blob("subproject/gradlew").vendored? assert blob("subproject/gradlew.bat").vendored? assert blob("subproject/gradle/wrapper/gradle-wrapper.properties").vendored? + + # Octicons + assert blob("octicons.css").vendored? + assert blob("public/octicons.min.css").vendored? + assert blob("public/octicons/sprockets-octicons.scss").vendored? end def test_language From 548e4f18456fa1c050cc0a3f9bb17a4decc352d5 Mon Sep 17 00:00:00 2001 From: James Dennes Date: Sun, 15 Jun 2014 16:22:18 +0200 Subject: [PATCH 025/268] Add Octicons entries to vendor.yml --- lib/linguist/vendor.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/linguist/vendor.yml b/lib/linguist/vendor.yml index a77fa417..4d8481e5 100644 --- a/lib/linguist/vendor.yml +++ b/lib/linguist/vendor.yml @@ -204,3 +204,7 @@ - ^vignettes/ - ^inst/extdata/ +# Octicons +- octicons.css +- octicons.min.css +- sprockets-octicons.scss From 1b7f26091c108b13a6882758b1c26604626ea67b Mon Sep 17 00:00:00 2001 From: Gusakov Nikita Date: Sat, 26 Apr 2014 16:00:14 +0400 Subject: [PATCH 026/268] Added generated rule for Zephir language --- lib/linguist/generated.rb | 10 +++- lib/linguist/samples.json | 62 +++++++++++++++------- samples/Zephir/filenames/exception.zep.c | 28 ++++++++++ samples/Zephir/filenames/exception.zep.h | 4 ++ samples/Zephir/filenames/exception.zep.php | 8 +++ test/test_blob.rb | 7 +++ 6 files changed, 100 insertions(+), 19 deletions(-) create mode 100644 samples/Zephir/filenames/exception.zep.c create mode 100644 samples/Zephir/filenames/exception.zep.h create mode 100644 samples/Zephir/filenames/exception.zep.php diff --git a/lib/linguist/generated.rb b/lib/linguist/generated.rb index 5c3de141..761288f0 100644 --- a/lib/linguist/generated.rb +++ b/lib/linguist/generated.rb @@ -63,7 +63,8 @@ module Linguist generated_jni_header? || composer_lock? || node_modules? || - vcr_cassette? + vcr_cassette? || + generated_by_zephir? end # Internal: Is the blob an XCode project file? @@ -237,6 +238,13 @@ module Linguist !!name.match(/composer.lock/) end + # Internal: Is the blob a generated by Zephir + # + # Returns true or false. + def generated_by_zephir? + !!name.match(/.\.zep\.(?:c|h|php)$/) + end + # Is the blob a VCR Cassette file? # # Returns true or false diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index 1f3db02c..400b897e 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -741,10 +741,15 @@ ], "YAML": [ ".gemrc" + ], + "Zephir": [ + "exception.zep.c", + "exception.zep.h", + "exception.zep.php" ] }, - "tokens_total": 614434, - "languages_total": 812, + "tokens_total": 614493, + "languages_total": 815, "tokens": { "ABAP": { "*/**": 1, @@ -66810,27 +66815,27 @@ }, "Zephir": { "%": 10, - "{": 56, + "{": 58, "#define": 1, "MAX_FACTOR": 3, - "}": 50, - "namespace": 3, - "Test": 2, - ";": 86, - "#include": 1, + "}": 52, + "namespace": 4, + "Test": 4, + ";": 91, + "#include": 9, "static": 1, "long": 3, "fibonacci": 4, - "(": 55, + "(": 59, "n": 5, - ")": 53, + ")": 57, "if": 39, - "<": 1, - "return": 25, + "<": 2, + "return": 26, "else": 11, "-": 25, "+": 5, - "class": 2, + "class": 3, "Cblock": 1, "public": 22, "function": 22, @@ -66838,7 +66843,29 @@ "int": 3, "a": 6, "testCblock2": 1, - "Router": 1, + "#ifdef": 1, + "HAVE_CONFIG_H": 1, + "#endif": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "ZEPHIR_INIT_CLASS": 2, + "Test_Router_Exception": 2, + "ZEPHIR_REGISTER_CLASS_EX": 1, + "Router": 3, + "Exception": 4, + "test": 1, + "router_exception": 1, + "zend_exception_get_default": 1, + "TSRMLS_C": 1, + "NULL": 1, + "SUCCESS": 1, + "extern": 1, + "zend_class_entry": 1, + "*test_router_exception_ce": 1, + "php": 1, + "extends": 1, "Route": 1, "protected": 9, "_pattern": 3, @@ -66917,7 +66944,6 @@ "typeof": 2, "throw": 1, "new": 1, - "Exception": 1, "explode": 1, "switch": 1, "count": 1, @@ -67189,7 +67215,7 @@ "XSLT": 44, "Xtend": 399, "YAML": 77, - "Zephir": 1026, + "Zephir": 1085, "Zimpl": 123 }, "languages": { @@ -67380,8 +67406,8 @@ "XSLT": 1, "Xtend": 2, "YAML": 2, - "Zephir": 2, + "Zephir": 5, "Zimpl": 1 }, - "md5": "3e0901633ee5729c6dac371442522f33" + "md5": "c05a50dcc060bd36069504536d354c35" } \ No newline at end of file diff --git a/samples/Zephir/filenames/exception.zep.c b/samples/Zephir/filenames/exception.zep.c new file mode 100644 index 00000000..c1e0bc09 --- /dev/null +++ b/samples/Zephir/filenames/exception.zep.c @@ -0,0 +1,28 @@ + +#ifdef HAVE_CONFIG_H +#include "../../ext_config.h" +#endif + +#include +#include "../../php_ext.h" +#include "../../ext.h" + +#include +#include +#include + +#include "kernel/main.h" + + +/** + * Test\Router\Exception + * + * Exceptions generated by the router + */ +ZEPHIR_INIT_CLASS(Test_Router_Exception) { + + ZEPHIR_REGISTER_CLASS_EX(Test\\Router, Exception, test, router_exception, zend_exception_get_default(TSRMLS_C), NULL, 0); + + return SUCCESS; + +} diff --git a/samples/Zephir/filenames/exception.zep.h b/samples/Zephir/filenames/exception.zep.h new file mode 100644 index 00000000..49d56b9c --- /dev/null +++ b/samples/Zephir/filenames/exception.zep.h @@ -0,0 +1,4 @@ + +extern zend_class_entry *test_router_exception_ce; + +ZEPHIR_INIT_CLASS(Test_Router_Exception); diff --git a/samples/Zephir/filenames/exception.zep.php b/samples/Zephir/filenames/exception.zep.php new file mode 100644 index 00000000..f6087a8d --- /dev/null +++ b/samples/Zephir/filenames/exception.zep.php @@ -0,0 +1,8 @@ + Date: Mon, 16 Jun 2014 16:28:21 -0500 Subject: [PATCH 027/268] Samples --- lib/linguist/samples.json | 1329 ++++++++++++++++++++++++++++++++++++- 1 file changed, 1326 insertions(+), 3 deletions(-) diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index 1f3db02c..c238bfe1 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -26,6 +26,10 @@ "AspectJ": [ ".aj" ], + "Assembly": [ + ".asm", + ".inc" + ], "ATS": [ ".atxt", ".dats", @@ -743,8 +747,8 @@ ".gemrc" ] }, - "tokens_total": 614434, - "languages_total": 812, + "tokens_total": 636184, + "languages_total": 816, "tokens": { "ABAP": { "*/**": 1, @@ -2559,6 +2563,1323 @@ "_cache.put": 1, "_cache.size": 1 }, + "Assembly": { + ";": 20, + "flat": 4, + "assembler": 6, + "core": 2, + "Copyright": 4, + "(": 13, + "c": 4, + ")": 6, + "-": 87, + "Tomasz": 4, + "Grysztar.": 4, + "All": 4, + "rights": 4, + "reserved.": 4, + "xor": 52, + "eax": 510, + "mov": 1253, + "[": 2026, + "stub_size": 1, + "]": 2026, + "current_pass": 16, + "ax": 87, + "resolver_flags": 1, + "number_of_sections": 1, + "actual_fixups_size": 1, + "assembler_loop": 2, + "labels_list": 3, + "tagged_blocks": 23, + "additional_memory": 6, + "free_additional_memory": 2, + "additional_memory_end": 9, + "structures_buffer": 9, + "esi": 619, + "source_start": 1, + "edi": 250, + "code_start": 2, + "dword": 87, + "adjustment": 4, + "+": 232, + "addressing_space": 17, + "error_line": 16, + "counter": 13, + "format_flags": 2, + "number_of_relocations": 1, + "undefined_data_end": 4, + "file_extension": 1, + "next_pass_needed": 16, + "al": 1174, + "output_format": 3, + "adjustment_sign": 2, + "code_type": 106, + "call": 845, + "init_addressing_space": 6, + "pass_loop": 2, + "assemble_line": 3, + "jnc": 11, + "cmp": 1088, + "je": 485, + "pass_done": 2, + "sub": 64, + "h": 376, + "current_line": 24, + "jmp": 450, + "missing_end_directive": 7, + "close_pass": 1, + "check_symbols": 2, + "memory_end": 7, + "jae": 34, + "symbols_checked": 2, + "test": 95, + "byte": 549, + "jz": 107, + "symbol_defined_ok": 5, + "cx": 42, + "jne": 485, + "and": 50, + "not": 42, + "or": 194, + "use_prediction_ok": 5, + "jnz": 125, + "check_use_prediction": 2, + "use_misprediction": 3, + "check_next_symbol": 5, + "define_misprediction": 4, + "check_define_prediction": 2, + "add": 76, + "LABEL_STRUCTURE_SIZE": 1, + "next_pass": 3, + "assemble_ok": 2, + "error": 7, + "undefined_symbol": 2, + "error_confirmed": 3, + "error_info": 2, + "error_handler": 3, + "esp": 14, + "ret": 70, + "inc": 87, + "passes_limit": 3, + "code_cannot_be_generated": 1, + "create_addressing_space": 1, + "ebx": 336, + "Ah": 25, + "illegal_instruction": 48, + "Ch": 11, + "jbe": 11, + "out_of_memory": 19, + "ja": 28, + "lods": 366, + "assemble_instruction": 2, + "jb": 34, + "source_end": 2, + "define_label": 2, + "define_constant": 2, + "label_addressing_space": 2, + "Fh": 73, + "new_line": 2, + "code_type_setting": 2, + "segment_prefix": 2, + "instruction_assembled": 138, + "prefixed_instruction": 11, + "symbols_file": 4, + "continue_line": 8, + "line_assembled": 3, + "invalid_use_of_symbol": 17, + "reserved_word_used_as_symbol": 6, + "label_size": 5, + "make_label": 3, + "edx": 219, + "cl": 42, + "ebp": 49, + "ds": 21, + "sbb": 9, + "jp": 2, + "label_value_ok": 2, + "recoverable_overflow": 4, + "address_sign": 4, + "make_virtual_label": 2, + "xchg": 31, + "ch": 55, + "shr": 30, + "neg": 4, + "setnz": 5, + "ah": 229, + "finish_label": 2, + "setne": 14, + "finish_label_symbol": 2, + "b": 30, + "label_symbol_ok": 2, + "new_label": 2, + "symbol_already_defined": 3, + "btr": 2, + "jc": 28, + "requalified_label": 2, + "label_made": 4, + "push": 150, + "get_constant_value": 4, + "dl": 58, + "size_override": 7, + "get_value": 2, + "pop": 99, + "bl": 124, + "ecx": 153, + "constant_referencing_mode_ok": 2, + "value_type": 42, + "make_constant": 2, + "value_sign": 3, + "constant_symbol_ok": 2, + "symbol_identifier": 4, + "new_constant": 2, + "redeclare_constant": 2, + "requalified_constant": 2, + "make_addressing_space_label": 3, + "dx": 27, + "operand_size": 121, + "operand_prefix": 9, + "opcode_prefix": 30, + "rex_prefix": 9, + "vex_required": 2, + "vex_register": 1, + "immediate_size": 9, + "instruction_handler": 32, + "movzx": 13, + "word": 79, + "extra_characters_on_line": 8, + "clc": 11, + "dec": 30, + "stc": 9, + "org_directive": 1, + "invalid_argument": 28, + "invalid_value": 21, + "get_qword_value": 5, + "in_virtual": 2, + "org_space_ok": 2, + "close_virtual_addressing_space": 3, + "org_value_ok": 2, + "bts": 1, + "label_directive": 1, + "get_label_size": 2, + "label_size_ok": 2, + "get_free_label_value": 2, + "get_address_value": 3, + "bh": 34, + "bp": 2, + "shl": 17, + "bx": 8, + "make_free_label": 1, + "address_symbol": 2, + "load_directive": 1, + "load_size_ok": 2, + "value": 38, + "get_data_point": 3, + "value_loaded": 2, + "rep": 7, + "movs": 8, + "get_data_address": 5, + "addressing_space_unavailable": 3, + "symbol_out_of_scope": 1, + "get_addressing_space": 3, + "store_label_reference": 1, + "calculate_relative_offset": 2, + "data_address_type_ok": 2, + "adc": 9, + "bad_data_address": 3, + "store_directive": 1, + "sized_store": 2, + "get_byte_value": 23, + "store_value_ok": 2, + "undefined_data_start": 3, + "display_directive": 2, + "display_byte": 2, + "stos": 107, + "display_next": 2, + "show_display_buffer": 2, + "display_done": 3, + "display_messages": 2, + "skip_block": 2, + "display_block": 4, + "times_directive": 1, + "get_count_value": 6, + "zero_times": 3, + "times_argument_ok": 2, + "counter_limit": 7, + "times_loop": 2, + "stack_overflow": 2, + "stack_limit": 2, + "times_done": 2, + "skip_symbol": 5, + "virtual_directive": 3, + "virtual_at_current": 2, + "set_virtual": 2, + "allocate_structure_data": 5, + "find_structure_data": 6, + "scan_structures": 2, + "no_such_structure": 2, + "structure_data_found": 2, + "end_virtual": 2, + "unexpected_instruction": 18, + "remove_structure_data": 7, + "lea": 8, + "std": 2, + "cld": 2, + "addressing_space_closed": 2, + "virtual_byte_ok": 2, + "virtual_word_ok": 2, + "repeat_directive": 7, + "zero_repeat": 2, + "end_repeat": 2, + "continue_repeating": 2, + "stop_repeat": 2, + "find_end_repeat": 4, + "find_structure_end": 5, + "while_directive": 7, + "do_while": 2, + "calculate_logical_expression": 3, + "while_true": 2, + "stop_while": 2, + "find_end_while": 3, + "end_while": 2, + "too_many_repeats": 1, + "if_directive": 13, + "if_true": 2, + "find_else": 4, + "else_true": 3, + "make_if_structure": 2, + "else_directive": 3, + "found_else": 2, + "skip_else": 3, + "find_end_if": 3, + "end_if": 2, + "else_found": 2, + "find_end_directive": 10, + "no_end_directive": 2, + "skip_labels": 2, + "labels_ok": 2, + "prefix_instruction": 2, + "skip_repeat": 2, + "skip_while": 2, + "skip_if": 2, + "structure_end": 4, + "end_directive": 2, + "skip_if_block": 4, + "if_block_skipped": 2, + "skip_after_else": 3, + "data_directive": 1, + "end_data": 1, + "break_directive": 1, + "find_breakable_structure": 4, + "break_repeat": 2, + "break_while": 2, + "break_if": 2, + "data_bytes": 1, + "define_data": 8, + "get_byte": 2, + "undefined_data": 7, + "get_string": 2, + "mark_undefined_data": 2, + "undefined_data_ok": 2, + "simple_data_value": 3, + "skip_expression": 1, + "duplicate_zero_times": 2, + "duplicate_single_data_value": 3, + "duplicate_data": 2, + "duplicated_values": 2, + "near": 3, + "data_defined": 5, + "skip_single_data_value": 2, + "skip_data_value": 2, + "data_unicode": 1, + "base_code": 195, + "define_words": 2, + "data_words": 1, + "get_word": 2, + "scas": 10, + "word_data_value": 2, + "word_string": 2, + "get_word_value": 19, + "mark_relocation": 26, + "jecxz": 1, + "word_string_ok": 2, + "ecx*2": 1, + "copy_word_string": 2, + "loop": 2, + "data_dwords": 1, + "get_dword": 2, + "get_dword_value": 13, + "complex_dword": 2, + "invalid_operand": 239, + "data_pwords": 1, + "get_pword": 2, + "get_pword_value": 1, + "complex_pword": 2, + "data_qwords": 1, + "get_qword": 2, + "data_twords": 1, + "get_tword": 2, + "complex_tword": 2, + "fp_zero_tword": 2, + "FFFh": 3, + "jo": 2, + "value_out_of_range": 10, + "jge": 5, + "jg": 1, + "tword_exp_ok": 3, + "large_shift": 2, + "shrd": 1, + "tword_mantissa_shift_done": 2, + "store_shifted_mantissa": 2, + "data_file": 2, + "open_binary_file": 2, + "lseek": 5, + "position_ok": 2, + "size_ok": 2, + "read": 3, + "error_reading_file": 1, + "close": 3, + "find_current_source_path": 2, + "get_current_path": 3, + "lodsb": 12, + "stosb": 6, + "cut_current_path": 1, + "current_path_ok": 1, + "/": 1, + ".": 7, + "invalid_align_value": 3, + "section_not_aligned_enough": 4, + "make_alignment": 3, + "pe_alignment": 2, + "nops": 2, + "reserved_data": 2, + "nops_stosb_ok": 2, + "nops_stosw_ok": 2, + "err_directive": 1, + "invoked_error": 2, + "assert_directive": 1, + "assertion_failed": 1, + "interface": 2, + "for": 2, + "Win32": 2, + "format": 1, + "PE": 1, + "console": 1, + "section": 4, + "code": 1, + "readable": 4, + "executable": 1, + "start": 1, + "con_handle": 8, + "STD_OUTPUT_HANDLE": 2, + "_logo": 2, + "display_string": 19, + "get_params": 2, + "information": 2, + "init_memory": 2, + "_memory_prefix": 2, + "memory_start": 4, + "display_number": 8, + "_memory_suffix": 2, + "GetTickCount": 3, + "start_time": 3, + "preprocessor": 1, + "parser": 1, + "formatter": 1, + "display_user_messages": 3, + "_passes_suffix": 2, + "div": 8, + "display_bytes_count": 2, + "display_character": 6, + "_seconds_suffix": 2, + "written_size": 1, + "_bytes_suffix": 2, + "exit_program": 5, + "_usage": 2, + "input_file": 4, + "output_file": 3, + "memory_setting": 4, + "GetCommandLine": 2, + "params": 2, + "find_command_start": 2, + "skip_quoted_name": 3, + "skip_name": 2, + "find_param": 7, + "all_params": 5, + "option_param": 2, + "Dh": 19, + "get_output_file": 2, + "process_param": 3, + "bad_params": 11, + "string_param": 3, + "copy_param": 2, + "param_end": 6, + "string_param_end": 2, + "memory_option": 4, + "passes_option": 4, + "symbols_option": 3, + "get_option_value": 3, + "get_option_digit": 2, + "option_value_ok": 4, + "invalid_option_value": 5, + "imul": 1, + "find_symbols_file_name": 2, + "include": 15, + "data": 3, + "writeable": 2, + "_copyright": 1, + "db": 35, + "VERSION_STRING": 1, + "align": 1, + "dd": 22, + "bytes_count": 8, + "displayed_count": 4, + "character": 3, + "last_displayed": 5, + "rb": 4, + "options": 1, + "buffer": 14, + "stack": 1, + "import": 1, + "rva": 16, + "kernel_name": 2, + "kernel_table": 2, + "ExitProcess": 2, + "_ExitProcess": 2, + "CreateFile": 3, + "_CreateFileA": 2, + "ReadFile": 2, + "_ReadFile": 2, + "WriteFile": 6, + "_WriteFile": 2, + "CloseHandle": 2, + "_CloseHandle": 2, + "SetFilePointer": 2, + "_SetFilePointer": 2, + "_GetCommandLineA": 2, + "GetEnvironmentVariable": 2, + "_GetEnvironmentVariable": 2, + "GetStdHandle": 5, + "_GetStdHandle": 2, + "VirtualAlloc": 2, + "_VirtualAlloc": 2, + "VirtualFree": 2, + "_VirtualFree": 2, + "_GetTickCount": 2, + "GetSystemTime": 2, + "_GetSystemTime": 2, + "GlobalMemoryStatus": 2, + "_GlobalMemoryStatus": 2, + "dw": 14, + "fixups": 1, + "discardable": 1, + "CREATE_NEW": 1, + "CREATE_ALWAYS": 2, + "OPEN_EXISTING": 2, + "OPEN_ALWAYS": 1, + "TRUNCATE_EXISTING": 1, + "FILE_SHARE_READ": 3, + "FILE_SHARE_WRITE": 1, + "FILE_SHARE_DELETE": 1, + "GENERIC_READ": 2, + "GENERIC_WRITE": 2, + "STD_INPUT_HANDLE": 1, + "FFFFFFF6h": 1, + "FFFFFFF5h": 1, + "STD_ERROR_HANDLE": 3, + "FFFFFFF4h": 1, + "MEM_COMMIT": 2, + "MEM_RESERVE": 1, + "MEM_DECOMMIT": 1, + "MEM_RELEASE": 2, + "MEM_FREE": 1, + "MEM_PRIVATE": 1, + "MEM_MAPPED": 1, + "MEM_RESET": 1, + "MEM_TOP_DOWN": 1, + "PAGE_NOACCESS": 1, + "PAGE_READONLY": 1, + "PAGE_READWRITE": 2, + "PAGE_WRITECOPY": 1, + "PAGE_EXECUTE": 1, + "PAGE_EXECUTE_READ": 1, + "PAGE_EXECUTE_READWRITE": 1, + "PAGE_EXECUTE_WRITECOPY": 1, + "PAGE_GUARD": 1, + "PAGE_NOCACHE": 1, + "allocate_memory": 4, + "jl": 13, + "large_memory": 3, + "not_enough_memory": 2, + "do_exit": 2, + "get_environment_variable": 1, + "buffer_for_variable_ok": 2, + "open": 2, + "file_error": 6, + "create": 1, + "write": 1, + "repne": 1, + "scasb": 1, + "display_loop": 2, + "display_digit": 3, + "digit_ok": 2, + "line_break_ok": 4, + "make_line_break": 2, + "A0Dh": 2, + "D0Ah": 1, + "take_last_two_characters": 2, + "block_displayed": 2, + "block_ok": 2, + "fatal_error": 1, + "error_prefix": 3, + "error_suffix": 3, + "FFh": 4, + "assembler_error": 1, + "get_error_lines": 2, + "get_next_error_line": 2, + "display_error_line": 3, + "find_definition_origin": 2, + "line_number_start": 3, + "FFFFFFFh": 2, + "line_number_ok": 2, + "line_data_start": 2, + "line_data_displayed": 2, + "get_line_data": 2, + "display_line_data": 5, + "cr_lf": 2, + "make_timestamp": 1, + "mul": 5, + "months_correction": 2, + "day_correction_ok": 4, + "day_correction": 2, + "simple_instruction_except64": 1, + "simple_instruction": 6, + "simple_instruction_only64": 1, + "simple_instruction_16bit_except64": 1, + "simple_instruction_16bit": 2, + "size_prefix": 3, + "simple_instruction_32bit_except64": 1, + "simple_instruction_32bit": 6, + "iret_instruction": 1, + "simple_instruction_64bit": 2, + "simple_extended_instruction_64bit": 1, + "simple_extended_instruction": 1, + "segment_register": 7, + "store_segment_prefix": 1, + "int_instruction": 1, + "get_size_operator": 137, + "invalid_operand_size": 131, + "jns": 1, + "int_imm_ok": 2, + "CDh": 1, + "aa_instruction": 1, + "aa_store": 2, + "basic_instruction": 1, + "basic_reg": 2, + "basic_mem": 1, + "get_address": 62, + "basic_mem_imm": 2, + "basic_mem_reg": 1, + "convert_register": 60, + "postbyte_register": 137, + "instruction_ready": 72, + "operand_autodetect": 47, + "store_instruction": 3, + "basic_mem_imm_nosize": 2, + "basic_mem_imm_8bit": 2, + "basic_mem_imm_16bit": 2, + "basic_mem_imm_32bit": 2, + "basic_mem_imm_64bit": 1, + "size_declared": 17, + "long_immediate_not_encodable": 14, + "operand_64bit": 18, + "get_simm32": 10, + "basic_mem_imm_32bit_ok": 2, + "recoverable_unknown_size": 19, + "store_instruction_with_imm8": 11, + "operand_16bit": 25, + "basic_mem_imm_16bit_store": 3, + "basic_mem_simm_8bit": 5, + "store_instruction_with_imm16": 4, + "operand_32bit": 27, + "basic_mem_imm_32bit_store": 3, + "store_instruction_with_imm32": 4, + "cdq": 11, + "get_simm32_ok": 2, + "basic_reg_reg": 2, + "basic_reg_imm": 2, + "basic_reg_mem": 1, + "basic_reg_mem_8bit": 2, + "nomem_instruction_ready": 53, + "store_nomem_instruction": 19, + "basic_reg_imm_8bit": 2, + "basic_reg_imm_16bit": 2, + "basic_reg_imm_32bit": 2, + "basic_reg_imm_64bit": 1, + "basic_reg_imm_32bit_ok": 2, + "basic_al_imm": 2, + "basic_reg_imm_16bit_store": 3, + "basic_reg_simm_8bit": 5, + "basic_ax_imm": 2, + "basic_store_imm_16bit": 2, + "store_instruction_code": 26, + "basic_reg_imm_32bit_store": 3, + "basic_eax_imm": 2, + "basic_store_imm_32bit": 2, + "ignore_unknown_size": 2, + "operand_size_not_specified": 1, + "single_operand_instruction": 1, + "F6h": 4, + "single_reg": 2, + "single_mem": 1, + "single_mem_8bit": 2, + "single_mem_nosize": 2, + "single_reg_8bit": 2, + "mov_instruction": 1, + "mov_reg": 2, + "mov_mem": 1, + "mov_mem_imm": 2, + "mov_mem_reg": 1, + "mov_mem_general_reg": 2, + "mov_mem_sreg": 2, + "mov_mem_reg_8bit": 2, + "mov_mem_ax": 2, + "mov_mem_al": 1, + "mov_mem_address16_al": 3, + "mov_mem_address32_al": 3, + "mov_mem_address64_al": 3, + "invalid_address_size": 18, + "store_segment_prefix_if_necessary": 17, + "address_32bit_prefix": 11, + "A2h": 3, + "store_mov_address32": 4, + "store_address_32bit_value": 1, + "address_16bit_prefix": 11, + "store_mov_address16": 4, + "invalid_address": 32, + "store_mov_address64": 4, + "store_address_64bit_value": 1, + "mov_mem_address16_ax": 3, + "mov_mem_address32_ax": 3, + "mov_mem_address64_ax": 3, + "A3h": 3, + "mov_mem_sreg_store": 2, + "mov_mem_imm_nosize": 2, + "mov_mem_imm_8bit": 2, + "mov_mem_imm_16bit": 2, + "mov_mem_imm_32bit": 2, + "mov_mem_imm_64bit": 1, + "mov_mem_imm_32bit_store": 2, + "C6h": 1, + "C7h": 4, + "F0h": 7, + "mov_sreg": 2, + "mov_reg_mem": 2, + "mov_reg_imm": 2, + "mov_reg_reg": 1, + "mov_reg_sreg": 2, + "mov_reg_reg_8bit": 2, + "mov_reg_creg": 2, + "mov_reg_dreg": 2, + "mov_reg_treg": 2, + "mov_reg_sreg64": 2, + "mov_reg_sreg32": 2, + "mov_reg_sreg_store": 3, + "extended_code": 73, + "mov_reg_xrx": 3, + "mov_reg_xrx_64bit": 2, + "mov_reg_xrx_store": 3, + "mov_reg_mem_8bit": 2, + "mov_ax_mem": 2, + "mov_al_mem": 2, + "mov_al_mem_address16": 3, + "mov_al_mem_address32": 3, + "mov_al_mem_address64": 3, + "A0h": 4, + "mov_ax_mem_address16": 3, + "mov_ax_mem_address32": 3, + "mov_ax_mem_address64": 3, + "A1h": 4, + "mov_reg_imm_8bit": 2, + "mov_reg_imm_16bit": 2, + "mov_reg_imm_32bit": 2, + "mov_reg_imm_64bit": 1, + "mov_reg_imm_64bit_store": 3, + "mov_reg_64bit_imm_32bit": 2, + "B8h": 3, + "store_mov_reg_imm_code": 5, + "B0h": 5, + "mov_store_imm_32bit": 2, + "mov_reg_imm_prefix_ok": 2, + "mov_creg": 2, + "mov_dreg": 2, + "mov_treg": 2, + "mov_sreg_mem": 2, + "mov_sreg_reg": 1, + "mov_sreg_reg_size_ok": 2, + "Eh": 8, + "mov_sreg_mem_size_ok": 2, + "mov_xrx": 3, + "mov_xrx_64bit": 2, + "mov_xrx_store": 4, + "test_instruction": 1, + "test_reg": 2, + "test_mem": 1, + "test_mem_imm": 2, + "test_mem_reg": 2, + "test_mem_reg_8bit": 2, + "test_mem_imm_nosize": 2, + "test_mem_imm_8bit": 2, + "test_mem_imm_16bit": 2, + "test_mem_imm_32bit": 2, + "test_mem_imm_64bit": 1, + "test_mem_imm_32bit_store": 2, + "F7h": 5, + "test_reg_mem": 3, + "test_reg_imm": 2, + "test_reg_reg": 1, + "test_reg_reg_8bit": 2, + "test_reg_imm_8bit": 2, + "test_reg_imm_16bit": 2, + "test_reg_imm_32bit": 2, + "test_reg_imm_64bit": 1, + "test_reg_imm_32bit_store": 2, + "test_al_imm": 2, + "A8h": 1, + "test_ax_imm": 2, + "A9h": 2, + "test_eax_imm": 2, + "test_reg_mem_8bit": 2, + "xchg_instruction": 1, + "xchg_reg": 2, + "xchg_mem": 1, + "xchg_reg_reg": 1, + "xchg_reg_reg_8bit": 2, + "xchg_ax_reg": 2, + "xchg_reg_reg_store": 3, + "xchg_ax_reg_ok": 3, + "xchg_ax_reg_store": 2, + "push_instruction": 1, + "push_size": 9, + "push_next": 2, + "push_reg": 2, + "push_imm": 2, + "push_mem": 1, + "push_mem_16bit": 3, + "push_mem_32bit": 3, + "push_mem_64bit": 3, + "push_mem_store": 4, + "push_done": 5, + "push_sreg": 2, + "push_reg_ok": 2, + "push_reg_16bit": 2, + "push_reg_32bit": 2, + "push_reg_64bit": 1, + "push_reg_store": 5, + "dh": 37, + "push_sreg16": 3, + "push_sreg32": 3, + "push_sreg64": 3, + "push_sreg_store": 4, + "push_sreg_386": 2, + "push_imm_size_ok": 3, + "push_imm_16bit": 2, + "push_imm_32bit": 2, + "push_imm_64bit": 2, + "push_imm_optimized_16bit": 3, + "push_imm_optimized_32bit": 3, + "push_imm_optimized_64bit": 2, + "push_imm_32bit_store": 8, + "push_imm_8bit": 3, + "push_imm_16bit_store": 4, + "pop_instruction": 1, + "pop_next": 2, + "pop_reg": 2, + "pop_mem": 1, + "pop_mem_16bit": 3, + "pop_mem_32bit": 3, + "pop_mem_64bit": 3, + "pop_mem_store": 4, + "pop_done": 3, + "pop_sreg": 2, + "pop_reg_ok": 2, + "pop_reg_16bit": 2, + "pop_reg_32bit": 2, + "pop_reg_64bit": 2, + "pop_reg_store": 5, + "pop_cs": 2, + "pop_sreg16": 3, + "pop_sreg32": 3, + "pop_sreg64": 3, + "pop_sreg_store": 4, + "pop_sreg_386": 2, + "pop_cs_store": 3, + "inc_instruction": 1, + "inc_reg": 2, + "inc_mem": 2, + "inc_mem_8bit": 2, + "inc_mem_nosize": 2, + "FEh": 2, + "inc_reg_8bit": 2, + "inc_reg_long_form": 2, + "set_instruction": 1, + "set_reg": 2, + "set_mem": 1, + "arpl_instruction": 1, + "arpl_reg": 2, + "bound_instruction": 1, + "bound_store": 2, + "enter_instruction": 1, + "enter_imm16_size_ok": 2, + "enter_imm16_ok": 2, + "js": 3, + "enter_imm8_size_ok": 2, + "enter_imm8_ok": 2, + "C8h": 2, + "ret_instruction_only64": 1, + "ret_instruction": 5, + "ret_instruction_32bit_except64": 1, + "ret_instruction_32bit": 1, + "ret_instruction_16bit": 1, + "retf_instruction": 1, + "ret_instruction_64bit": 1, + "simple_ret": 4, + "ret_imm": 3, + "ret_imm_ok": 2, + "ret_imm_store": 2, + "lea_instruction": 1, + "ls_instruction": 1, + "les_instruction": 2, + "lds_instruction": 2, + "ls_code_ok": 2, + "C4h": 1, + "ls_short_code": 2, + "C5h": 2, + "ls_16bit": 2, + "ls_32bit": 2, + "ls_64bit": 2, + "sh_instruction": 1, + "sh_reg": 2, + "sh_mem": 1, + "sh_mem_imm": 2, + "sh_mem_reg": 1, + "sh_mem_cl_8bit": 2, + "sh_mem_cl_nosize": 2, + "D3h": 2, + "D2h": 2, + "sh_mem_imm_size_ok": 2, + "sh_mem_imm_8bit": 2, + "sh_mem_imm_nosize": 2, + "sh_mem_1": 2, + "C1h": 2, + "D1h": 2, + "sh_mem_1_8bit": 2, + "C0h": 2, + "D0h": 2, + "sh_reg_imm": 2, + "sh_reg_reg": 1, + "sh_reg_cl_8bit": 2, + "sh_reg_imm_size_ok": 2, + "sh_reg_imm_8bit": 2, + "sh_reg_1": 2, + "sh_reg_1_8bit": 2, + "shd_instruction": 1, + "shd_reg": 2, + "shd_mem": 1, + "shd_mem_reg_imm": 2, + "shd_mem_reg_imm_size_ok": 2, + "shd_reg_reg_imm": 2, + "shd_reg_reg_imm_size_ok": 2, + "movx_instruction": 1, + "movx_reg": 2, + "movx_unknown_size": 2, + "movx_mem_store": 3, + "movx_reg_8bit": 2, + "movx_reg_16bit": 2, + "movsxd_instruction": 1, + "movsxd_reg": 2, + "movsxd_mem_store": 2, + "bt_instruction": 1, + "bt_reg": 2, + "bt_mem_imm": 3, + "bt_mem_reg": 2, + "bt_mem_imm_size_ok": 2, + "bt_mem_imm_nosize": 2, + "bt_mem_imm_store": 2, + "BAh": 2, + "bt_reg_imm": 3, + "bt_reg_reg": 2, + "bt_reg_imm_size_ok": 2, + "bt_reg_imm_store": 1, + "bs_instruction": 1, + "get_reg_mem": 2, + "bs_reg_reg": 2, + "get_reg_reg": 2, + "imul_instruction": 1, + "imul_reg": 2, + "imul_mem": 1, + "imul_mem_8bit": 2, + "imul_mem_nosize": 2, + "imul_reg_": 2, + "imul_reg_8bit": 2, + "imul_reg_imm": 3, + "imul_reg_noimm": 2, + "imul_reg_reg": 2, + "imul_reg_mem": 1, + "imul_reg_mem_imm": 2, + "AFh": 2, + "imul_reg_mem_imm_16bit": 2, + "imul_reg_mem_imm_32bit": 2, + "imul_reg_mem_imm_64bit": 1, + "imul_reg_mem_imm_32bit_ok": 2, + "imul_reg_mem_imm_16bit_store": 4, + "imul_reg_mem_imm_8bit_store": 3, + "imul_reg_mem_imm_32bit_store": 4, + "Bh": 11, + "imul_reg_reg_imm": 3, + "imul_reg_reg_imm_16bit": 2, + "imul_reg_reg_imm_32bit": 2, + "imul_reg_reg_imm_64bit": 1, + "imul_reg_reg_imm_32bit_ok": 2, + "imul_reg_reg_imm_16bit_store": 4, + "imul_reg_reg_imm_8bit_store": 3, + "imul_reg_reg_imm_32bit_store": 4, + "in_instruction": 1, + "in_imm": 2, + "in_reg": 2, + "in_al_dx": 2, + "in_ax_dx": 2, + "EDh": 1, + "ECh": 1, + "in_imm_size_ok": 2, + "in_al_imm": 2, + "in_ax_imm": 2, + "E5h": 1, + "E4h": 1, + "out_instruction": 1, + "out_imm": 2, + "out_dx_al": 2, + "out_dx_ax": 2, + "EFh": 1, + "EEh": 1, + "out_imm_size_ok": 2, + "out_imm_al": 2, + "out_imm_ax": 2, + "E7h": 1, + "E6h": 1, + "call_instruction": 1, + "E8h": 3, + "process_jmp": 2, + "jmp_instruction": 1, + "E9h": 1, + "EAh": 1, + "get_jump_operator": 3, + "jmp_imm": 2, + "jmp_reg": 2, + "jmp_mem": 1, + "jump_type": 14, + "jmp_mem_size_not_specified": 2, + "jmp_mem_16bit": 3, + "jmp_mem_32bit": 2, + "jmp_mem_48bit": 2, + "jmp_mem_64bit": 2, + "jmp_mem_80bit": 2, + "jmp_mem_far": 2, + "jmp_mem_near": 2, + "jmp_mem_near_32bit": 3, + "jmp_mem_far_32bit": 4, + "jmp_mem_far_store": 3, + "jmp_reg_16bit": 2, + "jmp_reg_32bit": 2, + "jmp_reg_64bit": 1, + "jmp_far": 2, + "jmp_near": 1, + "jmp_imm_16bit": 3, + "jmp_imm_32bit": 2, + "jmp_imm_64bit": 3, + "get_address_dword_value": 3, + "jmp_imm_32bit_prefix_ok": 2, + "calculate_jump_offset": 10, + "check_for_short_jump": 8, + "jmp_short": 3, + "jmp_imm_32bit_store": 2, + "jno": 2, + "jmp_imm_32bit_ok": 2, + "relative_jump_out_of_range": 6, + "get_address_qword_value": 3, + "EBh": 1, + "get_address_word_value": 3, + "jmp_imm_16bit_prefix_ok": 2, + "cwde": 3, + "forced_short": 2, + "no_short_jump": 4, + "short_jump": 4, + "jmp_short_value_type_ok": 2, + "jump_out_of_range": 3, + "jmp_far_16bit": 2, + "jmp_far_32bit": 3, + "jmp_far_segment": 2, + "conditional_jump": 1, + "conditional_jump_16bit": 3, + "conditional_jump_32bit": 2, + "conditional_jump_64bit": 3, + "conditional_jump_32bit_prefix_ok": 2, + "conditional_jump_short": 4, + "conditional_jump_32bit_store": 2, + "conditional_jump_32bit_range_ok": 2, + "conditional_jump_16bit_prefix_ok": 2, + "loop_instruction_16bit": 1, + "loop_instruction": 5, + "loop_instruction_32bit": 1, + "loop_instruction_64bit": 1, + "loop_jump_16bit": 3, + "loop_jump_32bit": 2, + "loop_jump_64bit": 3, + "loop_jump_32bit_prefix_ok": 2, + "loop_counter_size": 4, + "make_loop_jump": 3, + "loop_counter_size_ok": 2, + "loop_jump_16bit_prefix_ok": 2, + "movs_instruction": 1, + "address_sizes_do_not_agree": 2, + "movs_address_16bit": 2, + "movs_address_32bit": 2, + "movs_store": 3, + "A4h": 1, + "movs_check_size": 5, + "lods_instruction": 1, + "lods_address_16bit": 2, + "lods_address_32bit": 2, + "lods_store": 3, + "ACh": 1, + "stos_instruction": 1, + "stos_address_16bit": 2, + "stos_address_32bit": 2, + "stos_store": 3, + "cmps_instruction": 1, + "cmps_address_16bit": 2, + "cmps_address_32bit": 2, + "cmps_store": 3, + "A6h": 1, + "ins_instruction": 1, + "ins_address_16bit": 2, + "ins_address_32bit": 2, + "ins_store": 3, + "ins_check_size": 2, + "outs_instruction": 1, + "outs_address_16bit": 2, + "outs_address_32bit": 2, + "outs_store": 3, + "xlat_instruction": 1, + "xlat_address_16bit": 2, + "xlat_address_32bit": 2, + "xlat_store": 3, + "D7h": 1, + "pm_word_instruction": 1, + "pm_reg": 2, + "pm_mem": 2, + "pm_mem_store": 2, + "pm_store_word_instruction": 1, + "lgdt_instruction": 1, + "lgdt_mem_48bit": 2, + "lgdt_mem_80bit": 2, + "lgdt_mem_store": 4, + "lar_instruction": 1, + "lar_reg_reg": 2, + "lar_reg_mem": 2, + "invlpg_instruction": 1, + "swapgs_instruction": 1, + "rdtscp_instruction": 1, + "basic_486_instruction": 1, + "basic_486_reg": 2, + "basic_486_mem_reg_8bit": 2, + "basic_486_reg_reg_8bit": 2, + "bswap_instruction": 1, + "bswap_reg_code_ok": 2, + "bswap_reg64": 2, + "cmpxchgx_instruction": 1, + "cmpxchgx_size_ok": 2, + "cmpxchgx_store": 2, + "nop_instruction": 1, + "extended_nop": 4, + "extended_nop_reg": 2, + "extended_nop_store": 2, + "basic_fpu_instruction": 1, + "D8h": 2, + "basic_fpu_streg": 2, + "basic_fpu_mem": 2, + "basic_fpu_mem_32bit": 2, + "basic_fpu_mem_64bit": 2, + "DCh": 2, + "convert_fpu_register": 9, + "basic_fpu_single_streg": 3, + "basic_fpu_st0": 2, + "basic_fpu_streg_st0": 2, + "simple_fpu_instruction": 1, + "D9h": 6, + "fi_instruction": 1, + "fi_mem_16bit": 2, + "fi_mem_32bit": 2, + "DAh": 2, + "DEh": 2, + "fld_instruction": 1, + "fld_streg": 2, + "fld_mem_32bit": 2, + "fld_mem_64bit": 2, + "fld_mem_80bit": 2, + "DDh": 6, + "fld_mem_80bit_store": 3, + "DBh": 4, + "fst_streg": 2, + "fild_instruction": 1, + "fild_mem_16bit": 2, + "fild_mem_32bit": 2, + "fild_mem_64bit": 2, + "DFh": 5, + "fisttp_64bit_store": 2, + "fild_mem_64bit_store": 3, + "fbld_instruction": 1, + "fbld_mem_80bit": 3, + "faddp_instruction": 1, + "faddp_streg": 2, + "fcompp_instruction": 1, + "D9DEh": 1, + "fucompp_instruction": 1, + "E9DAh": 1, + "fxch_instruction": 1, + "fpu_single_operand": 3, + "ffreep_instruction": 1, + "ffree_instruction": 1, + "fpu_streg": 2, + "fstenv_instruction": 1, + "fldenv_instruction": 3, + "fpu_mem": 2, + "fstenv_instruction_16bit": 1, + "fldenv_instruction_16bit": 1, + "fstenv_instruction_32bit": 1, + "fldenv_instruction_32bit": 1, + "fsave_instruction_32bit": 1, + "fnsave_instruction_32bit": 1, + "fnsave_instruction": 3, + "fsave_instruction_16bit": 1, + "fnsave_instruction_16bit": 1, + "fsave_instruction": 1, + "fstcw_instruction": 1, + "fldcw_instruction": 1, + "fldcw_mem_16bit": 3, + "fstsw_instruction": 1, + "fnstsw_instruction": 1, + "fstsw_reg": 2, + "fstsw_mem_16bit": 3, + "E0DFh": 1, + "finit_instruction": 1, + "fninit_instruction": 1, + "fcmov_instruction": 1, + "fcomi_streg": 3, + "fcomi_instruction": 1, + "fcomip_instruction": 1, + "fcomi_st0_streg": 2, + "basic_mmx_instruction": 1, + "mmx_instruction": 1, + "convert_mmx_register": 18, + "make_mmx_prefix": 9, + "mmx_mmreg_mmreg": 3, + "mmx_mmreg_mem": 2, + "mmx_bit_shift_instruction": 1, + "mmx_ps_mmreg_imm8": 2, + "pmovmskb_instruction": 1, + "pmovmskb_reg_size_ok": 2, + "mmx_nomem_imm8": 7, + "mmx_imm8": 6, + "append_imm8": 2, + "pinsrw_instruction": 1, + "pinsrw_mmreg_reg": 2, + "pshufw_instruction": 1, + "mmx_size": 30, + "pshuf_instruction": 2, + "pshufd_instruction": 1, + "pshuf_mmreg_mmreg": 2, + "movd_instruction": 1, + "movd_reg": 2, + "movd_mmreg": 2, + "movd_mmreg_reg": 2, + "mmx_prefix_for_vex": 2, + "no_mmx_prefix": 2, + "movq_instruction": 1, + "movq_reg": 2, + "movq_mem_xmmreg": 2, + "D6h": 2, + "movq_mmreg": 2, + "movq_mmreg_": 2, + "F3h": 7, + "movq_mmreg_reg": 2, + "movq_mmreg_mmreg": 2, + "movq_mmreg_reg_store": 2, + "movdq_instruction": 1, + "movdq_mmreg": 2, + "convert_xmm_register": 12, + "movdq_mmreg_mmreg": 2, + "lddqu_instruction": 1, + "F2h": 6, + "movdq2q_instruction": 1, + "movq2dq_": 2, + "movq2dq_instruction": 1, + "sse_ps_instruction_imm8": 1, + "sse_ps_instruction": 1, + "sse_instruction": 11, + "sse_pd_instruction_imm8": 1, + "sse_pd_instruction": 1, + "sse_ss_instruction": 1, + "sse_sd_instruction": 1, + "cmp_pd_instruction": 1, + "cmp_ps_instruction": 1, + "C2h": 4, + "cmp_ss_instruction": 1, + "cmp_sx_instruction": 2, + "cmpsd_instruction": 1, + "A7h": 1, + "cmp_sd_instruction": 1, + "comiss_instruction": 1, + "comisd_instruction": 1, + "cvtdq2pd_instruction": 1, + "cvtps2pd_instruction": 1, + "cvtpd2dq_instruction": 1, + "movshdup_instruction": 1, + "sse_xmmreg": 2, + "sse_reg": 1, + "sse_xmmreg_xmmreg": 2, + "sse_reg_mem": 2, + "sse_mem_size_ok": 2, + "supplemental_code": 2, + "sse_cmp_mem_ok": 3, + "sse_ok": 2, + "take_additional_xmm0": 3, + "sse_xmmreg_xmmreg_ok": 4, + "sse_cmp_nomem_ok": 3, + "sse_nomem_ok": 2, + "additional_xmm0_ok": 2, + "pslldq_instruction": 1, + "movpd_instruction": 1, + "movps_instruction": 1, + "sse_mov_instruction": 3, + "movss_instruction": 1, + "sse_movs": 2, + "movsd_instruction": 1, + "A5h": 1, + "sse_mem": 2, + "sse_mem_xmmreg": 2, + "movlpd_instruction": 1, + "movlps_instruction": 1, + "movhlps_instruction": 1, + "maskmovq_instruction": 1, + "maskmov_instruction": 2, + "maskmovdqu_instruction": 1, + "movmskpd_instruction": 1, + "movmskps_instruction": 1, + "movmskps_reg_ok": 2, + "cvtpi2pd_instruction": 1, + "cvtpi2ps_instruction": 1 + }, "ATS": { "//": 211, "#include": 16, @@ -67011,6 +68332,7 @@ "Arduino": 20, "AsciiDoc": 103, "AspectJ": 324, + "Assembly": 21750, "ATS": 4558, "AutoHotkey": 3, "Awk": 544, @@ -67202,6 +68524,7 @@ "Arduino": 1, "AsciiDoc": 3, "AspectJ": 2, + "Assembly": 4, "ATS": 10, "AutoHotkey": 1, "Awk": 1, @@ -67383,5 +68706,5 @@ "Zephir": 2, "Zimpl": 1 }, - "md5": "3e0901633ee5729c6dac371442522f33" + "md5": "7403e3e21c597d10462391ab49bb9bf9" } \ No newline at end of file From 5059fe90b04799e50765b1f71f590e6783a03ed0 Mon Sep 17 00:00:00 2001 From: diekmann Date: Tue, 17 Jun 2014 21:27:03 +0200 Subject: [PATCH 028/268] Added language Isabelle Isabelle is a generic proof assistant. It is comparables (to some degree) to Coq. Used in * diekmann/topoS * 3of8/sturm * formare/auctions * larsrh/hol-falso * dpthayer/MetaProof Hello Wolrd example (file must be named HelloWorld.thy): theory HelloWorld imports Main begin (*put content here*) end --- lib/linguist/languages.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 42ce978d..aff5e8b0 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -987,6 +987,12 @@ IRC log: - .irclog - .weechatlog +Isabelle: + type: programming + color: "#fdcd00" + extensions: + - .thy + Io: type: programming color: "#a9188d" From e452e85cae0f9257b984b5efab89fa9258e96d71 Mon Sep 17 00:00:00 2001 From: Charles Strahan Date: Tue, 17 Jun 2014 19:32:22 -0400 Subject: [PATCH 029/268] add nix support --- lib/linguist/languages.yml | 5 +++ lib/linguist/samples.json | 77 ++++++++++++++++++++++++++++++++++-- samples/Nix/nginx.nix | 80 ++++++++++++++++++++++++++++++++++++++ 3 files changed, 159 insertions(+), 3 deletions(-) create mode 100644 samples/Nix/nginx.nix diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 42ce978d..ee05948a 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1393,6 +1393,11 @@ Nimrod: - .nim - .nimrod +Nix: + type: programming + extensions: + - .nix + Nu: type: programming lexer: Scheme diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index c238bfe1..b55fa89d 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -358,6 +358,9 @@ "Nimrod": [ ".nim" ], + "Nix": [ + ".nix" + ], "NSIS": [ ".nsh", ".nsi" @@ -747,8 +750,8 @@ ".gemrc" ] }, - "tokens_total": 636184, - "languages_total": 816, + "tokens_total": 636372, + "languages_total": 817, "tokens": { "ABAP": { "*/**": 1, @@ -44758,6 +44761,72 @@ "Nimrod": { "echo": 1 }, + "Nix": { + "{": 8, + "stdenv": 1, + "fetchurl": 2, + "fetchgit": 5, + "openssl": 2, + "zlib": 2, + "pcre": 2, + "libxml2": 2, + "libxslt": 2, + "expat": 2, + "rtmp": 4, + "false": 4, + "fullWebDAV": 3, + "syslog": 4, + "moreheaders": 3, + "...": 1, + "}": 8, + "let": 1, + "version": 2, + ";": 32, + "mainSrc": 2, + "url": 5, + "sha256": 5, + "-": 12, + "ext": 5, + "git": 2, + "//github.com/arut/nginx": 2, + "module.git": 3, + "rev": 4, + "dav": 2, + "https": 2, + "//github.com/yaoweibin/nginx_syslog_patch.git": 1, + "//github.com/agentzh/headers": 1, + "more": 1, + "nginx": 1, + "in": 1, + "stdenv.mkDerivation": 1, + "rec": 1, + "name": 1, + "src": 1, + "buildInputs": 1, + "[": 5, + "]": 5, + "+": 10, + "stdenv.lib.optional": 5, + "patches": 1, + "if": 1, + "then": 1, + "else": 1, + "configureFlags": 1, + "preConfigure": 1, + "export": 1, + "NIX_CFLAGS_COMPILE": 1, + "postInstall": 1, + "mv": 1, + "out/sbin": 1, + "out/bin": 1, + "meta": 1, + "description": 1, + "maintainers": 1, + "stdenv.lib.maintainers.raskin": 1, + "platforms": 1, + "stdenv.lib.platforms.all": 1, + "inherit": 1 + }, "NSIS": { ";": 39, "bigtest.nsi": 1, @@ -68427,6 +68496,7 @@ "NetLogo": 243, "Nginx": 179, "Nimrod": 1, + "Nix": 188, "NSIS": 725, "Nu": 116, "Objective-C": 26518, @@ -68619,6 +68689,7 @@ "NetLogo": 1, "Nginx": 1, "Nimrod": 1, + "Nix": 1, "NSIS": 2, "Nu": 2, "Objective-C": 19, @@ -68706,5 +68777,5 @@ "Zephir": 2, "Zimpl": 1 }, - "md5": "7403e3e21c597d10462391ab49bb9bf9" + "md5": "125a0720c61fe35eff545b8a03732d30" } \ No newline at end of file diff --git a/samples/Nix/nginx.nix b/samples/Nix/nginx.nix new file mode 100644 index 00000000..515b686f --- /dev/null +++ b/samples/Nix/nginx.nix @@ -0,0 +1,80 @@ +{ stdenv, fetchurl, fetchgit, openssl, zlib, pcre, libxml2, libxslt, expat +, rtmp ? false +, fullWebDAV ? false +, syslog ? false +, moreheaders ? false, ...}: + +let + version = "1.4.4"; + mainSrc = fetchurl { + url = "http://nginx.org/download/nginx-${version}.tar.gz"; + sha256 = "1f82845mpgmhvm151fhn2cnqjggw9w7cvsqbva9rb320wmc9m63w"; + }; + + rtmp-ext = fetchgit { + url = git://github.com/arut/nginx-rtmp-module.git; + rev = "1cfb7aeb582789f3b15a03da5b662d1811e2a3f1"; + sha256 = "03ikfd2l8mzsjwx896l07rdrw5jn7jjfdiyl572yb9jfrnk48fwi"; + }; + + dav-ext = fetchgit { + url = git://github.com/arut/nginx-dav-ext-module.git; + rev = "54cebc1f21fc13391aae692c6cce672fa7986f9d"; + sha256 = "1dvpq1fg5rslnl05z8jc39sgnvh3akam9qxfl033akpczq1bh8nq"; + }; + + syslog-ext = fetchgit { + url = https://github.com/yaoweibin/nginx_syslog_patch.git; + rev = "165affd9741f0e30c4c8225da5e487d33832aca3"; + sha256 = "14dkkafjnbapp6jnvrjg9ip46j00cr8pqc2g7374z9aj7hrvdvhs"; + }; + + moreheaders-ext = fetchgit { + url = https://github.com/agentzh/headers-more-nginx-module.git; + rev = "refs/tags/v0.23"; + sha256 = "12pbjgsxnvcf2ff2i2qdn39q4cm5czlgrng96j8ml4cgxvnbdh39"; + }; +in + +stdenv.mkDerivation rec { + name = "nginx-${version}"; + src = mainSrc; + + buildInputs = [ openssl zlib pcre libxml2 libxslt + ] ++ stdenv.lib.optional fullWebDAV expat; + + patches = if syslog then [ "${syslog-ext}/syslog_1.4.0.patch" ] else []; + + configureFlags = [ + "--with-http_ssl_module" + "--with-http_spdy_module" + "--with-http_xslt_module" + "--with-http_sub_module" + "--with-http_dav_module" + "--with-http_gzip_static_module" + "--with-http_secure_link_module" + "--with-ipv6" + # Install destination problems + # "--with-http_perl_module" + ] ++ stdenv.lib.optional rtmp "--add-module=${rtmp-ext}" + ++ stdenv.lib.optional fullWebDAV "--add-module=${dav-ext}" + ++ stdenv.lib.optional syslog "--add-module=${syslog-ext}" + ++ stdenv.lib.optional moreheaders "--add-module=${moreheaders-ext}"; + + preConfigure = '' + export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${libxml2 }/include/libxml2" + ''; + + # escape example + postInstall = '' + mv $out/sbin $out/bin ''' ''${ + ${ if true then ${ "" } else false } + ''; + + meta = { + description = "A reverse proxy and lightweight webserver"; + maintainers = [ stdenv.lib.maintainers.raskin]; + platforms = stdenv.lib.platforms.all; + inherit version; + }; +} From d9f17a65ddf895997056642a104e92121e3ff7d7 Mon Sep 17 00:00:00 2001 From: diekmann Date: Wed, 18 Jun 2014 09:16:31 +0200 Subject: [PATCH 030/268] Isabelle language - fixed lexer and added sample Also, Isabelle is very polular in academia. See for example http://scholar.google.de/scholar?q=isabelle%2FHOL In around 40 days, the seL4 microkernel [1] with its Isabelle proofs is (probably) released on github [2]. [1] http://sel4.systems/ [2] https://lists.cam.ac.uk/mailman/htdig/cl-isabelle-users/2014-June/msg00011.html --- lib/linguist/languages.yml | 1 + samples/Isabelle/HelloWorld.thy | 46 +++++++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+) create mode 100644 samples/Isabelle/HelloWorld.thy diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index aff5e8b0..8bcffbcc 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -989,6 +989,7 @@ IRC log: Isabelle: type: programming + lexer: Text only color: "#fdcd00" extensions: - .thy diff --git a/samples/Isabelle/HelloWorld.thy b/samples/Isabelle/HelloWorld.thy new file mode 100644 index 00000000..7c814dae --- /dev/null +++ b/samples/Isabelle/HelloWorld.thy @@ -0,0 +1,46 @@ +theory HelloWorld +imports Main +begin + +section{*Playing around with Isabelle*} + +text{* creating a lemma with the name hello_world*} +lemma hello_world: "True" by simp + +(*inspecting it*) +thm hello_world + +text{* defining a string constant HelloWorld *} + +definition HelloWorld :: "string" where + "HelloWorld \ ''Hello World!''" + +(*reversing HelloWorld twice yilds HelloWorld again*) +theorem "rev (rev HelloWorld) = HelloWorld" + by (fact List.rev_rev_ident) + +text{*now we delete the already proven List.rev_rev_ident lema and show it by hand*} +declare List.rev_rev_ident[simp del] +hide_fact List.rev_rev_ident + +(*It's trivial since we can just 'execute' it*) +corollary "rev (rev HelloWorld) = HelloWorld" + apply(simp add: HelloWorld_def) + done + +text{*does it hold in general?*} +theorem rev_rev_ident:"rev (rev l) = l" + proof(induction l) + case Nil thus ?case by simp + next + case (Cons l ls) + assume IH: "rev (rev ls) = ls" + have "rev (l#ls) = (rev ls) @ [l]" by simp + hence "rev (rev (l#ls)) = rev ((rev ls) @ [l])" by simp + also have "\ = [l] @ rev (rev ls)" by simp + finally show "rev (rev (l#ls)) = l#ls" using IH by simp + qed + +corollary "\(l::string). rev (rev l) = l" by(fastforce intro: rev_rev_ident) + +end From 947f4e1c57332133d2b2904653973f23eca4f97f Mon Sep 17 00:00:00 2001 From: diekmann Date: Wed, 18 Jun 2014 09:34:26 +0200 Subject: [PATCH 031/268] alphabetic sorting --- lib/linguist/languages.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 8bcffbcc..f24b9b79 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -987,13 +987,6 @@ IRC log: - .irclog - .weechatlog -Isabelle: - type: programming - lexer: Text only - color: "#fdcd00" - extensions: - - .thy - Io: type: programming color: "#a9188d" @@ -1006,6 +999,13 @@ Ioke: extensions: - .ik +Isabelle: + type: programming + lexer: Text only + color: "#fdcd00" + extensions: + - .thy + J: type: programming lexer: Text only From 900ee57de816146a315274164baa87b4a3eff98f Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Wed, 18 Jun 2014 08:58:18 -0700 Subject: [PATCH 032/268] Add .nuspec extension to XML --- lib/linguist/languages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 42ce978d..6c17c72f 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -2289,6 +2289,7 @@ XML: - .launch - .mxml - .nproj + - .nuspec - .osm - .plist - .pluginspec From a4379435161e95bb08ae43b785c76c358e4cb9ff Mon Sep 17 00:00:00 2001 From: Kenichi Maehashi Date: Thu, 19 Jun 2014 01:02:34 +0900 Subject: [PATCH 033/268] Add Xojo language and example --- lib/linguist/languages.yml | 16 ++++++++++++++++ samples/Xojo/database.xojo_script | 17 +++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 samples/Xojo/database.xojo_script diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 42ce978d..109b9bb8 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -2360,6 +2360,22 @@ XSLT: - .xslt - .xsl +Xojo: + type: programming + lexer: VB.net + extensions: + - .xojo_binary_project + - .xojo_code + - .xojo_menu + - .xojo_project + - .xojo_report + - .xojo_resources + - .xojo_script + - .xojo_toolbar + - .xojo_uistate + - .xojo_window + - .xojo_xml_project + Xtend: type: programming extensions: diff --git a/samples/Xojo/database.xojo_script b/samples/Xojo/database.xojo_script new file mode 100644 index 00000000..1f0f59cc --- /dev/null +++ b/samples/Xojo/database.xojo_script @@ -0,0 +1,17 @@ +Dim dbFile As FolderItem +Dim db As New SQLiteDatabase +dbFile = GetFolderItem("Employees.sqlite") +db.DatabaseFile = dbFile +If db.Connect Then + db.SQLExecute("BEGIN TRANSACTION") + db.SQLExecute ("INSERT INTO Employees (Name,Job,YearJoined) VALUES "_ + +"('Dr.Strangelove','Advisor',1962)") + If db.Error then + MsgBox("Error: " + db.ErrorMessage) + db.Rollback + Else + db.Commit + End If +Else + MsgBox("The database couldn't be opened. Error: " + db.ErrorMessage) +End If From 14738f037fe40df58e4530d74f6e6d55df3c2ec5 Mon Sep 17 00:00:00 2001 From: Kenichi Maehashi Date: Thu, 19 Jun 2014 07:27:54 +0900 Subject: [PATCH 034/268] remove non-source file extensions of Xojo language --- lib/linguist/languages.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 109b9bb8..c82c4811 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -2364,17 +2364,12 @@ Xojo: type: programming lexer: VB.net extensions: - - .xojo_binary_project - .xojo_code - .xojo_menu - - .xojo_project - .xojo_report - - .xojo_resources - .xojo_script - .xojo_toolbar - - .xojo_uistate - .xojo_window - - .xojo_xml_project Xtend: type: programming From bd694c60e12fc437ecdc23c452cdd32798b778aa Mon Sep 17 00:00:00 2001 From: Paul Chaignon Date: Thu, 19 Jun 2014 13:25:27 +0200 Subject: [PATCH 035/268] Custom File.extname method which returns the filename if it is an extension --- lib/linguist/file_blob.rb | 15 +++++++++++++++ lib/linguist/language.rb | 6 ++++-- 2 files changed, 19 insertions(+), 2 deletions(-) diff --git a/lib/linguist/file_blob.rb b/lib/linguist/file_blob.rb index 7e7f1acd..bc475023 100644 --- a/lib/linguist/file_blob.rb +++ b/lib/linguist/file_blob.rb @@ -52,5 +52,20 @@ module Linguist def size File.size(@path) end + + # Public: Get file extension. + # + # Returns a String. + def extension + # File.extname returns nil if the filename is an extension. + extension = File.extname(name) + basename = File.basename(name) + # Checks if the filename is an extension. + if extension.empty? && basename[0] == "." + basename + else + extension + end + end end end diff --git a/lib/linguist/language.rb b/lib/linguist/language.rb index a8e7a33c..e9144217 100644 --- a/lib/linguist/language.rb +++ b/lib/linguist/language.rb @@ -103,7 +103,8 @@ module Linguist # A bit of an elegant hack. If the file is executable but extensionless, # append a "magic" extension so it can be classified with other # languages that have shebang scripts. - if File.extname(name).empty? && mode && (mode.to_i(8) & 05) == 05 + extension = FileBlob.new(name).extension() + if extension.empty? && mode && (mode.to_i(8) & 05) == 05 name += ".script!" end @@ -183,7 +184,8 @@ module Linguist # # Returns all matching Languages or [] if none were found. def self.find_by_filename(filename) - basename, extname = File.basename(filename), File.extname(filename) + basename = File.basename(filename) + extname = FileBlob.new(filename).extension() langs = @filename_index[basename] + @extension_index[extname] langs.compact.uniq From 195a4115d8f3a01e8f484423fb5ef38acfb74090 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Thu, 19 Jun 2014 14:50:41 +0100 Subject: [PATCH 036/268] Samples --- lib/linguist/samples.json | 92 +++++++++++++++++++++++++++++++++++++-- 1 file changed, 89 insertions(+), 3 deletions(-) diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index c238bfe1..64823831 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -235,6 +235,9 @@ "Ioke": [ ".ik" ], + "Isabelle": [ + ".thy" + ], "Jade": [ ".jade" ], @@ -747,8 +750,8 @@ ".gemrc" ] }, - "tokens_total": 636184, - "languages_total": 816, + "tokens_total": 636320, + "languages_total": 817, "tokens": { "ABAP": { "*/**": 1, @@ -27441,6 +27444,87 @@ "SHEBANG#!ioke": 1, "println": 1 }, + "Isabelle": { + "theory": 1, + "HelloWorld": 3, + "imports": 1, + "Main": 1, + "begin": 1, + "section": 1, + "{": 5, + "*Playing": 1, + "around": 1, + "with": 2, + "Isabelle*": 1, + "}": 5, + "text": 4, + "*": 4, + "creating": 1, + "a": 2, + "lemma": 2, + "the": 2, + "name": 1, + "hello_world*": 1, + "hello_world": 2, + "by": 9, + "simp": 8, + "thm": 1, + "defining": 1, + "string": 1, + "constant": 1, + "definition": 1, + "where": 1, + "theorem": 2, + "(": 5, + "fact": 1, + "List.rev_rev_ident": 4, + ")": 5, + "*now": 1, + "we": 1, + "delete": 1, + "already": 1, + "proven": 1, + "lema": 1, + "and": 1, + "show": 2, + "it": 2, + "hand*": 1, + "declare": 1, + "[": 1, + "del": 1, + "]": 1, + "hide_fact": 1, + "corollary": 2, + "apply": 1, + "add": 1, + "HelloWorld_def": 1, + "done": 1, + "*does": 1, + "hold": 1, + "in": 1, + "general": 1, + "rev_rev_ident": 2, + "proof": 1, + "induction": 1, + "l": 2, + "case": 3, + "Nil": 1, + "thus": 1, + "next": 1, + "Cons": 1, + "ls": 1, + "assume": 1, + "IH": 2, + "have": 2, + "hence": 1, + "also": 1, + "finally": 1, + "using": 1, + "qed": 1, + "fastforce": 1, + "intro": 1, + "end": 1 + }, "Jade": { "p.": 1, "Hello": 1, @@ -68388,6 +68472,7 @@ "Inform 7": 75, "INI": 27, "Ioke": 2, + "Isabelle": 136, "Jade": 3, "Java": 8987, "JavaScript": 76970, @@ -68580,6 +68665,7 @@ "Inform 7": 2, "INI": 2, "Ioke": 1, + "Isabelle": 1, "Jade": 1, "Java": 6, "JavaScript": 22, @@ -68706,5 +68792,5 @@ "Zephir": 2, "Zimpl": 1 }, - "md5": "7403e3e21c597d10462391ab49bb9bf9" + "md5": "08b10456e2939230eb5cee4d4d487a0a" } \ No newline at end of file From b14267d40f41700a161d81463e156f67d25017c6 Mon Sep 17 00:00:00 2001 From: Kenichi Maehashi Date: Thu, 19 Jun 2014 22:59:12 +0900 Subject: [PATCH 037/268] add more samples for Xojo language --- samples/Xojo/App.xojo_code | 22 ++ samples/Xojo/BillingReport.xojo_report | 23 ++ samples/Xojo/MainMenuBar.xojo_menu | 112 +++++++++ samples/Xojo/MyToolbar.xojo_toolbar | 14 ++ samples/Xojo/Window1.xojo_window | 304 +++++++++++++++++++++++++ 5 files changed, 475 insertions(+) create mode 100644 samples/Xojo/App.xojo_code create mode 100644 samples/Xojo/BillingReport.xojo_report create mode 100644 samples/Xojo/MainMenuBar.xojo_menu create mode 100644 samples/Xojo/MyToolbar.xojo_toolbar create mode 100644 samples/Xojo/Window1.xojo_window diff --git a/samples/Xojo/App.xojo_code b/samples/Xojo/App.xojo_code new file mode 100644 index 00000000..4b7d02a5 --- /dev/null +++ b/samples/Xojo/App.xojo_code @@ -0,0 +1,22 @@ +#tag Class +Protected Class App +Inherits Application + #tag Constant, Name = kEditClear, Type = String, Dynamic = False, Default = \"&Delete", Scope = Public + #Tag Instance, Platform = Windows, Language = Default, Definition = \"&Delete" + #Tag Instance, Platform = Linux, Language = Default, Definition = \"&Delete" + #tag EndConstant + + #tag Constant, Name = kFileQuit, Type = String, Dynamic = False, Default = \"&Quit", Scope = Public + #Tag Instance, Platform = Windows, Language = Default, Definition = \"E&xit" + #tag EndConstant + + #tag Constant, Name = kFileQuitShortcut, Type = String, Dynamic = False, Default = \"", Scope = Public + #Tag Instance, Platform = Mac OS, Language = Default, Definition = \"Cmd+Q" + #Tag Instance, Platform = Linux, Language = Default, Definition = \"Ctrl+Q" + #tag EndConstant + + + #tag ViewBehavior + #tag EndViewBehavior +End Class +#tag EndClass diff --git a/samples/Xojo/BillingReport.xojo_report b/samples/Xojo/BillingReport.xojo_report new file mode 100644 index 00000000..fae10085 --- /dev/null +++ b/samples/Xojo/BillingReport.xojo_report @@ -0,0 +1,23 @@ +#tag Report +Begin Report BillingReport + Compatibility = "" + Units = 0 + Width = 8.5 + Begin PageHeader + Type = 1 + Height = 1.0 + End + Begin Body + Type = 3 + Height = 2.0 + End + Begin PageFooter + Type = 5 + Height = 1.0 + End +End +#tag EndReport + +#tag ReportCode +#tag EndReportCode + diff --git a/samples/Xojo/MainMenuBar.xojo_menu b/samples/Xojo/MainMenuBar.xojo_menu new file mode 100644 index 00000000..0634681c --- /dev/null +++ b/samples/Xojo/MainMenuBar.xojo_menu @@ -0,0 +1,112 @@ +#tag Menu +Begin Menu MainMenuBar + Begin MenuItem FileMenu + SpecialMenu = 0 + Text = "&File" + Index = -2147483648 + AutoEnable = True + Visible = True + Begin QuitMenuItem FileQuit + SpecialMenu = 0 + Text = "#App.kFileQuit" + Index = -2147483648 + ShortcutKey = "#App.kFileQuitShortcut" + Shortcut = "#App.kFileQuitShortcut" + AutoEnable = True + Visible = True + End + End + Begin MenuItem EditMenu + SpecialMenu = 0 + Text = "&Edit" + Index = -2147483648 + AutoEnable = True + Visible = True + Begin MenuItem EditUndo + SpecialMenu = 0 + Text = "&Undo" + Index = -2147483648 + ShortcutKey = "Z" + Shortcut = "Cmd+Z" + MenuModifier = True + AutoEnable = True + Visible = True + End + Begin MenuItem EditSeparator1 + SpecialMenu = 0 + Text = "-" + Index = -2147483648 + AutoEnable = True + Visible = True + End + Begin MenuItem EditCut + SpecialMenu = 0 + Text = "Cu&t" + Index = -2147483648 + ShortcutKey = "X" + Shortcut = "Cmd+X" + MenuModifier = True + AutoEnable = True + Visible = True + End + Begin MenuItem EditCopy + SpecialMenu = 0 + Text = "&Copy" + Index = -2147483648 + ShortcutKey = "C" + Shortcut = "Cmd+C" + MenuModifier = True + AutoEnable = True + Visible = True + End + Begin MenuItem EditPaste + SpecialMenu = 0 + Text = "&Paste" + Index = -2147483648 + ShortcutKey = "V" + Shortcut = "Cmd+V" + MenuModifier = True + AutoEnable = True + Visible = True + End + Begin MenuItem EditClear + SpecialMenu = 0 + Text = "#App.kEditClear" + Index = -2147483648 + AutoEnable = True + Visible = True + End + Begin MenuItem EditSeparator2 + SpecialMenu = 0 + Text = "-" + Index = -2147483648 + AutoEnable = True + Visible = True + End + Begin MenuItem EditSelectAll + SpecialMenu = 0 + Text = "Select &All" + Index = -2147483648 + ShortcutKey = "A" + Shortcut = "Cmd+A" + MenuModifier = True + AutoEnable = True + Visible = True + End + Begin MenuItem UntitledSeparator + SpecialMenu = 0 + Text = "-" + Index = -2147483648 + AutoEnable = True + Visible = True + End + Begin AppleMenuItem AboutItem + SpecialMenu = 0 + Text = "About This App..." + Index = -2147483648 + AutoEnable = True + Visible = True + End + End +End +#tag EndMenu diff --git a/samples/Xojo/MyToolbar.xojo_toolbar b/samples/Xojo/MyToolbar.xojo_toolbar new file mode 100644 index 00000000..02dfbf0a --- /dev/null +++ b/samples/Xojo/MyToolbar.xojo_toolbar @@ -0,0 +1,14 @@ +#tag Toolbar +Begin Toolbar MyToolbar + Begin ToolButton FirstItem + Caption = "First Item" + HelpTag = "" + Style = 0 + End + Begin ToolButton SecondItem + Caption = "Second Item" + HelpTag = "" + Style = 0 + End +End +#tag EndToolbar diff --git a/samples/Xojo/Window1.xojo_window b/samples/Xojo/Window1.xojo_window new file mode 100644 index 00000000..c52fd843 --- /dev/null +++ b/samples/Xojo/Window1.xojo_window @@ -0,0 +1,304 @@ +#tag Window +Begin Window Window1 + BackColor = &cFFFFFF00 + Backdrop = 0 + CloseButton = True + Compatibility = "" + Composite = False + Frame = 0 + FullScreen = False + FullScreenButton= False + HasBackColor = False + Height = 400 + ImplicitInstance= True + LiveResize = True + MacProcID = 0 + MaxHeight = 32000 + MaximizeButton = True + MaxWidth = 32000 + MenuBar = 1153981589 + MenuBarVisible = True + MinHeight = 64 + MinimizeButton = True + MinWidth = 64 + Placement = 0 + Resizeable = True + Title = "Sample App" + Visible = True + Width = 600 + Begin PushButton HelloWorldButton + AutoDeactivate = True + Bold = False + ButtonStyle = "0" + Cancel = False + Caption = "Push Me" + Default = True + Enabled = True + Height = 20 + HelpTag = "" + Index = -2147483648 + InitialParent = "" + Italic = False + Left = 260 + LockBottom = False + LockedInPosition= False + LockLeft = True + LockRight = False + LockTop = True + Scope = 0 + TabIndex = 0 + TabPanelIndex = 0 + TabStop = True + TextFont = "System" + TextSize = 0.0 + TextUnit = 0 + Top = 32 + Underline = False + Visible = True + Width = 80 + End +End +#tag EndWindow + +#tag WindowCode +#tag EndWindowCode + +#tag Events HelloWorldButton + #tag Event + Sub Action() + Dim total As Integer + + For i As Integer = 0 To 10 + total = total + i + Next + + MsgBox "Hello World! " + Str(total) + End Sub + #tag EndEvent +#tag EndEvents +#tag ViewBehavior + #tag ViewProperty + Name="BackColor" + Visible=true + Group="Appearance" + InitialValue="&hFFFFFF" + Type="Color" + #tag EndViewProperty + #tag ViewProperty + Name="Backdrop" + Visible=true + Group="Appearance" + Type="Picture" + EditorType="Picture" + #tag EndViewProperty + #tag ViewProperty + Name="CloseButton" + Visible=true + Group="Appearance" + InitialValue="True" + Type="Boolean" + EditorType="Boolean" + #tag EndViewProperty + #tag ViewProperty + Name="Composite" + Visible=true + Group="Appearance" + InitialValue="False" + Type="Boolean" + #tag EndViewProperty + #tag ViewProperty + Name="Frame" + Visible=true + Group="Appearance" + InitialValue="0" + Type="Integer" + EditorType="Enum" + #tag EnumValues + "0 - Document" + "1 - Movable Modal" + "2 - Modal Dialog" + "3 - Floating Window" + "4 - Plain Box" + "5 - Shadowed Box" + "6 - Rounded Window" + "7 - Global Floating Window" + "8 - Sheet Window" + "9 - Metal Window" + "10 - Drawer Window" + "11 - Modeless Dialog" + #tag EndEnumValues + #tag EndViewProperty + #tag ViewProperty + Name="FullScreen" + Group="Appearance" + InitialValue="False" + Type="Boolean" + EditorType="Boolean" + #tag EndViewProperty + #tag ViewProperty + Name="FullScreenButton" + Visible=true + Group="Appearance" + InitialValue="False" + Type="Boolean" + EditorType="Boolean" + #tag EndViewProperty + #tag ViewProperty + Name="HasBackColor" + Visible=true + Group="Appearance" + InitialValue="False" + Type="Boolean" + #tag EndViewProperty + #tag ViewProperty + Name="Height" + Visible=true + Group="Position" + InitialValue="400" + Type="Integer" + #tag EndViewProperty + #tag ViewProperty + Name="ImplicitInstance" + Visible=true + Group="Appearance" + InitialValue="True" + Type="Boolean" + EditorType="Boolean" + #tag EndViewProperty + #tag ViewProperty + Name="Interfaces" + Visible=true + Group="ID" + Type="String" + #tag EndViewProperty + #tag ViewProperty + Name="LiveResize" + Visible=true + Group="Appearance" + InitialValue="True" + Type="Boolean" + EditorType="Boolean" + #tag EndViewProperty + #tag ViewProperty + Name="MacProcID" + Visible=true + Group="Appearance" + InitialValue="0" + Type="Integer" + #tag EndViewProperty + #tag ViewProperty + Name="MaxHeight" + Visible=true + Group="Position" + InitialValue="32000" + Type="Integer" + #tag EndViewProperty + #tag ViewProperty + Name="MaximizeButton" + Visible=true + Group="Appearance" + InitialValue="True" + Type="Boolean" + EditorType="Boolean" + #tag EndViewProperty + #tag ViewProperty + Name="MaxWidth" + Visible=true + Group="Position" + InitialValue="32000" + Type="Integer" + #tag EndViewProperty + #tag ViewProperty + Name="MenuBar" + Visible=true + Group="Appearance" + Type="MenuBar" + EditorType="MenuBar" + #tag EndViewProperty + #tag ViewProperty + Name="MenuBarVisible" + Group="Appearance" + InitialValue="True" + Type="Boolean" + EditorType="Boolean" + #tag EndViewProperty + #tag ViewProperty + Name="MinHeight" + Visible=true + Group="Position" + InitialValue="64" + Type="Integer" + #tag EndViewProperty + #tag ViewProperty + Name="MinimizeButton" + Visible=true + Group="Appearance" + InitialValue="True" + Type="Boolean" + EditorType="Boolean" + #tag EndViewProperty + #tag ViewProperty + Name="MinWidth" + Visible=true + Group="Position" + InitialValue="64" + Type="Integer" + #tag EndViewProperty + #tag ViewProperty + Name="Name" + Visible=true + Group="ID" + Type="String" + #tag EndViewProperty + #tag ViewProperty + Name="Placement" + Visible=true + Group="Position" + InitialValue="0" + Type="Integer" + EditorType="Enum" + #tag EnumValues + "0 - Default" + "1 - Parent Window" + "2 - Main Screen" + "3 - Parent Window Screen" + "4 - Stagger" + #tag EndEnumValues + #tag EndViewProperty + #tag ViewProperty + Name="Resizeable" + Visible=true + Group="Appearance" + InitialValue="True" + Type="Boolean" + EditorType="Boolean" + #tag EndViewProperty + #tag ViewProperty + Name="Super" + Visible=true + Group="ID" + Type="String" + #tag EndViewProperty + #tag ViewProperty + Name="Title" + Visible=true + Group="Appearance" + InitialValue="Untitled" + Type="String" + #tag EndViewProperty + #tag ViewProperty + Name="Visible" + Visible=true + Group="Appearance" + InitialValue="True" + Type="Boolean" + EditorType="Boolean" + #tag EndViewProperty + #tag ViewProperty + Name="Width" + Visible=true + Group="Position" + InitialValue="600" + Type="Integer" + #tag EndViewProperty +#tag EndViewBehavior From dc1b8d9e80f5f458544f7ba446b7f0b68fe52d6c Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Thu, 19 Jun 2014 15:03:30 +0100 Subject: [PATCH 038/268] Samples --- lib/linguist/samples.json | 198 +++++++++++++++++++++++++++++++++++++- 1 file changed, 195 insertions(+), 3 deletions(-) diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index 64823831..c81d65ac 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -664,6 +664,14 @@ ".vcxproj", ".xml" ], + "Xojo": [ + ".xojo_code", + ".xojo_menu", + ".xojo_report", + ".xojo_script", + ".xojo_toolbar", + ".xojo_window" + ], "XProc": [ ".xpl" ], @@ -750,8 +758,8 @@ ".gemrc" ] }, - "tokens_total": 636320, - "languages_total": 817, + "tokens_total": 637127, + "languages_total": 823, "tokens": { "ABAP": { "*/**": 1, @@ -67859,6 +67867,188 @@ "": 1, "": 1 }, + "Xojo": { + "#tag": 88, + "Class": 3, + "Protected": 1, + "App": 1, + "Inherits": 1, + "Application": 1, + "Constant": 3, + "Name": 31, + "kEditClear": 1, + "Type": 34, + "String": 3, + "Dynamic": 3, + "False": 14, + "Default": 9, + "Scope": 4, + "Public": 3, + "#Tag": 5, + "Instance": 5, + "Platform": 5, + "Windows": 2, + "Language": 5, + "Definition": 5, + "Linux": 2, + "EndConstant": 3, + "kFileQuit": 1, + "kFileQuitShortcut": 1, + "Mac": 1, + "OS": 1, + "ViewBehavior": 2, + "EndViewBehavior": 2, + "End": 27, + "EndClass": 1, + "Report": 2, + "Begin": 23, + "BillingReport": 1, + "Compatibility": 2, + "Units": 1, + "Width": 3, + "PageHeader": 1, + "Height": 5, + "Body": 1, + "PageFooter": 1, + "EndReport": 1, + "ReportCode": 1, + "EndReportCode": 1, + "Dim": 3, + "dbFile": 3, + "As": 4, + "FolderItem": 1, + "db": 1, + "New": 1, + "SQLiteDatabase": 1, + "GetFolderItem": 1, + "(": 7, + ")": 7, + "db.DatabaseFile": 1, + "If": 4, + "db.Connect": 1, + "Then": 1, + "db.SQLExecute": 2, + "_": 1, + "+": 5, + "db.Error": 1, + "then": 1, + "MsgBox": 3, + "db.ErrorMessage": 2, + "db.Rollback": 1, + "Else": 2, + "db.Commit": 1, + "Menu": 2, + "MainMenuBar": 1, + "MenuItem": 11, + "FileMenu": 1, + "SpecialMenu": 13, + "Text": 13, + "Index": 14, + "-": 14, + "AutoEnable": 13, + "True": 46, + "Visible": 41, + "QuitMenuItem": 1, + "FileQuit": 1, + "ShortcutKey": 6, + "Shortcut": 6, + "EditMenu": 1, + "EditUndo": 1, + "MenuModifier": 5, + "EditSeparator1": 1, + "EditCut": 1, + "EditCopy": 1, + "EditPaste": 1, + "EditClear": 1, + "EditSeparator2": 1, + "EditSelectAll": 1, + "UntitledSeparator": 1, + "AppleMenuItem": 1, + "AboutItem": 1, + "EndMenu": 1, + "Toolbar": 2, + "MyToolbar": 1, + "ToolButton": 2, + "FirstItem": 1, + "Caption": 3, + "HelpTag": 3, + "Style": 2, + "SecondItem": 1, + "EndToolbar": 1, + "Window": 2, + "Window1": 1, + "BackColor": 1, + "&": 1, + "cFFFFFF00": 1, + "Backdrop": 1, + "CloseButton": 1, + "Composite": 1, + "Frame": 1, + "FullScreen": 1, + "FullScreenButton": 1, + "HasBackColor": 1, + "ImplicitInstance": 1, + "LiveResize": 1, + "MacProcID": 1, + "MaxHeight": 1, + "MaximizeButton": 1, + "MaxWidth": 1, + "MenuBar": 1, + "MenuBarVisible": 1, + "MinHeight": 1, + "MinimizeButton": 1, + "MinWidth": 1, + "Placement": 1, + "Resizeable": 1, + "Title": 1, + "PushButton": 1, + "HelloWorldButton": 2, + "AutoDeactivate": 1, + "Bold": 1, + "ButtonStyle": 1, + "Cancel": 1, + "Enabled": 1, + "InitialParent": 1, + "Italic": 1, + "Left": 1, + "LockBottom": 1, + "LockedInPosition": 1, + "LockLeft": 1, + "LockRight": 1, + "LockTop": 1, + "TabIndex": 1, + "TabPanelIndex": 1, + "TabStop": 1, + "TextFont": 1, + "TextSize": 1, + "TextUnit": 1, + "Top": 1, + "Underline": 1, + "EndWindow": 1, + "WindowCode": 1, + "EndWindowCode": 1, + "Events": 1, + "Event": 1, + "Sub": 2, + "Action": 1, + "total": 4, + "Integer": 2, + "For": 1, + "i": 2, + "To": 1, + "Next": 1, + "Str": 1, + "EndEvent": 1, + "EndEvents": 1, + "ViewProperty": 28, + "true": 26, + "Group": 28, + "InitialValue": 23, + "EndViewProperty": 28, + "EditorType": 14, + "EnumValues": 2, + "EndEnumValues": 2 + }, "XProc": { "": 1, "version=": 2, @@ -68591,6 +68781,7 @@ "wisp": 1363, "XC": 24, "XML": 7006, + "Xojo": 807, "XProc": 22, "XQuery": 801, "XSLT": 44, @@ -68784,6 +68975,7 @@ "wisp": 1, "XC": 1, "XML": 12, + "Xojo": 6, "XProc": 1, "XQuery": 1, "XSLT": 1, @@ -68792,5 +68984,5 @@ "Zephir": 2, "Zimpl": 1 }, - "md5": "08b10456e2939230eb5cee4d4d487a0a" + "md5": "5c995f9890d5f17c9b437ab48416178a" } \ No newline at end of file From e91caeaade1419e98df8dddce2d5238fcd251663 Mon Sep 17 00:00:00 2001 From: Paul Chaignon Date: Thu, 19 Jun 2014 16:39:59 +0200 Subject: [PATCH 039/268] Remove .rb test --- test/test_language.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/test/test_language.rb b/test/test_language.rb index 10c5f9a2..7c9b6bc0 100644 --- a/test/test_language.rb +++ b/test/test_language.rb @@ -249,7 +249,6 @@ class TestLanguage < Test::Unit::TestCase assert_equal Language['Nginx'], Language.find_by_filename('nginx.conf').first assert_equal ['C', 'C++', 'Objective-C'], Language.find_by_filename('foo.h').map(&:name).sort assert_equal [], Language.find_by_filename('rb') - assert_equal [], Language.find_by_filename('.rb') assert_equal [], Language.find_by_filename('.nkt') assert_equal [Language['Shell']], Language.find_by_filename('.bashrc') assert_equal [Language['Shell']], Language.find_by_filename('bash_profile') From 2be91e9b2e49cb4d7456ca3b15b188a923720caf Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Thu, 19 Jun 2014 07:53:52 -0700 Subject: [PATCH 040/268] Add .nuspec sample --- samples/XML/sample.nuspec | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 samples/XML/sample.nuspec diff --git a/samples/XML/sample.nuspec b/samples/XML/sample.nuspec new file mode 100644 index 00000000..238c325a --- /dev/null +++ b/samples/XML/sample.nuspec @@ -0,0 +1,21 @@ + + + + Sample + Sample + 0.101.0 + Hugh Bot + Hugh Bot + A package of nuget + + It just works + + http://hubot.github.com + + https://github.com/github/hubot/LICENSEmd + false + + + + + From e12bc070416d118929ea3c4baf13f334112699d7 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Thu, 19 Jun 2014 16:03:05 +0100 Subject: [PATCH 041/268] Samples --- lib/linguist/samples.json | 71 +++++++++++++++++++++++++++++---------- 1 file changed, 54 insertions(+), 17 deletions(-) diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index c81d65ac..afe89795 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -658,6 +658,7 @@ ".fsproj", ".ivy", ".nproj", + ".nuspec", ".pluginspec", ".targets", ".vbproj", @@ -758,8 +759,8 @@ ".gemrc" ] }, - "tokens_total": 637127, - "languages_total": 823, + "tokens_total": 637178, + "languages_total": 824, "tokens": { "ABAP": { "*/**": 1, @@ -66673,13 +66674,13 @@ "return": 1 }, "XML": { - "": 10, - "version=": 16, + "": 11, + "version=": 17, "encoding=": 7, "": 7, "ToolsVersion=": 6, "DefaultTargets=": 5, - "xmlns=": 7, + "xmlns=": 8, "": 21, "Project=": 12, "Condition=": 37, @@ -66728,7 +66729,7 @@ "full": 4, "": 6, "": 7, - "false": 10, + "false": 11, "": 7, "": 8, "bin": 11, @@ -66803,7 +66804,7 @@ "name=": 227, "xmlns": 2, "ea=": 2, - "": 3, + "": 4, "This": 21, "easyant": 3, "module.ant": 1, @@ -66820,7 +66821,7 @@ "own": 2, "specific": 8, "target.": 1, - "": 3, + "": 4, "": 2, "": 2, "my": 2, @@ -66883,7 +66884,7 @@ "": 1, "": 1, "": 120, - "": 120, + "": 121, "IObservedChange": 5, "generic": 3, "interface": 4, @@ -66911,7 +66912,7 @@ "casting": 1, "between": 15, "changes.": 2, - "": 121, + "": 122, "": 120, "The": 75, "object": 42, @@ -66919,7 +66920,7 @@ "raised": 1, "change.": 12, "name": 7, - "of": 75, + "of": 76, "property": 74, "changed": 18, "on": 35, @@ -67015,7 +67016,7 @@ "itself": 2, "changes": 13, ".": 20, - "It": 1, + "It": 2, "important": 6, "implement": 5, "Changing/Changed": 1, @@ -67104,7 +67105,7 @@ "to.": 7, "": 12, "": 84, - "A": 20, + "A": 21, "identical": 11, "types": 10, "one": 27, @@ -67648,6 +67649,43 @@ "Ingl": 1, "": 1, "": 1, + "": 1, + "": 1, + "": 1, + "Sample": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "Hugh": 2, + "Bot": 2, + "": 1, + "": 1, + "": 1, + "package": 1, + "nuget": 1, + "just": 1, + "works": 1, + "": 1, + "http": 2, + "//hubot.github.com": 1, + "": 1, + "": 1, + "": 1, + "https": 1, + "//github.com/github/hubot/LICENSEmd": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "src=": 1, + "target=": 1, + "": 1, + "": 1, "MyCommon": 1, "": 1, "Name=": 1, @@ -67860,7 +67898,6 @@ "loader/saver": 1, "FreeMedForms.": 1, "": 1, - "http": 1, "//www.freemedforms.com/": 1, "": 1, "": 1, @@ -68780,7 +68817,7 @@ "Volt": 388, "wisp": 1363, "XC": 24, - "XML": 7006, + "XML": 7057, "Xojo": 807, "XProc": 22, "XQuery": 801, @@ -68974,7 +69011,7 @@ "Volt": 1, "wisp": 1, "XC": 1, - "XML": 12, + "XML": 13, "Xojo": 6, "XProc": 1, "XQuery": 1, @@ -68984,5 +69021,5 @@ "Zephir": 2, "Zimpl": 1 }, - "md5": "5c995f9890d5f17c9b437ab48416178a" + "md5": "f4c480e7ebfd885f7fa0e842df3d4787" } \ No newline at end of file From 58ae0908e32664a93a0455b4848f3b7155d90b87 Mon Sep 17 00:00:00 2001 From: Paul Chaignon Date: Thu, 19 Jun 2014 18:34:37 +0200 Subject: [PATCH 042/268] Sample files to test the new FileBlob.extension method --- lib/linguist/samples.json | 129674 +++++++++++++++-------------- samples/PHP/filenames/.php | 34 + samples/XML/filenames/.cproject | 542 + 3 files changed, 65464 insertions(+), 64786 deletions(-) create mode 100755 samples/PHP/filenames/.php create mode 100755 samples/XML/filenames/.cproject diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index c238bfe1..7e578064 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -1,421 +1,41 @@ { "extnames": { - "ABAP": [ - ".abap" + "Stylus": [ + ".styl" ], - "Agda": [ - ".agda" + "IDL": [ + ".dlm", + ".pro" ], - "Alloy": [ - ".als" + "OpenEdge ABL": [ + ".cls", + ".p" ], - "Apex": [ - ".cls" + "Latte": [ + ".latte" ], - "AppleScript": [ - ".applescript" + "Racket": [ + ".scrbl" ], - "Arduino": [ - ".ino" + "Assembly": [ + ".asm", + ".inc" ], "AsciiDoc": [ ".adoc", ".asc", ".asciidoc" ], - "AspectJ": [ - ".aj" - ], - "Assembly": [ - ".asm", - ".inc" - ], - "ATS": [ - ".atxt", - ".dats", - ".hats", - ".sats" - ], - "AutoHotkey": [ - ".ahk" - ], - "Awk": [ - ".awk" - ], - "BlitzBasic": [ - ".bb" - ], - "Bluespec": [ - ".bsv" - ], - "Brightscript": [ - ".brs" - ], - "C": [ - ".c", - ".cats", - ".h" - ], - "C#": [ - ".cs", - ".cshtml" - ], - "C++": [ - ".cc", - ".cpp", - ".h", - ".hpp", - ".inl", - ".ipp" - ], - "Ceylon": [ - ".ceylon" - ], - "Cirru": [ - ".cirru" - ], - "Clojure": [ - ".cl2", - ".clj", - ".cljc", - ".cljs", - ".cljscm", - ".cljx", - ".hic" - ], - "COBOL": [ - ".cbl", - ".ccp", - ".cob", - ".cpy" - ], - "CoffeeScript": [ - ".coffee" - ], - "Common Lisp": [ - ".cl", - ".lisp" - ], - "Component Pascal": [ - ".cp", - ".cps" - ], - "Coq": [ - ".v" - ], - "Creole": [ - ".creole" - ], - "Crystal": [ - ".cr" - ], - "CSS": [ - ".css" - ], - "Cuda": [ - ".cu", - ".cuh" - ], - "Dart": [ - ".dart" - ], - "Diff": [ - ".patch" - ], - "DM": [ - ".dm" - ], - "Dogescript": [ - ".djs" - ], - "E": [ - ".E" - ], - "Eagle": [ - ".brd", - ".sch" - ], - "ECL": [ - ".ecl" - ], - "edn": [ - ".edn" - ], - "Elm": [ - ".elm" - ], - "Emacs Lisp": [ - ".el" - ], - "Erlang": [ - ".erl", - ".escript", - ".script!" - ], - "fish": [ - ".fish" - ], - "Forth": [ - ".forth", - ".fth" - ], - "Frege": [ - ".fr" - ], - "Game Maker Language": [ - ".gml" - ], - "GAMS": [ - ".gms" - ], - "GAP": [ - ".g", - ".gd", - ".gi" - ], - "GAS": [ - ".s" - ], - "GLSL": [ - ".fp", - ".frag", - ".glsl" - ], "Gnuplot": [ ".gnu", ".gp" ], - "Gosu": [ - ".gs", - ".gst", - ".gsx", - ".vark" - ], - "Grammatical Framework": [ - ".gf" - ], - "Groovy": [ - ".gradle", - ".grt", - ".gtpl", - ".gvy", - ".script!" - ], - "Groovy Server Pages": [ - ".gsp" - ], - "Haml": [ - ".haml" - ], - "Handlebars": [ - ".handlebars", - ".hbs" - ], - "Haskell": [ - ".hs" - ], - "HTML": [ - ".html", - ".st" - ], - "Hy": [ - ".hy" - ], - "IDL": [ - ".dlm", - ".pro" - ], - "Idris": [ - ".idr" - ], - "Inform 7": [ - ".i7x", - ".ni" - ], - "Ioke": [ - ".ik" - ], - "Jade": [ - ".jade" - ], - "Java": [ - ".java" - ], - "JavaScript": [ - ".frag", - ".js", - ".script!" - ], - "JSON": [ - ".json", - ".lock" - ], - "JSON5": [ - ".json5" - ], - "JSONiq": [ - ".jq" - ], - "JSONLD": [ - ".jsonld" - ], - "Julia": [ - ".jl" - ], - "Kit": [ - ".kit" - ], - "Kotlin": [ - ".kt" - ], - "KRL": [ - ".krl" - ], - "Lasso": [ - ".las", - ".lasso", - ".lasso9", - ".ldml" - ], - "Latte": [ - ".latte" - ], - "Less": [ - ".less" - ], - "LFE": [ - ".lfe" - ], - "Liquid": [ - ".liquid" - ], - "Literate Agda": [ - ".lagda" - ], - "Literate CoffeeScript": [ - ".litcoffee" - ], - "LiveScript": [ - ".ls" - ], - "Logos": [ - ".xm" - ], - "Logtalk": [ - ".lgt" - ], - "Lua": [ - ".pd_lua" - ], - "M": [ - ".m" - ], - "Makefile": [ - ".script!" + "Dogescript": [ + ".djs" ], "Markdown": [ ".md" ], - "Mask": [ - ".mask" - ], - "Mathematica": [ - ".m" - ], - "Matlab": [ - ".m" - ], - "Max": [ - ".maxhelp", - ".maxpat", - ".mxt" - ], - "MediaWiki": [ - ".mediawiki" - ], - "Mercury": [ - ".m", - ".moo" - ], - "Monkey": [ - ".monkey" - ], - "Moocode": [ - ".moo" - ], - "MoonScript": [ - ".moon" - ], - "MTML": [ - ".mtml" - ], - "Nemerle": [ - ".n" - ], - "NetLogo": [ - ".nlogo" - ], - "Nimrod": [ - ".nim" - ], - "NSIS": [ - ".nsh", - ".nsi" - ], - "Nu": [ - ".nu", - ".script!" - ], - "Objective-C": [ - ".h", - ".m" - ], - "Objective-C++": [ - ".mm" - ], - "OCaml": [ - ".eliom", - ".ml" - ], - "Omgrofl": [ - ".omgrofl" - ], - "Opa": [ - ".opa" - ], - "OpenCL": [ - ".cl" - ], - "OpenEdge ABL": [ - ".cls", - ".p" - ], - "Org": [ - ".org" - ], - "Ox": [ - ".ox", - ".oxh", - ".oxo" - ], - "Oxygene": [ - ".oxygene" - ], - "Pan": [ - ".pan" - ], - "Parrot Assembly": [ - ".pasm" - ], - "Parrot Internal Representation": [ - ".pir" - ], - "Pascal": [ - ".dpr" - ], - "PAWN": [ - ".pwn" - ], "Perl": [ ".fcgi", ".pl", @@ -424,230 +44,6 @@ ".script!", ".t" ], - "Perl6": [ - ".p6", - ".pm6" - ], - "PHP": [ - ".module", - ".php", - ".script!" - ], - "Pod": [ - ".pod" - ], - "PogoScript": [ - ".pogo" - ], - "PostScript": [ - ".ps" - ], - "PowerShell": [ - ".ps1", - ".psm1" - ], - "Processing": [ - ".pde" - ], - "Prolog": [ - ".ecl", - ".pl", - ".prolog" - ], - "Propeller Spin": [ - ".spin" - ], - "Protocol Buffer": [ - ".proto" - ], - "PureScript": [ - ".purs" - ], - "Python": [ - ".py", - ".pyde", - ".script!" - ], - "R": [ - ".R", - ".Rd", - ".r", - ".rsx", - ".script!" - ], - "Racket": [ - ".scrbl" - ], - "Ragel in Ruby Host": [ - ".rl" - ], - "RDoc": [ - ".rdoc" - ], - "Rebol": [ - ".r", - ".r2", - ".r3", - ".reb", - ".rebol" - ], - "Red": [ - ".red", - ".reds" - ], - "RMarkdown": [ - ".rmd" - ], - "RobotFramework": [ - ".robot" - ], - "Ruby": [ - ".pluginspec", - ".rabl", - ".rake", - ".rb", - ".script!" - ], - "Rust": [ - ".rs" - ], - "SAS": [ - ".sas" - ], - "Sass": [ - ".sass", - ".scss" - ], - "Scala": [ - ".sbt", - ".sc", - ".script!" - ], - "Scaml": [ - ".scaml" - ], - "Scheme": [ - ".sld", - ".sps" - ], - "Scilab": [ - ".sce", - ".sci", - ".tst" - ], - "SCSS": [ - ".scss" - ], - "Shell": [ - ".bash", - ".script!", - ".sh", - ".zsh" - ], - "ShellSession": [ - ".sh-session" - ], - "Shen": [ - ".shen" - ], - "Slash": [ - ".sl" - ], - "Slim": [ - ".slim" - ], - "Smalltalk": [ - ".st" - ], - "SourcePawn": [ - ".sp" - ], - "SQL": [ - ".prc", - ".sql", - ".tab", - ".udf", - ".viw" - ], - "Squirrel": [ - ".nut" - ], - "Standard ML": [ - ".ML", - ".fun", - ".sig", - ".sml" - ], - "Stata": [ - ".ado", - ".do", - ".doh", - ".ihlp", - ".mata", - ".matah", - ".sthlp" - ], - "STON": [ - ".ston" - ], - "Stylus": [ - ".styl" - ], - "SuperCollider": [ - ".scd" - ], - "Swift": [ - ".swift" - ], - "SystemVerilog": [ - ".sv", - ".svh", - ".vh" - ], - "Tcl": [ - ".tm" - ], - "Tea": [ - ".tea" - ], - "TeX": [ - ".cls" - ], - "Turing": [ - ".t" - ], - "TXL": [ - ".txl" - ], - "TypeScript": [ - ".ts" - ], - "UnrealScript": [ - ".uc" - ], - "VCL": [ - ".vcl" - ], - "Verilog": [ - ".v" - ], - "VHDL": [ - ".vhd" - ], - "Visual Basic": [ - ".cls", - ".vb", - ".vbhtml" - ], - "Volt": [ - ".volt" - ], - "wisp": [ - ".wisp" - ], - "XC": [ - ".xc" - ], "XML": [ ".ant", ".csproj", @@ -661,57 +57,651 @@ ".vcxproj", ".xml" ], - "XProc": [ - ".xpl" + "MTML": [ + ".mtml" ], - "XQuery": [ - ".xqm" + "Lasso": [ + ".las", + ".lasso", + ".lasso9", + ".ldml" ], - "XSLT": [ - ".xslt" + "Max": [ + ".maxhelp", + ".maxpat", + ".mxt" ], - "Xtend": [ - ".xtend" + "Awk": [ + ".awk" + ], + "JavaScript": [ + ".frag", + ".js", + ".script!" + ], + "Visual Basic": [ + ".cls", + ".vb", + ".vbhtml" + ], + "GAP": [ + ".g", + ".gd", + ".gi" + ], + "Logtalk": [ + ".lgt" + ], + "Scheme": [ + ".sld", + ".sps" + ], + "C++": [ + ".cc", + ".cpp", + ".h", + ".hpp", + ".inl", + ".ipp" + ], + "JSON5": [ + ".json5" + ], + "MoonScript": [ + ".moon" + ], + "Mercury": [ + ".m", + ".moo" + ], + "Perl6": [ + ".p6", + ".pm6" + ], + "VHDL": [ + ".vhd" + ], + "Literate CoffeeScript": [ + ".litcoffee" + ], + "KRL": [ + ".krl" + ], + "Nimrod": [ + ".nim" + ], + "Pascal": [ + ".dpr" + ], + "C#": [ + ".cs", + ".cshtml" + ], + "Groovy Server Pages": [ + ".gsp" + ], + "GAMS": [ + ".gms" + ], + "COBOL": [ + ".cbl", + ".ccp", + ".cob", + ".cpy" + ], + "Cuda": [ + ".cu", + ".cuh" + ], + "Gosu": [ + ".gs", + ".gst", + ".gsx", + ".vark" + ], + "Prolog": [ + ".ecl", + ".pl", + ".prolog" + ], + "Tcl": [ + ".tm" + ], + "Squirrel": [ + ".nut" ], "YAML": [ ".yml" ], - "Zephir": [ - ".zep" + "Clojure": [ + ".cl2", + ".clj", + ".cljc", + ".cljs", + ".cljscm", + ".cljx", + ".hic" + ], + "Tea": [ + ".tea" + ], + "M": [ + ".m" + ], + "NSIS": [ + ".nsh", + ".nsi" + ], + "Pod": [ + ".pod" + ], + "AutoHotkey": [ + ".ahk" + ], + "TXL": [ + ".txl" + ], + "wisp": [ + ".wisp" + ], + "Mathematica": [ + ".m" + ], + "Coq": [ + ".v" + ], + "GAS": [ + ".s" + ], + "Verilog": [ + ".v" + ], + "Apex": [ + ".cls" + ], + "Scala": [ + ".sbt", + ".sc", + ".script!" + ], + "JSONLD": [ + ".jsonld" + ], + "LiveScript": [ + ".ls" + ], + "Org": [ + ".org" + ], + "Liquid": [ + ".liquid" + ], + "UnrealScript": [ + ".uc" + ], + "Component Pascal": [ + ".cp", + ".cps" + ], + "PogoScript": [ + ".pogo" + ], + "Creole": [ + ".creole" + ], + "Processing": [ + ".pde" + ], + "Emacs Lisp": [ + ".el" + ], + "Elm": [ + ".elm" + ], + "Inform 7": [ + ".i7x", + ".ni" + ], + "XC": [ + ".xc" + ], + "JSON": [ + ".json", + ".lock" + ], + "Scaml": [ + ".scaml" + ], + "Shell": [ + ".bash", + ".script!", + ".sh", + ".zsh" + ], + "Sass": [ + ".sass", + ".scss" + ], + "Oxygene": [ + ".oxygene" + ], + "ATS": [ + ".atxt", + ".dats", + ".hats", + ".sats" + ], + "SCSS": [ + ".scss" + ], + "R": [ + ".R", + ".Rd", + ".r", + ".rsx", + ".script!" + ], + "Brightscript": [ + ".brs" + ], + "HTML": [ + ".html", + ".st" + ], + "Frege": [ + ".fr" + ], + "Literate Agda": [ + ".lagda" + ], + "Lua": [ + ".pd_lua" + ], + "XSLT": [ + ".xslt" ], "Zimpl": [ ".zmpl" + ], + "Groovy": [ + ".gradle", + ".grt", + ".gtpl", + ".gvy", + ".script!" + ], + "Ioke": [ + ".ik" + ], + "Jade": [ + ".jade" + ], + "TypeScript": [ + ".ts" + ], + "Erlang": [ + ".erl", + ".escript", + ".script!" + ], + "ABAP": [ + ".abap" + ], + "Rebol": [ + ".r", + ".r2", + ".r3", + ".reb", + ".rebol" + ], + "SuperCollider": [ + ".scd" + ], + "CoffeeScript": [ + ".coffee" + ], + "PHP": [ + ".module", + ".php", + ".script!" + ], + "MediaWiki": [ + ".mediawiki" + ], + "Ceylon": [ + ".ceylon" + ], + "fish": [ + ".fish" + ], + "Diff": [ + ".patch" + ], + "Slash": [ + ".sl" + ], + "Objective-C": [ + ".h", + ".m" + ], + "Stata": [ + ".ado", + ".do", + ".doh", + ".ihlp", + ".mata", + ".matah", + ".sthlp" + ], + "Shen": [ + ".shen" + ], + "Mask": [ + ".mask" + ], + "SAS": [ + ".sas" + ], + "Xtend": [ + ".xtend" + ], + "Arduino": [ + ".ino" + ], + "XProc": [ + ".xpl" + ], + "Haml": [ + ".haml" + ], + "AspectJ": [ + ".aj" + ], + "RDoc": [ + ".rdoc" + ], + "AppleScript": [ + ".applescript" + ], + "Ox": [ + ".ox", + ".oxh", + ".oxo" + ], + "STON": [ + ".ston" + ], + "Scilab": [ + ".sce", + ".sci", + ".tst" + ], + "Dart": [ + ".dart" + ], + "Nu": [ + ".nu", + ".script!" + ], + "Alloy": [ + ".als" + ], + "Red": [ + ".red", + ".reds" + ], + "BlitzBasic": [ + ".bb" + ], + "RobotFramework": [ + ".robot" + ], + "Agda": [ + ".agda" + ], + "Hy": [ + ".hy" + ], + "Less": [ + ".less" + ], + "Kit": [ + ".kit" + ], + "E": [ + ".E" + ], + "DM": [ + ".dm" + ], + "OpenCL": [ + ".cl" + ], + "ShellSession": [ + ".sh-session" + ], + "GLSL": [ + ".fp", + ".frag", + ".glsl" + ], + "ECL": [ + ".ecl" + ], + "Makefile": [ + ".script!" + ], + "Haskell": [ + ".hs" + ], + "Slim": [ + ".slim" + ], + "Zephir": [ + ".zep" + ], + "OCaml": [ + ".eliom", + ".ml" + ], + "VCL": [ + ".vcl" + ], + "Smalltalk": [ + ".st" + ], + "Parrot Assembly": [ + ".pasm" + ], + "Protocol Buffer": [ + ".proto" + ], + "SQL": [ + ".prc", + ".sql", + ".tab", + ".udf", + ".viw" + ], + "Nemerle": [ + ".n" + ], + "Bluespec": [ + ".bsv" + ], + "Swift": [ + ".swift" + ], + "SourcePawn": [ + ".sp" + ], + "Propeller Spin": [ + ".spin" + ], + "Cirru": [ + ".cirru" + ], + "Julia": [ + ".jl" + ], + "Ragel in Ruby Host": [ + ".rl" + ], + "JSONiq": [ + ".jq" + ], + "TeX": [ + ".cls" + ], + "XQuery": [ + ".xqm" + ], + "RMarkdown": [ + ".rmd" + ], + "Crystal": [ + ".cr" + ], + "edn": [ + ".edn" + ], + "PowerShell": [ + ".ps1", + ".psm1" + ], + "Game Maker Language": [ + ".gml" + ], + "Volt": [ + ".volt" + ], + "Monkey": [ + ".monkey" + ], + "SystemVerilog": [ + ".sv", + ".svh", + ".vh" + ], + "Grammatical Framework": [ + ".gf" + ], + "PostScript": [ + ".ps" + ], + "CSS": [ + ".css" + ], + "Forth": [ + ".forth", + ".fth" + ], + "LFE": [ + ".lfe" + ], + "Moocode": [ + ".moo" + ], + "Java": [ + ".java" + ], + "Turing": [ + ".t" + ], + "Kotlin": [ + ".kt" + ], + "Idris": [ + ".idr" + ], + "PureScript": [ + ".purs" + ], + "NetLogo": [ + ".nlogo" + ], + "Eagle": [ + ".brd", + ".sch" + ], + "Common Lisp": [ + ".cl", + ".lisp" + ], + "Parrot Internal Representation": [ + ".pir" + ], + "Objective-C++": [ + ".mm" + ], + "Rust": [ + ".rs" + ], + "Matlab": [ + ".m" + ], + "Pan": [ + ".pan" + ], + "PAWN": [ + ".pwn" + ], + "Ruby": [ + ".pluginspec", + ".rabl", + ".rake", + ".rb", + ".script!" + ], + "C": [ + ".c", + ".cats", + ".h" + ], + "Standard ML": [ + ".ML", + ".fun", + ".sig", + ".sml" + ], + "Logos": [ + ".xm" + ], + "Omgrofl": [ + ".omgrofl" + ], + "Opa": [ + ".opa" + ], + "Python": [ + ".py", + ".pyde", + ".script!" + ], + "Handlebars": [ + ".handlebars", + ".hbs" ] }, "interpreters": { }, "filenames": { - "ApacheConf": [ - ".htaccess", - "apache2.conf", - "httpd.conf" - ], - "INI": [ - ".editorconfig", - ".gitconfig" - ], - "Makefile": [ - "Makefile" - ], "Nginx": [ "nginx.conf" ], "Perl": [ "ack" ], - "R": [ - "expr-dist" + "XML": [ + ".cproject" ], - "Ruby": [ - "Appraisals", - "Capfile", - "Rakefile" + "YAML": [ + ".gemrc" + ], + "VimL": [ + ".gvimrc", + ".vimrc" ], "Shell": [ ".bash_logout", @@ -739,17 +729,34740 @@ "zshenv", "zshrc" ], - "VimL": [ - ".gvimrc", - ".vimrc" + "R": [ + "expr-dist" ], - "YAML": [ - ".gemrc" + "PHP": [ + ".php" + ], + "ApacheConf": [ + ".htaccess", + "apache2.conf", + "httpd.conf" + ], + "Makefile": [ + "Makefile" + ], + "INI": [ + ".editorconfig", + ".gitconfig" + ], + "Ruby": [ + "Appraisals", + "Capfile", + "Rakefile" ] }, - "tokens_total": 636184, - "languages_total": 816, + "tokens_total": 637393, + "languages_total": 818, "tokens": { + "Stylus": { + "border": 6, + "-": 10, + "radius": 5, + "(": 1, + ")": 1, + "webkit": 1, + "arguments": 3, + "moz": 1, + "a.button": 1, + "px": 5, + "fonts": 2, + "helvetica": 1, + "arial": 1, + "sans": 1, + "serif": 1, + "body": 1, + "{": 1, + "padding": 3, + ";": 2, + "font": 1, + "px/1.4": 1, + "}": 1, + "form": 2, + "input": 2, + "[": 2, + "type": 2, + "text": 2, + "]": 2, + "solid": 1, + "#eee": 1, + "color": 2, + "#ddd": 1, + "textarea": 1, + "@extends": 2, + "foo": 2, + "#FFF": 1, + ".bar": 1, + "background": 1, + "#000": 1 + }, + "IDL": { + "MODULE": 1, + "mg_analysis": 1, + "DESCRIPTION": 1, + "Tools": 1, + "for": 2, + "analysis": 1, + "VERSION": 1, + "SOURCE": 1, + "mgalloy": 1, + "BUILD_DATE": 1, + "January": 1, + "FUNCTION": 2, + "MG_ARRAY_EQUAL": 1, + "KEYWORDS": 1, + "MG_TOTAL": 1, + ";": 59, + "docformat": 3, + "+": 8, + "Find": 1, + "the": 7, + "greatest": 1, + "common": 1, + "denominator": 1, + "(": 26, + "GCD": 1, + ")": 26, + "two": 1, + "positive": 2, + "integers.": 1, + "Returns": 3, + "integer": 5, + "Params": 3, + "a": 4, + "in": 4, + "required": 4, + "type": 5, + "first": 1, + "b": 4, + "second": 1, + "-": 14, + "function": 4, + "mg_gcd": 2, + "compile_opt": 3, + "strictarr": 3, + "on_error": 1, + "if": 5, + "n_params": 1, + "ne": 1, + "then": 5, + "message": 2, + "mg_isinteger": 2, + "||": 1, + "begin": 2, + "endif": 2, + "_a": 3, + "abs": 2, + "_b": 3, + "minArg": 5, + "<": 1, + "maxArg": 3, + "eq": 2, + "return": 5, + "remainder": 3, + "mod": 1, + "end": 5, + "Inverse": 1, + "hyperbolic": 2, + "cosine.": 1, + "Uses": 1, + "formula": 1, + "text": 1, + "{": 3, + "acosh": 1, + "}": 3, + "z": 9, + "ln": 1, + "sqrt": 4, + "Examples": 2, + "The": 1, + "arc": 1, + "sine": 1, + "looks": 1, + "like": 2, + "IDL": 5, + "x": 8, + "*": 2, + "findgen": 1, + "/": 1, + "plot": 1, + "mg_acosh": 2, + "xstyle": 1, + "This": 1, + "should": 1, + "look": 1, + "..": 1, + "image": 1, + "acosh.png": 1, + "float": 1, + "double": 2, + "complex": 2, + "or": 1, + "depending": 1, + "on": 1, + "input": 2, + "numeric": 1, + "alog": 1, + "Truncate": 1, + "argument": 2, + "towards": 1, + "i.e.": 1, + "takes": 1, + "FLOOR": 1, + "of": 4, + "values": 2, + "and": 1, + "CEIL": 1, + "negative": 1, + "values.": 1, + "Try": 1, + "main": 2, + "level": 2, + "program": 2, + "at": 1, + "this": 1, + "file.": 1, + "It": 1, + "does": 1, + "print": 4, + "mg_trunc": 3, + "[": 6, + "]": 6, + "floor": 2, + "ceil": 2, + "array": 2, + "same": 1, + "as": 1, + "float/double": 1, + "containing": 1, + "to": 1, + "truncate": 1, + "result": 3, + "posInd": 3, + "where": 1, + "gt": 2, + "nposInd": 2, + "L": 1, + "example": 1 + }, + "OpenEdge ABL": { + "DEFINE": 16, + "INPUT": 11, + "PARAMETER": 3, + "objSendEmailAlg": 2, + "AS": 21, + "email.SendEmailSocket": 1, + "NO": 13, + "-": 73, + "UNDO.": 12, + "VARIABLE": 12, + "vbuffer": 9, + "MEMPTR": 2, + "vstatus": 1, + "LOGICAL": 1, + "vState": 2, + "INTEGER": 6, + "ASSIGN": 2, + "vstate": 1, + "FUNCTION": 1, + "getHostname": 1, + "RETURNS": 1, + "CHARACTER": 9, + "(": 44, + ")": 44, + "cHostname": 1, + "THROUGH": 1, + "hostname": 1, + "ECHO.": 1, + "IMPORT": 1, + "UNFORMATTED": 1, + "cHostname.": 2, + "CLOSE.": 1, + "RETURN": 7, + "END": 12, + "FUNCTION.": 1, + "PROCEDURE": 2, + "newState": 2, + "INTEGER.": 1, + "pstring": 4, + "CHARACTER.": 1, + "newState.": 1, + "IF": 2, + "THEN": 2, + "RETURN.": 1, + "SET": 5, + "SIZE": 5, + "LENGTH": 3, + "+": 21, + "PUT": 1, + "STRING": 7, + "pstring.": 1, + "SELF": 4, + "WRITE": 1, + ".": 14, + "PROCEDURE.": 2, + "ReadSocketResponse": 1, + "vlength": 5, + "str": 3, + "v": 1, + "MESSAGE": 2, + "GET": 3, + "BYTES": 2, + "AVAILABLE": 2, + "VIEW": 1, + "ALERT": 1, + "BOX.": 1, + "DO": 2, + "READ": 1, + "handleResponse": 1, + "END.": 2, + "USING": 3, + "Progress.Lang.*.": 3, + "CLASS": 2, + "email.Email": 2, + "USE": 2, + "WIDGET": 2, + "POOL": 2, + "&": 3, + "SCOPED": 1, + "QUOTES": 1, + "@#": 1, + "%": 2, + "*": 2, + "._MIME_BOUNDARY_.": 1, + "#@": 1, + "WIN": 1, + "From": 4, + "To": 8, + "CC": 2, + "BCC": 2, + "Personal": 1, + "Private": 1, + "Company": 2, + "confidential": 2, + "normal": 1, + "urgent": 2, + "non": 1, + "Cannot": 3, + "locate": 3, + "file": 6, + "in": 3, + "the": 3, + "filesystem": 3, + "R": 3, + "File": 3, + "exists": 3, + "but": 3, + "is": 3, + "not": 3, + "readable": 3, + "Error": 3, + "copying": 3, + "from": 3, + "<\">": 8, + "ttSenders": 2, + "cEmailAddress": 8, + "n": 13, + "ttToRecipients": 1, + "Reply": 3, + "ttReplyToRecipients": 1, + "Cc": 2, + "ttCCRecipients": 1, + "Bcc": 2, + "ttBCCRecipients": 1, + "Return": 1, + "Receipt": 1, + "ttDeliveryReceiptRecipients": 1, + "Disposition": 3, + "Notification": 1, + "ttReadReceiptRecipients": 1, + "Subject": 2, + "Importance": 3, + "H": 1, + "High": 1, + "L": 1, + "Low": 1, + "Sensitivity": 2, + "Priority": 2, + "Date": 4, + "By": 1, + "Expiry": 2, + "Mime": 1, + "Version": 1, + "Content": 10, + "Type": 4, + "multipart/mixed": 1, + ";": 5, + "boundary": 1, + "text/plain": 2, + "charset": 2, + "Transfer": 4, + "Encoding": 4, + "base64": 2, + "bit": 2, + "application/octet": 1, + "stream": 1, + "attachment": 2, + "filename": 2, + "ttAttachments.cFileName": 2, + "cNewLine.": 1, + "lcReturnData.": 1, + "METHOD.": 6, + "METHOD": 6, + "PUBLIC": 6, + "send": 1, + "objSendEmailAlgorithm": 1, + "sendEmail": 2, + "THIS": 1, + "OBJECT": 2, + "CLASS.": 2, + "INTERFACE": 1, + "email.SendEmailAlgorithm": 1, + "ipobjEmail": 1, + "INTERFACE.": 1, + "email.Util": 1, + "FINAL": 1, + "PRIVATE": 1, + "STATIC": 5, + "cMonthMap": 2, + "EXTENT": 1, + "INITIAL": 1, + "[": 2, + "]": 2, + "ABLDateTimeToEmail": 3, + "ipdttzDateTime": 6, + "DATETIME": 3, + "TZ": 2, + "DAY": 1, + "MONTH": 1, + "YEAR": 1, + "TRUNCATE": 2, + "MTIME": 1, + "/": 2, + "ABLTimeZoneToString": 2, + "TIMEZONE": 1, + "ipdtDateTime": 2, + "ipiTimeZone": 3, + "ABSOLUTE": 1, + "MODULO": 1, + "LONGCHAR": 4, + "ConvertDataToBase64": 1, + "iplcNonEncodedData": 2, + "lcPreBase64Data": 4, + "lcPostBase64Data": 3, + "mptrPostBase64Data": 3, + "i": 3, + "COPY": 1, + "LOB": 1, + "FROM": 1, + "TO": 2, + "mptrPostBase64Data.": 1, + "BASE64": 1, + "ENCODE": 1, + "BY": 1, + "SUBSTRING": 1, + "CHR": 2, + "lcPostBase64Data.": 1 + }, + "Latte": { + "{": 54, + "**": 1, + "*": 4, + "@param": 3, + "string": 2, + "basePath": 1, + "web": 1, + "base": 1, + "path": 1, + "robots": 2, + "tell": 1, + "how": 1, + "to": 2, + "index": 1, + "the": 1, + "content": 1, + "of": 3, + "a": 4, + "page": 1, + "(": 18, + "optional": 1, + ")": 18, + "array": 1, + "flashes": 1, + "flash": 3, + "messages": 1, + "}": 54, + "": 1, + "html": 1, + "": 1, + "": 1, + "": 6, + "charset=": 1, + "name=": 4, + "content=": 5, + "n": 8, + "ifset=": 1, + "http": 1, + "equiv=": 1, + "": 1, + "ifset": 1, + "title": 4, + "/ifset": 1, + "Translation": 1, + "report": 1, + "": 1, + "": 2, + "rel=": 2, + "media=": 1, + "href=": 4, + "": 3, + "block": 3, + "#head": 1, + "/block": 3, + "": 1, + "": 1, + "class=": 12, + "document.documentElement.className": 1, + "+": 3, + "#navbar": 1, + "include": 3, + "_navbar.latte": 1, + "
": 6, + "inner": 1, + "foreach=": 3, + "_flash.latte": 1, + "
": 7, + "#content": 1, + "
": 1, + "
": 1, + "src=": 1, + "#scripts": 1, + "": 1, + "": 1, + "var": 3, + "define": 1, + "author": 7, + "": 2, + "Author": 2, + "authorId": 2, + "-": 71, + "id": 3, + "black": 2, + "avatar": 2, + "img": 2, + "rounded": 2, + "class": 2, + "tooltip": 4, + "Total": 1, + "time": 4, + "shortName": 1, + "translated": 4, + "on": 5, + "all": 1, + "videos.": 1, + "amaraCallbackLink": 1, + "row": 2, + "col": 3, + "md": 2, + "outOf": 5, + "done": 7, + "threshold": 4, + "alert": 2, + "warning": 2, + "<=>": 2, + "Seems": 1, + "complete": 1, + "|": 6, + "out": 1, + "

": 2, + "elseif": 2, + "<": 1, + "p": 1, + "if": 7, + "Although": 1, + "is": 1, + "there": 1, + "are": 1, + "no": 1, + "English": 1, + "subtitles": 1, + "for": 1, + "comparison.": 1, + "/if": 8, + "/cache": 1, + "editor": 1, + "ksid": 2, + "new": 5, + "video": 2, + "siteId": 1, + "Video": 1, + "khanovaskola.cz": 1, + "revision": 18, + "rev": 4, + "this": 3, + "older": 1, + "#": 2, + "else": 2, + "newer": 1, + "
": 1, + "

": 1, + "diffs": 3, + "noescape": 2, + "

": 1, + "description": 1, + "text": 4, + "as": 2, + "line": 3, + "context": 1, + "splitter": 1, + "template": 1, + "bottom": 1, + "Expand": 1, + "fa": 16, + "sort": 1, + "ellipsis": 1, + "h": 1, + "success": 1, + "amaraEdit": 1, + "amaraId": 2, + "editButton": 1, + "btn": 17, + "default": 6, + "edit": 1, + "khanAcademy": 1, + "kaButton": 1, + "link": 1, + "info": 1, + "group": 4, + "approve": 1, + "thumbs": 3, + "up": 1, + "markIncomplete": 2, + "down": 2, + "redirectToAdd": 1, + "plus": 1, + "square": 1, + "table": 2, + "condensed": 1, + "revisions": 1, + "revId": 1, + "secondary": 2, + "Percent": 1, + "lines": 1, + "&": 1, + "thinsp": 1, + "%": 1, + "": 3, + "": 3, + "": 2, + "incomplete": 3, + "approved": 2, + "": 1, + "user": 1, + "loggedIn": 1, + "&&": 1, + "comments": 2, + "count": 1, + "": 2, + "": 2, + "colspan=": 1, + "": 1, + "comment": 4, + "left": 1, + "createdAt": 1, + "timeAgo": 1, + "noborder": 1, + "input": 3, + "form": 1, + "control": 1, + "Comment": 1, + "only": 1, + "visible": 1, + "other": 1, + "editors": 1, + "save": 1, + "share": 1, + "": 1, + "": 1, + "/form": 1, + "/foreach": 1, + "
": 1 + }, + "Racket": { + ";": 3, + "Clean": 1, + "simple": 1, + "and": 1, + "efficient": 1, + "code": 1, + "-": 94, + "that": 2, + "s": 1, + "the": 3, + "power": 1, + "of": 4, + "Racket": 2, + "http": 1, + "//racket": 1, + "lang.org/": 1, + "(": 23, + "define": 1, + "bottles": 4, + "n": 8, + "more": 2, + ")": 23, + "printf": 2, + "case": 1, + "[": 16, + "]": 16, + "else": 1, + "if": 1, + "for": 2, + "in": 3, + "range": 1, + "sub1": 1, + "displayln": 2, + "#lang": 1, + "scribble/manual": 1, + "@": 3, + "require": 1, + "scribble/bnf": 1, + "@title": 1, + "{": 2, + "Scribble": 3, + "The": 1, + "Documentation": 1, + "Tool": 1, + "}": 2, + "@author": 1, + "is": 3, + "a": 1, + "collection": 1, + "tools": 1, + "creating": 1, + "prose": 2, + "documents": 1, + "papers": 1, + "books": 1, + "library": 1, + "documentation": 1, + "etc.": 1, + "HTML": 1, + "or": 2, + "PDF": 1, + "via": 1, + "Latex": 1, + "form.": 1, + "More": 1, + "generally": 1, + "helps": 1, + "you": 1, + "write": 1, + "programs": 1, + "are": 1, + "rich": 1, + "textual": 1, + "content": 2, + "whether": 1, + "to": 2, + "be": 2, + "typeset": 1, + "any": 1, + "other": 1, + "form": 1, + "text": 1, + "generated": 1, + "programmatically.": 1, + "This": 1, + "document": 1, + "itself": 1, + "written": 1, + "using": 1, + "Scribble.": 1, + "You": 1, + "can": 1, + "see": 1, + "its": 1, + "source": 1, + "at": 1, + "let": 1, + "url": 3, + "link": 1, + "starting": 1, + "with": 1, + "@filepath": 1, + "scribble.scrbl": 1, + "file.": 1, + "@table": 1, + "contents": 1, + "@include": 8, + "section": 9, + "@index": 1 + }, + "Assembly": { + ";": 20, + "flat": 4, + "assembler": 6, + "interface": 2, + "for": 2, + "Win32": 2, + "Copyright": 4, + "(": 13, + "c": 4, + ")": 6, + "-": 87, + "Tomasz": 4, + "Grysztar.": 4, + "All": 4, + "rights": 4, + "reserved.": 4, + "format": 1, + "PE": 1, + "console": 1, + "section": 4, + "code": 1, + "readable": 4, + "executable": 1, + "start": 1, + "mov": 1253, + "[": 2026, + "con_handle": 8, + "]": 2026, + "STD_OUTPUT_HANDLE": 2, + "esi": 619, + "_logo": 2, + "call": 845, + "display_string": 19, + "get_params": 2, + "jc": 28, + "information": 2, + "init_memory": 2, + "_memory_prefix": 2, + "eax": 510, + "memory_end": 7, + "sub": 64, + "memory_start": 4, + "add": 76, + "additional_memory_end": 9, + "additional_memory": 6, + "shr": 30, + "display_number": 8, + "_memory_suffix": 2, + "GetTickCount": 3, + "start_time": 3, + "preprocessor": 1, + "parser": 1, + "formatter": 1, + "display_user_messages": 3, + "movzx": 13, + "current_pass": 16, + "inc": 87, + "_passes_suffix": 2, + "xor": 52, + "edx": 219, + "ebx": 336, + "div": 8, + "or": 194, + "jz": 107, + "display_bytes_count": 2, + "push": 150, + "dl": 58, + "display_character": 6, + "pop": 99, + "_seconds_suffix": 2, + "written_size": 1, + "_bytes_suffix": 2, + "al": 1174, + "jmp": 450, + "exit_program": 5, + "_usage": 2, + "input_file": 4, + "output_file": 3, + "symbols_file": 4, + "memory_setting": 4, + "passes_limit": 3, + "GetCommandLine": 2, + "edi": 250, + "params": 2, + "find_command_start": 2, + "lodsb": 12, + "cmp": 1088, + "h": 376, + "je": 485, + "skip_quoted_name": 3, + "skip_name": 2, + "find_param": 7, + "all_params": 5, + "option_param": 2, + "Dh": 19, + "jne": 485, + "get_output_file": 2, + "process_param": 3, + "bad_params": 11, + "string_param": 3, + "copy_param": 2, + "stosb": 6, + "param_end": 6, + "string_param_end": 2, + "memory_option": 4, + "passes_option": 4, + "symbols_option": 3, + "stc": 9, + "ret": 70, + "get_option_value": 3, + "get_option_digit": 2, + "option_value_ok": 4, + "invalid_option_value": 5, + "ja": 28, + "imul": 1, + "jo": 2, + "dec": 30, + "clc": 11, + "shl": 17, + "jae": 34, + "dx": 27, + "find_symbols_file_name": 2, + "include": 15, + "data": 3, + "writeable": 2, + "_copyright": 1, + "db": 35, + "Ah": 25, + "VERSION_STRING": 1, + "align": 1, + "dd": 22, + "bytes_count": 8, + "displayed_count": 4, + "character": 3, + "last_displayed": 5, + "rb": 4, + "options": 1, + "buffer": 14, + "stack": 1, + "import": 1, + "rva": 16, + "kernel_name": 2, + "kernel_table": 2, + "ExitProcess": 2, + "_ExitProcess": 2, + "CreateFile": 3, + "_CreateFileA": 2, + "ReadFile": 2, + "_ReadFile": 2, + "WriteFile": 6, + "_WriteFile": 2, + "CloseHandle": 2, + "_CloseHandle": 2, + "SetFilePointer": 2, + "_SetFilePointer": 2, + "_GetCommandLineA": 2, + "GetEnvironmentVariable": 2, + "_GetEnvironmentVariable": 2, + "GetStdHandle": 5, + "_GetStdHandle": 2, + "VirtualAlloc": 2, + "_VirtualAlloc": 2, + "VirtualFree": 2, + "_VirtualFree": 2, + "_GetTickCount": 2, + "GetSystemTime": 2, + "_GetSystemTime": 2, + "GlobalMemoryStatus": 2, + "_GlobalMemoryStatus": 2, + "dw": 14, + "fixups": 1, + "discardable": 1, + "CREATE_NEW": 1, + "CREATE_ALWAYS": 2, + "OPEN_EXISTING": 2, + "OPEN_ALWAYS": 1, + "TRUNCATE_EXISTING": 1, + "FILE_SHARE_READ": 3, + "FILE_SHARE_WRITE": 1, + "FILE_SHARE_DELETE": 1, + "GENERIC_READ": 2, + "GENERIC_WRITE": 2, + "STD_INPUT_HANDLE": 1, + "FFFFFFF6h": 1, + "FFFFFFF5h": 1, + "STD_ERROR_HANDLE": 3, + "FFFFFFF4h": 1, + "MEM_COMMIT": 2, + "MEM_RESERVE": 1, + "MEM_DECOMMIT": 1, + "MEM_RELEASE": 2, + "MEM_FREE": 1, + "MEM_PRIVATE": 1, + "MEM_MAPPED": 1, + "MEM_RESET": 1, + "MEM_TOP_DOWN": 1, + "PAGE_NOACCESS": 1, + "PAGE_READONLY": 1, + "PAGE_READWRITE": 2, + "PAGE_WRITECOPY": 1, + "PAGE_EXECUTE": 1, + "PAGE_EXECUTE_READ": 1, + "PAGE_EXECUTE_READWRITE": 1, + "PAGE_EXECUTE_WRITECOPY": 1, + "PAGE_GUARD": 1, + "PAGE_NOCACHE": 1, + "esp": 14, + "and": 50, + "not": 42, + "FFFh": 3, + "stack_limit": 2, + "jnz": 125, + "allocate_memory": 4, + "dword": 87, + "+": 232, + "jl": 13, + "large_memory": 3, + "ecx": 153, + "not_enough_memory": 2, + "jb": 34, + "out_of_memory": 19, + "test": 95, + "do_exit": 2, + "get_environment_variable": 1, + "jbe": 11, + "buffer_for_variable_ok": 2, + "open": 2, + "file_error": 6, + "create": 1, + "write": 1, + "read": 3, + "ebp": 49, + "close": 3, + "lseek": 5, + "repne": 1, + "scasb": 1, + "neg": 4, + "bl": 124, + "display_loop": 2, + "display_digit": 3, + "digit_ok": 2, + "show_display_buffer": 2, + "line_break_ok": 4, + "make_line_break": 2, + "ax": 87, + "word": 79, + "A0Dh": 2, + "D0Ah": 1, + "display_block": 4, + "take_last_two_characters": 2, + "block_displayed": 2, + "ah": 229, + "block_ok": 2, + "fatal_error": 1, + "error_prefix": 3, + "error_suffix": 3, + "FFh": 4, + "assembler_error": 1, + "current_line": 24, + "get_error_lines": 2, + "byte": 549, + "get_next_error_line": 2, + "display_error_line": 3, + "find_definition_origin": 2, + "line_number_start": 3, + "FFFFFFFh": 2, + "line_number_ok": 2, + "line_data_start": 2, + "line_data_displayed": 2, + "lea": 8, + "get_line_data": 2, + "display_line_data": 5, + "loop": 2, + "cr_lf": 2, + "make_timestamp": 1, + "mul": 5, + "months_correction": 2, + "day_correction_ok": 4, + "b": 30, + "day_correction": 2, + "adc": 9, + "core": 2, + "simple_instruction_except64": 1, + "code_type": 106, + "illegal_instruction": 48, + "simple_instruction": 6, + "stos": 107, + "instruction_assembled": 138, + "simple_instruction_only64": 1, + "simple_instruction_16bit_except64": 1, + "simple_instruction_16bit": 2, + "size_prefix": 3, + "simple_instruction_32bit_except64": 1, + "simple_instruction_32bit": 6, + "iret_instruction": 1, + "simple_instruction_64bit": 2, + "simple_extended_instruction_64bit": 1, + "simple_extended_instruction": 1, + "Fh": 73, + "prefix_instruction": 2, + "prefixed_instruction": 11, + "continue_line": 8, + "segment_prefix": 2, + "segment_register": 7, + "store_segment_prefix": 1, + "int_instruction": 1, + "lods": 366, + "get_size_operator": 137, + "invalid_operand_size": 131, + "invalid_operand": 239, + "get_byte_value": 23, + "jns": 1, + "int_imm_ok": 2, + "recoverable_overflow": 4, + "CDh": 1, + "aa_instruction": 1, + "aa_store": 2, + "xchg": 31, + "operand_size": 121, + "basic_instruction": 1, + "base_code": 195, + "basic_reg": 2, + "basic_mem": 1, + "get_address": 62, + "basic_mem_imm": 2, + "basic_mem_reg": 1, + "convert_register": 60, + "postbyte_register": 137, + "instruction_ready": 72, + "operand_autodetect": 47, + "store_instruction": 3, + "basic_mem_imm_nosize": 2, + "basic_mem_imm_8bit": 2, + "basic_mem_imm_16bit": 2, + "basic_mem_imm_32bit": 2, + "basic_mem_imm_64bit": 1, + "size_declared": 17, + "long_immediate_not_encodable": 14, + "operand_64bit": 18, + "get_simm32": 10, + "value_type": 42, + "basic_mem_imm_32bit_ok": 2, + "recoverable_unknown_size": 19, + "value": 38, + "store_instruction_with_imm8": 11, + "operand_16bit": 25, + "get_word_value": 19, + "basic_mem_imm_16bit_store": 3, + "basic_mem_simm_8bit": 5, + "store_instruction_with_imm16": 4, + "operand_32bit": 27, + "get_dword_value": 13, + "basic_mem_imm_32bit_store": 3, + "store_instruction_with_imm32": 4, + "get_qword_value": 5, + "cdq": 11, + "value_out_of_range": 10, + "get_simm32_ok": 2, + "basic_reg_reg": 2, + "basic_reg_imm": 2, + "basic_reg_mem": 1, + "basic_reg_mem_8bit": 2, + "nomem_instruction_ready": 53, + "store_nomem_instruction": 19, + "basic_reg_imm_8bit": 2, + "basic_reg_imm_16bit": 2, + "basic_reg_imm_32bit": 2, + "basic_reg_imm_64bit": 1, + "basic_reg_imm_32bit_ok": 2, + "basic_al_imm": 2, + "basic_reg_imm_16bit_store": 3, + "basic_reg_simm_8bit": 5, + "basic_ax_imm": 2, + "basic_store_imm_16bit": 2, + "mark_relocation": 26, + "store_instruction_code": 26, + "basic_reg_imm_32bit_store": 3, + "basic_eax_imm": 2, + "basic_store_imm_32bit": 2, + "error_line": 16, + "ignore_unknown_size": 2, + "error": 7, + "operand_size_not_specified": 1, + "single_operand_instruction": 1, + "F6h": 4, + "single_reg": 2, + "single_mem": 1, + "single_mem_8bit": 2, + "single_mem_nosize": 2, + "single_reg_8bit": 2, + "mov_instruction": 1, + "mov_reg": 2, + "mov_mem": 1, + "mov_mem_imm": 2, + "mov_mem_reg": 1, + "mov_mem_general_reg": 2, + "mov_mem_sreg": 2, + "mov_mem_reg_8bit": 2, + "bh": 34, + "mov_mem_ax": 2, + "mov_mem_al": 1, + "ch": 55, + "mov_mem_address16_al": 3, + "mov_mem_address32_al": 3, + "mov_mem_address64_al": 3, + "invalid_address_size": 18, + "store_segment_prefix_if_necessary": 17, + "address_32bit_prefix": 11, + "A2h": 3, + "store_mov_address32": 4, + "store_address_32bit_value": 1, + "address_16bit_prefix": 11, + "store_mov_address16": 4, + "invalid_address": 32, + "jge": 5, + "store_mov_address64": 4, + "store_address_64bit_value": 1, + "mov_mem_address16_ax": 3, + "mov_mem_address32_ax": 3, + "mov_mem_address64_ax": 3, + "A3h": 3, + "mov_mem_sreg_store": 2, + "Ch": 11, + "mov_mem_imm_nosize": 2, + "mov_mem_imm_8bit": 2, + "mov_mem_imm_16bit": 2, + "mov_mem_imm_32bit": 2, + "mov_mem_imm_64bit": 1, + "mov_mem_imm_32bit_store": 2, + "C6h": 1, + "C7h": 4, + "F0h": 7, + "mov_sreg": 2, + "mov_reg_mem": 2, + "mov_reg_imm": 2, + "mov_reg_reg": 1, + "mov_reg_sreg": 2, + "mov_reg_reg_8bit": 2, + "mov_reg_creg": 2, + "mov_reg_dreg": 2, + "mov_reg_treg": 2, + "mov_reg_sreg64": 2, + "mov_reg_sreg32": 2, + "mov_reg_sreg_store": 3, + "extended_code": 73, + "mov_reg_xrx": 3, + "mov_reg_xrx_64bit": 2, + "mov_reg_xrx_store": 3, + "mov_reg_mem_8bit": 2, + "mov_ax_mem": 2, + "mov_al_mem": 2, + "mov_al_mem_address16": 3, + "mov_al_mem_address32": 3, + "mov_al_mem_address64": 3, + "A0h": 4, + "mov_ax_mem_address16": 3, + "mov_ax_mem_address32": 3, + "mov_ax_mem_address64": 3, + "A1h": 4, + "mov_reg_imm_8bit": 2, + "mov_reg_imm_16bit": 2, + "mov_reg_imm_32bit": 2, + "mov_reg_imm_64bit": 1, + "mov_reg_imm_64bit_store": 3, + "mov_reg_64bit_imm_32bit": 2, + "B8h": 3, + "store_mov_reg_imm_code": 5, + "B0h": 5, + "mov_store_imm_32bit": 2, + "mov_reg_imm_prefix_ok": 2, + "rex_prefix": 9, + "mov_creg": 2, + "mov_dreg": 2, + "mov_treg": 2, + "mov_sreg_mem": 2, + "mov_sreg_reg": 1, + "mov_sreg_reg_size_ok": 2, + "Eh": 8, + "mov_sreg_mem_size_ok": 2, + "mov_xrx": 3, + "mov_xrx_64bit": 2, + "mov_xrx_store": 4, + "test_instruction": 1, + "test_reg": 2, + "test_mem": 1, + "test_mem_imm": 2, + "test_mem_reg": 2, + "test_mem_reg_8bit": 2, + "test_mem_imm_nosize": 2, + "test_mem_imm_8bit": 2, + "test_mem_imm_16bit": 2, + "test_mem_imm_32bit": 2, + "test_mem_imm_64bit": 1, + "test_mem_imm_32bit_store": 2, + "F7h": 5, + "test_reg_mem": 3, + "test_reg_imm": 2, + "test_reg_reg": 1, + "test_reg_reg_8bit": 2, + "test_reg_imm_8bit": 2, + "test_reg_imm_16bit": 2, + "test_reg_imm_32bit": 2, + "test_reg_imm_64bit": 1, + "test_reg_imm_32bit_store": 2, + "test_al_imm": 2, + "A8h": 1, + "test_ax_imm": 2, + "A9h": 2, + "test_eax_imm": 2, + "test_reg_mem_8bit": 2, + "xchg_instruction": 1, + "xchg_reg": 2, + "xchg_mem": 1, + "xchg_reg_reg": 1, + "xchg_reg_reg_8bit": 2, + "xchg_ax_reg": 2, + "xchg_reg_reg_store": 3, + "xchg_ax_reg_ok": 3, + "xchg_ax_reg_store": 2, + "push_instruction": 1, + "push_size": 9, + "push_next": 2, + "push_reg": 2, + "push_imm": 2, + "push_mem": 1, + "push_mem_16bit": 3, + "push_mem_32bit": 3, + "push_mem_64bit": 3, + "push_mem_store": 4, + "push_done": 5, + "push_sreg": 2, + "push_reg_ok": 2, + "push_reg_16bit": 2, + "push_reg_32bit": 2, + "push_reg_64bit": 1, + "push_reg_store": 5, + "dh": 37, + "push_sreg16": 3, + "push_sreg32": 3, + "push_sreg64": 3, + "push_sreg_store": 4, + "push_sreg_386": 2, + "push_imm_size_ok": 3, + "push_imm_16bit": 2, + "push_imm_32bit": 2, + "push_imm_64bit": 2, + "push_imm_optimized_16bit": 3, + "push_imm_optimized_32bit": 3, + "push_imm_optimized_64bit": 2, + "push_imm_32bit_store": 8, + "push_imm_8bit": 3, + "push_imm_16bit_store": 4, + "size_override": 7, + "operand_prefix": 9, + "pop_instruction": 1, + "pop_next": 2, + "pop_reg": 2, + "pop_mem": 1, + "pop_mem_16bit": 3, + "pop_mem_32bit": 3, + "pop_mem_64bit": 3, + "pop_mem_store": 4, + "pop_done": 3, + "pop_sreg": 2, + "pop_reg_ok": 2, + "pop_reg_16bit": 2, + "pop_reg_32bit": 2, + "pop_reg_64bit": 2, + "pop_reg_store": 5, + "pop_cs": 2, + "pop_sreg16": 3, + "pop_sreg32": 3, + "pop_sreg64": 3, + "pop_sreg_store": 4, + "pop_sreg_386": 2, + "pop_cs_store": 3, + "inc_instruction": 1, + "inc_reg": 2, + "inc_mem": 2, + "inc_mem_8bit": 2, + "inc_mem_nosize": 2, + "FEh": 2, + "inc_reg_8bit": 2, + "inc_reg_long_form": 2, + "set_instruction": 1, + "set_reg": 2, + "set_mem": 1, + "arpl_instruction": 1, + "arpl_reg": 2, + "bound_instruction": 1, + "bound_store": 2, + "enter_instruction": 1, + "enter_imm16_size_ok": 2, + "next_pass_needed": 16, + "enter_imm16_ok": 2, + "invalid_use_of_symbol": 17, + "js": 3, + "enter_imm8_size_ok": 2, + "enter_imm8_ok": 2, + "C8h": 2, + "bx": 8, + "ret_instruction_only64": 1, + "ret_instruction": 5, + "ret_instruction_32bit_except64": 1, + "ret_instruction_32bit": 1, + "ret_instruction_16bit": 1, + "retf_instruction": 1, + "ret_instruction_64bit": 1, + "simple_ret": 4, + "ret_imm": 3, + "ret_imm_ok": 2, + "ret_imm_store": 2, + "lea_instruction": 1, + "ls_instruction": 1, + "les_instruction": 2, + "lds_instruction": 2, + "ls_code_ok": 2, + "C4h": 1, + "ls_short_code": 2, + "C5h": 2, + "ls_16bit": 2, + "ls_32bit": 2, + "ls_64bit": 2, + "sh_instruction": 1, + "sh_reg": 2, + "sh_mem": 1, + "sh_mem_imm": 2, + "sh_mem_reg": 1, + "sh_mem_cl_8bit": 2, + "sh_mem_cl_nosize": 2, + "D3h": 2, + "D2h": 2, + "sh_mem_imm_size_ok": 2, + "sh_mem_imm_8bit": 2, + "sh_mem_imm_nosize": 2, + "sh_mem_1": 2, + "C1h": 2, + "D1h": 2, + "sh_mem_1_8bit": 2, + "C0h": 2, + "D0h": 2, + "sh_reg_imm": 2, + "sh_reg_reg": 1, + "sh_reg_cl_8bit": 2, + "sh_reg_imm_size_ok": 2, + "sh_reg_imm_8bit": 2, + "sh_reg_1": 2, + "sh_reg_1_8bit": 2, + "shd_instruction": 1, + "shd_reg": 2, + "shd_mem": 1, + "shd_mem_reg_imm": 2, + "shd_mem_reg_imm_size_ok": 2, + "shd_reg_reg_imm": 2, + "shd_reg_reg_imm_size_ok": 2, + "movx_instruction": 1, + "movx_reg": 2, + "movx_unknown_size": 2, + "movx_mem_store": 3, + "movx_reg_8bit": 2, + "movx_reg_16bit": 2, + "movsxd_instruction": 1, + "movsxd_reg": 2, + "movsxd_mem_store": 2, + "bt_instruction": 1, + "bt_reg": 2, + "bt_mem_imm": 3, + "bt_mem_reg": 2, + "bt_mem_imm_size_ok": 2, + "bt_mem_imm_nosize": 2, + "bt_mem_imm_store": 2, + "BAh": 2, + "bt_reg_imm": 3, + "bt_reg_reg": 2, + "bt_reg_imm_size_ok": 2, + "bt_reg_imm_store": 1, + "bs_instruction": 1, + "get_reg_mem": 2, + "bs_reg_reg": 2, + "get_reg_reg": 2, + "invalid_argument": 28, + "imul_instruction": 1, + "imul_reg": 2, + "imul_mem": 1, + "imul_mem_8bit": 2, + "imul_mem_nosize": 2, + "imul_reg_": 2, + "imul_reg_8bit": 2, + "imul_reg_imm": 3, + "imul_reg_noimm": 2, + "imul_reg_reg": 2, + "imul_reg_mem": 1, + "imul_reg_mem_imm": 2, + "AFh": 2, + "imul_reg_mem_imm_16bit": 2, + "imul_reg_mem_imm_32bit": 2, + "imul_reg_mem_imm_64bit": 1, + "imul_reg_mem_imm_32bit_ok": 2, + "imul_reg_mem_imm_16bit_store": 4, + "imul_reg_mem_imm_8bit_store": 3, + "imul_reg_mem_imm_32bit_store": 4, + "Bh": 11, + "imul_reg_reg_imm": 3, + "imul_reg_reg_imm_16bit": 2, + "imul_reg_reg_imm_32bit": 2, + "imul_reg_reg_imm_64bit": 1, + "imul_reg_reg_imm_32bit_ok": 2, + "imul_reg_reg_imm_16bit_store": 4, + "imul_reg_reg_imm_8bit_store": 3, + "imul_reg_reg_imm_32bit_store": 4, + "in_instruction": 1, + "in_imm": 2, + "in_reg": 2, + "in_al_dx": 2, + "in_ax_dx": 2, + "EDh": 1, + "ECh": 1, + "in_imm_size_ok": 2, + "in_al_imm": 2, + "in_ax_imm": 2, + "E5h": 1, + "E4h": 1, + "out_instruction": 1, + "out_imm": 2, + "out_dx_al": 2, + "out_dx_ax": 2, + "EFh": 1, + "EEh": 1, + "out_imm_size_ok": 2, + "out_imm_al": 2, + "out_imm_ax": 2, + "E7h": 1, + "E6h": 1, + "call_instruction": 1, + "E8h": 3, + "process_jmp": 2, + "jmp_instruction": 1, + "E9h": 1, + "EAh": 1, + "get_jump_operator": 3, + "jmp_imm": 2, + "jmp_reg": 2, + "jmp_mem": 1, + "jump_type": 14, + "jmp_mem_size_not_specified": 2, + "jmp_mem_16bit": 3, + "jmp_mem_32bit": 2, + "jmp_mem_48bit": 2, + "jmp_mem_64bit": 2, + "jmp_mem_80bit": 2, + "jmp_mem_far": 2, + "jmp_mem_near": 2, + "jmp_mem_near_32bit": 3, + "jmp_mem_far_32bit": 4, + "jmp_mem_far_store": 3, + "jmp_reg_16bit": 2, + "jmp_reg_32bit": 2, + "jmp_reg_64bit": 1, + "invalid_value": 21, + "skip_symbol": 5, + "jmp_far": 2, + "jmp_near": 1, + "jmp_imm_16bit": 3, + "jmp_imm_32bit": 2, + "jmp_imm_64bit": 3, + "get_address_dword_value": 3, + "jmp_imm_32bit_prefix_ok": 2, + "calculate_jump_offset": 10, + "check_for_short_jump": 8, + "jmp_short": 3, + "jmp_imm_32bit_store": 2, + "jno": 2, + "jmp_imm_32bit_ok": 2, + "relative_jump_out_of_range": 6, + "get_address_qword_value": 3, + "jnc": 11, + "EBh": 1, + "get_address_word_value": 3, + "jmp_imm_16bit_prefix_ok": 2, + "cwde": 3, + "addressing_space": 17, + "calculate_relative_offset": 2, + "forced_short": 2, + "no_short_jump": 4, + "short_jump": 4, + "jmp_short_value_type_ok": 2, + "jump_out_of_range": 3, + "symbol_identifier": 4, + "jmp_far_16bit": 2, + "jmp_far_32bit": 3, + "jmp_far_segment": 2, + "conditional_jump": 1, + "conditional_jump_16bit": 3, + "conditional_jump_32bit": 2, + "conditional_jump_64bit": 3, + "conditional_jump_32bit_prefix_ok": 2, + "conditional_jump_short": 4, + "conditional_jump_32bit_store": 2, + "conditional_jump_32bit_range_ok": 2, + "conditional_jump_16bit_prefix_ok": 2, + "loop_instruction_16bit": 1, + "loop_instruction": 5, + "loop_instruction_32bit": 1, + "loop_instruction_64bit": 1, + "loop_jump_16bit": 3, + "loop_jump_32bit": 2, + "loop_jump_64bit": 3, + "loop_jump_32bit_prefix_ok": 2, + "loop_counter_size": 4, + "make_loop_jump": 3, + "scas": 10, + "loop_counter_size_ok": 2, + "loop_jump_16bit_prefix_ok": 2, + "movs_instruction": 1, + "address_sizes_do_not_agree": 2, + "movs_address_16bit": 2, + "movs_address_32bit": 2, + "movs_store": 3, + "A4h": 1, + "movs_check_size": 5, + "lods_instruction": 1, + "lods_address_16bit": 2, + "lods_address_32bit": 2, + "lods_store": 3, + "ACh": 1, + "stos_instruction": 1, + "stos_address_16bit": 2, + "stos_address_32bit": 2, + "stos_store": 3, + "cmps_instruction": 1, + "cmps_address_16bit": 2, + "cmps_address_32bit": 2, + "cmps_store": 3, + "A6h": 1, + "ins_instruction": 1, + "ins_address_16bit": 2, + "ins_address_32bit": 2, + "ins_store": 3, + "ins_check_size": 2, + "outs_instruction": 1, + "outs_address_16bit": 2, + "outs_address_32bit": 2, + "outs_store": 3, + "xlat_instruction": 1, + "xlat_address_16bit": 2, + "xlat_address_32bit": 2, + "xlat_store": 3, + "D7h": 1, + "pm_word_instruction": 1, + "pm_reg": 2, + "pm_mem": 2, + "pm_mem_store": 2, + "pm_store_word_instruction": 1, + "lgdt_instruction": 1, + "lgdt_mem_48bit": 2, + "lgdt_mem_80bit": 2, + "lgdt_mem_store": 4, + "lar_instruction": 1, + "lar_reg_reg": 2, + "lar_reg_mem": 2, + "invlpg_instruction": 1, + "swapgs_instruction": 1, + "rdtscp_instruction": 1, + "basic_486_instruction": 1, + "basic_486_reg": 2, + "basic_486_mem_reg_8bit": 2, + "basic_486_reg_reg_8bit": 2, + "bswap_instruction": 1, + "bswap_reg_code_ok": 2, + "bswap_reg64": 2, + "cmpxchgx_instruction": 1, + "cmpxchgx_size_ok": 2, + "cmpxchgx_store": 2, + "nop_instruction": 1, + "extended_nop": 4, + "extended_nop_reg": 2, + "extended_nop_store": 2, + "basic_fpu_instruction": 1, + "D8h": 2, + "basic_fpu_streg": 2, + "basic_fpu_mem": 2, + "basic_fpu_mem_32bit": 2, + "basic_fpu_mem_64bit": 2, + "DCh": 2, + "convert_fpu_register": 9, + "basic_fpu_single_streg": 3, + "basic_fpu_st0": 2, + "basic_fpu_streg_st0": 2, + "simple_fpu_instruction": 1, + "D9h": 6, + "fi_instruction": 1, + "fi_mem_16bit": 2, + "fi_mem_32bit": 2, + "DAh": 2, + "DEh": 2, + "fld_instruction": 1, + "fld_streg": 2, + "fld_mem_32bit": 2, + "fld_mem_64bit": 2, + "fld_mem_80bit": 2, + "DDh": 6, + "fld_mem_80bit_store": 3, + "DBh": 4, + "fst_streg": 2, + "fild_instruction": 1, + "fild_mem_16bit": 2, + "fild_mem_32bit": 2, + "fild_mem_64bit": 2, + "DFh": 5, + "fisttp_64bit_store": 2, + "fild_mem_64bit_store": 3, + "fbld_instruction": 1, + "fbld_mem_80bit": 3, + "faddp_instruction": 1, + "faddp_streg": 2, + "fcompp_instruction": 1, + "D9DEh": 1, + "fucompp_instruction": 1, + "E9DAh": 1, + "fxch_instruction": 1, + "fpu_single_operand": 3, + "ffreep_instruction": 1, + "ffree_instruction": 1, + "fpu_streg": 2, + "fstenv_instruction": 1, + "fldenv_instruction": 3, + "fpu_mem": 2, + "fstenv_instruction_16bit": 1, + "fldenv_instruction_16bit": 1, + "fstenv_instruction_32bit": 1, + "fldenv_instruction_32bit": 1, + "fsave_instruction_32bit": 1, + "fnsave_instruction_32bit": 1, + "fnsave_instruction": 3, + "fsave_instruction_16bit": 1, + "fnsave_instruction_16bit": 1, + "fsave_instruction": 1, + "fstcw_instruction": 1, + "fldcw_instruction": 1, + "fldcw_mem_16bit": 3, + "fstsw_instruction": 1, + "fnstsw_instruction": 1, + "fstsw_reg": 2, + "fstsw_mem_16bit": 3, + "E0DFh": 1, + "finit_instruction": 1, + "fninit_instruction": 1, + "fcmov_instruction": 1, + "fcomi_streg": 3, + "fcomi_instruction": 1, + "fcomip_instruction": 1, + "fcomi_st0_streg": 2, + "basic_mmx_instruction": 1, + "mmx_instruction": 1, + "convert_mmx_register": 18, + "make_mmx_prefix": 9, + "mmx_mmreg_mmreg": 3, + "mmx_mmreg_mem": 2, + "mmx_bit_shift_instruction": 1, + "mmx_ps_mmreg_imm8": 2, + "pmovmskb_instruction": 1, + "pmovmskb_reg_size_ok": 2, + "mmx_nomem_imm8": 7, + "mmx_imm8": 6, + "cl": 42, + "append_imm8": 2, + "pinsrw_instruction": 1, + "pinsrw_mmreg_reg": 2, + "pshufw_instruction": 1, + "mmx_size": 30, + "opcode_prefix": 30, + "pshuf_instruction": 2, + "pshufd_instruction": 1, + "pshuf_mmreg_mmreg": 2, + "movd_instruction": 1, + "movd_reg": 2, + "movd_mmreg": 2, + "movd_mmreg_reg": 2, + "vex_required": 2, + "mmx_prefix_for_vex": 2, + "no_mmx_prefix": 2, + "movq_instruction": 1, + "movq_reg": 2, + "movq_mem_xmmreg": 2, + "D6h": 2, + "movq_mmreg": 2, + "movq_mmreg_": 2, + "F3h": 7, + "movq_mmreg_reg": 2, + "movq_mmreg_mmreg": 2, + "movq_mmreg_reg_store": 2, + "movdq_instruction": 1, + "movdq_mmreg": 2, + "convert_xmm_register": 12, + "movdq_mmreg_mmreg": 2, + "lddqu_instruction": 1, + "F2h": 6, + "movdq2q_instruction": 1, + "movq2dq_": 2, + "movq2dq_instruction": 1, + "sse_ps_instruction_imm8": 1, + "immediate_size": 9, + "sse_ps_instruction": 1, + "sse_instruction": 11, + "sse_pd_instruction_imm8": 1, + "sse_pd_instruction": 1, + "sse_ss_instruction": 1, + "sse_sd_instruction": 1, + "cmp_pd_instruction": 1, + "cmp_ps_instruction": 1, + "C2h": 4, + "cmp_ss_instruction": 1, + "cmp_sx_instruction": 2, + "cmpsd_instruction": 1, + "A7h": 1, + "cmp_sd_instruction": 1, + "comiss_instruction": 1, + "comisd_instruction": 1, + "cvtdq2pd_instruction": 1, + "cvtps2pd_instruction": 1, + "cvtpd2dq_instruction": 1, + "movshdup_instruction": 1, + "sse_xmmreg": 2, + "sse_reg": 1, + "sse_xmmreg_xmmreg": 2, + "sse_reg_mem": 2, + "sse_mem_size_ok": 2, + "supplemental_code": 2, + "sse_cmp_mem_ok": 3, + "sse_ok": 2, + "take_additional_xmm0": 3, + "sse_xmmreg_xmmreg_ok": 4, + "sse_cmp_nomem_ok": 3, + "sse_nomem_ok": 2, + "additional_xmm0_ok": 2, + "pslldq_instruction": 1, + "movpd_instruction": 1, + "movps_instruction": 1, + "sse_mov_instruction": 3, + "movss_instruction": 1, + "sse_movs": 2, + "movsd_instruction": 1, + "A5h": 1, + "sse_mem": 2, + "sse_mem_xmmreg": 2, + "movlpd_instruction": 1, + "movlps_instruction": 1, + "movhlps_instruction": 1, + "maskmovq_instruction": 1, + "maskmov_instruction": 2, + "maskmovdqu_instruction": 1, + "movmskpd_instruction": 1, + "movmskps_instruction": 1, + "movmskps_reg_ok": 2, + "cvtpi2pd_instruction": 1, + "cvtpi2ps_instruction": 1, + "stub_size": 1, + "resolver_flags": 1, + "number_of_sections": 1, + "actual_fixups_size": 1, + "assembler_loop": 2, + "labels_list": 3, + "tagged_blocks": 23, + "free_additional_memory": 2, + "structures_buffer": 9, + "source_start": 1, + "code_start": 2, + "adjustment": 4, + "counter": 13, + "format_flags": 2, + "number_of_relocations": 1, + "undefined_data_end": 4, + "file_extension": 1, + "output_format": 3, + "adjustment_sign": 2, + "init_addressing_space": 6, + "pass_loop": 2, + "assemble_line": 3, + "pass_done": 2, + "missing_end_directive": 7, + "close_pass": 1, + "check_symbols": 2, + "symbols_checked": 2, + "symbol_defined_ok": 5, + "cx": 42, + "use_prediction_ok": 5, + "check_use_prediction": 2, + "use_misprediction": 3, + "check_next_symbol": 5, + "define_misprediction": 4, + "check_define_prediction": 2, + "LABEL_STRUCTURE_SIZE": 1, + "next_pass": 3, + "assemble_ok": 2, + "undefined_symbol": 2, + "error_confirmed": 3, + "error_info": 2, + "error_handler": 3, + "code_cannot_be_generated": 1, + "create_addressing_space": 1, + "assemble_instruction": 2, + "source_end": 2, + "define_label": 2, + "define_constant": 2, + "label_addressing_space": 2, + "new_line": 2, + "code_type_setting": 2, + "line_assembled": 3, + "reserved_word_used_as_symbol": 6, + "label_size": 5, + "make_label": 3, + "ds": 21, + "sbb": 9, + "jp": 2, + "label_value_ok": 2, + "address_sign": 4, + "make_virtual_label": 2, + "setnz": 5, + "finish_label": 2, + "setne": 14, + "finish_label_symbol": 2, + "label_symbol_ok": 2, + "new_label": 2, + "symbol_already_defined": 3, + "btr": 2, + "requalified_label": 2, + "label_made": 4, + "get_constant_value": 4, + "get_value": 2, + "constant_referencing_mode_ok": 2, + "make_constant": 2, + "value_sign": 3, + "constant_symbol_ok": 2, + "new_constant": 2, + "redeclare_constant": 2, + "requalified_constant": 2, + "make_addressing_space_label": 3, + "vex_register": 1, + "instruction_handler": 32, + "extra_characters_on_line": 8, + "org_directive": 1, + "in_virtual": 2, + "org_space_ok": 2, + "close_virtual_addressing_space": 3, + "org_value_ok": 2, + "bts": 1, + "label_directive": 1, + "get_label_size": 2, + "label_size_ok": 2, + "get_free_label_value": 2, + "get_address_value": 3, + "bp": 2, + "make_free_label": 1, + "address_symbol": 2, + "load_directive": 1, + "load_size_ok": 2, + "get_data_point": 3, + "value_loaded": 2, + "rep": 7, + "movs": 8, + "get_data_address": 5, + "addressing_space_unavailable": 3, + "symbol_out_of_scope": 1, + "get_addressing_space": 3, + "store_label_reference": 1, + "data_address_type_ok": 2, + "bad_data_address": 3, + "store_directive": 1, + "sized_store": 2, + "store_value_ok": 2, + "undefined_data_start": 3, + "display_directive": 2, + "display_byte": 2, + "display_next": 2, + "display_done": 3, + "display_messages": 2, + "skip_block": 2, + "times_directive": 1, + "get_count_value": 6, + "zero_times": 3, + "times_argument_ok": 2, + "counter_limit": 7, + "times_loop": 2, + "stack_overflow": 2, + "times_done": 2, + "virtual_directive": 3, + "virtual_at_current": 2, + "set_virtual": 2, + "allocate_structure_data": 5, + "find_structure_data": 6, + "scan_structures": 2, + "no_such_structure": 2, + "structure_data_found": 2, + "end_virtual": 2, + "unexpected_instruction": 18, + "remove_structure_data": 7, + "std": 2, + "cld": 2, + "addressing_space_closed": 2, + "virtual_byte_ok": 2, + "virtual_word_ok": 2, + "repeat_directive": 7, + "zero_repeat": 2, + "end_repeat": 2, + "continue_repeating": 2, + "stop_repeat": 2, + "find_end_repeat": 4, + "find_structure_end": 5, + "while_directive": 7, + "do_while": 2, + "calculate_logical_expression": 3, + "while_true": 2, + "stop_while": 2, + "find_end_while": 3, + "end_while": 2, + "too_many_repeats": 1, + "if_directive": 13, + "if_true": 2, + "find_else": 4, + "else_true": 3, + "make_if_structure": 2, + "else_directive": 3, + "found_else": 2, + "skip_else": 3, + "find_end_if": 3, + "end_if": 2, + "else_found": 2, + "find_end_directive": 10, + "no_end_directive": 2, + "skip_labels": 2, + "labels_ok": 2, + "skip_repeat": 2, + "skip_while": 2, + "skip_if": 2, + "structure_end": 4, + "end_directive": 2, + "skip_if_block": 4, + "if_block_skipped": 2, + "skip_after_else": 3, + "data_directive": 1, + "end_data": 1, + "break_directive": 1, + "find_breakable_structure": 4, + "break_repeat": 2, + "break_while": 2, + "break_if": 2, + "data_bytes": 1, + "define_data": 8, + "get_byte": 2, + "undefined_data": 7, + "get_string": 2, + "mark_undefined_data": 2, + "undefined_data_ok": 2, + "simple_data_value": 3, + "skip_expression": 1, + "duplicate_zero_times": 2, + "duplicate_single_data_value": 3, + "duplicate_data": 2, + "duplicated_values": 2, + "near": 3, + "data_defined": 5, + "skip_single_data_value": 2, + "skip_data_value": 2, + "data_unicode": 1, + "define_words": 2, + "data_words": 1, + "get_word": 2, + "word_data_value": 2, + "word_string": 2, + "jecxz": 1, + "word_string_ok": 2, + "ecx*2": 1, + "copy_word_string": 2, + "data_dwords": 1, + "get_dword": 2, + "complex_dword": 2, + "data_pwords": 1, + "get_pword": 2, + "get_pword_value": 1, + "complex_pword": 2, + "data_qwords": 1, + "get_qword": 2, + "data_twords": 1, + "get_tword": 2, + "complex_tword": 2, + "fp_zero_tword": 2, + "jg": 1, + "tword_exp_ok": 3, + "large_shift": 2, + "shrd": 1, + "tword_mantissa_shift_done": 2, + "store_shifted_mantissa": 2, + "data_file": 2, + "open_binary_file": 2, + "position_ok": 2, + "size_ok": 2, + "error_reading_file": 1, + "find_current_source_path": 2, + "get_current_path": 3, + "cut_current_path": 1, + "current_path_ok": 1, + "/": 1, + ".": 7, + "invalid_align_value": 3, + "section_not_aligned_enough": 4, + "make_alignment": 3, + "pe_alignment": 2, + "nops": 2, + "reserved_data": 2, + "nops_stosb_ok": 2, + "nops_stosw_ok": 2, + "err_directive": 1, + "invoked_error": 2, + "assert_directive": 1, + "assertion_failed": 1 + }, + "AsciiDoc": { + "Gregory": 2, + "Rom": 2, + "has": 2, + "written": 2, + "an": 2, + "AsciiDoc": 3, + "plugin": 2, + "for": 2, + "the": 2, + "Redmine": 2, + "project": 2, + "management": 2, + "application.": 2, + "https": 1, + "//github.com/foo": 1, + "-": 4, + "users/foo": 1, + "vicmd": 1, + "gif": 1, + "tag": 1, + "rom": 2, + "[": 2, + "]": 2, + "end": 1, + "berschrift": 1, + "*": 4, + "Codierungen": 1, + "sind": 1, + "verr": 1, + "ckt": 1, + "auf": 1, + "lteren": 1, + "Versionen": 1, + "von": 1, + "Ruby": 1, + "Home": 1, + "Page": 1, + "Example": 1, + "Articles": 1, + "Item": 6, + "Document": 1, + "Title": 1, + "Doc": 1, + "Writer": 1, + "": 1, + "idprefix": 1, + "id_": 1, + "Preamble": 1, + "paragraph.": 4, + "NOTE": 1, + "This": 1, + "is": 1, + "test": 1, + "only": 1, + "a": 1, + "test.": 1, + "Section": 3, + "A": 2, + "*Section": 3, + "A*": 2, + "Subsection": 1, + "B": 2, + "B*": 1, + ".Section": 1, + "list": 1 + }, + "Gnuplot": { + "set": 98, + "boxwidth": 1, + "absolute": 1, + "style": 7, + "fill": 1, + "solid": 1, + "border": 3, + "lt": 15, + "-": 102, + "key": 1, + "inside": 1, + "right": 1, + "top": 1, + "vertical": 2, + "Right": 1, + "noreverse": 13, + "noenhanced": 1, + "autotitles": 1, + "nobox": 1, + "histogram": 1, + "clustered": 1, + "gap": 1, + "title": 13, + "offset": 25, + "character": 22, + "datafile": 1, + "missing": 1, + "data": 1, + "histograms": 1, + "xtics": 3, + "in": 1, + "scale": 1, + "nomirror": 1, + "rotate": 3, + "by": 3, + "autojustify": 1, + "norangelimit": 3, + "font": 8, + "(": 52, + ")": 52, + "yrange": 4, + "[": 18, + "]": 18, + "nowriteback": 12, + "i": 1, + "plot": 3, + "using": 2, + "xtic": 1, + "ti": 4, + "col": 4, + "u": 25, + "dummy": 3, + "v": 31, + "label": 14, + "at": 14, + "left": 15, + "norotate": 18, + "back": 23, + "nopoint": 14, + "arrow": 7, + "from": 7, + "to": 7, + "head": 7, + "nofilled": 7, + "linetype": 11, + "linewidth": 11, + "parametric": 3, + "view": 3, + "samples": 3, + "isosamples": 3, + "hidden3d": 2, + "trianglepattern": 2, + "undefined": 2, + "altdiagonal": 2, + "bentover": 2, + "ztics": 2, + "xlabel": 6, + "textcolor": 13, + "xrange": 3, + "ylabel": 5, + "zlabel": 4, + "zrange": 2, + "sinc": 13, + "sin": 3, + "sqrt": 4, + "u**2": 4, + "+": 6, + "v**2": 4, + "/": 2, + "GPFUN_sinc": 2, + "xx": 2, + "dx": 2, + "x0": 4, + "x1": 4, + "x2": 4, + "x3": 4, + "x4": 4, + "x5": 4, + "x6": 4, + "x7": 4, + "x8": 4, + "x9": 4, + "splot": 3, + "<": 10, + "notitle": 15, + "rgb": 8, + "line": 4, + "linecolor": 4, + "pointtype": 4, + "pointsize": 4, + "default": 4, + "pointinterval": 4, + "noxtics": 2, + "noytics": 2, + "bmargin": 1, + "unset": 2, + "colorbox": 3, + "cos": 9, + "x": 7, + "ls": 4, + ".2": 1, + ".4": 1, + ".6": 1, + ".8": 1, + "lc": 3, + "SHEBANG#!gnuplot": 1, + "reset": 1, + "terminal": 1, + "png": 1, + "output": 1, + "#set": 2, + "xr": 1, + "yr": 1, + "pt": 2, + "xmin": 3, + "xmax": 1, + "n": 1, + "zbase": 2, + ".5": 2, + "*n": 1, + "floor": 3, + "u/3": 1, + "*dx": 1, + "%": 2, + "u/3.*dx": 1, + "/0": 1, + "angles": 1, + "degrees": 1, + "mapping": 1, + "spherical": 1, + "noztics": 1, + "urange": 1, + "vrange": 1, + "cblabel": 1, + "cbrange": 1, + "user": 1, + "origin": 1, + "screen": 2, + "size": 1, + "front": 1, + "bdefault": 1, + "*cos": 1, + "*sin": 1, + "with": 3, + "lines": 2, + "labels": 1, + "point": 1, + "lw": 1, + ".1": 1, + "tc": 1, + "pal": 1 + }, + "Nginx": { + "user": 1, + "www": 2, + ";": 35, + "worker_processes": 1, + "error_log": 1, + "logs/error.log": 1, + "pid": 1, + "logs/nginx.pid": 1, + "worker_rlimit_nofile": 1, + "events": 1, + "{": 10, + "worker_connections": 1, + "}": 10, + "http": 3, + "include": 3, + "conf/mime.types": 1, + "/etc/nginx/proxy.conf": 1, + "/etc/nginx/fastcgi.conf": 1, + "index": 1, + "index.html": 1, + "index.htm": 1, + "index.php": 1, + "default_type": 1, + "application/octet": 1, + "-": 2, + "stream": 1, + "log_format": 1, + "main": 5, + "access_log": 4, + "logs/access.log": 1, + "sendfile": 1, + "on": 2, + "tcp_nopush": 1, + "server_names_hash_bucket_size": 1, + "#": 4, + "this": 1, + "seems": 1, + "to": 1, + "be": 1, + "required": 1, + "for": 1, + "some": 1, + "vhosts": 1, + "server": 7, + "php/fastcgi": 1, + "listen": 3, + "server_name": 3, + "domain1.com": 1, + "www.domain1.com": 1, + "logs/domain1.access.log": 1, + "root": 2, + "html": 1, + "location": 4, + ".php": 1, + "fastcgi_pass": 1, + "simple": 2, + "reverse": 1, + "proxy": 1, + "domain2.com": 1, + "www.domain2.com": 1, + "logs/domain2.access.log": 1, + "/": 4, + "(": 1, + "images": 1, + "|": 6, + "javascript": 1, + "js": 1, + "css": 1, + "flash": 1, + "media": 1, + "static": 1, + ")": 1, + "/var/www/virtual/big.server.com/htdocs": 1, + "expires": 1, + "d": 1, + "proxy_pass": 2, + "//127.0.0.1": 1, + "upstream": 1, + "big_server_com": 1, + "weight": 2, + "load": 1, + "balancing": 1, + "big.server.com": 1, + "logs/big.server.access.log": 1, + "//big_server_com": 1 + }, + "Dogescript": { + "quiet": 1, + "wow": 4, + "such": 2, + "language": 3, + "very": 1, + "syntax": 1, + "github": 1, + "recognized": 1, + "loud": 1, + "much": 1, + "friendly": 2, + "rly": 1, + "is": 2, + "true": 1, + "plz": 2, + "console.loge": 2, + "with": 2, + "but": 1, + "module.exports": 1 + }, + "Markdown": { + "Tender": 1 + }, + "Perl": { + "pod": 1, + "head1": 36, + "NAME": 6, + "Catalyst": 10, + "PSGI": 10, + "-": 868, + "How": 1, + "and": 85, + "work": 3, + "together": 2, + "SYNOPSIS": 6, + "The": 22, + "L": 34, + "": 3, + "specification": 3, + "defines": 2, + "an": 16, + "interface": 1, + "between": 4, + "web": 8, + "servers": 2, + "Perl": 9, + "based": 2, + "applications": 2, + "frameworks.": 1, + "It": 3, + "supports": 1, + "the": 143, + "writing": 1, + "of": 64, + "portable": 1, + "that": 33, + "can": 30, + "be": 36, + "run": 1, + "using": 5, + "various": 2, + "methods": 4, + "(": 925, + "as": 37, + "a": 85, + "standalone": 1, + "server": 2, + "or": 49, + "mod_perl": 3, + "FastCGI": 2, + "etc.": 3, + ")": 923, + ".": 125, + "": 3, + "is": 69, + "implementation": 1, + "for": 83, + "running": 1, + "applications.": 1, + "used": 12, + "to": 95, + "contain": 3, + "entire": 3, + "set": 12, + "C": 56, + "<<": 10, + "Engine": 1, + "XXXX": 1, + "classes": 2, + "handle": 3, + "environments": 1, + "e.g.": 2, + "CGI": 6, + "This": 27, + "has": 3, + "been": 1, + "changed": 1, + "in": 36, + "so": 4, + "all": 23, + "done": 2, + "by": 16, + "implementing": 1, + "s": 35, + "possible": 2, + "do": 12, + "it": 28, + "manually": 2, + "creating": 3, + "": 1, + "file": 49, + "root": 1, + "your": 20, + "application.": 1, + "head2": 34, + "Why": 3, + "would": 5, + "I": 68, + "want": 7, + "write": 2, + "my": 404, + "own": 4, + ".psgi": 7, + "Writing": 2, + "allows": 4, + "you": 44, + "use": 83, + "alternate": 1, + "": 1, + "command": 14, + "start": 7, + "application": 15, + "add": 9, + "extensions": 1, + "implement": 2, + "": 1, + "such": 6, + "": 1, + "": 1, + "simplest": 1, + "<.psgi>": 1, + "called": 4, + "": 1, + "strict": 18, + ";": 1193, + "warnings": 18, + "TestApp": 5, + "app": 2, + "psgi_app": 3, + "@_": 43, + "Note": 5, + "will": 9, + "apply": 3, + "number": 4, + "middleware": 2, + "components": 2, + "automatically": 2, + "these": 4, + "B": 76, + "": 1, + "not": 54, + "applied": 1, + "if": 276, + "create": 3, + "psgi": 2, + "yourself.": 2, + "Details": 1, + "found": 11, + "below.": 1, + "Additional": 1, + "information": 2, + "about": 4, + "files": 42, + "at": 4, + "": 1, + "What": 1, + "generates": 2, + "default": 19, + "which": 7, + "": 1, + "setting": 2, + "on": 25, + "wrapped": 1, + "": 1, + "contains": 2, + "some": 1, + "engine": 1, + "specific": 2, + "fixes": 1, + "uniform": 1, + "behaviour": 2, + "contained": 1, + "over": 2, + "item": 44, + "": 1, + "": 1, + "back": 4, + "If": 15, + "override": 1, + "providing": 2, + "then": 4, + "none": 1, + "things": 2, + "returned": 3, + "when": 18, + "call": 2, + "MyApp": 1, + "Thus": 1, + "need": 5, + "any": 4, + "this": 22, + "functionality": 1, + "ll": 1, + "An": 1, + "apply_default_middlewares": 2, + "method": 8, + "supplied": 1, + "wrap": 1, + "middlewares": 1, + "are": 25, + "file.": 3, + "means": 3, + "auto": 1, + "generated": 1, + "no": 22, + "code": 8, + "looks": 2, + "something": 3, + "like": 13, + "SEE": 4, + "ALSO": 4, + "": 1, + "": 1, + "AUTHORS": 2, + "Contributors": 1, + "see": 5, + "Catalyst.pm": 1, + "COPYRIGHT": 7, + "library": 2, + "free": 4, + "software.": 1, + "You": 4, + "redistribute": 4, + "and/or": 4, + "modify": 4, + "under": 5, + "same": 2, + "terms": 4, + "itself.": 3, + "cut": 28, + "package": 14, + "Plack": 25, + "Request": 11, + "_001": 1, + "our": 34, + "VERSION": 15, + "eval": 8, + "HTTP": 16, + "Headers": 8, + "Carp": 11, + "Hash": 11, + "MultiValue": 9, + "Body": 2, + "Upload": 2, + "TempBuffer": 2, + "URI": 11, + "Escape": 6, + "sub": 225, + "_deprecated": 8, + "{": 1121, + "alt": 1, + "shift": 165, + "caller": 2, + "[": 159, + "]": 155, + "carp": 2, + "}": 1134, + "new": 55, + "class": 8, + "env": 76, + "croak": 3, + "q": 5, + "required": 2, + "unless": 39, + "defined": 54, + "&&": 83, + "ref": 33, + "eq": 31, + "bless": 7, + "_": 101, + "address": 2, + "REMOTE_ADDR": 1, + "remote_host": 2, + "REMOTE_HOST": 1, + "protocol": 1, + "SERVER_PROTOCOL": 1, + "REQUEST_METHOD": 1, + "port": 1, + "SERVER_PORT": 2, + "user": 4, + "REMOTE_USER": 1, + "request_uri": 1, + "REQUEST_URI": 2, + "path_info": 4, + "PATH_INFO": 3, + "path": 28, + "||": 49, + "script_name": 1, + "SCRIPT_NAME": 2, + "scheme": 3, + "secure": 2, + "body": 30, + "input": 9, + "content_length": 4, + "CONTENT_LENGTH": 3, + "content_type": 5, + "CONTENT_TYPE": 2, + "session": 1, + "session_options": 1, + "logger": 1, + "cookies": 9, + "self": 141, + "return": 157, + "HTTP_COOKIE": 3, + "%": 78, + "results": 8, + "@pairs": 2, + "grep": 17, + "/": 69, + "split": 13, + "pair": 4, + "s/": 22, + "+": 120, + "//": 9, + "key": 20, + "value": 12, + "map": 10, + "uri_unescape": 1, + "exists": 19, + "query_parameters": 3, + "uri": 11, + "query_form": 2, + "content": 8, + "_parse_request_body": 4, + "fh": 28, + "cl": 10, + "read": 6, + "seek": 4, + "raw_body": 1, + "headers": 56, + "field": 2, + "HTTPS": 1, + "_//": 1, + "|": 28, + "CONTENT": 1, + "COOKIE": 1, + "/i": 2, + "keys": 15, + "content_encoding": 5, + "header": 17, + "referer": 3, + "user_agent": 3, + "body_parameters": 3, + "parameters": 8, + "query": 4, + "flatten": 3, + "uploads": 5, + "hostname": 1, + "url_scheme": 1, + "params": 1, + "query_params": 1, + "body_params": 1, + "cookie": 6, + "name": 44, + "param": 8, + "wantarray": 3, + "get_all": 2, + "upload": 13, + "raw_uri": 1, + "base": 10, + "path_query": 1, + "_uri_base": 3, + "path_escape_class": 2, + "uri_escape": 3, + "QUERY_STRING": 3, + "ne": 9, + "m": 17, + "canonical": 2, + "HTTP_HOST": 1, + "SERVER_NAME": 1, + "new_response": 4, + "require": 12, + "Response": 16, + "ct": 3, + "cleanup": 1, + "buffer": 9, + "else": 53, + "spin": 2, + "while": 31, + "chunk": 4, + "<": 15, + "length": 1, + "print": 35, + "rewind": 1, + "from_mixed": 2, + "@uploads": 3, + "@obj": 3, + "k": 6, + "v": 19, + "splice": 2, + "push": 30, + "_make_upload": 2, + "copy": 4, + "__END__": 2, + "Portable": 2, + "request": 11, + "object": 6, + "from": 19, + "hash": 11, + "app_or_middleware": 1, + "#": 99, + "req": 28, + "res": 59, + "finalize": 5, + "DESCRIPTION": 4, + "": 2, + "provides": 1, + "consistent": 1, + "API": 2, + "objects": 2, + "across": 1, + "environments.": 1, + "CAVEAT": 1, + "module": 2, + "intended": 1, + "developers": 3, + "framework": 2, + "rather": 2, + "than": 5, + "end": 9, + "users": 4, + "directly": 1, + "certainly": 2, + "but": 4, + "recommended": 1, + "Apache": 2, + "yet": 1, + "too": 1, + "low": 1, + "level.": 1, + "re": 3, + "encouraged": 1, + "one": 9, + "frameworks": 2, + "support": 2, + "": 1, + "modules": 1, + "": 1, + "provide": 1, + "higher": 1, + "level": 1, + "top": 1, + "PSGI.": 1, + "METHODS": 2, + "Some": 1, + "earlier": 1, + "versions": 1, + "deprecated": 1, + "version": 2, + "Take": 1, + "look": 2, + "": 1, + "Unless": 1, + "otherwise": 2, + "noted": 1, + "attributes": 4, + "": 1, + "passing": 1, + "values": 5, + "accessor": 1, + "doesn": 8, + "debug": 1, + "set.": 1, + "Returns": 10, + "": 2, + "containing": 5, + "current": 5, + "request.": 1, + "reference": 8, + "uploads.": 2, + "": 2, + "": 1, + "objects.": 1, + "Shortcut": 6, + "content_encoding.": 1, + "content_length.": 1, + "content_type.": 1, + "header.": 2, + "referer.": 1, + "user_agent.": 1, + "GET": 1, + "POST": 1, + "with": 26, + "CGI.pm": 2, + "compatible": 1, + "method.": 1, + "alternative": 1, + "accessing": 1, + "parameters.": 3, + "Unlike": 1, + "does": 10, + "": 1, + "allow": 1, + "modifying": 1, + "@values": 1, + "@params": 1, + "A": 2, + "convenient": 1, + "access": 2, + "@fields": 1, + "filename": 68, + "Creates": 2, + "": 3, + "object.": 4, + "Handy": 1, + "remove": 2, + "dependency": 1, + "easy": 1, + "subclassing": 1, + "duck": 1, + "typing": 1, + "well": 2, + "overriding": 1, + "generation": 1, + "middlewares.": 1, + "Parameters": 1, + "take": 5, + "multiple": 5, + "i.e.": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "store": 1, + "plain": 2, + "where": 3, + "": 1, + "scalars": 1, + "": 2, + "array": 7, + "references": 1, + "don": 2, + "ARRAY": 1, + "foo": 6, + "t": 18, + "parse": 1, + "more": 2, + "twice": 1, + "efficiency.": 1, + "DISPATCHING": 1, + "wants": 1, + "dispatch": 1, + "route": 1, + "actions": 1, + "paths": 3, + "sure": 1, + "because": 3, + "": 1, + "gives": 2, + "virtual": 1, + "regardless": 1, + "how": 1, + "mounted.": 1, + "hosted": 1, + "scripts": 1, + "even": 4, + "multiplexed": 1, + "tools": 1, + "": 1, + "good": 2, + "idea": 1, + "subclass": 1, + "define": 1, + "uri_for": 2, + "args": 3, + "@": 38, + "So": 1, + "say": 1, + "link": 1, + "signoff": 1, + "": 1, + "empty.": 1, + "older": 1, + "behavior": 3, + "just": 2, + "instead.": 1, + "Cookie": 2, + "handling": 1, + "simplified": 1, + "always": 5, + "string": 5, + "encoding": 2, + "decoding": 1, + "them": 5, + "totally": 1, + "up": 1, + "framework.": 1, + "Also": 1, + "": 1, + "now": 1, + "returns": 4, + "": 1, + "Simple": 1, + "longer": 1, + "have": 2, + "wacky": 1, + "undef": 17, + "instead": 4, + "simply": 1, + "Tatsuhiko": 2, + "Miyagawa": 2, + "Kazuhiro": 1, + "Osawa": 1, + "Tokuhiro": 2, + "Matsuno": 2, + "": 1, + "": 1, + "LICENSE": 3, + "software": 3, + "SHEBANG#!perl": 5, + "Fast": 3, + "XML": 2, + "XS": 2, + "File": 54, + "Spec": 13, + "FindBin": 1, + "qw": 35, + "Bin": 3, + "#use": 1, + "lib": 2, + "catdir": 3, + "..": 7, + "_stop": 4, + "SIG": 3, + "exit": 16, + "ENV": 40, + "nginx": 2, + "external": 2, + "fcgi": 2, + "Ext_Request": 1, + "FCGI": 1, + "*STDIN": 2, + "*STDOUT": 6, + "*STDERR": 1, + "int": 2, + "ARGV": 2, + "conv": 2, + "use_attr": 1, + "indent": 1, + "output": 36, + "xml_decl": 1, + "tmpl_path": 2, + "tmpl": 5, + "data": 3, + "nick": 1, + "tree": 2, + "example": 5, + "parent": 5, + "id": 6, + "third_party": 1, + "artist_name": 2, + "venue": 2, + "event": 2, + "date": 2, + "zA": 1, + "Z0": 1, + "die": 38, + "e": 20, + "catfile": 4, + "qq": 18, + "Content": 2, + "type": 69, + "application/xml": 1, + "charset": 2, + "utf": 2, + "r": 14, + "n": 19, + "hash2xml": 1, + "text/html": 1, + "nError": 1, + "last": 17, + "M": 1, + "system": 1, + "Foo": 11, + "Bar": 1, + "@array": 1, + "SHEBANG#!#! perl": 4, + "i": 26, + "o": 17, + "examples/benchmarks/fib.pl": 1, + "Fibonacci": 2, + "Benchmark": 1, + "Calculates": 1, + "Number": 1, + "": 1, + "defaults": 16, + "unspecified": 1, + "fib": 4, + "N": 2, + "F": 24, + "": 1, + "App": 131, + "Ack": 136, + "Next": 27, + "Plugin": 2, + "Basic": 10, + "container": 1, + "functions": 2, + "ack": 38, + "program": 6, + "Version": 1, + "BEGIN": 7, + "types": 26, + "type_wanted": 20, + "mappings": 29, + "ignore_dirs": 12, + "input_from_pipe": 8, + "output_to_pipe": 12, + "dir_sep_chars": 10, + "is_cygwin": 6, + "is_windows": 12, + "Glob": 4, + "Getopt": 6, + "Long": 6, + "_MTN": 2, + "blib": 2, + "CVS": 5, + "RCS": 2, + "SCCS": 2, + "_darcs": 2, + "_sgbak": 2, + "_build": 2, + "actionscript": 2, + "mxml": 2, + "ada": 4, + "adb": 2, + "ads": 2, + "asm": 4, + "batch": 2, + "bat": 2, + "cmd": 2, + "binary": 3, + "Binary": 2, + "T": 2, + "op": 2, + "off": 4, + "tt": 4, + "tt2": 2, + "ttml": 2, + "vb": 4, + "bas": 2, + "cls": 2, + "frm": 2, + "ctl": 2, + "resx": 2, + "verilog": 2, + "vh": 2, + "sv": 2, + "vhdl": 4, + "vhd": 2, + "vim": 4, + "yaml": 4, + "yml": 2, + "xml": 6, + "dtd": 2, + "xsl": 2, + "xslt": 2, + "ent": 2, + "exts": 6, + "each": 14, + "ext": 14, + "mk": 2, + "mak": 2, + "p": 9, + "STDIN": 2, + "O": 4, + "/MSWin32/": 2, + "quotemeta": 5, + "know": 4, + "": 13, + "No": 4, + "serviceable": 1, + "parts": 1, + "inside.": 1, + "should": 6, + "this.": 1, + "FUNCTIONS": 1, + "read_ackrc": 4, + "Reads": 1, + "contents": 2, + ".ackrc": 1, + "arguments.": 1, + "@files": 12, + "ACKRC": 2, + "@dirs": 4, + "HOME": 4, + "USERPROFILE": 2, + "dir": 27, + "bsd_glob": 4, + "GLOB_TILDE": 2, + "open": 7, + "@lines": 21, + "/./": 2, + "s*#/": 2, + "<$fh>": 4, + "chomp": 3, + "close": 19, + "get_command_line_options": 4, + "Gets": 3, + "line": 20, + "arguments": 2, + "tweaking.": 1, + "opt": 291, + "pager": 19, + "ACK_PAGER_COLOR": 7, + "ACK_PAGER": 5, + "getopt_specs": 6, + "after_context": 16, + "before_context": 18, + "val": 26, + "break": 14, + "c": 5, + "count": 23, + "color": 38, + "ACK_COLOR_MATCH": 5, + "ACK_COLOR_FILENAME": 5, + "ACK_COLOR_LINENO": 4, + "column": 4, + "ignore": 7, + "option": 7, + "handled": 2, + "beforehand": 2, + "f": 25, + "flush": 8, + "follow": 7, + "G": 11, + "heading": 18, + "h": 6, + "H": 6, + "invert_file_match": 8, + "lines": 19, + "l": 17, + "regex": 28, + "passthru": 9, + "print0": 7, + "Q": 7, + "show_types": 4, + "smart_case": 3, + "sort_files": 11, + "u": 10, + "w": 4, + "remove_dir_sep": 7, + "delete": 10, + "print_version_statement": 2, + "show_help": 3, + "show_help_types": 2, + "Pod": 4, + "Usage": 4, + "pod2usage": 2, + "verbose": 2, + "exitval": 2, + "dummy": 2, + "wanted": 4, + "no//": 2, + "must": 5, + "later": 2, + "Unknown": 2, + "unshift": 4, + "@ARGV": 12, + "ACK_OPTIONS": 5, + "def_types_from_ARGV": 5, + "filetypes_supported": 5, + "parser": 12, + "Parser": 4, + "configure": 4, + "getoptions": 4, + "to_screen": 10, + "Win32": 9, + "Console": 2, + "ANSI": 3, + "join": 5, + "@ret": 10, + "warn": 22, + "uniq": 4, + "@uniq": 2, + "sort": 8, + "<=>": 2, + "b": 6, + "numerical": 2, + "occurs": 2, + "only": 11, + "once": 4, + "Go": 1, + "through": 6, + "<--type-set>": 1, + "foo=": 1, + "bar": 3, + "<--type-add>": 1, + "xml=": 1, + "Remove": 1, + "supported": 1, + "filetypes": 8, + "into": 6, + "@typedef": 8, + "td": 6, + "Builtin": 4, + "cannot": 4, + "changed.": 4, + "delete_type": 5, + "Type": 2, + "exist": 4, + "...": 2, + "@exts": 8, + ".//": 2, + "Cannot": 4, + "append": 2, + "Removes": 1, + "internal": 1, + "structures": 1, + "type_wanted.": 1, + "Internal": 2, + "error": 4, + "builtin": 2, + "ignoredir_filter": 5, + "Standard": 1, + "filter": 12, + "pass": 1, + "": 1, + "descend_filter.": 1, + "true": 3, + "directory": 8, + "ones": 1, + "we": 7, + "ignore.": 1, + "removes": 1, + "trailing": 1, + "separator": 4, + "there": 6, + "its": 2, + "argument": 1, + "list": 10, + "<$filename>": 1, + "could": 2, + "be.": 1, + "For": 5, + "": 1, + "filetype": 1, + "": 1, + "skipped": 2, + "avoid": 1, + "searching": 6, + "a.": 1, + "constant": 2, + "TEXT": 16, + "basename": 9, + ".*": 2, + "is_searchable": 8, + "lc_basename": 8, + "lc": 5, + "SHEBANG#!#!": 2, + "ruby": 3, + "lua": 2, + "erl": 2, + "hp": 2, + "ython": 2, + "d": 9, + "d.": 2, + "*": 8, + "b/": 4, + "ba": 2, + "z": 2, + "sh": 2, + "search": 11, + "false": 1, + "regular": 3, + "expression": 9, + "found.": 4, + "www": 2, + "U": 2, + "y": 8, + "tr/": 2, + "x": 7, + "w/": 3, + "nOo_/": 2, + "_thpppt": 3, + "_get_thpppt": 3, + "_bar": 3, + "&": 22, + "*I": 2, + "g": 7, + "#.": 6, + ".#": 4, + "I#": 2, + "#I": 6, + "#7": 4, + "results.": 2, + "interactively": 6, + "Print": 6, + "different": 2, + "files.": 6, + "group": 2, + "Same": 8, + "nogroup": 2, + "noheading": 2, + "nobreak": 2, + "Highlight": 2, + "matching": 15, + "text": 6, + "redirected": 2, + "Windows": 4, + "colour": 2, + "COLOR": 6, + "match": 21, + "lineno": 2, + "Set": 3, + "filenames": 7, + "matches": 7, + "numbers.": 2, + "Flush": 2, + "immediately": 2, + "non": 2, + "goes": 2, + "pipe": 4, + "finding": 2, + "Only": 7, + "without": 3, + "searching.": 2, + "PATTERN": 8, + "specified.": 4, + "REGEX": 2, + "REGEX.": 2, + "Sort": 2, + "lexically.": 3, + "invert": 2, + "Print/search": 2, + "g/": 2, + "G.": 2, + "show": 3, + "Show": 2, + "has.": 2, + "inclusion/exclusion": 2, + "All": 4, + "searched": 5, + "Ignores": 2, + ".svn": 3, + "other": 5, + "ignored": 6, + "directories": 9, + "unrestricted": 2, + "Add/Remove": 2, + "dirs": 2, + "R": 2, + "recurse": 2, + "Recurse": 3, + "subdirectories": 2, + "END_OF_HELP": 2, + "VMS": 2, + "vd": 2, + "Term": 6, + "ANSIColor": 8, + "black": 3, + "on_yellow": 3, + "bold": 5, + "green": 3, + "yellow": 3, + "printing": 2, + "qr/": 13, + "last_output_line": 6, + "any_output": 10, + "keep_context": 8, + "@before": 16, + "before_starts_at_line": 10, + "after": 18, + "still": 4, + "next_text": 8, + "has_lines": 4, + "scalar": 2, + "m/": 4, + "regex/": 9, + "next": 9, + "print_match_or_context": 13, + "elsif": 10, + "max": 12, + "nmatches": 61, + "show_filename": 35, + "context_overall_output_count": 6, + "print_blank_line": 2, + "is_binary": 4, + "search_resource": 7, + "is_match": 7, + "starting_line_no": 1, + "match_start": 5, + "match_end": 3, + "Prints": 4, + "out": 2, + "context": 1, + "around": 5, + "match.": 3, + "opts": 2, + "line_no": 12, + "show_column": 4, + "display_filename": 8, + "colored": 6, + "print_first_filename": 2, + "sep": 8, + "output_func": 8, + "print_separator": 2, + "print_filename": 2, + "display_line_no": 4, + "print_line_no": 2, + "regex/go": 2, + "regex/Term": 2, + "substr": 2, + "/eg": 2, + "z/": 2, + "K/": 2, + "z//": 2, + "print_column_no": 2, + "scope": 4, + "TOTAL_COUNT_SCOPE": 2, + "total_count": 10, + "get_total_count": 4, + "reset_total_count": 4, + "search_and_list": 8, + "Optimized": 1, + "lines.": 3, + "ors": 11, + "record": 3, + "show_total": 6, + "print_count": 4, + "print_count0": 2, + "filetypes_supported_set": 9, + "True/False": 1, + "print_files": 4, + "iter": 23, + "iterator": 3, + "<$regex>": 1, + "<$one>": 1, + "stop": 1, + "first.": 1, + "<$ors>": 1, + "<\"\\n\">": 1, + "what": 14, + "filename.": 1, + "print_files_with_matches": 4, + "was": 2, + "repo": 18, + "Repository": 11, + "next_resource": 6, + "print_matches": 4, + "tarballs_work": 4, + ".tar": 2, + ".gz": 2, + "Tar": 4, + "XXX": 4, + "Error": 2, + "checking": 2, + "needs_line_scan": 14, + "reset": 5, + "filetype_setup": 4, + "Minor": 1, + "housekeeping": 1, + "before": 1, + "go": 1, + "expand_filenames": 7, + "expanded": 3, + "globs": 1, + "EXPAND_FILENAMES_SCOPE": 4, + "argv": 12, + "attr": 6, + "foreach": 4, + "pattern": 10, + "@results": 14, + "didn": 2, + "ve": 2, + "tried": 2, + "load": 2, + "GetAttributes": 2, + "got": 2, + "get_starting_points": 4, + "starting": 2, + "@what": 14, + "reslash": 4, + "Assume": 2, + "start_point": 4, + "_match": 8, + "target": 6, + "invert_flag": 4, + "get_iterator": 4, + "Return": 2, + "starting_point": 10, + "g_regex": 4, + "file_filter": 12, + "g_regex/": 6, + "Maybe": 2, + "is_interesting": 4, + "descend_filter": 11, + "error_handler": 5, + "msg": 4, + "follow_symlinks": 6, + "set_up_pager": 3, + "Unable": 2, + "going": 1, + "pipe.": 1, + "exit_from_ack": 5, + "Exit": 1, + "correct": 1, + "code.": 2, + "handed": 1, + "argument.": 1, + "rc": 11, + "Copyright": 2, + "Andy": 2, + "Lester.": 2, + "Artistic": 2, + "License": 2, + "v2.0.": 2, + "End": 3, + "Util": 3, + "Accessor": 1, + "status": 17, + "Scalar": 2, + "shortcut": 2, + "location": 4, + "redirect": 1, + "url": 2, + "clone": 1, + "_finalize_cookies": 2, + "/chr": 1, + "/ge": 1, + "replace": 3, + "LWS": 1, + "single": 1, + "SP": 1, + "//g": 1, + "CR": 1, + "LF": 1, + "since": 1, + "char": 1, + "invalid": 1, + "here": 2, + "header_field_names": 1, + "_body": 2, + "blessed": 1, + "overload": 1, + "Method": 1, + "_bake_cookie": 2, + "push_header": 1, + "@cookie": 7, + "domain": 3, + "_date": 2, + "expires": 7, + "httponly": 1, + "@MON": 1, + "Jan": 1, + "Feb": 1, + "Mar": 1, + "Apr": 1, + "May": 2, + "Jun": 1, + "Jul": 1, + "Aug": 1, + "Sep": 1, + "Oct": 1, + "Nov": 1, + "Dec": 1, + "@WDAY": 1, + "Sun": 1, + "Mon": 1, + "Tue": 1, + "Wed": 1, + "Thu": 1, + "Fri": 1, + "Sat": 1, + "sec": 2, + "min": 3, + "hour": 2, + "mday": 2, + "mon": 2, + "year": 3, + "wday": 2, + "gmtime": 1, + "sprintf": 1, + "WDAY": 1, + "MON": 1, + "response": 5, + "psgi_handler": 1, + "way": 2, + "simple": 2, + "API.": 1, + "Sets": 2, + "gets": 2, + "": 1, + "alias.": 2, + "response.": 1, + "Setter": 2, + "either": 2, + "headers.": 1, + "body_str": 1, + "io": 1, + "sets": 4, + "body.": 1, + "IO": 1, + "Handle": 1, + "": 1, + "X": 2, + "text/plain": 1, + "gzip": 1, + "normalize": 1, + "given": 10, + "string.": 1, + "Users": 1, + "responsible": 1, + "properly": 1, + "": 1, + "names": 1, + "their": 1, + "corresponding": 1, + "": 2, + "everything": 1, + "": 1, + "": 2, + "": 1, + "": 1, + "": 1, + "integer": 1, + "epoch": 1, + "time": 3, + "": 1, + "convert": 1, + "formats": 1, + "<+3M>": 1, + "reference.": 1, + "AUTHOR": 1, + "MAIN": 1, + "main": 3, + "env_is_usable": 3, + "th": 1, + "pt": 1, + "@keys": 2, + "ACK_/": 1, + "@ENV": 1, + "load_colors": 1, + "ACK_SWITCHES": 1, + "Unbuffer": 1, + "mode": 1, + "build_regex": 3, + "nargs": 2, + "Resource": 5, + "file_matching": 2, + "check_regex": 2, + "finder": 1, + "options": 7, + "FILE...": 1, + "DIRECTORY...": 1, + "designed": 1, + "replacement": 1, + "uses": 2, + "": 5, + "searches": 1, + "named": 3, + "FILEs": 1, + "standard": 1, + "PATTERN.": 1, + "By": 2, + "prints": 2, + "also": 7, + "actually": 1, + "let": 1, + "advantage": 1, + ".wango": 1, + "won": 1, + "throw": 1, + "away": 1, + "times": 2, + "symlinks": 1, + "whatever": 1, + "were": 1, + "specified": 3, + "line.": 4, + "default.": 2, + "": 11, + "included": 1, + "search.": 1, + "matched": 1, + "against": 1, + "shell": 4, + "glob.": 1, + "<-i>": 5, + "<-w>": 2, + "<-v>": 3, + "<-Q>": 4, + "relative": 1, + "convenience": 1, + "<-f>": 6, + "<--group>": 2, + "<--nogroup>": 2, + "groups": 1, + "with.": 1, + "interactively.": 1, + "result": 1, + "per": 1, + "grep.": 2, + "redirected.": 1, + "<-H>": 1, + "<--with-filename>": 1, + "<-h>": 1, + "<--no-filename>": 1, + "Suppress": 1, + "prefixing": 1, + "searched.": 1, + "<--help>": 1, + "short": 1, + "help": 2, + "statement.": 1, + "<--ignore-case>": 1, + "Ignore": 3, + "case": 3, + "strings.": 1, + "applies": 3, + "regexes": 3, + "<-g>": 5, + "<-G>": 3, + "options.": 4, + "": 2, + "etc": 2, + "directories.": 2, + "mason": 1, + "may": 3, + "wish": 1, + "include": 1, + "<--ignore-dir=data>": 1, + "<--noignore-dir>": 1, + "normally": 1, + "perhaps": 1, + "research": 1, + "<.svn/props>": 1, + "name.": 1, + "Nested": 1, + "": 1, + "NOT": 1, + "supported.": 1, + "specify": 1, + "<--ignore-dir=foo>": 1, + "taken": 1, + "account": 1, + "explicitly": 1, + "": 2, + "Multiple": 1, + "<--line>": 1, + "comma": 1, + "separated": 2, + "<--line=3,5,7>": 1, + "<--line=4-7>": 1, + "works.": 1, + "ascending": 1, + "order": 2, + "matter": 1, + "<-l>": 2, + "<--files-with-matches>": 1, + "text.": 1, + "<-L>": 1, + "<--files-without-matches>": 1, + "equivalent": 2, + "specifying": 1, + "Specify": 1, + "explicitly.": 1, + "helpful": 2, + "": 1, + "via": 1, + "": 4, + "": 4, + "environment": 2, + "variables.": 1, + "Using": 3, + "suppress": 3, + "grouping": 3, + "coloring": 3, + "piping": 3, + "does.": 2, + "<--passthru>": 1, + "whether": 1, + "they": 1, + "expression.": 1, + "Highlighting": 1, + "though": 1, + "highlight": 1, + "seeing": 1, + "tail": 1, + "/access.log": 1, + "<--print0>": 1, + "works": 1, + "conjunction": 1, + "null": 1, + "byte": 1, + "usual": 1, + "newline.": 1, + "dealing": 1, + "whitespace": 1, + "html": 1, + "xargs": 2, + "rm": 1, + "<--literal>": 1, + "Quote": 1, + "metacharacters": 2, + "treated": 1, + "literal.": 1, + "<-r>": 1, + "<-R>": 1, + "<--recurse>": 1, + "compatibility": 2, + "turning": 1, + "<--no-recurse>": 1, + "off.": 1, + "<--smart-case>": 1, + "<--no-smart-case>": 1, + "strings": 1, + "uppercase": 1, + "characters.": 1, + "similar": 1, + "": 1, + "vim.": 1, + "overrides": 2, + "option.": 1, + "<--sort-files>": 1, + "Sorts": 1, + "Use": 6, + "listings": 1, + "deterministic": 1, + "runs": 1, + "<--show-types>": 1, + "Outputs": 1, + "associates": 1, + "Works": 1, + "<--thpppt>": 1, + "Display": 1, + "important": 1, + "Bill": 1, + "Cat": 1, + "logo.": 1, + "exact": 1, + "spelling": 1, + "<--thpppppt>": 1, + "important.": 1, + "make": 3, + "perl": 8, + "php": 2, + "python": 1, + "location.": 1, + "variable": 1, + "specifies": 1, + "placed": 1, + "front": 1, + "explicit": 1, + "Specifies": 4, + "recognized": 1, + "clear": 2, + "dark": 1, + "underline": 1, + "underscore": 2, + "blink": 1, + "reverse": 1, + "concealed": 1, + "red": 1, + "blue": 1, + "magenta": 1, + "on_black": 1, + "on_red": 1, + "on_green": 1, + "on_blue": 1, + "on_magenta": 1, + "on_cyan": 1, + "on_white.": 1, + "Case": 1, + "significant.": 1, + "Underline": 1, + "reset.": 1, + "alone": 1, + "foreground": 1, + "on_color": 1, + "background": 1, + "color.": 2, + "<--color-filename>": 1, + "printed": 1, + "<--color>": 1, + "mode.": 1, + "<--color-lineno>": 1, + "See": 1, + "": 1, + "specifications.": 1, + "": 1, + "": 1, + "": 1, + "send": 1, + "output.": 1, + "except": 1, + "assume": 1, + "both": 1, + "understands": 1, + "sequences.": 1, + "never": 1, + "ACK": 2, + "OTHER": 1, + "TOOLS": 1, + "Vim": 3, + "integration": 3, + "integrates": 1, + "easily": 2, + "editor.": 1, + "<.vimrc>": 1, + "grepprg": 1, + "That": 3, + "examples": 1, + "<-a>": 1, + "flags.": 1, + "Now": 1, + "step": 1, + "Dumper": 1, + "perllib": 1, + "Emacs": 1, + "Phil": 1, + "Jackson": 1, + "put": 1, + "": 1, + "extension": 1, + "": 1, + "TextMate": 2, + "Pedro": 1, + "Melo": 1, + "who": 1, + "writes": 1, + "Shell": 2, + "Code": 1, + "greater": 1, + "normal": 1, + "<$?=256>": 1, + "": 1, + "backticks.": 1, + "errors": 1, + "used.": 1, + "least": 1, + "returned.": 1, + "DEBUGGING": 1, + "PROBLEMS": 1, + "expecting": 1, + "forgotten": 1, + "<--noenv>": 1, + "<.ackrc>": 1, + "remember.": 1, + "Put": 1, + "definitions": 1, + "it.": 1, + "smart": 1, + "too.": 1, + "there.": 1, + "working": 1, + "big": 1, + "codesets": 1, + "ideal": 1, + "sending": 1, + "": 1, + "prefer": 1, + "doubt": 1, + "day": 1, + "find": 1, + "trouble": 1, + "spots": 1, + "website": 1, + "visitor.": 1, + "had": 1, + "problem": 1, + "loading": 1, + "": 1, + "took": 1, + "log": 3, + "scanned": 1, + "twice.": 1, + "aa.bb.cc.dd": 1, + "/path/to/access.log": 1, + "B5": 1, + "troublesome.gif": 1, + "first": 1, + "finds": 2, + "IP.": 1, + "second": 1, + "troublesome": 1, + "GIF": 1, + "shows": 1, + "previous": 1, + "five": 1, + "case.": 1, + "Share": 1, + "knowledge": 1, + "Join": 1, + "mailing": 1, + "list.": 1, + "Send": 1, + "me": 1, + "tips": 1, + "here.": 1, + "FAQ": 1, + "isn": 1, + "driven": 1, + "filetype.": 1, + "": 1, + "kind": 1, + "ignores": 1, + "switch": 1, + "you.": 1, + "source": 2, + "compiled": 1, + "control": 1, + "metadata": 1, + "wastes": 1, + "lot": 1, + "those": 2, + "returning": 1, + "great": 1, + "did": 1, + "only.": 1, + "perfectly": 1, + "<-p>": 1, + "<-n>": 1, + "switches.": 1, + "select": 1, + "update.": 1, + "change": 1, + "PHP": 1, + "Unix": 1, + "Can": 1, + "recognize": 1, + "<.xyz>": 1, + "already": 2, + "program/package": 1, + "ack.": 2, + "Yes": 1, + "know.": 1, + "nothing": 1, + "suggest": 1, + "symlink": 1, + "points": 1, + "": 1, + "crucial": 1, + "benefits": 1, + "having": 1, + "Regan": 1, + "Slaven": 1, + "ReziE": 1, + "<0x107>": 1, + "Mark": 1, + "Stosberg": 1, + "David": 1, + "Alan": 1, + "Pisoni": 1, + "Adriano": 1, + "Ferreira": 1, + "James": 1, + "Keenan": 1, + "Leland": 1, + "Johnson": 1, + "Ricardo": 1, + "Signes": 1, + "Pete": 1, + "Krawczyk.": 1, + "files_defaults": 3, + "skip_dirs": 3, + "CORE": 3, + "curdir": 1, + "updir": 1, + "__PACKAGE__": 1, + "parms": 15, + "@queue": 8, + "_setup": 2, + "fullpath": 12, + "local": 5, + "_candidate_files": 2, + "sort_standard": 2, + "cmp": 2, + "sort_reverse": 1, + "@parts": 3, + "passed_parms": 6, + "parm": 1, + "badkey": 1, + "dh": 4, + "opendir": 1, + "@newfiles": 5, + "sort_sub": 4, + "readdir": 1, + "has_stat": 3, + "closedir": 1, + "": 1, + "updated": 1, + "update": 1, + "message": 1, + "bak": 1, + "core": 1, + "swp": 1, + "js": 1, + "1": 1, + "str": 12, + "regex_is_lc": 2, + "S": 1, + ".*//": 1, + "_my_program": 3, + "Basename": 2, + "FAIL": 12, + "confess": 2, + "@ISA": 2, + "could_be_binary": 4, + "opened": 1, + "size": 5, + "_000": 1, + "sysread": 1, + "regex/m": 1, + "readline": 1, + "nexted": 3 + }, + "XML": { + "": 11, + "version=": 20, + "encoding=": 8, + "": 7, + "ToolsVersion=": 6, + "DefaultTargets=": 5, + "xmlns=": 7, + "": 21, + "Project=": 12, + "Condition=": 37, + "": 26, + "": 6, + "Debug": 10, + "": 6, + "": 6, + "AnyCPU": 10, + "": 6, + "": 5, + "{": 6, + "D377F": 1, + "-": 90, + "A": 20, + "A798": 1, + "B3FD04C": 1, + "}": 6, + "": 5, + "": 4, + "Exe": 4, + "": 4, + "": 1, + "vbproj_sample.Module1": 1, + "": 1, + "": 5, + "vbproj_sample": 1, + "": 5, + "": 4, + "vbproj": 3, + "sample": 6, + "": 4, + "": 3, + "": 3, + "": 1, + "Console": 3, + "": 1, + "": 5, + "v4.5.1": 5, + "": 5, + "": 3, + "true": 24, + "": 3, + "": 25, + "": 6, + "": 6, + "": 5, + "": 5, + "": 6, + "full": 4, + "": 6, + "": 2, + "": 2, + "": 2, + "": 2, + "": 8, + "bin": 11, + "": 8, + "": 5, + "sample.xml": 2, + "": 5, + "": 2, + "": 2, + "pdbonly": 3, + "false": 10, + "": 7, + "": 7, + "Release": 6, + "": 1, + "On": 2, + "": 1, + "": 1, + "Binary": 1, + "": 1, + "": 1, + "Off": 1, + "": 1, + "": 1, + "": 1, + "": 26, + "": 30, + "Include=": 78, + "": 26, + "": 10, + "": 3, + "True": 13, + "": 3, + "": 3, + "Application.myapp": 1, + "": 3, + "": 3, + "": 1, + "": 1, + "Resources.resx": 1, + "Settings.settings": 1, + "": 1, + "": 1, + "": 1, + "": 3, + "VbMyResourcesResXFileCodeGenerator": 1, + "": 3, + "": 3, + "Resources.Designer.vb": 1, + "": 3, + "": 2, + "My.Resources": 1, + "": 2, + "": 1, + "Designer": 1, + "": 1, + "": 1, + "": 5, + "MyApplicationCodeGenerator": 1, + "Application.Designer.vb": 1, + "": 2, + "SettingsSingleFileGenerator": 1, + "My": 1, + "Settings.Designer.vb": 1, + "": 7, + "": 3, + "MyCommon": 1, + "": 3, + "": 1, + "Name=": 1, + "": 1, + "Text=": 1, + "": 1, + "": 1, + "xmlns": 2, + "ea=": 2, + "": 1, + "organisation=": 3, + "module=": 3, + "revision=": 3, + "status=": 1, + "": 3, + "this": 77, + "is": 123, + "a": 128, + "easyant": 3, + "module.ivy": 1, + "file": 3, + "for": 60, + "java": 1, + "standard": 1, + "application": 2, + "": 3, + "": 1, + "": 1, + "name=": 270, + "value=": 11, + "": 1, + "": 1, + "": 1, + "": 1, + "": 2, + "visibility=": 2, + "description=": 4, + "": 1, + "": 1, + "": 4, + "org=": 1, + "rev=": 1, + "conf=": 1, + "default": 9, + "junit": 2, + "test": 7, + "/": 6, + "": 1, + "": 1, + "": 2, + "This": 21, + "module.ant": 1, + "optionnal": 1, + "and": 44, + "designed": 1, + "to": 164, + "customize": 1, + "your": 8, + "build": 1, + "with": 23, + "own": 2, + "specific": 8, + "target.": 1, + "": 2, + "": 2, + "my": 2, + "awesome": 1, + "additionnal": 1, + "target": 6, + "": 2, + "": 2, + "extensionOf=": 1, + "i": 2, + "would": 2, + "love": 1, + "could": 1, + "easily": 1, + "plug": 1, + "pre": 1, + "compile": 1, + "step": 1, + "": 1, + "": 2, + "": 2, + "cfa7a11": 1, + "a5cd": 1, + "bd7b": 1, + "b210d4d51a29": 1, + "fsproj_sample": 2, + "": 1, + "": 1, + "fsproj": 1, + "": 2, + "": 2, + "": 6, + "DEBUG": 3, + ";": 52, + "TRACE": 6, + "": 6, + "": 8, + "": 8, + "fsproj_sample.XML": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "": 5, + "": 1, + "": 1, + "": 1, + "": 1, + "": 2, + "(": 65, + "MSBuildExtensionsPath32": 2, + ")": 58, + "..": 1, + "Microsoft": 2, + "SDKs": 1, + "F#": 1, + "Framework": 1, + "v4.0": 1, + "Microsoft.FSharp.Targets": 2, + "": 2, + "": 1, + "": 1, + "VisualStudio": 1, + "v": 1, + "VisualStudioVersion": 1, + "FSharp": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "c67af951": 1, + "d8d6376993e7": 1, + "": 2, + "Properties": 3, + "": 2, + "nproj_sample": 2, + "": 1, + "": 1, + "": 1, + "Net": 1, + "": 1, + "": 1, + "ProgramFiles": 1, + "Nemerle": 3, + "": 1, + "": 1, + "NemerleBinPathRoot": 1, + "NemerleVersion": 1, + "": 1, + "nproj": 1, + "": 4, + "prompt": 4, + "": 4, + "OutputPath": 1, + "AssemblyName": 1, + ".xml": 1, + "": 3, + "": 3, + "": 1, + "False": 1, + "": 1, + "": 2, + "Nemerle.dll": 1, + "": 2, + "": 1, + "Nemerle.Linq.dll": 1, + "": 1, + "": 1, + "": 1, + "TS": 1, + "": 1, + "language=": 1, + "": 1, + "": 2, + "MainWindow": 1, + "": 2, + "": 8, + "": 8, + "filename=": 8, + "line=": 8, + "": 8, + "United": 1, + "Kingdom": 1, + "": 8, + "": 8, + "Reino": 1, + "Unido": 1, + "": 8, + "": 8, + "God": 1, + "save": 2, + "the": 261, + "Queen": 1, + "Deus": 1, + "salve": 1, + "Rainha": 1, + "England": 1, + "Inglaterra": 1, + "Wales": 1, + "Gales": 1, + "Scotland": 1, + "Esc": 1, + "cia": 1, + "Northern": 1, + "Ireland": 1, + "Irlanda": 1, + "Norte": 1, + "Portuguese": 1, + "Portugu": 1, + "s": 3, + "English": 1, + "Ingl": 1, + "": 1, + "": 1, + "": 1, + "compatVersion=": 1, + "": 1, + "FreeMedForms": 1, + "": 1, + "": 1, + "C": 1, + "by": 14, + "Eric": 1, + "MAEKER": 1, + "MD": 1, + "": 1, + "": 1, + "GPLv3": 1, + "": 1, + "": 1, + "Patient": 1, + "data": 2, + "": 1, + "The": 75, + "XML": 1, + "form": 1, + "loader/saver": 1, + "FreeMedForms.": 1, + "": 1, + "http": 1, + "//www.freemedforms.com/": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "D9BF15": 1, + "D10": 1, + "ABAD688E8B": 1, + "csproj_sample": 1, + "csproj": 1, + "": 1, + "": 1, + "ReactiveUI": 2, + "": 1, + "": 1, + "": 120, + "": 120, + "IObservedChange": 5, + "generic": 3, + "interface": 4, + "that": 94, + "replaces": 1, + "non": 1, + "PropertyChangedEventArgs.": 1, + "Note": 7, + "it": 16, + "used": 19, + "both": 2, + "Changing": 5, + "i.e.": 23, + "Changed": 4, + "Observables.": 2, + "In": 6, + "future": 2, + "will": 65, + "be": 57, + "Covariant": 1, + "which": 12, + "allow": 1, + "simpler": 1, + "casting": 1, + "between": 15, + "changes.": 2, + "": 121, + "": 120, + "object": 42, + "has": 16, + "raised": 1, + "change.": 12, + "name": 7, + "of": 75, + "property": 74, + "changed": 18, + "on": 35, + "Sender.": 1, + "value": 44, + "changed.": 9, + "IMPORTANT": 1, + "NOTE": 1, + "often": 3, + "not": 9, + "set": 41, + "performance": 1, + "reasons": 1, + "unless": 1, + "you": 20, + "have": 17, + "explicitly": 1, + "requested": 1, + "an": 88, + "Observable": 56, + "via": 8, + "method": 34, + "such": 5, + "as": 25, + "ObservableForProperty.": 1, + "To": 4, + "retrieve": 3, + "use": 5, + "Value": 3, + "extension": 2, + "method.": 2, + "IReactiveNotifyPropertyChanged": 6, + "represents": 4, + "extended": 1, + "version": 3, + "INotifyPropertyChanged": 1, + "also": 17, + "exposes": 1, + "IEnableLogger": 1, + "dummy": 1, + "attaching": 1, + "any": 11, + "class": 11, + "give": 1, + "access": 3, + "Log": 2, + "When": 5, + "called": 5, + "fire": 11, + "change": 26, + "notifications": 22, + "neither": 3, + "traditional": 3, + "nor": 3, + "until": 7, + "return": 11, + "disposed.": 3, + "": 36, + "An": 26, + "when": 38, + "disposed": 4, + "reenables": 3, + "notifications.": 5, + "": 36, + "Represents": 4, + "fires": 6, + "*before*": 2, + "about": 5, + "should": 10, + "duplicate": 2, + "if": 27, + "same": 8, + "multiple": 6, + "times.": 4, + "*after*": 2, + "TSender": 1, + "helper": 5, + "adds": 2, + "typed": 2, + "versions": 2, + "Changed.": 1, + "IReactiveCollection": 3, + "collection": 27, + "can": 11, + "notify": 3, + "its": 4, + "contents": 2, + "are": 13, + "either": 1, + "items": 27, + "added/removed": 1, + "or": 24, + "itself": 2, + "changes": 13, + ".": 20, + "It": 1, + "important": 6, + "implement": 5, + "Changing/Changed": 1, + "from": 12, + "semantically": 3, + "Fires": 14, + "added": 6, + "once": 4, + "per": 2, + "item": 19, + "added.": 4, + "Functions": 2, + "add": 2, + "AddRange": 2, + "provided": 14, + "was": 6, + "before": 8, + "going": 4, + "collection.": 6, + "been": 5, + "removed": 4, + "providing": 20, + "removed.": 4, + "whenever": 18, + "number": 9, + "in": 45, + "new": 10, + "Count.": 4, + "previous": 2, + "Provides": 4, + "Item": 4, + "implements": 8, + "IReactiveNotifyPropertyChanged.": 4, + "only": 18, + "enabled": 8, + "ChangeTrackingEnabled": 2, + "True.": 2, + "Enables": 2, + "ItemChanging": 2, + "ItemChanged": 2, + "properties": 29, + "implementing": 2, + "rebroadcast": 2, + "through": 3, + "ItemChanging/ItemChanged.": 2, + "T": 1, + "type": 23, + "specified": 7, + "Observables": 4, + "IMessageBus": 1, + "act": 2, + "simple": 2, + "way": 2, + "ViewModels": 3, + "other": 9, + "objects": 4, + "communicate": 2, + "each": 7, + "loosely": 2, + "coupled": 2, + "way.": 2, + "Specifying": 2, + "messages": 22, + "go": 2, + "where": 4, + "done": 2, + "combination": 2, + "Type": 9, + "message": 30, + "well": 2, + "additional": 3, + "parameter": 6, + "unique": 12, + "string": 13, + "distinguish": 12, + "arbitrarily": 2, + "client.": 2, + "Listen": 4, + "provides": 6, + "Message": 2, + "RegisterMessageSource": 4, + "SendMessage.": 2, + "": 12, + "listen": 6, + "to.": 7, + "": 12, + "": 84, + "identical": 11, + "types": 10, + "one": 27, + "purpose": 10, + "leave": 10, + "null.": 10, + "": 83, + "Determins": 2, + "particular": 2, + "registered.": 2, + "message.": 1, + "posted": 3, + "Type.": 2, + "Registers": 3, + "representing": 20, + "stream": 7, + "send.": 4, + "Another": 2, + "part": 2, + "code": 4, + "then": 3, + "call": 5, + "Observable.": 6, + "subscribed": 2, + "sent": 2, + "out": 4, + "provided.": 5, + "Sends": 2, + "single": 2, + "using": 9, + "contract.": 2, + "Consider": 2, + "instead": 2, + "sending": 2, + "response": 2, + "events.": 2, + "actual": 2, + "send": 3, + "returns": 5, + "current": 10, + "logger": 2, + "allows": 15, + "log": 2, + "attached.": 1, + "structure": 1, + "representation": 1, + "memoizing": 2, + "cache": 14, + "evaluate": 1, + "function": 13, + "but": 7, + "keep": 1, + "recently": 3, + "evaluated": 1, + "parameters.": 1, + "Since": 1, + "mathematical": 2, + "sense": 1, + "key": 12, + "*always*": 1, + "maps": 1, + "corresponding": 2, + "value.": 2, + "calculation": 8, + "function.": 6, + "returned": 2, + "Constructor": 2, + "whose": 7, + "results": 6, + "want": 2, + "Tag": 1, + "user": 2, + "defined": 1, + "size": 1, + "maintain": 1, + "after": 1, + "old": 1, + "start": 1, + "thrown": 1, + "out.": 1, + "result": 3, + "gets": 1, + "evicted": 2, + "because": 2, + "Invalidate": 2, + "Evaluates": 1, + "returning": 1, + "cached": 2, + "possible": 1, + "pass": 2, + "optional": 2, + "parameter.": 1, + "Ensure": 1, + "next": 1, + "time": 3, + "queried": 1, + "called.": 1, + "all": 4, + "Returns": 5, + "values": 4, + "currently": 2, + "MessageBus": 3, + "bus.": 1, + "scheduler": 11, + "post": 2, + "RxApp.DeferredScheduler": 2, + "default.": 2, + "Current": 1, + "RxApp": 1, + "global": 1, + "object.": 3, + "ViewModel": 8, + "another": 3, + "Return": 1, + "instance": 2, + "type.": 3, + "registered": 1, + "ObservableAsPropertyHelper": 6, + "help": 1, + "backed": 1, + "read": 3, + "still": 1, + "created": 2, + "directly": 1, + "more": 16, + "ToProperty": 2, + "ObservableToProperty": 1, + "methods.": 2, + "so": 1, + "output": 1, + "chained": 2, + "example": 2, + "property.": 12, + "Constructs": 4, + "base": 3, + "on.": 6, + "action": 2, + "take": 2, + "typically": 1, + "t": 2, + "bindings": 13, + "null": 4, + "OAPH": 2, + "at": 2, + "startup.": 1, + "initial": 28, + "normally": 6, + "Dispatcher": 3, + "based": 9, + "last": 1, + "Exception": 1, + "steps": 1, + "taken": 1, + "ensure": 3, + "never": 3, + "complete": 1, + "fail.": 1, + "Converts": 2, + "automatically": 3, + "onChanged": 2, + "raise": 2, + "notification.": 2, + "equivalent": 2, + "convenient.": 1, + "Expression": 7, + "initialized": 2, + "backing": 9, + "field": 10, + "ReactiveObject": 11, + "ObservableAsyncMRUCache": 2, + "memoization": 2, + "asynchronous": 4, + "expensive": 2, + "compute": 1, + "MRU": 1, + "fixed": 1, + "limit": 5, + "cache.": 5, + "guarantees": 6, + "given": 11, + "flight": 2, + "subsequent": 1, + "requests": 4, + "wait": 3, + "first": 1, + "empty": 1, + "web": 6, + "image": 1, + "receives": 1, + "two": 1, + "concurrent": 5, + "issue": 2, + "WebRequest": 1, + "does": 1, + "mean": 1, + "request": 3, + "Concurrency": 1, + "limited": 1, + "maxConcurrent": 1, + "too": 1, + "many": 1, + "operations": 6, + "progress": 1, + "further": 1, + "queued": 1, + "slot": 1, + "available.": 1, + "performs": 1, + "asyncronous": 1, + "async": 3, + "CPU": 1, + "Observable.Return": 1, + "may": 1, + "result.": 2, + "*must*": 1, + "equivalently": 1, + "input": 2, + "being": 1, + "memoized": 1, + "calculationFunc": 2, + "depends": 1, + "varables": 1, + "than": 5, + "unpredictable.": 1, + "reached": 2, + "discarded.": 4, + "maximum": 2, + "regardless": 2, + "caches": 2, + "server.": 2, + "clean": 1, + "up": 25, + "manage": 1, + "disk": 1, + "download": 1, + "temporary": 1, + "folder": 1, + "onRelease": 1, + "delete": 1, + "file.": 1, + "run": 7, + "defaults": 1, + "TaskpoolScheduler": 2, + "Issues": 1, + "fetch": 1, + "operation.": 1, + "operation": 2, + "finishes.": 1, + "If": 6, + "immediately": 3, + "upon": 1, + "subscribing": 1, + "returned.": 2, + "provide": 2, + "synchronous": 1, + "AsyncGet": 1, + "resulting": 1, + "Works": 2, + "like": 2, + "SelectMany": 2, + "memoizes": 2, + "selector": 5, + "calls.": 2, + "addition": 3, + "no": 4, + "selectors": 2, + "running": 4, + "concurrently": 2, + "queues": 2, + "rest.": 2, + "very": 2, + "services": 2, + "avoid": 2, + "potentially": 2, + "spamming": 2, + "server": 2, + "hundreds": 2, + "requests.": 2, + "similar": 3, + "passed": 1, + "SelectMany.": 1, + "similarly": 1, + "ObservableAsyncMRUCache.AsyncGet": 1, + "must": 2, + "sense.": 1, + "flattened": 2, + "selector.": 2, + "overload": 2, + "useful": 2, + "making": 3, + "service": 1, + "several": 1, + "places": 1, + "paths": 1, + "already": 1, + "configured": 1, + "ObservableAsyncMRUCache.": 1, + "notification": 6, + "Attempts": 1, + "expression": 3, + "expression.": 1, + "entire": 1, + "able": 1, + "followed": 1, + "otherwise": 1, + "Given": 3, + "fully": 3, + "filled": 1, + "SetValueToProperty": 1, + "apply": 3, + "target.property": 1, + "This.GetValue": 1, + "observed": 1, + "onto": 1, + "convert": 2, + "stream.": 3, + "ValueIfNotDefault": 1, + "filters": 1, + "BindTo": 1, + "takes": 1, + "applies": 1, + "Conceptually": 1, + "child": 2, + "without": 1, + "checks.": 1, + "set.": 3, + "x.Foo.Bar.Baz": 1, + "disconnects": 1, + "binding.": 1, + "ReactiveCollection.": 1, + "ReactiveCollection": 1, + "existing": 3, + "list.": 2, + "list": 1, + "populate": 1, + "anything": 2, + "Change": 2, + "Tracking": 2, + "Creates": 3, + "adding": 2, + "completes": 4, + "optionally": 2, + "ensuring": 2, + "delay.": 2, + "withDelay": 2, + "leak": 2, + "Timer.": 2, + "always": 4, + "UI": 2, + "thread.": 3, + "put": 2, + "into": 2, + "populated": 4, + "faster": 2, + "delay": 2, + "Select": 3, + "item.": 3, + "creating": 2, + "collections": 1, + "updated": 1, + "respective": 1, + "Model": 1, + "updated.": 1, + "Collection.Select": 1, + "mirror": 1, + "ObservableForProperty": 14, + "ReactiveObject.": 1, + "unlike": 13, + "Selector": 1, + "classes": 2, + "INotifyPropertyChanged.": 1, + "monitor": 1, + "RaiseAndSetIfChanged": 2, + "Setter": 2, + "write": 2, + "assumption": 4, + "named": 2, + "RxApp.GetFieldNameForPropertyNameFunc.": 2, + "almost": 2, + "keyword.": 2, + "newly": 2, + "intended": 5, + "Silverlight": 2, + "WP7": 1, + "reflection": 1, + "cannot": 1, + "private": 1, + "field.": 1, + "Reference": 1, + "Use": 15, + "custom": 4, + "raiseAndSetIfChanged": 1, + "doesn": 1, + "x": 1, + "x.SomeProperty": 1, + "suffice.": 1, + "RaisePropertyChanging": 2, + "mock": 4, + "scenarios": 4, + "manually": 4, + "fake": 4, + "invoke": 4, + "raisePropertyChanging": 4, + "faking": 4, + "RaisePropertyChanged": 2, + "helps": 1, + "make": 2, + "them": 1, + "compatible": 1, + "Rx.Net.": 1, + "declare": 1, + "initialize": 1, + "derive": 1, + "properties/methods": 1, + "MakeObjectReactiveHelper.": 1, + "InUnitTestRunner": 1, + "attempts": 1, + "determine": 1, + "heuristically": 1, + "unit": 3, + "framework.": 1, + "we": 1, + "determined": 1, + "framework": 1, + "running.": 1, + "GetFieldNameForProperty": 1, + "convention": 2, + "GetFieldNameForPropertyNameFunc.": 1, + "needs": 1, + "found.": 1, + "name.": 1, + "DeferredScheduler": 1, + "schedule": 2, + "work": 2, + "normal": 2, + "mode": 2, + "DispatcherScheduler": 1, + "Unit": 1, + "Test": 1, + "Immediate": 1, + "simplify": 1, + "writing": 1, + "common": 1, + "tests.": 1, + "background": 1, + "modes": 1, + "TPL": 1, + "Task": 1, + "Pool": 1, + "Threadpool": 1, + "Set": 3, + "provider": 1, + "usually": 1, + "entry": 1, + "MessageBus.Current.": 1, + "override": 1, + "naming": 1, + "one.": 1, + "WhenAny": 12, + "observe": 12, + "constructors": 12, + "need": 12, + "setup.": 12, + "": 1, + "": 1, + "": 10, + "": 3, + "FC737F1": 1, + "C7A5": 1, + "A066": 1, + "A32D752A2FF": 1, + "": 3, + "": 3, + "cpp": 1, + "c": 1, + "cc": 1, + "cxx": 1, + "def": 1, + "odl": 1, + "idl": 1, + "hpj": 1, + "bat": 1, + "asm": 1, + "asmx": 1, + "": 3, + "": 10, + "BD": 1, + "b04": 1, + "EB": 1, + "FBE52EBFB": 1, + "h": 1, + "hh": 1, + "hpp": 1, + "hxx": 1, + "hm": 1, + "inl": 1, + "inc": 1, + "xsd": 1, + "DA6AB6": 1, + "F800": 1, + "c08": 1, + "B7A": 1, + "BB121AAD01": 1, + "rc": 1, + "ico": 1, + "cur": 1, + "bmp": 1, + "dlg": 1, + "rc2": 1, + "rct": 1, + "rgs": 1, + "gif": 1, + "jpg": 1, + "jpeg": 1, + "jpe": 1, + "resx": 1, + "tiff": 1, + "tif": 1, + "png": 1, + "wav": 1, + "mfcribbon": 1, + "ms": 1, + "": 2, + "": 4, + "Header": 2, + "Files": 7, + "": 2, + "": 2, + "Resource": 2, + "": 1, + "": 8, + "Source": 3, + "": 6, + "": 2, + "": 1, + "Label=": 11, + "": 2, + "Win32": 2, + "": 2, + "BF6EED48": 1, + "BF18": 1, + "C54": 1, + "F": 1, + "BBF19EEDC7C": 1, + "": 1, + "ManagedCProj": 1, + "": 1, + "vcxprojsample": 1, + "": 2, + "Application": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "v120": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "Unicode": 2, + "": 2, + "": 4, + "": 4, + "": 2, + "": 2, + "": 2, + "Level3": 2, + "": 1, + "Disabled": 1, + "": 1, + "": 2, + "WIN32": 2, + "_DEBUG": 1, + "%": 2, + "PreprocessorDefinitions": 2, + "": 2, + "": 4, + "": 4, + "": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "NDEBUG": 1, + "Create": 2, + "standalone=": 1, + "": 1, + "4": 1, + "0": 2, + "": 1, + "storage_type_id=": 1, + "": 14, + "moduleId=": 14, + "": 2, + "id=": 141, + "buildSystemId=": 2, + "": 2, + "": 2, + "": 12, + "point=": 12, + "": 2, + "": 7, + "": 2, + "artifactName=": 2, + "buildArtefactType=": 2, + "buildProperties=": 2, + "cleanCommand=": 2, + "cdt": 2, + "managedbuild": 2, + "config": 2, + "gnu": 2, + "exe": 2, + "debug": 1, + "1803931088": 1, + "parent=": 2, + "": 2, + "resourcePath=": 2, + "": 2, + "superClass=": 42, + "": 2, + "": 2, + "buildPath=": 2, + "keepEnvironmentInBuildfile=": 2, + "managedBuildOn=": 2, + "": 12, + "": 4, + "": 8, + "": 8, + "defaultValue=": 2, + "": 4, + "kind=": 6, + "paths=": 4, + "": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "flags=": 2, + "": 2, + "": 2, + "": 2, + "release": 1, + "32754498": 1, + "projectType=": 1, + "": 5, + "enabled=": 125, + "problemReportingEnabled=": 5, + "selectedProfileId=": 5, + "": 40, + "": 40, + "": 40, + "filePath=": 40, + "": 80, + "": 40, + "": 40, + "": 40, + "arguments=": 40, + "command=": 40, + "useDefault=": 40, + "": 40, + "": 40, + "": 4, + "instanceId=": 4, + "": 4, + "": 1 + }, + "MTML": { + "<$mt:Var>": 15, + "name=": 19, + "value=": 9, + "": 1, + "op=": 8, + "setvar=": 9, + "": 1, + "<": 2, + "a": 1, + "href": 1, + "<$mt:CategoryLabel>": 1, + "remove_html=": 1, + "": 1, + "": 1, + "": 1, + "function=": 1, + "": 1, + "gt=": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 2, + "from=": 2, + "to=": 2, + "div": 1, + "class": 1, + "col_num": 1, + "": 2, + "": 1 + }, + "Lasso": { + "[": 22, + "]": 23, + "//": 169, + "-": 2248, + "": 6, + "2009": 14, + "09": 10, + "04": 8, + "JS": 126, + "Added": 40, + "content_body": 14, + "tag": 11, + "for": 65, + "compatibility": 4, + "with": 25, + "pre": 4, + "8": 6, + "5": 4, + "05": 4, + "07": 6, + "timestamp": 4, + "to": 98, + "knop_cachestore": 4, + "and": 52, + "maxage": 2, + "parameter": 8, + "knop_cachefetch": 4, + "Corrected": 8, + "construction": 2, + "of": 24, + "cache_name": 2, + "internally": 2, + "in": 46, + "the": 86, + "knop_cache": 2, + "tags": 14, + "so": 16, + "it": 20, + "will": 12, + "work": 6, + "correctly": 2, + "at": 10, + "site": 4, + "root": 2, + "2008": 6, + "11": 8, + "dummy": 2, + "knop_debug": 4, + "ctype": 2, + "be": 38, + "able": 14, + "transparently": 2, + "or": 6, + "without": 4, + "L": 2, + "Debug": 2, + "24": 2, + "knop_stripbackticks": 2, + "01": 4, + "28": 2, + "Cache": 2, + "name": 32, + "is": 35, + "now": 23, + "used": 12, + "also": 5, + "when": 10, + "using": 8, + "session": 4, + "storage": 8, + "2007": 6, + "12": 8, + "knop_cachedelete": 2, + "Created": 4, + "03": 2, + "knop_foundrows": 2, + "condition": 4, + "returning": 2, + "normal": 2, + "found_count": 11, + "For": 2, + "Lasso": 15, + "if": 76, + "lasso_tagexists": 4, + "define_tag": 48, + "namespace=": 12, + "return": 75, + "__html_reply__": 4, + "define_type": 14, + "debug": 2, + "_unknowntag": 6, + "onconvert": 2, + "stripbackticks": 2, + "description=": 2, + "priority=": 2, + "required=": 2, + "local": 116, + "output": 30, + "string": 59, + "input": 2, + "split": 2, + "(": 640, + ")": 639, + "first": 12, + ";": 573, + "@#output": 2, + "/define_tag": 36, + "description": 34, + "namespace": 16, + "priority": 8, + "Johan": 2, + "S": 2, + "lve": 2, + "integer": 30, + "#charlist": 6, + "size": 24, + "start": 5, + "current": 10, + "date": 23, + "time": 8, + "a": 52, + "mixed": 2, + "up": 4, + "format": 7, + "as": 26, + "seed": 6, + "#seed": 36, + "convert": 4, + "this": 14, + "base": 6, + "conversion": 4, + "while": 9, + "#output": 50, + "get": 12, + "%": 14, + "#base": 8, + "+": 146, + "/": 6, + "/while": 7, + "over": 2, + "new": 14, + "chunk": 2, + "millisecond": 2, + "math_random": 2, + "lower": 2, + "upper": 2, + "__lassoservice_ip__": 2, + "response_localpath": 8, + "removetrailing": 8, + "response_filepath": 8, + "http": 6, + "//tagswap.net/found_rows": 2, + "action_statement": 2, + "string_findregexp": 8, + "#sql": 42, + "find": 57, + "ignorecase": 12, + "||": 8, + "<": 7, + "maxrecords_value": 2, + "inaccurate": 2, + "must": 4, + "accurate": 2, + "/if": 53, + "Default": 2, + "method": 7, + "usually": 2, + "fastest.": 2, + "Can": 2, + "not": 10, + "GROUP": 4, + "BY": 6, + "example.": 2, + "First": 4, + "normalize": 4, + "whitespace": 3, + "around": 2, + "FROM": 2, + "expression": 6, + "string_replaceregexp": 8, + "replace": 8, + "ReplaceOnlyOne": 2, + "substring": 6, + "remove": 6, + "ORDER": 2, + "statement": 4, + "since": 4, + "causes": 4, + "problems": 2, + "field": 26, + "aliases": 2, + "we": 2, + "can": 14, + "simple": 2, + "later": 2, + "else": 32, + "query": 4, + "contains": 2, + "use": 10, + "SQL_CALC_FOUND_ROWS": 2, + "which": 2, + "much": 2, + "slower": 2, + "see": 16, + "//bugs.mysql.com/bug.php": 2, + "id": 7, + "removeleading": 2, + "inline": 4, + "sql": 2, + "exit": 2, + "here": 2, + "normally": 2, + "/inline": 2, + "fallback": 4, + "required": 10, + "optional": 36, + "local_defined": 26, + "knop_seed": 2, + "Local": 7, + "#RandChars": 4, + "Get": 2, + "Math_Random": 2, + "Min": 2, + "Max": 2, + "Size": 2, + "#value": 14, + "join": 5, + "#numericValue": 4, + "&&": 30, + "length": 8, + "#cryptvalue": 10, + "#anyChar": 2, + "Encrypt_Blowfish": 2, + "decrypt_blowfish": 2, + "String_Remove": 2, + "StartPosition": 2, + "EndPosition": 2, + "Seed": 2, + "String_IsAlphaNumeric": 2, + "self": 72, + "_date_msec": 4, + "/define_type": 4, + "type": 63, + "seconds": 4, + "map": 23, + "default": 4, + "store": 4, + "all": 6, + "page": 14, + "vars": 8, + "specified": 8, + "iterate": 12, + "keys": 6, + "var": 38, + "#item": 10, + "isa": 25, + "#type": 26, + "#data": 14, + "insert": 18, + "/iterate": 12, + "//fail_if": 6, + "session_id": 6, + "#session": 10, + "session_addvar": 4, + "#cache_name": 72, + "duration": 4, + "second": 8, + "#expires": 4, + "server_name": 6, + "initiate": 10, + "thread": 6, + "RW": 6, + "lock": 24, + "global": 40, + "Thread_RWLock": 6, + "create": 6, + "reference": 10, + "@": 8, + "writing": 6, + "#lock": 12, + "writelock": 4, + "check": 6, + "cache": 4, + "unlock": 6, + "writeunlock": 4, + "null": 26, + "#maxage": 4, + "cached": 8, + "data": 12, + "too": 4, + "old": 4, + "reading": 2, + "readlock": 2, + "readunlock": 2, + "value": 14, + "true": 12, + "false": 8, + "ignored": 2, + "//##################################################################": 4, + "knoptype": 2, + "All": 4, + "Knop": 6, + "custom": 8, + "types": 10, + "should": 4, + "have": 6, + "parent": 5, + "This": 5, + "identify": 2, + "registered": 2, + "knop": 6, + "isknoptype": 2, + "knop_knoptype": 2, + "prototype": 4, + "version": 4, + "14": 4, + "Base": 2, + "framework": 2, + "Contains": 2, + "common": 4, + "member": 10, + "Used": 2, + "boilerplate": 2, + "creating": 4, + "other": 4, + "instance": 8, + "variables": 2, + "are": 4, + "available": 2, + "well": 2, + "CHANGE": 4, + "NOTES": 4, + "Syntax": 4, + "adjustments": 4, + "9": 2, + "Changed": 6, + "error_msg": 15, + "error": 22, + "numbers": 2, + "added": 10, + "even": 2, + "language": 10, + "already": 2, + "exists.": 2, + "improved": 4, + "reporting": 2, + "messages": 6, + "such": 2, + "from": 6, + "bad": 2, + "database": 14, + "queries": 2, + "error_lang": 2, + "provide": 2, + "knop_lang": 8, + "object": 7, + "add": 12, + "localized": 2, + "any": 14, + "except": 2, + "knop_base": 8, + "html": 4, + "xhtml": 28, + "help": 10, + "nicely": 2, + "formatted": 2, + "output.": 2, + "Centralized": 2, + "error_code": 11, + "knop_base.": 2, + "Moved": 6, + "codes": 2, + "improve": 2, + "documentation.": 2, + "It": 2, + "always": 2, + "an": 8, + "list": 4, + "parameter.": 2, + "trace": 2, + "tagtime": 4, + "was": 6, + "nav": 4, + "earlier": 2, + "varname": 4, + "retreive": 2, + "variable": 8, + "that": 18, + "stored": 2, + "in.": 2, + "automatically": 2, + "sense": 2, + "doctype": 6, + "exists": 2, + "buffer.": 2, + "The": 6, + "result": 6, + "performance.": 2, + "internal": 2, + "html.": 2, + "Introduced": 2, + "_knop_data": 10, + "general": 2, + "level": 2, + "caching": 2, + "between": 2, + "different": 2, + "objects.": 2, + "TODO": 2, + "option": 2, + "Google": 2, + "Code": 2, + "Wiki": 2, + "working": 2, + "properly": 4, + "run": 2, + "by": 12, + "atbegin": 2, + "handler": 2, + "explicitly": 2, + "*/": 2, + "array": 20, + "entire": 4, + "ms": 2, + "defined": 4, + "each": 8, + "instead": 4, + "avoid": 2, + "recursion": 2, + "properties": 4, + "params": 11, + "|": 13, + "#endslash": 10, + "#tags": 2, + "#t": 2, + "doesn": 4, + "t": 8, + "p": 2, + "n": 30, + "Parameters": 4, + "nParameters": 2, + "r": 8, + "Internal.": 2, + "Finds": 2, + "out": 2, + "used.": 2, + "Looks": 2, + "unless": 2, + "array.": 2, + "variable.": 2, + "Looking": 2, + "#params": 5, + "#xhtmlparam": 4, + "boolean": 4, + "plain": 2, + "#doctype": 4, + "copy": 4, + "standard": 2, + "code": 2, + "errors": 12, + "error_data": 12, + "form": 2, + "grid": 2, + "lang": 2, + "user": 4, + "#error_lang": 12, + "addlanguage": 4, + "strings": 6, + "@#errorcodes": 2, + "#error_lang_custom": 2, + "#custom_language": 10, + "once": 4, + "one": 2, + "key": 3, + "#custom_string": 4, + "#errorcodes": 4, + "#error_code": 10, + "message": 6, + "getstring": 2, + "literal": 3, + "test": 2, + "known": 2, + "lasso": 2, + "knop_timer": 2, + "knop_unique": 2, + "look": 2, + "#varname": 6, + "loop_abort": 2, + "tag_name": 2, + "#timer": 2, + "#trace": 4, + "merge": 2, + "#eol": 8, + "2010": 4, + "23": 4, + "Custom": 2, + "interact": 2, + "databases": 2, + "Supports": 4, + "both": 2, + "MySQL": 2, + "FileMaker": 2, + "datasources": 2, + "2012": 4, + "06": 2, + "10": 2, + "SP": 4, + "Fix": 2, + "decimal": 5, + "precision": 2, + "bug": 2, + "6": 2, + "0": 2, + "1": 2, + "renderfooter": 2, + "15": 2, + "Add": 2, + "support": 6, + "host": 6, + "Thanks": 2, + "Ric": 2, + "Lewis": 2, + "settable": 4, + "removed": 2, + "table": 6, + "nextrecord": 12, + "deprecation": 2, + "warning": 2, + "corrected": 2, + "verification": 2, + "index": 4, + "before": 4, + "calling": 2, + "resultset_count": 6, + "break": 2, + "versions": 2, + "fixed": 4, + "incorrect": 2, + "debug_trace": 2, + "addrecord": 4, + "how": 2, + "keyvalue": 10, + "returned": 6, + "adding": 2, + "records": 4, + "inserting": 2, + "generated": 2, + "suppressed": 2, + "specifying": 2, + "saverecord": 8, + "deleterecord": 4, + "case.": 2, + "recorddata": 6, + "no": 2, + "longer": 2, + "touch": 2, + "current_record": 2, + "zero": 2, + "access": 2, + "occurrence": 2, + "same": 4, + "returns": 4, + "knop_databaserows": 2, + "inlinename.": 4, + "next.": 2, + "remains": 2, + "supported": 2, + "backwards": 2, + "compatibility.": 2, + "resets": 2, + "record": 20, + "pointer": 8, + "reaching": 2, + "last": 4, + "honors": 2, + "incremented": 2, + "recordindex": 4, + "specific": 2, + "found.": 2, + "getrecord": 8, + "REALLY": 2, + "works": 4, + "keyvalues": 4, + "double": 2, + "oops": 4, + "I": 4, + "thought": 2, + "but": 2, + "misplaced": 2, + "paren...": 2, + "corresponding": 2, + "resultset": 2, + "...": 3, + "/resultset": 2, + "through": 2, + "handling": 2, + "better": 2, + "knop_user": 4, + "keeplock": 4, + "updates": 2, + "datatype": 2, + "knop_databaserow": 2, + "iterated.": 2, + "When": 2, + "iterating": 2, + "row": 2, + "values.": 2, + "Addedd": 2, + "increments": 2, + "recordpointer": 2, + "called": 2, + "until": 2, + "found": 5, + "set": 10, + "reached.": 2, + "Returns": 2, + "long": 2, + "there": 2, + "more": 2, + "records.": 2, + "Useful": 2, + "loop": 2, + "example": 2, + "below": 2, + "Implemented": 2, + ".": 5, + "reset": 2, + "query.": 2, + "shortcut": 2, + "Removed": 2, + "onassign": 2, + "touble": 2, + "Extended": 2, + "field_names": 2, + "names": 4, + "db": 2, + "objects": 2, + "never": 2, + "been": 2, + "optionally": 2, + "supports": 2, + "sql.": 2, + "Make": 2, + "sure": 2, + "SQL": 2, + "includes": 2, + "relevant": 2, + "keyfield": 4, + "lockfield": 2, + "locking": 4, + "capturesearchvars": 2, + "mysteriously": 2, + "after": 2, + "operations": 2, + "caused": 2, + "errors.": 2, + "flag": 2, + "save": 2, + "locked": 2, + "releasing": 2, + "Adding": 2, + "progress.": 2, + "Done": 2, + "oncreate": 2, + "getrecord.": 2, + "documentation": 2, + "most": 2, + "existing": 2, + "it.": 2, + "Faster": 2, + "than": 2, + "scratch.": 2, + "shown_first": 2, + "again": 2, + "hoping": 2, + "s": 2, + "only": 2, + "captured": 2, + "update": 2, + "uselimit": 2, + "querys": 2, + "LIMIT": 2, + "still": 2, + "gets": 2, + "proper": 2, + "searchresult": 2, + "separate": 2, + "COUNT": 2, + "define": 20, + "trait_json_serialize": 2, + "trait": 1, + "{": 18, + "require": 1, + "asString": 3, + "}": 18, + "json_serialize": 18, + "e": 13, + "bytes": 8, + "#e": 13, + "Replace": 19, + "&": 21, + "json_literal": 1, + "asstring": 4, + "gmt": 1, + "trait_forEach": 1, + "delimit": 7, + "foreach": 1, + "#delimit": 7, + "#1": 3, + "pr": 1, + "eachPair": 1, + "select": 1, + "#pr": 2, + "json_object": 2, + "foreachpair": 1, + "serialize": 1, + "json_consume_string": 3, + "ibytes": 9, + "obytes": 3, + "temp": 12, + "#temp": 19, + "#ibytes": 17, + "export8bits": 6, + "#obytes": 5, + "import8bits": 4, + "Escape": 1, + "unescape": 1, + "//Replace": 1, + "BeginsWith": 1, + "EndsWith": 1, + "Protect": 1, + "serialization_reader": 1, + "xml": 1, + "read": 1, + "/Protect": 1, + "regexp": 1, + "d": 2, + "T": 3, + "Z": 1, + "matches": 1, + "Format": 1, + "yyyyMMdd": 2, + "HHmmssZ": 1, + "HHmmss": 1, + "json_consume_token": 2, + "marker": 4, + "Is": 1, + "end": 2, + "token": 1, + "//............................................................................": 2, + "string_IsNumeric": 1, + "json_consume_array": 3, + "While": 1, + "If": 4, + "Discard": 1, + "Else": 7, + "#key": 12, + "json_consume_object": 2, + "Loop_Abort": 1, + "/If": 3, + "/While": 1, + "Find": 3, + "Return": 7, + "Second": 1, + "json_deserialize": 1, + "removeLeading": 1, + "bom_utf8": 1, + "Reset": 1, + "on": 1, + "provided": 1, + "**/": 1, + "public": 1, + "onCreate": 1, + "..onCreate": 1, + "#rest": 1, + "json_rpccall": 1, + "#id": 2, + "#host": 4, + "Lasso_UniqueID": 1, + "Decode_JSON": 2, + "Include_URL": 1, + "PostParams": 1, + "Encode_JSON": 1, + "Map": 3, + "#method": 1, + "LassoScript": 1, + "JSON": 2, + "Encoding": 1, + "Decoding": 1, + "Copyright": 1, + "LassoSoft": 1, + "Inc.": 1, + "": 1, + "": 1, + "": 1, + "incorporated": 1, + "Lasso_TagExists": 1, + "False": 1, + "Define_Tag": 1, + "Namespace": 1, + "Required": 1, + "Optional": 1, + "f": 2, + "b": 2, + "newoptions": 1, + "options": 2, + "queue": 2, + "priorityqueue": 2, + "stack": 2, + "pair": 1, + "client_ip": 1, + "client_address": 1, + "__jsonclass__": 6, + "deserialize": 2, + "": 3, + "": 3, + "Decode_": 1, + "consume_string": 1, + "unescapes": 1, + "u": 1, + "UTF": 4, + "QT": 4, + "TZ": 2, + "consume_token": 1, + "consume_array": 1, + "consume_object": 1, + "val": 1, + "native": 2, + "comment": 2, + "//www.lassosoft.com/json": 1, + "Literal": 2, + "String": 1, + "Object": 2, + "JSON_RPCCall": 1, + "RPCCall": 1, + "JSON_": 1, + "//localhost/lassoapps.8/rpc/rpc.lasso": 1, + "request": 2, + "JSON_Records": 3, + "KeyField": 1, + "ReturnField": 1, + "ExcludeField": 1, + "Fields": 1, + "_fields": 1, + "fields": 2, + "No": 1, + "_keyfield": 4, + "ID": 1, + "_index": 1, + "_return": 1, + "returnfield": 1, + "_exclude": 1, + "excludefield": 1, + "_records": 1, + "_record": 1, + "_temp": 1, + "_field": 1, + "_output": 1, + "rows": 1, + "#_records": 1, + "@#_output": 1, + "/Define_Tag": 1 + }, + "Max": { + "max": 1, + "v2": 1, + ";": 39, + "#N": 2, + "vpatcher": 1, + "#P": 33, + "toggle": 1, + "button": 4, + "window": 2, + "setfont": 1, + "Verdana": 1, + "linecount": 1, + "newex": 8, + "r": 1, + "jojo": 2, + "#B": 2, + "color": 2, + "s": 1, + "route": 1, + "append": 1, + "toto": 1, + "%": 1, + "counter": 2, + "#X": 1, + "flags": 1, + "newobj": 1, + "metro": 1, + "t": 2, + "message": 2, + "Goodbye": 1, + "World": 2, + "Hello": 1, + "connect": 13, + "fasten": 1, + "pop": 1, + "{": 126, + "}": 126, + "[": 163, + "]": 163 + }, + "Awk": { + "SHEBANG#!awk": 1, + "BEGIN": 1, + "{": 17, + "n": 13, + ";": 55, + "printf": 1, + "network_max_bandwidth_in_byte": 3, + "network_max_packet_per_second": 3, + "last3": 3, + "last4": 3, + "last5": 3, + "last6": 3, + "}": 17, + "if": 14, + "(": 14, + "/Average/": 1, + ")": 14, + "#": 48, + "Skip": 1, + "the": 12, + "Average": 1, + "values": 1, + "next": 1, + "/all/": 1, + "This": 8, + "is": 7, + "cpu": 1, + "info": 7, + "print": 35, + "FILENAME": 35, + "-": 2, + "/eth0/": 1, + "eth0": 1, + "network": 1, + "Total": 9, + "number": 9, + "of": 22, + "packets": 4, + "received": 4, + "per": 14, + "second.": 8, + "else": 4, + "transmitted": 4, + "bytes": 4, + "/proc": 1, + "|": 4, + "cswch": 1, + "tps": 1, + "kbmemfree": 1, + "totsck/": 1, + "/": 2, + "[": 1, + "]": 1, + "proc/s": 1, + "context": 1, + "switches": 1, + "second": 6, + "disk": 1, + "total": 1, + "transfers": 1, + "read": 1, + "requests": 2, + "write": 1, + "block": 2, + "reads": 1, + "writes": 1, + "mem": 1, + "Amount": 7, + "free": 2, + "memory": 6, + "available": 1, + "in": 11, + "kilobytes.": 7, + "used": 8, + "does": 1, + "not": 1, + "take": 1, + "into": 1, + "account": 1, + "by": 4, + "kernel": 3, + "itself.": 1, + "Percentage": 2, + "memory.": 1, + "X": 1, + "shared": 1, + "system": 1, + "Always": 1, + "zero": 1, + "with": 1, + "kernels.": 1, + "as": 1, + "buffers": 1, + "to": 1, + "cache": 1, + "data": 1, + "swap": 3, + "space": 2, + "space.": 1, + "socket": 1, + "sockets.": 1, + "Number": 4, + "TCP": 1, + "sockets": 3, + "currently": 4, + "use.": 4, + "UDP": 1, + "RAW": 1, + "IP": 1, + "fragments": 1, + "END": 1 + }, + "JavaScript": { + "(": 8518, + "function": 1212, + "window": 18, + "angular": 1, + ")": 8526, + "{": 2738, + "Array.prototype.last": 1, + "return": 945, + "this": 578, + "[": 1461, + "this.length": 41, + "-": 706, + "]": 1458, + ";": 4056, + "}": 2714, + "var": 911, + "app": 3, + "angular.module": 1, + "JSON": 5, + "if": 1230, + "f": 666, + "n": 874, + "<": 209, + "+": 1135, + "typeof": 132, + "Date.prototype.toJSON": 2, + "key": 85, + "isFinite": 1, + "this.valueOf": 2, + "this.getUTCFullYear": 1, + "this.getUTCMonth": 1, + "this.getUTCDate": 1, + "this.getUTCHours": 1, + "this.getUTCMinutes": 1, + "this.getUTCSeconds": 1, + "null": 427, + "String.prototype.toJSON": 1, + "Number.prototype.toJSON": 1, + "Boolean.prototype.toJSON": 1, + "cx": 2, + "/": 290, + "u0000": 1, + "u00ad": 1, + "u0600": 1, + "u0604": 1, + "u070f": 1, + "u17b4": 1, + "u17b5": 1, + "u200c": 1, + "u200f": 1, + "u2028": 3, + "u202f": 1, + "u2060": 1, + "u206f": 1, + "ufeff": 1, + "ufff0": 1, + "uffff": 1, + "/g": 37, + "escapable": 1, + "b": 961, + "t": 436, + "r": 261, + "object": 59, + "string": 41, + "number": 13, + "boolean": 8, + "Array": 3, + "JSON.stringify": 4, + "u": 304, + "/bfnrt": 1, + "|": 206, + "a": 1489, + "fA": 2, + "F": 8, + ".replace": 38, + "*": 70, + "JSON.parse": 1, + "PUT": 1, + "DELETE": 1, + "all": 16, + "change": 16, + "id": 38, + "_id": 1, + "error": 20, + "Can": 2, + "add": 15, + "remove": 9, + "s": 290, + "ties": 1, + "to": 92, + "collection.": 1, + "_removeReference": 1, + "model": 14, + "model.collection": 2, + "delete": 39, + "model.unbind": 1, + "this._onModelEvent": 1, + "_onModelEvent": 1, + "ev": 5, + "collection": 3, + "options": 56, + "||": 648, + "&&": 1017, + "this._remove": 1, + "model.idAttribute": 2, + "this._byId": 2, + "model.previous": 1, + "model.id": 1, + "this.trigger.apply": 2, + "arguments": 83, + "methods": 8, + "_.each": 1, + "method": 30, + "Backbone.Collection.prototype": 1, + "_": 9, + ".apply": 7, + "this.models": 1, + ".concat": 3, + "_.toArray": 1, + "Backbone.Router": 1, + "options.routes": 2, + "this.routes": 4, + "this._bindRoutes": 1, + "this.initialize.apply": 2, + "namedParam": 2, + "w": 110, + "d": 771, + "splatParam": 2, + "escapeRegExp": 2, + ".": 91, + "#": 13, + "_.extend": 9, + "Backbone.Router.prototype": 1, + "Backbone.Events": 2, + "initialize": 3, + "//": 410, + "route": 18, + "name": 161, + "callback": 23, + "Backbone.history": 2, + "new": 86, + "Backbone.History": 2, + "_.isRegExp": 1, + "this._routeToRegExp": 1, + "Backbone.history.route": 1, + "_.bind": 2, + "fragment": 27, + "args": 31, + "this._extractParameters": 1, + "callback.apply": 1, + "navigate": 2, + "triggerRoute": 4, + "Backbone.history.navigate": 1, + "_bindRoutes": 1, + "routes": 4, + "for": 262, + "in": 170, + "routes.unshift": 1, + "i": 853, + "l": 312, + "routes.length": 1, + "this.route": 1, + "_routeToRegExp": 1, + "route.replace": 1, + "RegExp": 12, + "_extractParameters": 1, + "route.exec": 1, + ".slice": 6, + "this.handlers": 2, + "_.bindAll": 1, + "hashStrip": 4, + "#*": 1, + "isExplorer": 1, + "/msie": 1, + "w.": 17, + "historyStarted": 3, + "false": 142, + "Backbone.History.prototype": 1, + "interval": 3, + "getFragment": 1, + "forcePushState": 2, + "this._hasPushState": 6, + "window.location.pathname": 1, + "search": 5, + "window.location.search": 1, + "fragment.indexOf": 1, + "this.options.root": 6, + "fragment.substr": 1, + "this.options.root.length": 1, + "else": 307, + "window.location.hash": 3, + "fragment.replace": 1, + "start": 20, + "throw": 27, + "Error": 16, + "this.options": 6, + "root": 5, + "this._wantsPushState": 3, + "this.options.pushState": 2, + "window.history": 2, + "window.history.pushState": 2, + "this.getFragment": 6, + "docMode": 3, + "document.documentMode": 3, + "oldIE": 3, + "isExplorer.exec": 1, + "navigator.userAgent.toLowerCase": 1, + "this.iframe": 4, + ".hide": 2, + ".appendTo": 2, + ".contentWindow": 1, + "this.navigate": 2, + ".bind": 3, + "this.checkUrl": 3, + "setInterval": 6, + "this.interval": 1, + "this.fragment": 13, + "true": 147, + "loc": 2, + "window.location": 5, + "atRoot": 3, + "loc.pathname": 1, + "loc.hash": 1, + "loc.hash.replace": 1, + "window.history.replaceState": 1, + "document.title": 2, + "loc.protocol": 2, + "loc.host": 2, + "this.loadUrl": 4, + "this.handlers.unshift": 1, + "checkUrl": 1, + "e": 663, + "current": 7, + "this.iframe.location.hash": 3, + "decodeURIComponent": 2, + "loadUrl": 1, + "fragmentOverride": 2, + "matched": 2, + "_.any": 1, + "handler": 14, + "handler.route.test": 1, + "handler.callback": 1, + "frag": 13, + "frag.indexOf": 1, + "this.iframe.document.open": 1, + ".close": 1, + "Backbone.View": 1, + "this.cid": 3, + "_.uniqueId": 1, + "this._configure": 1, + "this._ensureElement": 1, + "this.delegateEvents": 1, + "selectorDelegate": 2, + "selector": 40, + "this.el": 10, + "eventSplitter": 2, + "S": 8, + "s*": 15, + ".*": 20, + "viewOptions": 2, + "Backbone.View.prototype": 1, + "tagName": 3, + "render": 1, + ".remove": 2, + "make": 2, + "attributes": 14, + "content": 5, + "el": 4, + "document.createElement": 26, + ".attr": 1, + ".html": 1, + "delegateEvents": 1, + "events": 18, + "this.events": 1, + ".unbind": 4, + "match": 30, + "key.match": 1, + "eventName": 21, + ".delegate": 2, + "_configure": 1, + "viewOptions.length": 1, + "attr": 13, + "_ensureElement": 1, + "attrs": 6, + "this.attributes": 1, + "this.id": 2, + "attrs.id": 1, + "this.className": 10, + "this.make": 1, + "this.tagName": 1, + "_.isString": 1, + ".get": 3, + "extend": 13, + "protoProps": 6, + "classProps": 2, + "child": 17, + "inherits": 2, + "child.extend": 1, + "this.extend": 1, + "Backbone.Model.extend": 1, + "Backbone.Collection.extend": 1, + "Backbone.Router.extend": 1, + "Backbone.View.extend": 1, + "methodMap": 2, + "Backbone.sync": 1, + "type": 49, + "params": 2, + "dataType": 6, + "processData": 3, + "params.url": 2, + "getUrl": 2, + "urlError": 2, + "params.data": 5, + "params.contentType": 2, + "model.toJSON": 1, + "Backbone.emulateJSON": 2, + "params.processData": 1, + "Backbone.emulateHTTP": 1, + "params.data._method": 1, + "params.type": 1, + "params.beforeSend": 1, + "xhr": 1, + "xhr.setRequestHeader": 1, + ".ajax": 1, + "ctor": 6, + "parent": 15, + "staticProps": 3, + "protoProps.hasOwnProperty": 1, + "protoProps.constructor": 1, + "parent.apply": 1, + "ctor.prototype": 3, + "parent.prototype": 6, + "child.prototype": 4, + "child.prototype.constructor": 1, + "child.__super__": 3, + "object.url": 4, + "_.isFunction": 1, + "wrapError": 1, + "onError": 3, + "resp": 3, + "model.trigger": 1, + "escapeHTML": 1, + "string.replace": 1, + "&": 13, + "#x": 1, + "da": 1, + "/gi": 2, + "": 1, + "lt": 55, + "replace": 8, + "#x27": 1, + "#x2F": 1, + ".call": 10, + "undefined": 328, + "document": 26, + "window.document": 2, + "navigator": 3, + "window.navigator": 2, + "location": 2, + "jQuery": 48, + "context": 48, + "The": 9, + "is": 67, + "actually": 2, + "just": 2, + "the": 107, + "init": 7, + "constructor": 8, + "jQuery.fn.init": 2, + "rootjQuery": 8, + "Map": 4, + "over": 7, + "case": 136, + "of": 28, + "overwrite": 4, + "_jQuery": 4, + "window.jQuery": 7, + "window.": 6, + "A": 24, + "central": 2, + "reference": 5, + "simple": 3, + "way": 2, + "check": 8, + "HTML": 9, + "strings": 8, + "or": 38, + "ID": 8, + "Prioritize": 1, + "#id": 3, + "": 1, + "avoid": 5, + "XSS": 1, + "via": 2, + "location.hash": 1, + "#9521": 1, + "quickExpr": 2, + "<[\\w\\W]+>": 4, + "Check": 10, + "has": 9, + "non": 8, + "whitespace": 7, + "character": 3, + "it": 112, + "rnotwhite": 2, + "S/": 4, + "Used": 3, + "trimming": 2, + "trimLeft": 4, + "trimRight": 4, + "Match": 3, + "standalone": 2, + "tag": 2, + "rsingleTag": 2, + "<(\\w+)\\s*\\/?>": 4, + "<\\/\\1>": 4, + "rvalidchars": 2, + "rvalidescape": 2, + "d*": 8, + "eE": 4, + "rvalidbraces": 2, + "Useragent": 2, + "rwebkit": 2, + "webkit": 6, + "ropera": 2, + "opera": 4, + ".*version": 4, + "rmsie": 2, + "msie": 4, + "rmozilla": 2, + "mozilla": 4, + "rv": 4, + "Matches": 1, + "dashed": 1, + "camelizing": 1, + "rdashAlpha": 1, + "z": 21, + "/ig": 3, + "rmsPrefix": 1, + "ms": 2, + "by": 12, + "jQuery.camelCase": 6, + "as": 11, + "fcamelCase": 1, + "letter": 3, + ".toUpperCase": 3, + "Keep": 2, + "UserAgent": 2, + "use": 10, + "with": 18, + "jQuery.browser": 4, + "userAgent": 3, + "navigator.userAgent": 3, + "For": 5, + "matching": 3, + "engine": 2, + "and": 42, + "version": 10, + "browser": 11, + "browserMatch": 3, + "deferred": 25, + "used": 13, + "on": 37, + "DOM": 21, + "ready": 31, + "readyList": 6, + "event": 31, + "DOMContentLoaded": 14, + "Save": 2, + "some": 2, + "core": 2, + "toString": 4, + "Object.prototype.toString": 7, + "hasOwn": 2, + "Object.prototype.hasOwnProperty": 6, + "push": 11, + "Array.prototype.push": 4, + "slice": 10, + "Array.prototype.slice": 6, + "trim": 5, + "String.prototype.trim": 3, + "indexOf": 5, + "Array.prototype.indexOf": 4, + "Class": 2, + "pairs": 2, + "class2type": 3, + "jQuery.fn": 4, + "jQuery.prototype": 2, + "elem": 101, + "ret": 62, + "doc": 4, + "Handle": 14, + "DOMElement": 2, + "selector.nodeType": 2, + "this.context": 17, + "body": 22, + "element": 19, + "only": 10, + "exists": 9, + "once": 4, + "optimize": 3, + "finding": 2, + "document.body": 8, + "this.selector": 16, + "Are": 2, + "we": 25, + "dealing": 2, + "an": 12, + "selector.charAt": 4, + "selector.length": 4, + "Assume": 2, + "that": 33, + "end": 14, + "are": 18, + "skip": 5, + "regex": 3, + "quickExpr.exec": 2, + "Verify": 3, + "no": 19, + "was": 6, + "specified": 4, + "HANDLE": 2, + "html": 10, + "array": 7, + "instanceof": 19, + "context.ownerDocument": 2, + "If": 21, + "single": 2, + "passed": 5, + "clean": 3, + "not": 26, + "like": 5, + "method.": 3, + "sort": 4, + ".sort": 9, + "splice": 5, + ".splice": 5, + "jQuery.fn.init.prototype": 2, + "jQuery.extend": 11, + "jQuery.fn.extend": 4, + "src": 7, + "copy": 16, + "copyIsArray": 2, + "clone": 5, + "target": 44, + "length": 48, + "arguments.length": 18, + "deep": 12, + "situation": 2, + "when": 20, + "something": 3, + "possible": 3, + "jQuery.isFunction": 6, + "itself": 4, + "one": 15, + "argument": 2, + "Only": 5, + "deal": 2, + "null/undefined": 2, + "values": 10, + "Extend": 2, + "base": 2, + "Prevent": 2, + "never": 2, + "ending": 2, + "loop": 7, + "continue": 18, + "Recurse": 2, + "bring": 2, + "Return": 2, + "modified": 3, + "noConflict": 4, + "Is": 2, + "be": 12, + "Set": 4, + "occurs.": 2, + "isReady": 5, + "counter": 2, + "track": 2, + "how": 2, + "many": 3, + "items": 2, + "wait": 12, + "before": 8, + "fires.": 2, + "See": 9, + "#6781": 2, + "readyWait": 6, + "Hold": 2, + "release": 2, + "holdReady": 3, + "hold": 6, + "jQuery.readyWait": 6, + "jQuery.ready": 16, + "Either": 2, + "released": 2, + "DOMready/load": 2, + "yet": 2, + "jQuery.isReady": 6, + "Make": 17, + "sure": 18, + "at": 58, + "least": 4, + "IE": 28, + "gets": 6, + "little": 4, + "overzealous": 4, + "ticket": 4, + "#5443": 4, + "setTimeout": 19, + "Remember": 2, + "normal": 2, + "Ready": 2, + "fired": 12, + "decrement": 2, + "need": 10, + "there": 6, + "functions": 6, + "bound": 8, + "execute": 4, + "readyList.fireWith": 1, + "Trigger": 2, + "any": 12, + "jQuery.fn.trigger": 2, + ".trigger": 3, + ".off": 1, + "bindReady": 5, + "jQuery.Callbacks": 2, + "Catch": 2, + "cases": 4, + "where": 2, + ".ready": 2, + "called": 2, + "after": 7, + "already": 6, + "occurred.": 2, + "document.readyState": 4, + "asynchronously": 2, + "allow": 6, + "scripts": 2, + "opportunity": 2, + "delay": 4, + "Mozilla": 2, + "Opera": 2, + "nightlies": 3, + "currently": 4, + "support": 13, + "document.addEventListener": 6, + "Use": 7, + "handy": 2, + "fallback": 4, + "window.onload": 4, + "will": 7, + "always": 6, + "work": 6, + "window.addEventListener": 2, + "document.attachEvent": 6, + "ensure": 2, + "firing": 16, + "onload": 2, + "maybe": 2, + "late": 2, + "but": 4, + "safe": 3, + "also": 5, + "iframes": 2, + "window.attachEvent": 2, + "frame": 23, + "continually": 2, + "see": 6, + "toplevel": 7, + "try": 44, + "window.frameElement": 2, + "catch": 38, + "document.documentElement.doScroll": 4, + "doScrollCheck": 6, + "test/unit/core.js": 2, + "details": 3, + "concerning": 2, + "isFunction.": 2, + "Since": 3, + "alert": 11, + "aren": 5, + "pass": 7, + "through": 3, + "well": 2, + "obj": 40, + "jQuery.type": 4, + "obj.nodeType": 2, + "jQuery.isWindow": 2, + "Not": 4, + "own": 4, + "property": 15, + "must": 4, + "Object": 4, + "obj.constructor": 2, + "hasOwn.call": 6, + "obj.constructor.prototype": 2, + "IE8": 2, + "Will": 2, + "exceptions": 2, + "certain": 2, + "host": 29, + "objects": 7, + "#9897": 1, + "Own": 2, + "properties": 7, + "enumerated": 2, + "firstly": 2, + "so": 8, + "speed": 4, + "up": 4, + "last": 6, + "then": 8, + "own.": 2, + "isEmptyObject": 7, + "msg": 4, + "parseJSON": 4, + "data": 145, + "leading/trailing": 2, + "removed": 3, + "can": 10, + "access": 2, + "elems": 9, + "fn": 14, + "value": 98, + "chainable": 4, + "emptyGet": 3, + "exec": 8, + "bulk": 3, + "elems.length": 1, + "Sets": 3, + "jQuery.access": 2, + "Optionally": 1, + "get": 24, + "executed": 1, + "Bulk": 1, + "operations": 1, + "iterate": 1, + "executing": 1, + "exec.call": 1, + "Otherwise": 2, + "they": 2, + "run": 1, + "against": 1, + "entire": 1, + "set": 22, + "fn.call": 2, + "value.call": 1, + "Gets": 2, + "now": 5, + "Date": 4, + ".getTime": 3, + "frowned": 1, + "upon.": 1, + "More": 1, + "http": 6, + "//docs.jquery.com/Utilities/jQuery.browser": 1, + "uaMatch": 3, + "ua": 6, + "ua.toLowerCase": 1, + "rwebkit.exec": 1, + "ropera.exec": 1, + "rmsie.exec": 1, + "ua.indexOf": 1, + "rmozilla.exec": 1, + "sub": 4, + "jQuerySub": 7, + "jQuerySub.fn.init": 2, + "jQuerySub.superclass": 1, + "jQuerySub.fn": 2, + "jQuerySub.prototype": 1, + "jQuerySub.fn.constructor": 1, + "jQuerySub.sub": 1, + "this.sub": 2, + "jQuery.fn.init.call": 1, + "rootjQuerySub": 2, + "jQuerySub.fn.init.prototype": 1, + "jQuery.each": 2, + ".split": 19, + "name.toLowerCase": 6, + "jQuery.uaMatch": 1, + "browserMatch.browser": 2, + "jQuery.browser.version": 1, + "browserMatch.version": 1, + "jQuery.browser.webkit": 1, + "jQuery.browser.safari": 1, + "rnotwhite.test": 2, + "xA0": 7, + "document.removeEventListener": 2, + "document.detachEvent": 2, + "trick": 2, + "Diego": 2, + "Perini": 2, + "//javascript.nwbox.com/IEContentLoaded/": 2, + "waiting": 2, + "flagsCache": 3, + "createFlags": 2, + "flags": 13, + "flags.split": 1, + "flags.length": 1, + "Convert": 1, + "from": 7, + "String": 2, + "formatted": 2, + "cache": 45, + "first": 10, + "Actual": 2, + "list": 21, + "Stack": 1, + "fire": 4, + "calls": 1, + "repeatable": 1, + "lists": 2, + "stack": 2, + "Last": 2, + "forgettable": 1, + "memory": 8, + "Flag": 2, + "know": 3, + "First": 3, + "internally": 5, + "fireWith": 1, + "firingStart": 3, + "End": 1, + "firingLength": 4, + "Index": 1, + "needed": 2, + "firingIndex": 5, + "Add": 4, + "several": 1, + "callbacks": 10, + "actual": 1, + "args.length": 3, + "Inspect": 1, + "recursively": 1, + "unique": 2, + "mode": 1, + "flags.unique": 1, + "self.has": 1, + "list.push": 1, + "Fire": 1, + "flags.memory": 1, + "list.length": 5, + "flags.stopOnFalse": 1, + "Mark": 1, + "halted": 1, + "break": 111, + "flags.once": 1, + "stack.length": 1, + "stack.shift": 1, + "self.fireWith": 1, + "self.disable": 1, + "Callbacks": 1, + "self": 17, + "Do": 2, + "batch": 2, + "With": 1, + "/a": 1, + "top": 12, + "px": 31, + "float": 3, + "left": 14, + "opacity": 13, + ".55": 1, + "checkbox": 14, + "basic": 1, + "test": 21, + "all.length": 1, + "supports": 2, + "tests": 48, + "select": 20, + "opt": 2, + "select.appendChild": 1, + "input": 25, + "div.getElementsByTagName": 6, + "strips": 1, + "leading": 1, + ".innerHTML": 3, + "leadingWhitespace": 3, + "div.firstChild.nodeType": 1, + "tbody": 7, + "elements": 9, + "manipulated": 1, + "normalizes": 1, + "default": 21, + "hrefNormalized": 3, + "a.getAttribute": 11, + "uses": 3, + "filter": 10, + "instead": 6, + "around": 1, + "WebKit": 9, + "issue.": 1, + "#5145": 1, + "/.test": 19, + "a.style.opacity": 2, + "style": 30, + "existence": 1, + "styleFloat": 1, + "cssFloat": 4, + "a.style.cssFloat": 1, + "defaults": 3, + "checkOn": 4, + "input.value": 5, + "selected": 5, + "option": 12, + "working": 1, + "property.": 1, + "too": 1, + "marked": 1, + "disabled": 11, + "marks": 1, + "them": 3, + "select.disabled": 1, + "support.optDisabled": 1, + "opt.disabled": 1, + "Test": 3, + "handlers": 1, + "does": 9, + "support.noCloneEvent": 1, + "div.cloneNode": 1, + ".fireEvent": 3, + "radio": 17, + "maintains": 1, + "its": 2, + "being": 2, + "appended": 2, + "input.setAttribute": 5, + "support.radioValue": 2, + "#11217": 1, + "loses": 1, + "checked": 4, + "attribute": 5, + "div.appendChild": 4, + "document.createDocumentFragment": 3, + "fragment.appendChild": 2, + "div.lastChild": 1, + "doesn": 2, + "have": 6, + "conMarginTop": 3, + "paddingMarginBorder": 5, + "positionTopLeftWidthHeight": 3, + "paddingMarginBorderVisibility": 3, + "container": 4, + "container.style.cssText": 1, + "body.insertBefore": 1, + "body.firstChild": 1, + "Construct": 1, + "div": 28, + "container.appendChild": 1, + "table": 6, + "cells": 3, + "still": 4, + "offsetWidth/Height": 3, + "display": 7, + "none": 4, + "other": 3, + "visible": 1, + "row": 1, + "reliable": 1, + "determining": 3, + "been": 5, + "hidden": 12, + "directly": 2, + "using": 5, + "offsets": 1, + "don": 5, + "safety": 1, + "goggles": 1, + "bug": 3, + "#4512": 1, + "more": 6, + "information": 5, + "fails": 2, + "div.innerHTML": 7, + "tds": 6, + "isSupported": 7, + ".offsetHeight": 4, + ".style.display": 5, + "empty": 3, + "fail": 10, + "support.reliableHiddenOffsets": 1, + "explicit": 1, + "width": 32, + "margin": 8, + "right": 3, + "incorrectly": 1, + "computed": 1, + "based": 1, + "container.": 1, + "info": 2, + "#3333": 1, + "Fails": 2, + "Feb": 1, + "Bug": 1, + "getComputedStyle": 3, + "returns": 1, + "wrong": 1, + "window.getComputedStyle": 6, + "marginDiv": 5, + "marginDiv.style.width": 1, + "marginDiv.style.marginRight": 1, + "div.style.width": 2, + "support.reliableMarginRight": 1, + "parseInt": 12, + "marginRight": 2, + ".marginRight": 2, + "div.style.zoom": 2, + "natively": 1, + "block": 4, + "level": 3, + "act": 1, + "inline": 3, + "setting": 2, + "their": 3, + "giving": 1, + "layout": 2, + "div.style.padding": 1, + "div.style.border": 1, + "div.style.overflow": 2, + "div.style.display": 2, + "support.inlineBlockNeedsLayout": 1, + "div.offsetWidth": 2, + "shrink": 1, + "wrap": 2, + "children": 3, + "support.shrinkWrapBlocks": 1, + "div.style.cssText": 1, + "outer": 2, + "div.firstChild": 3, + "inner": 2, + "outer.firstChild": 1, + "td": 3, + "outer.nextSibling.firstChild.firstChild": 1, + "offsetSupport": 2, + "doesNotAddBorder": 1, + "inner.offsetTop": 4, + "doesAddBorderForTableAndCells": 1, + "td.offsetTop": 1, + "inner.style.position": 2, + "inner.style.top": 2, + "safari": 1, + "subtracts": 1, + "border": 7, + "here": 1, + "which": 8, + "offsetSupport.fixedPosition": 1, + "outer.style.overflow": 1, + "outer.style.position": 1, + "offsetSupport.subtractsBorderForOverflowNotVisible": 1, + "offsetSupport.doesNotIncludeMarginInBodyOffset": 1, + "body.offsetTop": 1, + "div.style.marginTop": 1, + "support.pixelMargin": 1, + "marginTop": 3, + ".marginTop": 1, + "container.style.zoom": 2, + "body.removeChild": 1, + "rbrace": 1, + "rmultiDash": 3, + "Z": 6, + "Please": 1, + "caution": 1, + "uuid": 2, + "Unique": 1, + "each": 17, + "page": 1, + "Non": 3, + "digits": 3, + "rinlinejQuery": 1, + "expando": 14, + "jQuery.fn.jquery": 1, + "Math.random": 2, + "D/g": 2, + "following": 1, + "uncatchable": 1, + "you": 1, + "attempt": 2, + "them.": 1, + "noData": 3, + "Ban": 1, + "except": 1, + "Flash": 1, + "handle": 15, + "expandos": 2, + "hasData": 2, + "elem.nodeType": 8, + "jQuery.cache": 3, + "jQuery.expando": 12, + "isEmptyDataObject": 3, + "pvt": 8, + "jQuery.acceptData": 2, + "privateCache": 1, + "thisCache": 15, + "internalKey": 12, + "getByName": 3, + "We": 6, + "nodes": 14, + "JS": 7, + "differently": 1, + "because": 1, + "IE6": 1, + "internal": 8, + "order": 1, + "collisions": 1, + "between": 1, + "user": 1, + "defined": 3, + "data.": 1, + "thisCache.data": 3, + "Users": 1, + "should": 1, + "inspect": 1, + "jQuery.data": 15, + "undocumented": 1, + "subject": 1, + "change.": 1, + "But": 1, + "anyone": 1, + "listen": 1, + "No.": 1, + "isEvents": 1, + "privateCache.events": 1, + "both": 2, + "converted": 2, + "camel": 2, + "names": 2, + "Try": 4, + "find": 7, + "camelCased": 1, + "removeData": 8, + "Reference": 1, + "isNode": 11, + "entry": 1, + "purpose": 1, + "continuing": 1, + ".data": 3, + "Support": 1, + "space": 1, + "separated": 1, + "keys": 11, + "jQuery.isArray": 1, + "manipulation": 1, + "split": 4, + "cased": 1, + "spaces": 3, + "unless": 2, + "name.split": 1, + "name.length": 1, + "want": 1, + "let": 1, + "destroyed": 2, + "jQuery.isEmptyObject": 1, + "Don": 1, + "care": 1, + "Ensure": 1, + "#10080": 1, + "jQuery.support.deleteExpando": 3, + "cache.setInterval": 1, + "eliminate": 2, + "node": 23, + "lookups": 2, + "entries": 2, + "longer": 2, + "exist": 2, + "us": 2, + "nor": 2, + "removeAttribute": 3, + "Document": 2, + "these": 2, + "elem.removeAttribute": 6, + "only.": 2, + "_data": 3, + "acceptData": 3, + "elem.nodeName": 2, + "jQuery.noData": 2, + "elem.nodeName.toLowerCase": 2, + "elem.getAttribute": 7, + "parts": 28, + "part": 8, + "jQuery._data": 2, + "elem.attributes": 1, + "attr.length": 2, + ".name": 3, + "name.indexOf": 2, + "name.substring": 2, + "dataAttr": 6, + "multiple": 7, + "this.each": 42, + "key.split": 2, + "this.triggerHandler": 6, + "fetch": 4, + "stored": 4, + "this.data": 5, + "self.triggerHandler": 2, + "jQuery.removeData": 2, + "nothing": 2, + "found": 10, + "HTML5": 3, + "key.replace": 2, + ".toLowerCase": 7, + "jQuery.isNumeric": 1, + "rbrace.test": 2, + "jQuery.parseJSON": 2, + "isn": 2, + "optgroup": 5, + "option.selected": 2, + "jQuery.support.optDisabled": 2, + "option.disabled": 2, + "option.getAttribute": 2, + "option.parentNode.disabled": 2, + "jQuery.nodeName": 3, + "option.parentNode": 2, + "Get": 4, + "specific": 2, + ".val": 5, + "get/set": 2, + "text": 14, + "comment": 3, + "nType": 8, + "jQuery.attrFn": 2, + "Fallback": 2, + "prop": 24, + "supported": 2, + "jQuery.prop": 2, + "notxml": 8, + "jQuery.isXMLDoc": 2, + "All": 1, + "lowercase": 1, + "Grab": 1, + "necessary": 1, + "hook": 1, + "hooks": 14, + "jQuery.attrHooks": 2, + "rboolean.test": 4, + "boolHook": 3, + "nodeHook": 1, + "jQuery.removeAttr": 2, + "hooks.set": 2, + "elem.setAttribute": 2, + "hooks.get": 2, + "existent": 2, + "normalize": 2, + "removeAttr": 5, + "propName": 8, + "attrNames": 3, + "isBool": 4, + "value.toLowerCase": 2, + "rspace": 1, + "attrNames.length": 1, + "jQuery.propFix": 2, + "#9699": 1, + "explanation": 1, + "approach": 1, + "removal": 1, + "do": 15, + "#10870": 1, + "jQuery.attr": 2, + "getSetAttribute": 3, + "corresponding": 2, + "attrHooks": 3, + "changed": 3, + "button": 24, + "tabIndex": 4, + "readOnly": 2, + "htmlFor": 2, + "class": 5, + "className": 4, + "maxLength": 2, + "cellSpacing": 2, + "cellPadding": 2, + "rowSpan": 2, + "colSpan": 2, + "useMap": 2, + "frameBorder": 2, + "contentEditable": 2, + "tabindex": 4, + "height": 25, + "auto": 3, + "href": 9, + "encoding": 26, + "mouseenter": 9, + "mouseleave": 9, + "mouseover": 12, + "mouseout": 12, + "**": 1, + "getData": 3, + "setData": 3, + "changeData": 3, + "click": 11, + "focus": 7, + "blur": 8, + "attrChange": 4, + "attrName": 4, + "relatedNode": 4, + "srcElement": 5, + "altKey": 4, + "bubbles": 4, + "cancelable": 4, + "ctrlKey": 6, + "currentTarget": 4, + "eventPhase": 4, + "metaKey": 5, + "relatedTarget": 6, + "shiftKey": 4, + "timeStamp": 1, + "view": 4, + "char": 2, + "charCode": 7, + "keyCode": 6, + "buttons": 1, + "clientX": 6, + "clientY": 5, + "fromElement": 6, + "offsetX": 4, + "offsetY": 4, + "pageX": 4, + "pageY": 4, + "screenX": 4, + "screenY": 4, + "toElement": 5, + "focusin": 9, + "focusout": 11, + "form": 12, + "window.Modernizr": 1, + "Modernizr": 12, + "enableClasses": 3, + "docElement": 1, + "document.documentElement": 2, + "mod": 12, + "modElem": 2, + "mStyle": 2, + "modElem.style": 1, + "inputElem": 6, + "smile": 4, + ".toString": 3, + "prefixes": 2, + "omPrefixes": 1, + "cssomPrefixes": 2, + "omPrefixes.split": 1, + "domPrefixes": 3, + "omPrefixes.toLowerCase": 1, + "ns": 1, + "inputs": 3, + "classes": 1, + "classes.slice": 1, + "featureName": 5, + "testing": 1, + "injectElementWithStyles": 9, + "rule": 5, + "testnames": 3, + "fakeBody": 4, + "while": 53, + "node.id": 1, + ".join": 14, + "div.id": 1, + "fakeBody.appendChild": 1, + "//avoid": 1, + "crashing": 1, + "background": 56, + "image": 5, + "fakeBody.style.background": 1, + "docElement.appendChild": 2, + "fakeBody.parentNode.removeChild": 1, + "div.parentNode.removeChild": 1, + "testMediaQuery": 2, + "mq": 3, + "matchMedia": 3, + "window.matchMedia": 1, + "window.msMatchMedia": 1, + ".matches": 1, + "bool": 30, + "node.currentStyle": 2, + "isEventSupported": 5, + "TAGNAMES": 2, + "element.setAttribute": 3, + "element.removeAttribute": 2, + "_hasOwnProperty": 2, + ".hasOwnProperty": 2, + "hasOwnProperty": 5, + "_hasOwnProperty.call": 2, + "object.constructor.prototype": 1, + "Function.prototype.bind": 2, + "bind": 3, + "TypeError": 2, + "slice.call": 3, + "F.prototype": 1, + "target.prototype": 1, + "result": 9, + "target.apply": 2, + "args.concat": 2, + "setCss": 7, + "str": 4, + "mStyle.cssText": 1, + "setCssAll": 2, + "str1": 6, + "str2": 4, + "prefixes.join": 3, + "contains": 8, + "substr": 2, + ".indexOf": 2, + "testProps": 3, + "props": 21, + "prefixed": 7, + "testDOMProps": 2, + "item": 4, + "item.bind": 1, + "testPropsAll": 17, + "ucProp": 5, + "prop.charAt": 1, + "prop.substr": 1, + "cssomPrefixes.join": 1, + "elem.getContext": 2, + ".getContext": 8, + ".fillText": 1, + "window.WebGLRenderingContext": 1, + "window.DocumentTouch": 1, + "DocumentTouch": 1, + "node.offsetTop": 1, + "window.postMessage": 1, + "window.openDatabase": 1, + "history.pushState": 1, + "mStyle.backgroundColor": 3, + "url": 23, + "mStyle.background": 1, + ".style.textShadow": 1, + "mStyle.opacity": 1, + "str3": 2, + "str1.length": 1, + "mStyle.backgroundImage": 1, + "docElement.style": 1, + "node.offsetLeft": 1, + "node.offsetHeight": 2, + "document.styleSheets": 1, + "document.styleSheets.length": 1, + "cssText": 4, + "style.cssRules": 3, + ".cssText": 2, + "style.cssText": 1, + "/src/i.test": 1, + "cssText.indexOf": 1, + "rule.split": 1, + "elem.canPlayType": 10, + "Boolean": 2, + "bool.ogg": 2, + "bool.h264": 1, + "bool.webm": 1, + "bool.mp3": 1, + "bool.wav": 1, + "bool.m4a": 1, + "localStorage.setItem": 1, + "localStorage.removeItem": 1, + "sessionStorage.setItem": 1, + "sessionStorage.removeItem": 1, + "window.Worker": 1, + "window.applicationCache": 1, + "document.createElementNS": 6, + "ns.svg": 4, + ".createSVGRect": 1, + "div.firstChild.namespaceURI": 1, + "/SVGAnimate/.test": 1, + "toString.call": 2, + "/SVGClipPath/.test": 1, + "webforms": 2, + "len": 11, + "props.length": 2, + "attrs.list": 2, + "window.HTMLDataListElement": 1, + "inputElemType": 5, + "defaultView": 2, + "inputElem.setAttribute": 1, + "inputElem.type": 1, + "inputElem.value": 2, + "inputElem.style.cssText": 1, + "range": 2, + "inputElem.style.WebkitAppearance": 1, + "document.defaultView": 1, + "defaultView.getComputedStyle": 2, + ".WebkitAppearance": 1, + "inputElem.offsetHeight": 1, + "docElement.removeChild": 1, + "tel": 2, + "email": 2, + "inputElem.checkValidity": 2, + "feature": 12, + "feature.toLowerCase": 2, + "classes.push": 1, + "Modernizr.input": 1, + "Modernizr.addTest": 2, + "docElement.className": 2, + "chaining.": 1, + "window.html5": 2, + "reSkip": 1, + "map": 7, + "textarea": 8, + "iframe": 3, + "/i": 22, + "saveClones": 1, + "code": 2, + "fieldset": 1, + "h1": 5, + "h2": 5, + "h3": 3, + "h4": 3, + "h5": 1, + "h6": 1, + "img": 1, + "label": 2, + "li": 19, + "link": 2, + "ol": 1, + "p": 110, + "param": 3, + "q": 34, + "script": 7, + "span": 1, + "strong": 1, + "tfoot": 1, + "th": 1, + "thead": 2, + "tr": 23, + "ul": 1, + "supportsHtml5Styles": 5, + "supportsUnknownElements": 3, + "a.innerHTML": 7, + "//if": 2, + "implemented": 1, + "assume": 1, + "Styles": 1, + "Chrome": 2, + "additional": 1, + "solve": 1, + "node.hidden": 1, + ".display": 1, + "a.childNodes.length": 1, + "frag.cloneNode": 1, + "frag.createDocumentFragment": 1, + "frag.createElement": 2, + "addStyleSheet": 2, + "ownerDocument": 9, + "ownerDocument.createElement": 3, + "ownerDocument.getElementsByTagName": 1, + "ownerDocument.documentElement": 1, + "p.innerHTML": 1, + "parent.insertBefore": 1, + "p.lastChild": 1, + "parent.firstChild": 1, + "getElements": 2, + "html5.elements": 1, + "elements.split": 1, + "shivMethods": 2, + "docCreateElement": 5, + "docCreateFragment": 2, + "ownerDocument.createDocumentFragment": 2, + "nodeName": 20, + "//abort": 1, + "shiv": 1, + "html5.shivMethods": 1, + ".cloneNode": 4, + "saveClones.test": 1, + "node.canHaveChildren": 1, + "reSkip.test": 1, + "frag.appendChild": 1, + "Function": 3, + "html5": 3, + "shivDocument": 3, + "shived": 5, + "ownerDocument.documentShived": 2, + "html5.shivCSS": 1, + "options.elements": 1, + "options.shivCSS": 1, + "options.shivMethods": 1, + "Modernizr._version": 1, + "Modernizr._prefixes": 1, + "Modernizr._domPrefixes": 1, + "Modernizr._cssomPrefixes": 1, + "Modernizr.mq": 1, + "Modernizr.hasEvent": 1, + "Modernizr.testProp": 1, + "Modernizr.testAllProps": 1, + "Modernizr.testStyles": 1, + "Modernizr.prefixed": 1, + "docElement.className.replace": 1, + "js": 1, + "classes.join": 1, + "this.document": 1, + "PEG.parser": 1, + "quote": 3, + "x": 33, + "result0": 264, + "result1": 81, + "result2": 77, + "parse_singleQuotedCharacter": 3, + "result1.push": 3, + "input.charCodeAt": 18, + "pos": 197, + "reportFailures": 64, + "matchFailed": 40, + "pos1": 63, + "offset": 21, + "chars": 1, + "chars.join": 1, + "pos0": 51, + "parse_simpleSingleQuotedCharacter": 2, + "parse_simpleEscapeSequence": 3, + "parse_zeroEscapeSequence": 3, + "parse_hexEscapeSequence": 3, + "parse_unicodeEscapeSequence": 3, + "parse_eolEscapeSequence": 3, + "pos2": 22, + "parse_eolChar": 6, + "input.length": 9, + "input.charAt": 21, + "char_": 9, + "parse_class": 1, + "result3": 35, + "result4": 12, + "result5": 4, + "parse_classCharacterRange": 3, + "parse_classCharacter": 5, + "result2.push": 1, + "parse___": 2, + "inverted": 4, + "partsConverted": 2, + "part.data": 1, + "rawText": 5, + "part.rawText": 1, + "ignoreCase": 1, + "begin": 1, + "begin.data.charCodeAt": 1, + "end.data.charCodeAt": 1, + "this.SyntaxError": 2, + "begin.rawText": 2, + "end.rawText": 2, + "begin.data": 1, + "end.data": 1, + "parse_bracketDelimitedCharacter": 2, + "quoteForRegexpClass": 1, + "parse_simpleBracketDelimitedCharacter": 2, + "parse_digit": 3, + "recognize": 1, + "input.substr": 9, + "parse_hexDigit": 7, + "String.fromCharCode": 4, + "parse_eol": 4, + "eol": 2, + "parse_letter": 1, + "parse_lowerCaseLetter": 2, + "parse_upperCaseLetter": 2, + "parse_whitespace": 3, + "parse_comment": 3, + "result0.push": 1, + "parse_singleLineComment": 2, + "parse_multiLineComment": 2, + "u2029": 2, + "x0B": 1, + "uFEFF": 1, + "u1680": 1, + "u180E": 1, + "u2000": 1, + "u200A": 1, + "u202F": 1, + "u205F": 1, + "u3000": 1, + "cleanupExpected": 2, + "expected": 12, + "expected.sort": 1, + "lastExpected": 3, + "cleanExpected": 2, + "expected.length": 4, + "cleanExpected.push": 1, + "computeErrorPosition": 2, + "line": 14, + "column": 8, + "seenCR": 5, + "Math.max": 10, + "rightmostFailuresPos": 2, + "ch": 58, + "parseFunctions": 1, + "startRule": 1, + "errorPosition": 1, + "rightmostFailuresExpected": 1, + "errorPosition.line": 1, + "errorPosition.column": 1, + "toSource": 1, + "this._source": 1, + "result.SyntaxError": 1, + "buildMessage": 2, + "expectedHumanized": 5, + "foundHumanized": 3, + "switch": 30, + "expected.slice": 1, + "this.name": 7, + "this.expected": 1, + "this.found": 1, + "this.message": 3, + "this.offset": 2, + "this.line": 3, + "this.column": 1, + "result.SyntaxError.prototype": 1, + "Error.prototype": 1, + "steelseries": 10, + "n.charAt": 1, + "n.substring": 1, + "i.substring": 3, + "this.color": 1, + "ui": 31, + "/255": 1, + "y": 101, + "t.getRed": 4, + "v": 135, + "t.getGreen": 4, + "t.getBlue": 4, + "t.getAlpha": 4, + "i.getRed": 1, + "i.getGreen": 1, + "i.getBlue": 1, + "o": 322, + "i.getAlpha": 1, + "*f": 2, + "w/r": 1, + "p/r": 1, + "c": 775, + "s/r": 1, + "h": 499, + "o/r": 1, + "e*u": 1, + ".toFixed": 3, + "l*u": 1, + "c*u": 1, + "h*u": 1, + "vr": 20, + "stop": 7, + "color": 4, + "Math.floor": 26, + "Math.log10": 1, + "n/Math.pow": 1, + "": 1, + "e=": 21, + "o=": 13, + "beginPath": 12, + "moveTo": 10, + "lineTo": 22, + "quadraticCurveTo": 4, + "closePath": 8, + "stroke": 7, + "i=": 31, + "createElement": 3, + "canvas": 22, + "width=": 17, + "height=": 17, + "ii": 29, + "u=": 12, + "getContext": 26, + "2d": 26, + "ft": 70, + "1": 97, + "fillStyle=": 13, + "rect": 3, + "0": 220, + "fill": 10, + "t=": 19, + "getImageData": 1, + "2": 66, + "3": 13, + "wt": 26, + "r=": 18, + "32": 1, + "62": 1, + "f=": 13, + "84": 1, + "s=": 12, + "94": 1, + "ar": 20, + "255": 3, + "max": 1, + "min": 2, + ".5": 7, + "u/": 3, + "/u": 3, + "f/": 1, + "vt": 50, + "n*6": 2, + "i*": 3, + "h*t": 1, + "*t": 3, + "%": 26, + "f*255": 1, + "u*255": 1, + "r*255": 1, + "st": 59, + "n/255": 1, + "t/255": 1, + "i/255": 1, + "Math.min": 5, + "f/r": 1, + "/f": 3, + "k": 302, + "<0?0:n>": 1, + "si": 23, + "ti": 39, + "Math.round": 7, + "/r": 1, + "u*r": 1, + "ni": 30, + "tt": 53, + "ei": 26, + "ot": 43, + "i.gaugeType": 6, + "steelseries.GaugeType.TYPE4": 2, + "i.size": 6, + "i.minValue": 10, + "i.maxValue": 10, + "bf": 6, + "i.niceScale": 10, + "i.threshold": 10, + "/2": 25, + "i.section": 8, + "i.area": 4, + "lu": 10, + "i.titleString": 10, + "au": 10, + "i.unitString": 10, + "hu": 11, + "i.frameDesign": 10, + "steelseries.FrameDesign.METAL": 7, + "wu": 9, + "i.frameVisible": 10, + "bt": 42, + "i.backgroundColor": 10, + "steelseries.BackgroundColor.DARK_GRAY": 7, + "bu": 11, + "i.backgroundVisible": 10, + "pt": 48, + "i.pointerType": 4, + "steelseries.PointerType.TYPE1": 3, + "i.pointerColor": 4, + "steelseries.ColorDef.RED": 7, + "ee": 2, + "i.knobType": 4, + "steelseries.KnobType.STANDARD_KNOB": 14, + "fi": 26, + "i.knobStyle": 4, + "steelseries.KnobStyle.SILVER": 4, + "i.lcdColor": 8, + "steelseries.LcdColor.STANDARD": 9, + "i.lcdVisible": 8, + "eu": 13, + "i.lcdDecimals": 8, + "ye": 2, + "i.digitalFont": 8, + "pe": 2, + "i.fractionalScaleDecimals": 4, + "br": 19, + "i.ledColor": 10, + "steelseries.LedColor.RED_LED": 7, + "ru": 14, + "i.ledVisible": 10, + "vf": 5, + "i.thresholdVisible": 8, + "kr": 17, + "i.minMeasuredValueVisible": 8, + "dr": 16, + "i.maxMeasuredValueVisible": 8, + "cf": 7, + "i.foregroundType": 6, + "steelseries.ForegroundType.TYPE1": 5, + "af": 5, + "i.foregroundVisible": 10, + "oe": 2, + "i.labelNumberFormat": 10, + "steelseries.LabelNumberFormat.STANDARD": 5, + "yr": 17, + "i.playAlarm": 10, + "uf": 5, + "i.alarmSound": 10, + "fe": 2, + "i.customLayer": 4, + "le": 1, + "i.tickLabelOrientation": 4, + "steelseries.GaugeType.TYPE1": 4, + "steelseries.TickLabelOrientation.TANGENT": 2, + "steelseries.TickLabelOrientation.NORMAL": 2, + "wr": 18, + "i.trendVisible": 4, + "hr": 17, + "i.trendColors": 4, + "steelseries.LedColor.GREEN_LED": 2, + "steelseries.LedColor.CYAN_LED": 2, + "sr": 21, + "i.useOdometer": 2, + "i.odometerParams": 2, + "wf": 4, + "i.odometerUseValue": 2, + "ki": 21, + "r.createElement": 11, + "ki.setAttribute": 2, + "yf": 3, + "ri": 24, + "ht": 34, + "ef": 5, + "steelseries.TrendState.OFF": 4, + "lr": 19, + "f*.06": 1, + "cr": 20, + "f*.29": 19, + "er": 19, + "f*.36": 4, + "ci": 29, + "et": 45, + "gi": 26, + "rr": 21, + "*lt": 9, + "r.getElementById": 7, + "u.save": 7, + "u.clearRect": 5, + "u.canvas.width": 7, + "u.canvas.height": 7, + "g": 441, + "s/2": 2, + "k/2": 1, + "pf": 4, + ".6*s": 1, + "ne": 2, + ".4*k": 1, + "pr": 16, + "s/10": 1, + "ce": 6, + "ae": 2, + "hf": 4, + "k*.13": 2, + "bi": 27, + "s*.4": 1, + "sf": 5, + "rf": 5, + "k*.57": 1, + "tf": 5, + "ve": 3, + "k*.61": 1, + "Math.PI/2": 40, + "ue": 1, + "Math.PI/180": 5, + "ff": 5, + "ir": 23, + "nr": 22, + "ai": 21, + "yt": 32, + "fr": 21, + "oi": 23, + "lf": 5, + "re": 2, + "ai/": 2, + "h/vt": 1, + "*vt": 4, + "Math.ceil": 63, + "b/vt": 1, + "vt/": 3, + "ot.type": 10, + "Math.PI": 13, + "at/yt": 4, + "*Math.PI": 10, + "*ue": 1, + "ci/2": 1, + "wi": 24, + "nf": 7, + "wi.getContext": 2, + "di": 22, + "ut": 59, + "di.getContext": 2, + "fu": 13, + "hi": 15, + "f*.093457": 10, + "uu": 13, + "hi.getContext": 6, + "gt": 32, + "nu": 11, + "gt.getContext": 3, + "iu": 14, + "f*.028037": 6, + "se": 1, + "iu.getContext": 1, + "gr": 12, + "he": 1, + "gr.getContext": 1, + "vi": 16, + "tu": 13, + "vi.getContext": 2, + "yi": 17, + "ou": 13, + "yi.getContext": 2, + "pi": 24, + "kt": 24, + "pi.getContext": 2, + "pu": 9, + "li.getContext": 6, + "gu": 9, + "du": 10, + "ku": 9, + "yu": 10, + "cu": 18, + "su": 12, + "tr.getContext": 1, + "kf": 3, + "u.textAlign": 2, + "u.strokeStyle": 2, + "ei.textColor": 2, + "u.fillStyle": 2, + "steelseries.LcdColor.STANDARD_GREEN": 4, + "u.shadowColor": 2, + "u.shadowOffsetX": 2, + "s*.007": 3, + "u.shadowOffsetY": 2, + "u.shadowBlur": 2, + "u.font": 2, + "u.fillText": 2, + "n.toFixed": 2, + "bi*.05": 1, + "hf*.5": 1, + "pr*.38": 1, + "bi*.9": 1, + "u.restore": 6, + "te": 2, + "n.save": 35, + "n.drawImage": 14, + "k*.037383": 11, + "s*.523364": 2, + "k*.130841": 1, + "s*.130841": 1, + "k*.514018": 2, + "s*.831775": 1, + "k*.831775": 1, + "s*.336448": 1, + "k*.803738": 2, + "s*.626168": 1, + "n.restore": 35, + "ie": 2, + "t.width": 2, + "f*.046728": 1, + "t.height": 2, + "t.width*.9": 4, + "t.getContext": 2, + "n.createLinearGradient": 17, + ".1": 18, + "t.height*.9": 6, + "i.addColorStop": 27, + ".3": 8, + ".59": 4, + "n.fillStyle": 36, + "n.beginPath": 39, + "n.moveTo": 37, + "t.width*.5": 4, + "n.lineTo": 33, + "t.width*.1": 2, + "n.closePath": 34, + "n.fill": 17, + "n.strokeStyle": 27, + "n.stroke": 31, + "vu": 10, + "": 1, + "": 1, + "n.lineWidth": 30, + "s*.035": 2, + "at/yt*t": 1, + "at/yt*h": 1, + "yt/at": 1, + "n.translate": 93, + "n.rotate": 53, + "n.arc": 6, + "s*.365": 2, + "n.lineWidth/2": 2, + "df": 3, + "bt.labelColor.setAlpha": 1, + "n.textAlign": 12, + "n.textBaseline": 10, + "s*.04": 1, + "n.font": 34, + "bt.labelColor.getRgbaColor": 2, + "lt*fr": 1, + "s*.38": 2, + "s*.35": 1, + "s*.355": 1, + "s*.36": 1, + "s*.3": 1, + "s*.1": 1, + "oi/2": 2, + "parseFloat": 30, + "b.toFixed": 1, + "c.toFixed": 2, + "le.type": 1, + "t.format": 7, + "n.fillText": 54, + "e.toFixed": 2, + "e.toPrecision": 1, + "n.frame": 22, + "n.background": 22, + "n.led": 20, + "n.pointer": 10, + "n.foreground": 22, + "n.trend": 4, + "n.odo": 2, + "rt": 45, + "uu.drawImage": 1, + "nu.drawImage": 3, + "se.drawImage": 1, + "steelseries.ColorDef.BLUE.dark.getRgbaColor": 6, + "he.drawImage": 1, + "steelseries.ColorDef.RED.medium.getRgbaColor": 6, + "ii.length": 2, + ".start": 12, + ".stop": 11, + ".color": 13, + "ui.length": 2, + "ct": 34, + "ut.save": 1, + "ut.translate": 3, + "ut.rotate": 1, + "ut.drawImage": 2, + "s*.475": 1, + "ut.restore": 1, + "steelseries.Odometer": 1, + "_context": 1, + "f*.075": 1, + "decimals": 1, + "wt.decimals": 1, + "wt.digits": 2, + "valueForeColor": 1, + "wt.valueForeColor": 1, + "valueBackColor": 1, + "wt.valueBackColor": 1, + "decimalForeColor": 1, + "wt.decimalForeColor": 1, + "decimalBackColor": 1, + "wt.decimalBackColor": 1, + "font": 1, + "wt.font": 1, + "tr.width": 1, + "nt": 75, + "bt.labelColor": 2, + "pt.type": 6, + "steelseries.TrendState.UP": 2, + "steelseries.TrendState.STEADY": 2, + "steelseries.TrendState.DOWN": 2, + "dt": 30, + "wi.width": 1, + "wi.height": 1, + "di.width": 1, + "di.height": 1, + "hi.width": 3, + "hi.height": 3, + "gt.width": 2, + "gt.height": 1, + "vi.width": 1, + "vi.height": 1, + "yi.width": 1, + "yi.height": 1, + "pi.width": 1, + "pi.height": 1, + "li.width": 3, + "li.height": 3, + "gf": 2, + "yf.repaint": 1, + "ur": 20, + "e3": 5, + "clearInterval": 6, + "this.setValue": 7, + "": 5, + "ki.pause": 1, + "ki.play": 1, + "this.repaint": 126, + "this.getValue": 7, + "this.setOdoValue": 1, + "this.getOdoValue": 1, + "this.setValueAnimated": 7, + "t.playing": 1, + "t.stop": 1, + "Tween": 11, + "Tween.regularEaseInOut": 6, + "t.onMotionChanged": 1, + "n.target._pos": 7, + "": 1, + "i.repaint": 1, + "t.start": 1, + "this.resetMinMeasuredValue": 4, + "this.resetMaxMeasuredValue": 4, + "this.setMinMeasuredValueVisible": 4, + "this.setMaxMeasuredValueVisible": 4, + "this.setMaxMeasuredValue": 3, + "this.setMinMeasuredValue": 3, + "this.setTitleString": 4, + "this.setUnitString": 4, + "this.setMinValue": 4, + "this.getMinValue": 3, + "this.setMaxValue": 3, + "this.getMaxValue": 4, + "this.setThreshold": 4, + "this.setArea": 1, + "foreground": 30, + "this.setSection": 4, + "this.setThresholdVisible": 4, + "this.setLcdDecimals": 3, + "this.setFrameDesign": 7, + "this.setBackgroundColor": 7, + "pointer": 28, + "this.setForegroundType": 5, + "this.setPointerType": 3, + "this.setPointerColor": 4, + "this.setLedColor": 5, + "led": 18, + "this.setLcdColor": 5, + "this.setTrend": 2, + "this.setTrendVisible": 2, + "trend": 2, + "odo": 1, + "u.drawImage": 22, + "cu.setValue": 1, + "of.state": 1, + "u.translate": 8, + "u.rotate": 4, + "u.canvas.width*.4865": 2, + "u.canvas.height*.105": 2, + "s*.006": 1, + "kt.clearRect": 1, + "kt.save": 1, + "kt.translate": 2, + "kt.rotate": 1, + "kt.drawImage": 1, + "kt.restore": 1, + "i.useSectionColors": 4, + "i.valueColor": 6, + "i.valueGradient": 4, + "i.useValueGradient": 4, + "yi.setAttribute": 2, + "e/2": 2, + "ut/2": 4, + "e/10": 3, + "ut*.13": 1, + "e*.4": 1, + "or/2": 1, + "e*.116822": 3, + "e*.485981": 3, + "s*.093457": 5, + "e*.53": 1, + "ut*.61": 1, + "s*.06": 1, + "s*.57": 1, + "dt.type": 4, + "l/Math.PI*180": 4, + "l/et": 8, + "Math.PI/3": 1, + "ft/2": 2, + "Math.PI/": 1, + "ai.getContext": 2, + "s*.060747": 2, + "s*.023364": 2, + "ri.getContext": 6, + "yt.getContext": 5, + "si.getContext": 4, + "ci/": 2, + "f/ht": 1, + "*ht": 8, + "h/ht": 1, + "ht/": 2, + "*kt": 5, + "angle": 1, + "*st": 1, + "n.value": 4, + "tu.drawImage": 1, + "gr.drawImage": 3, + "at.getImageData": 1, + "at.drawImage": 1, + "bt.length": 4, + "ii.push": 1, + "Math.abs": 19, + "ai.width": 1, + "ai.height": 1, + "ri.width": 3, + "ri.height": 3, + "yt.width": 2, + "yt.height": 2, + "si.width": 2, + "si.height": 2, + "s*.085": 1, + "e*.35514": 2, + ".107476*ut": 1, + ".897195*ut": 1, + "t.addColorStop": 6, + ".22": 1, + ".76": 1, + "s*.075": 1, + ".112149*ut": 1, + ".892523*ut": 1, + "r.addColorStop": 6, + "e*.060747": 2, + "e*.023364": 2, + "n.createRadialGradient": 4, + ".030373*e": 1, + "u.addColorStop": 14, + "i*kt": 1, + "n.rect": 4, + "n.canvas.width": 3, + "n.canvas.height": 3, + "n.canvas.width/2": 6, + "n.canvas.height/2": 4, + "u.createRadialGradient": 1, + "t.light.getRgbaColor": 2, + "t.dark.getRgbaColor": 2, + "ni.textColor": 2, + "e*.007": 5, + "oi*.05": 1, + "or*.5": 1, + "cr*.38": 1, + "oi*.9": 1, + "ei.labelColor.setAlpha": 1, + "e*.04": 1, + "ei.labelColor.getRgbaColor": 2, + "st*di": 1, + "e*.28": 1, + "e*.1": 1, + "e*.0375": 1, + "h.toFixed": 3, + "df.type": 1, + "u.toFixed": 2, + "u.toPrecision": 1, + "kf.repaint": 1, + "": 3, + "yi.pause": 1, + "yi.play": 1, + "ti.playing": 1, + "ti.stop": 1, + "ti.onMotionChanged": 1, + "t.repaint": 4, + "ti.start": 1, + "this.setValueColor": 3, + "this.setSectionActive": 2, + "this.setGradient": 2, + "this.setGradientActive": 2, + "useGradient": 2, + "n/lt*": 1, + "vi.getEnd": 1, + "vi.getStart": 1, + "s/c": 1, + "vi.getColorAt": 1, + ".getRgbaColor": 3, + "": 1, + "e.medium.getHexColor": 1, + "i.medium.getHexColor": 1, + "n*kt": 1, + "pu.state": 1, + "i.orientation": 2, + "steelseries.Orientation.NORTH": 2, + "hi.setAttribute": 2, + "steelseries.GaugeType.TYPE5": 1, + "kt/at": 2, + "f.clearRect": 2, + "f.canvas.width": 3, + "f.canvas.height": 3, + "h/2": 1, + "k*.733644": 1, + ".455*h": 1, + ".51*k": 1, + "bi/": 2, + "l/ot": 1, + "*ot": 2, + "d/ot": 1, + "ot/": 1, + "ui.getContext": 4, + "u*.093457": 10, + "ii.getContext": 5, + "st.getContext": 2, + "u*.028037": 6, + "hr.getContext": 1, + "er.getContext": 1, + "fi.getContext": 4, + "kr.type": 1, + "ft.type": 1, + "h*.44": 3, + "k*.8": 1, + "k*.16": 1, + "h*.2": 2, + "k*.446666": 2, + "h*.8": 1, + "u*.046728": 1, + "h*.035": 1, + "kt/at*t": 1, + "kt/at*l": 1, + "at/kt": 1, + "h*.365": 2, + "it.labelColor.getRgbaColor": 4, + "vertical": 1, + ".046728*h": 1, + "n.measureText": 2, + ".width": 2, + "k*.4": 1, + "h*.3": 1, + "k*.47": 1, + "it.labelColor.setAlpha": 1, + "steelseries.Orientation.WEST": 6, + "h*.04": 1, + "ht*yi": 1, + "h*.41": 1, + "h*.415": 1, + "h*.42": 1, + "h*.48": 1, + "h*.0375": 1, + "d.toFixed": 1, + "f.toFixed": 1, + "i.toFixed": 2, + "i.toPrecision": 1, + "u/2": 5, + "cr.drawImage": 3, + "ar.drawImage": 1, + "or.drawImage": 1, + "or.restore": 1, + "rr.drawImage": 1, + "rr.restore": 1, + "gt.length": 2, + "p.save": 2, + "p.translate": 8, + "p.rotate": 4, + "p.restore": 3, + "ni.length": 2, + "p.drawImage": 1, + "h*.475": 1, + "k*.32": 1, + "h*1.17": 2, + "it.labelColor": 2, + "ut.type": 6, + "ui.width": 2, + "ui.height": 2, + "ii.width": 2, + "ii.height": 2, + "st.width": 1, + "st.height": 1, + "fi.width": 2, + "fi.height": 2, + "wu.repaint": 1, + "": 2, + "hi.pause": 1, + "hi.play": 1, + "dt.playing": 2, + "dt.stop": 2, + "dt.onMotionChanged": 2, + "": 1, + "dt.start": 2, + "f.save": 5, + "f.drawImage": 9, + "f.translate": 10, + "f.rotate": 5, + "f.canvas.width*.4865": 2, + "f.canvas.height*.27": 2, + "f.restore": 5, + "h*.006": 1, + "h*1.17/2": 1, + "et.clearRect": 1, + "et.save": 1, + "et.translate": 2, + "et.rotate": 1, + "et.drawImage": 1, + "et.restore": 1, + "i.width": 6, + "i.height": 6, + "fi.setAttribute": 2, + "l.type": 26, + "y.clearRect": 2, + "y.canvas.width": 3, + "y.canvas.height": 3, + "*.05": 4, + "f/2": 13, + "it/2": 2, + ".053": 1, + ".038": 1, + "*u": 1, + "u/22": 2, + ".89*f": 2, + "u/10": 2, + "ei/": 1, + "e/ut": 1, + "*ut": 2, + "s/ut": 1, + "ut/": 1, + "kt.getContext": 2, + "rt.getContext": 2, + "dt.getContext": 1, + "ni.getContext": 4, + "lt.textColor": 2, + "n.shadowColor": 2, + "n.shadowOffsetX": 4, + "u*.003": 2, + "n.shadowOffsetY": 4, + "n.shadowBlur": 4, + "u*.004": 1, + "u*.007": 2, + "u*.009": 1, + "f*.571428": 8, + "u*.88": 2, + "u*.055": 2, + "f*.7": 2, + "f*.695": 4, + "f*.18": 4, + "u*.22": 3, + "u*.15": 2, + "t.toFixed": 2, + "i.getContext": 2, + "t.save": 2, + "t.createLinearGradient": 2, + "i.height*.9": 6, + "t.fillStyle": 2, + "t.beginPath": 4, + "t.moveTo": 4, + "i.height*.5": 2, + "t.lineTo": 8, + "i.width*.9": 6, + "t.closePath": 4, + "i.width*.5": 2, + "t.fill": 2, + "t.strokeStyle": 2, + "t.stroke": 2, + "t.restore": 2, + "w.labelColor.setAlpha": 1, + "f*.1": 5, + "w.labelColor.getRgbaColor": 2, + ".34*f": 2, + ".36*f": 6, + ".33*f": 2, + ".32*f": 2, + "u*.12864": 3, + "u*.856796": 1, + "u*.7475": 1, + "c/": 2, + ".65*u": 1, + ".63*u": 3, + ".66*u": 1, + ".67*u": 1, + "f*.142857": 4, + "f*.871012": 2, + "f*.19857": 1, + "f*.82": 1, + "v/": 1, + "tickCounter": 4, + "currentPos": 20, + "tickCounter*a": 2, + "r.toFixed": 8, + "f*.28": 6, + "r.toPrecision": 4, + "u*.73": 3, + "ui/2": 1, + "vi.drawImage": 2, + "yi.drawImage": 2, + "hr.drawImage": 2, + "k.save": 1, + ".856796": 2, + ".7475": 2, + ".12864": 2, + "u*i": 1, + "u*r*": 1, + "bt/": 1, + "k.translate": 2, + "f*.365": 2, + "nt/2": 2, + ".871012": 3, + ".82": 2, + ".142857": 5, + ".19857": 6, + "f*r*bt/": 1, + "f*": 5, + "u*.58": 1, + "k.drawImage": 3, + "k.restore": 1, + "kt.width": 1, + "b*.093457": 2, + "kt.height": 1, + "d*.093457": 2, + "rt.width": 1, + "rt.height": 1, + "ni.width": 2, + "ni.height": 2, + "hu.repaint": 1, + "w.labelColor": 1, + "i*.12864": 2, + "i*.856796": 2, + "i*.7475": 1, + "t*.871012": 1, + "t*.142857": 8, + "t*.82": 1, + "t*.19857": 1, + "steelseries.BackgroundColor.CARBON": 2, + "steelseries.BackgroundColor.PUNCHED_SHEET": 2, + "steelseries.BackgroundColor.STAINLESS": 2, + "steelseries.BackgroundColor.BRUSHED_STAINLESS": 2, + "steelseries.BackgroundColor.TURNED": 2, + "r.setAlpha": 8, + ".05": 2, + "p.addColorStop": 4, + "r.getRgbaColor": 8, + ".15": 2, + ".48": 7, + ".49": 4, + "n.fillRect": 16, + "t*.435714": 4, + "i*.435714": 4, + "i*.142857": 1, + "b.addColorStop": 4, + ".69": 1, + ".7": 1, + ".4": 2, + "t*.007142": 4, + "t*.571428": 2, + "i*.007142": 4, + "i*.571428": 2, + "t*.45": 4, + "t*.114285": 1, + "t/2": 1, + "i*.0486/2": 1, + "i*.053": 1, + "i*.45": 4, + "i*.114285": 1, + "i/2": 1, + "t*.025": 1, + "t*.053": 1, + "ut.addColorStop": 2, + "wt.medium.getRgbaColor": 3, + "wt.light.getRgbaColor": 2, + "i*.05": 2, + "t*.05": 2, + "ot.addColorStop": 2, + ".98": 1, + "Math.PI*.5": 2, + "f*.05": 2, + ".049*t": 8, + ".825*t": 9, + "n.bezierCurveTo": 42, + ".7975*t": 2, + ".0264*t": 4, + ".775*t": 3, + ".0013*t": 12, + ".85*t": 2, + ".8725*t": 3, + ".0365*t": 9, + ".8075*t": 4, + ".7925*t": 3, + ".0214*t": 13, + ".7875*t": 4, + ".7825*t": 5, + ".0189*t": 4, + ".785*t": 1, + ".8175*t": 2, + ".815*t": 1, + ".8125*t": 2, + ".8*t": 2, + ".0377*t": 2, + ".86*t": 4, + ".0415*t": 2, + ".845*t": 1, + ".0465*t": 2, + ".805*t": 2, + ".0113*t": 10, + ".0163*t": 7, + ".8025*t": 1, + ".8225*t": 3, + ".8425*t": 1, + ".03*t": 2, + ".115*t": 5, + ".1075*t": 2, + ".1025*t": 8, + ".0038*t": 2, + ".76*t": 4, + ".7675*t": 2, + ".7725*t": 6, + ".34": 1, + ".0516*t": 7, + ".8525*t": 2, + ".0289*t": 8, + ".875*t": 3, + ".044*t": 1, + ".0314*t": 5, + ".12*t": 4, + ".0875*t": 3, + ".79*t": 1, + "": 5, + "fi.pause": 1, + "fi.play": 1, + "yt.playing": 1, + "yt.stop": 1, + "yt.onMotionChanged": 1, + "t.setValue": 1, + "yt.start": 1, + "mminMeasuredValue": 1, + "": 1, + "setMaxValue=": 1, + "y.drawImage": 6, + "u*n": 2, + "u*i*": 2, + "at/": 1, + "f*.34": 3, + "gt.height/2": 2, + "f*i*at/": 1, + "u*.65": 2, + "ft/": 1, + "dt.width": 1, + "dt.height/2": 2, + ".8": 1, + ".14857": 1, + "f*i*ft/": 1, + "y.save": 1, + "y.restore": 1, + "oi.setAttribute": 2, + "v.clearRect": 2, + "v.canvas.width": 4, + "v.canvas.height": 4, + ".053*e": 1, + "e/22": 2, + "e/1.95": 1, + "u/vt": 1, + "s/vt": 1, + "g.width": 4, + "f*.121428": 2, + "g.height": 4, + "e*.012135": 2, + "f*.012135": 2, + "e*.121428": 2, + "g.getContext": 2, + "d.width": 4, + "d.height": 4, + "d.getContext": 2, + "pt.getContext": 2, + "ci.getContext": 1, + "kt.textColor": 2, + "f*.007": 2, + "f*.009": 1, + "e*.009": 1, + "e*.88": 2, + "e*.055": 2, + "e*.22": 3, + "e*.15": 2, + "k.labelColor.setAlpha": 1, + "k.labelColor.getRgbaColor": 5, + "e*.12864": 3, + "e*.856796": 3, + ".65*e": 1, + ".63*e": 3, + ".66*e": 1, + ".67*e": 1, + "g/": 1, + "tickCounter*h": 2, + "e*.73": 3, + "ti/2": 1, + "n.bargraphled": 4, + "nr.drawImage": 2, + "tr.drawImage": 2, + "nt.save": 1, + "e*.728155*": 1, + "st/": 1, + "nt.translate": 2, + "rt/2": 2, + "f*.856796": 2, + "f*.12864": 2, + "*st/": 1, + "e*.58": 1, + "nt.drawImage": 3, + "nt.restore": 1, + "f*.012135/2": 1, + "ft.push": 1, + "*c": 2, + "y*.121428": 2, + "w*.012135": 2, + "y*.012135": 2, + "w*.121428": 2, + "y*.093457": 2, + "w*.093457": 2, + "pt.width": 1, + "pt.height": 1, + "ku.repaint": 1, + "k.labelColor": 1, + "r*": 2, + "r*1.014": 5, + "t*.856796": 1, + "t*.12864": 1, + "t*.13": 3, + "r*1.035": 4, + "f.setAlpha": 8, + ".047058": 2, + "rt.addColorStop": 4, + "f.getRgbaColor": 8, + ".145098": 1, + ".149019": 1, + "t*.15": 1, + "i*.152857": 1, + ".298039": 1, + "it.addColorStop": 4, + ".686274": 1, + ".698039": 1, + "i*.851941": 1, + "t*.121428": 1, + "i*.012135": 1, + "t*.012135": 1, + "i*.121428": 1, + "*r": 4, + "o/r*": 1, + "yt.getEnd": 2, + "yt.getStart": 2, + "lt/ct": 2, + "yt.getColorAt": 2, + "": 1, + "st.medium.getHexColor": 2, + "a.medium.getHexColor": 2, + "b/2": 2, + "e/r*": 1, + "": 1, + "v.createRadialGradient": 2, + "": 5, + "oi.pause": 1, + "oi.play": 1, + "": 1, + "bargraphled": 3, + "v.drawImage": 2, + "": 1, + "n=": 10, + "856796": 4, + "728155": 2, + "34": 2, + "12864": 2, + "142857": 2, + "65": 2, + "drawImage": 12, + "save": 27, + "restore": 14, + "repaint": 23, + "dr=": 1, + "b=": 25, + "128": 2, + "y=": 5, + "48": 1, + "w=": 4, + "lcdColor": 4, + "LcdColor": 4, + "STANDARD": 3, + "pt=": 5, + "lcdDecimals": 4, + "lt=": 4, + "unitString": 4, + "at=": 3, + "unitStringVisible": 4, + "ht=": 6, + "digitalFont": 4, + "bt=": 3, + "valuesNumeric": 4, + "a=": 23, + "ct=": 5, + "autoScroll": 2, + "section": 2, + "c=": 24, + "wt=": 3, + "getElementById": 4, + "clearRect": 8, + "h=": 19, + "l=": 10, + "v=": 5, + "floor": 13, + "5": 23, + "ot=": 4, + "sans": 12, + "serif": 13, + "it=": 7, + "nt=": 5, + "et=": 6, + "kt=": 4, + "textAlign=": 7, + "strokeStyle=": 8, + "4": 4, + "clip": 1, + "font=": 28, + "measureText": 4, + "toFixed": 3, + "fillText": 23, + "38": 5, + "o*.2": 1, + "clearTimeout": 2, + "<=o-4&&(e=0,c=!1),u.fillText(n,o-2-e,h*.5+v*.38)),u.restore()},dt=function(n,i,r,u){var>": 1, + "d=": 15, + "rt=": 3, + "095": 1, + "createLinearGradient": 6, + "addColorStop": 25, + "4c4c4c": 1, + "08": 1, + "666666": 2, + "92": 1, + "e6e6e6": 1, + "g=": 15, + "gradientStartColor": 1, + "tt=": 3, + "gradientFraction1Color": 1, + "gradientFraction2Color": 1, + "gradientFraction3Color": 1, + "gradientStopColor": 1, + "yt=": 4, + "31": 26, + "k=": 11, + "p=": 5, + "ut=": 6, + "rgb": 6, + "03": 1, + "49": 1, + "57": 1, + "83": 1, + "wt.repaint": 1, + "f.length": 5, + "resetBuffers": 1, + "this.setScrolling": 1, + "w.textColor": 1, + "": 1, + "<=f[n].stop){t=et[n],i=ut[n];break}u.drawImage(t,0,0),kt(a,i)},this.repaint(),this},wr=function(n,t){t=t||{};var>": 1, + "64": 1, + "875": 2, + "textBaseline=": 4, + "textColor": 2, + "STANDARD_GREEN": 1, + "shadowColor=": 1, + "shadowOffsetX=": 1, + "05": 2, + "shadowOffsetY=": 1, + "shadowBlur=": 1, + "06": 1, + "46": 1, + "8": 2, + "setValue=": 2, + "setLcdColor=": 2, + "repaint=": 2, + "br=": 1, + "size": 6, + "200": 2, + "st=": 3, + "decimalsVisible": 2, + "gt=": 1, + "textOrientationFixed": 2, + "frameDesign": 4, + "FrameDesign": 2, + "METAL": 2, + "frameVisible": 4, + "backgroundColor": 2, + "BackgroundColor": 1, + "DARK_GRAY": 1, + "vt=": 2, + "backgroundVisible": 2, + "pointerColor": 4, + "ColorDef": 2, + "RED": 1, + "foregroundType": 4, + "ForegroundType": 2, + "TYPE1": 2, + "foregroundVisible": 4, + "PI": 54, + "180": 26, + "ni=": 1, + "labelColor": 6, + "getRgbaColor": 21, + "translate": 38, + "360": 15, + "p.labelColor.getRgbaColor": 4, + "f*.38": 7, + "f*.37": 3, + "": 1, + "rotate": 31, + "Math": 51, + "u00b0": 8, + "41": 3, + "45": 5, + "25": 9, + "085": 4, + "100": 4, + "90": 3, + "21": 2, + "u221e": 2, + "135": 1, + "225": 1, + "75": 3, + "270": 1, + "315": 1, + "ti=": 2, + "200934": 2, + "434579": 4, + "163551": 5, + "560747": 4, + "lineWidth=": 6, + "lineCap=": 5, + "lineJoin=": 5, + "471962": 4, + "205607": 1, + "523364": 5, + "799065": 2, + "836448": 5, + "794392": 1, + "ii=": 2, + "350467": 5, + "130841": 1, + "476635": 2, + "bezierCurveTo": 6, + "490654": 3, + "345794": 3, + "509345": 1, + "154205": 1, + "350466": 1, + "dark": 2, + "light": 5, + "setAlpha": 8, + "70588": 4, + "59": 3, + "dt=": 2, + "285046": 5, + "514018": 6, + "21028": 1, + "481308": 4, + "280373": 3, + "495327": 2, + "504672": 2, + "224299": 1, + "289719": 1, + "714953": 5, + "789719": 1, + "719626": 3, + "7757": 1, + "71028": 1, + "ft=": 3, + "*10": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "<-90&&e>": 2, + "<-180&&e>": 2, + "<-270&&e>": 2, + "d.playing": 2, + "d.stop": 2, + "d.onMotionChanged": 2, + "d.start": 2, + "s.save": 4, + "s.clearRect": 3, + "s.canvas.width": 4, + "s.canvas.height": 4, + "s.drawImage": 8, + "e*kt": 1, + "s.translate": 6, + "s.rotate": 3, + "s.fillStyle": 1, + "s.textAlign": 1, + "s.textBaseline": 1, + "s.restore": 6, + "s.font": 2, + "f*.15": 2, + "s.fillText": 2, + "f*.35": 26, + "f*.2": 1, + "k*Math.PI/180": 1, + "u.size": 4, + "u.frameDesign": 4, + "u.frameVisible": 4, + "u.backgroundColor": 4, + "u.backgroundVisible": 4, + "u.pointerType": 2, + "steelseries.PointerType.TYPE2": 1, + "u.pointerColor": 4, + "u.knobType": 4, + "u.knobStyle": 4, + "u.foregroundType": 4, + "u.foregroundVisible": 4, + "u.pointSymbols": 4, + "u.customLayer": 4, + "u.degreeScale": 4, + "u.roseVisible": 4, + "this.value": 4, + "ft.getContext": 2, + "ut.getContext": 2, + "it.getContext": 2, + "ot.getContext": 3, + "et.getContext": 2, + "tt.labelColor.getRgbaColor": 2, + ".08*f": 1, + "f*.033": 1, + "st*10": 2, + ".substring": 2, + ".12*f": 2, + ".06*f": 2, + "tt.symbolColor.getRgbaColor": 1, + "st*2.5": 1, + "bt.type": 1, + "f*.53271": 6, + "e*.453271": 5, + "f*.5": 17, + "e*.149532": 8, + "f*.467289": 6, + "f*.453271": 2, + "e*.462616": 2, + "f*.443925": 9, + "e*.481308": 2, + "e*.5": 10, + "f*.556074": 9, + "f*.546728": 2, + ".471962*f": 5, + ".528036*f": 5, + "o.addColorStop": 4, + "h.light.getRgbaColor": 6, + ".46": 3, + ".47": 3, + "h.medium.getRgbaColor": 6, + "h.dark.getRgbaColor": 3, + "n.lineCap": 5, + "n.lineJoin": 5, + "e*.546728": 5, + "e*.850467": 4, + "e*.537383": 2, + "e*.518691": 2, + "s.addColorStop": 4, + "e*.490654": 2, + "e*.53271": 2, + "e*.556074": 3, + "e*.495327": 4, + "f*.528037": 2, + "f*.471962": 2, + "e*.504672": 4, + ".480099": 1, + "f*.006": 2, + "ft.width": 1, + "ft.height": 1, + "ut.width": 1, + "ut.height": 1, + "it.width": 1, + "it.height": 1, + "ot.width": 1, + "ot.height": 1, + "et.width": 1, + "et.height": 1, + "Tween.elasticEaseOut": 1, + "r.repaint": 1, + "this.setPointSymbols": 1, + "p*st": 1, + "b.clearRect": 1, + "b.save": 1, + "b.translate": 2, + "b.rotate": 1, + "b.drawImage": 1, + "b.restore": 1, + "u.pointerTypeLatest": 2, + "u.pointerTypeAverage": 2, + "steelseries.PointerType.TYPE8": 1, + "u.pointerColorAverage": 2, + "steelseries.ColorDef.BLUE": 1, + "u.lcdColor": 2, + "u.lcdVisible": 2, + "u.digitalFont": 2, + "u.section": 2, + "u.area": 2, + "u.lcdTitleStrings": 2, + "u.titleString": 2, + "u.useColorLabels": 2, + "this.valueLatest": 1, + "this.valueAverage": 1, + "Math.PI*2": 1, + "e.save": 2, + "e.clearRect": 1, + "e.canvas.width": 2, + "e.canvas.height": 2, + "f/10": 1, + "f*.3": 4, + "s*.12": 1, + "s*.32": 1, + "s*.565": 1, + "bt.getContext": 1, + "at.getContext": 1, + "vt.getContext": 1, + "lt.getContext": 1, + "wt.getContext": 1, + "e.textAlign": 1, + "e.strokeStyle": 1, + "ht.textColor": 2, + "e.fillStyle": 1, + "<0&&(n+=360),n=\"00\"+Math.round(n),n=n.substring(n.length,n.length-3),(ht===steelseries.LcdColor.STANDARD||ht===steelseries.LcdColor.STANDARD_GREEN)&&(e.shadowColor=\"gray\",e.shadowOffsetX=f*.007,e.shadowOffsetY=f*.007,e.shadowBlur=f*.007),e.font=pr?gr:br,e.fillText(n+\"\\u00b0\",f/2+gt*.05,(t?or:cr)+er*.5+ui*.38,gt*.9),e.restore()},wi=function(n,t,i,r,u){n.save(),n.strokeStyle=r,n.fillStyle=r,n.lineWidth=f*.035;var>": 1, + "arc": 2, + "365": 2, + "lineWidth": 1, + "lr=": 1, + "35": 1, + "355": 1, + "36": 2, + "bold": 1, + "04": 2, + "ct*5": 1, + "k.symbolColor.getRgbaColor": 1, + "ct*2.5": 1, + "ti.length": 1, + "kt.medium.getRgbaColor": 1, + ".04*f": 1, + "s*.29": 1, + "ii.medium.getRgbaColor": 1, + "s*.71": 1, + "rr.length": 1, + ".0467*f": 1, + "s*.5": 1, + "et.length": 2, + "ft.length": 2, + "": 1, + "ci=": 1, + "li=": 1, + "ai=": 1, + "ki=": 1, + "yi=": 1, + "setValueLatest=": 1, + "getValueLatest=": 1, + "setValueAverage=": 1, + "getValueAverage=": 1, + "setValueAnimatedLatest=": 1, + "playing": 2, + "regularEaseInOut": 2, + "onMotionChanged=": 2, + "_pos": 2, + "onMotionFinished=": 2, + "setValueAnimatedAverage=": 1, + "setArea=": 1, + "setSection=": 1, + "setFrameDesign=": 1, + "pi=": 1, + "setBackgroundColor=": 1, + "setForegroundType=": 1, + "si=": 1, + "setPointerColor=": 1, + "setPointerColorAverage=": 1, + "setPointerType=": 1, + "setPointerTypeAverage=": 1, + "ri=": 1, + "setPointSymbols=": 1, + "setLcdTitleStrings=": 1, + "fi=": 1, + "006": 1, + "ei=": 1, + "ru=": 1, + "WHITE": 1, + "037383": 1, + "056074": 1, + "7fd5f0": 2, + "3c4439": 2, + "72": 1, + "Animal": 12, + "Horse": 12, + "Snake": 12, + "sam": 4, + "tom": 4, + "__hasProp": 2, + "__extends": 6, + "__hasProp.call": 2, + "this.constructor": 5, + "Animal.prototype.move": 2, + "meters": 4, + "Snake.__super__.constructor.apply": 2, + "Snake.prototype.move": 2, + "Snake.__super__.move.call": 2, + "Horse.__super__.constructor.apply": 2, + "Horse.prototype.move": 2, + "Horse.__super__.move.call": 2, + "sam.move": 2, + "tom.move": 2, + "ma": 3, + "c.isReady": 4, + "s.documentElement.doScroll": 2, + "c.ready": 7, + "Qa": 1, + "b.src": 4, + "c.ajax": 1, + "async": 5, + "c.globalEval": 1, + "b.text": 3, + "b.textContent": 2, + "b.innerHTML": 3, + "b.parentNode": 4, + "b.parentNode.removeChild": 2, + "X": 6, + "j": 265, + "a.length": 23, + "c.isFunction": 9, + "d.call": 3, + "J": 5, + "Y": 3, + "na": 1, + ".type": 2, + "c.event.handle.apply": 1, + "oa": 1, + "c.data": 12, + "a.liveFired": 4, + "i.live": 1, + "a.button": 2, + "a.type": 14, + "i.live.slice": 1, + "u.length": 3, + "i.origType.replace": 1, + "O": 6, + "f.push": 5, + "i.selector": 3, + "u.splice": 1, + "a.target": 5, + ".closest": 4, + "a.currentTarget": 4, + "j.length": 2, + ".selector": 1, + ".elem": 1, + "i.preType": 2, + "a.relatedTarget": 2, + "d.push": 1, + "handleObj": 2, + "d.length": 8, + "j.elem": 2, + "a.data": 2, + "j.handleObj.data": 1, + "a.handleObj": 2, + "j.handleObj": 1, + "j.handleObj.origHandler.apply": 1, + "pa": 1, + "b.replace": 3, + "./g": 2, + "qa": 1, + "a.parentNode": 6, + "a.parentNode.nodeType": 2, + "ra": 1, + "b.each": 1, + "this.nodeName": 4, + ".nodeName": 2, + "f.events": 1, + "e.handle": 2, + "e.events": 2, + "c.event.add": 1, + "sa": 2, + ".ownerDocument": 5, + ".length": 24, + "ta.test": 1, + "c.support.checkClone": 2, + "ua.test": 1, + "c.fragments": 2, + "b.createDocumentFragment": 1, + "c.clean": 1, + "cacheable": 2, + "K": 4, + "c.each": 2, + "va.concat.apply": 1, + "va.slice": 1, + "wa": 1, + "a.document": 3, + "a.nodeType": 27, + "a.defaultView": 2, + "a.parentWindow": 2, + "c.fn.init": 1, + "Ra": 2, + "A.jQuery": 3, + "Sa": 2, + "A.": 3, + "A.document": 1, + "T": 4, + "Ta": 1, + "Ua": 1, + "Va": 1, + "Wa": 2, + "u00A0": 2, + "Xa": 1, + "P": 4, + "xa": 3, + "Q": 6, + "L": 10, + "aa": 1, + "ba": 3, + "R": 2, + "ya": 2, + "c.fn": 2, + "c.prototype": 1, + "s.body": 2, + "Ta.exec": 1, + "b.ownerDocument": 6, + "Xa.exec": 1, + "c.isPlainObject": 3, + "s.createElement": 10, + "c.fn.attr.call": 1, + "f.createElement": 1, + "a.cacheable": 1, + "a.fragment.cloneNode": 1, + "a.fragment": 1, + ".childNodes": 2, + "c.merge": 4, + "s.getElementById": 1, + "b.id": 1, + "T.find": 1, + "s.getElementsByTagName": 2, + "b.jquery": 1, + ".find": 5, + "T.ready": 1, + "a.selector": 4, + "a.context": 2, + "c.makeArray": 3, + "jquery": 3, + "toArray": 2, + "R.call": 2, + "this.toArray": 3, + "this.slice": 5, + "pushStack": 4, + "c.isArray": 5, + "ba.apply": 1, + "f.prevObject": 1, + "f.context": 1, + "f.selector": 2, + "c.bindReady": 1, + "a.call": 17, + "Q.push": 1, + "eq": 2, + "this.eq": 4, + "this.pushStack": 12, + "R.apply": 1, + "c.map": 1, + "this.prevObject": 3, + "c.fn.init.prototype": 1, + "c.extend": 7, + "c.fn.extend": 4, + "c.fn.triggerHandler": 1, + ".triggerHandler": 1, + "s.readyState": 2, + "s.addEventListener": 3, + "A.addEventListener": 1, + "s.attachEvent": 3, + "A.attachEvent": 1, + "A.frameElement": 1, + "isFunction": 12, + "isArray": 10, + "isPlainObject": 4, + "a.setInterval": 2, + "a.constructor": 2, + "aa.call": 3, + "a.constructor.prototype": 2, + "c.trim": 3, + "a.replace": 7, + "@": 1, + "A.JSON": 1, + "A.JSON.parse": 2, + "c.error": 2, + "noop": 3, + "globalEval": 2, + "Va.test": 1, + "s.documentElement": 2, + "d.type": 2, + "c.support.scriptEval": 2, + "d.appendChild": 3, + "s.createTextNode": 2, + "d.text": 1, + "b.insertBefore": 3, + "b.firstChild": 5, + "b.removeChild": 3, + "a.nodeName": 12, + "a.nodeName.toUpperCase": 2, + "b.toUpperCase": 3, + "b.apply": 2, + "b.call": 4, + "makeArray": 3, + "ba.call": 1, + "inArray": 5, + "b.indexOf": 2, + "b.length": 12, + "merge": 2, + "grep": 6, + "f.concat.apply": 1, + "guid": 5, + "proxy": 4, + "a.apply": 2, + "b.guid": 2, + "a.guid": 7, + "c.guid": 1, + "a.toLowerCase": 4, + "/.exec": 4, + "/compatible/.test": 1, + "c.uaMatch": 1, + "P.browser": 2, + "c.browser": 1, + "c.browser.version": 1, + "P.version": 1, + "c.browser.webkit": 1, + "c.browser.safari": 1, + "c.inArray": 2, + "ya.call": 1, + "s.removeEventListener": 1, + "s.detachEvent": 1, + "c.support": 2, + "d.style.display": 5, + "d.innerHTML": 2, + "d.getElementsByTagName": 6, + "e.length": 9, + "d.firstChild.nodeType": 1, + "htmlSerialize": 3, + "/red/.test": 1, + "j.getAttribute": 2, + "j.style.opacity": 1, + "j.style.cssFloat": 1, + ".value": 1, + "optSelected": 3, + ".appendChild": 1, + ".selected": 1, + "parentNode": 10, + "d.removeChild": 1, + ".parentNode": 7, + "deleteExpando": 3, + "checkClone": 1, + "scriptEval": 1, + "noCloneEvent": 3, + "boxModel": 1, + "b.type": 4, + "b.appendChild": 1, + "a.insertBefore": 2, + "a.firstChild": 6, + "b.test": 1, + "c.support.deleteExpando": 2, + "a.removeChild": 2, + "d.attachEvent": 2, + "d.fireEvent": 1, + "c.support.noCloneEvent": 1, + "d.detachEvent": 1, + "d.cloneNode": 1, + "s.createDocumentFragment": 1, + "a.appendChild": 3, + "d.firstChild": 2, + "a.cloneNode": 3, + ".lastChild.checked": 2, + "k.style.width": 1, + "k.style.paddingLeft": 1, + "s.body.appendChild": 1, + "c.boxModel": 1, + "c.support.boxModel": 1, + "k.offsetWidth": 1, + "s.body.removeChild": 1, + "n.setAttribute": 1, + "c.support.submitBubbles": 1, + "c.support.changeBubbles": 1, + "c.props": 2, + "readonly": 3, + "maxlength": 2, + "cellspacing": 2, + "rowspan": 2, + "colspan": 2, + "usemap": 2, + "frameborder": 2, + "G": 11, + "Ya": 2, + "za": 3, + "embed": 3, + "applet": 2, + "c.noData": 2, + "a.nodeName.toLowerCase": 3, + "c.cache": 2, + "c.isEmptyObject": 1, + "c.removeData": 2, + "c.expando": 2, + "a.removeAttribute": 3, + "a.split": 4, + "this.trigger": 2, + ".each": 3, + "queue": 7, + "dequeue": 6, + "c.queue": 3, + "d.shift": 2, + "d.unshift": 2, + "f.call": 1, + "c.dequeue": 4, + "c.fx": 1, + "c.fx.speeds": 1, + "this.queue": 4, + "clearQueue": 2, + "Aa": 3, + "ca": 6, + "Za": 2, + "r/g": 2, + "/href": 1, + "style/": 1, + "ab": 1, + "bb": 2, + "cb": 16, + "area": 2, + "Ba": 3, + "/radio": 1, + "checkbox/": 1, + "c.attr": 4, + "this.nodeType": 4, + "this.removeAttribute": 1, + "addClass": 2, + "r.addClass": 1, + "r.attr": 1, + "e.nodeType": 7, + "e.className": 14, + "j.indexOf": 1, + "removeClass": 2, + "n.removeClass": 1, + "n.attr": 1, + "j.replace": 2, + "toggleClass": 2, + "j.toggleClass": 1, + "j.attr": 1, + "i.hasClass": 1, + "hasClass": 2, + "": 1, + "val": 13, + "c.nodeName": 4, + "b.attributes.value": 1, + ".specified": 1, + "b.value": 4, + "b.selectedIndex": 2, + "b.options": 1, + "": 1, + "getAttribute": 3, + "nodeType=": 6, + "call": 9, + "checked=": 1, + "this.selected": 1, + "this.selectedIndex": 1, + "attrFn": 2, + "css": 7, + "c.attrFn": 1, + "c.isXMLDoc": 1, + "a.test": 2, + "ab.test": 1, + "a.getAttributeNode": 7, + ".nodeValue": 1, + "b.specified": 2, + "bb.test": 2, + "cb.test": 1, + "a.href": 2, + "c.support.style": 1, + "a.style.cssText": 3, + "a.setAttribute": 7, + "c.support.hrefNormalized": 1, + "c.style": 1, + "db": 1, + "detail": 3, + "layerX": 3, + "layerY": 3, + "newValue": 3, + "originalTarget": 1, + "prevValue": 3, + "wheelDelta": 3, + "click.specialSubmit": 2, + "submit": 14, + "keypress.specialSubmit": 2, + "password": 5, + ".specialSubmit": 2, + "_change_data": 6, + "file": 5, + ".specialChange": 4, + "unload": 5, + "live": 8, + "lastToggle": 4, + "die": 3, + "hover": 3, + "load": 5, + "resize": 3, + "scroll": 6, + "dblclick": 3, + "mousedown": 3, + "mouseup": 3, + "mousemove": 3, + "keydown": 4, + "keypress": 4, + "keyup": 3, + "onunload": 1, + "m": 76, + "h.nodeType": 4, + "H": 8, + "M": 9, + "I": 7, + "f.exec": 2, + "p.push": 2, + "p.length": 10, + "r.exec": 1, + "n.relative": 5, + "ga": 2, + "p.shift": 4, + "n.match.ID.test": 2, + "k.find": 6, + "v.expr": 4, + "k.filter": 5, + "v.set": 5, + "expr": 2, + "p.pop": 4, + "h.parentNode": 3, + "D": 9, + "k.error": 2, + "j.call": 2, + ".nodeType": 9, + "E": 11, + "l.push": 2, + "l.push.apply": 1, + "k.uniqueSort": 5, + "B": 5, + "g.sort": 1, + "g.length": 2, + "g.splice": 2, + "k.matches": 1, + "n.order.length": 1, + "n.order": 1, + "n.leftMatch": 1, + ".exec": 2, + "q.splice": 1, + "y.substr": 1, + "y.length": 1, + "Syntax": 3, + "unrecognized": 3, + "expression": 4, + "NAME": 2, + "TAG": 2, + "u00c0": 2, + "uFFFF": 2, + "leftMatch": 2, + "attrMap": 2, + "attrHandle": 2, + "g.getAttribute": 1, + "relative": 4, + "W/.test": 1, + "h.toLowerCase": 2, + "": 1, + "previousSibling": 5, + "nth": 5, + "even": 3, + "odd": 2, + "reset": 2, + "sourceIndex": 1, + "": 4, + "name=": 2, + "href=": 2, + "": 2, + "

": 2, + "class=": 5, + "

": 2, + ".TEST": 2, + "
": 4, + "
": 3, + "CLASS": 1, + "nextSibling": 3, + "": 1, + "": 1, + "
": 1, + "
": 1, + "": 4, + "
": 5, + "": 3, + "": 3, + "": 2, + "": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "position": 7, + "absolute": 2, + "solid": 2, + "#000": 2, + "padding": 4, + "": 1, + "": 1, + "fixed": 1, + "marginLeft": 2, + "borderTopWidth": 1, + "borderLeftWidth": 1, + "static": 2, + "Left": 1, + "Top": 1, + "pageXOffset": 2, + "pageYOffset": 1, + "Height": 1, + "Width": 1, + "scrollTo": 1, + "CSS1Compat": 1, + "client": 3, + "cy": 4, + "f.isWindow": 2, + "cv": 2, + "cj": 4, + "b.css": 1, + "b.remove": 1, + "ck": 5, + "c.createElement": 12, + "ck.frameBorder": 1, + "ck.width": 1, + "ck.height": 1, + "c.body.appendChild": 1, + "cl": 3, + "ck.createElement": 1, + "ck.contentWindow": 1, + "ck.contentDocument": 1, + ".document": 1, + "cl.write": 1, + "cl.createElement": 1, + "cl.body.appendChild": 1, + "f.css": 24, + "c.body.removeChild": 1, + "f.each": 21, + "cp.concat.apply": 1, + "cp.slice": 1, + "cq": 3, + "cs": 3, + "f.now": 2, + "a.ActiveXObject": 3, + "a.XMLHttpRequest": 1, + "a.dataFilter": 2, + "a.dataType": 1, + "a.dataTypes": 2, + "a.converters": 3, + "o.split": 1, + "f.error": 4, + "m.replace": 1, + "a.contents": 1, + "a.responseFields": 1, + "f.shift": 1, + "a.mimeType": 1, + "c.getResponseHeader": 1, + ".test": 1, + "f.unshift": 2, + "b_": 4, + "f.isArray": 8, + "bF.test": 1, + "c.dataTypes": 1, + "h.length": 3, + "bU": 4, + "c.dataTypes.unshift": 1, + "bZ": 3, + "f.isFunction": 21, + "b.toLowerCase": 3, + "bQ": 3, + "h.substr": 1, + "bD": 3, + "bx": 2, + "a.offsetWidth": 6, + "a.offsetHeight": 2, + "bn": 2, + "f.ajax": 3, + "f.globalEval": 2, + "bm": 3, + "f.nodeName": 16, + "bl": 3, + "a.getElementsByTagName": 9, + "f.grep": 3, + "a.defaultChecked": 1, + "a.checked": 4, + "bk": 5, + "a.querySelectorAll": 1, + "bj": 3, + "b.nodeType": 6, + "b.clearAttributes": 2, + "b.mergeAttributes": 2, + "b.nodeName.toLowerCase": 1, + "b.outerHTML": 1, + "a.outerHTML": 1, + "b.selected": 1, + "a.defaultSelected": 1, + "b.defaultValue": 1, + "a.defaultValue": 1, + "b.defaultChecked": 1, + "b.checked": 1, + "a.value": 8, + "b.removeAttribute": 3, + "f.expando": 23, + "f.hasData": 2, + "f.data": 25, + "d.events": 1, + "f.extend": 23, + "": 1, + "bh": 1, + "getElementsByTagName": 1, + "appendChild": 1, + "nodeType": 1, + "W": 3, + "N": 2, + "f._data": 15, + "r.live": 1, + "a.target.disabled": 1, + "a.namespace": 1, + "a.namespace.split": 1, + "r.live.slice": 1, + "s.length": 2, + "g.origType.replace": 1, + "q.push": 1, + "g.selector": 3, + "s.splice": 1, + "m.selector": 1, + "n.test": 2, + "g.namespace": 1, + "m.elem.disabled": 1, + "m.elem": 1, + "g.preType": 3, + "f.contains": 5, + "m.level": 1, + "": 1, + "e.elem": 2, + "e.handleObj.data": 1, + "e.handleObj": 1, + "e.handleObj.origHandler.apply": 1, + "a.isPropagationStopped": 1, + "e.level": 1, + "a.isImmediatePropagationStopped": 1, + "e.type": 6, + "e.originalEvent": 1, + "e.liveFired": 1, + "f.event.handle.call": 1, + "e.isDefaultPrevented": 2, + ".preventDefault": 1, + "f.removeData": 4, + "i.resolve": 1, + "c.replace": 4, + "f.isNaN": 3, + "i.test": 1, + "f.parseJSON": 2, + "a.navigator": 1, + "a.location": 1, + "e.isReady": 1, + "c.documentElement.doScroll": 2, + "e.ready": 6, + "e.fn.init": 1, + "a.jQuery": 2, + "a.": 2, + "d/": 3, + "d.userAgent": 1, + "C": 4, + "e.fn": 2, + "e.prototype": 1, + "c.body": 4, + "a.charAt": 2, + "i.exec": 1, + "d.ownerDocument": 1, + "n.exec": 1, + "e.isPlainObject": 1, + "e.fn.attr.call": 1, + "k.createElement": 1, + "e.buildFragment": 1, + "j.cacheable": 1, + "e.clone": 1, + "j.fragment": 2, + "e.merge": 3, + "c.getElementById": 1, + "h.id": 1, + "f.find": 2, + "d.jquery": 1, + "e.isFunction": 5, + "f.ready": 1, + "e.makeArray": 1, + "D.call": 4, + "e.isArray": 2, + "C.apply": 1, + "d.prevObject": 1, + "d.context": 2, + "d.selector": 2, + "e.each": 2, + "e.bindReady": 1, + "y.done": 1, + "D.apply": 1, + "e.map": 1, + "e.fn.init.prototype": 1, + "e.extend": 2, + "e.fn.extend": 1, + "": 1, + "jQuery=": 2, + "isReady=": 1, + "y.resolveWith": 1, + "e.fn.trigger": 1, + "e._Deferred": 1, + "c.readyState": 2, + "c.addEventListener": 4, + "a.addEventListener": 4, + "c.attachEvent": 3, + "a.attachEvent": 6, + "a.frameElement": 1, + "Array.isArray": 7, + "isWindow": 2, + "isNaN": 6, + "m.test": 1, + "A.call": 1, + "e.isWindow": 2, + "B.call": 3, + "e.trim": 1, + "a.JSON": 1, + "a.JSON.parse": 2, + "o.test": 1, + "e.error": 2, + "parseXML": 1, + "a.DOMParser": 1, + "DOMParser": 1, + "d.parseFromString": 1, + "ActiveXObject": 1, + "c.async": 4, + "c.loadXML": 1, + "c.documentElement": 4, + "d.nodeName": 4, + "j.test": 3, + "a.execScript": 1, + "a.eval.call": 1, + "c.apply": 2, + "c.call": 3, + "E.call": 1, + "C.call": 1, + "F.call": 1, + "c.length": 8, + "": 1, + "j=": 14, + "h.concat.apply": 1, + "f.concat": 1, + "g.guid": 3, + "e.guid": 3, + "e.access": 1, + "s.exec": 1, + "t.exec": 1, + "u.exec": 1, + "a.indexOf": 2, + "v.exec": 1, + "a.fn.init": 2, + "a.superclass": 1, + "a.fn": 2, + "a.prototype": 1, + "a.fn.constructor": 1, + "a.sub": 1, + "e.fn.init.call": 1, + "a.fn.init.prototype": 1, + "e.uaMatch": 1, + "x.browser": 2, + "e.browser": 1, + "e.browser.version": 1, + "x.version": 1, + "e.browser.webkit": 1, + "e.browser.safari": 1, + "c.removeEventListener": 2, + "c.detachEvent": 1, + "_Deferred": 4, + "done": 10, + "": 1, + "resolveWith": 4, + "shift": 1, + "apply": 8, + "finally": 3, + "resolve": 7, + "isResolved": 3, + "cancel": 6, + "Deferred": 5, + "rejectWith": 2, + "reject": 4, + "isRejected": 2, + "pipe": 2, + "promise": 14, + "h.call": 2, + "g.resolveWith": 3, + "<=1&&a&&f.isFunction(a.promise)?a:f.Deferred();if(d>": 1, + ".promise": 5, + ".then": 3, + "g.reject": 1, + "g.promise": 1, + "f.support": 2, + "f.appendChild": 1, + "a.firstChild.nodeType": 2, + "/top/.test": 2, + "e.getAttribute": 2, + "e.style.opacity": 1, + "e.style.cssFloat": 1, + "h.value": 3, + "g.selected": 1, + "a.className": 1, + "submitBubbles": 3, + "changeBubbles": 3, + "focusinBubbles": 2, + "inlineBlockNeedsLayout": 3, + "shrinkWrapBlocks": 2, + "reliableMarginRight": 2, + "h.checked": 2, + "j.noCloneChecked": 1, + "h.cloneNode": 1, + ".checked": 2, + "f.disabled": 1, + "j.optDisabled": 1, + "g.disabled": 1, + "j.deleteExpando": 1, + "a.fireEvent": 1, + "j.noCloneEvent": 1, + "a.detachEvent": 1, + "h.setAttribute": 2, + "j.radioValue": 1, + "c.createDocumentFragment": 1, + "k.appendChild": 1, + "j.checkClone": 1, + "k.cloneNode": 1, + "a.style.width": 1, + "a.style.paddingLeft": 1, + "visibility": 3, + "l.style": 1, + "l.appendChild": 1, + "j.appendChecked": 1, + "j.boxModel": 1, + "a.style": 8, + "a.style.display": 3, + "a.style.zoom": 1, + "j.inlineBlockNeedsLayout": 1, + "j.shrinkWrapBlocks": 1, + "j.reliableHiddenOffsets": 1, + "c.defaultView": 2, + "c.defaultView.getComputedStyle": 3, + "i.style.width": 1, + "i.style.marginRight": 1, + "j.reliableMarginRight": 1, + "l.innerHTML": 1, + "f.boxModel": 1, + "f.support.boxModel": 4, + "f.fn.jquery": 1, + "f.cache": 5, + "f.acceptData": 4, + "f.uuid": 1, + ".toJSON": 4, + "f.noop": 4, + "f.camelCase": 5, + ".events": 1, + "f.support.deleteExpando": 3, + "f.noData": 2, + "f.fn.extend": 9, + ".attributes": 2, + "g.indexOf": 2, + "g.substring": 1, + "b.triggerHandler": 2, + "_mark": 2, + "_unmark": 3, + "f.makeArray": 5, + "e.push": 3, + "f.queue": 3, + "c.shift": 2, + "c.unshift": 1, + "f.dequeue": 4, + "f.fx": 2, + "f.fx.speeds": 1, + "d.resolveWith": 1, + "f.Deferred": 2, + "f._Deferred": 2, + "l.done": 1, + "d.promise": 1, + "rea": 1, + "autofocus": 1, + "autoplay": 1, + "controls": 1, + "defer": 1, + "open": 2, + "required": 1, + "scoped": 1, + "f.access": 3, + "f.attr": 2, + "f.removeAttr": 3, + "f.prop": 2, + "removeProp": 1, + "f.propFix": 6, + "c.addClass": 1, + "f.trim": 2, + "c.removeClass": 1, + "g.nodeType": 6, + "g.className": 4, + "h.replace": 2, + "d.toggleClass": 1, + "d.attr": 1, + "h.hasClass": 1, + "": 1, + "f.valHooks": 7, + "e.nodeName.toLowerCase": 1, + "c.get": 1, + "e.value": 1, + "e.val": 1, + "f.map": 5, + "this.nodeName.toLowerCase": 1, + "this.type": 3, + "c.set": 1, + "valHooks": 1, + "a.attributes.value": 1, + "a.text": 1, + "a.selectedIndex": 3, + "a.options": 2, + "": 3, + "optDisabled": 1, + "selected=": 1, + "attrFix": 1, + "f.attrFn": 3, + "f.isXMLDoc": 4, + "f.attrFix": 3, + "f.attrHooks": 5, + "t.test": 2, + "d.toLowerCase": 1, + "c.toLowerCase": 4, + "u.test": 1, + "i.set": 1, + "i.get": 1, + "f.support.getSetAttribute": 2, + "a.removeAttributeNode": 1, + "q.test": 1, + "f.support.radioValue": 1, + "c.specified": 1, + "c.value": 1, + "r.test": 1, + "s.test": 1, + "propFix": 1, + "cellpadding": 1, + "contenteditable": 1, + "f.propHooks": 1, + "h.set": 1, + "h.get": 1, + "propHooks": 1, + "f.attrHooks.value": 1, + "v.get": 1, + "f.attrHooks.name": 1, + "f.valHooks.button": 1, + "d.nodeValue": 3, + "f.support.hrefNormalized": 1, + "f.support.style": 1, + "f.attrHooks.style": 1, + "a.style.cssText.toLowerCase": 1, + "f.support.optSelected": 1, + "f.propHooks.selected": 2, + "b.parentNode.selectedIndex": 1, + "f.support.checkOn": 1, + "f.inArray": 4, + "s.": 1, + "f.event": 2, + "d.handler": 1, + "g.handler": 1, + "d.guid": 4, + "f.guid": 3, + "i.events": 2, + "i.handle": 2, + "f.event.triggered": 3, + "f.event.handle.apply": 1, + "k.elem": 2, + "c.split": 2, + "l.indexOf": 1, + "l.split": 1, + "n.shift": 1, + "h.namespace": 2, + "n.slice": 1, + "h.type": 1, + "h.guid": 2, + "f.event.special": 5, + "p.setup": 1, + "p.setup.call": 1, + "p.add": 1, + "p.add.call": 1, + "h.handler.guid": 2, + "o.push": 1, + "f.event.global": 2, + "global": 5, + "s.events": 1, + "c.type": 9, + "c.handler": 1, + "c.charAt": 1, + "f.event.remove": 5, + "h.indexOf": 3, + "h.split": 2, + "m.shift": 1, + "m.slice": 1, + "q.namespace": 1, + "q.handler": 1, + "p.splice": 1, + "": 1, + "elem=": 4, + "customEvent": 1, + "trigger": 4, + "h.slice": 1, + "i.shift": 1, + "i.sort": 1, + "f.event.customEvent": 1, + "f.Event": 2, + "c.exclusive": 2, + "c.namespace": 2, + "i.join": 2, + "c.namespace_re": 1, + "c.preventDefault": 3, + "c.stopPropagation": 1, + "b.events": 4, + "f.event.trigger": 6, + "b.handle.elem": 2, + "c.result": 3, + "c.target": 3, + "c.currentTarget": 2, + "m.apply": 1, + "k.parentNode": 1, + "k.ownerDocument": 1, + "c.target.ownerDocument": 1, + "c.isPropagationStopped": 1, + "c.isDefaultPrevented": 2, + "o._default": 1, + "o._default.call": 1, + "e.ownerDocument": 1, + "f.event.fix": 2, + "a.event": 1, + "Array.prototype.slice.call": 1, + "namespace_re": 1, + "namespace": 1, + "handler=": 1, + "data=": 2, + "handleObj=": 1, + "result=": 1, + "preventDefault": 4, + "stopPropagation": 5, + "isImmediatePropagationStopped": 2, + "fix": 1, + "Event": 3, + "target=": 2, + "relatedTarget=": 1, + "fromElement=": 1, + "pageX=": 2, + "documentElement": 2, + "scrollLeft": 2, + "clientLeft": 2, + "pageY=": 1, + "scrollTop": 2, + "clientTop": 2, + "which=": 3, + "metaKey=": 1, + "1e8": 1, + "special": 3, + "setup": 5, + "teardown": 6, + "origType": 2, + "beforeunload": 1, + "onbeforeunload=": 3, + "removeEvent=": 1, + "removeEventListener": 3, + "detachEvent": 2, + "Event=": 1, + "originalEvent=": 1, + "type=": 5, + "isDefaultPrevented=": 2, + "defaultPrevented": 1, + "returnValue=": 2, + "getPreventDefault": 2, + "timeStamp=": 1, + "prototype=": 2, + "originalEvent": 2, + "isPropagationStopped=": 1, + "cancelBubble=": 1, + "stopImmediatePropagation": 1, + "isImmediatePropagationStopped=": 1, + "isDefaultPrevented": 1, + "isPropagationStopped": 1, + "G=": 1, + "H=": 1, + "submit=": 1, + "specialSubmit": 3, + "closest": 3, + "keyCode=": 1, + "J=": 1, + "selectedIndex": 1, + "a.selected": 1, + "z.test": 3, + "d.readOnly": 1, + "c.liveFired": 1, + "f.event.special.change": 1, + "filters": 1, + "beforedeactivate": 1, + "K.call": 2, + "a.keyCode": 2, + "beforeactivate": 1, + "f.event.add": 2, + "f.event.special.change.filters": 1, + "I.focus": 1, + "I.beforeactivate": 1, + "f.support.focusinBubbles": 1, + "c.originalEvent": 1, + "a.preventDefault": 3, + "f.fn": 9, + "e.apply": 1, + "this.one": 1, + "unbind": 2, + "this.unbind": 2, + "delegate": 1, + "this.live": 1, + "undelegate": 1, + "this.die": 1, + "triggerHandler": 1, + "toggle": 10, + ".guid": 1, + "this.click": 1, + "this.mouseenter": 1, + ".mouseleave": 1, + "g.charAt": 1, + "n.unbind": 1, + "y.exec": 1, + "a.push": 2, + "n.length": 1, + "": 1, + "this.bind": 2, + "": 2, + "sizcache=": 4, + "sizset": 2, + "sizset=": 2, + "toLowerCase": 3, + "W/": 2, + "d.nodeType": 5, + "k.isXML": 4, + "a.exec": 2, + "x.push": 1, + "x.length": 8, + "m.exec": 1, + "l.relative": 6, + "x.shift": 4, + "l.match.ID.test": 2, + "q.expr": 4, + "q.set": 4, + "x.pop": 4, + "d.parentNode": 4, + "e.call": 1, + "f.push.apply": 1, + "k.contains": 5, + "a.sort": 1, + "": 1, + "matches=": 1, + "matchesSelector=": 1, + "l.order.length": 1, + "l.order": 1, + "l.leftMatch": 1, + "j.substr": 1, + "": 1, + "__sizzle__": 1, + "sizzle": 1, + "l.match.PSEUDO.test": 1, + "a.document.nodeType": 1, + "a.getElementsByClassName": 3, + "a.lastChild.className": 1, + "l.order.splice": 1, + "l.find.CLASS": 1, + "b.getElementsByClassName": 2, + "c.documentElement.contains": 1, + "a.contains": 2, + "c.documentElement.compareDocumentPosition": 1, + "a.compareDocumentPosition": 1, + "a.ownerDocument": 1, + ".documentElement": 1, + "b.nodeName": 2, + "l.match.PSEUDO.exec": 1, + "l.match.PSEUDO": 1, + "f.expr": 4, + "k.selectors": 1, + "f.expr.filters": 3, + "f.unique": 4, + "f.text": 2, + "k.getText": 1, + "/Until": 1, + "parents": 2, + "prevUntil": 2, + "prevAll": 2, + "U": 1, + "f.expr.match.POS": 1, + "V": 2, + "contents": 4, + "next": 9, + "prev": 2, + ".filter": 2, + "": 1, + "e.splice": 1, + "this.filter": 2, + "": 1, + "": 1, + "index": 5, + ".is": 2, + "c.push": 3, + "g.parentNode": 2, + "U.test": 1, + "": 1, + "f.find.matchesSelector": 2, + "g.ownerDocument": 1, + "this.parent": 2, + ".children": 1, + "a.jquery": 2, + "f.merge": 2, + "this.get": 1, + "andSelf": 1, + "this.add": 1, + "f.dir": 6, + "parentsUntil": 1, + "f.nth": 2, + "nextAll": 1, + "nextUntil": 1, + "siblings": 1, + "f.sibling": 2, + "a.parentNode.firstChild": 1, + "a.contentDocument": 1, + "a.contentWindow.document": 1, + "a.childNodes": 1, + "T.call": 1, + "P.test": 1, + "f.filter": 2, + "R.test": 1, + "Q.test": 1, + "e.reverse": 1, + "g.join": 1, + "f.find.matches": 1, + "dir": 1, + "sibling": 1, + "a.nextSibling": 1, + "<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:]+)[^>": 1, + "tbody/i": 1, + "bc": 1, + "bd": 1, + "/checked": 1, + "s*.checked.": 1, + "java": 1, + "ecma": 1, + "script/i": 1, + "CDATA": 1, + "bg": 3, + "legend": 1, + "col": 7, + "_default": 5, + "bg.optgroup": 1, + "bg.option": 1, + "bg.tbody": 1, + "bg.tfoot": 1, + "bg.colgroup": 1, + "bg.caption": 1, + "bg.thead": 1, + "bg.th": 1, + "bg.td": 1, + "f.support.htmlSerialize": 1, + "bg._default": 2, + "c.text": 2, + "this.empty": 3, + ".append": 6, + ".createTextNode": 1, + "wrapAll": 1, + ".wrapAll": 2, + ".eq": 1, + ".clone": 1, + "b.map": 1, + "wrapInner": 1, + ".wrapInner": 1, + "b.contents": 1, + "c.wrapAll": 1, + "b.append": 1, + "unwrap": 1, + ".replaceWith": 1, + "this.childNodes": 1, + ".end": 1, + "append": 1, + "this.domManip": 4, + "this.appendChild": 1, + "prepend": 1, + "this.insertBefore": 1, + "this.firstChild": 1, + "this.parentNode.insertBefore": 2, + "a.push.apply": 2, + "this.nextSibling": 2, + ".toArray": 1, + "f.cleanData": 4, + "d.parentNode.removeChild": 1, + "b.getElementsByTagName": 1, + "this.map": 3, + "f.clone": 2, + ".innerHTML.replace": 1, + "bc.test": 2, + "f.support.leadingWhitespace": 2, + "Z.test": 2, + "_.exec": 2, + ".getElementsByTagName": 2, + "c.html": 3, + "replaceWith": 1, + "c.replaceWith": 1, + ".detach": 1, + "this.parentNode": 1, + ".before": 1, + "detach": 1, + "this.remove": 1, + "domManip": 1, + "f.support.checkClone": 2, + "bd.test": 2, + ".domManip": 1, + "g.html": 1, + "g.domManip": 1, + "j.parentNode": 1, + "f.support.parentNode": 1, + "i.nodeType": 1, + "i.childNodes.length": 1, + "f.buildFragment": 2, + "e.fragment": 1, + "h.childNodes.length": 1, + "h.firstChild": 2, + "": 1, + "k.length": 2, + ".charAt": 1, + "f.fragments": 3, + "i.createDocumentFragment": 1, + "f.clean": 1, + "appendTo": 1, + "prependTo": 1, + "insertBefore": 1, + "insertAfter": 1, + "replaceAll": 1, + "g.childNodes.length": 1, + "this.clone": 1, + "d.concat": 1, + "e.selector": 1, + "f.support.noCloneEvent": 1, + "f.support.noCloneChecked": 1, + "b.createElement": 2, + "b.createTextNode": 2, + "k.replace": 2, + "o.innerHTML": 1, + "o.lastChild": 1, + "f.support.tbody": 1, + "ba.test": 1, + "o.firstChild": 2, + "o.firstChild.childNodes": 1, + "o.childNodes": 2, + "q.length": 1, + ".childNodes.length": 1, + ".parentNode.removeChild": 2, + "o.insertBefore": 1, + "Z.exec": 1, + "f.support.appendChecked": 1, + "k.nodeType": 1, + "h.push": 1, + "be.test": 1, + ".type.toLowerCase": 1, + "h.splice.apply": 1, + "cleanData": 1, + "j.nodeName": 1, + "j.nodeName.toLowerCase": 1, + "f.removeEvent": 1, + "b.handle": 2, + "j.removeAttribute": 2, + "bo": 2, + "/alpha": 1, + "bp": 1, + "/opacity": 1, + "bq": 2, + "bs": 2, + "bv": 2, + "de": 1, + "bw": 2, + "bz": 7, + "bA": 3, + "bB": 5, + "bC": 2, + "f.fn.css": 1, + "f.style": 4, + "cssHooks": 1, + "cssNumber": 3, + "zIndex": 1, + "fontWeight": 1, + "zoom": 1, + "lineHeight": 1, + "widows": 1, + "orphans": 1, + "cssProps": 1, + "f.support.cssFloat": 1, + "f.cssHooks": 3, + "f.cssProps": 2, + "k.get": 1, + "bu.test": 1, + "d.replace": 1, + "f.cssNumber": 1, + "k.set": 1, + "g.get": 1, + "swap": 1, + "camelCase": 3, + "f.curCSS": 1, + "f.swap": 2, + "<0||e==null){e=a.style[b];return>": 1, + "0px": 1, + "f.support.opacity": 1, + "f.cssHooks.opacity": 1, + "bp.test": 1, + "a.currentStyle": 4, + "a.currentStyle.filter": 1, + "a.style.filter": 1, + "RegExp.": 1, + "/100": 2, + "c.zoom": 1, + "b*100": 1, + "d.filter": 1, + "c.filter": 2, + "bo.test": 1, + "g.replace": 1, + "f.support.reliableMarginRight": 1, + "f.cssHooks.marginRight": 1, + "a.style.marginRight": 1, + "a.ownerDocument.defaultView": 1, + "e.getComputedStyle": 1, + "g.getPropertyValue": 1, + "a.ownerDocument.documentElement": 1, + "c.documentElement.currentStyle": 1, + "a.runtimeStyle": 2, + "bs.test": 1, + "bt.test": 1, + "f.left": 3, + "a.runtimeStyle.left": 2, + "a.currentStyle.left": 1, + "f.pixelLeft": 1, + "f.expr.filters.hidden": 2, + "f.support.reliableHiddenOffsets": 1, + "f.expr.filters.visible": 1, + "bE": 2, + "bF": 1, + "bG": 3, + "n/g": 1, + "bH": 2, + "/#.*": 1, + "bI": 1, + "/mg": 1, + "bJ": 1, + "date": 1, + "datetime": 1, + "month": 1, + "time": 1, + "week": 1, + "bK": 1, + "about": 1, + "storage": 1, + "extension": 1, + "widget": 1, + "bL": 1, + "GET": 1, + "HEAD": 3, + "bM": 2, + "bN": 2, + "bO": 2, + "<\\/script>": 2, + "bP": 1, + "bR": 2, + "*/": 2, + "bS": 1, + "bT": 2, + "f.fn.load": 1, + "bV": 3, + "bW": 5, + "bX": 8, + "e.href": 1, + "bY": 1, + "bW.href": 2, + "bS.exec": 1, + "bW.toLowerCase": 1, + "bT.apply": 1, + "a.slice": 2, + "f.param": 2, + "f.ajaxSettings.traditional": 2, + "complete": 6, + "a.responseText": 1, + "a.isResolved": 1, + "a.done": 1, + "i.html": 1, + "i.each": 1, + "serialize": 1, + "this.serializeArray": 1, + "serializeArray": 1, + "this.elements": 2, + "this.disabled": 1, + "this.checked": 1, + "bP.test": 1, + "bJ.test": 1, + ".map": 1, + "b.name": 2, + "success": 2, + "getScript": 1, + "f.get": 2, + "getJSON": 1, + "ajaxSetup": 1, + "f.ajaxSettings": 4, + "ajaxSettings": 1, + "isLocal": 1, + "bK.test": 1, + "contentType": 4, + "accepts": 5, + "xml": 3, + "json": 2, + "/xml/": 1, + "/html/": 1, + "/json/": 1, + "responseFields": 1, + "converters": 2, + "a.String": 1, + "f.parseXML": 1, + "ajaxPrefilter": 1, + "ajaxTransport": 1, + "ajax": 2, + "v.readyState": 1, + "d.ifModified": 1, + "v.getResponseHeader": 2, + "f.lastModified": 1, + "f.etag": 1, + "v.status": 1, + "v.statusText": 1, + "h.resolveWith": 1, + "h.rejectWith": 1, + "v.statusCode": 2, + "g.trigger": 2, + "i.resolveWith": 1, + "f.active": 1, + "f.ajaxSetup": 3, + "d.statusCode": 1, + "readyState": 1, + "setRequestHeader": 6, + "getAllResponseHeaders": 1, + "getResponseHeader": 1, + "bI.exec": 1, + "overrideMimeType": 1, + "d.mimeType": 1, + "abort": 4, + "p.abort": 1, + "h.promise": 1, + "v.success": 1, + "v.done": 1, + "v.error": 1, + "v.fail": 1, + "v.complete": 1, + "i.done": 1, + "<2)for(b>": 1, + "status": 3, + "url=": 1, + "dataTypes=": 1, + "crossDomain=": 2, + "80": 2, + "443": 2, + "traditional": 1, + "toUpperCase": 1, + "hasContent=": 1, + "active": 2, + "ajaxStart": 1, + "hasContent": 2, + "cache=": 1, + "x=": 1, + "1_=": 1, + "_=": 1, + "Content": 1, + "Type": 1, + "ifModified": 1, + "lastModified": 3, + "Modified": 1, + "etag": 3, + "None": 1, + "Accept": 1, + "dataTypes": 4, + "q=": 1, + "01": 1, + "headers": 41, + "beforeSend": 2, + "No": 1, + "Transport": 1, + "readyState=": 1, + "ajaxSend": 1, + "timeout": 2, + "v.abort": 1, + "d.timeout": 1, + "p.send": 1, + "encodeURIComponent": 2, + "f.isPlainObject": 1, + "d.join": 1, + "cc": 2, + "cd": 3, + "jsonp": 1, + "jsonpCallback": 1, + "f.ajaxPrefilter": 2, + "b.contentType": 1, + "b.data": 5, + "b.dataTypes": 2, + "b.jsonp": 3, + "cd.test": 2, + "b.url": 4, + "b.jsonpCallback": 4, + "d.always": 1, + "b.converters": 1, + "/javascript": 1, + "ecmascript/": 1, + "a.cache": 2, + "a.crossDomain": 2, + "a.global": 1, + "f.ajaxTransport": 2, + "c.head": 1, + "c.getElementsByTagName": 1, + "send": 2, + "d.async": 1, + "a.scriptCharset": 2, + "d.charset": 1, + "d.src": 1, + "a.url": 1, + "d.onload": 3, + "d.onreadystatechange": 2, + "d.readyState": 2, + "/loaded": 1, + "complete/.test": 1, + "e.removeChild": 1, + "e.insertBefore": 1, + "e.firstChild": 1, + "cg": 7, + "f.ajaxSettings.xhr": 2, + "this.isLocal": 1, + "cors": 1, + "f.support.ajax": 1, + "c.crossDomain": 3, + "f.support.cors": 1, + "c.xhr": 1, + "c.username": 2, + "h.open": 2, + "c.url": 2, + "c.password": 1, + "c.xhrFields": 3, + "c.mimeType": 2, + "h.overrideMimeType": 2, + "h.setRequestHeader": 1, + "h.send": 1, + "c.hasContent": 1, + "h.readyState": 3, + "h.onreadystatechange": 2, + "h.abort": 1, + "h.status": 1, + "h.getAllResponseHeaders": 1, + "h.responseXML": 1, + "n.documentElement": 1, + "m.xml": 1, + "m.text": 2, + "h.responseText": 1, + "h.statusText": 1, + "c.isLocal": 1, + ".unload": 1, + "cm": 2, + "show": 10, + "hide": 8, + "cn": 1, + "co": 5, + "cp": 1, + "a.webkitRequestAnimationFrame": 1, + "a.mozRequestAnimationFrame": 1, + "a.oRequestAnimationFrame": 1, + "this.animate": 2, + "d.style": 3, + ".style": 1, + "": 1, + "_toggle": 2, + "animate": 4, + "fadeTo": 1, + "queue=": 2, + "animatedProperties=": 1, + "animatedProperties": 2, + "specialEasing": 2, + "easing": 3, + "swing": 2, + "overflow=": 2, + "overflow": 2, + "overflowX": 1, + "overflowY": 1, + "display=": 3, + "zoom=": 1, + "fx": 10, + "m=": 2, + "cur": 6, + "custom": 5, + "timers": 3, + "slideDown": 1, + "slideUp": 1, + "slideToggle": 1, + "fadeIn": 1, + "fadeOut": 1, + "fadeToggle": 1, + "duration": 4, + "duration=": 2, + "off": 1, + "speeds": 4, + "old=": 1, + "complete=": 1, + "old": 2, + "linear": 1, + "cos": 1, + "options=": 1, + "prop=": 3, + "orig=": 1, + "orig": 3, + "step": 7, + "startTime=": 1, + "start=": 1, + "end=": 1, + "unit=": 1, + "unit": 1, + "now=": 1, + "pos=": 1, + "state=": 1, + "co=": 2, + "tick": 3, + "show=": 1, + "hide=": 1, + "e.duration": 3, + "this.startTime": 2, + "this.now": 3, + "this.end": 2, + "this.pos": 4, + "this.state": 3, + "this.update": 2, + "e.animatedProperties": 5, + "this.prop": 2, + "e.overflow": 2, + "f.support.shrinkWrapBlocks": 1, + "e.hide": 2, + "e.show": 1, + "e.orig": 1, + "e.complete.call": 1, + "Infinity": 1, + "h/e.duration": 1, + "f.easing": 1, + "this.start": 2, + "*this.pos": 1, + "f.timers": 2, + "a.splice": 1, + "f.fx.stop": 1, + "slow": 1, + "fast": 1, + "a.elem": 2, + "a.now": 4, + "a.elem.style": 3, + "a.prop": 5, + "a.unit": 1, + "f.expr.filters.animated": 1, + "b.elem": 1, + "cw": 1, + "able": 1, + "f.fn.offset": 2, + "f.offset.setOffset": 2, + "b.ownerDocument.body": 2, + "f.offset.bodyOffset": 2, + "b.getBoundingClientRect": 1, + "e.documentElement": 4, + "c.top": 4, + "c.left": 4, + "e.body": 3, + "g.clientTop": 1, + "h.clientTop": 1, + "g.clientLeft": 1, + "h.clientLeft": 1, + "i.pageYOffset": 1, + "g.scrollTop": 1, + "h.scrollTop": 2, + "i.pageXOffset": 1, + "g.scrollLeft": 1, + "h.scrollLeft": 2, + "f.offset.initialize": 3, + "b.offsetParent": 2, + "g.documentElement": 1, + "g.body": 1, + "g.defaultView": 1, + "j.getComputedStyle": 2, + "b.currentStyle": 2, + "b.offsetTop": 2, + "b.offsetLeft": 2, + "f.offset.supportsFixedPosition": 2, + "k.position": 4, + "b.scrollTop": 1, + "b.scrollLeft": 1, + "f.offset.doesNotAddBorder": 1, + "f.offset.doesAddBorderForTableAndCells": 1, + "cw.test": 1, + "c.borderTopWidth": 2, + "c.borderLeftWidth": 2, + "f.offset.subtractsBorderForOverflowNotVisible": 1, + "c.overflow": 1, + "i.offsetTop": 1, + "i.offsetLeft": 1, + "i.scrollTop": 1, + "i.scrollLeft": 1, + "f.offset": 1, + "b.style": 1, + "d.nextSibling.firstChild.firstChild": 1, + "this.doesNotAddBorder": 1, + "e.offsetTop": 4, + "this.doesAddBorderForTableAndCells": 1, + "h.offsetTop": 1, + "e.style.position": 2, + "e.style.top": 2, + "this.supportsFixedPosition": 1, + "d.style.overflow": 1, + "d.style.position": 1, + "this.subtractsBorderForOverflowNotVisible": 1, + "this.doesNotIncludeMarginInBodyOffset": 1, + "a.offsetTop": 2, + "bodyOffset": 1, + "a.offsetLeft": 1, + "f.offset.doesNotIncludeMarginInBodyOffset": 1, + "setOffset": 1, + "a.style.position": 1, + "e.offset": 1, + "e.position": 1, + "l.top": 1, + "l.left": 1, + "b.top": 2, + "k.top": 1, + "g.top": 1, + "b.left": 2, + "k.left": 1, + "g.left": 1, + "b.using.call": 1, + "e.css": 1, + "this.offsetParent": 2, + "cx.test": 2, + "b.offset": 1, + "d.top": 2, + "d.left": 2, + "offsetParent": 1, + "a.offsetParent": 1, + "g.document.documentElement": 1, + "g.document.body": 1, + "g.scrollTo": 1, + ".scrollLeft": 1, + ".scrollTop": 1, + "e.document.documentElement": 1, + "e.document.compatMode": 1, + "e.document.body": 1, + "this.css": 1, + "cubes": 4, + "math": 4, + "num": 23, + "opposite": 6, + "race": 4, + "square": 10, + "__slice": 2, + "Math.sqrt": 2, + "cube": 2, + "runners": 6, + "winner": 6, + "__slice.call": 2, + "print": 2, + "elvis": 4, + "_i": 10, + "_len": 6, + "_results": 6, + "_results.push": 2, + "math.cube": 2, + "console.log": 3, + "KEYWORDS": 2, + "array_to_hash": 11, + "RESERVED_WORDS": 2, + "KEYWORDS_BEFORE_EXPRESSION": 2, + "KEYWORDS_ATOM": 2, + "OPERATOR_CHARS": 1, + "characters": 6, + "RE_HEX_NUMBER": 1, + "RE_OCT_NUMBER": 1, + "RE_DEC_NUMBER": 1, + "OPERATORS": 2, + "WHITESPACE_CHARS": 2, + "PUNC_BEFORE_EXPRESSION": 2, + "PUNC_CHARS": 1, + "REGEXP_MODIFIERS": 1, + "UNICODE": 1, + "non_spacing_mark": 1, + "space_combining_mark": 1, + "connector_punctuation": 1, + "is_letter": 3, + "UNICODE.letter.test": 1, + "is_digit": 3, + "ch.charCodeAt": 1, + "//XXX": 1, + "out": 1, + "means": 1, + "than": 3, + "is_alphanumeric_char": 3, + "is_unicode_combining_mark": 2, + "UNICODE.non_spacing_mark.test": 1, + "UNICODE.space_combining_mark.test": 1, + "is_unicode_connector_punctuation": 2, + "UNICODE.connector_punctuation.test": 1, + "is_identifier_start": 2, + "is_identifier_char": 1, + "zero": 2, + "joiner": 2, + "": 1, + "": 1, + "my": 1, + "ECMA": 1, + "PDF": 1, + "parse_js_number": 2, + "RE_HEX_NUMBER.test": 1, + "num.substr": 2, + "RE_OCT_NUMBER.test": 1, + "RE_DEC_NUMBER.test": 1, + "JS_Parse_Error": 2, + "message": 5, + "this.col": 2, + "ex": 3, + "ex.name": 1, + "this.stack": 2, + "ex.stack": 1, + "JS_Parse_Error.prototype.toString": 1, + "js_error": 2, + "is_token": 1, + "token": 5, + "token.type": 1, + "token.value": 1, + "EX_EOF": 3, + "tokenizer": 2, + "TEXT": 1, + "TEXT.replace": 1, + "uFEFF/": 1, + "tokpos": 1, + "tokline": 1, + "tokcol": 1, + "newline_before": 1, + "regex_allowed": 1, + "comments_before": 1, + "peek": 5, + "S.text.charAt": 2, + "S.pos": 4, + "signal_eof": 4, + "S.newline_before": 3, + "S.line": 2, + "S.col": 3, + "eof": 6, + "S.peek": 1, + "what": 2, + "S.text.indexOf": 1, + "start_token": 1, + "S.tokline": 3, + "S.tokcol": 3, + "S.tokpos": 3, + "is_comment": 2, + "S.regex_allowed": 1, + "HOP": 5, + "UNARY_POSTFIX": 1, + "nlb": 1, + "ret.comments_before": 1, + "S.comments_before": 2, + "skip_whitespace": 1, + "read_while": 2, + "pred": 2, + "parse_error": 3, + "err": 5, + "read_num": 1, + "prefix": 6, + "has_e": 3, + "after_e": 5, + "has_x": 5, + "has_dot": 3, + "valid": 4, + "read_escaped_char": 1, + "hex_bytes": 3, + "digit": 3, + "<<": 4, + "read_string": 1, + "with_eof_error": 1, + "comment1": 1, + "Unterminated": 2, + "multiline": 1, + "comment2": 1, + "WARNING": 1, + "***": 1, + "Found": 1, + "warn": 3, + "tok": 1, + "read_name": 1, + "backslash": 2, + "Expecting": 1, + "UnicodeEscapeSequence": 1, + "uXXXX": 1, + "Unicode": 1, + "identifier": 1, + "regular": 1, + "regexp": 5, + "operator": 14, + "punc": 27, + "atom": 5, + "keyword": 11, + "Unexpected": 3, + "void": 1, + "<\",>": 1, + "<=\",>": 1, + "debugger": 2, + "outside": 2, + "const": 2, + "stat": 1, + "Label": 1, + "without": 1, + "statement": 1, + "inside": 3, + "defun": 1, + "Name": 1, + "Missing": 1, + "catch/finally": 1, + "blocks": 1, + "unary": 2, + "dot": 2, + "postfix": 1, + "Invalid": 2, + "binary": 1, + "conditional": 1, + "assign": 1, + "assignment": 1, + "seq": 1, + "member": 2, + "array.length": 1, + "Object.prototype.hasOwnProperty.call": 1, + "exports.tokenizer": 1, + "exports.parse": 1, + "parse": 1, + "exports.slice": 1, + "exports.curry": 1, + "curry": 1, + "exports.member": 1, + "exports.array_to_hash": 1, + "exports.PRECEDENCE": 1, + "PRECEDENCE": 1, + "exports.KEYWORDS_ATOM": 1, + "exports.RESERVED_WORDS": 1, + "exports.KEYWORDS": 1, + "exports.ATOMIC_START_TOKEN": 1, + "ATOMIC_START_TOKEN": 1, + "exports.OPERATORS": 1, + "exports.is_alphanumeric_char": 1, + "exports.set_logger": 1, + "logger": 2, + "rdigit": 1, + "readyList.resolveWith": 1, + "jQuery._Deferred": 3, + "breaking": 1, + "Promise": 1, + "promiseMethods": 3, + "Static": 1, + "sliceDeferred": 1, + "Create": 1, + "doing": 3, + "flag": 1, + "cancelled": 5, + "f1": 1, + "f2": 1, + "...": 1, + "_fired": 5, + "deferred.done.apply": 2, + "callbacks.push": 1, + "deferred.resolveWith": 5, + "given": 3, + "available": 1, + "#8421": 1, + "callbacks.shift": 1, + "Has": 1, + "resolved": 1, + "Cancel": 1, + "Full": 1, + "fledged": 1, + "two": 1, + "func": 3, + "failDeferred": 1, + "errorDeferred": 1, + "doneCallbacks": 2, + "failCallbacks": 2, + "deferred.done": 2, + ".fail": 2, + ".fail.apply": 1, + "failDeferred.done": 1, + "failDeferred.resolveWith": 1, + "failDeferred.resolve": 1, + "failDeferred.isResolved": 1, + "fnDone": 2, + "fnFail": 2, + "jQuery.Deferred": 1, + "newDefer": 3, + "action": 3, + "returned": 4, + "fn.apply": 1, + "returned.promise": 2, + "newDefer.resolve": 1, + "newDefer.reject": 1, + "provided": 1, + "aspect": 1, + "added": 1, + "promiseMethods.length": 1, + "failDeferred.cancel": 1, + "deferred.cancel": 2, + "Unexpose": 1, + "Call": 1, + "func.call": 1, + "helper": 1, + "firstParam": 6, + "count": 4, + "<=>": 1, + "resolveFunc": 2, + "sliceDeferred.call": 2, + "Strange": 1, + "FF4": 1, + "Values": 1, + "onto": 2, + "sometimes": 1, + ".when": 1, + "Cloning": 2, + "into": 2, + "fresh": 1, + "solves": 1, + "issue": 1, + "deferred.reject": 1, + "deferred.promise": 1, + "jQuery.support": 1, + "bodyStyle": 1, + "Preliminary": 1, + "div.setAttribute": 1, + "automatically": 2, + "inserted": 1, + "insert": 1, + "tables": 1, + "serialized": 3, + "correctly": 1, + "innerHTML": 1, + "This": 3, + "requires": 1, + "wrapper": 1, + "URLs": 1, + "opt.selected": 1, + "setAttribute": 1, + "class.": 1, + "works": 1, + "attrFixes": 1, + "get/setAttribute": 1, + "ie6/7": 1, + "div.className": 1, + "later": 1, + "properly": 2, + "cloned": 1, + "input.checked": 1, + "support.noCloneChecked": 1, + "input.cloneNode": 1, + "selects": 1, + "Internet": 1, + "Explorer": 1, + "div.test": 1, + "support.deleteExpando": 1, + "div.addEventListener": 1, + "div.attachEvent": 2, + "div.fireEvent": 1, + "shouldn": 2, + "GC": 2, + "references": 1, + "across": 1, + "boundary": 1, + "attached": 1, + "occur": 1, + "defining": 1, + "allows": 1, + "shortcut": 1, + "same": 1, + "path": 5, + "Avoid": 1, + "trying": 1, + "since": 1, + "ends": 1, + "jQuery.uuid": 1, + "TODO": 2, + "hack": 2, + "ONLY.": 2, + "Avoids": 2, + "exposing": 2, + "metadata": 2, + "plain": 2, + "jQuery.noop": 2, + "An": 1, + "key/value": 1, + "pair": 1, + "shallow": 1, + "copied": 1, + "existing": 1, + "Internal": 1, + "separate": 1, + "destroy": 1, + "had": 1, + "thing": 2, + "internalCache": 3, + "Browsers": 1, + "deletion": 1, + "refuse": 1, + "browsers": 2, + "faster": 1, + "iterating": 1, + "persist": 1, + "existed": 1, + "jQuery.isNaN": 1, + "Normalize": 1, + "jQuery.attrFix": 2, + "formHook": 3, + "forms": 1, + "rinvalidChar.test": 1, + "jQuery.support.getSetAttribute": 1, + "elem.removeAttributeNode": 1, + "elem.getAttributeNode": 1, + "bubbling": 1, + "live.": 2, + "hasDuplicate": 1, + "baseHasDuplicate": 2, + "rBackslash": 1, + "rNonWord": 1, + "Sizzle": 1, + "results": 4, + "seed": 1, + "origContext": 1, + "context.nodeType": 2, + "checkSet": 1, + "extra": 1, + "pop": 1, + "prune": 1, + "contextXML": 1, + "Sizzle.isXML": 1, + "soFar": 1, + "Reset": 1, + "util": 1, + "require": 9, + "net": 1, + "stream": 1, + "EventEmitter": 3, + ".EventEmitter": 1, + "FreeList": 2, + ".FreeList": 1, + "HTTPParser": 2, + "process.binding": 1, + ".HTTPParser": 1, + "assert": 8, + ".ok": 1, + "END_OF_FILE": 3, + "debug": 15, + "process.env.NODE_DEBUG": 2, + "/http/.test": 1, + "console.error": 3, + "parserOnHeaders": 2, + "this.maxHeaderPairs": 2, + "this._headers.length": 1, + "this._headers": 13, + "this._headers.concat": 1, + "this._url": 1, + "parserOnHeadersComplete": 2, + "parser": 27, + "info.headers": 1, + "info.url": 1, + "parser._headers": 6, + "parser._url": 4, + "parser.incoming": 9, + "IncomingMessage": 4, + "parser.socket": 4, + "parser.incoming.httpVersionMajor": 1, + "info.versionMajor": 2, + "parser.incoming.httpVersionMinor": 1, + "info.versionMinor": 2, + "parser.incoming.httpVersion": 1, + "parser.incoming.url": 1, + "headers.length": 2, + "parser.maxHeaderPairs": 4, + "parser.incoming._addHeaderLine": 2, + "info.method": 2, + "parser.incoming.method": 1, + "parser.incoming.statusCode": 2, + "info.statusCode": 1, + "parser.incoming.upgrade": 4, + "info.upgrade": 2, + "skipBody": 3, + "response": 3, + "CONNECT": 1, + "parser.onIncoming": 3, + "info.shouldKeepAlive": 1, + "parserOnBody": 2, + "b.slice": 1, + "parser.incoming._paused": 2, + "parser.incoming._pendings.length": 2, + "parser.incoming._pendings.push": 2, + "parser.incoming._emitData": 1, + "parserOnMessageComplete": 2, + "parser.incoming.complete": 2, + "parser.incoming.readable": 1, + "parser.incoming._emitEnd": 1, + "parser.socket.readable": 1, + "parser.socket.resume": 1, + "parsers": 2, + "HTTPParser.REQUEST": 2, + "parser.onHeaders": 1, + "parser.onHeadersComplete": 1, + "parser.onBody": 1, + "parser.onMessageComplete": 1, + "exports.parsers": 1, + "CRLF": 13, + "STATUS_CODES": 2, + "exports.STATUS_CODES": 1, + "RFC": 16, + "obsoleted": 1, + "connectionExpression": 1, + "/Connection/i": 1, + "transferEncodingExpression": 1, + "/Transfer": 1, + "Encoding/i": 1, + "closeExpression": 1, + "/close/i": 1, + "chunkExpression": 1, + "/chunk/i": 1, + "contentLengthExpression": 1, + "/Content": 1, + "Length/i": 1, + "dateExpression": 1, + "/Date/i": 1, + "expectExpression": 1, + "/Expect/i": 1, + "continueExpression": 1, + "continue/i": 1, + "dateCache": 5, + "utcDate": 2, + "d.toUTCString": 1, + "d.getMilliseconds": 1, + "socket": 26, + "stream.Stream.call": 2, + "this.socket": 10, + "this.connection": 8, + "this.httpVersion": 1, + "this.complete": 2, + "this.headers": 2, + "this.trailers": 2, + "this.readable": 1, + "this._paused": 3, + "this._pendings": 1, + "this._endEmitted": 3, + "this.url": 1, + "this.method": 2, + "this.statusCode": 3, + "this.client": 1, + "util.inherits": 7, + "stream.Stream": 2, + "exports.IncomingMessage": 1, + "IncomingMessage.prototype.destroy": 1, + "this.socket.destroy": 3, + "IncomingMessage.prototype.setEncoding": 1, + "StringDecoder": 2, + ".StringDecoder": 1, + "lazy": 1, + "this._decoder": 2, + "IncomingMessage.prototype.pause": 1, + "this.socket.pause": 1, + "IncomingMessage.prototype.resume": 1, + "this.socket.resume": 1, + "this._emitPending": 1, + "IncomingMessage.prototype._emitPending": 1, + "this._pendings.length": 1, + "process.nextTick": 1, + "self._paused": 1, + "self._pendings.length": 2, + "chunk": 14, + "self._pendings.shift": 1, + "Buffer.isBuffer": 2, + "self._emitData": 1, + "self.readable": 1, + "self._emitEnd": 1, + "IncomingMessage.prototype._emitData": 1, + "this._decoder.write": 1, + "string.length": 1, + "this.emit": 5, + "IncomingMessage.prototype._emitEnd": 1, + "IncomingMessage.prototype._addHeaderLine": 1, + "field": 36, + "dest": 12, + "field.toLowerCase": 1, + ".push": 3, + "field.slice": 1, + "OutgoingMessage": 5, + "this.output": 3, + "this.outputEncodings": 2, + "this.writable": 1, + "this._last": 3, + "this.chunkedEncoding": 6, + "this.shouldKeepAlive": 4, + "this.useChunkedEncodingByDefault": 4, + "this.sendDate": 3, + "this._hasBody": 6, + "this._trailer": 5, + "this.finished": 4, + "exports.OutgoingMessage": 1, + "OutgoingMessage.prototype.destroy": 1, + "OutgoingMessage.prototype._send": 1, + "this._headerSent": 5, + "this._header": 10, + "this.output.unshift": 1, + "this.outputEncodings.unshift": 1, + "this._writeRaw": 2, + "OutgoingMessage.prototype._writeRaw": 1, + "data.length": 3, + "this.connection._httpMessage": 3, + "this.connection.writable": 3, + "this.output.length": 5, + "this._buffer": 2, + "this.output.shift": 2, + "this.outputEncodings.shift": 2, + "this.connection.write": 4, + "OutgoingMessage.prototype._buffer": 1, + "this.output.push": 2, + "this.outputEncodings.push": 2, + "lastEncoding": 2, + "lastData": 2, + "data.constructor": 1, + "lastData.constructor": 1, + "OutgoingMessage.prototype._storeHeader": 1, + "firstLine": 2, + "sentConnectionHeader": 3, + "sentContentLengthHeader": 4, + "sentTransferEncodingHeader": 3, + "sentDateHeader": 3, + "sentExpect": 3, + "messageHeader": 7, + "store": 3, + "connectionExpression.test": 1, + "closeExpression.test": 1, + "self._last": 4, + "self.shouldKeepAlive": 4, + "transferEncodingExpression.test": 1, + "chunkExpression.test": 1, + "self.chunkedEncoding": 1, + "contentLengthExpression.test": 1, + "dateExpression.test": 1, + "expectExpression.test": 1, + "Object.keys": 5, + "keys.length": 5, + "value.length": 1, + "shouldSendKeepAlive": 2, + "this.agent": 2, + "this._send": 8, + "OutgoingMessage.prototype.setHeader": 1, + "this._headerNames": 5, + "OutgoingMessage.prototype.getHeader": 1, + "OutgoingMessage.prototype.removeHeader": 1, + "OutgoingMessage.prototype._renderHeaders": 1, + "OutgoingMessage.prototype.write": 1, + "this._implicitHeader": 2, + "chunk.length": 2, + "Buffer.byteLength": 2, + "len.toString": 2, + "OutgoingMessage.prototype.addTrailers": 1, + "OutgoingMessage.prototype.end": 1, + "hot": 3, + "this.write": 1, + "chunk.": 1, + "this._finish": 2, + "OutgoingMessage.prototype._finish": 1, + "ServerResponse": 5, + "DTRACE_HTTP_SERVER_RESPONSE": 1, + "ClientRequest": 6, + "DTRACE_HTTP_CLIENT_REQUEST": 1, + "OutgoingMessage.prototype._flush": 1, + "this.socket.writable": 2, + "XXX": 1, + "Necessary": 1, + "this.socket.write": 1, + "req": 32, + "OutgoingMessage.call": 2, + "req.method": 5, + "req.httpVersionMajor": 2, + "req.httpVersionMinor": 2, + "exports.ServerResponse": 1, + "ServerResponse.prototype.statusCode": 1, + "onServerResponseClose": 3, + "this._httpMessage.emit": 2, + "ServerResponse.prototype.assignSocket": 1, + "socket._httpMessage": 9, + "socket.on": 2, + "this._flush": 1, + "ServerResponse.prototype.detachSocket": 1, + "socket.removeListener": 5, + "ServerResponse.prototype.writeContinue": 1, + "this._sent100": 2, + "ServerResponse.prototype._implicitHeader": 1, + "this.writeHead": 1, + "ServerResponse.prototype.writeHead": 1, + "statusCode": 7, + "reasonPhrase": 4, + "headerIndex": 4, + "this._renderHeaders": 3, + "obj.length": 1, + "obj.push": 1, + "statusLine": 2, + "statusCode.toString": 1, + "this._expect_continue": 1, + "this._storeHeader": 2, + "ServerResponse.prototype.writeHeader": 1, + "this.writeHead.apply": 1, + "Agent": 5, + "self.options": 2, + "self.requests": 6, + "self.sockets": 3, + "self.maxSockets": 1, + "self.options.maxSockets": 1, + "Agent.defaultMaxSockets": 2, + "self.on": 1, + "port": 29, + "localAddress": 15, + ".shift": 1, + ".onSocket": 1, + "socket.destroy": 10, + "self.createConnection": 2, + "net.createConnection": 3, + "exports.Agent": 1, + "Agent.prototype.defaultPort": 1, + "Agent.prototype.addRequest": 1, + "this.sockets": 9, + "this.maxSockets": 1, + "req.onSocket": 1, + "this.createSocket": 2, + "this.requests": 5, + "Agent.prototype.createSocket": 1, + "util._extend": 1, + "options.port": 4, + "options.host": 4, + "options.localAddress": 3, + "onFree": 3, + "self.emit": 9, + "s.on": 4, + "onClose": 3, + "self.removeSocket": 2, + "onRemove": 3, + "s.removeListener": 3, + "Agent.prototype.removeSocket": 1, + ".emit": 1, + "globalAgent": 3, + "exports.globalAgent": 1, + "self.agent": 3, + "options.agent": 3, + "defaultPort": 3, + "options.defaultPort": 1, + "options.hostname": 1, + "options.setHost": 1, + "setHost": 2, + "self.socketPath": 4, + "options.socketPath": 1, + "self.method": 3, + "options.method": 2, + "self.path": 3, + "options.path": 2, + "self.once": 2, + "options.headers": 7, + "self.setHeader": 1, + "this.getHeader": 2, + "hostHeader": 3, + "this.setHeader": 2, + "options.auth": 2, + "//basic": 1, + "auth": 1, + "Buffer": 1, + "self.useChunkedEncodingByDefault": 2, + "self._storeHeader": 2, + "self.getHeader": 1, + "self._renderHeaders": 1, + "options.createConnection": 4, + "self.onSocket": 3, + "self.agent.addRequest": 1, + "conn": 3, + "self._deferToConnect": 1, + "self._flush": 1, + "exports.ClientRequest": 1, + "ClientRequest.prototype._implicitHeader": 1, + "this.path": 1, + "ClientRequest.prototype.abort": 1, + "this._deferToConnect": 3, + "createHangUpError": 3, + "error.code": 1, + "freeParser": 9, + "parser.socket.onend": 1, + "parser.socket.ondata": 1, + "parser.socket.parser": 1, + "parsers.free": 1, + "req.parser": 1, + "socketCloseListener": 2, + "socket.parser": 3, + "req.emit": 8, + "req.res": 8, + "req.res.readable": 1, + "req.res.emit": 1, + "res": 14, + "req.res._emitPending": 1, + "res._emitEnd": 1, + "res.emit": 1, + "req._hadError": 3, + "parser.finish": 6, + "socketErrorListener": 2, + "err.message": 1, + "err.stack": 1, + "socketOnEnd": 1, + "this._httpMessage": 3, + "this.parser": 2, + "socketOnData": 1, + "parser.execute": 2, + "bytesParsed": 4, + "socket.ondata": 3, + "socket.onend": 3, + "bodyHead": 4, + "d.slice": 2, + "req.listeners": 1, + "req.upgradeOrConnect": 1, + "socket.emit": 1, + "parserOnIncomingClient": 1, + "shouldKeepAlive": 4, + "res.upgrade": 1, + "isHeadResponse": 2, + "res.statusCode": 1, + "Clear": 1, + "upgraded": 1, + "WebSockets": 1, + "AGENT": 2, + "socket.destroySoon": 2, + "keep": 1, + "alive": 1, + "close": 2, + "free": 1, + "important": 1, + "promisy": 1, + "onSocket": 3, + "self.socket.writable": 1, + "self.socket": 5, + "arguments_": 2, + "self.socket.once": 1, + "ClientRequest.prototype.setTimeout": 1, + "msecs": 4, + "this.once": 2, + "emitTimeout": 4, + "this.socket.setTimeout": 1, + "this.socket.once": 1, + "this.setTimeout": 3, + "sock": 1, + "ClientRequest.prototype.setNoDelay": 1, + "ClientRequest.prototype.setSocketKeepAlive": 1, + "ClientRequest.prototype.clearTimeout": 1, + "exports.request": 2, + "url.parse": 1, + "options.protocol": 3, + "exports.get": 1, + "req.end": 1, + "ondrain": 3, + "httpSocketSetup": 2, + "Server": 6, + "requestListener": 6, + "net.Server.call": 1, + "allowHalfOpen": 1, + "this.addListener": 2, + "this.httpAllowHalfOpen": 1, + "connectionListener": 3, + "net.Server": 1, + "exports.Server": 1, + "exports.createServer": 1, + "outgoing": 2, + "incoming": 2, + "abortIncoming": 3, + "incoming.length": 2, + "incoming.shift": 2, + "serverSocketCloseListener": 3, + "socket.setTimeout": 1, + "minute": 1, + "socket.once": 1, + "parsers.alloc": 1, + "parser.reinitialize": 1, + "this.maxHeadersCount": 2, + "socket.addListener": 2, + "self.listeners": 2, + "req.socket": 1, + "self.httpAllowHalfOpen": 1, + "socket.writable": 2, + "socket.end": 2, + "outgoing.length": 2, + "._last": 1, + "socket._httpMessage._last": 1, + "incoming.push": 1, + "res.shouldKeepAlive": 1, + "DTRACE_HTTP_SERVER_REQUEST": 1, + "outgoing.push": 1, + "res.assignSocket": 1, + "res.on": 1, + "res.detachSocket": 1, + "res._last": 1, + "outgoing.shift": 1, + "m.assignSocket": 1, + "req.headers": 2, + "continueExpression.test": 1, + "res._expect_continue": 1, + "res.writeContinue": 1, + "response.": 1, + "exports._connectionListener": 1, + "Client": 6, + "this.host": 1, + "this.port": 1, + "maxSockets": 1, + "Client.prototype.request": 1, + "self.host": 1, + "self.port": 1, + "c.on": 2, + "exports.Client": 1, + "module.deprecate": 2, + "exports.createClient": 1, + "SHEBANG#!node": 2, + "http.createServer": 1, + "res.writeHead": 1, + "res.end": 1, + ".listen": 1, + "window.angular": 1, + "Animal.name": 1, + "_super": 4, + "Snake.name": 1, + "Horse.name": 1, + "jshint": 1, + "Modal": 2, + "this.": 2, + ".proxy": 1, + "this.hide": 1, + "Modal.prototype": 1, + "this.isShown": 3, + ".Event": 1, + "element.trigger": 1, + ".addClass": 1, + "escape.call": 1, + "backdrop.call": 1, + "transition": 1, + ".support.transition": 1, + "that.": 3, + "element.hasClass": 1, + "element.parent": 1, + "element.appendTo": 1, + "//don": 1, + "shown": 2, + "modal": 4, + "fade": 4, + "keyup.dismiss.modal": 2, + "click.modal.data": 1, + "api": 1, + ".extend": 1, + "target.data": 1, + "e.preventDefault": 1, + "target.modal": 1 + }, + "Visual Basic": { + "VERSION": 1, + "CLASS": 1, + "BEGIN": 1, + "MultiUse": 1, + "-": 9, + "NotPersistable": 1, + "DataBindingBehavior": 1, + "vbNone": 1, + "MTSTransactionMode": 1, + "*************************************************************************************************************************************************************************************************************************************************": 2, + "Copyright": 1, + "(": 20, + "c": 1, + ")": 20, + "David": 1, + "Briant": 1, + "All": 1, + "rights": 1, + "reserved": 1, + "Option": 1, + "Explicit": 1, + "Private": 25, + "Declare": 3, + "Function": 5, + "apiSetProp": 4, + "Lib": 3, + "Alias": 3, + "ByVal": 6, + "hwnd": 2, + "As": 34, + "Long": 10, + "lpString": 2, + "String": 13, + "hData": 1, + "apiGlobalAddAtom": 3, + "apiSetForegroundWindow": 1, + "myMouseEventsForm": 5, + "fMouseEventsForm": 2, + "WithEvents": 3, + "myAST": 3, + "cTP_AdvSysTray": 2, + "Attribute": 3, + "myAST.VB_VarHelpID": 1, + "myClassName": 2, + "myWindowName": 2, + "Const": 9, + "TEN_MILLION": 1, + "Single": 1, + "myListener": 1, + "VLMessaging.VLMMMFileListener": 1, + "myListener.VB_VarHelpID": 1, + "myMMFileTransports": 2, + "VLMessaging.VLMMMFileTransports": 1, + "myMMFileTransports.VB_VarHelpID": 1, + "myMachineID": 1, + "myRouterSeed": 1, + "myRouterIDsByMMTransportID": 1, + "New": 6, + "Dictionary": 3, + "myMMTransportIDsByRouterID": 2, + "myDirectoryEntriesByIDString": 1, + "GET_ROUTER_ID": 1, + "GET_ROUTER_ID_REPLY": 1, + "REGISTER_SERVICE": 1, + "REGISTER_SERVICE_REPLY": 1, + "UNREGISTER_SERVICE": 1, + "UNREGISTER_SERVICE_REPLY": 1, + "GET_SERVICES": 1, + "GET_SERVICES_REPLY": 1, + "Initialize": 1, + "/": 1, + "Release": 1, + "hide": 1, + "us": 1, + "from": 2, + "the": 7, + "Applications": 1, + "list": 1, + "in": 1, + "Windows": 1, + "Task": 1, + "Manager": 1, + "App.TaskVisible": 1, + "False": 1, + "create": 1, + "tray": 1, + "icon": 1, + "Set": 5, + "myAST.create": 1, + "myMouseEventsForm.icon": 1, + "make": 1, + "myself": 1, + "easily": 2, + "found": 1, + "myMouseEventsForm.hwnd": 3, + "End": 11, + "Sub": 9, + "shutdown": 1, + "myAST.destroy": 1, + "Nothing": 2, + "Unload": 1, + "myAST_RButtonUp": 1, + "Dim": 1, + "epm": 1, + "cTP_EasyPopupMenu": 1, + "menuItemSelected": 1, + "epm.addMenuItem": 3, + "MF_STRING": 3, + "epm.addSubmenuItem": 2, + "MF_SEPARATOR": 1, + "MF_CHECKED": 1, + "route": 2, + "to": 4, + "a": 4, + "remote": 1, + "machine": 1, + "Else": 1, + "for": 4, + "moment": 1, + "just": 1, + "between": 1, + "MMFileTransports": 1, + "If": 4, + "myMMTransportIDsByRouterID.Exists": 1, + "message.toAddress.RouterID": 2, + "Then": 1, + "transport": 1, + "transport.send": 1, + "messageToBytes": 1, + "message": 1, + "directoryEntryIDString": 2, + "serviceType": 2, + "address": 1, + "VLMAddress": 1, + "&": 7, + "address.MachineID": 1, + "address.RouterID": 1, + "address.AgentID": 1, + "myMMFileTransports_disconnecting": 1, + "id": 1, + "oReceived": 2, + "Boolean": 1, + "True": 1, + "@Code": 1, + "ViewData": 1, + "Code": 1, + "@section": 1, + "featured": 1, + "
": 1, + "class=": 7, + "
": 1, + "
": 1, + "

": 1, + "@ViewData": 2, + ".": 3, + "

": 1, + "

": 1, + "

": 1, + "
": 1, + "

": 1, + "To": 1, + "learn": 1, + "more": 4, + "about": 2, + "ASP.NET": 5, + "MVC": 4, + "visit": 2, + "": 5, + "href=": 5, + "title=": 2, + "http": 1, + "//asp.net/mvc": 1, + "": 5, + "The": 1, + "page": 1, + "features": 3, + "": 1, + "videos": 1, + "tutorials": 1, + "and": 6, + "samples": 1, + "": 1, + "help": 1, + "you": 4, + "get": 1, + "most": 1, + "MVC.": 1, + "have": 1, + "any": 1, + "questions": 1, + "our": 1, + "forums": 1, + "

": 1, + "
": 1, + "
": 1, + "Section": 1, + "

": 1, + "We": 1, + "suggest": 1, + "following": 1, + "

": 1, + "
    ": 1, + "
  1. ": 3, + "
    ": 3, + "Getting": 1, + "Started": 1, + "
    ": 3, + "gives": 2, + "powerful": 1, + "patterns": 1, + "based": 1, + "way": 1, + "build": 1, + "dynamic": 1, + "websites": 1, + "that": 5, + "enables": 1, + "clean": 1, + "separation": 1, + "of": 2, + "concerns": 1, + "full": 1, + "control": 1, + "over": 1, + "markup": 1, + "enjoyable": 1, + "agile": 1, + "development.": 1, + "includes": 1, + "many": 1, + "enable": 1, + "fast": 1, + "TDD": 1, + "friendly": 1, + "development": 1, + "creating": 1, + "sophisticated": 1, + "applications": 1, + "use": 1, + "latest": 1, + "web": 2, + "standards.": 1, + "Learn": 3, + "
  2. ": 3, + "Add": 1, + "NuGet": 2, + "packages": 1, + "jump": 1, + "start": 1, + "your": 2, + "coding": 1, + "makes": 1, + "it": 1, + "easy": 1, + "install": 1, + "update": 1, + "free": 1, + "libraries": 1, + "tools.": 1, + "Find": 1, + "Web": 1, + "Hosting": 1, + "You": 1, + "can": 1, + "find": 1, + "hosting": 1, + "company": 1, + "offers": 1, + "right": 1, + "mix": 1, + "price": 1, + "applications.": 1, + "
": 1, + "Module": 2, + "Module1": 1, + "Main": 1, + "Console.Out.WriteLine": 2 + }, + "GAP": { + "#############################################################################": 63, + "##": 766, + "Magic.gi": 1, + "AutoDoc": 4, + "package": 10, + "Copyright": 6, + "Max": 2, + "Horn": 2, + "JLU": 2, + "Giessen": 2, + "Sebastian": 2, + "Gutsche": 2, + "University": 4, + "of": 114, + "Kaiserslautern": 2, + "BindGlobal": 7, + "(": 721, + "function": 37, + "str": 8, + "suffix": 3, + ")": 722, + "local": 16, + "n": 31, + "m": 8, + ";": 569, + "Length": 14, + "return": 41, + "and": 102, + "{": 21, + "[": 145, + "-": 67, + "+": 9, + "]": 169, + "}": 21, + "end": 34, + "i": 25, + "while": 5, + "<": 17, + "do": 18, + "od": 15, + "if": 103, + "then": 128, + "fi": 91, + "d": 16, + "tmp": 20, + "not": 49, + "IsDirectoryPath": 1, + "CreateDir": 2, + "#": 73, + "Note": 3, + "is": 72, + "currently": 1, + "undocumented": 1, + "fail": 18, + "Error": 7, + "LastSystemError": 1, + ".message": 1, + "false": 7, + "true": 21, + "pkg": 32, + "subdirs": 2, + "extensions": 1, + "d_rel": 6, + "files": 4, + "result": 9, + "for": 53, + "in": 64, + "DirectoriesPackageLibrary": 2, + "IsEmpty": 6, + "continue": 3, + "Directory": 5, + "DirectoryContents": 1, + "Sort": 1, + "AUTODOC_GetSuffix": 2, + "IsReadableFile": 2, + "Filename": 8, + "Add": 4, + "Make": 1, + "this": 15, + "callable": 1, + "with": 24, + "the": 136, + "package_name": 1, + "AutoDocWorksheet.": 1, + "Which": 1, + "will": 5, + "create": 1, + "a": 113, + "worksheet": 1, + "InstallGlobalFunction": 5, + "arg": 16, + "package_info": 3, + "opt": 3, + "scaffold": 12, + "gapdoc": 7, + "maketest": 12, + "autodoc": 8, + "pkg_dir": 5, + "doc_dir": 18, + "doc_dir_rel": 3, + "title_page": 7, + "tree": 8, + "is_worksheet": 13, + "position_document_class": 7, + "gapdoc_latex_option_record": 4, + "LowercaseString": 3, + "rec": 20, + "DirectoryCurrent": 1, + "else": 25, + "PackageInfo": 1, + "key": 3, + "val": 4, + "ValueOption": 1, + "opt.": 1, + "IsBound": 39, + "opt.dir": 4, + "elif": 21, + "IsString": 7, + "or": 13, + "IsDirectory": 1, + "AUTODOC_CreateDirIfMissing": 1, + "Print": 24, + "opt.scaffold": 5, + "package_info.AutoDoc": 3, + "IsRecord": 7, + "IsBool": 4, + "AUTODOC_APPEND_RECORD_WRITEONCE": 3, + "AUTODOC_WriteOnce": 10, + "opt.autodoc": 5, + "Concatenation": 15, + "package_info.Dependencies.NeededOtherPackages": 1, + "package_info.Dependencies.SuggestedOtherPackages": 1, + "ForAny": 1, + "x": 14, + "autodoc.files": 7, + "autodoc.scan_dirs": 5, + "autodoc.level": 3, + "PushOptions": 1, + "level_value": 1, + "Append": 2, + "AUTODOC_FindMatchingFiles": 2, + "opt.gapdoc": 5, + "opt.maketest": 4, + "gapdoc.main": 8, + "package_info.PackageDoc": 3, + ".BookName": 2, + "gapdoc.bookname": 4, + "#Print": 1, + "gapdoc.files": 9, + "gapdoc.scan_dirs": 3, + "Set": 1, + "Number": 1, + "ListWithIdenticalEntries": 1, + "List": 6, + "f": 11, + "DocumentationTree": 1, + "autodoc.section_intros": 2, + "AUTODOC_PROCESS_INTRO_STRINGS": 1, + "Tree": 2, + "AutoDocScanFiles": 1, + "PackageName": 2, + "scaffold.TitlePage": 4, + "scaffold.TitlePage.Title": 2, + ".TitlePage.Title": 2, + "Position": 2, + "Remove": 2, + "JoinStringsWithSeparator": 1, + "ReplacedString": 2, + "Syntax": 1, + "scaffold.document_class": 7, + "PositionSublist": 5, + "GAPDoc2LaTeXProcs.Head": 14, + "..": 6, + "scaffold.latex_header_file": 2, + "StringFile": 2, + "scaffold.gapdoc_latex_options": 4, + "RecNames": 1, + "scaffold.gapdoc_latex_options.": 5, + "IsList": 1, + "scaffold.includes": 4, + "scaffold.bib": 7, + "Unbind": 1, + "scaffold.main_xml_file": 2, + ".TitlePage": 1, + "ExtractTitleInfoFromPackageInfo": 1, + "CreateTitlePage": 1, + "scaffold.MainPage": 2, + "scaffold.dir": 1, + "scaffold.book_name": 1, + "CreateMainPage": 1, + "WriteDocumentation": 1, + "SetGapDocLaTeXOptions": 1, + "MakeGAPDocDoc": 1, + "CopyHTMLStyleFiles": 1, + "GAPDocManualLab": 1, + "maketest.folder": 3, + "maketest.scan_dir": 3, + "CreateMakeTest": 1, + "#W": 4, + "example.gd": 2, + "This": 10, + "file": 7, + "contains": 7, + "sample": 2, + "GAP": 15, + "declaration": 1, + "file.": 3, + "DeclareProperty": 2, + "IsLeftModule": 6, + "DeclareGlobalFunction": 5, + "#C": 7, + "IsQuuxFrobnicator": 1, + "": 3, + "": 28, + "": 7, + "Name=": 33, + "Arg=": 33, + "Type=": 7, + "": 28, + "Tests": 1, + "whether": 5, + "R": 5, + "quux": 1, + "frobnicator.": 1, + "": 28, + "": 28, + "DeclareSynonym": 17, + "IsField": 1, + "IsGroup": 1, + "Magic.gd": 1, + "SHEBANG#!#! @Description": 1, + "SHEBANG#!#! This": 1, + "SHEBANG#!#! any": 1, + "SHEBANG#!#! ": 1, + "SHEBANG#!#! ": 5, + "SHEBANG#!#! It": 3, + "SHEBANG#!#! That": 1, + "SHEBANG#!#! of": 1, + "SHEBANG#!#! (with": 1, + "SHEBANG#!#! main": 1, + "SHEBANG#!#! XML": 1, + "SHEBANG#!#! other": 1, + "SHEBANG#!#! as": 1, + "SHEBANG#!#! to": 2, + "SHEBANG#!#! Secondly,": 1, + "SHEBANG#!#! page": 1, + "SHEBANG#!#! (name,": 1, + "SHEBANG#!#! on": 1, + "SHEBANG#!Item>": 25, + "SHEBANG#!#! tags": 1, + "SHEBANG#!#! This": 1, + "SHEBANG#!#! produce": 1, + "SHEBANG#!#! MathJaX": 1, + "SHEBANG#!#! generated": 1, + "SHEBANG#!#! this,": 1, + "SHEBANG#!#! supplementary": 1, + "SHEBANG#!#! (see": 1, + "SHEBANG#!Enum>": 1, + "SHEBANG#!#! For": 1, + "SHEBANG#!>": 11, + "SHEBANG#!#! The": 1, + "SHEBANG#!#! ": 1, + "SHEBANG#!Mark>": 22, + "SHEBANG#!#! The": 2, + "SHEBANG#!A>": 1, + "SHEBANG#!#! ": 1, + "SHEBANG#!#! ": 4, + "SHEBANG#!#! This": 4, + "SHEBANG#!#! Directory()": 1, + "SHEBANG#!#! (i.e.": 1, + "SHEBANG#!#! Default": 1, + "SHEBANG#!#! for": 1, + "SHEBANG#!#! The": 3, + "SHEBANG#!#! record.": 3, + "SHEBANG#!#! equivalent": 3, + "SHEBANG#!#! enabled.": 3, + "SHEBANG#!#! package's": 1, + "SHEBANG#!#! In": 3, + "SHEBANG#!K>),": 3, + "SHEBANG#!#! If": 3, + "####": 34, + "TODO": 3, + "mention": 1, + "merging": 1, + "PackageInfo.AutoDoc": 1, + "SHEBANG#!#! ": 3, + "SHEBANG#!#! ": 13, + "SHEBANG#!#! A": 6, + "SHEBANG#!#! If": 2, + "SHEBANG#!#! your": 1, + "SHEBANG#!#! you": 1, + "SHEBANG#!#! to": 4, + "SHEBANG#!#! is": 1, + "SHEBANG#!#! of": 2, + "SHEBANG#!#! This": 3, + "SHEBANG#!#! i.e.": 1, + "SHEBANG#!#! The": 2, + "SHEBANG#!#! then": 1, + "The": 21, + "param": 1, + "bit": 2, + "strange.": 1, + "We": 4, + "should": 2, + "probably": 2, + "change": 1, + "it": 8, + "to": 37, + "be": 24, + "more": 3, + "general": 1, + "as": 23, + "one": 11, + "might": 1, + "want": 1, + "define": 2, + "other": 4, + "entities...": 1, + "For": 10, + "now": 1, + "we": 3, + "document": 1, + "leave": 1, + "us": 1, + "choice": 1, + "revising": 1, + "how": 1, + "works.": 1, + "": 2, + "": 117, + "entities": 2, + "": 117, + "": 2, + "": 2, + "A": 9, + "list": 16, + "names": 1, + "which": 8, + "are": 14, + "used": 10, + "corresponding": 1, + "XML": 4, + "entities.": 1, + "example": 3, + "set": 6, + "containing": 1, + "string": 6, + "": 2, + "SomePackage": 3, + "": 2, + "following": 4, + "added": 1, + "preamble": 1, + "": 2, + "CDATA": 2, + "ENTITY": 2, + "": 2, + "allows": 1, + "you": 3, + "write": 3, + "&": 37, + "amp": 1, + "your": 1, + "documentation": 2, + "reference": 1, + "that": 39, + "package.": 2, + "If": 11, + "another": 1, + "type": 2, + "entity": 1, + "desired": 1, + "can": 12, + "simply": 2, + "add": 2, + "instead": 1, + "two": 13, + "entry": 2, + "list.": 2, + "It": 1, + "handled": 3, + "so": 3, + "please": 1, + "careful.": 1, + "": 2, + "SHEBANG#!#! for": 1, + "SHEBANG#!#! statement": 1, + "SHEBANG#!#! components": 2, + "SHEBANG#!#! example,": 1, + "SHEBANG#!#! acknowledgements": 1, + "SHEBANG#!#! ": 6, + "SHEBANG#!#! by": 1, + "SHEBANG#!#! package": 1, + "SHEBANG#!#! Usually": 2, + "SHEBANG#!#! are": 2, + "SHEBANG#!#! Default": 3, + "SHEBANG#!#! When": 1, + "SHEBANG#!#! they": 1, + "Document": 1, + "section_intros": 2, + "later": 1, + "on.": 1, + "However": 2, + "note": 2, + "thanks": 1, + "new": 2, + "comment": 1, + "syntax": 1, + "only": 5, + "remaining": 1, + "use": 5, + "seems": 1, + "ability": 1, + "specify": 3, + "order": 1, + "chapters": 1, + "sections.": 1, + "TODO.": 1, + "SHEBANG#!#! files": 1, + "strictly": 1, + "speaking": 1, + "also": 3, + "scaffold.": 1, + "uses": 2, + "scaffolding": 2, + "mechanism": 4, + "really": 4, + "necessary": 2, + "custom": 1, + "name": 2, + "main": 1, + "Thus": 3, + "purpose": 1, + "parameter": 1, + "cater": 1, + "packages": 5, + "have": 3, + "existing": 1, + "using": 2, + "different": 2, + "wish": 1, + "scaffolding.": 1, + "explain": 1, + "why": 2, + "allow": 1, + "specifying": 1, + "gapdoc.main.": 1, + "code": 1, + "still": 1, + "honor": 1, + "though": 1, + "just": 1, + "case.": 1, + "SHEBANG#!#! In": 1, + "part.": 1, + "Still": 1, + "under": 1, + "construction.": 1, + "SHEBANG#!#! ": 1, + "SHEBANG#!#! The": 1, + "SHEBANG#!#! a": 1, + "SHEBANG#!#! which": 1, + "SHEBANG#!#! the": 1, + "SHEBANG#!#! ": 1, + "SHEBANG#!#! ": 2, + "SHEBANG#!#! Sets": 1, + "SHEBANG#!#! A": 1, + "SHEBANG#!#! will": 1, + "SHEBANG#!#! @Returns": 1, + "SHEBANG#!#! @Arguments": 1, + "SHEBANG#!#! @ChapterInfo": 1, + "vspc.gd": 1, + "library": 2, + "Thomas": 2, + "Breuer": 2, + "#Y": 6, + "C": 11, + "Lehrstuhl": 2, + "D": 36, + "r": 2, + "Mathematik": 2, + "RWTH": 2, + "Aachen": 2, + "Germany": 2, + "School": 2, + "Math": 2, + "Comp.": 2, + "Sci.": 2, + "St": 2, + "Andrews": 2, + "Scotland": 2, + "Group": 3, + "declares": 1, + "operations": 2, + "vector": 67, + "spaces.": 4, + "bases": 5, + "free": 3, + "left": 15, + "modules": 1, + "found": 1, + "": 10, + "lib/basis.gd": 1, + ".": 257, + "IsLeftOperatorRing": 1, + "IsLeftOperatorAdditiveGroup": 2, + "IsRing": 1, + "IsAssociativeLOpDProd": 2, + "#T": 6, + "IsLeftOperatorRingWithOne": 2, + "IsRingWithOne": 1, + "IsLeftVectorSpace": 3, + "": 38, + "IsVectorSpace": 26, + "<#GAPDoc>": 17, + "Label=": 19, + "": 12, + "space": 74, + "": 12, + "module": 2, + "see": 30, + "nbsp": 30, + "": 71, + "Func=": 40, + "over": 24, + "division": 15, + "ring": 14, + "Chapter": 3, + "Chap=": 3, + "

": 23, + "Whenever": 1, + "talk": 1, + "about": 3, + "an": 17, + "": 42, + "F": 61, + "": 41, + "V": 152, + "additive": 1, + "group": 2, + "on": 5, + "acts": 1, + "via": 6, + "multiplication": 1, + "from": 5, + "such": 4, + "action": 4, + "addition": 1, + "right": 2, + "distributive.": 1, + "accessed": 1, + "value": 9, + "attribute": 2, + "Vector": 1, + "spaces": 15, + "always": 1, + "Filt=": 4, + "synonyms.": 1, + "<#/GAPDoc>": 17, + "IsLeftActedOnByDivisionRing": 4, + "InstallTrueMethod": 4, + "IsFreeLeftModule": 3, + "#F": 17, + "IsGaussianSpace": 10, + "": 14, + "filter": 3, + "Sect=": 6, + "row": 17, + "matrix": 5, + "field": 12, + "say": 1, + "indicates": 3, + "entries": 8, + "all": 18, + "vectors": 16, + "matrices": 5, + "respectively": 1, + "contained": 4, + "In": 3, + "case": 2, + "called": 1, + "Gaussian": 19, + "space.": 5, + "Bases": 1, + "computed": 2, + "elimination": 5, + "given": 4, + "generators.": 1, + "": 12, + "": 12, + "gap": 41, + "mats": 5, + "VectorSpace": 13, + "Rationals": 13, + "E": 2, + "element": 2, + "extension": 3, + "Field": 1, + "": 12, + "DeclareFilter": 1, + "IsFullMatrixModule": 1, + "IsFullRowModule": 1, + "IsDivisionRing": 5, + "": 12, + "nontrivial": 1, + "associative": 1, + "algebra": 2, + "multiplicative": 1, + "inverse": 1, + "each": 2, + "nonzero": 3, + "element.": 1, + "every": 1, + "possibly": 1, + "itself": 1, + "being": 2, + "thus": 1, + "property": 2, + "get": 1, + "because": 2, + "usually": 1, + "represented": 1, + "coefficients": 3, + "stored": 1, + "DeclareSynonymAttr": 4, + "IsMagmaWithInversesIfNonzero": 1, + "IsNonTrivial": 1, + "IsAssociative": 1, + "IsEuclideanRing": 1, + "#A": 7, + "GeneratorsOfLeftVectorSpace": 1, + "GeneratorsOfVectorSpace": 2, + "": 7, + "Attr=": 10, + "returns": 14, + "generate": 1, + "FullRowSpace": 5, + "GeneratorsOfLeftOperatorAdditiveGroup": 2, + "CanonicalBasis": 3, + "supports": 1, + "canonical": 6, + "basis": 14, + "otherwise": 2, + "": 3, + "": 3, + "returned.": 4, + "defining": 1, + "its": 2, + "uniquely": 1, + "determined": 1, + "by": 14, + "exist": 1, + "same": 6, + "acting": 8, + "domain": 17, + "equality": 1, + "these": 5, + "decided": 1, + "comparing": 1, + "bases.": 1, + "exact": 1, + "meaning": 1, + "depends": 1, + "Canonical": 1, + "defined": 3, + "designs": 1, + "kind": 1, + "defines": 1, + "method": 4, + "installs": 1, + "must": 6, + "call": 1, + "On": 1, + "hand": 1, + "install": 1, + "calls": 1, + "": 10, + "CANONICAL_BASIS_FLAGS": 1, + "": 9, + "vecs": 4, + "B": 16, + "": 8, + "3": 5, + "generators": 16, + "BasisVectors": 4, + "DeclareAttribute": 4, + "IsRowSpace": 2, + "consists": 7, + "IsRowModule": 1, + "IsGaussianRowSpace": 1, + "scalars": 2, + "occur": 2, + "vectors.": 2, + "calculations.": 2, + "Otherwise": 3, + "non": 4, + "Gaussian.": 2, + "need": 3, + "flag": 2, + "down": 2, + "methods": 4, + "delegate": 2, + "ones.": 2, + "IsNonGaussianRowSpace": 1, + "expresses": 2, + "cannot": 2, + "compute": 3, + "nice": 4, + "way.": 2, + "Let": 4, + "K": 4, + "spanned": 4, + "Then": 1, + "/": 12, + "cap": 1, + "v": 5, + "replacing": 1, + "forming": 1, + "concatenation.": 1, + "So": 2, + "associated": 3, + "DeclareHandlingByNiceBasis": 2, + "IsMatrixSpace": 2, + "IsMatrixModule": 1, + "IsGaussianMatrixSpace": 1, + "IsNonGaussianMatrixSpace": 1, + "irrelevant": 1, + "concatenation": 1, + "rows": 1, + "necessarily": 1, + "NormedRowVectors": 2, + "normed": 1, + "finite": 5, + "those": 1, + "first": 1, + "component.": 1, + "yields": 1, + "natural": 1, + "dimensional": 5, + "subspaces": 17, + "GF": 22, + "*Z": 5, + "Z": 6, + "Action": 1, + "GL": 1, + "OnLines": 1, + "TrivialSubspace": 2, + "subspace": 7, + "zero": 4, + "triv": 2, + "0": 2, + "AsSet": 1, + "TrivialSubmodule": 1, + "": 5, + "": 2, + "collection": 3, + "gens": 16, + "elements": 7, + "optional": 3, + "argument": 1, + "empty.": 1, + "known": 5, + "linearly": 3, + "independent": 3, + "particular": 1, + "dimension": 9, + "immediately": 2, + "formed": 1, + "argument.": 1, + "2": 1, + "Subspace": 4, + "generated": 1, + "SubspaceNC": 2, + "subset": 4, + "empty": 1, + "trivial": 1, + "parent": 3, + "returned": 3, + "does": 1, + "except": 1, + "omits": 1, + "check": 5, + "both": 2, + "W": 32, + "1": 3, + "Submodule": 1, + "SubmoduleNC": 1, + "#O": 2, + "AsVectorSpace": 4, + "view": 4, + "": 2, + "domain.": 1, + "form": 2, + "Oper=": 6, + "smaller": 1, + "larger": 1, + "ring.": 3, + "Dimension": 6, + "LeftActingDomain": 29, + "9": 1, + "AsLeftModule": 6, + "AsSubspace": 5, + "": 6, + "U": 12, + "collection.": 1, + "/2": 4, + "Parent": 4, + "DeclareOperation": 2, + "IsCollection": 3, + "Intersection2Spaces": 4, + "": 2, + "": 2, + "": 2, + "takes": 1, + "arguments": 1, + "intersection": 5, + "domains": 3, + "let": 1, + "their": 1, + "intersection.": 1, + "AsStruct": 2, + "equal": 1, + "either": 2, + "Substruct": 1, + "common": 1, + "Struct": 1, + "cases": 2, + "basis.": 1, + "handle": 1, + "intersections": 1, + "algebras": 2, + "ideals": 2, + "sided": 1, + "ideals.": 1, + "": 2, + "": 2, + "nonnegative": 2, + "integer": 2, + "length": 1, + "An": 2, + "alternative": 2, + "construct": 2, + "above": 2, + "FullRowModule": 2, + "FullMatrixSpace": 2, + "": 1, + "positive": 1, + "integers": 1, + "fact": 1, + "FullMatrixModule": 3, + "IsSubspacesVectorSpace": 9, + "fixed": 1, + "lies": 1, + "category": 1, + "Subspaces": 8, + "Size": 5, + "iter": 17, + "Iterator": 5, + "NextIterator": 5, + "DeclareCategory": 1, + "IsDomain": 1, + "#M": 20, + "IsFinite": 4, + "Returns": 1, + "": 1, + "Called": 2, + "k": 17, + "Special": 1, + "provided": 1, + "domains.": 1, + "IsInt": 3, + "IsSubspace": 3, + "OrthogonalSpaceInFullRowSpace": 1, + "complement": 1, + "full": 2, + "#P": 1, + "IsVectorSpaceHomomorphism": 3, + "": 2, + "": 1, + "mapping": 2, + "homomorphism": 1, + "linear": 1, + "source": 2, + "range": 1, + "b": 8, + "s": 4, + "*": 12, + "hold": 1, + "IsGeneralMapping": 2, + "#E": 2, + "PackageInfo.g": 2, + "cvec": 1, + "template": 1, + "SetPackageInfo": 1, + "Subtitle": 1, + "Version": 1, + "Date": 1, + "dd/mm/yyyy": 1, + "format": 2, + "Information": 1, + "authors": 1, + "maintainers.": 1, + "Persons": 1, + "LastName": 1, + "FirstNames": 1, + "IsAuthor": 1, + "IsMaintainer": 1, + "Email": 1, + "WWWHome": 1, + "PostalAddress": 1, + "Place": 1, + "Institution": 1, + "Status": 2, + "information.": 1, + "Currently": 1, + "recognized": 1, + "successfully": 2, + "refereed": 2, + "developers": 1, + "agreed": 1, + "distribute": 1, + "them": 1, + "core": 1, + "system": 1, + "development": 1, + "versions": 1, + "You": 1, + "provide": 2, + "next": 6, + "status": 1, + "was": 1, + "#CommunicatedBy": 1, + "#AcceptDate": 1, + "PackageWWWHome": 1, + "README_URL": 1, + ".PackageWWWHome": 2, + "PackageInfoURL": 1, + "ArchiveURL": 1, + ".Version": 2, + "ArchiveFormats": 1, + "Here": 2, + "short": 1, + "abstract": 1, + "explaining": 1, + "content": 1, + "HTML": 1, + "overview": 1, + "Web": 1, + "page": 1, + "URL": 1, + "Webpage": 1, + "detailed": 1, + "information": 1, + "than": 1, + "few": 1, + "lines": 1, + "less": 1, + "ok": 1, + "Please": 1, + "specifing": 1, + "names.": 1, + "AbstractHTML": 1, + "PackageDoc": 1, + "BookName": 1, + "ArchiveURLSubset": 1, + "HTMLStart": 1, + "PDFFile": 1, + "SixFile": 1, + "LongTitle": 1, + "Dependencies": 1, + "NeededOtherPackages": 1, + "SuggestedOtherPackages": 1, + "ExternalConditions": 1, + "AvailabilityTest": 1, + "SHOW_STAT": 1, + "DirectoriesPackagePrograms": 1, + "#Info": 1, + "InfoWarning": 1, + "*Optional*": 2, + "but": 1, + "recommended": 1, + "path": 1, + "relative": 1, + "root": 1, + "many": 1, + "tests": 1, + "functionality": 1, + "sensible.": 1, + "#TestFile": 1, + "some": 2, + "keyword": 1, + "related": 1, + "topic": 1, + "Keywords": 1, + "implementation": 1, + "SomeOperation": 1, + "": 2, + "performs": 1, + "operation": 1, + "InstallMethod": 18, + "SomeProperty": 1, + "M": 7, + "IsTrivial": 1, + "TryNextMethod": 7, + "SomeGlobalFunction": 2, + "global": 1, + "variadic": 1, + "funfion.": 1, + "SomeFunc": 1, + "y": 8, + "z": 3, + "func": 3, + "j": 3, + "mod": 2, + "repeat": 1, + "until": 1, + "vspc.gi": 1, + "generic": 1, + "SetLeftActingDomain": 2, + "": 2, + "external": 1, + "knows": 1, + "e.g.": 1, + "tell": 1, + "InstallOtherMethod": 3, + "IsAttributeStoringRep": 2, + "IsLeftActedOnByRing": 2, + "IsObject": 1, + "extL": 2, + "HasIsDivisionRing": 1, + "SetIsLeftActedOnByDivisionRing": 1, + "IsExtLSet": 1, + "IsIdenticalObj": 5, + "difference": 1, + "between": 1, + "shall": 1, + "CallFuncList": 1, + "FreeLeftModule": 1, + "newC": 7, + "IsSubset": 4, + "SetParent": 1, + "UseIsomorphismRelation": 2, + "UseSubsetRelation": 4, + "View": 1, + "base": 5, + "gen": 5, + "loop": 2, + "newgens": 4, + "extended": 1, + "Characteristic": 2, + "Basis": 5, + "AsField": 2, + "GeneratorsOfLeftModule": 9, + "LeftModuleByGenerators": 5, + "Zero": 5, + "Intersection": 1, + "ViewObj": 4, + "print": 1, + "no.": 1, + "HasGeneratorsOfLeftModule": 2, + "HasDimension": 1, + "override": 1, + "PrintObj": 5, + "HasZero": 1, + "": 2, + "factor": 2, + "": 1, + "ImagesSource": 1, + "NaturalHomomorphismBySubspace": 1, + "AsStructure": 3, + "Substructure": 3, + "Structure": 2, + "inters": 17, + "gensV": 7, + "gensW": 7, + "VW": 3, + "sum": 1, + "Intersection2": 4, + "IsFiniteDimensional": 2, + "Coefficients": 3, + "SumIntersectionMat": 1, + "LinearCombination": 2, + "HasParent": 2, + "SetIsTrivial": 1, + "ClosureLeftModule": 2, + "": 1, + "closure": 1, + "IsCollsElms": 1, + "HasBasis": 1, + "IsVector": 1, + "w": 3, + "easily": 1, + "UseBasis": 1, + "Methods": 1, + "collections": 1, + "#R": 1, + "IsSubspacesVectorSpaceDefaultRep": 7, + "representation": 1, + "components": 1, + "means": 1, + "DeclareRepresentation": 1, + "IsComponentObjectRep": 1, + ".dimension": 9, + ".structure": 9, + "number": 2, + "q": 20, + "prod_": 2, + "frac": 3, + "recursion": 1, + "sum_": 1, + "size": 12, + "qn": 10, + "qd": 10, + "ank": 6, + "Int": 1, + "Enumerator": 2, + "Use": 1, + "iterator": 3, + "allowed": 1, + "elms": 4, + "IsDoneIterator": 3, + ".associatedIterator": 3, + ".basis": 2, + "structure": 4, + "associatedIterator": 2, + "ShallowCopy": 2, + "IteratorByFunctions": 1, + "IsDoneIterator_Subspaces": 1, + "NextIterator_Subspaces": 1, + "ShallowCopy_Subspaces": 1, + "": 1, + "dim": 2, + "Objectify": 2, + "NewType": 2, + "CollectionsFamily": 2, + "FamilyObj": 2, + "map": 4, + "S": 4, + "Source": 1, + "Range": 1, + "IsLinearMapping": 1 + }, + "Logtalk": { + "-": 3, + "object": 2, + "(": 4, + "hello_world": 1, + ")": 4, + ".": 2, + "%": 2, + "the": 2, + "initialization/1": 1, + "directive": 1, + "argument": 1, + "is": 2, + "automatically": 1, + "executed": 1, + "when": 1, + "loaded": 1, + "into": 1, + "memory": 1, + "initialization": 1, + "nl": 2, + "write": 1, + "end_object.": 1 + }, + "Scheme": { + "(": 366, + "import": 1, + "rnrs": 1, + ")": 380, + "only": 1, + "surfage": 4, + "s1": 1, + "lists": 1, + "filter": 4, + "-": 192, + "map": 4, + "gl": 12, + "glut": 2, + "dharmalab": 2, + "records": 1, + "define": 30, + "record": 5, + "type": 5, + "math": 1, + "basic": 2, + "agave": 4, + "glu": 1, + "compat": 1, + "geometry": 1, + "pt": 49, + "glamour": 2, + "window": 2, + "misc": 1, + "s19": 1, + "time": 24, + "s27": 1, + "random": 27, + "bits": 1, + "s42": 1, + "eager": 1, + "comprehensions": 1, + ";": 1684, + "utilities": 1, + "say": 9, + ".": 2, + "args": 2, + "for": 7, + "each": 7, + "display": 4, + "newline": 2, + "translate": 6, + "p": 6, + "glTranslated": 1, + "x": 10, + "y": 3, + "radians": 8, + "/": 7, + "pi": 2, + "degrees": 2, + "angle": 6, + "a": 19, + "cos": 1, + "sin": 1, + "current": 15, + "in": 14, + "nanoseconds": 2, + "let": 2, + "val": 3, + "+": 28, + "second": 1, + "nanosecond": 1, + "seconds": 12, + "micro": 1, + "milli": 1, + "base": 2, + "step": 1, + "score": 5, + "level": 5, + "ships": 1, + "spaceship": 5, + "fields": 4, + "mutable": 14, + "pos": 16, + "vel": 4, + "theta": 1, + "force": 1, + "particle": 8, + "birth": 2, + "lifetime": 1, + "color": 2, + "particles": 11, + "asteroid": 14, + "radius": 6, + "number": 3, + "of": 3, + "starting": 3, + "asteroids": 15, + "#f": 5, + "bullet": 16, + "pack": 12, + "is": 8, + "initialize": 1, + "size": 1, + "title": 1, + "reshape": 1, + "width": 8, + "height": 8, + "source": 2, + "randomize": 1, + "default": 1, + "wrap": 4, + "mod": 2, + "ship": 8, + "make": 11, + "ammo": 9, + "set": 19, + "list": 6, + "ec": 6, + "i": 6, + "inexact": 16, + "integer": 25, + "buffered": 1, + "procedure": 1, + "lambda": 12, + "background": 1, + "glColor3f": 5, + "matrix": 5, + "excursion": 5, + "ship.pos": 5, + "glRotated": 2, + "ship.theta": 10, + "glutWireCone": 1, + "par": 6, + "c": 4, + "vector": 6, + "ref": 3, + "glutWireSphere": 3, + "bullets": 7, + "pack.pos": 3, + "glutWireCube": 1, + "last": 3, + "dt": 7, + "update": 2, + "system": 2, + "pt*n": 8, + "ship.vel": 5, + "pack.vel": 1, + "cond": 2, + "par.birth": 1, + "par.lifetime": 1, + "else": 2, + "par.pos": 2, + "par.vel": 1, + "bullet.birth": 1, + "bullet.pos": 2, + "bullet.vel": 1, + "a.pos": 2, + "a.vel": 1, + "if": 1, + "<": 1, + "a.radius": 1, + "contact": 2, + "b": 4, + "when": 5, + "<=>": 3, + "distance": 3, + "begin": 2, + "1": 2, + "f": 1, + "append": 4, + "4": 1, + "50": 4, + "0": 7, + "100": 6, + "2": 1, + "n": 2, + "null": 1, + "10": 1, + "5": 1, + "glutIdleFunc": 1, + "glutPostRedisplay": 1, + "glutKeyboardFunc": 1, + "key": 2, + "case": 1, + "char": 1, + "#": 6, + "w": 1, + "d": 1, + "s": 1, + "space": 1, + "cons": 1, + "glutMainLoop": 1, + "library": 1, + "libs": 1, + "export": 1, + "list2": 2, + "objs": 2, + "should": 1, + "not": 1, + "be": 1, + "exported": 1 + }, + "C++": { + "//": 315, + "#ifndef": 29, + "BOOST_ASIO_DETAIL_IMPL_EPOLL_REACTOR_IPP": 3, + "#define": 343, + "#if": 63, + "defined": 49, + "(": 3102, + "_MSC_VER": 7, + ")": 3105, + "&&": 29, + "#endif": 110, + "#include": 129, + "": 1, + "BOOST_ASIO_HAS_EPOLL": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "BOOST_ASIO_HAS_TIMERFD": 19, + "": 1, + "namespace": 38, + "boost": 18, + "{": 726, + "asio": 14, + "detail": 5, + "epoll_reactor": 40, + "io_service": 6, + "&": 203, + "service_base": 1, + "": 1, + "io_service_": 1, + "use_service": 1, + "": 1, + "mutex_": 13, + "interrupter_": 5, + "epoll_fd_": 20, + "do_epoll_create": 3, + "timer_fd_": 21, + "do_timerfd_create": 3, + "shutdown_": 10, + "false": 48, + "epoll_event": 10, + "ev": 21, + "}": 726, + ";": 2783, + "ev.events": 13, + "EPOLLIN": 8, + "|": 40, + "EPOLLERR": 8, + "EPOLLET": 5, + "ev.data.ptr": 10, + "epoll_ctl": 12, + "EPOLL_CTL_ADD": 7, + "interrupter_.read_descriptor": 3, + "interrupter_.interrupt": 2, + "if": 359, + "-": 438, + "close": 7, + "void": 241, + "shutdown_service": 1, + "mutex": 16, + "scoped_lock": 16, + "lock": 5, + "true": 49, + "lock.unlock": 1, + "op_queue": 6, + "": 6, + "ops": 10, + "while": 17, + "descriptor_state*": 6, + "state": 33, + "registered_descriptors_.first": 2, + "for": 105, + "int": 218, + "i": 106, + "<": 255, + "max_ops": 6, + "+": 80, + "ops.push": 5, + "op_queue_": 12, + "[": 293, + "]": 292, + "registered_descriptors_.free": 2, + "timer_queues_.get_all_timers": 1, + "io_service_.abandon_operations": 1, + "fork_service": 1, + "fork_event": 1, + "fork_ev": 2, + "fork_child": 1, + "interrupter_.recreate": 1, + "update_timeout": 2, + "descriptors_lock": 3, + "registered_descriptors_mutex_": 3, + "next_": 3, + "registered_events_": 8, + "result": 8, + "descriptor_": 5, + "system": 13, + "error_code": 4, + "ec": 6, + "errno": 10, + "error": 8, + "get_system_category": 3, + "throw_error": 2, + "init_task": 1, + "io_service_.init_task": 1, + "register_descriptor": 1, + "socket_type": 7, + "descriptor": 15, + "per_descriptor_data": 8, + "descriptor_data": 60, + "allocate_descriptor_state": 3, + "descriptor_lock": 7, + "reactor_": 7, + "this": 57, + "EPOLLHUP": 3, + "EPOLLPRI": 3, + "return": 240, + "register_internal_descriptor": 1, + "op_type": 8, + "reactor_op*": 5, + "op": 28, + ".push": 2, + "move_descriptor": 1, + "target_descriptor_data": 2, + "source_descriptor_data": 3, + "start_op": 1, + "bool": 111, + "is_continuation": 5, + "allow_speculative": 2, + "ec_": 4, + "bad_descriptor": 1, + "post_immediate_completion": 2, + ".empty": 5, + "read_op": 1, + "||": 19, + "except_op": 1, + "perform": 2, + "descriptor_lock.unlock": 4, + "io_service_.post_immediate_completion": 2, + "write_op": 2, + "EPOLLOUT": 4, + "EPOLL_CTL_MOD": 3, + "else": 58, + "io_service_.work_started": 2, + "cancel_ops": 1, + ".front": 3, + "operation_aborted": 2, + ".pop": 3, + "io_service_.post_deferred_completions": 3, + "deregister_descriptor": 1, + "closing": 3, + "EPOLL_CTL_DEL": 2, + "free_descriptor_state": 3, + "deregister_internal_descriptor": 1, + "run": 2, + "block": 7, + "timeout": 5, + "get_timeout": 5, + "events": 8, + "num_events": 2, + "epoll_wait": 1, + "check_timers": 6, + "#else": 35, + "void*": 2, + "ptr": 6, + ".data.ptr": 1, + "static_cast": 14, + "": 2, + "set_ready_events": 1, + ".events": 1, + "common_lock": 1, + "timer_queues_.get_ready_timers": 1, + "itimerspec": 5, + "new_timeout": 6, + "old_timeout": 4, + "flags": 4, + "timerfd_settime": 2, + "interrupt": 3, + "EPOLL_CLOEXEC": 4, + "fd": 15, + "epoll_create1": 1, + "EINVAL": 4, + "ENOSYS": 1, + "epoll_create": 1, + "epoll_size": 1, + "fcntl": 2, + "F_SETFD": 2, + "FD_CLOEXEC": 2, + "timerfd_create": 2, + "CLOCK_MONOTONIC": 3, + "TFD_CLOEXEC": 1, + "registered_descriptors_.alloc": 1, + "s": 26, + "do_add_timer_queue": 1, + "timer_queue_base": 2, + "queue": 4, + "timer_queues_.insert": 1, + "do_remove_timer_queue": 1, + "timer_queues_.erase": 1, + "timer_queues_.wait_duration_msec": 1, + "*": 183, + "ts": 1, + "ts.it_interval.tv_sec": 1, + "ts.it_interval.tv_nsec": 1, + "long": 15, + "usec": 5, + "timer_queues_.wait_duration_usec": 1, + "ts.it_value.tv_sec": 1, + "/": 16, + "ts.it_value.tv_nsec": 1, + "%": 7, + "TFD_TIMER_ABSTIME": 1, + "struct": 13, + "perform_io_cleanup_on_block_exit": 4, + "explicit": 5, + "epoll_reactor*": 2, + "r": 38, + "first_op_": 3, + "ops_.empty": 1, + "ops_": 2, + "operation*": 4, + "descriptor_state": 5, + "operation": 2, + "do_complete": 2, + "perform_io": 2, + "uint32_t": 39, + "mutex_.lock": 1, + "io_cleanup": 1, + "adopt_lock": 1, + "static": 263, + "const": 172, + "flag": 3, + "j": 10, + "io_cleanup.ops_.push": 1, + "break": 35, + "io_cleanup.first_op_": 2, + "io_cleanup.ops_.front": 1, + "io_cleanup.ops_.pop": 1, + "io_service_impl*": 1, + "owner": 3, + "base": 8, + "std": 53, + "size_t": 6, + "bytes_transferred": 2, + "": 1, + "complete": 3, + "": 1, + "#pragma": 3, + "once": 5, + "": 2, + "typedef": 50, + "smallPrime_t": 1, + "class": 40, + "Bar": 2, + "protected": 4, + "char": 127, + "*name": 6, + "public": 33, + "hello": 2, + "INTERNAL_SUPPRESS_PROTOBUF_FIELD_DEPRECATION": 1, + "": 1, + "": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "persons": 4, + "google": 72, + "protobuf": 72, + "Descriptor*": 3, + "Person_descriptor_": 6, + "NULL": 109, + "internal": 47, + "GeneratedMessageReflection*": 1, + "Person_reflection_": 4, + "protobuf_AssignDesc_protocol_2dbuffer_2eproto": 4, + "protobuf_AddDesc_protocol_2dbuffer_2eproto": 6, + "FileDescriptor*": 1, + "file": 31, + "DescriptorPool": 3, + "generated_pool": 2, + "FindFileByName": 1, + "GOOGLE_CHECK": 1, + "message_type": 1, + "Person_offsets_": 2, + "GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET": 3, + "Person": 65, + "name_": 30, + "new": 13, + "GeneratedMessageReflection": 1, + "default_instance_": 8, + "_has_bits_": 14, + "_unknown_fields_": 5, + "MessageFactory": 3, + "generated_factory": 1, + "sizeof": 15, + "GOOGLE_PROTOBUF_DECLARE_ONCE": 1, + "protobuf_AssignDescriptors_once_": 2, + "inline": 39, + "protobuf_AssignDescriptorsOnce": 4, + "GoogleOnceInit": 1, + "protobuf_RegisterTypes": 2, + "string": 24, + "InternalRegisterGeneratedMessage": 1, + "default_instance": 3, + "protobuf_ShutdownFile_protocol_2dbuffer_2eproto": 4, + "delete": 6, + "already_here": 3, + "GOOGLE_PROTOBUF_VERIFY_VERSION": 1, + "InternalAddGeneratedFile": 1, + "InternalRegisterGeneratedFile": 1, + "InitAsDefaultInstance": 3, + "OnShutdown": 1, + "StaticDescriptorInitializer_protocol_2dbuffer_2eproto": 2, + "static_descriptor_initializer_protocol_2dbuffer_2eproto_": 1, + "kNameFieldNumber": 2, + "Message": 7, + "SharedCtor": 4, + "from": 91, + "MergeFrom": 9, + "_cached_size_": 7, + "const_cast": 3, + "string*": 11, + "kEmptyString": 12, + "memset": 3, + "SharedDtor": 3, + "SetCachedSize": 2, + "size": 13, + "GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN": 2, + "GOOGLE_SAFE_CONCURRENT_WRITES_END": 2, + "*default_instance_": 1, + "Person*": 7, + "New": 6, + "Clear": 18, + "xffu": 3, + "<<": 29, + "has_name": 6, + "clear": 3, + "mutable_unknown_fields": 4, + "MergePartialFromCodedStream": 2, + "io": 4, + "CodedInputStream*": 2, + "input": 12, + "DO_": 4, + "EXPRESSION": 2, + "uint32": 2, + "tag": 6, + "ReadTag": 1, + "switch": 3, + "WireFormatLite": 9, + "GetTagFieldNumber": 1, + "case": 34, + "GetTagWireType": 2, + "WIRETYPE_LENGTH_DELIMITED": 1, + "ReadString": 1, + "mutable_name": 3, + "WireFormat": 10, + "VerifyUTF8String": 3, + "name": 25, + ".data": 3, + ".length": 3, + "PARSE": 1, + "goto": 156, + "handle_uninterpreted": 2, + "ExpectAtEnd": 1, + "default": 14, + "WIRETYPE_END_GROUP": 1, + "SkipField": 1, + "#undef": 3, + "SerializeWithCachedSizes": 2, + "CodedOutputStream*": 2, + "output": 21, + "SERIALIZE": 2, + "WriteString": 1, + "unknown_fields": 7, + "SerializeUnknownFields": 1, + "uint8*": 4, + "SerializeWithCachedSizesToArray": 2, + "target": 6, + "WriteStringToArray": 1, + "SerializeUnknownFieldsToArray": 1, + "ByteSize": 2, + "total_size": 5, + "StringSize": 1, + "ComputeUnknownFieldsSize": 1, + "GOOGLE_CHECK_NE": 2, + "source": 12, + "dynamic_cast_if_available": 1, + "": 12, + "ReflectionOps": 1, + "Merge": 1, + "from._has_bits_": 1, + "from.has_name": 1, + "set_name": 7, + "from.name": 1, + "from.unknown_fields": 1, + "CopyFrom": 5, + "IsInitialized": 3, + "Swap": 2, + "other": 17, + "swap": 3, + "_unknown_fields_.Swap": 1, + "Metadata": 3, + "GetMetadata": 2, + "metadata": 2, + "metadata.descriptor": 1, + "metadata.reflection": 1, + "QSCIPRINTER_H": 2, + "#ifdef": 19, + "__APPLE__": 4, + "extern": 72, + "": 1, + "": 2, + "": 1, + "QT_BEGIN_NAMESPACE": 1, + "QRect": 2, + "QPainter": 2, + "QT_END_NAMESPACE": 1, + "QsciScintillaBase": 100, + "brief": 12, + "The": 50, + "QsciPrinter": 9, + "is": 102, + "a": 157, + "sub": 2, + "of": 215, + "the": 541, + "Qt": 1, + "QPrinter": 3, + "that": 36, + "able": 2, + "to": 254, + "print": 5, + "text": 5, + "Scintilla": 2, + "document.": 8, + "can": 21, + "be": 35, + "further": 1, + "classed": 1, + "alter": 2, + "layout": 1, + "adding": 2, + "headers": 3, + "and": 118, + "footers": 2, + "example.": 1, + "QSCINTILLA_EXPORT": 2, + "Constructs": 1, + "printer": 1, + "paint": 1, + "device": 7, + "with": 33, + "mode": 24, + "mode.": 4, + "PrinterMode": 1, + "ScreenResolution": 1, + "Destroys": 1, + "instance.": 2, + "virtual": 10, + "Format": 1, + "page": 5, + "by": 53, + "example": 3, + "before": 7, + "document": 16, + "drawn": 2, + "on": 55, + "it.": 3, + "painter": 4, + "used": 17, + "add": 3, + "customised": 2, + "graphics.": 2, + "drawing": 4, + "actually": 1, + "being": 4, + "rather": 2, + "than": 6, + "sized.": 1, + "methods": 2, + "must": 6, + "only": 6, + "called": 13, + "when": 22, + "true.": 2, + "area": 5, + "will": 15, + "draw": 1, + "text.": 3, + "This": 19, + "should": 10, + "modified": 3, + "it": 19, + "necessary": 1, + "reserve": 1, + "space": 2, + "any": 23, + "or": 44, + "By": 1, + "relative": 2, + "printable": 1, + "page.": 13, + "Use": 8, + "setFullPage": 1, + "because": 2, + "calling": 9, + "printRange": 2, + "you": 29, + "want": 5, + "try": 1, + "over": 1, + "whole": 2, + "pagenr": 2, + "number": 52, + "first": 13, + "numbered": 1, + "formatPage": 1, + "Return": 3, + "points": 2, + "each": 7, + "font": 2, + "printing.": 2, + "sa": 30, + "setMagnification": 2, + "magnification": 3, + "mag": 2, + "Sets": 24, + "printing": 2, + "magnification.": 1, + "Print": 2, + "range": 3, + "lines": 3, + "instance": 4, + "qsb.": 1, + "line": 11, + "negative": 2, + "value": 50, + "signifies": 2, + "last": 6, + "returned": 5, + "there": 4, + "was": 6, + "no": 7, + "error.": 1, + "*qsb": 1, + "wrap": 4, + "QsciScintilla": 7, + "WrapWord.": 1, + "setWrapMode": 2, + "WrapMode": 3, + "wrapMode": 2, + "wmode.": 1, + "wmode": 1, + "private": 16, + "operator": 10, + "V8_V8_H_": 3, + "GOOGLE3": 2, + "DEBUG": 5, + "NDEBUG": 4, + "#error": 9, + "both": 1, + "are": 36, + "set": 18, + "v8": 9, + "Deserializer": 1, + "V8": 21, + "AllStatic": 1, + "Initialize": 4, + "Deserializer*": 2, + "des": 3, + "TearDown": 5, + "IsRunning": 1, + "is_running_": 6, + "UseCrankshaft": 1, + "use_crankshaft_": 6, + "IsDead": 2, + "has_fatal_error_": 5, + "has_been_disposed_": 6, + "SetFatalError": 2, + "FatalProcessOutOfMemory": 1, + "char*": 24, + "location": 6, + "take_snapshot": 1, + "SetEntropySource": 2, + "EntropySource": 3, + "SetReturnAddressLocationResolver": 3, + "ReturnAddressLocationResolver": 2, + "resolver": 3, + "Random": 3, + "Context*": 4, + "context": 8, + "RandomPrivate": 2, + "Isolate*": 6, + "isolate": 15, + "Object*": 4, + "FillHeapNumberWithRandom": 2, + "heap_number": 4, + "IdleNotification": 3, + "hint": 3, + "AddCallCompletedCallback": 2, + "CallCompletedCallback": 4, + "callback": 7, + "RemoveCallCompletedCallback": 2, + "FireCallCompletedCallback": 2, + "InitializeOncePerProcessImpl": 3, + "InitializeOncePerProcess": 4, + "has_been_set_up_": 4, + "List": 3, + "": 3, + "call_completed_callbacks_": 16, + "enum": 17, + "NilValue": 1, + "kNullValue": 1, + "kUndefinedValue": 1, + "EqualityKind": 1, + "kStrictEquality": 1, + "kNonStrictEquality": 1, + "__OG_MATH_INL__": 2, + "og": 1, + "OG_INLINE": 41, + "Math": 41, + "Abs": 1, + "MASK_SIGNED": 2, + "y": 16, + "x": 86, + "float": 74, + "Fabs": 1, + "f": 104, + "uInt": 1, + "*pf": 1, + "reinterpret_cast": 8, + "": 1, + "pf": 1, + "fabsf": 1, + "Round": 1, + "floorf": 2, + "Floor": 1, + "Ceil": 1, + "ceilf": 1, + "Ftoi": 1, + "@todo": 1, + "needs": 4, + "testing": 2, + "note": 1, + "sse": 1, + "function": 19, + "cvttss2si": 2, + "OG_ASM_MSVC": 4, + "OG_FTOI_USE_SSE": 2, + "SysInfo": 2, + "cpu.general.SSE": 2, + "__asm": 8, + "eax": 5, + "mov": 6, + "fld": 4, + "fistp": 3, + "//__asm": 3, + "do": 13, + "we": 10, + "need": 6, + "O_o": 3, + "#elif": 7, + "OG_ASM_GNU": 4, + "__asm__": 4, + "__volatile__": 4, + "use": 37, + "c": 72, + "cast": 7, + "instead": 4, + "not": 29, + "sure": 6, + "why": 3, + "id": 4, + "did": 3, + "": 3, + "FtoiFast": 2, + "Ftol": 1, + "": 1, + "Sign": 2, + "Fmod": 1, + "numerator": 2, + "denominator": 2, + "fmodf": 1, + "Modf": 2, + "modff": 2, + "Sqrt": 2, + "sqrtf": 2, + "InvSqrt": 1, + "OG_ASSERT": 4, + "RSqrt": 1, + "g": 2, + "*reinterpret_cast": 3, + "guess": 1, + "f375a86": 1, + "": 1, + "Newtons": 1, + "calculation": 1, + "Log": 1, + "logf": 3, + "Log2": 1, + "INV_LN_2": 1, + "Log10": 1, + "INV_LN_10": 1, + "Pow": 1, + "exp": 2, + "powf": 1, + "Exp": 1, + "expf": 1, + "IsPowerOfTwo": 4, + "faster": 3, + "two": 2, + "known": 1, + "check": 4, + "moved": 1, + "beginning": 1, + "HigherPowerOfTwo": 4, + "LowerPowerOfTwo": 2, + "FloorPowerOfTwo": 1, + "CeilPowerOfTwo": 1, + "ClosestPowerOfTwo": 1, + "high": 5, + "low": 5, + "Digits": 1, + "digits": 6, + "step": 3, + "Sin": 2, + "sinf": 1, + "ASin": 1, + "<=>": 2, + "1": 4, + "0f": 2, + "HALF_PI": 2, + "asinf": 1, + "Cos": 2, + "cosf": 1, + "ACos": 1, + "PI": 1, + "acosf": 1, + "Tan": 1, + "tanf": 1, + "ATan": 2, + "atanf": 1, + "f1": 2, + "f2": 2, + "atan2f": 1, + "SinCos": 1, + "sometimes": 1, + "assembler": 1, + "just": 2, + "waaayy": 1, + "_asm": 1, + "fsincos": 1, + "ecx": 2, + "edx": 2, + "fstp": 2, + "dword": 2, + "asm": 1, + "Deg2Rad": 1, + "DEG_TO_RAD": 1, + "Rad2Deg": 1, + "RAD_TO_DEG": 1, + "Square": 1, + "v": 10, + "Cube": 1, + "Sec2Ms": 1, + "sec": 2, + "Ms2Sec": 1, + "ms": 2, + "Q_OS_LINUX": 2, + "": 1, + "QT_VERSION": 1, + "QT_VERSION_CHECK": 1, + "Something": 1, + "wrong": 1, + "setup.": 1, + "Please": 4, + "report": 3, + "mailing": 1, + "list": 3, + "main": 2, + "argc": 2, + "char**": 2, + "argv": 2, + "envp": 4, + "google_breakpad": 1, + "ExceptionHandler": 1, + "eh": 2, + "Utils": 4, + "exceptionHandler": 2, + "qInstallMsgHandler": 1, + "messageHandler": 2, + "QApplication": 1, + "app": 1, + "STATIC_BUILD": 1, + "Q_INIT_RESOURCE": 2, + "WebKit": 1, + "InspectorBackendStub": 1, + "app.setWindowIcon": 1, + "QIcon": 1, + "app.setApplicationName": 1, + "app.setOrganizationName": 1, + "app.setOrganizationDomain": 1, + "app.setApplicationVersion": 1, + "PHANTOMJS_VERSION_STRING": 1, + "Env": 13, + "parse": 3, + "Phantom": 1, + "phantom": 1, + "phantom.execute": 1, + "app.exec": 1, + "phantom.returnValue": 1, + "PY_SSIZE_T_CLEAN": 1, + "Py_PYTHON_H": 1, + "Python": 1, + "needed": 3, + "compile": 1, + "C": 6, + "extensions": 1, + "please": 2, + "install": 3, + "development": 1, + "version": 38, + "Python.": 1, + "": 1, + "offsetof": 2, + "type": 7, + "member": 2, + "type*": 1, + "WIN32": 2, + "MS_WINDOWS": 2, + "__stdcall": 2, + "__cdecl": 2, + "__fastcall": 2, + "DL_IMPORT": 2, + "t": 15, + "DL_EXPORT": 2, + "PY_LONG_LONG": 5, + "LONG_LONG": 1, + "PY_VERSION_HEX": 9, + "METH_COEXIST": 1, + "PyDict_CheckExact": 1, + "Py_TYPE": 4, + "PyDict_Type": 1, + "PyDict_Contains": 1, + "d": 8, + "o": 20, + "PySequence_Contains": 1, + "Py_ssize_t": 17, + "PY_SSIZE_T_MAX": 1, + "INT_MAX": 1, + "PY_SSIZE_T_MIN": 1, + "INT_MIN": 1, + "PY_FORMAT_SIZE_T": 1, + "PyInt_FromSsize_t": 2, + "z": 46, + "PyInt_FromLong": 13, + "PyInt_AsSsize_t": 2, + "PyInt_AsLong": 2, + "PyNumber_Index": 1, + "PyNumber_Int": 1, + "PyIndex_Check": 1, + "PyNumber_Check": 1, + "PyErr_WarnEx": 1, + "category": 2, + "message": 2, + "stacklevel": 1, + "PyErr_Warn": 1, + "Py_REFCNT": 1, + "ob": 6, + "PyObject*": 16, + "ob_refcnt": 1, + "ob_type": 7, + "Py_SIZE": 1, + "PyVarObject*": 1, + "ob_size": 1, + "PyVarObject_HEAD_INIT": 1, + "PyObject_HEAD_INIT": 1, + "PyType_Modified": 1, + "*buf": 1, + "PyObject": 221, + "*obj": 2, + "len": 15, + "itemsize": 2, + "readonly": 3, + "ndim": 2, + "*format": 1, + "*shape": 1, + "*strides": 1, + "*suboffsets": 1, + "*internal": 1, + "Py_buffer": 5, + "PyBUF_SIMPLE": 1, + "PyBUF_WRITABLE": 1, + "PyBUF_FORMAT": 1, + "PyBUF_ND": 2, + "PyBUF_STRIDES": 5, + "PyBUF_C_CONTIGUOUS": 3, + "PyBUF_F_CONTIGUOUS": 3, + "PyBUF_ANY_CONTIGUOUS": 1, + "PyBUF_INDIRECT": 1, + "PY_MAJOR_VERSION": 10, + "__Pyx_BUILTIN_MODULE_NAME": 2, + "Py_TPFLAGS_CHECKTYPES": 1, + "Py_TPFLAGS_HAVE_INDEX": 1, + "Py_TPFLAGS_HAVE_NEWBUFFER": 1, + "PyBaseString_Type": 1, + "PyUnicode_Type": 2, + "PyStringObject": 2, + "PyUnicodeObject": 1, + "PyString_Type": 2, + "PyString_Check": 2, + "PyUnicode_Check": 1, + "PyString_CheckExact": 2, + "PyUnicode_CheckExact": 1, + "PyBytesObject": 1, + "PyBytes_Type": 1, + "PyBytes_Check": 1, + "PyBytes_CheckExact": 1, + "PyBytes_FromString": 2, + "PyString_FromString": 1, + "PyBytes_FromStringAndSize": 1, + "PyString_FromStringAndSize": 1, + "PyBytes_FromFormat": 1, + "PyString_FromFormat": 1, + "PyBytes_DecodeEscape": 1, + "PyString_DecodeEscape": 1, + "PyBytes_AsString": 2, + "PyString_AsString": 1, + "PyBytes_AsStringAndSize": 1, + "PyString_AsStringAndSize": 1, + "PyBytes_Size": 1, + "PyString_Size": 1, + "PyBytes_AS_STRING": 1, + "PyString_AS_STRING": 1, + "PyBytes_GET_SIZE": 1, + "PyString_GET_SIZE": 1, + "PyBytes_Repr": 1, + "PyString_Repr": 1, + "PyBytes_Concat": 1, + "PyString_Concat": 1, + "PyBytes_ConcatAndDel": 1, + "PyString_ConcatAndDel": 1, + "PySet_Check": 1, + "obj": 42, + "PyObject_TypeCheck": 3, + "PySet_Type": 2, + "PyFrozenSet_Check": 1, + "PyFrozenSet_Type": 1, + "PySet_CheckExact": 2, + "__Pyx_TypeCheck": 1, + "PyTypeObject": 2, + "PyIntObject": 1, + "PyLongObject": 2, + "PyInt_Type": 1, + "PyLong_Type": 1, + "PyInt_Check": 1, + "PyLong_Check": 1, + "PyInt_CheckExact": 1, + "PyLong_CheckExact": 1, + "PyInt_FromString": 1, + "PyLong_FromString": 1, + "PyInt_FromUnicode": 1, + "PyLong_FromUnicode": 1, + "PyLong_FromLong": 1, + "PyInt_FromSize_t": 1, + "PyLong_FromSize_t": 1, + "PyLong_FromSsize_t": 1, + "PyLong_AsLong": 1, + "PyInt_AS_LONG": 1, + "PyLong_AS_LONG": 1, + "PyLong_AsSsize_t": 1, + "PyInt_AsUnsignedLongMask": 1, + "PyLong_AsUnsignedLongMask": 1, + "PyInt_AsUnsignedLongLongMask": 1, + "PyLong_AsUnsignedLongLongMask": 1, + "PyBoolObject": 1, + "__Pyx_PyNumber_Divide": 2, + "PyNumber_TrueDivide": 1, + "__Pyx_PyNumber_InPlaceDivide": 2, + "PyNumber_InPlaceTrueDivide": 1, + "PyNumber_Divide": 1, + "PyNumber_InPlaceDivide": 1, + "__Pyx_PySequence_GetSlice": 2, + "b": 57, + "PySequence_GetSlice": 2, + "__Pyx_PySequence_SetSlice": 2, + "PySequence_SetSlice": 2, + "__Pyx_PySequence_DelSlice": 2, + "PySequence_DelSlice": 2, + "unlikely": 69, + "PyErr_SetString": 4, + "PyExc_SystemError": 3, + "likely": 15, + "tp_as_mapping": 3, + "PyErr_Format": 4, + "PyExc_TypeError": 5, + "tp_name": 4, + "PyMethod_New": 2, + "func": 3, + "self": 5, + "klass": 1, + "PyInstanceMethod_New": 1, + "__Pyx_GetAttrString": 2, + "n": 28, + "PyObject_GetAttrString": 3, + "__Pyx_SetAttrString": 2, + "PyObject_SetAttrString": 2, + "__Pyx_DelAttrString": 2, + "PyObject_DelAttrString": 2, + "__Pyx_NAMESTR": 3, + "__Pyx_DOCSTR": 3, + "__cplusplus": 12, + "__PYX_EXTERN_C": 2, + "_USE_MATH_DEFINES": 1, + "": 1, + "__PYX_HAVE_API__wrapper_inner": 1, + "": 4, + "PYREX_WITHOUT_ASSERTIONS": 1, + "CYTHON_WITHOUT_ASSERTIONS": 1, + "CYTHON_INLINE": 68, + "__GNUC__": 5, + "__inline__": 1, + "__inline": 1, + "__STDC_VERSION__": 2, + "L": 1, + "CYTHON_UNUSED": 7, + "**p": 1, + "*s": 1, + "encoding": 1, + "is_unicode": 1, + "is_str": 1, + "intern": 1, + "__Pyx_StringTabEntry": 1, + "__Pyx_PyBytes_FromUString": 1, + "__Pyx_PyBytes_AsUString": 1, + "unsigned": 22, + "__Pyx_PyBool_FromLong": 1, + "Py_INCREF": 3, + "Py_True": 2, + "Py_False": 2, + "__Pyx_PyObject_IsTrue": 8, + "__Pyx_PyNumber_Int": 1, + "__Pyx_PyIndex_AsSsize_t": 1, + "__Pyx_PyInt_FromSize_t": 1, + "__Pyx_PyInt_AsSize_t": 1, + "__pyx_PyFloat_AsDouble": 3, + "PyFloat_CheckExact": 1, + "PyFloat_AS_DOUBLE": 1, + "PyFloat_AsDouble": 1, + "__GNUC_MINOR__": 1, + "__builtin_expect": 2, + "*__pyx_m": 1, + "*__pyx_b": 1, + "*__pyx_empty_tuple": 1, + "*__pyx_empty_bytes": 1, + "__pyx_lineno": 80, + "__pyx_clineno": 80, + "__pyx_cfilenm": 1, + "__FILE__": 2, + "*__pyx_filename": 1, + "CYTHON_CCOMPLEX": 12, + "_Complex_I": 3, + "": 1, + "": 1, + "__sun__": 1, + "fj": 1, + "*__pyx_f": 1, + "npy_int8": 1, + "__pyx_t_5numpy_int8_t": 1, + "npy_int16": 1, + "__pyx_t_5numpy_int16_t": 1, + "npy_int32": 1, + "__pyx_t_5numpy_int32_t": 1, + "npy_int64": 1, + "__pyx_t_5numpy_int64_t": 1, + "npy_uint8": 1, + "__pyx_t_5numpy_uint8_t": 1, + "npy_uint16": 1, + "__pyx_t_5numpy_uint16_t": 1, + "npy_uint32": 1, + "__pyx_t_5numpy_uint32_t": 1, + "npy_uint64": 1, + "__pyx_t_5numpy_uint64_t": 1, + "npy_float32": 1, + "__pyx_t_5numpy_float32_t": 1, + "npy_float64": 1, + "__pyx_t_5numpy_float64_t": 1, + "npy_long": 1, + "__pyx_t_5numpy_int_t": 1, + "npy_longlong": 1, + "__pyx_t_5numpy_long_t": 1, + "npy_intp": 10, + "__pyx_t_5numpy_intp_t": 1, + "npy_uintp": 1, + "__pyx_t_5numpy_uintp_t": 1, + "npy_ulong": 1, + "__pyx_t_5numpy_uint_t": 1, + "npy_ulonglong": 1, + "__pyx_t_5numpy_ulong_t": 1, + "npy_double": 2, + "__pyx_t_5numpy_float_t": 1, + "__pyx_t_5numpy_double_t": 1, + "npy_longdouble": 1, + "__pyx_t_5numpy_longdouble_t": 1, + "complex": 2, + "__pyx_t_float_complex": 27, + "_Complex": 2, + "real": 4, + "imag": 2, + "double": 25, + "__pyx_t_double_complex": 27, + "npy_cfloat": 1, + "__pyx_t_5numpy_cfloat_t": 1, + "npy_cdouble": 2, + "__pyx_t_5numpy_cdouble_t": 1, + "npy_clongdouble": 1, + "__pyx_t_5numpy_clongdouble_t": 1, + "__pyx_t_5numpy_complex_t": 1, + "CYTHON_REFNANNY": 3, + "__Pyx_RefNannyAPIStruct": 4, + "*__Pyx_RefNanny": 1, + "__Pyx_RefNannyImportAPI": 1, + "*modname": 1, + "*m": 1, + "*p": 1, + "*r": 1, + "m": 4, + "PyImport_ImportModule": 1, + "modname": 1, + "end": 23, + "p": 6, + "PyLong_AsVoidPtr": 1, + "Py_XDECREF": 3, + "__Pyx_RefNannySetupContext": 13, + "*__pyx_refnanny": 1, + "__Pyx_RefNanny": 6, + "SetupContext": 1, + "__LINE__": 84, + "__Pyx_RefNannyFinishContext": 12, + "FinishContext": 1, + "__pyx_refnanny": 5, + "__Pyx_INCREF": 36, + "INCREF": 1, + "__Pyx_DECREF": 66, + "DECREF": 1, + "__Pyx_GOTREF": 60, + "GOTREF": 1, + "__Pyx_GIVEREF": 10, + "GIVEREF": 1, + "__Pyx_XDECREF": 26, + "Py_DECREF": 1, + "__Pyx_XGIVEREF": 7, + "__Pyx_XGOTREF": 1, + "__Pyx_TypeTest": 4, + "*type": 3, + "*__Pyx_GetName": 1, + "*dict": 1, + "__Pyx_ErrRestore": 1, + "*value": 2, + "*tb": 2, + "__Pyx_ErrFetch": 1, + "**type": 1, + "**value": 1, + "**tb": 1, + "__Pyx_Raise": 8, + "__Pyx_RaiseNoneNotIterableError": 1, + "__Pyx_RaiseNeedMoreValuesError": 1, + "index": 2, + "__Pyx_RaiseTooManyValuesError": 1, + "expected": 1, + "__Pyx_UnpackTupleError": 2, + "*__Pyx_Import": 1, + "*from_list": 1, + "__Pyx_Print": 1, + "__pyx_print": 1, + "__pyx_print_kwargs": 1, + "__Pyx_PrintOne": 4, + "stream": 6, + "*o": 1, + "*__Pyx_PyInt_to_py_Py_intptr_t": 1, + "Py_intptr_t": 1, + "__Pyx_CREAL": 4, + ".real": 3, + "__Pyx_CIMAG": 4, + ".imag": 3, + "__real__": 1, + "__imag__": 1, + "_WIN32": 1, + "__Pyx_SET_CREAL": 2, + "__Pyx_SET_CIMAG": 2, + "__pyx_t_float_complex_from_parts": 1, + "__Pyx_c_eqf": 2, + "__Pyx_c_sumf": 2, + "__Pyx_c_difff": 2, + "__Pyx_c_prodf": 2, + "__Pyx_c_quotf": 2, + "__Pyx_c_negf": 2, + "__Pyx_c_is_zerof": 3, + "__Pyx_c_conjf": 3, + "conj": 3, + "__Pyx_c_absf": 3, + "abs": 2, + "__Pyx_c_powf": 3, + "pow": 2, + "conjf": 1, + "cabsf": 1, + "cpowf": 1, + "__pyx_t_double_complex_from_parts": 1, + "__Pyx_c_eq": 2, + "__Pyx_c_sum": 2, + "__Pyx_c_diff": 2, + "__Pyx_c_prod": 2, + "__Pyx_c_quot": 2, + "__Pyx_c_neg": 2, + "__Pyx_c_is_zero": 3, + "__Pyx_c_conj": 3, + "__Pyx_c_abs": 3, + "__Pyx_c_pow": 3, + "cabs": 1, + "cpow": 1, + "__Pyx_PyInt_AsUnsignedChar": 1, + "short": 5, + "__Pyx_PyInt_AsUnsignedShort": 1, + "__Pyx_PyInt_AsUnsignedInt": 1, + "__Pyx_PyInt_AsChar": 1, + "__Pyx_PyInt_AsShort": 1, + "__Pyx_PyInt_AsInt": 1, + "signed": 5, + "__Pyx_PyInt_AsSignedChar": 1, + "__Pyx_PyInt_AsSignedShort": 1, + "__Pyx_PyInt_AsSignedInt": 1, + "__Pyx_PyInt_AsLongDouble": 1, + "__Pyx_PyInt_AsUnsignedLong": 1, + "__Pyx_PyInt_AsUnsignedLongLong": 1, + "__Pyx_PyInt_AsLong": 1, + "__Pyx_PyInt_AsLongLong": 1, + "__Pyx_PyInt_AsSignedLong": 1, + "__Pyx_PyInt_AsSignedLongLong": 1, + "__Pyx_WriteUnraisable": 3, + "__Pyx_ExportFunction": 1, + "*__pyx_f_5numpy_PyArray_MultiIterNew2": 2, + "*__pyx_f_5numpy_PyArray_MultiIterNew3": 2, + "*__pyx_f_5numpy_PyArray_MultiIterNew4": 2, + "*__pyx_f_5numpy_PyArray_MultiIterNew5": 2, + "*__pyx_f_5numpy__util_dtypestring": 2, + "PyArray_Descr": 6, + "__pyx_f_5numpy_set_array_base": 1, + "PyArrayObject": 19, + "*__pyx_f_5numpy_get_array_base": 1, + "inner_work_1d": 2, + "inner_work_2d": 2, + "__Pyx_MODULE_NAME": 1, + "__pyx_module_is_main_wrapper_inner": 1, + "*__pyx_builtin_ValueError": 1, + "*__pyx_builtin_range": 1, + "*__pyx_builtin_RuntimeError": 1, + "__pyx_k_1": 1, + "__pyx_k_2": 1, + "__pyx_k_3": 1, + "__pyx_k_5": 1, + "__pyx_k_7": 1, + "__pyx_k_9": 1, + "__pyx_k_11": 1, + "__pyx_k_12": 1, + "__pyx_k_15": 1, + "__pyx_k__B": 2, + "__pyx_k__H": 2, + "__pyx_k__I": 2, + "__pyx_k__L": 2, + "__pyx_k__O": 2, + "__pyx_k__Q": 2, + "__pyx_k__b": 2, + "__pyx_k__d": 2, + "__pyx_k__f": 2, + "__pyx_k__g": 2, + "__pyx_k__h": 2, + "__pyx_k__i": 2, + "__pyx_k__l": 2, + "__pyx_k__q": 2, + "__pyx_k__Zd": 2, + "__pyx_k__Zf": 2, + "__pyx_k__Zg": 2, + "__pyx_k__np": 1, + "__pyx_k__buf": 1, + "__pyx_k__obj": 1, + "__pyx_k__base": 1, + "__pyx_k__ndim": 1, + "__pyx_k__ones": 1, + "__pyx_k__descr": 1, + "__pyx_k__names": 1, + "__pyx_k__numpy": 1, + "__pyx_k__range": 1, + "__pyx_k__shape": 1, + "__pyx_k__fields": 1, + "__pyx_k__format": 1, + "__pyx_k__strides": 1, + "__pyx_k____main__": 1, + "__pyx_k____test__": 1, + "__pyx_k__itemsize": 1, + "__pyx_k__readonly": 1, + "__pyx_k__type_num": 1, + "__pyx_k__byteorder": 1, + "__pyx_k__ValueError": 1, + "__pyx_k__suboffsets": 1, + "__pyx_k__work_module": 1, + "__pyx_k__RuntimeError": 1, + "__pyx_k__pure_py_test": 1, + "__pyx_k__wrapper_inner": 1, + "__pyx_k__do_awesome_work": 1, + "*__pyx_kp_s_1": 1, + "*__pyx_kp_u_11": 1, + "*__pyx_kp_u_12": 1, + "*__pyx_kp_u_15": 1, + "*__pyx_kp_s_2": 1, + "*__pyx_kp_s_3": 1, + "*__pyx_kp_u_5": 1, + "*__pyx_kp_u_7": 1, + "*__pyx_kp_u_9": 1, + "*__pyx_n_s__RuntimeError": 1, + "*__pyx_n_s__ValueError": 1, + "*__pyx_n_s____main__": 1, + "*__pyx_n_s____test__": 1, + "*__pyx_n_s__base": 1, + "*__pyx_n_s__buf": 1, + "*__pyx_n_s__byteorder": 1, + "*__pyx_n_s__descr": 1, + "*__pyx_n_s__do_awesome_work": 1, + "*__pyx_n_s__fields": 1, + "*__pyx_n_s__format": 1, + "*__pyx_n_s__itemsize": 1, + "*__pyx_n_s__names": 1, + "*__pyx_n_s__ndim": 1, + "*__pyx_n_s__np": 1, + "*__pyx_n_s__numpy": 1, + "*__pyx_n_s__obj": 1, + "*__pyx_n_s__ones": 1, + "*__pyx_n_s__pure_py_test": 1, + "*__pyx_n_s__range": 1, + "*__pyx_n_s__readonly": 1, + "*__pyx_n_s__shape": 1, + "*__pyx_n_s__strides": 1, + "*__pyx_n_s__suboffsets": 1, + "*__pyx_n_s__type_num": 1, + "*__pyx_n_s__work_module": 1, + "*__pyx_n_s__wrapper_inner": 1, + "*__pyx_int_5": 1, + "*__pyx_int_15": 1, + "*__pyx_k_tuple_4": 1, + "*__pyx_k_tuple_6": 1, + "*__pyx_k_tuple_8": 1, + "*__pyx_k_tuple_10": 1, + "*__pyx_k_tuple_13": 1, + "*__pyx_k_tuple_14": 1, + "*__pyx_k_tuple_16": 1, + "__pyx_v_num_x": 4, + "*__pyx_v_data_ptr": 2, + "*__pyx_v_answer_ptr": 2, + "__pyx_v_nd": 6, + "*__pyx_v_dims": 2, + "__pyx_v_typenum": 6, + "*__pyx_v_data_np": 2, + "__pyx_v_sum": 6, + "__pyx_t_1": 154, + "*__pyx_t_2": 4, + "*__pyx_t_3": 4, + "*__pyx_t_4": 3, + "__pyx_t_5": 75, + "__pyx_kp_s_1": 1, + "__pyx_filename": 79, + "__pyx_f": 79, + "__pyx_L1_error": 88, + "__pyx_v_dims": 4, + "NPY_DOUBLE": 3, + "__pyx_t_2": 120, + "PyArray_SimpleNewFromData": 2, + "__pyx_v_data_ptr": 2, + "Py_None": 38, + "__pyx_ptype_5numpy_ndarray": 2, + "__pyx_v_data_np": 10, + "__Pyx_GetName": 4, + "__pyx_m": 4, + "__pyx_n_s__work_module": 3, + "__pyx_t_3": 113, + "PyObject_GetAttr": 4, + "__pyx_n_s__do_awesome_work": 3, + "PyTuple_New": 4, + "PyTuple_SET_ITEM": 4, + "__pyx_t_4": 35, + "PyObject_Call": 11, + "PyErr_Occurred": 2, + "__pyx_v_answer_ptr": 2, + "__pyx_L0": 24, + "__pyx_v_num_y": 2, + "__pyx_kp_s_2": 1, + "*__pyx_pf_13wrapper_inner_pure_py_test": 2, + "*__pyx_self": 2, + "*unused": 2, + "PyMethodDef": 1, + "__pyx_mdef_13wrapper_inner_pure_py_test": 1, + "PyCFunction": 1, + "__pyx_pf_13wrapper_inner_pure_py_test": 1, + "METH_NOARGS": 1, + "*__pyx_v_data": 1, + "*__pyx_r": 7, + "*__pyx_t_1": 8, + "__pyx_self": 2, + "__pyx_v_data": 7, + "__pyx_kp_s_3": 1, + "__pyx_n_s__np": 1, + "__pyx_n_s__ones": 1, + "__pyx_k_tuple_4": 1, + "__pyx_r": 39, + "__Pyx_AddTraceback": 7, + "__pyx_pf_5numpy_7ndarray___getbuffer__": 2, + "*__pyx_v_self": 4, + "*__pyx_v_info": 4, + "__pyx_v_flags": 4, + "__pyx_v_copy_shape": 5, + "__pyx_v_i": 6, + "__pyx_v_ndim": 6, + "__pyx_v_endian_detector": 6, + "__pyx_v_little_endian": 8, + "__pyx_v_t": 29, + "*__pyx_v_f": 2, + "*__pyx_v_descr": 2, + "__pyx_v_offset": 9, + "__pyx_v_hasfields": 4, + "__pyx_t_6": 40, + "__pyx_t_7": 9, + "*__pyx_t_8": 1, + "*__pyx_t_9": 1, + "__pyx_v_info": 33, + "__pyx_v_self": 16, + "PyArray_NDIM": 1, + "__pyx_L5": 6, + "PyArray_CHKFLAGS": 2, + "NPY_C_CONTIGUOUS": 1, + "__pyx_builtin_ValueError": 5, + "__pyx_k_tuple_6": 1, + "__pyx_L6": 6, + "NPY_F_CONTIGUOUS": 1, + "__pyx_k_tuple_8": 1, + "__pyx_L7": 2, + "buf": 14, + "PyArray_DATA": 1, + "strides": 5, + "malloc": 2, + "shape": 3, + "PyArray_STRIDES": 2, + "PyArray_DIMS": 2, + "__pyx_L8": 2, + "suboffsets": 1, + "PyArray_ITEMSIZE": 1, + "PyArray_ISWRITEABLE": 1, + "__pyx_v_f": 31, + "descr": 2, + "__pyx_v_descr": 10, + "PyDataType_HASFIELDS": 2, + "__pyx_L11": 7, + "type_num": 2, + "byteorder": 4, + "__pyx_k_tuple_10": 1, + "__pyx_L13": 2, + "NPY_BYTE": 2, + "__pyx_L14": 18, + "NPY_UBYTE": 2, + "NPY_SHORT": 2, + "NPY_USHORT": 2, + "NPY_INT": 2, + "NPY_UINT": 2, + "NPY_LONG": 1, + "NPY_ULONG": 1, + "NPY_LONGLONG": 1, + "NPY_ULONGLONG": 1, + "NPY_FLOAT": 1, + "NPY_LONGDOUBLE": 1, + "NPY_CFLOAT": 1, + "NPY_CDOUBLE": 1, + "NPY_CLONGDOUBLE": 1, + "NPY_OBJECT": 1, + "__pyx_t_8": 16, + "PyNumber_Remainder": 1, + "__pyx_kp_u_11": 1, + "format": 6, + "__pyx_L12": 2, + "__pyx_t_9": 7, + "__pyx_f_5numpy__util_dtypestring": 1, + "__pyx_L2": 2, + "__pyx_pf_5numpy_7ndarray_1__releasebuffer__": 2, + "PyArray_HASFIELDS": 1, + "free": 4, + "*__pyx_f_5numpy_PyArray_MultiIterNew1": 1, + "*__pyx_v_a": 5, + "PyArray_MultiIterNew": 5, + "__pyx_v_a": 5, + "*__pyx_v_b": 4, + "__pyx_v_b": 4, + "*__pyx_v_c": 3, + "__pyx_v_c": 3, + "*__pyx_v_d": 2, + "__pyx_v_d": 2, + "*__pyx_v_e": 1, + "__pyx_v_e": 1, + "*__pyx_v_end": 1, + "*__pyx_v_offset": 1, + "*__pyx_v_child": 1, + "*__pyx_v_fields": 1, + "*__pyx_v_childname": 1, + "*__pyx_v_new_offset": 1, + "*__pyx_v_t": 1, + "*__pyx_t_5": 1, + "__pyx_t_10": 7, + "*__pyx_t_11": 1, + "__pyx_v_child": 8, + "__pyx_v_fields": 7, + "__pyx_v_childname": 4, + "__pyx_v_new_offset": 5, + "names": 3, + "PyTuple_GET_SIZE": 2, + "PyTuple_GET_ITEM": 3, + "PyObject_GetItem": 1, + "fields": 4, + "PyTuple_CheckExact": 1, + "tuple": 3, + "__pyx_ptype_5numpy_dtype": 1, + "__pyx_v_end": 2, + "PyNumber_Subtract": 2, + "PyObject_RichCompare": 8, + "__pyx_int_15": 1, + "Py_LT": 2, + "__pyx_builtin_RuntimeError": 2, + "__pyx_k_tuple_13": 1, + "__pyx_k_tuple_14": 1, + "elsize": 1, + "__pyx_k_tuple_16": 1, + "__pyx_L10": 2, + "Py_EQ": 6, + "QSCICOMMAND_H": 2, + "": 1, + "": 1, + "QsciCommand": 7, + "represents": 1, + "an": 23, + "editor": 1, + "command": 9, + "may": 9, + "have": 4, + "one": 73, + "keys": 3, + "bound": 4, + "Methods": 1, + "provided": 1, + "change": 3, + "remove": 2, + "key": 23, + "binding.": 1, + "Each": 1, + "has": 29, + "user": 3, + "friendly": 2, + "description": 3, + "in": 165, + "mapping": 3, + "dialogs.": 1, + "defines": 3, + "different": 5, + "commands": 1, + "assigned": 1, + "key.": 1, + "Command": 4, + "Move": 26, + "down": 12, + "line.": 33, + "LineDown": 1, + "SCI_LINEDOWN": 1, + "Extend": 33, + "selection": 39, + "LineDownExtend": 1, + "SCI_LINEDOWNEXTEND": 1, + "rectangular": 9, + "LineDownRectExtend": 1, + "SCI_LINEDOWNRECTEXTEND": 1, + "Scroll": 5, + "view": 2, + "LineScrollDown": 1, + "SCI_LINESCROLLDOWN": 1, + "up": 18, + "LineUp": 1, + "SCI_LINEUP": 1, + "LineUpExtend": 1, + "SCI_LINEUPEXTEND": 1, + "LineUpRectExtend": 1, + "SCI_LINEUPRECTEXTEND": 1, + "LineScrollUp": 1, + "SCI_LINESCROLLUP": 1, + "start": 12, + "ScrollToStart": 1, + "SCI_SCROLLTOSTART": 1, + "ScrollToEnd": 1, + "SCI_SCROLLTOEND": 1, + "vertically": 1, + "centre": 1, + "current": 26, + "VerticalCentreCaret": 1, + "SCI_VERTICALCENTRECARET": 1, + "paragraph.": 4, + "ParaDown": 1, + "SCI_PARADOWN": 1, + "ParaDownExtend": 1, + "SCI_PARADOWNEXTEND": 1, + "ParaUp": 1, + "SCI_PARAUP": 1, + "ParaUpExtend": 1, + "SCI_PARAUPEXTEND": 1, + "left": 7, + "character.": 9, + "CharLeft": 1, + "SCI_CHARLEFT": 1, + "CharLeftExtend": 1, + "SCI_CHARLEFTEXTEND": 1, + "CharLeftRectExtend": 1, + "SCI_CHARLEFTRECTEXTEND": 1, + "right": 9, + "CharRight": 1, + "SCI_CHARRIGHT": 1, + "CharRightExtend": 1, + "SCI_CHARRIGHTEXTEND": 1, + "CharRightRectExtend": 1, + "SCI_CHARRIGHTRECTEXTEND": 1, + "word.": 9, + "WordLeft": 1, + "SCI_WORDLEFT": 1, + "WordLeftExtend": 1, + "SCI_WORDLEFTEXTEND": 1, + "WordRight": 1, + "SCI_WORDRIGHT": 1, + "WordRightExtend": 1, + "SCI_WORDRIGHTEXTEND": 1, + "previous": 6, + "WordLeftEnd": 1, + "SCI_WORDLEFTEND": 1, + "WordLeftEndExtend": 1, + "SCI_WORDLEFTENDEXTEND": 1, + "next": 9, + "WordRightEnd": 1, + "SCI_WORDRIGHTEND": 1, + "WordRightEndExtend": 1, + "SCI_WORDRIGHTENDEXTEND": 1, + "word": 7, + "part.": 4, + "WordPartLeft": 1, + "SCI_WORDPARTLEFT": 1, + "WordPartLeftExtend": 1, + "SCI_WORDPARTLEFTEXTEND": 1, + "WordPartRight": 1, + "SCI_WORDPARTRIGHT": 1, + "WordPartRightExtend": 1, + "SCI_WORDPARTRIGHTEXTEND": 1, + "Home": 1, + "SCI_HOME": 1, + "HomeExtend": 1, + "SCI_HOMEEXTEND": 1, + "HomeRectExtend": 1, + "SCI_HOMERECTEXTEND": 1, + "displayed": 10, + "HomeDisplay": 1, + "SCI_HOMEDISPLAY": 1, + "HomeDisplayExtend": 1, + "SCI_HOMEDISPLAYEXTEND": 1, + "HomeWrap": 1, + "SCI_HOMEWRAP": 1, + "HomeWrapExtend": 1, + "SCI_HOMEWRAPEXTEND": 1, + "visible": 6, + "character": 10, + "VCHome": 1, + "SCI_VCHOME": 1, + "VCHomeExtend": 1, + "SCI_VCHOMEEXTEND": 1, + "VCHomeRectExtend": 1, + "SCI_VCHOMERECTEXTEND": 1, + "VCHomeWrap": 1, + "SCI_VCHOMEWRAP": 1, + "VCHomeWrapExtend": 1, + "SCI_VCHOMEWRAPEXTEND": 1, + "LineEnd": 1, + "SCI_LINEEND": 1, + "LineEndExtend": 1, + "SCI_LINEENDEXTEND": 1, + "LineEndRectExtend": 1, + "SCI_LINEENDRECTEXTEND": 1, + "LineEndDisplay": 1, + "SCI_LINEENDDISPLAY": 1, + "LineEndDisplayExtend": 1, + "SCI_LINEENDDISPLAYEXTEND": 1, + "LineEndWrap": 1, + "SCI_LINEENDWRAP": 1, + "LineEndWrapExtend": 1, + "SCI_LINEENDWRAPEXTEND": 1, + "DocumentStart": 1, + "SCI_DOCUMENTSTART": 1, + "DocumentStartExtend": 1, + "SCI_DOCUMENTSTARTEXTEND": 1, + "DocumentEnd": 1, + "SCI_DOCUMENTEND": 1, + "DocumentEndExtend": 1, + "SCI_DOCUMENTENDEXTEND": 1, + "PageUp": 1, + "SCI_PAGEUP": 1, + "PageUpExtend": 1, + "SCI_PAGEUPEXTEND": 1, + "PageUpRectExtend": 1, + "SCI_PAGEUPRECTEXTEND": 1, + "PageDown": 1, + "SCI_PAGEDOWN": 1, + "PageDownExtend": 1, + "SCI_PAGEDOWNEXTEND": 1, + "PageDownRectExtend": 1, + "SCI_PAGEDOWNRECTEXTEND": 1, + "Stuttered": 4, + "move": 2, + "StutteredPageUp": 1, + "SCI_STUTTEREDPAGEUP": 1, + "extend": 2, + "StutteredPageUpExtend": 1, + "SCI_STUTTEREDPAGEUPEXTEND": 1, + "StutteredPageDown": 1, + "SCI_STUTTEREDPAGEDOWN": 1, + "StutteredPageDownExtend": 1, + "SCI_STUTTEREDPAGEDOWNEXTEND": 1, + "Delete": 10, + "SCI_CLEAR": 1, + "DeleteBack": 1, + "SCI_DELETEBACK": 1, + "at": 20, + "DeleteBackNotLine": 1, + "SCI_DELETEBACKNOTLINE": 1, + "left.": 2, + "DeleteWordLeft": 1, + "SCI_DELWORDLEFT": 1, + "right.": 2, + "DeleteWordRight": 1, + "SCI_DELWORDRIGHT": 1, + "DeleteWordRightEnd": 1, + "SCI_DELWORDRIGHTEND": 1, + "DeleteLineLeft": 1, + "SCI_DELLINELEFT": 1, + "DeleteLineRight": 1, + "SCI_DELLINERIGHT": 1, + "LineDelete": 1, + "SCI_LINEDELETE": 1, + "Cut": 2, + "clipboard.": 5, + "LineCut": 1, + "SCI_LINECUT": 1, + "Copy": 2, + "LineCopy": 1, + "SCI_LINECOPY": 1, + "Transpose": 1, + "lines.": 1, + "LineTranspose": 1, + "SCI_LINETRANSPOSE": 1, + "Duplicate": 2, + "LineDuplicate": 1, + "SCI_LINEDUPLICATE": 1, + "Select": 49, + "SelectAll": 1, + "SCI_SELECTALL": 1, + "selected": 13, + "MoveSelectedLinesUp": 1, + "SCI_MOVESELECTEDLINESUP": 1, + "MoveSelectedLinesDown": 1, + "SCI_MOVESELECTEDLINESDOWN": 1, + "selection.": 1, + "SelectionDuplicate": 1, + "SCI_SELECTIONDUPLICATE": 1, + "Convert": 2, + "lower": 1, + "case.": 2, + "SelectionLowerCase": 1, + "SCI_LOWERCASE": 1, + "upper": 1, + "SelectionUpperCase": 1, + "SCI_UPPERCASE": 1, + "SelectionCut": 1, + "SCI_CUT": 1, + "SelectionCopy": 1, + "SCI_COPY": 1, + "Paste": 2, + "SCI_PASTE": 1, + "Toggle": 1, + "insert/overtype.": 1, + "EditToggleOvertype": 1, + "SCI_EDITTOGGLEOVERTYPE": 1, + "Insert": 2, + "platform": 2, + "dependent": 1, + "newline.": 1, + "Newline": 1, + "SCI_NEWLINE": 1, + "formfeed.": 1, + "Formfeed": 1, + "SCI_FORMFEED": 1, + "Indent": 1, + "level.": 3, + "Tab": 1, + "SCI_TAB": 1, + "De": 1, + "indent": 1, + "Backtab": 1, + "SCI_BACKTAB": 1, + "Cancel": 2, + "operation.": 2, + "SCI_CANCEL": 1, + "Undo": 2, + "command.": 5, + "SCI_UNDO": 1, + "Redo": 2, + "SCI_REDO": 1, + "Zoom": 2, + "in.": 1, + "ZoomIn": 1, + "SCI_ZOOMIN": 1, + "out.": 1, + "ZoomOut": 1, + "SCI_ZOOMOUT": 1, + "executed": 1, + "scicmd": 2, + "Execute": 1, + "execute": 3, + "Binds": 2, + "If": 11, + "then": 15, + "binding": 3, + "removed.": 2, + "invalid": 5, + "unchanged.": 1, + "Valid": 1, + "control": 17, + "Key_Down": 1, + "Key_Up": 1, + "Key_Left": 1, + "Key_Right": 1, + "Key_Home": 1, + "Key_End": 1, + "Key_PageUp": 1, + "Key_PageDown": 1, + "Key_Delete": 1, + "Key_Insert": 1, + "Key_Escape": 1, + "Key_Backspace": 1, + "Key_Tab": 1, + "Key_Return.": 1, + "Keys": 1, + "combination": 2, + "SHIFT": 1, + "CTRL": 1, + "ALT": 1, + "META.": 1, + "setAlternateKey": 3, + "validKey": 3, + "setKey": 3, + "alternate": 7, + "altkey": 3, + "alternateKey": 3, + "currently": 12, + "returned.": 4, + "qkey": 2, + "qaltkey": 2, + "valid": 2, + "QString": 20, + "friend": 10, + "QsciCommandSet": 1, + "*qs": 1, + "cmd": 1, + "*desc": 1, + "bindKey": 1, + "qk": 1, + "scik": 1, + "*qsCmd": 1, + "scikey": 1, + "scialtkey": 1, + "*descCmd": 1, + "Gui": 1, + "LIBCANIH": 2, + "": 2, + "": 2, + "": 1, + "": 1, + "int64": 1, + "//#define": 1, + "dout": 2, + "cout": 2, + "cerr": 1, + "using": 11, + "libcanister": 2, + "//the": 8, + "canmem": 22, + "object": 3, + "generic": 1, + "memory": 14, + "container": 2, + "commonly": 1, + "//throughout": 1, + "canister": 14, + "framework": 1, + "hold": 1, + "uncertain": 1, + "//length": 1, + "which": 14, + "contain": 1, + "null": 3, + "bytes.": 1, + "data": 26, + "raw": 2, + "absolute": 1, + "length": 10, + "//creates": 3, + "unallocated": 1, + "allocsize": 1, + "allocated": 2, + "blank": 1, + "strdata": 1, + "//automates": 1, + "creation": 1, + "zero": 5, + "limited": 2, + "canmems": 1, + "//cleans": 1, + "zeromem": 1, + "//overwrites": 2, + "fragmem": 1, + "fragment": 2, + "notation": 1, + "countlen": 1, + "//counts": 1, + "strings": 1, + "stores": 3, + "trim": 2, + "//removes": 1, + "nulls": 1, + "//returns": 2, + "singleton": 2, + "//contains": 2, + "information": 3, + "about": 6, + "caninfo": 2, + "path": 8, + "//physical": 1, + "internalname": 1, + "//a": 1, + "numfiles": 1, + "files": 6, + "//necessary": 1, + "as": 28, + "canfile": 7, + "//this": 1, + "holds": 2, + "definition": 3, + "within": 4, + "//canister": 1, + "canister*": 1, + "parent": 1, + "//internal": 1, + "//use": 1, + "their": 6, + "own.": 1, + "newline": 2, + "delimited": 2, + "container.": 1, + "TOC": 1, + "info": 2, + "general": 1, + "canfiles": 1, + "recommended": 1, + "programs": 4, + "modify": 1, + "//these": 1, + "directly": 2, + "but": 5, + "enforced.": 1, + "canfile*": 1, + "//if": 1, + "write": 8, + "routines": 1, + "anything": 1, + "//maximum": 1, + "given": 16, + "//time": 1, + "whatever": 1, + "suits": 1, + "your": 12, + "application.": 1, + "cachemax": 2, + "cachecnt": 1, + "//number": 1, + "cache": 2, + "//both": 1, + "initialize": 1, + "physical": 4, + "fspath": 3, + "//destroys": 1, + "after": 18, + "flushing": 1, + "modded": 1, + "buffers": 3, + "course": 2, + "//open": 1, + "//does": 1, + "exist": 2, + "open": 6, + "//close": 1, + "flush": 1, + "all": 11, + "clean": 2, + "//deletes": 1, + "inside": 1, + "delFile": 1, + "//pulls": 1, + "contents": 3, + "disk": 2, + "returns": 4, + "getFile": 1, + "does": 4, + "otherwise": 1, + "overwrites": 1, + "whether": 4, + "succeeded": 2, + "writeFile": 2, + "//get": 1, + "containing": 2, + "//list": 1, + "paths": 1, + "getTOC": 1, + "//brings": 1, + "back": 1, + "limit": 1, + "//important": 1, + "sCFID": 2, + "safe": 4, + "CFID": 2, + "avoid": 1, + "uncaching": 1, + "//really": 1, + "internally": 1, + "harm.": 1, + "cacheclean": 1, + "dFlush": 1, + "Scanner": 16, + "UnicodeCache*": 4, + "unicode_cache": 3, + "unicode_cache_": 10, + "octal_pos_": 5, + "Location": 14, + "harmony_scoping_": 4, + "harmony_modules_": 4, + "Utf16CharacterStream*": 3, + "source_": 7, + "Init": 3, + "has_line_terminator_before_next_": 9, + "SkipWhiteSpace": 4, + "Scan": 5, + "uc32": 19, + "ScanHexNumber": 2, + "expected_length": 4, + "ASSERT": 17, + "prevent": 4, + "overflow": 1, + "c0_": 64, + "HexValue": 2, + "PushBack": 8, + "Advance": 44, + "STATIC_ASSERT": 5, + "Token": 212, + "NUM_TOKENS": 1, + "byte": 6, + "one_char_tokens": 2, + "ILLEGAL": 120, + "LPAREN": 2, + "RPAREN": 2, + "COMMA": 2, + "COLON": 2, + "SEMICOLON": 2, + "CONDITIONAL": 2, + "LBRACK": 2, + "RBRACK": 2, + "LBRACE": 2, + "RBRACE": 2, + "BIT_NOT": 2, + "e": 15, + "Value": 24, + "Next": 3, + "current_": 2, + "has_multiline_comment_before_next_": 5, + "": 19, + "token": 64, + "": 1, + "pos": 12, + "source_pos": 10, + "next_.token": 3, + "next_.location.beg_pos": 3, + "next_.location.end_pos": 4, + "current_.token": 4, + "IsByteOrderMark": 2, + "xFEFF": 1, + "xFFFE": 1, + "start_position": 2, + "IsWhiteSpace": 2, + "IsLineTerminator": 6, + "SkipSingleLineComment": 6, + "continue": 2, + "undo": 4, + "WHITESPACE": 6, + "SkipMultiLineComment": 3, + "ch": 5, + "ScanHtmlComment": 3, + "LT": 2, + "next_.literal_chars": 13, + "ScanString": 3, + "LTE": 1, + "ASSIGN_SHL": 1, + "SHL": 1, + "GTE": 1, + "ASSIGN_SAR": 1, + "ASSIGN_SHR": 1, + "SHR": 1, + "SAR": 1, + "GT": 1, + "EQ_STRICT": 1, + "EQ": 1, + "ASSIGN": 1, + "NE_STRICT": 1, + "NE": 1, + "NOT": 3, + "INC": 1, + "ASSIGN_ADD": 1, + "ADD": 1, + "DEC": 1, + "ASSIGN_SUB": 1, + "SUB": 1, + "ASSIGN_MUL": 1, + "MUL": 1, + "ASSIGN_MOD": 1, + "MOD": 1, + "ASSIGN_DIV": 1, + "DIV": 1, + "AND": 1, + "ASSIGN_BIT_AND": 1, + "BIT_AND": 1, + "OR": 1, + "ASSIGN_BIT_OR": 1, + "BIT_OR": 1, + "ASSIGN_BIT_XOR": 1, + "BIT_XOR": 1, + "IsDecimalDigit": 2, + "ScanNumber": 3, + "PERIOD": 1, + "IsIdentifierStart": 2, + "ScanIdentifierOrKeyword": 2, + "EOS": 1, + "SeekForward": 4, + "current_pos": 4, + "ASSERT_EQ": 1, + "ScanEscape": 2, + "IsCarriageReturn": 2, + "IsLineFeed": 2, + "fall": 2, + "through": 4, + "u": 9, + "xx": 2, + "xxx": 1, + "immediately": 1, + "octal": 1, + "escape": 1, + "quote": 3, + "consume": 2, + "LiteralScope": 4, + "literal": 2, + ".": 16, + "X": 2, + "E": 3, + "l": 1, + "w": 1, + "keyword": 1, + "Unescaped": 1, + "in_character_class": 2, + "AddLiteralCharAdvance": 3, + "literal.Complete": 2, + "ScanLiteralUnicodeEscape": 3, + "": 4, + "DEFAULT_DELIMITER": 1, + "CsvStreamer": 5, + "ofstream": 1, + "File": 1, + "vector": 16, + "row_buffer": 1, + "Buffer": 10, + "row": 12, + "flushed/written": 1, + "Number": 8, + "columns": 2, + "rows": 3, + "records": 2, + "including": 2, + "header": 7, + "delimiter": 2, + "Delimiter": 1, + "comma": 2, + "sanitize": 1, + "Returns": 2, + "ready": 1, + "into": 6, + "Empty": 1, + "CSV": 4, + "streamer...": 1, + "writing": 2, + "Same": 1, + "...": 1, + "Opens": 3, + "path/name": 3, + "Ensures": 1, + "closed": 1, + "saved": 1, + "delimiting": 1, + "add_field": 1, + "still": 3, + "adds": 1, + "field": 5, + "save_fields": 1, + "Call": 2, + "save": 1, + "writes": 2, + "append": 8, + "Appends": 5, + "quoted": 1, + "leading/trailing": 1, + "spaces": 3, + "trimmed": 1, + "Like": 1, + "specify": 1, + "either": 4, + "keep": 1, + "writeln": 1, + "Flushes": 1, + "what": 2, + "buffer": 9, + "Saves": 1, + "closes": 1, + "field_count": 1, + "Gets": 2, + "row_count": 1, + "PROTOBUF_protocol_2dbuffer_2eproto__INCLUDED": 3, + "GOOGLE_PROTOBUF_VERSION": 1, + "generated": 2, + "newer": 2, + "protoc": 2, + "incompatible": 2, + "Protocol": 2, + "headers.": 3, + "update": 1, + "GOOGLE_PROTOBUF_MIN_PROTOC_VERSION": 1, + "older": 1, + "regenerate": 1, + "protoc.": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "*this": 1, + "UnknownFieldSet": 2, + "UnknownFieldSet*": 1, + "GetCachedSize": 1, + "clear_name": 2, + "release_name": 2, + "set_allocated_name": 2, + "set_has_name": 7, + "clear_has_name": 5, + "mutable": 1, + "*name_": 1, + "assign": 3, + "temp": 2, + "SWIG": 2, + "V8_DECLARE_ONCE": 1, + "init_once": 2, + "LazyMutex": 1, + "entropy_mutex": 1, + "LAZY_MUTEX_INITIALIZER": 1, + "entropy_source": 4, + "FlagList": 1, + "EnforceFlagImplications": 1, + "Isolate": 9, + "CurrentPerIsolateThreadData": 4, + "EnterDefaultIsolate": 1, + "thread_id": 1, + ".Equals": 1, + "ThreadId": 1, + "Current": 5, + "IsDefaultIsolate": 1, + "ElementsAccessor": 2, + "LOperand": 2, + "TearDownCaches": 1, + "RegisteredExtension": 1, + "UnregisterAll": 1, + "OS": 3, + "seed_random": 2, + "uint32_t*": 7, + "FLAG_random_seed": 2, + "val": 3, + "ScopedLock": 1, + "entropy_mutex.Pointer": 1, + "random": 1, + "random_base": 3, + "xFFFF": 2, + "FFFF": 1, + "StackFrame": 1, + "IsGlobalContext": 1, + "ByteArray*": 1, + "seed": 2, + "random_seed": 1, + "": 1, + "GetDataStartAddress": 1, + "private_random_seed": 1, + "FLAG_use_idle_notification": 1, + "HEAP": 1, + "Lazy": 1, + "init.": 1, + "Add": 1, + "Remove": 1, + "HandleScopeImplementer*": 1, + "handle_scope_implementer": 5, + "CallDepthIsZero": 1, + "IncrementCallDepth": 1, + "DecrementCallDepth": 1, + "union": 1, + "double_value": 1, + "uint64_t": 8, + "uint64_t_value": 1, + "double_int_union": 2, + "random_bits": 2, + "binary_million": 3, + "r.double_value": 3, + "r.uint64_t_value": 1, + "HeapNumber": 1, + "set_value": 1, + "SetUp": 4, + "FLAG_crankshaft": 1, + "Serializer": 1, + "enabled": 4, + "CPU": 5, + "SupportsCrankshaft": 1, + "PostSetUp": 1, + "RuntimeProfiler": 1, + "GlobalSetUp": 1, + "FLAG_stress_compaction": 1, + "FLAG_force_marking_deque_overflows": 1, + "FLAG_gc_global": 1, + "FLAG_max_new_space_size": 1, + "kPageSizeBits": 1, + "SetUpCaches": 1, + "SetUpJSCallerSavedCodeData": 1, + "SamplerRegistry": 1, + "ExternalReference": 1, + "CallOnce": 1, + "endl": 1, + "///": 843, + "mainpage": 1, + "library": 14, + "Broadcom": 3, + "BCM": 14, + "Raspberry": 6, + "Pi": 5, + "RPi": 17, + "It": 7, + "provides": 3, + "access": 17, + "GPIO": 87, + "IO": 2, + "functions": 19, + "chip": 9, + "allowing": 3, + "pins": 40, + "pin": 90, + "IDE": 4, + "plug": 3, + "board": 2, + "so": 2, + "interface": 9, + "various": 4, + "external": 3, + "devices.": 1, + "reading": 3, + "digital": 2, + "inputs": 2, + "setting": 2, + "outputs": 1, + "SPI": 44, + "I2C": 29, + "accessing": 2, + "timers.": 1, + "Pin": 65, + "event": 3, + "detection": 2, + "supported": 3, + "polling": 1, + "interrupts": 1, + "compatible": 1, + "installs": 1, + "non": 2, + "shared": 2, + "Linux": 2, + "based": 4, + "distro": 1, + "clearly": 1, + "except": 2, + "another": 1, + "package": 1, + "documentation": 3, + "refers": 1, + "downloaded": 1, + "http": 11, + "//www.airspayce.com/mikem/bcm2835/bcm2835": 1, + "tar.gz": 1, + "You": 9, + "find": 2, + "latest": 2, + "//www.airspayce.com/mikem/bcm2835": 1, + "Several": 1, + "provided.": 1, + "Based": 1, + "//elinux.org/RPi_Low": 1, + "level_peripherals": 1, + "//www.raspberrypi.org/wp": 1, + "content/uploads/2012/02/BCM2835": 1, + "ARM": 5, + "Peripherals.pdf": 1, + "//www.scribd.com/doc/101830961/GPIO": 2, + "Pads": 3, + "Control2": 2, + "also": 3, + "online": 1, + "help": 1, + "discussion": 1, + "//groups.google.com/group/bcm2835": 1, + "group": 23, + "questions": 1, + "discussions": 1, + "topic.": 1, + "Do": 1, + "contact": 1, + "author": 3, + "unless": 1, + "discuss": 1, + "commercial": 1, + "licensing.": 1, + "Tested": 1, + "debian6": 1, + "wheezy": 3, + "raspbian": 3, + "Occidentalisv01": 2, + "CAUTION": 1, + "been": 14, + "observed": 1, + "detect": 3, + "enables": 3, + "such": 4, + "bcm2835_gpio_len": 5, + "pulled": 1, + "LOW": 8, + "cause": 1, + "temporary": 1, + "hangs": 1, + "Occidentalisv01.": 1, + "Reason": 1, + "yet": 1, + "determined": 1, + "suspect": 1, + "handler": 1, + "hitting": 1, + "hard": 1, + "loop": 2, + "those": 3, + "OSs.": 1, + "friends": 2, + "make": 6, + "disable": 2, + "bcm2835_gpio_cler_len": 1, + "use.": 1, + "par": 9, + "Installation": 1, + "consists": 1, + "single": 2, + "installed": 1, + "usual": 3, + "places": 1, + "code": 12, + "#": 1, + "download": 2, + "say": 1, + "bcm2835": 7, + "xx.tar.gz": 2, + "tar": 1, + "zxvf": 1, + "cd": 1, + "./configure": 1, + "sudo": 2, + "endcode": 2, + "Physical": 21, + "Addresses": 6, + "bcm2835_peri_read": 3, + "bcm2835_peri_write": 3, + "bcm2835_peri_set_bits": 2, + "level": 10, + "peripheral": 14, + "register": 17, + "functions.": 4, + "They": 1, + "designed": 3, + "addresses": 4, + "described": 1, + "section": 6, + "BCM2835": 2, + "Peripherals": 1, + "manual.": 1, + "FFFFFF": 1, + "peripherals.": 1, + "bus": 4, + "peripherals": 2, + "map": 3, + "onto": 1, + "address": 13, + "starting": 1, + "E000000.": 1, + "Thus": 1, + "advertised": 1, + "manual": 8, + "Ennnnnn": 1, + "available": 6, + "nnnnnn.": 1, + "registers": 12, + "following": 2, + "externals": 1, + "bcm2835_gpio": 2, + "bcm2835_pwm": 2, + "bcm2835_clk": 2, + "bcm2835_pads": 2, + "bcm2835_spio0": 1, + "bcm2835_st": 1, + "bcm2835_bsc0": 1, + "bcm2835_bsc1": 1, + "Numbering": 1, + "numbering": 1, + "inconsistent": 1, + "underlying": 4, + "numbering.": 1, + "//elinux.org/RPi_BCM2835_GPIOs": 1, + "some": 4, + "well": 1, + "power": 1, + "ground": 1, + "pins.": 1, + "Not": 4, + "header.": 1, + "Version": 40, + "P5": 6, + "connector": 1, + "V": 2, + "Gnd.": 1, + "passed": 4, + "_not_": 1, + "number.": 1, + "There": 1, + "symbolic": 1, + "definitions": 3, + "convenience.": 1, + "See": 7, + "ref": 32, + "RPiGPIOPin.": 22, + "Pins": 2, + "bcm2835_spi_*": 1, + "allow": 5, + "SPI0": 17, + "send": 3, + "received": 3, + "Serial": 3, + "Peripheral": 6, + "Interface": 2, + "For": 6, + "more": 4, + "see": 14, + "//en.wikipedia.org/wiki/Serial_Peripheral_Interface_Bus": 1, + "When": 12, + "bcm2835_spi_begin": 3, + "changes": 2, + "bahaviour": 1, + "behaviour": 1, + "order": 14, + "support": 4, + "SPI.": 1, + "While": 1, + "bcm2835_spi_gpio_write": 1, + "bcm2835_spi_end": 4, + "revert": 1, + "configured": 1, + "controled": 1, + "bcm2835_gpio_*": 1, + "calls.": 1, + "P1": 56, + "MOSI": 8, + "MISO": 6, + "CLK": 6, + "CE0": 5, + "CE1": 6, + "bcm2835_i2c_*": 2, + "BSC": 10, + "generically": 1, + "referred": 1, + "I": 4, + "//en.wikipedia.org/wiki/I": 1, + "C2": 1, + "B2C": 1, + "V2": 2, + "SDA": 3, + "SLC": 1, + "Real": 1, + "Time": 1, + "performance": 2, + "constraints": 2, + "i.e.": 1, + "they": 2, + "Such": 1, + "part": 1, + "kernel": 4, + "usually": 2, + "subject": 1, + "paging": 1, + "swapping": 2, + "things": 1, + "besides": 1, + "running": 1, + "program.": 1, + "means": 8, + "expect": 2, + "get": 5, + "time": 10, + "timing": 3, + "programs.": 1, + "In": 2, + "particular": 1, + "guarantee": 1, + "bcm2835_delay": 5, + "bcm2835_delayMicroseconds": 6, + "exactly": 2, + "requested.": 1, + "fact": 2, + "depending": 1, + "activity": 1, + "host": 1, + "etc": 1, + "might": 1, + "significantly": 1, + "longer": 1, + "delay": 9, + "times": 2, + "asked": 1, + "for.": 1, + "So": 1, + "dont": 1, + "request.": 1, + "Arjan": 2, + "reports": 1, + "sched_param": 1, + "sp": 4, + "sp.sched_priority": 1, + "sched_get_priority_max": 1, + "SCHED_FIFO": 2, + "sched_setscheduler": 1, + "mlockall": 1, + "MCL_CURRENT": 1, + "MCL_FUTURE": 1, + "Open": 2, + "Source": 2, + "Licensing": 2, + "GPL": 2, + "appropriate": 7, + "option": 1, + "share": 2, + "application": 2, + "everyone": 1, + "distribute": 1, + "give": 2, + "them": 1, + "who": 1, + "uses": 4, + "wish": 2, + "software": 1, + "under": 2, + "contribute": 1, + "community": 1, + "accordance": 1, + "distributed.": 1, + "//www.gnu.org/copyleft/gpl.html": 1, + "COPYING": 1, + "Acknowledgements": 1, + "Some": 1, + "inspired": 2, + "Dom": 1, + "Gert.": 1, + "Alan": 1, + "Barr.": 1, + "Revision": 1, + "History": 1, + "Initial": 1, + "release": 1, + "Minor": 1, + "bug": 1, + "fixes": 1, + "Added": 11, + "bcm2835_spi_transfern": 3, + "Fixed": 4, + "problem": 2, + "prevented": 1, + "used.": 2, + "Reported": 5, + "David": 1, + "Robinson.": 1, + "bcm2835_close": 4, + "deinit": 1, + "library.": 3, + "Suggested": 1, + "sar": 1, + "Ortiz": 1, + "Document": 1, + "Functions": 1, + "bcm2835_gpio_ren": 3, + "bcm2835_gpio_fen": 3, + "bcm2835_gpio_hen": 3, + "bcm2835_gpio_aren": 3, + "bcm2835_gpio_afen": 3, + "now": 4, + "specified.": 1, + "Other": 1, + "were": 1, + "already": 1, + "previously": 10, + "stay": 1, + "enabled.": 1, + "bcm2835_gpio_clr_ren": 2, + "bcm2835_gpio_clr_fen": 2, + "bcm2835_gpio_clr_hen": 2, + "bcm2835_gpio_clr_len": 2, + "bcm2835_gpio_clr_aren": 2, + "bcm2835_gpio_clr_afen": 2, + "enable": 3, + "individual": 1, + "suggested": 3, + "Andreas": 1, + "Sundstrom.": 1, + "bcm2835_spi_transfernb": 2, + "read": 21, + "write.": 1, + "Improvements": 3, + "barrier": 3, + "maddin.": 1, + "contributed": 1, + "mikew": 1, + "noticed": 1, + "mallocing": 1, + "mmaps": 1, + "/dev/mem.": 1, + "ve": 4, + "removed": 1, + "mallocs": 1, + "frees": 1, + "found": 1, + "nanosleep": 7, + "takes": 1, + "least": 2, + "us.": 1, + "link": 3, + "version.": 1, + "doc": 1, + "Also": 1, + "added": 2, + "define": 2, + "passwrd": 1, + "Gert": 1, + "says": 1, + "pad": 4, + "settings.": 1, + "Changed": 1, + "collisions": 1, + "wiringPi.": 1, + "Macros": 2, + "delayMicroseconds": 3, + "disabled": 2, + "defining": 1, + "BCM2835_NO_DELAY_COMPATIBILITY": 2, + "incorrect": 2, + "Hardware": 1, + "pointers": 2, + "initialisation": 2, + "externally": 1, + "bcm2835_spi0.": 1, + "Now": 4, + "compiles": 1, + "even": 2, + "CLOCK_MONOTONIC_RAW": 1, + "instead.": 1, + "errors": 1, + "divider": 15, + "frequencies": 2, + "MHz": 14, + "clock.": 6, + "Ben": 1, + "Simpson.": 1, + "examples": 1, + "Mark": 5, + "Wolfe.": 1, + "bcm2835_gpio_set_multi": 2, + "bcm2835_gpio_clr_multi": 2, + "bcm2835_gpio_write_multi": 4, + "mask": 20, + "once.": 1, + "Requested": 2, + "Sebastian": 2, + "Loncar.": 2, + "bcm2835_gpio_write_mask.": 1, + "Changes": 1, + "timer": 2, + "counter": 1, + "clock_gettime": 1, + "improved": 1, + "accuracy.": 1, + "No": 2, + "lrt": 1, + "now.": 1, + "Contributed": 1, + "van": 1, + "Vught.": 1, + "Removed": 1, + "inlines": 1, + "patch": 1, + "since": 3, + "don": 1, + "seem": 1, + "work": 1, + "everywhere.": 1, + "olly.": 1, + "Patch": 2, + "Dootson": 2, + "/dev/mem": 4, + "granted.": 1, + "susceptible": 1, + "bit": 19, + "overruns.": 1, + "courtesy": 1, + "Jeremy": 1, + "Mortis.": 1, + "BCM2835_GPFEN0": 2, + "broke": 1, + "ability": 1, + "falling": 4, + "edge": 8, + "events.": 1, + "Dootson.": 2, + "bcm2835_i2c_set_baudrate": 2, + "bcm2835_i2c_read_register_rs.": 1, + "bcm2835_i2c_read": 4, + "bcm2835_i2c_write": 4, + "fix": 1, + "ocasional": 1, + "reads": 2, + "completing.": 1, + "Patched": 1, + "atched": 1, + "his": 1, + "submitted": 1, + "load": 1, + "processes.": 1, + "Updated": 1, + "distribution": 1, + "details": 1, + "airspayce.com": 1, + "missing": 1, + "unmapmem": 1, + "pads": 7, + "leak.": 1, + "Hartmut": 1, + "Henkel.": 1, + "Mike": 1, + "McCauley": 1, + "mikem@airspayce.com": 1, + "DO": 1, + "CONTACT": 1, + "THE": 2, + "AUTHOR": 1, + "DIRECTLY": 1, + "USE": 1, + "LISTS": 1, + "BCM2835_H": 3, + "": 2, + "defgroup": 7, + "constants": 1, + "Constants": 1, + "passing": 1, + "values": 3, + "here": 1, + "@": 14, + "HIGH": 12, + "volts": 2, + "pin.": 21, + "Speed": 1, + "core": 1, + "clock": 21, + "core_clk": 1, + "BCM2835_CORE_CLK_HZ": 1, + "Base": 17, + "Address": 10, + "BCM2835_PERI_BASE": 9, + "System": 10, + "Timer": 9, + "BCM2835_ST_BASE": 1, + "BCM2835_GPIO_PADS": 2, + "Clock/timer": 1, + "BCM2835_CLOCK_BASE": 1, + "BCM2835_GPIO_BASE": 6, + "BCM2835_SPI0_BASE": 1, + "BSC0": 2, + "BCM2835_BSC0_BASE": 1, + "PWM": 2, + "BCM2835_GPIO_PWM": 1, + "C000": 1, + "BSC1": 2, + "BCM2835_BSC1_BASE": 1, + "ST": 1, + "registers.": 10, + "Available": 8, + "bcm2835_init": 11, + "volatile": 13, + "*bcm2835_st": 1, + "*bcm2835_gpio": 1, + "*bcm2835_pwm": 1, + "*bcm2835_clk": 1, + "PADS": 1, + "*bcm2835_pads": 1, + "*bcm2835_spi0": 1, + "*bcm2835_bsc0": 1, + "*bcm2835_bsc1": 1, + "Size": 2, + "BCM2835_PAGE_SIZE": 1, + "*1024": 2, + "BCM2835_BLOCK_SIZE": 1, + "offsets": 2, + "BCM2835_GPIO_BASE.": 1, + "Offsets": 1, + "bytes": 29, + "per": 3, + "Register": 1, + "View": 1, + "BCM2835_GPFSEL0": 1, + "Function": 8, + "BCM2835_GPFSEL1": 1, + "BCM2835_GPFSEL2": 1, + "BCM2835_GPFSEL3": 1, + "BCM2835_GPFSEL4": 1, + "BCM2835_GPFSEL5": 1, + "BCM2835_GPSET0": 1, + "Output": 6, + "Set": 2, + "BCM2835_GPSET1": 1, + "BCM2835_GPCLR0": 1, + "BCM2835_GPCLR1": 1, + "BCM2835_GPLEV0": 1, + "Level": 2, + "BCM2835_GPLEV1": 1, + "BCM2835_GPEDS0": 1, + "Event": 11, + "Detect": 35, + "Status": 6, + "BCM2835_GPEDS1": 1, + "BCM2835_GPREN0": 1, + "Rising": 8, + "Edge": 16, + "Enable": 38, + "BCM2835_GPREN1": 1, + "Falling": 8, + "BCM2835_GPFEN1": 1, + "BCM2835_GPHEN0": 1, + "High": 4, + "BCM2835_GPHEN1": 1, + "BCM2835_GPLEN0": 1, + "Low": 5, + "BCM2835_GPLEN1": 1, + "BCM2835_GPAREN0": 1, + "Async.": 4, + "BCM2835_GPAREN1": 1, + "BCM2835_GPAFEN0": 1, + "BCM2835_GPAFEN1": 1, + "BCM2835_GPPUD": 1, + "Pull": 11, + "up/down": 10, + "BCM2835_GPPUDCLK0": 1, + "Clock": 11, + "BCM2835_GPPUDCLK1": 1, + "bcm2835PortFunction": 1, + "Port": 1, + "select": 9, + "modes": 1, + "bcm2835_gpio_fsel": 2, + "BCM2835_GPIO_FSEL_INPT": 1, + "b000": 1, + "Input": 2, + "BCM2835_GPIO_FSEL_OUTP": 1, + "b001": 1, + "BCM2835_GPIO_FSEL_ALT0": 1, + "b100": 1, + "Alternate": 6, + "BCM2835_GPIO_FSEL_ALT1": 1, + "b101": 1, + "BCM2835_GPIO_FSEL_ALT2": 1, + "b110": 1, + "BCM2835_GPIO_FSEL_ALT3": 1, + "b111": 2, + "BCM2835_GPIO_FSEL_ALT4": 1, + "b011": 1, + "BCM2835_GPIO_FSEL_ALT5": 1, + "b010": 1, + "BCM2835_GPIO_FSEL_MASK": 1, + "bits": 11, + "bcm2835FunctionSelect": 2, + "bcm2835PUDControl": 4, + "Pullup/Pulldown": 1, + "bcm2835_gpio_pud": 5, + "BCM2835_GPIO_PUD_OFF": 1, + "b00": 1, + "Off": 3, + "pull": 1, + "BCM2835_GPIO_PUD_DOWN": 1, + "b01": 1, + "Down": 1, + "BCM2835_GPIO_PUD_UP": 1, + "b10": 1, + "Up": 1, + "Pad": 11, + "BCM2835_PADS_GPIO_0_27": 1, + "BCM2835_PADS_GPIO_28_45": 1, + "BCM2835_PADS_GPIO_46_53": 1, + "Control": 6, + "masks": 1, + "BCM2835_PAD_PASSWRD": 1, + "A": 7, + "Password": 1, + "BCM2835_PAD_SLEW_RATE_UNLIMITED": 1, + "Slew": 1, + "rate": 3, + "unlimited": 1, + "BCM2835_PAD_HYSTERESIS_ENABLED": 1, + "Hysteresis": 1, + "BCM2835_PAD_DRIVE_2mA": 1, + "mA": 8, + "drive": 8, + "BCM2835_PAD_DRIVE_4mA": 1, + "BCM2835_PAD_DRIVE_6mA": 1, + "BCM2835_PAD_DRIVE_8mA": 1, + "BCM2835_PAD_DRIVE_10mA": 1, + "BCM2835_PAD_DRIVE_12mA": 1, + "BCM2835_PAD_DRIVE_14mA": 1, + "BCM2835_PAD_DRIVE_16mA": 1, + "bcm2835PadGroup": 4, + "specification": 1, + "bcm2835_gpio_pad": 2, + "BCM2835_PAD_GROUP_GPIO_0_27": 1, + "BCM2835_PAD_GROUP_GPIO_28_45": 1, + "BCM2835_PAD_GROUP_GPIO_46_53": 1, + "Numbers": 1, + "Here": 1, + "terms": 4, + "numbers.": 1, + "These": 6, + "requiring": 1, + "bin": 1, + "connected": 1, + "adopt": 1, + "function.": 3, + "slightly": 1, + "pinouts": 1, + "these": 1, + "RPI_V2_*.": 1, + "At": 1, + "bootup": 1, + "UART0_TXD": 3, + "UART0_RXD": 3, + "ie": 3, + "alt0": 1, + "respectively": 1, + "dedicated": 1, + "cant": 1, + "controlled": 1, + "independently": 1, + "RPI_GPIO_P1_03": 6, + "RPI_GPIO_P1_05": 6, + "RPI_GPIO_P1_07": 1, + "RPI_GPIO_P1_08": 1, + "defaults": 4, + "alt": 4, + "RPI_GPIO_P1_10": 1, + "RPI_GPIO_P1_11": 1, + "RPI_GPIO_P1_12": 1, + "RPI_GPIO_P1_13": 1, + "RPI_GPIO_P1_15": 1, + "RPI_GPIO_P1_16": 1, + "RPI_GPIO_P1_18": 1, + "RPI_GPIO_P1_19": 1, + "RPI_GPIO_P1_21": 1, + "RPI_GPIO_P1_22": 1, + "RPI_GPIO_P1_23": 1, + "RPI_GPIO_P1_24": 1, + "RPI_GPIO_P1_26": 1, + "RPI_V2_GPIO_P1_03": 1, + "RPI_V2_GPIO_P1_05": 1, + "RPI_V2_GPIO_P1_07": 1, + "RPI_V2_GPIO_P1_08": 1, + "RPI_V2_GPIO_P1_10": 1, + "RPI_V2_GPIO_P1_11": 1, + "RPI_V2_GPIO_P1_12": 1, + "RPI_V2_GPIO_P1_13": 1, + "RPI_V2_GPIO_P1_15": 1, + "RPI_V2_GPIO_P1_16": 1, + "RPI_V2_GPIO_P1_18": 1, + "RPI_V2_GPIO_P1_19": 1, + "RPI_V2_GPIO_P1_21": 1, + "RPI_V2_GPIO_P1_22": 1, + "RPI_V2_GPIO_P1_23": 1, + "RPI_V2_GPIO_P1_24": 1, + "RPI_V2_GPIO_P1_26": 1, + "RPI_V2_GPIO_P5_03": 1, + "RPI_V2_GPIO_P5_04": 1, + "RPI_V2_GPIO_P5_05": 1, + "RPI_V2_GPIO_P5_06": 1, + "RPiGPIOPin": 1, + "BCM2835_SPI0_CS": 1, + "Master": 12, + "BCM2835_SPI0_FIFO": 1, + "TX": 5, + "RX": 7, + "FIFOs": 1, + "BCM2835_SPI0_CLK": 1, + "Divider": 2, + "BCM2835_SPI0_DLEN": 1, + "Data": 9, + "Length": 2, + "BCM2835_SPI0_LTOH": 1, + "LOSSI": 1, + "TOH": 1, + "BCM2835_SPI0_DC": 1, + "DMA": 3, + "DREQ": 1, + "Controls": 1, + "BCM2835_SPI0_CS_LEN_LONG": 1, + "Long": 1, + "Lossi": 2, + "DMA_LEN": 1, + "BCM2835_SPI0_CS_DMA_LEN": 1, + "BCM2835_SPI0_CS_CSPOL2": 1, + "Chip": 9, + "Polarity": 5, + "BCM2835_SPI0_CS_CSPOL1": 1, + "BCM2835_SPI0_CS_CSPOL0": 1, + "BCM2835_SPI0_CS_RXF": 1, + "RXF": 2, + "FIFO": 25, + "Full": 1, + "BCM2835_SPI0_CS_RXR": 1, + "RXR": 3, + "Reading": 1, + "full": 9, + "BCM2835_SPI0_CS_TXD": 1, + "TXD": 2, + "accept": 2, + "BCM2835_SPI0_CS_RXD": 1, + "RXD": 2, + "contains": 2, + "BCM2835_SPI0_CS_DONE": 1, + "Done": 3, + "transfer": 8, + "BCM2835_SPI0_CS_TE_EN": 1, + "Unused": 2, + "BCM2835_SPI0_CS_LMONO": 1, + "BCM2835_SPI0_CS_LEN": 1, + "LEN": 1, + "LoSSI": 1, + "BCM2835_SPI0_CS_REN": 1, + "REN": 1, + "Read": 3, + "BCM2835_SPI0_CS_ADCS": 1, + "ADCS": 1, + "Automatically": 1, + "Deassert": 1, + "BCM2835_SPI0_CS_INTR": 1, + "INTR": 1, + "Interrupt": 5, + "BCM2835_SPI0_CS_INTD": 1, + "INTD": 1, + "BCM2835_SPI0_CS_DMAEN": 1, + "DMAEN": 1, + "BCM2835_SPI0_CS_TA": 1, + "Transfer": 3, + "Active": 2, + "BCM2835_SPI0_CS_CSPOL": 1, + "BCM2835_SPI0_CS_CLEAR": 1, + "BCM2835_SPI0_CS_CLEAR_RX": 1, + "BCM2835_SPI0_CS_CLEAR_TX": 1, + "BCM2835_SPI0_CS_CPOL": 1, + "BCM2835_SPI0_CS_CPHA": 1, + "Phase": 1, + "BCM2835_SPI0_CS_CS": 1, + "bcm2835SPIBitOrder": 3, + "Bit": 1, + "Specifies": 5, + "ordering": 4, + "bcm2835_spi_setBitOrder": 2, + "BCM2835_SPI_BIT_ORDER_LSBFIRST": 1, + "LSB": 1, + "First": 2, + "BCM2835_SPI_BIT_ORDER_MSBFIRST": 1, + "MSB": 1, + "Specify": 2, + "bcm2835_spi_setDataMode": 2, + "BCM2835_SPI_MODE0": 1, + "CPOL": 4, + "CPHA": 4, + "BCM2835_SPI_MODE1": 1, + "BCM2835_SPI_MODE2": 1, + "BCM2835_SPI_MODE3": 1, + "bcm2835SPIMode": 2, + "bcm2835SPIChipSelect": 3, + "BCM2835_SPI_CS0": 1, + "BCM2835_SPI_CS1": 1, + "BCM2835_SPI_CS2": 1, + "CS1": 1, + "CS2": 1, + "asserted": 3, + "BCM2835_SPI_CS_NONE": 1, + "CS": 5, + "yourself": 1, + "bcm2835SPIClockDivider": 3, + "generate": 2, + "Figures": 1, + "below": 1, + "period": 1, + "frequency.": 1, + "divided": 2, + "nominal": 2, + "reported": 2, + "contrary": 1, + "shown": 1, + "confirmed": 1, + "measurement": 2, + "BCM2835_SPI_CLOCK_DIVIDER_65536": 1, + "us": 12, + "kHz": 10, + "BCM2835_SPI_CLOCK_DIVIDER_32768": 1, + "BCM2835_SPI_CLOCK_DIVIDER_16384": 1, + "BCM2835_SPI_CLOCK_DIVIDER_8192": 1, + "/51757813kHz": 1, + "BCM2835_SPI_CLOCK_DIVIDER_4096": 1, + "BCM2835_SPI_CLOCK_DIVIDER_2048": 1, + "BCM2835_SPI_CLOCK_DIVIDER_1024": 1, + "BCM2835_SPI_CLOCK_DIVIDER_512": 1, + "BCM2835_SPI_CLOCK_DIVIDER_256": 1, + "BCM2835_SPI_CLOCK_DIVIDER_128": 1, + "ns": 9, + "BCM2835_SPI_CLOCK_DIVIDER_64": 1, + "BCM2835_SPI_CLOCK_DIVIDER_32": 1, + "BCM2835_SPI_CLOCK_DIVIDER_16": 1, + "BCM2835_SPI_CLOCK_DIVIDER_8": 1, + "BCM2835_SPI_CLOCK_DIVIDER_4": 1, + "BCM2835_SPI_CLOCK_DIVIDER_2": 1, + "fastest": 1, + "BCM2835_SPI_CLOCK_DIVIDER_1": 1, + "same": 3, + "/65536": 1, + "BCM2835_BSC_C": 1, + "BCM2835_BSC_S": 1, + "BCM2835_BSC_DLEN": 1, + "BCM2835_BSC_A": 1, + "Slave": 1, + "BCM2835_BSC_FIFO": 1, + "BCM2835_BSC_DIV": 1, + "BCM2835_BSC_DEL": 1, + "Delay": 4, + "BCM2835_BSC_CLKT": 1, + "Stretch": 2, + "Timeout": 2, + "BCM2835_BSC_C_I2CEN": 1, + "BCM2835_BSC_C_INTR": 1, + "BCM2835_BSC_C_INTT": 1, + "BCM2835_BSC_C_INTD": 1, + "DONE": 2, + "BCM2835_BSC_C_ST": 1, + "Start": 4, + "BCM2835_BSC_C_CLEAR_1": 1, + "BCM2835_BSC_C_CLEAR_2": 1, + "BCM2835_BSC_C_READ": 1, + "BCM2835_BSC_S_CLKT": 1, + "stretch": 1, + "BCM2835_BSC_S_ERR": 1, + "ACK": 1, + "BCM2835_BSC_S_RXF": 1, + "BCM2835_BSC_S_TXE": 1, + "TXE": 1, + "BCM2835_BSC_S_RXD": 1, + "BCM2835_BSC_S_TXD": 1, + "BCM2835_BSC_S_RXR": 1, + "BCM2835_BSC_S_TXW": 1, + "TXW": 1, + "BCM2835_BSC_S_DONE": 1, + "BCM2835_BSC_S_TA": 1, + "BCM2835_BSC_FIFO_SIZE": 1, + "bcm2835I2CClockDivider": 3, + "BCM2835_I2C_CLOCK_DIVIDER_2500": 1, + "BCM2835_I2C_CLOCK_DIVIDER_626": 1, + "BCM2835_I2C_CLOCK_DIVIDER_150": 1, + "reset": 1, + "BCM2835_I2C_CLOCK_DIVIDER_148": 1, + "bcm2835I2CReasonCodes": 5, + "reason": 4, + "codes": 1, + "BCM2835_I2C_REASON_OK": 1, + "Success": 1, + "BCM2835_I2C_REASON_ERROR_NACK": 1, + "Received": 4, + "NACK": 1, + "BCM2835_I2C_REASON_ERROR_CLKT": 1, + "BCM2835_I2C_REASON_ERROR_DATA": 1, + "sent": 1, + "BCM2835_ST_CS": 1, + "Control/Status": 1, + "BCM2835_ST_CLO": 1, + "Counter": 4, + "Lower": 2, + "BCM2835_ST_CHI": 1, + "Upper": 1, + "BCM2835_PWM_CONTROL": 1, + "BCM2835_PWM_STATUS": 1, + "BCM2835_PWM0_RANGE": 1, + "BCM2835_PWM0_DATA": 1, + "BCM2835_PWM1_RANGE": 1, + "BCM2835_PWM1_DATA": 1, + "BCM2835_PWMCLK_CNTL": 1, + "BCM2835_PWMCLK_DIV": 1, + "BCM2835_PWM1_MS_MODE": 1, + "Run": 4, + "MS": 2, + "BCM2835_PWM1_USEFIFO": 1, + "BCM2835_PWM1_REVPOLAR": 1, + "Reverse": 2, + "polarity": 3, + "BCM2835_PWM1_OFFSTATE": 1, + "Ouput": 2, + "BCM2835_PWM1_REPEATFF": 1, + "Repeat": 2, + "empty": 2, + "BCM2835_PWM1_SERIAL": 1, + "serial": 2, + "BCM2835_PWM1_ENABLE": 1, + "Channel": 2, + "BCM2835_PWM0_MS_MODE": 1, + "BCM2835_PWM0_USEFIFO": 1, + "BCM2835_PWM0_REVPOLAR": 1, + "BCM2835_PWM0_OFFSTATE": 1, + "BCM2835_PWM0_REPEATFF": 1, + "BCM2835_PWM0_SERIAL": 1, + "BCM2835_PWM0_ENABLE": 1, + "init": 2, + "Library": 1, + "management": 1, + "intialise": 1, + "Initialise": 1, + "opening": 1, + "getting": 1, + "call": 4, + "successfully": 1, + "bcm2835_set_debug": 2, + "fails": 1, + "returning": 1, + "crashes": 1, + "failures.": 1, + "Prints": 1, + "messages": 1, + "stderr": 1, + "errors.": 1, + "successful": 2, + "Close": 1, + "deallocating": 1, + "debug": 6, + "prevents": 1, + "makes": 1, + "out": 5, + "would": 2, + "causes": 1, + "normal": 1, + "param": 72, + "uint8_t": 43, + "lowlevel": 2, + "provide": 1, + "generally": 1, + "Reads": 5, + "done": 3, + "twice": 3, + "therefore": 6, + "always": 3, + "precautions": 3, + "correct": 3, + "paddr": 10, + "from.": 6, + "etc.": 5, + "without": 3, + "occurred": 2, + "since.": 2, + "bcm2835_peri_read_nb": 1, + "Writes": 2, + "bcm2835_peri_write_nb": 1, + "Alters": 1, + "regsiter.": 1, + "valu": 1, + "alters": 1, + "deines": 1, + "according": 1, + "value.": 2, + "All": 1, + "unaffected.": 1, + "subset": 1, + "register.": 3, + "masked": 2, + "mask.": 1, + "Bitmask": 1, + "altered": 1, + "gpio": 1, + "interface.": 3, + "state.": 1, + "configures": 1, + "RPI_GPIO_P1_*": 21, + "Mode": 1, + "BCM2835_GPIO_FSEL_*": 1, + "specified": 27, + "HIGH.": 2, + "bcm2835_gpio_write": 3, + "bcm2835_gpio_set": 1, + "LOW.": 5, + "bcm2835_gpio_clr": 1, + "Mask": 6, + "affect.": 4, + "eg": 5, + "Works": 1, + "output.": 1, + "bcm2835_gpio_lev": 1, + "Status.": 7, + "Tests": 1, + "detected": 7, + "requested": 1, + "bcm2835_gpio_set_eds": 2, + "status": 1, + "th": 1, + "bcm2835_gpio_eds": 1, + "effect": 3, + "clearing": 1, + "flag.": 1, + "afer": 1, + "seeing": 1, + "rising": 3, + "sets": 8, + "GPRENn": 2, + "synchronous": 2, + "detection.": 2, + "signal": 4, + "sampled": 6, + "looking": 2, + "pattern": 2, + "signal.": 2, + "suppressing": 2, + "glitches.": 2, + "Disable": 6, + "Asynchronous": 6, + "incoming": 2, + "As": 2, + "edges": 2, + "very": 2, + "duration": 2, + "detected.": 2, + "bcm2835_gpio_pudclk": 3, + "resistor": 1, + "However": 3, + "convenient": 2, + "bcm2835_gpio_set_pud": 4, + "pud": 4, + "desired": 7, + "One": 3, + "BCM2835_GPIO_PUD_*": 2, + "Clocks": 3, + "earlier": 1, + "group.": 2, + "BCM2835_PAD_GROUP_GPIO_*": 2, + "BCM2835_PAD_*": 2, + "bcm2835_gpio_set_pad": 1, + "Delays": 3, + "milliseconds.": 1, + "Uses": 4, + "until": 1, + "up.": 1, + "mercy": 2, + "From": 2, + "interval": 4, + "req": 2, + "exact": 2, + "multiple": 2, + "granularity": 2, + "rounded": 2, + "multiple.": 2, + "Furthermore": 2, + "sleep": 2, + "completes": 2, + "becomes": 2, + "again": 2, + "thread.": 2, + "millis": 2, + "milliseconds": 1, + "microseconds.": 2, + "busy": 2, + "wait": 2, + "timers": 1, + "less": 1, + "microseconds": 6, + "Timer.": 1, + "RaspberryPi": 1, + "Your": 1, + "mileage": 1, + "vary.": 1, + "micros": 5, + "required": 2, + "bcm2835_gpio_write_mask": 1, + "clocking": 1, + "spi": 1, + "let": 2, + "device.": 2, + "operations.": 4, + "Forces": 2, + "ALT0": 2, + "funcitons": 1, + "End": 2, + "INPUT": 2, + "behaviour.": 2, + "NOTE": 1, + "effect.": 1, + "SPI0.": 1, + "Defaults": 1, + "BCM2835_SPI_BIT_ORDER_*": 1, + "speed.": 2, + "BCM2835_SPI_CLOCK_DIVIDER_*": 1, + "bcm2835_spi_setClockDivider": 1, + "uint16_t": 2, + "polariy": 1, + "phase": 1, + "BCM2835_SPI_MODE*": 1, + "bcm2835_spi_transfer": 5, + "made": 1, + "during": 4, + "transfer.": 4, + "cs": 4, + "activate": 1, + "slave.": 7, + "BCM2835_SPI_CS*": 1, + "bcm2835_spi_chipSelect": 4, + "occurs": 1, + "active.": 1, + "transfers": 1, + "happening": 1, + "complement": 1, + "inactive": 1, + "affect": 1, + "active": 3, + "Whether": 1, + "bcm2835_spi_setChipSelectPolarity": 1, + "Transfers": 6, + "Asserts": 3, + "simultaneously": 3, + "clocks": 2, + "MISO.": 2, + "polled": 2, + "Peripherls": 2, + "slave": 8, + "placed": 1, + "rbuf.": 1, + "rbuf": 3, + "tbuf": 4, + "send.": 5, + "put": 1, + "send/received": 2, + "bcm2835_spi_transfernb.": 1, + "replaces": 1, + "transmitted": 1, + "buffer.": 1, + "replace": 1, + "bcm2835_spi_writenb": 1, + "i2c": 1, + "Philips": 1, + "bus/interface": 1, + "January": 1, + "SCL": 2, + "bcm2835_i2c_end": 3, + "bcm2835_i2c_begin": 1, + "address.": 2, + "addr": 2, + "bcm2835_i2c_setSlaveAddress": 4, + "BCM2835_I2C_CLOCK_DIVIDER_*": 1, + "bcm2835_i2c_setClockDivider": 2, + "converting": 1, + "baudrate": 4, + "parameter": 1, + "equivalent": 1, + "divider.": 1, + "standard": 2, + "khz": 1, + "corresponds": 1, + "its": 1, + "driver.": 1, + "Of": 1, + "nothing": 1, + "driver": 1, + "receive.": 2, + "received.": 2, + "Allows": 2, + "slaves": 1, + "require": 3, + "repeated": 1, + "prior": 1, + "stop": 1, + "set.": 1, + "popular": 1, + "MPL3115A2": 1, + "pressure": 1, + "temperature": 1, + "sensor.": 1, + "Note": 1, + "combined": 1, + "better": 1, + "choice.": 1, + "Will": 1, + "regaddr": 2, + "bcm2835_i2c_read_register_rs": 1, + "st": 1, + "delays": 1, + "Counter.": 1, + "bcm2835_st_read": 1, + "offset.": 1, + "offset_micros": 2, + "Offset": 1, + "bcm2835_st_delay": 1, + "@example": 5, + "blink.c": 1, + "Blinks": 1, + "off": 1, + "input.c": 1, + "event.c": 1, + "Shows": 3, + "how": 3, + "spi.c": 1, + "spin.c": 1, + "": 1, + "": 1, + "": 2, + "*env_instance": 1, + "*Env": 1, + "env_instance": 3, + "QObject": 2, + "QCoreApplication": 1, + "**envp": 1, + "**env": 1, + "**": 2, + "envvar": 2, + "indexOfEquals": 5, + "env": 3, + "*env": 1, + "envvar.indexOf": 1, + "envvar.left": 1, + "envvar.mid": 1, + "m_map.insert": 1, + "QVariantMap": 3, + "asVariantMap": 2, + "m_map": 2, + "ENV_H": 3, + "": 1, + "Q_OBJECT": 1, + "*instance": 1, + "rpc_init": 1, + "rpc_server_loop": 1, + "BITCOIN_KEY_H": 2, + "": 1, + "": 1, + "EC_KEY": 3, + "key_error": 6, + "runtime_error": 2, + "str": 2, + "CKeyID": 5, + "uint160": 8, + "CScriptID": 3, + "CPubKey": 11, + "vchPubKey": 6, + "CKey": 26, + "vchPubKeyIn": 2, + "a.vchPubKey": 3, + "b.vchPubKey": 3, + "IMPLEMENT_SERIALIZE": 1, + "READWRITE": 1, + "GetID": 1, + "Hash160": 1, + "uint256": 10, + "GetHash": 1, + "Hash": 1, + "vchPubKey.begin": 1, + "vchPubKey.end": 1, + "IsValid": 4, + "vchPubKey.size": 3, + "IsCompressed": 2, + "Raw": 1, + "secure_allocator": 2, + "CPrivKey": 3, + "CSecret": 4, + "EC_KEY*": 1, + "pkey": 14, + "fSet": 7, + "fCompressedPubKey": 5, + "SetCompressedPubKey": 4, + "Reset": 5, + "IsNull": 1, + "MakeNewKey": 1, + "fCompressed": 3, + "SetPrivKey": 1, + "vchPrivKey": 1, + "SetSecret": 1, + "vchSecret": 1, + "GetSecret": 2, + "GetPrivKey": 1, + "SetPubKey": 1, + "GetPubKey": 5, + "hash": 20, + "vchSig": 18, + "SignCompact": 2, + "SetCompactSignature": 2, + "Verify": 2, + "VerifyCompact": 2, + "": 1, + "": 1, + "": 1, + "EC_KEY_regenerate_key": 1, + "*eckey": 2, + "BIGNUM": 9, + "*priv_key": 1, + "ok": 3, + "BN_CTX": 2, + "*ctx": 2, + "EC_POINT": 4, + "*pub_key": 1, + "eckey": 7, + "EC_GROUP": 2, + "*group": 2, + "EC_KEY_get0_group": 2, + "ctx": 26, + "BN_CTX_new": 2, + "err": 26, + "pub_key": 6, + "EC_POINT_new": 4, + "EC_POINT_mul": 3, + "priv_key": 2, + "EC_KEY_set_private_key": 1, + "EC_KEY_set_public_key": 2, + "EC_POINT_free": 4, + "BN_CTX_free": 2, + "ECDSA_SIG_recover_key_GFp": 3, + "ECDSA_SIG": 3, + "*ecsig": 1, + "*msg": 2, + "msglen": 2, + "recid": 3, + "ret": 24, + "*x": 1, + "*e": 1, + "*order": 1, + "*sor": 1, + "*eor": 1, + "*field": 1, + "*R": 1, + "*O": 1, + "*Q": 1, + "*rr": 1, + "*zero": 1, + "BN_CTX_start": 1, + "BN_CTX_get": 8, + "EC_GROUP_get_order": 1, + "BN_copy": 1, + "BN_mul_word": 1, + "BN_add": 1, + "ecsig": 3, + "EC_GROUP_get_curve_GFp": 1, + "BN_cmp": 1, + "R": 6, + "EC_POINT_set_compressed_coordinates_GFp": 1, + "O": 5, + "EC_POINT_is_at_infinity": 1, + "Q": 5, + "EC_GROUP_get_degree": 1, + "BN_bin2bn": 3, + "msg": 1, + "*msglen": 1, + "BN_rshift": 1, + "BN_zero": 1, + "BN_mod_sub": 1, + "rr": 4, + "BN_mod_inverse": 1, + "sor": 3, + "BN_mod_mul": 2, + "eor": 3, + "BN_CTX_end": 1, + "EC_KEY_set_conv_form": 1, + "POINT_CONVERSION_COMPRESSED": 1, + "EC_KEY_new_by_curve_name": 2, + "NID_secp256k1": 2, + "throw": 4, + "EC_KEY_dup": 1, + "b.pkey": 2, + "b.fSet": 2, + "EC_KEY_copy": 1, + "nSize": 2, + "vchSig.clear": 2, + "vchSig.resize": 2, + "Shrink": 1, + "fit": 1, + "actual": 1, + "fOk": 3, + "*sig": 2, + "ECDSA_do_sign": 1, + "sig": 11, + "nBitsR": 3, + "BN_num_bits": 2, + "nBitsS": 3, + "nRecId": 4, + "<4;>": 1, + "keyRec": 5, + "BN_bn2bin": 2, + "/8": 2, + "ECDSA_SIG_free": 2, + "vchSig.size": 2, + "nV": 6, + "<27>": 1, + "ECDSA_SIG_new": 1, + "EC_KEY_free": 1, + "ECDSA_verify": 1, + "key.SetCompactSignature": 1, + "key.GetPubKey": 1, + "fCompr": 3, + "secret": 2, + "key2": 1, + "key2.SetSecret": 1, + "key2.GetPubKey": 1, + "V8_SCANNER_H_": 3, + "ParsingFlags": 1, + "kNoParsingFlags": 1, + "kLanguageModeMask": 4, + "kAllowLazy": 1, + "kAllowNativesSyntax": 1, + "kAllowModules": 1, + "CLASSIC_MODE": 2, + "STRICT_MODE": 2, + "EXTENDED_MODE": 2, + "x16": 1, + "x36.": 1, + "Utf16CharacterStream": 3, + "pos_": 6, + "buffer_cursor_": 5, + "buffer_end_": 3, + "ReadBlock": 2, + "": 1, + "kEndOfInput": 2, + "code_unit_count": 7, + "buffered_chars": 2, + "SlowSeekForward": 2, + "int32_t": 1, + "code_unit": 6, + "uc16*": 3, + "UnicodeCache": 3, + "unibrow": 11, + "Utf8InputBuffer": 2, + "<1024>": 2, + "Utf8Decoder": 2, + "StaticResource": 2, + "": 2, + "utf8_decoder": 1, + "utf8_decoder_": 2, + "uchar": 4, + "kIsIdentifierStart.get": 1, + "IsIdentifierPart": 1, + "kIsIdentifierPart.get": 1, + "kIsLineTerminator.get": 1, + "kIsWhiteSpace.get": 1, + "Predicate": 4, + "": 1, + "128": 4, + "kIsIdentifierStart": 1, + "": 1, + "kIsIdentifierPart": 1, + "": 1, + "kIsLineTerminator": 1, + "": 1, + "kIsWhiteSpace": 1, + "DISALLOW_COPY_AND_ASSIGN": 2, + "LiteralBuffer": 6, + "is_ascii_": 10, + "position_": 17, + "backing_store_": 7, + "backing_store_.length": 4, + "backing_store_.Dispose": 3, + "INLINE": 2, + "AddChar": 2, + "ExpandBuffer": 2, + "kMaxAsciiCharCodeU": 1, + "": 6, + "kASCIISize": 1, + "ConvertToUtf16": 2, + "": 2, + "kUC16Size": 2, + "is_ascii": 3, + "Vector": 13, + "uc16": 5, + "utf16_literal": 3, + "backing_store_.start": 5, + "ascii_literal": 3, + "kInitialCapacity": 2, + "kGrowthFactory": 2, + "kMinConversionSlack": 1, + "kMaxGrowth": 2, + "MB": 1, + "NewCapacity": 3, + "min_capacity": 2, + "capacity": 3, + "Max": 1, + "new_capacity": 2, + "Min": 1, + "new_store": 6, + "memcpy": 1, + "new_store.start": 3, + "new_content_size": 4, + "src": 2, + "": 1, + "dst": 2, + "Scanner*": 2, + "scanner_": 5, + "complete_": 4, + "StartLiteral": 2, + "DropLiteral": 2, + "Complete": 1, + "TerminateLiteral": 2, + "beg_pos": 5, + "end_pos": 4, + "kNoOctalLocation": 1, + "scanner_contants": 1, + "current_token": 1, + "current_.location": 2, + "literal_ascii_string": 1, + "ASSERT_NOT_NULL": 9, + "current_.literal_chars": 11, + "literal_utf16_string": 1, + "is_literal_ascii": 1, + "literal_length": 1, + "literal_contains_escapes": 1, + "source_length": 3, + "location.end_pos": 1, + "location.beg_pos": 1, + "STRING": 1, + "peek": 1, + "peek_location": 1, + "next_.location": 1, + "next_literal_ascii_string": 1, + "next_literal_utf16_string": 1, + "is_next_literal_ascii": 1, + "next_literal_length": 1, + "kCharacterLookaheadBufferSize": 3, + "ScanOctalEscape": 1, + "octal_position": 1, + "clear_octal_position": 1, + "HarmonyScoping": 1, + "SetHarmonyScoping": 1, + "scoping": 2, + "HarmonyModules": 1, + "SetHarmonyModules": 1, + "modules": 2, + "HasAnyLineTerminatorBeforeNext": 1, + "ScanRegExpPattern": 1, + "seen_equal": 1, + "ScanRegExpFlags": 1, + "IsIdentifier": 1, + "CharacterStream*": 1, + "TokenDesc": 3, + "LiteralBuffer*": 2, + "literal_chars": 1, + "free_buffer": 3, + "literal_buffer1_": 3, + "literal_buffer2_": 2, + "AddLiteralChar": 2, + "tok": 2, + "else_": 2, + "ScanDecimalDigits": 1, + "seen_period": 1, + "ScanIdentifierSuffix": 1, + "LiteralScope*": 1, + "ScanIdentifierUnicodeEscape": 1, + "desc": 2, + "look": 1, + "ahead": 1, + "Field": 2, + "Free": 1, + "Black": 1, + "White": 1, + "Illegal": 1, + "Player": 1, + "NINJA_METRICS_H_": 3, + "int64_t.": 1, + "Metrics": 2, + "module": 1, + "dumps": 1, + "stats": 2, + "actions.": 1, + "To": 1, + "METRIC_RECORD": 4, + "below.": 1, + "metrics": 2, + "hit": 1, + "path.": 2, + "count": 1, + "Total": 1, + "spent": 1, + "int64_t": 3, + "sum": 1, + "scoped": 1, + "recording": 1, + "metric": 2, + "across": 1, + "body": 1, + "Used": 2, + "macro.": 1, + "ScopedMetric": 4, + "Metric*": 4, + "metric_": 1, + "Timestamp": 1, + "started.": 1, + "dependent.": 1, + "start_": 1, + "prints": 1, + "report.": 1, + "NewMetric": 2, + "summary": 1, + "stdout.": 1, + "Report": 1, + "": 1, + "metrics_": 1, + "Get": 1, + "epoch.": 1, + "Epoch": 1, + "varies": 1, + "between": 1, + "platforms": 1, + "useful": 1, + "measuring": 1, + "elapsed": 1, + "time.": 1, + "GetTimeMillis": 1, + "simple": 1, + "stopwatch": 1, + "seconds": 1, + "Restart": 3, + "called.": 1, + "Stopwatch": 2, + "started_": 4, + "Seconds": 1, + "call.": 1, + "Elapsed": 1, + "": 1, + "primary": 1, + "metrics.": 1, + "top": 1, + "recorded": 1, + "metrics_h_metric": 2, + "g_metrics": 3, + "metrics_h_scoped": 1, + "Metrics*": 1, + "UTILS_H": 3, + "": 1, + "": 1, + "": 1, + "QTemporaryFile": 1, + "showUsage": 1, + "QtMsgType": 1, + "dump_path": 1, + "minidump_id": 1, + "QVariant": 1, + "coffee2js": 1, + "script": 1, + "injectJsInFrame": 2, + "jsFilePath": 5, + "libraryPath": 5, + "QWebFrame": 4, + "*targetFrame": 4, + "startingScript": 2, + "Encoding": 3, + "jsFileEnc": 2, + "readResourceFileUtf8": 1, + "resourceFilePath": 1, + "loadJSForDebug": 2, + "autorun": 2, + "cleanupFromDebug": 1, + "findScript": 1, + "jsFromScriptFile": 1, + "scriptPath": 1, + "enc": 1, + "shouldn": 1, + "instantiated": 1, + "QTemporaryFile*": 2, + "m_tempHarness": 1, + "We": 1, + "ourselves": 1, + "m_tempWrapper": 1, + "GDSDBREADER_H": 3, + "": 1, + "GDS_DIR": 1, + "LEVEL_ONE": 1, + "LEVEL_TWO": 1, + "LEVEL_THREE": 1, + "dbDataStructure": 2, + "label": 1, + "quint32": 3, + "depth": 1, + "userIndex": 1, + "QByteArray": 1, + "COMPRESSED": 1, + "optimize": 1, + "ram": 1, + "decompressed": 1, + "quint64": 1, + "uniqueID": 1, + "QVector": 2, + "": 1, + "nextItems": 1, + "": 1, + "nextItemsIndices": 1, + "dbDataStructure*": 1, + "father": 1, + "fatherIndex": 1, + "noFatherRoot": 1, + "tell": 1, + "node": 1, + "root": 1, + "hasn": 1, + "argument": 1, + "overload.": 1, + "myclass.label": 2, + "myclass.depth": 2, + "myclass.userIndex": 2, + "qCompress": 2, + "myclass.data": 4, + "myclass.uniqueID": 2, + "myclass.nextItemsIndices": 2, + "myclass.fatherIndex": 2, + "myclass.noFatherRoot": 2, + "myclass.fileName": 2, + "myclass.firstLineData": 4, + "myclass.linesNumbers": 2, + "QDataStream": 2, + "myclass": 1, + "//Don": 1, + "qUncompress": 2 + }, + "JSON5": { + "{": 6, + "foo": 1, + "while": 1, + "true": 1, + "this": 1, + "here": 1, + "//": 2, + "inline": 1, + "comment": 1, + "hex": 1, + "xDEADbeef": 1, + "half": 1, + ".5": 1, + "delta": 1, + "+": 1, + "to": 1, + "Infinity": 1, + "and": 1, + "beyond": 1, + "finally": 1, + "oh": 1, + "[": 3, + "]": 3, + "}": 6, + "name": 1, + "version": 1, + "description": 1, + "keywords": 1, + "author": 1, + "contributors": 1, + "main": 1, + "bin": 1, + "dependencies": 1, + "devDependencies": 1, + "mocha": 1, + "scripts": 1, + "build": 1, + "test": 1, + "homepage": 1, + "repository": 1, + "type": 1, + "url": 1 + }, + "MoonScript": { + "types": 2, + "require": 5, + "util": 2, + "data": 1, + "import": 5, + "reversed": 2, + "unpack": 22, + "from": 4, + "ntype": 16, + "mtype": 3, + "build": 7, + "smart_node": 7, + "is_slice": 2, + "value_is_singular": 3, + "insert": 18, + "table": 2, + "NameProxy": 14, + "LocalName": 2, + "destructure": 1, + "local": 1, + "implicitly_return": 2, + "class": 4, + "Run": 8, + "new": 2, + "(": 54, + "@fn": 1, + ")": 54, + "self": 2, + "[": 79, + "]": 79, + "call": 3, + "state": 2, + "self.fn": 1, + "-": 51, + "transform": 2, + "the": 4, + "last": 6, + "stm": 16, + "is": 2, + "a": 4, + "list": 6, + "of": 1, + "stms": 4, + "will": 1, + "puke": 1, + "on": 1, + "group": 1, + "apply_to_last": 6, + "fn": 3, + "find": 2, + "real": 1, + "exp": 17, + "last_exp_id": 3, + "for": 20, + "i": 15, + "#stms": 1, + "if": 43, + "and": 8, + "break": 1, + "return": 11, + "in": 18, + "ipairs": 3, + "else": 22, + "body": 26, + "sindle": 1, + "expression/statement": 1, + "is_singular": 2, + "false": 2, + "#body": 1, + "true": 4, + "find_assigns": 2, + "out": 9, + "{": 135, + "}": 136, + "thing": 4, + "*body": 2, + "switch": 7, + "when": 12, + "table.insert": 3, + "extract": 1, + "names": 16, + "hoist_declarations": 1, + "assigns": 5, + "hoist": 1, + "plain": 1, + "old": 1, + "*find_assigns": 1, + "name": 31, + "*names": 3, + "type": 5, + "after": 1, + "runs": 1, + "idx": 4, + "while": 3, + "do": 2, + "+": 2, + "expand_elseif_assign": 2, + "ifstm": 5, + "#ifstm": 1, + "case": 13, + "split": 4, + "constructor_name": 2, + "with_continue_listener": 4, + "continue_name": 13, + "nil": 8, + "@listen": 1, + "unless": 6, + "@put_name": 2, + "build.group": 14, + "@splice": 1, + "lines": 2, + "Transformer": 2, + "@transformers": 3, + "@seen_nodes": 3, + "setmetatable": 1, + "__mode": 1, + "scope": 4, + "node": 68, + "...": 10, + "transformer": 3, + "res": 3, + "or": 6, + "bind": 1, + "@transform": 2, + "__call": 1, + "can_transform": 1, + "construct_comprehension": 2, + "inner": 2, + "clauses": 4, + "current_stms": 7, + "_": 10, + "clause": 4, + "t": 10, + "iter": 2, + "elseif": 1, + "cond": 11, + "error": 4, + "..t": 1, + "Statement": 2, + "root_stms": 1, + "@": 1, + "assign": 9, + "values": 10, + "bubble": 1, + "cascading": 2, + "transformed": 2, + "#values": 1, + "value": 7, + "@transform.statement": 2, + "types.cascading": 1, + "ret": 16, + "types.is_value": 1, + "destructure.has_destructure": 2, + "destructure.split_assign": 1, + "continue": 1, + "@send": 1, + "build.assign_one": 11, + "export": 1, + "they": 1, + "are": 1, + "included": 1, + "#node": 3, + "cls": 5, + "cls.name": 1, + "build.assign": 3, + "update": 1, + "op": 2, + "op_final": 3, + "match": 1, + "..op": 1, + "not": 2, + "source": 7, + "stubs": 1, + "real_names": 4, + "build.chain": 7, + "base": 8, + "stub": 4, + "*stubs": 2, + "source_name": 3, + "comprehension": 1, + "action": 4, + "decorated": 1, + "dec": 6, + "wrapped": 4, + "fail": 5, + "..": 1, + "build.declare": 1, + "*stm": 1, + "expand": 1, + "destructure.build_assign": 2, + "build.do": 2, + "apply": 1, + "decorator": 1, + "mutate": 1, + "all": 1, + "bodies": 1, + "body_idx": 3, + "with": 3, + "block": 2, + "scope_name": 5, + "named_assign": 2, + "assign_name": 1, + "@set": 1, + "foreach": 1, + "node.iter": 1, + "destructures": 5, + "node.names": 3, + "proxy": 2, + "next": 1, + "node.body": 9, + "index_name": 3, + "list_name": 6, + "slice_var": 3, + "bounds": 3, + "slice": 7, + "#list": 1, + "table.remove": 2, + "max_tmp_name": 5, + "index": 2, + "conds": 3, + "exp_name": 3, + "convert": 1, + "into": 1, + "statment": 1, + "convert_cond": 2, + "case_exps": 3, + "cond_exp": 5, + "first": 3, + "if_stm": 5, + "*conds": 1, + "if_cond": 4, + "parent_assign": 3, + "parent_val": 1, + "apart": 1, + "properties": 4, + "statements": 4, + "item": 3, + "tuple": 8, + "*item": 1, + "constructor": 7, + "*properties": 1, + "key": 3, + "parent_cls_name": 5, + "base_name": 4, + "self_name": 4, + "cls_name": 1, + "build.fndef": 3, + "args": 3, + "arrow": 1, + "then": 2, + "constructor.arrow": 1, + "real_name": 6, + "#real_name": 1, + "build.table": 2, + "look": 1, + "up": 1, + "object": 1, + "class_lookup": 3, + "cls_mt": 2, + "out_body": 1, + "make": 1, + "sure": 1, + "we": 1, + "don": 1, + "string": 1, + "parens": 2, + "colon_stub": 1, + "super": 1, + "dot": 1, + "varargs": 2, + "arg_list": 1, + "Value": 1 + }, + "Mercury": { + "%": 416, + "-": 6967, + "module": 46, + "rot13_verbose.": 1, + "interface.": 13, + "import_module": 126, + "io.": 8, + "pred": 255, + "main": 15, + "(": 3351, + "io__state": 4, + ")": 3351, + ".": 610, + "mode": 8, + "di": 54, + "uo": 58, + "is": 246, + "det.": 184, + "implementation.": 12, + "char": 10, + "int": 129, + "require.": 6, + "rot13a/2": 1, + "A": 14, + "table": 1, + "to": 16, + "map": 7, + "the": 27, + "alphabetic": 2, + "characters": 1, + "their": 1, + "rot13": 11, + "equivalents": 1, + "fails": 1, + "if": 15, + "input": 1, + "not": 7, + "rot13a": 55, + "in": 510, + "out": 337, + "semidet.": 10, + "rot13/2": 1, + "Applies": 1, + "algorithm": 1, + "a": 10, + "character.": 1, + "Char": 12, + "RotChar": 8, + "TmpChar": 2, + "then": 3, + "else": 8, + "io__read_char": 1, + "Res": 8, + "{": 27, + "ok": 3, + "}": 28, + "io__write_char": 1, + ";": 913, + "eof": 6, + "error": 7, + "ErrorCode": 4, + "io__error_message": 2, + "ErrorMessage": 4, + "io__stderr_stream": 1, + "StdErr": 8, + "io__write_string": 2, + "io__nl": 1, + "rot13_concise.": 1, + "state": 3, + "string.": 7, + "alphabet": 3, + "cycle": 4, + "rot_n": 2, + "N": 6, + "char_to_string": 1, + "CharString": 2, + "sub_string_search": 1, + "Index": 3, + "NewIndex": 2, + "+": 127, + "mod": 1, + "*": 20, + "//": 2, + "index_det": 1, + "read_char": 1, + "print": 3, + "error_message": 1, + "stderr_stream": 1, + "nl": 1, + "check_hlds.polymorphism.": 1, + "hlds.": 1, + "hlds.hlds_goal.": 2, + "hlds.hlds_module.": 2, + "hlds.hlds_pred.": 2, + "hlds.hlds_rtti.": 2, + "mdbcomp.": 1, + "mdbcomp.prim_data.": 3, + "parse_tree.": 1, + "parse_tree.prog_data.": 2, + "list.": 4, + "maybe.": 3, + "term.": 3, + "polymorphism_process_module": 2, + "module_info": 26, + "polymorphism_process_generated_pred": 2, + "pred_id": 15, + "unification_typeinfos_rtti_varmaps": 2, + "mer_type": 21, + "rtti_varmaps": 9, + "unification": 8, + "hlds_goal_info": 22, + "polymorphism_process_new_call": 2, + "pred_info": 20, + "proc_info": 11, + "proc_id": 12, + "list": 82, + "prog_var": 58, + "builtin_state": 1, + "maybe": 20, + "call_unify_context": 2, + "sym_name": 3, + "hlds_goal": 45, + "poly_info": 45, + "polymorphism_make_type_info_vars": 1, + "term.context": 3, + "polymorphism_make_type_info_var": 1, + "type": 57, + "int_or_var": 2, + "iov_int": 1, + "iov_var": 1, + "gen_extract_type_info": 1, + "tvar": 10, + "kind": 1, + "prog_varset": 14, + "vartypes": 12, + "poly_info.": 1, + "create_poly_info": 1, + "poly_info_extract": 1, + "build_typeclass_info_type": 3, + "prog_constraint": 4, + "type_is_typeclass_info": 1, + "type_is_type_info_or_ctor_type": 1, + "build_type_info_type": 1, + "get_special_proc": 1, + "special_pred_id": 2, + "get_special_proc_det": 1, + "convert_pred_to_lambda_goal": 3, + "purity": 1, + "lambda_eval_method": 1, + "unify_context": 3, + "context": 1, + "unify_rhs": 4, + "fix_undetermined_mode_lambda_goal": 2, + "rhs_lambda_goal": 7, + "init_type_info_var": 1, + "init_const_type_ctor_info_var": 1, + "type_ctor": 1, + "cons_id": 2, + "type_info_kind": 2, + "type_info": 8, + "type_ctor_info.": 1, + "new_type_info_var_raw": 1, + "check_hlds.clause_to_proc.": 1, + "check_hlds.mode_util.": 1, + "check_hlds.type_util.": 2, + "hlds.from_ground_term_util.": 1, + "hlds.const_struct.": 1, + "hlds.goal_util.": 1, + "hlds.hlds_args.": 1, + "hlds.hlds_clauses.": 1, + "hlds.hlds_code_util.": 1, + "hlds.hlds_data.": 2, + "hlds.instmap.": 2, + "hlds.passes_aux.": 1, + "hlds.pred_table.": 1, + "hlds.quantification.": 1, + "hlds.special_pred.": 1, + "libs.": 1, + "libs.globals.": 2, + "libs.options.": 3, + "mdbcomp.goal_path.": 2, + "mdbcomp.program_representation.": 1, + "parse_tree.builtin_lib_types.": 2, + "parse_tree.prog_mode.": 1, + "parse_tree.prog_type.": 2, + "parse_tree.prog_type_subst.": 1, + "parse_tree.set_of_var.": 2, + "assoc_list.": 3, + "bool.": 4, + "int.": 4, + "map.": 3, + "pair.": 3, + "set.": 4, + "solutions.": 1, + "varset.": 2, + "ModuleInfo": 49, + "module_info_get_preds": 3, + ".ModuleInfo": 8, + "Preds0": 2, + "map.keys": 3, + "PredIds0": 2, + "list.foldl": 6, + "maybe_polymorphism_process_pred": 3, + "Preds1": 2, + "PredIds1": 2, + "fixup_pred_polymorphism": 4, + "expand_class_method_bodies": 1, + "PredId": 50, + "module_info_pred_info": 6, + "PredInfo": 64, + "PredModule": 8, + "pred_info_module": 4, + "PredName": 8, + "pred_info_name": 4, + "PredArity": 6, + "pred_info_orig_arity": 3, + "no_type_info_builtin": 3, + "copy_module_clauses_to_procs": 1, + "[": 203, + "]": 203, + "polymorphism_process_pred_msg": 3, + "PredTable0": 3, + "map.lookup": 2, + "PredInfo0": 16, + "pred_info_get_clauses_info": 2, + "ClausesInfo0": 5, + "clauses_info_get_vartypes": 2, + "VarTypes0": 12, + "clauses_info_get_headvars": 2, + "HeadVars": 20, + "pred_info_get_arg_types": 7, + "TypeVarSet": 15, + "ExistQVars": 13, + "ArgTypes0": 3, + "proc_arg_vector_partition_poly_args": 1, + "ExtraHeadVarList": 2, + "OldHeadVarList": 2, + "lookup_var_types": 6, + "ExtraArgTypes": 2, + "ArgTypes": 6, + "pred_info_set_arg_types": 1, + "PredInfo1": 5, + "_": 149, + "|": 38, + "OldHeadVarTypes": 2, + "type_list_subsumes": 2, + "Subn": 3, + "map.is_empty": 1, + "pred_info_set_existq_tvar_binding": 1, + "PredInfo2": 7, + "polymorphism_introduce_exists_casts_pred": 3, + "map.det_update": 4, + "PredTable": 2, + "module_info_set_preds": 1, + "pred_info_get_procedures": 2, + ".PredInfo": 2, + "Procs0": 4, + "map.map_values_only": 1, + ".ProcInfo": 2, + "ProcInfo": 43, + "det": 21, + "introduce_exists_casts_proc": 1, + "Procs": 4, + "pred_info_set_procedures": 2, + "trace": 4, + "compiletime": 4, + "flag": 4, + "io": 6, + "IO": 4, + "write_pred_progress_message": 1, + "polymorphism_process_pred": 4, + "mutable": 3, + "selected_pred": 1, + "bool": 406, + "no": 365, + "ground": 9, + "untrailed": 2, + "level": 1, + "promise_pure": 30, + "pred_id_to_int": 1, + "impure": 2, + "set_selected_pred": 2, + "yes": 144, + "true": 3, + "polymorphism_process_clause_info": 3, + "ClausesInfo": 13, + "Info": 134, + "ExtraArgModes": 20, + "poly_info_get_module_info": 4, + "poly_info_get_const_struct_db": 1, + "ConstStructDb": 2, + "module_info_set_const_struct_db": 1, + "poly_info_get_typevarset": 4, + "pred_info_set_typevarset": 1, + "pred_info_set_clauses_info": 1, + "ProcIds": 5, + "pred_info_procids": 2, + "polymorphism_process_proc_in_table": 3, + "module_info_set_pred_info": 1, + "clauses_info": 6, + "poly_arg_vector": 9, + "mer_mode": 14, + "ModuleInfo0": 8, + "init_poly_info": 1, + ".ClausesInfo": 2, + "_VarSet": 1, + "ExplicitVarTypes": 2, + "_TVarNameMap": 1, + "_VarTypes": 1, + "HeadVars0": 5, + "ClausesRep0": 2, + "ItemNumbers": 2, + "_RttiVarMaps": 1, + "HaveForeignClauses": 2, + "setup_headvars": 3, + "UnconstrainedTVars": 15, + "ExtraTypeInfoHeadVars": 4, + "ExistTypeClassInfoHeadVars": 6, + "get_clause_list": 1, + "Clauses0": 2, + "list.map_foldl": 2, + "polymorphism_process_clause": 3, + "Clauses": 2, + "poly_info_get_varset": 4, + ".Info": 25, + "VarSet": 15, + "poly_info_get_var_types": 6, + "VarTypes": 22, + "poly_info_get_rtti_varmaps": 4, + "RttiVarMaps": 16, + "set_clause_list": 1, + "ClausesRep": 2, + "map.init": 7, + "TVarNameMap": 2, + "This": 2, + "only": 4, + "used": 2, + "while": 1, + "adding": 1, + "clauses.": 1, + "proc_arg_vector": 9, + "clause": 2, + "OldHeadVars": 2, + "NewHeadVars": 2, + "Clause": 2, + "pred_info_is_imported": 2, + "Goal0": 21, + ".Clause": 1, + "clause_body": 2, + "empty_cache_maps": 4, + "poly_info_set_num_reuses": 1, + "polymorphism_process_goal": 20, + "Goal1": 2, + "produce_existq_tvars": 3, + "Goal2": 2, + "pred_info_get_exist_quant_tvars": 1, + "fixup_quantification": 1, + "Goal": 40, + "proc_table": 2, + "ProcId": 31, + "ProcTable": 2, + ".ProcTable": 1, + "ProcInfo0": 2, + "polymorphism_process_proc": 3, + "pred_info_is_pseudo_imported": 1, + "hlds_pred.in_in_unification_proc_id": 1, + "HeadVarList": 4, + "proc_arg_vector_to_list": 2, + "clauses_info_get_rtti_varmaps": 1, + "clauses_info_get_varset": 1, + "proc_info_set_headvars": 1, + "proc_info_set_rtti_varmaps": 1, + "proc_info_set_varset": 1, + "proc_info_set_vartypes": 1, + "copy_clauses_to_proc": 1, + "proc_info_get_argmodes": 2, + "ArgModes1": 2, + "ExtraArgModesList": 2, + "poly_arg_vector_to_list": 1, + "ArgModes": 5, + "proc_info_set_argmodes": 1, + "ExtraHeadTypeInfoVars": 7, + "ExistHeadTypeClassInfoVars": 9, + "pred_info_get_origin": 1, + "Origin": 8, + "ExtraArgModes0": 3, + "poly_arg_vector_init": 1, + "origin_instance_method": 1, + "InstanceMethodConstraints": 4, + "setup_headvars_instance_method": 3, + "origin_special_pred": 1, + "origin_transformed": 1, + "origin_created": 1, + "origin_assertion": 1, + "origin_lambda": 1, + "origin_user": 1, + "pred_info_get_class_context": 4, + "ClassContext": 6, + "InstanceTVars": 7, + "InstanceUnconstrainedTVars": 2, + "InstanceUnconstrainedTypeInfoVars": 2, + "setup_headvars_2": 4, + "instance_method_constraints": 2, + "InstanceTypes": 2, + "InstanceConstraints": 3, + "type_vars_list": 5, + "get_unconstrained_tvars": 1, + "UnconstrainedInstanceTVars": 6, + "ArgTypeVarSet": 5, + "make_head_vars": 3, + "UnconstrainedInstanceTypeInfoVars": 7, + "make_typeclass_info_head_vars": 3, + "do_record_type_info_locns": 3, + "InstanceHeadTypeClassInfoVars": 4, + "proc_arg_vector_set_instance_type_infos": 1, + "proc_arg_vector_set_instance_typeclass_infos": 1, + "RttiVarMaps0": 4, + "rtti_reuse_typeclass_info_var": 3, + "poly_info_set_rtti_varmaps": 3, + "in_mode": 3, + "InMode": 3, + "list.duplicate": 6, + "list.length": 16, + "UnconstrainedInstanceTypeInfoModes": 2, + "InstanceHeadTypeClassInfoModes": 2, + "poly_arg_vector_set_instance_type_infos": 1, + "poly_arg_vector_set_instance_typeclass_infos": 1, + "prog_constraints": 1, + "AllUnconstrainedTVars": 2, + "AllExtraHeadTypeInfoVars": 2, + "constraints": 4, + "UnivConstraints": 3, + "ExistConstraints": 6, + "prog_type.constraint_list_get_tvars": 2, + "UnivConstrainedTVars": 2, + "ExistConstrainedTVars": 2, + "poly_info_get_constraint_map": 4, + "ConstraintMap": 12, + "get_improved_exists_head_constraints": 4, + "ActualExistConstraints": 9, + "pred_info_get_markers": 1, + "PredMarkers": 2, + "check_marker": 1, + "marker_class_method": 1, + "RecordExistQLocns": 3, + "do_not_record_type_info_locns": 1, + "UnivHeadTypeClassInfoVars": 4, + "HeadTypeVars": 2, + "list.delete_elems": 12, + "UnconstrainedTVars0": 2, + "UnconstrainedTVars1": 2, + "UnconstrainedTVars2": 2, + "list.remove_dups": 4, + "UnconstrainedUnivTVars": 7, + "UnconstrainedExistTVars": 6, + "ExistHeadTypeInfoVars": 5, + "UnivHeadTypeInfoVars": 4, + "list.condense": 4, + "proc_arg_vector_set_univ_type_infos": 1, + "HeadVars1": 2, + "proc_arg_vector_set_exist_type_infos": 1, + "HeadVars2": 2, + "proc_arg_vector_set_univ_typeclass_infos": 1, + "HeadVars3": 2, + "proc_arg_vector_set_exist_typeclass_infos": 1, + "In": 6, + "out_mode": 2, + "Out": 6, + "NumUnconstrainedUnivTVars": 2, + "NumUnconstrainedExistTVars": 2, + "NumUnivClassInfoVars": 2, + "NumExistClassInfoVars": 2, + "UnivTypeInfoModes": 2, + "ExistTypeInfoModes": 2, + "UnivTypeClassInfoModes": 2, + "ExistTypeClassInfoModes": 2, + "poly_arg_vector_set_univ_type_infos": 1, + "poly_arg_vector_set_exist_type_infos": 1, + "poly_arg_vector_set_univ_typeclass_infos": 1, + "poly_arg_vector_set_exist_typeclass_infos": 1, + "some": 4, + "ToLocn": 4, + "TheVar": 2, + "TheLocn": 2, + "list.map": 17, + "UnivTypeLocns": 2, + "list.foldl_corresponding": 3, + "rtti_det_insert_type_info_locn": 3, + "ExistTypeLocns": 2, + "UnconstrainedInstanceTypeLocns": 2, + ".RttiVarMaps": 1, + "TypeInfoHeadVars": 2, + "pred_info_get_tvar_kinds": 2, + "KindMap": 2, + "PredClassContext": 5, + "PredExistConstraints": 2, + "exist_constraints": 1, + "ExistQVarsForCall": 2, + "GoalInfo": 44, + "Context": 20, + "goal_info_get_context": 4, + "make_typeclass_info_vars": 3, + "ExistTypeClassVarsMCAs": 2, + "ExtraTypeClassGoals": 5, + "assoc_list.keys": 8, + "ExistTypeClassVars": 3, + "assign_var_list": 8, + "ExtraTypeClassUnifyGoals": 2, + "vartypes_is_empty": 1, + "PredToActualTypeSubst": 4, + "ActualArgTypes": 8, + "ArgTypeSubst": 2, + "apply_subst_to_tvar_list": 1, + "ActualTypes": 2, + "polymorphism_do_make_type_info_vars": 5, + "TypeInfoVarsMCAs": 2, + "ExtraTypeInfoGoals": 4, + "TypeInfoVars": 5, + "ExtraTypeInfoUnifyGoals": 2, + "GoalList": 8, + "conj_list_to_goal": 6, + "unexpected": 21, + "Var1": 5, + "Vars1": 2, + "Var2": 5, + "Vars2": 2, + "Goals": 13, + "assign_var": 3, + "true_goal": 1, + "term.context_init": 2, + "create_pure_atomic_complicated_unification": 1, + "rhs_var": 2, + "umc_explicit": 1, + "constraint_map": 1, + "NumExistConstraints": 4, + "search_hlds_constraint_list": 1, + "unproven": 3, + "goal_id": 1, + "ActualExistConstraints0": 2, + "GoalExpr0": 18, + "GoalInfo0": 41, + "generic_call": 1, + "plain_call": 5, + "ArgVars0": 23, + "polymorphism_process_call": 4, + "ExtraVars": 13, + "ExtraGoals": 13, + "ArgVars": 6, + "CallExpr": 4, + "call_args": 1, + "Call": 4, + "call_foreign_proc": 4, + "polymorphism_process_foreign_proc": 3, + "unify": 21, + "XVar": 11, + "Y": 9, + "Mode": 12, + "Unification": 16, + "UnifyContext": 15, + "polymorphism_process_unify": 4, + "conj": 5, + "ConjType": 4, + "Goals0": 13, + "plain_conj": 4, + "polymorphism_process_plain_conj": 5, + "parallel_conj": 1, + "get_cache_maps_snapshot": 11, + "InitialSnapshot": 36, + "polymorphism_process_par_conj": 5, + "GoalExpr": 19, + "disj": 2, + "polymorphism_process_disj": 6, + "set_cache_maps_snapshot": 15, + "if_then_else": 2, + "Vars": 10, + "Cond0": 2, + "Then0": 2, + "Else0": 2, + "Cond": 2, + "Then": 2, + "Else": 2, + "negation": 2, + "SubGoal0": 14, + "SubGoal": 16, + "switch": 2, + "Var": 13, + "CanFail": 4, + "Cases0": 4, + "polymorphism_process_cases": 5, + "Cases": 4, + "scope": 7, + "Reason0": 16, + "from_ground_term": 2, + "TermVar": 4, + "Kind": 5, + "from_ground_term_initial": 2, + "polymorphism_process_from_ground_term_initial": 3, + "from_ground_term_construct": 1, + "from_ground_term_deconstruct": 1, + "from_ground_term_other": 1, + "promise_solutions": 1, + "promise_purity": 1, + "require_detism": 1, + "require_complete_switch": 1, + "commit": 1, + "barrier": 1, + "loop_control": 1, + "exist_quant": 1, + "trace_goal": 1, + "shorthand": 2, + "ShortHand0": 4, + "atomic_goal": 2, + "GoalType": 2, + "Outer": 2, + "Inner": 2, + "MainGoal0": 2, + "OrElseGoals0": 2, + "OrElseInners": 2, + "MainGoal": 2, + "OrElseGoals": 2, + "ShortHand": 3, + "try_goal": 2, + "MaybeIO": 2, + "ResultVar": 2, + "SubGoalExpr0": 4, + "SubGoalInfo": 2, + "Conjuncts0": 2, + "ConjunctA0": 2, + "ConjunctB0": 2, + "ConjunctA": 2, + "ConjunctB": 2, + "Conjuncts": 2, + "SubGoalExpr": 2, + "bi_implication": 1, + "hlds_goal_expr": 2, + "SubGoalInfo0": 2, + "SubGoals0Prime": 2, + "SubGoals0": 2, + "polymorphism_process_fgti_goals": 5, + "RevMarkedSubGoals": 2, + "fgt_invariants_kept": 2, + "InvariantsStatus": 7, + "Reason": 2, + "fgt_invariants_broken": 2, + "introduce_partial_fgt_scopes": 1, + "deconstruct_top_down": 1, + "fgt_marked_goal": 2, + "fgt_invariants_status": 2, + "RevMarkedGoals": 4, + "OldInfo": 3, + "XVarPrime": 2, + "ModePrime": 2, + "UnificationPrime": 2, + "UnifyContextPrime": 2, + "rhs_functor": 5, + "ConsIdPrime": 2, + "YVarsPrime": 2, + "ConsId": 10, + "YVars": 4, + "polymorphism_process_unify_functor": 4, + "Changed": 10, + "VarSetBefore": 2, + "MaxVarBefore": 2, + "varset.max_var": 2, + "poly_info_get_num_reuses": 2, + "NumReusesBefore": 2, + "VarSetAfter": 2, + "MaxVarAfter": 2, + "NumReusesAfter": 2, + "expect": 15, + "MarkedGoal": 3, + "fgt_kept_goal": 1, + "fgt_broken_goal": 1, + ".RevMarkedGoals": 1, + "unify_mode": 2, + "Unification0": 8, + "_YVar": 1, + "lookup_var_type": 3, + "Type": 18, + "unification_typeinfos": 5, + "_Changed": 3, + "Args": 11, + "Purity": 9, + "Groundness": 6, + "PredOrFunc": 6, + "EvalMethod": 8, + "LambdaVars": 13, + "Modes": 4, + "Det": 4, + "LambdaGoal0": 5, + "LambdaGoal1": 2, + "fixup_lambda_quantification": 1, + "LambdaGoal": 6, + "NonLocalTypeInfos": 3, + "set_of_var.to_sorted_list": 1, + "NonLocalTypeInfosList": 2, + "Y1": 2, + "NonLocals0": 10, + "goal_info_get_nonlocals": 6, + "set_of_var.union": 3, + "NonLocals": 12, + "goal_info_set_nonlocals": 6, + "type_vars": 2, + "TypeVars": 8, + "get_type_info_locn": 1, + "TypeInfoLocns": 6, + "add_unification_typeinfos": 4, + "rtti_lookup_type_info_locn": 1, + "type_info_locn": 1, + "type_info_locn_var": 1, + "TypeInfoVars0": 2, + ".GoalInfo": 1, + "set_of_var.insert_list": 4, + ".Unification": 5, + "complicated_unify": 2, + "construct": 1, + "deconstruct": 2, + "assign": 46, + "simple_test": 1, + "X0": 8, + "ConsId0": 5, + "Mode0": 4, + "TypeOfX": 6, + "Arity": 5, + "closure_cons": 1, + "ShroudedPredProcId": 2, + "proc": 2, + "ProcId0": 3, + "unshroud_pred_proc_id": 1, + "type_is_higher_order_details": 1, + "_PredOrFunc": 1, + "CalleeArgTypes": 2, + "invalid_proc_id": 1, + "goal_info_add_feature": 1, + "feature_lambda_undetermined_mode": 1, + "GoalInfo1": 6, + "VarSet0": 2, + "Functor0": 6, + "poly_info_set_varset_and_types": 1, + "cons": 3, + "ConsTypeCtor": 2, + "remove_new_prefix": 1, + "OrigFunctor": 2, + "IsConstruction": 7, + "type_util.get_existq_cons_defn": 1, + "ConsDefn": 2, + "polymorphism_process_existq_unify_functor": 3, + "UnifyExpr": 2, + "Unify": 2, + "PredArgTypes": 10, + "Functor": 6, + "create_fresh_vars": 5, + "module_info_pred_proc_info": 4, + "QualifiedPName": 5, + "qualified": 1, + "cons_id_dummy_type_ctor": 1, + "RHS": 2, + "CallUnifyContext": 2, + "LambdaGoalExpr": 2, + "not_builtin": 3, + "OutsideVars": 2, + "set_of_var.list_to_set": 3, + "InsideVars": 2, + "set_of_var.intersect": 1, + "LambdaNonLocals": 2, + "GoalId": 8, + "goal_info_get_goal_id": 3, + "goal_info_init": 1, + "LambdaGoalInfo0": 2, + "goal_info_set_context": 1, + "LambdaGoalInfo1": 2, + "LambdaGoalInfo2": 2, + "goal_info_set_purity": 1, + "LambdaGoalInfo3": 2, + "goal_info_set_goal_id": 1, + "LambdaGoalInfo": 4, + "lambda_modes_and_det": 4, + "LambdaModes": 6, + "LambdaDet": 6, + "pred_info_is_pred_or_func": 1, + "ho_ground": 1, + "_LambdaModes0": 1, + "_LambdaDet0": 1, + "goal_to_conj_list": 1, + "LambdaGoalList0": 2, + "list.split_last": 1, + "LambdaGoalButLast0": 2, + "LastGoal0": 2, + "LastGoalExpr0": 2, + "LastGoalInfo0": 2, + "PredId0": 2, + "_DummyProcId": 1, + "Args0": 5, + "MaybeCallUnifyContext0": 2, + "QualifiedPName0": 2, + "LambdaGoalButLast": 2, + "LastGoalInfo": 2, + "MaybeCallUnifyContext": 4, + "LastGoalExpr": 2, + "LastGoal": 2, + "prog_vars": 1, + "determinism": 1, + "NumArgModes": 2, + "NumLambdaVars": 2, + "list.drop": 2, + "LambdaModesPrime": 2, + "proc_info_get_declared_determinism": 1, + "MaybeDet": 3, + "sorry": 1, + "Types": 6, + "varset.new_var": 1, + "add_var_type": 1, + "ctor_defn": 2, + "CtorDefn": 2, + "ActualRetType": 2, + "CtorTypeVarSet": 2, + "CtorExistQVars": 2, + "CtorKindMap": 2, + "CtorExistentialConstraints": 2, + "CtorArgTypes": 2, + "CtorRetType": 2, + "TypeVarSet0": 5, + "tvarset_merge_renaming": 3, + "CtorToParentRenaming": 6, + "apply_variable_renaming_to_tvar_list": 2, + "ParentExistQVars": 6, + "apply_variable_renaming_to_tvar_kind_map": 2, + "ParentKindMap": 7, + "apply_variable_renaming_to_prog_constraint_list": 1, + "ParentExistentialConstraints": 3, + "apply_variable_renaming_to_type_list": 4, + "ParentArgTypes": 6, + "apply_variable_renaming_to_type": 1, + "ParentRetType": 2, + "poly_info_set_typevarset": 3, + "type_list_subsumes_det": 3, + "ParentToActualTypeSubst": 6, + "NumExistentialConstraints": 3, + "lookup_hlds_constraint_list": 4, + "ActualExistentialConstraints": 4, + "ExtraTypeClassVarsMCAs": 2, + "ExtraTypeClassVars": 2, + "assumed": 2, + "make_existq_typeclass_info_vars": 2, + "constraint_list_get_tvars": 3, + "ParentExistConstrainedTVars": 4, + "ParentUnconstrainedExistQVars": 2, + "apply_rec_subst_to_tvar_list": 4, + "ActualExistentialTypes": 2, + "ExtraTypeInfoVarsMCAs": 2, + "ExtraTypeInfoVars": 2, + "ExtraTypeClassVars.": 1, + "bound": 1, + "Attributes": 2, + "ProcExtraArgs": 2, + "MaybeTraceRuntimeCond": 2, + "Impl": 14, + "foreign_arg_var": 1, + "CanOptAwayUnnamed": 11, + "polymorphism_process_foreign_proc_args": 3, + "ExtraArgs": 5, + "pragma_foreign_code_impl": 4, + "foreign_arg": 1, + "PredTypeVarSet": 8, + "UnivCs": 4, + "ExistCs": 4, + "UnivVars0": 2, + "get_constrained_vars": 2, + "UnivConstrainedVars": 2, + "ExistVars0": 2, + "ExistConstrainedVars": 2, + "PredTypeVars0": 2, + "PredTypeVars1": 2, + "PredTypeVars2": 2, + "PredTypeVars": 3, + "foreign_proc_add_typeclass_info": 4, + "ExistTypeClassArgInfos": 2, + "UnivTypeClassArgInfos": 2, + "TypeClassArgInfos": 2, + "list.filter": 1, + "X": 9, + "semidet": 2, + "list.member": 2, + "ExistUnconstrainedVars": 2, + "UnivUnconstrainedVars": 2, + "foreign_proc_add_typeinfo": 4, + "ExistTypeArgInfos": 2, + "UnivTypeArgInfos": 2, + "TypeInfoArgInfos": 2, + "ArgInfos": 2, + "TypeInfoTypes": 2, + "func": 24, + "type_info_type": 1, + "UnivTypes": 2, + "ExistTypes": 2, + "OrigArgTypes": 2, + "make_foreign_args": 1, + "tvarset": 3, + "pair": 7, + "string": 115, + "box_policy": 2, + "Constraint": 2, + "MaybeArgName": 7, + "native_if_possible": 2, + "constraint": 2, + "SymName": 4, + "Name": 4, + "sym_name_to_string_sep": 1, + "TypeVarNames": 2, + "underscore_and_tvar_name": 3, + "string.append_list": 1, + "ConstraintVarName": 3, + "foreign_code_does_not_use_variable": 4, + "TVar": 4, + "varset.search_name": 1, + "TypeVarName": 2, + "C_VarName": 3, + "VarName": 2, + "foreign_code_uses_variable": 1, + "TVarName": 2, + "varset.lookup_name": 2, + "TVarName0": 1, + "TVarName0.": 1, + "cache_maps": 3, + "case": 4, + "Case0": 2, + "Case": 2, + "MainConsId": 2, + "OtherConsIds": 2, + "PredExistQVars": 2, + "PredKindMap": 3, + "varset.is_empty": 1, + "PredToParentTypeRenaming": 6, + "ParentTVars": 4, + "apply_variable_renaming_to_prog_constraints": 1, + "ParentClassContext": 2, + "ParentUnivConstraints": 3, + "ParentExistConstraints": 3, + "ParentUnivConstrainedTVars": 2, + "ParentUnconstrainedTVars0": 2, + "ParentUnconstrainedTVars1": 2, + "ParentUnconstrainedTVars": 3, + "ParentUnconstrainedUnivTVars": 3, + "ParentUnconstrainedExistTVars": 2, + "NumUnivConstraints": 2, + "ActualUnivConstraints": 2, + "ActualExistQVarTypes": 2, + "prog_type.type_list_to_var_list": 1, + "ActualExistQVars0": 2, + "ActualExistQVars": 2, + "ExtraUnivClassVarsMCAs": 2, + "ExtraUnivClassGoals": 2, + "ExtraUnivClassVars": 2, + "ExtraExistClassVars": 2, + "ExtraExistClassGoals": 2, + "ActualUnconstrainedUnivTypes": 2, + "ExtraUnivTypeInfoVarsMCAs": 2, + "ExtraUnivTypeInfoGoals": 2, + "ExtraUnivTypeInfoVars": 2, + "ActualUnconstrainedExistTypes": 2, + "ExtraExistTypeInfoVarsMCAs": 2, + "ExtraExistTypeInfoGoals": 2, + "ExtraExistTypeInfoVars": 2, + "CalleePredInfo": 2, + "CalleeProcInfo": 3, + "CallArgs0": 3, + "BuiltinState": 2, + "TVarSet0": 2, + "ActualArgTypes0": 3, + "PredTVarSet": 2, + "_PredExistQVars": 1, + "proc_info_get_headvars": 2, + "CalleeHeadVars": 2, + "proc_info_get_rtti_varmaps": 1, + "CalleeRttiVarMaps": 2, + "NCallArgs0": 2, + "NPredArgs": 2, + "NExtraArgs": 3, + "OrigPredArgTypes0": 2, + "list.take": 1, + "CalleeExtraHeadVars0": 2, + "OrigPredArgTypes": 2, + "CalleeExtraHeadVars": 2, + "TVarSet": 2, + "PredToParentRenaming": 3, + "OrigParentArgTypes": 2, + "ParentToActualTSubst": 2, + "GetTypeInfoTypes": 2, + "ProgVar": 2, + "TypeInfoType": 2, + "rtti_varmaps_var_info": 1, + "VarInfo": 4, + "type_info_var": 1, + "typeclass_info_var": 1, + "non_rtti_var": 1, + "PredTypeInfoTypes": 2, + "ParentTypeInfoTypes": 2, + "apply_rec_subst_to_type_list": 1, + "ActualTypeInfoTypes": 2, + "Ctxt": 2, + "ExtraArgsConstArgs": 2, + "CallArgs": 2, + "NonLocals1": 2, + "CallGoalExpr": 2, + "CallGoal": 2, + "char.": 1, + "getopt_io.": 1, + "short_option": 36, + "option": 9, + "long_option": 241, + "option_defaults": 2, + "option_data": 2, + "nondet.": 1, + "special_handler": 1, + "special_data": 1, + "option_table": 5, + "maybe_option_table": 3, + "inconsequential_options": 1, + "set": 16, + "options_help": 1, + "option_table_add_mercury_library_directory": 1, + "option_table.": 2, + "option_table_add_search_library_files_directory": 1, + "quote_arg": 1, + "inhibit_warnings": 4, + "inhibit_accumulator_warnings": 3, + "halt_at_warn": 3, + "halt_at_syntax_errors": 3, + "halt_at_auto_parallel_failure": 3, + "warn_singleton_vars": 3, + "warn_overlapping_scopes": 3, + "warn_det_decls_too_lax": 3, + "warn_inferred_erroneous": 3, + "warn_nothing_exported": 3, + "warn_unused_args": 3, + "warn_interface_imports": 3, + "warn_missing_opt_files": 3, + "warn_missing_trans_opt_files": 3, + "warn_missing_trans_opt_deps": 3, + "warn_non_contiguous_clauses": 3, + "warn_non_contiguous_foreign_procs": 3, + "warn_non_stratification": 3, + "warn_unification_cannot_succeed": 3, + "warn_simple_code": 3, + "warn_duplicate_calls": 3, + "warn_missing_module_name": 3, + "warn_wrong_module_name": 3, + "warn_smart_recompilation": 3, + "warn_undefined_options_variables": 3, + "warn_non_tail_recursion": 3, + "warn_target_code": 3, + "warn_up_to_date": 3, + "warn_stubs": 3, + "warn_dead_procs": 3, + "warn_table_with_inline": 3, + "warn_non_term_special_preds": 3, + "warn_known_bad_format_calls": 3, + "warn_unknown_format_calls": 3, + "warn_obsolete": 3, + "warn_insts_without_matching_type": 3, + "warn_unused_imports": 3, + "inform_ite_instead_of_switch": 3, + "warn_unresolved_polymorphism": 3, + "warn_suspicious_foreign_procs": 3, + "warn_state_var_shadowing": 3, + "inform_inferred": 3, + "inform_inferred_types": 3, + "inform_inferred_modes": 3, + "verbose": 4, + "very_verbose": 4, + "verbose_errors": 4, + "verbose_recompilation": 3, + "find_all_recompilation_reasons": 3, + "verbose_make": 3, + "verbose_commands": 3, + "output_compile_error_lines": 3, + "report_cmd_line_args": 3, + "report_cmd_line_args_in_doterr": 3, + "statistics": 4, + "detailed_statistics": 3, + "proc_size_statistics": 3, + "debug_types": 4, + "debug_modes": 4, + "debug_modes_statistics": 3, + "debug_modes_minimal": 3, + "debug_modes_verbose": 3, + "debug_modes_pred_id": 3, + "debug_dep_par_conj": 3, + "debug_det": 4, + "debug_code_gen_pred_id": 3, + "debug_opt": 3, + "debug_term": 4, + "term": 10, + "termination": 3, + "analysis": 1, + "debug_opt_pred_id": 3, + "debug_opt_pred_name": 3, + "debug_pd": 3, + "pd": 1, + "partial": 1, + "deduction/deforestation": 1, + "debug_il_asm": 3, + "il_asm": 1, + "IL": 2, + "generation": 1, + "via": 1, + "asm": 1, + "debug_liveness": 3, + "debug_stack_opt": 3, + "debug_make": 3, + "debug_closure": 3, + "debug_trail_usage": 3, + "debug_mode_constraints": 3, + "debug_intermodule_analysis": 3, + "debug_mm_tabling_analysis": 3, + "debug_indirect_reuse": 3, + "debug_type_rep": 3, + "make_short_interface": 4, + "make_interface": 5, + "make_private_interface": 4, + "make_optimization_interface": 5, + "make_transitive_opt_interface": 5, + "make_analysis_registry": 3, + "make_xml_documentation": 5, + "generate_source_file_mapping": 4, + "generate_dependency_file": 3, + "generate_dependencies": 4, + "generate_module_order": 3, + "generate_standalone_interface": 3, + "convert_to_mercury": 6, + "typecheck_only": 4, + "errorcheck_only": 4, + "target_code_only": 10, + "compile_only": 4, + "compile_to_shared_lib": 3, + "output_grade_string": 3, + "output_link_command": 3, + "output_shared_lib_link_command": 3, + "output_libgrades": 3, + "output_cc": 3, + "output_c_compiler_type": 4, + "output_csharp_compiler_type": 3, + "output_cflags": 3, + "output_library_link_flags": 3, + "output_grade_defines": 3, + "output_c_include_directory_flags": 4, + "smart_recompilation": 3, + "generate_item_version_numbers": 2, + "generate_mmc_make_module_dependencies": 4, + "assume_gmake": 3, + "trace_level": 4, + "trace_optimized": 4, + "trace_prof": 3, + "trace_table_io": 3, + "trace_table_io_only_retry": 3, + "trace_table_io_states": 3, + "trace_table_io_require": 3, + "trace_table_io_all": 3, + "trace_goal_flags": 3, + "prof_optimized": 4, + "exec_trace_tail_rec": 3, + "suppress_trace": 3, + "force_disable_tracing": 3, + "delay_death": 3, + "delay_death_max_vars": 3, + "stack_trace_higher_order": 3, + "force_disable_ssdebug": 3, + "generate_bytecode": 3, + "line_numbers": 4, + "auto_comments": 4, + "frameopt_comments": 3, + "max_error_line_width": 3, + "show_dependency_graph": 3, + "imports_graph": 3, + "dump_trace_counts": 3, + "dump_hlds": 5, + "dump_hlds_pred_id": 3, + "dump_hlds_pred_name": 3, + "dump_hlds_alias": 4, + "dump_hlds_options": 3, + "dump_hlds_inst_limit": 3, + "dump_hlds_file_suffix": 3, + "dump_same_hlds": 3, + "dump_mlds": 4, + "verbose_dump_mlds": 4, + "mode_constraints": 3, + "simple_mode_constraints": 3, + "prop_mode_constraints": 4, + "benchmark_modes": 3, + "benchmark_modes_repeat": 3, + "sign_assembly": 3, + "separate_assemblies": 3, + "reorder_conj": 3, + "reorder_disj": 3, + "fully_strict": 3, + "strict_sequential": 3, + "allow_stubs": 3, + "infer_types": 3, + "infer_modes": 3, + "infer_det": 4, + "infer_all": 3, + "type_inference_iteration_limit": 3, + "mode_inference_iteration_limit": 3, + "event_set_file_name": 3, + "grade": 4, + "target": 14, + "il": 5, + "il_only": 4, + "compile_to_c": 4, + "c": 1, + "java": 35, + "java_only": 4, + "csharp": 6, + "csharp_only": 4, + "x86_64": 6, + "x86_64_only": 4, + "erlang": 6, + "erlang_only": 4, + "exec_trace": 3, + "decl_debug": 3, + "profiling": 5, + "profile_time": 5, + "profile_calls": 6, + "time_profiling": 3, + "memory_profiling": 3, + "profile_mem": 1, + "deep_profiling": 3, + "profile_deep": 4, + "profile_memory": 3, + "use_activation_counts": 3, + "pre_prof_transforms_simplify": 3, + "pre_implicit_parallelism_simplify": 3, + "coverage_profiling": 3, + "coverage_profiling_via_calls": 3, + "coverage_profiling_static": 3, + "profile_deep_coverage_after_goal": 3, + "profile_deep_coverage_branch_ite": 3, + "profile_deep_coverage_branch_switch": 3, + "profile_deep_coverage_branch_disj": 3, + "profile_deep_coverage_use_portcounts": 3, + "profile_deep_coverage_use_trivial": 2, + "profile_for_feedback": 2, + "use_zeroing_for_ho_cycles": 2, + "use_lots_of_ho_specialization": 2, + "deep_profile_tail_recursion": 2, + "record_term_sizes_as_words": 2, + "record_term_sizes_as_cells": 2, + "experimental_complexity": 2, + "gc": 2, + "parallel": 3, + "threadscope": 2, + "use_trail": 3, + "trail_segments": 2, + "use_minimal_model_stack_copy": 2, + "use_minimal_model_own_stacks": 2, + "minimal_model_debug": 2, + "single_prec_float": 2, + "type_layout": 2, + "maybe_thread_safe_opt": 2, + "extend_stacks_when_needed": 2, + "stack_segments": 2, + "use_regions": 2, + "use_alloc_regions": 2, + "use_regions_debug": 2, + "use_regions_profiling": 2, + "source_to_source_debug": 5, + "ssdb_trace_level": 3, + "link_ssdb_libs": 4, + "tags": 2, + "num_tag_bits": 2, + "num_reserved_addresses": 2, + "num_reserved_objects": 2, + "bits_per_word": 2, + "bytes_per_word": 2, + "conf_low_tag_bits": 2, + "unboxed_float": 3, + "unboxed_enums": 2, + "unboxed_no_tag_types": 2, + "sync_term_size": 2, + "words": 1, + "gcc_non_local_gotos": 3, + "gcc_global_registers": 2, + "asm_labels": 3, + "pic_reg": 2, + "use_float_registers": 5, + "highlevel_code": 3, + "highlevel_data": 2, + "gcc_nested_functions": 2, + "det_copy_out": 2, + "nondet_copy_out": 2, + "put_commit_in_own_func": 2, + "put_nondet_env_on_heap": 2, + "verifiable_code": 2, + "il_refany_fields": 2, + "il_funcptr_types": 2, + "il_byref_tailcalls": 2, + "backend_foreign_languages": 2, + "stack_trace": 2, + "basic_stack_layout": 2, + "agc_stack_layout": 2, + "procid_stack_layout": 2, + "trace_stack_layout": 2, + "body_typeinfo_liveness": 4, + "can_compare_constants_as_ints": 2, + "pretest_equality_cast_pointers": 2, + "can_compare_compound_values": 2, + "lexically_order_constructors": 2, + "mutable_always_boxed": 2, + "delay_partial_instantiations": 2, + "allow_defn_of_builtins": 2, + "special_preds": 2, + "type_ctor_info": 2, + "type_ctor_layout": 2, + "type_ctor_functors": 2, + "new_type_class_rtti": 2, + "rtti_line_numbers": 2, + "disable_minimal_model_stack_copy_pneg": 2, + "disable_minimal_model_stack_copy_cut": 2, + "use_minimal_model_stack_copy_pneg": 2, + "use_minimal_model_stack_copy_cut": 3, + "disable_trail_ops": 3, + "size_region_ite_fixed": 2, + "size_region_disj_fixed": 2, + "size_region_semi_disj_fixed": 1, + "size_region_commit_fixed": 2, + "size_region_ite_protect": 2, + "size_region_ite_snapshot": 2, + "size_region_semi_disj_protect": 2, + "size_region_disj_snapshot": 2, + "size_region_commit_entry": 2, + "solver_type_auto_init": 2, + "allow_multi_arm_switches": 2, + "type_check_constraints": 2, + "allow_argument_packing": 2, + "low_level_debug": 2, + "table_debug": 2, + "trad_passes": 2, + "parallel_liveness": 2, + "parallel_code_gen": 2, + "polymorphism": 2, + "reclaim_heap_on_failure": 2, + "reclaim_heap_on_semidet_failure": 2, + "reclaim_heap_on_nondet_failure": 2, + "have_delay_slot": 2, + "num_real_r_regs": 2, + "num_real_f_regs": 2, + "num_real_r_temps": 2, + "num_real_f_temps": 2, + "max_jump_table_size": 2, + "max_specialized_do_call_closure": 2, + "max_specialized_do_call_class_method": 2, + "compare_specialization": 2, + "should_pretest_equality": 2, + "fact_table_max_array_size": 2, + "fact_table_hash_percent_full": 2, + "gcc_local_labels": 2, + "prefer_switch": 2, + "opt_no_return_calls": 3, + "opt_level": 3, + "opt_level_number": 2, + "opt_space": 2, + "Default": 3, + "optimize": 3, + "time.": 1, + "intermodule_optimization": 2, + "read_opt_files_transitively": 2, + "use_opt_files": 2, + "use_trans_opt_files": 2, + "transitive_optimization": 2, + "intermodule_analysis": 2, + "analysis_repeat": 2, + "analysis_file_cache": 2, + "allow_inlining": 2, + "inlining": 2, + "inline_simple": 2, + "inline_builtins": 2, + "inline_single_use": 2, + "inline_call_cost": 2, + "inline_compound_threshold": 2, + "inline_simple_threshold": 2, + "inline_vars_threshold": 2, + "intermod_inline_simple_threshold": 2, + "from_ground_term_threshold": 2, + "enable_const_struct": 2, + "common_struct": 2, + "common_struct_preds": 2, + "common_goal": 2, + "constraint_propagation": 2, + "local_constraint_propagation": 2, + "optimize_unused_args": 2, + "intermod_unused_args": 2, + "optimize_higher_order": 2, + "higher_order_size_limit": 2, + "higher_order_arg_limit": 2, + "unneeded_code": 2, + "unneeded_code_copy_limit": 2, + "unneeded_code_debug": 2, + "unneeded_code_debug_pred_name": 2, + "type_specialization": 2, + "user_guided_type_specialization": 2, + "introduce_accumulators": 2, + "optimize_constructor_last_call_accumulator": 2, + "optimize_constructor_last_call_null": 3, + "optimize_constructor_last_call": 2, + "optimize_duplicate_calls": 2, + "constant_propagation": 2, + "excess_assign": 2, + "optimize_format_calls": 2, + "optimize_saved_vars_const": 2, + "optimize_saved_vars_cell": 2, + "optimize_saved_vars_cell_loop": 2, + "optimize_saved_vars_cell_full_path": 2, + "optimize_saved_vars_cell_on_stack": 2, + "optimize_saved_vars_cell_candidate_headvars": 2, + "optimize_saved_vars_cell_cv_store_cost": 2, + "optimize_saved_vars_cell_cv_load_cost": 2, + "optimize_saved_vars_cell_fv_store_cost": 2, + "optimize_saved_vars_cell_fv_load_cost": 2, + "optimize_saved_vars_cell_op_ratio": 2, + "optimize_saved_vars_cell_node_ratio": 2, + "optimize_saved_vars_cell_all_path_node_ratio": 2, + "optimize_saved_vars_cell_include_all_candidates": 2, + "optimize_saved_vars": 2, + "loop_invariants": 2, + "delay_construct": 2, + "follow_code": 2, + "optimize_dead_procs": 2, + "deforestation": 2, + "deforestation_depth_limit": 2, + "deforestation_cost_factor": 2, + "deforestation_vars_threshold": 2, + "deforestation_size_threshold": 2, + "analyse_trail_usage": 2, + "optimize_trail_usage": 3, + "optimize_region_ops": 3, + "analyse_mm_tabling": 2, + "untuple": 2, + "tuple": 2, + "tuple_trace_counts_file": 2, + "tuple_costs_ratio": 2, + "tuple_min_args": 2, + "inline_par_builtins": 2, + "always_specialize_in_dep_par_conjs": 2, + "allow_some_paths_only_waits": 2, + "region_analysis": 3, + "structure_sharing_analysis": 2, + "structure_sharing_widening": 2, + "structure_reuse_analysis": 2, + "structure_reuse_constraint": 2, + "structure_reuse_constraint_arg": 2, + "structure_reuse_max_conditions": 2, + "structure_reuse_repeat": 2, + "structure_reuse_free_cells": 2, + "termination_check": 2, + "verbose_check_termination": 2, + "termination_single_args": 2, + "termination_norm": 2, + "termination_error_limit": 2, + "termination_path_limit": 2, + "termination2": 2, + "check_termination2": 2, + "verbose_check_termination2": 2, + "termination2_norm": 2, + "widening_limit": 2, + "arg_size_analysis_only": 2, + "propagate_failure_constrs": 2, + "term2_maximum_matrix_size": 2, + "analyse_exceptions": 2, + "analyse_closures": 2, + "smart_indexing": 2, + "dense_switch_req_density": 2, + "lookup_switch_req_density": 2, + "dense_switch_size": 2, + "lookup_switch_size": 2, + "string_hash_switch_size": 2, + "string_binary_switch_size": 2, + "tag_switch_size": 2, + "try_switch_size": 2, + "binary_switch_size": 2, + "switch_single_rec_base_first": 2, + "switch_multi_rec_base_first": 2, + "static_ground_cells": 3, + "static_ground_floats": 3, + "static_code_addresses": 3, + "use_atomic_cells": 2, + "middle_rec": 2, + "simple_neg": 2, + "allow_hijacks": 3, + "optimize_tailcalls": 2, + "optimize_initializations": 2, + "eliminate_local_vars": 2, + "generate_trail_ops_inline": 2, + "common_data": 2, + "common_layout_data": 2, + "Also": 1, + "for": 8, + "MLDS": 2, + "optimizations.": 1, + "optimize_peep": 2, + "optimize_peep_mkword": 2, + "optimize_jumps": 2, + "optimize_fulljumps": 2, + "pessimize_tailcalls": 2, + "checked_nondet_tailcalls": 2, + "use_local_vars": 2, + "local_var_access_threshold": 2, + "standardize_labels": 2, + "optimize_labels": 2, + "optimize_dups": 2, + "optimize_proc_dups": 2, + "optimize_frames": 2, + "optimize_delay_slot": 2, + "optimize_reassign": 2, + "optimize_repeat": 2, + "layout_compression_limit": 2, + "use_macro_for_redo_fail": 2, + "emit_c_loops": 2, + "procs_per_c_function": 3, + "everything_in_one_c_function": 2, + "local_thread_engine_base": 2, + "erlang_switch_on_strings_as_atoms": 2, + "target_debug": 2, + "cc": 2, + "cflags": 2, + "quoted_cflag": 2, + "c_include_directory": 2, + "c_optimize": 2, + "ansi_c": 2, + "inline_alloc": 2, + "gcc_flags": 2, + "quoted_gcc_flag": 2, + "clang_flags": 2, + "quoted_clang_flag": 2, + "msvc_flags": 2, + "quoted_msvc_flag": 2, + "cflags_for_warnings": 2, + "cflags_for_optimization": 2, + "cflags_for_ansi": 2, + "cflags_for_regs": 2, + "cflags_for_gotos": 2, + "cflags_for_threads": 2, + "cflags_for_debug": 2, + "cflags_for_pic": 2, + "c_flag_to_name_object_file": 2, + "object_file_extension": 2, + "pic_object_file_extension": 2, + "link_with_pic_object_file_extension": 2, + "c_compiler_type": 2, + "csharp_compiler_type": 2, + "java_compiler": 2, + "java_interpreter": 2, + "java_flags": 2, + "quoted_java_flag": 2, + "java_classpath": 2, + "java_object_file_extension": 2, + "il_assembler": 2, + "ilasm_flags": 2, + "quoted_ilasm_flag": 2, + "dotnet_library_version": 2, + "support_ms_clr": 2, + "support_rotor_clr": 2, + "csharp_compiler": 2, + "csharp_flags": 2, + "quoted_csharp_flag": 2, + "cli_interpreter": 2, + "erlang_compiler": 2, + "erlang_interpreter": 2, + "erlang_flags": 2, + "quoted_erlang_flag": 2, + "erlang_include_directory": 2, + "erlang_object_file_extension": 2, + "erlang_native_code": 2, + "erlang_inhibit_trivial_warnings": 2, + "output_file_name": 3, + "ld_flags": 2, + "quoted_ld_flag": 2, + "ld_libflags": 2, + "quoted_ld_libflag": 2, + "link_library_directories": 3, + "runtime_link_library_directories": 3, + "link_libraries": 3, + "link_objects": 2, + "mercury_library_directories": 2, + "mercury_library_directory_special": 2, + "search_library_files_directories": 2, + "search_library_files_directory_special": 2, + "mercury_libraries": 2, + "mercury_library_special": 2, + "mercury_standard_library_directory": 2, + "mercury_standard_library_directory_special": 2, + "init_file_directories": 2, + "init_files": 2, + "trace_init_files": 2, + "linkage": 2, + "linkage_special": 2, + "mercury_linkage": 2, + "mercury_linkage_special": 2, + "strip": 2, + "demangle": 2, + "allow_undefined": 2, + "use_readline": 2, + "runtime_flags": 2, + "extra_initialization_functions": 2, + "frameworks": 2, + "framework_directories": 3, + "shared_library_extension": 2, + "library_extension": 2, + "executable_file_extension": 2, + "link_executable_command": 2, + "link_shared_lib_command": 2, + "create_archive_command": 2, + "create_archive_command_output_flag": 2, + "create_archive_command_flags": 2, + "ranlib_command": 2, + "ranlib_flags": 2, + "mkinit_command": 2, + "mkinit_erl_command": 2, + "demangle_command": 2, + "filtercc_command": 2, + "trace_libs": 2, + "thread_libs": 2, + "hwloc_libs": 2, + "hwloc_static_libs": 2, + "shared_libs": 2, + "math_lib": 2, + "readline_libs": 2, + "linker_opt_separator": 2, + "linker_thread_flags": 2, + "shlib_linker_thread_flags": 2, + "linker_static_flags": 2, + "linker_strip_flag": 2, + "linker_link_lib_flag": 2, + "linker_link_lib_suffix": 2, + "shlib_linker_link_lib_flag": 2, + "shlib_linker_link_lib_suffix": 2, + "linker_debug_flags": 2, + "shlib_linker_debug_flags": 2, + "linker_trace_flags": 2, + "shlib_linker_trace_flags": 2, + "linker_path_flag": 2, + "linker_rpath_flag": 2, + "linker_rpath_separator": 2, + "shlib_linker_rpath_flag": 2, + "shlib_linker_rpath_separator": 2, + "linker_allow_undefined_flag": 2, + "linker_error_undefined_flag": 2, + "shlib_linker_use_install_name": 2, + "shlib_linker_install_name_flag": 2, + "shlib_linker_install_name_path": 2, + "java_archive_command": 2, + "make": 3, + "keep_going": 3, + "rebuild": 3, + "jobs": 3, + "track_flags": 2, + "invoked_by_mmc_make": 2, + "extra_init_command": 2, + "pre_link_command": 2, + "install_prefix": 2, + "use_symlinks": 2, + "mercury_configuration_directory": 2, + "mercury_configuration_directory_special": 2, + "install_command": 2, + "install_command_dir_option": 2, + "libgrades": 2, + "libgrades_include_components": 2, + "libgrades_exclude_components": 2, + "lib_linkages": 2, + "flags_file": 2, + "options_files": 2, + "config_file": 2, + "options_search_directories": 2, + "use_subdirs": 2, + "use_grade_subdirs": 2, + "search_directories": 3, + "intermod_directories": 2, + "use_search_directories_for_intermod": 2, + "libgrade_install_check": 2, + "order_make_by_timestamp": 2, + "show_make_times": 2, + "extra_library_header": 2, + "restricted_command_line": 2, + "env_type": 2, + "host_env_type": 2, + "target_env_type": 2, + "filenames_from_stdin": 2, + "typecheck_ambiguity_warn_limit": 2, + "typecheck_ambiguity_error_limit": 2, + "help": 4, + "version": 3, + "fullarch": 2, + "cross_compiling": 2, + "local_module_id": 2, + "analysis_file_cache_dir": 2, + "compiler_sufficiently_recent": 2, + "experiment": 2, + "ignore_par_conjunctions": 2, + "control_granularity": 2, + "distance_granularity": 2, + "implicit_parallelism": 2, + "feedback_file": 2, + "par_loop_control": 2, + "par_loop_control_preserve_tail_recursion.": 1, + "libs.handle_options.": 1, + "dir.": 1, + "option_category": 2, + "warning_option": 2, + "verbosity_option": 2, + "output_option": 2, + "aux_output_option": 2, + "language_semantics_option": 2, + "compilation_model_option": 2, + "internal_use_option": 2, + "code_gen_option": 2, + "special_optimization_option": 2, + "optimization_option": 2, + "target_code_compilation_option": 2, + "link_option": 2, + "build_system_option": 2, + "miscellaneous_option.": 1, + "Option": 2, + "option_defaults_2": 18, + "_Category": 1, + "OptionsList": 2, + "multi.": 1, + "bool_special": 7, + "XXX": 3, + "should": 1, + "be": 1, + "accumulating": 49, + "maybe_string": 6, + "special": 17, + "string_special": 18, + "int_special": 1, + "maybe_string_special": 1, + "file_special": 1, + "miscellaneous_option": 1, + "par_loop_control_preserve_tail_recursion": 1, + "hello.": 1, + "io.write_string": 1, + "expr.": 1, + "token": 5, + "num": 11, + "parse": 1, + "exprn/1": 1, + "xx": 1, + "scan": 16, + "rule": 3, + "exprn": 7, + "Num": 18, + "B": 8, + "factor": 6, + "/": 1, + "Chars": 2, + "Toks": 13, + "Toks0": 11, + "list__reverse": 1, + "C": 34, + "Cs": 9, + "char__is_whitespace": 1, + "char__is_digit": 2, + "takewhile": 1, + "Digits": 2, + "Rest": 2, + "string__from_char_list": 1, + "NumStr": 2, + "string__det_to_int": 1, + "rot13_ralph.": 1, + "io__read_byte": 1, + "Result": 4, + "io__write_byte": 1, + "ErrNo": 2, + "z": 1, + "Rot13": 2, + "<": 14, + "rem": 1, + "ll_backend.code_info.": 1, + "hlds.code_model.": 1, + "hlds.hlds_llds.": 1, + "ll_backend.continuation_info.": 1, + "ll_backend.global_data.": 1, + "ll_backend.layout.": 1, + "ll_backend.llds.": 1, + "ll_backend.trace_gen.": 1, + "counter.": 1, + "set_tree234.": 1, + "backend_libs.builtin_ops.": 1, + "backend_libs.proc_label.": 1, + "hlds.arg_info.": 1, + "hlds.hlds_desc.": 1, + "libs.trace_params.": 1, + "ll_backend.code_util.": 1, + "ll_backend.opt_debug.": 1, + "ll_backend.var_locn.": 1, + "parse_tree.mercury_to_mercury.": 1, + "cord.": 1, + "stack.": 1, + "code_info.": 1, + "code_info_init": 2, + "globals": 5, + "abs_follow_vars": 3, + "static_cell_info": 4, + "const_struct_map": 3, + "resume_point_info": 11, + "trace_slot_info": 3, + "containing_goal_map": 4, + "code_info": 208, + "get_globals": 5, + "get_exprn_opts": 2, + "exprn_opts": 3, + "get_module_info": 7, + "get_pred_id": 6, + "get_proc_id": 5, + "get_pred_info": 2, + "get_proc_info": 4, + "get_varset": 3, + "get_var_types": 3, + "vartypes.": 1, + "get_maybe_trace_info": 2, + "trace_info": 3, + "get_emit_trail_ops": 2, + "add_trail_ops": 5, + "get_emit_region_ops": 2, + "add_region_ops": 6, + "get_forward_live_vars": 2, + "set_of_progvar": 10, + "set_forward_live_vars": 2, + "get_instmap": 4, + "instmap": 3, + "set_instmap": 3, + "get_par_conj_depth": 2, + "set_par_conj_depth": 2, + "get_label_counter": 3, + "counter": 6, + "get_succip_used": 2, + "get_layout_info": 4, + "proc_label_layout_info": 3, + "get_proc_trace_events": 2, + "set_proc_trace_events": 2, + "get_closure_layouts": 3, + "closure_proc_id_data": 4, + "get_max_reg_in_use_at_trace": 2, + "set_max_reg_in_use_at_trace": 2, + "get_created_temp_frame": 2, + "get_static_cell_info": 5, + "set_static_cell_info": 5, + "get_alloc_sites": 3, + "set_tree234": 3, + "alloc_site_info": 4, + "set_alloc_sites": 3, + "get_used_env_vars": 2, + "set_used_env_vars": 2, + "get_opt_trail_ops": 2, + "get_opt_region_ops": 2, + "get_auto_comments": 2, + "get_lcmc_null": 2, + "get_containing_goal_map": 3, + "get_containing_goal_map_det": 2, + "get_const_struct_map": 2, + "add_out_of_line_code": 2, + "llds_code": 21, + "get_out_of_line_code": 2, + "get_var_slot_count": 2, + "set_maybe_trace_info": 3, + "get_opt_no_return_calls": 2, + "get_zombies": 2, + "set_zombies": 2, + "get_var_locn_info": 7, + "var_locn_info": 3, + "set_var_locn_info": 4, + "get_temps_in_use": 6, + "lval": 114, + "set_temps_in_use": 4, + "get_fail_info": 13, + "fail_info": 24, + "set_fail_info": 9, + "set_label_counter": 3, + "set_succip_used": 3, + "set_layout_info": 4, + "get_max_temp_slot_count": 2, + "set_max_temp_slot_count": 2, + "get_temp_content_map": 3, + "slot_contents": 4, + "set_temp_content_map": 2, + "get_persistent_temps": 3, + "set_persistent_temps": 2, + "set_closure_layouts": 3, + "get_closure_seq_counter": 3, + "set_closure_seq_counter": 3, + "set_created_temp_frame": 2, + "code_info_static": 26, + "code_info_loc_dep": 22, + "code_info_persistent": 44, + "cis_globals": 2, + "cis_exprn_opts": 2, + "cis_module_info": 2, + "cis_pred_id": 2, + "cis_proc_id": 2, + "cis_pred_info": 2, + "cis_proc_info": 2, + "cis_proc_label": 1, + "proc_label": 2, + "cis_varset": 2, + "cis_var_slot_count": 2, + "cis_maybe_trace_info": 3, + "cis_opt_no_resume_calls": 2, + "cis_emit_trail_ops": 2, + "cis_opt_trail_ops": 2, + "cis_emit_region_ops": 2, + "cis_opt_region_ops": 2, + "cis_auto_comments": 2, + "cis_lcmc_null": 2, + "cis_containing_goal_map": 2, + "cis_const_struct_map": 2, + "cild_forward_live_vars": 3, + "cild_instmap": 3, + "cild_zombies": 3, + "cild_var_locn_info": 3, + "cild_temps_in_use": 3, + "cild_fail_info": 3, + "cild_par_conj_depth": 3, + "cip_label_num_src": 3, + "cip_store_succip": 3, + "cip_label_info": 3, + "cip_proc_trace_events": 3, + "cip_stackslot_max": 3, + "cip_temp_contents": 3, + "cip_persistent_temps": 3, + "cip_closure_layout_seq": 3, + "cip_closure_layouts": 3, + "cip_max_reg_r_used": 3, + "cip_max_reg_f_used": 2, + "cip_created_temp_frame": 3, + "cip_static_cell_info": 3, + "cip_alloc_sites": 3, + "cip_used_env_vars": 3, + "cip_ts_string_table_size": 3, + "cip_ts_rev_string_table": 4, + "cip_out_of_line_code": 4, + "SaveSuccip": 2, + "Globals": 32, + "FollowVars": 6, + "StaticCellInfo": 8, + "ConstStructMap": 2, + "ResumePoint": 13, + "TraceSlotInfo": 5, + "MaybeContainingGoalMap": 5, + "TSRevStringTable": 2, + "TSStringTableSize": 2, + "CodeInfo": 2, + "ProcLabel": 8, + "make_proc_label": 1, + "proc_info_get_initial_instmap": 1, + "InstMap": 6, + "proc_info_get_liveness_info": 1, + "Liveness": 4, + "CodeModel": 8, + "proc_info_interface_code_model": 2, + "build_input_arg_list": 1, + "ArgList": 2, + "proc_info_get_varset": 1, + "proc_info_get_vartypes": 2, + "proc_info_get_stack_slots": 1, + "StackSlots": 5, + "ExprnOpts": 4, + "init_exprn_opts": 3, + "globals.lookup_bool_option": 18, + "UseFloatRegs": 6, + "FloatRegType": 3, + "reg_f": 1, + "reg_r": 2, + "globals.get_trace_level": 1, + "TraceLevel": 5, + "eff_trace_level_is_none": 2, + "trace_fail_vars": 1, + "FailVars": 3, + "MaybeFailVars": 3, + "EffLiveness": 3, + "init_var_locn_state": 1, + "VarLocnInfo": 12, + "stack.init": 1, + "ResumePoints": 14, + "AllowHijack": 3, + "Hijack": 6, + "allowed": 6, + "not_allowed": 5, + "DummyFailInfo": 2, + "resume_point_unknown": 9, + "may_be_different": 7, + "not_inside_non_condition": 2, + "TempContentMap": 4, + "set.init": 7, + "PersistentTemps": 4, + "TempsInUse": 8, + "Zombies": 2, + "set_of_var.init": 1, + "LayoutMap": 2, + "max_var_slot": 1, + "VarSlotMax": 2, + "trace_reserved_slots": 1, + "FixedSlots": 2, + "int.max": 1, + "SlotMax": 2, + "OptNoReturnCalls": 2, + "UseTrail": 2, + "DisableTrailOps": 2, + "EmitTrailOps": 3, + "do_not_add_trail_ops": 1, + "OptTrailOps": 2, + "OptRegionOps": 2, + "UseRegions": 3, + "EmitRegionOps": 3, + "do_not_add_region_ops": 1, + "AutoComments": 2, + "LCMCNull": 2, + "CodeInfo0": 2, + "init_fail_info": 2, + "will": 1, + "override": 1, + "this": 4, + "dummy": 2, + "value": 16, + "nested": 1, + "conjunction": 1, + "depth": 1, + "counter.init": 2, + "set_tree234.init": 1, + "cord.empty": 1, + "init_maybe_trace_info": 3, + "CodeInfo1": 2, + "exprn_opts.": 1, + "OptNLG": 3, + "NLG": 3, + "have_non_local_gotos": 1, + "do_not_have_non_local_gotos": 1, + "OptASM": 3, + "ASM": 3, + "have_asm_labels": 1, + "do_not_have_asm_labels": 1, + "OptSGCell": 3, + "SGCell": 3, + "have_static_ground_cells": 1, + "do_not_have_static_ground_cells": 1, + "OptUBF": 3, + "UBF": 3, + "have_unboxed_floats": 1, + "do_not_have_unboxed_floats": 1, + "OptFloatRegs": 3, + "do_not_use_float_registers": 1, + "OptSGFloat": 3, + "SGFloat": 3, + "have_static_ground_floats": 1, + "do_not_have_static_ground_floats": 1, + "OptStaticCodeAddr": 3, + "StaticCodeAddrs": 3, + "have_static_code_addresses": 1, + "do_not_have_static_code_addresses": 1, + "CI": 294, + "proc_info_get_has_tail_call_events": 1, + "HasTailCallEvents": 3, + "tail_call_events": 1, + "get_next_label": 5, + "TailRecLabel": 2, + "MaybeTailRecLabel": 3, + "no_tail_call_events": 1, + "trace_setup": 1, + "TraceInfo": 2, + "MaxRegR": 4, + "MaxRegF": 4, + "cip_max_reg_f_used.": 1, + "TI": 4, + "LV": 2, + "IM": 2, + "Zs": 2, + "EI": 2, + "FI": 2, + "LC": 2, + "SU": 2, + "LI": 2, + "PTE": 2, + "TM": 2, + "CM": 2, + "PT": 2, + "CLS": 2, + "CG": 2, + "MR": 4, + "MF": 1, + "MF.": 1, + "SCI": 2, + "ASI": 2, + "UEV": 2, + "ContainingGoalMap": 2, + "NewCode": 2, + "Code0": 2, + ".CI": 29, + "Code": 36, + "Code.": 1, + "get_stack_slots": 2, + "stack_slots": 1, + "get_follow_var_map": 2, + "abs_follow_vars_map": 1, + "get_next_non_reserved": 2, + "reg_type": 1, + "set_follow_vars": 4, + "pre_goal_update": 3, + "has_subgoals": 2, + "post_goal_update": 3, + "variable_type": 3, + "mer_type.": 1, + "variable_is_of_dummy_type": 2, + "is_dummy_type.": 1, + "search_type_defn": 4, + "hlds_type_defn": 1, + "lookup_type_defn": 2, + "hlds_type_defn.": 1, + "lookup_cheaper_tag_test": 2, + "maybe_cheaper_tag_test.": 1, + "filter_region_vars": 2, + "set_of_progvar.": 2, + "get_proc_model": 2, + "code_model.": 1, + "get_headvars": 2, + "get_arginfo": 2, + "arg_info": 2, + "get_pred_proc_arginfo": 3, + "current_resume_point_vars": 2, + "variable_name": 2, + "make_proc_entry_label": 2, + "code_addr.": 1, + "label": 5, + "succip_is_used": 2, + "add_trace_layout_for_label": 2, + "trace_port": 1, + "forward_goal_path": 1, + "user_event_info": 1, + "layout_label_info": 2, + "get_cur_proc_label": 4, + "get_next_closure_seq_no": 2, + "add_closure_layout": 2, + "add_threadscope_string": 2, + "get_threadscope_rev_string_table": 2, + "add_scalar_static_cell": 2, + "typed_rval": 1, + "data_id": 3, + "add_scalar_static_cell_natural_types": 2, + "rval": 3, + "add_vector_static_cell": 2, + "llds_type": 1, + "add_alloc_site_info": 2, + "prog_context": 1, + "alloc_site_id": 2, + "add_resume_layout_for_label": 2, + "var_locn_get_stack_slots": 1, + "FollowVarMap": 2, + "var_locn_get_follow_var_map": 1, + "RegType": 2, + "NextNonReserved": 2, + "var_locn_get_next_non_reserved": 1, + "VarLocnInfo0": 4, + "var_locn_set_follow_vars": 1, + "HasSubGoals": 3, + "goal_info_get_resume_point": 1, + "no_resume_point": 1, + "resume_point": 1, + "goal_info_get_follow_vars": 1, + "MaybeFollowVars": 3, + "goal_info_get_pre_deaths": 1, + "PreDeaths": 3, + "rem_forward_live_vars": 3, + "maybe_make_vars_forward_dead": 2, + "goal_info_get_pre_births": 1, + "PreBirths": 2, + "add_forward_live_vars": 2, + "does_not_have_subgoals": 2, + "goal_info_get_post_deaths": 2, + "PostDeaths": 5, + "goal_info_get_post_births": 1, + "PostBirths": 3, + "make_vars_forward_live": 1, + "InstMapDelta": 2, + "goal_info_get_instmap_delta": 1, + "InstMap0": 2, + "instmap.apply_instmap_delta": 1, + "TypeInfoLiveness": 2, + "body_should_use_typeinfo_liveness": 1, + "IsDummy": 2, + "VarType": 2, + "check_dummy_type": 1, + "TypeDefn": 6, + "type_to_ctor_det": 1, + "TypeCtor": 2, + "module_info_get_type_table": 1, + "TypeTable": 2, + "search_type_ctor_defn": 1, + "TypeDefnPrime": 2, + "CheaperTagTest": 3, + "get_type_defn_body": 1, + "TypeBody": 2, + "hlds_du_type": 1, + "CheaperTagTestPrime": 2, + "no_cheaper_tag_test": 1, + "ForwardLiveVarsBeforeGoal": 6, + "RegionVars": 2, + "code_info.get_var_types": 1, + "set_of_var.filter": 1, + "is_region_var": 1, + "ArgInfo": 4, + "proc_info_arg_info": 1, + "ResumeVars": 4, + "FailInfo": 19, + "ResumePointStack": 2, + "stack.det_top": 5, + "ResumePointInfo": 2, + "pick_first_resume_point": 1, + "ResumeMap": 8, + "ResumeMapVarList": 2, + "Varset": 2, + "Immed0": 3, + "CodeAddr": 2, + "Immed": 3, + "globals.lookup_int_option": 1, + "ProcsPerFunc": 2, + "CurPredId": 2, + "CurProcId": 2, + "make_entry_label": 1, + "Label": 8, + "C0": 4, + "counter.allocate": 2, + "internal_label": 3, + "Port": 2, + "IsHidden": 2, + "GoalPath": 2, + "MaybeSolverEventInfo": 2, + "Layout": 2, + "Internals0": 8, + "Exec": 5, + "trace_port_layout_info": 1, + "LabelNum": 8, + "entry_label": 2, + "map.search": 2, + "Internal0": 4, + "internal_layout_info": 6, + "Exec0": 3, + "Resume": 5, + "Return": 6, + "Internal": 8, + "Internals": 6, + "map.det_insert": 3, + "LayoutInfo": 2, + "Resume0": 3, + "get_active_temps_data": 2, + "assoc_list": 1, + "Temps": 2, + "map.select": 1, + "TempsInUseContentMap": 2, + "map.to_assoc_list": 3, + "cis_proc_label.": 1, + "SeqNo": 2, + "ClosureLayout": 2, + "ClosureLayouts": 2, + "String": 2, + "SlotNum": 2, + "Size0": 3, + "RevTable0": 2, + "Size": 4, + "RevTable": 3, + "RevTable.": 1, + "TableSize": 2, + "cip_ts_string_table_size.": 1, + "RvalsTypes": 2, + "DataAddr": 6, + "StaticCellInfo0": 6, + "global_data.add_scalar_static_cell": 1, + "Rvals": 2, + "global_data.add_scalar_static_cell_natural_types": 1, + "Vector": 2, + "global_data.add_vector_static_cell": 1, + "AllocId": 2, + "AllocSite": 3, + "AllocSites0": 2, + "set_tree234.insert": 1, + "AllocSites": 2, + "position_info.": 1, + "branch_end_info.": 1, + "branch_end": 4, + "branch_end_info": 7, + "remember_position": 3, + "position_info": 14, + "reset_to_position": 4, + "reset_resume_known": 2, + "generate_branch_end": 2, + "abs_store_map": 3, + "after_all_branches": 2, + "save_hp_in_branch": 2, + "pos_get_fail_info": 3, + "fail_info.": 2, + "LocDep": 6, + "cild_fail_info.": 1, + "CurCI": 2, + "NextCI": 2, + "Static": 2, + "Persistent": 2, + "NextCI0": 4, + "TempsInUse0": 4, + "set.union": 2, + "BranchStart": 2, + "BranchStartFailInfo": 2, + "BSResumeKnown": 2, + "CurFailInfo": 2, + "CurFailStack": 2, + "CurCurfMaxfr": 2, + "CurCondEnv": 2, + "CurHijack": 2, + "NewFailInfo": 2, + "StoreMap": 8, + "MaybeEnd0": 3, + "MaybeEnd": 6, + "AbsVarLocs": 3, + "assoc_list.values": 1, + "AbsLocs": 2, + "code_util.max_mentioned_abs_regs": 1, + "instmap_is_reachable": 1, + "VarLocs": 2, + "assoc_list.map_values_only": 2, + "abs_locn_to_lval": 2, + "place_vars": 1, + "remake_with_store_map": 4, + "empty": 9, + "EndCodeInfo1": 5, + "EndCodeInfo0": 3, + "FailInfo0": 13, + "FailInfo1": 2, + "ResumeKnown0": 5, + "CurfrMaxfr0": 2, + "CondEnv0": 3, + "Hijack0": 2, + "R": 2, + "ResumeKnown1": 2, + "CurfrMaxfr1": 2, + "CondEnv1": 2, + "Hijack1": 2, + "resume_point_known": 15, + "Redoip0": 3, + "Redoip1": 2, + "ResumeKnown": 21, + "must_be_equal": 11, + "CurfrMaxfr": 24, + "EndCodeInfoA": 2, + "TempsInUse1": 2, + "EndCodeInfo": 2, + "BranchEnd": 2, + "BranchEndCodeInfo": 2, + "BranchEndLocDep": 2, + "VarLocns": 2, + "VarLvals": 2, + "reinit_var_locn_state": 1, + "Slot": 2, + "Pos0": 2, + "Pos": 2, + "CI0": 2, + "CIStatic0": 2, + "CILocDep0": 2, + "CIPersistent0": 2, + "LocDep0": 2, + "CI1": 2, + "save_hp": 1, + "CI2": 2, + "CIStatic": 2, + "CIPersistent": 2, + "resume_map.": 1, + "resume_point_info.": 1, + "disj_hijack_info.": 1, + "prepare_for_disj_hijack": 2, + "code_model": 3, + "disj_hijack_info": 3, + "undo_disj_hijack": 2, + "ite_hijack_info.": 1, + "prepare_for_ite_hijack": 2, + "embedded_stack_frame_id": 3, + "ite_hijack_info": 3, + "ite_enter_then": 2, + "simple_neg_info.": 1, + "enter_simple_neg": 2, + "simple_neg_info": 3, + "leave_simple_neg": 2, + "det_commit_info.": 1, + "prepare_for_det_commit": 2, + "det_commit_info": 6, + "generate_det_commit": 2, + "semi_commit_info.": 1, + "prepare_for_semi_commit": 2, + "semi_commit_info": 6, + "generate_semi_commit": 2, + "effect_resume_point": 2, + "pop_resume_point": 1, + "top_resume_point": 1, + "set_resume_point_to_unknown": 1, + "set_resume_point_and_frame_to_unknown": 1, + "generate_failure": 2, + "fail_if_rval_is_false": 1, + "failure_is_direct_branch": 1, + "code_addr": 8, + "may_use_nondet_tailcall": 1, + "nondet_tail_call": 1, + "produce_vars": 1, + "resume_map": 9, + "flush_resume_vars_to_stack": 1, + "make_resume_point": 1, + "resume_locs": 1, + "generate_resume_point": 2, + "resume_point_vars": 1, + "resume_point_stack_addr": 2, + "stack": 1, + "curfr_vs_maxfr": 2, + "condition_env": 3, + "hijack_allowed": 2, + "orig_only": 2, + "stack_only": 2, + "orig_and_stack": 1, + "stack_and_orig": 1, + "redoip_update": 2, + "has_been_done": 5, + "wont_be_done.": 1, + "resume_point_unknown.": 1, + "may_be_different.": 1, + "inside_non_condition": 6, + "not_inside_non_condition.": 1, + "not_allowed.": 1, + "disj_no_hijack": 4, + "disj_temp_frame": 4, + "disj_quarter_hijack": 4, + "disj_half_hijack": 3, + "disj_full_hijack": 3, + "HijackInfo": 29, + "CondEnv": 12, + "Allow": 12, + "model_det": 2, + "model_semi": 3, + "singleton": 28, + "llds_instr": 64, + "comment": 5, + "model_non": 2, + "create_temp_frame": 4, + "do_fail": 6, + "stack.pop": 1, + "TopResumePoint": 6, + "RestResumePoints": 2, + "stack.is_empty": 1, + "wont_be_done": 2, + "acquire_temp_slot": 15, + "slot_lval": 14, + "redoip_slot": 30, + "curfr": 18, + "non_persistent_temp_slot": 15, + "RedoipSlot": 33, + "maxfr": 42, + "redofr_slot": 14, + "RedofrSlot": 17, + "from_list": 13, + "prevfr_slot": 3, + "pick_stack_resume_point": 3, + "StackLabel": 9, + "LabelConst": 4, + "const": 10, + "llconst_code_addr": 6, + "ite_region_info": 5, + "ite_info": 3, + "ite_hijack_type": 2, + "ite_no_hijack": 3, + "ite_temp_frame": 3, + "ite_quarter_hijack": 3, + "ite_half_hijack": 3, + "ite_full_hijack": 3, + "CondCodeModel": 4, + "MaybeEmbeddedFrameId": 5, + "HijackType": 12, + "MaybeRegionInfo": 12, + "MaxfrSlot": 30, + "TempFrameCode": 4, + "MaxfrCode": 7, + "EmbeddedFrameId": 2, + "slot_success_record": 1, + "persistent_temp_slot": 1, + "SuccessRecordSlot": 6, + "InitSuccessCode": 3, + "llconst_false": 1, + "ITEResumePoint": 2, + "ThenCode": 10, + "ElseCode": 7, + "ResumePoints0": 5, + "stack.det_pop": 1, + "HijackResumeKnown": 2, + "OldCondEnv": 2, + "RegionInfo": 2, + "EmbeddedStackFrameId": 2, + "ITEStackResumeCodeAddr": 2, + "llconst_true": 1, + "AfterRegionOp": 3, + "if_val": 1, + "unop": 1, + "logical_not": 1, + "code_label": 2, + "use_and_maybe_pop_region_frame": 1, + "region_ite_nondet_cond_fail": 1, + "goto": 2, + "maybe_pick_stack_resume_point": 1, + "ResumeMap0": 2, + "make_fake_resume_map": 5, + "do_redo": 1, + "is_empty": 1, + "Locns": 2, + "set.make_singleton_set": 1, + "reg": 1, + "region_commit_stack_frame": 5, + "AddTrailOps": 4, + "AddRegionOps": 5, + "CommitGoalInfo": 4, + "DetCommitInfo": 4, + "SaveMaxfrCode": 3, + "save_maxfr": 3, + "MaybeMaxfrSlot": 6, + "maybe_save_trail_info": 2, + "MaybeTrailSlots": 8, + "SaveTrailCode": 4, + "maybe_save_region_commit_frame": 4, + "MaybeRegionCommitFrameInfo": 8, + "SaveRegionCommitFrameCode": 2, + "SaveRegionCommitFrameCode.": 2, + "RestoreMaxfrCode": 3, + "restore_maxfr": 3, + "release_temp_slot": 1, + "maybe_restore_trail_info": 2, + "CommitTrailCode": 4, + "maybe_restore_region_commit_frame": 2, + "SuccessRegionCode": 3, + "_FailureRegionCode": 1, + "SuccessRegionCode.": 1, + "commit_hijack_info": 2, + "commit_temp_frame": 3, + "commit_quarter_hijack": 3, + "commit_half_hijack": 3, + "commit_full_hijack": 3, + "SemiCommitInfo": 4, + "clone_resume_point": 1, + "NewResumePoint": 4, + "stack.push": 1, + "StackLabelConst": 7, + "UseMinimalModelStackCopyCut": 4, + "Components": 4, + "foreign_proc_raw_code": 4, + "cannot_branch_away": 4, + "proc_affects_liveness": 2, + "live_lvals_info": 4, + "proc_does_not_affect_liveness": 2, + "MD": 4, + "proc_may_duplicate": 2, + "MarkCode": 3, + "foreign_proc_code": 2, + "proc_will_not_call_mercury": 2, + "HijackCode": 5, + "UseMinimalModel": 3, + "CutCode": 4, + "SuccessUndoCode": 5, + "FailureUndoCode": 5, + "AfterCommit": 2, + "ResumePointCode": 2, + "FailCode": 2, + "RestoreTrailCode": 2, + "FailureRegionCode": 2, + "SuccLabel": 3, + "GotoSuccLabel": 2, + "SuccLabelCode": 1, + "SuccessCode": 2, + "FailureCode": 2, + "SuccLabelCode.": 1, + "_ForwardLiveVarsBeforeGoal": 1, + "store.": 1, + "typeclass": 1, + "store": 52, + "T": 52, + "where": 8, + "S": 133, + "instance": 4, + "io.state": 3, + "store.init": 2, + "generic_mutvar": 15, + "io_mutvar": 1, + "store_mutvar": 1, + "store.new_mutvar": 1, + "store.copy_mutvar": 1, + "store.get_mutvar": 1, + "store.set_mutvar": 1, + "<=>": 5, + "new_cyclic_mutvar": 2, + "Func": 4, + "Mutvar": 23, + "Create": 1, + "new": 25, + "variable": 1, + "whose": 2, + "initialized": 2, + "with": 5, + "returned": 1, + "from": 1, + "specified": 1, + "function": 3, + "The": 2, + "argument": 6, + "passed": 2, + "mutvar": 6, + "itself": 4, + "has": 4, + "yet": 1, + "been": 1, + "safe": 2, + "because": 1, + "does": 3, + "get": 2, + "so": 3, + "it": 1, + "can": 1, + "t": 5, + "examine": 1, + "uninitialized": 1, + "predicate": 1, + "useful": 1, + "creating": 1, + "self": 1, + "referential": 1, + "values": 1, + "such": 2, + "as": 5, + "circular": 1, + "linked": 1, + "lists": 1, + "For": 1, + "example": 1, + "clist": 2, + "node": 1, + "store.new_cyclic_mutvar": 1, + "generic_ref": 20, + "io_ref": 1, + "store_ref": 1, + "store.new_ref": 1, + "store.ref_functor": 1, + "store.arg_ref": 1, + "ArgT": 4, + "store.new_arg_ref": 3, + "store.set_ref": 1, + "store.set_ref_value": 1, + "store.copy_ref_value": 1, + "store.extract_ref_value": 1, + "Nasty": 1, + "performance": 2, + "hacks": 1, + "WARNING": 1, + "use": 1, + "of": 10, + "these": 1, + "procedures": 2, + "dangerous": 1, + "Use": 1, + "them": 1, + "last": 1, + "resort": 1, + "critical": 1, + "and": 6, + "shows": 1, + "that": 2, + "using": 1, + "versions": 1, + "bottleneck": 1, + "These": 1, + "may": 1, + "vanish": 1, + "future": 1, + "Mercury": 1, + "unsafe_arg_ref": 1, + "same": 2, + "arg_ref": 12, + "unsafe_new_arg_ref": 1, + "new_arg_ref": 1, + "except": 1, + "they": 4, + "doesn": 1, + "check": 1, + "errors": 1, + "don": 3, + "work": 3, + "no_tag": 1, + "types": 3, + "exactly": 2, + "one": 2, + "functor": 2, + "which": 2, + "arguments": 2, + "occupy": 1, + "word": 2, + "other": 1, + "functors.": 1, + "store.unsafe_arg_ref": 1, + "store.unsafe_new_arg_ref": 1, + "implementation": 1, + "require": 1, + "just": 1, + "real": 1, + "representation": 1, + "pragma": 41, + "foreign_type": 10, + "MR_Word": 24, + "can_pass_as_mercury_type": 5, + "equality": 5, + "store_equal": 7, + "comparison": 5, + "store_compare": 7, + "int32": 1, + "Java": 12, + "Erlang": 3, + "attempt": 2, + "two": 2, + "stores": 2, + "comparison_result": 1, + "compare": 1, + "Mutvars": 1, + "references": 1, + "are": 1, + "each": 1, + "represented": 1, + "pointer": 1, + "single": 1, + "on": 1, + "heap": 1, + "private_builtin.ref": 2, + "ref": 2, + "store.do_init": 6, + "foreign_proc": 28, + "_S0": 16, + "will_not_call_mercury": 28, + "will_not_modify_trail": 7, + "new_mutvar": 5, + "Val": 45, + "S0": 23, + "get_mutvar": 5, + "set_mutvar": 5, + "_S": 12, + "copy_mutvar": 1, + "Copy": 2, + "Value": 4, + "store.unsafe_new_uninitialized_mutvar": 1, + "unsafe_new_uninitialized_mutvar": 4, + "MR_offset_incr_hp_msg": 5, + "MR_SIZE_SLOT_SIZE": 10, + "1": 5, + "MR_ALLOC_ID": 5, + "2": 2, + "MR_define_size_slot": 5, + "0": 2, + "object": 21, + "MutVar": 4, + "Store": 5, + "apply": 1, + "Ref": 41, + "foreign_code": 2, + "public": 17, + "class": 4, + "Object": 9, + "referenced": 4, + "obj": 7, + "Specific": 2, + "field": 20, + "or": 2, + "null": 8, + "specify": 2, + "GetFields": 2, + "return": 6, + "fields": 3, + "any": 2, + "particular": 2, + "order": 2, + "really": 2, + "usable": 2, + "System": 1, + "Reflection": 1, + "FieldInfo": 1, + "Constructors": 2, + "init": 8, + "setField": 4, + "Set": 2, + "according": 2, + "given": 2, + "index": 2, + "void": 4, + "GetType": 1, + "reference": 4, + "getValue": 4, + "GetValue": 1, + "Update": 2, + "setValue": 2, + "SetValue": 1, + "static": 1, + "lang": 28, + "getDeclaredFields": 2, + "reflect": 1, + "Field": 5, + "try": 3, + "getClass": 1, + "catch": 11, + "SecurityException": 1, + "se": 1, + "throw": 11, + "RuntimeException": 11, + "Security": 1, + "manager": 1, + "denied": 1, + "access": 3, + "ArrayIndexOutOfBoundsException": 1, + "e": 13, + "No": 1, + "Exception": 3, + "Unable": 3, + "getMessage": 3, + "IllegalAccessException": 2, + "inaccessible": 2, + "IllegalArgumentException": 2, + "mismatch": 2, + "NullPointerException": 2, + "new_ref": 4, + "ets": 3, + "insert": 1, + "copy_ref_value": 1, + "unsafe_ref_value": 6, + "store.unsafe_ref_value": 1, + "lookup": 1, + "ref_functor": 1, + "canonicalize": 1, + "foreign_decl": 1, + "include": 4, + "mercury_type_info": 1, + "h": 4, + "mercury_heap": 1, + "mercury_misc": 1, + "MR_fatal_error": 5, + "mercury_deconstruct": 1, + "MR_arg": 3, + "ArgNum": 7, + "ArgRef": 22, + "may_not_duplicate": 1, + "MR_TypeInfo": 10, + "arg_type_info": 6, + "exp_arg_type_info": 6, + "MR_DuArgLocn": 2, + "arg_locn": 9, + "TypeInfo_for_T": 2, + "TypeInfo_for_ArgT": 2, + "MR_save_transient_registers": 2, + "MR_NONCANON_ABORT": 2, + "number": 2, + "range": 2, + "MR_compare_type_info": 2, + "MR_COMPARE_EQUAL": 2, + "wrong": 2, + "MR_restore_transient_registers": 2, + "NULL": 2, + "MR_arg_bits": 2, + "store.ref/2": 3, + "MR_arg_value": 2, + "C#": 6, + "store.Ref": 8, + "Ref.getValue": 6, + "*arg_ref": 1, + "*arg_locn": 1, + "&": 7, + "&&": 1, + "ValRef": 1, + "Ref.setValue": 3, + "ValRef.getValue": 2, + "*Ptr": 2, + "Ptr": 4, + "MR_strip_tag": 2, + "Arg": 6 + }, + "Perl6": { + "role": 10, + "q": 5, + "{": 29, + "token": 6, + "stopper": 2, + "MAIN": 1, + "quote": 1, + ")": 19, + "}": 27, + "backslash": 3, + "sym": 3, + "<\\\\>": 1, + "": 1, + "": 1, + "": 1, + "": 1, + ".": 1, + "method": 2, + "tweak_q": 1, + "(": 16, + "v": 2, + "self.panic": 2, + "tweak_qq": 1, + "qq": 5, + "does": 7, + "b1": 1, + "c1": 1, + "s1": 1, + "a1": 1, + "h1": 1, + "f1": 1, + "Too": 2, + "late": 2, + "for": 2, + "SHEBANG#!perl": 1, + "use": 1, + "v6": 1, + ";": 19, + "my": 10, + "string": 7, + "if": 1, + "eq": 1, + "say": 10, + "regex": 2, + "http": 1, + "-": 3, + "verb": 1, + "|": 9, + "#": 13, + "multi": 2, + "line": 5, + "comment": 2, + "I": 1, + "there": 1, + "m": 2, + "even": 1, + "specialer": 1, + "nesting": 1, + "work": 1, + "<": 3, + "trying": 1, + "mixed": 1, + "delimiters": 1, + "": 1, + "arbitrary": 2, + "delimiter": 2, + "Hooray": 1, + "": 1, + "with": 9, + "whitespace": 1, + "<<": 1, + "more": 1, + "strings": 1, + "%": 1, + "hash": 1, + "Hash.new": 1, + "begin": 1, + "pod": 1, + "Here": 1, + "t": 2, + "highlighted": 1, + "table": 1, + "Of": 1, + "things": 1, + "A": 3, + "single": 3, + "declarator": 7, + "a": 8, + "keyword": 7, + "like": 7, + "Another": 2, + "block": 2, + "brace": 1, + "More": 2, + "blocks": 2, + "don": 2, + "x": 2, + "foo": 3, + "Rob": 1, + "food": 1, + "match": 1, + "sub": 1, + "something": 1, + "Str": 1, + "D": 1, + "value": 1, + "...": 1, + "s": 1, + "some": 2, + "stuff": 1, + "chars": 1, + "/": 1, + "": 1, + "": 1, + "roleq": 1, + "pod_formatting_code": 1, + "": 1, + "<[A..Z]>": 1, + "*POD_IN_FORMATTINGCODE": 1, + "": 1, + "[": 1, + "": 1, + "N*": 1 + }, + "VHDL": { + "-": 2, + "VHDL": 1, + "example": 1, + "file": 1, + "library": 1, + "ieee": 1, + ";": 7, + "use": 1, + "ieee.std_logic_1164.all": 1, + "entity": 2, + "inverter": 2, + "is": 2, + "port": 1, + "(": 1, + "a": 2, + "in": 1, + "std_logic": 2, + "b": 2, + "out": 1, + ")": 1, + "end": 2, + "architecture": 2, + "rtl": 1, + "of": 1, + "begin": 1, + "<": 1, + "not": 1 + }, + "Literate CoffeeScript": { + "The": 2, + "**Scope**": 2, + "class": 2, + "regulates": 1, + "lexical": 1, + "scoping": 1, + "within": 2, + "CoffeeScript.": 1, + "As": 1, + "you": 2, + "generate": 1, + "code": 1, + "create": 1, + "a": 8, + "tree": 1, + "of": 4, + "scopes": 1, + "in": 2, + "the": 12, + "same": 1, + "shape": 1, + "as": 3, + "nested": 1, + "function": 2, + "bodies.": 1, + "Each": 1, + "scope": 2, + "knows": 1, + "about": 1, + "variables": 3, + "declared": 2, + "it": 4, + "and": 5, + "has": 1, + "reference": 3, + "to": 8, + "its": 3, + "parent": 2, + "enclosing": 1, + "scope.": 2, + "In": 1, + "this": 3, + "way": 1, + "we": 4, + "know": 1, + "which": 3, + "are": 3, + "new": 2, + "need": 2, + "be": 2, + "with": 3, + "var": 4, + "shared": 1, + "external": 1, + "scopes.": 1, + "Import": 1, + "helpers": 1, + "plan": 1, + "use.": 1, + "{": 4, + "extend": 1, + "last": 1, + "}": 4, + "require": 1, + "exports.Scope": 1, + "Scope": 1, + "root": 1, + "is": 3, + "top": 2, + "-": 5, + "level": 1, + "object": 1, + "for": 3, + "given": 1, + "file.": 1, + "@root": 1, + "null": 1, + "Initialize": 1, + "lookups": 1, + "up": 1, + "chain": 1, + "well": 1, + "**Block**": 1, + "node": 1, + "belongs": 2, + "where": 1, + "should": 1, + "declare": 1, + "that": 2, + "to.": 1, + "constructor": 1, + "(": 5, + "@parent": 2, + "@expressions": 1, + "@method": 1, + ")": 6, + "@variables": 3, + "[": 4, + "name": 8, + "type": 5, + "]": 4, + "@positions": 4, + "Scope.root": 1, + "unless": 1, + "Adds": 1, + "variable": 1, + "or": 1, + "overrides": 1, + "an": 1, + "existing": 1, + "one.": 1, + "add": 1, + "immediate": 3, + "return": 1, + "@parent.add": 1, + "if": 2, + "@shared": 1, + "not": 1, + "Object": 1, + "hasOwnProperty.call": 1, + ".type": 1, + "else": 2, + "@variables.push": 1, + "When": 1, + "super": 1, + "called": 1, + "find": 1, + "current": 1, + "method": 1, + "param": 1, + "_": 3, + "then": 1, + "tempVars": 1, + "realVars": 1, + ".push": 1, + "v.name": 1, + "realVars.sort": 1, + ".concat": 1, + "tempVars.sort": 1, + "Return": 1, + "list": 1, + "assignments": 1, + "supposed": 1, + "made": 1, + "at": 1, + "assignedVariables": 1, + "v": 1, + "when": 1, + "v.type.assigned": 1 + }, + "KRL": { + "ruleset": 1, + "sample": 1, + "{": 3, + "meta": 1, + "name": 1, + "description": 1, + "<<": 1, + "Hello": 1, + "world": 1, + "author": 1, + "}": 3, + "rule": 1, + "hello": 1, + "select": 1, + "when": 1, + "web": 1, + "pageview": 1, + "notify": 1, + "(": 1, + ")": 1, + ";": 1 + }, + "Nimrod": { + "echo": 1 + }, + "Pascal": { + "program": 1, + "gmail": 1, + ";": 6, + "uses": 1, + "Forms": 1, + "Unit2": 1, + "in": 1, + "{": 2, + "Form2": 2, + "}": 2, + "R": 1, + "*.res": 1, + "begin": 1, + "Application.Initialize": 1, + "Application.MainFormOnTaskbar": 1, + "True": 1, + "Application.CreateForm": 1, + "(": 1, + "TForm2": 1, + ")": 1, + "Application.Run": 1, + "end.": 1 + }, + "C#": { + "using": 5, + "System": 1, + ";": 8, + "System.Collections.Generic": 1, + "System.Linq": 1, + "System.Text": 1, + "System.Threading.Tasks": 1, + "namespace": 1, + "LittleSampleApp": 1, + "{": 5, + "///": 4, + "

": 1, + "Just": 1, + "what": 1, + "it": 2, + "says": 1, + "on": 1, + "the": 5, + "tin.": 1, + "A": 1, + "little": 1, + "sample": 1, + "application": 1, + "for": 4, + "Linguist": 1, + "to": 4, + "try": 1, + "out.": 1, + "": 1, + "class": 1, + "Program": 1, + "static": 1, + "void": 1, + "Main": 1, + "(": 3, + "string": 1, + "[": 1, + "]": 1, + "args": 1, + ")": 3, + "Console.WriteLine": 2, + "}": 5, + "@": 1, + "ViewBag.Title": 1, + "@section": 1, + "featured": 1, + "
": 1, + "class=": 7, + "
": 1, + "
": 1, + "

": 1, + "@ViewBag.Title.": 1, + "

": 1, + "

": 1, + "@ViewBag.Message": 1, + "

": 1, + "
": 1, + "

": 1, + "To": 1, + "learn": 1, + "more": 4, + "about": 2, + "ASP.NET": 5, + "MVC": 4, + "visit": 2, + "": 5, + "href=": 5, + "title=": 2, + "http": 1, + "//asp.net/mvc": 1, + "": 5, + ".": 2, + "The": 1, + "page": 1, + "features": 3, + "": 1, + "videos": 1, + "tutorials": 1, + "and": 6, + "samples": 1, + "": 1, + "help": 1, + "you": 4, + "get": 1, + "most": 1, + "from": 1, + "MVC.": 1, + "If": 1, + "have": 1, + "any": 1, + "questions": 1, + "our": 1, + "forums": 1, + "

": 1, + "
": 1, + "
": 1, + "

": 1, + "We": 1, + "suggest": 1, + "following": 1, + "

": 1, + "
    ": 1, + "
  1. ": 3, + "
    ": 3, + "Getting": 1, + "Started": 1, + "
    ": 3, + "gives": 2, + "a": 3, + "powerful": 1, + "patterns": 1, + "-": 3, + "based": 1, + "way": 1, + "build": 1, + "dynamic": 1, + "websites": 1, + "that": 5, + "enables": 1, + "clean": 1, + "separation": 1, + "of": 2, + "concerns": 1, + "full": 1, + "control": 1, + "over": 1, + "markup": 1, + "enjoyable": 1, + "agile": 1, + "development.": 1, + "includes": 1, + "many": 1, + "enable": 1, + "fast": 1, + "TDD": 1, + "friendly": 1, + "development": 1, + "creating": 1, + "sophisticated": 1, + "applications": 1, + "use": 1, + "latest": 1, + "web": 2, + "standards.": 1, + "Learn": 3, + "
  2. ": 3, + "Add": 1, + "NuGet": 2, + "packages": 1, + "jump": 1, + "start": 1, + "your": 2, + "coding": 1, + "makes": 1, + "easy": 1, + "install": 1, + "update": 1, + "free": 1, + "libraries": 1, + "tools.": 1, + "Find": 1, + "Web": 1, + "Hosting": 1, + "You": 1, + "can": 1, + "easily": 1, + "find": 1, + "hosting": 1, + "company": 1, + "offers": 1, + "right": 1, + "mix": 1, + "price": 1, + "applications.": 1, + "
": 1 + }, + "Groovy Server Pages": { + "<%@>": 1, + "page": 2, + "contentType=": 1, + "": 4, + "": 4, + "": 4, + "Using": 1, + "directive": 1, + "tag": 1, + "": 4, + "": 4, + "": 4, + "": 2, + "Print": 1, + "": 4, + "": 4, + "": 4, + "http": 3, + "equiv=": 3, + "content=": 4, + "Testing": 3, + "with": 3, + "Resources": 2, + "": 2, + "module=": 2, + "SiteMesh": 2, + "and": 2, + "name=": 1, + "{": 1, + "example": 1, + "}": 1 + }, + "GAMS": { + "*Basic": 1, + "example": 2, + "of": 7, + "transport": 5, + "model": 6, + "from": 2, + "GAMS": 5, + "library": 3, + "Title": 1, + "A": 3, + "Transportation": 1, + "Problem": 1, + "(": 22, + "TRNSPORT": 1, + "SEQ": 1, + ")": 22, + "Ontext": 1, + "This": 2, + "problem": 1, + "finds": 1, + "a": 3, + "least": 1, + "cost": 4, + "shipping": 1, + "schedule": 1, + "that": 1, + "meets": 1, + "requirements": 1, + "at": 5, + "markets": 2, + "and": 2, + "supplies": 1, + "factories.": 1, + "Dantzig": 1, + "G": 1, + "B": 1, + "Chapter": 2, + "In": 2, + "Linear": 1, + "Programming": 1, + "Extensions.": 1, + "Princeton": 2, + "University": 1, + "Press": 2, + "New": 1, + "Jersey": 1, + "formulation": 1, + "is": 1, + "described": 1, + "in": 10, + "detail": 1, + "Rosenthal": 1, + "R": 1, + "E": 1, + "Tutorial.": 1, + "User": 1, + "s": 1, + "Guide.": 1, + "The": 2, + "Scientific": 1, + "Redwood": 1, + "City": 1, + "California": 1, + "line": 1, + "numbers": 1, + "will": 1, + "not": 1, + "match": 1, + "those": 1, + "the": 1, + "book": 1, + "because": 1, + "these": 1, + "comments.": 1, + "Offtext": 1, + "Sets": 1, + "i": 18, + "canning": 1, + "plants": 1, + "/": 9, + "seattle": 3, + "san": 3, + "-": 6, + "diego": 3, + "j": 18, + "new": 3, + "york": 3, + "chicago": 3, + "topeka": 3, + ";": 15, + "Parameters": 1, + "capacity": 1, + "plant": 2, + "cases": 3, + "b": 2, + "demand": 4, + "market": 2, + "Table": 1, + "d": 2, + "distance": 1, + "thousands": 3, + "miles": 2, + "Scalar": 1, + "f": 2, + "freight": 1, + "dollars": 3, + "per": 3, + "case": 2, + "thousand": 1, + "/90/": 1, + "Parameter": 1, + "c": 3, + "*": 1, + "Variables": 1, + "x": 4, + "shipment": 1, + "quantities": 1, + "z": 3, + "total": 1, + "transportation": 1, + "costs": 1, + "Positive": 1, + "Variable": 1, + "Equations": 1, + "define": 1, + "objective": 1, + "function": 1, + "supply": 3, + "observe": 1, + "limit": 1, + "satisfy": 1, + "..": 3, + "e": 1, + "sum": 3, + "*x": 1, + "l": 1, + "g": 1, + "Model": 1, + "/all/": 1, + "Solve": 1, + "using": 1, + "lp": 1, + "minimizing": 1, + "Display": 1, + "x.l": 1, + "x.m": 1, + "ontext": 1, + "#user": 1, + "stuff": 1, + "Main": 1, + "topic": 1, + "Basic": 2, + "Featured": 4, + "item": 4, + "Trnsport": 1, + "Description": 1, + "offtext": 1 + }, + "COBOL": { + "IDENTIFICATION": 2, + "DIVISION.": 4, + "PROGRAM": 2, + "-": 19, + "ID.": 2, + "hello.": 3, + "PROCEDURE": 2, + "DISPLAY": 2, + ".": 3, + "STOP": 2, + "RUN.": 2, + "COBOL": 7, + "TEST": 2, + "RECORD.": 1, + "USAGES.": 1, + "COMP": 5, + "PIC": 5, + "S9": 4, + "(": 5, + ")": 5, + "COMP.": 3, + "COMP2": 2, + "program": 1, + "id.": 1, + "procedure": 1, + "division.": 1, + "display": 1, + "stop": 1, + "run.": 1 + }, + "Cuda": { + "__global__": 2, + "void": 3, + "scalarProdGPU": 1, + "(": 20, + "float": 8, + "*d_C": 1, + "*d_A": 1, + "*d_B": 1, + "int": 14, + "vectorN": 2, + "elementN": 3, + ")": 20, + "{": 8, + "//Accumulators": 1, + "cache": 1, + "__shared__": 1, + "accumResult": 5, + "[": 11, + "ACCUM_N": 4, + "]": 11, + ";": 30, + "////////////////////////////////////////////////////////////////////////////": 2, + "for": 5, + "vec": 5, + "blockIdx.x": 2, + "<": 5, + "+": 12, + "gridDim.x": 1, + "vectorBase": 3, + "IMUL": 1, + "vectorEnd": 2, + "////////////////////////////////////////////////////////////////////////": 4, + "iAccum": 10, + "threadIdx.x": 4, + "blockDim.x": 3, + "sum": 3, + "pos": 5, + "d_A": 2, + "*": 2, + "d_B": 2, + "}": 8, + "stride": 5, + "/": 2, + "__syncthreads": 1, + "if": 3, + "d_C": 2, + "#include": 2, + "": 1, + "": 1, + "vectorAdd": 2, + "const": 2, + "*A": 1, + "*B": 1, + "*C": 1, + "numElements": 4, + "i": 5, + "C": 1, + "A": 1, + "B": 1, + "main": 1, + "cudaError_t": 1, + "err": 5, + "cudaSuccess": 2, + "threadsPerBlock": 4, + "blocksPerGrid": 1, + "-": 1, + "<<": 1, + "": 1, + "cudaGetLastError": 1, + "fprintf": 1, + "stderr": 1, + "cudaGetErrorString": 1, + "exit": 1, + "EXIT_FAILURE": 1, + "cudaDeviceReset": 1, + "return": 1 + }, + "Gosu": { + "function": 11, + "hello": 1, + "(": 53, + ")": 54, + "{": 28, + "print": 3, + "}": 28, + "<%!-->": 1, + "defined": 1, + "in": 3, + "Hello": 2, + "gst": 1, + "<": 1, + "%": 2, + "@": 1, + "params": 1, + "users": 2, + "Collection": 1, + "": 1, + "<%>": 2, + "for": 2, + "user": 1, + "user.LastName": 1, + "user.FirstName": 1, + "user.Department": 1, + "package": 2, + "example": 2, + "uses": 2, + "java.util.*": 1, + "java.io.File": 1, + "class": 1, + "Person": 7, + "extends": 1, + "Contact": 1, + "implements": 1, + "IEmailable": 2, + "var": 10, + "_name": 4, + "String": 6, + "_age": 3, + "Integer": 3, + "as": 3, + "Age": 1, + "_relationship": 2, + "Relationship": 3, + "readonly": 1, + "RelationshipOfPerson": 1, + "delegate": 1, + "_emailHelper": 2, + "represents": 1, + "enum": 1, + "FRIEND": 1, + "FAMILY": 1, + "BUSINESS_CONTACT": 1, + "static": 7, + "ALL_PEOPLE": 2, + "new": 6, + "HashMap": 1, + "": 1, + "construct": 1, + "name": 4, + "age": 4, + "relationship": 2, + "EmailHelper": 1, + "this": 1, + "property": 2, + "get": 1, + "Name": 3, + "return": 4, + "set": 1, + "override": 1, + "getEmailName": 1, + "incrementAge": 1, + "+": 2, + "@Deprecated": 1, + "printPersonInfo": 1, + "addPerson": 4, + "p": 5, + "if": 4, + "ALL_PEOPLE.containsKey": 2, + ".Name": 1, + "throw": 1, + "IllegalArgumentException": 1, + "[": 4, + "p.Name": 2, + "]": 4, + "addAllPeople": 1, + "contacts": 2, + "List": 1, + "": 1, + "contact": 3, + "typeis": 1, + "and": 1, + "not": 1, + "contact.Name": 1, + "getAllPeopleOlderThanNOrderedByName": 1, + "int": 2, + "allPeople": 1, + "ALL_PEOPLE.Values": 3, + "allPeople.where": 1, + "-": 3, + "p.Age": 1, + ".orderBy": 1, + "loadPersonFromDB": 1, + "id": 1, + "using": 2, + "conn": 1, + "DBConnectionManager.getConnection": 1, + "stmt": 1, + "conn.prepareStatement": 1, + "stmt.setInt": 1, + "result": 1, + "stmt.executeQuery": 1, + "result.next": 1, + "result.getString": 2, + "result.getInt": 1, + "Relationship.valueOf": 2, + "loadFromFile": 1, + "file": 3, + "File": 2, + "file.eachLine": 1, + "line": 1, + "line.HasContent": 1, + "line.toPerson": 1, + "saveToFile": 1, + "writer": 2, + "FileWriter": 1, + "PersonCSVTemplate.renderToString": 1, + "PersonCSVTemplate.render": 1, + "enhancement": 1, + "toPerson": 1, + "vals": 4, + "this.split": 1 + }, + "Prolog": { + "-": 52, + "lib": 1, + "(": 49, + "ic": 1, + ")": 49, + ".": 25, + "vabs": 2, + "Val": 8, + "AbsVal": 10, + "#": 9, + ";": 1, + "labeling": 2, + "[": 21, + "]": 21, + "vabsIC": 1, + "or": 1, + "faitListe": 3, + "_": 2, + "First": 2, + "|": 12, + "Rest": 6, + "Taille": 2, + "Min": 2, + "Max": 2, + "Min..Max": 1, + "Taille1": 2, + "suite": 3, + "Xi": 5, + "Xi1": 7, + "Xi2": 7, + "checkRelation": 3, + "VabsXi1": 2, + "Xi.": 1, + "checkPeriode": 3, + "ListVar": 2, + "length": 1, + "Length": 2, + "<": 1, + "X1": 2, + "X2": 2, + "X3": 2, + "X4": 2, + "X5": 2, + "X6": 2, + "X7": 2, + "X8": 2, + "X9": 2, + "X10": 3, + "turing": 1, + "Tape0": 2, + "Tape": 2, + "perform": 4, + "q0": 1, + "Ls": 12, + "Rs": 16, + "reverse": 1, + "Ls1": 4, + "append": 1, + "qf": 1, + "Q0": 2, + "Ls0": 6, + "Rs0": 6, + "symbol": 3, + "Sym": 6, + "RsRest": 2, + "once": 1, + "rule": 1, + "Q1": 2, + "NewSym": 2, + "Action": 2, + "action": 4, + "Rs1": 2, + "b": 2, + "left": 4, + "stay": 1, + "right": 1, + "L": 2, + "male": 3, + "john": 2, + "peter": 3, + "female": 2, + "vick": 2, + "christie": 3, + "parents": 4, + "brother": 1, + "X": 3, + "Y": 2, + "F": 2, + "M": 2 + }, + "Tcl": { + "#": 7, + "package": 2, + "require": 2, + "Tcl": 2, + "namespace": 6, + "eval": 2, + "stream": 61, + "{": 148, + "export": 3, + "[": 76, + "a": 1, + "-": 5, + "z": 1, + "]": 76, + "*": 19, + "}": 148, + "ensemble": 1, + "create": 7, + "proc": 28, + "first": 24, + "restCmdPrefix": 2, + "return": 22, + "list": 18, + "lassign": 11, + "foldl": 1, + "cmdPrefix": 19, + "initialValue": 7, + "args": 13, + "set": 34, + "numStreams": 3, + "llength": 5, + "if": 14, + "FoldlSingleStream": 2, + "lindex": 5, + "elseif": 3, + "FoldlMultiStream": 2, + "else": 5, + "Usage": 4, + "foreach": 5, + "numArgs": 7, + "varName": 7, + "body": 8, + "ForeachSingleStream": 2, + "(": 11, + ")": 11, + "&&": 2, + "%": 1, + "end": 2, + "items": 5, + "lrange": 1, + "ForeachMultiStream": 2, + "fromList": 2, + "_list": 4, + "index": 4, + "expr": 4, + "+": 1, + "isEmpty": 10, + "map": 1, + "MapSingleStream": 3, + "MapMultiStream": 3, + "rest": 22, + "select": 2, + "while": 6, + "take": 2, + "num": 3, + "||": 1, + "<": 1, + "toList": 1, + "res": 10, + "lappend": 8, + "#################################": 2, + "acc": 9, + "streams": 5, + "firsts": 6, + "restStreams": 6, + "uplevel": 4, + "nextItems": 4, + "msg": 1, + "code": 1, + "error": 1, + "level": 1, + "XDG": 11, + "variable": 4, + "DEFAULTS": 8, + "DATA_HOME": 4, + "CONFIG_HOME": 4, + "CACHE_HOME": 4, + "RUNTIME_DIR": 3, + "DATA_DIRS": 4, + "CONFIG_DIRS": 4, + "SetDefaults": 3, + "ne": 2, + "file": 9, + "join": 9, + "env": 8, + "HOME": 3, + ".local": 1, + "share": 3, + ".config": 1, + ".cache": 1, + "/usr": 2, + "local": 1, + "/etc": 1, + "xdg": 1, + "XDGVarSet": 4, + "var": 11, + "info": 1, + "exists": 1, + "XDG_": 4, + "Dir": 4, + "subdir": 16, + "dir": 5, + "dict": 2, + "get": 2, + "Dirs": 3, + "rawDirs": 3, + "split": 1, + "outDirs": 3, + "XDG_RUNTIME_DIR": 1 + }, + "Squirrel": { + "//example": 1, + "from": 1, + "http": 1, + "//www.squirrel": 1, + "-": 1, + "lang.org/#documentation": 1, + "local": 3, + "table": 1, + "{": 10, + "a": 2, + "subtable": 1, + "array": 3, + "[": 3, + "]": 3, + "}": 10, + "+": 2, + "b": 1, + ";": 15, + "foreach": 1, + "(": 10, + "i": 1, + "val": 2, + "in": 1, + ")": 10, + "print": 2, + "typeof": 1, + "/////////////////////////////////////////////": 1, + "class": 2, + "Entity": 3, + "constructor": 2, + "etype": 2, + "entityname": 4, + "name": 2, + "type": 2, + "x": 2, + "y": 2, + "z": 2, + "null": 2, + "function": 2, + "MoveTo": 1, + "newx": 2, + "newy": 2, + "newz": 2, + "Player": 2, + "extends": 1, + "base.constructor": 1, + "DoDomething": 1, + "newplayer": 1, + "newplayer.MoveTo": 1 + }, + "YAML": { + "-": 25, + "http_interactions": 1, + "request": 1, + "method": 1, + "get": 1, + "uri": 1, + "http": 1, + "//example.com/": 1, + "body": 3, + "headers": 2, + "{": 1, + "}": 1, + "response": 2, + "status": 1, + "code": 1, + "message": 1, + "OK": 1, + "Content": 2, + "Type": 1, + "text/html": 1, + ";": 1, + "charset": 1, + "utf": 1, + "Length": 1, + "This": 1, + "is": 1, + "the": 1, + "http_version": 1, + "recorded_at": 1, + "Tue": 1, + "Nov": 1, + "GMT": 1, + "recorded_with": 1, + "VCR": 1, + "gem": 1, + "local": 1, + "gen": 1, + "rdoc": 2, + "run": 1, + "tests": 1, + "inline": 1, + "source": 1, + "line": 1, + "numbers": 1, + "gempath": 1, + "/usr/local/rubygems": 1, + "/home/gavin/.rubygems": 1 + }, + "Clojure": { + "(": 83, + "defprotocol": 1, + "ISound": 4, + "sound": 5, + "[": 41, + "]": 41, + ")": 84, + "deftype": 2, + "Cat": 1, + "_": 3, + "Dog": 1, + "extend": 1, + "-": 14, + "type": 2, + "default": 1, + ";": 8, + "clj": 1, + "ns": 2, + "c2.svg": 2, + "use": 2, + "c2.core": 2, + "only": 4, + "unify": 2, + "c2.maths": 2, + "Pi": 2, + "Tau": 2, + "radians": 2, + "per": 2, + "degree": 2, + "sin": 2, + "cos": 2, + "mean": 2, + "cljs": 3, + "require": 1, + "c2.dom": 1, + "as": 1, + "dom": 1, + "Stub": 1, + "for": 2, + "float": 2, + "fn": 2, + "which": 1, + "does": 1, + "not": 3, + "exist": 1, + "on": 1, + "runtime": 1, + "def": 1, + "identity": 1, + "defn": 4, + "xy": 1, + "coordinates": 7, + "cond": 1, + "and": 1, + "vector": 1, + "count": 3, + "map": 2, + "x": 6, + "y": 1, + "into": 2, + "array": 3, + "aseq": 8, + "nil": 1, + "let": 1, + "n": 9, + "a": 3, + "make": 1, + "loop": 1, + "seq": 1, + "i": 4, + "if": 1, + "<": 1, + "do": 1, + "aset": 1, + "first": 2, + "recur": 1, + "next": 1, + "inc": 1, + "prime": 2, + "any": 1, + "zero": 1, + "#": 1, + "rem": 2, + "%": 1, + "range": 3, + "while": 3, + "stops": 1, + "at": 1, + "the": 1, + "collection": 1, + "element": 1, + "that": 1, + "evaluates": 1, + "to": 1, + "false": 2, + "like": 1, + "take": 1, + "rand": 2, + "scm*": 1, + "random": 1, + "real": 1, + "html": 1, + "head": 1, + "meta": 1, + "{": 8, + "charset": 1, + "}": 8, + "link": 1, + "rel": 1, + "href": 1, + "script": 1, + "src": 1, + "body": 1, + "div.nav": 1, + "p": 1, + "deftest": 1, + "function": 1, + "tests": 1, + "is": 7, + "true": 2, + "contains": 1, + "foo": 6, + "bar": 4, + "select": 1, + "keys": 2, + "baz": 4, + "vals": 1, + "filter": 1 + }, + "Tea": { + "<%>": 1, + "template": 1, + "foo": 1 + }, + "VimL": { + "set": 7, + "nocompatible": 1, + "ignorecase": 1, + "incsearch": 1, + "smartcase": 1, + "showmatch": 1, + "showcmd": 1, + "syntax": 1, + "on": 1, + "no": 1, + "toolbar": 1, + "guioptions": 1, + "-": 1, + "T": 1 + }, + "M": { + ";": 1309, + "GT.M": 30, + "Digest": 2, + "Extension": 9, + "Copyright": 12, + "(": 2144, + "C": 9, + ")": 2152, + "Piotr": 7, + "Koper": 7, + "": 7, + "This": 26, + "program": 19, + "is": 88, + "free": 15, + "software": 12, + "you": 17, + "can": 20, + "redistribute": 11, + "it": 45, + "and/or": 11, + "modify": 11, + "under": 14, + "the": 223, + "terms": 11, + "of": 84, + "GNU": 33, + "Affero": 33, + "General": 33, + "Public": 33, + "License": 48, + "as": 23, + "published": 11, + "by": 35, + "Free": 11, + "Software": 11, + "Foundation": 11, + "either": 13, + "version": 16, + "or": 50, + "at": 21, + "your": 16, + "option": 12, + "any": 16, + "later": 11, + "version.": 11, + "distributed": 13, + "in": 80, + "hope": 11, + "that": 19, + "will": 23, + "be": 35, + "useful": 11, + "but": 19, + "WITHOUT": 12, + "ANY": 12, + "WARRANTY": 11, + "without": 11, + "even": 12, + "implied": 11, + "warranty": 11, + "MERCHANTABILITY": 11, + "FITNESS": 11, + "FOR": 15, + "A": 12, + "PARTICULAR": 11, + "PURPOSE.": 11, + "See": 15, + "for": 77, + "more": 13, + "details.": 12, + "You": 13, + "should": 16, + "have": 21, + "received": 11, + "a": 130, + "copy": 13, + "along": 11, + "with": 45, + "this": 39, + "program.": 9, + "If": 14, + "not": 39, + "see": 26, + "": 11, + ".": 815, + "trademark": 2, + "Fidelity": 2, + "Information": 2, + "Services": 2, + "Inc.": 2, + "-": 1605, + "http": 13, + "//sourceforge.net/projects/fis": 2, + "gtm/": 2, + "simple": 2, + "OpenSSL": 3, + "based": 1, + "digest": 19, + "extension": 3, + "rewrite": 1, + "EVP_DigestInit": 1, + "usage": 3, + "example": 5, + "additional": 5, + "M": 24, + "wrapper.": 1, + "//www.openssl.org/docs/crypto/EVP_DigestInit.html": 1, + "The": 11, + "return": 7, + "value": 72, + "from": 16, + "&": 28, + "digest.init": 3, + "usually": 1, + "when": 11, + "an": 14, + "invalid": 4, + "algorithm": 1, + "was": 5, + "specification.": 1, + "Anyway": 1, + "properly": 1, + "used": 6, + "never": 4, + "fail.": 1, + "Please": 2, + "feel": 2, + "to": 74, + "contact": 2, + "me": 2, + "if": 44, + "questions": 2, + "comments": 5, + "m": 37, + "returns": 7, + "ASCII": 2, + "HEX": 1, + "all": 8, + "one": 5, + "n": 197, + "c": 113, + "d": 381, + "s": 775, + "digest.update": 2, + ".c": 2, + ".m": 11, + "digest.final": 2, + ".d": 1, + "q": 244, + "init": 6, + "alg": 3, + "context": 1, + "handler": 9, + "try": 1, + "etc": 1, + "returned": 1, + "error": 62, + "occurs": 1, + "e.g.": 2, + "unknown": 1, + "update": 1, + "ctx": 4, + "msg": 6, + "updates": 1, + "message": 8, + ".ctx": 2, + ".msg": 1, + "final": 1, + "hex": 1, + "encoded": 8, + "frees": 1, + "memory": 1, + "allocated": 1, + "also": 4, + ".digest": 1, + "algorithms": 1, + "availability": 1, + "depends": 1, + "on": 17, + "libcrypto": 1, + "configuration": 1, + "md4": 1, + "md5": 2, + "sha": 1, + "sha1": 1, + "sha224": 1, + "sha256": 1, + "sha512": 1, + "dss1": 1, + "ripemd160": 1, + "code": 29, + "examples": 4, + "contrasting": 1, + "postconditionals": 1, + "IF": 9, + "commands": 1, + "post1": 1, + "postconditional": 3, + "set": 98, + "command": 11, + "b": 64, + "I": 43, + "purposely": 4, + "TEST": 16, + "false": 5, + "write": 59, + "<": 20, + "quit": 30, + "post2": 1, + "": 3, + "variable": 8, + "a=": 3, + "smaller": 3, + "than": 4, + "b=": 4, + "special": 2, + "after": 3, + "post": 1, + "condition": 1, + "if1": 2, + "if2": 2, + "start": 26, + "exercise": 1, + "car": 14, + "@": 8, + "part": 3, + "Keith": 1, + "Lynch": 1, + "p#f": 1, + "w": 127, + "p": 84, + "x": 96, + "+": 189, + "*8": 2, + "ZDIOUT1": 1, + "Experimental": 1, + "FileMan": 1, + "file": 10, + "output": 49, + "host": 2, + "Open": 1, + "Source": 1, + "Electronic": 1, + "Health": 1, + "Record": 1, + "Agent": 1, + "Licensed": 1, + "Apache": 1, + "Version": 1, + "may": 3, + "use": 5, + "except": 1, + "compliance": 1, + "License.": 2, + "obtain": 2, + "//www.apache.org/licenses/LICENSE": 1, + "Unless": 1, + "required": 4, + "applicable": 1, + "law": 1, + "agreed": 1, + "writing": 4, + "BASIS": 1, + "WARRANTIES": 1, + "OR": 2, + "CONDITIONS": 1, + "OF": 2, + "KIND": 1, + "express": 1, + "implied.": 1, + "specific": 3, + "language": 6, + "governing": 1, + "permissions": 2, + "and": 59, + "limitations": 1, + "N": 19, + "W": 4, + "D": 64, + "ASKFILE": 1, + "Q": 58, + "FILE": 5, + "[": 54, + "ASKDIR": 1, + "DIR": 3, + "SAVEFILE": 2, + "Save": 1, + "given": 1, + "directory": 1, + "CHECK": 1, + "FGR": 4, + "_FILE": 1, + "S": 99, + "IO": 4, + "DIR_": 1, + "P": 68, + "E": 12, + "L": 1, + "_": 127, + "FILENAME": 1, + "O": 24, + "U": 14, + "_IO_": 1, + "_P_": 1, + "NM": 1, + "contains": 2, + "non": 1, + "printing": 1, + "characters": 8, + "then": 2, + "must": 8, + "escaped": 1, + "evaluation": 1, + "RHS": 1, + "SET.": 1, + "TODO": 1, + "Caller": 1, + "define": 2, + "indentation": 1, + "level": 5, + "comment": 4, + "first": 10, + "character": 5, + "tab": 1, + "space.": 1, + "V": 2, + "%": 207, + "zewdDemo": 1, + "Tutorial": 1, + "page": 12, + "functions": 4, + "Product": 2, + "Enterprise": 5, + "Web": 5, + "Developer": 5, + "Build": 6, + "Date": 2, + "Wed": 1, + "Apr": 1, + "|": 171, + "m_apache": 3, + "M/Gateway": 4, + "Developments": 4, + "Ltd": 4, + "Reigate": 4, + "Surrey": 4, + "UK.": 4, + "All": 4, + "rights": 4, + "reserved.": 4, + "//www.mgateway.com": 4, + "Email": 4, + "rtweed@mgateway.com": 4, + "getLanguage": 1, + "sessid": 146, + "getRequestValue": 1, + "zewdAPI": 52, + "setSessionValue": 6, + "QUIT": 251, + "login": 1, + "username": 8, + "password": 8, + "getTextValue": 4, + "getPasswordValue": 2, + "trace": 24, + "_username_": 1, + "_password": 1, + "i": 465, + "logine": 1, + "textid": 1, + "errorMessage": 1, + "ewdDemo": 8, + "clearList": 2, + "appendToList": 4, + "user": 27, + "f": 93, + "o": 51, + "addUsername": 1, + "newUsername": 5, + "newUsername_": 1, + "setTextValue": 4, + "testValue": 1, + "pass": 24, + "getSelectValue": 3, + "_user": 1, + "getPassword": 1, + "g": 228, + "setPassword": 1, + "getObjDetails": 1, + "data": 43, + "_user_": 1, + "_data": 2, + "setRadioOn": 2, + "initialiseCheckbox": 2, + "setCheckboxOn": 3, + "createLanguageList": 1, + "setMultipleSelectOn": 2, + "clearTextArea": 2, + "textarea": 2, + "createTextArea": 1, + ".textarea": 1, + "userType": 4, + "selected": 4, + "setMultipleSelectValues": 1, + ".selected": 1, + "testField3": 3, + ".value": 1, + "testField2": 1, + "field3": 1, + "null": 6, + "dateTime": 1, + "compute": 2, + "miles": 4, + "gallons": 4, + "miles/gallons": 1, + "computepesimist": 1, + "miles/": 1, + "computeoptimist": 1, + "/gallons": 1, + "PRCAAPR": 1, + "WASH": 1, + "ISC@ALTOONA": 1, + "PA/RGY": 1, + "PATIENT": 5, + "ACCOUNT": 1, + "PROFILE": 1, + "CONT": 1, + "/9/94": 1, + "AM": 1, + "Accounts": 1, + "Receivable": 1, + "**198": 1, + "**": 4, + "Mar": 1, + "Per": 1, + "VHA": 1, + "Directive": 1, + "routine": 6, + "modified.": 1, + "EN": 2, + "PRCATY": 2, + "NEW": 3, + "DIC": 6, + "X": 19, + "Y": 26, + "DEBT": 10, + "PRCADB": 5, + "DA": 4, + "PRCA": 14, + "COUNT": 2, + "OUT": 2, + "SEL": 1, + "BILL": 11, + "BAT": 8, + "TRAN": 5, + "DR": 4, + "DXS": 1, + "DTOUT": 2, + "DIROUT": 1, + "DIRUT": 1, + "DUOUT": 1, + "ASK": 3, + "DPTNOFZY": 2, + "DPTNOFZK": 2, + "K": 5, + "R": 2, + "DTIME": 1, + "G": 40, + "UPPER": 1, + "VALM1": 1, + "RCD": 1, + "DISV": 2, + "DUZ": 3, + "NAM": 1, + "RCFN01": 1, + "COMP": 2, + "EN1": 1, + "PRCAATR": 1, + "Y_": 3, + "PRCADB_": 1, + "HDR": 1, + "PRCAAPR1": 3, + "HDR2": 1, + "DIS": 1, + "STAT1": 2, + "F": 10, + "_PRCATY_": 1, + "COMP1": 2, + "RCY": 5, + "]": 15, + "COMP2": 2, + "STAT": 8, + "_STAT_": 1, + "TMP": 26, + "J": 38, + "_STAT": 1, + "Compile": 2, + "payments": 1, + "_TRAN": 1, + "zmwire": 53, + "M/Wire": 4, + "Protocol": 2, + "Systems": 1, + "eg": 3, + "Cache": 3, + "By": 1, + "default": 6, + "server": 1, + "runs": 2, + "port": 4, + "For": 3, + "systems": 3, + "invoked": 2, + "via": 2, + "xinetd": 2, + "Edit": 1, + "/etc/services": 1, + "add": 5, + "line": 14, + "mwire": 2, + "/tcp": 1, + "#": 1, + "Service": 1, + "Copy": 2, + "/etc/xinetd.d/mwire": 1, + "/usr/local/gtm/zmwire": 1, + "change": 6, + "its": 1, + "executable": 1, + "These": 2, + "files": 4, + "edited": 1, + "paths": 2, + "number": 5, + "Restart": 1, + "using": 4, + "sudo": 1, + "/etc/init.d/xinetd": 1, + "restart": 3, + "On": 1, + "installed": 1, + "MGWSI": 1, + "order": 11, + "provide": 1, + "MD5": 6, + "hashing": 1, + "function": 6, + "passwords": 1, + "Alternatively": 1, + "substitute": 1, + "callout": 1, + "choice": 1, + "Daemon": 2, + "which": 4, + "running": 1, + "jobbed": 1, + "process": 3, + "job": 1, + "zmwireDaemon": 2, + "simply": 1, + "editing": 2, + "Stop": 1, + "RESJOB": 1, + "it.": 2, + "mwireVersion": 4, + "mwireDate": 2, + "July": 1, + "t": 12, + "_crlf": 22, + "build": 2, + "crlf": 6, + "response": 29, + "zewd": 17, + "_response_": 4, + "l": 84, + "_crlf_response_crlf": 4, + "zv": 6, + "authNeeded": 6, + "input": 41, + "cleardown": 2, + "zint": 1, + "j": 67, + "role": 3, + "loop": 7, + "e": 210, + "log": 1, + "halt": 3, + "auth": 2, + "k": 122, + "ignore": 12, + "pid": 36, + "monitor": 1, + "input_crlf": 1, + "lineNo": 19, + "zsy": 2, + "_pid_": 1, + "_pid": 1, + "monitoroutput": 1, + "logger": 17, + "initialise": 3, + "tot": 2, + "count": 18, + "mwireLogger": 3, + "increment": 11, + "info": 1, + "response_": 1, + "_count": 1, + "setpassword": 1, + "SETPASSWORD": 2, + "secret": 2, + "OK": 6, + "": 1, + "role=": 1, + "admin": 1, + "newrole": 4, + "getGloRef": 3, + "gloName": 1, + "gloRef": 15, + "nb": 2, + "subs": 8, + "len": 8, + "nsp": 1, + "subs_": 2, + "quot": 2, + "_data_": 3, + "subscripts": 8, + "_value_": 1, + "_error_": 1, + "ok": 14, + "kill": 3, + "xx": 16, + "yy": 19, + "No": 17, + "access": 21, + "allowed": 18, + "global": 26, + "method": 2, + "Missing": 5, + "JSON": 7, + "transaction": 6, + "document": 6, + "step": 8, + "setJSON": 4, + "json": 9, + "globalName": 7, + "GlobalName": 3, + "Global": 8, + "name": 121, + "setGlobal": 1, + "zmwire_null_value": 1, + "Invalid": 1, + "props": 1, + "arr": 2, + "getJSON": 2, + "incr": 1, + "incrbr": 1, + "class": 1, + "##": 2, + "decr": 1, + "decrby": 1, + "subscript": 7, + "direction": 1, + "{": 5, + "subscriptValue": 1, + "dataStatus": 1, + "dataValue": 1, + "}": 5, + "nextsubscript": 2, + "reverseorder": 1, + "query": 4, + "p2": 10, + "*2": 1, + "queryget": 1, + "xxyy": 2, + "zz": 2, + "numeric": 8, + "exists": 6, + "getallsubscripts": 1, + "*": 6, + "orderall": 1, + "": 3, + "note": 2, + "escaping": 1, + "world": 4, + "foo": 2, + "CacheTempEWD": 16, + "_gloRef": 1, + "zt": 20, + "@x": 4, + "i*2": 3, + "_crlf_": 1, + "j_": 1, + "params": 10, + "resp": 5, + "_crlf_resp_crlf": 2, + "_crlf_data_crlf": 2, + "mergeto": 1, + "dataLength": 4, + "key": 22, + "keyLength": 6, + "noOfRecs": 6, + "MERGETO": 1, + "myglobal": 1, + "*6": 1, + "hello": 1, + "": 2, + "length": 7, + "means": 2, + "no": 54, + "put": 1, + "top": 1, + "r": 88, + "N.N": 12, + "noOfRecs#2": 1, + "noOfRecs/2": 1, + "_i_": 5, + "gloRef1": 2, + "gloRef1_": 2, + "_gloRef1_key_": 1, + "sub": 2, + "literal": 2, + "true": 2, + "boolean": 2, + "valquot_value_valquot": 1, + "json_value_": 1, + "subscripts1": 2, + "dd": 4, + "subx": 3, + "subNo": 1, + "numsub": 1, + "json_": 2, + "removeControlChars": 2, + "zobj1": 1, + "buff": 10, + "parseJSONObject": 2, + ".buff": 2, + "subs2": 6, + "stop": 20, + "_name_": 1, + "subs2_": 2, + "value_c": 1, + "lc": 3, + "N.N1": 4, + "string": 50, + "newString": 4, + "newString_c": 1, + "utfConvert": 1, + "Unescape": 1, + "UTF": 17, + "buf": 4, + "c1": 4, + "buf_c1_": 1, + "tr": 13, + "Comment": 1, + "block": 1, + "always": 2, + "semicolon": 1, + "next": 1, + "while": 4, + "legal": 1, + "blank": 1, + "whitespace": 2, + "alone": 1, + "valid": 2, + "Comments": 1, + "graphic": 3, + "such": 1, + "@#": 1, + "/": 3, + "space": 1, + "considered": 1, + "though": 1, + "whose": 1, + "above": 3, + "below": 1, + "are": 14, + "NOT": 2, + "routine.": 1, + "multiple": 1, + "semicolons": 1, + "okay": 1, + "has": 7, + "tag": 2, + "bug": 2, + "does": 1, + "Tag1": 1, + "Tags": 2, + "uppercase": 2, + "lowercase": 1, + "alphabetic": 2, + "series": 2, + "HELO": 1, + "most": 1, + "common": 1, + "label": 5, + "LABEL": 1, + "followed": 1, + "directly": 1, + "open": 1, + "parenthesis": 2, + "formal": 1, + "list": 1, + "variables": 3, + "close": 1, + "ANOTHER": 1, + "Normally": 1, + "subroutine": 1, + "would": 2, + "ended": 1, + "we": 1, + "taking": 1, + "advantage": 1, + "rule": 1, + "END": 1, + "implicit": 1, + "PCRE": 23, + "tries": 1, + "deliver": 1, + "best": 2, + "possible": 5, + "interface": 1, + "providing": 1, + "support": 3, + "arrays": 1, + "stringified": 2, + "parameter": 1, + "names": 3, + "simplified": 1, + "API": 7, + "locales": 2, + "exceptions": 1, + "Perl5": 1, + "Match.": 1, + "pcreexamples.m": 2, + "comprehensive": 1, + "pcre": 59, + "routines": 6, + "beginner": 1, + "tips": 1, + "match": 41, + "limits": 6, + "exception": 12, + "handling": 2, + "GT.M.": 1, + "Try": 2, + "out": 2, + "known": 2, + "book": 1, + "regular": 1, + "expressions": 1, + "//regex.info/": 1, + "information": 1, + "//pcre.org/": 1, + "Initial": 2, + "release": 2, + "pkoper": 2, + "pcre.version": 1, + "config": 3, + "case": 7, + "insensitive": 7, + "protect": 11, + "erropt": 6, + "isstring": 5, + "pcre.config": 1, + ".name": 1, + ".erropt": 3, + ".isstring": 1, + ".s": 5, + ".n": 20, + "ec": 10, + "compile": 14, + "pattern": 21, + "options": 45, + "locale": 24, + "mlimit": 20, + "reclimit": 19, + "optional": 16, + "joined": 3, + "Unix": 1, + "pcre_maketables": 2, + "cases": 1, + "undefined": 1, + "called": 8, + "environment": 7, + "defined": 2, + "LANG": 4, + "LC_*": 1, + "specified": 4, + "...": 6, + "Debian": 2, + "tip": 1, + "dpkg": 1, + "reconfigure": 1, + "enable": 1, + "system": 1, + "wide": 1, + "internal": 3, + "matching": 4, + "calls": 1, + "pcre_exec": 4, + "execution": 2, + "manual": 2, + "details": 5, + "limit": 14, + "depth": 1, + "recursion": 1, + "calling": 2, + "ref": 41, + "err": 4, + "erroffset": 3, + "pcre.compile": 1, + ".pattern": 3, + ".ref": 13, + ".err": 1, + ".erroffset": 1, + "exec": 4, + "subject": 24, + "startoffset": 3, + "octets": 2, + "starts": 1, + "like": 4, + "chars": 3, + "pcre.exec": 2, + ".subject": 3, + "zl": 7, + "<0>": 2, + "ec=": 7, + "ovector": 25, + "element": 1, + "code=": 4, + "ovecsize": 5, + "fullinfo": 3, + "OPTIONS": 2, + "SIZE": 1, + "CAPTURECOUNT": 1, + "BACKREFMAX": 1, + "FIRSTBYTE": 1, + "FIRSTTABLE": 1, + "LASTLITERAL": 1, + "NAMEENTRYSIZE": 1, + "NAMECOUNT": 1, + "STUDYSIZE": 1, + "OKPARTIAL": 1, + "JCHANGED": 1, + "HASCRORLF": 1, + "MINLENGTH": 1, + "JIT": 1, + "JITSIZE": 1, + "NAME": 3, + "nametable": 4, + "1": 74, + "index": 1, + "0": 23, + "indexed": 4, + "substring": 1, + "begin": 18, + "end": 33, + "begin=": 3, + "2": 14, + "end=": 4, + "octet": 4, + "UNICODE": 1, + "so": 4, + "ze": 8, + "begin_": 1, + "_end": 1, + "store": 6, + "same": 2, + "stores": 1, + "captured": 6, + "array": 22, + "key=": 2, + "gstore": 3, + "round": 12, + "byref": 5, + "test": 6, + "ref=": 3, + "l=": 2, + "capture": 10, + "indexes": 1, + "extended": 1, + "NAMED_ONLY": 2, + "only": 9, + "named": 12, + "groups": 5, + "OVECTOR": 2, + "namedonly": 9, + "options=": 4, + "i=": 14, + "o=": 12, + "u": 6, + "namedonly=": 2, + "ovector=": 2, + "NO_AUTO_CAPTURE": 2, + "c=": 28, + "_capture_": 2, + "matches": 10, + "s=": 4, + "_s_": 1, + "GROUPED": 1, + "group": 4, + "result": 3, + "patterns": 3, + "pcredemo": 1, + "pcreccp": 1, + "cc": 1, + "procedure": 2, + "Perl": 1, + "utf8": 2, + "empty": 7, + "skip": 6, + "determine": 1, + "remove": 6, + "them": 1, + "before": 2, + "byref=": 2, + "check": 2, + "UTF8": 2, + "double": 1, + "char": 9, + "new": 15, + "utf8=": 1, + "crlf=": 3, + "NL_CRLF": 1, + "NL_ANY": 1, + "NL_ANYCRLF": 1, + "none": 1, + "NEWLINE": 1, + "..": 28, + ".start": 1, + "unwind": 1, + "call": 1, + "optimize": 1, + "do": 15, + "leave": 1, + "advance": 1, + "clear": 6, + "LF": 1, + "CR": 1, + "CRLF": 1, + "mode": 12, + "middle": 1, + ".i": 2, + ".match": 2, + ".round": 2, + ".byref": 2, + ".ovector": 2, + "replace": 27, + "subst": 3, + "last": 4, + "occurrences": 1, + "matched": 1, + "back": 4, + "th": 3, + "replaced": 1, + "where": 6, + "substitution": 2, + "begins": 1, + "substituted": 2, + "defaults": 3, + "ends": 1, + "offset": 6, + "backref": 1, + "boffset": 1, + "prepare": 1, + "reference": 2, + "stack": 8, + ".subst": 1, + ".backref": 1, + "silently": 1, + "zco": 1, + "": 1, + "s/": 6, + "b*": 7, + "/Xy/g": 6, + "print": 8, + "aa": 9, + "et": 4, + "direct": 3, + "place": 9, + "take": 1, + "setup": 3, + "trap": 10, + "source": 3, + "location": 5, + "argument": 1, + "st": 6, + "@ref": 2, + "COMPILE": 2, + "meaning": 1, + "zs": 2, + "re": 2, + "raise": 3, + "XC": 1, + "U16384": 1, + "U16385": 1, + "U16386": 1, + "U16387": 1, + "U16388": 2, + "U16389": 1, + "U16390": 1, + "U16391": 1, + "U16392": 2, + "U16393": 1, + "NOTES": 1, + "U16401": 2, + "raised": 2, + "i.e.": 3, + "NOMATCH": 2, + "ever": 1, + "uncommon": 1, + "situation": 1, + "too": 1, + "small": 1, + "considering": 1, + "size": 3, + "controlled": 1, + "here": 4, + "U16402": 1, + "U16403": 1, + "U16404": 1, + "U16405": 1, + "U16406": 1, + "U16407": 1, + "U16408": 1, + "U16409": 1, + "U16410": 1, + "U16411": 1, + "U16412": 1, + "U16414": 1, + "U16415": 1, + "U16416": 1, + "U16417": 1, + "U16418": 1, + "U16419": 1, + "U16420": 1, + "U16421": 1, + "U16423": 1, + "U16424": 1, + "U16425": 1, + "U16426": 1, + "U16427": 1, + "Fibonacci": 1, + "term": 10, + "create": 6, + "student": 14, + "zwrite": 1, + "Mumtris": 3, + "tetris": 1, + "game": 1, + "MUMPS": 1, + "fun.": 1, + "Resize": 1, + "terminal": 2, + "maximize": 1, + "PuTTY": 1, + "window": 1, + "report": 1, + "mumtris.": 1, + "setting": 3, + "ansi": 2, + "compatible": 1, + "cursor": 1, + "positioning.": 1, + "NOTICE": 1, + "uses": 1, + "making": 1, + "delays": 1, + "lower": 1, + "s.": 1, + "That": 1, + "CPU": 1, + "It": 2, + "fall": 5, + "lock": 2, + "preview": 3, + "over": 2, + "exit": 3, + "short": 1, + "circuit": 1, + "redraw": 3, + "timeout": 1, + "harddrop": 1, + "other": 1, + "ex": 5, + "hd": 3, + "*c": 1, + "<0&'d>": 1, + "t10m": 1, + "h": 39, + "q=": 6, + "d=": 1, + "zb": 2, + "3": 6, + "rotate": 5, + "right": 3, + "left": 5, + "fl=": 1, + "gr=": 1, + "hl": 2, + "help": 2, + "drop": 2, + "hd=": 1, + "matrix": 2, + "draw": 3, + "y": 33, + "ticks": 2, + "h=": 2, + "1000000000": 1, + "e=": 1, + "t10m=": 1, + "100": 2, + "n=": 1, + "ne=": 1, + "x=": 5, + "y=": 3, + "r=": 3, + "collision": 6, + "score": 5, + "k=": 1, + "4": 5, + "j=": 4, + "<1))))>": 1, + "800": 1, + "200": 1, + "lv": 5, + "lc=": 1, + "10": 1, + "mt_": 2, + "cls": 6, + "dh/2": 6, + "dw/2": 6, + "*s": 4, + "echo": 1, + "intro": 1, + "pos": 33, + "workaround": 1, + "ANSI": 1, + "driver": 1, + "NL": 1, + "some": 1, + "safe": 3, + "clearscreen": 1, + "h/2": 3, + "*w/2": 3, + "fill": 3, + "fl": 2, + "*x": 1, + "mx": 4, + "my": 5, + "**lv*sb": 1, + "*lv": 1, + "sc": 3, + "ne": 2, + "gr": 1, + "w*3": 1, + "dev": 1, + "zsh": 1, + "dw": 1, + "dh": 1, + "elements": 3, + "elemId": 3, + "rotateVersions": 1, + "rotateVersion": 2, + "bottom": 1, + "coordinate": 1, + "point": 2, + "____": 1, + "__": 2, + "||": 1, + "Implementation": 1, + "works": 1, + "ZCHSET": 2, + "please": 1, + "don": 1, + "joke.": 1, + "Serves": 1, + "well": 2, + "reverse": 1, + "engineering": 1, + "obtaining": 1, + "integer": 1, + "addition": 1, + "modulo": 1, + "division.": 1, + "//en.wikipedia.org/wiki/MD5": 1, + "#64": 1, + "msg_": 1, + "_m_": 1, + "n64": 2, + "read": 2, + ".p": 1, + "*i": 3, + "#16": 3, + "xor": 4, + "#4294967296": 6, + "n32h": 5, + "bit": 5, + "#2": 1, + "*2147483648": 2, + "a#2": 1, + "b#2": 1, + ".a": 1, + ".b": 1, + "rol": 1, + "a*": 1, + "**n": 1, + "c#4294967296": 1, + "*n": 1, + "n#256": 1, + "n#16": 2, + "two": 2, + "illustrate": 1, + "dynamic": 1, + "scope": 1, + "triangle1": 1, + "sum": 15, + "main2": 1, + "triangle2": 1, + "statement": 3, + "statements": 1, + "contrasted": 1, + "if3": 1, + "else": 7, + "clause": 2, + "if4": 1, + "bodies": 1, + "MDB": 60, + "M/DB": 2, + "Mumps": 1, + "Emulation": 1, + "Amazon": 1, + "SimpleDB": 1, + "buildDate": 1, + "indexLength": 10, + "Note": 2, + "keyId": 108, + "been": 4, + "tested": 1, + "time": 9, + "these": 1, + "methods": 2, + "To": 2, + "Initialise": 2, + "service": 1, + "//192.168.1.xxx/mdb/test.mgwsi": 1, + "Action": 2, + "addUser": 2, + "userKeyId": 6, + "userSecretKey": 6, + "requestId": 17, + "boxUsage": 11, + "startTime": 21, + ".startTime": 5, + "MDBUAF": 2, + ".boxUsage": 22, + "createDomain": 1, + "domainName": 38, + "dn": 4, + "dnx": 3, + "id": 33, + "noOfDomains": 12, + "token": 21, + "MDBConfig": 1, + "getDomainId": 3, + "found": 7, + "namex": 8, + "buildItemNameIndex": 2, + "domainId": 53, + "itemId": 41, + "itemValue": 7, + "itemValuex": 3, + "countDomains": 2, + "deleteDomain": 2, + "listDomains": 1, + "maxNoOfDomains": 2, + "nextToken": 7, + "domainList": 3, + "fullName": 3, + "decodeBase64": 1, + "encodeBase64": 1, + "itemExists": 1, + "getItemId": 2, + "getAttributeValueId": 3, + "attribId": 36, + "valuex": 13, + "putAttributes": 2, + "itemName": 16, + "attributes": 32, + "valueId": 16, + "xvalue": 4, + "Item": 1, + "Domain": 1, + "itemNamex": 4, + "parseJSON": 1, + "attributesJSON": 1, + ".attributes": 5, + "attribute": 14, + "getAttributeId": 2, + "domain": 1, + "Not": 1, + "existing": 2, + "values": 4, + "now": 1, + "name/value": 2, + "pair": 1, + "getAttributes": 2, + "suppressBoxUsage": 1, + "attrNo": 9, + "valueNo": 6, + "delete": 2, + "item": 2, + "associated": 1, + "queryIndex": 1, + "records": 2, + "pairs": 2, + "vno": 2, + "completely": 3, + "references": 1, + "maxNoOfItems": 3, + "itemList": 12, + "session": 1, + "identifier": 1, + "stored": 1, + "queryExpression": 16, + "relink": 1, + "zewdGTMRuntime": 1, + "CGIEVAR": 1, + "cgi": 1, + "unescName": 5, + "urlDecode": 2, + "KEY": 36, + "WebLink": 1, + "entry": 5, + "action": 15, + "AWSAcessKeyId": 1, + "db": 9, + "hash": 1, + "itemsAndAttrs": 2, + "secretKey": 1, + "signatureMethod": 2, + "signatureVersion": 3, + "stringToSign": 2, + "rltKey": 2, + "_action_": 2, + "h_": 3, + "mdbKey": 2, + "errorResponse": 9, + ".requestId": 7, + "createResponse": 4, + "installMDBM": 1, + "authenticate": 1, + "MDBSession": 1, + "createResponseStringToSign": 1, + "Security": 1, + "_db": 1, + "MDBAPI": 1, + "_db_": 1, + "db_": 1, + "_action": 1, + "metaData": 1, + "domainMetadata": 1, + ".metaData": 1, + "paramName": 8, + "paramValue": 5, + "Query": 1, + "DomainName": 2, + "QueryExpression": 2, + "MaxNumberOfItems": 2, + "NextToken": 3, + "QueryWithAttributes": 1, + "AttributeName.": 2, + "Select": 2, + "SelectExpression": 1, + "entering": 1, + "runSelect.": 1, + "selectExpression": 3, + "finished": 1, + "runSelect": 3, + "select": 3, + "asc": 1, + "inValue": 6, + "str": 15, + "expr": 18, + "rel": 2, + "itemStack": 3, + "between": 2, + "<=\">": 1, + "lastWord=": 7, + "inAttr=": 5, + "expr=": 10, + "thisWord=": 7, + "inAttr": 2, + "queryExpression=": 4, + "_queryExpression": 2, + "isNull": 1, + "5": 1, + "8": 1, + "isNotNull": 1, + "9": 1, + "np": 17, + "prevName": 1, + "np=": 1, + "diffNames": 6, + "_term": 3, + "expr_": 1, + "_orderBy": 1, + "runQuery": 2, + ".itemList": 4, + "escVals": 1, + "str_c": 2, + "_x_": 1, + "orderBy": 1, + "_query": 1, + "parseSelect": 1, + ".domainName": 2, + ".queryExpression": 1, + ".orderBy": 1, + ".limit": 1, + "replaceAll": 11, + "executeSelect": 1, + ".itemStack": 1, + "***": 2, + "listCopy": 3, + "escape": 7, + "externalSelect": 2, + "_keyId_": 1, + "_selectExpression": 1, + "FromStr": 6, + "ToStr": 4, + "InText": 4, + "old": 3, + "p1": 5, + "stripTrailingSpaces": 2, + "spaces": 3, + "makeString": 3, + "string_spaces": 1, + "start1": 2, + "start2": 1, + "run": 2, + "APIs": 1, + "Fri": 1, + "Nov": 1, + "getVersion": 1, + "zewdCompiler": 6, + "date": 1, + "getDate": 1, + "compilePage": 2, + "app": 13, + "technology": 9, + "outputPath": 4, + "multilingual": 4, + "maxLines": 4, + "compileAll": 2, + "templatePageName": 2, + "autoTranslate": 2, + "verbose": 2, + "zewdMgr": 1, + "startSession": 2, + "requestArray": 2, + "serverArray": 1, + "sessionArray": 5, + "filesArray": 1, + "zewdPHP": 8, + ".requestArray": 2, + ".serverArray": 1, + ".sessionArray": 3, + ".filesArray": 1, + "closeSession": 2, + "saveSession": 2, + "endOfPage": 2, + "prePageScript": 2, + "releaseLock": 2, + "tokeniseURL": 2, + "url": 2, + "zewdCompiler16": 5, + "getSessid": 1, + "isTokenExpired": 2, + "zewdSession": 39, + "initialiseSession": 1, + "deleteSession": 2, + "changeApp": 1, + "appName": 4, + "setRedirect": 1, + "toPage": 1, + "path": 4, + "getRootURL": 1, + "_sessid_": 3, + "_token_": 1, + "_nextPage": 1, + "zcvt": 11, + "nextPage": 1, + "isNextPageTokenValid": 2, + "zewdCompiler13": 10, + "isCSP": 1, + "normaliseTextValue": 1, + "text": 6, + "writeLine": 2, + "CacheTempBuffer": 2, + "displayOptions": 2, + "fieldName": 5, + "listName": 6, + "codeValue": 7, + "nnvp": 1, + "nvp": 1, + "textValue": 6, + "getSessionValue": 3, + "codeValueEsc": 7, + "textValueEsc": 7, + "htmlOutputEncode": 2, + "zewdAPI2": 5, + "_codeValueEsc_": 1, + "translationMode": 1, + "_appName": 1, + "typex": 1, + "type": 2, + "avoid": 1, + "getPhraseIndex": 1, + "zewdCompiler5": 1, + "licensed": 1, + "setWarning": 2, + "isTemp": 11, + "setWLDSymbol": 1, + "Duplicate": 1, + "performance": 1, + "wldAppName": 1, + "wldName": 1, + "wldSessid": 1, + "zzname": 1, + "extcErr": 1, + "mess": 3, + "namespace": 1, + "valueErr": 1, + "exportCustomTags": 2, + "tagList": 1, + "filepath": 10, + ".tagList": 1, + "exportAllCustomTags": 2, + "importCustomTags": 2, + "filePath": 2, + "zewdForm": 1, + "stripSpaces": 6, + "obj": 6, + "prop": 6, + "setSessionObject": 3, + "allowJSONAccess": 1, + "sessionName": 30, + "disallowJSONAccess": 1, + "JSONAccess": 1, + "existsInSession": 2, + "existsInSessionArray": 2, + "p3": 3, + "p4": 2, + "p5": 2, + "p6": 2, + "p7": 2, + "p8": 2, + "p9": 2, + "p10": 2, + "p11": 2, + "clearSessionArray": 1, + "arrayName": 35, + "setSessionArray": 1, + "getSessionArray": 1, + "clearArray": 2, + "getSessionArrayErr": 1, + "Come": 1, + "occurred": 2, + "addToSession": 2, + "@name": 4, + "mergeToSession": 1, + "mergeGlobalToSession": 2, + "mergeGlobalFromSession": 2, + "mergeArrayToSession": 1, + "mergeArrayToSessionObject": 2, + ".array": 1, + "mergeArrayFromSession": 1, + "mergeFromSession": 1, + "deleteFromSession": 1, + "deleteFromSessionObject": 1, + "sessionNameExists": 1, + "getSessionArrayValue": 2, + ".exists": 1, + "sessionArrayValueExists": 2, + "deleteSessionArrayValue": 2, + "Objects": 1, + "objectName": 13, + "propertyName": 3, + "propertyValue": 5, + "comma": 3, + "objectName_": 2, + "_propertyName": 2, + "_propertyName_": 2, + "_propertyValue_": 1, + "_p": 1, + "quoted": 1, + "removeDocument": 1, + "zewdDOM": 3, + "instanceName": 2, + "clearXMLIndex": 1, + "zewdSchemaForm": 1, + "closeDOM": 1, + "makeTokenString": 1, + "token_": 1, + "convertDateToSeconds": 1, + "hdate": 7, + "hdate*86400": 1, + "convertSecondsToDate": 1, + "secs": 2, + "secs#86400": 1, + "getTokenExpiry": 2, + "h*86400": 1, + "randChar": 1, + "lowerCase": 2, + "stripLeadingSpaces": 2, + "d1": 7, + "zd": 1, + "<10>": 1, + "dd=": 2, + "mm=": 3, + "d1=": 1, + "p1=": 1, + "mm": 7, + "p2=": 1, + "yy=": 1, + "dd_": 1, + "mm_": 1, + "inetTime": 1, + "Decode": 1, + "Internet": 1, + "Format": 1, + "Time": 1, + "H": 1, + "format": 2, + "Offset": 1, + "relative": 1, + "GMT": 1, + "hh": 4, + "ss": 4, + "_hh": 1, + "time#3600": 1, + "_mm": 1, + "time#60": 1, + "_ss": 2, + "hh_": 1, + "_mm_": 1, + "openNewFile": 2, + "openFile": 2, + "openDOM": 2, + "#39": 1, + "<\",\"<\")>": 1, + "string=": 1, + "gt": 1, + "amp": 1, + "HTML": 1, + "no2": 1, + "p1_c_p2": 1, + "getIP": 2, + "Get": 2, + "own": 2, + "IP": 1, + "address": 1, + "ajaxErrorRedirect": 2, + "classExport": 2, + "className": 2, + ".methods": 1, + "strx": 2, + "disableEwdMgr": 1, + "enableEwdMgr": 1, + "enableWLDAccess": 1, + "disableWLDAccess": 1, + "isSSOValid": 2, + "sso": 2, + "zewdMgrAjax2": 1, + "uniqueId": 1, + "nodeOID": 2, + "filename": 2, + "linkToParentSession": 2, + "zewdCompiler20": 1, + "exportToGTM": 1, + "computes": 1, + "factorial": 3, + "f*n": 1, + "main": 1, + "label1": 1, + "GMRGPNB0": 1, + "CISC/JH/RM": 1, + "NARRATIVE": 1, + "BUILDER": 1, + "TEXT": 5, + "GENERATOR": 1, + "cont.": 1, + "/20/91": 1, + "Text": 1, + "Generator": 1, + "Jan": 1, + "ENTRY": 2, + "WITH": 1, + "GMRGA": 1, + "SET": 3, + "TO": 6, + "POINT": 1, + "AT": 1, + "WHICH": 1, + "WANT": 1, + "START": 1, + "BUILDING": 1, + "GMRGE0": 11, + "GMRGADD": 4, + "GMR": 6, + "GMRGA0": 11, + "GMRGPDA": 9, + "GMRGCSW": 2, + "NOW": 1, + "DTC": 1, + "GMRGB0": 9, + "GMRGST": 6, + "GMRGPDT": 2, + "GMRGRUT0": 3, + "GMRGF0": 3, + "GMRGSTAT": 8, + "_GMRGB0_": 2, + "GMRD": 6, + "GMRGSSW": 3, + "SNT": 1, + "GMRGPNB1": 1, + "GMRGNAR": 8, + "GMRGPAR_": 2, + "_GMRGSPC_": 3, + "_GMRGRM": 2, + "_GMRGE0": 1, + "STORETXT": 1, + "GMRGRUT1": 1, + "GMRGSPC": 3, + "GMRGD0": 7, + "ALIST": 1, + "GMRGPLVL": 6, + "GMRGA0_": 1, + "_GMRGD0_": 1, + "_GMRGSSW_": 1, + "_GMRGADD": 1, + "GMRGI0": 6, + "Examples": 4, + "pcre.m": 1, + "parameters": 1, + "pcreexamples": 32, + "shining": 1, + "Test": 1, + "Simple": 2, + "zwr": 17, + "Match": 4, + "grouped": 2, + "Just": 1, + "Change": 2, + "word": 3, + "Escape": 1, + "sequence": 1, + "More": 1, + "Low": 1, + "api": 1, + "Setup": 1, + "myexception2": 2, + "st_": 1, + "zl_": 2, + ".options": 1, + "Run": 1, + ".offset": 1, + "used.": 2, + "strings": 1, + "submitted": 1, + "exact": 1, + "usable": 1, + "integers": 1, + "way": 1, + "what": 2, + "/mg": 2, + "aaa": 1, + "nbb": 1, + ".*": 1, + "discover": 1, + "stackusage": 3, + "Locale": 5, + "Support": 1, + "Polish": 1, + "I18N": 2, + "PCRE.": 1, + "Polish.": 1, + "second": 1, + "letter": 1, + "": 1, + "ISO8859": 1, + "//en.wikipedia.org/wiki/Polish_code_pages": 1, + "complete": 1, + "listing": 1, + "CHAR": 1, + "different": 3, + "modes": 1, + "In": 1, + "probably": 1, + "expected": 1, + "working": 1, + "single": 2, + "ISO": 3, + "chars.": 1, + "Use": 1, + "zch": 7, + "prepared": 1, + "GTM": 8, + "BADCHAR": 1, + "errors.": 1, + "Also": 1, + "others": 1, + "might": 1, + "expected.": 1, + "POSIX": 1, + "localization": 1, + "nolocale": 2, + "zchset": 2, + "isolocale": 2, + "utflocale": 2, + "LC_CTYPE": 1, + "Set": 2, + "results.": 1, + "envlocale": 2, + "ztrnlnm": 2, + "Notes": 1, + "Enabling": 1, + "native": 1, + "requires": 1, + "libicu": 2, + "gtm_chset": 1, + "gtm_icu_version": 1, + "recompiled": 1, + "object": 4, + "Instructions": 1, + "Install": 1, + "libicu48": 2, + "apt": 1, + "get": 2, + "install": 1, + "append": 1, + "chown": 1, + "gtm": 1, + "/opt/gtm": 1, + "Startup": 1, + "errors": 6, + "INVOBJ": 1, + "Cannot": 1, + "ZLINK": 1, + "due": 1, + "unexpected": 1, + "Object": 1, + "compiled": 1, + "CHSET": 1, + "written": 3, + "startup": 1, + "correct": 1, + "above.": 1, + "Limits": 1, + "built": 1, + "recursion.": 1, + "Those": 1, + "prevent": 1, + "engine": 1, + "very": 2, + "long": 2, + "especially": 1, + "there": 2, + "tree": 1, + "checked.": 1, + "Functions": 1, + "itself": 1, + "allows": 1, + "MATCH_LIMIT": 1, + "MATCH_LIMIT_RECURSION": 1, + "arguments": 1, + "library": 1, + "compilation": 2, + "Example": 1, + "longrun": 3, + "Equal": 1, + "corrected": 1, + "shortrun": 2, + "Enforced": 1, + "enforcedlimit": 2, + "Exception": 2, + "Handling": 1, + "Error": 1, + "conditions": 1, + "handled": 1, + "zc": 1, + "codes": 1, + "labels": 1, + "file.": 1, + "When": 2, + "neither": 1, + "nor": 1, + "within": 1, + "mechanism.": 1, + "depending": 1, + "caller": 1, + "exception.": 1, + "lead": 1, + "prompt": 1, + "terminating": 1, + "image.": 1, + "handlers.": 1, + "Handler": 1, + "nohandler": 4, + "Pattern": 1, + "failed": 1, + "unmatched": 1, + "parentheses": 1, + "<-->": 1, + "HERE": 1, + "RTSLOC": 2, + "At": 2, + "SETECODE": 1, + "Non": 1, + "assigned": 1, + "ECODE": 1, + "32": 1, + "GT": 1, + "image": 1, + "terminated": 1, + "myexception1": 3, + "zt=": 1, + "mytrap1": 2, + "zg": 2, + "mytrap3": 1, + "DETAILS": 1, + "executed": 1, + "frame": 1, + "called.": 1, + "deeper": 1, + "frames": 1, + "already": 1, + "dropped": 1, + "local": 1, + "available": 1, + "context.": 1, + "Thats": 1, + "why": 1, + "doesn": 1, + "unless": 1, + "cleared.": 1, + "Always": 1, + "done.": 2, + "Execute": 1, + "p5global": 1, + "p5replace": 1, + "p5lf": 1, + "p5nl": 1, + "newline": 1, + "utf8support": 1, + "myexception3": 1, + "PXAI": 1, + "ISL/JVS": 1, + "ISA/KWP": 1, + "ESW": 1, + "PCE": 2, + "DRIVING": 1, + "RTN": 1, + "/20/03": 1, + "am": 1, + "CARE": 1, + "ENCOUNTER": 2, + "**15": 1, + "Aug": 1, + "DATA2PCE": 1, + "PXADATA": 7, + "PXAPKG": 9, + "PXASOURC": 10, + "PXAVISIT": 8, + "PXAUSER": 6, + "PXANOT": 3, + "ERRRET": 2, + "PXAPREDT": 2, + "PXAPROB": 15, + "PXACCNT": 2, + "add/edit/delete": 1, + "PCE.": 1, + "pointer": 4, + "visit": 3, + "related.": 1, + "nodes": 1, + "needed": 1, + "lookup/create": 1, + "visit.": 1, + "adding": 1, + "data.": 1, + "displayed": 1, + "screen": 1, + "debugging": 1, + "initial": 1, + "code.": 1, + "passed": 4, + "reference.": 2, + "present": 1, + "PXKERROR": 2, + "caller.": 1, + "want": 1, + "edit": 1, + "Primary": 3, + "Provider": 1, + "moment": 1, + "being": 1, + "dangerous": 1, + "dotted": 1, + "name.": 1, + "warnings": 1, + "occur": 1, + "They": 1, + "form": 1, + "general": 1, + "description": 1, + "problem.": 1, + "ERROR1": 1, + "GENERAL": 2, + "ERRORS": 4, + "SUBSCRIPT": 5, + "PASSED": 4, + "IN": 4, + "FIELD": 2, + "FROM": 5, + "WARNING2": 1, + "WARNINGS": 2, + "WARNING3": 1, + "SERVICE": 1, + "CONNECTION": 1, + "REASON": 9, + "ERROR4": 1, + "PROBLEM": 1, + "LIST": 1, + "Returns": 2, + "PFSS": 2, + "Account": 2, + "Reference": 2, + "known.": 1, + "Returned": 1, + "located": 1, + "Order": 1, + "#100": 1, + "processed": 1, + "could": 1, + "incorrectly": 1, + "VARIABLES": 1, + "NOVSIT": 1, + "PXAK": 20, + "DFN": 1, + "PXAERRF": 3, + "PXADEC": 1, + "PXELAP": 1, + "PXASUB": 2, + "VALQUIET": 2, + "PRIMFND": 7, + "PXAERROR": 1, + "PXAERR": 7, + "PRVDR": 1, + "needs": 1, + "look": 1, + "up": 1, + "passed.": 1, + "@PXADATA@": 8, + "SOR": 1, + "SOURCE": 2, + "PKG2IEN": 1, + "VSIT": 1, + "PXAPIUTL": 2, + "TMPSOURC": 1, + "SAVES": 1, + "CREATES": 1, + "VST": 2, + "VISIT": 3, + "KILL": 1, + "VPTR": 1, + "PXAIVSTV": 1, + "ERR": 2, + "PXAIVST": 1, + "PRV": 1, + "PROVIDER": 1, + "AUPNVSIT": 1, + ".I": 4, + "..S": 7, + "status": 2, + "Secondary": 2, + ".S": 6, + "..I": 2, + "PXADI": 4, + "NODE": 5, + "SCREEN": 2, + "VA": 1, + "EXTERNAL": 2, + "INTERNAL": 2, + "ARRAY": 2, + "PXAICPTV": 1, + "SEND": 1, + "BLD": 2, + "DIALOG": 4, + ".PXAERR": 3, + "MSG": 2, + "GLOBAL": 1, + "NA": 1, + "PROVDRST": 1, + "Check": 1, + "provider": 1, + "PRVIEN": 14, + "DETS": 7, + "DIQ": 3, + "PRI": 3, + "PRVPRIM": 2, + "AUPNVPRV": 2, + ".04": 1, + "DIQ1": 1, + "POVPRM": 1, + "POVARR": 1, + "STOP": 1, + "LPXAK": 4, + "ORDX": 14, + "NDX": 7, + "ORDXP": 3, + "DX": 2, + "ICD9": 2, + "AUPNVPOV": 2, + "@POVARR@": 6, + "force": 1, + "originally": 1, + "primary": 1, + "diagnosis": 1, + "flag": 1, + ".F": 2, + "..E": 1, + "...S": 5, + "DataBallet.": 4, + "Laurent": 2, + "Parenteau": 2, + "": 2, + "DataBallet": 4, + "encode": 1, + "Return": 1, + "base64": 6, + "URL": 2, + "Filename": 1, + "alphabet": 2, + "RFC": 1, + "todrop": 2, + "Populate": 1, + "only.": 1, + "zextract": 3, + "zlength": 3, + "decode": 1, + "val": 5, + "Decoded": 1, + "Encoded": 1, + "decoded": 3, + "decoded_": 1, + "safechar": 3, + "zchar": 1, + "encoded_c": 1, + "encoded_": 2, + "FUNC": 1, + "DH": 1, + "zascii": 1, + "WVBRNOT": 1, + "HCIOFO/FT": 1, + "JR": 1, + "IHS/ANMC/MWR": 1, + "BROWSE": 1, + "NOTIFICATIONS": 1, + "/30/98": 1, + "WOMEN": 1, + "WVDATE": 8, + "WVENDDT1": 2, + "WVIEN": 13, + "..F": 2, + "WV": 8, + "WVXREF": 1, + "WVDFN": 6, + "SELECTING": 1, + "ONE": 2, + "CASE": 1, + "MANAGER": 1, + "AND": 3, + "THIS": 3, + "DOESN": 1, + "WVE": 2, + "": 2, + "STORE": 3, + "WVA": 2, + "WVBEGDT1": 1, + "NOTIFICATION": 1, + "IS": 3, + "QUEUED.": 1, + "WVB": 4, + "OPEN": 1, + "ONLY": 1, + "CLOSED.": 1, + ".Q": 1, + "EP": 4, + "ALREADY": 1, + "LL": 1, + "SORT": 3, + "ABOVE.": 1, + "DATE": 1, + "WVCHRT": 1, + "SSN": 1, + "WVUTL1": 2, + "SSN#": 1, + "WVNAME": 4, + "WVACC": 4, + "ACCESSION#": 1, + "WVSTAT": 1, + "STATUS": 2, + "WVUTL4": 1, + "WVPRIO": 5, + "PRIORITY": 1, + "WVCHRT_U_WVNAME_U_WVDATE_U_WVACC_U_WVSTAT_U_WVPRIO_U_WVIEN": 1, + "WVC": 4, + "COPYGBL": 3, + "COPY": 1, + "MAKE": 1, + "IT": 1, + "FLAT.": 1, + "...F": 1, + "....S": 1, + "DEQUEUE": 1, + "TASKMAN": 1, + "QUEUE": 1, + "PRINTOUT.": 1, + "SETVARS": 2, + "WVUTL5": 2, + "WVBRNOT1": 2, + "EXIT": 1, + "FOLLOW": 1, + "CALLED": 1, + "PROCEDURE": 1, + "FOLLOWUP": 1, + "MENU.": 1, + "WVBEGDT": 1, + "DT": 2, + "WVENDDT": 1, + "DEVICE": 1, + "WVBRNOT2": 1, + "WVPOP": 1, + "WVLOOP": 1, + "ax": 2, + "bx": 2, + "cx": 2, + "ay": 2, + "cy": 2, + "sumx": 3, + "sqrx": 3, + "sumxy": 5, + "x*x": 1, + "x*y": 1 + }, + "NSIS": { + ";": 39, + "bigtest.nsi": 1, + "This": 2, + "script": 1, + "attempts": 1, + "to": 6, + "test": 1, + "most": 1, + "of": 3, + "the": 4, + "functionality": 1, + "NSIS": 3, + "exehead.": 1, + "-": 205, + "ifdef": 2, + "HAVE_UPX": 1, + "packhdr": 1, + "tmp.dat": 1, + "endif": 4, + "NOCOMPRESS": 1, + "SetCompress": 1, + "off": 1, + "Name": 1, + "Caption": 1, + "Icon": 1, + "OutFile": 1, + "SetDateSave": 1, + "on": 6, + "SetDatablockOptimize": 1, + "CRCCheck": 1, + "SilentInstall": 1, + "normal": 1, + "BGGradient": 1, + "FFFFFF": 1, + "InstallColors": 1, + "FF8080": 1, + "XPStyle": 1, + "InstallDir": 1, + "InstallDirRegKey": 1, + "HKLM": 9, + "CheckBitmap": 1, + "LicenseText": 1, + "LicenseData": 1, + "RequestExecutionLevel": 1, + "admin": 1, + "Page": 4, + "license": 1, + "components": 1, + "directory": 3, + "instfiles": 2, + "UninstPage": 2, + "uninstConfirm": 1, + "ifndef": 2, + "NOINSTTYPES": 1, + "only": 1, + "if": 4, + "not": 2, + "defined": 1, + "InstType": 6, + "/NOCUSTOM": 1, + "/COMPONENTSONLYONCUSTOM": 1, + "AutoCloseWindow": 1, + "false": 1, + "ShowInstDetails": 1, + "show": 1, + "Section": 5, + "empty": 1, + "string": 1, + "makes": 1, + "it": 3, + "hidden": 1, + "so": 1, + "would": 1, + "starting": 1, + "with": 1, + "write": 2, + "reg": 1, + "info": 1, + "StrCpy": 2, + "DetailPrint": 1, + "WriteRegStr": 4, + "SOFTWARE": 7, + "NSISTest": 7, + "BigNSISTest": 8, + "uninstall": 2, + "strings": 1, + "SetOutPath": 3, + "INSTDIR": 15, + "File": 3, + "/a": 1, + "CreateDirectory": 1, + "recursively": 1, + "create": 1, + "a": 2, + "for": 2, + "fun.": 1, + "WriteUninstaller": 1, + "Nop": 1, + "fun": 1, + "SectionEnd": 5, + "SectionIn": 4, + "Start": 2, + "MessageBox": 11, + "MB_OK": 8, + "MB_YESNO": 3, + "IDYES": 2, + "MyLabel": 2, + "SectionGroup": 2, + "/e": 1, + "SectionGroup1": 1, + "WriteRegDword": 3, + "xdeadbeef": 1, + "WriteRegBin": 1, + "WriteINIStr": 5, + "Call": 6, + "MyFunctionTest": 1, + "DeleteINIStr": 1, + "DeleteINISec": 1, + "ReadINIStr": 1, + "StrCmp": 1, + "INIDelSuccess": 2, + "ClearErrors": 1, + "ReadRegStr": 1, + "HKCR": 1, + "xyz_cc_does_not_exist": 1, + "IfErrors": 1, + "NoError": 2, + "Goto": 1, + "ErrorYay": 2, + "CSCTest": 1, + "Group2": 1, + "BeginTestSection": 1, + "IfFileExists": 1, + "BranchTest69": 1, + "|": 3, + "MB_ICONQUESTION": 1, + "IDNO": 1, + "NoOverwrite": 1, + "skipped": 2, + "file": 4, + "doesn": 2, + "s": 1, + "icon": 1, + "start": 1, + "minimized": 1, + "and": 1, + "give": 1, + "hotkey": 1, + "(": 5, + "Ctrl": 1, + "+": 2, + "Shift": 1, + "Q": 2, + ")": 5, + "CreateShortCut": 2, + "SW_SHOWMINIMIZED": 1, + "CONTROL": 1, + "SHIFT": 1, + "MyTestVar": 1, + "myfunc": 1, + "test.ini": 2, + "MySectionIni": 1, + "Value1": 1, + "failed": 1, + "TextInSection": 1, + "will": 1, + "example2.": 1, + "Hit": 1, + "next": 1, + "continue.": 1, + "{": 8, + "NSISDIR": 1, + "}": 8, + "Contrib": 1, + "Graphics": 1, + "Icons": 1, + "nsis1": 1, + "uninstall.ico": 1, + "Uninstall": 2, + "Software": 1, + "Microsoft": 1, + "Windows": 3, + "CurrentVersion": 1, + "silent.nsi": 1, + "LogicLib.nsi": 1, + "bt": 1, + "uninst.exe": 1, + "SMPROGRAMS": 2, + "Big": 1, + "Test": 2, + "*.*": 2, + "BiG": 1, + "Would": 1, + "you": 1, + "like": 1, + "remove": 1, + "cpdest": 3, + "MyProjectFamily": 2, + "MyProject": 1, + "Note": 1, + "could": 1, + "be": 1, + "removed": 1, + "IDOK": 1, + "t": 1, + "exist": 1, + "NoErrorMsg": 1, + "x64.nsh": 1, + "A": 1, + "few": 1, + "simple": 1, + "macros": 1, + "handle": 1, + "installations": 1, + "x64": 1, + "machines.": 1, + "RunningX64": 4, + "checks": 1, + "installer": 1, + "is": 2, + "running": 1, + "x64.": 1, + "If": 1, + "EndIf": 1, + "DisableX64FSRedirection": 4, + "disables": 1, + "system": 2, + "redirection.": 2, + "EnableX64FSRedirection": 4, + "enables": 1, + "SYSDIR": 1, + "some.dll": 2, + "#": 3, + "extracts": 2, + "C": 2, + "System32": 1, + "SysWOW64": 1, + "___X64__NSH___": 3, + "define": 4, + "include": 1, + "LogicLib.nsh": 1, + "macro": 3, + "_RunningX64": 1, + "_a": 1, + "_b": 1, + "_t": 2, + "_f": 2, + "insertmacro": 2, + "_LOGICLIB_TEMP": 3, + "System": 4, + "kernel32": 4, + "GetCurrentProcess": 1, + "i.s": 1, + "IsWow64Process": 1, + "*i.s": 1, + "Pop": 1, + "_": 1, + "macroend": 3, + "Wow64EnableWow64FsRedirection": 2, + "i0": 1, + "i1": 1 + }, + "Pod": { + "Id": 1, + "contents.pod": 1, + "v": 1, + "/05/04": 1, + "tower": 1, + "Exp": 1, + "begin": 3, + "html": 7, + "": 1, + "end": 4, + "head1": 2, + "Net": 12, + "Z3950": 12, + "AsyncZ": 16, + "head2": 3, + "Intro": 1, + "adds": 1, + "an": 3, + "additional": 1, + "layer": 1, + "of": 19, + "asynchronous": 4, + "support": 1, + "for": 11, + "the": 29, + "module": 6, + "through": 1, + "use": 1, + "multiple": 1, + "forked": 1, + "processes.": 1, + "I": 8, + "hope": 1, + "that": 9, + "users": 1, + "will": 1, + "also": 2, + "find": 1, + "it": 3, + "provides": 1, + "a": 8, + "convenient": 2, + "front": 1, + "to": 9, + "C": 13, + "": 1, + ".": 5, + "My": 1, + "initial": 1, + "idea": 1, + "was": 1, + "write": 1, + "something": 2, + "would": 1, + "provide": 1, + "means": 1, + "processing": 1, + "and": 14, + "formatting": 2, + "Z39.50": 1, + "records": 4, + "which": 3, + "did": 1, + "using": 1, + "": 2, + "synchronous": 1, + "code.": 1, + "But": 3, + "wanted": 1, + "could": 1, + "handle": 1, + "queries": 1, + "large": 1, + "numbers": 1, + "servers": 1, + "at": 1, + "one": 1, + "session.": 1, + "Working": 1, + "on": 1, + "this": 3, + "part": 3, + "my": 1, + "project": 1, + "found": 1, + "had": 1, + "trouble": 1, + "with": 6, + "features": 1, + "so": 1, + "ended": 1, + "up": 1, + "what": 1, + "have": 3, + "here.": 1, + "give": 2, + "more": 4, + "detailed": 4, + "account": 2, + "in": 9, + "": 4, + "href=": 5, + "": 1, + "DESCRIPTION": 1, + "": 1, + "": 5, + "section": 2, + "": 5, + "AsyncZ.html": 2, + "": 6, + "pod": 3, + "B": 1, + "": 1, + "": 1, + "cut": 3, + "Documentation": 1, + "over": 2, + "item": 10, + "AsyncZ.pod": 1, + "This": 4, + "is": 8, + "starting": 2, + "point": 2, + "gives": 2, + "overview": 2, + "describes": 2, + "basic": 4, + "mechanics": 2, + "its": 2, + "workings": 2, + "details": 5, + "particulars": 2, + "objects": 2, + "methods.": 2, + "see": 2, + "L": 1, + "": 1, + "explanations": 2, + "sample": 2, + "scripts": 2, + "come": 2, + "": 2, + "distribution.": 2, + "Options.pod": 1, + "document": 2, + "various": 2, + "options": 2, + "can": 4, + "be": 2, + "set": 2, + "modify": 2, + "behavior": 2, + "Index": 1, + "Report.pod": 2, + "deals": 2, + "how": 4, + "are": 7, + "treated": 2, + "line": 4, + "by": 2, + "you": 4, + "affect": 2, + "apearance": 2, + "record": 2, + "s": 2, + "HOW": 2, + "TO.": 2, + "back": 2, + "": 1, + "The": 6, + "Modules": 1, + "There": 2, + "modules": 5, + "than": 2, + "there": 2, + "documentation.": 2, + "reason": 2, + "only": 2, + "full": 2, + "complete": 2, + "access": 9, + "other": 2, + "either": 2, + "internal": 2, + "": 1, + "or": 4, + "accessed": 2, + "indirectly": 2, + "indirectly.": 2, + "head3": 1, + "Here": 1, + "main": 1, + "direct": 2, + "documented": 7, + "": 4, + "": 2, + "documentation": 4, + "ErrMsg": 1, + "User": 1, + "error": 1, + "message": 1, + "handling": 2, + "indirect": 2, + "Errors": 1, + "Error": 1, + "debugging": 1, + "limited": 2, + "Report": 1, + "Module": 1, + "reponsible": 1, + "fetching": 1, + "ZLoop": 1, + "Event": 1, + "loop": 1, + "child": 3, + "processes": 3, + "no": 2, + "not": 2, + "ZSend": 1, + "Connection": 1, + "Options": 2, + "_params": 1, + "INDEX": 1 + }, + "AutoHotkey": { + "MsgBox": 1, + "Hello": 1, + "World": 1 + }, + "TXL": { + "define": 12, + "program": 1, + "[": 38, + "expression": 9, + "]": 38, + "end": 12, + "term": 6, + "|": 3, + "addop": 2, + "primary": 4, + "mulop": 2, + "number": 10, + "(": 2, + ")": 2, + "-": 3, + "/": 3, + "rule": 12, + "main": 1, + "replace": 6, + "E": 3, + "construct": 1, + "NewE": 3, + "resolveAddition": 2, + "resolveSubtraction": 2, + "resolveMultiplication": 2, + "resolveDivision": 2, + "resolveParentheses": 2, + "where": 1, + "not": 1, + "by": 6, + "N1": 8, + "+": 2, + "N2": 8, + "*": 2, + "N": 2 + }, + "wisp": { + ";": 199, + "#": 2, + "wisp": 6, + "Wisp": 13, + "is": 20, + "homoiconic": 1, + "JS": 17, + "dialect": 1, + "with": 6, + "a": 24, + "clojure": 2, + "syntax": 2, + "s": 7, + "-": 33, + "expressions": 6, + "and": 9, + "macros.": 1, + "code": 3, + "compiles": 1, + "to": 21, + "human": 1, + "readable": 1, + "javascript": 1, + "which": 3, + "one": 3, + "of": 16, + "they": 3, + "key": 3, + "differences": 1, + "from": 2, + "clojurescript.": 1, + "##": 2, + "data": 1, + "structures": 1, + "nil": 4, + "just": 3, + "like": 2, + "js": 1, + "undefined": 1, + "differenc": 1, + "that": 7, + "it": 10, + "shortcut": 1, + "for": 5, + "void": 2, + "(": 77, + ")": 75, + "in": 16, + "JS.": 2, + "Booleans": 1, + "booleans": 2, + "true": 6, + "/": 1, + "false": 2, + "are": 14, + "Numbers": 1, + "numbers": 2, + "Strings": 2, + "strings": 3, + "can": 13, + "be": 15, + "multiline": 1, + "Characters": 2, + "sugar": 1, + "single": 1, + "char": 1, + "Keywords": 3, + "symbolic": 2, + "identifiers": 2, + "evaluate": 2, + "themselves.": 1, + "keyword": 1, + "Since": 1, + "string": 1, + "constats": 1, + "fulfill": 1, + "this": 2, + "purpose": 2, + "keywords": 1, + "compile": 3, + "equivalent": 2, + "strings.": 1, + "window.addEventListener": 1, + "load": 1, + "handler": 1, + "invoked": 2, + "as": 4, + "functions": 8, + "desugars": 1, + "plain": 2, + "associated": 2, + "value": 2, + "access": 1, + "bar": 4, + "foo": 6, + "[": 22, + "]": 22, + "Vectors": 1, + "vectors": 1, + "arrays.": 1, + "Note": 3, + "Commas": 2, + "white": 1, + "space": 1, + "&": 6, + "used": 1, + "if": 7, + "desired": 1, + "Maps": 2, + "hash": 1, + "maps": 1, + "objects.": 1, + "unlike": 1, + "keys": 1, + "not": 4, + "arbitary": 1, + "types.": 1, + "{": 4, + "beep": 1, + "bop": 1, + "}": 4, + "optional": 2, + "but": 7, + "come": 1, + "handy": 1, + "separating": 1, + "pairs.": 1, + "b": 5, + "In": 5, + "future": 2, + "JSONs": 1, + "may": 1, + "made": 2, + "compatible": 1, + "map": 3, + "syntax.": 1, + "Lists": 1, + "You": 1, + "up": 1, + "lists": 1, + "representing": 1, + "expressions.": 1, + "The": 1, + "first": 4, + "item": 2, + "the": 9, + "expression": 6, + "function": 7, + "being": 1, + "rest": 7, + "items": 2, + "arguments.": 2, + "baz": 2, + "Conventions": 1, + "puts": 1, + "lot": 2, + "effort": 1, + "making": 1, + "naming": 1, + "conventions": 3, + "transparent": 1, + "by": 2, + "encouraning": 1, + "lisp": 1, + "then": 1, + "translating": 1, + "them": 1, + "dash": 1, + "delimited": 1, + "dashDelimited": 1, + "predicate": 1, + "isPredicate": 1, + "__privates__": 1, + "list": 2, + "vector": 1, + "listToVector": 1, + "As": 1, + "side": 2, + "effect": 1, + "some": 2, + "names": 1, + "expressed": 3, + "few": 1, + "ways": 1, + "although": 1, + "third": 2, + "expression.": 1, + "<": 1, + "number": 3, + "Else": 1, + "missing": 1, + "conditional": 1, + "evaluates": 2, + "result": 2, + "will": 6, + ".": 6, + "monday": 1, + "today": 1, + "Compbining": 1, + "everything": 1, + "an": 1, + "sometimes": 1, + "might": 1, + "want": 2, + "compbine": 1, + "multiple": 1, + "into": 2, + "usually": 3, + "evaluating": 1, + "have": 2, + "effects": 1, + "do": 4, + "console.log": 2, + "+": 9, + "Also": 1, + "special": 4, + "form": 10, + "many.": 1, + "If": 2, + "evaluation": 1, + "nil.": 1, + "Bindings": 1, + "Let": 1, + "containing": 1, + "lexical": 1, + "context": 1, + "simbols": 1, + "bindings": 1, + "forms": 1, + "bound": 1, + "their": 2, + "respective": 1, + "results.": 1, + "let": 2, + "c": 1, + "Functions": 1, + "fn": 15, + "x": 22, + "named": 1, + "similar": 2, + "increment": 1, + "also": 2, + "contain": 1, + "documentation": 1, + "metadata.": 1, + "Docstring": 1, + "metadata": 1, + "presented": 1, + "compiled": 2, + "yet": 1, + "comments": 1, + "function.": 1, + "incerement": 1, + "added": 1, + "makes": 1, + "capturing": 1, + "arguments": 7, + "easier": 1, + "than": 1, + "argument": 1, + "follows": 1, + "simbol": 1, + "capture": 1, + "all": 4, + "args": 1, + "array.": 1, + "rest.reduce": 1, + "sum": 3, + "Overloads": 1, + "overloaded": 1, + "depending": 1, + "on": 1, + "take": 2, + "without": 2, + "introspection": 1, + "version": 1, + "y": 6, + "more": 3, + "more.reduce": 1, + "does": 1, + "has": 2, + "variadic": 1, + "overload": 1, + "passed": 1, + "throws": 1, + "exception.": 1, + "Other": 1, + "Special": 1, + "Forms": 1, + "Instantiation": 1, + "type": 2, + "instantiation": 1, + "consice": 1, + "needs": 1, + "suffixed": 1, + "character": 1, + "Type.": 1, + "options": 2, + "More": 1, + "verbose": 1, + "there": 1, + "new": 2, + "Class": 1, + "Method": 1, + "calls": 3, + "method": 2, + "no": 1, + "different": 1, + "Any": 1, + "quoted": 1, + "prevent": 1, + "doesn": 1, + "t": 1, + "unless": 5, + "or": 2, + "macro": 7, + "try": 1, + "implemting": 1, + "understand": 1, + "use": 2, + "case": 1, + "We": 1, + "execute": 1, + "body": 4, + "condition": 4, + "defn": 2, + "Although": 1, + "following": 2, + "log": 1, + "anyway": 1, + "since": 1, + "exectued": 1, + "before": 1, + "called.": 1, + "Macros": 2, + "solve": 1, + "problem": 1, + "because": 1, + "immediately.": 1, + "Instead": 1, + "you": 1, + "get": 2, + "choose": 1, + "when": 1, + "evaluated.": 1, + "return": 1, + "instead.": 1, + "defmacro": 3, + "less": 1, + "how": 1, + "build": 1, + "implemented.": 1, + "define": 4, + "name": 2, + "def": 1, + "@body": 1, + "Now": 1, + "we": 2, + "above": 1, + "defined": 1, + "expanded": 2, + "time": 1, + "resulting": 1, + "diff": 1, + "program": 1, + "output.": 1, + "print": 1, + "message": 2, + ".log": 1, + "console": 1, + "Not": 1, + "macros": 2, + "via": 2, + "templating": 1, + "language": 1, + "available": 1, + "at": 1, + "hand": 1, + "assemble": 1, + "form.": 1, + "For": 2, + "instance": 1, + "ease": 1, + "functional": 1, + "chanining": 1, + "popular": 1, + "chaining.": 1, + "example": 1, + "API": 1, + "pioneered": 1, + "jQuery": 1, + "very": 2, + "common": 1, + "open": 2, + "target": 1, + "keypress": 2, + "filter": 2, + "isEnterKey": 1, + "getInputText": 1, + "reduce": 3, + "render": 2, + "Unfortunately": 1, + "though": 1, + "requires": 1, + "need": 1, + "methods": 1, + "dsl": 1, + "object": 1, + "limited.": 1, + "Making": 1, + "party": 1, + "second": 1, + "class.": 1, + "Via": 1, + "achieve": 1, + "chaining": 1, + "such": 1, + "tradeoffs.": 1, + "operations": 3, + "operation": 3, + "cons": 2, + "tagret": 1, + "enter": 1, + "input": 1, + "text": 1 + }, + "Mathematica": { + "BeginPackage": 1, + "[": 74, + "]": 73, + ";": 41, + "PossiblyTrueQ": 3, + "usage": 22, + "PossiblyFalseQ": 2, + "PossiblyNonzeroQ": 3, + "Begin": 2, + "expr_": 4, + "Not": 6, + "TrueQ": 4, + "expr": 4, + "End": 2, + "AnyQ": 3, + "AnyElementQ": 4, + "AllQ": 2, + "AllElementQ": 2, + "AnyNonzeroQ": 2, + "AnyPossiblyNonzeroQ": 2, + "RealQ": 3, + "PositiveQ": 3, + "NonnegativeQ": 3, + "PositiveIntegerQ": 3, + "NonnegativeIntegerQ": 4, + "IntegerListQ": 5, + "PositiveIntegerListQ": 3, + "NonnegativeIntegerListQ": 3, + "IntegerOrListQ": 2, + "PositiveIntegerOrListQ": 2, + "NonnegativeIntegerOrListQ": 2, + "SymbolQ": 2, + "SymbolOrNumberQ": 2, + "cond_": 4, + "L_": 5, + "Fold": 3, + "Or": 1, + "False": 4, + "cond": 4, + "/@": 3, + "L": 4, + "Flatten": 1, + "And": 4, + "True": 2, + "SHEBANG#!#!=": 1, + "n_": 5, + "Im": 1, + "n": 8, + "Positive": 2, + "IntegerQ": 3, + "&&": 4, + "input_": 6, + "ListQ": 1, + "input": 11, + "MemberQ": 3, + "IntegerQ/@input": 1, + "||": 4, + "a_": 2, + "Head": 2, + "a": 3, + "Symbol": 2, + "NumericQ": 1, + "EndPackage": 1, + "Paclet": 1, + "Name": 1, + "-": 8, + "Version": 1, + "MathematicaVersion": 1, + "Description": 1, + "Creator": 1, + "Extensions": 1, + "{": 2, + "Language": 1, + "MainPage": 1, + "}": 2, + "Get": 1 + }, + "Coq": { + "Require": 17, + "Import": 11, + "Omega": 1, + "Relations": 2, + "Multiset": 2, + "SetoidList.": 1, + "Set": 4, + "Implicit": 15, + "Arguments.": 2, + "Local": 7, + "Notation": 39, + "nil.": 2, + "(": 1248, + "a": 207, + "..": 4, + "b": 89, + "[": 170, + "]": 173, + ")": 1249, + ".": 433, + "Section": 4, + "Permut.": 1, + "Variable": 7, + "A": 113, + "Type.": 3, + "eqA": 29, + "relation": 19, + "A.": 6, + "Hypothesis": 7, + "eqA_equiv": 1, + "Equivalence": 2, + "eqA.": 1, + "eqA_dec": 26, + "forall": 248, + "x": 266, + "y": 116, + "{": 39, + "}": 35, + "+": 227, + "Let": 8, + "emptyBag": 4, + "EmptyBag": 2, + "singletonBag": 10, + "SingletonBag": 2, + "_": 67, + "eqA_dec.": 2, + "Fixpoint": 36, + "list_contents": 30, + "l": 379, + "list": 78, + "multiset": 2, + "match": 70, + "with": 223, + "|": 457, + "munion": 18, + "end.": 52, + "Lemma": 51, + "list_contents_app": 5, + "m": 201, + "meq": 15, + "Proof.": 208, + "simple": 7, + "induction": 81, + ";": 375, + "simpl": 116, + "auto": 73, + "datatypes.": 47, + "intros.": 27, + "apply": 340, + "meq_trans": 10, + "l0": 7, + "Qed.": 194, + "Definition": 46, + "permutation": 43, + "permut_refl": 1, + "l.": 26, + "unfold": 58, + "permut_sym": 4, + "l1": 89, + "l2": 73, + "-": 508, + "l1.": 5, + "intros": 258, + "symmetry": 4, + "trivial.": 14, + "permut_trans": 5, + "n": 369, + "n.": 44, + "permut_cons_eq": 3, + "meq_left": 1, + "meq_singleton": 1, + "auto.": 47, + "permut_cons": 5, + "permut_app": 1, + "using": 18, + "l3": 12, + "l4": 3, + "in": 221, + "*": 59, + "specialize": 6, + "H0": 16, + "a0.": 1, + "repeat": 11, + "rewrite": 241, + "*.": 110, + "destruct": 94, + "a0": 15, + "as": 77, + "Ha": 6, + "H": 76, + "decide": 1, + "replace": 4, + "trivial": 15, + "permut_add_inside_eq": 1, + "permut_add_cons_inside": 3, + "permut_add_inside": 1, + "permut_middle": 1, + "permut_refl.": 5, + "permut_sym_app": 1, + "intro": 27, + "do": 4, + "arith.": 8, + "permut_rev": 1, + "rev": 7, + "simpl.": 70, + "permut_add_cons_inside.": 1, + "<->": 31, + "app_nil_end": 1, + "Qed": 23, + "Some": 21, + "inversion": 104, + "results": 1, + "permut_conv_inv": 1, + "e": 53, + "l2.": 8, + "generalize": 13, + "plus_reg_l.": 1, + "permut_app_inv1": 1, + "clear": 7, + "H.": 100, + "list_contents_app.": 1, + "plus_reg_l": 1, + "multiplicity": 6, + "plus_comm": 3, + "plus_comm.": 3, + "Fact": 3, + "if_eqA_then": 1, + "B": 6, + "then": 9, + "else": 9, + "Type": 86, + "if": 10, + "if_eqA_refl": 3, + "b.": 14, + "decide_left": 1, + "Global": 5, + "Instance": 7, + "if_eqA": 1, + "contradict": 3, + "transitivity": 4, + "a2": 62, + "a1": 56, + "A1": 2, + "eauto": 10, + "if_eqA_rewrite_r": 1, + "A2": 4, + "Hxx": 1, + "multiplicity_InA": 4, + "InA": 8, + "<": 76, + "a.": 6, + "split": 14, + "right.": 9, + "IHl": 8, + "multiplicity_InA_O": 2, + "multiplicity_InA_S": 1, + "multiplicity_NoDupA": 1, + "NoDupA": 3, + "inversion_clear": 6, + "H1.": 31, + "EQ": 8, + "NEQ": 1, + "constructor": 6, + "omega": 7, + "Permutation": 38, + "is": 4, + "compatible": 1, + "permut_InA_InA": 3, + "e.": 15, + "multiplicity_InA.": 1, + "meq.": 2, + "permut_cons_InA": 3, + "permut_nil": 3, + "assert": 68, + "by": 7, + "Abs": 2, + "permut_length_1": 1, + "P": 32, + "discriminate.": 2, + "permut_length_2": 1, + "b1": 35, + "b2": 23, + "/": 41, + "P.": 5, + "left": 6, + "permut_length_1.": 2, + "red": 6, + "@if_eqA_rewrite_l": 2, + "omega.": 7, + "permut_length": 1, + "length": 21, + "InA_split": 1, + "h2": 1, + "t2": 51, + "H1": 18, + "H2": 12, + "subst": 7, + "app_length.": 2, + "plus_n_Sm": 1, + "f_equal.": 1, + "app_length": 1, + "IHl1": 1, + "permut_remove_hd": 1, + "revert": 5, + "f_equal": 1, + "if_eqA_rewrite_l": 1, + "NoDupA_equivlistA_permut": 1, + "Equivalence_Reflexive.": 1, + "change": 1, + "Equivalence_Reflexive": 1, + "Forall2": 2, + "permutation_Permutation": 1, + "exists": 60, + "Forall2.": 1, + "pose": 2, + "proof": 1, + "&": 21, + "IHP": 2, + "IHA": 2, + "Forall2_app_inv_r": 1, + "Hl1": 1, + "Hl2": 1, + "split.": 17, + "Permutation_cons_app": 3, + "Forall2_app": 1, + "Forall2_cons": 1, + "Heq": 8, + "Permutation_impl_permutation": 1, + "permut_eqA": 1, + "End": 15, + "Permut_permut.": 1, + "permut_right": 1, + "only": 3, + "parsing": 3, + "permut_tran": 1, + "Export": 10, + "Imp.": 1, + "Relations.": 1, + "Inductive": 41, + "tm": 43, + "tm_const": 45, + "nat": 108, + "tm_plus": 30, + "tm.": 3, + "Tactic": 9, + "tactic": 9, + "first": 18, + "ident": 9, + "c": 70, + "Case_aux": 38, + "Module": 11, + "SimpleArith0.": 2, + "eval": 8, + "t": 93, + "SimpleArith1.": 2, + "Reserved": 4, + "at": 17, + "level": 11, + "associativity": 7, + "Prop": 17, + "E_Const": 2, + "E_Plus": 2, + "t1": 48, + "n1": 45, + "n2": 41, + "plus": 10, + "where": 6, + "Example": 37, + "test_step_1": 1, + "ST_Plus1.": 2, + "ST_PlusConstConst.": 3, + "test_step_2": 1, + "ST_Plus2.": 2, + "Theorem": 115, + "step_deterministic": 1, + "partial_function": 6, + "step.": 3, + "partial_function.": 5, + "y1": 6, + "y2": 5, + "Hy1": 2, + "Hy2.": 2, + "dependent": 6, + "y2.": 3, + "step_cases": 4, + "Case": 51, + "Hy2": 3, + "SCase.": 3, + "SCase": 24, + "reflexivity.": 199, + "H2.": 20, + "Hy1.": 5, + "IHHy1": 2, + "assumption.": 61, + "SimpleArith2.": 1, + "value": 25, + "v_const": 4, + "step": 9, + "ST_PlusConstConst": 3, + "ST_Plus1": 2, + "v1": 7, + "subst.": 43, + "H3.": 5, + "0": 5, + "reflexivity": 16, + "assumption": 10, + "strong_progress": 2, + "R": 54, + "value_not_same_as_normal_form": 2, + "normal_form": 3, + "t.": 4, + "normal_form.": 2, + "v_funny.": 1, + "not.": 3, + "Temp1.": 1, + "Temp2.": 1, + "ST_Funny": 1, + "H0.": 24, + "H4.": 2, + "Temp3.": 1, + "Temp4.": 2, + "tm_true": 8, + "tm_false": 5, + "tm_if": 10, + "v_true": 1, + "v_false": 1, + "tm_false.": 3, + "ST_IfTrue": 1, + "ST_IfFalse": 1, + "ST_If": 1, + "t3": 6, + "bool_step_prop4": 1, + "bool_step_prop4_holds": 1, + "bool_step_prop4.": 2, + "ST_ShortCut.": 1, + "constructor.": 16, + "left.": 3, + "IHt1.": 1, + "t2.": 4, + "t3.": 2, + "ST_If.": 2, + "Temp5.": 1, + "stepmany": 4, + "refl_step_closure": 11, + "normalizing": 1, + "X": 191, + "IHt2": 3, + "H11": 2, + "H12": 2, + "H21": 3, + "H22": 2, + "nf_same_as_value": 3, + "H12.": 1, + "H22.": 1, + "H11.": 1, + "rsc_trans": 4, + "stepmany_congr_1": 1, + "stepmany_congr2": 1, + "rsc_R": 2, + "r": 11, + "eval__value": 1, + "HE.": 1, + "eval_cases": 1, + "HE": 1, + "v_const.": 1, + "List": 2, + "Setoid": 1, + "Compare_dec": 1, + "Morphisms.": 2, + "ListNotations.": 1, + "Permutation.": 2, + "perm_nil": 1, + "perm_skip": 1, + "Hint": 9, + "Constructors": 3, + "Permutation_nil": 2, + "HF.": 3, + "remember": 12, + "@nil": 1, + "HF": 2, + "discriminate": 3, + "||": 1, + "Permutation_nil_cons": 1, + "nil": 46, + "Permutation_refl": 1, + "exact": 4, + "IHl.": 7, + "Permutation_sym": 1, + "Hperm": 7, + "perm_trans": 1, + "Permutation_trans": 4, + "Proper": 5, + "Logic.eq": 2, + "@Permutation": 5, + "iff": 1, + "@In": 1, + "Permutation_in.": 2, + "Permutation_app_tail": 2, + "tl": 8, + "eapply": 8, + "Permutation_app_head": 2, + "app_comm_cons": 5, + "Permutation_app": 3, + "Hpermmm": 1, + "idtac": 1, + "try": 17, + "@app": 1, + "now": 24, + "Permutation_app.": 1, + "Permutation_add_inside": 1, + "Permutation_cons_append": 1, + "Resolve": 5, + "Permutation_cons_append.": 3, + "Permutation_app_comm": 3, + "app_nil_r": 1, + "app_assoc": 2, + "Permutation_middle": 2, + "Proof": 12, + "Permutation_rev": 3, + "1": 1, + "@rev": 1, + "2": 1, + "Permutation_length": 2, + "@length": 1, + "Permutation_length.": 1, + "Permutation_ind_bis": 2, + "Hnil": 1, + "Hskip": 3, + "Hswap": 2, + "Htrans.": 1, + "Htrans": 1, + "eauto.": 7, + "Ltac": 1, + "break_list": 5, + "injection": 4, + "Permutation_nil_app_cons": 1, + "Hp": 5, + "IH": 3, + "Permutation_middle.": 3, + "perm_swap.": 2, + "perm_swap": 1, + "eq_refl": 2, + "In_split": 1, + "Permutation_app_inv": 1, + "NoDup": 4, + "incl": 3, + "N.": 1, + "E": 7, + "Hx.": 5, + "In": 6, + "Hy": 14, + "N": 1, + "Hal": 1, + "Hl": 1, + "exfalso.": 1, + "Hx": 20, + "NoDup_Permutation_bis": 2, + "intuition.": 2, + "Permutation_NoDup": 1, + "Permutation_map": 1, + "Hf": 15, + "Hy.": 3, + "injective_bounded_surjective": 1, + "f": 108, + "injective": 6, + "set": 1, + "seq": 2, + "map": 4, + "x.": 3, + "in_map_iff.": 2, + "in_seq": 4, + "arith": 4, + "NoDup_cardinal_incl": 1, + "injective_map_NoDup": 2, + "seq_NoDup": 1, + "map_length": 1, + "in_map_iff": 1, + "nat_bijection_Permutation": 1, + "let": 3, + "BD.": 1, + "seq_NoDup.": 1, + "map_length.": 1, + "Injection": 1, + "Permutation_alt": 1, + "Alternative": 1, + "characterization": 1, + "of": 4, + "via": 1, + "nth_error": 7, + "and": 1, + "nth": 2, + "adapt": 4, + "S": 186, + "le_lt_dec": 9, + "pred": 3, + "adapt_injective": 1, + "adapt.": 2, + "EQ.": 2, + "LE": 11, + "LT": 14, + "eq_add_S": 2, + "Hf.": 1, + "Lt.le_lt_or_eq": 3, + "LE.": 3, + "lt": 3, + "LT.": 5, + "Lt.S_pred": 3, + "elim": 21, + "Lt.lt_not_le": 2, + "adapt_ok": 2, + "nth_error_app1": 1, + "nth_error_app2": 1, + "Minus.minus_Sn_m": 1, + "Permutation_nth_error": 2, + "fun": 17, + "IHP2": 1, + "g": 6, + "Hg": 2, + "E.": 2, + "L12": 2, + "plus_n_Sm.": 1, + "adapt_injective.": 1, + "nth_error_None": 4, + "Hn": 1, + "Hf2": 1, + "Hf3": 2, + "Lt.le_or_lt": 1, + "d": 6, + "Lt.lt_irrefl": 2, + "Lt.lt_le_trans": 2, + "Hf1": 1, + "congruence.": 1, + "Permutation_alt.": 1, + "Permutation_app_swap": 1, + "SfLib.": 2, + "STLC.": 1, + "ty": 7, + "ty_Bool": 10, + "ty_arrow": 7, + "ty.": 2, + "tm_var": 6, + "id": 7, + "tm_app": 7, + "tm_abs": 9, + "Id": 7, + "idB": 2, + "idBB": 2, + "idBBBB": 2, + "k": 7, + "v_abs": 1, + "T": 49, + "t_true": 1, + "t_false": 1, + "value.": 1, + "s": 13, + "beq_id": 14, + "ST_App2": 1, + "step_example3": 1, + "idB.": 1, + "rsc_step.": 2, + "ST_App1.": 2, + "ST_AppAbs.": 3, + "v_abs.": 2, + "rsc_refl.": 4, + "context": 1, + "partial_map": 4, + "Context.": 1, + "option": 6, + "empty": 3, + "None": 9, + "extend": 1, + "Gamma": 10, + "has_type": 4, + "appears_free_in": 1, + "S.": 1, + "HT": 1, + "T_Var.": 1, + "extend_neq": 1, + "Heqe.": 3, + "rename": 2, + "i": 11, + "into": 2, + "y.": 15, + "T_Abs.": 1, + "context_invariance...": 2, + "beq_id_eq": 4, + "Hafi.": 2, + "extend.": 2, + "IHt.": 1, + "x0": 14, + "Coiso1.": 2, + "Coiso2.": 3, + "HeqCoiso1.": 1, + "HeqCoiso2.": 1, + "beq_id_false_not_eq.": 1, + "ex_falso_quodlibet.": 1, + "preservation": 1, + "HT.": 1, + "substitution_preserves_typing": 1, + "T11.": 4, + "HT1.": 1, + "T_App": 2, + "IHHT1.": 1, + "IHHT2.": 1, + "tm_cases": 1, + "Ht": 1, + "Ht.": 3, + "IHt1": 2, + "T11": 2, + "T0": 2, + "ST_App2.": 1, + "ty_Bool.": 1, + "T.": 9, + "IHt3": 1, + "ST_IfTrue.": 1, + "ST_IfFalse.": 1, + "types_unique": 1, + "T1": 25, + "T12": 2, + "IHhas_type.": 1, + "IHhas_type1.": 1, + "IHhas_type2.": 1, + "Sorted.": 1, + "Mergesort.": 1, + "Basics.": 2, + "NatList.": 2, + "Playground1.": 5, + "natprod": 5, + "pair": 7, + "natprod.": 1, + "fst": 3, + "p": 81, + "snd": 3, + "swap_pair": 1, + "surjective_pairing": 1, + "count": 7, + "beq_nat": 24, + "v": 28, + "remove_one": 3, + "end": 16, + "test_remove_one1": 1, + "O": 98, + "O.": 5, + "remove_all": 2, + "bag": 3, + "true": 68, + "false": 48, + "app_ass": 1, + "natlist": 7, + "l3.": 1, + "cons": 26, + "remove_decreases_count": 1, + "ble_nat": 6, + "true.": 16, + "s.": 4, + "ble_n_Sn.": 1, + "IHs.": 2, + "natoption": 5, + "natoption.": 1, + "index": 3, + "option_elim": 2, + "o": 25, + "hd_opt": 8, + "test_hd_opt1": 2, + "None.": 2, + "test_hd_opt2": 2, + "option_elim_hd": 1, + "head": 1, + "beq_natlist": 5, + "bool": 38, + "r1": 2, + "v2": 2, + "r2": 2, + "test_beq_natlist1": 1, + "test_beq_natlist2": 1, + "beq_natlist_refl": 1, + "beq_nat_refl": 3, + "silly1": 1, + "eq1": 6, + "eq2.": 9, + "eq2": 1, + "silly2a": 1, + "q": 15, + "eq1.": 5, + "silly_ex": 1, + "evenb": 5, + "oddb": 5, + "silly3": 1, + "symmetry.": 2, + "rev_exercise": 1, + "rev_involutive.": 1, + "beq_nat_sym": 2, + "IHn": 12, + "Lists.": 1, + "X.": 4, + "h": 14, + "app": 5, + "snoc": 9, + "Arguments": 11, + "list123": 1, + "right": 2, + "test_repeat1": 1, + "nil_app": 1, + "rev_snoc": 1, + "snoc_with_append": 1, + "v.": 1, + "IHl1.": 1, + "prod": 3, + "Y": 38, + "Y.": 1, + "type_scope.": 1, + "combine": 3, + "lx": 4, + "ly": 4, + "tx": 2, + "tp": 2, + "xs": 7, + "plus3": 2, + "prod_curry": 3, + "Z": 11, + "prod_uncurry": 3, + "uncurry_uncurry": 1, + "curry_uncurry": 1, + "p.": 9, + "filter": 3, + "test": 4, + "countoddmembers": 1, + "fmostlytrue": 5, + "override": 5, + "ftrue": 1, + "false.": 12, + "override_example1": 1, + "override_example2": 1, + "override_example3": 1, + "override_example4": 1, + "override_example": 1, + "constfun": 1, + "unfold_example_bad": 1, + "m.": 21, + "plus3.": 1, + "override_eq": 1, + "f.": 1, + "override.": 2, + "override_neq": 1, + "x1": 11, + "x2": 3, + "k1": 5, + "k2": 4, + "x1.": 3, + "eq.": 11, + "silly4": 1, + "silly5": 1, + "sillyex1": 1, + "z": 14, + "j": 6, + "j.": 1, + "silly6": 1, + "contra.": 19, + "silly7": 1, + "sillyex2": 1, + "z.": 6, + "beq_nat_eq": 2, + "assertion": 3, + "Hl.": 1, + "IHm": 2, + "eq": 4, + "SSCase": 3, + "beq_nat_O_l": 1, + "beq_nat_O_r": 1, + "double_injective": 1, + "double": 2, + "fold_map": 2, + "fold": 1, + "total": 2, + "fold_map_correct": 1, + "fold_map.": 1, + "forallb": 4, + "andb": 8, + "existsb": 3, + "orb": 8, + "existsb2": 2, + "negb": 10, + "existsb_correct": 1, + "existsb2.": 1, + "index_okx": 1, + "mumble": 5, + "mumble.": 1, + "grumble": 3, + "day": 9, + "monday": 5, + "tuesday": 3, + "wednesday": 3, + "thursday": 3, + "friday": 3, + "saturday": 3, + "sunday": 2, + "day.": 1, + "next_weekday": 3, + "test_next_weekday": 1, + "tuesday.": 1, + "bool.": 1, + "test_orb1": 1, + "test_orb2": 1, + "test_orb3": 1, + "test_orb4": 1, + "nandb": 5, + "test_nandb1": 1, + "test_nandb2": 1, + "test_nandb3": 1, + "test_nandb4": 1, + "andb3": 5, + "b3": 2, + "test_andb31": 1, + "test_andb32": 1, + "test_andb33": 1, + "test_andb34": 1, + "nat.": 4, + "minustwo": 1, + "test_oddb1": 1, + "test_oddb2": 1, + "mult": 3, + "minus": 3, + "exp": 2, + "base": 3, + "power": 2, + "factorial": 2, + "test_factorial1": 1, + "nat_scope.": 3, + "plus_O_n": 1, + "plus_1_1": 1, + "mult_0_1": 1, + "plus_id_example": 1, + "plus_id_exercise": 1, + "o.": 4, + "mult_0_plus": 1, + "plus_O_n.": 1, + "mult_1_plus": 1, + "plus_1_1.": 1, + "mult_1": 1, + "plus_1_neq_0": 1, + "plus_distr.": 1, + "plus_rearrange": 1, + "q.": 2, + "plus_swap": 2, + "plus_assoc.": 4, + "plus_swap.": 2, + "mult_comm": 2, + "mult_0_r.": 4, + "mult_distr": 1, + "mult_1_distr.": 1, + "mult_1.": 1, + "bad": 1, + "zero_nbeq_S": 1, + "andb_false_r": 1, + "plus_ble_compat_1": 1, + "IHp.": 2, + "S_nbeq_0": 1, + "mult_1_1": 1, + "plus_0_r.": 1, + "all3_spec": 1, + "c.": 5, + "mult_plus_1": 1, + "IHm.": 1, + "mult_mult": 1, + "IHn.": 3, + "mult_plus_1.": 1, + "mult_plus_distr_r": 1, + "mult_mult.": 3, + "plus_assoc": 1, + "H3": 4, + "mult_assoc": 1, + "mult_plus_distr_r.": 1, + "bin": 9, + "BO": 4, + "D": 9, + "M": 4, + "bin.": 1, + "incbin": 2, + "bin2un": 3, + "bin_comm": 1, + "PermutSetoid": 1, + "Sorting.": 1, + "defs.": 2, + "leA": 25, + "gtA": 1, + "leA_dec": 4, + "leA_refl": 1, + "leA_trans": 2, + "leA_antisym": 1, + "leA_refl.": 1, + "Immediate": 1, + "leA_antisym.": 1, + "Tree": 24, + "Tree_Leaf": 9, + "Tree_Node": 11, + "Tree.": 1, + "leA_Tree": 16, + "True": 1, + "T2": 20, + "leA_Tree_Leaf": 5, + "Tree_Leaf.": 1, + "leA_Tree_Node": 1, + "G": 6, + "is_heap": 18, + "nil_is_heap": 5, + "node_is_heap": 7, + "invert_heap": 3, + "T2.": 1, + "is_heap_rect": 1, + "PG": 2, + "PD": 2, + "PN.": 2, + "H4": 7, + "X0": 2, + "is_heap_rec": 1, + "low_trans": 3, + "merge_lem": 3, + "merge_exist": 5, + "Sorted": 5, + "HdRel": 4, + "@meq": 4, + "red.": 1, + "meq_trans.": 1, + "Defined.": 1, + "@munion": 1, + "meq_congr.": 1, + "merge": 5, + "fix": 2, + "Sorted_inv": 2, + "merge0.": 2, + "cons_sort": 2, + "cons_leA": 2, + "munion_ass.": 2, + "cons_leA.": 2, + "@HdRel_inv": 2, + "merge0": 1, + "setoid_rewrite": 2, + "munion_ass": 1, + "munion_comm.": 2, + "munion_comm": 1, + "contents": 12, + "equiv_Tree": 1, + "insert_spec": 3, + "insert_exist": 4, + "insert": 2, + "treesort_twist1": 1, + "T3": 2, + "HeapT3": 1, + "ConT3": 1, + "LeA.": 1, + "LeA": 1, + "treesort_twist2": 1, + "build_heap": 3, + "heap_exist": 3, + "list_to_heap": 2, + "nil_is_heap.": 1, + "meq_right": 2, + "meq_sym": 2, + "flat_spec": 3, + "flat_exist": 3, + "heap_to_list": 2, + "s1": 20, + "i1": 15, + "m1": 1, + "s2": 2, + "i2": 10, + "m2.": 1, + "meq_congr": 1, + "munion_rotate.": 1, + "treesort": 1, + "permutation.": 1, + "Logic.": 1, + "Prop.": 1, + "next_nat_partial_function": 1, + "next_nat.": 1, + "Q.": 2, + "le_not_a_partial_function": 1, + "le": 1, + "Nonsense.": 4, + "le_n.": 6, + "le_S.": 4, + "total_relation_not_partial_function": 1, + "total_relation": 1, + "total_relation1.": 2, + "empty_relation_not_partial_funcion": 1, + "empty_relation.": 1, + "reflexive": 5, + "le_reflexive": 1, + "le.": 4, + "reflexive.": 1, + "transitive": 8, + "le_trans": 4, + "Hnm": 3, + "Hmo.": 4, + "Hnm.": 3, + "IHHmo.": 1, + "lt_trans": 4, + "lt.": 2, + "transitive.": 1, + "le_S": 6, + "Hm": 1, + "le_Sn_le": 2, + "<=>": 12, + "le_S_n": 2, + "Sn_le_Sm__n_le_m.": 1, + "le_Sn_n": 5, + "not": 1, + "TODO": 1, + "Hmo": 1, + "symmetric": 2, + "antisymmetric": 3, + "le_antisymmetric": 1, + "Sn_le_Sm__n_le_m": 2, + "IHb": 1, + "equivalence": 1, + "order": 2, + "preorder": 1, + "le_order": 1, + "order.": 1, + "le_reflexive.": 1, + "le_antisymmetric.": 1, + "le_trans.": 1, + "clos_refl_trans": 8, + "rt_step": 1, + "rt_refl": 1, + "rt_trans": 3, + "next_nat_closure_is_le": 1, + "next_nat": 1, + "rt_refl.": 2, + "IHle.": 1, + "rt_step.": 2, + "nn.": 1, + "IHclos_refl_trans1.": 2, + "IHclos_refl_trans2.": 2, + "rsc_refl": 1, + "rsc_step": 4, + "r.": 3, + "IHrefl_step_closure": 1, + "rtc_rsc_coincide": 1, + "IHrefl_step_closure.": 1, + "AExp.": 2, + "aexp": 30, + "ANum": 18, + "APlus": 14, + "AMinus": 9, + "AMult": 9, + "aexp.": 1, + "bexp": 22, + "BTrue": 10, + "BFalse": 11, + "BEq": 9, + "BLe": 9, + "BNot": 9, + "BAnd": 10, + "bexp.": 1, + "aeval": 46, + "test_aeval1": 1, + "beval": 16, + "optimize_0plus": 15, + "e2": 54, + "e1": 58, + "test_optimize_0plus": 1, + "optimize_0plus_sound": 4, + "e1.": 1, + "IHe2.": 10, + "IHe1.": 11, + "aexp_cases": 3, + "IHe1": 6, + "IHe2": 6, + "optimize_0plus_all": 2, + "optimize_0plus_all_sound": 1, + "bexp_cases": 4, + "optimize_and": 5, + "optimize_and_sound": 1, + "IHe": 2, + "aevalR_first_try.": 2, + "aevalR": 18, + "E_Anum": 1, + "E_APlus": 2, + "E_AMinus": 2, + "E_AMult": 2, + "E_ANum": 1, + "bevalR": 11, + "E_BTrue": 1, + "E_BFalse": 1, + "E_BEq": 1, + "E_BLe": 1, + "E_BNot": 1, + "E_BAnd": 1, + "aeval_iff_aevalR": 9, + "IHa1": 1, + "IHa2": 1, + "beval_iff_bevalR": 1, + "IHbevalR": 1, + "IHbevalR1": 1, + "IHbevalR2": 1, + "IHa.": 1, + "IHa1.": 1, + "IHa2.": 1, + "silly_presburger_formula": 1, + "3": 2, + "id.": 1, + "id1": 2, + "id2": 2, + "beq_id_refl": 1, + "i.": 2, + "beq_nat_refl.": 1, + "i2.": 8, + "i1.": 3, + "beq_id_false_not_eq": 1, + "C.": 3, + "n0": 5, + "beq_false_not_eq": 1, + "not_eq_beq_id_false": 1, + "not_eq_beq_false.": 1, + "AId": 4, + "com_cases": 1, + "SKIP": 5, + "IFB": 4, + "WHILE": 5, + "c1": 14, + "c2": 9, + "e3": 1, + "cl": 1, + "st": 113, + "E_IfTrue": 2, + "THEN": 3, + "ELSE": 3, + "FI": 3, + "E_WhileEnd": 2, + "DO": 4, + "END": 4, + "E_WhileLoop": 2, + "ceval_cases": 1, + "E_Skip": 1, + "E_Ass": 1, + "E_Seq": 1, + "E_IfFalse": 1, + "assignment": 1, + "command": 2, + "st1": 2, + "IHi1": 3, + "Heqst1": 1, + "Hceval.": 4, + "Hceval": 2, + "bval": 2, + "ceval_step": 3, + "ceval_step_more": 7, + "x2.": 2, + "IHHce.": 2, + "%": 3, + "IHHce1.": 1, + "IHHce2.": 1, + "plus2": 1, + "nx": 3, + "ny": 2, + "XtimesYinZ": 1, + "ny.": 1, + "loop": 2, + "loopdef.": 1, + "Heqloopdef.": 8, + "contra1.": 1, + "IHcontra2.": 1, + "no_whiles": 15, + "com": 5, + "ct": 2, + "cf": 2, + "no_Whiles": 10, + "noWhilesSKIP": 1, + "noWhilesAss": 1, + "noWhilesSeq": 1, + "noWhilesIf": 1, + "no_whiles_eqv": 1, + "noWhilesSKIP.": 1, + "noWhilesAss.": 1, + "noWhilesSeq.": 1, + "IHc1.": 2, + "andb_true_elim1": 4, + "IHc2.": 2, + "andb_true_elim2": 4, + "noWhilesIf.": 1, + "andb_true_intro.": 2, + "no_whiles_terminate": 1, + "state": 6, + "st.": 7, + "update": 2, + "IHc1": 2, + "IHc2": 2, + "H5.": 1, + "Heqr.": 1, + "Heqr": 3, + "H8.": 1, + "H10": 1, + "beval_short_circuit": 5, + "beval_short_circuit_eqv": 1, + "sinstr": 8, + "SPush": 8, + "SLoad": 6, + "SPlus": 10, + "SMinus": 11, + "SMult": 11, + "sinstr.": 1, + "s_execute": 21, + "stack": 7, + "prog": 2, + "al": 3, + "bl": 3, + "s_execute1": 1, + "empty_state": 2, + "s_execute2": 1, + "s_compile": 36, + "s_compile1": 1, + "execute_theorem": 1, + "other": 20, + "other.": 4, + "app_ass.": 6, + "s_compile_correct": 1, + "app_nil_end.": 1, + "execute_theorem.": 1, + "Eqdep_dec.": 1, + "Arith.": 2, + "eq_rect_eq_nat": 2, + "Q": 3, + "eq_rect": 3, + "h.": 1, + "K_dec_set": 1, + "eq_nat_dec.": 1, + "Scheme": 1, + "le_ind": 1, + "le_n": 4, + "refl_equal": 4, + "pattern": 2, + "case": 2, + "contradiction": 8, + "m0": 1, + "HeqS": 3, + "HeqS.": 2, + "eq_rect_eq_nat.": 1, + "IHp": 2, + "dep_pair_intro": 2, + "<=n),>": 1, + "x=": 1, + "exist": 7, + "Heq.": 6, + "le_uniqueness_proof": 1, + "Hy0": 1, + "card": 2, + "card_interval": 1, + "<=n}>": 1, + "proj1_sig": 1, + "proj2_sig": 1, + "Hq": 3, + "Hpq.": 1, + "Hmn.": 1, + "Hmn": 1, + "interval_dec": 1, + "dep_pair_intro.": 3, + "eq_S.": 1, + "Hneq.": 2, + "card_inj_aux": 1, + "False.": 1, + "Hfbound": 1, + "Hfinj": 1, + "Hgsurj.": 1, + "Hgsurj": 3, + "Hfx": 2, + "le_n_O_eq.": 2, + "Hfbound.": 2, + "xSn": 21, + "bounded": 1, + "Hlefx": 1, + "Hgefx": 1, + "Hlefy": 1, + "Hgefy": 1, + "Hfinj.": 3, + "sym_not_eq.": 2, + "Heqf.": 2, + "Hneqy.": 2, + "le_lt_trans": 2, + "le_O_n.": 2, + "le_neq_lt": 2, + "Hneqx.": 2, + "pred_inj.": 1, + "lt_O_neq": 2, + "neq_dep_intro": 2, + "inj_restrict": 1, + "Heqf": 1, + "surjective": 1, + "Hlep.": 3, + "Hle": 1, + "Hlt": 3, + "Hfsurj": 2, + "le_n_S": 1, + "Hlep": 4, + "Hneq": 7, + "Heqx.": 2, + "Heqx": 4, + "Hle.": 1, + "le_not_lt": 1, + "lt_n_Sn.": 1, + "Hlt.": 1, + "lt_irrefl": 2, + "lt_le_trans": 1, + "Hneqx": 1, + "Hneqy": 1, + "Heqg": 1, + "Hdec": 3, + "Heqy": 1, + "Hginj": 1, + "HSnx.": 1, + "HSnx": 1, + "interval_discr": 1, + "<=m}>": 1, + "card_inj": 1, + "interval_dec.": 1, + "card_interval.": 2 + }, + "GAS": { + ".cstring": 1, + "LC0": 2, + ".ascii": 2, + ".text": 1, + ".globl": 2, + "_main": 2, + "LFB3": 4, + "pushq": 1, + "%": 6, + "rbp": 2, + "LCFI0": 3, + "movq": 1, + "rsp": 1, + "LCFI1": 2, + "leaq": 1, + "(": 1, + "rip": 1, + ")": 1, + "rdi": 1, + "call": 1, + "_puts": 1, + "movl": 1, + "eax": 1, + "leave": 1, + "ret": 1, + "LFE3": 2, + ".section": 1, + "__TEXT": 1, + "__eh_frame": 1, + "coalesced": 1, + "no_toc": 1, + "+": 2, + "strip_static_syms": 1, + "live_support": 1, + "EH_frame1": 2, + ".set": 5, + "L": 10, + "set": 10, + "LECIE1": 2, + "-": 7, + "LSCIE1": 2, + ".long": 6, + ".byte": 20, + "xc": 1, + ".align": 2, + "_main.eh": 2, + "LSFDE1": 1, + "LEFDE1": 2, + "LASFDE1": 3, + ".quad": 2, + ".": 1, + "xe": 1, + "xd": 1, + ".subsections_via_symbols": 1 + }, + "Verilog": { + "////////////////////////////////////////////////////////////////////////////////": 14, + "//": 117, + "timescale": 10, + "ns": 8, + "/": 11, + "ps": 8, + "module": 18, + "button_debounce": 3, + "(": 378, + "input": 68, + "clk": 40, + "clock": 3, + "reset_n": 32, + "asynchronous": 2, + "reset": 13, + "button": 25, + "bouncy": 1, + "output": 42, + "reg": 26, + "debounce": 6, + "debounced": 1, + "-": 73, + "cycle": 1, + "signal": 3, + ")": 378, + ";": 287, + "parameter": 7, + "CLK_FREQUENCY": 4, + "DEBOUNCE_HZ": 4, + "localparam": 4, + "COUNT_VALUE": 2, + "WAIT": 6, + "FIRE": 4, + "COUNT": 4, + "[": 179, + "]": 179, + "state": 6, + "next_state": 6, + "count": 6, + "always": 23, + "@": 16, + "posedge": 11, + "or": 14, + "negedge": 8, + "<": 47, + "begin": 46, + "if": 23, + "end": 48, + "else": 22, + "case": 3, + "<=>": 4, + "1": 7, + "endcase": 3, + "default": 2, + "endmodule": 18, + "pipeline_registers": 1, + "BIT_WIDTH": 5, + "pipe_in": 4, + "pipe_out": 5, + "NUMBER_OF_STAGES": 7, + "generate": 3, + "genvar": 3, + "i": 62, + "*": 4, + "BIT_WIDTH*": 5, + "pipe_gen": 6, + "for": 4, + "+": 36, + "pipeline": 2, + "BIT_WIDTH*i": 2, + "endgenerate": 3, + "ns/1ps": 2, + "e0": 1, + "x": 41, + "y": 21, + "assign": 23, + "{": 11, + "}": 11, + "e1": 1, + "ch": 1, + "z": 7, + "o": 6, + "&": 6, + "maj": 1, + "|": 2, + "s0": 1, + "s1": 1, + "ps2_mouse": 1, + "Clock": 14, + "Input": 2, + "Reset": 1, + "inout": 2, + "ps2_clk": 3, + "PS2": 2, + "Bidirectional": 2, + "ps2_dat": 3, + "Data": 13, + "the_command": 2, + "Command": 1, + "to": 3, + "send": 2, + "mouse": 1, + "send_command": 2, + "Signal": 2, + "command_was_sent": 2, + "command": 1, + "finished": 1, + "sending": 1, + "error_communication_timed_out": 3, + "received_data": 2, + "Received": 1, + "data": 4, + "received_data_en": 4, + "If": 1, + "new": 1, + "has": 1, + "been": 1, + "received": 1, + "start_receiving_data": 3, + "wait_for_incoming_data": 3, + "wire": 67, + "ps2_clk_posedge": 3, + "Internal": 2, + "Wires": 1, + "ps2_clk_negedge": 3, + "idle_counter": 4, + "Registers": 2, + "ps2_clk_reg": 4, + "ps2_data_reg": 5, + "last_ps2_clk": 4, + "ns_ps2_transceiver": 13, + "State": 1, + "Machine": 1, + "s_ps2_transceiver": 8, + "PS2_STATE_0_IDLE": 10, + "h1": 1, + "PS2_STATE_2_COMMAND_OUT": 2, + "h3": 1, + "PS2_STATE_4_END_DELAYED": 4, + "b1": 19, + "Defaults": 1, + "PS2_STATE_1_DATA_IN": 3, + "||": 1, + "b0": 27, + "PS2_STATE_3_END_TRANSFER": 3, + "h00": 1, + "&&": 3, + "h01": 1, + "ps2_mouse_cmdout": 1, + "mouse_cmdout": 1, + ".clk": 6, + "Inputs": 2, + ".reset": 2, + ".the_command": 1, + ".send_command": 1, + ".ps2_clk_posedge": 2, + ".ps2_clk_negedge": 2, + ".ps2_clk": 1, + "Bidirectionals": 1, + ".ps2_dat": 1, + ".command_was_sent": 1, + "Outputs": 2, + ".error_communication_timed_out": 1, + "ps2_mouse_datain": 1, + "mouse_datain": 1, + ".wait_for_incoming_data": 1, + ".start_receiving_data": 1, + ".ps2_data": 1, + ".received_data": 1, + ".received_data_en": 1, + "hex_display": 1, + "num": 5, + "en": 13, + "hex0": 2, + "hex1": 2, + "hex2": 2, + "hex3": 2, + "seg_7": 4, + "hex_group0": 1, + ".num": 4, + ".en": 4, + ".seg": 4, + "hex_group1": 1, + "hex_group2": 1, + "hex_group3": 1, + "t_div_pipelined": 1, + "start": 12, + "dividend": 3, + "divisor": 5, + "data_valid": 7, + "div_by_zero": 2, + "quotient": 2, + "quotient_correct": 1, + "BITS": 2, + "div_pipelined": 2, + "#": 10, + ".BITS": 1, + ".reset_n": 3, + ".dividend": 1, + ".divisor": 1, + ".quotient": 1, + ".div_by_zero": 1, + ".start": 2, + ".data_valid": 2, + "initial": 3, + "#10": 10, + "#50": 2, + "#1": 1, + "#1000": 1, + "finish": 2, + "#5": 3, + "sqrt_pipelined": 3, + "optional": 2, + "INPUT_BITS": 28, + "radicand": 12, + "unsigned": 2, + "valid": 2, + "OUTPUT_BITS": 14, + "root": 8, + "number": 2, + "of": 8, + "bits": 2, + "any": 1, + "integer": 1, + "%": 3, + "start_gen": 7, + "propagation": 1, + "OUTPUT_BITS*INPUT_BITS": 9, + "root_gen": 15, + "values": 3, + "radicand_gen": 10, + "mask_gen": 9, + "mask": 3, + "mask_4": 1, + "is": 4, + "odd": 1, + "this": 2, + "a": 5, + "INPUT_BITS*": 27, + "<<": 2, + "i/2": 2, + "even": 1, + "pipeline_stage": 1, + "INPUT_BITS*i": 5, + "t_sqrt_pipelined": 1, + ".INPUT_BITS": 1, + ".radicand": 1, + ".root": 1, + "bx": 4, + "#10000": 1, + "vga": 1, + "wb_clk_i": 6, + "Mhz": 1, + "VDU": 1, + "wb_rst_i": 6, + "wb_dat_i": 3, + "wb_dat_o": 2, + "wb_adr_i": 3, + "wb_we_i": 3, + "wb_tga_i": 5, + "wb_sel_i": 3, + "wb_stb_i": 2, + "wb_cyc_i": 2, + "wb_ack_o": 2, + "vga_red_o": 2, + "vga_green_o": 2, + "vga_blue_o": 2, + "horiz_sync": 2, + "vert_sync": 2, + "csrm_adr_o": 2, + "csrm_sel_o": 2, + "csrm_we_o": 2, + "csrm_dat_o": 2, + "csrm_dat_i": 2, + "csr_adr_i": 3, + "csr_stb_i": 2, + "conf_wb_dat_o": 3, + "conf_wb_ack_o": 3, + "mem_wb_dat_o": 3, + "mem_wb_ack_o": 3, + "csr_adr_o": 2, + "csr_dat_i": 3, + "csr_stb_o": 3, + "v_retrace": 3, + "vh_retrace": 3, + "w_vert_sync": 3, + "shift_reg1": 3, + "graphics_alpha": 4, + "memory_mapping1": 3, + "write_mode": 3, + "raster_op": 3, + "read_mode": 3, + "bitmask": 3, + "set_reset": 3, + "enable_set_reset": 3, + "map_mask": 3, + "x_dotclockdiv2": 3, + "chain_four": 3, + "read_map_select": 3, + "color_compare": 3, + "color_dont_care": 3, + "wbm_adr_o": 3, + "wbm_sel_o": 3, + "wbm_we_o": 3, + "wbm_dat_o": 3, + "wbm_dat_i": 3, + "wbm_stb_o": 3, + "wbm_ack_i": 3, + "stb": 4, + "cur_start": 3, + "cur_end": 3, + "start_addr": 2, + "vcursor": 3, + "hcursor": 3, + "horiz_total": 3, + "end_horiz": 3, + "st_hor_retr": 3, + "end_hor_retr": 3, + "vert_total": 3, + "end_vert": 3, + "st_ver_retr": 3, + "end_ver_retr": 3, + "pal_addr": 3, + "pal_we": 3, + "pal_read": 3, + "pal_write": 3, + "dac_we": 3, + "dac_read_data_cycle": 3, + "dac_read_data_register": 3, + "dac_read_data": 3, + "dac_write_data_cycle": 3, + "dac_write_data_register": 3, + "dac_write_data": 3, + "vga_config_iface": 1, + "config_iface": 1, + ".wb_clk_i": 2, + ".wb_rst_i": 2, + ".wb_dat_i": 2, + ".wb_dat_o": 2, + ".wb_adr_i": 2, + ".wb_we_i": 2, + ".wb_sel_i": 2, + ".wb_stb_i": 2, + ".wb_ack_o": 2, + ".shift_reg1": 2, + ".graphics_alpha": 2, + ".memory_mapping1": 2, + ".write_mode": 2, + ".raster_op": 2, + ".read_mode": 2, + ".bitmask": 2, + ".set_reset": 2, + ".enable_set_reset": 2, + ".map_mask": 2, + ".x_dotclockdiv2": 2, + ".chain_four": 2, + ".read_map_select": 2, + ".color_compare": 2, + ".color_dont_care": 2, + ".pal_addr": 2, + ".pal_we": 2, + ".pal_read": 2, + ".pal_write": 2, + ".dac_we": 2, + ".dac_read_data_cycle": 2, + ".dac_read_data_register": 2, + ".dac_read_data": 2, + ".dac_write_data_cycle": 2, + ".dac_write_data_register": 2, + ".dac_write_data": 2, + ".cur_start": 2, + ".cur_end": 2, + ".start_addr": 1, + ".vcursor": 2, + ".hcursor": 2, + ".horiz_total": 2, + ".end_horiz": 2, + ".st_hor_retr": 2, + ".end_hor_retr": 2, + ".vert_total": 2, + ".end_vert": 2, + ".st_ver_retr": 2, + ".end_ver_retr": 2, + ".v_retrace": 2, + ".vh_retrace": 2, + "vga_lcd": 1, + "lcd": 1, + ".rst": 1, + ".csr_adr_o": 1, + ".csr_dat_i": 1, + ".csr_stb_o": 1, + ".vga_red_o": 1, + ".vga_green_o": 1, + ".vga_blue_o": 1, + ".horiz_sync": 1, + ".vert_sync": 1, + "vga_cpu_mem_iface": 1, + "cpu_mem_iface": 1, + ".wbs_adr_i": 1, + ".wbs_sel_i": 1, + ".wbs_we_i": 1, + ".wbs_dat_i": 1, + ".wbs_dat_o": 1, + ".wbs_stb_i": 1, + ".wbs_ack_o": 1, + ".wbm_adr_o": 1, + ".wbm_sel_o": 1, + ".wbm_we_o": 1, + ".wbm_dat_o": 1, + ".wbm_dat_i": 1, + ".wbm_stb_o": 1, + ".wbm_ack_i": 1, + "vga_mem_arbitrer": 1, + "mem_arbitrer": 1, + ".clk_i": 1, + ".rst_i": 1, + ".csr_adr_i": 1, + ".csr_dat_o": 1, + ".csr_stb_i": 1, + ".csrm_adr_o": 1, + ".csrm_sel_o": 1, + ".csrm_we_o": 1, + ".csrm_dat_o": 1, + ".csrm_dat_i": 1, + "mux": 1, + "opA": 4, + "opB": 3, + "sum": 5, + "dsp_sel": 9, + "out": 5, + "cout": 4, + "b0000": 1, + "b01": 1, + "b11": 1, + "t_button_debounce": 1, + ".CLK_FREQUENCY": 1, + ".DEBOUNCE_HZ": 1, + ".button": 1, + ".debounce": 1, + "#100": 1, + "#0.1": 8, + "sign_extender": 1, + "INPUT_WIDTH": 5, + "OUTPUT_WIDTH": 4, + "original": 3, + "sign_extended_original": 2, + "sign_extend": 3, + "gen_sign_extend": 1, + "control": 1, + "an": 6, + "b": 3, + "c": 3, + "d": 3, + "e": 3, + "f": 2, + "g": 2, + "h": 2, + "j": 2, + "k": 2, + "l": 2, + "FDRSE": 6, + ".INIT": 6, + "Synchronous": 12, + ".S": 6, + "Initial": 6, + "value": 6, + "register": 6, + "DFF2": 1, + ".Q": 6, + ".C": 6, + ".CE": 6, + "enable": 6, + ".D": 6, + ".R": 6, + "set": 6, + "DFF0": 1, + "DFF6": 1, + "DFF4": 1, + "DFF10": 1, + "DFF8": 1 + }, + "Apex": { + "global": 70, + "class": 7, + "LanguageUtils": 1, + "{": 219, + "static": 83, + "final": 6, + "String": 60, + "HTTP_LANGUAGE_CODE_PARAMETER_KEY": 2, + ";": 308, + "DEFAULT_LANGUAGE_CODE": 3, + "Set": 6, + "": 30, + "SUPPORTED_LANGUAGE_CODES": 2, + "new": 60, + "//Chinese": 2, + "(": 481, + "Simplified": 1, + ")": 481, + "Traditional": 1, + "//Dutch": 1, + "//English": 1, + "//Finnish": 1, + "//French": 1, + "//German": 1, + "//Italian": 1, + "//Japanese": 1, + "//Korean": 1, + "//Polish": 1, + "//Portuguese": 1, + "Brazilian": 1, + "//Russian": 1, + "//Spanish": 1, + "//Swedish": 1, + "//Thai": 1, + "//Czech": 1, + "//Danish": 1, + "//Hungarian": 1, + "//Indonesian": 1, + "//Turkish": 1, + "}": 219, + "private": 10, + "Map": 33, + "": 29, + "DEFAULTS": 1, + "getLangCodeByHttpParam": 4, + "returnValue": 22, + "null": 92, + "LANGUAGE_CODE_SET": 1, + "getSuppLangCodeSet": 2, + "if": 91, + "ApexPages.currentPage": 4, + "&&": 46, + ".getParameters": 2, + "LANGUAGE_HTTP_PARAMETER": 7, + "StringUtils.lowerCase": 3, + "StringUtils.replaceChars": 2, + ".get": 4, + "//underscore": 1, + "//dash": 1, + "DEFAULTS.containsKey": 3, + "DEFAULTS.get": 3, + "StringUtils.isNotBlank": 1, + "SUPPORTED_LANGUAGE_CODES.contains": 2, + "return": 106, + "getLangCodeByBrowser": 4, + "LANGUAGES_FROM_BROWSER_AS_STRING": 2, + ".getHeaders": 1, + "List": 71, + "LANGUAGES_FROM_BROWSER_AS_LIST": 3, + "splitAndFilterAcceptLanguageHeader": 2, + "LANGUAGES_FROM_BROWSER_AS_LIST.size": 1, + "for": 24, + "languageFromBrowser": 6, + "getLangCodeByUser": 3, + "UserInfo.getLanguage": 1, + "getLangCodeByHttpParamOrIfNullThenBrowser": 1, + "StringUtils.defaultString": 4, + "getLangCodeByHttpParamOrIfNullThenUser": 1, + "getLangCodeByBrowserOrIfNullThenHttpParam": 1, + "getLangCodeByBrowserOrIfNullThenUser": 1, + "header": 2, + "returnList": 11, + "[": 102, + "]": 102, + "tokens": 3, + "StringUtils.split": 1, + "token": 7, + "token.contains": 1, + "token.substring": 1, + "token.indexOf": 1, + "returnList.add": 8, + "StringUtils.length": 1, + "StringUtils.substring": 1, + "langCodes": 2, + "langCode": 3, + "langCodes.add": 1, + "getLanguageName": 1, + "displayLanguageCode": 13, + "languageCode": 2, + "translatedLanguageNames.get": 2, + "filterLanguageCode": 4, + "getAllLanguages": 3, + "translatedLanguageNames.containsKey": 1, + "<": 32, + "translatedLanguageNames": 1, + "BooleanUtils": 1, + "Boolean": 38, + "isFalse": 1, + "bool": 32, + "false": 13, + "else": 25, + "isNotFalse": 1, + "true": 12, + "isNotTrue": 1, + "isTrue": 1, + "negate": 1, + "toBooleanDefaultIfNull": 1, + "defaultVal": 2, + "toBoolean": 2, + "Integer": 34, + "value": 10, + "strToBoolean": 1, + "StringUtils.equalsIgnoreCase": 1, + "//Converts": 1, + "an": 4, + "int": 1, + "to": 4, + "a": 6, + "boolean": 1, + "specifying": 1, + "//the": 2, + "conversion": 1, + "values.": 1, + "//Returns": 1, + "//Throws": 1, + "trueValue": 2, + "falseValue": 2, + "throw": 6, + "IllegalArgumentException": 5, + "toInteger": 1, + "toStringYesNo": 1, + "toStringYN": 1, + "toString": 3, + "trueString": 2, + "falseString": 2, + "xor": 1, + "boolArray": 4, + "||": 12, + "boolArray.size": 1, + "firstItem": 2, + "TwilioAPI": 2, + "MissingTwilioConfigCustomSettingsException": 2, + "extends": 1, + "Exception": 1, + "TwilioRestClient": 5, + "client": 2, + "public": 10, + "getDefaultClient": 2, + "TwilioConfig__c": 5, + "twilioCfg": 7, + "getTwilioConfig": 3, + "TwilioAPI.client": 2, + "twilioCfg.AccountSid__c": 3, + "twilioCfg.AuthToken__c": 3, + "TwilioAccount": 1, + "getDefaultAccount": 1, + ".getAccount": 2, + "TwilioCapability": 2, + "createCapability": 1, + "createClient": 1, + "accountSid": 2, + "authToken": 2, + "Test.isRunningTest": 1, + "//": 11, + "dummy": 2, + "sid": 1, + "TwilioConfig__c.getOrgDefaults": 1, + "@isTest": 1, + "void": 9, + "test_TwilioAPI": 1, + "System.assertEquals": 5, + "TwilioAPI.getTwilioConfig": 2, + ".AccountSid__c": 1, + ".AuthToken__c": 1, + "TwilioAPI.getDefaultClient": 2, + ".getAccountSid": 1, + ".getSid": 2, + "TwilioAPI.getDefaultAccount": 1, + "EmailUtils": 1, + "sendEmailWithStandardAttachments": 3, + "recipients": 11, + "emailSubject": 10, + "body": 8, + "useHTML": 6, + "": 1, + "attachmentIDs": 2, + "": 2, + "stdAttachments": 4, + "SELECT": 1, + "id": 1, + "name": 2, + "FROM": 1, + "Attachment": 2, + "WHERE": 1, + "Id": 1, + "IN": 1, + "": 3, + "fileAttachments": 5, + "attachment": 1, + "Messaging.EmailFileAttachment": 2, + "fileAttachment": 2, + "fileAttachment.setFileName": 1, + "attachment.Name": 1, + "fileAttachment.setBody": 1, + "attachment.Body": 1, + "fileAttachments.add": 1, + "sendEmail": 4, + "sendTextEmail": 1, + "textBody": 2, + "sendHTMLEmail": 1, + "htmlBody": 2, + "recipients.size": 1, + "Messaging.SingleEmailMessage": 3, + "mail": 2, + "email": 1, + "is": 5, + "not": 3, + "saved": 1, + "as": 1, + "activity.": 1, + "mail.setSaveAsActivity": 1, + "mail.setToAddresses": 1, + "mail.setSubject": 1, + "mail.setBccSender": 1, + "mail.setUseSignature": 1, + "mail.setHtmlBody": 1, + "mail.setPlainTextBody": 1, + "fileAttachments.size": 1, + "mail.setFileAttachments": 1, + "Messaging.sendEmail": 1, + "isValidEmailAddress": 2, + "str": 10, + "str.trim": 3, + ".length": 2, + "split": 5, + "str.split": 1, + "split.size": 2, + ".split": 1, + "isNotValidEmailAddress": 1, + "ArrayUtils": 1, + "EMPTY_STRING_ARRAY": 1, + "MAX_NUMBER_OF_ELEMENTS_IN_LIST": 5, + "get": 4, + "objectToString": 1, + "": 22, + "objects": 3, + "strings": 3, + "objects.size": 1, + "Object": 23, + "obj": 3, + "instanceof": 1, + "strings.add": 1, + "reverse": 2, + "anArray": 14, + "i": 55, + "j": 10, + "anArray.size": 2, + "-": 18, + "tmp": 6, + "while": 8, + "+": 75, + "SObject": 19, + "lowerCase": 1, + "strs": 9, + "strs.size": 3, + "returnValue.add": 3, + "str.toLowerCase": 1, + "upperCase": 1, + "str.toUpperCase": 1, + "trim": 1, + "mergex": 2, + "array1": 8, + "array2": 9, + "merged": 6, + "array1.size": 4, + "array2.size": 2, + "": 19, + "sObj": 4, + "merged.add": 2, + "isEmpty": 7, + "objectArray": 17, + "objectArray.size": 6, + "isNotEmpty": 4, + "pluck": 1, + "fieldName": 3, + "fieldName.trim": 2, + "plucked": 3, + "assertArraysAreEqual": 2, + "expected": 16, + "actual": 16, + "//check": 2, + "see": 2, + "one": 2, + "param": 2, + "but": 2, + "the": 4, + "other": 2, + "System.assert": 6, + "ArrayUtils.toString": 12, + "expected.size": 4, + "actual.size": 2, + "merg": 2, + "list1": 15, + "list2": 9, + "list1.size": 6, + "list2.size": 2, + "elmt": 8, + "subset": 6, + "aList": 4, + "count": 10, + "startIndex": 9, + "<=>": 2, + "size": 2, + "1": 2, + "list1.get": 2, + "//LIST/ARRAY": 1, + "SORTING": 1, + "//FOR": 2, + "FORCE.COM": 1, + "PRIMITIVES": 1, + "Double": 1, + "ID": 1, + "etc.": 1, + "qsort": 18, + "theList": 72, + "PrimitiveComparator": 2, + "sortAsc": 24, + "ObjectComparator": 3, + "comparator": 14, + "theList.size": 2, + "SALESFORCE": 1, + "OBJECTS": 1, + "sObjects": 1, + "ISObjectComparator": 3, + "lo0": 6, + "hi0": 8, + "lo": 42, + "hi": 50, + "comparator.compare": 12, + "prs": 8, + "pivot": 14, + "/": 4, + "GeoUtils": 1, + "generate": 1, + "KML": 1, + "string": 7, + "given": 2, + "page": 1, + "reference": 1, + "call": 1, + "getContent": 1, + "then": 1, + "cleanup": 1, + "output.": 1, + "generateFromContent": 1, + "PageReference": 2, + "pr": 1, + "ret": 7, + "try": 1, + "pr.getContent": 1, + ".toString": 1, + "ret.replaceAll": 4, + "content": 1, + "produces": 1, + "quote": 1, + "chars": 1, + "we": 1, + "need": 1, + "escape": 1, + "these": 2, + "in": 1, + "node": 1, + "catch": 1, + "exception": 1, + "e": 2, + "system.debug": 2, + "must": 1, + "use": 1, + "ALL": 1, + "since": 1, + "many": 1, + "line": 1, + "may": 1, + "also": 1, + "": 2, + "geo_response": 1, + "accountAddressString": 2, + "account": 2, + "acct": 1, + "form": 1, + "address": 1, + "object": 1, + "adr": 9, + "acct.billingstreet": 1, + "acct.billingcity": 1, + "acct.billingstate": 1, + "acct.billingpostalcode": 2, + "acct.billingcountry": 2, + "adr.replaceAll": 4, + "testmethod": 1, + "t1": 1, + "pageRef": 3, + "Page.kmlPreviewTemplate": 1, + "Test.setCurrentPage": 1, + "system.assert": 1, + "GeoUtils.generateFromContent": 1, + "Account": 2, + "billingstreet": 1, + "billingcity": 1, + "billingstate": 1, + "billingpostalcode": 1, + "billingcountry": 1, + "insert": 1, + "system.assertEquals": 1 + }, + "Scala": { + "SHEBANG#!sh": 2, + "exec": 2, + "scala": 2, + "#": 2, + "object": 3, + "HelloWorld": 1, + "{": 21, + "def": 10, + "main": 1, + "(": 67, + "args": 1, + "Array": 1, + "[": 11, + "String": 5, + "]": 11, + ")": 67, + "println": 8, + "}": 22, + "name": 4, + "version": 1, + "organization": 1, + "libraryDependencies": 3, + "+": 49, + "%": 12, + "Seq": 3, + "val": 6, + "libosmVersion": 4, + "from": 1, + "maxErrors": 1, + "pollInterval": 1, + "javacOptions": 1, + "scalacOptions": 1, + "scalaVersion": 1, + "initialCommands": 2, + "in": 12, + "console": 1, + "mainClass": 2, + "Compile": 4, + "packageBin": 1, + "Some": 6, + "run": 1, + "watchSources": 1, + "<+=>": 1, + "baseDirectory": 1, + "map": 1, + "_": 2, + "input": 1, + "add": 2, + "a": 4, + "maven": 2, + "style": 2, + "repository": 2, + "resolvers": 2, + "at": 4, + "url": 3, + "sequence": 1, + "of": 1, + "repositories": 1, + "define": 1, + "the": 5, + "to": 7, + "publish": 1, + "publishTo": 1, + "set": 2, + "Ivy": 1, + "logging": 1, + "be": 1, + "highest": 1, + "level": 1, + "ivyLoggingLevel": 1, + "UpdateLogging": 1, + "Full": 1, + "disable": 1, + "updating": 1, + "dynamic": 1, + "revisions": 1, + "including": 1, + "SNAPSHOT": 1, + "versions": 1, + "offline": 1, + "true": 5, + "prompt": 1, + "for": 1, + "this": 1, + "build": 1, + "include": 1, + "project": 1, + "id": 1, + "shellPrompt": 2, + "ThisBuild": 1, + "state": 3, + "Project.extract": 1, + ".currentRef.project": 1, + "System.getProperty": 1, + "showTiming": 1, + "false": 7, + "showSuccess": 1, + "timingFormat": 1, + "import": 9, + "java.text.DateFormat": 1, + "DateFormat.getDateTimeInstance": 1, + "DateFormat.SHORT": 2, + "crossPaths": 1, + "fork": 2, + "Test": 3, + "javaOptions": 1, + "parallelExecution": 2, + "javaHome": 1, + "file": 3, + "scalaHome": 1, + "aggregate": 1, + "clean": 1, + "logLevel": 2, + "compile": 1, + "Level.Warn": 2, + "persistLogLevel": 1, + "Level.Debug": 1, + "traceLevel": 2, + "unmanagedJars": 1, + "publishArtifact": 2, + "packageDoc": 2, + "artifactClassifier": 1, + "retrieveManaged": 1, + "credentials": 2, + "Credentials": 2, + "Path.userHome": 1, + "/": 2, + "Beers": 1, + "extends": 1, + "Application": 1, + "bottles": 3, + "qty": 12, + "Int": 11, + "f": 4, + "//": 29, + "higher": 1, + "-": 5, + "order": 1, + "functions": 2, + "match": 2, + "case": 8, + "x": 3, + "beers": 3, + "sing": 3, + "implicit": 3, + "song": 3, + "takeOne": 2, + "nextQty": 2, + "nested": 1, + "if": 2, + "else": 2, + "refrain": 2, + ".capitalize": 1, + "tail": 1, + "recursion": 1, + "headOfSong": 1, + "parameter": 1, + "math.random": 1, + "scala.language.postfixOps": 1, + "scala.util._": 1, + "scala.util.": 1, + "Try": 1, + "Success": 2, + "Failure": 2, + "scala.concurrent._": 1, + "duration._": 1, + "ExecutionContext.Implicits.global": 1, + "scala.concurrent.": 1, + "ExecutionContext": 1, + "CanAwait": 1, + "OnCompleteRunnable": 1, + "TimeoutException": 1, + "ExecutionException": 1, + "blocking": 3, + "node11": 1, + "Welcome": 1, + "Scala": 1, + "worksheet": 1, + "retry": 3, + "T": 8, + "n": 3, + "block": 8, + "Future": 5, + "ns": 1, + "Iterator": 2, + ".iterator": 1, + "attempts": 1, + "ns.map": 1, + "failed": 2, + "Future.failed": 1, + "new": 1, + "Exception": 2, + "attempts.foldLeft": 1, + "fallbackTo": 1, + "scala.concurrent.Future": 1, + "scala.concurrent.Fut": 1, + "|": 19, + "ure": 1, + "rb": 3, + "i": 9, + "Thread.sleep": 2, + "*random.toInt": 1, + "i.toString": 5, + "ri": 2, + "onComplete": 1, + "s": 1, + "s.toString": 1, + "t": 1, + "t.toString": 1, + "r": 1, + "r.toString": 1, + "Unit": 1, + "toList": 1, + ".foreach": 1, + "Iteration": 5, + "java.lang.Exception": 1, + "Hi": 10 + }, + "JSONLD": { + "{": 7, + "}": 7, + "[": 1, + "null": 2, + "]": 1 + }, + "LiveScript": { + "a": 8, + "-": 25, + "const": 1, + "b": 3, + "var": 1, + "c": 3, + "d": 3, + "_000_000km": 1, + "*": 1, + "ms": 1, + "e": 2, + "(": 9, + ")": 10, + "dashes": 1, + "identifiers": 1, + "underscores_i": 1, + "/regexp1/": 1, + "and": 3, + "//regexp2//g": 1, + "strings": 1, + "[": 2, + "til": 1, + "]": 2, + "or": 2, + "to": 2, + "|": 3, + "map": 1, + "filter": 1, + "fold": 1, + "+": 1, + "class": 1, + "Class": 1, + "extends": 1, + "Anc": 1, + "est": 1, + "args": 1, + "copy": 1, + "from": 1, + "callback": 4, + "error": 6, + "data": 2, + "<": 1, + "read": 1, + "file": 2, + "return": 2, + "if": 2, + "<~>": 1, + "write": 1 + }, + "Org": { + "#": 13, + "+": 13, + "OPTIONS": 1, + "H": 1, + "num": 1, + "nil": 4, + "toc": 2, + "n": 1, + "@": 1, + "t": 10, + "|": 4, + "-": 30, + "f": 2, + "*": 3, + "TeX": 1, + "LaTeX": 1, + "skip": 1, + "d": 2, + "(": 11, + "HIDE": 1, + ")": 11, + "tags": 2, + "not": 1, + "in": 2, + "STARTUP": 1, + "align": 1, + "fold": 1, + "nodlcheck": 1, + "hidestars": 1, + "oddeven": 1, + "lognotestate": 1, + "SEQ_TODO": 1, + "TODO": 1, + "INPROGRESS": 1, + "i": 1, + "WAITING": 1, + "w@": 1, + "DONE": 1, + "CANCELED": 1, + "c@": 1, + "TAGS": 1, + "Write": 1, + "w": 1, + "Update": 1, + "u": 1, + "Fix": 1, + "Check": 1, + "c": 1, + "TITLE": 1, + "org": 10, + "ruby": 6, + "AUTHOR": 1, + "Brian": 1, + "Dewey": 1, + "EMAIL": 1, + "bdewey@gmail.com": 1, + "LANGUAGE": 1, + "en": 1, + "PRIORITIES": 1, + "A": 1, + "C": 1, + "B": 1, + "CATEGORY": 1, + "worg": 1, + "{": 1, + "Back": 1, + "to": 8, + "Worg": 1, + "rubygems": 2, + "ve": 1, + "already": 1, + "created": 1, + "a": 4, + "site.": 1, + "Make": 1, + "sure": 1, + "you": 2, + "have": 1, + "installed": 1, + "sudo": 1, + "gem": 1, + "install": 1, + ".": 1, + "You": 1, + "need": 1, + "register": 1, + "new": 2, + "Webby": 3, + "filter": 3, + "handle": 1, + "mode": 2, + "content.": 2, + "makes": 1, + "this": 2, + "easy.": 1, + "In": 1, + "the": 6, + "lib/": 1, + "folder": 1, + "of": 2, + "your": 2, + "site": 1, + "create": 1, + "file": 1, + "orgmode.rb": 1, + "BEGIN_EXAMPLE": 2, + "require": 1, + "Filters.register": 1, + "do": 2, + "input": 3, + "Orgmode": 2, + "Parser.new": 1, + ".to_html": 1, + "end": 1, + "END_EXAMPLE": 1, + "This": 2, + "code": 1, + "creates": 1, + "that": 1, + "will": 1, + "use": 1, + "parser": 1, + "translate": 1, + "into": 1, + "HTML.": 1, + "Create": 1, + "For": 1, + "example": 1, + "title": 2, + "Parser": 1, + "created_at": 1, + "status": 2, + "Under": 1, + "development": 1, + "erb": 1, + "orgmode": 3, + "<%=>": 2, + "page": 2, + "Status": 1, + "Description": 1, + "Helpful": 1, + "Ruby": 1, + "routines": 1, + "for": 3, + "parsing": 1, + "files.": 1, + "The": 3, + "most": 1, + "significant": 1, + "thing": 2, + "library": 1, + "does": 1, + "today": 1, + "is": 5, + "convert": 1, + "files": 1, + "textile.": 1, + "Currently": 1, + "cannot": 1, + "much": 1, + "customize": 1, + "conversion.": 1, + "supplied": 1, + "textile": 1, + "conversion": 1, + "optimized": 1, + "extracting": 1, + "from": 1, + "orgfile": 1, + "as": 1, + "opposed": 1, + "History": 1, + "**": 1, + "Version": 1, + "first": 1, + "output": 2, + "HTML": 2, + "gets": 1, + "class": 1, + "now": 1, + "indented": 1, + "Proper": 1, + "support": 1, + "multi": 1, + "paragraph": 2, + "list": 1, + "items.": 1, + "See": 1, + "part": 1, + "last": 1, + "bullet.": 1, + "Fixed": 1, + "bugs": 1, + "wouldn": 1, + "s": 1, + "all": 1, + "there": 1, + "it": 1 + }, + "Liquid": { + "": 1, + "html": 1, + "PUBLIC": 1, + "W3C": 1, + "DTD": 2, + "XHTML": 1, + "1": 1, + "0": 1, + "Transitional": 1, + "EN": 1, + "http": 2, + "www": 1, + "w3": 1, + "org": 1, + "TR": 1, + "xhtml1": 2, + "transitional": 1, + "dtd": 1, + "": 1, + "xmlns=": 1, + "xml": 1, + "lang=": 2, + "": 1, + "": 1, + "equiv=": 1, + "content=": 1, + "": 1, + "{": 89, + "shop.name": 2, + "}": 89, + "-": 4, + "page_title": 1, + "": 1, + "|": 31, + "global_asset_url": 5, + "stylesheet_tag": 3, + "script_tag": 5, + "shopify_asset_url": 1, + "asset_url": 2, + "content_for_header": 1, + "": 1, + "": 1, + "id=": 28, + "

": 1, + "class=": 14, + "": 9, + "href=": 9, + "Skip": 1, + "to": 1, + "navigation.": 1, + "": 9, + "

": 1, + "%": 46, + "if": 5, + "cart.item_count": 7, + "
": 23, + "style=": 5, + "

": 3, + "There": 1, + "pluralize": 3, + "in": 8, + "title=": 3, + "your": 1, + "cart": 1, + "

": 3, + "

": 1, + "Your": 1, + "subtotal": 1, + "is": 1, + "cart.total_price": 2, + "money": 5, + ".": 3, + "

": 1, + "for": 6, + "item": 1, + "cart.items": 1, + "onMouseover=": 2, + "onMouseout=": 2, + "": 4, + "src=": 5, + "
": 23, + "endfor": 6, + "
": 2, + "endif": 5, + "

": 1, + "

": 1, + "onclick=": 1, + "View": 1, + "Mini": 1, + "Cart": 1, + "(": 1, + ")": 1, + "
": 3, + "content_for_layout": 1, + "
    ": 5, + "link": 2, + "linklists.main": 1, + "menu.links": 1, + "
  • ": 5, + "link.title": 2, + "link_to": 2, + "link.url": 2, + "
  • ": 5, + "
": 5, + "tags": 1, + "tag": 4, + "collection.tags": 1, + "": 1, + "link_to_add_tag": 1, + "": 1, + "highlight_active_tag": 1, + "link_to_tag": 1, + "linklists.footer.links": 1, + "All": 1, + "prices": 1, + "are": 1, + "shop.currency": 1, + "Powered": 1, + "by": 1, + "Shopify": 1, + "": 1, + "": 1, + "

": 1, + "We": 1, + "have": 1, + "wonderful": 1, + "products": 1, + "

": 1, + "image": 1, + "product.images": 1, + "forloop.first": 1, + "rel=": 2, + "alt=": 2, + "else": 1, + "product.title": 1, + "Vendor": 1, + "product.vendor": 1, + "link_to_vendor": 1, + "Type": 1, + "product.type": 1, + "link_to_type": 1, + "": 1, + "product.price_min": 1, + "product.price_varies": 1, + "product.price_max": 1, + "": 1, + "
": 1, + "action=": 1, + "method=": 1, + "": 1, + "": 1, + "type=": 2, + "
": 1, + "product.description": 1, + "": 1 + }, + "UnrealScript": { + "//": 5, + "-": 220, + "class": 18, + "MutU2Weapons": 1, + "extends": 2, + "Mutator": 1, + "config": 18, + "(": 189, + "U2Weapons": 1, + ")": 189, + ";": 295, + "var": 30, + "string": 25, + "ReplacedWeaponClassNames0": 1, + "ReplacedWeaponClassNames1": 1, + "ReplacedWeaponClassNames2": 1, + "ReplacedWeaponClassNames3": 1, + "ReplacedWeaponClassNames4": 1, + "ReplacedWeaponClassNames5": 1, + "ReplacedWeaponClassNames6": 1, + "ReplacedWeaponClassNames7": 1, + "ReplacedWeaponClassNames8": 1, + "ReplacedWeaponClassNames9": 1, + "ReplacedWeaponClassNames10": 1, + "ReplacedWeaponClassNames11": 1, + "ReplacedWeaponClassNames12": 1, + "bool": 18, + "bConfigUseU2Weapon0": 1, + "bConfigUseU2Weapon1": 1, + "bConfigUseU2Weapon2": 1, + "bConfigUseU2Weapon3": 1, + "bConfigUseU2Weapon4": 1, + "bConfigUseU2Weapon5": 1, + "bConfigUseU2Weapon6": 1, + "bConfigUseU2Weapon7": 1, + "bConfigUseU2Weapon8": 1, + "bConfigUseU2Weapon9": 1, + "bConfigUseU2Weapon10": 1, + "bConfigUseU2Weapon11": 1, + "bConfigUseU2Weapon12": 1, + "//var": 8, + "byte": 4, + "bUseU2Weapon": 1, + "[": 125, + "]": 125, + "": 7, + "ReplacedWeaponClasses": 3, + "": 2, + "ReplacedWeaponPickupClasses": 1, + "": 3, + "ReplacedAmmoPickupClasses": 1, + "U2WeaponClasses": 2, + "//GE": 17, + "For": 3, + "default": 12, + "properties": 3, + "ONLY": 3, + "U2WeaponPickupClassNames": 1, + "U2AmmoPickupClassNames": 2, + "bIsVehicle": 4, + "bNotVehicle": 3, + "localized": 2, + "U2WeaponDisplayText": 1, + "U2WeaponDescText": 1, + "GUISelectOptions": 1, + "int": 10, + "FirePowerMode": 1, + "bExperimental": 3, + "bUseFieldGenerator": 2, + "bUseProximitySensor": 2, + "bIntegrateShieldReward": 2, + "IterationNum": 8, + "Weapons.Length": 1, + "const": 1, + "DamageMultiplier": 28, + "DamagePercentage": 3, + "bUseXMPFeel": 4, + "FlashbangModeString": 1, + "struct": 1, + "WeaponInfo": 2, + "{": 28, + "ReplacedWeaponClass": 1, + "Generated": 4, + "from": 6, + "ReplacedWeaponClassName.": 2, + "This": 3, + "is": 6, + "what": 1, + "we": 3, + "replace.": 1, + "ReplacedWeaponPickupClass": 1, + "UNUSED": 1, + "ReplacedAmmoPickupClass": 1, + "WeaponClass": 1, + "the": 31, + "weapon": 10, + "are": 1, + "going": 1, + "to": 4, + "put": 1, + "inside": 1, + "world.": 1, + "WeaponPickupClassName": 1, + "WeponClass.": 1, + "AmmoPickupClassName": 1, + "WeaponClass.": 1, + "bEnabled": 1, + "Structs": 1, + "can": 2, + "d": 1, + "thus": 1, + "still": 1, + "require": 1, + "bConfigUseU2WeaponX": 1, + "indicates": 1, + "that": 3, + "spawns": 1, + "a": 2, + "vehicle": 3, + "deployable": 1, + "turrets": 1, + ".": 2, + "These": 1, + "only": 2, + "work": 1, + "in": 4, + "gametypes": 1, + "duh.": 1, + "Opposite": 1, + "of": 1, + "works": 1, + "non": 1, + "gametypes.": 2, + "Think": 1, + "shotgun.": 1, + "}": 27, + "Weapons": 31, + "function": 5, + "PostBeginPlay": 1, + "local": 8, + "FireMode": 8, + "x": 65, + "//local": 3, + "ReplacedWeaponPickupClassName": 1, + "//IterationNum": 1, + "ArrayCount": 2, + "Level.Game.bAllowVehicles": 4, + "He": 1, + "he": 1, + "neat": 1, + "way": 1, + "get": 1, + "required": 1, + "number.": 1, + "for": 11, + "<": 9, + "+": 18, + ".bEnabled": 3, + "GetPropertyText": 5, + "needed": 1, + "use": 1, + "variables": 1, + "an": 1, + "array": 2, + "like": 1, + "fashion.": 1, + "//bUseU2Weapon": 1, + ".ReplacedWeaponClass": 5, + "DynamicLoadObject": 2, + "//ReplacedWeaponClasses": 1, + "//ReplacedWeaponPickupClassName": 1, + ".default.PickupClass": 1, + "if": 55, + ".ReplacedWeaponClass.default.FireModeClass": 4, + "None": 10, + "&&": 15, + ".default.AmmoClass": 1, + ".default.AmmoClass.default.PickupClass": 2, + ".ReplacedAmmoPickupClass": 2, + "break": 1, + ".WeaponClass": 7, + ".WeaponPickupClassName": 1, + ".WeaponClass.default.PickupClass": 1, + ".AmmoPickupClassName": 2, + ".bIsVehicle": 2, + ".bNotVehicle": 2, + "Super.PostBeginPlay": 1, + "ValidReplacement": 6, + "return": 47, + "CheckReplacement": 1, + "Actor": 1, + "Other": 23, + "out": 2, + "bSuperRelevant": 3, + "i": 12, + "WeaponLocker": 3, + "L": 2, + "xWeaponBase": 3, + ".WeaponType": 2, + "false": 3, + "true": 5, + "Weapon": 1, + "Other.IsA": 2, + "Other.Class": 2, + "Ammo": 1, + "ReplaceWith": 1, + "L.Weapons.Length": 1, + "L.Weapons": 2, + "//STARTING": 1, + "WEAPON": 1, + "xPawn": 6, + ".RequiredEquipment": 3, + "True": 2, + "Special": 1, + "handling": 1, + "Shield": 2, + "Reward": 2, + "integration": 1, + "ShieldPack": 7, + ".SetStaticMesh": 1, + "StaticMesh": 1, + ".Skins": 1, + "Shader": 2, + ".RepSkin": 1, + ".SetDrawScale": 1, + ".SetCollisionSize": 1, + ".PickupMessage": 1, + ".PickupSound": 1, + "Sound": 1, + "Super.CheckReplacement": 1, + "GetInventoryClassOverride": 1, + "InventoryClassName": 3, + "Super.GetInventoryClassOverride": 1, + "static": 2, + "FillPlayInfo": 1, + "PlayInfo": 3, + "": 1, + "Recs": 4, + "WeaponOptions": 17, + "Super.FillPlayInfo": 1, + ".static.GetWeaponList": 1, + "Recs.Length": 1, + ".ClassName": 1, + ".FriendlyName": 1, + "PlayInfo.AddSetting": 33, + "default.RulesGroup": 33, + "default.U2WeaponDisplayText": 33, + "event": 3, + "GetDescriptionText": 1, + "PropName": 35, + "default.U2WeaponDescText": 33, + "Super.GetDescriptionText": 1, + "PreBeginPlay": 1, + "float": 3, + "k": 29, + "Multiplier.": 1, + "Super.PreBeginPlay": 1, + "/100.0": 1, + "//log": 1, + "@k": 1, + "//Sets": 1, + "various": 1, + "settings": 1, + "match": 1, + "different": 1, + "games": 1, + ".default.DamagePercentage": 1, + "//Original": 1, + "U2": 3, + "compensate": 1, + "division": 1, + "errors": 1, + "Class": 105, + ".default.DamageMin": 12, + "*": 54, + ".default.DamageMax": 12, + ".default.Damage": 27, + ".default.myDamage": 4, + "//Dampened": 1, + "already": 1, + "no": 2, + "need": 1, + "rewrite": 1, + "else": 1, + "//General": 2, + "XMP": 4, + ".default.Spread": 1, + ".default.MaxAmmo": 7, + ".default.Speed": 8, + ".default.MomentumTransfer": 4, + ".default.ClipSize": 4, + ".default.FireLastReloadTime": 3, + ".default.DamageRadius": 4, + ".default.LifeSpan": 4, + ".default.ShakeRadius": 1, + ".default.ShakeMagnitude": 1, + ".default.MaxSpeed": 5, + ".default.FireRate": 3, + ".default.ReloadTime": 3, + "//3200": 1, + "too": 1, + "much": 1, + ".default.VehicleDamageScaling": 2, + "*k": 28, + "//Experimental": 1, + "options": 1, + "lets": 1, + "you": 2, + "Unuse": 1, + "EMPimp": 1, + "projectile": 1, + "and": 3, + "fire": 1, + "two": 1, + "CAR": 1, + "barrels": 1, + "//CAR": 1, + "nothing": 1, + "U2Weapons.U2AssaultRifleFire": 1, + "U2Weapons.U2AssaultRifleAltFire": 1, + "U2ProjectileConcussionGrenade": 1, + "U2Weapons.U2AssaultRifleInv": 1, + "U2Weapons.U2WeaponEnergyRifle": 1, + "U2Weapons.U2WeaponFlameThrower": 1, + "U2Weapons.U2WeaponPistol": 1, + "U2Weapons.U2AutoTurretDeploy": 1, + "U2Weapons.U2WeaponRocketLauncher": 1, + "U2Weapons.U2WeaponGrenadeLauncher": 1, + "U2Weapons.U2WeaponSniper": 2, + "U2Weapons.U2WeaponRocketTurret": 1, + "U2Weapons.U2WeaponLandMine": 1, + "U2Weapons.U2WeaponLaserTripMine": 1, + "U2Weapons.U2WeaponShotgun": 1, + "s": 7, + "Minigun.": 1, + "Enable": 5, + "Shock": 1, + "Lance": 1, + "Energy": 2, + "Rifle": 3, + "What": 7, + "should": 7, + "be": 8, + "replaced": 8, + "with": 9, + "Rifle.": 3, + "By": 7, + "it": 7, + "Bio": 1, + "Magnum": 2, + "Pistol": 1, + "Pistol.": 1, + "Onslaught": 1, + "Grenade": 1, + "Launcher.": 2, + "Shark": 2, + "Rocket": 4, + "Launcher": 1, + "Flak": 1, + "Cannon.": 1, + "Should": 1, + "Lightning": 1, + "Gun": 2, + "Widowmaker": 2, + "Sniper": 3, + "Classic": 1, + "here.": 1, + "Turret": 2, + "delpoyable": 1, + "deployable.": 1, + "Redeemer.": 1, + "Laser": 2, + "Trip": 2, + "Mine": 1, + "Mine.": 1, + "t": 2, + "replace": 1, + "Link": 1, + "matches": 1, + "vehicles.": 1, + "Crowd": 1, + "Pleaser": 1, + "Shotgun.": 1, + "have": 1, + "shields": 1, + "or": 2, + "damage": 1, + "filtering.": 1, + "If": 1, + "checked": 1, + "mutator": 1, + "produces": 1, + "Unreal": 4, + "II": 4, + "shield": 1, + "pickups.": 1, + "Choose": 1, + "between": 2, + "white": 1, + "overlay": 3, + "depending": 2, + "on": 2, + "player": 2, + "view": 1, + "style": 1, + "distance": 1, + "foolproof": 1, + "FM_DistanceBased": 1, + "Arena": 1, + "Add": 1, + "weapons": 1, + "other": 1, + "Fully": 1, + "customisable": 1, + "choose": 1, + "behaviour.": 1, + "US3HelloWorld": 1, + "GameInfo": 1, + "InitGame": 1, + "Options": 1, + "Error": 1, + "log": 1, + "defaultproperties": 1 + }, + "Component Pascal": { + "MODULE": 2, + "ObxControls": 1, + ";": 123, + "IMPORT": 2, + "Dialog": 1, + "Ports": 1, + "Properties": 1, + "Views": 1, + "CONST": 1, + "beginner": 5, + "advanced": 3, + "expert": 1, + "guru": 2, + "TYPE": 1, + "View": 6, + "POINTER": 2, + "TO": 2, + "RECORD": 2, + "(": 91, + "Views.View": 2, + ")": 94, + "size": 1, + "INTEGER": 10, + "END": 31, + "VAR": 9, + "data*": 1, + "class*": 1, + "list*": 1, + "Dialog.List": 1, + "width*": 1, + "predef": 12, + "ARRAY": 2, + "OF": 2, + "PROCEDURE": 12, + "SetList": 4, + "BEGIN": 13, + "IF": 11, + "data.class": 5, + "THEN": 12, + "data.list.SetLen": 3, + "data.list.SetItem": 11, + "ELSIF": 1, + "ELSE": 3, + "v": 6, + "CopyFromSimpleView": 2, + "source": 2, + "v.size": 10, + ".size": 1, + "Restore": 2, + "f": 1, + "Views.Frame": 1, + "l": 1, + "t": 1, + "r": 7, + "b": 1, + "[": 13, + "]": 13, + "f.DrawRect": 1, + "Ports.fill": 1, + "Ports.red": 1, + "HandlePropMsg": 2, + "msg": 2, + "Views.PropMessage": 1, + "WITH": 1, + "Properties.SizePref": 1, + "DO": 4, + "msg.w": 1, + "msg.h": 1, + "ClassNotify*": 1, + "op": 4, + "from": 2, + "to": 5, + "Dialog.changed": 2, + "OR": 4, + "&": 8, + "data.list.index": 3, + "data.width": 4, + "Dialog.Update": 2, + "data": 2, + "Dialog.UpdateList": 1, + "data.list": 1, + "ClassNotify": 1, + "ListNotify*": 1, + "ListNotify": 1, + "ListGuard*": 1, + "par": 2, + "Dialog.Par": 2, + "par.disabled": 1, + "ListGuard": 1, + "WidthGuard*": 1, + "par.readOnly": 1, + "#": 3, + "WidthGuard": 1, + "Open*": 1, + "NEW": 2, + "*": 1, + "Ports.mm": 1, + "Views.OpenAux": 1, + "Open": 1, + "ObxControls.": 1, + "ObxFact": 1, + "Stores": 1, + "Models": 1, + "TextModels": 1, + "TextControllers": 1, + "Integers": 1, + "Read": 3, + "TextModels.Reader": 2, + "x": 15, + "Integers.Integer": 3, + "i": 17, + "len": 5, + "beg": 11, + "ch": 14, + "CHAR": 3, + "buf": 5, + "r.ReadChar": 5, + "WHILE": 3, + "r.eot": 4, + "<=>": 1, + "ReadChar": 1, + "ASSERT": 1, + "eot": 1, + "<": 8, + "r.Pos": 2, + "-": 1, + "REPEAT": 3, + "INC": 4, + "UNTIL": 3, + "+": 1, + "r.SetPos": 2, + "X": 1, + "Integers.ConvertFromString": 1, + "Write": 3, + "w": 4, + "TextModels.Writer": 2, + "Integers.Sign": 2, + "w.WriteChar": 3, + "Integers.Digits10Of": 1, + "DEC": 1, + "Integers.ThisDigit10": 1, + "Compute*": 1, + "end": 6, + "n": 3, + "s": 3, + "Stores.Operation": 1, + "attr": 3, + "TextModels.Attributes": 1, + "c": 3, + "TextControllers.Controller": 1, + "TextControllers.Focus": 1, + "NIL": 3, + "c.HasSelection": 1, + "c.GetSelection": 1, + "c.text.NewReader": 1, + "r.ReadPrev": 2, + "r.attr": 1, + "Integers.Compare": 1, + "Integers.Long": 3, + "MAX": 1, + "LONGINT": 1, + "SHORT": 1, + "Integers.Short": 1, + "Integers.Product": 1, + "Models.BeginScript": 1, + "c.text": 2, + "c.text.Delete": 1, + "c.text.NewWriter": 1, + "w.SetPos": 1, + "w.SetAttr": 1, + "Models.EndScript": 1, + "Compute": 1, + "ObxFact.": 1 + }, + "PogoScript": { + "httpism": 1, + "require": 3, + "async": 1, + "resolve": 2, + ".resolve": 1, + "exports.squash": 1, + "(": 38, + "url": 5, + ")": 38, + "html": 15, + "httpism.get": 2, + ".body": 2, + "squash": 2, + "callback": 2, + "replacements": 6, + "sort": 2, + "links": 2, + "in": 11, + ".concat": 1, + "scripts": 2, + "for": 2, + "each": 2, + "@": 6, + "r": 1, + "{": 3, + "r.url": 1, + "r.href": 1, + "}": 3, + "async.map": 1, + "get": 2, + "err": 2, + "requested": 2, + "replace": 2, + "replacements.sort": 1, + "a": 1, + "b": 1, + "a.index": 1, + "-": 1, + "b.index": 1, + "replacement": 2, + "replacement.body": 1, + "replacement.url": 1, + "i": 3, + "parts": 3, + "rep": 1, + "rep.index": 1, + "+": 2, + "rep.length": 1, + "html.substr": 1, + "link": 2, + "reg": 5, + "r/": 2, + "": 1, + "]": 7, + "*href": 1, + "[": 5, + "*": 2, + "/": 2, + "|": 2, + "s*": 2, + "<\\/link\\>": 1, + "/gi": 2, + "elements": 5, + "matching": 3, + "as": 3, + "script": 2, + "": 1, + "*src": 1, + "<\\/script\\>": 1, + "tag": 3, + "while": 1, + "m": 1, + "reg.exec": 1, + "elements.push": 1, + "index": 1, + "m.index": 1, + "length": 1, + "m.0.length": 1, + "href": 1, + "m.1": 1 + }, + "Creole": { + "Creole": 6, + "is": 3, + "a": 2, + "-": 5, + "to": 2, + "HTML": 1, + "converter": 2, + "for": 1, + "the": 5, + "lightweight": 1, + "markup": 1, + "language": 1, + "(": 5, + "http": 4, + "//wikicreole.org/": 1, + ")": 5, + ".": 1, + "Github": 1, + "uses": 1, + "this": 1, + "render": 1, + "*.creole": 1, + "files.": 1, + "Project": 1, + "page": 1, + "on": 2, + "github": 1, + "*": 5, + "//github.com/minad/creole": 1, + "Travis": 1, + "CI": 1, + "https": 1, + "//travis": 1, + "ci.org/minad/creole": 1, + "RDOC": 1, + "//rdoc.info/projects/minad/creole": 1, + "INSTALLATION": 1, + "{": 6, + "gem": 1, + "install": 1, + "creole": 1, + "}": 6, + "SYNOPSIS": 1, + "require": 1, + "html": 1, + "Creole.creolize": 1, + "BUGS": 1, + "If": 1, + "you": 1, + "found": 1, + "bug": 1, + "please": 1, + "report": 1, + "it": 1, + "at": 1, + "project": 1, + "s": 1, + "tracker": 1, + "GitHub": 1, + "//github.com/minad/creole/issues": 1, + "AUTHORS": 1, + "Lars": 2, + "Christensen": 2, + "larsch": 1, + "Daniel": 2, + "Mendler": 1, + "minad": 1, + "LICENSE": 1, + "Copyright": 1, + "c": 1, + "Mendler.": 1, + "It": 1, + "free": 1, + "software": 1, + "and": 1, + "may": 1, + "be": 1, + "redistributed": 1, + "under": 1, + "terms": 1, + "specified": 1, + "in": 1, + "README": 1, + "file": 1, + "of": 1, + "Ruby": 1, + "distribution.": 1 + }, + "Processing": { + "void": 2, + "setup": 1, + "(": 17, + ")": 17, + "{": 2, + "size": 1, + ";": 15, + "background": 1, + "noStroke": 1, + "}": 2, + "draw": 1, + "fill": 6, + "triangle": 2, + "rect": 1, + "quad": 1, + "ellipse": 1, + "arc": 1, + "PI": 1, + "TWO_PI": 1 + }, + "Emacs Lisp": { + ";": 333, + "ess": 48, + "-": 294, + "julia.el": 2, + "ESS": 5, + "julia": 39, + "mode": 12, + "and": 3, + "inferior": 13, + "interaction": 1, + "Copyright": 1, + "(": 156, + "C": 2, + ")": 144, + "Vitalie": 3, + "Spinu.": 1, + "Filename": 1, + "Author": 1, + "Spinu": 2, + "based": 1, + "on": 2, + "mode.el": 1, + "from": 3, + "lang": 1, + "project": 1, + "Maintainer": 1, + "Created": 1, + "Keywords": 1, + "This": 4, + "file": 10, + "is": 5, + "*NOT*": 1, + "part": 2, + "of": 8, + "GNU": 4, + "Emacs.": 1, + "program": 6, + "free": 1, + "software": 1, + "you": 1, + "can": 1, + "redistribute": 1, + "it": 3, + "and/or": 1, + "modify": 5, + "under": 1, + "the": 10, + "terms": 1, + "General": 3, + "Public": 3, + "License": 3, + "as": 1, + "published": 1, + "by": 1, + "Free": 2, + "Software": 2, + "Foundation": 2, + "either": 1, + "version": 2, + "any": 1, + "later": 1, + "version.": 1, + "distributed": 1, + "in": 3, + "hope": 1, + "that": 2, + "will": 1, + "be": 2, + "useful": 1, + "but": 2, + "WITHOUT": 1, + "ANY": 1, + "WARRANTY": 1, + "without": 1, + "even": 1, + "implied": 1, + "warranty": 1, + "MERCHANTABILITY": 1, + "or": 3, + "FITNESS": 1, + "FOR": 1, + "A": 1, + "PARTICULAR": 1, + "PURPOSE.": 1, + "See": 1, + "for": 8, + "more": 1, + "details.": 1, + "You": 1, + "should": 2, + "have": 1, + "received": 1, + "a": 4, + "copy": 2, + "along": 1, + "with": 4, + "this": 1, + "see": 2, + "COPYING.": 1, + "If": 1, + "not": 1, + "write": 2, + "to": 4, + "Inc.": 1, + "Franklin": 1, + "Street": 1, + "Fifth": 1, + "Floor": 1, + "Boston": 1, + "MA": 1, + "USA.": 1, + "Commentary": 1, + "customise": 1, + "name": 8, + "point": 6, + "your": 1, + "release": 1, + "basic": 1, + "start": 13, + "M": 2, + "x": 2, + "julia.": 2, + "require": 2, + "auto": 1, + "alist": 9, + "table": 9, + "character": 1, + "quote": 2, + "transpose": 1, + "syntax": 7, + "entry": 4, + ".": 40, + "Syntax": 3, + "inside": 1, + "char": 6, + "defvar": 5, + "let": 3, + "make": 4, + "defconst": 5, + "regex": 5, + "unquote": 1, + "forloop": 1, + "subset": 2, + "regexp": 6, + "font": 6, + "lock": 6, + "defaults": 2, + "list": 3, + "identity": 1, + "keyword": 2, + "face": 4, + "constant": 1, + "cons": 1, + "function": 7, + "keep": 2, + "string": 8, + "paragraph": 3, + "concat": 7, + "page": 2, + "delimiter": 2, + "separate": 1, + "ignore": 2, + "fill": 1, + "prefix": 2, + "t": 6, + "final": 1, + "newline": 1, + "comment": 6, + "add": 4, + "skip": 1, + "column": 1, + "indent": 8, + "S": 2, + "line": 5, + "calculate": 1, + "parse": 1, + "sexp": 1, + "comments": 1, + "style": 2, + "default": 1, + "ignored": 1, + "local": 6, + "process": 5, + "nil": 12, + "dump": 2, + "files": 1, + "_": 1, + "autoload": 1, + "defun": 5, + "send": 3, + "visibly": 1, + "temporary": 1, + "directory": 2, + "temp": 2, + "insert": 1, + "format": 3, + "load": 1, + "command": 5, + "get": 3, + "help": 3, + "topics": 1, + "&": 3, + "optional": 3, + "proc": 3, + "words": 1, + "vector": 1, + "com": 1, + "error": 6, + "s": 5, + "*in": 1, + "[": 3, + "n": 1, + "]": 3, + "*": 1, + "at": 5, + ".*": 2, + "+": 5, + "w*": 1, + "http": 1, + "//docs.julialang.org/en/latest/search/": 1, + "q": 1, + "%": 1, + "include": 1, + "funargs": 1, + "re": 2, + "args": 10, + "language": 1, + "STERM": 1, + "editor": 2, + "R": 2, + "pager": 2, + "versions": 1, + "Julia": 1, + "made": 1, + "available.": 1, + "String": 1, + "arguments": 2, + "used": 1, + "when": 2, + "starting": 1, + "group": 1, + "###autoload": 2, + "interactive": 2, + "setq": 2, + "customize": 5, + "emacs": 1, + "<": 1, + "hook": 4, + "complete": 1, + "object": 2, + "completion": 4, + "functions": 2, + "first": 1, + "if": 4, + "fboundp": 1, + "end": 1, + "workaround": 1, + "set": 3, + "variable": 3, + "post": 1, + "run": 2, + "settings": 1, + "notably": 1, + "null": 1, + "dribble": 1, + "buffer": 3, + "debugging": 1, + "only": 1, + "dialect": 1, + "current": 2, + "arg": 1, + "let*": 2, + "jl": 2, + "space": 1, + "just": 1, + "case": 1, + "read": 1, + "..": 3, + "multi": 1, + "...": 1, + "tb": 1, + "logo": 1, + "goto": 2, + "min": 1, + "while": 1, + "search": 1, + "forward": 1, + "replace": 1, + "match": 1, + "max": 1, + "inject": 1, + "code": 1, + "etc": 1, + "hooks": 1, + "busy": 1, + "funname": 5, + "eldoc": 1, + "show": 1, + "symbol": 2, + "aggressive": 1, + "car": 1, + "funname.start": 1, + "sequence": 1, + "nth": 1, + "W": 1, + "window": 2, + "width": 1, + "minibuffer": 1, + "length": 1, + "doc": 1, + "propertize": 1, + "use": 1, + "classes": 1, + "screws": 1, + "egrep": 1, + "print": 1 + }, + "Elm": { + "data": 1, + "Tree": 3, + "a": 5, + "Node": 8, + "(": 119, + ")": 116, + "|": 3, + "Empty": 8, + "empty": 2, + "singleton": 2, + "v": 8, + "insert": 4, + "x": 13, + "tree": 7, + "case": 5, + "of": 7, + "-": 11, + "y": 7, + "left": 7, + "right": 8, + "if": 2, + "then": 2, + "else": 2, + "<": 1, + "fromList": 3, + "xs": 9, + "foldl": 1, + "depth": 5, + "+": 14, + "max": 1, + "map": 11, + "f": 8, + "t1": 2, + "[": 31, + "]": 31, + "t2": 3, + "main": 3, + "flow": 4, + "down": 3, + "display": 4, + "name": 6, + "text": 4, + ".": 9, + "monospace": 1, + "toText": 6, + "concat": 1, + "show": 2, + "asText": 1, + "qsort": 4, + "lst": 6, + "filter": 2, + "<)x)>": 1, + "import": 3, + "List": 1, + "intercalate": 2, + "intersperse": 3, + "Website.Skeleton": 1, + "Website.ColorScheme": 1, + "addFolder": 4, + "folder": 2, + "let": 2, + "add": 2, + "in": 2, + "n": 2, + "elements": 2, + "functional": 2, + "reactive": 2, + "example": 3, + "loc": 2, + "Text.link": 1, + "toLinks": 2, + "title": 2, + "links": 2, + "width": 3, + "italic": 1, + "bold": 2, + "Text.color": 1, + "accent4": 1, + "insertSpace": 2, + "{": 1, + "spacer": 2, + ";": 1, + "}": 1, + "subsection": 2, + "w": 7, + "info": 2, + "words": 2, + "markdown": 1, + "###": 1, + "Basic": 1, + "Examples": 1, + "Each": 1, + "listed": 1, + "below": 1, + "focuses": 1, + "on": 1, + "single": 1, + "function": 1, + "or": 1, + "concept.": 1, + "These": 1, + "examples": 1, + "demonstrate": 1, + "all": 1, + "the": 1, + "basic": 1, + "building": 1, + "blocks": 1, + "Elm.": 1, + "content": 2, + "exampleSets": 2, + "plainText": 1, + "lift": 1, + "skeleton": 1, + "Window.width": 1 + }, + "Inform 7": { + "Version": 1, + "of": 3, + "Trivial": 3, + "Extension": 3, + "by": 3, + "Andrew": 3, + "Plotkin": 1, + "begins": 1, + "here.": 2, + "A": 3, + "cow": 3, + "is": 4, + "a": 2, + "kind": 1, + "animal.": 1, + "can": 1, + "be": 1, + "purple.": 1, + "ends": 1, + "Plotkin.": 2, + "Include": 1, + "The": 1, + "Kitchen": 1, + "room.": 1, + "[": 1, + "This": 1, + "kitchen": 1, + "modelled": 1, + "after": 1, + "the": 4, + "one": 1, + "in": 2, + "Zork": 1, + "although": 1, + "it": 1, + "lacks": 1, + "detail": 1, + "to": 2, + "establish": 1, + "this": 1, + "player.": 1, + "]": 1, + "purple": 1, + "called": 1, + "Gelett": 2, + "Kitchen.": 1, + "Instead": 1, + "examining": 1, + "say": 1 + }, + "XC": { + "int": 2, + "main": 1, + "(": 1, + ")": 1, + "{": 2, + "x": 3, + ";": 4, + "chan": 1, + "c": 3, + "par": 1, + "<:>": 1, + "0": 1, + "}": 2, + "return": 1 + }, + "JSON": { + "{": 73, + "}": 73, + "[": 17, + "]": 17, + "true": 3 + }, + "Scaml": { + "%": 1, + "p": 1, + "Hello": 1, + "World": 1 + }, + "Shell": { + "SHEBANG#!sh": 2, + "echo": 71, + "SHEBANG#!bash": 8, + "#": 53, + "declare": 22, + "-": 391, + "r": 17, + "sbt_release_version": 2, + "sbt_snapshot_version": 2, + "SNAPSHOT": 3, + "unset": 10, + "sbt_jar": 3, + "sbt_dir": 2, + "sbt_create": 2, + "sbt_snapshot": 1, + "sbt_launch_dir": 3, + "scala_version": 3, + "java_home": 1, + "sbt_explicit_version": 7, + "verbose": 6, + "debug": 11, + "quiet": 6, + "build_props_sbt": 3, + "(": 107, + ")": 154, + "{": 63, + "if": 39, + "[": 85, + "f": 68, + "project/build.properties": 9, + "]": 85, + ";": 138, + "then": 41, + "versionLine": 2, + "grep": 8, + "sbt.version": 3, + "versionString": 3, + "versionLine##sbt.version": 1, + "}": 61, + "fi": 34, + "update_build_props_sbt": 2, + "local": 22, + "ver": 5, + "old": 4, + "return": 3, + "elif": 4, + "perl": 3, + "pi": 1, + "e": 4, + "q": 8, + "||": 12, + "Updated": 1, + "file": 9, + "setting": 2, + "to": 33, + "Previous": 1, + "value": 1, + "was": 1, + "sbt_version": 8, + "n": 22, + "else": 10, + "v": 11, + "echoerr": 3, + "&": 5, + "vlog": 1, + "&&": 65, + "dlog": 8, + "get_script_path": 2, + "path": 13, + "L": 1, + "target": 1, + "readlink": 1, + "get_mem_opts": 3, + "mem": 4, + "perm": 6, + "/": 2, + "<": 2, + "codecache": 1, + "die": 2, + "exit": 10, + "make_url": 3, + "groupid": 1, + "category": 1, + "version": 12, + "default_jvm_opts": 1, + "default_sbt_opts": 1, + "default_sbt_mem": 2, + "noshare_opts": 1, + "sbt_opts_file": 1, + "jvm_opts_file": 1, + "latest_28": 1, + "latest_29": 1, + "latest_210": 1, + "script_path": 1, + "script_dir": 1, + "script_name": 2, + "java_cmd": 2, + "java": 2, + "sbt_mem": 5, + "a": 12, + "residual_args": 4, + "java_args": 3, + "scalac_args": 4, + "sbt_commands": 2, + "build_props_scala": 1, + "build.scala.versions": 1, + "versionLine##build.scala.versions": 1, + "%": 5, + ".*": 2, + "execRunner": 2, + "for": 7, + "arg": 3, + "do": 8, + "printf": 4, + "|": 17, + "done": 8, + "exec": 3, + "sbt_groupid": 3, + "case": 9, + "in": 25, + "*": 11, + "org.scala": 4, + "tools.sbt": 3, + "sbt": 18, + "esac": 7, + "sbt_artifactory_list": 2, + "version0": 2, + "url": 4, + "curl": 8, + "s": 14, + "list": 3, + "only": 6, + "F": 1, + "pe": 1, + "make_release_url": 2, + "releases": 1, + "make_snapshot_url": 2, + "snapshots": 1, + "head": 1, + "/dev/null": 6, + "jar_url": 1, + "jar_file": 1, + "download_url": 2, + "jar": 3, + "mkdir": 2, + "p": 2, + "dirname": 1, + "which": 10, + "fail": 1, + "silent": 1, + "output": 1, + "wget": 2, + "O": 1, + "acquire_sbt_jar": 1, + "sbt_url": 1, + "usage": 2, + "cat": 3, + "<<": 2, + "EOM": 3, + "Usage": 1, + "options": 8, + "h": 3, + "help": 5, + "print": 1, + "this": 6, + "message": 1, + "runner": 1, + "is": 11, + "chattier": 1, + "d": 9, + "set": 21, + "log": 2, + "level": 2, + "Debug": 1, + "Error": 1, + "no": 16, + "colors": 2, + "disable": 1, + "ANSI": 1, + "color": 1, + "codes": 1, + "create": 2, + "start": 1, + "even": 3, + "current": 1, + "directory": 5, + "contains": 2, + "project": 1, + "dir": 3, + "": 3, + "global": 1, + "settings/plugins": 1, + "default": 4, + "/.sbt/": 1, + "": 1, + "boot": 3, + "shared": 1, + "/.sbt/boot": 1, + "series": 1, + "ivy": 2, + "Ivy": 1, + "repository": 3, + "/.ivy2": 1, + "": 1, + "memory": 3, + "share": 2, + "use": 1, + "all": 1, + "caches": 1, + "sharing": 1, + "offline": 3, + "put": 1, + "mode": 2, + "jvm": 2, + "": 1, + "Turn": 1, + "on": 4, + "JVM": 1, + "debugging": 1, + "open": 1, + "at": 1, + "the": 17, + "given": 2, + "port.": 1, + "batch": 2, + "Disable": 1, + "interactive": 1, + "The": 1, + "way": 1, + "accomplish": 1, + "pre": 1, + "there": 2, + "build.properties": 1, + "an": 1, + "property": 1, + "update": 2, + "disk.": 1, + "That": 1, + "scalacOptions": 3, + "S": 2, + "stripped": 1, + "In": 1, + "of": 6, + "duplicated": 1, + "or": 3, + "conflicting": 1, + "order": 1, + "above": 1, + "shows": 1, + "precedence": 1, + "JAVA_OPTS": 1, + "lowest": 1, + "command": 5, + "line": 1, + "highest.": 1, + "addJava": 9, + "addSbt": 12, + "addScalac": 2, + "addResidual": 2, + "addResolver": 1, + "addDebugger": 2, + "get_jvm_opts": 2, + "process_args": 2, + "require_arg": 12, + "type": 5, + "opt": 3, + "z": 12, + "while": 3, + "gt": 1, + "shift": 28, + "integer": 1, + "inc": 1, + "port": 1, + "true": 2, + "snapshot": 1, + "launch": 1, + "scala": 3, + "home": 2, + "D*": 1, + "J*": 1, + "S*": 1, + "sbtargs": 3, + "IFS": 1, + "read": 1, + "<\"$sbt_opts_file\">": 1, + "process": 1, + "combined": 1, + "args": 2, + "reset": 1, + "residuals": 1, + "argumentCount=": 1, + "we": 1, + "were": 1, + "any": 1, + "opts": 1, + "eq": 1, + "0": 1, + "ThisBuild": 1, + "Update": 1, + "build": 2, + "properties": 1, + "disk": 5, + "explicit": 1, + "gives": 1, + "us": 1, + "choice": 1, + "Detected": 1, + "Overriding": 1, + "alert": 1, + "them": 1, + "stuff": 3, + "here": 1, + "argumentCount": 1, + "./build.sbt": 1, + "./project": 1, + "pwd": 1, + "doesn": 1, + "t": 3, + "understand": 1, + "iflast": 1, + "#residual_args": 1, + "@": 3, + "name": 1, + "foodforthought.jpg": 1, + "name##*fo": 1, + "rvm_ignore_rvmrc": 1, + "rvmrc": 3, + "rvm_rvmrc_files": 3, + "ef": 1, + "+": 1, + "GREP_OPTIONS": 1, + "source": 7, + "export": 25, + "rvm_path": 4, + "UID": 1, + "rvm_is_not_a_shell_function": 2, + "rvm_path/scripts": 1, + "rvm": 1, + "typeset": 5, + "i": 2, + "bottles": 6, + "Bash": 3, + "script": 1, + "dotfile": 1, + "does": 1, + "lot": 1, + "fun": 2, + "like": 1, + "turning": 1, + "normal": 1, + "dotfiles": 1, + "eg": 1, + ".bashrc": 1, + "into": 3, + "symlinks": 1, + "git": 16, + "pull": 3, + "away": 1, + "optionally": 1, + "moving": 1, + "files": 1, + "so": 1, + "that": 1, + "they": 1, + "can": 3, + "be": 3, + "preserved": 1, + "up": 1, + "cron": 1, + "job": 3, + "automate": 1, + "aforementioned": 1, + "and": 5, + "maybe": 1, + "some": 1, + "more": 3, + "shopt": 13, + "nocasematch": 1, + "This": 1, + "makes": 1, + "pattern": 1, + "matching": 1, + "insensitive": 1, + "POSTFIX": 1, + "URL": 1, + "PUSHURL": 1, + "overwrite": 3, + "print_help": 2, + "k": 1, + "keep": 3, + "false": 2, + "o": 3, + "continue": 1, + "mv": 1, + "rm": 2, + "ln": 1, + "config": 4, + "remote.origin.url": 1, + "remote.origin.pushurl": 1, + "crontab": 1, + ".jobs.cron": 1, + "/.bashrc": 3, + "x": 1, + "system": 1, + "rbenv": 2, + "versions": 1, + "bare": 1, + "prefix": 1, + "SHEBANG#!zsh": 2, + "##############################################################################": 16, + "#Import": 2, + "shell": 4, + "agnostic": 2, + "Zsh": 2, + "environment": 2, + "/.profile": 2, + "HISTSIZE": 2, + "#How": 2, + "many": 2, + "lines": 2, + "history": 18, + "HISTFILE": 2, + "/.zsh_history": 2, + "#Where": 2, + "save": 4, + "SAVEHIST": 2, + "#Number": 2, + "entries": 2, + "HISTDUP": 2, + "erase": 2, + "#Erase": 2, + "duplicates": 2, + "setopt": 8, + "appendhistory": 2, + "#Append": 2, + "overwriting": 2, + "sharehistory": 2, + "#Share": 2, + "across": 2, + "terminals": 2, + "incappendhistory": 2, + "#Immediately": 2, + "append": 2, + "not": 2, + "just": 2, + "when": 2, + "term": 2, + "killed": 2, + "#.": 2, + "/.dotfiles/z": 4, + "zsh/z.sh": 2, + "#function": 2, + "precmd": 2, + ".": 5, + "rupa/z.sh": 2, + "/usr/bin/clear": 2, + "PATH": 14, + "fpath": 6, + "HOME/.zsh/func": 2, + "U": 2, + "umask": 2, + "/opt/local/bin": 2, + "/opt/local/sbin": 2, + "/bin": 4, + "/usr/bin": 8, + "prompt": 2, + "endif": 2, + "dirpersiststore": 2, + "stty": 2, + "istrip": 2, + "##": 28, + "SCREENDIR": 2, + "/usr/local/bin": 6, + "/usr/local/sbin": 6, + "/usr/xpg4/bin": 4, + "/usr/sbin": 6, + "/usr/sfw/bin": 4, + "/usr/ccs/bin": 4, + "/usr/openwin/bin": 4, + "/opt/mysql/current/bin": 4, + "MANPATH": 2, + "/usr/local/man": 2, + "/usr/share/man": 2, + "Random": 2, + "ENV...": 2, + "TERM": 4, + "COLORTERM": 2, + "CLICOLOR": 2, + "anything": 2, + "actually": 2, + "DISPLAY": 2, + "pkgname": 1, + "stud": 4, + "pkgver": 1, + "pkgrel": 1, + "pkgdesc": 1, + "arch": 1, + "i686": 1, + "x86_64": 1, + "license": 1, + "depends": 1, + "libev": 1, + "openssl": 1, + "makedepends": 1, + "provides": 1, + "conflicts": 1, + "_gitroot": 1, + "https": 2, + "//github.com/bumptech/stud.git": 1, + "_gitname": 1, + "cd": 11, + "msg": 4, + "origin": 1, + "clone": 5, + "rf": 1, + "make": 6, + "package": 1, + "PREFIX": 1, + "/usr": 1, + "DESTDIR": 1, + "install": 8, + "Dm755": 1, + "init.stud": 1, + "docker": 1, + "from": 1, + "ubuntu": 1, + "maintainer": 1, + "Solomon": 1, + "Hykes": 1, + "": 1, + "run": 13, + "apt": 6, + "get": 6, + "y": 5, + "//go.googlecode.com/files/go1.1.1.linux": 1, + "amd64.tar.gz": 1, + "tar": 1, + "C": 1, + "/usr/local": 1, + "xz": 1, + "env": 4, + "/usr/local/go/bin": 2, + "/sbin": 2, + "GOPATH": 1, + "/go": 1, + "CGO_ENABLED": 1, + "/tmp": 1, + "t.go": 1, + "go": 2, + "test": 1, + "PKG": 12, + "github.com/kr/pty": 1, + "REV": 6, + "c699": 1, + "http": 3, + "//": 3, + "/go/src/": 6, + "checkout": 3, + "github.com/gorilla/context/": 1, + "d61e5": 1, + "github.com/gorilla/mux/": 1, + "b36453141c": 1, + "iptables": 1, + "/etc/apt/sources.list": 1, + "lxc": 1, + "aufs": 1, + "tools": 1, + "add": 1, + "/go/src/github.com/dotcloud/docker": 1, + "/go/src/github.com/dotcloud/docker/docker": 1, + "ldflags": 1, + "/go/bin": 1, + "cmd": 1, + "function": 6, + "ls": 6, + "Fh": 2, + "l": 8, + "long": 2, + "format...": 2, + "ll": 2, + "less": 2, + "XF": 2, + "pipe": 2, + "#CDPATH": 2, + "HISTIGNORE": 2, + "HISTCONTROL": 2, + "ignoreboth": 2, + "cdspell": 2, + "extglob": 2, + "progcomp": 2, + "complete": 82, + "X": 54, + "bunzip2": 2, + "bzcat": 2, + "bzcmp": 2, + "bzdiff": 2, + "bzegrep": 2, + "bzfgrep": 2, + "bzgrep": 2, + "unzip": 2, + "zipinfo": 2, + "compress": 2, + "znew": 2, + "gunzip": 2, + "zcmp": 2, + "zdiff": 2, + "zcat": 2, + "zegrep": 2, + "zfgrep": 2, + "zgrep": 2, + "zless": 2, + "zmore": 2, + "uncompress": 2, + "ee": 2, + "display": 2, + "xv": 2, + "qiv": 2, + "gv": 2, + "ggv": 2, + "xdvi": 2, + "dvips": 2, + "dviselect": 2, + "dvitype": 2, + "acroread": 2, + "xpdf": 2, + "makeinfo": 2, + "texi2html": 2, + "tex": 2, + "latex": 2, + "slitex": 2, + "jadetex": 2, + "pdfjadetex": 2, + "pdftex": 2, + "pdflatex": 2, + "texi2dvi": 2, + "mpg123": 2, + "mpg321": 2, + "xine": 2, + "aviplay": 2, + "realplay": 2, + "xanim": 2, + "ogg123": 2, + "gqmpeg": 2, + "freeamp": 2, + "xmms": 2, + "xfig": 2, + "timidity": 2, + "playmidi": 2, + "vi": 2, + "vim": 2, + "gvim": 2, + "rvim": 2, + "view": 2, + "rview": 2, + "rgvim": 2, + "rgview": 2, + "gview": 2, + "emacs": 2, + "wine": 2, + "bzme": 2, + "netscape": 2, + "mozilla": 2, + "lynx": 2, + "opera": 2, + "w3m": 2, + "galeon": 2, + "dillo": 2, + "elinks": 2, + "links": 2, + "u": 2, + "su": 2, + "passwd": 2, + "groups": 2, + "user": 2, + "commands": 8, + "see": 4, + "users": 2, + "A": 10, + "stopped": 4, + "P": 4, + "bg": 4, + "completes": 10, + "with": 12, + "jobs": 4, + "j": 2, + "fg": 2, + "disown": 2, + "other": 2, + "readonly": 4, + "variables": 2, + "helptopic": 2, + "helptopics": 2, + "unalias": 4, + "aliases": 2, + "binding": 2, + "bind": 4, + "readline": 2, + "bindings": 2, + "intelligent": 2, + "c": 2, + "man": 6, + "#sudo": 2, + "pushd": 2, + "rmdir": 2, + "Make": 2, + "directories": 2, + "W": 2, + "alias": 42, + "filenames": 2, + "PS1": 2, + "..": 2, + "cd..": 2, + "csh": 2, + "same": 2, + "as": 2, + "bash...": 2, + "quit": 2, + "shorter": 2, + "D": 2, + "rehash": 2, + "after": 2, + "I": 2, + "edit": 2, + "it": 2, + "pg": 2, + "patch": 2, + "sed": 2, + "awk": 2, + "diff": 2, + "find": 2, + "ps": 2, + "whoami": 2, + "ping": 2, + "histappend": 2, + "PROMPT_COMMAND": 2 + }, + "Sass": { + "blue": 7, + "#3bbfce": 2, + ";": 6, + "margin": 8, + "px": 3, + ".content_navigation": 1, + "{": 2, + "color": 4, + "}": 2, + ".border": 2, + "padding": 2, + "/": 4, + "border": 3, + "solid": 1, + ".content": 1, + "-": 3, + "navigation": 1, + "darken": 1, + "(": 1, + "%": 1, + ")": 1 + }, + "Oxygene": { + "": 1, + "DefaultTargets=": 1, + "xmlns=": 1, + "": 3, + "": 1, + "Loops": 2, + "": 1, + "": 1, + "exe": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "False": 4, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "Properties": 1, + "App.ico": 1, + "": 1, + "": 1, + "Condition=": 3, + "Release": 2, + "": 1, + "": 1, + "{": 1, + "BD89C": 1, + "-": 4, + "B610": 1, + "CEE": 1, + "CAF": 1, + "C515D88E2C94": 1, + "}": 1, + "": 1, + "": 3, + "": 1, + "DEBUG": 1, + ";": 2, + "TRACE": 1, + "": 1, + "": 2, + ".": 2, + "bin": 2, + "Debug": 1, + "": 2, + "": 1, + "True": 3, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "Project=": 1, + "": 2, + "": 5, + "Include=": 12, + "": 5, + "(": 5, + "Framework": 5, + ")": 5, + "mscorlib.dll": 1, + "": 5, + "": 5, + "System.dll": 1, + "ProgramFiles": 1, + "Reference": 1, + "Assemblies": 1, + "Microsoft": 1, + "v3.5": 1, + "System.Core.dll": 1, + "": 1, + "": 1, + "System.Data.dll": 1, + "System.Xml.dll": 1, + "": 2, + "": 4, + "": 1, + "": 1, + "": 2, + "ResXFileCodeGenerator": 1, + "": 2, + "": 1, + "": 1, + "SettingsSingleFileGenerator": 1, + "": 1, + "": 1 + }, + "ATS": { + "//": 211, + "#include": 16, + "staload": 25, + "_": 25, + "sortdef": 2, + "ftype": 13, + "type": 30, + "-": 49, + "infixr": 2, + "(": 562, + ")": 567, + "typedef": 10, + "a": 200, + "b": 26, + "": 2, + "functor": 12, + "F": 34, + "{": 142, + "}": 141, + "list0": 9, + "extern": 13, + "val": 95, + "functor_list0": 7, + "implement": 55, + "f": 22, + "lam": 20, + "xs": 82, + "list0_map": 2, + "": 14, + "": 3, + "option0": 3, + "functor_option0": 2, + "opt": 6, + "option0_map": 1, + "functor_homres": 2, + "c": 3, + "r": 25, + "x": 48, + "fun": 56, + "Yoneda_phi": 3, + "Yoneda_psi": 3, + "ftor": 9, + "fx": 8, + "m": 4, + "mf": 4, + "natrans": 3, + "G": 2, + "Yoneda_phi_nat": 2, + "Yoneda_psi_nat": 2, + "*": 2, + "datatype": 4, + "bool": 27, + "True": 7, + "|": 22, + "False": 8, + "boxed": 2, + "boolean": 2, + "bool2string": 4, + "string": 2, + "case": 9, + "+": 20, + "of": 59, + "fprint_val": 2, + "": 2, + "out": 8, + "fprint": 3, + "myboolist0": 9, + "list_t": 1, + "g0ofg1_list": 1, + "Yoneda_bool_list0": 3, + "myboolist1": 2, + "fprintln": 3, + "stdout_ref": 4, + "main0": 3, + "UN": 3, + "code": 6, + "reuse": 2, + "assume": 2, + "set_vtype": 3, + "elt": 2, + "t@ype": 2, + "List0_vt": 5, + "linset_nil": 2, + "list_vt_nil": 16, + "linset_make_nil": 2, + "linset_sing": 2, + "list_vt_cons": 17, + "linset_make_sing": 2, + "linset_is_nil": 2, + "list_vt_is_nil": 1, + "linset_isnot_nil": 2, + "list_vt_is_cons": 1, + "linset_size": 2, + "let": 34, + "n": 51, + "list_vt_length": 1, + "in": 48, + "i2sz": 4, + "end": 73, + "linset_is_member": 3, + "x0": 22, + "aux": 4, + "nat": 4, + ".": 14, + "": 3, + "list_vt": 7, + "<": 14, + "sgn": 9, + "compare_elt_elt": 4, + "if": 7, + "then": 11, + "false": 6, + "else": 7, + "true": 5, + "[": 49, + "]": 48, + "linset_copy": 2, + "list_vt_copy": 2, + "linset_free": 2, + "list_vt_free": 1, + "linset_insert": 3, + "mynode_cons": 4, + "nx": 22, + "mynode1": 6, + "xs1": 15, + "UN.castvwtp0": 8, + "List1_vt": 5, + "@list_vt_cons": 5, + "xs2": 3, + "prval": 20, + "UN.cast2void": 5, + ";": 4, + "fold@": 8, + "ins": 3, + "tail": 1, + "recursive": 1, + "&": 17, + "n1": 4, + "#": 7, + "<=>": 1, + "1": 3, + "mynode_make_elt": 4, + "ans": 2, + "is": 26, + "found": 1, + "effmask_all": 3, + "free@": 1, + "xs1_": 3, + "rem": 1, + "linset_remove": 2, + "linset_choose": 3, + "opt_some": 1, + "opt_none": 1, + "env": 11, + "linset_foreach_env": 3, + "list_vt_foreach": 1, + "fwork": 3, + "": 3, + "linset_foreach": 3, + "list_vt_foreach_env": 1, + "linset_listize": 2, + "linset_listize1": 2, + "mynode_null": 5, + "mynode": 3, + "null": 1, + "the_null_ptr": 1, + "mynode_free": 1, + "where": 6, + "nx2": 4, + "mynode_get_elt": 1, + "nx1": 7, + "UN.castvwtp1": 2, + "mynode_set_elt": 1, + "l": 3, + "__assert": 2, + "praxi": 1, + "void": 14, + "mynode_getfree_elt": 1, + "linset_takeout_ngc": 2, + "set": 34, + "takeout": 3, + "mynode0": 1, + "pf_x": 6, + "view@x": 3, + "pf_xs1": 6, + "view@xs1": 3, + "res": 9, + "linset_takeoutmax_ngc": 2, + "xs_": 4, + "@list_vt_nil": 1, + "linset_takeoutmin_ngc": 2, + "unsnoc": 4, + "pos": 1, + "": 16, + "and": 10, + "fold@xs": 1, + "CoYoneda": 7, + "CoYoneda_phi": 2, + "CoYoneda_psi": 3, + "int0": 4, + "I": 8, + "int": 2, + "int2bool": 2, + "i": 6, + "myintlist0": 2, + "g0ofg1": 1, + "list": 1, + "%": 7, + "#define": 4, + "NPHIL": 6, + "nphil": 13, + "natLt": 2, + "phil_left": 3, + "phil_right": 3, + "phil_loop": 10, + "cleaner_loop": 6, + "absvtype": 2, + "fork_vtype": 3, + "ptr": 2, + "vtypedef": 2, + "fork": 16, + "fork_get_num": 4, + "phil_dine": 3, + "lf": 5, + "rf": 5, + "phil_think": 3, + "cleaner_wash": 3, + "cleaner_return": 4, + "fork_changet": 5, + "channel": 11, + "forktray_changet": 4, + "": 1, + "html": 1, + "PUBLIC": 1, + "W3C": 1, + "DTD": 2, + "XHTML": 1, + "EN": 1, + "http": 2, + "www": 1, + "w3": 1, + "org": 1, + "TR": 1, + "xhtml11": 2, + "dtd": 1, + "": 1, + "xmlns=": 1, + "": 1, + "": 1, + "equiv=": 1, + "content=": 1, + "": 1, + "EFFECTIVATS": 1, + "DiningPhil2": 1, + "": 1, + "#patscode_style": 1, + "": 1, + "": 1, + "

": 1, + "Effective": 1, + "ATS": 2, + "Dining": 2, + "Philosophers": 2, + "

": 1, + "In": 2, + "this": 2, + "article": 2, + "present": 1, + "an": 6, + "implementation": 3, + "slight": 1, + "variant": 1, + "the": 30, + "famous": 1, + "problem": 1, + "by": 4, + "Dijkstra": 1, + "that": 8, + "makes": 1, + "simple": 1, + "but": 1, + "convincing": 1, + "use": 1, + "linear": 2, + "types.": 1, + "

": 8, + "The": 8, + "Original": 2, + "Problem": 2, + "

": 8, + "There": 3, + "are": 7, + "five": 1, + "philosophers": 1, + "sitting": 1, + "around": 1, + "table": 3, + "there": 3, + "also": 3, + "forks": 7, + "placed": 1, + "on": 8, + "such": 1, + "each": 2, + "located": 2, + "between": 1, + "left": 3, + "hand": 6, + "philosopher": 5, + "right": 3, + "another": 1, + "philosopher.": 1, + "Each": 4, + "does": 1, + "following": 6, + "routine": 1, + "repeatedly": 1, + "thinking": 1, + "dining.": 1, + "order": 1, + "to": 16, + "dine": 1, + "needs": 2, + "first": 2, + "acquire": 1, + "two": 3, + "one": 3, + "his": 4, + "side": 2, + "other": 2, + "side.": 2, + "After": 2, + "finishing": 1, + "dining": 1, + "puts": 2, + "acquired": 1, + "onto": 1, + "A": 6, + "Variant": 1, + "twist": 1, + "added": 1, + "original": 1, + "version": 1, + "

": 1, + "used": 1, + "it": 2, + "becomes": 1, + "be": 9, + "put": 1, + "tray": 2, + "for": 15, + "dirty": 2, + "forks.": 1, + "cleaner": 2, + "who": 1, + "cleans": 1, + "them": 2, + "back": 1, + "table.": 1, + "Channels": 1, + "Communication": 1, + "just": 1, + "shared": 1, + "queue": 1, + "fixed": 1, + "capacity.": 1, + "functions": 1, + "inserting": 1, + "element": 5, + "into": 3, + "taking": 1, + "given": 4, + "

": 7,
+      "class=": 6,
+      "#pats2xhtml_sats": 3,
+      "
": 7, + "If": 2, + "channel_insert": 5, + "called": 2, + "full": 4, + "caller": 2, + "blocked": 3, + "until": 2, + "taken": 1, + "channel.": 2, + "channel_takeout": 4, + "empty": 1, + "inserted": 1, + "Channel": 2, + "Fork": 3, + "Forks": 1, + "resources": 1, + "type.": 1, + "initially": 1, + "stored": 2, + "which": 2, + "can": 4, + "obtained": 2, + "calling": 2, + "function": 3, + "defined": 1, + "natural": 1, + "numbers": 1, + "less": 1, + "than": 1, + "channels": 4, + "storing": 3, + "chosen": 3, + "capacity": 3, + "reason": 1, + "store": 1, + "at": 2, + "most": 1, + "guarantee": 1, + "these": 1, + "never": 2, + "so": 2, + "no": 2, + "attempt": 1, + "made": 1, + "send": 1, + "signals": 1, + "awake": 1, + "callers": 1, + "supposedly": 1, + "being": 2, + "due": 1, + "Tray": 1, + "instead": 1, + "become": 1, + "as": 4, + "only": 1, + "total": 1, + "Philosopher": 1, + "Loop": 2, + "implemented": 2, + "loop": 2, + "#pats2xhtml_dats": 3, + "It": 2, + "should": 3, + "straighforward": 2, + "follow": 2, + "Cleaner": 1, + "finds": 1, + "number": 2, + "uses": 1, + "locate": 1, + "fork.": 1, + "Its": 1, + "actual": 1, + "follows": 1, + "now": 1, + "Testing": 1, + "entire": 1, + "files": 1, + "DiningPhil2.sats": 1, + "DiningPhil2.dats": 1, + "DiningPhil2_fork.dats": 1, + "DiningPhil2_thread.dats": 1, + "Makefile": 1, + "available": 1, + "compiling": 1, + "source": 1, + "excutable": 1, + "testing.": 1, + "One": 1, + "able": 1, + "encounter": 1, + "deadlock": 2, + "after": 1, + "running": 1, + "simulation": 1, + "while.": 1, + "
": 1, + "size=": 1, + "This": 1, + "written": 1, + "href=": 1, + "Hongwei": 1, + "Xi": 1, + "
": 1, + "": 1, + "": 1, + "main": 1, + "fprint_filsub": 1, + "t0p": 31, + "x1": 1, + "x2": 1, + "linset_make_list": 1, + "List": 1, + "INV": 24, + "size_t": 1, + "linset_isnot_member": 1, + "linset_takeout": 1, + "endfun": 1, + "linset_takeout_opt": 1, + "Option_vt": 4, + "linset_choose_opt": 1, + "linset_takeoutmax": 1, + "linset_takeoutmax_opt": 1, + "linset_takeoutmin": 1, + "linset_takeoutmin_opt": 1, + "fprint_linset": 3, + "sep": 1, + "FILEref": 2, + "overload": 1, + "with": 1, + "vt0p": 2, + "ATS_PACKNAME": 1, + "ATS_STALOADFLAG": 1, + "static": 1, + "loading": 1, + "run": 1, + "time": 1, + "castfn": 1, + "linset2list": 1, + "local": 10, + "datavtype": 1, + "FORK": 3, + "the_forkarray": 2, + "t": 1, + "array_tabulate": 1, + "fopr": 1, + "": 2, + "ch": 7, + "UN.cast": 2, + "channel_create_exn": 2, + "": 2, + "arrayref_tabulate": 1, + "the_forktray": 2, + "nmod": 1, + "randsleep": 6, + "intGte": 1, + "ignoret": 2, + "sleep": 2, + "uInt": 1, + "rand": 1, + "mod": 1, + "println": 9, + "nl": 2, + "nr": 2, + "ch_lfork": 2, + "ch_rfork": 2, + "HX": 1, + "try": 1, + "actively": 1, + "induce": 1, + "ch_forktray": 3, + "f0": 3, + "dynload": 3, + "mythread_create_cloptr": 6, + "llam": 6, + "while": 1 + }, + "SCSS": { + "blue": 4, + "#3bbfce": 1, + ";": 7, + "margin": 4, + "px": 1, + ".content": 1, + "-": 3, + "navigation": 1, + "{": 2, + "border": 2, + "color": 3, + "darken": 1, + "(": 1, + "%": 1, + ")": 1, + "}": 2, + ".border": 1, + "padding": 1, + "/": 2 + }, + "R": { + "df.residual.mira": 1, + "<": 46, + "-": 53, + "function": 18, + "(": 219, + "object": 12, + "...": 4, + ")": 220, + "{": 58, + "fit": 2, + "analyses": 1, + "[": 23, + "]": 24, + "return": 8, + "df.residual": 2, + "}": 58, + "df.residual.lme": 1, + "fixDF": 1, + "df.residual.mer": 1, + "sum": 1, + "object@dims": 1, + "*": 2, + "c": 11, + "+": 4, + "df.residual.default": 1, + "q": 3, + "df": 3, + "if": 19, + "is.null": 8, + "mk": 2, + "try": 3, + "coef": 1, + "silent": 3, + "TRUE": 14, + "mn": 2, + "f": 9, + "fitted": 1, + "inherits": 6, + "|": 3, + "NULL": 2, + "n": 3, + "ifelse": 1, + "is.data.frame": 1, + "is.matrix": 1, + "nrow": 1, + "length": 3, + "k": 3, + "max": 1, + "##polyg": 1, + "vector": 2, + "##numpoints": 1, + "number": 1, + "##output": 1, + "output": 1, + "##": 1, + "Example": 1, + "scripts": 1, + "group": 1, + "pts": 1, + "spsample": 1, + "polyg": 1, + "numpoints": 1, + "type": 3, + "SHEBANG#!Rscript": 2, + "ParseDates": 2, + "lines": 6, + "dates": 3, + "matrix": 3, + "unlist": 2, + "strsplit": 3, + "ncol": 3, + "byrow": 3, + "days": 2, + "times": 2, + "hours": 2, + "all.days": 2, + "all.hours": 2, + "data.frame": 1, + "Day": 2, + "factor": 2, + "levels": 2, + "Hour": 2, + "Main": 2, + "system": 1, + "intern": 1, + "punchcard": 4, + "as.data.frame": 1, + "table": 1, + "ggplot2": 6, + "ggplot": 1, + "aes": 2, + "y": 1, + "x": 3, + "geom_point": 1, + "size": 1, + "Freq": 1, + "scale_size": 1, + "range": 1, + "ggsave": 1, + "filename": 1, + "plot": 7, + "width": 7, + "height": 7, + "docType": 1, + "package": 5, + "name": 10, + "scholar": 6, + "alias": 2, + "title": 1, + "source": 3, + "The": 5, + "reads": 1, + "data": 13, + "from": 5, + "url": 2, + "http": 2, + "//scholar.google.com": 1, + ".": 7, + "Dates": 1, + "and": 5, + "citation": 2, + "counts": 1, + "are": 4, + "estimated": 1, + "determined": 1, + "automatically": 1, + "by": 2, + "a": 6, + "computer": 1, + "program.": 1, + "Use": 1, + "at": 2, + "your": 1, + "own": 1, + "risk.": 1, + "description": 1, + "code": 21, + "provides": 1, + "functions": 3, + "to": 9, + "extract": 1, + "Google": 2, + "Scholar.": 1, + "There": 1, + "also": 1, + "convenience": 1, + "for": 4, + "comparing": 1, + "multiple": 1, + "scholars": 1, + "predicting": 1, + "h": 13, + "index": 1, + "scores": 1, + "based": 1, + "on": 2, + "past": 1, + "publication": 1, + "records.": 1, + "note": 1, + "A": 1, + "complementary": 1, + "set": 2, + "of": 2, + "Scholar": 1, + "can": 3, + "be": 8, + "found": 1, + "//biostat.jhsph.edu/": 1, + "jleek/code/googleCite.r": 1, + "was": 1, + "developed": 1, + "independently.": 1, + "#": 45, + "module": 25, + "available": 1, + "via": 1, + "the": 16, + "environment": 4, + "like": 1, + "it": 3, + "returns.": 1, + "@param": 2, + "an": 1, + "identifier": 1, + "specifying": 1, + "full": 1, + "path": 9, + "search": 5, + "see": 1, + "Details": 1, + "even": 1, + "attach": 11, + "is": 7, + "FALSE": 9, + "optionally": 1, + "attached": 2, + "current": 2, + "scope": 1, + "defaults": 1, + "However": 1, + "in": 8, + "interactive": 2, + "invoked": 1, + "directly": 1, + "terminal": 1, + "only": 1, + "i.e.": 1, + "not": 4, + "within": 1, + "modules": 4, + "import.attach": 1, + "or": 1, + "depending": 1, + "user": 1, + "s": 2, + "preference.": 1, + "attach_operators": 3, + "causes": 1, + "emph": 3, + "operators": 3, + "default": 1, + "path.": 1, + "Not": 1, + "attaching": 1, + "them": 1, + "therefore": 1, + "drastically": 1, + "limits": 1, + "usefulness.": 1, + "Modules": 1, + "searched": 1, + "options": 1, + "priority.": 1, + "directory": 1, + "always": 1, + "considered": 1, + "first.": 1, + "That": 1, + "local": 3, + "file": 4, + "./a.r": 1, + "will": 2, + "loaded.": 1, + "Module": 1, + "names": 2, + "fully": 1, + "qualified": 1, + "refer": 1, + "nested": 1, + "paths.": 1, + "See": 1, + "import": 5, + "executed": 1, + "global": 1, + "effect": 1, + "same.": 1, + "When": 1, + "used": 2, + "globally": 1, + "inside": 1, + "newly": 2, + "outside": 1, + "nor": 1, + "other": 2, + "which": 3, + "might": 1, + "loaded": 4, + "@examples": 1, + "@seealso": 3, + "reload": 3, + "@export": 2, + "substitute": 2, + "stopifnot": 3, + "missing": 1, + "&&": 2, + "module_name": 7, + "getOption": 1, + "else": 4, + "class": 4, + "module_path": 15, + "find_module": 1, + "stop": 1, + "attr": 2, + "message": 1, + "containing_modules": 3, + "module_init_files": 1, + "mapply": 1, + "do_import": 4, + "mod_ns": 5, + "as.character": 3, + "module_parent": 8, + "parent.frame": 2, + "mod_env": 7, + "exhibit_namespace": 3, + "identical": 2, + ".GlobalEnv": 2, + "environmentName": 2, + "parent.env": 4, + "export_operators": 2, + "invisible": 1, + "is_module_loaded": 1, + "get_loaded_module": 1, + "namespace": 13, + "structure": 3, + "new.env": 1, + "parent": 9, + ".BaseNamespaceEnv": 1, + "paste": 3, + "sep": 4, + "chdir": 1, + "envir": 5, + "cache_module": 1, + "exported_functions": 2, + "lsf.str": 2, + "list2env": 2, + "sapply": 2, + "get": 2, + "ops": 2, + "is_predefined": 2, + "%": 2, + "is_op": 2, + "prefix": 3, + "||": 1, + "grepl": 1, + "Filter": 1, + "op_env": 4, + "cache.": 1, + "@note": 1, + "Any": 1, + "references": 1, + "remain": 1, + "unchanged": 1, + "files": 1, + "would": 1, + "have": 1, + "happened": 1, + "without": 1, + "unload": 2, + "should": 2, + "production": 1, + "code.": 1, + "does": 1, + "currently": 1, + "detach": 1, + "environments.": 1, + "Reload": 1, + "given": 1, + "Remove": 1, + "cache": 1, + "forcing": 1, + "reload.": 1, + "reloaded": 1, + "reference": 1, + "unloaded": 1, + "still": 1, + "work.": 1, + "Reloading": 1, + "primarily": 1, + "useful": 1, + "testing": 1, + "during": 1, + "module_ref": 3, + "rm": 1, + "list": 1, + ".loaded_modules": 1, + "whatnot.": 1, + "assign": 1, + "hello": 2, + "print": 1, + "MedianNorm": 2, + "geomeans": 3, + "<->": 1, + "exp": 1, + "rowMeans": 1, + "log": 5, + "apply": 2, + "2": 1, + "cnts": 2, + "median": 1, + "library": 1, + "print_usage": 2, + "stderr": 1, + "cat": 1, + "spec": 2, + "opt": 23, + "getopt": 1, + "help": 1, + "stdout": 1, + "status": 1, + "out": 4, + "res": 6, + "ylim": 7, + "read.table": 1, + "header": 1, + "quote": 1, + "nsamp": 8, + "dim": 1, + "outfile": 4, + "sprintf": 2, + "png": 2, + "hist": 4, + "mids": 4, + "density": 4, + "col": 4, + "rainbow": 4, + "main": 2, + "xlab": 2, + "ylab": 2, + "i": 6, + "devnum": 2, + "dev.off": 2, + "size.factors": 2, + "data.matrix": 1, + "data.norm": 3, + "t": 1, + "/": 1 + }, + "Brightscript": { + "**": 17, + "Simple": 1, + "Grid": 2, + "Screen": 2, + "Demonstration": 1, + "App": 1, + "Copyright": 1, + "(": 32, + "c": 1, + ")": 31, + "Roku": 1, + "Inc.": 1, + "All": 3, + "Rights": 1, + "Reserved.": 1, + "************************************************************": 2, + "Sub": 2, + "Main": 1, + "set": 2, + "to": 10, + "go": 1, + "time": 1, + "get": 1, + "started": 1, + "while": 4, + "gridstyle": 7, + "<": 1, + "print": 7, + ";": 10, + "screen": 5, + "preShowGridScreen": 2, + "showGridScreen": 2, + "end": 2, + "End": 4, + "Set": 1, + "the": 17, + "configurable": 1, + "theme": 3, + "attributes": 2, + "for": 10, + "application": 1, + "Configure": 1, + "custom": 1, + "overhang": 1, + "and": 4, + "Logo": 1, + "are": 2, + "artwork": 2, + "colors": 1, + "offsets": 1, + "specific": 1, + "app": 1, + "******************************************************": 4, + "Screens": 1, + "can": 2, + "make": 1, + "slight": 1, + "adjustments": 1, + "default": 1, + "individual": 1, + "attributes.": 1, + "these": 1, + "greyscales": 1, + "theme.GridScreenBackgroundColor": 1, + "theme.GridScreenMessageColor": 1, + "theme.GridScreenRetrievingColor": 1, + "theme.GridScreenListNameColor": 1, + "used": 1, + "in": 3, + "theme.CounterTextLeft": 1, + "theme.CounterSeparator": 1, + "theme.CounterTextRight": 1, + "theme.GridScreenLogoHD": 1, + "theme.GridScreenLogoOffsetHD_X": 1, + "theme.GridScreenLogoOffsetHD_Y": 1, + "theme.GridScreenOverhangHeightHD": 1, + "theme.GridScreenLogoSD": 1, + "theme.GridScreenOverhangHeightSD": 1, + "theme.GridScreenLogoOffsetSD_X": 1, + "theme.GridScreenLogoOffsetSD_Y": 1, + "theme.GridScreenFocusBorderSD": 1, + "theme.GridScreenFocusBorderHD": 1, + "use": 1, + "your": 1, + "own": 1, + "description": 1, + "background": 1, + "theme.GridScreenDescriptionOffsetSD": 1, + "theme.GridScreenDescriptionOffsetHD": 1, + "return": 5, + "Function": 5, + "Perform": 1, + "any": 1, + "startup/initialization": 1, + "stuff": 1, + "prior": 1, + "style": 6, + "as": 2, + "string": 3, + "As": 3, + "Object": 2, + "m.port": 3, + "CreateObject": 2, + "screen.SetMessagePort": 1, + "screen.": 1, + "The": 1, + "will": 3, + "show": 1, + "retreiving": 1, + "categoryList": 4, + "getCategoryList": 1, + "[": 3, + "]": 4, + "+": 1, + "screen.setupLists": 1, + "categoryList.count": 2, + "screen.SetListNames": 1, + "StyleButtons": 3, + "getGridControlButtons": 1, + "screen.SetContentList": 2, + "i": 3, + "-": 15, + "getShowsForCategoryItem": 1, + "screen.Show": 1, + "true": 1, + "msg": 3, + "wait": 1, + "getmessageport": 1, + "does": 1, + "not": 2, + "work": 1, + "on": 1, + "gridscreen": 1, + "type": 2, + "if": 3, + "then": 3, + "msg.GetMessage": 1, + "msg.GetIndex": 3, + "msg.getData": 2, + "msg.isListItemFocused": 1, + "else": 1, + "msg.isListItemSelected": 1, + "row": 2, + "selection": 3, + "yes": 1, + "so": 2, + "we": 3, + "come": 1, + "back": 1, + "with": 2, + "new": 1, + ".Title": 1, + "endif": 1, + "**********************************************************": 1, + "this": 3, + "function": 1, + "passing": 1, + "an": 1, + "roAssociativeArray": 2, + "be": 2, + "sufficient": 1, + "springboard": 2, + "display": 2, + "add": 1, + "code": 1, + "create": 1, + "now": 1, + "do": 1, + "nothing": 1, + "Return": 1, + "list": 1, + "of": 5, + "categories": 1, + "filter": 1, + "all": 1, + "categories.": 1, + "just": 2, + "static": 1, + "data": 2, + "example.": 1, + "********************************************************************": 1, + "ContentMetaData": 1, + "objects": 1, + "shows": 1, + "category.": 1, + "For": 1, + "example": 1, + "cheat": 1, + "but": 2, + "ideally": 1, + "you": 1, + "dynamically": 1, + "content": 2, + "each": 1, + "category": 1, + "is": 1, + "dynamic": 1, + "s": 1, + "one": 3, + "small": 1, + "step": 1, + "a": 4, + "man": 1, + "giant": 1, + "leap": 1, + "mankind.": 1, + "http": 14, + "//upload.wikimedia.org/wikipedia/commons/1/1e/Apollo_11_first_step.jpg": 2, + "I": 2, + "have": 2, + "Dream": 1, + "PG": 1, + "dream": 1, + "that": 1, + "my": 1, + "four": 1, + "little": 1, + "children": 1, + "day": 1, + "live": 1, + "nation": 1, + "where": 1, + "they": 1, + "judged": 1, + "by": 2, + "color": 1, + "their": 2, + "skin": 1, + "character.": 1, + "//upload.wikimedia.org/wikipedia/commons/8/81/Martin_Luther_King_": 2, + "_March_on_Washington.jpg": 2, + "Flat": 6, + "Movie": 2, + "HD": 6, + "x2": 4, + "SD": 5, + "Netflix": 1, + "//upload.wikimedia.org/wikipedia/commons/4/43/Gold_star_on_blue.gif": 2, + "Landscape": 1, + "x3": 6, + "Channel": 1, + "Store": 1, + "//upload.wikimedia.org/wikipedia/commons/thumb/9/96/Dunkery_Hill.jpg/800px": 2, + "Dunkery_Hill.jpg": 2, + "Portrait": 1, + "x4": 1, + "posters": 3, + "//upload.wikimedia.org/wikipedia/commons/9/9f/Kane_George_Gurnett.jpg": 2, + "Square": 1, + "x1": 1, + "//upload.wikimedia.org/wikipedia/commons/thumb/d/de/SQUARE_SHAPE.svg/536px": 2, + "SQUARE_SHAPE.svg.png": 2, + "x9": 1, + "//upload.wikimedia.org/wikipedia/commons/thumb/2/22/": 2, + "%": 8, + "C3": 4, + "cran_TV_plat.svg/200px": 2, + "cran_TV_plat.svg.png": 2, + "}": 1, + "buttons": 1 + }, + "HTML": { + "": 2, + "html": 1, + "PUBLIC": 2, + "W3C": 2, + "DTD": 3, + "XHTML": 1, + "1": 1, + "0": 2, + "Transitional": 1, + "EN": 2, + "http": 3, + "www": 2, + "w3": 2, + "org": 2, + "TR": 2, + "xhtml1": 2, + "transitional": 1, + "dtd": 2, + "": 2, + "xmlns=": 1, + "": 2, + "": 1, + "equiv=": 1, + "content=": 1, + "": 2, + "Related": 2, + "Pages": 2, + "": 2, + "": 1, + "href=": 9, + "rel=": 1, + "type=": 1, + "": 1, + "": 2, + "
": 10, + "class=": 22, + "": 8, + "Main": 1, + "Page": 1, + "": 8, + "&": 3, + "middot": 3, + ";": 3, + "Class": 2, + "Overview": 2, + "Hierarchy": 1, + "All": 1, + "Classes": 1, + "
": 11, + "Here": 1, + "is": 1, + "a": 4, + "list": 1, + "of": 5, + "all": 1, + "related": 1, + "documentation": 1, + "pages": 1, + "": 1, + "": 2, + "id=": 2, + "": 4, + "": 2, + "16": 1, + "The": 2, + "Layout": 1, + "System": 1, + "
": 4, + "": 2, + "src=": 2, + "alt=": 2, + "width=": 1, + "height=": 2, + "target=": 3, + "
": 1, + "Generated": 1, + "with": 1, + "Doxygen": 1, + "": 2, + "": 2, + "HTML": 2, + "4": 1, + "Frameset": 1, + "REC": 1, + "html40": 1, + "frameset": 1, + "Common_meta": 1, + "(": 14, + ")": 14, + "Android": 5, + "API": 7, + "Differences": 2, + "Report": 2, + "Header": 1, + "

": 1, + "

": 1, + "

": 3, + "This": 1, + "document": 1, + "details": 1, + "the": 11, + "changes": 2, + "in": 4, + "framework": 2, + "API.": 3, + "It": 2, + "shows": 1, + "additions": 1, + "modifications": 1, + "and": 5, + "removals": 2, + "for": 2, + "packages": 1, + "classes": 1, + "methods": 1, + "fields.": 1, + "Each": 1, + "reference": 1, + "to": 3, + "an": 3, + "change": 2, + "includes": 1, + "brief": 1, + "description": 1, + "explanation": 1, + "suggested": 1, + "workaround": 1, + "where": 1, + "available.": 1, + "

": 3, + "differences": 2, + "described": 1, + "this": 2, + "report": 1, + "are": 3, + "based": 1, + "comparison": 1, + "APIs": 1, + "whose": 1, + "versions": 1, + "specified": 1, + "upper": 1, + "-": 1, + "right": 1, + "corner": 1, + "page.": 1, + "compares": 1, + "newer": 1, + "older": 2, + "version": 1, + "noting": 1, + "any": 1, + "relative": 1, + "So": 1, + "example": 1, + "indicated": 1, + "no": 1, + "longer": 1, + "present": 1, + "For": 1, + "more": 1, + "information": 1, + "about": 1, + "SDK": 1, + "see": 1, + "product": 1, + "site": 1, + ".": 1, + "if": 4, + "no_delta": 1, + "

": 1, + "Congratulation": 1, + "

": 1, + "No": 1, + "were": 1, + "detected": 1, + "between": 1, + "two": 1, + "provided": 1, + "APIs.": 1, + "endif": 4, + "removed_packages": 2, + "Table": 3, + "name": 3, + "rows": 3, + "{": 3, + "it.from": 1, + "ModelElementRow": 1, + "}": 3, + "
": 3, + "added_packages": 2, + "it.to": 2, + "PackageAddedLink": 1, + "SimpleTableRow": 2, + "changed_packages": 2, + "PackageChangedLink": 1 + }, + "Frege": { + "package": 2, + "examples.SwingExamples": 1, + "where": 39, + "import": 7, + "Java.Awt": 1, + "(": 339, + "ActionListener": 2, + ")": 345, + "Java.Swing": 1, + "main": 11, + "_": 60, + "do": 38, + "rs": 2, + "<": 84, + "-": 730, + "mapM": 3, + "Runnable.new": 1, + "[": 120, + "helloWorldGUI": 2, + "buttonDemoGUI": 2, + "celsiusConverterGUI": 2, + "]": 116, + "mapM_": 5, + "invokeLater": 1, + "println": 25, + "s": 21, + "getLine": 2, + "return": 17, + "tempTextField": 2, + "JTextField.new": 1, + "celsiusLabel": 1, + "JLabel.new": 3, + "convertButton": 1, + "JButton.new": 3, + "fahrenheitLabel": 1, + "frame": 3, + "JFrame.new": 3, + "frame.setDefaultCloseOperation": 3, + "JFrame.dispose_on_close": 3, + "frame.setTitle": 1, + "celsiusLabel.setText": 1, + "convertButton.setText": 1, + "let": 8, + "convertButtonActionPerformed": 2, + "celsius": 3, + "<->": 35, + "getText": 1, + "case": 6, + "double": 1, + "of": 32, + "Left": 5, + "fahrenheitLabel.setText": 3, + "+": 200, + "Right": 6, + "c": 33, + "show": 24, + "c*1.8": 1, + ".long": 1, + "ActionListener.new": 2, + "convertButton.addActionListener": 1, + "contentPane": 2, + "frame.getContentPane": 2, + "layout": 2, + "GroupLayout.new": 1, + "contentPane.setLayout": 1, + "TODO": 1, + "continue": 1, + "http": 3, + "//docs.oracle.com/javase/tutorial/displayCode.html": 1, + "code": 1, + "//docs.oracle.com/javase/tutorial/uiswing/examples/learn/CelsiusConverterProject/src/learn/CelsiusConverterGUI.java": 1, + "frame.pack": 3, + "frame.setVisible": 3, + "true": 16, + "label": 2, + "cp": 3, + "cp.add": 1, + "newContentPane": 2, + "JPanel.new": 1, + "b1": 11, + "JButton": 4, + "b1.setVerticalTextPosition": 1, + "SwingConstants.center": 2, + "b1.setHorizontalTextPosition": 1, + "SwingConstants.leading": 2, + "b2": 10, + "b2.setVerticalTextPosition": 1, + "b2.setHorizontalTextPosition": 1, + "b3": 7, + "new": 9, + "Enable": 1, + "middle": 2, + "button": 1, + "setVerticalTextPosition": 1, + "SwingConstants": 2, + "center": 1, + "setHorizontalTextPosition": 1, + "leading": 1, + "setEnabled": 7, + "false": 13, + "action1": 2, + "action3": 2, + "b1.addActionListener": 1, + "b3.addActionListener": 1, + "newContentPane.add": 3, + "newContentPane.setOpaque": 1, + "frame.setContentPane": 1, + "examples.Sudoku": 1, + "Data.TreeMap": 1, + "Tree": 4, + "keys": 2, + "Data.List": 1, + "as": 33, + "DL": 1, + "hiding": 1, + "find": 20, + "union": 10, + "type": 8, + "Element": 6, + "Int": 6, + "Zelle": 8, + "set": 4, + "candidates": 18, + "Position": 22, + "Feld": 3, + "Brett": 13, + "data": 3, + "for": 25, + "assumptions": 10, + "and": 14, + "conclusions": 2, + "Assumption": 21, + "ISNOT": 14, + "|": 62, + "IS": 16, + "derive": 2, + "Eq": 1, + "Ord": 1, + "instance": 1, + "Show": 1, + "p": 72, + "e": 15, + "pname": 10, + "e.show": 2, + "showcs": 5, + "cs": 27, + "joined": 4, + "map": 49, + "Assumption.show": 1, + "elements": 12, + "all": 22, + "possible": 2, + "..": 1, + "positions": 16, + "rowstarts": 4, + "a": 99, + "row": 20, + "is": 24, + "starting": 3, + "colstarts": 3, + "column": 2, + "boxstarts": 3, + "box": 15, + "boxmuster": 3, + "pattern": 1, + "by": 3, + "adding": 1, + "upper": 2, + "left": 4, + "position": 9, + "results": 1, + "in": 22, + "real": 1, + "extract": 2, + "field": 9, + "getf": 16, + "f": 19, + "fs": 22, + "fst": 9, + "otherwise": 8, + "cell": 24, + "getc": 12, + "b": 113, + "snd": 20, + "compute": 5, + "the": 20, + "list": 7, + "that": 18, + "belong": 3, + "to": 13, + "same": 8, + "given": 3, + "z..": 1, + "z": 12, + "quot": 1, + "*": 5, + "col": 17, + "mod": 3, + "ri": 2, + "div": 3, + "or": 15, + "depending": 1, + "on": 4, + "ci": 3, + "index": 3, + "right": 4, + "check": 2, + "if": 5, + "candidate": 10, + "has": 2, + "exactly": 2, + "one": 2, + "member": 1, + "i.e.": 1, + "been": 1, + "solved": 1, + "single": 9, + "Bool": 2, + "unsolved": 10, + "rows": 4, + "cols": 6, + "boxes": 1, + "allrows": 8, + "allcols": 5, + "allboxs": 5, + "allrcb": 5, + "zip": 7, + "repeat": 3, + "containers": 6, + "String": 9, + "PRINTING": 1, + "printable": 1, + "coordinate": 1, + "a1": 3, + "lower": 1, + "i9": 1, + "packed": 1, + "chr": 2, + "ord": 6, + "print": 25, + "board": 41, + "printb": 4, + "p1line": 2, + "pfld": 4, + "line": 2, + "brief": 1, + "no": 4, + ".": 41, + "some": 2, + "x": 45, + "zs": 1, + "initial/final": 1, + "result": 11, + "msg": 6, + "res012": 2, + "concatMap": 1, + "a*100": 1, + "b*10": 1, + "BOARD": 1, + "ALTERATION": 1, + "ACTIONS": 1, + "message": 1, + "about": 1, + "what": 1, + "done": 1, + "turnoff1": 3, + "IO": 13, + "i": 16, + "off": 11, + "nc": 7, + "head": 19, + "newb": 7, + "filter": 26, + "notElem": 7, + "turnoff": 11, + "turnoffh": 1, + "ps": 8, + "foldM": 2, + "toh": 2, + "setto": 3, + "n": 38, + "cname": 4, + "nf": 2, + "SOLVING": 1, + "STRATEGIES": 1, + "reduce": 3, + "sets": 2, + "contains": 1, + "numbers": 1, + "already": 1, + "This": 2, + "finds": 1, + "logs": 1, + "NAKED": 5, + "SINGLEs": 1, + "passing.": 1, + "sss": 3, + "each": 2, + "with": 15, + "more": 2, + "than": 2, + "fields": 6, + "are": 6, + "rcb": 16, + "elem": 16, + "collect": 1, + "remove": 3, + "from": 7, + "look": 10, + "number": 4, + "appears": 1, + "container": 9, + "this": 2, + "can": 9, + "go": 1, + "other": 2, + "place": 1, + "HIDDEN": 6, + "SINGLE": 1, + "hiddenSingle": 2, + "select": 1, + "containername": 1, + "FOR": 11, + "IN": 9, + "occurs": 5, + "length": 20, + "PAIRS": 8, + "TRIPLES": 8, + "QUADS": 2, + "nakedPair": 4, + "t": 14, + "nm": 6, + "SELECT": 3, + "pos": 5, + "tuple": 2, + "name": 2, + "//": 8, + "u": 6, + "fold": 7, + "non": 2, + "outof": 6, + "tuples": 2, + "hit": 7, + "subset": 3, + "any": 3, + "hiddenPair": 4, + "minus": 2, + "uniq": 4, + "sort": 4, + "common": 4, + "1": 2, + "bs": 7, + "undefined": 1, + "cannot": 1, + "happen": 1, + "because": 1, + "either": 1, + "empty": 4, + "not": 5, + "intersectionlist": 2, + "intersections": 2, + "reason": 8, + "reson": 1, + "cpos": 7, + "WHERE": 2, + "tail": 2, + "intersection": 1, + "we": 5, + "occurences": 1, + "but": 2, + "an": 6, + "XY": 2, + "Wing": 2, + "there": 6, + "exists": 6, + "A": 7, + "X": 5, + "Y": 4, + "B": 5, + "Z": 6, + "shares": 2, + "C": 6, + "reasoning": 1, + "will": 4, + "be": 9, + "since": 1, + "indeed": 1, + "thus": 1, + "see": 1, + "xyWing": 2, + "y": 15, + "rcba": 4, + "share": 1, + "&&": 9, + "||": 2, + "then": 1, + "else": 1, + "c1": 4, + "c2": 3, + "N": 5, + "Fish": 1, + "Swordfish": 1, + "Jellyfish": 1, + "When": 2, + "particular": 1, + "digit": 1, + "located": 2, + "only": 1, + "columns": 2, + "eliminate": 1, + "those": 2, + "which": 2, + "fish": 7, + "fishname": 5, + "rset": 4, + "take": 13, + "certain": 1, + "rflds": 2, + "rowset": 1, + "colss": 3, + "must": 4, + "appear": 1, + "at": 3, + "least": 3, + "cstart": 2, + "immediate": 1, + "consequences": 6, + "assumption": 8, + "form": 1, + "conseq": 3, + "two": 1, + "contradict": 2, + "contradicts": 7, + "get": 3, + "aPos": 5, + "List": 1, + "turned": 1, + "when": 2, + "true/false": 1, + "toClear": 7, + "whose": 1, + "implications": 5, + "themself": 1, + "chain": 2, + "paths": 12, + "solution": 6, + "reverse": 4, + "css": 7, + "yields": 1, + "contradictory": 1, + "chainContra": 2, + "pro": 7, + "contra": 4, + "ALL": 2, + "conlusions": 1, + "uniqBy": 2, + "using": 2, + "sortBy": 2, + "comparing": 2, + "conslusion": 1, + "chains": 4, + "LET": 1, + "BE": 1, + "final": 2, + "conclusion": 4, + "THE": 1, + "FIRST": 1, + "con": 3, + "implication": 2, + "ai": 2, + "so": 1, + "a0": 1, + "OR": 7, + "a2": 2, + "...": 2, + "IMPLIES": 1, + "For": 2, + "cells": 1, + "pi": 2, + "have": 1, + "construct": 2, + "p0": 1, + "p1": 1, + "c0": 1, + "cellRegionChain": 2, + "os": 3, + "cellas": 2, + "regionas": 2, + "iss": 3, + "ass": 2, + "first": 2, + "candidates@": 1, + "region": 2, + "oss": 2, + "Liste": 1, + "aller": 1, + "Annahmen": 1, + "r": 7, + "ein": 1, + "bestimmtes": 1, + "acstree": 3, + "Tree.fromList": 1, + "bypass": 1, + "maybe": 1, + "tree": 1, + "lookup": 2, + "Just": 2, + "error": 1, + "performance": 1, + "resons": 1, + "confine": 1, + "ourselves": 1, + "20": 1, + "per": 1, + "mkPaths": 3, + "acst": 3, + "impl": 2, + "{": 1, + "a3": 1, + "ordered": 1, + "impls": 2, + "ns": 2, + "concat": 1, + "takeUntil": 1, + "null": 1, + "iterate": 1, + "expandchain": 3, + "avoid": 1, + "loops": 1, + "uni": 3, + "SOLVE": 1, + "SUDOKU": 1, + "Apply": 1, + "available": 1, + "strategies": 1, + "until": 1, + "nothing": 2, + "changes": 1, + "anymore": 1, + "Strategy": 1, + "functions": 2, + "supposed": 1, + "applied": 1, + "give": 2, + "changed": 1, + "board.": 1, + "strategy": 2, + "does": 2, + "anything": 1, + "alter": 1, + "it": 2, + "returns": 2, + "next": 1, + "tried.": 1, + "solve": 19, + "res@": 16, + "apply": 17, + "res": 16, + "smallest": 1, + "comment": 16, + "SINGLES": 1, + "locked": 1, + "2": 3, + "QUADRUPELS": 6, + "3": 3, + "4": 3, + "WINGS": 1, + "FISH": 3, + "pcomment": 2, + "9": 5, + "forcing": 1, + "allow": 1, + "infer": 1, + "both": 1, + "brd": 2, + "com": 5, + "stderr": 3, + "<<": 4, + "log": 1, + "turn": 1, + "string": 3, + "into": 1, + "mkrow": 2, + "mkrow1": 2, + "xs": 4, + "make": 1, + "sure": 1, + "unpacked": 2, + "<=>": 1, + "0": 2, + "ignored": 1, + "h": 1, + "help": 1, + "usage": 1, + "java": 5, + "Sudoku": 2, + "file": 4, + "81": 3, + "char": 1, + "consisting": 1, + "digits": 2, + "One": 1, + "such": 1, + "going": 1, + "www": 1, + "sudokuoftheday": 1, + "pages": 1, + "o": 1, + "d": 3, + "php": 1, + "click": 1, + "puzzle": 1, + "open": 1, + "tab": 1, + "Copy": 1, + "URL": 2, + "address": 1, + "your": 1, + "browser": 1, + "There": 1, + "also": 1, + "hard": 1, + "sudokus": 1, + "examples": 1, + "top95": 1, + "txt": 1, + "W": 1, + "felder": 2, + "decode": 4, + "files": 2, + "forM_": 1, + "sudoku": 2, + "br": 4, + "openReader": 1, + "lines": 2, + "BufferedReader.getLines": 1, + "process": 5, + "ss": 8, + "sum": 2, + "candi": 2, + "consider": 3, + "acht": 4, + "stderr.println": 3, + "neun": 2, + "module": 2, + "examples.CommandLineClock": 1, + "Date": 5, + "native": 4, + "java.util.Date": 1, + "MutableIO": 1, + "toString": 2, + "Mutable": 1, + "ST": 1, + "d.toString": 1, + "action": 2, + "us": 1, + "current": 4, + "time": 1, + "lang": 2, + "Thread": 2, + "sleep": 4, + "takes": 1, + "long": 4, + "may": 1, + "throw": 1, + "InterruptedException": 4, + "without": 1, + "doubt": 1, + "public": 1, + "static": 1, + "void": 2, + "millis": 1, + "throws": 4, + "Encoded": 1, + "Frege": 1, + "argument": 1, + "Long": 3, + "defined": 1, + "frege": 1, + "Lang": 1, + "args": 2, + "forever": 1, + "stdout.flush": 1, + "Thread.sleep": 4, + "examples.Concurrent": 1, + "System.Random": 1, + "Java.Net": 1, + "Control.Concurrent": 1, + "main2": 1, + "m": 2, + "newEmptyMVar": 1, + "forkIO": 11, + "m.put": 3, + "replicateM_": 3, + "m.take": 1, + "example1": 1, + "putChar": 2, + "example2": 2, + "setReminder": 3, + "L*n": 1, + "table": 1, + "mainPhil": 2, + "fork1": 3, + "fork2": 3, + "fork3": 3, + "fork4": 3, + "fork5": 3, + "MVar": 3, + "5": 1, + "philosopher": 7, + "Kant": 1, + "Locke": 1, + "Wittgenstein": 1, + "Nozick": 1, + "Mises": 1, + "me": 13, + "g": 4, + "Random.newStdGen": 1, + "phil": 4, + "tT": 2, + "g1": 2, + "Random.randomR": 2, + "L": 6, + "eT": 2, + "g2": 3, + "thinkTime": 3, + "eatTime": 3, + "fl": 4, + "left.take": 1, + "rFork": 2, + "poll": 1, + "fr": 3, + "right.put": 1, + "left.put": 2, + "table.notifyAll": 2, + "Nothing": 2, + "table.wait": 1, + "inter": 3, + "catch": 2, + "getURL": 4, + "xx": 2, + "url": 1, + "URL.new": 1, + "url.openConnection": 1, + "con.connect": 1, + "con.getInputStream": 1, + "typ": 5, + "con.getContentType": 1, + "ir": 2, + "InputStreamReader.new": 2, + "fromMaybe": 1, + "charset": 2, + "unsupportedEncoding": 3, + "BufferedReader": 1, + "getLines": 1, + "InputStream": 1, + "UnsupportedEncodingException": 1, + "InputStreamReader": 1, + "x.catched": 1, + "ctyp": 2, + "charset=": 1, + "m.group": 1, + "SomeException": 2, + "Throwable": 1, + "m1": 1, + "MVar.newEmpty": 3, + "m2": 1, + "m3": 2, + "catchAll": 3, + "m1.put": 1, + "m2.put": 1, + "m3.put": 1, + "r1": 2, + "m1.take": 1, + "r2": 3, + "m2.take": 1, + "r3": 3, + "putStrLn": 2, + "x.getClass.getName": 1 + }, + "Literate Agda": { + "documentclass": 1, + "{": 35, + "article": 1, + "}": 35, + "usepackage": 7, + "amssymb": 1, + "bbm": 1, + "[": 2, + "greek": 1, + "english": 1, + "]": 2, + "babel": 1, + "ucs": 1, + "utf8x": 1, + "inputenc": 1, + "autofe": 1, + "DeclareUnicodeCharacter": 3, + "ensuremath": 3, + "ulcorner": 1, + "urcorner": 1, + "overline": 1, + "equiv": 1, + "fancyvrb": 1, + "DefineVerbatimEnvironment": 1, + "code": 3, + "Verbatim": 1, + "%": 1, + "Add": 1, + "fancy": 1, + "options": 1, + "here": 1, + "if": 1, + "you": 3, + "like.": 1, + "begin": 2, + "document": 2, + "module": 3, + "NatCat": 1, + "where": 2, + "open": 2, + "import": 2, + "Relation.Binary.PropositionalEquality": 1, + "-": 21, + "If": 1, + "can": 1, + "show": 1, + "that": 1, + "a": 1, + "relation": 1, + "only": 1, + "ever": 1, + "has": 1, + "one": 1, + "inhabitant": 5, + "get": 1, + "the": 1, + "category": 1, + "laws": 1, + "for": 1, + "free": 1, + "EasyCategory": 3, + "(": 36, + "obj": 4, + "Set": 2, + ")": 36, + "_": 6, + "x": 34, + "y": 28, + "z": 18, + "id": 9, + "single": 4, + "r": 26, + "s": 29, + "assoc": 2, + "w": 4, + "t": 6, + "Data.Nat": 1, + "same": 5, + ".0": 2, + "n": 14, + "refl": 6, + ".": 5, + "suc": 6, + "m": 6, + "cong": 1, + "trans": 5, + ".n": 1, + "zero": 1, + "Nat": 1, + "end": 2 + }, + "Lua": { + "local": 11, + "FileListParser": 5, + "pd.Class": 3, + "new": 3, + "(": 56, + ")": 56, + "register": 3, + "function": 16, + "initialize": 3, + "sel": 3, + "atoms": 3, + "-": 60, + "Base": 1, + "filename": 2, + "File": 2, + "extension": 2, + "Number": 4, + "of": 9, + "files": 1, + "in": 7, + "batch": 2, + "self.inlets": 3, + "To": 3, + "[": 17, + "list": 1, + "trim": 1, + "]": 17, + "binfile": 3, + "vidya": 1, + "file": 8, + "modder": 1, + "s": 5, + "mechanisms": 1, + "self.outlets": 3, + "self.extension": 3, + "the": 7, + "last": 1, + "self.batchlimit": 3, + "return": 3, + "true": 3, + "end": 26, + "in_1_symbol": 1, + "for": 9, + "i": 10, + "do": 8, + "self": 10, + "outlet": 10, + "{": 16, + "}": 16, + "..": 7, + "in_2_list": 1, + "d": 9, + "in_3_float": 1, + "f": 12, + "A": 1, + "simple": 1, + "counting": 1, + "object": 1, + "that": 1, + "increments": 1, + "an": 1, + "internal": 1, + "counter": 1, + "whenever": 1, + "it": 2, + "receives": 2, + "a": 5, + "bang": 3, + "at": 2, + "its": 2, + "first": 1, + "inlet": 2, + "or": 2, + "changes": 1, + "to": 8, + "whatever": 1, + "number": 3, + "second": 1, + "inlet.": 1, + "HelloCounter": 4, + "self.num": 5, + "in_1_bang": 2, + "+": 3, + "in_2_float": 2, + "FileModder": 10, + "Object": 1, + "triggering": 1, + "Incoming": 1, + "single": 1, + "data": 2, + "bytes": 3, + "from": 3, + "Total": 1, + "route": 1, + "buflength": 1, + "Glitch": 3, + "type": 2, + "point": 2, + "times": 2, + "glitch": 2, + "Toggle": 1, + "randomized": 1, + "glitches": 3, + "within": 2, + "bounds": 2, + "Active": 1, + "get": 1, + "next": 1, + "byte": 2, + "clear": 2, + "buffer": 2, + "FLOAT": 1, + "write": 3, + "Currently": 1, + "active": 2, + "namedata": 1, + "self.filedata": 4, + "pattern": 1, + "random": 3, + "splice": 1, + "self.glitchtype": 5, + "Minimum": 1, + "image": 1, + "self.glitchpoint": 6, + "repeat": 1, + "on": 1, + "given": 1, + "self.randrepeat": 5, + "Toggles": 1, + "whether": 1, + "repeating": 1, + "should": 1, + "be": 1, + "self.randtoggle": 3, + "Hold": 1, + "all": 1, + "which": 1, + "are": 1, + "converted": 1, + "ints": 1, + "range": 1, + "self.bytebuffer": 8, + "Buffer": 1, + "length": 1, + "currently": 1, + "self.buflength": 7, + "if": 2, + "then": 4, + "plen": 2, + "math.random": 8, + "patbuffer": 3, + "table.insert": 4, + "%": 1, + "#patbuffer": 1, + "elseif": 2, + "randlimit": 4, + "else": 1, + "sloc": 3, + "schunksize": 2, + "splicebuffer": 3, + "table.remove": 1, + "insertpoint": 2, + "#self.bytebuffer": 1, + "_": 2, + "v": 4, + "ipairs": 2, + "outname": 3, + "pd.post": 1, + "in_3_list": 1, + "Shift": 1, + "indexed": 2, + "in_4_list": 1, + "in_5_float": 1, + "in_6_float": 1, + "in_7_list": 1, + "in_8_list": 1 + }, + "XSLT": { + "": 1, + "version=": 2, + "": 1, + "xmlns": 1, + "xsl=": 1, + "": 1, + "match=": 1, + "": 1, + "": 1, + "

": 1, + "My": 1, + "CD": 1, + "Collection": 1, + "

": 1, + "": 1, + "border=": 1, + "": 2, + "bgcolor=": 1, + "": 2, + "Artist": 1, + "": 2, + "": 1, + "select=": 3, + "": 2, + "": 1, + "
": 2, + "Title": 1, + "
": 2, + "": 2, + "
": 1, + "": 1, + "": 1, + "
": 1, + "
": 1 + }, + "Zimpl": { + "#": 2, + "param": 1, + "columns": 2, + ";": 7, + "set": 3, + "I": 3, + "{": 2, + "..": 1, + "}": 2, + "IxI": 6, + "*": 2, + "TABU": 4, + "[": 8, + "": 3, + "in": 5, + "]": 8, + "": 2, + "with": 1, + "(": 6, + "m": 4, + "i": 8, + "or": 3, + "n": 4, + "j": 8, + ")": 6, + "and": 1, + "abs": 2, + "-": 3, + "var": 1, + "x": 4, + "binary": 1, + "maximize": 1, + "queens": 1, + "sum": 2, + "subto": 1, + "c1": 1, + "forall": 1, + "do": 1, + "card": 2 + }, + "Groovy": { + "SHEBANG#!groovy": 2, + "println": 3, + "task": 1, + "echoDirListViaAntBuilder": 1, + "(": 7, + ")": 7, + "{": 9, + "description": 1, + "//Docs": 1, + "http": 1, + "//ant.apache.org/manual/Types/fileset.html": 1, + "//Echo": 1, + "the": 3, + "Gradle": 1, + "project": 1, + "name": 1, + "via": 1, + "ant": 1, + "echo": 1, + "plugin": 1, + "ant.echo": 3, + "message": 1, + "project.name": 1, + "path": 2, + "//Gather": 1, + "list": 1, + "of": 1, + "files": 1, + "in": 1, + "a": 1, + "subdirectory": 1, + "ant.fileScanner": 1, + "fileset": 1, + "dir": 1, + "}": 9, + ".each": 1, + "//Print": 1, + "each": 1, + "file": 1, + "to": 1, + "screen": 1, + "with": 1, + "CWD": 1, + "projectDir": 1, + "removed.": 1, + "it.toString": 1, + "-": 1, + "html": 3, + "head": 2, + "component": 1, + "title": 2, + "body": 1, + "p": 1 + }, + "Ioke": { + "SHEBANG#!ioke": 1, + "println": 1 + }, + "Jade": { + "p.": 1, + "Hello": 1, + "World": 1 + }, + "TypeScript": { + "class": 3, + "Animal": 4, + "{": 9, + "constructor": 3, + "(": 18, + "public": 1, + "name": 5, + ")": 18, + "}": 9, + "move": 3, + "meters": 2, + "alert": 3, + "this.name": 1, + "+": 3, + ";": 8, + "Snake": 2, + "extends": 2, + "super": 2, + "super.move": 2, + "Horse": 2, + "var": 2, + "sam": 1, + "new": 2, + "tom": 1, + "sam.move": 1, + "tom.move": 1, + "console.log": 1 + }, + "Erlang": { + "%": 134, + "This": 2, + "is": 1, + "auto": 1, + "generated": 1, + "file.": 1, + "Please": 1, + "don": 1, + "t": 1, + "edit": 1, + "it": 2, + "-": 262, + "module": 2, + "(": 236, + "record_utils": 1, + ")": 230, + ".": 37, + "compile": 2, + "export_all": 1, + "include": 1, + "fields": 4, + "abstract_message": 21, + "[": 66, + "]": 61, + ";": 56, + "async_message": 12, + "+": 214, + "fields_atom": 4, + "lists": 11, + "flatten": 6, + "clientId": 5, + "destination": 5, + "messageId": 5, + "timestamp": 5, + "timeToLive": 5, + "headers": 5, + "body": 5, + "correlationId": 5, + "correlationIdBytes": 5, + "get": 12, + "Obj": 49, + "when": 29, + "is_record": 25, + "{": 109, + "ok": 34, + "Obj#abstract_message.body": 1, + "}": 109, + "Obj#abstract_message.clientId": 1, + "Obj#abstract_message.destination": 1, + "Obj#abstract_message.headers": 1, + "Obj#abstract_message.messageId": 1, + "Obj#abstract_message.timeToLive": 1, + "Obj#abstract_message.timestamp": 1, + "Obj#async_message.correlationId": 1, + "Obj#async_message.correlationIdBytes": 1, + "parent": 5, + "Obj#async_message.parent": 3, + "ParentProperty": 6, + "and": 8, + "is_atom": 2, + "set": 13, + "Value": 35, + "NewObj": 20, + "Obj#abstract_message": 7, + "Obj#async_message": 3, + "NewParentObject": 2, + "_": 52, + "type": 6, + "undefined.": 1, + "SHEBANG#!escript": 3, + "*": 9, + "Mode": 1, + "erlang": 5, + "coding": 1, + "utf": 1, + "tab": 1, + "width": 1, + "c": 2, + "basic": 1, + "offset": 1, + "indent": 1, + "tabs": 1, + "mode": 2, + "BSD": 1, + "LICENSE": 1, + "Copyright": 1, + "Michael": 2, + "Truog": 2, + "": 1, + "at": 1, + "gmail": 1, + "dot": 1, + "com": 1, + "All": 2, + "rights": 1, + "reserved.": 1, + "Redistribution": 1, + "use": 2, + "in": 3, + "source": 2, + "binary": 2, + "forms": 1, + "with": 2, + "or": 3, + "without": 2, + "modification": 1, + "are": 3, + "permitted": 1, + "provided": 2, + "that": 1, + "the": 9, + "following": 4, + "conditions": 3, + "met": 1, + "Redistributions": 2, + "of": 9, + "code": 2, + "must": 3, + "retain": 1, + "above": 2, + "copyright": 2, + "notice": 2, + "this": 4, + "list": 2, + "disclaimer.": 1, + "form": 1, + "reproduce": 1, + "disclaimer": 1, + "documentation": 1, + "and/or": 1, + "other": 1, + "materials": 2, + "distribution.": 1, + "advertising": 1, + "mentioning": 1, + "features": 1, + "software": 3, + "display": 1, + "acknowledgment": 1, + "product": 1, + "includes": 1, + "developed": 1, + "by": 1, + "The": 1, + "name": 1, + "author": 2, + "may": 1, + "not": 1, + "be": 1, + "used": 1, + "to": 2, + "endorse": 1, + "promote": 1, + "products": 1, + "derived": 1, + "from": 1, + "specific": 1, + "prior": 1, + "written": 1, + "permission": 1, + "THIS": 2, + "SOFTWARE": 2, + "IS": 1, + "PROVIDED": 1, + "BY": 1, + "THE": 5, + "COPYRIGHT": 2, + "HOLDERS": 1, + "AND": 4, + "CONTRIBUTORS": 2, + "ANY": 4, + "EXPRESS": 1, + "OR": 8, + "IMPLIED": 2, + "WARRANTIES": 2, + "INCLUDING": 3, + "BUT": 2, + "NOT": 2, + "LIMITED": 2, + "TO": 2, + "OF": 8, + "MERCHANTABILITY": 1, + "FITNESS": 1, + "FOR": 2, + "A": 5, + "PARTICULAR": 1, + "PURPOSE": 1, + "ARE": 1, + "DISCLAIMED.": 1, + "IN": 3, + "NO": 1, + "EVENT": 1, + "SHALL": 1, + "OWNER": 1, + "BE": 1, + "LIABLE": 1, + "DIRECT": 1, + "INDIRECT": 1, + "INCIDENTAL": 1, + "SPECIAL": 1, + "EXEMPLARY": 1, + "CONSEQUENTIAL": 1, + "DAMAGES": 1, + "PROCUREMENT": 1, + "SUBSTITUTE": 1, + "GOODS": 1, + "SERVICES": 1, + "LOSS": 1, + "USE": 2, + "DATA": 1, + "PROFITS": 1, + "BUSINESS": 1, + "INTERRUPTION": 1, + "HOWEVER": 1, + "CAUSED": 1, + "ON": 1, + "THEORY": 1, + "LIABILITY": 2, + "WHETHER": 1, + "CONTRACT": 1, + "STRICT": 1, + "TORT": 1, + "NEGLIGENCE": 1, + "OTHERWISE": 1, + "ARISING": 1, + "WAY": 1, + "OUT": 1, + "EVEN": 1, + "IF": 1, + "ADVISED": 1, + "POSSIBILITY": 1, + "SUCH": 1, + "DAMAGE.": 1, + "main": 4, + "sys": 2, + "RelToolConfig": 5, + "target_dir": 2, + "TargetDir": 14, + "overlay": 2, + "OverlayConfig": 4, + "file": 6, + "consult": 1, + "Spec": 2, + "reltool": 2, + "get_target_spec": 1, + "case": 3, + "make_dir": 1, + "error": 4, + "eexist": 1, + "io": 5, + "format": 7, + "exit_code": 3, + "end": 3, + "eval_target_spec": 1, + "root_dir": 1, + "process_overlay": 2, + "shell": 3, + "Command": 3, + "Arguments": 3, + "CommandSuffix": 2, + "reverse": 4, + "os": 1, + "cmd": 1, + "io_lib": 2, + "|": 25, + "end.": 3, + "boot_rel_vsn": 2, + "Config": 2, + "_RelToolConfig": 1, + "rel": 2, + "_Name": 1, + "Ver": 1, + "proplists": 1, + "lookup": 1, + "Ver.": 1, + "minimal": 2, + "parsing": 1, + "for": 1, + "handling": 1, + "mustache": 11, + "syntax": 1, + "Body": 2, + "Context": 11, + "Result": 10, + "_Context": 1, + "KeyStr": 6, + "mustache_key": 4, + "C": 4, + "Rest": 10, + "Key": 2, + "list_to_existing_atom": 1, + "dict": 2, + "find": 1, + "support": 1, + "based": 1, + "on": 1, + "rebar": 1, + "overlays": 1, + "BootRelVsn": 2, + "OverlayVars": 2, + "from_list": 1, + "erts_vsn": 1, + "system_info": 1, + "version": 1, + "rel_vsn": 1, + "hostname": 1, + "net_adm": 1, + "localhost": 1, + "BaseDir": 7, + "get_cwd": 1, + "execute_overlay": 6, + "_Vars": 1, + "_BaseDir": 1, + "_TargetDir": 1, + "mkdir": 1, + "Out": 4, + "Vars": 7, + "OutDir": 4, + "filename": 3, + "join": 3, + "copy": 1, + "In": 2, + "InFile": 3, + "OutFile": 2, + "true": 3, + "filelib": 1, + "is_file": 1, + "ExitCode": 2, + "halt": 2, + "flush": 1, + "For": 1, + "each": 1, + "header": 1, + "scans": 1, + "thru": 1, + "all": 1, + "records": 1, + "create": 1, + "helper": 1, + "functions": 2, + "Helper": 1, + "setters": 1, + "getters": 1, + "record_helper": 1, + "export": 2, + "make/1": 1, + "make/2": 1, + "make": 3, + "HeaderFiles": 5, + "atom_to_list": 18, + "X": 12, + "||": 6, + "<->": 5, + "hrl": 1, + "relative": 1, + "current": 1, + "dir": 1, + "ModuleName": 3, + "HeaderComment": 2, + "ModuleDeclaration": 2, + "<": 1, + "Src": 10, + "format_src": 8, + "sort": 1, + "read": 2, + "generate_type_default_function": 2, + "write_file": 1, + "erl": 1, + "list_to_binary": 1, + "HeaderFile": 4, + "try": 2, + "epp": 1, + "parse_file": 1, + "Tree": 4, + "parse": 2, + "Error": 4, + "catch": 2, + "catched_error": 1, + "T": 24, + "length": 6, + "Type": 3, + "B": 4, + "NSrc": 4, + "_Type": 1, + "Type1": 2, + "parse_record": 3, + "attribute": 1, + "record": 4, + "RecordInfo": 2, + "RecordName": 41, + "RecordFields": 10, + "if": 1, + "generate_setter_getter_function": 5, + "generate_type_function": 3, + "generate_fields_function": 2, + "generate_fields_atom_function": 2, + "parse_field_name": 5, + "record_field": 9, + "atom": 9, + "FieldName": 26, + "field": 4, + "_FieldName": 2, + "ParentRecordName": 8, + "parent_field": 2, + "parse_field_name_atom": 5, + "concat": 5, + "_S": 3, + "F": 16, + "S": 6, + "concat_ext": 4, + "parse_field": 6, + "AccFields": 6, + "AccParentFields": 6, + "Field": 2, + "PField": 2, + "parse_field_atom": 4, + "zzz": 1, + "Fields": 4, + "field_atom": 1, + "to_setter_getter_function": 5, + "setter": 2, + "getter": 2, + "smp": 1, + "enable": 1, + "sname": 1, + "factorial": 1, + "mnesia": 1, + "debug": 1, + "verbose": 1, + "String": 2, + "N": 6, + "list_to_integer": 1, + "fac": 4, + "usage": 3, + "main/1": 1 + }, "ABAP": { "*/**": 1, "*": 56, @@ -1009,1396 +35722,6572 @@ "pos": 2, "endclass.": 1 }, - "Agda": { - "module": 3, - "NatCat": 1, - "where": 2, - "open": 2, - "import": 2, - "Relation.Binary.PropositionalEquality": 1, - "-": 21, - "If": 1, - "you": 2, - "can": 1, - "show": 1, - "that": 1, - "a": 1, - "relation": 1, - "only": 1, - "ever": 1, - "has": 1, - "one": 1, - "inhabitant": 5, - "get": 1, - "the": 1, - "category": 1, - "laws": 1, - "for": 1, - "free": 1, - "EasyCategory": 3, - "(": 36, - "obj": 4, - "Set": 2, - ")": 36, - "_": 6, - "{": 10, - "x": 34, - "y": 28, - "z": 18, - "}": 10, - "id": 9, - "single": 4, - "r": 26, - "s": 29, - "assoc": 2, - "w": 4, - "t": 6, - "Data.Nat": 1, - "same": 5, - ".0": 2, - "n": 14, - "refl": 6, - ".": 5, - "suc": 6, - "m": 6, - "cong": 1, - "trans": 5, - ".n": 1, - "zero": 1, - "Nat": 1 - }, - "Alloy": { - "module": 3, - "examples/systems/file_system": 1, - "abstract": 2, - "sig": 20, - "Object": 10, - "{": 54, - "}": 60, - "Name": 2, - "File": 1, - "extends": 10, - "some": 3, - "d": 3, - "Dir": 8, - "|": 19, - "this": 14, - "in": 19, - "d.entries.contents": 1, - "entries": 3, - "set": 10, - "DirEntry": 2, - "parent": 3, - "lone": 6, - "this.": 4, - "@contents.": 1, - "@entries": 1, - "all": 16, - "e1": 2, - "e2": 2, - "e1.name": 1, - "e2.name": 1, - "@parent": 2, - "Root": 5, - "one": 8, - "no": 8, - "Cur": 1, - "name": 1, - "contents": 2, - "pred": 16, - "OneParent_buggyVersion": 2, - "-": 41, - "d.parent": 2, - "OneParent_correctVersion": 2, - "(": 12, - "&&": 2, - "contents.d": 1, - ")": 9, - "NoDirAliases": 3, - "o": 1, - "o.": 1, - "check": 6, - "for": 7, - "expect": 6, - "examples/systems/marksweepgc": 1, - "Node": 10, - "HeapState": 5, - "left": 3, - "right": 1, - "marked": 1, - "freeList": 1, - "clearMarks": 1, - "[": 82, - "hs": 16, - ".marked": 3, - ".right": 4, - "hs.right": 3, - "fun": 1, - "reachable": 1, - "n": 5, - "]": 80, - "+": 14, - "n.": 1, - "hs.left": 2, - "mark": 1, - "from": 2, - "hs.reachable": 1, - "setFreeList": 1, - ".freeList.*": 3, - ".left": 5, - "hs.marked": 1, - "GC": 1, - "root": 5, - "assert": 3, - "Soundness1": 2, - "h": 9, - "live": 3, - "h.reachable": 1, - "h.right": 1, - "Soundness2": 2, - ".reachable": 2, - "h.GC": 1, - ".freeList": 1, - "Completeness": 1, - "examples/systems/views": 1, - "open": 2, - "util/ordering": 1, - "State": 16, - "as": 2, - "so": 1, - "util/relation": 1, - "rel": 1, - "Ref": 19, - "t": 16, - "b": 13, - "v": 25, - "views": 2, - "when": 1, - "is": 1, - "view": 2, - "of": 3, - "type": 1, - "backing": 1, - "dirty": 3, - "contains": 1, - "refs": 7, - "that": 1, - "have": 1, - "been": 1, - "invalidated": 1, - "obj": 1, - "ViewType": 8, - "anyviews": 2, - "visualization": 1, - "ViewType.views": 1, - "Map": 2, - "keys": 3, - "map": 2, - "s": 6, - "Ref.map": 1, - "s.refs": 3, - "MapRef": 4, - "fact": 4, - "State.obj": 3, - "Iterator": 2, - "done": 3, - "lastRef": 2, - "IteratorRef": 5, - "Set": 2, - "elts": 2, - "SetRef": 5, - "KeySetView": 6, - "State.views": 1, - "IteratorView": 3, - "s.views": 2, - "handle": 1, - "possibility": 1, - "modifying": 1, - "an": 1, - "object": 1, - "and": 1, - "its": 1, - "at": 1, - "once": 1, - "*": 1, - "should": 1, - "we": 1, - "limit": 1, - "frame": 1, - "conds": 1, - "to": 1, - "non": 1, - "*/": 1, - "modifies": 5, - "pre": 15, - "post": 14, - "rs": 4, - "let": 5, - "vr": 1, - "pre.views": 8, - "mods": 3, - "rs.*vr": 1, - "r": 3, - "pre.refs": 6, - "pre.obj": 10, - "post.obj": 7, - "viewFrame": 4, - "post.dirty": 1, - "pre.dirty": 1, - "allocates": 5, - "&": 3, - "post.refs": 1, - ".map": 3, - ".elts": 3, - "dom": 1, - "<:>": 1, - "setRefs": 1, - "MapRef.put": 1, - "k": 5, - "none": 4, - "post.views": 4, - "SetRef.iterator": 1, - "iterRef": 4, - "i": 7, - "i.left": 3, - "i.done": 1, - "i.lastRef": 1, - "IteratorRef.remove": 1, - ".lastRef": 2, - "IteratorRef.next": 1, - "ref": 3, - "IteratorRef.hasNext": 1, - "s.obj": 1, - "zippishOK": 2, - "ks": 6, - "vs": 6, - "m": 4, - "ki": 2, - "vi": 2, - "s0": 4, - "so/first": 1, - "s1": 4, - "so/next": 7, - "s2": 6, - "s3": 4, - "s4": 4, - "s5": 4, - "s6": 4, - "s7": 2, - "precondition": 2, - "s0.dirty": 1, - "ks.iterator": 1, - "vs.iterator": 1, - "ki.hasNext": 1, - "vi.hasNext": 1, - "ki.this/next": 1, - "vi.this/next": 1, - "m.put": 1, - "ki.remove": 1, - "vi.remove": 1, - "State.dirty": 1, - "ViewType.pre.views": 2, - "but": 1, - "#s.obj": 1, - "<": 1 - }, - "ApacheConf": { - "ServerSignature": 1, - "Off": 1, - "RewriteCond": 15, - "%": 48, - "{": 16, - "REQUEST_METHOD": 1, - "}": 16, - "(": 16, - "HEAD": 1, - "|": 80, - "TRACE": 1, - "DELETE": 1, - "TRACK": 1, - ")": 17, - "[": 17, - "NC": 13, - "OR": 14, - "]": 17, - "THE_REQUEST": 1, - "r": 1, - "n": 1, - "A": 6, - "D": 6, - "HTTP_REFERER": 1, - "<|>": 6, - "C": 5, - "E": 5, - "HTTP_COOKIE": 1, - "REQUEST_URI": 1, - "/": 3, - ";": 2, - "<": 1, - ".": 7, - "HTTP_USER_AGENT": 5, - "java": 1, - "curl": 2, - "wget": 2, - "winhttp": 1, - "HTTrack": 1, - "clshttp": 1, - "archiver": 1, - "loader": 1, - "email": 1, - "harvest": 1, - "extract": 1, - "grab": 1, - "miner": 1, - "libwww": 1, - "-": 43, - "perl": 1, - "python": 1, - "nikto": 1, - "scan": 1, - "#Block": 1, - "mySQL": 1, - "injects": 1, - "QUERY_STRING": 5, - ".*": 3, - "*": 1, - "union": 1, - "select": 1, - "insert": 1, - "cast": 1, - "set": 1, - "declare": 1, - "drop": 1, - "update": 1, - "md5": 1, - "benchmark": 1, - "./": 1, - "localhost": 1, - "loopback": 1, - ".0": 2, - ".1": 1, - "a": 1, - "z0": 1, - "RewriteRule": 1, - "index.php": 1, - "F": 1, - "#": 182, - "ServerRoot": 2, - "#Listen": 2, - "Listen": 2, - "LoadModule": 126, - "authn_file_module": 2, - "/usr/lib/apache2/modules/mod_authn_file.so": 1, - "authn_dbm_module": 2, - "/usr/lib/apache2/modules/mod_authn_dbm.so": 1, - "authn_anon_module": 2, - "/usr/lib/apache2/modules/mod_authn_anon.so": 1, - "authn_dbd_module": 2, - "/usr/lib/apache2/modules/mod_authn_dbd.so": 1, - "authn_default_module": 2, - "/usr/lib/apache2/modules/mod_authn_default.so": 1, - "authn_alias_module": 1, - "/usr/lib/apache2/modules/mod_authn_alias.so": 1, - "authz_host_module": 2, - "/usr/lib/apache2/modules/mod_authz_host.so": 1, - "authz_groupfile_module": 2, - "/usr/lib/apache2/modules/mod_authz_groupfile.so": 1, - "authz_user_module": 2, - "/usr/lib/apache2/modules/mod_authz_user.so": 1, - "authz_dbm_module": 2, - "/usr/lib/apache2/modules/mod_authz_dbm.so": 1, - "authz_owner_module": 2, - "/usr/lib/apache2/modules/mod_authz_owner.so": 1, - "authnz_ldap_module": 1, - "/usr/lib/apache2/modules/mod_authnz_ldap.so": 1, - "authz_default_module": 2, - "/usr/lib/apache2/modules/mod_authz_default.so": 1, - "auth_basic_module": 2, - "/usr/lib/apache2/modules/mod_auth_basic.so": 1, - "auth_digest_module": 2, - "/usr/lib/apache2/modules/mod_auth_digest.so": 1, - "file_cache_module": 1, - "/usr/lib/apache2/modules/mod_file_cache.so": 1, - "cache_module": 2, - "/usr/lib/apache2/modules/mod_cache.so": 1, - "disk_cache_module": 2, - "/usr/lib/apache2/modules/mod_disk_cache.so": 1, - "mem_cache_module": 2, - "/usr/lib/apache2/modules/mod_mem_cache.so": 1, - "dbd_module": 2, - "/usr/lib/apache2/modules/mod_dbd.so": 1, - "dumpio_module": 2, - "/usr/lib/apache2/modules/mod_dumpio.so": 1, - "ext_filter_module": 2, - "/usr/lib/apache2/modules/mod_ext_filter.so": 1, - "include_module": 2, - "/usr/lib/apache2/modules/mod_include.so": 1, - "filter_module": 2, - "/usr/lib/apache2/modules/mod_filter.so": 1, - "charset_lite_module": 1, - "/usr/lib/apache2/modules/mod_charset_lite.so": 1, - "deflate_module": 2, - "/usr/lib/apache2/modules/mod_deflate.so": 1, - "ldap_module": 1, - "/usr/lib/apache2/modules/mod_ldap.so": 1, - "log_forensic_module": 2, - "/usr/lib/apache2/modules/mod_log_forensic.so": 1, - "env_module": 2, - "/usr/lib/apache2/modules/mod_env.so": 1, - "mime_magic_module": 2, - "/usr/lib/apache2/modules/mod_mime_magic.so": 1, - "cern_meta_module": 2, - "/usr/lib/apache2/modules/mod_cern_meta.so": 1, - "expires_module": 2, - "/usr/lib/apache2/modules/mod_expires.so": 1, - "headers_module": 2, - "/usr/lib/apache2/modules/mod_headers.so": 1, - "ident_module": 2, - "/usr/lib/apache2/modules/mod_ident.so": 1, - "usertrack_module": 2, - "/usr/lib/apache2/modules/mod_usertrack.so": 1, - "unique_id_module": 2, - "/usr/lib/apache2/modules/mod_unique_id.so": 1, - "setenvif_module": 2, - "/usr/lib/apache2/modules/mod_setenvif.so": 1, - "version_module": 2, - "/usr/lib/apache2/modules/mod_version.so": 1, - "proxy_module": 2, - "/usr/lib/apache2/modules/mod_proxy.so": 1, - "proxy_connect_module": 2, - "/usr/lib/apache2/modules/mod_proxy_connect.so": 1, - "proxy_ftp_module": 2, - "/usr/lib/apache2/modules/mod_proxy_ftp.so": 1, - "proxy_http_module": 2, - "/usr/lib/apache2/modules/mod_proxy_http.so": 1, - "proxy_ajp_module": 2, - "/usr/lib/apache2/modules/mod_proxy_ajp.so": 1, - "proxy_balancer_module": 2, - "/usr/lib/apache2/modules/mod_proxy_balancer.so": 1, - "ssl_module": 4, - "/usr/lib/apache2/modules/mod_ssl.so": 1, - "mime_module": 4, - "/usr/lib/apache2/modules/mod_mime.so": 1, - "dav_module": 2, - "/usr/lib/apache2/modules/mod_dav.so": 1, - "status_module": 2, - "/usr/lib/apache2/modules/mod_status.so": 1, - "autoindex_module": 2, - "/usr/lib/apache2/modules/mod_autoindex.so": 1, - "asis_module": 2, - "/usr/lib/apache2/modules/mod_asis.so": 1, - "info_module": 2, - "/usr/lib/apache2/modules/mod_info.so": 1, - "suexec_module": 1, - "/usr/lib/apache2/modules/mod_suexec.so": 1, - "cgid_module": 3, - "/usr/lib/apache2/modules/mod_cgid.so": 1, - "cgi_module": 2, - "/usr/lib/apache2/modules/mod_cgi.so": 1, - "dav_fs_module": 2, - "/usr/lib/apache2/modules/mod_dav_fs.so": 1, - "dav_lock_module": 1, - "/usr/lib/apache2/modules/mod_dav_lock.so": 1, - "vhost_alias_module": 2, - "/usr/lib/apache2/modules/mod_vhost_alias.so": 1, - "negotiation_module": 2, - "/usr/lib/apache2/modules/mod_negotiation.so": 1, - "dir_module": 4, - "/usr/lib/apache2/modules/mod_dir.so": 1, - "imagemap_module": 2, - "/usr/lib/apache2/modules/mod_imagemap.so": 1, - "actions_module": 2, - "/usr/lib/apache2/modules/mod_actions.so": 1, - "speling_module": 2, - "/usr/lib/apache2/modules/mod_speling.so": 1, - "userdir_module": 2, - "/usr/lib/apache2/modules/mod_userdir.so": 1, - "alias_module": 4, - "/usr/lib/apache2/modules/mod_alias.so": 1, - "rewrite_module": 2, - "/usr/lib/apache2/modules/mod_rewrite.so": 1, - "": 17, - "mpm_netware_module": 2, - "User": 2, - "daemon": 2, - "Group": 2, - "": 17, - "ServerAdmin": 2, - "you@example.com": 2, - "#ServerName": 2, - "www.example.com": 2, - "DocumentRoot": 2, - "": 6, - "Options": 6, - "FollowSymLinks": 4, - "AllowOverride": 6, - "None": 8, - "Order": 10, - "deny": 10, - "allow": 10, - "Deny": 6, - "from": 10, - "all": 10, - "": 6, - "usr": 2, - "share": 1, - "apache2": 1, - "default": 1, - "site": 1, - "htdocs": 1, - "Indexes": 2, - "Allow": 4, - "DirectoryIndex": 2, - "index.html": 2, - "": 2, - "ht": 1, - "Satisfy": 4, - "All": 4, - "": 2, - "ErrorLog": 2, - "/var/log/apache2/error_log": 1, - "LogLevel": 2, - "warn": 2, - "log_config_module": 3, - "LogFormat": 6, - "combined": 4, - "common": 4, - "logio_module": 3, - "combinedio": 2, - "CustomLog": 2, - "/var/log/apache2/access_log": 2, - "#CustomLog": 2, - "ScriptAlias": 1, - "/cgi": 2, - "bin/": 2, - "#Scriptsock": 2, - "/var/run/apache2/cgisock": 1, - "lib": 1, - "cgi": 3, - "bin": 1, - "DefaultType": 2, - "text/plain": 2, - "TypesConfig": 2, - "/etc/apache2/mime.types": 1, - "#AddType": 4, - "application/x": 6, - "gzip": 6, - ".tgz": 6, - "#AddEncoding": 4, - "x": 4, - "compress": 4, - ".Z": 4, - ".gz": 4, - "AddType": 4, - "#AddHandler": 4, - "script": 2, - ".cgi": 2, - "type": 2, - "map": 2, - "var": 2, - "text/html": 2, - ".shtml": 4, - "#AddOutputFilter": 2, - "INCLUDES": 2, - "#MIMEMagicFile": 2, - "/etc/apache2/magic": 1, - "#ErrorDocument": 8, - "/missing.html": 2, - "http": 2, - "//www.example.com/subscription_info.html": 2, - "#EnableMMAP": 2, - "off": 5, - "#EnableSendfile": 2, - "#Include": 17, - "/etc/apache2/extra/httpd": 11, - "mpm.conf": 2, - "multilang": 2, - "errordoc.conf": 2, - "autoindex.conf": 2, - "languages.conf": 2, - "userdir.conf": 2, - "info.conf": 2, - "vhosts.conf": 2, - "manual.conf": 2, - "dav.conf": 2, - "default.conf": 2, - "ssl.conf": 2, - "SSLRandomSeed": 4, - "startup": 2, - "builtin": 4, - "connect": 2, - "libexec/apache2/mod_authn_file.so": 1, - "libexec/apache2/mod_authn_dbm.so": 1, - "libexec/apache2/mod_authn_anon.so": 1, - "libexec/apache2/mod_authn_dbd.so": 1, - "libexec/apache2/mod_authn_default.so": 1, - "libexec/apache2/mod_authz_host.so": 1, - "libexec/apache2/mod_authz_groupfile.so": 1, - "libexec/apache2/mod_authz_user.so": 1, - "libexec/apache2/mod_authz_dbm.so": 1, - "libexec/apache2/mod_authz_owner.so": 1, - "libexec/apache2/mod_authz_default.so": 1, - "libexec/apache2/mod_auth_basic.so": 1, - "libexec/apache2/mod_auth_digest.so": 1, - "libexec/apache2/mod_cache.so": 1, - "libexec/apache2/mod_disk_cache.so": 1, - "libexec/apache2/mod_mem_cache.so": 1, - "libexec/apache2/mod_dbd.so": 1, - "libexec/apache2/mod_dumpio.so": 1, - "reqtimeout_module": 1, - "libexec/apache2/mod_reqtimeout.so": 1, - "libexec/apache2/mod_ext_filter.so": 1, - "libexec/apache2/mod_include.so": 1, - "libexec/apache2/mod_filter.so": 1, - "substitute_module": 1, - "libexec/apache2/mod_substitute.so": 1, - "libexec/apache2/mod_deflate.so": 1, - "libexec/apache2/mod_log_config.so": 1, - "libexec/apache2/mod_log_forensic.so": 1, - "libexec/apache2/mod_logio.so": 1, - "libexec/apache2/mod_env.so": 1, - "libexec/apache2/mod_mime_magic.so": 1, - "libexec/apache2/mod_cern_meta.so": 1, - "libexec/apache2/mod_expires.so": 1, - "libexec/apache2/mod_headers.so": 1, - "libexec/apache2/mod_ident.so": 1, - "libexec/apache2/mod_usertrack.so": 1, - "#LoadModule": 4, - "libexec/apache2/mod_unique_id.so": 1, - "libexec/apache2/mod_setenvif.so": 1, - "libexec/apache2/mod_version.so": 1, - "libexec/apache2/mod_proxy.so": 1, - "libexec/apache2/mod_proxy_connect.so": 1, - "libexec/apache2/mod_proxy_ftp.so": 1, - "libexec/apache2/mod_proxy_http.so": 1, - "proxy_scgi_module": 1, - "libexec/apache2/mod_proxy_scgi.so": 1, - "libexec/apache2/mod_proxy_ajp.so": 1, - "libexec/apache2/mod_proxy_balancer.so": 1, - "libexec/apache2/mod_ssl.so": 1, - "libexec/apache2/mod_mime.so": 1, - "libexec/apache2/mod_dav.so": 1, - "libexec/apache2/mod_status.so": 1, - "libexec/apache2/mod_autoindex.so": 1, - "libexec/apache2/mod_asis.so": 1, - "libexec/apache2/mod_info.so": 1, - "libexec/apache2/mod_cgi.so": 1, - "libexec/apache2/mod_dav_fs.so": 1, - "libexec/apache2/mod_vhost_alias.so": 1, - "libexec/apache2/mod_negotiation.so": 1, - "libexec/apache2/mod_dir.so": 1, - "libexec/apache2/mod_imagemap.so": 1, - "libexec/apache2/mod_actions.so": 1, - "libexec/apache2/mod_speling.so": 1, - "libexec/apache2/mod_userdir.so": 1, - "libexec/apache2/mod_alias.so": 1, - "libexec/apache2/mod_rewrite.so": 1, - "perl_module": 1, - "libexec/apache2/mod_perl.so": 1, - "php5_module": 1, - "libexec/apache2/libphp5.so": 1, - "hfs_apple_module": 1, - "libexec/apache2/mod_hfs_apple.so": 1, - "mpm_winnt_module": 1, - "_www": 2, - "Library": 2, - "WebServer": 2, - "Documents": 1, - "MultiViews": 1, - "Hh": 1, - "Tt": 1, - "Dd": 1, - "Ss": 2, - "_": 1, - "": 1, - "rsrc": 1, - "": 1, - "": 1, - "namedfork": 1, - "": 1, - "ScriptAliasMatch": 1, - "i": 1, - "webobjects": 1, - "/private/var/run/cgisock": 1, - "CGI": 1, - "Executables": 1, - "/private/etc/apache2/mime.types": 1, - "/private/etc/apache2/magic": 1, - "#MaxRanges": 1, - "unlimited": 1, - "TraceEnable": 1, - "Include": 6, - "/private/etc/apache2/extra/httpd": 11, - "/private/etc/apache2/other/*.conf": 1 - }, - "Apex": { - "global": 70, - "class": 7, - "ArrayUtils": 1, - "{": 219, - "static": 83, - "String": 60, - "[": 102, - "]": 102, - "EMPTY_STRING_ARRAY": 1, - "new": 60, - "}": 219, - ";": 308, - "Integer": 34, - "MAX_NUMBER_OF_ELEMENTS_IN_LIST": 5, - "get": 4, - "return": 106, - "List": 71, - "": 30, - "objectToString": 1, - "(": 481, - "": 22, - "objects": 3, - ")": 481, - "strings": 3, - "null": 92, - "if": 91, - "objects.size": 1, - "for": 24, - "Object": 23, - "obj": 3, - "instanceof": 1, - "strings.add": 1, - "reverse": 2, - "anArray": 14, - "i": 55, - "j": 10, - "anArray.size": 2, - "-": 18, - "tmp": 6, - "while": 8, - "+": 75, - "SObject": 19, - "lowerCase": 1, - "strs": 9, - "returnValue": 22, - "strs.size": 3, - "str": 10, - "returnValue.add": 3, - "str.toLowerCase": 1, - "upperCase": 1, - "str.toUpperCase": 1, - "trim": 1, - "str.trim": 3, - "mergex": 2, - "array1": 8, - "array2": 9, - "merged": 6, - "array1.size": 4, - "array2.size": 2, - "<": 32, - "": 19, - "sObj": 4, - "merged.add": 2, - "Boolean": 38, - "isEmpty": 7, - "objectArray": 17, - "true": 12, - "objectArray.size": 6, - "isNotEmpty": 4, - "pluck": 1, - "fieldName": 3, - "||": 12, - "fieldName.trim": 2, - ".length": 2, - "plucked": 3, - ".get": 4, - "toString": 3, - "void": 9, - "assertArraysAreEqual": 2, - "expected": 16, - "actual": 16, - "//check": 2, - "to": 4, - "see": 2, - "one": 2, - "param": 2, - "is": 5, - "but": 2, - "the": 4, - "other": 2, - "not": 3, - "System.assert": 6, - "&&": 46, - "ArrayUtils.toString": 12, - "expected.size": 4, - "actual.size": 2, - "merg": 2, - "list1": 15, - "list2": 9, - "returnList": 11, - "list1.size": 6, - "list2.size": 2, - "throw": 6, - "IllegalArgumentException": 5, - "elmt": 8, - "returnList.add": 8, - "subset": 6, - "aList": 4, - "count": 10, - "startIndex": 9, - "<=>": 2, - "size": 2, - "1": 2, - "list1.get": 2, - "//": 11, - "//LIST/ARRAY": 1, - "SORTING": 1, - "//FOR": 2, - "FORCE.COM": 1, - "PRIMITIVES": 1, - "Double": 1, - "ID": 1, - "etc.": 1, - "qsort": 18, - "theList": 72, - "PrimitiveComparator": 2, - "sortAsc": 24, - "ObjectComparator": 3, - "comparator": 14, - "theList.size": 2, - "SALESFORCE": 1, - "OBJECTS": 1, - "sObjects": 1, - "ISObjectComparator": 3, - "private": 10, - "lo0": 6, - "hi0": 8, - "lo": 42, - "hi": 50, - "else": 25, - "comparator.compare": 12, - "prs": 8, - "pivot": 14, - "/": 4, - "BooleanUtils": 1, - "isFalse": 1, - "bool": 32, - "false": 13, - "isNotFalse": 1, - "isNotTrue": 1, - "isTrue": 1, - "negate": 1, - "toBooleanDefaultIfNull": 1, - "defaultVal": 2, - "toBoolean": 2, - "value": 10, - "strToBoolean": 1, - "StringUtils.equalsIgnoreCase": 1, - "//Converts": 1, - "an": 4, - "int": 1, - "a": 6, - "boolean": 1, - "specifying": 1, - "//the": 2, - "conversion": 1, - "values.": 1, - "//Returns": 1, - "//Throws": 1, - "trueValue": 2, - "falseValue": 2, - "toInteger": 1, - "toStringYesNo": 1, - "toStringYN": 1, - "trueString": 2, - "falseString": 2, - "xor": 1, - "boolArray": 4, - "boolArray.size": 1, - "firstItem": 2, - "EmailUtils": 1, - "sendEmailWithStandardAttachments": 3, - "recipients": 11, - "emailSubject": 10, - "body": 8, - "useHTML": 6, - "": 1, - "attachmentIDs": 2, - "": 2, - "stdAttachments": 4, - "SELECT": 1, - "id": 1, - "name": 2, - "FROM": 1, - "Attachment": 2, - "WHERE": 1, - "Id": 1, - "IN": 1, - "": 3, - "fileAttachments": 5, - "attachment": 1, - "Messaging.EmailFileAttachment": 2, - "fileAttachment": 2, - "fileAttachment.setFileName": 1, - "attachment.Name": 1, - "fileAttachment.setBody": 1, - "attachment.Body": 1, - "fileAttachments.add": 1, - "sendEmail": 4, - "sendTextEmail": 1, - "textBody": 2, - "sendHTMLEmail": 1, - "htmlBody": 2, - "recipients.size": 1, - "Messaging.SingleEmailMessage": 3, - "mail": 2, - "email": 1, - "saved": 1, + "Rebol": { + "Rebol": 4, + "[": 54, + "]": 61, + "hello": 8, + "func": 5, + "print": 4, + "REBOL": 5, + "System": 1, + "Title": 2, + "Rights": 1, + "{": 8, + "Copyright": 1, + "Technologies": 2, + "is": 4, + "a": 2, + "trademark": 1, + "of": 1, + "}": 8, + "License": 2, + "Licensed": 1, + "under": 1, + "the": 3, + "Apache": 1, + "Version": 1, + "See": 1, + "http": 1, + "//www.apache.org/licenses/LICENSE": 1, + "-": 26, + "Purpose": 1, + "These": 1, + "are": 2, + "used": 3, + "to": 2, + "define": 1, + "natives": 1, + "and": 2, + "actions.": 1, + "Bind": 1, + "attributes": 1, + "for": 4, + "this": 1, + "block": 5, + "BIND_SET": 1, + "SHALLOW": 1, + ";": 19, + "Special": 1, "as": 1, - "activity.": 1, - "mail.setSaveAsActivity": 1, - "mail.setToAddresses": 1, - "mail.setSubject": 1, - "mail.setBccSender": 1, - "mail.setUseSignature": 1, - "mail.setHtmlBody": 1, - "mail.setPlainTextBody": 1, - "fileAttachments.size": 1, - "mail.setFileAttachments": 1, - "Messaging.sendEmail": 1, - "isValidEmailAddress": 2, - "split": 5, - "str.split": 1, - "split.size": 2, - ".split": 1, - "isNotValidEmailAddress": 1, - "public": 10, - "GeoUtils": 1, - "generate": 1, - "KML": 1, - "string": 7, - "given": 2, - "page": 1, - "reference": 1, - "call": 1, - "getContent": 1, - "then": 1, - "cleanup": 1, - "output.": 1, - "generateFromContent": 1, - "PageReference": 2, - "pr": 1, - "ret": 7, - "try": 1, - "pr.getContent": 1, - ".toString": 1, - "ret.replaceAll": 4, - "content": 1, - "produces": 1, - "quote": 1, - "chars": 1, - "we": 1, - "need": 1, - "escape": 1, - "these": 2, - "in": 1, - "node": 1, - "catch": 1, - "exception": 1, - "e": 2, - "system.debug": 2, - "must": 1, - "use": 1, - "ALL": 1, - "since": 1, - "many": 1, - "line": 1, - "may": 1, - "also": 1, - "Map": 33, - "": 2, - "geo_response": 1, - "accountAddressString": 2, - "account": 2, - "acct": 1, - "form": 1, - "address": 1, - "object": 1, - "adr": 9, - "acct.billingstreet": 1, - "acct.billingcity": 1, - "acct.billingstate": 1, - "acct.billingpostalcode": 2, - "acct.billingcountry": 2, - "adr.replaceAll": 4, - "testmethod": 1, - "t1": 1, - "pageRef": 3, - "Page.kmlPreviewTemplate": 1, - "Test.setCurrentPage": 1, - "system.assert": 1, - "GeoUtils.generateFromContent": 1, - "Account": 2, - "billingstreet": 1, - "billingcity": 1, - "billingstate": 1, - "billingpostalcode": 1, - "billingcountry": 1, - "insert": 1, - "system.assertEquals": 1, - "LanguageUtils": 1, - "final": 6, - "HTTP_LANGUAGE_CODE_PARAMETER_KEY": 2, - "DEFAULT_LANGUAGE_CODE": 3, - "Set": 6, - "SUPPORTED_LANGUAGE_CODES": 2, - "//Chinese": 2, - "Simplified": 1, - "Traditional": 1, - "//Dutch": 1, - "//English": 1, - "//Finnish": 1, - "//French": 1, - "//German": 1, - "//Italian": 1, - "//Japanese": 1, - "//Korean": 1, - "//Polish": 1, - "//Portuguese": 1, - "Brazilian": 1, - "//Russian": 1, - "//Spanish": 1, - "//Swedish": 1, - "//Thai": 1, - "//Czech": 1, - "//Danish": 1, - "//Hungarian": 1, - "//Indonesian": 1, - "//Turkish": 1, - "": 29, - "DEFAULTS": 1, - "getLangCodeByHttpParam": 4, - "LANGUAGE_CODE_SET": 1, - "getSuppLangCodeSet": 2, - "ApexPages.currentPage": 4, - ".getParameters": 2, - "LANGUAGE_HTTP_PARAMETER": 7, - "StringUtils.lowerCase": 3, - "StringUtils.replaceChars": 2, - "//underscore": 1, - "//dash": 1, - "DEFAULTS.containsKey": 3, - "DEFAULTS.get": 3, - "StringUtils.isNotBlank": 1, - "SUPPORTED_LANGUAGE_CODES.contains": 2, - "getLangCodeByBrowser": 4, - "LANGUAGES_FROM_BROWSER_AS_STRING": 2, - ".getHeaders": 1, - "LANGUAGES_FROM_BROWSER_AS_LIST": 3, - "splitAndFilterAcceptLanguageHeader": 2, - "LANGUAGES_FROM_BROWSER_AS_LIST.size": 1, - "languageFromBrowser": 6, - "getLangCodeByUser": 3, - "UserInfo.getLanguage": 1, - "getLangCodeByHttpParamOrIfNullThenBrowser": 1, - "StringUtils.defaultString": 4, - "getLangCodeByHttpParamOrIfNullThenUser": 1, - "getLangCodeByBrowserOrIfNullThenHttpParam": 1, - "getLangCodeByBrowserOrIfNullThenUser": 1, - "header": 2, - "tokens": 3, - "StringUtils.split": 1, - "token": 7, - "token.contains": 1, - "token.substring": 1, - "token.indexOf": 1, - "StringUtils.length": 1, - "StringUtils.substring": 1, - "langCodes": 2, - "langCode": 3, - "langCodes.add": 1, - "getLanguageName": 1, - "displayLanguageCode": 13, - "languageCode": 2, - "translatedLanguageNames.get": 2, - "filterLanguageCode": 4, - "getAllLanguages": 3, - "translatedLanguageNames.containsKey": 1, - "translatedLanguageNames": 1, - "TwilioAPI": 2, - "MissingTwilioConfigCustomSettingsException": 2, - "extends": 1, - "Exception": 1, - "TwilioRestClient": 5, - "client": 2, - "getDefaultClient": 2, - "TwilioConfig__c": 5, - "twilioCfg": 7, - "getTwilioConfig": 3, - "TwilioAPI.client": 2, - "twilioCfg.AccountSid__c": 3, - "twilioCfg.AuthToken__c": 3, - "TwilioAccount": 1, - "getDefaultAccount": 1, - ".getAccount": 2, - "TwilioCapability": 2, - "createCapability": 1, - "createClient": 1, - "accountSid": 2, - "authToken": 2, - "Test.isRunningTest": 1, - "dummy": 2, - "sid": 1, - "TwilioConfig__c.getOrgDefaults": 1, - "@isTest": 1, - "test_TwilioAPI": 1, - "System.assertEquals": 5, - "TwilioAPI.getTwilioConfig": 2, - ".AccountSid__c": 1, - ".AuthToken__c": 1, - "TwilioAPI.getDefaultClient": 2, - ".getAccountSid": 1, - ".getSid": 2, - "TwilioAPI.getDefaultAccount": 1 - }, - "AppleScript": { - "set": 108, - "windowWidth": 3, - "to": 128, - "windowHeight": 3, - "delay": 3, - "AppleScript": 2, - "s": 3, - "text": 13, - "item": 13, - "delimiters": 1, - "tell": 40, - "application": 16, - "screen_width": 2, - "(": 89, - "do": 4, - "JavaScript": 2, - "in": 13, - "document": 2, - ")": 88, - "screen_height": 2, - "end": 67, - "myFrontMost": 3, - "name": 8, - "of": 72, - "first": 1, - "processes": 2, - "whose": 1, - "frontmost": 1, - "is": 40, - "true": 8, - "{": 32, - "desktopTop": 2, - "desktopLeft": 1, - "desktopRight": 1, - "desktopBottom": 1, - "}": 32, - "bounds": 2, - "desktop": 1, - "try": 10, - "process": 5, - "w": 5, - "h": 4, - "size": 5, - "drawer": 2, - "window": 5, - "on": 18, - "error": 3, - "position": 1, - "-": 57, - "/": 2, - "property": 7, - "type_list": 6, - "extension_list": 6, - "html": 2, - "not": 5, - "currently": 2, - "handled": 2, - "run": 4, - "FinderSelection": 4, - "the": 56, - "selection": 2, - "as": 27, - "alias": 8, - "list": 9, - "FS": 10, - "Ideally": 2, - "this": 2, - "could": 2, - "be": 2, - "passed": 2, - "open": 8, - "handler": 2, - "SelectionCount": 6, - "number": 6, - "count": 10, - "if": 50, - "then": 28, - "userPicksFolder": 6, - "else": 14, - "MyPath": 4, - "path": 6, - "me": 2, - "If": 2, - "I": 2, - "m": 2, - "a": 4, - "double": 2, - "clicked": 2, - "droplet": 2, - "these_items": 18, - "choose": 2, - "file": 6, - "with": 11, - "prompt": 2, - "type": 6, - "thesefiles": 2, - "item_info": 24, - "repeat": 19, - "i": 10, - "from": 9, - "this_item": 14, - "info": 4, - "for": 5, - "folder": 10, - "processFolder": 8, - "false": 9, - "and": 7, - "or": 6, - "extension": 4, - "theFilePath": 8, - "string": 17, - "thePOSIXFilePath": 8, - "POSIX": 4, - "processFile": 8, - "folders": 2, - "theFolder": 6, - "without": 2, - "invisibles": 2, - "&": 63, - "thePOSIXFileName": 6, - "terminalCommand": 6, - "convertCommand": 4, - "newFileName": 4, - "shell": 2, - "script": 2, - "need": 1, - "pass": 1, - "URL": 1, - "Terminal": 1, - "localMailboxes": 3, - "every": 3, - "mailbox": 2, - "greater": 5, - "than": 6, - "messageCountDisplay": 5, - "return": 16, - "my": 3, - "getMessageCountsForMailboxes": 4, - "everyAccount": 2, - "account": 1, - "eachAccount": 3, - "accountMailboxes": 3, - "outputMessage": 2, - "make": 3, - "new": 2, - "outgoing": 2, - "message": 2, - "properties": 2, - "content": 2, - "subject": 1, - "visible": 2, - "font": 2, - "theMailboxes": 2, - "mailboxes": 1, - "returns": 2, - "displayString": 4, - "eachMailbox": 4, - "mailboxName": 2, - "messageCount": 2, - "messages": 1, - "unreadCount": 2, - "unread": 1, - "padString": 3, - "theString": 4, - "fieldLength": 5, - "integer": 3, - "stringLength": 4, - "length": 1, - "paddedString": 5, - "character": 2, - "less": 1, - "equal": 3, - "paddingLength": 2, - "times": 1, - "space": 1, - "lowFontSize": 9, - "highFontSize": 6, - "messageText": 4, - "userInput": 4, - "display": 4, - "dialog": 4, - "default": 4, - "answer": 3, - "buttons": 3, - "button": 4, - "returned": 5, - "minimumFontSize": 4, - "newFontSize": 6, - "result": 2, - "theText": 3, - "exit": 1, - "fontList": 2, - "activate": 3, - "crazyTextMessage": 2, - "eachCharacter": 4, - "characters": 1, - "some": 1, - "random": 4, - "color": 1, - "current": 3, - "pane": 4, - "UI": 1, - "elements": 1, - "enabled": 2, - "tab": 1, - "group": 1, - "click": 1, - "radio": 1, - "get": 1, + "spec": 3, + "datatype": 2, + "test": 1, + "functions": 1, + "(": 30, + "e.g.": 1, + "time": 2, + ")": 33, "value": 1, - "field": 1, - "isVoiceOverRunning": 3, - "isRunning": 3, - "contains": 1, - "isVoiceOverRunningWithAppleScript": 3, - "isRunningWithAppleScript": 3, - "VoiceOver": 1, - "x": 1, - "vo": 1, - "cursor": 1, - "currentDate": 3, - "date": 1, - "amPM": 4, - "currentHour": 9, - "minutes": 2, - "<": 2, - "below": 1, - "sound": 1, - "nice": 1, - "currentMinutes": 4, + "any": 1, + "type": 1, + "The": 1, + "native": 5, + "function": 3, + "must": 1, + "be": 1, + "defined": 1, + "first.": 1, + "This": 1, + "special": 1, + "boot": 1, + "created": 1, + "manually": 1, + "within": 1, + "C": 1, + "code.": 1, + "Creates": 2, + "internal": 2, + "usage": 2, + "only": 2, + ".": 4, + "no": 3, + "check": 2, + "required": 2, + "we": 2, + "know": 2, + "it": 2, + "correct": 2, + "action": 2, + "re": 20, + "s": 5, + "/i": 1, + "rejoin": 1, + "compose": 1, + "either": 1, + "i": 1, + "little": 1, + "helper": 1, + "standard": 1, + "grammar": 1, + "regex": 2, + "date": 6, + "naive": 1, + "string": 1, + "|": 22, + "S": 3, + "*": 7, + "<(?:[^^\\>": 1, + "d": 3, + "+": 6, + "/": 5, + "@": 1, + "%": 2, + "A": 3, + "F": 1, + "url": 1, + "PR_LITERAL": 10, + "string_url": 1, + "email": 1, + "string_email": 1, + "binary": 1, + "binary_base_two": 1, + "binary_base_sixty_four": 1, + "binary_base_sixteen": 1, + "re/i": 2, + "issue": 1, + "string_issue": 1, + "values": 1, + "value_date": 1, + "value_time": 1, + "tuple": 1, + "value_tuple": 1, + "pair": 1, + "value_pair": 1, + "number": 2, + "PR": 1, + "Za": 2, + "z0": 2, + "<[=>": 1, + "rebol": 1, + "red": 1, + "/system": 1, + "world": 1, + "topaz": 1, + "true": 1, + "false": 1, + "yes": 1, + "on": 1, + "off": 1, + "none": 1, + "#": 1, + "author": 1 + }, + "SuperCollider": { + "//boot": 1, + "server": 1, + "s.boot": 1, + ";": 18, + "(": 22, + "SynthDef": 1, + "{": 5, + "var": 1, + "sig": 7, + "resfreq": 3, + "Saw.ar": 1, + ")": 22, + "SinOsc.kr": 1, + "*": 3, + "+": 1, + "RLPF.ar": 1, + "Out.ar": 1, + "}": 5, + ".play": 2, + "do": 2, + "arg": 1, + "i": 1, + "Pan2.ar": 1, + "SinOsc.ar": 1, + "exprand": 1, + "LFNoise2.kr": 2, + "rrand": 2, + ".range": 2, + "**": 1, + "rand2": 1, + "a": 2, + "Env.perc": 1, + "-": 1, + "b": 1, + "a.delay": 2, + "a.test.plot": 1, + "b.test.plot": 1, + "Env": 1, + "[": 2, + "]": 2, + ".plot": 2, + "e": 1, + "Env.sine.asStream": 1, + "e.next.postln": 1, + "wait": 1, + ".fork": 1 + }, + "CoffeeScript": { + "dnsserver": 1, + "require": 21, + "exports.Server": 1, + "class": 11, + "Server": 2, + "extends": 6, + "dnsserver.Server": 1, + "NS_T_A": 3, + "NS_T_NS": 2, + "NS_T_CNAME": 1, + "NS_T_SOA": 2, + "NS_C_IN": 5, + "NS_RCODE_NXDOMAIN": 2, + "constructor": 6, + "(": 193, + "domain": 6, + "@rootAddress": 2, + ")": 196, + "-": 107, + "super": 4, + "@domain": 3, + "domain.toLowerCase": 1, + "@soa": 2, + "createSOA": 2, + "@on": 1, + "@handleRequest": 1, + "handleRequest": 1, + "req": 4, + "res": 3, + "question": 5, + "req.question": 1, + "subdomain": 10, + "@extractSubdomain": 1, + "question.name": 3, + "if": 102, + "and": 20, + "isARequest": 2, + "res.addRR": 2, + "subdomain.getAddress": 1, + "else": 53, + ".isEmpty": 1, + "isNSRequest": 2, + "true": 8, + "res.header.rcode": 1, + "res.send": 1, + "extractSubdomain": 1, + "name": 5, + "Subdomain.extract": 1, + "question.type": 2, + "is": 36, + "question.class": 2, + "mname": 2, + "rname": 2, + "serial": 2, + "parseInt": 5, + "new": 12, + "Date": 1, + ".getTime": 1, + "/": 44, + "refresh": 2, + "retry": 2, + "expire": 2, + "minimum": 2, + "dnsserver.createSOA": 1, + "exports.createServer": 1, + "address": 4, + "exports.Subdomain": 1, + "Subdomain": 4, + "@extract": 1, + "return": 29, + "unless": 19, + "name.toLowerCase": 1, + "offset": 4, + "name.length": 1, + "domain.length": 1, + "name.slice": 2, + "then": 24, + "null": 15, + "@for": 2, + "IPAddressSubdomain.pattern.test": 1, + "IPAddressSubdomain": 2, + "EncodedSubdomain.pattern.test": 1, + "EncodedSubdomain": 2, + "@subdomain": 1, + "@address": 2, + "@labels": 2, + ".split": 1, + "[": 134, + "]": 134, + "@length": 3, + "@labels.length": 1, + "isEmpty": 1, + "getAddress": 3, + "@pattern": 2, + "///": 12, + "|": 21, + ".": 13, + "{": 31, + "}": 34, + "@labels.slice": 1, + ".join": 2, + "a": 2, + "z0": 2, + "decode": 2, + "exports.encode": 1, + "encode": 1, + "ip": 2, + "value": 25, + "for": 14, + "byte": 2, + "index": 4, + "in": 32, + "ip.split": 1, + "+": 31, + "<<": 1, + "*": 21, + ".toString": 3, + "PATTERN": 1, + "exports.decode": 1, + "string": 9, + "PATTERN.test": 1, + "i": 8, + "ip.push": 1, + "&": 4, + "xFF": 1, + "ip.join": 1, + "#": 35, + "fs": 2, + "path": 3, + "Lexer": 3, + "RESERVED": 3, + "parser": 1, + "vm": 1, + "require.extensions": 3, + "module": 1, + "filename": 6, + "content": 4, + "compile": 5, + "fs.readFileSync": 1, + "module._compile": 1, + "require.registerExtension": 2, + "exports.VERSION": 1, + "exports.RESERVED": 1, + "exports.helpers": 2, + "exports.compile": 1, + "code": 20, + "options": 16, + "merge": 1, + "try": 3, + "js": 5, + "parser.parse": 3, + "lexer.tokenize": 3, + ".compile": 1, + "options.header": 1, + "catch": 2, + "err": 20, + "err.message": 2, + "options.filename": 5, + "throw": 3, + "header": 1, + "exports.tokens": 1, + "exports.nodes": 1, + "source": 5, + "typeof": 2, + "exports.run": 1, + "mainModule": 1, + "require.main": 1, + "mainModule.filename": 4, + "process.argv": 1, + "fs.realpathSync": 2, + "mainModule.moduleCache": 1, + "mainModule.paths": 1, + "._nodeModulePaths": 1, + "path.dirname": 2, + "path.extname": 1, + "isnt": 7, + "or": 22, + "mainModule._compile": 2, + "exports.eval": 1, + "code.trim": 1, + "Script": 2, + "vm.Script": 1, + "options.sandbox": 4, + "instanceof": 2, + "Script.createContext": 2, + ".constructor": 1, + "sandbox": 8, + "k": 4, + "v": 4, + "own": 2, + "of": 7, + "sandbox.global": 1, + "sandbox.root": 1, + "sandbox.GLOBAL": 1, + "global": 3, + "sandbox.__filename": 3, + "||": 3, + "sandbox.__dirname": 1, + "sandbox.module": 2, + "sandbox.require": 2, + "Module": 2, + "_module": 3, + "options.modulename": 1, + "_require": 2, + "Module._load": 1, + "_module.filename": 1, + "r": 4, + "Object.getOwnPropertyNames": 1, + "when": 16, + "_require.paths": 1, + "_module.paths": 1, + "Module._nodeModulePaths": 1, + "process.cwd": 1, + "_require.resolve": 1, + "request": 2, + "Module._resolveFilename": 1, + "o": 4, + "o.bare": 1, + "on": 3, "ensure": 1, - "nn": 2, - "gets": 1, - "AM": 1, - "readjust": 1, - "hour": 1, - "time": 1, - "currentTime": 3, - "day": 1, + "vm.runInThisContext": 1, + "vm.runInContext": 1, + "lexer": 1, + "parser.lexer": 1, + "lex": 1, + "tag": 33, + "@yytext": 1, + "@yylineno": 1, + "@tokens": 7, + "@pos": 2, + "setInput": 1, + "upcomingInput": 1, + "parser.yy": 1, + "number": 13, + "opposite": 2, + "square": 4, + "x": 6, + "list": 2, + "math": 1, + "root": 1, + "Math.sqrt": 1, + "cube": 1, + "race": 1, + "winner": 2, + "runners...": 1, + "print": 1, + "runners": 1, + "alert": 4, + "elvis": 1, + "cubes": 1, + "math.cube": 1, + "num": 2, + "async": 1, + "nack": 1, + "bufferLines": 3, + "pause": 2, + "sourceScriptEnv": 3, + "join": 8, + "exists": 5, + "basename": 2, + "resolve": 2, + "module.exports": 1, + "RackApplication": 1, + "@configuration": 1, + "@root": 8, + "@firstHost": 1, + "@logger": 1, + "@configuration.getLogger": 1, + "@readyCallbacks": 3, + "@quitCallbacks": 3, + "@statCallbacks": 3, + "ready": 1, + "callback": 35, + "@state": 11, + "@readyCallbacks.push": 1, + "@initialize": 2, + "quit": 1, + "@quitCallbacks.push": 1, + "@terminate": 2, + "queryRestartFile": 1, + "fs.stat": 1, + "stats": 1, + "@mtime": 5, + "false": 4, + "lastMtime": 2, + "stats.mtime.getTime": 1, + "setPoolRunOnceFlag": 1, + "@statCallbacks.length": 1, + "alwaysRestart": 2, + "@pool.runOnce": 1, + "statCallback": 2, + "@statCallbacks.push": 1, + "loadScriptEnvironment": 1, + "env": 18, + "async.reduce": 1, + "script": 7, + "scriptExists": 2, + "loadRvmEnvironment": 1, + "rvmrcExists": 2, + "rvm": 1, + "@configuration.rvmPath": 1, + "rvmExists": 2, + "libexecPath": 1, + "before": 2, + ".trim": 1, + "loadEnvironment": 1, + "@queryRestartFile": 2, + "@loadScriptEnvironment": 1, + "@configuration.env": 1, + "@loadRvmEnvironment": 1, + "initialize": 1, + "@quit": 3, + "@loadEnvironment": 1, + "@logger.error": 3, + "@pool": 2, + "nack.createPool": 1, + "size": 1, + ".POW_WORKERS": 1, + "@configuration.workers": 1, + "idle": 1, + ".POW_TIMEOUT": 1, + "@configuration.timeout": 1, + "@pool.stdout": 1, + "line": 6, + "@logger.info": 1, + "@pool.stderr": 1, + "@logger.warning": 1, + "@pool.on": 2, + "process": 2, + "@logger.debug": 2, + "readyCallback": 2, + "terminate": 1, + "@ready": 3, + "@pool.quit": 1, + "quitCallback": 2, + "handle": 1, + "next": 3, + "resume": 2, + "@setPoolRunOnceFlag": 1, + "@restartIfNecessary": 1, + "req.proxyMetaVariables": 1, + "SERVER_PORT": 1, + "@configuration.dstPort.toString": 1, + "@pool.proxy": 1, + "finally": 2, + "restart": 1, + "restartIfNecessary": 1, + "mtimeChanged": 2, + "@restart": 1, + "writeRvmBoilerplate": 1, + "powrc": 3, + "boilerplate": 2, + "@constructor.rvmBoilerplate": 1, + "fs.readFile": 1, + "contents": 2, + "contents.indexOf": 1, + "fs.writeFile": 1, + "@rvmBoilerplate": 1, + "CoffeeScript": 1, + "CoffeeScript.require": 1, + "CoffeeScript.eval": 1, + "options.bare": 2, + "eval": 2, + "CoffeeScript.compile": 2, + "CoffeeScript.run": 3, + "Function": 1, + "window": 1, + "CoffeeScript.load": 2, + "url": 2, + "xhr": 2, + "window.ActiveXObject": 1, + "XMLHttpRequest": 1, + "xhr.open": 1, + "xhr.overrideMimeType": 1, + "xhr.onreadystatechange": 1, + "xhr.readyState": 1, + "xhr.status": 1, + "xhr.responseText": 1, + "Error": 1, + "xhr.send": 1, + "runScripts": 3, + "scripts": 2, + "document.getElementsByTagName": 1, + "coffees": 2, + "s": 10, + "s.type": 1, + "length": 4, + "coffees.length": 1, + "do": 2, + "execute": 3, + ".type": 1, + "script.src": 2, + "script.innerHTML": 1, + "window.addEventListener": 1, + "addEventListener": 1, + "no": 3, + "attachEvent": 1, + "Rewriter": 2, + "INVERSES": 2, + "count": 5, + "starts": 1, + "compact": 1, + "last": 3, + "exports.Lexer": 1, + "tokenize": 1, + "opts": 1, + "WHITESPACE.test": 1, + "code.replace": 1, + "r/g": 1, + ".replace": 3, + "TRAILING_SPACES": 2, + "@code": 1, + "The": 7, + "remainder": 1, + "the": 4, + "code.": 1, + "@line": 4, + "opts.line": 1, + "current": 5, + "line.": 1, + "@indent": 3, + "indentation": 3, + "level.": 3, + "@indebt": 1, + "over": 1, + "at": 2, + "@outdebt": 1, + "under": 1, + "outdentation": 1, + "@indents": 1, + "stack": 4, + "all": 1, + "levels.": 1, + "@ends": 1, + "pairing": 1, + "up": 1, + "tokens.": 1, + "Stream": 1, + "parsed": 1, + "tokens": 5, + "form": 1, + "while": 4, + "@chunk": 9, + "i..": 1, + "@identifierToken": 1, + "@commentToken": 1, + "@whitespaceToken": 1, + "@lineToken": 1, + "@heredocToken": 1, + "@stringToken": 1, + "@numberToken": 1, + "@regexToken": 1, + "@jsToken": 1, + "@literalToken": 1, + "@closeIndentation": 1, + "@error": 10, + "@ends.pop": 1, + "opts.rewrite": 1, + "off": 1, + ".rewrite": 1, + "identifierToken": 1, + "match": 23, + "IDENTIFIER.exec": 1, + "input": 1, + "id": 16, + "colon": 3, + "@tag": 3, + "@token": 12, + "id.length": 1, + "forcedIdentifier": 4, + "prev": 17, + "not": 4, + "prev.spaced": 3, + "JS_KEYWORDS": 1, + "COFFEE_KEYWORDS": 1, + "id.toUpperCase": 1, + "LINE_BREAK": 2, + "@seenFor": 4, + "yes": 5, + "UNARY": 4, + "RELATION": 3, + "@value": 1, + "@tokens.pop": 1, + "JS_FORBIDDEN": 1, + "String": 1, + "id.reserved": 1, + "COFFEE_ALIAS_MAP": 1, + "COFFEE_ALIASES": 1, + "switch": 7, + "input.length": 1, + "numberToken": 1, + "NUMBER.exec": 1, + "BOX": 1, + "/.test": 4, + "/E/.test": 1, + "x/.test": 1, + "d*": 1, + "d": 2, + "lexedLength": 2, + "number.length": 1, + "octalLiteral": 2, + "/.exec": 2, + "binaryLiteral": 2, + "b": 1, + "stringToken": 1, + "@chunk.charAt": 3, + "SIMPLESTR.exec": 1, + "MULTILINER": 2, + "@balancedString": 1, + "<": 6, + "string.indexOf": 1, + "@interpolateString": 2, + "@escapeLines": 1, + "octalEsc": 1, + "string.length": 1, + "heredocToken": 1, + "HEREDOC.exec": 1, + "heredoc": 4, + "quote": 5, + "heredoc.charAt": 1, + "doc": 11, + "@sanitizeHeredoc": 2, + "indent": 7, + "<=>": 1, + "indexOf": 1, + "interpolateString": 1, + "token": 1, + "STRING": 2, + "makeString": 1, + "n": 16, + "Matches": 1, + "consumes": 1, + "comments": 1, + "commentToken": 1, + "@chunk.match": 1, + "COMMENT": 2, + "comment": 2, + "here": 3, + "herecomment": 4, + "Array": 1, + "comment.length": 1, + "jsToken": 1, + "JSTOKEN.exec": 1, + "script.length": 1, + "regexToken": 1, + "HEREGEX.exec": 1, + "@heregexToken": 1, + "NOT_REGEX": 2, + "NOT_SPACED_REGEX": 2, + "REGEX.exec": 1, + "regex": 5, + "flags": 2, + "..1": 1, + "match.length": 1, + "heregexToken": 1, + "heregex": 1, + "body": 2, + "body.indexOf": 1, + "re": 1, + "body.replace": 1, + "HEREGEX_OMIT": 3, + "//g": 1, + "re.match": 1, + "*/": 2, + "heregex.length": 1, + "@tokens.push": 1, + "tokens.push": 1, + "value...": 1, + "continue": 3, + "value.replace": 2, + "/g": 3, + "spaced": 1, + "reserved": 1, + "word": 1, + "value.length": 2, + "MATH": 3, + "COMPARE": 3, + "COMPOUND_ASSIGN": 2, + "SHIFT": 3, + "LOGIC": 3, + ".spaced": 1, + "CALLABLE": 2, + "INDEXABLE": 2, + "@ends.push": 1, + "@pair": 1, + "sanitizeHeredoc": 1, + "HEREDOC_ILLEGAL.test": 1, + "doc.indexOf": 1, + "HEREDOC_INDENT.exec": 1, + "attempt": 2, + "attempt.length": 1, + "indent.length": 1, + "doc.replace": 2, + "///g": 1, + "n/": 1, + "tagParameters": 1, + "this": 6, + "tokens.length": 1, + "tok": 5, + "stack.push": 1, + "stack.length": 1, + "stack.pop": 2, + "closeIndentation": 1, + "@outdentToken": 1, + "balancedString": 1, + "str": 1, + "end": 2, + "continueCount": 3, + "str.length": 1, + "letter": 1, + "str.charAt": 1, + "missing": 1, + "starting": 1, + "Hello": 1, + "name.capitalize": 1, + "OUTDENT": 1, + "THROW": 1, + "EXTENDS": 1, + "delete": 1, + "break": 1, + "debugger": 1, + "undefined": 1, + "until": 1, + "loop": 1, + "by": 1, + "&&": 1, + "case": 1, + "default": 1, + "function": 2, + "var": 1, + "void": 1, + "with": 1, + "const": 1, + "let": 2, + "enum": 1, + "export": 1, + "import": 1, + "native": 1, + "__hasProp": 1, + "__extends": 1, + "__slice": 1, + "__bind": 1, + "__indexOf": 1, + "implements": 1, + "interface": 1, + "package": 1, + "private": 1, + "protected": 1, + "public": 1, + "static": 1, + "yield": 1, + "arguments": 1, + "S": 10, + "OPERATOR": 1, + "%": 1, + "compound": 1, + "assign": 1, + "compare": 1, + "zero": 1, + "fill": 1, + "right": 1, + "shift": 2, + "doubles": 1, + "logic": 1, + "soak": 1, + "access": 1, + "range": 1, + "splat": 1, + "WHITESPACE": 1, + "###": 3, + "s*#": 1, + "##": 1, + ".*": 1, + "CODE": 1, + "MULTI_DENT": 1, + "SIMPLESTR": 1, + "JSTOKEN": 1, + "REGEX": 1, + "disallow": 1, + "leading": 1, + "whitespace": 1, + "equals": 1, + "signs": 1, + "every": 1, + "other": 1, + "thing": 1, + "anything": 1, + "escaped": 1, + "character": 1, + "imgy": 2, + "w": 2, + "HEREGEX": 1, + "#.*": 1, + "n/g": 1, + "HEREDOC_INDENT": 1, + "HEREDOC_ILLEGAL": 1, + "//": 1, + "LINE_CONTINUER": 1, + "s*": 1, + "BOOL": 1, + "NOT_REGEX.concat": 1, + "CALLABLE.concat": 1, + "console.log": 1, + "Animal": 3, + "@name": 2, + "move": 3, + "meters": 2, + "Snake": 2, + "Horse": 2, + "sam": 1, + "tom": 1, + "sam.move": 1, + "tom.move": 1 + }, + "PHP": { + "<": 11, + "php": 14, + "namespace": 28, + "Symfony": 24, + "Component": 24, + "Console": 17, + ";": 1383, + "use": 23, + "Input": 6, + "InputInterface": 4, + "ArgvInput": 2, + "ArrayInput": 3, + "InputDefinition": 2, + "InputOption": 15, + "InputArgument": 3, + "Output": 5, + "OutputInterface": 6, + "ConsoleOutput": 2, + "ConsoleOutputInterface": 2, + "Command": 6, + "HelpCommand": 2, + "ListCommand": 2, + "Helper": 3, + "HelperSet": 3, + "FormatterHelper": 2, + "DialogHelper": 2, + "class": 21, + "Application": 3, + "{": 974, + "private": 24, + "commands": 39, + "wantHelps": 4, + "false": 154, + "runningCommand": 5, + "name": 181, + "version": 8, + "catchExceptions": 4, + "autoExit": 4, + "definition": 3, + "helperSet": 6, + "public": 202, + "function": 205, + "__construct": 8, + "(": 2416, + ")": 2417, + "this": 928, + "-": 1271, + "true": 133, + "array": 296, + "getDefaultHelperSet": 2, + "getDefaultInputDefinition": 2, + "foreach": 94, + "getDefaultCommands": 2, + "as": 96, + "command": 41, + "add": 7, + "}": 972, + "run": 4, + "input": 20, + "null": 164, + "output": 60, + "if": 450, + "new": 74, + "try": 3, + "statusCode": 14, + "doRun": 2, + "catch": 3, + "Exception": 1, + "e": 18, + "throw": 19, + "instanceof": 8, + "renderException": 3, + "getErrorOutput": 2, + "else": 70, + "getCode": 1, + "is_numeric": 7, + "&&": 119, + "exit": 7, + "return": 305, + "getCommandName": 2, + "hasParameterOption": 7, + "setDecorated": 2, + "elseif": 31, + "setInteractive": 2, + "function_exists": 4, + "getHelperSet": 3, + "has": 7, + "inputStream": 2, + "get": 12, + "getInputStream": 1, + "posix_isatty": 1, + "setVerbosity": 2, + "VERBOSITY_QUIET": 1, + "VERBOSITY_VERBOSE": 2, + "writeln": 13, + "getLongVersion": 3, + "find": 17, + "setHelperSet": 1, + "getDefinition": 2, + "getHelp": 2, + "messages": 16, + "sprintf": 27, + "getOptions": 1, + "option": 5, + "[": 672, + "]": 672, + ".": 169, + "getName": 14, + "getShortcut": 2, + "getDescription": 3, + "implode": 8, + "PHP_EOL": 3, + "setCatchExceptions": 1, + "boolean": 4, + "Boolean": 4, + "setAutoExit": 1, + "setName": 1, + "getVersion": 3, + "setVersion": 1, + "register": 1, + "addCommands": 1, + "setApplication": 2, + "isEnabled": 1, + "getAliases": 3, + "alias": 87, + "isset": 101, + "InvalidArgumentException": 9, + "helpCommand": 3, + "setCommand": 1, + "getNamespaces": 3, + "namespaces": 4, + "extractNamespace": 7, + "array_values": 5, + "array_unique": 4, + "array_filter": 2, + "findNamespace": 4, + "allNamespaces": 3, + "n": 12, + "explode": 9, + "found": 4, + "i": 36, + "part": 10, + "abbrevs": 31, + "static": 6, + "getAbbreviations": 4, + "array_map": 2, + "p": 3, + "message": 12, + "<=>": 3, + "alternatives": 10, + "findAlternativeNamespace": 2, + "count": 32, + "getAbbreviationSuggestions": 4, + "searchName": 13, + "pos": 3, + "strrpos": 2, + "substr": 6, + "namespace.substr": 1, + "suggestions": 2, + "aliases": 8, + "findAlternativeCommands": 2, + "all": 11, + "substr_count": 1, + "+": 12, + "names": 3, + "for": 8, + "len": 11, + "strlen": 14, + "abbrev": 4, + "asText": 1, + "raw": 2, + "width": 7, + "sortCommands": 4, + "space": 5, + "space.": 1, + "asXml": 2, + "asDom": 2, + "dom": 12, + "DOMDocument": 2, + "formatOutput": 1, + "appendChild": 10, + "xml": 5, + "createElement": 6, + "commandsXML": 3, + "setAttribute": 2, + "namespacesXML": 3, + "namespaceArrayXML": 4, + "continue": 7, + "commandXML": 3, + "createTextNode": 1, + "node": 42, + "getElementsByTagName": 1, + "item": 9, + "importNode": 3, + "saveXml": 1, + "string": 5, + "encoding": 2, + "mb_detect_encoding": 1, + "mb_strlen": 1, + "do": 2, + "title": 3, + "get_class": 4, + "getTerminalWidth": 3, + "PHP_INT_MAX": 1, + "lines": 3, + "preg_split": 1, + "getMessage": 1, + "line": 10, + "str_split": 1, + "max": 2, + "str_repeat": 2, + "title.str_repeat": 1, + "line.str_repeat": 1, + "message.": 1, + "getVerbosity": 1, + "trace": 12, + "getTrace": 1, + "array_unshift": 2, + "getFile": 2, + "getLine": 2, + "type": 62, + "file": 3, + "while": 6, + "getPrevious": 1, + "getSynopsis": 1, + "protected": 59, + "defined": 5, + "ansicon": 4, + "getenv": 2, + "preg_replace": 4, + "preg_match": 6, + "getSttyColumns": 3, + "match": 4, + "getTerminalHeight": 1, + "trim": 3, + "getFirstArgument": 1, + "REQUIRED": 1, + "VALUE_NONE": 7, + "descriptorspec": 2, + "process": 10, + "proc_open": 1, + "pipes": 4, + "is_resource": 1, + "info": 5, + "stream_get_contents": 1, + "fclose": 2, + "proc_close": 1, + "namespacedCommands": 5, + "key": 64, + "ksort": 2, + "&": 19, + "limit": 3, + "parts": 4, + "array_pop": 1, + "array_slice": 1, + "callback": 5, + "findAlternatives": 3, + "collection": 3, + "call_user_func": 2, + "lev": 6, + "levenshtein": 2, + "3": 1, + "strpos": 15, + "values": 53, + "/": 1, + "||": 52, + "value": 53, + "asort": 1, + "array_keys": 7, + "": 3, + "CakePHP": 6, + "tm": 6, + "Rapid": 2, + "Development": 2, + "Framework": 2, + "http": 14, + "cakephp": 4, + "org": 10, + "Copyright": 5, + "2005": 4, + "2012": 4, + "Cake": 7, + "Software": 5, + "Foundation": 4, + "Inc": 4, + "cakefoundation": 4, + "Licensed": 2, + "under": 2, + "The": 4, + "MIT": 4, + "License": 4, + "Redistributions": 2, + "of": 10, + "files": 7, + "must": 2, + "retain": 2, + "the": 11, + "above": 2, + "copyright": 5, + "notice": 2, + "link": 10, + "Project": 2, + "package": 2, + "Controller": 4, + "since": 2, + "v": 17, + "0": 4, + "2": 2, + "9": 1, + "license": 6, + "www": 4, + "opensource": 2, + "licenses": 2, + "mit": 2, + "App": 20, + "uses": 46, + "CakeResponse": 2, + "Network": 1, + "ClassRegistry": 9, + "Utility": 6, + "ComponentCollection": 2, + "View": 9, + "CakeEvent": 13, + "Event": 6, + "CakeEventListener": 4, + "CakeEventManager": 5, + "controller": 3, + "organization": 1, + "business": 1, + "logic": 1, + "Provides": 1, + "basic": 1, + "functionality": 1, + "such": 1, + "rendering": 1, + "views": 1, + "inside": 1, + "layouts": 1, + "automatic": 1, + "model": 34, + "availability": 1, + "redirection": 2, + "callbacks": 4, + "and": 5, + "more": 1, + "Controllers": 2, + "should": 1, + "provide": 1, + "a": 11, + "number": 1, + "action": 7, + "methods": 5, + "These": 1, + "are": 5, + "on": 4, + "that": 2, + "not": 2, + "prefixed": 1, + "with": 5, + "_": 1, + "Each": 1, + "serves": 1, + "an": 1, + "endpoint": 1, + "performing": 2, + "specific": 1, + "resource": 1, + "or": 9, + "resources": 1, + "For": 2, + "example": 2, + "adding": 1, + "editing": 1, + "object": 14, + "listing": 1, + "set": 26, + "objects": 5, + "You": 2, + "can": 2, + "access": 1, + "request": 76, + "parameters": 4, + "using": 2, + "contains": 1, + "POST": 1, + "GET": 1, + "FILES": 1, + "*": 25, + "were": 1, + "request.": 1, + "After": 1, + "required": 2, + "actions": 2, + "controllers": 2, + "responsible": 1, + "creating": 1, + "response.": 2, + "This": 1, + "usually": 1, + "takes": 1, + "form": 7, + "generated": 1, + "possibly": 1, + "to": 6, + "another": 1, + "action.": 1, + "In": 1, + "either": 1, + "case": 31, + "response": 33, + "allows": 1, + "you": 1, + "manipulate": 1, + "aspects": 1, + "created": 8, + "by": 2, + "Dispatcher": 1, + "based": 2, + "routing.": 1, + "By": 1, + "default": 9, + "conventional": 1, + "names.": 1, + "/posts/index": 1, + "maps": 1, + "PostsController": 1, + "index": 5, + "re": 1, + "map": 1, + "urls": 1, + "Router": 5, + "connect": 1, + "@package": 2, + "Cake.Controller": 1, + "@property": 8, + "AclComponent": 1, + "Acl": 1, + "AuthComponent": 1, + "Auth": 1, + "CookieComponent": 1, + "Cookie": 1, + "EmailComponent": 1, + "Email": 1, + "PaginatorComponent": 1, + "Paginator": 1, + "RequestHandlerComponent": 1, + "RequestHandler": 1, + "SecurityComponent": 1, + "Security": 1, + "SessionComponent": 1, + "Session": 1, + "@link": 2, + "//book.cakephp.org/2.0/en/controllers.html": 1, + "*/": 2, + "extends": 3, + "Object": 4, + "implements": 3, + "helpers": 1, + "_responseClass": 1, + "viewPath": 3, + "layoutPath": 1, + "viewVars": 3, + "view": 5, + "layout": 5, + "autoRender": 6, + "autoLayout": 2, + "Components": 7, + "components": 1, + "viewClass": 10, + "ext": 1, + "plugin": 31, + "cacheAction": 1, + "passedArgs": 2, + "scaffold": 2, + "modelClass": 25, + "modelKey": 2, + "validationErrors": 50, + "_mergeParent": 4, + "_eventManager": 12, + "Inflector": 12, + "singularize": 4, + "underscore": 3, + "childMethods": 2, + "get_class_methods": 2, + "parentMethods": 2, + "array_diff": 3, + "CakeRequest": 5, + "setRequest": 2, + "parent": 14, + "__isset": 2, + "switch": 6, + "is_array": 37, + "list": 29, + "pluginSplit": 12, + "loadModel": 3, + "__get": 2, + "params": 34, + "load": 3, + "settings": 2, + "__set": 1, + "camelize": 3, + "array_merge": 32, + "array_key_exists": 11, + "empty": 96, + "invokeAction": 1, + "method": 31, + "ReflectionMethod": 2, + "_isPrivateAction": 2, + "PrivateActionException": 1, + "invokeArgs": 1, + "ReflectionException": 1, + "_getScaffold": 2, + "MissingActionException": 1, + "privateAction": 4, + "isPublic": 1, + "in_array": 26, + "prefixes": 4, + "prefix": 2, + "Scaffold": 1, + "_mergeControllerVars": 2, + "pluginController": 9, + "pluginDot": 4, + "mergeParent": 2, + "is_subclass_of": 3, + "pluginVars": 3, + "appVars": 6, + "merge": 12, + "_mergeVars": 5, + "get_class_vars": 2, + "_mergeUses": 3, + "implementedEvents": 2, + "constructClasses": 1, + "init": 4, + "current": 4, + "getEventManager": 13, + "attach": 4, + "startupProcess": 1, + "dispatch": 11, + "shutdownProcess": 1, + "httpCodes": 3, + "code": 4, + "id": 82, + "MissingModelException": 1, + "redirect": 6, + "url": 18, + "status": 15, + "extract": 9, + "EXTR_OVERWRITE": 3, + "event": 35, + "//TODO": 1, + "Remove": 1, + "following": 1, + "when": 1, + "events": 1, + "fully": 1, + "migrated": 1, + "break": 19, + "breakOn": 4, + "collectReturn": 1, + "isStopped": 4, + "result": 21, + "_parseBeforeRedirect": 2, + "session_write_close": 1, + "header": 3, + "is_string": 7, + "codes": 3, + "array_flip": 1, + "send": 1, + "_stop": 1, + "resp": 6, + "compact": 8, + "one": 19, + "two": 6, + "data": 187, + "array_combine": 2, + "setAction": 1, + "args": 5, + "func_get_args": 5, + "unset": 22, + "call_user_func_array": 3, + "validate": 9, + "errors": 9, + "validateErrors": 1, + "invalidFields": 2, + "render": 3, + "className": 27, + "models": 6, + "keys": 19, + "currentModel": 2, + "currentObject": 6, + "getObject": 1, + "is_a": 1, + "location": 1, + "body": 1, + "referer": 5, + "local": 2, + "disableCache": 2, + "flash": 1, + "pause": 2, + "postConditions": 1, + "op": 9, + "bool": 5, + "exclusive": 2, + "cond": 5, + "arrayOp": 2, + "fields": 60, + "field": 88, + "fieldOp": 11, + "strtoupper": 3, + "paginate": 3, + "scope": 2, + "whitelist": 14, + "beforeFilter": 1, + "beforeRender": 1, + "beforeRedirect": 1, + "afterFilter": 1, + "beforeScaffold": 2, + "_beforeScaffold": 1, + "afterScaffoldSave": 2, + "_afterScaffoldSave": 1, + "afterScaffoldSaveError": 2, + "_afterScaffoldSaveError": 1, + "scaffoldError": 2, + "_scaffoldError": 1, + "SHEBANG#!php": 4, + "echo": 2, + "BrowserKit": 1, + "DomCrawler": 5, + "Crawler": 2, + "Link": 3, + "Form": 4, + "Process": 1, + "PhpProcess": 2, + "abstract": 2, + "Client": 1, + "history": 15, + "cookieJar": 9, + "server": 20, + "crawler": 7, + "insulated": 7, + "followRedirects": 5, + "History": 2, + "CookieJar": 2, + "setServerParameters": 2, + "followRedirect": 4, + "insulate": 1, + "class_exists": 2, + "RuntimeException": 2, + "setServerParameter": 1, + "getServerParameter": 1, + "getHistory": 1, + "getCookieJar": 1, + "getCrawler": 1, + "getResponse": 1, + "getRequest": 1, + "click": 1, + "submit": 2, + "getMethod": 6, + "getUri": 8, + "setValues": 2, + "getPhpValues": 2, + "getPhpFiles": 2, + "uri": 23, + "content": 4, + "changeHistory": 4, + "getAbsoluteUri": 2, + "isEmpty": 2, + "parse_url": 3, + "PHP_URL_HOST": 1, + "PHP_URL_SCHEME": 1, + "Request": 3, + "allValues": 1, + "filterRequest": 2, + "doRequestInProcess": 2, + "doRequest": 2, + "filterResponse": 2, + "updateFromResponse": 1, + "getHeader": 2, + "createCrawlerFromContent": 2, + "getContent": 2, + "getScript": 2, + "sys_get_temp_dir": 2, + "isSuccessful": 1, + "getOutput": 3, + "unserialize": 1, + "LogicException": 4, + "addContent": 1, + "back": 2, + "requestFromRequest": 4, + "forward": 2, + "reload": 1, + "restart": 1, + "clear": 2, + "currentUri": 7, + "path": 20, + "PHP_URL_PATH": 1, + "path.": 1, + "getParameters": 1, + "getFiles": 3, + "getServer": 1, + "relational": 2, + "mapper": 2, + "DBO": 2, + "backed": 2, + "mapping": 1, + "database": 2, + "tables": 5, + "PHP": 1, + "versions": 1, + "5": 1, + "Model": 5, + "10": 1, + "Validation": 1, + "String": 5, + "Set": 9, + "BehaviorCollection": 2, + "ModelBehavior": 1, + "ConnectionManager": 2, + "Xml": 2, + "Automatically": 1, + "selects": 1, + "table": 21, + "pluralized": 1, + "lowercase": 1, + "User": 1, + "is": 1, + "have": 2, + "at": 1, + "least": 1, + "primary": 3, + "key.": 1, + "Cake.Model": 1, + "//book.cakephp.org/2.0/en/models.html": 1, + "useDbConfig": 7, + "useTable": 12, + "displayField": 4, + "schemaName": 1, + "primaryKey": 38, + "_schema": 11, + "validationDomain": 1, + "tablePrefix": 8, + "tableToModel": 4, + "cacheQueries": 1, + "belongsTo": 7, + "hasOne": 2, + "hasMany": 2, + "hasAndBelongsToMany": 24, + "actsAs": 2, + "Behaviors": 6, + "cacheSources": 7, + "findQueryType": 3, + "recursive": 9, + "order": 4, + "virtualFields": 8, + "_associationKeys": 2, + "_associations": 5, + "__backAssociation": 22, + "__backInnerAssociation": 1, + "__backOriginalAssociation": 1, + "__backContainableAssociation": 1, + "_insertID": 1, + "_sourceConfigured": 1, + "findMethods": 3, + "ds": 3, + "addObject": 2, + "parentClass": 3, + "get_parent_class": 1, + "tableize": 2, + "_createLinks": 3, + "__call": 1, + "dispatchMethod": 1, + "getDataSource": 15, + "query": 102, + "k": 7, + "relation": 7, + "assocKey": 13, + "dynamic": 2, + "isKeySet": 1, + "AppModel": 1, + "_constructLinkedModel": 2, + "schema": 11, + "hasField": 7, + "setDataSource": 2, + "property_exists": 3, + "bindModel": 1, + "reset": 6, + "assoc": 75, + "assocName": 6, + "unbindModel": 1, + "_generateAssociation": 2, + "dynamicWith": 3, + "sort": 1, + "setSource": 1, + "tableName": 4, + "db": 45, + "method_exists": 5, + "sources": 3, + "listSources": 1, + "strtolower": 1, + "MissingTableException": 1, + "is_object": 2, + "SimpleXMLElement": 1, + "DOMNode": 3, + "_normalizeXmlData": 3, + "toArray": 1, + "reverse": 1, + "_setAliasData": 2, + "modelName": 3, + "fieldSet": 3, + "fieldName": 6, + "fieldValue": 7, + "deconstruct": 2, + "getAssociated": 4, + "getColumnType": 4, + "useNewDate": 2, + "dateFields": 5, + "timeFields": 2, + "date": 9, + "val": 27, + "format": 3, + "columns": 5, + "str_replace": 3, + "describe": 1, + "getColumnTypes": 1, + "trigger_error": 1, + "__d": 1, + "E_USER_WARNING": 1, + "cols": 7, + "column": 10, + "startQuote": 4, + "endQuote": 4, + "checkVirtual": 3, + "isVirtualField": 3, + "hasMethod": 2, + "getVirtualField": 1, + "create": 13, + "filterKey": 2, + "defaults": 6, + "properties": 4, + "read": 2, + "conditions": 41, + "array_shift": 5, + "saveField": 1, + "options": 85, + "save": 9, + "fieldList": 1, + "_whitelist": 4, + "keyPresentAndEmpty": 2, + "exists": 6, + "validates": 60, + "updateCol": 6, + "colType": 4, + "time": 3, + "strtotime": 1, + "joined": 5, + "x": 4, + "y": 2, + "success": 10, + "cache": 2, + "_prepareUpdateFields": 2, + "update": 2, + "fInfo": 4, + "isUUID": 5, + "j": 2, + "array_search": 1, + "uuid": 3, + "updateCounterCache": 6, + "_saveMulti": 2, + "_clearCache": 2, + "join": 22, + "joinModel": 8, + "keyInfo": 4, + "withModel": 4, + "pluginName": 1, + "dbMulti": 6, + "newData": 5, + "newValues": 8, + "newJoins": 7, + "primaryAdded": 3, + "idField": 3, + "row": 17, + "keepExisting": 3, + "associationForeignKey": 5, + "links": 4, + "oldLinks": 4, + "delete": 9, + "oldJoin": 4, + "insertMulti": 1, + "foreignKey": 11, + "fkQuoted": 3, + "escapeField": 6, + "intval": 4, + "updateAll": 3, + "foreignKeys": 3, + "included": 3, + "array_intersect": 1, + "old": 2, + "saveAll": 1, + "numeric": 1, + "validateMany": 4, + "saveMany": 3, + "validateAssociated": 5, + "saveAssociated": 5, + "transactionBegun": 4, + "begin": 2, + "record": 10, + "saved": 18, + "commit": 2, + "rollback": 2, + "associations": 9, + "association": 47, + "notEmpty": 4, + "_return": 3, + "recordData": 2, + "cascade": 10, + "_deleteDependent": 3, + "_deleteLinks": 3, + "_collectForeignKeys": 2, + "savedAssociatons": 3, + "deleteAll": 2, + "records": 6, + "ids": 8, + "_id": 2, + "getID": 2, + "hasAny": 1, + "buildQuery": 2, + "is_null": 1, + "results": 22, + "resetAssociations": 3, + "_filterResults": 2, + "ucfirst": 2, + "modParams": 2, + "_findFirst": 1, + "state": 15, + "_findCount": 1, + "calculate": 2, + "expression": 1, + "_findList": 1, + "tokenize": 1, + "lst": 4, + "combine": 1, + "_findNeighbors": 1, + "prevVal": 2, + "return2": 6, + "_findThreaded": 1, + "nest": 1, + "isUnique": 1, + "is_bool": 1, + "sql": 1, + "php_help": 1, + "arg": 1, + "t": 26, + "php_permission": 1, + "TRUE": 1, + "php_eval": 1, + "global": 2, + "theme_path": 5, + "theme_info": 3, + "conf": 2, + "old_theme_path": 2, + "drupal_get_path": 1, + "dirname": 1, + "filename": 1, + "ob_start": 1, + "print": 1, + "eval": 1, + "ob_get_contents": 1, + "ob_end_clean": 1, + "_php_filter_tips": 1, + "filter": 1, + "long": 2, + "FALSE": 2, + "base_url": 1, + "php_filter_info": 1, + "filters": 2, + "Field": 9, + "FormField": 3, + "ArrayAccess": 1, + "button": 6, + "initialize": 2, + "getFormNode": 1, + "getValues": 3, + "isDisabled": 2, + "FileFormField": 3, + "hasValue": 1, + "getValue": 2, + "qs": 4, + "http_build_query": 3, + "parse_str": 2, + "queryString": 2, + "sep": 1, + "sep.": 1, + "getRawUri": 1, + "getAttribute": 10, + "remove": 4, + "offsetExists": 1, + "offsetGet": 1, + "offsetSet": 1, + "offsetUnset": 1, + "setNode": 1, + "nodeName": 13, + "parentNode": 1, + "FormFieldRegistry": 2, + "document": 6, + "root": 4, + "xpath": 2, + "DOMXPath": 1, + "hasAttribute": 1, + "InputFormField": 2, + "ChoiceFormField": 2, + "addChoice": 1, + "TextareaFormField": 1, + "base": 8, + "segments": 13, + "getSegments": 4, + "target": 20, + "self": 1, + "setValue": 1, + "walk": 3, + "registry": 4, + "m": 5, + "": 1, + "aMenuLinks": 1, + "Array": 13, + "Blog": 1, + "SITE_DIR": 4, + "Photos": 1, + "photo": 1, + "About": 1, + "me": 1, + "about": 1, + "Contact": 1, + "contacts": 1, + "Yii": 3, + "console": 3, + "bootstrap": 1, + "yiiframework": 2, + "com": 2, + "c": 1, + "2008": 1, + "LLC": 1, + "YII_DEBUG": 2, + "define": 2, + "fcgi": 1, + "doesn": 1, + "STDIN": 3, + "fopen": 1, + "stdin": 1, + "r": 1, + "require": 3, + "__DIR__": 3, + "vendor": 2, + "yiisoft": 1, + "yii2": 1, + "yii": 2, + "autoload": 1, + "config": 3, + "application": 2 + }, + "MediaWiki": { + "Overview": 1, + "The": 17, + "GDB": 15, + "Tracepoint": 4, + "Analysis": 1, + "feature": 3, + "is": 9, + "an": 3, + "extension": 1, + "to": 12, + "the": 72, + "Tracing": 3, + "and": 20, + "Monitoring": 1, + "Framework": 1, + "that": 4, + "allows": 2, + "visualization": 1, + "analysis": 1, + "of": 8, + "C/C": 10, + "+": 20, + "tracepoint": 5, + "data": 5, + "collected": 2, + "by": 10, + "stored": 1, + "a": 12, + "log": 1, + "file.": 1, + "Getting": 1, + "Started": 1, + "can": 9, + "be": 18, + "installed": 2, + "from": 8, + "Eclipse": 1, + "update": 2, + "site": 1, + "selecting": 1, + ".": 8, + "requires": 1, + "version": 1, + "or": 8, + "later": 1, + "on": 3, + "local": 1, + "host.": 1, + "executable": 3, + "program": 1, + "must": 3, + "found": 1, + "in": 15, + "path.": 1, + "Trace": 9, + "Perspective": 1, + "To": 1, + "open": 1, + "perspective": 2, + "select": 5, + "includes": 1, + "following": 1, + "views": 2, + "default": 2, + "*": 6, + "This": 7, + "view": 7, + "shows": 7, + "projects": 1, + "workspace": 2, + "used": 1, + "create": 1, + "manage": 1, + "projects.": 1, + "running": 1, + "Postmortem": 5, + "Debugger": 4, + "instances": 1, + "displays": 2, + "thread": 1, + "stack": 2, + "trace": 17, + "associated": 1, + "with": 4, + "tracepoint.": 3, + "status": 1, + "debugger": 1, + "navigation": 1, + "records.": 1, + "console": 1, "output": 1, - "say": 1 + "Debugger.": 1, + "editor": 7, + "area": 2, + "contains": 1, + "editors": 1, + "when": 1, + "opened.": 1, + "[": 11, + "Image": 2, + "images/GDBTracePerspective.png": 1, + "]": 11, + "Collecting": 2, + "Data": 4, + "outside": 2, + "scope": 1, + "this": 5, + "feature.": 1, + "It": 1, + "done": 2, + "command": 1, + "line": 2, + "using": 3, + "CDT": 3, + "debug": 1, + "component": 1, + "within": 1, + "Eclipse.": 1, + "See": 1, + "FAQ": 2, + "entry": 2, + "#References": 2, + "|": 2, + "References": 3, + "section.": 2, + "Importing": 2, + "Some": 1, + "information": 1, + "section": 1, + "redundant": 1, + "LTTng": 3, + "User": 3, + "Guide.": 1, + "For": 1, + "further": 1, + "details": 1, + "see": 1, + "Guide": 2, + "Creating": 1, + "Project": 1, + "In": 5, + "right": 3, + "-": 8, + "click": 8, + "context": 4, + "menu.": 4, + "dialog": 1, + "name": 2, + "your": 2, + "project": 2, + "tracing": 1, + "folder": 5, + "Browse": 2, + "enter": 2, + "source": 2, + "directory.": 1, + "Select": 1, + "file": 6, + "tree.": 1, + "Optionally": 1, + "set": 1, + "type": 2, + "Click": 1, + "Alternatively": 1, + "drag": 1, + "&": 1, + "dropped": 1, + "any": 2, + "external": 1, + "manager.": 1, + "Selecting": 2, + "Type": 1, + "Right": 2, + "imported": 1, + "choose": 2, + "step": 1, + "omitted": 1, + "if": 1, + "was": 2, + "selected": 3, + "at": 3, + "import.": 1, + "will": 6, + "updated": 2, + "icon": 1, + "images/gdb_icon16.png": 1, + "Executable": 1, + "created": 1, + "identified": 1, + "so": 2, + "launched": 1, + "properly.": 1, + "path": 1, + "press": 1, + "recognized": 1, + "as": 1, + "executable.": 1, + "Visualizing": 1, + "Opening": 1, + "double": 1, + "it": 3, + "opened": 2, + "Events": 5, + "instance": 1, + "launched.": 1, + "If": 2, + "available": 1, + "code": 1, + "corresponding": 1, + "first": 1, + "record": 2, + "also": 2, + "editor.": 2, + "At": 1, + "point": 1, + "recommended": 1, + "relocate": 1, + "not": 1, + "hidden": 1, + "Viewing": 1, + "table": 1, + "shown": 1, + "one": 1, + "row": 1, + "for": 2, + "each": 1, + "record.": 2, + "column": 6, + "sequential": 1, + "number.": 1, + "number": 2, + "assigned": 1, + "collection": 1, + "time": 2, + "method": 1, + "where": 1, + "set.": 1, + "run": 1, + "Searching": 1, + "filtering": 1, + "entering": 1, + "regular": 1, + "expression": 1, + "header.": 1, + "Navigating": 1, + "records": 1, + "keyboard": 1, + "mouse.": 1, + "show": 1, + "current": 1, + "navigated": 1, + "clicking": 1, + "buttons.": 1, + "updated.": 1, + "http": 4, + "//wiki.eclipse.org/index.php/Linux_Tools_Project/LTTng2/User_Guide": 1, + "//wiki.eclipse.org/CDT/User/FAQ#How_can_I_trace_my_application_using_C.2FC.2B.2B_Tracepoints.3F": 1, + "How": 1, + "I": 1, + "my": 1, + "application": 1, + "Tracepoints": 1, + "Updating": 1, + "Document": 1, + "document": 2, + "maintained": 1, + "collaborative": 1, + "wiki.": 1, + "you": 1, + "wish": 1, + "modify": 1, + "please": 1, + "visit": 1, + "//wiki.eclipse.org/index.php/Linux_Tools_Project/GDB_Tracepoint_Analysis/User_Guide": 1, + "//wiki.eclipse.org/Linux_Tools_Project/GDB_Tracepoint_Analysis/User_Guide": 1 + }, + "Ceylon": { + "doc": 2, + "by": 1, + "shared": 5, + "void": 1, + "test": 1, + "(": 4, + ")": 4, + "{": 3, + "print": 1, + ";": 4, + "}": 3, + "class": 1, + "Test": 2, + "name": 4, + "satisfies": 1, + "Comparable": 1, + "": 1, + "String": 2, + "actual": 2, + "string": 1, + "Comparison": 1, + "compare": 1, + "other": 1, + "return": 1, + "<=>": 1, + "other.name": 1 + }, + "fish": { + "function": 6, + "eval": 5, + "-": 102, + "S": 1, + "d": 3, + "#": 18, + "If": 2, + "we": 2, + "are": 1, + "in": 2, + "an": 1, + "interactive": 8, + "shell": 1, + "should": 2, + "enable": 1, + "full": 4, + "job": 5, + "control": 5, + "since": 1, + "it": 1, + "behave": 1, + "like": 2, + "the": 1, + "real": 1, + "code": 1, + "was": 1, + "executed.": 1, + "don": 1, + "t": 2, + "do": 1, + "this": 1, + "commands": 1, + "that": 1, + "expect": 1, + "to": 1, + "be": 1, + "used": 1, + "interactively": 1, + "less": 1, + "wont": 1, + "work": 1, + "using": 1, + "eval.": 1, + "set": 49, + "l": 15, + "mode": 5, + "if": 21, + "status": 7, + "is": 3, + "else": 3, + "none": 1, + "end": 33, + "echo": 3, + "|": 3, + ".": 2, + "<": 1, + "&": 1, + "res": 2, + "return": 6, + "funced": 3, + "description": 2, + "editor": 7, + "EDITOR": 1, + "funcname": 14, + "while": 2, + "q": 9, + "argv": 9, + "[": 13, + "]": 13, + "switch": 3, + "case": 9, + "h": 1, + "help": 1, + "__fish_print_help": 1, + "e": 6, + "i": 5, + "set_color": 4, + "red": 2, + "printf": 3, + "(": 7, + "_": 3, + ")": 7, + "normal": 2, + "begin": 2, + ";": 7, + "or": 3, + "not": 8, + "test": 7, + "init": 5, + "n": 5, + "nend": 2, + "editor_cmd": 2, + "type": 1, + "f": 3, + "/dev/null": 2, + "fish": 3, + "z": 1, + "IFS": 4, + "functions": 5, + "fish_indent": 2, + "no": 2, + "indent": 1, + "prompt": 2, + "read": 1, + "p": 1, + "c": 1, + "s": 1, + "cmd": 2, + "TMPDIR": 2, + "/tmp": 1, + "tmpname": 8, + "%": 2, + "self": 2, + "random": 2, + "stat": 2, + "rm": 1, + "g": 1, + "configdir": 2, + "/.config": 1, + "XDG_CONFIG_HOME": 2, + "fish_function_path": 4, + "configdir/fish/functions": 1, + "__fish_sysconfdir/functions": 1, + "__fish_datadir/functions": 3, + "contains": 4, + "fish_complete_path": 4, + "configdir/fish/completions": 1, + "__fish_sysconfdir/completions": 1, + "__fish_datadir/completions": 3, + "/usr/xpg4/bin": 3, + "PATH": 6, + "path_list": 4, + "/bin": 1, + "/usr/bin": 1, + "/usr/X11R6/bin": 1, + "/usr/local/bin": 1, + "__fish_bin_dir": 1, + "USER": 1, + "root": 1, + "/sbin": 1, + "/usr/sbin": 1, + "/usr/local/sbin": 1, + "for": 1, + "fish_sigtrap_handler": 1, + "on": 2, + "signal": 1, + "TRAP": 1, + "scope": 1, + "shadowing": 1, + "breakpoint": 1, + "__fish_on_interactive": 2, + "event": 1, + "fish_prompt": 1, + "__fish_config_interactive": 1 + }, + "Diff": { + "diff": 1, + "-": 5, + "git": 1, + "a/lib/linguist.rb": 2, + "b/lib/linguist.rb": 2, + "index": 1, + "d472341..8ad9ffb": 1, + "+": 3 + }, + "Slash": { + "<%>": 1, + "class": 11, + "Env": 1, + "def": 18, + "init": 4, + "memory": 3, + "ptr": 9, + "0": 3, + "ptr=": 1, + "current_value": 5, + "current_value=": 1, + "value": 1, + "AST": 4, + "Next": 1, + "eval": 10, + "env": 16, + "Prev": 1, + "Inc": 1, + "Dec": 1, + "Output": 1, + "print": 1, + "char": 5, + "Input": 1, + "Sequence": 2, + "nodes": 6, + "for": 2, + "node": 2, + "in": 2, + "Loop": 1, + "seq": 4, + "while": 1, + "Parser": 1, + "str": 2, + "chars": 2, + "split": 1, + "parse": 1, + "stack": 3, + "_parse_char": 2, + "if": 1, + "length": 1, + "1": 1, + "throw": 1, + "SyntaxError": 1, + "new": 2, + "unexpected": 2, + "end": 1, + "of": 1, + "input": 1, + "last": 1, + "switch": 1, + "<": 1, + "+": 1, + "-": 1, + ".": 1, + "[": 1, + "]": 1, + ")": 7, + ";": 6, + "}": 3, + "@stack.pop": 1, + "_add": 1, + "(": 6, + "Loop.new": 1, + "Sequence.new": 1, + "src": 2, + "File.read": 1, + "ARGV.first": 1, + "ast": 1, + "Parser.new": 1, + ".parse": 1, + "ast.eval": 1, + "Env.new": 1 + }, + "Objective-C": { + "#import": 53, + "": 2, + "@interface": 23, + "FooAppDelegate": 2, + "NSObject": 5, + "": 1, + "{": 541, + "@private": 2, + "NSWindow": 2, + "*window": 2, + ";": 2003, + "}": 532, + "@property": 150, + "(": 2109, + "assign": 84, + ")": 2106, + "IBOutlet": 1, + "@end": 37, + "//": 317, + "MainMenuViewController": 2, + "TTTableViewController": 1, + "typedef": 47, + "enum": 17, + "TUITableViewStylePlain": 2, + "regular": 1, + "table": 7, + "view": 11, + "TUITableViewStyleGrouped": 1, + "grouped": 1, + "headers": 11, + "stick": 1, + "to": 115, + "the": 197, + "top": 8, + "of": 34, + "and": 44, + "scroll": 3, + "with": 19, + "it": 28, + "TUITableViewStyle": 4, + "TUITableViewScrollPositionNone": 2, + "TUITableViewScrollPositionTop": 2, + "TUITableViewScrollPositionMiddle": 1, + "TUITableViewScrollPositionBottom": 1, + "TUITableViewScrollPositionToVisible": 3, + "currently": 4, + "only": 12, + "supported": 1, + "arg": 11, + "TUITableViewScrollPosition": 5, + "TUITableViewInsertionMethodBeforeIndex": 1, + "NSOrderedAscending": 4, + "TUITableViewInsertionMethodAtIndex": 1, + "NSOrderedSame": 1, + "TUITableViewInsertionMethodAfterIndex": 1, + "NSOrderedDescending": 4, + "TUITableViewInsertionMethod": 3, + "@class": 4, + "TUITableViewCell": 23, + "@protocol": 3, + "TUITableViewDataSource": 2, + "TUITableView": 25, + "TUITableViewDelegate": 1, + "": 1, + "TUIScrollViewDelegate": 1, + "-": 595, + "CGFloat": 44, + "tableView": 45, + "*": 311, + "heightForRowAtIndexPath": 2, + "TUIFastIndexPath": 89, + "indexPath": 47, + "@optional": 2, + "void": 253, + "willDisplayCell": 2, + "cell": 21, + "forRowAtIndexPath": 2, + "called": 3, + "after": 5, + "s": 35, + "added": 5, + "as": 17, + "a": 78, + "subview": 1, + "didSelectRowAtIndexPath": 3, + "happens": 4, + "on": 26, + "left/right": 2, + "mouse": 2, + "down": 1, + "key": 32, + "up/down": 1, + "didDeselectRowAtIndexPath": 3, + "didClickRowAtIndexPath": 1, + "withEvent": 2, + "NSEvent": 3, + "event": 8, + "up": 4, + "can": 20, + "look": 1, + "at": 10, + "clickCount": 1, + "BOOL": 137, + "TUITableView*": 1, + "shouldSelectRowAtIndexPath": 3, + "TUIFastIndexPath*": 1, + "forEvent": 3, + "NSEvent*": 1, + "YES": 62, + "if": 297, + "not": 29, + "implemented": 7, + "NSMenu": 1, + "menuForRowAtIndexPath": 1, + "tableViewWillReloadData": 3, + "tableViewDidReloadData": 3, + "targetIndexPathForMoveFromRowAtIndexPath": 1, + "fromPath": 1, + "toProposedIndexPath": 1, + "proposedPath": 1, + "TUIScrollView": 1, + "_style": 8, + "__unsafe_unretained": 2, + "id": 170, + "": 4, + "_dataSource": 6, + "weak": 2, + "NSArray": 27, + "_sectionInfo": 27, + "TUIView": 17, + "_pullDownView": 4, + "_headerView": 8, + "CGSize": 5, + "_lastSize": 1, + "_contentHeight": 7, + "NSMutableIndexSet": 6, + "_visibleSectionHeaders": 6, + "NSMutableDictionary": 18, + "_visibleItems": 14, + "_reusableTableCells": 5, + "_selectedIndexPath": 9, + "_indexPathShouldBeFirstResponder": 2, + "NSInteger": 56, + "_futureMakeFirstResponderToken": 2, + "_keepVisibleIndexPathForReload": 2, + "_relativeOffsetForReload": 2, + "drag": 1, + "reorder": 1, + "state": 35, + "_dragToReorderCell": 5, + "CGPoint": 7, + "_currentDragToReorderLocation": 1, + "_currentDragToReorderMouseOffset": 1, + "_currentDragToReorderIndexPath": 1, + "_currentDragToReorderInsertionMethod": 1, + "_previousDragToReorderIndexPath": 1, + "_previousDragToReorderInsertionMethod": 1, + "struct": 20, + "unsigned": 62, + "int": 55, + "animateSelectionChanges": 3, + "forceSaveScrollPosition": 1, + "derepeaterEnabled": 1, + "layoutSubviewsReentrancyGuard": 1, + "didFirstLayout": 1, + "dataSourceNumberOfSectionsInTableView": 1, + "delegateTableViewWillDisplayCellForRowAtIndexPath": 1, + "maintainContentOffsetAfterReload": 3, + "_tableFlags": 1, + "initWithFrame": 12, + "CGRect": 41, + "frame": 38, + "style": 29, + "must": 6, + "specify": 2, + "creation.": 1, + "calls": 1, + "this": 50, + "UITableViewStylePlain": 1, + "nonatomic": 40, + "unsafe_unretained": 2, + "dataSource": 2, + "": 4, + "delegate": 29, + "readwrite": 1, + "reloadData": 3, + "reloadDataMaintainingVisibleIndexPath": 2, + "relativeOffset": 5, + "reloadLayout": 2, + "numberOfSections": 10, + "numberOfRowsInSection": 9, + "section": 60, + "rectForHeaderOfSection": 4, + "rectForSection": 3, + "rectForRowAtIndexPath": 7, + "NSIndexSet": 4, + "indexesOfSectionsInRect": 2, + "rect": 10, + "indexesOfSectionHeadersInRect": 2, + "indexPathForCell": 2, + "returns": 4, + "nil": 131, + "is": 77, + "visible": 16, + "indexPathsForRowsInRect": 3, + "valid": 5, + "indexPathForRowAtPoint": 2, + "point": 11, + "indexPathForRowAtVerticalOffset": 2, + "offset": 23, + "indexOfSectionWithHeaderAtPoint": 2, + "indexOfSectionWithHeaderAtVerticalOffset": 2, + "enumerateIndexPathsUsingBlock": 2, + "*indexPath": 11, + "*stop": 7, + "block": 18, + "enumerateIndexPathsWithOptions": 2, + "NSEnumerationOptions": 4, + "options": 6, + "usingBlock": 6, + "enumerateIndexPathsFromIndexPath": 4, + "fromIndexPath": 6, + "toIndexPath": 12, + "withOptions": 4, + "headerViewForSection": 6, + "cellForRowAtIndexPath": 9, + "or": 18, + "index": 11, + "path": 11, + "out": 7, + "range": 8, + "visibleCells": 3, + "no": 7, + "particular": 2, + "order": 1, + "sortedVisibleCells": 2, + "bottom": 6, + "indexPathsForVisibleRows": 2, + "scrollToRowAtIndexPath": 3, + "atScrollPosition": 3, + "scrollPosition": 9, + "animated": 27, + "indexPathForSelectedRow": 4, + "return": 165, + "representing": 1, + "row": 36, + "selection.": 1, + "indexPathForFirstRow": 2, + "indexPathForLastRow": 2, + "selectRowAtIndexPath": 3, + "deselectRowAtIndexPath": 3, + "strong": 4, + "*pullDownView": 1, + "pullDownViewIsVisible": 3, + "*headerView": 6, + "dequeueReusableCellWithIdentifier": 2, + "NSString": 127, + "identifier": 7, + "": 1, + "@required": 1, + "canMoveRowAtIndexPath": 2, + "moveRowAtIndexPath": 2, + "numberOfSectionsInTableView": 3, + "NSIndexPath": 5, + "+": 195, + "indexPathForRow": 11, + "NSUInteger": 93, + "inSection": 11, + "readonly": 19, + "NSString*": 13, + "kTextStyleType": 2, + "@": 258, + "kViewStyleType": 2, + "kImageStyleType": 2, + "///////////////////////////////////////////////////////////////////////////////////////////////////": 24, + "@implementation": 13, + "StyleViewController": 2, + "initWithStyleName": 1, + "name": 7, + "styleType": 3, + "self": 500, + "[": 1227, + "super": 25, + "initWithNibName": 3, + "bundle": 3, + "]": 1227, + "self.title": 2, + "TTStyleSheet": 4, + "globalStyleSheet": 4, + "styleWithSelector": 4, + "retain": 73, + "_styleHighlight": 6, + "forState": 4, + "UIControlStateHighlighted": 1, + "_styleDisabled": 6, + "UIControlStateDisabled": 1, + "_styleSelected": 6, + "UIControlStateSelected": 1, + "_styleType": 6, + "copy": 4, + "dealloc": 13, + "TT_RELEASE_SAFELY": 12, + "#pragma": 44, + "mark": 42, + "UIViewController": 2, + "addTextView": 5, + "title": 2, + "TTStyle*": 7, + "textFrame": 3, + "TTRectInset": 3, + "UIEdgeInsetsMake": 3, + "StyleView*": 2, + "text": 12, + "StyleView": 2, + "alloc": 47, + "text.text": 1, + "TTStyleContext*": 1, + "context": 4, + "TTStyleContext": 1, + "init": 34, + "context.frame": 1, + "context.delegate": 1, + "context.font": 1, + "UIFont": 3, + "systemFontOfSize": 2, + "systemFontSize": 1, + "size": 12, + "addToSize": 1, + "CGSizeZero": 1, + "size.width": 1, + "size.height": 1, + "textFrame.size": 1, + "text.frame": 1, + "text.style": 1, + "text.backgroundColor": 1, + "UIColor": 3, + "colorWithRed": 3, + "green": 3, + "blue": 3, + "alpha": 3, + "text.autoresizingMask": 1, + "UIViewAutoresizingFlexibleWidth": 4, + "|": 13, + "UIViewAutoresizingFlexibleBottomMargin": 3, + "self.view": 4, + "addSubview": 8, + "addView": 5, + "viewFrame": 4, + "view.style": 2, + "view.backgroundColor": 2, + "view.autoresizingMask": 2, + "addImageView": 5, + "TTImageView*": 1, + "TTImageView": 1, + "view.urlPath": 1, + "imageFrame": 2, + "view.frame": 2, + "imageFrame.size": 1, + "view.image.size": 1, + "loadView": 4, + "self.view.bounds": 2, + "frame.size.height": 15, + "/": 18, + "isEqualToString": 13, + "frame.origin.y": 16, + "else": 35, + "Foo": 2, + "": 4, + "SBJsonParser": 2, + "maxDepth": 2, + "*error": 3, + "objectWithData": 7, + "NSData*": 1, + "data": 27, + "objectWithString": 5, + "repr": 5, + "jsonText": 1, + "error": 75, + "NSError**": 2, + "nibNameOrNil": 1, + "NSBundle": 1, + "nibBundleOrNil": 1, + "//self.variableHeightRows": 1, + "self.tableViewStyle": 1, + "UITableViewStyleGrouped": 1, + "self.dataSource": 1, + "TTSectionedDataSource": 1, + "dataSourceWithObjects": 1, + "TTTableTextItem": 48, + "itemWithText": 48, + "URL": 48, + "@synthesize": 7, + "self.maxDepth": 2, + "u": 4, + "Methods": 1, + "NSData": 28, + "self.error": 3, + "SBJsonStreamParserAccumulator": 2, + "*accumulator": 1, + "SBJsonStreamParserAdapter": 2, + "*adapter": 1, + "adapter.delegate": 1, + "accumulator": 1, + "SBJsonStreamParser": 2, + "*parser": 1, + "parser.maxDepth": 1, + "parser.delegate": 1, + "adapter": 1, + "switch": 3, + "parser": 3, + "parse": 1, + "case": 8, + "SBJsonStreamParserComplete": 1, + "accumulator.value": 1, + "break": 13, + "SBJsonStreamParserWaitingForData": 1, + "SBJsonStreamParserError": 1, + "parser.error": 1, + "dataUsingEncoding": 2, + "NSUTF8StringEncoding": 2, + "error_": 2, + "tmp": 3, + "NSDictionary": 37, + "*ui": 1, + "dictionaryWithObjectsAndKeys": 10, + "NSLocalizedDescriptionKey": 10, + "*error_": 1, + "NSError": 51, + "errorWithDomain": 6, + "code": 16, + "userInfo": 15, + "ui": 1, + "PlaygroundViewController": 2, + "UIScrollView*": 1, + "_scrollView": 9, + "": 1, + "static": 102, + "const": 28, + "kFramePadding": 7, + "kElementSpacing": 3, + "kGroupSpacing": 5, + "addHeader": 5, + "yOffset": 42, + "UILabel*": 2, + "label": 6, + "UILabel": 2, + "CGRectZero": 5, + "label.text": 2, + "label.font": 3, + "label.numberOfLines": 2, + "label.frame": 4, + "frame.origin.x": 3, + "frame.size.width": 4, + "sizeWithFont": 2, + "constrainedToSize": 2, + "CGSizeMake": 3, + ".height": 4, + "label.frame.size.height": 2, + "addText": 5, + "UIScrollView": 1, + "_scrollView.autoresizingMask": 1, + "UIViewAutoresizingFlexibleHeight": 1, + "NSLocalizedString": 9, + "UIButton*": 1, + "button": 5, + "UIButton": 1, + "buttonWithType": 1, + "UIButtonTypeRoundedRect": 1, + "setTitle": 1, + "UIControlStateNormal": 1, + "addTarget": 1, + "action": 1, + "@selector": 28, + "debugTestAction": 2, + "forControlEvents": 1, + "UIControlEventTouchUpInside": 1, + "sizeToFit": 1, + "button.frame": 2, + "stringWithFormat": 6, + "TTCurrentLocale": 2, + "displayNameForKey": 1, + "NSLocaleIdentifier": 1, + "value": 21, + "localeIdentifier": 1, + "TTPathForBundleResource": 1, + "TTPathForDocumentsResource": 1, + "md5Hash": 1, + "setContentSize": 1, + "viewDidUnload": 2, + "viewDidAppear": 2, + "flashScrollIndicators": 1, + "#ifdef": 10, + "DEBUG": 1, + "NSLog": 4, + "#else": 8, + "#endif": 59, + "TTDPRINTMETHODNAME": 1, + "TTDPRINT": 9, + "TTMAXLOGLEVEL": 1, + "TTDERROR": 1, + "TTLOGLEVEL_ERROR": 1, + "TTDWARNING": 1, + "TTLOGLEVEL_WARNING": 1, + "TTDINFO": 1, + "TTLOGLEVEL_INFO": 1, + "TTDCONDITIONLOG": 3, + "true": 9, + "false": 3, + "rand": 1, + "%": 30, + "TTDASSERT": 2, + "#include": 18, + "": 2, + "": 1, + "": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "": 2, + "": 1, + "//#include": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "//#import": 1, + "": 2, + "": 1, + "": 2, + "": 2, + "": 1, + "": 1, + "": 2, + "#ifndef": 9, + "__has_feature": 3, + "#define": 65, + "x": 10, + "JK_ENABLE_CF_TRANSFER_OWNERSHIP_CALLBACKS": 2, + "#warning": 1, + "As": 1, + "JSONKit": 11, + "v1.4": 1, + "longer": 2, + "required.": 1, + "It": 2, + "option.": 1, + "__OBJC_GC__": 1, + "#error": 6, + "does": 3, + "support": 4, + "Objective": 2, + "C": 6, + "Garbage": 1, + "Collection": 1, + "#if": 41, + "objc_arc": 1, + "Automatic": 1, + "Reference": 1, + "Counting": 1, + "ARC": 1, + "UINT_MAX": 3, + "xffffffffU": 1, + "||": 42, + "INT_MIN": 3, + "fffffff": 1, + "ULLONG_MAX": 1, + "xffffffffffffffffULL": 1, + "LLONG_MIN": 1, + "fffffffffffffffLL": 1, + "LL": 1, + "requires": 4, + "types": 2, + "be": 49, + "bits": 1, + "respectively.": 1, + "defined": 16, + "__LP64__": 4, + "&&": 123, + "ULONG_MAX": 3, + "INT_MAX": 2, + "LONG_MAX": 3, + "LONG_MIN": 3, + "WORD_BIT": 1, + "LONG_BIT": 1, + "same": 6, + "bit": 1, + "architectures.": 1, + "NSUIntegerMax": 7, + "NSIntegerMax": 4, + "NSIntegerMin": 3, + "type.": 3, + "SIZE_MAX": 1, + "SSIZE_MAX": 1, + "JK_HASH_INIT": 1, + "UL": 138, + "JK_FAST_TRAILING_BYTES": 2, + "JK_CACHE_SLOTS_BITS": 2, + "JK_CACHE_SLOTS": 1, + "<<": 16, + "JK_CACHE_PROBES": 1, + "JK_INIT_CACHE_AGE": 1, + "JK_TOKENBUFFER_SIZE": 1, + "JK_STACK_OBJS": 1, + "JK_JSONBUFFER_SIZE": 1, + "JK_UTF8BUFFER_SIZE": 1, + "JK_ENCODE_CACHE_SLOTS": 1, + "__GNUC__": 14, + "JK_ATTRIBUTES": 15, + "attr": 3, + "...": 11, + "__attribute__": 3, + "##__VA_ARGS__": 7, + "JK_EXPECTED": 4, + "cond": 12, + "expect": 3, + "__builtin_expect": 1, + "long": 71, + "JK_EXPECT_T": 22, + "U": 2, + "JK_EXPECT_F": 14, + "JK_PREFETCH": 2, + "ptr": 3, + "__builtin_prefetch": 1, + "JK_STATIC_INLINE": 10, + "__inline__": 1, + "always_inline": 1, + "JK_ALIGNED": 1, + "aligned": 1, + "JK_UNUSED_ARG": 2, + "unused": 3, + "JK_WARN_UNUSED": 1, + "warn_unused_result": 9, + "JK_WARN_UNUSED_CONST": 1, + "JK_WARN_UNUSED_PURE": 1, + "pure": 2, + "JK_WARN_UNUSED_SENTINEL": 1, + "sentinel": 1, + "JK_NONNULL_ARGS": 1, + "nonnull": 6, + "JK_WARN_UNUSED_NONNULL_ARGS": 1, + "JK_WARN_UNUSED_CONST_NONNULL_ARGS": 1, + "JK_WARN_UNUSED_PURE_NONNULL_ARGS": 1, + "__GNUC_MINOR__": 3, + "JK_ALLOC_SIZE_NON_NULL_ARGS_WARN_UNUSED": 2, + "nn": 4, + "alloc_size": 1, + "JKArray": 14, + "JKDictionaryEnumerator": 4, + "JKDictionary": 22, + "JSONNumberStateStart": 1, + "JSONNumberStateFinished": 1, + "JSONNumberStateError": 1, + "JSONNumberStateWholeNumberStart": 1, + "JSONNumberStateWholeNumberMinus": 1, + "JSONNumberStateWholeNumberZero": 1, + "JSONNumberStateWholeNumber": 1, + "JSONNumberStatePeriod": 1, + "JSONNumberStateFractionalNumberStart": 1, + "JSONNumberStateFractionalNumber": 1, + "JSONNumberStateExponentStart": 1, + "JSONNumberStateExponentPlusMinus": 1, + "JSONNumberStateExponent": 1, + "JSONStringStateStart": 1, + "JSONStringStateParsing": 1, + "JSONStringStateFinished": 1, + "JSONStringStateError": 1, + "JSONStringStateEscape": 1, + "JSONStringStateEscapedUnicode1": 1, + "JSONStringStateEscapedUnicode2": 1, + "JSONStringStateEscapedUnicode3": 1, + "JSONStringStateEscapedUnicode4": 1, + "JSONStringStateEscapedUnicodeSurrogate1": 1, + "JSONStringStateEscapedUnicodeSurrogate2": 1, + "JSONStringStateEscapedUnicodeSurrogate3": 1, + "JSONStringStateEscapedUnicodeSurrogate4": 1, + "JSONStringStateEscapedNeedEscapeForSurrogate": 1, + "JSONStringStateEscapedNeedEscapedUForSurrogate": 1, + "JKParseAcceptValue": 2, + "JKParseAcceptComma": 2, + "JKParseAcceptEnd": 3, + "JKParseAcceptValueOrEnd": 1, + "JKParseAcceptCommaOrEnd": 1, + "JKClassUnknown": 1, + "JKClassString": 1, + "JKClassNumber": 1, + "JKClassArray": 1, + "JKClassDictionary": 1, + "JKClassNull": 1, + "JKManagedBufferOnStack": 1, + "JKManagedBufferOnHeap": 1, + "JKManagedBufferLocationMask": 1, + "JKManagedBufferLocationShift": 1, + "JKManagedBufferMustFree": 1, + "JKFlags": 5, + "JKManagedBufferFlags": 1, + "JKObjectStackOnStack": 1, + "JKObjectStackOnHeap": 1, + "JKObjectStackLocationMask": 1, + "JKObjectStackLocationShift": 1, + "JKObjectStackMustFree": 1, + "JKObjectStackFlags": 1, + "JKTokenTypeInvalid": 1, + "JKTokenTypeNumber": 1, + "JKTokenTypeString": 1, + "JKTokenTypeObjectBegin": 1, + "JKTokenTypeObjectEnd": 1, + "JKTokenTypeArrayBegin": 1, + "JKTokenTypeArrayEnd": 1, + "JKTokenTypeSeparator": 1, + "JKTokenTypeComma": 1, + "JKTokenTypeTrue": 1, + "JKTokenTypeFalse": 1, + "JKTokenTypeNull": 1, + "JKTokenTypeWhiteSpace": 1, + "JKTokenType": 2, + "JKValueTypeNone": 1, + "JKValueTypeString": 1, + "JKValueTypeLongLong": 1, + "JKValueTypeUnsignedLongLong": 1, + "JKValueTypeDouble": 1, + "JKValueType": 1, + "JKEncodeOptionAsData": 1, + "JKEncodeOptionAsString": 1, + "JKEncodeOptionAsTypeMask": 1, + "JKEncodeOptionCollectionObj": 1, + "JKEncodeOptionStringObj": 1, + "JKEncodeOptionStringObjTrimQuotes": 1, + "JKEncodeOptionType": 2, + "JKHash": 4, + "JKTokenCacheItem": 2, + "JKTokenCache": 2, + "JKTokenValue": 2, + "JKParseToken": 2, + "JKPtrRange": 2, + "JKObjectStack": 5, + "JKBuffer": 2, + "JKConstBuffer": 2, + "JKConstPtrRange": 2, + "JKRange": 2, + "JKManagedBuffer": 5, + "JKFastClassLookup": 2, + "JKEncodeCache": 6, + "JKEncodeState": 11, + "JKObjCImpCache": 2, + "JKHashTableEntry": 21, + "serializeObject": 1, + "object": 36, + "JKSerializeOptionFlags": 16, + "optionFlags": 1, + "encodeOption": 2, + "JKSERIALIZER_BLOCKS_PROTO": 1, + "selector": 12, + "SEL": 19, + "**": 27, + "releaseState": 1, + "keyHash": 21, + "uint32_t": 1, + "UTF32": 11, + "uint16_t": 1, + "UTF16": 1, + "uint8_t": 1, + "UTF8": 2, + "conversionOK": 1, + "sourceExhausted": 1, + "targetExhausted": 1, + "sourceIllegal": 1, + "ConversionResult": 1, + "UNI_REPLACEMENT_CHAR": 1, + "FFFD": 1, + "UNI_MAX_BMP": 1, + "FFFF": 3, + "UNI_MAX_UTF16": 1, + "UNI_MAX_UTF32": 1, + "FFFFFFF": 1, + "UNI_MAX_LEGAL_UTF32": 1, + "UNI_SUR_HIGH_START": 1, + "xD800": 1, + "UNI_SUR_HIGH_END": 1, + "xDBFF": 1, + "UNI_SUR_LOW_START": 1, + "xDC00": 1, + "UNI_SUR_LOW_END": 1, + "xDFFF": 1, + "char": 19, + "trailingBytesForUTF8": 1, + "offsetsFromUTF8": 1, + "E2080UL": 1, + "C82080UL": 1, + "xFA082080UL": 1, + "firstByteMark": 1, + "xC0": 1, + "xE0": 1, + "xF0": 1, + "xF8": 1, + "xFC": 1, + "JK_AT_STRING_PTR": 1, + "&": 36, + "stringBuffer.bytes.ptr": 2, + "atIndex": 6, + "JK_END_STRING_PTR": 1, + "stringBuffer.bytes.length": 1, + "*_JKArrayCreate": 2, + "*objects": 5, + "count": 99, + "mutableCollection": 7, + "_JKArrayInsertObjectAtIndex": 3, + "*array": 9, + "newObject": 12, + "objectIndex": 48, + "_JKArrayReplaceObjectAtIndexWithObject": 3, + "_JKArrayRemoveObjectAtIndex": 3, + "_JKDictionaryCapacityForCount": 4, + "*_JKDictionaryCreate": 2, + "*keys": 2, + "*keyHashes": 2, + "*_JKDictionaryHashEntry": 2, + "*dictionary": 13, + "_JKDictionaryCapacity": 3, + "_JKDictionaryResizeIfNeccessary": 3, + "_JKDictionaryRemoveObjectWithEntry": 3, + "*entry": 4, + "_JKDictionaryAddObject": 4, + "*_JKDictionaryHashTableEntryForKey": 2, + "aKey": 13, + "_JSONDecoderCleanup": 1, + "JSONDecoder": 2, + "*decoder": 1, + "_NSStringObjectFromJSONString": 1, + "*jsonString": 1, + "JKParseOptionFlags": 12, + "parseOptionFlags": 11, + "**error": 1, + "jk_managedBuffer_release": 1, + "*managedBuffer": 3, + "jk_managedBuffer_setToStackBuffer": 1, + "*ptr": 2, + "size_t": 23, + "length": 32, + "*jk_managedBuffer_resize": 1, + "newSize": 1, + "jk_objectStack_release": 1, + "*objectStack": 3, + "jk_objectStack_setToStackBuffer": 1, + "**objects": 1, + "**keys": 1, + "CFHashCode": 1, + "*cfHashes": 1, + "jk_objectStack_resize": 1, + "newCount": 1, + "jk_error": 1, + "JKParseState": 18, + "*parseState": 16, + "*format": 7, + "jk_parse_string": 1, + "jk_parse_number": 1, + "jk_parse_is_newline": 1, + "*atCharacterPtr": 1, + "jk_parse_skip_newline": 1, + "jk_parse_skip_whitespace": 1, + "jk_parse_next_token": 1, + "jk_error_parse_accept_or3": 1, + "*or1String": 1, + "*or2String": 1, + "*or3String": 1, + "*jk_create_dictionary": 1, + "startingObjectIndex": 1, + "*jk_parse_dictionary": 1, + "*jk_parse_array": 1, + "*jk_object_for_token": 1, + "*jk_cachedObjects": 1, + "jk_cache_age": 1, + "jk_set_parsed_token": 1, + "type": 5, + "advanceBy": 1, + "jk_encode_error": 1, + "*encodeState": 9, + "jk_encode_printf": 1, + "*cacheSlot": 4, + "startingAtIndex": 4, + "jk_encode_write": 1, + "jk_encode_writePrettyPrintWhiteSpace": 1, + "jk_encode_write1slow": 2, + "ssize_t": 2, + "depthChange": 2, + "jk_encode_write1fast": 2, + "jk_encode_writen": 1, + "jk_encode_object_hash": 1, + "*objectPtr": 2, + "jk_encode_updateCache": 1, + "jk_encode_add_atom_to_buffer": 1, + "jk_encode_write1": 1, + "es": 3, + "dc": 3, + "f": 8, + "_jk_encode_prettyPrint": 1, + "jk_min": 1, + "b": 4, + "jk_max": 3, + "jk_calculateHash": 1, + "currentHash": 1, + "c": 7, + "Class": 3, + "_JKArrayClass": 5, + "NULL": 152, + "_JKArrayInstanceSize": 4, + "_JKDictionaryClass": 5, + "_JKDictionaryInstanceSize": 4, + "_jk_NSNumberClass": 2, + "NSNumberAllocImp": 2, + "_jk_NSNumberAllocImp": 2, + "NSNumberInitWithUnsignedLongLongImp": 2, + "_jk_NSNumberInitWithUnsignedLongLongImp": 2, + "extern": 6, + "jk_collectionClassLoadTimeInitialization": 2, + "constructor": 1, + "NSAutoreleasePool": 2, + "*pool": 1, + "Though": 1, + "technically": 1, + "required": 2, + "run": 1, + "time": 9, + "environment": 1, + "load": 1, + "initialization": 1, + "may": 8, + "less": 1, + "than": 9, + "ideal.": 1, + "objc_getClass": 2, + "class_getInstanceSize": 2, + "NSNumber": 11, + "class": 30, + "methodForSelector": 2, + "temp_NSNumber": 4, + "initWithUnsignedLongLong": 1, + "release": 66, + "pool": 2, + "NSMutableArray": 31, + "": 2, + "NSMutableCopying": 2, + "NSFastEnumeration": 2, + "capacity": 51, + "mutations": 20, + "allocWithZone": 4, + "NSZone": 4, + "zone": 8, + "NSException": 19, + "raise": 18, + "NSInvalidArgumentException": 6, + "format": 18, + "NSStringFromClass": 18, + "NSStringFromSelector": 16, + "_cmd": 16, + "NSCParameterAssert": 19, + "objects": 58, + "array": 84, + "calloc": 5, + "Directly": 2, + "allocate": 2, + "instance": 2, + "via": 5, + "calloc.": 2, + "isa": 2, + "malloc": 1, + "sizeof": 13, + "autorelease": 21, + "memcpy": 2, + "NO": 30, + "<=>": 15, + "*newObjects": 1, + "newObjects": 2, + "realloc": 1, + "NSMallocException": 2, + "memset": 1, + "<": 56, + "memmove": 2, + "CFRelease": 19, + "atObject": 12, + "for": 99, + "free": 4, + "NSParameterAssert": 15, + "getObjects": 2, + "objectsPtr": 3, + "NSRange": 1, + "NSMaxRange": 4, + "NSRangeException": 6, + "range.location": 2, + "range.length": 1, + "objectAtIndex": 8, + "countByEnumeratingWithState": 2, + "NSFastEnumerationState": 2, + "stackbuf": 8, + "len": 6, + "mutationsPtr": 2, + "itemsPtr": 2, + "enumeratedCount": 8, + "while": 11, + "insertObject": 1, + "anObject": 16, + "NSInternalInconsistencyException": 4, + "__clang_analyzer__": 3, + "Stupid": 2, + "clang": 3, + "analyzer...": 2, + "Issue": 2, + "#19.": 2, + "removeObjectAtIndex": 1, + "replaceObjectAtIndex": 1, + "withObject": 10, + "copyWithZone": 1, + "initWithObjects": 2, + "mutableCopyWithZone": 1, + "NSEnumerator": 2, + "collection": 11, + "nextObject": 6, + "initWithJKDictionary": 3, + "initDictionary": 4, + "allObjects": 2, + "CFRetain": 4, + "arrayWithObjects": 1, + "_JKDictionaryHashEntry": 2, + "returnObject": 3, + "entry": 41, + ".key": 11, + "jk_dictionaryCapacities": 4, + "mid": 5, + "tableSize": 2, + "lround": 1, + "floor": 1, + "dictionary": 64, + "capacityForCount": 4, + "resize": 3, + "oldCapacity": 2, + "NS_BLOCK_ASSERTIONS": 1, + "oldCount": 2, + "*oldEntry": 1, + "idx": 33, + "oldEntry": 9, + ".keyHash": 2, + ".object": 7, + "keys": 5, + "keyHashes": 2, + "atEntry": 45, + "removeIdx": 3, + "entryIdx": 4, + "*atEntry": 3, + "addKeyEntry": 2, + "addIdx": 5, + "*atAddEntry": 1, + "atAddEntry": 6, + "keyEntry": 4, + "CFEqual": 2, + "CFHash": 1, + "If": 30, + "was": 4, + "in": 42, + "we": 73, + "would": 2, + "have": 15, + "found": 4, + "by": 12, + "now.": 1, + "objectForKey": 29, + "entryForKey": 3, + "_JKDictionaryHashTableEntryForKey": 1, + "andKeys": 1, + "arrayIdx": 5, + "keyEnumerator": 1, + "setObject": 9, + "forKey": 9, + "Why": 1, + "earth": 1, + "complain": 1, + "that": 23, + "but": 5, + "doesn": 1, + "Internal": 2, + "Unable": 2, + "temporary": 2, + "buffer.": 2, + "line": 2, + "#": 2, + "ld": 2, + "Invalid": 1, + "character": 1, + "string": 9, + "x.": 1, + "n": 7, + "r": 6, + "t": 15, + "A": 4, + "F": 1, + ".": 2, + "e": 1, + "double": 3, + "Unexpected": 1, + "token": 1, + "wanted": 1, + "Expected": 3, + "TARGET_OS_IPHONE": 11, + "": 1, + "": 1, + "*ASIHTTPRequestVersion": 2, + "*defaultUserAgent": 1, + "NetworkRequestErrorDomain": 12, + "*ASIHTTPRequestRunLoopMode": 1, + "CFOptionFlags": 1, + "kNetworkEvents": 1, + "kCFStreamEventHasBytesAvailable": 1, + "kCFStreamEventEndEncountered": 1, + "kCFStreamEventErrorOccurred": 1, + "*sessionCredentialsStore": 1, + "*sessionProxyCredentialsStore": 1, + "NSRecursiveLock": 13, + "*sessionCredentialsLock": 1, + "*sessionCookies": 1, + "RedirectionLimit": 1, + "NSTimeInterval": 10, + "defaultTimeOutSeconds": 3, + "ReadStreamClientCallBack": 1, + "CFReadStreamRef": 5, + "readStream": 5, + "CFStreamEventType": 2, + "*clientCallBackInfo": 1, + "ASIHTTPRequest*": 1, + "clientCallBackInfo": 1, + "handleNetworkEvent": 2, + "*progressLock": 1, + "*ASIRequestCancelledError": 1, + "*ASIRequestTimedOutError": 1, + "*ASIAuthenticationError": 1, + "*ASIUnableToCreateRequestError": 1, + "*ASITooMuchRedirectionError": 1, + "*bandwidthUsageTracker": 1, + "averageBandwidthUsedPerSecond": 2, + "nextConnectionNumberToCreate": 1, + "*persistentConnectionsPool": 1, + "*connectionsLock": 1, + "nextRequestID": 1, + "bandwidthUsedInLastSecond": 1, + "NSDate": 9, + "*bandwidthMeasurementDate": 1, + "NSLock": 2, + "*bandwidthThrottlingLock": 1, + "maxBandwidthPerSecond": 2, + "ASIWWANBandwidthThrottleAmount": 2, + "isBandwidthThrottled": 2, + "shouldThrottleBandwidthForWWANOnly": 1, + "*sessionCookiesLock": 1, + "*delegateAuthenticationLock": 1, + "*throttleWakeUpTime": 1, + "": 9, + "defaultCache": 3, + "runningRequestCount": 1, + "shouldUpdateNetworkActivityIndicator": 1, + "NSThread": 4, + "*networkThread": 1, + "NSOperationQueue": 4, + "*sharedQueue": 1, + "ASIHTTPRequest": 31, + "cancelLoad": 3, + "destroyReadStream": 3, + "scheduleReadStream": 1, + "unscheduleReadStream": 1, + "willAskDelegateForCredentials": 1, + "willAskDelegateForProxyCredentials": 1, + "askDelegateForProxyCredentials": 1, + "askDelegateForCredentials": 1, + "failAuthentication": 1, + "measureBandwidthUsage": 1, + "recordBandwidthUsage": 1, + "startRequest": 3, + "updateStatus": 2, + "NSTimer": 5, + "timer": 5, + "checkRequestStatus": 2, + "reportFailure": 3, + "reportFinished": 1, + "markAsFinished": 4, + "performRedirect": 1, + "shouldTimeOut": 2, + "willRedirect": 1, + "willAskDelegateToConfirmRedirect": 1, + "performInvocation": 2, + "NSInvocation": 4, + "invocation": 4, + "onTarget": 7, + "target": 5, + "releasingObject": 2, + "objectToRelease": 1, + "hideNetworkActivityIndicatorAfterDelay": 1, + "hideNetworkActivityIndicatorIfNeeeded": 1, + "runRequests": 1, + "configureProxies": 2, + "fetchPACFile": 1, + "finishedDownloadingPACFile": 1, + "theRequest": 1, + "runPACScript": 1, + "script": 1, + "timeOutPACRead": 1, + "useDataFromCache": 2, + "updatePartialDownloadSize": 1, + "registerForNetworkReachabilityNotifications": 1, + "unsubscribeFromNetworkReachabilityNotifications": 1, + "reachabilityChanged": 1, + "NSNotification": 2, + "note": 1, + "NS_BLOCKS_AVAILABLE": 8, + "performBlockOnMainThread": 2, + "ASIBasicBlock": 15, + "releaseBlocksOnMainThread": 4, + "releaseBlocks": 3, + "blocks": 16, + "callBlock": 1, + "complete": 12, + "*responseCookies": 3, + "responseStatusCode": 3, + "*lastActivityTime": 2, + "partialDownloadSize": 8, + "uploadBufferSize": 6, + "NSOutputStream": 6, + "*postBodyWriteStream": 1, + "NSInputStream": 7, + "*postBodyReadStream": 1, + "lastBytesRead": 3, + "lastBytesSent": 3, + "*cancelledLock": 2, + "*fileDownloadOutputStream": 2, + "*inflatedFileDownloadOutputStream": 2, + "authenticationRetryCount": 2, + "proxyAuthenticationRetryCount": 4, + "updatedProgress": 3, + "needsRedirect": 3, + "redirectCount": 2, + "*compressedPostBody": 1, + "*compressedPostBodyFilePath": 1, + "*authenticationRealm": 2, + "*proxyAuthenticationRealm": 3, + "*responseStatusMessage": 3, + "inProgress": 4, + "retryCount": 3, + "willRetryRequest": 1, + "connectionCanBeReused": 4, + "*connectionInfo": 2, + "*readStream": 1, + "ASIAuthenticationState": 5, + "authenticationNeeded": 3, + "readStreamIsScheduled": 1, + "downloadComplete": 2, + "*requestID": 3, + "*runLoopMode": 2, + "*statusTimer": 2, + "didUseCachedResponse": 3, + "NSURL": 21, + "*redirectURL": 2, + "isPACFileRequest": 3, + "*PACFileRequest": 2, + "*PACFileReadStream": 2, + "NSMutableData": 5, + "*PACFileData": 2, + "setter": 2, + "setSynchronous": 2, + "isSynchronous": 2, + "initialize": 1, + "persistentConnectionsPool": 3, + "connectionsLock": 3, + "progressLock": 1, + "bandwidthThrottlingLock": 1, + "sessionCookiesLock": 1, + "sessionCredentialsLock": 1, + "delegateAuthenticationLock": 1, + "bandwidthUsageTracker": 1, + "initWithCapacity": 2, + "ASIRequestTimedOutError": 1, + "initWithDomain": 5, + "ASIRequestTimedOutErrorType": 2, + "ASIAuthenticationError": 1, + "ASIAuthenticationErrorType": 3, + "ASIRequestCancelledError": 2, + "ASIRequestCancelledErrorType": 2, + "ASIUnableToCreateRequestError": 3, + "ASIUnableToCreateRequestErrorType": 2, + "ASITooMuchRedirectionError": 1, + "ASITooMuchRedirectionErrorType": 3, + "sharedQueue": 4, + "setMaxConcurrentOperationCount": 1, + "initWithURL": 4, + "newURL": 16, + "setRequestMethod": 3, + "setRunLoopMode": 2, + "NSDefaultRunLoopMode": 2, + "setShouldAttemptPersistentConnection": 2, + "setPersistentConnectionTimeoutSeconds": 2, + "setShouldPresentCredentialsBeforeChallenge": 1, + "setShouldRedirect": 1, + "setShowAccurateProgress": 1, + "setShouldResetDownloadProgress": 1, + "setShouldResetUploadProgress": 1, + "setAllowCompressedResponse": 1, + "setShouldWaitToInflateCompressedResponses": 1, + "setDefaultResponseEncoding": 1, + "NSISOLatin1StringEncoding": 2, + "setShouldPresentProxyAuthenticationDialog": 1, + "setTimeOutSeconds": 1, + "setUseSessionPersistence": 1, + "setUseCookiePersistence": 1, + "setValidatesSecureCertificate": 1, + "setRequestCookies": 2, + "setDidStartSelector": 1, + "requestStarted": 3, + "setDidReceiveResponseHeadersSelector": 1, + "request": 113, + "didReceiveResponseHeaders": 2, + "setWillRedirectSelector": 1, + "willRedirectToURL": 1, + "setDidFinishSelector": 1, + "requestFinished": 4, + "setDidFailSelector": 1, + "requestFailed": 2, + "setDidReceiveDataSelector": 1, + "didReceiveData": 2, + "setURL": 3, + "setCancelledLock": 1, + "setDownloadCache": 3, + "requestWithURL": 7, + "usingCache": 5, + "cache": 17, + "andCachePolicy": 3, + "ASIUseDefaultCachePolicy": 1, + "ASICachePolicy": 4, + "policy": 7, + "*request": 1, + "setCachePolicy": 1, + "setAuthenticationNeeded": 2, + "ASINoAuthenticationNeededYet": 3, + "requestAuthentication": 7, + "proxyAuthentication": 7, + "clientCertificateIdentity": 5, + "redirectURL": 1, + "statusTimer": 3, + "invalidate": 2, + "queue": 12, + "postBody": 11, + "compressedPostBody": 4, + "requestHeaders": 6, + "requestCookies": 1, + "downloadDestinationPath": 11, + "temporaryFileDownloadPath": 2, + "temporaryUncompressedDataDownloadPath": 3, + "fileDownloadOutputStream": 1, + "inflatedFileDownloadOutputStream": 1, + "username": 8, + "password": 11, + "domain": 2, + "authenticationRealm": 4, + "authenticationScheme": 4, + "requestCredentials": 1, + "proxyHost": 2, + "proxyType": 1, + "proxyUsername": 3, + "proxyPassword": 3, + "proxyDomain": 1, + "proxyAuthenticationRealm": 2, + "proxyAuthenticationScheme": 2, + "proxyCredentials": 1, + "url": 24, + "originalURL": 1, + "lastActivityTime": 1, + "responseCookies": 1, + "rawResponseData": 4, + "responseHeaders": 5, + "requestMethod": 13, + "cancelledLock": 37, + "postBodyFilePath": 7, + "compressedPostBodyFilePath": 4, + "postBodyWriteStream": 7, + "postBodyReadStream": 2, + "PACurl": 1, + "clientCertificates": 2, + "responseStatusMessage": 1, + "connectionInfo": 13, + "requestID": 2, + "dataDecompressor": 1, + "userAgentString": 1, + "*blocks": 1, + "completionBlock": 5, + "addObject": 16, + "failureBlock": 5, + "startedBlock": 5, + "headersReceivedBlock": 5, + "bytesReceivedBlock": 8, + "bytesSentBlock": 5, + "downloadSizeIncrementedBlock": 5, + "uploadSizeIncrementedBlock": 5, + "dataReceivedBlock": 5, + "proxyAuthenticationNeededBlock": 5, + "authenticationNeededBlock": 5, + "requestRedirectedBlock": 5, + "performSelectorOnMainThread": 2, + "waitUntilDone": 4, + "isMainThread": 2, + "Blocks": 1, + "will": 57, + "released": 2, + "when": 46, + "method": 5, + "exits": 1, + "setup": 2, + "addRequestHeader": 5, + "header": 20, + "setRequestHeaders": 2, + "dictionaryWithCapacity": 2, + "buildPostBody": 3, + "haveBuiltPostBody": 3, + "Are": 1, + "submitting": 1, + "body": 8, + "from": 18, + "file": 14, + "disk": 1, + "were": 5, + "writing": 2, + "post": 2, + "appendPostData": 3, + "appendPostDataFromFile": 3, + "close": 5, + "write": 4, + "stream": 13, + "setPostBodyWriteStream": 2, + "*path": 1, + "shouldCompressRequestBody": 6, + "setCompressedPostBodyFilePath": 1, + "NSTemporaryDirectory": 2, + "stringByAppendingPathComponent": 2, + "NSProcessInfo": 2, + "processInfo": 2, + "globallyUniqueString": 2, + "*err": 3, + "ASIDataCompressor": 2, + "compressDataFromFile": 1, + "toFile": 1, + "err": 8, + "failWithError": 11, + "setPostLength": 3, + "NSFileManager": 1, + "attributesOfItemAtPath": 1, + "fileSize": 1, + "ASIFileManagementError": 2, + "NSUnderlyingErrorKey": 3, + "Otherwise": 2, + "an": 20, + "memory": 3, + "*compressedBody": 1, + "compressData": 1, + "setCompressedPostBody": 1, + "compressedBody": 1, + "postLength": 6, + "setHaveBuiltPostBody": 1, + "setupPostBody": 3, + "shouldStreamPostDataFromDisk": 4, + "setPostBodyFilePath": 1, + "setDidCreateTemporaryPostDataFile": 1, + "initToFileAtPath": 1, + "append": 1, + "open": 2, + "setPostBody": 1, + "bytes": 8, + "maxLength": 3, + "appendData": 2, + "*stream": 1, + "initWithFileAtPath": 1, + "bytesRead": 5, + "hasBytesAvailable": 1, + "buffer": 7, + "*256": 1, + "read": 3, + "dataWithBytes": 1, + "lock": 19, + "*m": 1, + "unlock": 20, + "m": 1, + "newRequestMethod": 3, + "*u": 1, + "isEqual": 4, + "setRedirectURL": 2, + "d": 11, + "setDelegate": 4, + "newDelegate": 6, + "q": 2, + "setQueue": 2, + "newQueue": 3, + "get": 4, + "information": 5, + "about": 4, + "cancelOnRequestThread": 2, + "DEBUG_REQUEST_STATUS": 4, + "ASI_DEBUG_LOG": 11, + "isCancelled": 6, + "setComplete": 3, + "willChangeValueForKey": 1, + "cancelled": 5, + "didChangeValueForKey": 1, + "cancel": 5, + "performSelector": 7, + "onThread": 2, + "threadForRequest": 3, + "clearDelegatesAndCancel": 2, + "Clear": 3, + "delegates": 2, + "setDownloadProgressDelegate": 2, + "setUploadProgressDelegate": 2, + "result": 4, + "responseString": 3, + "*data": 2, + "responseData": 5, + "initWithBytes": 1, + "encoding": 7, + "responseEncoding": 3, + "isResponseCompressed": 3, + "*encoding": 1, + "rangeOfString": 1, + ".location": 1, + "NSNotFound": 1, + "shouldWaitToInflateCompressedResponses": 4, + "ASIDataDecompressor": 4, + "uncompressData": 1, + "running": 4, + "startSynchronous": 2, + "DEBUG_THROTTLING": 2, + "ASIHTTPRequestRunLoopMode": 2, + "setInProgress": 3, + "main": 8, + "NSRunLoop": 2, + "currentRunLoop": 2, + "runMode": 1, + "runLoopMode": 2, + "beforeDate": 1, + "distantFuture": 1, + "start": 3, + "startAsynchronous": 2, + "addOperation": 1, + "concurrency": 1, + "isConcurrent": 1, + "isFinished": 1, + "finished": 3, + "isExecuting": 1, + "logic": 1, + "@try": 1, + "__IPHONE_OS_VERSION_MAX_ALLOWED": 4, + "__IPHONE_4_0": 6, + "isMultitaskingSupported": 2, + "shouldContinueWhenAppEntersBackground": 3, + "backgroundTask": 7, + "UIBackgroundTaskInvalid": 3, + "UIApplication": 2, + "sharedApplication": 2, + "beginBackgroundTaskWithExpirationHandler": 1, + "dispatch_async": 1, + "dispatch_get_main_queue": 1, + "endBackgroundTask": 1, + "HEAD": 10, + "generated": 3, + "ASINetworkQueue": 4, + "set": 24, + "already.": 1, + "so": 15, + "should": 8, + "proceed.": 1, + "setDidUseCachedResponse": 1, + "Must": 1, + "call": 8, + "before": 6, + "create": 1, + "needs": 1, + "mainRequest": 9, + "ll": 6, + "already": 4, + "CFHTTPMessageRef": 3, + "Create": 1, + "new": 10, + "HTTP": 9, + "request.": 1, + "CFHTTPMessageCreateRequest": 1, + "kCFAllocatorDefault": 3, + "CFStringRef": 1, + "CFURLRef": 1, + "useHTTPVersionOne": 3, + "kCFHTTPVersion1_0": 1, + "kCFHTTPVersion1_1": 1, + "//If": 2, + "need": 10, + "let": 8, + "generate": 1, + "its": 9, + "first": 9, + "use": 26, + "them": 10, + "buildRequestHeaders": 3, + "Even": 1, + "still": 2, + "give": 2, + "subclasses": 2, + "chance": 2, + "add": 5, + "their": 3, + "own": 3, + "requests": 21, + "ASIS3Request": 1, + "downloadCache": 5, + "default": 8, + "download": 9, + "downloading": 5, + "proxy": 11, + "PAC": 7, + "once": 3, + "process": 1, + "@catch": 1, + "*exception": 1, + "*underlyingError": 1, + "ASIUnhandledExceptionError": 3, + "exception": 3, + "reason": 1, + "NSLocalizedFailureReasonErrorKey": 1, + "underlyingError": 1, + "@finally": 1, + "applyAuthorizationHeader": 2, + "Do": 3, + "want": 5, + "send": 2, + "credentials": 35, + "are": 15, + "asked": 3, + "shouldPresentCredentialsBeforeChallenge": 4, + "DEBUG_HTTP_AUTHENTICATION": 4, + "*credentials": 1, + "auth": 2, + "basic": 3, + "authentication": 18, + "explicitly": 2, + "kCFHTTPAuthenticationSchemeBasic": 2, + "addBasicAuthenticationHeaderWithUsername": 2, + "andPassword": 2, + "See": 5, + "any": 3, + "cached": 2, + "session": 5, + "store": 4, + "useSessionPersistence": 6, + "findSessionAuthenticationCredentials": 2, + "When": 15, + "Authentication": 3, + "stored": 9, + "challenge": 1, + "CFNetwork": 3, + "apply": 2, + "Digest": 2, + "NTLM": 6, + "always": 2, + "like": 1, + "CFHTTPMessageApplyCredentialDictionary": 2, + "CFHTTPAuthenticationRef": 2, + "CFDictionaryRef": 1, + "setAuthenticationScheme": 1, + "removeAuthenticationCredentialsFromSessionStore": 3, + "these": 3, + "previous": 2, + "passed": 2, + "re": 9, + "retrying": 1, + "using": 8, + "our": 6, + "custom": 2, + "measure": 1, + "bandwidth": 3, + "throttled": 1, + "necessary": 2, + "setPostBodyReadStream": 2, + "ASIInputStream": 2, + "inputStreamWithData": 2, + "setReadStream": 2, + "NSMakeCollectable": 3, + "CFReadStreamCreateForStreamedHTTPRequest": 1, + "CFReadStreamCreateForHTTPRequest": 1, + "ASIInternalErrorWhileBuildingRequestType": 3, + "scheme": 5, + "lowercaseString": 1, + "validatesSecureCertificate": 3, + "*sslProperties": 2, + "initWithObjectsAndKeys": 1, + "numberWithBool": 3, + "kCFStreamSSLAllowsExpiredCertificates": 1, + "kCFStreamSSLAllowsAnyRoot": 1, + "kCFStreamSSLValidatesCertificateChain": 1, + "kCFNull": 1, + "kCFStreamSSLPeerName": 1, + "CFReadStreamSetProperty": 1, + "kCFStreamPropertySSLSettings": 1, + "CFTypeRef": 1, + "sslProperties": 2, + "*certificates": 1, + "arrayWithCapacity": 2, + "The": 15, + "SecIdentityRef": 3, + "certificates": 2, + "ve": 7, + "opened": 3, + "*oldStream": 1, + "Use": 6, + "persistent": 5, + "connection": 17, + "possible": 3, + "shouldAttemptPersistentConnection": 2, + "redirecting": 2, + "current": 2, + "connecting": 2, + "server": 8, + "host": 9, + "intValue": 4, + "port": 17, + "setConnectionInfo": 2, + "Check": 1, + "expired": 1, + "timeIntervalSinceNow": 1, + "DEBUG_PERSISTENT_CONNECTIONS": 3, + "removeObject": 2, + "//Some": 1, + "other": 3, + "reused": 2, + "previously": 1, + "there": 1, + "one": 1, + "We": 7, + "just": 4, + "make": 3, + "old": 5, + "http": 4, + "//lists.apple.com/archives/Macnetworkprog/2006/Mar/msg00119.html": 1, + "oldStream": 4, + "streamSuccessfullyOpened": 1, + "setConnectionCanBeReused": 2, + "shouldResetUploadProgress": 3, + "showAccurateProgress": 7, + "incrementUploadSizeBy": 3, + "updateProgressIndicator": 4, + "uploadProgressDelegate": 8, + "withProgress": 4, + "ofTotal": 4, + "shouldResetDownloadProgress": 3, + "downloadProgressDelegate": 10, + "Record": 1, + "started": 1, + "timeout": 6, + "nothing": 2, + "setLastActivityTime": 1, + "date": 3, + "setStatusTimer": 2, + "timerWithTimeInterval": 1, + "repeats": 1, + "addTimer": 1, + "forMode": 1, + "here": 2, + "sent": 6, + "more": 5, + "upload": 4, + "safely": 1, + "totalBytesSent": 5, + "***Black": 1, + "magic": 1, + "warning***": 1, + "reliable": 1, + "way": 1, + "track": 1, + "progress": 13, + "KB": 4, + "iPhone": 3, + "Mac": 2, + "very": 2, + "slow.": 1, + "secondsSinceLastActivity": 1, + "timeOutSeconds": 3, + "*1.5": 1, + "won": 3, + "updating": 1, + "checking": 1, + "told": 1, + "us": 2, + "performThrottling": 2, + "auto": 2, + "retry": 3, + "numberOfTimesToRetryOnTimeout": 2, + "resuming": 1, + "update": 6, + "Range": 1, + "take": 1, + "account": 1, + "perhaps": 1, + "uploaded": 2, + "far": 2, + "setTotalBytesSent": 1, + "CFReadStreamCopyProperty": 2, + "kCFStreamPropertyHTTPRequestBytesWrittenCount": 1, + "unsignedLongLongValue": 1, + "middle": 1, + "said": 1, + "might": 4, + "resume": 2, + "used": 16, + "preset": 2, + "content": 5, + "updateUploadProgress": 3, + "updateDownloadProgress": 3, + "NSProgressIndicator": 4, + "MaxValue": 2, + "UIProgressView": 2, + "max": 7, + "setMaxValue": 2, + "amount": 12, + "callerToRetain": 7, + "examined": 1, + "since": 1, + "authenticate": 1, + "contentLength": 6, + "bytesReadSoFar": 3, + "totalBytesRead": 4, + "setUpdatedProgress": 1, + "didReceiveBytes": 2, + "totalSize": 2, + "setLastBytesRead": 1, + "pass": 5, + "pointer": 2, + "directly": 1, + "number": 2, + "itself": 1, + "rather": 4, + "setArgument": 4, + "argumentNumber": 1, + "callback": 3, + "NSMethodSignature": 1, + "*cbSignature": 1, + "methodSignatureForSelector": 1, + "*cbInvocation": 1, + "invocationWithMethodSignature": 1, + "cbSignature": 1, + "cbInvocation": 5, + "setSelector": 1, + "setTarget": 1, + "Used": 13, + "until": 2, + "forget": 2, + "know": 3, + "attempt": 3, + "reuse": 3, + "theError": 6, + "removeObjectForKey": 1, + "dateWithTimeIntervalSinceNow": 1, + "persistentConnectionTimeoutSeconds": 4, + "ignore": 1, + "ASIFallbackToCacheIfLoadFailsCachePolicy": 2, + "cachePolicy": 3, + "canUseCachedDataForRequest": 1, + "setError": 2, + "*failedRequest": 1, + "created": 3, + "compatible": 1, + "fail": 1, + "failedRequest": 4, + "parsing": 2, + "response": 17, + "readResponseHeaders": 2, + "message": 2, + "kCFStreamPropertyHTTPResponseHeader": 1, + "Make": 1, + "sure": 1, + "didn": 3, + "tells": 1, + "keepAliveHeader": 2, + "NSScanner": 2, + "*scanner": 1, + "scannerWithString": 1, + "scanner": 5, + "scanString": 2, + "intoString": 3, + "scanInt": 2, + "scanUpToString": 1, + "probably": 4, + "what": 3, + "you": 10, + "hard": 1, + "keep": 2, + "throw": 1, + "away.": 1, + "*userAgentHeader": 1, + "*acceptHeader": 1, + "userAgentHeader": 2, + "acceptHeader": 2, + "setHaveBuiltRequestHeaders": 1, + "Force": 2, + "rebuild": 2, + "cookie": 1, + "incase": 1, + "got": 1, + "some": 1, + "cookies": 5, + "All": 2, + "remain": 1, + "they": 6, + "redirects": 2, + "applyCookieHeader": 2, + "redirected": 2, + "ones": 3, + "URLWithString": 1, + "valueForKey": 2, + "relativeToURL": 1, + "absoluteURL": 1, + "setNeedsRedirect": 1, + "This": 7, + "means": 1, + "manually": 1, + "redirect": 4, + "those": 1, + "global": 1, + "But": 1, + "safest": 1, + "option": 1, + "different": 4, + "responseCode": 1, + "parseStringEncodingFromHeaders": 2, + "Handle": 1, + "NSStringEncoding": 6, + "charset": 5, + "*mimeType": 1, + "parseMimeType": 2, + "mimeType": 2, + "andResponseEncoding": 2, + "fromContentType": 2, + "setResponseEncoding": 2, + "defaultResponseEncoding": 4, + "saveProxyCredentialsToKeychain": 1, + "newCredentials": 16, + "NSURLCredential": 8, + "*authenticationCredentials": 2, + "credentialWithUser": 2, + "kCFHTTPAuthenticationUsername": 2, + "kCFHTTPAuthenticationPassword": 2, + "persistence": 2, + "NSURLCredentialPersistencePermanent": 2, + "authenticationCredentials": 4, + "saveCredentials": 4, + "forProxy": 2, + "proxyPort": 2, + "realm": 14, + "saveCredentialsToKeychain": 3, + "forHost": 2, + "protocol": 10, + "applyProxyCredentials": 2, + "setProxyAuthenticationRetryCount": 1, + "Apply": 1, + "whatever": 1, + "ok": 1, + "built": 2, + "CFMutableDictionaryRef": 1, + "save": 3, + "keychain": 7, + "useKeychainPersistence": 4, + "*sessionCredentials": 1, + "sessionCredentials": 6, + "storeAuthenticationCredentialsInSessionStore": 2, + "setRequestCredentials": 1, + "findProxyCredentials": 2, + "*newCredentials": 1, + "*user": 1, + "*pass": 1, + "*theRequest": 1, + "try": 3, + "user": 6, + "connect": 1, + "website": 1, + "kCFHTTPAuthenticationSchemeNTLM": 1, + "Ok": 1, + "For": 2, + "authenticating": 2, + "proxies": 3, + "extract": 1, + "NSArray*": 1, + "ntlmComponents": 1, + "componentsSeparatedByString": 1, + "AUTH": 6, + "Request": 6, + "parent": 1, + "properties": 1, + "received": 5, + "ASIAuthenticationDialog": 2, + "had": 1, + "argc": 1, + "*argv": 1, + "window": 1, + "applicationDidFinishLaunching": 1, + "aNotification": 1, + "HEADER_Z_POSITION": 2, + "beginning": 1, + "height": 19, + "TUITableViewRowInfo": 3, + "TUITableViewSection": 16, + "*_tableView": 1, + "*_headerView": 1, + "Not": 2, + "reusable": 1, + "similar": 1, + "UITableView": 1, + "sectionIndex": 23, + "numberOfRows": 13, + "sectionHeight": 9, + "sectionOffset": 8, + "*rowInfo": 1, + "initWithNumberOfRows": 2, + "_tableView": 3, + "rowInfo": 7, + "_setupRowHeights": 2, + "*header": 1, + "self.headerView": 2, + "roundf": 2, + "header.frame.size.height": 1, + "i": 41, + "h": 3, + "_tableView.delegate": 1, + ".offset": 2, + "rowHeight": 2, + "sectionRowOffset": 2, + "tableRowOffset": 2, + "headerHeight": 4, + "self.headerView.frame.size.height": 1, + "headerView": 14, + "_tableView.dataSource": 3, + "respondsToSelector": 8, + "_headerView.autoresizingMask": 1, + "TUIViewAutoresizingFlexibleWidth": 1, + "_headerView.layer.zPosition": 1, + "Private": 1, + "_updateSectionInfo": 2, + "_updateDerepeaterViews": 2, + "pullDownView": 1, + "_tableFlags.animateSelectionChanges": 3, + "_tableFlags.delegateTableViewWillDisplayCellForRowAtIndexPath": 1, + "setDataSource": 1, + "_tableFlags.dataSourceNumberOfSectionsInTableView": 2, + "setAnimateSelectionChanges": 1, + "*s": 3, + "y": 12, + "CGRectMake": 8, + "self.bounds.size.width": 4, + "indexPath.section": 3, + "indexPath.row": 1, + "*section": 8, + "removeFromSuperview": 4, + "removeAllIndexes": 2, + "*sections": 1, + "bounds": 2, + ".size.height": 1, + "self.contentInset.top*2": 1, + "section.sectionOffset": 1, + "sections": 4, + "self.contentInset.bottom": 1, + "_enqueueReusableCell": 2, + "*identifier": 1, + "cell.reuseIdentifier": 1, + "*c": 1, + "lastObject": 1, + "removeLastObject": 1, + "prepareForReuse": 1, + "allValues": 1, + "SortCells": 1, + "*a": 2, + "*b": 2, + "*ctx": 1, + "a.frame.origin.y": 2, + "b.frame.origin.y": 2, + "*v": 2, + "v": 4, + "sortedArrayUsingComparator": 1, + "NSComparator": 1, + "NSComparisonResult": 1, + "INDEX_PATHS_FOR_VISIBLE_ROWS": 4, + "allKeys": 1, + "*i": 4, + "*cell": 7, + "*indexes": 2, + "CGRectIntersectsRect": 5, + "indexes": 4, + "addIndex": 3, + "*indexPaths": 1, + "cellRect": 7, + "indexPaths": 2, + "CGRectContainsPoint": 1, + "cellRect.origin.y": 1, + "origin": 1, + "brief": 1, + "Obtain": 1, + "whose": 2, + "specified": 1, + "exists": 1, + "negative": 1, + "returned": 1, + "param": 1, + "location": 3, + "p": 3, + "0": 2, + "width": 1, + "point.y": 1, + "section.headerView": 9, + "sectionLowerBound": 2, + "fromIndexPath.section": 1, + "sectionUpperBound": 3, + "toIndexPath.section": 1, + "rowLowerBound": 2, + "fromIndexPath.row": 1, + "rowUpperBound": 3, + "toIndexPath.row": 1, + "irow": 3, + "lower": 1, + "bound": 1, + "iteration...": 1, + "rowCount": 3, + "j": 5, + "stop": 4, + "FALSE": 2, + "...then": 1, + "zero": 1, + "subsequent": 2, + "iterations": 1, + "_topVisibleIndexPath": 1, + "*topVisibleIndex": 1, + "sortedArrayUsingSelector": 1, + "compare": 4, + "topVisibleIndex": 2, + "setFrame": 2, + "_tableFlags.forceSaveScrollPosition": 1, + "setContentOffset": 2, + "_tableFlags.didFirstLayout": 1, + "prevent": 2, + "during": 4, + "layout": 3, + "pinned": 5, + "isKindOfClass": 2, + "TUITableViewSectionHeader": 5, + ".pinnedToViewport": 2, + "TRUE": 1, + "pinnedHeader": 1, + "CGRectGetMaxY": 2, + "headerFrame": 4, + "pinnedHeader.frame.origin.y": 1, + "intersecting": 1, + "push": 1, + "upwards.": 1, + "pinnedHeaderFrame": 2, + "pinnedHeader.frame": 2, + "pinnedHeaderFrame.origin.y": 1, + "notify": 3, + "section.headerView.frame": 1, + "setNeedsLayout": 3, + "section.headerView.superview": 1, + "remove": 4, + "offscreen": 2, + "toRemove": 1, + "enumerateIndexesUsingBlock": 1, + "removeIndex": 1, + "_layoutCells": 3, + "visibleCellsNeedRelayout": 5, + "remaining": 1, + "cells": 7, + "needed": 3, + "cell.frame": 1, + "cell.layer.zPosition": 1, + "visibleRect": 3, + "Example": 1, + "*oldVisibleIndexPaths": 1, + "*newVisibleIndexPaths": 1, + "*indexPathsToRemove": 1, + "oldVisibleIndexPaths": 2, + "mutableCopy": 2, + "indexPathsToRemove": 2, + "removeObjectsInArray": 2, + "newVisibleIndexPaths": 2, + "*indexPathsToAdd": 1, + "indexPathsToAdd": 2, + "don": 2, + "newly": 1, + "superview": 1, + "bringSubviewToFront": 1, + "self.contentSize": 3, + "headerViewRect": 3, + "s.height": 3, + "_headerView.frame.size.height": 2, + "visible.size.width": 3, + "_headerView.frame": 1, + "_headerView.hidden": 4, + "show": 2, + "pullDownRect": 4, + "_pullDownView.frame.size.height": 2, + "_pullDownView.hidden": 4, + "_pullDownView.frame": 1, + "self.delegate": 10, + "recycle": 1, + "all": 3, + "regenerated": 3, + "layoutSubviews": 5, + "because": 1, + "dragged": 1, + "clear": 3, + "removeAllObjects": 1, + "laid": 1, + "next": 2, + "_tableFlags.layoutSubviewsReentrancyGuard": 3, + "setAnimationsEnabled": 1, + "CATransaction": 3, + "begin": 1, + "setDisableActions": 1, + "_preLayoutCells": 2, + "munge": 2, + "contentOffset": 2, + "_layoutSectionHeaders": 2, + "_tableFlags.derepeaterEnabled": 1, + "commit": 1, + "has": 6, + "selected": 2, + "being": 4, + "overlapped": 1, + "r.size.height": 4, + "headerFrame.size.height": 1, + "do": 5, + "r.origin.y": 1, + "v.size.height": 2, + "scrollRectToVisible": 2, + "sec": 3, + "_makeRowAtIndexPathFirstResponder": 2, + "accept": 2, + "responder": 2, + "made": 1, + "acceptsFirstResponder": 1, + "self.nsWindow": 3, + "makeFirstResponderIfNotAlreadyInResponderChain": 1, + "futureMakeFirstResponderRequestToken": 1, + "*oldIndexPath": 1, + "oldIndexPath": 2, + "setSelected": 2, + "setNeedsDisplay": 2, + "selection": 3, + "actually": 2, + "changes": 4, + "NSResponder": 1, + "*firstResponder": 1, + "firstResponder": 3, + "indexPathForFirstVisibleRow": 2, + "*firstIndexPath": 1, + "firstIndexPath": 4, + "indexPathForLastVisibleRow": 2, + "*lastIndexPath": 5, + "lastIndexPath": 8, + "performKeyAction": 2, + "repeative": 1, + "press": 1, + "noCurrentSelection": 2, + "isARepeat": 1, + "TUITableViewCalculateNextIndexPathBlock": 3, + "selectValidIndexPath": 3, + "*startForNoSelection": 2, + "calculateNextIndexPath": 4, + "foundValidNextRow": 4, + "*newIndexPath": 1, + "newIndexPath": 6, + "startForNoSelection": 1, + "_delegate": 2, + "self.animateSelectionChanges": 1, + "charactersIgnoringModifiers": 1, + "characterAtIndex": 1, + "NSUpArrowFunctionKey": 1, + "lastIndexPath.section": 2, + "lastIndexPath.row": 2, + "rowsInSection": 7, + "NSDownArrowFunctionKey": 1, + "_tableFlags.maintainContentOffsetAfterReload": 2, + "setMaintainContentOffsetAfterReload": 1, + "newValue": 2, + "indexPathWithIndexes": 1, + "indexAtPosition": 2, + "TTViewController": 1, + "": 1, + "": 1, + "Necessary": 1, + "background": 1, + "task": 1, + "__IPHONE_3_2": 2, + "__MAC_10_5": 2, + "__MAC_10_6": 2, + "_ASIAuthenticationState": 1, + "ASIHTTPAuthenticationNeeded": 1, + "ASIProxyAuthenticationNeeded": 1, + "_ASINetworkErrorType": 1, + "ASIConnectionFailureErrorType": 2, + "ASIInternalErrorWhileApplyingCredentialsType": 1, + "ASICompressionError": 1, + "ASINetworkErrorType": 1, + "ASIHeadersBlock": 3, + "*responseHeaders": 2, + "ASISizeBlock": 5, + "ASIProgressBlock": 5, + "total": 4, + "ASIDataBlock": 3, + "NSOperation": 1, + "": 1, + "operation": 2, + "include": 1, + "GET": 1, + "params": 1, + "query": 1, + "where": 1, + "appropriate": 4, + "*url": 2, + "Will": 7, + "contain": 4, + "original": 2, + "making": 1, + "change": 2, + "*originalURL": 2, + "Temporarily": 1, + "stores": 1, + "to.": 2, + "again": 1, + "notified": 2, + "various": 1, + "ASIHTTPRequestDelegate": 1, + "": 1, + "Another": 1, + "also": 1, + "status": 4, + "updates": 2, + "Generally": 1, + "likely": 1, + "sessionCookies": 2, + "*requestCookies": 2, + "populated": 1, + "useCookiePersistence": 3, + "network": 4, + "present": 3, + "successfully": 4, + "presented": 2, + "duration": 1, + "clearSession": 2, + "allowCompressedResponse": 3, + "inform": 1, + "compressed": 2, + "automatically": 2, + "decompress": 1, + "gzipped": 7, + "responses.": 1, + "Default": 10, + "true.": 1, + "gzipped.": 1, + "false.": 1, + "You": 1, + "enable": 1, + "feature": 1, + "your": 2, + "webserver": 1, + "work.": 1, + "Tested": 1, + "apache": 1, + "only.": 1, + "downloaded": 6, + "*downloadDestinationPath": 2, + "files": 5, + "Once": 2, + "decompressed": 3, + "moved": 2, + "*temporaryFileDownloadPath": 2, + "containing": 1, + "inflated": 6, + "comes": 3, + "*temporaryUncompressedDataDownloadPath": 2, + "fails": 2, + "completes": 6, + "occurs": 1, + "Connection": 1, + "failure": 1, + "occurred": 1, + "inspect": 1, + "Username": 2, + "*username": 2, + "*password": 2, + "User": 1, + "Agent": 1, + "*userAgentString": 2, + "Domain": 2, + "*domain": 2, + "*proxyUsername": 2, + "*proxyPassword": 2, + "*proxyDomain": 2, + "Delegate": 2, + "displaying": 2, + "usually": 2, + "supply": 2, + "handle": 4, + "yourself": 4, + "": 2, + "Whether": 1, + "hassle": 1, + "adding": 1, + "apps": 1, + "shouldPresentProxyAuthenticationDialog": 2, + "*proxyCredentials": 2, + "Basic": 2, + "*proxyAuthenticationScheme": 2, + "Realm": 1, + "eg": 2, + "OK": 1, + "etc": 1, + "Description": 1, + "Size": 3, + "partially": 1, + "POST": 2, + "payload": 1, + "Last": 2, + "incrementing": 2, + "prevents": 1, + "inopportune": 1, + "moment": 1, + "Called": 6, + "starts.": 1, + "didStartSelector": 2, + "receives": 3, + "headers.": 1, + "didReceiveResponseHeadersSelector": 2, + "Location": 1, + "shouldRedirect": 3, + "then": 1, + "restart": 1, + "calling": 1, + "redirectToURL": 2, + "simply": 1, + "willRedirectSelector": 2, + "successfully.": 1, + "didFinishSelector": 2, + "fails.": 1, + "didFailSelector": 2, + "data.": 1, + "implement": 1, + "populate": 1, + "didReceiveDataSelector": 2, + "recording": 1, + "something": 1, + "last": 1, + "happened": 1, + "Number": 1, + "seconds": 2, + "wait": 1, + "timing": 1, + "starts": 2, + "*mainRequest": 2, + "indicator": 4, + "according": 2, + "how": 2, + "much": 2, + "Also": 1, + "see": 1, + "comments": 1, + "ASINetworkQueue.h": 1, + "ensure": 1, + "incremented": 4, + "Prevents": 1, + "largely": 1, + "internally": 3, + "reflect": 1, + "internal": 2, + "PUT": 1, + "operations": 1, + "sizes": 1, + "greater": 1, + "unless": 2, + "been": 1, + "Likely": 1, + "OS": 1, + "X": 1, + "Leopard": 1, + "Text": 1, + "responses": 5, + "Content": 1, + "Type": 1, + "value.": 1, + "Defaults": 2, + "set.": 1, + "Tells": 1, + "delete": 1, + "partial": 2, + "downloads": 1, + "allows": 1, + "existing": 1, + "download.": 1, + "NO.": 1, + "allowResumeForFileDownloads": 2, + "Custom": 1, + "associated": 1, + "*userInfo": 2, + "tag": 2, + "defaults": 2, + "tell": 2, + "loop": 1, + "Incremented": 1, + "every": 3, + "redirects.": 1, + "reaches": 1, + "check": 1, + "secure": 1, + "certificate": 2, + "signed": 1, + "development": 1, + "DO": 1, + "NOT": 1, + "USE": 1, + "IN": 1, + "PRODUCTION": 1, + "*clientCertificates": 2, + "Details": 1, + "could": 1, + "best": 1, + "local": 1, + "*PACurl": 2, + "values": 3, + "above.": 1, + "No": 1, + "yet": 1, + "ASIHTTPRequests": 1, + "avoids": 1, + "extra": 1, + "round": 1, + "trip": 1, + "succeeded": 1, + "which": 1, + "efficient": 1, + "authenticated": 1, + "large": 1, + "bodies": 1, + "slower": 1, + "connections": 3, + "Set": 4, + "affects": 1, + "YES.": 1, + "Credentials": 1, + "never": 1, + "asks": 1, + "hasn": 1, + "doing": 1, + "anything": 1, + "expires": 1, + "yes": 1, + "alive": 1, + "Stores": 1, + "use.": 1, + "expire": 2, + "connection.": 2, + "These": 1, + "determine": 1, + "whether": 1, + "match": 1, + "An": 2, + "determining": 1, + "available": 1, + "reference": 1, + "one.": 1, + "closed": 1, + "either": 1, + "another": 1, + "fires": 1, + "automatic": 1, + "standard": 1, + "follow": 1, + "behaviour": 2, + "most": 1, + "browsers": 1, + "shouldUseRFC2616RedirectBehaviour": 2, + "record": 1, + "ID": 1, + "uniquely": 1, + "identifies": 1, + "primarily": 1, + "debugging": 1, + "synchronous": 1, + "checks": 1, + "setDefaultCache": 2, + "configure": 2, + "ASICacheDelegate.h": 2, + "storage": 2, + "ASICacheStoragePolicy": 2, + "cacheStoragePolicy": 2, + "pulled": 1, + "secondsToCache": 3, + "interval": 1, + "expiring": 1, + "UIBackgroundTaskIdentifier": 1, + "helper": 1, + "inflate": 2, + "*dataDecompressor": 2, + "Controls": 1, + "without": 1, + "raw": 3, + "discarded": 1, + "normal": 1, + "contents": 1, + "into": 1, + "Setting": 1, + "especially": 1, + "useful": 1, + "users": 1, + "conjunction": 1, + "streaming": 1, + "allow": 1, + "behind": 1, + "scenes": 1, + "https": 1, + "webservers": 1, + "asynchronously": 1, + "reading": 1, + "URLs": 2, + "storing": 1, + "startSynchronous.": 1, + "Currently": 1, + "detection": 2, + "synchronously": 1, + "//block": 12, + "execute": 4, + "handling": 4, + "redirections": 1, + "setStartedBlock": 1, + "aStartedBlock": 1, + "setHeadersReceivedBlock": 1, + "aReceivedBlock": 2, + "setCompletionBlock": 1, + "aCompletionBlock": 1, + "setFailedBlock": 1, + "aFailedBlock": 1, + "setBytesReceivedBlock": 1, + "aBytesReceivedBlock": 1, + "setBytesSentBlock": 1, + "aBytesSentBlock": 1, + "setDownloadSizeIncrementedBlock": 1, + "aDownloadSizeIncrementedBlock": 1, + "setUploadSizeIncrementedBlock": 1, + "anUploadSizeIncrementedBlock": 1, + "setDataReceivedBlock": 1, + "setAuthenticationNeededBlock": 1, + "anAuthenticationBlock": 1, + "setProxyAuthenticationNeededBlock": 1, + "aProxyAuthenticationBlock": 1, + "setRequestRedirectedBlock": 1, + "aRedirectBlock": 1, + "HEADRequest": 1, + "upload/download": 1, + "updateProgressIndicators": 1, + "removeUploadProgressSoFar": 1, + "incrementDownloadSizeBy": 1, + "caller": 1, + "talking": 1, + "requestReceivedResponseHeaders": 1, + "newHeaders": 1, + "retryUsingNewConnection": 1, + "stringEncoding": 1, + "contentType": 1, + "stuff": 1, + "applyCredentials": 1, + "findCredentials": 1, + "retryUsingSuppliedCredentials": 1, + "cancelAuthentication": 1, + "attemptToApplyCredentialsAndResume": 1, + "attemptToApplyProxyCredentialsAndResume": 1, + "showProxyAuthenticationDialog": 1, + "showAuthenticationDialog": 1, + "theUsername": 1, + "thePassword": 1, + "handlers": 1, + "handleBytesAvailable": 1, + "handleStreamComplete": 1, + "handleStreamError": 1, + "cleanup": 1, + "removeTemporaryDownloadFile": 1, + "removeTemporaryUncompressedDownloadFile": 1, + "removeTemporaryUploadFile": 1, + "removeTemporaryCompressedUploadFile": 1, + "removeFileAtPath": 1, + "connectionID": 1, + "expirePersistentConnections": 1, + "setDefaultTimeOutSeconds": 1, + "newTimeOutSeconds": 1, + "client": 1, + "setClientCertificateIdentity": 1, + "anIdentity": 1, + "sessionProxyCredentialsStore": 1, + "sessionCredentialsStore": 1, + "storeProxyAuthenticationCredentialsInSessionStore": 1, + "removeProxyAuthenticationCredentialsFromSessionStore": 1, + "findSessionProxyAuthenticationCredentials": 1, + "savedCredentialsForHost": 1, + "savedCredentialsForProxy": 1, + "removeCredentialsForHost": 1, + "removeCredentialsForProxy": 1, + "setSessionCookies": 1, + "newSessionCookies": 1, + "addSessionCookie": 1, + "NSHTTPCookie": 1, + "newCookie": 1, + "agent": 2, + "defaultUserAgentString": 1, + "setDefaultUserAgentString": 1, + "mime": 1, + "mimeTypeForFileAtPath": 1, + "measurement": 1, + "throttling": 1, + "setMaxBandwidthPerSecond": 1, + "incrementBandwidthUsedInLastSecond": 1, + "setShouldThrottleBandwidthForWWAN": 1, + "throttle": 1, + "throttleBandwidthForWWANUsingLimit": 1, + "limit": 1, + "reachability": 1, + "isNetworkReachableViaWWAN": 1, + "maxUploadReadLength": 1, + "activity": 1, + "isNetworkInUse": 1, + "setShouldUpdateNetworkActivityIndicator": 1, + "shouldUpdate": 1, + "showNetworkActivityIndicator": 1, + "hideNetworkActivityIndicator": 1, + "miscellany": 1, + "base64forData": 1, + "theData": 1, + "expiryDateForRequest": 1, + "maxAge": 2, + "dateFromRFC1123String": 1, + "threading": 1, + "*proxyHost": 1, + "*proxyType": 1, + "*requestHeaders": 1, + "*requestCredentials": 1, + "*rawResponseData": 1, + "*requestMethod": 1, + "*postBody": 1, + "*postBodyFilePath": 1, + "didCreateTemporaryPostDataFile": 1, + "*authenticationScheme": 1, + "shouldPresentAuthenticationDialog": 1, + "haveBuiltRequestHeaders": 1, + "": 1, + "": 1, + "": 1, + "__OBJC__": 4, + "": 1, + "": 1, + "__cplusplus": 2, + "NSINTEGER_DEFINED": 3, + "NS_BUILD_32_LIKE_64": 3, + "_JSONKIT_H_": 3, + "__APPLE_CC__": 2, + "JK_DEPRECATED_ATTRIBUTE": 6, + "deprecated": 1, + "JSONKIT_VERSION_MAJOR": 1, + "JSONKIT_VERSION_MINOR": 1, + "JKParseOptionNone": 1, + "JKParseOptionStrict": 1, + "JKParseOptionComments": 2, + "JKParseOptionUnicodeNewlines": 2, + "JKParseOptionLooseUnicode": 2, + "JKParseOptionPermitTextAfterValidJSON": 2, + "JKParseOptionValidFlags": 1, + "JKSerializeOptionNone": 3, + "JKSerializeOptionPretty": 2, + "JKSerializeOptionEscapeUnicode": 2, + "JKSerializeOptionEscapeForwardSlashes": 2, + "JKSerializeOptionValidFlags": 1, + "Opaque": 1, + "private": 1, + "decoder": 1, + "decoderWithParseOptions": 1, + "initWithParseOptions": 1, + "clearCache": 1, + "parseUTF8String": 2, + "Deprecated": 4, + "v1.4.": 4, + "objectWithUTF8String": 4, + "instead.": 4, + "parseJSONData": 2, + "jsonData": 6, + "mutableObjectWithUTF8String": 2, + "mutableObjectWithData": 2, + "////////////": 4, + "Deserializing": 1, + "methods": 2, + "JSONKitDeserializing": 2, + "objectFromJSONString": 1, + "objectFromJSONStringWithParseOptions": 2, + "mutableObjectFromJSONString": 1, + "mutableObjectFromJSONStringWithParseOptions": 2, + "objectFromJSONData": 1, + "objectFromJSONDataWithParseOptions": 2, + "mutableObjectFromJSONData": 1, + "mutableObjectFromJSONDataWithParseOptions": 2, + "Serializing": 1, + "JSONKitSerializing": 3, + "JSONData": 3, + "Invokes": 2, + "JSONDataWithOptions": 8, + "includeQuotes": 6, + "serializeOptions": 14, + "JSONString": 3, + "JSONStringWithOptions": 8, + "serializeUnsupportedClassesUsingDelegate": 4, + "__BLOCKS__": 1, + "JSONKitSerializingBlockAdditions": 2, + "serializeUnsupportedClassesUsingBlock": 4 + }, + "Stata": { + "local": 6, + "MAXDIM": 1, + "*": 25, + "Setup": 1, + "sysuse": 1, + "auto": 1, + "Fit": 2, + "a": 30, + "linear": 2, + "regression": 2, + "regress": 5, + "mpg": 1, + "weight": 4, + "foreign": 2, + "better": 1, + "from": 6, + "physics": 1, + "standpoint": 1, + "gen": 1, + "gp100m": 2, + "/mpg": 1, + "Obtain": 1, + "beta": 2, + "coefficients": 1, + "without": 2, + "refitting": 1, + "model": 1, + "Suppress": 1, + "intercept": 1, + "term": 1, + "length": 3, + "noconstant": 1, + "Model": 1, + "already": 2, + "has": 6, + "constant": 2, + "bn.foreign": 1, + "hascons": 1, + "numeric": 4, + "matrix": 3, + "tanh": 1, + "(": 60, + "u": 3, + ")": 61, + "{": 441, + "eu": 4, + "emu": 4, + "exp": 2, + "-": 42, + "return": 1, + "/": 1, + "+": 2, + "}": 440, + "smcl": 1, + "version": 2, + "Matthew": 2, + "White": 2, + "jan2014": 1, + "...": 30, + "title": 7, + "Title": 1, + "phang": 4, + "cmd": 111, + "odkmeta": 17, + "hline": 1, + "Create": 4, + "do": 22, + "file": 18, + "to": 23, + "import": 9, + "ODK": 6, + "data": 4, + "marker": 10, + "syntax": 1, + "Syntax": 1, + "p": 2, + "using": 10, + "it": 61, + "help": 27, + "filename": 3, + "opt": 25, + "csv": 9, + "csvfile": 3, + "Using": 7, + "histogram": 2, + "as": 29, + "template.": 8, + "notwithstanding": 1, + "is": 31, + "rarely": 1, + "preceded": 3, + "by": 7, + "an": 6, + "underscore.": 1, + "cmdab": 5, + "s": 10, + "urvey": 2, + "surveyfile": 5, + "odkmeta##surveyopts": 2, + "surveyopts": 4, + "cho": 2, + "ices": 2, + "choicesfile": 4, + "odkmeta##choicesopts": 2, + "choicesopts": 5, + "[": 6, + "options": 1, + "]": 6, + "odbc": 2, + "the": 67, + "position": 1, + "of": 36, + "last": 1, + "character": 1, + "in": 24, + "first": 2, + "column": 18, + "synoptset": 5, + "tabbed": 4, + "synopthdr": 4, + "synoptline": 8, + "syntab": 6, + "Main": 3, + "heckman": 2, + "p2coldent": 3, + "name": 20, + ".csv": 2, + "that": 21, + "contains": 3, + "p_end": 47, + "metadata": 5, + "survey": 14, + "worksheet": 5, + "choices": 10, + "Fields": 2, + "synopt": 16, + "drop": 1, + "attrib": 2, + "headers": 8, + "not": 8, + "field": 25, + "attributes": 10, + "with": 10, + "keep": 1, + "only": 3, + "rel": 1, + "ax": 1, + "ignore": 1, + "fields": 7, + "exist": 1, + "Lists": 1, + "ca": 1, + "oth": 1, + "er": 1, + "odkmeta##other": 1, + "other": 14, + "Stata": 5, + "value": 14, + "values": 3, + "select": 6, + "or_other": 5, + ";": 15, + "default": 8, + "max": 2, + "one": 5, + "line": 4, + "write": 1, + "each": 7, + "list": 13, + "on": 7, + "single": 1, + "Options": 1, + "replace": 7, + "overwrite": 1, + "existing": 1, + "p2colreset": 4, + "and": 18, + "are": 13, + "required.": 1, + "Change": 1, + "t": 2, + "ype": 1, + "header": 15, + "type": 7, + "attribute": 10, + "la": 2, + "bel": 2, + "label": 9, + "d": 1, + "isabled": 1, + "disabled": 4, + "li": 1, + "stname": 1, + "list_name": 6, + "maximum": 3, + "plus": 2, + "min": 2, + "minimum": 2, + "minus": 1, + "#": 6, + "for": 13, + "all": 3, + "labels": 8, + "description": 1, + "Description": 1, + "pstd": 20, + "creates": 1, + "worksheets": 1, + "XLSForm.": 1, + "The": 9, + "saved": 1, + "completes": 2, + "following": 1, + "tasks": 3, + "order": 1, + "anova": 1, + "phang2": 23, + "o": 12, + "Import": 2, + "lists": 2, + "Add": 1, + "char": 4, + "characteristics": 4, + "Split": 1, + "select_multiple": 6, + "variables": 8, + "Drop": 1, + "note": 1, + "format": 1, + "Format": 1, + "date": 1, + "time": 1, + "datetime": 1, + "Attach": 2, + "variable": 14, + "notes": 1, + "merge": 3, + "Merge": 1, + "repeat": 6, + "groups": 4, + "After": 1, + "have": 2, + "been": 1, + "split": 4, + "can": 1, + "be": 12, + "removed": 1, + "affecting": 1, + "tasks.": 1, + "User": 1, + "written": 2, + "supplements": 1, + "may": 2, + "make": 1, + "use": 3, + "any": 3, + "which": 6, + "imported": 4, + "characteristics.": 1, + "remarks": 1, + "Remarks": 1, + "uses": 3, + "helpb": 7, + "insheet": 4, + "data.": 1, + "long": 7, + "strings": 1, + "digits": 1, + "such": 2, + "simserial": 1, + "will": 9, + "even": 1, + "if": 10, + "they": 2, + "more": 1, + "than": 3, + "digits.": 1, + "As": 1, + "result": 6, + "lose": 1, + "precision": 1, + ".": 22, + "makes": 1, + "limited": 1, + "mata": 1, + "Mata": 1, + "manage": 1, + "contain": 1, + "difficult": 1, + "characters.": 2, + "starts": 1, + "definitions": 1, + "several": 1, + "macros": 1, + "these": 4, + "constants": 1, + "uses.": 1, + "For": 4, + "instance": 1, + "macro": 1, + "datemask": 1, + "varname": 1, + "constraints": 1, + "names": 16, + "Further": 1, + "files": 1, + "often": 1, + "much": 1, + "longer": 1, + "limit": 1, + "These": 2, + "differences": 1, + "convention": 1, + "lead": 1, + "three": 1, + "kinds": 1, + "problematic": 1, + "Long": 3, + "involve": 1, + "invalid": 1, + "combination": 1, + "characters": 3, + "example": 2, + "begins": 1, + "colon": 1, + "followed": 1, + "number.": 1, + "convert": 2, + "instead": 1, + "naming": 1, + "v": 6, + "concatenated": 1, + "positive": 1, + "integer": 1, + "v1": 1, + "unique": 1, + "but": 4, + "when": 1, + "converted": 3, + "truncated": 1, + "become": 3, + "duplicates.": 1, + "again": 1, + "names.": 6, + "form": 1, + "duplicates": 1, + "cannot": 2, + "chooses": 1, + "different": 1, + "Because": 1, + "problem": 2, + "recommended": 1, + "you": 1, + "If": 2, + "its": 3, + "characteristic": 2, + "odkmeta##Odk_bad_name": 1, + "Odk_bad_name": 3, + "otherwise": 1, + "Most": 1, + "depend": 1, + "There": 1, + "two": 2, + "exceptions": 1, + "variables.": 1, + "error": 4, + "or": 7, + "splitting": 2, + "would": 1, + "duplicate": 4, + "reshape": 2, + "groups.": 1, + "there": 2, + "merging": 2, + "code": 1, + "datasets.": 1, + "Where": 1, + "renaming": 2, + "left": 1, + "user.": 1, + "section": 2, + "designated": 2, + "area": 2, + "renaming.": 3, + "In": 3, + "reshaping": 1, + "group": 4, + "own": 2, + "Many": 1, + "forms": 2, + "require": 1, + "others": 1, + "few": 1, + "need": 1, + "renamed": 1, + "should": 1, + "go": 1, + "areas.": 1, + "However": 1, + "some": 1, + "usually": 1, + "because": 1, + "many": 2, + "nested": 2, + "above": 1, + "this": 1, + "case": 1, + "work": 1, + "best": 1, + "Odk_group": 1, + "Odk_name": 1, + "Odk_is_other": 2, + "Odk_geopoint": 2, + "r": 2, + "varlist": 2, + "Odk_list_name": 2, + "foreach": 1, + "var": 5, + "*search": 1, + "n/a": 1, + "know": 1, + "don": 1, + "worksheet.": 1, + "requires": 1, + "comma": 1, + "separated": 2, + "text": 1, + "file.": 1, + "Strings": 1, + "embedded": 2, + "commas": 1, + "double": 3, + "quotes": 3, + "end": 4, + "must": 2, + "enclosed": 1, + "another": 1, + "quote.": 1, + "pmore": 5, + "Each": 1, + "header.": 1, + "Use": 1, + "suboptions": 1, + "specify": 1, + "alternative": 1, + "respectively.": 1, + "All": 1, + "used.": 1, + "standardized": 1, + "follows": 1, + "replaced": 9, + "select_one": 3, + "begin_group": 1, + "begin": 2, + "end_group": 1, + "begin_repeat": 1, + "end_repeat": 1, + "addition": 1, + "specified": 1, + "attaches": 1, + "pmore2": 3, + "formed": 1, + "concatenating": 1, + "elements": 1, + "Odk_repeat": 1, + "nested.": 1, + "geopoint": 2, + "component": 1, + "Latitude": 1, + "Longitude": 1, + "Altitude": 1, + "Accuracy": 1, + "blank.": 1, + "imports": 4, + "XLSForm": 1, + "list.": 1, + "one.": 1, + "specifies": 4, + "vary": 1, + "definition": 1, + "rather": 1, + "multiple": 1, + "delimit": 1, + "#delimit": 1, + "dlgtab": 1, + "Other": 1, + "exists.": 1, + "examples": 1, + "Examples": 1, + "named": 1, + "import.do": 7, + "including": 1, + "survey.csv": 1, + "choices.csv": 1, + "txt": 6, + "Same": 3, + "previous": 3, + "command": 3, + "appears": 2, + "fieldname": 3, + "survey_fieldname.csv": 1, + "valuename": 2, + "choices_valuename.csv": 1, + "except": 1, + "hint": 2, + "dropattrib": 2, + "does": 1, + "_all": 1, + "acknowledgements": 1, + "Acknowledgements": 1, + "Lindsey": 1, + "Shaughnessy": 1, + "Innovations": 2, + "Poverty": 2, + "Action": 2, + "assisted": 1, + "almost": 1, + "aspects": 1, + "development.": 1, + "She": 1, + "collaborated": 1, + "structure": 1, + "program": 2, + "was": 1, + "very": 1, + "helpful": 1, + "tester": 1, + "contributed": 1, + "information": 1, + "about": 1, + "ODK.": 1, + "author": 1, + "Author": 1, + "mwhite@poverty": 1, + "action.org": 1, + "hello": 1, + "vers": 1, + "display": 1, + "mar2014": 1, + "Hello": 1, + "world": 1, + "inname": 1, + "outname": 1 + }, + "Shen": { + "*": 47, + "graph.shen": 1, + "-": 747, + "a": 30, + "library": 3, + "for": 12, + "graph": 52, + "definition": 1, + "and": 16, + "manipulation": 1, + "Copyright": 2, + "(": 267, + "C": 6, + ")": 250, + "Eric": 2, + "Schulte": 2, + "***": 5, + "License": 2, + "Redistribution": 2, + "use": 2, + "in": 13, + "source": 4, + "binary": 4, + "forms": 2, + "with": 8, + "or": 2, + "without": 2, + "modification": 2, + "are": 7, + "permitted": 2, + "provided": 4, + "that": 3, + "the": 29, + "following": 6, + "conditions": 6, + "met": 2, + "Redistributions": 4, + "of": 20, + "code": 2, + "must": 4, + "retain": 2, + "above": 4, + "copyright": 4, + "notice": 4, + "this": 4, + "list": 32, + "disclaimer.": 2, + "form": 2, + "reproduce": 2, + "disclaimer": 2, + "documentation": 2, + "and/or": 2, + "other": 2, + "materials": 2, + "distribution.": 2, + "THIS": 4, + "SOFTWARE": 4, + "IS": 2, + "PROVIDED": 2, + "BY": 2, + "THE": 10, + "COPYRIGHT": 4, + "HOLDERS": 2, + "AND": 8, + "CONTRIBUTORS": 4, + "ANY": 8, + "EXPRESS": 2, + "OR": 16, + "IMPLIED": 4, + "WARRANTIES": 4, + "INCLUDING": 6, + "BUT": 4, + "NOT": 4, + "LIMITED": 4, + "TO": 4, + "OF": 16, + "MERCHANTABILITY": 2, + "FITNESS": 2, + "FOR": 4, + "A": 32, + "PARTICULAR": 2, + "PURPOSE": 2, + "ARE": 2, + "DISCLAIMED.": 2, + "IN": 6, + "NO": 2, + "EVENT": 2, + "SHALL": 2, + "HOLDER": 2, + "BE": 2, + "LIABLE": 2, + "DIRECT": 2, + "INDIRECT": 2, + "INCIDENTAL": 2, + "SPECIAL": 2, + "EXEMPLARY": 2, + "CONSEQUENTIAL": 2, + "DAMAGES": 2, + "PROCUREMENT": 2, + "SUBSTITUTE": 2, + "GOODS": 2, + "SERVICES": 2, + ";": 12, + "LOSS": 2, + "USE": 4, + "DATA": 2, + "PROFITS": 2, + "BUSINESS": 2, + "INTERRUPTION": 2, + "HOWEVER": 2, + "CAUSED": 2, + "ON": 2, + "THEORY": 2, + "LIABILITY": 4, + "WHETHER": 2, + "CONTRACT": 2, + "STRICT": 2, + "TORT": 2, + "NEGLIGENCE": 2, + "OTHERWISE": 2, + "ARISING": 2, + "WAY": 2, + "OUT": 2, + "EVEN": 2, + "IF": 2, + "ADVISED": 2, + "POSSIBILITY": 2, + "SUCH": 2, + "DAMAGE.": 2, + "Commentary": 2, + "Graphs": 1, + "represented": 1, + "as": 2, + "two": 1, + "dictionaries": 1, + "one": 2, + "vertices": 17, + "edges.": 1, + "It": 1, + "is": 5, + "important": 1, + "to": 16, + "note": 1, + "dictionary": 3, + "implementation": 1, + "used": 2, + "able": 1, + "accept": 1, + "arbitrary": 1, + "data": 17, + "structures": 1, + "keys.": 1, + "This": 1, + "structure": 2, + "technically": 1, + "encodes": 1, + "hypergraphs": 1, + "generalization": 1, + "graphs": 1, + "which": 1, + "each": 1, + "edge": 32, + "may": 1, + "contain": 2, + "any": 1, + "number": 12, + ".": 1, + "Examples": 1, + "regular": 1, + "G": 25, + "hypergraph": 1, + "H": 3, + "corresponding": 1, + "given": 4, + "below.": 1, + "": 3, + "Vertices": 11, + "Edges": 9, + "+": 33, + "Graph": 65, + "hash": 8, + "|": 103, + "key": 9, + "value": 17, + "b": 13, + "c": 11, + "g": 19, + "[": 93, + "]": 91, + "d": 12, + "e": 14, + "f": 10, + "Hypergraph": 1, + "h": 3, + "i": 3, + "j": 2, + "associated": 1, + "edge/vertex": 1, + "@p": 17, + "V": 48, + "#": 4, + "E": 20, + "edges": 17, + "M": 4, + "vertex": 29, + "associations": 1, + "size": 2, + "all": 3, + "stored": 1, + "dict": 39, + "sizeof": 4, + "int": 1, + "indices": 1, + "into": 1, + "&": 1, + "Edge": 11, + "dicts": 3, + "entry": 2, + "storage": 2, + "Vertex": 3, + "Code": 1, + "require": 2, + "sequence": 2, + "datatype": 1, + "dictoinary": 1, + "vector": 4, + "symbol": 1, + "package": 2, + "add": 25, + "has": 5, + "neighbors": 8, + "connected": 21, + "components": 8, + "partition": 7, + "bipartite": 3, + "included": 2, + "from": 3, + "take": 2, + "drop": 2, + "while": 2, + "range": 1, + "flatten": 1, + "filter": 2, + "complement": 1, + "seperate": 1, + "zip": 1, + "indexed": 1, + "reduce": 3, + "mapcon": 3, + "unique": 3, + "frequencies": 1, + "shuffle": 1, + "pick": 1, + "remove": 2, + "first": 2, + "interpose": 1, + "subset": 3, + "cartesian": 1, + "product": 1, + "<-dict>": 5, + "contents": 1, + "keys": 3, + "vals": 1, + "make": 10, + "define": 34, + "X": 4, + "<-address>": 5, + "0": 1, + "create": 1, + "specified": 1, + "sizes": 2, + "}": 22, + "Vertsize": 2, + "Edgesize": 2, + "let": 9, + "absvector": 1, + "do": 8, + "address": 5, + "defmacro": 3, + "macro": 3, + "return": 4, + "taking": 1, + "optional": 1, + "N": 7, + "vert": 12, + "1": 1, + "2": 3, + "{": 15, + "get": 3, + "Value": 3, + "if": 8, + "tuple": 3, + "fst": 3, + "error": 7, + "string": 3, + "resolve": 6, + "Vector": 2, + "Index": 2, + "Place": 6, + "nth": 1, + "<-vector>": 2, + "Vert": 5, + "Val": 5, + "trap": 4, + "snd": 2, + "map": 5, + "lambda": 1, + "w": 4, + "B": 2, + "Data": 2, + "w/o": 5, + "D": 4, + "update": 5, + "an": 3, + "s": 1, + "Vs": 4, + "Store": 6, + "<": 4, + "limit": 2, + "VertLst": 2, + "/.": 4, + "Contents": 5, + "adjoin": 2, + "length": 5, + "EdgeID": 3, + "EdgeLst": 2, + "p": 1, + "boolean": 4, + "Return": 1, + "Already": 5, + "New": 5, + "Reachable": 2, + "difference": 3, + "append": 1, + "including": 1, + "itself": 1, + "fully": 1, + "Acc": 2, + "true": 1, + "_": 1, + "VS": 4, + "Component": 6, + "ES": 3, + "Con": 8, + "verts": 4, + "cons": 1, + "place": 3, + "partitions": 1, + "element": 2, + "simple": 3, + "CS": 3, + "Neighbors": 3, + "empty": 1, + "intersection": 1, + "check": 1, + "tests": 1, + "set": 1, + "chris": 6, + "patton": 2, + "eric": 1, + "nobody": 2, + "fail": 1, + "when": 1, + "wrapper": 1, + "function": 1, + "load": 1, + "JSON": 1, + "Lexer": 1, + "Read": 1, + "stream": 1, + "characters": 4, + "Whitespace": 4, + "not": 1, + "strings": 2, + "should": 2, + "be": 2, + "discarded.": 1, + "preserved": 1, + "Strings": 1, + "can": 1, + "escaped": 1, + "double": 1, + "quotes.": 1, + "e.g.": 2, + "whitespacep": 2, + "ASCII": 2, + "Space.": 1, + "All": 1, + "others": 1, + "whitespace": 7, + "table.": 1, + "Char": 4, + "member": 1, + "replace": 3, + "@s": 4, + "Suffix": 4, + "where": 2, + "Prefix": 2, + "fetch": 1, + "until": 1, + "unescaped": 1, + "doublequote": 1, + "c#34": 5, + "WhitespaceChar": 2, + "Chars": 4, + "strip": 2, + "chars": 2, + "tokenise": 1, + "JSONString": 2, + "CharList": 2, + "explode": 1, + "html.shen": 1, + "html": 2, + "generation": 1, + "functions": 1, + "shen": 1, + "The": 1, + "standard": 1, + "lisp": 1, + "conversion": 1, + "tool": 1, + "suite.": 1, + "Follows": 1, + "some": 1, + "convertions": 1, + "Clojure": 1, + "tasks": 1, + "stuff": 1, + "todo1": 1, + "today": 1, + "attributes": 1, + "AS": 1 + }, + "Mask": { + "header": 1, + "{": 10, + "img": 1, + ".logo": 1, + "src": 1, + "alt": 1, + "logo": 1, + ";": 3, + "h4": 1, + "if": 1, + "(": 3, + "currentUser": 1, + ")": 3, + ".account": 1, + "a": 1, + "href": 1, + "}": 10, + ".view": 1, + "ul": 1, + "for": 1, + "user": 1, + "index": 1, + "of": 1, + "users": 1, + "li.user": 1, + "data": 1, + "-": 3, + "id": 1, + ".name": 1, + ".count": 1, + ".date": 1, + "countdownComponent": 1, + "input": 1, + "type": 1, + "text": 1, + "dualbind": 1, + "value": 1, + "button": 1, + "x": 2, + "signal": 1, + "h5": 1, + "animation": 1, + "slot": 1, + "@model": 1, + "@next": 1, + "footer": 1, + "bazCompo": 1 + }, + "SAS": { + "libname": 1, + "source": 1, + "data": 6, + "work.working_copy": 5, + ";": 22, + "set": 3, + "source.original_file.sas7bdat": 1, + "run": 6, + "if": 2, + "Purge": 1, + "then": 2, + "delete": 1, + "ImportantVariable": 1, + ".": 1, + "MissingFlag": 1, + "proc": 2, + "surveyselect": 1, + "work.data": 1, + "out": 2, + "work.boot": 2, + "method": 1, + "urs": 1, + "reps": 1, + "seed": 2, + "sampsize": 1, + "outhits": 1, + "samplingunit": 1, + "Site": 1, + "PROC": 1, + "MI": 1, + "work.bootmi": 2, + "nimpute": 1, + "round": 1, + "By": 2, + "Replicate": 2, + "VAR": 1, + "Variable1": 2, + "Variable2": 2, + "logistic": 1, + "descending": 1, + "_Imputation_": 1, + "model": 1, + "Outcome": 1, + "/": 1, + "risklimits": 1 + }, + "Xtend": { + "package": 2, + "example6": 1, + "import": 7, + "org.junit.Test": 2, + "static": 4, + "org.junit.Assert.*": 2, + "java.io.FileReader": 1, + "java.util.Set": 1, + "extension": 2, + "com.google.common.io.CharStreams.*": 1, + "class": 4, + "Movies": 1, + "{": 14, + "@Test": 7, + "def": 7, + "void": 7, + "numberOfActionMovies": 1, + "(": 42, + ")": 42, + "assertEquals": 14, + "movies.filter": 2, + "[": 9, + "categories.contains": 1, + "]": 9, + ".size": 2, + "}": 13, + "yearOfBestMovieFrom80ies": 1, + ".contains": 1, + "year": 2, + ".sortBy": 1, + "rating": 3, + ".last.year": 1, + "sumOfVotesOfTop2": 1, + "val": 9, + "long": 2, + "movies": 3, + "movies.sortBy": 1, + "-": 5, + ".take": 1, + ".map": 1, + "numberOfVotes": 2, + ".reduce": 1, + "a": 2, + "b": 2, + "|": 2, + "+": 6, + "_229": 1, + "new": 2, + "FileReader": 1, + ".readLines.map": 1, + "line": 1, + "segments": 1, + "line.split": 1, + ".iterator": 2, + "return": 1, + "Movie": 2, + "segments.next": 4, + "Integer": 1, + "parseInt": 1, + "Double": 1, + "parseDouble": 1, + "Long": 1, + "parseLong": 1, + "segments.toSet": 1, + "@Data": 1, + "String": 2, + "title": 1, + "int": 1, + "double": 2, + "Set": 1, + "": 1, + "categories": 1, + "example2": 1, + "BasicExpressions": 2, + "literals": 5, + "//": 11, + "string": 1, + "work": 1, + "with": 2, + "single": 1, + "or": 1, + "quotes": 1, + "number": 1, + "big": 1, + "decimals": 1, + "in": 2, + "this": 1, + "case": 1, + "*": 1, + "bd": 3, + "boolean": 1, + "true": 1, + "false": 1, + "getClass": 1, + "typeof": 1, + "collections": 2, + "There": 1, + "are": 1, + "various": 1, + "methods": 2, + "to": 1, + "create": 1, + "and": 1, + "numerous": 1, + "which": 1, + "make": 1, + "working": 1, + "them": 1, + "convenient.": 1, + "list": 1, + "newArrayList": 2, + "list.map": 1, + "toUpperCase": 1, + ".head": 1, + "set": 1, + "newHashSet": 1, + "set.filter": 1, + "it": 2, + "map": 1, + "newHashMap": 1, + "map.get": 1, + "controlStructures": 1, + "looks": 1, + "like": 1, + "Java": 1, + "if": 1, + ".length": 1, + "but": 1, + "foo": 1, + "bar": 1, + "Never": 2, + "happens": 3, + "text": 2, + "never": 1, + "s": 1, + "cascades.": 1, + "Object": 1, + "someValue": 2, + "switch": 1, + "Number": 1, + "loops": 1, + "for": 2, + "loop": 2, + "var": 1, + "counter": 8, + "i": 4, + "..": 1, + "while": 2, + "iterator": 1, + "iterator.hasNext": 1, + "iterator.next": 1 }, "Arduino": { "void": 2, @@ -2412,72 +42301,32 @@ "loop": 1, "Serial.print": 1 }, - "AsciiDoc": { - "Gregory": 2, - "Rom": 2, - "has": 2, - "written": 2, - "an": 2, - "AsciiDoc": 3, - "plugin": 2, - "for": 2, - "the": 2, - "Redmine": 2, - "project": 2, - "management": 2, - "application.": 2, - "https": 1, - "//github.com/foo": 1, - "-": 4, - "users/foo": 1, - "vicmd": 1, - "gif": 1, - "tag": 1, - "rom": 2, - "[": 2, - "]": 2, - "end": 1, - "berschrift": 1, - "*": 4, - "Codierungen": 1, - "sind": 1, - "verr": 1, - "ckt": 1, - "auf": 1, - "lteren": 1, - "Versionen": 1, - "von": 1, - "Ruby": 1, - "Home": 1, - "Page": 1, - "Example": 1, - "Articles": 1, - "Item": 6, - "Document": 1, - "Title": 1, - "Doc": 1, - "Writer": 1, - "": 1, - "idprefix": 1, - "id_": 1, - "Preamble": 1, - "paragraph.": 4, - "NOTE": 1, - "This": 1, - "is": 1, - "test": 1, - "only": 1, - "a": 1, - "test.": 1, - "Section": 3, - "A": 2, - "*Section": 3, - "A*": 2, - "Subsection": 1, - "B": 2, - "B*": 1, - ".Section": 1, - "list": 1 + "XProc": { + "": 1, + "version=": 2, + "encoding=": 1, + "": 1, + "xmlns": 2, + "p=": 1, + "c=": 1, + "": 1, + "port=": 2, + "": 1, + "": 1, + "Hello": 1, + "world": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1 + }, + "Haml": { + "%": 1, + "p": 1, + "Hello": 1, + "World": 1 }, "AspectJ": { "package": 2, @@ -2563,1995 +42412,1350 @@ "_cache.put": 1, "_cache.size": 1 }, - "Assembly": { - ";": 20, - "flat": 4, - "assembler": 6, - "core": 2, - "Copyright": 4, - "(": 13, - "c": 4, - ")": 6, - "-": 87, - "Tomasz": 4, - "Grysztar.": 4, - "All": 4, - "rights": 4, - "reserved.": 4, - "xor": 52, - "eax": 510, - "mov": 1253, - "[": 2026, - "stub_size": 1, - "]": 2026, - "current_pass": 16, - "ax": 87, - "resolver_flags": 1, - "number_of_sections": 1, - "actual_fixups_size": 1, - "assembler_loop": 2, - "labels_list": 3, - "tagged_blocks": 23, - "additional_memory": 6, - "free_additional_memory": 2, - "additional_memory_end": 9, - "structures_buffer": 9, - "esi": 619, - "source_start": 1, - "edi": 250, - "code_start": 2, - "dword": 87, - "adjustment": 4, - "+": 232, - "addressing_space": 17, - "error_line": 16, - "counter": 13, - "format_flags": 2, - "number_of_relocations": 1, - "undefined_data_end": 4, - "file_extension": 1, - "next_pass_needed": 16, - "al": 1174, - "output_format": 3, - "adjustment_sign": 2, - "code_type": 106, - "call": 845, - "init_addressing_space": 6, - "pass_loop": 2, - "assemble_line": 3, - "jnc": 11, - "cmp": 1088, - "je": 485, - "pass_done": 2, - "sub": 64, - "h": 376, - "current_line": 24, - "jmp": 450, - "missing_end_directive": 7, - "close_pass": 1, - "check_symbols": 2, - "memory_end": 7, - "jae": 34, - "symbols_checked": 2, - "test": 95, - "byte": 549, - "jz": 107, - "symbol_defined_ok": 5, - "cx": 42, - "jne": 485, - "and": 50, - "not": 42, - "or": 194, - "use_prediction_ok": 5, - "jnz": 125, - "check_use_prediction": 2, - "use_misprediction": 3, - "check_next_symbol": 5, - "define_misprediction": 4, - "check_define_prediction": 2, - "add": 76, - "LABEL_STRUCTURE_SIZE": 1, - "next_pass": 3, - "assemble_ok": 2, - "error": 7, - "undefined_symbol": 2, - "error_confirmed": 3, - "error_info": 2, - "error_handler": 3, - "esp": 14, - "ret": 70, - "inc": 87, - "passes_limit": 3, - "code_cannot_be_generated": 1, - "create_addressing_space": 1, - "ebx": 336, - "Ah": 25, - "illegal_instruction": 48, - "Ch": 11, - "jbe": 11, - "out_of_memory": 19, - "ja": 28, - "lods": 366, - "assemble_instruction": 2, - "jb": 34, - "source_end": 2, - "define_label": 2, - "define_constant": 2, - "label_addressing_space": 2, - "Fh": 73, - "new_line": 2, - "code_type_setting": 2, - "segment_prefix": 2, - "instruction_assembled": 138, - "prefixed_instruction": 11, - "symbols_file": 4, - "continue_line": 8, - "line_assembled": 3, - "invalid_use_of_symbol": 17, - "reserved_word_used_as_symbol": 6, - "label_size": 5, - "make_label": 3, - "edx": 219, - "cl": 42, - "ebp": 49, - "ds": 21, - "sbb": 9, - "jp": 2, - "label_value_ok": 2, - "recoverable_overflow": 4, - "address_sign": 4, - "make_virtual_label": 2, - "xchg": 31, - "ch": 55, - "shr": 30, - "neg": 4, - "setnz": 5, - "ah": 229, - "finish_label": 2, - "setne": 14, - "finish_label_symbol": 2, - "b": 30, - "label_symbol_ok": 2, - "new_label": 2, - "symbol_already_defined": 3, - "btr": 2, - "jc": 28, - "requalified_label": 2, - "label_made": 4, - "push": 150, - "get_constant_value": 4, - "dl": 58, - "size_override": 7, - "get_value": 2, - "pop": 99, - "bl": 124, - "ecx": 153, - "constant_referencing_mode_ok": 2, - "value_type": 42, - "make_constant": 2, - "value_sign": 3, - "constant_symbol_ok": 2, - "symbol_identifier": 4, - "new_constant": 2, - "redeclare_constant": 2, - "requalified_constant": 2, - "make_addressing_space_label": 3, - "dx": 27, - "operand_size": 121, - "operand_prefix": 9, - "opcode_prefix": 30, - "rex_prefix": 9, - "vex_required": 2, - "vex_register": 1, - "immediate_size": 9, - "instruction_handler": 32, - "movzx": 13, - "word": 79, - "extra_characters_on_line": 8, - "clc": 11, - "dec": 30, - "stc": 9, - "org_directive": 1, - "invalid_argument": 28, - "invalid_value": 21, - "get_qword_value": 5, - "in_virtual": 2, - "org_space_ok": 2, - "close_virtual_addressing_space": 3, - "org_value_ok": 2, - "bts": 1, - "label_directive": 1, - "get_label_size": 2, - "label_size_ok": 2, - "get_free_label_value": 2, - "get_address_value": 3, - "bh": 34, - "bp": 2, - "shl": 17, - "bx": 8, - "make_free_label": 1, - "address_symbol": 2, - "load_directive": 1, - "load_size_ok": 2, - "value": 38, - "get_data_point": 3, - "value_loaded": 2, - "rep": 7, - "movs": 8, - "get_data_address": 5, - "addressing_space_unavailable": 3, - "symbol_out_of_scope": 1, - "get_addressing_space": 3, - "store_label_reference": 1, - "calculate_relative_offset": 2, - "data_address_type_ok": 2, - "adc": 9, - "bad_data_address": 3, - "store_directive": 1, - "sized_store": 2, - "get_byte_value": 23, - "store_value_ok": 2, - "undefined_data_start": 3, - "display_directive": 2, - "display_byte": 2, - "stos": 107, - "display_next": 2, - "show_display_buffer": 2, - "display_done": 3, - "display_messages": 2, - "skip_block": 2, - "display_block": 4, - "times_directive": 1, - "get_count_value": 6, - "zero_times": 3, - "times_argument_ok": 2, - "counter_limit": 7, - "times_loop": 2, - "stack_overflow": 2, - "stack_limit": 2, - "times_done": 2, - "skip_symbol": 5, - "virtual_directive": 3, - "virtual_at_current": 2, - "set_virtual": 2, - "allocate_structure_data": 5, - "find_structure_data": 6, - "scan_structures": 2, - "no_such_structure": 2, - "structure_data_found": 2, - "end_virtual": 2, - "unexpected_instruction": 18, - "remove_structure_data": 7, - "lea": 8, - "std": 2, - "cld": 2, - "addressing_space_closed": 2, - "virtual_byte_ok": 2, - "virtual_word_ok": 2, - "repeat_directive": 7, - "zero_repeat": 2, - "end_repeat": 2, - "continue_repeating": 2, - "stop_repeat": 2, - "find_end_repeat": 4, - "find_structure_end": 5, - "while_directive": 7, - "do_while": 2, - "calculate_logical_expression": 3, - "while_true": 2, - "stop_while": 2, - "find_end_while": 3, - "end_while": 2, - "too_many_repeats": 1, - "if_directive": 13, - "if_true": 2, - "find_else": 4, - "else_true": 3, - "make_if_structure": 2, - "else_directive": 3, - "found_else": 2, - "skip_else": 3, - "find_end_if": 3, - "end_if": 2, - "else_found": 2, - "find_end_directive": 10, - "no_end_directive": 2, - "skip_labels": 2, - "labels_ok": 2, - "prefix_instruction": 2, - "skip_repeat": 2, - "skip_while": 2, - "skip_if": 2, - "structure_end": 4, - "end_directive": 2, - "skip_if_block": 4, - "if_block_skipped": 2, - "skip_after_else": 3, - "data_directive": 1, - "end_data": 1, - "break_directive": 1, - "find_breakable_structure": 4, - "break_repeat": 2, - "break_while": 2, - "break_if": 2, - "data_bytes": 1, - "define_data": 8, - "get_byte": 2, - "undefined_data": 7, - "get_string": 2, - "mark_undefined_data": 2, - "undefined_data_ok": 2, - "simple_data_value": 3, - "skip_expression": 1, - "duplicate_zero_times": 2, - "duplicate_single_data_value": 3, - "duplicate_data": 2, - "duplicated_values": 2, - "near": 3, - "data_defined": 5, - "skip_single_data_value": 2, - "skip_data_value": 2, - "data_unicode": 1, - "base_code": 195, - "define_words": 2, - "data_words": 1, - "get_word": 2, - "scas": 10, - "word_data_value": 2, - "word_string": 2, - "get_word_value": 19, - "mark_relocation": 26, - "jecxz": 1, - "word_string_ok": 2, - "ecx*2": 1, - "copy_word_string": 2, - "loop": 2, - "data_dwords": 1, - "get_dword": 2, - "get_dword_value": 13, - "complex_dword": 2, - "invalid_operand": 239, - "data_pwords": 1, - "get_pword": 2, - "get_pword_value": 1, - "complex_pword": 2, - "data_qwords": 1, - "get_qword": 2, - "data_twords": 1, - "get_tword": 2, - "complex_tword": 2, - "fp_zero_tword": 2, - "FFFh": 3, - "jo": 2, - "value_out_of_range": 10, - "jge": 5, - "jg": 1, - "tword_exp_ok": 3, - "large_shift": 2, - "shrd": 1, - "tword_mantissa_shift_done": 2, - "store_shifted_mantissa": 2, - "data_file": 2, - "open_binary_file": 2, - "lseek": 5, - "position_ok": 2, - "size_ok": 2, - "read": 3, - "error_reading_file": 1, - "close": 3, - "find_current_source_path": 2, - "get_current_path": 3, - "lodsb": 12, - "stosb": 6, - "cut_current_path": 1, - "current_path_ok": 1, - "/": 1, - ".": 7, - "invalid_align_value": 3, - "section_not_aligned_enough": 4, - "make_alignment": 3, - "pe_alignment": 2, - "nops": 2, - "reserved_data": 2, - "nops_stosb_ok": 2, - "nops_stosw_ok": 2, - "err_directive": 1, - "invoked_error": 2, - "assert_directive": 1, - "assertion_failed": 1, - "interface": 2, - "for": 2, - "Win32": 2, - "format": 1, - "PE": 1, - "console": 1, - "section": 4, + "RDoc": { + "RDoc": 7, + "-": 9, + "Ruby": 4, + "Documentation": 2, + "System": 1, + "home": 1, + "https": 3, + "//github.com/rdoc/rdoc": 1, + "rdoc": 7, + "http": 1, + "//docs.seattlerb.org/rdoc": 1, + "bugs": 1, + "//github.com/rdoc/rdoc/issues": 1, "code": 1, - "readable": 4, - "executable": 1, - "start": 1, - "con_handle": 8, - "STD_OUTPUT_HANDLE": 2, - "_logo": 2, - "display_string": 19, - "get_params": 2, - "information": 2, - "init_memory": 2, - "_memory_prefix": 2, - "memory_start": 4, - "display_number": 8, - "_memory_suffix": 2, - "GetTickCount": 3, - "start_time": 3, - "preprocessor": 1, - "parser": 1, - "formatter": 1, - "display_user_messages": 3, - "_passes_suffix": 2, - "div": 8, - "display_bytes_count": 2, - "display_character": 6, - "_seconds_suffix": 2, - "written_size": 1, - "_bytes_suffix": 2, - "exit_program": 5, - "_usage": 2, - "input_file": 4, - "output_file": 3, - "memory_setting": 4, - "GetCommandLine": 2, - "params": 2, - "find_command_start": 2, - "skip_quoted_name": 3, - "skip_name": 2, - "find_param": 7, - "all_params": 5, - "option_param": 2, - "Dh": 19, - "get_output_file": 2, - "process_param": 3, - "bad_params": 11, - "string_param": 3, - "copy_param": 2, - "param_end": 6, - "string_param_end": 2, - "memory_option": 4, - "passes_option": 4, - "symbols_option": 3, - "get_option_value": 3, - "get_option_digit": 2, - "option_value_ok": 4, - "invalid_option_value": 5, - "imul": 1, - "find_symbols_file_name": 2, - "include": 15, - "data": 3, - "writeable": 2, - "_copyright": 1, - "db": 35, - "VERSION_STRING": 1, - "align": 1, - "dd": 22, - "bytes_count": 8, - "displayed_count": 4, - "character": 3, - "last_displayed": 5, - "rb": 4, - "options": 1, - "buffer": 14, - "stack": 1, - "import": 1, - "rva": 16, - "kernel_name": 2, - "kernel_table": 2, - "ExitProcess": 2, - "_ExitProcess": 2, - "CreateFile": 3, - "_CreateFileA": 2, - "ReadFile": 2, - "_ReadFile": 2, - "WriteFile": 6, - "_WriteFile": 2, - "CloseHandle": 2, - "_CloseHandle": 2, - "SetFilePointer": 2, - "_SetFilePointer": 2, - "_GetCommandLineA": 2, - "GetEnvironmentVariable": 2, - "_GetEnvironmentVariable": 2, - "GetStdHandle": 5, - "_GetStdHandle": 2, - "VirtualAlloc": 2, - "_VirtualAlloc": 2, - "VirtualFree": 2, - "_VirtualFree": 2, - "_GetTickCount": 2, - "GetSystemTime": 2, - "_GetSystemTime": 2, - "GlobalMemoryStatus": 2, - "_GlobalMemoryStatus": 2, - "dw": 14, - "fixups": 1, - "discardable": 1, - "CREATE_NEW": 1, - "CREATE_ALWAYS": 2, - "OPEN_EXISTING": 2, - "OPEN_ALWAYS": 1, - "TRUNCATE_EXISTING": 1, - "FILE_SHARE_READ": 3, - "FILE_SHARE_WRITE": 1, - "FILE_SHARE_DELETE": 1, - "GENERIC_READ": 2, - "GENERIC_WRITE": 2, - "STD_INPUT_HANDLE": 1, - "FFFFFFF6h": 1, - "FFFFFFF5h": 1, - "STD_ERROR_HANDLE": 3, - "FFFFFFF4h": 1, - "MEM_COMMIT": 2, - "MEM_RESERVE": 1, - "MEM_DECOMMIT": 1, - "MEM_RELEASE": 2, - "MEM_FREE": 1, - "MEM_PRIVATE": 1, - "MEM_MAPPED": 1, - "MEM_RESET": 1, - "MEM_TOP_DOWN": 1, - "PAGE_NOACCESS": 1, - "PAGE_READONLY": 1, - "PAGE_READWRITE": 2, - "PAGE_WRITECOPY": 1, - "PAGE_EXECUTE": 1, - "PAGE_EXECUTE_READ": 1, - "PAGE_EXECUTE_READWRITE": 1, - "PAGE_EXECUTE_WRITECOPY": 1, - "PAGE_GUARD": 1, - "PAGE_NOCACHE": 1, - "allocate_memory": 4, - "jl": 13, - "large_memory": 3, - "not_enough_memory": 2, - "do_exit": 2, - "get_environment_variable": 1, - "buffer_for_variable_ok": 2, - "open": 2, - "file_error": 6, - "create": 1, - "write": 1, - "repne": 1, - "scasb": 1, - "display_loop": 2, - "display_digit": 3, - "digit_ok": 2, - "line_break_ok": 4, - "make_line_break": 2, - "A0Dh": 2, - "D0Ah": 1, - "take_last_two_characters": 2, - "block_displayed": 2, - "block_ok": 2, - "fatal_error": 1, - "error_prefix": 3, - "error_suffix": 3, - "FFh": 4, - "assembler_error": 1, - "get_error_lines": 2, - "get_next_error_line": 2, - "display_error_line": 3, - "find_definition_origin": 2, - "line_number_start": 3, - "FFFFFFFh": 2, - "line_number_ok": 2, - "line_data_start": 2, - "line_data_displayed": 2, - "get_line_data": 2, - "display_line_data": 5, - "cr_lf": 2, - "make_timestamp": 1, - "mul": 5, - "months_correction": 2, - "day_correction_ok": 4, - "day_correction": 2, - "simple_instruction_except64": 1, - "simple_instruction": 6, - "simple_instruction_only64": 1, - "simple_instruction_16bit_except64": 1, - "simple_instruction_16bit": 2, - "size_prefix": 3, - "simple_instruction_32bit_except64": 1, - "simple_instruction_32bit": 6, - "iret_instruction": 1, - "simple_instruction_64bit": 2, - "simple_extended_instruction_64bit": 1, - "simple_extended_instruction": 1, - "segment_register": 7, - "store_segment_prefix": 1, - "int_instruction": 1, - "get_size_operator": 137, - "invalid_operand_size": 131, - "jns": 1, - "int_imm_ok": 2, - "CDh": 1, - "aa_instruction": 1, - "aa_store": 2, - "basic_instruction": 1, - "basic_reg": 2, - "basic_mem": 1, - "get_address": 62, - "basic_mem_imm": 2, - "basic_mem_reg": 1, - "convert_register": 60, - "postbyte_register": 137, - "instruction_ready": 72, - "operand_autodetect": 47, - "store_instruction": 3, - "basic_mem_imm_nosize": 2, - "basic_mem_imm_8bit": 2, - "basic_mem_imm_16bit": 2, - "basic_mem_imm_32bit": 2, - "basic_mem_imm_64bit": 1, - "size_declared": 17, - "long_immediate_not_encodable": 14, - "operand_64bit": 18, - "get_simm32": 10, - "basic_mem_imm_32bit_ok": 2, - "recoverable_unknown_size": 19, - "store_instruction_with_imm8": 11, - "operand_16bit": 25, - "basic_mem_imm_16bit_store": 3, - "basic_mem_simm_8bit": 5, - "store_instruction_with_imm16": 4, - "operand_32bit": 27, - "basic_mem_imm_32bit_store": 3, - "store_instruction_with_imm32": 4, - "cdq": 11, - "get_simm32_ok": 2, - "basic_reg_reg": 2, - "basic_reg_imm": 2, - "basic_reg_mem": 1, - "basic_reg_mem_8bit": 2, - "nomem_instruction_ready": 53, - "store_nomem_instruction": 19, - "basic_reg_imm_8bit": 2, - "basic_reg_imm_16bit": 2, - "basic_reg_imm_32bit": 2, - "basic_reg_imm_64bit": 1, - "basic_reg_imm_32bit_ok": 2, - "basic_al_imm": 2, - "basic_reg_imm_16bit_store": 3, - "basic_reg_simm_8bit": 5, - "basic_ax_imm": 2, - "basic_store_imm_16bit": 2, - "store_instruction_code": 26, - "basic_reg_imm_32bit_store": 3, - "basic_eax_imm": 2, - "basic_store_imm_32bit": 2, - "ignore_unknown_size": 2, - "operand_size_not_specified": 1, - "single_operand_instruction": 1, - "F6h": 4, - "single_reg": 2, - "single_mem": 1, - "single_mem_8bit": 2, - "single_mem_nosize": 2, - "single_reg_8bit": 2, - "mov_instruction": 1, - "mov_reg": 2, - "mov_mem": 1, - "mov_mem_imm": 2, - "mov_mem_reg": 1, - "mov_mem_general_reg": 2, - "mov_mem_sreg": 2, - "mov_mem_reg_8bit": 2, - "mov_mem_ax": 2, - "mov_mem_al": 1, - "mov_mem_address16_al": 3, - "mov_mem_address32_al": 3, - "mov_mem_address64_al": 3, - "invalid_address_size": 18, - "store_segment_prefix_if_necessary": 17, - "address_32bit_prefix": 11, - "A2h": 3, - "store_mov_address32": 4, - "store_address_32bit_value": 1, - "address_16bit_prefix": 11, - "store_mov_address16": 4, - "invalid_address": 32, - "store_mov_address64": 4, - "store_address_64bit_value": 1, - "mov_mem_address16_ax": 3, - "mov_mem_address32_ax": 3, - "mov_mem_address64_ax": 3, - "A3h": 3, - "mov_mem_sreg_store": 2, - "mov_mem_imm_nosize": 2, - "mov_mem_imm_8bit": 2, - "mov_mem_imm_16bit": 2, - "mov_mem_imm_32bit": 2, - "mov_mem_imm_64bit": 1, - "mov_mem_imm_32bit_store": 2, - "C6h": 1, - "C7h": 4, - "F0h": 7, - "mov_sreg": 2, - "mov_reg_mem": 2, - "mov_reg_imm": 2, - "mov_reg_reg": 1, - "mov_reg_sreg": 2, - "mov_reg_reg_8bit": 2, - "mov_reg_creg": 2, - "mov_reg_dreg": 2, - "mov_reg_treg": 2, - "mov_reg_sreg64": 2, - "mov_reg_sreg32": 2, - "mov_reg_sreg_store": 3, - "extended_code": 73, - "mov_reg_xrx": 3, - "mov_reg_xrx_64bit": 2, - "mov_reg_xrx_store": 3, - "mov_reg_mem_8bit": 2, - "mov_ax_mem": 2, - "mov_al_mem": 2, - "mov_al_mem_address16": 3, - "mov_al_mem_address32": 3, - "mov_al_mem_address64": 3, - "A0h": 4, - "mov_ax_mem_address16": 3, - "mov_ax_mem_address32": 3, - "mov_ax_mem_address64": 3, - "A1h": 4, - "mov_reg_imm_8bit": 2, - "mov_reg_imm_16bit": 2, - "mov_reg_imm_32bit": 2, - "mov_reg_imm_64bit": 1, - "mov_reg_imm_64bit_store": 3, - "mov_reg_64bit_imm_32bit": 2, - "B8h": 3, - "store_mov_reg_imm_code": 5, - "B0h": 5, - "mov_store_imm_32bit": 2, - "mov_reg_imm_prefix_ok": 2, - "mov_creg": 2, - "mov_dreg": 2, - "mov_treg": 2, - "mov_sreg_mem": 2, - "mov_sreg_reg": 1, - "mov_sreg_reg_size_ok": 2, - "Eh": 8, - "mov_sreg_mem_size_ok": 2, - "mov_xrx": 3, - "mov_xrx_64bit": 2, - "mov_xrx_store": 4, - "test_instruction": 1, - "test_reg": 2, - "test_mem": 1, - "test_mem_imm": 2, - "test_mem_reg": 2, - "test_mem_reg_8bit": 2, - "test_mem_imm_nosize": 2, - "test_mem_imm_8bit": 2, - "test_mem_imm_16bit": 2, - "test_mem_imm_32bit": 2, - "test_mem_imm_64bit": 1, - "test_mem_imm_32bit_store": 2, - "F7h": 5, - "test_reg_mem": 3, - "test_reg_imm": 2, - "test_reg_reg": 1, - "test_reg_reg_8bit": 2, - "test_reg_imm_8bit": 2, - "test_reg_imm_16bit": 2, - "test_reg_imm_32bit": 2, - "test_reg_imm_64bit": 1, - "test_reg_imm_32bit_store": 2, - "test_al_imm": 2, - "A8h": 1, - "test_ax_imm": 2, - "A9h": 2, - "test_eax_imm": 2, - "test_reg_mem_8bit": 2, - "xchg_instruction": 1, - "xchg_reg": 2, - "xchg_mem": 1, - "xchg_reg_reg": 1, - "xchg_reg_reg_8bit": 2, - "xchg_ax_reg": 2, - "xchg_reg_reg_store": 3, - "xchg_ax_reg_ok": 3, - "xchg_ax_reg_store": 2, - "push_instruction": 1, - "push_size": 9, - "push_next": 2, - "push_reg": 2, - "push_imm": 2, - "push_mem": 1, - "push_mem_16bit": 3, - "push_mem_32bit": 3, - "push_mem_64bit": 3, - "push_mem_store": 4, - "push_done": 5, - "push_sreg": 2, - "push_reg_ok": 2, - "push_reg_16bit": 2, - "push_reg_32bit": 2, - "push_reg_64bit": 1, - "push_reg_store": 5, - "dh": 37, - "push_sreg16": 3, - "push_sreg32": 3, - "push_sreg64": 3, - "push_sreg_store": 4, - "push_sreg_386": 2, - "push_imm_size_ok": 3, - "push_imm_16bit": 2, - "push_imm_32bit": 2, - "push_imm_64bit": 2, - "push_imm_optimized_16bit": 3, - "push_imm_optimized_32bit": 3, - "push_imm_optimized_64bit": 2, - "push_imm_32bit_store": 8, - "push_imm_8bit": 3, - "push_imm_16bit_store": 4, - "pop_instruction": 1, - "pop_next": 2, - "pop_reg": 2, - "pop_mem": 1, - "pop_mem_16bit": 3, - "pop_mem_32bit": 3, - "pop_mem_64bit": 3, - "pop_mem_store": 4, - "pop_done": 3, - "pop_sreg": 2, - "pop_reg_ok": 2, - "pop_reg_16bit": 2, - "pop_reg_32bit": 2, - "pop_reg_64bit": 2, - "pop_reg_store": 5, - "pop_cs": 2, - "pop_sreg16": 3, - "pop_sreg32": 3, - "pop_sreg64": 3, - "pop_sreg_store": 4, - "pop_sreg_386": 2, - "pop_cs_store": 3, - "inc_instruction": 1, - "inc_reg": 2, - "inc_mem": 2, - "inc_mem_8bit": 2, - "inc_mem_nosize": 2, - "FEh": 2, - "inc_reg_8bit": 2, - "inc_reg_long_form": 2, - "set_instruction": 1, - "set_reg": 2, - "set_mem": 1, - "arpl_instruction": 1, - "arpl_reg": 2, - "bound_instruction": 1, - "bound_store": 2, - "enter_instruction": 1, - "enter_imm16_size_ok": 2, - "enter_imm16_ok": 2, - "js": 3, - "enter_imm8_size_ok": 2, - "enter_imm8_ok": 2, - "C8h": 2, - "ret_instruction_only64": 1, - "ret_instruction": 5, - "ret_instruction_32bit_except64": 1, - "ret_instruction_32bit": 1, - "ret_instruction_16bit": 1, - "retf_instruction": 1, - "ret_instruction_64bit": 1, - "simple_ret": 4, - "ret_imm": 3, - "ret_imm_ok": 2, - "ret_imm_store": 2, - "lea_instruction": 1, - "ls_instruction": 1, - "les_instruction": 2, - "lds_instruction": 2, - "ls_code_ok": 2, - "C4h": 1, - "ls_short_code": 2, - "C5h": 2, - "ls_16bit": 2, - "ls_32bit": 2, - "ls_64bit": 2, - "sh_instruction": 1, - "sh_reg": 2, - "sh_mem": 1, - "sh_mem_imm": 2, - "sh_mem_reg": 1, - "sh_mem_cl_8bit": 2, - "sh_mem_cl_nosize": 2, - "D3h": 2, - "D2h": 2, - "sh_mem_imm_size_ok": 2, - "sh_mem_imm_8bit": 2, - "sh_mem_imm_nosize": 2, - "sh_mem_1": 2, - "C1h": 2, - "D1h": 2, - "sh_mem_1_8bit": 2, - "C0h": 2, - "D0h": 2, - "sh_reg_imm": 2, - "sh_reg_reg": 1, - "sh_reg_cl_8bit": 2, - "sh_reg_imm_size_ok": 2, - "sh_reg_imm_8bit": 2, - "sh_reg_1": 2, - "sh_reg_1_8bit": 2, - "shd_instruction": 1, - "shd_reg": 2, - "shd_mem": 1, - "shd_mem_reg_imm": 2, - "shd_mem_reg_imm_size_ok": 2, - "shd_reg_reg_imm": 2, - "shd_reg_reg_imm_size_ok": 2, - "movx_instruction": 1, - "movx_reg": 2, - "movx_unknown_size": 2, - "movx_mem_store": 3, - "movx_reg_8bit": 2, - "movx_reg_16bit": 2, - "movsxd_instruction": 1, - "movsxd_reg": 2, - "movsxd_mem_store": 2, - "bt_instruction": 1, - "bt_reg": 2, - "bt_mem_imm": 3, - "bt_mem_reg": 2, - "bt_mem_imm_size_ok": 2, - "bt_mem_imm_nosize": 2, - "bt_mem_imm_store": 2, - "BAh": 2, - "bt_reg_imm": 3, - "bt_reg_reg": 2, - "bt_reg_imm_size_ok": 2, - "bt_reg_imm_store": 1, - "bs_instruction": 1, - "get_reg_mem": 2, - "bs_reg_reg": 2, - "get_reg_reg": 2, - "imul_instruction": 1, - "imul_reg": 2, - "imul_mem": 1, - "imul_mem_8bit": 2, - "imul_mem_nosize": 2, - "imul_reg_": 2, - "imul_reg_8bit": 2, - "imul_reg_imm": 3, - "imul_reg_noimm": 2, - "imul_reg_reg": 2, - "imul_reg_mem": 1, - "imul_reg_mem_imm": 2, - "AFh": 2, - "imul_reg_mem_imm_16bit": 2, - "imul_reg_mem_imm_32bit": 2, - "imul_reg_mem_imm_64bit": 1, - "imul_reg_mem_imm_32bit_ok": 2, - "imul_reg_mem_imm_16bit_store": 4, - "imul_reg_mem_imm_8bit_store": 3, - "imul_reg_mem_imm_32bit_store": 4, - "Bh": 11, - "imul_reg_reg_imm": 3, - "imul_reg_reg_imm_16bit": 2, - "imul_reg_reg_imm_32bit": 2, - "imul_reg_reg_imm_64bit": 1, - "imul_reg_reg_imm_32bit_ok": 2, - "imul_reg_reg_imm_16bit_store": 4, - "imul_reg_reg_imm_8bit_store": 3, - "imul_reg_reg_imm_32bit_store": 4, - "in_instruction": 1, - "in_imm": 2, - "in_reg": 2, - "in_al_dx": 2, - "in_ax_dx": 2, - "EDh": 1, - "ECh": 1, - "in_imm_size_ok": 2, - "in_al_imm": 2, - "in_ax_imm": 2, - "E5h": 1, - "E4h": 1, - "out_instruction": 1, - "out_imm": 2, - "out_dx_al": 2, - "out_dx_ax": 2, - "EFh": 1, - "EEh": 1, - "out_imm_size_ok": 2, - "out_imm_al": 2, - "out_imm_ax": 2, - "E7h": 1, - "E6h": 1, - "call_instruction": 1, - "E8h": 3, - "process_jmp": 2, - "jmp_instruction": 1, - "E9h": 1, - "EAh": 1, - "get_jump_operator": 3, - "jmp_imm": 2, - "jmp_reg": 2, - "jmp_mem": 1, - "jump_type": 14, - "jmp_mem_size_not_specified": 2, - "jmp_mem_16bit": 3, - "jmp_mem_32bit": 2, - "jmp_mem_48bit": 2, - "jmp_mem_64bit": 2, - "jmp_mem_80bit": 2, - "jmp_mem_far": 2, - "jmp_mem_near": 2, - "jmp_mem_near_32bit": 3, - "jmp_mem_far_32bit": 4, - "jmp_mem_far_store": 3, - "jmp_reg_16bit": 2, - "jmp_reg_32bit": 2, - "jmp_reg_64bit": 1, - "jmp_far": 2, - "jmp_near": 1, - "jmp_imm_16bit": 3, - "jmp_imm_32bit": 2, - "jmp_imm_64bit": 3, - "get_address_dword_value": 3, - "jmp_imm_32bit_prefix_ok": 2, - "calculate_jump_offset": 10, - "check_for_short_jump": 8, - "jmp_short": 3, - "jmp_imm_32bit_store": 2, - "jno": 2, - "jmp_imm_32bit_ok": 2, - "relative_jump_out_of_range": 6, - "get_address_qword_value": 3, - "EBh": 1, - "get_address_word_value": 3, - "jmp_imm_16bit_prefix_ok": 2, - "cwde": 3, - "forced_short": 2, - "no_short_jump": 4, - "short_jump": 4, - "jmp_short_value_type_ok": 2, - "jump_out_of_range": 3, - "jmp_far_16bit": 2, - "jmp_far_32bit": 3, - "jmp_far_segment": 2, - "conditional_jump": 1, - "conditional_jump_16bit": 3, - "conditional_jump_32bit": 2, - "conditional_jump_64bit": 3, - "conditional_jump_32bit_prefix_ok": 2, - "conditional_jump_short": 4, - "conditional_jump_32bit_store": 2, - "conditional_jump_32bit_range_ok": 2, - "conditional_jump_16bit_prefix_ok": 2, - "loop_instruction_16bit": 1, - "loop_instruction": 5, - "loop_instruction_32bit": 1, - "loop_instruction_64bit": 1, - "loop_jump_16bit": 3, - "loop_jump_32bit": 2, - "loop_jump_64bit": 3, - "loop_jump_32bit_prefix_ok": 2, - "loop_counter_size": 4, - "make_loop_jump": 3, - "loop_counter_size_ok": 2, - "loop_jump_16bit_prefix_ok": 2, - "movs_instruction": 1, - "address_sizes_do_not_agree": 2, - "movs_address_16bit": 2, - "movs_address_32bit": 2, - "movs_store": 3, - "A4h": 1, - "movs_check_size": 5, - "lods_instruction": 1, - "lods_address_16bit": 2, - "lods_address_32bit": 2, - "lods_store": 3, - "ACh": 1, - "stos_instruction": 1, - "stos_address_16bit": 2, - "stos_address_32bit": 2, - "stos_store": 3, - "cmps_instruction": 1, - "cmps_address_16bit": 2, - "cmps_address_32bit": 2, - "cmps_store": 3, - "A6h": 1, - "ins_instruction": 1, - "ins_address_16bit": 2, - "ins_address_32bit": 2, - "ins_store": 3, - "ins_check_size": 2, - "outs_instruction": 1, - "outs_address_16bit": 2, - "outs_address_32bit": 2, - "outs_store": 3, - "xlat_instruction": 1, - "xlat_address_16bit": 2, - "xlat_address_32bit": 2, - "xlat_store": 3, - "D7h": 1, - "pm_word_instruction": 1, - "pm_reg": 2, - "pm_mem": 2, - "pm_mem_store": 2, - "pm_store_word_instruction": 1, - "lgdt_instruction": 1, - "lgdt_mem_48bit": 2, - "lgdt_mem_80bit": 2, - "lgdt_mem_store": 4, - "lar_instruction": 1, - "lar_reg_reg": 2, - "lar_reg_mem": 2, - "invlpg_instruction": 1, - "swapgs_instruction": 1, - "rdtscp_instruction": 1, - "basic_486_instruction": 1, - "basic_486_reg": 2, - "basic_486_mem_reg_8bit": 2, - "basic_486_reg_reg_8bit": 2, - "bswap_instruction": 1, - "bswap_reg_code_ok": 2, - "bswap_reg64": 2, - "cmpxchgx_instruction": 1, - "cmpxchgx_size_ok": 2, - "cmpxchgx_store": 2, - "nop_instruction": 1, - "extended_nop": 4, - "extended_nop_reg": 2, - "extended_nop_store": 2, - "basic_fpu_instruction": 1, - "D8h": 2, - "basic_fpu_streg": 2, - "basic_fpu_mem": 2, - "basic_fpu_mem_32bit": 2, - "basic_fpu_mem_64bit": 2, - "DCh": 2, - "convert_fpu_register": 9, - "basic_fpu_single_streg": 3, - "basic_fpu_st0": 2, - "basic_fpu_streg_st0": 2, - "simple_fpu_instruction": 1, - "D9h": 6, - "fi_instruction": 1, - "fi_mem_16bit": 2, - "fi_mem_32bit": 2, - "DAh": 2, - "DEh": 2, - "fld_instruction": 1, - "fld_streg": 2, - "fld_mem_32bit": 2, - "fld_mem_64bit": 2, - "fld_mem_80bit": 2, - "DDh": 6, - "fld_mem_80bit_store": 3, - "DBh": 4, - "fst_streg": 2, - "fild_instruction": 1, - "fild_mem_16bit": 2, - "fild_mem_32bit": 2, - "fild_mem_64bit": 2, - "DFh": 5, - "fisttp_64bit_store": 2, - "fild_mem_64bit_store": 3, - "fbld_instruction": 1, - "fbld_mem_80bit": 3, - "faddp_instruction": 1, - "faddp_streg": 2, - "fcompp_instruction": 1, - "D9DEh": 1, - "fucompp_instruction": 1, - "E9DAh": 1, - "fxch_instruction": 1, - "fpu_single_operand": 3, - "ffreep_instruction": 1, - "ffree_instruction": 1, - "fpu_streg": 2, - "fstenv_instruction": 1, - "fldenv_instruction": 3, - "fpu_mem": 2, - "fstenv_instruction_16bit": 1, - "fldenv_instruction_16bit": 1, - "fstenv_instruction_32bit": 1, - "fldenv_instruction_32bit": 1, - "fsave_instruction_32bit": 1, - "fnsave_instruction_32bit": 1, - "fnsave_instruction": 3, - "fsave_instruction_16bit": 1, - "fnsave_instruction_16bit": 1, - "fsave_instruction": 1, - "fstcw_instruction": 1, - "fldcw_instruction": 1, - "fldcw_mem_16bit": 3, - "fstsw_instruction": 1, - "fnstsw_instruction": 1, - "fstsw_reg": 2, - "fstsw_mem_16bit": 3, - "E0DFh": 1, - "finit_instruction": 1, - "fninit_instruction": 1, - "fcmov_instruction": 1, - "fcomi_streg": 3, - "fcomi_instruction": 1, - "fcomip_instruction": 1, - "fcomi_st0_streg": 2, - "basic_mmx_instruction": 1, - "mmx_instruction": 1, - "convert_mmx_register": 18, - "make_mmx_prefix": 9, - "mmx_mmreg_mmreg": 3, - "mmx_mmreg_mem": 2, - "mmx_bit_shift_instruction": 1, - "mmx_ps_mmreg_imm8": 2, - "pmovmskb_instruction": 1, - "pmovmskb_reg_size_ok": 2, - "mmx_nomem_imm8": 7, - "mmx_imm8": 6, - "append_imm8": 2, - "pinsrw_instruction": 1, - "pinsrw_mmreg_reg": 2, - "pshufw_instruction": 1, - "mmx_size": 30, - "pshuf_instruction": 2, - "pshufd_instruction": 1, - "pshuf_mmreg_mmreg": 2, - "movd_instruction": 1, - "movd_reg": 2, - "movd_mmreg": 2, - "movd_mmreg_reg": 2, - "mmx_prefix_for_vex": 2, - "no_mmx_prefix": 2, - "movq_instruction": 1, - "movq_reg": 2, - "movq_mem_xmmreg": 2, - "D6h": 2, - "movq_mmreg": 2, - "movq_mmreg_": 2, - "F3h": 7, - "movq_mmreg_reg": 2, - "movq_mmreg_mmreg": 2, - "movq_mmreg_reg_store": 2, - "movdq_instruction": 1, - "movdq_mmreg": 2, - "convert_xmm_register": 12, - "movdq_mmreg_mmreg": 2, - "lddqu_instruction": 1, - "F2h": 6, - "movdq2q_instruction": 1, - "movq2dq_": 2, - "movq2dq_instruction": 1, - "sse_ps_instruction_imm8": 1, - "sse_ps_instruction": 1, - "sse_instruction": 11, - "sse_pd_instruction_imm8": 1, - "sse_pd_instruction": 1, - "sse_ss_instruction": 1, - "sse_sd_instruction": 1, - "cmp_pd_instruction": 1, - "cmp_ps_instruction": 1, - "C2h": 4, - "cmp_ss_instruction": 1, - "cmp_sx_instruction": 2, - "cmpsd_instruction": 1, - "A7h": 1, - "cmp_sd_instruction": 1, - "comiss_instruction": 1, - "comisd_instruction": 1, - "cvtdq2pd_instruction": 1, - "cvtps2pd_instruction": 1, - "cvtpd2dq_instruction": 1, - "movshdup_instruction": 1, - "sse_xmmreg": 2, - "sse_reg": 1, - "sse_xmmreg_xmmreg": 2, - "sse_reg_mem": 2, - "sse_mem_size_ok": 2, - "supplemental_code": 2, - "sse_cmp_mem_ok": 3, - "sse_ok": 2, - "take_additional_xmm0": 3, - "sse_xmmreg_xmmreg_ok": 4, - "sse_cmp_nomem_ok": 3, - "sse_nomem_ok": 2, - "additional_xmm0_ok": 2, - "pslldq_instruction": 1, - "movpd_instruction": 1, - "movps_instruction": 1, - "sse_mov_instruction": 3, - "movss_instruction": 1, - "sse_movs": 2, - "movsd_instruction": 1, - "A5h": 1, - "sse_mem": 2, - "sse_mem_xmmreg": 2, - "movlpd_instruction": 1, - "movlps_instruction": 1, - "movhlps_instruction": 1, - "maskmovq_instruction": 1, - "maskmov_instruction": 2, - "maskmovdqu_instruction": 1, - "movmskpd_instruction": 1, - "movmskps_instruction": 1, - "movmskps_reg_ok": 2, - "cvtpi2pd_instruction": 1, - "cvtpi2ps_instruction": 1 - }, - "ATS": { - "//": 211, - "#include": 16, - "staload": 25, - "_": 25, - "sortdef": 2, - "ftype": 13, - "type": 30, - "-": 49, - "infixr": 2, - "(": 562, - ")": 567, - "typedef": 10, - "a": 200, - "b": 26, - "": 2, - "functor": 12, - "F": 34, - "{": 142, - "}": 141, - "list0": 9, - "extern": 13, - "val": 95, - "functor_list0": 7, - "implement": 55, - "f": 22, - "lam": 20, - "xs": 82, - "list0_map": 2, - "": 14, - "": 3, - "datatype": 4, - "CoYoneda": 7, - "r": 25, - "of": 59, - "fun": 56, - "CoYoneda_phi": 2, - "CoYoneda_psi": 3, - "ftor": 9, - "fx": 8, - "x": 48, - "int0": 4, - "I": 8, - "int": 2, - "bool": 27, - "True": 7, - "|": 22, - "False": 8, - "boxed": 2, - "boolean": 2, - "bool2string": 4, - "string": 2, - "case": 9, - "+": 20, - "fprint_val": 2, - "": 2, - "out": 8, - "fprint": 3, - "int2bool": 2, - "i": 6, - "let": 34, - "in": 48, - "if": 7, - "then": 11, - "else": 7, - "end": 73, - "myintlist0": 2, - "g0ofg1": 1, - "list": 1, - "myboolist0": 9, - "fprintln": 3, - "stdout_ref": 4, - "main0": 3, - "UN": 3, - "phil_left": 3, - "n": 51, - "phil_right": 3, - "nmod": 1, - "NPHIL": 6, - "randsleep": 6, - "intGte": 1, - "void": 14, - "ignoret": 2, - "sleep": 2, - "UN.cast": 2, - "uInt": 1, - "rand": 1, - "mod": 1, - "phil_think": 3, - "println": 9, - "phil_dine": 3, - "lf": 5, - "rf": 5, - "phil_loop": 10, - "nl": 2, - "nr": 2, - "ch_lfork": 2, - "fork_changet": 5, - "ch_rfork": 2, - "channel_takeout": 4, - "HX": 1, - "try": 1, - "to": 16, - "actively": 1, - "induce": 1, - "deadlock": 2, - "ch_forktray": 3, - "forktray_changet": 4, - "channel_insert": 5, - "[": 49, - "]": 48, - "cleaner_wash": 3, - "fork_get_num": 4, - "cleaner_return": 4, - "ch": 7, - "cleaner_loop": 6, - "f0": 3, - "dynload": 3, - "local": 10, - "mythread_create_cloptr": 6, - "llam": 6, - "while": 1, - "true": 5, - "%": 7, - "#": 7, - "#define": 4, - "nphil": 13, - "natLt": 2, - "absvtype": 2, - "fork_vtype": 3, - "ptr": 2, - "vtypedef": 2, - "fork": 16, - "channel": 11, - "datavtype": 1, - "FORK": 3, - "assume": 2, - "the_forkarray": 2, - "t": 1, - "array_tabulate": 1, - "fopr": 1, - "": 2, - "where": 6, - "channel_create_exn": 2, - "": 2, - "i2sz": 4, - "arrayref_tabulate": 1, - "the_forktray": 2, - "set_vtype": 3, - "t@ype": 2, - "set": 34, - "t0p": 31, - "compare_elt_elt": 4, - "x1": 1, - "x2": 1, - "<": 14, - "linset_nil": 2, - "linset_make_nil": 2, - "linset_sing": 2, - "": 16, - "linset_make_sing": 2, - "linset_make_list": 1, - "List": 1, - "INV": 24, - "linset_is_nil": 2, - "linset_isnot_nil": 2, - "linset_size": 2, - "size_t": 1, - "linset_is_member": 3, - "x0": 22, - "linset_isnot_member": 1, - "linset_copy": 2, - "linset_free": 2, - "linset_insert": 3, - "&": 17, - "linset_takeout": 1, - "res": 9, - "opt": 6, - "endfun": 1, - "linset_takeout_opt": 1, - "Option_vt": 4, - "linset_remove": 2, - "linset_choose": 3, - "linset_choose_opt": 1, - "linset_takeoutmax": 1, - "linset_takeoutmax_opt": 1, - "linset_takeoutmin": 1, - "linset_takeoutmin_opt": 1, - "fprint_linset": 3, - "sep": 1, - "FILEref": 2, - "overload": 1, - "with": 1, - "env": 11, - "vt0p": 2, - "linset_foreach": 3, - "fwork": 3, - "linset_foreach_env": 3, - "linset_listize": 2, - "List0_vt": 5, - "linset_listize1": 2, - "code": 6, - "reuse": 2, - "elt": 2, - "list_vt_nil": 16, - "list_vt_cons": 17, - "list_vt_is_nil": 1, - "list_vt_is_cons": 1, - "list_vt_length": 1, - "aux": 4, - "nat": 4, - ".": 14, - "": 3, - "list_vt": 7, - "sgn": 9, - "false": 6, - "list_vt_copy": 2, - "list_vt_free": 1, - "mynode_cons": 4, - "nx": 22, - "mynode1": 6, - "xs1": 15, - "UN.castvwtp0": 8, - "List1_vt": 5, - "@list_vt_cons": 5, - "xs2": 3, - "prval": 20, - "UN.cast2void": 5, - ";": 4, - "fold@": 8, - "ins": 3, - "tail": 1, - "recursive": 1, - "n1": 4, - "<=>": 1, - "1": 3, - "mynode_make_elt": 4, - "ans": 2, - "is": 26, - "found": 1, - "effmask_all": 3, - "free@": 1, - "xs1_": 3, - "rem": 1, - "*": 2, - "opt_some": 1, - "opt_none": 1, - "list_vt_foreach": 1, - "": 3, - "list_vt_foreach_env": 1, - "mynode_null": 5, - "mynode": 3, - "null": 1, - "the_null_ptr": 1, - "mynode_free": 1, - "nx2": 4, - "mynode_get_elt": 1, - "nx1": 7, - "UN.castvwtp1": 2, - "mynode_set_elt": 1, - "l": 3, - "__assert": 2, - "praxi": 1, - "mynode_getfree_elt": 1, - "linset_takeout_ngc": 2, - "takeout": 3, - "mynode0": 1, - "pf_x": 6, - "view@x": 3, - "pf_xs1": 6, - "view@xs1": 3, - "linset_takeoutmax_ngc": 2, - "xs_": 4, - "@list_vt_nil": 1, - "linset_takeoutmin_ngc": 2, - "unsnoc": 4, - "pos": 1, - "and": 10, - "fold@xs": 1, - "ATS_PACKNAME": 1, - "ATS_STALOADFLAG": 1, - "no": 2, - "static": 1, - "loading": 1, - "at": 2, - "run": 1, - "time": 1, - "castfn": 1, - "linset2list": 1, - "": 1, - "html": 1, - "PUBLIC": 1, - "W3C": 1, - "DTD": 2, - "XHTML": 1, - "EN": 1, - "http": 2, - "www": 1, - "w3": 1, - "org": 1, - "TR": 1, - "xhtml11": 2, - "dtd": 1, - "": 1, - "xmlns=": 1, - "": 1, - "": 1, - "equiv=": 1, - "content=": 1, - "": 1, - "EFFECTIVATS": 1, - "DiningPhil2": 1, - "": 1, - "#patscode_style": 1, - "": 1, - "": 1, - "

": 1, - "Effective": 1, - "ATS": 2, - "Dining": 2, - "Philosophers": 2, - "

": 1, - "In": 2, - "this": 2, - "article": 2, - "present": 1, - "an": 6, - "implementation": 3, - "slight": 1, - "variant": 1, - "the": 30, - "famous": 1, - "problem": 1, - "by": 4, - "Dijkstra": 1, - "that": 8, - "makes": 1, - "simple": 1, - "but": 1, - "convincing": 1, - "use": 1, - "linear": 2, - "types.": 1, - "

": 8, - "The": 8, - "Original": 2, - "Problem": 2, - "

": 8, - "There": 3, - "are": 7, - "five": 1, - "philosophers": 1, - "sitting": 1, - "around": 1, - "table": 3, - "there": 3, - "also": 3, - "forks": 7, - "placed": 1, - "on": 8, - "such": 1, - "each": 2, - "located": 2, - "between": 1, - "left": 3, - "hand": 6, - "philosopher": 5, - "right": 3, - "another": 1, - "philosopher.": 1, - "Each": 4, - "does": 1, - "following": 6, - "routine": 1, - "repeatedly": 1, - "thinking": 1, - "dining.": 1, - "order": 1, - "dine": 1, - "needs": 2, - "first": 2, - "acquire": 1, - "two": 3, - "one": 3, - "his": 4, - "side": 2, - "other": 2, - "side.": 2, - "After": 2, - "finishing": 1, - "dining": 1, - "puts": 2, - "acquired": 1, - "onto": 1, - "A": 6, - "Variant": 1, - "twist": 1, - "added": 1, - "original": 1, - "version": 1, - "

": 1, - "used": 1, - "it": 2, - "becomes": 1, - "be": 9, - "put": 1, - "tray": 2, - "for": 15, - "dirty": 2, - "forks.": 1, - "cleaner": 2, - "who": 1, - "cleans": 1, - "them": 2, - "back": 1, - "table.": 1, - "Channels": 1, - "Communication": 1, - "just": 1, - "shared": 1, - "queue": 1, - "fixed": 1, - "capacity.": 1, - "functions": 1, - "inserting": 1, - "element": 5, - "into": 3, - "taking": 1, - "given": 4, - "

": 7,
-      "class=": 6,
-      "#pats2xhtml_sats": 3,
-      "
": 7, - "If": 2, - "called": 2, - "full": 4, - "caller": 2, - "blocked": 3, - "until": 2, - "taken": 1, - "channel.": 2, - "empty": 1, - "inserted": 1, - "Channel": 2, - "Fork": 3, - "Forks": 1, - "resources": 1, - "type.": 1, - "initially": 1, - "stored": 2, - "which": 2, - "can": 4, - "obtained": 2, - "calling": 2, - "function": 3, - "defined": 1, - "natural": 1, - "numbers": 1, - "less": 1, - "than": 1, - "channels": 4, - "storing": 3, - "chosen": 3, - "capacity": 3, - "reason": 1, - "store": 1, - "most": 1, - "guarantee": 1, - "these": 1, - "never": 2, - "so": 2, - "attempt": 1, - "made": 1, - "send": 1, - "signals": 1, - "awake": 1, - "callers": 1, - "supposedly": 1, - "being": 2, - "due": 1, - "Tray": 1, - "instead": 1, - "become": 1, - "as": 4, - "only": 1, - "total": 1, - "Philosopher": 1, - "Loop": 2, - "implemented": 2, - "loop": 2, - "#pats2xhtml_dats": 3, - "It": 2, - "should": 3, - "straighforward": 2, - "follow": 2, - "Cleaner": 1, - "finds": 1, - "number": 2, - "uses": 1, - "locate": 1, - "fork.": 1, - "Its": 1, - "actual": 1, - "follows": 1, - "now": 1, - "Testing": 1, - "entire": 1, - "files": 1, - "DiningPhil2.sats": 1, - "DiningPhil2.dats": 1, - "DiningPhil2_fork.dats": 1, - "DiningPhil2_thread.dats": 1, - "Makefile": 1, - "available": 1, - "compiling": 1, - "source": 1, - "excutable": 1, - "testing.": 1, - "One": 1, - "able": 1, - "encounter": 1, - "after": 1, - "running": 1, - "simulation": 1, - "while.": 1, - "
": 1, - "size=": 1, - "This": 1, - "written": 1, - "href=": 1, - "Hongwei": 1, - "Xi": 1, - "
": 1, - "": 1, - "": 1, - "main": 1, - "fprint_filsub": 1, - "option0": 3, - "functor_option0": 2, - "option0_map": 1, - "functor_homres": 2, - "c": 3, - "Yoneda_phi": 3, - "Yoneda_psi": 3, - "m": 4, - "mf": 4, - "natrans": 3, - "G": 2, - "Yoneda_phi_nat": 2, - "Yoneda_psi_nat": 2, - "list_t": 1, - "g0ofg1_list": 1, - "Yoneda_bool_list0": 3, - "myboolist1": 2 - }, - "AutoHotkey": { - "MsgBox": 1, - "Hello": 1, - "World": 1 - }, - "Awk": { - "SHEBANG#!awk": 1, - "BEGIN": 1, - "{": 17, - "n": 13, - ";": 55, - "printf": 1, - "network_max_bandwidth_in_byte": 3, - "network_max_packet_per_second": 3, - "last3": 3, - "last4": 3, - "last5": 3, - "last6": 3, - "}": 17, - "if": 14, - "(": 14, - "/Average/": 1, - ")": 14, - "#": 48, - "Skip": 1, + "quality": 1, + "{": 1, + "": 1, + "src=": 1, + "alt=": 1, + "}": 1, + "[": 3, + "//codeclimate.com/github/rdoc/rdoc": 1, + "]": 3, + "Description": 1, + "produces": 1, + "HTML": 1, + "and": 9, + "command": 4, + "line": 1, + "documentation": 8, + "for": 9, + "projects.": 1, + "includes": 1, "the": 12, - "Average": 1, - "values": 1, - "next": 1, - "/all/": 1, - "This": 8, - "is": 7, - "cpu": 1, - "info": 7, - "print": 35, - "FILENAME": 35, - "-": 2, - "/eth0/": 1, - "eth0": 1, - "network": 1, - "Total": 9, - "number": 9, - "of": 22, - "packets": 4, - "received": 4, - "per": 14, - "second.": 8, - "else": 4, - "transmitted": 4, - "bytes": 4, - "/proc": 1, - "|": 4, - "cswch": 1, - "tps": 1, - "kbmemfree": 1, - "totsck/": 1, - "/": 2, - "[": 1, - "]": 1, - "proc/s": 1, - "context": 1, - "switches": 1, - "second": 6, - "disk": 1, - "total": 1, - "transfers": 1, - "read": 1, - "requests": 2, - "write": 1, - "block": 2, - "reads": 1, - "writes": 1, - "mem": 1, - "Amount": 7, - "free": 2, - "memory": 6, - "available": 1, - "in": 11, - "kilobytes.": 7, - "used": 8, - "does": 1, - "not": 1, - "take": 1, - "into": 1, - "account": 1, - "by": 4, - "kernel": 3, - "itself.": 1, - "Percentage": 2, - "memory.": 1, - "X": 1, - "shared": 1, - "system": 1, - "Always": 1, - "zero": 1, - "with": 1, - "kernels.": 1, + "+": 8, + "ri": 1, + "tools": 1, + "generating": 1, + "displaying": 1, + "from": 1, + "line.": 1, + "Generating": 1, + "Once": 1, + "installed": 1, + "you": 3, + "can": 2, + "create": 1, + "using": 1, + "options": 1, + "names...": 1, + "For": 1, + "an": 1, + "up": 1, + "to": 4, + "date": 1, + "option": 1, + "summary": 1, + "type": 2, + "help": 1, + "A": 1, + "typical": 1, + "use": 1, + "might": 1, + "be": 3, + "generate": 1, + "a": 5, + "package": 1, + "of": 2, + "source": 2, + "(": 3, + "such": 1, "as": 1, - "buffers": 1, + "itself": 1, + ")": 3, + ".": 2, + "This": 2, + "generates": 1, + "all": 1, + "C": 1, + "files": 2, + "in": 4, + "below": 1, + "current": 1, + "directory.": 1, + "These": 1, + "will": 1, + "stored": 1, + "tree": 1, + "starting": 1, + "subdirectory": 1, + "doc": 1, + "You": 2, + "make": 2, + "this": 1, + "slightly": 1, + "more": 1, + "useful": 1, + "your": 1, + "readers": 1, + "by": 1, + "having": 1, + "index": 1, + "page": 1, + "contain": 1, + "primary": 1, + "file.": 1, + "In": 1, + "our": 1, + "case": 1, + "we": 1, + "could": 1, + "#": 1, + "rdoc/rdoc": 1, + "s": 1, + "OK": 1, + "file": 1, + "bug": 1, + "report": 1, + "anything": 1, + "t": 1, + "figure": 1, + "out": 1, + "how": 1, + "produce": 1, + "output": 1, + "like": 1, + "that": 1, + "is": 4, + "probably": 1, + "bug.": 1, + "License": 1, + "Copyright": 1, + "c": 2, + "Dave": 1, + "Thomas": 1, + "The": 1, + "Pragmatic": 1, + "Programmers.": 1, + "Portions": 2, + "Eric": 1, + "Hodel.": 1, + "copyright": 1, + "others": 1, + "see": 1, + "individual": 1, + "LEGAL.rdoc": 1, + "details.": 1, + "free": 1, + "software": 2, + "may": 1, + "redistributed": 1, + "under": 1, + "terms": 1, + "specified": 1, + "LICENSE.rdoc.": 1, + "Warranty": 1, + "provided": 1, + "without": 2, + "any": 1, + "express": 1, + "or": 1, + "implied": 2, + "warranties": 2, + "including": 1, + "limitation": 1, + "merchantability": 1, + "fitness": 1, + "particular": 1, + "purpose.": 1 + }, + "AppleScript": { + "tell": 40, + "application": 16, + "set": 108, + "localMailboxes": 3, + "to": 128, + "every": 3, + "mailbox": 2, + "if": 50, + "(": 89, + "count": 10, + "of": 72, + ")": 88, + "is": 40, + "greater": 5, + "than": 6, + "then": 28, + "messageCountDisplay": 5, + "&": 63, + "return": 16, + "my": 3, + "getMessageCountsForMailboxes": 4, + "else": 14, + "end": 67, + "everyAccount": 2, + "account": 1, + "repeat": 19, + "with": 11, + "eachAccount": 3, + "in": 13, + "accountMailboxes": 3, + "name": 8, + "outputMessage": 2, + "make": 3, + "new": 2, + "outgoing": 2, + "message": 2, + "properties": 2, + "{": 32, + "content": 2, + "subject": 1, + "visible": 2, + "true": 8, + "}": 32, + "font": 2, + "size": 5, + "on": 18, + "theMailboxes": 2, + "-": 57, + "list": 9, + "mailboxes": 1, + "returns": 2, + "string": 17, + "displayString": 4, + "eachMailbox": 4, + "mailboxName": 2, + "messageCount": 2, + "messages": 1, + "as": 27, + "unreadCount": 2, + "unread": 1, + "padString": 3, + "theString": 4, + "fieldLength": 5, + "integer": 3, + "stringLength": 4, + "length": 1, + "paddedString": 5, + "text": 13, + "from": 9, + "character": 2, + "less": 1, + "or": 6, + "equal": 3, + "paddingLength": 2, + "times": 1, + "space": 1, + "isVoiceOverRunning": 3, + "isRunning": 3, + "false": 9, + "processes": 2, + "contains": 1, + "isVoiceOverRunningWithAppleScript": 3, + "isRunningWithAppleScript": 3, + "AppleScript": 2, + "enabled": 2, + "VoiceOver": 1, + "try": 10, + "x": 1, + "bounds": 2, + "vo": 1, + "cursor": 1, + "error": 3, + "currentDate": 3, + "current": 3, + "date": 1, + "amPM": 4, + "currentHour": 9, + "s": 3, + "minutes": 2, + "and": 7, + "<": 2, + "below": 1, + "sound": 1, + "nice": 1, + "currentMinutes": 4, + "ensure": 1, + "nn": 2, + "gets": 1, + "AM": 1, + "readjust": 1, + "for": 5, + "hour": 1, + "time": 1, + "currentTime": 3, + "day": 1, + "output": 1, + "say": 1, + "delay": 3, + "property": 7, + "type_list": 6, + "extension_list": 6, + "html": 2, + "not": 5, + "currently": 2, + "handled": 2, + "run": 4, + "FinderSelection": 4, + "the": 56, + "selection": 2, + "alias": 8, + "FS": 10, + "Ideally": 2, + "this": 2, + "could": 2, + "be": 2, + "passed": 2, + "open": 8, + "handler": 2, + "SelectionCount": 6, + "number": 6, + "userPicksFolder": 6, + "MyPath": 4, + "path": 6, + "me": 2, + "item": 13, + "If": 2, + "I": 2, + "m": 2, + "a": 4, + "double": 2, + "clicked": 2, + "droplet": 2, + "these_items": 18, + "choose": 2, + "file": 6, + "prompt": 2, + "type": 6, + "thesefiles": 2, + "item_info": 24, + "i": 10, + "this_item": 14, + "info": 4, + "folder": 10, + "processFolder": 8, + "extension": 4, + "theFilePath": 8, + "thePOSIXFilePath": 8, + "POSIX": 4, + "processFile": 8, + "process": 5, + "folders": 2, + "theFolder": 6, + "without": 2, + "invisibles": 2, + "need": 1, + "pass": 1, + "URL": 1, + "Terminal": 1, + "thePOSIXFileName": 6, + "terminalCommand": 6, + "convertCommand": 4, + "newFileName": 4, + "do": 4, + "shell": 2, + "script": 2, + "activate": 3, + "pane": 4, + "UI": 1, + "elements": 1, + "tab": 1, + "group": 1, + "window": 5, + "click": 1, + "radio": 1, + "button": 4, + "get": 1, + "value": 1, + "field": 1, + "display": 4, + "dialog": 4, + "windowWidth": 3, + "windowHeight": 3, + "delimiters": 1, + "screen_width": 2, + "JavaScript": 2, + "document": 2, + "screen_height": 2, + "myFrontMost": 3, + "first": 1, + "whose": 1, + "frontmost": 1, + "desktopTop": 2, + "desktopLeft": 1, + "desktopRight": 1, + "desktopBottom": 1, + "desktop": 1, + "w": 5, + "h": 4, + "drawer": 2, + "position": 1, + "/": 2, + "lowFontSize": 9, + "highFontSize": 6, + "messageText": 4, + "userInput": 4, + "default": 4, + "answer": 3, + "buttons": 3, + "returned": 5, + "minimumFontSize": 4, + "newFontSize": 6, + "result": 2, + "theText": 3, + "exit": 1, + "fontList": 2, + "crazyTextMessage": 2, + "eachCharacter": 4, + "characters": 1, + "some": 1, + "random": 4, + "color": 1 + }, + "Ox": { + "nldge": 1, + "ParticleLogLikeli": 1, + "(": 119, + ")": 119, + "{": 22, + "decl": 3, + "it": 5, + "ip": 1, + "mss": 3, + "mbas": 1, + "ms": 8, + "my": 4, + "mx": 7, + "vw": 7, + "vwi": 4, + "dws": 3, + "mhi": 3, + "mhdet": 2, + "loglikeli": 4, + "mData": 4, + "vxm": 1, + "vxs": 1, + "mxm": 1, + "<": 4, + "mxsu": 1, + "mxsl": 1, + "time": 2, + "timeall": 1, + "timeran": 1, + "timelik": 1, + "timefun": 1, + "timeint": 1, + "timeres": 1, + ";": 91, + "GetData": 1, + "m_asY": 1, + "sqrt": 1, + "*M_PI": 1, + "m_cY": 1, + "*": 5, + "determinant": 2, + "m_mMSbE.": 2, + "//": 17, + "covariance": 2, + "invert": 2, + "of": 2, + "measurement": 1, + "shocks": 1, + "m_vSss": 1, + "+": 14, + "zeros": 4, + "m_cPar": 4, + "m_cS": 1, + "start": 1, + "particles": 2, + "m_vXss": 1, + "m_cX": 1, + "steady": 1, + "state": 3, + "and": 1, + "policy": 2, + "init": 1, + "likelihood": 1, + "//timeall": 1, + "timer": 3, + "for": 2, + "sizer": 1, + "rann": 1, + "m_cSS": 1, + "m_mSSbE": 1, + "noise": 1, + "fg": 1, + "&": 2, + "transition": 1, + "prior": 1, + "as": 1, + "proposal": 1, + "m_oApprox.FastInterpolate": 1, + "interpolate": 1, + "fy": 1, + "m_cMS": 1, + "evaluate": 1, + "importance": 1, + "weights": 2, + "-": 31, + "[": 25, + "]": 25, + "observation": 1, + "error": 1, + "exp": 2, + "outer": 1, + "/mhdet": 2, + "sumr": 1, + "my*mhi": 1, + ".*my": 1, + ".": 3, + ".NaN": 1, + "no": 2, + "can": 1, + "happen": 1, + "extrem": 1, + "sumc": 1, + "if": 5, + "return": 10, + ".Inf": 2, + "or": 1, + "extremely": 1, + "wrong": 1, + "parameters": 1, + "log": 2, + "dws/m_cPar": 1, + "loglikelihood": 1, + "contribution": 1, + "//timelik": 1, + "/100": 1, + "//time": 1, + "resample": 1, + "vw/dws": 1, + "selection": 1, + "step": 1, + "in": 1, + "c": 1, + "on": 1, + "normalized": 1, + "}": 22, + "#include": 2, + "ParallelObjective": 1, + "obj": 18, + "DONOTUSECLIENT": 2, + "isclass": 1, + "obj.p2p": 2, + "oxwarning": 1, + "obj.L": 1, + "new": 19, + "P2P": 2, + "ObjClient": 4, + "ObjServer": 7, + "this.obj": 2, + "Execute": 4, + "basetag": 2, + "STOP_TAG": 1, + "iml": 1, + "obj.NvfuncTerms": 2, + "Nparams": 6, + "obj.nstruct": 2, + "Loop": 2, + "nxtmsgsz": 2, + "//free": 1, + "param": 1, + "length": 1, + "is": 1, + "greater": 1, + "than": 1, + "Volume": 3, + "QUIET": 2, + "println": 2, + "ID": 2, + "Server": 1, + "Recv": 1, + "ANY_TAG": 1, + "//receive": 1, + "the": 1, + "ending": 1, + "parameter": 1, + "vector": 1, + "Encode": 3, + "Buffer": 8, + "//encode": 1, + "it.": 1, + "Decode": 1, + "obj.nfree": 1, + "obj.cur.V": 1, + "vfunc": 2, + "CstrServer": 3, + "SepServer": 3, + "Lagrangian": 1, + "rows": 1, + "obj.cur": 1, + "Vec": 1, + "obj.Kvar.v": 1, + "imod": 1, + "Tag": 1, + "obj.K": 1, + "TRUE": 1, + "obj.Kvar": 1, + "PDF": 1, + "Kapital": 4, + "L": 2, + "const": 4, + "N": 5, + "entrant": 8, + "exit": 2, + "KP": 14, + "StateVariable": 1, + "this.entrant": 1, + "this.exit": 1, + "this.KP": 1, + "actual": 2, + "Kbar*vals/": 1, + "upper": 3, + "Transit": 1, + "FeasA": 2, + "ent": 5, + "CV": 7, + "stayout": 3, + "exit.pos": 1, + "tprob": 5, + "sigu": 2, + "SigU": 2, + "v": 2, + "&&": 1, + "<0>": 1, + "ones": 1, + "probn": 2, + "Kbe": 2, + "/sigu": 1, + "Kb0": 2, + "Kb2": 2, + "*upper": 1, + "/": 1, + "vals": 1, + "tprob.*": 1, + ".*stayout": 1, + "FirmEntry": 6, + "Run": 1, + "Initialize": 3, + "GenerateSample": 2, + "BDP": 2, + "BayesianDP": 1, + "Rust": 1, + "Reachable": 2, + "sige": 2, + "StDeviations": 1, + "<0.3,0.3>": 1, + "LaggedAction": 1, + "d": 2, + "array": 1, + "Kparams": 1, + "Positive": 4, + "Free": 1, + "Kb1": 1, + "Determined": 1, + "EndogenousStates": 1, + "K": 3, + "KN": 1, + "SetDelta": 1, + "Probability": 1, + "kcoef": 3, + "ecost": 3, + "Negative": 1, + "CreateSpaces": 1, + "LOUD": 1, + "EM": 4, + "ValueIteration": 1, + "Solve": 1, + "data": 4, + "DataSet": 1, + "Simulate": 1, + "DataN": 1, + "DataT": 1, + "FALSE": 1, + "Print": 1, + "ImaiJainChing": 1, + "delta": 1, + "*CV": 2, + "Utility": 1, + "u": 2, + "ent*CV": 1, + "*AV": 1, + "|": 1 + }, + "STON": { + "{": 15, + "[": 11, + "]": 11, + "}": 15, + "#a": 1, + "#b": 1, + "TestDomainObject": 1, + "#created": 1, + "DateAndTime": 2, + "#modified": 1, + "#integer": 1, + "#float": 1, + "#description": 1, + "#color": 1, + "#green": 1, + "#tags": 1, + "#two": 1, + "#beta": 1, + "#medium": 1, + "#bytes": 1, + "ByteArray": 1, + "#boolean": 1, + "false": 1, + "Rectangle": 1, + "#origin": 1, + "Point": 2, + "-": 2, + "#corner": 1, + "ZnResponse": 1, + "#headers": 2, + "ZnHeaders": 1, + "ZnMultiValueDictionary": 1, + "#entity": 1, + "ZnStringEntity": 1, + "#contentType": 1, + "ZnMimeType": 1, + "#main": 1, + "#sub": 1, + "#parameters": 1, + "#contentLength": 1, + "#string": 1, + "#encoder": 1, + "ZnUTF8Encoder": 1, + "#statusLine": 1, + "ZnStatusLine": 1, + "#version": 1, + "#code": 1, + "#reason": 1 + }, + "Scilab": { + "disp": 1, + "(": 7, + "%": 4, + "pi": 3, + ")": 7, + ";": 7, + "function": 1, + "[": 1, + "a": 4, + "b": 4, + "]": 1, + "myfunction": 1, + "d": 2, + "e": 4, + "f": 2, + "+": 5, + "cos": 1, + "cosh": 1, + "if": 1, + "then": 1, + "-": 2, + "e.field": 1, + "else": 1, + "home": 1, + "return": 1, + "end": 1, + "myvar": 1, + "endfunction": 1, + "assert_checkequal": 1, + "assert_checkfalse": 1 + }, + "Dart": { + "import": 1, + "as": 1, + "math": 1, + ";": 9, + "class": 1, + "Point": 5, + "{": 3, + "num": 2, + "x": 2, + "y": 2, + "(": 7, + "this.x": 1, + "this.y": 1, + ")": 7, + "distanceTo": 1, + "other": 1, + "var": 4, + "dx": 3, + "-": 2, + "other.x": 1, + "dy": 3, + "other.y": 1, + "return": 1, + "math.sqrt": 1, + "*": 2, + "+": 1, + "}": 3, + "void": 1, + "main": 1, + "p": 1, + "new": 2, + "q": 1, + "print": 1 + }, + "Nu": { + ";": 22, + "main.nu": 1, + "Entry": 1, + "point": 1, + "for": 1, + "a": 1, + "Nu": 1, + "program.": 1, + "Copyright": 1, + "(": 14, + "c": 1, + ")": 14, + "Tim": 1, + "Burks": 1, + "Neon": 1, + "Design": 1, + "Technology": 1, + "Inc.": 1, + "load": 4, + "basics": 1, + "cocoa": 1, + "definitions": 1, + "menu": 1, + "generation": 1, + "Aaron": 1, + "Hillegass": 1, + "t": 1, + "retain": 1, + "it.": 1, + "NSApplication": 2, + "sharedApplication": 2, + "setDelegate": 1, + "set": 1, + "delegate": 1, + "ApplicationDelegate": 1, + "alloc": 1, + "init": 1, + "this": 1, + "makes": 1, + "the": 3, + "application": 1, + "window": 1, + "take": 1, + "focus": 1, + "when": 1, + "we": 1, + "ve": 1, + "started": 1, + "it": 1, + "from": 1, + "terminal": 1, + "activateIgnoringOtherApps": 1, + "YES": 1, + "run": 1, + "main": 1, + "Cocoa": 1, + "event": 1, + "loop": 1, + "NSApplicationMain": 1, + "nil": 1, + "SHEBANG#!nush": 1, + "puts": 1 + }, + "Alloy": { + "module": 3, + "examples/systems/marksweepgc": 1, + "sig": 20, + "Node": 10, + "{": 54, + "}": 60, + "HeapState": 5, + "left": 3, + "right": 1, + "-": 41, + "lone": 6, + "marked": 1, + "set": 10, + "freeList": 1, + "pred": 16, + "clearMarks": 1, + "[": 82, + "hs": 16, + ".marked": 3, + ".right": 4, + "hs.right": 3, + "fun": 1, + "reachable": 1, + "n": 5, + "]": 80, + "+": 14, + "n.": 1, + "(": 12, + "hs.left": 2, + ")": 9, + "mark": 1, + "from": 2, + "hs.reachable": 1, + "setFreeList": 1, + ".freeList.*": 3, + ".left": 5, + "hs.marked": 1, + "GC": 1, + "root": 5, + "assert": 3, + "Soundness1": 2, + "all": 16, + "h": 9, + "live": 3, + "h.reachable": 1, + "|": 19, + "h.right": 1, + "Soundness2": 2, + "no": 8, + ".reachable": 2, + "h.GC": 1, + "in": 19, + ".freeList": 1, + "check": 6, + "for": 7, + "expect": 6, + "Completeness": 1, + "examples/systems/views": 1, + "open": 2, + "util/ordering": 1, + "State": 16, + "as": 2, + "so": 1, + "util/relation": 1, + "rel": 1, + "Ref": 19, + "Object": 10, + "t": 16, + "b": 13, + "v": 25, + "views": 2, + "when": 1, + "is": 1, + "view": 2, + "of": 3, + "type": 1, + "backing": 1, + "dirty": 3, + "contains": 1, + "refs": 7, + "that": 1, + "have": 1, + "been": 1, + "invalidated": 1, + "obj": 1, + "one": 8, + "ViewType": 8, + "anyviews": 2, + "visualization": 1, + "ViewType.views": 1, + "Map": 2, + "extends": 10, + "keys": 3, + "map": 2, + "s": 6, + "Ref.map": 1, + "s.refs": 3, + "MapRef": 4, + "fact": 4, + "State.obj": 3, + "Iterator": 2, + "done": 3, + "lastRef": 2, + "IteratorRef": 5, + "Set": 2, + "elts": 2, + "SetRef": 5, + "abstract": 2, + "KeySetView": 6, + "State.views": 1, + "IteratorView": 3, + "s.views": 2, + "handle": 1, + "possibility": 1, + "modifying": 1, + "an": 1, + "object": 1, + "and": 1, + "its": 1, + "at": 1, + "once": 1, + "*": 1, + "should": 1, + "we": 1, + "limit": 1, + "frame": 1, + "conds": 1, "to": 1, - "cache": 1, - "data": 1, - "swap": 3, + "non": 1, + "*/": 1, + "modifies": 5, + "pre": 15, + "post": 14, + "rs": 4, + "let": 5, + "vr": 1, + "pre.views": 8, + "mods": 3, + "rs.*vr": 1, + "r": 3, + "pre.refs": 6, + "pre.obj": 10, + "post.obj": 7, + "viewFrame": 4, + "post.dirty": 1, + "pre.dirty": 1, + "some": 3, + "&&": 2, + "allocates": 5, + "&": 3, + "post.refs": 1, + ".map": 3, + ".elts": 3, + "dom": 1, + "<:>": 1, + "setRefs": 1, + "this": 14, + "MapRef.put": 1, + "k": 5, + "none": 4, + "post.views": 4, + "SetRef.iterator": 1, + "iterRef": 4, + "i": 7, + "i.left": 3, + "i.done": 1, + "i.lastRef": 1, + "IteratorRef.remove": 1, + ".lastRef": 2, + "IteratorRef.next": 1, + "ref": 3, + "IteratorRef.hasNext": 1, + "s.obj": 1, + "zippishOK": 2, + "ks": 6, + "vs": 6, + "m": 4, + "ki": 2, + "vi": 2, + "s0": 4, + "so/first": 1, + "s1": 4, + "so/next": 7, + "s2": 6, + "s3": 4, + "s4": 4, + "s5": 4, + "s6": 4, + "s7": 2, + "precondition": 2, + "s0.dirty": 1, + "ks.iterator": 1, + "vs.iterator": 1, + "ki.hasNext": 1, + "vi.hasNext": 1, + "ki.this/next": 1, + "vi.this/next": 1, + "m.put": 1, + "ki.remove": 1, + "vi.remove": 1, + "State.dirty": 1, + "ViewType.pre.views": 2, + "but": 1, + "#s.obj": 1, + "<": 1, + "examples/systems/file_system": 1, + "Name": 2, + "File": 1, + "d": 3, + "Dir": 8, + "d.entries.contents": 1, + "entries": 3, + "DirEntry": 2, + "parent": 3, + "this.": 4, + "@contents.": 1, + "@entries": 1, + "e1": 2, + "e2": 2, + "e1.name": 1, + "e2.name": 1, + "@parent": 2, + "Root": 5, + "Cur": 1, + "name": 1, + "contents": 2, + "OneParent_buggyVersion": 2, + "d.parent": 2, + "OneParent_correctVersion": 2, + "contents.d": 1, + "NoDirAliases": 3, + "o": 1, + "o.": 1 + }, + "Red": { + "Red/System": 1, + "[": 111, + "Title": 2, + "Purpose": 2, + "Language": 2, + "http": 2, + "//www.red": 2, + "-": 74, + "lang.org/": 2, + "]": 114, + "#include": 1, + "%": 2, + "../common/FPU": 1, + "configuration.reds": 1, + ";": 31, + "C": 1, + "types": 1, + "#define": 2, + "time": 2, + "long": 2, + "clock": 1, + "date": 1, + "alias": 2, + "struct": 5, + "second": 1, + "integer": 16, + "(": 6, + ")": 4, + "minute": 1, + "hour": 1, + "day": 1, + "month": 1, + "year": 1, + "Since": 1, + "weekday": 1, + "since": 1, + "Sunday": 1, + "yearday": 1, + "daylight": 1, + "saving": 1, + "Negative": 1, + "unknown": 1, + "#either": 3, + "OS": 3, + "#import": 1, + "LIBC": 1, + "file": 1, + "cdecl": 3, + "Error": 1, + "handling": 1, + "form": 1, + "error": 5, + "Return": 1, + "description.": 1, + "code": 3, + "return": 10, + "c": 7, + "string": 10, + "print": 5, + "Print": 1, + "to": 2, + "standard": 1, + "output.": 1, + "Memory": 1, + "management": 1, + "make": 1, + "Allocate": 1, + "zero": 3, + "filled": 1, + "memory.": 1, + "chunks": 1, + "size": 5, + "binary": 4, + "resize": 1, + "Resize": 1, + "memory": 2, + "allocation.": 1, + "JVM": 6, + "reserved0": 1, + "int": 6, + "ptr": 14, + "reserved1": 1, + "reserved2": 1, + "DestroyJavaVM": 1, + "function": 6, + "JNICALL": 5, + "vm": 5, + "jint": 5, + "AttachCurrentThread": 1, + "penv": 3, + "p": 3, + "args": 2, + "byte": 3, + "DetachCurrentThread": 1, + "GetEnv": 1, + "version": 3, + "AttachCurrentThreadAsDaemon": 1, + "just": 2, + "some": 2, + "datatypes": 1, + "for": 1, + "testing": 1, + "#some": 1, + "hash": 1, + "quit": 2, + "#": 8, + "{": 11, + "FF0000": 3, + "}": 11, + "FF000000": 2, + "with": 4, + "tab": 3, + "instead": 1, + "of": 1, "space": 2, - "space.": 1, - "socket": 1, - "sockets.": 1, - "Number": 4, - "TCP": 1, - "sockets": 3, - "currently": 4, - "use.": 4, - "UDP": 1, - "RAW": 1, - "IP": 1, - "fragments": 1, - "END": 1 + "/wAAAA": 1, + "/wAAA": 2, + "A": 2, + "inside": 2, + "char": 1, + "bla": 2, + "ff": 1, + "foo": 3, + "numbers": 1, + "which": 1, + "interpreter": 1, + "path": 1, + "copy": 2, + "h": 1, + "#if": 1, + "type": 1, + "exe": 1, + "push": 3, + "system/stack/frame": 2, + "save": 1, + "previous": 1, + "frame": 2, + "pointer": 2, + "system/stack/top": 1, + "@@": 1, + "reposition": 1, + "after": 1, + "the": 3, + "catch": 1, + "flag": 1, + "CATCH_ALL": 1, + "exceptions": 1, + "root": 1, + "barrier": 1, + "keep": 1, + "stack": 1, + "aligned": 1, + "on": 1, + "bit": 1, + "Red": 3, + "Author": 1, + "File": 1, + "console.red": 1, + "Tabs": 1, + "Rights": 1, + "License": 2, + "Distributed": 1, + "under": 1, + "Boost": 1, + "Software": 1, + "Version": 1, + "See": 1, + "https": 1, + "//github.com/dockimbel/Red/blob/master/BSL": 1, + "License.txt": 1, + "#system": 1, + "global": 1, + "MacOSX": 2, + "History": 1, + "library": 1, + "add": 2, + "history": 2, + "Add": 1, + "line": 9, + "history.": 1, + "rl": 4, + "insert": 3, + "wrapper": 2, + "func": 1, + "count": 3, + "key": 3, + "Windows": 2, + "system/platform": 1, + "ret": 5, + "AttachConsole": 1, + "if": 2, + "halt": 2, + "SetConsoleTitle": 1, + "as": 4, + "string/rs": 1, + "head": 1, + "str": 4, + "bind": 1, + "input": 2, + "routine": 1, + "prompt": 3, + "/local": 1, + "len": 1, + "buffer": 4, + "string/load": 1, + "+": 1, + "length": 1, + "free": 1, + "SET_RETURN": 1, + "delimiters": 1, + "block": 3, + "list": 1, + "none": 1, + "foreach": 1, + "case": 2, + "escaped": 2, + "no": 2, + "in": 2, + "comment": 2, + "switch": 3, + "mono": 3, + "mode": 3, + "cnt/1": 1, + "red": 1, + "eval": 1, + "load/all": 1, + "unless": 1, + "tail": 1, + "set/any": 1, + "not": 1, + "script/2": 1, + "do": 2, + "skip": 1, + "script": 1, + "init": 1, + "console": 2, + "Console": 1, + "alpha": 1, + "only": 1, + "ASCII": 1, + "supported": 1 }, "BlitzBasic": { "Local": 34, @@ -4906,110 +44110,2661 @@ "return_": 2, "First": 1 }, + "RobotFramework": { + "***": 16, + "Settings": 3, + "Documentation": 3, + "Example": 3, + "test": 6, + "cases": 2, + "using": 4, + "the": 9, + "data": 2, + "-": 16, + "driven": 4, + "testing": 2, + "approach.": 2, + "...": 28, + "Tests": 1, + "use": 2, + "Calculate": 3, + "keyword": 5, + "created": 1, + "in": 5, + "this": 1, + "file": 1, + "that": 5, + "turn": 1, + "uses": 1, + "keywords": 3, + "CalculatorLibrary": 5, + ".": 4, + "An": 1, + "exception": 1, + "is": 6, + "last": 1, + "has": 5, + "a": 4, + "custom": 1, + "_template": 1, + "keyword_.": 1, + "The": 2, + "style": 3, + "works": 3, + "well": 3, + "when": 2, + "you": 1, + "need": 3, + "to": 5, + "repeat": 1, + "same": 1, + "workflow": 3, + "multiple": 2, + "times.": 1, + "Notice": 1, + "one": 1, + "of": 3, + "these": 1, + "tests": 5, + "fails": 1, + "on": 1, + "purpose": 1, + "show": 1, + "how": 1, + "failures": 1, + "look": 1, + "like.": 1, + "Test": 4, + "Template": 2, + "Library": 3, + "Cases": 3, + "Expression": 1, + "Expected": 1, + "Addition": 2, + "+": 6, + "Subtraction": 1, + "Multiplication": 1, + "*": 4, + "Division": 2, + "/": 5, + "Failing": 1, + "Calculation": 3, + "error": 4, + "[": 4, + "]": 4, + "should": 9, + "fail": 2, + "kekkonen": 1, + "Invalid": 2, + "button": 13, + "{": 15, + "EMPTY": 3, + "}": 15, + "expression.": 1, + "by": 3, + "zero.": 1, + "Keywords": 2, + "Arguments": 2, + "expression": 5, + "expected": 4, + "Push": 16, + "buttons": 4, + "C": 4, + "Result": 8, + "be": 9, + "Should": 2, + "cause": 1, + "equal": 1, + "#": 2, + "Using": 1, + "BuiltIn": 1, + "All": 1, + "contain": 1, + "constructed": 1, + "from": 1, + "Creating": 1, + "new": 1, + "or": 1, + "editing": 1, + "existing": 1, + "easy": 1, + "even": 1, + "for": 2, + "people": 2, + "without": 1, + "programming": 1, + "skills.": 1, + "This": 3, + "kind": 2, + "normal": 1, + "automation.": 1, + "If": 1, + "also": 2, + "business": 2, + "understand": 1, + "_gherkin_": 2, + "may": 1, + "work": 1, + "better.": 1, + "Simple": 1, + "calculation": 2, + "Longer": 1, + "Clear": 1, + "built": 1, + "variable": 1, + "case": 1, + "gherkin": 1, + "syntax.": 1, + "similar": 1, + "examples.": 1, + "difference": 1, + "higher": 1, + "abstraction": 1, + "level": 1, + "and": 2, + "their": 1, + "arguments": 1, + "are": 1, + "embedded": 1, + "into": 1, + "names.": 1, + "syntax": 1, + "been": 3, + "made": 1, + "popular": 1, + "http": 1, + "//cukes.info": 1, + "|": 1, + "Cucumber": 1, + "It": 1, + "especially": 1, + "act": 1, + "as": 1, + "examples": 1, + "easily": 1, + "understood": 1, + "people.": 1, + "Given": 1, + "calculator": 1, + "cleared": 2, + "When": 1, + "user": 2, + "types": 2, + "pushes": 2, + "equals": 2, + "Then": 1, + "result": 2, + "Calculator": 1, + "User": 2 + }, + "ApacheConf": { + "#": 182, + "ServerRoot": 2, + "#Listen": 2, + "Listen": 2, + "LoadModule": 126, + "authn_file_module": 2, + "libexec/apache2/mod_authn_file.so": 1, + "authn_dbm_module": 2, + "libexec/apache2/mod_authn_dbm.so": 1, + "authn_anon_module": 2, + "libexec/apache2/mod_authn_anon.so": 1, + "authn_dbd_module": 2, + "libexec/apache2/mod_authn_dbd.so": 1, + "authn_default_module": 2, + "libexec/apache2/mod_authn_default.so": 1, + "authz_host_module": 2, + "libexec/apache2/mod_authz_host.so": 1, + "authz_groupfile_module": 2, + "libexec/apache2/mod_authz_groupfile.so": 1, + "authz_user_module": 2, + "libexec/apache2/mod_authz_user.so": 1, + "authz_dbm_module": 2, + "libexec/apache2/mod_authz_dbm.so": 1, + "authz_owner_module": 2, + "libexec/apache2/mod_authz_owner.so": 1, + "authz_default_module": 2, + "libexec/apache2/mod_authz_default.so": 1, + "auth_basic_module": 2, + "libexec/apache2/mod_auth_basic.so": 1, + "auth_digest_module": 2, + "libexec/apache2/mod_auth_digest.so": 1, + "cache_module": 2, + "libexec/apache2/mod_cache.so": 1, + "disk_cache_module": 2, + "libexec/apache2/mod_disk_cache.so": 1, + "mem_cache_module": 2, + "libexec/apache2/mod_mem_cache.so": 1, + "dbd_module": 2, + "libexec/apache2/mod_dbd.so": 1, + "dumpio_module": 2, + "libexec/apache2/mod_dumpio.so": 1, + "reqtimeout_module": 1, + "libexec/apache2/mod_reqtimeout.so": 1, + "ext_filter_module": 2, + "libexec/apache2/mod_ext_filter.so": 1, + "include_module": 2, + "libexec/apache2/mod_include.so": 1, + "filter_module": 2, + "libexec/apache2/mod_filter.so": 1, + "substitute_module": 1, + "libexec/apache2/mod_substitute.so": 1, + "deflate_module": 2, + "libexec/apache2/mod_deflate.so": 1, + "log_config_module": 3, + "libexec/apache2/mod_log_config.so": 1, + "log_forensic_module": 2, + "libexec/apache2/mod_log_forensic.so": 1, + "logio_module": 3, + "libexec/apache2/mod_logio.so": 1, + "env_module": 2, + "libexec/apache2/mod_env.so": 1, + "mime_magic_module": 2, + "libexec/apache2/mod_mime_magic.so": 1, + "cern_meta_module": 2, + "libexec/apache2/mod_cern_meta.so": 1, + "expires_module": 2, + "libexec/apache2/mod_expires.so": 1, + "headers_module": 2, + "libexec/apache2/mod_headers.so": 1, + "ident_module": 2, + "libexec/apache2/mod_ident.so": 1, + "usertrack_module": 2, + "libexec/apache2/mod_usertrack.so": 1, + "#LoadModule": 4, + "unique_id_module": 2, + "libexec/apache2/mod_unique_id.so": 1, + "setenvif_module": 2, + "libexec/apache2/mod_setenvif.so": 1, + "version_module": 2, + "libexec/apache2/mod_version.so": 1, + "proxy_module": 2, + "libexec/apache2/mod_proxy.so": 1, + "proxy_connect_module": 2, + "libexec/apache2/mod_proxy_connect.so": 1, + "proxy_ftp_module": 2, + "libexec/apache2/mod_proxy_ftp.so": 1, + "proxy_http_module": 2, + "libexec/apache2/mod_proxy_http.so": 1, + "proxy_scgi_module": 1, + "libexec/apache2/mod_proxy_scgi.so": 1, + "proxy_ajp_module": 2, + "libexec/apache2/mod_proxy_ajp.so": 1, + "proxy_balancer_module": 2, + "libexec/apache2/mod_proxy_balancer.so": 1, + "ssl_module": 4, + "libexec/apache2/mod_ssl.so": 1, + "mime_module": 4, + "libexec/apache2/mod_mime.so": 1, + "dav_module": 2, + "libexec/apache2/mod_dav.so": 1, + "status_module": 2, + "libexec/apache2/mod_status.so": 1, + "autoindex_module": 2, + "libexec/apache2/mod_autoindex.so": 1, + "asis_module": 2, + "libexec/apache2/mod_asis.so": 1, + "info_module": 2, + "libexec/apache2/mod_info.so": 1, + "cgi_module": 2, + "libexec/apache2/mod_cgi.so": 1, + "dav_fs_module": 2, + "libexec/apache2/mod_dav_fs.so": 1, + "vhost_alias_module": 2, + "libexec/apache2/mod_vhost_alias.so": 1, + "negotiation_module": 2, + "libexec/apache2/mod_negotiation.so": 1, + "dir_module": 4, + "libexec/apache2/mod_dir.so": 1, + "imagemap_module": 2, + "libexec/apache2/mod_imagemap.so": 1, + "actions_module": 2, + "libexec/apache2/mod_actions.so": 1, + "speling_module": 2, + "libexec/apache2/mod_speling.so": 1, + "userdir_module": 2, + "libexec/apache2/mod_userdir.so": 1, + "alias_module": 4, + "libexec/apache2/mod_alias.so": 1, + "rewrite_module": 2, + "libexec/apache2/mod_rewrite.so": 1, + "perl_module": 1, + "libexec/apache2/mod_perl.so": 1, + "php5_module": 1, + "libexec/apache2/libphp5.so": 1, + "hfs_apple_module": 1, + "libexec/apache2/mod_hfs_apple.so": 1, + "": 17, + "mpm_netware_module": 2, + "mpm_winnt_module": 1, + "User": 2, + "_www": 2, + "Group": 2, + "": 17, + "ServerAdmin": 2, + "you@example.com": 2, + "#ServerName": 2, + "www.example.com": 2, + "DocumentRoot": 2, + "": 6, + "Options": 6, + "FollowSymLinks": 4, + "AllowOverride": 6, + "None": 8, + "Order": 10, + "deny": 10, + "allow": 10, + "Deny": 6, + "from": 10, + "all": 10, + "": 6, + "Library": 2, + "WebServer": 2, + "Documents": 1, + "Indexes": 2, + "MultiViews": 1, + "Allow": 4, + "DirectoryIndex": 2, + "index.html": 2, + "": 2, + "Hh": 1, + "Tt": 1, + "Dd": 1, + "Ss": 2, + "_": 1, + "Satisfy": 4, + "All": 4, + "": 2, + "": 1, + "rsrc": 1, + "": 1, + "": 1, + "namedfork": 1, + "": 1, + "ErrorLog": 2, + "LogLevel": 2, + "warn": 2, + "LogFormat": 6, + "combined": 4, + "common": 4, + "combinedio": 2, + "CustomLog": 2, + "#CustomLog": 2, + "ScriptAliasMatch": 1, + "/cgi": 2, + "-": 43, + "bin/": 2, + "(": 16, + "i": 1, + "webobjects": 1, + ")": 17, + ".*": 3, + "cgid_module": 3, + "#Scriptsock": 2, + "/private/var/run/cgisock": 1, + "CGI": 1, + "Executables": 1, + "DefaultType": 2, + "text/plain": 2, + "TypesConfig": 2, + "/private/etc/apache2/mime.types": 1, + "#AddType": 4, + "application/x": 6, + "gzip": 6, + ".tgz": 6, + "#AddEncoding": 4, + "x": 4, + "compress": 4, + ".Z": 4, + ".gz": 4, + "AddType": 4, + "#AddHandler": 4, + "cgi": 3, + "script": 2, + ".cgi": 2, + "type": 2, + "map": 2, + "var": 2, + "text/html": 2, + ".shtml": 4, + "#AddOutputFilter": 2, + "INCLUDES": 2, + "#MIMEMagicFile": 2, + "/private/etc/apache2/magic": 1, + "#ErrorDocument": 8, + "/missing.html": 2, + "http": 2, + "//www.example.com/subscription_info.html": 2, + "#MaxRanges": 1, + "unlimited": 1, + "#EnableMMAP": 2, + "off": 5, + "#EnableSendfile": 2, + "TraceEnable": 1, + "Include": 6, + "/private/etc/apache2/extra/httpd": 11, + "mpm.conf": 2, + "#Include": 17, + "multilang": 2, + "errordoc.conf": 2, + "autoindex.conf": 2, + "languages.conf": 2, + "userdir.conf": 2, + "info.conf": 2, + "vhosts.conf": 2, + "manual.conf": 2, + "dav.conf": 2, + "default.conf": 2, + "ssl.conf": 2, + "SSLRandomSeed": 4, + "startup": 2, + "builtin": 4, + "connect": 2, + "/private/etc/apache2/other/*.conf": 1, + "ServerSignature": 1, + "Off": 1, + "RewriteCond": 15, + "%": 48, + "{": 16, + "REQUEST_METHOD": 1, + "}": 16, + "HEAD": 1, + "|": 80, + "TRACE": 1, + "DELETE": 1, + "TRACK": 1, + "[": 17, + "NC": 13, + "OR": 14, + "]": 17, + "THE_REQUEST": 1, + "r": 1, + "n": 1, + "A": 6, + "D": 6, + "HTTP_REFERER": 1, + "<|>": 6, + "C": 5, + "E": 5, + "HTTP_COOKIE": 1, + "REQUEST_URI": 1, + "/": 3, + ";": 2, + "<": 1, + ".": 7, + "HTTP_USER_AGENT": 5, + "java": 1, + "curl": 2, + "wget": 2, + "winhttp": 1, + "HTTrack": 1, + "clshttp": 1, + "archiver": 1, + "loader": 1, + "email": 1, + "harvest": 1, + "extract": 1, + "grab": 1, + "miner": 1, + "libwww": 1, + "perl": 1, + "python": 1, + "nikto": 1, + "scan": 1, + "#Block": 1, + "mySQL": 1, + "injects": 1, + "QUERY_STRING": 5, + "*": 1, + "union": 1, + "select": 1, + "insert": 1, + "cast": 1, + "set": 1, + "declare": 1, + "drop": 1, + "update": 1, + "md5": 1, + "benchmark": 1, + "./": 1, + "localhost": 1, + "loopback": 1, + ".0": 2, + ".1": 1, + "a": 1, + "z0": 1, + "RewriteRule": 1, + "index.php": 1, + "F": 1, + "/usr/lib/apache2/modules/mod_authn_file.so": 1, + "/usr/lib/apache2/modules/mod_authn_dbm.so": 1, + "/usr/lib/apache2/modules/mod_authn_anon.so": 1, + "/usr/lib/apache2/modules/mod_authn_dbd.so": 1, + "/usr/lib/apache2/modules/mod_authn_default.so": 1, + "authn_alias_module": 1, + "/usr/lib/apache2/modules/mod_authn_alias.so": 1, + "/usr/lib/apache2/modules/mod_authz_host.so": 1, + "/usr/lib/apache2/modules/mod_authz_groupfile.so": 1, + "/usr/lib/apache2/modules/mod_authz_user.so": 1, + "/usr/lib/apache2/modules/mod_authz_dbm.so": 1, + "/usr/lib/apache2/modules/mod_authz_owner.so": 1, + "authnz_ldap_module": 1, + "/usr/lib/apache2/modules/mod_authnz_ldap.so": 1, + "/usr/lib/apache2/modules/mod_authz_default.so": 1, + "/usr/lib/apache2/modules/mod_auth_basic.so": 1, + "/usr/lib/apache2/modules/mod_auth_digest.so": 1, + "file_cache_module": 1, + "/usr/lib/apache2/modules/mod_file_cache.so": 1, + "/usr/lib/apache2/modules/mod_cache.so": 1, + "/usr/lib/apache2/modules/mod_disk_cache.so": 1, + "/usr/lib/apache2/modules/mod_mem_cache.so": 1, + "/usr/lib/apache2/modules/mod_dbd.so": 1, + "/usr/lib/apache2/modules/mod_dumpio.so": 1, + "/usr/lib/apache2/modules/mod_ext_filter.so": 1, + "/usr/lib/apache2/modules/mod_include.so": 1, + "/usr/lib/apache2/modules/mod_filter.so": 1, + "charset_lite_module": 1, + "/usr/lib/apache2/modules/mod_charset_lite.so": 1, + "/usr/lib/apache2/modules/mod_deflate.so": 1, + "ldap_module": 1, + "/usr/lib/apache2/modules/mod_ldap.so": 1, + "/usr/lib/apache2/modules/mod_log_forensic.so": 1, + "/usr/lib/apache2/modules/mod_env.so": 1, + "/usr/lib/apache2/modules/mod_mime_magic.so": 1, + "/usr/lib/apache2/modules/mod_cern_meta.so": 1, + "/usr/lib/apache2/modules/mod_expires.so": 1, + "/usr/lib/apache2/modules/mod_headers.so": 1, + "/usr/lib/apache2/modules/mod_ident.so": 1, + "/usr/lib/apache2/modules/mod_usertrack.so": 1, + "/usr/lib/apache2/modules/mod_unique_id.so": 1, + "/usr/lib/apache2/modules/mod_setenvif.so": 1, + "/usr/lib/apache2/modules/mod_version.so": 1, + "/usr/lib/apache2/modules/mod_proxy.so": 1, + "/usr/lib/apache2/modules/mod_proxy_connect.so": 1, + "/usr/lib/apache2/modules/mod_proxy_ftp.so": 1, + "/usr/lib/apache2/modules/mod_proxy_http.so": 1, + "/usr/lib/apache2/modules/mod_proxy_ajp.so": 1, + "/usr/lib/apache2/modules/mod_proxy_balancer.so": 1, + "/usr/lib/apache2/modules/mod_ssl.so": 1, + "/usr/lib/apache2/modules/mod_mime.so": 1, + "/usr/lib/apache2/modules/mod_dav.so": 1, + "/usr/lib/apache2/modules/mod_status.so": 1, + "/usr/lib/apache2/modules/mod_autoindex.so": 1, + "/usr/lib/apache2/modules/mod_asis.so": 1, + "/usr/lib/apache2/modules/mod_info.so": 1, + "suexec_module": 1, + "/usr/lib/apache2/modules/mod_suexec.so": 1, + "/usr/lib/apache2/modules/mod_cgid.so": 1, + "/usr/lib/apache2/modules/mod_cgi.so": 1, + "/usr/lib/apache2/modules/mod_dav_fs.so": 1, + "dav_lock_module": 1, + "/usr/lib/apache2/modules/mod_dav_lock.so": 1, + "/usr/lib/apache2/modules/mod_vhost_alias.so": 1, + "/usr/lib/apache2/modules/mod_negotiation.so": 1, + "/usr/lib/apache2/modules/mod_dir.so": 1, + "/usr/lib/apache2/modules/mod_imagemap.so": 1, + "/usr/lib/apache2/modules/mod_actions.so": 1, + "/usr/lib/apache2/modules/mod_speling.so": 1, + "/usr/lib/apache2/modules/mod_userdir.so": 1, + "/usr/lib/apache2/modules/mod_alias.so": 1, + "/usr/lib/apache2/modules/mod_rewrite.so": 1, + "daemon": 2, + "usr": 2, + "share": 1, + "apache2": 1, + "default": 1, + "site": 1, + "htdocs": 1, + "ht": 1, + "/var/log/apache2/error_log": 1, + "/var/log/apache2/access_log": 2, + "ScriptAlias": 1, + "/var/run/apache2/cgisock": 1, + "lib": 1, + "bin": 1, + "/etc/apache2/mime.types": 1, + "/etc/apache2/magic": 1, + "/etc/apache2/extra/httpd": 11 + }, + "Agda": { + "module": 3, + "NatCat": 1, + "where": 2, + "open": 2, + "import": 2, + "Relation.Binary.PropositionalEquality": 1, + "-": 21, + "If": 1, + "you": 2, + "can": 1, + "show": 1, + "that": 1, + "a": 1, + "relation": 1, + "only": 1, + "ever": 1, + "has": 1, + "one": 1, + "inhabitant": 5, + "get": 1, + "the": 1, + "category": 1, + "laws": 1, + "for": 1, + "free": 1, + "EasyCategory": 3, + "(": 36, + "obj": 4, + "Set": 2, + ")": 36, + "_": 6, + "{": 10, + "x": 34, + "y": 28, + "z": 18, + "}": 10, + "id": 9, + "single": 4, + "r": 26, + "s": 29, + "assoc": 2, + "w": 4, + "t": 6, + "Data.Nat": 1, + "same": 5, + ".0": 2, + "n": 14, + "refl": 6, + ".": 5, + "suc": 6, + "m": 6, + "cong": 1, + "trans": 5, + ".n": 1, + "zero": 1, + "Nat": 1 + }, + "Hy": { + ";": 4, + "Fibonacci": 1, + "example": 2, + "in": 2, + "Hy.": 2, + "(": 28, + "defn": 2, + "fib": 4, + "[": 10, + "n": 5, + "]": 10, + "if": 2, + "<": 1, + ")": 28, + "+": 1, + "-": 10, + "__name__": 1, + "for": 2, + "x": 3, + "print": 1, + "The": 1, + "concurrent.futures": 2, + "import": 1, + "ThreadPoolExecutor": 2, + "as": 3, + "completed": 2, + "random": 1, + "randint": 2, + "sh": 1, + "sleep": 2, + "task": 2, + "to": 2, + "do": 2, + "with": 1, + "executor": 2, + "setv": 1, + "jobs": 2, + "list": 1, + "comp": 1, + ".submit": 1, + "range": 1, + "future": 2, + ".result": 1 + }, + "Less": { + "@blue": 4, + "#3bbfce": 1, + ";": 7, + "@margin": 3, + "px": 1, + ".content": 1, + "-": 3, + "navigation": 1, + "{": 2, + "border": 2, + "color": 3, + "darken": 1, + "(": 1, + "%": 1, + ")": 1, + "}": 2, + ".border": 1, + "padding": 1, + "/": 2, + "margin": 1 + }, + "Kit": { + "
": 1, + "

": 1, + "

": 1, + "

": 1, + "

": 1, + "
": 1 + }, + "E": { + "pragma.syntax": 1, + "(": 65, + ")": 64, + "to": 27, + "send": 1, + "message": 4, + "{": 57, + "when": 2, + "friend": 4, + "<-receive(message))>": 1, + "chatUI.showMessage": 4, + "}": 57, + "catch": 2, + "prob": 2, + "receive": 1, + "receiveFriend": 2, + "friendRcvr": 2, + "bind": 2, + "save": 1, + "file": 3, + "file.setText": 1, + "makeURIFromObject": 1, + "chatController": 2, + "load": 1, + "getObjectFromURI": 1, + "file.getText": 1, + "<": 1, + "-": 2, + "def": 24, + "makeVehicle": 3, + "self": 1, + "vehicle": 2, + "milesTillEmpty": 1, + "return": 19, + "self.milesPerGallon": 1, + "*": 1, + "self.getFuelRemaining": 1, + "makeCar": 4, + "var": 6, + "fuelRemaining": 4, + "car": 8, + "extends": 2, + "milesPerGallon": 2, + "getFuelRemaining": 2, + "makeJet": 1, + "jet": 3, + "println": 2, + "The": 2, + "can": 1, + "go": 1, + "car.milesTillEmpty": 1, + "miles.": 1, + "name": 4, + "x": 3, + "y": 3, + "moveTo": 1, + "newX": 2, + "newY": 2, + "getX": 1, + "getY": 1, + "setName": 1, + "newName": 2, + "getName": 1, + "sportsCar": 1, + "sportsCar.moveTo": 1, + "sportsCar.getName": 1, + "is": 1, + "at": 1, + "X": 1, + "location": 1, + "sportsCar.getX": 1, + "makeVOCPair": 1, + "brandName": 3, + "String": 1, + "near": 6, + "myTempContents": 6, + "none": 2, + "brand": 5, + "__printOn": 4, + "out": 4, + "TextWriter": 4, + "void": 5, + "out.print": 4, + "ProveAuth": 2, + "<$brandName>": 3, + "prover": 1, + "getBrand": 4, + "coerce": 2, + "specimen": 2, + "optEjector": 3, + "sealedBox": 2, + "offerContent": 1, + "CheckAuth": 2, + "checker": 3, + "template": 1, + "match": 4, + "[": 10, + "get": 2, + "authList": 2, + "any": 2, + "]": 10, + "specimenBox": 2, + "null": 1, + "if": 2, + "specimenBox.__respondsTo": 1, + "specimenBox.offerContent": 1, + "else": 1, + "for": 3, + "auth": 3, + "in": 1, + "throw.eject": 1, + "Unmatched": 1, + "authorization": 1, + "__respondsTo": 2, + "_": 3, + "true": 1, + "false": 1, + "__getAllegedType": 1, + "null.__getAllegedType": 1, + "tempVow": 2, + "#...use": 1, + "#....": 1, + "report": 1, + "problem": 1, + "finally": 1, + "#....log": 1, + "event": 1, + "#File": 1, + "objects": 1, + "hardwired": 1, + "files": 1, + "file1": 1, + "": 1, + "file2": 1, + "": 1, + "#Using": 2, + "a": 4, + "variable": 1, + "filePath": 2, + "file3": 1, + "": 1, + "single": 1, + "character": 1, + "specify": 1, + "Windows": 1, + "drive": 1, + "file4": 1, + "": 1, + "file5": 1, + "": 1, + "file6": 1, + "": 1 + }, + "DM": { + "#define": 4, + "PI": 6, + "#if": 1, + "G": 1, + "#elif": 1, + "I": 1, + "#else": 1, + "K": 1, + "#endif": 1, + "var/GlobalCounter": 1, + "var/const/CONST_VARIABLE": 1, + "var/list/MyList": 1, + "list": 3, + "(": 17, + "new": 1, + "/datum/entity": 2, + ")": 17, + "var/list/EmptyList": 1, + "[": 2, + "]": 2, + "//": 6, + "creates": 1, + "a": 1, + "of": 1, + "null": 2, + "entries": 1, + "var/list/NullList": 1, + "var/name": 1, + "var/number": 1, + "/datum/entity/proc/myFunction": 1, + "world.log": 5, + "<<": 5, + "/datum/entity/New": 1, + "number": 2, + "GlobalCounter": 1, + "+": 3, + "/datum/entity/unit": 1, + "name": 1, + "/datum/entity/unit/New": 1, + "..": 1, + "calls": 1, + "the": 2, + "parent": 1, + "s": 1, + "proc": 1, + ";": 3, + "equal": 1, + "to": 1, + "super": 1, + "and": 1, + "base": 1, + "in": 1, + "other": 1, + "languages": 1, + "rand": 1, + "/datum/entity/unit/myFunction": 1, + "/proc/ReverseList": 1, + "var/list/input": 1, + "var/list/output": 1, + "for": 1, + "var/i": 1, + "input.len": 1, + "i": 3, + "-": 2, + "IMPORTANT": 1, + "List": 1, + "Arrays": 1, + "count": 1, + "from": 1, + "output": 2, + "input": 1, + "is": 2, + "return": 3, + "/proc/DoStuff": 1, + "var/bitflag": 2, + "bitflag": 4, + "|": 1, + "/proc/DoOtherStuff": 1, + "bits": 1, + "maximum": 1, + "amount": 1, + "&": 1, + "/proc/DoNothing": 1, + "var/pi": 1, + "if": 2, + "pi": 2, + "else": 2, + "CONST_VARIABLE": 1, + "#undef": 1, + "Undefine": 1 + }, + "OpenCL": { + "double": 3, + "run_fftw": 1, + "(": 18, + "int": 3, + "n": 4, + "const": 4, + "float": 3, + "*": 5, + "x": 5, + "y": 4, + ")": 18, + "{": 4, + "fftwf_plan": 1, + "p1": 3, + "fftwf_plan_dft_1d": 1, + "fftwf_complex": 2, + "FFTW_FORWARD": 1, + "FFTW_ESTIMATE": 1, + ";": 12, + "nops": 3, + "t": 4, + "cl": 2, + "realTime": 2, + "for": 1, + "op": 3, + "<": 1, + "+": 4, + "fftwf_execute": 1, + "}": 4, + "-": 1, + "/": 1, + "fftwf_destroy_plan": 1, + "return": 1, + "typedef": 1, + "foo_t": 3, + "#ifndef": 1, + "ZERO": 3, + "#define": 2, + "#endif": 1, + "FOO": 1, + "__kernel": 1, + "void": 1, + "foo": 1, + "__global": 1, + "__local": 1, + "uint": 1, + "barrier": 1, + "CLK_LOCAL_MEM_FENCE": 1, + "if": 1, + "*x": 1 + }, + "ShellSession": { + "gem": 4, + "install": 4, + "nokogiri": 6, + "...": 4, + "Building": 2, + "native": 2, + "extensions.": 2, + "This": 4, + "could": 2, + "take": 2, + "a": 4, + "while...": 2, + "checking": 1, + "for": 4, + "libxml/parser.h...": 1, + "***": 2, + "extconf.rb": 1, + "failed": 1, + "Could": 2, + "not": 2, + "create": 1, + "Makefile": 1, + "due": 1, + "to": 3, + "some": 1, + "reason": 2, + "probably": 1, + "lack": 1, + "of": 2, + "necessary": 1, + "libraries": 1, + "and/or": 1, + "headers.": 1, + "Check": 1, + "the": 2, + "mkmf.log": 1, + "file": 1, + "more": 1, + "details.": 1, + "You": 1, + "may": 1, + "need": 1, + "configuration": 1, + "options.": 1, + "brew": 2, + "tap": 2, + "homebrew/dupes": 1, + "Cloning": 1, + "into": 1, + "remote": 3, + "Counting": 1, + "objects": 3, + "done.": 4, + "Compressing": 1, + "%": 5, + "(": 6, + "/591": 1, + ")": 6, + "Total": 1, + "delta": 2, + "reused": 1, + "Receiving": 1, + "/1034": 1, + "KiB": 1, + "|": 1, + "bytes/s": 1, + "Resolving": 1, + "deltas": 1, + "/560": 1, + "Checking": 1, + "connectivity...": 1, + "done": 1, + "Warning": 1, + "homebrew/dupes/lsof": 1, + "over": 1, + "mxcl/master/lsof": 1, + "Tapped": 1, + "formula": 4, + "apple": 1, + "-": 12, + "gcc42": 1, + "Downloading": 1, + "http": 2, + "//r.research.att.com/tools/gcc": 1, + "darwin11.pkg": 1, + "########################################################################": 1, + "Caveats": 1, + "NOTE": 1, + "provides": 1, + "components": 1, + "that": 1, + "were": 1, + "removed": 1, + "from": 3, + "XCode": 2, + "in": 2, + "release.": 1, + "There": 1, + "is": 2, + "no": 1, + "this": 1, + "if": 1, + "you": 1, + "are": 1, + "using": 1, + "version": 1, + "prior": 1, + "contains": 1, + "compilers": 2, + "built": 2, + "Apple": 1, + "s": 1, + "GCC": 1, + "sources": 1, + "build": 1, + "available": 1, + "//opensource.apple.com/tarballs/gcc": 1, + "All": 1, + "have": 1, + "suffix.": 1, + "A": 1, + "GFortran": 1, + "compiler": 1, + "also": 1, + "included.": 1, + "Summary": 1, + "/usr/local/Cellar/apple": 1, + "gcc42/4.2.1": 1, + "files": 1, + "M": 1, + "seconds": 1, + "v": 1, + "Fetching": 1, + "Successfully": 1, + "installed": 2, + "Installing": 2, + "ri": 1, + "documentation": 2, + "RDoc": 1, + "echo": 2, + "FOOBAR": 2, + "Hello": 2, + "World": 2 + }, + "GLSL": { + "#version": 2, + "core": 1, + "void": 31, + "main": 5, + "(": 435, + ")": 435, + "{": 82, + "}": 82, + "float": 105, + "cbar": 2, + "int": 8, + ";": 383, + "cfoo": 1, + "CB": 2, + "CD": 2, + "CA": 1, + "CC": 1, + "CBT": 5, + "CDT": 3, + "CAT": 1, + "CCT": 1, + "norA": 4, + "norB": 3, + "norC": 1, + "norD": 1, + "norE": 4, + "norF": 1, + "norG": 1, + "norH": 1, + "norI": 1, + "norcA": 2, + "norcB": 3, + "norcC": 2, + "norcD": 2, + "//": 38, + "head": 1, + "of": 1, + "cycle": 2, + "norcE": 1, + "lead": 1, + "into": 1, + "////": 4, + "High": 1, + "quality": 2, + "Some": 1, + "browsers": 1, + "may": 1, + "freeze": 1, + "or": 1, + "crash": 1, + "//#define": 10, + "HIGHQUALITY": 2, + "Medium": 1, + "Should": 1, + "be": 1, + "fine": 1, + "on": 3, + "all": 1, + "systems": 1, + "works": 1, + "Intel": 1, + "HD2000": 1, + "Win7": 1, + "but": 1, + "quite": 1, + "slow": 1, + "MEDIUMQUALITY": 2, + "Defaults": 1, + "REFLECTIONS": 3, + "#define": 13, + "SHADOWS": 5, + "GRASS": 3, + "SMALL_WAVES": 4, + "RAGGED_LEAVES": 5, + "DETAILED_NOISE": 3, + "LIGHT_AA": 3, + "sample": 2, + "SSAA": 2, + "HEAVY_AA": 2, + "x2": 5, + "RG": 1, + "TONEMAP": 5, + "Configurations": 1, + "#ifdef": 14, + "#endif": 14, + "const": 19, + "eps": 5, + "e": 4, + "-": 108, + "PI": 3, + "vec3": 165, + "sunDir": 5, + "skyCol": 4, + "sandCol": 2, + "treeCol": 2, + "grassCol": 2, + "leavesCol": 4, + "leavesPos": 4, + "sunCol": 5, + "#else": 5, + "exposure": 1, + "Only": 1, + "used": 1, + "when": 1, + "tonemapping": 1, + "mod289": 4, + "x": 11, + "return": 47, + "floor": 8, + "*": 115, + "/": 24, + "vec4": 73, + "permute": 4, + "x*34.0": 1, + "+": 108, + "*x": 3, + "taylorInvSqrt": 2, + "r": 14, + "snoise": 7, + "v": 8, + "vec2": 26, + "C": 1, + "/6.0": 1, + "/3.0": 1, + "D": 1, + "i": 38, + "dot": 30, + "C.yyy": 2, + "x0": 7, + "C.xxx": 2, + "g": 2, + "step": 2, + "x0.yzx": 1, + "x0.xyz": 1, + "l": 1, + "i1": 2, + "min": 11, + "g.xyz": 2, + "l.zxy": 2, + "i2": 2, + "max": 9, + "x1": 4, + "*C.x": 2, + "/3": 1, + "C.y": 1, + "x3": 4, + "D.yyy": 1, + "D.y": 1, + "p": 26, + "i.z": 1, + "i1.z": 1, + "i2.z": 1, + "i.y": 1, + "i1.y": 1, + "i2.y": 1, + "i.x": 1, + "i1.x": 1, + "i2.x": 1, + "n_": 2, + "/7.0": 1, + "ns": 4, + "D.wyz": 1, + "D.xzx": 1, + "j": 4, + "ns.z": 3, + "mod": 2, + "*7": 1, + "x_": 3, + "y_": 2, + "N": 1, + "*ns.x": 2, + "ns.yyyy": 2, + "y": 2, + "h": 21, + "abs": 2, + "b0": 3, + "x.xy": 1, + "y.xy": 1, + "b1": 3, + "x.zw": 1, + "y.zw": 1, + "//vec4": 3, + "s0": 2, + "lessThan": 2, + "*2.0": 4, + "s1": 2, + "sh": 1, + "a0": 1, + "b0.xzyw": 1, + "s0.xzyw*sh.xxyy": 1, + "a1": 1, + "b1.xzyw": 1, + "s1.xzyw*sh.zzww": 1, + "p0": 5, + "a0.xy": 1, + "h.x": 1, + "p1": 5, + "a0.zw": 1, + "h.y": 1, + "p2": 5, + "a1.xy": 1, + "h.z": 1, + "p3": 5, + "a1.zw": 1, + "h.w": 1, + "//Normalise": 1, + "gradients": 1, + "norm": 1, + "norm.x": 1, + "norm.y": 1, + "norm.z": 1, + "norm.w": 1, + "m": 8, + "m*m": 1, + "fbm": 2, + "final": 5, + "waterHeight": 4, + "d": 10, + "length": 7, + "p.xz": 2, + "sin": 8, + "iGlobalTime": 7, + "Island": 1, + "waves": 3, + "p*0.5": 1, + "Other": 1, + "bump": 2, + "pos": 42, + "rayDir": 43, + "s": 23, + "Fade": 1, + "out": 1, + "to": 1, + "reduce": 1, + "aliasing": 1, + "dist": 7, + "<": 23, + "sqrt": 6, + "Calculate": 1, + "normal": 7, + "from": 2, + "heightmap": 1, + "pos.x": 1, + "iGlobalTime*0.5": 1, + "pos.z": 2, + "*0.7": 1, + "*s": 4, + "normalize": 14, + "e.xyy": 1, + "e.yxy": 1, + "intersectSphere": 2, + "rpos": 5, + "rdir": 3, + "rad": 2, + "op": 5, + "b": 5, + "det": 11, + "b*b": 2, + "rad*rad": 2, + "if": 29, + "t": 44, + "rdir*t": 1, + "intersectCylinder": 1, + "rdir2": 2, + "rdir.yz": 1, + "op.yz": 3, + "rpos.yz": 2, + "rdir2*t": 2, + "pos.yz": 2, + "intersectPlane": 3, + "rayPos": 38, + "n": 18, + "sign": 1, + "rotate": 5, + "theta": 6, + "c": 6, + "cos": 4, + "p.x": 2, + "p.z": 2, + "p.y": 1, + "impulse": 2, + "k": 8, + "by": 1, + "iq": 2, + "k*x": 1, + "exp": 2, + "grass": 2, + "Optimization": 1, + "Avoid": 1, + "noise": 1, + "too": 1, + "far": 1, + "away": 1, + "pos.y": 8, + "tree": 2, + "pos.y*0.03": 2, + "mat2": 2, + "m*pos.xy": 1, + "width": 2, + "clamp": 4, + "scene": 7, + "vtree": 4, + "vgrass": 2, + ".x": 4, + "eps.xyy": 1, + "eps.yxy": 1, + "eps.yyx": 1, + "plantsShadow": 2, + "Soft": 1, + "shadow": 4, + "taken": 1, + "for": 7, + "rayDir*t": 2, + "res": 6, + "res.x": 3, + "k*res.x/t": 1, + "s*s*": 1, + "intersectWater": 2, + "rayPos.y": 1, + "rayDir.y": 1, + "intersectSand": 3, + "intersectTreasure": 2, + "intersectLeaf": 2, + "openAmount": 4, + "dir": 2, + "offset": 5, + "rayDir*res.w": 1, + "pos*0.8": 2, + "||": 3, + "res.w": 6, + "res2": 2, + "dir.xy": 1, + "dir.z": 1, + "rayDir*res2.w": 1, + "res2.w": 3, + "&&": 10, + "leaves": 7, + "e20": 3, + "sway": 5, + "fract": 1, + "upDownSway": 2, + "angleOffset": 3, + "Left": 1, + "right": 1, + "alpha": 3, + "Up": 1, + "down": 1, + "k*10.0": 1, + "p.xzy": 1, + ".xzy": 2, + "d.xzy": 1, + "Shift": 1, + "Intersect": 11, + "individual": 1, + "leaf": 1, + "res.xyz": 1, + "sand": 2, + "resSand": 2, + "//if": 1, + "resSand.w": 4, + "plants": 6, + "resLeaves": 3, + "resLeaves.w": 10, + "e7": 3, + "light": 5, + "sunDir*0.01": 2, + "col": 32, + "n.y": 3, + "lightLeaves": 3, + "ao": 5, + "sky": 5, + "res.y": 2, + "uvFact": 2, + "uv": 12, + "n.x": 1, + "tex": 6, + "texture2D": 6, + "iChannel0": 3, + ".rgb": 2, + "e8": 1, + "traceReflection": 2, + "resPlants": 2, + "resPlants.w": 6, + "resPlants.xyz": 2, + "pos.xz": 2, + "leavesPos.xz": 2, + ".r": 3, + "resLeaves.xyz": 2, + "trace": 2, + "resSand.xyz": 1, + "treasure": 1, + "chest": 1, + "resTreasure": 1, + "resTreasure.w": 4, + "resTreasure.xyz": 1, + "water": 1, + "resWater": 1, + "resWater.w": 4, + "ct": 2, + "fresnel": 2, + "pow": 3, + "trans": 2, + "reflDir": 3, + "reflect": 1, + "refl": 3, + "resWater.t": 1, + "mix": 2, + "camera": 8, + "px": 4, + "rd": 1, + "iResolution.yy": 1, + "iResolution.x/iResolution.y*0.5": 1, + "rd.x": 1, + "rd.y": 1, + "gl_FragCoord.xy": 7, + "*0.25": 4, + "*0.5": 1, + "Optimized": 1, + "Haarm": 1, + "Peter": 1, + "Duiker": 1, + "curve": 1, + "col*exposure": 1, + "x*": 2, + ".5": 1, + "gl_FragColor": 3, + "uniform": 7, + "kCoeff": 2, + "kCube": 2, + "uShift": 3, + "vShift": 3, + "chroma_red": 2, + "chroma_green": 2, + "chroma_blue": 2, + "bool": 1, + "apply_disto": 4, + "sampler2D": 1, + "input1": 4, + "adsk_input1_w": 4, + "adsk_input1_h": 3, + "adsk_input1_aspect": 1, + "adsk_input1_frameratio": 5, + "adsk_result_w": 3, + "adsk_result_h": 2, + "distortion_f": 3, + "f": 17, + "r*r": 1, + "inverse_f": 2, + "[": 29, + "]": 29, + "lut": 9, + "max_r": 2, + "incr": 2, + "lut_r": 5, + ".z": 5, + ".y": 2, + "aberrate": 4, + "chroma": 2, + "chromaticize_and_invert": 2, + "rgb_f": 5, + "px.x": 2, + "px.y": 2, + "uv.x": 11, + "uv.y": 7, + "*2": 2, + "uv.x*uv.x": 1, + "uv.y*uv.y": 1, + "else": 1, + "rgb_uvs": 12, + "rgb_f.rr": 1, + "rgb_f.gg": 1, + "rgb_f.bb": 1, + "sampled": 1, + "sampled.r": 1, + "sampled.g": 1, + ".g": 1, + "sampled.b": 1, + ".b": 1, + "gl_FragColor.rgba": 1, + "sampled.rgb": 1, + "static": 1, + "char*": 1, + "SimpleFragmentShader": 1, + "STRINGIFY": 1, + "varying": 4, + "FrontColor": 2, + "NUM_LIGHTS": 4, + "AMBIENT": 2, + "MAX_DIST": 3, + "MAX_DIST_SQUARED": 3, + "lightColor": 3, + "fragmentNormal": 2, + "cameraVector": 2, + "lightVector": 4, + "initialize": 1, + "diffuse/specular": 1, + "lighting": 1, + "diffuse": 4, + "specular": 4, + "the": 1, + "fragment": 1, + "and": 2, + "direction": 1, + "cameraDir": 2, + "loop": 1, + "through": 1, + "each": 1, + "calculate": 1, + "distance": 1, + "between": 1, + "distFactor": 3, + "lightDir": 3, + "diffuseDot": 2, + "halfAngle": 2, + "specularColor": 2, + "specularDot": 2, + "sample.rgb": 1, + "sample.a": 1 + }, + "ECL": { + "#option": 1, + "(": 32, + "true": 1, + ")": 32, + ";": 23, + "namesRecord": 4, + "RECORD": 1, + "string20": 1, + "surname": 1, + "string10": 2, + "forename": 1, + "integer2": 5, + "age": 2, + "dadAge": 1, + "mumAge": 1, + "END": 1, + "namesRecord2": 3, + "record": 1, + "extra": 1, + "end": 1, + "namesTable": 11, + "dataset": 2, + "FLAT": 2, + "namesTable2": 9, + "aveAgeL": 3, + "l": 1, + "l.dadAge": 1, + "+": 16, + "l.mumAge": 1, + "/2": 2, + "aveAgeR": 4, + "r": 1, + "r.dadAge": 1, + "r.mumAge": 1, + "output": 9, + "join": 11, + "left": 2, + "right": 3, + "//Several": 1, + "simple": 1, + "examples": 1, + "of": 1, + "sliding": 2, + "syntax": 1, + "left.age": 8, + "right.age": 12, + "-": 5, + "and": 10, + "<": 1, + "between": 7, + "//Same": 1, + "but": 1, + "on": 1, + "strings.": 1, + "Also": 1, + "includes": 1, + "to": 1, + "ensure": 1, + "sort": 1, + "is": 1, + "done": 1, + "by": 1, + "non": 1, + "before": 1, + "sliding.": 1, + "left.surname": 2, + "right.surname": 4, + "[": 4, + "]": 4, + "all": 1, + "//This": 1, + "should": 1, + "not": 1, + "generate": 1, + "a": 1, + "self": 1 + }, + "Makefile": { + "SHEBANG#!make": 1, + "%": 1, + "ls": 1, + "-": 6, + "l": 1, + "all": 1, + "hello": 4, + "main.o": 3, + "factorial.o": 3, + "hello.o": 3, + "g": 4, + "+": 8, + "o": 1, + "main.cpp": 2, + "c": 3, + "factorial.cpp": 2, + "hello.cpp": 2, + "clean": 1, + "rm": 1, + "rf": 1, + "*o": 1 + }, + "Haskell": { + "module": 2, + "Sudoku": 9, + "(": 8, + "solve": 5, + "isSolved": 4, + "pPrint": 5, + ")": 8, + "where": 4, + "import": 6, + "Data.Maybe": 2, + "Data.List": 1, + "Data.List.Split": 1, + "type": 1, + "[": 4, + "Int": 1, + "]": 3, + "-": 3, + "Maybe": 1, + "sudoku": 36, + "|": 8, + "Just": 1, + "otherwise": 2, + "do": 3, + "index": 27, + "<": 1, + "elemIndex": 1, + "let": 2, + "sudokus": 2, + "nextTest": 5, + "i": 7, + "<->": 1, + "1": 2, + "9": 7, + "checkRow": 2, + "checkColumn": 2, + "checkBox": 2, + "listToMaybe": 1, + "mapMaybe": 1, + "take": 1, + "drop": 1, + "length": 12, + "getRow": 3, + "nub": 6, + "getColumn": 3, + "getBox": 3, + "filter": 3, + "0": 3, + "chunksOf": 10, + "quot": 3, + "transpose": 4, + "mod": 2, + "map": 13, + "concat": 2, + "concatMap": 2, + "3": 4, + "27": 1, + "Bool": 1, + "product": 1, + "False": 4, + ".": 4, + "sudokuRows": 4, + "/": 3, + "sudokuColumns": 3, + "sudokuBoxes": 3, + "True": 1, + "String": 1, + "intercalate": 2, + "show": 1, + "Data.Char": 1, + "main": 4, + "IO": 2, + "hello": 2, + "putStrLn": 3, + "toUpper": 1, + "Main": 1, + "+": 2, + "fromMaybe": 1 + }, + "Slim": { + "doctype": 1, + "html": 2, + "head": 1, + "title": 1, + "Slim": 2, + "Examples": 1, + "meta": 2, + "name": 2, + "content": 2, + "author": 2, + "javascript": 1, + "alert": 1, + "(": 1, + ")": 1, + "body": 1, + "h1": 1, + "Markup": 1, + "examples": 1, + "#content": 1, + "p": 2, + "This": 1, + "example": 1, + "shows": 1, + "you": 2, + "how": 1, + "a": 1, + "basic": 1, + "file": 1, + "looks": 1, + "like.": 1, + "yield": 1, + "-": 3, + "unless": 1, + "items.empty": 1, + "table": 1, + "for": 1, + "item": 1, + "in": 1, + "items": 2, + "do": 1, + "tr": 1, + "td.name": 1, + "item.name": 1, + "td.price": 1, + "item.price": 1, + "else": 1, + "|": 2, + "No": 1, + "found.": 1, + "Please": 1, + "add": 1, + "some": 1, + "inventory.": 1, + "Thank": 1, + "div": 1, + "id": 1, + "render": 1, + "Copyright": 1, + "#": 2, + "{": 2, + "year": 1, + "}": 2 + }, + "Zephir": { + "namespace": 3, + "Test": 2, + "Router": 1, + ";": 86, + "class": 2, + "Route": 1, + "{": 56, + "protected": 9, + "_pattern": 3, + "_compiledPattern": 3, + "_paths": 3, + "_methods": 5, + "_hostname": 3, + "_converters": 3, + "_id": 2, + "_name": 3, + "_beforeMatch": 3, + "public": 22, + "function": 22, + "__construct": 1, + "(": 55, + "pattern": 37, + "paths": 7, + "null": 11, + "httpMethods": 6, + ")": 53, + "this": 28, + "-": 25, + "reConfigure": 2, + "let": 51, + "}": 50, + "compilePattern": 2, + "var": 4, + "idPattern": 6, + "if": 39, + "memstr": 10, + "str_replace": 6, + "return": 25, + ".": 5, + "via": 1, + "extractNamedParams": 2, + "string": 6, + "char": 1, + "ch": 27, + "tmp": 4, + "matches": 5, + "boolean": 1, + "notValid": 5, + "false": 3, + "int": 3, + "cursor": 4, + "cursorVar": 5, + "marker": 4, + "bracketCount": 7, + "parenthesesCount": 5, + "foundPattern": 6, + "intermediate": 4, + "numberMatches": 4, + "route": 12, + "item": 7, + "variable": 5, + "regexp": 7, + "strlen": 1, + "<=>": 5, + "0": 9, + "for": 4, + "in": 4, + "1": 3, + "else": 11, + "+": 5, + "substr": 3, + "break": 9, + "&&": 6, + "z": 2, + "Z": 2, + "true": 2, + "<='9')>": 1, + "_": 1, + "2": 2, + "continue": 1, + "[": 14, + "]": 14, + "moduleName": 5, + "controllerName": 7, + "actionName": 4, + "parts": 9, + "routePaths": 5, + "realClassName": 1, + "namespaceName": 1, + "pcrePattern": 4, + "compiledPattern": 4, + "extracted": 4, + "typeof": 2, + "throw": 1, + "new": 1, + "Exception": 1, + "explode": 1, + "switch": 1, + "count": 1, + "case": 3, + "controller": 1, + "action": 1, + "array": 1, + "The": 1, + "contains": 1, + "invalid": 1, + "#": 1, + "array_merge": 1, + "//Update": 1, + "the": 1, + "s": 1, + "name": 5, + "*": 2, + "@return": 1, + "*/": 1, + "getName": 1, + "setName": 1, + "beforeMatch": 1, + "callback": 2, + "getBeforeMatch": 1, + "getRouteId": 1, + "getPattern": 1, + "getCompiledPattern": 1, + "getPaths": 1, + "getReversedPaths": 1, + "reversed": 4, + "path": 3, + "position": 3, + "setHttpMethods": 1, + "getHttpMethods": 1, + "setHostname": 1, + "hostname": 2, + "getHostname": 1, + "convert": 1, + "converter": 2, + "getConverters": 1, + "%": 10, + "#define": 1, + "MAX_FACTOR": 3, + "#include": 1, + "static": 1, + "long": 3, + "fibonacci": 4, + "n": 5, + "<": 1, + "Cblock": 1, + "testCblock1": 1, + "a": 6, + "testCblock2": 1 + }, + "INI": { + "[": 2, + "user": 1, + "]": 2, + "name": 1, + "Josh": 1, + "Peek": 1, + "email": 1, + "josh@github.com": 1, + ";": 1, + "editorconfig.org": 1, + "root": 1, + "true": 3, + "*": 1, + "indent_style": 1, + "space": 1, + "indent_size": 1, + "end_of_line": 1, + "lf": 1, + "charset": 1, + "utf": 1, + "-": 1, + "trim_trailing_whitespace": 1, + "insert_final_newline": 1 + }, + "OCaml": { + "{": 11, + "shared": 1, + "open": 4, + "Eliom_content": 1, + "Html5.D": 1, + "Eliom_parameter": 1, + "}": 13, + "server": 2, + "module": 5, + "Example": 1, + "Eliom_registration.App": 1, + "(": 21, + "struct": 5, + "let": 13, + "application_name": 1, + "end": 5, + ")": 23, + "main": 2, + "Eliom_service.service": 1, + "path": 1, + "[": 13, + "]": 13, + "get_params": 1, + "unit": 5, + "client": 1, + "hello_popup": 2, + "Dom_html.window##alert": 1, + "Js.string": 1, + "_": 2, + "Example.register": 1, + "service": 1, + "fun": 9, + "-": 22, + "Lwt.return": 1, + "html": 1, + "head": 1, + "title": 1, + "pcdata": 4, + "body": 1, + "h1": 1, + ";": 14, + "p": 1, + "h2": 1, + "a": 4, + "a_onclick": 1, + "type": 2, + "Ops": 2, + "@": 6, + "f": 10, + "k": 21, + "|": 15, + "x": 14, + "List": 1, + "rec": 3, + "map": 3, + "l": 8, + "match": 4, + "with": 4, + "hd": 6, + "tl": 6, + "fold": 2, + "acc": 5, + "Option": 1, + "opt": 2, + "None": 5, + "Some": 5, + "Lazy": 1, + "option": 1, + "mutable": 1, + "waiters": 5, + "make": 1, + "push": 4, + "cps": 7, + "value": 3, + "force": 1, + "l.value": 2, + "when": 1, + "l.waiters": 5, + "<->": 3, + "function": 1, + "Base.List.iter": 1, + "l.push": 1, + "<": 1, + "get_state": 1, + "lazy_from_val": 1 + }, + "VCL": { + "sub": 23, + "vcl_recv": 2, + "{": 50, + "if": 14, + "(": 50, + "req.request": 18, + "&&": 14, + ")": 50, + "return": 33, + "pipe": 4, + ";": 48, + "}": 50, + "pass": 9, + "req.http.Authorization": 2, + "||": 4, + "req.http.Cookie": 2, + "lookup": 2, + "vcl_pipe": 2, + "vcl_pass": 2, + "vcl_hash": 2, + "set": 10, + "req.hash": 3, + "+": 17, + "req.url": 2, + "req.http.host": 4, + "else": 3, + "server.ip": 2, + "hash": 2, + "vcl_hit": 2, + "obj.cacheable": 2, + "deliver": 8, + "vcl_miss": 2, + "fetch": 3, + "vcl_fetch": 2, + "obj.http.Set": 1, + "-": 21, + "Cookie": 2, + "obj.prefetch": 1, + "s": 3, + "vcl_deliver": 2, + "vcl_discard": 1, + "discard": 2, + "vcl_prefetch": 1, + "vcl_timeout": 1, + "vcl_error": 2, + "obj.http.Content": 2, + "Type": 2, + "synthetic": 2, + "utf": 2, + "//W3C//DTD": 2, + "XHTML": 2, + "Strict//EN": 2, + "http": 3, + "//www.w3.org/TR/xhtml1/DTD/xhtml1": 2, + "strict.dtd": 2, + "obj.status": 4, + "obj.response": 6, + "req.xid": 2, + "//www.varnish": 1, + "cache.org/": 1, + "req.restarts": 1, + "req.http.x": 1, + "forwarded": 1, + "for": 1, + "req.http.X": 3, + "Forwarded": 3, + "For": 3, + "client.ip": 2, + "hash_data": 3, + "beresp.ttl": 2, + "<": 1, + "beresp.http.Set": 1, + "beresp.http.Vary": 1, + "hit_for_pass": 1, + "obj.http.Retry": 1, + "After": 1, + "vcl_init": 1, + "ok": 2, + "vcl_fini": 1 + }, + "Smalltalk": { + "tests": 2, + "testSimpleChainMatches": 1, + "|": 18, + "e": 11, + "eCtrl": 3, + "self": 25, + "eventKey": 3, + "e.": 1, + "ctrl": 5, + "true.": 1, + "assert": 2, + "(": 19, + ")": 19, + "matches": 4, + "{": 4, + "}": 4, + ".": 16, + "eCtrl.": 2, + "deny": 2, + "a": 1, + "Koan": 1, + "subclass": 2, + "TestBasic": 1, + "[": 18, + "": 1, + "A": 1, + "collection": 1, + "of": 1, + "introductory": 1, + "testDeclarationAndAssignment": 1, + "declaration": 2, + "anotherDeclaration": 2, + "_": 1, + "expect": 10, + "fillMeIn": 10, + "toEqual": 10, + "declaration.": 1, + "anotherDeclaration.": 1, + "]": 18, + "testEqualSignIsNotAnAssignmentOperator": 1, + "variableA": 6, + "variableB": 5, + "value": 2, + "variableB.": 2, + "testMultipleStatementsInASingleLine": 1, + "variableC": 2, + "variableA.": 1, + "variableC.": 1, + "testInequality": 1, + "testLogicalOr": 1, + "expression": 4, + "<": 2, + "expression.": 2, + "testLogicalAnd": 1, + "&": 1, + "testNot": 1, + "true": 2, + "not.": 1, + "Object": 1, + "#Philosophers": 1, + "instanceVariableNames": 1, + "classVariableNames": 1, + "poolDictionaries": 1, + "category": 1, + "Philosophers": 3, + "class": 1, + "methodsFor": 2, + "new": 4, + "shouldNotImplement": 1, + "quantity": 2, + "super": 1, + "initialize": 3, + "dine": 4, + "seconds": 2, + "Delay": 3, + "forSeconds": 1, + "wait.": 5, + "philosophers": 2, + "do": 1, + "each": 5, + "terminate": 1, + "size": 4, + "leftFork": 6, + "n": 11, + "forks": 5, + "at": 3, + "rightFork": 6, + "ifTrue": 1, + "ifFalse": 1, + "+": 1, + "eating": 3, + "Semaphore": 2, + "new.": 2, + "-": 1, + "timesRepeat": 1, + "signal": 1, + "randy": 3, + "Random": 1, + "to": 2, + "collect": 2, + "forMutualExclusion": 1, + "philosopher": 2, + "philosopherCode": 3, + "status": 8, + "n.": 2, + "printString": 1, + "whileTrue": 1, + "Transcript": 5, + "nextPutAll": 5, + ";": 8, + "nl.": 5, + "forMilliseconds": 2, + "next": 2, + "*": 2, + "critical": 1, + "signal.": 2, + "newProcess": 1, + "priority": 1, + "Processor": 1, + "userBackgroundPriority": 1, + "name": 1, + "resume": 1, + "yourself": 1 + }, + "Parrot Assembly": { + "SHEBANG#!parrot": 1, + ".pcc_sub": 1, + "main": 2, + "say": 1, + "end": 1 + }, + "Protocol Buffer": { + "package": 1, + "tutorial": 1, + ";": 13, + "option": 2, + "java_package": 1, + "java_outer_classname": 1, + "message": 3, + "Person": 2, + "{": 4, + "required": 3, + "string": 3, + "name": 1, + "int32": 1, + "id": 1, + "optional": 2, + "email": 1, + "enum": 1, + "PhoneType": 2, + "MOBILE": 1, + "HOME": 2, + "WORK": 1, + "}": 4, + "PhoneNumber": 2, + "number": 1, + "type": 1, + "[": 1, + "default": 1, + "]": 1, + "repeated": 2, + "phone": 1, + "AddressBook": 1, + "person": 1 + }, + "SQL": { + "SHOW": 2, + "WARNINGS": 2, + ";": 31, + "-": 496, + "Table": 9, + "structure": 9, + "for": 15, + "table": 17, + "articles": 4, + "CREATE": 10, + "TABLE": 10, + "IF": 13, + "NOT": 46, + "EXISTS": 12, + "(": 131, + "id": 22, + "int": 28, + ")": 131, + "NULL": 91, + "AUTO_INCREMENT": 9, + "title": 4, + "varchar": 22, + "DEFAULT": 22, + "content": 2, + "longtext": 1, + "date_posted": 4, + "datetime": 10, + "created_by": 2, + "last_modified": 2, + "last_modified_by": 2, + "ordering": 2, + "is_published": 2, + "PRIMARY": 9, + "KEY": 13, + "Dumping": 6, + "data": 6, + "INSERT": 6, + "INTO": 6, + "VALUES": 6, + "challenges": 4, + "pkg_name": 2, + "description": 2, + "text": 1, + "author": 2, + "category": 2, + "visibility": 2, + "publish": 2, + "abstract": 2, + "level": 2, + "duration": 2, + "goal": 2, + "solution": 2, + "availability": 2, + "default_points": 2, + "default_duration": 2, + "challenge_attempts": 2, + "user_id": 8, + "challenge_id": 7, + "time": 1, + "status": 1, + "challenge_attempt_count": 2, + "tries": 1, + "UNIQUE": 4, + "classes": 4, + "name": 3, + "date_created": 6, + "archive": 2, + "class_challenges": 4, + "class_id": 5, + "class_memberships": 4, + "users": 4, + "username": 3, + "full_name": 2, + "email": 2, + "password": 2, + "joined": 2, + "last_visit": 2, + "is_activated": 2, + "type": 3, + "token": 3, + "user_has_challenge_token": 3, + "DROP": 3, + "create": 2, + "FILIAL": 10, + "NUMBER": 1, + "not": 5, + "null": 4, + "title_ua": 1, + "VARCHAR2": 4, + "title_ru": 1, + "title_eng": 1, + "remove_date": 1, + "DATE": 2, + "modify_date": 1, + "modify_user": 1, + "alter": 1, + "add": 1, + "constraint": 1, + "PK_ID": 1, + "primary": 1, + "key": 1, + "ID": 2, + "grant": 8, + "select": 10, + "on": 8, + "to": 8, + "ATOLL": 1, + "CRAMER2GIS": 1, + "DMS": 1, + "HPSM2GIS": 1, + "PLANMONITOR": 1, + "SIEBEL": 1, + "VBIS": 1, + "VPORTAL": 1, + "SELECT": 4, + "*": 3, + "FROM": 1, + "DBO.SYSOBJECTS": 1, + "WHERE": 1, + "OBJECT_ID": 1, + "N": 7, + "AND": 1, + "OBJECTPROPERTY": 1, + "PROCEDURE": 1, + "dbo.AvailableInSearchSel": 2, + "GO": 4, + "Procedure": 1, + "AvailableInSearchSel": 1, + "AS": 1, + "UNION": 2, + "ALL": 2, + "DB_NAME": 1, + "BEGIN": 1, + "GRANT": 1, + "EXECUTE": 1, + "ON": 1, + "TO": 1, + "[": 1, + "rv": 1, + "]": 1, + "END": 1, + "if": 1, + "exists": 1, + "from": 2, + "sysobjects": 1, + "where": 2, + "and": 1, + "in": 1, + "exec": 1, + "%": 2, + "object_ddl": 1, + "go": 1, + "use": 1, + "translog": 1, + "VIEW": 1, + "suspendedtoday": 2, + "view": 1, + "as": 1, + "suspended": 1, + "datediff": 1, + "now": 1 + }, + "Nemerle": { + "using": 1, + "System.Console": 1, + ";": 2, + "module": 1, + "Program": 1, + "{": 2, + "Main": 1, + "(": 2, + ")": 2, + "void": 1, + "WriteLine": 1, + "}": 2 + }, "Bluespec": { "package": 2, - "TbTL": 1, - ";": 156, - "import": 1, "TL": 6, - "*": 1, + ";": 156, "interface": 2, - "Lamp": 3, "method": 42, - "Bool": 32, - "changed": 2, "Action": 17, - "show_offs": 2, - "show_ons": 2, - "reset": 2, - "endinterface": 2, - "module": 3, - "mkLamp#": 1, - "(": 158, - "String": 1, - "name": 3, - "lamp": 5, - ")": 163, - "Reg#": 15, - "prev": 5, - "<": 44, - "-": 29, - "mkReg": 15, - "False": 9, - "if": 9, - "&&": 3, - "write": 2, - "+": 7, - "endmethod": 8, - "endmodule": 3, - "mkTest": 1, - "let": 1, - "dut": 2, - "sysTL": 3, - "Bit#": 1, - "ctr": 8, - "carN": 4, - "carS": 2, - "carE": 2, - "carW": 2, - "lamps": 15, - "[": 17, - "]": 17, - "mkLamp": 12, - "dut.lampRedNS": 1, - "dut.lampAmberNS": 1, - "dut.lampGreenNS": 1, - "dut.lampRedE": 1, - "dut.lampAmberE": 1, - "dut.lampGreenE": 1, - "dut.lampRedW": 1, - "dut.lampAmberW": 1, - "dut.lampGreenW": 1, - "dut.lampRedPed": 1, - "dut.lampAmberPed": 1, - "dut.lampGreenPed": 1, - "rule": 10, - "start": 1, - "dumpvars": 1, - "endrule": 10, - "detect_cars": 1, - "dut.set_car_state_N": 1, - "dut.set_car_state_S": 1, - "dut.set_car_state_E": 1, - "dut.set_car_state_W": 1, - "go": 1, - "True": 6, - "<=>": 3, - "12_000": 1, "ped_button_push": 4, - "stop": 1, - "display": 2, - "finish": 1, - "function": 10, - "do_offs": 2, - "l": 3, - "l.show_offs": 1, - "do_ons": 2, - "l.show_ons": 1, - "do_reset": 2, - "l.reset": 1, - "do_it": 4, - "f": 2, - "action": 3, - "for": 3, - "Integer": 3, - "i": 15, - "endaction": 3, - "endfunction": 7, - "any_changes": 2, - "b": 12, - "||": 7, - ".changed": 1, - "return": 9, - "show": 1, - "time": 1, - "endpackage": 2, + "(": 158, + ")": 163, "set_car_state_N": 2, + "Bool": 32, "x": 8, "set_car_state_S": 2, "set_car_state_E": 2, @@ -5026,6 +46781,7 @@ "lampRedPed": 2, "lampAmberPed": 2, "lampGreenPed": 2, + "endinterface": 2, "typedef": 3, "enum": 1, "{": 1, @@ -5046,6 +46802,8 @@ "UInt#": 2, "Time32": 9, "CtrSize": 3, + "module": 3, + "sysTL": 3, "allRedDelay": 2, "amberDelay": 2, "nsGreenDelay": 2, @@ -5053,27 +46811,43 @@ "pedGreenDelay": 1, "pedAmberDelay": 1, "clocks_per_sec": 2, + "Reg#": 15, "state": 21, + "<": 44, + "-": 29, + "mkReg": 15, "next_green": 8, "secs": 7, "ped_button_pushed": 4, + "False": 9, "car_present_N": 3, + "True": 6, "car_present_S": 3, "car_present_E": 4, "car_present_W": 4, "car_present_NS": 3, + "||": 7, "cycle_ctr": 6, + "rule": 10, "dec_cycle_ctr": 1, + "endrule": 10, "Rules": 5, "low_priority_rule": 2, "rules": 4, "inc_sec": 1, + "+": 7, "endrules": 4, + "function": 10, "next_state": 8, "ns": 4, + "action": 3, + "<=>": 3, "0": 2, + "endaction": 3, + "endfunction": 7, "green_seq": 7, "case": 2, + "return": 9, "endcase": 2, "car_present": 4, "make_from_green_rule": 5, @@ -5085,6 +46859,7 @@ "amber_state": 2, "ng": 2, "from_amber": 1, + "&&": 3, "hprs": 10, "7": 1, "1": 1, @@ -5094,13244 +46869,3813 @@ "5": 1, "6": 1, "fromAllRed": 2, + "if": 9, "else": 4, "noAction": 1, "high_priority_rules": 4, + "[": 17, + "]": 17, + "for": 3, + "Integer": 3, + "i": 15, "rJoin": 1, "addRules": 1, - "preempts": 1 - }, - "Brightscript": { - "**": 17, - "Simple": 1, - "Grid": 2, - "Screen": 2, - "Demonstration": 1, - "App": 1, - "Copyright": 1, - "(": 32, - "c": 1, - ")": 31, - "Roku": 1, - "Inc.": 1, - "All": 3, - "Rights": 1, - "Reserved.": 1, - "************************************************************": 2, - "Sub": 2, - "Main": 1, - "set": 2, - "to": 10, + "preempts": 1, + "endmethod": 8, + "b": 12, + "endmodule": 3, + "endpackage": 2, + "TbTL": 1, + "import": 1, + "*": 1, + "Lamp": 3, + "changed": 2, + "show_offs": 2, + "show_ons": 2, + "reset": 2, + "mkLamp#": 1, + "String": 1, + "name": 3, + "lamp": 5, + "prev": 5, + "write": 2, + "mkTest": 1, + "let": 1, + "dut": 2, + "Bit#": 1, + "ctr": 8, + "carN": 4, + "carS": 2, + "carE": 2, + "carW": 2, + "lamps": 15, + "mkLamp": 12, + "dut.lampRedNS": 1, + "dut.lampAmberNS": 1, + "dut.lampGreenNS": 1, + "dut.lampRedE": 1, + "dut.lampAmberE": 1, + "dut.lampGreenE": 1, + "dut.lampRedW": 1, + "dut.lampAmberW": 1, + "dut.lampGreenW": 1, + "dut.lampRedPed": 1, + "dut.lampAmberPed": 1, + "dut.lampGreenPed": 1, + "start": 1, + "dumpvars": 1, + "detect_cars": 1, + "dut.set_car_state_N": 1, + "dut.set_car_state_S": 1, + "dut.set_car_state_E": 1, + "dut.set_car_state_W": 1, "go": 1, - "time": 1, - "get": 1, - "started": 1, - "while": 4, - "gridstyle": 7, - "<": 1, - "print": 7, - ";": 10, - "screen": 5, - "preShowGridScreen": 2, - "showGridScreen": 2, - "end": 2, - "End": 4, - "Set": 1, - "the": 17, - "configurable": 1, - "theme": 3, - "attributes": 2, - "for": 10, - "application": 1, - "Configure": 1, - "custom": 1, - "overhang": 1, - "and": 4, - "Logo": 1, - "are": 2, - "artwork": 2, - "colors": 1, - "offsets": 1, - "specific": 1, - "app": 1, - "******************************************************": 4, - "Screens": 1, - "can": 2, - "make": 1, - "slight": 1, - "adjustments": 1, - "default": 1, - "individual": 1, - "attributes.": 1, - "these": 1, - "greyscales": 1, - "theme.GridScreenBackgroundColor": 1, - "theme.GridScreenMessageColor": 1, - "theme.GridScreenRetrievingColor": 1, - "theme.GridScreenListNameColor": 1, - "used": 1, - "in": 3, - "theme.CounterTextLeft": 1, - "theme.CounterSeparator": 1, - "theme.CounterTextRight": 1, - "theme.GridScreenLogoHD": 1, - "theme.GridScreenLogoOffsetHD_X": 1, - "theme.GridScreenLogoOffsetHD_Y": 1, - "theme.GridScreenOverhangHeightHD": 1, - "theme.GridScreenLogoSD": 1, - "theme.GridScreenOverhangHeightSD": 1, - "theme.GridScreenLogoOffsetSD_X": 1, - "theme.GridScreenLogoOffsetSD_Y": 1, - "theme.GridScreenFocusBorderSD": 1, - "theme.GridScreenFocusBorderHD": 1, - "use": 1, - "your": 1, - "own": 1, - "description": 1, - "background": 1, - "theme.GridScreenDescriptionOffsetSD": 1, - "theme.GridScreenDescriptionOffsetHD": 1, - "return": 5, - "Function": 5, - "Perform": 1, - "any": 1, - "startup/initialization": 1, - "stuff": 1, - "prior": 1, - "style": 6, - "as": 2, - "string": 3, - "As": 3, - "Object": 2, - "m.port": 3, - "CreateObject": 2, - "screen.SetMessagePort": 1, - "screen.": 1, - "The": 1, - "will": 3, - "show": 1, - "retreiving": 1, - "categoryList": 4, - "getCategoryList": 1, - "[": 3, - "]": 4, - "+": 1, - "screen.setupLists": 1, - "categoryList.count": 2, - "screen.SetListNames": 1, - "StyleButtons": 3, - "getGridControlButtons": 1, - "screen.SetContentList": 2, - "i": 3, - "-": 15, - "getShowsForCategoryItem": 1, - "screen.Show": 1, - "true": 1, - "msg": 3, - "wait": 1, - "getmessageport": 1, - "does": 1, - "not": 2, - "work": 1, - "on": 1, - "gridscreen": 1, - "type": 2, - "if": 3, - "then": 3, - "msg.GetMessage": 1, - "msg.GetIndex": 3, - "msg.getData": 2, - "msg.isListItemFocused": 1, - "else": 1, - "msg.isListItemSelected": 1, - "row": 2, - "selection": 3, - "yes": 1, - "so": 2, - "we": 3, - "come": 1, - "back": 1, - "with": 2, - "new": 1, - ".Title": 1, - "endif": 1, - "**********************************************************": 1, - "this": 3, - "function": 1, - "passing": 1, - "an": 1, - "roAssociativeArray": 2, - "be": 2, - "sufficient": 1, - "springboard": 2, + "12_000": 1, + "stop": 1, "display": 2, - "add": 1, - "code": 1, - "create": 1, - "now": 1, + "finish": 1, + "do_offs": 2, + "l": 3, + "l.show_offs": 1, + "do_ons": 2, + "l.show_ons": 1, + "do_reset": 2, + "l.reset": 1, + "do_it": 4, + "f": 2, + "any_changes": 2, + ".changed": 1, + "show": 1, + "time": 1 + }, + "Swift": { + "var": 42, + "n": 5, + "while": 2, + "<": 4, + "{": 77, + "*": 7, + "}": 77, + "m": 5, + "do": 1, + "let": 43, + "optionalSquare": 2, + "Square": 7, + "(": 89, + "sideLength": 17, + "name": 21, + ")": 89, + ".sideLength": 1, + "enum": 4, + "Suit": 2, + "case": 21, + "Spades": 1, + "Hearts": 1, + "Diamonds": 1, + "Clubs": 1, + "func": 24, + "simpleDescription": 14, + "-": 21, + "String": 27, + "switch": 4, + "self": 3, + ".Spades": 2, + "return": 30, + ".Hearts": 1, + ".Diamonds": 1, + ".Clubs": 1, + "hearts": 1, + "Suit.Hearts": 1, + "heartsDescription": 1, + "hearts.simpleDescription": 1, + "interestingNumbers": 2, + "[": 18, + "]": 18, + "largest": 4, + "for": 10, + "kind": 1, + "numbers": 6, + "in": 11, + "number": 13, + "if": 6, + "greet": 2, + "day": 1, + "apples": 1, + "oranges": 1, + "appleSummary": 1, + "fruitSummary": 1, + "struct": 2, + "Card": 2, + "rank": 2, + "Rank": 2, + "suit": 2, + "threeOfSpades": 1, + ".Three": 1, + "threeOfSpadesDescription": 1, + "threeOfSpades.simpleDescription": 1, + "anyCommonElements": 2, + "": 1, + "U": 4, + "where": 2, + "T": 5, + "Sequence": 2, + "GeneratorType": 3, + "Element": 3, + "Equatable": 1, + "lhs": 2, + "rhs": 2, + "Bool": 4, + "lhsItem": 2, + "rhsItem": 2, + "true": 2, + "false": 2, + "Int": 19, + "Ace": 1, + "Two": 1, + "Three": 1, + "Four": 1, + "Five": 1, + "Six": 1, + "Seven": 1, + "Eight": 1, + "Nine": 1, + "Ten": 1, + "Jack": 1, + "Queen": 1, + "King": 1, + ".Ace": 1, + ".Jack": 1, + ".Queen": 1, + ".King": 1, + "default": 2, + "self.toRaw": 1, + "ace": 1, + "Rank.Ace": 1, + "aceRawValue": 1, + "ace.toRaw": 1, + "sort": 1, + "returnFifteen": 2, + "y": 3, + "add": 2, + "+": 15, + "class": 7, + "Shape": 2, + "numberOfSides": 4, + "emptyArray": 1, + "emptyDictionary": 1, + "Dictionary": 1, + "": 1, + "Float": 1, + "println": 1, + "extension": 1, + "ExampleProtocol": 5, + "mutating": 3, + "adjust": 4, + "EquilateralTriangle": 4, + "NamedShape": 3, + "Double": 11, + "init": 4, + "self.sideLength": 2, + "super.init": 2, + "perimeter": 1, + "get": 2, + "set": 1, + "newValue": 1, + "/": 1, + "override": 2, + "triangle": 3, + "triangle.perimeter": 2, + "triangle.sideLength": 2, + "OptionalValue": 2, + "": 1, + "None": 1, + "Some": 1, + "possibleInteger": 2, + "": 1, + ".None": 1, + ".Some": 1, + "SimpleClass": 2, + "anotherProperty": 1, + "a": 2, + "a.adjust": 1, + "aDescription": 1, + "a.simpleDescription": 1, + "SimpleStructure": 2, + "b": 1, + "b.adjust": 1, + "bDescription": 1, + "b.simpleDescription": 1, + "Counter": 2, + "count": 2, + "incrementBy": 1, + "amount": 2, + "numberOfTimes": 2, + "times": 4, + "counter": 1, + "counter.incrementBy": 1, + "getGasPrices": 2, + "myVariable": 2, + "myConstant": 1, + "convertedRank": 1, + "Rank.fromRaw": 1, + "threeDescription": 1, + "convertedRank.simpleDescription": 1, + "protocolValue": 1, + "protocolValue.simpleDescription": 1, + "sumOf": 3, + "Int...": 1, + "sum": 3, + "individualScores": 2, + "teamScore": 4, + "score": 2, + "else": 1, + "vegetable": 2, + "vegetableComment": 4, + "x": 1, + "x.hasSuffix": 1, + "optionalString": 2, + "nil": 1, + "optionalName": 2, + "greeting": 2, + "label": 2, + "width": 2, + "widthLabel": 1, + "shape": 1, + "shape.numberOfSides": 1, + "shapeDescription": 1, + "shape.simpleDescription": 1, + "self.name": 1, + "shoppingList": 3, + "occupations": 2, + "numbers.map": 2, + "result": 5, + "area": 1, + "test": 1, + "test.area": 1, + "test.simpleDescription": 1, + "makeIncrementer": 2, + "addOne": 2, + "increment": 2, + "repeat": 2, + "": 1, + "item": 4, + "ItemType": 3, + "i": 6, + "ServerResponse": 1, + "Result": 1, + "Error": 1, + "success": 2, + "ServerResponse.Result": 1, + "failure": 1, + "ServerResponse.Error": 1, + ".Result": 1, + "sunrise": 1, + "sunset": 1, + "serverResponse": 2, + ".Error": 1, + "error": 1, + "//": 1, + "Went": 1, + "shopping": 1, + "and": 1, + "bought": 1, + "everything.": 1, + "TriangleAndSquare": 2, + "willSet": 2, + "square.sideLength": 1, + "newValue.sideLength": 2, + "square": 2, + "size": 4, + "triangleAndSquare": 1, + "triangleAndSquare.square.sideLength": 1, + "triangleAndSquare.triangle.sideLength": 2, + "triangleAndSquare.square": 1, + "protocol": 1, + "firstForLoop": 3, + "secondForLoop": 3, + ";": 2, + "implicitInteger": 1, + "implicitDouble": 1, + "explicitDouble": 1, + "hasAnyMatches": 2, + "list": 2, + "condition": 2, + "lessThanTen": 2 + }, + "SourcePawn": { + "//#define": 1, + "DEBUG": 2, + "#if": 1, + "defined": 1, + "#define": 7, + "assert": 2, + "(": 233, + "%": 18, + ")": 234, + "if": 44, + "ThrowError": 2, + ";": 213, + "assert_msg": 2, + "#else": 1, + "#endif": 1, + "#pragma": 1, + "semicolon": 1, + "#include": 3, + "": 1, + "": 1, + "": 1, + "public": 21, + "Plugin": 1, + "myinfo": 1, + "{": 73, + "name": 7, + "author": 1, + "description": 1, + "version": 1, + "SOURCEMOD_VERSION": 1, + "url": 1, + "}": 71, + "new": 62, + "Handle": 51, + "g_Cvar_Winlimit": 5, + "INVALID_HANDLE": 56, + "g_Cvar_Maxrounds": 5, + "g_Cvar_Fraglimit": 6, + "g_Cvar_Bonusroundtime": 6, + "g_Cvar_StartTime": 3, + "g_Cvar_StartRounds": 5, + "g_Cvar_StartFrags": 3, + "g_Cvar_ExtendTimeStep": 2, + "g_Cvar_ExtendRoundStep": 2, + "g_Cvar_ExtendFragStep": 2, + "g_Cvar_ExcludeMaps": 3, + "g_Cvar_IncludeMaps": 2, + "g_Cvar_NoVoteMode": 2, + "g_Cvar_Extend": 2, + "g_Cvar_DontChange": 2, + "g_Cvar_EndOfMapVote": 8, + "g_Cvar_VoteDuration": 3, + "g_Cvar_RunOff": 2, + "g_Cvar_RunOffPercent": 2, + "g_VoteTimer": 7, + "g_RetryTimer": 4, + "g_MapList": 8, + "g_NominateList": 7, + "g_NominateOwners": 7, + "g_OldMapList": 7, + "g_NextMapList": 2, + "g_VoteMenu": 1, + "g_Extends": 2, + "g_TotalRounds": 7, + "bool": 10, + "g_HasVoteStarted": 7, + "g_WaitingForVote": 4, + "g_MapVoteCompleted": 9, + "g_ChangeMapAtRoundEnd": 6, + "g_ChangeMapInProgress": 4, + "g_mapFileSerial": 3, + "-": 12, + "g_NominateCount": 3, + "MapChange": 4, + "g_ChangeTime": 1, + "g_NominationsResetForward": 3, + "g_MapVoteStartedForward": 2, + "MAXTEAMS": 4, + "g_winCount": 4, + "[": 19, + "]": 19, + "VOTE_EXTEND": 1, + "VOTE_DONTCHANGE": 1, + "OnPluginStart": 1, + "LoadTranslations": 2, + "arraySize": 5, + "ByteCountToCells": 1, + "PLATFORM_MAX_PATH": 6, + "CreateArray": 5, + "CreateConVar": 15, + "_": 18, + "true": 26, + "RegAdminCmd": 2, + "Command_Mapvote": 2, + "ADMFLAG_CHANGEMAP": 2, + "Command_SetNextmap": 2, + "FindConVar": 4, + "||": 15, + "decl": 5, + "String": 11, + "folder": 5, + "GetGameFolderName": 1, + "sizeof": 6, + "strcmp": 3, + "HookEvent": 6, + "Event_TeamPlayWinPanel": 3, + "Event_TFRestartRound": 2, + "else": 5, + "Event_RoundEnd": 3, + "Event_PlayerDeath": 2, + "AutoExecConfig": 1, + "//Change": 1, + "the": 5, + "mp_bonusroundtime": 1, + "max": 1, + "so": 1, + "that": 2, + "we": 2, + "have": 2, + "time": 9, + "to": 4, + "display": 2, + "vote": 6, + "//If": 1, + "you": 1, + "a": 1, + "during": 2, + "bonus": 2, + "good": 1, + "defaults": 1, + "are": 1, + "duration": 1, + "and": 1, + "mp_bonustime": 1, + "SetConVarBounds": 1, + "ConVarBound_Upper": 1, + "CreateGlobalForward": 2, + "ET_Ignore": 2, + "Param_String": 1, + "Param_Cell": 1, + "APLRes": 1, + "AskPluginLoad2": 1, + "myself": 1, + "late": 1, + "error": 1, + "err_max": 1, + "RegPluginLibrary": 1, + "CreateNative": 9, + "Native_NominateMap": 1, + "Native_RemoveNominationByMap": 1, + "Native_RemoveNominationByOwner": 1, + "Native_InitiateVote": 1, + "Native_CanVoteStart": 2, + "Native_CheckVoteDone": 2, + "Native_GetExcludeMapList": 2, + "Native_GetNominatedMapList": 2, + "Native_EndOfMapVoteEnabled": 2, + "return": 23, + "APLRes_Success": 1, + "OnConfigsExecuted": 1, + "ReadMapList": 1, + "MAPLIST_FLAG_CLEARARRAY": 1, + "|": 1, + "MAPLIST_FLAG_MAPSFOLDER": 1, + "LogError": 2, + "CreateNextVote": 1, + "SetupTimeleftTimer": 3, + "false": 8, + "ClearArray": 2, + "for": 9, + "i": 13, + "<": 5, + "+": 12, + "&&": 5, + "GetConVarInt": 10, + "GetConVarFloat": 2, + "<=>": 1, + "Warning": 1, + "Bonus": 1, + "Round": 1, + "Time": 2, + "shorter": 1, + "than": 1, + "Vote": 4, + "Votes": 1, + "round": 1, + "may": 1, + "not": 1, + "complete": 1, + "OnMapEnd": 1, + "map": 27, + "GetCurrentMap": 1, + "PushArrayString": 3, + "GetArraySize": 8, + "RemoveFromArray": 3, + "OnClientDisconnect": 1, + "client": 9, + "index": 8, + "FindValueInArray": 1, + "oldmap": 4, + "GetArrayString": 3, + "Call_StartForward": 1, + "Call_PushString": 1, + "Call_PushCell": 1, + "GetArrayCell": 2, + "Call_Finish": 1, + "Action": 3, + "args": 3, + "ReplyToCommand": 2, + "Plugin_Handled": 4, + "GetCmdArg": 1, + "IsMapValid": 1, + "ShowActivity": 1, + "LogAction": 1, + "SetNextMap": 1, + "OnMapTimeLeftChanged": 1, + "GetMapTimeLeft": 1, + "startTime": 4, + "*": 1, + "GetConVarBool": 6, + "InitiateVote": 8, + "MapChange_MapEnd": 6, + "KillTimer": 1, + "//g_VoteTimer": 1, + "CreateTimer": 3, + "float": 2, + "Timer_StartMapVote": 3, + "TIMER_FLAG_NO_MAPCHANGE": 4, + "data": 8, + "CreateDataTimer": 1, + "WritePackCell": 2, + "ResetPack": 1, + "timer": 2, + "Plugin_Stop": 2, + "mapChange": 2, + "ReadPackCell": 2, + "hndl": 2, + "event": 11, + "const": 4, + "dontBroadcast": 4, + "Timer_ChangeMap": 2, + "bluescore": 2, + "GetEventInt": 7, + "redscore": 2, + "StrEqual": 1, + "CheckMaxRounds": 3, + "switch": 1, + "case": 2, + "CheckWinLimit": 4, + "//We": 1, + "need": 2, "do": 1, "nothing": 1, - "Return": 1, - "list": 1, - "of": 5, - "categories": 1, - "filter": 1, - "all": 1, - "categories.": 1, - "just": 2, - "static": 1, - "data": 2, - "example.": 1, - "********************************************************************": 1, - "ContentMetaData": 1, - "objects": 1, - "shows": 1, - "category.": 1, - "For": 1, - "example": 1, - "cheat": 1, - "but": 2, - "ideally": 1, - "you": 1, - "dynamically": 1, - "content": 2, - "each": 1, - "category": 1, - "is": 1, - "dynamic": 1, - "s": 1, - "one": 3, - "small": 1, - "step": 1, - "a": 4, - "man": 1, - "giant": 1, - "leap": 1, - "mankind.": 1, - "http": 14, - "//upload.wikimedia.org/wikipedia/commons/1/1e/Apollo_11_first_step.jpg": 2, - "I": 2, - "have": 2, - "Dream": 1, - "PG": 1, - "dream": 1, - "that": 1, - "my": 1, - "four": 1, - "little": 1, - "children": 1, - "day": 1, - "live": 1, - "nation": 1, - "where": 1, - "they": 1, - "judged": 1, - "by": 2, - "color": 1, - "their": 2, - "skin": 1, - "character.": 1, - "//upload.wikimedia.org/wikipedia/commons/8/81/Martin_Luther_King_": 2, - "_March_on_Washington.jpg": 2, - "Flat": 6, - "Movie": 2, - "HD": 6, - "x2": 4, - "SD": 5, - "Netflix": 1, - "//upload.wikimedia.org/wikipedia/commons/4/43/Gold_star_on_blue.gif": 2, - "Landscape": 1, - "x3": 6, - "Channel": 1, - "Store": 1, - "//upload.wikimedia.org/wikipedia/commons/thumb/9/96/Dunkery_Hill.jpg/800px": 2, - "Dunkery_Hill.jpg": 2, - "Portrait": 1, - "x4": 1, - "posters": 3, - "//upload.wikimedia.org/wikipedia/commons/9/9f/Kane_George_Gurnett.jpg": 2, - "Square": 1, - "x1": 1, - "//upload.wikimedia.org/wikipedia/commons/thumb/d/de/SQUARE_SHAPE.svg/536px": 2, - "SQUARE_SHAPE.svg.png": 2, - "x9": 1, - "//upload.wikimedia.org/wikipedia/commons/thumb/2/22/": 2, - "%": 8, - "C3": 4, - "cran_TV_plat.svg/200px": 2, - "cran_TV_plat.svg.png": 2, - "}": 1, - "buttons": 1 - }, - "C": { - "#include": 154, - "const": 358, - "char": 530, - "*blob_type": 2, - ";": 5465, - "struct": 360, - "blob": 6, - "*lookup_blob": 2, - "(": 6243, - "unsigned": 140, - "*sha1": 16, - ")": 6245, - "{": 1531, - "object": 41, - "*obj": 9, - "lookup_object": 2, - "sha1": 20, - "if": 1015, - "obj": 48, - "return": 529, - "create_object": 2, - "OBJ_BLOB": 3, - "alloc_blob_node": 1, - "-": 1803, - "type": 36, - "error": 96, - "sha1_to_hex": 8, - "typename": 2, - "NULL": 330, - "}": 1547, - "*": 261, - "int": 446, - "parse_blob_buffer": 2, - "*item": 10, - "void": 288, - "*buffer": 6, - "long": 105, - "size": 120, - "item": 24, - "object.parsed": 4, - "#ifndef": 89, - "BLOB_H": 2, - "#define": 920, - "extern": 38, - "#endif": 243, - "BOOTSTRAP_H": 2, - "": 8, - "__GNUC__": 8, - "typedef": 191, - "*true": 1, - "*false": 1, - "*eof": 1, - "*empty_list": 1, - "*global_enviroment": 1, - "enum": 30, - "obj_type": 1, - "scm_bool": 1, - "scm_empty_list": 1, - "scm_eof": 1, - "scm_char": 1, - "scm_int": 1, - "scm_pair": 1, - "scm_symbol": 1, - "scm_prim_fun": 1, - "scm_lambda": 1, - "scm_str": 1, - "scm_file": 1, - "*eval_proc": 1, - "*maybe_add_begin": 1, - "*code": 2, - "init_enviroment": 1, - "*env": 4, - "eval_err": 1, - "*msg": 7, - "__attribute__": 1, - "noreturn": 1, - "define_var": 1, - "*var": 4, - "*val": 6, - "set_var": 1, - "*get_var": 1, - "*cond2nested_if": 1, - "*cond": 1, - "*let2lambda": 1, - "*let": 1, - "*and2nested_if": 1, - "*and": 1, - "*or2nested_if": 1, - "*or": 1, - "git_cache_init": 1, - "git_cache": 4, - "*cache": 4, - "size_t": 52, - "git_cached_obj_freeptr": 1, - "free_ptr": 2, - "<": 219, - "git__size_t_powerof2": 1, - "cache": 26, - "size_mask": 6, - "lru_count": 1, - "free_obj": 4, - "git_mutex_init": 1, - "&": 442, - "lock": 6, - "nodes": 10, - "git__malloc": 3, - "sizeof": 71, - "git_cached_obj": 5, - "GITERR_CHECK_ALLOC": 3, - "memset": 4, - "git_cache_free": 1, - "i": 410, - "for": 88, - "+": 551, - "[": 601, - "]": 601, - "git_cached_obj_decref": 3, - "git__free": 15, - "*git_cache_get": 1, - "git_oid": 7, - "*oid": 2, - "uint32_t": 144, - "hash": 12, - "*node": 2, - "*result": 1, - "memcpy": 35, - "oid": 17, - "id": 13, - "git_mutex_lock": 2, - "node": 9, - "&&": 248, - "git_oid_cmp": 6, - "git_cached_obj_incref": 3, - "result": 48, - "git_mutex_unlock": 2, - "*git_cache_try_store": 1, - "*_entry": 1, - "*entry": 2, - "_entry": 1, - "entry": 17, - "else": 190, - "save_commit_buffer": 3, - "*commit_type": 2, - "static": 455, - "commit": 59, - "*check_commit": 1, - "quiet": 5, - "OBJ_COMMIT": 5, - "*lookup_commit_reference_gently": 2, - "deref_tag": 1, - "parse_object": 1, - "check_commit": 2, - "*lookup_commit_reference": 2, - "lookup_commit_reference_gently": 1, - "*lookup_commit_or_die": 2, - "*ref_name": 2, - "*c": 69, - "lookup_commit_reference": 2, - "c": 252, - "die": 5, - "_": 3, - "ref_name": 2, - "hashcmp": 2, - "object.sha1": 8, - "warning": 1, - "*lookup_commit": 2, - "alloc_commit_node": 1, - "*lookup_commit_reference_by_name": 2, - "*name": 12, - "*commit": 10, - "get_sha1": 1, - "name": 28, - "||": 141, - "parse_commit": 3, - "parse_commit_date": 2, - "*buf": 10, - "*tail": 2, - "*dateptr": 1, - "buf": 57, - "tail": 12, - "memcmp": 6, - "while": 70, - "dateptr": 2, - "strtoul": 2, - "commit_graft": 13, - "**commit_graft": 1, - "commit_graft_alloc": 4, - "commit_graft_nr": 5, - "commit_graft_pos": 2, - "lo": 6, - "hi": 5, - "mi": 5, - "/": 9, - "*graft": 3, - "cmp": 9, - "graft": 10, - "register_commit_graft": 2, - "ignore_dups": 2, - "pos": 7, - "free": 62, - "alloc_nr": 1, - "xrealloc": 2, - "parse_commit_buffer": 3, - "buffer": 10, - "*bufptr": 1, - "parent": 7, - "commit_list": 35, - "**pptr": 1, - "<=>": 16, - "bufptr": 12, - "46": 1, - "tree": 3, - "5": 1, - "45": 1, - "n": 70, - "bogus": 1, - "s": 154, - "get_sha1_hex": 2, - "lookup_tree": 1, - "pptr": 5, - "parents": 4, - "lookup_commit_graft": 1, - "*new_parent": 2, - "48": 1, - "7": 1, - "47": 1, - "bad": 1, - "in": 11, - "nr_parent": 3, - "grafts_replace_parents": 1, - "continue": 20, - "new_parent": 6, - "lookup_commit": 2, - "commit_list_insert": 2, - "next": 8, - "date": 5, - "object_type": 1, - "ret": 142, - "read_sha1_file": 1, - "find_commit_subject": 2, - "*commit_buffer": 2, - "**subject": 2, - "*eol": 1, - "*p": 9, - "commit_buffer": 1, - "a": 80, - "b_date": 3, - "b": 66, - "a_date": 2, - "*commit_list_get_next": 1, - "*a": 9, - "commit_list_set_next": 1, - "*next": 6, - "commit_list_sort_by_date": 2, - "**list": 5, - "*list": 2, - "llist_mergesort": 1, - "peel_to_type": 1, - "util": 3, - "merge_remote_desc": 3, - "*desc": 1, - "desc": 5, - "xmalloc": 2, - "strdup": 1, - "**commit_list_append": 2, - "**next": 2, - "*new": 1, - "new": 4, - "COMMIT_H": 2, - "*util": 1, - "indegree": 1, - "*parents": 4, - "*tree": 3, - "decoration": 1, - "name_decoration": 3, - "*commit_list_insert": 1, - "commit_list_count": 1, - "*l": 1, - "*commit_list_insert_by_date": 1, - "free_commit_list": 1, - "cmit_fmt": 3, - "CMIT_FMT_RAW": 1, - "CMIT_FMT_MEDIUM": 2, - "CMIT_FMT_DEFAULT": 1, - "CMIT_FMT_SHORT": 1, - "CMIT_FMT_FULL": 1, - "CMIT_FMT_FULLER": 1, - "CMIT_FMT_ONELINE": 1, - "CMIT_FMT_EMAIL": 1, - "CMIT_FMT_USERFORMAT": 1, - "CMIT_FMT_UNSPECIFIED": 1, - "pretty_print_context": 6, - "fmt": 4, - "abbrev": 1, - "*subject": 1, - "*after_subject": 1, - "preserve_subject": 1, - "date_mode": 2, - "date_mode_explicit": 1, - "need_8bit_cte": 2, - "show_notes": 1, - "reflog_walk_info": 1, - "*reflog_info": 1, - "*output_encoding": 2, - "userformat_want": 2, - "notes": 1, - "has_non_ascii": 1, - "*text": 1, - "rev_info": 2, - "*logmsg_reencode": 1, - "*reencode_commit_message": 1, - "**encoding_p": 1, - "get_commit_format": 1, - "*arg": 1, - "*format_subject": 1, - "strbuf": 12, - "*sb": 7, - "*line_separator": 1, - "userformat_find_requirements": 1, - "*fmt": 2, - "*w": 2, - "format_commit_message": 1, - "*format": 2, - "*context": 1, - "pretty_print_commit": 1, - "*pp": 4, - "pp_commit_easy": 1, - "pp_user_info": 1, - "*what": 1, - "*line": 1, - "*encoding": 2, - "pp_title_line": 1, - "**msg_p": 2, - "pp_remainder": 1, - "indent": 1, - "*pop_most_recent_commit": 1, - "mark": 3, - "*pop_commit": 1, - "**stack": 1, - "clear_commit_marks": 1, - "clear_commit_marks_for_object_array": 1, - "object_array": 2, - "sort_in_topological_order": 1, - "**": 6, - "list": 1, - "lifo": 1, - "FLEX_ARRAY": 1, - "*read_graft_line": 1, - "len": 30, - "*lookup_commit_graft": 1, - "*get_merge_bases": 1, - "*rev1": 1, - "*rev2": 1, - "cleanup": 12, - "*get_merge_bases_many": 1, - "*one": 1, - "**twos": 1, - "*get_octopus_merge_bases": 1, - "*in": 1, - "register_shallow": 1, - "unregister_shallow": 1, - "for_each_commit_graft": 1, - "each_commit_graft_fn": 1, - "is_repository_shallow": 1, - "*get_shallow_commits": 1, - "*heads": 2, - "depth": 2, - "shallow_flag": 1, - "not_shallow_flag": 1, - "is_descendant_of": 1, - "in_merge_bases": 1, - "interactive_add": 1, - "argc": 26, - "**argv": 6, - "*prefix": 7, - "patch": 1, - "run_add_interactive": 1, - "*revision": 1, - "*patch_mode": 1, - "**pathspec": 1, - "inline": 3, - "single_parent": 1, - "*reduce_heads": 1, - "commit_extra_header": 7, - "*key": 5, - "*value": 5, - "append_merge_tag_headers": 1, - "***tail": 1, - "commit_tree": 1, - "*ret": 20, - "*author": 2, - "*sign_commit": 2, - "commit_tree_extended": 1, - "*read_commit_extra_headers": 1, - "*read_commit_extra_header_lines": 1, - "free_commit_extra_headers": 1, - "*extra": 1, - "merge_remote_util": 1, - "*get_merge_parent": 1, - "parse_signed_commit": 1, - "*message": 1, - "*signature": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "#ifdef": 66, - "CONFIG_SMP": 1, - "DEFINE_MUTEX": 1, - "cpu_add_remove_lock": 3, - "cpu_maps_update_begin": 9, - "mutex_lock": 5, - "cpu_maps_update_done": 9, - "mutex_unlock": 6, - "RAW_NOTIFIER_HEAD": 1, - "cpu_chain": 4, - "cpu_hotplug_disabled": 7, - "CONFIG_HOTPLUG_CPU": 2, - "task_struct": 5, - "*active_writer": 1, - "mutex": 1, - "refcount": 2, - "cpu_hotplug": 1, - ".active_writer": 1, - ".lock": 1, - "__MUTEX_INITIALIZER": 1, - "cpu_hotplug.lock": 8, - ".refcount": 1, - "get_online_cpus": 2, - "might_sleep": 1, - "cpu_hotplug.active_writer": 6, - "current": 5, - "cpu_hotplug.refcount": 3, - "EXPORT_SYMBOL_GPL": 4, - "put_online_cpus": 2, - "unlikely": 54, - "wake_up_process": 1, - "cpu_hotplug_begin": 4, - "likely": 22, - "break": 244, - "__set_current_state": 1, - "TASK_UNINTERRUPTIBLE": 1, - "schedule": 1, - "cpu_hotplug_done": 4, - "#else": 94, - "__ref": 6, - "register_cpu_notifier": 2, - "notifier_block": 3, - "*nb": 3, - "raw_notifier_chain_register": 1, - "nb": 2, - "__cpu_notify": 6, - "val": 20, - "*v": 3, - "nr_to_call": 2, - "*nr_calls": 1, - "__raw_notifier_call_chain": 1, - "v": 11, - "nr_calls": 9, - "notifier_to_errno": 1, - "cpu_notify": 5, - "cpu_notify_nofail": 4, - "BUG_ON": 4, - "EXPORT_SYMBOL": 8, - "unregister_cpu_notifier": 2, - "raw_notifier_chain_unregister": 1, - "clear_tasks_mm_cpumask": 1, - "cpu": 57, - "WARN_ON": 1, - "cpu_online": 5, - "rcu_read_lock": 1, - "for_each_process": 2, - "p": 60, - "*t": 2, - "t": 32, - "find_lock_task_mm": 1, - "cpumask_clear_cpu": 5, - "mm_cpumask": 1, - "mm": 1, - "task_unlock": 1, - "rcu_read_unlock": 1, - "check_for_tasks": 2, - "write_lock_irq": 1, - "tasklist_lock": 2, - "task_cpu": 1, - "state": 104, - "TASK_RUNNING": 1, - "utime": 1, - "stime": 1, - "printk": 12, - "KERN_WARNING": 3, - "comm": 1, - "task_pid_nr": 1, - "flags": 89, - "write_unlock_irq": 1, - "take_cpu_down_param": 3, - "mod": 13, - "*hcpu": 3, - "take_cpu_down": 2, - "*_param": 1, - "*param": 1, - "_param": 1, - "err": 38, - "__cpu_disable": 1, - "CPU_DYING": 1, - "|": 132, - "param": 2, - "hcpu": 10, - "_cpu_down": 3, - "tasks_frozen": 4, - "CPU_TASKS_FROZEN": 2, - "tcd_param": 2, - ".mod": 1, - ".hcpu": 1, - "num_online_cpus": 2, - "EBUSY": 3, - "EINVAL": 6, - "CPU_DOWN_PREPARE": 1, - "CPU_DOWN_FAILED": 2, - "__func__": 2, - "goto": 159, - "out_release": 3, - "__stop_machine": 1, - "cpumask_of": 1, - "idle_cpu": 1, - "cpu_relax": 1, - "__cpu_die": 1, - "CPU_DEAD": 1, - "CPU_POST_DEAD": 1, - "cpu_down": 2, - "out": 18, - "__cpuinit": 3, - "_cpu_up": 3, - "*idle": 1, - "cpu_present": 1, - "idle": 4, - "idle_thread_get": 1, - "IS_ERR": 1, - "PTR_ERR": 1, - "CPU_UP_PREPARE": 1, - "out_notify": 3, - "__cpu_up": 1, - "CPU_ONLINE": 1, - "CPU_UP_CANCELED": 1, - "cpu_up": 2, - "CONFIG_MEMORY_HOTPLUG": 2, - "nid": 5, - "pg_data_t": 1, - "*pgdat": 1, - "cpu_possible": 1, - "KERN_ERR": 5, - "#if": 92, - "defined": 42, - "CONFIG_IA64": 1, - "cpu_to_node": 1, - "node_online": 1, - "mem_online_node": 1, - "pgdat": 3, - "NODE_DATA": 1, - "ENOMEM": 4, - "node_zonelists": 1, - "_zonerefs": 1, - "zone": 1, - "zonelists_mutex": 2, - "build_all_zonelists": 1, - "CONFIG_PM_SLEEP_SMP": 2, - "cpumask_var_t": 1, - "frozen_cpus": 9, - "__weak": 4, - "arch_disable_nonboot_cpus_begin": 2, - "arch_disable_nonboot_cpus_end": 2, - "disable_nonboot_cpus": 1, - "first_cpu": 3, - "cpumask_first": 1, - "cpu_online_mask": 3, - "cpumask_clear": 2, - "for_each_online_cpu": 1, - "cpumask_set_cpu": 5, - "arch_enable_nonboot_cpus_begin": 2, - "arch_enable_nonboot_cpus_end": 2, - "enable_nonboot_cpus": 1, - "cpumask_empty": 1, - "KERN_INFO": 2, - "for_each_cpu": 1, - "__init": 2, - "alloc_frozen_cpus": 2, - "alloc_cpumask_var": 1, - "GFP_KERNEL": 1, - "__GFP_ZERO": 1, - "core_initcall": 2, - "cpu_hotplug_disable_before_freeze": 2, - "cpu_hotplug_enable_after_thaw": 2, - "cpu_hotplug_pm_callback": 2, - "action": 2, - "*ptr": 1, - "switch": 46, - "case": 273, - "PM_SUSPEND_PREPARE": 1, - "PM_HIBERNATION_PREPARE": 1, - "PM_POST_SUSPEND": 1, - "PM_POST_HIBERNATION": 1, - "default": 33, - "NOTIFY_DONE": 1, - "NOTIFY_OK": 1, - "cpu_hotplug_pm_sync_init": 2, - "pm_notifier": 1, - "notify_cpu_starting": 1, - "CPU_STARTING": 1, - "cpumask_test_cpu": 1, - "CPU_STARTING_FROZEN": 1, - "MASK_DECLARE_1": 3, - "x": 57, - "UL": 1, - "<<": 56, - "MASK_DECLARE_2": 3, - "MASK_DECLARE_4": 3, - "MASK_DECLARE_8": 9, - "cpu_bit_bitmap": 2, - "BITS_PER_LONG": 2, - "BITS_TO_LONGS": 1, - "NR_CPUS": 2, - "DECLARE_BITMAP": 6, - "cpu_all_bits": 2, - "CPU_BITS_ALL": 2, - "CONFIG_INIT_ALL_POSSIBLE": 1, - "cpu_possible_bits": 6, - "CONFIG_NR_CPUS": 5, - "__read_mostly": 5, - "cpumask": 7, - "*const": 4, - "cpu_possible_mask": 2, - "to_cpumask": 15, - "cpu_online_bits": 5, - "cpu_present_bits": 5, - "cpu_present_mask": 2, - "cpu_active_bits": 4, - "cpu_active_mask": 2, - "set_cpu_possible": 1, - "bool": 6, - "possible": 2, - "set_cpu_present": 1, - "present": 2, - "set_cpu_online": 1, - "online": 2, - "set_cpu_active": 1, - "active": 2, - "init_cpu_present": 1, - "*src": 3, - "cpumask_copy": 3, - "src": 16, - "init_cpu_possible": 1, - "init_cpu_online": 1, - "*diff_prefix_from_pathspec": 1, - "git_strarray": 2, - "*pathspec": 2, - "git_buf": 3, - "prefix": 34, - "GIT_BUF_INIT": 3, - "*scan": 2, - "git_buf_common_prefix": 1, - "pathspec": 15, - "scan": 4, - "prefix.ptr": 2, - "git__iswildcard": 1, - "git_buf_truncate": 1, - "prefix.size": 1, - "git_buf_detach": 1, - "git_buf_free": 4, - "diff_pathspec_is_interesting": 2, - "*str": 1, - "count": 17, - "false": 77, - "true": 73, - "str": 162, - "strings": 5, - "diff_path_matches_pathspec": 3, - "git_diff_list": 17, - "*diff": 8, - "*path": 2, - "git_attr_fnmatch": 4, - "*match": 3, - "diff": 93, - "pathspec.length": 1, - "git_vector_foreach": 4, - "match": 16, - "p_fnmatch": 1, - "pattern": 3, - "path": 20, - "FNM_NOMATCH": 1, - "GIT_ATTR_FNMATCH_HASWILD": 1, - "strncmp": 1, - "length": 58, - "GIT_ATTR_FNMATCH_NEGATIVE": 1, - "git_diff_delta": 19, - "*diff_delta__alloc": 1, - "git_delta_t": 5, - "status": 57, - "*delta": 6, - "git__calloc": 3, - "delta": 54, - "old_file.path": 12, - "git_pool_strdup": 3, - "pool": 12, - "new_file.path": 6, - "opts.flags": 8, - "GIT_DIFF_REVERSE": 3, - "GIT_DELTA_ADDED": 4, - "GIT_DELTA_DELETED": 7, - "*diff_delta__dup": 1, - "*d": 1, - "git_pool": 4, - "*pool": 3, - "d": 16, - "fail": 19, - "*diff_delta__merge_like_cgit": 1, - "*b": 6, - "*dup": 1, - "diff_delta__dup": 3, - "dup": 15, - "new_file.oid": 7, - "git_oid_cpy": 5, - "new_file.mode": 4, - "new_file.size": 3, - "new_file.flags": 4, - "old_file.oid": 3, - "GIT_DELTA_UNTRACKED": 5, - "GIT_DELTA_IGNORED": 5, - "GIT_DELTA_UNMODIFIED": 11, - "diff_delta__from_one": 5, - "git_index_entry": 8, - "GIT_DIFF_INCLUDE_IGNORED": 1, - "GIT_DIFF_INCLUDE_UNTRACKED": 1, - "diff_delta__alloc": 2, - "assert": 41, - "GIT_DELTA_MODIFIED": 3, - "old_file.mode": 2, - "mode": 11, - "old_file.size": 1, - "file_size": 6, - "old_file.flags": 2, - "GIT_DIFF_FILE_VALID_OID": 4, - "git_vector_insert": 4, - "deltas": 8, - "diff_delta__from_two": 2, - "*old_entry": 1, - "*new_entry": 1, - "*new_oid": 1, - "GIT_DIFF_INCLUDE_UNMODIFIED": 1, - "*temp": 1, - "old_entry": 5, - "new_entry": 5, - "temp": 11, - "new_oid": 3, - "git_oid_iszero": 2, - "*diff_strdup_prefix": 1, - "strlen": 17, - "git_pool_strcat": 1, - "git_pool_strndup": 1, - "diff_delta__cmp": 3, - "*da": 1, - "*db": 3, - "strcmp": 20, - "da": 2, - "db": 10, - "config_bool": 5, - "git_config": 3, - "*cfg": 2, - "defvalue": 2, - "git_config_get_bool": 1, - "cfg": 6, - "giterr_clear": 1, - "*git_diff_list_alloc": 1, - "git_repository": 7, - "*repo": 7, - "git_diff_options": 7, - "*opts": 6, - "repo": 23, - "git_vector_init": 3, - "git_pool_init": 2, - "git_repository_config__weakptr": 1, - "diffcaps": 13, - "GIT_DIFFCAPS_HAS_SYMLINKS": 2, - "GIT_DIFFCAPS_ASSUME_UNCHANGED": 2, - "GIT_DIFFCAPS_TRUST_EXEC_BIT": 2, - "GIT_DIFFCAPS_TRUST_CTIME": 2, - "opts": 24, - "opts.pathspec": 2, - "opts.old_prefix": 4, - "diff_strdup_prefix": 2, - "old_prefix": 2, - "DIFF_OLD_PREFIX_DEFAULT": 1, - "opts.new_prefix": 4, - "new_prefix": 2, - "DIFF_NEW_PREFIX_DEFAULT": 1, - "*swap": 1, - "swap": 9, - "pathspec.count": 2, - "*pattern": 1, - "pathspec.strings": 1, - "GIT_ATTR_FNMATCH_ALLOWSPACE": 1, - "git_attr_fnmatch__parse": 1, - "GIT_ENOTFOUND": 1, - "git_diff_list_free": 3, - "deltas.contents": 1, - "git_vector_free": 3, - "pathspec.contents": 1, - "git_pool_clear": 2, - "oid_for_workdir_item": 2, - "full_path": 3, - "git_buf_joinpath": 1, - "git_repository_workdir": 1, - "S_ISLNK": 2, - "git_odb__hashlink": 1, - "full_path.ptr": 2, - "git__is_sizet": 1, - "giterr_set": 1, - "GITERR_OS": 1, - "fd": 34, - "git_futils_open_ro": 1, - "git_odb__hashfd": 1, - "GIT_OBJ_BLOB": 1, - "p_close": 1, - "EXEC_BIT_MASK": 3, - "maybe_modified": 2, - "git_iterator": 8, - "*old_iter": 2, - "*oitem": 2, - "*new_iter": 2, - "*nitem": 2, - "noid": 4, - "*use_noid": 1, - "omode": 8, - "oitem": 29, - "nmode": 10, - "nitem": 32, - "GIT_UNUSED": 1, - "old_iter": 8, - "S_ISREG": 1, - "GIT_MODE_TYPE": 3, - "GIT_MODE_PERMS_MASK": 1, - "flags_extended": 2, - "GIT_IDXENTRY_INTENT_TO_ADD": 1, - "GIT_IDXENTRY_SKIP_WORKTREE": 1, - "new_iter": 13, - "GIT_ITERATOR_WORKDIR": 2, - "ctime.seconds": 2, - "mtime.seconds": 2, - "GIT_DIFFCAPS_USE_DEV": 1, - "dev": 2, - "ino": 2, - "uid": 2, - "gid": 2, - "S_ISGITLINK": 1, - "git_submodule": 1, - "*sub": 1, - "GIT_DIFF_IGNORE_SUBMODULES": 1, - "git_submodule_lookup": 1, - "sub": 12, - "ignore": 1, - "GIT_SUBMODULE_IGNORE_ALL": 1, - "use_noid": 2, - "diff_from_iterators": 5, - "**diff_ptr": 1, - "ignore_prefix": 6, - "git_diff_list_alloc": 1, - "old_src": 1, - "new_src": 3, - "git_iterator_current": 2, - "git_iterator_advance": 5, - "delta_type": 8, - "git_buf_len": 1, - "git__prefixcmp": 2, - "git_buf_cstr": 1, - "S_ISDIR": 1, - "GIT_DIFF_RECURSE_UNTRACKED_DIRS": 1, - "git_iterator_current_is_ignored": 2, - "git_buf_sets": 1, - "git_iterator_advance_into_directory": 1, - "git_iterator_free": 4, - "*diff_ptr": 2, - "git_diff_tree_to_tree": 1, - "git_tree": 4, - "*old_tree": 3, - "*new_tree": 1, - "**diff": 4, - "diff_prefix_from_pathspec": 4, - "old_tree": 5, - "new_tree": 2, - "git_iterator_for_tree_range": 4, - "git_diff_index_to_tree": 1, - "git_iterator_for_index_range": 2, - "git_diff_workdir_to_index": 1, - "git_iterator_for_workdir_range": 2, - "git_diff_workdir_to_tree": 1, - "git_diff_merge": 1, - "*onto": 1, - "*from": 1, - "onto_pool": 7, - "git_vector": 1, - "onto_new": 6, - "j": 206, - "onto": 7, - "from": 16, - "deltas.length": 4, - "*o": 8, - "GIT_VECTOR_GET": 2, - "*f": 2, - "f": 184, - "o": 80, - "diff_delta__merge_like_cgit": 1, - "git_vector_swap": 1, - "git_pool_swap": 1, - "ATSHOME_LIBATS_DYNARRAY_CATS": 3, - "": 5, - "atslib_dynarray_memcpy": 1, - "atslib_dynarray_memmove": 1, - "memmove": 2, - "//": 262, - "ifndef": 2, - "git_usage_string": 2, - "git_more_info_string": 2, - "N_": 1, - "startup_info": 3, - "git_startup_info": 2, - "use_pager": 8, - "pager_config": 3, - "*cmd": 5, - "want": 3, - "pager_command_config": 2, - "*data": 12, - "data": 69, - "prefixcmp": 3, - "var": 7, - "cmd": 46, - "git_config_maybe_bool": 1, - "value": 9, - "xstrdup": 2, - "check_pager_config": 3, - "c.cmd": 1, - "c.want": 2, - "c.value": 3, - "pager_program": 1, - "commit_pager_choice": 4, - "setenv": 1, - "setup_pager": 1, - "handle_options": 2, - "***argv": 2, - "*argc": 1, - "*envchanged": 1, - "**orig_argv": 1, - "*argv": 6, - "new_argv": 7, - "option_count": 1, - "alias_command": 4, - "trace_argv_printf": 3, - "*argcp": 4, - "subdir": 3, - "chdir": 2, - "die_errno": 3, - "errno": 20, - "saved_errno": 1, - "git_version_string": 1, - "GIT_VERSION": 1, - "RUN_SETUP": 81, - "RUN_SETUP_GENTLY": 16, - "USE_PAGER": 3, - "NEED_WORK_TREE": 18, - "cmd_struct": 4, - "option": 9, - "run_builtin": 2, - "help": 4, - "stat": 3, - "st": 2, - "argv": 54, - "setup_git_directory": 1, - "nongit_ok": 2, - "setup_git_directory_gently": 1, - "have_repository": 1, - "trace_repo_setup": 1, - "setup_work_tree": 1, - "fn": 5, - "fstat": 1, - "fileno": 1, - "stdout": 5, - "S_ISFIFO": 1, - "st.st_mode": 2, - "S_ISSOCK": 1, - "fflush": 2, - "ferror": 2, - "fclose": 5, - "handle_internal_command": 3, - "commands": 3, - "cmd_add": 2, - "cmd_annotate": 1, - "cmd_apply": 1, - "cmd_archive": 1, - "cmd_bisect__helper": 1, - "cmd_blame": 2, - "cmd_branch": 1, - "cmd_bundle": 1, - "cmd_cat_file": 1, - "cmd_check_attr": 1, - "cmd_check_ref_format": 1, - "cmd_checkout": 1, - "cmd_checkout_index": 1, - "cmd_cherry": 1, - "cmd_cherry_pick": 1, - "cmd_clean": 1, - "cmd_clone": 1, - "cmd_column": 1, - "cmd_commit": 1, - "cmd_commit_tree": 1, - "cmd_config": 1, - "cmd_count_objects": 1, - "cmd_describe": 1, - "cmd_diff": 1, - "cmd_diff_files": 1, - "cmd_diff_index": 1, - "cmd_diff_tree": 1, - "cmd_fast_export": 1, - "cmd_fetch": 1, - "cmd_fetch_pack": 1, - "cmd_fmt_merge_msg": 1, - "cmd_for_each_ref": 1, - "cmd_format_patch": 1, - "cmd_fsck": 2, - "cmd_gc": 1, - "cmd_get_tar_commit_id": 1, - "cmd_grep": 1, - "cmd_hash_object": 1, - "cmd_help": 1, - "cmd_index_pack": 1, - "cmd_init_db": 2, - "cmd_log": 1, - "cmd_ls_files": 1, - "cmd_ls_remote": 2, - "cmd_ls_tree": 1, - "cmd_mailinfo": 1, - "cmd_mailsplit": 1, - "cmd_merge": 1, - "cmd_merge_base": 1, - "cmd_merge_file": 1, - "cmd_merge_index": 1, - "cmd_merge_ours": 1, - "cmd_merge_recursive": 4, - "cmd_merge_tree": 1, - "cmd_mktag": 1, - "cmd_mktree": 1, - "cmd_mv": 1, - "cmd_name_rev": 1, - "cmd_notes": 1, - "cmd_pack_objects": 1, - "cmd_pack_redundant": 1, - "cmd_pack_refs": 1, - "cmd_patch_id": 1, - "cmd_prune": 1, - "cmd_prune_packed": 1, - "cmd_push": 1, - "cmd_read_tree": 1, - "cmd_receive_pack": 1, - "cmd_reflog": 1, - "cmd_remote": 1, - "cmd_remote_ext": 1, - "cmd_remote_fd": 1, - "cmd_replace": 1, - "cmd_repo_config": 1, - "cmd_rerere": 1, - "cmd_reset": 1, - "cmd_rev_list": 1, - "cmd_rev_parse": 1, - "cmd_revert": 1, - "cmd_rm": 1, - "cmd_send_pack": 1, - "cmd_shortlog": 1, - "cmd_show": 1, - "cmd_show_branch": 1, - "cmd_show_ref": 1, - "cmd_status": 1, - "cmd_stripspace": 1, - "cmd_symbolic_ref": 1, - "cmd_tag": 1, - "cmd_tar_tree": 1, - "cmd_unpack_file": 1, - "cmd_unpack_objects": 1, - "cmd_update_index": 1, - "cmd_update_ref": 1, - "cmd_update_server_info": 1, - "cmd_upload_archive": 1, - "cmd_upload_archive_writer": 1, - "cmd_var": 1, - "cmd_verify_pack": 1, - "cmd_verify_tag": 1, - "cmd_version": 1, - "cmd_whatchanged": 1, - "cmd_write_tree": 1, - "ext": 4, - "STRIP_EXTENSION": 1, - "*argv0": 1, - "argv0": 2, - "ARRAY_SIZE": 1, - "exit": 20, - "execv_dashed_external": 2, - "STRBUF_INIT": 1, - "*tmp": 1, - "strbuf_addf": 1, - "tmp": 6, - "cmd.buf": 1, - "run_command_v_opt": 1, - "RUN_SILENT_EXEC_FAILURE": 1, - "RUN_CLEAN_ON_EXIT": 1, - "ENOENT": 3, - "strbuf_release": 1, - "run_argv": 2, - "done_alias": 4, - "argcp": 2, - "handle_alias": 1, - "main": 3, - "git_extract_argv0_path": 1, - "git_setup_gettext": 1, - "printf": 4, - "list_common_cmds_help": 1, - "setup_path": 1, - "done_help": 3, - "was_alias": 3, - "fprintf": 18, - "stderr": 15, - "help_unknown_cmd": 1, - "strerror": 4, - "PPC_SHA1": 1, - "git_hash_ctx": 7, - "SHA_CTX": 3, - "*git_hash_new_ctx": 1, - "*ctx": 5, - "ctx": 16, - "SHA1_Init": 4, - "git_hash_free_ctx": 1, - "git_hash_init": 1, - "git_hash_update": 1, - "SHA1_Update": 3, - "git_hash_final": 1, - "*out": 3, - "SHA1_Final": 3, - "git_hash_buf": 1, - "git_hash_vec": 1, - "git_buf_vec": 1, - "*vec": 1, - "vec": 2, - ".data": 1, - ".len": 3, - "HELLO_H": 2, - "hello": 1, - "": 5, - "": 2, - "": 3, - "": 3, - "": 2, - "ULLONG_MAX": 10, - "MIN": 3, - "HTTP_PARSER_DEBUG": 4, - "SET_ERRNO": 47, - "e": 4, - "do": 21, - "parser": 334, - "http_errno": 11, - "error_lineno": 3, - "__LINE__": 50, - "CALLBACK_NOTIFY_": 3, - "FOR": 11, - "ER": 4, - "HTTP_PARSER_ERRNO": 10, - "HPE_OK": 10, - "settings": 6, - "on_##FOR": 4, - "HPE_CB_##FOR": 2, - "CALLBACK_NOTIFY": 10, - "CALLBACK_NOTIFY_NOADVANCE": 2, - "CALLBACK_DATA_": 4, - "LEN": 2, - "FOR##_mark": 7, - "CALLBACK_DATA": 10, - "CALLBACK_DATA_NOADVANCE": 6, - "MARK": 7, - "PROXY_CONNECTION": 4, - "CONNECTION": 4, - "CONTENT_LENGTH": 4, - "TRANSFER_ENCODING": 4, - "UPGRADE": 4, - "CHUNKED": 4, - "KEEP_ALIVE": 4, - "CLOSE": 4, - "*method_strings": 1, - "XX": 63, - "num": 24, - "string": 18, - "#string": 1, - "HTTP_METHOD_MAP": 3, - "#undef": 7, - "tokens": 5, - "int8_t": 3, - "unhex": 3, - "HTTP_PARSER_STRICT": 5, - "uint8_t": 6, - "normal_url_char": 3, - "T": 3, - "s_dead": 10, - "s_start_req_or_res": 4, - "s_res_or_resp_H": 3, - "s_start_res": 5, - "s_res_H": 3, - "s_res_HT": 4, - "s_res_HTT": 3, - "s_res_HTTP": 3, - "s_res_first_http_major": 3, - "s_res_http_major": 3, - "s_res_first_http_minor": 3, - "s_res_http_minor": 3, - "s_res_first_status_code": 3, - "s_res_status_code": 3, - "s_res_status": 3, - "s_res_line_almost_done": 4, - "s_start_req": 6, - "s_req_method": 4, - "s_req_spaces_before_url": 5, - "s_req_schema": 6, - "s_req_schema_slash": 6, - "s_req_schema_slash_slash": 6, - "s_req_host_start": 8, - "s_req_host_v6_start": 7, - "s_req_host_v6": 7, - "s_req_host_v6_end": 7, - "s_req_host": 8, - "s_req_port_start": 7, - "s_req_port": 6, - "s_req_path": 8, - "s_req_query_string_start": 8, - "s_req_query_string": 7, - "s_req_fragment_start": 7, - "s_req_fragment": 7, - "s_req_http_start": 3, - "s_req_http_H": 3, - "s_req_http_HT": 3, - "s_req_http_HTT": 3, - "s_req_http_HTTP": 3, - "s_req_first_http_major": 3, - "s_req_http_major": 3, - "s_req_first_http_minor": 3, - "s_req_http_minor": 3, - "s_req_line_almost_done": 4, - "s_header_field_start": 12, - "s_header_field": 4, - "s_header_value_start": 4, - "s_header_value": 5, - "s_header_value_lws": 3, - "s_header_almost_done": 6, - "s_chunk_size_start": 4, - "s_chunk_size": 3, - "s_chunk_parameters": 3, - "s_chunk_size_almost_done": 4, - "s_headers_almost_done": 4, - "s_headers_done": 4, - "s_chunk_data": 3, - "s_chunk_data_almost_done": 3, - "s_chunk_data_done": 3, - "s_body_identity": 3, - "s_body_identity_eof": 4, - "s_message_done": 3, - "PARSING_HEADER": 2, - "header_states": 1, - "h_general": 23, - "0": 11, - "h_C": 3, - "h_CO": 3, - "h_CON": 3, - "h_matching_connection": 3, - "h_matching_proxy_connection": 3, - "h_matching_content_length": 3, - "h_matching_transfer_encoding": 3, - "h_matching_upgrade": 3, - "h_connection": 6, - "h_content_length": 5, - "h_transfer_encoding": 5, - "h_upgrade": 4, - "h_matching_transfer_encoding_chunked": 3, - "h_matching_connection_keep_alive": 3, - "h_matching_connection_close": 3, - "h_transfer_encoding_chunked": 4, - "h_connection_keep_alive": 4, - "h_connection_close": 4, - "Macros": 1, - "character": 11, - "classes": 1, - "depends": 1, - "on": 4, - "strict": 2, - "define": 14, - "CR": 18, - "r": 58, - "LF": 21, - "LOWER": 7, - "0x20": 1, - "IS_ALPHA": 5, - "z": 47, - "IS_NUM": 14, - "9": 1, - "IS_ALPHANUM": 3, - "IS_HEX": 2, - "TOKEN": 4, - "IS_URL_CHAR": 6, - "IS_HOST_CHAR": 4, - "0x80": 1, - "endif": 6, - "start_state": 1, - "HTTP_REQUEST": 7, - "cond": 1, - "HPE_STRICT": 1, - "HTTP_STRERROR_GEN": 3, - "#n": 1, - "*description": 1, - "http_strerror_tab": 7, - "HTTP_ERRNO_MAP": 3, - "http_message_needs_eof": 4, - "http_parser": 13, - "*parser": 9, - "parse_url_char": 5, - "ch": 145, - "http_parser_execute": 2, - "http_parser_settings": 5, - "*settings": 2, - "unhex_val": 7, - "*header_field_mark": 1, - "*header_value_mark": 1, - "*url_mark": 1, - "*body_mark": 1, - "message_complete": 7, - "HPE_INVALID_EOF_STATE": 1, - "header_field_mark": 2, - "header_value_mark": 2, - "url_mark": 2, - "nread": 7, - "HTTP_MAX_HEADER_SIZE": 2, - "HPE_HEADER_OVERFLOW": 1, - "reexecute_byte": 7, - "HPE_CLOSED_CONNECTION": 1, - "content_length": 27, - "message_begin": 3, - "HTTP_RESPONSE": 3, - "HPE_INVALID_CONSTANT": 3, - "method": 39, - "HTTP_HEAD": 2, - "index": 58, - "STRICT_CHECK": 15, - "HPE_INVALID_VERSION": 12, - "http_major": 11, - "http_minor": 11, - "HPE_INVALID_STATUS": 3, - "status_code": 8, - "HPE_INVALID_METHOD": 4, - "http_method": 4, - "HTTP_CONNECT": 4, - "HTTP_DELETE": 1, - "HTTP_GET": 1, - "HTTP_LOCK": 1, - "HTTP_MKCOL": 2, - "HTTP_NOTIFY": 1, - "HTTP_OPTIONS": 1, - "HTTP_POST": 2, - "HTTP_REPORT": 1, - "HTTP_SUBSCRIBE": 2, - "HTTP_TRACE": 1, - "HTTP_UNLOCK": 2, - "*matcher": 1, - "matcher": 3, - "method_strings": 2, - "HTTP_CHECKOUT": 1, - "HTTP_COPY": 1, - "HTTP_MOVE": 1, - "HTTP_MERGE": 1, - "HTTP_MSEARCH": 1, - "HTTP_MKACTIVITY": 1, - "HTTP_SEARCH": 1, - "HTTP_PROPFIND": 2, - "HTTP_PUT": 2, - "HTTP_PATCH": 1, - "HTTP_PURGE": 1, - "HTTP_UNSUBSCRIBE": 1, - "HTTP_PROPPATCH": 1, - "url": 4, - "HPE_INVALID_URL": 4, - "HPE_LF_EXPECTED": 1, - "HPE_INVALID_HEADER_TOKEN": 2, - "header_field": 5, - "header_state": 42, - "header_value": 6, - "F_UPGRADE": 3, - "HPE_INVALID_CONTENT_LENGTH": 4, - "uint64_t": 8, - "F_CONNECTION_KEEP_ALIVE": 3, - "F_CONNECTION_CLOSE": 3, - "F_CHUNKED": 11, - "F_TRAILING": 3, - "NEW_MESSAGE": 6, - "upgrade": 3, - "on_headers_complete": 3, - "F_SKIPBODY": 4, - "HPE_CB_headers_complete": 1, - "to_read": 6, - "body": 6, - "body_mark": 2, - "HPE_INVALID_CHUNK_SIZE": 2, - "HPE_INVALID_INTERNAL_STATE": 1, - "1": 2, - "HPE_UNKNOWN": 1, - "Does": 1, - "the": 91, - "need": 5, - "to": 37, - "see": 2, - "an": 2, - "EOF": 26, - "find": 1, - "end": 48, - "of": 44, - "message": 3, - "http_should_keep_alive": 2, - "http_method_str": 1, - "m": 8, - "http_parser_init": 2, - "http_parser_type": 3, - "http_errno_name": 1, - "/sizeof": 4, - ".name": 1, - "http_errno_description": 1, - ".description": 1, - "http_parser_parse_url": 2, - "buflen": 3, - "is_connect": 4, - "http_parser_url": 3, - "*u": 2, - "http_parser_url_fields": 2, - "uf": 14, - "old_uf": 4, - "u": 18, - "port": 7, - "field_set": 5, - "UF_MAX": 3, - "UF_SCHEMA": 2, - "UF_HOST": 3, - "UF_PORT": 5, - "UF_PATH": 2, - "UF_QUERY": 2, - "UF_FRAGMENT": 2, - "field_data": 5, - ".off": 2, - "xffff": 1, - "uint16_t": 12, - "http_parser_pause": 2, - "paused": 3, - "HPE_PAUSED": 2, - "http_parser_h": 2, - "__cplusplus": 20, - "HTTP_PARSER_VERSION_MAJOR": 1, - "HTTP_PARSER_VERSION_MINOR": 1, - "": 2, - "_WIN32": 3, - "__MINGW32__": 1, - "_MSC_VER": 5, - "__int8": 2, - "__int16": 2, - "int16_t": 1, - "__int32": 2, - "int32_t": 112, - "__int64": 3, - "int64_t": 2, - "ssize_t": 1, - "": 1, - "*1024": 4, - "DELETE": 2, - "GET": 2, - "HEAD": 2, - "POST": 2, - "PUT": 2, - "CONNECT": 2, - "OPTIONS": 2, - "TRACE": 2, - "COPY": 2, - "LOCK": 2, - "MKCOL": 2, - "MOVE": 2, - "PROPFIND": 2, - "PROPPATCH": 2, - "SEARCH": 3, - "UNLOCK": 2, - "REPORT": 2, - "MKACTIVITY": 2, - "CHECKOUT": 2, - "MERGE": 2, - "MSEARCH": 1, - "M": 1, - "NOTIFY": 2, - "SUBSCRIBE": 2, - "UNSUBSCRIBE": 2, - "PATCH": 2, - "PURGE": 2, - "HTTP_##name": 1, - "HTTP_BOTH": 1, - "OK": 1, - "CB_message_begin": 1, - "CB_url": 1, - "CB_header_field": 1, - "CB_header_value": 1, - "CB_headers_complete": 1, - "CB_body": 1, - "CB_message_complete": 1, - "INVALID_EOF_STATE": 1, - "HEADER_OVERFLOW": 1, - "CLOSED_CONNECTION": 1, - "INVALID_VERSION": 1, - "INVALID_STATUS": 1, - "INVALID_METHOD": 1, - "INVALID_URL": 1, - "INVALID_HOST": 1, - "INVALID_PORT": 1, - "INVALID_PATH": 1, - "INVALID_QUERY_STRING": 1, - "INVALID_FRAGMENT": 1, - "LF_EXPECTED": 1, - "INVALID_HEADER_TOKEN": 1, - "INVALID_CONTENT_LENGTH": 1, - "INVALID_CHUNK_SIZE": 1, - "INVALID_CONSTANT": 1, - "INVALID_INTERNAL_STATE": 1, - "STRICT": 1, - "PAUSED": 1, - "UNKNOWN": 1, - "HTTP_ERRNO_GEN": 3, - "HPE_##n": 1, - "HTTP_PARSER_ERRNO_LINE": 2, - "short": 6, - "http_cb": 3, - "on_message_begin": 1, - "http_data_cb": 4, - "on_url": 1, - "on_header_field": 1, - "on_header_value": 1, - "on_body": 1, - "on_message_complete": 1, - "off": 8, - "*http_method_str": 1, - "*http_errno_name": 1, - "*http_errno_description": 1, - "": 1, - "_Included_jni_JniLayer": 2, - "JNIEXPORT": 6, - "jlong": 6, - "JNICALL": 6, - "Java_jni_JniLayer_jni_1layer_1initialize": 1, - "JNIEnv": 6, - "jobject": 6, - "jintArray": 1, - "jint": 7, - "Java_jni_JniLayer_jni_1layer_1mainloop": 1, - "Java_jni_JniLayer_jni_1layer_1set_1button": 1, - "Java_jni_JniLayer_jni_1layer_1set_1analog": 1, - "jfloat": 1, - "Java_jni_JniLayer_jni_1layer_1report_1analog_1chg": 1, - "Java_jni_JniLayer_jni_1layer_1kill": 1, - "strncasecmp": 2, - "_strnicmp": 1, - "REF_TABLE_SIZE": 1, - "BUFFER_BLOCK": 5, - "BUFFER_SPAN": 9, - "MKD_LI_END": 1, - "gperf_case_strncmp": 1, - "s1": 6, - "s2": 6, - "GPERF_DOWNCASE": 1, - "GPERF_CASE_STRNCMP": 1, - "link_ref": 2, - "*link": 1, - "*title": 1, - "sd_markdown": 6, - "tag": 1, - "tag_len": 3, - "w": 6, - "is_empty": 4, - "htmlblock_end": 3, - "*curtag": 2, - "*rndr": 4, - "start_of_line": 2, - "tag_size": 3, - "curtag": 8, - "end_tag": 4, - "block_lines": 3, - "htmlblock_end_tag": 1, - "rndr": 25, - "parse_htmlblock": 1, - "*ob": 3, - "do_render": 4, - "tag_end": 7, - "work": 4, - "find_block_tag": 1, - "work.size": 5, - "cb.blockhtml": 6, - "ob": 14, - "opaque": 8, - "parse_table_row": 1, - "columns": 3, - "*col_data": 1, - "header_flag": 3, - "col": 9, - "*row_work": 1, - "cb.table_cell": 3, - "cb.table_row": 2, - "row_work": 4, - "rndr_newbuf": 2, - "cell_start": 5, - "cell_end": 6, - "*cell_work": 1, - "cell_work": 3, - "_isspace": 3, - "parse_inline": 1, - "col_data": 2, - "rndr_popbuf": 2, - "empty_cell": 2, - "parse_table_header": 1, - "*columns": 2, - "**column_data": 1, - "pipes": 23, - "header_end": 7, - "under_end": 1, - "*column_data": 1, - "calloc": 1, - "beg": 10, - "doc_size": 6, - "document": 9, - "UTF8_BOM": 1, - "is_ref": 1, - "md": 18, - "refs": 2, - "expand_tabs": 1, - "text": 22, - "bufputc": 2, - "bufgrow": 1, - "MARKDOWN_GROW": 1, - "cb.doc_header": 2, - "parse_block": 1, - "cb.doc_footer": 2, - "bufrelease": 3, - "free_link_refs": 1, - "work_bufs": 8, - ".size": 2, - "sd_markdown_free": 1, - "*md": 1, - ".asize": 2, - ".item": 2, - "stack_free": 2, - "sd_version": 1, - "*ver_major": 2, - "*ver_minor": 2, - "*ver_revision": 2, - "SUNDOWN_VER_MAJOR": 1, - "SUNDOWN_VER_MINOR": 1, - "SUNDOWN_VER_REVISION": 1, - "": 4, - "": 2, - "": 1, - "": 1, - "": 2, - "__APPLE__": 2, - "TARGET_OS_IPHONE": 1, - "**environ": 1, - "uv__chld": 2, - "EV_P_": 1, - "ev_child*": 1, - "watcher": 4, - "revents": 2, - "rstatus": 1, - "exit_status": 3, - "term_signal": 3, - "uv_process_t": 1, - "*process": 1, - "process": 19, - "child_watcher": 5, - "EV_CHILD": 1, - "ev_child_stop": 2, - "EV_A_": 1, - "WIFEXITED": 1, - "WEXITSTATUS": 2, - "WIFSIGNALED": 2, - "WTERMSIG": 2, - "exit_cb": 3, - "uv__make_socketpair": 2, - "fds": 20, - "SOCK_NONBLOCK": 2, - "fl": 8, - "SOCK_CLOEXEC": 1, - "UV__F_NONBLOCK": 5, - "socketpair": 2, - "AF_UNIX": 2, - "SOCK_STREAM": 2, - "uv__cloexec": 4, - "uv__nonblock": 5, - "uv__make_pipe": 2, - "__linux__": 3, - "UV__O_CLOEXEC": 1, - "UV__O_NONBLOCK": 1, - "uv__pipe2": 1, - "ENOSYS": 1, - "pipe": 1, - "uv__process_init_stdio": 2, - "uv_stdio_container_t*": 4, - "container": 17, - "writable": 8, - "UV_IGNORE": 2, - "UV_CREATE_PIPE": 4, - "UV_INHERIT_FD": 3, - "UV_INHERIT_STREAM": 2, - "data.stream": 7, - "UV_NAMED_PIPE": 2, - "data.fd": 1, - "uv__process_stdio_flags": 2, - "uv_pipe_t*": 1, - "ipc": 1, - "UV_STREAM_READABLE": 2, - "UV_STREAM_WRITABLE": 2, - "uv__process_open_stream": 2, - "child_fd": 3, - "close": 13, - "uv__stream_open": 1, - "uv_stream_t*": 2, - "uv__process_close_stream": 2, - "uv__stream_close": 1, - "uv__process_child_init": 2, - "uv_process_options_t": 2, - "options": 62, - "stdio_count": 7, - "int*": 22, - "options.flags": 4, - "UV_PROCESS_DETACHED": 2, - "setsid": 2, - "close_fd": 2, - "use_fd": 7, - "open": 4, - "O_RDONLY": 1, - "O_RDWR": 2, - "perror": 5, - "_exit": 6, - "dup2": 4, - "options.cwd": 2, - "UV_PROCESS_SETGID": 2, - "setgid": 1, - "options.gid": 1, - "UV_PROCESS_SETUID": 2, - "setuid": 1, - "options.uid": 1, - "environ": 4, - "options.env": 1, - "execvp": 1, - "options.file": 2, - "options.args": 1, - "SPAWN_WAIT_EXEC": 5, - "uv_spawn": 1, - "uv_loop_t*": 1, - "loop": 9, - "uv_process_t*": 3, - "char**": 7, - "save_our_env": 3, - "options.stdio_count": 4, - "malloc": 3, - "signal_pipe": 7, - "pollfd": 1, - "pfd": 2, - "pid_t": 2, - "pid": 13, - "UV_PROCESS_WINDOWS_VERBATIM_ARGUMENTS": 1, - "uv__handle_init": 1, - "uv_handle_t*": 1, - "UV_PROCESS": 1, - "counters.process_init": 1, - "uv__handle_start": 1, - "options.exit_cb": 1, - "options.stdio": 3, - "fork": 2, - "pfd.fd": 1, - "pfd.events": 1, - "POLLIN": 1, - "POLLHUP": 1, - "pfd.revents": 1, - "poll": 1, - "EINTR": 1, - "ev_child_init": 1, - "ev_child_start": 1, - "ev": 2, - "child_watcher.data": 1, - "uv__set_sys_error": 2, - "uv_process_kill": 1, - "signum": 4, - "kill": 4, - "uv_err_t": 1, - "uv_kill": 1, - "uv__new_sys_error": 1, - "uv_ok_": 1, - "uv__process_close": 1, - "handle": 10, - "uv__handle_stop": 1, - "VALUE": 13, - "rb_cRDiscount": 4, - "rb_rdiscount_to_html": 2, - "self": 9, - "*res": 2, - "szres": 8, - "encoding": 14, - "rb_funcall": 14, - "rb_intern": 15, - "rb_str_buf_new": 2, - "Check_Type": 2, - "T_STRING": 2, - "rb_rdiscount__get_flags": 3, - "MMIOT": 2, - "*doc": 2, - "mkd_string": 2, - "RSTRING_PTR": 2, - "RSTRING_LEN": 2, - "mkd_compile": 2, - "doc": 6, - "mkd_document": 1, - "res": 4, - "rb_str_cat": 4, - "mkd_cleanup": 2, - "rb_respond_to": 1, - "rb_rdiscount_toc_content": 2, - "mkd_toc": 1, - "ruby_obj": 11, - "MKD_TABSTOP": 1, - "MKD_NOHEADER": 1, - "Qtrue": 10, - "MKD_NOPANTS": 1, - "MKD_NOHTML": 1, - "MKD_TOC": 1, - "MKD_NOIMAGE": 1, - "MKD_NOLINKS": 1, - "MKD_NOTABLES": 1, - "MKD_STRICT": 1, - "MKD_AUTOLINK": 1, - "MKD_SAFELINK": 1, - "MKD_NO_EXT": 1, - "Init_rdiscount": 1, - "rb_define_class": 1, - "rb_cObject": 1, - "rb_define_method": 2, - "READLINE_READLINE_CATS": 3, - "": 1, - "atscntrb_readline_rl_library_version": 1, - "char*": 167, - "rl_library_version": 1, - "atscntrb_readline_rl_readline_version": 1, - "rl_readline_version": 1, - "atscntrb_readline_readline": 1, - "readline": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 2, - "": 1, - "": 1, - "": 3, - "": 1, - "sharedObjectsStruct": 1, - "shared": 1, - "double": 126, - "R_Zero": 2, - "R_PosInf": 2, - "R_NegInf": 2, - "R_Nan": 2, - "redisServer": 1, - "server": 1, - "redisCommand": 6, - "*commandTable": 1, - "redisCommandTable": 5, - "getCommand": 1, - "setCommand": 1, - "noPreloadGetKeys": 6, - "setnxCommand": 1, - "setexCommand": 1, - "psetexCommand": 1, - "appendCommand": 1, - "strlenCommand": 1, - "delCommand": 1, - "existsCommand": 1, - "setbitCommand": 1, - "getbitCommand": 1, - "setrangeCommand": 1, - "getrangeCommand": 2, - "incrCommand": 1, - "decrCommand": 1, - "mgetCommand": 1, - "rpushCommand": 1, - "lpushCommand": 1, - "rpushxCommand": 1, - "lpushxCommand": 1, - "linsertCommand": 1, - "rpopCommand": 1, - "lpopCommand": 1, - "brpopCommand": 1, - "brpoplpushCommand": 1, - "blpopCommand": 1, - "llenCommand": 1, - "lindexCommand": 1, - "lsetCommand": 1, - "lrangeCommand": 1, - "ltrimCommand": 1, - "lremCommand": 1, - "rpoplpushCommand": 1, - "saddCommand": 1, - "sremCommand": 1, - "smoveCommand": 1, - "sismemberCommand": 1, - "scardCommand": 1, - "spopCommand": 1, - "srandmemberCommand": 1, - "sinterCommand": 2, - "sinterstoreCommand": 1, - "sunionCommand": 1, - "sunionstoreCommand": 1, - "sdiffCommand": 1, - "sdiffstoreCommand": 1, - "zaddCommand": 1, - "zincrbyCommand": 1, - "zremCommand": 1, - "zremrangebyscoreCommand": 1, - "zremrangebyrankCommand": 1, - "zunionstoreCommand": 1, - "zunionInterGetKeys": 4, - "zinterstoreCommand": 1, - "zrangeCommand": 1, - "zrangebyscoreCommand": 1, - "zrevrangebyscoreCommand": 1, - "zcountCommand": 1, - "zrevrangeCommand": 1, - "zcardCommand": 1, - "zscoreCommand": 1, - "zrankCommand": 1, - "zrevrankCommand": 1, - "hsetCommand": 1, - "hsetnxCommand": 1, - "hgetCommand": 1, - "hmsetCommand": 1, - "hmgetCommand": 1, - "hincrbyCommand": 1, - "hincrbyfloatCommand": 1, - "hdelCommand": 1, - "hlenCommand": 1, - "hkeysCommand": 1, - "hvalsCommand": 1, - "hgetallCommand": 1, - "hexistsCommand": 1, - "incrbyCommand": 1, - "decrbyCommand": 1, - "incrbyfloatCommand": 1, - "getsetCommand": 1, - "msetCommand": 1, - "msetnxCommand": 1, - "randomkeyCommand": 1, - "selectCommand": 1, - "moveCommand": 1, - "renameCommand": 1, - "renameGetKeys": 2, - "renamenxCommand": 1, - "expireCommand": 1, - "expireatCommand": 1, - "pexpireCommand": 1, - "pexpireatCommand": 1, - "keysCommand": 1, - "dbsizeCommand": 1, - "authCommand": 3, - "pingCommand": 2, - "echoCommand": 2, - "saveCommand": 1, - "bgsaveCommand": 1, - "bgrewriteaofCommand": 1, - "shutdownCommand": 2, - "lastsaveCommand": 1, - "typeCommand": 1, - "multiCommand": 2, - "execCommand": 2, - "discardCommand": 2, - "syncCommand": 1, - "flushdbCommand": 1, - "flushallCommand": 1, - "sortCommand": 1, - "infoCommand": 4, - "monitorCommand": 2, - "ttlCommand": 1, - "pttlCommand": 1, - "persistCommand": 1, - "slaveofCommand": 2, - "debugCommand": 1, - "configCommand": 1, - "subscribeCommand": 2, - "unsubscribeCommand": 2, - "psubscribeCommand": 2, - "punsubscribeCommand": 2, - "publishCommand": 1, - "watchCommand": 2, - "unwatchCommand": 1, - "clusterCommand": 1, - "restoreCommand": 1, - "migrateCommand": 1, - "askingCommand": 1, - "dumpCommand": 1, - "objectCommand": 1, - "clientCommand": 1, - "evalCommand": 1, - "evalShaCommand": 1, - "slowlogCommand": 1, - "scriptCommand": 2, - "timeCommand": 2, - "bitopCommand": 1, - "bitcountCommand": 1, - "redisLogRaw": 3, - "level": 12, - "syslogLevelMap": 2, - "LOG_DEBUG": 1, - "LOG_INFO": 1, - "LOG_NOTICE": 1, - "LOG_WARNING": 1, - "FILE": 3, - "*fp": 3, - "rawmode": 2, - "REDIS_LOG_RAW": 2, - "xff": 3, - "server.verbosity": 4, - "fp": 13, - "server.logfile": 8, - "fopen": 3, - "msg": 10, - "timeval": 4, - "tv": 8, - "gettimeofday": 4, - "strftime": 1, - "localtime": 1, - "tv.tv_sec": 4, - "snprintf": 2, - "tv.tv_usec/1000": 1, - "getpid": 7, - "server.syslog_enabled": 3, - "syslog": 1, - "redisLog": 33, - "...": 127, - "va_list": 3, - "ap": 4, - "REDIS_MAX_LOGMSG_LEN": 1, - "va_start": 3, - "vsnprintf": 1, - "va_end": 3, - "redisLogFromHandler": 2, - "server.daemonize": 5, - "O_APPEND": 2, - "O_CREAT": 2, - "O_WRONLY": 2, - "STDOUT_FILENO": 2, - "ll2string": 3, - "write": 7, - "time": 10, - "oom": 3, - "REDIS_WARNING": 19, - "sleep": 1, - "abort": 1, - "ustime": 7, - "ust": 7, - "*1000000": 1, - "tv.tv_usec": 3, - "mstime": 5, - "/1000": 1, - "exitFromChild": 1, - "retcode": 3, - "COVERAGE_TEST": 1, - "dictVanillaFree": 1, - "*privdata": 8, - "DICT_NOTUSED": 6, - "privdata": 8, - "zfree": 2, - "dictListDestructor": 2, - "listRelease": 1, - "list*": 1, - "dictSdsKeyCompare": 6, - "*key1": 4, - "*key2": 4, - "l1": 4, - "l2": 3, - "sdslen": 14, - "sds": 13, - "key1": 5, - "key2": 5, - "dictSdsKeyCaseCompare": 2, - "strcasecmp": 13, - "dictRedisObjectDestructor": 7, - "decrRefCount": 6, - "dictSdsDestructor": 4, - "sdsfree": 2, - "dictObjKeyCompare": 2, - "robj": 7, - "*o1": 2, - "*o2": 2, - "o1": 7, - "ptr": 18, - "o2": 7, - "dictObjHash": 2, - "key": 9, - "dictGenHashFunction": 5, - "dictSdsHash": 4, - "dictSdsCaseHash": 2, - "dictGenCaseHashFunction": 1, - "dictEncObjKeyCompare": 4, - "robj*": 3, - "REDIS_ENCODING_INT": 4, - "getDecodedObject": 3, - "dictEncObjHash": 4, - "REDIS_ENCODING_RAW": 1, - "dictType": 8, - "setDictType": 1, - "zsetDictType": 1, - "dbDictType": 2, - "keyptrDictType": 2, - "commandTableDictType": 2, - "hashDictType": 1, - "keylistDictType": 4, - "clusterNodesDictType": 1, - "htNeedsResize": 3, - "dict": 11, - "*dict": 5, - "used": 10, - "dictSlots": 3, - "dictSize": 10, - "DICT_HT_INITIAL_SIZE": 2, - "used*100/size": 1, - "REDIS_HT_MINFILL": 1, - "tryResizeHashTables": 2, - "server.dbnum": 8, - "server.db": 23, - ".dict": 9, - "dictResize": 2, - ".expires": 8, - "incrementallyRehash": 2, - "dictIsRehashing": 2, - "dictRehashMilliseconds": 2, - "updateDictResizePolicy": 2, - "server.rdb_child_pid": 12, - "server.aof_child_pid": 10, - "dictEnableResize": 1, - "dictDisableResize": 1, - "activeExpireCycle": 2, - "iteration": 6, - "start": 10, - "timelimit": 5, - "*REDIS_EXPIRELOOKUPS_TIME_PERC/REDIS_HZ/100": 1, - "expired": 4, - "redisDb": 3, - "expires": 3, - "slots": 2, - "now": 5, - "num*100/slots": 1, - "REDIS_EXPIRELOOKUPS_PER_CRON": 2, - "dictEntry": 2, - "*de": 2, - "de": 12, - "dictGetRandomKey": 4, - "dictGetSignedIntegerVal": 1, - "dictGetKey": 4, - "*keyobj": 2, - "createStringObject": 11, - "propagateExpire": 2, - "keyobj": 6, - "dbDelete": 2, - "server.stat_expiredkeys": 3, - "xf": 1, - "REDIS_EXPIRELOOKUPS_PER_CRON/4": 1, - "updateLRUClock": 3, - "server.lruclock": 2, - "server.unixtime/REDIS_LRU_CLOCK_RESOLUTION": 1, - "REDIS_LRU_CLOCK_MAX": 1, - "trackOperationsPerSecond": 2, - "server.ops_sec_last_sample_time": 3, - "ops": 1, - "server.stat_numcommands": 4, - "server.ops_sec_last_sample_ops": 3, - "ops_sec": 3, - "ops*1000/t": 1, - "server.ops_sec_samples": 4, - "server.ops_sec_idx": 4, - "%": 2, - "REDIS_OPS_SEC_SAMPLES": 3, - "getOperationsPerSecond": 2, - "sum": 3, - "clientsCronHandleTimeout": 2, - "redisClient": 12, - "time_t": 4, - "server.unixtime": 10, - "server.maxidletime": 3, - "REDIS_SLAVE": 3, - "REDIS_MASTER": 2, - "REDIS_BLOCKED": 2, - "pubsub_channels": 2, - "listLength": 14, - "pubsub_patterns": 2, - "lastinteraction": 3, - "REDIS_VERBOSE": 3, - "freeClient": 1, - "bpop.timeout": 2, - "addReply": 13, - "shared.nullmultibulk": 2, - "unblockClientWaitingData": 1, - "clientsCronResizeQueryBuffer": 2, - "querybuf_size": 3, - "sdsAllocSize": 1, - "querybuf": 6, - "idletime": 2, - "REDIS_MBULK_BIG_ARG": 1, - "querybuf_size/": 1, - "querybuf_peak": 2, - "sdsavail": 1, - "sdsRemoveFreeSpace": 1, - "clientsCron": 2, - "numclients": 3, - "server.clients": 7, - "iterations": 4, - "numclients/": 1, - "REDIS_HZ*10": 1, - "listNode": 4, - "*head": 1, - "listRotate": 1, - "head": 3, - "listFirst": 2, - "listNodeValue": 3, - "run_with_period": 6, - "_ms_": 2, - "loops": 2, - "/REDIS_HZ": 2, - "serverCron": 2, - "aeEventLoop": 2, - "*eventLoop": 2, - "*clientData": 1, - "server.cronloops": 3, - "REDIS_NOTUSED": 5, - "eventLoop": 2, - "clientData": 1, - "server.watchdog_period": 3, - "watchdogScheduleSignal": 1, - "zmalloc_used_memory": 8, - "server.stat_peak_memory": 5, - "server.shutdown_asap": 3, - "prepareForShutdown": 2, - "REDIS_OK": 23, - "vkeys": 8, - "server.activerehashing": 2, - "server.slaves": 9, - "server.aof_rewrite_scheduled": 4, - "rewriteAppendOnlyFileBackground": 2, - "statloc": 5, - "wait3": 1, - "WNOHANG": 1, - "exitcode": 3, - "bysignal": 4, - "backgroundSaveDoneHandler": 1, - "backgroundRewriteDoneHandler": 1, - "server.saveparamslen": 3, - "saveparam": 1, - "*sp": 1, - "server.saveparams": 2, - "server.dirty": 3, - "sp": 4, - "changes": 2, - "server.lastsave": 3, - "seconds": 2, - "REDIS_NOTICE": 13, - "rdbSaveBackground": 1, - "server.rdb_filename": 4, - "server.aof_rewrite_perc": 3, - "server.aof_current_size": 2, - "server.aof_rewrite_min_size": 2, - "base": 1, - "server.aof_rewrite_base_size": 4, - "growth": 3, - "server.aof_current_size*100/base": 1, - "server.aof_flush_postponed_start": 2, - "flushAppendOnlyFile": 2, - "server.masterhost": 7, - "freeClientsInAsyncFreeQueue": 1, - "replicationCron": 1, - "server.cluster_enabled": 6, - "clusterCron": 1, - "beforeSleep": 2, - "*ln": 3, - "server.unblocked_clients": 4, - "ln": 8, - "redisAssert": 1, - "listDelNode": 1, - "REDIS_UNBLOCKED": 1, - "server.current_client": 3, - "processInputBuffer": 1, - "createSharedObjects": 2, - "shared.crlf": 2, - "createObject": 31, - "REDIS_STRING": 31, - "sdsnew": 27, - "shared.ok": 3, - "shared.err": 1, - "shared.emptybulk": 1, - "shared.czero": 1, - "shared.cone": 1, - "shared.cnegone": 1, - "shared.nullbulk": 1, - "shared.emptymultibulk": 1, - "shared.pong": 2, - "shared.queued": 2, - "shared.wrongtypeerr": 1, - "shared.nokeyerr": 1, - "shared.syntaxerr": 2, - "shared.sameobjecterr": 1, - "shared.outofrangeerr": 1, - "shared.noscripterr": 1, - "shared.loadingerr": 2, - "shared.slowscripterr": 2, - "shared.masterdownerr": 2, - "shared.bgsaveerr": 2, - "shared.roslaveerr": 2, - "shared.oomerr": 2, - "shared.space": 1, - "shared.colon": 1, - "shared.plus": 1, - "REDIS_SHARED_SELECT_CMDS": 1, - "shared.select": 1, - "sdscatprintf": 24, - "sdsempty": 8, - "shared.messagebulk": 1, - "shared.pmessagebulk": 1, - "shared.subscribebulk": 1, - "shared.unsubscribebulk": 1, - "shared.psubscribebulk": 1, - "shared.punsubscribebulk": 1, - "shared.del": 1, - "shared.rpop": 1, - "shared.lpop": 1, - "REDIS_SHARED_INTEGERS": 1, - "shared.integers": 2, - "void*": 135, - "REDIS_SHARED_BULKHDR_LEN": 1, - "shared.mbulkhdr": 1, - "shared.bulkhdr": 1, - "initServerConfig": 2, - "getRandomHexChars": 1, - "server.runid": 3, - "REDIS_RUN_ID_SIZE": 2, - "server.arch_bits": 3, - "server.port": 7, - "REDIS_SERVERPORT": 1, - "server.bindaddr": 2, - "server.unixsocket": 7, - "server.unixsocketperm": 2, - "server.ipfd": 9, - "server.sofd": 9, - "REDIS_DEFAULT_DBNUM": 1, - "REDIS_MAXIDLETIME": 1, - "server.client_max_querybuf_len": 1, - "REDIS_MAX_QUERYBUF_LEN": 1, - "server.loading": 4, - "server.syslog_ident": 2, - "zstrdup": 5, - "server.syslog_facility": 2, - "LOG_LOCAL0": 1, - "server.aof_state": 7, - "REDIS_AOF_OFF": 5, - "server.aof_fsync": 1, - "AOF_FSYNC_EVERYSEC": 1, - "server.aof_no_fsync_on_rewrite": 1, - "REDIS_AOF_REWRITE_PERC": 1, - "REDIS_AOF_REWRITE_MIN_SIZE": 1, - "server.aof_last_fsync": 1, - "server.aof_rewrite_time_last": 2, - "server.aof_rewrite_time_start": 2, - "server.aof_delayed_fsync": 2, - "server.aof_fd": 4, - "server.aof_selected_db": 1, - "server.pidfile": 3, - "server.aof_filename": 3, - "server.requirepass": 4, - "server.rdb_compression": 1, - "server.rdb_checksum": 1, - "server.maxclients": 6, - "REDIS_MAX_CLIENTS": 1, - "server.bpop_blocked_clients": 2, - "server.maxmemory": 6, - "server.maxmemory_policy": 11, - "REDIS_MAXMEMORY_VOLATILE_LRU": 3, - "server.maxmemory_samples": 3, - "server.hash_max_ziplist_entries": 1, - "REDIS_HASH_MAX_ZIPLIST_ENTRIES": 1, - "server.hash_max_ziplist_value": 1, - "REDIS_HASH_MAX_ZIPLIST_VALUE": 1, - "server.list_max_ziplist_entries": 1, - "REDIS_LIST_MAX_ZIPLIST_ENTRIES": 1, - "server.list_max_ziplist_value": 1, - "REDIS_LIST_MAX_ZIPLIST_VALUE": 1, - "server.set_max_intset_entries": 1, - "REDIS_SET_MAX_INTSET_ENTRIES": 1, - "server.zset_max_ziplist_entries": 1, - "REDIS_ZSET_MAX_ZIPLIST_ENTRIES": 1, - "server.zset_max_ziplist_value": 1, - "REDIS_ZSET_MAX_ZIPLIST_VALUE": 1, - "server.repl_ping_slave_period": 1, - "REDIS_REPL_PING_SLAVE_PERIOD": 1, - "server.repl_timeout": 1, - "REDIS_REPL_TIMEOUT": 1, - "server.cluster.configfile": 1, - "server.lua_caller": 1, - "server.lua_time_limit": 1, - "REDIS_LUA_TIME_LIMIT": 1, - "server.lua_client": 1, - "server.lua_timedout": 2, - "resetServerSaveParams": 2, - "appendServerSaveParams": 3, - "*60": 1, - "server.masterauth": 1, - "server.masterport": 2, - "server.master": 3, - "server.repl_state": 6, - "REDIS_REPL_NONE": 1, - "server.repl_syncio_timeout": 1, - "REDIS_REPL_SYNCIO_TIMEOUT": 1, - "server.repl_serve_stale_data": 2, - "server.repl_slave_ro": 2, - "server.repl_down_since": 2, - "server.client_obuf_limits": 9, - "REDIS_CLIENT_LIMIT_CLASS_NORMAL": 3, - ".hard_limit_bytes": 3, - ".soft_limit_bytes": 3, - ".soft_limit_seconds": 3, - "REDIS_CLIENT_LIMIT_CLASS_SLAVE": 3, - "*1024*256": 1, - "*1024*64": 1, - "REDIS_CLIENT_LIMIT_CLASS_PUBSUB": 3, - "*1024*32": 1, - "*1024*8": 1, - "/R_Zero": 2, - "R_Zero/R_Zero": 1, - "server.commands": 1, - "dictCreate": 6, - "populateCommandTable": 2, - "server.delCommand": 1, - "lookupCommandByCString": 3, - "server.multiCommand": 1, - "server.lpushCommand": 1, - "server.slowlog_log_slower_than": 1, - "REDIS_SLOWLOG_LOG_SLOWER_THAN": 1, - "server.slowlog_max_len": 1, - "REDIS_SLOWLOG_MAX_LEN": 1, - "server.assert_failed": 1, - "server.assert_file": 1, - "server.assert_line": 1, - "server.bug_report_start": 1, - "adjustOpenFilesLimit": 2, - "rlim_t": 3, - "maxfiles": 6, - "rlimit": 1, - "limit": 3, - "getrlimit": 1, - "RLIMIT_NOFILE": 2, - "oldlimit": 5, - "limit.rlim_cur": 2, - "limit.rlim_max": 1, - "setrlimit": 1, - "initServer": 2, - "signal": 2, - "SIGHUP": 1, - "SIG_IGN": 2, - "SIGPIPE": 1, - "setupSignalHandlers": 2, - "openlog": 1, - "LOG_PID": 1, - "LOG_NDELAY": 1, - "LOG_NOWAIT": 1, - "listCreate": 6, - "server.clients_to_close": 1, - "server.monitors": 2, - "server.el": 7, - "aeCreateEventLoop": 1, - "zmalloc": 2, - "*server.dbnum": 1, - "anetTcpServer": 1, - "server.neterr": 4, - "ANET_ERR": 2, - "unlink": 3, - "anetUnixServer": 1, - ".blocking_keys": 1, - ".watched_keys": 1, - ".id": 1, - "server.pubsub_channels": 2, - "server.pubsub_patterns": 4, - "listSetFreeMethod": 1, - "freePubsubPattern": 1, - "listSetMatchMethod": 1, - "listMatchPubsubPattern": 1, - "aofRewriteBufferReset": 1, - "server.aof_buf": 3, - "server.rdb_save_time_last": 2, - "server.rdb_save_time_start": 2, - "server.stat_numconnections": 2, - "server.stat_evictedkeys": 3, - "server.stat_starttime": 2, - "server.stat_keyspace_misses": 2, - "server.stat_keyspace_hits": 2, - "server.stat_fork_time": 2, - "server.stat_rejected_conn": 2, - "server.lastbgsave_status": 3, - "server.stop_writes_on_bgsave_err": 2, - "aeCreateTimeEvent": 1, - "aeCreateFileEvent": 2, - "AE_READABLE": 2, - "acceptTcpHandler": 1, - "AE_ERR": 2, - "acceptUnixHandler": 1, - "REDIS_AOF_ON": 2, - "LL*": 1, - "REDIS_MAXMEMORY_NO_EVICTION": 2, - "clusterInit": 1, - "scriptingInit": 1, - "slowlogInit": 1, - "bioInit": 1, - "numcommands": 5, - "sflags": 1, - "retval": 3, - "arity": 3, - "addReplyErrorFormat": 1, - "authenticated": 3, - "proc": 14, - "addReplyError": 6, - "getkeys_proc": 1, - "firstkey": 1, - "hashslot": 3, - "server.cluster.state": 1, - "REDIS_CLUSTER_OK": 1, - "ask": 3, - "clusterNode": 1, - "*n": 1, - "getNodeByQuery": 1, - "server.cluster.myself": 1, - "addReplySds": 3, - "ip": 4, - "freeMemoryIfNeeded": 2, - "REDIS_CMD_DENYOOM": 1, - "REDIS_ERR": 5, - "REDIS_CMD_WRITE": 2, - "REDIS_REPL_CONNECTED": 3, - "tolower": 2, - "REDIS_MULTI": 1, - "queueMultiCommand": 1, - "call": 1, - "REDIS_CALL_FULL": 1, - "save": 2, - "REDIS_SHUTDOWN_SAVE": 1, - "nosave": 2, - "REDIS_SHUTDOWN_NOSAVE": 1, - "SIGKILL": 2, - "rdbRemoveTempFile": 1, - "aof_fsync": 1, - "rdbSave": 1, - "addReplyBulk": 1, - "addReplyMultiBulkLen": 1, - "addReplyBulkLongLong": 2, - "bytesToHuman": 3, - "*s": 3, - "sprintf": 10, - "n/": 3, - "LL*1024*1024": 2, - "LL*1024*1024*1024": 1, - "genRedisInfoString": 2, - "*section": 2, - "info": 64, - "uptime": 2, - "rusage": 1, - "self_ru": 2, - "c_ru": 2, - "lol": 3, - "bib": 3, - "allsections": 12, - "defsections": 11, - "sections": 11, - "section": 14, - "getrusage": 2, - "RUSAGE_SELF": 1, - "RUSAGE_CHILDREN": 1, - "getClientsMaxBuffers": 1, - "utsname": 1, - "sdscat": 14, - "uname": 1, - "REDIS_VERSION": 4, - "redisGitSHA1": 3, - "strtol": 2, - "redisGitDirty": 3, - "name.sysname": 1, - "name.release": 1, - "name.machine": 1, - "aeGetApiName": 1, - "__GNUC_MINOR__": 2, - "__GNUC_PATCHLEVEL__": 1, - "uptime/": 1, - "*24": 1, - "hmem": 3, - "peak_hmem": 3, - "zmalloc_get_rss": 1, - "lua_gc": 1, - "server.lua": 1, - "LUA_GCCOUNT": 1, - "*1024LL": 1, - "zmalloc_get_fragmentation_ratio": 1, - "ZMALLOC_LIB": 2, - "aofRewriteBufferSize": 2, - "bioPendingJobsOfType": 1, - "REDIS_BIO_AOF_FSYNC": 1, - "perc": 3, - "eta": 4, - "elapsed": 3, - "off_t": 1, - "remaining_bytes": 1, - "server.loading_total_bytes": 3, - "server.loading_loaded_bytes": 3, - "server.loading_start_time": 2, - "elapsed*remaining_bytes": 1, - "/server.loading_loaded_bytes": 1, - "REDIS_REPL_TRANSFER": 2, - "server.repl_transfer_left": 1, - "server.repl_transfer_lastio": 1, - "slaveid": 3, - "listIter": 2, - "li": 6, - "listRewind": 2, - "listNext": 2, - "*slave": 2, - "*state": 1, - "anetPeerToString": 1, - "slave": 3, - "replstate": 1, - "REDIS_REPL_WAIT_BGSAVE_START": 1, - "REDIS_REPL_WAIT_BGSAVE_END": 1, - "REDIS_REPL_SEND_BULK": 1, - "REDIS_REPL_ONLINE": 1, - "float": 26, - "self_ru.ru_stime.tv_sec": 1, - "self_ru.ru_stime.tv_usec/1000000": 1, - "self_ru.ru_utime.tv_sec": 1, - "self_ru.ru_utime.tv_usec/1000000": 1, - "c_ru.ru_stime.tv_sec": 1, - "c_ru.ru_stime.tv_usec/1000000": 1, - "c_ru.ru_utime.tv_sec": 1, - "c_ru.ru_utime.tv_usec/1000000": 1, - "calls": 4, - "microseconds": 1, - "microseconds/c": 1, - "keys": 4, - "REDIS_MONITOR": 1, - "slaveseldb": 1, - "listAddNodeTail": 1, - "mem_used": 9, - "mem_tofree": 3, - "mem_freed": 4, - "slaves": 3, - "obuf_bytes": 3, - "getClientOutputBufferMemoryUsage": 1, - "k": 15, - "keys_freed": 3, - "bestval": 5, - "bestkey": 9, - "REDIS_MAXMEMORY_ALLKEYS_LRU": 2, - "REDIS_MAXMEMORY_ALLKEYS_RANDOM": 2, - "REDIS_MAXMEMORY_VOLATILE_RANDOM": 1, - "thiskey": 7, - "thisval": 8, - "dictFind": 1, - "dictGetVal": 2, - "estimateObjectIdleTime": 1, - "REDIS_MAXMEMORY_VOLATILE_TTL": 1, - "flushSlavesOutputBuffers": 1, - "linuxOvercommitMemoryValue": 2, - "fgets": 1, - "atoi": 3, - "linuxOvercommitMemoryWarning": 2, - "createPidFile": 2, - "daemonize": 2, - "STDIN_FILENO": 1, - "STDERR_FILENO": 2, - "version": 4, - "usage": 2, - "redisAsciiArt": 2, - "*16": 2, - "ascii_logo": 1, - "sigtermHandler": 2, - "sig": 2, - "sigaction": 6, - "act": 6, - "sigemptyset": 2, - "act.sa_mask": 2, - "act.sa_flags": 2, - "act.sa_handler": 1, - "SIGTERM": 1, - "HAVE_BACKTRACE": 1, - "SA_NODEFER": 1, - "SA_RESETHAND": 1, - "SA_SIGINFO": 1, - "act.sa_sigaction": 1, - "sigsegvHandler": 1, - "SIGSEGV": 1, - "SIGBUS": 1, - "SIGFPE": 1, - "SIGILL": 1, - "memtest": 2, - "megabytes": 1, - "passes": 1, - "zmalloc_enable_thread_safeness": 1, - "srand": 1, - "dictSetHashFunctionSeed": 1, - "*configfile": 1, - "configfile": 2, - "sdscatrepr": 1, - "loadServerConfig": 1, - "loadAppendOnlyFile": 1, - "/1000000": 2, - "rdbLoad": 1, - "aeSetBeforeSleepProc": 1, - "aeMain": 1, - "aeDeleteEventLoop": 1, - "": 1, - "": 2, - "": 2, - "rfUTF8_IsContinuationbyte": 1, - "e.t.c.": 1, - "rfFReadLine_UTF8": 5, - "FILE*": 64, - "utf8": 36, - "uint32_t*": 34, - "byteLength": 197, - "bufferSize": 6, - "eof": 53, - "bytesN": 98, - "bIndex": 5, - "RF_NEWLINE_CRLF": 1, - "newLineFound": 1, - "*bufferSize": 1, - "RF_OPTION_FGETS_READBYTESN": 5, - "RF_MALLOC": 47, - "tempBuff": 6, - "RF_LF": 10, - "buff": 95, - "RF_SUCCESS": 14, - "RE_FILE_EOF": 22, - "found": 20, - "*eofReached": 14, - "LOG_ERROR": 64, - "RF_HEXEQ_UI": 7, - "rfFgetc_UTF32BE": 3, - "else//": 14, - "undo": 5, - "peek": 5, - "ahead": 5, - "file": 6, - "pointer": 5, - "fseek": 19, - "SEEK_CUR": 19, - "rfFgets_UTF32LE": 2, - "eofReached": 4, - "rfFgetc_UTF32LE": 4, - "rfFgets_UTF16BE": 2, - "rfFgetc_UTF16BE": 4, - "rfFgets_UTF16LE": 2, - "rfFgetc_UTF16LE": 4, - "rfFgets_UTF8": 2, - "rfFgetc_UTF8": 3, - "RF_HEXEQ_C": 9, - "fgetc": 9, - "check": 8, - "RE_FILE_READ": 2, - "cp": 12, - "c2": 13, - "c3": 9, - "c4": 5, - "i_READ_CHECK": 20, - "///": 4, - "success": 4, - "cc": 24, - "we": 10, - "more": 2, - "bytes": 225, - "xC0": 3, - "xC1": 1, - "RE_UTF8_INVALID_SEQUENCE_INVALID_BYTE": 6, - "RE_UTF8_INVALID_SEQUENCE_END": 6, - "rfUTF8_IsContinuationByte": 12, - "RE_UTF8_INVALID_SEQUENCE_CONBYTE": 6, - "decoded": 3, - "codepoint": 47, - "F": 38, - "xE0": 2, - "xF": 5, - "decode": 6, - "xF0": 2, - "RF_HEXGE_C": 1, - "xBF": 2, - "//invalid": 1, - "byte": 6, - "are": 6, - "xFF": 1, - "//if": 1, - "needing": 1, - "than": 5, - "swapE": 21, - "v1": 38, - "v2": 26, - "rfUTILS_Endianess": 24, - "RF_LITTLE_ENDIAN": 23, - "fread": 12, - "endianess": 40, - "needed": 10, - "rfUTILS_SwapEndianUS": 10, - "RF_HEXGE_US": 4, - "xD800": 8, - "RF_HEXLE_US": 4, - "xDFFF": 8, - "RF_HEXL_US": 8, - "RF_HEXG_US": 8, - "xDBFF": 4, - "RE_UTF16_INVALID_SEQUENCE": 20, - "RE_UTF16_NO_SURRPAIR": 2, - "xDC00": 4, - "user": 2, - "wants": 2, - "ff": 10, - "uint16_t*": 11, - "surrogate": 4, - "pair": 4, - "existence": 2, - "RF_BIG_ENDIAN": 10, - "rfUTILS_SwapEndianUI": 11, - "rfFback_UTF32BE": 2, - "i_FSEEK_CHECK": 14, - "rfFback_UTF32LE": 2, - "rfFback_UTF16BE": 2, - "rfFback_UTF16LE": 2, - "rfFback_UTF8": 2, - "depending": 1, - "number": 19, - "read": 1, - "backwards": 1, - "RE_UTF8_INVALID_SEQUENCE": 2, - "REFU_IO_H": 2, - "": 2, - "opening": 2, - "bracket": 4, - "calling": 4, - "C": 14, - "xA": 1, - "RF_CR": 1, - "xD": 1, - "REFU_WIN32_VERSION": 1, - "i_PLUSB_WIN32": 2, - "foff_rft": 2, - "off64_t": 1, - "///Fseek": 1, - "and": 15, - "Ftelll": 1, - "definitions": 1, - "rfFseek": 2, - "i_FILE_": 16, - "i_OFFSET_": 4, - "i_WHENCE_": 4, - "_fseeki64": 1, - "rfFtell": 2, - "_ftelli64": 1, - "fseeko64": 1, - "ftello64": 1, - "i_DECLIMEX_": 121, - "rfFReadLine_UTF16BE": 6, - "rfFReadLine_UTF16LE": 4, - "rfFReadLine_UTF32BE": 1, - "rfFReadLine_UTF32LE": 4, - "rfFgets_UTF32BE": 1, - "RF_IAMHERE_FOR_DOXYGEN": 22, - "rfPopen": 2, - "command": 2, - "i_rfPopen": 2, - "i_CMD_": 2, - "i_MODE_": 2, - "i_rfLMS_WRAP2": 5, - "rfPclose": 1, - "stream": 3, - "///closing": 1, - "#endif//include": 1, - "guards": 2, - "": 1, - "": 2, - "local": 5, - "stack": 6, - "memory": 4, - "RF_OPTION_DEFAULT_ARGUMENTS": 24, - "RF_String*": 222, - "rfString_Create": 4, - "i_rfString_Create": 3, - "READ_VSNPRINTF_ARGS": 5, - "rfUTF8_VerifySequence": 7, - "RF_FAILURE": 24, - "RE_STRING_INIT_FAILURE": 8, - "buffAllocated": 11, - "RF_String": 27, - "i_NVrfString_Create": 3, - "i_rfString_CreateLocal1": 3, - "RF_OPTION_SOURCE_ENCODING": 30, - "RF_UTF8": 8, - "characterLength": 16, - "*codepoints": 2, - "rfLMS_MacroEvalPtr": 2, - "RF_LMS": 6, - "RF_UTF16_LE": 9, - "RF_UTF16_BE": 7, - "codepoints": 44, - "i/2": 2, - "#elif": 14, - "RF_UTF32_LE": 3, - "RF_UTF32_BE": 3, - "UTF16": 4, - "rfUTF16_Decode": 5, - "rfUTF16_Decode_swap": 5, - "RF_UTF16_BE//": 2, - "RF_UTF32_LE//": 2, - "copy": 4, - "UTF32": 4, - "into": 8, - "RF_UTF32_BE//": 2, - "": 2, - "any": 3, - "other": 16, - "UTF": 17, - "8": 15, - "encode": 2, - "them": 3, - "rfUTF8_Encode": 4, - "While": 2, - "attempting": 2, - "create": 2, - "temporary": 4, - "given": 5, - "sequence": 6, - "could": 2, - "not": 6, - "be": 6, - "properly": 2, - "encoded": 2, - "RE_UTF8_ENCODING": 2, - "End": 2, - "Non": 2, - "code=": 2, - "normally": 1, - "since": 5, - "here": 5, - "have": 2, - "validity": 2, - "get": 4, - "Error": 2, - "at": 3, - "String": 11, - "Allocation": 2, - "due": 2, - "invalid": 2, - "rfLMS_Push": 4, - "Memory": 4, - "allocation": 3, - "Local": 2, - "Stack": 2, - "failed": 2, - "Insufficient": 2, - "space": 4, - "Consider": 2, - "compiling": 2, - "library": 3, - "with": 9, - "bigger": 3, - "Quitting": 2, - "proccess": 2, - "RE_LOCALMEMSTACK_INSUFFICIENT": 8, - "i_NVrfString_CreateLocal": 3, - "during": 1, - "rfString_Init": 3, - "i_rfString_Init": 3, - "i_NVrfString_Init": 3, - "rfString_Create_cp": 2, - "rfString_Init_cp": 3, - "RF_HEXLE_UI": 8, - "RF_HEXGE_UI": 6, - "C0": 3, - "ffff": 4, - "xFC0": 4, - "xF000": 2, - "xE": 2, - "F000": 2, - "C0000": 2, - "E": 11, - "RE_UTF8_INVALID_CODE_POINT": 2, - "rfString_Create_i": 2, - "numLen": 8, - "max": 4, - "is": 17, - "most": 3, - "environment": 3, - "so": 4, - "chars": 3, - "will": 3, - "certainly": 3, - "fit": 3, - "it": 12, - "strcpy": 4, - "rfString_Init_i": 2, - "rfString_Create_f": 2, - "rfString_Init_f": 2, - "rfString_Create_UTF16": 2, - "rfString_Init_UTF16": 3, - "utf8ByteLength": 34, - "last": 1, - "utf": 1, - "null": 4, - "termination": 3, - "byteLength*2": 1, - "allocate": 1, - "same": 1, - "as": 4, - "different": 1, - "RE_INPUT": 1, - "ends": 3, - "rfString_Create_UTF32": 2, - "rfString_Init_UTF32": 3, - "codeBuffer": 9, - "xFEFF": 1, - "big": 14, - "endian": 20, - "xFFFE0000": 1, - "little": 7, - "according": 1, - "standard": 1, - "no": 4, - "BOM": 1, - "means": 1, - "rfUTF32_Length": 1, - "i_rfString_Assign": 3, - "dest": 7, - "sourceP": 2, - "source": 8, - "RF_REALLOC": 9, - "rfString_Assign_char": 2, - "<5)>": 1, - "rfString_Create_nc": 3, - "i_rfString_Create_nc": 3, - "bytesWritten": 2, - "i_NVrfString_Create_nc": 3, - "rfString_Init_nc": 4, - "i_rfString_Init_nc": 3, - "i_NVrfString_Init_nc": 3, - "rfString_Destroy": 2, - "rfString_Deinit": 3, - "rfString_ToUTF16": 4, - "charsN": 5, - "rfUTF8_Decode": 2, - "rfUTF16_Encode": 1, - "rfString_ToUTF32": 4, - "rfString_Length": 5, - "RF_STRING_ITERATE_START": 9, - "RF_STRING_ITERATE_END": 9, - "rfString_GetChar": 2, - "thisstr": 210, - "codePoint": 18, - "RF_STRING_INDEX_OUT_OF_BOUNDS": 2, - "rfString_BytePosToCodePoint": 7, - "rfString_BytePosToCharPos": 4, - "thisstrP": 32, - "bytepos": 12, - "before": 4, - "charPos": 8, - "byteI": 7, - "i_rfString_Equal": 3, - "s1P": 2, - "s2P": 2, - "i_rfString_Find": 5, - "sstrP": 6, - "optionsP": 11, - "sstr": 39, - "*optionsP": 8, - "RF_BITFLAG_ON": 5, - "RF_CASE_IGNORE": 2, - "strstr": 2, - "RF_MATCH_WORD": 5, - "exact": 6, - "": 1, - "0x5a": 1, - "0x7a": 1, - "substring": 5, - "search": 1, - "zero": 2, - "equals": 1, - "then": 1, - "okay": 1, - "rfString_Equal": 4, - "RFS_": 8, - "ERANGE": 1, - "RE_STRING_TOFLOAT_UNDERFLOW": 1, - "RE_STRING_TOFLOAT": 1, - "rfString_Copy_OUT": 2, - "srcP": 6, - "rfString_Copy_IN": 2, - "dst": 15, - "rfString_Copy_chars": 2, - "bytePos": 23, - "terminate": 1, - "i_rfString_ScanfAfter": 3, - "afterstrP": 2, - "format": 4, - "afterstr": 5, - "sscanf": 1, - "<=0)>": 1, - "Counts": 1, - "how": 1, - "many": 1, - "times": 1, - "occurs": 1, - "inside": 2, - "i_rfString_Count": 5, - "sstr2": 2, - "move": 12, - "rfString_FindBytePos": 10, - "rfString_Tokenize": 2, - "sep": 3, - "tokensN": 2, - "RF_String**": 2, - "*tokensN": 1, - "rfString_Count": 4, - "lstr": 6, - "lstrP": 1, - "rstr": 24, - "rstrP": 5, - "rfString_After": 4, - "rfString_Beforev": 4, - "parNP": 6, - "i_rfString_Beforev": 16, - "parN": 10, - "*parNP": 2, - "minPos": 17, - "thisPos": 8, - "argList": 8, - "va_arg": 2, - "i_rfString_Before": 5, - "i_rfString_After": 5, - "afterP": 2, - "after": 6, - "rfString_Afterv": 4, - "i_rfString_Afterv": 16, - "minPosLength": 3, - "go": 8, - "i_rfString_Append": 3, - "otherP": 4, - "strncat": 1, - "rfString_Append_i": 2, - "rfString_Append_f": 2, - "i_rfString_Prepend": 3, - "goes": 1, - "i_rfString_Remove": 6, - "numberP": 1, - "*numberP": 1, - "occurences": 5, - "done": 1, - "<=thisstr->": 1, - "i_rfString_KeepOnly": 3, - "keepstrP": 2, - "keepLength": 2, - "charValue": 12, - "*keepChars": 1, - "keepstr": 5, - "exists": 6, - "charBLength": 5, - "keepChars": 4, - "*keepLength": 1, - "rfString_Iterate_Start": 6, - "rfString_Iterate_End": 4, - "": 1, - "does": 1, - "exist": 2, - "back": 1, - "cover": 1, - "that": 9, - "effectively": 1, - "gets": 1, - "deleted": 1, - "rfUTF8_FromCodepoint": 1, - "this": 5, - "kind": 1, - "non": 1, - "clean": 1, - "way": 1, - "macro": 2, - "internally": 1, - "uses": 1, - "byteIndex_": 12, - "variable": 1, - "use": 1, - "determine": 1, - "backs": 1, - "by": 1, - "contiuing": 1, - "make": 3, - "sure": 2, - "position": 1, - "won": 1, - "array": 1, - "rfString_PruneStart": 2, - "nBytePos": 23, - "rfString_PruneEnd": 2, - "RF_STRING_ITERATEB_START": 2, - "RF_STRING_ITERATEB_END": 2, - "rfString_PruneMiddleB": 2, - "pBytePos": 15, - "indexing": 1, - "works": 1, - "pbytePos": 2, - "pth": 2, - "include": 6, - "rfString_PruneMiddleF": 2, - "got": 1, - "all": 2, - "i_rfString_Replace": 6, - "numP": 1, - "*numP": 1, - "RF_StringX": 2, - "just": 1, - "finding": 1, - "foundN": 10, - "bSize": 4, - "bytePositions": 17, - "bSize*sizeof": 1, - "rfStringX_FromString_IN": 1, - "temp.bIndex": 2, - "temp.bytes": 1, - "temp.byteLength": 1, - "rfStringX_Deinit": 1, - "replace": 3, - "removed": 2, - "one": 2, - "orSize": 5, - "nSize": 4, - "number*diff": 1, - "strncpy": 3, - "smaller": 1, - "diff*number": 1, - "remove": 1, - "equal": 1, - "i_rfString_StripStart": 3, - "subP": 7, - "RF_String*sub": 2, - "noMatch": 8, - "*subValues": 2, - "subLength": 6, - "subValues": 8, - "*subLength": 2, - "i_rfString_StripEnd": 3, - "lastBytePos": 4, - "testity": 2, - "i_rfString_Strip": 3, - "res1": 2, - "rfString_StripStart": 3, - "res2": 2, - "rfString_StripEnd": 3, - "rfString_Create_fUTF8": 2, - "rfString_Init_fUTF8": 3, - "unused": 3, - "rfString_Assign_fUTF8": 2, - "FILE*f": 2, - "utf8BufferSize": 4, - "function": 6, - "rfString_Append_fUTF8": 2, - "rfString_Append": 5, - "rfString_Create_fUTF16": 2, - "rfString_Init_fUTF16": 3, - "rfString_Assign_fUTF16": 2, - "rfString_Append_fUTF16": 2, - "char*utf8": 3, - "rfString_Create_fUTF32": 2, - "rfString_Init_fUTF32": 3, - "<0)>": 1, - "Failure": 1, - "initialize": 1, - "reading": 1, - "Little": 1, - "Endian": 1, - "32": 1, - "bytesN=": 1, - "rfString_Assign_fUTF32": 2, - "rfString_Append_fUTF32": 2, - "i_rfString_Fwrite": 5, - "sP": 2, - "encodingP": 1, - "*utf32": 1, - "utf16": 11, - "*encodingP": 1, - "fwrite": 5, - "logging": 5, - "utf32": 10, - "i_WRITE_CHECK": 1, - "RE_FILE_WRITE": 1, - "REFU_USTRING_H": 2, - "": 1, - "RF_MODULE_STRINGS//": 1, - "included": 2, - "module": 3, - "": 1, - "argument": 1, - "wrapping": 1, - "functionality": 1, - "": 1, - "unicode": 2, - "xFF0FFFF": 1, - "rfUTF8_IsContinuationByte2": 1, - "b__": 3, - "0xBF": 1, - "pragma": 1, - "pack": 2, - "push": 1, - "internal": 4, - "author": 1, - "Lefteris": 1, - "09": 1, - "12": 1, - "2010": 1, - "endinternal": 1, - "brief": 1, - "A": 11, - "representation": 2, - "The": 1, - "Refu": 2, - "Unicode": 1, - "has": 2, - "two": 1, - "versions": 1, - "One": 1, - "ref": 1, - "what": 1, - "operations": 1, - "can": 2, - "performed": 1, - "extended": 3, - "Strings": 2, - "Functions": 1, - "convert": 1, - "but": 1, - "always": 2, - "Once": 1, - "been": 1, - "created": 1, - "assumed": 1, - "valid": 1, - "every": 1, - "performs": 1, - "unless": 1, - "otherwise": 1, - "specified": 1, - "All": 1, - "functions": 2, - "which": 1, - "isinherited": 1, - "StringX": 2, - "their": 1, - "description": 1, - "safely": 1, - "specific": 1, - "or": 1, - "needs": 1, - "manipulate": 1, - "Extended": 1, - "To": 1, - "documentation": 1, - "even": 1, - "clearer": 1, - "should": 2, - "marked": 1, - "notinherited": 1, - "cppcode": 1, - "constructor": 1, - "i_StringCHandle": 1, - "@endcpp": 1, - "@endinternal": 1, - "*/": 1, - "#pragma": 1, - "pop": 1, - "i_rfString_CreateLocal": 2, - "__VA_ARGS__": 66, - "RP_SELECT_FUNC_IF_NARGIS": 5, - "i_SELECT_RF_STRING_CREATE": 1, - "i_SELECT_RF_STRING_CREATE1": 1, - "i_SELECT_RF_STRING_CREATE0": 1, - "///Internal": 1, - "creates": 1, - "i_SELECT_RF_STRING_CREATELOCAL": 1, - "i_SELECT_RF_STRING_CREATELOCAL1": 1, - "i_SELECT_RF_STRING_CREATELOCAL0": 1, - "i_SELECT_RF_STRING_INIT": 1, - "i_SELECT_RF_STRING_INIT1": 1, - "i_SELECT_RF_STRING_INIT0": 1, - "code": 6, - "i_SELECT_RF_STRING_CREATE_NC": 1, - "i_SELECT_RF_STRING_CREATE_NC1": 1, - "i_SELECT_RF_STRING_CREATE_NC0": 1, - "i_SELECT_RF_STRING_INIT_NC": 1, - "i_SELECT_RF_STRING_INIT_NC1": 1, - "i_SELECT_RF_STRING_INIT_NC0": 1, - "//@": 1, - "rfString_Assign": 2, - "i_DESTINATION_": 2, - "i_SOURCE_": 2, - "rfString_ToUTF8": 2, - "i_STRING_": 2, - "rfString_ToCstr": 2, - "uint32_t*length": 1, - "string_": 9, - "startCharacterPos_": 4, - "characterUnicodeValue_": 4, - "j_": 6, - "//Two": 1, - "macros": 1, - "accomplish": 1, - "going": 1, - "backwards.": 1, - "This": 1, - "its": 1, - "pair.": 1, - "rfString_IterateB_Start": 1, - "characterPos_": 5, - "b_index_": 6, - "c_index_": 3, - "rfString_IterateB_End": 1, - "i_STRING1_": 2, - "i_STRING2_": 2, - "i_rfLMSX_WRAP2": 4, - "rfString_Find": 3, - "i_THISSTR_": 60, - "i_SEARCHSTR_": 26, - "i_OPTIONS_": 28, - "i_rfLMS_WRAP3": 4, - "i_RFI8_": 54, - "RF_SELECT_FUNC_IF_NARGGT": 10, - "i_NPSELECT_RF_STRING_FIND": 1, - "i_NPSELECT_RF_STRING_FIND1": 1, - "RF_COMPILE_ERROR": 33, - "i_NPSELECT_RF_STRING_FIND0": 1, - "RF_SELECT_FUNC": 10, - "i_SELECT_RF_STRING_FIND": 1, - "i_SELECT_RF_STRING_FIND2": 1, - "i_SELECT_RF_STRING_FIND3": 1, - "i_SELECT_RF_STRING_FIND1": 1, - "i_SELECT_RF_STRING_FIND0": 1, - "rfString_ToInt": 1, - "int32_t*": 1, - "rfString_ToDouble": 1, - "double*": 1, - "rfString_ScanfAfter": 2, - "i_AFTERSTR_": 8, - "i_FORMAT_": 2, - "i_VAR_": 2, - "i_rfLMSX_WRAP4": 11, - "i_NPSELECT_RF_STRING_COUNT": 1, - "i_NPSELECT_RF_STRING_COUNT1": 1, - "i_NPSELECT_RF_STRING_COUNT0": 1, - "i_SELECT_RF_STRING_COUNT": 1, - "i_SELECT_RF_STRING_COUNT2": 1, - "i_rfLMSX_WRAP3": 5, - "i_SELECT_RF_STRING_COUNT3": 1, - "i_SELECT_RF_STRING_COUNT1": 1, - "i_SELECT_RF_STRING_COUNT0": 1, - "rfString_Between": 3, - "i_rfString_Between": 4, - "i_NPSELECT_RF_STRING_BETWEEN": 1, - "i_NPSELECT_RF_STRING_BETWEEN1": 1, - "i_NPSELECT_RF_STRING_BETWEEN0": 1, - "i_SELECT_RF_STRING_BETWEEN": 1, - "i_SELECT_RF_STRING_BETWEEN4": 1, - "i_LEFTSTR_": 6, - "i_RIGHTSTR_": 6, - "i_RESULT_": 12, - "i_rfLMSX_WRAP5": 9, - "i_SELECT_RF_STRING_BETWEEN5": 1, - "i_SELECT_RF_STRING_BETWEEN3": 1, - "i_SELECT_RF_STRING_BETWEEN2": 1, - "i_SELECT_RF_STRING_BETWEEN1": 1, - "i_SELECT_RF_STRING_BETWEEN0": 1, - "i_NPSELECT_RF_STRING_BEFOREV": 1, - "i_NPSELECT_RF_STRING_BEFOREV1": 1, - "RF_SELECT_FUNC_IF_NARGGT2": 2, - "i_LIMSELECT_RF_STRING_BEFOREV": 1, - "i_NPSELECT_RF_STRING_BEFOREV0": 1, - "i_LIMSELECT_RF_STRING_BEFOREV1": 1, - "i_LIMSELECT_RF_STRING_BEFOREV0": 1, - "i_SELECT_RF_STRING_BEFOREV": 1, - "i_SELECT_RF_STRING_BEFOREV5": 1, - "i_ARG1_": 56, - "i_ARG2_": 56, - "i_ARG3_": 56, - "i_ARG4_": 56, - "i_RFUI8_": 28, - "i_SELECT_RF_STRING_BEFOREV6": 1, - "i_rfLMSX_WRAP6": 2, - "i_SELECT_RF_STRING_BEFOREV7": 1, - "i_rfLMSX_WRAP7": 2, - "i_SELECT_RF_STRING_BEFOREV8": 1, - "i_rfLMSX_WRAP8": 2, - "i_SELECT_RF_STRING_BEFOREV9": 1, - "i_rfLMSX_WRAP9": 2, - "i_SELECT_RF_STRING_BEFOREV10": 1, - "i_rfLMSX_WRAP10": 2, - "i_SELECT_RF_STRING_BEFOREV11": 1, - "i_rfLMSX_WRAP11": 2, - "i_SELECT_RF_STRING_BEFOREV12": 1, - "i_rfLMSX_WRAP12": 2, - "i_SELECT_RF_STRING_BEFOREV13": 1, - "i_rfLMSX_WRAP13": 2, - "i_SELECT_RF_STRING_BEFOREV14": 1, - "i_rfLMSX_WRAP14": 2, - "i_SELECT_RF_STRING_BEFOREV15": 1, - "i_rfLMSX_WRAP15": 2, - "i_SELECT_RF_STRING_BEFOREV16": 1, - "i_rfLMSX_WRAP16": 2, - "i_SELECT_RF_STRING_BEFOREV17": 1, - "i_rfLMSX_WRAP17": 2, - "i_SELECT_RF_STRING_BEFOREV18": 1, - "i_rfLMSX_WRAP18": 2, - "rfString_Before": 3, - "i_NPSELECT_RF_STRING_BEFORE": 1, - "i_NPSELECT_RF_STRING_BEFORE1": 1, - "i_NPSELECT_RF_STRING_BEFORE0": 1, - "i_SELECT_RF_STRING_BEFORE": 1, - "i_SELECT_RF_STRING_BEFORE3": 1, - "i_SELECT_RF_STRING_BEFORE4": 1, - "i_SELECT_RF_STRING_BEFORE2": 1, - "i_SELECT_RF_STRING_BEFORE1": 1, - "i_SELECT_RF_STRING_BEFORE0": 1, - "i_NPSELECT_RF_STRING_AFTER": 1, - "i_NPSELECT_RF_STRING_AFTER1": 1, - "i_NPSELECT_RF_STRING_AFTER0": 1, - "i_SELECT_RF_STRING_AFTER": 1, - "i_SELECT_RF_STRING_AFTER3": 1, - "i_OUTSTR_": 6, - "i_SELECT_RF_STRING_AFTER4": 1, - "i_SELECT_RF_STRING_AFTER2": 1, - "i_SELECT_RF_STRING_AFTER1": 1, - "i_SELECT_RF_STRING_AFTER0": 1, - "i_NPSELECT_RF_STRING_AFTERV": 1, - "i_NPSELECT_RF_STRING_AFTERV1": 1, - "i_LIMSELECT_RF_STRING_AFTERV": 1, - "i_NPSELECT_RF_STRING_AFTERV0": 1, - "i_LIMSELECT_RF_STRING_AFTERV1": 1, - "i_LIMSELECT_RF_STRING_AFTERV0": 1, - "i_SELECT_RF_STRING_AFTERV": 1, - "i_SELECT_RF_STRING_AFTERV5": 1, - "i_SELECT_RF_STRING_AFTERV6": 1, - "i_SELECT_RF_STRING_AFTERV7": 1, - "i_SELECT_RF_STRING_AFTERV8": 1, - "i_SELECT_RF_STRING_AFTERV9": 1, - "i_SELECT_RF_STRING_AFTERV10": 1, - "i_SELECT_RF_STRING_AFTERV11": 1, - "i_SELECT_RF_STRING_AFTERV12": 1, - "i_SELECT_RF_STRING_AFTERV13": 1, - "i_SELECT_RF_STRING_AFTERV14": 1, - "i_SELECT_RF_STRING_AFTERV15": 1, - "i_SELECT_RF_STRING_AFTERV16": 1, - "i_SELECT_RF_STRING_AFTERV17": 1, - "i_SELECT_RF_STRING_AFTERV18": 1, - "i_OTHERSTR_": 4, - "rfString_Prepend": 2, - "rfString_Remove": 3, - "i_NPSELECT_RF_STRING_REMOVE": 1, - "i_NPSELECT_RF_STRING_REMOVE1": 1, - "i_NPSELECT_RF_STRING_REMOVE0": 1, - "i_SELECT_RF_STRING_REMOVE": 1, - "i_SELECT_RF_STRING_REMOVE2": 1, - "i_REPSTR_": 16, - "i_RFUI32_": 8, - "i_SELECT_RF_STRING_REMOVE3": 1, - "i_NUMBER_": 12, - "i_SELECT_RF_STRING_REMOVE4": 1, - "i_SELECT_RF_STRING_REMOVE1": 1, - "i_SELECT_RF_STRING_REMOVE0": 1, - "rfString_KeepOnly": 2, - "I_KEEPSTR_": 2, - "rfString_Replace": 3, - "i_NPSELECT_RF_STRING_REPLACE": 1, - "i_NPSELECT_RF_STRING_REPLACE1": 1, - "i_NPSELECT_RF_STRING_REPLACE0": 1, - "i_SELECT_RF_STRING_REPLACE": 1, - "i_SELECT_RF_STRING_REPLACE3": 1, - "i_SELECT_RF_STRING_REPLACE4": 1, - "i_SELECT_RF_STRING_REPLACE5": 1, - "i_SELECT_RF_STRING_REPLACE2": 1, - "i_SELECT_RF_STRING_REPLACE1": 1, - "i_SELECT_RF_STRING_REPLACE0": 1, - "i_SUBSTR_": 6, - "rfString_Strip": 2, - "rfString_Fwrite": 2, - "i_NPSELECT_RF_STRING_FWRITE": 1, - "i_NPSELECT_RF_STRING_FWRITE1": 1, - "i_NPSELECT_RF_STRING_FWRITE0": 1, - "i_SELECT_RF_STRING_FWRITE": 1, - "i_SELECT_RF_STRING_FWRITE3": 1, - "i_STR_": 8, - "i_ENCODING_": 4, - "i_SELECT_RF_STRING_FWRITE2": 1, - "i_SELECT_RF_STRING_FWRITE1": 1, - "i_SELECT_RF_STRING_FWRITE0": 1, - "rfString_Fwrite_fUTF8": 1, - "closing": 1, - "#error": 4, - "Attempted": 1, - "manipulation": 1, - "flag": 1, - "off.": 1, - "Rebuild": 1, - "added": 1, - "you": 1, - "#endif//": 1, - "PY_SSIZE_T_CLEAN": 1, - "Py_PYTHON_H": 1, - "Python": 2, - "headers": 1, - "compile": 1, - "extensions": 1, - "please": 1, - "install": 1, - "development": 1, - "Python.": 1, - "PY_VERSION_HEX": 11, - "Cython": 1, - "requires": 1, - ".": 1, - "offsetof": 2, - "member": 2, - "type*": 1, - "WIN32": 2, - "MS_WINDOWS": 2, - "__stdcall": 2, - "__cdecl": 2, - "__fastcall": 2, - "DL_IMPORT": 2, - "DL_EXPORT": 2, - "PY_LONG_LONG": 5, - "LONG_LONG": 1, - "Py_HUGE_VAL": 2, - "HUGE_VAL": 1, - "PYPY_VERSION": 1, - "CYTHON_COMPILING_IN_PYPY": 3, - "CYTHON_COMPILING_IN_CPYTHON": 6, - "Py_ssize_t": 35, - "PY_SSIZE_T_MAX": 1, - "INT_MAX": 1, - "PY_SSIZE_T_MIN": 1, - "INT_MIN": 1, - "PY_FORMAT_SIZE_T": 1, - "CYTHON_FORMAT_SSIZE_T": 2, - "PyInt_FromSsize_t": 6, - "PyInt_FromLong": 3, - "PyInt_AsSsize_t": 3, - "__Pyx_PyInt_AsInt": 2, - "PyNumber_Index": 1, - "PyNumber_Check": 2, - "PyFloat_Check": 2, - "PyNumber_Int": 1, - "PyErr_Format": 4, - "PyExc_TypeError": 4, - "Py_TYPE": 7, - "tp_name": 4, - "PyObject*": 24, - "__Pyx_PyIndex_Check": 3, - "PyComplex_Check": 1, - "PyIndex_Check": 2, - "PyErr_WarnEx": 1, - "category": 2, - "stacklevel": 1, - "PyErr_Warn": 1, - "__PYX_BUILD_PY_SSIZE_T": 2, - "Py_REFCNT": 1, - "ob_refcnt": 1, - "ob_type": 7, - "Py_SIZE": 1, - "PyVarObject*": 1, - "ob_size": 1, - "PyVarObject_HEAD_INIT": 1, - "PyObject_HEAD_INIT": 1, - "PyType_Modified": 1, - "PyObject": 276, - "itemsize": 1, - "readonly": 1, - "ndim": 2, - "*shape": 1, - "*strides": 1, - "*suboffsets": 1, - "*internal": 1, - "Py_buffer": 6, - "PyBUF_SIMPLE": 1, - "PyBUF_WRITABLE": 3, - "PyBUF_FORMAT": 3, - "PyBUF_ND": 2, - "PyBUF_STRIDES": 6, - "PyBUF_C_CONTIGUOUS": 1, - "PyBUF_F_CONTIGUOUS": 1, - "PyBUF_ANY_CONTIGUOUS": 1, - "PyBUF_INDIRECT": 2, - "PyBUF_RECORDS": 1, - "PyBUF_FULL": 1, - "PY_MAJOR_VERSION": 13, - "__Pyx_BUILTIN_MODULE_NAME": 2, - "__Pyx_PyCode_New": 2, - "l": 7, - "fv": 4, - "cell": 4, - "fline": 4, - "lnos": 4, - "PyCode_New": 2, - "PY_MINOR_VERSION": 1, - "PyUnicode_FromString": 2, - "PyUnicode_Decode": 1, - "Py_TPFLAGS_CHECKTYPES": 1, - "Py_TPFLAGS_HAVE_INDEX": 1, - "Py_TPFLAGS_HAVE_NEWBUFFER": 1, - "PyUnicode_KIND": 1, - "CYTHON_PEP393_ENABLED": 2, - "__Pyx_PyUnicode_READY": 2, - "op": 8, - "PyUnicode_IS_READY": 1, - "_PyUnicode_Ready": 1, - "__Pyx_PyUnicode_GET_LENGTH": 2, - "PyUnicode_GET_LENGTH": 1, - "__Pyx_PyUnicode_READ_CHAR": 2, - "PyUnicode_READ_CHAR": 1, - "__Pyx_PyUnicode_READ": 2, - "PyUnicode_READ": 1, - "PyUnicode_GET_SIZE": 1, - "Py_UCS4": 2, - "PyUnicode_AS_UNICODE": 1, - "Py_UNICODE*": 1, - "PyBaseString_Type": 1, - "PyUnicode_Type": 2, - "PyStringObject": 2, - "PyUnicodeObject": 1, - "PyString_Type": 2, - "PyString_Check": 2, - "PyUnicode_Check": 1, - "PyString_CheckExact": 2, - "PyUnicode_CheckExact": 1, - "PyBytesObject": 1, - "PyBytes_Type": 1, - "PyBytes_Check": 1, - "PyBytes_CheckExact": 1, - "PyBytes_FromString": 2, - "PyString_FromString": 2, - "PyBytes_FromStringAndSize": 1, - "PyString_FromStringAndSize": 1, - "PyBytes_FromFormat": 1, - "PyString_FromFormat": 1, - "PyBytes_DecodeEscape": 1, - "PyString_DecodeEscape": 1, - "PyBytes_AsString": 2, - "PyString_AsString": 1, - "PyBytes_AsStringAndSize": 1, - "PyString_AsStringAndSize": 1, - "PyBytes_Size": 1, - "PyString_Size": 1, - "PyBytes_AS_STRING": 1, - "PyString_AS_STRING": 1, - "PyBytes_GET_SIZE": 1, - "PyString_GET_SIZE": 1, - "PyBytes_Repr": 1, - "PyString_Repr": 1, - "PyBytes_Concat": 1, - "PyString_Concat": 1, - "PyBytes_ConcatAndDel": 1, - "PyString_ConcatAndDel": 1, - "PySet_Check": 1, - "PyObject_TypeCheck": 3, - "PySet_Type": 2, - "PyFrozenSet_Check": 1, - "PyFrozenSet_Type": 1, - "PySet_CheckExact": 2, - "__Pyx_TypeCheck": 1, - "PyTypeObject": 25, - "PyIntObject": 1, - "PyLongObject": 2, - "PyInt_Type": 1, - "PyLong_Type": 1, - "PyInt_Check": 1, - "PyLong_Check": 1, - "PyInt_CheckExact": 1, - "PyLong_CheckExact": 1, - "PyInt_FromString": 1, - "PyLong_FromString": 1, - "PyInt_FromUnicode": 1, - "PyLong_FromUnicode": 1, - "PyLong_FromLong": 1, - "PyInt_FromSize_t": 1, - "PyLong_FromSize_t": 1, - "PyLong_FromSsize_t": 1, - "PyInt_AsLong": 2, - "PyLong_AsLong": 1, - "PyInt_AS_LONG": 1, - "PyLong_AS_LONG": 1, - "PyLong_AsSsize_t": 1, - "PyInt_AsUnsignedLongMask": 1, - "PyLong_AsUnsignedLongMask": 1, - "PyInt_AsUnsignedLongLongMask": 1, - "PyLong_AsUnsignedLongLongMask": 1, - "PyBoolObject": 1, - "Py_hash_t": 1, - "__Pyx_PyInt_FromHash_t": 2, - "__Pyx_PyInt_AsHash_t": 2, - "__Pyx_PySequence_GetSlice": 2, - "PySequence_GetSlice": 2, - "__Pyx_PySequence_SetSlice": 2, - "PySequence_SetSlice": 2, - "__Pyx_PySequence_DelSlice": 2, - "PySequence_DelSlice": 2, - "PyErr_SetString": 3, - "PyExc_SystemError": 3, - "tp_as_mapping": 3, - "PyMethod_New": 2, - "func": 3, - "klass": 1, - "PyInstanceMethod_New": 1, - "__Pyx_GetAttrString": 2, - "PyObject_GetAttrString": 2, - "__Pyx_SetAttrString": 2, - "PyObject_SetAttrString": 2, - "__Pyx_DelAttrString": 2, - "PyObject_DelAttrString": 2, - "__Pyx_NAMESTR": 2, - "__Pyx_DOCSTR": 2, - "__Pyx_PyNumber_Divide": 2, - "y": 14, - "PyNumber_TrueDivide": 1, - "__Pyx_PyNumber_InPlaceDivide": 2, - "PyNumber_InPlaceTrueDivide": 1, - "PyNumber_Divide": 1, - "PyNumber_InPlaceDivide": 1, - "__PYX_EXTERN_C": 3, - "_USE_MATH_DEFINES": 1, - "__PYX_HAVE__sklearn__linear_model__sgd_fast": 1, - "__PYX_HAVE_API__sklearn__linear_model__sgd_fast": 1, - "_OPENMP": 1, - "": 1, - "PYREX_WITHOUT_ASSERTIONS": 1, - "CYTHON_WITHOUT_ASSERTIONS": 1, - "CYTHON_INLINE": 65, - "__inline__": 1, - "__inline": 1, - "__STDC_VERSION__": 2, - "L": 1, - "CYTHON_UNUSED": 14, - "**p": 1, - "is_unicode": 1, - "is_str": 1, - "intern": 1, - "__Pyx_StringTabEntry": 2, - "__Pyx_PyBytes_FromUString": 1, - "__Pyx_PyBytes_AsUString": 1, - "__Pyx_Owned_Py_None": 1, - "Py_INCREF": 10, - "Py_None": 8, - "__Pyx_PyBool_FromLong": 1, - "Py_True": 2, - "Py_False": 2, - "__Pyx_PyObject_IsTrue": 1, - "__Pyx_PyNumber_Int": 1, - "__Pyx_PyIndex_AsSsize_t": 1, - "__Pyx_PyInt_FromSize_t": 1, - "__Pyx_PyInt_AsSize_t": 1, - "__pyx_PyFloat_AsDouble": 12, - "PyFloat_CheckExact": 1, - "PyFloat_AS_DOUBLE": 1, - "PyFloat_AsDouble": 2, - "__pyx_PyFloat_AsFloat": 1, - "__builtin_expect": 2, - "*__pyx_m": 1, - "*__pyx_b": 1, - "*__pyx_empty_tuple": 1, - "*__pyx_empty_bytes": 1, - "__pyx_lineno": 58, - "__pyx_clineno": 58, - "__pyx_cfilenm": 1, - "__FILE__": 4, - "*__pyx_filename": 7, - "CYTHON_CCOMPLEX": 12, - "_Complex_I": 3, - "": 1, - "": 1, - "__sun__": 1, - "fj": 1, - "*__pyx_f": 1, - "IS_UNSIGNED": 1, - "__Pyx_StructField_": 2, - "__PYX_BUF_FLAGS_PACKED_STRUCT": 1, - "__Pyx_StructField_*": 1, - "fields": 1, - "arraysize": 1, - "typegroup": 1, - "is_unsigned": 1, - "__Pyx_TypeInfo": 2, - "__Pyx_TypeInfo*": 2, - "offset": 1, - "__Pyx_StructField": 2, - "__Pyx_StructField*": 1, - "field": 1, - "parent_offset": 1, - "__Pyx_BufFmt_StackElem": 1, - "root": 1, - "__Pyx_BufFmt_StackElem*": 2, - "fmt_offset": 1, - "new_count": 1, - "enc_count": 1, - "struct_alignment": 1, - "is_complex": 1, - "enc_type": 1, - "new_packmode": 1, - "enc_packmode": 1, - "is_valid_array": 1, - "__Pyx_BufFmt_Context": 1, - "npy_int8": 1, - "__pyx_t_5numpy_int8_t": 1, - "npy_int16": 1, - "__pyx_t_5numpy_int16_t": 1, - "npy_int32": 1, - "__pyx_t_5numpy_int32_t": 4, - "npy_int64": 1, - "__pyx_t_5numpy_int64_t": 1, - "npy_uint8": 1, - "__pyx_t_5numpy_uint8_t": 1, - "npy_uint16": 1, - "__pyx_t_5numpy_uint16_t": 1, - "npy_uint32": 1, - "__pyx_t_5numpy_uint32_t": 1, - "npy_uint64": 1, - "__pyx_t_5numpy_uint64_t": 1, - "npy_float32": 1, - "__pyx_t_5numpy_float32_t": 1, - "npy_float64": 1, - "__pyx_t_5numpy_float64_t": 4, - "npy_long": 1, - "__pyx_t_5numpy_int_t": 1, - "npy_longlong": 2, - "__pyx_t_5numpy_long_t": 1, - "__pyx_t_5numpy_longlong_t": 1, - "npy_ulong": 1, - "__pyx_t_5numpy_uint_t": 1, - "npy_ulonglong": 2, - "__pyx_t_5numpy_ulong_t": 1, - "__pyx_t_5numpy_ulonglong_t": 1, - "npy_intp": 1, - "__pyx_t_5numpy_intp_t": 1, - "npy_uintp": 1, - "__pyx_t_5numpy_uintp_t": 1, - "npy_double": 2, - "__pyx_t_5numpy_float_t": 1, - "__pyx_t_5numpy_double_t": 1, - "npy_longdouble": 1, - "__pyx_t_5numpy_longdouble_t": 1, - "__pyx_t_7sklearn_5utils_13weight_vector_DOUBLE": 2, - "__pyx_t_7sklearn_5utils_13weight_vector_INTEGER": 1, - "__pyx_t_7sklearn_5utils_11seq_dataset_DOUBLE": 7, - "__pyx_t_7sklearn_5utils_11seq_dataset_INTEGER": 7, - "__pyx_t_7sklearn_12linear_model_8sgd_fast_DOUBLE": 4, - "__pyx_t_7sklearn_12linear_model_8sgd_fast_INTEGER": 3, - "std": 8, - "complex": 2, - "__pyx_t_float_complex": 27, - "_Complex": 2, - "real": 2, - "imag": 2, - "__pyx_t_double_complex": 27, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_LossFunction": 15, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Regression": 11, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Huber": 6, - "__pyx_obj_7sklearn_5utils_11seq_dataset_SequentialDataset": 5, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 6, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Classification": 7, - "__pyx_obj_7sklearn_5utils_11seq_dataset_CSRDataset": 2, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Log": 5, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Hinge": 6, - "__pyx_obj_7sklearn_5utils_11seq_dataset_ArrayDataset": 2, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 6, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_ModifiedHuber": 5, - "__pyx_obj_7sklearn_5utils_13weight_vector_WeightVector": 3, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredLoss": 5, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredEpsilonInsensitive": 6, - "npy_cfloat": 1, - "__pyx_t_5numpy_cfloat_t": 1, - "npy_cdouble": 2, - "__pyx_t_5numpy_cdouble_t": 1, - "npy_clongdouble": 1, - "__pyx_t_5numpy_clongdouble_t": 1, - "__pyx_t_5numpy_complex_t": 1, - "PyObject_HEAD": 3, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_LossFunction": 5, - "*__pyx_vtab": 3, - "__pyx_base": 18, - "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_SequentialDataset": 4, - "n_samples": 1, - "epsilon": 2, - "current_index": 2, - "stride": 2, - "*X_data_ptr": 2, - "*X_indptr_ptr": 1, - "*X_indices_ptr": 1, - "*Y_data_ptr": 2, - "PyArrayObject": 8, - "*feature_indices": 2, - "*feature_indices_ptr": 2, - "*index": 2, - "*index_data_ptr": 2, - "*sample_weight_data": 2, - "threshold": 2, - "n_features": 2, - "__pyx_vtabstruct_7sklearn_5utils_13weight_vector_WeightVector": 3, - "*w_data_ptr": 1, - "wscale": 1, - "sq_norm": 1, - "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_SequentialDataset": 1, - "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_ArrayDataset": 2, - "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_ArrayDataset": 1, - "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_CSRDataset": 2, - "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_CSRDataset": 1, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 2, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Regression": 3, - "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 1, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 2, - "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 1, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Huber": 2, - "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_Huber": 1, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Hinge": 2, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Classification": 1, - "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_Hinge": 1, - "*__pyx_vtabptr_7sklearn_5utils_13weight_vector_WeightVector": 1, - "CYTHON_REFNANNY": 3, - "__Pyx_RefNannyAPIStruct": 3, - "*__Pyx_RefNanny": 1, - "*__Pyx_RefNannyImportAPI": 1, - "*modname": 1, - "__Pyx_RefNannyDeclarations": 11, - "*__pyx_refnanny": 1, - "WITH_THREAD": 1, - "__Pyx_RefNannySetupContext": 12, - "acquire_gil": 4, - "PyGILState_STATE": 1, - "__pyx_gilstate_save": 2, - "PyGILState_Ensure": 1, - "__pyx_refnanny": 8, - "__Pyx_RefNanny": 8, - "SetupContext": 3, - "PyGILState_Release": 1, - "__Pyx_RefNannyFinishContext": 14, - "FinishContext": 1, - "__Pyx_INCREF": 6, - "INCREF": 1, - "__Pyx_DECREF": 20, - "DECREF": 1, - "__Pyx_GOTREF": 24, - "GOTREF": 1, - "__Pyx_GIVEREF": 9, - "GIVEREF": 1, - "__Pyx_XINCREF": 2, - "__Pyx_XDECREF": 20, - "__Pyx_XGOTREF": 2, - "__Pyx_XGIVEREF": 5, - "Py_DECREF": 2, - "Py_XINCREF": 1, - "Py_XDECREF": 1, - "__Pyx_CLEAR": 1, - "__Pyx_XCLEAR": 1, - "*__Pyx_GetName": 1, - "__Pyx_ErrRestore": 1, - "*type": 4, - "*tb": 2, - "__Pyx_ErrFetch": 1, - "**type": 1, - "**value": 1, - "**tb": 1, - "__Pyx_Raise": 4, - "*cause": 1, - "__Pyx_RaiseArgtupleInvalid": 7, - "func_name": 2, - "num_min": 1, - "num_max": 1, - "num_found": 1, - "__Pyx_RaiseDoubleKeywordsError": 1, - "kw_name": 1, - "__Pyx_ParseOptionalKeywords": 4, - "*kwds": 1, - "**argnames": 1, - "*kwds2": 1, - "*values": 1, - "num_pos_args": 1, - "function_name": 1, - "__Pyx_ArgTypeTest": 1, - "none_allowed": 1, - "__Pyx_GetBufferAndValidate": 1, - "Py_buffer*": 2, - "dtype": 1, - "nd": 1, - "cast": 1, - "__Pyx_SafeReleaseBuffer": 1, - "__Pyx_TypeTest": 1, - "__Pyx_RaiseBufferFallbackError": 1, - "*__Pyx_GetItemInt_Generic": 1, - "*r": 7, - "PyObject_GetItem": 1, - "__Pyx_GetItemInt_List": 1, - "to_py_func": 6, - "__Pyx_GetItemInt_List_Fast": 1, - "__Pyx_GetItemInt_Generic": 6, - "*__Pyx_GetItemInt_List_Fast": 1, - "PyList_GET_SIZE": 5, - "PyList_GET_ITEM": 3, - "PySequence_GetItem": 3, - "__Pyx_GetItemInt_Tuple": 1, - "__Pyx_GetItemInt_Tuple_Fast": 1, - "*__Pyx_GetItemInt_Tuple_Fast": 1, - "PyTuple_GET_SIZE": 14, - "PyTuple_GET_ITEM": 15, - "__Pyx_GetItemInt": 1, - "__Pyx_GetItemInt_Fast": 2, - "PyList_CheckExact": 1, - "PyTuple_CheckExact": 1, - "PySequenceMethods": 1, - "*m": 1, - "tp_as_sequence": 1, - "sq_item": 2, - "sq_length": 2, - "PySequence_Check": 1, - "__Pyx_RaiseTooManyValuesError": 1, - "expected": 2, - "__Pyx_RaiseNeedMoreValuesError": 1, - "__Pyx_RaiseNoneNotIterableError": 1, - "__Pyx_IterFinish": 1, - "__Pyx_IternextUnpackEndCheck": 1, - "*retval": 1, - "shape": 1, - "strides": 1, - "suboffsets": 1, - "__Pyx_Buf_DimInfo": 2, - "pybuffer": 1, - "__Pyx_Buffer": 2, - "*rcbuffer": 1, - "diminfo": 1, - "__Pyx_LocalBuf_ND": 1, - "__Pyx_GetBuffer": 2, - "*view": 2, - "__Pyx_ReleaseBuffer": 2, - "PyObject_GetBuffer": 1, - "PyBuffer_Release": 1, - "__Pyx_zeros": 1, - "__Pyx_minusones": 1, - "*__Pyx_Import": 1, - "*from_list": 1, - "__Pyx_RaiseImportError": 1, - "__Pyx_Print": 1, - "__pyx_print": 1, - "__pyx_print_kwargs": 1, - "__Pyx_PrintOne": 1, - "__Pyx_CREAL": 4, - ".real": 3, - "__Pyx_CIMAG": 4, - ".imag": 3, - "__real__": 1, - "__imag__": 1, - "__Pyx_SET_CREAL": 2, - "__Pyx_SET_CIMAG": 2, - "__pyx_t_float_complex_from_parts": 1, - "__Pyx_c_eqf": 2, - "__Pyx_c_sumf": 2, - "__Pyx_c_difff": 2, - "__Pyx_c_prodf": 2, - "__Pyx_c_quotf": 2, - "__Pyx_c_negf": 2, - "__Pyx_c_is_zerof": 3, - "__Pyx_c_conjf": 3, - "conj": 3, - "__Pyx_c_absf": 3, - "abs": 2, - "__Pyx_c_powf": 3, - "pow": 2, - "conjf": 1, - "cabsf": 1, - "cpowf": 1, - "__pyx_t_double_complex_from_parts": 1, - "__Pyx_c_eq": 2, - "__Pyx_c_sum": 2, - "__Pyx_c_diff": 2, - "__Pyx_c_prod": 2, - "__Pyx_c_quot": 2, - "__Pyx_c_neg": 2, - "__Pyx_c_is_zero": 3, - "__Pyx_c_conj": 3, - "__Pyx_c_abs": 3, - "__Pyx_c_pow": 3, - "cabs": 1, - "cpow": 1, - "__Pyx_PyInt_AsUnsignedChar": 1, - "__Pyx_PyInt_AsUnsignedShort": 1, - "__Pyx_PyInt_AsUnsignedInt": 1, - "__Pyx_PyInt_AsChar": 1, - "__Pyx_PyInt_AsShort": 1, - "signed": 5, - "__Pyx_PyInt_AsSignedChar": 1, - "__Pyx_PyInt_AsSignedShort": 1, - "__Pyx_PyInt_AsSignedInt": 1, - "__Pyx_PyInt_AsLongDouble": 1, - "__Pyx_PyInt_AsUnsignedLong": 1, - "__Pyx_PyInt_AsUnsignedLongLong": 1, - "__Pyx_PyInt_AsLong": 1, - "__Pyx_PyInt_AsLongLong": 1, - "__Pyx_PyInt_AsSignedLong": 1, - "__Pyx_PyInt_AsSignedLongLong": 1, - "__Pyx_WriteUnraisable": 4, - "clineno": 1, - "lineno": 1, - "*filename": 2, - "__Pyx_check_binary_version": 1, - "__Pyx_SetVtable": 1, - "*vtable": 1, - "__Pyx_PyIdentifier_FromString": 3, - "*__Pyx_ImportModule": 1, - "*__Pyx_ImportType": 1, - "*module_name": 1, - "*class_name": 1, - "__Pyx_GetVtable": 1, - "code_line": 4, - "PyCodeObject*": 2, - "code_object": 2, - "__Pyx_CodeObjectCacheEntry": 1, - "__Pyx_CodeObjectCache": 2, - "max_count": 1, - "__Pyx_CodeObjectCacheEntry*": 2, - "entries": 2, - "__pyx_code_cache": 1, - "__pyx_bisect_code_objects": 1, - "PyCodeObject": 1, - "*__pyx_find_code_object": 1, - "__pyx_insert_code_object": 1, - "__Pyx_AddTraceback": 7, - "*funcname": 1, - "c_line": 1, - "py_line": 1, - "__Pyx_InitStrings": 1, - "*__pyx_ptype_7cpython_4type_type": 1, - "*__pyx_ptype_5numpy_dtype": 1, - "*__pyx_ptype_5numpy_flatiter": 1, - "*__pyx_ptype_5numpy_broadcast": 1, - "*__pyx_ptype_5numpy_ndarray": 1, - "*__pyx_ptype_5numpy_ufunc": 1, - "*__pyx_f_5numpy__util_dtypestring": 1, - "PyArray_Descr": 1, - "*__pyx_ptype_7sklearn_5utils_13weight_vector_WeightVector": 1, - "*__pyx_ptype_7sklearn_5utils_11seq_dataset_SequentialDataset": 1, - "*__pyx_ptype_7sklearn_5utils_11seq_dataset_ArrayDataset": 1, - "*__pyx_ptype_7sklearn_5utils_11seq_dataset_CSRDataset": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_LossFunction": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Regression": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Classification": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_ModifiedHuber": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Hinge": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Log": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredLoss": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Huber": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredEpsilonInsensitive": 1, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_max": 1, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_min": 1, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_sqnorm": 1, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_l1penalty": 1, - "__Pyx_TypeInfo_nn___pyx_t_7sklearn_12linear_model_8sgd_fast_DOUBLE": 1, - "__Pyx_MODULE_NAME": 1, - "__pyx_module_is_main_sklearn__linear_model__sgd_fast": 1, - "*__pyx_builtin_NotImplementedError": 1, - "*__pyx_builtin_range": 1, - "*__pyx_builtin_ValueError": 1, - "*__pyx_builtin_RuntimeError": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 2, - "*__pyx_v_self": 52, - "__pyx_v_p": 46, - "__pyx_v_y": 46, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 2, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 2, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_2dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_14Classification_loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_14Classification_2dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_2dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_4__reduce__": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge___init__": 1, - "__pyx_v_threshold": 2, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_2loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_4dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_6__reduce__": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge___init__": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_2loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_4dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_6__reduce__": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_2dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_4__reduce__": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_2dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_4__reduce__": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber___init__": 1, - "__pyx_v_c": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_2loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_4dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_6__reduce__": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive___init__": 1, - "__pyx_v_epsilon": 2, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_2loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_4dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_6__reduce__": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive___init__": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_2loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_4dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_6__reduce__": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_plain_sgd": 1, - "*__pyx_self": 1, - "*__pyx_v_weights": 1, - "__pyx_v_intercept": 1, - "*__pyx_v_loss": 1, - "__pyx_v_penalty_type": 1, - "__pyx_v_alpha": 1, - "__pyx_v_C": 1, - "__pyx_v_rho": 1, - "*__pyx_v_dataset": 1, - "__pyx_v_n_iter": 1, - "__pyx_v_fit_intercept": 1, - "__pyx_v_verbose": 1, - "__pyx_v_shuffle": 1, - "*__pyx_v_seed": 1, - "__pyx_v_weight_pos": 1, - "__pyx_v_weight_neg": 1, - "__pyx_v_learning_rate": 1, - "__pyx_v_eta0": 1, - "__pyx_v_power_t": 1, - "__pyx_v_t": 1, - "__pyx_v_intercept_decay": 1, - "__pyx_pf_5numpy_7ndarray___getbuffer__": 1, - "*__pyx_v_info": 2, - "__pyx_v_flags": 1, - "__pyx_pf_5numpy_7ndarray_2__releasebuffer__": 1, - "__pyx_k_1": 1, - "__pyx_k_2": 1, - "__pyx_k_3": 1, - "__pyx_k_4": 1, - "__pyx_k_6": 1, - "__pyx_k_8": 1, - "__pyx_k_10": 1, - "__pyx_k_12": 1, - "__pyx_k_13": 1, - "__pyx_k_16": 1, - "__pyx_k_20": 1, - "__pyx_k_21": 1, - "__pyx_k__B": 1, - "__pyx_k__C": 1, - "__pyx_k__H": 1, - "__pyx_k__I": 1, - "__pyx_k__L": 1, - "__pyx_k__O": 1, - "__pyx_k__Q": 1, - "__pyx_k__b": 1, - "__pyx_k__c": 1, - "__pyx_k__d": 1, - "__pyx_k__f": 1, - "__pyx_k__g": 1, - "__pyx_k__h": 1, - "__pyx_k__i": 1, - "__pyx_k__l": 1, - "__pyx_k__p": 1, - "__pyx_k__q": 1, - "__pyx_k__t": 1, - "__pyx_k__u": 1, - "__pyx_k__w": 1, - "__pyx_k__y": 1, - "__pyx_k__Zd": 1, - "__pyx_k__Zf": 1, - "__pyx_k__Zg": 1, - "__pyx_k__np": 1, - "__pyx_k__any": 1, - "__pyx_k__eta": 1, - "__pyx_k__rho": 1, - "__pyx_k__sys": 1, - "__pyx_k__eta0": 1, - "__pyx_k__loss": 1, - "__pyx_k__seed": 1, - "__pyx_k__time": 1, - "__pyx_k__xnnz": 1, - "__pyx_k__alpha": 1, - "__pyx_k__count": 1, - "__pyx_k__dloss": 1, - "__pyx_k__dtype": 1, - "__pyx_k__epoch": 1, - "__pyx_k__isinf": 1, - "__pyx_k__isnan": 1, - "__pyx_k__numpy": 1, - "__pyx_k__order": 1, - "__pyx_k__range": 1, - "__pyx_k__shape": 1, - "__pyx_k__zeros": 1, - "__pyx_k__n_iter": 1, - "__pyx_k__update": 1, - "__pyx_k__dataset": 1, - "__pyx_k__epsilon": 1, - "__pyx_k__float64": 1, - "__pyx_k__nonzero": 1, - "__pyx_k__power_t": 1, - "__pyx_k__shuffle": 1, - "__pyx_k__sumloss": 1, - "__pyx_k__t_start": 1, - "__pyx_k__verbose": 1, - "__pyx_k__weights": 1, - "__pyx_k____main__": 1, - "__pyx_k____test__": 1, - "__pyx_k__is_hinge": 1, - "__pyx_k__intercept": 1, - "__pyx_k__n_samples": 1, - "__pyx_k__plain_sgd": 1, - "__pyx_k__threshold": 1, - "__pyx_k__x_ind_ptr": 1, - "__pyx_k__ValueError": 1, - "__pyx_k__n_features": 1, - "__pyx_k__q_data_ptr": 1, - "__pyx_k__weight_neg": 1, - "__pyx_k__weight_pos": 1, - "__pyx_k__x_data_ptr": 1, - "__pyx_k__RuntimeError": 1, - "__pyx_k__class_weight": 1, - "__pyx_k__penalty_type": 1, - "__pyx_k__fit_intercept": 1, - "__pyx_k__learning_rate": 1, - "__pyx_k__sample_weight": 1, - "__pyx_k__intercept_decay": 1, - "__pyx_k__NotImplementedError": 1, - "*__pyx_kp_s_1": 1, - "*__pyx_kp_u_10": 1, - "*__pyx_kp_u_12": 1, - "*__pyx_kp_u_13": 1, - "*__pyx_kp_u_16": 1, - "*__pyx_kp_s_2": 1, - "*__pyx_kp_s_20": 1, - "*__pyx_n_s_21": 1, - "*__pyx_kp_s_3": 1, - "*__pyx_kp_s_4": 1, - "*__pyx_kp_u_6": 1, - "*__pyx_kp_u_8": 1, - "*__pyx_n_s__C": 1, - "*__pyx_n_s__NotImplementedError": 1, - "*__pyx_n_s__RuntimeError": 1, - "*__pyx_n_s__ValueError": 1, - "*__pyx_n_s____main__": 1, - "*__pyx_n_s____test__": 1, - "*__pyx_n_s__alpha": 1, - "*__pyx_n_s__any": 1, - "*__pyx_n_s__c": 1, - "*__pyx_n_s__class_weight": 1, - "*__pyx_n_s__count": 1, - "*__pyx_n_s__dataset": 1, - "*__pyx_n_s__dloss": 1, - "*__pyx_n_s__dtype": 1, - "*__pyx_n_s__epoch": 1, - "*__pyx_n_s__epsilon": 1, - "*__pyx_n_s__eta": 1, - "*__pyx_n_s__eta0": 1, - "*__pyx_n_s__fit_intercept": 1, - "*__pyx_n_s__float64": 1, - "*__pyx_n_s__i": 1, - "*__pyx_n_s__intercept": 1, - "*__pyx_n_s__intercept_decay": 1, - "*__pyx_n_s__is_hinge": 1, - "*__pyx_n_s__isinf": 1, - "*__pyx_n_s__isnan": 1, - "*__pyx_n_s__learning_rate": 1, - "*__pyx_n_s__loss": 1, - "*__pyx_n_s__n_features": 1, - "*__pyx_n_s__n_iter": 1, - "*__pyx_n_s__n_samples": 1, - "*__pyx_n_s__nonzero": 1, - "*__pyx_n_s__np": 1, - "*__pyx_n_s__numpy": 1, - "*__pyx_n_s__order": 1, - "*__pyx_n_s__p": 1, - "*__pyx_n_s__penalty_type": 1, - "*__pyx_n_s__plain_sgd": 1, - "*__pyx_n_s__power_t": 1, - "*__pyx_n_s__q": 1, - "*__pyx_n_s__q_data_ptr": 1, - "*__pyx_n_s__range": 1, - "*__pyx_n_s__rho": 1, - "*__pyx_n_s__sample_weight": 1, - "*__pyx_n_s__seed": 1, - "*__pyx_n_s__shape": 1, - "*__pyx_n_s__shuffle": 1, - "*__pyx_n_s__sumloss": 1, - "*__pyx_n_s__sys": 1, - "*__pyx_n_s__t": 1, - "*__pyx_n_s__t_start": 1, - "*__pyx_n_s__threshold": 1, - "*__pyx_n_s__time": 1, - "*__pyx_n_s__u": 1, - "*__pyx_n_s__update": 1, - "*__pyx_n_s__verbose": 1, - "*__pyx_n_s__w": 1, - "*__pyx_n_s__weight_neg": 1, - "*__pyx_n_s__weight_pos": 1, - "*__pyx_n_s__weights": 1, - "*__pyx_n_s__x_data_ptr": 1, - "*__pyx_n_s__x_ind_ptr": 1, - "*__pyx_n_s__xnnz": 1, - "*__pyx_n_s__y": 1, - "*__pyx_n_s__zeros": 1, - "*__pyx_int_15": 1, - "*__pyx_k_tuple_5": 1, - "*__pyx_k_tuple_7": 1, - "*__pyx_k_tuple_9": 1, - "*__pyx_k_tuple_11": 1, - "*__pyx_k_tuple_14": 1, - "*__pyx_k_tuple_15": 1, - "*__pyx_k_tuple_17": 1, - "*__pyx_k_tuple_18": 1, - "*__pyx_k_codeobj_19": 1, - "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_1loss": 3, - "*__pyx_args": 9, - "*__pyx_kwds": 9, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, - "__pyx_skip_dispatch": 6, - "__pyx_r": 39, - "*__pyx_t_1": 6, - "*__pyx_t_2": 3, - "*__pyx_t_3": 3, - "*__pyx_t_4": 3, - "__pyx_t_5": 12, - "__pyx_v_self": 15, - "tp_dictoffset": 3, - "__pyx_t_1": 69, - "PyObject_GetAttr": 3, - "__pyx_n_s__loss": 2, - "__pyx_filename": 51, - "__pyx_f": 42, - "__pyx_L1_error": 33, - "PyCFunction_Check": 3, - "PyCFunction_GET_FUNCTION": 3, - "PyCFunction": 3, - "__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_1loss": 1, - "__pyx_t_2": 21, - "PyFloat_FromDouble": 9, - "__pyx_t_3": 39, - "__pyx_t_4": 27, - "PyTuple_New": 3, - "PyTuple_SET_ITEM": 6, - "PyObject_Call": 6, - "PyErr_Occurred": 9, - "__pyx_L0": 18, - "__pyx_builtin_NotImplementedError": 3, - "__pyx_empty_tuple": 3, - "__pyx_doc_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, - "*__pyx_r": 6, - "**__pyx_pyargnames": 3, - "__pyx_n_s__p": 6, - "__pyx_n_s__y": 6, - "values": 30, - "__pyx_kwds": 15, - "kw_args": 15, - "pos_args": 12, - "__pyx_args": 21, - "__pyx_L5_argtuple_error": 12, - "PyDict_Size": 3, - "PyDict_GetItem": 6, - "__pyx_L3_error": 18, - "__pyx_pyargnames": 3, - "__pyx_L4_argument_unpacking_done": 6, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, - "__pyx_vtab": 2, - "loss": 1, - "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_3dloss": 3, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_12LossFunction_dloss": 1, - "__pyx_n_s__dloss": 1, - "__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_3dloss": 1, - "__pyx_doc_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 1, - "dloss": 1, - "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_10Regression_1loss": 3, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 1, - "__pyx_pw_7sklearn_12linear_model_8sgd_fast_10Regression_1loss": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 1, - "__pyx_base.__pyx_vtab": 1, - "__pyx_base.loss": 1, - "syscalldef": 1, - "syscalldefs": 1, - "SYSCALL_OR_NUM": 3, - "SYS_restart_syscall": 1, - "MAKE_UINT16": 3, - "SYS_exit": 1, - "SYS_fork": 1, - "__wglew_h__": 2, - "__WGLEW_H__": 1, - "__wglext_h_": 2, - "wglext.h": 1, - "wglew.h": 1, - "WINAPI": 119, - "": 1, - "GLEW_STATIC": 1, - "WGL_3DFX_multisample": 2, - "WGL_SAMPLE_BUFFERS_3DFX": 1, - "WGL_SAMPLES_3DFX": 1, - "WGLEW_3DFX_multisample": 1, - "WGLEW_GET_VAR": 49, - "__WGLEW_3DFX_multisample": 2, - "WGL_3DL_stereo_control": 2, - "WGL_STEREO_EMITTER_ENABLE_3DL": 1, - "WGL_STEREO_EMITTER_DISABLE_3DL": 1, - "WGL_STEREO_POLARITY_NORMAL_3DL": 1, - "WGL_STEREO_POLARITY_INVERT_3DL": 1, - "BOOL": 84, - "PFNWGLSETSTEREOEMITTERSTATE3DLPROC": 2, - "HDC": 65, - "hDC": 33, - "UINT": 30, - "uState": 1, - "wglSetStereoEmitterState3DL": 1, - "WGLEW_GET_FUN": 120, - "__wglewSetStereoEmitterState3DL": 2, - "WGLEW_3DL_stereo_control": 1, - "__WGLEW_3DL_stereo_control": 2, - "WGL_AMD_gpu_association": 2, - "WGL_GPU_VENDOR_AMD": 1, - "F00": 1, - "WGL_GPU_RENDERER_STRING_AMD": 1, - "F01": 1, - "WGL_GPU_OPENGL_VERSION_STRING_AMD": 1, - "F02": 1, - "WGL_GPU_FASTEST_TARGET_GPUS_AMD": 1, - "A2": 2, - "WGL_GPU_RAM_AMD": 1, - "A3": 2, - "WGL_GPU_CLOCK_AMD": 1, - "A4": 2, - "WGL_GPU_NUM_PIPES_AMD": 1, - "A5": 3, - "WGL_GPU_NUM_SIMD_AMD": 1, - "A6": 2, - "WGL_GPU_NUM_RB_AMD": 1, - "A7": 2, - "WGL_GPU_NUM_SPI_AMD": 1, - "A8": 2, - "VOID": 6, - "PFNWGLBLITCONTEXTFRAMEBUFFERAMDPROC": 2, - "HGLRC": 14, - "dstCtx": 1, - "GLint": 18, - "srcX0": 1, - "srcY0": 1, - "srcX1": 1, - "srcY1": 1, - "dstX0": 1, - "dstY0": 1, - "dstX1": 1, - "dstY1": 1, - "GLbitfield": 1, - "mask": 1, - "GLenum": 8, - "filter": 1, - "PFNWGLCREATEASSOCIATEDCONTEXTAMDPROC": 2, - "PFNWGLCREATEASSOCIATEDCONTEXTATTRIBSAMDPROC": 2, - "hShareContext": 2, - "attribList": 2, - "PFNWGLDELETEASSOCIATEDCONTEXTAMDPROC": 2, - "hglrc": 5, - "PFNWGLGETCONTEXTGPUIDAMDPROC": 2, - "PFNWGLGETCURRENTASSOCIATEDCONTEXTAMDPROC": 2, - "PFNWGLGETGPUIDSAMDPROC": 2, - "maxCount": 1, - "UINT*": 6, - "ids": 1, - "INT": 3, - "PFNWGLGETGPUINFOAMDPROC": 2, - "property": 1, - "dataType": 1, - "PFNWGLMAKEASSOCIATEDCONTEXTCURRENTAMDPROC": 2, - "wglBlitContextFramebufferAMD": 1, - "__wglewBlitContextFramebufferAMD": 2, - "wglCreateAssociatedContextAMD": 1, - "__wglewCreateAssociatedContextAMD": 2, - "wglCreateAssociatedContextAttribsAMD": 1, - "__wglewCreateAssociatedContextAttribsAMD": 2, - "wglDeleteAssociatedContextAMD": 1, - "__wglewDeleteAssociatedContextAMD": 2, - "wglGetContextGPUIDAMD": 1, - "__wglewGetContextGPUIDAMD": 2, - "wglGetCurrentAssociatedContextAMD": 1, - "__wglewGetCurrentAssociatedContextAMD": 2, - "wglGetGPUIDsAMD": 1, - "__wglewGetGPUIDsAMD": 2, - "wglGetGPUInfoAMD": 1, - "__wglewGetGPUInfoAMD": 2, - "wglMakeAssociatedContextCurrentAMD": 1, - "__wglewMakeAssociatedContextCurrentAMD": 2, - "WGLEW_AMD_gpu_association": 1, - "__WGLEW_AMD_gpu_association": 2, - "WGL_ARB_buffer_region": 2, - "WGL_FRONT_COLOR_BUFFER_BIT_ARB": 1, - "WGL_BACK_COLOR_BUFFER_BIT_ARB": 1, - "WGL_DEPTH_BUFFER_BIT_ARB": 1, - "WGL_STENCIL_BUFFER_BIT_ARB": 1, - "HANDLE": 14, - "PFNWGLCREATEBUFFERREGIONARBPROC": 2, - "iLayerPlane": 5, - "uType": 1, - "PFNWGLDELETEBUFFERREGIONARBPROC": 2, - "hRegion": 3, - "PFNWGLRESTOREBUFFERREGIONARBPROC": 2, - "width": 3, - "height": 3, - "xSrc": 1, - "ySrc": 1, - "PFNWGLSAVEBUFFERREGIONARBPROC": 2, - "wglCreateBufferRegionARB": 1, - "__wglewCreateBufferRegionARB": 2, - "wglDeleteBufferRegionARB": 1, - "__wglewDeleteBufferRegionARB": 2, - "wglRestoreBufferRegionARB": 1, - "__wglewRestoreBufferRegionARB": 2, - "wglSaveBufferRegionARB": 1, - "__wglewSaveBufferRegionARB": 2, - "WGLEW_ARB_buffer_region": 1, - "__WGLEW_ARB_buffer_region": 2, - "WGL_ARB_create_context": 2, - "WGL_CONTEXT_DEBUG_BIT_ARB": 1, - "WGL_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB": 1, - "WGL_CONTEXT_MAJOR_VERSION_ARB": 1, - "WGL_CONTEXT_MINOR_VERSION_ARB": 1, - "WGL_CONTEXT_LAYER_PLANE_ARB": 1, - "WGL_CONTEXT_FLAGS_ARB": 1, - "ERROR_INVALID_VERSION_ARB": 1, - "ERROR_INVALID_PROFILE_ARB": 1, - "PFNWGLCREATECONTEXTATTRIBSARBPROC": 2, - "wglCreateContextAttribsARB": 1, - "__wglewCreateContextAttribsARB": 2, - "WGLEW_ARB_create_context": 1, - "__WGLEW_ARB_create_context": 2, - "WGL_ARB_create_context_profile": 2, - "WGL_CONTEXT_CORE_PROFILE_BIT_ARB": 1, - "WGL_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB": 1, - "WGL_CONTEXT_PROFILE_MASK_ARB": 1, - "WGLEW_ARB_create_context_profile": 1, - "__WGLEW_ARB_create_context_profile": 2, - "WGL_ARB_create_context_robustness": 2, - "WGL_CONTEXT_ROBUST_ACCESS_BIT_ARB": 1, - "WGL_LOSE_CONTEXT_ON_RESET_ARB": 1, - "WGL_CONTEXT_RESET_NOTIFICATION_STRATEGY_ARB": 1, - "WGL_NO_RESET_NOTIFICATION_ARB": 1, - "WGLEW_ARB_create_context_robustness": 1, - "__WGLEW_ARB_create_context_robustness": 2, - "WGL_ARB_extensions_string": 2, - "PFNWGLGETEXTENSIONSSTRINGARBPROC": 2, - "hdc": 16, - "wglGetExtensionsStringARB": 1, - "__wglewGetExtensionsStringARB": 2, - "WGLEW_ARB_extensions_string": 1, - "__WGLEW_ARB_extensions_string": 2, - "WGL_ARB_framebuffer_sRGB": 2, - "WGL_FRAMEBUFFER_SRGB_CAPABLE_ARB": 1, - "A9": 2, - "WGLEW_ARB_framebuffer_sRGB": 1, - "__WGLEW_ARB_framebuffer_sRGB": 2, - "WGL_ARB_make_current_read": 2, - "ERROR_INVALID_PIXEL_TYPE_ARB": 1, - "ERROR_INCOMPATIBLE_DEVICE_CONTEXTS_ARB": 1, - "PFNWGLGETCURRENTREADDCARBPROC": 2, - "PFNWGLMAKECONTEXTCURRENTARBPROC": 2, - "hDrawDC": 2, - "hReadDC": 2, - "wglGetCurrentReadDCARB": 1, - "__wglewGetCurrentReadDCARB": 2, - "wglMakeContextCurrentARB": 1, - "__wglewMakeContextCurrentARB": 2, - "WGLEW_ARB_make_current_read": 1, - "__WGLEW_ARB_make_current_read": 2, - "WGL_ARB_multisample": 2, - "WGL_SAMPLE_BUFFERS_ARB": 1, - "WGL_SAMPLES_ARB": 1, - "WGLEW_ARB_multisample": 1, - "__WGLEW_ARB_multisample": 2, - "WGL_ARB_pbuffer": 2, - "WGL_DRAW_TO_PBUFFER_ARB": 1, - "D": 8, - "WGL_MAX_PBUFFER_PIXELS_ARB": 1, - "WGL_MAX_PBUFFER_WIDTH_ARB": 1, - "WGL_MAX_PBUFFER_HEIGHT_ARB": 1, - "WGL_PBUFFER_LARGEST_ARB": 1, - "WGL_PBUFFER_WIDTH_ARB": 1, - "WGL_PBUFFER_HEIGHT_ARB": 1, - "WGL_PBUFFER_LOST_ARB": 1, - "DECLARE_HANDLE": 6, - "HPBUFFERARB": 12, - "PFNWGLCREATEPBUFFERARBPROC": 2, - "iPixelFormat": 6, - "iWidth": 2, - "iHeight": 2, - "piAttribList": 4, - "PFNWGLDESTROYPBUFFERARBPROC": 2, - "hPbuffer": 14, - "PFNWGLGETPBUFFERDCARBPROC": 2, - "PFNWGLQUERYPBUFFERARBPROC": 2, - "iAttribute": 8, - "piValue": 8, - "PFNWGLRELEASEPBUFFERDCARBPROC": 2, - "wglCreatePbufferARB": 1, - "__wglewCreatePbufferARB": 2, - "wglDestroyPbufferARB": 1, - "__wglewDestroyPbufferARB": 2, - "wglGetPbufferDCARB": 1, - "__wglewGetPbufferDCARB": 2, - "wglQueryPbufferARB": 1, - "__wglewQueryPbufferARB": 2, - "wglReleasePbufferDCARB": 1, - "__wglewReleasePbufferDCARB": 2, - "WGLEW_ARB_pbuffer": 1, - "__WGLEW_ARB_pbuffer": 2, - "WGL_ARB_pixel_format": 2, - "WGL_NUMBER_PIXEL_FORMATS_ARB": 1, - "WGL_DRAW_TO_WINDOW_ARB": 1, - "WGL_DRAW_TO_BITMAP_ARB": 1, - "WGL_ACCELERATION_ARB": 1, - "WGL_NEED_PALETTE_ARB": 1, - "WGL_NEED_SYSTEM_PALETTE_ARB": 1, - "WGL_SWAP_LAYER_BUFFERS_ARB": 1, - "WGL_SWAP_METHOD_ARB": 1, - "WGL_NUMBER_OVERLAYS_ARB": 1, - "WGL_NUMBER_UNDERLAYS_ARB": 1, - "WGL_TRANSPARENT_ARB": 1, - "WGL_SHARE_DEPTH_ARB": 1, - "WGL_SHARE_STENCIL_ARB": 1, - "WGL_SHARE_ACCUM_ARB": 1, - "WGL_SUPPORT_GDI_ARB": 1, - "WGL_SUPPORT_OPENGL_ARB": 1, - "WGL_DOUBLE_BUFFER_ARB": 1, - "WGL_STEREO_ARB": 1, - "WGL_PIXEL_TYPE_ARB": 1, - "WGL_COLOR_BITS_ARB": 1, - "WGL_RED_BITS_ARB": 1, - "WGL_RED_SHIFT_ARB": 1, - "WGL_GREEN_BITS_ARB": 1, - "WGL_GREEN_SHIFT_ARB": 1, - "WGL_BLUE_BITS_ARB": 1, - "WGL_BLUE_SHIFT_ARB": 1, - "WGL_ALPHA_BITS_ARB": 1, - "B": 9, - "WGL_ALPHA_SHIFT_ARB": 1, - "WGL_ACCUM_BITS_ARB": 1, - "WGL_ACCUM_RED_BITS_ARB": 1, - "WGL_ACCUM_GREEN_BITS_ARB": 1, - "WGL_ACCUM_BLUE_BITS_ARB": 1, - "WGL_ACCUM_ALPHA_BITS_ARB": 1, - "WGL_DEPTH_BITS_ARB": 1, - "WGL_STENCIL_BITS_ARB": 1, - "WGL_AUX_BUFFERS_ARB": 1, - "WGL_NO_ACCELERATION_ARB": 1, - "WGL_GENERIC_ACCELERATION_ARB": 1, - "WGL_FULL_ACCELERATION_ARB": 1, - "WGL_SWAP_EXCHANGE_ARB": 1, - "WGL_SWAP_COPY_ARB": 1, - "WGL_SWAP_UNDEFINED_ARB": 1, - "WGL_TYPE_RGBA_ARB": 1, - "WGL_TYPE_COLORINDEX_ARB": 1, - "WGL_TRANSPARENT_RED_VALUE_ARB": 1, - "WGL_TRANSPARENT_GREEN_VALUE_ARB": 1, - "WGL_TRANSPARENT_BLUE_VALUE_ARB": 1, - "WGL_TRANSPARENT_ALPHA_VALUE_ARB": 1, - "WGL_TRANSPARENT_INDEX_VALUE_ARB": 1, - "PFNWGLCHOOSEPIXELFORMATARBPROC": 2, - "piAttribIList": 2, - "FLOAT": 4, - "*pfAttribFList": 2, - "nMaxFormats": 2, - "*piFormats": 2, - "*nNumFormats": 2, - "PFNWGLGETPIXELFORMATATTRIBFVARBPROC": 2, - "nAttributes": 4, - "piAttributes": 4, - "*pfValues": 2, - "PFNWGLGETPIXELFORMATATTRIBIVARBPROC": 2, - "*piValues": 2, - "wglChoosePixelFormatARB": 1, - "__wglewChoosePixelFormatARB": 2, - "wglGetPixelFormatAttribfvARB": 1, - "__wglewGetPixelFormatAttribfvARB": 2, - "wglGetPixelFormatAttribivARB": 1, - "__wglewGetPixelFormatAttribivARB": 2, - "WGLEW_ARB_pixel_format": 1, - "__WGLEW_ARB_pixel_format": 2, - "WGL_ARB_pixel_format_float": 2, - "WGL_TYPE_RGBA_FLOAT_ARB": 1, - "A0": 3, - "WGLEW_ARB_pixel_format_float": 1, - "__WGLEW_ARB_pixel_format_float": 2, - "WGL_ARB_render_texture": 2, - "WGL_BIND_TO_TEXTURE_RGB_ARB": 1, - "WGL_BIND_TO_TEXTURE_RGBA_ARB": 1, - "WGL_TEXTURE_FORMAT_ARB": 1, - "WGL_TEXTURE_TARGET_ARB": 1, - "WGL_MIPMAP_TEXTURE_ARB": 1, - "WGL_TEXTURE_RGB_ARB": 1, - "WGL_TEXTURE_RGBA_ARB": 1, - "WGL_NO_TEXTURE_ARB": 2, - "WGL_TEXTURE_CUBE_MAP_ARB": 1, - "WGL_TEXTURE_1D_ARB": 1, - "WGL_TEXTURE_2D_ARB": 1, - "WGL_MIPMAP_LEVEL_ARB": 1, - "WGL_CUBE_MAP_FACE_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB": 1, - "WGL_FRONT_LEFT_ARB": 1, - "WGL_FRONT_RIGHT_ARB": 1, - "WGL_BACK_LEFT_ARB": 1, - "WGL_BACK_RIGHT_ARB": 1, - "WGL_AUX0_ARB": 1, - "WGL_AUX1_ARB": 1, - "WGL_AUX2_ARB": 1, - "WGL_AUX3_ARB": 1, - "WGL_AUX4_ARB": 1, - "WGL_AUX5_ARB": 1, - "WGL_AUX6_ARB": 1, - "WGL_AUX7_ARB": 1, - "WGL_AUX8_ARB": 1, - "WGL_AUX9_ARB": 1, - "PFNWGLBINDTEXIMAGEARBPROC": 2, - "iBuffer": 2, - "PFNWGLRELEASETEXIMAGEARBPROC": 2, - "PFNWGLSETPBUFFERATTRIBARBPROC": 2, - "wglBindTexImageARB": 1, - "__wglewBindTexImageARB": 2, - "wglReleaseTexImageARB": 1, - "__wglewReleaseTexImageARB": 2, - "wglSetPbufferAttribARB": 1, - "__wglewSetPbufferAttribARB": 2, - "WGLEW_ARB_render_texture": 1, - "__WGLEW_ARB_render_texture": 2, - "WGL_ATI_pixel_format_float": 2, - "WGL_TYPE_RGBA_FLOAT_ATI": 1, - "GL_RGBA_FLOAT_MODE_ATI": 1, - "GL_COLOR_CLEAR_UNCLAMPED_VALUE_ATI": 1, - "WGLEW_ATI_pixel_format_float": 1, - "__WGLEW_ATI_pixel_format_float": 2, - "WGL_ATI_render_texture_rectangle": 2, - "WGL_TEXTURE_RECTANGLE_ATI": 1, - "WGLEW_ATI_render_texture_rectangle": 1, - "__WGLEW_ATI_render_texture_rectangle": 2, - "WGL_EXT_create_context_es2_profile": 2, - "WGL_CONTEXT_ES2_PROFILE_BIT_EXT": 1, - "WGLEW_EXT_create_context_es2_profile": 1, - "__WGLEW_EXT_create_context_es2_profile": 2, - "WGL_EXT_depth_float": 2, - "WGL_DEPTH_FLOAT_EXT": 1, - "WGLEW_EXT_depth_float": 1, - "__WGLEW_EXT_depth_float": 2, - "WGL_EXT_display_color_table": 2, - "GLboolean": 53, - "PFNWGLBINDDISPLAYCOLORTABLEEXTPROC": 2, - "GLushort": 3, - "PFNWGLCREATEDISPLAYCOLORTABLEEXTPROC": 2, - "PFNWGLDESTROYDISPLAYCOLORTABLEEXTPROC": 2, - "PFNWGLLOADDISPLAYCOLORTABLEEXTPROC": 2, - "GLushort*": 1, - "table": 1, - "GLuint": 9, - "wglBindDisplayColorTableEXT": 1, - "__wglewBindDisplayColorTableEXT": 2, - "wglCreateDisplayColorTableEXT": 1, - "__wglewCreateDisplayColorTableEXT": 2, - "wglDestroyDisplayColorTableEXT": 1, - "__wglewDestroyDisplayColorTableEXT": 2, - "wglLoadDisplayColorTableEXT": 1, - "__wglewLoadDisplayColorTableEXT": 2, - "WGLEW_EXT_display_color_table": 1, - "__WGLEW_EXT_display_color_table": 2, - "WGL_EXT_extensions_string": 2, - "PFNWGLGETEXTENSIONSSTRINGEXTPROC": 2, - "wglGetExtensionsStringEXT": 1, - "__wglewGetExtensionsStringEXT": 2, - "WGLEW_EXT_extensions_string": 1, - "__WGLEW_EXT_extensions_string": 2, - "WGL_EXT_framebuffer_sRGB": 2, - "WGL_FRAMEBUFFER_SRGB_CAPABLE_EXT": 1, - "WGLEW_EXT_framebuffer_sRGB": 1, - "__WGLEW_EXT_framebuffer_sRGB": 2, - "WGL_EXT_make_current_read": 2, - "ERROR_INVALID_PIXEL_TYPE_EXT": 1, - "PFNWGLGETCURRENTREADDCEXTPROC": 2, - "PFNWGLMAKECONTEXTCURRENTEXTPROC": 2, - "wglGetCurrentReadDCEXT": 1, - "__wglewGetCurrentReadDCEXT": 2, - "wglMakeContextCurrentEXT": 1, - "__wglewMakeContextCurrentEXT": 2, - "WGLEW_EXT_make_current_read": 1, - "__WGLEW_EXT_make_current_read": 2, - "WGL_EXT_multisample": 2, - "WGL_SAMPLE_BUFFERS_EXT": 1, - "WGL_SAMPLES_EXT": 1, - "WGLEW_EXT_multisample": 1, - "__WGLEW_EXT_multisample": 2, - "WGL_EXT_pbuffer": 2, - "WGL_DRAW_TO_PBUFFER_EXT": 1, - "WGL_MAX_PBUFFER_PIXELS_EXT": 1, - "WGL_MAX_PBUFFER_WIDTH_EXT": 1, - "WGL_MAX_PBUFFER_HEIGHT_EXT": 1, - "WGL_OPTIMAL_PBUFFER_WIDTH_EXT": 1, - "WGL_OPTIMAL_PBUFFER_HEIGHT_EXT": 1, - "WGL_PBUFFER_LARGEST_EXT": 1, - "WGL_PBUFFER_WIDTH_EXT": 1, - "WGL_PBUFFER_HEIGHT_EXT": 1, - "HPBUFFEREXT": 6, - "PFNWGLCREATEPBUFFEREXTPROC": 2, - "PFNWGLDESTROYPBUFFEREXTPROC": 2, - "PFNWGLGETPBUFFERDCEXTPROC": 2, - "PFNWGLQUERYPBUFFEREXTPROC": 2, - "PFNWGLRELEASEPBUFFERDCEXTPROC": 2, - "wglCreatePbufferEXT": 1, - "__wglewCreatePbufferEXT": 2, - "wglDestroyPbufferEXT": 1, - "__wglewDestroyPbufferEXT": 2, - "wglGetPbufferDCEXT": 1, - "__wglewGetPbufferDCEXT": 2, - "wglQueryPbufferEXT": 1, - "__wglewQueryPbufferEXT": 2, - "wglReleasePbufferDCEXT": 1, - "__wglewReleasePbufferDCEXT": 2, - "WGLEW_EXT_pbuffer": 1, - "__WGLEW_EXT_pbuffer": 2, - "WGL_EXT_pixel_format": 2, - "WGL_NUMBER_PIXEL_FORMATS_EXT": 1, - "WGL_DRAW_TO_WINDOW_EXT": 1, - "WGL_DRAW_TO_BITMAP_EXT": 1, - "WGL_ACCELERATION_EXT": 1, - "WGL_NEED_PALETTE_EXT": 1, - "WGL_NEED_SYSTEM_PALETTE_EXT": 1, - "WGL_SWAP_LAYER_BUFFERS_EXT": 1, - "WGL_SWAP_METHOD_EXT": 1, - "WGL_NUMBER_OVERLAYS_EXT": 1, - "WGL_NUMBER_UNDERLAYS_EXT": 1, - "WGL_TRANSPARENT_EXT": 1, - "WGL_TRANSPARENT_VALUE_EXT": 1, - "WGL_SHARE_DEPTH_EXT": 1, - "WGL_SHARE_STENCIL_EXT": 1, - "WGL_SHARE_ACCUM_EXT": 1, - "WGL_SUPPORT_GDI_EXT": 1, - "WGL_SUPPORT_OPENGL_EXT": 1, - "WGL_DOUBLE_BUFFER_EXT": 1, - "WGL_STEREO_EXT": 1, - "WGL_PIXEL_TYPE_EXT": 1, - "WGL_COLOR_BITS_EXT": 1, - "WGL_RED_BITS_EXT": 1, - "WGL_RED_SHIFT_EXT": 1, - "WGL_GREEN_BITS_EXT": 1, - "WGL_GREEN_SHIFT_EXT": 1, - "WGL_BLUE_BITS_EXT": 1, - "WGL_BLUE_SHIFT_EXT": 1, - "WGL_ALPHA_BITS_EXT": 1, - "WGL_ALPHA_SHIFT_EXT": 1, - "WGL_ACCUM_BITS_EXT": 1, - "WGL_ACCUM_RED_BITS_EXT": 1, - "WGL_ACCUM_GREEN_BITS_EXT": 1, - "WGL_ACCUM_BLUE_BITS_EXT": 1, - "WGL_ACCUM_ALPHA_BITS_EXT": 1, - "WGL_DEPTH_BITS_EXT": 1, - "WGL_STENCIL_BITS_EXT": 1, - "WGL_AUX_BUFFERS_EXT": 1, - "WGL_NO_ACCELERATION_EXT": 1, - "WGL_GENERIC_ACCELERATION_EXT": 1, - "WGL_FULL_ACCELERATION_EXT": 1, - "WGL_SWAP_EXCHANGE_EXT": 1, - "WGL_SWAP_COPY_EXT": 1, - "WGL_SWAP_UNDEFINED_EXT": 1, - "WGL_TYPE_RGBA_EXT": 1, - "WGL_TYPE_COLORINDEX_EXT": 1, - "PFNWGLCHOOSEPIXELFORMATEXTPROC": 2, - "PFNWGLGETPIXELFORMATATTRIBFVEXTPROC": 2, - "PFNWGLGETPIXELFORMATATTRIBIVEXTPROC": 2, - "wglChoosePixelFormatEXT": 1, - "__wglewChoosePixelFormatEXT": 2, - "wglGetPixelFormatAttribfvEXT": 1, - "__wglewGetPixelFormatAttribfvEXT": 2, - "wglGetPixelFormatAttribivEXT": 1, - "__wglewGetPixelFormatAttribivEXT": 2, - "WGLEW_EXT_pixel_format": 1, - "__WGLEW_EXT_pixel_format": 2, - "WGL_EXT_pixel_format_packed_float": 2, - "WGL_TYPE_RGBA_UNSIGNED_FLOAT_EXT": 1, - "WGLEW_EXT_pixel_format_packed_float": 1, - "__WGLEW_EXT_pixel_format_packed_float": 2, - "WGL_EXT_swap_control": 2, - "PFNWGLGETSWAPINTERVALEXTPROC": 2, - "PFNWGLSWAPINTERVALEXTPROC": 2, - "interval": 1, - "wglGetSwapIntervalEXT": 1, - "__wglewGetSwapIntervalEXT": 2, - "wglSwapIntervalEXT": 1, - "__wglewSwapIntervalEXT": 2, - "WGLEW_EXT_swap_control": 1, - "__WGLEW_EXT_swap_control": 2, - "WGL_I3D_digital_video_control": 2, - "WGL_DIGITAL_VIDEO_CURSOR_ALPHA_FRAMEBUFFER_I3D": 1, - "WGL_DIGITAL_VIDEO_CURSOR_ALPHA_VALUE_I3D": 1, - "WGL_DIGITAL_VIDEO_CURSOR_INCLUDED_I3D": 1, - "WGL_DIGITAL_VIDEO_GAMMA_CORRECTED_I3D": 1, - "PFNWGLGETDIGITALVIDEOPARAMETERSI3DPROC": 2, - "PFNWGLSETDIGITALVIDEOPARAMETERSI3DPROC": 2, - "wglGetDigitalVideoParametersI3D": 1, - "__wglewGetDigitalVideoParametersI3D": 2, - "wglSetDigitalVideoParametersI3D": 1, - "__wglewSetDigitalVideoParametersI3D": 2, - "WGLEW_I3D_digital_video_control": 1, - "__WGLEW_I3D_digital_video_control": 2, - "WGL_I3D_gamma": 2, - "WGL_GAMMA_TABLE_SIZE_I3D": 1, - "WGL_GAMMA_EXCLUDE_DESKTOP_I3D": 1, - "PFNWGLGETGAMMATABLEI3DPROC": 2, - "iEntries": 2, - "USHORT*": 2, - "puRed": 2, - "USHORT": 4, - "*puGreen": 2, - "*puBlue": 2, - "PFNWGLGETGAMMATABLEPARAMETERSI3DPROC": 2, - "PFNWGLSETGAMMATABLEI3DPROC": 2, - "PFNWGLSETGAMMATABLEPARAMETERSI3DPROC": 2, - "wglGetGammaTableI3D": 1, - "__wglewGetGammaTableI3D": 2, - "wglGetGammaTableParametersI3D": 1, - "__wglewGetGammaTableParametersI3D": 2, - "wglSetGammaTableI3D": 1, - "__wglewSetGammaTableI3D": 2, - "wglSetGammaTableParametersI3D": 1, - "__wglewSetGammaTableParametersI3D": 2, - "WGLEW_I3D_gamma": 1, - "__WGLEW_I3D_gamma": 2, - "WGL_I3D_genlock": 2, - "WGL_GENLOCK_SOURCE_MULTIVIEW_I3D": 1, - "WGL_GENLOCK_SOURCE_EXTERNAL_SYNC_I3D": 1, - "WGL_GENLOCK_SOURCE_EXTERNAL_FIELD_I3D": 1, - "WGL_GENLOCK_SOURCE_EXTERNAL_TTL_I3D": 1, - "WGL_GENLOCK_SOURCE_DIGITAL_SYNC_I3D": 1, - "WGL_GENLOCK_SOURCE_DIGITAL_FIELD_I3D": 1, - "WGL_GENLOCK_SOURCE_EDGE_FALLING_I3D": 1, - "WGL_GENLOCK_SOURCE_EDGE_RISING_I3D": 1, - "WGL_GENLOCK_SOURCE_EDGE_BOTH_I3D": 1, - "PFNWGLDISABLEGENLOCKI3DPROC": 2, - "PFNWGLENABLEGENLOCKI3DPROC": 2, - "PFNWGLGENLOCKSAMPLERATEI3DPROC": 2, - "uRate": 2, - "PFNWGLGENLOCKSOURCEDELAYI3DPROC": 2, - "uDelay": 2, - "PFNWGLGENLOCKSOURCEEDGEI3DPROC": 2, - "uEdge": 2, - "PFNWGLGENLOCKSOURCEI3DPROC": 2, - "uSource": 2, - "PFNWGLGETGENLOCKSAMPLERATEI3DPROC": 2, - "PFNWGLGETGENLOCKSOURCEDELAYI3DPROC": 2, - "PFNWGLGETGENLOCKSOURCEEDGEI3DPROC": 2, - "PFNWGLGETGENLOCKSOURCEI3DPROC": 2, - "PFNWGLISENABLEDGENLOCKI3DPROC": 2, - "BOOL*": 3, - "pFlag": 3, - "PFNWGLQUERYGENLOCKMAXSOURCEDELAYI3DPROC": 2, - "uMaxLineDelay": 1, - "*uMaxPixelDelay": 1, - "wglDisableGenlockI3D": 1, - "__wglewDisableGenlockI3D": 2, - "wglEnableGenlockI3D": 1, - "__wglewEnableGenlockI3D": 2, - "wglGenlockSampleRateI3D": 1, - "__wglewGenlockSampleRateI3D": 2, - "wglGenlockSourceDelayI3D": 1, - "__wglewGenlockSourceDelayI3D": 2, - "wglGenlockSourceEdgeI3D": 1, - "__wglewGenlockSourceEdgeI3D": 2, - "wglGenlockSourceI3D": 1, - "__wglewGenlockSourceI3D": 2, - "wglGetGenlockSampleRateI3D": 1, - "__wglewGetGenlockSampleRateI3D": 2, - "wglGetGenlockSourceDelayI3D": 1, - "__wglewGetGenlockSourceDelayI3D": 2, - "wglGetGenlockSourceEdgeI3D": 1, - "__wglewGetGenlockSourceEdgeI3D": 2, - "wglGetGenlockSourceI3D": 1, - "__wglewGetGenlockSourceI3D": 2, - "wglIsEnabledGenlockI3D": 1, - "__wglewIsEnabledGenlockI3D": 2, - "wglQueryGenlockMaxSourceDelayI3D": 1, - "__wglewQueryGenlockMaxSourceDelayI3D": 2, - "WGLEW_I3D_genlock": 1, - "__WGLEW_I3D_genlock": 2, - "WGL_I3D_image_buffer": 2, - "WGL_IMAGE_BUFFER_MIN_ACCESS_I3D": 1, - "WGL_IMAGE_BUFFER_LOCK_I3D": 1, - "PFNWGLASSOCIATEIMAGEBUFFEREVENTSI3DPROC": 2, - "HANDLE*": 3, - "pEvent": 1, - "LPVOID": 3, - "*pAddress": 1, - "DWORD": 5, - "*pSize": 1, - "PFNWGLCREATEIMAGEBUFFERI3DPROC": 2, - "dwSize": 1, - "uFlags": 1, - "PFNWGLDESTROYIMAGEBUFFERI3DPROC": 2, - "pAddress": 2, - "PFNWGLRELEASEIMAGEBUFFEREVENTSI3DPROC": 2, - "LPVOID*": 1, - "wglAssociateImageBufferEventsI3D": 1, - "__wglewAssociateImageBufferEventsI3D": 2, - "wglCreateImageBufferI3D": 1, - "__wglewCreateImageBufferI3D": 2, - "wglDestroyImageBufferI3D": 1, - "__wglewDestroyImageBufferI3D": 2, - "wglReleaseImageBufferEventsI3D": 1, - "__wglewReleaseImageBufferEventsI3D": 2, - "WGLEW_I3D_image_buffer": 1, - "__WGLEW_I3D_image_buffer": 2, - "WGL_I3D_swap_frame_lock": 2, - "PFNWGLDISABLEFRAMELOCKI3DPROC": 2, - "PFNWGLENABLEFRAMELOCKI3DPROC": 2, - "PFNWGLISENABLEDFRAMELOCKI3DPROC": 2, - "PFNWGLQUERYFRAMELOCKMASTERI3DPROC": 2, - "wglDisableFrameLockI3D": 1, - "__wglewDisableFrameLockI3D": 2, - "wglEnableFrameLockI3D": 1, - "__wglewEnableFrameLockI3D": 2, - "wglIsEnabledFrameLockI3D": 1, - "__wglewIsEnabledFrameLockI3D": 2, - "wglQueryFrameLockMasterI3D": 1, - "__wglewQueryFrameLockMasterI3D": 2, - "WGLEW_I3D_swap_frame_lock": 1, - "__WGLEW_I3D_swap_frame_lock": 2, - "WGL_I3D_swap_frame_usage": 2, - "PFNWGLBEGINFRAMETRACKINGI3DPROC": 2, - "PFNWGLENDFRAMETRACKINGI3DPROC": 2, - "PFNWGLGETFRAMEUSAGEI3DPROC": 2, - "float*": 1, - "pUsage": 1, - "PFNWGLQUERYFRAMETRACKINGI3DPROC": 2, - "DWORD*": 1, - "pFrameCount": 1, - "*pMissedFrames": 1, - "*pLastMissedUsage": 1, - "wglBeginFrameTrackingI3D": 1, - "__wglewBeginFrameTrackingI3D": 2, - "wglEndFrameTrackingI3D": 1, - "__wglewEndFrameTrackingI3D": 2, - "wglGetFrameUsageI3D": 1, - "__wglewGetFrameUsageI3D": 2, - "wglQueryFrameTrackingI3D": 1, - "__wglewQueryFrameTrackingI3D": 2, - "WGLEW_I3D_swap_frame_usage": 1, - "__WGLEW_I3D_swap_frame_usage": 2, - "WGL_NV_DX_interop": 2, - "WGL_ACCESS_READ_ONLY_NV": 1, - "WGL_ACCESS_READ_WRITE_NV": 1, - "WGL_ACCESS_WRITE_DISCARD_NV": 1, - "PFNWGLDXCLOSEDEVICENVPROC": 2, - "hDevice": 9, - "PFNWGLDXLOCKOBJECTSNVPROC": 2, - "hObjects": 2, - "PFNWGLDXOBJECTACCESSNVPROC": 2, - "hObject": 2, - "access": 2, - "PFNWGLDXOPENDEVICENVPROC": 2, - "dxDevice": 1, - "PFNWGLDXREGISTEROBJECTNVPROC": 2, - "dxObject": 2, - "PFNWGLDXSETRESOURCESHAREHANDLENVPROC": 2, - "shareHandle": 1, - "PFNWGLDXUNLOCKOBJECTSNVPROC": 2, - "PFNWGLDXUNREGISTEROBJECTNVPROC": 2, - "wglDXCloseDeviceNV": 1, - "__wglewDXCloseDeviceNV": 2, - "wglDXLockObjectsNV": 1, - "__wglewDXLockObjectsNV": 2, - "wglDXObjectAccessNV": 1, - "__wglewDXObjectAccessNV": 2, - "wglDXOpenDeviceNV": 1, - "__wglewDXOpenDeviceNV": 2, - "wglDXRegisterObjectNV": 1, - "__wglewDXRegisterObjectNV": 2, - "wglDXSetResourceShareHandleNV": 1, - "__wglewDXSetResourceShareHandleNV": 2, - "wglDXUnlockObjectsNV": 1, - "__wglewDXUnlockObjectsNV": 2, - "wglDXUnregisterObjectNV": 1, - "__wglewDXUnregisterObjectNV": 2, - "WGLEW_NV_DX_interop": 1, - "__WGLEW_NV_DX_interop": 2, - "WGL_NV_copy_image": 2, - "PFNWGLCOPYIMAGESUBDATANVPROC": 2, - "hSrcRC": 1, - "srcName": 1, - "srcTarget": 1, - "srcLevel": 1, - "srcX": 1, - "srcY": 1, - "srcZ": 1, - "hDstRC": 1, - "dstName": 1, - "dstTarget": 1, - "dstLevel": 1, - "dstX": 1, - "dstY": 1, - "dstZ": 1, - "GLsizei": 4, - "wglCopyImageSubDataNV": 1, - "__wglewCopyImageSubDataNV": 2, - "WGLEW_NV_copy_image": 1, - "__WGLEW_NV_copy_image": 2, - "WGL_NV_float_buffer": 2, - "WGL_FLOAT_COMPONENTS_NV": 1, - "B0": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_R_NV": 1, - "B1": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RG_NV": 1, - "B2": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGB_NV": 1, - "B3": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGBA_NV": 1, - "B4": 1, - "WGL_TEXTURE_FLOAT_R_NV": 1, - "B5": 1, - "WGL_TEXTURE_FLOAT_RG_NV": 1, - "B6": 1, - "WGL_TEXTURE_FLOAT_RGB_NV": 1, - "B7": 1, - "WGL_TEXTURE_FLOAT_RGBA_NV": 1, - "B8": 1, - "WGLEW_NV_float_buffer": 1, - "__WGLEW_NV_float_buffer": 2, - "WGL_NV_gpu_affinity": 2, - "WGL_ERROR_INCOMPATIBLE_AFFINITY_MASKS_NV": 1, - "D0": 1, - "WGL_ERROR_MISSING_AFFINITY_MASK_NV": 1, - "D1": 1, - "HGPUNV": 5, - "_GPU_DEVICE": 1, - "cb": 1, - "CHAR": 2, - "DeviceName": 1, - "DeviceString": 1, - "Flags": 1, - "RECT": 1, - "rcVirtualScreen": 1, - "GPU_DEVICE": 1, - "*PGPU_DEVICE": 1, - "PFNWGLCREATEAFFINITYDCNVPROC": 2, - "*phGpuList": 1, - "PFNWGLDELETEDCNVPROC": 2, - "PFNWGLENUMGPUDEVICESNVPROC": 2, - "hGpu": 1, - "iDeviceIndex": 1, - "PGPU_DEVICE": 1, - "lpGpuDevice": 1, - "PFNWGLENUMGPUSFROMAFFINITYDCNVPROC": 2, - "hAffinityDC": 1, - "iGpuIndex": 2, - "*hGpu": 1, - "PFNWGLENUMGPUSNVPROC": 2, - "*phGpu": 1, - "wglCreateAffinityDCNV": 1, - "__wglewCreateAffinityDCNV": 2, - "wglDeleteDCNV": 1, - "__wglewDeleteDCNV": 2, - "wglEnumGpuDevicesNV": 1, - "__wglewEnumGpuDevicesNV": 2, - "wglEnumGpusFromAffinityDCNV": 1, - "__wglewEnumGpusFromAffinityDCNV": 2, - "wglEnumGpusNV": 1, - "__wglewEnumGpusNV": 2, - "WGLEW_NV_gpu_affinity": 1, - "__WGLEW_NV_gpu_affinity": 2, - "WGL_NV_multisample_coverage": 2, - "WGL_COVERAGE_SAMPLES_NV": 1, - "WGL_COLOR_SAMPLES_NV": 1, - "B9": 1, - "WGLEW_NV_multisample_coverage": 1, - "__WGLEW_NV_multisample_coverage": 2, - "WGL_NV_present_video": 2, - "WGL_NUM_VIDEO_SLOTS_NV": 1, - "F0": 1, - "HVIDEOOUTPUTDEVICENV": 2, - "PFNWGLBINDVIDEODEVICENVPROC": 2, - "hDc": 6, - "uVideoSlot": 2, - "hVideoDevice": 4, - "PFNWGLENUMERATEVIDEODEVICESNVPROC": 2, - "HVIDEOOUTPUTDEVICENV*": 1, - "phDeviceList": 2, - "PFNWGLQUERYCURRENTCONTEXTNVPROC": 2, - "wglBindVideoDeviceNV": 1, - "__wglewBindVideoDeviceNV": 2, - "wglEnumerateVideoDevicesNV": 1, - "__wglewEnumerateVideoDevicesNV": 2, - "wglQueryCurrentContextNV": 1, - "__wglewQueryCurrentContextNV": 2, - "WGLEW_NV_present_video": 1, - "__WGLEW_NV_present_video": 2, - "WGL_NV_render_depth_texture": 2, - "WGL_BIND_TO_TEXTURE_DEPTH_NV": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_DEPTH_NV": 1, - "WGL_DEPTH_TEXTURE_FORMAT_NV": 1, - "WGL_TEXTURE_DEPTH_COMPONENT_NV": 1, - "WGL_DEPTH_COMPONENT_NV": 1, - "WGLEW_NV_render_depth_texture": 1, - "__WGLEW_NV_render_depth_texture": 2, - "WGL_NV_render_texture_rectangle": 2, - "WGL_BIND_TO_TEXTURE_RECTANGLE_RGB_NV": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_RGBA_NV": 1, - "A1": 1, - "WGL_TEXTURE_RECTANGLE_NV": 1, - "WGLEW_NV_render_texture_rectangle": 1, - "__WGLEW_NV_render_texture_rectangle": 2, - "WGL_NV_swap_group": 2, - "PFNWGLBINDSWAPBARRIERNVPROC": 2, - "group": 3, - "barrier": 1, - "PFNWGLJOINSWAPGROUPNVPROC": 2, - "PFNWGLQUERYFRAMECOUNTNVPROC": 2, - "GLuint*": 3, - "PFNWGLQUERYMAXSWAPGROUPSNVPROC": 2, - "maxGroups": 1, - "*maxBarriers": 1, - "PFNWGLQUERYSWAPGROUPNVPROC": 2, - "*barrier": 1, - "PFNWGLRESETFRAMECOUNTNVPROC": 2, - "wglBindSwapBarrierNV": 1, - "__wglewBindSwapBarrierNV": 2, - "wglJoinSwapGroupNV": 1, - "__wglewJoinSwapGroupNV": 2, - "wglQueryFrameCountNV": 1, - "__wglewQueryFrameCountNV": 2, - "wglQueryMaxSwapGroupsNV": 1, - "__wglewQueryMaxSwapGroupsNV": 2, - "wglQuerySwapGroupNV": 1, - "__wglewQuerySwapGroupNV": 2, - "wglResetFrameCountNV": 1, - "__wglewResetFrameCountNV": 2, - "WGLEW_NV_swap_group": 1, - "__WGLEW_NV_swap_group": 2, - "WGL_NV_vertex_array_range": 2, - "PFNWGLALLOCATEMEMORYNVPROC": 2, - "GLfloat": 3, - "readFrequency": 1, - "writeFrequency": 1, - "priority": 1, - "PFNWGLFREEMEMORYNVPROC": 2, - "*pointer": 1, - "wglAllocateMemoryNV": 1, - "__wglewAllocateMemoryNV": 2, - "wglFreeMemoryNV": 1, - "__wglewFreeMemoryNV": 2, - "WGLEW_NV_vertex_array_range": 1, - "__WGLEW_NV_vertex_array_range": 2, - "WGL_NV_video_capture": 2, - "WGL_UNIQUE_ID_NV": 1, - "CE": 1, - "WGL_NUM_VIDEO_CAPTURE_SLOTS_NV": 1, - "CF": 1, - "HVIDEOINPUTDEVICENV": 5, - "PFNWGLBINDVIDEOCAPTUREDEVICENVPROC": 2, - "PFNWGLENUMERATEVIDEOCAPTUREDEVICESNVPROC": 2, - "HVIDEOINPUTDEVICENV*": 1, - "PFNWGLLOCKVIDEOCAPTUREDEVICENVPROC": 2, - "PFNWGLQUERYVIDEOCAPTUREDEVICENVPROC": 2, - "PFNWGLRELEASEVIDEOCAPTUREDEVICENVPROC": 2, - "wglBindVideoCaptureDeviceNV": 1, - "__wglewBindVideoCaptureDeviceNV": 2, - "wglEnumerateVideoCaptureDevicesNV": 1, - "__wglewEnumerateVideoCaptureDevicesNV": 2, - "wglLockVideoCaptureDeviceNV": 1, - "__wglewLockVideoCaptureDeviceNV": 2, - "wglQueryVideoCaptureDeviceNV": 1, - "__wglewQueryVideoCaptureDeviceNV": 2, - "wglReleaseVideoCaptureDeviceNV": 1, - "__wglewReleaseVideoCaptureDeviceNV": 2, - "WGLEW_NV_video_capture": 1, - "__WGLEW_NV_video_capture": 2, - "WGL_NV_video_output": 2, - "WGL_BIND_TO_VIDEO_RGB_NV": 1, - "WGL_BIND_TO_VIDEO_RGBA_NV": 1, - "C1": 1, - "WGL_BIND_TO_VIDEO_RGB_AND_DEPTH_NV": 1, - "C2": 1, - "WGL_VIDEO_OUT_COLOR_NV": 1, - "C3": 1, - "WGL_VIDEO_OUT_ALPHA_NV": 1, - "C4": 1, - "WGL_VIDEO_OUT_DEPTH_NV": 1, - "C5": 1, - "WGL_VIDEO_OUT_COLOR_AND_ALPHA_NV": 1, - "C6": 1, - "WGL_VIDEO_OUT_COLOR_AND_DEPTH_NV": 1, - "C7": 1, - "WGL_VIDEO_OUT_FRAME": 1, - "C8": 1, - "WGL_VIDEO_OUT_FIELD_1": 1, - "C9": 1, - "WGL_VIDEO_OUT_FIELD_2": 1, - "CA": 1, - "WGL_VIDEO_OUT_STACKED_FIELDS_1_2": 1, - "CB": 1, - "WGL_VIDEO_OUT_STACKED_FIELDS_2_1": 1, - "CC": 1, - "HPVIDEODEV": 4, - "PFNWGLBINDVIDEOIMAGENVPROC": 2, - "iVideoBuffer": 2, - "PFNWGLGETVIDEODEVICENVPROC": 2, - "numDevices": 1, - "HPVIDEODEV*": 1, - "PFNWGLGETVIDEOINFONVPROC": 2, - "hpVideoDevice": 1, - "long*": 2, - "pulCounterOutputPbuffer": 1, - "*pulCounterOutputVideo": 1, - "PFNWGLRELEASEVIDEODEVICENVPROC": 2, - "PFNWGLRELEASEVIDEOIMAGENVPROC": 2, - "PFNWGLSENDPBUFFERTOVIDEONVPROC": 2, - "iBufferType": 1, - "pulCounterPbuffer": 1, - "bBlock": 1, - "wglBindVideoImageNV": 1, - "__wglewBindVideoImageNV": 2, - "wglGetVideoDeviceNV": 1, - "__wglewGetVideoDeviceNV": 2, - "wglGetVideoInfoNV": 1, - "__wglewGetVideoInfoNV": 2, - "wglReleaseVideoDeviceNV": 1, - "__wglewReleaseVideoDeviceNV": 2, - "wglReleaseVideoImageNV": 1, - "__wglewReleaseVideoImageNV": 2, - "wglSendPbufferToVideoNV": 1, - "__wglewSendPbufferToVideoNV": 2, - "WGLEW_NV_video_output": 1, - "__WGLEW_NV_video_output": 2, - "WGL_OML_sync_control": 2, - "PFNWGLGETMSCRATEOMLPROC": 2, - "INT32*": 1, - "numerator": 1, - "INT32": 1, - "*denominator": 1, - "PFNWGLGETSYNCVALUESOMLPROC": 2, - "INT64*": 3, - "INT64": 18, - "*msc": 3, - "*sbc": 3, - "PFNWGLSWAPBUFFERSMSCOMLPROC": 2, - "target_msc": 3, - "divisor": 3, - "remainder": 3, - "PFNWGLSWAPLAYERBUFFERSMSCOMLPROC": 2, - "fuPlanes": 1, - "PFNWGLWAITFORMSCOMLPROC": 2, - "PFNWGLWAITFORSBCOMLPROC": 2, - "target_sbc": 1, - "wglGetMscRateOML": 1, - "__wglewGetMscRateOML": 2, - "wglGetSyncValuesOML": 1, - "__wglewGetSyncValuesOML": 2, - "wglSwapBuffersMscOML": 1, - "__wglewSwapBuffersMscOML": 2, - "wglSwapLayerBuffersMscOML": 1, - "__wglewSwapLayerBuffersMscOML": 2, - "wglWaitForMscOML": 1, - "__wglewWaitForMscOML": 2, - "wglWaitForSbcOML": 1, - "__wglewWaitForSbcOML": 2, - "WGLEW_OML_sync_control": 1, - "__WGLEW_OML_sync_control": 2, - "GLEW_MX": 4, - "WGLEW_EXPORT": 167, - "GLEWAPI": 6, - "WGLEWContextStruct": 2, - "WGLEWContext": 1, - "wglewContextInit": 2, - "WGLEWContext*": 2, - "wglewContextIsSupported": 2, - "wglewInit": 1, - "wglewGetContext": 4, - "wglewIsSupported": 2, - "wglewGetExtension": 1, - "yajl_status_to_string": 1, - "yajl_status": 4, - "statStr": 6, - "yajl_status_ok": 1, - "yajl_status_client_canceled": 1, - "yajl_status_insufficient_data": 1, - "yajl_status_error": 1, - "yajl_handle": 10, - "yajl_alloc": 1, - "yajl_callbacks": 1, - "callbacks": 3, - "yajl_parser_config": 1, - "config": 4, - "yajl_alloc_funcs": 3, - "afs": 8, - "allowComments": 4, - "validateUTF8": 3, - "hand": 28, - "afsBuffer": 3, - "realloc": 1, - "yajl_set_default_alloc_funcs": 1, - "YA_MALLOC": 1, - "yajl_handle_t": 1, - "alloc": 6, - "checkUTF8": 1, - "lexer": 4, - "yajl_lex_alloc": 1, - "bytesConsumed": 2, - "decodeBuf": 2, - "yajl_buf_alloc": 1, - "yajl_bs_init": 1, - "stateStack": 3, - "yajl_bs_push": 1, - "yajl_state_start": 1, - "yajl_reset_parser": 1, - "yajl_lex_realloc": 1, - "yajl_free": 1, - "yajl_bs_free": 1, - "yajl_buf_free": 1, - "yajl_lex_free": 1, - "YA_FREE": 2, - "yajl_parse": 2, - "jsonText": 4, - "jsonTextLen": 4, - "yajl_do_parse": 1, - "yajl_parse_complete": 1, - "yajl_get_error": 1, - "verbose": 2, - "yajl_render_error_string": 1, - "yajl_get_bytes_consumed": 1, - "yajl_free_error": 1 - }, - "C#": { - "@": 1, - "{": 5, - "ViewBag.Title": 1, - ";": 8, - "}": 5, - "@section": 1, - "featured": 1, - "
": 1, - "class=": 7, - "
": 1, - "
": 1, - "

": 1, - "@ViewBag.Title.": 1, - "

": 1, - "

": 1, - "@ViewBag.Message": 1, - "

": 1, - "
": 1, - "

": 1, - "To": 1, - "learn": 1, - "more": 4, - "about": 2, - "ASP.NET": 5, - "MVC": 4, - "visit": 2, - "": 5, - "href=": 5, - "title=": 2, - "http": 1, - "//asp.net/mvc": 1, - "": 5, - ".": 2, - "The": 1, - "page": 1, - "features": 3, - "": 1, - "videos": 1, - "tutorials": 1, - "and": 6, - "samples": 1, - "": 1, - "to": 4, - "help": 1, - "you": 4, - "get": 1, - "the": 5, - "most": 1, - "from": 1, - "MVC.": 1, - "If": 1, - "have": 1, - "any": 1, - "questions": 1, - "our": 1, - "forums": 1, - "

": 1, - "
": 1, - "
": 1, - "

": 1, - "We": 1, - "suggest": 1, - "following": 1, - "

": 1, - "
    ": 1, - "
  1. ": 3, - "
    ": 3, - "Getting": 1, - "Started": 1, - "
    ": 3, - "gives": 2, - "a": 3, - "powerful": 1, - "patterns": 1, - "-": 3, - "based": 1, - "way": 1, - "build": 1, - "dynamic": 1, - "websites": 1, - "that": 5, - "enables": 1, - "clean": 1, - "separation": 1, - "of": 2, - "concerns": 1, - "full": 1, - "control": 1, - "over": 1, - "markup": 1, - "for": 4, - "enjoyable": 1, - "agile": 1, - "development.": 1, - "includes": 1, - "many": 1, - "enable": 1, - "fast": 1, - "TDD": 1, - "friendly": 1, - "development": 1, - "creating": 1, - "sophisticated": 1, - "applications": 1, - "use": 1, - "latest": 1, - "web": 2, - "standards.": 1, - "Learn": 3, - "
  2. ": 3, - "Add": 1, - "NuGet": 2, - "packages": 1, - "jump": 1, - "start": 1, - "your": 2, - "coding": 1, - "makes": 1, - "it": 2, - "easy": 1, - "install": 1, - "update": 1, - "free": 1, - "libraries": 1, - "tools.": 1, - "Find": 1, - "Web": 1, - "Hosting": 1, - "You": 1, - "can": 1, - "easily": 1, - "find": 1, - "hosting": 1, - "company": 1, - "offers": 1, - "right": 1, - "mix": 1, - "price": 1, - "applications.": 1, - "
": 1, - "using": 5, - "System": 1, - "System.Collections.Generic": 1, - "System.Linq": 1, - "System.Text": 1, - "System.Threading.Tasks": 1, - "namespace": 1, - "LittleSampleApp": 1, - "///": 4, - "": 1, - "Just": 1, - "what": 1, - "says": 1, "on": 1, - "tin.": 1, - "A": 1, - "little": 1, - "sample": 1, - "application": 1, - "Linguist": 1, - "try": 1, - "out.": 1, - "": 1, - "class": 1, - "Program": 1, - "static": 1, - "void": 1, - "Main": 1, - "(": 3, - "string": 1, - "[": 1, - "]": 1, - "args": 1, - ")": 3, - "Console.WriteLine": 2 - }, - "C++": { - "class": 40, - "Bar": 2, - "{": 726, - "protected": 4, - "char": 127, - "*name": 6, - ";": 2783, - "public": 33, - "void": 241, - "hello": 2, - "(": 3102, - ")": 3105, - "}": 726, - "//": 315, - "///": 843, - "mainpage": 1, - "C": 6, - "library": 14, - "for": 105, - "Broadcom": 3, - "BCM": 14, - "as": 28, - "used": 17, - "in": 165, - "Raspberry": 6, - "Pi": 5, - "This": 19, - "is": 102, - "a": 157, - "RPi": 17, - ".": 16, - "It": 7, - "provides": 3, - "access": 17, - "to": 254, - "GPIO": 87, - "and": 118, - "other": 17, - "IO": 2, - "functions": 19, - "on": 55, - "the": 541, - "chip": 9, - "allowing": 3, - "pins": 40, - "pin": 90, - "IDE": 4, - "plug": 3, - "board": 2, - "so": 2, - "you": 29, - "can": 21, - "control": 17, - "interface": 9, - "with": 33, - "various": 4, - "external": 3, - "devices.": 1, - "reading": 3, - "digital": 2, - "inputs": 2, - "setting": 2, - "outputs": 1, - "using": 11, - "SPI": 44, - "I2C": 29, - "accessing": 2, - "system": 13, - "timers.": 1, - "Pin": 65, - "event": 3, - "detection": 2, - "supported": 3, - "by": 53, - "polling": 1, - "interrupts": 1, - "are": 36, - "not": 29, - "+": 80, - "compatible": 1, - "installs": 1, - "header": 7, - "file": 31, - "non": 2, - "-": 438, - "shared": 2, - "any": 23, - "Linux": 2, - "based": 4, - "distro": 1, - "but": 5, - "clearly": 1, - "no": 7, - "use": 37, - "except": 2, - "or": 44, - "another": 1, - "The": 50, - "version": 38, - "of": 215, - "package": 1, - "that": 36, - "this": 57, - "documentation": 3, - "refers": 1, - "be": 35, - "downloaded": 1, - "from": 91, - "http": 11, - "//www.airspayce.com/mikem/bcm2835/bcm2835": 1, - "tar.gz": 1, - "You": 9, - "find": 2, - "latest": 2, - "at": 20, - "//www.airspayce.com/mikem/bcm2835": 1, - "Several": 1, - "example": 3, - "programs": 4, - "provided.": 1, - "Based": 1, - "data": 26, - "//elinux.org/RPi_Low": 1, - "level_peripherals": 1, - "//www.raspberrypi.org/wp": 1, - "content/uploads/2012/02/BCM2835": 1, - "ARM": 5, - "Peripherals.pdf": 1, - "//www.scribd.com/doc/101830961/GPIO": 2, - "Pads": 3, - "Control2": 2, - "also": 3, - "online": 1, - "help": 1, - "discussion": 1, - "//groups.google.com/group/bcm2835": 1, - "Please": 4, - "group": 23, - "all": 11, - "questions": 1, - "discussions": 1, - "topic.": 1, - "Do": 1, - "contact": 1, - "author": 3, - "directly": 2, - "unless": 1, - "it": 19, - "discuss": 1, - "commercial": 1, - "licensing.": 1, - "Tested": 1, - "debian6": 1, - "wheezy": 3, - "raspbian": 3, - "Occidentalisv01": 2, - "CAUTION": 1, - "has": 29, - "been": 14, - "observed": 1, - "when": 22, - "detect": 3, - "enables": 3, - "such": 4, - "bcm2835_gpio_len": 5, - "pulled": 1, - "LOW": 8, - "cause": 1, - "temporary": 1, - "hangs": 1, - "Occidentalisv01.": 1, - "Reason": 1, - "yet": 1, - "determined": 1, - "suspect": 1, - "an": 23, - "interrupt": 3, - "handler": 1, - "hitting": 1, - "hard": 1, - "loop": 2, - "those": 3, - "OSs.": 1, - "If": 11, - "must": 6, - "friends": 2, - "make": 6, - "sure": 6, - "disable": 2, - "bcm2835_gpio_cler_len": 1, - "after": 18, - "use.": 1, - "par": 9, - "Installation": 1, - "consists": 1, - "single": 2, - "which": 14, - "will": 15, - "installed": 1, - "usual": 3, - "places": 1, - "install": 3, - "code": 12, - "#": 1, - "download": 2, - "say": 1, - "bcm2835": 7, - "xx.tar.gz": 2, - "then": 15, - "tar": 1, - "zxvf": 1, - "cd": 1, - "xx": 2, - "./configure": 1, - "sudo": 2, - "check": 4, - "endcode": 2, - "Physical": 21, - "Addresses": 6, - "bcm2835_peri_read": 3, - "bcm2835_peri_write": 3, - "bcm2835_peri_set_bits": 2, - "low": 5, - "level": 10, - "peripheral": 14, - "register": 17, - "functions.": 4, - "They": 1, - "designed": 3, - "physical": 4, - "addresses": 4, - "described": 1, - "section": 6, - "BCM2835": 2, - "Peripherals": 1, - "manual.": 1, - "range": 3, - "FFFFFF": 1, - "peripherals.": 1, - "bus": 4, - "peripherals": 2, - "set": 18, - "up": 18, - "map": 3, - "onto": 1, - "address": 13, - "starting": 1, - "E000000.": 1, - "Thus": 1, - "advertised": 1, - "manual": 8, - "Ennnnnn": 1, - "available": 6, - "nnnnnn.": 1, - "base": 8, - "registers": 12, - "following": 2, - "externals": 1, - "bcm2835_gpio": 2, - "bcm2835_pwm": 2, - "bcm2835_clk": 2, - "bcm2835_pads": 2, - "bcm2835_spio0": 1, - "bcm2835_st": 1, - "bcm2835_bsc0": 1, - "bcm2835_bsc1": 1, - "Numbering": 1, - "numbering": 1, - "different": 5, - "inconsistent": 1, - "underlying": 4, - "numbering.": 1, - "//elinux.org/RPi_BCM2835_GPIOs": 1, - "some": 4, - "well": 1, - "power": 1, - "ground": 1, - "pins.": 1, - "Not": 4, - "header.": 1, - "Version": 40, - "P5": 6, - "connector": 1, - "V": 2, - "Gnd.": 1, - "passed": 4, - "number": 52, - "_not_": 1, - "number.": 1, - "There": 1, - "symbolic": 1, - "definitions": 3, - "each": 7, - "should": 10, - "convenience.": 1, - "See": 7, - "ref": 32, - "RPiGPIOPin.": 22, - "Pins": 2, - "bcm2835_spi_*": 1, - "allow": 5, - "SPI0": 17, - "send": 3, - "received": 3, - "Serial": 3, - "Peripheral": 6, - "Interface": 2, - "For": 6, - "more": 4, - "information": 3, - "about": 6, - "see": 14, - "//en.wikipedia.org/wiki/Serial_Peripheral_Interface_Bus": 1, - "When": 12, - "bcm2835_spi_begin": 3, - "called": 13, - "changes": 2, - "bahaviour": 1, - "their": 6, - "default": 14, - "behaviour": 1, - "order": 14, - "support": 4, - "SPI.": 1, - "While": 1, - "able": 2, - "state": 33, - "through": 4, - "bcm2835_spi_gpio_write": 1, - "bcm2835_spi_end": 4, - "revert": 1, - "configured": 1, - "controled": 1, - "bcm2835_gpio_*": 1, - "calls.": 1, - "P1": 56, - "MOSI": 8, - "MISO": 6, - "CLK": 6, - "CE0": 5, - "CE1": 6, - "bcm2835_i2c_*": 2, - "BSC": 10, - "generically": 1, - "referred": 1, - "I": 4, - "//en.wikipedia.org/wiki/I": 1, - "%": 7, - "C2": 1, - "B2C": 1, - "V2": 2, - "SDA": 3, - "SLC": 1, - "Real": 1, - "Time": 1, - "performance": 2, - "constraints": 2, - "user": 3, - "i.e.": 1, - "they": 2, - "run": 2, - "Such": 1, - "part": 1, - "kernel": 4, - "usually": 2, - "subject": 1, - "paging": 1, - "swapping": 2, - "while": 17, - "does": 4, - "things": 1, - "besides": 1, - "running": 1, - "your": 12, - "program.": 1, - "means": 8, - "expect": 2, - "get": 5, - "real": 4, - "time": 10, - "timing": 3, - "programs.": 1, - "In": 2, - "particular": 1, - "there": 4, - "guarantee": 1, - "bcm2835_delay": 5, - "bcm2835_delayMicroseconds": 6, - "return": 240, - "exactly": 2, - "requested.": 1, - "fact": 2, - "depending": 1, - "activity": 1, - "host": 1, - "etc": 1, - "might": 1, - "significantly": 1, - "longer": 1, - "delay": 9, - "times": 2, - "than": 6, - "one": 73, - "asked": 1, - "for.": 1, - "So": 1, - "please": 2, - "dont": 1, - "request.": 1, - "Arjan": 2, - "reports": 1, - "prevent": 4, - "fragment": 2, - "struct": 13, - "sched_param": 1, - "sp": 4, - "memset": 3, - "&": 203, - "sizeof": 15, - "sp.sched_priority": 1, - "sched_get_priority_max": 1, - "SCHED_FIFO": 2, - "sched_setscheduler": 1, - "mlockall": 1, - "MCL_CURRENT": 1, - "|": 40, - "MCL_FUTURE": 1, - "Open": 2, - "Source": 2, - "Licensing": 2, - "GPL": 2, - "appropriate": 7, - "option": 1, - "if": 359, - "want": 5, - "share": 2, - "source": 12, - "application": 2, - "everyone": 1, - "distribute": 1, - "give": 2, - "them": 1, - "right": 9, - "who": 1, - "uses": 4, - "it.": 3, - "wish": 2, - "software": 1, - "under": 2, - "contribute": 1, - "open": 6, - "community": 1, - "accordance": 1, - "distributed.": 1, - "//www.gnu.org/copyleft/gpl.html": 1, - "COPYING": 1, - "Acknowledgements": 1, - "Some": 1, - "inspired": 2, - "Dom": 1, - "Gert.": 1, - "Alan": 1, - "Barr.": 1, - "Revision": 1, - "History": 1, - "Initial": 1, - "release": 1, - "Minor": 1, - "bug": 1, - "fixes": 1, - "Added": 11, - "bcm2835_spi_transfern": 3, - "Fixed": 4, - "problem": 2, - "prevented": 1, - "being": 4, - "used.": 2, - "Reported": 5, - "David": 1, - "Robinson.": 1, - "bcm2835_close": 4, - "deinit": 1, - "library.": 3, - "Suggested": 1, - "sar": 1, - "Ortiz": 1, - "Document": 1, - "testing": 2, - "Functions": 1, - "bcm2835_gpio_ren": 3, - "bcm2835_gpio_fen": 3, - "bcm2835_gpio_hen": 3, - "bcm2835_gpio_aren": 3, - "bcm2835_gpio_afen": 3, - "now": 4, - "only": 6, - "specified.": 1, - "Other": 1, - "were": 1, - "already": 1, - "previously": 10, - "enabled": 4, - "stay": 1, - "enabled.": 1, - "bcm2835_gpio_clr_ren": 2, - "bcm2835_gpio_clr_fen": 2, - "bcm2835_gpio_clr_hen": 2, - "bcm2835_gpio_clr_len": 2, - "bcm2835_gpio_clr_aren": 2, - "bcm2835_gpio_clr_afen": 2, - "clear": 3, - "enable": 3, - "individual": 1, - "suggested": 3, - "Andreas": 1, - "Sundstrom.": 1, - "bcm2835_spi_transfernb": 2, - "buffers": 3, - "read": 21, - "write.": 1, - "Improvements": 3, - "barrier": 3, - "maddin.": 1, - "contributed": 1, - "mikew": 1, - "noticed": 1, - "was": 6, - "mallocing": 1, - "memory": 14, - "mmaps": 1, - "/dev/mem.": 1, - "ve": 4, - "removed": 1, - "mallocs": 1, - "frees": 1, - "found": 1, - "calling": 9, - "nanosleep": 7, - "takes": 1, - "least": 2, - "us.": 1, - "need": 6, - "link": 3, - "version.": 1, - "s": 26, - "doc": 1, - "Also": 1, - "added": 2, - "define": 2, - "passwrd": 1, - "value": 50, - "Gert": 1, - "says": 1, - "needed": 3, - "change": 3, - "pad": 4, - "settings.": 1, - "Changed": 1, - "names": 3, - "collisions": 1, - "wiringPi.": 1, - "Macros": 2, - "delayMicroseconds": 3, - "disabled": 2, - "defining": 1, - "BCM2835_NO_DELAY_COMPATIBILITY": 2, - "incorrect": 2, - "New": 6, - "mapping": 3, - "Hardware": 1, - "pointers": 2, - "initialisation": 2, - "externally": 1, - "bcm2835_spi0.": 1, - "Now": 4, - "compiles": 1, - "even": 2, - "CLOCK_MONOTONIC_RAW": 1, - "CLOCK_MONOTONIC": 3, - "instead.": 1, - "errors": 1, - "divider": 15, - "frequencies": 2, - "MHz": 14, - "clock.": 6, - "Ben": 1, - "Simpson.": 1, - "end": 23, - "examples": 1, - "Mark": 5, - "Wolfe.": 1, - "bcm2835_gpio_set_multi": 2, - "bcm2835_gpio_clr_multi": 2, - "bcm2835_gpio_write_multi": 4, - "mask": 20, - "once.": 1, - "Requested": 2, - "Sebastian": 2, - "Loncar.": 2, - "bcm2835_gpio_write_mask.": 1, - "Changes": 1, - "timer": 2, - "counter": 1, - "instead": 4, - "clock_gettime": 1, - "improved": 1, - "accuracy.": 1, - "No": 2, - "lrt": 1, - "now.": 1, - "Contributed": 1, - "van": 1, - "Vught.": 1, - "Removed": 1, - "inlines": 1, - "previous": 6, - "patch": 1, - "since": 3, - "don": 1, - "t": 15, - "seem": 1, - "work": 1, - "everywhere.": 1, - "olly.": 1, - "Patch": 2, - "Dootson": 2, - "close": 7, - "/dev/mem": 4, - "granted.": 1, - "susceptible": 1, - "bit": 19, - "overruns.": 1, - "courtesy": 1, - "Jeremy": 1, - "Mortis.": 1, - "definition": 3, - "BCM2835_GPFEN0": 2, - "broke": 1, - "ability": 1, - "falling": 4, - "edge": 8, - "events.": 1, - "Dootson.": 2, - "bcm2835_i2c_set_baudrate": 2, - "bcm2835_i2c_read_register_rs.": 1, - "bcm2835_i2c_read": 4, - "bcm2835_i2c_write": 4, - "fix": 1, - "ocasional": 1, - "reads": 2, - "completing.": 1, - "Patched": 1, - "p": 6, - "[": 293, - "atched": 1, - "his": 1, - "submitted": 1, - "high": 5, - "load": 1, - "processes.": 1, - "Updated": 1, - "distribution": 1, - "location": 6, - "details": 1, - "airspayce.com": 1, - "missing": 1, - "unmapmem": 1, - "pads": 7, - "leak.": 1, - "Hartmut": 1, - "Henkel.": 1, - "Mike": 1, - "McCauley": 1, - "mikem@airspayce.com": 1, - "DO": 1, - "NOT": 3, - "CONTACT": 1, - "THE": 2, - "AUTHOR": 1, - "DIRECTLY": 1, - "USE": 1, - "LISTS": 1, - "#ifndef": 29, - "BCM2835_H": 3, - "#define": 343, - "#include": 129, - "": 2, - "defgroup": 7, - "constants": 1, - "Constants": 1, - "passing": 1, - "values": 3, - "here": 1, - "@": 14, - "HIGH": 12, - "true": 49, - "volts": 2, - "pin.": 21, - "false": 48, - "Speed": 1, - "core": 1, - "clock": 21, - "core_clk": 1, - "BCM2835_CORE_CLK_HZ": 1, - "<": 255, - "Base": 17, - "Address": 10, - "BCM2835_PERI_BASE": 9, - "System": 10, - "Timer": 9, - "BCM2835_ST_BASE": 1, - "BCM2835_GPIO_PADS": 2, - "Clock/timer": 1, - "BCM2835_CLOCK_BASE": 1, - "BCM2835_GPIO_BASE": 6, - "BCM2835_SPI0_BASE": 1, - "BSC0": 2, - "BCM2835_BSC0_BASE": 1, - "PWM": 2, - "BCM2835_GPIO_PWM": 1, - "C000": 1, - "BSC1": 2, - "BCM2835_BSC1_BASE": 1, - "ST": 1, - "registers.": 10, - "Available": 8, - "bcm2835_init": 11, - "extern": 72, - "volatile": 13, - "uint32_t": 39, - "*bcm2835_st": 1, - "*bcm2835_gpio": 1, - "*bcm2835_pwm": 1, - "*bcm2835_clk": 1, - "PADS": 1, - "*bcm2835_pads": 1, - "*bcm2835_spi0": 1, - "*bcm2835_bsc0": 1, - "*bcm2835_bsc1": 1, - "Size": 2, - "page": 5, - "BCM2835_PAGE_SIZE": 1, - "*1024": 2, - "block": 7, - "BCM2835_BLOCK_SIZE": 1, - "offsets": 2, - "BCM2835_GPIO_BASE.": 1, - "Offsets": 1, - "into": 6, - "bytes": 29, - "per": 3, - "Register": 1, - "View": 1, - "BCM2835_GPFSEL0": 1, - "Function": 8, - "Select": 49, - "BCM2835_GPFSEL1": 1, - "BCM2835_GPFSEL2": 1, - "BCM2835_GPFSEL3": 1, - "c": 72, - "BCM2835_GPFSEL4": 1, - "BCM2835_GPFSEL5": 1, - "BCM2835_GPSET0": 1, - "Output": 6, - "Set": 2, - "BCM2835_GPSET1": 1, - "BCM2835_GPCLR0": 1, - "Clear": 18, - "BCM2835_GPCLR1": 1, - "BCM2835_GPLEV0": 1, - "Level": 2, - "BCM2835_GPLEV1": 1, - "BCM2835_GPEDS0": 1, - "Event": 11, - "Detect": 35, - "Status": 6, - "BCM2835_GPEDS1": 1, - "BCM2835_GPREN0": 1, - "Rising": 8, - "Edge": 16, - "Enable": 38, - "BCM2835_GPREN1": 1, - "Falling": 8, - "BCM2835_GPFEN1": 1, - "BCM2835_GPHEN0": 1, - "High": 4, - "BCM2835_GPHEN1": 1, - "BCM2835_GPLEN0": 1, - "Low": 5, - "BCM2835_GPLEN1": 1, - "BCM2835_GPAREN0": 1, - "Async.": 4, - "BCM2835_GPAREN1": 1, - "BCM2835_GPAFEN0": 1, - "BCM2835_GPAFEN1": 1, - "BCM2835_GPPUD": 1, - "Pull": 11, - "up/down": 10, - "BCM2835_GPPUDCLK0": 1, - "Clock": 11, - "BCM2835_GPPUDCLK1": 1, - "brief": 12, - "bcm2835PortFunction": 1, - "Port": 1, - "function": 19, - "select": 9, - "modes": 1, - "bcm2835_gpio_fsel": 2, - "typedef": 50, - "enum": 17, - "BCM2835_GPIO_FSEL_INPT": 1, - "b000": 1, - "Input": 2, - "BCM2835_GPIO_FSEL_OUTP": 1, - "b001": 1, - "BCM2835_GPIO_FSEL_ALT0": 1, - "b100": 1, - "Alternate": 6, - "BCM2835_GPIO_FSEL_ALT1": 1, - "b101": 1, - "BCM2835_GPIO_FSEL_ALT2": 1, - "b110": 1, - "BCM2835_GPIO_FSEL_ALT3": 1, - "b111": 2, - "BCM2835_GPIO_FSEL_ALT4": 1, - "b011": 1, - "BCM2835_GPIO_FSEL_ALT5": 1, - "b010": 1, - "BCM2835_GPIO_FSEL_MASK": 1, - "bits": 11, - "bcm2835FunctionSelect": 2, - "bcm2835PUDControl": 4, - "Pullup/Pulldown": 1, - "defines": 3, - "bcm2835_gpio_pud": 5, - "BCM2835_GPIO_PUD_OFF": 1, - "b00": 1, - "Off": 3, - "pull": 1, - "BCM2835_GPIO_PUD_DOWN": 1, - "b01": 1, - "Down": 1, - "BCM2835_GPIO_PUD_UP": 1, - "b10": 1, - "Up": 1, - "Pad": 11, - "BCM2835_PADS_GPIO_0_27": 1, - "BCM2835_PADS_GPIO_28_45": 1, - "BCM2835_PADS_GPIO_46_53": 1, - "Control": 6, - "masks": 1, - "BCM2835_PAD_PASSWRD": 1, - "A": 7, - "<<": 29, - "Password": 1, - "BCM2835_PAD_SLEW_RATE_UNLIMITED": 1, - "Slew": 1, - "rate": 3, - "unlimited": 1, - "BCM2835_PAD_HYSTERESIS_ENABLED": 1, - "Hysteresis": 1, - "BCM2835_PAD_DRIVE_2mA": 1, - "mA": 8, - "drive": 8, - "current": 26, - "BCM2835_PAD_DRIVE_4mA": 1, - "BCM2835_PAD_DRIVE_6mA": 1, - "BCM2835_PAD_DRIVE_8mA": 1, - "BCM2835_PAD_DRIVE_10mA": 1, - "BCM2835_PAD_DRIVE_12mA": 1, - "BCM2835_PAD_DRIVE_14mA": 1, - "BCM2835_PAD_DRIVE_16mA": 1, - "bcm2835PadGroup": 4, - "specification": 1, - "bcm2835_gpio_pad": 2, - "BCM2835_PAD_GROUP_GPIO_0_27": 1, - "BCM2835_PAD_GROUP_GPIO_28_45": 1, - "BCM2835_PAD_GROUP_GPIO_46_53": 1, - "Numbers": 1, - "Here": 1, - "we": 10, - "terms": 4, - "numbers.": 1, - "These": 6, - "requiring": 1, - "bin": 1, - "connected": 1, - "adopt": 1, - "alternate": 7, - "function.": 3, - "slightly": 1, - "pinouts": 1, - "these": 1, - "RPI_V2_*.": 1, - "At": 1, - "bootup": 1, - "UART0_TXD": 3, - "UART0_RXD": 3, - "ie": 3, - "alt0": 1, - "respectively": 1, - "dedicated": 1, - "cant": 1, - "controlled": 1, - "independently": 1, - "RPI_GPIO_P1_03": 6, - "RPI_GPIO_P1_05": 6, - "RPI_GPIO_P1_07": 1, - "RPI_GPIO_P1_08": 1, - "defaults": 4, - "alt": 4, - "RPI_GPIO_P1_10": 1, - "RPI_GPIO_P1_11": 1, - "RPI_GPIO_P1_12": 1, - "RPI_GPIO_P1_13": 1, - "RPI_GPIO_P1_15": 1, - "RPI_GPIO_P1_16": 1, - "RPI_GPIO_P1_18": 1, - "RPI_GPIO_P1_19": 1, - "RPI_GPIO_P1_21": 1, - "RPI_GPIO_P1_22": 1, - "RPI_GPIO_P1_23": 1, - "RPI_GPIO_P1_24": 1, - "RPI_GPIO_P1_26": 1, - "RPI_V2_GPIO_P1_03": 1, - "RPI_V2_GPIO_P1_05": 1, - "RPI_V2_GPIO_P1_07": 1, - "RPI_V2_GPIO_P1_08": 1, - "RPI_V2_GPIO_P1_10": 1, - "RPI_V2_GPIO_P1_11": 1, - "RPI_V2_GPIO_P1_12": 1, - "RPI_V2_GPIO_P1_13": 1, - "RPI_V2_GPIO_P1_15": 1, - "RPI_V2_GPIO_P1_16": 1, - "RPI_V2_GPIO_P1_18": 1, - "RPI_V2_GPIO_P1_19": 1, - "RPI_V2_GPIO_P1_21": 1, - "RPI_V2_GPIO_P1_22": 1, - "RPI_V2_GPIO_P1_23": 1, - "RPI_V2_GPIO_P1_24": 1, - "RPI_V2_GPIO_P1_26": 1, - "RPI_V2_GPIO_P5_03": 1, - "RPI_V2_GPIO_P5_04": 1, - "RPI_V2_GPIO_P5_05": 1, - "RPI_V2_GPIO_P5_06": 1, - "RPiGPIOPin": 1, - "BCM2835_SPI0_CS": 1, - "Master": 12, - "BCM2835_SPI0_FIFO": 1, - "TX": 5, - "RX": 7, - "FIFOs": 1, - "BCM2835_SPI0_CLK": 1, - "Divider": 2, - "BCM2835_SPI0_DLEN": 1, - "Data": 9, - "Length": 2, - "BCM2835_SPI0_LTOH": 1, - "LOSSI": 1, - "mode": 24, - "TOH": 1, - "BCM2835_SPI0_DC": 1, - "DMA": 3, - "DREQ": 1, - "Controls": 1, - "BCM2835_SPI0_CS_LEN_LONG": 1, - "Long": 1, - "word": 7, - "Lossi": 2, - "DMA_LEN": 1, - "BCM2835_SPI0_CS_DMA_LEN": 1, - "BCM2835_SPI0_CS_CSPOL2": 1, - "Chip": 9, - "Polarity": 5, - "BCM2835_SPI0_CS_CSPOL1": 1, - "BCM2835_SPI0_CS_CSPOL0": 1, - "BCM2835_SPI0_CS_RXF": 1, - "RXF": 2, - "FIFO": 25, - "Full": 1, - "BCM2835_SPI0_CS_RXR": 1, - "RXR": 3, - "needs": 4, - "Reading": 1, - "full": 9, - "BCM2835_SPI0_CS_TXD": 1, - "TXD": 2, - "accept": 2, - "BCM2835_SPI0_CS_RXD": 1, - "RXD": 2, - "contains": 2, - "BCM2835_SPI0_CS_DONE": 1, - "Done": 3, - "transfer": 8, - "BCM2835_SPI0_CS_TE_EN": 1, - "Unused": 2, - "BCM2835_SPI0_CS_LMONO": 1, - "BCM2835_SPI0_CS_LEN": 1, - "LEN": 1, - "LoSSI": 1, - "BCM2835_SPI0_CS_REN": 1, - "REN": 1, - "Read": 3, - "BCM2835_SPI0_CS_ADCS": 1, - "ADCS": 1, - "Automatically": 1, - "Deassert": 1, - "BCM2835_SPI0_CS_INTR": 1, - "INTR": 1, - "Interrupt": 5, - "BCM2835_SPI0_CS_INTD": 1, - "INTD": 1, - "BCM2835_SPI0_CS_DMAEN": 1, - "DMAEN": 1, - "BCM2835_SPI0_CS_TA": 1, - "Transfer": 3, - "Active": 2, - "BCM2835_SPI0_CS_CSPOL": 1, - "BCM2835_SPI0_CS_CLEAR": 1, - "BCM2835_SPI0_CS_CLEAR_RX": 1, - "BCM2835_SPI0_CS_CLEAR_TX": 1, - "BCM2835_SPI0_CS_CPOL": 1, - "BCM2835_SPI0_CS_CPHA": 1, - "Phase": 1, - "BCM2835_SPI0_CS_CS": 1, - "bcm2835SPIBitOrder": 3, - "Bit": 1, - "Specifies": 5, - "ordering": 4, - "bcm2835_spi_setBitOrder": 2, - "BCM2835_SPI_BIT_ORDER_LSBFIRST": 1, - "LSB": 1, - "First": 2, - "BCM2835_SPI_BIT_ORDER_MSBFIRST": 1, - "MSB": 1, - "Specify": 2, - "bcm2835_spi_setDataMode": 2, - "BCM2835_SPI_MODE0": 1, - "CPOL": 4, - "CPHA": 4, - "BCM2835_SPI_MODE1": 1, - "BCM2835_SPI_MODE2": 1, - "BCM2835_SPI_MODE3": 1, - "bcm2835SPIMode": 2, - "bcm2835SPIChipSelect": 3, - "BCM2835_SPI_CS0": 1, - "BCM2835_SPI_CS1": 1, - "BCM2835_SPI_CS2": 1, - "CS1": 1, - "CS2": 1, - "asserted": 3, - "BCM2835_SPI_CS_NONE": 1, - "CS": 5, - "yourself": 1, - "bcm2835SPIClockDivider": 3, - "generate": 2, - "Figures": 1, - "below": 1, - "period": 1, - "frequency.": 1, - "divided": 2, - "nominal": 2, - "reported": 2, - "contrary": 1, - "may": 9, - "shown": 1, - "have": 4, - "confirmed": 1, - "measurement": 2, - "BCM2835_SPI_CLOCK_DIVIDER_65536": 1, - "us": 12, - "kHz": 10, - "BCM2835_SPI_CLOCK_DIVIDER_32768": 1, - "BCM2835_SPI_CLOCK_DIVIDER_16384": 1, - "BCM2835_SPI_CLOCK_DIVIDER_8192": 1, - "/51757813kHz": 1, - "BCM2835_SPI_CLOCK_DIVIDER_4096": 1, - "BCM2835_SPI_CLOCK_DIVIDER_2048": 1, - "BCM2835_SPI_CLOCK_DIVIDER_1024": 1, - "BCM2835_SPI_CLOCK_DIVIDER_512": 1, - "BCM2835_SPI_CLOCK_DIVIDER_256": 1, - "BCM2835_SPI_CLOCK_DIVIDER_128": 1, - "ns": 9, - "BCM2835_SPI_CLOCK_DIVIDER_64": 1, - "BCM2835_SPI_CLOCK_DIVIDER_32": 1, - "BCM2835_SPI_CLOCK_DIVIDER_16": 1, - "BCM2835_SPI_CLOCK_DIVIDER_8": 1, - "BCM2835_SPI_CLOCK_DIVIDER_4": 1, - "BCM2835_SPI_CLOCK_DIVIDER_2": 1, - "fastest": 1, - "BCM2835_SPI_CLOCK_DIVIDER_1": 1, - "same": 3, - "/65536": 1, - "BCM2835_BSC_C": 1, - "BCM2835_BSC_S": 1, - "BCM2835_BSC_DLEN": 1, - "BCM2835_BSC_A": 1, - "Slave": 1, - "BCM2835_BSC_FIFO": 1, - "BCM2835_BSC_DIV": 1, - "BCM2835_BSC_DEL": 1, - "Delay": 4, - "BCM2835_BSC_CLKT": 1, - "Stretch": 2, - "Timeout": 2, - "BCM2835_BSC_C_I2CEN": 1, - "BCM2835_BSC_C_INTR": 1, - "BCM2835_BSC_C_INTT": 1, - "BCM2835_BSC_C_INTD": 1, - "DONE": 2, - "BCM2835_BSC_C_ST": 1, - "Start": 4, - "new": 13, - "BCM2835_BSC_C_CLEAR_1": 1, - "BCM2835_BSC_C_CLEAR_2": 1, - "BCM2835_BSC_C_READ": 1, - "BCM2835_BSC_S_CLKT": 1, - "stretch": 1, - "timeout": 5, - "BCM2835_BSC_S_ERR": 1, - "ACK": 1, - "error": 8, - "BCM2835_BSC_S_RXF": 1, - "BCM2835_BSC_S_TXE": 1, - "TXE": 1, - "BCM2835_BSC_S_RXD": 1, - "BCM2835_BSC_S_TXD": 1, - "BCM2835_BSC_S_RXR": 1, - "BCM2835_BSC_S_TXW": 1, - "TXW": 1, - "writing": 2, - "BCM2835_BSC_S_DONE": 1, - "BCM2835_BSC_S_TA": 1, - "BCM2835_BSC_FIFO_SIZE": 1, - "size": 13, - "bcm2835I2CClockDivider": 3, - "BCM2835_I2C_CLOCK_DIVIDER_2500": 1, - "BCM2835_I2C_CLOCK_DIVIDER_626": 1, - "BCM2835_I2C_CLOCK_DIVIDER_150": 1, - "reset": 1, - "BCM2835_I2C_CLOCK_DIVIDER_148": 1, - "bcm2835I2CReasonCodes": 5, - "reason": 4, - "codes": 1, - "BCM2835_I2C_REASON_OK": 1, - "Success": 1, - "BCM2835_I2C_REASON_ERROR_NACK": 1, - "Received": 4, - "NACK": 1, - "BCM2835_I2C_REASON_ERROR_CLKT": 1, - "BCM2835_I2C_REASON_ERROR_DATA": 1, - "sent": 1, - "/": 16, - "BCM2835_ST_CS": 1, - "Control/Status": 1, - "BCM2835_ST_CLO": 1, - "Counter": 4, - "Lower": 2, - "BCM2835_ST_CHI": 1, - "Upper": 1, - "BCM2835_PWM_CONTROL": 1, - "BCM2835_PWM_STATUS": 1, - "BCM2835_PWM0_RANGE": 1, - "BCM2835_PWM0_DATA": 1, - "BCM2835_PWM1_RANGE": 1, - "BCM2835_PWM1_DATA": 1, - "BCM2835_PWMCLK_CNTL": 1, - "BCM2835_PWMCLK_DIV": 1, - "BCM2835_PWM1_MS_MODE": 1, - "Run": 4, - "MS": 2, - "BCM2835_PWM1_USEFIFO": 1, - "BCM2835_PWM1_REVPOLAR": 1, - "Reverse": 2, - "polarity": 3, - "BCM2835_PWM1_OFFSTATE": 1, - "Ouput": 2, - "BCM2835_PWM1_REPEATFF": 1, - "Repeat": 2, - "last": 6, - "empty": 2, - "BCM2835_PWM1_SERIAL": 1, - "serial": 2, - "BCM2835_PWM1_ENABLE": 1, - "Channel": 2, - "BCM2835_PWM0_MS_MODE": 1, - "BCM2835_PWM0_USEFIFO": 1, - "BCM2835_PWM0_REVPOLAR": 1, - "BCM2835_PWM0_OFFSTATE": 1, - "BCM2835_PWM0_REPEATFF": 1, - "BCM2835_PWM0_SERIAL": 1, - "BCM2835_PWM0_ENABLE": 1, - "x": 86, - "#endif": 110, - "#ifdef": 19, - "__cplusplus": 12, - "init": 2, - "Library": 1, - "management": 1, - "intialise": 1, - "Initialise": 1, - "opening": 1, - "getting": 1, - "internal": 47, - "device": 7, - "call": 4, - "successfully": 1, - "before": 7, - "bcm2835_set_debug": 2, - "fails": 1, - "returning": 1, - "result": 8, - "crashes": 1, - "failures.": 1, - "Prints": 1, - "messages": 1, - "stderr": 1, - "case": 34, - "errors.": 1, - "successful": 2, - "else": 58, - "int": 218, - "Close": 1, - "deallocating": 1, - "allocated": 2, - "closing": 3, - "Sets": 24, - "debug": 6, - "prevents": 1, - "makes": 1, - "print": 5, - "out": 5, - "what": 2, - "would": 2, - "do": 13, - "rather": 2, - "causes": 1, - "normal": 1, - "operation.": 2, - "Call": 2, - "param": 72, - "]": 292, - "level.": 3, - "uint8_t": 43, - "lowlevel": 2, - "provide": 1, - "generally": 1, - "Reads": 5, - "done": 3, - "twice": 3, - "therefore": 6, - "always": 3, - "safe": 4, - "precautions": 3, - "correct": 3, - "paddr": 10, - "from.": 6, - "etc.": 5, - "sa": 30, - "uint32_t*": 7, - "without": 3, - "within": 4, - "occurred": 2, - "since.": 2, - "bcm2835_peri_read_nb": 1, - "Writes": 2, - "write": 8, - "bcm2835_peri_write_nb": 1, - "Alters": 1, - "regsiter.": 1, - "valu": 1, - "alters": 1, - "deines": 1, - "according": 1, - "value.": 2, - "All": 1, - "unaffected.": 1, - "Use": 8, - "alter": 2, - "subset": 1, - "register.": 3, - "masked": 2, - "mask.": 1, - "Bitmask": 1, - "altered": 1, - "gpio": 1, - "interface.": 3, - "input": 12, - "output": 21, - "state.": 1, - "given": 16, - "configures": 1, - "RPI_GPIO_P1_*": 21, - "Mode": 1, - "BCM2835_GPIO_FSEL_*": 1, - "specified": 27, - "HIGH.": 2, - "bcm2835_gpio_write": 3, - "bcm2835_gpio_set": 1, - "LOW.": 5, - "bcm2835_gpio_clr": 1, - "first": 13, - "Mask": 6, - "affect.": 4, - "eg": 5, - "returns": 4, - "either": 4, - "Works": 1, - "whether": 4, - "output.": 1, - "bcm2835_gpio_lev": 1, - "Status.": 7, - "Tests": 1, - "detected": 7, - "requested": 1, - "flag": 3, - "bcm2835_gpio_set_eds": 2, - "status": 1, - "th": 1, - "true.": 2, - "bcm2835_gpio_eds": 1, - "effect": 3, - "clearing": 1, - "flag.": 1, - "afer": 1, - "seeing": 1, - "rising": 3, - "sets": 8, - "GPRENn": 2, - "synchronous": 2, - "detection.": 2, - "signal": 4, - "sampled": 6, - "looking": 2, - "pattern": 2, - "signal.": 2, - "suppressing": 2, - "glitches.": 2, - "Disable": 6, - "Asynchronous": 6, - "incoming": 2, - "As": 2, - "edges": 2, - "very": 2, - "short": 5, - "duration": 2, - "detected.": 2, - "bcm2835_gpio_pudclk": 3, - "resistor": 1, - "However": 3, - "convenient": 2, - "bcm2835_gpio_set_pud": 4, - "pud": 4, - "desired": 7, - "mode.": 4, - "One": 3, - "BCM2835_GPIO_PUD_*": 2, - "Clocks": 3, - "earlier": 1, - "remove": 2, - "group.": 2, - "BCM2835_PAD_GROUP_GPIO_*": 2, - "BCM2835_PAD_*": 2, - "bcm2835_gpio_set_pad": 1, - "Delays": 3, - "milliseconds.": 1, - "Uses": 4, - "CPU": 5, - "until": 1, - "up.": 1, - "mercy": 2, - "From": 2, - "interval": 4, - "req": 2, - "exact": 2, - "multiple": 2, - "granularity": 2, - "rounded": 2, - "next": 9, - "multiple.": 2, - "Furthermore": 2, - "sleep": 2, - "completes": 2, - "still": 3, - "becomes": 2, - "free": 4, - "once": 5, - "again": 2, - "execute": 3, - "thread.": 2, - "millis": 2, - "milliseconds": 1, - "unsigned": 22, - "microseconds.": 2, - "combination": 2, - "busy": 2, - "wait": 2, - "timers": 1, - "less": 1, - "microseconds": 6, - "Timer.": 1, - "RaspberryPi": 1, - "Your": 1, - "mileage": 1, - "vary.": 1, - "micros": 5, - "uint64_t": 8, - "required": 2, - "bcm2835_gpio_write_mask": 1, - "clocking": 1, - "spi": 1, - "let": 2, - "device.": 2, - "operations.": 4, - "Forces": 2, - "ALT0": 2, - "funcitons": 1, - "complete": 3, - "End": 2, - "returned": 5, - "INPUT": 2, - "behaviour.": 2, - "NOTE": 1, - "effect.": 1, - "SPI0.": 1, - "Defaults": 1, - "BCM2835_SPI_BIT_ORDER_*": 1, - "speed.": 2, - "BCM2835_SPI_CLOCK_DIVIDER_*": 1, - "bcm2835_spi_setClockDivider": 1, - "uint16_t": 2, - "polariy": 1, - "phase": 1, - "BCM2835_SPI_MODE*": 1, - "bcm2835_spi_transfer": 5, - "made": 1, - "selected": 13, - "during": 4, - "transfer.": 4, - "cs": 4, - "activate": 1, - "slave.": 7, - "BCM2835_SPI_CS*": 1, - "bcm2835_spi_chipSelect": 4, - "occurs": 1, - "currently": 12, - "active.": 1, - "transfers": 1, - "happening": 1, - "complement": 1, - "inactive": 1, - "affect": 1, - "active": 3, - "Whether": 1, - "bcm2835_spi_setChipSelectPolarity": 1, - "Transfers": 6, - "byte": 6, - "Asserts": 3, - "simultaneously": 3, - "clocks": 2, - "MISO.": 2, - "Returns": 2, - "polled": 2, - "Peripherls": 2, - "len": 15, - "slave": 8, - "placed": 1, - "rbuf.": 1, - "rbuf": 3, - "long": 15, - "tbuf": 4, - "Buffer": 10, - "send.": 5, - "put": 1, - "buffer": 9, - "Number": 8, - "send/received": 2, - "char*": 24, - "bcm2835_spi_transfernb.": 1, - "replaces": 1, - "transmitted": 1, - "buffer.": 1, - "buf": 14, - "replace": 1, - "contents": 3, - "eh": 2, - "bcm2835_spi_writenb": 1, - "i2c": 1, - "Philips": 1, - "bus/interface": 1, - "January": 1, - "SCL": 2, - "bcm2835_i2c_end": 3, - "bcm2835_i2c_begin": 1, - "address.": 2, - "addr": 2, - "bcm2835_i2c_setSlaveAddress": 4, - "BCM2835_I2C_CLOCK_DIVIDER_*": 1, - "bcm2835_i2c_setClockDivider": 2, - "converting": 1, - "baudrate": 4, - "parameter": 1, - "equivalent": 1, - "divider.": 1, - "standard": 2, - "khz": 1, - "corresponds": 1, - "its": 1, - "driver.": 1, - "Of": 1, - "course": 2, - "nothing": 1, - "driver": 1, - "const": 172, - "*": 183, - "receive.": 2, - "received.": 2, - "Allows": 2, - "slaves": 1, - "require": 3, - "repeated": 1, - "start": 12, - "prior": 1, - "stop": 1, - "set.": 1, - "popular": 1, - "MPL3115A2": 1, - "pressure": 1, - "temperature": 1, - "sensor.": 1, - "Note": 1, - "combined": 1, - "better": 1, - "choice.": 1, - "Will": 1, - "regaddr": 2, - "containing": 2, - "bcm2835_i2c_read_register_rs": 1, - "st": 1, - "delays": 1, - "Counter.": 1, - "bcm2835_st_read": 1, - "offset.": 1, - "offset_micros": 2, - "Offset": 1, - "bcm2835_st_delay": 1, - "@example": 5, - "blink.c": 1, - "Blinks": 1, - "off": 1, - "input.c": 1, - "event.c": 1, - "Shows": 3, - "how": 3, - "spi.c": 1, - "spin.c": 1, - "#pragma": 3, - "": 4, - "": 4, - "": 2, - "namespace": 38, - "std": 53, - "DEFAULT_DELIMITER": 1, - "CsvStreamer": 5, - "private": 16, - "ofstream": 1, - "File": 1, - "stream": 6, - "vector": 16, - "row_buffer": 1, - "stores": 3, - "row": 12, - "flushed/written": 1, - "fields": 4, - "columns": 2, - "rows": 3, - "records": 2, - "including": 2, - "delimiter": 2, - "Delimiter": 1, - "character": 10, - "comma": 2, - "string": 24, - "sanitize": 1, - "ready": 1, - "Empty": 1, - "CSV": 4, - "streamer...": 1, - "Same": 1, - "...": 1, - "Opens": 3, - "path/name": 3, - "Ensures": 1, - "closed": 1, - "saved": 1, - "delimiting": 1, - "add_field": 1, - "line": 11, - "adds": 1, - "field": 5, - "save_fields": 1, - "save": 1, - "writes": 2, - "append": 8, - "Appends": 5, - "quoted": 1, - "leading/trailing": 1, - "spaces": 3, - "trimmed": 1, - "bool": 111, - "Like": 1, - "specify": 1, - "trim": 2, - "keep": 1, - "float": 74, - "double": 25, - "writeln": 1, - "Flushes": 1, - "Saves": 1, - "closes": 1, - "field_count": 1, - "Gets": 2, - "row_count": 1, - "": 1, - "": 1, - "": 2, - "static": 263, - "Env": 13, - "*env_instance": 1, - "NULL": 109, - "*Env": 1, - "instance": 4, - "env_instance": 3, - "QObject": 2, - "QCoreApplication": 1, - "parse": 3, - "**envp": 1, - "**env": 1, - "**": 2, - "QString": 20, - "envvar": 2, - "name": 25, - "indexOfEquals": 5, - "env": 3, - "envp": 4, - "*env": 1, - "envvar.indexOf": 1, - "continue": 2, - "envvar.left": 1, - "envvar.mid": 1, - "m_map.insert": 1, - "QVariantMap": 3, - "asVariantMap": 2, - "m_map": 2, - "ENV_H": 3, - "": 1, - "Q_OBJECT": 1, - "*instance": 1, - "BOOST_ASIO_DETAIL_IMPL_EPOLL_REACTOR_IPP": 3, - "#if": 63, - "defined": 49, - "_MSC_VER": 7, - "&&": 29, - "": 1, - "BOOST_ASIO_HAS_EPOLL": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "BOOST_ASIO_HAS_TIMERFD": 19, - "": 1, - "boost": 18, - "asio": 14, - "detail": 5, - "epoll_reactor": 40, - "io_service": 6, - "service_base": 1, - "": 1, - "io_service_": 1, - "use_service": 1, - "": 1, - "mutex_": 13, - "interrupter_": 5, - "epoll_fd_": 20, - "do_epoll_create": 3, - "timer_fd_": 21, - "do_timerfd_create": 3, - "shutdown_": 10, - "epoll_event": 10, - "ev": 21, - "ev.events": 13, - "EPOLLIN": 8, - "EPOLLERR": 8, - "EPOLLET": 5, - "ev.data.ptr": 10, - "epoll_ctl": 12, - "EPOLL_CTL_ADD": 7, - "interrupter_.read_descriptor": 3, - "interrupter_.interrupt": 2, - "shutdown_service": 1, - "mutex": 16, - "scoped_lock": 16, - "lock": 5, - "lock.unlock": 1, - "op_queue": 6, - "": 6, - "ops": 10, - "descriptor_state*": 6, - "registered_descriptors_.first": 2, - "i": 106, - "max_ops": 6, - "ops.push": 5, - "op_queue_": 12, - "registered_descriptors_.free": 2, - "timer_queues_.get_all_timers": 1, - "io_service_.abandon_operations": 1, - "fork_service": 1, - "fork_event": 1, - "fork_ev": 2, - "fork_child": 1, - "interrupter_.recreate": 1, - "update_timeout": 2, - "descriptors_lock": 3, - "registered_descriptors_mutex_": 3, - "next_": 3, - "registered_events_": 8, - "descriptor_": 5, - "error_code": 4, - "ec": 6, - "errno": 10, - "get_system_category": 3, - "throw_error": 2, - "init_task": 1, - "io_service_.init_task": 1, - "register_descriptor": 1, - "socket_type": 7, - "descriptor": 15, - "per_descriptor_data": 8, - "descriptor_data": 60, - "allocate_descriptor_state": 3, - "descriptor_lock": 7, - "reactor_": 7, - "EPOLLHUP": 3, - "EPOLLPRI": 3, - "register_internal_descriptor": 1, - "op_type": 8, - "reactor_op*": 5, - "op": 28, - ".push": 2, - "move_descriptor": 1, - "target_descriptor_data": 2, - "source_descriptor_data": 3, - "start_op": 1, - "is_continuation": 5, - "allow_speculative": 2, - "ec_": 4, - "bad_descriptor": 1, - "post_immediate_completion": 2, - ".empty": 5, - "read_op": 1, - "||": 19, - "except_op": 1, - "perform": 2, - "descriptor_lock.unlock": 4, - "io_service_.post_immediate_completion": 2, - "write_op": 2, - "EPOLLOUT": 4, - "EPOLL_CTL_MOD": 3, - "io_service_.work_started": 2, - "cancel_ops": 1, - ".front": 3, - "operation_aborted": 2, - ".pop": 3, - "io_service_.post_deferred_completions": 3, - "deregister_descriptor": 1, - "EPOLL_CTL_DEL": 2, - "free_descriptor_state": 3, - "deregister_internal_descriptor": 1, - "get_timeout": 5, - "events": 8, - "num_events": 2, - "epoll_wait": 1, - "check_timers": 6, - "#else": 35, - "void*": 2, - "ptr": 6, - ".data.ptr": 1, - "static_cast": 14, - "": 2, - "set_ready_events": 1, - ".events": 1, - "common_lock": 1, - "timer_queues_.get_ready_timers": 1, - "itimerspec": 5, - "new_timeout": 6, - "old_timeout": 4, - "flags": 4, - "timerfd_settime": 2, - "EPOLL_CLOEXEC": 4, - "fd": 15, - "epoll_create1": 1, - "EINVAL": 4, - "ENOSYS": 1, - "epoll_create": 1, - "epoll_size": 1, - "fcntl": 2, - "F_SETFD": 2, - "FD_CLOEXEC": 2, - "timerfd_create": 2, - "TFD_CLOEXEC": 1, - "registered_descriptors_.alloc": 1, - "do_add_timer_queue": 1, - "timer_queue_base": 2, - "queue": 4, - "timer_queues_.insert": 1, - "do_remove_timer_queue": 1, - "timer_queues_.erase": 1, - "timer_queues_.wait_duration_msec": 1, - "ts": 1, - "ts.it_interval.tv_sec": 1, - "ts.it_interval.tv_nsec": 1, - "usec": 5, - "timer_queues_.wait_duration_usec": 1, - "ts.it_value.tv_sec": 1, - "ts.it_value.tv_nsec": 1, - "TFD_TIMER_ABSTIME": 1, - "perform_io_cleanup_on_block_exit": 4, - "explicit": 5, - "epoll_reactor*": 2, - "r": 38, - "first_op_": 3, - "ops_.empty": 1, - "ops_": 2, - "operation*": 4, - "descriptor_state": 5, - "operation": 2, - "do_complete": 2, - "perform_io": 2, - "mutex_.lock": 1, - "io_cleanup": 1, - "adopt_lock": 1, - "j": 10, - "io_cleanup.ops_.push": 1, - "break": 35, - "io_cleanup.first_op_": 2, - "io_cleanup.ops_.front": 1, - "io_cleanup.ops_.pop": 1, - "io_service_impl*": 1, - "owner": 3, - "size_t": 6, - "bytes_transferred": 2, - "": 1, - "": 1, - "Field": 2, - "Free": 1, - "Black": 1, - "White": 1, - "Illegal": 1, - "Player": 1, - "GDSDBREADER_H": 3, - "": 1, - "GDS_DIR": 1, - "LEVEL_ONE": 1, - "LEVEL_TWO": 1, - "LEVEL_THREE": 1, - "dbDataStructure": 2, - "label": 1, - "quint32": 3, - "depth": 1, - "userIndex": 1, - "QByteArray": 1, - "COMPRESSED": 1, - "optimize": 1, - "ram": 1, - "disk": 2, - "space": 2, - "decompressed": 1, - "quint64": 1, - "uniqueID": 1, - "QVector": 2, - "": 1, - "nextItems": 1, - "": 1, - "nextItemsIndices": 1, - "dbDataStructure*": 1, - "father": 1, - "fatherIndex": 1, - "noFatherRoot": 1, - "Used": 2, - "tell": 1, - "node": 1, - "root": 1, - "hasn": 1, - "argument": 1, - "list": 3, - "operator": 10, - "overload.": 1, - "friend": 10, - "myclass.label": 2, - "myclass.depth": 2, - "myclass.userIndex": 2, - "qCompress": 2, - "myclass.data": 4, - "myclass.uniqueID": 2, - "myclass.nextItemsIndices": 2, - "myclass.fatherIndex": 2, - "myclass.noFatherRoot": 2, - "myclass.fileName": 2, - "myclass.firstLineData": 4, - "myclass.linesNumbers": 2, - "QDataStream": 2, - "myclass": 1, - "//Don": 1, - "qUncompress": 2, - "": 2, - "main": 2, - "cout": 2, - "endl": 1, - "": 1, - "": 1, - "": 1, - "EC_KEY_regenerate_key": 1, - "EC_KEY": 3, - "*eckey": 2, - "BIGNUM": 9, - "*priv_key": 1, - "ok": 3, - "BN_CTX": 2, - "*ctx": 2, - "EC_POINT": 4, - "*pub_key": 1, - "eckey": 7, - "EC_GROUP": 2, - "*group": 2, - "EC_KEY_get0_group": 2, - "ctx": 26, - "BN_CTX_new": 2, - "goto": 156, - "err": 26, - "pub_key": 6, - "EC_POINT_new": 4, - "EC_POINT_mul": 3, - "priv_key": 2, - "EC_KEY_set_private_key": 1, - "EC_KEY_set_public_key": 2, - "EC_POINT_free": 4, - "BN_CTX_free": 2, - "ECDSA_SIG_recover_key_GFp": 3, - "ECDSA_SIG": 3, - "*ecsig": 1, - "*msg": 2, - "msglen": 2, - "recid": 3, - "ret": 24, - "*x": 1, - "*e": 1, - "*order": 1, - "*sor": 1, - "*eor": 1, - "*field": 1, - "*R": 1, - "*O": 1, - "*Q": 1, - "*rr": 1, - "*zero": 1, - "n": 28, - "BN_CTX_start": 1, - "BN_CTX_get": 8, - "EC_GROUP_get_order": 1, - "BN_copy": 1, - "BN_mul_word": 1, - "BN_add": 1, - "ecsig": 3, - "EC_GROUP_get_curve_GFp": 1, - "BN_cmp": 1, - "R": 6, - "EC_POINT_set_compressed_coordinates_GFp": 1, - "O": 5, - "EC_POINT_is_at_infinity": 1, - "Q": 5, - "EC_GROUP_get_degree": 1, - "e": 15, - "BN_bin2bn": 3, - "msg": 1, - "*msglen": 1, - "BN_rshift": 1, - "zero": 5, - "BN_zero": 1, - "BN_mod_sub": 1, - "rr": 4, - "BN_mod_inverse": 1, - "sor": 3, - "BN_mod_mul": 2, - "eor": 3, - "BN_CTX_end": 1, - "CKey": 26, - "SetCompressedPubKey": 4, - "EC_KEY_set_conv_form": 1, - "pkey": 14, - "POINT_CONVERSION_COMPRESSED": 1, - "fCompressedPubKey": 5, - "Reset": 5, - "EC_KEY_new_by_curve_name": 2, - "NID_secp256k1": 2, - "throw": 4, - "key_error": 6, - "fSet": 7, - "b": 57, - "EC_KEY_dup": 1, - "b.pkey": 2, - "b.fSet": 2, - "EC_KEY_copy": 1, - "hash": 20, - "vchSig": 18, - "nSize": 2, - "vchSig.clear": 2, - "vchSig.resize": 2, - "Shrink": 1, - "fit": 1, - "actual": 1, - "SignCompact": 2, - "uint256": 10, - "": 19, - "fOk": 3, - "*sig": 2, - "ECDSA_do_sign": 1, - "sig": 11, - "nBitsR": 3, - "BN_num_bits": 2, - "nBitsS": 3, - "nRecId": 4, - "<4;>": 1, - "keyRec": 5, - "1": 4, - "GetPubKey": 5, - "BN_bn2bin": 2, - "/8": 2, - "ECDSA_SIG_free": 2, - "SetCompactSignature": 2, - "vchSig.size": 2, - "nV": 6, - "<27>": 1, - "ECDSA_SIG_new": 1, - "EC_KEY_free": 1, - "Verify": 2, - "ECDSA_verify": 1, - "VerifyCompact": 2, - "key": 23, - "key.SetCompactSignature": 1, - "key.GetPubKey": 1, - "IsValid": 4, - "fCompr": 3, - "CSecret": 4, - "secret": 2, - "GetSecret": 2, - "key2": 1, - "key2.SetSecret": 1, - "key2.GetPubKey": 1, - "BITCOIN_KEY_H": 2, - "": 1, - "": 1, - "runtime_error": 2, - "str": 2, - "CKeyID": 5, - "uint160": 8, - "CScriptID": 3, - "CPubKey": 11, - "vchPubKey": 6, - "vchPubKeyIn": 2, - "a.vchPubKey": 3, - "b.vchPubKey": 3, - "IMPLEMENT_SERIALIZE": 1, - "READWRITE": 1, - "GetID": 1, - "Hash160": 1, - "GetHash": 1, - "Hash": 1, - "vchPubKey.begin": 1, - "vchPubKey.end": 1, - "vchPubKey.size": 3, - "IsCompressed": 2, - "Raw": 1, - "secure_allocator": 2, - "CPrivKey": 3, - "EC_KEY*": 1, - "IsNull": 1, - "MakeNewKey": 1, - "fCompressed": 3, - "SetPrivKey": 1, - "vchPrivKey": 1, - "SetSecret": 1, - "vchSecret": 1, - "GetPrivKey": 1, - "SetPubKey": 1, - "Sign": 2, - "LIBCANIH": 2, - "": 1, - "": 1, - "int64": 1, - "//#define": 1, - "DEBUG": 5, - "dout": 2, - "cerr": 1, - "libcanister": 2, - "//the": 8, - "canmem": 22, - "object": 3, - "generic": 1, - "container": 2, - "commonly": 1, - "//throughout": 1, - "canister": 14, - "framework": 1, - "hold": 1, - "uncertain": 1, - "//length": 1, - "contain": 1, - "null": 3, - "bytes.": 1, - "raw": 2, - "absolute": 1, - "length": 10, - "//creates": 3, - "unallocated": 1, - "allocsize": 1, - "blank": 1, - "strdata": 1, - "//automates": 1, - "creation": 1, - "limited": 2, - "canmems": 1, - "//cleans": 1, - "zeromem": 1, - "//overwrites": 2, - "fragmem": 1, - "notation": 1, - "countlen": 1, - "//counts": 1, - "strings": 1, - "//removes": 1, - "nulls": 1, - "//returns": 2, - "singleton": 2, - "//contains": 2, - "caninfo": 2, - "path": 8, - "//physical": 1, - "internalname": 1, - "//a": 1, - "numfiles": 1, - "files": 6, - "//necessary": 1, - "type": 7, - "canfile": 7, - "//this": 1, - "holds": 2, - "//canister": 1, - "canister*": 1, - "parent": 1, - "//internal": 1, - "id": 4, - "//use": 1, - "own.": 1, - "newline": 2, - "delimited": 2, - "container.": 1, - "TOC": 1, - "info": 2, - "general": 1, - "canfiles": 1, - "recommended": 1, - "modify": 1, - "//these": 1, - "enforced.": 1, - "canfile*": 1, - "readonly": 3, - "//if": 1, - "routines": 1, - "anything": 1, - "//maximum": 1, - "//time": 1, - "whatever": 1, - "suits": 1, - "application.": 1, - "cachemax": 2, - "cachecnt": 1, - "//number": 1, - "cache": 2, - "modified": 3, - "//both": 1, - "initialize": 1, - "fspath": 3, - "//destroys": 1, - "flushing": 1, - "modded": 1, - "//open": 1, - "//does": 1, - "exist": 2, - "//close": 1, - "flush": 1, - "clean": 2, - "//deletes": 1, - "inside": 1, - "delFile": 1, - "//pulls": 1, - "getFile": 1, - "otherwise": 1, - "overwrites": 1, - "succeeded": 2, - "writeFile": 2, - "//get": 1, - "//list": 1, - "paths": 1, - "getTOC": 1, - "//brings": 1, - "back": 1, - "limit": 1, - "//important": 1, - "sCFID": 2, - "CFID": 2, - "avoid": 1, - "uncaching": 1, - "//really": 1, - "just": 2, - "internally": 1, - "harm.": 1, - "cacheclean": 1, - "dFlush": 1, - "Q_OS_LINUX": 2, - "": 1, - "QT_VERSION": 1, - "QT_VERSION_CHECK": 1, - "#error": 9, - "Something": 1, - "wrong": 1, - "setup.": 1, - "report": 3, - "mailing": 1, - "argc": 2, - "char**": 2, - "argv": 2, - "google_breakpad": 1, - "ExceptionHandler": 1, - "Utils": 4, - "exceptionHandler": 2, - "qInstallMsgHandler": 1, - "messageHandler": 2, - "QApplication": 1, - "app": 1, - "STATIC_BUILD": 1, - "Q_INIT_RESOURCE": 2, - "WebKit": 1, - "InspectorBackendStub": 1, - "app.setWindowIcon": 1, - "QIcon": 1, - "app.setApplicationName": 1, - "app.setOrganizationName": 1, - "app.setOrganizationDomain": 1, - "app.setApplicationVersion": 1, - "PHANTOMJS_VERSION_STRING": 1, - "Phantom": 1, - "phantom": 1, - "phantom.execute": 1, - "app.exec": 1, - "phantom.returnValue": 1, - "__OG_MATH_INL__": 2, - "og": 1, - "OG_INLINE": 41, - "Math": 41, - "Abs": 1, - "MASK_SIGNED": 2, - "y": 16, - "Fabs": 1, - "f": 104, - "uInt": 1, - "*pf": 1, - "reinterpret_cast": 8, - "": 1, - "pf": 1, - "fabsf": 1, - "Round": 1, - "floorf": 2, - "Floor": 1, - "Ceil": 1, - "ceilf": 1, - "Ftoi": 1, - "@todo": 1, - "note": 1, - "sse": 1, - "cvttss2si": 2, - "OG_ASM_MSVC": 4, - "OG_FTOI_USE_SSE": 2, - "SysInfo": 2, - "cpu.general.SSE": 2, - "__asm": 8, - "eax": 5, - "mov": 6, - "fld": 4, - "fistp": 3, - "//__asm": 3, - "O_o": 3, - "#elif": 7, - "OG_ASM_GNU": 4, - "__asm__": 4, - "__volatile__": 4, - "cast": 7, - "why": 3, - "did": 3, - "": 3, - "FtoiFast": 2, - "Ftol": 1, - "": 1, - "Fmod": 1, - "numerator": 2, - "denominator": 2, - "fmodf": 1, - "Modf": 2, - "modff": 2, - "Sqrt": 2, - "sqrtf": 2, - "InvSqrt": 1, - "OG_ASSERT": 4, - "RSqrt": 1, - "g": 2, - "*reinterpret_cast": 3, - "guess": 1, - "f375a86": 1, - "": 1, - "Newtons": 1, - "calculation": 1, - "Log": 1, - "logf": 3, - "Log2": 1, - "INV_LN_2": 1, - "Log10": 1, - "INV_LN_10": 1, - "Pow": 1, - "exp": 2, - "powf": 1, - "Exp": 1, - "expf": 1, - "IsPowerOfTwo": 4, - "faster": 3, - "two": 2, - "known": 1, - "methods": 2, - "moved": 1, - "beginning": 1, - "HigherPowerOfTwo": 4, - "LowerPowerOfTwo": 2, - "FloorPowerOfTwo": 1, - "CeilPowerOfTwo": 1, - "ClosestPowerOfTwo": 1, - "Digits": 1, - "digits": 6, - "step": 3, - "Sin": 2, - "sinf": 1, - "ASin": 1, - "<=>": 2, - "0f": 2, - "HALF_PI": 2, - "asinf": 1, - "Cos": 2, - "cosf": 1, - "ACos": 1, - "PI": 1, - "acosf": 1, - "Tan": 1, - "tanf": 1, - "ATan": 2, - "atanf": 1, - "f1": 2, - "f2": 2, - "atan2f": 1, - "SinCos": 1, - "sometimes": 1, - "assembler": 1, - "waaayy": 1, - "_asm": 1, - "fsincos": 1, - "ecx": 2, - "edx": 2, - "fstp": 2, - "dword": 2, - "asm": 1, - "Deg2Rad": 1, - "DEG_TO_RAD": 1, - "Rad2Deg": 1, - "RAD_TO_DEG": 1, - "Square": 1, - "v": 10, - "Cube": 1, - "Sec2Ms": 1, - "sec": 2, - "Ms2Sec": 1, - "ms": 2, - "NINJA_METRICS_H_": 3, - "int64_t.": 1, - "Metrics": 2, - "module": 1, - "dumps": 1, - "stats": 2, - "actions.": 1, - "To": 1, - "METRIC_RECORD": 4, - "below.": 1, - "metrics": 2, - "hit": 1, - "path.": 2, - "count": 1, - "Total": 1, - "spent": 1, - "int64_t": 3, - "sum": 1, - "scoped": 1, - "recording": 1, - "metric": 2, - "across": 1, - "body": 1, - "macro.": 1, - "ScopedMetric": 4, - "Metric*": 4, - "metric_": 1, - "Timestamp": 1, + "winning_team": 1, + "this": 1, + "indicates": 1, + "stalemate.": 1, + "default": 1, + "winner": 9, + "//": 3, + "Nuclear": 1, + "Dawn": 1, + "SetFailState": 1, + "winner_score": 2, + "winlimit": 3, + "roundcount": 2, + "maxrounds": 3, + "fragger": 3, + "GetClientOfUserId": 1, + "GetClientFrags": 1, + "when": 2, + "inputlist": 1, + "IsVoteInProgress": 1, + "Can": 1, + "t": 7, + "be": 1, + "excluded": 1, + "from": 1, + "as": 2, + "they": 1, + "weren": 1, + "nominationsToAdd": 1, + "Change": 2, + "Extend": 2, + "Map": 5, + "Voting": 7, + "next": 5, + "has": 5, "started.": 1, - "Value": 24, - "platform": 2, - "dependent.": 1, - "start_": 1, - "prints": 1, - "report.": 1, - "NewMetric": 2, - "Print": 2, - "summary": 1, - "stdout.": 1, - "Report": 1, - "": 1, - "metrics_": 1, - "Get": 1, - "relative": 2, - "epoch.": 1, - "Epoch": 1, - "varies": 1, - "between": 1, - "platforms": 1, - "useful": 1, - "measuring": 1, - "elapsed": 1, - "time.": 1, - "GetTimeMillis": 1, - "simple": 1, - "stopwatch": 1, - "seconds": 1, - "Restart": 3, - "called.": 1, - "Stopwatch": 2, - "started_": 4, - "Seconds": 1, - "call.": 1, - "Elapsed": 1, - "": 1, - "primary": 1, - "metrics.": 1, - "top": 1, - "recorded": 1, - "metrics_h_metric": 2, - "g_metrics": 3, - "metrics_h_scoped": 1, - "Metrics*": 1, - "INTERNAL_SUPPRESS_PROTOBUF_FIELD_DEPRECATION": 1, - "": 1, - "": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "persons": 4, - "google": 72, - "protobuf": 72, - "Descriptor*": 3, - "Person_descriptor_": 6, - "GeneratedMessageReflection*": 1, - "Person_reflection_": 4, - "protobuf_AssignDesc_protocol_2dbuffer_2eproto": 4, - "protobuf_AddDesc_protocol_2dbuffer_2eproto": 6, - "FileDescriptor*": 1, - "DescriptorPool": 3, - "generated_pool": 2, - "FindFileByName": 1, - "GOOGLE_CHECK": 1, - "message_type": 1, - "Person_offsets_": 2, - "GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET": 3, - "Person": 65, - "name_": 30, - "GeneratedMessageReflection": 1, - "default_instance_": 8, - "_has_bits_": 14, - "_unknown_fields_": 5, - "MessageFactory": 3, - "generated_factory": 1, - "GOOGLE_PROTOBUF_DECLARE_ONCE": 1, - "protobuf_AssignDescriptors_once_": 2, - "inline": 39, - "protobuf_AssignDescriptorsOnce": 4, - "GoogleOnceInit": 1, - "protobuf_RegisterTypes": 2, - "InternalRegisterGeneratedMessage": 1, - "default_instance": 3, - "protobuf_ShutdownFile_protocol_2dbuffer_2eproto": 4, - "delete": 6, - "already_here": 3, - "GOOGLE_PROTOBUF_VERIFY_VERSION": 1, - "InternalAddGeneratedFile": 1, - "InternalRegisterGeneratedFile": 1, - "InitAsDefaultInstance": 3, - "OnShutdown": 1, - "StaticDescriptorInitializer_protocol_2dbuffer_2eproto": 2, - "static_descriptor_initializer_protocol_2dbuffer_2eproto_": 1, - "kNameFieldNumber": 2, - "Message": 7, - "SharedCtor": 4, - "MergeFrom": 9, - "_cached_size_": 7, - "const_cast": 3, - "string*": 11, - "kEmptyString": 12, - "SharedDtor": 3, - "SetCachedSize": 2, - "GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN": 2, - "GOOGLE_SAFE_CONCURRENT_WRITES_END": 2, - "*default_instance_": 1, - "Person*": 7, - "xffu": 3, - "has_name": 6, - "mutable_unknown_fields": 4, - "MergePartialFromCodedStream": 2, - "io": 4, - "CodedInputStream*": 2, - "DO_": 4, - "EXPRESSION": 2, - "uint32": 2, - "tag": 6, - "ReadTag": 1, - "switch": 3, - "WireFormatLite": 9, - "GetTagFieldNumber": 1, - "GetTagWireType": 2, - "WIRETYPE_LENGTH_DELIMITED": 1, - "ReadString": 1, - "mutable_name": 3, - "WireFormat": 10, - "VerifyUTF8String": 3, - ".data": 3, - ".length": 3, - "PARSE": 1, - "handle_uninterpreted": 2, - "ExpectAtEnd": 1, - "WIRETYPE_END_GROUP": 1, - "SkipField": 1, - "#undef": 3, - "SerializeWithCachedSizes": 2, - "CodedOutputStream*": 2, - "SERIALIZE": 2, - "WriteString": 1, - "unknown_fields": 7, - "SerializeUnknownFields": 1, - "uint8*": 4, - "SerializeWithCachedSizesToArray": 2, - "target": 6, - "WriteStringToArray": 1, - "SerializeUnknownFieldsToArray": 1, - "ByteSize": 2, - "total_size": 5, - "StringSize": 1, - "ComputeUnknownFieldsSize": 1, - "GOOGLE_CHECK_NE": 2, - "dynamic_cast_if_available": 1, - "": 12, - "ReflectionOps": 1, - "Merge": 1, - "from._has_bits_": 1, - "from.has_name": 1, - "set_name": 7, - "from.name": 1, - "from.unknown_fields": 1, - "CopyFrom": 5, - "IsInitialized": 3, - "Swap": 2, - "swap": 3, - "_unknown_fields_.Swap": 1, - "Metadata": 3, - "GetMetadata": 2, - "metadata": 2, - "metadata.descriptor": 1, - "metadata.reflection": 1, - "PROTOBUF_protocol_2dbuffer_2eproto__INCLUDED": 3, - "GOOGLE_PROTOBUF_VERSION": 1, - "generated": 2, - "newer": 2, - "protoc": 2, - "incompatible": 2, - "Protocol": 2, - "headers.": 3, - "update": 1, - "GOOGLE_PROTOBUF_MIN_PROTOC_VERSION": 1, - "older": 1, - "regenerate": 1, - "protoc.": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "virtual": 10, - "*this": 1, - "UnknownFieldSet": 2, - "UnknownFieldSet*": 1, - "GetCachedSize": 1, - "clear_name": 2, - "release_name": 2, - "set_allocated_name": 2, - "set_has_name": 7, - "clear_has_name": 5, - "mutable": 1, - "u": 9, - "*name_": 1, - "assign": 3, - "temp": 2, - "SWIG": 2, - "QSCICOMMAND_H": 2, - "__APPLE__": 4, - "": 1, - "": 2, - "": 1, - "QsciScintilla": 7, - "QsciCommand": 7, - "represents": 1, - "editor": 1, - "command": 9, - "keys": 3, - "bound": 4, - "Methods": 1, - "provided": 1, - "binding.": 1, - "Each": 1, - "friendly": 2, - "description": 3, - "dialogs.": 1, - "QSCINTILLA_EXPORT": 2, - "commands": 1, - "assigned": 1, - "key.": 1, - "Command": 4, - "Move": 26, - "down": 12, - "line.": 33, - "LineDown": 1, - "QsciScintillaBase": 100, - "SCI_LINEDOWN": 1, - "Extend": 33, - "selection": 39, - "LineDownExtend": 1, - "SCI_LINEDOWNEXTEND": 1, - "rectangular": 9, - "LineDownRectExtend": 1, - "SCI_LINEDOWNRECTEXTEND": 1, - "Scroll": 5, - "view": 2, - "LineScrollDown": 1, - "SCI_LINESCROLLDOWN": 1, - "LineUp": 1, - "SCI_LINEUP": 1, - "LineUpExtend": 1, - "SCI_LINEUPEXTEND": 1, - "LineUpRectExtend": 1, - "SCI_LINEUPRECTEXTEND": 1, - "LineScrollUp": 1, - "SCI_LINESCROLLUP": 1, - "document.": 8, - "ScrollToStart": 1, - "SCI_SCROLLTOSTART": 1, - "ScrollToEnd": 1, - "SCI_SCROLLTOEND": 1, - "vertically": 1, - "centre": 1, - "VerticalCentreCaret": 1, - "SCI_VERTICALCENTRECARET": 1, - "paragraph.": 4, - "ParaDown": 1, - "SCI_PARADOWN": 1, - "ParaDownExtend": 1, - "SCI_PARADOWNEXTEND": 1, - "ParaUp": 1, - "SCI_PARAUP": 1, - "ParaUpExtend": 1, - "SCI_PARAUPEXTEND": 1, - "left": 7, - "character.": 9, - "CharLeft": 1, - "SCI_CHARLEFT": 1, - "CharLeftExtend": 1, - "SCI_CHARLEFTEXTEND": 1, - "CharLeftRectExtend": 1, - "SCI_CHARLEFTRECTEXTEND": 1, - "CharRight": 1, - "SCI_CHARRIGHT": 1, - "CharRightExtend": 1, - "SCI_CHARRIGHTEXTEND": 1, - "CharRightRectExtend": 1, - "SCI_CHARRIGHTRECTEXTEND": 1, - "word.": 9, - "WordLeft": 1, - "SCI_WORDLEFT": 1, - "WordLeftExtend": 1, - "SCI_WORDLEFTEXTEND": 1, - "WordRight": 1, - "SCI_WORDRIGHT": 1, - "WordRightExtend": 1, - "SCI_WORDRIGHTEXTEND": 1, - "WordLeftEnd": 1, - "SCI_WORDLEFTEND": 1, - "WordLeftEndExtend": 1, - "SCI_WORDLEFTENDEXTEND": 1, - "WordRightEnd": 1, - "SCI_WORDRIGHTEND": 1, - "WordRightEndExtend": 1, - "SCI_WORDRIGHTENDEXTEND": 1, - "part.": 4, - "WordPartLeft": 1, - "SCI_WORDPARTLEFT": 1, - "WordPartLeftExtend": 1, - "SCI_WORDPARTLEFTEXTEND": 1, - "WordPartRight": 1, - "SCI_WORDPARTRIGHT": 1, - "WordPartRightExtend": 1, - "SCI_WORDPARTRIGHTEXTEND": 1, - "document": 16, - "Home": 1, - "SCI_HOME": 1, - "HomeExtend": 1, - "SCI_HOMEEXTEND": 1, - "HomeRectExtend": 1, - "SCI_HOMERECTEXTEND": 1, - "displayed": 10, - "HomeDisplay": 1, - "SCI_HOMEDISPLAY": 1, - "HomeDisplayExtend": 1, - "SCI_HOMEDISPLAYEXTEND": 1, - "HomeWrap": 1, - "SCI_HOMEWRAP": 1, - "HomeWrapExtend": 1, - "SCI_HOMEWRAPEXTEND": 1, - "visible": 6, - "VCHome": 1, - "SCI_VCHOME": 1, - "VCHomeExtend": 1, - "SCI_VCHOMEEXTEND": 1, - "VCHomeRectExtend": 1, - "SCI_VCHOMERECTEXTEND": 1, - "VCHomeWrap": 1, - "SCI_VCHOMEWRAP": 1, - "VCHomeWrapExtend": 1, - "SCI_VCHOMEWRAPEXTEND": 1, - "LineEnd": 1, - "SCI_LINEEND": 1, - "LineEndExtend": 1, - "SCI_LINEENDEXTEND": 1, - "LineEndRectExtend": 1, - "SCI_LINEENDRECTEXTEND": 1, - "LineEndDisplay": 1, - "SCI_LINEENDDISPLAY": 1, - "LineEndDisplayExtend": 1, - "SCI_LINEENDDISPLAYEXTEND": 1, - "LineEndWrap": 1, - "SCI_LINEENDWRAP": 1, - "LineEndWrapExtend": 1, - "SCI_LINEENDWRAPEXTEND": 1, - "DocumentStart": 1, - "SCI_DOCUMENTSTART": 1, - "DocumentStartExtend": 1, - "SCI_DOCUMENTSTARTEXTEND": 1, - "DocumentEnd": 1, - "SCI_DOCUMENTEND": 1, - "DocumentEndExtend": 1, - "SCI_DOCUMENTENDEXTEND": 1, - "page.": 13, - "PageUp": 1, - "SCI_PAGEUP": 1, - "PageUpExtend": 1, - "SCI_PAGEUPEXTEND": 1, - "PageUpRectExtend": 1, - "SCI_PAGEUPRECTEXTEND": 1, - "PageDown": 1, - "SCI_PAGEDOWN": 1, - "PageDownExtend": 1, - "SCI_PAGEDOWNEXTEND": 1, - "PageDownRectExtend": 1, - "SCI_PAGEDOWNRECTEXTEND": 1, - "Stuttered": 4, - "move": 2, - "StutteredPageUp": 1, - "SCI_STUTTEREDPAGEUP": 1, - "extend": 2, - "StutteredPageUpExtend": 1, - "SCI_STUTTEREDPAGEUPEXTEND": 1, - "StutteredPageDown": 1, - "SCI_STUTTEREDPAGEDOWN": 1, - "StutteredPageDownExtend": 1, - "SCI_STUTTEREDPAGEDOWNEXTEND": 1, - "Delete": 10, - "SCI_CLEAR": 1, - "DeleteBack": 1, - "SCI_DELETEBACK": 1, - "DeleteBackNotLine": 1, - "SCI_DELETEBACKNOTLINE": 1, - "left.": 2, - "DeleteWordLeft": 1, - "SCI_DELWORDLEFT": 1, - "right.": 2, - "DeleteWordRight": 1, - "SCI_DELWORDRIGHT": 1, - "DeleteWordRightEnd": 1, - "SCI_DELWORDRIGHTEND": 1, - "DeleteLineLeft": 1, - "SCI_DELLINELEFT": 1, - "DeleteLineRight": 1, - "SCI_DELLINERIGHT": 1, - "LineDelete": 1, - "SCI_LINEDELETE": 1, - "Cut": 2, - "clipboard.": 5, - "LineCut": 1, - "SCI_LINECUT": 1, - "Copy": 2, - "LineCopy": 1, - "SCI_LINECOPY": 1, - "Transpose": 1, - "lines.": 1, - "LineTranspose": 1, - "SCI_LINETRANSPOSE": 1, - "Duplicate": 2, - "LineDuplicate": 1, - "SCI_LINEDUPLICATE": 1, - "whole": 2, - "SelectAll": 1, - "SCI_SELECTALL": 1, - "lines": 3, - "MoveSelectedLinesUp": 1, - "SCI_MOVESELECTEDLINESUP": 1, - "MoveSelectedLinesDown": 1, - "SCI_MOVESELECTEDLINESDOWN": 1, - "selection.": 1, - "SelectionDuplicate": 1, - "SCI_SELECTIONDUPLICATE": 1, - "Convert": 2, - "lower": 1, - "case.": 2, - "SelectionLowerCase": 1, - "SCI_LOWERCASE": 1, - "upper": 1, - "SelectionUpperCase": 1, - "SCI_UPPERCASE": 1, - "SelectionCut": 1, - "SCI_CUT": 1, - "SelectionCopy": 1, - "SCI_COPY": 1, - "Paste": 2, - "SCI_PASTE": 1, - "Toggle": 1, - "insert/overtype.": 1, - "EditToggleOvertype": 1, - "SCI_EDITTOGGLEOVERTYPE": 1, - "Insert": 2, - "dependent": 1, - "newline.": 1, - "Newline": 1, - "SCI_NEWLINE": 1, - "formfeed.": 1, - "Formfeed": 1, - "SCI_FORMFEED": 1, - "Indent": 1, - "Tab": 1, - "SCI_TAB": 1, - "De": 1, - "indent": 1, - "Backtab": 1, - "SCI_BACKTAB": 1, - "Cancel": 2, - "SCI_CANCEL": 1, - "Undo": 2, - "command.": 5, - "SCI_UNDO": 1, - "Redo": 2, - "SCI_REDO": 1, - "Zoom": 2, - "in.": 1, - "ZoomIn": 1, - "SCI_ZOOMIN": 1, - "out.": 1, - "ZoomOut": 1, - "SCI_ZOOMOUT": 1, - "Return": 3, - "executed": 1, - "instance.": 2, - "scicmd": 2, - "Execute": 1, - "Binds": 2, - "binding": 3, - "removed.": 2, - "invalid": 5, - "unchanged.": 1, - "Valid": 1, - "Key_Down": 1, - "Key_Up": 1, - "Key_Left": 1, - "Key_Right": 1, - "Key_Home": 1, - "Key_End": 1, - "Key_PageUp": 1, - "Key_PageDown": 1, - "Key_Delete": 1, - "Key_Insert": 1, - "Key_Escape": 1, - "Key_Backspace": 1, - "Key_Tab": 1, - "Key_Return.": 1, - "Keys": 1, - "SHIFT": 1, - "CTRL": 1, - "ALT": 1, - "META.": 1, - "setAlternateKey": 3, - "validKey": 3, - "setKey": 3, - "altkey": 3, - "alternateKey": 3, - "returned.": 4, - "qkey": 2, - "qaltkey": 2, - "valid": 2, - "QsciCommandSet": 1, - "*qs": 1, - "cmd": 1, - "*desc": 1, - "bindKey": 1, - "qk": 1, - "scik": 1, - "*qsCmd": 1, - "scikey": 1, - "scialtkey": 1, - "*descCmd": 1, - "QSCIPRINTER_H": 2, - "": 1, - "": 1, - "QT_BEGIN_NAMESPACE": 1, - "QRect": 2, - "QPainter": 2, - "QT_END_NAMESPACE": 1, - "QsciPrinter": 9, - "sub": 2, - "Qt": 1, - "QPrinter": 3, - "text": 5, - "Scintilla": 2, - "further": 1, - "classed": 1, - "layout": 1, - "adding": 2, - "headers": 3, - "footers": 2, - "example.": 1, - "Constructs": 1, - "printer": 1, - "paint": 1, - "PrinterMode": 1, - "ScreenResolution": 1, - "Destroys": 1, - "Format": 1, - "drawn": 2, - "painter": 4, - "add": 3, - "customised": 2, - "graphics.": 2, - "drawing": 4, - "actually": 1, - "sized.": 1, - "area": 5, - "draw": 1, - "text.": 3, - "necessary": 1, - "reserve": 1, - "By": 1, - "printable": 1, - "setFullPage": 1, - "because": 2, - "printRange": 2, - "try": 1, - "over": 1, - "pagenr": 2, - "numbered": 1, - "formatPage": 1, - "points": 2, - "font": 2, - "printing.": 2, - "setMagnification": 2, - "magnification": 3, - "mag": 2, - "printing": 2, - "magnification.": 1, - "qsb.": 1, - "negative": 2, - "signifies": 2, - "error.": 1, - "*qsb": 1, - "wrap": 4, - "WrapWord.": 1, - "setWrapMode": 2, - "WrapMode": 3, - "wrapMode": 2, - "wmode.": 1, - "wmode": 1, - "": 2, - "Gui": 1, - "rpc_init": 1, - "rpc_server_loop": 1, - "v8": 9, - "Scanner": 16, - "UnicodeCache*": 4, - "unicode_cache": 3, - "unicode_cache_": 10, - "octal_pos_": 5, - "Location": 14, - "harmony_scoping_": 4, - "harmony_modules_": 4, - "Initialize": 4, - "Utf16CharacterStream*": 3, - "source_": 7, - "Init": 3, - "has_line_terminator_before_next_": 9, - "SkipWhiteSpace": 4, - "Scan": 5, - "uc32": 19, - "ScanHexNumber": 2, - "expected_length": 4, - "ASSERT": 17, - "overflow": 1, - "c0_": 64, - "d": 8, - "HexValue": 2, - "PushBack": 8, - "Advance": 44, - "STATIC_ASSERT": 5, - "Token": 212, - "NUM_TOKENS": 1, - "one_char_tokens": 2, - "ILLEGAL": 120, - "LPAREN": 2, - "RPAREN": 2, - "COMMA": 2, - "COLON": 2, - "SEMICOLON": 2, - "CONDITIONAL": 2, - "LBRACK": 2, - "RBRACK": 2, - "LBRACE": 2, - "RBRACE": 2, - "BIT_NOT": 2, - "Next": 3, - "current_": 2, - "has_multiline_comment_before_next_": 5, - "token": 64, - "": 1, - "pos": 12, - "source_pos": 10, - "next_.token": 3, - "next_.location.beg_pos": 3, - "next_.location.end_pos": 4, - "current_.token": 4, - "IsByteOrderMark": 2, - "xFEFF": 1, - "xFFFE": 1, - "start_position": 2, - "IsWhiteSpace": 2, - "IsLineTerminator": 6, - "SkipSingleLineComment": 6, - "undo": 4, - "WHITESPACE": 6, - "SkipMultiLineComment": 3, - "ch": 5, - "ScanHtmlComment": 3, - "LT": 2, - "next_.literal_chars": 13, - "ScanString": 3, - "LTE": 1, - "ASSIGN_SHL": 1, - "SHL": 1, - "GTE": 1, - "ASSIGN_SAR": 1, - "ASSIGN_SHR": 1, - "SHR": 1, - "SAR": 1, - "GT": 1, - "EQ_STRICT": 1, - "EQ": 1, - "ASSIGN": 1, - "NE_STRICT": 1, - "NE": 1, - "INC": 1, - "ASSIGN_ADD": 1, - "ADD": 1, - "DEC": 1, - "ASSIGN_SUB": 1, - "SUB": 1, - "ASSIGN_MUL": 1, - "MUL": 1, - "ASSIGN_MOD": 1, - "MOD": 1, - "ASSIGN_DIV": 1, - "DIV": 1, - "AND": 1, - "ASSIGN_BIT_AND": 1, - "BIT_AND": 1, - "OR": 1, - "ASSIGN_BIT_OR": 1, - "BIT_OR": 1, - "ASSIGN_BIT_XOR": 1, - "BIT_XOR": 1, - "IsDecimalDigit": 2, - "ScanNumber": 3, - "PERIOD": 1, - "IsIdentifierStart": 2, - "ScanIdentifierOrKeyword": 2, - "EOS": 1, - "SeekForward": 4, - "current_pos": 4, - "ASSERT_EQ": 1, - "ScanEscape": 2, - "IsCarriageReturn": 2, - "IsLineFeed": 2, - "fall": 2, - "xxx": 1, - "immediately": 1, - "octal": 1, - "escape": 1, - "quote": 3, - "consume": 2, - "LiteralScope": 4, - "literal": 2, - "X": 2, - "E": 3, - "l": 1, - "w": 1, - "keyword": 1, - "Unescaped": 1, - "in_character_class": 2, - "AddLiteralCharAdvance": 3, - "literal.Complete": 2, - "ScanLiteralUnicodeEscape": 3, - "V8_SCANNER_H_": 3, - "ParsingFlags": 1, - "kNoParsingFlags": 1, - "kLanguageModeMask": 4, - "kAllowLazy": 1, - "kAllowNativesSyntax": 1, - "kAllowModules": 1, - "CLASSIC_MODE": 2, - "STRICT_MODE": 2, - "EXTENDED_MODE": 2, - "x16": 1, - "x36.": 1, - "Utf16CharacterStream": 3, - "pos_": 6, - "buffer_cursor_": 5, - "buffer_end_": 3, - "ReadBlock": 2, - "": 1, - "kEndOfInput": 2, - "code_unit_count": 7, - "buffered_chars": 2, - "SlowSeekForward": 2, - "int32_t": 1, - "code_unit": 6, - "uc16*": 3, - "UnicodeCache": 3, - "unibrow": 11, - "Utf8InputBuffer": 2, - "<1024>": 2, - "Utf8Decoder": 2, - "StaticResource": 2, - "": 2, - "utf8_decoder": 1, - "utf8_decoder_": 2, - "uchar": 4, - "kIsIdentifierStart.get": 1, - "IsIdentifierPart": 1, - "kIsIdentifierPart.get": 1, - "kIsLineTerminator.get": 1, - "kIsWhiteSpace.get": 1, - "Predicate": 4, - "": 1, - "128": 4, - "kIsIdentifierStart": 1, - "": 1, - "kIsIdentifierPart": 1, - "": 1, - "kIsLineTerminator": 1, - "": 1, - "kIsWhiteSpace": 1, - "DISALLOW_COPY_AND_ASSIGN": 2, - "LiteralBuffer": 6, - "is_ascii_": 10, - "position_": 17, - "backing_store_": 7, - "backing_store_.length": 4, - "backing_store_.Dispose": 3, - "INLINE": 2, - "AddChar": 2, - "ExpandBuffer": 2, - "kMaxAsciiCharCodeU": 1, - "": 6, - "kASCIISize": 1, - "ConvertToUtf16": 2, - "": 2, - "kUC16Size": 2, - "is_ascii": 3, - "Vector": 13, - "uc16": 5, - "utf16_literal": 3, - "backing_store_.start": 5, - "ascii_literal": 3, - "kInitialCapacity": 2, - "kGrowthFactory": 2, - "kMinConversionSlack": 1, - "kMaxGrowth": 2, - "MB": 1, - "NewCapacity": 3, - "min_capacity": 2, - "capacity": 3, - "Max": 1, - "new_capacity": 2, - "Min": 1, - "new_store": 6, - "memcpy": 1, - "new_store.start": 3, - "new_content_size": 4, - "src": 2, - "": 1, - "dst": 2, - "Scanner*": 2, - "self": 5, - "scanner_": 5, - "complete_": 4, - "StartLiteral": 2, - "DropLiteral": 2, - "Complete": 1, - "TerminateLiteral": 2, - "beg_pos": 5, - "end_pos": 4, - "kNoOctalLocation": 1, - "scanner_contants": 1, - "current_token": 1, - "current_.location": 2, - "literal_ascii_string": 1, - "ASSERT_NOT_NULL": 9, - "current_.literal_chars": 11, - "literal_utf16_string": 1, - "is_literal_ascii": 1, - "literal_length": 1, - "literal_contains_escapes": 1, - "source_length": 3, - "location.end_pos": 1, - "location.beg_pos": 1, - "STRING": 1, - "peek": 1, - "peek_location": 1, - "next_.location": 1, - "next_literal_ascii_string": 1, - "next_literal_utf16_string": 1, - "is_next_literal_ascii": 1, - "next_literal_length": 1, - "kCharacterLookaheadBufferSize": 3, - "ScanOctalEscape": 1, - "octal_position": 1, - "clear_octal_position": 1, - "HarmonyScoping": 1, - "SetHarmonyScoping": 1, - "scoping": 2, - "HarmonyModules": 1, - "SetHarmonyModules": 1, - "modules": 2, - "HasAnyLineTerminatorBeforeNext": 1, - "ScanRegExpPattern": 1, - "seen_equal": 1, - "ScanRegExpFlags": 1, - "IsIdentifier": 1, - "CharacterStream*": 1, - "TokenDesc": 3, - "LiteralBuffer*": 2, - "literal_chars": 1, - "free_buffer": 3, - "literal_buffer1_": 3, - "literal_buffer2_": 2, - "AddLiteralChar": 2, - "tok": 2, - "else_": 2, - "ScanDecimalDigits": 1, - "seen_period": 1, - "ScanIdentifierSuffix": 1, - "LiteralScope*": 1, - "ScanIdentifierUnicodeEscape": 1, - "desc": 2, - "look": 1, - "ahead": 1, - "smallPrime_t": 1, - "UTILS_H": 3, - "": 1, - "": 1, - "": 1, - "QTemporaryFile": 1, - "showUsage": 1, - "QtMsgType": 1, - "dump_path": 1, - "minidump_id": 1, - "context": 8, - "QVariant": 1, - "coffee2js": 1, - "script": 1, - "injectJsInFrame": 2, - "jsFilePath": 5, - "libraryPath": 5, - "QWebFrame": 4, - "*targetFrame": 4, - "startingScript": 2, - "Encoding": 3, - "jsFileEnc": 2, - "readResourceFileUtf8": 1, - "resourceFilePath": 1, - "loadJSForDebug": 2, - "autorun": 2, - "cleanupFromDebug": 1, - "findScript": 1, - "jsFromScriptFile": 1, - "scriptPath": 1, - "enc": 1, - "shouldn": 1, - "instantiated": 1, - "QTemporaryFile*": 2, - "m_tempHarness": 1, - "We": 1, - "ourselves": 1, - "m_tempWrapper": 1, - "V8_DECLARE_ONCE": 1, - "init_once": 2, - "V8": 21, - "is_running_": 6, - "has_been_set_up_": 4, - "has_been_disposed_": 6, - "has_fatal_error_": 5, - "use_crankshaft_": 6, - "List": 3, - "": 3, - "call_completed_callbacks_": 16, - "LazyMutex": 1, - "entropy_mutex": 1, - "LAZY_MUTEX_INITIALIZER": 1, - "EntropySource": 3, - "entropy_source": 4, - "Deserializer*": 2, - "des": 3, - "FlagList": 1, - "EnforceFlagImplications": 1, - "InitializeOncePerProcess": 4, - "Isolate": 9, - "CurrentPerIsolateThreadData": 4, - "EnterDefaultIsolate": 1, - "thread_id": 1, - ".Equals": 1, - "ThreadId": 1, - "Current": 5, - "isolate": 15, - "IsDead": 2, - "Isolate*": 6, - "SetFatalError": 2, - "TearDown": 5, - "IsDefaultIsolate": 1, - "ElementsAccessor": 2, - "LOperand": 2, - "TearDownCaches": 1, - "RegisteredExtension": 1, - "UnregisterAll": 1, - "OS": 3, - "seed_random": 2, - "FLAG_random_seed": 2, - "val": 3, - "ScopedLock": 1, - "entropy_mutex.Pointer": 1, - "random": 1, - "random_base": 3, - "xFFFF": 2, - "FFFF": 1, - "SetEntropySource": 2, - "SetReturnAddressLocationResolver": 3, - "ReturnAddressLocationResolver": 2, - "resolver": 3, - "StackFrame": 1, - "Random": 3, - "Context*": 4, - "IsGlobalContext": 1, - "ByteArray*": 1, - "seed": 2, - "random_seed": 1, - "": 1, - "GetDataStartAddress": 1, - "RandomPrivate": 2, - "private_random_seed": 1, - "IdleNotification": 3, - "hint": 3, - "FLAG_use_idle_notification": 1, - "HEAP": 1, - "AddCallCompletedCallback": 2, - "CallCompletedCallback": 4, - "callback": 7, - "Lazy": 1, - "init.": 1, - "Add": 1, - "RemoveCallCompletedCallback": 2, - "Remove": 1, - "FireCallCompletedCallback": 2, - "HandleScopeImplementer*": 1, - "handle_scope_implementer": 5, - "CallDepthIsZero": 1, - "IncrementCallDepth": 1, - "DecrementCallDepth": 1, - "union": 1, - "double_value": 1, - "uint64_t_value": 1, - "double_int_union": 2, - "Object*": 4, - "FillHeapNumberWithRandom": 2, - "heap_number": 4, - "random_bits": 2, - "binary_million": 3, - "r.double_value": 3, - "r.uint64_t_value": 1, - "HeapNumber": 1, - "set_value": 1, - "InitializeOncePerProcessImpl": 3, - "SetUp": 4, - "FLAG_crankshaft": 1, - "Serializer": 1, - "SupportsCrankshaft": 1, - "PostSetUp": 1, - "RuntimeProfiler": 1, - "GlobalSetUp": 1, - "FLAG_stress_compaction": 1, - "FLAG_force_marking_deque_overflows": 1, - "FLAG_gc_global": 1, - "FLAG_max_new_space_size": 1, - "kPageSizeBits": 1, - "SetUpCaches": 1, - "SetUpJSCallerSavedCodeData": 1, - "SamplerRegistry": 1, - "ExternalReference": 1, - "CallOnce": 1, - "V8_V8_H_": 3, - "GOOGLE3": 2, - "NDEBUG": 4, - "both": 1, - "Deserializer": 1, - "AllStatic": 1, - "IsRunning": 1, - "UseCrankshaft": 1, - "FatalProcessOutOfMemory": 1, - "take_snapshot": 1, - "NilValue": 1, - "kNullValue": 1, - "kUndefinedValue": 1, - "EqualityKind": 1, - "kStrictEquality": 1, - "kNonStrictEquality": 1, - "PY_SSIZE_T_CLEAN": 1, - "Py_PYTHON_H": 1, - "Python": 1, - "compile": 1, - "extensions": 1, - "development": 1, - "Python.": 1, - "": 1, - "offsetof": 2, - "member": 2, - "type*": 1, - "WIN32": 2, - "MS_WINDOWS": 2, - "__stdcall": 2, - "__cdecl": 2, - "__fastcall": 2, - "DL_IMPORT": 2, - "DL_EXPORT": 2, - "PY_LONG_LONG": 5, - "LONG_LONG": 1, - "PY_VERSION_HEX": 9, - "METH_COEXIST": 1, - "PyDict_CheckExact": 1, - "Py_TYPE": 4, - "PyDict_Type": 1, - "PyDict_Contains": 1, - "o": 20, - "PySequence_Contains": 1, - "Py_ssize_t": 17, - "PY_SSIZE_T_MAX": 1, - "INT_MAX": 1, - "PY_SSIZE_T_MIN": 1, - "INT_MIN": 1, - "PY_FORMAT_SIZE_T": 1, - "PyInt_FromSsize_t": 2, - "z": 46, - "PyInt_FromLong": 13, - "PyInt_AsSsize_t": 2, - "PyInt_AsLong": 2, - "PyNumber_Index": 1, - "PyNumber_Int": 1, - "PyIndex_Check": 1, - "PyNumber_Check": 1, - "PyErr_WarnEx": 1, - "category": 2, - "message": 2, - "stacklevel": 1, - "PyErr_Warn": 1, - "Py_REFCNT": 1, - "ob": 6, - "PyObject*": 16, - "ob_refcnt": 1, - "ob_type": 7, - "Py_SIZE": 1, - "PyVarObject*": 1, - "ob_size": 1, - "PyVarObject_HEAD_INIT": 1, - "PyObject_HEAD_INIT": 1, - "PyType_Modified": 1, - "*buf": 1, - "PyObject": 221, - "*obj": 2, - "itemsize": 2, - "ndim": 2, - "*format": 1, - "*shape": 1, - "*strides": 1, - "*suboffsets": 1, - "*internal": 1, - "Py_buffer": 5, - "PyBUF_SIMPLE": 1, - "PyBUF_WRITABLE": 1, - "PyBUF_FORMAT": 1, - "PyBUF_ND": 2, - "PyBUF_STRIDES": 5, - "PyBUF_C_CONTIGUOUS": 3, - "PyBUF_F_CONTIGUOUS": 3, - "PyBUF_ANY_CONTIGUOUS": 1, - "PyBUF_INDIRECT": 1, - "PY_MAJOR_VERSION": 10, - "__Pyx_BUILTIN_MODULE_NAME": 2, - "Py_TPFLAGS_CHECKTYPES": 1, - "Py_TPFLAGS_HAVE_INDEX": 1, - "Py_TPFLAGS_HAVE_NEWBUFFER": 1, - "PyBaseString_Type": 1, - "PyUnicode_Type": 2, - "PyStringObject": 2, - "PyUnicodeObject": 1, - "PyString_Type": 2, - "PyString_Check": 2, - "PyUnicode_Check": 1, - "PyString_CheckExact": 2, - "PyUnicode_CheckExact": 1, - "PyBytesObject": 1, - "PyBytes_Type": 1, - "PyBytes_Check": 1, - "PyBytes_CheckExact": 1, - "PyBytes_FromString": 2, - "PyString_FromString": 1, - "PyBytes_FromStringAndSize": 1, - "PyString_FromStringAndSize": 1, - "PyBytes_FromFormat": 1, - "PyString_FromFormat": 1, - "PyBytes_DecodeEscape": 1, - "PyString_DecodeEscape": 1, - "PyBytes_AsString": 2, - "PyString_AsString": 1, - "PyBytes_AsStringAndSize": 1, - "PyString_AsStringAndSize": 1, - "PyBytes_Size": 1, - "PyString_Size": 1, - "PyBytes_AS_STRING": 1, - "PyString_AS_STRING": 1, - "PyBytes_GET_SIZE": 1, - "PyString_GET_SIZE": 1, - "PyBytes_Repr": 1, - "PyString_Repr": 1, - "PyBytes_Concat": 1, - "PyString_Concat": 1, - "PyBytes_ConcatAndDel": 1, - "PyString_ConcatAndDel": 1, - "PySet_Check": 1, - "obj": 42, - "PyObject_TypeCheck": 3, - "PySet_Type": 2, - "PyFrozenSet_Check": 1, - "PyFrozenSet_Type": 1, - "PySet_CheckExact": 2, - "__Pyx_TypeCheck": 1, - "PyTypeObject": 2, - "PyIntObject": 1, - "PyLongObject": 2, - "PyInt_Type": 1, - "PyLong_Type": 1, - "PyInt_Check": 1, - "PyLong_Check": 1, - "PyInt_CheckExact": 1, - "PyLong_CheckExact": 1, - "PyInt_FromString": 1, - "PyLong_FromString": 1, - "PyInt_FromUnicode": 1, - "PyLong_FromUnicode": 1, - "PyLong_FromLong": 1, - "PyInt_FromSize_t": 1, - "PyLong_FromSize_t": 1, - "PyLong_FromSsize_t": 1, - "PyLong_AsLong": 1, - "PyInt_AS_LONG": 1, - "PyLong_AS_LONG": 1, - "PyLong_AsSsize_t": 1, - "PyInt_AsUnsignedLongMask": 1, - "PyLong_AsUnsignedLongMask": 1, - "PyInt_AsUnsignedLongLongMask": 1, - "PyLong_AsUnsignedLongLongMask": 1, - "PyBoolObject": 1, - "__Pyx_PyNumber_Divide": 2, - "PyNumber_TrueDivide": 1, - "__Pyx_PyNumber_InPlaceDivide": 2, - "PyNumber_InPlaceTrueDivide": 1, - "PyNumber_Divide": 1, - "PyNumber_InPlaceDivide": 1, - "__Pyx_PySequence_GetSlice": 2, - "PySequence_GetSlice": 2, - "__Pyx_PySequence_SetSlice": 2, - "PySequence_SetSlice": 2, - "__Pyx_PySequence_DelSlice": 2, - "PySequence_DelSlice": 2, - "unlikely": 69, - "PyErr_SetString": 4, - "PyExc_SystemError": 3, - "likely": 15, - "tp_as_mapping": 3, - "PyErr_Format": 4, - "PyExc_TypeError": 5, - "tp_name": 4, - "PyMethod_New": 2, - "func": 3, - "klass": 1, - "PyInstanceMethod_New": 1, - "__Pyx_GetAttrString": 2, - "PyObject_GetAttrString": 3, - "__Pyx_SetAttrString": 2, - "PyObject_SetAttrString": 2, - "__Pyx_DelAttrString": 2, - "PyObject_DelAttrString": 2, - "__Pyx_NAMESTR": 3, - "__Pyx_DOCSTR": 3, - "__PYX_EXTERN_C": 2, - "_USE_MATH_DEFINES": 1, - "": 1, - "__PYX_HAVE_API__wrapper_inner": 1, - "PYREX_WITHOUT_ASSERTIONS": 1, - "CYTHON_WITHOUT_ASSERTIONS": 1, - "CYTHON_INLINE": 68, - "__GNUC__": 5, - "__inline__": 1, - "__inline": 1, - "__STDC_VERSION__": 2, - "L": 1, - "CYTHON_UNUSED": 7, - "**p": 1, - "*s": 1, - "encoding": 1, - "is_unicode": 1, - "is_str": 1, - "intern": 1, - "__Pyx_StringTabEntry": 1, - "__Pyx_PyBytes_FromUString": 1, - "__Pyx_PyBytes_AsUString": 1, - "__Pyx_PyBool_FromLong": 1, - "Py_INCREF": 3, - "Py_True": 2, - "Py_False": 2, - "__Pyx_PyObject_IsTrue": 8, - "__Pyx_PyNumber_Int": 1, - "__Pyx_PyIndex_AsSsize_t": 1, - "__Pyx_PyInt_FromSize_t": 1, - "__Pyx_PyInt_AsSize_t": 1, - "__pyx_PyFloat_AsDouble": 3, - "PyFloat_CheckExact": 1, - "PyFloat_AS_DOUBLE": 1, - "PyFloat_AsDouble": 1, - "__GNUC_MINOR__": 1, - "__builtin_expect": 2, - "*__pyx_m": 1, - "*__pyx_b": 1, - "*__pyx_empty_tuple": 1, - "*__pyx_empty_bytes": 1, - "__pyx_lineno": 80, - "__pyx_clineno": 80, - "__pyx_cfilenm": 1, - "__FILE__": 2, - "*__pyx_filename": 1, - "CYTHON_CCOMPLEX": 12, - "_Complex_I": 3, - "": 1, - "": 1, - "__sun__": 1, - "fj": 1, - "*__pyx_f": 1, - "npy_int8": 1, - "__pyx_t_5numpy_int8_t": 1, - "npy_int16": 1, - "__pyx_t_5numpy_int16_t": 1, - "npy_int32": 1, - "__pyx_t_5numpy_int32_t": 1, - "npy_int64": 1, - "__pyx_t_5numpy_int64_t": 1, - "npy_uint8": 1, - "__pyx_t_5numpy_uint8_t": 1, - "npy_uint16": 1, - "__pyx_t_5numpy_uint16_t": 1, - "npy_uint32": 1, - "__pyx_t_5numpy_uint32_t": 1, - "npy_uint64": 1, - "__pyx_t_5numpy_uint64_t": 1, - "npy_float32": 1, - "__pyx_t_5numpy_float32_t": 1, - "npy_float64": 1, - "__pyx_t_5numpy_float64_t": 1, - "npy_long": 1, - "__pyx_t_5numpy_int_t": 1, - "npy_longlong": 1, - "__pyx_t_5numpy_long_t": 1, - "npy_intp": 10, - "__pyx_t_5numpy_intp_t": 1, - "npy_uintp": 1, - "__pyx_t_5numpy_uintp_t": 1, - "npy_ulong": 1, - "__pyx_t_5numpy_uint_t": 1, - "npy_ulonglong": 1, - "__pyx_t_5numpy_ulong_t": 1, - "npy_double": 2, - "__pyx_t_5numpy_float_t": 1, - "__pyx_t_5numpy_double_t": 1, - "npy_longdouble": 1, - "__pyx_t_5numpy_longdouble_t": 1, - "complex": 2, - "__pyx_t_float_complex": 27, - "_Complex": 2, - "imag": 2, - "__pyx_t_double_complex": 27, - "npy_cfloat": 1, - "__pyx_t_5numpy_cfloat_t": 1, - "npy_cdouble": 2, - "__pyx_t_5numpy_cdouble_t": 1, - "npy_clongdouble": 1, - "__pyx_t_5numpy_clongdouble_t": 1, - "__pyx_t_5numpy_complex_t": 1, - "CYTHON_REFNANNY": 3, - "__Pyx_RefNannyAPIStruct": 4, - "*__Pyx_RefNanny": 1, - "__Pyx_RefNannyImportAPI": 1, - "*modname": 1, - "*m": 1, - "*p": 1, - "*r": 1, - "m": 4, - "PyImport_ImportModule": 1, - "modname": 1, - "PyLong_AsVoidPtr": 1, - "Py_XDECREF": 3, - "__Pyx_RefNannySetupContext": 13, - "*__pyx_refnanny": 1, - "__Pyx_RefNanny": 6, - "SetupContext": 1, - "__LINE__": 84, - "__Pyx_RefNannyFinishContext": 12, - "FinishContext": 1, - "__pyx_refnanny": 5, - "__Pyx_INCREF": 36, - "INCREF": 1, - "__Pyx_DECREF": 66, - "DECREF": 1, - "__Pyx_GOTREF": 60, - "GOTREF": 1, - "__Pyx_GIVEREF": 10, - "GIVEREF": 1, - "__Pyx_XDECREF": 26, - "Py_DECREF": 1, - "__Pyx_XGIVEREF": 7, - "__Pyx_XGOTREF": 1, - "__Pyx_TypeTest": 4, - "*type": 3, - "*__Pyx_GetName": 1, - "*dict": 1, - "__Pyx_ErrRestore": 1, - "*value": 2, - "*tb": 2, - "__Pyx_ErrFetch": 1, - "**type": 1, - "**value": 1, - "**tb": 1, - "__Pyx_Raise": 8, - "__Pyx_RaiseNoneNotIterableError": 1, - "__Pyx_RaiseNeedMoreValuesError": 1, - "index": 2, - "__Pyx_RaiseTooManyValuesError": 1, - "expected": 1, - "__Pyx_UnpackTupleError": 2, - "*__Pyx_Import": 1, - "*from_list": 1, - "__Pyx_Print": 1, - "__pyx_print": 1, - "__pyx_print_kwargs": 1, - "__Pyx_PrintOne": 4, - "*o": 1, - "*__Pyx_PyInt_to_py_Py_intptr_t": 1, - "Py_intptr_t": 1, - "__Pyx_CREAL": 4, - ".real": 3, - "__Pyx_CIMAG": 4, - ".imag": 3, - "__real__": 1, - "__imag__": 1, - "_WIN32": 1, - "__Pyx_SET_CREAL": 2, - "__Pyx_SET_CIMAG": 2, - "__pyx_t_float_complex_from_parts": 1, - "__Pyx_c_eqf": 2, - "__Pyx_c_sumf": 2, - "__Pyx_c_difff": 2, - "__Pyx_c_prodf": 2, - "__Pyx_c_quotf": 2, - "__Pyx_c_negf": 2, - "__Pyx_c_is_zerof": 3, - "__Pyx_c_conjf": 3, - "conj": 3, - "__Pyx_c_absf": 3, - "abs": 2, - "__Pyx_c_powf": 3, - "pow": 2, - "conjf": 1, - "cabsf": 1, - "cpowf": 1, - "__pyx_t_double_complex_from_parts": 1, - "__Pyx_c_eq": 2, - "__Pyx_c_sum": 2, - "__Pyx_c_diff": 2, - "__Pyx_c_prod": 2, - "__Pyx_c_quot": 2, - "__Pyx_c_neg": 2, - "__Pyx_c_is_zero": 3, - "__Pyx_c_conj": 3, - "__Pyx_c_abs": 3, - "__Pyx_c_pow": 3, - "cabs": 1, - "cpow": 1, - "__Pyx_PyInt_AsUnsignedChar": 1, - "__Pyx_PyInt_AsUnsignedShort": 1, - "__Pyx_PyInt_AsUnsignedInt": 1, - "__Pyx_PyInt_AsChar": 1, - "__Pyx_PyInt_AsShort": 1, - "__Pyx_PyInt_AsInt": 1, - "signed": 5, - "__Pyx_PyInt_AsSignedChar": 1, - "__Pyx_PyInt_AsSignedShort": 1, - "__Pyx_PyInt_AsSignedInt": 1, - "__Pyx_PyInt_AsLongDouble": 1, - "__Pyx_PyInt_AsUnsignedLong": 1, - "__Pyx_PyInt_AsUnsignedLongLong": 1, - "__Pyx_PyInt_AsLong": 1, - "__Pyx_PyInt_AsLongLong": 1, - "__Pyx_PyInt_AsSignedLong": 1, - "__Pyx_PyInt_AsSignedLongLong": 1, - "__Pyx_WriteUnraisable": 3, - "__Pyx_ExportFunction": 1, - "*__pyx_f_5numpy_PyArray_MultiIterNew2": 2, - "*__pyx_f_5numpy_PyArray_MultiIterNew3": 2, - "*__pyx_f_5numpy_PyArray_MultiIterNew4": 2, - "*__pyx_f_5numpy_PyArray_MultiIterNew5": 2, - "*__pyx_f_5numpy__util_dtypestring": 2, - "PyArray_Descr": 6, - "__pyx_f_5numpy_set_array_base": 1, - "PyArrayObject": 19, - "*__pyx_f_5numpy_get_array_base": 1, - "inner_work_1d": 2, - "inner_work_2d": 2, - "__Pyx_MODULE_NAME": 1, - "__pyx_module_is_main_wrapper_inner": 1, - "*__pyx_builtin_ValueError": 1, - "*__pyx_builtin_range": 1, - "*__pyx_builtin_RuntimeError": 1, - "__pyx_k_1": 1, - "__pyx_k_2": 1, - "__pyx_k_3": 1, - "__pyx_k_5": 1, - "__pyx_k_7": 1, - "__pyx_k_9": 1, - "__pyx_k_11": 1, - "__pyx_k_12": 1, - "__pyx_k_15": 1, - "__pyx_k__B": 2, - "__pyx_k__H": 2, - "__pyx_k__I": 2, - "__pyx_k__L": 2, - "__pyx_k__O": 2, - "__pyx_k__Q": 2, - "__pyx_k__b": 2, - "__pyx_k__d": 2, - "__pyx_k__f": 2, - "__pyx_k__g": 2, - "__pyx_k__h": 2, - "__pyx_k__i": 2, - "__pyx_k__l": 2, - "__pyx_k__q": 2, - "__pyx_k__Zd": 2, - "__pyx_k__Zf": 2, - "__pyx_k__Zg": 2, - "__pyx_k__np": 1, - "__pyx_k__buf": 1, - "__pyx_k__obj": 1, - "__pyx_k__base": 1, - "__pyx_k__ndim": 1, - "__pyx_k__ones": 1, - "__pyx_k__descr": 1, - "__pyx_k__names": 1, - "__pyx_k__numpy": 1, - "__pyx_k__range": 1, - "__pyx_k__shape": 1, - "__pyx_k__fields": 1, - "__pyx_k__format": 1, - "__pyx_k__strides": 1, - "__pyx_k____main__": 1, - "__pyx_k____test__": 1, - "__pyx_k__itemsize": 1, - "__pyx_k__readonly": 1, - "__pyx_k__type_num": 1, - "__pyx_k__byteorder": 1, - "__pyx_k__ValueError": 1, - "__pyx_k__suboffsets": 1, - "__pyx_k__work_module": 1, - "__pyx_k__RuntimeError": 1, - "__pyx_k__pure_py_test": 1, - "__pyx_k__wrapper_inner": 1, - "__pyx_k__do_awesome_work": 1, - "*__pyx_kp_s_1": 1, - "*__pyx_kp_u_11": 1, - "*__pyx_kp_u_12": 1, - "*__pyx_kp_u_15": 1, - "*__pyx_kp_s_2": 1, - "*__pyx_kp_s_3": 1, - "*__pyx_kp_u_5": 1, - "*__pyx_kp_u_7": 1, - "*__pyx_kp_u_9": 1, - "*__pyx_n_s__RuntimeError": 1, - "*__pyx_n_s__ValueError": 1, - "*__pyx_n_s____main__": 1, - "*__pyx_n_s____test__": 1, - "*__pyx_n_s__base": 1, - "*__pyx_n_s__buf": 1, - "*__pyx_n_s__byteorder": 1, - "*__pyx_n_s__descr": 1, - "*__pyx_n_s__do_awesome_work": 1, - "*__pyx_n_s__fields": 1, - "*__pyx_n_s__format": 1, - "*__pyx_n_s__itemsize": 1, - "*__pyx_n_s__names": 1, - "*__pyx_n_s__ndim": 1, - "*__pyx_n_s__np": 1, - "*__pyx_n_s__numpy": 1, - "*__pyx_n_s__obj": 1, - "*__pyx_n_s__ones": 1, - "*__pyx_n_s__pure_py_test": 1, - "*__pyx_n_s__range": 1, - "*__pyx_n_s__readonly": 1, - "*__pyx_n_s__shape": 1, - "*__pyx_n_s__strides": 1, - "*__pyx_n_s__suboffsets": 1, - "*__pyx_n_s__type_num": 1, - "*__pyx_n_s__work_module": 1, - "*__pyx_n_s__wrapper_inner": 1, - "*__pyx_int_5": 1, - "*__pyx_int_15": 1, - "*__pyx_k_tuple_4": 1, - "*__pyx_k_tuple_6": 1, - "*__pyx_k_tuple_8": 1, - "*__pyx_k_tuple_10": 1, - "*__pyx_k_tuple_13": 1, - "*__pyx_k_tuple_14": 1, - "*__pyx_k_tuple_16": 1, - "__pyx_v_num_x": 4, - "*__pyx_v_data_ptr": 2, - "*__pyx_v_answer_ptr": 2, - "__pyx_v_nd": 6, - "*__pyx_v_dims": 2, - "__pyx_v_typenum": 6, - "*__pyx_v_data_np": 2, - "__pyx_v_sum": 6, - "__pyx_t_1": 154, - "*__pyx_t_2": 4, - "*__pyx_t_3": 4, - "*__pyx_t_4": 3, - "__pyx_t_5": 75, - "__pyx_kp_s_1": 1, - "__pyx_filename": 79, - "__pyx_f": 79, - "__pyx_L1_error": 88, - "__pyx_v_dims": 4, - "NPY_DOUBLE": 3, - "__pyx_t_2": 120, - "PyArray_SimpleNewFromData": 2, - "__pyx_v_data_ptr": 2, - "Py_None": 38, - "__pyx_ptype_5numpy_ndarray": 2, - "__pyx_v_data_np": 10, - "__Pyx_GetName": 4, - "__pyx_m": 4, - "__pyx_n_s__work_module": 3, - "__pyx_t_3": 113, - "PyObject_GetAttr": 4, - "__pyx_n_s__do_awesome_work": 3, - "PyTuple_New": 4, - "PyTuple_SET_ITEM": 4, - "__pyx_t_4": 35, - "PyObject_Call": 11, - "PyErr_Occurred": 2, - "__pyx_v_answer_ptr": 2, - "__pyx_L0": 24, - "__pyx_v_num_y": 2, - "__pyx_kp_s_2": 1, - "*__pyx_pf_13wrapper_inner_pure_py_test": 2, - "*__pyx_self": 2, - "*unused": 2, - "PyMethodDef": 1, - "__pyx_mdef_13wrapper_inner_pure_py_test": 1, - "PyCFunction": 1, - "__pyx_pf_13wrapper_inner_pure_py_test": 1, - "METH_NOARGS": 1, - "*__pyx_v_data": 1, - "*__pyx_r": 7, - "*__pyx_t_1": 8, - "__pyx_self": 2, - "__pyx_v_data": 7, - "__pyx_kp_s_3": 1, - "__pyx_n_s__np": 1, - "__pyx_n_s__ones": 1, - "__pyx_k_tuple_4": 1, - "__pyx_r": 39, - "__Pyx_AddTraceback": 7, - "__pyx_pf_5numpy_7ndarray___getbuffer__": 2, - "*__pyx_v_self": 4, - "*__pyx_v_info": 4, - "__pyx_v_flags": 4, - "__pyx_v_copy_shape": 5, - "__pyx_v_i": 6, - "__pyx_v_ndim": 6, - "__pyx_v_endian_detector": 6, - "__pyx_v_little_endian": 8, - "__pyx_v_t": 29, - "*__pyx_v_f": 2, - "*__pyx_v_descr": 2, - "__pyx_v_offset": 9, - "__pyx_v_hasfields": 4, - "__pyx_t_6": 40, - "__pyx_t_7": 9, - "*__pyx_t_8": 1, - "*__pyx_t_9": 1, - "__pyx_v_info": 33, - "__pyx_v_self": 16, - "PyArray_NDIM": 1, - "__pyx_L5": 6, - "PyArray_CHKFLAGS": 2, - "NPY_C_CONTIGUOUS": 1, - "__pyx_builtin_ValueError": 5, - "__pyx_k_tuple_6": 1, - "__pyx_L6": 6, - "NPY_F_CONTIGUOUS": 1, - "__pyx_k_tuple_8": 1, - "__pyx_L7": 2, - "PyArray_DATA": 1, - "strides": 5, - "malloc": 2, - "shape": 3, - "PyArray_STRIDES": 2, - "PyArray_DIMS": 2, - "__pyx_L8": 2, - "suboffsets": 1, - "PyArray_ITEMSIZE": 1, - "PyArray_ISWRITEABLE": 1, - "__pyx_v_f": 31, - "descr": 2, - "__pyx_v_descr": 10, - "PyDataType_HASFIELDS": 2, - "__pyx_L11": 7, - "type_num": 2, - "byteorder": 4, - "__pyx_k_tuple_10": 1, - "__pyx_L13": 2, - "NPY_BYTE": 2, - "__pyx_L14": 18, - "NPY_UBYTE": 2, - "NPY_SHORT": 2, - "NPY_USHORT": 2, - "NPY_INT": 2, - "NPY_UINT": 2, - "NPY_LONG": 1, - "NPY_ULONG": 1, - "NPY_LONGLONG": 1, - "NPY_ULONGLONG": 1, - "NPY_FLOAT": 1, - "NPY_LONGDOUBLE": 1, - "NPY_CFLOAT": 1, - "NPY_CDOUBLE": 1, - "NPY_CLONGDOUBLE": 1, - "NPY_OBJECT": 1, - "__pyx_t_8": 16, - "PyNumber_Remainder": 1, - "__pyx_kp_u_11": 1, - "format": 6, - "__pyx_L12": 2, - "__pyx_t_9": 7, - "__pyx_f_5numpy__util_dtypestring": 1, - "__pyx_L2": 2, - "__pyx_pf_5numpy_7ndarray_1__releasebuffer__": 2, - "PyArray_HASFIELDS": 1, - "*__pyx_f_5numpy_PyArray_MultiIterNew1": 1, - "*__pyx_v_a": 5, - "PyArray_MultiIterNew": 5, - "__pyx_v_a": 5, - "*__pyx_v_b": 4, - "__pyx_v_b": 4, - "*__pyx_v_c": 3, - "__pyx_v_c": 3, - "*__pyx_v_d": 2, - "__pyx_v_d": 2, - "*__pyx_v_e": 1, - "__pyx_v_e": 1, - "*__pyx_v_end": 1, - "*__pyx_v_offset": 1, - "*__pyx_v_child": 1, - "*__pyx_v_fields": 1, - "*__pyx_v_childname": 1, - "*__pyx_v_new_offset": 1, - "*__pyx_v_t": 1, - "*__pyx_t_5": 1, - "__pyx_t_10": 7, - "*__pyx_t_11": 1, - "__pyx_v_child": 8, - "__pyx_v_fields": 7, - "__pyx_v_childname": 4, - "__pyx_v_new_offset": 5, - "PyTuple_GET_SIZE": 2, - "PyTuple_GET_ITEM": 3, - "PyObject_GetItem": 1, - "PyTuple_CheckExact": 1, - "tuple": 3, - "__pyx_ptype_5numpy_dtype": 1, - "__pyx_v_end": 2, - "PyNumber_Subtract": 2, - "PyObject_RichCompare": 8, - "__pyx_int_15": 1, - "Py_LT": 2, - "__pyx_builtin_RuntimeError": 2, - "__pyx_k_tuple_13": 1, - "__pyx_k_tuple_14": 1, - "elsize": 1, - "__pyx_k_tuple_16": 1, - "__pyx_L10": 2, - "Py_EQ": 6 + "SM": 5, + "Nextmap": 5, + "Started": 1, + "Current": 2, + "Extended": 1, + "finished.": 3, + "The": 1, + "current": 1, + "been": 1, + "extended.": 1, + "Stays": 1, + "was": 3, + "Finished": 1, + "s.": 1, + "Runoff": 2, + "Starting": 2, + "indecisive": 1, + "beginning": 1, + "runoff": 1, + "T": 3, + "Dont": 1, + "because": 1, + "outside": 1, + "request": 1, + "inputarray": 1, + "plugin": 5, + "numParams": 5, + "CanVoteStart": 1, + "array": 3, + "GetNativeCell": 3, + "size": 2, + "maparray": 3, + "ownerarray": 3, + "If": 1, + "optional": 1, + "parameter": 1, + "an": 1, + "owner": 1, + "list": 1, + "passed": 1, + "then": 1, + "fill": 1, + "out": 1, + "well": 1, + "PushArrayCell": 1 }, - "Ceylon": { - "doc": 2, - "by": 1, - "shared": 5, - "void": 1, - "test": 1, - "(": 4, - ")": 4, - "{": 3, - "print": 1, - ";": 4, - "}": 3, - "class": 1, - "Test": 2, - "name": 4, - "satisfies": 1, - "Comparable": 1, - "": 1, - "String": 2, - "actual": 2, - "string": 1, - "Comparison": 1, - "compare": 1, + "Propeller Spin": { + "{": 26, + "Vocal": 2, + "Tract": 2, + "v1.1": 8, + "by": 17, + "Chip": 7, + "Gracey": 7, + "Copyright": 10, + "(": 356, + "c": 33, + ")": 356, + "Parallax": 10, + "Inc.": 8, + "October": 1, + "This": 3, + "object": 7, + "synthesizes": 1, + "a": 72, + "human": 1, + "vocal": 10, + "tract": 12, + "in": 53, + "real": 2, + "-": 486, + "time.": 2, + "It": 1, + "requires": 3, + "one": 4, + "cog": 39, + "and": 95, + "at": 26, + "least": 14, + "MHz.": 1, + "The": 17, + "is": 51, + "controlled": 1, + "via": 5, + "single": 2, + "byte": 27, + "parameters": 19, + "which": 16, + "must": 18, + "reside": 1, + "the": 136, + "parent": 1, + "VAR": 10, + "aa": 2, + "ga": 5, + "gp": 2, + "vp": 3, + "vr": 1, + "f1": 4, + "f2": 1, + "f3": 3, + "f4": 2, + "na": 2, + "nf": 2, + "fa": 2, + "ff": 2, + "s": 16, + "values.": 2, + "Before": 1, + "they": 2, + "were": 1, + "left": 12, + "interpolation": 1, + "point": 21, + "shy": 1, + "then": 5, + "set": 42, + "to": 191, + "last": 6, + "frame": 12, + "change": 3, + "makes": 1, + "behave": 1, + "more": 90, + "sensibly": 1, + "during": 2, + "gaps.": 1, + "}": 26, + "CON": 4, + "frame_buffers": 2, + "bytes": 2, + "per": 4, + "frame_longs": 3, + "frame_bytes": 1, + "/": 27, + "longs": 15, + "...must": 1, + "long": 122, + "dira_": 3, + "dirb_": 1, + "ctra_": 1, + "ctrb_": 3, + "frqa_": 3, + "cnt_": 1, + "many": 1, + "...contiguous": 1, + "PUB": 63, + "start": 16, + "tract_ptr": 3, + "pos_pin": 7, + "neg_pin": 6, + "fm_offset": 5, + "okay": 11, + "Start": 6, + "driver": 17, + "starts": 4, + "returns": 6, + "false": 7, + "if": 53, + "no": 7, + "available": 4, + "pointer": 14, + "positive": 1, + "delta": 10, + "modulation": 4, + "pin": 18, + "disable": 7, + "negative": 2, + "also": 1, + "be": 46, + "enabled": 2, + "offset": 14, + "frequency": 18, + "for": 70, + "fm": 6, + "aural": 13, + "subcarrier": 3, + "generation": 2, + "_500_000": 1, + "NTSC": 11, + "Remember": 1, + "If": 2, + "ready": 10, + "output": 11, + "ctrb": 4, + "duty": 2, + "mode": 7, + "[": 35, + "&": 21, + "]": 34, + "|": 22, + "<": 14, + "+": 759, + "F": 18, + "<<": 70, + "Ready": 1, + "frqa": 3, + "value": 51, + "repeat": 18, + "clkfreq": 2, + "Launch": 1, + "return": 15, + "cognew": 4, + "@entry": 3, + "@attenuation": 1, + "stop": 9, + "Stop": 6, + "frees": 6, + "Reset": 1, + "variables": 3, + "buffers": 1, + "longfill": 2, + "@index": 1, + "constant": 3, + "frame_buffer_longs": 2, + "set_attenuation": 1, + "level": 5, + "Set": 5, + "master": 2, + "attenuation": 3, + "initially": 2, + "set_pace": 2, + "percentage": 3, + "pace": 3, + "some": 3, + "go": 1, + "time": 7, + "Queue": 1, + "current": 3, + "transition": 1, + "over": 2, + "actual": 4, + "integer": 2, + "*": 143, + "#": 97, + "see": 2, + "Load": 1, + "into": 19, + "bytemove": 1, + "@frames": 1, + "index": 5, + "Increment": 1, + "full": 3, + "status": 15, + "Returns": 4, + "true": 6, + "parameter": 14, + "queue": 2, + "useful": 2, + "checking": 1, + "would": 1, + "have": 1, + "wait": 6, + "frames": 2, + "empty": 2, + "i": 24, + "detecting": 1, + "when": 3, + "finished": 1, + "from": 21, + "sample_ptr": 1, + "ptr": 5, + "address": 16, + "of": 108, + "receives": 1, + "audio": 1, + "samples": 1, + "signed": 4, + "bit": 35, + "values": 2, + "updated": 1, + "KHz": 3, + "@sample": 1, + "aural_id": 1, + "id": 2, + "executing": 1, + "algorithm": 1, + "connecting": 1, + "broadcast": 19, + "tv": 2, + "with": 8, + "DAT": 7, + "Initialization": 1, + "zero": 10, + "all": 14, + "reserved": 3, + "data": 47, + "add": 92, + "d0": 11, + "djnz": 24, + "clear_cnt": 1, + "mov": 154, + "t1": 139, + "#2*15": 1, + "saves": 2, + "hub": 1, + "memory": 2, + "minst": 3, + "d0s0": 3, + "test": 38, + "#1": 47, + "wc": 57, + "if_c": 37, + "sub": 12, + "#2": 15, + "mult_ret": 1, + "antilog_ret": 1, + "ret": 17, + "assemble": 1, + "cordic": 4, + "steps": 9, + "reserves": 2, + "cstep": 1, + "t2": 90, + "#8": 14, + "write": 36, + "instruction": 2, + "par": 20, + "get": 30, + "center": 10, + "#4": 8, + "prepare": 1, + "initial": 6, + "waitcnt": 3, + "cnt_value": 3, + "cnt_ticks": 3, + "Loop": 1, + "Wait": 2, + "next": 16, + "sample": 2, + "period": 1, + "loop": 14, + "perform": 2, + "sar": 8, + "x": 112, + "update": 7, + "cycle": 1, + "driving": 1, + "h80000000": 2, + "frqb": 2, + "White": 1, + "noise": 3, + "source": 2, + "lfsr": 1, + "lfsr_taps": 2, + "Aspiration": 1, + "vibrato": 3, + "rate": 6, + "shr": 24, + "#10": 2, + "vphase": 2, + "sum": 7, + "glottal": 2, + "pitch": 5, + "divide": 3, + "final": 3, + "mesh": 1, + "multiply": 8, + "%": 162, + "tune": 2, + "convert": 1, + "log": 2, + "phase": 2, + "gphase": 3, + "reset": 14, + "y": 80, + "formant2": 2, + "rotate": 2, + "f2x": 3, + "f2y": 3, + "call": 44, + "#cordic": 2, + "formant4": 2, + "f4x": 3, + "f4y": 3, + "subtract": 1, + "nx": 4, + "negated": 1, + "nasal": 2, + "amplitude": 3, + "#mult": 1, + "negate": 2, + "#3": 7, + "fphase": 4, + "frication": 2, + "#sine": 1, + "Handle": 1, + "jmp": 24, + "or": 43, + "cycles": 4, + "frame_ptr": 6, + "past": 1, + "miscellaneous": 2, + "frame_index": 3, + "stepsize": 2, + "step_size": 5, + "h00FFFFFF": 2, + "wz": 21, + "not": 6, + "final1": 2, + "finali": 2, + "iterate": 3, + "aa..ff": 4, + "jmpret": 5, + "#loop": 9, + "another": 7, + "insure": 2, + "accurate": 1, + "accumulation": 1, + "step_acc": 3, + "movd": 10, + "set2": 3, + "#par_curr": 1, + "set3": 2, + "#par_next": 1, + "set4": 3, + "#par_step": 1, + "new": 6, + "shl": 21, + "#24": 1, + "par_curr": 3, + "make": 16, + "absolute": 1, + "msb": 2, + "rcl": 2, + "vscl": 12, + "nr": 1, + "step": 9, + "size": 5, + "mult": 2, + "negnz": 3, + "par_step": 1, + "pointers": 2, + "frame_cnt": 2, + "step1": 2, + "stepi": 1, + "check": 5, + "done": 3, + "if_nc": 15, + "stepframe": 1, + "signal": 8, + "wrlong": 6, + "#frame_bytes": 1, + "par_next": 2, + "used": 9, + "Math": 1, + "Subroutines": 1, + "Antilog": 1, + "top": 10, + "bits": 29, + "whole": 2, + "number": 27, + "fraction": 1, + "out": 24, + "antilog": 2, + "FFEA0000": 1, + "#16": 6, + "position": 9, + "h00000FFE": 2, + "table": 9, + "base": 6, + "rdword": 10, + "insert": 2, + "leading": 1, + "Scaled": 1, + "sine": 7, + "unsigned": 3, + "scale": 7, + "angle": 23, + "h00001000": 2, + "quadrant": 3, + "negc": 1, + "read": 29, + "word": 212, + "justify": 4, + "result": 6, + "Multiply": 1, + "multiplier": 3, + "#15": 1, + "do": 26, + "mult_step": 1, + "Cordic": 1, + "rotation": 3, + "degree": 1, + "first": 9, + "#cordic_steps": 1, + "that": 10, + "gets": 1, + "assembled": 1, + "x13": 2, + "cordic_dx": 1, + "incremented": 1, + "each": 11, + "sumnc": 7, + "sumc": 4, + "cordic_a": 1, + "cordic_delta": 2, + "linear": 1, + "feedback": 2, + "shift": 7, + "register": 1, + "B901476": 1, + "constants": 2, + "greater": 1, + "than": 5, + "h40000000": 1, + "h01000000": 1, + "FFFFFF": 1, + "h00010000": 1, + "h0000D000": 1, + "D000": 1, + "h00007000": 1, + "FFE": 1, + "h00000800": 1, + "registers": 2, + "clear": 5, + "on": 12, + "startup": 2, + "Undefined": 2, + "Data": 1, + "zeroed": 1, + "initialization": 2, + "code": 3, + "cleared": 1, + "res": 89, + "f1x": 1, + "f1y": 1, + "f3x": 1, + "f3y": 1, + "aspiration": 1, + "***": 1, + "mult_steps": 1, + "assembly": 1, + "area": 1, + "w/ret": 1, + "cordic_ret": 1, + "TERMS": 9, + "OF": 49, + "USE": 19, + "MIT": 9, + "License": 9, + "Permission": 9, + "hereby": 9, + "granted": 9, + "free": 10, + "charge": 10, + "any": 15, + "person": 9, + "obtaining": 9, + "copy": 21, + "this": 26, + "software": 9, + "associated": 11, + "documentation": 9, + "files": 9, + "deal": 9, + "Software": 28, + "without": 19, + "restriction": 9, + "including": 9, + "limitation": 9, + "rights": 9, + "use": 19, + "modify": 9, + "merge": 9, + "publish": 9, + "distribute": 9, + "sublicense": 9, + "and/or": 9, + "sell": 9, + "copies": 18, + "permit": 9, + "persons": 9, + "whom": 9, + "furnished": 9, + "so": 11, + "subject": 9, + "following": 9, + "conditions": 9, + "above": 11, + "copyright": 9, + "notice": 18, + "permission": 9, + "shall": 9, + "included": 9, + "substantial": 9, + "portions": 9, + "Software.": 9, + "THE": 59, + "SOFTWARE": 19, + "IS": 10, + "PROVIDED": 9, + "WITHOUT": 10, + "WARRANTY": 10, + "ANY": 20, + "KIND": 10, + "EXPRESS": 10, + "OR": 70, + "IMPLIED": 10, + "INCLUDING": 10, + "BUT": 10, + "NOT": 11, + "LIMITED": 10, + "TO": 10, + "WARRANTIES": 10, + "MERCHANTABILITY": 10, + "FITNESS": 10, + "FOR": 20, + "A": 21, + "PARTICULAR": 10, + "PURPOSE": 10, + "AND": 10, + "NONINFRINGEMENT.": 10, + "IN": 40, + "NO": 10, + "EVENT": 10, + "SHALL": 10, + "AUTHORS": 10, + "COPYRIGHT": 10, + "HOLDERS": 10, + "BE": 10, + "LIABLE": 10, + "CLAIM": 10, + "DAMAGES": 10, + "OTHER": 20, + "LIABILITY": 10, + "WHETHER": 10, + "AN": 10, + "ACTION": 10, + "CONTRACT": 10, + "TORT": 10, + "OTHERWISE": 10, + "ARISING": 10, + "FROM": 10, + "OUT": 10, + "CONNECTION": 10, + "WITH": 10, + "DEALINGS": 10, + "SOFTWARE.": 10, + "****************************************": 4, + "Debug_Lcd": 1, + "v1.2": 2, + "Authors": 1, + "Jon": 2, + "Williams": 2, + "Jeff": 2, + "Martin": 2, + "See": 10, + "end": 12, + "file": 9, + "terms": 9, + "use.": 9, + "Debugging": 1, + "wrapper": 1, + "Serial_Lcd": 1, + "March": 1, + "Updated": 4, + "conform": 1, + "Propeller": 3, + "standards.": 1, + "April": 1, + "consistency.": 1, + "OBJ": 2, + "lcd": 2, + "string": 8, + "conversion": 1, + "init": 2, + "baud": 2, + "lines": 24, + "Initializes": 1, + "serial": 1, + "LCD": 4, + "lcd.init": 1, + "finalize": 1, + "Finalizes": 1, + "floats": 1, + "lcd.finalize": 1, + "putc": 1, + "txbyte": 2, + "Send": 1, + "terminal": 4, + "lcd.putc": 1, + "str": 3, + "strAddr": 2, + "Print": 15, + "terminated": 4, + "lcd.str": 8, + "dec": 3, + "decimal": 5, + "num.dec": 1, + "decf": 1, + "width": 9, + "Prints": 2, + "space": 1, + "padded": 2, + "fixed": 1, + "field": 4, + "num.decf": 1, + "decx": 1, + "digits": 23, + "num.decx": 1, + "hex": 3, + "hexadecimal": 4, + "num.hex": 1, + "ihex": 1, + "an": 12, + "indicated": 2, + "num.ihex": 1, + "bin": 3, + "binary": 4, + "num.bin": 1, + "ibin": 1, + "num.ibin": 1, + "cls": 1, + "Clears": 2, + "moves": 1, + "cursor": 9, + "home": 4, + "lcd.cls": 1, + "Moves": 2, + "lcd.home": 1, + "gotoxy": 1, + "col": 9, + "line": 33, + "col/line": 1, + "lcd.gotoxy": 1, + "clrln": 1, + "lcd.clrln": 1, + "type": 4, + "Selects": 1, + "off": 8, + "blink": 4, + "lcd.cursor": 1, + "display": 23, + "Controls": 1, + "visibility": 1, + ";": 2, + "hide": 1, + "contents": 3, + "clearing": 1, + "lcd.displayOn": 1, + "else": 3, + "lcd.displayOff": 1, + "custom": 2, + "char": 2, + "chrDataAddr": 3, + "Installs": 1, + "character": 6, + "map": 1, + "definition": 9, + "array": 1, + "lcd.custom": 1, + "backLight": 1, + "Enable": 1, + "backlight": 1, + "affects": 1, + "only": 63, + "backlit": 1, + "models": 1, + "lcd.backLight": 1, + "***************************************": 12, + "VGA": 8, + "Driver": 4, + "Author": 8, + "May": 2, + "pixel": 40, + "tile": 41, + "can": 4, + "now": 3, + "enable": 5, + "efficient": 2, + "vga_mode": 3, + "colortable": 7, + "inside": 2, + "vgaptr": 3, + "cogstop": 3, + "Assembly": 2, + "language": 2, + "Entry": 2, + "tasks": 6, + "Superfield": 2, + "hv": 5, + "interlace": 20, + "#0": 20, + "nz": 3, + "visible": 7, + "back": 8, + "porch": 9, + "vb": 2, + "bcolor": 3, + "#colortable": 2, + "#blank_line": 3, + "nobl": 1, + "screen": 13, + "_screen": 3, + "vertical": 29, + "tiles": 19, + "vx": 2, + "_vx": 1, + "skip": 5, + "if_nz": 18, + "tjz": 8, + "hb": 2, + "nobp": 1, + "horizontal": 21, + "hx": 5, + "pixels": 14, + "rdlong": 16, + "colors": 18, + "color": 39, + "pass": 5, + "video": 7, + "repoint": 2, + "same": 7, + "hf": 2, + "nofp": 1, + "hsync": 5, + "#blank_hsync": 1, + "expand": 3, + "ror": 4, + "linerot": 5, + "front": 4, + "vf": 1, + "nofl": 1, + "xor": 8, + "unless": 2, + "field1": 4, + "invisible": 8, + "taskptr": 3, + "#tasks": 1, + "before": 1, + "after": 2, + "_vs": 2, + "except": 1, + "#blank_vsync": 1, + "#field": 1, + "superfield": 1, + "blank_vsync": 1, + "cmp": 16, + "blank": 2, + "vsync": 4, + "h2": 2, + "if_c_and_nz": 1, + "waitvid": 3, + "task": 2, + "section": 4, + "z": 4, + "undisturbed": 2, + "blank_hsync": 1, + "_hf": 1, + "invisble": 1, + "sync": 10, + "_hb": 1, + "#hv": 1, + "blank_hsync_ret": 1, + "blank_line_ret": 1, + "blank_vsync_ret": 1, + "_status": 1, + "#paramcount": 1, + "load": 3, + "pins": 26, + "directions": 1, + "_pins": 4, + "_enable": 2, + "#disabled": 2, + "break": 6, + "later": 6, + "min": 4, + "_rate": 3, + "pllmin": 1, + "_011": 1, + "adjust": 4, + "within": 5, + "MHz": 16, + "hvbase": 5, + "muxnc": 5, + "vmask": 1, + "_mode": 7, + "hmask": 1, + "_hx": 4, + "_vt": 3, + "consider": 2, + "muxc": 5, + "lineadd": 4, + "lineinc": 3, + "movi": 3, + "vcfg": 2, + "_000": 5, + "/160": 2, + "#13": 3, + "times": 3, + "loaded": 3, + "#9": 2, + "FC": 2, + "_colors": 2, + "colormask": 1, + "andn": 7, + "d6": 3, + "keep": 2, + "loading": 2, + "multiply_ret": 2, + "Disabled": 2, + "nap": 5, + "ms": 4, + "try": 2, + "again": 2, + "ctra": 5, + "disabled": 3, + "cnt": 2, + "#entry": 1, + "Initialized": 1, + "pll": 5, + "lowest": 1, + "pllmax": 1, + "_000_000": 6, + "*16": 1, + "vco": 3, + "max": 6, + "m4": 1, + "Uninitialized": 3, + "taskret": 4, + "Parameter": 4, + "buffer": 4, + "/non": 4, + "tihv": 1, + "@long": 2, + "_ht": 2, + "_ho": 2, + "_hd": 1, + "_hs": 1, + "_vd": 1, + "fit": 2, + "underneath": 1, + "BF": 1, + "___": 1, + "/1/2": 1, + "off/visible/invisible": 1, + "vga_enable": 3, + "pppttt": 1, + "words": 5, + "vga_colors": 2, + "vga_vt": 6, + "expansion": 8, + "vga_vx": 4, + "vga_vo": 4, + "ticks": 11, + "vga_hf": 2, + "vga_hb": 2, + "vga_vf": 2, + "vga_vb": 2, + "tick": 2, + "Hz": 5, + "preceding": 2, + "may": 6, + "copied": 2, + "your": 2, + "code.": 2, + "After": 2, + "setting": 2, + "@vga_status": 1, + "driver.": 3, + "All": 2, + "are": 18, + "reloaded": 2, + "superframe": 2, + "allowing": 2, + "you": 5, + "live": 2, + "changes.": 2, + "To": 3, + "minimize": 2, + "flicker": 5, + "correlate": 2, + "changes": 3, + "vga_status.": 1, + "Experimentation": 2, + "required": 4, + "optimize": 2, + "parameters.": 2, + "descriptions": 2, + "__________": 4, + "vga_status": 1, + "sets": 3, + "indicate": 2, + "CLKFREQ": 10, + "currently": 4, + "outputting": 4, + "will": 12, + "driven": 2, + "low": 5, + "reduces": 2, + "power": 3, + "non": 3, + "________": 3, + "vga_pins": 1, + "select": 9, + "group": 7, + "example": 3, + "selects": 4, + "between": 4, + "x16": 7, + "x32": 6, + "tileheight": 4, + "controls": 4, + "progressive": 2, + "scan": 7, + "less": 5, + "good": 5, + "motion": 2, + "monitors": 1, + "interlaced": 5, + "allows": 1, + "double": 2, + "text": 9, + "polarity": 1, + "respectively": 1, + "active": 3, + "high": 7, + "vga_screen": 1, + "define": 10, + "right": 9, + "bottom": 5, + "vga_ht": 3, + "has": 4, + "two": 6, + "bitfields": 2, + "colorset": 2, + "pixelgroup": 2, + "colorset*": 2, + "pixelgroup**": 2, + "ppppppppppcccc00": 2, + "p": 8, + "colorsets": 4, + "four": 8, + "**": 2, + "pixelgroups": 2, + "": 5, + "up": 4, + "fields": 2, + "t": 10, + "care": 1, + "it": 8, + "suggested": 1, + "bits/pins": 3, + "red": 2, + "green": 1, + "blue": 3, + "bit/pin": 1, + "ohm": 10, + "resistors": 4, + "form": 7, + "V": 7, + "signals": 1, + "connect": 3, + "RED": 1, + "GREEN": 2, + "BLUE": 1, + "connector": 3, + "always": 2, + "HSYNC": 1, + "resistor": 4, + "VSYNC": 1, + "______": 14, + "vga_hx": 3, + "factor": 4, + "sure": 4, + "||": 5, + "vga_ho": 2, + "equal": 1, + "vga_hd": 2, + "does": 2, + "exceed": 1, + "vga_vd": 2, + "pos/neg": 4, + "recommended": 2, + "shifts": 4, + "right/left": 2, + "up/down": 2, + "vga_hs": 1, + "vga_vs": 1, + "vga_rate": 2, + "limit": 4, + "should": 1, + "Graphics": 3, + "v1.0": 4, + "Theory": 1, + "Operation": 2, + "launched": 1, + "processes": 1, + "commands": 1, + "routines.": 1, + "Points": 1, + "arcs": 1, + "sprites": 1, + "polygons": 1, + "rasterized": 1, + "specified": 1, + "stretch": 1, + "serves": 1, + "as": 8, + "generic": 1, + "bitmap": 15, + "buffer.": 1, + "displayed": 1, + "TV.SRC": 1, + "VGA.SRC": 1, + "GRAPHICS_DEMO.SRC": 1, + "usage": 1, + "example.": 1, + "_setup": 1, + "_color": 2, + "_width": 2, + "_plot": 2, + "_line": 2, + "_arc": 2, + "_vec": 2, + "_vecarc": 2, + "_pix": 1, + "_pixarc": 1, + "_text": 2, + "_textarc": 1, + "_textmode": 2, + "_fill": 1, + "_loop": 5, + "command": 7, + "bitmap_base": 7, + "slices": 3, + "text_xs": 1, + "text_ys": 1, + "text_sp": 1, + "text_just": 1, + "font": 3, + "instances": 1, + "@loop": 1, + "@command": 1, + "graphics": 4, + "setup": 3, + "x_tiles": 9, + "y_tiles": 9, + "x_origin": 2, + "y_origin": 2, + "base_ptr": 3, + "bases_ptr": 3, + "slices_ptr": 1, + "relative": 2, + "setcommand": 13, + "bases": 2, + "retain": 2, + "bitmap_longs": 1, + "Clear": 2, + "dest_ptr": 2, + "Copy": 1, + "buffered": 1, + "destination": 1, + "pattern": 2, + "@colors": 2, + "determine": 2, + "shape/width": 2, + "w": 8, + "pixel_width": 1, + "pixel_passes": 2, + "@w": 1, + "E": 7, + "r": 4, + "colorwidth": 1, + "plot": 17, + "Plot": 3, + "@x": 6, + "Draw": 7, + "endpoint": 1, + "arc": 21, + "xr": 7, + "yr": 7, + "anglestep": 2, + "arcmode": 2, + "radii": 3, + "FFF": 3, + "..359.956": 3, + "just": 2, + "leaves": 1, + "points": 2, + "vec": 1, + "vecscale": 5, + "vecangle": 5, + "vecdef_ptr": 5, + "vector": 12, + "sprite": 14, + "Vector": 2, + "length": 4, + "...": 5, + "vecarc": 2, + "pix": 3, + "pixrot": 3, + "pixdef_ptr": 3, + "mirror": 1, + "Pixel": 1, + "draw": 5, + "textarc": 1, + "string_ptr": 6, + "justx": 2, + "justy": 3, + "necessary": 1, + ".finish": 1, + "immediately": 1, + "afterwards": 1, + "prevent": 1, + "subsequent": 1, + "clobbering": 1, + "being": 2, + "drawn": 1, + "@justx": 1, + "@x_scale": 1, + "half": 2, + "pmin": 1, + "round/square": 1, + "corners": 1, + "y2": 7, + "x2": 6, + "fill": 3, + "pmax": 2, + "triangle": 3, + "sides": 1, + "polygon": 1, + "tri": 2, + "x3": 4, + "y3": 5, + "x4": 4, + "y4": 1, + "x1": 5, + "y1": 7, + "xy": 1, + "solid": 1, + "finish": 2, + "safe": 1, + "manually": 1, + "manipulate": 1, + "while": 5, + "primitives": 1, + "xa0": 53, + "ya1": 3, + "ya2": 1, + "ya3": 2, + "ya4": 40, + "ya5": 3, + "ya6": 21, + "ya7": 9, + "ya8": 19, + "ya9": 5, + "yaA": 18, + "yaB": 4, + "yaC": 12, + "yaD": 4, + "yaE": 1, + "yaF": 1, + "xb0": 19, + "yb1": 2, + "yb2": 1, + "yb3": 4, + "yb4": 15, + "yb5": 2, + "yb6": 7, + "yb7": 3, + "yb8": 20, + "yb9": 5, + "ybA": 8, + "ybB": 1, + "ybC": 32, + "ybD": 1, + "ybE": 1, + "ybF": 1, + "ax1": 11, + "radius": 2, + "ay2": 23, + "ay3": 6, + "ay4": 4, + "a0": 8, + "a2": 1, + "farc": 41, + "arc/line": 1, + "Round": 1, + "recipes": 1, + "C": 11, + "D": 18, + "fline": 88, + "xa2": 48, + "xb2": 26, + "xa1": 8, + "xb1": 2, + "xa3": 8, + "xb3": 6, + "xb4": 35, + "a9": 3, + "ax2": 30, + "ay1": 10, + "a7": 2, + "aE": 1, + "aC": 2, + ".": 2, + "aF": 4, + "aD": 3, + "aB": 2, + "xa4": 13, + "a8": 8, + "@": 1, + "a4": 3, + "B": 15, + "H": 1, + "J": 1, + "L": 5, + "N": 1, + "P": 6, + "R": 3, + "T": 5, + "aA": 5, + "X": 4, + "Z": 1, + "b": 1, + "d": 2, + "f": 2, + "h": 2, + "j": 2, + "l": 2, + "n": 4, + "v": 1, + "bullet": 1, + "fx": 1, + "*************************************": 2, + "org": 2, + "arguments": 1, + "t3": 10, + "arg": 3, + "arg0": 12, + "dx": 20, + "dy": 15, + "arg1": 3, + "jump": 1, + "jumps": 6, + "color_": 1, + "plot_": 2, + "arc_": 2, + "vecarc_": 1, + "pixarc_": 1, + "textarc_": 2, + "fill_": 1, + "setup_": 1, + "xlongs": 4, + "xorigin": 2, + "yorigin": 4, + "arg3": 12, + "basesptr": 4, + "arg5": 6, + "width_": 1, + "pwidth": 3, + "passes": 3, + "#plotd": 3, + "line_": 1, + "#linepd": 2, + "arg7": 6, + "exit": 5, + "px": 14, + "py": 11, + "if_z": 11, + "#plotp": 3, + "arg4": 5, + "iterations": 1, + "vecdef": 1, + "t7": 8, + "add/sub": 1, + "to/from": 1, + "t6": 7, + "#multiply": 2, + "round": 1, + "/2": 1, + "lsb": 1, + "t4": 7, + "h8000": 5, + "xwords": 1, + "ywords": 1, + "xxxxxxxx": 2, + "save": 1, + "sy": 5, + "rdbyte": 3, + "origin": 1, + "neg": 2, + "arg2": 7, + "yline": 1, + "sx": 4, + "t5": 4, + "xpixel": 2, + "rol": 1, + "pcolor": 5, + "color1": 2, + "color2": 2, + "@string": 1, + "#arcmod": 1, + "text_": 1, + "chr": 4, + "def": 2, + "extract": 4, + "_0001_1": 1, + "#fontb": 3, + "textsy": 2, + "starting": 1, + "_0011_0": 1, + "#11": 1, + "#arcd": 1, + "#fontxy": 1, + "advance": 2, + "textsx": 3, + "_0111_0": 1, + "setd_ret": 1, + "fontxy_ret": 1, + "fontb": 1, + "fontb_ret": 1, + "textmode_": 1, + "textsp": 2, + "da": 1, + "db": 1, + "db2": 1, + "linechange": 1, + "lines_minus_1": 1, + "fractions": 1, + "pre": 1, + "increment": 1, + "counter": 1, + "yloop": 2, + "integers": 1, + "base0": 17, + "base1": 10, + "cmps": 3, + "range": 2, + "ylongs": 6, + "mins": 1, + "mask": 3, + "mask0": 8, + "#5": 2, + "count": 4, + "mask1": 6, + "bits0": 6, + "bits1": 5, + "deltas": 1, + "linepd": 1, + "wr": 2, + "direction": 2, + "abs": 1, + "dominant": 2, + "axis": 1, + "ratio": 1, + "xloop": 1, + "linepd_ret": 1, + "plotd": 1, + "wide": 3, + "bounds": 2, + "#plotp_ret": 2, + "#7": 2, + "store": 1, + "writes": 1, + "pair": 1, + "account": 1, + "special": 1, + "case": 5, + "slice": 7, + "shift0": 1, + "colorize": 1, + "upper": 2, + "subx": 1, + "#wslice": 1, + "Get": 2, + "args": 5, + "move": 2, + "using": 1, + "arg6": 1, + "arcmod_ret": 1, + "arg2/t4": 1, + "arg4/t6": 1, + "arcd": 1, + "#setd": 1, + "#polarx": 1, + "Polar": 1, + "cartesian": 1, + "polarx": 1, + "sine_90": 2, + "sine_table": 1, + "sine/cosine": 1, + "sine_180": 1, + "shifted": 1, + "product": 1, + "Defined": 1, + "hFFFFFFFF": 1, + "FFFFFFFF": 1, + "fontptr": 1, + "temps": 1, + "slicesptr": 1, + "line/plot": 1, + "coordinates": 1, + "TV": 9, + "Text": 1, + "cols": 5, + "rows": 4, + "screensize": 4, + "lastrow": 2, + "tv_count": 2, + "row": 4, + "flag": 5, + "tv_status": 4, + "off/on": 3, + "tv_pins": 5, + "tccip": 3, + "chroma": 19, + "ntsc/pal": 3, + "tv_screen": 5, + "tv_ht": 5, + "tv_hx": 5, + "tv_ho": 5, + "tv_broadcast": 4, + "basepin": 3, + "setcolors": 2, + "@palette": 1, + "longmove": 2, + "@tv_status": 3, + "@tv_params": 1, + "@screen": 3, + "tv_colors": 2, + "tv.start": 1, + "tv.stop": 2, + "stringptr": 3, + "strsize": 2, + "_000_000_000": 2, + "//": 4, + "elseif": 2, + "lookupz": 2, + "..": 4, + "k": 1, + "Output": 1, + "backspace": 1, + "tab": 3, + "spaces": 1, + "follows": 4, + "Y": 2, + "others": 1, + "printable": 1, + "characters": 1, + "wordfill": 2, + "print": 2, + "A..": 1, + "newline": 3, "other": 1, - "return": 1, - "<=>": 1, - "other.name": 1 + "colorptr": 2, + "fore": 3, + "Override": 1, + "default": 1, + "palette": 2, + "list": 1, + "arranged": 3, + "scroll": 1, + "hc": 1, + "ho": 1, + "white": 2, + "dark": 2, + "BB": 1, + "yellow": 1, + "brown": 1, + "cyan": 3, + "pink": 1, + "Terminal": 1, + "REVISION": 2, + "HISTORY": 2, + "/15/2006": 2, + "instead": 1, + "method": 2, + "minimum": 2, + "x_scale": 4, + "x_spacing": 4, + "normal": 1, + "x_chr": 2, + "y_chr": 5, + "y_scale": 3, + "y_spacing": 3, + "y_offset": 2, + "x_limit": 2, + "x_screen": 1, + "y_limit": 3, + "y_screen": 4, + "y_max": 3, + "y_screen_bytes": 2, + "y_scroll": 2, + "y_scroll_longs": 4, + "y_clear": 2, + "y_clear_longs": 2, + "paramcount": 1, + "ccinp": 1, + "swap": 2, + "tv_hc": 1, + "cells": 1, + "cell": 1, + "@bitmap": 1, + "FC0": 1, + "gr.start": 2, + "gr.setup": 2, + "gr.textmode": 1, + "gr.width": 1, + "gr.stop": 1, + "schemes": 1, + "gr.color": 1, + "gr.text": 1, + "@c": 1, + "gr.finish": 2, + "PRI": 1, + "tvparams": 1, + "tvparams_pins": 1, + "_0101": 1, + "vc": 1, + "vo": 1, + "_250_000": 2, + "auralcog": 1, + "color_schemes": 1, + "BC_6C_05_02": 1, + "E_0D_0C_0A": 1, + "E_6D_6C_6A": 1, + "BE_BD_BC_BA": 1, + "*****************************************": 4, + "Inductive": 1, + "Sensor": 1, + "Demo": 1, + "Beau": 2, + "Schwabe": 2, + "Test": 2, + "Circuit": 1, + "pF": 1, + "K": 4, + "M": 1, + "FPin": 2, + "SDF": 1, + "sigma": 3, + "SDI": 1, + "input": 2, + "GND": 4, + "Coils": 1, + "Wire": 1, + "was": 2, + "about": 4, + "gauge": 1, + "Coke": 3, + "Can": 3, + "BIC": 1, + "pen": 1, + "How": 1, + "work": 2, + "Note": 1, + "reported": 2, + "resonate": 5, + "LC": 8, + "frequency.": 2, + "Instead": 1, + "where": 2, + "voltage": 5, + "produced": 1, + "circuit": 5, + "clipped.": 1, + "In": 2, + "below": 4, + "When": 1, + "apply": 1, + "small": 1, + "specific": 1, + "near": 1, + "uncommon": 1, + "measure": 1, + "amount": 1, + "applying": 1, + "circuit.": 1, + "through": 1, + "diode": 2, + "basically": 1, + "feeds": 1, + "divider": 1, + "...So": 1, + "order": 1, + "ADC": 2, + "sweep": 2, + "needs": 1, + "generate": 1, + "Volts": 1, + "ground.": 1, + "drop": 1, + "across": 1, + "since": 1, + "sensitive": 1, + "works": 1, + "divider.": 1, + "typical": 1, + "magnitude": 1, + "applied": 2, + "might": 1, + "look": 2, + "something": 1, + "like": 4, + "*****": 4, + "...With": 1, + "looks": 1, + "X****": 1, + "...The": 1, + "denotes": 1, + "location": 1, + "reason": 1, + "slightly": 1, + "reasons": 1, + "really.": 1, + "lazy": 1, + "I": 1, + "didn": 1, + "acts": 1, + "dead": 1, + "short.": 1, + "situation": 1, + "exactly": 1, + "great": 1, + "I/O": 3, + "FindResonateFrequency": 1, + "DisplayInductorValue": 2, + "Freq.Synth": 1, + "FValue": 1, + "ADC.SigmaDelta": 1, + "@FTemp": 1, + "gr.clear": 1, + "gr.copy": 2, + "display_base": 2, + "Option": 2, + "*********************************************": 2, + "Frequency": 1, + "LowerFrequency": 2, + "*100/": 1, + "UpperFrequency": 1, + "gr.colorwidth": 4, + "gr.plot": 3, + "gr.line": 3, + "FTemp/1024": 1, + "Finish": 1, + "tv_mode": 2, + "lntsc": 3, + "fpal": 2, + "_433_618": 2, + "PAL": 10, + "spal": 3, + "tvptr": 3, + "vinv": 2, + "burst": 2, + "sync_high2": 2, + "black": 2, + "leftmost": 1, + "vert": 1, + "movs": 9, + "if_z_eq_c": 1, + "#hsync": 1, + "pulses": 2, + "vsync1": 2, + "#sync_low1": 1, + "hhalf": 2, + "field2": 1, + "#superfield": 1, + "Blank": 1, + "Horizontal": 1, + "pal": 2, + "toggle": 1, + "phaseflip": 4, + "phasemask": 2, + "sync_scale1": 1, + "hsync_ret": 1, + "vsync_high": 1, + "#sync_high1": 1, + "Tasks": 1, + "performed": 1, + "sections": 1, + "#_enable": 1, + "rd": 1, + "#wtab": 1, + "ltab": 1, + "#ltab": 1, + "cancel": 1, + "_broadcast": 4, + "m8": 3, + "fcolor": 4, + "#divide": 2, + "_111": 1, + "m128": 2, + "_100": 1, + "_001": 1, + "broadcast/baseband": 1, + "strip": 3, + "baseband": 18, + "_auralcog": 1, + "colorreg": 3, + "colorloop": 1, + "m1": 4, + "outa": 2, + "reload": 1, + "d0s1": 1, + "F0F0F0F0": 1, + "pins0": 1, + "_01110000_00001111_00000111": 1, + "pins1": 1, + "_11110111_01111111_01110111": 1, + "sync_high1": 1, + "_101010_0101": 1, + "NTSC/PAL": 2, + "metrics": 1, + "tables": 1, + "wtab": 1, + "sntsc": 3, + "lpal": 3, + "hrest": 2, + "vvis": 2, + "vrep": 2, + "_8A": 1, + "_AA": 1, + "sync_scale2": 1, + "_00000000_01_10101010101010_0101": 1, + "m2": 1, + "contiguous": 1, + "tv_status.": 1, + "_________": 5, + "tv_enable": 2, + "requirement": 2, + "_______": 2, + "_0111": 6, + "_1111": 6, + "_0000": 4, + "nibble": 4, + "attach": 1, + "/560/1100": 2, + "network": 1, + "visual": 1, + "carrier": 1, + "mixing": 2, + "mix": 2, + "black/white": 2, + "composite": 1, + "doubles": 1, + "format": 1, + "_318_180": 1, + "_579_545": 1, + "_734_472": 1, + "itself": 1, + "tv_vt": 3, + "valid": 2, + "luminance": 2, + "adds/subtracts": 1, + "beware": 1, + "modulated": 1, + "produce": 1, + "saturated": 1, + "toggling": 1, + "levels": 1, + "because": 1, + "abruptly": 1, + "rather": 1, + "against": 1, + "background": 1, + "best": 1, + "appearance": 1, + "_____": 6, + "practical": 2, + "/30": 1, + "tv_vx": 2, + "tv_vo": 2, + "centered": 2, + "image": 2, + "____________": 1, + "expressed": 1, + "ie": 1, + "channel": 1, + "modulator": 2, + "turned": 2, + "broadcasting": 1, + "___________": 1, + "tv_auralcog": 1, + "supply": 1, + "uses": 2, + "selected": 1, + "bandwidth": 2, + "vary": 1, + "PS/2": 1, + "Keyboard": 1, + "v1.0.1": 2, + "Tool": 1, + "par_tail": 1, + "key": 4, + "head": 1, + "par_present": 1, + "states": 1, + "par_keys": 1, + "******************************************": 2, + "entry": 1, + "#_dpin": 1, + "masks": 1, + "dmask": 4, + "_dpin": 3, + "cmask": 2, + "_cpin": 2, + "_head": 6, + "dira": 3, + "_present/_states": 1, + "dlsb": 2, + "stat": 6, + "Update": 1, + "_head/_present/_states": 1, + "#1*4": 1, + "scancode": 2, + "state": 2, + "#receive": 1, + "AA": 1, + "extended": 1, + "if_nc_and_z": 2, + "F0": 3, + "unknown": 2, + "ignore": 2, + "#newcode": 1, + "_states": 2, + "set/clear": 1, + "#_states": 1, + "reg": 5, + "cmpsub": 4, + "shift/ctrl/alt/win": 1, + "pairs": 1, + "E0": 1, + "handle": 1, + "scrlock/capslock/numlock": 1, + "_locks": 5, + "#29": 1, + "configure": 3, + "leds": 3, + "shift1": 1, + "if_nz_and_c": 4, + "#@shift1": 1, + "@table": 1, + "#look": 1, + "alpha": 1, + "considering": 1, + "capslock": 1, + "if_nz_and_nc": 1, + "flags": 1, + "alt": 1, + "room": 1, + "enter": 1, + "FF": 3, + "#11*4": 1, + "wrword": 1, + "F3": 1, + "keyboard": 3, + "lock": 1, + "#transmit": 2, + "rev": 1, + "_present": 2, + "#update": 1, + "Lookup": 2, + "lookup": 1, + "#table": 1, + "#27": 1, + "#rand": 1, + "Transmit": 1, + "pull": 2, + "clock": 4, + "napshr": 3, + "#18": 2, + "release": 1, + "transmit_bit": 1, + "#wait_c0": 2, + "_d2": 1, + "wcond": 3, + "c1": 2, + "c0d0": 2, + "until": 3, + "#wait": 2, + "#receive_ack": 1, + "ack": 1, + "error": 1, + "#reset": 2, + "transmit_ret": 1, + "receive": 1, + "receive_bit": 1, + "pause": 1, + "us": 1, + "#nap": 1, + "_d3": 1, + "ina": 3, + "#receive_bit": 1, + "align": 1, + "isolate": 1, + "look_ret": 1, + "receive_ack_ret": 1, + "receive_ret": 1, + "wait_c0": 1, + "c0": 1, + "timeout": 1, + "wloop": 1, + "_d4": 1, + "replaced": 1, + "c0/c1/c0d0/c1d1": 1, + "if_never": 1, + "replacements": 1, + "#wloop": 3, + "if_c_or_nz": 1, + "c1d1": 1, + "if_nc_or_z": 1, + "scales": 1, + "snag": 1, + "elapses": 1, + "nap_ret": 1, + "F9": 1, + "F5": 1, + "D2": 1, + "F1": 2, + "D1": 1, + "F12": 1, + "F10": 1, + "D7": 1, + "F6": 1, + "D3": 1, + "Tab": 2, + "Alt": 2, + "F3F2": 1, + "q": 1, + "Win": 2, + "Space": 2, + "Apps": 1, + "Power": 1, + "Sleep": 1, + "EF2F": 1, + "CapsLock": 1, + "Enter": 3, + "WakeUp": 1, + "BackSpace": 1, + "C5E1": 1, + "C0E4": 1, + "Home": 1, + "Insert": 1, + "C9EA": 1, + "Down": 1, + "E5": 1, + "Right": 1, + "C2E8": 1, + "Esc": 1, + "DF": 2, + "F11": 1, + "EC": 1, + "PageDn": 1, + "ED": 1, + "PrScr": 1, + "C6E9": 1, + "ScrLock": 1, + "D6": 1, + "Key": 1, + "Codes": 1, + "keypress": 1, + "keystate": 2, + "E0..FF": 1, + "AS": 1, + "Keypad": 1, + "Reader": 1, + "capacitive": 1, + "PIN": 1, + "approach": 1, + "reading": 1, + "keypad.": 1, + "ALL": 2, + "made": 2, + "LOW": 2, + "OUTPUT": 2, + "pins.": 1, + "Then": 1, + "INPUT": 2, + "state.": 1, + "At": 1, + "HIGH": 3, + "closed": 1, + "otherwise": 1, + "returned.": 1, + "keypad": 4, + "decoding": 1, + "routine": 1, + "subroutines": 1, + "entire": 1, + "matrix": 1, + "WORD": 1, + "variable": 1, + "indicating": 1, + "buttons": 2, + "pressed.": 1, + "Multiple": 1, + "button": 2, + "presses": 1, + "allowed": 1, + "understanding": 1, + "BOX": 2, + "entries": 1, + "confused.": 1, + "An": 1, + "entry...": 1, + "etc.": 1, + "pressed": 3, + "evaluate": 1, + "even": 1, + "not.": 1, + "There": 1, + "danger": 1, + "physical": 1, + "electrical": 1, + "damage": 1, + "way": 1, + "sensing": 1, + "happens": 1, + "work.": 1, + "Schematic": 1, + "No": 2, + "capacitors.": 1, + "connections": 1, + "directly": 1, + "ReadRow": 4, + "Shift": 3, + "preset": 1, + "P0": 2, + "P7": 2, + "LOWs": 1, + "INPUTSs": 1, + "act": 1, + "tiny": 1, + "capacitors": 1, + "Pin": 1, + "OUTPUT...": 1, + "Make": 1, + "Pn": 1, + "remain": 1, + "discharged": 1 }, "Cirru": { "print": 38, - "array": 14, "int": 36, - "string": 7, + "float": 1, "set": 12, - "f": 3, - "block": 1, - "(": 20, "a": 22, + "string": 7, + "(": 20, + ")": 20, + "nothing": 1, + "map": 8, "b": 7, "c": 9, - ")": 20, + "array": 14, + "code": 4, + "get": 4, + "container": 3, + "self": 2, + "child": 1, + "under": 2, + "parent": 1, + "x": 2, + "just": 4, + "-": 4, + "eval": 2, + "f": 3, + "block": 1, "call": 1, + "m": 3, "bool": 6, "true": 1, "false": 1, "yes": 1, "no": 1, - "map": 8, - "m": 3, - "float": 1, "require": 1, - "./stdio.cr": 1, - "self": 2, - "child": 1, - "under": 2, - "parent": 1, - "get": 4, - "x": 2, - "just": 4, - "-": 4, - "code": 4, - "eval": 2, - "nothing": 1, - "container": 3 + "./stdio.cr": 1 }, - "Clojure": { - "(": 83, - "defn": 4, - "prime": 2, - "[": 41, - "n": 9, - "]": 41, - "not": 3, - "-": 14, - "any": 1, - "zero": 1, - "map": 2, - "#": 1, - "rem": 2, - "%": 1, - ")": 84, - "range": 3, - ";": 8, - "while": 3, - "stops": 1, - "at": 1, - "the": 1, - "first": 2, - "collection": 1, - "element": 1, - "that": 1, - "evaluates": 1, - "to": 1, - "false": 2, - "like": 1, - "take": 1, - "for": 2, - "x": 6, - "html": 1, - "head": 1, - "meta": 1, - "{": 8, - "charset": 1, - "}": 8, - "link": 1, - "rel": 1, - "href": 1, - "script": 1, - "src": 1, - "body": 1, - "div.nav": 1, - "p": 1, - "into": 2, - "array": 3, - "aseq": 8, - "nil": 1, - "type": 2, - "let": 1, - "count": 3, - "a": 3, - "make": 1, - "loop": 1, - "seq": 1, - "i": 4, - "if": 1, - "<": 1, - "do": 1, - "aset": 1, - "recur": 1, - "next": 1, - "inc": 1, - "defprotocol": 1, - "ISound": 4, - "sound": 5, - "deftype": 2, - "Cat": 1, - "_": 3, - "Dog": 1, - "extend": 1, - "default": 1, - "rand": 2, - "scm*": 1, - "random": 1, - "real": 1, - "clj": 1, - "ns": 2, - "c2.svg": 2, - "use": 2, - "c2.core": 2, - "only": 4, - "unify": 2, - "c2.maths": 2, - "Pi": 2, - "Tau": 2, - "radians": 2, - "per": 2, - "degree": 2, - "sin": 2, - "cos": 2, - "mean": 2, - "cljs": 3, - "require": 1, - "c2.dom": 1, - "as": 1, - "dom": 1, - "Stub": 1, - "float": 2, - "fn": 2, - "which": 1, - "does": 1, - "exist": 1, - "on": 1, - "runtime": 1, - "def": 1, - "identity": 1, - "xy": 1, - "coordinates": 7, - "cond": 1, - "and": 1, - "vector": 1, - "y": 1, - "deftest": 1, - "function": 1, - "tests": 1, - "is": 7, - "true": 2, - "contains": 1, - "foo": 6, - "bar": 4, - "select": 1, - "keys": 2, - "baz": 4, - "vals": 1, - "filter": 1 - }, - "COBOL": { - "program": 1, - "-": 19, - "id.": 1, - "hello.": 3, - "procedure": 1, - "division.": 1, - "display": 1, - ".": 3, - "stop": 1, - "run.": 1, - "IDENTIFICATION": 2, - "DIVISION.": 4, - "PROGRAM": 2, - "ID.": 2, - "PROCEDURE": 2, - "DISPLAY": 2, - "STOP": 2, - "RUN.": 2, - "COBOL": 7, - "TEST": 2, - "RECORD.": 1, - "USAGES.": 1, - "COMP": 5, - "PIC": 5, - "S9": 4, - "(": 5, - ")": 5, - "COMP.": 3, - "COMP2": 2 - }, - "CoffeeScript": { - "CoffeeScript": 1, - "require": 21, - "CoffeeScript.require": 1, - "CoffeeScript.eval": 1, - "(": 193, - "code": 20, - "options": 16, - "{": 31, - "}": 34, - ")": 196, - "-": 107, - "options.bare": 2, - "on": 3, - "eval": 2, - "CoffeeScript.compile": 2, - "CoffeeScript.run": 3, - "Function": 1, - "return": 29, - "unless": 19, - "window": 1, - "CoffeeScript.load": 2, - "url": 2, - "callback": 35, - "xhr": 2, - "new": 12, - "window.ActiveXObject": 1, - "or": 22, - "XMLHttpRequest": 1, - "xhr.open": 1, - "true": 8, - "xhr.overrideMimeType": 1, - "if": 102, - "of": 7, - "xhr.onreadystatechange": 1, - "xhr.readyState": 1, - "is": 36, - "xhr.status": 1, - "in": 32, - "[": 134, - "]": 134, - "xhr.responseText": 1, - "else": 53, - "throw": 3, - "Error": 1, - "xhr.send": 1, - "null": 15, - "runScripts": 3, - "scripts": 2, - "document.getElementsByTagName": 1, - "coffees": 2, - "s": 10, - "for": 14, - "when": 16, - "s.type": 1, - "index": 4, - "length": 4, - "coffees.length": 1, - "do": 2, - "execute": 3, - "script": 7, - "+": 31, - ".type": 1, - "script.src": 2, - "script.innerHTML": 1, - "window.addEventListener": 1, - "addEventListener": 1, - "no": 3, - "attachEvent": 1, - "class": 11, - "Animal": 3, - "constructor": 6, - "@name": 2, - "move": 3, - "meters": 2, - "alert": 4, - "Snake": 2, - "extends": 6, - "super": 4, - "Horse": 2, - "sam": 1, - "tom": 1, - "sam.move": 1, - "tom.move": 1, - "#": 35, - "fs": 2, - "path": 3, - "Lexer": 3, - "RESERVED": 3, - "parser": 1, - "vm": 1, - "require.extensions": 3, - "module": 1, - "filename": 6, - "content": 4, - "compile": 5, - "fs.readFileSync": 1, - "module._compile": 1, - "require.registerExtension": 2, - "exports.VERSION": 1, - "exports.RESERVED": 1, - "exports.helpers": 2, - "exports.compile": 1, - "merge": 1, - "try": 3, - "js": 5, - "parser.parse": 3, - "lexer.tokenize": 3, - ".compile": 1, - "options.header": 1, - "catch": 2, - "err": 20, - "err.message": 2, - "options.filename": 5, - "header": 1, - "exports.tokens": 1, - "exports.nodes": 1, - "source": 5, - "typeof": 2, - "exports.run": 1, - "mainModule": 1, - "require.main": 1, - "mainModule.filename": 4, - "process.argv": 1, - "then": 24, - "fs.realpathSync": 2, - "mainModule.moduleCache": 1, - "and": 20, - "mainModule.paths": 1, - "._nodeModulePaths": 1, - "path.dirname": 2, - "path.extname": 1, - "isnt": 7, - "mainModule._compile": 2, - "exports.eval": 1, - "code.trim": 1, - "Script": 2, - "vm.Script": 1, - "options.sandbox": 4, - "instanceof": 2, - "Script.createContext": 2, - ".constructor": 1, - "sandbox": 8, - "k": 4, - "v": 4, - "own": 2, - "sandbox.global": 1, - "sandbox.root": 1, - "sandbox.GLOBAL": 1, - "global": 3, - "sandbox.__filename": 3, - "||": 3, - "sandbox.__dirname": 1, - "sandbox.module": 2, - "sandbox.require": 2, - "Module": 2, - "_module": 3, - "options.modulename": 1, - "_require": 2, - "Module._load": 1, - "_module.filename": 1, - "r": 4, - "Object.getOwnPropertyNames": 1, - "_require.paths": 1, - "_module.paths": 1, - "Module._nodeModulePaths": 1, - "process.cwd": 1, - "_require.resolve": 1, - "request": 2, - "Module._resolveFilename": 1, - "o": 4, - "o.bare": 1, - "ensure": 1, - "value": 25, - "vm.runInThisContext": 1, - "vm.runInContext": 1, - "lexer": 1, - "parser.lexer": 1, - "lex": 1, - "tag": 33, - "@yytext": 1, - "@yylineno": 1, - "@tokens": 7, - "@pos": 2, - "setInput": 1, - "upcomingInput": 1, - "parser.yy": 1, - "console.log": 1, - "number": 13, - "opposite": 2, - "square": 4, - "x": 6, - "*": 21, - "list": 2, - "math": 1, - "root": 1, - "Math.sqrt": 1, - "cube": 1, - "race": 1, - "winner": 2, - "runners...": 1, - "print": 1, - "runners": 1, - "elvis": 1, - "cubes": 1, - "math.cube": 1, - "num": 2, - "Rewriter": 2, - "INVERSES": 2, - "count": 5, - "starts": 1, - "compact": 1, - "last": 3, - "exports.Lexer": 1, - "tokenize": 1, - "opts": 1, - "WHITESPACE.test": 1, - "code.replace": 1, - "/": 44, - "r/g": 1, - ".replace": 3, - "TRAILING_SPACES": 2, - "@code": 1, - "The": 7, - "remainder": 1, - "the": 4, - "code.": 1, - "@line": 4, - "opts.line": 1, - "current": 5, - "line.": 1, - "@indent": 3, - "indentation": 3, - "level.": 3, - "@indebt": 1, - "over": 1, - "at": 2, - "@outdebt": 1, - "under": 1, - "outdentation": 1, - "@indents": 1, - "stack": 4, - "all": 1, - "levels.": 1, - "@ends": 1, - "pairing": 1, - "up": 1, - "tokens.": 1, - "Stream": 1, - "parsed": 1, - "tokens": 5, - "form": 1, - "line": 6, - ".": 13, - "i": 8, - "while": 4, - "@chunk": 9, - "i..": 1, - "@identifierToken": 1, - "@commentToken": 1, - "@whitespaceToken": 1, - "@lineToken": 1, - "@heredocToken": 1, - "@stringToken": 1, - "@numberToken": 1, - "@regexToken": 1, - "@jsToken": 1, - "@literalToken": 1, - "@closeIndentation": 1, - "@error": 10, - "@ends.pop": 1, - "opts.rewrite": 1, - "off": 1, - ".rewrite": 1, - "identifierToken": 1, - "match": 23, - "IDENTIFIER.exec": 1, - "input": 1, - "id": 16, - "colon": 3, - "@tag": 3, - "@token": 12, - "id.length": 1, - "forcedIdentifier": 4, - "prev": 17, - "not": 4, - "prev.spaced": 3, - "JS_KEYWORDS": 1, - "COFFEE_KEYWORDS": 1, - "id.toUpperCase": 1, - "LINE_BREAK": 2, - "@seenFor": 4, - "yes": 5, - "UNARY": 4, - "RELATION": 3, - "@value": 1, - "@tokens.pop": 1, - "JS_FORBIDDEN": 1, - "String": 1, - "id.reserved": 1, - "COFFEE_ALIAS_MAP": 1, - "COFFEE_ALIASES": 1, - "switch": 7, - "input.length": 1, - "numberToken": 1, - "NUMBER.exec": 1, - "BOX": 1, - "/.test": 4, - "/E/.test": 1, - "x/.test": 1, - "d*": 1, - "d": 2, - "lexedLength": 2, - "number.length": 1, - "octalLiteral": 2, - "/.exec": 2, - "parseInt": 5, - ".toString": 3, - "binaryLiteral": 2, - "b": 1, - "stringToken": 1, - "@chunk.charAt": 3, - "SIMPLESTR.exec": 1, - "string": 9, - "MULTILINER": 2, - "@balancedString": 1, - "<": 6, - "string.indexOf": 1, - "@interpolateString": 2, - "@escapeLines": 1, - "octalEsc": 1, - "|": 21, - "string.length": 1, - "heredocToken": 1, - "HEREDOC.exec": 1, - "heredoc": 4, - "quote": 5, - "heredoc.charAt": 1, - "doc": 11, - "@sanitizeHeredoc": 2, - "indent": 7, - "<=>": 1, - "indexOf": 1, - "interpolateString": 1, - "token": 1, - "STRING": 2, - "makeString": 1, - "n": 16, - "Matches": 1, - "consumes": 1, - "comments": 1, - "commentToken": 1, - "@chunk.match": 1, - "COMMENT": 2, - "comment": 2, - "here": 3, - "herecomment": 4, - "Array": 1, - ".join": 2, - "comment.length": 1, - "jsToken": 1, - "JSTOKEN.exec": 1, - "script.length": 1, - "regexToken": 1, - "HEREGEX.exec": 1, - "@heregexToken": 1, - "NOT_REGEX": 2, - "NOT_SPACED_REGEX": 2, - "REGEX.exec": 1, - "regex": 5, - "flags": 2, - "..1": 1, - "match.length": 1, - "heregexToken": 1, - "heregex": 1, - "body": 2, - "body.indexOf": 1, - "re": 1, - "body.replace": 1, - "HEREGEX_OMIT": 3, - "//g": 1, - "re.match": 1, - "*/": 2, - "heregex.length": 1, - "@tokens.push": 1, - "tokens.push": 1, - "value...": 1, - "continue": 3, - "value.replace": 2, - "/g": 3, - "spaced": 1, - "reserved": 1, - "word": 1, - "value.length": 2, - "MATH": 3, - "COMPARE": 3, - "COMPOUND_ASSIGN": 2, - "SHIFT": 3, - "LOGIC": 3, - ".spaced": 1, - "CALLABLE": 2, - "INDEXABLE": 2, - "@ends.push": 1, - "@pair": 1, - "sanitizeHeredoc": 1, - "HEREDOC_ILLEGAL.test": 1, - "doc.indexOf": 1, - "HEREDOC_INDENT.exec": 1, - "attempt": 2, - "attempt.length": 1, - "indent.length": 1, - "doc.replace": 2, - "///": 12, - "///g": 1, - "n/": 1, - "tagParameters": 1, - "this": 6, - "tokens.length": 1, - "tok": 5, - "stack.push": 1, - "stack.length": 1, - "stack.pop": 2, - "closeIndentation": 1, - "@outdentToken": 1, - "balancedString": 1, - "str": 1, - "end": 2, - "continueCount": 3, - "str.length": 1, - "letter": 1, - "str.charAt": 1, - "missing": 1, - "starting": 1, - "Hello": 1, - "name.capitalize": 1, - "OUTDENT": 1, - "THROW": 1, - "EXTENDS": 1, - "&": 4, - "false": 4, - "delete": 1, - "break": 1, - "debugger": 1, - "finally": 2, - "undefined": 1, - "until": 1, - "loop": 1, - "by": 1, - "&&": 1, - "case": 1, - "default": 1, - "function": 2, - "var": 1, - "void": 1, - "with": 1, - "const": 1, - "let": 2, - "enum": 1, - "export": 1, - "import": 1, - "native": 1, - "__hasProp": 1, - "__extends": 1, - "__slice": 1, - "__bind": 1, - "__indexOf": 1, - "implements": 1, - "interface": 1, - "package": 1, - "private": 1, - "protected": 1, - "public": 1, - "static": 1, - "yield": 1, - "arguments": 1, - "S": 10, - "OPERATOR": 1, - "%": 1, - "compound": 1, - "assign": 1, - "compare": 1, - "zero": 1, - "fill": 1, - "right": 1, - "shift": 2, - "doubles": 1, - "logic": 1, - "soak": 1, - "access": 1, - "range": 1, - "splat": 1, - "WHITESPACE": 1, - "###": 3, - "s*#": 1, - "##": 1, - ".*": 1, - "CODE": 1, - "MULTI_DENT": 1, - "SIMPLESTR": 1, - "JSTOKEN": 1, - "REGEX": 1, - "disallow": 1, - "leading": 1, - "whitespace": 1, - "equals": 1, - "signs": 1, - "every": 1, - "other": 1, - "thing": 1, - "anything": 1, - "escaped": 1, - "character": 1, - "imgy": 2, - "w": 2, - "HEREGEX": 1, - "#.*": 1, - "n/g": 1, - "HEREDOC_INDENT": 1, - "HEREDOC_ILLEGAL": 1, - "//": 1, - "LINE_CONTINUER": 1, - "s*": 1, - "BOOL": 1, - "NOT_REGEX.concat": 1, - "CALLABLE.concat": 1, - "async": 1, - "nack": 1, - "bufferLines": 3, - "pause": 2, - "sourceScriptEnv": 3, - "join": 8, - "exists": 5, - "basename": 2, - "resolve": 2, - "module.exports": 1, - "RackApplication": 1, - "@configuration": 1, - "@root": 8, - "@firstHost": 1, - "@logger": 1, - "@configuration.getLogger": 1, - "@readyCallbacks": 3, - "@quitCallbacks": 3, - "@statCallbacks": 3, - "ready": 1, - "@state": 11, - "@readyCallbacks.push": 1, - "@initialize": 2, - "quit": 1, - "@quitCallbacks.push": 1, - "@terminate": 2, - "queryRestartFile": 1, - "fs.stat": 1, - "stats": 1, - "@mtime": 5, - "lastMtime": 2, - "stats.mtime.getTime": 1, - "setPoolRunOnceFlag": 1, - "@statCallbacks.length": 1, - "alwaysRestart": 2, - "@pool.runOnce": 1, - "statCallback": 2, - "@statCallbacks.push": 1, - "loadScriptEnvironment": 1, - "env": 18, - "async.reduce": 1, - "scriptExists": 2, - "loadRvmEnvironment": 1, - "rvmrcExists": 2, - "rvm": 1, - "@configuration.rvmPath": 1, - "rvmExists": 2, - "libexecPath": 1, - "before": 2, - ".trim": 1, - "loadEnvironment": 1, - "@queryRestartFile": 2, - "@loadScriptEnvironment": 1, - "@configuration.env": 1, - "@loadRvmEnvironment": 1, - "initialize": 1, - "@quit": 3, - "@loadEnvironment": 1, - "@logger.error": 3, - "@pool": 2, - "nack.createPool": 1, - "size": 1, - ".POW_WORKERS": 1, - "@configuration.workers": 1, - "idle": 1, - ".POW_TIMEOUT": 1, - "@configuration.timeout": 1, - "@pool.stdout": 1, - "@logger.info": 1, - "@pool.stderr": 1, - "@logger.warning": 1, - "@pool.on": 2, - "process": 2, - "@logger.debug": 2, - "readyCallback": 2, - "terminate": 1, - "@ready": 3, - "@pool.quit": 1, - "quitCallback": 2, - "handle": 1, - "req": 4, - "res": 3, - "next": 3, - "resume": 2, - "@setPoolRunOnceFlag": 1, - "@restartIfNecessary": 1, - "req.proxyMetaVariables": 1, - "SERVER_PORT": 1, - "@configuration.dstPort.toString": 1, - "@pool.proxy": 1, - "restart": 1, - "restartIfNecessary": 1, - "mtimeChanged": 2, - "@restart": 1, - "writeRvmBoilerplate": 1, - "powrc": 3, - "boilerplate": 2, - "@constructor.rvmBoilerplate": 1, - "fs.readFile": 1, - "contents": 2, - "contents.indexOf": 1, - "fs.writeFile": 1, - "@rvmBoilerplate": 1, - "dnsserver": 1, - "exports.Server": 1, - "Server": 2, - "dnsserver.Server": 1, - "NS_T_A": 3, - "NS_T_NS": 2, - "NS_T_CNAME": 1, - "NS_T_SOA": 2, - "NS_C_IN": 5, - "NS_RCODE_NXDOMAIN": 2, - "domain": 6, - "@rootAddress": 2, - "@domain": 3, - "domain.toLowerCase": 1, - "@soa": 2, - "createSOA": 2, - "@on": 1, - "@handleRequest": 1, - "handleRequest": 1, - "question": 5, - "req.question": 1, - "subdomain": 10, - "@extractSubdomain": 1, - "question.name": 3, - "isARequest": 2, - "res.addRR": 2, - "subdomain.getAddress": 1, - ".isEmpty": 1, - "isNSRequest": 2, - "res.header.rcode": 1, - "res.send": 1, - "extractSubdomain": 1, - "name": 5, - "Subdomain.extract": 1, - "question.type": 2, - "question.class": 2, - "mname": 2, - "rname": 2, - "serial": 2, - "Date": 1, - ".getTime": 1, - "refresh": 2, - "retry": 2, - "expire": 2, - "minimum": 2, - "dnsserver.createSOA": 1, - "exports.createServer": 1, - "address": 4, - "exports.Subdomain": 1, - "Subdomain": 4, - "@extract": 1, - "name.toLowerCase": 1, - "offset": 4, - "name.length": 1, - "domain.length": 1, - "name.slice": 2, - "@for": 2, - "IPAddressSubdomain.pattern.test": 1, - "IPAddressSubdomain": 2, - "EncodedSubdomain.pattern.test": 1, - "EncodedSubdomain": 2, - "@subdomain": 1, - "@address": 2, - "@labels": 2, - ".split": 1, - "@length": 3, - "@labels.length": 1, - "isEmpty": 1, - "getAddress": 3, - "@pattern": 2, - "@labels.slice": 1, - "a": 2, - "z0": 2, - "decode": 2, - "exports.encode": 1, - "encode": 1, - "ip": 2, - "byte": 2, - "ip.split": 1, - "<<": 1, - "PATTERN": 1, - "exports.decode": 1, - "PATTERN.test": 1, - "ip.push": 1, - "xFF": 1, - "ip.join": 1 - }, - "Common Lisp": { - ";": 152, - "@file": 1, - "macros": 2, - "-": 161, - "advanced.cl": 1, - "@breif": 1, - "Advanced": 1, - "macro": 5, - "practices": 1, - "defining": 1, - "your": 1, - "own": 1, - "Macro": 1, - "definition": 1, - "skeleton": 1, - "(": 365, - "defmacro": 5, - "name": 6, - "parameter*": 1, - ")": 372, - "body": 8, - "form*": 1, - "Note": 2, - "that": 5, - "backquote": 1, - "expression": 2, - "is": 6, - "most": 2, - "often": 1, - "used": 2, - "in": 23, - "the": 35, - "form": 1, - "primep": 4, - "test": 1, - "a": 7, - "number": 2, - "for": 3, - "prime": 12, - "defun": 23, - "n": 8, - "if": 14, - "<": 1, - "return": 3, - "from": 8, - "do": 9, - "i": 8, - "+": 35, - "p": 10, - "t": 7, - "not": 6, - "zerop": 1, - "mod": 1, - "sqrt": 1, - "when": 4, - "next": 11, - "bigger": 1, - "than": 1, - "specified": 2, - "The": 2, - "recommended": 1, - "procedures": 1, - "to": 4, - "writting": 1, - "new": 6, - "are": 2, - "as": 1, - "follows": 1, - "Write": 2, - "sample": 2, - "call": 2, - "and": 12, - "code": 2, - "it": 2, - "should": 1, - "expand": 1, - "into": 2, - "primes": 3, - "format": 3, - "Expected": 1, - "expanded": 1, - "codes": 1, - "generate": 1, - "hardwritten": 1, - "expansion": 2, - "arguments": 1, - "var": 49, - "range": 4, - "&": 8, - "rest": 5, - "let": 6, - "first": 5, - "start": 5, - "second": 3, - "end": 8, - "third": 2, - "@body": 4, - "More": 1, - "concise": 1, - "implementations": 1, - "with": 7, - "synonym": 1, - "also": 1, - "emits": 1, - "more": 1, - "friendly": 1, - "messages": 1, - "on": 1, - "incorrent": 1, - "input.": 1, + "Julia": { + "##": 5, "Test": 1, - "result": 1, - "of": 3, - "macroexpand": 2, - "function": 2, - "gensyms": 4, - "value": 8, - "Define": 1, - "note": 1, - "how": 1, - "comma": 1, - "interpolate": 1, - "loop": 2, - "names": 2, - "collect": 1, - "gensym": 1, - "#": 15, - "|": 9, - "ESCUELA": 1, - "POLITECNICA": 1, - "SUPERIOR": 1, - "UNIVERSIDAD": 1, - "AUTONOMA": 1, - "DE": 1, - "MADRID": 1, - "INTELIGENCIA": 1, - "ARTIFICIAL": 1, - "Motor": 1, - "de": 2, - "inferencia": 1, - "Basado": 1, - "en": 2, - "parte": 1, - "Peter": 1, - "Norvig": 1, - "Global": 1, - "variables": 6, - "defvar": 4, - "*hypothesis": 1, - "list*": 7, - "*rule": 4, - "*fact": 2, - "Constants": 1, - "defconstant": 2, - "fail": 10, - "nil": 3, - "no": 6, - "bindings": 45, - "lambda": 4, - "b": 6, - "mapcar": 2, - "man": 3, - "luis": 1, - "pedro": 1, - "woman": 2, - "mart": 1, - "daniel": 1, - "laura": 1, - "facts": 1, - "x": 47, - "aux": 3, - "unify": 12, - "hypothesis": 10, - "list": 9, - "____________________________________________________________________________": 5, - "FUNCTION": 3, - "FIND": 1, - "RULES": 2, - "COMMENTS": 3, - "Returns": 2, - "rules": 5, - "whose": 1, - "THENs": 1, - "term": 1, - "given": 3, - "": 2, - "satisfy": 1, - "this": 1, - "requirement": 1, - "renamed.": 1, - "EXAMPLES": 2, - "setq": 1, - "renamed": 3, - "rule": 17, - "rename": 1, - "then": 7, - "unless": 3, - "null": 1, - "equal": 4, - "VALUE": 1, - "FROM": 1, - "all": 2, - "solutions": 1, - "found": 5, - "using": 1, - "": 1, - ".": 10, - "single": 1, - "can": 4, - "have": 1, - "multiple": 1, - "solutions.": 1, - "mapcan": 1, - "R1": 2, - "pertenece": 3, - "E": 4, - "_": 8, - "R2": 2, - "Xs": 2, - "Then": 1, - "EVAL": 2, - "RULE": 2, - "PERTENECE": 6, - "E.42": 2, - "returns": 4, - "NIL": 3, - "That": 2, - "query": 4, - "be": 2, - "proven": 2, - "binding": 17, - "necessary": 2, - "fact": 4, - "has": 1, - "On": 1, - "other": 1, - "hand": 1, - "E.49": 2, - "XS.50": 2, - "R2.": 1, - "eval": 6, - "ifs": 1, - "NOT": 2, - "question": 1, - "T": 1, - "equality": 2, - "UNIFY": 1, - "Finds": 1, - "general": 1, - "unifier": 1, - "two": 2, - "input": 2, - "expressions": 2, - "taking": 1, - "account": 1, - "": 1, - "In": 1, "case": 1, - "total": 1, - "unification.": 1, - "Otherwise": 1, - "which": 1, - "constant": 1, - "anonymous": 4, - "make": 4, - "variable": 6, - "Auxiliary": 1, - "Functions": 1, - "cond": 3, - "or": 4, - "get": 5, - "lookup": 5, - "occurs": 5, - "extend": 2, - "symbolp": 2, - "eql": 2, - "char": 2, - "symbol": 2, - "assoc": 1, - "car": 2, - "val": 6, - "cdr": 2, - "cons": 2, - "append": 1, - "eq": 7, - "consp": 2, - "subst": 3, - "listp": 1, - "exp": 1, - "unique": 3, - "find": 6, - "anywhere": 6, - "predicate": 8, - "tree": 11, - "optional": 2, - "so": 4, - "far": 4, - "atom": 3, - "funcall": 2, - "pushnew": 1, - "gentemp": 2, - "quote": 3, - "s/reuse": 1, - "cons/cons": 1, - "expresion": 2, - "some": 1, - "EOF": 1, - "*": 2, - "lisp": 1, - "package": 1, - "foo": 2, - "Header": 1, - "comment.": 4, - "*foo*": 1, - "execute": 1, - "compile": 1, - "toplevel": 2, - "load": 1, - "add": 1, - "y": 2, - "key": 1, - "z": 2, - "declare": 1, - "ignore": 1, - "Inline": 1, - "Multi": 1, - "line": 2, - "After": 1 + "from": 1, + "Issue": 1, + "#445": 1, + "#STOCKCORR": 1, + "-": 11, + "The": 1, + "original": 1, + "unoptimised": 1, + "code": 1, + "that": 1, + "simulates": 1, + "two": 2, + "correlated": 1, + "assets": 1, + "function": 1, + "stockcorr": 1, + "(": 13, + ")": 13, + "Correlated": 1, + "asset": 1, + "information": 1, + "CurrentPrice": 3, + "[": 20, + "]": 20, + "#": 11, + "Initial": 1, + "Prices": 1, + "of": 6, + "the": 2, + "stocks": 1, + "Corr": 2, + ";": 1, + "Correlation": 1, + "Matrix": 2, + "T": 5, + "Number": 2, + "days": 3, + "to": 1, + "simulate": 1, + "years": 1, + "n": 4, + "simulations": 1, + "dt": 3, + "/250": 1, + "Time": 1, + "step": 1, + "year": 1, + "Div": 3, + "Dividend": 1, + "Vol": 5, + "Volatility": 1, + "Market": 1, + "Information": 1, + "r": 3, + "Risk": 1, + "free": 1, + "rate": 1, + "Define": 1, + "storages": 1, + "SimulPriceA": 5, + "zeros": 2, + "Simulated": 2, + "Price": 2, + "Asset": 2, + "A": 1, + "SimulPriceB": 5, + "B": 1, + "Generating": 1, + "paths": 1, + "stock": 1, + "prices": 1, + "by": 2, + "Geometric": 1, + "Brownian": 1, + "Motion": 1, + "UpperTriangle": 2, + "chol": 1, + "Cholesky": 1, + "decomposition": 1, + "for": 2, + "i": 5, + "Wiener": 1, + "randn": 1, + "CorrWiener": 1, + "Wiener*UpperTriangle": 1, + "j": 7, + "*exp": 2, + "/2": 2, + "*dt": 2, + "+": 2, + "*sqrt": 2, + "*CorrWiener": 2, + "end": 3, + "return": 1 }, - "Component Pascal": { - "MODULE": 2, - "ObxControls": 1, - ";": 123, - "IMPORT": 2, - "Dialog": 1, - "Ports": 1, - "Properties": 1, - "Views": 1, - "CONST": 1, - "beginner": 5, - "advanced": 3, - "expert": 1, - "guru": 2, - "TYPE": 1, - "View": 6, - "POINTER": 2, - "TO": 2, - "RECORD": 2, - "(": 91, - "Views.View": 2, - ")": 94, - "size": 1, - "INTEGER": 10, - "END": 31, - "VAR": 9, - "data*": 1, - "class*": 1, - "list*": 1, - "Dialog.List": 1, - "width*": 1, - "predef": 12, - "ARRAY": 2, - "OF": 2, - "PROCEDURE": 12, - "SetList": 4, - "BEGIN": 13, - "IF": 11, - "data.class": 5, - "THEN": 12, - "data.list.SetLen": 3, - "data.list.SetItem": 11, - "ELSIF": 1, - "ELSE": 3, - "v": 6, - "CopyFromSimpleView": 2, - "source": 2, - "v.size": 10, - ".size": 1, - "Restore": 2, - "f": 1, - "Views.Frame": 1, - "l": 1, - "t": 1, - "r": 7, - "b": 1, - "[": 13, - "]": 13, - "f.DrawRect": 1, - "Ports.fill": 1, - "Ports.red": 1, - "HandlePropMsg": 2, - "msg": 2, - "Views.PropMessage": 1, - "WITH": 1, - "Properties.SizePref": 1, - "DO": 4, - "msg.w": 1, - "msg.h": 1, - "ClassNotify*": 1, - "op": 4, - "from": 2, - "to": 5, - "Dialog.changed": 2, - "OR": 4, - "&": 8, - "data.list.index": 3, - "data.width": 4, - "Dialog.Update": 2, - "data": 2, - "Dialog.UpdateList": 1, - "data.list": 1, - "ClassNotify": 1, - "ListNotify*": 1, - "ListNotify": 1, - "ListGuard*": 1, - "par": 2, - "Dialog.Par": 2, - "par.disabled": 1, - "ListGuard": 1, - "WidthGuard*": 1, - "par.readOnly": 1, - "#": 3, - "WidthGuard": 1, - "Open*": 1, - "NEW": 2, - "*": 1, - "Ports.mm": 1, - "Views.OpenAux": 1, - "Open": 1, - "ObxControls.": 1, - "ObxFact": 1, - "Stores": 1, - "Models": 1, - "TextModels": 1, - "TextControllers": 1, - "Integers": 1, - "Read": 3, - "TextModels.Reader": 2, - "x": 15, - "Integers.Integer": 3, - "i": 17, - "len": 5, - "beg": 11, - "ch": 14, - "CHAR": 3, - "buf": 5, - "r.ReadChar": 5, - "WHILE": 3, - "r.eot": 4, - "<=>": 1, - "ReadChar": 1, - "ASSERT": 1, - "eot": 1, - "<": 8, - "r.Pos": 2, - "-": 1, - "REPEAT": 3, - "INC": 4, - "UNTIL": 3, - "+": 1, - "r.SetPos": 2, - "X": 1, - "Integers.ConvertFromString": 1, - "Write": 3, - "w": 4, - "TextModels.Writer": 2, - "Integers.Sign": 2, - "w.WriteChar": 3, - "Integers.Digits10Of": 1, - "DEC": 1, - "Integers.ThisDigit10": 1, - "Compute*": 1, - "end": 6, - "n": 3, - "s": 3, - "Stores.Operation": 1, - "attr": 3, - "TextModels.Attributes": 1, - "c": 3, - "TextControllers.Controller": 1, - "TextControllers.Focus": 1, - "NIL": 3, - "c.HasSelection": 1, - "c.GetSelection": 1, - "c.text.NewReader": 1, - "r.ReadPrev": 2, - "r.attr": 1, - "Integers.Compare": 1, - "Integers.Long": 3, - "MAX": 1, - "LONGINT": 1, - "SHORT": 1, - "Integers.Short": 1, - "Integers.Product": 1, - "Models.BeginScript": 1, - "c.text": 2, - "c.text.Delete": 1, - "c.text.NewWriter": 1, - "w.SetPos": 1, - "w.SetAttr": 1, - "Models.EndScript": 1, - "Compute": 1, - "ObxFact.": 1 - }, - "Coq": { - "Inductive": 41, - "day": 9, - "Type": 86, - "|": 457, - "monday": 5, - "tuesday": 3, - "wednesday": 3, - "thursday": 3, - "friday": 3, - "saturday": 3, - "sunday": 2, - "day.": 1, - "Definition": 46, - "next_weekday": 3, - "(": 1248, - "d": 6, - ")": 1249, - "match": 70, - "with": 223, - "end.": 52, - "Example": 37, - "test_next_weekday": 1, - "tuesday.": 1, - "Proof.": 208, - "simpl.": 70, - "reflexivity.": 199, - "Qed.": 194, - "bool": 38, - "true": 68, - "false": 48, - "bool.": 1, - "negb": 10, - "b": 89, - "andb": 8, - "b1": 35, - "b2": 23, - "orb": 8, - "test_orb1": 1, - "true.": 16, - "test_orb2": 1, - "false.": 12, - "test_orb3": 1, - "test_orb4": 1, - "nandb": 5, - "end": 16, - "test_nandb1": 1, - "test_nandb2": 1, - "test_nandb3": 1, - "test_nandb4": 1, - "andb3": 5, - "b3": 2, - "test_andb31": 1, - "test_andb32": 1, - "test_andb33": 1, - "test_andb34": 1, - "Module": 11, - "Playground1.": 5, - "nat": 108, - "O": 98, - "S": 186, - "-": 508, - "nat.": 4, - "pred": 3, - "n": 369, - "minustwo": 1, - "Fixpoint": 36, - "evenb": 5, - "oddb": 5, - ".": 433, - "test_oddb1": 1, - "test_oddb2": 1, - "plus": 10, - "m": 201, - "mult": 3, - "minus": 3, - "_": 67, - "exp": 2, - "base": 3, - "power": 2, - "p": 81, - "factorial": 2, - "test_factorial1": 1, - "Notation": 39, - "x": 266, - "y": 116, - "at": 17, - "level": 11, - "left": 6, - "associativity": 7, - "nat_scope.": 3, - "beq_nat": 24, - "forall": 248, - "+": 227, - "n.": 44, - "Theorem": 115, - "plus_O_n": 1, - "intros": 258, - "plus_1_1": 1, - "mult_0_1": 1, - "*": 59, - "O.": 5, - "plus_id_example": 1, - "m.": 21, - "H.": 100, - "rewrite": 241, - "plus_id_exercise": 1, - "o": 25, - "o.": 4, - "H": 76, - "mult_0_plus": 1, - "plus_O_n.": 1, - "mult_1_plus": 1, - "plus_1_1.": 1, - "mult_1": 1, - "induction": 81, - "as": 77, - "[": 170, - "plus_1_neq_0": 1, - "destruct": 94, - "]": 173, - "Case": 51, - "IHn": 12, - "plus_comm": 3, - "plus_distr.": 1, - "beq_nat_refl": 3, - "plus_rearrange": 1, - "q": 15, - "q.": 2, - "assert": 68, - "plus_comm.": 3, - "plus_swap": 2, - "p.": 9, - "plus_assoc.": 4, - "H2": 12, - "H2.": 20, - "plus_swap.": 2, - "<->": 31, - "IHm": 2, - "reflexivity": 16, - "Qed": 23, - "mult_comm": 2, - "Proof": 12, - "0": 5, - "simpl": 116, - "mult_0_r.": 4, - "mult_distr": 1, - "mult_1_distr.": 1, - "mult_1.": 1, - "bad": 1, - "zero_nbeq_S": 1, - "andb_false_r": 1, - "plus_ble_compat_1": 1, - "ble_nat": 6, - "IHp.": 2, - "S_nbeq_0": 1, - "mult_1_1": 1, - "plus_0_r.": 1, - "all3_spec": 1, - "c": 70, - "c.": 5, - "b.": 14, - "Lemma": 51, - "mult_plus_1": 1, - "IHm.": 1, - "mult_mult": 1, - "IHn.": 3, - "mult_plus_1.": 1, - "mult_plus_distr_r": 1, - "mult_mult.": 3, - "H1": 18, - "plus_assoc": 1, - "H1.": 31, - "H3": 4, - "H3.": 5, - "mult_assoc": 1, - "mult_plus_distr_r.": 1, - "bin": 9, - "BO": 4, - "D": 9, - "M": 4, - "bin.": 1, - "incbin": 2, - "bin2un": 3, - "bin_comm": 1, - "End": 15, - "Require": 17, - "Import": 11, - "List": 2, - "Multiset": 2, - "PermutSetoid": 1, - "Relations": 2, - "Sorting.": 1, - "Section": 4, - "defs.": 2, - "Variable": 7, - "A": 113, - "Type.": 3, - "leA": 25, - "relation": 19, - "A.": 6, - "eqA": 29, - "Let": 8, - "gtA": 1, - "y.": 15, - "Hypothesis": 7, - "leA_dec": 4, - "{": 39, - "}": 35, - "eqA_dec": 26, - "leA_refl": 1, - "leA_trans": 2, - "z": 14, - "z.": 6, - "leA_antisym": 1, - "Hint": 9, - "Resolve": 5, - "leA_refl.": 1, - "Immediate": 1, - "leA_antisym.": 1, - "emptyBag": 4, - "EmptyBag": 2, - "singletonBag": 10, - "SingletonBag": 2, - "eqA_dec.": 2, - "Tree": 24, - "Tree_Leaf": 9, - "Tree_Node": 11, - "Tree.": 1, - "leA_Tree": 16, - "a": 207, - "t": 93, - "True": 1, - "T1": 25, - "T2": 20, - "leA_Tree_Leaf": 5, - "Tree_Leaf.": 1, - ";": 375, - "auto": 73, - "datatypes.": 47, - "leA_Tree_Node": 1, - "G": 6, - "is_heap": 18, - "Prop": 17, - "nil_is_heap": 5, - "node_is_heap": 7, - "invert_heap": 3, - "/": 41, - "T2.": 1, - "inversion": 104, - "is_heap_rect": 1, - "P": 32, - "T": 49, - "T.": 9, - "simple": 7, - "PG": 2, - "PD": 2, - "PN.": 2, - "elim": 21, - "H4": 7, - "intros.": 27, - "apply": 340, - "X0": 2, - "is_heap_rec": 1, - "Set": 4, - "X": 191, - "low_trans": 3, - "merge_lem": 3, - "l1": 89, - "l2": 73, - "list": 78, - "merge_exist": 5, - "l": 379, - "Sorted": 5, - "meq": 15, - "list_contents": 30, - "munion": 18, - "HdRel": 4, - "l2.": 8, - "Morphisms.": 2, - "Instance": 7, - "Equivalence": 2, - "@meq": 4, - "constructor": 6, - "red.": 1, - "meq_trans.": 1, - "Defined.": 1, - "Proper": 5, - "@munion": 1, - "now": 24, - "meq_congr.": 1, - "merge": 5, - "fix": 2, - "l1.": 5, - "rename": 2, - "into": 2, - "l.": 26, - "revert": 5, - "H0.": 24, - "a0": 15, - "l0": 7, - "Sorted_inv": 2, - "in": 221, - "H0": 16, - "clear": 7, - "merge0.": 2, - "using": 18, - "cons_sort": 2, - "cons_leA": 2, - "munion_ass.": 2, - "cons_leA.": 2, - "@HdRel_inv": 2, - "trivial": 15, - "merge0": 1, - "setoid_rewrite": 2, - "munion_ass": 1, - "munion_comm.": 2, - "repeat": 11, - "munion_comm": 1, - "contents": 12, - "multiset": 2, - "t1": 48, - "t2": 51, - "equiv_Tree": 1, - "insert_spec": 3, - "insert_exist": 4, - "insert": 2, - "unfold": 58, - "T0": 2, - "treesort_twist1": 1, - "T3": 2, - "HeapT3": 1, - "ConT3": 1, - "LeA.": 1, - "LeA": 1, - "treesort_twist2": 1, - "build_heap": 3, - "heap_exist": 3, - "list_to_heap": 2, - "nil": 46, - "exact": 4, - "nil_is_heap.": 1, - "i": 11, - "meq_trans": 10, - "meq_right": 2, - "meq_sym": 2, - "flat_spec": 3, - "flat_exist": 3, - "heap_to_list": 2, - "h": 14, - "s1": 20, - "i1": 15, - "m1": 1, - "s2": 2, - "i2": 10, - "m2.": 1, - "meq_congr": 1, - "munion_rotate.": 1, - "treesort": 1, - "&": 21, - "permutation": 43, - "intro": 27, - "permutation.": 1, - "exists": 60, - "Export": 10, - "SfLib.": 2, - "AExp.": 2, - "aexp": 30, - "ANum": 18, - "APlus": 14, - "AMinus": 9, - "AMult": 9, - "aexp.": 1, - "bexp": 22, - "BTrue": 10, - "BFalse": 11, - "BEq": 9, - "BLe": 9, - "BNot": 9, - "BAnd": 10, - "bexp.": 1, - "aeval": 46, - "e": 53, - "a1": 56, - "a2": 62, - "test_aeval1": 1, - "beval": 16, - "optimize_0plus": 15, - "e2": 54, - "e1": 58, - "test_optimize_0plus": 1, - "optimize_0plus_sound": 4, - "e.": 15, - "e1.": 1, - "SCase": 24, - "SSCase": 3, - "IHe2.": 10, - "IHe1.": 11, - "aexp_cases": 3, - "try": 17, - "IHe1": 6, - "IHe2": 6, - "optimize_0plus_all": 2, - "Tactic": 9, - "tactic": 9, - "first": 18, - "ident": 9, - "Case_aux": 38, - "optimize_0plus_all_sound": 1, - "bexp_cases": 4, - "optimize_and": 5, - "optimize_and_sound": 1, - "IHe": 2, - "aevalR_first_try.": 2, - "aevalR": 18, - "E_Anum": 1, - "E_APlus": 2, - "n1": 45, - "n2": 41, - "E_AMinus": 2, - "E_AMult": 2, - "Reserved": 4, - "E_ANum": 1, - "where": 6, - "bevalR": 11, - "E_BTrue": 1, - "E_BFalse": 1, - "E_BEq": 1, - "E_BLe": 1, - "E_BNot": 1, - "E_BAnd": 1, - "aeval_iff_aevalR": 9, - "split.": 17, - "subst": 7, - "generalize": 13, - "dependent": 6, - "IHa1": 1, - "IHa2": 1, - "beval_iff_bevalR": 1, - "*.": 110, - "subst.": 43, - "IHbevalR": 1, - "IHbevalR1": 1, - "IHbevalR2": 1, - "a.": 6, - "constructor.": 16, - "<": 76, - "remember": 12, - "IHa.": 1, - "IHa1.": 1, - "IHa2.": 1, - "silly_presburger_formula": 1, - "<=>": 12, - "3": 2, - "omega": 7, - "Id": 7, - "id": 7, - "id.": 1, - "beq_id": 14, - "id1": 2, - "id2": 2, - "beq_id_refl": 1, - "i.": 2, - "beq_nat_refl.": 1, - "beq_id_eq": 4, - "i2.": 8, - "i1.": 3, - "beq_nat_eq": 2, - "beq_id_false_not_eq": 1, - "C.": 3, - "n0": 5, - "beq_false_not_eq": 1, - "not_eq_beq_id_false": 1, - "not_eq_beq_false.": 1, - "beq_nat_sym": 2, - "AId": 4, - "com_cases": 1, - "SKIP": 5, - "IFB": 4, - "WHILE": 5, - "c1": 14, - "c2": 9, - "e3": 1, - "cl": 1, - "st": 113, - "E_IfTrue": 2, - "THEN": 3, - "ELSE": 3, - "FI": 3, - "E_WhileEnd": 2, - "DO": 4, - "END": 4, - "E_WhileLoop": 2, - "ceval_cases": 1, - "E_Skip": 1, - "E_Ass": 1, - "E_Seq": 1, - "E_IfFalse": 1, - "assignment": 1, - "command": 2, - "if": 10, - "st1": 2, - "IHi1": 3, - "Heqst1": 1, - "Hceval.": 4, - "Hceval": 2, - "assumption.": 61, - "bval": 2, - "ceval_step": 3, - "Some": 21, - "ceval_step_more": 7, - "x1.": 3, - "omega.": 7, - "x2.": 2, - "IHHce.": 2, - "%": 3, - "IHHce1.": 1, - "IHHce2.": 1, - "x0": 14, - "plus2": 1, - "nx": 3, - "Y": 38, - "ny": 2, - "XtimesYinZ": 1, - "Z": 11, - "ny.": 1, - "loop": 2, - "contra.": 19, - "loopdef.": 1, - "Heqloopdef.": 8, - "contra1.": 1, - "IHcontra2.": 1, - "no_whiles": 15, - "com": 5, - "ct": 2, - "cf": 2, - "no_Whiles": 10, - "noWhilesSKIP": 1, - "noWhilesAss": 1, - "noWhilesSeq": 1, - "noWhilesIf": 1, - "no_whiles_eqv": 1, - "noWhilesSKIP.": 1, - "noWhilesAss.": 1, - "noWhilesSeq.": 1, - "IHc1.": 2, - "auto.": 47, - "eauto": 10, - "andb_true_elim1": 4, - "IHc2.": 2, - "andb_true_elim2": 4, - "noWhilesIf.": 1, - "andb_true_intro.": 2, - "no_whiles_terminate": 1, - "state": 6, - "st.": 7, - "update": 2, - "IHc1": 2, - "IHc2": 2, - "H5.": 1, - "x1": 11, - "r": 11, - "r.": 3, - "symmetry": 4, - "Heqr.": 1, - "H4.": 2, - "s": 13, - "Heqr": 3, - "H8.": 1, - "H10": 1, - "assumption": 10, - "beval_short_circuit": 5, - "beval_short_circuit_eqv": 1, - "sinstr": 8, - "SPush": 8, - "SLoad": 6, - "SPlus": 10, - "SMinus": 11, - "SMult": 11, - "sinstr.": 1, - "s_execute": 21, - "stack": 7, - "prog": 2, - "cons": 26, - "al": 3, - "bl": 3, - "s_execute1": 1, - "empty_state": 2, - "s_execute2": 1, - "s_compile": 36, - "v": 28, - "s_compile1": 1, - "execute_theorem": 1, - "other": 20, - "other.": 4, - "app_ass.": 6, - "s_compile_correct": 1, - "app_nil_end.": 1, - "execute_theorem.": 1, - "Eqdep_dec.": 1, - "Arith.": 2, - "eq_rect_eq_nat": 2, - "Q": 3, - "eq_rect": 3, - "h.": 1, - "K_dec_set": 1, - "eq_nat_dec.": 1, - "Scheme": 1, - "le_ind": 1, - "replace": 4, - "le_n": 4, - "fun": 17, - "refl_equal": 4, - "pattern": 2, - "case": 2, - "trivial.": 14, - "contradiction": 8, - "le_Sn_n": 5, - "le_S": 6, - "Heq": 8, - "m0": 1, - "HeqS": 3, - "injection": 4, - "HeqS.": 2, - "eq_rect_eq_nat.": 1, - "IHp": 2, - "dep_pair_intro": 2, - "Hx": 20, - "Hy": 14, - "<=n),>": 1, - "x=": 1, - "exist": 7, - "Hy.": 3, - "Heq.": 6, - "le_uniqueness_proof": 1, - "Hy0": 1, - "card": 2, - "f": 108, - "card_interval": 1, - "<=n}>": 1, - "proj1_sig": 1, - "proj2_sig": 1, - "Hp": 5, - "Hq": 3, - "Hpq.": 1, - "Hmn.": 1, - "Hmn": 1, - "interval_dec": 1, - "left.": 3, - "dep_pair_intro.": 3, - "right.": 9, - "discriminate": 3, - "le_Sn_le": 2, - "eq_S.": 1, - "Hneq.": 2, - "card_inj_aux": 1, - "g": 6, - "False.": 1, - "Hfbound": 1, - "Hfinj": 1, - "Hgsurj.": 1, - "Hgsurj": 3, - "Hfx": 2, - "le_n_O_eq.": 2, - "Hfbound.": 2, - "Hx.": 5, - "le_lt_dec": 9, - "xSn": 21, - "then": 9, - "else": 9, - "is": 4, - "bounded": 1, - "injective": 6, - "Hlefx": 1, - "Hgefx": 1, - "Hlefy": 1, - "Hgefy": 1, - "Hfinj.": 3, - "sym_not_eq.": 2, - "Heqf.": 2, - "Hneqy.": 2, - "le_lt_trans": 2, - "le_O_n.": 2, - "le_neq_lt": 2, - "Hneqx.": 2, - "pred_inj.": 1, - "lt_O_neq": 2, - "neq_dep_intro": 2, - "inj_restrict": 1, - "Heqf": 1, - "surjective": 1, - "Hlep.": 3, - "Hle": 1, - "Hlt": 3, - "Hfsurj": 2, - "le_n_S": 1, - "Hlep": 4, - "Hneq": 7, - "Heqx.": 2, - "Heqx": 4, - "Hle.": 1, - "le_not_lt": 1, - "lt_trans": 4, - "lt_n_Sn.": 1, - "Hlt.": 1, - "lt_irrefl": 2, - "lt_le_trans": 1, - "pose": 2, - "let": 3, - "Hneqx": 1, - "Hneqy": 1, - "Heqg": 1, - "Hdec": 3, - "Heqy": 1, - "Hginj": 1, - "HSnx.": 1, - "HSnx": 1, - "interval_discr": 1, - "<=m}>": 1, - "card_inj": 1, - "interval_dec.": 1, - "card_interval.": 2, - "Basics.": 2, - "NatList.": 2, - "natprod": 5, - "pair": 7, - "natprod.": 1, - "fst": 3, - "snd": 3, - "swap_pair": 1, - "surjective_pairing": 1, - "count": 7, - "remove_one": 3, - "test_remove_one1": 1, - "remove_all": 2, - "bag": 3, - "app_ass": 1, - "l3": 12, - "natlist": 7, - "l3.": 1, - "remove_decreases_count": 1, - "s.": 4, - "ble_n_Sn.": 1, - "IHs.": 2, - "natoption": 5, - "None": 9, - "natoption.": 1, - "index": 3, - "option_elim": 2, - "hd_opt": 8, - "test_hd_opt1": 2, - "None.": 2, - "test_hd_opt2": 2, - "option_elim_hd": 1, - "head": 1, - "beq_natlist": 5, - "v1": 7, - "r1": 2, - "v2": 2, - "r2": 2, - "test_beq_natlist1": 1, - "test_beq_natlist2": 1, - "beq_natlist_refl": 1, - "IHl.": 7, - "silly1": 1, - "eq1": 6, - "eq2.": 9, - "eq2": 1, - "silly2a": 1, - "eq1.": 5, - "silly_ex": 1, - "silly3": 1, - "symmetry.": 2, - "rev_exercise": 1, - "rev_involutive.": 1, - "Setoid": 1, - "Compare_dec": 1, - "ListNotations.": 1, - "Implicit": 15, - "Arguments.": 2, - "Permutation.": 2, - "Permutation": 38, - "perm_nil": 1, - "perm_skip": 1, - "Local": 7, - "Constructors": 3, - "Permutation_nil": 2, - "HF.": 3, - "@nil": 1, - "HF": 2, - "||": 1, - "Permutation_nil_cons": 1, - "discriminate.": 2, - "Permutation_refl": 1, - "Permutation_sym": 1, - "Hperm": 7, - "perm_trans": 1, - "Permutation_trans": 4, - "Logic.eq": 2, - "@Permutation": 5, - "iff": 1, - "@In": 1, - "red": 6, - "Permutation_in.": 2, - "Permutation_app_tail": 2, - "tl": 8, - "eapply": 8, - "Permutation_app_head": 2, - "app_comm_cons": 5, - "Permutation_app": 3, - "Hpermmm": 1, - "idtac": 1, - "Global": 5, - "@app": 1, - "Permutation_app.": 1, - "Permutation_add_inside": 1, - "Permutation_cons_append": 1, - "IHl": 8, - "Permutation_cons_append.": 3, - "Permutation_app_comm": 3, - "app_nil_r": 1, - "app_assoc": 2, - "Permutation_cons_app": 3, - "Permutation_middle": 2, - "Permutation_rev": 3, - "rev": 7, - "1": 1, - "@rev": 1, - "2": 1, - "Permutation_length": 2, - "length": 21, - "transitivity": 4, - "@length": 1, - "Permutation_length.": 1, - "Permutation_ind_bis": 2, - "Hnil": 1, - "Hskip": 3, - "Hswap": 2, - "Htrans.": 1, - "Htrans": 1, - "eauto.": 7, - "Ltac": 1, - "break_list": 5, - "Permutation_nil_app_cons": 1, - "l4": 3, - "P.": 5, - "IH": 3, - "Permutation_middle.": 3, - "perm_swap.": 2, - "perm_swap": 1, - "eq_refl": 2, - "In_split": 1, - "Permutation_app_inv": 1, - "NoDup": 4, - "incl": 3, - "N.": 1, - "E": 7, - "Ha": 6, - "In": 6, - "N": 1, - "Hal": 1, - "Hl": 1, - "exfalso.": 1, - "NoDup_Permutation_bis": 2, - "inversion_clear": 6, - "intuition.": 2, - "Permutation_NoDup": 1, - "Permutation_map": 1, - "Hf": 15, - "injective_bounded_surjective": 1, - "set": 1, - "seq": 2, - "map": 4, - "x.": 3, - "in_map_iff.": 2, - "in_seq": 4, - "arith": 4, - "NoDup_cardinal_incl": 1, - "injective_map_NoDup": 2, - "seq_NoDup": 1, - "map_length": 1, - "by": 7, - "in_map_iff": 1, - "split": 14, - "nat_bijection_Permutation": 1, - "BD.": 1, - "seq_NoDup.": 1, - "map_length.": 1, - "Injection": 1, - "Permutation_alt": 1, - "Alternative": 1, - "characterization": 1, - "of": 4, - "via": 1, - "nth_error": 7, - "and": 1, - "nth": 2, - "adapt": 4, - "adapt_injective": 1, - "adapt.": 2, - "EQ.": 2, - "LE": 11, - "LT": 14, - "eq_add_S": 2, - "Hf.": 1, - "Lt.le_lt_or_eq": 3, - "LE.": 3, - "EQ": 8, - "lt": 3, - "LT.": 5, - "Lt.S_pred": 3, - "Lt.lt_not_le": 2, - "adapt_ok": 2, - "nth_error_app1": 1, - "nth_error_app2": 1, - "arith.": 8, - "Minus.minus_Sn_m": 1, - "Permutation_nth_error": 2, - "IHP": 2, - "IHP2": 1, - "Hg": 2, - "E.": 2, - "L12": 2, - "app_length.": 2, - "plus_n_Sm.": 1, - "adapt_injective.": 1, - "nth_error_None": 4, - "Hn": 1, - "Hf2": 1, - "Hf3": 2, - "Lt.le_or_lt": 1, - "Lt.lt_irrefl": 2, - "Lt.lt_le_trans": 2, - "Hf1": 1, - "do": 4, - "congruence.": 1, - "Permutation_alt.": 1, - "Permutation_app_swap": 1, - "only": 3, - "parsing": 3, - "Omega": 1, - "SetoidList.": 1, - "nil.": 2, - "..": 4, - "Permut.": 1, - "eqA_equiv": 1, - "eqA.": 1, - "list_contents_app": 5, - "permut_refl": 1, - "permut_sym": 4, - "permut_trans": 5, - "permut_cons_eq": 3, - "meq_left": 1, - "meq_singleton": 1, - "permut_cons": 5, - "permut_app": 1, - "specialize": 6, - "a0.": 1, - "decide": 1, - "permut_add_inside_eq": 1, - "permut_add_cons_inside": 3, - "permut_add_inside": 1, - "permut_middle": 1, - "permut_refl.": 5, - "permut_sym_app": 1, - "permut_rev": 1, - "permut_add_cons_inside.": 1, - "app_nil_end": 1, - "results": 1, - "permut_conv_inv": 1, - "plus_reg_l.": 1, - "permut_app_inv1": 1, - "list_contents_app.": 1, - "plus_reg_l": 1, - "multiplicity": 6, - "Fact": 3, - "if_eqA_then": 1, - "B": 6, - "if_eqA_refl": 3, - "decide_left": 1, - "if_eqA": 1, - "contradict": 3, - "A1": 2, - "if_eqA_rewrite_r": 1, - "A2": 4, - "Hxx": 1, - "multiplicity_InA": 4, - "InA": 8, - "multiplicity_InA_O": 2, - "multiplicity_InA_S": 1, - "multiplicity_NoDupA": 1, - "NoDupA": 3, - "NEQ": 1, - "compatible": 1, - "permut_InA_InA": 3, - "multiplicity_InA.": 1, - "meq.": 2, - "permut_cons_InA": 3, - "permut_nil": 3, - "Abs": 2, - "permut_length_1": 1, - "permut_length_2": 1, - "permut_length_1.": 2, - "@if_eqA_rewrite_l": 2, - "permut_length": 1, - "InA_split": 1, - "h2": 1, - "plus_n_Sm": 1, - "f_equal.": 1, - "app_length": 1, - "IHl1": 1, - "permut_remove_hd": 1, - "f_equal": 1, - "if_eqA_rewrite_l": 1, - "NoDupA_equivlistA_permut": 1, - "Equivalence_Reflexive.": 1, - "change": 1, - "Equivalence_Reflexive": 1, - "Forall2": 2, - "permutation_Permutation": 1, - "Forall2.": 1, - "proof": 1, - "IHA": 2, - "Forall2_app_inv_r": 1, - "Hl1": 1, - "Hl2": 1, - "Forall2_app": 1, - "Forall2_cons": 1, - "Permutation_impl_permutation": 1, - "permut_eqA": 1, - "Permut_permut.": 1, - "permut_right": 1, - "permut_tran": 1, - "Lists.": 1, - "X.": 4, - "app": 5, - "snoc": 9, - "Arguments": 11, - "list123": 1, - "right": 2, - "test_repeat1": 1, - "nil_app": 1, - "rev_snoc": 1, - "snoc_with_append": 1, - "v.": 1, - "IHl1.": 1, - "prod": 3, - "Y.": 1, - "type_scope.": 1, - "combine": 3, - "lx": 4, - "ly": 4, - "tx": 2, - "ty": 7, - "tp": 2, - "option": 6, - "xs": 7, - "plus3": 2, - "prod_curry": 3, - "prod_uncurry": 3, - "uncurry_uncurry": 1, - "curry_uncurry": 1, - "filter": 3, - "test": 4, - "countoddmembers": 1, - "k": 7, - "fmostlytrue": 5, - "override": 5, - "ftrue": 1, - "override_example1": 1, - "override_example2": 1, - "override_example3": 1, - "override_example4": 1, - "override_example": 1, - "constfun": 1, - "unfold_example_bad": 1, - "plus3.": 1, - "override_eq": 1, - "f.": 1, - "override.": 2, - "override_neq": 1, - "x2": 3, - "k1": 5, - "k2": 4, - "eq.": 11, - "silly4": 1, - "silly5": 1, - "sillyex1": 1, - "j": 6, - "j.": 1, - "silly6": 1, - "silly7": 1, - "sillyex2": 1, - "assertion": 3, - "Hl.": 1, - "eq": 4, - "beq_nat_O_l": 1, - "beq_nat_O_r": 1, - "double_injective": 1, - "double": 2, - "fold_map": 2, - "fold": 1, - "total": 2, - "fold_map_correct": 1, - "fold_map.": 1, - "forallb": 4, - "existsb": 3, - "existsb2": 2, - "existsb_correct": 1, - "existsb2.": 1, - "index_okx": 1, - "mumble": 5, - "mumble.": 1, - "grumble": 3, - "Logic.": 1, - "Prop.": 1, - "partial_function": 6, - "R": 54, - "y1": 6, - "y2": 5, - "y2.": 3, - "next_nat_partial_function": 1, - "next_nat.": 1, - "partial_function.": 5, - "Q.": 2, - "le_not_a_partial_function": 1, - "le": 1, - "not.": 3, - "Nonsense.": 4, - "le_n.": 6, - "le_S.": 4, - "total_relation_not_partial_function": 1, - "total_relation": 1, - "total_relation1.": 2, - "empty_relation_not_partial_funcion": 1, - "empty_relation.": 1, - "reflexive": 5, - "le_reflexive": 1, - "le.": 4, - "reflexive.": 1, - "transitive": 8, - "le_trans": 4, - "Hnm": 3, - "Hmo.": 4, - "Hnm.": 3, - "IHHmo.": 1, - "lt.": 2, - "transitive.": 1, - "Hm": 1, - "le_S_n": 2, - "Sn_le_Sm__n_le_m.": 1, - "not": 1, - "TODO": 1, - "Hmo": 1, - "symmetric": 2, - "antisymmetric": 3, - "le_antisymmetric": 1, - "Sn_le_Sm__n_le_m": 2, - "IHb": 1, - "equivalence": 1, - "order": 2, - "preorder": 1, - "le_order": 1, - "order.": 1, - "le_reflexive.": 1, - "le_antisymmetric.": 1, - "le_trans.": 1, - "clos_refl_trans": 8, - "rt_step": 1, - "rt_refl": 1, - "rt_trans": 3, - "next_nat_closure_is_le": 1, - "next_nat": 1, - "rt_refl.": 2, - "IHle.": 1, - "rt_step.": 2, - "nn.": 1, - "IHclos_refl_trans1.": 2, - "IHclos_refl_trans2.": 2, - "refl_step_closure": 11, - "rsc_refl": 1, - "rsc_step": 4, - "rsc_R": 2, - "rsc_refl.": 4, - "rsc_trans": 4, - "IHrefl_step_closure": 1, - "rtc_rsc_coincide": 1, - "IHrefl_step_closure.": 1, - "Imp.": 1, - "Relations.": 1, - "tm": 43, - "tm_const": 45, - "tm_plus": 30, - "tm.": 3, - "SimpleArith0.": 2, - "eval": 8, - "SimpleArith1.": 2, - "E_Const": 2, - "E_Plus": 2, - "test_step_1": 1, - "ST_Plus1.": 2, - "ST_PlusConstConst.": 3, - "test_step_2": 1, - "ST_Plus2.": 2, - "step_deterministic": 1, - "step.": 3, - "Hy1": 2, - "Hy2.": 2, - "step_cases": 4, - "Hy2": 3, - "SCase.": 3, - "Hy1.": 5, - "IHHy1": 2, - "SimpleArith2.": 1, - "value": 25, - "v_const": 4, - "step": 9, - "ST_PlusConstConst": 3, - "ST_Plus1": 2, - "strong_progress": 2, - "value_not_same_as_normal_form": 2, - "normal_form": 3, - "t.": 4, - "normal_form.": 2, - "v_funny.": 1, - "Temp1.": 1, - "Temp2.": 1, - "ST_Funny": 1, - "Temp3.": 1, - "Temp4.": 2, - "tm_true": 8, - "tm_false": 5, - "tm_if": 10, - "v_true": 1, - "v_false": 1, - "tm_false.": 3, - "ST_IfTrue": 1, - "ST_IfFalse": 1, - "ST_If": 1, - "t3": 6, - "bool_step_prop4": 1, - "bool_step_prop4_holds": 1, - "bool_step_prop4.": 2, - "ST_ShortCut.": 1, - "IHt1.": 1, - "t2.": 4, - "t3.": 2, - "ST_If.": 2, - "Temp5.": 1, - "stepmany": 4, - "normalizing": 1, - "IHt2": 3, - "H11": 2, - "H12": 2, - "H21": 3, - "H22": 2, - "nf_same_as_value": 3, - "H12.": 1, - "H22.": 1, - "H11.": 1, - "stepmany_congr_1": 1, - "stepmany_congr2": 1, - "eval__value": 1, - "HE.": 1, - "eval_cases": 1, - "HE": 1, - "v_const.": 1, - "Sorted.": 1, - "Mergesort.": 1, - "STLC.": 1, - "ty_Bool": 10, - "ty_arrow": 7, - "ty.": 2, - "tm_var": 6, - "tm_app": 7, - "tm_abs": 9, - "idB": 2, - "idBB": 2, - "idBBBB": 2, - "v_abs": 1, - "t_true": 1, - "t_false": 1, - "value.": 1, - "ST_App2": 1, - "step_example3": 1, - "idB.": 1, - "rsc_step.": 2, - "ST_App1.": 2, - "ST_AppAbs.": 3, - "v_abs.": 2, - "context": 1, - "partial_map": 4, - "Context.": 1, - "empty": 3, - "extend": 1, - "Gamma": 10, - "has_type": 4, - "appears_free_in": 1, - "S.": 1, - "HT": 1, - "T_Var.": 1, - "extend_neq": 1, - "Heqe.": 3, - "T_Abs.": 1, - "context_invariance...": 2, - "Hafi.": 2, - "extend.": 2, - "IHt.": 1, - "Coiso1.": 2, - "Coiso2.": 3, - "HeqCoiso1.": 1, - "HeqCoiso2.": 1, - "beq_id_false_not_eq.": 1, - "ex_falso_quodlibet.": 1, - "preservation": 1, - "HT.": 1, - "substitution_preserves_typing": 1, - "T11.": 4, - "HT1.": 1, - "T_App": 2, - "IHHT1.": 1, - "IHHT2.": 1, - "tm_cases": 1, - "Ht": 1, - "Ht.": 3, - "IHt1": 2, - "T11": 2, - "ST_App2.": 1, - "ty_Bool.": 1, - "IHt3": 1, - "ST_IfTrue.": 1, - "ST_IfFalse.": 1, - "types_unique": 1, - "T12": 2, - "IHhas_type.": 1, - "IHhas_type1.": 1, - "IHhas_type2.": 1 - }, - "Creole": { - "Creole": 6, - "is": 3, - "a": 2, + "Ragel in Ruby Host": { + "begin": 3, + "%": 34, + "{": 19, + "machine": 3, + "simple_tokenizer": 1, + ";": 38, + "action": 9, + "MyTs": 2, + "my_ts": 6, + "p": 8, + "}": 19, + "MyTe": 2, + "my_te": 6, + "Emit": 4, + "emit": 4, + "data": 15, + "[": 20, + "my_ts...my_te": 1, + "]": 20, + ".pack": 6, + "(": 33, + ")": 33, + "nil": 4, + "foo": 8, + "any": 4, + "+": 7, + "main": 3, + "|": 11, + "*": 9, + "end": 23, + "#": 4, + "class": 3, + "SimpleTokenizer": 1, + "attr_reader": 2, + "path": 8, + "def": 10, + "initialize": 2, + "@path": 2, + "write": 9, + "stdout.puts": 2, + "perform": 2, + "pe": 4, + "ignored": 4, + "eof": 3, + "init": 3, + "leftover": 8, + "File.open": 2, + "do": 2, + "f": 2, + "while": 2, + "chunk": 2, + "f.read": 2, + "ENV": 2, + ".to_i": 2, + "chunk.unpack": 2, + "data.length": 3, + "exec": 3, + "if": 4, + "my_ts..": 1, "-": 5, - "to": 2, - "HTML": 1, - "converter": 2, - "for": 1, - "the": 5, - "lightweight": 1, - "markup": 1, - "language": 1, - "(": 5, - "http": 4, - "//wikicreole.org/": 1, - ")": 5, - ".": 1, - "Github": 1, - "uses": 1, - "this": 1, - "render": 1, - "*.creole": 1, - "files.": 1, - "Project": 1, - "page": 1, - "on": 2, - "github": 1, - "*": 5, - "//github.com/minad/creole": 1, - "Travis": 1, - "CI": 1, - "https": 1, - "//travis": 1, - "ci.org/minad/creole": 1, - "RDOC": 1, - "//rdoc.info/projects/minad/creole": 1, - "INSTALLATION": 1, - "{": 6, - "gem": 1, - "install": 1, - "creole": 1, - "}": 6, - "SYNOPSIS": 1, + "else": 2, + "s": 4, + "SimpleTokenizer.new": 1, + "ARGV": 2, + "s.perform": 2, + "ephemeris_parser": 1, + "mark": 6, + "parse_start_time": 2, + "parser.start_time": 1, + "mark..p": 4, + "parse_stop_time": 2, + "parser.stop_time": 1, + "parse_step_size": 2, + "parser.step_size": 1, + "parse_ephemeris_table": 2, + "fhold": 1, + "parser.ephemeris_table": 1, + "ws": 2, + "t": 1, + "r": 1, + "n": 1, + "adbc": 2, + "year": 2, + "digit": 7, + "month": 2, + "upper": 1, + "lower": 1, + "date": 2, + "hours": 2, + "minutes": 2, + "seconds": 2, + "tz": 2, + "datetime": 3, + "time_unit": 2, + "soe": 2, + "eoe": 2, + "ephemeris_table": 3, + "alnum": 1, + "./": 1, + "start_time": 4, + "space*": 2, + "stop_time": 4, + "step_size": 3, + "ephemeris": 2, + "any*": 3, "require": 1, - "html": 1, - "Creole.creolize": 1, - "BUGS": 1, + "module": 1, + "Tengai": 1, + "EPHEMERIS_DATA": 2, + "Struct.new": 1, + ".freeze": 1, + "EphemerisParser": 1, + "<": 1, + "self.parse": 1, + "parser": 2, + "new": 1, + "data.unpack": 1, + "data.is_a": 1, + "String": 1, + "time": 6, + "super": 2, + "parse_time": 3, + "private": 1, + "DateTime.parse": 1, + "simple_scanner": 1, + "ts": 4, + "..": 1, + "te": 1, + "SimpleScanner": 1, + "||": 1, + "ts..pe": 1, + "SimpleScanner.new": 1 + }, + "JSONiq": { + "(": 14, + "Query": 2, + "for": 4, + "returning": 1, + "one": 1, + "database": 2, + "entry": 1, + ")": 14, + "import": 5, + "module": 5, + "namespace": 5, + "req": 6, + ";": 9, + "catalog": 4, + "variable": 4, + "id": 3, + "param": 4, + "-": 11, + "values": 4, + "[": 5, + "]": 5, + "part": 2, + "get": 2, + "data": 4, + "by": 2, + "key": 1, + "searching": 1, + "the": 1, + "keywords": 1, + "index": 3, + "phrase": 2, + "limit": 2, + "integer": 1, + "result": 1, + "at": 1, + "idx": 2, + "in": 1, + "search": 1, + "where": 1, + "le": 1, + "let": 1, + "result.s": 1, + "result.p": 1, + "return": 1, + "{": 2, + "|": 2, + "score": 1, + "result.r": 1, + "}": 2 + }, + "TeX": { + "%": 135, + "NeedsTeXFormat": 1, + "{": 463, + "LaTeX2e": 1, + "}": 469, + "ProvidesClass": 2, + "reedthesis": 1, + "[": 81, + "/01/27": 1, + "The": 4, + "Reed": 5, + "College": 5, + "Thesis": 5, + "Class": 4, + "]": 80, + "DeclareOption*": 2, + "PassOptionsToClass": 2, + "CurrentOption": 1, + "book": 2, + "ProcessOptions": 2, + "relax": 3, + "LoadClass": 2, + "RequirePackage": 20, + "fancyhdr": 2, + "AtBeginDocument": 1, + "fancyhf": 2, + "fancyhead": 5, + "LE": 1, + "RO": 1, + "thepage": 2, + "above": 1, + "makes": 2, + "your": 1, + "headers": 6, + "in": 20, + "all": 2, + "caps.": 2, "If": 1, "you": 1, - "found": 1, - "bug": 1, - "please": 1, - "report": 1, - "it": 1, - "at": 1, - "project": 1, - "s": 1, - "tracker": 1, - "GitHub": 1, - "//github.com/minad/creole/issues": 1, - "AUTHORS": 1, - "Lars": 2, - "Christensen": 2, - "larsch": 1, - "Daniel": 2, - "Mendler": 1, - "minad": 1, - "LICENSE": 1, - "Copyright": 1, + "would": 1, + "like": 1, + "different": 1, + "choose": 1, + "one": 1, + "of": 14, + "the": 19, + "following": 2, + "options": 1, + "(": 12, + "be": 3, + "sure": 1, + "to": 16, + "remove": 1, + "symbol": 4, + "from": 5, + "both": 1, + "right": 16, + "and": 5, + "left": 15, + ")": 12, + "RE": 2, + "slshape": 2, + "nouppercase": 2, + "leftmark": 2, + "This": 2, + "on": 2, + "RIGHT": 2, + "side": 2, + "pages": 2, + "italic": 1, + "use": 1, + "lowercase": 1, + "With": 1, + "Capitals": 1, + "When": 1, + "Specified.": 1, + "LO": 2, + "rightmark": 2, + "does": 1, + "same": 1, + "thing": 1, + "LEFT": 2, + "or": 1, + "scshape": 2, + "will": 2, + "small": 8, + "And": 1, + "so": 1, + "pagestyle": 3, + "fancy": 1, + "let": 11, + "oldthebibliography": 2, + "thebibliography": 2, + "endoldthebibliography": 2, + "endthebibliography": 1, + "renewenvironment": 2, + "#1": 40, + "addcontentsline": 5, + "toc": 5, + "chapter": 9, + "bibname": 2, + "end": 12, + "things": 1, + "for": 21, + "psych": 1, + "majors": 1, + "comment": 1, + "out": 1, + "oldtheindex": 2, + "theindex": 2, + "endoldtheindex": 2, + "endtheindex": 1, + "indexname": 1, + "RToldchapter": 1, + "renewcommand": 10, + "if@openright": 1, + "RTcleardoublepage": 3, + "else": 9, + "clearpage": 4, + "fi": 15, + "thispagestyle": 5, + "empty": 6, + "global": 2, + "@topnum": 1, + "z@": 2, + "@afterindentfalse": 1, + "secdef": 1, + "@chapter": 2, + "@schapter": 1, + "def": 18, + "#2": 17, + "ifnum": 3, + "c@secnumdepth": 1, + "m@ne": 2, + "if@mainmatter": 1, + "refstepcounter": 1, + "typeout": 1, + "@chapapp": 2, + "space": 8, + "thechapter.": 1, + "thechapter": 1, + "space#1": 1, + "chaptermark": 1, + "addtocontents": 2, + "lof": 1, + "protect": 2, + "addvspace": 2, + "p@": 3, + "lot": 1, + "if@twocolumn": 3, + "@topnewpage": 1, + "@makechapterhead": 2, + "@afterheading": 1, + "newcommand": 2, + "if@twoside": 1, + "ifodd": 1, + "c@page": 1, + "hbox": 15, + "newpage": 3, + "RToldcleardoublepage": 1, + "cleardoublepage": 4, + "setlength": 12, + "oddsidemargin": 2, + ".5in": 3, + "evensidemargin": 2, + "textwidth": 4, + "textheight": 4, + "topmargin": 6, + "addtolength": 8, + "headheight": 4, + "headsep": 3, + ".6in": 1, + "pt": 5, + "division#1": 1, + "gdef": 6, + "@division": 3, + "@latex@warning@no@line": 3, + "No": 3, + "noexpand": 3, + "division": 2, + "given": 3, + "department#1": 1, + "@department": 3, + "department": 1, + "thedivisionof#1": 1, + "@thedivisionof": 3, + "Division": 2, + "approvedforthe#1": 1, + "@approvedforthe": 3, + "advisor#1": 1, + "@advisor": 3, + "advisor": 1, + "altadvisor#1": 1, + "@altadvisor": 3, + "@altadvisortrue": 1, + "@empty": 1, + "newif": 1, + "if@altadvisor": 3, + "@altadvisorfalse": 1, + "contentsname": 1, + "Table": 1, + "Contents": 1, + "References": 1, + "l@chapter": 1, + "c@tocdepth": 1, + "addpenalty": 1, + "@highpenalty": 2, + "vskip": 4, + "em": 8, + "@plus": 1, + "@tempdima": 2, + "begingroup": 1, + "parindent": 2, + "rightskip": 1, + "@pnumwidth": 3, + "parfillskip": 1, + "-": 9, + "leavevmode": 1, + "bfseries": 3, + "advance": 1, + "leftskip": 2, + "hskip": 1, + "nobreak": 2, + "normalfont": 1, + "leaders": 1, + "m@th": 1, + "mkern": 2, + "@dotsep": 2, + "mu": 2, + ".": 3, + "hfill": 3, + "hb@xt@": 1, + "hss": 1, + "par": 6, + "penalty": 1, + "endgroup": 1, + "newenvironment": 1, + "abstract": 1, + "@restonecoltrue": 1, + "onecolumn": 1, + "@restonecolfalse": 1, + "Abstract": 2, + "begin": 11, + "center": 7, + "fontsize": 7, + "selectfont": 6, + "if@restonecol": 1, + "twocolumn": 1, + "ifx": 1, + "@pdfoutput": 1, + "@undefined": 1, + "RTpercent": 3, + "@percentchar": 1, + "AtBeginDvi": 2, + "special": 2, + "LaTeX": 3, + "/12/04": 3, + "SN": 3, + "rawpostscript": 1, + "AtEndDocument": 1, + "pdfinfo": 1, + "/Creator": 1, + "maketitle": 1, + "titlepage": 2, + "footnotesize": 2, + "footnoterule": 1, + "footnote": 1, + "thanks": 1, + "baselineskip": 2, + "setbox0": 2, + "Requirements": 2, + "Degree": 2, + "setcounter": 5, + "page": 4, + "null": 3, + "vfil": 8, + "@title": 1, + "centerline": 8, + "wd0": 7, + "hrulefill": 5, + "A": 1, + "Presented": 1, + "In": 1, + "Partial": 1, + "Fulfillment": 1, + "Bachelor": 1, + "Arts": 1, + "bigskip": 2, + "lineskip": 1, + ".75em": 1, + "tabular": 2, + "t": 1, + "c": 5, + "@author": 1, + "@date": 1, + "Approved": 2, + "just": 1, + "below": 2, + "cm": 2, + "not": 2, + "copy0": 1, + "approved": 1, + "major": 1, + "sign": 1, + "makebox": 6, + "problemset": 1, + "final": 2, + "article": 2, + "DeclareOption": 2, + "worksheet": 1, + "providecommand": 45, + "@solutionvis": 3, + "expand": 1, + "@expand": 3, + "letterpaper": 1, + "top": 1, + "bottom": 1, + "geometry": 1, + "pgfkeys": 1, + "For": 13, + "mathtable": 2, + "environment.": 3, + "tabularx": 1, + "pset": 1, + "heading": 2, + "float": 1, + "Used": 6, + "floats": 1, + "tables": 1, + "figures": 1, + "etc.": 1, + "graphicx": 1, + "inserting": 3, + "images.": 1, + "enumerate": 2, + "mathtools": 2, + "Required.": 7, + "Loads": 1, + "amsmath.": 1, + "amsthm": 1, + "theorem": 1, + "environments.": 1, + "amssymb": 1, + "booktabs": 1, + "esdiff": 1, + "derivatives": 4, + "partial": 2, + "Optional.": 1, + "shortintertext.": 1, + "customizing": 1, + "headers/footers.": 1, + "lastpage": 1, + "count": 1, + "header/footer.": 1, + "xcolor": 1, + "setting": 3, + "color": 3, + "hyperlinks": 2, + "obeyFinal": 1, + "Disable": 1, + "todos": 1, + "by": 1, + "option": 1, + "class": 1, + "@todoclr": 2, + "linecolor": 1, + "red": 1, + "todonotes": 1, + "keeping": 1, + "track": 1, + "dos.": 1, + "colorlinks": 1, + "true": 1, + "linkcolor": 1, + "navy": 2, + "urlcolor": 1, + "black": 2, + "hyperref": 1, + "urls": 2, + "references": 1, + "a": 2, + "document.": 1, + "url": 2, + "Enables": 1, + "with": 5, + "tag": 1, + "hypcap": 1, + "definecolor": 2, + "gray": 1, + "To": 1, + "Dos.": 1, + "brightness": 1, + "RGB": 1, + "coloring": 1, + "parskip": 1, + "ex": 2, + "Sets": 1, + "between": 1, + "paragraphs.": 2, + "Indent": 1, + "first": 1, + "line": 2, + "new": 1, + "VERBATIM": 2, + "verbatim": 2, + "verbatim@font": 1, + "ttfamily": 1, + "usepackage": 2, + "caption": 1, + "subcaption": 1, + "captionsetup": 4, + "table": 2, + "labelformat": 4, + "simple": 3, + "labelsep": 4, + "period": 3, + "labelfont": 4, + "bf": 4, + "figure": 2, + "subtable": 1, + "parens": 1, + "subfigure": 1, + "TRUE": 1, + "FALSE": 1, + "SHOW": 3, + "HIDE": 2, + "listoftodos": 1, + "pagenumbering": 1, + "arabic": 2, + "shortname": 2, + "authorname": 2, + "coursename": 3, + "#3": 8, + "assignment": 3, + "#4": 4, + "duedate": 2, + "#5": 2, + "minipage": 4, + "flushleft": 2, + "hypertarget": 1, + "@assignment": 2, + "textbf": 5, + "flushright": 2, + "headrulewidth": 1, + "footrulewidth": 1, + "fancyplain": 4, + "lfoot": 1, + "hyperlink": 1, + "cfoot": 1, + "rfoot": 1, + "pageref": 1, + "LastPage": 1, + "newcounter": 1, + "theproblem": 3, + "Problem": 2, + "counter": 1, + "environment": 1, + "problem": 1, + "addtocounter": 2, + "equation": 1, + "noindent": 2, + "textit": 1, + "Default": 2, + "is": 2, + "omit": 1, + "pagebreaks": 1, + "after": 1, + "solution": 2, + "qqed": 2, + "rule": 1, + "mm": 2, + "pagebreak": 2, + "show": 1, + "solutions.": 1, + "vspace": 2, + "Solution.": 1, + "ifnum#1": 2, + "chap": 1, + "section": 2, + "Sum": 3, + "n": 4, + "ensuremath": 15, + "sum_": 2, + "infsum": 2, + "infty": 2, + "Infinite": 1, + "sum": 1, + "Int": 1, + "x": 4, + "int_": 1, + "mathrm": 1, + "d": 1, + "Integrate": 1, + "respect": 1, + "Lim": 2, + "displaystyle": 2, + "lim_": 1, + "Take": 1, + "limit": 1, + "infinity": 1, + "f": 1, + "Frac": 1, + "/": 1, + "_": 1, + "Slanted": 1, + "fraction": 1, + "proper": 1, + "spacing.": 1, + "Usefule": 1, + "display": 2, + "fractions.": 1, + "eval": 1, + "vert_": 1, + "L": 1, + "hand": 2, + "sizing": 2, + "R": 1, + "D": 1, + "diff": 1, + "writing": 2, + "PD": 1, + "diffp": 1, + "full": 1, + "Forces": 1, + "style": 1, + "math": 4, + "mode": 4, + "Deg": 1, + "circ": 1, + "adding": 1, + "degree": 1, + "even": 1, + "if": 1, + "abs": 1, + "vert": 3, + "Absolute": 1, + "Value": 1, + "norm": 1, + "Vert": 2, + "Norm": 1, + "vector": 1, + "magnitude": 1, + "e": 1, + "times": 3, + "Scientific": 2, + "Notation": 2, + "E": 2, + "u": 1, + "text": 7, + "units": 1, + "Roman": 1, + "mc": 1, + "hspace": 3, + "comma": 1, + "into": 2, + "mtxt": 1, + "insterting": 1, + "either": 1, + "side.": 1, + "Option": 1, + "preceding": 1, + "punctuation.": 1, + "prob": 1, + "P": 2, + "cndprb": 1, + "right.": 1, + "cov": 1, + "Cov": 1, + "twovector": 1, + "r": 3, + "array": 6, + "threevector": 1, + "fourvector": 1, + "vecs": 4, + "vec": 2, + "bm": 2, + "bolded": 2, + "arrow": 2, + "vect": 3, + "unitvecs": 1, + "hat": 2, + "unitvect": 1, + "Div": 1, + "del": 3, + "cdot": 1, + "Curl": 1, + "Grad": 1 + }, + "XQuery": { + "(": 38, + "-": 486, + "xproc.xqm": 1, + "core": 1, + "xqm": 1, + "contains": 1, + "entry": 2, + "points": 1, + "primary": 1, + "eval": 3, + "step": 5, + "function": 3, + "and": 3, + "control": 1, + "functions.": 1, + ")": 38, + "xquery": 1, + "version": 1, + "encoding": 1, + ";": 25, + "module": 6, + "namespace": 8, + "xproc": 17, + "declare": 24, + "namespaces": 5, + "p": 2, "c": 1, - "Mendler.": 1, - "It": 1, - "free": 1, - "software": 1, - "and": 1, - "may": 1, - "be": 1, - "redistributed": 1, - "under": 1, - "terms": 1, - "specified": 1, + "err": 1, + "imports": 1, + "import": 4, + "util": 1, + "at": 4, + "const": 1, + "parse": 8, + "u": 2, + "options": 2, + "boundary": 1, + "space": 1, + "preserve": 1, + "option": 1, + "saxon": 1, + "output": 1, + "functions": 1, + "variable": 13, + "run": 2, + "run#6": 1, + "choose": 1, + "try": 1, + "catch": 1, + "group": 1, + "for": 1, + "each": 1, + "viewport": 1, + "library": 1, + "pipeline": 8, + "list": 1, + "all": 1, + "declared": 1, + "enum": 3, + "{": 5, + "": 1, + "name=": 1, + "ns": 1, + "": 1, + "}": 5, + "": 1, + "": 1, + "point": 1, + "stdin": 1, + "dflag": 1, + "tflag": 1, + "bindings": 2, + "STEP": 3, + "I": 1, + "preprocess": 1, + "let": 6, + "validate": 1, + "explicit": 3, + "AST": 2, + "name": 1, + "type": 1, + "ast": 1, + "element": 1, + "parse/@*": 1, + "sort": 1, + "parse/*": 1, + "II": 1, + "eval_result": 1, + "III": 1, + "serialize": 1, + "return": 2, + "results": 1, + "serialized_result": 2 + }, + "RMarkdown": { + "Some": 1, + "text.": 1, + "##": 1, + "A": 1, + "graphic": 1, "in": 1, - "README": 1, - "file": 1, - "of": 1, - "Ruby": 1, - "distribution.": 1 + "R": 1, + "{": 1, + "r": 1, + "}": 1, + "plot": 1, + "(": 3, + ")": 3, + "hist": 1, + "rnorm": 1 }, "Crystal": { - "SHEBANG#!bin/crystal": 2, - "require": 2, - "describe": 2, - "do": 26, - "it": 21, - "run": 14, - "(": 201, - ")": 201, - ".to_i.should": 11, - "eq": 16, - "end": 135, - ".to_f32.should": 2, - ".to_b.should": 1, - "be_true": 1, - "assert_type": 7, - "{": 7, - "int32": 8, - "}": 7, - "union_of": 1, - "char": 1, - "result": 3, - "types": 3, - "[": 9, - "]": 9, - "mod": 1, - "result.program": 1, - "foo": 3, - "mod.types": 1, - "as": 4, - "NonGenericClassType": 1, - "foo.instance_vars": 1, - ".type.should": 3, - "mod.int32": 1, - "GenericClassType": 2, - "foo_i32": 4, - "foo.instantiate": 2, - "of": 3, - "Type": 2, - "|": 8, - "ASTNode": 4, - "foo_i32.lookup_instance_var": 2, "module": 1, "Crystal": 1, "class": 2, + "ASTNode": 4, "def": 84, "transform": 81, + "(": 201, "transformer": 1, + ")": 201, "transformer.before_transform": 1, "self": 77, "node": 164, "transformer.transform": 1, "transformer.after_transform": 1, + "end": 135, "Transformer": 1, "before_transform": 1, "after_transform": 1, "Expressions": 2, "exps": 6, + "[": 9, + "]": 9, + "of": 3, "node.expressions.each": 1, + "do": 26, + "|": 8, "exp": 3, "new_exp": 3, "exp.transform": 3, @@ -18451,7 +50795,10 @@ "output.transform": 1, "Block": 1, "node.args.map": 1, + "{": 7, + "as": 4, "Var": 2, + "}": 7, "FunLiteral": 1, "node.def.body": 1, "node.def.body.transform": 1, @@ -18518,7 +50865,2700 @@ "Alias": 1, "TupleIndexer": 1, "Attribute": 1, - "exps.map": 1 + "exps.map": 1, + "SHEBANG#!bin/crystal": 2, + "require": 2, + "describe": 2, + "it": 21, + "run": 14, + ".to_i.should": 11, + "eq": 16, + ".to_f32.should": 2, + ".to_b.should": 1, + "be_true": 1, + "assert_type": 7, + "int32": 8, + "union_of": 1, + "char": 1, + "result": 3, + "types": 3, + "mod": 1, + "result.program": 1, + "foo": 3, + "mod.types": 1, + "NonGenericClassType": 1, + "foo.instance_vars": 1, + ".type.should": 3, + "mod.int32": 1, + "GenericClassType": 2, + "foo_i32": 4, + "foo.instantiate": 2, + "Type": 2, + "foo_i32.lookup_instance_var": 2 + }, + "edn": { + "[": 24, + "{": 22, + "db/id": 22, + "#db/id": 22, + "db.part/db": 6, + "]": 24, + "db/ident": 3, + "object/name": 18, + "db/doc": 4, + "db/valueType": 3, + "db.type/string": 2, + "db/index": 3, + "true": 3, + "db/cardinality": 3, + "db.cardinality/one": 3, + "db.install/_attribute": 3, + "}": 22, + "object/meanRadius": 18, + "db.type/double": 1, + "data/source": 2, + "db.part/tx": 2, + "db.part/user": 17 + }, + "PowerShell": { + "Write": 2, + "-": 2, + "Host": 2, + "function": 1, + "hello": 1, + "(": 1, + ")": 1, + "{": 1, + "}": 1 + }, + "Game Maker Language": { + "var": 79, + "victim": 10, + "killer": 11, + "assistant": 16, + "damageSource": 18, + ";": 1282, + "argument0": 28, + "argument1": 10, + "argument2": 3, + "argument3": 1, + "if": 397, + "(": 1501, + "instance_exists": 8, + ")": 1502, + "noone": 7, + "//*************************************": 6, + "//*": 3, + "Scoring": 1, + "and": 155, + "Kill": 1, + "log": 1, + "recordKillInLog": 1, + "victim.stats": 1, + "[": 99, + "DEATHS": 1, + "]": 103, + "+": 206, + "{": 300, + "WEAPON_KNIFE": 1, + "||": 16, + "WEAPON_BACKSTAB": 1, + "killer.stats": 8, + "STABS": 2, + "killer.roundStats": 8, + "POINTS": 10, + "}": 307, + "victim.object.currentWeapon.object_index": 1, + "Medigun": 2, + "victim.object.currentWeapon.uberReady": 1, + "BONUS": 2, + "KILLS": 2, + "victim.object.intel": 1, + "DEFENSES": 2, + "recordEventInLog": 1, + "killer.team": 1, + "killer.name": 2, + "global.myself": 4, + "assistant.stats": 2, + "ASSISTS": 2, + "assistant.roundStats": 2, + ".5": 2, + "//SPEC": 1, + "instance_create": 20, + "victim.object.x": 3, + "victim.object.y": 3, + "Spectator": 1, + "Gibbing": 2, + "xoffset": 5, + "yoffset": 5, + "xsize": 3, + "ysize": 3, + "view_xview": 3, + "view_yview": 3, + "view_wview": 2, + "view_hview": 2, + "randomize": 1, + "with": 47, + "victim.object": 2, + "WEAPON_ROCKETLAUNCHER": 1, + "or": 78, + "WEAPON_MINEGUN": 1, + "FRAG_BOX": 2, + "WEAPON_REFLECTED_STICKY": 1, + "WEAPON_REFLECTED_ROCKET": 1, + "FINISHED_OFF_GIB": 2, + "GENERATOR_EXPLOSION": 2, + "player.class": 15, + "CLASS_QUOTE": 3, + "global.gibLevel": 14, + "distance_to_point": 3, + "xsize/2": 2, + "ysize/2": 2, + "<": 39, + "hasReward": 4, + "repeat": 7, + "*": 18, + "createGib": 14, + "x": 76, + "y": 85, + "PumpkinGib": 1, + "hspeed": 14, + "vspeed": 13, + "random": 21, + "-": 212, + "choose": 8, + "false": 85, + "true": 73, + "else": 151, + "Gib": 1, + "switch": 9, + "player.team": 8, + "case": 50, + "TEAM_BLUE": 6, + "BlueClump": 1, + "break": 58, + "TEAM_RED": 8, + "RedClump": 1, + "blood": 2, + "BloodDrop": 1, + "blood.hspeed": 1, + "blood.vspeed": 1, + "blood.sprite_index": 1, + "PumpkinJuiceS": 1, + "//All": 1, + "Classes": 1, + "gib": 1, + "head": 1, + "hands": 2, + "feet": 1, + "Headgib": 1, + "//Medic": 1, + "has": 2, + "specially": 1, + "colored": 1, + "CLASS_MEDIC": 2, + "Hand": 3, + "Feet": 1, + "//Class": 1, + "specific": 1, + "gibs": 1, + "CLASS_PYRO": 2, + "Accesory": 5, + "CLASS_SOLDIER": 2, + "CLASS_ENGINEER": 3, + "CLASS_SNIPER": 3, + "playsound": 2, + "deadbody": 2, + "DeathSnd1": 1, + "DeathSnd2": 1, + "DeadGuy": 1, + "player": 36, + "deadbody.sprite_index": 2, + "haxxyStatue": 1, + "deadbody.image_index": 2, + "sprite_index": 14, + "CHARACTER_ANIMATION_DEAD": 1, + "deadbody.hspeed": 1, + "deadbody.vspeed": 1, + "deadbody.image_xscale": 1, + "global.gg_birthday": 1, + "myHat": 2, + "PartyHat": 1, + "myHat.image_index": 2, + "victim.team": 2, + "global.xmas": 1, + "XmasHat": 1, + "instance_destroy": 7, + "Deathcam": 1, + "global.killCam": 3, + "KILL_BOX": 1, + "FINISHED_OFF": 5, + "DeathCam": 1, + "DeathCam.killedby": 1, + "DeathCam.name": 1, + "DeathCam.oldxview": 1, + "DeathCam.oldyview": 1, + "DeathCam.lastDamageSource": 1, + "DeathCam.team": 1, + "global.myself.team": 3, + "#define": 26, + "__jso_gmt_tuple": 1, + "//Position": 1, + "address": 1, + "table": 1, + "data": 4, + "pos": 2, + "addr_table": 2, + "*argument_count": 1, + "//Build": 1, + "the": 62, + "tuple": 1, + "element": 8, + "by": 5, + "i": 95, + "ca": 1, + "isstr": 1, + "datastr": 1, + "for": 26, + "argument_count": 1, + "//Check": 1, + "argument": 10, + "Unexpected": 18, + "character": 20, + "at": 23, + "position": 16, + ".": 12, + "t": 23, + "f": 5, + "end": 11, + "of": 25, + "list": 36, + "in": 21, + "JSON": 5, + "string.": 5, + "string": 13, + "Cannot": 5, + "parse": 3, + "boolean": 3, + "value": 13, + "real": 14, + "expecting": 9, + "a": 55, + "digit.": 9, + "e": 4, + "E": 4, + "dot": 1, + "an": 24, + "integer": 6, + "Expected": 6, + "least": 6, + "arguments": 26, + "got": 6, + "map": 47, + "find": 10, + "lookup.": 4, + "use": 4, + "indices": 1, + "nested": 27, + "lists": 6, + "Index": 1, + "overflow": 4, + "Recursive": 1, + "abcdef": 1, + "Invalid": 2, + "hex": 2, + "number": 7, + "return": 56, + "num": 1, + "//": 11, + "global.levelType": 22, + "//global.currLevel": 1, + "global.currLevel": 22, + "global.hadDarkLevel": 4, + "global.startRoomX": 1, + "global.startRoomY": 1, + "global.endRoomX": 1, + "global.endRoomY": 1, + "oGame.levelGen": 2, + "j": 14, + "global.roomPath": 1, + "k": 5, + "global.lake": 3, + "<=>": 3, + "1": 32, + "not": 63, + "isLevel": 1, + "999": 2, + "global": 8, + "levelType": 2, + "2": 2, + "16": 14, + "0": 21, + "656": 3, + "obj": 14, + "oDark": 2, + "invincible": 2, + "sDark": 1, + "4": 2, + "oTemple": 2, + "cityOfGold": 1, + "sTemple": 2, + "lake": 1, + "i*16": 8, + "j*16": 6, + "oLush": 2, + "obj.sprite_index": 4, + "sLush": 2, + "obj.invincible": 3, + "oBrick": 1, + "sBrick": 1, + "global.cityOfGold": 2, + "*16": 2, + "//instance_create": 2, + "oSpikes": 1, + "background_index": 1, + "bgTemple": 1, + "global.temp1": 1, + "global.gameStart": 3, + "scrLevelGen": 1, + "global.cemetary": 3, + "rand": 10, + "global.probCemetary": 1, + "oRoom": 1, + "scrRoomGen": 1, + "global.blackMarket": 3, + "scrRoomGenMarket": 1, + "scrRoomGen2": 1, + "global.yetiLair": 2, + "scrRoomGenYeti": 1, + "scrRoomGen3": 1, + "scrRoomGen4": 1, + "scrRoomGen5": 1, + "global.darkLevel": 4, + "//if": 5, + "global.noDarkLevel": 1, + "global.probDarkLevel": 1, + "oPlayer1.x": 2, + "oPlayer1.y": 2, + "oFlare": 1, + "global.genUdjatEye": 4, + "global.madeUdjatEye": 1, + "global.genMarketEntrance": 4, + "global.madeMarketEntrance": 1, + "////////////////////////////": 2, + "global.temp2": 1, + "isRoom": 3, + "scrEntityGen": 1, + "oEntrance": 1, + "global.customLevel": 1, + "oEntrance.x": 1, + "oEntrance.y": 1, + "global.snakePit": 1, + "global.alienCraft": 1, + "global.sacrificePit": 1, + "oPlayer1": 1, + "alarm": 13, + "scrSetupWalls": 3, + "global.graphicsHigh": 1, + "tile_add": 4, + "bgExtrasLush": 1, + "*rand": 12, + "bgExtrasIce": 1, + "bgExtrasTemple": 1, + "bgExtras": 1, + "global.murderer": 1, + "global.thiefLevel": 1, + "isRealLevel": 1, + "oExit": 1, + "type": 8, + "oShopkeeper": 1, + "obj.status": 1, + "oTreasure": 1, + "collision_point": 30, + "oSolid": 14, + "instance_place": 3, + "oWater": 1, + "sWaterTop": 1, + "sLavaTop": 1, + "scrCheckWaterTop": 1, + "global.temp3": 1, + "//draws": 1, + "sprite": 12, + "draw": 3, + "facing": 17, + "RIGHT": 10, + "image_xscale": 17, + "blinkToggle": 1, + "state": 50, + "CLIMBING": 5, + "sPExit": 1, + "sDamselExit": 1, + "sTunnelExit": 1, + "global.hasJetpack": 4, + "whipping": 5, + "draw_sprite_ext": 10, + "image_yscale": 14, + "image_angle": 14, + "image_blend": 2, + "image_alpha": 10, + "//draw_sprite": 1, + "draw_sprite": 9, + "sJetpackBack": 1, + "sJetpackRight": 1, + "sJetpackLeft": 1, + "redColor": 2, + "make_color_rgb": 1, + "holdArrow": 4, + "ARROW_NORM": 2, + "sArrowRight": 1, + "ARROW_BOMB": 2, + "holdArrowToggle": 2, + "sBombArrowRight": 2, + "LEFT": 7, + "sArrowLeft": 1, + "sBombArrowLeft": 2, + "exit": 10, + "xr": 19, + "yr": 19, + "round": 6, + "cloakAlpha": 1, + "team": 13, + "canCloak": 1, + "cloakAlpha/2": 1, + "invisible": 1, + "stabbing": 2, + "power": 1, + "currentWeapon.stab.alpha": 1, + "&&": 6, + "global.showHealthBar": 3, + "draw_set_alpha": 3, + "draw_healthbar": 1, + "hp*100/maxHp": 1, + "c_black": 1, + "c_red": 3, + "c_green": 1, + "mouse_x": 1, + "mouse_y": 1, + "<25)>": 1, + "cloak": 2, + "myself": 2, + "draw_set_halign": 1, + "fa_center": 1, + "draw_set_valign": 1, + "fa_bottom": 1, + "team=": 1, + "draw_set_color": 2, + "c_blue": 2, + "draw_text": 4, + "35": 1, + "name": 9, + "showTeammateStats": 1, + "weapons": 3, + "50": 3, + "Superburst": 1, + "currentWeapon": 2, + "uberCharge": 1, + "20": 1, + "Shotgun": 1, + "Nuts": 1, + "N": 1, + "Bolts": 1, + "nutsNBolts": 1, + "Minegun": 1, + "Lobbed": 1, + "Mines": 1, + "lobbed": 1, + "ubercolour": 6, + "overlaySprite": 6, + "zoomed": 1, + "SniperCrouchRedS": 1, + "SniperCrouchBlueS": 1, + "sniperCrouchOverlay": 1, + "overlay": 1, + "omnomnomnom": 2, + "draw_sprite_ext_overlay": 7, + "omnomnomnomSprite": 2, + "omnomnomnomOverlay": 2, + "omnomnomnomindex": 4, + "c_white": 13, + "ubered": 7, + "7": 4, + "taunting": 2, + "tauntsprite": 2, + "tauntOverlay": 2, + "tauntindex": 2, + "humiliated": 1, + "humiliationPoses": 1, + "floor": 11, + "animationImage": 9, + "humiliationOffset": 1, + "animationOffset": 6, + "burnDuration": 2, + "burnIntensity": 2, + "numFlames": 1, + "/": 5, + "maxIntensity": 1, + "FlameS": 1, + "flameArray_x": 1, + "flameArray_y": 1, + "maxDuration": 1, + "demon": 4, + "demonX": 5, + "median": 2, + "demonY": 4, + "demonOffset": 4, + "demonDir": 2, + "abs": 9, + "dir": 3, + "demonFrame": 5, + "sprite_get_number": 1, + "*player.team": 2, + "dir*1": 2, + "downloadHandle": 3, + "url": 62, + "tmpfile": 3, + "window_oldshowborder": 2, + "window_oldfullscreen": 2, + "timeLeft": 1, + "counter": 1, + "AudioControlPlaySong": 1, + "window_get_showborder": 1, + "window_get_fullscreen": 1, + "window_set_fullscreen": 2, + "window_set_showborder": 1, + "global.updaterBetaChannel": 3, + "UPDATE_SOURCE_BETA": 1, + "UPDATE_SOURCE": 1, + "temp_directory": 1, + "httpGet": 1, + "while": 15, + "httpRequestStatus": 1, + "download": 1, + "isn": 1, + "s": 6, + "extract": 1, + "downloaded": 1, + "file": 2, + "now.": 1, + "extractzip": 1, + "working_directory": 6, + "execute_program": 1, + "game_end": 1, + "RoomChangeObserver": 1, + "set_little_endian_global": 1, + "file_exists": 5, + "file_delete": 3, + "backupFilename": 5, + "file_find_first": 1, + "file_find_next": 1, + "file_find_close": 1, + "customMapRotationFile": 7, + "restart": 4, + "//import": 1, + "wav": 1, + "files": 1, + "music": 1, + "global.MenuMusic": 3, + "sound_add": 3, + "global.IngameMusic": 3, + "global.FaucetMusic": 3, + "sound_volume": 3, + "global.sendBuffer": 19, + "buffer_create": 7, + "global.tempBuffer": 3, + "global.HudCheck": 1, + "global.map_rotation": 19, + "ds_list_create": 5, + "global.CustomMapCollisionSprite": 1, + "window_set_region_scale": 1, + "ini_open": 2, + "global.playerName": 7, + "ini_read_string": 12, + "string_count": 2, + "string_copy": 32, + "min": 4, + "string_length": 25, + "MAX_PLAYERNAME_LENGTH": 2, + "global.fullscreen": 3, + "ini_read_real": 65, + "global.useLobbyServer": 2, + "global.hostingPort": 2, + "global.music": 2, + "MUSIC_BOTH": 1, + "global.playerLimit": 4, + "//thy": 1, + "playerlimit": 1, + "shalt": 1, + "exceed": 1, + "global.dedicatedMode": 7, + "show_message": 7, + "ini_write_real": 60, + "global.multiClientLimit": 2, + "global.particles": 2, + "PARTICLES_NORMAL": 1, + "global.monitorSync": 3, + "set_synchronization": 2, + "global.medicRadar": 2, + "global.showHealer": 2, + "global.showHealing": 2, + "global.showTeammateStats": 2, + "global.serverPluginsPrompt": 2, + "global.restartPrompt": 2, + "//user": 1, + "HUD": 1, + "settings": 1, + "global.timerPos": 2, + "global.killLogPos": 2, + "global.kothHudPos": 2, + "global.clientPassword": 1, + "global.shuffleRotation": 2, + "global.timeLimitMins": 2, + "max": 2, + "global.serverPassword": 2, + "global.mapRotationFile": 1, + "global.serverName": 2, + "global.welcomeMessage": 2, + "global.caplimit": 3, + "global.caplimitBkup": 1, + "global.autobalance": 2, + "global.Server_RespawntimeSec": 4, + "global.rewardKey": 1, + "unhex": 1, + "global.rewardId": 1, + "global.mapdownloadLimitBps": 2, + "isBetaVersion": 1, + "global.attemptPortForward": 2, + "global.serverPluginList": 3, + "global.serverPluginsRequired": 2, + "CrosshairFilename": 5, + "CrosshairRemoveBG": 4, + "global.queueJumping": 2, + "global.backgroundHash": 2, + "global.backgroundTitle": 2, + "global.backgroundURL": 2, + "global.backgroundShowVersion": 2, + "readClasslimitsFromIni": 1, + "global.currentMapArea": 1, + "global.totalMapAreas": 1, + "global.setupTimer": 1, + "global.joinedServerName": 2, + "global.serverPluginsInUse": 1, + "global.pluginPacketBuffers": 1, + "ds_map_create": 4, + "global.pluginPacketPlayers": 1, + "ini_write_string": 10, + "ini_key_delete": 1, + "global.classlimits": 10, + "CLASS_SCOUT": 1, + "CLASS_HEAVY": 2, + "CLASS_DEMOMAN": 1, + "CLASS_SPY": 1, + "//screw": 1, + "index": 11, + "we": 5, + "will": 1, + "start": 1, + "//map_truefort": 1, + "maps": 37, + "//map_2dfort": 1, + "//map_conflict": 1, + "//map_classicwell": 1, + "//map_waterway": 1, + "//map_orange": 1, + "//map_dirtbowl": 1, + "//map_egypt": 1, + "//arena_montane": 1, + "//arena_lumberyard": 1, + "//gen_destroy": 1, + "//koth_valley": 1, + "//koth_corinth": 1, + "//koth_harvest": 1, + "//dkoth_atalia": 1, + "//dkoth_sixties": 1, + "//Server": 1, + "respawn": 1, + "time": 1, + "calculator.": 1, + "Converts": 1, + "each": 18, + "second": 2, + "to": 62, + "frame.": 1, + "read": 1, + "multiply": 1, + "hehe": 1, + "global.Server_Respawntime": 3, + "global.mapchanging": 1, + "ini_close": 2, + "global.protocolUuid": 2, + "parseUuid": 2, + "PROTOCOL_UUID": 1, + "global.gg2lobbyId": 2, + "GG2_LOBBY_UUID": 1, + "initRewards": 1, + "IPRaw": 3, + "portRaw": 3, + "doubleCheck": 8, + "global.launchMap": 5, + "parameter_count": 1, + "parameter_string": 8, + "global.serverPort": 1, + "global.serverIP": 1, + "global.isHost": 1, + "Client": 1, + "global.customMapdesginated": 2, + "fileHandle": 6, + "mapname": 9, + "file_text_open_read": 1, + "file_text_eof": 1, + "file_text_read_string": 1, + "string_char_at": 13, + "chr": 3, + "it": 6, + "starts": 1, + "space": 4, + "tab": 2, + "string_delete": 1, + "delete": 1, + "that": 2, + "comment": 1, + "starting": 1, + "#": 3, + "ds_list_add": 23, + "file_text_readln": 1, + "file_text_close": 1, + "load": 1, + "from": 5, + "ini": 1, + "Maps": 9, + "section": 1, + "//Set": 1, + "up": 6, + "rotation": 1, + "stuff": 2, + "sort_list": 7, + "*maps": 1, + "ds_list_sort": 1, + "ds_list_size": 11, + "ds_list_find_value": 9, + "mod": 1, + "ds_list_destroy": 4, + "global.gg2Font": 2, + "font_add_sprite": 2, + "gg2FontS": 1, + "ord": 16, + "global.countFont": 1, + "countFontS": 1, + "draw_set_font": 1, + "cursor_sprite": 1, + "CrosshairS": 5, + "directory_exists": 2, + "directory_create": 2, + "AudioControl": 1, + "SSControl": 1, + "message_background": 1, + "popupBackgroundB": 1, + "message_button": 1, + "popupButtonS": 1, + "message_text_font": 1, + "message_button_font": 1, + "message_input_font": 1, + "//Key": 1, + "Mapping": 1, + "global.jump": 1, + "global.down": 1, + "global.left": 1, + "global.right": 1, + "global.attack": 1, + "MOUSE_LEFT": 1, + "global.special": 1, + "MOUSE_RIGHT": 1, + "global.taunt": 1, + "global.chat1": 1, + "global.chat2": 1, + "global.chat3": 1, + "global.medic": 1, + "global.drop": 1, + "global.changeTeam": 1, + "global.changeClass": 1, + "global.showScores": 1, + "vk_shift": 1, + "calculateMonthAndDay": 1, + "loadplugins": 1, + "registry_set_root": 1, + "HKLM": 1, + "global.NTKernelVersion": 1, + "registry_read_string_ext": 1, + "CurrentVersion": 1, + "SIC": 1, + "sprite_replace": 1, + "sprite_set_offset": 1, + "sprite_get_width": 1, + "/2": 2, + "sprite_get_height": 1, + "AudioControlToggleMute": 1, + "room_goto_fix": 2, + "Menu": 2, + "assert_true": 1, + "_assert_error_popup": 2, + "string_repeat": 2, + "_assert_newline": 2, + "assert_false": 1, + "assert_equal": 1, + "//Safe": 1, + "equality": 1, + "check": 1, + "won": 1, + "support": 1, + "show_error": 2, + "instead": 1, + "_assert_debug_value": 1, + "//String": 1, + "is_string": 2, + "os_browser": 1, + "browser_not_a_browser": 1, + "string_replace_all": 1, + "//Numeric": 1, + "GMTuple": 1, + "jso_encode_string": 1, + "failed": 56, + "encode": 8, + "escape": 2, + "jso_encode_map": 4, + "empty": 13, + "key": 17, + "one": 42, + "key1": 3, + "key2": 3, + "multi": 7, + "jso_encode_list": 3, + "three": 36, + "_jso_decode_string": 5, + "decode": 36, + "small": 1, + "The": 6, + "quick": 2, + "brown": 2, + "fox": 2, + "jumps": 3, + "over": 2, + "lazy": 2, + "dog.": 2, + "simple": 1, + "characters": 3, + "Waahoo": 1, + "negg": 1, + "mixed": 1, + "_jso_decode_boolean": 2, + "_jso_decode_real": 11, + "standard": 1, + "zero": 4, + "signed": 2, + "decimal": 1, + "digits": 1, + "positive": 7, + "negative": 7, + "exponent": 4, + "_jso_decode_integer": 3, + "_jso_decode_map": 14, + "didn": 14, + "include": 14, + "right": 14, + "prefix": 14, + "#1": 14, + "#2": 14, + "entry": 29, + "pi": 2, + "bool": 2, + "waahoo": 10, + "woohah": 8, + "mix": 4, + "_jso_decode_list": 14, + "woo": 2, + "Empty": 4, + "should": 25, + "equal": 20, + "other.": 12, + "junk": 2, + "info": 1, + "taxi": 1, + "An": 4, + "filled": 4, + "map.": 2, + "A": 24, + "B": 18, + "C": 8, + "same": 6, + "content": 4, + "entered": 4, + "different": 12, + "orders": 4, + "D": 1, + "keys": 2, + "values": 4, + "six": 1, + "corresponding": 4, + "types": 4, + "other": 4, + "crash.": 4, + "list.": 2, + "Lists": 4, + "two": 16, + "entries": 2, + "also": 2, + "jso_map_check": 9, + "existing": 9, + "single": 11, + "jso_map_lookup": 3, + "found": 21, + "wrong": 10, + "trap": 2, + "jso_map_lookup_type": 3, + "four": 21, + "inexistent": 11, + "multiple": 20, + "jso_list_check": 8, + "jso_list_lookup": 3, + "jso_list_lookup_type": 3, + "inner": 1, + "indexing": 1, + "on": 4, + "bad": 1, + "jso_cleanup_map": 1, + "one_map": 1, + "hangCountMax": 2, + "//////////////////////////////////////": 2, + "kLeft": 12, + "checkLeft": 1, + "kLeftPushedSteps": 3, + "kLeftPressed": 2, + "checkLeftPressed": 1, + "kLeftReleased": 3, + "checkLeftReleased": 1, + "kRight": 12, + "checkRight": 1, + "kRightPushedSteps": 3, + "kRightPressed": 2, + "checkRightPressed": 1, + "kRightReleased": 3, + "checkRightReleased": 1, + "kUp": 5, + "checkUp": 1, + "kDown": 5, + "checkDown": 1, + "//key": 1, + "canRun": 1, + "kRun": 2, + "kJump": 6, + "checkJump": 1, + "kJumpPressed": 11, + "checkJumpPressed": 1, + "kJumpReleased": 5, + "checkJumpReleased": 1, + "cantJump": 3, + "global.isTunnelMan": 1, + "sTunnelAttackL": 1, + "holdItem": 1, + "kAttack": 2, + "checkAttack": 2, + "kAttackPressed": 2, + "checkAttackPressed": 1, + "kAttackReleased": 2, + "checkAttackReleased": 1, + "kItemPressed": 2, + "checkItemPressed": 1, + "xPrev": 1, + "yPrev": 1, + "stunned": 3, + "dead": 3, + "//////////////////////////////////////////": 2, + "colSolidLeft": 4, + "colSolidRight": 3, + "colLeft": 6, + "colRight": 6, + "colTop": 4, + "colBot": 11, + "colLadder": 3, + "colPlatBot": 6, + "colPlat": 5, + "colWaterTop": 3, + "colIceBot": 2, + "runKey": 4, + "isCollisionMoveableSolidLeft": 1, + "isCollisionMoveableSolidRight": 1, + "isCollisionLeft": 2, + "isCollisionRight": 2, + "isCollisionTop": 1, + "isCollisionBottom": 1, + "isCollisionLadder": 1, + "isCollisionPlatformBottom": 1, + "isCollisionPlatform": 1, + "isCollisionWaterTop": 1, + "oIce": 1, + "checkRun": 1, + "runHeld": 3, + "HANGING": 10, + "approximatelyZero": 4, + "xVel": 24, + "xAcc": 12, + "platformCharacterIs": 23, + "ON_GROUND": 18, + "DUCKING": 4, + "pushTimer": 3, + "SS_IsSoundPlaying": 2, + "global.sndPush": 4, + "playSound": 3, + "runAcc": 2, + "/xVel": 1, + "oCape": 2, + "oCape.open": 6, + "kJumped": 7, + "ladderTimer": 4, + "ladder": 5, + "oLadder": 4, + "ladder.x": 3, + "oLadderTop": 2, + "yAcc": 26, + "climbAcc": 2, + "FALLING": 8, + "STANDING": 2, + "departLadderXVel": 2, + "departLadderYVel": 1, + "JUMPING": 6, + "jumpButtonReleased": 7, + "jumpTime": 8, + "IN_AIR": 5, + "gravityIntensity": 2, + "yVel": 20, + "RUNNING": 3, + "//playSound": 1, + "global.sndLand": 1, + "grav": 22, + "global.hasGloves": 3, + "hangCount": 14, + "yVel*0.3": 1, + "oWeb": 2, + "obj.life": 1, + "initialJumpAcc": 6, + "xVel/2": 3, + "gravNorm": 7, + "global.hasCape": 1, + "jetpackFuel": 2, + "fallTimer": 2, + "global.hasJordans": 1, + "yAccLimit": 2, + "global.hasSpringShoes": 1, + "global.sndJump": 1, + "jumpTimeTotal": 2, + "//let": 1, + "continue": 4, + "jump": 1, + "jumpTime/jumpTimeTotal": 1, + "looking": 2, + "UP": 1, + "LOOKING_UP": 4, + "move_snap": 6, + "oTree": 4, + "oArrow": 5, + "instance_nearest": 1, + "obj.stuck": 1, + "//the": 2, + "can": 1, + "want": 1, + "because": 2, + "is": 9, + "too": 2, + "high": 1, + "yPrevHigh": 1, + "ll": 1, + "move": 2, + "correct": 1, + "distance": 1, + "but": 2, + "need": 1, + "shorten": 1, + "out": 4, + "little": 1, + "ratio": 1, + "xVelInteger": 2, + "/dist*0.9": 1, + "//can": 1, + "be": 4, + "changed": 1, + "moveTo": 2, + "xVelInteger*ratio": 1, + "yVelInteger*ratio": 1, + "slopeChangeInY": 1, + "maxDownSlope": 1, + "floating": 1, + "just": 1, + "above": 1, + "slope": 1, + "so": 2, + "down": 1, + "upYPrev": 1, + "<=upYPrev+maxDownSlope;y+=1)>": 1, + "hit": 1, + "solid": 1, + "below": 1, + "upYPrev=": 1, + "I": 1, + "know": 1, + "this": 2, + "doesn": 1, + "seem": 1, + "make": 1, + "sense": 1, + "variable": 1, + "all": 3, + "works": 1, + "correctly": 1, + "after": 1, + "loop": 1, + "y=": 1, + "figures": 1, + "what": 1, + "characterSprite": 1, + "sets": 1, + "previous": 2, + "previously": 1, + "statePrevPrev": 1, + "statePrev": 2, + "calculates": 1, + "image_speed": 9, + "based": 1, + "velocity": 1, + "runAnimSpeed": 1, + "sqrt": 1, + "sqr": 2, + "climbAnimSpeed": 1, + "setCollisionBounds": 3, + "8": 9, + "5": 5, + "DUCKTOHANG": 1, + "image_index": 1, + "limit": 5, + "animation": 1, + "always": 1, + "looks": 1, + "good": 1, + "playerId": 11, + "commandLimitRemaining": 4, + "variable_local_exists": 4, + "commandReceiveState": 1, + "commandReceiveExpectedBytes": 1, + "commandReceiveCommand": 1, + "socket": 40, + "player.socket": 12, + "tcp_receive": 3, + "player.commandReceiveExpectedBytes": 7, + "player.commandReceiveState": 7, + "player.commandReceiveCommand": 4, + "read_ubyte": 10, + "commandBytes": 2, + "commandBytesInvalidCommand": 1, + "commandBytesPrefixLength1": 1, + "commandBytesPrefixLength2": 1, + "default": 1, + "read_ushort": 2, + "PLAYER_LEAVE": 1, + "socket_destroy": 4, + "PLAYER_CHANGECLASS": 1, + "class": 8, + "getCharacterObject": 2, + "player.object": 12, + "SpawnRoom": 2, + "lastDamageDealer": 8, + "sendEventPlayerDeath": 4, + "BID_FAREWELL": 4, + "doEventPlayerDeath": 4, + "secondToLastDamageDealer": 2, + "lastDamageDealer.object": 2, + "lastDamageDealer.object.healer": 4, + "player.alarm": 4, + "<=0)>": 1, + "checkClasslimits": 2, + "ServerPlayerChangeclass": 2, + "sendBuffer": 1, + "PLAYER_CHANGETEAM": 1, + "newTeam": 7, + "balance": 5, + "redSuperiority": 6, + "calculate": 1, + "which": 1, + "bigger": 2, + "Player": 1, + "TEAM_SPECTATOR": 1, + "newClass": 4, + "ServerPlayerChangeteam": 1, + "ServerBalanceTeams": 1, + "CHAT_BUBBLE": 2, + "bubbleImage": 5, + "global.aFirst": 1, + "write_ubyte": 20, + "setChatBubble": 1, + "BUILD_SENTRY": 2, + "collision_circle": 1, + "player.object.x": 3, + "player.object.y": 3, + "Sentry": 1, + "player.object.nutsNBolts": 1, + "player.sentry": 2, + "player.object.onCabinet": 1, + "write_ushort": 2, + "global.serializeBuffer": 3, + "player.object.x*5": 1, + "player.object.y*5": 1, + "write_byte": 1, + "player.object.image_xscale": 2, + "buildSentry": 1, + "DESTROY_SENTRY": 1, + "DROP_INTEL": 1, + "player.object.intel": 1, + "sendEventDropIntel": 1, + "doEventDropIntel": 1, + "OMNOMNOMNOM": 2, + "player.humiliated": 1, + "player.object.taunting": 1, + "player.object.omnomnomnom": 1, + "player.object.canEat": 1, + "omnomnomnomend": 2, + "xscale": 1, + "TOGGLE_ZOOM": 2, + "toggleZoom": 1, + "PLAYER_CHANGENAME": 2, + "nameLength": 4, + "socket_receivebuffer_size": 3, + "KICK": 2, + "KICK_NAME": 1, + "current_time": 2, + "lastNamechange": 2, + "read_string": 9, + "write_string": 9, + "INPUTSTATE": 1, + "keyState": 1, + "netAimDirection": 1, + "aimDirection": 1, + "netAimDirection*360/65536": 1, + "event_user": 1, + "REWARD_REQUEST": 1, + "player.rewardId": 1, + "player.challenge": 2, + "rewardCreateChallenge": 1, + "REWARD_CHALLENGE_CODE": 1, + "write_binstring": 1, + "REWARD_CHALLENGE_RESPONSE": 1, + "answer": 3, + "authbuffer": 1, + "read_binstring": 1, + "rewardAuthStart": 1, + "challenge": 1, + "rewardId": 1, + "PLUGIN_PACKET": 1, + "packetID": 3, + "buf": 5, + "success": 3, + "write_buffer_part": 3, + "_PluginPacketPush": 1, + "buffer_destroy": 8, + "KICK_BAD_PLUGIN_PACKET": 1, + "CLIENT_SETTINGS": 2, + "mirror": 4, + "player.queueJump": 1, + "__http_init": 3, + "global.__HttpClient": 4, + "object_add": 1, + "object_set_persistent": 1, + "__http_split": 3, + "text": 19, + "delimeter": 7, + "count": 4, + "string_pos": 20, + "__http_parse_url": 4, + "ds_map_add": 15, + "colonPos": 22, + "slashPos": 13, + "queryPos": 12, + "ds_map_destroy": 6, + "__http_resolve_url": 2, + "baseUrl": 3, + "refUrl": 18, + "urlParts": 15, + "refUrlParts": 5, + "canParseRefUrl": 3, + "result": 11, + "ds_map_find_value": 22, + "__http_resolve_path": 3, + "ds_map_replace": 3, + "ds_map_exists": 11, + "ds_map_delete": 1, + "path": 10, + "query": 4, + "relUrl": 1, + "__http_construct_url": 2, + "basePath": 4, + "refPath": 7, + "parts": 29, + "refParts": 5, + "lastPart": 3, + "ds_list_delete": 5, + "part": 6, + "ds_list_replace": 3, + "__http_parse_hex": 2, + "hexString": 4, + "hexValues": 3, + "digit": 4, + "__http_prepare_request": 4, + "client": 33, + "headers": 11, + "parsed": 18, + "destroyed": 3, + "CR": 10, + "LF": 5, + "CRLF": 17, + "tcp_connect": 1, + "errored": 19, + "error": 18, + "linebuf": 33, + "line": 19, + "statusCode": 6, + "reasonPhrase": 2, + "responseBody": 19, + "responseBodySize": 5, + "responseBodyProgress": 5, + "responseHeaders": 9, + "requestUrl": 2, + "requestHeaders": 2, + "ds_map_find_first": 1, + "ds_map_find_next": 1, + "socket_send": 1, + "__http_parse_header": 3, + "headerValue": 9, + "string_lower": 3, + "headerName": 4, + "__http_client_step": 2, + "socket_has_error": 1, + "socket_error": 1, + "__http_client_destroy": 20, + "available": 7, + "tcp_receive_available": 1, + "tcp_eof": 3, + "bytesRead": 6, + "c": 20, + "Reached": 2, + "HTTP": 1, + "defines": 1, + "sequence": 2, + "as": 1, + "marker": 1, + "protocol": 3, + "elements": 1, + "except": 2, + "entity": 1, + "body": 2, + "see": 1, + "appendix": 1, + "19": 1, + "3": 1, + "tolerant": 1, + "applications": 1, + "Strip": 1, + "trailing": 1, + "First": 1, + "status": 2, + "code": 2, + "first": 3, + "Response": 1, + "message": 1, + "Status": 1, + "Line": 1, + "consisting": 1, + "version": 4, + "followed": 1, + "numeric": 1, + "its": 1, + "associated": 1, + "textual": 1, + "phrase": 1, + "separated": 1, + "SP": 1, + "No": 3, + "allowed": 1, + "final": 1, + "httpVer": 2, + "spacePos": 11, + "response": 5, + "Other": 1, + "Blank": 1, + "write": 1, + "remainder": 1, + "Header": 1, + "Receiving": 1, + "write_buffer": 2, + "transfer": 6, + "encoding": 2, + "chunked": 4, + "Chunked": 1, + "let": 1, + "actualResponseBody": 8, + "actualResponseSize": 1, + "actualResponseBodySize": 3, + "Parse": 1, + "chunks": 1, + "chunk": 12, + "size": 7, + "extension": 3, + "HEX": 1, + "buffer_bytes_left": 6, + "chunkSize": 11, + "Read": 1, + "byte": 2, + "We": 1, + "semicolon": 1, + "beginning": 1, + "skip": 1, + "header": 2, + "Doesn": 1, + "did": 1, + "something": 1, + "Parsing": 1, + "was": 1, + "hexadecimal": 1, + "Is": 1, + "than": 1, + "remaining": 1, + "responseHaders": 1, + "location": 4, + "resolved": 5, + "http_new_get": 1, + "variable_global_exists": 2, + "http_new_get_ex": 1, + "http_step": 1, + "client.errored": 3, + "client.state": 3, + "http_status_code": 1, + "client.statusCode": 1, + "http_reason_phrase": 1, + "client.error": 1, + "client.reasonPhrase": 1, + "http_response_body": 1, + "client.responseBody": 1, + "http_response_body_size": 1, + "client.responseBodySize": 1, + "http_response_body_progress": 1, + "client.responseBodyProgress": 1, + "http_response_headers": 1, + "client.responseHeaders": 1, + "http_destroy": 1, + "playerObject": 1, + "playerID": 1, + "otherPlayerID": 1, + "otherPlayer": 1, + "sameVersion": 1, + "buffer": 1, + "plugins": 4, + "pluginsRequired": 2, + "usePlugins": 1, + "global.serverSocket": 10, + "gotServerHello": 2, + "room": 1, + "DownloadRoom": 1, + "keyboard_check": 1, + "vk_escape": 1, + "downloadingMap": 2, + "downloadMapBytes": 2, + "buffer_size": 2, + "downloadMapBuffer": 6, + "write_buffer_to_file": 1, + "downloadMapName": 3, + "roomchange": 2, + "do": 1, + "HELLO": 1, + "receivestring": 4, + "advertisedMapMd5": 1, + "receiveCompleteMessage": 1, + "Server": 3, + "sent": 7, + "illegal": 2, + "This": 2, + "server": 10, + "requires": 1, + "following": 2, + "play": 2, + "suggests": 1, + "optional": 1, + "Error": 2, + "ocurred": 1, + "loading": 1, + "plugins.": 1, + "Maps/": 2, + ".png": 2, + "Enter": 1, + "Password": 1, + "Incorrect": 1, + "Password.": 1, + "Incompatible": 1, + "version.": 1, + "Name": 1, + "Exploit": 1, + "plugin": 6, + "packet": 3, + "ID": 2, + "There": 1, + "are": 1, + "many": 1, + "connections": 1, + "your": 1, + "IP": 1, + "You": 1, + "have": 2, + "been": 1, + "kicked": 1, + "server.": 1, + "#Server": 1, + "went": 1, + "invalid": 1, + "internal": 1, + "#Exiting.": 1, + "full.": 1, + "ERROR": 1, + "when": 1, + "reading": 1, + "no": 1, + "such": 1, + "unexpected": 1, + "data.": 1, + "until": 1, + "hashList": 5, + "pluginname": 9, + "pluginhash": 4, + "realhash": 1, + "handle": 1, + "filesize": 1, + "progress": 1, + "tempfile": 1, + "tempdir": 1, + "lastContact": 2, + "isCached": 2, + "isDebug": 2, + "split": 1, + "checkpluginname": 1, + "ds_list_find_index": 1, + ".zip": 3, + "ServerPluginsCache": 6, + "@": 5, + ".zip.tmp": 1, + ".tmp": 2, + "ServerPluginsDebug": 1, + "Warning": 2, + "being": 2, + "loaded": 2, + "ServerPluginsDebug.": 2, + "Make": 2, + "sure": 2, + "clients": 1, + "they": 1, + "may": 2, + "unable": 2, + "connect.": 2, + "you": 1, + "Downloading": 1, + "last_plugin.log": 2, + "plugin.gml": 1 + }, + "Volt": { + "module": 1, + "main": 2, + ";": 53, + "import": 7, + "core.stdc.stdio": 1, + "core.stdc.stdlib": 1, + "watt.process": 1, + "watt.path": 1, + "results": 1, + "list": 1, + "cmd": 1, + "int": 8, + "(": 37, + ")": 37, + "{": 12, + "auto": 6, + "cmdGroup": 2, + "new": 3, + "CmdGroup": 1, + "bool": 4, + "printOk": 2, + "true": 4, + "printImprovments": 2, + "printFailing": 2, + "printRegressions": 2, + "string": 1, + "compiler": 3, + "getEnv": 1, + "if": 7, + "is": 2, + "null": 3, + "printf": 6, + ".ptr": 14, + "return": 2, + "-": 3, + "}": 12, + "///": 1, + "@todo": 1, + "Scan": 1, + "for": 4, + "files": 1, + "tests": 2, + "testList": 1, + "total": 5, + "passed": 5, + "failed": 5, + "improved": 3, + "regressed": 6, + "rets": 5, + "Result": 2, + "[": 6, + "]": 6, + "tests.length": 3, + "size_t": 3, + "i": 14, + "<": 3, + "+": 14, + ".runTest": 1, + "cmdGroup.waitAll": 1, + "ret": 1, + "ret.ok": 1, + "cast": 5, + "ret.hasPassed": 4, + "&&": 2, + "ret.test.ptr": 4, + "ret.msg.ptr": 4, + "else": 3, + "fflush": 2, + "stdout": 1, + "xml": 8, + "fopen": 1, + "fprintf": 2, + "rets.length": 1, + ".xmlLog": 1, + "fclose": 1, + "rate": 2, + "float": 2, + "/": 1, + "*": 1, + "f": 1, + "double": 1 + }, + "Monkey": { + "Strict": 1, + "sample": 1, + "class": 1, + "from": 1, + "the": 1, + "documentation": 1, + "Class": 3, + "Game": 1, + "Extends": 2, + "App": 1, + "Function": 2, + "New": 1, + "(": 12, + ")": 12, + "End": 8, + "DrawSpiral": 3, + "clock": 3, + "Local": 3, + "w": 3, + "DeviceWidth/2": 1, + "For": 1, + "i#": 1, + "Until": 1, + "w*1.5": 1, + "Step": 1, + ".2": 1, + "x#": 1, + "y#": 1, + "x": 2, + "+": 5, + "i*Sin": 1, + "i*3": 1, + "y": 2, + "i*Cos": 1, + "i*2": 1, + "DrawRect": 1, + "Next": 1, + "hitbox.Collide": 1, + "event.pos": 1, + "Field": 2, + "updateCount": 3, + "Method": 4, + "OnCreate": 1, + "Print": 2, + "SetUpdateRate": 1, + "OnUpdate": 1, + "OnRender": 1, + "Cls": 1, + "updateCount*1.1": 1, + "Enemy": 1, + "Die": 1, + "Abstract": 1, + "field": 1, + "testField": 1, + "Bool": 2, + "True": 2, + "oss": 1, + "he": 2, + "-": 2, + "killed": 1, + "me": 1, + "b": 6, + "extending": 1, + "with": 1, + "generics": 1, + "VectorNode": 1, + "Node": 1, + "": 1, + "array": 1, + "syntax": 1, + "Global": 14, + "listOfStuff": 3, + "String": 4, + "[": 6, + "]": 6, + "lessStuff": 1, + "oneStuff": 1, + "a": 3, + "comma": 1, + "separated": 1, + "sequence": 1, + "text": 1, + "worstCase": 1, + "worst.List": 1, + "": 1, + "escape": 1, + "characers": 1, + "in": 1, + "strings": 1, + "string3": 1, + "string4": 1, + "string5": 1, + "string6": 1, + "prints": 1, + ".ToUpper": 1, + "Boolean": 1, + "shorttype": 1, + "boolVariable1": 1, + "boolVariable2": 1, + "False": 1, + "preprocessor": 1, + "keywords": 1, + "#If": 1, + "TARGET": 2, + "DoStuff": 1, + "#ElseIf": 1, + "DoOtherStuff": 1, + "#End": 1, + "operators": 1, + "|": 2, + "&": 1, + "c": 1 + }, + "SystemVerilog": { + "module": 3, + "endpoint_phy_wrapper": 2, + "(": 92, + "input": 12, + "clk_sys_i": 2, + "clk_ref_i": 6, + "clk_rx_i": 3, + "rst_n_i": 3, + "IWishboneMaster.master": 2, + "src": 1, + "IWishboneSlave.slave": 1, + "snk": 1, + "sys": 1, + "output": 6, + "[": 17, + "]": 17, + "td_o": 2, + "rd_i": 2, + "txn_o": 2, + "txp_o": 2, + "rxn_i": 2, + "rxp_i": 2, + ")": 92, + ";": 32, + "wire": 12, + "rx_clock": 3, + "parameter": 2, + "g_phy_type": 6, + "gtx_data": 3, + "gtx_k": 3, + "gtx_disparity": 3, + "gtx_enc_error": 3, + "grx_data": 3, + "grx_clk": 1, + "grx_k": 3, + "grx_enc_error": 3, + "grx_bitslide": 2, + "gtp_rst": 2, + "tx_clock": 3, + "generate": 1, + "if": 5, + "begin": 4, + "assign": 2, + "wr_tbi_phy": 1, + "U_Phy": 1, + ".serdes_rst_i": 1, + ".serdes_loopen_i": 1, + "b0": 5, + ".serdes_enable_i": 1, + "b1": 2, + ".serdes_tx_data_i": 1, + ".serdes_tx_k_i": 1, + ".serdes_tx_disparity_o": 1, + ".serdes_tx_enc_err_o": 1, + ".serdes_rx_data_o": 1, + ".serdes_rx_k_o": 1, + ".serdes_rx_enc_err_o": 1, + ".serdes_rx_bitslide_o": 1, + ".tbi_refclk_i": 1, + ".tbi_rbclk_i": 1, + ".tbi_td_o": 1, + ".tbi_rd_i": 1, + ".tbi_syncen_o": 1, + ".tbi_loopen_o": 1, + ".tbi_prbsen_o": 1, + ".tbi_enable_o": 1, + "end": 4, + "else": 2, + "//": 3, + "wr_gtx_phy_virtex6": 1, + "#": 3, + ".g_simulation": 2, + "U_PHY": 1, + ".clk_ref_i": 2, + ".tx_clk_o": 1, + ".tx_data_i": 1, + ".tx_k_i": 1, + ".tx_disparity_o": 1, + ".tx_enc_err_o": 1, + ".rx_rbclk_o": 1, + ".rx_data_o": 1, + ".rx_k_o": 1, + ".rx_enc_err_o": 1, + ".rx_bitslide_o": 1, + ".rst_i": 1, + ".loopen_i": 1, + ".pad_txn0_o": 1, + ".pad_txp0_o": 1, + ".pad_rxn0_i": 1, + ".pad_rxp0_i": 1, + "endgenerate": 1, + "wr_endpoint": 1, + ".g_pcs_16bit": 1, + ".g_rx_buffer_size": 1, + ".g_with_rx_buffer": 1, + ".g_with_timestamper": 1, + ".g_with_dmtd": 1, + ".g_with_dpi_classifier": 1, + ".g_with_vlans": 1, + ".g_with_rtu": 1, + "DUT": 1, + ".clk_sys_i": 1, + ".clk_dmtd_i": 1, + ".rst_n_i": 1, + ".pps_csync_p1_i": 1, + ".src_dat_o": 1, + "snk.dat_i": 1, + ".src_adr_o": 1, + "snk.adr": 1, + ".src_sel_o": 1, + "snk.sel": 1, + ".src_cyc_o": 1, + "snk.cyc": 1, + ".src_stb_o": 1, + "snk.stb": 1, + ".src_we_o": 1, + "snk.we": 1, + ".src_stall_i": 1, + "snk.stall": 1, + ".src_ack_i": 1, + "snk.ack": 1, + ".src_err_i": 1, + ".rtu_full_i": 1, + ".rtu_rq_strobe_p1_o": 1, + ".rtu_rq_smac_o": 1, + ".rtu_rq_dmac_o": 1, + ".rtu_rq_vid_o": 1, + ".rtu_rq_has_vid_o": 1, + ".rtu_rq_prio_o": 1, + ".rtu_rq_has_prio_o": 1, + ".wb_cyc_i": 1, + "sys.cyc": 1, + ".wb_stb_i": 1, + "sys.stb": 1, + ".wb_we_i": 1, + "sys.we": 1, + ".wb_sel_i": 1, + "sys.sel": 1, + ".wb_adr_i": 1, + "sys.adr": 1, + ".wb_dat_i": 1, + "sys.dat_o": 1, + ".wb_dat_o": 1, + "sys.dat_i": 1, + ".wb_ack_o": 1, + "sys.ack": 1, + "endmodule": 2, + "priority_encoder": 1, + "INPUT_WIDTH": 3, + "OUTPUT_WIDTH": 3, + "logic": 2, + "-": 4, + "input_data": 2, + "output_data": 3, + "int": 1, + "ii": 6, + "always_comb": 1, + "for": 2, + "<": 1, + "+": 3, + "function": 1, + "integer": 2, + "log2": 4, + "x": 6, + "endfunction": 1, + "fifo": 1, + "clk_50": 1, + "clk_2": 1, + "reset_n": 1, + "data_out": 1, + "empty": 1 + }, + "Grammatical Framework": { + "-": 594, + "(": 256, + "c": 73, + ")": 256, + "Aarne": 13, + "Ranta": 13, + "under": 33, + "LGPL": 33, + "instance": 5, + "LexFoodsFin": 2, + "of": 89, + "LexFoods": 12, + "open": 23, + "SyntaxFin": 2, + "ParadigmsFin": 1, + "in": 32, + "{": 579, + "flags": 32, + "coding": 29, + "utf8": 29, + ";": 1399, + "oper": 29, + "wine_N": 7, + "mkN": 46, + "pizza_N": 7, + "cheese_N": 7, + "fish_N": 8, + "fresh_A": 7, + "mkA": 47, + "warm_A": 8, + "italian_A": 7, + "expensive_A": 7, + "delicious_A": 7, + "boring_A": 7, + "}": 580, + "abstract": 1, + "Foods": 34, + "startcat": 1, + "Comment": 31, + "cat": 1, + "Item": 31, + "Kind": 33, + "Quality": 34, + "fun": 1, + "Pred": 30, + "This": 29, + "That": 29, + "These": 28, + "Those": 28, + "Mod": 29, + "Wine": 29, + "Cheese": 29, + "Fish": 29, + "Pizza": 28, + "Very": 29, + "Fresh": 29, + "Warm": 29, + "Italian": 29, + "Expensive": 29, + "Delicious": 29, + "Boring": 29, + "Vikash": 1, + "Rauniyar": 1, + "concrete": 33, + "FoodsHin": 2, + "param": 22, + "Gender": 94, + "Masc": 67, + "|": 122, + "Fem": 65, + "Number": 207, + "Sg": 184, + "Pl": 182, + "lincat": 28, + "s": 365, + "Str": 394, + "g": 132, + "n": 206, + "lin": 28, + "item": 36, + "quality": 90, + "item.s": 24, + "+": 480, + "quality.s": 50, + "item.g": 12, + "item.n": 29, + "copula": 33, + "kind": 115, + "kind.s": 46, + "kind.g": 38, + "regN": 15, + "regAdj": 61, + "p": 11, + "table": 148, + "case": 44, + "lark": 8, + "_": 68, + "mkAdj": 27, + "ms": 4, + "mp": 4, + "f": 16, + "a": 57, + "acch": 6, + "#": 14, + "path": 14, + ".": 13, + "prelude": 2, + "Inese": 1, + "Bernsone": 1, + "FoodsLav": 1, + "Prelude": 11, + "SS": 6, + "Q": 5, + "Defin": 9, + "ss": 13, + "Q1": 5, + "Ind": 14, + "det": 86, + "Def": 21, + "noun": 51, + "qual": 8, + "q": 10, + "spec": 2, + "qual.s": 8, + "Q2": 3, + "adjective": 22, + "specAdj": 2, + "m": 9, + "cn": 11, + "cn.g": 10, + "cn.s": 8, + "man": 10, + "men": 10, + "skaists": 5, + "skaista": 2, + "skaisti": 2, + "skaistas": 2, + "skaistais": 2, + "skaistaa": 2, + "skaistie": 2, + "skaistaas": 2, + "let": 8, + "skaist": 8, + "init": 4, + "Adjective": 9, + "Type": 9, + "a.s": 8, + "Jordi": 2, + "Saludes": 2, + "LexFoodsCat": 2, + "SyntaxCat": 2, + "ParadigmsCat": 1, + "M": 1, + "MorphoCat": 1, + "M.Masc": 2, + "FoodsEng": 1, + "language": 2, + "en_US": 1, + "regNoun": 38, + "adj": 38, + "noun.s": 7, + "car": 6, + "cold": 4, + "../foods": 1, + "present": 7, + "FoodsFre": 1, + "SyntaxFre": 1, + "ParadigmsFre": 1, + "Utt": 4, + "NP": 4, + "CN": 4, + "AP": 4, + "mkUtt": 4, + "mkCl": 4, + "mkNP": 16, + "this_QuantSg": 2, + "that_QuantSg": 2, + "these_QuantPl": 2, + "those_QuantPl": 2, + "mkCN": 20, + "mkAP": 28, + "very_AdA": 4, + "masculine": 4, + "feminine": 2, + "FoodsPes": 1, + "optimize": 1, + "noexpand": 1, + "Add": 8, + "prep": 11, + "Indep": 4, + "Attr": 9, + "kind.prep": 1, + "quality.prep": 1, + "at": 3, + "a.prep": 1, + "it": 2, + "must": 1, + "be": 1, + "written": 1, + "as": 2, + "x1": 3, + "x4": 2, + "pytzA": 3, + "pytzAy": 1, + "pytzAhA": 3, + "pr": 4, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "mrd": 8, + "tAzh": 8, + "tAzhy": 2, + "interface": 1, + "Syntax": 7, + "N": 4, + "A": 6, + "LexFoodsIta": 2, + "SyntaxIta": 2, + "ParadigmsIta": 1, + "FoodsOri": 1, + "Laurette": 2, + "Pretorius": 2, + "Sr": 2, + "&": 2, + "Jr": 2, + "and": 4, + "Ansu": 2, + "Berg": 2, + "FoodsAfr": 1, + "Predef": 3, + "AdjAP": 10, + "Predic": 3, + "declNoun_e": 2, + "declNoun_aa": 2, + "declNoun_ss": 2, + "declNoun_s": 2, + "veryAdj": 2, + "smartAdj_e": 4, + "Noun": 9, + "operations": 2, + "wyn": 1, + "kaas": 1, + "vis": 1, + "pizza": 1, + "x": 74, + "v": 6, + "tk": 1, + "last": 3, + "y": 3, + "declAdj_e": 2, + "declAdj_g": 2, + "w": 15, + "declAdj_oog": 2, + "i": 2, + "x.s": 8, + "FoodsGer": 1, + "FoodsI": 6, + "with": 5, + "SyntaxGer": 2, + "LexFoodsGer": 2, + "incomplete": 1, + "this_Det": 2, + "that_Det": 2, + "these_Det": 2, + "those_Det": 2, + "../lib/src/prelude": 1, + "Zofia": 1, + "Stankiewicz": 1, + "FoodsJpn": 1, + "Style": 3, + "AdjUse": 4, + "t": 28, + "AdjType": 4, + "quality.t": 3, + "IAdj": 4, + "Plain": 3, + "APred": 8, + "Polite": 4, + "NaAdj": 4, + "na": 1, + "adjectives": 2, + "have": 2, + "different": 1, + "forms": 2, + "attributes": 1, + "predicates": 2, + "for": 6, + "phrase": 1, + "types": 1, + "can": 1, + "form": 4, + "without": 1, + "the": 7, + "cannot": 1, + "d": 6, + "sakana": 6, + "chosenna": 2, + "chosen": 2, + "akai": 2, + "FoodsTur": 1, + "Case": 10, + "softness": 4, + "Softness": 5, + "h": 4, + "Harmony": 5, + "Reason": 1, + "excluding": 1, + "plural": 3, + "In": 1, + "Turkish": 1, + "if": 1, + "subject": 1, + "is": 6, + "not": 2, + "human": 2, + "being": 1, + "then": 1, + "singular": 1, + "used": 2, + "regardless": 1, + "number": 2, + "subject.": 1, + "Since": 1, + "all": 1, + "possible": 1, + "subjects": 1, + "are": 1, + "non": 1, + "do": 1, + "need": 1, + "to": 6, + "form.": 1, + "quality.softness": 1, + "quality.h": 1, + "quality.c": 1, + "Nom": 9, + "Gen": 5, + "a.c": 1, + "a.softness": 1, + "a.h": 1, + "I_Har": 4, + "Ih_Har": 4, + "U_Har": 4, + "Uh_Har": 4, + "Ih": 1, + "Uh": 1, + "Soft": 3, + "Hard": 3, + "num": 6, + "overload": 1, + "mkn": 1, + "peynir": 2, + "peynirler": 2, + "[": 2, + "]": 2, + "sarap": 2, + "saraplar": 2, + "sarabi": 2, + "saraplari": 2, + "italyan": 4, + "ca": 2, + "getSoftness": 2, + "getHarmony": 2, + "See": 1, + "comment": 1, + "lines": 1, + "excluded": 1, + "copula.": 1, + "base": 4, + "c@": 3, + "*": 1, + "/GF/lib/src/prelude": 1, + "Nyamsuren": 1, + "Erdenebadrakh": 1, + "FoodsMon": 1, + "prefixSS": 1, + "FoodsSwe": 1, + "SyntaxSwe": 2, + "LexFoodsSwe": 2, + "**": 1, + "sv_SE": 1, + "John": 1, + "J.": 1, + "Camilleri": 1, + "FoodsMlt": 1, + "uniAdj": 2, + "Create": 6, + "an": 2, + "full": 1, + "function": 1, + "Params": 4, + "Sing": 4, + "Plural": 2, + "iswed": 2, + "sewda": 2, + "suwed": 3, + "regular": 2, + "Param": 2, + "frisk": 4, + "eg": 1, + "tal": 1, + "buzz": 1, + "uni": 4, + "Singular": 1, + "inherent": 1, + "ktieb": 2, + "kotba": 2, + "Copula": 1, + "linking": 1, + "verb": 1, + "article": 3, + "taking": 1, + "into": 1, + "account": 1, + "first": 1, + "letter": 1, + "next": 1, + "word": 3, + "pre": 1, + "cons@": 1, + "cons": 1, + "determinant": 1, + "Sg/Pl": 1, + "string": 1, + "default": 1, + "masc": 3, + "gender": 2, + "FoodsFin": 1, + "ParadigmsSwe": 1, + "Rami": 1, + "Shashati": 1, + "FoodsPor": 1, + "mkAdjReg": 7, + "QualityT": 5, + "bonito": 2, + "bonita": 2, + "bonitos": 2, + "bonitas": 2, + "pattern": 1, + "adjSozinho": 2, + "sozinho": 3, + "sozinh": 4, + "Predef.tk": 2, + "independent": 1, + "adjUtil": 2, + "util": 3, + "uteis": 3, + "smart": 1, + "paradigm": 1, + "adjcetives": 1, + "ItemT": 2, + "KindT": 4, + "noun.g": 3, + "animal": 2, + "animais": 2, + "gen": 4, + "carro": 3, + "ParadigmsGer": 1, + "Dinesh": 1, + "Simkhada": 1, + "FoodsNep": 1, + "adjPl": 2, + "bor": 2, + "alltenses": 3, + "Dana": 1, + "Dannells": 1, + "Licensed": 1, + "FoodsHeb": 2, + "Species": 8, + "mod": 7, + "Modified": 5, + "sp": 11, + "Indef": 6, + "T": 2, + "regAdj2": 3, + "F": 2, + "Adj": 4, + "cn.mod": 2, + "gvina": 6, + "hagvina": 3, + "gvinot": 6, + "hagvinot": 3, + "defH": 7, + "replaceLastLetter": 7, + "tov": 6, + "tova": 3, + "tovim": 3, + "tovot": 3, + "italki": 3, + "italk": 4, + "Krasimir": 1, + "Angelov": 1, + "FoodsBul": 1, + "Neutr": 21, + "Agr": 3, + "ASg": 23, + "APl": 11, + "item.a": 2, + "FoodsTha": 1, + "SyntaxTha": 1, + "LexiconTha": 1, + "ParadigmsTha": 1, + "R": 4, + "ResTha": 1, + "R.thword": 4, + "Shafqat": 1, + "Virk": 1, + "FoodsUrd": 1, + "coupla": 2, + "Katerina": 2, + "Bohmova": 2, + "FoodsCze": 1, + "ResCze": 2, + "NounPhrase": 3, + "regnfAdj": 2, + "Martha": 1, + "Dis": 1, + "Brandt": 1, + "FoodsIce": 1, + "more": 1, + "commonly": 1, + "Iceland": 1, + "but": 1, + "Icelandic": 1, + "defOrInd": 2, + "order": 1, + "given": 1, + "mSg": 1, + "fSg": 1, + "nSg": 1, + "mPl": 1, + "fPl": 1, + "nPl": 1, + "mSgDef": 1, + "f/nSgDef": 1, + "_PlDef": 1, + "fem": 2, + "neutr": 2, + "x9": 1, + "ferskur": 5, + "fersk": 11, + "ferskt": 2, + "ferskir": 2, + "ferskar": 2, + "fersk_pl": 2, + "ferski": 2, + "ferska": 2, + "fersku": 2, + "": 1, + "<": 10, + "FoodsSpa": 1, + "SyntaxSpa": 1, + "StructuralSpa": 1, + "ParadigmsSpa": 1, + "FoodsChi": 1, + "quality.p": 2, + "kind.c": 11, + "geKind": 5, + "longQuality": 8, + "mkKind": 2, + "Julia": 1, + "Hammar": 1, + "FoodsEpo": 1, + "vino": 3, + "nova": 3, + "Ramona": 1, + "Enache": 1, + "FoodsRon": 1, + "NGender": 6, + "NMasc": 2, + "NFem": 3, + "NNeut": 2, + "mkTab": 5, + "mkNoun": 5, + "getAgrGender": 3, + "acesta": 2, + "aceasta": 2, + "gg": 3, + "det.s": 1, + "peste": 2, + "pesti": 2, + "scump": 2, + "scumpa": 2, + "scumpi": 2, + "scumpe": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "ng": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "FoodsTsn": 1, + "NounClass": 28, + "r": 9, + "b": 9, + "Bool": 5, + "p_form": 18, + "TType": 16, + "mkPredDescrCop": 2, + "item.c": 1, + "quality.p_form": 1, + "kind.w": 4, + "mkDemPron1": 3, + "kind.q": 4, + "mkDemPron2": 3, + "mkMod": 2, + "Lexicon": 1, + "mkNounNC14_6": 2, + "mkNounNC9_10": 4, + "smartVery": 2, + "mkVarAdj": 2, + "mkOrdAdj": 4, + "mkPerAdj": 2, + "mkVerbRel": 2, + "NC9_10": 14, + "NC14_6": 14, + "P": 4, + "V": 4, + "ModV": 4, + "y.b": 1, + "True": 3, + "y.w": 2, + "y.r": 2, + "y.c": 14, + "y.q": 4, + "smartQualRelPart": 5, + "x.t": 10, + "smartDescrCop": 5, + "False": 3, + "mkVeryAdj": 2, + "x.p_form": 2, + "mkVeryVerb": 3, + "mkQualRelPart_PName": 2, + "mkQualRelPart": 2, + "mkDescrCop_PName": 2, + "mkDescrCop": 2, + "FoodsIta": 1, + "FoodsAmh": 1, + "FoodsCat": 1, + "resource": 1, + "ne": 2, + "muz": 2, + "muzi": 2, + "msg": 3, + "fsg": 3, + "nsg": 3, + "mpl": 3, + "fpl": 3, + "npl": 3, + "mlad": 7, + "vynikajici": 7, + "Femke": 1, + "Johansson": 1, + "FoodsDut": 1, + "AForm": 4, + "AAttr": 3, + "regadj": 6, + "wijn": 3, + "koud": 3, + "duur": 2, + "dure": 2 + }, + "PostScript": { + "%": 23, + "PS": 1, + "-": 4, + "Adobe": 1, + "Creator": 1, + "Aaron": 1, + "Puchert": 1, + "Title": 1, + "The": 1, + "Sierpinski": 1, + "triangle": 1, + "Pages": 1, + "PageOrder": 1, + "Ascend": 1, + "BeginProlog": 1, + "/pageset": 1, + "{": 4, + "scale": 1, + "set": 1, + "cm": 1, + "translate": 1, + "setlinewidth": 1, + "}": 4, + "def": 2, + "/sierpinski": 1, + "dup": 4, + "gt": 1, + "[": 6, + "]": 6, + "concat": 5, + "sub": 3, + "sierpinski": 4, + "newpath": 1, + "moveto": 1, + "lineto": 2, + "closepath": 1, + "fill": 1, + "ifelse": 1, + "pop": 1, + "EndProlog": 1, + "BeginSetup": 1, + "<<": 1, + "/PageSize": 1, + "setpagedevice": 1, + "A4": 1, + "EndSetup": 1, + "Page": 1, + "Test": 1, + "pageset": 1, + "sqrt": 1, + "showpage": 1, + "EOF": 1 }, "CSS": { ".clearfix": 8, @@ -19268,395 +54308,2464 @@ "backdrop.fade": 1, "backdrop.fade.in": 1 }, - "Cuda": { - "__global__": 2, - "void": 3, - "scalarProdGPU": 1, - "(": 20, - "float": 8, - "*d_C": 1, - "*d_A": 1, - "*d_B": 1, - "int": 14, - "vectorN": 2, - "elementN": 3, - ")": 20, - "{": 8, - "//Accumulators": 1, - "cache": 1, - "__shared__": 1, - "accumResult": 5, - "[": 11, - "ACCUM_N": 4, - "]": 11, - ";": 30, - "////////////////////////////////////////////////////////////////////////////": 2, - "for": 5, - "vec": 5, - "blockIdx.x": 2, - "<": 5, - "+": 12, - "gridDim.x": 1, - "vectorBase": 3, - "IMUL": 1, - "vectorEnd": 2, - "////////////////////////////////////////////////////////////////////////": 4, - "iAccum": 10, - "threadIdx.x": 4, - "blockDim.x": 3, - "sum": 3, - "pos": 5, - "d_A": 2, - "*": 2, - "d_B": 2, - "}": 8, - "stride": 5, - "/": 2, - "__syncthreads": 1, - "if": 3, - "d_C": 2, - "#include": 2, - "": 1, - "": 1, - "vectorAdd": 2, - "const": 2, - "*A": 1, - "*B": 1, - "*C": 1, - "numElements": 4, + "Forth": { + "(": 88, + "Block": 2, + "words.": 6, + ")": 87, + "variable": 3, + "blk": 3, + "current": 5, + "-": 473, + "block": 8, + "n": 22, + "addr": 11, + ";": 61, + "buffer": 2, + "evaluate": 1, + "extended": 3, + "semantics": 3, + "flush": 1, + "load": 2, + "...": 4, + "dup": 10, + "save": 2, + "input": 2, + "in": 4, + "@": 13, + "source": 5, + "#source": 2, + "interpret": 1, + "restore": 1, + "buffers": 2, + "update": 1, + "extension": 4, + "empty": 2, + "scr": 2, + "list": 1, + "bounds": 1, + "do": 2, "i": 5, - "C": 1, + "emit": 2, + "loop": 4, + "refill": 2, + "thru": 1, + "x": 10, + "y": 5, + "+": 17, + "swap": 12, + "*": 9, + "forth": 2, + "Copyright": 3, + "Lars": 3, + "Brinkhoff": 3, + "Kernel": 4, + "#tib": 2, + "TODO": 12, + ".r": 1, + ".": 5, + "[": 16, + "char": 10, + "]": 15, + "parse": 5, + "type": 3, + "immediate": 19, + "<": 14, + "flag": 4, + "r": 18, + "x1": 5, + "x2": 5, + "R": 13, + "rot": 2, + "r@": 2, + "noname": 1, + "align": 2, + "here": 9, + "c": 3, + "allot": 2, + "lastxt": 4, + "SP": 1, + "query": 1, + "tib": 1, + "body": 1, + "true": 1, + "tuck": 2, + "over": 5, + "u.r": 1, + "u": 3, + "if": 9, + "drop": 4, + "false": 1, + "else": 6, + "then": 5, + "unused": 1, + "value": 1, + "create": 2, + "does": 5, + "within": 1, + "compile": 2, + "Forth2012": 2, + "core": 1, + "action": 1, + "of": 3, + "defer": 2, + "name": 1, + "s": 4, + "HELLO": 4, + "KataDiversion": 1, + "Forth": 1, + "utils": 1, + "the": 7, + "stack": 3, + "EMPTY": 1, + "DEPTH": 2, + "IF": 10, + "BEGIN": 3, + "DROP": 5, + "UNTIL": 3, + "THEN": 10, + "power": 2, + "**": 2, + "n1": 2, + "n2": 2, + "n1_pow_n2": 1, + "SWAP": 8, + "DUP": 14, + "DO": 2, + "OVER": 2, + "LOOP": 2, + "NIP": 4, + "compute": 1, + "highest": 1, + "below": 1, + "N.": 1, + "e.g.": 2, + "MAXPOW2": 2, + "log2_n": 1, + "ABORT": 1, + "ELSE": 7, + "|": 4, + "I": 5, + "i*2": 1, + "/": 3, + "kata": 1, + "test": 1, + "given": 3, + "N": 6, + "has": 1, + "two": 2, + "adjacent": 2, + "bits": 3, + "NOT": 3, + "TWO": 3, + "ADJACENT": 3, + "BITS": 3, + "bool": 1, + "word": 9, + "uses": 1, + "following": 1, + "algorithm": 1, + "return": 5, + "A": 5, + "X": 5, + "LOG2": 1, + "end": 1, + "and": 3, + "OR": 1, + "INVERT": 1, + "maximum": 1, + "number": 4, + "which": 3, + "can": 2, + "be": 2, + "made": 2, + "with": 2, + "MAX": 2, + "NB": 3, + "m": 2, + "**n": 1, + "numbers": 1, + "or": 1, + "less": 1, + "have": 1, + "not": 1, + "bits.": 1, + "see": 1, + "http": 1, + "//www.codekata.com/2007/01/code_kata_fifte.html": 1, + "HOW": 1, + "MANY": 1, + "Tools": 2, + ".s": 1, + "depth": 1, + "traverse": 1, + "dictionary": 1, + "cr": 3, + "code": 3, + "assembler": 1, + "kernel": 1, + "bye": 1, + "cs": 2, + "pick": 1, + "roll": 1, + "editor": 1, + "forget": 1, + "reveal": 1, + "state": 2, + "tools": 1, + "nr": 1, + "synonym": 1, + "undefined": 2, + "bl": 4, + "find": 2, + "nip": 2, + "defined": 1, + "postpone": 14, + "invert": 1, + "/cell": 2, + "cell": 2, + "c@": 2, + "negate": 1, + "ahead": 2, + "resolve": 4, + "literal": 4, + "nonimmediate": 1, + "caddr": 1, + "C": 9, + "cells": 1, + "postponers": 1, + "execute": 1, + "unresolved": 4, + "orig": 5, + "chars": 1, + "orig1": 1, + "orig2": 1, + "branch": 5, + "dodoes_code": 1, + "begin": 2, + "dest": 5, + "while": 2, + "repeat": 2, + "until": 1, + "recurse": 1, + "pad": 3, + "If": 1, + "necessary": 1, + "keep": 1, + "parsing.": 1, + "string": 3, + "cmove": 1, + "abort": 3, + "": 1, + "Undefined": 1, + "ok": 1 + }, + "LFE": { + ";": 213, + "Copyright": 4, + "(": 217, + "c": 4, + ")": 231, + "-": 98, + "Robert": 3, + "Virding": 3, + "Licensed": 3, + "under": 9, + "the": 36, + "Apache": 3, + "License": 12, + "Version": 3, + "you": 3, + "may": 6, + "not": 5, + "use": 6, + "this": 3, + "file": 6, + "except": 3, + "in": 10, + "compliance": 3, + "with": 8, + "License.": 6, + "You": 3, + "obtain": 3, + "a": 8, + "copy": 3, + "of": 10, + "at": 4, + "http": 4, + "//www.apache.org/licenses/LICENSE": 3, + "Unless": 3, + "required": 3, + "by": 4, + "applicable": 3, + "law": 3, + "or": 6, + "agreed": 3, + "to": 10, + "writing": 3, + "software": 3, + "distributed": 6, + "is": 5, + "on": 4, + "an": 5, + "BASIS": 3, + "WITHOUT": 3, + "WARRANTIES": 3, + "OR": 3, + "CONDITIONS": 3, + "OF": 3, + "ANY": 3, + "KIND": 3, + "either": 3, + "express": 3, + "implied.": 3, + "See": 3, + "for": 5, + "specific": 3, + "language": 3, + "governing": 3, + "permissions": 3, + "and": 7, + "limitations": 3, + "File": 4, + "mnesia_demo.lfe": 1, + "Author": 3, + "Purpose": 3, "A": 1, - "B": 1, - "main": 1, - "cudaError_t": 1, - "err": 5, - "cudaSuccess": 2, - "threadsPerBlock": 4, - "blocksPerGrid": 1, - "-": 1, + "simple": 4, + "Mnesia": 2, + "demo": 2, + "LFE.": 1, + "This": 2, + "contains": 1, + "using": 1, + "LFE": 4, + "access": 1, + "tables.": 1, + "It": 1, + "shows": 2, + "how": 2, + "emp": 1, + "XXXX": 1, + "macro": 1, + "ETS": 1, + "match": 5, + "pattern": 1, + "together": 1, + "mnesia": 8, + "match_object": 1, + "specifications": 1, + "select": 1, + "Query": 2, + "List": 2, + "Comprehensions.": 1, + "defmodule": 2, + "mnesia_demo": 1, + "export": 2, + "new": 2, + "by_place": 1, + "by_place_ms": 1, + "by_place_qlc": 2, + "defrecord": 1, + "person": 8, + "name": 8, + "place": 7, + "job": 3, + "defun": 20, + "Start": 1, + "create": 4, + "table": 2, + "we": 1, + "will": 1, + "get": 21, + "memory": 1, + "only": 1, + "schema.": 1, + "start": 1, + "create_table": 1, + "#": 3, + "attributes": 1, + "Initialise": 1, + "table.": 1, + "let": 6, + "people": 1, + "spec": 1, + "[": 3, + "n": 4, + "p": 2, + "j": 2, + "]": 3, + "when": 1, + "tuple": 1, + "transaction": 2, + "f": 3, + "Use": 1, + "Comprehensions": 1, + "records": 1, + "lambda": 18, + "q": 2, + "qlc": 2, + "lc": 1, + "<": 1, + "e": 1, + "Duncan": 4, + "McGreggor": 4, + "": 2, + "object.lfe": 1, + "Demonstrating": 2, + "OOP": 1, + "closures": 1, + "The": 4, + "object": 16, + "system": 1, + "demonstrated": 1, + "below": 3, + "do": 2, + "following": 2, + "*": 6, + "objects": 2, + "call": 2, + "methods": 5, + "those": 1, + "have": 3, + "which": 1, + "can": 1, + "other": 1, + "update": 1, + "state": 4, + "instance": 2, + "variable": 2, + "Note": 1, + "however": 1, + "that": 1, + "his": 1, + "example": 2, + "does": 1, + "demonstrate": 1, + "inheritance.": 1, + "To": 1, + "code": 2, + "cd": 1, + "examples": 1, + "../bin/lfe": 1, + "pa": 1, + "../ebin": 1, + "Load": 1, + "fish": 6, + "class": 3, + "slurp": 2, + "#Fun": 1, + "": 1, + "Execute": 1, + "some": 2, + "basic": 1, + "species": 7, + "mommy": 3, + "move": 4, + "Carp": 1, + "swam": 1, + "feet": 1, + "ok": 1, + "id": 9, + "Now": 1, + "s": 19, + "strictly": 1, + "necessary.": 1, + "When": 1, + "isn": 1, + "list": 13, + "children": 10, + "formatted": 1, + "verb": 2, + "self": 6, + "distance": 2, + "count": 7, + "erlang": 1, + "length": 1, + "method": 7, + "funcall": 23, + "define": 1, + "info": 1, + "reproduce": 1, + "Mode": 1, + "Code": 1, + "from": 2, + "Paradigms": 1, + "Artificial": 1, + "Intelligence": 1, + "Programming": 1, + "Peter": 1, + "Norvig": 1, + "gps1.lisp": 1, + "First": 1, + "version": 1, + "GPS": 1, + "General": 1, + "Problem": 1, + "Solver": 1, + "Converted": 1, + "Define": 1, + "macros": 1, + "global": 2, + "access.": 1, + "hack": 1, + "very": 1, + "naughty": 1, + "defsyntax": 2, + "defvar": 2, + "val": 2, + "v": 3, + "put": 1, + "getvar": 3, + "solved": 1, + "gps": 1, + "goals": 2, + "Set": 1, + "variables": 1, + "but": 1, + "existing": 1, + "*ops*": 1, + "*state*": 5, + "current": 1, + "conditions.": 1, + "if": 1, + "every": 1, + "fun": 1, + "achieve": 1, + "op": 8, + "action": 3, + "setvar": 2, + "set": 1, + "difference": 1, + "del": 5, + "union": 1, + "add": 3, + "drive": 1, + "son": 2, + "school": 2, + "preconds": 4, + "shop": 6, + "installs": 1, + "battery": 1, + "car": 1, + "works": 1, + "make": 2, + "communication": 2, + "telephone": 1, + "phone": 1, + "book": 1, + "give": 1, + "money": 3, + "has": 1, + "church.lfe": 1, + "church": 20, + "numerals": 1, + "calculus": 1, + "was": 1, + "used": 1, + "section": 1, + "user": 1, + "guide": 1, + "here": 1, + "//lfe.github.io/user": 1, + "guide/recursion/5.html": 1, + "Here": 1, + "usage": 1, + "five/0": 2, + "int2": 1, + "all": 1, + "zero": 2, + "x": 12, + "one": 1, + "two": 1, + "three": 1, + "four": 1, + "five": 1, + "int": 2, + "successor": 3, + "+": 2, + "int1": 1, + "numeral": 8, + "successor/1": 1, + "limit": 4, + "cond": 1, + "/": 1, + "integer": 2 + }, + "Moocode": { + ";": 505, + "while": 15, + "(": 600, + "read": 1, + "player": 2, + ")": 593, + "endwhile": 14, + "I": 1, + "M": 1, + "P": 1, + "O": 1, + "R": 1, + "T": 2, + "A": 1, + "N": 1, + "The": 2, + "following": 2, + "code": 43, + "cannot": 1, + "be": 1, + "used": 1, + "as": 28, + "is.": 1, + "You": 1, + "will": 1, + "need": 1, + "to": 1, + "rewrite": 1, + "functionality": 1, + "that": 3, + "is": 6, + "not": 2, + "present": 1, + "in": 43, + "your": 1, + "server/core.": 1, + "most": 1, + "straight": 1, + "-": 98, + "forward": 1, + "target": 7, + "other": 1, + "than": 1, + "Stunt/Improvise": 1, + "a": 12, + "server/core": 1, + "provides": 1, + "map": 5, + "datatype": 1, + "and": 1, + "anonymous": 1, + "objects.": 1, + "Installation": 1, + "my": 1, + "server": 1, + "uses": 1, + "the": 4, + "object": 1, + "numbers": 1, + "#36819": 1, + "MOOcode": 4, + "Experimental": 2, + "Language": 2, + "Package": 2, + "#36820": 1, + "Changelog": 1, + "#36821": 1, + "Dictionary": 1, + "#36822": 1, + "Compiler": 2, + "#38128": 1, + "Syntax": 4, + "Tree": 1, + "Pretty": 1, + "Printer": 1, + "#37644": 1, + "Tokenizer": 2, + "Prototype": 25, + "#37645": 1, + "Parser": 2, + "#37648": 1, + "Symbol": 2, + "#37649": 1, + "Literal": 1, + "#37650": 1, + "Statement": 8, + "#37651": 1, + "Operator": 11, + "#37652": 1, + "Control": 1, + "Flow": 1, + "#37653": 1, + "Assignment": 2, + "#38140": 1, + "Compound": 1, + "#38123": 1, + "Prefix": 1, + "#37654": 1, + "Infix": 1, + "#37655": 1, + "Name": 1, + "#37656": 1, + "Bracket": 1, + "#37657": 1, + "Brace": 1, + "#37658": 1, + "If": 1, + "#38119": 1, + "For": 1, + "#38120": 1, + "Loop": 1, + "#38126": 1, + "Fork": 1, + "#38127": 1, + "Try": 1, + "#37659": 1, + "Invocation": 1, + "#37660": 1, + "Verb": 1, + "Selector": 2, + "#37661": 1, + "Property": 1, + "#38124": 1, + "Error": 1, + "Catching": 1, + "#38122": 1, + "Positional": 1, + "#38141": 1, + "From": 1, + "#37662": 1, + "Utilities": 1, + "#36823": 1, + "Tests": 4, + "#36824": 1, + "#37646": 1, + "#37647": 1, + ".": 30, + "parent": 1, + "plastic.tokenizer_proto": 4, + "@program": 29, + "_": 4, + "_ensure_prototype": 4, + "application/x": 27, + "moocode": 27, + "typeof": 11, + "this": 114, + "OBJ": 3, + "||": 19, + "raise": 23, + "E_INVARG": 3, + "_ensure_instance": 7, + "ANON": 2, + "plastic.compiler": 3, + "_lookup": 2, + "private": 1, + "{": 112, + "name": 9, + "}": 112, + "args": 26, + "if": 90, + "value": 73, + "this.variable_map": 3, + "[": 99, + "]": 102, + "E_RANGE": 17, + "return": 61, + "else": 45, + "tostr": 51, + "random": 3, + "this.reserved_names": 1, + "endif": 93, + "compile": 1, + "source": 32, + "options": 3, + "tokenizer": 6, + "this.plastic.tokenizer_proto": 2, + "create": 16, + "parser": 89, + "this.plastic.parser_proto": 2, + "compiler": 2, + "try": 2, + "statements": 13, + "except": 2, + "ex": 4, + "ANY": 3, + ".tokenizer.row": 1, + "endtry": 2, + "for": 31, + "statement": 29, + "statement.type": 10, + "@source": 3, + "p": 82, + "@compiler": 1, + "endfor": 31, + "ticks_left": 4, + "<": 13, + "seconds_left": 4, + "&&": 39, + "suspend": 4, + "statement.value": 20, + "elseif": 41, + "_generate": 1, + "isa": 21, + "this.plastic.sign_operator_proto": 1, + "|": 9, + "statement.first": 18, + "statement.second": 13, + "this.plastic.control_flow_statement_proto": 1, + "first": 22, + "statement.id": 3, + "this.plastic.if_statement_proto": 1, + "s": 47, + "respond_to": 9, + "@code": 28, + "@this": 13, + "+": 39, + "i": 29, + "length": 11, + "LIST": 6, + "this.plastic.for_statement_proto": 1, + "statement.subtype": 2, + "this.plastic.loop_statement_proto": 1, + "prefix": 4, + "this.plastic.fork_statement_proto": 1, + "this.plastic.try_statement_proto": 1, + "x": 9, + "@x": 3, + "join": 6, + "this.plastic.assignment_operator_proto": 1, + "statement.first.type": 1, + "res": 19, + "rest": 3, + "v": 17, + "statement.first.value": 1, + "v.type": 2, + "v.first": 2, + "v.second": 1, + "this.plastic.bracket_operator_proto": 1, + "statement.third": 4, + "this.plastic.brace_operator_proto": 1, + "this.plastic.invocation_operator_proto": 1, + "@a": 2, + "statement.second.type": 2, + "this.plastic.property_selector_operator_proto": 1, + "this.plastic.error_catching_operator_proto": 1, + "second": 18, + "this.plastic.literal_proto": 1, + "toliteral": 1, + "this.plastic.positional_symbol_proto": 1, + "this.plastic.prefix_operator_proto": 3, + "this.plastic.infix_operator_proto": 1, + "this.plastic.traditional_ternary_operator_proto": 1, + "this.plastic.name_proto": 1, + "plastic.printer": 2, + "_print": 4, + "indent": 4, + "result": 7, + "item": 2, + "@result": 2, + "E_PROPNF": 1, + "print": 1, + "instance": 59, + "instance.row": 1, + "instance.column": 1, + "instance.source": 1, + "advance": 16, + "this.token": 21, + "this.source": 3, + "row": 23, + "this.row": 2, + "column": 63, + "this.column": 2, + "eol": 5, + "block_comment": 6, + "inline_comment": 4, + "loop": 14, + "len": 3, + "continue": 16, + "next_two": 4, + "column..column": 1, + "c": 44, + "break": 6, + "re": 1, + "not.": 1, + "Worse": 1, + "*": 4, + "valid": 2, + "error": 6, + "like": 4, + "E_PERM": 4, + "treated": 2, + "literal": 2, + "an": 2, + "invalid": 2, + "E_FOO": 1, + "variable.": 1, + "Any": 1, + "starts": 1, + "with": 1, + "characters": 1, + "*now*": 1, + "but": 1, + "errors": 1, + "are": 1, + "errors.": 1, + "*/": 1, + "<=>": 8, + "z": 4, + "col1": 6, + "mark": 2, + "start": 2, + "1": 13, + "9": 4, + "col2": 4, + "chars": 21, + "index": 2, + "E_": 1, + "token": 24, + "type": 9, + "this.errors": 1, + "col1..col2": 2, + "toobj": 1, + "float": 4, + "0": 1, + "cc": 1, + "e": 1, + "tofloat": 1, + "toint": 1, + "esc": 1, + "q": 1, + "col1..column": 1, + "plastic.parser_proto": 3, + "@options": 1, + "instance.tokenizer": 1, + "instance.symbols": 1, + "plastic": 1, + "this.plastic": 1, + "symbol": 65, + "plastic.name_proto": 1, + "plastic.literal_proto": 1, + "plastic.operator_proto": 10, + "plastic.prefix_operator_proto": 1, + "plastic.error_catching_operator_proto": 3, + "plastic.assignment_operator_proto": 1, + "plastic.compound_assignment_operator_proto": 5, + "plastic.traditional_ternary_operator_proto": 2, + "plastic.infix_operator_proto": 13, + "plastic.sign_operator_proto": 2, + "plastic.bracket_operator_proto": 1, + "plastic.brace_operator_proto": 1, + "plastic.control_flow_statement_proto": 3, + "plastic.if_statement_proto": 1, + "plastic.for_statement_proto": 1, + "plastic.loop_statement_proto": 2, + "plastic.fork_statement_proto": 1, + "plastic.try_statement_proto": 1, + "plastic.from_statement_proto": 2, + "plastic.verb_selector_operator_proto": 2, + "plastic.property_selector_operator_proto": 2, + "plastic.invocation_operator_proto": 1, + "id": 14, + "bp": 3, + "proto": 4, + "nothing": 1, + "this.plastic.symbol_proto": 2, + "this.symbols": 4, + "clone": 2, + "this.token.type": 1, + "this.token.value": 1, + "this.token.eol": 1, + "operator": 1, + "variable": 1, + "identifier": 1, + "keyword": 1, + "Unexpected": 1, + "end": 2, + "Expected": 1, + "t": 1, + "call": 1, + "nud": 2, + "on": 1, + "@definition": 1, + "new": 4, + "pop": 4, + "delete": 1, + "plastic.utilities": 6, + "suspend_if_necessary": 4, + "parse_map_sequence": 1, + "separator": 6, + "infix": 3, + "terminator": 6, + "symbols": 7, + "ids": 6, + "@ids": 2, + "push": 3, + "@symbol": 2, + ".id": 13, + "key": 7, + "expression": 19, + "@map": 1, + "parse_list_sequence": 2, + "list": 3, + "@list": 1, + "validate_scattering_pattern": 1, + "pattern": 5, + "state": 8, + "element": 1, + "element.type": 3, + "element.id": 2, + "element.first.type": 2, + "children": 4, + "node": 3, + "node.value": 1, + "@children": 1, + "match": 1, + "root": 2, + "keys": 3, + "matches": 3, + "stack": 4, + "next": 2, + "top": 5, + "@stack": 2, + "top.": 1, + "@matches": 1, + "plastic.symbol_proto": 2, + "opts": 2, + "instance.id": 1, + "instance.value": 1, + "instance.bp": 1, + "k": 3, + "instance.": 1, + "parents": 3, + "ancestor": 2, + "ancestors": 1, + "property": 1, + "properties": 1, + "this.type": 8, + "this.first": 8, + "import": 8, + "this.second": 7, + "left": 2, + "this.third": 3, + "sequence": 2, + "led": 4, + "this.bp": 2, + "second.type": 2, + "make_identifier": 4, + "first.id": 1, + "parser.symbols": 2, + "reserve_keyword": 2, + "this.plastic.utilities": 1, + "third": 4, + "third.id": 2, + "second.id": 1, + "std": 1, + "reserve_statement": 1, + "types": 7, + ".type": 1, + "target.type": 3, + "target.value": 3, + "target.id": 4, + "temp": 4, + "temp.id": 1, + "temp.first.id": 1, + "temp.first.type": 2, + "temp.second.type": 1, + "temp.first": 2, + "imports": 5, + "import.type": 2, + "@imports": 2, + "parser.plastic.invocation_operator_proto": 1, + "temp.type": 1, + "parser.plastic.name_proto": 2, + "temp.first.value": 1, + "temp.second": 1, + "first.type": 1, + "parser.imports": 2, + "import.id": 2, + "parser.plastic.assignment_operator_proto": 1, + "result.type": 1, + "result.first": 1, + "result.second": 1, + "toy": 3, + "wind": 1, + "this.wound": 8, + "tell": 1, + "this.name": 4, + "player.location": 1, + "announce": 1, + "player.name": 1, + "@verb": 1, + "do_the_work": 3, + "none": 1, + "object_utils": 1, + "this.location": 3, + "room": 1, + "announce_all": 2, + "continue_msg": 1, + "fork": 1, + "endfork": 1, + "wind_down_msg": 1 + }, + "Java": { + "package": 6, + "nokogiri": 6, + ";": 891, + "import": 66, + "java.util.Collections": 2, + "java.util.HashMap": 1, + "java.util.Map": 3, + "org.jruby.Ruby": 2, + "org.jruby.RubyArray": 1, + "org.jruby.RubyClass": 2, + "org.jruby.RubyFixnum": 1, + "org.jruby.RubyModule": 1, + "org.jruby.runtime.ObjectAllocator": 1, + "org.jruby.runtime.builtin.IRubyObject": 2, + "org.jruby.runtime.load.BasicLibraryService": 1, + "public": 214, + "class": 12, + "NokogiriService": 1, + "implements": 3, + "BasicLibraryService": 1, + "{": 434, + "static": 141, + "final": 78, + "String": 33, + "nokogiriClassCacheGvarName": 1, + "Map": 1, + "": 2, + "RubyClass": 92, + "nokogiriClassCache": 2, + "boolean": 36, + "basicLoad": 1, + "(": 1097, + "Ruby": 43, + "ruby": 25, + ")": 1097, + "init": 2, + "createNokogiriClassCahce": 2, + "return": 267, + "true": 21, + "}": 434, + "private": 77, + "void": 25, + "Collections.synchronizedMap": 1, + "new": 131, + "HashMap": 1, + "nokogiriClassCache.put": 26, + "ruby.getClassFromPath": 26, + "RubyModule": 18, + "ruby.defineModule": 1, + "xmlModule": 7, + "nokogiri.defineModuleUnder": 3, + "xmlSaxModule": 3, + "xmlModule.defineModuleUnder": 1, + "htmlModule": 5, + "htmlSaxModule": 3, + "htmlModule.defineModuleUnder": 1, + "xsltModule": 3, + "createNokogiriModule": 2, + "createSyntaxErrors": 2, + "xmlNode": 5, + "createXmlModule": 2, + "createHtmlModule": 2, + "createDocuments": 2, + "createSaxModule": 2, + "createXsltModule": 2, + "encHandler": 1, + "nokogiri.defineClassUnder": 2, + "ruby.getObject": 13, + "ENCODING_HANDLER_ALLOCATOR": 2, + "encHandler.defineAnnotatedMethods": 1, + "EncodingHandler.class": 1, + "syntaxError": 2, + "ruby.getStandardError": 2, + ".getAllocator": 1, + "xmlSyntaxError": 4, + "xmlModule.defineClassUnder": 23, + "XML_SYNTAXERROR_ALLOCATOR": 2, + "xmlSyntaxError.defineAnnotatedMethods": 1, + "XmlSyntaxError.class": 1, + "node": 14, + "XML_NODE_ALLOCATOR": 2, + "node.defineAnnotatedMethods": 1, + "XmlNode.class": 1, + "attr": 1, + "XML_ATTR_ALLOCATOR": 2, + "attr.defineAnnotatedMethods": 1, + "XmlAttr.class": 1, + "attrDecl": 1, + "XML_ATTRIBUTE_DECL_ALLOCATOR": 2, + "attrDecl.defineAnnotatedMethods": 1, + "XmlAttributeDecl.class": 1, + "characterData": 3, + "null": 80, + "comment": 1, + "XML_COMMENT_ALLOCATOR": 2, + "comment.defineAnnotatedMethods": 1, + "XmlComment.class": 1, + "text": 2, + "XML_TEXT_ALLOCATOR": 2, + "text.defineAnnotatedMethods": 1, + "XmlText.class": 1, + "cdata": 1, + "XML_CDATA_ALLOCATOR": 2, + "cdata.defineAnnotatedMethods": 1, + "XmlCdata.class": 1, + "dtd": 1, + "XML_DTD_ALLOCATOR": 2, + "dtd.defineAnnotatedMethods": 1, + "XmlDtd.class": 1, + "documentFragment": 1, + "XML_DOCUMENT_FRAGMENT_ALLOCATOR": 2, + "documentFragment.defineAnnotatedMethods": 1, + "XmlDocumentFragment.class": 1, + "element": 3, + "XML_ELEMENT_ALLOCATOR": 2, + "element.defineAnnotatedMethods": 1, + "XmlElement.class": 1, + "elementContent": 1, + "XML_ELEMENT_CONTENT_ALLOCATOR": 2, + "elementContent.defineAnnotatedMethods": 1, + "XmlElementContent.class": 1, + "elementDecl": 1, + "XML_ELEMENT_DECL_ALLOCATOR": 2, + "elementDecl.defineAnnotatedMethods": 1, + "XmlElementDecl.class": 1, + "entityDecl": 1, + "XML_ENTITY_DECL_ALLOCATOR": 2, + "entityDecl.defineAnnotatedMethods": 1, + "XmlEntityDecl.class": 1, + "entityDecl.defineConstant": 6, + "RubyFixnum.newFixnum": 6, + "XmlEntityDecl.INTERNAL_GENERAL": 1, + "XmlEntityDecl.EXTERNAL_GENERAL_PARSED": 1, + "XmlEntityDecl.EXTERNAL_GENERAL_UNPARSED": 1, + "XmlEntityDecl.INTERNAL_PARAMETER": 1, + "XmlEntityDecl.EXTERNAL_PARAMETER": 1, + "XmlEntityDecl.INTERNAL_PREDEFINED": 1, + "entref": 1, + "XML_ENTITY_REFERENCE_ALLOCATOR": 2, + "entref.defineAnnotatedMethods": 1, + "XmlEntityReference.class": 1, + "namespace": 1, + "XML_NAMESPACE_ALLOCATOR": 2, + "namespace.defineAnnotatedMethods": 1, + "XmlNamespace.class": 1, + "nodeSet": 1, + "XML_NODESET_ALLOCATOR": 2, + "nodeSet.defineAnnotatedMethods": 1, + "XmlNodeSet.class": 1, + "pi": 1, + "XML_PROCESSING_INSTRUCTION_ALLOCATOR": 2, + "pi.defineAnnotatedMethods": 1, + "XmlProcessingInstruction.class": 1, + "reader": 1, + "XML_READER_ALLOCATOR": 2, + "reader.defineAnnotatedMethods": 1, + "XmlReader.class": 1, + "schema": 2, + "XML_SCHEMA_ALLOCATOR": 2, + "schema.defineAnnotatedMethods": 1, + "XmlSchema.class": 1, + "relaxng": 1, + "XML_RELAXNG_ALLOCATOR": 2, + "relaxng.defineAnnotatedMethods": 1, + "XmlRelaxng.class": 1, + "xpathContext": 1, + "XML_XPATHCONTEXT_ALLOCATOR": 2, + "xpathContext.defineAnnotatedMethods": 1, + "XmlXpathContext.class": 1, + "htmlElemDesc": 1, + "htmlModule.defineClassUnder": 3, + "HTML_ELEMENT_DESCRIPTION_ALLOCATOR": 2, + "htmlElemDesc.defineAnnotatedMethods": 1, + "HtmlElementDescription.class": 1, + "htmlEntityLookup": 1, + "HTML_ENTITY_LOOKUP_ALLOCATOR": 2, + "htmlEntityLookup.defineAnnotatedMethods": 1, + "HtmlEntityLookup.class": 1, + "xmlDocument": 5, + "XML_DOCUMENT_ALLOCATOR": 2, + "xmlDocument.defineAnnotatedMethods": 1, + "XmlDocument.class": 1, + "//RubyModule": 1, + "htmlDoc": 1, + "html.defineOrGetClassUnder": 1, + "document": 5, + "htmlDocument": 6, + "HTML_DOCUMENT_ALLOCATOR": 2, + "htmlDocument.defineAnnotatedMethods": 1, + "HtmlDocument.class": 1, + "xmlSaxParserContext": 5, + "xmlSaxModule.defineClassUnder": 2, + "XML_SAXPARSER_CONTEXT_ALLOCATOR": 2, + "xmlSaxParserContext.defineAnnotatedMethods": 1, + "XmlSaxParserContext.class": 1, + "xmlSaxPushParser": 1, + "XML_SAXPUSHPARSER_ALLOCATOR": 2, + "xmlSaxPushParser.defineAnnotatedMethods": 1, + "XmlSaxPushParser.class": 1, + "htmlSaxParserContext": 4, + "htmlSaxModule.defineClassUnder": 1, + "HTML_SAXPARSER_CONTEXT_ALLOCATOR": 2, + "htmlSaxParserContext.defineAnnotatedMethods": 1, + "HtmlSaxParserContext.class": 1, + "stylesheet": 1, + "xsltModule.defineClassUnder": 1, + "XSLT_STYLESHEET_ALLOCATOR": 2, + "stylesheet.defineAnnotatedMethods": 1, + "XsltStylesheet.class": 2, + "xsltModule.defineAnnotatedMethod": 1, + "ObjectAllocator": 60, + "IRubyObject": 35, + "allocate": 30, + "runtime": 88, + "klazz": 107, + "EncodingHandler": 1, + "HtmlDocument": 7, + "if": 116, + "try": 26, + "clone": 47, + "htmlDocument.clone": 1, + "clone.setMetaClass": 23, + "catch": 27, + "CloneNotSupportedException": 23, + "e": 31, + "HtmlSaxParserContext": 5, + "htmlSaxParserContext.clone": 1, + "HtmlElementDescription": 1, + "HtmlEntityLookup": 1, + "XmlAttr": 5, + "xmlAttr": 3, + "xmlAttr.clone": 1, + "XmlCdata": 5, + "xmlCdata": 3, + "xmlCdata.clone": 1, + "XmlComment": 5, + "xmlComment": 3, + "xmlComment.clone": 1, + "XmlDocument": 8, + "xmlDocument.clone": 1, + "XmlDocumentFragment": 5, + "xmlDocumentFragment": 3, + "xmlDocumentFragment.clone": 1, + "XmlDtd": 5, + "xmlDtd": 3, + "xmlDtd.clone": 1, + "XmlElement": 5, + "xmlElement": 3, + "xmlElement.clone": 1, + "XmlElementDecl": 5, + "xmlElementDecl": 3, + "xmlElementDecl.clone": 1, + "XmlEntityReference": 5, + "xmlEntityRef": 3, + "xmlEntityRef.clone": 1, + "XmlNamespace": 5, + "xmlNamespace": 3, + "xmlNamespace.clone": 1, + "XmlNode": 5, + "xmlNode.clone": 1, + "XmlNodeSet": 5, + "xmlNodeSet": 5, + "xmlNodeSet.clone": 1, + "xmlNodeSet.setNodes": 1, + "RubyArray.newEmptyArray": 1, + "XmlProcessingInstruction": 5, + "xmlProcessingInstruction": 3, + "xmlProcessingInstruction.clone": 1, + "XmlReader": 5, + "xmlReader": 5, + "xmlReader.clone": 1, + "XmlAttributeDecl": 1, + "XmlEntityDecl": 1, + "throw": 9, + "runtime.newNotImplementedError": 1, + "XmlRelaxng": 5, + "xmlRelaxng": 3, + "xmlRelaxng.clone": 1, + "XmlSaxParserContext": 5, + "xmlSaxParserContext.clone": 1, + "XmlSaxPushParser": 1, + "XmlSchema": 5, + "xmlSchema": 3, + "xmlSchema.clone": 1, + "XmlSyntaxError": 5, + "xmlSyntaxError.clone": 1, + "XmlText": 6, + "xmlText": 3, + "xmlText.clone": 1, + "XmlXpathContext": 5, + "xmlXpathContext": 3, + "xmlXpathContext.clone": 1, + "XsltStylesheet": 4, + "xsltStylesheet": 3, + "xsltStylesheet.clone": 1, + "hudson.model": 1, + "hudson.ExtensionListView": 1, + "hudson.Functions": 1, + "hudson.Platform": 1, + "hudson.PluginManager": 1, + "hudson.cli.declarative.CLIResolver": 1, + "hudson.model.listeners.ItemListener": 1, + "hudson.slaves.ComputerListener": 1, + "hudson.util.CopyOnWriteList": 1, + "hudson.util.FormValidation": 1, + "jenkins.model.Jenkins": 1, + "org.jvnet.hudson.reactor.ReactorException": 1, + "org.kohsuke.stapler.QueryParameter": 1, + "org.kohsuke.stapler.Stapler": 1, + "org.kohsuke.stapler.StaplerRequest": 1, + "org.kohsuke.stapler.StaplerResponse": 1, + "javax.servlet.ServletContext": 1, + "javax.servlet.ServletException": 1, + "java.io.File": 1, + "java.io.IOException": 10, + "java.text.NumberFormat": 1, + "java.text.ParseException": 1, + "java.util.List": 1, + "hudson.Util.fixEmpty": 1, + "Hudson": 5, + "extends": 10, + "Jenkins": 2, + "transient": 2, + "CopyOnWriteList": 4, + "": 2, + "itemListeners": 2, + "ExtensionListView.createCopyOnWriteList": 2, + "ItemListener.class": 1, + "": 2, + "computerListeners": 2, + "ComputerListener.class": 1, + "@CLIResolver": 1, + "getInstance": 2, + "Jenkins.getInstance": 2, + "File": 2, + "root": 6, + "ServletContext": 2, + "context": 8, + "throws": 26, + "IOException": 8, + "InterruptedException": 2, + "ReactorException": 2, + "this": 16, + "PluginManager": 1, + "pluginManager": 2, + "super": 7, + "getJobListeners": 1, + "getComputerListeners": 1, + "Slave": 3, + "getSlave": 1, + "name": 10, + "Node": 1, + "n": 3, + "getNode": 1, + "instanceof": 19, + "List": 3, + "": 2, + "getSlaves": 1, + "slaves": 3, + "setSlaves": 1, + "setNodes": 1, + "TopLevelItem": 3, + "getJob": 1, + "getItem": 1, + "getJobCaseInsensitive": 1, + "match": 2, + "Functions.toEmailSafeString": 2, + "for": 16, + "item": 2, + "getItems": 1, + "item.getName": 1, + ".equalsIgnoreCase": 5, + "synchronized": 1, + "doQuietDown": 2, + "StaplerResponse": 4, + "rsp": 6, + "ServletException": 3, + ".generateResponse": 2, + "doLogRss": 1, + "StaplerRequest": 4, + "req": 6, + "qs": 3, + "req.getQueryString": 1, + "rsp.sendRedirect2": 1, + "+": 83, + "doFieldCheck": 3, + "fixEmpty": 8, + "req.getParameter": 4, + "FormValidation": 2, + "@QueryParameter": 4, + "value": 11, + "type": 3, + "errorText": 3, + "warningText": 3, + "FormValidation.error": 4, + "FormValidation.warning": 1, + "type.equalsIgnoreCase": 2, + "NumberFormat.getInstance": 2, + ".parse": 2, + "else": 33, + ".floatValue": 1, + "<=>": 1, + "0": 1, + "error": 1, + "Messages": 1, + "Hudson_NotAPositiveNumber": 1, + "equalsIgnoreCase": 1, + "number": 1, + "negative": 1, + "NumberFormat": 1, + "parse": 1, + "floatValue": 1, + "Messages.Hudson_NotANegativeNumber": 1, + "ParseException": 1, + "Messages.Hudson_NotANumber": 1, + "FormValidation.ok": 1, + "isWindows": 1, + "File.pathSeparatorChar": 1, + "isDarwin": 1, + "Platform.isDarwin": 1, + "adminCheck": 3, + "Stapler.getCurrentRequest": 1, + "Stapler.getCurrentResponse": 1, + "isAdmin": 4, + "rsp.sendError": 1, + "StaplerResponse.SC_FORBIDDEN": 1, + "false": 12, + ".getACL": 1, + ".hasPermission": 1, + "ADMINISTER": 1, + "XSTREAM.alias": 1, + "Hudson.class": 1, + "MasterComputer": 1, + "Jenkins.MasterComputer": 1, + "CloudList": 3, + "Jenkins.CloudList": 1, + "h": 2, + "//": 16, + "needed": 1, + "XStream": 1, + "deserialization": 1, + "persons": 1, + "ProtocolBuffer": 2, + "registerAllExtensions": 1, + "com.google.protobuf.ExtensionRegistry": 2, + "registry": 1, + "interface": 1, + "PersonOrBuilder": 2, + "com.google.protobuf.MessageOrBuilder": 1, + "hasName": 5, + "java.lang.String": 15, + "getName": 3, + "com.google.protobuf.ByteString": 13, + "getNameBytes": 5, + "Person": 10, + "com.google.protobuf.GeneratedMessage": 1, + "com.google.protobuf.GeneratedMessage.Builder": 2, + "": 1, + "builder": 4, + "this.unknownFields": 4, + "builder.getUnknownFields": 1, + "noInit": 1, + "com.google.protobuf.UnknownFieldSet.getDefaultInstance": 1, + "defaultInstance": 4, + "getDefaultInstance": 2, + "getDefaultInstanceForType": 2, + "com.google.protobuf.UnknownFieldSet": 2, + "unknownFields": 3, + "@java.lang.Override": 4, + "getUnknownFields": 3, + "com.google.protobuf.CodedInputStream": 5, + "input": 18, + "com.google.protobuf.ExtensionRegistryLite": 8, + "extensionRegistry": 16, + "com.google.protobuf.InvalidProtocolBufferException": 9, + "initFields": 2, + "int": 62, + "mutable_bitField0_": 1, + "com.google.protobuf.UnknownFieldSet.Builder": 1, + "com.google.protobuf.UnknownFieldSet.newBuilder": 1, + "done": 4, + "while": 10, + "tag": 3, + "input.readTag": 1, + "switch": 6, + "case": 56, + "break": 4, + "default": 6, + "parseUnknownField": 1, + "bitField0_": 15, + "|": 5, + "name_": 18, + "input.readBytes": 1, + "e.setUnfinishedMessage": 1, + "e.getMessage": 1, + ".setUnfinishedMessage": 1, + "finally": 2, + "unknownFields.build": 1, + "makeExtensionsImmutable": 1, + "com.google.protobuf.Descriptors.Descriptor": 4, + "getDescriptor": 15, + "persons.ProtocolBuffer.internal_static_persons_Person_descriptor": 3, + "protected": 8, + "com.google.protobuf.GeneratedMessage.FieldAccessorTable": 4, + "internalGetFieldAccessorTable": 2, + "persons.ProtocolBuffer.internal_static_persons_Person_fieldAccessorTable": 2, + ".ensureFieldAccessorsInitialized": 2, + "persons.ProtocolBuffer.Person.class": 2, + "persons.ProtocolBuffer.Person.Builder.class": 2, + "com.google.protobuf.Parser": 2, + "": 3, + "PARSER": 2, + "com.google.protobuf.AbstractParser": 1, + "parsePartialFrom": 1, + "getParserForType": 1, + "NAME_FIELD_NUMBER": 1, + "java.lang.Object": 7, + "&": 7, + "ref": 16, + "bs": 1, + "s": 10, + "bs.toStringUtf8": 1, + "bs.isValidUtf8": 1, + "b": 7, + "com.google.protobuf.ByteString.copyFromUtf8": 2, + "byte": 4, + "memoizedIsInitialized": 4, + "-": 15, + "isInitialized": 5, + "writeTo": 1, + "com.google.protobuf.CodedOutputStream": 2, + "output": 2, + "getSerializedSize": 2, + "output.writeBytes": 1, + ".writeTo": 1, + "memoizedSerializedSize": 3, + "size": 16, + ".computeBytesSize": 1, + ".getSerializedSize": 1, + "long": 5, + "serialVersionUID": 1, + "L": 1, + "writeReplace": 1, + "java.io.ObjectStreamException": 1, + "super.writeReplace": 1, + "persons.ProtocolBuffer.Person": 22, + "parseFrom": 8, + "data": 8, + "PARSER.parseFrom": 8, + "[": 54, + "]": 54, + "java.io.InputStream": 4, + "parseDelimitedFrom": 2, + "PARSER.parseDelimitedFrom": 2, + "Builder": 20, + "newBuilder": 5, + "Builder.create": 1, + "newBuilderForType": 2, + "prototype": 2, + ".mergeFrom": 2, + "toBuilder": 1, + "com.google.protobuf.GeneratedMessage.BuilderParent": 2, + "parent": 4, + "": 1, + "persons.ProtocolBuffer.PersonOrBuilder": 1, + "maybeForceBuilderInitialization": 3, + "com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders": 1, + "create": 2, + "clear": 1, + "super.clear": 1, + "buildPartial": 3, + "getDescriptorForType": 1, + "persons.ProtocolBuffer.Person.getDefaultInstance": 2, + "build": 1, + "result": 5, + "result.isInitialized": 1, + "newUninitializedMessageException": 1, + "from_bitField0_": 2, + "to_bitField0_": 3, + "result.name_": 1, + "result.bitField0_": 1, + "onBuilt": 1, + "mergeFrom": 5, + "com.google.protobuf.Message": 1, + "other": 6, + "super.mergeFrom": 1, + "other.hasName": 1, + "other.name_": 1, + "onChanged": 4, + "this.mergeUnknownFields": 1, + "other.getUnknownFields": 1, + "parsedMessage": 5, + "PARSER.parsePartialFrom": 1, + "e.getUnfinishedMessage": 1, + ".toStringUtf8": 1, + "setName": 1, + "NullPointerException": 3, + "clearName": 1, + ".getName": 1, + "setNameBytes": 1, + "defaultInstance.initFields": 1, + "internal_static_persons_Person_descriptor": 3, + "internal_static_persons_Person_fieldAccessorTable": 2, + "com.google.protobuf.Descriptors.FileDescriptor": 5, + "descriptor": 3, + "descriptorData": 2, + "com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner": 2, + "assigner": 2, + "assignDescriptors": 1, + ".getMessageTypes": 1, + ".get": 1, + ".internalBuildGeneratedFileFrom": 1, + "nokogiri.internals": 1, + "nokogiri.internals.NokogiriHelpers.getNokogiriClass": 1, + "nokogiri.internals.NokogiriHelpers.isNamespace": 1, + "nokogiri.internals.NokogiriHelpers.stringOrNil": 1, + "nokogiri.HtmlDocument": 1, + "nokogiri.NokogiriService": 1, + "nokogiri.XmlDocument": 1, + "org.apache.xerces.parsers.DOMParser": 1, + "org.apache.xerces.xni.Augmentations": 1, + "org.apache.xerces.xni.QName": 1, + "org.apache.xerces.xni.XMLAttributes": 1, + "org.apache.xerces.xni.XNIException": 1, + "org.apache.xerces.xni.parser.XMLDocumentFilter": 1, + "org.apache.xerces.xni.parser.XMLParserConfiguration": 1, + "org.cyberneko.html.HTMLConfiguration": 1, + "org.cyberneko.html.filters.DefaultFilter": 1, + "org.jruby.runtime.ThreadContext": 1, + "org.w3c.dom.Document": 1, + "org.w3c.dom.NamedNodeMap": 1, + "org.w3c.dom.NodeList": 1, + "HtmlDomParserContext": 3, + "XmlDomParserContext": 1, + "options": 4, + "encoding": 2, + "@Override": 6, + "initErrorHandler": 1, + "options.strict": 1, + "errorHandler": 6, + "NokogiriStrictErrorHandler": 1, + "options.noError": 2, + "options.noWarning": 2, + "NokogiriNonStrictErrorHandler4NekoHtml": 1, + "initParser": 1, + "XMLParserConfiguration": 1, + "config": 2, + "HTMLConfiguration": 1, + "XMLDocumentFilter": 3, + "removeNSAttrsFilter": 2, + "RemoveNSAttrsFilter": 2, + "elementValidityCheckFilter": 3, + "ElementValidityCheckFilter": 3, + "//XMLDocumentFilter": 1, + "filters": 3, + "config.setErrorHandler": 1, + "this.errorHandler": 2, + "parser": 1, + "DOMParser": 1, + "setProperty": 4, + "java_encoding": 2, + "setFeature": 4, + "enableDocumentFragment": 1, + "getNewEmptyDocument": 1, + "ThreadContext": 2, + "args": 6, + "XmlDocument.rbNew": 1, + "getNokogiriClass": 1, + "context.getRuntime": 3, + "wrapDocument": 1, + "Document": 2, + "NokogiriService.HTML_DOCUMENT_ALLOCATOR.allocate": 1, + "htmlDocument.setDocumentNode": 1, + "ruby_encoding.isNil": 1, + "detected_encoding": 2, + "&&": 6, + "detected_encoding.isNil": 1, + "ruby_encoding": 3, + "charset": 2, + "tryGetCharsetFromHtml5MetaTag": 2, + "stringOrNil": 1, + "htmlDocument.setEncoding": 1, + "htmlDocument.setParsedEncoding": 1, + "document.getDocumentElement": 2, + ".getNodeName": 4, + "NodeList": 2, + "list": 1, + ".getChildNodes": 2, + "i": 54, + "<": 13, + "list.getLength": 1, + "list.item": 2, + "headers": 1, + "j": 9, + "headers.getLength": 1, + "headers.item": 2, + "NamedNodeMap": 1, + "nodeMap": 1, + ".getAttributes": 1, + "k": 5, + "nodeMap.getLength": 1, + "nodeMap.item": 2, + ".getNodeValue": 1, + "DefaultFilter": 2, + "startElement": 2, + "QName": 2, + "XMLAttributes": 2, + "attrs": 4, + "Augmentations": 2, + "augs": 4, + "XNIException": 2, + "attrs.getLength": 1, + "isNamespace": 1, + "attrs.getQName": 1, + "attrs.removeAttributeAt": 1, + "element.uri": 1, + "super.startElement": 2, + "NokogiriErrorHandler": 2, + "element_names": 3, + "g": 1, + "r": 1, + "w": 1, + "x": 8, + "y": 1, + "z": 1, + "isValid": 2, + "testee": 1, + "char": 13, + "c": 21, + "testee.toCharArray": 1, + "index": 4, + "Integer": 2, + ".length": 1, + "testee.equals": 1, + "name.rawname": 2, + "errorHandler.getErrors": 1, + ".add": 1, + "Exception": 1, + "clojure.lang": 1, + "java.lang.ref.Reference": 1, + "java.math.BigInteger": 1, + "java.util.concurrent.ConcurrentHashMap": 1, + "java.lang.ref.SoftReference": 1, + "java.lang.ref.ReferenceQueue": 1, + "Util": 1, + "equiv": 17, + "Object": 31, + "k1": 40, + "k2": 38, + "Number": 9, + "Numbers.equal": 1, + "IPersistentCollection": 5, + "||": 8, + "pcequiv": 2, + "k1.equals": 2, + "double": 4, + "c1": 2, + "c2": 2, + ".equiv": 2, + "equals": 2, + "identical": 1, + "Class": 10, + "classOf": 1, + "x.getClass": 1, + "compare": 1, + "Numbers.compare": 1, + "Comparable": 1, + ".compareTo": 1, + "hash": 3, + "o": 12, + "o.hashCode": 2, + "hasheq": 1, + "Numbers.hasheq": 1, + "IHashEq": 2, + ".hasheq": 1, + "hashCombine": 1, + "seed": 5, + "//a": 1, + "la": 1, + "boost": 1, + "e3779b9": 1, "<<": 1, - "": 1, - "cudaGetLastError": 1, - "fprintf": 1, - "stderr": 1, - "cudaGetErrorString": 1, + "isPrimitive": 1, + "c.isPrimitive": 2, + "Void.TYPE": 3, + "isInteger": 1, + "Long": 1, + "BigInt": 1, + "BigInteger": 1, + "ret1": 2, + "ret": 4, + "nil": 2, + "ISeq": 2, + "": 1, + "clearCache": 1, + "ReferenceQueue": 1, + "rq": 1, + "ConcurrentHashMap": 1, + "K": 2, + "Reference": 3, + "": 3, + "cache": 1, + "//cleanup": 1, + "any": 1, + "dead": 1, + "entries": 1, + "rq.poll": 2, + "Map.Entry": 1, + "cache.entrySet": 1, + "val": 3, + "e.getValue": 1, + "val.get": 1, + "cache.remove": 1, + "e.getKey": 1, + "RuntimeException": 5, + "runtimeException": 2, + "Throwable": 4, + "sneakyThrow": 1, + "t": 6, + "Util.": 1, + "": 1, + "sneakyThrow0": 2, + "@SuppressWarnings": 1, + "": 1, + "T": 2, + "clojure.asm": 1, + "java.lang.reflect.Constructor": 1, + "java.lang.reflect.Method": 1, + "Type": 42, + "VOID": 5, + "BOOLEAN": 6, + "CHAR": 6, + "BYTE": 6, + "SHORT": 6, + "INT": 6, + "FLOAT": 6, + "LONG": 7, + "DOUBLE": 7, + "ARRAY": 6, + "OBJECT": 7, + "VOID_TYPE": 3, + "BOOLEAN_TYPE": 3, + "CHAR_TYPE": 3, + "BYTE_TYPE": 3, + "SHORT_TYPE": 3, + "INT_TYPE": 3, + "FLOAT_TYPE": 3, + "LONG_TYPE": 3, + "DOUBLE_TYPE": 3, + "sort": 18, + "buf": 43, + "off": 25, + "len": 24, + "this.sort": 2, + "this.len": 2, + "this.buf": 2, + "this.off": 1, + "getType": 10, + "typeDescriptor": 1, + "typeDescriptor.toCharArray": 1, + "Integer.TYPE": 2, + "Boolean.TYPE": 2, + "Byte.TYPE": 2, + "Character.TYPE": 2, + "Short.TYPE": 2, + "Double.TYPE": 2, + "Float.TYPE": 2, + "getObjectType": 1, + "l": 5, + "name.length": 2, + "name.getChars": 1, + "getArgumentTypes": 2, + "methodDescriptor": 2, + "methodDescriptor.toCharArray": 2, + "car": 18, + ".len": 1, + "Method": 3, + "method": 2, + "classes": 2, + "method.getParameterTypes": 1, + "types": 3, + "classes.length": 2, + "getReturnType": 2, + "methodDescriptor.indexOf": 1, + "method.getReturnType": 1, + "getSort": 1, + "getDimensions": 3, + "getElementType": 2, + "getClassName": 1, + "StringBuffer": 14, + ".getClassName": 1, + "b.append": 1, + "b.toString": 1, + ".replace": 2, + "getInternalName": 2, + "buf.toString": 4, + "getMethodDescriptor": 2, + "returnType": 1, + "argumentTypes": 2, + "buf.append": 21, + "argumentTypes.length": 1, + ".getDescriptor": 1, + "returnType.getDescriptor": 1, + "c.getName": 1, + "getConstructorDescriptor": 1, + "Constructor": 1, + "parameters": 4, + "c.getParameterTypes": 1, + "parameters.length": 2, + ".toString": 1, + "m": 1, + "m.getParameterTypes": 1, + "m.getReturnType": 1, + "d": 10, + "d.isPrimitive": 1, + "d.isArray": 1, + "d.getComponentType": 1, + "d.getName": 1, + "name.charAt": 1, + "getSize": 1, + "getOpcode": 1, + "opcode": 17, + "Opcodes.IALOAD": 1, + "Opcodes.IASTORE": 1, + "t.sort": 1, + "Type.OBJECT": 2, + "Type.ARRAY": 2, + "t.len": 1, + "t.off": 1, + "end": 4, + "t.buf": 1, + "hashCode": 1, + "hc": 4, + "*": 2, + "toString": 1 + }, + "Turing": { + "function": 1, + "factorial": 4, + "(": 3, + "n": 9, + "int": 2, + ")": 3, + "real": 1, + "if": 2, + "then": 1, + "result": 2, + "else": 1, + "*": 1, + "-": 1, + "end": 3, + "var": 1, + "loop": 2, + "put": 3, + "..": 1, + "get": 1, "exit": 1, - "EXIT_FAILURE": 1, - "cudaDeviceReset": 1, + "when": 1 + }, + "Kotlin": { + "package": 1, + "addressbook": 1, + "class": 5, + "Contact": 1, + "(": 15, + "val": 16, + "name": 2, + "String": 7, + "emails": 1, + "List": 3, + "": 1, + "addresses": 1, + "": 1, + "phonenums": 1, + "": 1, + ")": 15, + "EmailAddress": 1, + "user": 1, + "host": 1, + "PostalAddress": 1, + "streetAddress": 1, + "city": 1, + "zip": 1, + "state": 2, + "USState": 1, + "country": 3, + "Country": 7, + "{": 6, + "assert": 1, + "null": 3, + "xor": 1, + "Countries": 2, + "[": 3, + "]": 3, + "}": 6, + "PhoneNumber": 1, + "areaCode": 1, + "Int": 1, + "number": 1, + "Long": 1, + "object": 1, + "fun": 1, + "get": 2, + "id": 2, + "CountryID": 1, + "countryTable": 2, + "private": 2, + "var": 1, + "table": 5, + "Map": 2, + "": 2, + "if": 1, + "HashMap": 1, + "for": 1, + "line": 3, + "in": 1, + "TextFile": 1, + ".lines": 1, + "stripWhiteSpace": 1, + "true": 1, "return": 1 }, - "Dart": { + "Idris": { + "module": 1, + "Prelude.Char": 1, "import": 1, - "as": 1, - "math": 1, - ";": 9, - "class": 1, - "Point": 5, - "{": 3, - "num": 2, - "x": 2, - "y": 2, - "(": 7, - "this.x": 1, - "this.y": 1, + "Builtins": 1, + "isUpper": 4, + "Char": 13, + "-": 8, + "Bool": 8, + "x": 36, + "&&": 3, + "<=>": 3, + "Z": 1, + "isLower": 4, + "z": 1, + "isAlpha": 3, + "||": 9, + "isDigit": 3, + "(": 8, + "9": 1, + "isAlphaNum": 2, + "isSpace": 2, + "isNL": 2, + "toUpper": 3, + "if": 2, ")": 7, - "distanceTo": 1, - "other": 1, - "var": 4, - "dx": 3, - "-": 2, - "other.x": 1, - "dy": 3, - "other.y": 1, - "return": 1, - "math.sqrt": 1, - "*": 2, - "+": 1, - "}": 3, - "void": 1, - "main": 1, - "p": 1, - "new": 2, - "q": 1, - "print": 1 - }, - "Diff": { - "diff": 1, - "-": 5, - "git": 1, - "a/lib/linguist.rb": 2, - "b/lib/linguist.rb": 2, - "index": 1, - "d472341..8ad9ffb": 1, - "+": 3 - }, - "DM": { - "#define": 4, - "PI": 6, - "#if": 1, - "G": 1, - "#elif": 1, - "I": 1, - "#else": 1, - "K": 1, - "#endif": 1, - "var/GlobalCounter": 1, - "var/const/CONST_VARIABLE": 1, - "var/list/MyList": 1, - "list": 3, - "(": 17, - "new": 1, - "/datum/entity": 2, - ")": 17, - "var/list/EmptyList": 1, - "[": 2, - "]": 2, - "//": 6, - "creates": 1, - "a": 1, - "of": 1, - "null": 2, - "entries": 1, - "var/list/NullList": 1, - "var/name": 1, - "var/number": 1, - "/datum/entity/proc/myFunction": 1, - "world.log": 5, - "<<": 5, - "/datum/entity/New": 1, - "number": 2, - "GlobalCounter": 1, - "+": 3, - "/datum/entity/unit": 1, - "name": 1, - "/datum/entity/unit/New": 1, - "..": 1, - "calls": 1, - "the": 2, - "parent": 1, - "s": 1, - "proc": 1, - ";": 3, - "equal": 1, - "to": 1, - "super": 1, - "and": 1, - "base": 1, - "in": 1, - "other": 1, - "languages": 1, - "rand": 1, - "/datum/entity/unit/myFunction": 1, - "/proc/ReverseList": 1, - "var/list/input": 1, - "var/list/output": 1, - "for": 1, - "var/i": 1, - "input.len": 1, - "i": 3, - "-": 2, - "IMPORTANT": 1, - "List": 1, - "Arrays": 1, - "count": 1, - "from": 1, - "output": 2, - "input": 1, - "is": 2, - "return": 3, - "/proc/DoStuff": 1, - "var/bitflag": 2, - "bitflag": 4, - "|": 1, - "/proc/DoOtherStuff": 1, - "bits": 1, - "maximum": 1, - "amount": 1, - "&": 1, - "/proc/DoNothing": 1, - "var/pi": 1, - "if": 2, - "pi": 2, + "then": 2, + "prim__intToChar": 2, + "prim__charToInt": 2, "else": 2, - "CONST_VARIABLE": 1, - "#undef": 1, - "Undefine": 1 + "toLower": 2, + "+": 1, + "isHexDigit": 2, + "elem": 1, + "hexChars": 3, + "where": 1, + "List": 1, + "[": 1, + "]": 1 }, - "Dogescript": { - "quiet": 1, - "wow": 4, - "such": 2, - "language": 3, - "very": 1, - "syntax": 1, - "github": 1, - "recognized": 1, - "loud": 1, - "much": 1, - "friendly": 2, - "rly": 1, - "is": 2, - "true": 1, - "plz": 2, - "console.loge": 2, - "with": 2, - "but": 1, - "module.exports": 1 - }, - "E": { - "def": 24, - "makeVehicle": 3, - "(": 65, - "self": 1, - ")": 64, - "{": 57, - "vehicle": 2, - "to": 27, - "milesTillEmpty": 1, - "return": 19, - "self.milesPerGallon": 1, + "PureScript": { + "module": 4, + "Control.Arrow": 1, + "where": 20, + "import": 32, + "Data.Tuple": 3, + "class": 4, + "Arrow": 5, + "a": 46, + "arr": 10, + "forall": 26, + "b": 49, + "c.": 3, + "(": 111, + "-": 88, + "c": 17, + ")": 115, + "first": 4, + "d.": 2, + "Tuple": 21, + "d": 6, + "instance": 12, + "arrowFunction": 1, + "f": 28, + "second": 3, + "Category": 3, + "swap": 4, + "b.": 1, + "x": 26, + "y": 2, + "infixr": 3, + "***": 2, + "&&": 3, + "&": 3, + ".": 2, + "g": 4, + "ArrowZero": 1, + "zeroArrow": 1, + "<+>": 2, + "ArrowPlus": 1, + "Data.Foreign": 2, + "Foreign": 12, + "..": 1, + "ForeignParser": 29, + "parseForeign": 6, + "parseJSON": 3, + "ReadForeign": 11, + "read": 10, + "prop": 3, + "Prelude": 3, + "Data.Array": 3, + "Data.Either": 1, + "Data.Maybe": 3, + "Data.Traversable": 2, + "foreign": 6, + "data": 3, "*": 1, - "self.getFuelRemaining": 1, - "}": 57, - "makeCar": 4, - "var": 6, - "fuelRemaining": 4, - "car": 8, - "extends": 2, - "milesPerGallon": 2, - "getFuelRemaining": 2, - "makeJet": 1, - "jet": 3, - "println": 2, - "The": 2, - "can": 1, - "go": 1, - "car.milesTillEmpty": 1, - "miles.": 1, - "name": 4, - "x": 3, - "y": 3, - "moveTo": 1, - "newX": 2, - "newY": 2, - "getX": 1, - "getY": 1, - "setName": 1, - "newName": 2, - "getName": 1, - "sportsCar": 1, - "sportsCar.moveTo": 1, - "sportsCar.getName": 1, - "is": 1, - "at": 1, - "X": 1, - "location": 1, - "sportsCar.getX": 1, - "makeVOCPair": 1, - "brandName": 3, - "String": 1, - "near": 6, - "myTempContents": 6, - "none": 2, - "brand": 5, - "__printOn": 4, - "out": 4, - "TextWriter": 4, - "void": 5, - "out.print": 4, - "ProveAuth": 2, - "<$brandName>": 3, - "prover": 1, - "getBrand": 4, - "coerce": 2, - "specimen": 2, - "optEjector": 3, - "sealedBox": 2, - "offerContent": 1, - "CheckAuth": 2, - "checker": 3, - "template": 1, - "match": 4, - "[": 10, - "get": 2, - "authList": 2, - "any": 2, - "]": 10, - "specimenBox": 2, - "null": 1, - "if": 2, - "specimenBox.__respondsTo": 1, - "specimenBox.offerContent": 1, + "fromString": 2, + "String": 13, + "Either": 6, + "readPrimType": 5, + "a.": 6, + "readMaybeImpl": 2, + "Maybe": 5, + "readPropImpl": 2, + "showForeignImpl": 2, + "showForeign": 1, + "Prelude.Show": 1, + "show": 5, + "p": 11, + "json": 2, + "monadForeignParser": 1, + "Prelude.Monad": 1, + "return": 6, + "_": 7, + "Right": 9, + "case": 9, + "of": 9, + "Left": 8, + "err": 8, + "applicativeForeignParser": 1, + "Prelude.Applicative": 1, + "pure": 1, + "<*>": 2, + "<$>": 8, + "functorForeignParser": 1, + "Prelude.Functor": 1, + "readString": 1, + "readNumber": 1, + "Number": 1, + "readBoolean": 1, + "Boolean": 1, + "readArray": 1, + "[": 5, + "]": 5, + "let": 4, + "arrayItem": 2, + "i": 2, + "result": 4, + "+": 30, + "in": 2, + "xs": 3, + "traverse": 2, + "zip": 1, + "range": 1, + "length": 3, + "readMaybe": 1, + "<<": 4, + "<": 13, + "Just": 7, + "Nothing": 7, + "ReactiveJQueryTest": 1, + "flip": 2, + "Control.Monad": 1, + "Control.Monad.Eff": 1, + "Control.Monad.JQuery": 1, + "Control.Reactive": 1, + "Control.Reactive.JQuery": 1, + "map": 8, + "head": 2, + "Data.Foldable": 2, + "Data.Monoid": 1, + "Debug.Trace": 1, + "Global": 1, + "parseInt": 1, + "main": 1, + "do": 4, + "personDemo": 2, + "todoListDemo": 1, + "greet": 1, + "firstName": 2, + "lastName": 2, + "Create": 3, + "new": 1, + "reactive": 1, + "variables": 1, + "to": 3, + "hold": 1, + "the": 3, + "user": 1, + "readRArray": 1, + "insertRArray": 1, + "{": 25, + "text": 5, + "completed": 2, + "}": 26, + "paragraph": 2, + "display": 2, + "next": 1, + "task": 4, + "nextTaskLabel": 3, + "create": 2, + "append": 2, + "nextTask": 2, + "toComputedArray": 2, + "toComputed": 2, + "bindTextOneWay": 2, + "counter": 3, + "counterLabel": 3, + "rs": 2, + "cs": 2, + "<->": 1, + "if": 1, + "then": 1, "else": 1, - "for": 3, - "auth": 3, - "in": 1, - "throw.eject": 1, - "Unmatched": 1, - "authorization": 1, - "__respondsTo": 2, - "_": 3, - "true": 1, - "false": 1, - "__getAllegedType": 1, - "null.__getAllegedType": 1, - "#File": 1, - "objects": 1, - "hardwired": 1, - "files": 1, - "file1": 1, - "": 1, - "file2": 1, - "": 1, - "#Using": 2, - "a": 4, - "variable": 1, - "file": 3, - "filePath": 2, - "file3": 1, - "": 1, - "single": 1, - "character": 1, - "specify": 1, - "Windows": 1, - "drive": 1, - "file4": 1, - "": 1, - "file5": 1, - "": 1, - "file6": 1, - "": 1, - "pragma.syntax": 1, - "send": 1, - "message": 4, - "when": 2, - "friend": 4, - "<-receive(message))>": 1, - "chatUI.showMessage": 4, - "catch": 2, - "prob": 2, - "receive": 1, - "receiveFriend": 2, - "friendRcvr": 2, - "bind": 2, - "save": 1, - "file.setText": 1, - "makeURIFromObject": 1, - "chatController": 2, - "load": 1, - "getObjectFromURI": 1, - "file.getText": 1, + "entry": 1, + "entry.completed": 1, + "foldl": 4, + "Data.Map": 1, + "Map": 26, + "empty": 6, + "singleton": 5, + "insert": 10, + "lookup": 8, + "delete": 9, + "alter": 8, + "toList": 10, + "fromList": 3, + "union": 3, + "qualified": 1, + "as": 1, + "P": 1, + "concat": 3, + "k": 108, + "v": 57, + "Leaf": 15, + "|": 9, + "Branch": 27, + "key": 13, + "value": 8, + "left": 15, + "right": 14, + "eqMap": 1, + "P.Eq": 11, + "m1": 6, + "m2": 6, + "P.": 11, + "/": 1, + "P.not": 1, + "showMap": 1, + "P.Show": 3, + "m": 6, + "P.show": 1, + "v.": 11, + "P.Ord": 9, + "b@": 6, + "k1": 16, + "b.left": 9, + "b.right": 8, + "findMinKey": 5, + "glue": 4, + "minKey": 3, + "root": 2, + "b.key": 1, + "b.value": 2, + "v1": 3, + "v2.": 1, + "v2": 2 + }, + "NetLogo": { + "patches": 7, + "-": 28, + "own": 1, + "[": 17, + "living": 6, + ";": 12, + "indicates": 1, + "if": 2, + "the": 6, + "cell": 10, + "is": 1, + "live": 4, + "neighbors": 5, + "counts": 1, + "how": 1, + "many": 1, + "neighboring": 1, + "cells": 2, + "are": 1, + "alive": 1, + "]": 17, + "to": 6, + "setup": 2, + "blank": 1, + "clear": 2, + "all": 5, + "ask": 6, + "death": 5, + "reset": 2, + "ticks": 2, + "end": 6, + "random": 2, + "ifelse": 3, + "float": 1, "<": 1, - "-": 2, - "tempVow": 2, - "#...use": 1, - "#....": 1, - "report": 1, - "problem": 1, - "finally": 1, - "#....log": 1, - "event": 1 + "initial": 1, + "density": 1, + "birth": 4, + "set": 5, + "true": 1, + "pcolor": 2, + "fgcolor": 1, + "false": 1, + "bgcolor": 1, + "go": 1, + "count": 1, + "with": 2, + "Starting": 1, + "a": 1, + "new": 1, + "here": 1, + "ensures": 1, + "that": 1, + "finish": 1, + "executing": 2, + "first": 1, + "before": 1, + "any": 1, + "of": 2, + "them": 1, + "start": 1, + "second": 1, + "ask.": 1, + "This": 1, + "keeps": 1, + "in": 2, + "synch": 1, + "each": 2, + "other": 1, + "so": 1, + "births": 1, + "and": 1, + "deaths": 1, + "at": 1, + "generation": 1, + "happen": 1, + "lockstep.": 1, + "tick": 1, + "draw": 1, + "let": 1, + "erasing": 2, + "patch": 2, + "mouse": 5, + "xcor": 2, + "ycor": 2, + "while": 1, + "down": 1, + "display": 1 }, "Eagle": { "": 2, @@ -20161,28076 +57270,357 @@ "": 12, "radius=": 12 }, - "ECL": { - "#option": 1, - "(": 32, - "true": 1, - ")": 32, - ";": 23, - "namesRecord": 4, - "RECORD": 1, - "string20": 1, - "surname": 1, - "string10": 2, - "forename": 1, - "integer2": 5, - "age": 2, - "dadAge": 1, - "mumAge": 1, - "END": 1, - "namesRecord2": 3, - "record": 1, - "extra": 1, - "end": 1, - "namesTable": 11, - "dataset": 2, - "FLAT": 2, - "namesTable2": 9, - "aveAgeL": 3, - "l": 1, - "l.dadAge": 1, - "+": 16, - "l.mumAge": 1, - "/2": 2, - "aveAgeR": 4, - "r": 1, - "r.dadAge": 1, - "r.mumAge": 1, - "output": 9, - "join": 11, - "left": 2, - "right": 3, - "//Several": 1, - "simple": 1, - "examples": 1, - "of": 1, - "sliding": 2, - "syntax": 1, - "left.age": 8, - "right.age": 12, - "-": 5, - "and": 10, - "<": 1, - "between": 7, - "//Same": 1, - "but": 1, - "on": 1, - "strings.": 1, - "Also": 1, - "includes": 1, - "to": 1, - "ensure": 1, - "sort": 1, - "is": 1, - "done": 1, - "by": 1, - "non": 1, - "before": 1, - "sliding.": 1, - "left.surname": 2, - "right.surname": 4, - "[": 4, - "]": 4, - "all": 1, - "//This": 1, - "should": 1, - "not": 1, - "generate": 1, - "a": 1, - "self": 1 - }, - "edn": { - "[": 24, - "{": 22, - "db/id": 22, - "#db/id": 22, - "db.part/db": 6, - "]": 24, - "db/ident": 3, - "object/name": 18, - "db/doc": 4, - "db/valueType": 3, - "db.type/string": 2, - "db/index": 3, - "true": 3, - "db/cardinality": 3, - "db.cardinality/one": 3, - "db.install/_attribute": 3, - "}": 22, - "object/meanRadius": 18, - "db.type/double": 1, - "data/source": 2, - "db.part/tx": 2, - "db.part/user": 17 - }, - "Elm": { - "import": 3, - "List": 1, - "(": 119, - "intercalate": 2, - "intersperse": 3, - ")": 116, - "Website.Skeleton": 1, - "Website.ColorScheme": 1, - "addFolder": 4, - "folder": 2, - "lst": 6, - "let": 2, - "add": 2, - "x": 13, - "y": 7, - "+": 14, - "in": 2, - "f": 8, - "n": 2, - "xs": 9, - "map": 11, - "elements": 2, - "[": 31, - "]": 31, - "functional": 2, - "reactive": 2, - "-": 11, - "example": 3, - "name": 6, - "loc": 2, - "Text.link": 1, - "toText": 6, - "toLinks": 2, - "title": 2, - "links": 2, - "flow": 4, - "right": 8, - "width": 3, - "text": 4, - "italic": 1, - "bold": 2, - ".": 9, - "Text.color": 1, - "accent4": 1, - "insertSpace": 2, - "case": 5, - "of": 7, - "{": 1, - "spacer": 2, - ";": 1, - "}": 1, - "subsection": 2, - "w": 7, - "info": 2, - "down": 3, - "words": 2, - "markdown": 1, - "|": 3, - "###": 1, - "Basic": 1, - "Examples": 1, - "Each": 1, - "listed": 1, - "below": 1, - "focuses": 1, - "on": 1, - "a": 5, - "single": 1, - "function": 1, - "or": 1, - "concept.": 1, - "These": 1, - "examples": 1, - "demonstrate": 1, - "all": 1, - "the": 1, - "basic": 1, - "building": 1, - "blocks": 1, - "Elm.": 1, - "content": 2, - "exampleSets": 2, - "plainText": 1, - "main": 3, - "lift": 1, + "Common Lisp": { + ";": 152, + "@file": 1, + "macros": 2, + "-": 161, + "advanced.cl": 1, + "@breif": 1, + "Advanced": 1, + "macro": 5, + "practices": 1, + "defining": 1, + "your": 1, + "own": 1, + "Macro": 1, + "definition": 1, "skeleton": 1, - "Window.width": 1, - "asText": 1, - "qsort": 4, - "filter": 2, - "<)x)>": 1, - "data": 1, - "Tree": 3, - "Node": 8, - "Empty": 8, - "empty": 2, - "singleton": 2, - "v": 8, - "insert": 4, - "tree": 7, - "left": 7, - "if": 2, - "then": 2, - "else": 2, - "<": 1, - "fromList": 3, - "foldl": 1, - "depth": 5, - "max": 1, - "t1": 2, - "t2": 3, - "display": 4, - "monospace": 1, - "concat": 1, - "show": 2 - }, - "Emacs Lisp": { - "(": 156, - "print": 1, - ")": 144, - ";": 333, - "ess": 48, - "-": 294, - "julia.el": 2, - "ESS": 5, - "julia": 39, - "mode": 12, - "and": 3, - "inferior": 13, - "interaction": 1, - "Copyright": 1, - "C": 2, - "Vitalie": 3, - "Spinu.": 1, - "Filename": 1, - "Author": 1, - "Spinu": 2, - "based": 1, - "on": 2, - "mode.el": 1, - "from": 3, - "lang": 1, - "project": 1, - "Maintainer": 1, - "Created": 1, - "Keywords": 1, - "This": 4, - "file": 10, - "is": 5, - "*NOT*": 1, - "part": 2, - "of": 8, - "GNU": 4, - "Emacs.": 1, - "program": 6, - "free": 1, - "software": 1, - "you": 1, - "can": 1, - "redistribute": 1, - "it": 3, - "and/or": 1, - "modify": 5, - "under": 1, - "the": 10, - "terms": 1, - "General": 3, - "Public": 3, - "License": 3, - "as": 1, - "published": 1, - "by": 1, - "Free": 2, - "Software": 2, - "Foundation": 2, - "either": 1, - "version": 2, - "any": 1, - "later": 1, - "version.": 1, - "distributed": 1, - "in": 3, - "hope": 1, - "that": 2, - "will": 1, - "be": 2, - "useful": 1, - "but": 2, - "WITHOUT": 1, - "ANY": 1, - "WARRANTY": 1, - "without": 1, - "even": 1, - "implied": 1, - "warranty": 1, - "MERCHANTABILITY": 1, - "or": 3, - "FITNESS": 1, - "FOR": 1, - "A": 1, - "PARTICULAR": 1, - "PURPOSE.": 1, - "See": 1, - "for": 8, - "more": 1, - "details.": 1, - "You": 1, - "should": 2, - "have": 1, - "received": 1, - "a": 4, - "copy": 2, - "along": 1, - "with": 4, - "this": 1, - "see": 2, - "COPYING.": 1, - "If": 1, - "not": 1, - "write": 2, - "to": 4, - "Inc.": 1, - "Franklin": 1, - "Street": 1, - "Fifth": 1, - "Floor": 1, - "Boston": 1, - "MA": 1, - "USA.": 1, - "Commentary": 1, - "customise": 1, - "name": 8, - "point": 6, - "your": 1, - "release": 1, - "basic": 1, - "start": 13, - "M": 2, - "x": 2, - "julia.": 2, - "require": 2, - "auto": 1, - "alist": 9, - "table": 9, - "character": 1, - "quote": 2, - "transpose": 1, - "syntax": 7, - "entry": 4, - ".": 40, - "Syntax": 3, - "inside": 1, - "char": 6, - "defvar": 5, - "let": 3, - "make": 4, - "defconst": 5, - "regex": 5, - "unquote": 1, - "forloop": 1, - "subset": 2, - "regexp": 6, - "font": 6, - "lock": 6, - "defaults": 2, - "list": 3, - "identity": 1, - "keyword": 2, - "face": 4, - "constant": 1, - "cons": 1, - "function": 7, - "keep": 2, - "string": 8, - "paragraph": 3, - "concat": 7, - "page": 2, - "delimiter": 2, - "separate": 1, - "ignore": 2, - "fill": 1, - "prefix": 2, - "t": 6, - "final": 1, - "newline": 1, - "comment": 6, - "add": 4, - "skip": 1, - "column": 1, - "indent": 8, - "S": 2, - "line": 5, - "calculate": 1, - "parse": 1, - "sexp": 1, - "comments": 1, - "style": 2, - "default": 1, - "ignored": 1, - "local": 6, - "process": 5, - "nil": 12, - "dump": 2, - "files": 1, - "_": 1, - "autoload": 1, - "defun": 5, - "send": 3, - "visibly": 1, - "temporary": 1, - "directory": 2, - "temp": 2, - "insert": 1, - "format": 3, - "load": 1, - "command": 5, - "get": 3, - "help": 3, - "topics": 1, - "&": 3, - "optional": 3, - "proc": 3, - "words": 1, - "vector": 1, - "com": 1, - "error": 6, - "s": 5, - "*in": 1, - "[": 3, - "n": 1, - "]": 3, - "*": 1, - "at": 5, - ".*": 2, - "+": 5, - "w*": 1, - "http": 1, - "//docs.julialang.org/en/latest/search/": 1, - "q": 1, - "%": 1, - "include": 1, - "funargs": 1, - "re": 2, - "args": 10, - "language": 1, - "STERM": 1, - "editor": 2, - "R": 2, - "pager": 2, - "versions": 1, - "Julia": 1, - "made": 1, - "available.": 1, - "String": 1, - "arguments": 2, - "used": 1, - "when": 2, - "starting": 1, - "group": 1, - "###autoload": 2, - "interactive": 2, - "setq": 2, - "customize": 5, - "emacs": 1, - "<": 1, - "hook": 4, - "complete": 1, - "object": 2, - "completion": 4, - "functions": 2, - "first": 1, - "if": 4, - "fboundp": 1, - "end": 1, - "workaround": 1, - "set": 3, - "variable": 3, - "post": 1, - "run": 2, - "settings": 1, - "notably": 1, - "null": 1, - "dribble": 1, - "buffer": 3, - "debugging": 1, - "only": 1, - "dialect": 1, - "current": 2, - "arg": 1, - "let*": 2, - "jl": 2, - "space": 1, - "just": 1, - "case": 1, - "read": 1, - "..": 3, - "multi": 1, - "...": 1, - "tb": 1, - "logo": 1, - "goto": 2, - "min": 1, - "while": 1, - "search": 1, - "forward": 1, - "replace": 1, - "match": 1, - "max": 1, - "inject": 1, - "code": 1, - "etc": 1, - "hooks": 1, - "busy": 1, - "funname": 5, - "eldoc": 1, - "show": 1, - "symbol": 2, - "aggressive": 1, - "car": 1, - "funname.start": 1, - "sequence": 1, - "nth": 1, - "W": 1, - "window": 2, - "width": 1, - "minibuffer": 1, - "length": 1, - "doc": 1, - "propertize": 1, - "use": 1, - "classes": 1, - "screws": 1, - "egrep": 1 - }, - "Erlang": { - "SHEBANG#!escript": 3, - "%": 134, - "-": 262, - "*": 9, - "erlang": 5, - "smp": 1, - "enable": 1, - "sname": 1, - "factorial": 1, - "mnesia": 1, - "debug": 1, - "verbose": 1, - "main": 4, - "(": 236, - "[": 66, - "String": 2, - "]": 61, - ")": 230, - "try": 2, - "N": 6, - "list_to_integer": 1, - "F": 16, - "fac": 4, - "io": 5, - "format": 7, - "catch": 2, - "_": 52, - "usage": 3, - "end": 3, - ";": 56, - ".": 37, - "halt": 2, - "export": 2, - "main/1": 1, - "For": 1, - "each": 1, - "header": 1, - "file": 6, - "it": 2, - "scans": 1, - "thru": 1, - "all": 1, - "records": 1, - "and": 8, - "create": 1, - "helper": 1, - "functions": 2, - "Helper": 1, - "are": 3, - "setters": 1, - "getters": 1, - "fields": 4, - "fields_atom": 4, - "type": 6, - "module": 2, - "record_helper": 1, - "make/1": 1, - "make/2": 1, - "make": 3, - "HeaderFiles": 5, - "atom_to_list": 18, - "X": 12, - "||": 6, - "<->": 5, - "hrl": 1, - "relative": 1, - "to": 2, - "current": 1, - "dir": 1, - "OutDir": 4, - "ModuleName": 3, - "HeaderComment": 2, - "ModuleDeclaration": 2, - "+": 214, - "<": 1, - "Src": 10, - "format_src": 8, - "lists": 11, - "sort": 1, - "flatten": 6, - "read": 2, - "generate_type_default_function": 2, - "write_file": 1, - "erl": 1, - "list_to_binary": 1, - "HeaderFile": 4, - "epp": 1, - "parse_file": 1, - "of": 9, - "{": 109, - "ok": 34, - "Tree": 4, - "}": 109, - "parse": 2, - "error": 4, - "Error": 4, - "catched_error": 1, - "end.": 3, - "|": 25, - "T": 24, - "when": 29, - "length": 6, - "Type": 3, - "A": 5, - "B": 4, - "NSrc": 4, - "_Type": 1, - "Type1": 2, - "parse_record": 3, - "attribute": 1, - "record": 4, - "RecordInfo": 2, - "RecordName": 41, - "RecordFields": 10, - "if": 1, - "generate_setter_getter_function": 5, - "generate_type_function": 3, - "true": 3, - "generate_fields_function": 2, - "generate_fields_atom_function": 2, - "parse_field_name": 5, - "record_field": 9, - "atom": 9, - "FieldName": 26, - "field": 4, - "_FieldName": 2, - "ParentRecordName": 8, - "parent_field": 2, - "parse_field_name_atom": 5, - "concat": 5, - "_S": 3, - "S": 6, - "concat_ext": 4, - "parse_field": 6, - "AccFields": 6, - "AccParentFields": 6, - "case": 3, - "Field": 2, - "PField": 2, - "parse_field_atom": 4, - "zzz": 1, - "Fields": 4, - "field_atom": 1, - "to_setter_getter_function": 5, - "setter": 2, - "getter": 2, - "This": 2, - "is": 1, - "auto": 1, - "generated": 1, - "file.": 1, - "Please": 1, - "don": 1, - "t": 1, - "edit": 1, - "record_utils": 1, - "compile": 2, - "export_all": 1, - "include": 1, - "abstract_message": 21, - "async_message": 12, - "clientId": 5, - "destination": 5, - "messageId": 5, - "timestamp": 5, - "timeToLive": 5, - "headers": 5, - "body": 5, - "correlationId": 5, - "correlationIdBytes": 5, - "get": 12, - "Obj": 49, - "is_record": 25, - "Obj#abstract_message.body": 1, - "Obj#abstract_message.clientId": 1, - "Obj#abstract_message.destination": 1, - "Obj#abstract_message.headers": 1, - "Obj#abstract_message.messageId": 1, - "Obj#abstract_message.timeToLive": 1, - "Obj#abstract_message.timestamp": 1, - "Obj#async_message.correlationId": 1, - "Obj#async_message.correlationIdBytes": 1, - "parent": 5, - "Obj#async_message.parent": 3, - "ParentProperty": 6, - "is_atom": 2, - "set": 13, - "Value": 35, - "NewObj": 20, - "Obj#abstract_message": 7, - "Obj#async_message": 3, - "NewParentObject": 2, - "undefined.": 1, - "Mode": 1, - "coding": 1, - "utf": 1, - "tab": 1, - "width": 1, - "c": 2, - "basic": 1, - "offset": 1, - "indent": 1, - "tabs": 1, - "mode": 2, - "BSD": 1, - "LICENSE": 1, - "Copyright": 1, - "Michael": 2, - "Truog": 2, - "": 1, - "at": 1, - "gmail": 1, - "dot": 1, - "com": 1, - "All": 2, - "rights": 1, - "reserved.": 1, - "Redistribution": 1, - "use": 2, - "in": 3, - "source": 2, - "binary": 2, - "forms": 1, - "with": 2, - "or": 3, - "without": 2, - "modification": 1, - "permitted": 1, - "provided": 2, - "that": 1, - "the": 9, - "following": 4, - "conditions": 3, - "met": 1, - "Redistributions": 2, - "code": 2, - "must": 3, - "retain": 1, - "above": 2, - "copyright": 2, - "notice": 2, - "this": 4, - "list": 2, - "disclaimer.": 1, - "form": 1, - "reproduce": 1, - "disclaimer": 1, - "documentation": 1, - "and/or": 1, - "other": 1, - "materials": 2, - "distribution.": 1, - "advertising": 1, - "mentioning": 1, - "features": 1, - "software": 3, - "display": 1, - "acknowledgment": 1, - "product": 1, - "includes": 1, - "developed": 1, - "by": 1, - "The": 1, - "name": 1, - "author": 2, - "may": 1, - "not": 1, - "be": 1, - "used": 1, - "endorse": 1, - "promote": 1, - "products": 1, - "derived": 1, - "from": 1, - "specific": 1, - "prior": 1, - "written": 1, - "permission": 1, - "THIS": 2, - "SOFTWARE": 2, - "IS": 1, - "PROVIDED": 1, - "BY": 1, - "THE": 5, - "COPYRIGHT": 2, - "HOLDERS": 1, - "AND": 4, - "CONTRIBUTORS": 2, - "ANY": 4, - "EXPRESS": 1, - "OR": 8, - "IMPLIED": 2, - "WARRANTIES": 2, - "INCLUDING": 3, - "BUT": 2, - "NOT": 2, - "LIMITED": 2, - "TO": 2, - "OF": 8, - "MERCHANTABILITY": 1, - "FITNESS": 1, - "FOR": 2, - "PARTICULAR": 1, - "PURPOSE": 1, - "ARE": 1, - "DISCLAIMED.": 1, - "IN": 3, - "NO": 1, - "EVENT": 1, - "SHALL": 1, - "OWNER": 1, - "BE": 1, - "LIABLE": 1, - "DIRECT": 1, - "INDIRECT": 1, - "INCIDENTAL": 1, - "SPECIAL": 1, - "EXEMPLARY": 1, - "CONSEQUENTIAL": 1, - "DAMAGES": 1, - "PROCUREMENT": 1, - "SUBSTITUTE": 1, - "GOODS": 1, - "SERVICES": 1, - "LOSS": 1, - "USE": 2, - "DATA": 1, - "PROFITS": 1, - "BUSINESS": 1, - "INTERRUPTION": 1, - "HOWEVER": 1, - "CAUSED": 1, - "ON": 1, - "THEORY": 1, - "LIABILITY": 2, - "WHETHER": 1, - "CONTRACT": 1, - "STRICT": 1, - "TORT": 1, - "NEGLIGENCE": 1, - "OTHERWISE": 1, - "ARISING": 1, - "WAY": 1, - "OUT": 1, - "EVEN": 1, - "IF": 1, - "ADVISED": 1, - "POSSIBILITY": 1, - "SUCH": 1, - "DAMAGE.": 1, - "sys": 2, - "RelToolConfig": 5, - "target_dir": 2, - "TargetDir": 14, - "overlay": 2, - "OverlayConfig": 4, - "consult": 1, - "Spec": 2, - "reltool": 2, - "get_target_spec": 1, - "make_dir": 1, - "eexist": 1, - "exit_code": 3, - "eval_target_spec": 1, - "root_dir": 1, - "process_overlay": 2, - "shell": 3, - "Command": 3, - "Arguments": 3, - "CommandSuffix": 2, - "reverse": 4, - "os": 1, - "cmd": 1, - "io_lib": 2, - "boot_rel_vsn": 2, - "Config": 2, - "_RelToolConfig": 1, - "rel": 2, - "_Name": 1, - "Ver": 1, - "proplists": 1, - "lookup": 1, - "Ver.": 1, - "minimal": 2, - "parsing": 1, - "for": 1, - "handling": 1, - "mustache": 11, - "syntax": 1, - "Body": 2, - "Context": 11, - "Result": 10, - "_Context": 1, - "KeyStr": 6, - "mustache_key": 4, - "C": 4, - "Rest": 10, - "Key": 2, - "list_to_existing_atom": 1, - "dict": 2, - "find": 1, - "support": 1, - "based": 1, - "on": 1, - "rebar": 1, - "overlays": 1, - "BootRelVsn": 2, - "OverlayVars": 2, - "from_list": 1, - "erts_vsn": 1, - "system_info": 1, - "version": 1, - "rel_vsn": 1, - "hostname": 1, - "net_adm": 1, - "localhost": 1, - "BaseDir": 7, - "get_cwd": 1, - "execute_overlay": 6, - "_Vars": 1, - "_BaseDir": 1, - "_TargetDir": 1, - "mkdir": 1, - "Out": 4, - "Vars": 7, - "filename": 3, - "join": 3, - "copy": 1, - "In": 2, - "InFile": 3, - "OutFile": 2, - "filelib": 1, - "is_file": 1, - "ExitCode": 2, - "flush": 1 - }, - "fish": { - "#": 18, - "set": 49, - "-": 102, - "g": 1, - "IFS": 4, - "n": 5, - "t": 2, - "l": 15, - "configdir": 2, - "/.config": 1, - "if": 21, - "q": 9, - "XDG_CONFIG_HOME": 2, - "end": 33, - "not": 8, - "fish_function_path": 4, - "configdir/fish/functions": 1, - "__fish_sysconfdir/functions": 1, - "__fish_datadir/functions": 3, - "contains": 4, - "[": 13, - "]": 13, - "fish_complete_path": 4, - "configdir/fish/completions": 1, - "__fish_sysconfdir/completions": 1, - "__fish_datadir/completions": 3, - "test": 7, - "d": 3, - "/usr/xpg4/bin": 3, - "PATH": 6, - "path_list": 4, - "/bin": 1, - "/usr/bin": 1, - "/usr/X11R6/bin": 1, - "/usr/local/bin": 1, - "__fish_bin_dir": 1, - "switch": 3, - "USER": 1, - "case": 9, - "root": 1, - "/sbin": 1, - "/usr/sbin": 1, - "/usr/local/sbin": 1, - "for": 1, - "i": 5, - "in": 2, - "function": 6, - "fish_sigtrap_handler": 1, - "on": 2, - "signal": 1, - "TRAP": 1, - "no": 2, - "scope": 1, - "shadowing": 1, - "description": 2, - "breakpoint": 1, - "__fish_on_interactive": 2, - "event": 1, - "fish_prompt": 1, - "__fish_config_interactive": 1, - "functions": 5, - "e": 6, - "eval": 5, - "S": 1, - "If": 2, - "we": 2, - "are": 1, - "an": 1, - "interactive": 8, - "shell": 1, - "should": 2, - "enable": 1, - "full": 4, - "job": 5, - "control": 5, - "since": 1, - "it": 1, - "behave": 1, - "like": 2, - "the": 1, - "real": 1, - "code": 1, - "was": 1, - "executed.": 1, - "don": 1, - "do": 1, - "this": 1, - "commands": 1, - "that": 1, - "expect": 1, - "to": 1, - "be": 1, - "used": 1, - "interactively": 1, - "less": 1, - "wont": 1, - "work": 1, - "using": 1, - "eval.": 1, - "mode": 5, - "status": 7, - "is": 3, - "else": 3, - "none": 1, - "echo": 3, - "|": 3, - ".": 2, - "<": 1, - "&": 1, - "res": 2, - "return": 6, - "funced": 3, - "editor": 7, - "EDITOR": 1, - "funcname": 14, - "while": 2, - "argv": 9, - "h": 1, - "help": 1, - "__fish_print_help": 1, - "set_color": 4, - "red": 2, - "printf": 3, - "(": 7, - "_": 3, - ")": 7, - "normal": 2, - "begin": 2, - ";": 7, - "or": 3, - "init": 5, - "nend": 2, - "editor_cmd": 2, - "type": 1, - "f": 3, - "/dev/null": 2, - "fish": 3, - "z": 1, - "fish_indent": 2, - "indent": 1, - "prompt": 2, - "read": 1, - "p": 1, - "c": 1, - "s": 1, - "cmd": 2, - "TMPDIR": 2, - "/tmp": 1, - "tmpname": 8, - "%": 2, - "self": 2, - "random": 2, - "stat": 2, - "rm": 1 - }, - "Forth": { - "(": 88, - "Block": 2, - "words.": 6, - ")": 87, - "variable": 3, - "blk": 3, - "current": 5, - "-": 473, - "block": 8, - "n": 22, - "addr": 11, - ";": 61, - "buffer": 2, - "evaluate": 1, - "extended": 3, - "semantics": 3, - "flush": 1, - "load": 2, - "...": 4, - "dup": 10, - "save": 2, - "input": 2, - "in": 4, - "@": 13, - "source": 5, - "#source": 2, - "interpret": 1, - "restore": 1, - "buffers": 2, - "update": 1, - "extension": 4, - "empty": 2, - "scr": 2, - "list": 1, - "bounds": 1, - "do": 2, - "i": 5, - "emit": 2, - "loop": 4, - "refill": 2, - "thru": 1, - "x": 10, - "y": 5, - "+": 17, - "swap": 12, - "*": 9, - "forth": 2, - "Copyright": 3, - "Lars": 3, - "Brinkhoff": 3, - "Kernel": 4, - "#tib": 2, - "TODO": 12, - ".r": 1, - ".": 5, - "[": 16, - "char": 10, - "]": 15, - "parse": 5, - "type": 3, - "immediate": 19, - "<": 14, - "flag": 4, - "r": 18, - "x1": 5, - "x2": 5, - "R": 13, - "rot": 2, - "r@": 2, - "noname": 1, - "align": 2, - "here": 9, - "c": 3, - "allot": 2, - "lastxt": 4, - "SP": 1, - "query": 1, - "tib": 1, - "body": 1, - "true": 1, - "tuck": 2, - "over": 5, - "u.r": 1, - "u": 3, - "if": 9, - "drop": 4, - "false": 1, - "else": 6, - "then": 5, - "unused": 1, - "value": 1, - "create": 2, - "does": 5, - "within": 1, - "compile": 2, - "Forth2012": 2, - "core": 1, - "action": 1, - "of": 3, - "defer": 2, - "name": 1, - "s": 4, - "c@": 2, - "negate": 1, - "nip": 2, - "bl": 4, - "word": 9, - "ahead": 2, - "resolve": 4, - "literal": 4, - "postpone": 14, - "nonimmediate": 1, - "caddr": 1, - "C": 9, - "find": 2, - "cells": 1, - "postponers": 1, - "execute": 1, - "unresolved": 4, - "orig": 5, - "chars": 1, - "n1": 2, - "n2": 2, - "orig1": 1, - "orig2": 1, - "branch": 5, - "dodoes_code": 1, - "code": 3, - "begin": 2, - "dest": 5, - "while": 2, - "repeat": 2, - "until": 1, - "recurse": 1, - "pad": 3, - "If": 1, - "necessary": 1, - "and": 3, - "keep": 1, - "parsing.": 1, - "string": 3, - "cmove": 1, - "state": 2, - "cr": 3, - "abort": 3, - "": 1, - "Undefined": 1, - "ok": 1, - "HELLO": 4, - "KataDiversion": 1, - "Forth": 1, - "utils": 1, - "the": 7, - "stack": 3, - "EMPTY": 1, - "DEPTH": 2, - "IF": 10, - "BEGIN": 3, - "DROP": 5, - "UNTIL": 3, - "THEN": 10, - "power": 2, - "**": 2, - "n1_pow_n2": 1, - "SWAP": 8, - "DUP": 14, - "DO": 2, - "OVER": 2, - "LOOP": 2, - "NIP": 4, - "compute": 1, - "highest": 1, - "below": 1, - "N.": 1, - "e.g.": 2, - "MAXPOW2": 2, - "log2_n": 1, - "ABORT": 1, - "ELSE": 7, - "|": 4, - "I": 5, - "i*2": 1, - "/": 3, - "kata": 1, - "test": 1, - "given": 3, - "N": 6, - "has": 1, - "two": 2, - "adjacent": 2, - "bits": 3, - "NOT": 3, - "TWO": 3, - "ADJACENT": 3, - "BITS": 3, - "bool": 1, - "uses": 1, - "following": 1, - "algorithm": 1, - "return": 5, - "A": 5, - "X": 5, - "LOG2": 1, - "end": 1, - "OR": 1, - "INVERT": 1, - "maximum": 1, - "number": 4, - "which": 3, - "can": 2, - "be": 2, - "made": 2, - "with": 2, - "MAX": 2, - "NB": 3, - "m": 2, - "**n": 1, - "numbers": 1, - "or": 1, - "less": 1, - "have": 1, - "not": 1, - "bits.": 1, - "see": 1, - "http": 1, - "//www.codekata.com/2007/01/code_kata_fifte.html": 1, - "HOW": 1, - "MANY": 1, - "Tools": 2, - ".s": 1, - "depth": 1, - "traverse": 1, - "dictionary": 1, - "assembler": 1, - "kernel": 1, - "bye": 1, - "cs": 2, - "pick": 1, - "roll": 1, - "editor": 1, - "forget": 1, - "reveal": 1, - "tools": 1, - "nr": 1, - "synonym": 1, - "undefined": 2, - "defined": 1, - "invert": 1, - "/cell": 2, - "cell": 2 - }, - "Frege": { - "module": 2, - "examples.CommandLineClock": 1, - "where": 39, - "data": 3, - "Date": 5, - "native": 4, - "java.util.Date": 1, - "new": 9, - "(": 339, - ")": 345, - "-": 730, - "IO": 13, - "MutableIO": 1, - "toString": 2, - "Mutable": 1, - "s": 21, - "ST": 1, - "String": 9, - "d.toString": 1, - "action": 2, - "to": 13, - "give": 2, - "us": 1, - "the": 20, - "current": 4, - "time": 1, - "as": 33, - "do": 38, - "d": 3, - "<->": 35, - "java": 5, - "lang": 2, - "Thread": 2, - "sleep": 4, - "takes": 1, - "a": 99, - "long": 4, - "and": 14, - "returns": 2, - "nothing": 2, - "but": 2, - "may": 1, - "throw": 1, - "an": 6, - "InterruptedException": 4, - "This": 2, - "is": 24, - "without": 1, - "doubt": 1, - "public": 1, - "static": 1, - "void": 2, - "millis": 1, - "throws": 4, - "Encoded": 1, - "in": 22, - "Frege": 1, - "argument": 1, - "type": 8, - "Long": 3, - "result": 11, - "does": 2, - "defined": 1, - "frege": 1, - "Lang": 1, - "main": 11, - "args": 2, - "forever": 1, - "print": 25, - "stdout.flush": 1, - "Thread.sleep": 4, - "examples.Concurrent": 1, - "import": 7, - "System.Random": 1, - "Java.Net": 1, - "URL": 2, - "Control.Concurrent": 1, - "C": 6, - "main2": 1, - "m": 2, - "<": 84, - "newEmptyMVar": 1, - "forkIO": 11, - "m.put": 3, - "replicateM_": 3, - "c": 33, - "m.take": 1, - "println": 25, - "example1": 1, - "putChar": 2, - "example2": 2, - "getLine": 2, - "case": 6, - "of": 32, - "Right": 6, - "n": 38, - "setReminder": 3, - "Left": 5, - "_": 60, - "+": 200, - "show": 24, - "L*n": 1, - "table": 1, - "mainPhil": 2, - "[": 120, - "fork1": 3, - "fork2": 3, - "fork3": 3, - "fork4": 3, - "fork5": 3, - "]": 116, - "mapM": 3, - "MVar": 3, - "1": 2, - "5": 1, - "philosopher": 7, - "Kant": 1, - "Locke": 1, - "Wittgenstein": 1, - "Nozick": 1, - "Mises": 1, - "return": 17, - "Int": 6, - "me": 13, - "left": 4, - "right": 4, - "g": 4, - "Random.newStdGen": 1, - "let": 8, - "phil": 4, - "tT": 2, - "g1": 2, - "Random.randomR": 2, - "L": 6, - "eT": 2, - "g2": 3, - "thinkTime": 3, - "*": 5, - "eatTime": 3, - "fl": 4, - "left.take": 1, - "rFork": 2, - "poll": 1, - "Just": 2, - "fr": 3, - "right.put": 1, - "left.put": 2, - "table.notifyAll": 2, - "Nothing": 2, - "table.wait": 1, - "inter": 3, - "catch": 2, - "getURL": 4, - "xx": 2, - "url": 1, - "URL.new": 1, - "con": 3, - "url.openConnection": 1, - "con.connect": 1, - "con.getInputStream": 1, - "typ": 5, - "con.getContentType": 1, - "stderr.println": 3, - "ir": 2, - "InputStreamReader.new": 2, - "fromMaybe": 1, - "charset": 2, - "unsupportedEncoding": 3, - "br": 4, - "BufferedReader": 1, - "getLines": 1, - "InputStream": 1, - "UnsupportedEncodingException": 1, - "InputStreamReader": 1, - "x": 45, - "x.catched": 1, - "ctyp": 2, - "charset=": 1, - "m.group": 1, - "SomeException": 2, - "Throwable": 1, - "m1": 1, - "MVar.newEmpty": 3, - "m2": 1, - "m3": 2, - "r": 7, - "catchAll": 3, - ".": 41, - "m1.put": 1, - "m2.put": 1, - "m3.put": 1, - "r1": 2, - "m1.take": 1, - "r2": 3, - "m2.take": 1, - "r3": 3, - "take": 13, - "ss": 8, - "mapM_": 5, - "putStrLn": 2, - "|": 62, - "x.getClass.getName": 1, - "y": 15, - "sum": 2, - "map": 49, - "length": 20, - "package": 2, - "examples.Sudoku": 1, - "Data.TreeMap": 1, - "Tree": 4, - "keys": 2, - "Data.List": 1, - "DL": 1, - "hiding": 1, - "find": 20, - "union": 10, - "Element": 6, - "Zelle": 8, - "set": 4, - "candidates": 18, - "Position": 22, - "Feld": 3, - "Brett": 13, - "for": 25, - "assumptions": 10, - "conclusions": 2, - "Assumption": 21, - "ISNOT": 14, - "IS": 16, - "derive": 2, - "Eq": 1, - "Ord": 1, - "instance": 1, - "Show": 1, - "p": 72, - "e": 15, - "pname": 10, - "e.show": 2, - "showcs": 5, - "cs": 27, - "joined": 4, - "Assumption.show": 1, - "elements": 12, - "all": 22, - "possible": 2, - "..": 1, - "positions": 16, - "rowstarts": 4, - "row": 20, - "starting": 3, - "colstarts": 3, - "column": 2, - "boxstarts": 3, - "box": 15, - "boxmuster": 3, - "pattern": 1, - "by": 3, - "adding": 1, - "upper": 2, - "position": 9, - "results": 1, - "real": 1, - "extract": 2, - "field": 9, - "getf": 16, - "f": 19, - "fs": 22, - "fst": 9, - "otherwise": 8, - "cell": 24, - "getc": 12, - "b": 113, - "snd": 20, - "compute": 5, - "list": 7, - "that": 18, - "belong": 3, - "same": 8, - "given": 3, - "z..": 1, - "z": 12, - "quot": 1, - "col": 17, - "mod": 3, - "ri": 2, - "div": 3, - "or": 15, - "depending": 1, - "on": 4, - "ci": 3, - "index": 3, - "middle": 2, - "check": 2, - "if": 5, - "candidate": 10, - "has": 2, - "exactly": 2, - "one": 2, - "member": 1, - "i.e.": 1, - "been": 1, - "solved": 1, - "single": 9, - "Bool": 2, - "true": 16, - "false": 13, - "unsolved": 10, - "rows": 4, - "cols": 6, - "boxes": 1, - "allrows": 8, - "allcols": 5, - "allboxs": 5, - "allrcb": 5, - "zip": 7, - "repeat": 3, - "containers": 6, - "PRINTING": 1, - "printable": 1, - "coordinate": 1, - "a1": 3, - "lower": 1, - "i9": 1, - "packed": 1, - "chr": 2, - "ord": 6, - "board": 41, - "printb": 4, - "p1line": 2, - "pfld": 4, - "line": 2, - "brief": 1, - "no": 4, - "some": 2, - "zs": 1, - "initial/final": 1, - "msg": 6, - "res012": 2, - "concatMap": 1, - "a*100": 1, - "b*10": 1, - "BOARD": 1, - "ALTERATION": 1, - "ACTIONS": 1, - "message": 1, - "about": 1, - "what": 1, - "done": 1, - "turnoff1": 3, - "i": 16, - "off": 11, - "nc": 7, - "head": 19, - "newb": 7, - "filter": 26, - "notElem": 7, - "turnoff": 11, - "turnoffh": 1, - "ps": 8, - "foldM": 2, - "toh": 2, - "setto": 3, - "cname": 4, - "nf": 2, - "SOLVING": 1, - "STRATEGIES": 1, - "reduce": 3, - "sets": 2, - "contains": 1, - "numbers": 1, - "already": 1, - "finds": 1, - "logs": 1, - "NAKED": 5, - "SINGLEs": 1, - "passing.": 1, - "sss": 3, - "each": 2, - "with": 15, - "more": 2, - "than": 2, - "fields": 6, - "are": 6, - "rcb": 16, - "elem": 16, - "collect": 1, - "remove": 3, - "from": 7, - "look": 10, - "number": 4, - "appears": 1, - "container": 9, - "this": 2, - "can": 9, - "go": 1, - "other": 2, - "place": 1, - "HIDDEN": 6, - "SINGLE": 1, - "hiddenSingle": 2, - "select": 1, - "containername": 1, - "FOR": 11, - "IN": 9, - "occurs": 5, - "PAIRS": 8, - "TRIPLES": 8, - "QUADS": 2, - "nakedPair": 4, - "t": 14, - "nm": 6, - "SELECT": 3, - "pos": 5, - "tuple": 2, - "name": 2, - "//": 8, - "u": 6, - "fold": 7, - "non": 2, - "outof": 6, - "tuples": 2, - "hit": 7, - "subset": 3, - "any": 3, - "hiddenPair": 4, - "minus": 2, - "uniq": 4, - "sort": 4, - "common": 4, - "bs": 7, - "undefined": 1, - "cannot": 1, - "happen": 1, - "because": 1, - "either": 1, - "empty": 4, - "not": 5, - "intersectionlist": 2, - "intersections": 2, - "reason": 8, - "reson": 1, - "cpos": 7, - "WHERE": 2, - "tail": 2, - "intersection": 1, - "we": 5, - "occurences": 1, - "XY": 2, - "Wing": 2, - "there": 6, - "exists": 6, - "A": 7, - "X": 5, - "Y": 4, - "B": 5, - "Z": 6, - "shares": 2, - "reasoning": 1, - "will": 4, - "be": 9, - "since": 1, - "indeed": 1, - "thus": 1, - "see": 1, - "xyWing": 2, - "rcba": 4, - "share": 1, - "b1": 11, - "b2": 10, - "&&": 9, - "||": 2, - "then": 1, - "else": 1, - "c1": 4, - "c2": 3, - "N": 5, - "Fish": 1, - "Swordfish": 1, - "Jellyfish": 1, - "When": 2, - "particular": 1, - "digit": 1, - "located": 2, - "only": 1, - "columns": 2, - "eliminate": 1, - "those": 2, - "which": 2, - "fish": 7, - "fishname": 5, - "rset": 4, - "certain": 1, - "rflds": 2, - "rowset": 1, - "colss": 3, - "must": 4, - "appear": 1, - "at": 3, - "least": 3, - "cstart": 2, - "immediate": 1, - "consequences": 6, - "assumption": 8, - "form": 1, - "conseq": 3, - "cp": 3, - "two": 1, - "contradict": 2, - "contradicts": 7, - "get": 3, - "aPos": 5, - "List": 1, - "turned": 1, - "when": 2, - "true/false": 1, - "toClear": 7, - "whose": 1, - "implications": 5, - "themself": 1, - "chain": 2, - "paths": 12, - "solution": 6, - "reverse": 4, - "css": 7, - "yields": 1, - "contradictory": 1, - "chainContra": 2, - "pro": 7, - "contra": 4, - "ALL": 2, - "conlusions": 1, - "uniqBy": 2, - "using": 2, - "sortBy": 2, - "comparing": 2, - "conslusion": 1, - "chains": 4, - "LET": 1, - "BE": 1, - "final": 2, - "conclusion": 4, - "THE": 1, - "FIRST": 1, - "implication": 2, - "ai": 2, - "so": 1, - "a0": 1, - "OR": 7, - "a2": 2, - "...": 2, - "IMPLIES": 1, - "For": 2, - "cells": 1, - "pi": 2, - "have": 1, - "construct": 2, - "p0": 1, - "p1": 1, - "c0": 1, - "cellRegionChain": 2, - "os": 3, - "cellas": 2, - "regionas": 2, - "iss": 3, - "ass": 2, - "first": 2, - "candidates@": 1, - "region": 2, - "oss": 2, - "Liste": 1, - "aller": 1, - "Annahmen": 1, - "ein": 1, - "bestimmtes": 1, - "acstree": 3, - "Tree.fromList": 1, - "bypass": 1, - "maybe": 1, - "tree": 1, - "lookup": 2, - "error": 1, - "performance": 1, - "resons": 1, - "confine": 1, - "ourselves": 1, - "20": 1, - "per": 1, - "mkPaths": 3, - "acst": 3, - "impl": 2, - "{": 1, - "a3": 1, - "ordered": 1, - "impls": 2, - "ns": 2, - "concat": 1, - "takeUntil": 1, - "null": 1, - "iterate": 1, - "expandchain": 3, - "avoid": 1, - "loops": 1, - "uni": 3, - "SOLVE": 1, - "SUDOKU": 1, - "Apply": 1, - "available": 1, - "strategies": 1, - "until": 1, - "changes": 1, - "anymore": 1, - "Strategy": 1, - "functions": 2, - "supposed": 1, - "applied": 1, - "changed": 1, - "board.": 1, - "strategy": 2, - "anything": 1, - "alter": 1, - "it": 2, - "next": 1, - "tried.": 1, - "solve": 19, - "res@": 16, - "apply": 17, - "res": 16, - "smallest": 1, - "comment": 16, - "SINGLES": 1, - "locked": 1, - "2": 3, - "QUADRUPELS": 6, - "3": 3, - "4": 3, - "WINGS": 1, - "FISH": 3, - "pcomment": 2, - "9": 5, - "forcing": 1, - "allow": 1, - "infer": 1, - "both": 1, - "brd": 2, - "com": 5, - "stderr": 3, - "<<": 4, - "log": 1, - "turn": 1, - "string": 3, - "into": 1, - "mkrow": 2, - "mkrow1": 2, - "xs": 4, - "make": 1, - "sure": 1, - "unpacked": 2, - "<=>": 1, - "0": 2, - "ignored": 1, - "h": 1, - "help": 1, - "usage": 1, - "Sudoku": 2, - "file": 4, - "81": 3, - "char": 1, - "consisting": 1, - "digits": 2, - "One": 1, - "such": 1, - "going": 1, - "http": 3, - "www": 1, - "sudokuoftheday": 1, - "pages": 1, - "o": 1, - "php": 1, - "click": 1, - "puzzle": 1, - "open": 1, - "tab": 1, - "Copy": 1, - "address": 1, - "your": 1, - "browser": 1, - "There": 1, - "also": 1, - "hard": 1, - "sudokus": 1, - "examples": 1, - "top95": 1, - "txt": 1, - "W": 1, - "felder": 2, - "decode": 4, - "files": 2, - "forM_": 1, - "sudoku": 2, - "openReader": 1, - "lines": 2, - "BufferedReader.getLines": 1, - "process": 5, - "candi": 2, - "consider": 3, - "acht": 4, - "neun": 2, - "examples.SwingExamples": 1, - "Java.Awt": 1, - "ActionListener": 2, - "Java.Swing": 1, - "rs": 2, - "Runnable.new": 1, - "helloWorldGUI": 2, - "buttonDemoGUI": 2, - "celsiusConverterGUI": 2, - "invokeLater": 1, - "tempTextField": 2, - "JTextField.new": 1, - "celsiusLabel": 1, - "JLabel.new": 3, - "convertButton": 1, - "JButton.new": 3, - "fahrenheitLabel": 1, - "frame": 3, - "JFrame.new": 3, - "frame.setDefaultCloseOperation": 3, - "JFrame.dispose_on_close": 3, - "frame.setTitle": 1, - "celsiusLabel.setText": 1, - "convertButton.setText": 1, - "convertButtonActionPerformed": 2, - "celsius": 3, - "getText": 1, - "double": 1, - "fahrenheitLabel.setText": 3, - "c*1.8": 1, - ".long": 1, - "ActionListener.new": 2, - "convertButton.addActionListener": 1, - "contentPane": 2, - "frame.getContentPane": 2, - "layout": 2, - "GroupLayout.new": 1, - "contentPane.setLayout": 1, - "TODO": 1, - "continue": 1, - "//docs.oracle.com/javase/tutorial/displayCode.html": 1, - "code": 1, - "//docs.oracle.com/javase/tutorial/uiswing/examples/learn/CelsiusConverterProject/src/learn/CelsiusConverterGUI.java": 1, - "frame.pack": 3, - "frame.setVisible": 3, - "label": 2, - "cp.add": 1, - "newContentPane": 2, - "JPanel.new": 1, - "JButton": 4, - "b1.setVerticalTextPosition": 1, - "SwingConstants.center": 2, - "b1.setHorizontalTextPosition": 1, - "SwingConstants.leading": 2, - "b2.setVerticalTextPosition": 1, - "b2.setHorizontalTextPosition": 1, - "b3": 7, - "Enable": 1, - "button": 1, - "setVerticalTextPosition": 1, - "SwingConstants": 2, - "center": 1, - "setHorizontalTextPosition": 1, - "leading": 1, - "setEnabled": 7, - "action1": 2, - "action3": 2, - "b1.addActionListener": 1, - "b3.addActionListener": 1, - "newContentPane.add": 3, - "newContentPane.setOpaque": 1, - "frame.setContentPane": 1 - }, - "Game Maker Language": { - "//draws": 1, - "the": 62, - "sprite": 12, - "draw": 3, - "true": 73, - ";": 1282, - "if": 397, - "(": 1501, - "facing": 17, - "RIGHT": 10, - ")": 1502, - "image_xscale": 17, - "-": 212, - "else": 151, - "blinkToggle": 1, - "{": 300, - "state": 50, - "CLIMBING": 5, - "or": 78, - "sprite_index": 14, - "sPExit": 1, - "sDamselExit": 1, - "sTunnelExit": 1, - "and": 155, - "global.hasJetpack": 4, - "not": 63, - "whipping": 5, - "draw_sprite_ext": 10, - "x": 76, - "y": 85, - "image_yscale": 14, - "image_angle": 14, - "image_blend": 2, - "image_alpha": 10, - "//draw_sprite": 1, - "draw_sprite": 9, - "sJetpackBack": 1, - "false": 85, - "}": 307, - "sJetpackRight": 1, - "sJetpackLeft": 1, - "+": 206, - "redColor": 2, - "make_color_rgb": 1, - "holdArrow": 4, - "ARROW_NORM": 2, - "sArrowRight": 1, - "ARROW_BOMB": 2, - "holdArrowToggle": 2, - "sBombArrowRight": 2, - "LEFT": 7, - "sArrowLeft": 1, - "sBombArrowLeft": 2, - "hangCountMax": 2, - "//////////////////////////////////////": 2, - "kLeft": 12, - "checkLeft": 1, - "kLeftPushedSteps": 3, - "kLeftPressed": 2, - "checkLeftPressed": 1, - "kLeftReleased": 3, - "checkLeftReleased": 1, - "kRight": 12, - "checkRight": 1, - "kRightPushedSteps": 3, - "kRightPressed": 2, - "checkRightPressed": 1, - "kRightReleased": 3, - "checkRightReleased": 1, - "kUp": 5, - "checkUp": 1, - "kDown": 5, - "checkDown": 1, - "//key": 1, - "canRun": 1, - "kRun": 2, - "kJump": 6, - "checkJump": 1, - "kJumpPressed": 11, - "checkJumpPressed": 1, - "kJumpReleased": 5, - "checkJumpReleased": 1, - "cantJump": 3, - "global.isTunnelMan": 1, - "sTunnelAttackL": 1, - "holdItem": 1, - "kAttack": 2, - "checkAttack": 2, - "kAttackPressed": 2, - "checkAttackPressed": 1, - "kAttackReleased": 2, - "checkAttackReleased": 1, - "kItemPressed": 2, - "checkItemPressed": 1, - "xPrev": 1, - "yPrev": 1, - "stunned": 3, - "dead": 3, - "//////////////////////////////////////////": 2, - "colSolidLeft": 4, - "colSolidRight": 3, - "colLeft": 6, - "colRight": 6, - "colTop": 4, - "colBot": 11, - "colLadder": 3, - "colPlatBot": 6, - "colPlat": 5, - "colWaterTop": 3, - "colIceBot": 2, - "runKey": 4, - "isCollisionMoveableSolidLeft": 1, - "isCollisionMoveableSolidRight": 1, - "isCollisionLeft": 2, - "isCollisionRight": 2, - "isCollisionTop": 1, - "isCollisionBottom": 1, - "isCollisionLadder": 1, - "isCollisionPlatformBottom": 1, - "isCollisionPlatform": 1, - "isCollisionWaterTop": 1, - "collision_point": 30, - "oIce": 1, - "checkRun": 1, - "runHeld": 3, - "HANGING": 10, - "approximatelyZero": 4, - "xVel": 24, - "xAcc": 12, - "platformCharacterIs": 23, - "ON_GROUND": 18, - "DUCKING": 4, - "pushTimer": 3, - "//if": 5, - "SS_IsSoundPlaying": 2, - "global.sndPush": 4, - "playSound": 3, - "runAcc": 2, - "abs": 9, - "alarm": 13, - "[": 99, - "]": 103, - "<": 39, - "floor": 11, - "/": 5, - "/xVel": 1, - "instance_exists": 8, - "oCape": 2, - "oCape.open": 6, - "kJumped": 7, - "ladderTimer": 4, - "ladder": 5, - "oLadder": 4, - "ladder.x": 3, - "oLadderTop": 2, - "yAcc": 26, - "climbAcc": 2, - "FALLING": 8, - "STANDING": 2, - "departLadderXVel": 2, - "departLadderYVel": 1, - "JUMPING": 6, - "jumpButtonReleased": 7, - "jumpTime": 8, - "IN_AIR": 5, - "gravityIntensity": 2, - "yVel": 20, - "RUNNING": 3, - "jumps": 3, - "//playSound": 1, - "global.sndLand": 1, - "grav": 22, - "global.hasGloves": 3, - "hangCount": 14, - "*": 18, - "yVel*0.3": 1, - "oWeb": 2, - "obj": 14, - "instance_place": 3, - "obj.life": 1, - "initialJumpAcc": 6, - "xVel/2": 3, - "gravNorm": 7, - "global.hasCape": 1, - "jetpackFuel": 2, - "fallTimer": 2, - "global.hasJordans": 1, - "yAccLimit": 2, - "global.hasSpringShoes": 1, - "global.sndJump": 1, - "jumpTimeTotal": 2, - "//let": 1, - "character": 20, - "continue": 4, - "to": 62, - "jump": 1, - "jumpTime/jumpTimeTotal": 1, - "looking": 2, - "UP": 1, - "LOOKING_UP": 4, - "oSolid": 14, - "move_snap": 6, - "oTree": 4, - "oArrow": 5, - "instance_nearest": 1, - "obj.stuck": 1, - "//the": 2, - "can": 1, - "t": 23, - "want": 1, - "use": 4, - "because": 2, - "is": 9, - "too": 2, - "high": 1, - "yPrevHigh": 1, - "//": 11, - "we": 5, - "ll": 1, - "move": 2, - "correct": 1, - "distance": 1, - "but": 2, - "need": 1, - "shorten": 1, - "out": 4, - "a": 55, - "little": 1, - "ratio": 1, - "xVelInteger": 2, - "/dist*0.9": 1, - "//can": 1, - "be": 4, - "changed": 1, - "moveTo": 2, - "round": 6, - "xVelInteger*ratio": 1, - "yVelInteger*ratio": 1, - "slopeChangeInY": 1, - "maxDownSlope": 1, - "floating": 1, - "just": 1, - "above": 1, - "slope": 1, - "so": 2, - "down": 1, - "upYPrev": 1, - "for": 26, - "<=upYPrev+maxDownSlope;y+=1)>": 1, - "hit": 1, - "solid": 1, - "below": 1, - "upYPrev=": 1, - "I": 1, - "know": 1, - "that": 2, - "this": 2, - "doesn": 1, - "seem": 1, - "make": 1, - "sense": 1, - "of": 25, - "name": 9, - "variable": 1, - "it": 6, - "all": 3, - "works": 1, - "correctly": 1, - "after": 1, - "break": 58, - "loop": 1, - "y=": 1, - "figures": 1, - "what": 1, - "index": 11, - "should": 25, - "characterSprite": 1, - "sets": 1, - "previous": 2, - "previously": 1, - "statePrevPrev": 1, - "statePrev": 2, - "calculates": 1, - "image_speed": 9, - "based": 1, - "on": 4, - "s": 6, - "velocity": 1, - "runAnimSpeed": 1, - "0": 21, - "1": 32, - "sqrt": 1, - "sqr": 2, - "climbAnimSpeed": 1, - "<=>": 3, - "4": 2, - "setCollisionBounds": 3, - "8": 9, - "5": 5, - "DUCKTOHANG": 1, - "image_index": 1, - "limit": 5, - "at": 23, - "animation": 1, - "always": 1, - "looks": 1, - "good": 1, - "var": 79, - "i": 95, - "playerObject": 1, - "playerID": 1, - "player": 36, - "otherPlayerID": 1, - "otherPlayer": 1, - "sameVersion": 1, - "buffer": 1, - "plugins": 4, - "pluginsRequired": 2, - "usePlugins": 1, - "tcp_eof": 3, - "global.serverSocket": 10, - "gotServerHello": 2, - "show_message": 7, - "instance_destroy": 7, - "exit": 10, - "room": 1, - "DownloadRoom": 1, - "keyboard_check": 1, - "vk_escape": 1, - "downloadingMap": 2, - "while": 15, - "tcp_receive": 3, - "min": 4, - "downloadMapBytes": 2, - "buffer_size": 2, - "downloadMapBuffer": 6, - "write_buffer": 2, - "write_buffer_to_file": 1, - "downloadMapName": 3, - "buffer_destroy": 8, - "roomchange": 2, - "do": 1, - "switch": 9, - "read_ubyte": 10, - "case": 50, - "HELLO": 1, - "global.joinedServerName": 2, - "receivestring": 4, - "advertisedMapMd5": 1, - "receiveCompleteMessage": 1, - "global.tempBuffer": 3, - "string_pos": 20, - "Server": 3, - "sent": 7, - "illegal": 2, - "map": 47, - "This": 2, - "server": 10, - "requires": 1, - "following": 2, - "play": 2, - "#": 3, - "suggests": 1, - "optional": 1, - "Error": 2, - "ocurred": 1, - "loading": 1, - "plugins.": 1, - "Maps/": 2, - ".png": 2, - "The": 6, - "version": 4, - "Enter": 1, - "Password": 1, - "Incorrect": 1, - "Password.": 1, - "Incompatible": 1, - "protocol": 3, - "version.": 1, - "Name": 1, - "Exploit": 1, - "Invalid": 2, - "plugin": 6, - "packet": 3, - "ID": 2, - "There": 1, - "are": 1, - "many": 1, - "connections": 1, - "from": 5, - "your": 1, - "IP": 1, - "You": 1, - "have": 2, - "been": 1, - "kicked": 1, - "server.": 1, - ".": 12, - "#Server": 1, - "went": 1, - "invalid": 1, - "internal": 1, - "#Exiting.": 1, - "full.": 1, - "noone": 7, - "ERROR": 1, - "when": 1, - "reading": 1, - "no": 1, - "such": 1, - "unexpected": 1, - "data.": 1, - "until": 1, - "downloadHandle": 3, - "url": 62, - "tmpfile": 3, - "window_oldshowborder": 2, - "window_oldfullscreen": 2, - "timeLeft": 1, - "counter": 1, - "AudioControlPlaySong": 1, - "window_get_showborder": 1, - "window_get_fullscreen": 1, - "window_set_fullscreen": 2, - "window_set_showborder": 1, - "global.updaterBetaChannel": 3, - "UPDATE_SOURCE_BETA": 1, - "UPDATE_SOURCE": 1, - "temp_directory": 1, - "httpGet": 1, - "httpRequestStatus": 1, - "download": 1, - "isn": 1, - "extract": 1, - "downloaded": 1, - "file": 2, - "now.": 1, - "extractzip": 1, - "working_directory": 6, - "execute_program": 1, - "game_end": 1, - "victim": 10, - "killer": 11, - "assistant": 16, - "damageSource": 18, - "argument0": 28, - "argument1": 10, - "argument2": 3, - "argument3": 1, - "//*************************************": 6, - "//*": 3, - "Scoring": 1, - "Kill": 1, - "log": 1, - "recordKillInLog": 1, - "victim.stats": 1, - "DEATHS": 1, - "WEAPON_KNIFE": 1, - "||": 16, - "WEAPON_BACKSTAB": 1, - "killer.stats": 8, - "STABS": 2, - "killer.roundStats": 8, - "POINTS": 10, - "victim.object.currentWeapon.object_index": 1, - "Medigun": 2, - "victim.object.currentWeapon.uberReady": 1, - "BONUS": 2, - "KILLS": 2, - "victim.object.intel": 1, - "DEFENSES": 2, - "recordEventInLog": 1, - "killer.team": 1, - "killer.name": 2, - "global.myself": 4, - "assistant.stats": 2, - "ASSISTS": 2, - "assistant.roundStats": 2, - ".5": 2, - "//SPEC": 1, - "instance_create": 20, - "victim.object.x": 3, - "victim.object.y": 3, - "Spectator": 1, - "Gibbing": 2, - "xoffset": 5, - "yoffset": 5, - "xsize": 3, - "ysize": 3, - "view_xview": 3, - "view_yview": 3, - "view_wview": 2, - "view_hview": 2, - "randomize": 1, - "with": 47, - "victim.object": 2, - "WEAPON_ROCKETLAUNCHER": 1, - "WEAPON_MINEGUN": 1, - "FRAG_BOX": 2, - "WEAPON_REFLECTED_STICKY": 1, - "WEAPON_REFLECTED_ROCKET": 1, - "FINISHED_OFF_GIB": 2, - "GENERATOR_EXPLOSION": 2, - "player.class": 15, - "CLASS_QUOTE": 3, - "global.gibLevel": 14, - "distance_to_point": 3, - "xsize/2": 2, - "ysize/2": 2, - "hasReward": 4, - "repeat": 7, - "createGib": 14, - "PumpkinGib": 1, - "hspeed": 14, - "vspeed": 13, - "random": 21, - "choose": 8, - "Gib": 1, - "player.team": 8, - "TEAM_BLUE": 6, - "BlueClump": 1, - "TEAM_RED": 8, - "RedClump": 1, - "blood": 2, - "BloodDrop": 1, - "blood.hspeed": 1, - "blood.vspeed": 1, - "blood.sprite_index": 1, - "PumpkinJuiceS": 1, - "//All": 1, - "Classes": 1, - "gib": 1, - "head": 1, - "hands": 2, - "feet": 1, - "Headgib": 1, - "//Medic": 1, - "has": 2, - "specially": 1, - "colored": 1, - "CLASS_MEDIC": 2, - "Hand": 3, - "Feet": 1, - "//Class": 1, - "specific": 1, - "gibs": 1, - "CLASS_PYRO": 2, - "Accesory": 5, - "CLASS_SOLDIER": 2, - "CLASS_ENGINEER": 3, - "CLASS_SNIPER": 3, - "playsound": 2, - "deadbody": 2, - "DeathSnd1": 1, - "DeathSnd2": 1, - "DeadGuy": 1, - "deadbody.sprite_index": 2, - "haxxyStatue": 1, - "deadbody.image_index": 2, - "CHARACTER_ANIMATION_DEAD": 1, - "deadbody.hspeed": 1, - "deadbody.vspeed": 1, - "deadbody.image_xscale": 1, - "global.gg_birthday": 1, - "myHat": 2, - "PartyHat": 1, - "myHat.image_index": 2, - "victim.team": 2, - "global.xmas": 1, - "XmasHat": 1, - "Deathcam": 1, - "global.killCam": 3, - "KILL_BOX": 1, - "FINISHED_OFF": 5, - "DeathCam": 1, - "DeathCam.killedby": 1, - "DeathCam.name": 1, - "DeathCam.oldxview": 1, - "DeathCam.oldyview": 1, - "DeathCam.lastDamageSource": 1, - "DeathCam.team": 1, - "global.myself.team": 3, - "xr": 19, - "yr": 19, - "cloakAlpha": 1, - "team": 13, - "canCloak": 1, - "cloakAlpha/2": 1, - "invisible": 1, - "stabbing": 2, - "power": 1, - "currentWeapon.stab.alpha": 1, - "&&": 6, - "global.showHealthBar": 3, - "draw_set_alpha": 3, - "draw_healthbar": 1, - "hp*100/maxHp": 1, - "c_black": 1, - "c_red": 3, - "c_green": 1, - "mouse_x": 1, - "mouse_y": 1, - "<25)>": 1, - "cloak": 2, - "global": 8, - "myself": 2, - "draw_set_halign": 1, - "fa_center": 1, - "draw_set_valign": 1, - "fa_bottom": 1, - "team=": 1, - "draw_set_color": 2, - "c_blue": 2, - "draw_text": 4, - "35": 1, - "showTeammateStats": 1, - "weapons": 3, - "50": 3, - "Superburst": 1, - "string": 13, - "currentWeapon": 2, - "uberCharge": 1, - "20": 1, - "Shotgun": 1, - "Nuts": 1, - "N": 1, - "Bolts": 1, - "nutsNBolts": 1, - "Minegun": 1, - "Lobbed": 1, - "Mines": 1, - "lobbed": 1, - "ubercolour": 6, - "overlaySprite": 6, - "zoomed": 1, - "SniperCrouchRedS": 1, - "SniperCrouchBlueS": 1, - "sniperCrouchOverlay": 1, - "overlay": 1, - "omnomnomnom": 2, - "draw_sprite_ext_overlay": 7, - "omnomnomnomSprite": 2, - "omnomnomnomOverlay": 2, - "omnomnomnomindex": 4, - "c_white": 13, - "ubered": 7, - "7": 4, - "taunting": 2, - "tauntsprite": 2, - "tauntOverlay": 2, - "tauntindex": 2, - "humiliated": 1, - "humiliationPoses": 1, - "animationImage": 9, - "humiliationOffset": 1, - "animationOffset": 6, - "burnDuration": 2, - "burnIntensity": 2, - "numFlames": 1, - "maxIntensity": 1, - "FlameS": 1, - "flameArray_x": 1, - "flameArray_y": 1, - "maxDuration": 1, - "demon": 4, - "demonX": 5, - "median": 2, - "demonY": 4, - "demonOffset": 4, - "demonDir": 2, - "dir": 3, - "demonFrame": 5, - "sprite_get_number": 1, - "*player.team": 2, - "dir*1": 2, - "#define": 26, - "__http_init": 3, - "global.__HttpClient": 4, - "object_add": 1, - "object_set_persistent": 1, - "__http_split": 3, - "text": 19, - "delimeter": 7, - "list": 36, - "count": 4, - "ds_list_create": 5, - "ds_list_add": 23, - "string_copy": 32, - "string_length": 25, - "return": 56, - "__http_parse_url": 4, - "ds_map_create": 4, - "ds_map_add": 15, - "colonPos": 22, - "string_char_at": 13, - "slashPos": 13, - "real": 14, - "queryPos": 12, - "ds_map_destroy": 6, - "__http_resolve_url": 2, - "baseUrl": 3, - "refUrl": 18, - "urlParts": 15, - "refUrlParts": 5, - "canParseRefUrl": 3, - "result": 11, - "ds_map_find_value": 22, - "__http_resolve_path": 3, - "ds_map_replace": 3, - "ds_map_exists": 11, - "ds_map_delete": 1, - "path": 10, - "query": 4, - "relUrl": 1, - "__http_construct_url": 2, - "basePath": 4, - "refPath": 7, - "parts": 29, - "refParts": 5, - "lastPart": 3, - "ds_list_find_value": 9, - "ds_list_size": 11, - "ds_list_delete": 5, - "ds_list_destroy": 4, - "part": 6, - "ds_list_replace": 3, - "__http_parse_hex": 2, - "hexString": 4, - "hexValues": 3, - "digit": 4, - "__http_prepare_request": 4, - "client": 33, - "headers": 11, - "parsed": 18, - "show_error": 2, - "destroyed": 3, - "CR": 10, - "chr": 3, - "LF": 5, - "CRLF": 17, - "socket": 40, - "tcp_connect": 1, - "errored": 19, - "error": 18, - "linebuf": 33, - "line": 19, - "statusCode": 6, - "reasonPhrase": 2, - "responseBody": 19, - "buffer_create": 7, - "responseBodySize": 5, - "responseBodyProgress": 5, - "responseHeaders": 9, - "requestUrl": 2, - "requestHeaders": 2, - "write_string": 9, - "key": 17, - "ds_map_find_first": 1, - "is_string": 2, - "ds_map_find_next": 1, - "socket_send": 1, - "__http_parse_header": 3, - "ord": 16, - "headerValue": 9, - "string_lower": 3, - "headerName": 4, - "__http_client_step": 2, - "socket_has_error": 1, - "socket_error": 1, - "__http_client_destroy": 20, - "available": 7, - "tcp_receive_available": 1, - "bytesRead": 6, - "c": 20, - "read_string": 9, - "Reached": 2, - "end": 11, - "HTTP": 1, - "defines": 1, - "sequence": 2, - "as": 1, - "marker": 1, - "elements": 1, - "except": 2, - "entity": 1, - "body": 2, - "see": 1, - "appendix": 1, - "19": 1, - "3": 1, - "tolerant": 1, - "applications": 1, - "Strip": 1, - "trailing": 1, - "First": 1, - "status": 2, - "code": 2, - "first": 3, - "Response": 1, - "message": 1, - "Status": 1, - "Line": 1, - "consisting": 1, - "followed": 1, - "by": 5, - "numeric": 1, - "its": 1, - "associated": 1, - "textual": 1, - "phrase": 1, - "each": 18, - "element": 8, - "separated": 1, - "SP": 1, - "characters": 3, - "No": 3, - "allowed": 1, - "in": 21, - "final": 1, - "httpVer": 2, - "spacePos": 11, - "space": 4, - "response": 5, - "second": 2, - "Other": 1, - "Blank": 1, - "write": 1, - "remainder": 1, - "write_buffer_part": 3, - "Header": 1, - "Receiving": 1, - "transfer": 6, - "encoding": 2, - "chunked": 4, - "Chunked": 1, - "let": 1, - "decode": 36, - "actualResponseBody": 8, - "actualResponseSize": 1, - "actualResponseBodySize": 3, - "Parse": 1, - "chunks": 1, - "chunk": 12, - "size": 7, - "extension": 3, - "data": 4, - "HEX": 1, - "buffer_bytes_left": 6, - "chunkSize": 11, - "Read": 1, - "byte": 2, - "We": 1, - "found": 21, - "semicolon": 1, - "beginning": 1, - "skip": 1, - "stuff": 2, - "header": 2, - "Doesn": 1, - "did": 1, - "empty": 13, - "something": 1, - "up": 6, - "Parsing": 1, - "failed": 56, - "hex": 2, - "was": 1, - "hexadecimal": 1, - "Is": 1, - "bigger": 2, - "than": 1, - "remaining": 1, - "2": 2, - "responseHaders": 1, - "location": 4, - "resolved": 5, - "socket_destroy": 4, - "http_new_get": 1, - "variable_global_exists": 2, - "http_new_get_ex": 1, - "http_step": 1, - "client.errored": 3, - "client.state": 3, - "http_status_code": 1, - "client.statusCode": 1, - "http_reason_phrase": 1, - "client.error": 1, - "client.reasonPhrase": 1, - "http_response_body": 1, - "client.responseBody": 1, - "http_response_body_size": 1, - "client.responseBodySize": 1, - "http_response_body_progress": 1, - "client.responseBodyProgress": 1, - "http_response_headers": 1, - "client.responseHeaders": 1, - "http_destroy": 1, - "RoomChangeObserver": 1, - "set_little_endian_global": 1, - "file_exists": 5, - "file_delete": 3, - "backupFilename": 5, - "file_find_first": 1, - "file_find_next": 1, - "file_find_close": 1, - "customMapRotationFile": 7, - "restart": 4, - "//import": 1, - "wav": 1, - "files": 1, - "music": 1, - "global.MenuMusic": 3, - "sound_add": 3, - "global.IngameMusic": 3, - "global.FaucetMusic": 3, - "sound_volume": 3, - "global.sendBuffer": 19, - "global.HudCheck": 1, - "global.map_rotation": 19, - "global.CustomMapCollisionSprite": 1, - "window_set_region_scale": 1, - "ini_open": 2, - "global.playerName": 7, - "ini_read_string": 12, - "string_count": 2, - "MAX_PLAYERNAME_LENGTH": 2, - "global.fullscreen": 3, - "ini_read_real": 65, - "global.useLobbyServer": 2, - "global.hostingPort": 2, - "global.music": 2, - "MUSIC_BOTH": 1, - "global.playerLimit": 4, - "//thy": 1, - "playerlimit": 1, - "shalt": 1, - "exceed": 1, - "global.dedicatedMode": 7, - "ini_write_real": 60, - "global.multiClientLimit": 2, - "global.particles": 2, - "PARTICLES_NORMAL": 1, - "global.monitorSync": 3, - "set_synchronization": 2, - "global.medicRadar": 2, - "global.showHealer": 2, - "global.showHealing": 2, - "global.showTeammateStats": 2, - "global.serverPluginsPrompt": 2, - "global.restartPrompt": 2, - "//user": 1, - "HUD": 1, - "settings": 1, - "global.timerPos": 2, - "global.killLogPos": 2, - "global.kothHudPos": 2, - "global.clientPassword": 1, - "global.shuffleRotation": 2, - "global.timeLimitMins": 2, - "max": 2, - "global.serverPassword": 2, - "global.mapRotationFile": 1, - "global.serverName": 2, - "global.welcomeMessage": 2, - "global.caplimit": 3, - "global.caplimitBkup": 1, - "global.autobalance": 2, - "global.Server_RespawntimeSec": 4, - "global.rewardKey": 1, - "unhex": 1, - "global.rewardId": 1, - "global.mapdownloadLimitBps": 2, - "isBetaVersion": 1, - "global.attemptPortForward": 2, - "global.serverPluginList": 3, - "global.serverPluginsRequired": 2, - "CrosshairFilename": 5, - "CrosshairRemoveBG": 4, - "global.queueJumping": 2, - "global.backgroundHash": 2, - "global.backgroundTitle": 2, - "global.backgroundURL": 2, - "global.backgroundShowVersion": 2, - "readClasslimitsFromIni": 1, - "global.currentMapArea": 1, - "global.totalMapAreas": 1, - "global.setupTimer": 1, - "global.serverPluginsInUse": 1, - "global.pluginPacketBuffers": 1, - "global.pluginPacketPlayers": 1, - "ini_write_string": 10, - "ini_key_delete": 1, - "global.classlimits": 10, - "CLASS_SCOUT": 1, - "CLASS_HEAVY": 2, - "CLASS_DEMOMAN": 1, - "CLASS_SPY": 1, - "//screw": 1, - "will": 1, - "start": 1, - "//map_truefort": 1, - "maps": 37, - "//map_2dfort": 1, - "//map_conflict": 1, - "//map_classicwell": 1, - "//map_waterway": 1, - "//map_orange": 1, - "//map_dirtbowl": 1, - "//map_egypt": 1, - "//arena_montane": 1, - "//arena_lumberyard": 1, - "//gen_destroy": 1, - "//koth_valley": 1, - "//koth_corinth": 1, - "//koth_harvest": 1, - "//dkoth_atalia": 1, - "//dkoth_sixties": 1, - "//Server": 1, - "respawn": 1, - "time": 1, - "calculator.": 1, - "Converts": 1, - "frame.": 1, - "read": 1, - "multiply": 1, - "hehe": 1, - "global.Server_Respawntime": 3, - "global.mapchanging": 1, - "ini_close": 2, - "global.protocolUuid": 2, - "parseUuid": 2, - "PROTOCOL_UUID": 1, - "global.gg2lobbyId": 2, - "GG2_LOBBY_UUID": 1, - "initRewards": 1, - "IPRaw": 3, - "portRaw": 3, - "doubleCheck": 8, - "global.launchMap": 5, - "parameter_count": 1, - "parameter_string": 8, - "global.serverPort": 1, - "global.serverIP": 1, - "global.isHost": 1, - "Client": 1, - "global.customMapdesginated": 2, - "fileHandle": 6, - "mapname": 9, - "file_text_open_read": 1, - "file_text_eof": 1, - "file_text_read_string": 1, - "starts": 1, - "tab": 2, - "string_delete": 1, - "delete": 1, - "comment": 1, - "starting": 1, - "file_text_readln": 1, - "file_text_close": 1, - "load": 1, - "ini": 1, - "Maps": 9, - "section": 1, - "//Set": 1, - "rotation": 1, - "sort_list": 7, - "*maps": 1, - "ds_list_sort": 1, - "mod": 1, - "global.gg2Font": 2, - "font_add_sprite": 2, - "gg2FontS": 1, - "global.countFont": 1, - "countFontS": 1, - "draw_set_font": 1, - "cursor_sprite": 1, - "CrosshairS": 5, - "directory_exists": 2, - "directory_create": 2, - "AudioControl": 1, - "SSControl": 1, - "message_background": 1, - "popupBackgroundB": 1, - "message_button": 1, - "popupButtonS": 1, - "message_text_font": 1, - "message_button_font": 1, - "message_input_font": 1, - "//Key": 1, - "Mapping": 1, - "global.jump": 1, - "global.down": 1, - "global.left": 1, - "global.right": 1, - "global.attack": 1, - "MOUSE_LEFT": 1, - "global.special": 1, - "MOUSE_RIGHT": 1, - "global.taunt": 1, - "global.chat1": 1, - "global.chat2": 1, - "global.chat3": 1, - "global.medic": 1, - "global.drop": 1, - "global.changeTeam": 1, - "global.changeClass": 1, - "global.showScores": 1, - "vk_shift": 1, - "calculateMonthAndDay": 1, - "loadplugins": 1, - "registry_set_root": 1, - "HKLM": 1, - "global.NTKernelVersion": 1, - "registry_read_string_ext": 1, - "CurrentVersion": 1, - "SIC": 1, - "sprite_replace": 1, - "sprite_set_offset": 1, - "sprite_get_width": 1, - "/2": 2, - "sprite_get_height": 1, - "AudioControlToggleMute": 1, - "room_goto_fix": 2, - "Menu": 2, - "__jso_gmt_tuple": 1, - "//Position": 1, - "address": 1, - "table": 1, - "pos": 2, - "addr_table": 2, - "*argument_count": 1, - "//Build": 1, - "tuple": 1, - "ca": 1, - "isstr": 1, - "datastr": 1, - "argument_count": 1, - "//Check": 1, - "argument": 10, - "Unexpected": 18, - "position": 16, - "f": 5, - "JSON": 5, - "string.": 5, - "Cannot": 5, - "parse": 3, - "boolean": 3, - "value": 13, - "expecting": 9, - "digit.": 9, - "e": 4, - "E": 4, - "dot": 1, - "an": 24, - "integer": 6, - "Expected": 6, - "least": 6, - "arguments": 26, - "got": 6, - "find": 10, - "lookup.": 4, - "indices": 1, - "nested": 27, - "lists": 6, - "Index": 1, - "overflow": 4, - "Recursive": 1, - "abcdef": 1, - "number": 7, - "num": 1, - "assert_true": 1, - "_assert_error_popup": 2, - "string_repeat": 2, - "_assert_newline": 2, - "assert_false": 1, - "assert_equal": 1, - "//Safe": 1, - "equality": 1, - "check": 1, - "won": 1, - "support": 1, - "instead": 1, - "_assert_debug_value": 1, - "//String": 1, - "os_browser": 1, - "browser_not_a_browser": 1, - "string_replace_all": 1, - "//Numeric": 1, - "GMTuple": 1, - "jso_encode_string": 1, - "encode": 8, - "escape": 2, - "jso_encode_map": 4, - "one": 42, - "key1": 3, - "key2": 3, - "multi": 7, - "jso_encode_list": 3, - "three": 36, - "_jso_decode_string": 5, - "small": 1, - "quick": 2, - "brown": 2, - "fox": 2, - "over": 2, - "lazy": 2, - "dog.": 2, - "simple": 1, - "Waahoo": 1, - "negg": 1, - "mixed": 1, - "_jso_decode_boolean": 2, - "_jso_decode_real": 11, - "standard": 1, - "zero": 4, - "signed": 2, - "decimal": 1, - "digits": 1, - "positive": 7, - "negative": 7, - "exponent": 4, - "_jso_decode_integer": 3, - "_jso_decode_map": 14, - "didn": 14, - "include": 14, - "right": 14, - "prefix": 14, - "#1": 14, - "#2": 14, - "entry": 29, - "pi": 2, - "bool": 2, - "waahoo": 10, - "woohah": 8, - "mix": 4, - "_jso_decode_list": 14, - "woo": 2, - "Empty": 4, - "equal": 20, - "other.": 12, - "junk": 2, - "info": 1, - "taxi": 1, - "An": 4, - "filled": 4, - "map.": 2, - "A": 24, - "B": 18, - "C": 8, - "same": 6, - "content": 4, - "entered": 4, - "different": 12, - "orders": 4, - "D": 1, - "keys": 2, - "values": 4, - "six": 1, - "corresponding": 4, - "types": 4, - "other": 4, - "crash.": 4, - "list.": 2, - "Lists": 4, - "two": 16, - "entries": 2, - "also": 2, - "jso_map_check": 9, - "existing": 9, - "single": 11, - "jso_map_lookup": 3, - "wrong": 10, - "trap": 2, - "jso_map_lookup_type": 3, - "type": 8, - "four": 21, - "inexistent": 11, - "multiple": 20, - "jso_list_check": 8, - "jso_list_lookup": 3, - "jso_list_lookup_type": 3, - "inner": 1, - "indexing": 1, - "bad": 1, - "jso_cleanup_map": 1, - "one_map": 1, - "hashList": 5, - "pluginname": 9, - "pluginhash": 4, - "realhash": 1, - "handle": 1, - "filesize": 1, - "progress": 1, - "tempfile": 1, - "tempdir": 1, - "lastContact": 2, - "isCached": 2, - "isDebug": 2, - "split": 1, - "checkpluginname": 1, - "ds_list_find_index": 1, - ".zip": 3, - "ServerPluginsCache": 6, - "@": 5, - ".zip.tmp": 1, - ".tmp": 2, - "ServerPluginsDebug": 1, - "Warning": 2, - "being": 2, - "loaded": 2, - "ServerPluginsDebug.": 2, - "Make": 2, - "sure": 2, - "clients": 1, - "they": 1, - "may": 2, - "unable": 2, - "connect.": 2, - "you": 1, - "Downloading": 1, - "last_plugin.log": 2, - "plugin.gml": 1, - "playerId": 11, - "commandLimitRemaining": 4, - "variable_local_exists": 4, - "commandReceiveState": 1, - "commandReceiveExpectedBytes": 1, - "commandReceiveCommand": 1, - "player.socket": 12, - "player.commandReceiveExpectedBytes": 7, - "player.commandReceiveState": 7, - "player.commandReceiveCommand": 4, - "commandBytes": 2, - "commandBytesInvalidCommand": 1, - "commandBytesPrefixLength1": 1, - "commandBytesPrefixLength2": 1, - "default": 1, - "read_ushort": 2, - "PLAYER_LEAVE": 1, - "PLAYER_CHANGECLASS": 1, - "class": 8, - "getCharacterObject": 2, - "player.object": 12, - "SpawnRoom": 2, - "lastDamageDealer": 8, - "sendEventPlayerDeath": 4, - "BID_FAREWELL": 4, - "doEventPlayerDeath": 4, - "secondToLastDamageDealer": 2, - "lastDamageDealer.object": 2, - "lastDamageDealer.object.healer": 4, - "player.alarm": 4, - "<=0)>": 1, - "checkClasslimits": 2, - "ServerPlayerChangeclass": 2, - "sendBuffer": 1, - "PLAYER_CHANGETEAM": 1, - "newTeam": 7, - "balance": 5, - "redSuperiority": 6, - "calculate": 1, - "which": 1, - "Player": 1, - "TEAM_SPECTATOR": 1, - "newClass": 4, - "ServerPlayerChangeteam": 1, - "ServerBalanceTeams": 1, - "CHAT_BUBBLE": 2, - "bubbleImage": 5, - "global.aFirst": 1, - "write_ubyte": 20, - "setChatBubble": 1, - "BUILD_SENTRY": 2, - "collision_circle": 1, - "player.object.x": 3, - "player.object.y": 3, - "Sentry": 1, - "player.object.nutsNBolts": 1, - "player.sentry": 2, - "player.object.onCabinet": 1, - "write_ushort": 2, - "global.serializeBuffer": 3, - "player.object.x*5": 1, - "player.object.y*5": 1, - "write_byte": 1, - "player.object.image_xscale": 2, - "buildSentry": 1, - "DESTROY_SENTRY": 1, - "DROP_INTEL": 1, - "player.object.intel": 1, - "sendEventDropIntel": 1, - "doEventDropIntel": 1, - "OMNOMNOMNOM": 2, - "player.humiliated": 1, - "player.object.taunting": 1, - "player.object.omnomnomnom": 1, - "player.object.canEat": 1, - "omnomnomnomend": 2, - "xscale": 1, - "TOGGLE_ZOOM": 2, - "toggleZoom": 1, - "PLAYER_CHANGENAME": 2, - "nameLength": 4, - "socket_receivebuffer_size": 3, - "KICK": 2, - "KICK_NAME": 1, - "current_time": 2, - "lastNamechange": 2, - "INPUTSTATE": 1, - "keyState": 1, - "netAimDirection": 1, - "aimDirection": 1, - "netAimDirection*360/65536": 1, - "event_user": 1, - "REWARD_REQUEST": 1, - "player.rewardId": 1, - "player.challenge": 2, - "rewardCreateChallenge": 1, - "REWARD_CHALLENGE_CODE": 1, - "write_binstring": 1, - "REWARD_CHALLENGE_RESPONSE": 1, - "answer": 3, - "authbuffer": 1, - "read_binstring": 1, - "rewardAuthStart": 1, - "challenge": 1, - "rewardId": 1, - "PLUGIN_PACKET": 1, - "packetID": 3, - "buf": 5, - "success": 3, - "_PluginPacketPush": 1, - "KICK_BAD_PLUGIN_PACKET": 1, - "CLIENT_SETTINGS": 2, - "mirror": 4, - "player.queueJump": 1, - "global.levelType": 22, - "//global.currLevel": 1, - "global.currLevel": 22, - "global.hadDarkLevel": 4, - "global.startRoomX": 1, - "global.startRoomY": 1, - "global.endRoomX": 1, - "global.endRoomY": 1, - "oGame.levelGen": 2, - "j": 14, - "global.roomPath": 1, - "k": 5, - "global.lake": 3, - "isLevel": 1, - "999": 2, - "levelType": 2, - "16": 14, - "656": 3, - "oDark": 2, - "invincible": 2, - "sDark": 1, - "oTemple": 2, - "cityOfGold": 1, - "sTemple": 2, - "lake": 1, - "i*16": 8, - "j*16": 6, - "oLush": 2, - "obj.sprite_index": 4, - "sLush": 2, - "obj.invincible": 3, - "oBrick": 1, - "sBrick": 1, - "global.cityOfGold": 2, - "*16": 2, - "//instance_create": 2, - "oSpikes": 1, - "background_index": 1, - "bgTemple": 1, - "global.temp1": 1, - "global.gameStart": 3, - "scrLevelGen": 1, - "global.cemetary": 3, - "rand": 10, - "global.probCemetary": 1, - "oRoom": 1, - "scrRoomGen": 1, - "global.blackMarket": 3, - "scrRoomGenMarket": 1, - "scrRoomGen2": 1, - "global.yetiLair": 2, - "scrRoomGenYeti": 1, - "scrRoomGen3": 1, - "scrRoomGen4": 1, - "scrRoomGen5": 1, - "global.darkLevel": 4, - "global.noDarkLevel": 1, - "global.probDarkLevel": 1, - "oPlayer1.x": 2, - "oPlayer1.y": 2, - "oFlare": 1, - "global.genUdjatEye": 4, - "global.madeUdjatEye": 1, - "global.genMarketEntrance": 4, - "global.madeMarketEntrance": 1, - "////////////////////////////": 2, - "global.temp2": 1, - "isRoom": 3, - "scrEntityGen": 1, - "oEntrance": 1, - "global.customLevel": 1, - "oEntrance.x": 1, - "oEntrance.y": 1, - "global.snakePit": 1, - "global.alienCraft": 1, - "global.sacrificePit": 1, - "oPlayer1": 1, - "scrSetupWalls": 3, - "global.graphicsHigh": 1, - "tile_add": 4, - "bgExtrasLush": 1, - "*rand": 12, - "bgExtrasIce": 1, - "bgExtrasTemple": 1, - "bgExtras": 1, - "global.murderer": 1, - "global.thiefLevel": 1, - "isRealLevel": 1, - "oExit": 1, - "oShopkeeper": 1, - "obj.status": 1, - "oTreasure": 1, - "oWater": 1, - "sWaterTop": 1, - "sLavaTop": 1, - "scrCheckWaterTop": 1, - "global.temp3": 1 - }, - "GAMS": { - "*Basic": 1, - "example": 2, - "of": 7, - "transport": 5, - "model": 6, - "from": 2, - "GAMS": 5, - "library": 3, - "Title": 1, - "A": 3, - "Transportation": 1, - "Problem": 1, - "(": 22, - "TRNSPORT": 1, - "SEQ": 1, - ")": 22, - "Ontext": 1, - "This": 2, - "problem": 1, - "finds": 1, - "a": 3, - "least": 1, - "cost": 4, - "shipping": 1, - "schedule": 1, - "that": 1, - "meets": 1, - "requirements": 1, - "at": 5, - "markets": 2, - "and": 2, - "supplies": 1, - "factories.": 1, - "Dantzig": 1, - "G": 1, - "B": 1, - "Chapter": 2, - "In": 2, - "Linear": 1, - "Programming": 1, - "Extensions.": 1, - "Princeton": 2, - "University": 1, - "Press": 2, - "New": 1, - "Jersey": 1, - "formulation": 1, - "is": 1, - "described": 1, - "in": 10, - "detail": 1, - "Rosenthal": 1, - "R": 1, - "E": 1, - "Tutorial.": 1, - "User": 1, - "s": 1, - "Guide.": 1, - "The": 2, - "Scientific": 1, - "Redwood": 1, - "City": 1, - "California": 1, - "line": 1, - "numbers": 1, - "will": 1, - "not": 1, - "match": 1, - "those": 1, - "the": 1, - "book": 1, - "because": 1, - "these": 1, - "comments.": 1, - "Offtext": 1, - "Sets": 1, - "i": 18, - "canning": 1, - "plants": 1, - "/": 9, - "seattle": 3, - "san": 3, - "-": 6, - "diego": 3, - "j": 18, - "new": 3, - "york": 3, - "chicago": 3, - "topeka": 3, - ";": 15, - "Parameters": 1, - "capacity": 1, - "plant": 2, - "cases": 3, - "b": 2, - "demand": 4, - "market": 2, - "Table": 1, - "d": 2, - "distance": 1, - "thousands": 3, - "miles": 2, - "Scalar": 1, - "f": 2, - "freight": 1, - "dollars": 3, - "per": 3, - "case": 2, - "thousand": 1, - "/90/": 1, - "Parameter": 1, - "c": 3, - "*": 1, - "Variables": 1, - "x": 4, - "shipment": 1, - "quantities": 1, - "z": 3, - "total": 1, - "transportation": 1, - "costs": 1, - "Positive": 1, - "Variable": 1, - "Equations": 1, - "define": 1, - "objective": 1, - "function": 1, - "supply": 3, - "observe": 1, - "limit": 1, - "satisfy": 1, - "..": 3, - "e": 1, - "sum": 3, - "*x": 1, - "l": 1, - "g": 1, - "Model": 1, - "/all/": 1, - "Solve": 1, - "using": 1, - "lp": 1, - "minimizing": 1, - "Display": 1, - "x.l": 1, - "x.m": 1, - "ontext": 1, - "#user": 1, - "stuff": 1, - "Main": 1, - "topic": 1, - "Basic": 2, - "Featured": 4, - "item": 4, - "Trnsport": 1, - "Description": 1, - "offtext": 1 - }, - "GAP": { - "#############################################################################": 63, - "##": 766, - "#W": 4, - "example.gd": 2, - "This": 10, - "file": 7, - "contains": 7, - "a": 113, - "sample": 2, - "of": 114, - "GAP": 15, - "declaration": 1, - "file.": 3, - "DeclareProperty": 2, - "(": 721, - "IsLeftModule": 6, - ")": 722, - ";": 569, - "DeclareGlobalFunction": 5, - "#C": 7, - "IsQuuxFrobnicator": 1, - "": 3, - "": 28, - "": 7, - "Name=": 33, - "Arg=": 33, - "Type=": 7, - "": 28, - "Tests": 1, - "whether": 5, - "R": 5, - "is": 72, - "quux": 1, - "frobnicator.": 1, - "": 28, - "": 28, - "DeclareSynonym": 17, - "IsField": 1, - "and": 102, - "IsGroup": 1, - "implementation": 1, - "#M": 20, - "SomeOperation": 1, - "": 2, - "performs": 1, - "some": 2, - "operation": 1, - "on": 5, - "InstallMethod": 18, - "SomeProperty": 1, - "[": 145, - "]": 169, - "function": 37, - "M": 7, - "if": 103, - "IsFreeLeftModule": 3, - "not": 49, - "IsTrivial": 1, - "then": 128, - "return": 41, - "true": 21, - "fi": 91, - "TryNextMethod": 7, - "end": 34, - "#F": 17, - "SomeGlobalFunction": 2, - "A": 9, - "global": 1, - "variadic": 1, - "funfion.": 1, - "InstallGlobalFunction": 5, - "arg": 16, - "Length": 14, - "+": 9, - "*": 12, - "elif": 21, - "-": 67, - "else": 25, - "Error": 7, - "#": 73, - "SomeFunc": 1, - "x": 14, - "y": 8, - "local": 16, - "z": 3, - "func": 3, - "tmp": 20, - "j": 3, - "mod": 2, - "List": 6, - "while": 5, - "do": 18, - "for": 53, - "in": 64, - "Print": 24, - "od": 15, - "repeat": 1, - "until": 1, - "<": 17, - "Magic.gd": 1, - "AutoDoc": 4, - "package": 10, - "Copyright": 6, - "Max": 2, - "Horn": 2, - "JLU": 2, - "Giessen": 2, - "Sebastian": 2, - "Gutsche": 2, - "University": 4, - "Kaiserslautern": 2, - "SHEBANG#!#! @Description": 1, - "SHEBANG#!#! This": 1, - "SHEBANG#!#! any": 1, - "SHEBANG#!#! ": 1, - "SHEBANG#!#! ": 5, - "SHEBANG#!#! It": 3, - "SHEBANG#!#! That": 1, - "SHEBANG#!#! of": 1, - "SHEBANG#!#! (with": 1, - "SHEBANG#!#! main": 1, - "SHEBANG#!#! XML": 1, - "SHEBANG#!#! other": 1, - "SHEBANG#!#! as": 1, - "SHEBANG#!#! to": 2, - "SHEBANG#!#! Secondly,": 1, - "SHEBANG#!#! page": 1, - "SHEBANG#!#! (name,": 1, - "SHEBANG#!#! on": 1, - "SHEBANG#!Item>": 25, - "SHEBANG#!#! tags": 1, - "SHEBANG#!#! This": 1, - "SHEBANG#!#! produce": 1, - "SHEBANG#!#! MathJaX": 1, - "SHEBANG#!#! generated": 1, - "SHEBANG#!#! this,": 1, - "SHEBANG#!#! supplementary": 1, - "SHEBANG#!#! (see": 1, - "SHEBANG#!Enum>": 1, - "SHEBANG#!#! For": 1, - "SHEBANG#!>": 11, - "SHEBANG#!#! The": 1, - "SHEBANG#!#! ": 1, - "SHEBANG#!Mark>": 22, - "SHEBANG#!#! The": 2, - "SHEBANG#!A>": 1, - "SHEBANG#!#! ": 1, - "SHEBANG#!#! ": 4, - "SHEBANG#!#! This": 4, - "SHEBANG#!#! Directory()": 1, - "SHEBANG#!#! (i.e.": 1, - "SHEBANG#!#! Default": 1, - "SHEBANG#!#! for": 1, - "SHEBANG#!#! The": 3, - "SHEBANG#!#! record.": 3, - "SHEBANG#!#! equivalent": 3, - "SHEBANG#!#! enabled.": 3, - "SHEBANG#!#! package's": 1, - "SHEBANG#!#! In": 3, - "SHEBANG#!K>),": 3, - "SHEBANG#!#! If": 3, - "####": 34, - "TODO": 3, - "mention": 1, - "merging": 1, - "with": 24, - "PackageInfo.AutoDoc": 1, - "SHEBANG#!#! ": 3, - "SHEBANG#!#! ": 13, - "SHEBANG#!#! A": 6, - "SHEBANG#!#! If": 2, - "SHEBANG#!#! your": 1, - "SHEBANG#!#! you": 1, - "SHEBANG#!#! to": 4, - "SHEBANG#!#! is": 1, - "SHEBANG#!#! of": 2, - "SHEBANG#!#! This": 3, - "SHEBANG#!#! i.e.": 1, - "SHEBANG#!#! The": 2, - "SHEBANG#!#! then": 1, - "The": 21, - "param": 1, - "bit": 2, - "strange.": 1, - "We": 4, - "should": 2, - "probably": 2, - "change": 1, - "it": 8, - "to": 37, - "be": 24, - "more": 3, - "general": 1, - "as": 23, - "one": 11, - "might": 1, - "want": 1, - "define": 2, - "other": 4, - "entities...": 1, - "For": 10, - "now": 1, - "we": 3, - "document": 1, - "leave": 1, - "us": 1, - "the": 136, - "choice": 1, - "revising": 1, - "how": 1, - "works.": 1, - "": 2, - "": 117, - "entities": 2, - "": 117, - "": 2, - "": 2, - "list": 16, - "names": 1, - "or": 13, - "which": 8, - "are": 14, - "used": 10, - "corresponding": 1, - "XML": 4, - "entities.": 1, - "example": 3, - "set": 6, - "containing": 1, - "string": 6, - "": 2, - "SomePackage": 3, - "": 2, - "following": 4, - "added": 1, - "preamble": 1, - "": 2, - "CDATA": 2, - "ENTITY": 2, - "": 2, - "allows": 1, - "you": 3, - "write": 3, - "&": 37, - "amp": 1, - "your": 1, - "documentation": 2, - "reference": 1, - "that": 39, - "package.": 2, - "If": 11, - "another": 1, - "type": 2, - "entity": 1, - "desired": 1, - "can": 12, - "simply": 2, - "add": 2, - "instead": 1, - "two": 13, - "entry": 2, - "list.": 2, - "It": 1, - "will": 5, - "handled": 3, - "so": 3, - "please": 1, - "careful.": 1, - "": 2, - "SHEBANG#!#! for": 1, - "SHEBANG#!#! statement": 1, - "SHEBANG#!#! components": 2, - "SHEBANG#!#! example,": 1, - "SHEBANG#!#! acknowledgements": 1, - "SHEBANG#!#! ": 6, - "SHEBANG#!#! by": 1, - "SHEBANG#!#! package": 1, - "SHEBANG#!#! Usually": 2, - "SHEBANG#!#! are": 2, - "SHEBANG#!#! Default": 3, - "SHEBANG#!#! When": 1, - "SHEBANG#!#! they": 1, - "Document": 1, - "section_intros": 2, - "later": 1, - "on.": 1, - "However": 2, - "note": 2, - "thanks": 1, - "new": 2, - "comment": 1, - "syntax": 1, - "only": 5, - "remaining": 1, - "use": 5, - "this": 15, - "seems": 1, - "ability": 1, - "specify": 3, - "order": 1, - "chapters": 1, - "sections.": 1, - "TODO.": 1, - "SHEBANG#!#! files": 1, - "Note": 3, - "strictly": 1, - "speaking": 1, - "also": 3, - "scaffold.": 1, - "uses": 2, - "scaffolding": 2, - "mechanism": 4, - "really": 4, - "necessary": 2, - "custom": 1, - "name": 2, - "main": 1, - "Thus": 3, - "purpose": 1, - "parameter": 1, - "cater": 1, - "packages": 5, - "have": 3, - "existing": 1, - "using": 2, - "different": 2, - "wish": 1, - "scaffolding.": 1, - "explain": 1, - "why": 2, - "allow": 1, - "specifying": 1, - "gapdoc.main.": 1, - "code": 1, - "still": 1, - "honor": 1, - "though": 1, - "just": 1, - "case.": 1, - "SHEBANG#!#! In": 1, - "maketest": 12, - "part.": 1, - "Still": 1, - "under": 1, - "construction.": 1, - "SHEBANG#!#! ": 1, - "SHEBANG#!#! The": 1, - "SHEBANG#!#! a": 1, - "SHEBANG#!#! which": 1, - "SHEBANG#!#! the": 1, - "SHEBANG#!#! ": 1, - "SHEBANG#!#! ": 2, - "SHEBANG#!#! Sets": 1, - "SHEBANG#!#! A": 1, - "SHEBANG#!#! will": 1, - "SHEBANG#!#! @Returns": 1, - "SHEBANG#!#! @Arguments": 1, - "SHEBANG#!#! @ChapterInfo": 1, - "Magic.gi": 1, - "BindGlobal": 7, - "str": 8, - "suffix": 3, - "n": 31, - "m": 8, - "{": 21, - "}": 21, - "i": 25, - "d": 16, - "IsDirectoryPath": 1, - "CreateDir": 2, - "currently": 1, - "undocumented": 1, - "fail": 18, - "LastSystemError": 1, - ".message": 1, - "false": 7, - "pkg": 32, - "subdirs": 2, - "extensions": 1, - "d_rel": 6, - "files": 4, - "result": 9, - "DirectoriesPackageLibrary": 2, - "IsEmpty": 6, - "continue": 3, - "Directory": 5, - "DirectoryContents": 1, - "Sort": 1, - "AUTODOC_GetSuffix": 2, - "IsReadableFile": 2, - "Filename": 8, - "Add": 4, - "Make": 1, - "callable": 1, - "package_name": 1, - "AutoDocWorksheet.": 1, - "Which": 1, - "create": 1, - "worksheet": 1, - "package_info": 3, - "opt": 3, - "scaffold": 12, - "gapdoc": 7, - "autodoc": 8, - "pkg_dir": 5, - "doc_dir": 18, - "doc_dir_rel": 3, - "title_page": 7, - "tree": 8, - "is_worksheet": 13, - "position_document_class": 7, - "gapdoc_latex_option_record": 4, - "LowercaseString": 3, - "rec": 20, - "DirectoryCurrent": 1, - "PackageInfo": 1, - "key": 3, - "val": 4, - "ValueOption": 1, - "opt.": 1, - "IsBound": 39, - "opt.dir": 4, - "IsString": 7, - "IsDirectory": 1, - "AUTODOC_CreateDirIfMissing": 1, - "opt.scaffold": 5, - "package_info.AutoDoc": 3, - "IsRecord": 7, - "IsBool": 4, - "AUTODOC_APPEND_RECORD_WRITEONCE": 3, - "AUTODOC_WriteOnce": 10, - "opt.autodoc": 5, - "Concatenation": 15, - "package_info.Dependencies.NeededOtherPackages": 1, - "package_info.Dependencies.SuggestedOtherPackages": 1, - "ForAny": 1, - "autodoc.files": 7, - "autodoc.scan_dirs": 5, - "autodoc.level": 3, - "PushOptions": 1, - "level_value": 1, - "Append": 2, - "AUTODOC_FindMatchingFiles": 2, - "opt.gapdoc": 5, - "opt.maketest": 4, - "gapdoc.main": 8, - "package_info.PackageDoc": 3, - ".BookName": 2, - "gapdoc.bookname": 4, - "#Print": 1, - "gapdoc.files": 9, - "gapdoc.scan_dirs": 3, - "Set": 1, - "Number": 1, - "ListWithIdenticalEntries": 1, - "f": 11, - "DocumentationTree": 1, - "autodoc.section_intros": 2, - "AUTODOC_PROCESS_INTRO_STRINGS": 1, - "Tree": 2, - "AutoDocScanFiles": 1, - "PackageName": 2, - "scaffold.TitlePage": 4, - "scaffold.TitlePage.Title": 2, - ".TitlePage.Title": 2, - "Position": 2, - "Remove": 2, - "JoinStringsWithSeparator": 1, - "ReplacedString": 2, - "Syntax": 1, - "scaffold.document_class": 7, - "PositionSublist": 5, - "GAPDoc2LaTeXProcs.Head": 14, - "..": 6, - "scaffold.latex_header_file": 2, - "StringFile": 2, - "scaffold.gapdoc_latex_options": 4, - "RecNames": 1, - "scaffold.gapdoc_latex_options.": 5, - "IsList": 1, - "scaffold.includes": 4, - "scaffold.bib": 7, - "Unbind": 1, - "scaffold.main_xml_file": 2, - ".TitlePage": 1, - "ExtractTitleInfoFromPackageInfo": 1, - "CreateTitlePage": 1, - "scaffold.MainPage": 2, - "scaffold.dir": 1, - "scaffold.book_name": 1, - "CreateMainPage": 1, - "WriteDocumentation": 1, - "SetGapDocLaTeXOptions": 1, - "MakeGAPDocDoc": 1, - "CopyHTMLStyleFiles": 1, - "GAPDocManualLab": 1, - "maketest.folder": 3, - "maketest.scan_dir": 3, - "CreateMakeTest": 1, - "PackageInfo.g": 2, - "cvec": 1, - "s": 4, - "template": 1, - "SetPackageInfo": 1, - "Subtitle": 1, - "Version": 1, - "Date": 1, - "dd/mm/yyyy": 1, - "format": 2, - "Information": 1, - "about": 3, - "authors": 1, - "maintainers.": 1, - "Persons": 1, - "LastName": 1, - "FirstNames": 1, - "IsAuthor": 1, - "IsMaintainer": 1, - "Email": 1, - "WWWHome": 1, - "PostalAddress": 1, - "Place": 1, - "Institution": 1, - "Status": 2, - "information.": 1, - "Currently": 1, - "cases": 2, - "recognized": 1, - "successfully": 2, - "refereed": 2, - "developers": 1, - "agreed": 1, - "distribute": 1, - "them": 1, - "core": 1, - "system": 1, - "development": 1, - "versions": 1, - "all": 18, - "You": 1, - "must": 6, - "provide": 2, - "next": 6, - "entries": 8, - "status": 1, - "because": 2, - "was": 1, - "#CommunicatedBy": 1, - "#AcceptDate": 1, - "PackageWWWHome": 1, - "README_URL": 1, - ".PackageWWWHome": 2, - "PackageInfoURL": 1, - "ArchiveURL": 1, - ".Version": 2, - "ArchiveFormats": 1, - "Here": 2, - "short": 1, - "abstract": 1, - "explaining": 1, - "content": 1, - "HTML": 1, - "overview": 1, - "Web": 1, - "page": 1, - "an": 17, - "URL": 1, - "Webpage": 1, - "detailed": 1, - "information": 1, - "than": 1, - "few": 1, - "lines": 1, - "less": 1, - "ok": 1, - "Please": 1, - "specifing": 1, - "names.": 1, - "AbstractHTML": 1, - "PackageDoc": 1, - "BookName": 1, - "ArchiveURLSubset": 1, - "HTMLStart": 1, - "PDFFile": 1, - "SixFile": 1, - "LongTitle": 1, - "Dependencies": 1, - "NeededOtherPackages": 1, - "SuggestedOtherPackages": 1, - "ExternalConditions": 1, - "AvailabilityTest": 1, - "SHOW_STAT": 1, - "DirectoriesPackagePrograms": 1, - "#Info": 1, - "InfoWarning": 1, - "*Optional*": 2, - "but": 1, - "recommended": 1, - "path": 1, - "relative": 1, - "root": 1, - "many": 1, - "tests": 1, - "functionality": 1, - "sensible.": 1, - "#TestFile": 1, - "keyword": 1, - "related": 1, - "topic": 1, - "Keywords": 1, - "vspc.gd": 1, - "library": 2, - "Thomas": 2, - "Breuer": 2, - "#Y": 6, - "C": 11, - "Lehrstuhl": 2, - "D": 36, - "r": 2, - "Mathematik": 2, - "RWTH": 2, - "Aachen": 2, - "Germany": 2, - "School": 2, - "Math": 2, - "Comp.": 2, - "Sci.": 2, - "St": 2, - "Andrews": 2, - "Scotland": 2, - "Group": 3, - "declares": 1, - "operations": 2, - "vector": 67, - "spaces.": 4, - "bases": 5, - "free": 3, - "left": 15, - "modules": 1, - "found": 1, - "": 10, - "lib/basis.gd": 1, - ".": 257, - "IsLeftOperatorRing": 1, - "IsLeftOperatorAdditiveGroup": 2, - "IsRing": 1, - "IsAssociativeLOpDProd": 2, - "#T": 6, - "IsLeftOperatorRingWithOne": 2, - "IsRingWithOne": 1, - "IsLeftVectorSpace": 3, - "": 38, - "IsVectorSpace": 26, - "<#GAPDoc>": 17, - "Label=": 19, - "": 12, - "space": 74, - "": 12, - "module": 2, - "see": 30, - "nbsp": 30, - "": 71, - "Func=": 40, - "over": 24, - "division": 15, - "ring": 14, - "Chapter": 3, - "Chap=": 3, - "

": 23, - "Whenever": 1, - "talk": 1, - "": 42, - "F": 61, - "": 41, - "V": 152, - "additive": 1, - "group": 2, - "acts": 1, - "via": 6, - "multiplication": 1, - "from": 5, - "such": 4, - "action": 4, - "addition": 1, - "right": 2, - "distributive.": 1, - "accessed": 1, - "value": 9, - "attribute": 2, - "Vector": 1, - "spaces": 15, - "always": 1, - "Filt=": 4, - "synonyms.": 1, - "<#/GAPDoc>": 17, - "IsLeftActedOnByDivisionRing": 4, - "InstallTrueMethod": 4, - "IsGaussianSpace": 10, - "": 14, - "filter": 3, - "Sect=": 6, - "row": 17, - "matrix": 5, - "field": 12, - "say": 1, - "indicates": 3, - "vectors": 16, - "matrices": 5, - "respectively": 1, - "contained": 4, - "In": 3, - "case": 2, - "called": 1, - "Gaussian": 19, - "space.": 5, - "Bases": 1, - "computed": 2, - "elimination": 5, - "given": 4, - "generators.": 1, - "": 12, - "": 12, - "gap": 41, - "mats": 5, - "VectorSpace": 13, - "Rationals": 13, - "E": 2, - "element": 2, - "extension": 3, - "Field": 1, - "": 12, - "DeclareFilter": 1, - "IsFullMatrixModule": 1, - "IsFullRowModule": 1, - "IsDivisionRing": 5, - "": 12, - "nontrivial": 1, - "associative": 1, - "algebra": 2, - "multiplicative": 1, - "inverse": 1, - "each": 2, - "nonzero": 3, - "element.": 1, - "every": 1, - "possibly": 1, - "itself": 1, - "being": 2, - "thus": 1, - "property": 2, - "get": 1, - "usually": 1, - "represented": 1, - "coefficients": 3, - "stored": 1, - "DeclareSynonymAttr": 4, - "IsMagmaWithInversesIfNonzero": 1, - "IsNonTrivial": 1, - "IsAssociative": 1, - "IsEuclideanRing": 1, - "#A": 7, - "GeneratorsOfLeftVectorSpace": 1, - "GeneratorsOfVectorSpace": 2, - "": 7, - "Attr=": 10, - "returns": 14, - "generate": 1, - "FullRowSpace": 5, - "GeneratorsOfLeftOperatorAdditiveGroup": 2, - "CanonicalBasis": 3, - "supports": 1, - "canonical": 6, - "basis": 14, - "otherwise": 2, - "": 3, - "": 3, - "returned.": 4, - "defining": 1, - "its": 2, - "uniquely": 1, - "determined": 1, - "by": 14, - "exist": 1, - "same": 6, - "acting": 8, - "domain": 17, - "equality": 1, - "these": 5, - "decided": 1, - "comparing": 1, - "bases.": 1, - "exact": 1, - "meaning": 1, - "depends": 1, - "Canonical": 1, - "defined": 3, - "designs": 1, - "kind": 1, - "defines": 1, - "method": 4, - "installs": 1, - "call": 1, - "On": 1, - "hand": 1, - "install": 1, - "calls": 1, - "": 10, - "CANONICAL_BASIS_FLAGS": 1, - "": 9, - "vecs": 4, - "B": 16, - "": 8, - "3": 5, - "generators": 16, - "BasisVectors": 4, - "DeclareAttribute": 4, - "IsRowSpace": 2, - "consists": 7, - "IsRowModule": 1, - "IsGaussianRowSpace": 1, - "scalars": 2, - "occur": 2, - "vectors.": 2, - "calculations.": 2, - "Otherwise": 3, - "non": 4, - "Gaussian.": 2, - "need": 3, - "flag": 2, - "down": 2, - "methods": 4, - "delegate": 2, - "ones.": 2, - "IsNonGaussianRowSpace": 1, - "expresses": 2, - "cannot": 2, - "compute": 3, - "nice": 4, - "way.": 2, - "Let": 4, - "K": 4, - "spanned": 4, - "Then": 1, - "/": 12, - "cap": 1, - "v": 5, - "replacing": 1, - "forming": 1, - "concatenation.": 1, - "So": 2, - "associated": 3, - "DeclareHandlingByNiceBasis": 2, - "IsMatrixSpace": 2, - "IsMatrixModule": 1, - "IsGaussianMatrixSpace": 1, - "IsNonGaussianMatrixSpace": 1, - "irrelevant": 1, - "concatenation": 1, - "rows": 1, - "necessarily": 1, - "NormedRowVectors": 2, - "normed": 1, - "finite": 5, - "those": 1, - "first": 1, - "component.": 1, - "yields": 1, - "natural": 1, - "dimensional": 5, - "subspaces": 17, - "GF": 22, - "*Z": 5, - "Z": 6, - "Action": 1, - "GL": 1, - "OnLines": 1, - "TrivialSubspace": 2, - "subspace": 7, - "zero": 4, - "triv": 2, - "0": 2, - "AsSet": 1, - "TrivialSubmodule": 1, - "": 5, - "": 2, - "collection": 3, - "gens": 16, - "elements": 7, - "optional": 3, - "argument": 1, - "empty.": 1, - "known": 5, - "linearly": 3, - "independent": 3, - "particular": 1, - "dimension": 9, - "immediately": 2, - "formed": 1, - "argument.": 1, - "2": 1, - "Subspace": 4, - "generated": 1, - "SubspaceNC": 2, - "subset": 4, - "empty": 1, - "trivial": 1, - "parent": 3, - "returned": 3, - "does": 1, - "except": 1, - "omits": 1, - "check": 5, - "both": 2, - "W": 32, - "1": 3, - "Submodule": 1, - "SubmoduleNC": 1, - "#O": 2, - "AsVectorSpace": 4, - "view": 4, - "": 2, - "domain.": 1, - "form": 2, - "Oper=": 6, - "smaller": 1, - "larger": 1, - "ring.": 3, - "Dimension": 6, - "LeftActingDomain": 29, - "9": 1, - "AsLeftModule": 6, - "AsSubspace": 5, - "": 6, - "U": 12, - "collection.": 1, - "/2": 4, - "Parent": 4, - "DeclareOperation": 2, - "IsCollection": 3, - "Intersection2Spaces": 4, - "": 2, - "": 2, - "": 2, - "takes": 1, - "arguments": 1, - "intersection": 5, - "domains": 3, - "let": 1, - "their": 1, - "intersection.": 1, - "AsStruct": 2, - "equal": 1, - "either": 2, - "Substruct": 1, - "common": 1, - "Struct": 1, - "basis.": 1, - "handle": 1, - "intersections": 1, - "algebras": 2, - "ideals": 2, - "sided": 1, - "ideals.": 1, - "": 2, - "": 2, - "nonnegative": 2, - "integer": 2, - "length": 1, - "An": 2, - "alternative": 2, - "construct": 2, - "above": 2, - "FullRowModule": 2, - "FullMatrixSpace": 2, - "": 1, - "positive": 1, - "integers": 1, - "fact": 1, - "FullMatrixModule": 3, - "IsSubspacesVectorSpace": 9, - "fixed": 1, - "lies": 1, - "category": 1, - "Subspaces": 8, - "Size": 5, - "iter": 17, - "Iterator": 5, - "NextIterator": 5, - "DeclareCategory": 1, - "IsDomain": 1, - "IsFinite": 4, - "Returns": 1, - "": 1, - "Called": 2, - "k": 17, - "Special": 1, - "provided": 1, - "domains.": 1, - "IsInt": 3, - "IsSubspace": 3, - "OrthogonalSpaceInFullRowSpace": 1, - "complement": 1, - "full": 2, - "#P": 1, - "IsVectorSpaceHomomorphism": 3, - "": 2, - "": 1, - "mapping": 2, - "homomorphism": 1, - "linear": 1, - "source": 2, - "range": 1, - "b": 8, - "hold": 1, - "IsGeneralMapping": 2, - "#E": 2, - "vspc.gi": 1, - "generic": 1, - "SetLeftActingDomain": 2, - "": 2, - "external": 1, - "knows": 1, - "e.g.": 1, - "tell": 1, - "InstallOtherMethod": 3, - "IsAttributeStoringRep": 2, - "IsLeftActedOnByRing": 2, - "IsObject": 1, - "extL": 2, - "HasIsDivisionRing": 1, - "SetIsLeftActedOnByDivisionRing": 1, - "IsExtLSet": 1, - "IsIdenticalObj": 5, - "difference": 1, - "between": 1, - "shall": 1, - "CallFuncList": 1, - "FreeLeftModule": 1, - "newC": 7, - "IsSubset": 4, - "SetParent": 1, - "UseIsomorphismRelation": 2, - "UseSubsetRelation": 4, - "View": 1, - "base": 5, - "gen": 5, - "loop": 2, - "newgens": 4, - "extended": 1, - "Characteristic": 2, - "Basis": 5, - "AsField": 2, - "GeneratorsOfLeftModule": 9, - "LeftModuleByGenerators": 5, - "Zero": 5, - "Intersection": 1, - "ViewObj": 4, - "print": 1, - "no.": 1, - "HasGeneratorsOfLeftModule": 2, - "HasDimension": 1, - "override": 1, - "PrintObj": 5, - "HasZero": 1, - "": 2, - "factor": 2, - "": 1, - "ImagesSource": 1, - "NaturalHomomorphismBySubspace": 1, - "AsStructure": 3, - "Substructure": 3, - "Structure": 2, - "inters": 17, - "gensV": 7, - "gensW": 7, - "VW": 3, - "sum": 1, - "Intersection2": 4, - "IsFiniteDimensional": 2, - "Coefficients": 3, - "SumIntersectionMat": 1, - "LinearCombination": 2, - "HasParent": 2, - "SetIsTrivial": 1, - "ClosureLeftModule": 2, - "": 1, - "closure": 1, - "IsCollsElms": 1, - "HasBasis": 1, - "IsVector": 1, - "w": 3, - "easily": 1, - "UseBasis": 1, - "Methods": 1, - "collections": 1, - "#R": 1, - "IsSubspacesVectorSpaceDefaultRep": 7, - "representation": 1, - "components": 1, - "means": 1, - "DeclareRepresentation": 1, - "IsComponentObjectRep": 1, - ".dimension": 9, - ".structure": 9, - "number": 2, - "q": 20, - "prod_": 2, - "frac": 3, - "recursion": 1, - "sum_": 1, - "size": 12, - "qn": 10, - "qd": 10, - "ank": 6, - "Int": 1, - "Enumerator": 2, - "Use": 1, - "iterator": 3, - "allowed": 1, - "elms": 4, - "IsDoneIterator": 3, - ".associatedIterator": 3, - ".basis": 2, - "structure": 4, - "associatedIterator": 2, - "ShallowCopy": 2, - "IteratorByFunctions": 1, - "IsDoneIterator_Subspaces": 1, - "NextIterator_Subspaces": 1, - "ShallowCopy_Subspaces": 1, - "": 1, - "dim": 2, - "Objectify": 2, - "NewType": 2, - "CollectionsFamily": 2, - "FamilyObj": 2, - "map": 4, - "S": 4, - "Source": 1, - "Range": 1, - "IsLinearMapping": 1 - }, - "GAS": { - ".cstring": 1, - "LC0": 2, - ".ascii": 2, - ".text": 1, - ".globl": 2, - "_main": 2, - "LFB3": 4, - "pushq": 1, - "%": 6, - "rbp": 2, - "LCFI0": 3, - "movq": 1, - "rsp": 1, - "LCFI1": 2, - "leaq": 1, - "(": 1, - "rip": 1, - ")": 1, - "rdi": 1, - "call": 1, - "_puts": 1, - "movl": 1, - "eax": 1, - "leave": 1, - "ret": 1, - "LFE3": 2, - ".section": 1, - "__TEXT": 1, - "__eh_frame": 1, - "coalesced": 1, - "no_toc": 1, - "+": 2, - "strip_static_syms": 1, - "live_support": 1, - "EH_frame1": 2, - ".set": 5, - "L": 10, - "set": 10, - "LECIE1": 2, - "-": 7, - "LSCIE1": 2, - ".long": 6, - ".byte": 20, - "xc": 1, - ".align": 2, - "_main.eh": 2, - "LSFDE1": 1, - "LEFDE1": 2, - "LASFDE1": 3, - ".quad": 2, - ".": 1, - "xe": 1, - "xd": 1, - ".subsections_via_symbols": 1 - }, - "GLSL": { - "////": 4, - "High": 1, - "quality": 2, - "(": 435, - "Some": 1, - "browsers": 1, - "may": 1, - "freeze": 1, - "or": 1, - "crash": 1, - ")": 435, - "//#define": 10, - "HIGHQUALITY": 2, - "Medium": 1, - "Should": 1, - "be": 1, - "fine": 1, - "on": 3, - "all": 1, - "systems": 1, - "works": 1, - "Intel": 1, - "HD2000": 1, - "Win7": 1, - "but": 1, - "quite": 1, - "slow": 1, - "MEDIUMQUALITY": 2, - "Defaults": 1, - "REFLECTIONS": 3, - "#define": 13, - "SHADOWS": 5, - "GRASS": 3, - "SMALL_WAVES": 4, - "RAGGED_LEAVES": 5, - "DETAILED_NOISE": 3, - "LIGHT_AA": 3, - "//": 38, - "sample": 2, - "SSAA": 2, - "HEAVY_AA": 2, - "x2": 5, - "RG": 1, - "TONEMAP": 5, - "Configurations": 1, - "#ifdef": 14, - "#endif": 14, - "const": 19, - "float": 105, - "eps": 5, - "e": 4, - "-": 108, - ";": 383, - "PI": 3, - "vec3": 165, - "sunDir": 5, - "skyCol": 4, - "sandCol": 2, - "treeCol": 2, - "grassCol": 2, - "leavesCol": 4, - "leavesPos": 4, - "sunCol": 5, - "#else": 5, - "exposure": 1, - "Only": 1, - "used": 1, - "when": 1, - "tonemapping": 1, - "mod289": 4, - "x": 11, - "{": 82, - "return": 47, - "floor": 8, - "*": 115, - "/": 24, - "}": 82, - "vec4": 73, - "permute": 4, - "x*34.0": 1, - "+": 108, - "*x": 3, - "taylorInvSqrt": 2, - "r": 14, - "snoise": 7, - "v": 8, - "vec2": 26, - "C": 1, - "/6.0": 1, - "/3.0": 1, - "D": 1, - "i": 38, - "dot": 30, - "C.yyy": 2, - "x0": 7, - "C.xxx": 2, - "g": 2, - "step": 2, - "x0.yzx": 1, - "x0.xyz": 1, - "l": 1, - "i1": 2, - "min": 11, - "g.xyz": 2, - "l.zxy": 2, - "i2": 2, - "max": 9, - "x1": 4, - "*C.x": 2, - "/3": 1, - "C.y": 1, - "x3": 4, - "D.yyy": 1, - "D.y": 1, - "p": 26, - "i.z": 1, - "i1.z": 1, - "i2.z": 1, - "i.y": 1, - "i1.y": 1, - "i2.y": 1, - "i.x": 1, - "i1.x": 1, - "i2.x": 1, - "n_": 2, - "/7.0": 1, - "ns": 4, - "D.wyz": 1, - "D.xzx": 1, - "j": 4, - "ns.z": 3, - "mod": 2, - "*7": 1, - "x_": 3, - "y_": 2, - "N": 1, - "*ns.x": 2, - "ns.yyyy": 2, - "y": 2, - "h": 21, - "abs": 2, - "b0": 3, - "x.xy": 1, - "y.xy": 1, - "b1": 3, - "x.zw": 1, - "y.zw": 1, - "//vec4": 3, - "s0": 2, - "lessThan": 2, - "*2.0": 4, - "s1": 2, - "sh": 1, - "a0": 1, - "b0.xzyw": 1, - "s0.xzyw*sh.xxyy": 1, - "a1": 1, - "b1.xzyw": 1, - "s1.xzyw*sh.zzww": 1, - "p0": 5, - "a0.xy": 1, - "h.x": 1, - "p1": 5, - "a0.zw": 1, - "h.y": 1, - "p2": 5, - "a1.xy": 1, - "h.z": 1, - "p3": 5, - "a1.zw": 1, - "h.w": 1, - "//Normalise": 1, - "gradients": 1, - "norm": 1, - "norm.x": 1, - "norm.y": 1, - "norm.z": 1, - "norm.w": 1, - "m": 8, - "m*m": 1, - "fbm": 2, - "final": 5, - "waterHeight": 4, - "d": 10, - "length": 7, - "p.xz": 2, - "sin": 8, - "iGlobalTime": 7, - "Island": 1, - "waves": 3, - "p*0.5": 1, - "Other": 1, - "bump": 2, - "pos": 42, - "rayDir": 43, - "s": 23, - "Fade": 1, - "out": 1, - "to": 1, - "reduce": 1, - "aliasing": 1, - "dist": 7, - "<": 23, - "sqrt": 6, - "Calculate": 1, - "normal": 7, - "from": 2, - "heightmap": 1, - "pos.x": 1, - "iGlobalTime*0.5": 1, - "pos.z": 2, - "*0.7": 1, - "*s": 4, - "normalize": 14, - "e.xyy": 1, - "e.yxy": 1, - "intersectSphere": 2, - "rpos": 5, - "rdir": 3, - "rad": 2, - "op": 5, - "b": 5, - "det": 11, - "b*b": 2, - "rad*rad": 2, - "if": 29, - "t": 44, - "rdir*t": 1, - "intersectCylinder": 1, - "rdir2": 2, - "rdir.yz": 1, - "op.yz": 3, - "rpos.yz": 2, - "rdir2*t": 2, - "pos.yz": 2, - "intersectPlane": 3, - "rayPos": 38, - "n": 18, - "sign": 1, - "rotate": 5, - "theta": 6, - "c": 6, - "cos": 4, - "p.x": 2, - "p.z": 2, - "p.y": 1, - "impulse": 2, - "k": 8, - "by": 1, - "iq": 2, - "k*x": 1, - "exp": 2, - "grass": 2, - "Optimization": 1, - "Avoid": 1, - "noise": 1, - "too": 1, - "far": 1, - "away": 1, - "pos.y": 8, - "tree": 2, - "pos.y*0.03": 2, - "mat2": 2, - "m*pos.xy": 1, - "width": 2, - "clamp": 4, - "scene": 7, - "vtree": 4, - "vgrass": 2, - ".x": 4, - "eps.xyy": 1, - "eps.yxy": 1, - "eps.yyx": 1, - "plantsShadow": 2, - "Soft": 1, - "shadow": 4, - "taken": 1, - "for": 7, - "int": 8, - "rayDir*t": 2, - "res": 6, - "res.x": 3, - "k*res.x/t": 1, - "s*s*": 1, - "intersectWater": 2, - "rayPos.y": 1, - "rayDir.y": 1, - "intersectSand": 3, - "intersectTreasure": 2, - "intersectLeaf": 2, - "openAmount": 4, - "dir": 2, - "offset": 5, - "rayDir*res.w": 1, - "pos*0.8": 2, - "||": 3, - "res.w": 6, - "res2": 2, - "dir.xy": 1, - "dir.z": 1, - "rayDir*res2.w": 1, - "res2.w": 3, - "&&": 10, - "leaves": 7, - "e20": 3, - "sway": 5, - "fract": 1, - "upDownSway": 2, - "angleOffset": 3, - "Left": 1, - "right": 1, - "alpha": 3, - "Up": 1, - "down": 1, - "k*10.0": 1, - "p.xzy": 1, - ".xzy": 2, - "d.xzy": 1, - "Shift": 1, - "Intersect": 11, - "individual": 1, - "leaf": 1, - "res.xyz": 1, - "sand": 2, - "resSand": 2, - "//if": 1, - "resSand.w": 4, - "plants": 6, - "resLeaves": 3, - "resLeaves.w": 10, - "e7": 3, - "light": 5, - "sunDir*0.01": 2, - "col": 32, - "n.y": 3, - "lightLeaves": 3, - "ao": 5, - "sky": 5, - "res.y": 2, - "uvFact": 2, - "uv": 12, - "n.x": 1, - "tex": 6, - "texture2D": 6, - "iChannel0": 3, - ".rgb": 2, - "e8": 1, - "traceReflection": 2, - "resPlants": 2, - "resPlants.w": 6, - "resPlants.xyz": 2, - "pos.xz": 2, - "leavesPos.xz": 2, - ".r": 3, - "resLeaves.xyz": 2, - "trace": 2, - "resSand.xyz": 1, - "treasure": 1, - "chest": 1, - "resTreasure": 1, - "resTreasure.w": 4, - "resTreasure.xyz": 1, - "water": 1, - "resWater": 1, - "resWater.w": 4, - "ct": 2, - "fresnel": 2, - "pow": 3, - "trans": 2, - "reflDir": 3, - "reflect": 1, - "refl": 3, - "resWater.t": 1, - "mix": 2, - "camera": 8, - "px": 4, - "rd": 1, - "iResolution.yy": 1, - "iResolution.x/iResolution.y*0.5": 1, - "rd.x": 1, - "rd.y": 1, - "void": 31, - "main": 5, - "gl_FragCoord.xy": 7, - "*0.25": 4, - "*0.5": 1, - "Optimized": 1, - "Haarm": 1, - "Peter": 1, - "Duiker": 1, - "curve": 1, - "col*exposure": 1, - "x*": 2, - ".5": 1, - "gl_FragColor": 3, - "#version": 2, - "core": 1, - "cbar": 2, - "cfoo": 1, - "CB": 2, - "CD": 2, - "CA": 1, - "CC": 1, - "CBT": 5, - "CDT": 3, - "CAT": 1, - "CCT": 1, - "norA": 4, - "norB": 3, - "norC": 1, - "norD": 1, - "norE": 4, - "norF": 1, - "norG": 1, - "norH": 1, - "norI": 1, - "norcA": 2, - "norcB": 3, - "norcC": 2, - "norcD": 2, - "head": 1, - "of": 1, - "cycle": 2, - "norcE": 1, - "lead": 1, - "into": 1, - "NUM_LIGHTS": 4, - "AMBIENT": 2, - "MAX_DIST": 3, - "MAX_DIST_SQUARED": 3, - "uniform": 7, - "lightColor": 3, - "[": 29, - "]": 29, - "varying": 4, - "fragmentNormal": 2, - "cameraVector": 2, - "lightVector": 4, - "initialize": 1, - "diffuse/specular": 1, - "lighting": 1, - "diffuse": 4, - "specular": 4, - "the": 1, - "fragment": 1, - "and": 2, - "direction": 1, - "cameraDir": 2, - "loop": 1, - "through": 1, - "each": 1, - "calculate": 1, - "distance": 1, - "between": 1, - "distFactor": 3, - "lightDir": 3, - "diffuseDot": 2, - "halfAngle": 2, - "specularColor": 2, - "specularDot": 2, - "sample.rgb": 1, - "sample.a": 1, - "static": 1, - "char*": 1, - "SimpleFragmentShader": 1, - "STRINGIFY": 1, - "FrontColor": 2, - "kCoeff": 2, - "kCube": 2, - "uShift": 3, - "vShift": 3, - "chroma_red": 2, - "chroma_green": 2, - "chroma_blue": 2, - "bool": 1, - "apply_disto": 4, - "sampler2D": 1, - "input1": 4, - "adsk_input1_w": 4, - "adsk_input1_h": 3, - "adsk_input1_aspect": 1, - "adsk_input1_frameratio": 5, - "adsk_result_w": 3, - "adsk_result_h": 2, - "distortion_f": 3, - "f": 17, - "r*r": 1, - "inverse_f": 2, - "lut": 9, - "max_r": 2, - "incr": 2, - "lut_r": 5, - ".z": 5, - ".y": 2, - "aberrate": 4, - "chroma": 2, - "chromaticize_and_invert": 2, - "rgb_f": 5, - "px.x": 2, - "px.y": 2, - "uv.x": 11, - "uv.y": 7, - "*2": 2, - "uv.x*uv.x": 1, - "uv.y*uv.y": 1, - "else": 1, - "rgb_uvs": 12, - "rgb_f.rr": 1, - "rgb_f.gg": 1, - "rgb_f.bb": 1, - "sampled": 1, - "sampled.r": 1, - "sampled.g": 1, - ".g": 1, - "sampled.b": 1, - ".b": 1, - "gl_FragColor.rgba": 1, - "sampled.rgb": 1 - }, - "Gnuplot": { - "set": 98, - "label": 14, - "at": 14, - "-": 102, - "left": 15, - "norotate": 18, - "back": 23, - "textcolor": 13, - "rgb": 8, - "nopoint": 14, - "offset": 25, - "character": 22, - "lt": 15, - "style": 7, - "line": 4, - "linetype": 11, - "linecolor": 4, - "linewidth": 11, - "pointtype": 4, - "pointsize": 4, - "default": 4, - "pointinterval": 4, - "noxtics": 2, - "noytics": 2, - "title": 13, - "xlabel": 6, - "xrange": 3, - "[": 18, - "]": 18, - "noreverse": 13, - "nowriteback": 12, - "yrange": 4, - "bmargin": 1, - "unset": 2, - "colorbox": 3, - "plot": 3, - "cos": 9, - "(": 52, - "x": 7, - ")": 52, - "ls": 4, - ".2": 1, - ".4": 1, - ".6": 1, - ".8": 1, - "lc": 3, - "boxwidth": 1, - "absolute": 1, - "fill": 1, - "solid": 1, - "border": 3, - "key": 1, - "inside": 1, - "right": 1, - "top": 1, - "vertical": 2, - "Right": 1, - "noenhanced": 1, - "autotitles": 1, - "nobox": 1, - "histogram": 1, - "clustered": 1, - "gap": 1, - "datafile": 1, - "missing": 1, - "data": 1, - "histograms": 1, - "xtics": 3, - "in": 1, - "scale": 1, - "nomirror": 1, - "rotate": 3, - "by": 3, - "autojustify": 1, - "norangelimit": 3, - "font": 8, - "i": 1, - "using": 2, - "xtic": 1, - "ti": 4, - "col": 4, - "u": 25, - "SHEBANG#!gnuplot": 1, - "reset": 1, - "terminal": 1, - "png": 1, - "output": 1, - "ylabel": 5, - "#set": 2, - "xr": 1, - "yr": 1, - "pt": 2, - "notitle": 15, - "dummy": 3, - "v": 31, - "arrow": 7, - "from": 7, - "to": 7, - "head": 7, - "nofilled": 7, - "parametric": 3, - "view": 3, - "samples": 3, - "isosamples": 3, - "hidden3d": 2, - "trianglepattern": 2, - "undefined": 2, - "altdiagonal": 2, - "bentover": 2, - "ztics": 2, - "zlabel": 4, - "zrange": 2, - "sinc": 13, - "sin": 3, - "sqrt": 4, - "u**2": 4, - "+": 6, - "v**2": 4, - "/": 2, - "GPFUN_sinc": 2, - "xx": 2, - "dx": 2, - "x0": 4, - "x1": 4, - "x2": 4, - "x3": 4, - "x4": 4, - "x5": 4, - "x6": 4, - "x7": 4, - "x8": 4, - "x9": 4, - "splot": 3, - "<": 10, - "xmin": 3, - "xmax": 1, - "n": 1, - "zbase": 2, - ".5": 2, - "*n": 1, - "floor": 3, - "u/3": 1, - "*dx": 1, - "%": 2, - "u/3.*dx": 1, - "/0": 1, - "angles": 1, - "degrees": 1, - "mapping": 1, - "spherical": 1, - "noztics": 1, - "urange": 1, - "vrange": 1, - "cblabel": 1, - "cbrange": 1, - "user": 1, - "origin": 1, - "screen": 2, - "size": 1, - "front": 1, - "bdefault": 1, - "*cos": 1, - "*sin": 1, - "with": 3, - "lines": 2, - "labels": 1, - "point": 1, - "lw": 1, - ".1": 1, - "tc": 1, - "pal": 1 - }, - "Gosu": { - "<%!-->": 1, - "defined": 1, - "in": 3, - "Hello": 2, - "gst": 1, - "<": 1, - "%": 2, - "@": 1, - "params": 1, - "(": 53, - "users": 2, - "Collection": 1, - "": 1, - ")": 54, - "<%>": 2, - "for": 2, - "user": 1, - "{": 28, - "user.LastName": 1, - "}": 28, - "user.FirstName": 1, - "user.Department": 1, - "package": 2, - "example": 2, - "enhancement": 1, - "String": 6, - "function": 11, - "toPerson": 1, - "Person": 7, - "var": 10, - "vals": 4, - "this.split": 1, - "return": 4, - "new": 6, - "[": 4, - "]": 4, - "as": 3, - "int": 2, - "Relationship.valueOf": 2, - "hello": 1, - "print": 3, - "uses": 2, - "java.util.*": 1, - "java.io.File": 1, - "class": 1, - "extends": 1, - "Contact": 1, - "implements": 1, - "IEmailable": 2, - "_name": 4, - "_age": 3, - "Integer": 3, - "Age": 1, - "_relationship": 2, - "Relationship": 3, - "readonly": 1, - "RelationshipOfPerson": 1, - "delegate": 1, - "_emailHelper": 2, - "represents": 1, - "enum": 1, - "FRIEND": 1, - "FAMILY": 1, - "BUSINESS_CONTACT": 1, - "static": 7, - "ALL_PEOPLE": 2, - "HashMap": 1, - "": 1, - "construct": 1, - "name": 4, - "age": 4, - "relationship": 2, - "EmailHelper": 1, - "this": 1, - "property": 2, - "get": 1, - "Name": 3, - "set": 1, - "override": 1, - "getEmailName": 1, - "incrementAge": 1, - "+": 2, - "@Deprecated": 1, - "printPersonInfo": 1, - "addPerson": 4, - "p": 5, - "if": 4, - "ALL_PEOPLE.containsKey": 2, - ".Name": 1, - "throw": 1, - "IllegalArgumentException": 1, - "p.Name": 2, - "addAllPeople": 1, - "contacts": 2, - "List": 1, - "": 1, - "contact": 3, - "typeis": 1, - "and": 1, - "not": 1, - "contact.Name": 1, - "getAllPeopleOlderThanNOrderedByName": 1, - "allPeople": 1, - "ALL_PEOPLE.Values": 3, - "allPeople.where": 1, - "-": 3, - "p.Age": 1, - ".orderBy": 1, - "loadPersonFromDB": 1, - "id": 1, - "using": 2, - "conn": 1, - "DBConnectionManager.getConnection": 1, - "stmt": 1, - "conn.prepareStatement": 1, - "stmt.setInt": 1, - "result": 1, - "stmt.executeQuery": 1, - "result.next": 1, - "result.getString": 2, - "result.getInt": 1, - "loadFromFile": 1, - "file": 3, - "File": 2, - "file.eachLine": 1, - "line": 1, - "line.HasContent": 1, - "line.toPerson": 1, - "saveToFile": 1, - "writer": 2, - "FileWriter": 1, - "PersonCSVTemplate.renderToString": 1, - "PersonCSVTemplate.render": 1 - }, - "Grammatical Framework": { - "-": 594, - "(": 256, - "c": 73, - ")": 256, - "Aarne": 13, - "Ranta": 13, - "under": 33, - "LGPL": 33, - "abstract": 1, - "Foods": 34, - "{": 579, - "flags": 32, - "startcat": 1, - "Comment": 31, - ";": 1399, - "cat": 1, - "Item": 31, - "Kind": 33, - "Quality": 34, - "fun": 1, - "Pred": 30, - "This": 29, - "That": 29, - "These": 28, - "Those": 28, - "Mod": 29, - "Wine": 29, - "Cheese": 29, - "Fish": 29, - "Pizza": 28, - "Very": 29, - "Fresh": 29, - "Warm": 29, - "Italian": 29, - "Expensive": 29, - "Delicious": 29, - "Boring": 29, - "}": 580, - "Laurette": 2, - "Pretorius": 2, - "Sr": 2, - "&": 2, - "Jr": 2, - "and": 4, - "Ansu": 2, - "Berg": 2, - "concrete": 33, - "FoodsAfr": 1, - "of": 89, - "open": 23, - "Prelude": 11, - "Predef": 3, - "in": 32, - "coding": 29, - "utf8": 29, - "lincat": 28, - "s": 365, - "Str": 394, - "Number": 207, - "n": 206, - "AdjAP": 10, - "lin": 28, - "item": 36, - "quality": 90, - "item.s": 24, - "+": 480, - "quality.s": 50, - "Predic": 3, - "kind": 115, - "kind.s": 46, - "Sg": 184, - "Pl": 182, - "table": 148, - "Attr": 9, - "declNoun_e": 2, - "declNoun_aa": 2, - "declNoun_ss": 2, - "declNoun_s": 2, - "veryAdj": 2, - "regAdj": 61, - "smartAdj_e": 4, - "param": 22, - "|": 122, - "oper": 29, - "Noun": 9, - "operations": 2, - "wyn": 1, - "kaas": 1, - "vis": 1, - "pizza": 1, - "x": 74, - "let": 8, - "v": 6, - "tk": 1, - "last": 3, - "Adjective": 9, - "mkAdj": 27, - "y": 3, - "declAdj_e": 2, - "declAdj_g": 2, - "w": 15, - "init": 4, - "declAdj_oog": 2, - "i": 2, - "a": 57, - "x.s": 8, - "case": 44, - "_": 68, - "FoodsAmh": 1, - "Krasimir": 1, - "Angelov": 1, - "FoodsBul": 1, - "Gender": 94, - "Masc": 67, - "Fem": 65, - "Neutr": 21, - "Agr": 3, - "ASg": 23, - "APl": 11, - "g": 132, - "qual": 8, - "item.a": 2, - "qual.s": 8, - "kind.g": 38, - "#": 14, - "path": 14, - ".": 13, - "present": 7, - "Jordi": 2, - "Saludes": 2, - "FoodsCat": 1, - "FoodsI": 6, - "with": 5, - "Syntax": 7, - "SyntaxCat": 2, - "LexFoods": 12, - "LexFoodsCat": 2, - "FoodsChi": 1, - "p": 11, - "quality.p": 2, - "kind.c": 11, - "geKind": 5, - "longQuality": 8, - "mkKind": 2, - "Katerina": 2, - "Bohmova": 2, - "FoodsCze": 1, - "ResCze": 2, - "NounPhrase": 3, - "copula": 33, - "item.n": 29, - "item.g": 12, - "det": 86, - "noun": 51, - "regnfAdj": 2, - "Femke": 1, - "Johansson": 1, - "FoodsDut": 1, - "AForm": 4, - "APred": 8, - "AAttr": 3, - "regNoun": 38, - "f": 16, - "a.s": 8, - "regadj": 6, - "adj": 38, - "noun.s": 7, - "man": 10, - "men": 10, - "wijn": 3, - "koud": 3, - "duur": 2, - "dure": 2, - "FoodsEng": 1, - "language": 2, - "en_US": 1, - "car": 6, - "cold": 4, - "Julia": 1, - "Hammar": 1, - "FoodsEpo": 1, - "SS": 6, - "ss": 13, - "d": 6, - "cn": 11, - "cn.s": 8, - "vino": 3, - "nova": 3, - "FoodsFin": 1, - "SyntaxFin": 2, - "LexFoodsFin": 2, - "../foods": 1, - "FoodsFre": 1, - "SyntaxFre": 1, - "ParadigmsFre": 1, - "Utt": 4, - "NP": 4, - "CN": 4, - "AP": 4, - "mkUtt": 4, - "mkCl": 4, - "mkNP": 16, - "this_QuantSg": 2, - "that_QuantSg": 2, - "these_QuantPl": 2, - "those_QuantPl": 2, - "mkCN": 20, - "mkAP": 28, - "very_AdA": 4, - "mkN": 46, - "masculine": 4, - "feminine": 2, - "mkA": 47, - "FoodsGer": 1, - "SyntaxGer": 2, - "LexFoodsGer": 2, - "alltenses": 3, - "Dana": 1, - "Dannells": 1, - "Licensed": 1, - "FoodsHeb": 2, - "Species": 8, - "mod": 7, - "Modified": 5, - "sp": 11, - "Indef": 6, - "Def": 21, - "T": 2, - "regAdj2": 3, - "F": 2, - "Type": 9, - "Adj": 4, - "m": 9, - "cn.mod": 2, - "cn.g": 10, - "gvina": 6, - "hagvina": 3, - "gvinot": 6, - "hagvinot": 3, - "defH": 7, - "replaceLastLetter": 7, - "adjective": 22, - "tov": 6, - "tova": 3, - "tovim": 3, - "tovot": 3, - "to": 6, - "c@": 3, - "italki": 3, - "italk": 4, - "Vikash": 1, - "Rauniyar": 1, - "FoodsHin": 2, - "regN": 15, - "lark": 8, - "ms": 4, - "mp": 4, - "acch": 6, - "incomplete": 1, - "this_Det": 2, - "that_Det": 2, - "these_Det": 2, - "those_Det": 2, - "wine_N": 7, - "pizza_N": 7, - "cheese_N": 7, - "fish_N": 8, - "fresh_A": 7, - "warm_A": 8, - "italian_A": 7, - "expensive_A": 7, - "delicious_A": 7, - "boring_A": 7, - "prelude": 2, - "Martha": 1, - "Dis": 1, - "Brandt": 1, - "FoodsIce": 1, - "Defin": 9, - "Ind": 14, - "the": 7, - "word": 3, + "(": 365, + "defmacro": 5, + "name": 6, + "parameter*": 1, + ")": 372, + "body": 8, + "form*": 1, + "Note": 2, + "that": 5, + "backquote": 1, + "expression": 2, "is": 6, - "more": 1, - "commonly": 1, - "used": 2, - "Iceland": 1, - "but": 1, - "Icelandic": 1, - "for": 6, - "it": 2, - "defOrInd": 2, - "order": 1, - "given": 1, - "forms": 2, - "mSg": 1, - "fSg": 1, - "nSg": 1, - "mPl": 1, - "fPl": 1, - "nPl": 1, - "mSgDef": 1, - "f/nSgDef": 1, - "_PlDef": 1, - "masc": 3, - "fem": 2, - "neutr": 2, - "x1": 3, - "x9": 1, - "ferskur": 5, - "fersk": 11, - "ferskt": 2, - "ferskir": 2, - "ferskar": 2, - "fersk_pl": 2, - "ferski": 2, - "ferska": 2, - "fersku": 2, - "t": 28, - "": 1, - "<": 10, - "Predef.tk": 2, - "FoodsIta": 1, - "SyntaxIta": 2, - "LexFoodsIta": 2, - "../lib/src/prelude": 1, - "Zofia": 1, - "Stankiewicz": 1, - "FoodsJpn": 1, - "Style": 3, - "AdjUse": 4, - "AdjType": 4, - "quality.t": 3, - "IAdj": 4, - "Plain": 3, - "Polite": 4, - "NaAdj": 4, - "na": 1, - "adjectives": 2, - "have": 2, - "different": 1, - "as": 2, - "attributes": 1, - "predicates": 2, - "phrase": 1, - "types": 1, - "can": 1, - "form": 4, - "without": 1, - "cannot": 1, - "sakana": 6, - "chosenna": 2, - "chosen": 2, - "akai": 2, - "Inese": 1, - "Bernsone": 1, - "FoodsLav": 1, - "Q": 5, - "Q1": 5, - "q": 10, - "spec": 2, - "Q2": 3, - "specAdj": 2, - "skaists": 5, - "skaista": 2, - "skaisti": 2, - "skaistas": 2, - "skaistais": 2, - "skaistaa": 2, - "skaistie": 2, - "skaistaas": 2, - "skaist": 8, - "John": 1, - "J.": 1, - "Camilleri": 1, - "FoodsMlt": 1, - "uniAdj": 2, - "Create": 6, - "an": 2, - "full": 1, - "function": 1, - "Params": 4, - "Sing": 4, - "Plural": 2, - "iswed": 2, - "sewda": 2, - "suwed": 3, - "regular": 2, - "Param": 2, - "frisk": 4, - "eg": 1, - "tal": 1, - "buzz": 1, - "uni": 4, - "Singular": 1, - "inherent": 1, - "ktieb": 2, - "kotba": 2, - "Copula": 1, - "linking": 1, - "verb": 1, - "article": 3, - "taking": 1, - "into": 1, - "account": 1, - "first": 1, - "letter": 1, - "next": 1, - "pre": 1, - "cons@": 1, - "cons": 1, - "determinant": 1, - "Sg/Pl": 1, - "string": 1, - "default": 1, - "gender": 2, - "number": 2, - "/GF/lib/src/prelude": 1, - "Nyamsuren": 1, - "Erdenebadrakh": 1, - "FoodsMon": 1, - "prefixSS": 1, - "Dinesh": 1, - "Simkhada": 1, - "FoodsNep": 1, - "adjPl": 2, - "bor": 2, - "FoodsOri": 1, - "FoodsPes": 1, - "optimize": 1, - "noexpand": 1, - "Add": 8, - "prep": 11, - "Indep": 4, - "kind.prep": 1, - "quality.prep": 1, - "at": 3, - "a.prep": 1, - "must": 1, - "be": 1, - "written": 1, - "x4": 2, - "pytzA": 3, - "pytzAy": 1, - "pytzAhA": 3, - "pr": 4, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "mrd": 8, - "tAzh": 8, - "tAzhy": 2, - "Rami": 1, - "Shashati": 1, - "FoodsPor": 1, - "mkAdjReg": 7, - "QualityT": 5, - "bonito": 2, - "bonita": 2, - "bonitos": 2, - "bonitas": 2, - "pattern": 1, - "adjSozinho": 2, - "sozinho": 3, - "sozinh": 4, - "independent": 1, - "adjUtil": 2, - "util": 3, - "uteis": 3, - "smart": 1, - "paradigm": 1, - "adjcetives": 1, - "ItemT": 2, - "KindT": 4, - "num": 6, - "noun.g": 3, - "animal": 2, - "animais": 2, - "gen": 4, - "carro": 3, - "Ramona": 1, - "Enache": 1, - "FoodsRon": 1, - "NGender": 6, - "NMasc": 2, - "NFem": 3, - "NNeut": 2, - "mkTab": 5, - "mkNoun": 5, - "getAgrGender": 3, - "acesta": 2, - "aceasta": 2, - "gg": 3, - "det.s": 1, - "peste": 2, - "pesti": 2, - "scump": 2, - "scumpa": 2, - "scumpi": 2, - "scumpe": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "ng": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "FoodsSpa": 1, - "SyntaxSpa": 1, - "StructuralSpa": 1, - "ParadigmsSpa": 1, - "FoodsSwe": 1, - "SyntaxSwe": 2, - "LexFoodsSwe": 2, - "**": 1, - "sv_SE": 1, - "FoodsTha": 1, - "SyntaxTha": 1, - "LexiconTha": 1, - "ParadigmsTha": 1, - "R": 4, - "ResTha": 1, - "R.thword": 4, - "FoodsTsn": 1, - "NounClass": 28, - "r": 9, - "b": 9, - "Bool": 5, - "p_form": 18, - "TType": 16, - "mkPredDescrCop": 2, - "item.c": 1, - "quality.p_form": 1, - "kind.w": 4, - "mkDemPron1": 3, - "kind.q": 4, - "mkDemPron2": 3, - "mkMod": 2, - "Lexicon": 1, - "mkNounNC14_6": 2, - "mkNounNC9_10": 4, - "smartVery": 2, - "mkVarAdj": 2, - "mkOrdAdj": 4, - "mkPerAdj": 2, - "mkVerbRel": 2, - "NC9_10": 14, - "NC14_6": 14, - "P": 4, - "V": 4, - "ModV": 4, - "y.b": 1, - "True": 3, - "y.w": 2, - "y.r": 2, - "y.c": 14, - "y.q": 4, - "smartQualRelPart": 5, - "x.t": 10, - "smartDescrCop": 5, - "False": 3, - "mkVeryAdj": 2, - "x.p_form": 2, - "mkVeryVerb": 3, - "mkQualRelPart_PName": 2, - "mkQualRelPart": 2, - "mkDescrCop_PName": 2, - "mkDescrCop": 2, - "FoodsTur": 1, - "Case": 10, - "softness": 4, - "Softness": 5, - "h": 4, - "Harmony": 5, - "Reason": 1, - "excluding": 1, - "plural": 3, - "In": 1, - "Turkish": 1, - "if": 1, - "subject": 1, - "not": 2, - "human": 2, - "being": 1, - "then": 1, - "singular": 1, - "regardless": 1, - "subject.": 1, - "Since": 1, - "all": 1, - "possible": 1, - "subjects": 1, - "are": 1, - "non": 1, - "do": 1, - "need": 1, - "form.": 1, - "quality.softness": 1, - "quality.h": 1, - "quality.c": 1, - "Nom": 9, - "Gen": 5, - "a.c": 1, - "a.softness": 1, - "a.h": 1, - "I_Har": 4, - "Ih_Har": 4, - "U_Har": 4, - "Uh_Har": 4, - "Ih": 1, - "Uh": 1, - "Soft": 3, - "Hard": 3, - "overload": 1, - "mkn": 1, - "peynir": 2, - "peynirler": 2, - "[": 2, - "]": 2, - "sarap": 2, - "saraplar": 2, - "sarabi": 2, - "saraplari": 2, - "italyan": 4, - "ca": 2, - "getSoftness": 2, - "getHarmony": 2, - "See": 1, - "comment": 1, - "lines": 1, - "excluded": 1, - "copula.": 1, - "base": 4, - "*": 1, - "Shafqat": 1, - "Virk": 1, - "FoodsUrd": 1, - "coupla": 2, - "interface": 1, - "N": 4, - "A": 6, - "instance": 5, - "ParadigmsCat": 1, - "M": 1, - "MorphoCat": 1, - "M.Masc": 2, - "ParadigmsFin": 1, - "ParadigmsGer": 1, - "ParadigmsIta": 1, - "ParadigmsSwe": 1, - "resource": 1, - "ne": 2, - "muz": 2, - "muzi": 2, - "msg": 3, - "fsg": 3, - "nsg": 3, - "mpl": 3, - "fpl": 3, - "npl": 3, - "mlad": 7, - "vynikajici": 7 - }, - "Groovy": { - "task": 1, - "echoDirListViaAntBuilder": 1, - "(": 7, - ")": 7, - "{": 9, - "description": 1, - "//Docs": 1, - "http": 1, - "//ant.apache.org/manual/Types/fileset.html": 1, - "//Echo": 1, - "the": 3, - "Gradle": 1, - "project": 1, - "name": 1, - "via": 1, - "ant": 1, - "echo": 1, - "plugin": 1, - "ant.echo": 3, - "message": 1, - "project.name": 1, - "path": 2, - "//Gather": 1, - "list": 1, - "of": 1, - "files": 1, - "in": 1, - "a": 1, - "subdirectory": 1, - "ant.fileScanner": 1, - "fileset": 1, - "dir": 1, - "}": 9, - ".each": 1, - "//Print": 1, - "each": 1, - "file": 1, - "to": 1, - "screen": 1, - "with": 1, - "CWD": 1, - "projectDir": 1, - "removed.": 1, - "println": 3, - "it.toString": 1, - "-": 1, - "SHEBANG#!groovy": 2, - "html": 3, - "head": 2, - "component": 1, - "title": 2, - "body": 1, - "p": 1 - }, - "Groovy Server Pages": { - "": 4, - "": 4, - "": 4, - "http": 3, - "equiv=": 3, - "content=": 4, - "": 4, - "Testing": 3, - "with": 3, - "SiteMesh": 2, - "and": 2, - "Resources": 2, - "": 4, - "name=": 1, - "": 2, - "module=": 2, - "": 4, - "": 4, - "": 4, - "": 4, - "<%@>": 1, - "page": 2, - "contentType=": 1, - "Using": 1, - "directive": 1, - "tag": 1, - "

": 2, - "Print": 1, - "{": 1, - "example": 1, - "}": 1 - }, - "Haml": { - "%": 1, - "p": 1, - "Hello": 1, - "World": 1 - }, - "Handlebars": { - "
": 5, - "class=": 5, - "

": 3, - "{": 16, - "title": 1, - "}": 16, - "

": 3, - "body": 3, - "
": 5, - "By": 2, - "fullName": 2, - "author": 2, - "Comments": 1, - "#each": 1, - "comments": 1, - "

": 1, - "

": 1, - "/each": 1 - }, - "Haskell": { - "import": 6, - "Data.Char": 1, - "main": 4, - "IO": 2, - "(": 8, - ")": 8, - "do": 3, - "let": 2, - "hello": 2, - "putStrLn": 3, - "map": 13, - "toUpper": 1, - "module": 2, - "Main": 1, - "where": 4, - "Sudoku": 9, - "Data.Maybe": 2, - "sudoku": 36, - "[": 4, - "]": 3, - "pPrint": 5, - "+": 2, - "fromMaybe": 1, - "solve": 5, - "isSolved": 4, - "Data.List": 1, - "Data.List.Split": 1, - "type": 1, - "Int": 1, - "-": 3, - "Maybe": 1, - "|": 8, - "Just": 1, - "otherwise": 2, - "index": 27, - "<": 1, - "elemIndex": 1, - "sudokus": 2, - "nextTest": 5, - "i": 7, - "<->": 1, - "1": 2, - "9": 7, - "checkRow": 2, - "checkColumn": 2, - "checkBox": 2, - "listToMaybe": 1, - "mapMaybe": 1, - "take": 1, - "drop": 1, - "length": 12, - "getRow": 3, - "nub": 6, - "getColumn": 3, - "getBox": 3, - "filter": 3, - "0": 3, - "chunksOf": 10, - "quot": 3, - "transpose": 4, - "mod": 2, - "concat": 2, - "concatMap": 2, - "3": 4, - "27": 1, - "Bool": 1, - "product": 1, - "False": 4, - ".": 4, - "sudokuRows": 4, - "/": 3, - "sudokuColumns": 3, - "sudokuBoxes": 3, - "True": 1, - "String": 1, - "intercalate": 2, - "show": 1 - }, - "HTML": { - "": 2, - "HTML": 2, - "PUBLIC": 2, - "W3C": 2, - "DTD": 3, - "4": 1, - "0": 2, - "Frameset": 1, - "EN": 2, - "http": 3, - "www": 2, - "w3": 2, - "org": 2, - "TR": 2, - "REC": 1, - "html40": 1, - "frameset": 1, - "dtd": 2, - "": 2, - "": 2, - "Common_meta": 1, - "(": 14, - ")": 14, - "": 2, - "Android": 5, - "API": 7, - "Differences": 2, - "Report": 2, - "": 2, - "": 2, - "
": 10, - "class=": 22, - "Header": 1, - "

": 1, - "

": 1, - "

": 3, - "This": 1, - "document": 1, - "details": 1, - "the": 11, - "changes": 2, - "in": 4, - "framework": 2, - "API.": 3, - "It": 2, - "shows": 1, - "additions": 1, - "modifications": 1, - "and": 5, - "removals": 2, - "for": 2, - "packages": 1, - "classes": 1, - "methods": 1, - "fields.": 1, - "Each": 1, - "reference": 1, - "to": 3, - "an": 3, - "change": 2, - "includes": 1, - "a": 4, - "brief": 1, - "description": 1, - "of": 5, - "explanation": 1, - "suggested": 1, - "workaround": 1, - "where": 1, - "available.": 1, - "

": 3, - "The": 2, - "differences": 2, - "described": 1, - "this": 2, - "report": 1, - "are": 3, - "based": 1, - "comparison": 1, - "APIs": 1, - "whose": 1, - "versions": 1, - "specified": 1, - "upper": 1, - "-": 1, - "right": 1, - "corner": 1, - "page.": 1, - "compares": 1, - "newer": 1, - "older": 2, - "version": 1, - "noting": 1, - "any": 1, - "relative": 1, - "So": 1, - "example": 1, - "indicated": 1, - "no": 1, - "longer": 1, - "present": 1, - "For": 1, - "more": 1, - "information": 1, - "about": 1, - "SDK": 1, - "see": 1, - "": 8, - "href=": 9, - "target=": 3, - "product": 1, - "site": 1, - "": 8, - ".": 1, - "if": 4, - "no_delta": 1, - "

": 1, - "Congratulation": 1, - "

": 1, - "No": 1, - "were": 1, - "detected": 1, - "between": 1, - "two": 1, - "provided": 1, - "APIs.": 1, - "endif": 4, - "removed_packages": 2, - "Table": 3, - "name": 3, - "rows": 3, - "{": 3, - "it.from": 1, - "ModelElementRow": 1, - "}": 3, - "
": 3, - "added_packages": 2, - "it.to": 2, - "PackageAddedLink": 1, - "SimpleTableRow": 2, - "changed_packages": 2, - "PackageChangedLink": 1, - "
": 11, - "": 2, - "": 2, - "html": 1, - "XHTML": 1, - "1": 1, - "Transitional": 1, - "xhtml1": 2, - "transitional": 1, - "xmlns=": 1, - "": 1, - "equiv=": 1, - "content=": 1, - "Related": 2, - "Pages": 2, - "": 1, - "rel=": 1, - "type=": 1, - "": 1, - "Main": 1, - "Page": 1, - "&": 3, - "middot": 3, - ";": 3, - "Class": 2, - "Overview": 2, - "Hierarchy": 1, - "All": 1, - "Classes": 1, - "Here": 1, - "is": 1, - "list": 1, - "all": 1, - "related": 1, - "documentation": 1, - "pages": 1, - "": 1, - "": 2, - "id=": 2, - "": 4, - "": 2, - "16": 1, - "Layout": 1, - "System": 1, - "
": 4, - "": 2, - "src=": 2, - "alt=": 2, - "width=": 1, - "height=": 2, - "
": 1, - "Generated": 1, - "with": 1, - "Doxygen": 1 - }, - "Hy": { - ";": 4, - "Fibonacci": 1, - "example": 2, - "in": 2, - "Hy.": 2, - "(": 28, - "defn": 2, - "fib": 4, - "[": 10, - "n": 5, - "]": 10, - "if": 2, - "<": 1, - ")": 28, - "+": 1, - "-": 10, - "__name__": 1, - "for": 2, - "x": 3, - "print": 1, - "The": 1, - "concurrent.futures": 2, - "import": 1, - "ThreadPoolExecutor": 2, - "as": 3, - "completed": 2, - "random": 1, - "randint": 2, - "sh": 1, - "sleep": 2, - "task": 2, - "to": 2, - "do": 2, - "with": 1, - "executor": 2, - "setv": 1, - "jobs": 2, - "list": 1, - "comp": 1, - ".submit": 1, - "range": 1, - "future": 2, - ".result": 1 - }, - "IDL": { - ";": 59, - "docformat": 3, - "+": 8, - "Inverse": 1, - "hyperbolic": 2, - "cosine.": 1, - "Uses": 1, - "the": 7, - "formula": 1, - "text": 1, - "{": 3, - "acosh": 1, - "}": 3, - "(": 26, - "z": 9, - ")": 26, - "ln": 1, - "sqrt": 4, - "-": 14, - "Examples": 2, - "The": 1, - "arc": 1, - "sine": 1, - "function": 4, - "looks": 1, - "like": 2, - "IDL": 5, - "x": 8, - "*": 2, - "findgen": 1, - "/": 1, - "plot": 1, - "mg_acosh": 2, - "xstyle": 1, - "This": 1, - "should": 1, - "look": 1, - "..": 1, - "image": 1, - "acosh.png": 1, - "Returns": 3, - "float": 1, - "double": 2, - "complex": 2, - "or": 1, - "depending": 1, - "on": 1, - "input": 2, - "Params": 3, - "in": 4, - "required": 4, - "type": 5, - "numeric": 1, - "compile_opt": 3, - "strictarr": 3, - "return": 5, - "alog": 1, - "end": 5, - "MODULE": 1, - "mg_analysis": 1, - "DESCRIPTION": 1, - "Tools": 1, - "for": 2, - "analysis": 1, - "VERSION": 1, - "SOURCE": 1, - "mgalloy": 1, - "BUILD_DATE": 1, - "January": 1, - "FUNCTION": 2, - "MG_ARRAY_EQUAL": 1, - "KEYWORDS": 1, - "MG_TOTAL": 1, - "Find": 1, - "greatest": 1, - "common": 1, - "denominator": 1, - "GCD": 1, - "two": 1, - "positive": 2, - "integers.": 1, - "integer": 5, - "a": 4, - "first": 1, - "b": 4, - "second": 1, - "mg_gcd": 2, - "on_error": 1, - "if": 5, - "n_params": 1, - "ne": 1, - "then": 5, - "message": 2, - "mg_isinteger": 2, - "||": 1, - "begin": 2, - "endif": 2, - "_a": 3, - "abs": 2, - "_b": 3, - "minArg": 5, - "<": 1, - "maxArg": 3, - "eq": 2, - "remainder": 3, - "mod": 1, - "Truncate": 1, - "argument": 2, - "towards": 1, - "i.e.": 1, - "takes": 1, - "FLOOR": 1, - "of": 4, - "values": 2, - "and": 1, - "CEIL": 1, - "negative": 1, - "values.": 1, - "Try": 1, - "main": 2, - "level": 2, - "program": 2, - "at": 1, - "this": 1, - "file.": 1, - "It": 1, - "does": 1, - "print": 4, - "mg_trunc": 3, - "[": 6, - "]": 6, - "floor": 2, - "ceil": 2, - "array": 2, - "same": 1, - "as": 1, - "float/double": 1, - "containing": 1, - "to": 1, - "truncate": 1, - "result": 3, - "posInd": 3, - "where": 1, - "gt": 2, - "nposInd": 2, - "L": 1, - "example": 1 - }, - "Idris": { - "module": 1, - "Prelude.Char": 1, - "import": 1, - "Builtins": 1, - "isUpper": 4, - "Char": 13, - "-": 8, - "Bool": 8, - "x": 36, - "&&": 3, - "<=>": 3, - "Z": 1, - "isLower": 4, - "z": 1, - "isAlpha": 3, - "||": 9, - "isDigit": 3, - "(": 8, - "9": 1, - "isAlphaNum": 2, - "isSpace": 2, - "isNL": 2, - "toUpper": 3, - "if": 2, - ")": 7, - "then": 2, - "prim__intToChar": 2, - "prim__charToInt": 2, - "else": 2, - "toLower": 2, - "+": 1, - "isHexDigit": 2, - "elem": 1, - "hexChars": 3, - "where": 1, - "List": 1, - "[": 1, - "]": 1 - }, - "Inform 7": { - "by": 3, - "Andrew": 3, - "Plotkin.": 2, - "Include": 1, - "Trivial": 3, - "Extension": 3, - "The": 1, - "Kitchen": 1, - "is": 4, - "a": 2, - "room.": 1, - "[": 1, - "This": 1, - "kitchen": 1, - "modelled": 1, - "after": 1, - "the": 4, - "one": 1, - "in": 2, - "Zork": 1, - "although": 1, - "it": 1, - "lacks": 1, - "detail": 1, - "to": 2, - "establish": 1, - "this": 1, - "player.": 1, - "]": 1, - "A": 3, - "purple": 1, - "cow": 3, - "called": 1, - "Gelett": 2, - "Kitchen.": 1, - "Instead": 1, - "of": 3, - "examining": 1, - "say": 1, - "Version": 1, - "Plotkin": 1, - "begins": 1, - "here.": 2, - "kind": 1, - "animal.": 1, - "can": 1, - "be": 1, - "purple.": 1, - "ends": 1 - }, - "INI": { - ";": 1, - "editorconfig.org": 1, - "root": 1, - "true": 3, - "[": 2, - "*": 1, - "]": 2, - "indent_style": 1, - "space": 1, - "indent_size": 1, - "end_of_line": 1, - "lf": 1, - "charset": 1, - "utf": 1, - "-": 1, - "trim_trailing_whitespace": 1, - "insert_final_newline": 1, - "user": 1, - "name": 1, - "Josh": 1, - "Peek": 1, - "email": 1, - "josh@github.com": 1 - }, - "Ioke": { - "SHEBANG#!ioke": 1, - "println": 1 - }, - "Jade": { - "p.": 1, - "Hello": 1, - "World": 1 - }, - "Java": { - "package": 6, - "clojure.asm": 1, - ";": 891, - "import": 66, - "java.lang.reflect.Constructor": 1, - "java.lang.reflect.Method": 1, - "public": 214, - "class": 12, - "Type": 42, - "{": 434, - "final": 78, - "static": 141, - "int": 62, - "VOID": 5, - "BOOLEAN": 6, - "CHAR": 6, - "BYTE": 6, - "SHORT": 6, - "INT": 6, - "FLOAT": 6, - "LONG": 7, - "DOUBLE": 7, - "ARRAY": 6, - "OBJECT": 7, - "VOID_TYPE": 3, - "new": 131, - "(": 1097, - ")": 1097, - "BOOLEAN_TYPE": 3, - "CHAR_TYPE": 3, - "BYTE_TYPE": 3, - "SHORT_TYPE": 3, - "INT_TYPE": 3, - "FLOAT_TYPE": 3, - "LONG_TYPE": 3, - "DOUBLE_TYPE": 3, - "private": 77, - "sort": 18, - "char": 13, - "[": 54, - "]": 54, - "buf": 43, - "off": 25, - "len": 24, - "this.sort": 2, - "this.len": 2, - "}": 434, - "this.buf": 2, - "this.off": 1, - "getType": 10, - "String": 33, - "typeDescriptor": 1, - "return": 267, - "typeDescriptor.toCharArray": 1, - "Class": 10, - "c": 21, - "if": 116, - "c.isPrimitive": 2, - "Integer.TYPE": 2, - "else": 33, - "Void.TYPE": 3, - "Boolean.TYPE": 2, - "Byte.TYPE": 2, - "Character.TYPE": 2, - "Short.TYPE": 2, - "Double.TYPE": 2, - "Float.TYPE": 2, - "getDescriptor": 15, - "getObjectType": 1, - "name": 10, - "l": 5, - "name.length": 2, - "+": 83, - "name.getChars": 1, - "getArgumentTypes": 2, - "methodDescriptor": 2, - "methodDescriptor.toCharArray": 2, - "size": 16, - "while": 10, - "true": 21, - "car": 18, - "break": 4, - "args": 6, - ".len": 1, - "Method": 3, - "method": 2, - "classes": 2, - "method.getParameterTypes": 1, - "types": 3, - "classes.length": 2, - "for": 16, - "i": 54, - "-": 15, - "getReturnType": 2, - "methodDescriptor.indexOf": 1, - "method.getReturnType": 1, - "switch": 6, - "case": 56, - "//": 16, - "default": 6, - "getSort": 1, - "getDimensions": 3, - "getElementType": 2, - "getClassName": 1, - "StringBuffer": 14, - "b": 7, - ".getClassName": 1, - "b.append": 1, - "b.toString": 1, - ".replace": 2, - "getInternalName": 2, - "buf.toString": 4, - "getMethodDescriptor": 2, - "returnType": 1, - "argumentTypes": 2, - "buf.append": 21, - "<": 13, - "argumentTypes.length": 1, - ".getDescriptor": 1, - "returnType.getDescriptor": 1, - "void": 25, - "c.getName": 1, - "getConstructorDescriptor": 1, - "Constructor": 1, - "parameters": 4, - "c.getParameterTypes": 1, - "parameters.length": 2, - ".toString": 1, - "m": 1, - "m.getParameterTypes": 1, - "m.getReturnType": 1, - "d": 10, - "d.isPrimitive": 1, - "d.isArray": 1, - "d.getComponentType": 1, - "d.getName": 1, - "name.charAt": 1, - "getSize": 1, - "||": 8, - "getOpcode": 1, - "opcode": 17, - "Opcodes.IALOAD": 1, - "Opcodes.IASTORE": 1, - "boolean": 36, - "equals": 2, - "Object": 31, - "o": 12, - "this": 16, - "instanceof": 19, - "false": 12, - "t": 6, - "t.sort": 1, - "Type.OBJECT": 2, - "Type.ARRAY": 2, - "t.len": 1, - "j": 9, - "t.off": 1, - "end": 4, - "t.buf": 1, - "hashCode": 1, - "hc": 4, - "*": 2, - "toString": 1, - "clojure.lang": 1, - "java.lang.ref.Reference": 1, - "java.math.BigInteger": 1, - "java.util.Map": 3, - "java.util.concurrent.ConcurrentHashMap": 1, - "java.lang.ref.SoftReference": 1, - "java.lang.ref.ReferenceQueue": 1, - "Util": 1, - "equiv": 17, - "k1": 40, - "k2": 38, - "null": 80, - "Number": 9, - "&&": 6, - "Numbers.equal": 1, - "IPersistentCollection": 5, - "pcequiv": 2, - "k1.equals": 2, - "long": 5, - "double": 4, - "c1": 2, - "c2": 2, - ".equiv": 2, - "identical": 1, - "classOf": 1, - "x": 8, - "x.getClass": 1, - "compare": 1, - "Numbers.compare": 1, - "Comparable": 1, - ".compareTo": 1, - "hash": 3, - "o.hashCode": 2, - "hasheq": 1, - "Numbers.hasheq": 1, - "IHashEq": 2, - ".hasheq": 1, - "hashCombine": 1, - "seed": 5, - "//a": 1, - "la": 1, - "boost": 1, - "e3779b9": 1, - "<<": 1, - "isPrimitive": 1, - "isInteger": 1, - "Integer": 2, - "Long": 1, - "BigInt": 1, - "BigInteger": 1, - "ret1": 2, - "ret": 4, - "nil": 2, - "ISeq": 2, - "": 1, - "clearCache": 1, - "ReferenceQueue": 1, - "rq": 1, - "ConcurrentHashMap": 1, - "K": 2, - "Reference": 3, - "": 3, - "cache": 1, - "//cleanup": 1, - "any": 1, - "dead": 1, - "entries": 1, - "rq.poll": 2, - "Map.Entry": 1, - "e": 31, - "cache.entrySet": 1, - "val": 3, - "e.getValue": 1, - "val.get": 1, - "cache.remove": 1, - "e.getKey": 1, - "RuntimeException": 5, - "runtimeException": 2, - "s": 10, - "Throwable": 4, - "sneakyThrow": 1, - "throw": 9, - "NullPointerException": 3, - "Util.": 1, - "": 1, - "sneakyThrow0": 2, - "@SuppressWarnings": 1, - "": 1, - "extends": 10, - "throws": 26, - "T": 2, - "nokogiri.internals": 1, - "nokogiri.internals.NokogiriHelpers.getNokogiriClass": 1, - "nokogiri.internals.NokogiriHelpers.isNamespace": 1, - "nokogiri.internals.NokogiriHelpers.stringOrNil": 1, - "nokogiri.HtmlDocument": 1, - "nokogiri.NokogiriService": 1, - "nokogiri.XmlDocument": 1, - "org.apache.xerces.parsers.DOMParser": 1, - "org.apache.xerces.xni.Augmentations": 1, - "org.apache.xerces.xni.QName": 1, - "org.apache.xerces.xni.XMLAttributes": 1, - "org.apache.xerces.xni.XNIException": 1, - "org.apache.xerces.xni.parser.XMLDocumentFilter": 1, - "org.apache.xerces.xni.parser.XMLParserConfiguration": 1, - "org.cyberneko.html.HTMLConfiguration": 1, - "org.cyberneko.html.filters.DefaultFilter": 1, - "org.jruby.Ruby": 2, - "org.jruby.RubyClass": 2, - "org.jruby.runtime.ThreadContext": 1, - "org.jruby.runtime.builtin.IRubyObject": 2, - "org.w3c.dom.Document": 1, - "org.w3c.dom.NamedNodeMap": 1, - "org.w3c.dom.NodeList": 1, - "HtmlDomParserContext": 3, - "XmlDomParserContext": 1, - "Ruby": 43, - "runtime": 88, - "IRubyObject": 35, - "options": 4, - "super": 7, - "encoding": 2, - "@Override": 6, - "protected": 8, - "initErrorHandler": 1, - "options.strict": 1, - "errorHandler": 6, - "NokogiriStrictErrorHandler": 1, - "options.noError": 2, - "options.noWarning": 2, - "NokogiriNonStrictErrorHandler4NekoHtml": 1, - "initParser": 1, - "XMLParserConfiguration": 1, - "config": 2, - "HTMLConfiguration": 1, - "XMLDocumentFilter": 3, - "removeNSAttrsFilter": 2, - "RemoveNSAttrsFilter": 2, - "elementValidityCheckFilter": 3, - "ElementValidityCheckFilter": 3, - "//XMLDocumentFilter": 1, - "filters": 3, - "config.setErrorHandler": 1, - "this.errorHandler": 2, - "parser": 1, - "DOMParser": 1, - "setProperty": 4, - "java_encoding": 2, - "setFeature": 4, - "enableDocumentFragment": 1, - "XmlDocument": 8, - "getNewEmptyDocument": 1, - "ThreadContext": 2, - "context": 8, - "XmlDocument.rbNew": 1, - "getNokogiriClass": 1, - "context.getRuntime": 3, - "wrapDocument": 1, - "RubyClass": 92, - "klazz": 107, - "Document": 2, - "document": 5, - "HtmlDocument": 7, - "htmlDocument": 6, - "NokogiriService.HTML_DOCUMENT_ALLOCATOR.allocate": 1, - "htmlDocument.setDocumentNode": 1, - "ruby_encoding.isNil": 1, - "detected_encoding": 2, - "detected_encoding.isNil": 1, - "ruby_encoding": 3, - "charset": 2, - "tryGetCharsetFromHtml5MetaTag": 2, - "stringOrNil": 1, - "htmlDocument.setEncoding": 1, - "htmlDocument.setParsedEncoding": 1, - ".equalsIgnoreCase": 5, - "document.getDocumentElement": 2, - ".getNodeName": 4, - "NodeList": 2, - "list": 1, - ".getChildNodes": 2, - "list.getLength": 1, - "list.item": 2, - "headers": 1, - "headers.getLength": 1, - "headers.item": 2, - "NamedNodeMap": 1, - "nodeMap": 1, - ".getAttributes": 1, - "k": 5, - "nodeMap.getLength": 1, - "nodeMap.item": 2, - ".getNodeValue": 1, - "DefaultFilter": 2, - "startElement": 2, - "QName": 2, - "element": 3, - "XMLAttributes": 2, - "attrs": 4, - "Augmentations": 2, - "augs": 4, - "XNIException": 2, - "attrs.getLength": 1, - "isNamespace": 1, - "attrs.getQName": 1, - "attrs.removeAttributeAt": 1, - "element.uri": 1, - "super.startElement": 2, - "NokogiriErrorHandler": 2, - "element_names": 3, - "g": 1, - "r": 1, - "w": 1, - "y": 1, - "z": 1, - "isValid": 2, - "testee": 1, - "testee.toCharArray": 1, - "index": 4, - ".length": 1, - "testee.equals": 1, - "name.rawname": 2, - "errorHandler.getErrors": 1, - ".add": 1, - "Exception": 1, - "hudson.model": 1, - "hudson.ExtensionListView": 1, - "hudson.Functions": 1, - "hudson.Platform": 1, - "hudson.PluginManager": 1, - "hudson.cli.declarative.CLIResolver": 1, - "hudson.model.listeners.ItemListener": 1, - "hudson.slaves.ComputerListener": 1, - "hudson.util.CopyOnWriteList": 1, - "hudson.util.FormValidation": 1, - "jenkins.model.Jenkins": 1, - "org.jvnet.hudson.reactor.ReactorException": 1, - "org.kohsuke.stapler.QueryParameter": 1, - "org.kohsuke.stapler.Stapler": 1, - "org.kohsuke.stapler.StaplerRequest": 1, - "org.kohsuke.stapler.StaplerResponse": 1, - "javax.servlet.ServletContext": 1, - "javax.servlet.ServletException": 1, - "java.io.File": 1, - "java.io.IOException": 10, - "java.text.NumberFormat": 1, - "java.text.ParseException": 1, - "java.util.Collections": 2, - "java.util.List": 1, - "hudson.Util.fixEmpty": 1, - "Hudson": 5, - "Jenkins": 2, - "transient": 2, - "CopyOnWriteList": 4, - "": 2, - "itemListeners": 2, - "ExtensionListView.createCopyOnWriteList": 2, - "ItemListener.class": 1, - "": 2, - "computerListeners": 2, - "ComputerListener.class": 1, - "@CLIResolver": 1, - "getInstance": 2, - "Jenkins.getInstance": 2, - "File": 2, - "root": 6, - "ServletContext": 2, - "IOException": 8, - "InterruptedException": 2, - "ReactorException": 2, - "PluginManager": 1, - "pluginManager": 2, - "getJobListeners": 1, - "getComputerListeners": 1, - "Slave": 3, - "getSlave": 1, - "Node": 1, - "n": 3, - "getNode": 1, - "List": 3, - "": 2, - "getSlaves": 1, - "slaves": 3, - "setSlaves": 1, - "setNodes": 1, - "TopLevelItem": 3, - "getJob": 1, - "getItem": 1, - "getJobCaseInsensitive": 1, - "match": 2, - "Functions.toEmailSafeString": 2, - "item": 2, - "getItems": 1, - "item.getName": 1, - "synchronized": 1, - "doQuietDown": 2, - "StaplerResponse": 4, - "rsp": 6, - "ServletException": 3, - ".generateResponse": 2, - "doLogRss": 1, - "StaplerRequest": 4, - "req": 6, - "qs": 3, - "req.getQueryString": 1, - "rsp.sendRedirect2": 1, - "doFieldCheck": 3, - "fixEmpty": 8, - "req.getParameter": 4, - "FormValidation": 2, - "@QueryParameter": 4, - "value": 11, - "type": 3, - "errorText": 3, - "warningText": 3, - "FormValidation.error": 4, - "FormValidation.warning": 1, - "try": 26, - "type.equalsIgnoreCase": 2, - "NumberFormat.getInstance": 2, - ".parse": 2, - ".floatValue": 1, - "<=>": 1, - "0": 1, - "error": 1, - "Messages": 1, - "Hudson_NotAPositiveNumber": 1, - "equalsIgnoreCase": 1, - "number": 1, - "negative": 1, - "NumberFormat": 1, - "parse": 1, - "floatValue": 1, - "Messages.Hudson_NotANegativeNumber": 1, - "catch": 27, - "ParseException": 1, - "Messages.Hudson_NotANumber": 1, - "FormValidation.ok": 1, - "isWindows": 1, - "File.pathSeparatorChar": 1, - "isDarwin": 1, - "Platform.isDarwin": 1, - "adminCheck": 3, - "Stapler.getCurrentRequest": 1, - "Stapler.getCurrentResponse": 1, - "isAdmin": 4, - "rsp.sendError": 1, - "StaplerResponse.SC_FORBIDDEN": 1, - ".getACL": 1, - ".hasPermission": 1, - "ADMINISTER": 1, - "XSTREAM.alias": 1, - "Hudson.class": 1, - "MasterComputer": 1, - "Jenkins.MasterComputer": 1, - "CloudList": 3, - "Jenkins.CloudList": 1, - "h": 2, - "needed": 1, - "XStream": 1, - "deserialization": 1, - "nokogiri": 6, - "java.util.HashMap": 1, - "org.jruby.RubyArray": 1, - "org.jruby.RubyFixnum": 1, - "org.jruby.RubyModule": 1, - "org.jruby.runtime.ObjectAllocator": 1, - "org.jruby.runtime.load.BasicLibraryService": 1, - "NokogiriService": 1, - "implements": 3, - "BasicLibraryService": 1, - "nokogiriClassCacheGvarName": 1, - "Map": 1, - "": 2, - "nokogiriClassCache": 2, - "basicLoad": 1, - "ruby": 25, - "init": 2, - "createNokogiriClassCahce": 2, - "Collections.synchronizedMap": 1, - "HashMap": 1, - "nokogiriClassCache.put": 26, - "ruby.getClassFromPath": 26, - "RubyModule": 18, - "ruby.defineModule": 1, - "xmlModule": 7, - "nokogiri.defineModuleUnder": 3, - "xmlSaxModule": 3, - "xmlModule.defineModuleUnder": 1, - "htmlModule": 5, - "htmlSaxModule": 3, - "htmlModule.defineModuleUnder": 1, - "xsltModule": 3, - "createNokogiriModule": 2, - "createSyntaxErrors": 2, - "xmlNode": 5, - "createXmlModule": 2, - "createHtmlModule": 2, - "createDocuments": 2, - "createSaxModule": 2, - "createXsltModule": 2, - "encHandler": 1, - "nokogiri.defineClassUnder": 2, - "ruby.getObject": 13, - "ENCODING_HANDLER_ALLOCATOR": 2, - "encHandler.defineAnnotatedMethods": 1, - "EncodingHandler.class": 1, - "syntaxError": 2, - "ruby.getStandardError": 2, - ".getAllocator": 1, - "xmlSyntaxError": 4, - "xmlModule.defineClassUnder": 23, - "XML_SYNTAXERROR_ALLOCATOR": 2, - "xmlSyntaxError.defineAnnotatedMethods": 1, - "XmlSyntaxError.class": 1, - "node": 14, - "XML_NODE_ALLOCATOR": 2, - "node.defineAnnotatedMethods": 1, - "XmlNode.class": 1, - "attr": 1, - "XML_ATTR_ALLOCATOR": 2, - "attr.defineAnnotatedMethods": 1, - "XmlAttr.class": 1, - "attrDecl": 1, - "XML_ATTRIBUTE_DECL_ALLOCATOR": 2, - "attrDecl.defineAnnotatedMethods": 1, - "XmlAttributeDecl.class": 1, - "characterData": 3, - "comment": 1, - "XML_COMMENT_ALLOCATOR": 2, - "comment.defineAnnotatedMethods": 1, - "XmlComment.class": 1, - "text": 2, - "XML_TEXT_ALLOCATOR": 2, - "text.defineAnnotatedMethods": 1, - "XmlText.class": 1, - "cdata": 1, - "XML_CDATA_ALLOCATOR": 2, - "cdata.defineAnnotatedMethods": 1, - "XmlCdata.class": 1, - "dtd": 1, - "XML_DTD_ALLOCATOR": 2, - "dtd.defineAnnotatedMethods": 1, - "XmlDtd.class": 1, - "documentFragment": 1, - "XML_DOCUMENT_FRAGMENT_ALLOCATOR": 2, - "documentFragment.defineAnnotatedMethods": 1, - "XmlDocumentFragment.class": 1, - "XML_ELEMENT_ALLOCATOR": 2, - "element.defineAnnotatedMethods": 1, - "XmlElement.class": 1, - "elementContent": 1, - "XML_ELEMENT_CONTENT_ALLOCATOR": 2, - "elementContent.defineAnnotatedMethods": 1, - "XmlElementContent.class": 1, - "elementDecl": 1, - "XML_ELEMENT_DECL_ALLOCATOR": 2, - "elementDecl.defineAnnotatedMethods": 1, - "XmlElementDecl.class": 1, - "entityDecl": 1, - "XML_ENTITY_DECL_ALLOCATOR": 2, - "entityDecl.defineAnnotatedMethods": 1, - "XmlEntityDecl.class": 1, - "entityDecl.defineConstant": 6, - "RubyFixnum.newFixnum": 6, - "XmlEntityDecl.INTERNAL_GENERAL": 1, - "XmlEntityDecl.EXTERNAL_GENERAL_PARSED": 1, - "XmlEntityDecl.EXTERNAL_GENERAL_UNPARSED": 1, - "XmlEntityDecl.INTERNAL_PARAMETER": 1, - "XmlEntityDecl.EXTERNAL_PARAMETER": 1, - "XmlEntityDecl.INTERNAL_PREDEFINED": 1, - "entref": 1, - "XML_ENTITY_REFERENCE_ALLOCATOR": 2, - "entref.defineAnnotatedMethods": 1, - "XmlEntityReference.class": 1, - "namespace": 1, - "XML_NAMESPACE_ALLOCATOR": 2, - "namespace.defineAnnotatedMethods": 1, - "XmlNamespace.class": 1, - "nodeSet": 1, - "XML_NODESET_ALLOCATOR": 2, - "nodeSet.defineAnnotatedMethods": 1, - "XmlNodeSet.class": 1, - "pi": 1, - "XML_PROCESSING_INSTRUCTION_ALLOCATOR": 2, - "pi.defineAnnotatedMethods": 1, - "XmlProcessingInstruction.class": 1, - "reader": 1, - "XML_READER_ALLOCATOR": 2, - "reader.defineAnnotatedMethods": 1, - "XmlReader.class": 1, - "schema": 2, - "XML_SCHEMA_ALLOCATOR": 2, - "schema.defineAnnotatedMethods": 1, - "XmlSchema.class": 1, - "relaxng": 1, - "XML_RELAXNG_ALLOCATOR": 2, - "relaxng.defineAnnotatedMethods": 1, - "XmlRelaxng.class": 1, - "xpathContext": 1, - "XML_XPATHCONTEXT_ALLOCATOR": 2, - "xpathContext.defineAnnotatedMethods": 1, - "XmlXpathContext.class": 1, - "htmlElemDesc": 1, - "htmlModule.defineClassUnder": 3, - "HTML_ELEMENT_DESCRIPTION_ALLOCATOR": 2, - "htmlElemDesc.defineAnnotatedMethods": 1, - "HtmlElementDescription.class": 1, - "htmlEntityLookup": 1, - "HTML_ENTITY_LOOKUP_ALLOCATOR": 2, - "htmlEntityLookup.defineAnnotatedMethods": 1, - "HtmlEntityLookup.class": 1, - "xmlDocument": 5, - "XML_DOCUMENT_ALLOCATOR": 2, - "xmlDocument.defineAnnotatedMethods": 1, - "XmlDocument.class": 1, - "//RubyModule": 1, - "htmlDoc": 1, - "html.defineOrGetClassUnder": 1, - "HTML_DOCUMENT_ALLOCATOR": 2, - "htmlDocument.defineAnnotatedMethods": 1, - "HtmlDocument.class": 1, - "xmlSaxParserContext": 5, - "xmlSaxModule.defineClassUnder": 2, - "XML_SAXPARSER_CONTEXT_ALLOCATOR": 2, - "xmlSaxParserContext.defineAnnotatedMethods": 1, - "XmlSaxParserContext.class": 1, - "xmlSaxPushParser": 1, - "XML_SAXPUSHPARSER_ALLOCATOR": 2, - "xmlSaxPushParser.defineAnnotatedMethods": 1, - "XmlSaxPushParser.class": 1, - "htmlSaxParserContext": 4, - "htmlSaxModule.defineClassUnder": 1, - "HTML_SAXPARSER_CONTEXT_ALLOCATOR": 2, - "htmlSaxParserContext.defineAnnotatedMethods": 1, - "HtmlSaxParserContext.class": 1, - "stylesheet": 1, - "xsltModule.defineClassUnder": 1, - "XSLT_STYLESHEET_ALLOCATOR": 2, - "stylesheet.defineAnnotatedMethods": 1, - "XsltStylesheet.class": 2, - "xsltModule.defineAnnotatedMethod": 1, - "ObjectAllocator": 60, - "allocate": 30, - "EncodingHandler": 1, - "clone": 47, - "htmlDocument.clone": 1, - "clone.setMetaClass": 23, - "CloneNotSupportedException": 23, - "HtmlSaxParserContext": 5, - "htmlSaxParserContext.clone": 1, - "HtmlElementDescription": 1, - "HtmlEntityLookup": 1, - "XmlAttr": 5, - "xmlAttr": 3, - "xmlAttr.clone": 1, - "XmlCdata": 5, - "xmlCdata": 3, - "xmlCdata.clone": 1, - "XmlComment": 5, - "xmlComment": 3, - "xmlComment.clone": 1, - "xmlDocument.clone": 1, - "XmlDocumentFragment": 5, - "xmlDocumentFragment": 3, - "xmlDocumentFragment.clone": 1, - "XmlDtd": 5, - "xmlDtd": 3, - "xmlDtd.clone": 1, - "XmlElement": 5, - "xmlElement": 3, - "xmlElement.clone": 1, - "XmlElementDecl": 5, - "xmlElementDecl": 3, - "xmlElementDecl.clone": 1, - "XmlEntityReference": 5, - "xmlEntityRef": 3, - "xmlEntityRef.clone": 1, - "XmlNamespace": 5, - "xmlNamespace": 3, - "xmlNamespace.clone": 1, - "XmlNode": 5, - "xmlNode.clone": 1, - "XmlNodeSet": 5, - "xmlNodeSet": 5, - "xmlNodeSet.clone": 1, - "xmlNodeSet.setNodes": 1, - "RubyArray.newEmptyArray": 1, - "XmlProcessingInstruction": 5, - "xmlProcessingInstruction": 3, - "xmlProcessingInstruction.clone": 1, - "XmlReader": 5, - "xmlReader": 5, - "xmlReader.clone": 1, - "XmlAttributeDecl": 1, - "XmlEntityDecl": 1, - "runtime.newNotImplementedError": 1, - "XmlRelaxng": 5, - "xmlRelaxng": 3, - "xmlRelaxng.clone": 1, - "XmlSaxParserContext": 5, - "xmlSaxParserContext.clone": 1, - "XmlSaxPushParser": 1, - "XmlSchema": 5, - "xmlSchema": 3, - "xmlSchema.clone": 1, - "XmlSyntaxError": 5, - "xmlSyntaxError.clone": 1, - "XmlText": 6, - "xmlText": 3, - "xmlText.clone": 1, - "XmlXpathContext": 5, - "xmlXpathContext": 3, - "xmlXpathContext.clone": 1, - "XsltStylesheet": 4, - "xsltStylesheet": 3, - "xsltStylesheet.clone": 1, - "persons": 1, - "ProtocolBuffer": 2, - "registerAllExtensions": 1, - "com.google.protobuf.ExtensionRegistry": 2, - "registry": 1, - "interface": 1, - "PersonOrBuilder": 2, - "com.google.protobuf.MessageOrBuilder": 1, - "hasName": 5, - "java.lang.String": 15, - "getName": 3, - "com.google.protobuf.ByteString": 13, - "getNameBytes": 5, - "Person": 10, - "com.google.protobuf.GeneratedMessage": 1, - "com.google.protobuf.GeneratedMessage.Builder": 2, - "": 1, - "builder": 4, - "this.unknownFields": 4, - "builder.getUnknownFields": 1, - "noInit": 1, - "com.google.protobuf.UnknownFieldSet.getDefaultInstance": 1, - "defaultInstance": 4, - "getDefaultInstance": 2, - "getDefaultInstanceForType": 2, - "com.google.protobuf.UnknownFieldSet": 2, - "unknownFields": 3, - "@java.lang.Override": 4, - "getUnknownFields": 3, - "com.google.protobuf.CodedInputStream": 5, - "input": 18, - "com.google.protobuf.ExtensionRegistryLite": 8, - "extensionRegistry": 16, - "com.google.protobuf.InvalidProtocolBufferException": 9, - "initFields": 2, - "mutable_bitField0_": 1, - "com.google.protobuf.UnknownFieldSet.Builder": 1, - "com.google.protobuf.UnknownFieldSet.newBuilder": 1, - "done": 4, - "tag": 3, - "input.readTag": 1, - "parseUnknownField": 1, - "bitField0_": 15, - "|": 5, - "name_": 18, - "input.readBytes": 1, - "e.setUnfinishedMessage": 1, - "e.getMessage": 1, - ".setUnfinishedMessage": 1, - "finally": 2, - "unknownFields.build": 1, - "makeExtensionsImmutable": 1, - "com.google.protobuf.Descriptors.Descriptor": 4, - "persons.ProtocolBuffer.internal_static_persons_Person_descriptor": 3, - "com.google.protobuf.GeneratedMessage.FieldAccessorTable": 4, - "internalGetFieldAccessorTable": 2, - "persons.ProtocolBuffer.internal_static_persons_Person_fieldAccessorTable": 2, - ".ensureFieldAccessorsInitialized": 2, - "persons.ProtocolBuffer.Person.class": 2, - "persons.ProtocolBuffer.Person.Builder.class": 2, - "com.google.protobuf.Parser": 2, - "": 3, - "PARSER": 2, - "com.google.protobuf.AbstractParser": 1, - "parsePartialFrom": 1, - "getParserForType": 1, - "NAME_FIELD_NUMBER": 1, - "java.lang.Object": 7, - "&": 7, - "ref": 16, - "bs": 1, - "bs.toStringUtf8": 1, - "bs.isValidUtf8": 1, - "com.google.protobuf.ByteString.copyFromUtf8": 2, - "byte": 4, - "memoizedIsInitialized": 4, - "isInitialized": 5, - "writeTo": 1, - "com.google.protobuf.CodedOutputStream": 2, - "output": 2, - "getSerializedSize": 2, - "output.writeBytes": 1, - ".writeTo": 1, - "memoizedSerializedSize": 3, - ".computeBytesSize": 1, - ".getSerializedSize": 1, - "serialVersionUID": 1, - "L": 1, - "writeReplace": 1, - "java.io.ObjectStreamException": 1, - "super.writeReplace": 1, - "persons.ProtocolBuffer.Person": 22, - "parseFrom": 8, - "data": 8, - "PARSER.parseFrom": 8, - "java.io.InputStream": 4, - "parseDelimitedFrom": 2, - "PARSER.parseDelimitedFrom": 2, - "Builder": 20, - "newBuilder": 5, - "Builder.create": 1, - "newBuilderForType": 2, - "prototype": 2, - ".mergeFrom": 2, - "toBuilder": 1, - "com.google.protobuf.GeneratedMessage.BuilderParent": 2, - "parent": 4, - "": 1, - "persons.ProtocolBuffer.PersonOrBuilder": 1, - "maybeForceBuilderInitialization": 3, - "com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders": 1, - "create": 2, - "clear": 1, - "super.clear": 1, - "buildPartial": 3, - "getDescriptorForType": 1, - "persons.ProtocolBuffer.Person.getDefaultInstance": 2, - "build": 1, - "result": 5, - "result.isInitialized": 1, - "newUninitializedMessageException": 1, - "from_bitField0_": 2, - "to_bitField0_": 3, - "result.name_": 1, - "result.bitField0_": 1, - "onBuilt": 1, - "mergeFrom": 5, - "com.google.protobuf.Message": 1, - "other": 6, - "super.mergeFrom": 1, - "other.hasName": 1, - "other.name_": 1, - "onChanged": 4, - "this.mergeUnknownFields": 1, - "other.getUnknownFields": 1, - "parsedMessage": 5, - "PARSER.parsePartialFrom": 1, - "e.getUnfinishedMessage": 1, - ".toStringUtf8": 1, - "setName": 1, - "clearName": 1, - ".getName": 1, - "setNameBytes": 1, - "defaultInstance.initFields": 1, - "internal_static_persons_Person_descriptor": 3, - "internal_static_persons_Person_fieldAccessorTable": 2, - "com.google.protobuf.Descriptors.FileDescriptor": 5, - "descriptor": 3, - "descriptorData": 2, - "com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner": 2, - "assigner": 2, - "assignDescriptors": 1, - ".getMessageTypes": 1, - ".get": 1, - ".internalBuildGeneratedFileFrom": 1 - }, - "JavaScript": { - "function": 1212, - "(": 8518, - ")": 8526, - "{": 2738, - ";": 4056, - "//": 410, - "jshint": 1, - "_": 9, - "var": 911, - "Modal": 2, - "content": 5, - "options": 56, - "this.options": 6, - "this.": 2, - "element": 19, - ".delegate": 2, - ".proxy": 1, - "this.hide": 1, - "this": 578, - "}": 2714, - "Modal.prototype": 1, - "constructor": 8, - "toggle": 10, - "return": 945, - "[": 1461, - "this.isShown": 3, - "]": 1458, - "show": 10, - "that": 33, - "e": 663, - ".Event": 1, - "element.trigger": 1, - "if": 1230, - "||": 648, - "e.isDefaultPrevented": 2, - ".addClass": 1, - "true": 147, - "escape.call": 1, - "backdrop.call": 1, - "transition": 1, - ".support.transition": 1, - "&&": 1017, - "that.": 3, - "element.hasClass": 1, - "element.parent": 1, - ".length": 24, - "element.appendTo": 1, - "document.body": 8, - "//don": 1, - "in": 170, - "shown": 2, - "hide": 8, - "body": 22, - "modal": 4, - "-": 706, - "open": 2, - "fade": 4, - "hidden": 12, - "
": 4, - "class=": 5, - "static": 2, - "keyup.dismiss.modal": 2, - "object": 59, - "string": 41, - "click.modal.data": 1, - "api": 1, - "data": 145, - "target": 44, - "href": 9, - ".extend": 1, - "target.data": 1, - "this.data": 5, - "e.preventDefault": 1, - "target.modal": 1, - "option": 12, - "window.jQuery": 7, - "Animal": 12, - "Horse": 12, - "Snake": 12, - "sam": 4, - "tom": 4, - "__hasProp": 2, - "Object.prototype.hasOwnProperty": 6, - "__extends": 6, - "child": 17, - "parent": 15, - "for": 262, - "key": 85, - "__hasProp.call": 2, - "ctor": 6, - "this.constructor": 5, - "ctor.prototype": 3, - "parent.prototype": 6, - "child.prototype": 4, - "new": 86, - "child.__super__": 3, - "name": 161, - "this.name": 7, - "Animal.prototype.move": 2, - "meters": 4, - "alert": 11, - "+": 1135, - "Snake.__super__.constructor.apply": 2, - "arguments": 83, - "Snake.prototype.move": 2, - "Snake.__super__.move.call": 2, - "Horse.__super__.constructor.apply": 2, - "Horse.prototype.move": 2, - "Horse.__super__.move.call": 2, - "sam.move": 2, - "tom.move": 2, - ".call": 10, - ".hasOwnProperty": 2, - "Animal.name": 1, - "_super": 4, - "Snake.name": 1, - "Horse.name": 1, - "console.log": 3, - "util": 1, - "require": 9, - "net": 1, - "stream": 1, - "url": 23, - "EventEmitter": 3, - ".EventEmitter": 1, - "FreeList": 2, - ".FreeList": 1, - "HTTPParser": 2, - "process.binding": 1, - ".HTTPParser": 1, - "assert": 8, - ".ok": 1, - "END_OF_FILE": 3, - "debug": 15, - "process.env.NODE_DEBUG": 2, - "/http/.test": 1, - "x": 33, - "console.error": 3, - "else": 307, - "parserOnHeaders": 2, - "headers": 41, - "this.maxHeaderPairs": 2, - "<": 209, - "this._headers.length": 1, - "this._headers": 13, - "this._headers.concat": 1, - "this._url": 1, - "parserOnHeadersComplete": 2, - "info": 2, - "parser": 27, - "info.headers": 1, - "info.url": 1, - "parser._headers": 6, - "parser._url": 4, - "parser.incoming": 9, - "IncomingMessage": 4, - "parser.socket": 4, - "parser.incoming.httpVersionMajor": 1, - "info.versionMajor": 2, - "parser.incoming.httpVersionMinor": 1, - "info.versionMinor": 2, - "parser.incoming.httpVersion": 1, - "parser.incoming.url": 1, - "n": 874, - "headers.length": 2, - "parser.maxHeaderPairs": 4, - "Math.min": 5, - "i": 853, - "k": 302, - "v": 135, - "parser.incoming._addHeaderLine": 2, - "info.method": 2, - "parser.incoming.method": 1, - "parser.incoming.statusCode": 2, - "info.statusCode": 1, - "parser.incoming.upgrade": 4, - "info.upgrade": 2, - "skipBody": 3, - "false": 142, - "response": 3, - "to": 92, - "HEAD": 3, - "or": 38, - "CONNECT": 1, - "parser.onIncoming": 3, - "info.shouldKeepAlive": 1, - "parserOnBody": 2, - "b": 961, - "start": 20, - "len": 11, - "slice": 10, - "b.slice": 1, - "parser.incoming._paused": 2, - "parser.incoming._pendings.length": 2, - "parser.incoming._pendings.push": 2, - "parser.incoming._emitData": 1, - "parserOnMessageComplete": 2, - "parser.incoming.complete": 2, - "parser.incoming.readable": 1, - "parser.incoming._emitEnd": 1, - "parser.socket.readable": 1, - "parser.socket.resume": 1, - "parsers": 2, - "HTTPParser.REQUEST": 2, - "parser.onHeaders": 1, - "parser.onHeadersComplete": 1, - "parser.onBody": 1, - "parser.onMessageComplete": 1, - "exports.parsers": 1, - "CRLF": 13, - "STATUS_CODES": 2, - "exports.STATUS_CODES": 1, - "RFC": 16, - "obsoleted": 1, - "by": 12, - "connectionExpression": 1, - "/Connection/i": 1, - "transferEncodingExpression": 1, - "/Transfer": 1, - "Encoding/i": 1, - "closeExpression": 1, - "/close/i": 1, - "chunkExpression": 1, - "/chunk/i": 1, - "contentLengthExpression": 1, - "/Content": 1, - "Length/i": 1, - "dateExpression": 1, - "/Date/i": 1, - "expectExpression": 1, - "/Expect/i": 1, - "continueExpression": 1, - "/100": 2, - "continue/i": 1, - "dateCache": 5, - "utcDate": 2, - "d": 771, - "Date": 4, - "d.toUTCString": 1, - "setTimeout": 19, - "undefined": 328, - "d.getMilliseconds": 1, - "socket": 26, - "stream.Stream.call": 2, - "this.socket": 10, - "this.connection": 8, - "this.httpVersion": 1, - "null": 427, - "this.complete": 2, - "this.headers": 2, - "this.trailers": 2, - "this.readable": 1, - "this._paused": 3, - "this._pendings": 1, - "this._endEmitted": 3, - "this.url": 1, - "this.method": 2, - "this.statusCode": 3, - "this.client": 1, - "util.inherits": 7, - "stream.Stream": 2, - "exports.IncomingMessage": 1, - "IncomingMessage.prototype.destroy": 1, - "error": 20, - "this.socket.destroy": 3, - "IncomingMessage.prototype.setEncoding": 1, - "encoding": 26, - "StringDecoder": 2, - ".StringDecoder": 1, - "lazy": 1, - "load": 5, - "this._decoder": 2, - "IncomingMessage.prototype.pause": 1, - "this.socket.pause": 1, - "IncomingMessage.prototype.resume": 1, - "this.socket.resume": 1, - "this._emitPending": 1, - "IncomingMessage.prototype._emitPending": 1, - "callback": 23, - "this._pendings.length": 1, - "self": 17, - "process.nextTick": 1, - "while": 53, - "self._paused": 1, - "self._pendings.length": 2, - "chunk": 14, - "self._pendings.shift": 1, - "Buffer.isBuffer": 2, - "self._emitData": 1, - "self.readable": 1, - "self._emitEnd": 1, - "IncomingMessage.prototype._emitData": 1, - "this._decoder.write": 1, - "string.length": 1, - "this.emit": 5, - "IncomingMessage.prototype._emitEnd": 1, - "IncomingMessage.prototype._addHeaderLine": 1, - "field": 36, - "value": 98, - "dest": 12, - "field.toLowerCase": 1, - "switch": 30, - "case": 136, - ".push": 3, - "break": 111, - "default": 21, - "field.slice": 1, - "OutgoingMessage": 5, - "this.output": 3, - "this.outputEncodings": 2, - "this.writable": 1, - "this._last": 3, - "this.chunkedEncoding": 6, - "this.shouldKeepAlive": 4, - "this.useChunkedEncodingByDefault": 4, - "this.sendDate": 3, - "this._hasBody": 6, - "this._trailer": 5, - "this.finished": 4, - "exports.OutgoingMessage": 1, - "OutgoingMessage.prototype.destroy": 1, - "OutgoingMessage.prototype._send": 1, - "this._headerSent": 5, - "typeof": 132, - "this._header": 10, - "this.output.unshift": 1, - "this.outputEncodings.unshift": 1, - "this._writeRaw": 2, - "OutgoingMessage.prototype._writeRaw": 1, - "data.length": 3, - "this.connection._httpMessage": 3, - "this.connection.writable": 3, - "this.output.length": 5, - "this._buffer": 2, - "c": 775, - "this.output.shift": 2, - "this.outputEncodings.shift": 2, - "this.connection.write": 4, - "OutgoingMessage.prototype._buffer": 1, - "length": 48, - "this.output.push": 2, - "this.outputEncodings.push": 2, - "lastEncoding": 2, - "lastData": 2, - "data.constructor": 1, - "lastData.constructor": 1, - "OutgoingMessage.prototype._storeHeader": 1, - "firstLine": 2, - "sentConnectionHeader": 3, - "sentContentLengthHeader": 4, - "sentTransferEncodingHeader": 3, - "sentDateHeader": 3, - "sentExpect": 3, - "messageHeader": 7, - "store": 3, - "connectionExpression.test": 1, - "closeExpression.test": 1, - "self._last": 4, - "self.shouldKeepAlive": 4, - "transferEncodingExpression.test": 1, - "chunkExpression.test": 1, - "self.chunkedEncoding": 1, - "contentLengthExpression.test": 1, - "dateExpression.test": 1, - "expectExpression.test": 1, - "keys": 11, - "Object.keys": 5, - "isArray": 10, - "Array.isArray": 7, - "l": 312, - "keys.length": 5, - "j": 265, - "value.length": 1, - "shouldSendKeepAlive": 2, - "this.agent": 2, - "this._send": 8, - "OutgoingMessage.prototype.setHeader": 1, - "arguments.length": 18, - "throw": 27, - "Error": 16, - "name.toLowerCase": 6, - "this._headerNames": 5, - "OutgoingMessage.prototype.getHeader": 1, - "OutgoingMessage.prototype.removeHeader": 1, - "delete": 39, - "OutgoingMessage.prototype._renderHeaders": 1, - "OutgoingMessage.prototype.write": 1, - "this._implicitHeader": 2, - "TypeError": 2, - "chunk.length": 2, - "ret": 62, - "Buffer.byteLength": 2, - "len.toString": 2, - "OutgoingMessage.prototype.addTrailers": 1, - "OutgoingMessage.prototype.end": 1, - "hot": 3, - ".toString": 3, - "this.write": 1, - "Last": 2, - "chunk.": 1, - "this._finish": 2, - "OutgoingMessage.prototype._finish": 1, - "instanceof": 19, - "ServerResponse": 5, - "DTRACE_HTTP_SERVER_RESPONSE": 1, - "ClientRequest": 6, - "DTRACE_HTTP_CLIENT_REQUEST": 1, - "OutgoingMessage.prototype._flush": 1, - "this.socket.writable": 2, - "XXX": 1, - "Necessary": 1, - "this.socket.write": 1, - "req": 32, - "OutgoingMessage.call": 2, - "req.method": 5, - "req.httpVersionMajor": 2, - "req.httpVersionMinor": 2, - "exports.ServerResponse": 1, - "ServerResponse.prototype.statusCode": 1, - "onServerResponseClose": 3, - "this._httpMessage.emit": 2, - "ServerResponse.prototype.assignSocket": 1, - "socket._httpMessage": 9, - "socket.on": 2, - "this._flush": 1, - "ServerResponse.prototype.detachSocket": 1, - "socket.removeListener": 5, - "ServerResponse.prototype.writeContinue": 1, - "this._sent100": 2, - "ServerResponse.prototype._implicitHeader": 1, - "this.writeHead": 1, - "ServerResponse.prototype.writeHead": 1, - "statusCode": 7, - "reasonPhrase": 4, - "headerIndex": 4, - "obj": 40, - "this._renderHeaders": 3, - "obj.length": 1, - "obj.push": 1, - "statusLine": 2, - "statusCode.toString": 1, - "this._expect_continue": 1, - "this._storeHeader": 2, - "ServerResponse.prototype.writeHeader": 1, - "this.writeHead.apply": 1, - "Agent": 5, - "self.options": 2, - "self.requests": 6, - "self.sockets": 3, - "self.maxSockets": 1, - "self.options.maxSockets": 1, - "Agent.defaultMaxSockets": 2, - "self.on": 1, - "host": 29, - "port": 29, - "localAddress": 15, - ".shift": 1, - ".onSocket": 1, - "socket.destroy": 10, - "self.createConnection": 2, - "net.createConnection": 3, - "exports.Agent": 1, - "Agent.prototype.defaultPort": 1, - "Agent.prototype.addRequest": 1, - "this.sockets": 9, - "this.maxSockets": 1, - "req.onSocket": 1, - "this.createSocket": 2, - "this.requests": 5, - "Agent.prototype.createSocket": 1, - "util._extend": 1, - "options.port": 4, - "options.host": 4, - "options.localAddress": 3, - "s": 290, - "onFree": 3, - "self.emit": 9, - "s.on": 4, - "onClose": 3, - "err": 5, - "self.removeSocket": 2, - "onRemove": 3, - "s.removeListener": 3, - "Agent.prototype.removeSocket": 1, - "index": 5, - ".indexOf": 2, - ".splice": 5, - ".emit": 1, - "globalAgent": 3, - "exports.globalAgent": 1, - "cb": 16, - "self.agent": 3, - "options.agent": 3, - "defaultPort": 3, - "options.defaultPort": 1, - "options.hostname": 1, - "options.setHost": 1, - "setHost": 2, - "self.socketPath": 4, - "options.socketPath": 1, - "method": 30, - "self.method": 3, - "options.method": 2, - ".toUpperCase": 3, - "self.path": 3, - "options.path": 2, - "self.once": 2, - "options.headers": 7, - "self.setHeader": 1, - "this.getHeader": 2, - "hostHeader": 3, - "this.setHeader": 2, - "options.auth": 2, - "//basic": 1, - "auth": 1, - "Buffer": 1, - "self.useChunkedEncodingByDefault": 2, - "self._storeHeader": 2, - "self.getHeader": 1, - "self._renderHeaders": 1, - "options.createConnection": 4, - "self.onSocket": 3, - "self.agent.addRequest": 1, - "conn": 3, - "self._deferToConnect": 1, - "self._flush": 1, - "exports.ClientRequest": 1, - "ClientRequest.prototype._implicitHeader": 1, - "this.path": 1, - "ClientRequest.prototype.abort": 1, - "this._deferToConnect": 3, - "createHangUpError": 3, - "error.code": 1, - "freeParser": 9, - "parser.socket.onend": 1, - "parser.socket.ondata": 1, - "parser.socket.parser": 1, - "parsers.free": 1, - "req.parser": 1, - "socketCloseListener": 2, - "socket.parser": 3, - "req.emit": 8, - "req.res": 8, - "req.res.readable": 1, - "req.res.emit": 1, - "res": 14, - "req.res._emitPending": 1, - "res._emitEnd": 1, - "res.emit": 1, - "req._hadError": 3, - "parser.finish": 6, - "socketErrorListener": 2, - "err.message": 1, - "err.stack": 1, - "socketOnEnd": 1, - "this._httpMessage": 3, - "this.parser": 2, - "socketOnData": 1, - "end": 14, - "parser.execute": 2, - "bytesParsed": 4, - "socket.ondata": 3, - "socket.onend": 3, - "bodyHead": 4, - "d.slice": 2, - "eventName": 21, - "req.listeners": 1, - "req.upgradeOrConnect": 1, - "socket.emit": 1, - "parserOnIncomingClient": 1, - "shouldKeepAlive": 4, - "res.upgrade": 1, - "skip": 5, - "isHeadResponse": 2, - "res.statusCode": 1, - "Clear": 1, - "so": 8, - "we": 25, - "don": 5, - "continue": 18, - "ve": 3, - "been": 5, - "upgraded": 1, - "via": 2, - "WebSockets": 1, - "also": 5, - "shouldn": 2, - "AGENT": 2, - "socket.destroySoon": 2, - "keep": 1, - "alive": 1, - "close": 2, - "free": 1, - "number": 13, - "an": 12, - "important": 1, - "promisy": 1, - "thing": 2, - "all": 16, - "the": 107, - "onSocket": 3, - "self.socket.writable": 1, - "self.socket": 5, - ".apply": 7, - "arguments_": 2, - "self.socket.once": 1, - "ClientRequest.prototype.setTimeout": 1, - "msecs": 4, - "this.once": 2, - "emitTimeout": 4, - "this.socket.setTimeout": 1, - "this.socket.once": 1, - "this.setTimeout": 3, - "sock": 1, - "ClientRequest.prototype.setNoDelay": 1, - "ClientRequest.prototype.setSocketKeepAlive": 1, - "ClientRequest.prototype.clearTimeout": 1, - "exports.request": 2, - "url.parse": 1, - "options.protocol": 3, - "exports.get": 1, - "req.end": 1, - "ondrain": 3, - "httpSocketSetup": 2, - "Server": 6, - "requestListener": 6, - "net.Server.call": 1, - "allowHalfOpen": 1, - "this.addListener": 2, - "this.httpAllowHalfOpen": 1, - "connectionListener": 3, - "net.Server": 1, - "exports.Server": 1, - "exports.createServer": 1, - "outgoing": 2, - "incoming": 2, - "abortIncoming": 3, - "incoming.length": 2, - "incoming.shift": 2, - "serverSocketCloseListener": 3, - "socket.setTimeout": 1, - "*": 70, - "minute": 1, - "timeout": 2, - "socket.once": 1, - "parsers.alloc": 1, - "parser.reinitialize": 1, - "this.maxHeadersCount": 2, - "<<": 4, - "socket.addListener": 2, - "self.listeners": 2, - "req.socket": 1, - "self.httpAllowHalfOpen": 1, - "socket.writable": 2, - "socket.end": 2, - "outgoing.length": 2, - "._last": 1, - "socket._httpMessage._last": 1, - "incoming.push": 1, - "res.shouldKeepAlive": 1, - "DTRACE_HTTP_SERVER_REQUEST": 1, - "outgoing.push": 1, - "res.assignSocket": 1, - "res.on": 1, - "res.detachSocket": 1, - "res._last": 1, - "m": 76, - "outgoing.shift": 1, - "m.assignSocket": 1, - "req.headers": 2, - "continueExpression.test": 1, - "res._expect_continue": 1, - "res.writeContinue": 1, - "Not": 4, - "a": 1489, - "response.": 1, - "even": 3, - "exports._connectionListener": 1, - "Client": 6, - "this.host": 1, - "this.port": 1, - "maxSockets": 1, - "Client.prototype.request": 1, - "path": 5, - "self.host": 1, - "self.port": 1, - "c.on": 2, - "exports.Client": 1, - "module.deprecate": 2, - "exports.createClient": 1, - "cubes": 4, - "list": 21, - "math": 4, - "num": 23, - "opposite": 6, - "race": 4, - "square": 10, - "__slice": 2, - "Array.prototype.slice": 6, - "root": 5, - "Math.sqrt": 2, - "cube": 2, - "runners": 6, - "winner": 6, - "__slice.call": 2, - "print": 2, - "elvis": 4, - "_i": 10, - "_len": 6, - "_results": 6, - "list.length": 5, - "_results.push": 2, - "math.cube": 2, - ".slice": 6, - "window": 18, - "angular": 1, - "Array.prototype.last": 1, - "this.length": 41, - "app": 3, - "angular.module": 1, - "A": 24, - "w": 110, - "ma": 3, - "c.isReady": 4, - "try": 44, - "s.documentElement.doScroll": 2, - "catch": 38, - "c.ready": 7, - "Qa": 1, - "b.src": 4, - "c.ajax": 1, - "async": 5, - "dataType": 6, - "c.globalEval": 1, - "b.text": 3, - "b.textContent": 2, - "b.innerHTML": 3, - "b.parentNode": 4, - "b.parentNode.removeChild": 2, - "X": 6, - "f": 666, - "a.length": 23, - "o": 322, - "c.isFunction": 9, - "d.call": 3, - "J": 5, - ".getTime": 3, - "Y": 3, - "Z": 6, - "na": 1, - ".type": 2, - "c.event.handle.apply": 1, - "oa": 1, - "r": 261, - "c.data": 12, - "a.liveFired": 4, - "i.live": 1, - "a.button": 2, - "a.type": 14, - "u": 304, - "i.live.slice": 1, - "u.length": 3, - "i.origType.replace": 1, - "O": 6, - "f.push": 5, - "i.selector": 3, - "u.splice": 1, - "a.target": 5, - ".closest": 4, - "a.currentTarget": 4, - "j.length": 2, - ".selector": 1, - ".elem": 1, - "i.preType": 2, - "a.relatedTarget": 2, - "d.push": 1, - "elem": 101, - "handleObj": 2, - "d.length": 8, - "j.elem": 2, - "a.data": 2, - "j.handleObj.data": 1, - "a.handleObj": 2, - "j.handleObj": 1, - "j.handleObj.origHandler.apply": 1, - "pa": 1, - "b.replace": 3, - "/": 290, - "./g": 2, - ".replace": 38, - "/g": 37, - "qa": 1, - "a.parentNode": 6, - "a.parentNode.nodeType": 2, - "ra": 1, - "b.each": 1, - "this.nodeName": 4, - ".nodeName": 2, - "f.events": 1, - "e.handle": 2, - "e.events": 2, - "c.event.add": 1, - ".data": 3, - "sa": 2, - ".ownerDocument": 5, - "ta.test": 1, - "c.support.checkClone": 2, - "ua.test": 1, - "c.fragments": 2, - "b.createDocumentFragment": 1, - "c.clean": 1, - "fragment": 27, - "cacheable": 2, - "K": 4, - "c.each": 2, - "va.concat.apply": 1, - "va.slice": 1, - "wa": 1, - "a.document": 3, - "a.nodeType": 27, - "a.defaultView": 2, - "a.parentWindow": 2, - "c.fn.init": 1, - "Ra": 2, - "A.jQuery": 3, - "Sa": 2, - "A.": 3, - "A.document": 1, - "T": 4, - "Ta": 1, - "<[\\w\\W]+>": 4, - "|": 206, - "#": 13, - "Ua": 1, - ".": 91, - "Va": 1, - "S/": 4, - "Wa": 2, - "u00A0": 2, - "Xa": 1, - "<(\\w+)\\s*\\/?>": 4, - "<\\/\\1>": 4, - "P": 4, - "navigator.userAgent": 3, - "xa": 3, - "Q": 6, - "L": 10, - "Object.prototype.toString": 7, - "aa": 1, - "ba": 3, - "Array.prototype.push": 4, - "R": 2, - "ya": 2, - "Array.prototype.indexOf": 4, - "c.fn": 2, - "c.prototype": 1, - "init": 7, - "this.context": 17, - "s.body": 2, - "this.selector": 16, - "Ta.exec": 1, - "b.ownerDocument": 6, - "Xa.exec": 1, - "c.isPlainObject": 3, - "s.createElement": 10, - "c.fn.attr.call": 1, - "f.createElement": 1, - "a.cacheable": 1, - "a.fragment.cloneNode": 1, - "a.fragment": 1, - ".childNodes": 2, - "c.merge": 4, - "s.getElementById": 1, - "b.id": 1, - "T.find": 1, - "/.test": 19, - "s.getElementsByTagName": 2, - "b.jquery": 1, - ".find": 5, - "T.ready": 1, - "a.selector": 4, - "a.context": 2, - "c.makeArray": 3, - "selector": 40, - "jquery": 3, - "size": 6, - "toArray": 2, - "R.call": 2, - "get": 24, - "this.toArray": 3, - "this.slice": 5, - "pushStack": 4, - "c.isArray": 5, - "ba.apply": 1, - "f.prevObject": 1, - "f.context": 1, - "f.selector": 2, - "each": 17, - "ready": 31, - "c.bindReady": 1, - "a.call": 17, - "Q.push": 1, - "eq": 2, - "first": 10, - "this.eq": 4, - "last": 6, - "this.pushStack": 12, - "R.apply": 1, - ".join": 14, - "map": 7, - "c.map": 1, - "this.prevObject": 3, - "push": 11, - "sort": 4, - ".sort": 9, - "splice": 5, - "c.fn.init.prototype": 1, - "c.extend": 7, - "c.fn.extend": 4, - "noConflict": 4, - "isReady": 5, - "c.fn.triggerHandler": 1, - ".triggerHandler": 1, - "bindReady": 5, - "s.readyState": 2, - "s.addEventListener": 3, - "A.addEventListener": 1, - "s.attachEvent": 3, - "A.attachEvent": 1, - "A.frameElement": 1, - "isFunction": 12, - "isPlainObject": 4, - "a.setInterval": 2, - "a.constructor": 2, - "aa.call": 3, - "a.constructor.prototype": 2, - "isEmptyObject": 7, - "parseJSON": 4, - "c.trim": 3, - "a.replace": 7, - "@": 1, - "d*": 8, - "eE": 4, - "s*": 15, - "A.JSON": 1, - "A.JSON.parse": 2, - "Function": 3, - "c.error": 2, - "noop": 3, - "globalEval": 2, - "Va.test": 1, - "s.documentElement": 2, - "d.type": 2, - "c.support.scriptEval": 2, - "d.appendChild": 3, - "s.createTextNode": 2, - "d.text": 1, - "b.insertBefore": 3, - "b.firstChild": 5, - "b.removeChild": 3, - "nodeName": 20, - "a.nodeName": 12, - "a.nodeName.toUpperCase": 2, - "b.toUpperCase": 3, - "b.apply": 2, - "b.call": 4, - "trim": 5, - "makeArray": 3, - "ba.call": 1, - "inArray": 5, - "b.indexOf": 2, - "b.length": 12, - "merge": 2, - "grep": 6, - "f.length": 5, - "f.concat.apply": 1, - "guid": 5, - "proxy": 4, - "a.apply": 2, - "b.guid": 2, - "a.guid": 7, - "c.guid": 1, - "uaMatch": 3, - "a.toLowerCase": 4, - "webkit": 6, - "w.": 17, - "/.exec": 4, - "opera": 4, - ".*version": 4, - "msie": 4, - "/compatible/.test": 1, - "mozilla": 4, - ".*": 20, - "rv": 4, - "browser": 11, - "version": 10, - "c.uaMatch": 1, - "P.browser": 2, - "c.browser": 1, - "c.browser.version": 1, - "P.version": 1, - "c.browser.webkit": 1, - "c.browser.safari": 1, - "c.inArray": 2, - "ya.call": 1, - "s.removeEventListener": 1, - "s.detachEvent": 1, - "c.support": 2, - "d.style.display": 5, - "d.innerHTML": 2, - "d.getElementsByTagName": 6, - "e.length": 9, - "leadingWhitespace": 3, - "d.firstChild.nodeType": 1, - "tbody": 7, - "htmlSerialize": 3, - "style": 30, - "/red/.test": 1, - "j.getAttribute": 2, - "hrefNormalized": 3, - "opacity": 13, - "j.style.opacity": 1, - "cssFloat": 4, - "j.style.cssFloat": 1, - "checkOn": 4, - ".value": 1, - "optSelected": 3, - ".appendChild": 1, - ".selected": 1, - "parentNode": 10, - "d.removeChild": 1, - ".parentNode": 7, - "deleteExpando": 3, - "checkClone": 1, - "scriptEval": 1, - "noCloneEvent": 3, - "boxModel": 1, - "b.type": 4, - "b.appendChild": 1, - "a.insertBefore": 2, - "a.firstChild": 6, - "b.test": 1, - "c.support.deleteExpando": 2, - "a.removeChild": 2, - "d.attachEvent": 2, - "d.fireEvent": 1, - "c.support.noCloneEvent": 1, - "d.detachEvent": 1, - "d.cloneNode": 1, - ".fireEvent": 3, - "s.createDocumentFragment": 1, - "a.appendChild": 3, - "d.firstChild": 2, - "a.cloneNode": 3, - ".cloneNode": 4, - ".lastChild.checked": 2, - "k.style.width": 1, - "k.style.paddingLeft": 1, - "s.body.appendChild": 1, - "c.boxModel": 1, - "c.support.boxModel": 1, - "k.offsetWidth": 1, - "s.body.removeChild": 1, - ".style.display": 5, - "n.setAttribute": 1, - "c.support.submitBubbles": 1, - "c.support.changeBubbles": 1, - "c.props": 2, - "readonly": 3, - "maxlength": 2, - "cellspacing": 2, - "rowspan": 2, - "colspan": 2, - "tabindex": 4, - "usemap": 2, - "frameborder": 2, - "G": 11, - "Ya": 2, - "za": 3, - "cache": 45, - "expando": 14, - "noData": 3, - "embed": 3, - "applet": 2, - "c.noData": 2, - "a.nodeName.toLowerCase": 3, - "c.cache": 2, - "removeData": 8, - "c.isEmptyObject": 1, - "c.removeData": 2, - "c.expando": 2, - "a.removeAttribute": 3, - "this.each": 42, - "a.split": 4, - "this.triggerHandler": 6, - "this.trigger": 2, - ".each": 3, - "queue": 7, - "dequeue": 6, - "c.queue": 3, - "d.shift": 2, - "d.unshift": 2, - "f.call": 1, - "c.dequeue": 4, - "delay": 4, - "c.fx": 1, - "c.fx.speeds": 1, - "this.queue": 4, - "clearQueue": 2, - "Aa": 3, - "t": 436, - "ca": 6, - "Za": 2, - "r/g": 2, - "/href": 1, - "src": 7, - "style/": 1, - "ab": 1, - "button": 24, - "input": 25, - "/i": 22, - "bb": 2, - "select": 20, - "textarea": 8, - "area": 2, - "Ba": 3, - "/radio": 1, - "checkbox/": 1, - "attr": 13, - "c.attr": 4, - "removeAttr": 5, - "this.nodeType": 4, - "this.removeAttribute": 1, - "addClass": 2, - "r.addClass": 1, - "r.attr": 1, - ".split": 19, - "e.nodeType": 7, - "e.className": 14, - "j.indexOf": 1, - "removeClass": 2, - "n.removeClass": 1, - "n.attr": 1, - "j.replace": 2, - "toggleClass": 2, - "j.toggleClass": 1, - "j.attr": 1, - "i.hasClass": 1, - "this.className": 10, - "hasClass": 2, - "": 1, - "className": 4, - "replace": 8, - "indexOf": 5, - "val": 13, - "c.nodeName": 4, - "b.attributes.value": 1, - ".specified": 1, - "b.value": 4, - "b.selectedIndex": 2, - "b.options": 1, - "": 1, - "i=": 31, - "selected": 5, - "a=": 23, - "test": 21, - "type": 49, - "support": 13, - "getAttribute": 3, - "on": 37, - "o=": 13, - "n=": 10, - "r=": 18, - "nodeType=": 6, - "call": 9, - "checked=": 1, - "this.selected": 1, - ".val": 5, - "this.selectedIndex": 1, - "this.value": 4, - "attrFn": 2, - "css": 7, - "html": 10, - "text": 14, - "width": 32, - "height": 25, - "offset": 21, - "c.attrFn": 1, - "c.isXMLDoc": 1, - "a.test": 2, - "ab.test": 1, - "a.getAttributeNode": 7, - ".nodeValue": 1, - "b.specified": 2, - "bb.test": 2, - "cb.test": 1, - "a.href": 2, - "c.support.style": 1, - "a.style.cssText": 3, - "a.setAttribute": 7, - "c.support.hrefNormalized": 1, - "a.getAttribute": 11, - "c.style": 1, - "db": 1, - "handle": 15, - "click": 11, - "events": 18, - "altKey": 4, - "attrChange": 4, - "attrName": 4, - "bubbles": 4, - "cancelable": 4, - "charCode": 7, - "clientX": 6, - "clientY": 5, - "ctrlKey": 6, - "currentTarget": 4, - "detail": 3, - "eventPhase": 4, - "fromElement": 6, - "handler": 14, - "keyCode": 6, - "layerX": 3, - "layerY": 3, - "metaKey": 5, - "newValue": 3, - "offsetX": 4, - "offsetY": 4, - "originalTarget": 1, - "pageX": 4, - "pageY": 4, - "prevValue": 3, - "relatedNode": 4, - "relatedTarget": 6, - "screenX": 4, - "screenY": 4, - "shiftKey": 4, - "srcElement": 5, - "toElement": 5, - "view": 4, - "wheelDelta": 3, - "which": 8, - "mouseover": 12, - "mouseout": 12, - "form": 12, - "click.specialSubmit": 2, - "submit": 14, - "image": 5, - "keypress.specialSubmit": 2, - "password": 5, - ".specialSubmit": 2, - "radio": 17, - "checkbox": 14, - "multiple": 7, - "_change_data": 6, - "focusout": 11, - "change": 16, - "file": 5, - ".specialChange": 4, - "focusin": 9, - "bind": 3, - "one": 15, - "unload": 5, - "live": 8, - "lastToggle": 4, - "die": 3, - "hover": 3, - "mouseenter": 9, - "mouseleave": 9, - "focus": 7, - "blur": 8, - "resize": 3, - "scroll": 6, - "dblclick": 3, - "mousedown": 3, - "mouseup": 3, - "mousemove": 3, - "keydown": 4, - "keypress": 4, - "keyup": 3, - "onunload": 1, - "g": 441, - "h": 499, - "q": 34, - "h.nodeType": 4, - "p": 110, - "y": 101, - "S": 8, - "H": 8, - "M": 9, - "I": 7, - "f.exec": 2, - "p.push": 2, - "p.length": 10, - "r.exec": 1, - "n.relative": 5, - "ga": 2, - "p.shift": 4, - "n.match.ID.test": 2, - "k.find": 6, - "v.expr": 4, - "k.filter": 5, - "v.set": 5, - "expr": 2, - "p.pop": 4, - "set": 22, - "z": 21, - "h.parentNode": 3, - "D": 9, - "k.error": 2, - "j.call": 2, - ".nodeType": 9, - "E": 11, - "l.push": 2, - "l.push.apply": 1, - "k.uniqueSort": 5, - "B": 5, - "g.sort": 1, - "g.length": 2, - "g.splice": 2, - "k.matches": 1, - "n.order.length": 1, - "n.order": 1, - "n.leftMatch": 1, - ".exec": 2, - "q.splice": 1, - "y.substr": 1, - "y.length": 1, - "Syntax": 3, - "unrecognized": 3, - "expression": 4, - "ID": 8, - "NAME": 2, - "TAG": 2, - "u00c0": 2, - "uFFFF": 2, - "leftMatch": 2, - "attrMap": 2, - "attrHandle": 2, - "g.getAttribute": 1, - "relative": 4, - "W/.test": 1, - "h.toLowerCase": 2, - "": 1, - "previousSibling": 5, - "nth": 5, - "odd": 2, - "not": 26, - "reset": 2, - "contains": 8, - "only": 10, - "id": 38, - "class": 5, - "Array": 3, - "sourceIndex": 1, - "div": 28, - "script": 7, - "": 4, - "name=": 2, - "href=": 2, - "": 2, - "

": 2, - "

": 2, - ".TEST": 2, - "
": 3, - "CLASS": 1, - "HTML": 9, - "find": 7, - "filter": 10, - "nextSibling": 3, - "iframe": 3, - "": 1, - "": 1, - "
": 1, - "
": 1, - "": 4, - "
": 5, - "": 3, - "": 3, - "": 2, - "": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "before": 8, - "after": 7, - "position": 7, - "absolute": 2, - "top": 12, - "left": 14, - "margin": 8, - "border": 7, - "px": 31, - "solid": 2, - "#000": 2, - "padding": 4, - "": 1, - "": 1, - "fixed": 1, - "marginTop": 3, - "marginLeft": 2, - "using": 5, - "borderTopWidth": 1, - "borderLeftWidth": 1, - "Left": 1, - "Top": 1, - "pageXOffset": 2, - "pageYOffset": 1, - "Height": 1, - "Width": 1, - "inner": 2, - "outer": 2, - "scrollTo": 1, - "CSS1Compat": 1, - "client": 3, - "document": 26, - "window.document": 2, - "navigator": 3, - "window.navigator": 2, - "location": 2, - "window.location": 5, - "jQuery": 48, - "context": 48, - "The": 9, - "is": 67, - "actually": 2, - "just": 2, - "jQuery.fn.init": 2, - "rootjQuery": 8, - "Map": 4, - "over": 7, - "of": 28, - "overwrite": 4, - "_jQuery": 4, - "window.": 6, - "central": 2, - "reference": 5, - "simple": 3, - "way": 2, - "check": 8, - "strings": 8, - "both": 2, - "optimize": 3, - "quickExpr": 2, - "Check": 10, - "has": 9, - "non": 8, - "whitespace": 7, - "character": 3, - "it": 112, - "rnotwhite": 2, - "Used": 3, - "trimming": 2, - "trimLeft": 4, - "trimRight": 4, - "digits": 3, - "rdigit": 1, - "d/": 3, - "Match": 3, - "standalone": 2, - "tag": 2, - "rsingleTag": 2, - "JSON": 5, - "RegExp": 12, - "rvalidchars": 2, - "rvalidescape": 2, - "rvalidbraces": 2, - "Useragent": 2, - "rwebkit": 2, - "ropera": 2, - "rmsie": 2, - "rmozilla": 2, - "Keep": 2, - "UserAgent": 2, - "use": 10, - "with": 18, - "jQuery.browser": 4, - "userAgent": 3, - "For": 5, - "matching": 3, - "engine": 2, - "and": 42, - "browserMatch": 3, - "deferred": 25, - "used": 13, - "DOM": 21, - "readyList": 6, - "event": 31, - "DOMContentLoaded": 14, - "Save": 2, - "some": 2, - "core": 2, - "methods": 8, - "toString": 4, - "hasOwn": 2, - "String.prototype.trim": 3, - "Class": 2, - "pairs": 2, - "class2type": 3, - "jQuery.fn": 4, - "jQuery.prototype": 2, - "match": 30, - "doc": 4, - "Handle": 14, - "DOMElement": 2, - "selector.nodeType": 2, - "exists": 9, - "once": 4, - "finding": 2, - "Are": 2, - "dealing": 2, - "selector.charAt": 4, - "selector.length": 4, - "Assume": 2, - "are": 18, - "regex": 3, - "quickExpr.exec": 2, - "Verify": 3, - "no": 19, - "was": 6, - "specified": 4, - "#id": 3, - "HANDLE": 2, - "array": 7, - "context.ownerDocument": 2, - "If": 21, - "single": 2, - "passed": 5, - "clean": 3, - "like": 5, - "method.": 3, - "jQuery.fn.init.prototype": 2, - "jQuery.extend": 11, - "jQuery.fn.extend": 4, - "copy": 16, - "copyIsArray": 2, - "clone": 5, - "deep": 12, - "situation": 2, - "boolean": 8, - "when": 20, - "something": 3, - "possible": 3, - "jQuery.isFunction": 6, - "extend": 13, - "itself": 4, - "argument": 2, - "Only": 5, - "deal": 2, - "null/undefined": 2, - "values": 10, - "Extend": 2, - "base": 2, - "Prevent": 2, - "never": 2, - "ending": 2, - "loop": 7, - "Recurse": 2, - "bring": 2, - "Return": 2, - "modified": 3, - "Is": 2, - "be": 12, - "Set": 4, - "occurs.": 2, - "counter": 2, - "track": 2, - "how": 2, - "many": 3, - "items": 2, - "wait": 12, - "fires.": 2, - "See": 9, - "#6781": 2, - "readyWait": 6, - "Hold": 2, - "release": 2, - "holdReady": 3, - "hold": 6, - "jQuery.readyWait": 6, - "jQuery.ready": 16, - "Either": 2, - "released": 2, - "DOMready/load": 2, - "yet": 2, - "jQuery.isReady": 6, - "Make": 17, - "sure": 18, - "at": 58, - "least": 4, - "IE": 28, - "gets": 6, - "little": 4, - "overzealous": 4, - "ticket": 4, - "#5443": 4, - "Remember": 2, - "normal": 2, - "Ready": 2, - "fired": 12, - "decrement": 2, - "need": 10, - "there": 6, - "functions": 6, - "bound": 8, - "execute": 4, - "readyList.resolveWith": 1, - "Trigger": 2, - "any": 12, - "jQuery.fn.trigger": 2, - ".trigger": 3, - ".unbind": 4, - "jQuery._Deferred": 3, - "Catch": 2, - "cases": 4, - "where": 2, - ".ready": 2, - "called": 2, - "already": 6, - "occurred.": 2, - "document.readyState": 4, - "asynchronously": 2, - "allow": 6, - "scripts": 2, - "opportunity": 2, - "Mozilla": 2, - "Opera": 2, - "nightlies": 3, - "currently": 4, - "document.addEventListener": 6, - "Use": 7, - "handy": 2, - "fallback": 4, - "window.onload": 4, - "will": 7, - "always": 6, - "work": 6, - "window.addEventListener": 2, - "model": 14, - "document.attachEvent": 6, - "ensure": 2, - "firing": 16, - "onload": 2, - "maybe": 2, - "late": 2, - "but": 4, - "safe": 3, - "iframes": 2, - "window.attachEvent": 2, - "frame": 23, - "continually": 2, - "see": 6, - "toplevel": 7, - "window.frameElement": 2, - "document.documentElement.doScroll": 4, - "doScrollCheck": 6, - "test/unit/core.js": 2, - "details": 3, - "concerning": 2, - "isFunction.": 2, - "Since": 3, - "aren": 5, - "pass": 7, - "through": 3, - "as": 11, - "well": 2, - "jQuery.type": 4, - "obj.nodeType": 2, - "jQuery.isWindow": 2, - "own": 4, - "property": 15, - "must": 4, - "Object": 4, - "obj.constructor": 2, - "hasOwn.call": 6, - "obj.constructor.prototype": 2, - "Own": 2, - "properties": 7, - "enumerated": 2, - "firstly": 2, - "speed": 4, - "up": 4, - "then": 8, - "own.": 2, - "msg": 4, - "leading/trailing": 2, - "removed": 3, - "can": 10, - "breaking": 1, - "spaces": 3, - "rnotwhite.test": 2, - "xA0": 7, - "document.removeEventListener": 2, - "document.detachEvent": 2, - "trick": 2, - "Diego": 2, - "Perini": 2, - "http": 6, - "//javascript.nwbox.com/IEContentLoaded/": 2, - "waiting": 2, - "Promise": 1, - "promiseMethods": 3, - "Static": 1, - "sliceDeferred": 1, - "Create": 1, - "callbacks": 10, - "_Deferred": 4, - "stored": 4, - "args": 31, - "avoid": 5, - "doing": 3, - "flag": 1, - "know": 3, - "cancelled": 5, - "done": 10, - "f1": 1, - "f2": 1, - "...": 1, - "_fired": 5, - "args.length": 3, - "deferred.done.apply": 2, - "callbacks.push": 1, - "deferred.resolveWith": 5, - "resolve": 7, - "given": 3, - "resolveWith": 4, - "make": 2, - "available": 1, - "#8421": 1, - "callbacks.shift": 1, - "finally": 3, - "Has": 1, - "resolved": 1, - "isResolved": 3, - "Cancel": 1, - "cancel": 6, - "Full": 1, - "fledged": 1, - "two": 1, - "Deferred": 5, - "func": 3, - "failDeferred": 1, - "promise": 14, - "Add": 4, - "errorDeferred": 1, - "doneCallbacks": 2, - "failCallbacks": 2, - "deferred.done": 2, - ".fail": 2, - ".fail.apply": 1, - "fail": 10, - "failDeferred.done": 1, - "rejectWith": 2, - "failDeferred.resolveWith": 1, - "reject": 4, - "failDeferred.resolve": 1, - "isRejected": 2, - "failDeferred.isResolved": 1, - "pipe": 2, - "fnDone": 2, - "fnFail": 2, - "jQuery.Deferred": 1, - "newDefer": 3, - "jQuery.each": 2, - "fn": 14, - "action": 3, - "returned": 4, - "fn.apply": 1, - "returned.promise": 2, - ".then": 3, - "newDefer.resolve": 1, - "newDefer.reject": 1, - ".promise": 5, - "Get": 4, - "provided": 1, - "aspect": 1, - "added": 1, - "promiseMethods.length": 1, - "failDeferred.cancel": 1, - "deferred.cancel": 2, - "Unexpose": 1, - "Call": 1, - "func.call": 1, - "helper": 1, - "firstParam": 6, - "count": 4, - "<=>": 1, - "1": 97, - "resolveFunc": 2, - "sliceDeferred.call": 2, - "Strange": 1, - "bug": 3, - "FF4": 1, - "Values": 1, - "changed": 3, - "onto": 2, - "sometimes": 1, - "outside": 2, - ".when": 1, - "Cloning": 2, - "into": 2, - "fresh": 1, - "solves": 1, - "issue": 1, - "deferred.reject": 1, - "deferred.promise": 1, - "jQuery.support": 1, - "document.createElement": 26, - "documentElement": 2, - "document.documentElement": 2, - "opt": 2, - "marginDiv": 5, - "bodyStyle": 1, - "tds": 6, - "isSupported": 7, - "Preliminary": 1, - "tests": 48, - "div.setAttribute": 1, - "div.innerHTML": 7, - "div.getElementsByTagName": 6, - "Can": 2, - "automatically": 2, - "inserted": 1, - "insert": 1, - "them": 3, - "empty": 3, - "tables": 1, - "link": 2, - "elements": 9, - "serialized": 3, - "correctly": 1, - "innerHTML": 1, - "This": 3, - "requires": 1, - "wrapper": 1, - "information": 5, - "from": 7, - "uses": 3, - ".cssText": 2, - "instead": 6, - "/top/.test": 2, - "URLs": 1, - "optgroup": 5, - "opt.selected": 1, - "Test": 3, - "setAttribute": 1, - "camelCase": 3, - "class.": 1, - "works": 1, - "attrFixes": 1, - "get/setAttribute": 1, - "ie6/7": 1, - "getSetAttribute": 3, - "div.className": 1, - "Will": 2, - "defined": 3, - "later": 1, - "submitBubbles": 3, - "changeBubbles": 3, - "focusinBubbles": 2, - "inlineBlockNeedsLayout": 3, - "shrinkWrapBlocks": 2, - "reliableMarginRight": 2, - "checked": 4, - "status": 3, - "properly": 2, - "cloned": 1, - "input.checked": 1, - "support.noCloneChecked": 1, - "input.cloneNode": 1, - ".checked": 2, - "inside": 3, - "disabled": 11, - "selects": 1, - "Fails": 2, - "Internet": 1, - "Explorer": 1, - "div.test": 1, - "support.deleteExpando": 1, - "div.addEventListener": 1, - "div.attachEvent": 2, - "div.fireEvent": 1, - "node": 23, - "being": 2, - "appended": 2, - "input.value": 5, - "input.setAttribute": 5, - "support.radioValue": 2, - "div.appendChild": 4, - "document.createDocumentFragment": 3, - "fragment.appendChild": 2, - "div.firstChild": 3, - "WebKit": 9, - "doesn": 2, - "inline": 3, - "display": 7, - "none": 4, - "GC": 2, - "references": 1, - "across": 1, - "JS": 7, - "boundary": 1, - "isNode": 11, - "elem.nodeType": 8, - "nodes": 14, - "global": 5, - "attached": 1, - "directly": 2, - "occur": 1, - "jQuery.cache": 3, - "defining": 1, - "objects": 7, - "its": 2, - "allows": 1, - "code": 2, - "shortcut": 1, - "same": 1, - "jQuery.expando": 12, - "Avoid": 1, - "more": 6, - "than": 3, - "trying": 1, - "pvt": 8, - "internalKey": 12, - "getByName": 3, - "unique": 2, - "since": 1, - "their": 3, - "ends": 1, - "jQuery.uuid": 1, - "TODO": 2, - "hack": 2, - "ONLY.": 2, - "Avoids": 2, - "exposing": 2, - "metadata": 2, - "plain": 2, - "JSON.stringify": 4, - ".toJSON": 4, - "jQuery.noop": 2, - "An": 1, - "jQuery.data": 15, - "key/value": 1, - "pair": 1, - "shallow": 1, - "copied": 1, - "existing": 1, - "thisCache": 15, - "Internal": 1, - "separate": 1, - "destroy": 1, - "unless": 2, - "internal": 8, - "had": 1, - "isEmptyDataObject": 3, - "internalCache": 3, - "Browsers": 1, - "deletion": 1, - "refuse": 1, - "expandos": 2, - "other": 3, - "browsers": 2, - "faster": 1, - "iterating": 1, - "persist": 1, - "existed": 1, - "Otherwise": 2, - "eliminate": 2, - "lookups": 2, - "entries": 2, - "longer": 2, - "exist": 2, - "does": 9, - "us": 2, - "nor": 2, - "have": 6, - "removeAttribute": 3, - "Document": 2, - "these": 2, - "jQuery.support.deleteExpando": 3, - "elem.removeAttribute": 6, - "only.": 2, - "_data": 3, - "determining": 3, - "acceptData": 3, - "elem.nodeName": 2, - "jQuery.noData": 2, - "elem.nodeName.toLowerCase": 2, - "elem.getAttribute": 7, - ".attributes": 2, - "attr.length": 2, - ".name": 3, - "name.indexOf": 2, - "jQuery.camelCase": 6, - "name.substring": 2, - "dataAttr": 6, - "parts": 28, - "key.split": 2, - "Try": 4, - "fetch": 4, - "internally": 5, - "jQuery.removeData": 2, - "nothing": 2, - "found": 10, - "HTML5": 3, - "attribute": 5, - "key.replace": 2, - "rmultiDash": 3, - ".toLowerCase": 7, - "jQuery.isNaN": 1, - "parseFloat": 30, - "rbrace.test": 2, - "jQuery.parseJSON": 2, - "isn": 2, - "option.selected": 2, - "jQuery.support.optDisabled": 2, - "option.disabled": 2, - "option.getAttribute": 2, - "option.parentNode.disabled": 2, - "jQuery.nodeName": 3, - "option.parentNode": 2, - "specific": 2, - "We": 6, - "get/set": 2, - "attributes": 14, - "comment": 3, - "nType": 8, - "jQuery.attrFn": 2, - "Fallback": 2, - "prop": 24, - "supported": 2, - "jQuery.prop": 2, - "hooks": 14, - "notxml": 8, - "jQuery.isXMLDoc": 2, - "Normalize": 1, - "needed": 2, - "jQuery.attrFix": 2, - "jQuery.attrHooks": 2, - "boolHook": 3, - "rboolean.test": 4, - "value.toLowerCase": 2, - "formHook": 3, - "forms": 1, - "certain": 2, - "characters": 6, - "rinvalidChar.test": 1, - "jQuery.removeAttr": 2, - "hooks.set": 2, - "elem.setAttribute": 2, - "hooks.get": 2, - "Non": 3, - "existent": 2, - "normalize": 2, - "propName": 8, - "jQuery.support.getSetAttribute": 1, - "jQuery.attr": 2, - "elem.removeAttributeNode": 1, - "elem.getAttributeNode": 1, - "corresponding": 2, - "jQuery.propFix": 2, - "attrHooks": 3, - "tabIndex": 4, - "readOnly": 2, - "htmlFor": 2, - "maxLength": 2, - "cellSpacing": 2, - "cellPadding": 2, - "rowSpan": 2, - "colSpan": 2, - "useMap": 2, - "frameBorder": 2, - "contentEditable": 2, - "auto": 3, - "&": 13, - "getData": 3, - "setData": 3, - "changeData": 3, - "bubbling": 1, - "live.": 2, - "hasDuplicate": 1, - "baseHasDuplicate": 2, - "rBackslash": 1, - "rNonWord": 1, - "W/": 2, - "Sizzle": 1, - "results": 4, - "seed": 1, - "origContext": 1, - "context.nodeType": 2, - "checkSet": 1, - "extra": 1, - "cur": 6, - "pop": 1, - "prune": 1, - "contextXML": 1, - "Sizzle.isXML": 1, - "soFar": 1, - "Reset": 1, - "cy": 4, - "f.isWindow": 2, - "cv": 2, - "cj": 4, - ".appendTo": 2, - "b.css": 1, - "b.remove": 1, - "ck": 5, - "c.createElement": 12, - "ck.frameBorder": 1, - "ck.width": 1, - "ck.height": 1, - "c.body.appendChild": 1, - "cl": 3, - "ck.createElement": 1, - "ck.contentWindow": 1, - "ck.contentDocument": 1, - ".document": 1, - "cl.write": 1, - "cl.createElement": 1, - "cl.body.appendChild": 1, - "f.css": 24, - "c.body.removeChild": 1, - "cu": 18, - "f.each": 21, - "cp.concat.apply": 1, - "cp.slice": 1, - "ct": 34, - "cq": 3, - "cs": 3, - "f.now": 2, - "ci": 29, - "a.ActiveXObject": 3, - "ch": 58, - "a.XMLHttpRequest": 1, - "a.dataFilter": 2, - "a.dataType": 1, - "a.dataTypes": 2, - "a.converters": 3, - "o.split": 1, - "f.error": 4, - "m.replace": 1, - "a.contents": 1, - "a.responseFields": 1, - "f.shift": 1, - "a.mimeType": 1, - "c.getResponseHeader": 1, - ".test": 1, - "f.unshift": 2, - "b_": 4, - "f.isArray": 8, - "bF.test": 1, - "c.dataTypes": 1, - "h.length": 3, - "bU": 4, - "c.dataTypes.unshift": 1, - "bZ": 3, - "f.isFunction": 21, - "b.toLowerCase": 3, - "bQ": 3, - "h.substr": 1, - "bD": 3, - "bx": 2, - "a.offsetWidth": 6, - "a.offsetHeight": 2, - "bn": 2, - "f.ajax": 3, - "f.globalEval": 2, - "bf": 6, - "bm": 3, - "f.nodeName": 16, - "bl": 3, - "a.getElementsByTagName": 9, - "f.grep": 3, - "a.defaultChecked": 1, - "a.checked": 4, - "bk": 5, - "a.querySelectorAll": 1, - "bj": 3, - "b.nodeType": 6, - "b.clearAttributes": 2, - "b.mergeAttributes": 2, - "b.nodeName.toLowerCase": 1, - "b.outerHTML": 1, - "a.outerHTML": 1, - "b.selected": 1, - "a.defaultSelected": 1, - "b.defaultValue": 1, - "a.defaultValue": 1, - "b.defaultChecked": 1, - "b.checked": 1, - "a.value": 8, - "b.removeAttribute": 3, - "f.expando": 23, - "bi": 27, - "f.hasData": 2, - "f.data": 25, - "d.events": 1, - "f.extend": 23, - "": 1, - "bh": 1, - "table": 6, - "getElementsByTagName": 1, - "0": 220, - "appendChild": 1, - "ownerDocument": 9, - "createElement": 3, - "b=": 25, - "e=": 21, - "nodeType": 1, - "d=": 15, - "W": 3, - "N": 2, - "f._data": 15, - "r.live": 1, - "a.target.disabled": 1, - "a.namespace": 1, - "a.namespace.split": 1, - "r.live.slice": 1, - "s.length": 2, - "g.origType.replace": 1, - "q.push": 1, - "g.selector": 3, - "s.splice": 1, - "m.selector": 1, - "n.test": 2, - "g.namespace": 1, - "m.elem.disabled": 1, - "m.elem": 1, - "g.preType": 3, - "f.contains": 5, - "level": 3, - "m.level": 1, - "": 1, - "e.elem": 2, - "e.handleObj.data": 1, - "e.handleObj": 1, - "e.handleObj.origHandler.apply": 1, - "a.isPropagationStopped": 1, - "e.level": 1, - "a.isImmediatePropagationStopped": 1, - "e.type": 6, - "e.originalEvent": 1, - "e.liveFired": 1, - "f.event.handle.call": 1, - ".preventDefault": 1, - "F": 8, - "f.removeData": 4, - "i.resolve": 1, - "c.replace": 4, - "f.isNaN": 3, - "i.test": 1, - "f.parseJSON": 2, - "a.navigator": 1, - "a.location": 1, - "e.isReady": 1, - "c.documentElement.doScroll": 2, - "e.ready": 6, - "e.fn.init": 1, - "a.jQuery": 2, - "a.": 2, - "d.userAgent": 1, - "C": 4, - "e.fn": 2, - "e.prototype": 1, - "c.body": 4, - "a.charAt": 2, - "i.exec": 1, - "d.ownerDocument": 1, - "n.exec": 1, - "e.isPlainObject": 1, - "e.fn.attr.call": 1, - "k.createElement": 1, - "e.buildFragment": 1, - "j.cacheable": 1, - "e.clone": 1, - "j.fragment": 2, - "e.merge": 3, - "c.getElementById": 1, - "h.id": 1, - "f.find": 2, - "d.jquery": 1, - "e.isFunction": 5, - "f.ready": 1, - "e.makeArray": 1, - "D.call": 4, - "e.isArray": 2, - "C.apply": 1, - "d.prevObject": 1, - "d.context": 2, - "d.selector": 2, - "e.each": 2, - "e.bindReady": 1, - "y.done": 1, - "D.apply": 1, - "e.map": 1, - "e.fn.init.prototype": 1, - "e.extend": 2, - "e.fn.extend": 1, - "": 1, - "f=": 13, - "g=": 15, - "h=": 19, - "jQuery=": 2, - "isReady=": 1, - "y.resolveWith": 1, - "e.fn.trigger": 1, - "e._Deferred": 1, - "c.readyState": 2, - "c.addEventListener": 4, - "a.addEventListener": 4, - "c.attachEvent": 3, - "a.attachEvent": 6, - "a.frameElement": 1, - "isWindow": 2, - "isNaN": 6, - "m.test": 1, - "String": 2, - "A.call": 1, - "e.isWindow": 2, - "B.call": 3, - "e.trim": 1, - "a.JSON": 1, - "a.JSON.parse": 2, - "o.test": 1, - "e.error": 2, - "parseXML": 1, - "a.DOMParser": 1, - "DOMParser": 1, - "d.parseFromString": 1, - "ActiveXObject": 1, - "c.async": 4, - "c.loadXML": 1, - "c.documentElement": 4, - "d.nodeName": 4, - "j.test": 3, - "a.execScript": 1, - "a.eval.call": 1, - "c.apply": 2, - "c.call": 3, - "E.call": 1, - "C.call": 1, - "F.call": 1, - "c.length": 8, - "": 1, - "j=": 14, - "k=": 11, - "h.concat.apply": 1, - "f.concat": 1, - "g.guid": 3, - "e.guid": 3, - "access": 2, - "e.access": 1, - "now": 5, - "s.exec": 1, - "t.exec": 1, - "u.exec": 1, - "a.indexOf": 2, - "v.exec": 1, - "sub": 4, - "a.fn.init": 2, - "a.superclass": 1, - "a.fn": 2, - "a.prototype": 1, - "a.fn.constructor": 1, - "a.sub": 1, - "this.sub": 2, - "e.fn.init.call": 1, - "a.fn.init.prototype": 1, - "e.uaMatch": 1, - "x.browser": 2, - "e.browser": 1, - "e.browser.version": 1, - "x.version": 1, - "e.browser.webkit": 1, - "e.browser.safari": 1, - "c.removeEventListener": 2, - "c.detachEvent": 1, - "": 1, - "c=": 24, - "shift": 1, - "apply": 8, - "h.call": 2, - "g.resolveWith": 3, - "<=1&&a&&f.isFunction(a.promise)?a:f.Deferred();if(d>": 1, - "g.reject": 1, - "g.promise": 1, - "f.support": 2, - "a.innerHTML": 7, - "f.appendChild": 1, - "a.firstChild.nodeType": 2, - "e.getAttribute": 2, - "e.style.opacity": 1, - "e.style.cssFloat": 1, - "h.value": 3, - "g.selected": 1, - "a.className": 1, - "h.checked": 2, - "j.noCloneChecked": 1, - "h.cloneNode": 1, - "f.disabled": 1, - "j.optDisabled": 1, - "g.disabled": 1, - "j.deleteExpando": 1, - "a.fireEvent": 1, - "j.noCloneEvent": 1, - "a.detachEvent": 1, - "h.setAttribute": 2, - "j.radioValue": 1, - "c.createDocumentFragment": 1, - "k.appendChild": 1, - "j.checkClone": 1, - "k.cloneNode": 1, - "a.style.width": 1, - "a.style.paddingLeft": 1, - "visibility": 3, - "background": 56, - "l.style": 1, - "l.appendChild": 1, - "j.appendChecked": 1, - "j.boxModel": 1, - "a.style": 8, - "a.style.display": 3, - "a.style.zoom": 1, - "j.inlineBlockNeedsLayout": 1, - "j.shrinkWrapBlocks": 1, - ".offsetHeight": 4, - "j.reliableHiddenOffsets": 1, - "c.defaultView": 2, - "c.defaultView.getComputedStyle": 3, - "i.style.width": 1, - "i.style.marginRight": 1, - "j.reliableMarginRight": 1, - "parseInt": 12, - "marginRight": 2, - ".marginRight": 2, - "l.innerHTML": 1, - "f.boxModel": 1, - "f.support.boxModel": 4, - "uuid": 2, - "f.fn.jquery": 1, - "Math.random": 2, - "D/g": 2, - "hasData": 2, - "f.cache": 5, - "f.acceptData": 4, - "f.uuid": 1, - "f.noop": 4, - "f.camelCase": 5, - ".events": 1, - "f.support.deleteExpando": 3, - "f.noData": 2, - "f.fn.extend": 9, - "g.indexOf": 2, - "g.substring": 1, - "b.triggerHandler": 2, - "_mark": 2, - "_unmark": 3, - "f.makeArray": 5, - "e.push": 3, - "f.queue": 3, - "c.shift": 2, - "c.unshift": 1, - "f.dequeue": 4, - "f.fx": 2, - "f.fx.speeds": 1, - "d.resolveWith": 1, - "f.Deferred": 2, - "f._Deferred": 2, - "l.done": 1, - "d.promise": 1, - "rea": 1, - "autofocus": 1, - "autoplay": 1, - "controls": 1, - "defer": 1, - "required": 1, - "scoped": 1, - "f.access": 3, - "f.attr": 2, - "f.removeAttr": 3, - "f.prop": 2, - "removeProp": 1, - "f.propFix": 6, - "c.addClass": 1, - "f.trim": 2, - "c.removeClass": 1, - "g.nodeType": 6, - "g.className": 4, - "h.replace": 2, - "d.toggleClass": 1, - "d.attr": 1, - "h.hasClass": 1, - "": 1, - "f.valHooks": 7, - "e.nodeName.toLowerCase": 1, - "c.get": 1, - "e.value": 1, - "e.val": 1, - "f.map": 5, - "this.nodeName.toLowerCase": 1, - "this.type": 3, - "c.set": 1, - "valHooks": 1, - "a.attributes.value": 1, - "a.text": 1, - "a.selectedIndex": 3, - "a.options": 2, - "": 3, - "optDisabled": 1, - "selected=": 1, - "attrFix": 1, - "f.attrFn": 3, - "f.isXMLDoc": 4, - "f.attrFix": 3, - "f.attrHooks": 5, - "t.test": 2, - "d.toLowerCase": 1, - "c.toLowerCase": 4, - "u.test": 1, - "i.set": 1, - "i.get": 1, - "f.support.getSetAttribute": 2, - "a.removeAttributeNode": 1, - "q.test": 1, - "f.support.radioValue": 1, - "c.specified": 1, - "c.value": 1, - "r.test": 1, - "s.test": 1, - "propFix": 1, - "cellpadding": 1, - "contenteditable": 1, - "f.propHooks": 1, - "h.set": 1, - "h.get": 1, - "propHooks": 1, - "f.attrHooks.value": 1, - "v.get": 1, - "f.attrHooks.name": 1, - "f.valHooks.button": 1, - "d.nodeValue": 3, - "f.support.hrefNormalized": 1, - "f.support.style": 1, - "f.attrHooks.style": 1, - "a.style.cssText.toLowerCase": 1, - "f.support.optSelected": 1, - "f.propHooks.selected": 2, - "b.parentNode.selectedIndex": 1, - "f.support.checkOn": 1, - "f.inArray": 4, - "s.": 1, - "f.event": 2, - "add": 15, - "d.handler": 1, - "g.handler": 1, - "d.guid": 4, - "f.guid": 3, - "i.events": 2, - "i.handle": 2, - "f.event.triggered": 3, - "f.event.handle.apply": 1, - "k.elem": 2, - "c.split": 2, - "l.indexOf": 1, - "l.split": 1, - "n.shift": 1, - "h.namespace": 2, - "n.slice": 1, - "h.type": 1, - "h.guid": 2, - "f.event.special": 5, - "p.setup": 1, - "p.setup.call": 1, - "p.add": 1, - "p.add.call": 1, - "h.handler.guid": 2, - "o.push": 1, - "f.event.global": 2, - "remove": 9, - "s.events": 1, - "c.type": 9, - "c.handler": 1, - "c.charAt": 1, - "f.event.remove": 5, - "h.indexOf": 3, - "h.split": 2, - "m.shift": 1, - "m.slice": 1, - "q.namespace": 1, - "q.handler": 1, - "p.splice": 1, - "": 1, - "u=": 12, - "elem=": 4, - "customEvent": 1, - "trigger": 4, - "h.slice": 1, - "i.shift": 1, - "i.sort": 1, - "f.event.customEvent": 1, - "f.Event": 2, - "c.exclusive": 2, - "c.namespace": 2, - "i.join": 2, - "c.namespace_re": 1, - "c.preventDefault": 3, - "c.stopPropagation": 1, - "b.events": 4, - "f.event.trigger": 6, - "b.handle.elem": 2, - "c.result": 3, - "c.target": 3, - "do": 15, - "c.currentTarget": 2, - "m.apply": 1, - "k.parentNode": 1, - "k.ownerDocument": 1, - "c.target.ownerDocument": 1, - "c.isPropagationStopped": 1, - "c.isDefaultPrevented": 2, - "o._default": 1, - "o._default.call": 1, - "e.ownerDocument": 1, - "f.event.fix": 2, - "a.event": 1, - "Array.prototype.slice.call": 1, - "namespace_re": 1, - "namespace": 1, - "handler=": 1, - "data=": 2, - "handleObj=": 1, - "result=": 1, - "preventDefault": 4, - "stopPropagation": 5, - "isImmediatePropagationStopped": 2, - "result": 9, - "props": 21, - "split": 4, - "fix": 1, - "Event": 3, - "target=": 2, - "relatedTarget=": 1, - "fromElement=": 1, - "pageX=": 2, - "scrollLeft": 2, - "clientLeft": 2, - "pageY=": 1, - "scrollTop": 2, - "clientTop": 2, - "which=": 3, - "metaKey=": 1, - "2": 66, - "3": 13, - "4": 4, - "1e8": 1, - "special": 3, - "setup": 5, - "teardown": 6, - "origType": 2, - "beforeunload": 1, - "onbeforeunload=": 3, - "removeEvent=": 1, - "removeEventListener": 3, - "detachEvent": 2, - "Event=": 1, - "originalEvent=": 1, - "type=": 5, - "isDefaultPrevented=": 2, - "defaultPrevented": 1, - "returnValue=": 2, - "getPreventDefault": 2, - "timeStamp=": 1, - "prototype=": 2, - "originalEvent": 2, - "isPropagationStopped=": 1, - "cancelBubble=": 1, - "stopImmediatePropagation": 1, - "isImmediatePropagationStopped=": 1, - "isDefaultPrevented": 1, - "isPropagationStopped": 1, - "G=": 1, - "H=": 1, - "submit=": 1, - "specialSubmit": 3, - "closest": 3, - "keyCode=": 1, - "J=": 1, - "selectedIndex": 1, - "a.selected": 1, - "z.test": 3, - "d.readOnly": 1, - "c.liveFired": 1, - "f.event.special.change": 1, - "filters": 1, - "beforedeactivate": 1, - "K.call": 2, - "a.keyCode": 2, - "beforeactivate": 1, - "f.event.add": 2, - "f.event.special.change.filters": 1, - "I.focus": 1, - "I.beforeactivate": 1, - "f.support.focusinBubbles": 1, - "c.originalEvent": 1, - "a.preventDefault": 3, - "f.fn": 9, - "e.apply": 1, - "this.one": 1, - "unbind": 2, - "this.unbind": 2, - "delegate": 1, - "this.live": 1, - "undelegate": 1, - "this.die": 1, - "triggerHandler": 1, - "%": 26, - ".guid": 1, - "this.click": 1, - "this.mouseenter": 1, - ".mouseleave": 1, - "g.charAt": 1, - "n.unbind": 1, - "y.exec": 1, - "a.push": 2, - "n.length": 1, - "": 1, - "this.bind": 2, - "": 2, - "sizcache=": 4, - "sizset": 2, - "sizset=": 2, - "toLowerCase": 3, - "d.nodeType": 5, - "k.isXML": 4, - "a.exec": 2, - "x.push": 1, - "x.length": 8, - "m.exec": 1, - "l.relative": 6, - "x.shift": 4, - "l.match.ID.test": 2, - "q.expr": 4, - "q.set": 4, - "x.pop": 4, - "d.parentNode": 4, - "e.call": 1, - "f.push.apply": 1, - "k.contains": 5, - "a.sort": 1, - "": 1, - "matches=": 1, - "matchesSelector=": 1, - "l.order.length": 1, - "l.order": 1, - "l.leftMatch": 1, - "j.substr": 1, - "": 1, - "__sizzle__": 1, - "sizzle": 1, - "l.match.PSEUDO.test": 1, - "a.document.nodeType": 1, - "a.getElementsByClassName": 3, - "a.lastChild.className": 1, - "l.order.splice": 1, - "l.find.CLASS": 1, - "b.getElementsByClassName": 2, - "c.documentElement.contains": 1, - "a.contains": 2, - "c.documentElement.compareDocumentPosition": 1, - "a.compareDocumentPosition": 1, - "a.ownerDocument": 1, - ".documentElement": 1, - "b.nodeName": 2, - "l.match.PSEUDO.exec": 1, - "l.match.PSEUDO": 1, - "f.expr": 4, - "k.selectors": 1, - "f.expr.filters": 3, - "f.unique": 4, - "f.text": 2, - "k.getText": 1, - "/Until": 1, - "parents": 2, - "prevUntil": 2, - "prevAll": 2, - "U": 1, - "f.expr.match.POS": 1, - "V": 2, - "children": 3, - "contents": 4, - "next": 9, - "prev": 2, - ".filter": 2, - "": 1, - "e.splice": 1, - "this.filter": 2, - "": 1, - "": 1, - ".is": 2, - "c.push": 3, - "g.parentNode": 2, - "U.test": 1, - "": 1, - "f.find.matchesSelector": 2, - "g.ownerDocument": 1, - "this.parent": 2, - ".children": 1, - "a.jquery": 2, - "f.merge": 2, - "this.get": 1, - "andSelf": 1, - "this.add": 1, - "f.dir": 6, - "parentsUntil": 1, - "f.nth": 2, - "nextAll": 1, - "nextUntil": 1, - "siblings": 1, - "f.sibling": 2, - "a.parentNode.firstChild": 1, - "a.contentDocument": 1, - "a.contentWindow.document": 1, - "a.childNodes": 1, - "T.call": 1, - "P.test": 1, - "f.filter": 2, - "R.test": 1, - "Q.test": 1, - "e.reverse": 1, - "g.join": 1, - "f.find.matches": 1, - "dir": 1, - "sibling": 1, - "a.nextSibling": 1, - "<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:]+)[^>": 1, - "/ig": 3, - "tbody/i": 1, - "bc": 1, - "bd": 1, - "/checked": 1, - "s*.checked.": 1, - "java": 1, - "ecma": 1, - "script/i": 1, - "CDATA": 1, - "bg": 3, - "legend": 1, - "thead": 2, - "tr": 23, - "td": 3, - "col": 7, - "_default": 5, - "bg.optgroup": 1, - "bg.option": 1, - "bg.tbody": 1, - "bg.tfoot": 1, - "bg.colgroup": 1, - "bg.caption": 1, - "bg.thead": 1, - "bg.th": 1, - "bg.td": 1, - "f.support.htmlSerialize": 1, - "bg._default": 2, - "c.text": 2, - "this.empty": 3, - ".append": 6, - ".createTextNode": 1, - "wrapAll": 1, - ".wrapAll": 2, - ".eq": 1, - ".clone": 1, - "b.map": 1, - "wrapInner": 1, - ".wrapInner": 1, - "b.contents": 1, - "c.wrapAll": 1, - "b.append": 1, - "wrap": 2, - "unwrap": 1, - ".replaceWith": 1, - "this.childNodes": 1, - ".end": 1, - "append": 1, - "this.domManip": 4, - "this.appendChild": 1, - "prepend": 1, - "this.insertBefore": 1, - "this.firstChild": 1, - "this.parentNode.insertBefore": 2, - "a.push.apply": 2, - "this.nextSibling": 2, - ".toArray": 1, - "f.cleanData": 4, - "d.parentNode.removeChild": 1, - "b.getElementsByTagName": 1, - "this.map": 3, - "f.clone": 2, - ".innerHTML.replace": 1, - "bc.test": 2, - "f.support.leadingWhitespace": 2, - "Z.test": 2, - "_.exec": 2, - ".getElementsByTagName": 2, - ".innerHTML": 3, - "c.html": 3, - "replaceWith": 1, - "c.replaceWith": 1, - ".detach": 1, - "this.parentNode": 1, - ".remove": 2, - ".before": 1, - "detach": 1, - "this.remove": 1, - "domManip": 1, - "f.support.checkClone": 2, - "bd.test": 2, - ".domManip": 1, - "g.html": 1, - "g.domManip": 1, - "j.parentNode": 1, - "f.support.parentNode": 1, - "i.nodeType": 1, - "i.childNodes.length": 1, - "f.buildFragment": 2, - "e.fragment": 1, - "h.childNodes.length": 1, - "h.firstChild": 2, - "": 1, - "k.length": 2, - ".charAt": 1, - "f.fragments": 3, - "i.createDocumentFragment": 1, - "f.clean": 1, - "appendTo": 1, - "prependTo": 1, - "insertBefore": 1, - "insertAfter": 1, - "replaceAll": 1, - "g.childNodes.length": 1, - "this.clone": 1, - ".get": 3, - "d.concat": 1, - "e.selector": 1, - "f.support.noCloneEvent": 1, - "f.support.noCloneChecked": 1, - "b.createElement": 2, - "b.createTextNode": 2, - "k.replace": 2, - "o.innerHTML": 1, - "o.lastChild": 1, - "f.support.tbody": 1, - "ba.test": 1, - "o.firstChild": 2, - "o.firstChild.childNodes": 1, - "o.childNodes": 2, - "q.length": 1, - ".childNodes.length": 1, - ".parentNode.removeChild": 2, - "o.insertBefore": 1, - "Z.exec": 1, - "f.support.appendChecked": 1, - "k.nodeType": 1, - "h.push": 1, - "be.test": 1, - ".type.toLowerCase": 1, - "h.splice.apply": 1, - ".concat": 3, - "cleanData": 1, - "j.nodeName": 1, - "j.nodeName.toLowerCase": 1, - "f.removeEvent": 1, - "b.handle": 2, - "j.removeAttribute": 2, - "bo": 2, - "/alpha": 1, - "bp": 1, - "/opacity": 1, - "bq": 2, - "br": 19, - "ms": 2, - "bs": 2, - "bt": 42, - "bu": 11, - "bv": 2, - "de": 1, - "bw": 2, - "bz": 7, - "bA": 3, - "bB": 5, - "bC": 2, - "f.fn.css": 1, - "f.style": 4, - "cssHooks": 1, - "a.style.opacity": 2, - "cssNumber": 3, - "zIndex": 1, - "fontWeight": 1, - "zoom": 1, - "lineHeight": 1, - "widows": 1, - "orphans": 1, - "cssProps": 1, - "f.support.cssFloat": 1, - "f.cssHooks": 3, - "f.cssProps": 2, - "k.get": 1, - "bu.test": 1, - "d.replace": 1, - "f.cssNumber": 1, - "k.set": 1, - "g.get": 1, - "swap": 1, - "f.curCSS": 1, - "f.swap": 2, - "<0||e==null){e=a.style[b];return>": 1, - "0px": 1, - "f.support.opacity": 1, - "f.cssHooks.opacity": 1, - "bp.test": 1, - "a.currentStyle": 4, - "a.currentStyle.filter": 1, - "a.style.filter": 1, - "RegExp.": 1, - "c.zoom": 1, - "b*100": 1, - "d.filter": 1, - "c.filter": 2, - "bo.test": 1, - "g.replace": 1, - "f.support.reliableMarginRight": 1, - "f.cssHooks.marginRight": 1, - "a.style.marginRight": 1, - "a.ownerDocument.defaultView": 1, - "e.getComputedStyle": 1, - "g.getPropertyValue": 1, - "a.ownerDocument.documentElement": 1, - "c.documentElement.currentStyle": 1, - "a.runtimeStyle": 2, - "bs.test": 1, - "bt.test": 1, - "f.left": 3, - "a.runtimeStyle.left": 2, - "a.currentStyle.left": 1, - "f.pixelLeft": 1, - "f.expr.filters.hidden": 2, - "f.support.reliableHiddenOffsets": 1, - "f.expr.filters.visible": 1, - "bE": 2, - "bF": 1, - "bG": 3, - "n/g": 1, - "bH": 2, - "/#.*": 1, - "bI": 1, - "/mg": 1, - "bJ": 1, - "color": 4, - "date": 1, - "datetime": 1, - "email": 2, - "month": 1, - "range": 2, - "search": 5, - "tel": 2, - "time": 1, - "week": 1, - "bK": 1, - "about": 1, - "storage": 1, - "extension": 1, - "widget": 1, - "bL": 1, - "GET": 1, - "bM": 2, - "bN": 2, - "bO": 2, - "<\\/script>": 2, - "/gi": 2, - "bP": 1, - "bR": 2, - "*/": 2, - "bS": 1, - "bT": 2, - "f.fn.load": 1, - "bV": 3, - "bW": 5, - "bX": 8, - "e.href": 1, - "bY": 1, - "bW.href": 2, - "bS.exec": 1, - "bW.toLowerCase": 1, - "bT.apply": 1, - "a.slice": 2, - "f.param": 2, - "f.ajaxSettings.traditional": 2, - "complete": 6, - "a.responseText": 1, - "a.isResolved": 1, - "a.done": 1, - "i.html": 1, - "i.each": 1, - "serialize": 1, - "this.serializeArray": 1, - "serializeArray": 1, - "this.elements": 2, - "this.disabled": 1, - "this.checked": 1, - "bP.test": 1, - "bJ.test": 1, - ".map": 1, - "b.name": 2, - "success": 2, - "getScript": 1, - "f.get": 2, - "getJSON": 1, - "ajaxSetup": 1, - "f.ajaxSettings": 4, - "ajaxSettings": 1, - "isLocal": 1, - "bK.test": 1, - "contentType": 4, - "processData": 3, - "accepts": 5, - "xml": 3, - "json": 2, - "/xml/": 1, - "/html/": 1, - "/json/": 1, - "responseFields": 1, - "converters": 2, - "a.String": 1, - "f.parseXML": 1, - "ajaxPrefilter": 1, - "ajaxTransport": 1, - "ajax": 2, - "clearTimeout": 2, - "v.readyState": 1, - "d.ifModified": 1, - "v.getResponseHeader": 2, - "f.lastModified": 1, - "f.etag": 1, - "v.status": 1, - "v.statusText": 1, - "h.resolveWith": 1, - "h.rejectWith": 1, - "v.statusCode": 2, - "g.trigger": 2, - "i.resolveWith": 1, - "f.active": 1, - "f.ajaxSetup": 3, - "d.statusCode": 1, - "readyState": 1, - "setRequestHeader": 6, - "getAllResponseHeaders": 1, - "getResponseHeader": 1, - "bI.exec": 1, - "overrideMimeType": 1, - "d.mimeType": 1, - "abort": 4, - "p.abort": 1, - "h.promise": 1, - "v.success": 1, - "v.done": 1, - "v.error": 1, - "v.fail": 1, - "v.complete": 1, - "i.done": 1, - "<2)for(b>": 1, - "url=": 1, - "dataTypes=": 1, - "crossDomain=": 2, - "exec": 8, - "80": 2, - "443": 2, - "param": 3, - "traditional": 1, - "s=": 12, - "t=": 19, - "toUpperCase": 1, - "hasContent=": 1, - "active": 2, - "ajaxStart": 1, - "hasContent": 2, - "cache=": 1, - "x=": 1, - "y=": 5, - "1_=": 1, - "_=": 1, - "Content": 1, - "Type": 1, - "ifModified": 1, - "lastModified": 3, - "Modified": 1, - "etag": 3, - "None": 1, - "Accept": 1, - "dataTypes": 4, - "q=": 1, - "01": 1, - "beforeSend": 2, - "p=": 5, - "No": 1, - "Transport": 1, - "readyState=": 1, - "ajaxSend": 1, - "v.abort": 1, - "d.timeout": 1, - "p.send": 1, - "encodeURIComponent": 2, - "f.isPlainObject": 1, - "d.join": 1, - "cc": 2, - "cd": 3, - "jsonp": 1, - "jsonpCallback": 1, - "f.ajaxPrefilter": 2, - "b.contentType": 1, - "b.data": 5, - "b.dataTypes": 2, - "b.jsonp": 3, - "cd.test": 2, - "b.url": 4, - "b.jsonpCallback": 4, - "d.always": 1, - "b.converters": 1, - "/javascript": 1, - "ecmascript/": 1, - "a.cache": 2, - "a.crossDomain": 2, - "a.global": 1, - "f.ajaxTransport": 2, - "c.head": 1, - "c.getElementsByTagName": 1, - "send": 2, - "d.async": 1, - "a.scriptCharset": 2, - "d.charset": 1, - "d.src": 1, - "a.url": 1, - "d.onload": 3, - "d.onreadystatechange": 2, - "d.readyState": 2, - "/loaded": 1, - "complete/.test": 1, - "e.removeChild": 1, - "e.insertBefore": 1, - "e.firstChild": 1, - "ce": 6, - "cg": 7, - "cf": 7, - "f.ajaxSettings.xhr": 2, - "this.isLocal": 1, - "cors": 1, - "f.support.ajax": 1, - "c.crossDomain": 3, - "f.support.cors": 1, - "c.xhr": 1, - "c.username": 2, - "h.open": 2, - "c.url": 2, - "c.password": 1, - "c.xhrFields": 3, - "c.mimeType": 2, - "h.overrideMimeType": 2, - "h.setRequestHeader": 1, - "h.send": 1, - "c.hasContent": 1, - "h.readyState": 3, - "h.onreadystatechange": 2, - "h.abort": 1, - "h.status": 1, - "h.getAllResponseHeaders": 1, - "h.responseXML": 1, - "n.documentElement": 1, - "m.xml": 1, - "m.text": 2, - "h.responseText": 1, - "h.statusText": 1, - "c.isLocal": 1, - ".unload": 1, - "cm": 2, - "cn": 1, - "co": 5, - "cp": 1, - "cr": 20, - "a.webkitRequestAnimationFrame": 1, - "a.mozRequestAnimationFrame": 1, - "a.oRequestAnimationFrame": 1, - "this.animate": 2, - "d.style": 3, - ".style": 1, - "": 1, - "_toggle": 2, - "animate": 4, - "fadeTo": 1, - "queue=": 2, - "animatedProperties=": 1, - "animatedProperties": 2, - "specialEasing": 2, - "easing": 3, - "swing": 2, - "overflow=": 2, - "overflow": 2, - "overflowX": 1, - "overflowY": 1, - "float": 3, - "display=": 3, - "zoom=": 1, - "fx": 10, - "l=": 10, - "m=": 2, - "custom": 5, - "stop": 7, - "timers": 3, - "slideDown": 1, - "slideUp": 1, - "slideToggle": 1, - "fadeIn": 1, - "fadeOut": 1, - "fadeToggle": 1, - "duration": 4, - "duration=": 2, - "off": 1, - "speeds": 4, - "old=": 1, - "complete=": 1, - "old": 2, - "linear": 1, - "Math": 51, - "cos": 1, - "PI": 54, - "5": 23, - "options=": 1, - "prop=": 3, - "orig=": 1, - "orig": 3, - "step": 7, - "startTime=": 1, - "start=": 1, - "end=": 1, - "unit=": 1, - "unit": 1, - "now=": 1, - "pos=": 1, - "state=": 1, - "co=": 2, - "tick": 3, - "interval": 3, - "show=": 1, - "hide=": 1, - "e.duration": 3, - "this.startTime": 2, - "this.now": 3, - "this.end": 2, - "this.pos": 4, - "this.state": 3, - "this.update": 2, - "e.animatedProperties": 5, - "this.prop": 2, - "e.overflow": 2, - "f.support.shrinkWrapBlocks": 1, - "e.hide": 2, - ".hide": 2, - "e.show": 1, - "e.orig": 1, - "e.complete.call": 1, - "Infinity": 1, - "h/e.duration": 1, - "f.easing": 1, - "this.start": 2, - "*this.pos": 1, - "f.timers": 2, - "a.splice": 1, - "f.fx.stop": 1, - "clearInterval": 6, - "slow": 1, - "fast": 1, - "a.elem": 2, - "a.now": 4, - "a.elem.style": 3, - "a.prop": 5, - "Math.max": 10, - "a.unit": 1, - "f.expr.filters.animated": 1, - "b.elem": 1, - "cw": 1, - "able": 1, - "cx": 2, - "f.fn.offset": 2, - "f.offset.setOffset": 2, - "b.ownerDocument.body": 2, - "f.offset.bodyOffset": 2, - "b.getBoundingClientRect": 1, - "e.documentElement": 4, - "c.top": 4, - "c.left": 4, - "e.body": 3, - "g.clientTop": 1, - "h.clientTop": 1, - "g.clientLeft": 1, - "h.clientLeft": 1, - "i.pageYOffset": 1, - "g.scrollTop": 1, - "h.scrollTop": 2, - "i.pageXOffset": 1, - "g.scrollLeft": 1, - "h.scrollLeft": 2, - "f.offset.initialize": 3, - "b.offsetParent": 2, - "g.documentElement": 1, - "g.body": 1, - "g.defaultView": 1, - "j.getComputedStyle": 2, - "b.currentStyle": 2, - "b.offsetTop": 2, - "b.offsetLeft": 2, - "f.offset.supportsFixedPosition": 2, - "k.position": 4, - "b.scrollTop": 1, - "b.scrollLeft": 1, - "f.offset.doesNotAddBorder": 1, - "f.offset.doesAddBorderForTableAndCells": 1, - "cw.test": 1, - "c.borderTopWidth": 2, - "c.borderLeftWidth": 2, - "f.offset.subtractsBorderForOverflowNotVisible": 1, - "c.overflow": 1, - "i.offsetTop": 1, - "i.offsetLeft": 1, - "i.scrollTop": 1, - "i.scrollLeft": 1, - "f.offset": 1, - "initialize": 3, - "b.style": 1, - "d.nextSibling.firstChild.firstChild": 1, - "this.doesNotAddBorder": 1, - "e.offsetTop": 4, - "this.doesAddBorderForTableAndCells": 1, - "h.offsetTop": 1, - "e.style.position": 2, - "e.style.top": 2, - "this.supportsFixedPosition": 1, - "d.style.overflow": 1, - "d.style.position": 1, - "this.subtractsBorderForOverflowNotVisible": 1, - "this.doesNotIncludeMarginInBodyOffset": 1, - "a.offsetTop": 2, - "bodyOffset": 1, - "a.offsetLeft": 1, - "f.offset.doesNotIncludeMarginInBodyOffset": 1, - "setOffset": 1, - "a.style.position": 1, - "e.offset": 1, - "e.position": 1, - "l.top": 1, - "l.left": 1, - "b.top": 2, - "k.top": 1, - "g.top": 1, - "b.left": 2, - "k.left": 1, - "g.left": 1, - "b.using.call": 1, - "e.css": 1, - "this.offsetParent": 2, - "this.offset": 2, - "cx.test": 2, - "b.offset": 1, - "d.top": 2, - "d.left": 2, - "offsetParent": 1, - "a.offsetParent": 1, - "g.document.documentElement": 1, - "g.document.body": 1, - "g.scrollTo": 1, - ".scrollLeft": 1, - ".scrollTop": 1, - "e.document.documentElement": 1, - "e.document.compatMode": 1, - "e.document.body": 1, - "this.css": 1, - "Prioritize": 1, - "": 1, - "XSS": 1, - "location.hash": 1, - "#9521": 1, - "Matches": 1, - "dashed": 1, - "camelizing": 1, - "rdashAlpha": 1, - "rmsPrefix": 1, - "fcamelCase": 1, - "letter": 3, - "readyList.fireWith": 1, - ".off": 1, - "jQuery.Callbacks": 2, - "IE8": 2, - "exceptions": 2, - "#9897": 1, - "elems": 9, - "chainable": 4, - "emptyGet": 3, - "bulk": 3, - "elems.length": 1, - "Sets": 3, - "jQuery.access": 2, - "Optionally": 1, - "executed": 1, - "Bulk": 1, - "operations": 1, - "iterate": 1, - "executing": 1, - "exec.call": 1, - "they": 2, - "run": 1, - "against": 1, - "entire": 1, - "fn.call": 2, - "value.call": 1, - "Gets": 2, - "frowned": 1, - "upon.": 1, - "More": 1, - "//docs.jquery.com/Utilities/jQuery.browser": 1, - "ua": 6, - "ua.toLowerCase": 1, - "rwebkit.exec": 1, - "ropera.exec": 1, - "rmsie.exec": 1, - "ua.indexOf": 1, - "rmozilla.exec": 1, - "jQuerySub": 7, - "jQuerySub.fn.init": 2, - "jQuerySub.superclass": 1, - "jQuerySub.fn": 2, - "jQuerySub.prototype": 1, - "jQuerySub.fn.constructor": 1, - "jQuerySub.sub": 1, - "jQuery.fn.init.call": 1, - "rootjQuerySub": 2, - "jQuerySub.fn.init.prototype": 1, - "jQuery.uaMatch": 1, - "browserMatch.browser": 2, - "jQuery.browser.version": 1, - "browserMatch.version": 1, - "jQuery.browser.webkit": 1, - "jQuery.browser.safari": 1, - "flagsCache": 3, - "createFlags": 2, - "flags": 13, - "flags.split": 1, - "flags.length": 1, - "Convert": 1, - "formatted": 2, - "Actual": 2, - "Stack": 1, - "fire": 4, - "calls": 1, - "repeatable": 1, - "lists": 2, - "stack": 2, - "forgettable": 1, - "memory": 8, - "Flag": 2, - "First": 3, - "fireWith": 1, - "firingStart": 3, - "End": 1, - "firingLength": 4, - "Index": 1, - "firingIndex": 5, - "several": 1, - "actual": 1, - "Inspect": 1, - "recursively": 1, - "mode": 1, - "flags.unique": 1, - "self.has": 1, - "list.push": 1, - "Fire": 1, - "flags.memory": 1, - "flags.stopOnFalse": 1, - "Mark": 1, - "halted": 1, - "flags.once": 1, - "stack.length": 1, - "stack.shift": 1, - "self.fireWith": 1, - "self.disable": 1, - "Callbacks": 1, - "collection": 3, - "Do": 2, - "current": 7, - "batch": 2, - "With": 1, - "/a": 1, - ".55": 1, - "basic": 1, - "all.length": 1, - "supports": 2, - "select.appendChild": 1, - "strips": 1, - "leading": 1, - "div.firstChild.nodeType": 1, - "manipulated": 1, - "normalizes": 1, - "around": 1, - "issue.": 1, - "#5145": 1, - "existence": 1, - "styleFloat": 1, - "a.style.cssFloat": 1, - "defaults": 3, - "working": 1, - "property.": 1, - "too": 1, - "marked": 1, - "marks": 1, - "select.disabled": 1, - "support.optDisabled": 1, - "opt.disabled": 1, - "handlers": 1, - "support.noCloneEvent": 1, - "div.cloneNode": 1, - "maintains": 1, - "#11217": 1, - "loses": 1, - "div.lastChild": 1, - "conMarginTop": 3, - "paddingMarginBorder": 5, - "positionTopLeftWidthHeight": 3, - "paddingMarginBorderVisibility": 3, - "container": 4, - "container.style.cssText": 1, - "body.insertBefore": 1, - "body.firstChild": 1, - "Construct": 1, - "container.appendChild": 1, - "cells": 3, - "still": 4, - "offsetWidth/Height": 3, - "visible": 1, - "row": 1, - "reliable": 1, - "offsets": 1, - "safety": 1, - "goggles": 1, - "#4512": 1, - "fails": 2, - "support.reliableHiddenOffsets": 1, - "explicit": 1, - "right": 3, - "incorrectly": 1, - "computed": 1, - "based": 1, - "container.": 1, - "#3333": 1, - "Feb": 1, - "Bug": 1, - "getComputedStyle": 3, - "returns": 1, - "wrong": 1, - "window.getComputedStyle": 6, - "marginDiv.style.width": 1, - "marginDiv.style.marginRight": 1, - "div.style.width": 2, - "support.reliableMarginRight": 1, - "div.style.zoom": 2, - "natively": 1, - "block": 4, - "act": 1, - "setting": 2, - "giving": 1, - "layout": 2, - "div.style.padding": 1, - "div.style.border": 1, - "div.style.overflow": 2, - "div.style.display": 2, - "support.inlineBlockNeedsLayout": 1, - "div.offsetWidth": 2, - "shrink": 1, - "support.shrinkWrapBlocks": 1, - "div.style.cssText": 1, - "outer.firstChild": 1, - "outer.nextSibling.firstChild.firstChild": 1, - "offsetSupport": 2, - "doesNotAddBorder": 1, - "inner.offsetTop": 4, - "doesAddBorderForTableAndCells": 1, - "td.offsetTop": 1, - "inner.style.position": 2, - "inner.style.top": 2, - "safari": 1, - "subtracts": 1, - "here": 1, - "offsetSupport.fixedPosition": 1, - "outer.style.overflow": 1, - "outer.style.position": 1, - "offsetSupport.subtractsBorderForOverflowNotVisible": 1, - "offsetSupport.doesNotIncludeMarginInBodyOffset": 1, - "body.offsetTop": 1, - "div.style.marginTop": 1, - "support.pixelMargin": 1, - ".marginTop": 1, - "container.style.zoom": 2, - "body.removeChild": 1, - "rbrace": 1, - "Please": 1, - "caution": 1, - "Unique": 1, - "page": 1, - "rinlinejQuery": 1, - "jQuery.fn.jquery": 1, - "following": 1, - "uncatchable": 1, - "you": 1, - "attempt": 2, - "them.": 1, - "Ban": 1, - "except": 1, - "Flash": 1, - "jQuery.acceptData": 2, - "privateCache": 1, - "differently": 1, - "because": 1, - "IE6": 1, - "order": 1, - "collisions": 1, - "between": 1, - "user": 1, - "data.": 1, - "thisCache.data": 3, - "Users": 1, - "should": 1, - "inspect": 1, - "undocumented": 1, - "subject": 1, - "change.": 1, - "But": 1, - "anyone": 1, - "listen": 1, - "No.": 1, - "isEvents": 1, - "privateCache.events": 1, - "converted": 2, - "camel": 2, - "names": 2, - "camelCased": 1, - "Reference": 1, - "entry": 1, - "purpose": 1, - "continuing": 1, - "Support": 1, - "space": 1, - "separated": 1, - "jQuery.isArray": 1, - "manipulation": 1, - "cased": 1, - "name.split": 1, - "name.length": 1, - "want": 1, - "let": 1, - "destroyed": 2, - "jQuery.isEmptyObject": 1, - "Don": 1, - "care": 1, - "Ensure": 1, - "#10080": 1, - "cache.setInterval": 1, - "part": 8, - "jQuery._data": 2, - "elem.attributes": 1, - "self.triggerHandler": 2, - "jQuery.isNumeric": 1, - "All": 1, - "lowercase": 1, - "Grab": 1, - "necessary": 1, - "hook": 1, - "nodeHook": 1, - "attrNames": 3, - "isBool": 4, - "rspace": 1, - "attrNames.length": 1, - "#9699": 1, - "explanation": 1, - "approach": 1, - "removal": 1, - "#10870": 1, - "**": 1, - "timeStamp": 1, - "char": 2, - "buttons": 1, - "SHEBANG#!node": 2, - "http.createServer": 1, - "res.writeHead": 1, - "res.end": 1, - ".listen": 1, - "Date.prototype.toJSON": 2, - "isFinite": 1, - "this.valueOf": 2, - "this.getUTCFullYear": 1, - "this.getUTCMonth": 1, - "this.getUTCDate": 1, - "this.getUTCHours": 1, - "this.getUTCMinutes": 1, - "this.getUTCSeconds": 1, - "String.prototype.toJSON": 1, - "Number.prototype.toJSON": 1, - "Boolean.prototype.toJSON": 1, - "u0000": 1, - "u00ad": 1, - "u0600": 1, - "u0604": 1, - "u070f": 1, - "u17b4": 1, - "u17b5": 1, - "u200c": 1, - "u200f": 1, - "u2028": 3, - "u202f": 1, - "u2060": 1, - "u206f": 1, - "ufeff": 1, - "ufff0": 1, - "uffff": 1, - "escapable": 1, - "/bfnrt": 1, - "fA": 2, - "JSON.parse": 1, - "PUT": 1, - "DELETE": 1, - "_id": 1, - "ties": 1, - "collection.": 1, - "_removeReference": 1, - "model.collection": 2, - "model.unbind": 1, - "this._onModelEvent": 1, - "_onModelEvent": 1, - "ev": 5, - "this._remove": 1, - "model.idAttribute": 2, - "this._byId": 2, - "model.previous": 1, - "model.id": 1, - "this.trigger.apply": 2, - "_.each": 1, - "Backbone.Collection.prototype": 1, - "this.models": 1, - "_.toArray": 1, - "Backbone.Router": 1, - "options.routes": 2, - "this.routes": 4, - "this._bindRoutes": 1, - "this.initialize.apply": 2, - "namedParam": 2, - "splatParam": 2, - "escapeRegExp": 2, - "_.extend": 9, - "Backbone.Router.prototype": 1, - "Backbone.Events": 2, - "route": 18, - "Backbone.history": 2, - "Backbone.History": 2, - "_.isRegExp": 1, - "this._routeToRegExp": 1, - "Backbone.history.route": 1, - "_.bind": 2, - "this._extractParameters": 1, - "callback.apply": 1, - "navigate": 2, - "triggerRoute": 4, - "Backbone.history.navigate": 1, - "_bindRoutes": 1, - "routes": 4, - "routes.unshift": 1, - "routes.length": 1, - "this.route": 1, - "_routeToRegExp": 1, - "route.replace": 1, - "_extractParameters": 1, - "route.exec": 1, - "this.handlers": 2, - "_.bindAll": 1, - "hashStrip": 4, - "#*": 1, - "isExplorer": 1, - "/msie": 1, - "historyStarted": 3, - "Backbone.History.prototype": 1, - "getFragment": 1, - "forcePushState": 2, - "this._hasPushState": 6, - "window.location.pathname": 1, - "window.location.search": 1, - "fragment.indexOf": 1, - "this.options.root": 6, - "fragment.substr": 1, - "this.options.root.length": 1, - "window.location.hash": 3, - "fragment.replace": 1, - "this._wantsPushState": 3, - "this.options.pushState": 2, - "window.history": 2, - "window.history.pushState": 2, - "this.getFragment": 6, - "docMode": 3, - "document.documentMode": 3, - "oldIE": 3, - "isExplorer.exec": 1, - "navigator.userAgent.toLowerCase": 1, - "this.iframe": 4, - ".contentWindow": 1, - "this.navigate": 2, - ".bind": 3, - "this.checkUrl": 3, - "setInterval": 6, - "this.interval": 1, - "this.fragment": 13, - "loc": 2, - "atRoot": 3, - "loc.pathname": 1, - "loc.hash": 1, - "loc.hash.replace": 1, - "window.history.replaceState": 1, - "document.title": 2, - "loc.protocol": 2, - "loc.host": 2, - "this.loadUrl": 4, - "this.handlers.unshift": 1, - "checkUrl": 1, - "this.iframe.location.hash": 3, - "decodeURIComponent": 2, - "loadUrl": 1, - "fragmentOverride": 2, - "matched": 2, - "_.any": 1, - "handler.route.test": 1, - "handler.callback": 1, - "frag": 13, - "frag.indexOf": 1, - "this.iframe.document.open": 1, - ".close": 1, - "Backbone.View": 1, - "this.cid": 3, - "_.uniqueId": 1, - "this._configure": 1, - "this._ensureElement": 1, - "this.delegateEvents": 1, - "selectorDelegate": 2, - "this.el": 10, - "eventSplitter": 2, - "viewOptions": 2, - "Backbone.View.prototype": 1, - "tagName": 3, - "render": 1, - "el": 4, - ".attr": 1, - ".html": 1, - "delegateEvents": 1, - "this.events": 1, - "key.match": 1, - "_configure": 1, - "viewOptions.length": 1, - "_ensureElement": 1, - "attrs": 6, - "this.attributes": 1, - "this.id": 2, - "attrs.id": 1, - "this.make": 1, - "this.tagName": 1, - "_.isString": 1, - "protoProps": 6, - "classProps": 2, - "inherits": 2, - "child.extend": 1, - "this.extend": 1, - "Backbone.Model.extend": 1, - "Backbone.Collection.extend": 1, - "Backbone.Router.extend": 1, - "Backbone.View.extend": 1, - "methodMap": 2, - "Backbone.sync": 1, - "params": 2, - "params.url": 2, - "getUrl": 2, - "urlError": 2, - "params.data": 5, - "params.contentType": 2, - "model.toJSON": 1, - "Backbone.emulateJSON": 2, - "params.processData": 1, - "Backbone.emulateHTTP": 1, - "params.data._method": 1, - "params.type": 1, - "params.beforeSend": 1, - "xhr": 1, - "xhr.setRequestHeader": 1, - ".ajax": 1, - "staticProps": 3, - "protoProps.hasOwnProperty": 1, - "protoProps.constructor": 1, - "parent.apply": 1, - "child.prototype.constructor": 1, - "object.url": 4, - "_.isFunction": 1, - "wrapError": 1, - "onError": 3, - "resp": 3, - "model.trigger": 1, - "escapeHTML": 1, - "string.replace": 1, - "#x": 1, - "da": 1, - "": 1, - "lt": 55, - "#x27": 1, - "#x2F": 1, - "window.Modernizr": 1, - "Modernizr": 12, - "enableClasses": 3, - "docElement": 1, - "mod": 12, - "modElem": 2, - "mStyle": 2, - "modElem.style": 1, - "inputElem": 6, - "smile": 4, - "prefixes": 2, - "omPrefixes": 1, - "cssomPrefixes": 2, - "omPrefixes.split": 1, - "domPrefixes": 3, - "omPrefixes.toLowerCase": 1, - "ns": 1, - "inputs": 3, - "classes": 1, - "classes.slice": 1, - "featureName": 5, - "testing": 1, - "injectElementWithStyles": 9, - "rule": 5, - "testnames": 3, - "fakeBody": 4, - "node.id": 1, - "div.id": 1, - "fakeBody.appendChild": 1, - "//avoid": 1, - "crashing": 1, - "fakeBody.style.background": 1, - "docElement.appendChild": 2, - "fakeBody.parentNode.removeChild": 1, - "div.parentNode.removeChild": 1, - "testMediaQuery": 2, - "mq": 3, - "matchMedia": 3, - "window.matchMedia": 1, - "window.msMatchMedia": 1, - ".matches": 1, - "bool": 30, - "node.currentStyle": 2, - "isEventSupported": 5, - "TAGNAMES": 2, - "element.setAttribute": 3, - "element.removeAttribute": 2, - "_hasOwnProperty": 2, - "hasOwnProperty": 5, - "_hasOwnProperty.call": 2, - "object.constructor.prototype": 1, - "Function.prototype.bind": 2, - "slice.call": 3, - "F.prototype": 1, - "target.prototype": 1, - "target.apply": 2, - "args.concat": 2, - "setCss": 7, - "str": 4, - "mStyle.cssText": 1, - "setCssAll": 2, - "str1": 6, - "str2": 4, - "prefixes.join": 3, - "substr": 2, - "testProps": 3, - "prefixed": 7, - "testDOMProps": 2, - "item": 4, - "item.bind": 1, - "testPropsAll": 17, - "ucProp": 5, - "prop.charAt": 1, - "prop.substr": 1, - "cssomPrefixes.join": 1, - "elem.getContext": 2, - ".getContext": 8, - ".fillText": 1, - "window.WebGLRenderingContext": 1, - "window.DocumentTouch": 1, - "DocumentTouch": 1, - "node.offsetTop": 1, - "window.postMessage": 1, - "window.openDatabase": 1, - "history.pushState": 1, - "mStyle.backgroundColor": 3, - "mStyle.background": 1, - ".style.textShadow": 1, - "mStyle.opacity": 1, - "str3": 2, - "str1.length": 1, - "mStyle.backgroundImage": 1, - "docElement.style": 1, - "node.offsetLeft": 1, - "node.offsetHeight": 2, - "document.styleSheets": 1, - "document.styleSheets.length": 1, - "cssText": 4, - "style.cssRules": 3, - "style.cssText": 1, - "/src/i.test": 1, - "cssText.indexOf": 1, - "rule.split": 1, - "elem.canPlayType": 10, - "Boolean": 2, - "bool.ogg": 2, - "bool.h264": 1, - "bool.webm": 1, - "bool.mp3": 1, - "bool.wav": 1, - "bool.m4a": 1, - "localStorage.setItem": 1, - "localStorage.removeItem": 1, - "sessionStorage.setItem": 1, - "sessionStorage.removeItem": 1, - "window.Worker": 1, - "window.applicationCache": 1, - "document.createElementNS": 6, - "ns.svg": 4, - ".createSVGRect": 1, - "div.firstChild.namespaceURI": 1, - "/SVGAnimate/.test": 1, - "toString.call": 2, - "/SVGClipPath/.test": 1, - "webforms": 2, - "props.length": 2, - "attrs.list": 2, - "window.HTMLDataListElement": 1, - "inputElemType": 5, - "defaultView": 2, - "inputElem.setAttribute": 1, - "inputElem.type": 1, - "inputElem.value": 2, - "inputElem.style.cssText": 1, - "inputElem.style.WebkitAppearance": 1, - "document.defaultView": 1, - "defaultView.getComputedStyle": 2, - ".WebkitAppearance": 1, - "inputElem.offsetHeight": 1, - "docElement.removeChild": 1, - "inputElem.checkValidity": 2, - "feature": 12, - "feature.toLowerCase": 2, - "classes.push": 1, - "Modernizr.input": 1, - "Modernizr.addTest": 2, - "docElement.className": 2, - "chaining.": 1, - "window.html5": 2, - "reSkip": 1, - "saveClones": 1, - "fieldset": 1, - "h1": 5, - "h2": 5, - "h3": 3, - "h4": 3, - "h5": 1, - "h6": 1, - "img": 1, - "label": 2, - "li": 19, - "ol": 1, - "span": 1, - "strong": 1, - "tfoot": 1, - "th": 1, - "ul": 1, - "supportsHtml5Styles": 5, - "supportsUnknownElements": 3, - "//if": 2, - "implemented": 1, - "assume": 1, - "Styles": 1, - "Chrome": 2, - "additional": 1, - "solve": 1, - "node.hidden": 1, - ".display": 1, - "a.childNodes.length": 1, - "frag.cloneNode": 1, - "frag.createDocumentFragment": 1, - "frag.createElement": 2, - "addStyleSheet": 2, - "ownerDocument.createElement": 3, - "ownerDocument.getElementsByTagName": 1, - "ownerDocument.documentElement": 1, - "p.innerHTML": 1, - "parent.insertBefore": 1, - "p.lastChild": 1, - "parent.firstChild": 1, - "getElements": 2, - "html5.elements": 1, - "elements.split": 1, - "shivMethods": 2, - "docCreateElement": 5, - "docCreateFragment": 2, - "ownerDocument.createDocumentFragment": 2, - "//abort": 1, - "shiv": 1, - "html5.shivMethods": 1, - "saveClones.test": 1, - "node.canHaveChildren": 1, - "reSkip.test": 1, - "frag.appendChild": 1, - "html5": 3, - "shivDocument": 3, - "shived": 5, - "ownerDocument.documentShived": 2, - "html5.shivCSS": 1, - "options.elements": 1, - "options.shivCSS": 1, - "options.shivMethods": 1, - "Modernizr._version": 1, - "Modernizr._prefixes": 1, - "Modernizr._domPrefixes": 1, - "Modernizr._cssomPrefixes": 1, - "Modernizr.mq": 1, - "Modernizr.hasEvent": 1, - "Modernizr.testProp": 1, - "Modernizr.testAllProps": 1, - "Modernizr.testStyles": 1, - "Modernizr.prefixed": 1, - "docElement.className.replace": 1, - "js": 1, - "classes.join": 1, - "this.document": 1, - "window.angular": 1, - "PEG.parser": 1, - "quote": 3, - "result0": 264, - "result1": 81, - "result2": 77, - "parse_singleQuotedCharacter": 3, - "result1.push": 3, - "input.charCodeAt": 18, - "pos": 197, - "reportFailures": 64, - "matchFailed": 40, - "pos1": 63, - "chars": 1, - "chars.join": 1, - "pos0": 51, - "parse_simpleSingleQuotedCharacter": 2, - "parse_simpleEscapeSequence": 3, - "parse_zeroEscapeSequence": 3, - "parse_hexEscapeSequence": 3, - "parse_unicodeEscapeSequence": 3, - "parse_eolEscapeSequence": 3, - "pos2": 22, - "parse_eolChar": 6, - "input.length": 9, - "input.charAt": 21, - "char_": 9, - "parse_class": 1, - "result3": 35, - "result4": 12, - "result5": 4, - "parse_classCharacterRange": 3, - "parse_classCharacter": 5, - "result2.push": 1, - "parse___": 2, - "inverted": 4, - "partsConverted": 2, - "part.data": 1, - "rawText": 5, - "part.rawText": 1, - "ignoreCase": 1, - "begin": 1, - "begin.data.charCodeAt": 1, - "end.data.charCodeAt": 1, - "this.SyntaxError": 2, - "begin.rawText": 2, - "end.rawText": 2, - "begin.data": 1, - "end.data": 1, - "parse_bracketDelimitedCharacter": 2, - "quoteForRegexpClass": 1, - "parse_simpleBracketDelimitedCharacter": 2, - "parse_digit": 3, - "recognize": 1, - "input.substr": 9, - "parse_hexDigit": 7, - "String.fromCharCode": 4, - "parse_eol": 4, - "eol": 2, - "parse_letter": 1, - "parse_lowerCaseLetter": 2, - "parse_upperCaseLetter": 2, - "parse_whitespace": 3, - "parse_comment": 3, - "result0.push": 1, - "parse_singleLineComment": 2, - "parse_multiLineComment": 2, - "u2029": 2, - "x0B": 1, - "uFEFF": 1, - "u1680": 1, - "u180E": 1, - "u2000": 1, - "u200A": 1, - "u202F": 1, - "u205F": 1, - "u3000": 1, - "cleanupExpected": 2, - "expected": 12, - "expected.sort": 1, - "lastExpected": 3, - "cleanExpected": 2, - "expected.length": 4, - "cleanExpected.push": 1, - "computeErrorPosition": 2, - "line": 14, - "column": 8, - "seenCR": 5, - "rightmostFailuresPos": 2, - "parseFunctions": 1, - "startRule": 1, - "errorPosition": 1, - "rightmostFailuresExpected": 1, - "errorPosition.line": 1, - "errorPosition.column": 1, - "toSource": 1, - "this._source": 1, - "result.SyntaxError": 1, - "buildMessage": 2, - "expectedHumanized": 5, - "foundHumanized": 3, - "expected.slice": 1, - "this.expected": 1, - "this.found": 1, - "this.message": 3, - "this.line": 3, - "this.column": 1, - "result.SyntaxError.prototype": 1, - "Error.prototype": 1, - "steelseries": 10, - "n.charAt": 1, - "n.substring": 1, - "i.substring": 3, - "this.color": 1, - "ui": 31, - "/255": 1, - "t.getRed": 4, - "t.getGreen": 4, - "t.getBlue": 4, - "t.getAlpha": 4, - "i.getRed": 1, - "i.getGreen": 1, - "i.getBlue": 1, - "i.getAlpha": 1, - "*f": 2, - "w/r": 1, - "p/r": 1, - "s/r": 1, - "o/r": 1, - "e*u": 1, - ".toFixed": 3, - "l*u": 1, - "c*u": 1, - "h*u": 1, - "vr": 20, - "Math.floor": 26, - "Math.log10": 1, - "n/Math.pow": 1, - "": 1, - "beginPath": 12, - "moveTo": 10, - "lineTo": 22, - "quadraticCurveTo": 4, - "closePath": 8, - "stroke": 7, - "canvas": 22, - "width=": 17, - "height=": 17, - "ii": 29, - "getContext": 26, - "2d": 26, - "ft": 70, - "fillStyle=": 13, - "rect": 3, - "fill": 10, - "getImageData": 1, - "wt": 26, - "32": 1, - "62": 1, - "84": 1, - "94": 1, - "ar": 20, - "255": 3, - "max": 1, - "min": 2, - ".5": 7, - "u/": 3, - "/u": 3, - "f/": 1, - "vt": 50, - "n*6": 2, - "i*": 3, - "h*t": 1, - "*t": 3, - "f*255": 1, - "u*255": 1, - "r*255": 1, - "st": 59, - "n/255": 1, - "t/255": 1, - "i/255": 1, - "f/r": 1, - "/f": 3, - "<0?0:n>": 1, - "si": 23, - "ti": 39, - "Math.round": 7, - "/r": 1, - "u*r": 1, - "ni": 30, - "tt": 53, - "ei": 26, - "ot": 43, - "i.gaugeType": 6, - "steelseries.GaugeType.TYPE4": 2, - "i.size": 6, - "i.minValue": 10, - "i.maxValue": 10, - "i.niceScale": 10, - "i.threshold": 10, - "/2": 25, - "i.section": 8, - "i.area": 4, - "lu": 10, - "i.titleString": 10, - "au": 10, - "i.unitString": 10, - "hu": 11, - "i.frameDesign": 10, - "steelseries.FrameDesign.METAL": 7, - "wu": 9, - "i.frameVisible": 10, - "i.backgroundColor": 10, - "steelseries.BackgroundColor.DARK_GRAY": 7, - "i.backgroundVisible": 10, - "pt": 48, - "i.pointerType": 4, - "steelseries.PointerType.TYPE1": 3, - "i.pointerColor": 4, - "steelseries.ColorDef.RED": 7, - "ee": 2, - "i.knobType": 4, - "steelseries.KnobType.STANDARD_KNOB": 14, - "fi": 26, - "i.knobStyle": 4, - "steelseries.KnobStyle.SILVER": 4, - "i.lcdColor": 8, - "steelseries.LcdColor.STANDARD": 9, - "i.lcdVisible": 8, - "eu": 13, - "i.lcdDecimals": 8, - "ye": 2, - "i.digitalFont": 8, - "pe": 2, - "i.fractionalScaleDecimals": 4, - "i.ledColor": 10, - "steelseries.LedColor.RED_LED": 7, - "ru": 14, - "i.ledVisible": 10, - "vf": 5, - "i.thresholdVisible": 8, - "kr": 17, - "i.minMeasuredValueVisible": 8, - "dr": 16, - "i.maxMeasuredValueVisible": 8, - "i.foregroundType": 6, - "steelseries.ForegroundType.TYPE1": 5, - "af": 5, - "i.foregroundVisible": 10, - "oe": 2, - "i.labelNumberFormat": 10, - "steelseries.LabelNumberFormat.STANDARD": 5, - "yr": 17, - "i.playAlarm": 10, - "uf": 5, - "i.alarmSound": 10, - "fe": 2, - "i.customLayer": 4, - "le": 1, - "i.tickLabelOrientation": 4, - "steelseries.GaugeType.TYPE1": 4, - "steelseries.TickLabelOrientation.TANGENT": 2, - "steelseries.TickLabelOrientation.NORMAL": 2, - "wr": 18, - "i.trendVisible": 4, - "hr": 17, - "i.trendColors": 4, - "steelseries.LedColor.GREEN_LED": 2, - "steelseries.LedColor.CYAN_LED": 2, - "sr": 21, - "i.useOdometer": 2, - "i.odometerParams": 2, - "wf": 4, - "i.odometerUseValue": 2, - "ki": 21, - "r.createElement": 11, - "ki.setAttribute": 2, - "yf": 3, - "ri": 24, - "ht": 34, - "ef": 5, - "steelseries.TrendState.OFF": 4, - "lr": 19, - "f*.06": 1, - "f*.29": 19, - "er": 19, - "f*.36": 4, - "et": 45, - "gi": 26, - "rr": 21, - "*lt": 9, - "r.getElementById": 7, - "u.save": 7, - "u.clearRect": 5, - "u.canvas.width": 7, - "u.canvas.height": 7, - "s/2": 2, - "k/2": 1, - "pf": 4, - ".6*s": 1, - "ne": 2, - ".4*k": 1, - "pr": 16, - "s/10": 1, - "ae": 2, - "hf": 4, - "k*.13": 2, - "s*.4": 1, - "sf": 5, - "rf": 5, - "k*.57": 1, - "tf": 5, - "k*.61": 1, - "Math.PI/2": 40, - "ue": 1, - "Math.PI/180": 5, - "ff": 5, - "ir": 23, - "nr": 22, - "ai": 21, - "yt": 32, - "fr": 21, - "oi": 23, - "lf": 5, - "re": 2, - "ai/": 2, - "h/vt": 1, - "*vt": 4, - "Math.ceil": 63, - "b/vt": 1, - "vt/": 3, - "ot.type": 10, - "Math.PI": 13, - "at/yt": 4, - "*Math.PI": 10, - "*ue": 1, - "ci/2": 1, - "wi": 24, - "nf": 7, - "wi.getContext": 2, - "di": 22, - "ut": 59, - "di.getContext": 2, - "fu": 13, - "hi": 15, - "f*.093457": 10, - "uu": 13, - "hi.getContext": 6, - "gt": 32, - "nu": 11, - "gt.getContext": 3, - "iu": 14, - "f*.028037": 6, - "se": 1, - "iu.getContext": 1, - "gr": 12, - "he": 1, - "gr.getContext": 1, - "vi": 16, - "tu": 13, - "vi.getContext": 2, - "yi": 17, - "ou": 13, - "yi.getContext": 2, - "pi": 24, - "kt": 24, - "pi.getContext": 2, - "pu": 9, - "li.getContext": 6, - "gu": 9, - "du": 10, - "ku": 9, - "yu": 10, - "su": 12, - "tr.getContext": 1, - "kf": 3, - "u.textAlign": 2, - "u.strokeStyle": 2, - "ei.textColor": 2, - "u.fillStyle": 2, - "steelseries.LcdColor.STANDARD_GREEN": 4, - "u.shadowColor": 2, - "u.shadowOffsetX": 2, - "s*.007": 3, - "u.shadowOffsetY": 2, - "u.shadowBlur": 2, - "u.font": 2, - "u.fillText": 2, - "n.toFixed": 2, - "bi*.05": 1, - "hf*.5": 1, - "pr*.38": 1, - "bi*.9": 1, - "u.restore": 6, - "te": 2, - "n.save": 35, - "n.drawImage": 14, - "k*.037383": 11, - "s*.523364": 2, - "k*.130841": 1, - "s*.130841": 1, - "k*.514018": 2, - "s*.831775": 1, - "k*.831775": 1, - "s*.336448": 1, - "k*.803738": 2, - "s*.626168": 1, - "n.restore": 35, - "ie": 2, - "t.width": 2, - "f*.046728": 1, - "t.height": 2, - "t.width*.9": 4, - "t.getContext": 2, - "n.createLinearGradient": 17, - ".1": 18, - "t.height*.9": 6, - "i.addColorStop": 27, - ".3": 8, - ".59": 4, - "n.fillStyle": 36, - "n.beginPath": 39, - "n.moveTo": 37, - "t.width*.5": 4, - "n.lineTo": 33, - "t.width*.1": 2, - "n.closePath": 34, - "n.fill": 17, - "n.strokeStyle": 27, - "n.stroke": 31, - "vu": 10, - "": 1, - "": 1, - "n.lineWidth": 30, - "s*.035": 2, - "at/yt*t": 1, - "at/yt*h": 1, - "yt/at": 1, - "n.translate": 93, - "n.rotate": 53, - "n.arc": 6, - "s*.365": 2, - "n.lineWidth/2": 2, - "df": 3, - "bt.labelColor.setAlpha": 1, - "n.textAlign": 12, - "n.textBaseline": 10, - "s*.04": 1, - "n.font": 34, - "bt.labelColor.getRgbaColor": 2, - "lt*fr": 1, - "s*.38": 2, - "s*.35": 1, - "s*.355": 1, - "s*.36": 1, - "s*.3": 1, - "s*.1": 1, - "oi/2": 2, - "b.toFixed": 1, - "c.toFixed": 2, - "le.type": 1, - "t.format": 7, - "n.fillText": 54, - "e.toFixed": 2, - "e.toPrecision": 1, - "n.frame": 22, - "n.background": 22, - "n.led": 20, - "n.pointer": 10, - "n.foreground": 22, - "n.trend": 4, - "n.odo": 2, - "rt": 45, - "uu.drawImage": 1, - "nu.drawImage": 3, - "se.drawImage": 1, - "steelseries.ColorDef.BLUE.dark.getRgbaColor": 6, - "he.drawImage": 1, - "steelseries.ColorDef.RED.medium.getRgbaColor": 6, - "ii.length": 2, - ".start": 12, - ".stop": 11, - ".color": 13, - "ui.length": 2, - "ut.save": 1, - "ut.translate": 3, - "ut.rotate": 1, - "ut.drawImage": 2, - "s*.475": 1, - "ut.restore": 1, - "steelseries.Odometer": 1, - "_context": 1, - "f*.075": 1, - "decimals": 1, - "wt.decimals": 1, - "wt.digits": 2, - "valueForeColor": 1, - "wt.valueForeColor": 1, - "valueBackColor": 1, - "wt.valueBackColor": 1, - "decimalForeColor": 1, - "wt.decimalForeColor": 1, - "decimalBackColor": 1, - "wt.decimalBackColor": 1, - "font": 1, - "wt.font": 1, - "tr.width": 1, - "nt": 75, - "bt.labelColor": 2, - "pt.type": 6, - "steelseries.TrendState.UP": 2, - "steelseries.TrendState.STEADY": 2, - "steelseries.TrendState.DOWN": 2, - "dt": 30, - "wi.width": 1, - "wi.height": 1, - "di.width": 1, - "di.height": 1, - "hi.width": 3, - "hi.height": 3, - "gt.width": 2, - "gt.height": 1, - "vi.width": 1, - "vi.height": 1, - "yi.width": 1, - "yi.height": 1, - "pi.width": 1, - "pi.height": 1, - "li.width": 3, - "li.height": 3, - "gf": 2, - "yf.repaint": 1, - "ur": 20, - "e3": 5, - "this.setValue": 7, - "": 5, - "ki.pause": 1, - "ki.play": 1, - "this.repaint": 126, - "this.getValue": 7, - "this.setOdoValue": 1, - "this.getOdoValue": 1, - "this.setValueAnimated": 7, - "t.playing": 1, - "t.stop": 1, - "Tween": 11, - "Tween.regularEaseInOut": 6, - "t.onMotionChanged": 1, - "n.target._pos": 7, - "": 1, - "i.repaint": 1, - "t.start": 1, - "this.resetMinMeasuredValue": 4, - "this.resetMaxMeasuredValue": 4, - "this.setMinMeasuredValueVisible": 4, - "this.setMaxMeasuredValueVisible": 4, - "this.setMaxMeasuredValue": 3, - "this.setMinMeasuredValue": 3, - "this.setTitleString": 4, - "this.setUnitString": 4, - "this.setMinValue": 4, - "this.getMinValue": 3, - "this.setMaxValue": 3, - "this.getMaxValue": 4, - "this.setThreshold": 4, - "this.setArea": 1, - "foreground": 30, - "this.setSection": 4, - "this.setThresholdVisible": 4, - "this.setLcdDecimals": 3, - "this.setFrameDesign": 7, - "this.setBackgroundColor": 7, - "pointer": 28, - "this.setForegroundType": 5, - "this.setPointerType": 3, - "this.setPointerColor": 4, - "this.setLedColor": 5, - "led": 18, - "this.setLcdColor": 5, - "this.setTrend": 2, - "this.setTrendVisible": 2, - "trend": 2, - "odo": 1, - "u.drawImage": 22, - "cu.setValue": 1, - "of.state": 1, - "u.translate": 8, - "u.rotate": 4, - "u.canvas.width*.4865": 2, - "u.canvas.height*.105": 2, - "s*.006": 1, - "kt.clearRect": 1, - "kt.save": 1, - "kt.translate": 2, - "kt.rotate": 1, - "kt.drawImage": 1, - "kt.restore": 1, - "i.useSectionColors": 4, - "i.valueColor": 6, - "i.valueGradient": 4, - "i.useValueGradient": 4, - "yi.setAttribute": 2, - "e/2": 2, - "ut/2": 4, - "e/10": 3, - "ut*.13": 1, - "e*.4": 1, - "or/2": 1, - "e*.116822": 3, - "e*.485981": 3, - "s*.093457": 5, - "e*.53": 1, - "ut*.61": 1, - "s*.06": 1, - "s*.57": 1, - "dt.type": 4, - "l/Math.PI*180": 4, - "l/et": 8, - "Math.PI/3": 1, - "ft/2": 2, - "Math.PI/": 1, - "ai.getContext": 2, - "s*.060747": 2, - "s*.023364": 2, - "ri.getContext": 6, - "yt.getContext": 5, - "si.getContext": 4, - "ci/": 2, - "f/ht": 1, - "*ht": 8, - "h/ht": 1, - "ht/": 2, - "*kt": 5, - "angle": 1, - "*st": 1, - "n.value": 4, - "tu.drawImage": 1, - "gr.drawImage": 3, - "at.getImageData": 1, - "at.drawImage": 1, - "bt.length": 4, - "ii.push": 1, - "Math.abs": 19, - "ai.width": 1, - "ai.height": 1, - "ri.width": 3, - "ri.height": 3, - "yt.width": 2, - "yt.height": 2, - "si.width": 2, - "si.height": 2, - "s*.085": 1, - "e*.35514": 2, - ".107476*ut": 1, - ".897195*ut": 1, - "t.addColorStop": 6, - ".22": 1, - ".76": 1, - "s*.075": 1, - ".112149*ut": 1, - ".892523*ut": 1, - "r.addColorStop": 6, - "e*.060747": 2, - "e*.023364": 2, - "n.createRadialGradient": 4, - ".030373*e": 1, - "u.addColorStop": 14, - "i*kt": 1, - "n.rect": 4, - "n.canvas.width": 3, - "n.canvas.height": 3, - "n.canvas.width/2": 6, - "n.canvas.height/2": 4, - "u.createRadialGradient": 1, - "t.light.getRgbaColor": 2, - "t.dark.getRgbaColor": 2, - "ni.textColor": 2, - "e*.007": 5, - "oi*.05": 1, - "or*.5": 1, - "cr*.38": 1, - "oi*.9": 1, - "ei.labelColor.setAlpha": 1, - "e*.04": 1, - "ei.labelColor.getRgbaColor": 2, - "st*di": 1, - "e*.28": 1, - "e*.1": 1, - "e*.0375": 1, - "h.toFixed": 3, - "df.type": 1, - "u.toFixed": 2, - "u.toPrecision": 1, - "kf.repaint": 1, - "": 3, - "yi.pause": 1, - "yi.play": 1, - "ti.playing": 1, - "ti.stop": 1, - "ti.onMotionChanged": 1, - "t.repaint": 4, - "ti.start": 1, - "this.setValueColor": 3, - "this.setSectionActive": 2, - "this.setGradient": 2, - "this.setGradientActive": 2, - "useGradient": 2, - "n/lt*": 1, - "vi.getEnd": 1, - "vi.getStart": 1, - "s/c": 1, - "vi.getColorAt": 1, - ".getRgbaColor": 3, - "": 1, - "e.medium.getHexColor": 1, - "i.medium.getHexColor": 1, - "n*kt": 1, - "pu.state": 1, - "i.orientation": 2, - "steelseries.Orientation.NORTH": 2, - "hi.setAttribute": 2, - "steelseries.GaugeType.TYPE5": 1, - "kt/at": 2, - "f.clearRect": 2, - "f.canvas.width": 3, - "f.canvas.height": 3, - "h/2": 1, - "k*.733644": 1, - ".455*h": 1, - ".51*k": 1, - "bi/": 2, - "l/ot": 1, - "*ot": 2, - "d/ot": 1, - "ot/": 1, - "ui.getContext": 4, - "u*.093457": 10, - "ii.getContext": 5, - "st.getContext": 2, - "u*.028037": 6, - "hr.getContext": 1, - "er.getContext": 1, - "fi.getContext": 4, - "kr.type": 1, - "ft.type": 1, - "h*.44": 3, - "k*.8": 1, - "k*.16": 1, - "h*.2": 2, - "k*.446666": 2, - "h*.8": 1, - "u*.046728": 1, - "h*.035": 1, - "kt/at*t": 1, - "kt/at*l": 1, - "at/kt": 1, - "h*.365": 2, - "it.labelColor.getRgbaColor": 4, - "vertical": 1, - ".046728*h": 1, - "n.measureText": 2, - ".width": 2, - "k*.4": 1, - "h*.3": 1, - "k*.47": 1, - "it.labelColor.setAlpha": 1, - "steelseries.Orientation.WEST": 6, - "h*.04": 1, - "ht*yi": 1, - "h*.41": 1, - "h*.415": 1, - "h*.42": 1, - "h*.48": 1, - "h*.0375": 1, - "d.toFixed": 1, - "f.toFixed": 1, - "i.toFixed": 2, - "i.toPrecision": 1, - "u/2": 5, - "cr.drawImage": 3, - "ar.drawImage": 1, - "or.drawImage": 1, - "or.restore": 1, - "rr.drawImage": 1, - "rr.restore": 1, - "gt.length": 2, - "p.save": 2, - "p.translate": 8, - "p.rotate": 4, - "p.restore": 3, - "ni.length": 2, - "p.drawImage": 1, - "h*.475": 1, - "k*.32": 1, - "h*1.17": 2, - "it.labelColor": 2, - "ut.type": 6, - "ui.width": 2, - "ui.height": 2, - "ii.width": 2, - "ii.height": 2, - "st.width": 1, - "st.height": 1, - "fi.width": 2, - "fi.height": 2, - "wu.repaint": 1, - "": 2, - "hi.pause": 1, - "hi.play": 1, - "dt.playing": 2, - "dt.stop": 2, - "dt.onMotionChanged": 2, - "": 1, - "dt.start": 2, - "f.save": 5, - "f.drawImage": 9, - "f.translate": 10, - "f.rotate": 5, - "f.canvas.width*.4865": 2, - "f.canvas.height*.27": 2, - "f.restore": 5, - "h*.006": 1, - "h*1.17/2": 1, - "et.clearRect": 1, - "et.save": 1, - "et.translate": 2, - "et.rotate": 1, - "et.drawImage": 1, - "et.restore": 1, - "i.width": 6, - "i.height": 6, - "fi.setAttribute": 2, - "l.type": 26, - "y.clearRect": 2, - "y.canvas.width": 3, - "y.canvas.height": 3, - "*.05": 4, - "f/2": 13, - "it/2": 2, - ".053": 1, - ".038": 1, - "*u": 1, - "u/22": 2, - ".89*f": 2, - "u/10": 2, - "ei/": 1, - "e/ut": 1, - "*ut": 2, - "s/ut": 1, - "ut/": 1, - "kt.getContext": 2, - "rt.getContext": 2, - "dt.getContext": 1, - "ni.getContext": 4, - "lt.textColor": 2, - "n.shadowColor": 2, - "n.shadowOffsetX": 4, - "u*.003": 2, - "n.shadowOffsetY": 4, - "n.shadowBlur": 4, - "u*.004": 1, - "u*.007": 2, - "u*.009": 1, - "f*.571428": 8, - "u*.88": 2, - "u*.055": 2, - "f*.7": 2, - "f*.695": 4, - "f*.18": 4, - "u*.22": 3, - "u*.15": 2, - "t.toFixed": 2, - "i.getContext": 2, - "t.save": 2, - "t.createLinearGradient": 2, - "i.height*.9": 6, - "t.fillStyle": 2, - "t.beginPath": 4, - "t.moveTo": 4, - "i.height*.5": 2, - "t.lineTo": 8, - "i.width*.9": 6, - "t.closePath": 4, - "i.width*.5": 2, - "t.fill": 2, - "t.strokeStyle": 2, - "t.stroke": 2, - "t.restore": 2, - "w.labelColor.setAlpha": 1, - "f*.1": 5, - "w.labelColor.getRgbaColor": 2, - ".34*f": 2, - ".36*f": 6, - ".33*f": 2, - ".32*f": 2, - "u*.12864": 3, - "u*.856796": 1, - "u*.7475": 1, - "c/": 2, - ".65*u": 1, - ".63*u": 3, - ".66*u": 1, - ".67*u": 1, - "f*.142857": 4, - "f*.871012": 2, - "f*.19857": 1, - "f*.82": 1, - "v/": 1, - "tickCounter": 4, - "currentPos": 20, - "tickCounter*a": 2, - "r.toFixed": 8, - "f*.28": 6, - "r.toPrecision": 4, - "u*.73": 3, - "ui/2": 1, - "vi.drawImage": 2, - "yi.drawImage": 2, - "hr.drawImage": 2, - "k.save": 1, - ".856796": 2, - ".7475": 2, - ".12864": 2, - "u*i": 1, - "u*r*": 1, - "bt/": 1, - "k.translate": 2, - "f*.365": 2, - "nt/2": 2, - ".871012": 3, - ".82": 2, - ".142857": 5, - ".19857": 6, - "f*r*bt/": 1, - "f*": 5, - "u*.58": 1, - "k.drawImage": 3, - "k.restore": 1, - "kt.width": 1, - "b*.093457": 2, - "kt.height": 1, - "d*.093457": 2, - "rt.width": 1, - "rt.height": 1, - "ni.width": 2, - "ni.height": 2, - "hu.repaint": 1, - "w.labelColor": 1, - "i*.12864": 2, - "i*.856796": 2, - "i*.7475": 1, - "t*.871012": 1, - "t*.142857": 8, - "t*.82": 1, - "t*.19857": 1, - "steelseries.BackgroundColor.CARBON": 2, - "steelseries.BackgroundColor.PUNCHED_SHEET": 2, - "steelseries.BackgroundColor.STAINLESS": 2, - "steelseries.BackgroundColor.BRUSHED_STAINLESS": 2, - "steelseries.BackgroundColor.TURNED": 2, - "r.setAlpha": 8, - ".05": 2, - "p.addColorStop": 4, - "r.getRgbaColor": 8, - ".15": 2, - ".48": 7, - ".49": 4, - "n.fillRect": 16, - "t*.435714": 4, - "i*.435714": 4, - "i*.142857": 1, - "b.addColorStop": 4, - ".69": 1, - ".7": 1, - ".4": 2, - "t*.007142": 4, - "t*.571428": 2, - "i*.007142": 4, - "i*.571428": 2, - "t*.45": 4, - "t*.114285": 1, - "t/2": 1, - "i*.0486/2": 1, - "i*.053": 1, - "i*.45": 4, - "i*.114285": 1, - "i/2": 1, - "t*.025": 1, - "t*.053": 1, - "ut.addColorStop": 2, - "wt.medium.getRgbaColor": 3, - "wt.light.getRgbaColor": 2, - "i*.05": 2, - "t*.05": 2, - "ot.addColorStop": 2, - ".98": 1, - "Math.PI*.5": 2, - "f*.05": 2, - ".049*t": 8, - ".825*t": 9, - "n.bezierCurveTo": 42, - ".7975*t": 2, - ".0264*t": 4, - ".775*t": 3, - ".0013*t": 12, - ".85*t": 2, - ".8725*t": 3, - ".0365*t": 9, - ".8075*t": 4, - ".7925*t": 3, - ".0214*t": 13, - ".7875*t": 4, - ".7825*t": 5, - ".0189*t": 4, - ".785*t": 1, - ".8175*t": 2, - ".815*t": 1, - ".8125*t": 2, - ".8*t": 2, - ".0377*t": 2, - ".86*t": 4, - ".0415*t": 2, - ".845*t": 1, - ".0465*t": 2, - ".805*t": 2, - ".0113*t": 10, - ".0163*t": 7, - ".8025*t": 1, - ".8225*t": 3, - ".8425*t": 1, - ".03*t": 2, - ".115*t": 5, - ".1075*t": 2, - ".1025*t": 8, - ".0038*t": 2, - ".76*t": 4, - ".7675*t": 2, - ".7725*t": 6, - ".34": 1, - ".0516*t": 7, - ".8525*t": 2, - ".0289*t": 8, - ".875*t": 3, - ".044*t": 1, - ".0314*t": 5, - ".12*t": 4, - ".0875*t": 3, - ".79*t": 1, - "": 5, - "fi.pause": 1, - "fi.play": 1, - "yt.playing": 1, - "yt.stop": 1, - "yt.onMotionChanged": 1, - "t.setValue": 1, - "yt.start": 1, - "mminMeasuredValue": 1, - "": 1, - "setMaxValue=": 1, - "y.drawImage": 6, - "u*n": 2, - "u*i*": 2, - "at/": 1, - "f*.34": 3, - "gt.height/2": 2, - "f*i*at/": 1, - "u*.65": 2, - "ft/": 1, - "dt.width": 1, - "dt.height/2": 2, - ".8": 1, - ".14857": 1, - "f*i*ft/": 1, - "y.save": 1, - "y.restore": 1, - "oi.setAttribute": 2, - "v.clearRect": 2, - "v.canvas.width": 4, - "v.canvas.height": 4, - ".053*e": 1, - "e/22": 2, - "e/1.95": 1, - "u/vt": 1, - "s/vt": 1, - "g.width": 4, - "f*.121428": 2, - "g.height": 4, - "e*.012135": 2, - "f*.012135": 2, - "e*.121428": 2, - "g.getContext": 2, - "d.width": 4, - "d.height": 4, - "d.getContext": 2, - "pt.getContext": 2, - "ci.getContext": 1, - "kt.textColor": 2, - "f*.007": 2, - "f*.009": 1, - "e*.009": 1, - "e*.88": 2, - "e*.055": 2, - "e*.22": 3, - "e*.15": 2, - "k.labelColor.setAlpha": 1, - "k.labelColor.getRgbaColor": 5, - "e*.12864": 3, - "e*.856796": 3, - ".65*e": 1, - ".63*e": 3, - ".66*e": 1, - ".67*e": 1, - "g/": 1, - "tickCounter*h": 2, - "e*.73": 3, - "ti/2": 1, - "n.bargraphled": 4, - "nr.drawImage": 2, - "tr.drawImage": 2, - "nt.save": 1, - "e*.728155*": 1, - "st/": 1, - "nt.translate": 2, - "rt/2": 2, - "f*.856796": 2, - "f*.12864": 2, - "*st/": 1, - "e*.58": 1, - "nt.drawImage": 3, - "nt.restore": 1, - "f*.012135/2": 1, - "ft.push": 1, - "*c": 2, - "y*.121428": 2, - "w*.012135": 2, - "y*.012135": 2, - "w*.121428": 2, - "y*.093457": 2, - "w*.093457": 2, - "pt.width": 1, - "pt.height": 1, - "ku.repaint": 1, - "k.labelColor": 1, - "r*": 2, - "r*1.014": 5, - "t*.856796": 1, - "t*.12864": 1, - "t*.13": 3, - "r*1.035": 4, - "f.setAlpha": 8, - ".047058": 2, - "rt.addColorStop": 4, - "f.getRgbaColor": 8, - ".145098": 1, - ".149019": 1, - "t*.15": 1, - "i*.152857": 1, - ".298039": 1, - "it.addColorStop": 4, - ".686274": 1, - ".698039": 1, - "i*.851941": 1, - "t*.121428": 1, - "i*.012135": 1, - "t*.012135": 1, - "i*.121428": 1, - "*r": 4, - "o/r*": 1, - "yt.getEnd": 2, - "yt.getStart": 2, - "lt/ct": 2, - "yt.getColorAt": 2, - "": 1, - "st.medium.getHexColor": 2, - "a.medium.getHexColor": 2, - "b/2": 2, - "e/r*": 1, - "": 1, - "v.createRadialGradient": 2, - "": 5, - "oi.pause": 1, - "oi.play": 1, - "": 1, - "bargraphled": 3, - "v.drawImage": 2, - "": 1, - "856796": 4, - "728155": 2, - "34": 2, - "12864": 2, - "142857": 2, - "65": 2, - "drawImage": 12, - "save": 27, - "restore": 14, - "repaint": 23, - "dr=": 1, - "128": 2, - "48": 1, - "w=": 4, - "lcdColor": 4, - "LcdColor": 4, - "STANDARD": 3, - "pt=": 5, - "lcdDecimals": 4, - "lt=": 4, - "unitString": 4, - "at=": 3, - "unitStringVisible": 4, - "ht=": 6, - "digitalFont": 4, - "bt=": 3, - "valuesNumeric": 4, - "ct=": 5, - "autoScroll": 2, - "section": 2, - "wt=": 3, - "getElementById": 4, - "clearRect": 8, - "v=": 5, - "floor": 13, - "ot=": 4, - "sans": 12, - "serif": 13, - "it=": 7, - "nt=": 5, - "et=": 6, - "kt=": 4, - "textAlign=": 7, - "strokeStyle=": 8, - "clip": 1, - "font=": 28, - "measureText": 4, - "toFixed": 3, - "fillText": 23, - "38": 5, - "o*.2": 1, - "<=o-4&&(e=0,c=!1),u.fillText(n,o-2-e,h*.5+v*.38)),u.restore()},dt=function(n,i,r,u){var>": 1, - "rt=": 3, - "095": 1, - "createLinearGradient": 6, - "addColorStop": 25, - "4c4c4c": 1, - "08": 1, - "666666": 2, - "92": 1, - "e6e6e6": 1, - "gradientStartColor": 1, - "tt=": 3, - "gradientFraction1Color": 1, - "gradientFraction2Color": 1, - "gradientFraction3Color": 1, - "gradientStopColor": 1, - "yt=": 4, - "31": 26, - "ut=": 6, - "rgb": 6, - "03": 1, - "49": 1, - "57": 1, - "83": 1, - "wt.repaint": 1, - "resetBuffers": 1, - "this.setScrolling": 1, - "w.textColor": 1, - "": 1, - "<=f[n].stop){t=et[n],i=ut[n];break}u.drawImage(t,0,0),kt(a,i)},this.repaint(),this},wr=function(n,t){t=t||{};var>": 1, - "64": 1, - "875": 2, - "textBaseline=": 4, - "textColor": 2, - "STANDARD_GREEN": 1, - "shadowColor=": 1, - "shadowOffsetX=": 1, - "05": 2, - "shadowOffsetY=": 1, - "shadowBlur=": 1, - "06": 1, - "46": 1, - "8": 2, - "setValue=": 2, - "setLcdColor=": 2, - "repaint=": 2, - "br=": 1, - "200": 2, - "st=": 3, - "decimalsVisible": 2, - "gt=": 1, - "textOrientationFixed": 2, - "frameDesign": 4, - "FrameDesign": 2, - "METAL": 2, - "frameVisible": 4, - "backgroundColor": 2, - "BackgroundColor": 1, - "DARK_GRAY": 1, - "vt=": 2, - "backgroundVisible": 2, - "pointerColor": 4, - "ColorDef": 2, - "RED": 1, - "foregroundType": 4, - "ForegroundType": 2, - "TYPE1": 2, - "foregroundVisible": 4, - "180": 26, - "ni=": 1, - "labelColor": 6, - "getRgbaColor": 21, - "translate": 38, - "360": 15, - "p.labelColor.getRgbaColor": 4, - "f*.38": 7, - "f*.37": 3, - "": 1, - "rotate": 31, - "u00b0": 8, - "41": 3, - "45": 5, - "25": 9, - "085": 4, - "100": 4, - "90": 3, - "21": 2, - "u221e": 2, - "135": 1, - "225": 1, - "75": 3, - "270": 1, - "315": 1, - "ti=": 2, - "200934": 2, - "434579": 4, - "163551": 5, - "560747": 4, - "lineWidth=": 6, - "lineCap=": 5, - "lineJoin=": 5, - "471962": 4, - "205607": 1, - "523364": 5, - "799065": 2, - "836448": 5, - "794392": 1, - "ii=": 2, - "350467": 5, - "130841": 1, - "476635": 2, - "bezierCurveTo": 6, - "490654": 3, - "345794": 3, - "509345": 1, - "154205": 1, - "350466": 1, - "dark": 2, - "light": 5, - "setAlpha": 8, - "70588": 4, - "59": 3, - "dt=": 2, - "285046": 5, - "514018": 6, - "21028": 1, - "481308": 4, - "280373": 3, - "495327": 2, - "504672": 2, - "224299": 1, - "289719": 1, - "714953": 5, - "789719": 1, - "719626": 3, - "7757": 1, - "71028": 1, - "ft=": 3, - "*10": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "<-90&&e>": 2, - "<-180&&e>": 2, - "<-270&&e>": 2, - "d.playing": 2, - "d.stop": 2, - "d.onMotionChanged": 2, - "d.start": 2, - "s.save": 4, - "s.clearRect": 3, - "s.canvas.width": 4, - "s.canvas.height": 4, - "s.drawImage": 8, - "e*kt": 1, - "s.translate": 6, - "s.rotate": 3, - "s.fillStyle": 1, - "s.textAlign": 1, - "s.textBaseline": 1, - "s.restore": 6, - "s.font": 2, - "f*.15": 2, - "s.fillText": 2, - "f*.35": 26, - "f*.2": 1, - "k*Math.PI/180": 1, - "u.size": 4, - "u.frameDesign": 4, - "u.frameVisible": 4, - "u.backgroundColor": 4, - "u.backgroundVisible": 4, - "u.pointerType": 2, - "steelseries.PointerType.TYPE2": 1, - "u.pointerColor": 4, - "u.knobType": 4, - "u.knobStyle": 4, - "u.foregroundType": 4, - "u.foregroundVisible": 4, - "u.pointSymbols": 4, - "u.customLayer": 4, - "u.degreeScale": 4, - "u.roseVisible": 4, - "ft.getContext": 2, - "ut.getContext": 2, - "it.getContext": 2, - "ot.getContext": 3, - "et.getContext": 2, - "tt.labelColor.getRgbaColor": 2, - ".08*f": 1, - "f*.033": 1, - "st*10": 2, - ".substring": 2, - ".12*f": 2, - ".06*f": 2, - "tt.symbolColor.getRgbaColor": 1, - "st*2.5": 1, - "bt.type": 1, - "f*.53271": 6, - "e*.453271": 5, - "f*.5": 17, - "e*.149532": 8, - "f*.467289": 6, - "f*.453271": 2, - "e*.462616": 2, - "f*.443925": 9, - "e*.481308": 2, - "e*.5": 10, - "f*.556074": 9, - "f*.546728": 2, - ".471962*f": 5, - ".528036*f": 5, - "o.addColorStop": 4, - "h.light.getRgbaColor": 6, - ".46": 3, - ".47": 3, - "h.medium.getRgbaColor": 6, - "h.dark.getRgbaColor": 3, - "n.lineCap": 5, - "n.lineJoin": 5, - "e*.546728": 5, - "e*.850467": 4, - "e*.537383": 2, - "e*.518691": 2, - "s.addColorStop": 4, - "e*.490654": 2, - "e*.53271": 2, - "e*.556074": 3, - "e*.495327": 4, - "f*.528037": 2, - "f*.471962": 2, - "e*.504672": 4, - ".480099": 1, - "f*.006": 2, - "ft.width": 1, - "ft.height": 1, - "ut.width": 1, - "ut.height": 1, - "it.width": 1, - "it.height": 1, - "ot.width": 1, - "ot.height": 1, - "et.width": 1, - "et.height": 1, - "Tween.elasticEaseOut": 1, - "r.repaint": 1, - "this.setPointSymbols": 1, - "p*st": 1, - "b.clearRect": 1, - "b.save": 1, - "b.translate": 2, - "b.rotate": 1, - "b.drawImage": 1, - "b.restore": 1, - "u.pointerTypeLatest": 2, - "u.pointerTypeAverage": 2, - "steelseries.PointerType.TYPE8": 1, - "u.pointerColorAverage": 2, - "steelseries.ColorDef.BLUE": 1, - "u.lcdColor": 2, - "u.lcdVisible": 2, - "u.digitalFont": 2, - "u.section": 2, - "u.area": 2, - "u.lcdTitleStrings": 2, - "u.titleString": 2, - "u.useColorLabels": 2, - "this.valueLatest": 1, - "this.valueAverage": 1, - "Math.PI*2": 1, - "e.save": 2, - "e.clearRect": 1, - "e.canvas.width": 2, - "e.canvas.height": 2, - "f/10": 1, - "f*.3": 4, - "s*.12": 1, - "s*.32": 1, - "s*.565": 1, - "bt.getContext": 1, - "at.getContext": 1, - "vt.getContext": 1, - "lt.getContext": 1, - "wt.getContext": 1, - "e.textAlign": 1, - "e.strokeStyle": 1, - "ht.textColor": 2, - "e.fillStyle": 1, - "<0&&(n+=360),n=\"00\"+Math.round(n),n=n.substring(n.length,n.length-3),(ht===steelseries.LcdColor.STANDARD||ht===steelseries.LcdColor.STANDARD_GREEN)&&(e.shadowColor=\"gray\",e.shadowOffsetX=f*.007,e.shadowOffsetY=f*.007,e.shadowBlur=f*.007),e.font=pr?gr:br,e.fillText(n+\"\\u00b0\",f/2+gt*.05,(t?or:cr)+er*.5+ui*.38,gt*.9),e.restore()},wi=function(n,t,i,r,u){n.save(),n.strokeStyle=r,n.fillStyle=r,n.lineWidth=f*.035;var>": 1, - "arc": 2, - "365": 2, - "lineWidth": 1, - "lr=": 1, - "35": 1, - "355": 1, - "36": 2, - "bold": 1, - "04": 2, - "ct*5": 1, - "k.symbolColor.getRgbaColor": 1, - "ct*2.5": 1, - "ti.length": 1, - "kt.medium.getRgbaColor": 1, - ".04*f": 1, - "s*.29": 1, - "ii.medium.getRgbaColor": 1, - "s*.71": 1, - "rr.length": 1, - ".0467*f": 1, - "s*.5": 1, - "et.length": 2, - "ft.length": 2, - "": 1, - "ci=": 1, - "li=": 1, - "ai=": 1, - "ki=": 1, - "yi=": 1, - "setValueLatest=": 1, - "getValueLatest=": 1, - "setValueAverage=": 1, - "getValueAverage=": 1, - "setValueAnimatedLatest=": 1, - "playing": 2, - "regularEaseInOut": 2, - "onMotionChanged=": 2, - "_pos": 2, - "onMotionFinished=": 2, - "setValueAnimatedAverage=": 1, - "setArea=": 1, - "setSection=": 1, - "setFrameDesign=": 1, - "pi=": 1, - "setBackgroundColor=": 1, - "setForegroundType=": 1, - "si=": 1, - "setPointerColor=": 1, - "setPointerColorAverage=": 1, - "setPointerType=": 1, - "setPointerTypeAverage=": 1, - "ri=": 1, - "setPointSymbols=": 1, - "setLcdTitleStrings=": 1, - "fi=": 1, - "006": 1, - "ei=": 1, - "ru=": 1, - "WHITE": 1, - "037383": 1, - "056074": 1, - "7fd5f0": 2, - "3c4439": 2, - "72": 1, - "KEYWORDS": 2, - "array_to_hash": 11, - "RESERVED_WORDS": 2, - "KEYWORDS_BEFORE_EXPRESSION": 2, - "KEYWORDS_ATOM": 2, - "OPERATOR_CHARS": 1, - "RE_HEX_NUMBER": 1, - "RE_OCT_NUMBER": 1, - "RE_DEC_NUMBER": 1, - "OPERATORS": 2, - "WHITESPACE_CHARS": 2, - "PUNC_BEFORE_EXPRESSION": 2, - "PUNC_CHARS": 1, - "REGEXP_MODIFIERS": 1, - "UNICODE": 1, - "non_spacing_mark": 1, - "space_combining_mark": 1, - "connector_punctuation": 1, - "is_letter": 3, - "UNICODE.letter.test": 1, - "is_digit": 3, - "ch.charCodeAt": 1, - "//XXX": 1, - "out": 1, - "means": 1, - "is_alphanumeric_char": 3, - "is_unicode_combining_mark": 2, - "UNICODE.non_spacing_mark.test": 1, - "UNICODE.space_combining_mark.test": 1, - "is_unicode_connector_punctuation": 2, - "UNICODE.connector_punctuation.test": 1, - "is_identifier_start": 2, - "is_identifier_char": 1, - "zero": 2, - "joiner": 2, - "": 1, - "": 1, - "my": 1, - "ECMA": 1, - "PDF": 1, - "parse_js_number": 2, - "RE_HEX_NUMBER.test": 1, - "num.substr": 2, - "RE_OCT_NUMBER.test": 1, - "RE_DEC_NUMBER.test": 1, - "JS_Parse_Error": 2, - "message": 5, - "this.col": 2, - "ex": 3, - "ex.name": 1, - "this.stack": 2, - "ex.stack": 1, - "JS_Parse_Error.prototype.toString": 1, - "js_error": 2, - "is_token": 1, - "token": 5, - "token.type": 1, - "token.value": 1, - "EX_EOF": 3, - "tokenizer": 2, - "TEXT": 1, - "TEXT.replace": 1, - "uFEFF/": 1, - "tokpos": 1, - "tokline": 1, - "tokcol": 1, - "newline_before": 1, - "regex_allowed": 1, - "comments_before": 1, - "peek": 5, - "S.text.charAt": 2, - "S.pos": 4, - "signal_eof": 4, - "S.newline_before": 3, - "S.line": 2, - "S.col": 3, - "eof": 6, - "S.peek": 1, - "what": 2, - "S.text.indexOf": 1, - "start_token": 1, - "S.tokline": 3, - "S.tokcol": 3, - "S.tokpos": 3, - "is_comment": 2, - "S.regex_allowed": 1, - "HOP": 5, - "UNARY_POSTFIX": 1, - "nlb": 1, - "ret.comments_before": 1, - "S.comments_before": 2, - "skip_whitespace": 1, - "read_while": 2, - "pred": 2, - "parse_error": 3, - "read_num": 1, - "prefix": 6, - "has_e": 3, - "after_e": 5, - "has_x": 5, - "has_dot": 3, - "valid": 4, - "read_escaped_char": 1, - "hex_bytes": 3, - "digit": 3, - "read_string": 1, - "with_eof_error": 1, - "comment1": 1, - "Unterminated": 2, - "multiline": 1, - "comment2": 1, - "WARNING": 1, - "***": 1, - "Found": 1, - "warn": 3, - "tok": 1, - "read_name": 1, - "backslash": 2, - "Expecting": 1, - "UnicodeEscapeSequence": 1, - "uXXXX": 1, - "Unicode": 1, - "identifier": 1, - "regular": 1, - "regexp": 5, - "operator": 14, - "punc": 27, - "atom": 5, - "keyword": 11, - "Unexpected": 3, - "void": 1, - "<\",>": 1, - "<=\",>": 1, - "debugger": 2, - "const": 2, - "stat": 1, - "Label": 1, - "without": 1, - "statement": 1, - "defun": 1, - "Name": 1, - "Missing": 1, - "catch/finally": 1, - "blocks": 1, - "unary": 2, - "dot": 2, - "postfix": 1, - "Invalid": 2, - "binary": 1, - "conditional": 1, - "assign": 1, - "assignment": 1, - "seq": 1, - "member": 2, - "array.length": 1, - "Object.prototype.hasOwnProperty.call": 1, - "exports.tokenizer": 1, - "exports.parse": 1, - "parse": 1, - "exports.slice": 1, - "exports.curry": 1, - "curry": 1, - "exports.member": 1, - "exports.array_to_hash": 1, - "exports.PRECEDENCE": 1, - "PRECEDENCE": 1, - "exports.KEYWORDS_ATOM": 1, - "exports.RESERVED_WORDS": 1, - "exports.KEYWORDS": 1, - "exports.ATOMIC_START_TOKEN": 1, - "ATOMIC_START_TOKEN": 1, - "exports.OPERATORS": 1, - "exports.is_alphanumeric_char": 1, - "exports.set_logger": 1, - "logger": 2 - }, - "JSON": { - "{": 73, - "[": 17, - "]": 17, - "}": 73, - "true": 3 - }, - "JSON5": { - "{": 6, - "foo": 1, - "while": 1, - "true": 1, - "this": 1, - "here": 1, - "//": 2, - "inline": 1, - "comment": 1, - "hex": 1, - "xDEADbeef": 1, - "half": 1, - ".5": 1, - "delta": 1, - "+": 1, - "to": 1, - "Infinity": 1, - "and": 1, - "beyond": 1, - "finally": 1, - "oh": 1, - "[": 3, - "]": 3, - "}": 6, - "name": 1, - "version": 1, - "description": 1, - "keywords": 1, - "author": 1, - "contributors": 1, - "main": 1, - "bin": 1, - "dependencies": 1, - "devDependencies": 1, - "mocha": 1, - "scripts": 1, - "build": 1, - "test": 1, - "homepage": 1, - "repository": 1, - "type": 1, - "url": 1 - }, - "JSONiq": { - "(": 14, - "Query": 2, - "for": 4, - "returning": 1, - "one": 1, - "database": 2, - "entry": 1, - ")": 14, - "import": 5, - "module": 5, - "namespace": 5, - "req": 6, - ";": 9, - "catalog": 4, - "variable": 4, - "id": 3, - "param": 4, - "-": 11, - "values": 4, - "[": 5, - "]": 5, - "part": 2, - "get": 2, - "data": 4, - "by": 2, - "key": 1, - "searching": 1, - "the": 1, - "keywords": 1, - "index": 3, - "phrase": 2, - "limit": 2, - "integer": 1, - "result": 1, - "at": 1, - "idx": 2, - "in": 1, - "search": 1, - "where": 1, - "le": 1, - "let": 1, - "result.s": 1, - "result.p": 1, - "return": 1, - "{": 2, - "|": 2, - "score": 1, - "result.r": 1, - "}": 2 - }, - "JSONLD": { - "{": 7, - "}": 7, - "[": 1, - "null": 2, - "]": 1 - }, - "Julia": { - "##": 5, - "Test": 1, - "case": 1, - "from": 1, - "Issue": 1, - "#445": 1, - "#STOCKCORR": 1, - "-": 11, - "The": 1, - "original": 1, - "unoptimised": 1, - "code": 1, - "that": 1, - "simulates": 1, - "two": 2, - "correlated": 1, - "assets": 1, - "function": 1, - "stockcorr": 1, - "(": 13, - ")": 13, - "Correlated": 1, - "asset": 1, - "information": 1, - "CurrentPrice": 3, - "[": 20, - "]": 20, - "#": 11, - "Initial": 1, - "Prices": 1, - "of": 6, - "the": 2, - "stocks": 1, - "Corr": 2, - ";": 1, - "Correlation": 1, - "Matrix": 2, - "T": 5, - "Number": 2, - "days": 3, - "to": 1, - "simulate": 1, - "years": 1, - "n": 4, - "simulations": 1, - "dt": 3, - "/250": 1, - "Time": 1, - "step": 1, - "year": 1, - "Div": 3, - "Dividend": 1, - "Vol": 5, - "Volatility": 1, - "Market": 1, - "Information": 1, - "r": 3, - "Risk": 1, - "free": 1, - "rate": 1, - "Define": 1, - "storages": 1, - "SimulPriceA": 5, - "zeros": 2, - "Simulated": 2, - "Price": 2, - "Asset": 2, - "A": 1, - "SimulPriceB": 5, - "B": 1, - "Generating": 1, - "paths": 1, - "stock": 1, - "prices": 1, - "by": 2, - "Geometric": 1, - "Brownian": 1, - "Motion": 1, - "UpperTriangle": 2, - "chol": 1, - "Cholesky": 1, - "decomposition": 1, - "for": 2, - "i": 5, - "Wiener": 1, - "randn": 1, - "CorrWiener": 1, - "Wiener*UpperTriangle": 1, - "j": 7, - "*exp": 2, - "/2": 2, - "*dt": 2, - "+": 2, - "*sqrt": 2, - "*CorrWiener": 2, - "end": 3, - "return": 1 - }, - "Kit": { - "
": 1, - "

": 1, - "

": 1, - "

": 1, - "

": 1, - "
": 1 - }, - "Kotlin": { - "package": 1, - "addressbook": 1, - "class": 5, - "Contact": 1, - "(": 15, - "val": 16, - "name": 2, - "String": 7, - "emails": 1, - "List": 3, - "": 1, - "addresses": 1, - "": 1, - "phonenums": 1, - "": 1, - ")": 15, - "EmailAddress": 1, - "user": 1, - "host": 1, - "PostalAddress": 1, - "streetAddress": 1, - "city": 1, - "zip": 1, - "state": 2, - "USState": 1, - "country": 3, - "Country": 7, - "{": 6, - "assert": 1, - "null": 3, - "xor": 1, - "Countries": 2, - "[": 3, - "]": 3, - "}": 6, - "PhoneNumber": 1, - "areaCode": 1, - "Int": 1, - "number": 1, - "Long": 1, - "object": 1, - "fun": 1, - "get": 2, - "id": 2, - "CountryID": 1, - "countryTable": 2, - "private": 2, - "var": 1, - "table": 5, - "Map": 2, - "": 2, - "if": 1, - "HashMap": 1, - "for": 1, - "line": 3, - "in": 1, - "TextFile": 1, - ".lines": 1, - "stripWhiteSpace": 1, - "true": 1, - "return": 1 - }, - "KRL": { - "ruleset": 1, - "sample": 1, - "{": 3, - "meta": 1, - "name": 1, - "description": 1, - "<<": 1, - "Hello": 1, - "world": 1, - "author": 1, - "}": 3, - "rule": 1, - "hello": 1, - "select": 1, - "when": 1, - "web": 1, - "pageview": 1, - "notify": 1, - "(": 1, - ")": 1, - ";": 1 - }, - "Lasso": { - "<": 7, - "LassoScript": 1, - "//": 169, - "JSON": 2, - "Encoding": 1, - "and": 52, - "Decoding": 1, - "Copyright": 1, - "-": 2248, - "LassoSoft": 1, - "Inc.": 1, - "": 1, - "": 1, - "": 1, - "This": 5, - "tag": 11, - "is": 35, - "now": 23, - "incorporated": 1, - "in": 46, - "Lasso": 15, - "If": 4, - "(": 640, - "Lasso_TagExists": 1, - ")": 639, - "False": 1, - ";": 573, - "Define_Tag": 1, - "Namespace": 1, - "Required": 1, - "Optional": 1, - "Local": 7, - "Map": 3, - "r": 8, - "n": 30, - "t": 8, - "f": 2, - "b": 2, - "output": 30, - "newoptions": 1, - "options": 2, - "array": 20, - "set": 10, - "list": 4, - "queue": 2, - "priorityqueue": 2, - "stack": 2, - "pair": 1, - "map": 23, - "[": 22, - "]": 23, - "literal": 3, - "string": 59, - "integer": 30, - "decimal": 5, - "boolean": 4, - "null": 26, - "date": 23, - "temp": 12, - "object": 7, - "{": 18, - "}": 18, - "client_ip": 1, - "client_address": 1, - "__jsonclass__": 6, - "deserialize": 2, - "": 3, - "": 3, - "Decode_JSON": 2, - "Decode_": 1, - "value": 14, - "consume_string": 1, - "ibytes": 9, - "unescapes": 1, - "u": 1, - "UTF": 4, - "%": 14, - "QT": 4, - "TZ": 2, - "T": 3, - "consume_token": 1, - "obytes": 3, - "delimit": 7, - "true": 12, - "false": 8, - ".": 5, - "consume_array": 1, - "consume_object": 1, - "key": 3, - "val": 1, - "native": 2, - "comment": 2, - "http": 6, - "//www.lassosoft.com/json": 1, - "start": 5, - "Literal": 2, - "String": 1, - "Object": 2, - "JSON_RPCCall": 1, - "RPCCall": 1, - "JSON_": 1, - "method": 7, - "params": 11, - "id": 7, - "host": 6, - "//localhost/lassoapps.8/rpc/rpc.lasso": 1, - "request": 2, - "result": 6, - "JSON_Records": 3, - "KeyField": 1, - "ReturnField": 1, - "ExcludeField": 1, - "Fields": 1, - "_fields": 1, - "fields": 2, - "No": 1, - "found": 5, - "for": 65, - "_keyfield": 4, - "keyfield": 4, - "ID": 1, - "_index": 1, - "_return": 1, - "returnfield": 1, - "_exclude": 1, - "excludefield": 1, - "_records": 1, - "_record": 1, - "_temp": 1, - "_field": 1, - "_output": 1, - "error_msg": 15, - "error_code": 11, - "found_count": 11, - "rows": 1, - "#_records": 1, - "Return": 7, - "@#_output": 1, - "/Define_Tag": 1, - "/If": 3, - "define": 20, - "trait_json_serialize": 2, - "trait": 1, - "require": 1, - "asString": 3, - "json_serialize": 18, - "e": 13, - "bytes": 8, - "+": 146, - "#e": 13, - "Replace": 19, - "&": 21, - "json_literal": 1, - "asstring": 4, - "format": 7, - "gmt": 1, - "|": 13, - "trait_forEach": 1, - "local": 116, - "foreach": 1, - "#output": 50, - "#delimit": 7, - "#1": 3, - "return": 75, - "with": 25, - "pr": 1, - "eachPair": 1, - "select": 1, - "#pr": 2, - "first": 12, - "second": 8, - "join": 5, - "json_object": 2, - "foreachpair": 1, - "any": 14, - "serialize": 1, - "json_consume_string": 3, - "while": 9, - "#temp": 19, - "#ibytes": 17, - "export8bits": 6, - "#obytes": 5, - "import8bits": 4, - "Escape": 1, - "/while": 7, - "unescape": 1, - "//Replace": 1, - "if": 76, - "BeginsWith": 1, - "&&": 30, - "EndsWith": 1, - "Protect": 1, - "serialization_reader": 1, - "xml": 1, - "read": 1, - "/Protect": 1, - "else": 32, - "size": 24, - "or": 6, - "regexp": 1, - "d": 2, - "Z": 1, - "matches": 1, - "Format": 1, - "yyyyMMdd": 2, - "HHmmssZ": 1, - "HHmmss": 1, - "/if": 53, - "json_consume_token": 2, - "marker": 4, - "Is": 1, - "also": 5, - "end": 2, - "of": 24, - "token": 1, - "//............................................................................": 2, - "string_IsNumeric": 1, - "json_consume_array": 3, - "While": 1, - "Discard": 1, - "whitespace": 3, - "Else": 7, - "insert": 18, - "#key": 12, - "json_consume_object": 2, - "Loop_Abort": 1, - "/While": 1, - "Find": 3, - "isa": 25, - "First": 4, - "find": 57, - "Second": 1, - "json_deserialize": 1, - "removeLeading": 1, - "bom_utf8": 1, - "Reset": 1, - "on": 1, - "provided": 1, - "**/": 1, - "type": 63, - "parent": 5, - "public": 1, - "onCreate": 1, - "...": 3, - "..onCreate": 1, - "#rest": 1, - "json_rpccall": 1, - "#id": 2, - "#host": 4, - "Lasso_UniqueID": 1, - "Include_URL": 1, - "PostParams": 1, - "Encode_JSON": 1, - "#method": 1, - "#params": 5, - "": 6, - "2009": 14, - "09": 10, - "04": 8, - "JS": 126, - "Added": 40, - "content_body": 14, - "compatibility": 4, - "pre": 4, - "8": 6, - "5": 4, - "05": 4, - "07": 6, - "timestamp": 4, - "to": 98, - "knop_cachestore": 4, - "maxage": 2, - "parameter": 8, - "knop_cachefetch": 4, - "Corrected": 8, - "construction": 2, - "cache_name": 2, - "internally": 2, - "the": 86, - "knop_cache": 2, - "tags": 14, - "so": 16, - "it": 20, - "will": 12, - "work": 6, - "correctly": 2, - "at": 10, - "site": 4, - "root": 2, - "2008": 6, - "11": 8, - "dummy": 2, - "knop_debug": 4, - "ctype": 2, - "be": 38, - "able": 14, - "transparently": 2, - "without": 4, - "L": 2, - "Debug": 2, - "24": 2, - "knop_stripbackticks": 2, - "01": 4, - "28": 2, - "Cache": 2, - "name": 32, - "used": 12, - "when": 10, - "using": 8, - "session": 4, - "storage": 8, - "2007": 6, - "12": 8, - "knop_cachedelete": 2, - "Created": 4, - "03": 2, - "knop_foundrows": 2, - "condition": 4, - "returning": 2, - "normal": 2, - "For": 2, - "lasso_tagexists": 4, - "define_tag": 48, - "namespace=": 12, - "__html_reply__": 4, - "define_type": 14, - "debug": 2, - "_unknowntag": 6, - "onconvert": 2, - "stripbackticks": 2, - "description=": 2, - "priority=": 2, - "required=": 2, - "input": 2, - "split": 2, - "@#output": 2, - "/define_tag": 36, - "description": 34, - "namespace": 16, - "priority": 8, - "Johan": 2, - "S": 2, - "lve": 2, - "#charlist": 6, - "current": 10, - "time": 8, - "a": 52, - "mixed": 2, - "up": 4, - "as": 26, - "seed": 6, - "#seed": 36, - "convert": 4, - "this": 14, - "base": 6, - "conversion": 4, - "get": 12, - "#base": 8, - "/": 6, - "over": 2, - "new": 14, - "chunk": 2, - "millisecond": 2, - "math_random": 2, - "lower": 2, - "upper": 2, - "__lassoservice_ip__": 2, - "response_localpath": 8, - "removetrailing": 8, - "response_filepath": 8, - "//tagswap.net/found_rows": 2, - "action_statement": 2, - "string_findregexp": 8, - "#sql": 42, - "ignorecase": 12, - "||": 8, - "maxrecords_value": 2, - "inaccurate": 2, - "must": 4, - "accurate": 2, - "Default": 2, - "usually": 2, - "fastest.": 2, - "Can": 2, - "not": 10, - "GROUP": 4, - "BY": 6, - "example.": 2, - "normalize": 4, - "around": 2, - "FROM": 2, - "expression": 6, - "string_replaceregexp": 8, - "replace": 8, - "ReplaceOnlyOne": 2, - "substring": 6, - "remove": 6, - "ORDER": 2, - "statement": 4, - "since": 4, - "causes": 4, - "problems": 2, - "field": 26, - "aliases": 2, - "we": 2, - "can": 14, - "simple": 2, - "later": 2, - "query": 4, - "contains": 2, - "use": 10, - "SQL_CALC_FOUND_ROWS": 2, - "which": 2, - "much": 2, - "slower": 2, - "see": 16, - "//bugs.mysql.com/bug.php": 2, - "removeleading": 2, - "inline": 4, - "sql": 2, - "exit": 2, - "here": 2, - "normally": 2, - "/inline": 2, - "fallback": 4, - "required": 10, - "optional": 36, - "local_defined": 26, - "knop_seed": 2, - "#RandChars": 4, - "Get": 2, - "Math_Random": 2, - "Min": 2, - "Max": 2, - "Size": 2, - "#value": 14, - "#numericValue": 4, - "length": 8, - "#cryptvalue": 10, - "#anyChar": 2, - "Encrypt_Blowfish": 2, - "decrypt_blowfish": 2, - "String_Remove": 2, - "StartPosition": 2, - "EndPosition": 2, - "Seed": 2, - "String_IsAlphaNumeric": 2, - "self": 72, - "_date_msec": 4, - "/define_type": 4, - "seconds": 4, - "default": 4, - "store": 4, - "all": 6, - "page": 14, - "vars": 8, - "specified": 8, - "iterate": 12, - "keys": 6, - "var": 38, - "#item": 10, - "#type": 26, - "#data": 14, - "/iterate": 12, - "//fail_if": 6, - "session_id": 6, - "#session": 10, - "session_addvar": 4, - "#cache_name": 72, - "duration": 4, - "#expires": 4, - "server_name": 6, - "initiate": 10, - "thread": 6, - "RW": 6, - "lock": 24, - "global": 40, - "Thread_RWLock": 6, - "create": 6, - "reference": 10, - "@": 8, - "writing": 6, - "#lock": 12, - "writelock": 4, - "check": 6, - "cache": 4, - "unlock": 6, - "writeunlock": 4, - "#maxage": 4, - "cached": 8, - "data": 12, - "too": 4, - "old": 4, - "reading": 2, - "readlock": 2, - "readunlock": 2, - "ignored": 2, - "//##################################################################": 4, - "knoptype": 2, - "All": 4, - "Knop": 6, - "custom": 8, - "types": 10, - "should": 4, - "have": 6, - "identify": 2, - "registered": 2, - "knop": 6, - "isknoptype": 2, - "knop_knoptype": 2, - "prototype": 4, - "version": 4, - "14": 4, - "Base": 2, - "framework": 2, - "Contains": 2, - "common": 4, - "member": 10, - "Used": 2, - "boilerplate": 2, - "creating": 4, - "other": 4, - "instance": 8, - "variables": 2, - "are": 4, - "available": 2, - "well": 2, - "CHANGE": 4, - "NOTES": 4, - "Syntax": 4, - "adjustments": 4, - "9": 2, - "Changed": 6, - "error": 22, - "numbers": 2, - "added": 10, - "even": 2, - "language": 10, - "already": 2, - "exists.": 2, - "improved": 4, - "reporting": 2, - "messages": 6, - "such": 2, - "from": 6, - "bad": 2, - "database": 14, - "queries": 2, - "error_lang": 2, - "provide": 2, - "knop_lang": 8, - "add": 12, - "localized": 2, - "except": 2, - "knop_base": 8, - "html": 4, - "xhtml": 28, - "help": 10, - "nicely": 2, - "formatted": 2, - "output.": 2, - "Centralized": 2, - "knop_base.": 2, - "Moved": 6, - "codes": 2, - "improve": 2, - "documentation.": 2, - "It": 2, - "always": 2, - "an": 8, - "parameter.": 2, - "trace": 2, - "tagtime": 4, - "was": 6, - "nav": 4, - "earlier": 2, - "varname": 4, - "retreive": 2, - "variable": 8, - "that": 18, - "stored": 2, - "in.": 2, - "automatically": 2, - "sense": 2, - "doctype": 6, - "exists": 2, - "buffer.": 2, - "The": 6, - "performance.": 2, - "internal": 2, - "html.": 2, - "Introduced": 2, - "_knop_data": 10, - "general": 2, - "level": 2, - "caching": 2, - "between": 2, - "different": 2, - "objects.": 2, - "TODO": 2, - "option": 2, - "Google": 2, - "Code": 2, - "Wiki": 2, - "working": 2, - "properly": 4, - "run": 2, - "by": 12, - "atbegin": 2, - "handler": 2, - "explicitly": 2, - "*/": 2, - "entire": 4, - "ms": 2, - "defined": 4, - "each": 8, - "instead": 4, - "avoid": 2, - "recursion": 2, - "properties": 4, - "#endslash": 10, - "#tags": 2, - "#t": 2, - "doesn": 4, - "p": 2, - "Parameters": 4, - "nParameters": 2, - "Internal.": 2, - "Finds": 2, - "out": 2, - "used.": 2, - "Looks": 2, - "unless": 2, - "array.": 2, - "variable.": 2, - "Looking": 2, - "#xhtmlparam": 4, - "plain": 2, - "#doctype": 4, - "copy": 4, - "standard": 2, - "code": 2, - "errors": 12, - "error_data": 12, - "form": 2, - "grid": 2, - "lang": 2, - "user": 4, - "#error_lang": 12, - "addlanguage": 4, - "strings": 6, - "@#errorcodes": 2, - "#error_lang_custom": 2, - "#custom_language": 10, - "once": 4, - "one": 2, - "#custom_string": 4, - "#errorcodes": 4, - "#error_code": 10, - "message": 6, - "getstring": 2, - "test": 2, - "known": 2, - "lasso": 2, - "knop_timer": 2, - "knop_unique": 2, - "look": 2, - "#varname": 6, - "loop_abort": 2, - "tag_name": 2, - "#timer": 2, - "#trace": 4, - "merge": 2, - "#eol": 8, - "2010": 4, - "23": 4, - "Custom": 2, - "interact": 2, - "databases": 2, - "Supports": 4, - "both": 2, - "MySQL": 2, - "FileMaker": 2, - "datasources": 2, - "2012": 4, - "06": 2, - "10": 2, - "SP": 4, - "Fix": 2, - "precision": 2, - "bug": 2, - "6": 2, - "0": 2, - "1": 2, - "renderfooter": 2, - "15": 2, - "Add": 2, - "support": 6, - "Thanks": 2, - "Ric": 2, - "Lewis": 2, - "settable": 4, - "removed": 2, - "table": 6, - "nextrecord": 12, - "deprecation": 2, - "warning": 2, - "corrected": 2, - "verification": 2, - "index": 4, - "before": 4, - "calling": 2, - "resultset_count": 6, - "break": 2, - "versions": 2, - "fixed": 4, - "incorrect": 2, - "debug_trace": 2, - "addrecord": 4, - "how": 2, - "keyvalue": 10, - "returned": 6, - "adding": 2, - "records": 4, - "inserting": 2, - "generated": 2, - "suppressed": 2, - "specifying": 2, - "saverecord": 8, - "deleterecord": 4, - "case.": 2, - "recorddata": 6, - "no": 2, - "longer": 2, - "touch": 2, - "current_record": 2, - "zero": 2, - "access": 2, - "occurrence": 2, - "same": 4, - "returns": 4, - "knop_databaserows": 2, - "inlinename.": 4, - "next.": 2, - "remains": 2, - "supported": 2, - "backwards": 2, - "compatibility.": 2, - "resets": 2, - "record": 20, - "pointer": 8, - "reaching": 2, - "last": 4, - "honors": 2, - "incremented": 2, - "recordindex": 4, - "specific": 2, - "found.": 2, - "getrecord": 8, - "REALLY": 2, - "works": 4, - "keyvalues": 4, - "double": 2, - "oops": 4, - "I": 4, - "thought": 2, - "but": 2, - "misplaced": 2, - "paren...": 2, - "corresponding": 2, - "resultset": 2, - "/resultset": 2, - "through": 2, - "handling": 2, - "better": 2, - "knop_user": 4, - "keeplock": 4, - "updates": 2, - "datatype": 2, - "knop_databaserow": 2, - "iterated.": 2, - "When": 2, - "iterating": 2, - "row": 2, - "values.": 2, - "Addedd": 2, - "increments": 2, - "recordpointer": 2, - "called": 2, - "until": 2, - "reached.": 2, - "Returns": 2, - "long": 2, - "there": 2, - "more": 2, - "records.": 2, - "Useful": 2, - "loop": 2, - "example": 2, - "below": 2, - "Implemented": 2, - "reset": 2, - "query.": 2, - "shortcut": 2, - "Removed": 2, - "onassign": 2, - "touble": 2, - "Extended": 2, - "field_names": 2, - "names": 4, - "db": 2, - "objects": 2, - "never": 2, - "been": 2, - "optionally": 2, - "supports": 2, - "sql.": 2, - "Make": 2, - "sure": 2, - "SQL": 2, - "includes": 2, - "relevant": 2, - "lockfield": 2, - "locking": 4, - "capturesearchvars": 2, - "mysteriously": 2, - "after": 2, - "operations": 2, - "caused": 2, - "errors.": 2, - "flag": 2, - "save": 2, - "locked": 2, - "releasing": 2, - "Adding": 2, - "progress.": 2, - "Done": 2, - "oncreate": 2, - "getrecord.": 2, - "documentation": 2, "most": 2, - "existing": 2, - "it.": 2, - "Faster": 2, - "than": 2, - "scratch.": 2, - "shown_first": 2, - "again": 2, - "hoping": 2, - "s": 2, - "only": 2, - "captured": 2, - "update": 2, - "uselimit": 2, - "querys": 2, - "LIMIT": 2, - "still": 2, - "gets": 2, - "proper": 2, - "searchresult": 2, - "separate": 2, - "COUNT": 2 - }, - "Latte": { - "{": 54, - "**": 1, - "*": 4, - "@param": 3, - "string": 2, - "basePath": 1, - "web": 1, - "base": 1, - "path": 1, - "robots": 2, - "tell": 1, - "how": 1, - "to": 2, - "index": 1, - "the": 1, - "content": 1, - "of": 3, - "a": 4, - "page": 1, - "(": 18, - "optional": 1, - ")": 18, - "array": 1, - "flashes": 1, - "flash": 3, - "messages": 1, - "}": 54, - "": 1, - "html": 1, - "": 1, - "": 1, - "": 6, - "charset=": 1, - "name=": 4, - "content=": 5, - "n": 8, - "ifset=": 1, - "http": 1, - "equiv=": 1, - "": 1, - "ifset": 1, - "title": 4, - "/ifset": 1, - "Translation": 1, - "report": 1, - "": 1, - "": 2, - "rel=": 2, - "media=": 1, - "href=": 4, - "": 3, - "block": 3, - "#head": 1, - "/block": 3, - "": 1, - "": 1, - "class=": 12, - "document.documentElement.className": 1, - "+": 3, - "#navbar": 1, - "include": 3, - "_navbar.latte": 1, - "
": 6, - "inner": 1, - "foreach=": 3, - "_flash.latte": 1, - "
": 7, - "#content": 1, - "
": 1, - "
": 1, - "src=": 1, - "#scripts": 1, - "": 1, - "": 1, - "var": 3, - "define": 1, - "author": 7, - "": 2, - "Author": 2, - "authorId": 2, - "-": 71, - "id": 3, - "black": 2, - "avatar": 2, - "img": 2, - "rounded": 2, - "class": 2, - "tooltip": 4, - "Total": 1, - "time": 4, - "shortName": 1, - "translated": 4, - "on": 5, - "all": 1, - "videos.": 1, - "amaraCallbackLink": 1, - "row": 2, - "col": 3, - "md": 2, - "outOf": 5, - "done": 7, - "threshold": 4, - "alert": 2, - "warning": 2, - "<=>": 2, - "Seems": 1, - "complete": 1, - "|": 6, - "out": 1, - "

": 2, - "elseif": 2, - "<": 1, - "p": 1, - "if": 7, - "Although": 1, - "is": 1, - "there": 1, - "are": 1, - "no": 1, - "English": 1, - "subtitles": 1, - "for": 1, - "comparison.": 1, - "/if": 8, - "/cache": 1, - "editor": 1, - "ksid": 2, - "new": 5, - "video": 2, - "siteId": 1, - "Video": 1, - "khanovaskola.cz": 1, - "revision": 18, - "rev": 4, - "this": 3, - "older": 1, - "#": 2, - "else": 2, - "newer": 1, - "
": 1, - "

": 1, - "diffs": 3, - "noescape": 2, - "

": 1, - "description": 1, - "text": 4, - "as": 2, - "line": 3, - "context": 1, - "splitter": 1, - "template": 1, - "bottom": 1, - "Expand": 1, - "fa": 16, - "sort": 1, - "ellipsis": 1, - "h": 1, - "success": 1, - "amaraEdit": 1, - "amaraId": 2, - "editButton": 1, - "btn": 17, - "default": 6, - "edit": 1, - "khanAcademy": 1, - "kaButton": 1, - "link": 1, - "info": 1, - "group": 4, - "approve": 1, - "thumbs": 3, - "up": 1, - "markIncomplete": 2, - "down": 2, - "redirectToAdd": 1, - "plus": 1, - "square": 1, - "table": 2, - "condensed": 1, - "revisions": 1, - "revId": 1, - "secondary": 2, - "Percent": 1, - "lines": 1, - "&": 1, - "thinsp": 1, - "%": 1, - "": 3, - "": 3, - "": 2, - "incomplete": 3, - "approved": 2, - "": 1, - "user": 1, - "loggedIn": 1, - "&&": 1, - "comments": 2, - "count": 1, - "": 2, - "": 2, - "colspan=": 1, - "": 1, - "comment": 4, - "left": 1, - "createdAt": 1, - "timeAgo": 1, - "noborder": 1, - "input": 3, + "often": 1, + "used": 2, + "in": 23, + "the": 35, "form": 1, - "control": 1, - "Comment": 1, - "only": 1, - "visible": 1, - "other": 1, - "editors": 1, - "save": 1, - "share": 1, - "": 1, - "": 1, - "/form": 1, - "/foreach": 1, - "
": 1 - }, - "Less": { - "@blue": 4, - "#3bbfce": 1, - ";": 7, - "@margin": 3, - "px": 1, - ".content": 1, - "-": 3, - "navigation": 1, - "{": 2, - "border": 2, - "color": 3, - "darken": 1, - "(": 1, - "%": 1, - ")": 1, - "}": 2, - ".border": 1, - "padding": 1, - "/": 2, - "margin": 1 - }, - "LFE": { - ";": 213, - "Copyright": 4, - "(": 217, - "c": 4, - ")": 231, - "Duncan": 4, - "McGreggor": 4, - "": 2, - "Licensed": 3, - "under": 9, - "the": 36, - "Apache": 3, - "License": 12, - "Version": 3, - "you": 3, - "may": 6, - "not": 5, - "use": 6, - "this": 3, - "file": 6, - "except": 3, - "in": 10, - "compliance": 3, - "with": 8, - "License.": 6, - "You": 3, - "obtain": 3, - "a": 8, - "copy": 3, - "of": 10, - "at": 4, - "http": 4, - "//www.apache.org/licenses/LICENSE": 3, - "-": 98, - "Unless": 3, - "required": 3, - "by": 4, - "applicable": 3, - "law": 3, - "or": 6, - "agreed": 3, - "to": 10, - "writing": 3, - "software": 3, - "distributed": 6, - "is": 5, - "on": 4, - "an": 5, - "BASIS": 3, - "WITHOUT": 3, - "WARRANTIES": 3, - "OR": 3, - "CONDITIONS": 3, - "OF": 3, - "ANY": 3, - "KIND": 3, - "either": 3, - "express": 3, - "implied.": 3, - "See": 3, - "for": 5, - "specific": 3, - "language": 3, - "governing": 3, - "permissions": 3, - "and": 7, - "limitations": 3, - "File": 4, - "church.lfe": 1, - "Author": 3, - "Purpose": 3, - "Demonstrating": 2, - "church": 20, - "numerals": 1, - "from": 2, - "lambda": 18, - "calculus": 1, - "The": 4, + "primep": 4, + "test": 1, + "a": 7, + "number": 2, + "for": 3, + "prime": 12, + "defun": 23, + "n": 8, + "if": 14, + "<": 1, + "return": 3, + "from": 8, + "do": 9, + "i": 8, + "+": 35, + "p": 10, + "t": 7, + "not": 6, + "zerop": 1, + "mod": 1, + "sqrt": 1, + "when": 4, + "next": 11, + "bigger": 1, + "than": 1, + "specified": 2, + "The": 2, + "recommended": 1, + "procedures": 1, + "to": 4, + "writting": 1, + "new": 6, + "are": 2, + "as": 1, + "follows": 1, + "Write": 2, + "sample": 2, + "call": 2, + "and": 12, "code": 2, - "below": 3, - "was": 1, - "used": 1, - "create": 4, - "section": 1, - "user": 1, - "guide": 1, - "here": 1, - "//lfe.github.io/user": 1, - "guide/recursion/5.html": 1, - "Here": 1, - "some": 2, - "example": 2, - "usage": 1, - "slurp": 2, - "five/0": 2, - "int2": 1, - "get": 21, - "defmodule": 2, - "export": 2, - "all": 1, - "defun": 20, - "zero": 2, - "s": 19, - "x": 12, - "one": 1, - "funcall": 23, - "two": 1, - "three": 1, - "four": 1, - "five": 1, - "int": 2, - "successor": 3, - "n": 4, - "+": 2, - "int1": 1, - "numeral": 8, - "#": 3, - "successor/1": 1, - "count": 7, - "limit": 4, - "cond": 1, - "/": 1, - "integer": 2, - "*": 6, - "Mode": 1, - "LFE": 4, - "Code": 1, - "Paradigms": 1, - "Artificial": 1, - "Intelligence": 1, - "Programming": 1, + "it": 2, + "should": 1, + "expand": 1, + "into": 2, + "primes": 3, + "format": 3, + "Expected": 1, + "expanded": 1, + "codes": 1, + "generate": 1, + "hardwritten": 1, + "expansion": 2, + "arguments": 1, + "var": 49, + "range": 4, + "&": 8, + "rest": 5, + "let": 6, + "first": 5, + "start": 5, + "second": 3, + "end": 8, + "third": 2, + "@body": 4, + "More": 1, + "concise": 1, + "implementations": 1, + "with": 7, + "synonym": 1, + "also": 1, + "emits": 1, + "more": 1, + "friendly": 1, + "messages": 1, + "on": 1, + "incorrent": 1, + "input.": 1, + "Test": 1, + "result": 1, + "of": 3, + "macroexpand": 2, + "function": 2, + "gensyms": 4, + "value": 8, + "Define": 1, + "note": 1, + "how": 1, + "comma": 1, + "interpolate": 1, + "loop": 2, + "names": 2, + "collect": 1, + "gensym": 1, + "*": 2, + "lisp": 1, + "package": 1, + "foo": 2, + "Header": 1, + "comment.": 4, + "defvar": 4, + "*foo*": 1, + "eval": 6, + "execute": 1, + "compile": 1, + "toplevel": 2, + "load": 1, + "add": 1, + "x": 47, + "optional": 2, + "y": 2, + "key": 1, + "z": 2, + "declare": 1, + "ignore": 1, + "Inline": 1, + "or": 4, + "#": 15, + "|": 9, + "Multi": 1, + "line": 2, + "b": 6, + "After": 1, + "ESCUELA": 1, + "POLITECNICA": 1, + "SUPERIOR": 1, + "UNIVERSIDAD": 1, + "AUTONOMA": 1, + "DE": 1, + "MADRID": 1, + "INTELIGENCIA": 1, + "ARTIFICIAL": 1, + "Motor": 1, + "de": 2, + "inferencia": 1, + "Basado": 1, + "en": 2, + "parte": 1, "Peter": 1, "Norvig": 1, - "gps1.lisp": 1, - "First": 1, - "version": 1, - "GPS": 1, - "General": 1, - "Problem": 1, - "Solver": 1, - "Converted": 1, - "Robert": 3, - "Virding": 3, - "Define": 1, - "macros": 1, - "global": 2, - "variable": 2, - "access.": 1, - "This": 2, - "hack": 1, - "very": 1, - "naughty": 1, - "defsyntax": 2, - "defvar": 2, - "[": 3, - "name": 8, - "val": 2, - "]": 3, - "let": 6, - "v": 3, - "put": 1, - "getvar": 3, - "solved": 1, - "gps": 1, - "state": 4, - "goals": 2, - "Set": 1, - "variables": 1, - "but": 1, - "existing": 1, - "*ops*": 1, - "*state*": 5, - "current": 1, - "list": 13, - "conditions.": 1, - "if": 1, - "every": 1, - "fun": 1, - "achieve": 1, - "op": 8, - "action": 3, - "setvar": 2, - "set": 1, - "difference": 1, - "del": 5, - "union": 1, - "add": 3, - "drive": 1, - "son": 2, - "school": 2, - "preconds": 4, - "shop": 6, - "installs": 1, - "battery": 1, - "car": 1, - "works": 1, - "make": 2, - "communication": 2, - "telephone": 1, - "have": 3, - "phone": 1, - "book": 1, - "give": 1, - "money": 3, - "has": 1, - "mnesia_demo.lfe": 1, - "A": 1, - "simple": 4, - "Mnesia": 2, - "demo": 2, - "LFE.": 1, - "contains": 1, - "using": 1, - "access": 1, - "tables.": 1, - "It": 1, - "shows": 2, - "how": 2, - "emp": 1, - "XXXX": 1, - "macro": 1, - "ETS": 1, - "match": 5, - "pattern": 1, - "together": 1, - "mnesia": 8, - "match_object": 1, - "specifications": 1, - "select": 1, - "Query": 2, - "List": 2, - "Comprehensions.": 1, - "mnesia_demo": 1, - "new": 2, - "by_place": 1, - "by_place_ms": 1, - "by_place_qlc": 2, - "defrecord": 1, - "person": 8, - "place": 7, - "job": 3, - "Start": 1, - "table": 2, - "we": 1, - "will": 1, - "memory": 1, - "only": 1, - "schema.": 1, - "start": 1, - "create_table": 1, - "attributes": 1, - "Initialise": 1, - "table.": 1, - "people": 1, - "spec": 1, - "p": 2, - "j": 2, - "when": 1, - "tuple": 1, - "transaction": 2, - "f": 3, - "Use": 1, - "Comprehensions": 1, - "records": 1, - "q": 2, - "qlc": 2, - "lc": 1, - "<": 1, - "e": 1, - "object.lfe": 1, - "OOP": 1, - "closures": 1, - "object": 16, - "system": 1, - "demonstrated": 1, - "do": 2, - "following": 2, - "objects": 2, - "call": 2, - "methods": 5, - "those": 1, - "which": 1, - "can": 1, - "other": 1, - "update": 1, - "instance": 2, - "Note": 1, - "however": 1, - "that": 1, - "his": 1, - "does": 1, - "demonstrate": 1, - "inheritance.": 1, - "To": 1, - "cd": 1, - "examples": 1, - "../bin/lfe": 1, - "pa": 1, - "../ebin": 1, - "Load": 1, - "fish": 6, - "class": 3, - "#Fun": 1, - "": 1, - "Execute": 1, - "basic": 1, - "species": 7, - "mommy": 3, - "move": 4, - "Carp": 1, - "swam": 1, - "feet": 1, - "ok": 1, - "id": 9, - "Now": 1, - "strictly": 1, - "necessary.": 1, - "When": 1, - "isn": 1, - "children": 10, - "formatted": 1, - "verb": 2, - "self": 6, - "distance": 2, - "erlang": 1, - "length": 1, - "method": 7, - "define": 1, - "info": 1, - "reproduce": 1 - }, - "Liquid": { - "": 1, - "html": 1, - "PUBLIC": 1, - "W3C": 1, - "DTD": 2, - "XHTML": 1, - "1": 1, - "0": 1, - "Transitional": 1, - "EN": 1, - "http": 2, - "www": 1, - "w3": 1, - "org": 1, - "TR": 1, - "xhtml1": 2, - "transitional": 1, - "dtd": 1, - "": 1, - "xmlns=": 1, - "xml": 1, - "lang=": 2, - "": 1, - "": 1, - "equiv=": 1, - "content=": 1, - "": 1, - "{": 89, - "shop.name": 2, - "}": 89, - "-": 4, - "page_title": 1, - "": 1, - "|": 31, - "global_asset_url": 5, - "stylesheet_tag": 3, - "script_tag": 5, - "shopify_asset_url": 1, - "asset_url": 2, - "content_for_header": 1, - "": 1, - "": 1, - "id=": 28, - "

": 1, - "class=": 14, - "": 9, - "href=": 9, - "Skip": 1, - "to": 1, - "navigation.": 1, - "": 9, - "

": 1, - "%": 46, - "if": 5, - "cart.item_count": 7, - "
": 23, - "style=": 5, - "

": 3, - "There": 1, - "pluralize": 3, - "in": 8, - "title=": 3, - "your": 1, - "cart": 1, - "

": 3, - "

": 1, - "Your": 1, - "subtotal": 1, - "is": 1, - "cart.total_price": 2, - "money": 5, - ".": 3, - "

": 1, - "for": 6, - "item": 1, - "cart.items": 1, - "onMouseover=": 2, - "onMouseout=": 2, - "": 4, - "src=": 5, - "
": 23, - "endfor": 6, - "
": 2, - "endif": 5, - "

": 1, - "

": 1, - "onclick=": 1, - "View": 1, - "Mini": 1, - "Cart": 1, - "(": 1, - ")": 1, - "
": 3, - "content_for_layout": 1, - "
    ": 5, - "link": 2, - "linklists.main": 1, - "menu.links": 1, - "
  • ": 5, - "link.title": 2, - "link_to": 2, - "link.url": 2, - "
  • ": 5, - "
": 5, - "tags": 1, - "tag": 4, - "collection.tags": 1, - "": 1, - "link_to_add_tag": 1, - "": 1, - "highlight_active_tag": 1, - "link_to_tag": 1, - "linklists.footer.links": 1, - "All": 1, - "prices": 1, - "are": 1, - "shop.currency": 1, - "Powered": 1, - "by": 1, - "Shopify": 1, - "": 1, - "": 1, - "

": 1, - "We": 1, - "have": 1, - "wonderful": 1, - "products": 1, - "

": 1, - "image": 1, - "product.images": 1, - "forloop.first": 1, - "rel=": 2, - "alt=": 2, - "else": 1, - "product.title": 1, - "Vendor": 1, - "product.vendor": 1, - "link_to_vendor": 1, - "Type": 1, - "product.type": 1, - "link_to_type": 1, - "": 1, - "product.price_min": 1, - "product.price_varies": 1, - "product.price_max": 1, - "": 1, - "
": 1, - "action=": 1, - "method=": 1, - "": 1, - "": 1, - "type=": 2, - "
": 1, - "product.description": 1, - "": 1 - }, - "Literate Agda": { - "documentclass": 1, - "{": 35, - "article": 1, - "}": 35, - "usepackage": 7, - "amssymb": 1, - "bbm": 1, - "[": 2, - "greek": 1, - "english": 1, - "]": 2, - "babel": 1, - "ucs": 1, - "utf8x": 1, - "inputenc": 1, - "autofe": 1, - "DeclareUnicodeCharacter": 3, - "ensuremath": 3, - "ulcorner": 1, - "urcorner": 1, - "overline": 1, - "equiv": 1, - "fancyvrb": 1, - "DefineVerbatimEnvironment": 1, - "code": 3, - "Verbatim": 1, - "%": 1, - "Add": 1, - "fancy": 1, - "options": 1, - "here": 1, - "if": 1, - "you": 3, - "like.": 1, - "begin": 2, - "document": 2, - "module": 3, - "NatCat": 1, - "where": 2, - "open": 2, - "import": 2, - "Relation.Binary.PropositionalEquality": 1, - "-": 21, - "If": 1, - "can": 1, - "show": 1, - "that": 1, - "a": 1, - "relation": 1, - "only": 1, - "ever": 1, - "has": 1, - "one": 1, - "inhabitant": 5, - "get": 1, - "the": 1, - "category": 1, - "laws": 1, - "for": 1, - "free": 1, - "EasyCategory": 3, - "(": 36, - "obj": 4, - "Set": 2, - ")": 36, - "_": 6, - "x": 34, - "y": 28, - "z": 18, - "id": 9, - "single": 4, - "r": 26, - "s": 29, - "assoc": 2, - "w": 4, - "t": 6, - "Data.Nat": 1, - "same": 5, - ".0": 2, - "n": 14, - "refl": 6, - ".": 5, - "suc": 6, - "m": 6, - "cong": 1, - "trans": 5, - ".n": 1, - "zero": 1, - "Nat": 1, - "end": 2 - }, - "Literate CoffeeScript": { - "The": 2, - "**Scope**": 2, - "class": 2, - "regulates": 1, - "lexical": 1, - "scoping": 1, - "within": 2, - "CoffeeScript.": 1, - "As": 1, - "you": 2, - "generate": 1, - "code": 1, - "create": 1, - "a": 8, - "tree": 1, - "of": 4, - "scopes": 1, - "in": 2, - "the": 12, - "same": 1, - "shape": 1, - "as": 3, - "nested": 1, - "function": 2, - "bodies.": 1, - "Each": 1, - "scope": 2, - "knows": 1, - "about": 1, - "variables": 3, - "declared": 2, - "it": 4, - "and": 5, - "has": 1, - "reference": 3, - "to": 8, - "its": 3, - "parent": 2, - "enclosing": 1, - "scope.": 2, - "In": 1, - "this": 3, - "way": 1, - "we": 4, - "know": 1, - "which": 3, - "are": 3, - "new": 2, - "need": 2, - "be": 2, - "with": 3, - "var": 4, - "shared": 1, - "external": 1, - "scopes.": 1, - "Import": 1, - "helpers": 1, - "plan": 1, - "use.": 1, - "{": 4, - "extend": 1, - "last": 1, - "}": 4, - "require": 1, - "exports.Scope": 1, - "Scope": 1, - "root": 1, - "is": 3, - "top": 2, - "-": 5, - "level": 1, - "object": 1, - "for": 3, - "given": 1, - "file.": 1, - "@root": 1, - "null": 1, - "Initialize": 1, - "lookups": 1, - "up": 1, - "chain": 1, - "well": 1, - "**Block**": 1, - "node": 1, - "belongs": 2, - "where": 1, - "should": 1, - "declare": 1, - "that": 2, - "to.": 1, - "constructor": 1, - "(": 5, - "@parent": 2, - "@expressions": 1, - "@method": 1, - ")": 6, - "@variables": 3, - "[": 4, - "name": 8, - "type": 5, - "]": 4, - "@positions": 4, - "Scope.root": 1, - "unless": 1, - "Adds": 1, - "variable": 1, - "or": 1, - "overrides": 1, - "an": 1, - "existing": 1, - "one.": 1, - "add": 1, - "immediate": 3, - "return": 1, - "@parent.add": 1, - "if": 2, - "@shared": 1, - "not": 1, - "Object": 1, - "hasOwnProperty.call": 1, - ".type": 1, - "else": 2, - "@variables.push": 1, - "When": 1, - "super": 1, - "called": 1, - "find": 1, - "current": 1, - "method": 1, - "param": 1, - "_": 3, - "then": 1, - "tempVars": 1, - "realVars": 1, - ".push": 1, - "v.name": 1, - "realVars.sort": 1, - ".concat": 1, - "tempVars.sort": 1, - "Return": 1, - "list": 1, - "assignments": 1, - "supposed": 1, - "made": 1, - "at": 1, - "assignedVariables": 1, - "v": 1, - "when": 1, - "v.type.assigned": 1 - }, - "LiveScript": { - "a": 8, - "-": 25, - "const": 1, - "b": 3, - "var": 1, - "c": 3, - "d": 3, - "_000_000km": 1, - "*": 1, - "ms": 1, - "e": 2, - "(": 9, - ")": 10, - "dashes": 1, - "identifiers": 1, - "underscores_i": 1, - "/regexp1/": 1, - "and": 3, - "//regexp2//g": 1, - "strings": 1, - "[": 2, - "til": 1, - "]": 2, - "or": 2, - "to": 2, - "|": 3, - "map": 1, - "filter": 1, - "fold": 1, - "+": 1, - "class": 1, - "Class": 1, - "extends": 1, - "Anc": 1, - "est": 1, - "args": 1, - "copy": 1, - "from": 1, - "callback": 4, - "error": 6, - "data": 2, - "<": 1, - "read": 1, - "file": 2, - "return": 2, - "if": 2, - "<~>": 1, - "write": 1 - }, - "Logos": { - "%": 15, - "hook": 2, - "ABC": 2, - "-": 3, - "(": 8, - "id": 2, - ")": 8, - "a": 1, - "B": 1, - "b": 1, - "{": 4, - "log": 1, - ";": 8, - "return": 2, - "orig": 2, - "nil": 2, - "}": 4, - "end": 4, - "subclass": 1, - "DEF": 1, - "NSObject": 1, - "init": 3, - "[": 2, - "c": 1, - "RuntimeAccessibleClass": 1, - "alloc": 1, - "]": 2, - "group": 1, - "OptionalHooks": 2, - "void": 1, - "release": 1, - "self": 1, - "retain": 1, - "ctor": 1, - "if": 1, - "OptionalCondition": 1 - }, - "Logtalk": { - "-": 3, - "object": 2, - "(": 4, - "hello_world": 1, - ")": 4, - ".": 2, - "%": 2, - "the": 2, - "initialization/1": 1, - "directive": 1, - "argument": 1, - "is": 2, - "automatically": 1, - "executed": 1, - "when": 1, - "loaded": 1, - "into": 1, - "memory": 1, - "initialization": 1, - "nl": 2, - "write": 1, - "end_object.": 1 - }, - "Lua": { - "-": 60, - "A": 1, - "simple": 1, - "counting": 1, - "object": 1, - "that": 1, - "increments": 1, - "an": 1, - "internal": 1, - "counter": 1, - "whenever": 1, - "it": 2, - "receives": 2, - "a": 5, - "bang": 3, - "at": 2, - "its": 2, - "first": 1, - "inlet": 2, - "or": 2, - "changes": 1, - "to": 8, - "whatever": 1, - "number": 3, - "second": 1, - "inlet.": 1, - "local": 11, - "HelloCounter": 4, - "pd.Class": 3, - "new": 3, - "(": 56, - ")": 56, - "register": 3, - "function": 16, - "initialize": 3, - "sel": 3, - "atoms": 3, - "self.inlets": 3, - "self.outlets": 3, - "self.num": 5, - "return": 3, - "true": 3, - "end": 26, - "in_1_bang": 2, - "self": 10, - "outlet": 10, - "{": 16, - "}": 16, - "+": 3, - "in_2_float": 2, - "f": 12, - "FileListParser": 5, - "Base": 1, - "filename": 2, - "File": 2, - "extension": 2, - "Number": 4, - "of": 9, - "files": 1, - "in": 7, - "batch": 2, - "To": 3, - "[": 17, - "list": 1, - "trim": 1, - "]": 17, - "binfile": 3, - "vidya": 1, - "file": 8, - "modder": 1, - "s": 5, - "mechanisms": 1, - "self.extension": 3, - "the": 7, - "last": 1, - "self.batchlimit": 3, - "in_1_symbol": 1, - "for": 9, - "i": 10, - "do": 8, - "..": 7, - "in_2_list": 1, - "d": 9, - "in_3_float": 1, - "FileModder": 10, - "Object": 1, - "triggering": 1, - "Incoming": 1, - "single": 1, - "data": 2, - "bytes": 3, - "from": 3, - "Total": 1, - "route": 1, - "buflength": 1, - "Glitch": 3, - "type": 2, - "point": 2, - "times": 2, - "glitch": 2, - "Toggle": 1, - "randomized": 1, - "glitches": 3, - "within": 2, - "bounds": 2, - "Active": 1, - "get": 1, - "next": 1, - "byte": 2, - "clear": 2, - "buffer": 2, - "FLOAT": 1, - "write": 3, - "Currently": 1, - "active": 2, - "namedata": 1, - "self.filedata": 4, - "pattern": 1, - "random": 3, - "splice": 1, - "self.glitchtype": 5, - "Minimum": 1, - "image": 1, - "self.glitchpoint": 6, - "repeat": 1, - "on": 1, - "given": 1, - "self.randrepeat": 5, - "Toggles": 1, - "whether": 1, - "repeating": 1, - "should": 1, - "be": 1, - "self.randtoggle": 3, - "Hold": 1, - "all": 1, - "which": 1, - "are": 1, - "converted": 1, - "ints": 1, - "range": 1, - "self.bytebuffer": 8, - "Buffer": 1, - "length": 1, - "currently": 1, - "self.buflength": 7, - "if": 2, - "then": 4, - "plen": 2, - "math.random": 8, - "patbuffer": 3, - "table.insert": 4, - "%": 1, - "#patbuffer": 1, - "elseif": 2, - "randlimit": 4, - "else": 1, - "sloc": 3, - "schunksize": 2, - "splicebuffer": 3, - "table.remove": 1, - "insertpoint": 2, - "#self.bytebuffer": 1, - "_": 2, - "v": 4, - "ipairs": 2, - "outname": 3, - "pd.post": 1, - "in_3_list": 1, - "Shift": 1, - "indexed": 2, - "in_4_list": 1, - "in_5_float": 1, - "in_6_float": 1, - "in_7_list": 1, - "in_8_list": 1 - }, - "M": { - "%": 207, - "zewdAPI": 52, - ";": 1309, - "Enterprise": 5, - "Web": 5, - "Developer": 5, - "run": 2, - "-": 1605, - "time": 9, - "functions": 4, - "and": 59, - "user": 27, - "APIs": 1, - "Product": 2, - "(": 2144, - "Build": 6, - ")": 2152, - "Date": 2, - "Fri": 1, - "Nov": 1, - "|": 171, - "for": 77, - "GT.M": 30, - "m_apache": 3, - "Copyright": 12, - "c": 113, - "M/Gateway": 4, - "Developments": 4, - "Ltd": 4, - "Reigate": 4, - "Surrey": 4, - "UK.": 4, - "All": 4, - "rights": 4, - "reserved.": 4, - "http": 13, - "//www.mgateway.com": 4, - "Email": 4, - "rtweed@mgateway.com": 4, - "This": 26, - "program": 19, - "is": 88, - "free": 15, - "software": 12, - "you": 17, - "can": 20, - "redistribute": 11, - "it": 45, - "and/or": 11, - "modify": 11, - "under": 14, - "the": 223, - "terms": 11, - "of": 84, - "GNU": 33, - "Affero": 33, - "General": 33, - "Public": 33, - "License": 48, - "as": 23, - "published": 11, - "by": 35, - "Free": 11, - "Software": 11, - "Foundation": 11, - "either": 13, - "version": 16, - "or": 50, - "at": 21, - "your": 16, - "option": 12, - "any": 16, - "later": 11, - "version.": 11, - "distributed": 13, - "in": 80, - "hope": 11, - "that": 19, - "will": 23, - "be": 35, - "useful": 11, - "but": 19, - "WITHOUT": 12, - "ANY": 12, - "WARRANTY": 11, - "without": 11, - "even": 12, - "implied": 11, - "warranty": 11, - "MERCHANTABILITY": 11, - "FITNESS": 11, - "FOR": 15, - "A": 12, - "PARTICULAR": 11, - "PURPOSE.": 11, - "See": 15, - "more": 13, - "details.": 12, - "You": 13, - "should": 16, - "have": 21, - "received": 11, - "a": 130, - "copy": 13, - "along": 11, - "with": 45, - "this": 39, - "program.": 9, - "If": 14, - "not": 39, - "see": 26, - "": 11, - ".": 815, - "QUIT": 251, - "_": 127, - "getVersion": 1, - "zewdCompiler": 6, - "date": 1, - "getDate": 1, - "compilePage": 2, - "app": 13, - "page": 12, - "mode": 12, - "technology": 9, - "outputPath": 4, - "multilingual": 4, - "maxLines": 4, - "d": 381, - "g": 228, - "compileAll": 2, - "templatePageName": 2, - "autoTranslate": 2, - "language": 6, - "verbose": 2, - "zewdMgr": 1, - "startSession": 2, - "requestArray": 2, - "serverArray": 1, - "sessionArray": 5, - "filesArray": 1, - "zewdPHP": 8, - ".requestArray": 2, - ".serverArray": 1, - ".sessionArray": 3, - ".filesArray": 1, - "closeSession": 2, - "saveSession": 2, - "endOfPage": 2, - "prePageScript": 2, - "sessid": 146, - "releaseLock": 2, - "tokeniseURL": 2, - "url": 2, - "zewdCompiler16": 5, - "getSessid": 1, - "token": 21, - "i": 465, - "isTokenExpired": 2, - "p": 84, - "zewdSession": 39, - "initialiseSession": 1, - "k": 122, - "deleteSession": 2, - "changeApp": 1, - "appName": 4, - "setSessionValue": 6, - "setRedirect": 1, - "toPage": 1, - "e": 210, - "n": 197, - "path": 4, - "s": 775, - "getRootURL": 1, - "l": 84, - "zewd": 17, - "trace": 24, - "_sessid_": 3, - "_token_": 1, - "_nextPage": 1, - "zcvt": 11, - "nextPage": 1, - "isNextPageTokenValid": 2, - "zewdCompiler13": 10, - "isCSP": 1, - "normaliseTextValue": 1, - "text": 6, - "replaceAll": 11, - "writeLine": 2, - "line": 14, - "CacheTempBuffer": 2, - "j": 67, - "increment": 11, - "w": 127, - "displayOptions": 2, - "fieldName": 5, - "listName": 6, - "escape": 7, - "codeValue": 7, - "name": 121, - "nnvp": 1, - "nvp": 1, - "pos": 33, - "textValue": 6, - "value": 72, - "getSessionValue": 3, - "tr": 13, - "+": 189, - "f": 93, - "o": 51, - "q": 244, - "codeValueEsc": 7, - "textValueEsc": 7, - "htmlOutputEncode": 2, - "zewdAPI2": 5, - "_codeValueEsc_": 1, - "selected": 4, - "translationMode": 1, - "_appName": 1, - "typex": 1, - "type": 2, - "avoid": 1, - "Cache": 3, - "bug": 2, - "getPhraseIndex": 1, - "zewdCompiler5": 1, - "licensed": 1, - "setWarning": 2, - "isTemp": 11, - "setWLDSymbol": 1, - "Duplicate": 1, - "performance": 1, - "also": 4, - "wldAppName": 1, - "wldName": 1, - "wldSessid": 1, - "zzname": 1, - "zv": 6, - "[": 54, - "extcErr": 1, - "mess": 3, - "namespace": 1, - "zt": 20, - "valueErr": 1, - "exportCustomTags": 2, - "tagList": 1, - "filepath": 10, - ".tagList": 1, - "exportAllCustomTags": 2, - "importCustomTags": 2, - "filePath": 2, - "zewdForm": 1, - "stripSpaces": 6, - "np": 17, - "obj": 6, - "prop": 6, - "setSessionObject": 3, - "allowJSONAccess": 1, - "sessionName": 30, - "access": 21, - "disallowJSONAccess": 1, - "JSONAccess": 1, - "existsInSession": 2, - "existsInSessionArray": 2, - "p1": 5, - "p2": 10, - "p3": 3, - "p4": 2, - "p5": 2, - "p6": 2, - "p7": 2, - "p8": 2, - "p9": 2, - "p10": 2, - "p11": 2, - "clearSessionArray": 1, - "arrayName": 35, - "setSessionArray": 1, - "itemName": 16, - "itemValue": 7, - "getSessionArray": 1, - "array": 22, - "clearArray": 2, - "set": 98, - "m": 37, - "getSessionArrayErr": 1, - "Come": 1, - "here": 4, - "if": 44, - "error": 62, - "occurred": 2, - "addToSession": 2, - "@name": 4, - "mergeToSession": 1, - "mergeGlobalToSession": 2, - "globalName": 7, - "mergeGlobalFromSession": 2, - "mergeArrayToSession": 1, - "mergeArrayToSessionObject": 2, - ".array": 1, - "mergeArrayFromSession": 1, - "mergeFromSession": 1, - "deleteFromSession": 1, - "deleteFromSessionObject": 1, - "sessionNameExists": 1, - "getSessionArrayValue": 2, - "subscript": 7, - "exists": 6, - ".exists": 1, - "sessionArrayValueExists": 2, - "deleteSessionArrayValue": 2, - "Objects": 1, - "objectName": 13, - "propertyName": 3, - "propertyValue": 5, - "comma": 3, - "x": 96, - "replace": 27, - "objectName_": 2, - "_propertyName": 2, - "_propertyName_": 2, - "_propertyValue_": 1, - "_p": 1, - "quoted": 1, - "string": 50, - "FromStr": 6, - "S": 99, - "ToStr": 4, - "InText": 4, - "old": 3, - "new": 15, - "ok": 14, - "removeDocument": 1, - "zewdDOM": 3, - "instanceName": 2, - "clearXMLIndex": 1, - "zewdSchemaForm": 1, - "closeDOM": 1, - "makeTokenString": 1, - "length": 7, - "token_": 1, - "r": 88, - "makeString": 3, - "char": 9, - "len": 8, - "create": 6, - "characters": 8, - "str": 15, - "convertDateToSeconds": 1, - "hdate": 7, - "Q": 58, - "hdate*86400": 1, - "convertSecondsToDate": 1, - "secs": 2, - "secs#86400": 1, - "getTokenExpiry": 2, - "h*86400": 1, - "h": 39, - "randChar": 1, - "R": 2, - "lowerCase": 2, - "stripLeadingSpaces": 2, - "stripTrailingSpaces": 2, - "d1": 7, - "zd": 1, - "yy": 19, - "dd": 4, - "I": 43, - "<10>": 1, - "dd=": 2, - "mm=": 3, - "1": 74, - "d1=": 1, - "2": 14, - "p1=": 1, - "mm": 7, - "p2=": 1, - "yy=": 1, - "3": 6, - "dd_": 1, - "mm_": 1, - "inetTime": 1, - "Decode": 1, - "Internet": 1, - "Format": 1, - "Time": 1, - "from": 16, - "H": 1, - "format": 2, - "Offset": 1, - "relative": 1, - "to": 74, - "GMT": 1, - "eg": 3, - "hh": 4, - "ss": 4, - "<": 20, - "_hh": 1, - "time#3600": 1, - "_mm": 1, - "time#60": 1, - "_ss": 2, - "hh_": 1, - "_mm_": 1, - "openNewFile": 2, - "openFile": 2, - "openDOM": 2, - "&": 28, - "#39": 1, - "<\",\"<\")>": 1, - "string=": 1, - "gt": 1, - "amp": 1, - "HTML": 1, - "quot": 2, - "stop": 20, - "no": 54, - "no2": 1, - "p1_c_p2": 1, - "getIP": 2, - "Get": 2, - "own": 2, - "IP": 1, - "address": 1, - "ajaxErrorRedirect": 2, - "classExport": 2, - "className": 2, - "methods": 2, - ".methods": 1, - "strx": 2, - "disableEwdMgr": 1, - "enableEwdMgr": 1, - "enableWLDAccess": 1, - "disableWLDAccess": 1, - "isSSOValid": 2, - "sso": 2, - "username": 8, - "password": 8, - "zewdMgrAjax2": 1, - "uniqueId": 1, - "nodeOID": 2, - "filename": 2, - "linkToParentSession": 2, - "zewdCompiler20": 1, - "exportToGTM": 1, - "routine": 6, - "zewdDemo": 1, - "Tutorial": 1, - "Wed": 1, - "Apr": 1, - "getLanguage": 1, - "getRequestValue": 1, - "login": 1, - "getTextValue": 4, - "getPasswordValue": 2, - "_username_": 1, - "_password": 1, - "logine": 1, - "message": 8, - "textid": 1, - "errorMessage": 1, - "ewdDemo": 8, - "clearList": 2, - "appendToList": 4, - "addUsername": 1, - "newUsername": 5, - "newUsername_": 1, - "setTextValue": 4, - "testValue": 1, - "pass": 24, - "getSelectValue": 3, - "_user": 1, - "getPassword": 1, - "setPassword": 1, - "getObjDetails": 1, - "data": 43, - "_user_": 1, - "_data": 2, - "setRadioOn": 2, - "initialiseCheckbox": 2, - "setCheckboxOn": 3, - "createLanguageList": 1, - "setMultipleSelectOn": 2, - "clearTextArea": 2, - "textarea": 2, - "createTextArea": 1, - ".textarea": 1, - "userType": 4, - "setMultipleSelectValues": 1, - ".selected": 1, - "testField3": 3, - ".value": 1, - "testField2": 1, - "field3": 1, - "must": 8, - "null": 6, - "dateTime": 1, - "start": 26, - "student": 14, - "zwrite": 1, - "write": 59, - "order": 11, - "do": 15, - "quit": 30, - "file": 10, - "part": 3, - "DataBallet.": 4, - "C": 9, - "Laurent": 2, - "Parenteau": 2, - "": 2, - "DataBallet": 4, - "encode": 1, - "Return": 1, - "base64": 6, - "URL": 2, - "Filename": 1, - "safe": 3, - "alphabet": 2, - "RFC": 1, - "todrop": 2, - "Populate": 1, - "values": 4, - "on": 17, - "first": 10, - "use": 5, - "only.": 1, - "zextract": 3, - "zlength": 3, - "Comment": 1, - "comment": 4, - "block": 1, - "comments": 5, - "always": 2, - "semicolon": 1, - "next": 1, - "while": 4, - "legal": 1, - "blank": 1, - "whitespace": 2, - "alone": 1, - "valid": 2, - "**": 4, - "Comments": 1, - "graphic": 3, - "character": 5, - "such": 1, - "@#": 1, - "*": 6, - "{": 5, - "}": 5, - "]": 15, - "/": 3, - "space": 1, - "considered": 1, - "though": 1, - "t": 12, - "it.": 2, - "ASCII": 2, - "whose": 1, - "numeric": 8, - "code": 29, - "above": 3, - "below": 1, - "are": 14, - "NOT": 2, - "allowed": 18, - "routine.": 1, - "multiple": 1, - "semicolons": 1, - "okay": 1, - "has": 7, - "tag": 2, - "after": 3, - "does": 1, - "command": 11, - "Tag1": 1, - "Tags": 2, - "an": 14, - "uppercase": 2, - "lowercase": 1, - "alphabetic": 2, - "series": 2, - "HELO": 1, - "most": 1, - "common": 1, - "label": 5, - "LABEL": 1, - "followed": 1, - "directly": 1, - "open": 1, - "parenthesis": 2, - "formal": 1, - "list": 1, - "variables": 3, - "close": 1, - "ANOTHER": 1, - "X": 19, - "Normally": 1, - "subroutine": 1, - "would": 2, - "ended": 1, - "we": 1, - "taking": 1, - "advantage": 1, - "rule": 1, - "END": 1, - "implicit": 1, - "Digest": 2, - "Extension": 9, - "Piotr": 7, - "Koper": 7, - "": 7, - "trademark": 2, - "Fidelity": 2, - "Information": 2, - "Services": 2, - "Inc.": 2, - "//sourceforge.net/projects/fis": 2, - "gtm/": 2, - "simple": 2, - "OpenSSL": 3, - "based": 1, - "digest": 19, - "extension": 3, - "rewrite": 1, - "EVP_DigestInit": 1, - "usage": 3, - "example": 5, - "additional": 5, - "M": 24, - "wrapper.": 1, - "//www.openssl.org/docs/crypto/EVP_DigestInit.html": 1, - "The": 11, - "return": 7, - "digest.init": 3, - "usually": 1, - "when": 11, - "invalid": 4, - "algorithm": 1, - "was": 5, - "specification.": 1, - "Anyway": 1, - "properly": 1, - "used": 6, - "never": 4, - "fail.": 1, - "Please": 2, - "feel": 2, - "contact": 2, - "me": 2, - "questions": 2, - "returns": 7, - "HEX": 1, - "all": 8, - "one": 5, - "digest.update": 2, - ".c": 2, - ".m": 11, - "digest.final": 2, - ".d": 1, - "init": 6, - "alg": 3, - "context": 1, - "handler": 9, - "try": 1, - "etc": 1, - "returned": 1, - "occurs": 1, - "e.g.": 2, - "unknown": 1, - "update": 1, - "ctx": 4, - "msg": 6, - "updates": 1, - ".ctx": 2, - ".msg": 1, - "final": 1, - "hex": 1, - "encoded": 8, - "frees": 1, - "memory": 1, - "allocated": 1, - ".digest": 1, - "algorithms": 1, - "availability": 1, - "depends": 1, - "libcrypto": 1, - "configuration": 1, - "md4": 1, - "md5": 2, - "sha": 1, - "sha1": 1, - "sha224": 1, - "sha256": 1, - "sha512": 1, - "dss1": 1, - "ripemd160": 1, - "These": 2, - "two": 2, - "routines": 6, - "illustrate": 1, - "dynamic": 1, - "scope": 1, - "triangle1": 1, - "sum": 15, - "main2": 1, - "y": 33, - "triangle2": 1, - "compute": 2, - "Fibonacci": 1, - "b": 64, - "term": 10, - "start1": 2, - "entry": 5, - "start2": 1, - "function": 6, - "computes": 1, - "factorial": 3, - "f*n": 1, - "main": 1, - "GMRGPNB0": 1, - "CISC/JH/RM": 1, - "NARRATIVE": 1, - "BUILDER": 1, - "TEXT": 5, - "GENERATOR": 1, - "cont.": 1, - "/20/91": 1, - "Text": 1, - "Generator": 1, - "Jan": 1, - "ENTRY": 2, - "WITH": 1, - "GMRGA": 1, - "SET": 3, - "TO": 6, - "POINT": 1, - "AT": 1, - "WHICH": 1, - "WANT": 1, - "START": 1, - "BUILDING": 1, - "GMRGE0": 11, - "GMRGADD": 4, - "D": 64, - "GMR": 6, - "GMRGA0": 11, - "GMRGPDA": 9, - "GMRGCSW": 2, - "NOW": 1, - "DTC": 1, - "GMRGB0": 9, - "O": 24, - "GMRGST": 6, - "GMRGPDT": 2, - "STAT": 8, - "GMRGRUT0": 3, - "GMRGF0": 3, - "GMRGSTAT": 8, - "P": 68, - "_GMRGB0_": 2, - "GMRD": 6, - "GMRGSSW": 3, - "SNT": 1, - "GMRGPNB1": 1, - "GMRGNAR": 8, - "GMRGPAR_": 2, - "_GMRGSPC_": 3, - "_GMRGRM": 2, - "_GMRGE0": 1, - "STORETXT": 1, - "GMRGRUT1": 1, - "GMRGSPC": 3, - "F": 10, - "GMRGD0": 7, - "ALIST": 1, - "G": 40, - "TMP": 26, - "J": 38, - "GMRGPLVL": 6, - "GMRGA0_": 1, - "_GMRGD0_": 1, - "_GMRGSSW_": 1, - "_GMRGADD": 1, - "GMRGI0": 6, - "label1": 1, - "if1": 2, - "statement": 3, - "if2": 2, - "statements": 1, - "contrasted": 1, - "": 3, - "variable": 8, - "a=": 3, - "smaller": 3, - "than": 4, - "b=": 4, - "if3": 1, - "else": 7, - "clause": 2, - "if4": 1, - "bodies": 1, - "exercise": 1, - "car": 14, - "@": 8, - "MD5": 6, - "Implementation": 1, - "It": 2, - "works": 1, - "ZCHSET": 2, - "please": 1, - "don": 1, - "only": 9, - "joke.": 1, - "Serves": 1, - "well": 2, - "reverse": 1, - "engineering": 1, - "obtaining": 1, - "boolean": 2, - "integer": 1, - "addition": 1, - "modulo": 1, - "division.": 1, - "//en.wikipedia.org/wiki/MD5": 1, - "#64": 1, - "msg_": 1, - "_m_": 1, - "n64": 2, - "*8": 2, - "read": 2, - ".p": 1, - "..": 28, - "...": 6, - "*i": 3, - "#16": 3, - "xor": 4, - "rotate": 5, - "#4294967296": 6, - "n32h": 5, - "bit": 5, - "#2": 1, - "*2147483648": 2, - "a#2": 1, - "b#2": 1, - ".a": 1, - ".b": 1, - "rol": 1, - "a*": 1, - "**n": 1, - "c#4294967296": 1, - "*n": 1, - "n#256": 1, - "n#16": 2, - "MDB": 60, - "M/DB": 2, - "Mumps": 1, - "Emulation": 1, - "Amazon": 1, - "SimpleDB": 1, - "buildDate": 1, - "indexLength": 10, - "Note": 2, - "keyId": 108, - "been": 4, - "tested": 1, - "these": 1, - "called": 8, - "To": 2, - "Initialise": 2, - "service": 1, - "//192.168.1.xxx/mdb/test.mgwsi": 1, - "Action": 2, - "addUser": 2, - "userKeyId": 6, - "userSecretKey": 6, - "requestId": 17, - "boxUsage": 11, - "startTime": 21, - ".startTime": 5, - "MDBUAF": 2, - "end": 33, - ".boxUsage": 22, - "createDomain": 1, - "domainName": 38, - "dn": 4, - "dnx": 3, - "id": 33, - "noOfDomains": 12, - "MDBConfig": 1, - "getDomainId": 3, - "found": 7, - "namex": 8, - "buildItemNameIndex": 2, - "domainId": 53, - "itemId": 41, - "itemValuex": 3, - "countDomains": 2, - "key": 22, - "deleteDomain": 2, - "listDomains": 1, - "maxNoOfDomains": 2, - "nextToken": 7, - "domainList": 3, - "fullName": 3, - "decodeBase64": 1, - "encodeBase64": 1, - "itemExists": 1, - "getItemId": 2, - "getAttributeValueId": 3, - "attribId": 36, - "valuex": 13, - "putAttributes": 2, - "attributes": 32, - "valueId": 16, - "xvalue": 4, - "add": 5, - "Item": 1, - "Domain": 1, - "itemNamex": 4, - "parseJSON": 1, - "zmwire": 53, - "attributesJSON": 1, - ".attributes": 5, - "attribute": 14, - "getAttributeId": 2, - "domain": 1, - "Not": 1, - "same": 2, - "remove": 6, - "existing": 2, - "now": 1, - "name/value": 2, - "pair": 1, - "getAttributes": 2, - "suppressBoxUsage": 1, - "attrNo": 9, - "valueNo": 6, - "delete": 2, - "item": 2, - "associated": 1, - "queryIndex": 1, - "records": 2, - "specified": 4, - "pairs": 2, - "vno": 2, - "left": 5, - "completely": 3, - "references": 1, - "maxNoOfItems": 3, - "itemList": 12, - "session": 1, - "identifier": 1, - "stored": 1, - "queryExpression": 16, - "relink": 1, - "zewdGTMRuntime": 1, - "CGIEVAR": 1, - "cgi": 1, - "unescName": 5, - "urlDecode": 2, - "KEY": 36, - "response": 29, - "WebLink": 1, - "point": 2, - "action": 15, - "AWSAcessKeyId": 1, - "db": 9, - "hash": 1, - "itemsAndAttrs": 2, - "secretKey": 1, - "signatureMethod": 2, - "signatureVersion": 3, - "stringToSign": 2, - "rltKey": 2, - "_action_": 2, - "h_": 3, - "mdbKey": 2, - "errorResponse": 9, - "initialise": 3, - ".requestId": 7, - "createResponse": 4, - "installMDBM": 1, - "authenticate": 1, - "MDBSession": 1, - "createResponseStringToSign": 1, - "Security": 1, - "OK": 6, - "_db": 1, - "MDBAPI": 1, - "lineNo": 19, - "CacheTempEWD": 16, - "_db_": 1, - "db_": 1, - "_action": 1, - "resp": 5, - "metaData": 1, - "domainMetadata": 1, - ".metaData": 1, - "paramName": 8, - "paramValue": 5, - "_i_": 5, - "Query": 1, - "DomainName": 2, - "QueryExpression": 2, - "MaxNumberOfItems": 2, - "NextToken": 3, - "QueryWithAttributes": 1, - "AttributeName.": 2, - "Select": 2, - "SelectExpression": 1, - "entering": 1, - "runSelect.": 1, - "selectExpression": 3, - "finished": 1, - "runSelect": 3, - "count": 18, - "select": 3, - "where": 6, - "limit": 14, - "asc": 1, - "inValue": 6, - "expr": 18, - "rel": 2, - "itemStack": 3, - "between": 2, - "<=\">": 1, - "lastWord=": 7, - "inAttr=": 5, - "expr=": 10, - "thisWord=": 7, - "inAttr": 2, - "c=": 28, - "queryExpression=": 4, - "_queryExpression": 2, - "4": 5, - "isNull": 1, - "5": 1, - "8": 1, - "isNotNull": 1, - "9": 1, - "offset": 6, - "prevName": 1, - "np=": 1, - "diffNames": 6, - "_term": 3, - "expr_": 1, - "_orderBy": 1, - "runQuery": 2, - ".itemList": 4, - "escVals": 1, - "str_c": 2, - "_x_": 1, - "query": 4, - "orderBy": 1, - "_query": 1, - "parseSelect": 1, - ".domainName": 2, - ".queryExpression": 1, - ".orderBy": 1, - ".limit": 1, - "executeSelect": 1, - ".itemStack": 1, - "***": 2, - "listCopy": 3, - "N.N": 12, - "N.N1": 4, - "externalSelect": 2, - "json": 9, - "_keyId_": 1, - "_selectExpression": 1, - "spaces": 3, - "string_spaces": 1, - "test": 6, - "miles": 4, - "gallons": 4, - "miles/gallons": 1, - "computepesimist": 1, - "miles/": 1, - "computeoptimist": 1, - "/gallons": 1, - "Mumtris": 3, - "tetris": 1, - "game": 1, - "MUMPS": 1, - "fun.": 1, - "Resize": 1, - "terminal": 2, - "maximize": 1, - "PuTTY": 1, - "window": 1, - "restart": 3, - "so": 4, - "report": 1, - "true": 2, - "size": 3, - "mumtris.": 1, - "Try": 2, - "setting": 3, - "ansi": 2, - "compatible": 1, - "cursor": 1, - "positioning.": 1, - "NOTICE": 1, - "uses": 1, - "making": 1, - "delays": 1, - "lower": 1, - "s.": 1, - "That": 1, - "means": 2, - "CPU": 1, - "fall": 5, - "lock": 2, - "clear": 6, - "change": 6, - "preview": 3, - "over": 2, - "exit": 3, - "short": 1, - "circuit": 1, - "redraw": 3, - "timeout": 1, - "harddrop": 1, - "other": 1, - "ex": 5, - "hd": 3, - "*c": 1, - "<0&'d>": 1, - "i=": 14, - "st": 6, - "t10m": 1, - "0": 23, - "<0>": 2, - "q=": 6, - "d=": 1, - "zb": 2, - "right": 3, - "fl=": 1, - "gr=": 1, - "hl": 2, - "help": 2, - "drop": 2, - "hd=": 1, - "matrix": 2, - "stack": 8, - "draw": 3, - "ticks": 2, - "h=": 2, - "1000000000": 1, - "e=": 1, - "t10m=": 1, - "100": 2, - "n=": 1, - "ne=": 1, - "x=": 5, - "y=": 3, - "r=": 3, - "collision": 6, - "score": 5, - "k=": 1, - "j=": 4, - "<1))))>": 1, - "800": 1, - "200": 1, - "lv": 5, - "lc=": 1, - "10": 1, - "lc": 3, - "mt_": 2, - "cls": 6, - ".s": 5, - "dh/2": 6, - "dw/2": 6, - "*s": 4, - "u": 6, - "echo": 1, - "intro": 1, - "workaround": 1, - "ANSI": 1, - "driver": 1, - "NL": 1, - "some": 1, - "place": 9, - "clearscreen": 1, - "N": 19, - "h/2": 3, - "*w/2": 3, - "fill": 3, - "fl": 2, - "*x": 1, - "mx": 4, - "my": 5, - "step": 8, - "**lv*sb": 1, - "*lv": 1, - "sc": 3, - "ne": 2, - "gr": 1, - "w*3": 1, - "dev": 1, - "zsh": 1, - "dw": 1, - "dh": 1, - "elements": 3, - "elemId": 3, - "rotateVersions": 1, - "rotateVersion": 2, - "bottom": 1, - "coordinate": 1, - "____": 1, - "__": 2, - "||": 1, - "ax": 2, - "bx": 2, - "cx": 2, - "ay": 2, - "cy": 2, - "sumx": 3, - "sqrx": 3, - "sumxy": 5, - "x*x": 1, - "x*y": 1, - "PCRE": 23, - "tries": 1, - "deliver": 1, - "best": 2, - "possible": 5, - "interface": 1, - "world": 4, - "providing": 1, - "support": 3, - "arrays": 1, - "stringified": 2, - "parameter": 1, - "names": 3, - "simplified": 1, - "API": 7, - "locales": 2, - "exceptions": 1, - "Perl5": 1, - "Global": 8, - "Match.": 1, - "pcreexamples.m": 2, - "comprehensive": 1, - "examples": 4, - "pcre": 59, - "beginner": 1, - "level": 5, - "tips": 1, - "match": 41, - "limits": 6, - "exception": 12, - "handling": 2, - "UTF": 17, - "GT.M.": 1, - "out": 2, - "known": 2, - "book": 1, - "regular": 1, - "expressions": 1, - "//regex.info/": 1, - "For": 3, - "information": 1, - "//pcre.org/": 1, - "Initial": 2, - "release": 2, - "pkoper": 2, - "pcre.version": 1, - "config": 3, - "case": 7, - "insensitive": 7, - "protect": 11, - "erropt": 6, - "isstring": 5, - "pcre.config": 1, - ".name": 1, - ".erropt": 3, - ".isstring": 1, - ".n": 20, - "ec": 10, - "compile": 14, - "pattern": 21, - "options": 45, - "locale": 24, - "mlimit": 20, - "reclimit": 19, - "optional": 16, - "joined": 3, - "Unix": 1, - "pcre_maketables": 2, - "cases": 1, - "undefined": 1, - "environment": 7, - "defined": 2, - "LANG": 4, - "LC_*": 1, - "output": 49, - "Debian": 2, - "tip": 1, - "dpkg": 1, - "reconfigure": 1, - "enable": 1, - "system": 1, - "wide": 1, - "number": 5, - "internal": 3, - "matching": 4, - "calls": 1, - "pcre_exec": 4, - "execution": 2, - "manual": 2, - "details": 5, - "depth": 1, - "recursion": 1, - "calling": 2, - "ref": 41, - "err": 4, - "erroffset": 3, - "pcre.compile": 1, - ".pattern": 3, - ".ref": 13, - ".err": 1, - ".erroffset": 1, - "exec": 4, - "subject": 24, - "startoffset": 3, - "octets": 2, - "starts": 1, - "like": 4, - "chars": 3, - "pcre.exec": 2, - ".subject": 3, - "zl": 7, - "ec=": 7, - "ovector": 25, - "element": 1, - "code=": 4, - "ovecsize": 5, - "fullinfo": 3, - "OPTIONS": 2, - "SIZE": 1, - "CAPTURECOUNT": 1, - "BACKREFMAX": 1, - "FIRSTBYTE": 1, - "FIRSTTABLE": 1, - "LASTLITERAL": 1, - "NAMEENTRYSIZE": 1, - "NAMECOUNT": 1, - "STUDYSIZE": 1, - "OKPARTIAL": 1, - "JCHANGED": 1, - "HASCRORLF": 1, - "MINLENGTH": 1, - "JIT": 1, - "JITSIZE": 1, - "NAME": 3, - "nametable": 4, - "index": 1, - "indexed": 4, - "substring": 1, - "begin": 18, - "begin=": 3, - "end=": 4, - "contains": 2, - "octet": 4, - "UNICODE": 1, - "ze": 8, - "begin_": 1, - "_end": 1, - "store": 6, - "stores": 1, - "captured": 6, - "key=": 2, - "gstore": 3, - "round": 12, - "byref": 5, - "global": 26, - "ref=": 3, - "l=": 2, - "capture": 10, - "indexes": 1, - "extended": 1, - "NAMED_ONLY": 2, - "named": 12, - "groups": 5, - "OVECTOR": 2, - "namedonly": 9, - "options=": 4, - "o=": 12, - "namedonly=": 2, - "ovector=": 2, - "NO_AUTO_CAPTURE": 2, - "_capture_": 2, - "matches": 10, - "s=": 4, - "_s_": 1, - "GROUPED": 1, - "group": 4, - "result": 3, - "patterns": 3, - "pcredemo": 1, - "pcreccp": 1, - "cc": 1, - "procedure": 2, - "Perl": 1, - "utf8": 2, - "crlf": 6, - "empty": 7, - "skip": 6, - "determine": 1, - "them": 1, - "before": 2, - "byref=": 2, - "check": 2, - "UTF8": 2, - "double": 1, - "utf8=": 1, - "crlf=": 3, - "NL_CRLF": 1, - "NL_ANY": 1, - "NL_ANYCRLF": 1, - "none": 1, - "build": 2, - "NEWLINE": 1, - ".start": 1, - "unwind": 1, - "call": 1, - "optimize": 1, - "leave": 1, - "advance": 1, - "LF": 1, - "CR": 1, - "CRLF": 1, - "middle": 1, - ".i": 2, - ".match": 2, - ".round": 2, - ".byref": 2, - ".ovector": 2, - "subst": 3, - "last": 4, - "occurrences": 1, - "matched": 1, - "back": 4, - "th": 3, - "replaced": 1, - "substitution": 2, - "begins": 1, - "substituted": 2, - "defaults": 3, - "ends": 1, - "backref": 1, - "boffset": 1, - "prepare": 1, - "reference": 2, - ".subst": 1, - ".backref": 1, - "silently": 1, - "zco": 1, - "": 1, - "s/": 6, - "b*": 7, - "/Xy/g": 6, - "print": 8, - "aa": 9, - "et": 4, - "direct": 3, - "take": 1, - "default": 6, - "setup": 3, - "trap": 10, - "source": 3, - "location": 5, - "argument": 1, - "@ref": 2, - "E": 12, - "COMPILE": 2, - "meaning": 1, - "zs": 2, - "re": 2, - "raise": 3, - "XC": 1, - "specific": 3, - "U16384": 1, - "U16385": 1, - "U16386": 1, - "U16387": 1, - "U16388": 2, - "U16389": 1, - "U16390": 1, - "U16391": 1, - "U16392": 2, - "U16393": 1, - "NOTES": 1, - "U16401": 2, - "raised": 2, - "i.e.": 3, - "NOMATCH": 2, - "ever": 1, - "uncommon": 1, - "situation": 1, - "too": 1, - "small": 1, - "considering": 1, - "controlled": 1, - "U16402": 1, - "U16403": 1, - "U16404": 1, - "U16405": 1, - "U16406": 1, - "U16407": 1, - "U16408": 1, - "U16409": 1, - "U16410": 1, - "U16411": 1, - "U16412": 1, - "U16414": 1, - "U16415": 1, - "U16416": 1, - "U16417": 1, - "U16418": 1, - "U16419": 1, - "U16420": 1, - "U16421": 1, - "U16423": 1, - "U16424": 1, - "U16425": 1, - "U16426": 1, - "U16427": 1, - "Examples": 4, - "pcre.m": 1, - "parameters": 1, - "pcreexamples": 32, - "shining": 1, - "Test": 1, - "Simple": 2, - "zwr": 17, - "Match": 4, - "grouped": 2, - "Just": 1, - "Change": 2, - "word": 3, - "Escape": 1, - "sequence": 1, - "More": 1, - "Low": 1, - "api": 1, - "Setup": 1, - "myexception2": 2, - "st_": 1, - "zl_": 2, - "Compile": 2, - ".options": 1, - "Run": 1, - ".offset": 1, - "used.": 2, - "strings": 1, - "submitted": 1, - "exact": 1, - "usable": 1, - "integers": 1, - "way": 1, - "i*2": 3, - "what": 2, - "/mg": 2, - "aaa": 1, - "nbb": 1, - ".*": 1, - "discover": 1, - "stackusage": 3, - "Locale": 5, - "Support": 1, - "Polish": 1, - "I18N": 2, - "PCRE.": 1, - "Polish.": 1, - "second": 1, - "letter": 1, - "": 1, - "which": 4, - "ISO8859": 1, - "//en.wikipedia.org/wiki/Polish_code_pages": 1, - "complete": 1, - "listing": 1, - "CHAR": 1, - "different": 3, - "modes": 1, - "In": 1, - "probably": 1, - "expected": 1, - "working": 1, - "single": 2, - "ISO": 3, - "chars.": 1, - "Use": 1, - "zch": 7, - "prepared": 1, - "GTM": 8, - "BADCHAR": 1, - "errors.": 1, - "Also": 1, - "others": 1, - "might": 1, - "expected.": 1, - "POSIX": 1, - "localization": 1, - "nolocale": 2, - "zchset": 2, - "isolocale": 2, - "utflocale": 2, - "LC_CTYPE": 1, - "Set": 2, - "obtain": 2, - "results.": 1, - "envlocale": 2, - "ztrnlnm": 2, - "Notes": 1, - "Enabling": 1, - "native": 1, - "requires": 1, - "libicu": 2, - "gtm_chset": 1, - "gtm_icu_version": 1, - "recompiled": 1, - "object": 4, - "files": 4, - "Instructions": 1, - "Install": 1, - "libicu48": 2, - "apt": 1, - "get": 2, - "install": 1, - "append": 1, - "chown": 1, - "gtm": 1, - "/opt/gtm": 1, - "Startup": 1, - "errors": 6, - "INVOBJ": 1, - "Cannot": 1, - "ZLINK": 1, - "due": 1, - "unexpected": 1, - "Object": 1, - "compiled": 1, - "CHSET": 1, - "written": 3, - "startup": 1, - "correct": 1, - "above.": 1, - "Limits": 1, - "built": 1, - "recursion.": 1, - "Those": 1, - "prevent": 1, - "engine": 1, - "very": 2, - "long": 2, - "runs": 2, - "especially": 1, - "there": 2, - "paths": 2, - "tree": 1, - "checked.": 1, - "Functions": 1, - "using": 4, - "itself": 1, - "allows": 1, - "MATCH_LIMIT": 1, - "MATCH_LIMIT_RECURSION": 1, - "arguments": 1, - "library": 1, - "compilation": 2, - "Example": 1, - "longrun": 3, - "Equal": 1, - "corrected": 1, - "shortrun": 2, - "Enforced": 1, - "enforcedlimit": 2, - "Exception": 2, - "Handling": 1, - "Error": 1, - "conditions": 1, - "handled": 1, - "zc": 1, - "codes": 1, - "labels": 1, - "file.": 1, - "When": 2, - "neither": 1, - "nor": 1, - "within": 1, - "mechanism.": 1, - "depending": 1, - "caller": 1, - "exception.": 1, - "lead": 1, - "writing": 4, - "prompt": 1, - "terminating": 1, - "image.": 1, - "define": 2, - "handlers.": 1, - "Handler": 1, - "No": 17, - "nohandler": 4, - "Pattern": 1, - "failed": 1, - "unmatched": 1, - "parentheses": 1, - "<-->": 1, - "HERE": 1, - "RTSLOC": 2, - "At": 2, - "SETECODE": 1, - "Non": 1, - "assigned": 1, - "ECODE": 1, - "32": 1, - "GT": 1, - "image": 1, - "terminated": 1, - "myexception1": 3, - "zt=": 1, - "mytrap1": 2, - "zg": 2, - "mytrap3": 1, - "DETAILS": 1, - "executed": 1, - "frame": 1, - "called.": 1, - "deeper": 1, - "frames": 1, - "already": 1, - "dropped": 1, - "local": 1, - "available": 1, - "context.": 1, - "Thats": 1, - "why": 1, - "doesn": 1, - "unless": 1, - "cleared.": 1, - "Always": 1, - "done.": 2, - "Execute": 1, - "p5global": 1, - "p5replace": 1, - "p5lf": 1, - "p5nl": 1, - "newline": 1, - "utf8support": 1, - "myexception3": 1, - "contrasting": 1, - "postconditionals": 1, - "IF": 9, - "commands": 1, - "post1": 1, - "postconditional": 3, - "purposely": 4, - "TEST": 16, - "false": 5, - "post2": 1, - "special": 2, - "post": 1, - "condition": 1, - "PRCAAPR": 1, - "WASH": 1, - "ISC@ALTOONA": 1, - "PA/RGY": 1, - "PATIENT": 5, - "ACCOUNT": 1, - "PROFILE": 1, - "CONT": 1, - "/9/94": 1, - "AM": 1, - "V": 2, - "Accounts": 1, - "Receivable": 1, - "**198": 1, - "Mar": 1, - "Per": 1, - "VHA": 1, - "Directive": 1, - "modified.": 1, - "EN": 2, - "PRCATY": 2, - "NEW": 3, - "DIC": 6, - "Y": 26, - "DEBT": 10, - "PRCADB": 5, - "DA": 4, - "PRCA": 14, - "COUNT": 2, - "OUT": 2, - "SEL": 1, - "BILL": 11, - "BAT": 8, - "TRAN": 5, - "DR": 4, - "DXS": 1, - "DTOUT": 2, - "DIROUT": 1, - "DIRUT": 1, - "DUOUT": 1, - "ASK": 3, - "DPTNOFZY": 2, - "DPTNOFZK": 2, - "K": 5, - "DTIME": 1, - "UPPER": 1, - "VALM1": 1, - "RCD": 1, - "DISV": 2, - "DUZ": 3, - "NAM": 1, - "RCFN01": 1, - "COMP": 2, - "EN1": 1, - "PRCAATR": 1, - "Y_": 3, - "PRCADB_": 1, - "HDR": 1, - "PRCAAPR1": 3, - "HDR2": 1, - "DIS": 1, - "STAT1": 2, - "_PRCATY_": 1, - "COMP1": 2, - "RCY": 5, - "COMP2": 2, - "_STAT_": 1, - "_STAT": 1, - "payments": 1, - "_TRAN": 1, - "Keith": 1, - "Lynch": 1, - "p#f": 1, - "PXAI": 1, - "ISL/JVS": 1, - "ISA/KWP": 1, - "ESW": 1, - "PCE": 2, - "DRIVING": 1, - "RTN": 1, - "/20/03": 1, - "am": 1, - "CARE": 1, - "ENCOUNTER": 2, - "**15": 1, - "Aug": 1, - "DATA2PCE": 1, - "PXADATA": 7, - "PXAPKG": 9, - "PXASOURC": 10, - "PXAVISIT": 8, - "PXAUSER": 6, - "PXANOT": 3, - "ERRRET": 2, - "PXAPREDT": 2, - "PXAPROB": 15, - "PXACCNT": 2, - "add/edit/delete": 1, - "PCE.": 1, - "required": 4, - "pointer": 4, - "visit": 3, - "related.": 1, - "then": 2, - "nodes": 1, - "needed": 1, - "lookup/create": 1, - "visit.": 1, - "adding": 1, - "data.": 1, - "displayed": 1, - "screen": 1, - "debugging": 1, - "initial": 1, - "code.": 1, - "passed": 4, - "reference.": 2, - "present": 1, - "PXKERROR": 2, - "caller.": 1, - "want": 1, - "edit": 1, - "Primary": 3, - "Provider": 1, - "moment": 1, - "editing": 2, - "being": 1, - "dangerous": 1, - "dotted": 1, - "name.": 1, - "warnings": 1, - "occur": 1, - "They": 1, - "form": 1, - "general": 1, - "description": 1, - "problem.": 1, - "ERROR1": 1, - "GENERAL": 2, - "ERRORS": 4, - "SUBSCRIPT": 5, - "PASSED": 4, - "IN": 4, - "FIELD": 2, - "FROM": 5, - "WARNING2": 1, - "WARNINGS": 2, - "WARNING3": 1, - "SERVICE": 1, - "CONNECTION": 1, - "REASON": 9, - "ERROR4": 1, - "PROBLEM": 1, - "LIST": 1, - "Returns": 2, - "PFSS": 2, - "Account": 2, - "Reference": 2, - "known.": 1, - "Returned": 1, - "located": 1, - "Order": 1, - "#100": 1, - "process": 3, - "processed": 1, - "could": 1, - "incorrectly": 1, - "VARIABLES": 1, - "NOVSIT": 1, - "PXAK": 20, - "DFN": 1, - "PXAERRF": 3, - "PXADEC": 1, - "PXELAP": 1, - "PXASUB": 2, - "VALQUIET": 2, - "PRIMFND": 7, - "PXAERROR": 1, - "PXAERR": 7, - "PRVDR": 1, - "needs": 1, - "look": 1, - "up": 1, - "passed.": 1, - "@PXADATA@": 8, - "SOR": 1, - "SOURCE": 2, - "PKG2IEN": 1, - "VSIT": 1, - "PXAPIUTL": 2, - "TMPSOURC": 1, - "SAVES": 1, - "CREATES": 1, - "VST": 2, - "VISIT": 3, - "KILL": 1, - "VPTR": 1, - "PXAIVSTV": 1, - "ERR": 2, - "PXAIVST": 1, - "PRV": 1, - "PROVIDER": 1, - "AUPNVSIT": 1, - ".I": 4, - "..S": 7, - "status": 2, - "Secondary": 2, - ".S": 6, - "..I": 2, - "PXADI": 4, - "NODE": 5, - "SCREEN": 2, - "VA": 1, - "EXTERNAL": 2, - "INTERNAL": 2, - "ARRAY": 2, - "PXAICPTV": 1, - "SEND": 1, - "W": 4, - "BLD": 2, - "DIALOG": 4, - ".PXAERR": 3, - "MSG": 2, - "GLOBAL": 1, - "NA": 1, - "PROVDRST": 1, - "Check": 1, - "provider": 1, - "PRVIEN": 14, - "DETS": 7, - "DIQ": 3, - "PRI": 3, - "PRVPRIM": 2, - "AUPNVPRV": 2, - "U": 14, - ".04": 1, - "DIQ1": 1, - "POVPRM": 1, - "POVARR": 1, - "STOP": 1, - "LPXAK": 4, - "ORDX": 14, - "NDX": 7, - "ORDXP": 3, - "DX": 2, - "ICD9": 2, - "AUPNVPOV": 2, - "@POVARR@": 6, - "force": 1, - "originally": 1, - "primary": 1, - "diagnosis": 1, - "flag": 1, - ".F": 2, - "..E": 1, - "...S": 5, - "decode": 1, - "val": 5, - "Decoded": 1, - "Encoded": 1, - "decoded": 3, - "decoded_": 1, - "safechar": 3, - "zchar": 1, - "encoded_c": 1, - "encoded_": 2, - "FUNC": 1, - "DH": 1, - "zascii": 1, - "WVBRNOT": 1, - "HCIOFO/FT": 1, - "JR": 1, - "IHS/ANMC/MWR": 1, - "BROWSE": 1, - "NOTIFICATIONS": 1, - "/30/98": 1, - "WOMEN": 1, - "WVDATE": 8, - "WVENDDT1": 2, - "WVIEN": 13, - "..F": 2, - "WV": 8, - "WVXREF": 1, - "WVDFN": 6, - "SELECTING": 1, - "ONE": 2, - "CASE": 1, - "MANAGER": 1, - "AND": 3, - "THIS": 3, - "DOESN": 1, - "WVE": 2, - "": 2, - "STORE": 3, - "WVA": 2, - "WVBEGDT1": 1, - "NOTIFICATION": 1, - "IS": 3, - "QUEUED.": 1, - "WVB": 4, - "OR": 2, - "OPEN": 1, - "ONLY": 1, - "CLOSED.": 1, - ".Q": 1, - "EP": 4, - "ALREADY": 1, - "LL": 1, - "SORT": 3, - "ABOVE.": 1, - "DATE": 1, - "WVCHRT": 1, - "SSN": 1, - "WVUTL1": 2, - "SSN#": 1, - "WVNAME": 4, - "WVACC": 4, - "ACCESSION#": 1, - "WVSTAT": 1, - "STATUS": 2, - "WVUTL4": 1, - "WVPRIO": 5, - "PRIORITY": 1, - "WVCHRT_U_WVNAME_U_WVDATE_U_WVACC_U_WVSTAT_U_WVPRIO_U_WVIEN": 1, - "WVC": 4, - "COPYGBL": 3, - "COPY": 1, - "MAKE": 1, - "IT": 1, - "FLAT.": 1, - "...F": 1, - "....S": 1, - "DEQUEUE": 1, - "TASKMAN": 1, - "QUEUE": 1, - "OF": 2, - "PRINTOUT.": 1, - "SETVARS": 2, - "WVUTL5": 2, - "WVBRNOT1": 2, - "EXIT": 1, - "FOLLOW": 1, - "CALLED": 1, - "PROCEDURE": 1, - "FOLLOWUP": 1, - "MENU.": 1, - "WVBEGDT": 1, - "DT": 2, - "WVENDDT": 1, - "DEVICE": 1, - "WVBRNOT2": 1, - "WVPOP": 1, - "WVLOOP": 1, - "ZDIOUT1": 1, - "Experimental": 1, - "FileMan": 1, - "host": 2, - "Open": 1, - "Source": 1, - "Electronic": 1, - "Health": 1, - "Record": 1, - "Agent": 1, - "Licensed": 1, - "Apache": 1, - "Version": 1, - "may": 3, - "except": 1, - "compliance": 1, - "License.": 2, - "//www.apache.org/licenses/LICENSE": 1, - "Unless": 1, - "applicable": 1, - "law": 1, - "agreed": 1, - "BASIS": 1, - "WARRANTIES": 1, - "CONDITIONS": 1, - "KIND": 1, - "express": 1, - "implied.": 1, - "governing": 1, - "permissions": 2, - "limitations": 1, - "ASKFILE": 1, - "FILE": 5, - "ASKDIR": 1, - "DIR": 3, - "SAVEFILE": 2, - "Save": 1, - "given": 1, - "directory": 1, - "CHECK": 1, - "FGR": 4, - "_FILE": 1, - "IO": 4, - "DIR_": 1, - "L": 1, - "FILENAME": 1, - "_IO_": 1, - "_P_": 1, - "NM": 1, - "non": 1, - "printing": 1, - "escaped": 1, - "evaluation": 1, - "RHS": 1, - "SET.": 1, - "TODO": 1, - "Caller": 1, - "indentation": 1, - "tab": 1, - "space.": 1, - "M/Wire": 4, - "Protocol": 2, - "Systems": 1, - "By": 1, - "server": 1, - "port": 4, - "systems": 3, - "invoked": 2, - "via": 2, - "xinetd": 2, - "Edit": 1, - "/etc/services": 1, - "mwire": 2, - "/tcp": 1, - "#": 1, - "Service": 1, - "Copy": 2, - "/etc/xinetd.d/mwire": 1, - "/usr/local/gtm/zmwire": 1, - "its": 1, - "executable": 1, - "edited": 1, - "Restart": 1, - "sudo": 1, - "/etc/init.d/xinetd": 1, - "On": 1, - "installed": 1, - "MGWSI": 1, - "provide": 1, - "hashing": 1, - "passwords": 1, - "Alternatively": 1, - "substitute": 1, - "callout": 1, - "choice": 1, - "Daemon": 2, - "running": 1, - "jobbed": 1, - "job": 1, - "zmwireDaemon": 2, - "simply": 1, - "Stop": 1, - "RESJOB": 1, - "mwireVersion": 4, - "mwireDate": 2, - "July": 1, - "_crlf": 22, - "_response_": 4, - "_crlf_response_crlf": 4, - "authNeeded": 6, - "input": 41, - "cleardown": 2, - "zint": 1, - "role": 3, - "loop": 7, - "log": 1, - "halt": 3, - "auth": 2, - "ignore": 12, - "pid": 36, - "monitor": 1, - "input_crlf": 1, - "zsy": 2, - "_pid_": 1, - "_pid": 1, - "monitoroutput": 1, - "logger": 17, - "tot": 2, - "mwireLogger": 3, - "info": 1, - "response_": 1, - "_count": 1, - "setpassword": 1, - "SETPASSWORD": 2, - "secret": 2, - "": 1, - "role=": 1, - "admin": 1, - "newrole": 4, - "getGloRef": 3, - "gloName": 1, - "gloRef": 15, - "nb": 2, - "subs": 8, - "nsp": 1, - "subs_": 2, - "_data_": 3, - "subscripts": 8, - "_value_": 1, - "_error_": 1, - "kill": 3, - "xx": 16, - "method": 2, - "Missing": 5, - "JSON": 7, - "transaction": 6, - "document": 6, - "setJSON": 4, - "GlobalName": 3, - "setGlobal": 1, - "zmwire_null_value": 1, - "Invalid": 1, - "props": 1, - "arr": 2, - "getJSON": 2, - "incr": 1, - "incrbr": 1, - "class": 1, - "##": 2, - "decr": 1, - "decrby": 1, - "direction": 1, - "subscriptValue": 1, - "dataStatus": 1, - "dataValue": 1, - "nextsubscript": 2, - "reverseorder": 1, - "*2": 1, - "queryget": 1, - "xxyy": 2, - "zz": 2, - "getallsubscripts": 1, - "orderall": 1, - "": 3, - "note": 2, - "escaping": 1, - "foo": 2, - "_gloRef": 1, - "@x": 4, - "_crlf_": 1, - "j_": 1, - "params": 10, - "_crlf_resp_crlf": 2, - "_crlf_data_crlf": 2, - "mergeto": 1, - "dataLength": 4, - "keyLength": 6, - "noOfRecs": 6, - "MERGETO": 1, - "myglobal": 1, - "*6": 1, - "hello": 1, - "": 2, - "put": 1, - "top": 1, - "noOfRecs#2": 1, - "noOfRecs/2": 1, - "gloRef1": 2, - "gloRef1_": 2, - "_gloRef1_key_": 1, - "sub": 2, - "literal": 2, - "valquot_value_valquot": 1, - "json_value_": 1, - "subscripts1": 2, - "subx": 3, - "subNo": 1, - "numsub": 1, - "json_": 2, - "removeControlChars": 2, - "zobj1": 1, - "buff": 10, - "parseJSONObject": 2, - ".buff": 2, - "subs2": 6, - "_name_": 1, - "subs2_": 2, - "value_c": 1, - "newString": 4, - "newString_c": 1, - "utfConvert": 1, - "Unescape": 1, - "buf": 4, - "c1": 4, - "buf_c1_": 1 - }, - "Makefile": { - "all": 1, - "hello": 4, - "main.o": 3, - "factorial.o": 3, - "hello.o": 3, - "g": 4, - "+": 8, - "-": 6, - "o": 1, - "main.cpp": 2, - "c": 3, - "factorial.cpp": 2, - "hello.cpp": 2, - "clean": 1, - "rm": 1, - "rf": 1, - "*o": 1, - "SHEBANG#!make": 1, - "%": 1, - "ls": 1, - "l": 1 - }, - "Markdown": { - "Tender": 1 - }, - "Mask": { - "header": 1, - "{": 10, - "img": 1, - ".logo": 1, - "src": 1, - "alt": 1, - "logo": 1, - ";": 3, - "h4": 1, - "if": 1, - "(": 3, - "currentUser": 1, - ")": 3, - ".account": 1, - "a": 1, - "href": 1, - "}": 10, - ".view": 1, - "ul": 1, - "for": 1, - "user": 1, - "index": 1, - "of": 1, - "users": 1, - "li.user": 1, - "data": 1, - "-": 3, - "id": 1, - ".name": 1, - ".count": 1, - ".date": 1, - "countdownComponent": 1, - "input": 1, - "type": 1, - "text": 1, - "dualbind": 1, - "value": 1, - "button": 1, - "x": 2, - "signal": 1, - "h5": 1, - "animation": 1, - "slot": 1, - "@model": 1, - "@next": 1, - "footer": 1, - "bazCompo": 1 - }, - "Mathematica": { - "Get": 1, - "[": 74, - "]": 73, - "Paclet": 1, - "Name": 1, - "-": 8, - "Version": 1, - "MathematicaVersion": 1, - "Description": 1, - "Creator": 1, - "Extensions": 1, - "{": 2, - "Language": 1, - "MainPage": 1, - "}": 2, - "BeginPackage": 1, - ";": 41, - "PossiblyTrueQ": 3, - "usage": 22, - "PossiblyFalseQ": 2, - "PossiblyNonzeroQ": 3, - "Begin": 2, - "expr_": 4, - "Not": 6, - "TrueQ": 4, - "expr": 4, - "End": 2, - "AnyQ": 3, - "AnyElementQ": 4, - "AllQ": 2, - "AllElementQ": 2, - "AnyNonzeroQ": 2, - "AnyPossiblyNonzeroQ": 2, - "RealQ": 3, - "PositiveQ": 3, - "NonnegativeQ": 3, - "PositiveIntegerQ": 3, - "NonnegativeIntegerQ": 4, - "IntegerListQ": 5, - "PositiveIntegerListQ": 3, - "NonnegativeIntegerListQ": 3, - "IntegerOrListQ": 2, - "PositiveIntegerOrListQ": 2, - "NonnegativeIntegerOrListQ": 2, - "SymbolQ": 2, - "SymbolOrNumberQ": 2, - "cond_": 4, - "L_": 5, - "Fold": 3, - "Or": 1, - "False": 4, - "cond": 4, - "/@": 3, - "L": 4, - "Flatten": 1, - "And": 4, - "True": 2, - "SHEBANG#!#!=": 1, - "n_": 5, - "Im": 1, - "n": 8, - "Positive": 2, - "IntegerQ": 3, - "&&": 4, - "input_": 6, - "ListQ": 1, - "input": 11, - "MemberQ": 3, - "IntegerQ/@input": 1, - "||": 4, - "a_": 2, - "Head": 2, - "a": 3, - "Symbol": 2, - "NumericQ": 1, - "EndPackage": 1 - }, - "Matlab": { - "function": 34, - "[": 311, - "dx": 6, - "y": 25, - "]": 311, - "adapting_structural_model": 2, - "(": 1379, - "t": 32, - "x": 46, - "u": 3, - "varargin": 25, - ")": 1380, - "%": 554, - "size": 11, + "Global": 1, + "variables": 6, + "*hypothesis": 1, + "list*": 7, + "*rule": 4, + "*fact": 2, + "Constants": 1, + "defconstant": 2, + "fail": 10, + "nil": 3, + "no": 6, + "bindings": 45, + "lambda": 4, + "mapcar": 2, + "man": 3, + "luis": 1, + "pedro": 1, + "woman": 2, + "mart": 1, + "daniel": 1, + "laura": 1, + "facts": 1, "aux": 3, - "{": 157, - "end": 150, - "}": 157, - ";": 909, - "m": 44, - "zeros": 61, - "b": 12, - "for": 78, - "i": 338, - "if": 52, - "+": 169, - "elseif": 14, - "else": 23, - "display": 10, - "aux.pars": 3, - ".*": 2, - "Yp": 2, - "human": 1, - "aux.timeDelay": 2, - "c1": 5, - "aux.m": 3, - "*": 46, - "aux.b": 3, - "e": 14, - "-": 673, - "c2": 5, - "Yc": 5, - "parallel": 2, - "plant": 4, - "aux.plantFirst": 2, - "aux.plantSecond": 2, - "Ys": 1, - "feedback": 1, - "A": 11, - "B": 9, - "C": 13, - "D": 7, - "tf2ss": 1, - "Ys.num": 1, - "Ys.den": 1, - "average": 1, - "n": 102, - "|": 2, - "&": 4, - "error": 16, - "sum": 2, - "/length": 1, - "bicycle": 7, - "bicycle_state_space": 1, - "speed": 20, - "S": 5, - "dbstack": 1, - "CURRENT_DIRECTORY": 2, - "fileparts": 1, - ".file": 1, - "par": 7, - "par_text_to_struct": 4, - "filesep": 14, - "...": 162, - "whipple_pull_force_abcd": 2, - "states": 7, - "outputs": 10, - "inputs": 14, - "defaultSettings.states": 1, - "defaultSettings.inputs": 1, - "defaultSettings.outputs": 1, - "userSettings": 3, - "varargin_to_structure": 2, - "struct": 1, - "settings": 3, - "overwrite_settings": 2, - "defaultSettings": 3, - "minStates": 2, - "ismember": 15, - "settings.states": 3, - "<": 9, - "keepStates": 2, - "find": 24, - "removeStates": 1, - "row": 6, - "abs": 12, - "col": 5, - "s": 13, - "sprintf": 11, - "removeInputs": 2, - "settings.inputs": 1, - "keepOutputs": 2, - "settings.outputs": 1, - "It": 1, - "is": 7, - "not": 3, - "possible": 1, - "to": 9, - "keep": 1, - "output": 7, - "because": 1, - "it": 1, - "depends": 1, - "on": 13, - "input": 14, - "StateName": 1, - "OutputName": 1, - "InputName": 1, - "x_0": 45, - "linspace": 14, - "vx_0": 37, - "z": 3, - "j": 242, - "*vx_0": 1, - "figure": 17, - "pcolor": 2, - "shading": 3, - "flat": 3, - "name": 4, - "order": 11, - "convert_variable": 1, - "variable": 10, - "coordinates": 6, - "speeds": 21, - "get_variables": 2, - "columns": 4, - "create_ieee_paper_plots": 2, - "data": 27, - "rollData": 8, - "global": 6, - "goldenRatio": 12, - "sqrt": 14, - "/": 59, - "exist": 1, - "mkdir": 1, - "linestyles": 15, - "colors": 13, - "loop_shape_example": 3, - "data.Benchmark.Medium": 2, - "plot_io_roll": 3, - "open_loop_all_bikes": 1, - "handling_all_bikes": 1, - "path_plots": 1, - "var": 3, - "io": 7, - "typ": 3, - "length": 49, - "plot_io": 1, - "phase_portraits": 2, - "eigenvalues": 2, - "bikeData": 2, - "figWidth": 24, - "figHeight": 19, - "set": 43, - "gcf": 17, - "freq": 12, - "hold": 23, - "all": 15, - "closedLoops": 1, - "bikeData.closedLoops": 1, - "bops": 7, - "bodeoptions": 1, - "bops.FreqUnits": 1, - "strcmp": 24, - "gray": 7, - "deltaNum": 2, - "closedLoops.Delta.num": 1, - "deltaDen": 2, - "closedLoops.Delta.den": 1, - "bodeplot": 6, - "tf": 18, - "neuroNum": 2, - "neuroDen": 2, - "whichLines": 3, - "phiDotNum": 2, - "closedLoops.PhiDot.num": 1, - "phiDotDen": 2, - "closedLoops.PhiDot.den": 1, - "closedBode": 3, - "off": 10, - "opts": 4, - "getoptions": 2, - "opts.YLim": 3, - "opts.PhaseMatching": 2, - "opts.PhaseMatchingValue": 2, - "opts.Title.String": 2, - "setoptions": 2, - "lines": 17, - "findobj": 5, - "raise": 19, - "plotAxes": 22, - "curPos1": 4, - "get": 11, - "curPos2": 4, - "xLab": 8, - "legWords": 3, - "closeLeg": 2, - "legend": 7, - "axes": 9, - "db1": 4, - "text": 11, - "db2": 2, - "dArrow1": 2, - "annotation": 13, - "dArrow2": 2, - "dArrow": 2, - "filename": 21, - "pathToFile": 11, - "print": 6, - "fix_ps_linestyle": 6, - "openLoops": 1, - "bikeData.openLoops": 1, - "num": 24, - "openLoops.Phi.num": 1, - "den": 15, - "openLoops.Phi.den": 1, - "openLoops.Psi.num": 1, - "openLoops.Psi.den": 1, - "openLoops.Y.num": 1, - "openLoops.Y.den": 1, - "openBode": 3, - "line": 15, - "wc": 14, - "wShift": 5, - "num2str": 10, - "bikeData.handlingMetric.num": 1, - "bikeData.handlingMetric.den": 1, - "w": 6, - "mag": 4, - "phase": 2, - "bode": 5, - "metricLine": 1, - "plot": 26, - "k": 75, - "Linewidth": 7, - "Color": 13, - "Linestyle": 6, - "Handling": 2, - "Quality": 2, - "Metric": 2, - "Frequency": 2, - "rad/s": 4, - "Level": 6, - "benchmark": 1, - "Handling.eps": 1, - "plots": 4, - "deps2": 1, - "loose": 4, - "PaperOrientation": 3, - "portrait": 3, - "PaperUnits": 3, - "inches": 3, - "PaperPositionMode": 3, - "manual": 3, - "PaperPosition": 3, - "PaperSize": 3, - "rad/sec": 1, - "phi": 13, - "Open": 1, - "Loop": 1, - "Bode": 1, - "Diagrams": 1, - "at": 3, - "m/s": 6, - "Latex": 1, - "type": 4, - "LineStyle": 2, - "LineWidth": 2, - "Location": 2, - "Southwest": 1, - "Fontsize": 4, - "YColor": 2, - "XColor": 1, - "Position": 6, - "Xlabel": 1, - "Units": 1, - "normalized": 1, - "openBode.eps": 1, - "deps2c": 3, - "maxMag": 2, - "max": 9, - "magnitudes": 1, - "area": 1, - "fillColors": 1, - "gca": 8, - "speedNames": 12, - "metricLines": 2, - "bikes": 24, - "data.": 6, - ".": 13, - ".handlingMetric.num": 1, - ".handlingMetric.den": 1, - "chil": 2, - "legLines": 1, - "Hands": 1, - "free": 1, - "@": 1, - "handling.eps": 1, - "f": 13, - "YTick": 1, - "YTickLabel": 1, - "Path": 1, - "Southeast": 1, - "Distance": 1, - "Lateral": 1, - "Deviation": 1, - "paths.eps": 1, - "d": 12, - "like": 1, - "plot.": 1, - "names": 6, - "prettyNames": 3, - "units": 3, - "index": 6, - "fieldnames": 5, - "data.Browser": 1, - "maxValue": 4, - "oneSpeed": 3, - "history": 7, - "oneSpeed.": 3, - "round": 1, - "pad": 10, - "yShift": 16, - "xShift": 3, - "time": 21, - "oneSpeed.time": 2, - "oneSpeed.speed": 2, - "distance": 6, - "xAxis": 12, - "xData": 3, - "textX": 3, - "ylim": 2, - "ticks": 4, - "xlabel": 8, - "xLimits": 6, - "xlim": 8, - "loc": 3, - "l1": 2, - "l2": 2, - "first": 3, - "ylabel": 4, - "box": 4, - "&&": 13, - "x_r": 6, - "y_r": 6, - "w_r": 5, - "h_r": 5, - "rectangle": 2, - "w_r/2": 4, - "h_r/2": 4, - "x_a": 10, - "y_a": 10, - "w_a": 7, - "h_a": 5, - "ax": 15, - "axis": 5, - "rollData.speed": 1, - "rollData.time": 1, - "path": 3, - "rollData.path": 1, - "frontWheel": 3, - "rollData.outputs": 3, - "rollAngle": 4, - "steerAngle": 4, - "rollTorque": 4, - "rollData.inputs": 1, - "subplot": 3, - "h1": 5, - "h2": 5, - "plotyy": 3, - "inset": 3, - "gainChanges": 2, - "loopNames": 4, - "xy": 7, - "xySource": 7, - "xlabels": 2, - "ylabels": 2, - "legends": 3, - "floatSpec": 3, - "twentyPercent": 1, - "generate_data": 5, - "nominalData": 1, - "nominalData.": 2, - "bikeData.": 2, - "twentyPercent.": 2, - "equal": 2, - "leg1": 2, - "bikeData.modelPar.": 1, - "leg2": 2, - "twentyPercent.modelPar.": 1, - "eVals": 5, - "pathToParFile": 2, - "str": 2, - "eigenValues": 1, - "eig": 6, - "real": 3, - "zeroIndices": 3, - "ones": 6, - "maxEvals": 4, - "maxLine": 7, - "minLine": 4, - "min": 1, - "speedInd": 12, - "cross_validation": 1, - "hyper_parameter": 3, - "num_data": 2, - "K": 4, - "indices": 2, - "crossvalind": 1, - "errors": 4, - "test_idx": 4, - "train_idx": 3, - "x_train": 2, - "y_train": 2, - "train": 1, - "x_test": 3, - "y_test": 3, - "calc_cost": 1, - "calc_error": 2, - "mean": 2, - "value": 2, - "isterminal": 2, - "direction": 2, - "mu": 73, - "FIXME": 1, - "from": 2, - "the": 14, - "largest": 1, - "primary": 1, - "clear": 13, - "tic": 7, - "T": 22, - "x_min": 3, - "x_max": 3, - "y_min": 3, - "y_max": 3, - "how": 1, - "many": 1, - "points": 11, - "per": 5, - "one": 3, - "measure": 1, - "unit": 1, - "both": 1, - "in": 8, - "and": 7, - "ds": 1, - "x_res": 7, - "*n": 2, - "y_res": 7, - "grid_x": 3, - "grid_y": 3, - "advected_x": 12, - "advected_y": 12, - "parfor": 5, - "X": 6, - "ode45": 6, - "@dg": 1, - "store": 4, - "advected": 2, - "positions": 2, - "as": 4, - "they": 2, - "would": 2, - "appear": 2, - "coords": 2, - "Compute": 3, - "FTLE": 14, - "sigma": 6, - "compute": 2, - "Jacobian": 3, - "*ds": 4, - "eigenvalue": 2, - "of": 35, - "*phi": 2, - "log": 2, - "lambda_max": 2, - "/abs": 3, - "*T": 3, - "toc": 5, - "field": 2, - "contourf": 2, - "location": 1, - "EastOutside": 1, - "f_x_t": 2, - "inline": 1, - "grid_min": 3, - "grid_max": 3, - "grid_width": 1, - "grid_spacing": 5, - "grid_width/": 1, - "*grid_width/": 4, - "colorbar": 1, - "load_data": 4, - "t0": 6, - "t1": 6, - "t2": 6, - "t3": 1, - "dataPlantOne": 3, - "data.Ts": 6, - "dataAdapting": 3, - "dataPlantTwo": 3, - "guessPlantOne": 4, - "resultPlantOne": 1, - "find_structural_gains": 2, - "yh": 2, - "fit": 6, - "x0": 4, - "compare": 3, - "resultPlantOne.fit": 1, - "guessPlantTwo": 3, - "resultPlantTwo": 1, - "resultPlantTwo.fit": 1, - "kP1": 4, - "resultPlantOne.fit.par": 1, - "kP2": 3, - "resultPlantTwo.fit.par": 1, - "gainSlopeOffset": 6, - "eye": 9, - "this": 2, - "only": 7, - "uses": 1, - "tau": 1, - "through": 1, - "wfs": 1, - "true": 2, - "plantOneSlopeOffset": 3, - "plantTwoSlopeOffset": 3, - "mod": 3, - "idnlgrey": 1, - "pem": 1, - "guess.plantOne": 3, - "guess.plantTwo": 2, - "plantNum.plantOne": 2, - "plantNum.plantTwo": 2, - "sections": 13, - "secData.": 1, - "||": 3, - "guess.": 2, - "result.": 2, - ".fit.par": 1, - "currentGuess": 2, - "warning": 1, - "randomGuess": 1, - "The": 6, - "self": 2, - "validation": 2, - "VAF": 2, - "f.": 2, - "data/": 1, - "results.mat": 1, - "guess": 1, - "plantNum": 1, - "result": 5, - "plots/": 1, - ".png": 1, - "task": 1, - "closed": 1, - "loop": 1, - "system": 2, - "u.": 1, - "gain": 1, - "guesses": 1, - "k1": 4, - "k2": 3, - "k3": 3, - "k4": 4, - "identified": 1, - "gains": 12, - ".vaf": 1, - "Elements": 1, - "grid": 1, - "definition": 2, - "Dimensionless": 1, - "integrating": 1, - "Choice": 2, - "mass": 2, - "parameter": 2, - "Computation": 9, - "Lagrangian": 3, - "Points": 2, - "xl1": 13, - "yl1": 12, - "xl2": 9, - "yl2": 8, - "xl3": 8, - "yl3": 8, - "xl4": 10, - "yl4": 9, - "xl5": 8, - "yl5": 8, - "Lagr": 6, - "initial": 5, - "total": 6, - "energy": 8, - "E_L1": 4, - "Omega": 7, - "C_L1": 3, - "*E_L1": 1, - "Szebehely": 1, - "E": 8, - "Offset": 2, - "Initial": 3, - "conditions": 3, - "range": 2, - "x_0_min": 8, - "x_0_max": 8, - "vx_0_min": 8, - "vx_0_max": 8, - "y_0": 29, - "ndgrid": 2, - "vy_0": 22, - "*E": 2, - "*Omega": 5, - "vx_0.": 2, - "E_cin": 4, - "x_T": 25, - "y_T": 17, - "vx_T": 22, - "vy_T": 12, - "filtro": 15, - "E_T": 11, - "delta_E": 7, - "a": 17, - "matrix": 3, - "numbers": 2, - "integration": 9, - "steps": 2, - "each": 2, - "np": 8, - "number": 2, - "integrated": 5, - "fprintf": 18, - "Energy": 4, - "tolerance": 2, - "setting": 4, - "energy_tol": 6, - "Setting": 1, - "options": 14, - "integrator": 2, - "RelTol": 2, - "AbsTol": 2, - "From": 1, - "Short": 1, - "odeset": 4, - "Parallel": 2, - "equations": 2, - "motion": 2, - "h": 19, - "waitbar": 6, - "r1": 3, - "r2": 3, - "g": 5, - "i/n": 1, - "y_0.": 2, - "./": 1, - "mu./": 1, - "isreal": 8, - "Check": 6, - "velocity": 2, - "positive": 2, - "Kinetic": 2, - "Y": 19, - "@f_reg": 1, - "Saving": 4, - "solutions": 2, - "final": 2, - "difference": 2, - "with": 2, - "conservation": 2, - "position": 2, - "point": 14, - "interesting": 4, - "non": 2, - "sense": 2, - "bad": 4, - "close": 4, - "t_integrazione": 3, - "filtro_1": 12, - "dphi": 12, - "ftle": 10, - "ftle_norm": 1, - "ds_x": 1, - "ds_vx": 1, - "La": 1, - "direzione": 1, - "dello": 1, - "spostamento": 1, - "la": 2, - "decide": 1, - "il": 1, - "denominatore": 1, - "TODO": 1, - "spiegarsi": 1, - "teoricamente": 1, - "come": 1, - "mai": 1, - "matrice": 1, - "pu": 1, - "essere": 1, - "ridotta": 1, - "x2": 1, - "*ds_x": 2, - "*ds_vx": 2, - "Manual": 2, - "visualize": 2, - "*log": 2, - "dphi*dphi": 1, - "tempo": 4, - "integrare": 2, - ".2f": 5, - "calcolare": 2, - "var_": 2, - "_": 2, - "var_xvx_": 2, - "ode00": 2, - "_n": 2, - "save": 2, - "nome": 2, - "Transforming": 1, - "into": 1, - "Hamiltonian": 1, - "variables": 2, - "px_0": 2, - "py_0": 2, - "px_T": 4, - "py_T": 4, - "inf": 1, - "@cr3bp_jac": 1, - "@fH": 1, - "EnergyH": 1, - "t_integr": 1, - "Back": 1, - "Inf": 1, - "_e": 1, - "_H": 1, - "Range": 1, - "E_0": 4, - "C_L1/2": 1, - "Y_0": 4, - "nx": 32, - "nvx": 32, - "dvx": 3, - "ny": 29, - "dy": 5, - "/2": 3, - "ne": 29, - "de": 4, - "e_0": 7, - "Definition": 1, - "arrays": 1, - "In": 1, - "approach": 1, - "useful": 9, - "pints": 1, - "are": 1, - "stored": 1, - "filter": 14, - "l": 64, - "v_y": 3, - "*e_0": 3, - "vx": 2, - "vy": 2, - "Selection": 1, - "Data": 2, - "transfer": 1, - "GPU": 3, - "x_gpu": 3, - "gpuArray": 4, - "y_gpu": 3, - "vx_gpu": 3, - "vy_gpu": 3, - "Integration": 2, - "N": 9, - "x_f": 3, - "y_f": 3, - "vx_f": 3, - "vy_f": 3, - "arrayfun": 2, - "@RKF45_FILE_gpu": 1, - "back": 1, - "CPU": 1, - "memory": 1, - "cleaning": 1, - "gather": 4, - "Construction": 1, - "computation": 2, - "X_T": 4, - "Y_T": 4, - "VX_T": 4, - "VY_T": 3, - "filter_ftle": 11, - "Compute_FILE_gpu": 1, - "Plot": 1, - "results": 1, - "squeeze": 1, - "clc": 1, - "load_bikes": 2, - "e_T": 7, - "Integrate_FILE": 1, - "Integrate": 6, - "Look": 2, - "phisically": 2, - "meaningful": 6, - "meaningless": 2, - "i/nx": 2, - "*Potential": 5, - "ci": 9, - "te": 2, - "ye": 9, - "ie": 2, - "@f": 6, - "Potential": 1, - "delta_e": 3, - "Integrate_FTLE_Gawlick_ell": 1, - "ecc": 2, - "nu": 2, - "ecc*cos": 1, - "@f_ell": 1, - "Consider": 1, - "also": 1, - "negative": 1, - "goodness": 1, - "roots": 3, - "*mu": 6, - "c3": 3, - "lane_change": 1, - "start": 4, - "width": 3, - "slope": 3, - "pathLength": 3, + "unify": 12, + "hypothesis": 10, + "list": 9, + "____________________________________________________________________________": 5, + "FUNCTION": 3, + "FIND": 1, + "RULES": 2, + "COMMENTS": 3, + "Returns": 2, + "rules": 5, + "whose": 1, + "THENs": 1, + "term": 1, + "given": 3, + "": 2, + "satisfy": 1, + "this": 1, + "requirement": 1, + "renamed.": 1, + "EXAMPLES": 2, + "setq": 1, + "renamed": 3, + "rule": 17, + "rename": 1, + "then": 7, + "unless": 3, + "null": 1, + "equal": 4, + "VALUE": 1, + "FROM": 1, + "all": 2, + "solutions": 1, + "found": 5, + "using": 1, + "": 1, + ".": 10, "single": 1, - "double": 1, - "Double": 1, - "lane": 4, - "change": 1, - "needs": 1, - "lane.": 1, - "laneLength": 4, - "startOfSlope": 3, - "endOfSlope": 1, - "<=>": 1, - "1": 1, - "downSlope": 3, - "gains.Benchmark.Slow": 1, - "place": 2, - "holder": 2, - "gains.Browserins.Slow": 1, - "gains.Browser.Slow": 1, - "gains.Pista.Slow": 1, - "gains.Fisher.Slow": 1, - "gains.Yellow.Slow": 1, - "gains.Yellowrev.Slow": 1, - "gains.Benchmark.Medium": 1, - "gains.Browserins.Medium": 1, - "gains.Browser.Medium": 1, - "gains.Pista.Medium": 1, - "gains.Fisher.Medium": 1, - "gains.Yellow.Medium": 1, - "gains.Yellowrev.Medium": 1, - "gains.Benchmark.Fast": 1, - "gains.Browserins.Fast": 1, - "gains.Browser.Fast": 1, - "gains.Pista.Fast": 1, - "gains.Fisher.Fast": 1, - "gains.Yellow.Fast": 1, - "gains.Yellowrev.Fast": 1, - "gains.": 1, - "parser": 1, - "inputParser": 1, - "parser.addRequired": 1, - "parser.addParamValue": 3, - "parser.parse": 1, - "args": 1, - "parser.Results": 1, - "raw": 1, - "load": 1, - "args.directory": 1, - "iddata": 1, - "raw.theta": 1, - "raw.theta_c": 1, - "args.sampleTime": 1, - "args.detrend": 1, - "detrend": 1, - "filtfcn": 2, - "statefcn": 2, - "makeFilter": 1, - "v": 12, - "@iirFilter": 1, - "@getState": 1, - "yn": 2, - "iirFilter": 1, - "xn": 4, - "vOut": 2, - "getState": 1, - "classdef": 1, - "matlab_class": 2, - "properties": 1, - "R": 1, - "G": 1, - "methods": 1, - "obj": 2, - "r": 2, - "obj.R": 2, - "obj.G": 2, - "obj.B": 2, - "disp": 8, - "enumeration": 1, - "red": 1, - "green": 1, - "blue": 1, - "cyan": 1, - "magenta": 1, - "yellow": 1, - "black": 1, - "white": 1, - "ret": 3, - "matlab_function": 5, - "Call": 2, - "which": 2, - "resides": 2, - "same": 2, - "directory": 2, - "value1": 4, - "semicolon": 2, - "mandatory": 2, - "suppresses": 2, - "command": 2, - "line.": 2, - "value2": 4, - "d_mean": 3, - "d_std": 3, - "normalize": 1, - "repmat": 2, - "std": 1, - "d./": 1, - "overrideSettings": 3, - "overrideNames": 2, - "defaultNames": 2, - "notGiven": 5, - "setxor": 1, - "settings.": 1, - "defaultSettings.": 1, - "fid": 7, - "fopen": 2, - "textscan": 1, - "fclose": 2, - "strtrim": 2, - "vals": 2, - "regexp": 1, - "par.": 1, - "str2num": 1, - "choose_plant": 4, - "p": 7, - "Conditions": 1, - "@cross_y": 1, - "ode113": 2, - "RK4": 3, - "fun": 5, - "tspan": 7, - "th": 1, - "Runge": 1, - "Kutta": 1, - "dim": 2, - "while": 1, - "h/2": 2, - "k1*h/2": 1, - "k2*h/2": 1, - "h*k3": 1, - "h/6*": 1, - "*k2": 1, - "*k3": 1, - "arg1": 1, - "arg": 2, - "RK4_par": 1, - "wnm": 11, - "zetanm": 5, - "ss": 3, - "data.modelPar.A": 1, - "data.modelPar.B": 1, - "data.modelPar.C": 1, - "data.modelPar.D": 1, - "bicycle.StateName": 2, - "bicycle.OutputName": 4, - "bicycle.InputName": 2, - "analytic": 3, - "system_state_space": 2, - "numeric": 2, - "data.system.A": 1, - "data.system.B": 1, - "data.system.C": 1, - "data.system.D": 1, - "numeric.StateName": 1, - "data.bicycle.states": 1, - "numeric.InputName": 1, - "data.bicycle.inputs": 1, - "numeric.OutputName": 1, - "data.bicycle.outputs": 1, - "pzplot": 1, - "ss2tf": 2, - "analytic.A": 3, - "analytic.B": 1, - "analytic.C": 1, - "analytic.D": 1, - "mine": 1, - "data.forceTF.PhiDot.num": 1, - "data.forceTF.PhiDot.den": 1, - "numeric.A": 2, - "numeric.B": 1, - "numeric.C": 1, - "numeric.D": 1, - "whipple_pull_force_ABCD": 1, - "bottomRow": 1, - "prod": 3, - "Earth": 2, - "Moon": 2, - "C_star": 1, - "C/2": 1, - "orbit": 1, - "Y0": 6, - "y0": 2, - "vx0": 2, - "vy0": 2, - "l0": 1, - "delta_E0": 1, - "Hill": 1, - "Edgecolor": 1, - "none": 1, - "ok": 2, - "sg": 1, - "sr": 1, - "arguments": 7, - "ischar": 1, - "options.": 1, - "write_gains": 1, - "contents": 1, - "importdata": 1, - "speedsInFile": 5, - "contents.data": 2, - "gainsInFile": 3, - "sameSpeedIndices": 5, - "allGains": 4, - "allSpeeds": 4, - "sort": 1, - "contents.colheaders": 1 - }, - "Max": { - "{": 126, - "}": 126, - "[": 163, - "]": 163, - "max": 1, - "v2": 1, - ";": 39, - "#N": 2, - "vpatcher": 1, - "#P": 33, - "toggle": 1, - "button": 4, - "window": 2, - "setfont": 1, - "Verdana": 1, - "linecount": 1, - "newex": 8, - "r": 1, - "jojo": 2, - "#B": 2, - "color": 2, - "s": 1, - "route": 1, - "append": 1, - "toto": 1, - "%": 1, - "counter": 2, - "#X": 1, - "flags": 1, - "newobj": 1, - "metro": 1, - "t": 2, - "message": 2, - "Goodbye": 1, - "World": 2, - "Hello": 1, - "connect": 13, - "fasten": 1, - "pop": 1 - }, - "MediaWiki": { - "Overview": 1, - "The": 17, - "GDB": 15, - "Tracepoint": 4, - "Analysis": 1, - "feature": 3, - "is": 9, - "an": 3, - "extension": 1, - "to": 12, - "the": 72, - "Tracing": 3, - "and": 20, - "Monitoring": 1, - "Framework": 1, - "that": 4, - "allows": 2, - "visualization": 1, - "analysis": 1, - "of": 8, - "C/C": 10, - "+": 20, - "tracepoint": 5, - "data": 5, - "collected": 2, - "by": 10, - "stored": 1, - "a": 12, - "log": 1, - "file.": 1, - "Getting": 1, - "Started": 1, - "can": 9, - "be": 18, - "installed": 2, - "from": 8, - "Eclipse": 1, - "update": 2, - "site": 1, - "selecting": 1, - ".": 8, - "requires": 1, - "version": 1, - "or": 8, - "later": 1, - "on": 3, - "local": 1, - "host.": 1, - "executable": 3, - "program": 1, - "must": 3, - "found": 1, - "in": 15, - "path.": 1, - "Trace": 9, - "Perspective": 1, - "To": 1, - "open": 1, - "perspective": 2, - "select": 5, - "includes": 1, - "following": 1, - "views": 2, - "default": 2, - "*": 6, - "This": 7, - "view": 7, - "shows": 7, - "projects": 1, - "workspace": 2, - "used": 1, - "create": 1, - "manage": 1, - "projects.": 1, - "running": 1, - "Postmortem": 5, - "Debugger": 4, - "instances": 1, - "displays": 2, - "thread": 1, - "stack": 2, - "trace": 17, - "associated": 1, - "with": 4, - "tracepoint.": 3, - "status": 1, - "debugger": 1, - "navigation": 1, - "records.": 1, - "console": 1, - "output": 1, - "Debugger.": 1, - "editor": 7, - "area": 2, - "contains": 1, - "editors": 1, - "when": 1, - "opened.": 1, - "[": 11, - "Image": 2, - "images/GDBTracePerspective.png": 1, - "]": 11, - "Collecting": 2, - "Data": 4, - "outside": 2, - "scope": 1, - "this": 5, - "feature.": 1, - "It": 1, - "done": 2, - "command": 1, - "line": 2, - "using": 3, - "CDT": 3, - "debug": 1, - "component": 1, - "within": 1, - "Eclipse.": 1, - "See": 1, - "FAQ": 2, - "entry": 2, - "#References": 2, - "|": 2, - "References": 3, - "section.": 2, - "Importing": 2, - "Some": 1, - "information": 1, - "section": 1, - "redundant": 1, - "LTTng": 3, - "User": 3, - "Guide.": 1, - "For": 1, - "further": 1, - "details": 1, - "see": 1, - "Guide": 2, - "Creating": 1, - "Project": 1, - "In": 5, - "right": 3, - "-": 8, - "click": 8, - "context": 4, - "menu.": 4, - "dialog": 1, - "name": 2, - "your": 2, - "project": 2, - "tracing": 1, - "folder": 5, - "Browse": 2, - "enter": 2, - "source": 2, - "directory.": 1, - "Select": 1, - "file": 6, - "tree.": 1, - "Optionally": 1, - "set": 1, - "type": 2, - "Click": 1, - "Alternatively": 1, - "drag": 1, - "&": 1, - "dropped": 1, - "any": 2, - "external": 1, - "manager.": 1, - "Selecting": 2, - "Type": 1, - "Right": 2, - "imported": 1, - "choose": 2, - "step": 1, - "omitted": 1, - "if": 1, - "was": 2, - "selected": 3, - "at": 3, - "import.": 1, - "will": 6, - "updated": 2, - "icon": 1, - "images/gdb_icon16.png": 1, - "Executable": 1, - "created": 1, - "identified": 1, - "so": 2, - "launched": 1, - "properly.": 1, - "path": 1, - "press": 1, - "recognized": 1, - "as": 1, - "executable.": 1, - "Visualizing": 1, - "Opening": 1, - "double": 1, - "it": 3, - "opened": 2, - "Events": 5, - "instance": 1, - "launched.": 1, - "If": 2, - "available": 1, - "code": 1, - "corresponding": 1, - "first": 1, - "record": 2, - "also": 2, - "editor.": 2, - "At": 1, - "point": 1, - "recommended": 1, - "relocate": 1, - "not": 1, - "hidden": 1, - "Viewing": 1, - "table": 1, - "shown": 1, - "one": 1, - "row": 1, - "for": 2, - "each": 1, - "record.": 2, - "column": 6, - "sequential": 1, - "number.": 1, - "number": 2, - "assigned": 1, - "collection": 1, - "time": 2, - "method": 1, - "where": 1, - "set.": 1, - "run": 1, - "Searching": 1, - "filtering": 1, - "entering": 1, - "regular": 1, - "expression": 1, - "header.": 1, - "Navigating": 1, - "records": 1, - "keyboard": 1, - "mouse.": 1, - "show": 1, - "current": 1, - "navigated": 1, - "clicking": 1, - "buttons.": 1, - "updated.": 1, - "http": 4, - "//wiki.eclipse.org/index.php/Linux_Tools_Project/LTTng2/User_Guide": 1, - "//wiki.eclipse.org/CDT/User/FAQ#How_can_I_trace_my_application_using_C.2FC.2B.2B_Tracepoints.3F": 1, - "How": 1, - "I": 1, - "my": 1, - "application": 1, - "Tracepoints": 1, - "Updating": 1, - "Document": 1, - "document": 2, - "maintained": 1, - "collaborative": 1, - "wiki.": 1, - "you": 1, - "wish": 1, - "modify": 1, - "please": 1, - "visit": 1, - "//wiki.eclipse.org/index.php/Linux_Tools_Project/GDB_Tracepoint_Analysis/User_Guide": 1, - "//wiki.eclipse.org/Linux_Tools_Project/GDB_Tracepoint_Analysis/User_Guide": 1 - }, - "Mercury": { - "%": 416, - "-": 6967, - "module": 46, - "ll_backend.code_info.": 1, - "interface.": 13, - "import_module": 126, - "check_hlds.type_util.": 2, - "hlds.code_model.": 1, - "hlds.hlds_data.": 2, - "hlds.hlds_goal.": 2, - "hlds.hlds_llds.": 1, - "hlds.hlds_module.": 2, - "hlds.hlds_pred.": 2, - "hlds.instmap.": 2, - "libs.globals.": 2, - "ll_backend.continuation_info.": 1, - "ll_backend.global_data.": 1, - "ll_backend.layout.": 1, - "ll_backend.llds.": 1, - "ll_backend.trace_gen.": 1, - "mdbcomp.prim_data.": 3, - "mdbcomp.goal_path.": 2, - "parse_tree.prog_data.": 2, - "parse_tree.set_of_var.": 2, - "assoc_list.": 3, - "bool.": 4, - "counter.": 1, - "io.": 8, - "list.": 4, - "map.": 3, - "maybe.": 3, - "set.": 4, - "set_tree234.": 1, - "term.": 3, - "implementation.": 12, - "backend_libs.builtin_ops.": 1, - "backend_libs.proc_label.": 1, - "hlds.arg_info.": 1, - "hlds.hlds_desc.": 1, - "hlds.hlds_rtti.": 2, - "libs.options.": 3, - "libs.trace_params.": 1, - "ll_backend.code_util.": 1, - "ll_backend.opt_debug.": 1, - "ll_backend.var_locn.": 1, - "parse_tree.builtin_lib_types.": 2, - "parse_tree.prog_type.": 2, - "parse_tree.mercury_to_mercury.": 1, - "cord.": 1, - "int.": 4, - "pair.": 3, - "require.": 6, - "stack.": 1, - "string.": 7, - "varset.": 2, - "type": 57, - "code_info.": 1, - "pred": 255, - "code_info_init": 2, - "(": 3351, - "bool": 406, - "in": 510, - "globals": 5, - "pred_id": 15, - "proc_id": 12, - "pred_info": 20, - "proc_info": 11, - "abs_follow_vars": 3, - "module_info": 26, - "static_cell_info": 4, - "const_struct_map": 3, - "resume_point_info": 11, - "out": 337, - "trace_slot_info": 3, - "maybe": 20, - "containing_goal_map": 4, - ")": 3351, - "list": 82, - "string": 115, - "int": 129, - "code_info": 208, - "is": 246, - "det.": 184, - "get_globals": 5, - "get_exprn_opts": 2, - "exprn_opts": 3, - "get_module_info": 7, - "get_pred_id": 6, - "get_proc_id": 5, - "get_pred_info": 2, - "get_proc_info": 4, - "get_varset": 3, - "prog_varset": 14, - "func": 24, - "get_var_types": 3, - "vartypes.": 1, - "get_maybe_trace_info": 2, - "trace_info": 3, - "get_emit_trail_ops": 2, - "add_trail_ops": 5, - "get_emit_region_ops": 2, - "add_region_ops": 6, - "get_forward_live_vars": 2, - "set_of_progvar": 10, - "set_forward_live_vars": 2, - "get_instmap": 4, - "instmap": 3, - "set_instmap": 3, - "get_par_conj_depth": 2, - "set_par_conj_depth": 2, - "get_label_counter": 3, - "counter": 6, - "get_succip_used": 2, - "get_layout_info": 4, - "proc_label_layout_info": 3, - "get_proc_trace_events": 2, - "set_proc_trace_events": 2, - "get_closure_layouts": 3, - "closure_proc_id_data": 4, - "get_max_reg_in_use_at_trace": 2, - "set_max_reg_in_use_at_trace": 2, - "get_created_temp_frame": 2, - "get_static_cell_info": 5, - "set_static_cell_info": 5, - "get_alloc_sites": 3, - "set_tree234": 3, - "alloc_site_info": 4, - "set_alloc_sites": 3, - "get_used_env_vars": 2, - "set": 16, - "set_used_env_vars": 2, - "get_opt_trail_ops": 2, - "get_opt_region_ops": 2, - "get_auto_comments": 2, - "get_lcmc_null": 2, - "get_containing_goal_map": 3, - "get_containing_goal_map_det": 2, - "get_const_struct_map": 2, - "add_out_of_line_code": 2, - "llds_code": 21, - "get_out_of_line_code": 2, - "get_var_slot_count": 2, - "set_maybe_trace_info": 3, - "get_opt_no_return_calls": 2, - "get_zombies": 2, - "set_zombies": 2, - "get_var_locn_info": 7, - "var_locn_info": 3, - "set_var_locn_info": 4, - "get_temps_in_use": 6, - "lval": 114, - "set_temps_in_use": 4, - "get_fail_info": 13, - "fail_info": 24, - "set_fail_info": 9, - "set_label_counter": 3, - "set_succip_used": 3, - "set_layout_info": 4, - "get_max_temp_slot_count": 2, - "set_max_temp_slot_count": 2, - "get_temp_content_map": 3, - "map": 7, - "slot_contents": 4, - "set_temp_content_map": 2, - "get_persistent_temps": 3, - "set_persistent_temps": 2, - "set_closure_layouts": 3, - "get_closure_seq_counter": 3, - "set_closure_seq_counter": 3, - "set_created_temp_frame": 2, - "code_info_static": 26, - "code_info_loc_dep": 22, - "code_info_persistent": 44, - ".": 610, - "cis_globals": 2, - "cis_exprn_opts": 2, - "cis_module_info": 2, - "cis_pred_id": 2, - "cis_proc_id": 2, - "cis_pred_info": 2, - "cis_proc_info": 2, - "cis_proc_label": 1, - "proc_label": 2, - "cis_varset": 2, - "cis_var_slot_count": 2, - "cis_maybe_trace_info": 3, - "cis_opt_no_resume_calls": 2, - "cis_emit_trail_ops": 2, - "cis_opt_trail_ops": 2, - "cis_emit_region_ops": 2, - "cis_opt_region_ops": 2, - "cis_auto_comments": 2, - "cis_lcmc_null": 2, - "cis_containing_goal_map": 2, - "cis_const_struct_map": 2, - "cild_forward_live_vars": 3, - "cild_instmap": 3, - "cild_zombies": 3, - "cild_var_locn_info": 3, - "cild_temps_in_use": 3, - "cild_fail_info": 3, - "cild_par_conj_depth": 3, - "cip_label_num_src": 3, - "cip_store_succip": 3, - "cip_label_info": 3, - "cip_proc_trace_events": 3, - "cip_stackslot_max": 3, - "cip_temp_contents": 3, - "cip_persistent_temps": 3, - "cip_closure_layout_seq": 3, - "cip_closure_layouts": 3, - "cip_max_reg_r_used": 3, - "cip_max_reg_f_used": 2, - "cip_created_temp_frame": 3, - "cip_static_cell_info": 3, - "cip_alloc_sites": 3, - "cip_used_env_vars": 3, - "cip_ts_string_table_size": 3, - "cip_ts_rev_string_table": 4, - "cip_out_of_line_code": 4, - "SaveSuccip": 2, - "Globals": 32, - "PredId": 50, - "ProcId": 31, - "PredInfo": 64, - "ProcInfo": 43, - "FollowVars": 6, - "ModuleInfo": 49, - "StaticCellInfo": 8, - "ConstStructMap": 2, - "ResumePoint": 13, - "TraceSlotInfo": 5, - "MaybeContainingGoalMap": 5, - "TSRevStringTable": 2, - "TSStringTableSize": 2, - "CodeInfo": 2, - "ProcLabel": 8, - "make_proc_label": 1, - "proc_info_get_initial_instmap": 1, - "InstMap": 6, - "proc_info_get_liveness_info": 1, - "Liveness": 4, - "CodeModel": 8, - "proc_info_interface_code_model": 2, - "build_input_arg_list": 1, - "ArgList": 2, - "proc_info_get_varset": 1, - "VarSet": 15, - "proc_info_get_vartypes": 2, - "VarTypes": 22, - "proc_info_get_stack_slots": 1, - "StackSlots": 5, - "ExprnOpts": 4, - "init_exprn_opts": 3, - "globals.lookup_bool_option": 18, - "use_float_registers": 5, - "UseFloatRegs": 6, - "yes": 144, - "FloatRegType": 3, - "reg_f": 1, - ";": 913, - "no": 365, - "reg_r": 2, - "globals.get_trace_level": 1, - "TraceLevel": 5, - "eff_trace_level_is_none": 2, - "trace_fail_vars": 1, - "FailVars": 3, - "MaybeFailVars": 3, - "set_of_var.union": 3, - "EffLiveness": 3, - "init_var_locn_state": 1, - "VarLocnInfo": 12, - "stack.init": 1, - "ResumePoints": 14, - "allow_hijacks": 3, - "AllowHijack": 3, - "Hijack": 6, - "allowed": 6, - "not_allowed": 5, - "DummyFailInfo": 2, - "resume_point_unknown": 9, - "may_be_different": 7, - "not_inside_non_condition": 2, - "map.init": 7, - "TempContentMap": 4, - "set.init": 7, - "PersistentTemps": 4, - "TempsInUse": 8, - "Zombies": 2, - "set_of_var.init": 1, - "LayoutMap": 2, - "max_var_slot": 1, - "VarSlotMax": 2, - "trace_reserved_slots": 1, - "FixedSlots": 2, - "_": 149, - "int.max": 1, - "SlotMax": 2, - "opt_no_return_calls": 3, - "OptNoReturnCalls": 2, - "use_trail": 3, - "UseTrail": 2, - "disable_trail_ops": 3, - "DisableTrailOps": 2, - "EmitTrailOps": 3, - "do_not_add_trail_ops": 1, - "optimize_trail_usage": 3, - "OptTrailOps": 2, - "optimize_region_ops": 3, - "OptRegionOps": 2, - "region_analysis": 3, - "UseRegions": 3, - "EmitRegionOps": 3, - "do_not_add_region_ops": 1, - "auto_comments": 4, - "AutoComments": 2, - "optimize_constructor_last_call_null": 3, - "LCMCNull": 2, - "CodeInfo0": 2, - "init_fail_info": 2, - "will": 1, - "override": 1, - "this": 4, - "dummy": 2, - "value": 16, - "nested": 1, - "parallel": 3, - "conjunction": 1, - "depth": 1, - "counter.init": 2, - "[": 203, - "]": 203, - "set_tree234.init": 1, - "cord.empty": 1, - "init_maybe_trace_info": 3, - "CodeInfo1": 2, - "exprn_opts.": 1, - "gcc_non_local_gotos": 3, - "OptNLG": 3, - "NLG": 3, - "have_non_local_gotos": 1, - "do_not_have_non_local_gotos": 1, - "asm_labels": 3, - "OptASM": 3, - "ASM": 3, - "have_asm_labels": 1, - "do_not_have_asm_labels": 1, - "static_ground_cells": 3, - "OptSGCell": 3, - "SGCell": 3, - "have_static_ground_cells": 1, - "do_not_have_static_ground_cells": 1, - "unboxed_float": 3, - "OptUBF": 3, - "UBF": 3, - "have_unboxed_floats": 1, - "do_not_have_unboxed_floats": 1, - "OptFloatRegs": 3, - "do_not_use_float_registers": 1, - "static_ground_floats": 3, - "OptSGFloat": 3, - "SGFloat": 3, - "have_static_ground_floats": 1, - "do_not_have_static_ground_floats": 1, - "static_code_addresses": 3, - "OptStaticCodeAddr": 3, - "StaticCodeAddrs": 3, - "have_static_code_addresses": 1, - "do_not_have_static_code_addresses": 1, - "trace_level": 4, - "CI": 294, - "proc_info_get_has_tail_call_events": 1, - "HasTailCallEvents": 3, - "tail_call_events": 1, - "get_next_label": 5, - "TailRecLabel": 2, - "MaybeTailRecLabel": 3, - "no_tail_call_events": 1, - "trace_setup": 1, - "TraceInfo": 2, - "MaxRegR": 4, - "MaxRegF": 4, - "cip_max_reg_f_used.": 1, - "TI": 4, - "LV": 2, - "IM": 2, - "Zs": 2, - "EI": 2, - "FI": 2, - "N": 6, - "LC": 2, - "SU": 2, - "LI": 2, - "PTE": 2, - "TM": 2, - "CM": 2, - "PT": 2, - "CLS": 2, - "CG": 2, - "MR": 4, - "MF": 1, - "MF.": 1, - "SCI": 2, - "ASI": 2, - "UEV": 2, - "ContainingGoalMap": 2, - "unexpected": 21, - "NewCode": 2, - "Code0": 2, - ".CI": 29, - "Code": 36, - "+": 127, - "Code.": 1, - "get_stack_slots": 2, - "stack_slots": 1, - "get_follow_var_map": 2, - "abs_follow_vars_map": 1, - "get_next_non_reserved": 2, - "reg_type": 1, - "set_follow_vars": 4, - "pre_goal_update": 3, - "hlds_goal_info": 22, - "has_subgoals": 2, - "post_goal_update": 3, - "body_typeinfo_liveness": 4, - "variable_type": 3, - "prog_var": 58, - "mer_type.": 1, - "variable_is_of_dummy_type": 2, - "is_dummy_type.": 1, - "search_type_defn": 4, - "mer_type": 21, - "hlds_type_defn": 1, - "semidet.": 10, - "lookup_type_defn": 2, - "hlds_type_defn.": 1, - "lookup_cheaper_tag_test": 2, - "maybe_cheaper_tag_test.": 1, - "filter_region_vars": 2, - "set_of_progvar.": 2, - "get_proc_model": 2, - "code_model.": 1, - "get_headvars": 2, - "get_arginfo": 2, - "arg_info": 2, - "get_pred_proc_arginfo": 3, - "current_resume_point_vars": 2, - "variable_name": 2, - "make_proc_entry_label": 2, - "code_addr.": 1, - "label": 5, - "succip_is_used": 2, - "add_trace_layout_for_label": 2, - "term.context": 3, - "trace_port": 1, - "forward_goal_path": 1, - "user_event_info": 1, - "layout_label_info": 2, - "get_cur_proc_label": 4, - "get_next_closure_seq_no": 2, - "add_closure_layout": 2, - "add_threadscope_string": 2, - "get_threadscope_rev_string_table": 2, - "add_scalar_static_cell": 2, - "typed_rval": 1, - "data_id": 3, - "add_scalar_static_cell_natural_types": 2, - "rval": 3, - "add_vector_static_cell": 2, - "llds_type": 1, - "add_alloc_site_info": 2, - "prog_context": 1, - "alloc_site_id": 2, - "add_resume_layout_for_label": 2, - "var_locn_get_stack_slots": 1, - "FollowVarMap": 2, - "var_locn_get_follow_var_map": 1, - "RegType": 2, - "NextNonReserved": 2, - "var_locn_get_next_non_reserved": 1, - "VarLocnInfo0": 4, - "var_locn_set_follow_vars": 1, - "GoalInfo": 44, - "HasSubGoals": 3, - "goal_info_get_resume_point": 1, - "no_resume_point": 1, - "resume_point": 1, - "goal_info_get_follow_vars": 1, - "MaybeFollowVars": 3, - "goal_info_get_pre_deaths": 1, - "PreDeaths": 3, - "rem_forward_live_vars": 3, - "maybe_make_vars_forward_dead": 2, - "goal_info_get_pre_births": 1, - "PreBirths": 2, - "add_forward_live_vars": 2, - "does_not_have_subgoals": 2, - "goal_info_get_post_deaths": 2, - "PostDeaths": 5, - "goal_info_get_post_births": 1, - "PostBirths": 3, - "make_vars_forward_live": 1, - "InstMapDelta": 2, - "goal_info_get_instmap_delta": 1, - "InstMap0": 2, - "instmap.apply_instmap_delta": 1, - "TypeInfoLiveness": 2, - "module_info_pred_info": 6, - "body_should_use_typeinfo_liveness": 1, - "Var": 13, - "Type": 18, - "lookup_var_type": 3, - "IsDummy": 2, - "VarType": 2, - "check_dummy_type": 1, - "TypeDefn": 6, - "type_to_ctor_det": 1, - "TypeCtor": 2, - "module_info_get_type_table": 1, - "TypeTable": 2, - "search_type_ctor_defn": 1, - "TypeDefnPrime": 2, - "CheaperTagTest": 3, - "get_type_defn_body": 1, - "TypeBody": 2, - "hlds_du_type": 1, - "CheaperTagTestPrime": 2, - "no_cheaper_tag_test": 1, - "ForwardLiveVarsBeforeGoal": 6, - "RegionVars": 2, - "code_info.get_var_types": 1, - "set_of_var.filter": 1, - "is_region_var": 1, - "HeadVars": 20, - "module_info_pred_proc_info": 4, - "proc_info_get_headvars": 2, - "ArgInfo": 4, - "proc_info_arg_info": 1, - "ResumeVars": 4, - "FailInfo": 19, - "ResumePointStack": 2, - "stack.det_top": 5, - "ResumePointInfo": 2, - "pick_first_resume_point": 1, - "ResumeMap": 8, - "map.keys": 3, - "ResumeMapVarList": 2, - "set_of_var.list_to_set": 3, - "Name": 4, - "Varset": 2, - "varset.lookup_name": 2, - "Immed0": 3, - "CodeAddr": 2, - "Immed": 3, - "globals.lookup_int_option": 1, - "procs_per_c_function": 3, - "ProcsPerFunc": 2, - "CurPredId": 2, - "CurProcId": 2, - "proc": 2, - "make_entry_label": 1, - "Label": 8, - "C0": 4, - "counter.allocate": 2, - "C": 34, - "internal_label": 3, - "Context": 20, - "Port": 2, - "IsHidden": 2, - "GoalPath": 2, - "MaybeSolverEventInfo": 2, - "Layout": 2, - "Internals0": 8, - "Exec": 5, - "trace_port_layout_info": 1, - "LabelNum": 8, - "entry_label": 2, - "map.search": 2, - "Internal0": 4, - "internal_layout_info": 6, - "Exec0": 3, - "Resume": 5, - "Return": 6, - "Internal": 8, - "map.det_update": 4, - "Internals": 6, - "map.det_insert": 3, - "LayoutInfo": 2, - "Resume0": 3, - "get_active_temps_data": 2, - "assoc_list": 1, - "Temps": 2, - "map.select": 1, - "TempsInUseContentMap": 2, - "map.to_assoc_list": 3, - "cis_proc_label.": 1, - "SeqNo": 2, - "ClosureLayout": 2, - "ClosureLayouts": 2, - "|": 38, - "String": 2, - "SlotNum": 2, - "Size0": 3, - "RevTable0": 2, - "Size": 4, - "RevTable": 3, - "RevTable.": 1, - "TableSize": 2, - "cip_ts_string_table_size.": 1, - "RvalsTypes": 2, - "DataAddr": 6, - "StaticCellInfo0": 6, - "global_data.add_scalar_static_cell": 1, - "Rvals": 2, - "global_data.add_scalar_static_cell_natural_types": 1, - "Types": 6, - "Vector": 2, - "global_data.add_vector_static_cell": 1, - "AllocId": 2, - "AllocSite": 3, - "AllocSites0": 2, - "set_tree234.insert": 1, - "AllocSites": 2, - "position_info.": 1, - "branch_end_info.": 1, - "branch_end": 4, - "branch_end_info": 7, - "remember_position": 3, - "position_info": 14, - "reset_to_position": 4, - "reset_resume_known": 2, - "generate_branch_end": 2, - "abs_store_map": 3, - "after_all_branches": 2, - "save_hp_in_branch": 2, - "pos_get_fail_info": 3, - "fail_info.": 2, - "LocDep": 6, - "cild_fail_info.": 1, - "CurCI": 2, - "NextCI": 2, - "Static": 2, - "Persistent": 2, - "NextCI0": 4, - "TempsInUse0": 4, - "set.union": 2, - "BranchStart": 2, - "BranchStartFailInfo": 2, - "BSResumeKnown": 2, - "CurFailInfo": 2, - "CurFailStack": 2, - "CurCurfMaxfr": 2, - "CurCondEnv": 2, - "CurHijack": 2, - "NewFailInfo": 2, - "StoreMap": 8, - "MaybeEnd0": 3, - "MaybeEnd": 6, - "AbsVarLocs": 3, - "assoc_list.values": 1, - "AbsLocs": 2, - "code_util.max_mentioned_abs_regs": 1, - "instmap_is_reachable": 1, - "VarLocs": 2, - "assoc_list.map_values_only": 2, - "abs_locn_to_lval": 2, - "place_vars": 1, - "remake_with_store_map": 4, - "empty": 9, - "EndCodeInfo1": 5, - "EndCodeInfo0": 3, - "FailInfo0": 13, - "FailInfo1": 2, - "ResumeKnown0": 5, - "CurfrMaxfr0": 2, - "CondEnv0": 3, - "Hijack0": 2, - "R": 2, - "ResumeKnown1": 2, - "CurfrMaxfr1": 2, - "CondEnv1": 2, - "Hijack1": 2, - "resume_point_known": 15, - "Redoip0": 3, - "Redoip1": 2, - "ResumeKnown": 21, - "expect": 15, - "unify": 21, - "must_be_equal": 11, - "CurfrMaxfr": 24, - "EndCodeInfoA": 2, - "TempsInUse1": 2, - "EndCodeInfo": 2, - "BranchEnd": 2, - "BranchEndCodeInfo": 2, - "BranchEndLocDep": 2, - "VarLocns": 2, - "VarLvals": 2, - "reinit_var_locn_state": 1, - "Slot": 2, - "Pos0": 2, - "Pos": 2, - "CI0": 2, - "CIStatic0": 2, - "CILocDep0": 2, - "CIPersistent0": 2, - "LocDep0": 2, - "CI1": 2, - "save_hp": 1, - "CI2": 2, - "CIStatic": 2, - "CIPersistent": 2, - "resume_map.": 1, - "resume_point_info.": 1, - "disj_hijack_info.": 1, - "prepare_for_disj_hijack": 2, - "code_model": 3, - "disj_hijack_info": 3, - "undo_disj_hijack": 2, - "ite_hijack_info.": 1, - "prepare_for_ite_hijack": 2, - "embedded_stack_frame_id": 3, - "ite_hijack_info": 3, - "ite_enter_then": 2, - "simple_neg_info.": 1, - "enter_simple_neg": 2, - "simple_neg_info": 3, - "leave_simple_neg": 2, - "det_commit_info.": 1, - "prepare_for_det_commit": 2, - "det_commit_info": 6, - "generate_det_commit": 2, - "semi_commit_info.": 1, - "prepare_for_semi_commit": 2, - "semi_commit_info": 6, - "generate_semi_commit": 2, - "effect_resume_point": 2, - "pop_resume_point": 1, - "top_resume_point": 1, - "set_resume_point_to_unknown": 1, - "set_resume_point_and_frame_to_unknown": 1, - "generate_failure": 2, - "fail_if_rval_is_false": 1, - "failure_is_direct_branch": 1, - "code_addr": 8, - "may_use_nondet_tailcall": 1, - "nondet_tail_call": 1, - "produce_vars": 1, - "resume_map": 9, - "flush_resume_vars_to_stack": 1, - "make_resume_point": 1, - "resume_locs": 1, - "generate_resume_point": 2, - "resume_point_vars": 1, - "resume_point_stack_addr": 2, - "stack": 1, - "curfr_vs_maxfr": 2, - "condition_env": 3, - "hijack_allowed": 2, - "orig_only": 2, - "stack_only": 2, - "orig_and_stack": 1, - "stack_and_orig": 1, - "redoip_update": 2, - "has_been_done": 5, - "wont_be_done.": 1, - "resume_point_unknown.": 1, - "may_be_different.": 1, - "inside_non_condition": 6, - "not_inside_non_condition.": 1, - "not_allowed.": 1, - "disj_no_hijack": 4, - "disj_temp_frame": 4, - "disj_quarter_hijack": 4, - "disj_half_hijack": 3, - "disj_full_hijack": 3, - "HijackInfo": 29, - "CondEnv": 12, - "Allow": 12, - "model_det": 2, - "model_semi": 3, - "singleton": 28, - "llds_instr": 64, - "comment": 5, - "model_non": 2, - "create_temp_frame": 4, - "do_fail": 6, - "stack.pop": 1, - "TopResumePoint": 6, - "RestResumePoints": 2, - "stack.is_empty": 1, - "wont_be_done": 2, - "acquire_temp_slot": 15, - "slot_lval": 14, - "redoip_slot": 30, - "curfr": 18, - "non_persistent_temp_slot": 15, - "RedoipSlot": 33, - "assign": 46, - "maxfr": 42, - "redofr_slot": 14, - "RedofrSlot": 17, - "from_list": 13, - "prevfr_slot": 3, - "pick_stack_resume_point": 3, - "StackLabel": 9, - "LabelConst": 4, - "const": 10, - "llconst_code_addr": 6, - "true": 3, - "ite_region_info": 5, - "ite_info": 3, - "ite_hijack_type": 2, - "ite_no_hijack": 3, - "ite_temp_frame": 3, - "ite_quarter_hijack": 3, - "ite_half_hijack": 3, - "ite_full_hijack": 3, - "CondCodeModel": 4, - "MaybeEmbeddedFrameId": 5, - "HijackType": 12, - "MaybeRegionInfo": 12, - "MaxfrSlot": 30, - "TempFrameCode": 4, - "MaxfrCode": 7, - "EmbeddedFrameId": 2, - "slot_success_record": 1, - "persistent_temp_slot": 1, - "SuccessRecordSlot": 6, - "InitSuccessCode": 3, - "llconst_false": 1, - "ITEResumePoint": 2, - "ThenCode": 10, - "ElseCode": 7, - "ResumePoints0": 5, - "stack.det_pop": 1, - "HijackResumeKnown": 2, - "OldCondEnv": 2, - "RegionInfo": 2, - "EmbeddedStackFrameId": 2, - "ITEStackResumeCodeAddr": 2, - "llconst_true": 1, - "AfterRegionOp": 3, - "if_val": 1, - "unop": 1, - "logical_not": 1, - "code_label": 2, - "use_and_maybe_pop_region_frame": 1, - "region_ite_nondet_cond_fail": 1, - "goto": 2, - "maybe_pick_stack_resume_point": 1, - "ResumeMap0": 2, - "make_fake_resume_map": 5, - "do_redo": 1, - "is_empty": 1, - "Vars": 10, - "Locns": 2, - "set.make_singleton_set": 1, - "reg": 1, - "pair": 7, - "region_commit_stack_frame": 5, - "AddTrailOps": 4, - "AddRegionOps": 5, - "CommitGoalInfo": 4, - "DetCommitInfo": 4, - "SaveMaxfrCode": 3, - "save_maxfr": 3, - "MaybeMaxfrSlot": 6, - "maybe_save_trail_info": 2, - "MaybeTrailSlots": 8, - "SaveTrailCode": 4, - "maybe_save_region_commit_frame": 4, - "MaybeRegionCommitFrameInfo": 8, - "SaveRegionCommitFrameCode": 2, - "SaveRegionCommitFrameCode.": 2, - "RestoreMaxfrCode": 3, - "restore_maxfr": 3, - "release_temp_slot": 1, - "maybe_restore_trail_info": 2, - "CommitTrailCode": 4, - "maybe_restore_region_commit_frame": 2, - "SuccessRegionCode": 3, - "_FailureRegionCode": 1, - "SuccessRegionCode.": 1, - "commit_hijack_info": 2, - "commit_temp_frame": 3, - "commit_quarter_hijack": 3, - "commit_half_hijack": 3, - "commit_full_hijack": 3, - "SemiCommitInfo": 4, - "clone_resume_point": 1, - "NewResumePoint": 4, - "stack.push": 1, - "StackLabelConst": 7, - "use_minimal_model_stack_copy_cut": 3, - "UseMinimalModelStackCopyCut": 4, - "Components": 4, - "foreign_proc_raw_code": 4, - "cannot_branch_away": 4, - "proc_affects_liveness": 2, - "live_lvals_info": 4, - "proc_does_not_affect_liveness": 2, - "MD": 4, - "proc_may_duplicate": 2, - "MarkCode": 3, - "foreign_proc_code": 2, - "proc_will_not_call_mercury": 2, - "HijackCode": 5, - "UseMinimalModel": 3, - "CutCode": 4, - "SuccessUndoCode": 5, - "FailureUndoCode": 5, - "AfterCommit": 2, - "ResumePointCode": 2, - "FailCode": 2, - "RestoreTrailCode": 2, - "FailureRegionCode": 2, - "SuccLabel": 3, - "GotoSuccLabel": 2, - "SuccLabelCode": 1, - "SuccessCode": 2, - "FailureCode": 2, - "SuccLabelCode.": 1, - "_ForwardLiveVarsBeforeGoal": 1, - "expr.": 1, - "char": 10, - "token": 5, - "num": 11, - "eof": 6, - "parse": 1, - "exprn/1": 1, - "xx": 1, - "scan": 16, - "mode": 8, - "rule": 3, - "exprn": 7, - "Num": 18, - "A": 14, - "term": 10, - "B": 8, - "{": 27, - "}": 28, - "*": 20, - "factor": 6, - "/": 1, - "//": 2, - "Chars": 2, - "Toks": 13, - "Toks0": 11, - "list__reverse": 1, - "Cs": 9, - "char__is_whitespace": 1, - "char__is_digit": 2, - "takewhile": 1, - "Digits": 2, - "Rest": 2, - "string__from_char_list": 1, - "NumStr": 2, - "string__det_to_int": 1, - "error": 7, - "hello.": 1, - "main": 15, - "io": 6, - "di": 54, - "uo": 58, - "IO": 4, - "io.write_string": 1, - "char.": 1, - "getopt_io.": 1, - "short_option": 36, - "option": 9, - "long_option": 241, - "option_defaults": 2, - "option_data": 2, - "nondet.": 1, - "special_handler": 1, - "special_data": 1, - "option_table": 5, - "maybe_option_table": 3, - "inconsequential_options": 1, - "options_help": 1, - "option_table_add_mercury_library_directory": 1, - "option_table.": 2, - "option_table_add_search_library_files_directory": 1, - "quote_arg": 1, - "inhibit_warnings": 4, - "inhibit_accumulator_warnings": 3, - "halt_at_warn": 3, - "halt_at_syntax_errors": 3, - "halt_at_auto_parallel_failure": 3, - "warn_singleton_vars": 3, - "warn_overlapping_scopes": 3, - "warn_det_decls_too_lax": 3, - "warn_inferred_erroneous": 3, - "warn_nothing_exported": 3, - "warn_unused_args": 3, - "warn_interface_imports": 3, - "warn_missing_opt_files": 3, - "warn_missing_trans_opt_files": 3, - "warn_missing_trans_opt_deps": 3, - "warn_non_contiguous_clauses": 3, - "warn_non_contiguous_foreign_procs": 3, - "warn_non_stratification": 3, - "warn_unification_cannot_succeed": 3, - "warn_simple_code": 3, - "warn_duplicate_calls": 3, - "warn_missing_module_name": 3, - "warn_wrong_module_name": 3, - "warn_smart_recompilation": 3, - "warn_undefined_options_variables": 3, - "warn_non_tail_recursion": 3, - "warn_target_code": 3, - "warn_up_to_date": 3, - "warn_stubs": 3, - "warn_dead_procs": 3, - "warn_table_with_inline": 3, - "warn_non_term_special_preds": 3, - "warn_known_bad_format_calls": 3, - "warn_unknown_format_calls": 3, - "warn_obsolete": 3, - "warn_insts_without_matching_type": 3, - "warn_unused_imports": 3, - "inform_ite_instead_of_switch": 3, - "warn_unresolved_polymorphism": 3, - "warn_suspicious_foreign_procs": 3, - "warn_state_var_shadowing": 3, - "inform_inferred": 3, - "inform_inferred_types": 3, - "inform_inferred_modes": 3, - "verbose": 4, - "very_verbose": 4, - "verbose_errors": 4, - "verbose_recompilation": 3, - "find_all_recompilation_reasons": 3, - "verbose_make": 3, - "verbose_commands": 3, - "output_compile_error_lines": 3, - "report_cmd_line_args": 3, - "report_cmd_line_args_in_doterr": 3, - "statistics": 4, - "detailed_statistics": 3, - "proc_size_statistics": 3, - "debug_types": 4, - "debug_modes": 4, - "debug_modes_statistics": 3, - "debug_modes_minimal": 3, - "debug_modes_verbose": 3, - "debug_modes_pred_id": 3, - "debug_dep_par_conj": 3, - "debug_det": 4, - "debug_code_gen_pred_id": 3, - "debug_opt": 3, - "debug_term": 4, - "constraint": 2, - "termination": 3, - "analysis": 1, - "debug_opt_pred_id": 3, - "debug_opt_pred_name": 3, - "debug_pd": 3, - "pd": 1, - "partial": 1, - "deduction/deforestation": 1, - "debug_il_asm": 3, - "il_asm": 1, - "IL": 2, - "generation": 1, - "via": 1, - "asm": 1, - "debug_liveness": 3, - "debug_stack_opt": 3, - "debug_make": 3, - "debug_closure": 3, - "debug_trail_usage": 3, - "debug_mode_constraints": 3, - "debug_intermodule_analysis": 3, - "debug_mm_tabling_analysis": 3, - "debug_indirect_reuse": 3, - "debug_type_rep": 3, - "make_short_interface": 4, - "make_interface": 5, - "make_private_interface": 4, - "make_optimization_interface": 5, - "make_transitive_opt_interface": 5, - "make_analysis_registry": 3, - "make_xml_documentation": 5, - "generate_source_file_mapping": 4, - "generate_dependency_file": 3, - "generate_dependencies": 4, - "generate_module_order": 3, - "generate_standalone_interface": 3, - "convert_to_mercury": 6, - "typecheck_only": 4, - "errorcheck_only": 4, - "target_code_only": 10, - "compile_only": 4, - "compile_to_shared_lib": 3, - "output_grade_string": 3, - "output_link_command": 3, - "output_shared_lib_link_command": 3, - "output_libgrades": 3, - "output_cc": 3, - "output_c_compiler_type": 4, - "output_csharp_compiler_type": 3, - "output_cflags": 3, - "output_library_link_flags": 3, - "output_grade_defines": 3, - "output_c_include_directory_flags": 4, - "smart_recompilation": 3, - "generate_item_version_numbers": 2, - "generate_mmc_make_module_dependencies": 4, - "assume_gmake": 3, - "trace_optimized": 4, - "trace_prof": 3, - "trace_table_io": 3, - "trace_table_io_only_retry": 3, - "trace_table_io_states": 3, - "trace_table_io_require": 3, - "trace_table_io_all": 3, - "trace_goal_flags": 3, - "prof_optimized": 4, - "exec_trace_tail_rec": 3, - "suppress_trace": 3, - "force_disable_tracing": 3, - "delay_death": 3, - "delay_death_max_vars": 3, - "stack_trace_higher_order": 3, - "force_disable_ssdebug": 3, - "generate_bytecode": 3, - "line_numbers": 4, - "frameopt_comments": 3, - "max_error_line_width": 3, - "show_dependency_graph": 3, - "imports_graph": 3, - "dump_trace_counts": 3, - "dump_hlds": 5, - "dump_hlds_pred_id": 3, - "dump_hlds_pred_name": 3, - "dump_hlds_alias": 4, - "dump_hlds_options": 3, - "dump_hlds_inst_limit": 3, - "dump_hlds_file_suffix": 3, - "dump_same_hlds": 3, - "dump_mlds": 4, - "verbose_dump_mlds": 4, - "mode_constraints": 3, - "simple_mode_constraints": 3, - "prop_mode_constraints": 4, - "benchmark_modes": 3, - "benchmark_modes_repeat": 3, - "sign_assembly": 3, - "separate_assemblies": 3, - "reorder_conj": 3, - "reorder_disj": 3, - "fully_strict": 3, - "strict_sequential": 3, - "allow_stubs": 3, - "infer_types": 3, - "infer_modes": 3, - "infer_det": 4, - "infer_all": 3, - "type_inference_iteration_limit": 3, - "mode_inference_iteration_limit": 3, - "event_set_file_name": 3, - "grade": 4, - "target": 14, - "il": 5, - "il_only": 4, - "compile_to_c": 4, - "c": 1, - "java": 35, - "java_only": 4, - "csharp": 6, - "csharp_only": 4, - "x86_64": 6, - "x86_64_only": 4, - "erlang": 6, - "erlang_only": 4, - "exec_trace": 3, - "decl_debug": 3, - "profiling": 5, - "profile_time": 5, - "profile_calls": 6, - "time_profiling": 3, - "memory_profiling": 3, - "profile_mem": 1, - "deep_profiling": 3, - "profile_deep": 4, - "profile_memory": 3, - "use_activation_counts": 3, - "pre_prof_transforms_simplify": 3, - "pre_implicit_parallelism_simplify": 3, - "coverage_profiling": 3, - "coverage_profiling_via_calls": 3, - "coverage_profiling_static": 3, - "profile_deep_coverage_after_goal": 3, - "profile_deep_coverage_branch_ite": 3, - "profile_deep_coverage_branch_switch": 3, - "profile_deep_coverage_branch_disj": 3, - "profile_deep_coverage_use_portcounts": 3, - "profile_deep_coverage_use_trivial": 2, - "profile_for_feedback": 2, - "use_zeroing_for_ho_cycles": 2, - "use_lots_of_ho_specialization": 2, - "deep_profile_tail_recursion": 2, - "record_term_sizes_as_words": 2, - "record_term_sizes_as_cells": 2, - "experimental_complexity": 2, - "gc": 2, - "threadscope": 2, - "trail_segments": 2, - "use_minimal_model_stack_copy": 2, - "use_minimal_model_own_stacks": 2, - "minimal_model_debug": 2, - "single_prec_float": 2, - "type_layout": 2, - "maybe_thread_safe_opt": 2, - "extend_stacks_when_needed": 2, - "stack_segments": 2, - "use_regions": 2, - "use_alloc_regions": 2, - "use_regions_debug": 2, - "use_regions_profiling": 2, - "source_to_source_debug": 5, - "ssdb_trace_level": 3, - "link_ssdb_libs": 4, - "tags": 2, - "num_tag_bits": 2, - "num_reserved_addresses": 2, - "num_reserved_objects": 2, - "bits_per_word": 2, - "bytes_per_word": 2, - "conf_low_tag_bits": 2, - "unboxed_enums": 2, - "unboxed_no_tag_types": 2, - "sync_term_size": 2, - "words": 1, - "gcc_global_registers": 2, - "pic_reg": 2, - "highlevel_code": 3, - "highlevel_data": 2, - "gcc_nested_functions": 2, - "det_copy_out": 2, - "nondet_copy_out": 2, - "put_commit_in_own_func": 2, - "put_nondet_env_on_heap": 2, - "verifiable_code": 2, - "il_refany_fields": 2, - "il_funcptr_types": 2, - "il_byref_tailcalls": 2, - "backend_foreign_languages": 2, - "stack_trace": 2, - "basic_stack_layout": 2, - "agc_stack_layout": 2, - "procid_stack_layout": 2, - "trace_stack_layout": 2, - "can_compare_constants_as_ints": 2, - "pretest_equality_cast_pointers": 2, - "can_compare_compound_values": 2, - "lexically_order_constructors": 2, - "mutable_always_boxed": 2, - "delay_partial_instantiations": 2, - "allow_defn_of_builtins": 2, - "special_preds": 2, - "type_ctor_info": 2, - "type_ctor_layout": 2, - "type_ctor_functors": 2, - "new_type_class_rtti": 2, - "rtti_line_numbers": 2, - "disable_minimal_model_stack_copy_pneg": 2, - "disable_minimal_model_stack_copy_cut": 2, - "use_minimal_model_stack_copy_pneg": 2, - "size_region_ite_fixed": 2, - "size_region_disj_fixed": 2, - "size_region_semi_disj_fixed": 1, - "size_region_commit_fixed": 2, - "size_region_ite_protect": 2, - "size_region_ite_snapshot": 2, - "size_region_semi_disj_protect": 2, - "size_region_disj_snapshot": 2, - "size_region_commit_entry": 2, - "solver_type_auto_init": 2, - "allow_multi_arm_switches": 2, - "type_check_constraints": 2, - "allow_argument_packing": 2, - "low_level_debug": 2, - "table_debug": 2, - "trad_passes": 2, - "parallel_liveness": 2, - "parallel_code_gen": 2, - "polymorphism": 2, - "reclaim_heap_on_failure": 2, - "reclaim_heap_on_semidet_failure": 2, - "reclaim_heap_on_nondet_failure": 2, - "have_delay_slot": 2, - "num_real_r_regs": 2, - "num_real_f_regs": 2, - "num_real_r_temps": 2, - "num_real_f_temps": 2, - "max_jump_table_size": 2, - "max_specialized_do_call_closure": 2, - "max_specialized_do_call_class_method": 2, - "compare_specialization": 2, - "should_pretest_equality": 2, - "fact_table_max_array_size": 2, - "fact_table_hash_percent_full": 2, - "gcc_local_labels": 2, - "prefer_switch": 2, - "opt_level": 3, - "opt_level_number": 2, - "opt_space": 2, - "Default": 3, - "to": 16, - "optimize": 3, - "time.": 1, - "intermodule_optimization": 2, - "read_opt_files_transitively": 2, - "use_opt_files": 2, - "use_trans_opt_files": 2, - "transitive_optimization": 2, - "intermodule_analysis": 2, - "analysis_repeat": 2, - "analysis_file_cache": 2, - "allow_inlining": 2, - "inlining": 2, - "inline_simple": 2, - "inline_builtins": 2, - "inline_single_use": 2, - "inline_call_cost": 2, - "inline_compound_threshold": 2, - "inline_simple_threshold": 2, - "inline_vars_threshold": 2, - "intermod_inline_simple_threshold": 2, - "from_ground_term_threshold": 2, - "enable_const_struct": 2, - "common_struct": 2, - "common_struct_preds": 2, - "common_goal": 2, - "constraint_propagation": 2, - "local_constraint_propagation": 2, - "optimize_unused_args": 2, - "intermod_unused_args": 2, - "optimize_higher_order": 2, - "higher_order_size_limit": 2, - "higher_order_arg_limit": 2, - "unneeded_code": 2, - "unneeded_code_copy_limit": 2, - "unneeded_code_debug": 2, - "unneeded_code_debug_pred_name": 2, - "type_specialization": 2, - "user_guided_type_specialization": 2, - "introduce_accumulators": 2, - "optimize_constructor_last_call_accumulator": 2, - "optimize_constructor_last_call": 2, - "optimize_duplicate_calls": 2, - "constant_propagation": 2, - "excess_assign": 2, - "optimize_format_calls": 2, - "optimize_saved_vars_const": 2, - "optimize_saved_vars_cell": 2, - "optimize_saved_vars_cell_loop": 2, - "optimize_saved_vars_cell_full_path": 2, - "optimize_saved_vars_cell_on_stack": 2, - "optimize_saved_vars_cell_candidate_headvars": 2, - "optimize_saved_vars_cell_cv_store_cost": 2, - "optimize_saved_vars_cell_cv_load_cost": 2, - "optimize_saved_vars_cell_fv_store_cost": 2, - "optimize_saved_vars_cell_fv_load_cost": 2, - "optimize_saved_vars_cell_op_ratio": 2, - "optimize_saved_vars_cell_node_ratio": 2, - "optimize_saved_vars_cell_all_path_node_ratio": 2, - "optimize_saved_vars_cell_include_all_candidates": 2, - "optimize_saved_vars": 2, - "loop_invariants": 2, - "delay_construct": 2, - "follow_code": 2, - "optimize_dead_procs": 2, - "deforestation": 2, - "deforestation_depth_limit": 2, - "deforestation_cost_factor": 2, - "deforestation_vars_threshold": 2, - "deforestation_size_threshold": 2, - "analyse_trail_usage": 2, - "analyse_mm_tabling": 2, - "untuple": 2, - "tuple": 2, - "tuple_trace_counts_file": 2, - "tuple_costs_ratio": 2, - "tuple_min_args": 2, - "inline_par_builtins": 2, - "always_specialize_in_dep_par_conjs": 2, - "allow_some_paths_only_waits": 2, - "structure_sharing_analysis": 2, - "structure_sharing_widening": 2, - "structure_reuse_analysis": 2, - "structure_reuse_constraint": 2, - "structure_reuse_constraint_arg": 2, - "structure_reuse_max_conditions": 2, - "structure_reuse_repeat": 2, - "structure_reuse_free_cells": 2, - "termination_check": 2, - "verbose_check_termination": 2, - "termination_single_args": 2, - "termination_norm": 2, - "termination_error_limit": 2, - "termination_path_limit": 2, - "termination2": 2, - "check_termination2": 2, - "verbose_check_termination2": 2, - "termination2_norm": 2, - "widening_limit": 2, - "arg_size_analysis_only": 2, - "propagate_failure_constrs": 2, - "term2_maximum_matrix_size": 2, - "analyse_exceptions": 2, - "analyse_closures": 2, - "smart_indexing": 2, - "dense_switch_req_density": 2, - "lookup_switch_req_density": 2, - "dense_switch_size": 2, - "lookup_switch_size": 2, - "string_hash_switch_size": 2, - "string_binary_switch_size": 2, - "tag_switch_size": 2, - "try_switch_size": 2, - "binary_switch_size": 2, - "switch_single_rec_base_first": 2, - "switch_multi_rec_base_first": 2, - "use_atomic_cells": 2, - "middle_rec": 2, - "simple_neg": 2, - "optimize_tailcalls": 2, - "optimize_initializations": 2, - "eliminate_local_vars": 2, - "generate_trail_ops_inline": 2, - "common_data": 2, - "common_layout_data": 2, - "Also": 1, - "used": 2, - "for": 8, - "MLDS": 2, - "optimizations.": 1, - "optimize_peep": 2, - "optimize_peep_mkword": 2, - "optimize_jumps": 2, - "optimize_fulljumps": 2, - "pessimize_tailcalls": 2, - "checked_nondet_tailcalls": 2, - "use_local_vars": 2, - "local_var_access_threshold": 2, - "standardize_labels": 2, - "optimize_labels": 2, - "optimize_dups": 2, - "optimize_proc_dups": 2, - "optimize_frames": 2, - "optimize_delay_slot": 2, - "optimize_reassign": 2, - "optimize_repeat": 2, - "layout_compression_limit": 2, - "use_macro_for_redo_fail": 2, - "emit_c_loops": 2, - "everything_in_one_c_function": 2, - "local_thread_engine_base": 2, - "erlang_switch_on_strings_as_atoms": 2, - "target_debug": 2, - "cc": 2, - "cflags": 2, - "quoted_cflag": 2, - "c_include_directory": 2, - "c_optimize": 2, - "ansi_c": 2, - "inline_alloc": 2, - "gcc_flags": 2, - "quoted_gcc_flag": 2, - "clang_flags": 2, - "quoted_clang_flag": 2, - "msvc_flags": 2, - "quoted_msvc_flag": 2, - "cflags_for_warnings": 2, - "cflags_for_optimization": 2, - "cflags_for_ansi": 2, - "cflags_for_regs": 2, - "cflags_for_gotos": 2, - "cflags_for_threads": 2, - "cflags_for_debug": 2, - "cflags_for_pic": 2, - "c_flag_to_name_object_file": 2, - "object_file_extension": 2, - "pic_object_file_extension": 2, - "link_with_pic_object_file_extension": 2, - "c_compiler_type": 2, - "csharp_compiler_type": 2, - "java_compiler": 2, - "java_interpreter": 2, - "java_flags": 2, - "quoted_java_flag": 2, - "java_classpath": 2, - "java_object_file_extension": 2, - "il_assembler": 2, - "ilasm_flags": 2, - "quoted_ilasm_flag": 2, - "dotnet_library_version": 2, - "support_ms_clr": 2, - "support_rotor_clr": 2, - "csharp_compiler": 2, - "csharp_flags": 2, - "quoted_csharp_flag": 2, - "cli_interpreter": 2, - "erlang_compiler": 2, - "erlang_interpreter": 2, - "erlang_flags": 2, - "quoted_erlang_flag": 2, - "erlang_include_directory": 2, - "erlang_object_file_extension": 2, - "erlang_native_code": 2, - "erlang_inhibit_trivial_warnings": 2, - "output_file_name": 3, - "ld_flags": 2, - "quoted_ld_flag": 2, - "ld_libflags": 2, - "quoted_ld_libflag": 2, - "link_library_directories": 3, - "runtime_link_library_directories": 3, - "link_libraries": 3, - "link_objects": 2, - "mercury_library_directories": 2, - "mercury_library_directory_special": 2, - "search_library_files_directories": 2, - "search_library_files_directory_special": 2, - "mercury_libraries": 2, - "mercury_library_special": 2, - "mercury_standard_library_directory": 2, - "mercury_standard_library_directory_special": 2, - "init_file_directories": 2, - "init_files": 2, - "trace_init_files": 2, - "linkage": 2, - "linkage_special": 2, - "mercury_linkage": 2, - "mercury_linkage_special": 2, - "strip": 2, - "demangle": 2, - "allow_undefined": 2, - "use_readline": 2, - "runtime_flags": 2, - "extra_initialization_functions": 2, - "frameworks": 2, - "framework_directories": 3, - "shared_library_extension": 2, - "library_extension": 2, - "executable_file_extension": 2, - "link_executable_command": 2, - "link_shared_lib_command": 2, - "create_archive_command": 2, - "create_archive_command_output_flag": 2, - "create_archive_command_flags": 2, - "ranlib_command": 2, - "ranlib_flags": 2, - "mkinit_command": 2, - "mkinit_erl_command": 2, - "demangle_command": 2, - "filtercc_command": 2, - "trace_libs": 2, - "thread_libs": 2, - "hwloc_libs": 2, - "hwloc_static_libs": 2, - "shared_libs": 2, - "math_lib": 2, - "readline_libs": 2, - "linker_opt_separator": 2, - "linker_thread_flags": 2, - "shlib_linker_thread_flags": 2, - "linker_static_flags": 2, - "linker_strip_flag": 2, - "linker_link_lib_flag": 2, - "linker_link_lib_suffix": 2, - "shlib_linker_link_lib_flag": 2, - "shlib_linker_link_lib_suffix": 2, - "linker_debug_flags": 2, - "shlib_linker_debug_flags": 2, - "linker_trace_flags": 2, - "shlib_linker_trace_flags": 2, - "linker_path_flag": 2, - "linker_rpath_flag": 2, - "linker_rpath_separator": 2, - "shlib_linker_rpath_flag": 2, - "shlib_linker_rpath_separator": 2, - "linker_allow_undefined_flag": 2, - "linker_error_undefined_flag": 2, - "shlib_linker_use_install_name": 2, - "shlib_linker_install_name_flag": 2, - "shlib_linker_install_name_path": 2, - "java_archive_command": 2, - "make": 3, - "keep_going": 3, - "rebuild": 3, - "jobs": 3, - "track_flags": 2, - "invoked_by_mmc_make": 2, - "extra_init_command": 2, - "pre_link_command": 2, - "install_prefix": 2, - "use_symlinks": 2, - "mercury_configuration_directory": 2, - "mercury_configuration_directory_special": 2, - "install_command": 2, - "install_command_dir_option": 2, - "libgrades": 2, - "libgrades_include_components": 2, - "libgrades_exclude_components": 2, - "lib_linkages": 2, - "flags_file": 2, - "options_files": 2, - "config_file": 2, - "options_search_directories": 2, - "use_subdirs": 2, - "use_grade_subdirs": 2, - "search_directories": 3, - "intermod_directories": 2, - "use_search_directories_for_intermod": 2, - "libgrade_install_check": 2, - "order_make_by_timestamp": 2, - "show_make_times": 2, - "extra_library_header": 2, - "restricted_command_line": 2, - "env_type": 2, - "host_env_type": 2, - "target_env_type": 2, - "filenames_from_stdin": 2, - "typecheck_ambiguity_warn_limit": 2, - "typecheck_ambiguity_error_limit": 2, - "help": 4, - "version": 3, - "fullarch": 2, - "cross_compiling": 2, - "local_module_id": 2, - "analysis_file_cache_dir": 2, - "compiler_sufficiently_recent": 2, - "experiment": 2, - "ignore_par_conjunctions": 2, - "control_granularity": 2, - "distance_granularity": 2, - "implicit_parallelism": 2, - "feedback_file": 2, - "par_loop_control": 2, - "par_loop_control_preserve_tail_recursion.": 1, - "libs.handle_options.": 1, - "dir.": 1, - "option_category": 2, - "warning_option": 2, - "verbosity_option": 2, - "output_option": 2, - "aux_output_option": 2, - "language_semantics_option": 2, - "compilation_model_option": 2, - "internal_use_option": 2, - "code_gen_option": 2, - "special_optimization_option": 2, - "optimization_option": 2, - "target_code_compilation_option": 2, - "link_option": 2, - "build_system_option": 2, - "miscellaneous_option.": 1, - "Option": 2, - "option_defaults_2": 18, - "_Category": 1, - "OptionsList": 2, - "list.member": 2, - "multi.": 1, - "bool_special": 7, - "XXX": 3, - "should": 1, - "be": 1, - "accumulating": 49, - "maybe_string": 6, - "special": 17, - "string_special": 18, - "int_special": 1, - "maybe_string_special": 1, - "file_special": 1, - "miscellaneous_option": 1, - "par_loop_control_preserve_tail_recursion": 1, - "check_hlds.polymorphism.": 1, - "hlds.": 1, - "mdbcomp.": 1, - "parse_tree.": 1, - "polymorphism_process_module": 2, - "polymorphism_process_generated_pred": 2, - "unification_typeinfos_rtti_varmaps": 2, - "rtti_varmaps": 9, - "unification": 8, - "polymorphism_process_new_call": 2, - "builtin_state": 1, - "call_unify_context": 2, - "sym_name": 3, - "hlds_goal": 45, - "poly_info": 45, - "polymorphism_make_type_info_vars": 1, - "polymorphism_make_type_info_var": 1, - "int_or_var": 2, - "iov_int": 1, - "iov_var": 1, - "gen_extract_type_info": 1, - "tvar": 10, - "kind": 1, - "vartypes": 12, - "poly_info.": 1, - "create_poly_info": 1, - "poly_info_extract": 1, - "build_typeclass_info_type": 3, - "prog_constraint": 4, - "type_is_typeclass_info": 1, - "type_is_type_info_or_ctor_type": 1, - "build_type_info_type": 1, - "get_special_proc": 1, - "special_pred_id": 2, - "get_special_proc_det": 1, - "convert_pred_to_lambda_goal": 3, - "purity": 1, - "lambda_eval_method": 1, - "unify_context": 3, - "context": 1, - "unify_rhs": 4, - "fix_undetermined_mode_lambda_goal": 2, - "rhs_lambda_goal": 7, - "init_type_info_var": 1, - "init_const_type_ctor_info_var": 1, - "type_ctor": 1, - "cons_id": 2, - "type_info_kind": 2, - "type_info": 8, - "type_ctor_info.": 1, - "new_type_info_var_raw": 1, - "check_hlds.clause_to_proc.": 1, - "check_hlds.mode_util.": 1, - "hlds.from_ground_term_util.": 1, - "hlds.const_struct.": 1, - "hlds.goal_util.": 1, - "hlds.hlds_args.": 1, - "hlds.hlds_clauses.": 1, - "hlds.hlds_code_util.": 1, - "hlds.passes_aux.": 1, - "hlds.pred_table.": 1, - "hlds.quantification.": 1, - "hlds.special_pred.": 1, - "libs.": 1, - "mdbcomp.program_representation.": 1, - "parse_tree.prog_mode.": 1, - "parse_tree.prog_type_subst.": 1, + "can": 4, + "have": 1, + "multiple": 1, "solutions.": 1, - "module_info_get_preds": 3, - ".ModuleInfo": 8, - "Preds0": 2, - "PredIds0": 2, - "list.foldl": 6, - "maybe_polymorphism_process_pred": 3, - "Preds1": 2, - "PredIds1": 2, - "fixup_pred_polymorphism": 4, - "expand_class_method_bodies": 1, - "PredModule": 8, - "pred_info_module": 4, - "PredName": 8, - "pred_info_name": 4, - "PredArity": 6, - "pred_info_orig_arity": 3, - "no_type_info_builtin": 3, - "copy_module_clauses_to_procs": 1, - "polymorphism_process_pred_msg": 3, - "PredTable0": 3, - "map.lookup": 2, - "PredInfo0": 16, - "pred_info_get_clauses_info": 2, - "ClausesInfo0": 5, - "clauses_info_get_vartypes": 2, - "VarTypes0": 12, - "clauses_info_get_headvars": 2, - "pred_info_get_arg_types": 7, - "TypeVarSet": 15, - "ExistQVars": 13, - "ArgTypes0": 3, - "proc_arg_vector_partition_poly_args": 1, - "ExtraHeadVarList": 2, - "OldHeadVarList": 2, - "lookup_var_types": 6, - "ExtraArgTypes": 2, - "ArgTypes": 6, - "pred_info_set_arg_types": 1, - "PredInfo1": 5, - "OldHeadVarTypes": 2, - "type_list_subsumes": 2, - "Subn": 3, - "map.is_empty": 1, - "pred_info_set_existq_tvar_binding": 1, - "PredInfo2": 7, - "polymorphism_introduce_exists_casts_pred": 3, - "PredTable": 2, - "module_info_set_preds": 1, - "pred_info_get_procedures": 2, - ".PredInfo": 2, - "Procs0": 4, - "map.map_values_only": 1, - ".ProcInfo": 2, - "det": 21, - "introduce_exists_casts_proc": 1, - "Procs": 4, - "pred_info_set_procedures": 2, - "trace": 4, - "compiletime": 4, - "flag": 4, - "write_pred_progress_message": 1, - "polymorphism_process_pred": 4, - "mutable": 3, - "selected_pred": 1, - "ground": 9, - "untrailed": 2, - "level": 1, - "promise_pure": 30, - "pred_id_to_int": 1, - "impure": 2, - "set_selected_pred": 2, - "polymorphism_process_clause_info": 3, - "ClausesInfo": 13, - "Info": 134, - "ExtraArgModes": 20, - "poly_info_get_module_info": 4, - "poly_info_get_const_struct_db": 1, - "ConstStructDb": 2, - "module_info_set_const_struct_db": 1, - "poly_info_get_typevarset": 4, - "pred_info_set_typevarset": 1, - "pred_info_set_clauses_info": 1, - "ProcIds": 5, - "pred_info_procids": 2, - "polymorphism_process_proc_in_table": 3, - "module_info_set_pred_info": 1, - "clauses_info": 6, - "poly_arg_vector": 9, - "mer_mode": 14, - "ModuleInfo0": 8, - "init_poly_info": 1, - ".ClausesInfo": 2, - "_VarSet": 1, - "ExplicitVarTypes": 2, - "_TVarNameMap": 1, - "_VarTypes": 1, - "HeadVars0": 5, - "ClausesRep0": 2, - "ItemNumbers": 2, - "_RttiVarMaps": 1, - "HaveForeignClauses": 2, - "setup_headvars": 3, - "UnconstrainedTVars": 15, - "ExtraTypeInfoHeadVars": 4, - "ExistTypeClassInfoHeadVars": 6, - "get_clause_list": 1, - "Clauses0": 2, - "list.map_foldl": 2, - "polymorphism_process_clause": 3, - "Clauses": 2, - "poly_info_get_varset": 4, - ".Info": 25, - "poly_info_get_var_types": 6, - "poly_info_get_rtti_varmaps": 4, - "RttiVarMaps": 16, - "set_clause_list": 1, - "ClausesRep": 2, - "TVarNameMap": 2, - "This": 2, - "only": 4, - "while": 1, - "adding": 1, - "the": 27, - "clauses.": 1, - "proc_arg_vector": 9, - "clause": 2, - "OldHeadVars": 2, - "NewHeadVars": 2, - "Clause": 2, - "pred_info_is_imported": 2, - "Goal0": 21, - ".Clause": 1, - "clause_body": 2, - "empty_cache_maps": 4, - "poly_info_set_num_reuses": 1, - "polymorphism_process_goal": 20, - "Goal1": 2, - "produce_existq_tvars": 3, - "Goal2": 2, - "pred_info_get_exist_quant_tvars": 1, - "fixup_quantification": 1, - "Goal": 40, - "proc_table": 2, - "ProcTable": 2, - ".ProcTable": 1, - "ProcInfo0": 2, - "polymorphism_process_proc": 3, - "pred_info_is_pseudo_imported": 1, - "hlds_pred.in_in_unification_proc_id": 1, - "HeadVarList": 4, - "proc_arg_vector_to_list": 2, - "clauses_info_get_rtti_varmaps": 1, - "clauses_info_get_varset": 1, - "proc_info_set_headvars": 1, - "proc_info_set_rtti_varmaps": 1, - "proc_info_set_varset": 1, - "proc_info_set_vartypes": 1, - "copy_clauses_to_proc": 1, - "proc_info_get_argmodes": 2, - "ArgModes1": 2, - "ExtraArgModesList": 2, - "poly_arg_vector_to_list": 1, - "ArgModes": 5, - "proc_info_set_argmodes": 1, - "ExtraHeadTypeInfoVars": 7, - "ExistHeadTypeClassInfoVars": 9, - "pred_info_get_origin": 1, - "Origin": 8, - "ExtraArgModes0": 3, - "poly_arg_vector_init": 1, - "origin_instance_method": 1, - "InstanceMethodConstraints": 4, - "setup_headvars_instance_method": 3, - "origin_special_pred": 1, - "origin_transformed": 1, - "origin_created": 1, - "origin_assertion": 1, - "origin_lambda": 1, - "origin_user": 1, - "pred_info_get_class_context": 4, - "ClassContext": 6, - "InstanceTVars": 7, - "InstanceUnconstrainedTVars": 2, - "InstanceUnconstrainedTypeInfoVars": 2, - "setup_headvars_2": 4, - "instance_method_constraints": 2, - "InstanceTypes": 2, - "InstanceConstraints": 3, - "type_vars_list": 5, - "get_unconstrained_tvars": 1, - "UnconstrainedInstanceTVars": 6, - "ArgTypeVarSet": 5, - "make_head_vars": 3, - "UnconstrainedInstanceTypeInfoVars": 7, - "make_typeclass_info_head_vars": 3, - "do_record_type_info_locns": 3, - "InstanceHeadTypeClassInfoVars": 4, - "proc_arg_vector_set_instance_type_infos": 1, - "proc_arg_vector_set_instance_typeclass_infos": 1, - "RttiVarMaps0": 4, - "rtti_reuse_typeclass_info_var": 3, - "poly_info_set_rtti_varmaps": 3, - "in_mode": 3, - "InMode": 3, - "list.duplicate": 6, - "list.length": 16, - "UnconstrainedInstanceTypeInfoModes": 2, - "InstanceHeadTypeClassInfoModes": 2, - "poly_arg_vector_set_instance_type_infos": 1, - "poly_arg_vector_set_instance_typeclass_infos": 1, - "prog_constraints": 1, - "AllUnconstrainedTVars": 2, - "AllExtraHeadTypeInfoVars": 2, - "constraints": 4, - "UnivConstraints": 3, - "ExistConstraints": 6, - "prog_type.constraint_list_get_tvars": 2, - "UnivConstrainedTVars": 2, - "ExistConstrainedTVars": 2, - "poly_info_get_constraint_map": 4, - "ConstraintMap": 12, - "get_improved_exists_head_constraints": 4, - "ActualExistConstraints": 9, - "pred_info_get_markers": 1, - "PredMarkers": 2, - "check_marker": 1, - "marker_class_method": 1, - "RecordExistQLocns": 3, - "do_not_record_type_info_locns": 1, - "UnivHeadTypeClassInfoVars": 4, - "HeadTypeVars": 2, - "list.delete_elems": 12, - "UnconstrainedTVars0": 2, - "UnconstrainedTVars1": 2, - "UnconstrainedTVars2": 2, - "list.remove_dups": 4, - "UnconstrainedUnivTVars": 7, - "UnconstrainedExistTVars": 6, - "ExistHeadTypeInfoVars": 5, - "UnivHeadTypeInfoVars": 4, - "list.condense": 4, - "proc_arg_vector_set_univ_type_infos": 1, - "HeadVars1": 2, - "proc_arg_vector_set_exist_type_infos": 1, - "HeadVars2": 2, - "proc_arg_vector_set_univ_typeclass_infos": 1, - "HeadVars3": 2, - "proc_arg_vector_set_exist_typeclass_infos": 1, - "In": 6, - "out_mode": 2, - "Out": 6, - "NumUnconstrainedUnivTVars": 2, - "NumUnconstrainedExistTVars": 2, - "NumUnivClassInfoVars": 2, - "NumExistClassInfoVars": 2, - "UnivTypeInfoModes": 2, - "ExistTypeInfoModes": 2, - "UnivTypeClassInfoModes": 2, - "ExistTypeClassInfoModes": 2, - "poly_arg_vector_set_univ_type_infos": 1, - "poly_arg_vector_set_exist_type_infos": 1, - "poly_arg_vector_set_univ_typeclass_infos": 1, - "poly_arg_vector_set_exist_typeclass_infos": 1, - "some": 4, - "ToLocn": 4, - "TheVar": 2, - "TheLocn": 2, - "list.map": 17, - "UnivTypeLocns": 2, - "list.foldl_corresponding": 3, - "rtti_det_insert_type_info_locn": 3, - "ExistTypeLocns": 2, - "UnconstrainedInstanceTypeLocns": 2, - ".RttiVarMaps": 1, - "TypeInfoHeadVars": 2, - "pred_info_get_tvar_kinds": 2, - "KindMap": 2, - "PredClassContext": 5, - "PredExistConstraints": 2, - "exist_constraints": 1, - "ExistQVarsForCall": 2, - "goal_info_get_context": 4, - "make_typeclass_info_vars": 3, - "ExistTypeClassVarsMCAs": 2, - "ExtraTypeClassGoals": 5, - "assoc_list.keys": 8, - "ExistTypeClassVars": 3, - "assign_var_list": 8, - "ExtraTypeClassUnifyGoals": 2, - "vartypes_is_empty": 1, - "PredToActualTypeSubst": 4, - "ActualArgTypes": 8, - "ArgTypeSubst": 2, - "apply_subst_to_tvar_list": 1, - "ActualTypes": 2, - "polymorphism_do_make_type_info_vars": 5, - "TypeInfoVarsMCAs": 2, - "ExtraTypeInfoGoals": 4, - "TypeInfoVars": 5, - "ExtraTypeInfoUnifyGoals": 2, - "GoalList": 8, - "conj_list_to_goal": 6, - "Var1": 5, - "Vars1": 2, - "Var2": 5, - "Vars2": 2, - "Goals": 13, - "assign_var": 3, - "true_goal": 1, - "term.context_init": 2, - "create_pure_atomic_complicated_unification": 1, - "rhs_var": 2, - "umc_explicit": 1, - "constraint_map": 1, - "NumExistConstraints": 4, - "search_hlds_constraint_list": 1, - "unproven": 3, - "goal_id": 1, - "ActualExistConstraints0": 2, - "GoalExpr0": 18, - "GoalInfo0": 41, - "generic_call": 1, - "plain_call": 5, - "ArgVars0": 23, - "polymorphism_process_call": 4, - "ExtraVars": 13, - "ExtraGoals": 13, - "ArgVars": 6, - "CallExpr": 4, - "call_args": 1, - "Call": 4, - "call_foreign_proc": 4, - "polymorphism_process_foreign_proc": 3, - "XVar": 11, - "Y": 9, - "Mode": 12, - "Unification": 16, - "UnifyContext": 15, - "polymorphism_process_unify": 4, - "conj": 5, - "ConjType": 4, - "Goals0": 13, - "plain_conj": 4, - "polymorphism_process_plain_conj": 5, - "parallel_conj": 1, - "get_cache_maps_snapshot": 11, - "InitialSnapshot": 36, - "polymorphism_process_par_conj": 5, - "GoalExpr": 19, - "disj": 2, - "polymorphism_process_disj": 6, - "set_cache_maps_snapshot": 15, - "if_then_else": 2, - "Cond0": 2, - "Then0": 2, - "Else0": 2, - "Cond": 2, - "Then": 2, - "Else": 2, - "negation": 2, - "SubGoal0": 14, - "SubGoal": 16, - "switch": 2, - "CanFail": 4, - "Cases0": 4, - "polymorphism_process_cases": 5, - "Cases": 4, - "scope": 7, - "Reason0": 16, - "from_ground_term": 2, - "TermVar": 4, - "Kind": 5, - "from_ground_term_initial": 2, - "polymorphism_process_from_ground_term_initial": 3, - "from_ground_term_construct": 1, - "from_ground_term_deconstruct": 1, - "from_ground_term_other": 1, - "promise_solutions": 1, - "promise_purity": 1, - "require_detism": 1, - "require_complete_switch": 1, - "commit": 1, - "barrier": 1, - "loop_control": 1, - "exist_quant": 1, - "trace_goal": 1, - "shorthand": 2, - "ShortHand0": 4, - "atomic_goal": 2, - "GoalType": 2, - "Outer": 2, - "Inner": 2, - "MainGoal0": 2, - "OrElseGoals0": 2, - "OrElseInners": 2, - "MainGoal": 2, - "OrElseGoals": 2, - "ShortHand": 3, - "try_goal": 2, - "MaybeIO": 2, - "ResultVar": 2, - "SubGoalExpr0": 4, - "SubGoalInfo": 2, - "Conjuncts0": 2, - "ConjunctA0": 2, - "ConjunctB0": 2, - "ConjunctA": 2, - "ConjunctB": 2, - "Conjuncts": 2, - "SubGoalExpr": 2, - "bi_implication": 1, - "hlds_goal_expr": 2, - "SubGoalInfo0": 2, - "SubGoals0Prime": 2, - "SubGoals0": 2, - "polymorphism_process_fgti_goals": 5, - "RevMarkedSubGoals": 2, - "fgt_invariants_kept": 2, - "InvariantsStatus": 7, - "Reason": 2, - "fgt_invariants_broken": 2, - "introduce_partial_fgt_scopes": 1, - "deconstruct_top_down": 1, - "fgt_marked_goal": 2, - "fgt_invariants_status": 2, - "RevMarkedGoals": 4, - "OldInfo": 3, - "XVarPrime": 2, - "ModePrime": 2, - "UnificationPrime": 2, - "UnifyContextPrime": 2, - "rhs_functor": 5, - "ConsIdPrime": 2, - "YVarsPrime": 2, - "ConsId": 10, - "YVars": 4, - "polymorphism_process_unify_functor": 4, - "Changed": 10, - "VarSetBefore": 2, - "MaxVarBefore": 2, - "varset.max_var": 2, - "poly_info_get_num_reuses": 2, - "NumReusesBefore": 2, - "VarSetAfter": 2, - "MaxVarAfter": 2, - "NumReusesAfter": 2, - "MarkedGoal": 3, - "fgt_kept_goal": 1, - "fgt_broken_goal": 1, - ".RevMarkedGoals": 1, - "unify_mode": 2, - "Unification0": 8, - "_YVar": 1, - "unification_typeinfos": 5, - "_Changed": 3, - "Args": 11, - "Purity": 9, - "Groundness": 6, - "PredOrFunc": 6, - "EvalMethod": 8, - "LambdaVars": 13, - "Modes": 4, - "Det": 4, - "LambdaGoal0": 5, - "LambdaGoal1": 2, - "fixup_lambda_quantification": 1, - "LambdaGoal": 6, - "NonLocalTypeInfos": 3, - "set_of_var.to_sorted_list": 1, - "NonLocalTypeInfosList": 2, - "Y1": 2, - "NonLocals0": 10, - "goal_info_get_nonlocals": 6, - "NonLocals": 12, - "goal_info_set_nonlocals": 6, - "type_vars": 2, - "TypeVars": 8, - "get_type_info_locn": 1, - "TypeInfoLocns": 6, - "add_unification_typeinfos": 4, - "rtti_lookup_type_info_locn": 1, - "type_info_locn": 1, - "type_info_locn_var": 1, - "TypeInfoVars0": 2, - ".GoalInfo": 1, - "set_of_var.insert_list": 4, - ".Unification": 5, - "complicated_unify": 2, - "construct": 1, - "deconstruct": 2, - "simple_test": 1, - "X0": 8, - "ConsId0": 5, - "Mode0": 4, - "TypeOfX": 6, - "Arity": 5, - "closure_cons": 1, - "ShroudedPredProcId": 2, - "ProcId0": 3, - "unshroud_pred_proc_id": 1, - "type_is_higher_order_details": 1, - "_PredOrFunc": 1, - "CalleeArgTypes": 2, - "invalid_proc_id": 1, - "goal_info_add_feature": 1, - "feature_lambda_undetermined_mode": 1, - "GoalInfo1": 6, - "VarSet0": 2, - "Functor0": 6, - "poly_info_set_varset_and_types": 1, - "cons": 3, - "ConsTypeCtor": 2, - "remove_new_prefix": 1, - "OrigFunctor": 2, - "IsConstruction": 7, - "type_util.get_existq_cons_defn": 1, - "ConsDefn": 2, - "polymorphism_process_existq_unify_functor": 3, - "UnifyExpr": 2, - "Unify": 2, - "PredArgTypes": 10, - "Functor": 6, - "create_fresh_vars": 5, - "QualifiedPName": 5, - "qualified": 1, - "cons_id_dummy_type_ctor": 1, - "RHS": 2, - "CallUnifyContext": 2, - "LambdaGoalExpr": 2, - "not_builtin": 3, - "OutsideVars": 2, - "InsideVars": 2, - "set_of_var.intersect": 1, - "LambdaNonLocals": 2, - "GoalId": 8, - "goal_info_get_goal_id": 3, - "goal_info_init": 1, - "LambdaGoalInfo0": 2, - "goal_info_set_context": 1, - "LambdaGoalInfo1": 2, - "LambdaGoalInfo2": 2, - "goal_info_set_purity": 1, - "LambdaGoalInfo3": 2, - "goal_info_set_goal_id": 1, - "LambdaGoalInfo": 4, - "lambda_modes_and_det": 4, - "LambdaModes": 6, - "LambdaDet": 6, - "pred_info_is_pred_or_func": 1, - "ho_ground": 1, - "_LambdaModes0": 1, - "_LambdaDet0": 1, - "goal_to_conj_list": 1, - "LambdaGoalList0": 2, - "list.split_last": 1, - "LambdaGoalButLast0": 2, - "LastGoal0": 2, - "LastGoalExpr0": 2, - "LastGoalInfo0": 2, - "PredId0": 2, - "_DummyProcId": 1, - "Args0": 5, - "MaybeCallUnifyContext0": 2, - "QualifiedPName0": 2, - "LambdaGoalButLast": 2, - "LastGoalInfo": 2, - "MaybeCallUnifyContext": 4, - "LastGoalExpr": 2, - "LastGoal": 2, - "prog_vars": 1, - "determinism": 1, - "NumArgModes": 2, - "NumLambdaVars": 2, - "list.drop": 2, - "LambdaModesPrime": 2, - "proc_info_get_declared_determinism": 1, - "MaybeDet": 3, - "sorry": 1, - "varset.new_var": 1, - "add_var_type": 1, - "ctor_defn": 2, - "CtorDefn": 2, - "ActualRetType": 2, - "CtorTypeVarSet": 2, - "CtorExistQVars": 2, - "CtorKindMap": 2, - "CtorExistentialConstraints": 2, - "CtorArgTypes": 2, - "CtorRetType": 2, - "TypeVarSet0": 5, - "tvarset_merge_renaming": 3, - "CtorToParentRenaming": 6, - "apply_variable_renaming_to_tvar_list": 2, - "ParentExistQVars": 6, - "apply_variable_renaming_to_tvar_kind_map": 2, - "ParentKindMap": 7, - "apply_variable_renaming_to_prog_constraint_list": 1, - "ParentExistentialConstraints": 3, - "apply_variable_renaming_to_type_list": 4, - "ParentArgTypes": 6, - "apply_variable_renaming_to_type": 1, - "ParentRetType": 2, - "poly_info_set_typevarset": 3, - "type_list_subsumes_det": 3, - "ParentToActualTypeSubst": 6, - "NumExistentialConstraints": 3, - "lookup_hlds_constraint_list": 4, - "ActualExistentialConstraints": 4, - "ExtraTypeClassVarsMCAs": 2, - "ExtraTypeClassVars": 2, - "assumed": 2, - "make_existq_typeclass_info_vars": 2, - "constraint_list_get_tvars": 3, - "ParentExistConstrainedTVars": 4, - "ParentUnconstrainedExistQVars": 2, - "apply_rec_subst_to_tvar_list": 4, - "ActualExistentialTypes": 2, - "ExtraTypeInfoVarsMCAs": 2, - "ExtraTypeInfoVars": 2, - "ExtraTypeClassVars.": 1, - "bound": 1, - "Attributes": 2, - "ProcExtraArgs": 2, - "MaybeTraceRuntimeCond": 2, - "Impl": 14, - "foreign_arg_var": 1, - "CanOptAwayUnnamed": 11, - "polymorphism_process_foreign_proc_args": 3, - "ExtraArgs": 5, - "pragma_foreign_code_impl": 4, - "foreign_arg": 1, - "PredTypeVarSet": 8, - "UnivCs": 4, - "ExistCs": 4, - "UnivVars0": 2, - "get_constrained_vars": 2, - "UnivConstrainedVars": 2, - "ExistVars0": 2, - "ExistConstrainedVars": 2, - "PredTypeVars0": 2, - "PredTypeVars1": 2, - "PredTypeVars2": 2, - "PredTypeVars": 3, - "foreign_proc_add_typeclass_info": 4, - "ExistTypeClassArgInfos": 2, - "UnivTypeClassArgInfos": 2, - "TypeClassArgInfos": 2, - "list.filter": 1, - "X": 9, - "semidet": 2, - "ExistUnconstrainedVars": 2, - "UnivUnconstrainedVars": 2, - "foreign_proc_add_typeinfo": 4, - "ExistTypeArgInfos": 2, - "UnivTypeArgInfos": 2, - "TypeInfoArgInfos": 2, - "ArgInfos": 2, - "TypeInfoTypes": 2, - "type_info_type": 1, - "UnivTypes": 2, - "ExistTypes": 2, - "OrigArgTypes": 2, - "make_foreign_args": 1, - "tvarset": 3, - "box_policy": 2, - "Constraint": 2, - "MaybeArgName": 7, - "native_if_possible": 2, - "SymName": 4, - "sym_name_to_string_sep": 1, - "TypeVarNames": 2, - "underscore_and_tvar_name": 3, - "string.append_list": 1, - "ConstraintVarName": 3, - "foreign_code_does_not_use_variable": 4, - "TVar": 4, - "varset.search_name": 1, - "TypeVarName": 2, - "C_VarName": 3, - "VarName": 2, - "foreign_code_uses_variable": 1, - "TVarName": 2, - "TVarName0": 1, - "TVarName0.": 1, - "cache_maps": 3, - "case": 4, - "Case0": 2, - "Case": 2, - "MainConsId": 2, - "OtherConsIds": 2, - "PredExistQVars": 2, - "PredKindMap": 3, - "varset.is_empty": 1, - "PredToParentTypeRenaming": 6, - "ParentTVars": 4, - "apply_variable_renaming_to_prog_constraints": 1, - "ParentClassContext": 2, - "ParentUnivConstraints": 3, - "ParentExistConstraints": 3, - "ParentUnivConstrainedTVars": 2, - "ParentUnconstrainedTVars0": 2, - "ParentUnconstrainedTVars1": 2, - "ParentUnconstrainedTVars": 3, - "ParentUnconstrainedUnivTVars": 3, - "ParentUnconstrainedExistTVars": 2, - "NumUnivConstraints": 2, - "ActualUnivConstraints": 2, - "ActualExistQVarTypes": 2, - "prog_type.type_list_to_var_list": 1, - "ActualExistQVars0": 2, - "ActualExistQVars": 2, - "ExtraUnivClassVarsMCAs": 2, - "ExtraUnivClassGoals": 2, - "ExtraUnivClassVars": 2, - "ExtraExistClassVars": 2, - "ExtraExistClassGoals": 2, - "ActualUnconstrainedUnivTypes": 2, - "ExtraUnivTypeInfoVarsMCAs": 2, - "ExtraUnivTypeInfoGoals": 2, - "ExtraUnivTypeInfoVars": 2, - "ActualUnconstrainedExistTypes": 2, - "ExtraExistTypeInfoVarsMCAs": 2, - "ExtraExistTypeInfoGoals": 2, - "ExtraExistTypeInfoVars": 2, - "CalleePredInfo": 2, - "CalleeProcInfo": 3, - "CallArgs0": 3, - "BuiltinState": 2, - "TVarSet0": 2, - "ActualArgTypes0": 3, - "PredTVarSet": 2, - "_PredExistQVars": 1, - "CalleeHeadVars": 2, - "proc_info_get_rtti_varmaps": 1, - "CalleeRttiVarMaps": 2, - "NCallArgs0": 2, - "NPredArgs": 2, - "NExtraArgs": 3, - "OrigPredArgTypes0": 2, - "list.take": 1, - "CalleeExtraHeadVars0": 2, - "OrigPredArgTypes": 2, - "CalleeExtraHeadVars": 2, - "TVarSet": 2, - "PredToParentRenaming": 3, - "OrigParentArgTypes": 2, - "ParentToActualTSubst": 2, - "GetTypeInfoTypes": 2, - "ProgVar": 2, - "TypeInfoType": 2, - "rtti_varmaps_var_info": 1, - "VarInfo": 4, - "type_info_var": 1, - "typeclass_info_var": 1, - "non_rtti_var": 1, - "PredTypeInfoTypes": 2, - "ParentTypeInfoTypes": 2, - "apply_rec_subst_to_type_list": 1, - "ActualTypeInfoTypes": 2, - "Ctxt": 2, - "ExtraArgsConstArgs": 2, - "CallArgs": 2, - "NonLocals1": 2, - "CallGoalExpr": 2, - "CallGoal": 2, - "rot13_concise.": 1, - "state": 3, - "alphabet": 3, - "cycle": 4, - "rot_n": 2, - "Char": 12, - "RotChar": 8, - "char_to_string": 1, - "CharString": 2, - "if": 15, - "sub_string_search": 1, - "Index": 3, - "then": 3, - "NewIndex": 2, - "mod": 1, - "index_det": 1, - "else": 8, - "rot13": 11, - "read_char": 1, - "Res": 8, - "ok": 3, - "print": 3, - "ErrorCode": 4, - "error_message": 1, - "ErrorMessage": 4, - "stderr_stream": 1, - "StdErr": 8, - "nl": 1, - "rot13_ralph.": 1, - "io__state": 4, - "io__read_byte": 1, - "Result": 4, - "io__write_byte": 1, - "ErrNo": 2, - "io__error_message": 2, - "z": 1, - "Rot13": 2, - "<": 14, - "rem": 1, - "rot13_verbose.": 1, - "rot13a/2": 1, - "table": 1, - "alphabetic": 2, - "characters": 1, - "their": 1, - "equivalents": 1, - "fails": 1, - "input": 1, - "not": 7, - "rot13a": 55, - "rot13/2": 1, - "Applies": 1, - "algorithm": 1, - "a": 10, - "character.": 1, - "TmpChar": 2, - "io__read_char": 1, - "io__write_char": 1, - "io__stderr_stream": 1, - "io__write_string": 2, - "io__nl": 1, - "store.": 1, - "typeclass": 1, - "store": 52, - "T": 52, - "where": 8, - "S": 133, - "instance": 4, - "io.state": 3, - "store.init": 2, - "generic_mutvar": 15, - "io_mutvar": 1, - "store_mutvar": 1, - "store.new_mutvar": 1, - "store.copy_mutvar": 1, - "store.get_mutvar": 1, - "store.set_mutvar": 1, - "<=>": 5, - "new_cyclic_mutvar": 2, - "Func": 4, - "Mutvar": 23, - "Create": 1, - "new": 25, - "variable": 1, - "whose": 2, - "initialized": 2, - "with": 5, - "returned": 1, - "from": 1, - "specified": 1, - "function": 3, - "The": 2, - "argument": 6, - "passed": 2, - "mutvar": 6, - "itself": 4, - "has": 4, - "yet": 1, - "been": 1, - "safe": 2, - "because": 1, - "does": 3, - "get": 2, - "so": 3, - "it": 1, - "can": 1, - "t": 5, - "examine": 1, - "uninitialized": 1, - "predicate": 1, - "useful": 1, - "creating": 1, - "self": 1, - "referential": 1, - "values": 1, - "such": 2, - "as": 5, - "circular": 1, - "linked": 1, - "lists": 1, - "For": 1, - "example": 1, - "clist": 2, - "node": 1, - "store.new_cyclic_mutvar": 1, - "generic_ref": 20, - "io_ref": 1, - "store_ref": 1, - "store.new_ref": 1, - "store.ref_functor": 1, - "store.arg_ref": 1, - "ArgT": 4, - "store.new_arg_ref": 3, - "store.set_ref": 1, - "store.set_ref_value": 1, - "store.copy_ref_value": 1, - "store.extract_ref_value": 1, - "Nasty": 1, - "performance": 2, - "hacks": 1, - "WARNING": 1, - "use": 1, - "of": 10, - "these": 1, - "procedures": 2, - "dangerous": 1, - "Use": 1, - "them": 1, - "last": 1, - "resort": 1, - "critical": 1, - "and": 6, - "shows": 1, - "that": 2, - "using": 1, - "versions": 1, - "bottleneck": 1, - "These": 1, - "may": 1, - "vanish": 1, - "future": 1, - "Mercury": 1, - "unsafe_arg_ref": 1, - "same": 2, - "arg_ref": 12, - "unsafe_new_arg_ref": 1, - "new_arg_ref": 1, - "except": 1, - "they": 4, - "doesn": 1, - "check": 1, - "errors": 1, - "don": 3, - "work": 3, - "no_tag": 1, - "types": 3, - "exactly": 2, - "one": 2, - "functor": 2, - "which": 2, - "arguments": 2, - "occupy": 1, - "word": 2, - "other": 1, - "functors.": 1, - "store.unsafe_arg_ref": 1, - "store.unsafe_new_arg_ref": 1, - "implementation": 1, - "require": 1, - "just": 1, - "real": 1, - "representation": 1, - "pragma": 41, - "foreign_type": 10, - "MR_Word": 24, - "can_pass_as_mercury_type": 5, - "equality": 5, - "store_equal": 7, - "comparison": 5, - "store_compare": 7, - "int32": 1, - "Java": 12, - "Erlang": 3, - "attempt": 2, - "two": 2, - "stores": 2, - "comparison_result": 1, - "compare": 1, - "Mutvars": 1, - "references": 1, - "are": 1, - "each": 1, - "represented": 1, - "pointer": 1, - "single": 1, - "on": 1, - "heap": 1, - "private_builtin.ref": 2, - "ref": 2, - "store.do_init": 6, - "foreign_proc": 28, - "_S0": 16, - "will_not_call_mercury": 28, - "will_not_modify_trail": 7, - "new_mutvar": 5, - "Val": 45, - "S0": 23, - "get_mutvar": 5, - "set_mutvar": 5, - "_S": 12, - "copy_mutvar": 1, - "Copy": 2, - "Value": 4, - "store.unsafe_new_uninitialized_mutvar": 1, - "unsafe_new_uninitialized_mutvar": 4, - "MR_offset_incr_hp_msg": 5, - "MR_SIZE_SLOT_SIZE": 10, - "1": 5, - "MR_ALLOC_ID": 5, - "2": 2, - "MR_define_size_slot": 5, - "0": 2, - "object": 21, - "MutVar": 4, - "Store": 5, - "apply": 1, - "Ref": 41, - "foreign_code": 2, - "public": 17, - "class": 4, - "Object": 9, - "referenced": 4, - "obj": 7, - "Specific": 2, - "field": 20, - "or": 2, - "null": 8, - "specify": 2, - "GetFields": 2, - "return": 6, - "fields": 3, - "any": 2, - "particular": 2, - "order": 2, - "really": 2, - "usable": 2, - "System": 1, - "Reflection": 1, - "FieldInfo": 1, - "Constructors": 2, - "init": 8, - "setField": 4, - "Set": 2, - "according": 2, - "given": 2, - "index": 2, - "void": 4, - "GetType": 1, - "reference": 4, - "getValue": 4, - "GetValue": 1, - "Update": 2, - "setValue": 2, - "SetValue": 1, - "static": 1, - "lang": 28, - "getDeclaredFields": 2, - "reflect": 1, - "Field": 5, - "try": 3, - "getClass": 1, - "catch": 11, - "SecurityException": 1, - "se": 1, - "throw": 11, - "RuntimeException": 11, - "Security": 1, - "manager": 1, - "denied": 1, - "access": 3, - "ArrayIndexOutOfBoundsException": 1, - "e": 13, - "No": 1, - "Exception": 3, - "Unable": 3, - "getMessage": 3, - "IllegalAccessException": 2, - "inaccessible": 2, - "IllegalArgumentException": 2, - "mismatch": 2, - "NullPointerException": 2, - "new_ref": 4, - "ets": 3, - "insert": 1, - "copy_ref_value": 1, - "unsafe_ref_value": 6, - "store.unsafe_ref_value": 1, - "lookup": 1, - "ref_functor": 1, - "canonicalize": 1, - "foreign_decl": 1, - "include": 4, - "mercury_type_info": 1, - "h": 4, - "mercury_heap": 1, - "mercury_misc": 1, - "MR_fatal_error": 5, - "mercury_deconstruct": 1, - "MR_arg": 3, - "ArgNum": 7, - "ArgRef": 22, - "may_not_duplicate": 1, - "MR_TypeInfo": 10, - "arg_type_info": 6, - "exp_arg_type_info": 6, - "MR_DuArgLocn": 2, - "arg_locn": 9, - "TypeInfo_for_T": 2, - "TypeInfo_for_ArgT": 2, - "MR_save_transient_registers": 2, - "MR_NONCANON_ABORT": 2, - "number": 2, - "range": 2, - "MR_compare_type_info": 2, - "MR_COMPARE_EQUAL": 2, - "wrong": 2, - "MR_restore_transient_registers": 2, - "NULL": 2, - "MR_arg_bits": 2, - "store.ref/2": 3, - "MR_arg_value": 2, - "C#": 6, - "store.Ref": 8, - "Ref.getValue": 6, - "*arg_ref": 1, - "*arg_locn": 1, - "&": 7, - "&&": 1, - "ValRef": 1, - "Ref.setValue": 3, - "ValRef.getValue": 2, - "*Ptr": 2, - "Ptr": 4, - "MR_strip_tag": 2, - "Arg": 6 - }, - "Monkey": { - "Strict": 1, - "sample": 1, - "class": 1, - "from": 1, - "the": 1, - "documentation": 1, - "Class": 3, - "Game": 1, - "Extends": 2, - "App": 1, - "Function": 2, - "New": 1, - "(": 12, - ")": 12, - "End": 8, - "DrawSpiral": 3, - "clock": 3, - "Local": 3, - "w": 3, - "DeviceWidth/2": 1, - "For": 1, - "i#": 1, - "Until": 1, - "w*1.5": 1, - "Step": 1, - ".2": 1, - "x#": 1, - "y#": 1, - "x": 2, - "+": 5, - "i*Sin": 1, - "i*3": 1, - "y": 2, - "i*Cos": 1, - "i*2": 1, - "DrawRect": 1, - "Next": 1, - "hitbox.Collide": 1, - "event.pos": 1, - "Field": 2, - "updateCount": 3, - "Method": 4, - "OnCreate": 1, - "Print": 2, - "SetUpdateRate": 1, - "OnUpdate": 1, - "OnRender": 1, - "Cls": 1, - "updateCount*1.1": 1, - "Enemy": 1, - "Die": 1, - "Abstract": 1, - "field": 1, - "testField": 1, - "Bool": 2, - "True": 2, - "oss": 1, - "he": 2, - "-": 2, - "killed": 1, - "me": 1, - "b": 6, - "extending": 1, - "with": 1, - "generics": 1, - "VectorNode": 1, - "Node": 1, - "": 1, - "array": 1, - "syntax": 1, - "Global": 14, - "listOfStuff": 3, - "String": 4, - "[": 6, - "]": 6, - "lessStuff": 1, - "oneStuff": 1, - "a": 3, - "comma": 1, - "separated": 1, - "sequence": 1, - "text": 1, - "worstCase": 1, - "worst.List": 1, - "": 1, - "escape": 1, - "characers": 1, - "in": 1, - "strings": 1, - "string3": 1, - "string4": 1, - "string5": 1, - "string6": 1, - "prints": 1, - ".ToUpper": 1, - "Boolean": 1, - "shorttype": 1, - "boolVariable1": 1, - "boolVariable2": 1, - "False": 1, - "preprocessor": 1, - "keywords": 1, - "#If": 1, - "TARGET": 2, - "DoStuff": 1, - "#ElseIf": 1, - "DoOtherStuff": 1, - "#End": 1, - "operators": 1, - "|": 2, - "&": 1, - "c": 1 - }, - "Moocode": { - "@program": 29, - "toy": 3, - "wind": 1, - "this.wound": 8, - "+": 39, - ";": 505, - "player": 2, - "tell": 1, - "(": 600, - "this.name": 4, - ")": 593, - "player.location": 1, - "announce": 1, - "player.name": 1, - ".": 30, - "while": 15, - "read": 1, - "endwhile": 14, - "I": 1, - "M": 1, - "P": 1, - "O": 1, - "R": 1, - "T": 2, - "A": 1, - "N": 1, - "The": 2, - "following": 2, - "code": 43, - "cannot": 1, - "be": 1, - "used": 1, - "as": 28, - "is.": 1, - "You": 1, - "will": 1, - "need": 1, - "to": 1, - "rewrite": 1, - "functionality": 1, - "that": 3, - "is": 6, - "not": 2, - "present": 1, - "in": 43, - "your": 1, - "server/core.": 1, - "most": 1, - "straight": 1, - "-": 98, - "forward": 1, - "target": 7, - "other": 1, - "than": 1, - "Stunt/Improvise": 1, - "a": 12, - "server/core": 1, - "provides": 1, - "map": 5, - "datatype": 1, - "and": 1, - "anonymous": 1, - "objects.": 1, - "Installation": 1, - "my": 1, - "server": 1, - "uses": 1, - "the": 4, - "object": 1, - "numbers": 1, - "#36819": 1, - "MOOcode": 4, - "Experimental": 2, - "Language": 2, - "Package": 2, - "#36820": 1, - "Changelog": 1, - "#36821": 1, - "Dictionary": 1, - "#36822": 1, - "Compiler": 2, - "#38128": 1, - "Syntax": 4, - "Tree": 1, - "Pretty": 1, - "Printer": 1, - "#37644": 1, - "Tokenizer": 2, - "Prototype": 25, - "#37645": 1, - "Parser": 2, - "#37648": 1, - "Symbol": 2, - "#37649": 1, - "Literal": 1, - "#37650": 1, - "Statement": 8, - "#37651": 1, - "Operator": 11, - "#37652": 1, - "Control": 1, - "Flow": 1, - "#37653": 1, - "Assignment": 2, - "#38140": 1, - "Compound": 1, - "#38123": 1, - "Prefix": 1, - "#37654": 1, - "Infix": 1, - "#37655": 1, - "Name": 1, - "#37656": 1, - "Bracket": 1, - "#37657": 1, - "Brace": 1, - "#37658": 1, - "If": 1, - "#38119": 1, - "For": 1, - "#38120": 1, - "Loop": 1, - "#38126": 1, - "Fork": 1, - "#38127": 1, - "Try": 1, - "#37659": 1, - "Invocation": 1, - "#37660": 1, - "Verb": 1, - "Selector": 2, - "#37661": 1, - "Property": 1, - "#38124": 1, - "Error": 1, - "Catching": 1, - "#38122": 1, - "Positional": 1, - "#38141": 1, - "From": 1, - "#37662": 1, - "Utilities": 1, - "#36823": 1, - "Tests": 4, - "#36824": 1, - "#37646": 1, - "#37647": 1, - "parent": 1, - "plastic.tokenizer_proto": 4, - "_": 4, - "_ensure_prototype": 4, - "application/x": 27, - "moocode": 27, - "typeof": 11, - "this": 114, - "OBJ": 3, - "||": 19, - "raise": 23, - "E_INVARG": 3, - "_ensure_instance": 7, - "ANON": 2, - "plastic.compiler": 3, - "_lookup": 2, - "private": 1, - "{": 112, - "name": 9, - "}": 112, - "args": 26, - "if": 90, - "value": 73, - "this.variable_map": 3, - "[": 99, - "]": 102, - "E_RANGE": 17, - "return": 61, - "else": 45, - "tostr": 51, - "random": 3, - "this.reserved_names": 1, - "endif": 93, - "compile": 1, - "source": 32, - "options": 3, - "tokenizer": 6, - "this.plastic.tokenizer_proto": 2, - "create": 16, - "parser": 89, - "this.plastic.parser_proto": 2, - "compiler": 2, - "try": 2, - "statements": 13, - "except": 2, - "ex": 4, - "ANY": 3, - ".tokenizer.row": 1, - "endtry": 2, - "for": 31, - "statement": 29, - "statement.type": 10, - "@source": 3, - "p": 82, - "@compiler": 1, - "endfor": 31, - "ticks_left": 4, - "<": 13, - "seconds_left": 4, - "&&": 39, - "suspend": 4, - "statement.value": 20, - "elseif": 41, - "_generate": 1, - "isa": 21, - "this.plastic.sign_operator_proto": 1, - "|": 9, - "statement.first": 18, - "statement.second": 13, - "this.plastic.control_flow_statement_proto": 1, - "first": 22, - "statement.id": 3, - "this.plastic.if_statement_proto": 1, - "s": 47, - "respond_to": 9, - "@code": 28, - "@this": 13, - "i": 29, - "length": 11, - "LIST": 6, - "this.plastic.for_statement_proto": 1, - "statement.subtype": 2, - "this.plastic.loop_statement_proto": 1, - "prefix": 4, - "this.plastic.fork_statement_proto": 1, - "this.plastic.try_statement_proto": 1, - "x": 9, - "@x": 3, - "join": 6, - "this.plastic.assignment_operator_proto": 1, - "statement.first.type": 1, - "res": 19, - "rest": 3, - "v": 17, - "statement.first.value": 1, - "v.type": 2, - "v.first": 2, - "v.second": 1, - "this.plastic.bracket_operator_proto": 1, - "statement.third": 4, - "this.plastic.brace_operator_proto": 1, - "this.plastic.invocation_operator_proto": 1, - "@a": 2, - "statement.second.type": 2, - "this.plastic.property_selector_operator_proto": 1, - "this.plastic.error_catching_operator_proto": 1, - "second": 18, - "this.plastic.literal_proto": 1, - "toliteral": 1, - "this.plastic.positional_symbol_proto": 1, - "this.plastic.prefix_operator_proto": 3, - "this.plastic.infix_operator_proto": 1, - "this.plastic.traditional_ternary_operator_proto": 1, - "this.plastic.name_proto": 1, - "plastic.printer": 2, - "_print": 4, - "indent": 4, - "result": 7, - "item": 2, - "@result": 2, - "E_PROPNF": 1, - "print": 1, - "instance": 59, - "instance.row": 1, - "instance.column": 1, - "instance.source": 1, - "advance": 16, - "this.token": 21, - "this.source": 3, - "row": 23, - "this.row": 2, - "column": 63, - "this.column": 2, - "eol": 5, - "block_comment": 6, - "inline_comment": 4, - "loop": 14, - "len": 3, - "continue": 16, - "next_two": 4, - "column..column": 1, - "c": 44, - "break": 6, - "re": 1, - "not.": 1, - "Worse": 1, - "*": 4, - "valid": 2, - "error": 6, - "like": 4, - "E_PERM": 4, - "treated": 2, - "literal": 2, - "an": 2, - "invalid": 2, - "E_FOO": 1, - "variable.": 1, - "Any": 1, - "starts": 1, - "with": 1, - "characters": 1, - "*now*": 1, - "but": 1, - "errors": 1, - "are": 1, - "errors.": 1, - "*/": 1, - "<=>": 8, - "z": 4, - "col1": 6, - "mark": 2, - "start": 2, - "1": 13, - "9": 4, - "col2": 4, - "chars": 21, - "index": 2, - "E_": 1, - "token": 24, - "type": 9, - "this.errors": 1, - "col1..col2": 2, - "toobj": 1, - "float": 4, - "0": 1, - "cc": 1, - "e": 1, - "tofloat": 1, - "toint": 1, - "esc": 1, - "q": 1, - "col1..column": 1, - "plastic.parser_proto": 3, - "@options": 1, - "instance.tokenizer": 1, - "instance.symbols": 1, - "plastic": 1, - "this.plastic": 1, - "symbol": 65, - "plastic.name_proto": 1, - "plastic.literal_proto": 1, - "plastic.operator_proto": 10, - "plastic.prefix_operator_proto": 1, - "plastic.error_catching_operator_proto": 3, - "plastic.assignment_operator_proto": 1, - "plastic.compound_assignment_operator_proto": 5, - "plastic.traditional_ternary_operator_proto": 2, - "plastic.infix_operator_proto": 13, - "plastic.sign_operator_proto": 2, - "plastic.bracket_operator_proto": 1, - "plastic.brace_operator_proto": 1, - "plastic.control_flow_statement_proto": 3, - "plastic.if_statement_proto": 1, - "plastic.for_statement_proto": 1, - "plastic.loop_statement_proto": 2, - "plastic.fork_statement_proto": 1, - "plastic.try_statement_proto": 1, - "plastic.from_statement_proto": 2, - "plastic.verb_selector_operator_proto": 2, - "plastic.property_selector_operator_proto": 2, - "plastic.invocation_operator_proto": 1, - "id": 14, - "bp": 3, - "proto": 4, - "nothing": 1, - "this.plastic.symbol_proto": 2, - "this.symbols": 4, - "clone": 2, - "this.token.type": 1, - "this.token.value": 1, - "this.token.eol": 1, - "operator": 1, - "variable": 1, - "identifier": 1, - "keyword": 1, - "Unexpected": 1, - "end": 2, - "Expected": 1, - "t": 1, - "call": 1, - "nud": 2, - "on": 1, - "@definition": 1, - "new": 4, - "pop": 4, - "delete": 1, - "plastic.utilities": 6, - "suspend_if_necessary": 4, - "parse_map_sequence": 1, - "separator": 6, - "infix": 3, - "terminator": 6, - "symbols": 7, - "ids": 6, - "@ids": 2, - "push": 3, - "@symbol": 2, - ".id": 13, - "key": 7, - "expression": 19, - "@map": 1, - "parse_list_sequence": 2, - "list": 3, - "@list": 1, - "validate_scattering_pattern": 1, - "pattern": 5, - "state": 8, - "element": 1, - "element.type": 3, - "element.id": 2, - "element.first.type": 2, - "children": 4, - "node": 3, - "node.value": 1, - "@children": 1, - "match": 1, - "root": 2, - "keys": 3, - "matches": 3, - "stack": 4, - "next": 2, - "top": 5, - "@stack": 2, - "top.": 1, - "@matches": 1, - "plastic.symbol_proto": 2, - "opts": 2, - "instance.id": 1, - "instance.value": 1, - "instance.bp": 1, - "k": 3, - "instance.": 1, - "parents": 3, - "ancestor": 2, - "ancestors": 1, - "property": 1, - "properties": 1, - "this.type": 8, - "this.first": 8, - "import": 8, - "this.second": 7, - "left": 2, - "this.third": 3, - "sequence": 2, - "led": 4, - "this.bp": 2, - "second.type": 2, - "make_identifier": 4, - "first.id": 1, - "parser.symbols": 2, - "reserve_keyword": 2, - "this.plastic.utilities": 1, - "third": 4, - "third.id": 2, - "second.id": 1, - "std": 1, - "reserve_statement": 1, - "types": 7, - ".type": 1, - "target.type": 3, - "target.value": 3, - "target.id": 4, - "temp": 4, - "temp.id": 1, - "temp.first.id": 1, - "temp.first.type": 2, - "temp.second.type": 1, - "temp.first": 2, - "imports": 5, - "import.type": 2, - "@imports": 2, - "parser.plastic.invocation_operator_proto": 1, - "temp.type": 1, - "parser.plastic.name_proto": 2, - "temp.first.value": 1, - "temp.second": 1, - "first.type": 1, - "parser.imports": 2, - "import.id": 2, - "parser.plastic.assignment_operator_proto": 1, - "result.type": 1, - "result.first": 1, - "result.second": 1, - "@verb": 1, - "do_the_work": 3, - "none": 1, - "object_utils": 1, - "this.location": 3, - "room": 1, - "announce_all": 2, - "continue_msg": 1, - "fork": 1, - "endfork": 1, - "wind_down_msg": 1 - }, - "MoonScript": { - "types": 2, - "require": 5, - "util": 2, - "data": 1, - "import": 5, - "reversed": 2, - "unpack": 22, - "from": 4, - "ntype": 16, - "mtype": 3, - "build": 7, - "smart_node": 7, - "is_slice": 2, - "value_is_singular": 3, - "insert": 18, - "table": 2, - "NameProxy": 14, - "LocalName": 2, - "destructure": 1, - "local": 1, - "implicitly_return": 2, - "class": 4, - "Run": 8, - "new": 2, - "(": 54, - "@fn": 1, - ")": 54, - "self": 2, - "[": 79, - "]": 79, - "call": 3, - "state": 2, - "self.fn": 1, - "-": 51, - "transform": 2, - "the": 4, - "last": 6, - "stm": 16, - "is": 2, - "a": 4, - "list": 6, - "of": 1, - "stms": 4, - "will": 1, - "puke": 1, - "on": 1, - "group": 1, - "apply_to_last": 6, - "fn": 3, - "find": 2, - "real": 1, - "exp": 17, - "last_exp_id": 3, - "for": 20, - "i": 15, - "#stms": 1, - "if": 43, - "and": 8, - "break": 1, - "return": 11, - "in": 18, - "ipairs": 3, - "else": 22, - "body": 26, - "sindle": 1, - "expression/statement": 1, - "is_singular": 2, - "false": 2, - "#body": 1, - "true": 4, - "find_assigns": 2, - "out": 9, - "{": 135, - "}": 136, - "thing": 4, - "*body": 2, - "switch": 7, - "when": 12, - "table.insert": 3, - "extract": 1, - "names": 16, - "hoist_declarations": 1, - "assigns": 5, - "hoist": 1, - "plain": 1, - "old": 1, - "*find_assigns": 1, - "name": 31, - "*names": 3, - "type": 5, - "after": 1, - "runs": 1, - "idx": 4, - "while": 3, - "do": 2, - "+": 2, - "expand_elseif_assign": 2, - "ifstm": 5, - "#ifstm": 1, - "case": 13, - "split": 4, - "constructor_name": 2, - "with_continue_listener": 4, - "continue_name": 13, - "nil": 8, - "@listen": 1, - "unless": 6, - "@put_name": 2, - "build.group": 14, - "@splice": 1, - "lines": 2, - "Transformer": 2, - "@transformers": 3, - "@seen_nodes": 3, - "setmetatable": 1, - "__mode": 1, - "scope": 4, - "node": 68, - "...": 10, - "transformer": 3, - "res": 3, - "or": 6, - "bind": 1, - "@transform": 2, - "__call": 1, - "can_transform": 1, - "construct_comprehension": 2, - "inner": 2, - "clauses": 4, - "current_stms": 7, - "_": 10, - "clause": 4, - "t": 10, - "iter": 2, - "elseif": 1, - "cond": 11, - "error": 4, - "..t": 1, - "Statement": 2, - "root_stms": 1, - "@": 1, - "assign": 9, - "values": 10, - "bubble": 1, - "cascading": 2, - "transformed": 2, - "#values": 1, - "value": 7, - "@transform.statement": 2, - "types.cascading": 1, - "ret": 16, - "types.is_value": 1, - "destructure.has_destructure": 2, - "destructure.split_assign": 1, - "continue": 1, - "@send": 1, - "build.assign_one": 11, - "export": 1, - "they": 1, - "are": 1, - "included": 1, - "#node": 3, - "cls": 5, - "cls.name": 1, - "build.assign": 3, - "update": 1, - "op": 2, - "op_final": 3, - "match": 1, - "..op": 1, - "not": 2, - "source": 7, - "stubs": 1, - "real_names": 4, - "build.chain": 7, - "base": 8, - "stub": 4, - "*stubs": 2, - "source_name": 3, - "comprehension": 1, - "action": 4, - "decorated": 1, - "dec": 6, - "wrapped": 4, - "fail": 5, - "..": 1, - "build.declare": 1, - "*stm": 1, - "expand": 1, - "destructure.build_assign": 2, - "build.do": 2, - "apply": 1, - "decorator": 1, - "mutate": 1, - "all": 1, - "bodies": 1, - "body_idx": 3, - "with": 3, - "block": 2, - "scope_name": 5, - "named_assign": 2, - "assign_name": 1, - "@set": 1, - "foreach": 1, - "node.iter": 1, - "destructures": 5, - "node.names": 3, - "proxy": 2, - "next": 1, - "node.body": 9, - "index_name": 3, - "list_name": 6, - "slice_var": 3, - "bounds": 3, - "slice": 7, - "#list": 1, - "table.remove": 2, - "max_tmp_name": 5, - "index": 2, - "conds": 3, - "exp_name": 3, - "convert": 1, - "into": 1, - "statment": 1, - "convert_cond": 2, - "case_exps": 3, - "cond_exp": 5, - "first": 3, - "if_stm": 5, - "*conds": 1, - "if_cond": 4, - "parent_assign": 3, - "parent_val": 1, - "apart": 1, - "properties": 4, - "statements": 4, - "item": 3, - "tuple": 8, - "*item": 1, - "constructor": 7, - "*properties": 1, - "key": 3, - "parent_cls_name": 5, - "base_name": 4, - "self_name": 4, - "cls_name": 1, - "build.fndef": 3, - "args": 3, - "arrow": 1, - "then": 2, - "constructor.arrow": 1, - "real_name": 6, - "#real_name": 1, - "build.table": 2, - "look": 1, - "up": 1, - "object": 1, - "class_lookup": 3, - "cls_mt": 2, - "out_body": 1, - "make": 1, - "sure": 1, - "we": 1, - "don": 1, - "string": 1, - "parens": 2, - "colon_stub": 1, - "super": 1, - "dot": 1, - "varargs": 2, - "arg_list": 1, - "Value": 1 - }, - "MTML": { - "<$mt:Var>": 15, - "name=": 19, - "value=": 9, - "": 1, - "op=": 8, - "setvar=": 9, - "": 1, - "<": 2, - "a": 1, - "href": 1, - "<$mt:CategoryLabel>": 1, - "remove_html=": 1, - "": 1, - "": 1, - "": 1, - "function=": 1, - "": 1, - "gt=": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 2, - "from=": 2, - "to=": 2, - "div": 1, - "class": 1, - "col_num": 1, - "": 2, - "": 1 - }, - "Nemerle": { - "using": 1, - "System.Console": 1, - ";": 2, - "module": 1, - "Program": 1, - "{": 2, - "Main": 1, - "(": 2, - ")": 2, - "void": 1, - "WriteLine": 1, - "}": 2 - }, - "NetLogo": { - "patches": 7, - "-": 28, - "own": 1, - "[": 17, - "living": 6, - ";": 12, - "indicates": 1, - "if": 2, - "the": 6, - "cell": 10, - "is": 1, - "live": 4, - "neighbors": 5, - "counts": 1, - "how": 1, - "many": 1, - "neighboring": 1, - "cells": 2, - "are": 1, - "alive": 1, - "]": 17, - "to": 6, - "setup": 2, - "blank": 1, - "clear": 2, - "all": 5, - "ask": 6, - "death": 5, - "reset": 2, - "ticks": 2, - "end": 6, - "random": 2, - "ifelse": 3, - "float": 1, - "<": 1, - "initial": 1, - "density": 1, - "birth": 4, - "set": 5, - "true": 1, - "pcolor": 2, - "fgcolor": 1, - "false": 1, - "bgcolor": 1, - "go": 1, - "count": 1, - "with": 2, - "Starting": 1, - "a": 1, - "new": 1, - "here": 1, - "ensures": 1, - "that": 1, - "finish": 1, - "executing": 2, - "first": 1, - "before": 1, - "any": 1, - "of": 2, - "them": 1, - "start": 1, - "second": 1, - "ask.": 1, - "This": 1, - "keeps": 1, - "in": 2, - "synch": 1, - "each": 2, - "other": 1, - "so": 1, - "births": 1, - "and": 1, - "deaths": 1, - "at": 1, - "generation": 1, - "happen": 1, - "lockstep.": 1, - "tick": 1, - "draw": 1, - "let": 1, - "erasing": 2, - "patch": 2, - "mouse": 5, - "xcor": 2, - "ycor": 2, - "while": 1, - "down": 1, - "display": 1 - }, - "Nginx": { - "user": 1, - "www": 2, - ";": 35, - "worker_processes": 1, - "error_log": 1, - "logs/error.log": 1, - "pid": 1, - "logs/nginx.pid": 1, - "worker_rlimit_nofile": 1, - "events": 1, - "{": 10, - "worker_connections": 1, - "}": 10, - "http": 3, - "include": 3, - "conf/mime.types": 1, - "/etc/nginx/proxy.conf": 1, - "/etc/nginx/fastcgi.conf": 1, - "index": 1, - "index.html": 1, - "index.htm": 1, - "index.php": 1, - "default_type": 1, - "application/octet": 1, - "-": 2, - "stream": 1, - "log_format": 1, - "main": 5, - "access_log": 4, - "logs/access.log": 1, - "sendfile": 1, - "on": 2, - "tcp_nopush": 1, - "server_names_hash_bucket_size": 1, - "#": 4, - "this": 1, - "seems": 1, - "to": 1, - "be": 1, - "required": 1, - "for": 1, - "some": 1, - "vhosts": 1, - "server": 7, - "php/fastcgi": 1, - "listen": 3, - "server_name": 3, - "domain1.com": 1, - "www.domain1.com": 1, - "logs/domain1.access.log": 1, - "root": 2, - "html": 1, - "location": 4, - ".php": 1, - "fastcgi_pass": 1, - "simple": 2, - "reverse": 1, - "proxy": 1, - "domain2.com": 1, - "www.domain2.com": 1, - "logs/domain2.access.log": 1, - "/": 4, - "(": 1, - "images": 1, - "|": 6, - "javascript": 1, - "js": 1, - "css": 1, - "flash": 1, - "media": 1, - "static": 1, - ")": 1, - "/var/www/virtual/big.server.com/htdocs": 1, - "expires": 1, - "d": 1, - "proxy_pass": 2, - "//127.0.0.1": 1, - "upstream": 1, - "big_server_com": 1, - "weight": 2, - "load": 1, - "balancing": 1, - "big.server.com": 1, - "logs/big.server.access.log": 1, - "//big_server_com": 1 - }, - "Nimrod": { - "echo": 1 - }, - "NSIS": { - ";": 39, - "bigtest.nsi": 1, - "This": 2, - "script": 1, - "attempts": 1, - "to": 6, - "test": 1, - "most": 1, - "of": 3, - "the": 4, - "functionality": 1, - "NSIS": 3, - "exehead.": 1, - "-": 205, - "ifdef": 2, - "HAVE_UPX": 1, - "packhdr": 1, - "tmp.dat": 1, - "endif": 4, - "NOCOMPRESS": 1, - "SetCompress": 1, - "off": 1, - "Name": 1, - "Caption": 1, - "Icon": 1, - "OutFile": 1, - "SetDateSave": 1, - "on": 6, - "SetDatablockOptimize": 1, - "CRCCheck": 1, - "SilentInstall": 1, - "normal": 1, - "BGGradient": 1, - "FFFFFF": 1, - "InstallColors": 1, - "FF8080": 1, - "XPStyle": 1, - "InstallDir": 1, - "InstallDirRegKey": 1, - "HKLM": 9, - "CheckBitmap": 1, - "LicenseText": 1, - "LicenseData": 1, - "RequestExecutionLevel": 1, - "admin": 1, - "Page": 4, - "license": 1, - "components": 1, - "directory": 3, - "instfiles": 2, - "UninstPage": 2, - "uninstConfirm": 1, - "ifndef": 2, - "NOINSTTYPES": 1, - "only": 1, - "if": 4, - "not": 2, - "defined": 1, - "InstType": 6, - "/NOCUSTOM": 1, - "/COMPONENTSONLYONCUSTOM": 1, - "AutoCloseWindow": 1, - "false": 1, - "ShowInstDetails": 1, - "show": 1, - "Section": 5, - "empty": 1, - "string": 1, - "makes": 1, - "it": 3, - "hidden": 1, - "so": 1, - "would": 1, - "starting": 1, - "with": 1, - "write": 2, - "reg": 1, - "info": 1, - "StrCpy": 2, - "DetailPrint": 1, - "WriteRegStr": 4, - "SOFTWARE": 7, - "NSISTest": 7, - "BigNSISTest": 8, - "uninstall": 2, - "strings": 1, - "SetOutPath": 3, - "INSTDIR": 15, - "File": 3, - "/a": 1, - "CreateDirectory": 1, - "recursively": 1, - "create": 1, - "a": 2, - "for": 2, - "fun.": 1, - "WriteUninstaller": 1, - "Nop": 1, - "fun": 1, - "SectionEnd": 5, - "SectionIn": 4, - "Start": 2, - "MessageBox": 11, - "MB_OK": 8, - "MB_YESNO": 3, - "IDYES": 2, - "MyLabel": 2, - "SectionGroup": 2, - "/e": 1, - "SectionGroup1": 1, - "WriteRegDword": 3, - "xdeadbeef": 1, - "WriteRegBin": 1, - "WriteINIStr": 5, - "Call": 6, - "MyFunctionTest": 1, - "DeleteINIStr": 1, - "DeleteINISec": 1, - "ReadINIStr": 1, - "StrCmp": 1, - "INIDelSuccess": 2, - "ClearErrors": 1, - "ReadRegStr": 1, - "HKCR": 1, - "xyz_cc_does_not_exist": 1, - "IfErrors": 1, - "NoError": 2, - "Goto": 1, - "ErrorYay": 2, - "CSCTest": 1, - "Group2": 1, - "BeginTestSection": 1, - "IfFileExists": 1, - "BranchTest69": 1, - "|": 3, - "MB_ICONQUESTION": 1, - "IDNO": 1, - "NoOverwrite": 1, - "skipped": 2, - "file": 4, - "doesn": 2, - "s": 1, - "icon": 1, - "start": 1, - "minimized": 1, - "and": 1, - "give": 1, - "hotkey": 1, - "(": 5, - "Ctrl": 1, - "+": 2, - "Shift": 1, - "Q": 2, - ")": 5, - "CreateShortCut": 2, - "SW_SHOWMINIMIZED": 1, - "CONTROL": 1, - "SHIFT": 1, - "MyTestVar": 1, - "myfunc": 1, - "test.ini": 2, - "MySectionIni": 1, - "Value1": 1, - "failed": 1, - "TextInSection": 1, - "will": 1, - "example2.": 1, - "Hit": 1, - "next": 1, - "continue.": 1, - "{": 8, - "NSISDIR": 1, - "}": 8, - "Contrib": 1, - "Graphics": 1, - "Icons": 1, - "nsis1": 1, - "uninstall.ico": 1, - "Uninstall": 2, - "Software": 1, - "Microsoft": 1, - "Windows": 3, - "CurrentVersion": 1, - "silent.nsi": 1, - "LogicLib.nsi": 1, - "bt": 1, - "uninst.exe": 1, - "SMPROGRAMS": 2, - "Big": 1, - "Test": 2, - "*.*": 2, - "BiG": 1, - "Would": 1, - "you": 1, - "like": 1, - "remove": 1, - "cpdest": 3, - "MyProjectFamily": 2, - "MyProject": 1, - "Note": 1, - "could": 1, - "be": 1, - "removed": 1, - "IDOK": 1, - "t": 1, - "exist": 1, - "NoErrorMsg": 1, - "x64.nsh": 1, - "A": 1, - "few": 1, - "simple": 1, - "macros": 1, - "handle": 1, - "installations": 1, - "x64": 1, - "machines.": 1, - "RunningX64": 4, - "checks": 1, - "installer": 1, - "is": 2, - "running": 1, - "x64.": 1, - "If": 1, - "EndIf": 1, - "DisableX64FSRedirection": 4, - "disables": 1, - "system": 2, - "redirection.": 2, - "EnableX64FSRedirection": 4, - "enables": 1, - "SYSDIR": 1, - "some.dll": 2, - "#": 3, - "extracts": 2, - "C": 2, - "System32": 1, - "SysWOW64": 1, - "___X64__NSH___": 3, - "define": 4, - "include": 1, - "LogicLib.nsh": 1, - "macro": 3, - "_RunningX64": 1, - "_a": 1, - "_b": 1, - "_t": 2, - "_f": 2, - "insertmacro": 2, - "_LOGICLIB_TEMP": 3, - "System": 4, - "kernel32": 4, - "GetCurrentProcess": 1, - "i.s": 1, - "IsWow64Process": 1, - "*i.s": 1, - "Pop": 1, - "_": 1, - "macroend": 3, - "Wow64EnableWow64FsRedirection": 2, - "i0": 1, - "i1": 1 - }, - "Nu": { - "SHEBANG#!nush": 1, - "(": 14, - "puts": 1, - ")": 14, - ";": 22, - "main.nu": 1, - "Entry": 1, - "point": 1, - "for": 1, - "a": 1, - "Nu": 1, - "program.": 1, - "Copyright": 1, - "c": 1, - "Tim": 1, - "Burks": 1, - "Neon": 1, - "Design": 1, - "Technology": 1, - "Inc.": 1, - "load": 4, - "basics": 1, - "cocoa": 1, - "definitions": 1, - "menu": 1, - "generation": 1, - "Aaron": 1, - "Hillegass": 1, - "t": 1, - "retain": 1, - "it.": 1, - "NSApplication": 2, - "sharedApplication": 2, - "setDelegate": 1, - "set": 1, - "delegate": 1, - "ApplicationDelegate": 1, - "alloc": 1, - "init": 1, - "this": 1, - "makes": 1, - "the": 3, - "application": 1, - "window": 1, - "take": 1, - "focus": 1, - "when": 1, - "we": 1, - "ve": 1, - "started": 1, - "it": 1, - "from": 1, - "terminal": 1, - "activateIgnoringOtherApps": 1, - "YES": 1, - "run": 1, - "main": 1, - "Cocoa": 1, - "event": 1, - "loop": 1, - "NSApplicationMain": 1, - "nil": 1 - }, - "Objective-C": { - "//": 317, - "#import": 53, - "": 4, - "#if": 41, - "TARGET_OS_IPHONE": 11, - "": 1, - "__IPHONE_OS_VERSION_MAX_ALLOWED": 4, - "__IPHONE_4_0": 6, - "": 1, - "Necessary": 1, - "for": 99, - "background": 1, - "task": 1, - "support": 4, - "#endif": 59, - "": 2, - "@class": 4, - "ASIDataDecompressor": 4, - ";": 2003, - "extern": 6, - "NSString": 127, - "*ASIHTTPRequestVersion": 2, - "#ifndef": 9, - "__IPHONE_3_2": 2, - "#define": 65, - "__MAC_10_5": 2, - "__MAC_10_6": 2, - "typedef": 47, - "enum": 17, - "_ASIAuthenticationState": 1, - "{": 541, - "ASINoAuthenticationNeededYet": 3, - "ASIHTTPAuthenticationNeeded": 1, - "ASIProxyAuthenticationNeeded": 1, - "}": 532, - "ASIAuthenticationState": 5, - "_ASINetworkErrorType": 1, - "ASIConnectionFailureErrorType": 2, - "ASIRequestTimedOutErrorType": 2, - "ASIAuthenticationErrorType": 3, - "ASIRequestCancelledErrorType": 2, - "ASIUnableToCreateRequestErrorType": 2, - "ASIInternalErrorWhileBuildingRequestType": 3, - "ASIInternalErrorWhileApplyingCredentialsType": 1, - "ASIFileManagementError": 2, - "ASITooMuchRedirectionErrorType": 3, - "ASIUnhandledExceptionError": 3, - "ASICompressionError": 1, - "ASINetworkErrorType": 1, - "NSString*": 13, - "const": 28, - "NetworkRequestErrorDomain": 12, - "unsigned": 62, - "long": 71, - "ASIWWANBandwidthThrottleAmount": 2, - "NS_BLOCKS_AVAILABLE": 8, - "void": 253, - "(": 2109, - "ASIBasicBlock": 15, - ")": 2106, - "ASIHeadersBlock": 3, - "NSDictionary": 37, - "*responseHeaders": 2, - "ASISizeBlock": 5, - "size": 12, - "ASIProgressBlock": 5, - "total": 4, - "ASIDataBlock": 3, - "NSData": 28, - "*data": 2, - "@interface": 23, - "ASIHTTPRequest": 31, - "NSOperation": 1, - "": 1, - "The": 15, - "url": 24, - "this": 50, - "operation": 2, - "should": 8, - "include": 1, - "GET": 1, - "params": 1, - "in": 42, - "the": 197, - "query": 1, - "string": 9, - "where": 1, - "appropriate": 4, - "NSURL": 21, - "*url": 2, - "Will": 7, - "always": 2, - "contain": 4, - "original": 2, - "used": 16, - "making": 1, - "request": 113, - "value": 21, - "of": 34, - "can": 20, - "change": 2, - "when": 46, - "a": 78, - "is": 77, - "redirected": 2, - "*originalURL": 2, - "Temporarily": 1, - "stores": 1, - "we": 73, - "are": 15, - "about": 4, - "to": 115, - "redirect": 4, - "to.": 2, - "be": 49, - "nil": 131, - "again": 1, - "do": 5, - "*redirectURL": 2, - "delegate": 29, - "-": 595, - "will": 57, - "notified": 2, - "various": 1, - "changes": 4, - "state": 35, - "via": 5, - "ASIHTTPRequestDelegate": 1, - "protocol": 10, - "id": 170, - "": 1, - "Another": 1, - "that": 23, - "also": 1, - "status": 4, - "and": 44, - "progress": 13, - "updates": 2, - "Generally": 1, - "you": 10, - "won": 3, - "s": 35, - "more": 5, - "likely": 1, - "sessionCookies": 2, - "NSMutableArray": 31, - "*requestCookies": 2, - "populated": 1, - "with": 19, - "cookies": 5, - "NSArray": 27, - "*responseCookies": 3, - "If": 30, - "use": 26, - "useCookiePersistence": 3, - "true": 9, - "network": 4, - "requests": 21, - "present": 3, - "valid": 5, - "from": 18, - "previous": 2, - "BOOL": 137, - "useKeychainPersistence": 4, - "attempt": 3, - "read": 3, - "credentials": 35, - "keychain": 7, - "save": 3, - "them": 10, - "they": 6, - "successfully": 4, - "presented": 2, - "useSessionPersistence": 6, - "reuse": 3, - "duration": 1, - "session": 5, - "until": 2, - "clearSession": 2, - "called": 3, - "allowCompressedResponse": 3, - "inform": 1, - "server": 8, - "accept": 2, - "compressed": 2, - "data": 27, - "automatically": 2, - "decompress": 1, - "gzipped": 7, - "responses.": 1, - "Default": 10, - "true.": 1, - "shouldCompressRequestBody": 6, - "body": 8, - "gzipped.": 1, - "false.": 1, - "You": 1, - "probably": 4, - "need": 10, - "enable": 1, - "feature": 1, - "on": 26, - "your": 2, - "webserver": 1, - "make": 3, - "work.": 1, - "Tested": 1, - "apache": 1, - "only.": 1, - "When": 15, - "downloadDestinationPath": 11, - "set": 24, - "result": 4, - "downloaded": 6, - "file": 14, - "at": 10, - "location": 3, - "not": 29, - "download": 9, - "stored": 9, - "memory": 3, - "*downloadDestinationPath": 2, - "files": 5, - "Once": 2, - "complete": 12, - "decompressed": 3, - "if": 297, - "necessary": 2, - "moved": 2, - "*temporaryFileDownloadPath": 2, - "response": 17, - "shouldWaitToInflateCompressedResponses": 4, - "NO": 30, - "created": 3, - "path": 11, - "containing": 1, - "inflated": 6, - "as": 17, - "it": 28, - "comes": 3, - "*temporaryUncompressedDataDownloadPath": 2, - "Used": 13, - "writing": 2, - "NSOutputStream": 6, - "*fileDownloadOutputStream": 2, - "*inflatedFileDownloadOutputStream": 2, - "fails": 2, - "or": 18, - "completes": 6, - "finished": 3, - "cancelled": 5, - "an": 20, - "error": 75, - "occurs": 1, - "NSError": 51, - "code": 16, - "Connection": 1, - "failure": 1, - "occurred": 1, - "inspect": 1, - "[": 1227, - "userInfo": 15, - "]": 1227, - "objectForKey": 29, - "NSUnderlyingErrorKey": 3, - "information": 5, - "*error": 3, - "Username": 2, - "password": 11, - "authentication": 18, - "*username": 2, - "*password": 2, - "User": 1, - "Agent": 1, - "*userAgentString": 2, - "Domain": 2, - "NTLM": 6, - "*domain": 2, - "proxy": 11, - "*proxyUsername": 2, - "*proxyPassword": 2, - "*proxyDomain": 2, - "Delegate": 2, - "displaying": 2, - "upload": 4, - "usually": 2, - "NSProgressIndicator": 4, - "but": 5, - "supply": 2, - "different": 4, - "object": 36, - "handle": 4, - "yourself": 4, - "": 2, - "uploadProgressDelegate": 8, - "downloadProgressDelegate": 10, - "Whether": 1, - "t": 15, - "want": 5, - "hassle": 1, - "adding": 1, - "authenticating": 2, - "proxies": 3, - "their": 3, - "apps": 1, - "shouldPresentProxyAuthenticationDialog": 2, - "CFHTTPAuthenticationRef": 2, - "proxyAuthentication": 7, - "*proxyCredentials": 2, - "during": 4, - "int": 55, - "proxyAuthenticationRetryCount": 4, - "Authentication": 3, - "scheme": 5, - "Basic": 2, - "Digest": 2, - "*proxyAuthenticationScheme": 2, - "Realm": 1, - "required": 2, - "*proxyAuthenticationRealm": 3, - "HTTP": 9, - "eg": 2, - "OK": 1, - "Not": 2, - "found": 4, - "etc": 1, - "responseStatusCode": 3, - "Description": 1, - "*responseStatusMessage": 3, - "Size": 3, - "contentLength": 6, - "partially": 1, - "content": 5, - "partialDownloadSize": 8, - "POST": 2, - "payload": 1, - "postLength": 6, - "amount": 12, - "totalBytesRead": 4, - "uploaded": 2, - "totalBytesSent": 5, - "Last": 2, - "incrementing": 2, - "lastBytesRead": 3, - "sent": 6, - "lastBytesSent": 3, - "This": 7, - "lock": 19, - "prevents": 1, - "being": 4, - "inopportune": 1, - "moment": 1, - "NSRecursiveLock": 13, - "*cancelledLock": 2, - "Called": 6, - "implemented": 7, - "starts.": 1, - "requestStarted": 3, - "SEL": 19, - "didStartSelector": 2, - "receives": 3, - "headers.": 1, - "didReceiveResponseHeaders": 2, - "didReceiveResponseHeadersSelector": 2, - "Location": 1, - "header": 20, - "shouldRedirect": 3, - "YES": 62, - "then": 1, - "needed": 3, - "restart": 1, - "by": 12, - "calling": 1, - "redirectToURL": 2, - "simply": 1, - "cancel": 5, - "willRedirectSelector": 2, - "successfully.": 1, - "requestFinished": 4, - "didFinishSelector": 2, - "fails.": 1, - "requestFailed": 2, - "didFailSelector": 2, - "data.": 1, - "didReceiveData": 2, - "implement": 1, - "method": 5, - "must": 6, - "populate": 1, - "responseData": 5, - "write": 4, - "didReceiveDataSelector": 2, - "recording": 1, - "something": 1, - "last": 1, - "happened": 1, - "compare": 4, - "current": 2, - "date": 3, - "time": 9, - "out": 7, - "NSDate": 9, - "*lastActivityTime": 2, - "Number": 1, - "seconds": 2, - "wait": 1, - "before": 6, - "timing": 1, - "default": 8, - "NSTimeInterval": 10, - "timeOutSeconds": 3, - "HEAD": 10, - "length": 32, - "starts": 2, - "shouldResetUploadProgress": 3, - "shouldResetDownloadProgress": 3, - "showAccurateProgress": 7, - "preset": 2, - "*mainRequest": 2, - "only": 12, - "update": 6, - "indicator": 4, - "according": 2, - "how": 2, - "much": 2, - "has": 6, - "received": 5, - "so": 15, - "far": 2, - "Also": 1, - "see": 1, - "comments": 1, - "ASINetworkQueue.h": 1, - "ensure": 1, - "incremented": 4, - "once": 3, - "updatedProgress": 3, - "Prevents": 1, - "post": 2, - "built": 2, - "than": 9, - "largely": 1, - "subclasses": 2, - "haveBuiltPostBody": 3, - "internally": 3, - "may": 8, - "reflect": 1, - "internal": 2, - "buffer": 7, - "CFNetwork": 3, - "/": 18, - "PUT": 1, - "operations": 1, - "sizes": 1, - "greater": 1, - "uploadBufferSize": 6, - "timeout": 6, - "unless": 2, - "bytes": 8, - "have": 15, - "been": 1, - "Likely": 1, - "KB": 4, - "iPhone": 3, - "Mac": 2, - "OS": 1, - "X": 1, - "Leopard": 1, - "x": 10, - "Text": 1, - "encoding": 7, - "responses": 5, - "send": 2, - "Content": 1, - "Type": 1, - "charset": 5, - "value.": 1, - "Defaults": 2, - "NSISOLatin1StringEncoding": 2, - "NSStringEncoding": 6, - "defaultResponseEncoding": 4, - "text": 12, - "didn": 3, - "set.": 1, - "responseEncoding": 3, - "Tells": 1, - "delete": 1, - "partial": 2, - "downloads": 1, - "allows": 1, - "existing": 1, - "resume": 2, - "download.": 1, - "NO.": 1, - "allowResumeForFileDownloads": 2, - "Custom": 1, - "user": 6, - "associated": 1, - "*userInfo": 2, - "NSInteger": 56, - "tag": 2, - "Use": 6, - "rather": 4, - "defaults": 2, - "false": 3, - "useHTTPVersionOne": 3, - "get": 4, - "tell": 2, - "main": 8, - "loop": 1, - "stop": 4, - "retry": 3, - "new": 10, - "needsRedirect": 3, - "Incremented": 1, - "every": 3, - "redirects.": 1, - "reaches": 1, - "give": 2, - "up": 4, - "redirectCount": 2, - "check": 1, - "secure": 1, - "certificate": 2, - "self": 500, - "signed": 1, - "certificates": 2, - "development": 1, - "DO": 1, - "NOT": 1, - "USE": 1, - "IN": 1, - "PRODUCTION": 1, - "validatesSecureCertificate": 3, - "SecIdentityRef": 3, - "clientCertificateIdentity": 5, - "*clientCertificates": 2, - "Details": 1, - "could": 1, - "these": 3, - "best": 1, - "local": 1, - "*PACurl": 2, - "See": 5, - "values": 3, - "above.": 1, - "No": 1, - "yet": 1, - "authenticationNeeded": 3, - "ASIHTTPRequests": 1, - "store": 4, - "same": 6, - "asked": 3, - "avoids": 1, - "extra": 1, - "round": 1, - "trip": 1, - "after": 5, - "succeeded": 1, - "which": 1, - "efficient": 1, - "authenticated": 1, - "large": 1, - "bodies": 1, - "slower": 1, - "connections": 3, - "Set": 4, - "explicitly": 2, - "affects": 1, - "cache": 17, - "YES.": 1, - "Credentials": 1, - "never": 1, - "asks": 1, - "For": 2, - "using": 8, - "authenticationScheme": 4, - "*": 311, - "kCFHTTPAuthenticationSchemeBasic": 2, - "very": 2, - "first": 9, - "shouldPresentCredentialsBeforeChallenge": 4, - "hasn": 1, - "doing": 1, - "anything": 1, - "expires": 1, - "persistentConnectionTimeoutSeconds": 4, - "yes": 1, - "keep": 2, - "alive": 1, - "connectionCanBeReused": 4, - "Stores": 1, - "persistent": 5, - "connection": 17, - "currently": 4, - "use.": 1, - "It": 2, - "particular": 2, - "specify": 2, - "expire": 2, - "A": 4, - "host": 9, - "port": 17, - "connection.": 2, - "These": 1, - "determine": 1, - "whether": 1, - "reused": 2, - "subsequent": 2, - "all": 3, - "match": 1, - "An": 2, - "determining": 1, - "available": 1, - "number": 2, - "reference": 1, - "don": 2, - "ve": 7, - "opened": 3, - "one.": 1, - "stream": 13, - "closed": 1, - "+": 195, - "released": 2, - "either": 1, - "another": 1, - "timer": 5, - "fires": 1, - "NSMutableDictionary": 18, - "*connectionInfo": 2, - "automatic": 1, - "redirects": 2, - "standard": 1, - "follow": 1, - "behaviour": 2, - "most": 1, - "browsers": 1, - "shouldUseRFC2616RedirectBehaviour": 2, - "record": 1, - "downloading": 5, - "downloadComplete": 2, - "ID": 1, - "uniquely": 1, - "identifies": 1, - "primarily": 1, - "debugging": 1, - "NSNumber": 11, - "*requestID": 3, - "ASIHTTPRequestRunLoopMode": 2, - "synchronous": 1, - "NSDefaultRunLoopMode": 2, - "other": 3, - "*runLoopMode": 2, - "checks": 1, - "NSTimer": 5, - "*statusTimer": 2, - "setDefaultCache": 2, - "configure": 2, - "": 9, - "downloadCache": 5, - "policy": 7, - "ASICacheDelegate.h": 2, - "possible": 3, - "ASICachePolicy": 4, - "cachePolicy": 3, - "storage": 2, - "ASICacheStoragePolicy": 2, - "cacheStoragePolicy": 2, - "was": 4, - "pulled": 1, - "didUseCachedResponse": 3, - "secondsToCache": 3, - "custom": 2, - "interval": 1, - "expiring": 1, - "&&": 123, - "shouldContinueWhenAppEntersBackground": 3, - "UIBackgroundTaskIdentifier": 1, - "backgroundTask": 7, - "helper": 1, - "inflate": 2, - "*dataDecompressor": 2, - "Controls": 1, - "without": 1, - "responseString": 3, - "All": 2, - "no": 7, - "raw": 3, - "discarded": 1, - "rawResponseData": 4, - "temporaryFileDownloadPath": 2, - "normal": 1, - "temporaryUncompressedDataDownloadPath": 3, - "contents": 1, - "into": 1, - "Setting": 1, - "especially": 1, - "useful": 1, - "users": 1, - "conjunction": 1, - "streaming": 1, - "parser": 3, - "allow": 1, - "passed": 2, - "while": 11, - "still": 2, - "running": 4, - "behind": 1, - "scenes": 1, - "PAC": 7, - "own": 3, - "isPACFileRequest": 3, - "http": 4, - "https": 1, - "webservers": 1, - "*PACFileRequest": 2, - "asynchronously": 1, - "reading": 1, - "URLs": 2, - "NSInputStream": 7, - "*PACFileReadStream": 2, - "storing": 1, - "NSMutableData": 5, - "*PACFileData": 2, - "startSynchronous.": 1, - "Currently": 1, - "detection": 2, - "synchronously": 1, - "isSynchronous": 2, - "//block": 12, - "execute": 4, - "startedBlock": 5, - "headers": 11, - "headersReceivedBlock": 5, - "completionBlock": 5, - "failureBlock": 5, - "bytesReceivedBlock": 8, - "bytesSentBlock": 5, - "downloadSizeIncrementedBlock": 5, - "uploadSizeIncrementedBlock": 5, - "handling": 4, - "dataReceivedBlock": 5, - "authenticationNeededBlock": 5, - "proxyAuthenticationNeededBlock": 5, - "redirections": 1, - "requestRedirectedBlock": 5, - "#pragma": 44, - "mark": 42, - "init": 34, - "dealloc": 13, - "initWithURL": 4, - "newURL": 16, - "requestWithURL": 7, - "usingCache": 5, - "andCachePolicy": 3, - "setStartedBlock": 1, - "aStartedBlock": 1, - "setHeadersReceivedBlock": 1, - "aReceivedBlock": 2, - "setCompletionBlock": 1, - "aCompletionBlock": 1, - "setFailedBlock": 1, - "aFailedBlock": 1, - "setBytesReceivedBlock": 1, - "aBytesReceivedBlock": 1, - "setBytesSentBlock": 1, - "aBytesSentBlock": 1, - "setDownloadSizeIncrementedBlock": 1, - "aDownloadSizeIncrementedBlock": 1, - "setUploadSizeIncrementedBlock": 1, - "anUploadSizeIncrementedBlock": 1, - "setDataReceivedBlock": 1, - "setAuthenticationNeededBlock": 1, - "anAuthenticationBlock": 1, - "setProxyAuthenticationNeededBlock": 1, - "aProxyAuthenticationBlock": 1, - "setRequestRedirectedBlock": 1, - "aRedirectBlock": 1, - "setup": 2, - "addRequestHeader": 5, - "applyCookieHeader": 2, - "buildRequestHeaders": 3, - "applyAuthorizationHeader": 2, - "buildPostBody": 3, - "appendPostData": 3, - "appendPostDataFromFile": 3, - "isResponseCompressed": 3, - "startSynchronous": 2, - "startAsynchronous": 2, - "clearDelegatesAndCancel": 2, - "HEADRequest": 1, - "upload/download": 1, - "updateProgressIndicators": 1, - "updateUploadProgress": 3, - "updateDownloadProgress": 3, - "removeUploadProgressSoFar": 1, - "incrementDownloadSizeBy": 1, - "incrementUploadSizeBy": 3, - "updateProgressIndicator": 4, - "withProgress": 4, - "ofTotal": 4, - "performSelector": 7, - "selector": 12, - "onTarget": 7, - "target": 5, - "withObject": 10, - "callerToRetain": 7, - "caller": 1, - "talking": 1, - "delegates": 2, - "requestReceivedResponseHeaders": 1, - "newHeaders": 1, - "failWithError": 11, - "theError": 6, - "retryUsingNewConnection": 1, - "parsing": 2, - "readResponseHeaders": 2, - "parseStringEncodingFromHeaders": 2, - "parseMimeType": 2, - "**": 27, - "mimeType": 2, - "andResponseEncoding": 2, - "stringEncoding": 1, - "fromContentType": 2, - "contentType": 1, - "stuff": 1, - "applyCredentials": 1, - "newCredentials": 16, - "applyProxyCredentials": 2, - "findCredentials": 1, - "findProxyCredentials": 2, - "retryUsingSuppliedCredentials": 1, - "cancelAuthentication": 1, - "attemptToApplyCredentialsAndResume": 1, - "attemptToApplyProxyCredentialsAndResume": 1, - "showProxyAuthenticationDialog": 1, - "showAuthenticationDialog": 1, - "addBasicAuthenticationHeaderWithUsername": 2, - "theUsername": 1, - "andPassword": 2, - "thePassword": 1, - "handlers": 1, - "handleNetworkEvent": 2, - "CFStreamEventType": 2, - "type": 5, - "handleBytesAvailable": 1, - "handleStreamComplete": 1, - "handleStreamError": 1, - "cleanup": 1, - "markAsFinished": 4, - "removeTemporaryDownloadFile": 1, - "removeTemporaryUncompressedDownloadFile": 1, - "removeTemporaryUploadFile": 1, - "removeTemporaryCompressedUploadFile": 1, - "removeFileAtPath": 1, - "err": 8, - "connectionID": 1, - "expirePersistentConnections": 1, - "defaultTimeOutSeconds": 3, - "setDefaultTimeOutSeconds": 1, - "newTimeOutSeconds": 1, - "client": 1, - "setClientCertificateIdentity": 1, - "anIdentity": 1, - "sessionProxyCredentialsStore": 1, - "sessionCredentialsStore": 1, - "storeProxyAuthenticationCredentialsInSessionStore": 1, - "storeAuthenticationCredentialsInSessionStore": 2, - "removeProxyAuthenticationCredentialsFromSessionStore": 1, - "removeAuthenticationCredentialsFromSessionStore": 3, - "findSessionProxyAuthenticationCredentials": 1, - "findSessionAuthenticationCredentials": 2, - "saveCredentialsToKeychain": 3, - "saveCredentials": 4, - "NSURLCredential": 8, - "forHost": 2, - "realm": 14, - "forProxy": 2, - "savedCredentialsForHost": 1, - "savedCredentialsForProxy": 1, - "removeCredentialsForHost": 1, - "removeCredentialsForProxy": 1, - "setSessionCookies": 1, - "newSessionCookies": 1, - "addSessionCookie": 1, - "NSHTTPCookie": 1, - "newCookie": 1, - "agent": 2, - "defaultUserAgentString": 1, - "setDefaultUserAgentString": 1, - "mime": 1, - "mimeTypeForFileAtPath": 1, - "bandwidth": 3, - "measurement": 1, - "throttling": 1, - "maxBandwidthPerSecond": 2, - "setMaxBandwidthPerSecond": 1, - "averageBandwidthUsedPerSecond": 2, - "performThrottling": 2, - "isBandwidthThrottled": 2, - "incrementBandwidthUsedInLastSecond": 1, - "setShouldThrottleBandwidthForWWAN": 1, - "throttle": 1, - "throttleBandwidthForWWANUsingLimit": 1, - "limit": 1, - "reachability": 1, - "isNetworkReachableViaWWAN": 1, - "queue": 12, - "NSOperationQueue": 4, - "sharedQueue": 4, - "defaultCache": 3, - "maxUploadReadLength": 1, - "activity": 1, - "isNetworkInUse": 1, - "setShouldUpdateNetworkActivityIndicator": 1, - "shouldUpdate": 1, - "showNetworkActivityIndicator": 1, - "hideNetworkActivityIndicator": 1, - "miscellany": 1, - "base64forData": 1, - "theData": 1, - "expiryDateForRequest": 1, - "maxAge": 2, - "dateFromRFC1123String": 1, - "isMultitaskingSupported": 2, - "threading": 1, - "NSThread": 4, - "threadForRequest": 3, - "@property": 150, - "retain": 73, - "*proxyHost": 1, - "assign": 84, - "proxyPort": 2, - "*proxyType": 1, - "setter": 2, - "setURL": 3, - "nonatomic": 40, - "readonly": 19, - "*authenticationRealm": 2, - "*requestHeaders": 1, - "*requestCredentials": 1, - "*rawResponseData": 1, - "*requestMethod": 1, - "*postBody": 1, - "*postBodyFilePath": 1, - "shouldStreamPostDataFromDisk": 4, - "didCreateTemporaryPostDataFile": 1, - "*authenticationScheme": 1, - "shouldPresentAuthenticationDialog": 1, - "authenticationRetryCount": 2, - "haveBuiltRequestHeaders": 1, - "inProgress": 4, - "numberOfTimesToRetryOnTimeout": 2, - "retryCount": 3, - "shouldAttemptPersistentConnection": 2, - "@end": 37, - "": 1, - "#else": 8, - "": 1, - "@": 258, - "static": 102, - "*defaultUserAgent": 1, - "*ASIHTTPRequestRunLoopMode": 1, - "CFOptionFlags": 1, - "kNetworkEvents": 1, - "kCFStreamEventHasBytesAvailable": 1, - "|": 13, - "kCFStreamEventEndEncountered": 1, - "kCFStreamEventErrorOccurred": 1, - "*sessionCredentialsStore": 1, - "*sessionProxyCredentialsStore": 1, - "*sessionCredentialsLock": 1, - "*sessionCookies": 1, - "RedirectionLimit": 1, - "ReadStreamClientCallBack": 1, - "CFReadStreamRef": 5, - "readStream": 5, - "*clientCallBackInfo": 1, - "ASIHTTPRequest*": 1, - "clientCallBackInfo": 1, - "*progressLock": 1, - "*ASIRequestCancelledError": 1, - "*ASIRequestTimedOutError": 1, - "*ASIAuthenticationError": 1, - "*ASIUnableToCreateRequestError": 1, - "*ASITooMuchRedirectionError": 1, - "*bandwidthUsageTracker": 1, - "nextConnectionNumberToCreate": 1, - "*persistentConnectionsPool": 1, - "*connectionsLock": 1, - "nextRequestID": 1, - "bandwidthUsedInLastSecond": 1, - "*bandwidthMeasurementDate": 1, - "NSLock": 2, - "*bandwidthThrottlingLock": 1, - "shouldThrottleBandwidthForWWANOnly": 1, - "*sessionCookiesLock": 1, - "*delegateAuthenticationLock": 1, - "*throttleWakeUpTime": 1, - "runningRequestCount": 1, - "shouldUpdateNetworkActivityIndicator": 1, - "*networkThread": 1, - "*sharedQueue": 1, - "cancelLoad": 3, - "destroyReadStream": 3, - "scheduleReadStream": 1, - "unscheduleReadStream": 1, - "willAskDelegateForCredentials": 1, - "willAskDelegateForProxyCredentials": 1, - "askDelegateForProxyCredentials": 1, - "askDelegateForCredentials": 1, - "failAuthentication": 1, - "measureBandwidthUsage": 1, - "recordBandwidthUsage": 1, - "startRequest": 3, - "updateStatus": 2, - "checkRequestStatus": 2, - "reportFailure": 3, - "reportFinished": 1, - "performRedirect": 1, - "shouldTimeOut": 2, - "willRedirect": 1, - "willAskDelegateToConfirmRedirect": 1, - "performInvocation": 2, - "NSInvocation": 4, - "invocation": 4, - "releasingObject": 2, - "objectToRelease": 1, - "hideNetworkActivityIndicatorAfterDelay": 1, - "hideNetworkActivityIndicatorIfNeeeded": 1, - "runRequests": 1, - "configureProxies": 2, - "fetchPACFile": 1, - "finishedDownloadingPACFile": 1, - "theRequest": 1, - "runPACScript": 1, - "script": 1, - "timeOutPACRead": 1, - "useDataFromCache": 2, - "updatePartialDownloadSize": 1, - "registerForNetworkReachabilityNotifications": 1, - "unsubscribeFromNetworkReachabilityNotifications": 1, - "reachabilityChanged": 1, - "NSNotification": 2, - "note": 1, - "performBlockOnMainThread": 2, - "block": 18, - "releaseBlocksOnMainThread": 4, - "releaseBlocks": 3, - "blocks": 16, - "callBlock": 1, - "*postBodyWriteStream": 1, - "*postBodyReadStream": 1, - "*compressedPostBody": 1, - "*compressedPostBodyFilePath": 1, - "willRetryRequest": 1, - "*readStream": 1, - "readStreamIsScheduled": 1, - "setSynchronous": 2, - "@implementation": 13, - "initialize": 1, - "class": 30, - "persistentConnectionsPool": 3, - "alloc": 47, - "connectionsLock": 3, - "progressLock": 1, - "bandwidthThrottlingLock": 1, - "sessionCookiesLock": 1, - "sessionCredentialsLock": 1, - "delegateAuthenticationLock": 1, - "bandwidthUsageTracker": 1, - "initWithCapacity": 2, - "ASIRequestTimedOutError": 1, - "initWithDomain": 5, - "dictionaryWithObjectsAndKeys": 10, - "NSLocalizedDescriptionKey": 10, - "ASIAuthenticationError": 1, - "ASIRequestCancelledError": 2, - "ASIUnableToCreateRequestError": 3, - "ASITooMuchRedirectionError": 1, - "setMaxConcurrentOperationCount": 1, - "setRequestMethod": 3, - "setRunLoopMode": 2, - "setShouldAttemptPersistentConnection": 2, - "setPersistentConnectionTimeoutSeconds": 2, - "setShouldPresentCredentialsBeforeChallenge": 1, - "setShouldRedirect": 1, - "setShowAccurateProgress": 1, - "setShouldResetDownloadProgress": 1, - "setShouldResetUploadProgress": 1, - "setAllowCompressedResponse": 1, - "setShouldWaitToInflateCompressedResponses": 1, - "setDefaultResponseEncoding": 1, - "setShouldPresentProxyAuthenticationDialog": 1, - "setTimeOutSeconds": 1, - "setUseSessionPersistence": 1, - "setUseCookiePersistence": 1, - "setValidatesSecureCertificate": 1, - "setRequestCookies": 2, - "autorelease": 21, - "setDidStartSelector": 1, - "@selector": 28, - "setDidReceiveResponseHeadersSelector": 1, - "setWillRedirectSelector": 1, - "willRedirectToURL": 1, - "setDidFinishSelector": 1, - "setDidFailSelector": 1, - "setDidReceiveDataSelector": 1, - "setCancelledLock": 1, - "setDownloadCache": 3, - "return": 165, - "ASIUseDefaultCachePolicy": 1, - "*request": 1, - "setCachePolicy": 1, - "setAuthenticationNeeded": 2, - "requestAuthentication": 7, - "CFRelease": 19, - "redirectURL": 1, - "release": 66, - "statusTimer": 3, - "invalidate": 2, - "postBody": 11, - "compressedPostBody": 4, - "requestHeaders": 6, - "requestCookies": 1, - "fileDownloadOutputStream": 1, - "inflatedFileDownloadOutputStream": 1, - "username": 8, - "domain": 2, - "authenticationRealm": 4, - "requestCredentials": 1, - "proxyHost": 2, - "proxyType": 1, - "proxyUsername": 3, - "proxyPassword": 3, - "proxyDomain": 1, - "proxyAuthenticationRealm": 2, - "proxyAuthenticationScheme": 2, - "proxyCredentials": 1, - "originalURL": 1, - "lastActivityTime": 1, - "responseCookies": 1, - "responseHeaders": 5, - "requestMethod": 13, - "cancelledLock": 37, - "postBodyFilePath": 7, - "compressedPostBodyFilePath": 4, - "postBodyWriteStream": 7, - "postBodyReadStream": 2, - "PACurl": 1, - "clientCertificates": 2, - "responseStatusMessage": 1, - "connectionInfo": 13, - "requestID": 2, - "dataDecompressor": 1, - "userAgentString": 1, - "super": 25, - "*blocks": 1, - "array": 84, - "addObject": 16, - "performSelectorOnMainThread": 2, - "waitUntilDone": 4, - "isMainThread": 2, - "Blocks": 1, - "exits": 1, - "setRequestHeaders": 2, - "dictionaryWithCapacity": 2, - "setObject": 9, - "forKey": 9, - "Are": 1, - "submitting": 1, - "disk": 1, - "were": 5, - "close": 5, - "setPostBodyWriteStream": 2, - "*path": 1, - "setCompressedPostBodyFilePath": 1, - "NSTemporaryDirectory": 2, - "stringByAppendingPathComponent": 2, - "NSProcessInfo": 2, - "processInfo": 2, - "globallyUniqueString": 2, - "*err": 3, - "ASIDataCompressor": 2, - "compressDataFromFile": 1, - "toFile": 1, - "&": 36, - "else": 35, - "setPostLength": 3, - "NSFileManager": 1, - "attributesOfItemAtPath": 1, - "fileSize": 1, - "errorWithDomain": 6, - "stringWithFormat": 6, - "Otherwise": 2, - "*compressedBody": 1, - "compressData": 1, - "setCompressedPostBody": 1, - "compressedBody": 1, - "isEqualToString": 13, - "||": 42, - "setHaveBuiltPostBody": 1, - "setupPostBody": 3, - "setPostBodyFilePath": 1, - "setDidCreateTemporaryPostDataFile": 1, - "initToFileAtPath": 1, - "append": 1, - "open": 2, - "setPostBody": 1, - "maxLength": 3, - "appendData": 2, - "*stream": 1, - "initWithFileAtPath": 1, - "NSUInteger": 93, - "bytesRead": 5, - "hasBytesAvailable": 1, - "char": 19, - "*256": 1, - "sizeof": 13, - "break": 13, - "dataWithBytes": 1, - "*m": 1, - "unlock": 20, - "m": 1, - "newRequestMethod": 3, - "*u": 1, - "u": 4, - "isEqual": 4, - "NULL": 152, - "setRedirectURL": 2, - "d": 11, - "setDelegate": 4, - "newDelegate": 6, - "q": 2, - "setQueue": 2, - "newQueue": 3, - "cancelOnRequestThread": 2, - "DEBUG_REQUEST_STATUS": 4, - "ASI_DEBUG_LOG": 11, - "isCancelled": 6, - "setComplete": 3, - "CFRetain": 4, - "willChangeValueForKey": 1, - "didChangeValueForKey": 1, - "onThread": 2, - "Clear": 3, - "setDownloadProgressDelegate": 2, - "setUploadProgressDelegate": 2, - "initWithBytes": 1, - "*encoding": 1, - "rangeOfString": 1, - ".location": 1, - "NSNotFound": 1, - "uncompressData": 1, - "DEBUG_THROTTLING": 2, - "setInProgress": 3, - "NSRunLoop": 2, - "currentRunLoop": 2, - "runMode": 1, - "runLoopMode": 2, - "beforeDate": 1, - "distantFuture": 1, - "start": 3, - "addOperation": 1, - "concurrency": 1, - "isConcurrent": 1, - "isFinished": 1, - "isExecuting": 1, - "logic": 1, - "@try": 1, - "UIBackgroundTaskInvalid": 3, - "UIApplication": 2, - "sharedApplication": 2, - "beginBackgroundTaskWithExpirationHandler": 1, - "dispatch_async": 1, - "dispatch_get_main_queue": 1, - "endBackgroundTask": 1, - "generated": 3, - "ASINetworkQueue": 4, - "already.": 1, - "proceed.": 1, - "setDidUseCachedResponse": 1, - "Must": 1, - "call": 8, - "create": 1, - "needs": 1, - "mainRequest": 9, - "ll": 6, - "already": 4, - "CFHTTPMessageRef": 3, - "Create": 1, - "request.": 1, - "CFHTTPMessageCreateRequest": 1, - "kCFAllocatorDefault": 3, - "CFStringRef": 1, - "CFURLRef": 1, - "kCFHTTPVersion1_0": 1, - "kCFHTTPVersion1_1": 1, - "//If": 2, - "let": 8, - "generate": 1, - "its": 9, - "Even": 1, - "chance": 2, - "add": 5, - "ASIS3Request": 1, - "does": 3, - "process": 1, - "@catch": 1, - "NSException": 19, - "*exception": 1, - "*underlyingError": 1, - "exception": 3, - "name": 7, - "reason": 1, - "NSLocalizedFailureReasonErrorKey": 1, - "underlyingError": 1, - "@finally": 1, - "Do": 3, - "DEBUG_HTTP_AUTHENTICATION": 4, - "*credentials": 1, - "auth": 2, - "basic": 3, - "any": 3, - "cached": 2, - "key": 32, - "challenge": 1, - "apply": 2, - "like": 1, - "CFHTTPMessageApplyCredentialDictionary": 2, - "CFDictionaryRef": 1, - "setAuthenticationScheme": 1, - "happens": 4, - "%": 30, - "re": 9, - "retrying": 1, - "our": 6, - "measure": 1, - "throttled": 1, - "setPostBodyReadStream": 2, - "ASIInputStream": 2, - "inputStreamWithData": 2, - "setReadStream": 2, - "NSMakeCollectable": 3, - "CFReadStreamCreateForStreamedHTTPRequest": 1, - "CFReadStreamCreateForHTTPRequest": 1, - "lowercaseString": 1, - "*sslProperties": 2, - "initWithObjectsAndKeys": 1, - "numberWithBool": 3, - "kCFStreamSSLAllowsExpiredCertificates": 1, - "kCFStreamSSLAllowsAnyRoot": 1, - "kCFStreamSSLValidatesCertificateChain": 1, - "kCFNull": 1, - "kCFStreamSSLPeerName": 1, - "CFReadStreamSetProperty": 1, - "kCFStreamPropertySSLSettings": 1, - "CFTypeRef": 1, - "sslProperties": 2, - "*certificates": 1, - "arrayWithCapacity": 2, - "count": 99, - "*oldStream": 1, - "redirecting": 2, - "connecting": 2, - "intValue": 4, - "setConnectionInfo": 2, - "Check": 1, - "expired": 1, - "timeIntervalSinceNow": 1, - "<": 56, - "DEBUG_PERSISTENT_CONNECTIONS": 3, - "removeObject": 2, - "//Some": 1, - "previously": 1, - "there": 1, - "one": 1, - "We": 7, - "just": 4, - "old": 5, - "//lists.apple.com/archives/Macnetworkprog/2006/Mar/msg00119.html": 1, - "oldStream": 4, - "streamSuccessfullyOpened": 1, - "setConnectionCanBeReused": 2, - "Record": 1, - "started": 1, - "nothing": 2, - "setLastActivityTime": 1, - "setStatusTimer": 2, - "timerWithTimeInterval": 1, - "repeats": 1, - "addTimer": 1, - "forMode": 1, - "here": 2, - "safely": 1, - "***Black": 1, - "magic": 1, - "warning***": 1, - "reliable": 1, - "way": 1, - "track": 1, - "strong": 4, - "slow.": 1, - "secondsSinceLastActivity": 1, - "*1.5": 1, - "updating": 1, - "checking": 1, - "told": 1, - "us": 2, - "auto": 2, - "resuming": 1, - "Range": 1, - "take": 1, - "account": 1, - "perhaps": 1, - "setTotalBytesSent": 1, - "CFReadStreamCopyProperty": 2, - "kCFStreamPropertyHTTPRequestBytesWrittenCount": 1, - "unsignedLongLongValue": 1, - "middle": 1, - "said": 1, - "might": 4, - "MaxValue": 2, - "UIProgressView": 2, - "double": 3, - "max": 7, - "setMaxValue": 2, - "examined": 1, - "since": 1, - "authenticate": 1, - "bytesReadSoFar": 3, - "setUpdatedProgress": 1, - "didReceiveBytes": 2, - "totalSize": 2, - "setLastBytesRead": 1, - "pass": 5, - "pointer": 2, - "directly": 1, - "itself": 1, - "setArgument": 4, - "atIndex": 6, - "argumentNumber": 1, - "callback": 3, - "NSMethodSignature": 1, - "*cbSignature": 1, - "methodSignatureForSelector": 1, - "*cbInvocation": 1, - "invocationWithMethodSignature": 1, - "cbSignature": 1, - "cbInvocation": 5, - "setSelector": 1, - "setTarget": 1, - "forget": 2, - "know": 3, - "removeObjectForKey": 1, - "dateWithTimeIntervalSinceNow": 1, - "ignore": 1, - "ASIFallbackToCacheIfLoadFailsCachePolicy": 2, - "canUseCachedDataForRequest": 1, - "setError": 2, - "*failedRequest": 1, - "compatible": 1, - "fail": 1, - "failedRequest": 4, - "message": 2, - "kCFStreamPropertyHTTPResponseHeader": 1, - "Make": 1, - "sure": 1, - "tells": 1, - "keepAliveHeader": 2, - "NSScanner": 2, - "*scanner": 1, - "scannerWithString": 1, - "scanner": 5, - "scanString": 2, - "intoString": 3, - "scanInt": 2, - "scanUpToString": 1, - "what": 3, - "hard": 1, - "throw": 1, - "away.": 1, - "*userAgentHeader": 1, - "*acceptHeader": 1, - "userAgentHeader": 2, - "acceptHeader": 2, - "setHaveBuiltRequestHeaders": 1, - "Force": 2, - "rebuild": 2, - "cookie": 1, - "incase": 1, - "got": 1, - "some": 1, - "remain": 1, - "ones": 3, - "URLWithString": 1, - "valueForKey": 2, - "relativeToURL": 1, - "absoluteURL": 1, - "setNeedsRedirect": 1, - "means": 1, - "manually": 1, - "added": 5, - "those": 1, - "global": 1, - "But": 1, - "safest": 1, - "option": 1, - "responseCode": 1, - "Handle": 1, - "*mimeType": 1, - "setResponseEncoding": 2, - "saveProxyCredentialsToKeychain": 1, - "*authenticationCredentials": 2, - "credentialWithUser": 2, - "kCFHTTPAuthenticationUsername": 2, - "kCFHTTPAuthenticationPassword": 2, - "persistence": 2, - "NSURLCredentialPersistencePermanent": 2, - "authenticationCredentials": 4, - "setProxyAuthenticationRetryCount": 1, - "Apply": 1, - "whatever": 1, - "ok": 1, - "CFMutableDictionaryRef": 1, - "*sessionCredentials": 1, - "dictionary": 64, - "sessionCredentials": 6, - "setRequestCredentials": 1, - "*newCredentials": 1, - "*user": 1, - "*pass": 1, - "*theRequest": 1, - "try": 3, - "connect": 1, - "website": 1, - "kCFHTTPAuthenticationSchemeNTLM": 1, - "Ok": 1, - "extract": 1, - "NSArray*": 1, - "ntlmComponents": 1, - "componentsSeparatedByString": 1, - "AUTH": 6, - "Request": 6, - "parent": 1, - "properties": 1, - "ASIAuthenticationDialog": 2, - "had": 1, - "Foo": 2, - "NSObject": 5, - "": 2, - "FooAppDelegate": 2, - "": 1, - "@private": 2, - "NSWindow": 2, - "*window": 2, - "IBOutlet": 1, - "@synthesize": 7, - "window": 1, - "applicationDidFinishLaunching": 1, - "aNotification": 1, - "argc": 1, - "*argv": 1, - "NSLog": 4, - "#include": 18, - "": 1, - "": 2, - "": 2, - "": 1, - "": 1, - "#ifdef": 10, - "__OBJC__": 4, - "": 2, - "": 2, - "": 2, - "": 1, - "": 2, - "": 1, - "__cplusplus": 2, - "NSINTEGER_DEFINED": 3, - "defined": 16, - "__LP64__": 4, - "NS_BUILD_32_LIKE_64": 3, - "NSIntegerMin": 3, - "LONG_MIN": 3, - "NSIntegerMax": 4, - "LONG_MAX": 3, - "NSUIntegerMax": 7, - "ULONG_MAX": 3, - "INT_MIN": 3, - "INT_MAX": 2, - "UINT_MAX": 3, - "_JSONKIT_H_": 3, - "__GNUC__": 14, - "__APPLE_CC__": 2, - "JK_DEPRECATED_ATTRIBUTE": 6, - "__attribute__": 3, - "deprecated": 1, - "JSONKIT_VERSION_MAJOR": 1, - "JSONKIT_VERSION_MINOR": 1, - "JKFlags": 5, - "JKParseOptionNone": 1, - "JKParseOptionStrict": 1, - "JKParseOptionComments": 2, - "<<": 16, - "JKParseOptionUnicodeNewlines": 2, - "JKParseOptionLooseUnicode": 2, - "JKParseOptionPermitTextAfterValidJSON": 2, - "JKParseOptionValidFlags": 1, - "JKParseOptionFlags": 12, - "JKSerializeOptionNone": 3, - "JKSerializeOptionPretty": 2, - "JKSerializeOptionEscapeUnicode": 2, - "JKSerializeOptionEscapeForwardSlashes": 2, - "JKSerializeOptionValidFlags": 1, - "JKSerializeOptionFlags": 16, - "struct": 20, - "JKParseState": 18, - "Opaque": 1, - "private": 1, - "type.": 3, - "JSONDecoder": 2, - "*parseState": 16, - "decoder": 1, - "decoderWithParseOptions": 1, - "parseOptionFlags": 11, - "initWithParseOptions": 1, - "clearCache": 1, - "parseUTF8String": 2, - "size_t": 23, - "Deprecated": 4, - "JSONKit": 11, - "v1.4.": 4, - "objectWithUTF8String": 4, - "instead.": 4, - "parseJSONData": 2, - "jsonData": 6, - "objectWithData": 7, - "mutableObjectWithUTF8String": 2, - "mutableObjectWithData": 2, - "////////////": 4, - "Deserializing": 1, - "methods": 2, - "JSONKitDeserializing": 2, - "objectFromJSONString": 1, - "objectFromJSONStringWithParseOptions": 2, - "mutableObjectFromJSONString": 1, - "mutableObjectFromJSONStringWithParseOptions": 2, - "objectFromJSONData": 1, - "objectFromJSONDataWithParseOptions": 2, - "mutableObjectFromJSONData": 1, - "mutableObjectFromJSONDataWithParseOptions": 2, - "Serializing": 1, - "JSONKitSerializing": 3, - "JSONData": 3, - "Invokes": 2, - "JSONDataWithOptions": 8, - "includeQuotes": 6, - "serializeOptions": 14, - "JSONString": 3, - "JSONStringWithOptions": 8, - "serializeUnsupportedClassesUsingDelegate": 4, - "__BLOCKS__": 1, - "JSONKitSerializingBlockAdditions": 2, - "serializeUnsupportedClassesUsingBlock": 4, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "//#include": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "//#import": 1, - "": 1, - "": 1, - "": 1, - "__has_feature": 3, - "JK_ENABLE_CF_TRANSFER_OWNERSHIP_CALLBACKS": 2, - "#warning": 1, - "As": 1, - "v1.4": 1, - "longer": 2, - "required.": 1, - "option.": 1, - "__OBJC_GC__": 1, - "#error": 6, - "Objective": 2, - "C": 6, - "Garbage": 1, - "Collection": 1, - "objc_arc": 1, - "Automatic": 1, - "Reference": 1, - "Counting": 1, - "ARC": 1, - "xffffffffU": 1, - "fffffff": 1, - "ULLONG_MAX": 1, - "xffffffffffffffffULL": 1, - "LLONG_MIN": 1, - "fffffffffffffffLL": 1, - "LL": 1, - "requires": 4, - "types": 2, - "bits": 1, - "respectively.": 1, - "WORD_BIT": 1, - "LONG_BIT": 1, - "bit": 1, - "architectures.": 1, - "SIZE_MAX": 1, - "SSIZE_MAX": 1, - "JK_HASH_INIT": 1, - "UL": 138, - "JK_FAST_TRAILING_BYTES": 2, - "JK_CACHE_SLOTS_BITS": 2, - "JK_CACHE_SLOTS": 1, - "JK_CACHE_PROBES": 1, - "JK_INIT_CACHE_AGE": 1, - "JK_TOKENBUFFER_SIZE": 1, - "JK_STACK_OBJS": 1, - "JK_JSONBUFFER_SIZE": 1, - "JK_UTF8BUFFER_SIZE": 1, - "JK_ENCODE_CACHE_SLOTS": 1, - "JK_ATTRIBUTES": 15, - "attr": 3, - "...": 11, - "##__VA_ARGS__": 7, - "JK_EXPECTED": 4, - "cond": 12, - "expect": 3, - "__builtin_expect": 1, - "JK_EXPECT_T": 22, - "U": 2, - "JK_EXPECT_F": 14, - "JK_PREFETCH": 2, - "ptr": 3, - "__builtin_prefetch": 1, - "JK_STATIC_INLINE": 10, - "__inline__": 1, - "always_inline": 1, - "JK_ALIGNED": 1, - "arg": 11, - "aligned": 1, - "JK_UNUSED_ARG": 2, - "unused": 3, - "JK_WARN_UNUSED": 1, - "warn_unused_result": 9, - "JK_WARN_UNUSED_CONST": 1, - "JK_WARN_UNUSED_PURE": 1, - "pure": 2, - "JK_WARN_UNUSED_SENTINEL": 1, - "sentinel": 1, - "JK_NONNULL_ARGS": 1, - "nonnull": 6, - "JK_WARN_UNUSED_NONNULL_ARGS": 1, - "JK_WARN_UNUSED_CONST_NONNULL_ARGS": 1, - "JK_WARN_UNUSED_PURE_NONNULL_ARGS": 1, - "__GNUC_MINOR__": 3, - "JK_ALLOC_SIZE_NON_NULL_ARGS_WARN_UNUSED": 2, - "nn": 4, - "alloc_size": 1, - "JKArray": 14, - "JKDictionaryEnumerator": 4, - "JKDictionary": 22, - "JSONNumberStateStart": 1, - "JSONNumberStateFinished": 1, - "JSONNumberStateError": 1, - "JSONNumberStateWholeNumberStart": 1, - "JSONNumberStateWholeNumberMinus": 1, - "JSONNumberStateWholeNumberZero": 1, - "JSONNumberStateWholeNumber": 1, - "JSONNumberStatePeriod": 1, - "JSONNumberStateFractionalNumberStart": 1, - "JSONNumberStateFractionalNumber": 1, - "JSONNumberStateExponentStart": 1, - "JSONNumberStateExponentPlusMinus": 1, - "JSONNumberStateExponent": 1, - "JSONStringStateStart": 1, - "JSONStringStateParsing": 1, - "JSONStringStateFinished": 1, - "JSONStringStateError": 1, - "JSONStringStateEscape": 1, - "JSONStringStateEscapedUnicode1": 1, - "JSONStringStateEscapedUnicode2": 1, - "JSONStringStateEscapedUnicode3": 1, - "JSONStringStateEscapedUnicode4": 1, - "JSONStringStateEscapedUnicodeSurrogate1": 1, - "JSONStringStateEscapedUnicodeSurrogate2": 1, - "JSONStringStateEscapedUnicodeSurrogate3": 1, - "JSONStringStateEscapedUnicodeSurrogate4": 1, - "JSONStringStateEscapedNeedEscapeForSurrogate": 1, - "JSONStringStateEscapedNeedEscapedUForSurrogate": 1, - "JKParseAcceptValue": 2, - "JKParseAcceptComma": 2, - "JKParseAcceptEnd": 3, - "JKParseAcceptValueOrEnd": 1, - "JKParseAcceptCommaOrEnd": 1, - "JKClassUnknown": 1, - "JKClassString": 1, - "JKClassNumber": 1, - "JKClassArray": 1, - "JKClassDictionary": 1, - "JKClassNull": 1, - "JKManagedBufferOnStack": 1, - "JKManagedBufferOnHeap": 1, - "JKManagedBufferLocationMask": 1, - "JKManagedBufferLocationShift": 1, - "JKManagedBufferMustFree": 1, - "JKManagedBufferFlags": 1, - "JKObjectStackOnStack": 1, - "JKObjectStackOnHeap": 1, - "JKObjectStackLocationMask": 1, - "JKObjectStackLocationShift": 1, - "JKObjectStackMustFree": 1, - "JKObjectStackFlags": 1, - "JKTokenTypeInvalid": 1, - "JKTokenTypeNumber": 1, - "JKTokenTypeString": 1, - "JKTokenTypeObjectBegin": 1, - "JKTokenTypeObjectEnd": 1, - "JKTokenTypeArrayBegin": 1, - "JKTokenTypeArrayEnd": 1, - "JKTokenTypeSeparator": 1, - "JKTokenTypeComma": 1, - "JKTokenTypeTrue": 1, - "JKTokenTypeFalse": 1, - "JKTokenTypeNull": 1, - "JKTokenTypeWhiteSpace": 1, - "JKTokenType": 2, - "JKValueTypeNone": 1, - "JKValueTypeString": 1, - "JKValueTypeLongLong": 1, - "JKValueTypeUnsignedLongLong": 1, - "JKValueTypeDouble": 1, - "JKValueType": 1, - "JKEncodeOptionAsData": 1, - "JKEncodeOptionAsString": 1, - "JKEncodeOptionAsTypeMask": 1, - "JKEncodeOptionCollectionObj": 1, - "JKEncodeOptionStringObj": 1, - "JKEncodeOptionStringObjTrimQuotes": 1, - "JKEncodeOptionType": 2, - "JKHash": 4, - "JKTokenCacheItem": 2, - "JKTokenCache": 2, - "JKTokenValue": 2, - "JKParseToken": 2, - "JKPtrRange": 2, - "JKObjectStack": 5, - "JKBuffer": 2, - "JKConstBuffer": 2, - "JKConstPtrRange": 2, - "JKRange": 2, - "JKManagedBuffer": 5, - "JKFastClassLookup": 2, - "JKEncodeCache": 6, - "JKEncodeState": 11, - "JKObjCImpCache": 2, - "JKHashTableEntry": 21, - "serializeObject": 1, - "options": 6, - "optionFlags": 1, - "encodeOption": 2, - "JKSERIALIZER_BLOCKS_PROTO": 1, - "releaseState": 1, - "keyHash": 21, - "uint32_t": 1, - "UTF32": 11, - "uint16_t": 1, - "UTF16": 1, - "uint8_t": 1, - "UTF8": 2, - "conversionOK": 1, - "sourceExhausted": 1, - "targetExhausted": 1, - "sourceIllegal": 1, - "ConversionResult": 1, - "UNI_REPLACEMENT_CHAR": 1, - "FFFD": 1, - "UNI_MAX_BMP": 1, - "FFFF": 3, - "UNI_MAX_UTF16": 1, - "UNI_MAX_UTF32": 1, - "FFFFFFF": 1, - "UNI_MAX_LEGAL_UTF32": 1, - "UNI_SUR_HIGH_START": 1, - "xD800": 1, - "UNI_SUR_HIGH_END": 1, - "xDBFF": 1, - "UNI_SUR_LOW_START": 1, - "xDC00": 1, - "UNI_SUR_LOW_END": 1, - "xDFFF": 1, - "trailingBytesForUTF8": 1, - "offsetsFromUTF8": 1, - "E2080UL": 1, - "C82080UL": 1, - "xFA082080UL": 1, - "firstByteMark": 1, - "xC0": 1, - "xE0": 1, - "xF0": 1, - "xF8": 1, - "xFC": 1, - "JK_AT_STRING_PTR": 1, - "stringBuffer.bytes.ptr": 2, - "JK_END_STRING_PTR": 1, - "stringBuffer.bytes.length": 1, - "*_JKArrayCreate": 2, - "*objects": 5, - "mutableCollection": 7, - "_JKArrayInsertObjectAtIndex": 3, - "*array": 9, - "newObject": 12, - "objectIndex": 48, - "_JKArrayReplaceObjectAtIndexWithObject": 3, - "_JKArrayRemoveObjectAtIndex": 3, - "_JKDictionaryCapacityForCount": 4, - "*_JKDictionaryCreate": 2, - "*keys": 2, - "*keyHashes": 2, - "*_JKDictionaryHashEntry": 2, - "*dictionary": 13, - "_JKDictionaryCapacity": 3, - "_JKDictionaryResizeIfNeccessary": 3, - "_JKDictionaryRemoveObjectWithEntry": 3, - "*entry": 4, - "_JKDictionaryAddObject": 4, - "*_JKDictionaryHashTableEntryForKey": 2, - "aKey": 13, - "_JSONDecoderCleanup": 1, - "*decoder": 1, - "_NSStringObjectFromJSONString": 1, - "*jsonString": 1, - "**error": 1, - "jk_managedBuffer_release": 1, - "*managedBuffer": 3, - "jk_managedBuffer_setToStackBuffer": 1, - "*ptr": 2, - "*jk_managedBuffer_resize": 1, - "newSize": 1, - "jk_objectStack_release": 1, - "*objectStack": 3, - "jk_objectStack_setToStackBuffer": 1, - "**objects": 1, - "**keys": 1, - "CFHashCode": 1, - "*cfHashes": 1, - "jk_objectStack_resize": 1, - "newCount": 1, - "jk_error": 1, - "*format": 7, - "jk_parse_string": 1, - "jk_parse_number": 1, - "jk_parse_is_newline": 1, - "*atCharacterPtr": 1, - "jk_parse_skip_newline": 1, - "jk_parse_skip_whitespace": 1, - "jk_parse_next_token": 1, - "jk_error_parse_accept_or3": 1, - "*or1String": 1, - "*or2String": 1, - "*or3String": 1, - "*jk_create_dictionary": 1, - "startingObjectIndex": 1, - "*jk_parse_dictionary": 1, - "*jk_parse_array": 1, - "*jk_object_for_token": 1, - "*jk_cachedObjects": 1, - "jk_cache_age": 1, - "jk_set_parsed_token": 1, - "advanceBy": 1, - "jk_encode_error": 1, - "*encodeState": 9, - "jk_encode_printf": 1, - "*cacheSlot": 4, - "startingAtIndex": 4, - "jk_encode_write": 1, - "jk_encode_writePrettyPrintWhiteSpace": 1, - "jk_encode_write1slow": 2, - "ssize_t": 2, - "depthChange": 2, - "jk_encode_write1fast": 2, - "jk_encode_writen": 1, - "jk_encode_object_hash": 1, - "*objectPtr": 2, - "jk_encode_updateCache": 1, - "jk_encode_add_atom_to_buffer": 1, - "jk_encode_write1": 1, - "es": 3, - "dc": 3, - "f": 8, - "_jk_encode_prettyPrint": 1, - "jk_min": 1, - "b": 4, - "jk_max": 3, - "jk_calculateHash": 1, - "currentHash": 1, - "c": 7, - "Class": 3, - "_JKArrayClass": 5, - "_JKArrayInstanceSize": 4, - "_JKDictionaryClass": 5, - "_JKDictionaryInstanceSize": 4, - "_jk_NSNumberClass": 2, - "NSNumberAllocImp": 2, - "_jk_NSNumberAllocImp": 2, - "NSNumberInitWithUnsignedLongLongImp": 2, - "_jk_NSNumberInitWithUnsignedLongLongImp": 2, - "jk_collectionClassLoadTimeInitialization": 2, - "constructor": 1, - "NSAutoreleasePool": 2, - "*pool": 1, - "Though": 1, - "technically": 1, - "run": 1, - "environment": 1, - "load": 1, - "initialization": 1, - "less": 1, - "ideal.": 1, - "objc_getClass": 2, - "class_getInstanceSize": 2, - "methodForSelector": 2, - "temp_NSNumber": 4, - "initWithUnsignedLongLong": 1, - "pool": 2, - "": 2, - "NSMutableCopying": 2, - "NSFastEnumeration": 2, - "capacity": 51, - "mutations": 20, - "allocWithZone": 4, - "NSZone": 4, - "zone": 8, - "raise": 18, - "NSInvalidArgumentException": 6, - "format": 18, - "NSStringFromClass": 18, - "NSStringFromSelector": 16, - "_cmd": 16, - "NSCParameterAssert": 19, - "objects": 58, - "calloc": 5, - "Directly": 2, - "allocate": 2, - "instance": 2, - "calloc.": 2, - "isa": 2, - "malloc": 1, - "memcpy": 2, - "<=>": 15, - "*newObjects": 1, - "newObjects": 2, - "realloc": 1, - "NSMallocException": 2, - "memset": 1, - "memmove": 2, - "atObject": 12, - "free": 4, - "NSParameterAssert": 15, - "getObjects": 2, - "objectsPtr": 3, - "range": 8, - "NSRange": 1, - "NSMaxRange": 4, - "NSRangeException": 6, - "range.location": 2, - "range.length": 1, - "objectAtIndex": 8, - "countByEnumeratingWithState": 2, - "NSFastEnumerationState": 2, - "stackbuf": 8, - "len": 6, - "mutationsPtr": 2, - "itemsPtr": 2, - "enumeratedCount": 8, - "insertObject": 1, - "anObject": 16, - "NSInternalInconsistencyException": 4, - "__clang_analyzer__": 3, - "Stupid": 2, - "clang": 3, - "analyzer...": 2, - "Issue": 2, - "#19.": 2, - "removeObjectAtIndex": 1, - "replaceObjectAtIndex": 1, - "copyWithZone": 1, - "initWithObjects": 2, - "mutableCopyWithZone": 1, - "NSEnumerator": 2, - "collection": 11, - "nextObject": 6, - "initWithJKDictionary": 3, - "initDictionary": 4, - "allObjects": 2, - "arrayWithObjects": 1, - "_JKDictionaryHashEntry": 2, - "returnObject": 3, - "entry": 41, - ".key": 11, - "jk_dictionaryCapacities": 4, - "bottom": 6, - "top": 8, - "mid": 5, - "tableSize": 2, - "lround": 1, - "floor": 1, - "capacityForCount": 4, - "resize": 3, - "oldCapacity": 2, - "NS_BLOCK_ASSERTIONS": 1, - "oldCount": 2, - "*oldEntry": 1, - "idx": 33, - "oldEntry": 9, - ".keyHash": 2, - ".object": 7, - "keys": 5, - "keyHashes": 2, - "atEntry": 45, - "removeIdx": 3, - "entryIdx": 4, - "*atEntry": 3, - "addKeyEntry": 2, - "addIdx": 5, - "*atAddEntry": 1, - "atAddEntry": 6, - "keyEntry": 4, - "CFEqual": 2, - "CFHash": 1, - "table": 7, - "would": 2, - "now.": 1, - "entryForKey": 3, - "_JKDictionaryHashTableEntryForKey": 1, - "andKeys": 1, - "arrayIdx": 5, - "keyEnumerator": 1, - "copy": 4, - "Why": 1, - "earth": 1, - "complain": 1, - "doesn": 1, - "Internal": 2, - "Unable": 2, - "temporary": 2, - "buffer.": 2, - "line": 2, - "#": 2, - "ld": 2, - "Invalid": 1, - "character": 1, - "x.": 1, - "n": 7, - "r": 6, - "F": 1, - ".": 2, - "e": 1, - "Unexpected": 1, - "token": 1, - "wanted": 1, - "Expected": 3, - "MainMenuViewController": 2, - "TTTableViewController": 1, - "///////////////////////////////////////////////////////////////////////////////////////////////////": 24, - "initWithNibName": 3, - "nibNameOrNil": 1, - "bundle": 3, - "NSBundle": 1, - "nibBundleOrNil": 1, - "self.title": 2, - "//self.variableHeightRows": 1, - "self.tableViewStyle": 1, - "UITableViewStyleGrouped": 1, - "self.dataSource": 1, - "TTSectionedDataSource": 1, - "dataSourceWithObjects": 1, - "TTTableTextItem": 48, - "itemWithText": 48, - "URL": 48, - "PlaygroundViewController": 2, - "UIViewController": 2, - "UIScrollView*": 1, - "_scrollView": 9, - "": 1, - "CGFloat": 44, - "kFramePadding": 7, - "kElementSpacing": 3, - "kGroupSpacing": 5, - "addHeader": 5, - "yOffset": 42, - "UILabel*": 2, - "label": 6, - "UILabel": 2, - "initWithFrame": 12, - "CGRectZero": 5, - "label.text": 2, - "label.font": 3, - "UIFont": 3, - "systemFontOfSize": 2, - "label.numberOfLines": 2, - "CGRect": 41, - "frame": 38, - "label.frame": 4, - "frame.origin.x": 3, - "frame.origin.y": 16, - "frame.size.width": 4, - "frame.size.height": 15, - "sizeWithFont": 2, - "constrainedToSize": 2, - "CGSizeMake": 3, - ".height": 4, - "addSubview": 8, - "label.frame.size.height": 2, - "TT_RELEASE_SAFELY": 12, - "addText": 5, - "loadView": 4, - "UIScrollView": 1, - "self.view.bounds": 2, - "_scrollView.autoresizingMask": 1, - "UIViewAutoresizingFlexibleWidth": 4, - "UIViewAutoresizingFlexibleHeight": 1, - "self.view": 4, - "NSLocalizedString": 9, - "UIButton*": 1, - "button": 5, - "UIButton": 1, - "buttonWithType": 1, - "UIButtonTypeRoundedRect": 1, - "setTitle": 1, - "forState": 4, - "UIControlStateNormal": 1, - "addTarget": 1, - "action": 1, - "debugTestAction": 2, - "forControlEvents": 1, - "UIControlEventTouchUpInside": 1, - "sizeToFit": 1, - "button.frame": 2, - "TTCurrentLocale": 2, - "displayNameForKey": 1, - "NSLocaleIdentifier": 1, - "localeIdentifier": 1, - "TTPathForBundleResource": 1, - "TTPathForDocumentsResource": 1, - "dataUsingEncoding": 2, - "NSUTF8StringEncoding": 2, - "md5Hash": 1, - "setContentSize": 1, - "viewDidUnload": 2, - "viewDidAppear": 2, - "animated": 27, - "flashScrollIndicators": 1, - "DEBUG": 1, - "TTDPRINTMETHODNAME": 1, - "TTDPRINT": 9, - "TTMAXLOGLEVEL": 1, - "TTDERROR": 1, - "TTLOGLEVEL_ERROR": 1, - "TTDWARNING": 1, - "TTLOGLEVEL_WARNING": 1, - "TTDINFO": 1, - "TTLOGLEVEL_INFO": 1, - "TTDCONDITIONLOG": 3, - "rand": 1, - "TTDASSERT": 2, - "SBJsonParser": 2, - "maxDepth": 2, - "NSData*": 1, - "objectWithString": 5, - "repr": 5, - "jsonText": 1, - "NSError**": 2, - "self.maxDepth": 2, - "Methods": 1, - "self.error": 3, - "SBJsonStreamParserAccumulator": 2, - "*accumulator": 1, - "SBJsonStreamParserAdapter": 2, - "*adapter": 1, - "adapter.delegate": 1, - "accumulator": 1, - "SBJsonStreamParser": 2, - "*parser": 1, - "parser.maxDepth": 1, - "parser.delegate": 1, - "adapter": 1, - "switch": 3, - "parse": 1, - "case": 8, - "SBJsonStreamParserComplete": 1, - "accumulator.value": 1, - "SBJsonStreamParserWaitingForData": 1, - "SBJsonStreamParserError": 1, - "parser.error": 1, - "error_": 2, - "tmp": 3, - "*ui": 1, - "*error_": 1, - "ui": 1, - "StyleViewController": 2, - "TTViewController": 1, - "TTStyle*": 7, - "_style": 8, - "_styleHighlight": 6, - "_styleDisabled": 6, - "_styleSelected": 6, - "_styleType": 6, - "kTextStyleType": 2, - "kViewStyleType": 2, - "kImageStyleType": 2, - "initWithStyleName": 1, - "styleType": 3, - "TTStyleSheet": 4, - "globalStyleSheet": 4, - "styleWithSelector": 4, - "UIControlStateHighlighted": 1, - "UIControlStateDisabled": 1, - "UIControlStateSelected": 1, - "addTextView": 5, - "title": 2, - "style": 29, - "textFrame": 3, - "TTRectInset": 3, - "UIEdgeInsetsMake": 3, - "StyleView*": 2, - "StyleView": 2, - "text.text": 1, - "TTStyleContext*": 1, - "context": 4, - "TTStyleContext": 1, - "context.frame": 1, - "context.delegate": 1, - "context.font": 1, - "systemFontSize": 1, - "CGSize": 5, - "addToSize": 1, - "CGSizeZero": 1, - "size.width": 1, - "size.height": 1, - "textFrame.size": 1, - "text.frame": 1, - "text.style": 1, - "text.backgroundColor": 1, - "UIColor": 3, - "colorWithRed": 3, - "green": 3, - "blue": 3, - "alpha": 3, - "text.autoresizingMask": 1, - "UIViewAutoresizingFlexibleBottomMargin": 3, - "addView": 5, - "viewFrame": 4, - "view": 11, - "view.style": 2, - "view.backgroundColor": 2, - "view.autoresizingMask": 2, - "addImageView": 5, - "TTImageView*": 1, - "TTImageView": 1, - "view.urlPath": 1, - "imageFrame": 2, - "view.frame": 2, - "imageFrame.size": 1, - "view.image.size": 1, - "TUITableViewStylePlain": 2, - "regular": 1, - "TUITableViewStyleGrouped": 1, - "grouped": 1, - "stick": 1, - "scroll": 3, - "TUITableViewStyle": 4, - "TUITableViewScrollPositionNone": 2, - "TUITableViewScrollPositionTop": 2, - "TUITableViewScrollPositionMiddle": 1, - "TUITableViewScrollPositionBottom": 1, - "TUITableViewScrollPositionToVisible": 3, - "supported": 1, - "TUITableViewScrollPosition": 5, - "TUITableViewInsertionMethodBeforeIndex": 1, - "NSOrderedAscending": 4, - "TUITableViewInsertionMethodAtIndex": 1, - "NSOrderedSame": 1, - "TUITableViewInsertionMethodAfterIndex": 1, - "NSOrderedDescending": 4, - "TUITableViewInsertionMethod": 3, - "TUITableViewCell": 23, - "@protocol": 3, - "TUITableViewDataSource": 2, - "TUITableView": 25, - "TUITableViewDelegate": 1, - "": 1, - "TUIScrollViewDelegate": 1, - "tableView": 45, - "heightForRowAtIndexPath": 2, - "TUIFastIndexPath": 89, - "indexPath": 47, - "@optional": 2, - "willDisplayCell": 2, - "cell": 21, - "forRowAtIndexPath": 2, - "subview": 1, - "didSelectRowAtIndexPath": 3, - "left/right": 2, - "mouse": 2, - "down": 1, - "up/down": 1, - "didDeselectRowAtIndexPath": 3, - "didClickRowAtIndexPath": 1, - "withEvent": 2, - "NSEvent": 3, - "event": 8, - "look": 1, - "clickCount": 1, - "TUITableView*": 1, - "shouldSelectRowAtIndexPath": 3, - "TUIFastIndexPath*": 1, - "forEvent": 3, - "NSEvent*": 1, - "NSMenu": 1, - "menuForRowAtIndexPath": 1, - "tableViewWillReloadData": 3, - "tableViewDidReloadData": 3, - "targetIndexPathForMoveFromRowAtIndexPath": 1, - "fromPath": 1, - "toProposedIndexPath": 1, - "proposedPath": 1, - "TUIScrollView": 1, - "__unsafe_unretained": 2, - "": 4, - "_dataSource": 6, - "weak": 2, - "_sectionInfo": 27, - "TUIView": 17, - "_pullDownView": 4, - "_headerView": 8, - "_lastSize": 1, - "_contentHeight": 7, - "NSMutableIndexSet": 6, - "_visibleSectionHeaders": 6, - "_visibleItems": 14, - "_reusableTableCells": 5, - "_selectedIndexPath": 9, - "_indexPathShouldBeFirstResponder": 2, - "_futureMakeFirstResponderToken": 2, - "_keepVisibleIndexPathForReload": 2, - "_relativeOffsetForReload": 2, - "drag": 1, - "reorder": 1, - "_dragToReorderCell": 5, - "CGPoint": 7, - "_currentDragToReorderLocation": 1, - "_currentDragToReorderMouseOffset": 1, - "_currentDragToReorderIndexPath": 1, - "_currentDragToReorderInsertionMethod": 1, - "_previousDragToReorderIndexPath": 1, - "_previousDragToReorderInsertionMethod": 1, - "animateSelectionChanges": 3, - "forceSaveScrollPosition": 1, - "derepeaterEnabled": 1, - "layoutSubviewsReentrancyGuard": 1, - "didFirstLayout": 1, - "dataSourceNumberOfSectionsInTableView": 1, - "delegateTableViewWillDisplayCellForRowAtIndexPath": 1, - "maintainContentOffsetAfterReload": 3, - "_tableFlags": 1, - "creation.": 1, - "calls": 1, - "UITableViewStylePlain": 1, - "unsafe_unretained": 2, - "dataSource": 2, - "": 4, - "readwrite": 1, - "reloadData": 3, - "reloadDataMaintainingVisibleIndexPath": 2, - "relativeOffset": 5, - "reloadLayout": 2, - "numberOfSections": 10, - "numberOfRowsInSection": 9, - "section": 60, - "rectForHeaderOfSection": 4, - "rectForSection": 3, - "rectForRowAtIndexPath": 7, - "NSIndexSet": 4, - "indexesOfSectionsInRect": 2, - "rect": 10, - "indexesOfSectionHeadersInRect": 2, - "indexPathForCell": 2, + "mapcan": 1, + "R1": 2, + "pertenece": 3, + "E": 4, + "_": 8, + "R2": 2, + "Xs": 2, + "Then": 1, + "EVAL": 2, + "RULE": 2, + "PERTENECE": 6, + "E.42": 2, "returns": 4, - "visible": 16, - "indexPathsForRowsInRect": 3, - "indexPathForRowAtPoint": 2, - "point": 11, - "indexPathForRowAtVerticalOffset": 2, - "offset": 23, - "indexOfSectionWithHeaderAtPoint": 2, - "indexOfSectionWithHeaderAtVerticalOffset": 2, - "enumerateIndexPathsUsingBlock": 2, - "*indexPath": 11, - "*stop": 7, - "enumerateIndexPathsWithOptions": 2, - "NSEnumerationOptions": 4, - "usingBlock": 6, - "enumerateIndexPathsFromIndexPath": 4, - "fromIndexPath": 6, - "toIndexPath": 12, - "withOptions": 4, - "headerViewForSection": 6, - "cellForRowAtIndexPath": 9, - "index": 11, - "visibleCells": 3, - "order": 1, - "sortedVisibleCells": 2, - "indexPathsForVisibleRows": 2, - "scrollToRowAtIndexPath": 3, - "atScrollPosition": 3, - "scrollPosition": 9, - "indexPathForSelectedRow": 4, - "representing": 1, - "row": 36, - "selection.": 1, - "indexPathForFirstRow": 2, - "indexPathForLastRow": 2, - "selectRowAtIndexPath": 3, - "deselectRowAtIndexPath": 3, - "*pullDownView": 1, - "pullDownViewIsVisible": 3, - "*headerView": 6, - "dequeueReusableCellWithIdentifier": 2, - "identifier": 7, - "": 1, - "@required": 1, - "canMoveRowAtIndexPath": 2, - "moveRowAtIndexPath": 2, - "numberOfSectionsInTableView": 3, - "NSIndexPath": 5, - "indexPathForRow": 11, - "inSection": 11, - "HEADER_Z_POSITION": 2, - "beginning": 1, - "height": 19, - "TUITableViewRowInfo": 3, - "TUITableViewSection": 16, - "*_tableView": 1, - "*_headerView": 1, - "reusable": 1, - "similar": 1, - "UITableView": 1, - "sectionIndex": 23, - "numberOfRows": 13, - "sectionHeight": 9, - "sectionOffset": 8, - "*rowInfo": 1, - "initWithNumberOfRows": 2, - "_tableView": 3, - "rowInfo": 7, - "_setupRowHeights": 2, - "*header": 1, - "self.headerView": 2, - "roundf": 2, - "header.frame.size.height": 1, - "i": 41, - "h": 3, - "_tableView.delegate": 1, - ".offset": 2, - "rowHeight": 2, - "sectionRowOffset": 2, - "tableRowOffset": 2, - "headerHeight": 4, - "self.headerView.frame.size.height": 1, - "headerView": 14, - "_tableView.dataSource": 3, - "respondsToSelector": 8, - "_headerView.autoresizingMask": 1, - "TUIViewAutoresizingFlexibleWidth": 1, - "_headerView.layer.zPosition": 1, - "Private": 1, - "_updateSectionInfo": 2, - "_updateDerepeaterViews": 2, - "pullDownView": 1, - "_tableFlags.animateSelectionChanges": 3, - "_tableFlags.delegateTableViewWillDisplayCellForRowAtIndexPath": 1, - "setDataSource": 1, - "_tableFlags.dataSourceNumberOfSectionsInTableView": 2, - "setAnimateSelectionChanges": 1, - "*s": 3, - "y": 12, - "CGRectMake": 8, - "self.bounds.size.width": 4, - "indexPath.section": 3, - "indexPath.row": 1, - "*section": 8, - "removeFromSuperview": 4, - "removeAllIndexes": 2, - "*sections": 1, - "bounds": 2, - ".size.height": 1, - "self.contentInset.top*2": 1, - "section.sectionOffset": 1, - "sections": 4, - "self.contentInset.bottom": 1, - "_enqueueReusableCell": 2, - "*identifier": 1, - "cell.reuseIdentifier": 1, - "*c": 1, - "lastObject": 1, - "removeLastObject": 1, - "prepareForReuse": 1, - "allValues": 1, - "SortCells": 1, - "*a": 2, - "*b": 2, - "*ctx": 1, - "a.frame.origin.y": 2, - "b.frame.origin.y": 2, - "*v": 2, - "v": 4, - "sortedArrayUsingComparator": 1, - "NSComparator": 1, - "NSComparisonResult": 1, - "INDEX_PATHS_FOR_VISIBLE_ROWS": 4, - "allKeys": 1, - "*i": 4, - "*cell": 7, - "*indexes": 2, - "CGRectIntersectsRect": 5, - "indexes": 4, - "addIndex": 3, - "*indexPaths": 1, - "cellRect": 7, - "indexPaths": 2, - "CGRectContainsPoint": 1, - "cellRect.origin.y": 1, - "origin": 1, - "brief": 1, - "Obtain": 1, - "whose": 2, - "specified": 1, - "exists": 1, - "negative": 1, - "returned": 1, - "param": 1, - "p": 3, - "0": 2, - "width": 1, - "point.y": 1, - "section.headerView": 9, - "sectionLowerBound": 2, - "fromIndexPath.section": 1, - "sectionUpperBound": 3, - "toIndexPath.section": 1, - "rowLowerBound": 2, - "fromIndexPath.row": 1, - "rowUpperBound": 3, - "toIndexPath.row": 1, - "irow": 3, - "lower": 1, - "bound": 1, - "iteration...": 1, - "rowCount": 3, - "j": 5, - "FALSE": 2, - "...then": 1, - "zero": 1, - "iterations": 1, - "_topVisibleIndexPath": 1, - "*topVisibleIndex": 1, - "sortedArrayUsingSelector": 1, - "topVisibleIndex": 2, - "setFrame": 2, - "_tableFlags.forceSaveScrollPosition": 1, - "setContentOffset": 2, - "_tableFlags.didFirstLayout": 1, - "prevent": 2, - "layout": 3, - "pinned": 5, - "isKindOfClass": 2, - "TUITableViewSectionHeader": 5, - ".pinnedToViewport": 2, - "TRUE": 1, - "pinnedHeader": 1, - "CGRectGetMaxY": 2, - "headerFrame": 4, - "pinnedHeader.frame.origin.y": 1, - "intersecting": 1, - "push": 1, - "upwards.": 1, - "pinnedHeaderFrame": 2, - "pinnedHeader.frame": 2, - "pinnedHeaderFrame.origin.y": 1, - "notify": 3, - "section.headerView.frame": 1, - "setNeedsLayout": 3, - "section.headerView.superview": 1, - "remove": 4, - "offscreen": 2, - "toRemove": 1, - "enumerateIndexesUsingBlock": 1, - "removeIndex": 1, - "_layoutCells": 3, - "visibleCellsNeedRelayout": 5, - "remaining": 1, - "cells": 7, - "cell.frame": 1, - "cell.layer.zPosition": 1, - "visibleRect": 3, - "Example": 1, - "*oldVisibleIndexPaths": 1, - "*newVisibleIndexPaths": 1, - "*indexPathsToRemove": 1, - "oldVisibleIndexPaths": 2, - "mutableCopy": 2, - "indexPathsToRemove": 2, - "removeObjectsInArray": 2, - "newVisibleIndexPaths": 2, - "*indexPathsToAdd": 1, - "indexPathsToAdd": 2, - "newly": 1, - "superview": 1, - "bringSubviewToFront": 1, - "self.contentSize": 3, - "headerViewRect": 3, - "s.height": 3, - "_headerView.frame.size.height": 2, - "visible.size.width": 3, - "_headerView.frame": 1, - "_headerView.hidden": 4, - "show": 2, - "pullDownRect": 4, - "_pullDownView.frame.size.height": 2, - "_pullDownView.hidden": 4, - "_pullDownView.frame": 1, - "self.delegate": 10, - "recycle": 1, - "regenerated": 3, - "layoutSubviews": 5, - "because": 1, - "dragged": 1, - "clear": 3, - "removeAllObjects": 1, - "laid": 1, - "next": 2, - "_tableFlags.layoutSubviewsReentrancyGuard": 3, - "setAnimationsEnabled": 1, - "CATransaction": 3, - "begin": 1, - "setDisableActions": 1, - "_preLayoutCells": 2, - "munge": 2, - "contentOffset": 2, - "_layoutSectionHeaders": 2, - "_tableFlags.derepeaterEnabled": 1, - "commit": 1, - "selected": 2, - "overlapped": 1, - "r.size.height": 4, - "headerFrame.size.height": 1, - "r.origin.y": 1, - "v.size.height": 2, - "scrollRectToVisible": 2, - "sec": 3, - "_makeRowAtIndexPathFirstResponder": 2, - "responder": 2, - "made": 1, - "acceptsFirstResponder": 1, - "self.nsWindow": 3, - "makeFirstResponderIfNotAlreadyInResponderChain": 1, - "futureMakeFirstResponderRequestToken": 1, - "*oldIndexPath": 1, - "oldIndexPath": 2, - "setSelected": 2, - "setNeedsDisplay": 2, - "selection": 3, - "actually": 2, - "NSResponder": 1, - "*firstResponder": 1, - "firstResponder": 3, - "indexPathForFirstVisibleRow": 2, - "*firstIndexPath": 1, - "firstIndexPath": 4, - "indexPathForLastVisibleRow": 2, - "*lastIndexPath": 5, - "lastIndexPath": 8, - "performKeyAction": 2, - "repeative": 1, - "press": 1, - "noCurrentSelection": 2, - "isARepeat": 1, - "TUITableViewCalculateNextIndexPathBlock": 3, - "selectValidIndexPath": 3, - "*startForNoSelection": 2, - "calculateNextIndexPath": 4, - "foundValidNextRow": 4, - "*newIndexPath": 1, - "newIndexPath": 6, - "startForNoSelection": 1, - "_delegate": 2, - "self.animateSelectionChanges": 1, - "charactersIgnoringModifiers": 1, - "characterAtIndex": 1, - "NSUpArrowFunctionKey": 1, - "lastIndexPath.section": 2, - "lastIndexPath.row": 2, - "rowsInSection": 7, - "NSDownArrowFunctionKey": 1, - "_tableFlags.maintainContentOffsetAfterReload": 2, - "setMaintainContentOffsetAfterReload": 1, - "newValue": 2, - "indexPathWithIndexes": 1, - "indexAtPosition": 2 + "NIL": 3, + "That": 2, + "query": 4, + "be": 2, + "proven": 2, + "binding": 17, + "necessary": 2, + "fact": 4, + "has": 1, + "On": 1, + "other": 1, + "hand": 1, + "E.49": 2, + "XS.50": 2, + "R2.": 1, + "ifs": 1, + "NOT": 2, + "question": 1, + "T": 1, + "equality": 2, + "UNIFY": 1, + "Finds": 1, + "general": 1, + "unifier": 1, + "two": 2, + "input": 2, + "expressions": 2, + "taking": 1, + "account": 1, + "": 1, + "In": 1, + "case": 1, + "total": 1, + "unification.": 1, + "Otherwise": 1, + "which": 1, + "constant": 1, + "anonymous": 4, + "make": 4, + "variable": 6, + "Auxiliary": 1, + "Functions": 1, + "cond": 3, + "get": 5, + "lookup": 5, + "occurs": 5, + "extend": 2, + "symbolp": 2, + "eql": 2, + "char": 2, + "symbol": 2, + "assoc": 1, + "car": 2, + "val": 6, + "cdr": 2, + "cons": 2, + "append": 1, + "eq": 7, + "consp": 2, + "subst": 3, + "listp": 1, + "exp": 1, + "unique": 3, + "find": 6, + "anywhere": 6, + "predicate": 8, + "tree": 11, + "so": 4, + "far": 4, + "atom": 3, + "funcall": 2, + "pushnew": 1, + "gentemp": 2, + "quote": 3, + "s/reuse": 1, + "cons/cons": 1, + "expresion": 2, + "some": 1, + "EOF": 1 + }, + "Parrot Internal Representation": { + "SHEBANG#!parrot": 1, + ".sub": 1, + "main": 1, + "say": 1, + ".end": 1 }, "Objective-C++": { - "#include": 26, - "": 1, - "": 1, - "#if": 10, - "(": 612, - "defined": 1, - "OBJC_API_VERSION": 2, - ")": 610, - "&&": 12, - "static": 16, - "inline": 3, - "IMP": 4, - "method_setImplementation": 2, - "Method": 2, - "m": 3, - "i": 29, - "{": 151, - "oi": 2, - "-": 175, - "method_imp": 2, - ";": 494, - "return": 149, - "}": 148, - "#endif": 19, - "namespace": 1, - "WebCore": 1, - "ENABLE": 10, - "DRAG_SUPPORT": 7, - "const": 16, - "double": 1, - "EventHandler": 30, - "TextDragDelay": 1, - "RetainPtr": 4, - "": 4, - "&": 21, - "currentNSEventSlot": 6, - "DEFINE_STATIC_LOCAL": 1, - "event": 30, - "NSEvent": 21, - "*EventHandler": 2, - "currentNSEvent": 13, - ".get": 1, - "class": 14, - "CurrentEventScope": 14, - "WTF_MAKE_NONCOPYABLE": 1, - "public": 1, - "*": 34, - "private": 1, - "m_savedCurrentEvent": 3, - "#ifndef": 3, - "NDEBUG": 2, - "m_event": 3, - "*event": 11, - "ASSERT": 13, - "bool": 26, - "wheelEvent": 5, - "Page*": 7, - "page": 33, - "m_frame": 24, - "if": 104, - "false": 40, - "scope": 6, - "PlatformWheelEvent": 2, - "chrome": 8, - "platformPageClient": 4, - "handleWheelEvent": 2, - "wheelEvent.isAccepted": 1, - "PassRefPtr": 2, - "": 1, - "currentKeyboardEvent": 1, - "[": 268, - "NSApp": 5, - "currentEvent": 2, - "]": 266, - "switch": 4, - "type": 10, - "case": 25, - "NSKeyDown": 4, - "PlatformKeyboardEvent": 6, - "platformEvent": 2, - "platformEvent.disambiguateKeyDownEvent": 1, - "RawKeyDown": 1, - "KeyboardEvent": 2, - "create": 3, - "document": 6, - "defaultView": 2, - "NSKeyUp": 3, - "default": 3, - "keyEvent": 2, - "BEGIN_BLOCK_OBJC_EXCEPTIONS": 13, - "||": 18, - "END_BLOCK_OBJC_EXCEPTIONS": 13, - "void": 18, - "focusDocumentView": 1, - "FrameView*": 7, - "frameView": 4, - "view": 28, - "NSView": 14, - "*documentView": 1, - "documentView": 2, - "focusNSView": 1, - "focusController": 1, - "setFocusedFrame": 1, - "passWidgetMouseDownEventToWidget": 3, - "MouseEventWithHitTestResults": 7, - "RenderObject*": 2, - "target": 6, - "targetNode": 3, - "renderer": 7, - "isWidget": 2, - "passMouseDownEventToWidget": 3, - "toRenderWidget": 3, - "widget": 18, - "RenderWidget*": 1, - "renderWidget": 2, - "lastEventIsMouseUp": 2, - "*currentEventAfterHandlingMouseDown": 1, - "currentEventAfterHandlingMouseDown": 3, - "NSLeftMouseUp": 3, - "timestamp": 8, - "Widget*": 3, - "pWidget": 2, - "RefPtr": 1, - "": 1, - "LOG_ERROR": 1, - "true": 29, - "platformWidget": 6, - "*nodeView": 1, - "nodeView": 9, - "superview": 5, - "*view": 4, - "hitTest": 2, - "convertPoint": 2, - "locationInWindow": 4, - "fromView": 3, - "nil": 25, - "client": 3, - "firstResponder": 1, - "clickCount": 8, - "<=>": 1, - "1": 1, - "acceptsFirstResponder": 1, - "needsPanelToBecomeKey": 1, - "makeFirstResponder": 1, - "wasDeferringLoading": 3, - "defersLoading": 1, - "setDefersLoading": 2, - "m_sendingEventToSubview": 24, - "*outerView": 1, - "getOuterView": 1, - "beforeMouseDown": 1, - "outerView": 2, - "widget.get": 2, - "mouseDown": 2, - "afterMouseDown": 1, - "m_mouseDownView": 5, - "m_mouseDownWasInSubframe": 7, - "m_mousePressed": 2, - "findViewInSubviews": 3, - "*superview": 1, - "*target": 1, - "NSEnumerator": 1, - "*e": 1, - "subviews": 1, - "objectEnumerator": 1, - "*subview": 1, - "while": 4, - "subview": 3, - "e": 1, - "nextObject": 1, - "mouseDownViewIfStillGood": 3, - "*mouseDownView": 1, - "mouseDownView": 3, - "topFrameView": 3, - "*topView": 1, - "topView": 2, - "eventLoopHandleMouseDragged": 1, - "mouseDragged": 2, - "//": 7, - "eventLoopHandleMouseUp": 1, - "mouseUp": 2, - "passSubframeEventToSubframe": 4, - "Frame*": 5, - "subframe": 13, - "HitTestResult*": 2, - "hoveredNode": 5, - "NSLeftMouseDragged": 1, - "NSOtherMouseDragged": 1, - "NSRightMouseDragged": 1, - "dragController": 1, - "didInitiateDrag": 1, - "NSMouseMoved": 2, - "eventHandler": 6, - "handleMouseMoveEvent": 3, - "currentPlatformMouseEvent": 8, - "NSLeftMouseDown": 3, - "Node*": 1, - "node": 3, - "isFrameView": 2, - "handleMouseReleaseEvent": 3, - "originalNSScrollViewScrollWheel": 4, - "_nsScrollViewScrollWheelShouldRetainSelf": 3, - "selfRetainingNSScrollViewScrollWheel": 3, - "NSScrollView": 2, - "SEL": 2, - "nsScrollViewScrollWheelShouldRetainSelf": 2, - "isMainThread": 3, - "setNSScrollViewScrollWheelShouldRetainSelf": 3, - "shouldRetain": 2, - "method": 2, - "class_getInstanceMethod": 1, - "objc_getRequiredClass": 1, - "@selector": 4, - "scrollWheel": 2, - "reinterpret_cast": 1, - "": 1, - "*self": 1, - "selector": 2, - "shouldRetainSelf": 3, - "self": 70, - "retain": 1, - "release": 1, - "passWheelEventToWidget": 1, - "NSView*": 1, - "static_cast": 1, - "": 1, - "frame": 3, - "NSScrollWheel": 1, - "v": 6, - "loader": 1, - "resetMultipleFormSubmissionProtection": 1, - "handleMousePressEvent": 2, - "int": 36, - "%": 2, - "handleMouseDoubleClickEvent": 1, - "else": 11, - "sendFakeEventsAfterWidgetTracking": 1, - "*initiatingEvent": 1, - "eventType": 5, - "initiatingEvent": 22, - "*fakeEvent": 1, - "fakeEvent": 6, - "mouseEventWithType": 2, - "location": 3, - "modifierFlags": 6, - "windowNumber": 6, - "context": 6, - "eventNumber": 3, - "pressure": 3, - "postEvent": 3, - "atStart": 3, - "YES": 6, - "keyEventWithType": 1, - "characters": 3, - "charactersIgnoringModifiers": 2, - "isARepeat": 2, - "keyCode": 2, - "window": 1, - "convertScreenToBase": 1, - "mouseLocation": 1, - "mouseMoved": 2, - "frameHasPlatformWidget": 4, - "passMousePressEventToSubframe": 1, - "mev": 6, - "mev.event": 3, - "passMouseMoveEventToSubframe": 1, - "m_mouseDownMayStartDrag": 1, - "passMouseReleaseEventToSubframe": 1, - "PlatformMouseEvent": 5, - "*windowView": 1, - "windowView": 2, - "CONTEXT_MENUS": 2, - "sendContextMenuEvent": 2, - "eventMayStartDrag": 2, - "eventActivatedView": 1, - "m_activationEventNumber": 1, - "event.eventNumber": 1, - "": 1, - "createDraggingClipboard": 1, - "NSPasteboard": 2, - "*pasteboard": 1, - "pasteboardWithName": 1, - "NSDragPboard": 1, - "pasteboard": 2, - "declareTypes": 1, - "NSArray": 3, - "array": 2, - "owner": 15, - "ClipboardMac": 1, - "Clipboard": 1, - "DragAndDrop": 1, - "ClipboardWritable": 1, - "tabsToAllFormControls": 1, - "KeyboardEvent*": 1, - "KeyboardUIMode": 1, - "keyboardUIMode": 5, - "handlingOptionTab": 4, - "isKeyboardOptionTab": 1, - "KeyboardAccessTabsToLinks": 2, - "KeyboardAccessFull": 1, - "needsKeyboardEventDisambiguationQuirks": 2, - "Document*": 1, - "applicationIsSafari": 1, - "url": 2, - ".protocolIs": 2, - "Settings*": 1, - "settings": 5, - "DASHBOARD_SUPPORT": 1, - "usesDashboardBackwardCompatibilityMode": 1, - "unsigned": 2, - "accessKeyModifiers": 1, - "AXObjectCache": 1, - "accessibilityEnhancedUserInterfaceEnabled": 1, - "CtrlKey": 2, - "|": 3, - "AltKey": 1, "#import": 3, "": 1, "": 1, + "#if": 10, "#ifdef": 6, "OODEBUG": 1, "#define": 1, "OODEBUG_SQL": 4, + "#endif": 19, "OOOODatabase": 1, "OODB": 1, + ";": 494, + "static": 16, "NSString": 25, "*kOOObject": 1, "@": 28, @@ -48246,12 +57636,20 @@ "records": 1, "@implementation": 7, "+": 55, + "(": 612, "id": 19, + ")": 610, "record": 18, "OO_AUTORETURNS": 2, + "{": 151, + "return": 149, "OO_AUTORELEASE": 3, + "[": 268, + "self": 70, "alloc": 11, + "]": 266, "init": 4, + "}": 148, "insert": 7, "*record": 4, "insertWithParent": 1, @@ -48260,17 +57658,22 @@ "sharedInstance": 37, "copyJoinKeysFrom": 1, "to": 6, + "-": 175, "delete": 4, + "void": 18, "update": 4, "indate": 4, "upsert": 4, + "int": 36, "commit": 6, "rollback": 5, "setNilValueForKey": 1, + "*": 34, "key": 2, "OOReference": 2, "": 1, "zeroForNull": 4, + "if": 104, "NSNumber": 4, "numberWithInt": 1, "setValue": 1, @@ -48278,13 +57681,16 @@ "OOArray": 16, "": 14, "select": 21, + "nil": 25, "intoClass": 11, "joinFrom": 10, "cOOString": 15, "sql": 21, "selectRecordsRelatedTo": 1, + "class": 14, "importFrom": 1, "OOFile": 4, + "&": 21, "file": 2, "delimiter": 4, "delim": 4, @@ -48299,14 +57705,17 @@ "export": 1, "bindToView": 1, "OOView": 2, + "view": 28, "delegate": 4, "bindRecord": 1, "toView": 1, "updateFromView": 1, "updateRecord": 1, + "fromView": 3, "description": 6, "*metaData": 14, "metaDataForClass": 3, + "//": 7, "hack": 1, "required": 2, "where": 1, @@ -48384,6 +57793,7 @@ "initWithFormat": 3, "arguments": 3, "va_end": 3, + "const": 16, "objects": 4, "deleteArray": 2, "object": 13, @@ -48410,9 +57820,12 @@ "<": 5, "superClass": 5, "class_getName": 4, + "while": 4, "class_getSuperclass": 1, "respondsToSelector": 2, + "@selector": 4, "ooTableSql": 1, + "else": 11, "tableMetaDataForClass": 8, "break": 6, "delay": 1, @@ -48448,6 +57861,7 @@ "format": 1, "string": 1, "escape": 1, + "characters": 3, "Any": 1, "results": 3, "returned": 1, @@ -48455,12 +57869,14 @@ "placed": 1, "as": 1, "an": 1, + "array": 2, "dictionary": 1, "results.": 1, "*/": 1, "errcode": 12, "OOString": 6, "stringForSql": 2, + "&&": 12, "*aColumnName": 1, "**results": 1, "allKeys": 1, @@ -48480,9 +57896,11 @@ "NSLog": 4, "*joinValues": 1, "*adaptor": 7, + "||": 18, "": 1, "tablesRelatedByNaturalJoinFrom": 1, "tablesWithNaturalJoin": 5, + "i": 29, "**tablesWithNaturalJoin": 1, "*childMetaData": 1, "tableMetaDataByClassName": 3, @@ -48520,6 +57938,7 @@ "quote": 2, "commaQuote": 2, "": 1, + "YES": 6, "commited": 2, "updateCount": 2, "transaction": 2, @@ -48529,6 +57948,7 @@ "*transaction": 1, "d": 2, "": 1, + "#ifndef": 3, "OO_ARC": 1, "boxed": 1, "valueForKey": 1, @@ -48542,6 +57962,7 @@ "indexes": 1, "idx": 2, "implements": 1, + "owner": 15, ".directory": 1, ".mkdir": 1, "sqlite3_open": 1, @@ -48577,6 +57998,9 @@ "length": 4, "*type": 1, "objCType": 1, + "type": 10, + "switch": 4, + "case": 25, "sqlite3_bind_int": 1, "intValue": 3, "sqlite3_bind_int64": 1, @@ -48597,6 +58021,7 @@ "initWithDouble": 1, "sqlite3_column_double": 1, "SQLITE_TEXT": 1, + "unsigned": 2, "*bytes": 2, "sqlite3_column_text": 1, "NSMutableString": 1, @@ -48604,6 +58029,7 @@ "sqlite3_column_bytes": 2, "SQLITE_BLOB": 1, "sqlite3_column_blob": 1, + "default": 3, "out": 4, "awakeFromDB": 4, "instancesRespondToSelector": 1, @@ -48631,6 +58057,7 @@ "q": 1, "Q": 1, "f": 1, + "%": 2, "_": 2, "tag": 1, "A": 2, @@ -48647,10492 +58074,288 @@ "stringValue": 4, "charValue": 1, "shortValue": 1, + "NSArray": 3, "OOReplace": 2, "reformat": 4, + "|": 3, "NSDictionary": 2, "__IPHONE_OS_VERSION_MIN_REQUIRED": 1, "UISwitch": 2, "text": 1, - "self.on": 1 - }, - "OCaml": { - "{": 11, - "shared": 1, - "open": 4, - "Eliom_content": 1, - "Html5.D": 1, - "Eliom_parameter": 1, - "}": 13, - "server": 2, - "module": 5, - "Example": 1, - "Eliom_registration.App": 1, - "(": 21, - "struct": 5, - "let": 13, - "application_name": 1, - "end": 5, - ")": 23, - "main": 2, - "Eliom_service.service": 1, - "path": 1, - "[": 13, - "]": 13, - "get_params": 1, - "unit": 5, - "client": 1, - "hello_popup": 2, - "Dom_html.window##alert": 1, - "Js.string": 1, - "_": 2, - "Example.register": 1, - "service": 1, - "fun": 9, - "-": 22, - "Lwt.return": 1, - "html": 1, - "head": 1, - "title": 1, - "pcdata": 4, - "body": 1, - "h1": 1, - ";": 14, - "p": 1, - "h2": 1, - "a": 4, - "a_onclick": 1, - "type": 2, - "Ops": 2, - "@": 6, - "f": 10, - "k": 21, - "|": 15, - "x": 14, - "List": 1, - "rec": 3, - "map": 3, - "l": 8, - "match": 4, - "with": 4, - "hd": 6, - "tl": 6, - "fold": 2, - "acc": 5, - "Option": 1, - "opt": 2, - "None": 5, - "Some": 5, - "Lazy": 1, - "option": 1, - "mutable": 1, - "waiters": 5, - "make": 1, - "push": 4, - "cps": 7, - "value": 3, - "force": 1, - "l.value": 2, - "when": 1, - "l.waiters": 5, - "<->": 3, - "function": 1, - "Base.List.iter": 1, - "l.push": 1, - "<": 1, - "get_state": 1, - "lazy_from_val": 1 - }, - "Omgrofl": { - "lol": 14, - "iz": 11, - "wtf": 1, - "liek": 1, - "lmao": 1, - "brb": 1, - "w00t": 1, - "Hello": 1, - "World": 1, - "rofl": 13, - "lool": 5, - "loool": 6, - "stfu": 1 - }, - "Opa": { - "server": 1, - "Server.one_page_server": 1, - "(": 4, - "-": 1, - "

": 2, - "Hello": 2, - "world": 2, - "

": 2, - ")": 4, - "Server.start": 1, - "Server.http": 1, - "{": 2, - "page": 1, - "function": 1, - "}": 2, - "title": 1 - }, - "OpenCL": { - "double": 3, - "run_fftw": 1, - "(": 18, - "int": 3, - "n": 4, - "const": 4, - "float": 3, - "*": 5, - "x": 5, - "y": 4, - ")": 18, - "{": 4, - "fftwf_plan": 1, - "p1": 3, - "fftwf_plan_dft_1d": 1, - "fftwf_complex": 2, - "FFTW_FORWARD": 1, - "FFTW_ESTIMATE": 1, - ";": 12, - "nops": 3, - "t": 4, - "cl": 2, - "realTime": 2, - "for": 1, - "op": 3, - "<": 1, - "+": 4, - "fftwf_execute": 1, - "}": 4, - "-": 1, - "/": 1, - "fftwf_destroy_plan": 1, - "return": 1, - "typedef": 1, - "foo_t": 3, - "#ifndef": 1, - "ZERO": 3, - "#define": 2, - "#endif": 1, - "FOO": 1, - "__kernel": 1, - "void": 1, - "foo": 1, - "__global": 1, - "__local": 1, - "uint": 1, - "barrier": 1, - "CLK_LOCAL_MEM_FENCE": 1, - "if": 1, - "*x": 1 - }, - "OpenEdge ABL": { - "USING": 3, - "Progress.Lang.*.": 3, - "CLASS": 2, - "email.Email": 2, - "USE": 2, - "-": 73, - "WIDGET": 2, - "POOL": 2, - "&": 3, - "SCOPED": 1, - "DEFINE": 16, - "QUOTES": 1, - "@#": 1, - "%": 2, - "*": 2, - "+": 21, - "._MIME_BOUNDARY_.": 1, - "#@": 1, - "WIN": 1, - "From": 4, - "To": 8, - "CC": 2, - "BCC": 2, - "Personal": 1, - "Private": 1, - "Company": 2, - "confidential": 2, - "normal": 1, - "urgent": 2, - "non": 1, - "Cannot": 3, - "locate": 3, - "file": 6, - "in": 3, - "the": 3, - "filesystem": 3, - "R": 3, - "File": 3, - "exists": 3, - "but": 3, - "is": 3, - "not": 3, - "readable": 3, - "Error": 3, - "copying": 3, - "from": 3, - "<\">": 8, - "ttSenders": 2, - "cEmailAddress": 8, - "n": 13, - "ttToRecipients": 1, - "Reply": 3, - "ttReplyToRecipients": 1, - "Cc": 2, - "ttCCRecipients": 1, - "Bcc": 2, - "ttBCCRecipients": 1, - "Return": 1, - "Receipt": 1, - "ttDeliveryReceiptRecipients": 1, - "Disposition": 3, - "Notification": 1, - "ttReadReceiptRecipients": 1, - "Subject": 2, - "Importance": 3, - "H": 1, - "High": 1, - "L": 1, - "Low": 1, - "Sensitivity": 2, - "Priority": 2, - "Date": 4, - "By": 1, - "Expiry": 2, - "Mime": 1, - "Version": 1, - "Content": 10, - "Type": 4, - "multipart/mixed": 1, - ";": 5, - "boundary": 1, - "text/plain": 2, - "charset": 2, - "Transfer": 4, - "Encoding": 4, - "base64": 2, - "bit": 2, - "application/octet": 1, - "stream": 1, - "attachment": 2, - "filename": 2, - "ttAttachments.cFileName": 2, - "cNewLine.": 1, - "RETURN": 7, - "lcReturnData.": 1, - "END": 12, - "METHOD.": 6, - "METHOD": 6, - "PUBLIC": 6, - "CHARACTER": 9, - "send": 1, - "(": 44, - ")": 44, - "objSendEmailAlgorithm": 1, - "sendEmail": 2, - "INPUT": 11, - "THIS": 1, - "OBJECT": 2, - ".": 14, - "CLASS.": 2, - "MESSAGE": 2, - "INTERFACE": 1, - "email.SendEmailAlgorithm": 1, - "ipobjEmail": 1, - "AS": 21, - "INTERFACE.": 1, - "PARAMETER": 3, - "objSendEmailAlg": 2, - "email.SendEmailSocket": 1, - "NO": 13, - "UNDO.": 12, - "VARIABLE": 12, - "vbuffer": 9, - "MEMPTR": 2, - "vstatus": 1, - "LOGICAL": 1, - "vState": 2, - "INTEGER": 6, - "ASSIGN": 2, - "vstate": 1, - "FUNCTION": 1, - "getHostname": 1, - "RETURNS": 1, - "cHostname": 1, - "THROUGH": 1, - "hostname": 1, - "ECHO.": 1, - "IMPORT": 1, - "UNFORMATTED": 1, - "cHostname.": 2, - "CLOSE.": 1, - "FUNCTION.": 1, - "PROCEDURE": 2, - "newState": 2, - "INTEGER.": 1, - "pstring": 4, - "CHARACTER.": 1, - "newState.": 1, - "IF": 2, - "THEN": 2, - "RETURN.": 1, - "SET": 5, - "SIZE": 5, - "LENGTH": 3, - "PUT": 1, - "STRING": 7, - "pstring.": 1, - "SELF": 4, - "WRITE": 1, - "PROCEDURE.": 2, - "ReadSocketResponse": 1, - "vlength": 5, - "str": 3, - "v": 1, - "GET": 3, - "BYTES": 2, - "AVAILABLE": 2, - "VIEW": 1, - "ALERT": 1, - "BOX.": 1, - "DO": 2, - "READ": 1, - "handleResponse": 1, - "END.": 2, - "email.Util": 1, - "FINAL": 1, - "PRIVATE": 1, - "STATIC": 5, - "cMonthMap": 2, - "EXTENT": 1, - "INITIAL": 1, - "[": 2, - "]": 2, - "ABLDateTimeToEmail": 3, - "ipdttzDateTime": 6, - "DATETIME": 3, - "TZ": 2, - "DAY": 1, - "MONTH": 1, - "YEAR": 1, - "TRUNCATE": 2, - "MTIME": 1, - "/": 2, - "ABLTimeZoneToString": 2, - "TIMEZONE": 1, - "ipdtDateTime": 2, - "ipiTimeZone": 3, - "ABSOLUTE": 1, - "MODULO": 1, - "LONGCHAR": 4, - "ConvertDataToBase64": 1, - "iplcNonEncodedData": 2, - "lcPreBase64Data": 4, - "lcPostBase64Data": 3, - "mptrPostBase64Data": 3, - "i": 3, - "COPY": 1, - "LOB": 1, - "FROM": 1, - "TO": 2, - "mptrPostBase64Data.": 1, - "BASE64": 1, - "ENCODE": 1, - "BY": 1, - "SUBSTRING": 1, - "CHR": 2, - "lcPostBase64Data.": 1 - }, - "Org": { - "#": 13, - "+": 13, - "OPTIONS": 1, - "H": 1, - "num": 1, - "nil": 4, - "toc": 2, - "n": 1, - "@": 1, - "t": 10, - "|": 4, - "-": 30, - "f": 2, - "*": 3, - "TeX": 1, - "LaTeX": 1, - "skip": 1, - "d": 2, - "(": 11, - "HIDE": 1, - ")": 11, - "tags": 2, - "not": 1, - "in": 2, - "STARTUP": 1, - "align": 1, - "fold": 1, - "nodlcheck": 1, - "hidestars": 1, - "oddeven": 1, - "lognotestate": 1, - "SEQ_TODO": 1, - "TODO": 1, - "INPROGRESS": 1, - "i": 1, - "WAITING": 1, - "w@": 1, - "DONE": 1, - "CANCELED": 1, - "c@": 1, - "TAGS": 1, - "Write": 1, - "w": 1, - "Update": 1, - "u": 1, - "Fix": 1, - "Check": 1, - "c": 1, - "TITLE": 1, - "org": 10, - "ruby": 6, - "AUTHOR": 1, - "Brian": 1, - "Dewey": 1, - "EMAIL": 1, - "bdewey@gmail.com": 1, - "LANGUAGE": 1, - "en": 1, - "PRIORITIES": 1, - "A": 1, - "C": 1, - "B": 1, - "CATEGORY": 1, - "worg": 1, - "{": 1, - "Back": 1, - "to": 8, - "Worg": 1, - "rubygems": 2, - "ve": 1, - "already": 1, - "created": 1, - "a": 4, - "site.": 1, - "Make": 1, - "sure": 1, - "you": 2, - "have": 1, - "installed": 1, - "sudo": 1, - "gem": 1, - "install": 1, - ".": 1, - "You": 1, - "need": 1, - "register": 1, - "new": 2, - "Webby": 3, - "filter": 3, - "handle": 1, - "mode": 2, - "content.": 2, - "makes": 1, - "this": 2, - "easy.": 1, - "In": 1, - "the": 6, - "lib/": 1, - "folder": 1, - "of": 2, - "your": 2, - "site": 1, - "create": 1, - "file": 1, - "orgmode.rb": 1, - "BEGIN_EXAMPLE": 2, - "require": 1, - "Filters.register": 1, - "do": 2, - "input": 3, - "Orgmode": 2, - "Parser.new": 1, - ".to_html": 1, - "end": 1, - "END_EXAMPLE": 1, - "This": 2, - "code": 1, - "creates": 1, - "that": 1, - "will": 1, - "use": 1, - "parser": 1, - "translate": 1, - "into": 1, - "HTML.": 1, - "Create": 1, - "For": 1, - "example": 1, - "title": 2, - "Parser": 1, - "created_at": 1, - "status": 2, - "Under": 1, - "development": 1, - "erb": 1, - "orgmode": 3, - "<%=>": 2, - "page": 2, - "Status": 1, - "Description": 1, - "Helpful": 1, - "Ruby": 1, - "routines": 1, - "for": 3, - "parsing": 1, - "files.": 1, - "The": 3, - "most": 1, - "significant": 1, - "thing": 2, - "library": 1, - "does": 1, - "today": 1, - "is": 5, - "convert": 1, - "files": 1, - "textile.": 1, - "Currently": 1, - "cannot": 1, - "much": 1, - "customize": 1, - "conversion.": 1, - "supplied": 1, - "textile": 1, - "conversion": 1, - "optimized": 1, - "extracting": 1, - "from": 1, - "orgfile": 1, - "as": 1, - "opposed": 1, - "History": 1, - "**": 1, - "Version": 1, - "first": 1, - "output": 2, - "HTML": 2, - "gets": 1, - "class": 1, - "now": 1, - "indented": 1, - "Proper": 1, - "support": 1, - "multi": 1, - "paragraph": 2, - "list": 1, - "items.": 1, - "See": 1, - "part": 1, - "last": 1, - "bullet.": 1, - "Fixed": 1, - "bugs": 1, - "wouldn": 1, - "s": 1, - "all": 1, - "there": 1, - "it": 1 - }, - "Ox": { - "#include": 2, - "Kapital": 4, - "(": 119, - "L": 2, - "const": 4, - "N": 5, - "entrant": 8, - "exit": 2, - "KP": 14, - ")": 119, - "{": 22, - "StateVariable": 1, - ";": 91, - "this.entrant": 1, - "this.exit": 1, - "this.KP": 1, - "actual": 2, - "Kbar*vals/": 1, - "-": 31, - "upper": 3, - "log": 2, - ".Inf": 2, - "}": 22, - "Transit": 1, - "FeasA": 2, - "decl": 3, - "ent": 5, - "CV": 7, - "stayout": 3, - "[": 25, - "]": 25, - "exit.pos": 1, - "tprob": 5, - "sigu": 2, - "SigU": 2, - "if": 5, - "v": 2, - "&&": 1, - "return": 10, - "<0>": 1, - "ones": 1, - "probn": 2, - "Kbe": 2, - "/sigu": 1, - "Kb0": 2, - "+": 14, - "Kb2": 2, - "*upper": 1, - "/": 1, - "vals": 1, - "tprob.*": 1, - "zeros": 4, - ".*stayout": 1, - "FirmEntry": 6, - "Run": 1, - "Initialize": 3, - "GenerateSample": 2, - "BDP": 2, - "BayesianDP": 1, - "Rust": 1, - "Reachable": 2, - "sige": 2, - "new": 19, - "StDeviations": 1, - "<0.3,0.3>": 1, - "LaggedAction": 1, - "d": 2, - "array": 1, - "Kparams": 1, - "Positive": 4, - "Free": 1, - "Kb1": 1, - "Determined": 1, - "EndogenousStates": 1, - "K": 3, - "KN": 1, - "SetDelta": 1, - "Probability": 1, - "kcoef": 3, - "ecost": 3, - "Negative": 1, - "CreateSpaces": 1, - "Volume": 3, - "LOUD": 1, - "EM": 4, - "ValueIteration": 1, - "//": 17, - "Solve": 1, - "data": 4, - "DataSet": 1, - "Simulate": 1, - "DataN": 1, - "DataT": 1, - "FALSE": 1, - "Print": 1, - "ImaiJainChing": 1, - "delta": 1, - "*CV": 2, - "Utility": 1, - "u": 2, - "ent*CV": 1, - "*AV": 1, - "|": 1, - "ParallelObjective": 1, - "obj": 18, - "DONOTUSECLIENT": 2, - "isclass": 1, - "obj.p2p": 2, - "oxwarning": 1, - "obj.L": 1, - "P2P": 2, - "ObjClient": 4, - "ObjServer": 7, - "this.obj": 2, - "Execute": 4, - "basetag": 2, - "STOP_TAG": 1, - "iml": 1, - "obj.NvfuncTerms": 2, - "Nparams": 6, - "obj.nstruct": 2, - "Loop": 2, - "nxtmsgsz": 2, - "//free": 1, - "param": 1, - "length": 1, - "is": 1, - "no": 2, - "greater": 1, - "than": 1, - "QUIET": 2, - "println": 2, - "ID": 2, - "Server": 1, - "Recv": 1, - "ANY_TAG": 1, - "//receive": 1, - "the": 1, - "ending": 1, - "parameter": 1, - "vector": 1, - "Encode": 3, - "Buffer": 8, - "//encode": 1, - "it.": 1, - "Decode": 1, - "obj.nfree": 1, - "obj.cur.V": 1, - "vfunc": 2, - "CstrServer": 3, - "SepServer": 3, - "Lagrangian": 1, - "rows": 1, - "obj.cur": 1, - "Vec": 1, - "obj.Kvar.v": 1, - "imod": 1, - "Tag": 1, - "obj.K": 1, - "TRUE": 1, - "obj.Kvar": 1, - "PDF": 1, - "*": 5, - "nldge": 1, - "ParticleLogLikeli": 1, - "it": 5, - "ip": 1, - "mss": 3, - "mbas": 1, - "ms": 8, - "my": 4, - "mx": 7, - "vw": 7, - "vwi": 4, - "dws": 3, - "mhi": 3, - "mhdet": 2, - "loglikeli": 4, - "mData": 4, - "vxm": 1, - "vxs": 1, - "mxm": 1, - "<": 4, - "mxsu": 1, - "mxsl": 1, - "time": 2, - "timeall": 1, - "timeran": 1, - "timelik": 1, - "timefun": 1, - "timeint": 1, - "timeres": 1, - "GetData": 1, - "m_asY": 1, - "sqrt": 1, - "*M_PI": 1, - "m_cY": 1, - "determinant": 2, - "m_mMSbE.": 2, - "covariance": 2, - "invert": 2, - "of": 2, - "measurement": 1, - "shocks": 1, - "m_vSss": 1, - "m_cPar": 4, - "m_cS": 1, - "start": 1, - "particles": 2, - "m_vXss": 1, - "m_cX": 1, - "steady": 1, - "state": 3, - "and": 1, - "policy": 2, - "init": 1, - "likelihood": 1, - "//timeall": 1, - "timer": 3, - "for": 2, - "sizer": 1, - "rann": 1, - "m_cSS": 1, - "m_mSSbE": 1, - "noise": 1, - "fg": 1, - "&": 2, - "transition": 1, - "prior": 1, - "as": 1, - "proposal": 1, - "m_oApprox.FastInterpolate": 1, - "interpolate": 1, - "fy": 1, - "m_cMS": 1, - "evaluate": 1, - "importance": 1, - "weights": 2, - "observation": 1, - "error": 1, - "exp": 2, - "outer": 1, - "/mhdet": 2, - "sumr": 1, - "my*mhi": 1, - ".*my": 1, - ".": 3, - ".NaN": 1, - "can": 1, - "happen": 1, - "extrem": 1, - "sumc": 1, - "or": 1, - "extremely": 1, - "wrong": 1, - "parameters": 1, - "dws/m_cPar": 1, - "loglikelihood": 1, - "contribution": 1, - "//timelik": 1, - "/100": 1, - "//time": 1, - "resample": 1, - "vw/dws": 1, - "selection": 1, - "step": 1, - "in": 1, - "c": 1, - "on": 1, - "normalized": 1 - }, - "Oxygene": { - "": 1, - "DefaultTargets=": 1, - "xmlns=": 1, - "": 3, - "": 1, - "Loops": 2, - "": 1, - "": 1, - "exe": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "False": 4, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "Properties": 1, - "App.ico": 1, - "": 1, - "": 1, - "Condition=": 3, - "Release": 2, - "": 1, - "": 1, - "{": 1, - "BD89C": 1, - "-": 4, - "B610": 1, - "CEE": 1, - "CAF": 1, - "C515D88E2C94": 1, - "}": 1, - "": 1, - "": 3, - "": 1, - "DEBUG": 1, - ";": 2, - "TRACE": 1, - "": 1, - "": 2, - ".": 2, - "bin": 2, - "Debug": 1, - "": 2, - "": 1, - "True": 3, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "Project=": 1, - "": 2, - "": 5, - "Include=": 12, - "": 5, - "(": 5, - "Framework": 5, - ")": 5, - "mscorlib.dll": 1, - "": 5, - "": 5, - "System.dll": 1, - "ProgramFiles": 1, - "Reference": 1, - "Assemblies": 1, - "Microsoft": 1, - "v3.5": 1, - "System.Core.dll": 1, - "": 1, - "": 1, - "System.Data.dll": 1, - "System.Xml.dll": 1, - "": 2, - "": 4, - "": 1, - "": 1, - "": 2, - "ResXFileCodeGenerator": 1, - "": 2, - "": 1, - "": 1, - "SettingsSingleFileGenerator": 1, - "": 1, - "": 1 - }, - "Pan": { - "object": 1, - "template": 1, - "pantest": 1, - ";": 32, - "xFF": 1, - "e": 2, - "-": 2, - "E10": 1, - "variable": 4, - "TEST": 2, - "to_string": 1, - "(": 8, - ")": 8, - "+": 2, - "value": 1, - "undef": 1, - "null": 1, - "error": 1, - "include": 1, - "{": 5, - "}": 5, - "pkg_repl": 2, - "PKG_ARCH_DEFAULT": 1, - "function": 1, - "show_things_view_for_stuff": 1, - "thing": 2, - "ARGV": 1, - "[": 2, - "]": 2, - "foreach": 1, - "i": 1, - "mything": 2, - "STUFF": 1, - "if": 1, - "return": 2, - "true": 2, - "else": 1, - "SELF": 1, - "false": 2, - "HERE": 1, - "<<": 1, - "EOF": 2, - "This": 1, - "example": 1, - "demonstrates": 1, - "an": 1, - "in": 1, - "line": 1, - "heredoc": 1, - "style": 1, - "config": 1, - "file": 1, - "main": 1, - "awesome": 1, - "small": 1, - "#This": 1, - "should": 1, - "be": 1, - "highlighted": 1, - "normally": 1, - "again.": 1 - }, - "Parrot Assembly": { - "SHEBANG#!parrot": 1, - ".pcc_sub": 1, - "main": 2, - "say": 1, - "end": 1 - }, - "Parrot Internal Representation": { - "SHEBANG#!parrot": 1, - ".sub": 1, - "main": 1, - "say": 1, - ".end": 1 - }, - "Pascal": { - "program": 1, - "gmail": 1, - ";": 6, - "uses": 1, - "Forms": 1, - "Unit2": 1, - "in": 1, - "{": 2, - "Form2": 2, - "}": 2, - "R": 1, - "*.res": 1, - "begin": 1, - "Application.Initialize": 1, - "Application.MainFormOnTaskbar": 1, - "True": 1, - "Application.CreateForm": 1, - "(": 1, - "TForm2": 1, - ")": 1, - "Application.Run": 1, - "end.": 1 - }, - "PAWN": { - "//": 22, - "-": 1551, - "#include": 5, - "": 1, - "": 1, - "": 1, - "#pragma": 1, - "tabsize": 1, - "#define": 5, - "COLOR_WHITE": 2, - "xFFFFFFFF": 2, - "COLOR_NORMAL_PLAYER": 3, - "xFFBB7777": 1, - "CITY_LOS_SANTOS": 7, - "CITY_SAN_FIERRO": 4, - "CITY_LAS_VENTURAS": 6, - "new": 13, - "total_vehicles_from_files": 19, - ";": 257, - "gPlayerCitySelection": 21, - "[": 56, - "MAX_PLAYERS": 3, - "]": 56, - "gPlayerHasCitySelected": 6, - "gPlayerLastCitySelectionTick": 5, - "Text": 5, - "txtClassSelHelper": 14, - "txtLosSantos": 7, - "txtSanFierro": 7, - "txtLasVenturas": 7, - "thisanimid": 1, - "lastanimid": 1, - "main": 1, - "(": 273, - ")": 273, - "{": 39, - "print": 3, - "}": 39, - "public": 6, - "OnPlayerConnect": 1, - "playerid": 132, - "GameTextForPlayer": 1, - "SendClientMessage": 1, - "GetTickCount": 4, - "//SetPlayerColor": 2, - "//Kick": 1, - "return": 17, - "OnPlayerSpawn": 1, - "if": 28, - "IsPlayerNPC": 3, - "randSpawn": 16, - "SetPlayerInterior": 7, - "TogglePlayerClock": 2, - "ResetPlayerMoney": 3, - "GivePlayerMoney": 2, - "random": 3, - "sizeof": 3, - "gRandomSpawns_LosSantos": 5, - "SetPlayerPos": 6, - "SetPlayerFacingAngle": 6, - "else": 9, - "gRandomSpawns_SanFierro": 5, - "gRandomSpawns_LasVenturas": 5, - "SetPlayerSkillLevel": 11, - "WEAPONSKILL_PISTOL": 1, - "WEAPONSKILL_PISTOL_SILENCED": 1, - "WEAPONSKILL_DESERT_EAGLE": 1, - "WEAPONSKILL_SHOTGUN": 1, - "WEAPONSKILL_SAWNOFF_SHOTGUN": 1, - "WEAPONSKILL_SPAS12_SHOTGUN": 1, - "WEAPONSKILL_MICRO_UZI": 1, - "WEAPONSKILL_MP5": 1, - "WEAPONSKILL_AK47": 1, - "WEAPONSKILL_M4": 1, - "WEAPONSKILL_SNIPERRIFLE": 1, - "GivePlayerWeapon": 1, - "WEAPON_COLT45": 1, - "//GivePlayerWeapon": 1, - "WEAPON_MP5": 1, - "OnPlayerDeath": 1, - "killerid": 3, - "reason": 1, - "playercash": 4, - "INVALID_PLAYER_ID": 1, - "GetPlayerMoney": 1, - "ClassSel_SetupCharSelection": 2, - "SetPlayerCameraPos": 6, - "SetPlayerCameraLookAt": 6, - "ClassSel_InitCityNameText": 4, - "txtInit": 7, - "TextDrawUseBox": 2, - "TextDrawLetterSize": 2, - "TextDrawFont": 2, - "TextDrawSetShadow": 2, - "TextDrawSetOutline": 2, - "TextDrawColor": 2, - "xEEEEEEFF": 1, - "TextDrawBackgroundColor": 2, - "FF": 2, - "ClassSel_InitTextDraws": 2, - "TextDrawCreate": 4, - "TextDrawBoxColor": 1, - "BB": 1, - "TextDrawTextSize": 1, - "ClassSel_SetupSelectedCity": 3, - "TextDrawShowForPlayer": 4, - "TextDrawHideForPlayer": 10, - "ClassSel_SwitchToNextCity": 3, - "+": 19, - "PlayerPlaySound": 2, - "ClassSel_SwitchToPreviousCity": 2, - "<": 3, - "ClassSel_HandleCitySelection": 2, - "Keys": 3, - "ud": 2, - "lr": 4, - "GetPlayerKeys": 1, - "&": 1, - "KEY_FIRE": 1, - "TogglePlayerSpectating": 2, - "OnPlayerRequestClass": 1, - "classid": 1, - "GetPlayerState": 2, - "PLAYER_STATE_SPECTATING": 2, - "OnGameModeInit": 1, - "SetGameModeText": 1, - "ShowPlayerMarkers": 1, - "PLAYER_MARKERS_MODE_GLOBAL": 1, - "ShowNameTags": 1, - "SetNameTagDrawDistance": 1, - "EnableStuntBonusForAll": 1, - "DisableInteriorEnterExits": 1, - "SetWeather": 1, - "SetWorldTime": 1, - "//UsePlayerPedAnims": 1, - "//ManualVehicleEngineAndLights": 1, - "//LimitGlobalChatRadius": 1, - "AddPlayerClass": 69, - "//AddPlayerClass": 1, - "LoadStaticVehiclesFromFile": 17, - "printf": 1, - "OnPlayerUpdate": 1, - "IsPlayerConnected": 1, - "&&": 2, - "GetPlayerInterior": 1, - "GetPlayerWeapon": 2, - "SetPlayerArmedWeapon": 1, - "fists": 1, - "no": 1, - "syncing": 1, - "until": 1, - "they": 1, - "change": 1, - "their": 1, - "weapon": 1, - "WEAPON_MINIGUN": 1, - "Kick": 1 - }, - "Perl": { - "package": 14, - "App": 131, - "Ack": 136, - ";": 1193, - "use": 83, - "warnings": 18, - "strict": 18, - "File": 54, - "Next": 27, - "Plugin": 2, - "Basic": 10, - "head1": 36, - "NAME": 6, - "-": 868, - "A": 2, - "container": 1, - "for": 83, - "functions": 2, - "the": 143, - "ack": 38, - "program": 6, - "VERSION": 15, - "Version": 1, - "cut": 28, - "our": 34, - "COPYRIGHT": 7, - "BEGIN": 7, - "{": 1121, - "}": 1134, - "fh": 28, - "*STDOUT": 6, - "%": 78, - "types": 26, - "type_wanted": 20, - "mappings": 29, - "ignore_dirs": 12, - "input_from_pipe": 8, - "output_to_pipe": 12, - "dir_sep_chars": 10, - "is_cygwin": 6, - "is_windows": 12, - "Spec": 13, - "(": 925, - ")": 923, - "Glob": 4, - "Getopt": 6, - "Long": 6, - "_MTN": 2, - "blib": 2, - "CVS": 5, - "RCS": 2, - "SCCS": 2, - "_darcs": 2, - "_sgbak": 2, - "_build": 2, - "actionscript": 2, - "[": 159, - "qw": 35, - "as": 37, - "mxml": 2, - "]": 155, - "ada": 4, - "adb": 2, - "ads": 2, - "asm": 4, - "s": 35, - "batch": 2, - "bat": 2, - "cmd": 2, - "binary": 3, - "q": 5, - "Binary": 2, - "files": 42, - "defined": 54, - "by": 16, - "Perl": 9, - "T": 2, - "op": 2, - "default": 19, - "off": 4, - "tt": 4, - "tt2": 2, - "ttml": 2, - "vb": 4, - "bas": 2, - "cls": 2, - "frm": 2, - "ctl": 2, - "resx": 2, - "verilog": 2, - "v": 19, - "vh": 2, - "sv": 2, - "vhdl": 4, - "vhd": 2, - "vim": 4, - "yaml": 4, - "yml": 2, - "xml": 6, - "dtd": 2, - "xsl": 2, - "xslt": 2, - "ent": 2, - "while": 31, - "my": 404, - "type": 69, - "exts": 6, - "each": 14, - "if": 276, - "ref": 33, - "ext": 14, - "@": 38, - "push": 30, - "_": 101, - "mk": 2, - "mak": 2, - "not": 54, - "t": 18, - "p": 9, - "STDIN": 2, - "O": 4, - "eq": 31, - "/MSWin32/": 2, - "quotemeta": 5, - "catfile": 4, - "SYNOPSIS": 6, - "If": 15, - "you": 44, - "want": 7, - "to": 95, - "know": 4, - "about": 4, - "F": 24, - "": 13, - "see": 5, - "file": 49, - "itself.": 3, - "No": 4, - "user": 4, - "serviceable": 1, - "parts": 1, - "inside.": 1, - "is": 69, - "all": 23, - "that": 33, - "should": 6, - "this.": 1, - "FUNCTIONS": 1, - "head2": 34, - "read_ackrc": 4, - "Reads": 1, - "contents": 2, - "of": 64, - ".ackrc": 1, - "and": 85, - "returns": 4, - "arguments.": 1, - "sub": 225, - "@files": 12, - "ENV": 40, - "ACKRC": 2, - "@dirs": 4, - "HOME": 4, - "USERPROFILE": 2, - "dir": 27, - "grep": 17, - "bsd_glob": 4, - "GLOB_TILDE": 2, - "filename": 68, - "&&": 83, - "e": 20, - "open": 7, - "or": 49, - "die": 38, - "@lines": 21, - "/./": 2, - "/": 69, - "s*#/": 2, - "<$fh>": 4, - "chomp": 3, - "close": 19, - "s/": 22, - "+": 120, - "//": 9, - "return": 157, - "get_command_line_options": 4, - "Gets": 3, - "command": 14, - "line": 20, - "arguments": 2, - "does": 10, - "specific": 2, - "tweaking.": 1, - "opt": 291, - "pager": 19, - "ACK_PAGER_COLOR": 7, - "||": 49, - "ACK_PAGER": 5, - "getopt_specs": 6, - "m": 17, - "after_context": 16, - "before_context": 18, - "shift": 165, - "val": 26, - "break": 14, - "c": 5, - "count": 23, - "color": 38, - "ACK_COLOR_MATCH": 5, - "ACK_COLOR_FILENAME": 5, - "ACK_COLOR_LINENO": 4, - "column": 4, - "#": 99, - "ignore": 7, - "this": 22, - "option": 7, - "it": 28, - "handled": 2, - "beforehand": 2, - "f": 25, - "flush": 8, - "follow": 7, - "G": 11, - "heading": 18, - "h": 6, - "H": 6, - "i": 26, - "invert_file_match": 8, - "lines": 19, - "l": 17, - "regex": 28, - "n": 19, - "o": 17, - "output": 36, - "undef": 17, - "passthru": 9, - "print0": 7, - "Q": 7, - "show_types": 4, - "smart_case": 3, - "sort_files": 11, - "u": 10, - "w": 4, - "remove_dir_sep": 7, - "delete": 10, - "print_version_statement": 2, - "exit": 16, - "show_help": 3, - "@_": 43, - "show_help_types": 2, - "require": 12, - "Pod": 4, - "Usage": 4, - "pod2usage": 2, - "verbose": 2, - "exitval": 2, - "dummy": 2, - "wanted": 4, - "no//": 2, - "must": 5, - "be": 36, - "later": 2, - "exists": 19, - "else": 53, - "qq": 18, - "Unknown": 2, - "unshift": 4, - "@ARGV": 12, - "split": 13, - "ACK_OPTIONS": 5, - "def_types_from_ARGV": 5, - "filetypes_supported": 5, - "parser": 12, - "Parser": 4, - "new": 55, - "configure": 4, - "getoptions": 4, - "to_screen": 10, - "defaults": 16, - "eval": 8, - "Win32": 9, - "Console": 2, - "ANSI": 3, - "key": 20, - "value": 12, - "<": 15, - "join": 5, - "map": 10, - "@ret": 10, - "from": 19, - "warn": 22, - "..": 7, - "uniq": 4, - "@uniq": 2, - "sort": 8, - "a": 85, - "<=>": 2, - "b": 6, - "keys": 15, - "numerical": 2, - "occurs": 2, - "only": 11, - "once": 4, - "Go": 1, - "through": 6, - "look": 2, - "I": 68, - "<--type-set>": 1, - "foo=": 1, - "bar": 3, - "<--type-add>": 1, - "xml=": 1, - ".": 125, - "Remove": 1, - "them": 5, - "add": 9, - "supported": 1, - "filetypes": 8, - "i.e.": 2, - "into": 6, - "etc.": 3, - "@typedef": 8, - "td": 6, - "set": 12, - "Builtin": 4, - "cannot": 4, - "changed.": 4, - "ne": 9, - "delete_type": 5, - "Type": 2, - "exist": 4, - "creating": 3, - "with": 26, - "...": 2, - "unless": 39, - "@exts": 8, - ".//": 2, - "Cannot": 4, - "append": 2, - "Removes": 1, - "internal": 1, - "structures": 1, - "containing": 5, - "information": 2, - "type_wanted.": 1, - "Internal": 2, - "error": 4, - "builtin": 2, - "ignoredir_filter": 5, - "Standard": 1, - "filter": 12, - "pass": 1, - "L": 34, - "": 1, - "descend_filter.": 1, - "It": 3, - "true": 3, - "directory": 8, - "any": 4, - "ones": 1, - "we": 7, - "ignore.": 1, - "path": 28, - "This": 27, - "removes": 1, - "trailing": 1, - "separator": 4, - "there": 6, - "one": 9, - "its": 2, - "argument": 1, - "Returns": 10, - "list": 10, - "<$filename>": 1, - "could": 2, - "be.": 1, - "For": 5, - "example": 5, - "": 1, - "The": 22, - "filetype": 1, - "will": 9, - "C": 56, - "": 1, - "can": 30, - "skipped": 2, - "something": 3, - "avoid": 1, - "searching": 6, - "even": 4, - "under": 5, - "a.": 1, - "constant": 2, - "TEXT": 16, - "basename": 9, - ".*": 2, - "is_searchable": 8, - "lc_basename": 8, - "lc": 5, - "r": 14, - "B": 76, - "header": 17, - "SHEBANG#!#!": 2, - "ruby": 3, - "|": 28, - "lua": 2, - "erl": 2, - "hp": 2, - "ython": 2, - "d": 9, - "d.": 2, - "*": 8, - "b/": 4, - "ba": 2, - "k": 6, - "z": 2, - "sh": 2, - "/i": 2, - "search": 11, - "false": 1, - "regular": 3, - "expression": 9, - "found.": 4, - "www": 2, - "U": 2, - "y": 8, - "tr/": 2, - "x": 7, - "w/": 3, - "nOo_/": 2, - "_thpppt": 3, - "_get_thpppt": 3, - "print": 35, - "_bar": 3, - "<<": 10, - "&": 22, - "*I": 2, - "g": 7, - "#.": 6, - ".#": 4, - "I#": 2, - "#I": 6, - "#7": 4, - "results.": 2, - "on": 25, - "when": 18, - "used": 12, - "interactively": 6, - "no": 22, - "Print": 6, - "between": 4, - "results": 8, - "different": 2, - "files.": 6, - "group": 2, - "Same": 8, - "nogroup": 2, - "noheading": 2, - "nobreak": 2, - "Highlight": 2, - "matching": 15, - "text": 6, - "redirected": 2, - "Windows": 4, - "colour": 2, - "COLOR": 6, - "match": 21, - "lineno": 2, - "Set": 3, - "filenames": 7, - "matches": 7, - "numbers.": 2, - "Flush": 2, - "immediately": 2, - "non": 2, - "goes": 2, - "pipe": 4, - "finding": 2, - "Only": 7, - "found": 11, - "without": 3, - "searching.": 2, - "PATTERN": 8, - "specified.": 4, - "REGEX": 2, - "but": 4, - "REGEX.": 2, - "Sort": 2, - "lexically.": 3, - "invert": 2, - "Print/search": 2, - "handle": 3, - "do": 12, - "g/": 2, - "G.": 2, - "show": 3, - "Show": 2, - "which": 7, - "has.": 2, - "inclusion/exclusion": 2, - "All": 4, - "searched": 5, - "Ignores": 2, - ".svn": 3, - "other": 5, - "ignored": 6, - "directories": 9, - "unrestricted": 2, - "name": 44, - "Add/Remove": 2, - "dirs": 2, - "R": 2, - "recurse": 2, - "Recurse": 3, - "subdirectories": 2, - "END_OF_HELP": 2, - "VMS": 2, - "vd": 2, - "Term": 6, - "ANSIColor": 8, - "black": 3, - "on_yellow": 3, - "bold": 5, - "green": 3, - "yellow": 3, - "printing": 2, - "qr/": 13, - "last_output_line": 6, - "any_output": 10, - "keep_context": 8, - "@before": 16, - "before_starts_at_line": 10, - "after": 18, - "number": 4, - "still": 4, - "res": 59, - "next_text": 8, - "has_lines": 4, - "scalar": 2, - "m/": 4, - "regex/": 9, - "next": 9, - "print_match_or_context": 13, - "elsif": 10, - "last": 17, - "max": 12, - "nmatches": 61, - "show_filename": 35, - "context_overall_output_count": 6, - "print_blank_line": 2, - "is_binary": 4, - "search_resource": 7, - "is_match": 7, - "starting_line_no": 1, - "match_start": 5, - "match_end": 3, - "Prints": 4, - "out": 2, - "context": 1, - "around": 5, - "match.": 3, - "opts": 2, - "array": 7, - "line_no": 12, - "show_column": 4, - "display_filename": 8, - "colored": 6, - "print_first_filename": 2, - "sep": 8, - "output_func": 8, - "print_separator": 2, - "print_filename": 2, - "display_line_no": 4, - "print_line_no": 2, - "regex/go": 2, - "regex/Term": 2, - "substr": 2, - "/eg": 2, - "z/": 2, - "K/": 2, - "z//": 2, - "print_column_no": 2, - "scope": 4, - "TOTAL_COUNT_SCOPE": 2, - "total_count": 10, - "get_total_count": 4, - "reset_total_count": 4, - "search_and_list": 8, - "Optimized": 1, - "version": 2, - "lines.": 3, - "ors": 11, - "record": 3, - "show_total": 6, - "print_count": 4, - "print_count0": 2, - "filetypes_supported_set": 9, - "True/False": 1, - "are": 25, - "print_files": 4, - "iter": 23, - "returned": 3, - "iterator": 3, - "<$regex>": 1, - "<$one>": 1, - "stop": 1, - "first.": 1, - "<$ors>": 1, - "<\"\\n\">": 1, - "defines": 2, - "what": 14, - "filename.": 1, - "print_files_with_matches": 4, - "where": 3, - "was": 2, - "repo": 18, - "Repository": 11, - "next_resource": 6, - "print_matches": 4, - "tarballs_work": 4, - ".tar": 2, - ".gz": 2, - "Tar": 4, - "XXX": 4, - "Error": 2, - "checking": 2, - "needs_line_scan": 14, - "reset": 5, - "filetype_setup": 4, - "Minor": 1, - "housekeeping": 1, - "before": 1, - "go": 1, - "expand_filenames": 7, - "reference": 8, - "expanded": 3, - "globs": 1, - "EXPAND_FILENAMES_SCOPE": 4, - "argv": 12, - "attr": 6, - "foreach": 4, - "pattern": 10, - "@results": 14, - "didn": 2, - "ve": 2, - "tried": 2, - "load": 2, - "GetAttributes": 2, - "end": 9, - "attributes": 4, - "got": 2, - "get_starting_points": 4, - "starting": 2, - "@what": 14, - "reslash": 4, - "Assume": 2, - "current": 5, - "start_point": 4, - "_match": 8, - "target": 6, - "invert_flag": 4, - "get_iterator": 4, - "Return": 2, - "starting_point": 10, - "g_regex": 4, - "file_filter": 12, - "g_regex/": 6, - "Maybe": 2, - "is_interesting": 4, - "descend_filter": 11, - "error_handler": 5, - "msg": 4, - "follow_symlinks": 6, - "set_up_pager": 3, - "Unable": 2, - "going": 1, - "pipe.": 1, - "exit_from_ack": 5, - "Exit": 1, - "application": 15, - "correct": 1, - "code.": 2, - "otherwise": 2, - "handed": 1, - "in": 36, - "argument.": 1, - "rc": 11, - "LICENSE": 3, - "Copyright": 2, - "Andy": 2, - "Lester.": 2, - "free": 4, - "software": 3, - "redistribute": 4, - "and/or": 4, - "modify": 4, - "terms": 4, - "Artistic": 2, - "License": 2, - "v2.0.": 2, - "End": 3, - "SHEBANG#!#! perl": 4, - "examples/benchmarks/fib.pl": 1, - "Fibonacci": 2, - "Benchmark": 1, - "DESCRIPTION": 4, - "Calculates": 1, - "Number": 1, - "": 1, - "unspecified": 1, - "fib": 4, - "N": 2, - "SEE": 4, - "ALSO": 4, - "": 1, - "SHEBANG#!perl": 5, - "MAIN": 1, - "main": 3, - "env_is_usable": 3, - "th": 1, - "pt": 1, - "env": 76, - "@keys": 2, - "ACK_/": 1, - "@ENV": 1, - "load_colors": 1, - "ACK_SWITCHES": 1, - "Unbuffer": 1, - "mode": 1, - "build_regex": 3, - "nargs": 2, - "Resource": 5, - "file_matching": 2, - "check_regex": 2, - "like": 13, - "finder": 1, - "options": 7, - "FILE...": 1, - "DIRECTORY...": 1, - "designed": 1, - "replacement": 1, - "uses": 2, - "": 5, - "searches": 1, - "named": 3, - "input": 9, - "FILEs": 1, - "standard": 1, - "given": 10, - "PATTERN.": 1, - "By": 2, - "prints": 2, - "also": 7, - "would": 5, - "actually": 1, - "let": 1, - "take": 5, - "advantage": 1, - ".wango": 1, - "won": 1, - "throw": 1, - "away": 1, - "because": 3, - "times": 2, - "symlinks": 1, - "than": 5, - "whatever": 1, - "were": 1, - "specified": 3, - "line.": 4, - "default.": 2, - "item": 44, - "": 11, - "paths": 3, - "included": 1, - "search.": 1, - "entire": 3, - "matched": 1, - "against": 1, - "shell": 4, - "glob.": 1, - "<-i>": 5, - "<-w>": 2, - "<-v>": 3, - "<-Q>": 4, - "apply": 3, - "relative": 1, - "convenience": 1, - "shortcut": 2, - "<-f>": 6, - "<--group>": 2, - "<--nogroup>": 2, - "groups": 1, - "with.": 1, - "interactively.": 1, - "result": 1, - "per": 1, - "grep.": 2, - "redirected.": 1, - "<-H>": 1, - "<--with-filename>": 1, - "<-h>": 1, - "<--no-filename>": 1, - "Suppress": 1, - "prefixing": 1, - "multiple": 5, - "searched.": 1, - "<--help>": 1, - "short": 1, - "help": 2, - "statement.": 1, - "<--ignore-case>": 1, - "Ignore": 3, - "case": 3, - "strings.": 1, - "applies": 3, - "regexes": 3, - "<-g>": 5, - "<-G>": 3, - "options.": 4, - "": 2, - "etc": 2, - "May": 2, - "directories.": 2, - "mason": 1, - "users": 4, - "may": 3, - "wish": 1, - "include": 1, - "<--ignore-dir=data>": 1, - "<--noignore-dir>": 1, - "allows": 4, - "normally": 1, - "perhaps": 1, - "research": 1, - "<.svn/props>": 1, - "always": 5, - "simple": 2, - "name.": 1, - "Nested": 1, - "": 1, - "NOT": 1, - "supported.": 1, - "You": 4, - "need": 5, - "specify": 1, - "<--ignore-dir=foo>": 1, - "then": 4, - "foo": 6, - "taken": 1, - "account": 1, - "explicitly": 1, - "": 2, - "file.": 3, - "Multiple": 1, - "<--line>": 1, - "comma": 1, - "separated": 2, - "<--line=3,5,7>": 1, - "<--line=4-7>": 1, - "works.": 1, - "ascending": 1, - "order": 2, - "matter": 1, - "<-l>": 2, - "<--files-with-matches>": 1, - "instead": 4, - "text.": 1, - "<-L>": 1, - "<--files-without-matches>": 1, - "": 2, - "equivalent": 2, - "specifying": 1, - "Specify": 1, - "explicitly.": 1, - "helpful": 2, - "don": 2, - "": 1, - "via": 1, - "": 4, - "": 4, - "environment": 2, - "variables.": 1, - "Using": 3, - "suppress": 3, - "grouping": 3, - "coloring": 3, - "piping": 3, - "does.": 2, - "<--passthru>": 1, - "whether": 1, - "they": 1, - "expression.": 1, - "Highlighting": 1, - "work": 3, - "though": 1, - "so": 4, - "highlight": 1, - "seeing": 1, - "tail": 1, - "/access.log": 1, - "<--print0>": 1, - "works": 1, - "conjunction": 1, - "null": 1, - "byte": 1, - "usual": 1, - "newline.": 1, - "dealing": 1, - "contain": 3, - "whitespace": 1, - "e.g.": 2, - "html": 1, - "xargs": 2, - "rm": 1, - "<--literal>": 1, - "Quote": 1, - "metacharacters": 2, - "treated": 1, - "literal.": 1, - "<-r>": 1, - "<-R>": 1, - "<--recurse>": 1, - "just": 2, - "here": 2, - "compatibility": 2, - "turning": 1, - "<--no-recurse>": 1, - "off.": 1, - "<--smart-case>": 1, - "<--no-smart-case>": 1, - "strings": 1, - "contains": 2, - "uppercase": 1, - "characters.": 1, - "similar": 1, - "": 1, - "vim.": 1, - "overrides": 2, - "option.": 1, - "<--sort-files>": 1, - "Sorts": 1, - "Use": 6, - "your": 20, - "listings": 1, - "deterministic": 1, - "runs": 1, - "<--show-types>": 1, - "Outputs": 1, - "associates": 1, - "Works": 1, - "<--thpppt>": 1, - "Display": 1, - "important": 1, - "Bill": 1, - "Cat": 1, - "logo.": 1, - "Note": 5, - "exact": 1, - "spelling": 1, - "<--thpppppt>": 1, - "important.": 1, - "make": 3, - "perl": 8, - "php": 2, - "python": 1, - "looks": 2, - "location.": 1, - "variable": 1, - "specifies": 1, - "placed": 1, - "front": 1, - "explicit": 1, - "Specifies": 4, - "recognized": 1, - "clear": 2, - "dark": 1, - "underline": 1, - "underscore": 2, - "blink": 1, - "reverse": 1, - "concealed": 1, - "red": 1, - "blue": 1, - "magenta": 1, - "on_black": 1, - "on_red": 1, - "on_green": 1, - "on_blue": 1, - "on_magenta": 1, - "on_cyan": 1, - "on_white.": 1, - "Case": 1, - "significant.": 1, - "Underline": 1, - "reset.": 1, - "alone": 1, - "sets": 4, - "foreground": 1, - "on_color": 1, - "background": 1, - "color.": 2, - "<--color-filename>": 1, - "printed": 1, - "<--color>": 1, - "mode.": 1, - "<--color-lineno>": 1, - "See": 1, - "": 1, - "specifications.": 1, - "such": 6, - "": 1, - "": 1, - "": 1, - "send": 1, - "output.": 1, - "except": 1, - "assume": 1, - "support": 2, - "both": 1, - "understands": 1, - "sequences.": 1, - "never": 1, - "back": 4, - "ACK": 2, - "OTHER": 1, - "TOOLS": 1, - "Vim": 3, - "integration": 3, - "integrates": 1, - "easily": 2, - "editor.": 1, - "<.vimrc>": 1, - "grepprg": 1, - "That": 3, - "examples": 1, - "<-a>": 1, - "flags.": 1, - "Now": 1, - "step": 1, - "Dumper": 1, - "perllib": 1, - "Emacs": 1, - "Phil": 1, - "Jackson": 1, - "put": 1, - "together": 2, - "an": 16, - "": 1, - "extension": 1, - "": 1, - "TextMate": 2, - "Pedro": 1, - "Melo": 1, - "who": 1, - "writes": 1, - "Shell": 2, - "Code": 1, - "greater": 1, - "normal": 1, - "code": 8, - "<$?=256>": 1, - "": 1, - "backticks.": 1, - "errors": 1, - "used.": 1, - "at": 4, - "least": 1, - "returned.": 1, - "DEBUGGING": 1, - "PROBLEMS": 1, - "gives": 2, - "re": 3, - "expecting": 1, - "forgotten": 1, - "<--noenv>": 1, - "<.ackrc>": 1, - "remember.": 1, - "Put": 1, - "definitions": 1, - "it.": 1, - "smart": 1, - "too.": 1, - "there.": 1, - "working": 1, - "big": 1, - "codesets": 1, - "more": 2, - "create": 3, - "tree": 2, - "ideal": 1, - "sending": 1, - "": 1, - "prefer": 1, - "doubt": 1, - "day": 1, - "find": 1, - "trouble": 1, - "spots": 1, - "website": 1, - "visitor.": 1, - "had": 1, - "problem": 1, - "loading": 1, - "": 1, - "took": 1, - "access": 2, - "log": 3, - "scanned": 1, - "twice.": 1, - "aa.bb.cc.dd": 1, - "/path/to/access.log": 1, - "B5": 1, - "troublesome.gif": 1, - "first": 1, - "finds": 2, - "Apache": 2, - "IP.": 1, - "second": 1, - "troublesome": 1, - "GIF": 1, - "shows": 1, - "previous": 1, - "five": 1, - "case.": 1, - "Share": 1, - "knowledge": 1, - "Join": 1, - "mailing": 1, - "list.": 1, - "Send": 1, - "me": 1, - "tips": 1, - "here.": 1, - "FAQ": 1, - "Why": 3, - "isn": 1, - "doesn": 8, - "behavior": 3, - "driven": 1, - "filetype.": 1, - "": 1, - "kind": 1, - "ignores": 1, - "switch": 1, - "you.": 1, - "source": 2, - "compiled": 1, - "object": 6, - "control": 1, - "metadata": 1, - "wastes": 1, - "lot": 1, - "time": 3, - "those": 2, - "well": 2, - "returning": 1, - "things": 2, - "great": 1, - "did": 1, - "replace": 3, - "read": 6, - "only.": 1, - "has": 3, - "perfectly": 1, - "good": 2, - "way": 2, - "using": 5, - "<-p>": 1, - "<-n>": 1, - "switches.": 1, - "certainly": 2, - "select": 1, - "update.": 1, - "change": 1, - "PHP": 1, - "Unix": 1, - "Can": 1, - "recognize": 1, - "<.xyz>": 1, - "already": 2, - "program/package": 1, - "called": 4, - "ack.": 2, - "Yes": 1, - "know.": 1, - "nothing": 1, - "suggest": 1, - "symlink": 1, - "points": 1, - "": 1, - "crucial": 1, - "benefits": 1, - "having": 1, - "Regan": 1, - "Slaven": 1, - "ReziE": 1, - "<0x107>": 1, - "Mark": 1, - "Stosberg": 1, - "David": 1, - "Alan": 1, - "Pisoni": 1, - "Adriano": 1, - "Ferreira": 1, - "James": 1, - "Keenan": 1, - "Leland": 1, - "Johnson": 1, - "Ricardo": 1, - "Signes": 1, - "Pete": 1, - "Krawczyk.": 1, - "files_defaults": 3, - "skip_dirs": 3, - "CORE": 3, - "curdir": 1, - "updir": 1, - "__PACKAGE__": 1, - "parms": 15, - "@queue": 8, - "_setup": 2, - "fullpath": 12, - "splice": 2, - "local": 5, - "wantarray": 3, - "_candidate_files": 2, - "sort_standard": 2, - "cmp": 2, - "sort_reverse": 1, - "@parts": 3, - "passed_parms": 6, - "copy": 4, - "parm": 1, - "hash": 11, - "badkey": 1, - "caller": 2, - "start": 7, - "dh": 4, - "opendir": 1, - "@newfiles": 5, - "sort_sub": 4, - "readdir": 1, - "has_stat": 3, - "catdir": 3, - "closedir": 1, - "": 1, - "these": 4, - "updated": 1, - "update": 1, - "message": 1, - "bak": 1, - "core": 1, - "swp": 1, - "min": 3, - "js": 1, - "1": 1, - "str": 12, - "regex_is_lc": 2, - "S": 1, - ".*//": 1, - "_my_program": 3, - "Basename": 2, - "FAIL": 12, - "Carp": 11, - "confess": 2, - "@ISA": 2, - "class": 8, - "self": 141, - "bless": 7, - "could_be_binary": 4, - "opened": 1, - "id": 6, - "*STDIN": 2, - "size": 5, - "_000": 1, - "buffer": 9, - "sysread": 1, - "regex/m": 1, - "seek": 4, - "readline": 1, - "nexted": 3, - "CGI": 6, - "Fast": 3, - "XML": 2, - "Hash": 11, - "XS": 2, - "FindBin": 1, - "Bin": 3, - "#use": 1, - "lib": 2, - "_stop": 4, - "request": 11, - "SIG": 3, - "nginx": 2, - "external": 2, - "fcgi": 2, - "Ext_Request": 1, - "FCGI": 1, - "Request": 11, - "*STDERR": 1, - "int": 2, - "ARGV": 2, - "conv": 2, - "use_attr": 1, - "indent": 1, - "xml_decl": 1, - "tmpl_path": 2, - "tmpl": 5, - "data": 3, - "nick": 1, - "parent": 5, - "third_party": 1, - "artist_name": 2, - "venue": 2, - "event": 2, - "date": 2, - "zA": 1, - "Z0": 1, - "Content": 2, - "application/xml": 1, - "charset": 2, - "utf": 2, - "hash2xml": 1, - "text/html": 1, - "nError": 1, - "M": 1, - "system": 1, - "Foo": 11, - "Bar": 1, - "@array": 1, - "pod": 1, - "Catalyst": 10, - "PSGI": 10, - "How": 1, - "": 3, - "specification": 3, - "interface": 1, - "web": 8, - "servers": 2, - "based": 2, - "applications": 2, - "frameworks.": 1, - "supports": 1, - "writing": 1, - "portable": 1, - "run": 1, - "various": 2, - "methods": 4, - "standalone": 1, - "server": 2, - "mod_perl": 3, - "FastCGI": 2, - "": 3, - "implementation": 1, - "running": 1, - "applications.": 1, - "Engine": 1, - "XXXX": 1, - "classes": 2, - "environments": 1, - "been": 1, - "changed": 1, - "done": 2, - "implementing": 1, - "possible": 2, - "manually": 2, - "": 1, - "root": 1, - "application.": 1, - "write": 2, - "own": 4, - ".psgi": 7, - "Writing": 2, - "alternate": 1, - "": 1, - "extensions": 1, - "implement": 2, - "": 1, - "": 1, - "": 1, - "simplest": 1, - "<.psgi>": 1, - "": 1, - "TestApp": 5, - "app": 2, - "psgi_app": 3, - "middleware": 2, - "components": 2, - "automatically": 2, - "": 1, - "applied": 1, - "psgi": 2, - "yourself.": 2, - "Details": 1, - "below.": 1, - "Additional": 1, - "": 1, - "What": 1, - "generates": 2, - "": 1, - "setting": 2, - "wrapped": 1, - "": 1, - "some": 1, - "engine": 1, - "fixes": 1, - "uniform": 1, - "behaviour": 2, - "contained": 1, - "over": 2, - "": 1, - "": 1, - "override": 1, - "providing": 2, - "none": 1, - "call": 2, - "MyApp": 1, - "Thus": 1, - "functionality": 1, - "ll": 1, - "An": 1, - "apply_default_middlewares": 2, - "method": 8, - "supplied": 1, - "wrap": 1, - "middlewares": 1, - "means": 3, - "auto": 1, - "generated": 1, - "": 1, - "": 1, - "AUTHORS": 2, - "Contributors": 1, - "Catalyst.pm": 1, - "library": 2, - "software.": 1, - "same": 2, - "Plack": 25, - "_001": 1, - "HTTP": 16, - "Headers": 8, - "MultiValue": 9, - "Body": 2, - "Upload": 2, - "TempBuffer": 2, - "URI": 11, - "Escape": 6, - "_deprecated": 8, - "alt": 1, - "carp": 2, - "croak": 3, - "required": 2, - "address": 2, - "REMOTE_ADDR": 1, - "remote_host": 2, - "REMOTE_HOST": 1, - "protocol": 1, - "SERVER_PROTOCOL": 1, - "REQUEST_METHOD": 1, - "port": 1, - "SERVER_PORT": 2, - "REMOTE_USER": 1, - "request_uri": 1, - "REQUEST_URI": 2, - "path_info": 4, - "PATH_INFO": 3, - "script_name": 1, - "SCRIPT_NAME": 2, - "scheme": 3, - "secure": 2, - "body": 30, - "content_length": 4, - "CONTENT_LENGTH": 3, - "content_type": 5, - "CONTENT_TYPE": 2, - "session": 1, - "session_options": 1, - "logger": 1, - "cookies": 9, - "HTTP_COOKIE": 3, - "@pairs": 2, - "pair": 4, - "uri_unescape": 1, - "query_parameters": 3, - "uri": 11, - "query_form": 2, - "content": 8, - "_parse_request_body": 4, - "cl": 10, - "raw_body": 1, - "headers": 56, - "field": 2, - "HTTPS": 1, - "_//": 1, - "CONTENT": 1, - "COOKIE": 1, - "content_encoding": 5, - "referer": 3, - "user_agent": 3, - "body_parameters": 3, - "parameters": 8, - "query": 4, - "flatten": 3, - "uploads": 5, - "hostname": 1, - "url_scheme": 1, - "params": 1, - "query_params": 1, - "body_params": 1, - "cookie": 6, - "param": 8, - "get_all": 2, - "upload": 13, - "raw_uri": 1, - "base": 10, - "path_query": 1, - "_uri_base": 3, - "path_escape_class": 2, - "uri_escape": 3, - "QUERY_STRING": 3, - "canonical": 2, - "HTTP_HOST": 1, - "SERVER_NAME": 1, - "new_response": 4, - "Response": 16, - "ct": 3, - "cleanup": 1, - "spin": 2, - "chunk": 4, - "length": 1, - "rewind": 1, - "from_mixed": 2, - "@uploads": 3, - "@obj": 3, - "_make_upload": 2, - "__END__": 2, - "Portable": 2, - "app_or_middleware": 1, - "req": 28, - "finalize": 5, - "": 2, - "provides": 1, - "consistent": 1, - "API": 2, - "objects": 2, - "across": 1, - "environments.": 1, - "CAVEAT": 1, - "module": 2, - "intended": 1, - "developers": 3, - "framework": 2, - "rather": 2, - "directly": 1, - "recommended": 1, - "yet": 1, - "too": 1, - "low": 1, - "level.": 1, - "encouraged": 1, - "frameworks": 2, - "": 1, - "modules": 1, - "": 1, - "provide": 1, - "higher": 1, - "level": 1, - "top": 1, - "PSGI.": 1, - "METHODS": 2, - "Some": 1, - "earlier": 1, - "versions": 1, - "deprecated": 1, - "Take": 1, - "": 1, - "Unless": 1, - "noted": 1, - "": 1, - "passing": 1, - "values": 5, - "accessor": 1, - "debug": 1, - "set.": 1, - "": 2, - "request.": 1, - "uploads.": 2, - "": 2, - "": 1, - "objects.": 1, - "Shortcut": 6, - "content_encoding.": 1, - "content_length.": 1, - "content_type.": 1, - "header.": 2, - "referer.": 1, - "user_agent.": 1, - "GET": 1, - "POST": 1, - "CGI.pm": 2, - "compatible": 1, - "method.": 1, - "alternative": 1, - "accessing": 1, - "parameters.": 3, - "Unlike": 1, - "": 1, - "allow": 1, - "modifying": 1, - "@values": 1, - "@params": 1, - "convenient": 1, - "@fields": 1, - "Creates": 2, - "": 3, - "object.": 4, - "Handy": 1, - "remove": 2, - "dependency": 1, - "easy": 1, - "subclassing": 1, - "duck": 1, - "typing": 1, - "overriding": 1, - "generation": 1, - "middlewares.": 1, - "Parameters": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "store": 1, - "plain": 2, - "": 1, - "scalars": 1, - "references": 1, - "ARRAY": 1, - "parse": 1, - "twice": 1, - "efficiency.": 1, - "DISPATCHING": 1, - "wants": 1, - "dispatch": 1, - "route": 1, - "actions": 1, - "sure": 1, - "": 1, - "virtual": 1, - "regardless": 1, - "how": 1, - "mounted.": 1, - "hosted": 1, - "scripts": 1, - "multiplexed": 1, - "tools": 1, - "": 1, - "idea": 1, - "subclass": 1, - "define": 1, - "uri_for": 2, - "args": 3, - "So": 1, - "say": 1, - "link": 1, - "signoff": 1, - "": 1, - "empty.": 1, - "older": 1, - "instead.": 1, - "Cookie": 2, - "handling": 1, - "simplified": 1, - "string": 5, - "encoding": 2, - "decoding": 1, - "totally": 1, - "up": 1, - "framework.": 1, - "Also": 1, - "": 1, - "now": 1, - "": 1, - "Simple": 1, - "longer": 1, - "have": 2, - "wacky": 1, - "simply": 1, - "Tatsuhiko": 2, - "Miyagawa": 2, - "Kazuhiro": 1, - "Osawa": 1, - "Tokuhiro": 2, - "Matsuno": 2, - "": 1, - "": 1, - "Util": 3, - "Accessor": 1, - "status": 17, - "Scalar": 2, - "location": 4, - "redirect": 1, - "url": 2, - "clone": 1, - "_finalize_cookies": 2, - "/chr": 1, - "/ge": 1, - "LWS": 1, - "single": 1, - "SP": 1, - "//g": 1, - "CR": 1, - "LF": 1, - "since": 1, - "char": 1, - "invalid": 1, - "header_field_names": 1, - "_body": 2, - "blessed": 1, - "overload": 1, - "Method": 1, - "_bake_cookie": 2, - "push_header": 1, - "@cookie": 7, - "domain": 3, - "_date": 2, - "expires": 7, - "httponly": 1, - "@MON": 1, - "Jan": 1, - "Feb": 1, - "Mar": 1, - "Apr": 1, - "Jun": 1, - "Jul": 1, - "Aug": 1, - "Sep": 1, - "Oct": 1, - "Nov": 1, - "Dec": 1, - "@WDAY": 1, - "Sun": 1, - "Mon": 1, - "Tue": 1, - "Wed": 1, - "Thu": 1, - "Fri": 1, - "Sat": 1, - "sec": 2, - "hour": 2, - "mday": 2, - "mon": 2, - "year": 3, - "wday": 2, - "gmtime": 1, - "sprintf": 1, - "WDAY": 1, - "MON": 1, - "response": 5, - "psgi_handler": 1, - "API.": 1, - "Sets": 2, - "gets": 2, - "": 1, - "alias.": 2, - "response.": 1, - "Setter": 2, - "either": 2, - "headers.": 1, - "body_str": 1, - "io": 1, - "body.": 1, - "IO": 1, - "Handle": 1, - "": 1, - "X": 2, - "text/plain": 1, - "gzip": 1, - "normalize": 1, - "string.": 1, - "Users": 1, - "responsible": 1, - "properly": 1, - "": 1, - "names": 1, - "their": 1, - "corresponding": 1, - "": 2, - "everything": 1, - "": 1, - "": 2, - "": 1, - "": 1, - "": 1, - "integer": 1, - "epoch": 1, - "": 1, - "convert": 1, - "formats": 1, - "<+3M>": 1, - "reference.": 1, - "AUTHOR": 1 - }, - "Perl6": { - "token": 6, - "pod_formatting_code": 1, - "{": 29, - "": 1, - "<[A..Z]>": 1, - "*POD_IN_FORMATTINGCODE": 1, - "}": 27, - "": 1, - "[": 1, - "": 1, - "#": 13, - "N*": 1, - "role": 10, - "q": 5, - "stopper": 2, - "MAIN": 1, - "quote": 1, - ")": 19, - "backslash": 3, - "sym": 3, - "<\\\\>": 1, - "": 1, - "": 1, - "": 1, - "": 1, - ".": 1, - "method": 2, - "tweak_q": 1, - "(": 16, - "v": 2, - "self.panic": 2, - "tweak_qq": 1, - "qq": 5, - "does": 7, - "b1": 1, - "c1": 1, - "s1": 1, - "a1": 1, - "h1": 1, - "f1": 1, - "Too": 2, - "late": 2, - "for": 2, - "SHEBANG#!perl": 1, - "use": 1, - "v6": 1, - ";": 19, - "my": 10, - "string": 7, - "if": 1, - "eq": 1, - "say": 10, - "regex": 2, - "http": 1, - "-": 3, - "verb": 1, - "|": 9, - "multi": 2, - "line": 5, - "comment": 2, - "I": 1, - "there": 1, - "m": 2, - "even": 1, - "specialer": 1, - "nesting": 1, - "work": 1, - "<": 3, - "trying": 1, - "mixed": 1, - "delimiters": 1, - "": 1, - "arbitrary": 2, - "delimiter": 2, - "Hooray": 1, - "": 1, - "with": 9, - "whitespace": 1, - "<<": 1, - "more": 1, - "strings": 1, - "%": 1, - "hash": 1, - "Hash.new": 1, - "begin": 1, - "pod": 1, - "Here": 1, - "t": 2, - "highlighted": 1, - "table": 1, - "Of": 1, - "things": 1, - "A": 3, - "single": 3, - "declarator": 7, - "a": 8, - "keyword": 7, - "like": 7, - "Another": 2, - "block": 2, - "brace": 1, - "More": 2, - "blocks": 2, - "don": 2, - "x": 2, - "foo": 3, - "Rob": 1, - "food": 1, - "match": 1, - "sub": 1, - "something": 1, - "Str": 1, - "D": 1, - "value": 1, - "...": 1, - "s": 1, - "some": 2, - "stuff": 1, - "chars": 1, - "/": 1, - "": 1, - "": 1, - "roleq": 1 - }, - "PHP": { - "<": 11, - "php": 12, - "namespace": 28, - "Symfony": 24, - "Component": 24, - "Console": 17, - ";": 1383, - "use": 23, - "Input": 6, - "InputInterface": 4, - "ArgvInput": 2, - "ArrayInput": 3, - "InputDefinition": 2, - "InputOption": 15, - "InputArgument": 3, - "Output": 5, - "OutputInterface": 6, - "ConsoleOutput": 2, - "ConsoleOutputInterface": 2, - "Command": 6, - "HelpCommand": 2, - "ListCommand": 2, - "Helper": 3, - "HelperSet": 3, - "FormatterHelper": 2, - "DialogHelper": 2, - "class": 21, - "Application": 3, - "{": 974, - "private": 24, - "commands": 39, - "wantHelps": 4, - "false": 154, - "runningCommand": 5, - "name": 181, - "version": 8, - "catchExceptions": 4, - "autoExit": 4, - "definition": 3, - "helperSet": 6, - "public": 202, - "function": 205, - "__construct": 8, - "(": 2416, - ")": 2417, - "this": 928, - "-": 1271, - "true": 133, - "array": 296, - "getDefaultHelperSet": 2, - "getDefaultInputDefinition": 2, - "foreach": 94, - "getDefaultCommands": 2, - "as": 96, - "command": 41, - "add": 7, - "}": 972, - "run": 4, - "input": 20, - "null": 164, - "output": 60, - "if": 450, - "new": 74, - "try": 3, - "statusCode": 14, - "doRun": 2, - "catch": 3, - "Exception": 1, - "e": 18, - "throw": 19, - "instanceof": 8, - "renderException": 3, - "getErrorOutput": 2, - "else": 70, - "getCode": 1, - "is_numeric": 7, - "&&": 119, - "exit": 7, - "return": 305, - "getCommandName": 2, - "hasParameterOption": 7, - "setDecorated": 2, - "elseif": 31, - "setInteractive": 2, - "function_exists": 4, - "getHelperSet": 3, - "has": 7, - "inputStream": 2, - "get": 12, - "getInputStream": 1, - "posix_isatty": 1, - "setVerbosity": 2, - "VERBOSITY_QUIET": 1, - "VERBOSITY_VERBOSE": 2, - "writeln": 13, - "getLongVersion": 3, - "find": 17, - "setHelperSet": 1, - "getDefinition": 2, - "getHelp": 2, - "messages": 16, - "sprintf": 27, - "getOptions": 1, - "option": 5, - "[": 672, - "]": 672, - ".": 169, - "getName": 14, - "getShortcut": 2, - "getDescription": 3, - "implode": 8, - "PHP_EOL": 3, - "setCatchExceptions": 1, - "boolean": 4, - "Boolean": 4, - "setAutoExit": 1, - "setName": 1, - "getVersion": 3, - "setVersion": 1, - "register": 1, - "addCommands": 1, - "setApplication": 2, - "isEnabled": 1, - "getAliases": 3, - "alias": 87, - "isset": 101, - "InvalidArgumentException": 9, - "helpCommand": 3, - "setCommand": 1, - "getNamespaces": 3, - "namespaces": 4, - "extractNamespace": 7, - "array_values": 5, - "array_unique": 4, - "array_filter": 2, - "findNamespace": 4, - "allNamespaces": 3, - "n": 12, - "explode": 9, - "found": 4, - "i": 36, - "part": 10, - "abbrevs": 31, - "static": 6, - "getAbbreviations": 4, - "array_map": 2, - "p": 3, - "message": 12, - "<=>": 3, - "alternatives": 10, - "findAlternativeNamespace": 2, - "count": 32, - "getAbbreviationSuggestions": 4, - "searchName": 13, - "pos": 3, - "strrpos": 2, - "substr": 6, - "namespace.substr": 1, - "suggestions": 2, - "aliases": 8, - "findAlternativeCommands": 2, - "all": 11, - "substr_count": 1, - "+": 12, - "names": 3, - "for": 8, - "len": 11, - "strlen": 14, - "abbrev": 4, - "asText": 1, - "raw": 2, - "width": 7, - "sortCommands": 4, - "space": 5, - "space.": 1, - "asXml": 2, - "asDom": 2, - "dom": 12, - "DOMDocument": 2, - "formatOutput": 1, - "appendChild": 10, - "xml": 5, - "createElement": 6, - "commandsXML": 3, - "setAttribute": 2, - "namespacesXML": 3, - "namespaceArrayXML": 4, - "continue": 7, - "commandXML": 3, - "createTextNode": 1, - "node": 42, - "getElementsByTagName": 1, - "item": 9, - "importNode": 3, - "saveXml": 1, - "string": 5, - "encoding": 2, - "mb_detect_encoding": 1, - "mb_strlen": 1, - "do": 2, - "title": 3, - "get_class": 4, - "getTerminalWidth": 3, - "PHP_INT_MAX": 1, - "lines": 3, - "preg_split": 1, - "getMessage": 1, - "line": 10, - "str_split": 1, - "max": 2, - "str_repeat": 2, - "title.str_repeat": 1, - "line.str_repeat": 1, - "message.": 1, - "getVerbosity": 1, - "trace": 12, - "getTrace": 1, - "array_unshift": 2, - "getFile": 2, - "getLine": 2, - "type": 62, - "file": 3, - "while": 6, - "getPrevious": 1, - "getSynopsis": 1, - "protected": 59, - "defined": 5, - "ansicon": 4, - "getenv": 2, - "preg_replace": 4, - "preg_match": 6, - "getSttyColumns": 3, - "match": 4, - "getTerminalHeight": 1, - "trim": 3, - "getFirstArgument": 1, - "REQUIRED": 1, - "VALUE_NONE": 7, - "descriptorspec": 2, - "process": 10, - "proc_open": 1, - "pipes": 4, - "is_resource": 1, - "info": 5, - "stream_get_contents": 1, - "fclose": 2, - "proc_close": 1, - "namespacedCommands": 5, - "key": 64, - "ksort": 2, - "&": 19, - "limit": 3, - "parts": 4, - "array_pop": 1, - "array_slice": 1, - "callback": 5, - "findAlternatives": 3, - "collection": 3, - "call_user_func": 2, - "lev": 6, - "levenshtein": 2, - "3": 1, - "strpos": 15, - "values": 53, - "/": 1, - "||": 52, - "value": 53, - "asort": 1, - "array_keys": 7, - "BrowserKit": 1, - "DomCrawler": 5, - "Crawler": 2, - "Link": 3, - "Form": 4, - "Process": 1, - "PhpProcess": 2, - "abstract": 2, - "Client": 1, - "history": 15, - "cookieJar": 9, - "server": 20, - "request": 76, - "response": 33, - "crawler": 7, - "insulated": 7, - "redirect": 6, - "followRedirects": 5, - "History": 2, - "CookieJar": 2, - "setServerParameters": 2, - "followRedirect": 4, - "insulate": 1, - "class_exists": 2, - "RuntimeException": 2, - "array_merge": 32, - "setServerParameter": 1, - "getServerParameter": 1, - "default": 9, - "getHistory": 1, - "getCookieJar": 1, - "getCrawler": 1, - "getResponse": 1, - "getRequest": 1, - "click": 1, - "link": 10, - "submit": 2, - "getMethod": 6, - "getUri": 8, - "form": 7, - "setValues": 2, - "getPhpValues": 2, - "getPhpFiles": 2, - "method": 31, - "uri": 23, - "parameters": 4, - "files": 7, - "content": 4, - "changeHistory": 4, - "getAbsoluteUri": 2, - "isEmpty": 2, - "current": 4, - "parse_url": 3, - "PHP_URL_HOST": 1, - "PHP_URL_SCHEME": 1, - "Request": 3, - "allValues": 1, - "filterRequest": 2, - "doRequestInProcess": 2, - "doRequest": 2, - "filterResponse": 2, - "updateFromResponse": 1, - "getHeader": 2, - "createCrawlerFromContent": 2, - "getContent": 2, - "getScript": 2, - "sys_get_temp_dir": 2, - "isSuccessful": 1, - "getOutput": 3, - "unserialize": 1, - "LogicException": 4, - "addContent": 1, - "back": 2, - "requestFromRequest": 4, - "forward": 2, - "reload": 1, - "empty": 96, - "restart": 1, - "clear": 2, - "currentUri": 7, - "path": 20, - "PHP_URL_PATH": 1, - "path.": 1, - "getParameters": 1, - "getFiles": 3, - "getServer": 1, - "": 3, - "CakePHP": 6, - "tm": 6, - "Rapid": 2, - "Development": 2, - "Framework": 2, - "http": 14, - "cakephp": 4, - "org": 10, - "Copyright": 5, - "2005": 4, - "2012": 4, - "Cake": 7, - "Software": 5, - "Foundation": 4, - "Inc": 4, - "cakefoundation": 4, - "Licensed": 2, - "under": 2, - "The": 4, - "MIT": 4, - "License": 4, - "Redistributions": 2, - "of": 10, - "must": 2, - "retain": 2, - "the": 11, - "above": 2, - "copyright": 5, - "notice": 2, - "Project": 2, - "package": 2, - "Controller": 4, - "since": 2, - "v": 17, - "0": 4, - "2": 2, - "9": 1, - "license": 6, - "www": 4, - "opensource": 2, - "licenses": 2, - "mit": 2, - "App": 20, - "uses": 46, - "CakeResponse": 2, - "Network": 1, - "ClassRegistry": 9, - "Utility": 6, - "ComponentCollection": 2, - "View": 9, - "CakeEvent": 13, - "Event": 6, - "CakeEventListener": 4, - "CakeEventManager": 5, - "controller": 3, - "organization": 1, - "business": 1, - "logic": 1, - "Provides": 1, - "basic": 1, - "functionality": 1, - "such": 1, - "rendering": 1, - "views": 1, - "inside": 1, - "layouts": 1, - "automatic": 1, - "model": 34, - "availability": 1, - "redirection": 2, - "callbacks": 4, - "and": 5, - "more": 1, - "Controllers": 2, - "should": 1, - "provide": 1, - "a": 11, - "number": 1, - "action": 7, - "methods": 5, - "These": 1, - "are": 5, - "on": 4, - "that": 2, - "not": 2, - "prefixed": 1, - "with": 5, - "_": 1, - "Each": 1, - "serves": 1, - "an": 1, - "endpoint": 1, - "performing": 2, - "specific": 1, - "resource": 1, - "or": 9, - "resources": 1, - "For": 2, - "example": 2, - "adding": 1, - "editing": 1, - "object": 14, - "listing": 1, - "set": 26, - "objects": 5, - "You": 2, - "can": 2, - "access": 1, - "using": 2, - "contains": 1, - "POST": 1, - "GET": 1, - "FILES": 1, - "*": 25, - "were": 1, - "request.": 1, - "After": 1, - "required": 2, - "actions": 2, - "controllers": 2, - "responsible": 1, - "creating": 1, - "response.": 2, - "This": 1, - "usually": 1, - "takes": 1, - "generated": 1, - "possibly": 1, - "to": 6, - "another": 1, - "action.": 1, - "In": 1, - "either": 1, - "case": 31, - "allows": 1, - "you": 1, - "manipulate": 1, - "aspects": 1, - "created": 8, - "by": 2, - "Dispatcher": 1, - "based": 2, - "routing.": 1, - "By": 1, - "conventional": 1, - "names.": 1, - "/posts/index": 1, - "maps": 1, - "PostsController": 1, - "index": 5, - "re": 1, - "map": 1, - "urls": 1, - "Router": 5, - "connect": 1, - "@package": 2, - "Cake.Controller": 1, - "@property": 8, - "AclComponent": 1, - "Acl": 1, - "AuthComponent": 1, - "Auth": 1, - "CookieComponent": 1, - "Cookie": 1, - "EmailComponent": 1, - "Email": 1, - "PaginatorComponent": 1, - "Paginator": 1, - "RequestHandlerComponent": 1, - "RequestHandler": 1, - "SecurityComponent": 1, - "Security": 1, - "SessionComponent": 1, - "Session": 1, - "@link": 2, - "//book.cakephp.org/2.0/en/controllers.html": 1, - "*/": 2, - "extends": 3, - "Object": 4, - "implements": 3, - "helpers": 1, - "_responseClass": 1, - "viewPath": 3, - "layoutPath": 1, - "viewVars": 3, - "view": 5, - "layout": 5, - "autoRender": 6, - "autoLayout": 2, - "Components": 7, - "components": 1, - "viewClass": 10, - "ext": 1, - "plugin": 31, - "cacheAction": 1, - "passedArgs": 2, - "scaffold": 2, - "modelClass": 25, - "modelKey": 2, - "validationErrors": 50, - "_mergeParent": 4, - "_eventManager": 12, - "Inflector": 12, - "singularize": 4, - "underscore": 3, - "childMethods": 2, - "get_class_methods": 2, - "parentMethods": 2, - "array_diff": 3, - "CakeRequest": 5, - "setRequest": 2, - "parent": 14, - "__isset": 2, - "switch": 6, - "is_array": 37, - "list": 29, - "pluginSplit": 12, - "loadModel": 3, - "__get": 2, - "params": 34, - "load": 3, - "settings": 2, - "__set": 1, - "camelize": 3, - "array_key_exists": 11, - "invokeAction": 1, - "ReflectionMethod": 2, - "_isPrivateAction": 2, - "PrivateActionException": 1, - "invokeArgs": 1, - "ReflectionException": 1, - "_getScaffold": 2, - "MissingActionException": 1, - "privateAction": 4, - "isPublic": 1, - "in_array": 26, - "prefixes": 4, - "prefix": 2, - "Scaffold": 1, - "_mergeControllerVars": 2, - "pluginController": 9, - "pluginDot": 4, - "mergeParent": 2, - "is_subclass_of": 3, - "pluginVars": 3, - "appVars": 6, - "merge": 12, - "_mergeVars": 5, - "get_class_vars": 2, - "_mergeUses": 3, - "implementedEvents": 2, - "constructClasses": 1, - "init": 4, - "getEventManager": 13, - "attach": 4, - "startupProcess": 1, - "dispatch": 11, - "shutdownProcess": 1, - "httpCodes": 3, - "code": 4, - "id": 82, - "MissingModelException": 1, - "url": 18, - "status": 15, - "extract": 9, - "EXTR_OVERWRITE": 3, - "event": 35, - "//TODO": 1, - "Remove": 1, - "following": 1, - "when": 1, - "events": 1, - "fully": 1, - "migrated": 1, - "break": 19, - "breakOn": 4, - "collectReturn": 1, - "isStopped": 4, - "result": 21, - "_parseBeforeRedirect": 2, - "session_write_close": 1, - "header": 3, - "is_string": 7, - "codes": 3, - "array_flip": 1, - "send": 1, - "_stop": 1, - "resp": 6, - "compact": 8, - "one": 19, - "two": 6, - "data": 187, - "array_combine": 2, - "setAction": 1, - "args": 5, - "func_get_args": 5, - "unset": 22, - "call_user_func_array": 3, - "validate": 9, - "errors": 9, - "validateErrors": 1, - "invalidFields": 2, - "render": 3, - "className": 27, - "models": 6, - "keys": 19, - "currentModel": 2, - "currentObject": 6, - "getObject": 1, - "is_a": 1, - "location": 1, - "body": 1, - "referer": 5, - "local": 2, - "disableCache": 2, - "flash": 1, - "pause": 2, - "postConditions": 1, - "op": 9, - "bool": 5, - "exclusive": 2, - "cond": 5, - "arrayOp": 2, - "fields": 60, - "field": 88, - "fieldOp": 11, - "strtoupper": 3, - "paginate": 3, - "scope": 2, - "whitelist": 14, - "beforeFilter": 1, - "beforeRender": 1, - "beforeRedirect": 1, - "afterFilter": 1, - "beforeScaffold": 2, - "_beforeScaffold": 1, - "afterScaffoldSave": 2, - "_afterScaffoldSave": 1, - "afterScaffoldSaveError": 2, - "_afterScaffoldSaveError": 1, - "scaffoldError": 2, - "_scaffoldError": 1, - "php_help": 1, - "arg": 1, - "t": 26, - "php_permission": 1, - "TRUE": 1, - "php_eval": 1, - "global": 2, - "theme_path": 5, - "theme_info": 3, - "conf": 2, - "old_theme_path": 2, - "drupal_get_path": 1, - "dirname": 1, - "filename": 1, - "ob_start": 1, - "print": 1, - "eval": 1, - "ob_get_contents": 1, - "ob_end_clean": 1, - "_php_filter_tips": 1, - "filter": 1, - "format": 3, - "long": 2, - "FALSE": 2, - "base_url": 1, - "php_filter_info": 1, - "filters": 2, - "Field": 9, - "FormField": 3, - "ArrayAccess": 1, - "button": 6, - "DOMNode": 3, - "initialize": 2, - "getFormNode": 1, - "getValues": 3, - "isDisabled": 2, - "FileFormField": 3, - "hasValue": 1, - "getValue": 2, - "qs": 4, - "http_build_query": 3, - "parse_str": 2, - "queryString": 2, - "sep": 1, - "sep.": 1, - "getRawUri": 1, - "getAttribute": 10, - "remove": 4, - "offsetExists": 1, - "offsetGet": 1, - "offsetSet": 1, - "offsetUnset": 1, - "setNode": 1, - "nodeName": 13, - "parentNode": 1, - "FormFieldRegistry": 2, - "document": 6, - "root": 4, - "xpath": 2, - "DOMXPath": 1, - "query": 102, - "hasAttribute": 1, - "InputFormField": 2, - "ChoiceFormField": 2, - "addChoice": 1, - "TextareaFormField": 1, - "base": 8, - "segments": 13, - "getSegments": 4, - "target": 20, - "array_shift": 5, - "self": 1, - "create": 13, - "k": 7, - "setValue": 1, - "walk": 3, - "registry": 4, - "m": 5, - "relational": 2, - "mapper": 2, - "DBO": 2, - "backed": 2, - "mapping": 1, - "database": 2, - "tables": 5, - "PHP": 1, - "versions": 1, - "5": 1, - "Model": 5, - "10": 1, - "Validation": 1, - "String": 5, - "Set": 9, - "BehaviorCollection": 2, - "ModelBehavior": 1, - "ConnectionManager": 2, - "Xml": 2, - "Automatically": 1, - "selects": 1, - "table": 21, - "pluralized": 1, - "lowercase": 1, - "User": 1, - "is": 1, - "have": 2, - "at": 1, - "least": 1, - "primary": 3, - "key.": 1, - "Cake.Model": 1, - "//book.cakephp.org/2.0/en/models.html": 1, - "useDbConfig": 7, - "useTable": 12, - "displayField": 4, - "schemaName": 1, - "primaryKey": 38, - "_schema": 11, - "validationDomain": 1, - "tablePrefix": 8, - "tableToModel": 4, - "cacheQueries": 1, - "belongsTo": 7, - "hasOne": 2, - "hasMany": 2, - "hasAndBelongsToMany": 24, - "actsAs": 2, - "Behaviors": 6, - "cacheSources": 7, - "findQueryType": 3, - "recursive": 9, - "order": 4, - "virtualFields": 8, - "_associationKeys": 2, - "_associations": 5, - "__backAssociation": 22, - "__backInnerAssociation": 1, - "__backOriginalAssociation": 1, - "__backContainableAssociation": 1, - "_insertID": 1, - "_sourceConfigured": 1, - "findMethods": 3, - "ds": 3, - "addObject": 2, - "parentClass": 3, - "get_parent_class": 1, - "tableize": 2, - "_createLinks": 3, - "__call": 1, - "dispatchMethod": 1, - "getDataSource": 15, - "relation": 7, - "assocKey": 13, - "dynamic": 2, - "isKeySet": 1, - "AppModel": 1, - "_constructLinkedModel": 2, - "schema": 11, - "hasField": 7, - "setDataSource": 2, - "property_exists": 3, - "bindModel": 1, - "reset": 6, - "assoc": 75, - "assocName": 6, - "unbindModel": 1, - "_generateAssociation": 2, - "dynamicWith": 3, - "sort": 1, - "setSource": 1, - "tableName": 4, - "db": 45, - "method_exists": 5, - "sources": 3, - "listSources": 1, - "strtolower": 1, - "MissingTableException": 1, - "is_object": 2, - "SimpleXMLElement": 1, - "_normalizeXmlData": 3, - "toArray": 1, - "reverse": 1, - "_setAliasData": 2, - "modelName": 3, - "fieldSet": 3, - "fieldName": 6, - "fieldValue": 7, - "deconstruct": 2, - "getAssociated": 4, - "getColumnType": 4, - "useNewDate": 2, - "dateFields": 5, - "timeFields": 2, - "date": 9, - "val": 27, - "columns": 5, - "str_replace": 3, - "describe": 1, - "getColumnTypes": 1, - "trigger_error": 1, - "__d": 1, - "E_USER_WARNING": 1, - "cols": 7, - "column": 10, - "startQuote": 4, - "endQuote": 4, - "checkVirtual": 3, - "isVirtualField": 3, - "hasMethod": 2, - "getVirtualField": 1, - "filterKey": 2, - "defaults": 6, - "properties": 4, - "read": 2, - "conditions": 41, - "saveField": 1, - "options": 85, - "save": 9, - "fieldList": 1, - "_whitelist": 4, - "keyPresentAndEmpty": 2, - "exists": 6, - "validates": 60, - "updateCol": 6, - "colType": 4, - "time": 3, - "strtotime": 1, - "joined": 5, - "x": 4, - "y": 2, - "success": 10, - "cache": 2, - "_prepareUpdateFields": 2, - "update": 2, - "fInfo": 4, - "isUUID": 5, - "j": 2, - "array_search": 1, - "uuid": 3, - "updateCounterCache": 6, - "_saveMulti": 2, - "_clearCache": 2, - "join": 22, - "joinModel": 8, - "keyInfo": 4, - "withModel": 4, - "pluginName": 1, - "dbMulti": 6, - "newData": 5, - "newValues": 8, - "newJoins": 7, - "primaryAdded": 3, - "idField": 3, - "row": 17, - "keepExisting": 3, - "associationForeignKey": 5, - "links": 4, - "oldLinks": 4, - "delete": 9, - "oldJoin": 4, - "insertMulti": 1, - "foreignKey": 11, - "fkQuoted": 3, - "escapeField": 6, - "intval": 4, - "updateAll": 3, - "foreignKeys": 3, - "included": 3, - "array_intersect": 1, - "old": 2, - "saveAll": 1, - "numeric": 1, - "validateMany": 4, - "saveMany": 3, - "validateAssociated": 5, - "saveAssociated": 5, - "transactionBegun": 4, - "begin": 2, - "record": 10, - "saved": 18, - "commit": 2, - "rollback": 2, - "associations": 9, - "association": 47, - "notEmpty": 4, - "_return": 3, - "recordData": 2, - "cascade": 10, - "_deleteDependent": 3, - "_deleteLinks": 3, - "_collectForeignKeys": 2, - "savedAssociatons": 3, - "deleteAll": 2, - "records": 6, - "ids": 8, - "_id": 2, - "getID": 2, - "hasAny": 1, - "buildQuery": 2, - "is_null": 1, - "results": 22, - "resetAssociations": 3, - "_filterResults": 2, - "ucfirst": 2, - "modParams": 2, - "_findFirst": 1, - "state": 15, - "_findCount": 1, - "calculate": 2, - "expression": 1, - "_findList": 1, - "tokenize": 1, - "lst": 4, - "combine": 1, - "_findNeighbors": 1, - "prevVal": 2, - "return2": 6, - "_findThreaded": 1, - "nest": 1, - "isUnique": 1, - "is_bool": 1, - "sql": 1, - "SHEBANG#!php": 3, - "echo": 2, - "Yii": 3, - "console": 3, - "bootstrap": 1, - "yiiframework": 2, - "com": 2, - "c": 1, - "2008": 1, - "LLC": 1, - "YII_DEBUG": 2, - "define": 2, - "fcgi": 1, - "doesn": 1, - "STDIN": 3, - "fopen": 1, - "stdin": 1, - "r": 1, - "require": 3, - "__DIR__": 3, - "vendor": 2, - "yiisoft": 1, - "yii2": 1, - "yii": 2, - "autoload": 1, - "config": 3, - "application": 2 - }, - "Pod": { - "Id": 1, - "contents.pod": 1, - "v": 1, - "/05/04": 1, - "tower": 1, - "Exp": 1, - "begin": 3, - "html": 7, - "": 1, - "end": 4, - "head1": 2, - "Net": 12, - "Z3950": 12, - "AsyncZ": 16, - "head2": 3, - "Intro": 1, - "adds": 1, - "an": 3, - "additional": 1, - "layer": 1, - "of": 19, - "asynchronous": 4, - "support": 1, - "for": 11, - "the": 29, - "module": 6, - "through": 1, - "use": 1, - "multiple": 1, - "forked": 1, - "processes.": 1, - "I": 8, - "hope": 1, - "that": 9, - "users": 1, - "will": 1, - "also": 2, - "find": 1, - "it": 3, - "provides": 1, - "a": 8, - "convenient": 2, - "front": 1, - "to": 9, - "C": 13, - "": 1, - ".": 5, - "My": 1, - "initial": 1, - "idea": 1, - "was": 1, - "write": 1, - "something": 2, - "would": 1, - "provide": 1, - "means": 1, - "processing": 1, - "and": 14, - "formatting": 2, - "Z39.50": 1, - "records": 4, - "which": 3, - "did": 1, - "using": 1, - "": 2, - "synchronous": 1, - "code.": 1, - "But": 3, - "wanted": 1, - "could": 1, - "handle": 1, - "queries": 1, - "large": 1, - "numbers": 1, - "servers": 1, - "at": 1, - "one": 1, - "session.": 1, - "Working": 1, - "on": 1, - "this": 3, - "part": 3, - "my": 1, - "project": 1, - "found": 1, - "had": 1, - "trouble": 1, - "with": 6, - "features": 1, - "so": 1, - "ended": 1, - "up": 1, - "what": 1, - "have": 3, - "here.": 1, - "give": 2, - "more": 4, - "detailed": 4, - "account": 2, - "in": 9, - "": 4, - "href=": 5, - "": 1, - "DESCRIPTION": 1, - "": 1, - "": 5, - "section": 2, - "": 5, - "AsyncZ.html": 2, - "": 6, - "pod": 3, - "B": 1, - "": 1, - "": 1, - "cut": 3, - "Documentation": 1, - "over": 2, - "item": 10, - "AsyncZ.pod": 1, - "This": 4, - "is": 8, - "starting": 2, - "point": 2, - "gives": 2, - "overview": 2, - "describes": 2, - "basic": 4, - "mechanics": 2, - "its": 2, - "workings": 2, - "details": 5, - "particulars": 2, - "objects": 2, - "methods.": 2, - "see": 2, - "L": 1, - "": 1, - "explanations": 2, - "sample": 2, - "scripts": 2, - "come": 2, - "": 2, - "distribution.": 2, - "Options.pod": 1, - "document": 2, - "various": 2, - "options": 2, - "can": 4, - "be": 2, - "set": 2, - "modify": 2, - "behavior": 2, - "Index": 1, - "Report.pod": 2, - "deals": 2, - "how": 4, - "are": 7, - "treated": 2, - "line": 4, - "by": 2, - "you": 4, - "affect": 2, - "apearance": 2, - "record": 2, - "s": 2, - "HOW": 2, - "TO.": 2, - "back": 2, - "": 1, - "The": 6, - "Modules": 1, - "There": 2, - "modules": 5, - "than": 2, - "there": 2, - "documentation.": 2, - "reason": 2, - "only": 2, - "full": 2, - "complete": 2, - "access": 9, - "other": 2, - "either": 2, - "internal": 2, - "": 1, - "or": 4, - "accessed": 2, - "indirectly": 2, - "indirectly.": 2, - "head3": 1, - "Here": 1, - "main": 1, - "direct": 2, - "documented": 7, - "": 4, - "": 2, - "documentation": 4, - "ErrMsg": 1, - "User": 1, - "error": 1, - "message": 1, - "handling": 2, - "indirect": 2, - "Errors": 1, - "Error": 1, - "debugging": 1, - "limited": 2, - "Report": 1, - "Module": 1, - "reponsible": 1, - "fetching": 1, - "ZLoop": 1, - "Event": 1, - "loop": 1, - "child": 3, - "processes": 3, - "no": 2, - "not": 2, - "ZSend": 1, - "Connection": 1, - "Options": 2, - "_params": 1, - "INDEX": 1 - }, - "PogoScript": { - "httpism": 1, - "require": 3, - "async": 1, - "resolve": 2, - ".resolve": 1, - "exports.squash": 1, - "(": 38, - "url": 5, - ")": 38, - "html": 15, - "httpism.get": 2, - ".body": 2, - "squash": 2, - "callback": 2, - "replacements": 6, - "sort": 2, - "links": 2, - "in": 11, - ".concat": 1, - "scripts": 2, - "for": 2, - "each": 2, - "@": 6, - "r": 1, - "{": 3, - "r.url": 1, - "r.href": 1, - "}": 3, - "async.map": 1, - "get": 2, - "err": 2, - "requested": 2, - "replace": 2, - "replacements.sort": 1, - "a": 1, - "b": 1, - "a.index": 1, - "-": 1, - "b.index": 1, - "replacement": 2, - "replacement.body": 1, - "replacement.url": 1, - "i": 3, - "parts": 3, - "rep": 1, - "rep.index": 1, - "+": 2, - "rep.length": 1, - "html.substr": 1, - "link": 2, - "reg": 5, - "r/": 2, - "": 1, - "]": 7, - "*href": 1, - "[": 5, - "*": 2, - "/": 2, - "|": 2, - "s*": 2, - "<\\/link\\>": 1, - "/gi": 2, - "elements": 5, - "matching": 3, - "as": 3, - "script": 2, - "": 1, - "*src": 1, - "<\\/script\\>": 1, - "tag": 3, - "while": 1, - "m": 1, - "reg.exec": 1, - "elements.push": 1, - "index": 1, - "m.index": 1, - "length": 1, - "m.0.length": 1, - "href": 1, - "m.1": 1 - }, - "PostScript": { - "%": 23, - "PS": 1, - "-": 4, - "Adobe": 1, - "Creator": 1, - "Aaron": 1, - "Puchert": 1, - "Title": 1, - "The": 1, - "Sierpinski": 1, - "triangle": 1, - "Pages": 1, - "PageOrder": 1, - "Ascend": 1, - "BeginProlog": 1, - "/pageset": 1, - "{": 4, - "scale": 1, - "set": 1, - "cm": 1, - "translate": 1, - "setlinewidth": 1, - "}": 4, - "def": 2, - "/sierpinski": 1, - "dup": 4, - "gt": 1, - "[": 6, - "]": 6, - "concat": 5, - "sub": 3, - "sierpinski": 4, - "newpath": 1, - "moveto": 1, - "lineto": 2, - "closepath": 1, - "fill": 1, - "ifelse": 1, - "pop": 1, - "EndProlog": 1, - "BeginSetup": 1, - "<<": 1, - "/PageSize": 1, - "setpagedevice": 1, - "A4": 1, - "EndSetup": 1, - "Page": 1, - "Test": 1, - "pageset": 1, - "sqrt": 1, - "showpage": 1, - "EOF": 1 - }, - "PowerShell": { - "Write": 2, - "-": 2, - "Host": 2, - "function": 1, - "hello": 1, - "(": 1, - ")": 1, - "{": 1, - "}": 1 - }, - "Processing": { - "void": 2, - "setup": 1, - "(": 17, - ")": 17, - "{": 2, - "size": 1, - ";": 15, - "background": 1, - "noStroke": 1, - "}": 2, - "draw": 1, - "fill": 6, - "triangle": 2, - "rect": 1, - "quad": 1, - "ellipse": 1, - "arc": 1, - "PI": 1, - "TWO_PI": 1 - }, - "Prolog": { - "-": 52, - "lib": 1, - "(": 49, - "ic": 1, - ")": 49, - ".": 25, - "vabs": 2, - "Val": 8, - "AbsVal": 10, - "#": 9, - ";": 1, - "labeling": 2, - "[": 21, - "]": 21, - "vabsIC": 1, - "or": 1, - "faitListe": 3, - "_": 2, - "First": 2, - "|": 12, - "Rest": 6, - "Taille": 2, - "Min": 2, - "Max": 2, - "Min..Max": 1, - "Taille1": 2, - "suite": 3, - "Xi": 5, - "Xi1": 7, - "Xi2": 7, - "checkRelation": 3, - "VabsXi1": 2, - "Xi.": 1, - "checkPeriode": 3, - "ListVar": 2, - "length": 1, - "Length": 2, - "<": 1, - "X1": 2, - "X2": 2, - "X3": 2, - "X4": 2, - "X5": 2, - "X6": 2, - "X7": 2, - "X8": 2, - "X9": 2, - "X10": 3, - "male": 3, - "john": 2, - "peter": 3, - "female": 2, - "vick": 2, - "christie": 3, - "parents": 4, - "brother": 1, - "X": 3, - "Y": 2, - "F": 2, - "M": 2, - "turing": 1, - "Tape0": 2, - "Tape": 2, - "perform": 4, - "q0": 1, - "Ls": 12, - "Rs": 16, - "reverse": 1, - "Ls1": 4, - "append": 1, - "qf": 1, - "Q0": 2, - "Ls0": 6, - "Rs0": 6, - "symbol": 3, - "Sym": 6, - "RsRest": 2, - "once": 1, - "rule": 1, - "Q1": 2, - "NewSym": 2, - "Action": 2, - "action": 4, - "Rs1": 2, - "b": 2, - "left": 4, - "stay": 1, - "right": 1, - "L": 2 - }, - "Propeller Spin": { - "{": 26, - "*****************************************": 4, - "*": 143, - "x4": 4, - "Keypad": 1, - "Reader": 1, - "v1.0": 4, - "Author": 8, - "Beau": 2, - "Schwabe": 2, - "Copyright": 10, - "(": 356, - "c": 33, - ")": 356, - "Parallax": 10, - "See": 10, - "end": 12, - "of": 108, - "file": 9, - "for": 70, - "terms": 9, - "use.": 9, - "}": 26, - "Operation": 2, - "This": 3, - "object": 7, - "uses": 2, - "a": 72, - "capacitive": 1, - "PIN": 1, - "approach": 1, - "to": 191, - "reading": 1, - "the": 136, - "keypad.": 1, - "To": 3, - "do": 26, - "so": 11, - "ALL": 2, - "pins": 26, - "are": 18, - "made": 2, - "LOW": 2, - "and": 95, - "an": 12, - "OUTPUT": 2, - "I/O": 3, - "pins.": 1, - "Then": 1, - "set": 42, - "INPUT": 2, - "state.": 1, - "At": 1, - "this": 26, - "point": 21, - "only": 63, - "one": 4, - "pin": 18, - "is": 51, - "HIGH": 3, - "at": 26, - "time.": 2, - "If": 2, - "closed": 1, - "then": 5, - "will": 12, - "be": 46, - "read": 29, - "on": 12, - "input": 2, - "otherwise": 1, - "returned.": 1, - "The": 17, - "keypad": 4, - "decoding": 1, - "routine": 1, - "requires": 3, - "two": 6, - "subroutines": 1, - "returns": 6, - "entire": 1, - "matrix": 1, - "into": 19, - "single": 2, - "WORD": 1, - "variable": 1, - "indicating": 1, - "which": 16, - "buttons": 2, - "pressed.": 1, - "Multiple": 1, - "button": 2, - "presses": 1, - "allowed": 1, - "with": 8, - "understanding": 1, - "that": 10, - "BOX": 2, - "entries": 1, - "can": 4, - "confused.": 1, - "An": 1, - "example": 3, - "entry...": 1, - "or": 43, - "#": 97, - "etc.": 1, - "where": 2, - "any": 15, - "pressed": 3, - "evaluate": 1, - "non": 3, - "as": 8, - "being": 2, - "even": 1, - "when": 3, - "they": 2, - "not.": 1, - "There": 1, - "no": 7, - "danger": 1, - "physical": 1, - "electrical": 1, - "damage": 1, - "s": 16, - "just": 2, - "way": 1, - "sensing": 1, - "method": 2, - "happens": 1, - "work.": 1, - "Schematic": 1, - "No": 2, - "resistors": 4, - "capacitors.": 1, - "connections": 1, - "directly": 1, - "from": 21, - "Clear": 2, - "value": 51, - "ReadRow": 4, - "Shift": 3, - "left": 12, - "by": 17, - "preset": 1, - "P0": 2, - "P7": 2, - "LOWs": 1, - "dira": 3, - "[": 35, - "]": 34, - "make": 16, - "INPUTSs": 1, - "...": 5, - "now": 3, - "act": 1, - "like": 4, - "tiny": 1, - "capacitors": 1, - "outa": 2, - "n": 4, - "Pin": 1, - "OUTPUT...": 1, - "Make": 1, - ";": 2, - "charge": 10, - "+": 759, - "ina": 3, - "Pn": 1, - "remain": 1, - "discharged": 1, - "DAT": 7, - "TERMS": 9, - "OF": 49, - "USE": 19, - "MIT": 9, - "License": 9, - "Permission": 9, - "hereby": 9, - "granted": 9, - "free": 10, - "person": 9, - "obtaining": 9, - "copy": 21, - "software": 9, - "associated": 11, - "documentation": 9, - "files": 9, - "deal": 9, - "in": 53, - "Software": 28, - "without": 19, - "restriction": 9, - "including": 9, - "limitation": 9, - "rights": 9, - "use": 19, - "modify": 9, - "merge": 9, - "publish": 9, - "distribute": 9, - "sublicense": 9, - "and/or": 9, - "sell": 9, - "copies": 18, - "permit": 9, - "persons": 9, - "whom": 9, - "furnished": 9, - "subject": 9, - "following": 9, - "conditions": 9, - "above": 11, - "copyright": 9, - "notice": 18, - "permission": 9, - "shall": 9, - "included": 9, - "all": 14, - "substantial": 9, - "portions": 9, - "Software.": 9, - "THE": 59, - "SOFTWARE": 19, - "IS": 10, - "PROVIDED": 9, - "WITHOUT": 10, - "WARRANTY": 10, - "ANY": 20, - "KIND": 10, - "EXPRESS": 10, - "OR": 70, - "IMPLIED": 10, - "INCLUDING": 10, - "BUT": 10, - "NOT": 11, - "LIMITED": 10, - "TO": 10, - "WARRANTIES": 10, - "MERCHANTABILITY": 10, - "FITNESS": 10, - "FOR": 20, - "A": 21, - "PARTICULAR": 10, - "PURPOSE": 10, - "AND": 10, - "NONINFRINGEMENT.": 10, - "IN": 40, - "NO": 10, - "EVENT": 10, - "SHALL": 10, - "AUTHORS": 10, - "COPYRIGHT": 10, - "HOLDERS": 10, - "BE": 10, - "LIABLE": 10, - "CLAIM": 10, - "DAMAGES": 10, - "OTHER": 20, - "LIABILITY": 10, - "WHETHER": 10, - "AN": 10, - "ACTION": 10, - "CONTRACT": 10, - "TORT": 10, - "OTHERWISE": 10, - "ARISING": 10, - "FROM": 10, - "OUT": 10, - "CONNECTION": 10, - "WITH": 10, - "DEALINGS": 10, - "SOFTWARE.": 10, - "****************************************": 4, - "Debug_Lcd": 1, - "v1.2": 2, - "Authors": 1, - "Jon": 2, - "Williams": 2, - "Jeff": 2, - "Martin": 2, - "Inc.": 8, - "Debugging": 1, - "wrapper": 1, - "Serial_Lcd": 1, - "-": 486, - "March": 1, - "Updated": 4, - "conform": 1, - "Propeller": 3, - "initialization": 2, - "standards.": 1, - "v1.1": 8, - "April": 1, - "consistency.": 1, - "OBJ": 2, - "lcd": 2, - "number": 27, - "string": 8, - "conversion": 1, - "PUB": 63, - "init": 2, - "baud": 2, - "lines": 24, - "okay": 11, - "Initializes": 1, - "serial": 1, - "LCD": 4, - "true": 6, - "if": 53, - "parameters": 19, - "lcd.init": 1, - "finalize": 1, - "Finalizes": 1, - "frees": 6, - "floats": 1, - "lcd.finalize": 1, - "putc": 1, - "txbyte": 2, - "Send": 1, - "byte": 27, - "terminal": 4, - "lcd.putc": 1, - "str": 3, - "strAddr": 2, - "Print": 15, - "zero": 10, - "terminated": 4, - "lcd.str": 8, - "dec": 3, - "signed": 4, - "decimal": 5, - "num.dec": 1, - "decf": 1, - "width": 9, - "Prints": 2, - "space": 1, - "padded": 2, - "fixed": 1, - "field": 4, - "num.decf": 1, - "decx": 1, - "digits": 23, - "negative": 2, - "num.decx": 1, - "hex": 3, - "hexadecimal": 4, - "num.hex": 1, - "ihex": 1, - "indicated": 2, - "num.ihex": 1, - "bin": 3, - "binary": 4, - "num.bin": 1, - "ibin": 1, - "%": 162, - "num.ibin": 1, - "cls": 1, - "Clears": 2, - "moves": 1, - "cursor": 9, - "home": 4, - "position": 9, - "lcd.cls": 1, - "Moves": 2, - "lcd.home": 1, - "gotoxy": 1, - "col": 9, - "line": 33, - "col/line": 1, - "lcd.gotoxy": 1, - "clrln": 1, - "lcd.clrln": 1, - "type": 4, - "Selects": 1, - "off": 8, - "blink": 4, - "lcd.cursor": 1, - "display": 23, - "status": 15, - "Controls": 1, - "visibility": 1, - "false": 7, - "hide": 1, - "contents": 3, - "clearing": 1, - "lcd.displayOn": 1, - "else": 3, - "lcd.displayOff": 1, - "custom": 2, - "char": 2, - "chrDataAddr": 3, - "Installs": 1, - "character": 6, - "map": 1, - "address": 16, - "definition": 9, - "array": 1, - "lcd.custom": 1, - "backLight": 1, - "Enable": 1, - "disable": 7, - "backlight": 1, - "affects": 1, - "backlit": 1, - "models": 1, - "lcd.backLight": 1, - "***************************************": 12, - "Graphics": 3, - "Driver": 4, - "Chip": 7, - "Gracey": 7, - "Theory": 1, - "cog": 39, - "launched": 1, - "processes": 1, - "commands": 1, - "via": 5, - "routines.": 1, - "Points": 1, - "arcs": 1, - "sprites": 1, - "text": 9, - "polygons": 1, - "rasterized": 1, - "specified": 1, - "stretch": 1, - "memory": 2, - "serves": 1, - "generic": 1, - "bitmap": 15, - "buffer.": 1, - "displayed": 1, - "TV.SRC": 1, - "VGA.SRC": 1, - "driver.": 3, - "GRAPHICS_DEMO.SRC": 1, - "usage": 1, - "example.": 1, - "CON": 4, - "#1": 47, - "_setup": 1, - "_color": 2, - "_width": 2, - "_plot": 2, - "_line": 2, - "_arc": 2, - "_vec": 2, - "_vecarc": 2, - "_pix": 1, - "_pixarc": 1, - "_text": 2, - "_textarc": 1, - "_textmode": 2, - "_fill": 1, - "_loop": 5, - "VAR": 10, - "long": 122, - "command": 7, - "bitmap_base": 7, - "pixel": 40, - "data": 47, - "slices": 3, - "text_xs": 1, - "text_ys": 1, - "text_sp": 1, - "text_just": 1, - "font": 3, - "pointer": 14, - "same": 7, - "instances": 1, - "stop": 9, - "cognew": 4, - "@loop": 1, - "@command": 1, - "Stop": 6, - "graphics": 4, - "driver": 17, - "cogstop": 3, - "setup": 3, - "x_tiles": 9, - "y_tiles": 9, - "x_origin": 2, - "y_origin": 2, - "base_ptr": 3, - "|": 22, - "bases_ptr": 3, - "slices_ptr": 1, - "Set": 5, - "x": 112, - "tiles": 19, - "x16": 7, - "pixels": 14, - "each": 11, - "y": 80, - "relative": 2, - "center": 10, - "base": 6, - "setcommand": 13, - "write": 36, - "bases": 2, - "<<": 70, - "retain": 2, - "high": 7, - "level": 5, - "bitmap_longs": 1, - "clear": 5, - "dest_ptr": 2, - "Copy": 1, - "double": 2, - "buffered": 1, - "flicker": 5, - "destination": 1, - "color": 39, - "bit": 35, - "pattern": 2, - "code": 3, - "bits": 29, - "@colors": 2, - "&": 21, - "determine": 2, - "shape/width": 2, - "w": 8, - "F": 18, - "pixel_width": 1, - "pixel_passes": 2, - "@w": 1, - "update": 7, - "new": 6, - "repeat": 18, - "i": 24, - "p": 8, - "E": 7, - "r": 4, - "<": 14, - "colorwidth": 1, - "plot": 17, - "Plot": 3, - "@x": 6, - "Draw": 7, - "endpoint": 1, - "arc": 21, - "xr": 7, - "yr": 7, - "angle": 23, - "anglestep": 2, - "steps": 9, - "arcmode": 2, - "radii": 3, - "initial": 6, - "FFF": 3, - "..359.956": 3, - "step": 9, - "leaves": 1, - "between": 4, - "points": 2, - "vec": 1, - "vecscale": 5, - "vecangle": 5, - "vecdef_ptr": 5, - "vector": 12, - "sprite": 14, - "scale": 7, - "rotation": 3, - "Vector": 2, - "word": 212, - "length": 4, - "vecarc": 2, - "pix": 3, - "pixrot": 3, - "pixdef_ptr": 3, - "mirror": 1, - "Pixel": 1, - "justify": 4, - "draw": 5, - "textarc": 1, - "string_ptr": 6, - "justx": 2, - "justy": 3, - "it": 8, - "may": 6, - "necessary": 1, - "call": 44, - ".finish": 1, - "immediately": 1, - "afterwards": 1, - "prevent": 1, - "subsequent": 1, - "clobbering": 1, - "drawn": 1, - "@justx": 1, - "@x_scale": 1, - "get": 30, - "half": 2, - "min": 4, - "max": 6, - "pmin": 1, - "round/square": 1, - "corners": 1, - "y2": 7, - "x2": 6, - "fill": 3, - "pmax": 2, - "triangle": 3, - "sides": 1, - "polygon": 1, - "tri": 2, - "x3": 4, - "y3": 5, - "y4": 1, - "x1": 5, - "y1": 7, - "xy": 1, - "solid": 1, - "/": 27, - "finish": 2, - "Wait": 2, - "current": 3, - "insure": 2, - "safe": 1, - "manually": 1, - "manipulate": 1, - "while": 5, - "primitives": 1, - "xa0": 53, - "start": 16, - "ya1": 3, - "ya2": 1, - "ya3": 2, - "ya4": 40, - "ya5": 3, - "ya6": 21, - "ya7": 9, - "ya8": 19, - "ya9": 5, - "yaA": 18, - "yaB": 4, - "yaC": 12, - "yaD": 4, - "yaE": 1, - "yaF": 1, - "xb0": 19, - "yb1": 2, - "yb2": 1, - "yb3": 4, - "yb4": 15, - "yb5": 2, - "yb6": 7, - "yb7": 3, - "yb8": 20, - "yb9": 5, - "ybA": 8, - "ybB": 1, - "ybC": 32, - "ybD": 1, - "ybE": 1, - "ybF": 1, - "ax1": 11, - "radius": 2, - "ay2": 23, - "ay3": 6, - "ay4": 4, - "a0": 8, - "a2": 1, - "farc": 41, - "another": 7, - "arc/line": 1, - "Round": 1, - "recipes": 1, - "C": 11, - "D": 18, - "fline": 88, - "xa2": 48, - "xb2": 26, - "xa1": 8, - "xb1": 2, - "more": 90, - "xa3": 8, - "xb3": 6, - "xb4": 35, - "a9": 3, - "ax2": 30, - "ay1": 10, - "a7": 2, - "aE": 1, - "aC": 2, - ".": 2, - "aF": 4, - "aD": 3, - "aB": 2, - "xa4": 13, - "a8": 8, - "@": 1, - "a4": 3, - "B": 15, - "H": 1, - "J": 1, - "L": 5, - "N": 1, - "P": 6, - "R": 3, - "T": 5, - "aA": 5, - "V": 7, - "X": 4, - "Z": 1, - "b": 1, - "d": 2, - "f": 2, - "h": 2, - "j": 2, - "l": 2, - "t": 10, - "v": 1, - "z": 4, - "delta": 10, - "bullet": 1, - "fx": 1, - "*************************************": 2, - "org": 2, - "loop": 14, - "rdlong": 16, - "t1": 139, - "par": 20, - "wz": 21, - "arguments": 1, - "mov": 154, - "t2": 90, - "t3": 10, - "#8": 14, - "arg": 3, - "arg0": 12, - "add": 92, - "d0": 11, - "#4": 8, - "djnz": 24, - "wrlong": 6, - "dx": 20, - "dy": 15, - "arg1": 3, - "ror": 4, - "#16": 6, - "jump": 1, - "jumps": 6, - "color_": 1, - "plot_": 2, - "arc_": 2, - "vecarc_": 1, - "pixarc_": 1, - "textarc_": 2, - "fill_": 1, - "setup_": 1, - "xlongs": 4, - "xorigin": 2, - "yorigin": 4, - "arg3": 12, - "basesptr": 4, - "arg5": 6, - "jmp": 24, - "#loop": 9, - "width_": 1, - "pwidth": 3, - "passes": 3, - "#plotd": 3, - "line_": 1, - "#linepd": 2, - "arg7": 6, - "#3": 7, - "cmp": 16, - "exit": 5, - "px": 14, - "py": 11, - "mode": 7, - "if_z": 11, - "#plotp": 3, - "test": 38, - "arg4": 5, - "iterations": 1, - "vecdef": 1, - "rdword": 10, - "t7": 8, - "add/sub": 1, - "to/from": 1, - "t6": 7, - "sumc": 4, - "#multiply": 2, - "round": 1, - "up": 4, - "/2": 1, - "lsb": 1, - "shr": 24, - "t4": 7, - "if_nc": 15, - "h8000": 5, - "wc": 57, - "if_c": 37, - "xwords": 1, - "ywords": 1, - "xxxxxxxx": 2, - "save": 1, - "actual": 4, - "sy": 5, - "rdbyte": 3, - "origin": 1, - "adjust": 4, - "neg": 2, - "sub": 12, - "arg2": 7, - "sumnc": 7, - "if_nz": 18, - "yline": 1, - "sx": 4, - "#0": 20, - "next": 16, - "#2": 15, - "shl": 21, - "t5": 4, - "xpixel": 2, - "rol": 1, - "muxc": 5, - "pcolor": 5, - "color1": 2, - "color2": 2, - "@string": 1, - "#arcmod": 1, - "text_": 1, - "chr": 4, - "done": 3, - "scan": 7, - "tjz": 8, - "def": 2, - "extract": 4, - "_0001_1": 1, - "#fontb": 3, - "textsy": 2, - "starting": 1, - "_0011_0": 1, - "#11": 1, - "#arcd": 1, - "#fontxy": 1, - "advance": 2, - "textsx": 3, - "_0111_0": 1, - "setd_ret": 1, - "fontxy_ret": 1, - "ret": 17, - "fontb": 1, - "multiply": 8, - "fontb_ret": 1, - "textmode_": 1, - "textsp": 2, - "da": 1, - "db": 1, - "db2": 1, - "linechange": 1, - "lines_minus_1": 1, - "right": 9, - "fractions": 1, - "pre": 1, - "increment": 1, - "counter": 1, - "yloop": 2, - "integers": 1, - "base0": 17, - "base1": 10, - "sar": 8, - "cmps": 3, - "out": 24, - "range": 2, - "ylongs": 6, - "skip": 5, - "mins": 1, - "mask": 3, - "mask0": 8, - "#5": 2, - "ready": 10, - "count": 4, - "mask1": 6, - "bits0": 6, - "bits1": 5, - "pass": 5, - "not": 6, - "full": 3, - "longs": 15, - "deltas": 1, - "linepd": 1, - "wr": 2, - "direction": 2, - "abs": 1, - "dominant": 2, - "axis": 1, - "last": 6, - "ratio": 1, - "xloop": 1, - "linepd_ret": 1, - "plotd": 1, - "wide": 3, - "bounds": 2, - "#plotp_ret": 2, - "#7": 2, - "store": 1, - "writes": 1, - "pair": 1, - "account": 1, - "special": 1, - "case": 5, - "andn": 7, - "slice": 7, - "shift0": 1, - "colorize": 1, - "upper": 2, - "subx": 1, - "#wslice": 1, - "offset": 14, - "Get": 2, - "args": 5, - "move": 2, - "using": 1, - "first": 9, - "arg6": 1, - "arcmod_ret": 1, - "arg2/t4": 1, - "arg4/t6": 1, - "arcd": 1, - "#setd": 1, - "#polarx": 1, - "Polar": 1, - "cartesian": 1, - "polarx": 1, - "sine_90": 2, - "sine": 7, - "quadrant": 3, - "nz": 3, - "negate": 2, - "table": 9, - "sine_table": 1, - "shift": 7, - "final": 3, - "sine/cosine": 1, - "integer": 2, - "negnz": 3, - "sine_180": 1, - "shifted": 1, - "multiplier": 3, - "product": 1, - "Defined": 1, - "constants": 2, - "hFFFFFFFF": 1, - "FFFFFFFF": 1, - "fontptr": 1, - "Undefined": 2, - "temps": 1, - "res": 89, - "pointers": 2, - "slicesptr": 1, - "line/plot": 1, - "coordinates": 1, - "Inductive": 1, - "Sensor": 1, - "Demo": 1, - "Test": 2, - "Circuit": 1, - "pF": 1, - "K": 4, - "M": 1, - "FPin": 2, - "SDF": 1, - "sigma": 3, - "feedback": 2, - "SDI": 1, - "GND": 4, - "Coils": 1, - "Wire": 1, - "used": 9, - "was": 2, - "GREEN": 2, - "about": 4, - "gauge": 1, - "Coke": 3, - "Can": 3, - "form": 7, - "MHz": 16, - "BIC": 1, - "pen": 1, - "How": 1, - "does": 2, - "work": 2, - "Note": 1, - "reported": 2, - "resonate": 5, - "frequency": 18, - "LC": 8, - "frequency.": 2, - "Instead": 1, - "voltage": 5, - "produced": 1, - "circuit": 5, - "clipped.": 1, - "In": 2, - "below": 4, - "When": 1, - "you": 5, - "apply": 1, - "small": 1, - "specific": 1, - "near": 1, - "uncommon": 1, - "measure": 1, - "times": 3, - "amount": 1, - "applying": 1, - "circuit.": 1, - "through": 1, - "diode": 2, - "basically": 1, - "feeds": 1, - "divide": 3, - "divider": 1, - "...So": 1, - "order": 1, - "see": 2, - "ADC": 2, - "sweep": 2, - "result": 6, - "output": 11, - "needs": 1, - "generate": 1, - "Volts": 1, - "ground.": 1, - "drop": 1, - "across": 1, - "since": 1, - "sensitive": 1, - "works": 1, - "after": 2, - "divider.": 1, - "typical": 1, - "magnitude": 1, - "applied": 2, - "might": 1, - "look": 2, - "something": 1, - "*****": 4, - "...With": 1, - "looks": 1, - "X****": 1, - "...The": 1, - "denotes": 1, - "location": 1, - "reason": 1, - "slightly": 1, - "reasons": 1, - "really.": 1, - "lazy": 1, - "I": 1, - "didn": 1, - "acts": 1, - "dead": 1, - "short.": 1, - "situation": 1, - "exactly": 1, - "great": 1, - "gr.start": 2, - "gr.setup": 2, - "FindResonateFrequency": 1, - "DisplayInductorValue": 2, - "Freq.Synth": 1, - "FValue": 1, - "ADC.SigmaDelta": 1, - "@FTemp": 1, - "gr.clear": 1, - "gr.copy": 2, - "display_base": 2, - "Option": 2, - "Start": 6, - "*********************************************": 2, - "Frequency": 1, - "LowerFrequency": 2, - "*100/": 1, - "UpperFrequency": 1, - "gr.colorwidth": 4, - "gr.plot": 3, - "gr.line": 3, - "FTemp/1024": 1, - "Finish": 1, - "PS/2": 1, - "Keyboard": 1, - "v1.0.1": 2, - "REVISION": 2, - "HISTORY": 2, - "/15/2006": 2, - "Tool": 1, - "par_tail": 1, - "key": 4, - "buffer": 4, - "head": 1, - "par_present": 1, - "states": 1, - "par_keys": 1, - "******************************************": 2, - "entry": 1, - "movd": 10, - "#_dpin": 1, - "masks": 1, - "dmask": 4, - "_dpin": 3, - "cmask": 2, - "_cpin": 2, - "reset": 14, - "parameter": 14, - "_head": 6, - "_present/_states": 1, - "dlsb": 2, - "stat": 6, - "Update": 1, - "_head/_present/_states": 1, - "#1*4": 1, - "scancode": 2, - "state": 2, - "#receive": 1, - "AA": 1, - "extended": 1, - "if_nc_and_z": 2, - "F0": 3, - "unknown": 2, - "ignore": 2, - "#newcode": 1, - "_states": 2, - "set/clear": 1, - "#_states": 1, - "reg": 5, - "muxnc": 5, - "cmpsub": 4, - "shift/ctrl/alt/win": 1, - "pairs": 1, - "E0": 1, - "handle": 1, - "scrlock/capslock/numlock": 1, - "_000": 5, - "_locks": 5, - "#29": 1, - "change": 3, - "configure": 3, - "flag": 5, - "leds": 3, - "check": 5, - "shift1": 1, - "if_nz_and_c": 4, - "#@shift1": 1, - "@table": 1, - "#look": 1, - "alpha": 1, - "considering": 1, - "capslock": 1, - "if_nz_and_nc": 1, - "xor": 8, - "flags": 1, - "alt": 1, - "room": 1, - "valid": 2, - "enter": 1, - "FF": 3, - "#11*4": 1, - "wrword": 1, - "F3": 1, - "keyboard": 3, - "lock": 1, - "#transmit": 2, - "rev": 1, - "rcl": 2, - "_present": 2, - "#update": 1, - "Lookup": 2, - "perform": 2, - "lookup": 1, - "movs": 9, - "#table": 1, - "#27": 1, - "#rand": 1, - "Transmit": 1, - "pull": 2, - "clock": 4, - "low": 5, - "napshr": 3, - "#13": 3, - "#18": 2, - "release": 1, - "transmit_bit": 1, - "#wait_c0": 2, - "_d2": 1, - "wcond": 3, - "c1": 2, - "c0d0": 2, - "wait": 6, - "until": 3, - "#wait": 2, - "#receive_ack": 1, - "ack": 1, - "error": 1, - "#reset": 2, - "transmit_ret": 1, - "receive": 1, - "receive_bit": 1, - "pause": 1, - "us": 1, - "#nap": 1, - "_d3": 1, - "#receive_bit": 1, - "align": 1, - "isolate": 1, - "look_ret": 1, - "receive_ack_ret": 1, - "receive_ret": 1, - "wait_c0": 1, - "c0": 1, - "timeout": 1, - "ms": 4, - "wloop": 1, - "required": 4, - "_d4": 1, - "replaced": 1, - "c0/c1/c0d0/c1d1": 1, - "if_never": 1, - "replacements": 1, - "#wloop": 3, - "if_c_or_nz": 1, - "c1d1": 1, - "if_nc_or_z": 1, - "nap": 5, - "scales": 1, - "time": 7, - "snag": 1, - "cnt": 2, - "elapses": 1, - "nap_ret": 1, - "F9": 1, - "F5": 1, - "D2": 1, - "F1": 2, - "D1": 1, - "F12": 1, - "F10": 1, - "D7": 1, - "F6": 1, - "D3": 1, - "Tab": 2, - "Alt": 2, - "F3F2": 1, - "q": 1, - "Win": 2, - "Space": 2, - "Apps": 1, - "Power": 1, - "Sleep": 1, - "EF2F": 1, - "CapsLock": 1, - "Enter": 3, - "WakeUp": 1, - "BackSpace": 1, - "C5E1": 1, - "C0E4": 1, - "Home": 1, - "Insert": 1, - "C9EA": 1, - "Down": 1, - "E5": 1, - "Right": 1, - "C2E8": 1, - "Esc": 1, - "DF": 2, - "F11": 1, - "EC": 1, - "PageDn": 1, - "ED": 1, - "PrScr": 1, - "C6E9": 1, - "ScrLock": 1, - "D6": 1, - "Uninitialized": 3, - "_________": 5, - "Key": 1, - "Codes": 1, - "keypress": 1, - "keystate": 2, - "E0..FF": 1, - "AS": 1, - "TV": 9, - "May": 2, - "tile": 41, - "size": 5, - "enable": 5, - "efficient": 2, - "tv_mode": 2, - "NTSC": 11, - "lntsc": 3, - "cycles": 4, - "per": 4, - "sync": 10, - "fpal": 2, - "_433_618": 2, - "PAL": 10, - "spal": 3, - "colortable": 7, - "inside": 2, - "tvptr": 3, - "starts": 4, - "available": 4, - "@entry": 3, - "Assembly": 2, - "language": 2, - "Entry": 2, - "tasks": 6, - "#10": 2, - "Superfield": 2, - "_mode": 7, - "interlace": 20, - "vinv": 2, - "hsync": 5, - "waitvid": 3, - "burst": 2, - "sync_high2": 2, - "task": 2, - "section": 4, - "undisturbed": 2, - "black": 2, - "visible": 7, - "vb": 2, - "leftmost": 1, - "_vt": 3, - "vertical": 29, - "expand": 3, - "vert": 1, - "vscl": 12, - "hb": 2, - "horizontal": 21, - "hx": 5, - "colors": 18, - "screen": 13, - "video": 7, - "repoint": 2, - "hf": 2, - "linerot": 5, - "field1": 4, - "unless": 2, - "invisible": 8, - "if_z_eq_c": 1, - "#hsync": 1, - "vsync": 4, - "pulses": 2, - "vsync1": 2, - "#sync_low1": 1, - "hhalf": 2, - "field2": 1, - "#superfield": 1, - "Blank": 1, - "Horizontal": 1, - "pal": 2, - "toggle": 1, - "phaseflip": 4, - "phasemask": 2, - "sync_scale1": 1, - "blank": 2, - "hsync_ret": 1, - "vsync_high": 1, - "#sync_high1": 1, - "Tasks": 1, - "performed": 1, - "sections": 1, - "during": 2, - "back": 8, - "porch": 9, - "load": 3, - "#_enable": 1, - "_pins": 4, - "_enable": 2, - "#disabled": 2, - "break": 6, - "return": 15, - "later": 6, - "rd": 1, - "#wtab": 1, - "ltab": 1, - "#ltab": 1, - "CLKFREQ": 10, - "cancel": 1, - "_broadcast": 4, - "m8": 3, - "jmpret": 5, - "taskptr": 3, - "taskret": 4, - "ctra": 5, - "pll": 5, - "fcolor": 4, - "#divide": 2, - "vco": 3, - "movi": 3, - "_111": 1, - "ctrb": 4, - "limit": 4, - "m128": 2, - "_100": 1, - "within": 5, - "_001": 1, - "frqb": 2, - "swap": 2, - "broadcast/baseband": 1, - "strip": 3, - "chroma": 19, - "baseband": 18, - "_auralcog": 1, - "_hx": 4, - "consider": 2, - "lineadd": 4, - "lineinc": 3, - "/160": 2, - "loaded": 3, - "#9": 2, - "FC": 2, - "_colors": 2, - "colorreg": 3, - "d6": 3, - "colorloop": 1, - "keep": 2, - "loading": 2, - "m1": 4, - "multiply_ret": 2, - "Disabled": 2, - "try": 2, - "again": 2, - "reload": 1, - "_000_000": 6, - "d0s1": 1, - "F0F0F0F0": 1, - "pins0": 1, - "_01110000_00001111_00000111": 1, - "pins1": 1, - "_11110111_01111111_01110111": 1, - "sync_high1": 1, - "_101010_0101": 1, - "NTSC/PAL": 2, - "metrics": 1, - "tables": 1, - "wtab": 1, - "sntsc": 3, - "lpal": 3, - "hrest": 2, - "vvis": 2, - "vrep": 2, - "_8A": 1, - "_AA": 1, - "sync_scale2": 1, - "_00000000_01_10101010101010_0101": 1, - "m2": 1, - "Parameter": 4, - "/non": 4, - "tccip": 3, - "_screen": 3, - "@long": 2, - "_ht": 2, - "_ho": 2, - "fit": 2, - "contiguous": 1, - "tv_status": 4, - "off/on": 3, - "tv_pins": 5, - "ntsc/pal": 3, - "tv_screen": 5, - "tv_ht": 5, - "tv_hx": 5, - "expansion": 8, - "tv_ho": 5, - "tv_broadcast": 4, - "aural": 13, - "fm": 6, - "preceding": 2, - "copied": 2, - "your": 2, - "code.": 2, - "After": 2, - "setting": 2, - "variables": 3, - "@tv_status": 3, - "All": 2, - "reloaded": 2, - "superframe": 2, - "allowing": 2, - "live": 2, - "changes.": 2, - "minimize": 2, - "correlate": 2, - "changes": 3, - "tv_status.": 1, - "Experimentation": 2, - "optimize": 2, - "some": 3, - "parameters.": 2, - "descriptions": 2, - "sets": 3, - "indicate": 2, - "disabled": 3, - "tv_enable": 2, - "requirement": 2, - "currently": 4, - "outputting": 4, - "driven": 2, - "reduces": 2, - "power": 3, - "_______": 2, - "select": 9, - "group": 7, - "_0111": 6, - "broadcast": 19, - "_1111": 6, - "_0000": 4, - "active": 3, - "top": 10, - "nibble": 4, - "bottom": 5, - "signal": 8, - "arranged": 3, - "attach": 1, - "ohm": 10, - "resistor": 4, - "sum": 7, - "/560/1100": 2, - "subcarrier": 3, - "network": 1, - "visual": 1, - "carrier": 1, - "selects": 4, - "x32": 6, - "tileheight": 4, - "controls": 4, - "mixing": 2, - "mix": 2, - "black/white": 2, - "composite": 1, - "progressive": 2, - "less": 5, - "good": 5, - "motion": 2, - "interlaced": 5, - "doubles": 1, - "format": 1, - "ticks": 11, - "must": 18, - "least": 14, - "_318_180": 1, - "_579_545": 1, - "Hz": 5, - "_734_472": 1, - "itself": 1, - "words": 5, - "define": 10, - "tv_vt": 3, - "has": 4, - "bitfields": 2, - "colorset": 2, - "ptr": 5, - "pixelgroup": 2, - "colorset*": 2, - "pixelgroup**": 2, - "ppppppppppcccc00": 2, - "colorsets": 4, - "four": 8, - "**": 2, - "pixelgroups": 2, - "": 5, - "tv_colors": 2, - "fields": 2, - "values": 2, - "luminance": 2, - "modulation": 4, - "adds/subtracts": 1, - "beware": 1, - "modulated": 1, - "produce": 1, - "saturated": 1, - "toggling": 1, - "levels": 1, - "because": 1, - "abruptly": 1, - "rather": 1, - "against": 1, - "white": 2, - "background": 1, - "best": 1, - "appearance": 1, - "_____": 6, - "practical": 2, - "/30": 1, - "factor": 4, - "sure": 4, - "||": 5, - "than": 5, - "tv_vx": 2, - "tv_vo": 2, - "pos/neg": 4, - "centered": 2, - "image": 2, - "shifts": 4, - "right/left": 2, - "up/down": 2, - "____________": 1, - "expressed": 1, - "ie": 1, - "channel": 1, - "_250_000": 2, - "modulator": 2, - "turned": 2, - "saves": 2, - "broadcasting": 1, - "___________": 1, - "tv_auralcog": 1, - "supply": 1, - "selected": 1, - "bandwidth": 2, - "KHz": 3, - "vary": 1, - "Terminal": 1, - "instead": 1, - "minimum": 2, - "x_scale": 4, - "x_spacing": 4, - "normal": 1, - "x_chr": 2, - "y_chr": 5, - "y_scale": 3, - "y_spacing": 3, - "y_offset": 2, - "x_limit": 2, - "x_screen": 1, - "y_limit": 3, - "y_screen": 4, - "y_max": 3, - "y_screen_bytes": 2, - "y_scroll": 2, - "y_scroll_longs": 4, - "y_clear": 2, - "y_clear_longs": 2, - "paramcount": 1, - "ccinp": 1, - "tv_hc": 1, - "cells": 1, - "cell": 1, - "@bitmap": 1, - "FC0": 1, - "gr.textmode": 1, - "gr.width": 1, - "tv.stop": 2, - "gr.stop": 1, - "schemes": 1, - "tab": 3, - "gr.color": 1, - "gr.text": 1, - "@c": 1, - "gr.finish": 2, - "newline": 3, - "strsize": 2, - "_000_000_000": 2, - "//": 4, - "elseif": 2, - "lookupz": 2, - "..": 4, - "PRI": 1, - "longmove": 2, - "longfill": 2, - "tvparams": 1, - "tvparams_pins": 1, - "_0101": 1, - "vc": 1, - "vx": 2, - "vo": 1, - "auralcog": 1, - "color_schemes": 1, - "BC_6C_05_02": 1, - "E_0D_0C_0A": 1, - "E_6D_6C_6A": 1, - "BE_BD_BC_BA": 1, - "Text": 1, - "x13": 2, - "cols": 5, - "rows": 4, - "screensize": 4, - "lastrow": 2, - "tv_count": 2, - "row": 4, - "tv": 2, - "basepin": 3, - "setcolors": 2, - "@palette": 1, - "@tv_params": 1, - "@screen": 3, - "tv.start": 1, - "stringptr": 3, - "k": 1, - "Output": 1, - "backspace": 1, - "spaces": 1, - "follows": 4, - "Y": 2, - "others": 1, - "printable": 1, - "characters": 1, - "wordfill": 2, - "print": 2, - "A..": 1, - "other": 1, - "colorptr": 2, - "fore": 3, - "Override": 1, - "default": 1, - "palette": 2, - "list": 1, - "scroll": 1, - "hc": 1, - "ho": 1, - "dark": 2, - "blue": 3, - "BB": 1, - "yellow": 1, - "brown": 1, - "cyan": 3, - "red": 2, - "pink": 1, - "VGA": 8, - "vga_mode": 3, - "vgaptr": 3, - "hv": 5, - "bcolor": 3, - "#colortable": 2, - "#blank_line": 3, - "nobl": 1, - "_vx": 1, - "nobp": 1, - "nofp": 1, - "#blank_hsync": 1, - "front": 4, - "vf": 1, - "nofl": 1, - "#tasks": 1, - "before": 1, - "_vs": 2, - "except": 1, - "#blank_vsync": 1, - "#field": 1, - "superfield": 1, - "blank_vsync": 1, - "h2": 2, - "if_c_and_nz": 1, - "blank_hsync": 1, - "_hf": 1, - "invisble": 1, - "_hb": 1, - "#hv": 1, - "blank_hsync_ret": 1, - "blank_line_ret": 1, - "blank_vsync_ret": 1, - "_status": 1, - "#paramcount": 1, - "directions": 1, - "_rate": 3, - "pllmin": 1, - "_011": 1, - "rate": 6, - "hvbase": 5, - "frqa": 3, - "vmask": 1, - "hmask": 1, - "vcfg": 2, - "colormask": 1, - "waitcnt": 3, - "#entry": 1, - "Initialized": 1, - "lowest": 1, - "pllmax": 1, - "*16": 1, - "m4": 1, - "tihv": 1, - "_hd": 1, - "_hs": 1, - "_vd": 1, - "underneath": 1, - "BF": 1, - "___": 1, - "/1/2": 1, - "off/visible/invisible": 1, - "vga_enable": 3, - "pppttt": 1, - "vga_colors": 2, - "vga_vt": 6, - "vga_vx": 4, - "vga_vo": 4, - "vga_hf": 2, - "vga_hb": 2, - "vga_vf": 2, - "vga_vb": 2, - "tick": 2, - "@vga_status": 1, - "vga_status.": 1, - "__________": 4, - "vga_status": 1, - "________": 3, - "vga_pins": 1, - "monitors": 1, - "allows": 1, - "polarity": 1, - "respectively": 1, - "vga_screen": 1, - "vga_ht": 3, - "care": 1, - "suggested": 1, - "bits/pins": 3, - "green": 1, - "bit/pin": 1, - "signals": 1, - "connect": 3, - "RED": 1, - "BLUE": 1, - "connector": 3, - "always": 2, - "HSYNC": 1, - "VSYNC": 1, - "______": 14, - "vga_hx": 3, - "vga_ho": 2, - "equal": 1, - "vga_hd": 2, - "exceed": 1, - "vga_vd": 2, - "recommended": 2, - "vga_hs": 1, - "vga_vs": 1, - "vga_rate": 2, - "should": 1, - "Vocal": 2, - "Tract": 2, - "October": 1, - "synthesizes": 1, - "human": 1, - "vocal": 10, - "tract": 12, - "real": 2, - "It": 1, - "MHz.": 1, - "controlled": 1, - "reside": 1, - "parent": 1, - "aa": 2, - "ga": 5, - "gp": 2, - "vp": 3, - "vr": 1, - "f1": 4, - "f2": 1, - "f3": 3, - "f4": 2, - "na": 2, - "nf": 2, - "fa": 2, - "ff": 2, - "values.": 2, - "Before": 1, - "were": 1, - "interpolation": 1, - "shy": 1, - "frame": 12, - "makes": 1, - "behave": 1, - "sensibly": 1, - "gaps.": 1, - "frame_buffers": 2, - "bytes": 2, - "frame_longs": 3, - "frame_bytes": 1, - "...must": 1, - "dira_": 3, - "dirb_": 1, - "ctra_": 1, - "ctrb_": 3, - "frqa_": 3, - "cnt_": 1, - "many": 1, - "...contiguous": 1, - "tract_ptr": 3, - "pos_pin": 7, - "neg_pin": 6, - "fm_offset": 5, - "positive": 1, - "also": 1, - "enabled": 2, - "generation": 2, - "_500_000": 1, - "Remember": 1, - "duty": 2, - "Ready": 1, - "clkfreq": 2, - "Launch": 1, - "@attenuation": 1, - "Reset": 1, - "buffers": 1, - "@index": 1, - "constant": 3, - "frame_buffer_longs": 2, - "set_attenuation": 1, - "master": 2, - "attenuation": 3, - "initially": 2, - "set_pace": 2, - "percentage": 3, - "pace": 3, - "go": 1, - "Queue": 1, - "transition": 1, - "over": 2, - "Load": 1, - "bytemove": 1, - "@frames": 1, - "index": 5, - "Increment": 1, - "Returns": 4, - "queue": 2, - "useful": 2, - "checking": 1, - "would": 1, - "have": 1, - "frames": 2, - "empty": 2, - "detecting": 1, - "finished": 1, - "sample_ptr": 1, - "receives": 1, - "audio": 1, - "samples": 1, - "updated": 1, - "@sample": 1, - "aural_id": 1, - "id": 2, - "executing": 1, - "algorithm": 1, - "connecting": 1, - "Initialization": 1, - "reserved": 3, - "clear_cnt": 1, - "#2*15": 1, - "hub": 1, - "minst": 3, - "d0s0": 3, - "mult_ret": 1, - "antilog_ret": 1, - "assemble": 1, - "cordic": 4, - "reserves": 2, - "cstep": 1, - "instruction": 2, - "prepare": 1, - "cnt_value": 3, - "cnt_ticks": 3, - "Loop": 1, - "sample": 2, - "period": 1, - "cycle": 1, - "driving": 1, - "h80000000": 2, - "White": 1, - "noise": 3, - "source": 2, - "lfsr": 1, - "lfsr_taps": 2, - "Aspiration": 1, - "vibrato": 3, - "vphase": 2, - "glottal": 2, - "pitch": 5, - "mesh": 1, - "tune": 2, - "convert": 1, - "log": 2, - "phase": 2, - "gphase": 3, - "formant2": 2, - "rotate": 2, - "f2x": 3, - "f2y": 3, - "#cordic": 2, - "formant4": 2, - "f4x": 3, - "f4y": 3, - "subtract": 1, - "nx": 4, - "negated": 1, - "nasal": 2, - "amplitude": 3, - "#mult": 1, - "fphase": 4, - "frication": 2, - "#sine": 1, - "Handle": 1, - "frame_ptr": 6, - "past": 1, - "miscellaneous": 2, - "frame_index": 3, - "stepsize": 2, - "step_size": 5, - "h00FFFFFF": 2, - "final1": 2, - "finali": 2, - "iterate": 3, - "aa..ff": 4, - "accurate": 1, - "accumulation": 1, - "step_acc": 3, - "set2": 3, - "#par_curr": 1, - "set3": 2, - "#par_next": 1, - "set4": 3, - "#par_step": 1, - "#24": 1, - "par_curr": 3, - "absolute": 1, - "msb": 2, - "nr": 1, - "mult": 2, - "par_step": 1, - "frame_cnt": 2, - "step1": 2, - "stepi": 1, - "stepframe": 1, - "#frame_bytes": 1, - "par_next": 2, - "Math": 1, - "Subroutines": 1, - "Antilog": 1, - "whole": 2, - "fraction": 1, - "antilog": 2, - "FFEA0000": 1, - "h00000FFE": 2, - "insert": 2, - "leading": 1, - "Scaled": 1, - "unsigned": 3, - "h00001000": 2, - "negc": 1, - "Multiply": 1, - "#15": 1, - "mult_step": 1, - "Cordic": 1, - "degree": 1, - "#cordic_steps": 1, - "gets": 1, - "assembled": 1, - "cordic_dx": 1, - "incremented": 1, - "cordic_a": 1, - "cordic_delta": 2, - "linear": 1, - "register": 1, - "B901476": 1, - "greater": 1, - "h40000000": 1, - "h01000000": 1, - "FFFFFF": 1, - "h00010000": 1, - "h0000D000": 1, - "D000": 1, - "h00007000": 1, - "FFE": 1, - "h00000800": 1, - "registers": 2, - "startup": 2, - "Data": 1, - "zeroed": 1, - "cleared": 1, - "f1x": 1, - "f1y": 1, - "f3x": 1, - "f3y": 1, - "aspiration": 1, - "***": 1, - "mult_steps": 1, - "assembly": 1, - "area": 1, - "w/ret": 1, - "cordic_ret": 1 - }, - "Protocol Buffer": { - "package": 1, - "tutorial": 1, - ";": 13, - "option": 2, - "java_package": 1, - "java_outer_classname": 1, - "message": 3, - "Person": 2, - "{": 4, - "required": 3, - "string": 3, - "name": 1, - "int32": 1, - "id": 1, - "optional": 2, - "email": 1, - "enum": 1, - "PhoneType": 2, - "MOBILE": 1, - "HOME": 2, - "WORK": 1, - "}": 4, - "PhoneNumber": 2, - "number": 1, - "type": 1, - "[": 1, - "default": 1, - "]": 1, - "repeated": 2, - "phone": 1, - "AddressBook": 1, - "person": 1 - }, - "PureScript": { - "module": 4, - "Control.Arrow": 1, - "where": 20, - "import": 32, - "Data.Tuple": 3, - "class": 4, - "Arrow": 5, - "a": 46, - "arr": 10, - "forall": 26, - "b": 49, - "c.": 3, - "(": 111, - "-": 88, - "c": 17, - ")": 115, - "first": 4, - "d.": 2, - "Tuple": 21, - "d": 6, - "instance": 12, - "arrowFunction": 1, - "f": 28, - "second": 3, - "Category": 3, - "swap": 4, - "b.": 1, - "x": 26, - "y": 2, - "infixr": 3, - "***": 2, - "&&": 3, - "&": 3, - ".": 2, - "g": 4, - "ArrowZero": 1, - "zeroArrow": 1, - "<+>": 2, - "ArrowPlus": 1, - "Data.Foreign": 2, - "Foreign": 12, - "..": 1, - "ForeignParser": 29, - "parseForeign": 6, - "parseJSON": 3, - "ReadForeign": 11, - "read": 10, - "prop": 3, - "Prelude": 3, - "Data.Array": 3, - "Data.Either": 1, - "Data.Maybe": 3, - "Data.Traversable": 2, - "foreign": 6, - "data": 3, - "*": 1, - "fromString": 2, - "String": 13, - "Either": 6, - "readPrimType": 5, - "a.": 6, - "readMaybeImpl": 2, - "Maybe": 5, - "readPropImpl": 2, - "showForeignImpl": 2, - "showForeign": 1, - "Prelude.Show": 1, - "show": 5, - "p": 11, - "json": 2, - "monadForeignParser": 1, - "Prelude.Monad": 1, - "return": 6, - "_": 7, - "Right": 9, - "case": 9, - "of": 9, - "Left": 8, - "err": 8, - "applicativeForeignParser": 1, - "Prelude.Applicative": 1, - "pure": 1, - "<*>": 2, - "<$>": 8, - "functorForeignParser": 1, - "Prelude.Functor": 1, - "readString": 1, - "readNumber": 1, - "Number": 1, - "readBoolean": 1, - "Boolean": 1, - "readArray": 1, - "[": 5, - "]": 5, - "let": 4, - "arrayItem": 2, - "i": 2, - "result": 4, - "+": 30, - "in": 2, - "xs": 3, - "traverse": 2, - "zip": 1, - "range": 1, - "length": 3, - "readMaybe": 1, - "<<": 4, - "<": 13, - "Just": 7, - "Nothing": 7, - "Data.Map": 1, - "Map": 26, - "empty": 6, - "singleton": 5, - "insert": 10, - "lookup": 8, - "delete": 9, - "alter": 8, - "toList": 10, - "fromList": 3, - "union": 3, - "map": 8, - "qualified": 1, - "as": 1, - "P": 1, - "concat": 3, - "Data.Foldable": 2, - "foldl": 4, - "k": 108, - "v": 57, - "Leaf": 15, - "|": 9, - "Branch": 27, - "{": 25, - "key": 13, - "value": 8, - "left": 15, - "right": 14, - "}": 26, - "eqMap": 1, - "P.Eq": 11, - "m1": 6, - "m2": 6, - "P.": 11, - "/": 1, - "P.not": 1, - "showMap": 1, - "P.Show": 3, - "m": 6, - "P.show": 1, - "v.": 11, - "P.Ord": 9, - "b@": 6, - "k1": 16, - "b.left": 9, - "b.right": 8, - "findMinKey": 5, - "glue": 4, - "minKey": 3, - "root": 2, - "b.key": 1, - "b.value": 2, - "v1": 3, - "v2.": 1, - "v2": 2, - "ReactiveJQueryTest": 1, - "flip": 2, - "Control.Monad": 1, - "Control.Monad.Eff": 1, - "Control.Monad.JQuery": 1, - "Control.Reactive": 1, - "Control.Reactive.JQuery": 1, - "head": 2, - "Data.Monoid": 1, - "Debug.Trace": 1, - "Global": 1, - "parseInt": 1, - "main": 1, - "do": 4, - "personDemo": 2, - "todoListDemo": 1, - "greet": 1, - "firstName": 2, - "lastName": 2, - "Create": 3, - "new": 1, - "reactive": 1, - "variables": 1, - "to": 3, - "hold": 1, - "the": 3, - "user": 1, - "readRArray": 1, - "insertRArray": 1, - "text": 5, - "completed": 2, - "paragraph": 2, - "display": 2, - "next": 1, - "task": 4, - "nextTaskLabel": 3, - "create": 2, - "append": 2, - "nextTask": 2, - "toComputedArray": 2, - "toComputed": 2, - "bindTextOneWay": 2, - "counter": 3, - "counterLabel": 3, - "rs": 2, - "cs": 2, - "<->": 1, - "if": 1, - "then": 1, - "else": 1, - "entry": 1, - "entry.completed": 1 - }, - "Python": { - "xspacing": 4, - "#": 21, - "How": 2, - "far": 1, - "apart": 1, - "should": 1, - "each": 1, - "horizontal": 1, - "location": 1, - "be": 1, - "spaced": 1, - "maxwaves": 3, - "total": 1, - "of": 5, - "waves": 1, - "to": 5, - "add": 1, - "together": 1, - "theta": 3, - "amplitude": 3, - "[": 161, - "]": 161, - "Height": 1, - "wave": 2, - "dx": 8, - "yvalues": 7, - "def": 74, - "setup": 2, - "(": 762, - ")": 773, - "size": 2, - "frameRate": 1, - "colorMode": 1, - "RGB": 1, - "w": 2, - "width": 1, - "+": 44, - "for": 65, - "i": 13, - "in": 85, - "range": 5, - "amplitude.append": 1, - "random": 2, - "period": 2, - "many": 1, - "pixels": 1, - "before": 1, - "the": 6, - "repeats": 1, - "dx.append": 1, - "TWO_PI": 1, - "/": 26, - "*": 37, - "_": 6, - "yvalues.append": 1, - "draw": 2, - "background": 2, - "calcWave": 2, - "renderWave": 2, - "len": 11, - "j": 7, - "x": 28, - "if": 146, - "%": 33, - "sin": 1, - "else": 31, - "cos": 1, - "noStroke": 2, - "fill": 2, - "ellipseMode": 1, - "CENTER": 1, - "v": 13, - "enumerate": 2, - "ellipse": 1, - "height": 1, - "from": 34, - "__future__": 2, - "import": 47, - "unicode_literals": 1, - "copy": 1, - "sys": 2, - "functools": 1, - "update_wrapper": 2, - "future_builtins": 1, - "zip": 8, - "django.db.models.manager": 1, - "Imported": 1, - "register": 1, - "signal": 1, - "handler.": 1, - "django.conf": 1, - "settings": 1, - "django.core.exceptions": 1, - "ObjectDoesNotExist": 2, - "MultipleObjectsReturned": 2, - "FieldError": 4, - "ValidationError": 8, - "NON_FIELD_ERRORS": 3, - "django.core": 1, - "validators": 1, - "django.db.models.fields": 1, - "AutoField": 2, - "FieldDoesNotExist": 2, - "django.db.models.fields.related": 1, - "ManyToOneRel": 3, - "OneToOneField": 3, - "add_lazy_relation": 2, - "django.db": 1, - "router": 1, - "transaction": 1, - "DatabaseError": 3, - "DEFAULT_DB_ALIAS": 2, - "django.db.models.query": 1, - "Q": 3, - "django.db.models.query_utils": 2, - "DeferredAttribute": 3, - "django.db.models.deletion": 1, - "Collector": 2, - "django.db.models.options": 1, - "Options": 2, - "django.db.models": 1, - "signals": 1, - "django.db.models.loading": 1, - "register_models": 2, - "get_model": 3, - "django.utils.translation": 1, - "ugettext_lazy": 1, - "as": 11, - "django.utils.functional": 1, - "curry": 6, - "django.utils.encoding": 1, - "smart_str": 3, - "force_unicode": 3, - "django.utils.text": 1, - "get_text_list": 2, - "capfirst": 6, - "class": 14, - "ModelBase": 4, - "type": 6, - "__new__": 2, - "cls": 32, - "name": 39, - "bases": 6, - "attrs": 7, - "super_new": 3, - "super": 2, - ".__new__": 1, - "parents": 8, - "b": 11, - "isinstance": 11, - "not": 64, - "return": 57, - "module": 6, - "attrs.pop": 2, - "new_class": 9, - "{": 25, - "}": 25, - "attr_meta": 5, - "None": 86, - "abstract": 3, - "getattr": 30, - "False": 28, - "meta": 12, - "base_meta": 2, - "is": 29, - "model_module": 1, - "sys.modules": 1, - "new_class.__module__": 1, - "kwargs": 9, - "model_module.__name__.split": 1, - "-": 33, - "new_class.add_to_class": 7, - "**kwargs": 9, - "subclass_exception": 3, - "tuple": 3, - "x.DoesNotExist": 1, - "hasattr": 11, - "and": 35, - "x._meta.abstract": 2, - "or": 27, - "x.MultipleObjectsReturned": 1, - "base_meta.abstract": 1, - "new_class._meta.ordering": 1, - "base_meta.ordering": 1, - "new_class._meta.get_latest_by": 1, - "base_meta.get_latest_by": 1, - "is_proxy": 5, - "new_class._meta.proxy": 1, - "new_class._default_manager": 2, - "new_class._base_manager": 2, - "new_class._default_manager._copy_to_model": 1, - "new_class._base_manager._copy_to_model": 1, - "m": 3, - "new_class._meta.app_label": 3, - "seed_cache": 2, - "only_installed": 2, - "obj_name": 2, - "obj": 4, - "attrs.items": 1, - "new_fields": 2, - "new_class._meta.local_fields": 3, - "new_class._meta.local_many_to_many": 2, - "new_class._meta.virtual_fields": 1, - "field_names": 5, - "set": 3, - "f.name": 5, - "f": 19, - "base": 13, - "parent": 5, - "parent._meta.abstract": 1, - "parent._meta.fields": 1, - "raise": 22, - "TypeError": 4, - "continue": 10, - "new_class._meta.setup_proxy": 1, - "new_class._meta.concrete_model": 2, - "base._meta.concrete_model": 2, - "o2o_map": 3, - "dict": 3, - "f.rel.to": 1, - "original_base": 1, - "parent_fields": 3, - "base._meta.local_fields": 1, - "base._meta.local_many_to_many": 1, - "field": 32, - "field.name": 14, - "base.__name__": 2, - "base._meta.abstract": 2, - "elif": 4, - "attr_name": 3, - "base._meta.module_name": 1, - "auto_created": 1, - "True": 20, - "parent_link": 1, - "new_class._meta.parents": 1, - "copy.deepcopy": 2, - "new_class._meta.parents.update": 1, - "base._meta.parents": 1, - "new_class.copy_managers": 2, - "base._meta.abstract_managers": 1, - "original_base._meta.concrete_managers": 1, - "base._meta.virtual_fields": 1, - "attr_meta.abstract": 1, - "new_class.Meta": 1, - "new_class._prepare": 1, - "copy_managers": 1, - "base_managers": 2, - "base_managers.sort": 1, - "mgr_name": 3, - "manager": 3, - "val": 14, - "new_manager": 2, - "manager._copy_to_model": 1, - "cls.add_to_class": 1, - "add_to_class": 1, - "value": 9, - "value.contribute_to_class": 1, - "setattr": 14, - "_prepare": 1, - "opts": 5, - "cls._meta": 3, - "opts._prepare": 1, - "opts.order_with_respect_to": 2, - "cls.get_next_in_order": 1, - "cls._get_next_or_previous_in_order": 2, - "is_next": 9, - "cls.get_previous_in_order": 1, - "make_foreign_order_accessors": 2, - "model": 8, - "field.rel.to": 2, - "cls.__name__.lower": 2, - "method_get_order": 2, - "method_set_order": 2, - "opts.order_with_respect_to.rel.to": 1, - "cls.__doc__": 3, - "cls.__name__": 1, - ".join": 3, - "f.attname": 5, - "opts.fields": 1, - "cls.get_absolute_url": 3, - "get_absolute_url": 2, - "signals.class_prepared.send": 1, - "sender": 5, - "ModelState": 2, - "object": 6, - "__init__": 5, - "self": 100, - "db": 2, - "self.db": 1, - "self.adding": 1, - "Model": 2, - "__metaclass__": 3, - "_deferred": 1, - "*args": 4, - "signals.pre_init.send": 1, - "self.__class__": 10, - "args": 8, - "self._state": 1, - "args_len": 2, - "self._meta.fields": 5, - "IndexError": 2, - "fields_iter": 4, - "iter": 1, - "field.attname": 17, - "kwargs.pop": 6, - "field.rel": 2, - "is_related_object": 3, - "self.__class__.__dict__.get": 2, - "try": 17, - "rel_obj": 3, - "except": 17, - "KeyError": 3, - "field.get_default": 3, - "field.null": 1, - "prop": 5, - "kwargs.keys": 2, - "property": 2, - "AttributeError": 1, - "pass": 4, - ".__init__": 1, - "signals.post_init.send": 1, - "instance": 5, - "__repr__": 2, - "u": 9, - "unicode": 8, - "UnicodeEncodeError": 1, - "UnicodeDecodeError": 1, - "self.__class__.__name__": 3, - "__str__": 1, - ".encode": 1, - "__eq__": 1, - "other": 4, - "self._get_pk_val": 6, - "other._get_pk_val": 1, - "__ne__": 1, - "self.__eq__": 1, - "__hash__": 1, - "hash": 1, - "__reduce__": 1, - "data": 22, - "self.__dict__": 1, - "defers": 2, - "self._deferred": 1, - "deferred_class_factory": 2, - "factory": 5, - "defers.append": 1, - "self._meta.proxy_for_model": 1, - "simple_class_factory": 2, - "model_unpickle": 2, - "_get_pk_val": 2, - "self._meta": 2, - "meta.pk.attname": 2, - "_set_pk_val": 2, - "self._meta.pk.attname": 2, - "pk": 5, - "serializable_value": 1, - "field_name": 8, - "self._meta.get_field_by_name": 1, - "save": 1, - "force_insert": 7, - "force_update": 10, - "using": 30, - "update_fields": 23, - "ValueError": 5, - "frozenset": 2, - "field.primary_key": 1, - "non_model_fields": 2, - "update_fields.difference": 1, - "self.save_base": 2, - "save.alters_data": 1, - "save_base": 1, - "raw": 9, - "origin": 7, - "router.db_for_write": 2, - "assert": 7, - "meta.proxy": 5, - "meta.auto_created": 2, - "signals.pre_save.send": 1, - "org": 3, - "meta.parents.items": 1, - "parent._meta.pk.attname": 2, - "parent._meta": 1, - "non_pks": 5, - "meta.local_fields": 2, - "f.primary_key": 2, - "pk_val": 4, - "pk_set": 5, - "record_exists": 5, - "cls._base_manager": 1, - "manager.using": 3, - ".filter": 7, - ".exists": 1, - "values": 13, - "f.pre_save": 1, - "rows": 3, - "._update": 1, - "meta.order_with_respect_to": 2, - "order_value": 2, - ".count": 1, - "self._order": 1, - "fields": 12, - "update_pk": 3, - "bool": 2, - "meta.has_auto_field": 1, - "result": 2, - "manager._insert": 1, - "return_id": 1, - "transaction.commit_unless_managed": 2, - "self._state.db": 2, - "self._state.adding": 4, - "signals.post_save.send": 1, - "created": 1, - "save_base.alters_data": 1, - "delete": 1, - "self._meta.object_name": 1, - "collector": 1, - "collector.collect": 1, - "collector.delete": 1, - "delete.alters_data": 1, - "_get_FIELD_display": 1, - "field.flatchoices": 1, - ".get": 2, - "strings_only": 1, - "_get_next_or_previous_by_FIELD": 1, - "self.pk": 6, - "op": 6, - "order": 5, - "param": 3, - "q": 4, - "|": 1, - "qs": 6, - "self.__class__._default_manager.using": 1, - "*kwargs": 1, - ".order_by": 2, - "self.DoesNotExist": 1, - "self.__class__._meta.object_name": 1, - "_get_next_or_previous_in_order": 1, - "cachename": 4, - "order_field": 1, - "self._meta.order_with_respect_to": 1, - "self._default_manager.filter": 1, - "order_field.name": 1, - "order_field.attname": 1, - "self._default_manager.values": 1, - "self._meta.pk.name": 1, - "prepare_database_save": 1, - "unused": 1, - "clean": 1, - "validate_unique": 1, - "exclude": 23, - "unique_checks": 6, - "date_checks": 6, - "self._get_unique_checks": 1, - "errors": 20, - "self._perform_unique_checks": 1, - "date_errors": 1, - "self._perform_date_checks": 1, - "k": 4, - "date_errors.items": 1, - "errors.setdefault": 3, - ".extend": 2, - "_get_unique_checks": 1, - "unique_togethers": 2, - "self._meta.unique_together": 1, - "parent_class": 4, - "self._meta.parents.keys": 2, - "parent_class._meta.unique_together": 2, - "unique_togethers.append": 1, - "model_class": 11, - "unique_together": 2, - "check": 4, - "break": 2, - "unique_checks.append": 2, - "fields_with_class": 2, - "self._meta.local_fields": 1, - "fields_with_class.append": 1, - "parent_class._meta.local_fields": 1, - "f.unique": 1, - "f.unique_for_date": 3, - "date_checks.append": 3, - "f.unique_for_year": 3, - "f.unique_for_month": 3, - "_perform_unique_checks": 1, - "unique_check": 10, - "lookup_kwargs": 8, - "self._meta.get_field": 1, - "lookup_value": 3, - "str": 2, - "lookup_kwargs.keys": 1, - "model_class._default_manager.filter": 2, - "*lookup_kwargs": 2, - "model_class_pk": 3, - "model_class._meta": 2, - "qs.exclude": 2, - "qs.exists": 2, - "key": 5, - ".append": 2, - "self.unique_error_message": 1, - "_perform_date_checks": 1, - "lookup_type": 7, - "unique_for": 9, - "date": 3, - "date.day": 1, - "date.month": 1, - "date.year": 1, - "self.date_error_message": 1, - "date_error_message": 1, - "opts.get_field": 4, - ".verbose_name": 3, - "unique_error_message": 1, - "model_name": 3, - "opts.verbose_name": 1, - "field_label": 2, - "field.verbose_name": 1, - "field.error_messages": 1, - "field_labels": 4, - "map": 1, - "lambda": 1, - "full_clean": 1, - "self.clean_fields": 1, - "e": 13, - "e.update_error_dict": 3, - "self.clean": 1, - "errors.keys": 1, - "exclude.append": 1, - "self.validate_unique": 1, - "clean_fields": 1, - "raw_value": 3, - "f.blank": 1, - "validators.EMPTY_VALUES": 1, - "f.clean": 1, - "e.messages": 1, - "############################################": 2, - "ordered_obj": 2, - "id_list": 2, - "rel_val": 4, - "ordered_obj._meta.order_with_respect_to.rel.field_name": 2, - "order_name": 4, - "ordered_obj._meta.order_with_respect_to.name": 2, - "ordered_obj.objects.filter": 2, - ".update": 1, - "_order": 1, - "pk_name": 3, - "ordered_obj._meta.pk.name": 1, - "r": 3, - ".values": 1, - "##############################################": 2, - "func": 2, - "settings.ABSOLUTE_URL_OVERRIDES.get": 1, - "opts.app_label": 1, - "opts.module_name": 1, - "########": 2, - "Empty": 1, - "cls.__new__": 1, - "model_unpickle.__safe_for_unpickle__": 1, - ".globals": 1, - "request": 1, - "http_method_funcs": 2, - "View": 2, - "A": 1, - "which": 1, - "methods": 5, - "this": 2, - "pluggable": 1, - "view": 2, - "can": 1, - "handle.": 1, - "The": 1, - "canonical": 1, - "way": 1, - "decorate": 2, - "based": 1, - "views": 1, - "as_view": 1, - ".": 1, - "However": 1, - "since": 1, - "moves": 1, - "parts": 1, - "logic": 1, - "declaration": 1, - "place": 1, - "where": 1, - "it": 1, - "s": 1, - "also": 1, - "used": 1, - "instantiating": 1, - "view.view_class": 1, - "view.__name__": 1, - "view.__doc__": 1, - "view.__module__": 1, - "cls.__module__": 1, - "view.methods": 1, - "cls.methods": 1, - "MethodViewType": 2, - "d": 5, - "rv": 2, - "type.__new__": 1, - "rv.methods": 2, - "methods.add": 1, - "key.upper": 1, - "sorted": 1, - "MethodView": 1, - "dispatch_request": 1, - "meth": 5, - "request.method.lower": 1, - "request.method": 2, - "P3D": 1, - "lights": 1, - "camera": 1, - "mouseY": 1, - "eyeX": 1, - "eyeY": 1, - "eyeZ": 1, - "centerX": 1, - "centerY": 1, - "centerZ": 1, - "upX": 1, - "upY": 1, - "upZ": 1, - "box": 1, - "stroke": 1, - "line": 3, - "google.protobuf": 4, - "descriptor": 1, - "_descriptor": 1, - "message": 1, - "_message": 1, - "reflection": 1, - "_reflection": 1, - "descriptor_pb2": 1, - "DESCRIPTOR": 3, - "_descriptor.FileDescriptor": 1, - "package": 1, - "serialized_pb": 1, - "_PERSON": 3, - "_descriptor.Descriptor": 1, - "full_name": 2, - "filename": 1, - "file": 1, - "containing_type": 2, - "_descriptor.FieldDescriptor": 1, - "index": 1, - "number": 1, - "cpp_type": 1, - "label": 18, - "has_default_value": 1, - "default_value": 1, - "message_type": 1, - "enum_type": 1, - "is_extension": 1, - "extension_scope": 1, - "options": 3, - "extensions": 1, - "nested_types": 1, - "enum_types": 1, - "is_extendable": 1, - "extension_ranges": 1, - "serialized_start": 1, - "serialized_end": 1, - "DESCRIPTOR.message_types_by_name": 1, - "Person": 1, - "_message.Message": 1, - "_reflection.GeneratedProtocolMessageType": 1, - "SHEBANG#!python": 4, - "print": 39, - "os": 1, - "main": 4, - "usage": 3, - "string": 1, - "command": 4, - "sys.argv": 2, - "<": 1, - "sys.exit": 1, - "printDelimiter": 4, - "get": 1, - "a": 2, - "list": 1, - "git": 1, - "directories": 1, - "specified": 1, - "gitDirectories": 2, - "getSubdirectories": 2, - "isGitDirectory": 2, - "gitDirectory": 2, - "os.chdir": 1, - "os.getcwd": 1, - "os.system": 1, - "directory": 9, - "filter": 3, - "os.path.abspath": 1, - "subdirectories": 3, - "os.walk": 1, - ".next": 1, - "os.path.isdir": 1, - "__name__": 2, - "argparse": 1, - "matplotlib.pyplot": 1, - "pl": 1, - "numpy": 1, - "np": 1, - "scipy.optimize": 1, - "prettytable": 1, - "PrettyTable": 6, - "__docformat__": 1, - "S": 4, - "phif": 7, - "U": 10, - "_parse_args": 2, - "V": 12, - "np.genfromtxt": 8, - "delimiter": 8, - "t": 8, - "U_err": 7, - "offset": 13, - "np.mean": 1, - "np.linspace": 9, - "min": 10, - "max": 11, - "y": 10, - "np.ones": 11, - "x.size": 2, - "pl.plot": 9, - "**6": 6, - ".format": 11, - "pl.errorbar": 8, - "yerr": 8, - "linestyle": 8, - "marker": 4, - "pl.grid": 5, - "pl.legend": 5, - "loc": 5, - "pl.title": 5, - "pl.xlabel": 5, - "ur": 11, - "pl.ylabel": 5, - "pl.savefig": 5, - "pl.clf": 5, - "glanz": 13, - "matt": 13, - "schwarz": 13, - "weiss": 13, - "T0": 1, - "T0_err": 2, - "glanz_phi": 4, - "matt_phi": 4, - "schwarz_phi": 4, - "weiss_phi": 4, - "T_err": 7, - "sigma": 4, - "boltzmann": 12, - "T": 6, - "epsilon": 7, - "T**4": 1, - "glanz_popt": 3, - "glanz_pconv": 1, - "op.curve_fit": 6, - "matt_popt": 3, - "matt_pconv": 1, - "schwarz_popt": 3, - "schwarz_pconv": 1, - "weiss_popt": 3, - "weiss_pconv": 1, - "glanz_x": 3, - "glanz_y": 2, - "*glanz_popt": 1, - "color": 8, - "matt_x": 3, - "matt_y": 2, - "*matt_popt": 1, - "schwarz_x": 3, - "schwarz_y": 2, - "*schwarz_popt": 1, - "weiss_x": 3, - "weiss_y": 2, - "*weiss_popt": 1, - "np.sqrt": 17, - "glanz_pconv.diagonal": 2, - "matt_pconv.diagonal": 2, - "schwarz_pconv.diagonal": 2, - "weiss_pconv.diagonal": 2, - "xerr": 6, - "U_err/S": 4, - "header": 5, - "glanz_table": 2, - "row": 10, - ".size": 4, - "*T_err": 4, - "glanz_phi.size": 1, - "*U_err/S": 4, - "glanz_table.add_row": 1, - "matt_table": 2, - "matt_phi.size": 1, - "matt_table.add_row": 1, - "schwarz_table": 2, - "schwarz_phi.size": 1, - "schwarz_table.add_row": 1, - "weiss_table": 2, - "weiss_phi.size": 1, - "weiss_table.add_row": 1, - "T0**4": 1, - "phi": 5, - "c": 3, - "a*x": 1, - "d**": 2, - "dy": 4, - "dx_err": 3, - "np.abs": 1, - "dy_err": 2, - "popt": 5, - "pconv": 2, - "*popt": 2, - "pconv.diagonal": 3, - "table": 2, - "table.align": 1, - "dy.size": 1, - "*dy_err": 1, - "table.add_row": 1, - "U1": 3, - "I1": 3, - "U2": 2, - "I_err": 2, - "p": 1, - "R": 1, - "R_err": 2, - "/I1": 1, - "**2": 2, - "U1/I1**2": 1, - "phi_err": 3, - "alpha": 2, - "beta": 1, - "R0": 6, - "R0_err": 2, - "alpha*R0": 2, - "*np.sqrt": 6, - "*beta*R": 5, - "alpha**2*R0": 5, - "*beta*R0": 7, - "*beta*R0*T0": 2, - "epsilon_err": 2, - "f1": 1, - "f2": 1, - "f3": 1, - "alpha**2": 1, - "*beta": 1, - "*beta*T0": 1, - "*beta*R0**2": 1, - "f1**2": 1, - "f2**2": 1, - "f3**2": 1, - "parser": 1, - "argparse.ArgumentParser": 1, - "description": 1, - "#parser.add_argument": 3, - "metavar": 1, - "nargs": 1, - "help": 2, - "dest": 1, - "default": 1, - "action": 1, - "version": 6, - "parser.parse_args": 1, - "absolute_import": 1, - "division": 1, - "with_statement": 1, - "Cookie": 1, - "logging": 1, - "socket": 1, - "time": 1, - "tornado.escape": 1, - "utf8": 2, - "native_str": 4, - "parse_qs_bytes": 3, - "tornado": 3, - "httputil": 1, - "iostream": 1, - "tornado.netutil": 1, - "TCPServer": 2, - "stack_context": 1, - "tornado.util": 1, - "bytes_type": 2, - "ssl": 2, - "Python": 1, - "ImportError": 1, - "HTTPServer": 1, - "request_callback": 4, - "no_keep_alive": 4, - "io_loop": 3, - "xheaders": 4, - "ssl_options": 3, - "self.request_callback": 5, - "self.no_keep_alive": 4, - "self.xheaders": 3, - "TCPServer.__init__": 1, - "handle_stream": 1, - "stream": 4, - "address": 4, - "HTTPConnection": 2, - "_BadRequestException": 5, - "Exception": 2, - "self.stream": 1, - "self.address": 3, - "self._request": 7, - "self._request_finished": 4, - "self._header_callback": 3, - "stack_context.wrap": 2, - "self._on_headers": 1, - "self.stream.read_until": 2, - "self._write_callback": 5, - "write": 2, - "chunk": 5, - "callback": 7, - "self.stream.closed": 1, - "self.stream.write": 2, - "self._on_write_complete": 1, - "finish": 2, - "self.stream.writing": 2, - "self._finish_request": 2, - "_on_write_complete": 1, - "_finish_request": 1, - "disconnect": 5, - "connection_header": 5, - "self._request.headers.get": 2, - "connection_header.lower": 1, - "self._request.supports_http_1_1": 1, - "self._request.headers": 1, - "self._request.method": 2, - "self.stream.close": 2, - "_on_headers": 1, - "data.decode": 1, - "eol": 3, - "data.find": 1, - "start_line": 1, - "method": 5, - "uri": 5, - "start_line.split": 1, - "version.startswith": 1, - "headers": 5, - "httputil.HTTPHeaders.parse": 1, - "self.stream.socket": 1, - "socket.AF_INET": 2, - "socket.AF_INET6": 1, - "remote_ip": 8, - "HTTPRequest": 2, - "connection": 5, - "content_length": 6, - "headers.get": 2, - "int": 1, - "self.stream.max_buffer_size": 1, - "self.stream.read_bytes": 1, - "self._on_request_body": 1, - "logging.info": 1, - "_on_request_body": 1, - "self._request.body": 2, - "content_type": 1, - "content_type.startswith": 2, - "arguments": 2, - "arguments.iteritems": 2, - "self._request.arguments.setdefault": 1, - "content_type.split": 1, - "sep": 2, - "field.strip": 1, - ".partition": 1, - "httputil.parse_multipart_form_data": 1, - "self._request.arguments": 1, - "self._request.files": 1, - "logging.warning": 1, - "body": 2, - "protocol": 4, - "host": 2, - "files": 2, - "self.method": 1, - "self.uri": 2, - "self.version": 2, - "self.headers": 4, - "httputil.HTTPHeaders": 1, - "self.body": 1, - "connection.xheaders": 1, - "self.remote_ip": 4, - "self.headers.get": 5, - "self._valid_ip": 1, - "self.protocol": 7, - "connection.stream": 1, - "iostream.SSLIOStream": 1, - "self.host": 2, - "self.files": 1, - "self.connection": 1, - "self._start_time": 3, - "time.time": 3, - "self._finish_time": 4, - "self.path": 1, - "self.query": 2, - "uri.partition": 1, - "self.arguments": 2, - "supports_http_1_1": 1, - "@property": 1, - "cookies": 1, - "self._cookies": 3, - "Cookie.SimpleCookie": 1, - "self._cookies.load": 1, - "self.connection.write": 1, - "self.connection.finish": 1, - "full_url": 1, - "request_time": 1, - "get_ssl_certificate": 1, - "self.connection.stream.socket.getpeercert": 1, - "ssl.SSLError": 1, - "n": 3, - "_valid_ip": 1, - "ip": 2, - "res": 2, - "socket.getaddrinfo": 1, - "socket.AF_UNSPEC": 1, - "socket.SOCK_STREAM": 1, - "socket.AI_NUMERICHOST": 1, - "socket.gaierror": 1, - "e.args": 1, - "socket.EAI_NONAME": 1 - }, - "R": { - "df.residual.mira": 1, - "<": 46, - "-": 53, - "function": 18, - "(": 219, - "object": 12, - "...": 4, - ")": 220, - "{": 58, - "fit": 2, - "analyses": 1, - "[": 23, - "]": 24, - "return": 8, - "df.residual": 2, - "}": 58, - "df.residual.lme": 1, - "fixDF": 1, - "df.residual.mer": 1, - "sum": 1, - "object@dims": 1, - "*": 2, - "c": 11, - "+": 4, - "df.residual.default": 1, - "q": 3, - "df": 3, - "if": 19, - "is.null": 8, - "mk": 2, - "try": 3, - "coef": 1, - "silent": 3, - "TRUE": 14, - "mn": 2, - "f": 9, - "fitted": 1, - "inherits": 6, - "|": 3, - "NULL": 2, - "n": 3, - "ifelse": 1, - "is.data.frame": 1, - "is.matrix": 1, - "nrow": 1, - "length": 3, - "k": 3, - "max": 1, - "SHEBANG#!Rscript": 2, - "#": 45, - "MedianNorm": 2, - "data": 13, - "geomeans": 3, - "<->": 1, - "exp": 1, - "rowMeans": 1, - "log": 5, - "apply": 2, - "2": 1, - "cnts": 2, - "median": 1, - "library": 1, - "print_usage": 2, - "file": 4, - "stderr": 1, - "cat": 1, - "spec": 2, - "matrix": 3, - "byrow": 3, - "ncol": 3, - "opt": 23, - "getopt": 1, - "help": 1, - "stdout": 1, - "status": 1, - "height": 7, - "out": 4, - "res": 6, - "width": 7, - "ylim": 7, - "read.table": 1, - "header": 1, - "sep": 4, - "quote": 1, - "nsamp": 8, - "dim": 1, - "outfile": 4, - "sprintf": 2, - "png": 2, - "h": 13, - "hist": 4, - "plot": 7, - "FALSE": 9, - "mids": 4, - "density": 4, - "type": 3, - "col": 4, - "rainbow": 4, - "main": 2, - "xlab": 2, - "ylab": 2, - "for": 4, - "i": 6, - "in": 8, - "lines": 6, - "devnum": 2, - "dev.off": 2, - "size.factors": 2, - "data.matrix": 1, - "data.norm": 3, - "t": 1, - "x": 3, - "/": 1, - "ParseDates": 2, - "dates": 3, - "unlist": 2, - "strsplit": 3, - "days": 2, - "times": 2, - "hours": 2, - "all.days": 2, - "all.hours": 2, - "data.frame": 1, - "Day": 2, - "factor": 2, - "levels": 2, - "Hour": 2, - "Main": 2, - "system": 1, - "intern": 1, - "punchcard": 4, - "as.data.frame": 1, - "table": 1, - "ggplot2": 6, - "ggplot": 1, - "aes": 2, - "y": 1, - "geom_point": 1, - "size": 1, - "Freq": 1, - "scale_size": 1, - "range": 1, - "ggsave": 1, - "filename": 1, - "hello": 2, - "print": 1, - "module": 25, - "code": 21, - "available": 1, - "via": 1, - "the": 16, - "environment": 4, - "like": 1, - "it": 3, - "returns.": 1, - "@param": 2, - "an": 1, - "identifier": 1, - "specifying": 1, - "full": 1, - "path": 9, - "search": 5, - "see": 1, - "Details": 1, - "even": 1, - "attach": 11, - "is": 7, - "optionally": 1, - "attached": 2, - "to": 9, - "of": 2, - "current": 2, - "scope": 1, - "defaults": 1, - ".": 7, - "However": 1, - "interactive": 2, - "invoked": 1, - "directly": 1, - "from": 5, - "terminal": 1, - "only": 1, - "i.e.": 1, - "not": 4, - "within": 1, - "modules": 4, - "import.attach": 1, - "can": 3, - "be": 8, - "set": 2, - "or": 1, - "depending": 1, - "on": 2, - "user": 1, - "s": 2, - "preference.": 1, - "attach_operators": 3, - "causes": 1, - "emph": 3, - "operators": 3, - "by": 2, - "default": 1, - "path.": 1, - "Not": 1, - "attaching": 1, - "them": 1, - "therefore": 1, - "drastically": 1, - "limits": 1, - "a": 6, - "usefulness.": 1, - "Modules": 1, - "are": 4, - "searched": 1, - "options": 1, - "priority.": 1, - "The": 5, - "directory": 1, - "always": 1, - "considered": 1, - "first.": 1, - "That": 1, - "local": 3, - "./a.r": 1, - "will": 2, - "loaded.": 1, - "Module": 1, - "names": 2, - "fully": 1, - "qualified": 1, - "refer": 1, - "nested": 1, - "paths.": 1, - "See": 1, - "import": 5, - "executed": 1, - "global": 1, - "effect": 1, - "same.": 1, - "When": 1, - "used": 2, - "globally": 1, - "inside": 1, - "newly": 2, - "outside": 1, - "nor": 1, - "other": 2, - "which": 3, - "might": 1, - "loaded": 4, - "@examples": 1, - "@seealso": 3, - "reload": 3, - "@export": 2, - "substitute": 2, - "stopifnot": 3, - "missing": 1, - "&&": 2, - "module_name": 7, - "getOption": 1, - "else": 4, - "class": 4, - "module_path": 15, - "find_module": 1, - "stop": 1, - "attr": 2, - "message": 1, - "containing_modules": 3, - "module_init_files": 1, - "mapply": 1, - "do_import": 4, - "mod_ns": 5, - "as.character": 3, - "module_parent": 8, - "parent.frame": 2, - "mod_env": 7, - "exhibit_namespace": 3, - "identical": 2, - ".GlobalEnv": 2, - "name": 10, - "environmentName": 2, - "parent.env": 4, - "export_operators": 2, - "invisible": 1, - "is_module_loaded": 1, - "get_loaded_module": 1, - "namespace": 13, - "structure": 3, - "new.env": 1, - "parent": 9, - ".BaseNamespaceEnv": 1, - "paste": 3, - "source": 3, - "chdir": 1, - "envir": 5, - "cache_module": 1, - "exported_functions": 2, - "lsf.str": 2, - "list2env": 2, - "sapply": 2, - "get": 2, - "ops": 2, - "is_predefined": 2, - "%": 2, - "is_op": 2, - "prefix": 3, - "||": 1, - "grepl": 1, - "Filter": 1, - "op_env": 4, - "cache.": 1, - "@note": 1, - "Any": 1, - "references": 1, - "remain": 1, - "unchanged": 1, - "and": 5, - "files": 1, - "would": 1, - "have": 1, - "happened": 1, - "without": 1, - "unload": 2, - "should": 2, - "production": 1, - "code.": 1, - "does": 1, - "currently": 1, - "detach": 1, - "environments.": 1, - "Reload": 1, - "given": 1, - "Remove": 1, - "cache": 1, - "forcing": 1, - "reload.": 1, - "reloaded": 1, - "reference": 1, - "unloaded": 1, - "still": 1, - "work.": 1, - "Reloading": 1, - "primarily": 1, - "useful": 1, - "testing": 1, - "during": 1, - "module_ref": 3, - "rm": 1, - "list": 1, - ".loaded_modules": 1, - "whatnot.": 1, - "assign": 1, - "##polyg": 1, - "vector": 2, - "##numpoints": 1, - "number": 1, - "##output": 1, - "output": 1, - "##": 1, - "Example": 1, - "scripts": 1, - "group": 1, - "pts": 1, - "spsample": 1, - "polyg": 1, - "numpoints": 1, - "docType": 1, - "package": 5, - "scholar": 6, - "alias": 2, - "title": 1, - "reads": 1, - "url": 2, - "http": 2, - "//scholar.google.com": 1, - "Dates": 1, - "citation": 2, - "counts": 1, - "estimated": 1, - "determined": 1, - "automatically": 1, - "computer": 1, - "program.": 1, - "Use": 1, - "at": 2, - "your": 1, - "own": 1, - "risk.": 1, - "description": 1, - "provides": 1, - "functions": 3, - "extract": 1, - "Google": 2, - "Scholar.": 1, - "There": 1, - "also": 1, - "convenience": 1, - "comparing": 1, - "multiple": 1, - "scholars": 1, - "predicting": 1, - "index": 1, - "scores": 1, - "based": 1, - "past": 1, - "publication": 1, - "records.": 1, - "note": 1, - "A": 1, - "complementary": 1, - "Scholar": 1, - "found": 1, - "//biostat.jhsph.edu/": 1, - "jleek/code/googleCite.r": 1, - "was": 1, - "developed": 1, - "independently.": 1 - }, - "Racket": { - ";": 3, - "Clean": 1, - "simple": 1, - "and": 1, - "efficient": 1, - "code": 1, - "-": 94, - "that": 2, - "s": 1, - "the": 3, - "power": 1, - "of": 4, - "Racket": 2, - "http": 1, - "//racket": 1, - "lang.org/": 1, - "(": 23, - "define": 1, - "bottles": 4, - "n": 8, - "more": 2, - ")": 23, - "printf": 2, - "case": 1, - "[": 16, - "]": 16, - "else": 1, - "if": 1, - "for": 2, - "in": 3, - "range": 1, - "sub1": 1, - "displayln": 2, - "#lang": 1, - "scribble/manual": 1, - "@": 3, - "require": 1, - "scribble/bnf": 1, - "@title": 1, - "{": 2, - "Scribble": 3, - "The": 1, - "Documentation": 1, - "Tool": 1, - "}": 2, - "@author": 1, - "is": 3, - "a": 1, - "collection": 1, - "tools": 1, - "creating": 1, - "prose": 2, - "documents": 1, - "papers": 1, - "books": 1, - "library": 1, - "documentation": 1, - "etc.": 1, - "HTML": 1, - "or": 2, - "PDF": 1, - "via": 1, - "Latex": 1, - "form.": 1, - "More": 1, - "generally": 1, - "helps": 1, - "you": 1, - "write": 1, - "programs": 1, - "are": 1, - "rich": 1, - "textual": 1, - "content": 2, - "whether": 1, - "to": 2, - "be": 2, - "typeset": 1, - "any": 1, - "other": 1, - "form": 1, - "text": 1, - "generated": 1, - "programmatically.": 1, - "This": 1, - "document": 1, - "itself": 1, - "written": 1, - "using": 1, - "Scribble.": 1, - "You": 1, - "can": 1, - "see": 1, - "its": 1, - "source": 1, - "at": 1, - "let": 1, - "url": 3, - "link": 1, - "starting": 1, - "with": 1, - "@filepath": 1, - "scribble.scrbl": 1, - "file.": 1, - "@table": 1, - "contents": 1, - "@include": 8, - "section": 9, - "@index": 1 - }, - "Ragel in Ruby Host": { - "begin": 3, - "%": 34, - "{": 19, - "machine": 3, - "ephemeris_parser": 1, - ";": 38, - "action": 9, - "mark": 6, - "p": 8, - "}": 19, - "parse_start_time": 2, - "parser.start_time": 1, - "data": 15, - "[": 20, - "mark..p": 4, - "]": 20, - ".pack": 6, - "(": 33, - ")": 33, - "parse_stop_time": 2, - "parser.stop_time": 1, - "parse_step_size": 2, - "parser.step_size": 1, - "parse_ephemeris_table": 2, - "fhold": 1, - "parser.ephemeris_table": 1, - "ws": 2, - "t": 1, - "r": 1, - "n": 1, - "adbc": 2, - "|": 11, - "year": 2, - "digit": 7, - "month": 2, - "upper": 1, - "lower": 1, - "date": 2, - "hours": 2, - "minutes": 2, - "seconds": 2, - "tz": 2, - "datetime": 3, - "time_unit": 2, - "s": 4, - "soe": 2, - "eoe": 2, - "ephemeris_table": 3, - "alnum": 1, - "*": 9, - "-": 5, - "./": 1, - "start_time": 4, - "space*": 2, - "stop_time": 4, - "step_size": 3, - "+": 7, - "ephemeris": 2, - "main": 3, - "any*": 3, - "end": 23, - "require": 1, - "module": 1, - "Tengai": 1, - "EPHEMERIS_DATA": 2, - "Struct.new": 1, - ".freeze": 1, - "class": 3, - "EphemerisParser": 1, - "<": 1, - "def": 10, - "self.parse": 1, - "parser": 2, - "new": 1, - "data.unpack": 1, - "if": 4, - "data.is_a": 1, - "String": 1, - "eof": 3, - "data.length": 3, - "write": 9, - "init": 3, - "exec": 3, - "time": 6, - "super": 2, - "parse_time": 3, - "private": 1, - "DateTime.parse": 1, - "simple_scanner": 1, - "Emit": 4, - "emit": 4, - "ts": 4, - "..": 1, - "te": 1, - "foo": 8, - "any": 4, - "#": 4, - "SimpleScanner": 1, - "attr_reader": 2, - "path": 8, - "initialize": 2, - "@path": 2, - "stdout.puts": 2, - "perform": 2, - "pe": 4, - "ignored": 4, - "leftover": 8, - "File.open": 2, - "do": 2, - "f": 2, - "while": 2, - "chunk": 2, - "f.read": 2, - "ENV": 2, - ".to_i": 2, - "chunk.unpack": 2, - "||": 1, - "ts..pe": 1, - "else": 2, - "SimpleScanner.new": 1, - "ARGV": 2, - "s.perform": 2, - "simple_tokenizer": 1, - "MyTs": 2, - "my_ts": 6, - "MyTe": 2, - "my_te": 6, - "my_ts...my_te": 1, - "nil": 4, - "SimpleTokenizer": 1, - "my_ts..": 1, - "SimpleTokenizer.new": 1 - }, - "RDoc": { - "RDoc": 7, - "-": 9, - "Ruby": 4, - "Documentation": 2, - "System": 1, - "home": 1, - "https": 3, - "//github.com/rdoc/rdoc": 1, - "rdoc": 7, - "http": 1, - "//docs.seattlerb.org/rdoc": 1, - "bugs": 1, - "//github.com/rdoc/rdoc/issues": 1, - "code": 1, - "quality": 1, - "{": 1, - "": 1, - "src=": 1, - "alt=": 1, - "}": 1, - "[": 3, - "//codeclimate.com/github/rdoc/rdoc": 1, - "]": 3, - "Description": 1, - "produces": 1, - "HTML": 1, - "and": 9, - "command": 4, - "line": 1, - "documentation": 8, - "for": 9, - "projects.": 1, - "includes": 1, - "the": 12, - "+": 8, - "ri": 1, - "tools": 1, - "generating": 1, - "displaying": 1, - "from": 1, - "line.": 1, - "Generating": 1, - "Once": 1, - "installed": 1, - "you": 3, - "can": 2, - "create": 1, - "using": 1, - "options": 1, - "names...": 1, - "For": 1, - "an": 1, - "up": 1, - "to": 4, - "date": 1, - "option": 1, - "summary": 1, - "type": 2, - "help": 1, - "A": 1, - "typical": 1, - "use": 1, - "might": 1, - "be": 3, - "generate": 1, - "a": 5, - "package": 1, - "of": 2, - "source": 2, - "(": 3, - "such": 1, - "as": 1, - "itself": 1, - ")": 3, - ".": 2, - "This": 2, - "generates": 1, - "all": 1, - "C": 1, - "files": 2, - "in": 4, - "below": 1, - "current": 1, - "directory.": 1, - "These": 1, - "will": 1, - "stored": 1, - "tree": 1, - "starting": 1, - "subdirectory": 1, - "doc": 1, - "You": 2, - "make": 2, - "this": 1, - "slightly": 1, - "more": 1, - "useful": 1, - "your": 1, - "readers": 1, - "by": 1, - "having": 1, - "index": 1, - "page": 1, - "contain": 1, - "primary": 1, - "file.": 1, - "In": 1, - "our": 1, - "case": 1, - "we": 1, - "could": 1, - "#": 1, - "rdoc/rdoc": 1, - "s": 1, - "OK": 1, - "file": 1, - "bug": 1, - "report": 1, - "anything": 1, - "t": 1, - "figure": 1, - "out": 1, - "how": 1, - "produce": 1, - "output": 1, - "like": 1, - "that": 1, - "is": 4, - "probably": 1, - "bug.": 1, - "License": 1, - "Copyright": 1, - "c": 2, - "Dave": 1, - "Thomas": 1, - "The": 1, - "Pragmatic": 1, - "Programmers.": 1, - "Portions": 2, - "Eric": 1, - "Hodel.": 1, - "copyright": 1, - "others": 1, - "see": 1, - "individual": 1, - "LEGAL.rdoc": 1, - "details.": 1, - "free": 1, - "software": 2, - "may": 1, - "redistributed": 1, - "under": 1, - "terms": 1, - "specified": 1, - "LICENSE.rdoc.": 1, - "Warranty": 1, - "provided": 1, - "without": 2, - "any": 1, - "express": 1, - "or": 1, - "implied": 2, - "warranties": 2, - "including": 1, - "limitation": 1, - "merchantability": 1, - "fitness": 1, - "particular": 1, - "purpose.": 1 - }, - "Rebol": { - "REBOL": 5, - "[": 54, - "System": 1, - "Title": 2, - "Rights": 1, - "{": 8, - "Copyright": 1, - "Technologies": 2, - "is": 4, - "a": 2, - "trademark": 1, - "of": 1, - "}": 8, - "License": 2, - "Licensed": 1, - "under": 1, - "the": 3, - "Apache": 1, - "Version": 1, - "See": 1, - "http": 1, - "//www.apache.org/licenses/LICENSE": 1, - "-": 26, - "Purpose": 1, - "These": 1, - "are": 2, - "used": 3, - "to": 2, - "define": 1, - "natives": 1, - "and": 2, - "actions.": 1, - "Bind": 1, - "attributes": 1, - "for": 4, - "this": 1, - "block": 5, - "BIND_SET": 1, - "SHALLOW": 1, - "]": 61, - ";": 19, - "Special": 1, - "as": 1, - "spec": 3, - "datatype": 2, - "test": 1, - "functions": 1, - "(": 30, - "e.g.": 1, - "time": 2, - ")": 33, - "value": 1, - "any": 1, - "type": 1, - "The": 1, - "native": 5, - "function": 3, - "must": 1, - "be": 1, + "self.on": 1, + "#include": 26, + "": 1, + "": 1, "defined": 1, - "first.": 1, - "This": 1, - "special": 1, - "boot": 1, - "created": 1, - "manually": 1, - "within": 1, - "C": 1, - "code.": 1, - "Creates": 2, - "internal": 2, - "usage": 2, - "only": 2, - ".": 4, - "no": 3, - "check": 2, - "required": 2, - "we": 2, - "know": 2, - "it": 2, - "correct": 2, - "action": 2, - "Rebol": 4, - "re": 20, - "func": 5, - "s": 5, - "/i": 1, - "rejoin": 1, - "compose": 1, - "either": 1, - "i": 1, - "little": 1, - "helper": 1, - "standard": 1, - "grammar": 1, - "regex": 2, - "date": 6, - "naive": 1, - "string": 1, - "|": 22, - "S": 3, - "*": 7, - "<(?:[^^\\>": 1, - "d": 3, - "+": 6, - "/": 5, - "@": 1, - "%": 2, - "A": 3, - "F": 1, - "url": 1, - "PR_LITERAL": 10, - "string_url": 1, - "email": 1, - "string_email": 1, - "binary": 1, - "binary_base_two": 1, - "binary_base_sixty_four": 1, - "binary_base_sixteen": 1, - "re/i": 2, - "issue": 1, - "string_issue": 1, - "values": 1, - "value_date": 1, - "value_time": 1, - "tuple": 1, - "value_tuple": 1, - "pair": 1, - "value_pair": 1, - "number": 2, - "PR": 1, - "Za": 2, - "z0": 2, - "<[=>": 1, - "rebol": 1, - "red": 1, - "/system": 1, - "world": 1, - "topaz": 1, - "true": 1, - "false": 1, - "yes": 1, - "on": 1, - "off": 1, - "none": 1, - "#": 1, - "hello": 8, - "print": 4, - "author": 1 - }, - "Red": { - "Red": 3, - "[": 111, - "Title": 2, - "Author": 1, - "]": 114, - "File": 1, - "%": 2, - "console.red": 1, - "Tabs": 1, - "Rights": 1, - "License": 2, - "{": 11, - "Distributed": 1, - "under": 1, - "the": 3, - "Boost": 1, - "Software": 1, - "Version": 1, - "See": 1, - "https": 1, - "//github.com/dockimbel/Red/blob/master/BSL": 1, - "-": 74, - "License.txt": 1, - "}": 11, - "Purpose": 2, - "Language": 2, - "http": 2, - "//www.red": 2, - "lang.org/": 2, - "#system": 1, - "global": 1, - "#either": 3, - "OS": 3, - "MacOSX": 2, - "History": 1, - "library": 1, - "cdecl": 3, - "add": 2, - "history": 2, - ";": 31, - "Add": 1, - "line": 9, - "to": 2, - "history.": 1, - "c": 7, - "string": 10, - "rl": 4, - "insert": 3, - "wrapper": 2, - "func": 1, - "count": 3, - "integer": 16, - "key": 3, - "return": 10, - "Windows": 2, - "system/platform": 1, - "ret": 5, - "AttachConsole": 1, - "if": 2, - "zero": 3, - "print": 5, - "halt": 2, - "SetConsoleTitle": 1, - "as": 4, - "string/rs": 1, - "head": 1, - "str": 4, - "bind": 1, - "tab": 3, - "input": 2, - "routine": 1, - "prompt": 3, - "/local": 1, - "len": 1, - "buffer": 4, - "string/load": 1, - "+": 1, - "length": 1, - "free": 1, - "byte": 3, - "ptr": 14, - "SET_RETURN": 1, - "(": 6, - ")": 4, - "delimiters": 1, - "function": 6, - "block": 3, - "list": 1, - "copy": 2, - "none": 1, - "foreach": 1, - "case": 2, - "escaped": 2, - "no": 2, - "in": 2, - "comment": 2, - "switch": 3, - "#": 8, - "mono": 3, - "mode": 3, - "cnt/1": 1, - "red": 1, - "eval": 1, - "code": 3, - "load/all": 1, - "unless": 1, - "tail": 1, - "set/any": 1, - "not": 1, - "script/2": 1, - "do": 2, - "skip": 1, - "script": 1, - "quit": 2, - "init": 1, - "console": 2, - "Console": 1, - "alpha": 1, - "version": 3, - "only": 1, - "ASCII": 1, - "supported": 1, - "Red/System": 1, - "#include": 1, - "../common/FPU": 1, - "configuration.reds": 1, - "C": 1, - "types": 1, - "#define": 2, - "time": 2, - "long": 2, - "clock": 1, - "date": 1, - "alias": 2, - "struct": 5, - "second": 1, - "minute": 1, - "hour": 1, - "day": 1, - "month": 1, - "year": 1, - "Since": 1, - "weekday": 1, - "since": 1, - "Sunday": 1, - "yearday": 1, - "daylight": 1, - "saving": 1, - "Negative": 1, - "unknown": 1, - "#import": 1, - "LIBC": 1, - "file": 1, - "Error": 1, - "handling": 1, - "form": 1, - "error": 5, - "Return": 1, - "description.": 1, - "Print": 1, - "standard": 1, - "output.": 1, - "Memory": 1, - "management": 1, - "make": 1, - "Allocate": 1, - "filled": 1, - "memory.": 1, - "chunks": 1, - "size": 5, - "binary": 4, - "resize": 1, - "Resize": 1, - "memory": 2, - "allocation.": 1, - "JVM": 6, - "reserved0": 1, - "int": 6, - "reserved1": 1, - "reserved2": 1, - "DestroyJavaVM": 1, - "JNICALL": 5, - "vm": 5, - "jint": 5, - "AttachCurrentThread": 1, - "penv": 3, - "p": 3, - "args": 2, - "DetachCurrentThread": 1, - "GetEnv": 1, - "AttachCurrentThreadAsDaemon": 1, - "just": 2, - "some": 2, - "datatypes": 1, - "for": 1, - "testing": 1, - "#some": 1, - "hash": 1, - "FF0000": 3, - "FF000000": 2, - "with": 4, - "instead": 1, - "of": 1, - "space": 2, - "/wAAAA": 1, - "/wAAA": 2, - "A": 2, - "inside": 2, - "char": 1, - "bla": 2, - "ff": 1, - "foo": 3, - "numbers": 1, - "which": 1, - "interpreter": 1, - "path": 1, - "h": 1, - "#if": 1, - "type": 1, - "exe": 1, - "push": 3, - "system/stack/frame": 2, - "save": 1, - "previous": 1, - "frame": 2, - "pointer": 2, - "system/stack/top": 1, - "@@": 1, - "reposition": 1, - "after": 1, - "catch": 1, - "flag": 1, - "CATCH_ALL": 1, - "exceptions": 1, - "root": 1, - "barrier": 1, - "keep": 1, - "stack": 1, - "aligned": 1, - "on": 1, - "bit": 1 - }, - "RMarkdown": { - "Some": 1, - "text.": 1, - "##": 1, - "A": 1, - "graphic": 1, - "in": 1, - "R": 1, - "{": 1, - "r": 1, - "}": 1, - "plot": 1, - "(": 3, - ")": 3, - "hist": 1, - "rnorm": 1 - }, - "RobotFramework": { - "***": 16, - "Settings": 3, - "Documentation": 3, - "Example": 3, - "test": 6, - "cases": 2, - "using": 4, - "the": 9, - "data": 2, - "-": 16, - "driven": 4, - "testing": 2, - "approach.": 2, - "...": 28, - "Tests": 1, - "use": 2, - "Calculate": 3, - "keyword": 5, - "created": 1, - "in": 5, - "this": 1, - "file": 1, - "that": 5, - "turn": 1, - "uses": 1, - "keywords": 3, - "CalculatorLibrary": 5, - ".": 4, - "An": 1, - "exception": 1, - "is": 6, - "last": 1, - "has": 5, - "a": 4, - "custom": 1, - "_template": 1, - "keyword_.": 1, - "The": 2, - "style": 3, - "works": 3, - "well": 3, - "when": 2, - "you": 1, - "need": 3, - "to": 5, - "repeat": 1, - "same": 1, - "workflow": 3, - "multiple": 2, - "times.": 1, - "Notice": 1, - "one": 1, - "of": 3, - "these": 1, - "tests": 5, - "fails": 1, - "on": 1, - "purpose": 1, - "show": 1, - "how": 1, - "failures": 1, - "look": 1, - "like.": 1, - "Test": 4, - "Template": 2, - "Library": 3, - "Cases": 3, - "Expression": 1, - "Expected": 1, - "Addition": 2, - "+": 6, - "Subtraction": 1, - "Multiplication": 1, - "*": 4, - "Division": 2, - "/": 5, - "Failing": 1, - "Calculation": 3, - "error": 4, - "[": 4, - "]": 4, - "should": 9, - "fail": 2, - "kekkonen": 1, - "Invalid": 2, - "button": 13, - "{": 15, - "EMPTY": 3, - "}": 15, - "expression.": 1, - "by": 3, - "zero.": 1, - "Keywords": 2, - "Arguments": 2, - "expression": 5, - "expected": 4, - "Push": 16, - "buttons": 4, - "C": 4, - "Result": 8, - "be": 9, - "Should": 2, - "cause": 1, - "equal": 1, - "#": 2, - "Using": 1, - "BuiltIn": 1, - "case": 1, - "gherkin": 1, - "syntax.": 1, - "This": 3, - "similar": 1, - "examples.": 1, - "difference": 1, - "higher": 1, - "abstraction": 1, - "level": 1, - "and": 2, - "their": 1, - "arguments": 1, - "are": 1, - "embedded": 1, - "into": 1, - "names.": 1, - "kind": 2, - "_gherkin_": 2, - "syntax": 1, - "been": 3, - "made": 1, - "popular": 1, - "http": 1, - "//cukes.info": 1, - "|": 1, - "Cucumber": 1, - "It": 1, - "especially": 1, - "act": 1, - "as": 1, - "examples": 1, - "easily": 1, - "understood": 1, - "also": 2, - "business": 2, - "people.": 1, - "Given": 1, - "calculator": 1, - "cleared": 2, - "When": 1, - "user": 2, - "types": 2, - "pushes": 2, - "equals": 2, - "Then": 1, - "result": 2, - "Calculator": 1, - "User": 2, - "All": 1, - "contain": 1, - "constructed": 1, - "from": 1, - "Creating": 1, - "new": 1, - "or": 1, - "editing": 1, - "existing": 1, - "easy": 1, - "even": 1, - "for": 2, - "people": 2, - "without": 1, - "programming": 1, - "skills.": 1, - "normal": 1, - "automation.": 1, - "If": 1, - "understand": 1, - "may": 1, - "work": 1, - "better.": 1, - "Simple": 1, - "calculation": 2, - "Longer": 1, - "Clear": 1, - "built": 1, - "variable": 1 - }, - "Ruby": { - "appraise": 2, - "do": 37, - "gem": 3, - "end": 238, - "load": 3, - "Dir": 4, - "[": 56, - "]": 56, - ".each": 4, - "{": 68, - "|": 91, - "plugin": 3, - "(": 244, - ")": 256, - "}": 68, - "task": 2, - "default": 2, - "puts": 12, - "module": 8, - "Foo": 1, - "require": 58, - "class": 7, - "Formula": 2, - "include": 3, - "FileUtils": 1, - "attr_reader": 5, - "name": 51, - "path": 16, - "url": 12, - "version": 10, - "homepage": 2, - "specs": 14, - "downloader": 6, - "standard": 2, - "unstable": 2, - "head": 3, - "bottle_version": 2, - "bottle_url": 3, - "bottle_sha1": 2, - "buildpath": 1, - "def": 143, - "initialize": 2, - "nil": 21, - "set_instance_variable": 12, - "if": 72, - "@head": 4, - "and": 6, - "not": 3, - "@url": 8, - "or": 7, - "ARGV.build_head": 2, - "@version": 10, - "@spec_to_use": 4, - "@unstable": 2, - "else": 25, - "@standard.nil": 1, - "SoftwareSpecification.new": 3, - "@specs": 3, - "@standard": 3, - "raise": 17, - "@url.nil": 1, - "@name": 3, - "validate_variable": 7, - "@path": 1, - "path.nil": 1, - "self.class.path": 1, - "Pathname.new": 3, - "||": 22, - "@spec_to_use.detect_version": 1, - "CHECKSUM_TYPES.each": 1, - "type": 10, - "@downloader": 2, - "download_strategy.new": 2, - "@spec_to_use.url": 1, - "@spec_to_use.specs": 1, - "@bottle_url": 2, - "bottle_base_url": 1, - "+": 47, - "bottle_filename": 1, - "self": 11, - "@bottle_sha1": 2, - "installed": 2, - "return": 25, - "installed_prefix.children.length": 1, - "rescue": 13, - "false": 26, - "explicitly_requested": 1, - "ARGV.named.empty": 1, - "ARGV.formulae.include": 1, - "linked_keg": 1, - "HOMEBREW_REPOSITORY/": 2, - "/@name": 1, - "installed_prefix": 1, - "head_prefix": 2, - "HOMEBREW_CELLAR": 2, - "head_prefix.directory": 1, - "prefix": 14, - "rack": 1, - ";": 41, - "prefix.parent": 1, - "bin": 1, - "doc": 1, - "info": 2, - "lib": 1, - "libexec": 1, - "man": 9, - "man1": 1, - "man2": 1, - "man3": 1, - "man4": 1, - "man5": 1, - "man6": 1, - "man7": 1, - "man8": 1, - "sbin": 1, - "share": 1, - "etc": 1, - "HOMEBREW_PREFIX": 2, - "var": 1, - "plist_name": 2, - "plist_path": 1, - "download_strategy": 1, - "@spec_to_use.download_strategy": 1, - "cached_download": 1, - "@downloader.cached_location": 1, - "caveats": 1, - "options": 3, - "patches": 2, - "keg_only": 2, - "self.class.keg_only_reason": 1, - "fails_with": 2, - "cc": 3, - "self.class.cc_failures.nil": 1, - "Compiler.new": 1, - "unless": 15, - "cc.is_a": 1, - "Compiler": 1, - "self.class.cc_failures.find": 1, - "failure": 1, - "next": 1, - "failure.compiler": 1, - "cc.name": 1, - "failure.build.zero": 1, - "failure.build": 1, - "cc.build": 1, - "skip_clean": 2, - "true": 15, - "self.class.skip_clean_all": 1, - "to_check": 2, - "path.relative_path_from": 1, - ".to_s": 3, - "self.class.skip_clean_paths.include": 1, - "brew": 2, - "stage": 2, - "begin": 9, - "patch": 3, - "yield": 5, - "Interrupt": 2, - "RuntimeError": 1, - "SystemCallError": 1, - "e": 8, - "#": 100, - "don": 1, - "config.log": 2, - "t": 3, - "a": 10, - "std_autotools": 1, - "variant": 1, - "because": 1, - "autotools": 1, - "is": 3, - "lot": 1, - "std_cmake_args": 1, - "%": 10, - "W": 1, - "-": 34, - "DCMAKE_INSTALL_PREFIX": 1, - "DCMAKE_BUILD_TYPE": 1, - "None": 1, - "DCMAKE_FIND_FRAMEWORK": 1, - "LAST": 1, - "Wno": 1, - "dev": 1, - "self.class_s": 2, - "#remove": 1, - "invalid": 1, - "characters": 1, - "then": 4, - "camelcase": 1, - "it": 1, - "name.capitalize.gsub": 1, - "/": 34, - "_.": 1, - "s": 2, - "zA": 1, - "Z0": 1, - "upcase": 1, - ".gsub": 5, - "self.names": 1, - ".map": 6, - "f": 11, - "File.basename": 2, - ".sort": 2, - "self.all": 1, - "map": 1, - "self.map": 1, - "rv": 3, - "each": 1, - "<<": 15, - "self.each": 1, - "names.each": 1, - "n": 4, - "Formula.factory": 2, - "onoe": 2, - "inspect": 2, - "self.aliases": 1, - "self.canonical_name": 1, - "name.to_s": 3, - "name.kind_of": 2, - "Pathname": 2, - "formula_with_that_name": 1, - "HOMEBREW_REPOSITORY": 4, - "possible_alias": 1, - "possible_cached_formula": 1, - "HOMEBREW_CACHE_FORMULA": 2, - "name.include": 2, - "r": 3, - ".": 3, - "tapd": 1, - ".downcase": 2, - "tapd.find_formula": 1, - "relative_pathname": 1, - "relative_pathname.stem.to_s": 1, - "tapd.directory": 1, - "elsif": 7, - "formula_with_that_name.file": 1, - "formula_with_that_name.readable": 1, - "possible_alias.file": 1, - "possible_alias.realpath.basename": 1, - "possible_cached_formula.file": 1, - "possible_cached_formula.to_s": 1, - "self.factory": 1, - "https": 1, - "ftp": 1, - "//": 3, - ".basename": 1, - "target_file": 6, - "name.basename": 1, - "HOMEBREW_CACHE_FORMULA.mkpath": 1, - "FileUtils.rm": 1, - "force": 1, - "curl": 1, - "install_type": 4, - "from_url": 1, - "Formula.canonical_name": 1, - ".rb": 1, - "path.stem": 1, - "from_path": 1, - "path.to_s": 3, - "Formula.path": 1, - "from_name": 2, - "klass_name": 2, - "klass": 16, - "Object.const_get": 1, - "NameError": 2, - "LoadError": 3, - "klass.new": 2, - "FormulaUnavailableError.new": 1, - "tap": 1, - "path.realpath.to_s": 1, - "/Library/Taps/": 1, - "w": 6, - "self.path": 1, - "mirrors": 4, - "self.class.mirrors": 1, - "deps": 1, - "self.class.dependencies.deps": 1, - "external_deps": 1, - "self.class.dependencies.external_deps": 1, - "recursive_deps": 1, - "Formula.expand_deps": 1, - ".flatten.uniq": 1, - "self.expand_deps": 1, - "f.deps.map": 1, - "dep": 3, - "f_dep": 3, - "dep.to_s": 1, - "expand_deps": 1, - "protected": 1, - "system": 1, - "cmd": 6, - "*args": 16, - "pretty_args": 1, - "args.dup": 1, - "pretty_args.delete": 1, - "ARGV.verbose": 2, - "ohai": 3, - ".strip": 1, - "removed_ENV_variables": 2, - "case": 5, - "args.empty": 1, - "cmd.split": 1, - ".first": 1, - "when": 11, - "ENV.remove_cc_etc": 1, - "safe_system": 4, - "rd": 1, - "wr": 3, - "IO.pipe": 1, - "pid": 1, - "fork": 1, - "rd.close": 1, - "stdout.reopen": 1, - "stderr.reopen": 1, - "args.collect": 1, - "arg": 1, - "arg.to_s": 1, - "exec": 2, - "exit": 2, - "never": 1, - "gets": 1, - "here": 1, - "threw": 1, - "failed": 3, - "wr.close": 1, - "out": 4, - "rd.read": 1, - "until": 1, - "rd.eof": 1, - "Process.wait": 1, - ".success": 1, - "removed_ENV_variables.each": 1, - "key": 8, - "value": 4, - "ENV": 4, - "ENV.kind_of": 1, - "Hash": 3, - "BuildError.new": 1, - "args": 5, - "public": 2, - "fetch": 2, - "install_bottle": 1, - "CurlBottleDownloadStrategy.new": 1, - "mirror_list": 2, - "HOMEBREW_CACHE.mkpath": 1, - "fetched": 4, - "downloader.fetch": 1, - "CurlDownloadStrategyError": 1, - "mirror_list.empty": 1, - "mirror_list.shift.values_at": 1, - "retry": 2, - "checksum_type": 2, - "CHECKSUM_TYPES.detect": 1, - "instance_variable_defined": 2, - "verify_download_integrity": 2, - "fn": 2, - "args.length": 1, - "md5": 2, - "supplied": 4, - "instance_variable_get": 2, - "type.to_s.upcase": 1, - "hasher": 2, - "Digest.const_get": 1, - "hash": 2, - "fn.incremental_hash": 1, - "supplied.empty": 1, - "message": 2, - "EOF": 2, - "mismatch": 1, - "Expected": 1, - "Got": 1, - "Archive": 1, - "To": 1, - "an": 1, - "incomplete": 1, - "download": 1, - "remove": 1, - "the": 8, - "file": 1, - "above.": 1, - "supplied.upcase": 1, - "hash.upcase": 1, - "opoo": 1, - "private": 3, - "CHECKSUM_TYPES": 2, - "sha1": 4, - "sha256": 1, - ".freeze": 1, - "fetched.kind_of": 1, - "mktemp": 1, - "downloader.stage": 1, - "@buildpath": 2, - "Pathname.pwd": 1, - "patch_list": 1, - "Patches.new": 1, - "patch_list.empty": 1, - "patch_list.external_patches": 1, - "patch_list.download": 1, - "patch_list.each": 1, - "p": 2, - "p.compression": 1, - "gzip": 1, - "p.compressed_filename": 2, - "bzip2": 1, - "*": 3, - "p.patch_args": 1, - "v": 2, - "v.to_s.empty": 1, - "s/": 1, - "class_value": 3, - "self.class.send": 1, - "instance_variable_set": 1, - "self.method_added": 1, - "method": 4, - "self.attr_rw": 1, - "attrs": 1, - "attrs.each": 1, - "attr": 4, - "class_eval": 1, - "Q": 1, - "val": 10, - "val.nil": 3, - "@#": 2, - "attr_rw": 4, - "keg_only_reason": 1, - "skip_clean_all": 2, - "cc_failures": 1, - "stable": 2, - "&": 31, - "block": 30, - "block_given": 5, - "instance_eval": 2, - "ARGV.build_devel": 2, - "devel": 1, - "@mirrors": 3, - "clear": 1, - "from": 1, - "release": 1, - "bottle": 1, - "bottle_block": 1, - "Class.new": 2, - "self.version": 1, - "self.url": 1, - "self.sha1": 1, - "sha1.shift": 1, - "@sha1": 6, - "MacOS.cat": 1, - "String": 2, - "MacOS.lion": 1, - "self.data": 1, - "&&": 8, - "bottle_block.instance_eval": 1, - "@bottle_version": 1, - "bottle_block.data": 1, - "mirror": 1, - "@mirrors.uniq": 1, - "dependencies": 1, - "@dependencies": 1, - "DependencyCollector.new": 1, - "depends_on": 1, - "dependencies.add": 1, - "paths": 3, - "all": 1, - "@skip_clean_all": 2, - "@skip_clean_paths": 3, - ".flatten.each": 1, - "p.to_s": 2, - "@skip_clean_paths.include": 1, - "skip_clean_paths": 1, - "reason": 2, - "explanation": 1, - "@keg_only_reason": 1, - "KegOnlyReason.new": 1, - "explanation.to_s.chomp": 1, - "compiler": 3, - "@cc_failures": 2, - "CompilerFailures.new": 1, - "CompilerFailure.new": 2, - "Grit": 1, - "ActiveSupport": 1, - "Inflector": 1, - "extend": 2, - "pluralize": 3, - "word": 10, - "apply_inflections": 3, - "inflections.plurals": 1, - "singularize": 2, - "inflections.singulars": 1, - "camelize": 2, - "term": 1, - "uppercase_first_letter": 2, - "string": 4, - "term.to_s": 1, - "string.sub": 2, - "z": 7, - "d": 6, - "*/": 1, - "inflections.acronyms": 1, - ".capitalize": 1, - "inflections.acronym_regex": 2, - "b": 4, - "A": 5, - "Z_": 1, - "string.gsub": 1, - "_": 2, - "/i": 2, - "underscore": 3, - "camel_cased_word": 6, - "camel_cased_word.to_s.dup": 1, - "word.gsub": 4, - "Za": 1, - "Z": 3, - "word.tr": 1, - "word.downcase": 1, - "humanize": 2, - "lower_case_and_underscored_word": 1, - "result": 8, - "lower_case_and_underscored_word.to_s.dup": 1, - "inflections.humans.each": 1, - "rule": 4, - "replacement": 4, - "break": 4, - "result.sub": 2, - "result.gsub": 2, - "/_id": 1, - "result.tr": 1, - "match": 6, - "w/": 1, - ".upcase": 1, - "titleize": 1, - "": 1, - "capitalize": 1, - "Create": 1, - "of": 1, - "table": 2, - "like": 1, - "Rails": 1, - "does": 1, - "for": 1, - "models": 1, - "to": 1, - "names": 2, - "This": 1, - "uses": 1, - "on": 2, - "last": 4, - "in": 3, - "RawScaledScorer": 1, - "tableize": 2, - "class_name": 2, - "classify": 1, - "table_name": 1, - "table_name.to_s.sub": 1, - "/.*": 1, - "./": 1, - "dasherize": 1, - "underscored_word": 1, - "underscored_word.tr": 1, - "demodulize": 1, - "i": 2, - "path.rindex": 2, - "..": 1, - "deconstantize": 1, - "implementation": 1, - "based": 1, - "one": 1, - "facets": 1, - "id": 1, - "outside": 2, - "inside": 2, - "owned": 1, - "constant": 4, - "constant.ancestors.inject": 1, - "const": 3, - "ancestor": 3, - "Object": 1, - "ancestor.const_defined": 1, - "constant.const_get": 1, - "safe_constantize": 1, - "constantize": 1, - "e.message": 2, - "uninitialized": 1, - "wrong": 1, - "const_regexp": 3, - "e.name.to_s": 1, - "camel_cased_word.to_s": 1, - "ArgumentError": 1, - "/not": 1, - "missing": 1, - "ordinal": 1, - "number": 2, - ".include": 1, - "number.to_i.abs": 2, - "ordinalize": 1, - "nodoc": 3, - "parts": 1, - "camel_cased_word.split": 1, - "parts.pop": 1, - "parts.reverse.inject": 1, - "acc": 2, - "part": 1, - "part.empty": 1, - "rules": 1, - "word.to_s.dup": 1, - "word.empty": 1, - "inflections.uncountables.include": 1, - "result.downcase": 1, - "Z/": 1, - "rules.each": 1, - ".unshift": 1, - "File.dirname": 4, - "__FILE__": 3, - "For": 1, - "use/testing": 1, - "no": 1, - "require_all": 4, - "glob": 2, - "File.join": 6, - "Jekyll": 3, - "VERSION": 1, - "DEFAULTS": 2, - "Dir.pwd": 3, - "self.configuration": 1, - "override": 3, - "source": 2, - "config_file": 2, - "config": 3, - "YAML.load_file": 1, - "config.is_a": 1, - "stdout.puts": 1, - "err": 1, - "stderr.puts": 2, - "err.to_s": 1, - "DEFAULTS.deep_merge": 1, - ".deep_merge": 1, - "Jenkins": 1, - "Plugin": 1, - "Specification.new": 1, - "plugin.name": 1, - "plugin.display_name": 1, - "plugin.version": 1, - "plugin.description": 1, - "plugin.url": 1, - "plugin.developed_by": 1, - "plugin.uses_repository": 1, - "github": 1, - "plugin.depends_on": 1, - "#plugin.depends_on": 1, - "SHEBANG#!macruby": 1, - "object": 2, - "@user": 1, - "person": 1, - "attributes": 2, - "username": 1, - "email": 1, - "location": 1, - "created_at": 1, - "registered_at": 1, - "node": 2, - "role": 1, - "user": 1, - "user.is_admin": 1, - "child": 1, - "phone_numbers": 1, - "pnumbers": 1, - "extends": 1, - "node_numbers": 1, - "u": 1, - "partial": 1, - "u.phone_numbers": 1, - "Resque": 3, - "Helpers": 1, - "redis": 7, - "server": 11, - "/redis": 1, - "Redis.connect": 2, - "thread_safe": 2, - "namespace": 3, - "server.split": 2, - "host": 3, - "port": 4, - "db": 3, - "Redis.new": 1, - "resque": 2, - "@redis": 6, - "Redis": 3, - "Namespace.new": 2, - "Namespace": 1, - "@queues": 2, - "Hash.new": 1, - "h": 2, - "Queue.new": 1, - "coder": 3, - "@coder": 1, - "MultiJsonCoder.new": 1, - "attr_writer": 4, - "self.redis": 2, - "Redis.respond_to": 1, - "connect": 1, - "redis_id": 2, - "redis.respond_to": 2, - "redis.server": 1, - "nodes": 1, - "distributed": 1, - "redis.nodes.map": 1, - "n.id": 1, - ".join": 1, - "redis.client.id": 1, - "before_first_fork": 2, - "@before_first_fork": 2, - "before_fork": 2, - "@before_fork": 2, - "after_fork": 2, - "@after_fork": 2, - "to_s": 1, - "attr_accessor": 2, + "OBJC_API_VERSION": 2, "inline": 3, - "alias": 1, - "push": 1, - "queue": 24, - "item": 4, - "pop": 1, - ".pop": 1, - "ThreadError": 1, - "size": 3, - ".size": 1, - "peek": 1, - "start": 7, - "count": 5, - ".slice": 1, - "list_range": 1, - "decode": 2, - "redis.lindex": 1, - "Array": 2, - "redis.lrange": 1, - "queues": 3, - "redis.smembers": 1, - "remove_queue": 1, - ".destroy": 1, - "@queues.delete": 1, - "queue.to_s": 1, - "enqueue": 1, - "enqueue_to": 2, - "queue_from_class": 4, - "before_hooks": 2, - "Plugin.before_enqueue_hooks": 1, - ".collect": 2, - "hook": 9, - "klass.send": 4, - "before_hooks.any": 2, - "Job.create": 1, - "Plugin.after_enqueue_hooks": 1, - "dequeue": 1, - "Plugin.before_dequeue_hooks": 1, - "Job.destroy": 1, - "Plugin.after_dequeue_hooks": 1, - "klass.instance_variable_get": 1, - "@queue": 1, - "klass.respond_to": 1, - "klass.queue": 1, - "reserve": 1, - "Job.reserve": 1, - "validate": 1, - "NoQueueError.new": 1, - "klass.to_s.empty": 1, - "NoClassError.new": 1, - "workers": 2, - "Worker.all": 1, - "working": 2, - "Worker.working": 1, - "remove_worker": 1, - "worker_id": 2, - "worker": 1, - "Worker.find": 1, - "worker.unregister_worker": 1, - "pending": 1, - "queues.inject": 1, + "IMP": 4, + "method_setImplementation": 2, + "Method": 2, "m": 3, - "k": 2, - "processed": 2, - "Stat": 2, - "queues.size": 1, - "workers.size.to_i": 1, - "working.size": 1, - "servers": 1, - "environment": 2, - "keys": 6, - "redis.keys": 1, - "key.sub": 1, - "SHEBANG#!ruby": 2, - "SHEBANG#!rake": 1, - "Sinatra": 2, - "Request": 2, - "<": 2, - "Rack": 1, - "accept": 1, - "@env": 2, - "entries": 1, - ".to_s.split": 1, - "entries.map": 1, - "accept_entry": 1, - ".sort_by": 1, - "first": 1, - "preferred_type": 1, - "self.defer": 1, - "pattern": 1, - "path.respond_to": 5, - "path.keys": 1, - "path.names": 1, - "TypeError": 1, - "URI": 3, - "URI.const_defined": 1, - "Parser": 1, - "Parser.new": 1, - "encoded": 1, - "char": 4, - "enc": 5, - "URI.escape": 1, - "helpers": 3, - "data": 1, - "reset": 1, - "set": 36, - "development": 6, - ".to_sym": 1, - "raise_errors": 1, - "Proc.new": 11, - "test": 5, - "dump_errors": 1, - "show_exceptions": 1, - "sessions": 1, - "logging": 2, - "protection": 1, - "method_override": 4, - "use_code": 1, - "default_encoding": 1, - "add_charset": 1, - "javascript": 1, - "xml": 2, - "xhtml": 1, - "json": 1, - "settings.add_charset": 1, - "text": 3, - "session_secret": 3, - "SecureRandom.hex": 1, - "NotImplementedError": 1, - "Kernel.rand": 1, - "**256": 1, - "alias_method": 2, - "methodoverride": 2, - "run": 2, - "via": 1, - "at": 1, - "running": 2, - "built": 1, - "now": 1, - "http": 1, - "webrick": 1, - "bind": 1, - "ruby_engine": 6, - "defined": 1, - "RUBY_ENGINE": 2, - "server.unshift": 6, - "ruby_engine.nil": 1, - "absolute_redirects": 1, - "prefixed_redirects": 1, - "empty_path_info": 1, - "app_file": 4, - "root": 5, - "File.expand_path": 1, - "views": 1, - "reload_templates": 1, - "lock": 1, - "threaded": 1, - "public_folder": 3, - "static": 1, - "File.exist": 1, - "static_cache_control": 1, - "error": 3, - "Exception": 1, - "response.status": 1, - "content_type": 3, - "configure": 2, - "get": 2, - "filename": 2, - "png": 1, - "send_file": 1, - "NotFound": 1, - "HTML": 2, - "": 1, - "html": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "

": 1, - "doesn": 1, - "rsquo": 1, - "know": 1, - "this": 2, - "ditty.": 1, - "

": 1, - "": 1, - "src=": 1, - "
": 1, - "id=": 1, - "Try": 1, - "
": 1,
-      "request.request_method.downcase": 1,
-      "nend": 1,
-      "
": 1, - "
": 1, - "": 1, - "": 1, - "Application": 2, - "Base": 2, - "super": 3, - "self.register": 2, - "extensions": 6, - "added_methods": 2, - "extensions.map": 1, - "m.public_instance_methods": 1, - ".flatten": 1, - "Delegator.delegate": 1, - "Delegator": 1, - "self.delegate": 1, - "methods": 1, - "methods.each": 1, - "method_name": 5, - "define_method": 1, - "respond_to": 1, - "Delegator.target.send": 1, - "delegate": 1, - "put": 1, - "post": 1, - "delete": 1, - "template": 1, - "layout": 1, - "before": 1, - "after": 1, - "not_found": 1, - "mime_type": 1, - "enable": 1, - "disable": 1, - "use": 1, - "production": 1, - "settings": 2, - "target": 1, - "self.target": 1, - "Wrapper": 1, - "stack": 2, - "instance": 2, - "@stack": 1, - "@instance": 2, - "@instance.settings": 1, - "call": 1, - "env": 2, - "@stack.call": 1, - "self.new": 1, - "base": 4, - "base.class_eval": 1, - "Delegator.target.register": 1, - "self.helpers": 1, - "Delegator.target.helpers": 1, - "self.use": 1, - "Delegator.target.use": 1, - "SHEBANG#!python": 1 + "oi": 2, + "method_imp": 2, + "namespace": 1, + "WebCore": 1, + "ENABLE": 10, + "DRAG_SUPPORT": 7, + "double": 1, + "EventHandler": 30, + "TextDragDelay": 1, + "RetainPtr": 4, + "": 4, + "currentNSEventSlot": 6, + "DEFINE_STATIC_LOCAL": 1, + "event": 30, + "NSEvent": 21, + "*EventHandler": 2, + "currentNSEvent": 13, + ".get": 1, + "CurrentEventScope": 14, + "WTF_MAKE_NONCOPYABLE": 1, + "public": 1, + "private": 1, + "m_savedCurrentEvent": 3, + "NDEBUG": 2, + "m_event": 3, + "*event": 11, + "ASSERT": 13, + "bool": 26, + "wheelEvent": 5, + "Page*": 7, + "page": 33, + "m_frame": 24, + "false": 40, + "scope": 6, + "PlatformWheelEvent": 2, + "chrome": 8, + "platformPageClient": 4, + "handleWheelEvent": 2, + "wheelEvent.isAccepted": 1, + "PassRefPtr": 2, + "": 1, + "currentKeyboardEvent": 1, + "NSApp": 5, + "currentEvent": 2, + "NSKeyDown": 4, + "PlatformKeyboardEvent": 6, + "platformEvent": 2, + "platformEvent.disambiguateKeyDownEvent": 1, + "RawKeyDown": 1, + "KeyboardEvent": 2, + "create": 3, + "document": 6, + "defaultView": 2, + "NSKeyUp": 3, + "keyEvent": 2, + "BEGIN_BLOCK_OBJC_EXCEPTIONS": 13, + "END_BLOCK_OBJC_EXCEPTIONS": 13, + "focusDocumentView": 1, + "FrameView*": 7, + "frameView": 4, + "NSView": 14, + "*documentView": 1, + "documentView": 2, + "focusNSView": 1, + "focusController": 1, + "setFocusedFrame": 1, + "passWidgetMouseDownEventToWidget": 3, + "MouseEventWithHitTestResults": 7, + "RenderObject*": 2, + "target": 6, + "targetNode": 3, + "renderer": 7, + "isWidget": 2, + "passMouseDownEventToWidget": 3, + "toRenderWidget": 3, + "widget": 18, + "RenderWidget*": 1, + "renderWidget": 2, + "lastEventIsMouseUp": 2, + "*currentEventAfterHandlingMouseDown": 1, + "currentEventAfterHandlingMouseDown": 3, + "NSLeftMouseUp": 3, + "timestamp": 8, + "Widget*": 3, + "pWidget": 2, + "RefPtr": 1, + "": 1, + "LOG_ERROR": 1, + "true": 29, + "platformWidget": 6, + "*nodeView": 1, + "nodeView": 9, + "superview": 5, + "*view": 4, + "hitTest": 2, + "convertPoint": 2, + "locationInWindow": 4, + "client": 3, + "firstResponder": 1, + "clickCount": 8, + "<=>": 1, + "1": 1, + "acceptsFirstResponder": 1, + "needsPanelToBecomeKey": 1, + "makeFirstResponder": 1, + "wasDeferringLoading": 3, + "defersLoading": 1, + "setDefersLoading": 2, + "m_sendingEventToSubview": 24, + "*outerView": 1, + "getOuterView": 1, + "beforeMouseDown": 1, + "outerView": 2, + "widget.get": 2, + "mouseDown": 2, + "afterMouseDown": 1, + "m_mouseDownView": 5, + "m_mouseDownWasInSubframe": 7, + "m_mousePressed": 2, + "findViewInSubviews": 3, + "*superview": 1, + "*target": 1, + "NSEnumerator": 1, + "*e": 1, + "subviews": 1, + "objectEnumerator": 1, + "*subview": 1, + "subview": 3, + "e": 1, + "nextObject": 1, + "mouseDownViewIfStillGood": 3, + "*mouseDownView": 1, + "mouseDownView": 3, + "topFrameView": 3, + "*topView": 1, + "topView": 2, + "eventLoopHandleMouseDragged": 1, + "mouseDragged": 2, + "eventLoopHandleMouseUp": 1, + "mouseUp": 2, + "passSubframeEventToSubframe": 4, + "Frame*": 5, + "subframe": 13, + "HitTestResult*": 2, + "hoveredNode": 5, + "NSLeftMouseDragged": 1, + "NSOtherMouseDragged": 1, + "NSRightMouseDragged": 1, + "dragController": 1, + "didInitiateDrag": 1, + "NSMouseMoved": 2, + "eventHandler": 6, + "handleMouseMoveEvent": 3, + "currentPlatformMouseEvent": 8, + "NSLeftMouseDown": 3, + "Node*": 1, + "node": 3, + "isFrameView": 2, + "handleMouseReleaseEvent": 3, + "originalNSScrollViewScrollWheel": 4, + "_nsScrollViewScrollWheelShouldRetainSelf": 3, + "selfRetainingNSScrollViewScrollWheel": 3, + "NSScrollView": 2, + "SEL": 2, + "nsScrollViewScrollWheelShouldRetainSelf": 2, + "isMainThread": 3, + "setNSScrollViewScrollWheelShouldRetainSelf": 3, + "shouldRetain": 2, + "method": 2, + "class_getInstanceMethod": 1, + "objc_getRequiredClass": 1, + "scrollWheel": 2, + "reinterpret_cast": 1, + "": 1, + "*self": 1, + "selector": 2, + "shouldRetainSelf": 3, + "retain": 1, + "release": 1, + "passWheelEventToWidget": 1, + "NSView*": 1, + "static_cast": 1, + "": 1, + "frame": 3, + "NSScrollWheel": 1, + "v": 6, + "loader": 1, + "resetMultipleFormSubmissionProtection": 1, + "handleMousePressEvent": 2, + "handleMouseDoubleClickEvent": 1, + "sendFakeEventsAfterWidgetTracking": 1, + "*initiatingEvent": 1, + "eventType": 5, + "initiatingEvent": 22, + "*fakeEvent": 1, + "fakeEvent": 6, + "mouseEventWithType": 2, + "location": 3, + "modifierFlags": 6, + "windowNumber": 6, + "context": 6, + "eventNumber": 3, + "pressure": 3, + "postEvent": 3, + "atStart": 3, + "keyEventWithType": 1, + "charactersIgnoringModifiers": 2, + "isARepeat": 2, + "keyCode": 2, + "window": 1, + "convertScreenToBase": 1, + "mouseLocation": 1, + "mouseMoved": 2, + "frameHasPlatformWidget": 4, + "passMousePressEventToSubframe": 1, + "mev": 6, + "mev.event": 3, + "passMouseMoveEventToSubframe": 1, + "m_mouseDownMayStartDrag": 1, + "passMouseReleaseEventToSubframe": 1, + "PlatformMouseEvent": 5, + "*windowView": 1, + "windowView": 2, + "CONTEXT_MENUS": 2, + "sendContextMenuEvent": 2, + "eventMayStartDrag": 2, + "eventActivatedView": 1, + "m_activationEventNumber": 1, + "event.eventNumber": 1, + "": 1, + "createDraggingClipboard": 1, + "NSPasteboard": 2, + "*pasteboard": 1, + "pasteboardWithName": 1, + "NSDragPboard": 1, + "pasteboard": 2, + "declareTypes": 1, + "ClipboardMac": 1, + "Clipboard": 1, + "DragAndDrop": 1, + "ClipboardWritable": 1, + "tabsToAllFormControls": 1, + "KeyboardEvent*": 1, + "KeyboardUIMode": 1, + "keyboardUIMode": 5, + "handlingOptionTab": 4, + "isKeyboardOptionTab": 1, + "KeyboardAccessTabsToLinks": 2, + "KeyboardAccessFull": 1, + "needsKeyboardEventDisambiguationQuirks": 2, + "Document*": 1, + "applicationIsSafari": 1, + "url": 2, + ".protocolIs": 2, + "Settings*": 1, + "settings": 5, + "DASHBOARD_SUPPORT": 1, + "usesDashboardBackwardCompatibilityMode": 1, + "accessKeyModifiers": 1, + "AXObjectCache": 1, + "accessibilityEnhancedUserInterfaceEnabled": 1, + "CtrlKey": 2, + "AltKey": 1 }, "Rust": { "//": 20, @@ -59558,2681 +58781,7942 @@ "running_threads2": 2, "port2.recv": 1 }, - "SAS": { - "libname": 1, - "source": 1, - "data": 6, - "work.working_copy": 5, - ";": 22, - "set": 3, - "source.original_file.sas7bdat": 1, - "run": 6, - "if": 2, - "Purge": 1, - "then": 2, - "delete": 1, - "ImportantVariable": 1, - ".": 1, - "MissingFlag": 1, - "proc": 2, - "surveyselect": 1, - "work.data": 1, - "out": 2, - "work.boot": 2, - "method": 1, - "urs": 1, - "reps": 1, - "seed": 2, - "sampsize": 1, - "outhits": 1, - "samplingunit": 1, - "Site": 1, - "PROC": 1, - "MI": 1, - "work.bootmi": 2, - "nimpute": 1, - "round": 1, - "By": 2, - "Replicate": 2, - "VAR": 1, - "Variable1": 2, - "Variable2": 2, - "logistic": 1, - "descending": 1, - "_Imputation_": 1, - "model": 1, - "Outcome": 1, - "/": 1, - "risklimits": 1 - }, - "Sass": { - "blue": 7, - "#3bbfce": 2, - ";": 6, - "margin": 8, - "px": 3, - ".content_navigation": 1, - "{": 2, - "color": 4, - "}": 2, - ".border": 2, - "padding": 2, - "/": 4, - "border": 3, - "solid": 1, - ".content": 1, - "-": 3, - "navigation": 1, - "darken": 1, - "(": 1, - "%": 1, - ")": 1 - }, - "Scala": { - "SHEBANG#!sh": 2, - "exec": 2, - "scala": 2, - "#": 2, - "object": 3, - "Beers": 1, - "extends": 1, - "Application": 1, - "{": 21, - "def": 10, - "bottles": 3, - "(": 67, - "qty": 12, - "Int": 11, - "f": 4, - "String": 5, - ")": 67, - "//": 29, - "higher": 1, - "-": 5, - "order": 1, - "functions": 2, - "match": 2, - "case": 8, - "+": 49, - "x": 3, - "}": 22, - "beers": 3, - "sing": 3, - "implicit": 3, - "song": 3, - "takeOne": 2, - "nextQty": 2, - "nested": 1, - "if": 2, - "else": 2, - "refrain": 2, - ".capitalize": 1, - "tail": 1, - "recursion": 1, - "val": 6, - "headOfSong": 1, - "println": 8, - "parameter": 1, - "name": 4, - "version": 1, - "organization": 1, - "libraryDependencies": 3, - "%": 12, - "Seq": 3, - "libosmVersion": 4, - "from": 1, - "maxErrors": 1, - "pollInterval": 1, - "javacOptions": 1, - "scalacOptions": 1, - "scalaVersion": 1, - "initialCommands": 2, - "in": 12, - "console": 1, - "mainClass": 2, - "Compile": 4, - "packageBin": 1, - "Some": 6, - "run": 1, - "watchSources": 1, - "<+=>": 1, - "baseDirectory": 1, - "map": 1, - "_": 2, - "input": 1, - "add": 2, - "a": 4, - "maven": 2, - "style": 2, - "repository": 2, - "resolvers": 2, - "at": 4, - "url": 3, - "sequence": 1, - "of": 1, - "repositories": 1, - "define": 1, - "the": 5, - "to": 7, - "publish": 1, - "publishTo": 1, - "set": 2, - "Ivy": 1, - "logging": 1, - "be": 1, - "highest": 1, - "level": 1, - "ivyLoggingLevel": 1, - "UpdateLogging": 1, - "Full": 1, - "disable": 1, - "updating": 1, - "dynamic": 1, - "revisions": 1, - "including": 1, - "SNAPSHOT": 1, - "versions": 1, - "offline": 1, - "true": 5, - "prompt": 1, - "for": 1, - "this": 1, - "build": 1, - "include": 1, - "project": 1, - "id": 1, - "shellPrompt": 2, - "ThisBuild": 1, - "state": 3, - "Project.extract": 1, - ".currentRef.project": 1, - "System.getProperty": 1, - "showTiming": 1, - "false": 7, - "showSuccess": 1, - "timingFormat": 1, - "import": 9, - "java.text.DateFormat": 1, - "DateFormat.getDateTimeInstance": 1, - "DateFormat.SHORT": 2, - "crossPaths": 1, - "fork": 2, - "Test": 3, - "javaOptions": 1, - "parallelExecution": 2, - "javaHome": 1, - "file": 3, - "scalaHome": 1, - "aggregate": 1, - "clean": 1, - "logLevel": 2, - "compile": 1, - "Level.Warn": 2, - "persistLogLevel": 1, - "Level.Debug": 1, - "traceLevel": 2, - "unmanagedJars": 1, - "publishArtifact": 2, - "packageDoc": 2, - "artifactClassifier": 1, - "retrieveManaged": 1, - "credentials": 2, - "Credentials": 2, - "Path.userHome": 1, - "/": 2, - "math.random": 1, - "scala.language.postfixOps": 1, - "scala.util._": 1, - "scala.util.": 1, - "Try": 1, - "Success": 2, - "Failure": 2, - "scala.concurrent._": 1, - "duration._": 1, - "ExecutionContext.Implicits.global": 1, - "scala.concurrent.": 1, - "ExecutionContext": 1, - "CanAwait": 1, - "OnCompleteRunnable": 1, - "TimeoutException": 1, - "ExecutionException": 1, - "blocking": 3, - "node11": 1, - "Welcome": 1, - "Scala": 1, - "worksheet": 1, - "retry": 3, - "[": 11, - "T": 8, - "]": 11, - "n": 3, - "block": 8, - "Future": 5, - "ns": 1, - "Iterator": 2, - ".iterator": 1, - "attempts": 1, - "ns.map": 1, - "failed": 2, - "Future.failed": 1, - "new": 1, - "Exception": 2, - "attempts.foldLeft": 1, - "fallbackTo": 1, - "scala.concurrent.Future": 1, - "scala.concurrent.Fut": 1, - "|": 19, - "ure": 1, - "rb": 3, - "i": 9, - "Thread.sleep": 2, - "*random.toInt": 1, - "i.toString": 5, - "ri": 2, - "onComplete": 1, - "s": 1, - "s.toString": 1, - "t": 1, - "t.toString": 1, - "r": 1, - "r.toString": 1, - "Unit": 1, - "toList": 1, - ".foreach": 1, - "Iteration": 5, - "java.lang.Exception": 1, - "Hi": 10, - "HelloWorld": 1, - "main": 1, - "args": 1, - "Array": 1 - }, - "Scaml": { - "%": 1, - "p": 1, - "Hello": 1, - "World": 1 - }, - "Scheme": { - "(": 366, - "import": 1, - "rnrs": 1, - ")": 380, - "only": 1, - "surfage": 4, - "s1": 1, - "lists": 1, - "filter": 4, - "-": 192, - "map": 4, - "gl": 12, - "glut": 2, - "dharmalab": 2, - "records": 1, - "define": 30, - "record": 5, - "type": 5, - "math": 1, - "basic": 2, - "agave": 4, - "glu": 1, - "compat": 1, - "geometry": 1, - "pt": 49, - "glamour": 2, - "window": 2, - "misc": 1, - "s19": 1, - "time": 24, - "s27": 1, - "random": 27, - "bits": 1, - "s42": 1, - "eager": 1, - "comprehensions": 1, - ";": 1684, - "utilities": 1, - "say": 9, - ".": 2, - "args": 2, - "for": 7, - "each": 7, - "display": 4, - "newline": 2, - "translate": 6, - "p": 6, - "glTranslated": 1, - "x": 10, - "y": 3, - "radians": 8, - "/": 7, - "pi": 2, - "degrees": 2, - "angle": 6, - "a": 19, - "cos": 1, - "sin": 1, - "current": 15, - "in": 14, - "nanoseconds": 2, - "let": 2, - "val": 3, - "+": 28, - "second": 1, - "nanosecond": 1, - "seconds": 12, - "micro": 1, - "milli": 1, - "base": 2, - "step": 1, - "score": 5, - "level": 5, - "ships": 1, - "spaceship": 5, - "fields": 4, - "mutable": 14, - "pos": 16, - "vel": 4, - "theta": 1, - "force": 1, - "particle": 8, - "birth": 2, - "lifetime": 1, - "color": 2, - "particles": 11, - "asteroid": 14, - "radius": 6, - "number": 3, - "of": 3, - "starting": 3, - "asteroids": 15, - "#f": 5, - "bullet": 16, - "pack": 12, - "is": 8, - "initialize": 1, - "size": 1, - "title": 1, - "reshape": 1, - "width": 8, - "height": 8, - "source": 2, - "randomize": 1, - "default": 1, - "wrap": 4, - "mod": 2, - "ship": 8, - "make": 11, - "ammo": 9, - "set": 19, - "list": 6, - "ec": 6, - "i": 6, - "inexact": 16, - "integer": 25, - "buffered": 1, - "procedure": 1, - "lambda": 12, - "background": 1, - "glColor3f": 5, - "matrix": 5, - "excursion": 5, - "ship.pos": 5, - "glRotated": 2, - "ship.theta": 10, - "glutWireCone": 1, - "par": 6, - "c": 4, - "vector": 6, - "ref": 3, - "glutWireSphere": 3, - "bullets": 7, - "pack.pos": 3, - "glutWireCube": 1, - "last": 3, - "dt": 7, - "update": 2, - "system": 2, - "pt*n": 8, - "ship.vel": 5, - "pack.vel": 1, - "cond": 2, - "par.birth": 1, - "par.lifetime": 1, - "else": 2, - "par.pos": 2, - "par.vel": 1, - "bullet.birth": 1, - "bullet.pos": 2, - "bullet.vel": 1, - "a.pos": 2, - "a.vel": 1, - "if": 1, - "<": 1, - "a.radius": 1, - "contact": 2, - "b": 4, - "when": 5, - "<=>": 3, - "distance": 3, - "begin": 2, - "1": 2, - "f": 1, - "append": 4, - "4": 1, - "50": 4, - "0": 7, - "100": 6, - "2": 1, - "n": 2, - "null": 1, - "10": 1, - "5": 1, - "glutIdleFunc": 1, - "glutPostRedisplay": 1, - "glutKeyboardFunc": 1, - "key": 2, - "case": 1, - "char": 1, - "#": 6, - "w": 1, - "d": 1, - "s": 1, - "space": 1, - "cons": 1, - "glutMainLoop": 1, - "library": 1, - "libs": 1, - "export": 1, - "list2": 2, - "objs": 2, - "should": 1, - "not": 1, - "be": 1, - "exported": 1 - }, - "Scilab": { - "function": 1, - "[": 1, - "a": 4, - "b": 4, - "]": 1, - "myfunction": 1, - "(": 7, - "d": 2, - "e": 4, - "f": 2, - ")": 7, - "+": 5, - "%": 4, - "pi": 3, - ";": 7, - "cos": 1, - "cosh": 1, - "if": 1, - "then": 1, - "-": 2, - "e.field": 1, - "else": 1, - "home": 1, - "return": 1, - "end": 1, - "myvar": 1, - "endfunction": 1, - "disp": 1, - "assert_checkequal": 1, - "assert_checkfalse": 1 - }, - "SCSS": { - "blue": 4, - "#3bbfce": 1, - ";": 7, - "margin": 4, - "px": 1, - ".content": 1, - "-": 3, - "navigation": 1, - "{": 2, - "border": 2, - "color": 3, - "darken": 1, - "(": 1, - "%": 1, - ")": 1, - "}": 2, - ".border": 1, - "padding": 1, - "/": 2 - }, - "Shell": { - "SHEBANG#!bash": 8, - "typeset": 5, - "-": 391, - "i": 2, - "n": 22, - "bottles": 6, - "no": 16, - "while": 3, - "[": 85, - "]": 85, - "do": 8, - "echo": 71, - "case": 9, - "{": 63, - "}": 61, - "in": 25, - ")": 154, - "%": 5, - "s": 14, - ";": 138, - "esac": 7, - "done": 8, - "exit": 10, - "/usr/bin/clear": 2, - "##": 28, - "if": 39, - "z": 12, - "then": 41, - "export": 25, - "SCREENDIR": 2, - "fi": 34, - "PATH": 14, - "/usr/local/bin": 6, - "/usr/local/sbin": 6, - "/usr/xpg4/bin": 4, - "/usr/sbin": 6, - "/usr/bin": 8, - "/usr/sfw/bin": 4, - "/usr/ccs/bin": 4, - "/usr/openwin/bin": 4, - "/opt/mysql/current/bin": 4, - "MANPATH": 2, - "/usr/local/man": 2, - "/usr/share/man": 2, - "Random": 2, - "ENV...": 2, - "TERM": 4, - "COLORTERM": 2, - "CLICOLOR": 2, - "#": 53, - "can": 3, - "be": 3, - "set": 21, - "to": 33, - "anything": 2, - "actually": 2, - "DISPLAY": 2, - "r": 17, - "&&": 65, - ".": 5, - "function": 6, - "ls": 6, - "command": 5, - "Fh": 2, - "l": 8, - "list": 3, - "long": 2, - "format...": 2, - "ll": 2, - "|": 17, - "less": 2, - "XF": 2, - "pipe": 2, - "into": 3, - "#CDPATH": 2, - "HISTIGNORE": 2, - "HISTCONTROL": 2, - "ignoreboth": 2, - "shopt": 13, - "cdspell": 2, - "extglob": 2, - "progcomp": 2, - "complete": 82, - "f": 68, - "X": 54, - "bunzip2": 2, - "bzcat": 2, - "bzcmp": 2, - "bzdiff": 2, - "bzegrep": 2, - "bzfgrep": 2, - "bzgrep": 2, - "unzip": 2, - "zipinfo": 2, - "compress": 2, - "znew": 2, - "gunzip": 2, - "zcmp": 2, - "zdiff": 2, - "zcat": 2, - "zegrep": 2, - "zfgrep": 2, - "zgrep": 2, - "zless": 2, - "zmore": 2, - "uncompress": 2, - "ee": 2, - "display": 2, - "xv": 2, - "qiv": 2, - "gv": 2, - "ggv": 2, - "xdvi": 2, - "dvips": 2, - "dviselect": 2, - "dvitype": 2, - "acroread": 2, - "xpdf": 2, - "makeinfo": 2, - "texi2html": 2, - "tex": 2, - "latex": 2, - "slitex": 2, - "jadetex": 2, - "pdfjadetex": 2, - "pdftex": 2, - "pdflatex": 2, - "texi2dvi": 2, - "mpg123": 2, - "mpg321": 2, - "xine": 2, - "aviplay": 2, - "realplay": 2, - "xanim": 2, - "ogg123": 2, - "gqmpeg": 2, - "freeamp": 2, - "xmms": 2, - "xfig": 2, - "timidity": 2, - "playmidi": 2, - "vi": 2, - "vim": 2, - "gvim": 2, - "rvim": 2, - "view": 2, - "rview": 2, - "rgvim": 2, - "rgview": 2, - "gview": 2, - "emacs": 2, - "wine": 2, - "bzme": 2, - "netscape": 2, - "mozilla": 2, - "lynx": 2, - "opera": 2, - "w3m": 2, - "galeon": 2, - "curl": 8, - "dillo": 2, - "elinks": 2, - "links": 2, - "u": 2, - "su": 2, - "passwd": 2, - "groups": 2, - "user": 2, - "commands": 8, - "see": 4, - "only": 6, - "users": 2, - "A": 10, - "stopped": 4, - "P": 4, - "bg": 4, - "completes": 10, - "with": 12, - "jobs": 4, - "j": 2, - "fg": 2, - "disown": 2, - "other": 2, - "job": 3, - "v": 11, - "readonly": 4, - "unset": 10, - "and": 5, - "shell": 4, - "variables": 2, - "setopt": 8, - "options": 8, - "helptopic": 2, - "help": 5, - "helptopics": 2, - "a": 12, - "unalias": 4, - "aliases": 2, - "binding": 2, - "bind": 4, - "readline": 2, - "bindings": 2, - "(": 107, - "make": 6, - "this": 6, - "more": 3, - "intelligent": 2, - "c": 2, - "type": 5, - "which": 10, - "man": 6, - "#sudo": 2, - "on": 4, - "d": 9, - "pushd": 2, - "cd": 11, - "rmdir": 2, - "Make": 2, - "directory": 5, - "directories": 2, - "W": 2, - "alias": 42, - "filenames": 2, - "for": 7, - "PS1": 2, - "..": 2, - "cd..": 2, - "t": 3, - "csh": 2, - "is": 11, - "same": 2, - "as": 2, - "bash...": 2, - "quit": 2, - "q": 8, - "even": 3, - "shorter": 2, - "D": 2, - "rehash": 2, - "source": 7, - "/.bashrc": 3, - "after": 2, - "I": 2, - "edit": 2, - "it": 2, - "pg": 2, - "patch": 2, - "sed": 2, - "awk": 2, - "diff": 2, - "grep": 8, - "find": 2, - "ps": 2, - "whoami": 2, - "ping": 2, - "histappend": 2, - "PROMPT_COMMAND": 2, - "umask": 2, - "path": 13, - "/opt/local/bin": 2, - "/opt/local/sbin": 2, - "/bin": 4, - "prompt": 2, - "history": 18, - "endif": 2, - "stty": 2, - "istrip": 2, - "dirpersiststore": 2, - "##############################################################################": 16, - "#Import": 2, - "the": 17, - "agnostic": 2, - "Bash": 3, - "or": 3, - "Zsh": 2, - "environment": 2, - "config": 4, - "/.profile": 2, - "HISTSIZE": 2, - "#How": 2, - "many": 2, - "lines": 2, - "of": 6, - "keep": 3, - "memory": 3, - "HISTFILE": 2, - "/.zsh_history": 2, - "#Where": 2, - "save": 4, - "disk": 5, - "SAVEHIST": 2, - "#Number": 2, - "entries": 2, - "HISTDUP": 2, - "erase": 2, - "#Erase": 2, - "duplicates": 2, - "file": 9, - "appendhistory": 2, - "#Append": 2, - "overwriting": 2, - "sharehistory": 2, - "#Share": 2, - "across": 2, - "terminals": 2, - "incappendhistory": 2, - "#Immediately": 2, - "append": 2, - "not": 2, - "just": 2, - "when": 2, - "term": 2, - "killed": 2, - "#.": 2, - "/.dotfiles/z": 4, - "zsh/z.sh": 2, - "#function": 2, - "precmd": 2, - "rupa/z.sh": 2, - "fpath": 6, - "HOME/.zsh/func": 2, - "U": 2, - "docker": 1, - "version": 12, - "from": 1, - "ubuntu": 1, - "maintainer": 1, - "Solomon": 1, - "Hykes": 1, - "": 1, - "run": 13, - "apt": 6, - "get": 6, - "install": 8, - "y": 5, - "git": 16, - "https": 2, - "//go.googlecode.com/files/go1.1.1.linux": 1, - "amd64.tar.gz": 1, - "tar": 1, - "C": 1, - "/usr/local": 1, - "xz": 1, - "env": 4, - "/usr/local/go/bin": 2, - "/sbin": 2, - "GOPATH": 1, - "/go": 1, - "CGO_ENABLED": 1, - "/tmp": 1, - "t.go": 1, - "go": 2, - "test": 1, - "PKG": 12, - "github.com/kr/pty": 1, - "REV": 6, - "c699": 1, - "clone": 5, - "http": 3, - "//": 3, - "/go/src/": 6, - "checkout": 3, - "github.com/gorilla/context/": 1, - "d61e5": 1, - "github.com/gorilla/mux/": 1, - "b36453141c": 1, - "iptables": 1, - "/etc/apt/sources.list": 1, - "update": 2, - "lxc": 1, - "aufs": 1, - "tools": 1, - "add": 1, - "/go/src/github.com/dotcloud/docker": 1, - "/go/src/github.com/dotcloud/docker/docker": 1, - "ldflags": 1, - "/go/bin": 1, - "cmd": 1, - "pkgname": 1, - "stud": 4, - "pkgver": 1, - "pkgrel": 1, - "pkgdesc": 1, - "arch": 1, - "i686": 1, - "x86_64": 1, - "url": 4, - "license": 1, - "depends": 1, - "libev": 1, - "openssl": 1, - "makedepends": 1, - "provides": 1, - "conflicts": 1, - "_gitroot": 1, - "//github.com/bumptech/stud.git": 1, - "_gitname": 1, - "build": 2, - "msg": 4, - "pull": 3, - "origin": 1, - "else": 10, - "rm": 2, - "rf": 1, - "package": 1, - "PREFIX": 1, - "/usr": 1, - "DESTDIR": 1, - "Dm755": 1, - "init.stud": 1, - "mkdir": 2, - "p": 2, - "script": 1, - "dotfile": 1, - "repository": 3, - "does": 1, - "lot": 1, - "fun": 2, - "stuff": 3, - "like": 1, - "turning": 1, - "normal": 1, - "dotfiles": 1, - "eg": 1, - ".bashrc": 1, - "symlinks": 1, - "away": 1, - "optionally": 1, - "moving": 1, - "old": 4, - "files": 1, - "so": 1, - "that": 1, - "they": 1, - "preserved": 1, - "setting": 2, - "up": 1, - "cron": 1, - "automate": 1, - "aforementioned": 1, - "maybe": 1, - "some": 1, - "nocasematch": 1, - "This": 1, - "makes": 1, - "pattern": 1, - "matching": 1, - "insensitive": 1, - "POSTFIX": 1, - "URL": 1, - "PUSHURL": 1, - "overwrite": 3, - "true": 2, - "print_help": 2, - "e": 4, - "opt": 3, - "@": 3, - "k": 1, - "local": 22, - "false": 2, - "h": 3, - ".*": 2, - "o": 3, - "continue": 1, - "mv": 1, - "ln": 1, - "remote.origin.url": 1, - "remote.origin.pushurl": 1, - "crontab": 1, - ".jobs.cron": 1, - "x": 1, - "system": 1, - "exec": 3, - "rbenv": 2, - "versions": 1, - "bare": 1, - "&": 5, - "prefix": 1, - "/dev/null": 6, - "rvm_ignore_rvmrc": 1, - "declare": 22, - "rvmrc": 3, - "rvm_rvmrc_files": 3, - "ef": 1, - "+": 1, - "GREP_OPTIONS": 1, - "printf": 4, - "rvm_path": 4, - "UID": 1, - "elif": 4, - "rvm_is_not_a_shell_function": 2, - "rvm_path/scripts": 1, - "rvm": 1, - "sbt_release_version": 2, - "sbt_snapshot_version": 2, - "SNAPSHOT": 3, - "sbt_jar": 3, - "sbt_dir": 2, - "sbt_create": 2, - "sbt_snapshot": 1, - "sbt_launch_dir": 3, - "scala_version": 3, - "java_home": 1, - "sbt_explicit_version": 7, - "verbose": 6, - "debug": 11, - "quiet": 6, - "build_props_sbt": 3, - "project/build.properties": 9, - "versionLine": 2, - "sbt.version": 3, - "versionString": 3, - "versionLine##sbt.version": 1, - "update_build_props_sbt": 2, - "ver": 5, - "return": 3, - "perl": 3, - "pi": 1, - "||": 12, - "Updated": 1, - "Previous": 1, - "value": 1, - "was": 1, - "sbt_version": 8, - "echoerr": 3, - "vlog": 1, - "dlog": 8, - "get_script_path": 2, - "L": 1, - "target": 1, - "readlink": 1, - "get_mem_opts": 3, - "mem": 4, - "perm": 6, - "/": 2, - "<": 2, - "codecache": 1, - "die": 2, - "make_url": 3, - "groupid": 1, - "category": 1, - "default_jvm_opts": 1, - "default_sbt_opts": 1, - "default_sbt_mem": 2, - "noshare_opts": 1, - "sbt_opts_file": 1, - "jvm_opts_file": 1, - "latest_28": 1, - "latest_29": 1, - "latest_210": 1, - "script_path": 1, - "script_dir": 1, - "script_name": 2, - "java_cmd": 2, - "java": 2, - "sbt_mem": 5, - "residual_args": 4, - "java_args": 3, - "scalac_args": 4, - "sbt_commands": 2, - "build_props_scala": 1, - "build.scala.versions": 1, - "versionLine##build.scala.versions": 1, - "execRunner": 2, - "arg": 3, - "sbt_groupid": 3, - "*": 11, - "org.scala": 4, - "tools.sbt": 3, - "sbt": 18, - "sbt_artifactory_list": 2, - "version0": 2, - "F": 1, - "pe": 1, - "make_release_url": 2, - "releases": 1, - "make_snapshot_url": 2, - "snapshots": 1, - "head": 1, - "jar_url": 1, - "jar_file": 1, - "download_url": 2, - "jar": 3, - "dirname": 1, - "fail": 1, - "silent": 1, - "output": 1, - "wget": 2, - "O": 1, - "acquire_sbt_jar": 1, - "sbt_url": 1, - "usage": 2, - "cat": 3, - "<<": 2, - "EOM": 3, - "Usage": 1, - "print": 1, - "message": 1, - "runner": 1, - "chattier": 1, - "log": 2, - "level": 2, - "Debug": 1, - "Error": 1, - "colors": 2, - "disable": 1, - "ANSI": 1, - "color": 1, - "codes": 1, - "create": 2, - "start": 1, - "current": 1, - "contains": 2, - "project": 1, - "dir": 3, - "": 3, - "global": 1, - "settings/plugins": 1, - "default": 4, - "/.sbt/": 1, - "": 1, - "boot": 3, - "shared": 1, - "/.sbt/boot": 1, - "series": 1, - "ivy": 2, - "Ivy": 1, - "/.ivy2": 1, - "": 1, - "share": 2, - "use": 1, - "all": 1, - "caches": 1, - "sharing": 1, - "offline": 3, - "put": 1, - "mode": 2, - "jvm": 2, - "": 1, - "Turn": 1, - "JVM": 1, - "debugging": 1, - "open": 1, - "at": 1, - "given": 2, - "port.": 1, - "batch": 2, - "Disable": 1, - "interactive": 1, - "The": 1, - "way": 1, - "accomplish": 1, - "pre": 1, - "there": 2, - "build.properties": 1, - "an": 1, - "property": 1, - "disk.": 1, - "That": 1, - "scalacOptions": 3, - "S": 2, - "stripped": 1, - "In": 1, - "duplicated": 1, - "conflicting": 1, - "order": 1, - "above": 1, - "shows": 1, - "precedence": 1, - "JAVA_OPTS": 1, - "lowest": 1, - "line": 1, - "highest.": 1, - "addJava": 9, - "addSbt": 12, - "addScalac": 2, - "addResidual": 2, - "addResolver": 1, - "addDebugger": 2, - "get_jvm_opts": 2, - "process_args": 2, - "require_arg": 12, - "gt": 1, - "shift": 28, - "integer": 1, - "inc": 1, - "port": 1, - "snapshot": 1, - "launch": 1, - "scala": 3, - "home": 2, - "D*": 1, - "J*": 1, - "S*": 1, - "sbtargs": 3, - "IFS": 1, - "read": 1, - "<\"$sbt_opts_file\">": 1, - "process": 1, - "combined": 1, - "args": 2, - "reset": 1, - "residuals": 1, - "argumentCount=": 1, - "we": 1, - "were": 1, - "any": 1, - "opts": 1, - "eq": 1, - "0": 1, - "ThisBuild": 1, - "Update": 1, - "properties": 1, - "explicit": 1, - "gives": 1, - "us": 1, - "choice": 1, - "Detected": 1, - "Overriding": 1, - "alert": 1, - "them": 1, - "here": 1, - "argumentCount": 1, - "./build.sbt": 1, - "./project": 1, - "pwd": 1, - "doesn": 1, - "understand": 1, - "iflast": 1, - "#residual_args": 1, - "SHEBANG#!sh": 2, - "SHEBANG#!zsh": 2, - "name": 1, - "foodforthought.jpg": 1, - "name##*fo": 1 - }, - "ShellSession": { - "echo": 2, - "FOOBAR": 2, - "Hello": 2, - "World": 2, - "gem": 4, - "install": 4, - "nokogiri": 6, - "...": 4, - "Building": 2, - "native": 2, - "extensions.": 2, - "This": 4, - "could": 2, - "take": 2, - "a": 4, - "while...": 2, - "checking": 1, - "for": 4, - "libxml/parser.h...": 1, - "***": 2, - "extconf.rb": 1, - "failed": 1, - "Could": 2, - "not": 2, - "create": 1, - "Makefile": 1, - "due": 1, - "to": 3, - "some": 1, - "reason": 2, - "probably": 1, - "lack": 1, - "of": 2, - "necessary": 1, - "libraries": 1, - "and/or": 1, - "headers.": 1, - "Check": 1, - "the": 2, - "mkmf.log": 1, - "file": 1, - "more": 1, - "details.": 1, - "You": 1, - "may": 1, - "need": 1, - "configuration": 1, - "options.": 1, - "brew": 2, - "tap": 2, - "homebrew/dupes": 1, - "Cloning": 1, - "into": 1, - "remote": 3, - "Counting": 1, - "objects": 3, - "done.": 4, - "Compressing": 1, - "%": 5, - "(": 6, - "/591": 1, - ")": 6, - "Total": 1, - "delta": 2, - "reused": 1, - "Receiving": 1, - "/1034": 1, - "KiB": 1, - "|": 1, - "bytes/s": 1, - "Resolving": 1, - "deltas": 1, - "/560": 1, - "Checking": 1, - "connectivity...": 1, - "done": 1, - "Warning": 1, - "homebrew/dupes/lsof": 1, - "over": 1, - "mxcl/master/lsof": 1, - "Tapped": 1, - "formula": 4, - "apple": 1, - "-": 12, - "gcc42": 1, - "Downloading": 1, - "http": 2, - "//r.research.att.com/tools/gcc": 1, - "darwin11.pkg": 1, - "########################################################################": 1, - "Caveats": 1, - "NOTE": 1, - "provides": 1, - "components": 1, - "that": 1, - "were": 1, - "removed": 1, - "from": 3, - "XCode": 2, - "in": 2, - "release.": 1, - "There": 1, - "is": 2, - "no": 1, - "this": 1, - "if": 1, - "you": 1, - "are": 1, - "using": 1, - "version": 1, - "prior": 1, - "contains": 1, - "compilers": 2, - "built": 2, - "Apple": 1, - "s": 1, - "GCC": 1, - "sources": 1, - "build": 1, - "available": 1, - "//opensource.apple.com/tarballs/gcc": 1, - "All": 1, - "have": 1, - "suffix.": 1, - "A": 1, - "GFortran": 1, - "compiler": 1, - "also": 1, - "included.": 1, - "Summary": 1, - "/usr/local/Cellar/apple": 1, - "gcc42/4.2.1": 1, - "files": 1, - "M": 1, - "seconds": 1, - "v": 1, - "Fetching": 1, - "Successfully": 1, - "installed": 2, - "Installing": 2, - "ri": 1, - "documentation": 2, - "RDoc": 1 - }, - "Shen": { - "*": 47, - "graph.shen": 1, - "-": 747, - "a": 30, - "library": 3, - "for": 12, - "graph": 52, - "definition": 1, - "and": 16, - "manipulation": 1, - "Copyright": 2, - "(": 267, - "C": 6, - ")": 250, - "Eric": 2, - "Schulte": 2, - "***": 5, - "License": 2, - "Redistribution": 2, - "use": 2, - "in": 13, - "source": 4, - "binary": 4, - "forms": 2, - "with": 8, - "or": 2, - "without": 2, - "modification": 2, - "are": 7, - "permitted": 2, - "provided": 4, - "that": 3, - "the": 29, - "following": 6, - "conditions": 6, - "met": 2, - "Redistributions": 4, - "of": 20, - "code": 2, - "must": 4, - "retain": 2, - "above": 4, - "copyright": 4, - "notice": 4, - "this": 4, - "list": 32, - "disclaimer.": 2, - "form": 2, - "reproduce": 2, - "disclaimer": 2, - "documentation": 2, - "and/or": 2, - "other": 2, - "materials": 2, - "distribution.": 2, - "THIS": 4, - "SOFTWARE": 4, - "IS": 2, - "PROVIDED": 2, - "BY": 2, - "THE": 10, - "COPYRIGHT": 4, - "HOLDERS": 2, - "AND": 8, - "CONTRIBUTORS": 4, - "ANY": 8, - "EXPRESS": 2, - "OR": 16, - "IMPLIED": 4, - "WARRANTIES": 4, - "INCLUDING": 6, - "BUT": 4, - "NOT": 4, - "LIMITED": 4, - "TO": 4, - "OF": 16, - "MERCHANTABILITY": 2, - "FITNESS": 2, - "FOR": 4, - "A": 32, - "PARTICULAR": 2, - "PURPOSE": 2, - "ARE": 2, - "DISCLAIMED.": 2, - "IN": 6, - "NO": 2, - "EVENT": 2, - "SHALL": 2, - "HOLDER": 2, - "BE": 2, - "LIABLE": 2, - "DIRECT": 2, - "INDIRECT": 2, - "INCIDENTAL": 2, - "SPECIAL": 2, - "EXEMPLARY": 2, - "CONSEQUENTIAL": 2, - "DAMAGES": 2, - "PROCUREMENT": 2, - "SUBSTITUTE": 2, - "GOODS": 2, - "SERVICES": 2, - ";": 12, - "LOSS": 2, - "USE": 4, - "DATA": 2, - "PROFITS": 2, - "BUSINESS": 2, - "INTERRUPTION": 2, - "HOWEVER": 2, - "CAUSED": 2, - "ON": 2, - "THEORY": 2, - "LIABILITY": 4, - "WHETHER": 2, - "CONTRACT": 2, - "STRICT": 2, - "TORT": 2, - "NEGLIGENCE": 2, - "OTHERWISE": 2, - "ARISING": 2, - "WAY": 2, - "OUT": 2, - "EVEN": 2, - "IF": 2, - "ADVISED": 2, - "POSSIBILITY": 2, - "SUCH": 2, - "DAMAGE.": 2, - "Commentary": 2, - "Graphs": 1, - "represented": 1, - "as": 2, - "two": 1, - "dictionaries": 1, - "one": 2, - "vertices": 17, - "edges.": 1, - "It": 1, - "is": 5, - "important": 1, - "to": 16, - "note": 1, - "dictionary": 3, - "implementation": 1, - "used": 2, - "able": 1, - "accept": 1, - "arbitrary": 1, - "data": 17, - "structures": 1, - "keys.": 1, - "This": 1, - "structure": 2, - "technically": 1, - "encodes": 1, - "hypergraphs": 1, - "generalization": 1, - "graphs": 1, - "which": 1, - "each": 1, - "edge": 32, - "may": 1, - "contain": 2, - "any": 1, - "number": 12, - ".": 1, - "Examples": 1, - "regular": 1, - "G": 25, - "hypergraph": 1, - "H": 3, - "corresponding": 1, - "given": 4, - "below.": 1, - "": 3, - "Vertices": 11, - "Edges": 9, - "+": 33, - "Graph": 65, - "hash": 8, - "|": 103, - "key": 9, - "value": 17, - "b": 13, - "c": 11, - "g": 19, - "[": 93, - "]": 91, + "Matlab": { + "function": 34, + "[": 311, "d": 12, + "d_mean": 3, + "d_std": 3, + "]": 311, + "normalize": 1, + "(": 1379, + ")": 1380, + "mean": 2, + ";": 909, + "-": 673, + "repmat": 2, + "size": 11, + "std": 1, + "d./": 1, + "end": 150, + "clear": 13, + "all": 15, + "%": 554, + "mu": 73, + "Earth": 2, + "Moon": 2, + "xl1": 13, + "yl1": 12, + "xl2": 9, + "yl2": 8, + "xl3": 8, + "yl3": 8, + "xl4": 10, + "yl4": 9, + "xl5": 8, + "yl5": 8, + "Lagr": 6, + "C": 13, + "*Potential": 5, + "x_0": 45, + "y_0": 29, + "vx_0": 37, + "vy_0": 22, + "sqrt": 14, + "+": 169, + "T": 22, + "C_star": 1, + "*Omega": 5, + "E": 8, + "C/2": 1, + "options": 14, + "odeset": 4, "e": 14, - "f": 10, - "Hypergraph": 1, - "h": 3, - "i": 3, - "j": 2, - "associated": 1, - "edge/vertex": 1, - "@p": 17, - "V": 48, - "#": 4, - "E": 20, - "edges": 17, - "M": 4, - "vertex": 29, - "associations": 1, - "size": 2, - "all": 3, - "stored": 1, - "dict": 39, - "sizeof": 4, - "int": 1, - "indices": 1, + "Integrate": 6, + "first": 3, + "orbit": 1, + "t0": 6, + "Y0": 6, + "ode113": 2, + "@f": 6, + "x0": 4, + "y0": 2, + "vx0": 2, + "vy0": 2, + "l0": 1, + "length": 49, + "delta_E0": 1, + "abs": 12, + "Energy": 4, + "Hill": 1, + "Edgecolor": 1, + "none": 1, + ".2f": 5, + "ok": 2, + "sg": 1, + "sr": 1, + "x_T": 25, + "y_T": 17, + "vx_T": 22, + "e_T": 7, + "filter": 14, + "Integrate_FILE": 1, + "e_0": 7, + "N": 9, + "nx": 32, + "ny": 29, + "nvx": 32, + "ne": 29, + "zeros": 61, + "vy_T": 12, + "Look": 2, + "for": 78, + "phisically": 2, + "meaningful": 6, + "points": 11, + "meaningless": 2, + "point": 14, + "only": 7, + "h": 19, + "waitbar": 6, + "i": 338, + "i/nx": 2, + "sprintf": 11, + "j": 242, + "parfor": 5, + "k": 75, + "l": 64, + "*e_0": 3, + "if": 52, + "isreal": 8, + "ci": 9, + "t": 32, + "Y": 19, + "te": 2, + "ye": 9, + "ie": 2, + "ode45": 6, + "*": 46, + "Potential": 1, + "close": 4, + "tic": 7, + "Choice": 2, + "of": 35, + "the": 14, + "mass": 2, + "parameter": 2, + "Computation": 9, + "Lagrangian": 3, + "Points": 2, + "initial": 5, + "total": 6, + "energy": 8, + "E_L1": 4, + "Omega": 7, + "Offset": 2, + "as": 4, + "in": 8, + "figure": 17, + "Initial": 3, + "conditions": 3, + "range": 2, + "x_0_min": 8, + "x_0_max": 8, + "vx_0_min": 8, + "vx_0_max": 8, + "n": 102, + "ndgrid": 2, + "linspace": 14, + "*E": 2, + "vx_0.": 2, + "E_cin": 4, + "Transforming": 1, "into": 1, - "&": 1, - "Edge": 11, - "dicts": 3, - "entry": 2, - "storage": 2, - "Vertex": 3, - "Code": 1, - "require": 2, - "sequence": 2, - "datatype": 1, - "dictoinary": 1, - "vector": 4, - "symbol": 1, - "package": 2, - "add": 25, - "has": 5, - "neighbors": 8, - "connected": 21, - "components": 8, - "partition": 7, - "bipartite": 3, - "included": 2, - "from": 3, - "take": 2, - "drop": 2, - "while": 2, - "range": 1, - "flatten": 1, - "filter": 2, - "complement": 1, - "seperate": 1, - "zip": 1, - "indexed": 1, - "reduce": 3, - "mapcon": 3, - "unique": 3, - "frequencies": 1, - "shuffle": 1, - "pick": 1, - "remove": 2, - "first": 2, - "interpose": 1, - "subset": 3, - "cartesian": 1, - "product": 1, - "<-dict>": 5, - "contents": 1, - "keys": 3, - "vals": 1, - "make": 10, - "define": 34, - "X": 4, - "<-address>": 5, - "0": 1, - "create": 1, - "specified": 1, - "sizes": 2, - "}": 22, - "Vertsize": 2, - "Edgesize": 2, - "let": 9, - "absvector": 1, - "do": 8, - "address": 5, - "defmacro": 3, - "macro": 3, - "return": 4, - "taking": 1, - "optional": 1, - "N": 7, - "vert": 12, - "1": 1, - "2": 3, - "{": 15, - "get": 3, - "Value": 3, - "if": 8, - "tuple": 3, - "fst": 3, - "error": 7, - "string": 3, - "resolve": 6, - "Vector": 2, - "Index": 2, - "Place": 6, - "nth": 1, - "<-vector>": 2, - "Vert": 5, - "Val": 5, - "trap": 4, - "snd": 2, - "map": 5, - "lambda": 1, - "w": 4, - "B": 2, - "Data": 2, - "w/o": 5, - "D": 4, - "update": 5, - "an": 3, - "s": 1, - "Vs": 4, - "Store": 6, - "<": 4, - "limit": 2, - "VertLst": 2, - "/.": 4, - "Contents": 5, - "adjoin": 2, - "length": 5, - "EdgeID": 3, - "EdgeLst": 2, - "p": 1, - "boolean": 4, - "Return": 1, - "Already": 5, - "New": 5, - "Reachable": 2, - "difference": 3, - "append": 1, - "including": 1, - "itself": 1, - "fully": 1, - "Acc": 2, - "true": 1, - "_": 1, - "VS": 4, - "Component": 6, - "ES": 3, - "Con": 8, - "verts": 4, - "cons": 1, - "place": 3, - "partitions": 1, - "element": 2, - "simple": 3, - "CS": 3, - "Neighbors": 3, - "empty": 1, - "intersection": 1, - "check": 1, - "tests": 1, - "set": 1, - "chris": 6, - "patton": 2, - "eric": 1, - "nobody": 2, - "fail": 1, - "when": 1, - "wrapper": 1, - "function": 1, - "html.shen": 1, - "html": 2, - "generation": 1, - "functions": 1, - "shen": 1, - "The": 1, - "standard": 1, - "lisp": 1, - "conversion": 1, - "tool": 1, - "suite.": 1, - "Follows": 1, - "some": 1, - "convertions": 1, - "Clojure": 1, - "tasks": 1, - "stuff": 1, - "todo1": 1, - "today": 1, - "attributes": 1, - "AS": 1, - "load": 1, - "JSON": 1, - "Lexer": 1, - "Read": 1, - "stream": 1, - "characters": 4, - "Whitespace": 4, - "not": 1, - "strings": 2, - "should": 2, - "be": 2, - "discarded.": 1, - "preserved": 1, - "Strings": 1, - "can": 1, - "escaped": 1, - "double": 1, - "quotes.": 1, - "e.g.": 2, - "whitespacep": 2, - "ASCII": 2, - "Space.": 1, - "All": 1, - "others": 1, - "whitespace": 7, - "table.": 1, - "Char": 4, - "member": 1, - "replace": 3, - "@s": 4, - "Suffix": 4, - "where": 2, - "Prefix": 2, - "fetch": 1, - "until": 1, - "unescaped": 1, - "doublequote": 1, - "c#34": 5, - "WhitespaceChar": 2, - "Chars": 4, - "strip": 2, - "chars": 2, - "tokenise": 1, - "JSONString": 2, - "CharList": 2, - "explode": 1 - }, - "Slash": { - "<%>": 1, - "class": 11, - "Env": 1, - "def": 18, - "init": 4, - "memory": 3, - "ptr": 9, - "0": 3, - "ptr=": 1, - "current_value": 5, - "current_value=": 1, - "value": 1, - "AST": 4, - "Next": 1, - "eval": 10, - "env": 16, - "Prev": 1, - "Inc": 1, - "Dec": 1, - "Output": 1, - "print": 1, - "char": 5, - "Input": 1, - "Sequence": 2, - "nodes": 6, - "for": 2, - "node": 2, - "in": 2, - "Loop": 1, - "seq": 4, + "Hamiltonian": 1, + "variables": 2, + "px_0": 2, + "py_0": 2, + "px_T": 4, + "py_T": 4, + "filtro": 15, + "ones": 6, + "E_T": 11, + "a": 17, + "matrix": 3, + "numbers": 2, + "integration": 9, + "steps": 2, + "each": 2, + "np": 8, + "number": 2, + "integrated": 5, + "fprintf": 18, + "tolerance": 2, + "setting": 4, + "energy_tol": 6, + "inf": 1, + "Jacobian": 3, + "system": 2, + "@cr3bp_jac": 1, + "Parallel": 2, + "equations": 2, + "motion": 2, + "&&": 13, + "Check": 6, + "real": 3, + "velocity": 2, + "and": 7, + "positive": 2, + "Kinetic": 2, + "@fH": 1, + "Saving": 4, + "solutions": 2, + "final": 2, + "difference": 2, + "with": 2, + "one": 3, + "EnergyH": 1, + "delta_E": 7, + "conservation": 2, + "position": 2, + "else": 23, + "interesting": 4, + "non": 2, + "sense": 2, + "bad": 4, + "t_integrazione": 3, + "toc": 5, + "t_integr": 1, + "Back": 1, + "to": 9, + "FTLE": 14, + "dphi": 12, + "ftle": 10, + "...": 162, + "/": 59, + "Manual": 2, + "visualize": 2, + "Inf": 1, + "*T": 3, + "*log": 2, + "max": 9, + "eig": 6, + "tempo": 4, + "per": 5, + "integrare": 2, + "s": 13, + "calcolare": 2, + "var_": 2, + "_": 2, + "var_xvx_": 2, + "ode00": 2, + "_n": 2, + "_e": 1, + "_H": 1, + "save": 2, + "nome": 2, + "Call": 2, + "matlab_function": 5, + "which": 2, + "resides": 2, + "same": 2, + "directory": 2, + "value1": 4, + "semicolon": 2, + "at": 3, + "line": 15, + "is": 7, + "not": 3, + "mandatory": 2, + "suppresses": 2, + "output": 7, + "command": 2, + "line.": 2, + "value2": 4, + "result": 5, + "disp": 8, + "error": 16, + "cross_validation": 1, + "x": 46, + "y": 25, + "hyper_parameter": 3, + "num_data": 2, + "K": 4, + "indices": 2, + "crossvalind": 1, + "errors": 4, + "test_idx": 4, + "train_idx": 3, + "x_train": 2, + "y_train": 2, + "w": 6, + "train": 1, + "x_test": 3, + "y_test": 3, + "calc_cost": 1, + "calc_error": 2, + "f_x_t": 2, + "inline": 1, + "grid_min": 3, + "grid_max": 3, + "grid_width": 1, + "grid_spacing": 5, + "grid_width/": 1, + "advected_x": 12, + "advected_y": 12, + "store": 4, + "advected": 2, + "positions": 2, + "they": 2, + "would": 2, + "appear": 2, + "coords": 2, + "sigma": 6, + "compute": 2, + "phi": 13, + "*grid_width/": 4, + "find": 24, + "eigenvalue": 2, + "*phi": 2, + "log": 2, + "lambda_max": 2, + "/abs": 3, + "plot": 26, + "field": 2, + "contourf": 2, + "colorbar": 1, + "classdef": 1, + "matlab_class": 2, + "properties": 1, + "R": 1, + "G": 1, + "B": 9, + "methods": 1, + "obj": 2, + "r": 2, + "g": 5, + "b": 12, + "obj.R": 2, + "obj.G": 2, + "obj.B": 2, + "num2str": 10, + "enumeration": 1, + "red": 1, + "green": 1, + "blue": 1, + "cyan": 1, + "magenta": 1, + "yellow": 1, + "black": 1, + "white": 1, + "filtfcn": 2, + "statefcn": 2, + "makeFilter": 1, + "v": 12, + "@iirFilter": 1, + "@getState": 1, + "yn": 2, + "iirFilter": 1, + "xn": 4, + "vOut": 2, + "getState": 1, + "RK4": 3, + "fun": 5, + "tspan": 7, + "th": 1, + "order": 11, + "Runge": 1, + "Kutta": 1, + "integrator": 2, + "dim": 2, "while": 1, - "Parser": 1, - "str": 2, - "chars": 2, - "split": 1, - "parse": 1, - "stack": 3, - "_parse_char": 2, - "if": 1, - "length": 1, + "<": 9, + "k1": 4, + "k2": 3, + "h/2": 2, + "k1*h/2": 1, + "k3": 3, + "k2*h/2": 1, + "k4": 4, + "h*k3": 1, + "h/6*": 1, + "*k2": 1, + "*k3": 1, + "z": 3, + "*vx_0": 1, + "pcolor": 2, + "shading": 3, + "flat": 3, + "settings": 3, + "overwrite_settings": 2, + "defaultSettings": 3, + "overrideSettings": 3, + "overrideNames": 2, + "fieldnames": 5, + "defaultNames": 2, + "notGiven": 5, + "setxor": 1, + "settings.": 1, + "{": 157, + "}": 157, + "defaultSettings.": 1, + "bicycle": 7, + "bicycle_state_space": 1, + "speed": 20, + "varargin": 25, + "S": 5, + "dbstack": 1, + "CURRENT_DIRECTORY": 2, + "fileparts": 1, + ".file": 1, + "par": 7, + "par_text_to_struct": 4, + "filesep": 14, + "A": 11, + "D": 7, + "whipple_pull_force_abcd": 2, + "states": 7, + "outputs": 10, + "inputs": 14, + "defaultSettings.states": 1, + "defaultSettings.inputs": 1, + "defaultSettings.outputs": 1, + "userSettings": 3, + "varargin_to_structure": 2, + "struct": 1, + "minStates": 2, + "sum": 2, + "ismember": 15, + "settings.states": 3, + "keepStates": 2, + "removeStates": 1, + "row": 6, + "col": 5, + "removeInputs": 2, + "settings.inputs": 1, + "keepOutputs": 2, + "settings.outputs": 1, + "It": 1, + "possible": 1, + "keep": 1, + "because": 1, + "it": 1, + "depends": 1, + "on": 13, + "input": 14, + "StateName": 1, + "OutputName": 1, + "InputName": 1, + "data": 27, + "load_data": 4, + "filename": 21, + "parser": 1, + "inputParser": 1, + "parser.addRequired": 1, + "parser.addParamValue": 3, + "true": 2, + "parser.parse": 1, + "args": 1, + "parser.Results": 1, + "raw": 1, + "load": 1, + "args.directory": 1, + "iddata": 1, + "raw.theta": 1, + "raw.theta_c": 1, + "args.sampleTime": 1, + "args.detrend": 1, + "detrend": 1, + "hold": 23, + "lane_change": 1, + "start": 4, + "width": 3, + "slope": 3, + "pathLength": 3, + "num": 24, + "type": 4, + "single": 1, + "double": 1, + "Double": 1, + "lane": 4, + "change": 1, + "needs": 1, + "lane.": 1, + "laneLength": 4, + "startOfSlope": 3, + "endOfSlope": 1, + "&": 4, + "<=>": 1, "1": 1, - "throw": 1, - "SyntaxError": 1, - "new": 2, - "unexpected": 2, - "end": 1, - "of": 1, - "input": 1, - "last": 1, - "switch": 1, - "<": 1, - "+": 1, - "-": 1, - ".": 1, - "[": 1, - "]": 1, - ")": 7, - ";": 6, - "}": 3, - "@stack.pop": 1, - "_add": 1, - "(": 6, - "Loop.new": 1, - "Sequence.new": 1, - "src": 2, - "File.read": 1, - "ARGV.first": 1, - "ast": 1, - "Parser.new": 1, - ".parse": 1, - "ast.eval": 1, - "Env.new": 1 + "downSlope": 3, + "Yc": 5, + "plant": 4, + "parallel": 2, + "choose_plant": 4, + "p": 7, + "tf": 18, + "elseif": 14, + "display": 10, + "average": 1, + "m": 44, + "|": 2, + "/length": 1, + "name": 4, + "convert_variable": 1, + "variable": 10, + "coordinates": 6, + "speeds": 21, + "get_variables": 2, + "columns": 4, + "clc": 1, + "bikes": 24, + "load_bikes": 2, + "rollData": 8, + "generate_data": 5, + "create_ieee_paper_plots": 2, + "write_gains": 1, + "pathToFile": 11, + "gains": 12, + "contents": 1, + "importdata": 1, + "speedsInFile": 5, + "contents.data": 2, + "gainsInFile": 3, + "sameSpeedIndices": 5, + "allGains": 4, + "allSpeeds": 4, + "sort": 1, + "fid": 7, + "fopen": 2, + "contents.colheaders": 1, + "fclose": 2, + "Elements": 1, + "grid": 1, + "definition": 2, + "Dimensionless": 1, + "integrating": 1, + "time": 21, + "C_L1": 3, + "*E_L1": 1, + "from": 2, + "Szebehely": 1, + "Setting": 1, + "RelTol": 2, + "AbsTol": 2, + "From": 1, + "Short": 1, + "r1": 3, + "r2": 3, + "i/n": 1, + ".": 13, + "y_0.": 2, + "./": 1, + "mu./": 1, + "@f_reg": 1, + "filtro_1": 12, + "||": 3, + "ftle_norm": 1, + "ds_x": 1, + "ds_vx": 1, + "La": 1, + "direzione": 1, + "dello": 1, + "spostamento": 1, + "la": 2, + "decide": 1, + "il": 1, + "denominatore": 1, + "TODO": 1, + "spiegarsi": 1, + "teoricamente": 1, + "come": 1, + "mai": 1, + "matrice": 1, + "pu": 1, + "essere": 1, + "ridotta": 1, + "x2": 1, + "*ds_x": 2, + "*ds_vx": 2, + "dphi*dphi": 1, + "global": 6, + "goldenRatio": 12, + "exist": 1, + "mkdir": 1, + "linestyles": 15, + "colors": 13, + "loop_shape_example": 3, + "data.Benchmark.Medium": 2, + "plot_io_roll": 3, + "open_loop_all_bikes": 1, + "handling_all_bikes": 1, + "path_plots": 1, + "var": 3, + "io": 7, + "typ": 3, + "plot_io": 1, + "phase_portraits": 2, + "eigenvalues": 2, + "bikeData": 2, + "figWidth": 24, + "figHeight": 19, + "set": 43, + "gcf": 17, + "freq": 12, + "closedLoops": 1, + "bikeData.closedLoops": 1, + "bops": 7, + "bodeoptions": 1, + "bops.FreqUnits": 1, + "strcmp": 24, + "gray": 7, + "deltaNum": 2, + "closedLoops.Delta.num": 1, + "deltaDen": 2, + "closedLoops.Delta.den": 1, + "bodeplot": 6, + "neuroNum": 2, + "neuroDen": 2, + "whichLines": 3, + "phiDotNum": 2, + "closedLoops.PhiDot.num": 1, + "phiDotDen": 2, + "closedLoops.PhiDot.den": 1, + "closedBode": 3, + "off": 10, + "opts": 4, + "getoptions": 2, + "opts.YLim": 3, + "opts.PhaseMatching": 2, + "opts.PhaseMatchingValue": 2, + "opts.Title.String": 2, + "setoptions": 2, + "lines": 17, + "findobj": 5, + "raise": 19, + "plotAxes": 22, + "curPos1": 4, + "get": 11, + "curPos2": 4, + "xLab": 8, + "legWords": 3, + "closeLeg": 2, + "legend": 7, + "axes": 9, + "db1": 4, + "text": 11, + "db2": 2, + "dArrow1": 2, + "annotation": 13, + "dArrow2": 2, + "dArrow": 2, + "print": 6, + "fix_ps_linestyle": 6, + "openLoops": 1, + "bikeData.openLoops": 1, + "openLoops.Phi.num": 1, + "den": 15, + "openLoops.Phi.den": 1, + "openLoops.Psi.num": 1, + "openLoops.Psi.den": 1, + "openLoops.Y.num": 1, + "openLoops.Y.den": 1, + "openBode": 3, + "wc": 14, + "wShift": 5, + "bikeData.handlingMetric.num": 1, + "bikeData.handlingMetric.den": 1, + "mag": 4, + "phase": 2, + "bode": 5, + "metricLine": 1, + "Linewidth": 7, + "Color": 13, + "Linestyle": 6, + "Handling": 2, + "Quality": 2, + "Metric": 2, + "Frequency": 2, + "rad/s": 4, + "Level": 6, + "benchmark": 1, + "Handling.eps": 1, + "plots": 4, + "deps2": 1, + "loose": 4, + "PaperOrientation": 3, + "portrait": 3, + "PaperUnits": 3, + "inches": 3, + "PaperPositionMode": 3, + "manual": 3, + "PaperPosition": 3, + "PaperSize": 3, + "rad/sec": 1, + "Open": 1, + "Loop": 1, + "Bode": 1, + "Diagrams": 1, + "m/s": 6, + "Latex": 1, + "LineStyle": 2, + "LineWidth": 2, + "Location": 2, + "Southwest": 1, + "Fontsize": 4, + "YColor": 2, + "XColor": 1, + "Position": 6, + "Xlabel": 1, + "Units": 1, + "normalized": 1, + "openBode.eps": 1, + "deps2c": 3, + "maxMag": 2, + "magnitudes": 1, + "area": 1, + "fillColors": 1, + "gca": 8, + "speedNames": 12, + "metricLines": 2, + "data.": 6, + ".handlingMetric.num": 1, + ".handlingMetric.den": 1, + "chil": 2, + "legLines": 1, + "Hands": 1, + "free": 1, + "@": 1, + "handling.eps": 1, + "f": 13, + "YTick": 1, + "YTickLabel": 1, + "Path": 1, + "Southeast": 1, + "Distance": 1, + "Lateral": 1, + "Deviation": 1, + "paths.eps": 1, + "like": 1, + "plot.": 1, + "names": 6, + "prettyNames": 3, + "units": 3, + "index": 6, + "data.Browser": 1, + "maxValue": 4, + "oneSpeed": 3, + "history": 7, + "oneSpeed.": 3, + "round": 1, + "pad": 10, + "yShift": 16, + "xShift": 3, + "oneSpeed.time": 2, + "oneSpeed.speed": 2, + "distance": 6, + "xAxis": 12, + "xData": 3, + "textX": 3, + "ylim": 2, + "ticks": 4, + "xlabel": 8, + "xLimits": 6, + "xlim": 8, + "loc": 3, + "l1": 2, + "l2": 2, + "ylabel": 4, + "box": 4, + "x_r": 6, + "y_r": 6, + "w_r": 5, + "h_r": 5, + "rectangle": 2, + "w_r/2": 4, + "h_r/2": 4, + "x_a": 10, + "y_a": 10, + "w_a": 7, + "h_a": 5, + "ax": 15, + "axis": 5, + "rollData.speed": 1, + "rollData.time": 1, + "path": 3, + "rollData.path": 1, + "frontWheel": 3, + "rollData.outputs": 3, + "rollAngle": 4, + "steerAngle": 4, + "rollTorque": 4, + "rollData.inputs": 1, + "subplot": 3, + "h1": 5, + "h2": 5, + "plotyy": 3, + "inset": 3, + "gainChanges": 2, + "loopNames": 4, + "xy": 7, + "xySource": 7, + "xlabels": 2, + "ylabels": 2, + "legends": 3, + "floatSpec": 3, + "twentyPercent": 1, + "nominalData": 1, + "nominalData.": 2, + "bikeData.": 2, + "twentyPercent.": 2, + "equal": 2, + "leg1": 2, + "bikeData.modelPar.": 1, + "leg2": 2, + "twentyPercent.modelPar.": 1, + "eVals": 5, + "pathToParFile": 2, + "str": 2, + "eigenValues": 1, + "zeroIndices": 3, + "maxEvals": 4, + "maxLine": 7, + "minLine": 4, + "min": 1, + "speedInd": 12, + "Conditions": 1, + "Integration": 2, + "@cross_y": 1, + "textscan": 1, + "strtrim": 2, + "vals": 2, + "regexp": 1, + "par.": 1, + "str2num": 1, + "t1": 6, + "t2": 6, + "t3": 1, + "dataPlantOne": 3, + "data.Ts": 6, + "dataAdapting": 3, + "dataPlantTwo": 3, + "guessPlantOne": 4, + "resultPlantOne": 1, + "find_structural_gains": 2, + "yh": 2, + "fit": 6, + "compare": 3, + "resultPlantOne.fit": 1, + "guessPlantTwo": 3, + "resultPlantTwo": 1, + "resultPlantTwo.fit": 1, + "kP1": 4, + "resultPlantOne.fit.par": 1, + "kP2": 3, + "resultPlantTwo.fit.par": 1, + "gainSlopeOffset": 6, + "eye": 9, + "aux.pars": 3, + "this": 2, + "uses": 1, + "tau": 1, + "through": 1, + "wfs": 1, + "aux.timeDelay": 2, + "aux.plantFirst": 2, + "aux.plantSecond": 2, + "plantOneSlopeOffset": 3, + "plantTwoSlopeOffset": 3, + "aux.m": 3, + "aux.b": 3, + "dx": 6, + "adapting_structural_model": 2, + "aux": 3, + "mod": 3, + "idnlgrey": 1, + "pem": 1, + "guess.plantOne": 3, + "guess.plantTwo": 2, + "plantNum.plantOne": 2, + "plantNum.plantTwo": 2, + "sections": 13, + "secData.": 1, + "guess.": 2, + "result.": 2, + ".fit.par": 1, + "currentGuess": 2, + ".*": 2, + "warning": 1, + "randomGuess": 1, + "The": 6, + "self": 2, + "validation": 2, + "VAF": 2, + "f.": 2, + "data/": 1, + "results.mat": 1, + "guess": 1, + "plantNum": 1, + "plots/": 1, + ".png": 1, + "task": 1, + "closed": 1, + "loop": 1, + "u.": 1, + "gain": 1, + "guesses": 1, + "identified": 1, + ".vaf": 1, + "arguments": 7, + "ischar": 1, + "options.": 1, + "value": 2, + "isterminal": 2, + "direction": 2, + "FIXME": 1, + "largest": 1, + "primary": 1, + "wnm": 11, + "zetanm": 5, + "ss": 3, + "data.modelPar.A": 1, + "data.modelPar.B": 1, + "data.modelPar.C": 1, + "data.modelPar.D": 1, + "bicycle.StateName": 2, + "bicycle.OutputName": 4, + "bicycle.InputName": 2, + "analytic": 3, + "system_state_space": 2, + "numeric": 2, + "data.system.A": 1, + "data.system.B": 1, + "data.system.C": 1, + "data.system.D": 1, + "numeric.StateName": 1, + "data.bicycle.states": 1, + "numeric.InputName": 1, + "data.bicycle.inputs": 1, + "numeric.OutputName": 1, + "data.bicycle.outputs": 1, + "pzplot": 1, + "ss2tf": 2, + "analytic.A": 3, + "analytic.B": 1, + "analytic.C": 1, + "analytic.D": 1, + "mine": 1, + "data.forceTF.PhiDot.num": 1, + "data.forceTF.PhiDot.den": 1, + "numeric.A": 2, + "numeric.B": 1, + "numeric.C": 1, + "numeric.D": 1, + "whipple_pull_force_ABCD": 1, + "bottomRow": 1, + "prod": 3, + "x_min": 3, + "x_max": 3, + "y_min": 3, + "y_max": 3, + "how": 1, + "many": 1, + "measure": 1, + "unit": 1, + "both": 1, + "ds": 1, + "x_res": 7, + "*n": 2, + "y_res": 7, + "grid_x": 3, + "grid_y": 3, + "X": 6, + "@dg": 1, + "Compute": 3, + "*ds": 4, + "location": 1, + "EastOutside": 1, + "ret": 3, + "arg1": 1, + "arg": 2, + "arrayfun": 2, + "RK4_par": 1, + "Range": 1, + "E_0": 4, + "C_L1/2": 1, + "Y_0": 4, + "dvx": 3, + "dy": 5, + "/2": 3, + "de": 4, + "Definition": 1, + "arrays": 1, + "In": 1, + "approach": 1, + "useful": 9, + "pints": 1, + "are": 1, + "stored": 1, + "v_y": 3, + "vx": 2, + "vy": 2, + "Selection": 1, + "Data": 2, + "transfer": 1, + "GPU": 3, + "x_gpu": 3, + "gpuArray": 4, + "y_gpu": 3, + "vx_gpu": 3, + "vy_gpu": 3, + "x_f": 3, + "y_f": 3, + "vx_f": 3, + "vy_f": 3, + "@RKF45_FILE_gpu": 1, + "back": 1, + "CPU": 1, + "memory": 1, + "cleaning": 1, + "gather": 4, + "Construction": 1, + "computation": 2, + "X_T": 4, + "Y_T": 4, + "VX_T": 4, + "VY_T": 3, + "filter_ftle": 11, + "Compute_FILE_gpu": 1, + "Plot": 1, + "results": 1, + "squeeze": 1, + "c1": 5, + "roots": 3, + "*mu": 6, + "c2": 5, + "c3": 3, + "u": 3, + "Yp": 2, + "human": 1, + "Ys": 1, + "feedback": 1, + "tf2ss": 1, + "Ys.num": 1, + "Ys.den": 1, + "delta_e": 3, + "Integrate_FTLE_Gawlick_ell": 1, + "ecc": 2, + "nu": 2, + "ecc*cos": 1, + "@f_ell": 1, + "Consider": 1, + "also": 1, + "negative": 1, + "goodness": 1, + "gains.Benchmark.Slow": 1, + "place": 2, + "holder": 2, + "gains.Browserins.Slow": 1, + "gains.Browser.Slow": 1, + "gains.Pista.Slow": 1, + "gains.Fisher.Slow": 1, + "gains.Yellow.Slow": 1, + "gains.Yellowrev.Slow": 1, + "gains.Benchmark.Medium": 1, + "gains.Browserins.Medium": 1, + "gains.Browser.Medium": 1, + "gains.Pista.Medium": 1, + "gains.Fisher.Medium": 1, + "gains.Yellow.Medium": 1, + "gains.Yellowrev.Medium": 1, + "gains.Benchmark.Fast": 1, + "gains.Browserins.Fast": 1, + "gains.Browser.Fast": 1, + "gains.Pista.Fast": 1, + "gains.Fisher.Fast": 1, + "gains.Yellow.Fast": 1, + "gains.Yellowrev.Fast": 1, + "gains.": 1 }, - "Slim": { - "doctype": 1, - "html": 2, - "head": 1, - "title": 1, - "Slim": 2, - "Examples": 1, - "meta": 2, - "name": 2, - "content": 2, - "author": 2, - "javascript": 1, - "alert": 1, - "(": 1, - ")": 1, - "body": 1, - "h1": 1, - "Markup": 1, - "examples": 1, - "#content": 1, - "p": 2, + "Pan": { + "object": 1, + "template": 1, + "pantest": 1, + ";": 32, + "xFF": 1, + "e": 2, + "-": 2, + "E10": 1, + "variable": 4, + "TEST": 2, + "to_string": 1, + "(": 8, + ")": 8, + "+": 2, + "value": 1, + "undef": 1, + "null": 1, + "error": 1, + "include": 1, + "{": 5, + "}": 5, + "pkg_repl": 2, + "PKG_ARCH_DEFAULT": 1, + "function": 1, + "show_things_view_for_stuff": 1, + "thing": 2, + "ARGV": 1, + "[": 2, + "]": 2, + "foreach": 1, + "i": 1, + "mything": 2, + "STUFF": 1, + "if": 1, + "return": 2, + "true": 2, + "else": 1, + "SELF": 1, + "false": 2, + "HERE": 1, + "<<": 1, + "EOF": 2, "This": 1, "example": 1, - "shows": 1, - "you": 2, - "how": 1, - "a": 1, - "basic": 1, - "file": 1, - "looks": 1, - "like.": 1, - "yield": 1, - "-": 3, - "unless": 1, - "items.empty": 1, - "table": 1, - "for": 1, - "item": 1, - "in": 1, - "items": 2, - "do": 1, - "tr": 1, - "td.name": 1, - "item.name": 1, - "td.price": 1, - "item.price": 1, - "else": 1, - "|": 2, - "No": 1, - "found.": 1, - "Please": 1, - "add": 1, - "some": 1, - "inventory.": 1, - "Thank": 1, - "div": 1, - "id": 1, - "render": 1, - "Copyright": 1, - "#": 2, - "{": 2, - "year": 1, - "}": 2 - }, - "Smalltalk": { - "Object": 1, - "subclass": 2, - "#Philosophers": 1, - "instanceVariableNames": 1, - "classVariableNames": 1, - "poolDictionaries": 1, - "category": 1, - "Philosophers": 3, - "class": 1, - "methodsFor": 2, - "new": 4, - "self": 25, - "shouldNotImplement": 1, - "quantity": 2, - "super": 1, - "initialize": 3, - "dine": 4, - "seconds": 2, - "(": 19, - "Delay": 3, - "forSeconds": 1, - ")": 19, - "wait.": 5, - "philosophers": 2, - "do": 1, - "[": 18, - "each": 5, - "|": 18, - "terminate": 1, - "]": 18, - ".": 16, - "size": 4, - "leftFork": 6, - "n": 11, - "forks": 5, - "at": 3, - "rightFork": 6, - "ifTrue": 1, - "ifFalse": 1, - "+": 1, - "eating": 3, - "Semaphore": 2, - "new.": 2, - "-": 1, - "timesRepeat": 1, - "signal": 1, - "randy": 3, - "Random": 1, - "to": 2, - "collect": 2, - "forMutualExclusion": 1, - "philosopher": 2, - "philosopherCode": 3, - "status": 8, - "n.": 2, - "printString": 1, - "true": 2, - "whileTrue": 1, - "Transcript": 5, - "nextPutAll": 5, - ";": 8, - "nl.": 5, - "forMilliseconds": 2, - "next": 2, - "*": 2, - "critical": 1, - "signal.": 2, - "newProcess": 1, - "priority": 1, - "Processor": 1, - "userBackgroundPriority": 1, - "name": 1, - "resume": 1, - "yourself": 1, - "Koan": 1, - "TestBasic": 1, - "": 1, - "A": 1, - "collection": 1, - "of": 1, - "introductory": 1, - "tests": 2, - "testDeclarationAndAssignment": 1, - "declaration": 2, - "anotherDeclaration": 2, - "_": 1, - "expect": 10, - "fillMeIn": 10, - "toEqual": 10, - "declaration.": 1, - "anotherDeclaration.": 1, - "testEqualSignIsNotAnAssignmentOperator": 1, - "variableA": 6, - "variableB": 5, - "value": 2, - "variableB.": 2, - "testMultipleStatementsInASingleLine": 1, - "variableC": 2, - "variableA.": 1, - "variableC.": 1, - "testInequality": 1, - "testLogicalOr": 1, - "expression": 4, - "<": 2, - "expression.": 2, - "testLogicalAnd": 1, - "&": 1, - "testNot": 1, - "not.": 1, - "testSimpleChainMatches": 1, - "e": 11, - "eCtrl": 3, - "eventKey": 3, - "e.": 1, - "ctrl": 5, - "true.": 1, - "assert": 2, - "matches": 4, - "{": 4, - "}": 4, - "eCtrl.": 2, - "deny": 2, - "a": 1 - }, - "SourcePawn": { - "//#define": 1, - "DEBUG": 2, - "#if": 1, - "defined": 1, - "#define": 7, - "assert": 2, - "(": 233, - "%": 18, - ")": 234, - "if": 44, - "ThrowError": 2, - ";": 213, - "assert_msg": 2, - "#else": 1, - "#endif": 1, - "#pragma": 1, - "semicolon": 1, - "#include": 3, - "": 1, - "": 1, - "": 1, - "public": 21, - "Plugin": 1, - "myinfo": 1, - "{": 73, - "name": 7, - "author": 1, - "description": 1, - "version": 1, - "SOURCEMOD_VERSION": 1, - "url": 1, - "}": 71, - "new": 62, - "Handle": 51, - "g_Cvar_Winlimit": 5, - "INVALID_HANDLE": 56, - "g_Cvar_Maxrounds": 5, - "g_Cvar_Fraglimit": 6, - "g_Cvar_Bonusroundtime": 6, - "g_Cvar_StartTime": 3, - "g_Cvar_StartRounds": 5, - "g_Cvar_StartFrags": 3, - "g_Cvar_ExtendTimeStep": 2, - "g_Cvar_ExtendRoundStep": 2, - "g_Cvar_ExtendFragStep": 2, - "g_Cvar_ExcludeMaps": 3, - "g_Cvar_IncludeMaps": 2, - "g_Cvar_NoVoteMode": 2, - "g_Cvar_Extend": 2, - "g_Cvar_DontChange": 2, - "g_Cvar_EndOfMapVote": 8, - "g_Cvar_VoteDuration": 3, - "g_Cvar_RunOff": 2, - "g_Cvar_RunOffPercent": 2, - "g_VoteTimer": 7, - "g_RetryTimer": 4, - "g_MapList": 8, - "g_NominateList": 7, - "g_NominateOwners": 7, - "g_OldMapList": 7, - "g_NextMapList": 2, - "g_VoteMenu": 1, - "g_Extends": 2, - "g_TotalRounds": 7, - "bool": 10, - "g_HasVoteStarted": 7, - "g_WaitingForVote": 4, - "g_MapVoteCompleted": 9, - "g_ChangeMapAtRoundEnd": 6, - "g_ChangeMapInProgress": 4, - "g_mapFileSerial": 3, - "-": 12, - "g_NominateCount": 3, - "MapChange": 4, - "g_ChangeTime": 1, - "g_NominationsResetForward": 3, - "g_MapVoteStartedForward": 2, - "MAXTEAMS": 4, - "g_winCount": 4, - "[": 19, - "]": 19, - "VOTE_EXTEND": 1, - "VOTE_DONTCHANGE": 1, - "OnPluginStart": 1, - "LoadTranslations": 2, - "arraySize": 5, - "ByteCountToCells": 1, - "PLATFORM_MAX_PATH": 6, - "CreateArray": 5, - "CreateConVar": 15, - "_": 18, - "true": 26, - "RegAdminCmd": 2, - "Command_Mapvote": 2, - "ADMFLAG_CHANGEMAP": 2, - "Command_SetNextmap": 2, - "FindConVar": 4, - "||": 15, - "decl": 5, - "String": 11, - "folder": 5, - "GetGameFolderName": 1, - "sizeof": 6, - "strcmp": 3, - "HookEvent": 6, - "Event_TeamPlayWinPanel": 3, - "Event_TFRestartRound": 2, - "else": 5, - "Event_RoundEnd": 3, - "Event_PlayerDeath": 2, - "AutoExecConfig": 1, - "//Change": 1, - "the": 5, - "mp_bonusroundtime": 1, - "max": 1, - "so": 1, - "that": 2, - "we": 2, - "have": 2, - "time": 9, - "to": 4, - "display": 2, - "vote": 6, - "//If": 1, - "you": 1, - "a": 1, - "during": 2, - "bonus": 2, - "good": 1, - "defaults": 1, - "are": 1, - "duration": 1, - "and": 1, - "mp_bonustime": 1, - "SetConVarBounds": 1, - "ConVarBound_Upper": 1, - "CreateGlobalForward": 2, - "ET_Ignore": 2, - "Param_String": 1, - "Param_Cell": 1, - "APLRes": 1, - "AskPluginLoad2": 1, - "myself": 1, - "late": 1, - "error": 1, - "err_max": 1, - "RegPluginLibrary": 1, - "CreateNative": 9, - "Native_NominateMap": 1, - "Native_RemoveNominationByMap": 1, - "Native_RemoveNominationByOwner": 1, - "Native_InitiateVote": 1, - "Native_CanVoteStart": 2, - "Native_CheckVoteDone": 2, - "Native_GetExcludeMapList": 2, - "Native_GetNominatedMapList": 2, - "Native_EndOfMapVoteEnabled": 2, - "return": 23, - "APLRes_Success": 1, - "OnConfigsExecuted": 1, - "ReadMapList": 1, - "MAPLIST_FLAG_CLEARARRAY": 1, - "|": 1, - "MAPLIST_FLAG_MAPSFOLDER": 1, - "LogError": 2, - "CreateNextVote": 1, - "SetupTimeleftTimer": 3, - "false": 8, - "ClearArray": 2, - "for": 9, - "i": 13, - "<": 5, - "+": 12, - "&&": 5, - "GetConVarInt": 10, - "GetConVarFloat": 2, - "<=>": 1, - "Warning": 1, - "Bonus": 1, - "Round": 1, - "Time": 2, - "shorter": 1, - "than": 1, - "Vote": 4, - "Votes": 1, - "round": 1, - "may": 1, - "not": 1, - "complete": 1, - "OnMapEnd": 1, - "map": 27, - "GetCurrentMap": 1, - "PushArrayString": 3, - "GetArraySize": 8, - "RemoveFromArray": 3, - "OnClientDisconnect": 1, - "client": 9, - "index": 8, - "FindValueInArray": 1, - "oldmap": 4, - "GetArrayString": 3, - "Call_StartForward": 1, - "Call_PushString": 1, - "Call_PushCell": 1, - "GetArrayCell": 2, - "Call_Finish": 1, - "Action": 3, - "args": 3, - "ReplyToCommand": 2, - "Plugin_Handled": 4, - "GetCmdArg": 1, - "IsMapValid": 1, - "ShowActivity": 1, - "LogAction": 1, - "SetNextMap": 1, - "OnMapTimeLeftChanged": 1, - "GetMapTimeLeft": 1, - "startTime": 4, - "*": 1, - "GetConVarBool": 6, - "InitiateVote": 8, - "MapChange_MapEnd": 6, - "KillTimer": 1, - "//g_VoteTimer": 1, - "CreateTimer": 3, - "float": 2, - "Timer_StartMapVote": 3, - "TIMER_FLAG_NO_MAPCHANGE": 4, - "data": 8, - "CreateDataTimer": 1, - "WritePackCell": 2, - "ResetPack": 1, - "timer": 2, - "Plugin_Stop": 2, - "mapChange": 2, - "ReadPackCell": 2, - "hndl": 2, - "event": 11, - "const": 4, - "dontBroadcast": 4, - "Timer_ChangeMap": 2, - "bluescore": 2, - "GetEventInt": 7, - "redscore": 2, - "StrEqual": 1, - "CheckMaxRounds": 3, - "switch": 1, - "case": 2, - "CheckWinLimit": 4, - "//We": 1, - "need": 2, - "do": 1, - "nothing": 1, - "on": 1, - "winning_team": 1, - "this": 1, - "indicates": 1, - "stalemate.": 1, - "default": 1, - "winner": 9, - "//": 3, - "Nuclear": 1, - "Dawn": 1, - "SetFailState": 1, - "winner_score": 2, - "winlimit": 3, - "roundcount": 2, - "maxrounds": 3, - "fragger": 3, - "GetClientOfUserId": 1, - "GetClientFrags": 1, - "when": 2, - "inputlist": 1, - "IsVoteInProgress": 1, - "Can": 1, - "t": 7, - "be": 1, - "excluded": 1, - "from": 1, - "as": 2, - "they": 1, - "weren": 1, - "nominationsToAdd": 1, - "Change": 2, - "Extend": 2, - "Map": 5, - "Voting": 7, - "next": 5, - "has": 5, - "started.": 1, - "SM": 5, - "Nextmap": 5, - "Started": 1, - "Current": 2, - "Extended": 1, - "finished.": 3, - "The": 1, - "current": 1, - "been": 1, - "extended.": 1, - "Stays": 1, - "was": 3, - "Finished": 1, - "s.": 1, - "Runoff": 2, - "Starting": 2, - "indecisive": 1, - "beginning": 1, - "runoff": 1, - "T": 3, - "Dont": 1, - "because": 1, - "outside": 1, - "request": 1, - "inputarray": 1, - "plugin": 5, - "numParams": 5, - "CanVoteStart": 1, - "array": 3, - "GetNativeCell": 3, - "size": 2, - "maparray": 3, - "ownerarray": 3, - "If": 1, - "optional": 1, - "parameter": 1, + "demonstrates": 1, "an": 1, - "owner": 1, - "list": 1, - "passed": 1, - "then": 1, - "fill": 1, - "out": 1, - "well": 1, - "PushArrayCell": 1 + "in": 1, + "line": 1, + "heredoc": 1, + "style": 1, + "config": 1, + "file": 1, + "main": 1, + "awesome": 1, + "small": 1, + "#This": 1, + "should": 1, + "be": 1, + "highlighted": 1, + "normally": 1, + "again.": 1 }, - "SQL": { - "IF": 13, - "EXISTS": 12, - "(": 131, - "SELECT": 4, + "PAWN": { + "//": 22, + "-": 1551, + "#include": 5, + "": 1, + "": 1, + "": 1, + "#pragma": 1, + "tabsize": 1, + "#define": 5, + "COLOR_WHITE": 2, + "xFFFFFFFF": 2, + "COLOR_NORMAL_PLAYER": 3, + "xFFBB7777": 1, + "CITY_LOS_SANTOS": 7, + "CITY_SAN_FIERRO": 4, + "CITY_LAS_VENTURAS": 6, + "new": 13, + "total_vehicles_from_files": 19, + ";": 257, + "gPlayerCitySelection": 21, + "[": 56, + "MAX_PLAYERS": 3, + "]": 56, + "gPlayerHasCitySelected": 6, + "gPlayerLastCitySelectionTick": 5, + "Text": 5, + "txtClassSelHelper": 14, + "txtLosSantos": 7, + "txtSanFierro": 7, + "txtLasVenturas": 7, + "thisanimid": 1, + "lastanimid": 1, + "main": 1, + "(": 273, + ")": 273, + "{": 39, + "print": 3, + "}": 39, + "public": 6, + "OnPlayerConnect": 1, + "playerid": 132, + "GameTextForPlayer": 1, + "SendClientMessage": 1, + "GetTickCount": 4, + "//SetPlayerColor": 2, + "//Kick": 1, + "return": 17, + "OnPlayerSpawn": 1, + "if": 28, + "IsPlayerNPC": 3, + "randSpawn": 16, + "SetPlayerInterior": 7, + "TogglePlayerClock": 2, + "ResetPlayerMoney": 3, + "GivePlayerMoney": 2, + "random": 3, + "sizeof": 3, + "gRandomSpawns_LosSantos": 5, + "SetPlayerPos": 6, + "SetPlayerFacingAngle": 6, + "else": 9, + "gRandomSpawns_SanFierro": 5, + "gRandomSpawns_LasVenturas": 5, + "SetPlayerSkillLevel": 11, + "WEAPONSKILL_PISTOL": 1, + "WEAPONSKILL_PISTOL_SILENCED": 1, + "WEAPONSKILL_DESERT_EAGLE": 1, + "WEAPONSKILL_SHOTGUN": 1, + "WEAPONSKILL_SAWNOFF_SHOTGUN": 1, + "WEAPONSKILL_SPAS12_SHOTGUN": 1, + "WEAPONSKILL_MICRO_UZI": 1, + "WEAPONSKILL_MP5": 1, + "WEAPONSKILL_AK47": 1, + "WEAPONSKILL_M4": 1, + "WEAPONSKILL_SNIPERRIFLE": 1, + "GivePlayerWeapon": 1, + "WEAPON_COLT45": 1, + "//GivePlayerWeapon": 1, + "WEAPON_MP5": 1, + "OnPlayerDeath": 1, + "killerid": 3, + "reason": 1, + "playercash": 4, + "INVALID_PLAYER_ID": 1, + "GetPlayerMoney": 1, + "ClassSel_SetupCharSelection": 2, + "SetPlayerCameraPos": 6, + "SetPlayerCameraLookAt": 6, + "ClassSel_InitCityNameText": 4, + "txtInit": 7, + "TextDrawUseBox": 2, + "TextDrawLetterSize": 2, + "TextDrawFont": 2, + "TextDrawSetShadow": 2, + "TextDrawSetOutline": 2, + "TextDrawColor": 2, + "xEEEEEEFF": 1, + "TextDrawBackgroundColor": 2, + "FF": 2, + "ClassSel_InitTextDraws": 2, + "TextDrawCreate": 4, + "TextDrawBoxColor": 1, + "BB": 1, + "TextDrawTextSize": 1, + "ClassSel_SetupSelectedCity": 3, + "TextDrawShowForPlayer": 4, + "TextDrawHideForPlayer": 10, + "ClassSel_SwitchToNextCity": 3, + "+": 19, + "PlayerPlaySound": 2, + "ClassSel_SwitchToPreviousCity": 2, + "<": 3, + "ClassSel_HandleCitySelection": 2, + "Keys": 3, + "ud": 2, + "lr": 4, + "GetPlayerKeys": 1, + "&": 1, + "KEY_FIRE": 1, + "TogglePlayerSpectating": 2, + "OnPlayerRequestClass": 1, + "classid": 1, + "GetPlayerState": 2, + "PLAYER_STATE_SPECTATING": 2, + "OnGameModeInit": 1, + "SetGameModeText": 1, + "ShowPlayerMarkers": 1, + "PLAYER_MARKERS_MODE_GLOBAL": 1, + "ShowNameTags": 1, + "SetNameTagDrawDistance": 1, + "EnableStuntBonusForAll": 1, + "DisableInteriorEnterExits": 1, + "SetWeather": 1, + "SetWorldTime": 1, + "//UsePlayerPedAnims": 1, + "//ManualVehicleEngineAndLights": 1, + "//LimitGlobalChatRadius": 1, + "AddPlayerClass": 69, + "//AddPlayerClass": 1, + "LoadStaticVehiclesFromFile": 17, + "printf": 1, + "OnPlayerUpdate": 1, + "IsPlayerConnected": 1, + "&&": 2, + "GetPlayerInterior": 1, + "GetPlayerWeapon": 2, + "SetPlayerArmedWeapon": 1, + "fists": 1, + "no": 1, + "syncing": 1, + "until": 1, + "they": 1, + "change": 1, + "their": 1, + "weapon": 1, + "WEAPON_MINIGUN": 1, + "Kick": 1 + }, + "Ruby": { + "module": 8, + "Foo": 1, + "end": 238, + "SHEBANG#!rake": 1, + "task": 2, + "default": 2, + "do": 37, + "puts": 12, + "SHEBANG#!macruby": 1, + "require": 58, + "Resque": 3, + "include": 3, + "Helpers": 1, + "extend": 2, + "self": 11, + "def": 143, + "redis": 7, + "(": 244, + "server": 11, + ")": 256, + "case": 5, + "when": 11, + "String": 2, + "if": 72, + "/redis": 1, + "/": 34, + "//": 3, + "Redis.connect": 2, + "url": 12, + "thread_safe": 2, + "true": 15, + "else": 25, + "namespace": 3, + "server.split": 2, + "host": 3, + "port": 4, + "db": 3, + "Redis.new": 1, + "||": 22, + "resque": 2, + "@redis": 6, + "Redis": 3, + "Namespace.new": 2, + "Namespace": 1, + "@queues": 2, + "Hash.new": 1, + "{": 68, + "|": 91, + "h": 2, + "name": 51, + "[": 56, + "]": 56, + "Queue.new": 1, + "coder": 3, + "}": 68, + "@coder": 1, + "MultiJsonCoder.new": 1, + "attr_writer": 4, + "return": 25, + "self.redis": 2, + "Redis.respond_to": 1, + "connect": 1, + "redis_id": 2, + "redis.respond_to": 2, + "redis.server": 1, + "elsif": 7, + "nodes": 1, + "#": 100, + "distributed": 1, + "redis.nodes.map": 1, + "n": 4, + "n.id": 1, + ".join": 1, + "redis.client.id": 1, + "before_first_fork": 2, + "&": 31, + "block": 30, + "@before_first_fork": 2, + "before_fork": 2, + "@before_fork": 2, + "after_fork": 2, + "@after_fork": 2, + "to_s": 1, + "attr_accessor": 2, + "inline": 3, + "alias": 1, + "push": 1, + "queue": 24, + "item": 4, + "<<": 15, + "pop": 1, + "begin": 9, + ".pop": 1, + "rescue": 13, + "ThreadError": 1, + "nil": 21, + "size": 3, + ".size": 1, + "peek": 1, + "start": 7, + "count": 5, + ".slice": 1, + "list_range": 1, + "key": 8, + "decode": 2, + "redis.lindex": 1, + "Array": 2, + "redis.lrange": 1, + "+": 47, + "-": 34, + ".map": 6, + "queues": 3, + "redis.smembers": 1, + "remove_queue": 1, + ".destroy": 1, + "@queues.delete": 1, + "queue.to_s": 1, + "name.to_s": 3, + "enqueue": 1, + "klass": 16, + "*args": 16, + "enqueue_to": 2, + "queue_from_class": 4, + "before_hooks": 2, + "Plugin.before_enqueue_hooks": 1, + ".collect": 2, + "hook": 9, + "klass.send": 4, + "before_hooks.any": 2, + "result": 8, + "false": 26, + "Job.create": 1, + "Plugin.after_enqueue_hooks": 1, + ".each": 4, + "dequeue": 1, + "Plugin.before_dequeue_hooks": 1, + "Job.destroy": 1, + "Plugin.after_dequeue_hooks": 1, + "klass.instance_variable_get": 1, + "@queue": 1, + "klass.respond_to": 1, + "and": 6, + "klass.queue": 1, + "reserve": 1, + "Job.reserve": 1, + "validate": 1, + "raise": 17, + "NoQueueError.new": 1, + "klass.to_s.empty": 1, + "NoClassError.new": 1, + "workers": 2, + "Worker.all": 1, + "working": 2, + "Worker.working": 1, + "remove_worker": 1, + "worker_id": 2, + "worker": 1, + "Worker.find": 1, + "worker.unregister_worker": 1, + "info": 2, + "pending": 1, + "queues.inject": 1, + "m": 3, + "k": 2, + "processed": 2, + "Stat": 2, + "queues.size": 1, + "workers.size.to_i": 1, + "working.size": 1, + "failed": 3, + "servers": 1, + "environment": 2, + "ENV": 4, + "keys": 6, + "redis.keys": 1, + "key.sub": 1, + "SHEBANG#!python": 1, + "Jenkins": 1, + "Plugin": 1, + "Specification.new": 1, + "plugin": 3, + "plugin.name": 1, + "plugin.display_name": 1, + "plugin.version": 1, + "plugin.description": 1, + "plugin.url": 1, + "plugin.developed_by": 1, + "plugin.uses_repository": 1, + "github": 1, + "plugin.depends_on": 1, + "#plugin.depends_on": 1, + "class": 7, + "Formula": 2, + "FileUtils": 1, + "attr_reader": 5, + "path": 16, + "version": 10, + "homepage": 2, + "specs": 14, + "downloader": 6, + "standard": 2, + "unstable": 2, + "head": 3, + "bottle_version": 2, + "bottle_url": 3, + "bottle_sha1": 2, + "buildpath": 1, + "initialize": 2, + "set_instance_variable": 12, + "@head": 4, + "not": 3, + "@url": 8, + "or": 7, + "ARGV.build_head": 2, + "@version": 10, + "@spec_to_use": 4, + "@unstable": 2, + "@standard.nil": 1, + "SoftwareSpecification.new": 3, + "@specs": 3, + "@standard": 3, + "@url.nil": 1, + "@name": 3, + "validate_variable": 7, + "@path": 1, + "path.nil": 1, + "self.class.path": 1, + "Pathname.new": 3, + "@spec_to_use.detect_version": 1, + "CHECKSUM_TYPES.each": 1, + "type": 10, + "@downloader": 2, + "download_strategy.new": 2, + "@spec_to_use.url": 1, + "@spec_to_use.specs": 1, + "@bottle_url": 2, + "bottle_base_url": 1, + "bottle_filename": 1, + "@bottle_sha1": 2, + "installed": 2, + "installed_prefix.children.length": 1, + "explicitly_requested": 1, + "ARGV.named.empty": 1, + "ARGV.formulae.include": 1, + "linked_keg": 1, + "HOMEBREW_REPOSITORY/": 2, + "/@name": 1, + "installed_prefix": 1, + "head_prefix": 2, + "HOMEBREW_CELLAR": 2, + "head_prefix.directory": 1, + "prefix": 14, + "rack": 1, + ";": 41, + "prefix.parent": 1, + "bin": 1, + "doc": 1, + "lib": 1, + "libexec": 1, + "man": 9, + "man1": 1, + "man2": 1, + "man3": 1, + "man4": 1, + "man5": 1, + "man6": 1, + "man7": 1, + "man8": 1, + "sbin": 1, + "share": 1, + "etc": 1, + "HOMEBREW_PREFIX": 2, + "var": 1, + "plist_name": 2, + "plist_path": 1, + "download_strategy": 1, + "@spec_to_use.download_strategy": 1, + "cached_download": 1, + "@downloader.cached_location": 1, + "caveats": 1, + "options": 3, + "patches": 2, + "keg_only": 2, + "self.class.keg_only_reason": 1, + "fails_with": 2, + "cc": 3, + "self.class.cc_failures.nil": 1, + "Compiler.new": 1, + "unless": 15, + "cc.is_a": 1, + "Compiler": 1, + "self.class.cc_failures.find": 1, + "failure": 1, + "next": 1, + "failure.compiler": 1, + "cc.name": 1, + "failure.build.zero": 1, + "failure.build": 1, + "cc.build": 1, + "skip_clean": 2, + "self.class.skip_clean_all": 1, + "to_check": 2, + "path.relative_path_from": 1, + ".to_s": 3, + "self.class.skip_clean_paths.include": 1, + "brew": 2, + "stage": 2, + "patch": 3, + "yield": 5, + "Interrupt": 2, + "RuntimeError": 1, + "SystemCallError": 1, + "e": 8, + "don": 1, + "config.log": 2, + "t": 3, + "a": 10, + "std_autotools": 1, + "variant": 1, + "because": 1, + "autotools": 1, + "is": 3, + "lot": 1, + "std_cmake_args": 1, + "%": 10, + "W": 1, + "DCMAKE_INSTALL_PREFIX": 1, + "DCMAKE_BUILD_TYPE": 1, + "None": 1, + "DCMAKE_FIND_FRAMEWORK": 1, + "LAST": 1, + "Wno": 1, + "dev": 1, + "self.class_s": 2, + "#remove": 1, + "invalid": 1, + "characters": 1, + "then": 4, + "camelcase": 1, + "it": 1, + "name.capitalize.gsub": 1, + "_.": 1, + "s": 2, + "zA": 1, + "Z0": 1, + "upcase": 1, + ".gsub": 5, + "self.names": 1, + "Dir": 4, + "f": 11, + "File.basename": 2, + ".sort": 2, + "self.all": 1, + "map": 1, + "self.map": 1, + "rv": 3, + "each": 1, + "self.each": 1, + "names.each": 1, + "Formula.factory": 2, + "onoe": 2, + "inspect": 2, + "self.aliases": 1, + "self.canonical_name": 1, + "name.kind_of": 2, + "Pathname": 2, + "formula_with_that_name": 1, + "HOMEBREW_REPOSITORY": 4, + "possible_alias": 1, + "possible_cached_formula": 1, + "HOMEBREW_CACHE_FORMULA": 2, + "name.include": 2, + "r": 3, + ".": 3, + "tapd": 1, + ".downcase": 2, + "tapd.find_formula": 1, + "relative_pathname": 1, + "relative_pathname.stem.to_s": 1, + "tapd.directory": 1, + "formula_with_that_name.file": 1, + "formula_with_that_name.readable": 1, + "possible_alias.file": 1, + "possible_alias.realpath.basename": 1, + "possible_cached_formula.file": 1, + "possible_cached_formula.to_s": 1, + "self.factory": 1, + "https": 1, + "ftp": 1, + ".basename": 1, + "target_file": 6, + "name.basename": 1, + "HOMEBREW_CACHE_FORMULA.mkpath": 1, + "FileUtils.rm": 1, + "force": 1, + "curl": 1, + "install_type": 4, + "from_url": 1, + "Formula.canonical_name": 1, + ".rb": 1, + "path.stem": 1, + "from_path": 1, + "path.to_s": 3, + "Formula.path": 1, + "from_name": 2, + "klass_name": 2, + "Object.const_get": 1, + "NameError": 2, + "LoadError": 3, + "klass.new": 2, + "FormulaUnavailableError.new": 1, + "tap": 1, + "path.realpath.to_s": 1, + "/Library/Taps/": 1, + "w": 6, + "self.path": 1, + "mirrors": 4, + "self.class.mirrors": 1, + "deps": 1, + "self.class.dependencies.deps": 1, + "external_deps": 1, + "self.class.dependencies.external_deps": 1, + "recursive_deps": 1, + "Formula.expand_deps": 1, + ".flatten.uniq": 1, + "self.expand_deps": 1, + "f.deps.map": 1, + "dep": 3, + "f_dep": 3, + "dep.to_s": 1, + "expand_deps": 1, + "protected": 1, + "system": 1, + "cmd": 6, + "pretty_args": 1, + "args.dup": 1, + "pretty_args.delete": 1, + "ARGV.verbose": 2, + "ohai": 3, + ".strip": 1, + "removed_ENV_variables": 2, + "args.empty": 1, + "cmd.split": 1, + ".first": 1, + "ENV.remove_cc_etc": 1, + "safe_system": 4, + "rd": 1, + "wr": 3, + "IO.pipe": 1, + "pid": 1, + "fork": 1, + "rd.close": 1, + "stdout.reopen": 1, + "stderr.reopen": 1, + "args.collect": 1, + "arg": 1, + "arg.to_s": 1, + "exec": 2, + "exit": 2, + "never": 1, + "gets": 1, + "here": 1, + "threw": 1, + "wr.close": 1, + "out": 4, + "rd.read": 1, + "until": 1, + "rd.eof": 1, + "Process.wait": 1, + ".success": 1, + "removed_ENV_variables.each": 1, + "value": 4, + "ENV.kind_of": 1, + "Hash": 3, + "BuildError.new": 1, + "args": 5, + "public": 2, + "fetch": 2, + "install_bottle": 1, + "CurlBottleDownloadStrategy.new": 1, + "mirror_list": 2, + "HOMEBREW_CACHE.mkpath": 1, + "fetched": 4, + "downloader.fetch": 1, + "CurlDownloadStrategyError": 1, + "mirror_list.empty": 1, + "mirror_list.shift.values_at": 1, + "retry": 2, + "checksum_type": 2, + "CHECKSUM_TYPES.detect": 1, + "instance_variable_defined": 2, + "verify_download_integrity": 2, + "fn": 2, + "args.length": 1, + "md5": 2, + "supplied": 4, + "instance_variable_get": 2, + "type.to_s.upcase": 1, + "hasher": 2, + "Digest.const_get": 1, + "hash": 2, + "fn.incremental_hash": 1, + "supplied.empty": 1, + "message": 2, + "EOF": 2, + "mismatch": 1, + "Expected": 1, + "Got": 1, + "Archive": 1, + "To": 1, + "an": 1, + "incomplete": 1, + "download": 1, + "remove": 1, + "the": 8, + "file": 1, + "above.": 1, + "supplied.upcase": 1, + "hash.upcase": 1, + "opoo": 1, + "private": 3, + "CHECKSUM_TYPES": 2, + "sha1": 4, + "sha256": 1, + ".freeze": 1, + "fetched.kind_of": 1, + "mktemp": 1, + "downloader.stage": 1, + "@buildpath": 2, + "Pathname.pwd": 1, + "patch_list": 1, + "Patches.new": 1, + "patch_list.empty": 1, + "patch_list.external_patches": 1, + "patch_list.download": 1, + "patch_list.each": 1, + "p": 2, + "p.compression": 1, + "gzip": 1, + "p.compressed_filename": 2, + "bzip2": 1, "*": 3, - "FROM": 1, - "DBO.SYSOBJECTS": 1, - "WHERE": 1, - "ID": 2, - "OBJECT_ID": 1, - "N": 7, - ")": 131, - "AND": 1, - "OBJECTPROPERTY": 1, - "id": 22, - "DROP": 3, - "PROCEDURE": 1, - "dbo.AvailableInSearchSel": 2, - "GO": 4, - "CREATE": 10, - "Procedure": 1, - "AvailableInSearchSel": 1, - "AS": 1, - "UNION": 2, - "ALL": 2, - "DB_NAME": 1, - "BEGIN": 1, - "GRANT": 1, - "EXECUTE": 1, - "ON": 1, - "TO": 1, - "[": 1, - "rv": 1, - "]": 1, - "END": 1, - "SHOW": 2, - "WARNINGS": 2, - ";": 31, - "-": 496, - "Table": 9, - "structure": 9, - "for": 15, - "table": 17, - "articles": 4, - "TABLE": 10, - "NOT": 46, - "int": 28, - "NULL": 91, - "AUTO_INCREMENT": 9, - "title": 4, - "varchar": 22, - "DEFAULT": 22, - "content": 2, - "longtext": 1, - "date_posted": 4, - "datetime": 10, - "created_by": 2, - "last_modified": 2, - "last_modified_by": 2, - "ordering": 2, - "is_published": 2, - "PRIMARY": 9, - "KEY": 13, - "Dumping": 6, - "data": 6, - "INSERT": 6, - "INTO": 6, - "VALUES": 6, - "challenges": 4, - "pkg_name": 2, - "description": 2, - "text": 1, - "author": 2, - "category": 2, - "visibility": 2, - "publish": 2, - "abstract": 2, - "level": 2, - "duration": 2, - "goal": 2, - "solution": 2, - "availability": 2, - "default_points": 2, - "default_duration": 2, - "challenge_attempts": 2, - "user_id": 8, - "challenge_id": 7, - "time": 1, - "status": 1, - "challenge_attempt_count": 2, - "tries": 1, - "UNIQUE": 4, - "classes": 4, - "name": 3, - "date_created": 6, - "archive": 2, - "class_challenges": 4, - "class_id": 5, - "class_memberships": 4, - "users": 4, - "username": 3, - "full_name": 2, - "email": 2, - "password": 2, - "joined": 2, - "last_visit": 2, - "is_activated": 2, - "type": 3, - "token": 3, - "user_has_challenge_token": 3, - "create": 2, - "FILIAL": 10, - "NUMBER": 1, - "not": 5, - "null": 4, - "title_ua": 1, - "VARCHAR2": 4, - "title_ru": 1, - "title_eng": 1, - "remove_date": 1, - "DATE": 2, - "modify_date": 1, - "modify_user": 1, - "alter": 1, - "add": 1, - "constraint": 1, - "PK_ID": 1, - "primary": 1, - "key": 1, - "grant": 8, - "select": 10, - "on": 8, - "to": 8, - "ATOLL": 1, - "CRAMER2GIS": 1, - "DMS": 1, - "HPSM2GIS": 1, - "PLANMONITOR": 1, - "SIEBEL": 1, - "VBIS": 1, - "VPORTAL": 1, - "if": 1, - "exists": 1, - "from": 2, - "sysobjects": 1, - "where": 2, - "and": 1, - "in": 1, - "exec": 1, - "%": 2, - "object_ddl": 1, - "go": 1, - "use": 1, - "translog": 1, - "VIEW": 1, - "suspendedtoday": 2, - "view": 1, - "as": 1, - "suspended": 1, - "datediff": 1, - "now": 1 - }, - "Squirrel": { - "//example": 1, + "p.patch_args": 1, + "v": 2, + "v.to_s.empty": 1, + "s/": 1, + "class_value": 3, + "self.class.send": 1, + "instance_variable_set": 1, + "self.method_added": 1, + "method": 4, + "self.attr_rw": 1, + "attrs": 1, + "attrs.each": 1, + "attr": 4, + "class_eval": 1, + "Q": 1, + "val": 10, + "val.nil": 3, + "@#": 2, + "attr_rw": 4, + "keg_only_reason": 1, + "skip_clean_all": 2, + "cc_failures": 1, + "stable": 2, + "block_given": 5, + "instance_eval": 2, + "ARGV.build_devel": 2, + "devel": 1, + "@mirrors": 3, + "clear": 1, "from": 1, + "release": 1, + "bottle": 1, + "bottle_block": 1, + "Class.new": 2, + "self.version": 1, + "self.url": 1, + "self.sha1": 1, + "sha1.shift": 1, + "@sha1": 6, + "MacOS.cat": 1, + "MacOS.lion": 1, + "self.data": 1, + "&&": 8, + "bottle_block.instance_eval": 1, + "@bottle_version": 1, + "bottle_block.data": 1, + "mirror": 1, + "@mirrors.uniq": 1, + "dependencies": 1, + "@dependencies": 1, + "DependencyCollector.new": 1, + "depends_on": 1, + "dependencies.add": 1, + "paths": 3, + "all": 1, + "@skip_clean_all": 2, + "@skip_clean_paths": 3, + ".flatten.each": 1, + "p.to_s": 2, + "@skip_clean_paths.include": 1, + "skip_clean_paths": 1, + "reason": 2, + "explanation": 1, + "@keg_only_reason": 1, + "KegOnlyReason.new": 1, + "explanation.to_s.chomp": 1, + "compiler": 3, + "@cc_failures": 2, + "CompilerFailures.new": 1, + "CompilerFailure.new": 2, + "Sinatra": 2, + "Request": 2, + "<": 2, + "Rack": 1, + "accept": 1, + "@env": 2, + "entries": 1, + ".to_s.split": 1, + "entries.map": 1, + "accept_entry": 1, + ".sort_by": 1, + "last": 4, + "first": 1, + "preferred_type": 1, + "self.defer": 1, + "match": 6, + "pattern": 1, + "path.respond_to": 5, + "path.keys": 1, + "names": 2, + "path.names": 1, + "TypeError": 1, + "URI": 3, + "URI.const_defined": 1, + "Parser": 1, + "Parser.new": 1, + "encoded": 1, + "char": 4, + "enc": 5, + "URI.escape": 1, + "helpers": 3, + "data": 1, + "reset": 1, + "set": 36, + "development": 6, + ".to_sym": 1, + "raise_errors": 1, + "Proc.new": 11, + "test": 5, + "dump_errors": 1, + "show_exceptions": 1, + "sessions": 1, + "logging": 2, + "protection": 1, + "method_override": 4, + "use_code": 1, + "default_encoding": 1, + "add_charset": 1, + "javascript": 1, + "xml": 2, + "xhtml": 1, + "json": 1, + "settings.add_charset": 1, + "text": 3, + "session_secret": 3, + "SecureRandom.hex": 1, + "NotImplementedError": 1, + "Kernel.rand": 1, + "**256": 1, + "alias_method": 2, + "methodoverride": 2, + "run": 2, + "via": 1, + "at": 1, + "running": 2, + "built": 1, + "in": 3, + "now": 1, "http": 1, - "//www.squirrel": 1, - "-": 1, - "lang.org/#documentation": 1, - "local": 3, - "table": 1, - "{": 10, - "a": 2, - "subtable": 1, - "array": 3, - "[": 3, - "]": 3, - "}": 10, - "+": 2, - "b": 1, - ";": 15, - "foreach": 1, - "(": 10, - "i": 1, - "val": 2, - "in": 1, - ")": 10, - "print": 2, - "typeof": 1, - "/////////////////////////////////////////////": 1, - "class": 2, - "Entity": 3, - "constructor": 2, - "etype": 2, - "entityname": 4, - "name": 2, - "type": 2, - "x": 2, - "y": 2, - "z": 2, - "null": 2, - "function": 2, - "MoveTo": 1, - "newx": 2, - "newy": 2, - "newz": 2, - "Player": 2, + "webrick": 1, + "bind": 1, + "ruby_engine": 6, + "defined": 1, + "RUBY_ENGINE": 2, + "server.unshift": 6, + "ruby_engine.nil": 1, + "absolute_redirects": 1, + "prefixed_redirects": 1, + "empty_path_info": 1, + "app_file": 4, + "root": 5, + "File.expand_path": 1, + "File.dirname": 4, + "views": 1, + "File.join": 6, + "reload_templates": 1, + "lock": 1, + "threaded": 1, + "public_folder": 3, + "static": 1, + "File.exist": 1, + "static_cache_control": 1, + "error": 3, + "Exception": 1, + "response.status": 1, + "content_type": 3, + "configure": 2, + "get": 2, + "filename": 2, + "__FILE__": 3, + "png": 1, + "send_file": 1, + "NotFound": 1, + "HTML": 2, + "": 1, + "html": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "

": 1, + "doesn": 1, + "rsquo": 1, + "know": 1, + "this": 2, + "ditty.": 1, + "

": 1, + "": 1, + "src=": 1, + "
": 1, + "id=": 1, + "Try": 1, + "
": 1,
+      "request.request_method.downcase": 1,
+      "nend": 1,
+      "
": 1, + "
": 1, + "": 1, + "": 1, + "Application": 2, + "Base": 2, + "super": 3, + "self.register": 2, + "extensions": 6, + "nodoc": 3, + "added_methods": 2, + "extensions.map": 1, + "m.public_instance_methods": 1, + ".flatten": 1, + "Delegator.delegate": 1, + "Delegator": 1, + "self.delegate": 1, + "methods": 1, + "methods.each": 1, + "method_name": 5, + "define_method": 1, + "respond_to": 1, + "Delegator.target.send": 1, + "delegate": 1, + "put": 1, + "post": 1, + "delete": 1, + "template": 1, + "layout": 1, + "before": 1, + "after": 1, + "not_found": 1, + "mime_type": 1, + "enable": 1, + "disable": 1, + "use": 1, + "production": 1, + "settings": 2, + "target": 1, + "self.target": 1, + "Wrapper": 1, + "stack": 2, + "instance": 2, + "@stack": 1, + "@instance": 2, + "@instance.settings": 1, + "call": 1, + "env": 2, + "@stack.call": 1, + "self.new": 1, + "base": 4, + "base.class_eval": 1, + "Delegator.target.register": 1, + "self.helpers": 1, + "Delegator.target.helpers": 1, + "self.use": 1, + "Delegator.target.use": 1, + "Grit": 1, + "SHEBANG#!ruby": 2, + ".unshift": 1, + "For": 1, + "use/testing": 1, + "no": 1, + "gem": 3, + "require_all": 4, + "glob": 2, + "Jekyll": 3, + "VERSION": 1, + "DEFAULTS": 2, + "Dir.pwd": 3, + "self.configuration": 1, + "override": 3, + "source": 2, + "config_file": 2, + "config": 3, + "YAML.load_file": 1, + "config.is_a": 1, + "stdout.puts": 1, + "err": 1, + "stderr.puts": 2, + "err.to_s": 1, + "DEFAULTS.deep_merge": 1, + ".deep_merge": 1, + "load": 3, + "appraise": 2, + "ActiveSupport": 1, + "Inflector": 1, + "pluralize": 3, + "word": 10, + "apply_inflections": 3, + "inflections.plurals": 1, + "singularize": 2, + "inflections.singulars": 1, + "camelize": 2, + "term": 1, + "uppercase_first_letter": 2, + "string": 4, + "term.to_s": 1, + "string.sub": 2, + "z": 7, + "d": 6, + "*/": 1, + "inflections.acronyms": 1, + ".capitalize": 1, + "inflections.acronym_regex": 2, + "b": 4, + "A": 5, + "Z_": 1, + "string.gsub": 1, + "_": 2, + "/i": 2, + "underscore": 3, + "camel_cased_word": 6, + "camel_cased_word.to_s.dup": 1, + "word.gsub": 4, + "Za": 1, + "Z": 3, + "word.tr": 1, + "word.downcase": 1, + "humanize": 2, + "lower_case_and_underscored_word": 1, + "lower_case_and_underscored_word.to_s.dup": 1, + "inflections.humans.each": 1, + "rule": 4, + "replacement": 4, + "break": 4, + "result.sub": 2, + "result.gsub": 2, + "/_id": 1, + "result.tr": 1, + "w/": 1, + ".upcase": 1, + "titleize": 1, + "": 1, + "capitalize": 1, + "Create": 1, + "of": 1, + "table": 2, + "like": 1, + "Rails": 1, + "does": 1, + "for": 1, + "models": 1, + "to": 1, + "This": 1, + "uses": 1, + "on": 2, + "RawScaledScorer": 1, + "tableize": 2, + "class_name": 2, + "classify": 1, + "table_name": 1, + "table_name.to_s.sub": 1, + "/.*": 1, + "./": 1, + "dasherize": 1, + "underscored_word": 1, + "underscored_word.tr": 1, + "demodulize": 1, + "i": 2, + "path.rindex": 2, + "..": 1, + "deconstantize": 1, + "implementation": 1, + "based": 1, + "one": 1, + "facets": 1, + "id": 1, + "outside": 2, + "inside": 2, + "owned": 1, + "constant": 4, + "constant.ancestors.inject": 1, + "const": 3, + "ancestor": 3, + "Object": 1, + "ancestor.const_defined": 1, + "constant.const_get": 1, + "safe_constantize": 1, + "constantize": 1, + "e.message": 2, + "uninitialized": 1, + "wrong": 1, + "const_regexp": 3, + "e.name.to_s": 1, + "camel_cased_word.to_s": 1, + "ArgumentError": 1, + "/not": 1, + "missing": 1, + "ordinal": 1, + "number": 2, + ".include": 1, + "number.to_i.abs": 2, + "ordinalize": 1, + "parts": 1, + "camel_cased_word.split": 1, + "parts.pop": 1, + "parts.reverse.inject": 1, + "acc": 2, + "part": 1, + "part.empty": 1, + "rules": 1, + "word.to_s.dup": 1, + "word.empty": 1, + "inflections.uncountables.include": 1, + "result.downcase": 1, + "Z/": 1, + "rules.each": 1, + "object": 2, + "@user": 1, + "person": 1, + "attributes": 2, + "username": 1, + "email": 1, + "location": 1, + "created_at": 1, + "registered_at": 1, + "node": 2, + "role": 1, + "user": 1, + "user.is_admin": 1, + "child": 1, + "phone_numbers": 1, + "pnumbers": 1, "extends": 1, - "base.constructor": 1, - "DoDomething": 1, - "newplayer": 1, - "newplayer.MoveTo": 1 + "node_numbers": 1, + "u": 1, + "partial": 1, + "u.phone_numbers": 1 + }, + "C": { + "#include": 154, + "int": 446, + "save_commit_buffer": 3, + ";": 5465, + "const": 358, + "char": 530, + "*commit_type": 2, + "static": 455, + "struct": 360, + "commit": 59, + "*check_commit": 1, + "(": 6243, + "object": 41, + "*obj": 9, + "unsigned": 140, + "*sha1": 16, + "quiet": 5, + ")": 6245, + "{": 1531, + "if": 1015, + "obj": 48, + "-": 1803, + "type": 36, + "OBJ_COMMIT": 5, + "error": 96, + "sha1_to_hex": 8, + "sha1": 20, + "typename": 2, + "return": 529, + "NULL": 330, + "}": 1547, + "*": 261, + "*lookup_commit_reference_gently": 2, + "deref_tag": 1, + "parse_object": 1, + "check_commit": 2, + "*lookup_commit_reference": 2, + "lookup_commit_reference_gently": 1, + "*lookup_commit_or_die": 2, + "*ref_name": 2, + "*c": 69, + "lookup_commit_reference": 2, + "c": 252, + "die": 5, + "_": 3, + "ref_name": 2, + "hashcmp": 2, + "object.sha1": 8, + "warning": 1, + "*lookup_commit": 2, + "lookup_object": 2, + "create_object": 2, + "alloc_commit_node": 1, + "*lookup_commit_reference_by_name": 2, + "*name": 12, + "[": 601, + "]": 601, + "*commit": 10, + "get_sha1": 1, + "name": 28, + "||": 141, + "parse_commit": 3, + "long": 105, + "parse_commit_date": 2, + "*buf": 10, + "*tail": 2, + "*dateptr": 1, + "buf": 57, + "+": 551, + "tail": 12, + "memcmp": 6, + "while": 70, + "<": 219, + "&&": 248, + "dateptr": 2, + "strtoul": 2, + "commit_graft": 13, + "**commit_graft": 1, + "commit_graft_alloc": 4, + "commit_graft_nr": 5, + "commit_graft_pos": 2, + "lo": 6, + "hi": 5, + "mi": 5, + "/": 9, + "*graft": 3, + "cmp": 9, + "graft": 10, + "else": 190, + "register_commit_graft": 2, + "ignore_dups": 2, + "pos": 7, + "free": 62, + "alloc_nr": 1, + "xrealloc": 2, + "sizeof": 71, + "parse_commit_buffer": 3, + "*item": 10, + "void": 288, + "*buffer": 6, + "size": 120, + "buffer": 10, + "*bufptr": 1, + "parent": 7, + "commit_list": 35, + "**pptr": 1, + "item": 24, + "object.parsed": 4, + "<=>": 16, + "bufptr": 12, + "46": 1, + "tree": 3, + "5": 1, + "45": 1, + "n": 70, + "bogus": 1, + "s": 154, + "get_sha1_hex": 2, + "lookup_tree": 1, + "pptr": 5, + "&": 442, + "parents": 4, + "lookup_commit_graft": 1, + "*new_parent": 2, + "48": 1, + "7": 1, + "47": 1, + "bad": 1, + "in": 11, + "nr_parent": 3, + "grafts_replace_parents": 1, + "continue": 20, + "new_parent": 6, + "lookup_commit": 2, + "commit_list_insert": 2, + "next": 8, + "i": 410, + "for": 88, + "date": 5, + "enum": 30, + "object_type": 1, + "ret": 142, + "read_sha1_file": 1, + "find_commit_subject": 2, + "*commit_buffer": 2, + "**subject": 2, + "*eol": 1, + "*p": 9, + "commit_buffer": 1, + "a": 80, + "b_date": 3, + "b": 66, + "a_date": 2, + "*commit_list_get_next": 1, + "*a": 9, + "commit_list_set_next": 1, + "*next": 6, + "commit_list_sort_by_date": 2, + "**list": 5, + "*list": 2, + "llist_mergesort": 1, + "peel_to_type": 1, + "util": 3, + "merge_remote_desc": 3, + "*desc": 1, + "desc": 5, + "xmalloc": 2, + "strdup": 1, + "**commit_list_append": 2, + "**next": 2, + "*new": 1, + "new": 4, + "": 1, + "": 2, + "": 8, + "": 4, + "": 2, + "//": 262, + "rfUTF8_IsContinuationbyte": 1, + "": 3, + "malloc": 3, + "": 5, + "memcpy": 35, + "e.t.c.": 1, + "int32_t": 112, + "rfFReadLine_UTF8": 5, + "FILE*": 64, + "f": 184, + "char**": 7, + "utf8": 36, + "uint32_t*": 34, + "byteLength": 197, + "bufferSize": 6, + "char*": 167, + "eof": 53, + "bytesN": 98, + "uint32_t": 144, + "bIndex": 5, + "#ifdef": 66, + "RF_NEWLINE_CRLF": 1, + "newLineFound": 1, + "false": 77, + "#endif": 243, + "*bufferSize": 1, + "RF_OPTION_FGETS_READBYTESN": 5, + "RF_MALLOC": 47, + "tempBuff": 6, + "uint16_t": 12, + "RF_LF": 10, + "break": 244, + "buff": 95, + "RF_SUCCESS": 14, + "RE_FILE_EOF": 22, + "EOF": 26, + "found": 20, + "*eofReached": 14, + "true": 73, + "LOG_ERROR": 64, + "num": 24, + "RF_HEXEQ_UI": 7, + "rfFgetc_UTF32BE": 3, + "else//": 14, + "undo": 5, + "the": 91, + "peek": 5, + "ahead": 5, + "of": 44, + "file": 6, + "pointer": 5, + "fseek": 19, + "SEEK_CUR": 19, + "rfFgets_UTF32LE": 2, + "eofReached": 4, + "do": 21, + "rfFgetc_UTF32LE": 4, + "rfFgets_UTF16BE": 2, + "rfFgetc_UTF16BE": 4, + "rfFgets_UTF16LE": 2, + "rfFgetc_UTF16LE": 4, + "rfFgets_UTF8": 2, + "rfFgetc_UTF8": 3, + "RF_HEXEQ_C": 9, + "fgetc": 9, + "check": 8, + "ferror": 2, + "RE_FILE_READ": 2, + "*ret": 20, + "cp": 12, + "c2": 13, + "c3": 9, + "c4": 5, + "i_READ_CHECK": 20, + "///": 4, + "success": 4, + "cc": 24, + "we": 10, + "need": 5, + "more": 2, + "bytes": 225, + "xC0": 3, + "xC1": 1, + "RE_UTF8_INVALID_SEQUENCE_INVALID_BYTE": 6, + "RE_UTF8_INVALID_SEQUENCE_END": 6, + "rfUTF8_IsContinuationByte": 12, + "RE_UTF8_INVALID_SEQUENCE_CONBYTE": 6, + "decoded": 3, + "codepoint": 47, + "F": 38, + "|": 132, + "<<": 56, + "end": 48, + "case": 273, + "xE0": 2, + "xF": 5, + "to": 37, + "decode": 6, + "xF0": 2, + "RF_HEXGE_C": 1, + "xBF": 2, + "//invalid": 1, + "byte": 6, + "value": 9, + "are": 6, + "from": 16, + "xFF": 1, + "//if": 1, + "needing": 1, + "than": 5, + "swapE": 21, + "v1": 38, + "v2": 26, + "rfUTILS_Endianess": 24, + "RF_LITTLE_ENDIAN": 23, + "fread": 12, + "swap": 9, + "endianess": 40, + "needed": 10, + "rfUTILS_SwapEndianUS": 10, + "RF_HEXGE_US": 4, + "xD800": 8, + "RF_HEXLE_US": 4, + "xDFFF": 8, + "RF_HEXL_US": 8, + "RF_HEXG_US": 8, + "xDBFF": 4, + "RE_UTF16_INVALID_SEQUENCE": 20, + "RE_UTF16_NO_SURRPAIR": 2, + "xDC00": 4, + "user": 2, + "wants": 2, + "ff": 10, + "uint16_t*": 11, + "surrogate": 4, + "pair": 4, + "existence": 2, + "RF_BIG_ENDIAN": 10, + "rfUTILS_SwapEndianUI": 11, + "rfFback_UTF32BE": 2, + "i_FSEEK_CHECK": 14, + "rfFback_UTF32LE": 2, + "rfFback_UTF16BE": 2, + "rfFback_UTF16LE": 2, + "rfFback_UTF8": 2, + "switch": 46, + "depending": 1, + "on": 4, + "number": 19, + "read": 1, + "backwards": 1, + "default": 33, + "RE_UTF8_INVALID_SEQUENCE": 2, + "git_usage_string": 2, + "git_more_info_string": 2, + "N_": 1, + "startup_info": 3, + "git_startup_info": 2, + "use_pager": 8, + "pager_config": 3, + "*cmd": 5, + "want": 3, + "*value": 5, + "pager_command_config": 2, + "*var": 4, + "*data": 12, + "data": 69, + "prefixcmp": 3, + "var": 7, + "strcmp": 20, + "cmd": 46, + "git_config_maybe_bool": 1, + "xstrdup": 2, + "check_pager_config": 3, + "c.cmd": 1, + "c.want": 2, + "c.value": 3, + "git_config": 3, + "pager_program": 1, + "commit_pager_choice": 4, + "setenv": 1, + "setup_pager": 1, + "handle_options": 2, + "***argv": 2, + "*argc": 1, + "*envchanged": 1, + "**orig_argv": 1, + "*argv": 6, + "new_argv": 7, + "option_count": 1, + "count": 17, + "alias_command": 4, + "trace_argv_printf": 3, + "*argcp": 4, + "subdir": 3, + "chdir": 2, + "die_errno": 3, + "errno": 20, + "saved_errno": 1, + "git_version_string": 1, + "GIT_VERSION": 1, + "#define": 920, + "RUN_SETUP": 81, + "RUN_SETUP_GENTLY": 16, + "USE_PAGER": 3, + "NEED_WORK_TREE": 18, + "cmd_struct": 4, + "option": 9, + "run_builtin": 2, + "argc": 26, + "**argv": 6, + "status": 57, + "help": 4, + "stat": 3, + "st": 2, + "*prefix": 7, + "prefix": 34, + "argv": 54, + "p": 60, + "setup_git_directory": 1, + "nongit_ok": 2, + "setup_git_directory_gently": 1, + "have_repository": 1, + "trace_repo_setup": 1, + "setup_work_tree": 1, + "fn": 5, + "fstat": 1, + "fileno": 1, + "stdout": 5, + "S_ISFIFO": 1, + "st.st_mode": 2, + "S_ISSOCK": 1, + "fflush": 2, + "fclose": 5, + "handle_internal_command": 3, + "commands": 3, + "cmd_add": 2, + "cmd_annotate": 1, + "cmd_apply": 1, + "cmd_archive": 1, + "cmd_bisect__helper": 1, + "cmd_blame": 2, + "cmd_branch": 1, + "cmd_bundle": 1, + "cmd_cat_file": 1, + "cmd_check_attr": 1, + "cmd_check_ref_format": 1, + "cmd_checkout": 1, + "cmd_checkout_index": 1, + "cmd_cherry": 1, + "cmd_cherry_pick": 1, + "cmd_clean": 1, + "cmd_clone": 1, + "cmd_column": 1, + "cmd_commit": 1, + "cmd_commit_tree": 1, + "cmd_config": 1, + "cmd_count_objects": 1, + "cmd_describe": 1, + "cmd_diff": 1, + "cmd_diff_files": 1, + "cmd_diff_index": 1, + "cmd_diff_tree": 1, + "cmd_fast_export": 1, + "cmd_fetch": 1, + "cmd_fetch_pack": 1, + "cmd_fmt_merge_msg": 1, + "cmd_for_each_ref": 1, + "cmd_format_patch": 1, + "cmd_fsck": 2, + "cmd_gc": 1, + "cmd_get_tar_commit_id": 1, + "cmd_grep": 1, + "cmd_hash_object": 1, + "cmd_help": 1, + "cmd_index_pack": 1, + "cmd_init_db": 2, + "cmd_log": 1, + "cmd_ls_files": 1, + "cmd_ls_remote": 2, + "cmd_ls_tree": 1, + "cmd_mailinfo": 1, + "cmd_mailsplit": 1, + "cmd_merge": 1, + "cmd_merge_base": 1, + "cmd_merge_file": 1, + "cmd_merge_index": 1, + "cmd_merge_ours": 1, + "cmd_merge_recursive": 4, + "cmd_merge_tree": 1, + "cmd_mktag": 1, + "cmd_mktree": 1, + "cmd_mv": 1, + "cmd_name_rev": 1, + "cmd_notes": 1, + "cmd_pack_objects": 1, + "cmd_pack_redundant": 1, + "cmd_pack_refs": 1, + "cmd_patch_id": 1, + "cmd_prune": 1, + "cmd_prune_packed": 1, + "cmd_push": 1, + "cmd_read_tree": 1, + "cmd_receive_pack": 1, + "cmd_reflog": 1, + "cmd_remote": 1, + "cmd_remote_ext": 1, + "cmd_remote_fd": 1, + "cmd_replace": 1, + "cmd_repo_config": 1, + "cmd_rerere": 1, + "cmd_reset": 1, + "cmd_rev_list": 1, + "cmd_rev_parse": 1, + "cmd_revert": 1, + "cmd_rm": 1, + "cmd_send_pack": 1, + "cmd_shortlog": 1, + "cmd_show": 1, + "cmd_show_branch": 1, + "cmd_show_ref": 1, + "cmd_status": 1, + "cmd_stripspace": 1, + "cmd_symbolic_ref": 1, + "cmd_tag": 1, + "cmd_tar_tree": 1, + "cmd_unpack_file": 1, + "cmd_unpack_objects": 1, + "cmd_update_index": 1, + "cmd_update_ref": 1, + "cmd_update_server_info": 1, + "cmd_upload_archive": 1, + "cmd_upload_archive_writer": 1, + "cmd_var": 1, + "cmd_verify_pack": 1, + "cmd_verify_tag": 1, + "cmd_version": 1, + "cmd_whatchanged": 1, + "cmd_write_tree": 1, + "ext": 4, + "STRIP_EXTENSION": 1, + "strlen": 17, + "*argv0": 1, + "argv0": 2, + "ARRAY_SIZE": 1, + "exit": 20, + "execv_dashed_external": 2, + "strbuf": 12, + "STRBUF_INIT": 1, + "*tmp": 1, + "strbuf_addf": 1, + "tmp": 6, + "cmd.buf": 1, + "run_command_v_opt": 1, + "RUN_SILENT_EXEC_FAILURE": 1, + "RUN_CLEAN_ON_EXIT": 1, + "ENOENT": 3, + "strbuf_release": 1, + "run_argv": 2, + "done_alias": 4, + "argcp": 2, + "handle_alias": 1, + "main": 3, + "git_extract_argv0_path": 1, + "git_setup_gettext": 1, + "printf": 4, + "list_common_cmds_help": 1, + "setup_path": 1, + "done_help": 3, + "was_alias": 3, + "fprintf": 18, + "stderr": 15, + "help_unknown_cmd": 1, + "strerror": 4, + "": 5, + "": 2, + "": 1, + "": 1, + "": 2, + "__APPLE__": 2, + "#if": 92, + "defined": 42, + "TARGET_OS_IPHONE": 1, + "#else": 94, + "extern": 38, + "**environ": 1, + "uv__chld": 2, + "EV_P_": 1, + "ev_child*": 1, + "watcher": 4, + "revents": 2, + "rstatus": 1, + "exit_status": 3, + "term_signal": 3, + "uv_process_t": 1, + "*process": 1, + "assert": 41, + "process": 19, + "child_watcher": 5, + "EV_CHILD": 1, + "ev_child_stop": 2, + "EV_A_": 1, + "WIFEXITED": 1, + "WEXITSTATUS": 2, + "WIFSIGNALED": 2, + "WTERMSIG": 2, + "exit_cb": 3, + "uv__make_socketpair": 2, + "fds": 20, + "flags": 89, + "SOCK_NONBLOCK": 2, + "fl": 8, + "SOCK_CLOEXEC": 1, + "UV__F_NONBLOCK": 5, + "socketpair": 2, + "AF_UNIX": 2, + "SOCK_STREAM": 2, + "EINVAL": 6, + "uv__cloexec": 4, + "uv__nonblock": 5, + "uv__make_pipe": 2, + "__linux__": 3, + "UV__O_CLOEXEC": 1, + "UV__O_NONBLOCK": 1, + "uv__pipe2": 1, + "ENOSYS": 1, + "pipe": 1, + "uv__process_init_stdio": 2, + "uv_stdio_container_t*": 4, + "container": 17, + "writable": 8, + "fd": 34, + "UV_IGNORE": 2, + "UV_CREATE_PIPE": 4, + "UV_INHERIT_FD": 3, + "UV_INHERIT_STREAM": 2, + "data.stream": 7, + "UV_NAMED_PIPE": 2, + "data.fd": 1, + "uv__process_stdio_flags": 2, + "uv_pipe_t*": 1, + "ipc": 1, + "UV_STREAM_READABLE": 2, + "UV_STREAM_WRITABLE": 2, + "uv__process_open_stream": 2, + "child_fd": 3, + "close": 13, + "uv__stream_open": 1, + "uv_stream_t*": 2, + "uv__process_close_stream": 2, + "uv__stream_close": 1, + "uv__process_child_init": 2, + "uv_process_options_t": 2, + "options": 62, + "stdio_count": 7, + "int*": 22, + "pipes": 23, + "options.flags": 4, + "UV_PROCESS_DETACHED": 2, + "setsid": 2, + "close_fd": 2, + "use_fd": 7, + "open": 4, + "O_RDONLY": 1, + "O_RDWR": 2, + "perror": 5, + "_exit": 6, + "dup2": 4, + "options.cwd": 2, + "UV_PROCESS_SETGID": 2, + "setgid": 1, + "options.gid": 1, + "UV_PROCESS_SETUID": 2, + "setuid": 1, + "options.uid": 1, + "environ": 4, + "options.env": 1, + "execvp": 1, + "options.file": 2, + "options.args": 1, + "#ifndef": 89, + "SPAWN_WAIT_EXEC": 5, + "uv_spawn": 1, + "uv_loop_t*": 1, + "loop": 9, + "uv_process_t*": 3, + "save_our_env": 3, + "options.stdio_count": 4, + "signal_pipe": 7, + "pollfd": 1, + "pfd": 2, + "pid_t": 2, + "pid": 13, + "ENOMEM": 4, + "goto": 159, + "UV_PROCESS_WINDOWS_VERBATIM_ARGUMENTS": 1, + "uv__handle_init": 1, + "uv_handle_t*": 1, + "UV_PROCESS": 1, + "counters.process_init": 1, + "uv__handle_start": 1, + "options.exit_cb": 1, + "options.stdio": 3, + "fork": 2, + "pfd.fd": 1, + "pfd.events": 1, + "POLLIN": 1, + "POLLHUP": 1, + "pfd.revents": 1, + "poll": 1, + "EINTR": 1, + "ev_child_init": 1, + "ev_child_start": 1, + "ev": 2, + "child_watcher.data": 1, + "j": 206, + "uv__set_sys_error": 2, + "uv_process_kill": 1, + "signum": 4, + "r": 58, + "kill": 4, + "uv_err_t": 1, + "uv_kill": 1, + "uv__new_sys_error": 1, + "uv_ok_": 1, + "uv__process_close": 1, + "handle": 10, + "uv__handle_stop": 1, + "*blob_type": 2, + "blob": 6, + "*lookup_blob": 2, + "OBJ_BLOB": 3, + "alloc_blob_node": 1, + "parse_blob_buffer": 2, + "": 3, + "_WIN32": 3, + "strncasecmp": 2, + "_strnicmp": 1, + "REF_TABLE_SIZE": 1, + "BUFFER_BLOCK": 5, + "BUFFER_SPAN": 9, + "MKD_LI_END": 1, + "gperf_case_strncmp": 1, + "s1": 6, + "s2": 6, + "GPERF_DOWNCASE": 1, + "GPERF_CASE_STRNCMP": 1, + "link_ref": 2, + "id": 13, + "*link": 1, + "*title": 1, + "sd_markdown": 6, + "typedef": 191, + "size_t": 52, + "tag": 1, + "tag_len": 3, + "w": 6, + "is_empty": 4, + "htmlblock_end": 3, + "*curtag": 2, + "*rndr": 4, + "uint8_t": 6, + "start_of_line": 2, + "tag_size": 3, + "curtag": 8, + "end_tag": 4, + "block_lines": 3, + "htmlblock_end_tag": 1, + "rndr": 25, + "parse_htmlblock": 1, + "*ob": 3, + "do_render": 4, + "tag_end": 7, + "work": 4, + "find_block_tag": 1, + "work.size": 5, + "cb.blockhtml": 6, + "ob": 14, + "opaque": 8, + "parse_table_row": 1, + "columns": 3, + "*col_data": 1, + "header_flag": 3, + "col": 9, + "*row_work": 1, + "cb.table_cell": 3, + "cb.table_row": 2, + "row_work": 4, + "rndr_newbuf": 2, + "cell_start": 5, + "cell_end": 6, + "*cell_work": 1, + "cell_work": 3, + "_isspace": 3, + "parse_inline": 1, + "col_data": 2, + "rndr_popbuf": 2, + "empty_cell": 2, + "parse_table_header": 1, + "*columns": 2, + "**column_data": 1, + "header_end": 7, + "under_end": 1, + "*column_data": 1, + "calloc": 1, + "beg": 10, + "doc_size": 6, + "document": 9, + "UTF8_BOM": 1, + "is_ref": 1, + "md": 18, + "refs": 2, + "expand_tabs": 1, + "text": 22, + "bufputc": 2, + "bufgrow": 1, + "MARKDOWN_GROW": 1, + "cb.doc_header": 2, + "parse_block": 1, + "cb.doc_footer": 2, + "bufrelease": 3, + "free_link_refs": 1, + "work_bufs": 8, + ".size": 2, + "sd_markdown_free": 1, + "*md": 1, + ".asize": 2, + ".item": 2, + "stack_free": 2, + "sd_version": 1, + "*ver_major": 2, + "*ver_minor": 2, + "*ver_revision": 2, + "SUNDOWN_VER_MAJOR": 1, + "SUNDOWN_VER_MINOR": 1, + "SUNDOWN_VER_REVISION": 1, + "__wglew_h__": 2, + "__WGLEW_H__": 1, + "__wglext_h_": 2, + "#error": 4, + "wglext.h": 1, + "included": 2, + "before": 4, + "wglew.h": 1, + "WINAPI": 119, + "": 1, + "GLEW_STATIC": 1, + "__cplusplus": 20, + "WGL_3DFX_multisample": 2, + "WGL_SAMPLE_BUFFERS_3DFX": 1, + "WGL_SAMPLES_3DFX": 1, + "WGLEW_3DFX_multisample": 1, + "WGLEW_GET_VAR": 49, + "__WGLEW_3DFX_multisample": 2, + "WGL_3DL_stereo_control": 2, + "WGL_STEREO_EMITTER_ENABLE_3DL": 1, + "WGL_STEREO_EMITTER_DISABLE_3DL": 1, + "WGL_STEREO_POLARITY_NORMAL_3DL": 1, + "WGL_STEREO_POLARITY_INVERT_3DL": 1, + "BOOL": 84, + "PFNWGLSETSTEREOEMITTERSTATE3DLPROC": 2, + "HDC": 65, + "hDC": 33, + "UINT": 30, + "uState": 1, + "wglSetStereoEmitterState3DL": 1, + "WGLEW_GET_FUN": 120, + "__wglewSetStereoEmitterState3DL": 2, + "WGLEW_3DL_stereo_control": 1, + "__WGLEW_3DL_stereo_control": 2, + "WGL_AMD_gpu_association": 2, + "WGL_GPU_VENDOR_AMD": 1, + "F00": 1, + "WGL_GPU_RENDERER_STRING_AMD": 1, + "F01": 1, + "WGL_GPU_OPENGL_VERSION_STRING_AMD": 1, + "F02": 1, + "WGL_GPU_FASTEST_TARGET_GPUS_AMD": 1, + "A2": 2, + "WGL_GPU_RAM_AMD": 1, + "A3": 2, + "WGL_GPU_CLOCK_AMD": 1, + "A4": 2, + "WGL_GPU_NUM_PIPES_AMD": 1, + "A5": 3, + "WGL_GPU_NUM_SIMD_AMD": 1, + "A6": 2, + "WGL_GPU_NUM_RB_AMD": 1, + "A7": 2, + "WGL_GPU_NUM_SPI_AMD": 1, + "A8": 2, + "VOID": 6, + "PFNWGLBLITCONTEXTFRAMEBUFFERAMDPROC": 2, + "HGLRC": 14, + "dstCtx": 1, + "GLint": 18, + "srcX0": 1, + "srcY0": 1, + "srcX1": 1, + "srcY1": 1, + "dstX0": 1, + "dstY0": 1, + "dstX1": 1, + "dstY1": 1, + "GLbitfield": 1, + "mask": 1, + "GLenum": 8, + "filter": 1, + "PFNWGLCREATEASSOCIATEDCONTEXTAMDPROC": 2, + "PFNWGLCREATEASSOCIATEDCONTEXTATTRIBSAMDPROC": 2, + "hShareContext": 2, + "attribList": 2, + "PFNWGLDELETEASSOCIATEDCONTEXTAMDPROC": 2, + "hglrc": 5, + "PFNWGLGETCONTEXTGPUIDAMDPROC": 2, + "PFNWGLGETCURRENTASSOCIATEDCONTEXTAMDPROC": 2, + "PFNWGLGETGPUIDSAMDPROC": 2, + "maxCount": 1, + "UINT*": 6, + "ids": 1, + "INT": 3, + "PFNWGLGETGPUINFOAMDPROC": 2, + "property": 1, + "dataType": 1, + "void*": 135, + "PFNWGLMAKEASSOCIATEDCONTEXTCURRENTAMDPROC": 2, + "wglBlitContextFramebufferAMD": 1, + "__wglewBlitContextFramebufferAMD": 2, + "wglCreateAssociatedContextAMD": 1, + "__wglewCreateAssociatedContextAMD": 2, + "wglCreateAssociatedContextAttribsAMD": 1, + "__wglewCreateAssociatedContextAttribsAMD": 2, + "wglDeleteAssociatedContextAMD": 1, + "__wglewDeleteAssociatedContextAMD": 2, + "wglGetContextGPUIDAMD": 1, + "__wglewGetContextGPUIDAMD": 2, + "wglGetCurrentAssociatedContextAMD": 1, + "__wglewGetCurrentAssociatedContextAMD": 2, + "wglGetGPUIDsAMD": 1, + "__wglewGetGPUIDsAMD": 2, + "wglGetGPUInfoAMD": 1, + "__wglewGetGPUInfoAMD": 2, + "wglMakeAssociatedContextCurrentAMD": 1, + "__wglewMakeAssociatedContextCurrentAMD": 2, + "WGLEW_AMD_gpu_association": 1, + "__WGLEW_AMD_gpu_association": 2, + "WGL_ARB_buffer_region": 2, + "WGL_FRONT_COLOR_BUFFER_BIT_ARB": 1, + "WGL_BACK_COLOR_BUFFER_BIT_ARB": 1, + "WGL_DEPTH_BUFFER_BIT_ARB": 1, + "WGL_STENCIL_BUFFER_BIT_ARB": 1, + "HANDLE": 14, + "PFNWGLCREATEBUFFERREGIONARBPROC": 2, + "iLayerPlane": 5, + "uType": 1, + "PFNWGLDELETEBUFFERREGIONARBPROC": 2, + "hRegion": 3, + "PFNWGLRESTOREBUFFERREGIONARBPROC": 2, + "x": 57, + "y": 14, + "width": 3, + "height": 3, + "xSrc": 1, + "ySrc": 1, + "PFNWGLSAVEBUFFERREGIONARBPROC": 2, + "wglCreateBufferRegionARB": 1, + "__wglewCreateBufferRegionARB": 2, + "wglDeleteBufferRegionARB": 1, + "__wglewDeleteBufferRegionARB": 2, + "wglRestoreBufferRegionARB": 1, + "__wglewRestoreBufferRegionARB": 2, + "wglSaveBufferRegionARB": 1, + "__wglewSaveBufferRegionARB": 2, + "WGLEW_ARB_buffer_region": 1, + "__WGLEW_ARB_buffer_region": 2, + "WGL_ARB_create_context": 2, + "WGL_CONTEXT_DEBUG_BIT_ARB": 1, + "WGL_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB": 1, + "WGL_CONTEXT_MAJOR_VERSION_ARB": 1, + "WGL_CONTEXT_MINOR_VERSION_ARB": 1, + "WGL_CONTEXT_LAYER_PLANE_ARB": 1, + "WGL_CONTEXT_FLAGS_ARB": 1, + "ERROR_INVALID_VERSION_ARB": 1, + "ERROR_INVALID_PROFILE_ARB": 1, + "PFNWGLCREATECONTEXTATTRIBSARBPROC": 2, + "wglCreateContextAttribsARB": 1, + "__wglewCreateContextAttribsARB": 2, + "WGLEW_ARB_create_context": 1, + "__WGLEW_ARB_create_context": 2, + "WGL_ARB_create_context_profile": 2, + "WGL_CONTEXT_CORE_PROFILE_BIT_ARB": 1, + "WGL_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB": 1, + "WGL_CONTEXT_PROFILE_MASK_ARB": 1, + "WGLEW_ARB_create_context_profile": 1, + "__WGLEW_ARB_create_context_profile": 2, + "WGL_ARB_create_context_robustness": 2, + "WGL_CONTEXT_ROBUST_ACCESS_BIT_ARB": 1, + "WGL_LOSE_CONTEXT_ON_RESET_ARB": 1, + "WGL_CONTEXT_RESET_NOTIFICATION_STRATEGY_ARB": 1, + "WGL_NO_RESET_NOTIFICATION_ARB": 1, + "WGLEW_ARB_create_context_robustness": 1, + "__WGLEW_ARB_create_context_robustness": 2, + "WGL_ARB_extensions_string": 2, + "PFNWGLGETEXTENSIONSSTRINGARBPROC": 2, + "hdc": 16, + "wglGetExtensionsStringARB": 1, + "__wglewGetExtensionsStringARB": 2, + "WGLEW_ARB_extensions_string": 1, + "__WGLEW_ARB_extensions_string": 2, + "WGL_ARB_framebuffer_sRGB": 2, + "WGL_FRAMEBUFFER_SRGB_CAPABLE_ARB": 1, + "A9": 2, + "WGLEW_ARB_framebuffer_sRGB": 1, + "__WGLEW_ARB_framebuffer_sRGB": 2, + "WGL_ARB_make_current_read": 2, + "ERROR_INVALID_PIXEL_TYPE_ARB": 1, + "ERROR_INCOMPATIBLE_DEVICE_CONTEXTS_ARB": 1, + "PFNWGLGETCURRENTREADDCARBPROC": 2, + "PFNWGLMAKECONTEXTCURRENTARBPROC": 2, + "hDrawDC": 2, + "hReadDC": 2, + "wglGetCurrentReadDCARB": 1, + "__wglewGetCurrentReadDCARB": 2, + "wglMakeContextCurrentARB": 1, + "__wglewMakeContextCurrentARB": 2, + "WGLEW_ARB_make_current_read": 1, + "__WGLEW_ARB_make_current_read": 2, + "WGL_ARB_multisample": 2, + "WGL_SAMPLE_BUFFERS_ARB": 1, + "WGL_SAMPLES_ARB": 1, + "WGLEW_ARB_multisample": 1, + "__WGLEW_ARB_multisample": 2, + "WGL_ARB_pbuffer": 2, + "WGL_DRAW_TO_PBUFFER_ARB": 1, + "D": 8, + "WGL_MAX_PBUFFER_PIXELS_ARB": 1, + "E": 11, + "WGL_MAX_PBUFFER_WIDTH_ARB": 1, + "WGL_MAX_PBUFFER_HEIGHT_ARB": 1, + "WGL_PBUFFER_LARGEST_ARB": 1, + "WGL_PBUFFER_WIDTH_ARB": 1, + "WGL_PBUFFER_HEIGHT_ARB": 1, + "WGL_PBUFFER_LOST_ARB": 1, + "DECLARE_HANDLE": 6, + "HPBUFFERARB": 12, + "PFNWGLCREATEPBUFFERARBPROC": 2, + "iPixelFormat": 6, + "iWidth": 2, + "iHeight": 2, + "piAttribList": 4, + "PFNWGLDESTROYPBUFFERARBPROC": 2, + "hPbuffer": 14, + "PFNWGLGETPBUFFERDCARBPROC": 2, + "PFNWGLQUERYPBUFFERARBPROC": 2, + "iAttribute": 8, + "piValue": 8, + "PFNWGLRELEASEPBUFFERDCARBPROC": 2, + "wglCreatePbufferARB": 1, + "__wglewCreatePbufferARB": 2, + "wglDestroyPbufferARB": 1, + "__wglewDestroyPbufferARB": 2, + "wglGetPbufferDCARB": 1, + "__wglewGetPbufferDCARB": 2, + "wglQueryPbufferARB": 1, + "__wglewQueryPbufferARB": 2, + "wglReleasePbufferDCARB": 1, + "__wglewReleasePbufferDCARB": 2, + "WGLEW_ARB_pbuffer": 1, + "__WGLEW_ARB_pbuffer": 2, + "WGL_ARB_pixel_format": 2, + "WGL_NUMBER_PIXEL_FORMATS_ARB": 1, + "WGL_DRAW_TO_WINDOW_ARB": 1, + "WGL_DRAW_TO_BITMAP_ARB": 1, + "WGL_ACCELERATION_ARB": 1, + "WGL_NEED_PALETTE_ARB": 1, + "WGL_NEED_SYSTEM_PALETTE_ARB": 1, + "WGL_SWAP_LAYER_BUFFERS_ARB": 1, + "WGL_SWAP_METHOD_ARB": 1, + "WGL_NUMBER_OVERLAYS_ARB": 1, + "WGL_NUMBER_UNDERLAYS_ARB": 1, + "WGL_TRANSPARENT_ARB": 1, + "A": 11, + "WGL_SHARE_DEPTH_ARB": 1, + "C": 14, + "WGL_SHARE_STENCIL_ARB": 1, + "WGL_SHARE_ACCUM_ARB": 1, + "WGL_SUPPORT_GDI_ARB": 1, + "WGL_SUPPORT_OPENGL_ARB": 1, + "WGL_DOUBLE_BUFFER_ARB": 1, + "WGL_STEREO_ARB": 1, + "WGL_PIXEL_TYPE_ARB": 1, + "WGL_COLOR_BITS_ARB": 1, + "WGL_RED_BITS_ARB": 1, + "WGL_RED_SHIFT_ARB": 1, + "WGL_GREEN_BITS_ARB": 1, + "WGL_GREEN_SHIFT_ARB": 1, + "WGL_BLUE_BITS_ARB": 1, + "WGL_BLUE_SHIFT_ARB": 1, + "WGL_ALPHA_BITS_ARB": 1, + "B": 9, + "WGL_ALPHA_SHIFT_ARB": 1, + "WGL_ACCUM_BITS_ARB": 1, + "WGL_ACCUM_RED_BITS_ARB": 1, + "WGL_ACCUM_GREEN_BITS_ARB": 1, + "WGL_ACCUM_BLUE_BITS_ARB": 1, + "WGL_ACCUM_ALPHA_BITS_ARB": 1, + "WGL_DEPTH_BITS_ARB": 1, + "WGL_STENCIL_BITS_ARB": 1, + "WGL_AUX_BUFFERS_ARB": 1, + "WGL_NO_ACCELERATION_ARB": 1, + "WGL_GENERIC_ACCELERATION_ARB": 1, + "WGL_FULL_ACCELERATION_ARB": 1, + "WGL_SWAP_EXCHANGE_ARB": 1, + "WGL_SWAP_COPY_ARB": 1, + "WGL_SWAP_UNDEFINED_ARB": 1, + "WGL_TYPE_RGBA_ARB": 1, + "WGL_TYPE_COLORINDEX_ARB": 1, + "WGL_TRANSPARENT_RED_VALUE_ARB": 1, + "WGL_TRANSPARENT_GREEN_VALUE_ARB": 1, + "WGL_TRANSPARENT_BLUE_VALUE_ARB": 1, + "WGL_TRANSPARENT_ALPHA_VALUE_ARB": 1, + "WGL_TRANSPARENT_INDEX_VALUE_ARB": 1, + "PFNWGLCHOOSEPIXELFORMATARBPROC": 2, + "piAttribIList": 2, + "FLOAT": 4, + "*pfAttribFList": 2, + "nMaxFormats": 2, + "*piFormats": 2, + "*nNumFormats": 2, + "PFNWGLGETPIXELFORMATATTRIBFVARBPROC": 2, + "nAttributes": 4, + "piAttributes": 4, + "*pfValues": 2, + "PFNWGLGETPIXELFORMATATTRIBIVARBPROC": 2, + "*piValues": 2, + "wglChoosePixelFormatARB": 1, + "__wglewChoosePixelFormatARB": 2, + "wglGetPixelFormatAttribfvARB": 1, + "__wglewGetPixelFormatAttribfvARB": 2, + "wglGetPixelFormatAttribivARB": 1, + "__wglewGetPixelFormatAttribivARB": 2, + "WGLEW_ARB_pixel_format": 1, + "__WGLEW_ARB_pixel_format": 2, + "WGL_ARB_pixel_format_float": 2, + "WGL_TYPE_RGBA_FLOAT_ARB": 1, + "A0": 3, + "WGLEW_ARB_pixel_format_float": 1, + "__WGLEW_ARB_pixel_format_float": 2, + "WGL_ARB_render_texture": 2, + "WGL_BIND_TO_TEXTURE_RGB_ARB": 1, + "WGL_BIND_TO_TEXTURE_RGBA_ARB": 1, + "WGL_TEXTURE_FORMAT_ARB": 1, + "WGL_TEXTURE_TARGET_ARB": 1, + "WGL_MIPMAP_TEXTURE_ARB": 1, + "WGL_TEXTURE_RGB_ARB": 1, + "WGL_TEXTURE_RGBA_ARB": 1, + "WGL_NO_TEXTURE_ARB": 2, + "WGL_TEXTURE_CUBE_MAP_ARB": 1, + "WGL_TEXTURE_1D_ARB": 1, + "WGL_TEXTURE_2D_ARB": 1, + "WGL_MIPMAP_LEVEL_ARB": 1, + "WGL_CUBE_MAP_FACE_ARB": 1, + "WGL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB": 1, + "WGL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB": 1, + "WGL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB": 1, + "WGL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB": 1, + "WGL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB": 1, + "WGL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB": 1, + "WGL_FRONT_LEFT_ARB": 1, + "WGL_FRONT_RIGHT_ARB": 1, + "WGL_BACK_LEFT_ARB": 1, + "WGL_BACK_RIGHT_ARB": 1, + "WGL_AUX0_ARB": 1, + "WGL_AUX1_ARB": 1, + "WGL_AUX2_ARB": 1, + "WGL_AUX3_ARB": 1, + "WGL_AUX4_ARB": 1, + "WGL_AUX5_ARB": 1, + "WGL_AUX6_ARB": 1, + "WGL_AUX7_ARB": 1, + "WGL_AUX8_ARB": 1, + "WGL_AUX9_ARB": 1, + "PFNWGLBINDTEXIMAGEARBPROC": 2, + "iBuffer": 2, + "PFNWGLRELEASETEXIMAGEARBPROC": 2, + "PFNWGLSETPBUFFERATTRIBARBPROC": 2, + "wglBindTexImageARB": 1, + "__wglewBindTexImageARB": 2, + "wglReleaseTexImageARB": 1, + "__wglewReleaseTexImageARB": 2, + "wglSetPbufferAttribARB": 1, + "__wglewSetPbufferAttribARB": 2, + "WGLEW_ARB_render_texture": 1, + "__WGLEW_ARB_render_texture": 2, + "WGL_ATI_pixel_format_float": 2, + "WGL_TYPE_RGBA_FLOAT_ATI": 1, + "GL_RGBA_FLOAT_MODE_ATI": 1, + "GL_COLOR_CLEAR_UNCLAMPED_VALUE_ATI": 1, + "WGLEW_ATI_pixel_format_float": 1, + "__WGLEW_ATI_pixel_format_float": 2, + "WGL_ATI_render_texture_rectangle": 2, + "WGL_TEXTURE_RECTANGLE_ATI": 1, + "WGLEW_ATI_render_texture_rectangle": 1, + "__WGLEW_ATI_render_texture_rectangle": 2, + "WGL_EXT_create_context_es2_profile": 2, + "WGL_CONTEXT_ES2_PROFILE_BIT_EXT": 1, + "WGLEW_EXT_create_context_es2_profile": 1, + "__WGLEW_EXT_create_context_es2_profile": 2, + "WGL_EXT_depth_float": 2, + "WGL_DEPTH_FLOAT_EXT": 1, + "WGLEW_EXT_depth_float": 1, + "__WGLEW_EXT_depth_float": 2, + "WGL_EXT_display_color_table": 2, + "GLboolean": 53, + "PFNWGLBINDDISPLAYCOLORTABLEEXTPROC": 2, + "GLushort": 3, + "PFNWGLCREATEDISPLAYCOLORTABLEEXTPROC": 2, + "PFNWGLDESTROYDISPLAYCOLORTABLEEXTPROC": 2, + "PFNWGLLOADDISPLAYCOLORTABLEEXTPROC": 2, + "GLushort*": 1, + "table": 1, + "GLuint": 9, + "length": 58, + "wglBindDisplayColorTableEXT": 1, + "__wglewBindDisplayColorTableEXT": 2, + "wglCreateDisplayColorTableEXT": 1, + "__wglewCreateDisplayColorTableEXT": 2, + "wglDestroyDisplayColorTableEXT": 1, + "__wglewDestroyDisplayColorTableEXT": 2, + "wglLoadDisplayColorTableEXT": 1, + "__wglewLoadDisplayColorTableEXT": 2, + "WGLEW_EXT_display_color_table": 1, + "__WGLEW_EXT_display_color_table": 2, + "WGL_EXT_extensions_string": 2, + "PFNWGLGETEXTENSIONSSTRINGEXTPROC": 2, + "wglGetExtensionsStringEXT": 1, + "__wglewGetExtensionsStringEXT": 2, + "WGLEW_EXT_extensions_string": 1, + "__WGLEW_EXT_extensions_string": 2, + "WGL_EXT_framebuffer_sRGB": 2, + "WGL_FRAMEBUFFER_SRGB_CAPABLE_EXT": 1, + "WGLEW_EXT_framebuffer_sRGB": 1, + "__WGLEW_EXT_framebuffer_sRGB": 2, + "WGL_EXT_make_current_read": 2, + "ERROR_INVALID_PIXEL_TYPE_EXT": 1, + "PFNWGLGETCURRENTREADDCEXTPROC": 2, + "PFNWGLMAKECONTEXTCURRENTEXTPROC": 2, + "wglGetCurrentReadDCEXT": 1, + "__wglewGetCurrentReadDCEXT": 2, + "wglMakeContextCurrentEXT": 1, + "__wglewMakeContextCurrentEXT": 2, + "WGLEW_EXT_make_current_read": 1, + "__WGLEW_EXT_make_current_read": 2, + "WGL_EXT_multisample": 2, + "WGL_SAMPLE_BUFFERS_EXT": 1, + "WGL_SAMPLES_EXT": 1, + "WGLEW_EXT_multisample": 1, + "__WGLEW_EXT_multisample": 2, + "WGL_EXT_pbuffer": 2, + "WGL_DRAW_TO_PBUFFER_EXT": 1, + "WGL_MAX_PBUFFER_PIXELS_EXT": 1, + "WGL_MAX_PBUFFER_WIDTH_EXT": 1, + "WGL_MAX_PBUFFER_HEIGHT_EXT": 1, + "WGL_OPTIMAL_PBUFFER_WIDTH_EXT": 1, + "WGL_OPTIMAL_PBUFFER_HEIGHT_EXT": 1, + "WGL_PBUFFER_LARGEST_EXT": 1, + "WGL_PBUFFER_WIDTH_EXT": 1, + "WGL_PBUFFER_HEIGHT_EXT": 1, + "HPBUFFEREXT": 6, + "PFNWGLCREATEPBUFFEREXTPROC": 2, + "PFNWGLDESTROYPBUFFEREXTPROC": 2, + "PFNWGLGETPBUFFERDCEXTPROC": 2, + "PFNWGLQUERYPBUFFEREXTPROC": 2, + "PFNWGLRELEASEPBUFFERDCEXTPROC": 2, + "wglCreatePbufferEXT": 1, + "__wglewCreatePbufferEXT": 2, + "wglDestroyPbufferEXT": 1, + "__wglewDestroyPbufferEXT": 2, + "wglGetPbufferDCEXT": 1, + "__wglewGetPbufferDCEXT": 2, + "wglQueryPbufferEXT": 1, + "__wglewQueryPbufferEXT": 2, + "wglReleasePbufferDCEXT": 1, + "__wglewReleasePbufferDCEXT": 2, + "WGLEW_EXT_pbuffer": 1, + "__WGLEW_EXT_pbuffer": 2, + "WGL_EXT_pixel_format": 2, + "WGL_NUMBER_PIXEL_FORMATS_EXT": 1, + "WGL_DRAW_TO_WINDOW_EXT": 1, + "WGL_DRAW_TO_BITMAP_EXT": 1, + "WGL_ACCELERATION_EXT": 1, + "WGL_NEED_PALETTE_EXT": 1, + "WGL_NEED_SYSTEM_PALETTE_EXT": 1, + "WGL_SWAP_LAYER_BUFFERS_EXT": 1, + "WGL_SWAP_METHOD_EXT": 1, + "WGL_NUMBER_OVERLAYS_EXT": 1, + "WGL_NUMBER_UNDERLAYS_EXT": 1, + "WGL_TRANSPARENT_EXT": 1, + "WGL_TRANSPARENT_VALUE_EXT": 1, + "WGL_SHARE_DEPTH_EXT": 1, + "WGL_SHARE_STENCIL_EXT": 1, + "WGL_SHARE_ACCUM_EXT": 1, + "WGL_SUPPORT_GDI_EXT": 1, + "WGL_SUPPORT_OPENGL_EXT": 1, + "WGL_DOUBLE_BUFFER_EXT": 1, + "WGL_STEREO_EXT": 1, + "WGL_PIXEL_TYPE_EXT": 1, + "WGL_COLOR_BITS_EXT": 1, + "WGL_RED_BITS_EXT": 1, + "WGL_RED_SHIFT_EXT": 1, + "WGL_GREEN_BITS_EXT": 1, + "WGL_GREEN_SHIFT_EXT": 1, + "WGL_BLUE_BITS_EXT": 1, + "WGL_BLUE_SHIFT_EXT": 1, + "WGL_ALPHA_BITS_EXT": 1, + "WGL_ALPHA_SHIFT_EXT": 1, + "WGL_ACCUM_BITS_EXT": 1, + "WGL_ACCUM_RED_BITS_EXT": 1, + "WGL_ACCUM_GREEN_BITS_EXT": 1, + "WGL_ACCUM_BLUE_BITS_EXT": 1, + "WGL_ACCUM_ALPHA_BITS_EXT": 1, + "WGL_DEPTH_BITS_EXT": 1, + "WGL_STENCIL_BITS_EXT": 1, + "WGL_AUX_BUFFERS_EXT": 1, + "WGL_NO_ACCELERATION_EXT": 1, + "WGL_GENERIC_ACCELERATION_EXT": 1, + "WGL_FULL_ACCELERATION_EXT": 1, + "WGL_SWAP_EXCHANGE_EXT": 1, + "WGL_SWAP_COPY_EXT": 1, + "WGL_SWAP_UNDEFINED_EXT": 1, + "WGL_TYPE_RGBA_EXT": 1, + "WGL_TYPE_COLORINDEX_EXT": 1, + "PFNWGLCHOOSEPIXELFORMATEXTPROC": 2, + "PFNWGLGETPIXELFORMATATTRIBFVEXTPROC": 2, + "PFNWGLGETPIXELFORMATATTRIBIVEXTPROC": 2, + "wglChoosePixelFormatEXT": 1, + "__wglewChoosePixelFormatEXT": 2, + "wglGetPixelFormatAttribfvEXT": 1, + "__wglewGetPixelFormatAttribfvEXT": 2, + "wglGetPixelFormatAttribivEXT": 1, + "__wglewGetPixelFormatAttribivEXT": 2, + "WGLEW_EXT_pixel_format": 1, + "__WGLEW_EXT_pixel_format": 2, + "WGL_EXT_pixel_format_packed_float": 2, + "WGL_TYPE_RGBA_UNSIGNED_FLOAT_EXT": 1, + "WGLEW_EXT_pixel_format_packed_float": 1, + "__WGLEW_EXT_pixel_format_packed_float": 2, + "WGL_EXT_swap_control": 2, + "PFNWGLGETSWAPINTERVALEXTPROC": 2, + "PFNWGLSWAPINTERVALEXTPROC": 2, + "interval": 1, + "wglGetSwapIntervalEXT": 1, + "__wglewGetSwapIntervalEXT": 2, + "wglSwapIntervalEXT": 1, + "__wglewSwapIntervalEXT": 2, + "WGLEW_EXT_swap_control": 1, + "__WGLEW_EXT_swap_control": 2, + "WGL_I3D_digital_video_control": 2, + "WGL_DIGITAL_VIDEO_CURSOR_ALPHA_FRAMEBUFFER_I3D": 1, + "WGL_DIGITAL_VIDEO_CURSOR_ALPHA_VALUE_I3D": 1, + "WGL_DIGITAL_VIDEO_CURSOR_INCLUDED_I3D": 1, + "WGL_DIGITAL_VIDEO_GAMMA_CORRECTED_I3D": 1, + "PFNWGLGETDIGITALVIDEOPARAMETERSI3DPROC": 2, + "PFNWGLSETDIGITALVIDEOPARAMETERSI3DPROC": 2, + "wglGetDigitalVideoParametersI3D": 1, + "__wglewGetDigitalVideoParametersI3D": 2, + "wglSetDigitalVideoParametersI3D": 1, + "__wglewSetDigitalVideoParametersI3D": 2, + "WGLEW_I3D_digital_video_control": 1, + "__WGLEW_I3D_digital_video_control": 2, + "WGL_I3D_gamma": 2, + "WGL_GAMMA_TABLE_SIZE_I3D": 1, + "WGL_GAMMA_EXCLUDE_DESKTOP_I3D": 1, + "PFNWGLGETGAMMATABLEI3DPROC": 2, + "iEntries": 2, + "USHORT*": 2, + "puRed": 2, + "USHORT": 4, + "*puGreen": 2, + "*puBlue": 2, + "PFNWGLGETGAMMATABLEPARAMETERSI3DPROC": 2, + "PFNWGLSETGAMMATABLEI3DPROC": 2, + "PFNWGLSETGAMMATABLEPARAMETERSI3DPROC": 2, + "wglGetGammaTableI3D": 1, + "__wglewGetGammaTableI3D": 2, + "wglGetGammaTableParametersI3D": 1, + "__wglewGetGammaTableParametersI3D": 2, + "wglSetGammaTableI3D": 1, + "__wglewSetGammaTableI3D": 2, + "wglSetGammaTableParametersI3D": 1, + "__wglewSetGammaTableParametersI3D": 2, + "WGLEW_I3D_gamma": 1, + "__WGLEW_I3D_gamma": 2, + "WGL_I3D_genlock": 2, + "WGL_GENLOCK_SOURCE_MULTIVIEW_I3D": 1, + "WGL_GENLOCK_SOURCE_EXTERNAL_SYNC_I3D": 1, + "WGL_GENLOCK_SOURCE_EXTERNAL_FIELD_I3D": 1, + "WGL_GENLOCK_SOURCE_EXTERNAL_TTL_I3D": 1, + "WGL_GENLOCK_SOURCE_DIGITAL_SYNC_I3D": 1, + "WGL_GENLOCK_SOURCE_DIGITAL_FIELD_I3D": 1, + "WGL_GENLOCK_SOURCE_EDGE_FALLING_I3D": 1, + "WGL_GENLOCK_SOURCE_EDGE_RISING_I3D": 1, + "WGL_GENLOCK_SOURCE_EDGE_BOTH_I3D": 1, + "PFNWGLDISABLEGENLOCKI3DPROC": 2, + "PFNWGLENABLEGENLOCKI3DPROC": 2, + "PFNWGLGENLOCKSAMPLERATEI3DPROC": 2, + "uRate": 2, + "PFNWGLGENLOCKSOURCEDELAYI3DPROC": 2, + "uDelay": 2, + "PFNWGLGENLOCKSOURCEEDGEI3DPROC": 2, + "uEdge": 2, + "PFNWGLGENLOCKSOURCEI3DPROC": 2, + "uSource": 2, + "PFNWGLGETGENLOCKSAMPLERATEI3DPROC": 2, + "PFNWGLGETGENLOCKSOURCEDELAYI3DPROC": 2, + "PFNWGLGETGENLOCKSOURCEEDGEI3DPROC": 2, + "PFNWGLGETGENLOCKSOURCEI3DPROC": 2, + "PFNWGLISENABLEDGENLOCKI3DPROC": 2, + "BOOL*": 3, + "pFlag": 3, + "PFNWGLQUERYGENLOCKMAXSOURCEDELAYI3DPROC": 2, + "uMaxLineDelay": 1, + "*uMaxPixelDelay": 1, + "wglDisableGenlockI3D": 1, + "__wglewDisableGenlockI3D": 2, + "wglEnableGenlockI3D": 1, + "__wglewEnableGenlockI3D": 2, + "wglGenlockSampleRateI3D": 1, + "__wglewGenlockSampleRateI3D": 2, + "wglGenlockSourceDelayI3D": 1, + "__wglewGenlockSourceDelayI3D": 2, + "wglGenlockSourceEdgeI3D": 1, + "__wglewGenlockSourceEdgeI3D": 2, + "wglGenlockSourceI3D": 1, + "__wglewGenlockSourceI3D": 2, + "wglGetGenlockSampleRateI3D": 1, + "__wglewGetGenlockSampleRateI3D": 2, + "wglGetGenlockSourceDelayI3D": 1, + "__wglewGetGenlockSourceDelayI3D": 2, + "wglGetGenlockSourceEdgeI3D": 1, + "__wglewGetGenlockSourceEdgeI3D": 2, + "wglGetGenlockSourceI3D": 1, + "__wglewGetGenlockSourceI3D": 2, + "wglIsEnabledGenlockI3D": 1, + "__wglewIsEnabledGenlockI3D": 2, + "wglQueryGenlockMaxSourceDelayI3D": 1, + "__wglewQueryGenlockMaxSourceDelayI3D": 2, + "WGLEW_I3D_genlock": 1, + "__WGLEW_I3D_genlock": 2, + "WGL_I3D_image_buffer": 2, + "WGL_IMAGE_BUFFER_MIN_ACCESS_I3D": 1, + "WGL_IMAGE_BUFFER_LOCK_I3D": 1, + "PFNWGLASSOCIATEIMAGEBUFFEREVENTSI3DPROC": 2, + "HANDLE*": 3, + "pEvent": 1, + "LPVOID": 3, + "*pAddress": 1, + "DWORD": 5, + "*pSize": 1, + "PFNWGLCREATEIMAGEBUFFERI3DPROC": 2, + "dwSize": 1, + "uFlags": 1, + "PFNWGLDESTROYIMAGEBUFFERI3DPROC": 2, + "pAddress": 2, + "PFNWGLRELEASEIMAGEBUFFEREVENTSI3DPROC": 2, + "LPVOID*": 1, + "wglAssociateImageBufferEventsI3D": 1, + "__wglewAssociateImageBufferEventsI3D": 2, + "wglCreateImageBufferI3D": 1, + "__wglewCreateImageBufferI3D": 2, + "wglDestroyImageBufferI3D": 1, + "__wglewDestroyImageBufferI3D": 2, + "wglReleaseImageBufferEventsI3D": 1, + "__wglewReleaseImageBufferEventsI3D": 2, + "WGLEW_I3D_image_buffer": 1, + "__WGLEW_I3D_image_buffer": 2, + "WGL_I3D_swap_frame_lock": 2, + "PFNWGLDISABLEFRAMELOCKI3DPROC": 2, + "PFNWGLENABLEFRAMELOCKI3DPROC": 2, + "PFNWGLISENABLEDFRAMELOCKI3DPROC": 2, + "PFNWGLQUERYFRAMELOCKMASTERI3DPROC": 2, + "wglDisableFrameLockI3D": 1, + "__wglewDisableFrameLockI3D": 2, + "wglEnableFrameLockI3D": 1, + "__wglewEnableFrameLockI3D": 2, + "wglIsEnabledFrameLockI3D": 1, + "__wglewIsEnabledFrameLockI3D": 2, + "wglQueryFrameLockMasterI3D": 1, + "__wglewQueryFrameLockMasterI3D": 2, + "WGLEW_I3D_swap_frame_lock": 1, + "__WGLEW_I3D_swap_frame_lock": 2, + "WGL_I3D_swap_frame_usage": 2, + "PFNWGLBEGINFRAMETRACKINGI3DPROC": 2, + "PFNWGLENDFRAMETRACKINGI3DPROC": 2, + "PFNWGLGETFRAMEUSAGEI3DPROC": 2, + "float*": 1, + "pUsage": 1, + "PFNWGLQUERYFRAMETRACKINGI3DPROC": 2, + "DWORD*": 1, + "pFrameCount": 1, + "*pMissedFrames": 1, + "float": 26, + "*pLastMissedUsage": 1, + "wglBeginFrameTrackingI3D": 1, + "__wglewBeginFrameTrackingI3D": 2, + "wglEndFrameTrackingI3D": 1, + "__wglewEndFrameTrackingI3D": 2, + "wglGetFrameUsageI3D": 1, + "__wglewGetFrameUsageI3D": 2, + "wglQueryFrameTrackingI3D": 1, + "__wglewQueryFrameTrackingI3D": 2, + "WGLEW_I3D_swap_frame_usage": 1, + "__WGLEW_I3D_swap_frame_usage": 2, + "WGL_NV_DX_interop": 2, + "WGL_ACCESS_READ_ONLY_NV": 1, + "WGL_ACCESS_READ_WRITE_NV": 1, + "WGL_ACCESS_WRITE_DISCARD_NV": 1, + "PFNWGLDXCLOSEDEVICENVPROC": 2, + "hDevice": 9, + "PFNWGLDXLOCKOBJECTSNVPROC": 2, + "hObjects": 2, + "PFNWGLDXOBJECTACCESSNVPROC": 2, + "hObject": 2, + "access": 2, + "PFNWGLDXOPENDEVICENVPROC": 2, + "dxDevice": 1, + "PFNWGLDXREGISTEROBJECTNVPROC": 2, + "dxObject": 2, + "PFNWGLDXSETRESOURCESHAREHANDLENVPROC": 2, + "shareHandle": 1, + "PFNWGLDXUNLOCKOBJECTSNVPROC": 2, + "PFNWGLDXUNREGISTEROBJECTNVPROC": 2, + "wglDXCloseDeviceNV": 1, + "__wglewDXCloseDeviceNV": 2, + "wglDXLockObjectsNV": 1, + "__wglewDXLockObjectsNV": 2, + "wglDXObjectAccessNV": 1, + "__wglewDXObjectAccessNV": 2, + "wglDXOpenDeviceNV": 1, + "__wglewDXOpenDeviceNV": 2, + "wglDXRegisterObjectNV": 1, + "__wglewDXRegisterObjectNV": 2, + "wglDXSetResourceShareHandleNV": 1, + "__wglewDXSetResourceShareHandleNV": 2, + "wglDXUnlockObjectsNV": 1, + "__wglewDXUnlockObjectsNV": 2, + "wglDXUnregisterObjectNV": 1, + "__wglewDXUnregisterObjectNV": 2, + "WGLEW_NV_DX_interop": 1, + "__WGLEW_NV_DX_interop": 2, + "WGL_NV_copy_image": 2, + "PFNWGLCOPYIMAGESUBDATANVPROC": 2, + "hSrcRC": 1, + "srcName": 1, + "srcTarget": 1, + "srcLevel": 1, + "srcX": 1, + "srcY": 1, + "srcZ": 1, + "hDstRC": 1, + "dstName": 1, + "dstTarget": 1, + "dstLevel": 1, + "dstX": 1, + "dstY": 1, + "dstZ": 1, + "GLsizei": 4, + "depth": 2, + "wglCopyImageSubDataNV": 1, + "__wglewCopyImageSubDataNV": 2, + "WGLEW_NV_copy_image": 1, + "__WGLEW_NV_copy_image": 2, + "WGL_NV_float_buffer": 2, + "WGL_FLOAT_COMPONENTS_NV": 1, + "B0": 1, + "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_R_NV": 1, + "B1": 1, + "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RG_NV": 1, + "B2": 1, + "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGB_NV": 1, + "B3": 1, + "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGBA_NV": 1, + "B4": 1, + "WGL_TEXTURE_FLOAT_R_NV": 1, + "B5": 1, + "WGL_TEXTURE_FLOAT_RG_NV": 1, + "B6": 1, + "WGL_TEXTURE_FLOAT_RGB_NV": 1, + "B7": 1, + "WGL_TEXTURE_FLOAT_RGBA_NV": 1, + "B8": 1, + "WGLEW_NV_float_buffer": 1, + "__WGLEW_NV_float_buffer": 2, + "WGL_NV_gpu_affinity": 2, + "WGL_ERROR_INCOMPATIBLE_AFFINITY_MASKS_NV": 1, + "D0": 1, + "WGL_ERROR_MISSING_AFFINITY_MASK_NV": 1, + "D1": 1, + "HGPUNV": 5, + "_GPU_DEVICE": 1, + "cb": 1, + "CHAR": 2, + "DeviceName": 1, + "DeviceString": 1, + "Flags": 1, + "RECT": 1, + "rcVirtualScreen": 1, + "GPU_DEVICE": 1, + "*PGPU_DEVICE": 1, + "PFNWGLCREATEAFFINITYDCNVPROC": 2, + "*phGpuList": 1, + "PFNWGLDELETEDCNVPROC": 2, + "PFNWGLENUMGPUDEVICESNVPROC": 2, + "hGpu": 1, + "iDeviceIndex": 1, + "PGPU_DEVICE": 1, + "lpGpuDevice": 1, + "PFNWGLENUMGPUSFROMAFFINITYDCNVPROC": 2, + "hAffinityDC": 1, + "iGpuIndex": 2, + "*hGpu": 1, + "PFNWGLENUMGPUSNVPROC": 2, + "*phGpu": 1, + "wglCreateAffinityDCNV": 1, + "__wglewCreateAffinityDCNV": 2, + "wglDeleteDCNV": 1, + "__wglewDeleteDCNV": 2, + "wglEnumGpuDevicesNV": 1, + "__wglewEnumGpuDevicesNV": 2, + "wglEnumGpusFromAffinityDCNV": 1, + "__wglewEnumGpusFromAffinityDCNV": 2, + "wglEnumGpusNV": 1, + "__wglewEnumGpusNV": 2, + "WGLEW_NV_gpu_affinity": 1, + "__WGLEW_NV_gpu_affinity": 2, + "WGL_NV_multisample_coverage": 2, + "WGL_COVERAGE_SAMPLES_NV": 1, + "WGL_COLOR_SAMPLES_NV": 1, + "B9": 1, + "WGLEW_NV_multisample_coverage": 1, + "__WGLEW_NV_multisample_coverage": 2, + "WGL_NV_present_video": 2, + "WGL_NUM_VIDEO_SLOTS_NV": 1, + "F0": 1, + "HVIDEOOUTPUTDEVICENV": 2, + "PFNWGLBINDVIDEODEVICENVPROC": 2, + "hDc": 6, + "uVideoSlot": 2, + "hVideoDevice": 4, + "PFNWGLENUMERATEVIDEODEVICESNVPROC": 2, + "HVIDEOOUTPUTDEVICENV*": 1, + "phDeviceList": 2, + "PFNWGLQUERYCURRENTCONTEXTNVPROC": 2, + "wglBindVideoDeviceNV": 1, + "__wglewBindVideoDeviceNV": 2, + "wglEnumerateVideoDevicesNV": 1, + "__wglewEnumerateVideoDevicesNV": 2, + "wglQueryCurrentContextNV": 1, + "__wglewQueryCurrentContextNV": 2, + "WGLEW_NV_present_video": 1, + "__WGLEW_NV_present_video": 2, + "WGL_NV_render_depth_texture": 2, + "WGL_BIND_TO_TEXTURE_DEPTH_NV": 1, + "WGL_BIND_TO_TEXTURE_RECTANGLE_DEPTH_NV": 1, + "WGL_DEPTH_TEXTURE_FORMAT_NV": 1, + "WGL_TEXTURE_DEPTH_COMPONENT_NV": 1, + "WGL_DEPTH_COMPONENT_NV": 1, + "WGLEW_NV_render_depth_texture": 1, + "__WGLEW_NV_render_depth_texture": 2, + "WGL_NV_render_texture_rectangle": 2, + "WGL_BIND_TO_TEXTURE_RECTANGLE_RGB_NV": 1, + "WGL_BIND_TO_TEXTURE_RECTANGLE_RGBA_NV": 1, + "A1": 1, + "WGL_TEXTURE_RECTANGLE_NV": 1, + "WGLEW_NV_render_texture_rectangle": 1, + "__WGLEW_NV_render_texture_rectangle": 2, + "WGL_NV_swap_group": 2, + "PFNWGLBINDSWAPBARRIERNVPROC": 2, + "group": 3, + "barrier": 1, + "PFNWGLJOINSWAPGROUPNVPROC": 2, + "PFNWGLQUERYFRAMECOUNTNVPROC": 2, + "GLuint*": 3, + "PFNWGLQUERYMAXSWAPGROUPSNVPROC": 2, + "maxGroups": 1, + "*maxBarriers": 1, + "PFNWGLQUERYSWAPGROUPNVPROC": 2, + "*barrier": 1, + "PFNWGLRESETFRAMECOUNTNVPROC": 2, + "wglBindSwapBarrierNV": 1, + "__wglewBindSwapBarrierNV": 2, + "wglJoinSwapGroupNV": 1, + "__wglewJoinSwapGroupNV": 2, + "wglQueryFrameCountNV": 1, + "__wglewQueryFrameCountNV": 2, + "wglQueryMaxSwapGroupsNV": 1, + "__wglewQueryMaxSwapGroupsNV": 2, + "wglQuerySwapGroupNV": 1, + "__wglewQuerySwapGroupNV": 2, + "wglResetFrameCountNV": 1, + "__wglewResetFrameCountNV": 2, + "WGLEW_NV_swap_group": 1, + "__WGLEW_NV_swap_group": 2, + "WGL_NV_vertex_array_range": 2, + "PFNWGLALLOCATEMEMORYNVPROC": 2, + "GLfloat": 3, + "readFrequency": 1, + "writeFrequency": 1, + "priority": 1, + "PFNWGLFREEMEMORYNVPROC": 2, + "*pointer": 1, + "wglAllocateMemoryNV": 1, + "__wglewAllocateMemoryNV": 2, + "wglFreeMemoryNV": 1, + "__wglewFreeMemoryNV": 2, + "WGLEW_NV_vertex_array_range": 1, + "__WGLEW_NV_vertex_array_range": 2, + "WGL_NV_video_capture": 2, + "WGL_UNIQUE_ID_NV": 1, + "CE": 1, + "WGL_NUM_VIDEO_CAPTURE_SLOTS_NV": 1, + "CF": 1, + "HVIDEOINPUTDEVICENV": 5, + "PFNWGLBINDVIDEOCAPTUREDEVICENVPROC": 2, + "PFNWGLENUMERATEVIDEOCAPTUREDEVICESNVPROC": 2, + "HVIDEOINPUTDEVICENV*": 1, + "PFNWGLLOCKVIDEOCAPTUREDEVICENVPROC": 2, + "PFNWGLQUERYVIDEOCAPTUREDEVICENVPROC": 2, + "PFNWGLRELEASEVIDEOCAPTUREDEVICENVPROC": 2, + "wglBindVideoCaptureDeviceNV": 1, + "__wglewBindVideoCaptureDeviceNV": 2, + "wglEnumerateVideoCaptureDevicesNV": 1, + "__wglewEnumerateVideoCaptureDevicesNV": 2, + "wglLockVideoCaptureDeviceNV": 1, + "__wglewLockVideoCaptureDeviceNV": 2, + "wglQueryVideoCaptureDeviceNV": 1, + "__wglewQueryVideoCaptureDeviceNV": 2, + "wglReleaseVideoCaptureDeviceNV": 1, + "__wglewReleaseVideoCaptureDeviceNV": 2, + "WGLEW_NV_video_capture": 1, + "__WGLEW_NV_video_capture": 2, + "WGL_NV_video_output": 2, + "WGL_BIND_TO_VIDEO_RGB_NV": 1, + "C0": 3, + "WGL_BIND_TO_VIDEO_RGBA_NV": 1, + "C1": 1, + "WGL_BIND_TO_VIDEO_RGB_AND_DEPTH_NV": 1, + "C2": 1, + "WGL_VIDEO_OUT_COLOR_NV": 1, + "C3": 1, + "WGL_VIDEO_OUT_ALPHA_NV": 1, + "C4": 1, + "WGL_VIDEO_OUT_DEPTH_NV": 1, + "C5": 1, + "WGL_VIDEO_OUT_COLOR_AND_ALPHA_NV": 1, + "C6": 1, + "WGL_VIDEO_OUT_COLOR_AND_DEPTH_NV": 1, + "C7": 1, + "WGL_VIDEO_OUT_FRAME": 1, + "C8": 1, + "WGL_VIDEO_OUT_FIELD_1": 1, + "C9": 1, + "WGL_VIDEO_OUT_FIELD_2": 1, + "CA": 1, + "WGL_VIDEO_OUT_STACKED_FIELDS_1_2": 1, + "CB": 1, + "WGL_VIDEO_OUT_STACKED_FIELDS_2_1": 1, + "CC": 1, + "HPVIDEODEV": 4, + "PFNWGLBINDVIDEOIMAGENVPROC": 2, + "iVideoBuffer": 2, + "PFNWGLGETVIDEODEVICENVPROC": 2, + "numDevices": 1, + "HPVIDEODEV*": 1, + "PFNWGLGETVIDEOINFONVPROC": 2, + "hpVideoDevice": 1, + "long*": 2, + "pulCounterOutputPbuffer": 1, + "*pulCounterOutputVideo": 1, + "PFNWGLRELEASEVIDEODEVICENVPROC": 2, + "PFNWGLRELEASEVIDEOIMAGENVPROC": 2, + "PFNWGLSENDPBUFFERTOVIDEONVPROC": 2, + "iBufferType": 1, + "pulCounterPbuffer": 1, + "bBlock": 1, + "wglBindVideoImageNV": 1, + "__wglewBindVideoImageNV": 2, + "wglGetVideoDeviceNV": 1, + "__wglewGetVideoDeviceNV": 2, + "wglGetVideoInfoNV": 1, + "__wglewGetVideoInfoNV": 2, + "wglReleaseVideoDeviceNV": 1, + "__wglewReleaseVideoDeviceNV": 2, + "wglReleaseVideoImageNV": 1, + "__wglewReleaseVideoImageNV": 2, + "wglSendPbufferToVideoNV": 1, + "__wglewSendPbufferToVideoNV": 2, + "WGLEW_NV_video_output": 1, + "__WGLEW_NV_video_output": 2, + "WGL_OML_sync_control": 2, + "PFNWGLGETMSCRATEOMLPROC": 2, + "INT32*": 1, + "numerator": 1, + "INT32": 1, + "*denominator": 1, + "PFNWGLGETSYNCVALUESOMLPROC": 2, + "INT64*": 3, + "ust": 7, + "INT64": 18, + "*msc": 3, + "*sbc": 3, + "PFNWGLSWAPBUFFERSMSCOMLPROC": 2, + "target_msc": 3, + "divisor": 3, + "remainder": 3, + "PFNWGLSWAPLAYERBUFFERSMSCOMLPROC": 2, + "fuPlanes": 1, + "PFNWGLWAITFORMSCOMLPROC": 2, + "PFNWGLWAITFORSBCOMLPROC": 2, + "target_sbc": 1, + "wglGetMscRateOML": 1, + "__wglewGetMscRateOML": 2, + "wglGetSyncValuesOML": 1, + "__wglewGetSyncValuesOML": 2, + "wglSwapBuffersMscOML": 1, + "__wglewSwapBuffersMscOML": 2, + "wglSwapLayerBuffersMscOML": 1, + "__wglewSwapLayerBuffersMscOML": 2, + "wglWaitForMscOML": 1, + "__wglewWaitForMscOML": 2, + "wglWaitForSbcOML": 1, + "__wglewWaitForSbcOML": 2, + "WGLEW_OML_sync_control": 1, + "__WGLEW_OML_sync_control": 2, + "GLEW_MX": 4, + "WGLEW_EXPORT": 167, + "GLEWAPI": 6, + "WGLEWContextStruct": 2, + "WGLEWContext": 1, + "wglewContextInit": 2, + "WGLEWContext*": 2, + "ctx": 16, + "wglewContextIsSupported": 2, + "wglewInit": 1, + "wglewGetContext": 4, + "wglewIsSupported": 2, + "wglewGetExtension": 1, + "#undef": 7, + "PPC_SHA1": 1, + "git_hash_ctx": 7, + "SHA_CTX": 3, + "*git_hash_new_ctx": 1, + "*ctx": 5, + "git__malloc": 3, + "SHA1_Init": 4, + "git_hash_free_ctx": 1, + "git__free": 15, + "git_hash_init": 1, + "git_hash_update": 1, + "len": 30, + "SHA1_Update": 3, + "git_hash_final": 1, + "git_oid": 7, + "*out": 3, + "SHA1_Final": 3, + "out": 18, + "git_hash_buf": 1, + "git_hash_vec": 1, + "git_buf_vec": 1, + "*vec": 1, + "vec": 2, + ".data": 1, + ".len": 3, + "BLOB_H": 2, + "PY_SSIZE_T_CLEAN": 1, + "Py_PYTHON_H": 1, + "Python": 2, + "headers": 1, + "compile": 1, + "extensions": 1, + "please": 1, + "install": 1, + "development": 1, + "version": 4, + "Python.": 1, + "#elif": 14, + "PY_VERSION_HEX": 11, + "Cython": 1, + "requires": 1, + ".": 1, + "": 2, + "offsetof": 2, + "member": 2, + "type*": 1, + "WIN32": 2, + "MS_WINDOWS": 2, + "__stdcall": 2, + "__cdecl": 2, + "__fastcall": 2, + "DL_IMPORT": 2, + "t": 32, + "DL_EXPORT": 2, + "PY_LONG_LONG": 5, + "LONG_LONG": 1, + "Py_HUGE_VAL": 2, + "HUGE_VAL": 1, + "PYPY_VERSION": 1, + "CYTHON_COMPILING_IN_PYPY": 3, + "CYTHON_COMPILING_IN_CPYTHON": 6, + "Py_ssize_t": 35, + "PY_SSIZE_T_MAX": 1, + "INT_MAX": 1, + "PY_SSIZE_T_MIN": 1, + "INT_MIN": 1, + "PY_FORMAT_SIZE_T": 1, + "CYTHON_FORMAT_SSIZE_T": 2, + "PyInt_FromSsize_t": 6, + "z": 47, + "PyInt_FromLong": 3, + "PyInt_AsSsize_t": 3, + "o": 80, + "__Pyx_PyInt_AsInt": 2, + "PyNumber_Index": 1, + "PyNumber_Check": 2, + "PyFloat_Check": 2, + "PyNumber_Int": 1, + "PyErr_Format": 4, + "PyExc_TypeError": 4, + "Py_TYPE": 7, + "tp_name": 4, + "PyObject*": 24, + "__Pyx_PyIndex_Check": 3, + "PyComplex_Check": 1, + "PyIndex_Check": 2, + "PyErr_WarnEx": 1, + "category": 2, + "message": 3, + "stacklevel": 1, + "PyErr_Warn": 1, + "__PYX_BUILD_PY_SSIZE_T": 2, + "Py_REFCNT": 1, + "ob_refcnt": 1, + "ob_type": 7, + "Py_SIZE": 1, + "PyVarObject*": 1, + "ob_size": 1, + "PyVarObject_HEAD_INIT": 1, + "PyObject_HEAD_INIT": 1, + "PyType_Modified": 1, + "PyObject": 276, + "itemsize": 1, + "readonly": 1, + "ndim": 2, + "*format": 2, + "*shape": 1, + "*strides": 1, + "*suboffsets": 1, + "*internal": 1, + "Py_buffer": 6, + "PyBUF_SIMPLE": 1, + "PyBUF_WRITABLE": 3, + "PyBUF_FORMAT": 3, + "PyBUF_ND": 2, + "PyBUF_STRIDES": 6, + "PyBUF_C_CONTIGUOUS": 1, + "PyBUF_F_CONTIGUOUS": 1, + "PyBUF_ANY_CONTIGUOUS": 1, + "PyBUF_INDIRECT": 2, + "PyBUF_RECORDS": 1, + "PyBUF_FULL": 1, + "PY_MAJOR_VERSION": 13, + "__Pyx_BUILTIN_MODULE_NAME": 2, + "__Pyx_PyCode_New": 2, + "k": 15, + "l": 7, + "code": 6, + "v": 11, + "fv": 4, + "cell": 4, + "fline": 4, + "lnos": 4, + "PyCode_New": 2, + "PY_MINOR_VERSION": 1, + "PyUnicode_FromString": 2, + "PyUnicode_Decode": 1, + "Py_TPFLAGS_CHECKTYPES": 1, + "Py_TPFLAGS_HAVE_INDEX": 1, + "Py_TPFLAGS_HAVE_NEWBUFFER": 1, + "PyUnicode_KIND": 1, + "CYTHON_PEP393_ENABLED": 2, + "__Pyx_PyUnicode_READY": 2, + "op": 8, + "likely": 22, + "PyUnicode_IS_READY": 1, + "_PyUnicode_Ready": 1, + "__Pyx_PyUnicode_GET_LENGTH": 2, + "u": 18, + "PyUnicode_GET_LENGTH": 1, + "__Pyx_PyUnicode_READ_CHAR": 2, + "PyUnicode_READ_CHAR": 1, + "__Pyx_PyUnicode_READ": 2, + "d": 16, + "PyUnicode_READ": 1, + "PyUnicode_GET_SIZE": 1, + "Py_UCS4": 2, + "PyUnicode_AS_UNICODE": 1, + "Py_UNICODE*": 1, + "PyBaseString_Type": 1, + "PyUnicode_Type": 2, + "PyStringObject": 2, + "PyUnicodeObject": 1, + "PyString_Type": 2, + "PyString_Check": 2, + "PyUnicode_Check": 1, + "PyString_CheckExact": 2, + "PyUnicode_CheckExact": 1, + "PyBytesObject": 1, + "PyBytes_Type": 1, + "PyBytes_Check": 1, + "PyBytes_CheckExact": 1, + "PyBytes_FromString": 2, + "PyString_FromString": 2, + "PyBytes_FromStringAndSize": 1, + "PyString_FromStringAndSize": 1, + "PyBytes_FromFormat": 1, + "PyString_FromFormat": 1, + "PyBytes_DecodeEscape": 1, + "PyString_DecodeEscape": 1, + "PyBytes_AsString": 2, + "PyString_AsString": 1, + "PyBytes_AsStringAndSize": 1, + "PyString_AsStringAndSize": 1, + "PyBytes_Size": 1, + "PyString_Size": 1, + "PyBytes_AS_STRING": 1, + "PyString_AS_STRING": 1, + "PyBytes_GET_SIZE": 1, + "PyString_GET_SIZE": 1, + "PyBytes_Repr": 1, + "PyString_Repr": 1, + "PyBytes_Concat": 1, + "PyString_Concat": 1, + "PyBytes_ConcatAndDel": 1, + "PyString_ConcatAndDel": 1, + "PySet_Check": 1, + "PyObject_TypeCheck": 3, + "PySet_Type": 2, + "PyFrozenSet_Check": 1, + "PyFrozenSet_Type": 1, + "PySet_CheckExact": 2, + "__Pyx_TypeCheck": 1, + "PyTypeObject": 25, + "PyIntObject": 1, + "PyLongObject": 2, + "PyInt_Type": 1, + "PyLong_Type": 1, + "PyInt_Check": 1, + "PyLong_Check": 1, + "PyInt_CheckExact": 1, + "PyLong_CheckExact": 1, + "PyInt_FromString": 1, + "PyLong_FromString": 1, + "PyInt_FromUnicode": 1, + "PyLong_FromUnicode": 1, + "PyLong_FromLong": 1, + "PyInt_FromSize_t": 1, + "PyLong_FromSize_t": 1, + "PyLong_FromSsize_t": 1, + "PyInt_AsLong": 2, + "PyLong_AsLong": 1, + "PyInt_AS_LONG": 1, + "PyLong_AS_LONG": 1, + "PyLong_AsSsize_t": 1, + "PyInt_AsUnsignedLongMask": 1, + "PyLong_AsUnsignedLongMask": 1, + "PyInt_AsUnsignedLongLongMask": 1, + "PyLong_AsUnsignedLongLongMask": 1, + "PyBoolObject": 1, + "Py_hash_t": 1, + "__Pyx_PyInt_FromHash_t": 2, + "__Pyx_PyInt_AsHash_t": 2, + "__Pyx_PySequence_GetSlice": 2, + "PySequence_GetSlice": 2, + "__Pyx_PySequence_SetSlice": 2, + "PySequence_SetSlice": 2, + "__Pyx_PySequence_DelSlice": 2, + "PySequence_DelSlice": 2, + "unlikely": 54, + "PyErr_SetString": 3, + "PyExc_SystemError": 3, + "tp_as_mapping": 3, + "PyMethod_New": 2, + "func": 3, + "self": 9, + "klass": 1, + "PyInstanceMethod_New": 1, + "__Pyx_GetAttrString": 2, + "PyObject_GetAttrString": 2, + "__Pyx_SetAttrString": 2, + "PyObject_SetAttrString": 2, + "__Pyx_DelAttrString": 2, + "PyObject_DelAttrString": 2, + "__Pyx_NAMESTR": 2, + "__Pyx_DOCSTR": 2, + "__Pyx_PyNumber_Divide": 2, + "PyNumber_TrueDivide": 1, + "__Pyx_PyNumber_InPlaceDivide": 2, + "PyNumber_InPlaceTrueDivide": 1, + "PyNumber_Divide": 1, + "PyNumber_InPlaceDivide": 1, + "__PYX_EXTERN_C": 3, + "_USE_MATH_DEFINES": 1, + "": 3, + "__PYX_HAVE__sklearn__linear_model__sgd_fast": 1, + "__PYX_HAVE_API__sklearn__linear_model__sgd_fast": 1, + "_OPENMP": 1, + "": 1, + "PYREX_WITHOUT_ASSERTIONS": 1, + "CYTHON_WITHOUT_ASSERTIONS": 1, + "CYTHON_INLINE": 65, + "__GNUC__": 8, + "__inline__": 1, + "_MSC_VER": 5, + "__inline": 1, + "__STDC_VERSION__": 2, + "L": 1, + "inline": 3, + "CYTHON_UNUSED": 14, + "**p": 1, + "*s": 3, + "encoding": 14, + "is_unicode": 1, + "is_str": 1, + "intern": 1, + "__Pyx_StringTabEntry": 2, + "__Pyx_PyBytes_FromUString": 1, + "__Pyx_PyBytes_AsUString": 1, + "__Pyx_Owned_Py_None": 1, + "Py_INCREF": 10, + "Py_None": 8, + "__Pyx_PyBool_FromLong": 1, + "Py_True": 2, + "Py_False": 2, + "__Pyx_PyObject_IsTrue": 1, + "__Pyx_PyNumber_Int": 1, + "__Pyx_PyIndex_AsSsize_t": 1, + "__Pyx_PyInt_FromSize_t": 1, + "__Pyx_PyInt_AsSize_t": 1, + "__pyx_PyFloat_AsDouble": 12, + "PyFloat_CheckExact": 1, + "PyFloat_AS_DOUBLE": 1, + "PyFloat_AsDouble": 2, + "__pyx_PyFloat_AsFloat": 1, + "__GNUC_MINOR__": 2, + "__builtin_expect": 2, + "*__pyx_m": 1, + "*__pyx_b": 1, + "*__pyx_empty_tuple": 1, + "*__pyx_empty_bytes": 1, + "__pyx_lineno": 58, + "__pyx_clineno": 58, + "__pyx_cfilenm": 1, + "__FILE__": 4, + "*__pyx_filename": 7, + "CYTHON_CCOMPLEX": 12, + "_Complex_I": 3, + "": 1, + "": 1, + "__sun__": 1, + "fj": 1, + "*__pyx_f": 1, + "IS_UNSIGNED": 1, + "__Pyx_StructField_": 2, + "__PYX_BUF_FLAGS_PACKED_STRUCT": 1, + "__Pyx_StructField_*": 1, + "fields": 1, + "arraysize": 1, + "typegroup": 1, + "is_unsigned": 1, + "__Pyx_TypeInfo": 2, + "__Pyx_TypeInfo*": 2, + "offset": 1, + "__Pyx_StructField": 2, + "__Pyx_StructField*": 1, + "field": 1, + "parent_offset": 1, + "__Pyx_BufFmt_StackElem": 1, + "root": 1, + "__Pyx_BufFmt_StackElem*": 2, + "head": 3, + "fmt_offset": 1, + "new_count": 1, + "enc_count": 1, + "struct_alignment": 1, + "is_complex": 1, + "enc_type": 1, + "new_packmode": 1, + "enc_packmode": 1, + "is_valid_array": 1, + "__Pyx_BufFmt_Context": 1, + "npy_int8": 1, + "__pyx_t_5numpy_int8_t": 1, + "npy_int16": 1, + "__pyx_t_5numpy_int16_t": 1, + "npy_int32": 1, + "__pyx_t_5numpy_int32_t": 4, + "npy_int64": 1, + "__pyx_t_5numpy_int64_t": 1, + "npy_uint8": 1, + "__pyx_t_5numpy_uint8_t": 1, + "npy_uint16": 1, + "__pyx_t_5numpy_uint16_t": 1, + "npy_uint32": 1, + "__pyx_t_5numpy_uint32_t": 1, + "npy_uint64": 1, + "__pyx_t_5numpy_uint64_t": 1, + "npy_float32": 1, + "__pyx_t_5numpy_float32_t": 1, + "npy_float64": 1, + "__pyx_t_5numpy_float64_t": 4, + "npy_long": 1, + "__pyx_t_5numpy_int_t": 1, + "npy_longlong": 2, + "__pyx_t_5numpy_long_t": 1, + "__pyx_t_5numpy_longlong_t": 1, + "npy_ulong": 1, + "__pyx_t_5numpy_uint_t": 1, + "npy_ulonglong": 2, + "__pyx_t_5numpy_ulong_t": 1, + "__pyx_t_5numpy_ulonglong_t": 1, + "npy_intp": 1, + "__pyx_t_5numpy_intp_t": 1, + "npy_uintp": 1, + "__pyx_t_5numpy_uintp_t": 1, + "npy_double": 2, + "__pyx_t_5numpy_float_t": 1, + "__pyx_t_5numpy_double_t": 1, + "npy_longdouble": 1, + "__pyx_t_5numpy_longdouble_t": 1, + "__pyx_t_7sklearn_5utils_13weight_vector_DOUBLE": 2, + "__pyx_t_7sklearn_5utils_13weight_vector_INTEGER": 1, + "__pyx_t_7sklearn_5utils_11seq_dataset_DOUBLE": 7, + "__pyx_t_7sklearn_5utils_11seq_dataset_INTEGER": 7, + "__pyx_t_7sklearn_12linear_model_8sgd_fast_DOUBLE": 4, + "__pyx_t_7sklearn_12linear_model_8sgd_fast_INTEGER": 3, + "std": 8, + "complex": 2, + "__pyx_t_float_complex": 27, + "_Complex": 2, + "real": 2, + "imag": 2, + "double": 126, + "__pyx_t_double_complex": 27, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_LossFunction": 15, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Regression": 11, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Huber": 6, + "__pyx_obj_7sklearn_5utils_11seq_dataset_SequentialDataset": 5, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 6, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Classification": 7, + "__pyx_obj_7sklearn_5utils_11seq_dataset_CSRDataset": 2, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Log": 5, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Hinge": 6, + "__pyx_obj_7sklearn_5utils_11seq_dataset_ArrayDataset": 2, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 6, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_ModifiedHuber": 5, + "__pyx_obj_7sklearn_5utils_13weight_vector_WeightVector": 3, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredLoss": 5, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredEpsilonInsensitive": 6, + "npy_cfloat": 1, + "__pyx_t_5numpy_cfloat_t": 1, + "npy_cdouble": 2, + "__pyx_t_5numpy_cdouble_t": 1, + "npy_clongdouble": 1, + "__pyx_t_5numpy_clongdouble_t": 1, + "__pyx_t_5numpy_complex_t": 1, + "PyObject_HEAD": 3, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_LossFunction": 5, + "*__pyx_vtab": 3, + "__pyx_base": 18, + "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_SequentialDataset": 4, + "n_samples": 1, + "epsilon": 2, + "current_index": 2, + "stride": 2, + "*X_data_ptr": 2, + "*X_indptr_ptr": 1, + "*X_indices_ptr": 1, + "*Y_data_ptr": 2, + "PyArrayObject": 8, + "*feature_indices": 2, + "*feature_indices_ptr": 2, + "*index": 2, + "*index_data_ptr": 2, + "*sample_weight_data": 2, + "threshold": 2, + "n_features": 2, + "__pyx_vtabstruct_7sklearn_5utils_13weight_vector_WeightVector": 3, + "*w": 2, + "*w_data_ptr": 1, + "wscale": 1, + "sq_norm": 1, + "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_SequentialDataset": 1, + "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_ArrayDataset": 2, + "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_ArrayDataset": 1, + "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_CSRDataset": 2, + "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_CSRDataset": 1, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 2, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Regression": 3, + "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 1, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 2, + "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 1, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Huber": 2, + "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_Huber": 1, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Hinge": 2, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Classification": 1, + "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_Hinge": 1, + "*__pyx_vtabptr_7sklearn_5utils_13weight_vector_WeightVector": 1, + "CYTHON_REFNANNY": 3, + "__Pyx_RefNannyAPIStruct": 3, + "*__Pyx_RefNanny": 1, + "*__Pyx_RefNannyImportAPI": 1, + "*modname": 1, + "__Pyx_RefNannyDeclarations": 11, + "*__pyx_refnanny": 1, + "WITH_THREAD": 1, + "__Pyx_RefNannySetupContext": 12, + "acquire_gil": 4, + "PyGILState_STATE": 1, + "__pyx_gilstate_save": 2, + "PyGILState_Ensure": 1, + "__pyx_refnanny": 8, + "__Pyx_RefNanny": 8, + "SetupContext": 3, + "__LINE__": 50, + "PyGILState_Release": 1, + "__Pyx_RefNannyFinishContext": 14, + "FinishContext": 1, + "__Pyx_INCREF": 6, + "INCREF": 1, + "__Pyx_DECREF": 20, + "DECREF": 1, + "__Pyx_GOTREF": 24, + "GOTREF": 1, + "__Pyx_GIVEREF": 9, + "GIVEREF": 1, + "__Pyx_XINCREF": 2, + "__Pyx_XDECREF": 20, + "__Pyx_XGOTREF": 2, + "__Pyx_XGIVEREF": 5, + "Py_DECREF": 2, + "Py_XINCREF": 1, + "Py_XDECREF": 1, + "__Pyx_CLEAR": 1, + "__Pyx_XCLEAR": 1, + "*__Pyx_GetName": 1, + "*dict": 5, + "__Pyx_ErrRestore": 1, + "*type": 4, + "*tb": 2, + "__Pyx_ErrFetch": 1, + "**type": 1, + "**value": 1, + "**tb": 1, + "__Pyx_Raise": 4, + "*cause": 1, + "__Pyx_RaiseArgtupleInvalid": 7, + "func_name": 2, + "exact": 6, + "num_min": 1, + "num_max": 1, + "num_found": 1, + "__Pyx_RaiseDoubleKeywordsError": 1, + "kw_name": 1, + "__Pyx_ParseOptionalKeywords": 4, + "*kwds": 1, + "**argnames": 1, + "*kwds2": 1, + "*values": 1, + "num_pos_args": 1, + "function_name": 1, + "__Pyx_ArgTypeTest": 1, + "none_allowed": 1, + "__Pyx_GetBufferAndValidate": 1, + "Py_buffer*": 2, + "dtype": 1, + "nd": 1, + "cast": 1, + "stack": 6, + "__Pyx_SafeReleaseBuffer": 1, + "info": 64, + "__Pyx_TypeTest": 1, + "__Pyx_RaiseBufferFallbackError": 1, + "*__Pyx_GetItemInt_Generic": 1, + "*o": 8, + "*r": 7, + "PyObject_GetItem": 1, + "__Pyx_GetItemInt_List": 1, + "to_py_func": 6, + "__Pyx_GetItemInt_List_Fast": 1, + "__Pyx_GetItemInt_Generic": 6, + "*__Pyx_GetItemInt_List_Fast": 1, + "PyList_GET_SIZE": 5, + "PyList_GET_ITEM": 3, + "PySequence_GetItem": 3, + "__Pyx_GetItemInt_Tuple": 1, + "__Pyx_GetItemInt_Tuple_Fast": 1, + "*__Pyx_GetItemInt_Tuple_Fast": 1, + "PyTuple_GET_SIZE": 14, + "PyTuple_GET_ITEM": 15, + "__Pyx_GetItemInt": 1, + "__Pyx_GetItemInt_Fast": 2, + "PyList_CheckExact": 1, + "PyTuple_CheckExact": 1, + "PySequenceMethods": 1, + "*m": 1, + "tp_as_sequence": 1, + "m": 8, + "sq_item": 2, + "sq_length": 2, + "PySequence_Check": 1, + "__Pyx_RaiseTooManyValuesError": 1, + "expected": 2, + "__Pyx_RaiseNeedMoreValuesError": 1, + "index": 58, + "__Pyx_RaiseNoneNotIterableError": 1, + "__Pyx_IterFinish": 1, + "__Pyx_IternextUnpackEndCheck": 1, + "*retval": 1, + "shape": 1, + "strides": 1, + "suboffsets": 1, + "__Pyx_Buf_DimInfo": 2, + "refcount": 2, + "pybuffer": 1, + "__Pyx_Buffer": 2, + "*rcbuffer": 1, + "diminfo": 1, + "__Pyx_LocalBuf_ND": 1, + "__Pyx_GetBuffer": 2, + "*view": 2, + "__Pyx_ReleaseBuffer": 2, + "PyObject_GetBuffer": 1, + "PyBuffer_Release": 1, + "__Pyx_zeros": 1, + "__Pyx_minusones": 1, + "*__Pyx_Import": 1, + "*from_list": 1, + "level": 12, + "__Pyx_RaiseImportError": 1, + "__Pyx_Print": 1, + "__pyx_print": 1, + "__pyx_print_kwargs": 1, + "__Pyx_PrintOne": 1, + "stream": 3, + "__Pyx_CREAL": 4, + ".real": 3, + "__Pyx_CIMAG": 4, + ".imag": 3, + "__real__": 1, + "__imag__": 1, + "__Pyx_SET_CREAL": 2, + "__Pyx_SET_CIMAG": 2, + "__pyx_t_float_complex_from_parts": 1, + "__Pyx_c_eqf": 2, + "__Pyx_c_sumf": 2, + "__Pyx_c_difff": 2, + "__Pyx_c_prodf": 2, + "__Pyx_c_quotf": 2, + "__Pyx_c_negf": 2, + "__Pyx_c_is_zerof": 3, + "__Pyx_c_conjf": 3, + "conj": 3, + "__Pyx_c_absf": 3, + "abs": 2, + "__Pyx_c_powf": 3, + "pow": 2, + "conjf": 1, + "cabsf": 1, + "cpowf": 1, + "__pyx_t_double_complex_from_parts": 1, + "__Pyx_c_eq": 2, + "__Pyx_c_sum": 2, + "__Pyx_c_diff": 2, + "__Pyx_c_prod": 2, + "__Pyx_c_quot": 2, + "__Pyx_c_neg": 2, + "__Pyx_c_is_zero": 3, + "__Pyx_c_conj": 3, + "__Pyx_c_abs": 3, + "__Pyx_c_pow": 3, + "cabs": 1, + "cpow": 1, + "__Pyx_PyInt_AsUnsignedChar": 1, + "short": 6, + "__Pyx_PyInt_AsUnsignedShort": 1, + "__Pyx_PyInt_AsUnsignedInt": 1, + "__Pyx_PyInt_AsChar": 1, + "__Pyx_PyInt_AsShort": 1, + "signed": 5, + "__Pyx_PyInt_AsSignedChar": 1, + "__Pyx_PyInt_AsSignedShort": 1, + "__Pyx_PyInt_AsSignedInt": 1, + "__Pyx_PyInt_AsLongDouble": 1, + "__Pyx_PyInt_AsUnsignedLong": 1, + "__Pyx_PyInt_AsUnsignedLongLong": 1, + "__Pyx_PyInt_AsLong": 1, + "__Pyx_PyInt_AsLongLong": 1, + "__Pyx_PyInt_AsSignedLong": 1, + "__Pyx_PyInt_AsSignedLongLong": 1, + "__Pyx_WriteUnraisable": 4, + "clineno": 1, + "lineno": 1, + "*filename": 2, + "__Pyx_check_binary_version": 1, + "__Pyx_SetVtable": 1, + "*vtable": 1, + "__Pyx_PyIdentifier_FromString": 3, + "*__Pyx_ImportModule": 1, + "*__Pyx_ImportType": 1, + "*module_name": 1, + "*class_name": 1, + "strict": 2, + "__Pyx_GetVtable": 1, + "code_line": 4, + "PyCodeObject*": 2, + "code_object": 2, + "__Pyx_CodeObjectCacheEntry": 1, + "__Pyx_CodeObjectCache": 2, + "max_count": 1, + "__Pyx_CodeObjectCacheEntry*": 2, + "entries": 2, + "__pyx_code_cache": 1, + "__pyx_bisect_code_objects": 1, + "PyCodeObject": 1, + "*__pyx_find_code_object": 1, + "__pyx_insert_code_object": 1, + "__Pyx_AddTraceback": 7, + "*funcname": 1, + "c_line": 1, + "py_line": 1, + "__Pyx_InitStrings": 1, + "*t": 2, + "*__pyx_ptype_7cpython_4type_type": 1, + "*__pyx_ptype_5numpy_dtype": 1, + "*__pyx_ptype_5numpy_flatiter": 1, + "*__pyx_ptype_5numpy_broadcast": 1, + "*__pyx_ptype_5numpy_ndarray": 1, + "*__pyx_ptype_5numpy_ufunc": 1, + "*__pyx_f_5numpy__util_dtypestring": 1, + "PyArray_Descr": 1, + "*__pyx_ptype_7sklearn_5utils_13weight_vector_WeightVector": 1, + "*__pyx_ptype_7sklearn_5utils_11seq_dataset_SequentialDataset": 1, + "*__pyx_ptype_7sklearn_5utils_11seq_dataset_ArrayDataset": 1, + "*__pyx_ptype_7sklearn_5utils_11seq_dataset_CSRDataset": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_LossFunction": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Regression": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Classification": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_ModifiedHuber": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Hinge": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Log": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredLoss": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Huber": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredEpsilonInsensitive": 1, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_max": 1, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_min": 1, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_sqnorm": 1, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_l1penalty": 1, + "__Pyx_TypeInfo_nn___pyx_t_7sklearn_12linear_model_8sgd_fast_DOUBLE": 1, + "__Pyx_MODULE_NAME": 1, + "__pyx_module_is_main_sklearn__linear_model__sgd_fast": 1, + "*__pyx_builtin_NotImplementedError": 1, + "*__pyx_builtin_range": 1, + "*__pyx_builtin_ValueError": 1, + "*__pyx_builtin_RuntimeError": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 2, + "*__pyx_v_self": 52, + "__pyx_v_p": 46, + "__pyx_v_y": 46, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 2, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 2, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_2dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_14Classification_loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_14Classification_2dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_2dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_4__reduce__": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge___init__": 1, + "__pyx_v_threshold": 2, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_2loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_4dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_6__reduce__": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge___init__": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_2loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_4dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_6__reduce__": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_2dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_4__reduce__": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_2dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_4__reduce__": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber___init__": 1, + "__pyx_v_c": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_2loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_4dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_6__reduce__": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive___init__": 1, + "__pyx_v_epsilon": 2, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_2loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_4dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_6__reduce__": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive___init__": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_2loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_4dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_6__reduce__": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_plain_sgd": 1, + "*__pyx_self": 1, + "*__pyx_v_weights": 1, + "__pyx_v_intercept": 1, + "*__pyx_v_loss": 1, + "__pyx_v_penalty_type": 1, + "__pyx_v_alpha": 1, + "__pyx_v_C": 1, + "__pyx_v_rho": 1, + "*__pyx_v_dataset": 1, + "__pyx_v_n_iter": 1, + "__pyx_v_fit_intercept": 1, + "__pyx_v_verbose": 1, + "__pyx_v_shuffle": 1, + "*__pyx_v_seed": 1, + "__pyx_v_weight_pos": 1, + "__pyx_v_weight_neg": 1, + "__pyx_v_learning_rate": 1, + "__pyx_v_eta0": 1, + "__pyx_v_power_t": 1, + "__pyx_v_t": 1, + "__pyx_v_intercept_decay": 1, + "__pyx_pf_5numpy_7ndarray___getbuffer__": 1, + "*__pyx_v_info": 2, + "__pyx_v_flags": 1, + "__pyx_pf_5numpy_7ndarray_2__releasebuffer__": 1, + "__pyx_k_1": 1, + "__pyx_k_2": 1, + "__pyx_k_3": 1, + "__pyx_k_4": 1, + "__pyx_k_6": 1, + "__pyx_k_8": 1, + "__pyx_k_10": 1, + "__pyx_k_12": 1, + "__pyx_k_13": 1, + "__pyx_k_16": 1, + "__pyx_k_20": 1, + "__pyx_k_21": 1, + "__pyx_k__B": 1, + "__pyx_k__C": 1, + "__pyx_k__H": 1, + "__pyx_k__I": 1, + "__pyx_k__L": 1, + "__pyx_k__O": 1, + "__pyx_k__Q": 1, + "__pyx_k__b": 1, + "__pyx_k__c": 1, + "__pyx_k__d": 1, + "__pyx_k__f": 1, + "__pyx_k__g": 1, + "__pyx_k__h": 1, + "__pyx_k__i": 1, + "__pyx_k__l": 1, + "__pyx_k__p": 1, + "__pyx_k__q": 1, + "__pyx_k__t": 1, + "__pyx_k__u": 1, + "__pyx_k__w": 1, + "__pyx_k__y": 1, + "__pyx_k__Zd": 1, + "__pyx_k__Zf": 1, + "__pyx_k__Zg": 1, + "__pyx_k__np": 1, + "__pyx_k__any": 1, + "__pyx_k__eta": 1, + "__pyx_k__rho": 1, + "__pyx_k__sys": 1, + "__pyx_k__eta0": 1, + "__pyx_k__loss": 1, + "__pyx_k__seed": 1, + "__pyx_k__time": 1, + "__pyx_k__xnnz": 1, + "__pyx_k__alpha": 1, + "__pyx_k__count": 1, + "__pyx_k__dloss": 1, + "__pyx_k__dtype": 1, + "__pyx_k__epoch": 1, + "__pyx_k__isinf": 1, + "__pyx_k__isnan": 1, + "__pyx_k__numpy": 1, + "__pyx_k__order": 1, + "__pyx_k__range": 1, + "__pyx_k__shape": 1, + "__pyx_k__zeros": 1, + "__pyx_k__n_iter": 1, + "__pyx_k__update": 1, + "__pyx_k__dataset": 1, + "__pyx_k__epsilon": 1, + "__pyx_k__float64": 1, + "__pyx_k__nonzero": 1, + "__pyx_k__power_t": 1, + "__pyx_k__shuffle": 1, + "__pyx_k__sumloss": 1, + "__pyx_k__t_start": 1, + "__pyx_k__verbose": 1, + "__pyx_k__weights": 1, + "__pyx_k____main__": 1, + "__pyx_k____test__": 1, + "__pyx_k__is_hinge": 1, + "__pyx_k__intercept": 1, + "__pyx_k__n_samples": 1, + "__pyx_k__plain_sgd": 1, + "__pyx_k__threshold": 1, + "__pyx_k__x_ind_ptr": 1, + "__pyx_k__ValueError": 1, + "__pyx_k__n_features": 1, + "__pyx_k__q_data_ptr": 1, + "__pyx_k__weight_neg": 1, + "__pyx_k__weight_pos": 1, + "__pyx_k__x_data_ptr": 1, + "__pyx_k__RuntimeError": 1, + "__pyx_k__class_weight": 1, + "__pyx_k__penalty_type": 1, + "__pyx_k__fit_intercept": 1, + "__pyx_k__learning_rate": 1, + "__pyx_k__sample_weight": 1, + "__pyx_k__intercept_decay": 1, + "__pyx_k__NotImplementedError": 1, + "*__pyx_kp_s_1": 1, + "*__pyx_kp_u_10": 1, + "*__pyx_kp_u_12": 1, + "*__pyx_kp_u_13": 1, + "*__pyx_kp_u_16": 1, + "*__pyx_kp_s_2": 1, + "*__pyx_kp_s_20": 1, + "*__pyx_n_s_21": 1, + "*__pyx_kp_s_3": 1, + "*__pyx_kp_s_4": 1, + "*__pyx_kp_u_6": 1, + "*__pyx_kp_u_8": 1, + "*__pyx_n_s__C": 1, + "*__pyx_n_s__NotImplementedError": 1, + "*__pyx_n_s__RuntimeError": 1, + "*__pyx_n_s__ValueError": 1, + "*__pyx_n_s____main__": 1, + "*__pyx_n_s____test__": 1, + "*__pyx_n_s__alpha": 1, + "*__pyx_n_s__any": 1, + "*__pyx_n_s__c": 1, + "*__pyx_n_s__class_weight": 1, + "*__pyx_n_s__count": 1, + "*__pyx_n_s__dataset": 1, + "*__pyx_n_s__dloss": 1, + "*__pyx_n_s__dtype": 1, + "*__pyx_n_s__epoch": 1, + "*__pyx_n_s__epsilon": 1, + "*__pyx_n_s__eta": 1, + "*__pyx_n_s__eta0": 1, + "*__pyx_n_s__fit_intercept": 1, + "*__pyx_n_s__float64": 1, + "*__pyx_n_s__i": 1, + "*__pyx_n_s__intercept": 1, + "*__pyx_n_s__intercept_decay": 1, + "*__pyx_n_s__is_hinge": 1, + "*__pyx_n_s__isinf": 1, + "*__pyx_n_s__isnan": 1, + "*__pyx_n_s__learning_rate": 1, + "*__pyx_n_s__loss": 1, + "*__pyx_n_s__n_features": 1, + "*__pyx_n_s__n_iter": 1, + "*__pyx_n_s__n_samples": 1, + "*__pyx_n_s__nonzero": 1, + "*__pyx_n_s__np": 1, + "*__pyx_n_s__numpy": 1, + "*__pyx_n_s__order": 1, + "*__pyx_n_s__p": 1, + "*__pyx_n_s__penalty_type": 1, + "*__pyx_n_s__plain_sgd": 1, + "*__pyx_n_s__power_t": 1, + "*__pyx_n_s__q": 1, + "*__pyx_n_s__q_data_ptr": 1, + "*__pyx_n_s__range": 1, + "*__pyx_n_s__rho": 1, + "*__pyx_n_s__sample_weight": 1, + "*__pyx_n_s__seed": 1, + "*__pyx_n_s__shape": 1, + "*__pyx_n_s__shuffle": 1, + "*__pyx_n_s__sumloss": 1, + "*__pyx_n_s__sys": 1, + "*__pyx_n_s__t": 1, + "*__pyx_n_s__t_start": 1, + "*__pyx_n_s__threshold": 1, + "*__pyx_n_s__time": 1, + "*__pyx_n_s__u": 1, + "*__pyx_n_s__update": 1, + "*__pyx_n_s__verbose": 1, + "*__pyx_n_s__w": 1, + "*__pyx_n_s__weight_neg": 1, + "*__pyx_n_s__weight_pos": 1, + "*__pyx_n_s__weights": 1, + "*__pyx_n_s__x_data_ptr": 1, + "*__pyx_n_s__x_ind_ptr": 1, + "*__pyx_n_s__xnnz": 1, + "*__pyx_n_s__y": 1, + "*__pyx_n_s__zeros": 1, + "*__pyx_int_15": 1, + "*__pyx_k_tuple_5": 1, + "*__pyx_k_tuple_7": 1, + "*__pyx_k_tuple_9": 1, + "*__pyx_k_tuple_11": 1, + "*__pyx_k_tuple_14": 1, + "*__pyx_k_tuple_15": 1, + "*__pyx_k_tuple_17": 1, + "*__pyx_k_tuple_18": 1, + "*__pyx_k_codeobj_19": 1, + "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_1loss": 3, + "*__pyx_args": 9, + "*__pyx_kwds": 9, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, + "__pyx_skip_dispatch": 6, + "__pyx_r": 39, + "*__pyx_t_1": 6, + "*__pyx_t_2": 3, + "*__pyx_t_3": 3, + "*__pyx_t_4": 3, + "__pyx_t_5": 12, + "__pyx_v_self": 15, + "tp_dictoffset": 3, + "__pyx_t_1": 69, + "PyObject_GetAttr": 3, + "__pyx_n_s__loss": 2, + "__pyx_filename": 51, + "__pyx_f": 42, + "__pyx_L1_error": 33, + "PyCFunction_Check": 3, + "PyCFunction_GET_FUNCTION": 3, + "PyCFunction": 3, + "__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_1loss": 1, + "__pyx_t_2": 21, + "PyFloat_FromDouble": 9, + "__pyx_t_3": 39, + "__pyx_t_4": 27, + "PyTuple_New": 3, + "PyTuple_SET_ITEM": 6, + "PyObject_Call": 6, + "PyErr_Occurred": 9, + "__pyx_L0": 18, + "__pyx_builtin_NotImplementedError": 3, + "__pyx_empty_tuple": 3, + "__pyx_doc_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, + "*__pyx_r": 6, + "**__pyx_pyargnames": 3, + "__pyx_n_s__p": 6, + "__pyx_n_s__y": 6, + "values": 30, + "__pyx_kwds": 15, + "kw_args": 15, + "pos_args": 12, + "__pyx_args": 21, + "__pyx_L5_argtuple_error": 12, + "PyDict_Size": 3, + "PyDict_GetItem": 6, + "__pyx_L3_error": 18, + "__pyx_pyargnames": 3, + "__pyx_L4_argument_unpacking_done": 6, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, + "__pyx_vtab": 2, + "loss": 1, + "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_3dloss": 3, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_12LossFunction_dloss": 1, + "__pyx_n_s__dloss": 1, + "__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_3dloss": 1, + "__pyx_doc_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 1, + "dloss": 1, + "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_10Regression_1loss": 3, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 1, + "__pyx_pw_7sklearn_12linear_model_8sgd_fast_10Regression_1loss": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 1, + "__pyx_base.__pyx_vtab": 1, + "__pyx_base.loss": 1, + "": 1, + "": 2, + "local": 5, + "memory": 4, + "RF_OPTION_DEFAULT_ARGUMENTS": 24, + "RF_String*": 222, + "rfString_Create": 4, + "...": 127, + "i_rfString_Create": 3, + "READ_VSNPRINTF_ARGS": 5, + "rfUTF8_VerifySequence": 7, + "RF_FAILURE": 24, + "RE_STRING_INIT_FAILURE": 8, + "buffAllocated": 11, + "RF_String": 27, + "i_NVrfString_Create": 3, + "i_rfString_CreateLocal1": 3, + "RF_OPTION_SOURCE_ENCODING": 30, + "RF_UTF8": 8, + "characterLength": 16, + "*codepoints": 2, + "rfLMS_MacroEvalPtr": 2, + "RF_LMS": 6, + "RF_UTF16_LE": 9, + "RF_UTF16_BE": 7, + "codepoints": 44, + "i/2": 2, + "RF_UTF32_LE": 3, + "RF_UTF32_BE": 3, + "UTF16": 4, + "rfUTF16_Decode": 5, + "cleanup": 12, + "rfUTF16_Decode_swap": 5, + "RF_UTF16_BE//": 2, + "RF_UTF32_LE//": 2, + "copy": 4, + "UTF32": 4, + "into": 8, + "RF_UTF32_BE//": 2, + "": 2, + "endif": 6, + "any": 3, + "other": 16, + "UTF": 17, + "8": 15, + "encode": 2, + "and": 15, + "them": 3, + "rfUTF8_Encode": 4, + "0": 11, + "While": 2, + "attempting": 2, + "create": 2, + "temporary": 4, + "given": 5, + "sequence": 6, + "could": 2, + "not": 6, + "be": 6, + "properly": 2, + "encoded": 2, + "RE_UTF8_ENCODING": 2, + "End": 2, + "Non": 2, + "code=": 2, + "normally": 1, + "since": 5, + "here": 5, + "have": 2, + "validity": 2, + "get": 4, + "character": 11, + "Error": 2, + "at": 3, + "String": 11, + "Allocation": 2, + "due": 2, + "invalid": 2, + "rfLMS_Push": 4, + "Memory": 4, + "allocation": 3, + "Local": 2, + "Stack": 2, + "failed": 2, + "Insufficient": 2, + "space": 4, + "Consider": 2, + "compiling": 2, + "library": 3, + "with": 9, + "bigger": 3, + "Quitting": 2, + "proccess": 2, + "RE_LOCALMEMSTACK_INSUFFICIENT": 8, + "i_NVrfString_CreateLocal": 3, + "during": 1, + "string": 18, + "rfString_Init": 3, + "str": 162, + "i_rfString_Init": 3, + "i_NVrfString_Init": 3, + "rfString_Create_cp": 2, + "rfString_Init_cp": 3, + "RF_HEXLE_UI": 8, + "RF_HEXGE_UI": 6, + "ffff": 4, + "xFC0": 4, + "xF000": 2, + "xE": 2, + "F000": 2, + "C0000": 2, + "RE_UTF8_INVALID_CODE_POINT": 2, + "rfString_Create_i": 2, + "numLen": 8, + "max": 4, + "is": 17, + "most": 3, + "environment": 3, + "so": 4, + "chars": 3, + "will": 3, + "certainly": 3, + "fit": 3, + "it": 12, + "sprintf": 10, + "strcpy": 4, + "rfString_Init_i": 2, + "rfString_Create_f": 2, + "rfString_Init_f": 2, + "rfString_Create_UTF16": 2, + "rfString_Init_UTF16": 3, + "utf8ByteLength": 34, + "last": 1, + "utf": 1, + "null": 4, + "termination": 3, + "byteLength*2": 1, + "allocate": 1, + "same": 1, + "as": 4, + "different": 1, + "RE_INPUT": 1, + "ends": 3, + "rfString_Create_UTF32": 2, + "rfString_Init_UTF32": 3, + "off": 8, + "codeBuffer": 9, + "xFEFF": 1, + "big": 14, + "endian": 20, + "xFFFE0000": 1, + "little": 7, + "according": 1, + "standard": 1, + "no": 4, + "BOM": 1, + "means": 1, + "rfUTF32_Length": 1, + "i_rfString_Assign": 3, + "dest": 7, + "sourceP": 2, + "source": 8, + "RF_REALLOC": 9, + "rfString_Assign_char": 2, + "<5)>": 1, + "rfString_Create_nc": 3, + "i_rfString_Create_nc": 3, + "bytesWritten": 2, + "i_NVrfString_Create_nc": 3, + "rfString_Init_nc": 4, + "i_rfString_Init_nc": 3, + "i_NVrfString_Init_nc": 3, + "rfString_Destroy": 2, + "rfString_Deinit": 3, + "rfString_ToUTF16": 4, + "charsN": 5, + "rfUTF8_Decode": 2, + "rfUTF16_Encode": 1, + "rfString_ToUTF32": 4, + "rfString_Length": 5, + "RF_STRING_ITERATE_START": 9, + "RF_STRING_ITERATE_END": 9, + "rfString_GetChar": 2, + "thisstr": 210, + "codePoint": 18, + "RF_STRING_INDEX_OUT_OF_BOUNDS": 2, + "rfString_BytePosToCodePoint": 7, + "rfString_BytePosToCharPos": 4, + "thisstrP": 32, + "bytepos": 12, + "charPos": 8, + "byteI": 7, + "i_rfString_Equal": 3, + "s1P": 2, + "s2P": 2, + "i_rfString_Find": 5, + "sstrP": 6, + "optionsP": 11, + "sstr": 39, + "*optionsP": 8, + "RF_BITFLAG_ON": 5, + "RF_CASE_IGNORE": 2, + "strstr": 2, + "RF_MATCH_WORD": 5, + "": 1, + "0x5a": 1, + "match": 16, + "0x7a": 1, + "substring": 5, + "search": 1, + "zero": 2, + "equals": 1, + "then": 1, + "okay": 1, + "rfString_Equal": 4, + "RFS_": 8, + "ERANGE": 1, + "RE_STRING_TOFLOAT_UNDERFLOW": 1, + "RE_STRING_TOFLOAT": 1, + "rfString_Copy_OUT": 2, + "srcP": 6, + "src": 16, + "rfString_Copy_IN": 2, + "dst": 15, + "rfString_Copy_chars": 2, + "bytePos": 23, + "terminate": 1, + "i_rfString_ScanfAfter": 3, + "afterstrP": 2, + "format": 4, + "afterstr": 5, + "sscanf": 1, + "<=0)>": 1, + "Counts": 1, + "how": 1, + "many": 1, + "times": 1, + "occurs": 1, + "inside": 2, + "i_rfString_Count": 5, + "sstr2": 2, + "move": 12, + "rfString_FindBytePos": 10, + "i_DECLIMEX_": 121, + "rfString_Tokenize": 2, + "sep": 3, + "tokensN": 2, + "RF_String**": 2, + "tokens": 5, + "*tokensN": 1, + "rfString_Count": 4, + "lstr": 6, + "lstrP": 1, + "rstr": 24, + "rstrP": 5, + "temp": 11, + "start": 10, + "rfString_After": 4, + "result": 48, + "rfString_Beforev": 4, + "parNP": 6, + "i_rfString_Beforev": 16, + "parN": 10, + "*parNP": 2, + "minPos": 17, + "thisPos": 8, + "va_list": 3, + "argList": 8, + "va_start": 3, + "va_arg": 2, + "va_end": 3, + "i_rfString_Before": 5, + "i_rfString_After": 5, + "afterP": 2, + "after": 6, + "rfString_Afterv": 4, + "i_rfString_Afterv": 16, + "minPosLength": 3, + "go": 8, + "i_rfString_Append": 3, + "otherP": 4, + "strncat": 1, + "rfString_Append_i": 2, + "rfString_Append_f": 2, + "i_rfString_Prepend": 3, + "goes": 1, + "i_rfString_Remove": 6, + "numberP": 1, + "*numberP": 1, + "occurences": 5, + "done": 1, + "<=thisstr->": 1, + "i_rfString_KeepOnly": 3, + "keepstrP": 2, + "keepLength": 2, + "charValue": 12, + "*keepChars": 1, + "keepstr": 5, + "exists": 6, + "charBLength": 5, + "keepChars": 4, + "*keepLength": 1, + "rfString_Iterate_Start": 6, + "rfString_Iterate_End": 4, + "": 1, + "does": 1, + "exist": 2, + "back": 1, + "cover": 1, + "that": 9, + "effectively": 1, + "gets": 1, + "deleted": 1, + "rfUTF8_FromCodepoint": 1, + "this": 5, + "kind": 1, + "non": 1, + "clean": 1, + "way": 1, + "macro": 2, + "internally": 1, + "uses": 1, + "byteIndex_": 12, + "variable": 1, + "use": 1, + "determine": 1, + "current": 5, + "iteration": 6, + "backs": 1, + "memmove": 2, + "by": 1, + "contiuing": 1, + "make": 3, + "sure": 2, + "position": 1, + "won": 1, + "array": 1, + "rfString_PruneStart": 2, + "nBytePos": 23, + "rfString_PruneEnd": 2, + "RF_STRING_ITERATEB_START": 2, + "RF_STRING_ITERATEB_END": 2, + "rfString_PruneMiddleB": 2, + "pBytePos": 15, + "indexing": 1, + "works": 1, + "pbytePos": 2, + "pth": 2, + "include": 6, + "rfString_PruneMiddleF": 2, + "got": 1, + "all": 2, + "i_rfString_Replace": 6, + "numP": 1, + "*numP": 1, + "RF_StringX": 2, + "just": 1, + "finding": 1, + "foundN": 10, + "diff": 93, + "bSize": 4, + "bytePositions": 17, + "bSize*sizeof": 1, + "rfStringX_FromString_IN": 1, + "temp.bIndex": 2, + "temp.bytes": 1, + "temp.byteLength": 1, + "rfStringX_Deinit": 1, + "replace": 3, + "removed": 2, + "one": 2, + "orSize": 5, + "nSize": 4, + "number*diff": 1, + "strncpy": 3, + "smaller": 1, + "diff*number": 1, + "remove": 1, + "strings": 5, + "equal": 1, + "i_rfString_StripStart": 3, + "subP": 7, + "RF_String*sub": 2, + "noMatch": 8, + "*subValues": 2, + "subLength": 6, + "sub": 12, + "subValues": 8, + "*subLength": 2, + "i_rfString_StripEnd": 3, + "lastBytePos": 4, + "testity": 2, + "i_rfString_Strip": 3, + "res1": 2, + "rfString_StripStart": 3, + "res2": 2, + "rfString_StripEnd": 3, + "rfString_Create_fUTF8": 2, + "rfString_Init_fUTF8": 3, + "unused": 3, + "rfString_Assign_fUTF8": 2, + "FILE*f": 2, + "utf8BufferSize": 4, + "function": 6, + "rfString_Append_fUTF8": 2, + "rfString_Append": 5, + "rfString_Create_fUTF16": 2, + "rfString_Init_fUTF16": 3, + "rfFReadLine_UTF16LE": 4, + "rfFReadLine_UTF16BE": 6, + "rfString_Assign_fUTF16": 2, + "rfString_Append_fUTF16": 2, + "char*utf8": 3, + "rfString_Create_fUTF32": 2, + "rfString_Init_fUTF32": 3, + "rfFReadLine_UTF32LE": 4, + "<0)>": 1, + "Failure": 1, + "initialize": 1, + "reading": 1, + "Little": 1, + "Endian": 1, + "32": 1, + "bytesN=": 1, + "rfString_Assign_fUTF32": 2, + "rfString_Append_fUTF32": 2, + "i_rfString_Fwrite": 5, + "sP": 2, + "encodingP": 1, + "*utf32": 1, + "utf16": 11, + "*encodingP": 1, + "fwrite": 5, + "logging": 5, + "utf32": 10, + "i_WRITE_CHECK": 1, + "RE_FILE_WRITE": 1, + "syscalldef": 1, + "syscalldefs": 1, + "SYSCALL_OR_NUM": 3, + "SYS_restart_syscall": 1, + "MAKE_UINT16": 3, + "SYS_exit": 1, + "SYS_fork": 1, + "http_parser_h": 2, + "HTTP_PARSER_VERSION_MAJOR": 1, + "HTTP_PARSER_VERSION_MINOR": 1, + "": 2, + "__MINGW32__": 1, + "__int8": 2, + "int8_t": 3, + "__int16": 2, + "int16_t": 1, + "__int32": 2, + "__int64": 3, + "int64_t": 2, + "uint64_t": 8, + "ssize_t": 1, + "": 1, + "HTTP_PARSER_STRICT": 5, + "HTTP_PARSER_DEBUG": 4, + "HTTP_MAX_HEADER_SIZE": 2, + "*1024": 4, + "http_parser": 13, + "http_parser_settings": 5, + "HTTP_METHOD_MAP": 3, + "XX": 63, + "DELETE": 2, + "GET": 2, + "HEAD": 2, + "POST": 2, + "PUT": 2, + "CONNECT": 2, + "OPTIONS": 2, + "TRACE": 2, + "COPY": 2, + "LOCK": 2, + "MKCOL": 2, + "MOVE": 2, + "PROPFIND": 2, + "PROPPATCH": 2, + "SEARCH": 3, + "UNLOCK": 2, + "REPORT": 2, + "MKACTIVITY": 2, + "CHECKOUT": 2, + "MERGE": 2, + "MSEARCH": 1, + "M": 1, + "NOTIFY": 2, + "SUBSCRIBE": 2, + "UNSUBSCRIBE": 2, + "PATCH": 2, + "PURGE": 2, + "http_method": 4, + "HTTP_##name": 1, + "http_parser_type": 3, + "HTTP_REQUEST": 7, + "HTTP_RESPONSE": 3, + "HTTP_BOTH": 1, + "F_CHUNKED": 11, + "F_CONNECTION_KEEP_ALIVE": 3, + "F_CONNECTION_CLOSE": 3, + "F_TRAILING": 3, + "F_UPGRADE": 3, + "F_SKIPBODY": 4, + "HTTP_ERRNO_MAP": 3, + "OK": 1, + "CB_message_begin": 1, + "CB_url": 1, + "CB_header_field": 1, + "CB_header_value": 1, + "CB_headers_complete": 1, + "CB_body": 1, + "CB_message_complete": 1, + "INVALID_EOF_STATE": 1, + "HEADER_OVERFLOW": 1, + "CLOSED_CONNECTION": 1, + "INVALID_VERSION": 1, + "INVALID_STATUS": 1, + "INVALID_METHOD": 1, + "INVALID_URL": 1, + "INVALID_HOST": 1, + "INVALID_PORT": 1, + "INVALID_PATH": 1, + "INVALID_QUERY_STRING": 1, + "INVALID_FRAGMENT": 1, + "LF_EXPECTED": 1, + "INVALID_HEADER_TOKEN": 1, + "INVALID_CONTENT_LENGTH": 1, + "INVALID_CHUNK_SIZE": 1, + "INVALID_CONSTANT": 1, + "INVALID_INTERNAL_STATE": 1, + "STRICT": 1, + "PAUSED": 1, + "UNKNOWN": 1, + "HTTP_ERRNO_GEN": 3, + "HPE_##n": 1, + "http_errno": 11, + "HTTP_PARSER_ERRNO": 10, + "HTTP_PARSER_ERRNO_LINE": 2, + "error_lineno": 3, + "state": 104, + "header_state": 42, + "nread": 7, + "content_length": 27, + "http_major": 11, + "http_minor": 11, + "status_code": 8, + "method": 39, + "upgrade": 3, + "http_cb": 3, + "on_message_begin": 1, + "http_data_cb": 4, + "on_url": 1, + "on_header_field": 1, + "on_header_value": 1, + "on_headers_complete": 3, + "on_body": 1, + "on_message_complete": 1, + "http_parser_url_fields": 2, + "UF_SCHEMA": 2, + "UF_HOST": 3, + "UF_PORT": 5, + "UF_PATH": 2, + "UF_QUERY": 2, + "UF_FRAGMENT": 2, + "UF_MAX": 3, + "http_parser_url": 3, + "field_set": 5, + "port": 7, + "field_data": 5, + "http_parser_init": 2, + "*parser": 9, + "http_parser_execute": 2, + "*settings": 2, + "http_should_keep_alive": 2, + "*http_method_str": 1, + "*http_errno_name": 1, + "err": 38, + "*http_errno_description": 1, + "http_parser_parse_url": 2, + "buflen": 3, + "is_connect": 4, + "*u": 2, + "http_parser_pause": 2, + "paused": 3, + "": 2, + "ULLONG_MAX": 10, + "MIN": 3, + "SET_ERRNO": 47, + "e": 4, + "parser": 334, + "CALLBACK_NOTIFY_": 3, + "FOR": 11, + "ER": 4, + "HPE_OK": 10, + "settings": 6, + "on_##FOR": 4, + "HPE_CB_##FOR": 2, + "CALLBACK_NOTIFY": 10, + "CALLBACK_NOTIFY_NOADVANCE": 2, + "CALLBACK_DATA_": 4, + "LEN": 2, + "FOR##_mark": 7, + "CALLBACK_DATA": 10, + "CALLBACK_DATA_NOADVANCE": 6, + "MARK": 7, + "PROXY_CONNECTION": 4, + "CONNECTION": 4, + "CONTENT_LENGTH": 4, + "TRANSFER_ENCODING": 4, + "UPGRADE": 4, + "CHUNKED": 4, + "KEEP_ALIVE": 4, + "CLOSE": 4, + "*method_strings": 1, + "#string": 1, + "unhex": 3, + "normal_url_char": 3, + "T": 3, + "s_dead": 10, + "s_start_req_or_res": 4, + "s_res_or_resp_H": 3, + "s_start_res": 5, + "s_res_H": 3, + "s_res_HT": 4, + "s_res_HTT": 3, + "s_res_HTTP": 3, + "s_res_first_http_major": 3, + "s_res_http_major": 3, + "s_res_first_http_minor": 3, + "s_res_http_minor": 3, + "s_res_first_status_code": 3, + "s_res_status_code": 3, + "s_res_status": 3, + "s_res_line_almost_done": 4, + "s_start_req": 6, + "s_req_method": 4, + "s_req_spaces_before_url": 5, + "s_req_schema": 6, + "s_req_schema_slash": 6, + "s_req_schema_slash_slash": 6, + "s_req_host_start": 8, + "s_req_host_v6_start": 7, + "s_req_host_v6": 7, + "s_req_host_v6_end": 7, + "s_req_host": 8, + "s_req_port_start": 7, + "s_req_port": 6, + "s_req_path": 8, + "s_req_query_string_start": 8, + "s_req_query_string": 7, + "s_req_fragment_start": 7, + "s_req_fragment": 7, + "s_req_http_start": 3, + "s_req_http_H": 3, + "s_req_http_HT": 3, + "s_req_http_HTT": 3, + "s_req_http_HTTP": 3, + "s_req_first_http_major": 3, + "s_req_http_major": 3, + "s_req_first_http_minor": 3, + "s_req_http_minor": 3, + "s_req_line_almost_done": 4, + "s_header_field_start": 12, + "s_header_field": 4, + "s_header_value_start": 4, + "s_header_value": 5, + "s_header_value_lws": 3, + "s_header_almost_done": 6, + "s_chunk_size_start": 4, + "s_chunk_size": 3, + "s_chunk_parameters": 3, + "s_chunk_size_almost_done": 4, + "s_headers_almost_done": 4, + "s_headers_done": 4, + "s_chunk_data": 3, + "s_chunk_data_almost_done": 3, + "s_chunk_data_done": 3, + "s_body_identity": 3, + "s_body_identity_eof": 4, + "s_message_done": 3, + "PARSING_HEADER": 2, + "header_states": 1, + "h_general": 23, + "h_C": 3, + "h_CO": 3, + "h_CON": 3, + "h_matching_connection": 3, + "h_matching_proxy_connection": 3, + "h_matching_content_length": 3, + "h_matching_transfer_encoding": 3, + "h_matching_upgrade": 3, + "h_connection": 6, + "h_content_length": 5, + "h_transfer_encoding": 5, + "h_upgrade": 4, + "h_matching_transfer_encoding_chunked": 3, + "h_matching_connection_keep_alive": 3, + "h_matching_connection_close": 3, + "h_transfer_encoding_chunked": 4, + "h_connection_keep_alive": 4, + "h_connection_close": 4, + "Macros": 1, + "classes": 1, + "depends": 1, + "mode": 11, + "define": 14, + "CR": 18, + "LF": 21, + "LOWER": 7, + "0x20": 1, + "IS_ALPHA": 5, + "IS_NUM": 14, + "9": 1, + "IS_ALPHANUM": 3, + "IS_HEX": 2, + "TOKEN": 4, + "IS_URL_CHAR": 6, + "IS_HOST_CHAR": 4, + "0x80": 1, + "start_state": 1, + "cond": 1, + "HPE_STRICT": 1, + "HTTP_STRERROR_GEN": 3, + "#n": 1, + "*description": 1, + "http_strerror_tab": 7, + "http_message_needs_eof": 4, + "parse_url_char": 5, + "ch": 145, + "unhex_val": 7, + "*header_field_mark": 1, + "*header_value_mark": 1, + "*url_mark": 1, + "*body_mark": 1, + "message_complete": 7, + "HPE_INVALID_EOF_STATE": 1, + "header_field_mark": 2, + "header_value_mark": 2, + "url_mark": 2, + "HPE_HEADER_OVERFLOW": 1, + "reexecute_byte": 7, + "HPE_CLOSED_CONNECTION": 1, + "message_begin": 3, + "HPE_INVALID_CONSTANT": 3, + "HTTP_HEAD": 2, + "STRICT_CHECK": 15, + "HPE_INVALID_VERSION": 12, + "HPE_INVALID_STATUS": 3, + "HPE_INVALID_METHOD": 4, + "HTTP_CONNECT": 4, + "HTTP_DELETE": 1, + "HTTP_GET": 1, + "HTTP_LOCK": 1, + "HTTP_MKCOL": 2, + "HTTP_NOTIFY": 1, + "HTTP_OPTIONS": 1, + "HTTP_POST": 2, + "HTTP_REPORT": 1, + "HTTP_SUBSCRIBE": 2, + "HTTP_TRACE": 1, + "HTTP_UNLOCK": 2, + "*matcher": 1, + "matcher": 3, + "method_strings": 2, + "HTTP_CHECKOUT": 1, + "HTTP_COPY": 1, + "HTTP_MOVE": 1, + "HTTP_MERGE": 1, + "HTTP_MSEARCH": 1, + "HTTP_MKACTIVITY": 1, + "HTTP_SEARCH": 1, + "HTTP_PROPFIND": 2, + "HTTP_PUT": 2, + "HTTP_PATCH": 1, + "HTTP_PURGE": 1, + "HTTP_UNSUBSCRIBE": 1, + "HTTP_PROPPATCH": 1, + "url": 4, + "HPE_INVALID_URL": 4, + "HPE_LF_EXPECTED": 1, + "HPE_INVALID_HEADER_TOKEN": 2, + "header_field": 5, + "header_value": 6, + "HPE_INVALID_CONTENT_LENGTH": 4, + "NEW_MESSAGE": 6, + "HPE_CB_headers_complete": 1, + "to_read": 6, + "body": 6, + "body_mark": 2, + "HPE_INVALID_CHUNK_SIZE": 2, + "HPE_INVALID_INTERNAL_STATE": 1, + "1": 2, + "HPE_UNKNOWN": 1, + "Does": 1, + "see": 2, + "an": 2, + "find": 1, + "http_method_str": 1, + "memset": 4, + "http_errno_name": 1, + "/sizeof": 4, + ".name": 1, + "http_errno_description": 1, + ".description": 1, + "uf": 14, + "old_uf": 4, + ".off": 2, + "xffff": 1, + "HPE_PAUSED": 2, + "ATSHOME_LIBATS_DYNARRAY_CATS": 3, + "atslib_dynarray_memcpy": 1, + "atslib_dynarray_memmove": 1, + "ifndef": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "CONFIG_SMP": 1, + "DEFINE_MUTEX": 1, + "cpu_add_remove_lock": 3, + "cpu_maps_update_begin": 9, + "mutex_lock": 5, + "cpu_maps_update_done": 9, + "mutex_unlock": 6, + "RAW_NOTIFIER_HEAD": 1, + "cpu_chain": 4, + "cpu_hotplug_disabled": 7, + "CONFIG_HOTPLUG_CPU": 2, + "task_struct": 5, + "*active_writer": 1, + "mutex": 1, + "lock": 6, + "cpu_hotplug": 1, + ".active_writer": 1, + ".lock": 1, + "__MUTEX_INITIALIZER": 1, + "cpu_hotplug.lock": 8, + ".refcount": 1, + "get_online_cpus": 2, + "might_sleep": 1, + "cpu_hotplug.active_writer": 6, + "cpu_hotplug.refcount": 3, + "EXPORT_SYMBOL_GPL": 4, + "put_online_cpus": 2, + "wake_up_process": 1, + "cpu_hotplug_begin": 4, + "__set_current_state": 1, + "TASK_UNINTERRUPTIBLE": 1, + "schedule": 1, + "cpu_hotplug_done": 4, + "__ref": 6, + "register_cpu_notifier": 2, + "notifier_block": 3, + "*nb": 3, + "raw_notifier_chain_register": 1, + "nb": 2, + "__cpu_notify": 6, + "val": 20, + "*v": 3, + "nr_to_call": 2, + "*nr_calls": 1, + "__raw_notifier_call_chain": 1, + "nr_calls": 9, + "notifier_to_errno": 1, + "cpu_notify": 5, + "cpu_notify_nofail": 4, + "BUG_ON": 4, + "EXPORT_SYMBOL": 8, + "unregister_cpu_notifier": 2, + "raw_notifier_chain_unregister": 1, + "clear_tasks_mm_cpumask": 1, + "cpu": 57, + "WARN_ON": 1, + "cpu_online": 5, + "rcu_read_lock": 1, + "for_each_process": 2, + "find_lock_task_mm": 1, + "cpumask_clear_cpu": 5, + "mm_cpumask": 1, + "mm": 1, + "task_unlock": 1, + "rcu_read_unlock": 1, + "check_for_tasks": 2, + "write_lock_irq": 1, + "tasklist_lock": 2, + "task_cpu": 1, + "TASK_RUNNING": 1, + "utime": 1, + "stime": 1, + "printk": 12, + "KERN_WARNING": 3, + "comm": 1, + "task_pid_nr": 1, + "write_unlock_irq": 1, + "take_cpu_down_param": 3, + "mod": 13, + "*hcpu": 3, + "take_cpu_down": 2, + "*_param": 1, + "*param": 1, + "_param": 1, + "__cpu_disable": 1, + "CPU_DYING": 1, + "param": 2, + "hcpu": 10, + "_cpu_down": 3, + "tasks_frozen": 4, + "CPU_TASKS_FROZEN": 2, + "tcd_param": 2, + ".mod": 1, + ".hcpu": 1, + "num_online_cpus": 2, + "EBUSY": 3, + "CPU_DOWN_PREPARE": 1, + "CPU_DOWN_FAILED": 2, + "__func__": 2, + "out_release": 3, + "__stop_machine": 1, + "cpumask_of": 1, + "idle_cpu": 1, + "cpu_relax": 1, + "__cpu_die": 1, + "CPU_DEAD": 1, + "CPU_POST_DEAD": 1, + "cpu_down": 2, + "__cpuinit": 3, + "_cpu_up": 3, + "*idle": 1, + "cpu_present": 1, + "idle": 4, + "idle_thread_get": 1, + "IS_ERR": 1, + "PTR_ERR": 1, + "CPU_UP_PREPARE": 1, + "out_notify": 3, + "__cpu_up": 1, + "CPU_ONLINE": 1, + "CPU_UP_CANCELED": 1, + "cpu_up": 2, + "CONFIG_MEMORY_HOTPLUG": 2, + "nid": 5, + "pg_data_t": 1, + "*pgdat": 1, + "cpu_possible": 1, + "KERN_ERR": 5, + "CONFIG_IA64": 1, + "cpu_to_node": 1, + "node_online": 1, + "mem_online_node": 1, + "pgdat": 3, + "NODE_DATA": 1, + "node_zonelists": 1, + "_zonerefs": 1, + "zone": 1, + "zonelists_mutex": 2, + "build_all_zonelists": 1, + "CONFIG_PM_SLEEP_SMP": 2, + "cpumask_var_t": 1, + "frozen_cpus": 9, + "__weak": 4, + "arch_disable_nonboot_cpus_begin": 2, + "arch_disable_nonboot_cpus_end": 2, + "disable_nonboot_cpus": 1, + "first_cpu": 3, + "cpumask_first": 1, + "cpu_online_mask": 3, + "cpumask_clear": 2, + "for_each_online_cpu": 1, + "cpumask_set_cpu": 5, + "arch_enable_nonboot_cpus_begin": 2, + "arch_enable_nonboot_cpus_end": 2, + "enable_nonboot_cpus": 1, + "cpumask_empty": 1, + "KERN_INFO": 2, + "for_each_cpu": 1, + "__init": 2, + "alloc_frozen_cpus": 2, + "alloc_cpumask_var": 1, + "GFP_KERNEL": 1, + "__GFP_ZERO": 1, + "core_initcall": 2, + "cpu_hotplug_disable_before_freeze": 2, + "cpu_hotplug_enable_after_thaw": 2, + "cpu_hotplug_pm_callback": 2, + "action": 2, + "*ptr": 1, + "PM_SUSPEND_PREPARE": 1, + "PM_HIBERNATION_PREPARE": 1, + "PM_POST_SUSPEND": 1, + "PM_POST_HIBERNATION": 1, + "NOTIFY_DONE": 1, + "NOTIFY_OK": 1, + "cpu_hotplug_pm_sync_init": 2, + "pm_notifier": 1, + "notify_cpu_starting": 1, + "CPU_STARTING": 1, + "cpumask_test_cpu": 1, + "CPU_STARTING_FROZEN": 1, + "MASK_DECLARE_1": 3, + "UL": 1, + "MASK_DECLARE_2": 3, + "MASK_DECLARE_4": 3, + "MASK_DECLARE_8": 9, + "cpu_bit_bitmap": 2, + "BITS_PER_LONG": 2, + "BITS_TO_LONGS": 1, + "NR_CPUS": 2, + "DECLARE_BITMAP": 6, + "cpu_all_bits": 2, + "CPU_BITS_ALL": 2, + "CONFIG_INIT_ALL_POSSIBLE": 1, + "cpu_possible_bits": 6, + "CONFIG_NR_CPUS": 5, + "__read_mostly": 5, + "cpumask": 7, + "*const": 4, + "cpu_possible_mask": 2, + "to_cpumask": 15, + "cpu_online_bits": 5, + "cpu_present_bits": 5, + "cpu_present_mask": 2, + "cpu_active_bits": 4, + "cpu_active_mask": 2, + "set_cpu_possible": 1, + "bool": 6, + "possible": 2, + "set_cpu_present": 1, + "present": 2, + "set_cpu_online": 1, + "online": 2, + "set_cpu_active": 1, + "active": 2, + "init_cpu_present": 1, + "*src": 3, + "cpumask_copy": 3, + "init_cpu_possible": 1, + "init_cpu_online": 1, + "yajl_status_to_string": 1, + "yajl_status": 4, + "statStr": 6, + "yajl_status_ok": 1, + "yajl_status_client_canceled": 1, + "yajl_status_insufficient_data": 1, + "yajl_status_error": 1, + "yajl_handle": 10, + "yajl_alloc": 1, + "yajl_callbacks": 1, + "callbacks": 3, + "yajl_parser_config": 1, + "config": 4, + "yajl_alloc_funcs": 3, + "afs": 8, + "allowComments": 4, + "validateUTF8": 3, + "hand": 28, + "afsBuffer": 3, + "realloc": 1, + "yajl_set_default_alloc_funcs": 1, + "YA_MALLOC": 1, + "yajl_handle_t": 1, + "alloc": 6, + "checkUTF8": 1, + "lexer": 4, + "yajl_lex_alloc": 1, + "bytesConsumed": 2, + "decodeBuf": 2, + "yajl_buf_alloc": 1, + "yajl_bs_init": 1, + "stateStack": 3, + "yajl_bs_push": 1, + "yajl_state_start": 1, + "yajl_reset_parser": 1, + "yajl_lex_realloc": 1, + "yajl_free": 1, + "yajl_bs_free": 1, + "yajl_buf_free": 1, + "yajl_lex_free": 1, + "YA_FREE": 2, + "yajl_parse": 2, + "jsonText": 4, + "jsonTextLen": 4, + "yajl_do_parse": 1, + "yajl_parse_complete": 1, + "yajl_get_error": 1, + "verbose": 2, + "yajl_render_error_string": 1, + "yajl_get_bytes_consumed": 1, + "yajl_free_error": 1, + "REFU_USTRING_H": 2, + "": 1, + "RF_MODULE_STRINGS//": 1, + "module": 3, + "": 2, + "": 1, + "argument": 1, + "wrapping": 1, + "functionality": 1, + "": 1, + "unicode": 2, + "opening": 2, + "bracket": 4, + "calling": 4, + "xFF0FFFF": 1, + "rfUTF8_IsContinuationByte2": 1, + "b__": 3, + "0xBF": 1, + "pragma": 1, + "pack": 2, + "push": 1, + "internal": 4, + "author": 1, + "Lefteris": 1, + "09": 1, + "12": 1, + "2010": 1, + "endinternal": 1, + "brief": 1, + "representation": 2, + "The": 1, + "Refu": 2, + "Unicode": 1, + "has": 2, + "two": 1, + "versions": 1, + "One": 1, + "ref": 1, + "what": 1, + "operations": 1, + "can": 2, + "performed": 1, + "extended": 3, + "Strings": 2, + "Functions": 1, + "convert": 1, + "but": 1, + "always": 2, + "Once": 1, + "been": 1, + "created": 1, + "assumed": 1, + "valid": 1, + "every": 1, + "performs": 1, + "unless": 1, + "otherwise": 1, + "specified": 1, + "All": 1, + "functions": 2, + "which": 1, + "isinherited": 1, + "StringX": 2, + "their": 1, + "description": 1, + "used": 10, + "safely": 1, + "specific": 1, + "or": 1, + "needs": 1, + "manipulate": 1, + "Extended": 1, + "To": 1, + "documentation": 1, + "even": 1, + "clearer": 1, + "should": 2, + "marked": 1, + "notinherited": 1, + "cppcode": 1, + "constructor": 1, + "i_StringCHandle": 1, + "**": 6, + "@endcpp": 1, + "@endinternal": 1, + "*/": 1, + "#pragma": 1, + "pop": 1, + "RF_IAMHERE_FOR_DOXYGEN": 22, + "i_rfString_CreateLocal": 2, + "__VA_ARGS__": 66, + "RP_SELECT_FUNC_IF_NARGIS": 5, + "i_SELECT_RF_STRING_CREATE": 1, + "i_SELECT_RF_STRING_CREATE1": 1, + "i_SELECT_RF_STRING_CREATE0": 1, + "///Internal": 1, + "creates": 1, + "i_SELECT_RF_STRING_CREATELOCAL": 1, + "i_SELECT_RF_STRING_CREATELOCAL1": 1, + "i_SELECT_RF_STRING_CREATELOCAL0": 1, + "i_SELECT_RF_STRING_INIT": 1, + "i_SELECT_RF_STRING_INIT1": 1, + "i_SELECT_RF_STRING_INIT0": 1, + "i_SELECT_RF_STRING_CREATE_NC": 1, + "i_SELECT_RF_STRING_CREATE_NC1": 1, + "i_SELECT_RF_STRING_CREATE_NC0": 1, + "i_SELECT_RF_STRING_INIT_NC": 1, + "i_SELECT_RF_STRING_INIT_NC1": 1, + "i_SELECT_RF_STRING_INIT_NC0": 1, + "//@": 1, + "rfString_Assign": 2, + "i_DESTINATION_": 2, + "i_SOURCE_": 2, + "i_rfLMS_WRAP2": 5, + "rfString_ToUTF8": 2, + "i_STRING_": 2, + "rfString_ToCstr": 2, + "uint32_t*length": 1, + "string_": 9, + "startCharacterPos_": 4, + "characterUnicodeValue_": 4, + "j_": 6, + "//Two": 1, + "macros": 1, + "accomplish": 1, + "going": 1, + "backwards.": 1, + "This": 1, + "its": 1, + "pair.": 1, + "rfString_IterateB_Start": 1, + "characterPos_": 5, + "b_index_": 6, + "c_index_": 3, + "rfString_IterateB_End": 1, + "i_STRING1_": 2, + "i_STRING2_": 2, + "i_rfLMSX_WRAP2": 4, + "rfString_Find": 3, + "i_THISSTR_": 60, + "i_SEARCHSTR_": 26, + "i_OPTIONS_": 28, + "i_rfLMS_WRAP3": 4, + "i_RFI8_": 54, + "RF_SELECT_FUNC_IF_NARGGT": 10, + "i_NPSELECT_RF_STRING_FIND": 1, + "i_NPSELECT_RF_STRING_FIND1": 1, + "RF_COMPILE_ERROR": 33, + "i_NPSELECT_RF_STRING_FIND0": 1, + "RF_SELECT_FUNC": 10, + "i_SELECT_RF_STRING_FIND": 1, + "i_SELECT_RF_STRING_FIND2": 1, + "i_SELECT_RF_STRING_FIND3": 1, + "i_SELECT_RF_STRING_FIND1": 1, + "i_SELECT_RF_STRING_FIND0": 1, + "rfString_ToInt": 1, + "int32_t*": 1, + "rfString_ToDouble": 1, + "double*": 1, + "rfString_ScanfAfter": 2, + "i_AFTERSTR_": 8, + "i_FORMAT_": 2, + "i_VAR_": 2, + "i_rfLMSX_WRAP4": 11, + "i_NPSELECT_RF_STRING_COUNT": 1, + "i_NPSELECT_RF_STRING_COUNT1": 1, + "i_NPSELECT_RF_STRING_COUNT0": 1, + "i_SELECT_RF_STRING_COUNT": 1, + "i_SELECT_RF_STRING_COUNT2": 1, + "i_rfLMSX_WRAP3": 5, + "i_SELECT_RF_STRING_COUNT3": 1, + "i_SELECT_RF_STRING_COUNT1": 1, + "i_SELECT_RF_STRING_COUNT0": 1, + "rfString_Between": 3, + "i_rfString_Between": 4, + "i_NPSELECT_RF_STRING_BETWEEN": 1, + "i_NPSELECT_RF_STRING_BETWEEN1": 1, + "i_NPSELECT_RF_STRING_BETWEEN0": 1, + "i_SELECT_RF_STRING_BETWEEN": 1, + "i_SELECT_RF_STRING_BETWEEN4": 1, + "i_LEFTSTR_": 6, + "i_RIGHTSTR_": 6, + "i_RESULT_": 12, + "i_rfLMSX_WRAP5": 9, + "i_SELECT_RF_STRING_BETWEEN5": 1, + "i_SELECT_RF_STRING_BETWEEN3": 1, + "i_SELECT_RF_STRING_BETWEEN2": 1, + "i_SELECT_RF_STRING_BETWEEN1": 1, + "i_SELECT_RF_STRING_BETWEEN0": 1, + "i_NPSELECT_RF_STRING_BEFOREV": 1, + "i_NPSELECT_RF_STRING_BEFOREV1": 1, + "RF_SELECT_FUNC_IF_NARGGT2": 2, + "i_LIMSELECT_RF_STRING_BEFOREV": 1, + "i_NPSELECT_RF_STRING_BEFOREV0": 1, + "i_LIMSELECT_RF_STRING_BEFOREV1": 1, + "i_LIMSELECT_RF_STRING_BEFOREV0": 1, + "i_SELECT_RF_STRING_BEFOREV": 1, + "i_SELECT_RF_STRING_BEFOREV5": 1, + "i_ARG1_": 56, + "i_ARG2_": 56, + "i_ARG3_": 56, + "i_ARG4_": 56, + "i_RFUI8_": 28, + "i_SELECT_RF_STRING_BEFOREV6": 1, + "i_rfLMSX_WRAP6": 2, + "i_SELECT_RF_STRING_BEFOREV7": 1, + "i_rfLMSX_WRAP7": 2, + "i_SELECT_RF_STRING_BEFOREV8": 1, + "i_rfLMSX_WRAP8": 2, + "i_SELECT_RF_STRING_BEFOREV9": 1, + "i_rfLMSX_WRAP9": 2, + "i_SELECT_RF_STRING_BEFOREV10": 1, + "i_rfLMSX_WRAP10": 2, + "i_SELECT_RF_STRING_BEFOREV11": 1, + "i_rfLMSX_WRAP11": 2, + "i_SELECT_RF_STRING_BEFOREV12": 1, + "i_rfLMSX_WRAP12": 2, + "i_SELECT_RF_STRING_BEFOREV13": 1, + "i_rfLMSX_WRAP13": 2, + "i_SELECT_RF_STRING_BEFOREV14": 1, + "i_rfLMSX_WRAP14": 2, + "i_SELECT_RF_STRING_BEFOREV15": 1, + "i_rfLMSX_WRAP15": 2, + "i_SELECT_RF_STRING_BEFOREV16": 1, + "i_rfLMSX_WRAP16": 2, + "i_SELECT_RF_STRING_BEFOREV17": 1, + "i_rfLMSX_WRAP17": 2, + "i_SELECT_RF_STRING_BEFOREV18": 1, + "i_rfLMSX_WRAP18": 2, + "rfString_Before": 3, + "i_NPSELECT_RF_STRING_BEFORE": 1, + "i_NPSELECT_RF_STRING_BEFORE1": 1, + "i_NPSELECT_RF_STRING_BEFORE0": 1, + "i_SELECT_RF_STRING_BEFORE": 1, + "i_SELECT_RF_STRING_BEFORE3": 1, + "i_SELECT_RF_STRING_BEFORE4": 1, + "i_SELECT_RF_STRING_BEFORE2": 1, + "i_SELECT_RF_STRING_BEFORE1": 1, + "i_SELECT_RF_STRING_BEFORE0": 1, + "i_NPSELECT_RF_STRING_AFTER": 1, + "i_NPSELECT_RF_STRING_AFTER1": 1, + "i_NPSELECT_RF_STRING_AFTER0": 1, + "i_SELECT_RF_STRING_AFTER": 1, + "i_SELECT_RF_STRING_AFTER3": 1, + "i_OUTSTR_": 6, + "i_SELECT_RF_STRING_AFTER4": 1, + "i_SELECT_RF_STRING_AFTER2": 1, + "i_SELECT_RF_STRING_AFTER1": 1, + "i_SELECT_RF_STRING_AFTER0": 1, + "i_NPSELECT_RF_STRING_AFTERV": 1, + "i_NPSELECT_RF_STRING_AFTERV1": 1, + "i_LIMSELECT_RF_STRING_AFTERV": 1, + "i_NPSELECT_RF_STRING_AFTERV0": 1, + "i_LIMSELECT_RF_STRING_AFTERV1": 1, + "i_LIMSELECT_RF_STRING_AFTERV0": 1, + "i_SELECT_RF_STRING_AFTERV": 1, + "i_SELECT_RF_STRING_AFTERV5": 1, + "i_SELECT_RF_STRING_AFTERV6": 1, + "i_SELECT_RF_STRING_AFTERV7": 1, + "i_SELECT_RF_STRING_AFTERV8": 1, + "i_SELECT_RF_STRING_AFTERV9": 1, + "i_SELECT_RF_STRING_AFTERV10": 1, + "i_SELECT_RF_STRING_AFTERV11": 1, + "i_SELECT_RF_STRING_AFTERV12": 1, + "i_SELECT_RF_STRING_AFTERV13": 1, + "i_SELECT_RF_STRING_AFTERV14": 1, + "i_SELECT_RF_STRING_AFTERV15": 1, + "i_SELECT_RF_STRING_AFTERV16": 1, + "i_SELECT_RF_STRING_AFTERV17": 1, + "i_SELECT_RF_STRING_AFTERV18": 1, + "i_OTHERSTR_": 4, + "rfString_Prepend": 2, + "rfString_Remove": 3, + "i_NPSELECT_RF_STRING_REMOVE": 1, + "i_NPSELECT_RF_STRING_REMOVE1": 1, + "i_NPSELECT_RF_STRING_REMOVE0": 1, + "i_SELECT_RF_STRING_REMOVE": 1, + "i_SELECT_RF_STRING_REMOVE2": 1, + "i_REPSTR_": 16, + "i_RFUI32_": 8, + "i_SELECT_RF_STRING_REMOVE3": 1, + "i_NUMBER_": 12, + "i_SELECT_RF_STRING_REMOVE4": 1, + "i_SELECT_RF_STRING_REMOVE1": 1, + "i_SELECT_RF_STRING_REMOVE0": 1, + "rfString_KeepOnly": 2, + "I_KEEPSTR_": 2, + "rfString_Replace": 3, + "i_NPSELECT_RF_STRING_REPLACE": 1, + "i_NPSELECT_RF_STRING_REPLACE1": 1, + "i_NPSELECT_RF_STRING_REPLACE0": 1, + "i_SELECT_RF_STRING_REPLACE": 1, + "i_SELECT_RF_STRING_REPLACE3": 1, + "i_SELECT_RF_STRING_REPLACE4": 1, + "i_SELECT_RF_STRING_REPLACE5": 1, + "i_SELECT_RF_STRING_REPLACE2": 1, + "i_SELECT_RF_STRING_REPLACE1": 1, + "i_SELECT_RF_STRING_REPLACE0": 1, + "i_SUBSTR_": 6, + "rfString_Strip": 2, + "rfString_Fwrite": 2, + "i_NPSELECT_RF_STRING_FWRITE": 1, + "i_NPSELECT_RF_STRING_FWRITE1": 1, + "i_NPSELECT_RF_STRING_FWRITE0": 1, + "i_SELECT_RF_STRING_FWRITE": 1, + "i_SELECT_RF_STRING_FWRITE3": 1, + "i_STR_": 8, + "i_FILE_": 16, + "i_ENCODING_": 4, + "i_SELECT_RF_STRING_FWRITE2": 1, + "i_SELECT_RF_STRING_FWRITE1": 1, + "i_SELECT_RF_STRING_FWRITE0": 1, + "rfString_Fwrite_fUTF8": 1, + "closing": 1, + "Attempted": 1, + "manipulation": 1, + "flag": 1, + "off.": 1, + "Rebuild": 1, + "added": 1, + "you": 1, + "#endif//": 1, + "guards": 2, + "READLINE_READLINE_CATS": 3, + "": 1, + "atscntrb_readline_rl_library_version": 1, + "rl_library_version": 1, + "atscntrb_readline_rl_readline_version": 1, + "rl_readline_version": 1, + "atscntrb_readline_readline": 1, + "readline": 1, + "REFU_IO_H": 2, + "xA": 1, + "RF_CR": 1, + "xD": 1, + "REFU_WIN32_VERSION": 1, + "i_PLUSB_WIN32": 2, + "foff_rft": 2, + "off64_t": 1, + "///Fseek": 1, + "Ftelll": 1, + "definitions": 1, + "rfFseek": 2, + "i_OFFSET_": 4, + "i_WHENCE_": 4, + "_fseeki64": 1, + "rfFtell": 2, + "_ftelli64": 1, + "fseeko64": 1, + "ftello64": 1, + "rfFReadLine_UTF32BE": 1, + "rfFgets_UTF32BE": 1, + "rfPopen": 2, + "command": 2, + "i_rfPopen": 2, + "i_CMD_": 2, + "i_MODE_": 2, + "rfPclose": 1, + "///closing": 1, + "#endif//include": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 2, + "": 1, + "": 1, + "": 1, + "sharedObjectsStruct": 1, + "shared": 1, + "R_Zero": 2, + "R_PosInf": 2, + "R_NegInf": 2, + "R_Nan": 2, + "redisServer": 1, + "server": 1, + "redisCommand": 6, + "*commandTable": 1, + "redisCommandTable": 5, + "getCommand": 1, + "setCommand": 1, + "noPreloadGetKeys": 6, + "setnxCommand": 1, + "setexCommand": 1, + "psetexCommand": 1, + "appendCommand": 1, + "strlenCommand": 1, + "delCommand": 1, + "existsCommand": 1, + "setbitCommand": 1, + "getbitCommand": 1, + "setrangeCommand": 1, + "getrangeCommand": 2, + "incrCommand": 1, + "decrCommand": 1, + "mgetCommand": 1, + "rpushCommand": 1, + "lpushCommand": 1, + "rpushxCommand": 1, + "lpushxCommand": 1, + "linsertCommand": 1, + "rpopCommand": 1, + "lpopCommand": 1, + "brpopCommand": 1, + "brpoplpushCommand": 1, + "blpopCommand": 1, + "llenCommand": 1, + "lindexCommand": 1, + "lsetCommand": 1, + "lrangeCommand": 1, + "ltrimCommand": 1, + "lremCommand": 1, + "rpoplpushCommand": 1, + "saddCommand": 1, + "sremCommand": 1, + "smoveCommand": 1, + "sismemberCommand": 1, + "scardCommand": 1, + "spopCommand": 1, + "srandmemberCommand": 1, + "sinterCommand": 2, + "sinterstoreCommand": 1, + "sunionCommand": 1, + "sunionstoreCommand": 1, + "sdiffCommand": 1, + "sdiffstoreCommand": 1, + "zaddCommand": 1, + "zincrbyCommand": 1, + "zremCommand": 1, + "zremrangebyscoreCommand": 1, + "zremrangebyrankCommand": 1, + "zunionstoreCommand": 1, + "zunionInterGetKeys": 4, + "zinterstoreCommand": 1, + "zrangeCommand": 1, + "zrangebyscoreCommand": 1, + "zrevrangebyscoreCommand": 1, + "zcountCommand": 1, + "zrevrangeCommand": 1, + "zcardCommand": 1, + "zscoreCommand": 1, + "zrankCommand": 1, + "zrevrankCommand": 1, + "hsetCommand": 1, + "hsetnxCommand": 1, + "hgetCommand": 1, + "hmsetCommand": 1, + "hmgetCommand": 1, + "hincrbyCommand": 1, + "hincrbyfloatCommand": 1, + "hdelCommand": 1, + "hlenCommand": 1, + "hkeysCommand": 1, + "hvalsCommand": 1, + "hgetallCommand": 1, + "hexistsCommand": 1, + "incrbyCommand": 1, + "decrbyCommand": 1, + "incrbyfloatCommand": 1, + "getsetCommand": 1, + "msetCommand": 1, + "msetnxCommand": 1, + "randomkeyCommand": 1, + "selectCommand": 1, + "moveCommand": 1, + "renameCommand": 1, + "renameGetKeys": 2, + "renamenxCommand": 1, + "expireCommand": 1, + "expireatCommand": 1, + "pexpireCommand": 1, + "pexpireatCommand": 1, + "keysCommand": 1, + "dbsizeCommand": 1, + "authCommand": 3, + "pingCommand": 2, + "echoCommand": 2, + "saveCommand": 1, + "bgsaveCommand": 1, + "bgrewriteaofCommand": 1, + "shutdownCommand": 2, + "lastsaveCommand": 1, + "typeCommand": 1, + "multiCommand": 2, + "execCommand": 2, + "discardCommand": 2, + "syncCommand": 1, + "flushdbCommand": 1, + "flushallCommand": 1, + "sortCommand": 1, + "infoCommand": 4, + "monitorCommand": 2, + "ttlCommand": 1, + "pttlCommand": 1, + "persistCommand": 1, + "slaveofCommand": 2, + "debugCommand": 1, + "configCommand": 1, + "subscribeCommand": 2, + "unsubscribeCommand": 2, + "psubscribeCommand": 2, + "punsubscribeCommand": 2, + "publishCommand": 1, + "watchCommand": 2, + "unwatchCommand": 1, + "clusterCommand": 1, + "restoreCommand": 1, + "migrateCommand": 1, + "askingCommand": 1, + "dumpCommand": 1, + "objectCommand": 1, + "clientCommand": 1, + "evalCommand": 1, + "evalShaCommand": 1, + "slowlogCommand": 1, + "scriptCommand": 2, + "timeCommand": 2, + "bitopCommand": 1, + "bitcountCommand": 1, + "redisLogRaw": 3, + "*msg": 7, + "syslogLevelMap": 2, + "LOG_DEBUG": 1, + "LOG_INFO": 1, + "LOG_NOTICE": 1, + "LOG_WARNING": 1, + "FILE": 3, + "*fp": 3, + "rawmode": 2, + "REDIS_LOG_RAW": 2, + "xff": 3, + "server.verbosity": 4, + "fp": 13, + "server.logfile": 8, + "fopen": 3, + "msg": 10, + "timeval": 4, + "tv": 8, + "gettimeofday": 4, + "strftime": 1, + "localtime": 1, + "tv.tv_sec": 4, + "snprintf": 2, + "tv.tv_usec/1000": 1, + "getpid": 7, + "server.syslog_enabled": 3, + "syslog": 1, + "redisLog": 33, + "*fmt": 2, + "ap": 4, + "REDIS_MAX_LOGMSG_LEN": 1, + "fmt": 4, + "vsnprintf": 1, + "redisLogFromHandler": 2, + "server.daemonize": 5, + "O_APPEND": 2, + "O_CREAT": 2, + "O_WRONLY": 2, + "STDOUT_FILENO": 2, + "ll2string": 3, + "write": 7, + "time": 10, + "oom": 3, + "REDIS_WARNING": 19, + "sleep": 1, + "abort": 1, + "ustime": 7, + "*1000000": 1, + "tv.tv_usec": 3, + "mstime": 5, + "/1000": 1, + "exitFromChild": 1, + "retcode": 3, + "COVERAGE_TEST": 1, + "dictVanillaFree": 1, + "*privdata": 8, + "*val": 6, + "DICT_NOTUSED": 6, + "privdata": 8, + "zfree": 2, + "dictListDestructor": 2, + "listRelease": 1, + "list*": 1, + "dictSdsKeyCompare": 6, + "*key1": 4, + "*key2": 4, + "l1": 4, + "l2": 3, + "sdslen": 14, + "sds": 13, + "key1": 5, + "key2": 5, + "dictSdsKeyCaseCompare": 2, + "strcasecmp": 13, + "dictRedisObjectDestructor": 7, + "decrRefCount": 6, + "dictSdsDestructor": 4, + "sdsfree": 2, + "dictObjKeyCompare": 2, + "robj": 7, + "*o1": 2, + "*o2": 2, + "o1": 7, + "ptr": 18, + "o2": 7, + "dictObjHash": 2, + "*key": 5, + "key": 9, + "dictGenHashFunction": 5, + "dictSdsHash": 4, + "dictSdsCaseHash": 2, + "dictGenCaseHashFunction": 1, + "dictEncObjKeyCompare": 4, + "robj*": 3, + "REDIS_ENCODING_INT": 4, + "getDecodedObject": 3, + "dictEncObjHash": 4, + "REDIS_ENCODING_RAW": 1, + "hash": 12, + "dictType": 8, + "setDictType": 1, + "zsetDictType": 1, + "dbDictType": 2, + "keyptrDictType": 2, + "commandTableDictType": 2, + "hashDictType": 1, + "keylistDictType": 4, + "clusterNodesDictType": 1, + "htNeedsResize": 3, + "dict": 11, + "dictSlots": 3, + "dictSize": 10, + "DICT_HT_INITIAL_SIZE": 2, + "used*100/size": 1, + "REDIS_HT_MINFILL": 1, + "tryResizeHashTables": 2, + "server.dbnum": 8, + "server.db": 23, + ".dict": 9, + "dictResize": 2, + ".expires": 8, + "incrementallyRehash": 2, + "dictIsRehashing": 2, + "dictRehashMilliseconds": 2, + "updateDictResizePolicy": 2, + "server.rdb_child_pid": 12, + "server.aof_child_pid": 10, + "dictEnableResize": 1, + "dictDisableResize": 1, + "activeExpireCycle": 2, + "timelimit": 5, + "*REDIS_EXPIRELOOKUPS_TIME_PERC/REDIS_HZ/100": 1, + "expired": 4, + "redisDb": 3, + "*db": 3, + "db": 10, + "expires": 3, + "slots": 2, + "now": 5, + "num*100/slots": 1, + "REDIS_EXPIRELOOKUPS_PER_CRON": 2, + "dictEntry": 2, + "*de": 2, + "de": 12, + "dictGetRandomKey": 4, + "dictGetSignedIntegerVal": 1, + "dictGetKey": 4, + "*keyobj": 2, + "createStringObject": 11, + "propagateExpire": 2, + "keyobj": 6, + "dbDelete": 2, + "server.stat_expiredkeys": 3, + "xf": 1, + "REDIS_EXPIRELOOKUPS_PER_CRON/4": 1, + "updateLRUClock": 3, + "server.lruclock": 2, + "server.unixtime/REDIS_LRU_CLOCK_RESOLUTION": 1, + "REDIS_LRU_CLOCK_MAX": 1, + "trackOperationsPerSecond": 2, + "server.ops_sec_last_sample_time": 3, + "ops": 1, + "server.stat_numcommands": 4, + "server.ops_sec_last_sample_ops": 3, + "ops_sec": 3, + "ops*1000/t": 1, + "server.ops_sec_samples": 4, + "server.ops_sec_idx": 4, + "%": 2, + "REDIS_OPS_SEC_SAMPLES": 3, + "getOperationsPerSecond": 2, + "sum": 3, + "clientsCronHandleTimeout": 2, + "redisClient": 12, + "time_t": 4, + "server.unixtime": 10, + "server.maxidletime": 3, + "REDIS_SLAVE": 3, + "REDIS_MASTER": 2, + "REDIS_BLOCKED": 2, + "pubsub_channels": 2, + "listLength": 14, + "pubsub_patterns": 2, + "lastinteraction": 3, + "REDIS_VERBOSE": 3, + "freeClient": 1, + "bpop.timeout": 2, + "addReply": 13, + "shared.nullmultibulk": 2, + "unblockClientWaitingData": 1, + "clientsCronResizeQueryBuffer": 2, + "querybuf_size": 3, + "sdsAllocSize": 1, + "querybuf": 6, + "idletime": 2, + "REDIS_MBULK_BIG_ARG": 1, + "querybuf_size/": 1, + "querybuf_peak": 2, + "sdsavail": 1, + "sdsRemoveFreeSpace": 1, + "clientsCron": 2, + "numclients": 3, + "server.clients": 7, + "iterations": 4, + "numclients/": 1, + "REDIS_HZ*10": 1, + "listNode": 4, + "*head": 1, + "listRotate": 1, + "listFirst": 2, + "listNodeValue": 3, + "run_with_period": 6, + "_ms_": 2, + "loops": 2, + "/REDIS_HZ": 2, + "serverCron": 2, + "aeEventLoop": 2, + "*eventLoop": 2, + "*clientData": 1, + "server.cronloops": 3, + "REDIS_NOTUSED": 5, + "eventLoop": 2, + "clientData": 1, + "server.watchdog_period": 3, + "watchdogScheduleSignal": 1, + "zmalloc_used_memory": 8, + "server.stat_peak_memory": 5, + "server.shutdown_asap": 3, + "prepareForShutdown": 2, + "REDIS_OK": 23, + "vkeys": 8, + "server.activerehashing": 2, + "server.slaves": 9, + "server.aof_rewrite_scheduled": 4, + "rewriteAppendOnlyFileBackground": 2, + "statloc": 5, + "wait3": 1, + "WNOHANG": 1, + "exitcode": 3, + "bysignal": 4, + "backgroundSaveDoneHandler": 1, + "backgroundRewriteDoneHandler": 1, + "server.saveparamslen": 3, + "saveparam": 1, + "*sp": 1, + "server.saveparams": 2, + "server.dirty": 3, + "sp": 4, + "changes": 2, + "server.lastsave": 3, + "seconds": 2, + "REDIS_NOTICE": 13, + "rdbSaveBackground": 1, + "server.rdb_filename": 4, + "server.aof_rewrite_perc": 3, + "server.aof_current_size": 2, + "server.aof_rewrite_min_size": 2, + "base": 1, + "server.aof_rewrite_base_size": 4, + "growth": 3, + "server.aof_current_size*100/base": 1, + "server.aof_flush_postponed_start": 2, + "flushAppendOnlyFile": 2, + "server.masterhost": 7, + "freeClientsInAsyncFreeQueue": 1, + "replicationCron": 1, + "server.cluster_enabled": 6, + "clusterCron": 1, + "beforeSleep": 2, + "*ln": 3, + "server.unblocked_clients": 4, + "ln": 8, + "redisAssert": 1, + "listDelNode": 1, + "REDIS_UNBLOCKED": 1, + "server.current_client": 3, + "processInputBuffer": 1, + "createSharedObjects": 2, + "shared.crlf": 2, + "createObject": 31, + "REDIS_STRING": 31, + "sdsnew": 27, + "shared.ok": 3, + "shared.err": 1, + "shared.emptybulk": 1, + "shared.czero": 1, + "shared.cone": 1, + "shared.cnegone": 1, + "shared.nullbulk": 1, + "shared.emptymultibulk": 1, + "shared.pong": 2, + "shared.queued": 2, + "shared.wrongtypeerr": 1, + "shared.nokeyerr": 1, + "shared.syntaxerr": 2, + "shared.sameobjecterr": 1, + "shared.outofrangeerr": 1, + "shared.noscripterr": 1, + "shared.loadingerr": 2, + "shared.slowscripterr": 2, + "shared.masterdownerr": 2, + "shared.bgsaveerr": 2, + "shared.roslaveerr": 2, + "shared.oomerr": 2, + "shared.space": 1, + "shared.colon": 1, + "shared.plus": 1, + "REDIS_SHARED_SELECT_CMDS": 1, + "shared.select": 1, + "sdscatprintf": 24, + "sdsempty": 8, + "shared.messagebulk": 1, + "shared.pmessagebulk": 1, + "shared.subscribebulk": 1, + "shared.unsubscribebulk": 1, + "shared.psubscribebulk": 1, + "shared.punsubscribebulk": 1, + "shared.del": 1, + "shared.rpop": 1, + "shared.lpop": 1, + "REDIS_SHARED_INTEGERS": 1, + "shared.integers": 2, + "REDIS_SHARED_BULKHDR_LEN": 1, + "shared.mbulkhdr": 1, + "shared.bulkhdr": 1, + "initServerConfig": 2, + "getRandomHexChars": 1, + "server.runid": 3, + "REDIS_RUN_ID_SIZE": 2, + "server.arch_bits": 3, + "server.port": 7, + "REDIS_SERVERPORT": 1, + "server.bindaddr": 2, + "server.unixsocket": 7, + "server.unixsocketperm": 2, + "server.ipfd": 9, + "server.sofd": 9, + "REDIS_DEFAULT_DBNUM": 1, + "REDIS_MAXIDLETIME": 1, + "server.client_max_querybuf_len": 1, + "REDIS_MAX_QUERYBUF_LEN": 1, + "server.loading": 4, + "server.syslog_ident": 2, + "zstrdup": 5, + "server.syslog_facility": 2, + "LOG_LOCAL0": 1, + "server.aof_state": 7, + "REDIS_AOF_OFF": 5, + "server.aof_fsync": 1, + "AOF_FSYNC_EVERYSEC": 1, + "server.aof_no_fsync_on_rewrite": 1, + "REDIS_AOF_REWRITE_PERC": 1, + "REDIS_AOF_REWRITE_MIN_SIZE": 1, + "server.aof_last_fsync": 1, + "server.aof_rewrite_time_last": 2, + "server.aof_rewrite_time_start": 2, + "server.aof_delayed_fsync": 2, + "server.aof_fd": 4, + "server.aof_selected_db": 1, + "server.pidfile": 3, + "server.aof_filename": 3, + "server.requirepass": 4, + "server.rdb_compression": 1, + "server.rdb_checksum": 1, + "server.maxclients": 6, + "REDIS_MAX_CLIENTS": 1, + "server.bpop_blocked_clients": 2, + "server.maxmemory": 6, + "server.maxmemory_policy": 11, + "REDIS_MAXMEMORY_VOLATILE_LRU": 3, + "server.maxmemory_samples": 3, + "server.hash_max_ziplist_entries": 1, + "REDIS_HASH_MAX_ZIPLIST_ENTRIES": 1, + "server.hash_max_ziplist_value": 1, + "REDIS_HASH_MAX_ZIPLIST_VALUE": 1, + "server.list_max_ziplist_entries": 1, + "REDIS_LIST_MAX_ZIPLIST_ENTRIES": 1, + "server.list_max_ziplist_value": 1, + "REDIS_LIST_MAX_ZIPLIST_VALUE": 1, + "server.set_max_intset_entries": 1, + "REDIS_SET_MAX_INTSET_ENTRIES": 1, + "server.zset_max_ziplist_entries": 1, + "REDIS_ZSET_MAX_ZIPLIST_ENTRIES": 1, + "server.zset_max_ziplist_value": 1, + "REDIS_ZSET_MAX_ZIPLIST_VALUE": 1, + "server.repl_ping_slave_period": 1, + "REDIS_REPL_PING_SLAVE_PERIOD": 1, + "server.repl_timeout": 1, + "REDIS_REPL_TIMEOUT": 1, + "server.cluster.configfile": 1, + "server.lua_caller": 1, + "server.lua_time_limit": 1, + "REDIS_LUA_TIME_LIMIT": 1, + "server.lua_client": 1, + "server.lua_timedout": 2, + "resetServerSaveParams": 2, + "appendServerSaveParams": 3, + "*60": 1, + "server.masterauth": 1, + "server.masterport": 2, + "server.master": 3, + "server.repl_state": 6, + "REDIS_REPL_NONE": 1, + "server.repl_syncio_timeout": 1, + "REDIS_REPL_SYNCIO_TIMEOUT": 1, + "server.repl_serve_stale_data": 2, + "server.repl_slave_ro": 2, + "server.repl_down_since": 2, + "server.client_obuf_limits": 9, + "REDIS_CLIENT_LIMIT_CLASS_NORMAL": 3, + ".hard_limit_bytes": 3, + ".soft_limit_bytes": 3, + ".soft_limit_seconds": 3, + "REDIS_CLIENT_LIMIT_CLASS_SLAVE": 3, + "*1024*256": 1, + "*1024*64": 1, + "REDIS_CLIENT_LIMIT_CLASS_PUBSUB": 3, + "*1024*32": 1, + "*1024*8": 1, + "/R_Zero": 2, + "R_Zero/R_Zero": 1, + "server.commands": 1, + "dictCreate": 6, + "populateCommandTable": 2, + "server.delCommand": 1, + "lookupCommandByCString": 3, + "server.multiCommand": 1, + "server.lpushCommand": 1, + "server.slowlog_log_slower_than": 1, + "REDIS_SLOWLOG_LOG_SLOWER_THAN": 1, + "server.slowlog_max_len": 1, + "REDIS_SLOWLOG_MAX_LEN": 1, + "server.assert_failed": 1, + "server.assert_file": 1, + "server.assert_line": 1, + "server.bug_report_start": 1, + "adjustOpenFilesLimit": 2, + "rlim_t": 3, + "maxfiles": 6, + "rlimit": 1, + "limit": 3, + "getrlimit": 1, + "RLIMIT_NOFILE": 2, + "oldlimit": 5, + "limit.rlim_cur": 2, + "limit.rlim_max": 1, + "setrlimit": 1, + "initServer": 2, + "signal": 2, + "SIGHUP": 1, + "SIG_IGN": 2, + "SIGPIPE": 1, + "setupSignalHandlers": 2, + "openlog": 1, + "LOG_PID": 1, + "LOG_NDELAY": 1, + "LOG_NOWAIT": 1, + "listCreate": 6, + "server.clients_to_close": 1, + "server.monitors": 2, + "server.el": 7, + "aeCreateEventLoop": 1, + "zmalloc": 2, + "*server.dbnum": 1, + "anetTcpServer": 1, + "server.neterr": 4, + "ANET_ERR": 2, + "unlink": 3, + "anetUnixServer": 1, + ".blocking_keys": 1, + ".watched_keys": 1, + ".id": 1, + "server.pubsub_channels": 2, + "server.pubsub_patterns": 4, + "listSetFreeMethod": 1, + "freePubsubPattern": 1, + "listSetMatchMethod": 1, + "listMatchPubsubPattern": 1, + "aofRewriteBufferReset": 1, + "server.aof_buf": 3, + "server.rdb_save_time_last": 2, + "server.rdb_save_time_start": 2, + "server.stat_numconnections": 2, + "server.stat_evictedkeys": 3, + "server.stat_starttime": 2, + "server.stat_keyspace_misses": 2, + "server.stat_keyspace_hits": 2, + "server.stat_fork_time": 2, + "server.stat_rejected_conn": 2, + "server.lastbgsave_status": 3, + "server.stop_writes_on_bgsave_err": 2, + "aeCreateTimeEvent": 1, + "aeCreateFileEvent": 2, + "AE_READABLE": 2, + "acceptTcpHandler": 1, + "AE_ERR": 2, + "acceptUnixHandler": 1, + "REDIS_AOF_ON": 2, + "LL*": 1, + "REDIS_MAXMEMORY_NO_EVICTION": 2, + "clusterInit": 1, + "scriptingInit": 1, + "slowlogInit": 1, + "bioInit": 1, + "numcommands": 5, + "*f": 2, + "sflags": 1, + "retval": 3, + "arity": 3, + "addReplyErrorFormat": 1, + "authenticated": 3, + "proc": 14, + "addReplyError": 6, + "getkeys_proc": 1, + "firstkey": 1, + "hashslot": 3, + "server.cluster.state": 1, + "REDIS_CLUSTER_OK": 1, + "ask": 3, + "clusterNode": 1, + "*n": 1, + "getNodeByQuery": 1, + "server.cluster.myself": 1, + "addReplySds": 3, + "ip": 4, + "freeMemoryIfNeeded": 2, + "REDIS_CMD_DENYOOM": 1, + "REDIS_ERR": 5, + "REDIS_CMD_WRITE": 2, + "REDIS_REPL_CONNECTED": 3, + "tolower": 2, + "REDIS_MULTI": 1, + "queueMultiCommand": 1, + "call": 1, + "REDIS_CALL_FULL": 1, + "save": 2, + "REDIS_SHUTDOWN_SAVE": 1, + "nosave": 2, + "REDIS_SHUTDOWN_NOSAVE": 1, + "SIGKILL": 2, + "rdbRemoveTempFile": 1, + "aof_fsync": 1, + "rdbSave": 1, + "addReplyBulk": 1, + "addReplyMultiBulkLen": 1, + "addReplyBulkLongLong": 2, + "bytesToHuman": 3, + "n/": 3, + "LL*1024*1024": 2, + "LL*1024*1024*1024": 1, + "genRedisInfoString": 2, + "*section": 2, + "uptime": 2, + "rusage": 1, + "self_ru": 2, + "c_ru": 2, + "lol": 3, + "bib": 3, + "allsections": 12, + "defsections": 11, + "sections": 11, + "section": 14, + "getrusage": 2, + "RUSAGE_SELF": 1, + "RUSAGE_CHILDREN": 1, + "getClientsMaxBuffers": 1, + "utsname": 1, + "sdscat": 14, + "uname": 1, + "REDIS_VERSION": 4, + "redisGitSHA1": 3, + "strtol": 2, + "redisGitDirty": 3, + "name.sysname": 1, + "name.release": 1, + "name.machine": 1, + "aeGetApiName": 1, + "__GNUC_PATCHLEVEL__": 1, + "uptime/": 1, + "*24": 1, + "hmem": 3, + "peak_hmem": 3, + "zmalloc_get_rss": 1, + "lua_gc": 1, + "server.lua": 1, + "LUA_GCCOUNT": 1, + "*1024LL": 1, + "zmalloc_get_fragmentation_ratio": 1, + "ZMALLOC_LIB": 2, + "aofRewriteBufferSize": 2, + "bioPendingJobsOfType": 1, + "REDIS_BIO_AOF_FSYNC": 1, + "perc": 3, + "eta": 4, + "elapsed": 3, + "off_t": 1, + "remaining_bytes": 1, + "server.loading_total_bytes": 3, + "server.loading_loaded_bytes": 3, + "server.loading_start_time": 2, + "elapsed*remaining_bytes": 1, + "/server.loading_loaded_bytes": 1, + "REDIS_REPL_TRANSFER": 2, + "server.repl_transfer_left": 1, + "server.repl_transfer_lastio": 1, + "slaveid": 3, + "listIter": 2, + "li": 6, + "listRewind": 2, + "listNext": 2, + "*slave": 2, + "*state": 1, + "anetPeerToString": 1, + "slave": 3, + "replstate": 1, + "REDIS_REPL_WAIT_BGSAVE_START": 1, + "REDIS_REPL_WAIT_BGSAVE_END": 1, + "REDIS_REPL_SEND_BULK": 1, + "REDIS_REPL_ONLINE": 1, + "self_ru.ru_stime.tv_sec": 1, + "self_ru.ru_stime.tv_usec/1000000": 1, + "self_ru.ru_utime.tv_sec": 1, + "self_ru.ru_utime.tv_usec/1000000": 1, + "c_ru.ru_stime.tv_sec": 1, + "c_ru.ru_stime.tv_usec/1000000": 1, + "c_ru.ru_utime.tv_sec": 1, + "c_ru.ru_utime.tv_usec/1000000": 1, + "calls": 4, + "microseconds": 1, + "microseconds/c": 1, + "keys": 4, + "REDIS_MONITOR": 1, + "slaveseldb": 1, + "listAddNodeTail": 1, + "mem_used": 9, + "mem_tofree": 3, + "mem_freed": 4, + "slaves": 3, + "obuf_bytes": 3, + "getClientOutputBufferMemoryUsage": 1, + "keys_freed": 3, + "bestval": 5, + "bestkey": 9, + "REDIS_MAXMEMORY_ALLKEYS_LRU": 2, + "REDIS_MAXMEMORY_ALLKEYS_RANDOM": 2, + "REDIS_MAXMEMORY_VOLATILE_RANDOM": 1, + "thiskey": 7, + "thisval": 8, + "dictFind": 1, + "dictGetVal": 2, + "estimateObjectIdleTime": 1, + "REDIS_MAXMEMORY_VOLATILE_TTL": 1, + "delta": 54, + "flushSlavesOutputBuffers": 1, + "linuxOvercommitMemoryValue": 2, + "fgets": 1, + "atoi": 3, + "linuxOvercommitMemoryWarning": 2, + "createPidFile": 2, + "daemonize": 2, + "STDIN_FILENO": 1, + "STDERR_FILENO": 2, + "usage": 2, + "redisAsciiArt": 2, + "*16": 2, + "ascii_logo": 1, + "sigtermHandler": 2, + "sig": 2, + "sigaction": 6, + "act": 6, + "sigemptyset": 2, + "act.sa_mask": 2, + "act.sa_flags": 2, + "act.sa_handler": 1, + "SIGTERM": 1, + "HAVE_BACKTRACE": 1, + "SA_NODEFER": 1, + "SA_RESETHAND": 1, + "SA_SIGINFO": 1, + "act.sa_sigaction": 1, + "sigsegvHandler": 1, + "SIGSEGV": 1, + "SIGBUS": 1, + "SIGFPE": 1, + "SIGILL": 1, + "memtest": 2, + "megabytes": 1, + "passes": 1, + "zmalloc_enable_thread_safeness": 1, + "srand": 1, + "dictSetHashFunctionSeed": 1, + "*configfile": 1, + "configfile": 2, + "sdscatrepr": 1, + "loadServerConfig": 1, + "loadAppendOnlyFile": 1, + "/1000000": 2, + "rdbLoad": 1, + "aeSetBeforeSleepProc": 1, + "aeMain": 1, + "aeDeleteEventLoop": 1, + "BOOTSTRAP_H": 2, + "*true": 1, + "*false": 1, + "*eof": 1, + "*empty_list": 1, + "*global_enviroment": 1, + "obj_type": 1, + "scm_bool": 1, + "scm_empty_list": 1, + "scm_eof": 1, + "scm_char": 1, + "scm_int": 1, + "scm_pair": 1, + "scm_symbol": 1, + "scm_prim_fun": 1, + "scm_lambda": 1, + "scm_str": 1, + "scm_file": 1, + "*eval_proc": 1, + "*maybe_add_begin": 1, + "*code": 2, + "init_enviroment": 1, + "*env": 4, + "eval_err": 1, + "__attribute__": 1, + "noreturn": 1, + "define_var": 1, + "set_var": 1, + "*get_var": 1, + "*cond2nested_if": 1, + "*cond": 1, + "*let2lambda": 1, + "*let": 1, + "*and2nested_if": 1, + "*and": 1, + "*or2nested_if": 1, + "*or": 1, + "COMMIT_H": 2, + "*util": 1, + "indegree": 1, + "*parents": 4, + "*tree": 3, + "decoration": 1, + "name_decoration": 3, + "*commit_list_insert": 1, + "commit_list_count": 1, + "*l": 1, + "*commit_list_insert_by_date": 1, + "free_commit_list": 1, + "cmit_fmt": 3, + "CMIT_FMT_RAW": 1, + "CMIT_FMT_MEDIUM": 2, + "CMIT_FMT_DEFAULT": 1, + "CMIT_FMT_SHORT": 1, + "CMIT_FMT_FULL": 1, + "CMIT_FMT_FULLER": 1, + "CMIT_FMT_ONELINE": 1, + "CMIT_FMT_EMAIL": 1, + "CMIT_FMT_USERFORMAT": 1, + "CMIT_FMT_UNSPECIFIED": 1, + "pretty_print_context": 6, + "abbrev": 1, + "*subject": 1, + "*after_subject": 1, + "preserve_subject": 1, + "date_mode": 2, + "date_mode_explicit": 1, + "need_8bit_cte": 2, + "show_notes": 1, + "reflog_walk_info": 1, + "*reflog_info": 1, + "*output_encoding": 2, + "userformat_want": 2, + "notes": 1, + "has_non_ascii": 1, + "*text": 1, + "rev_info": 2, + "*logmsg_reencode": 1, + "*reencode_commit_message": 1, + "**encoding_p": 1, + "get_commit_format": 1, + "*arg": 1, + "*format_subject": 1, + "*sb": 7, + "*line_separator": 1, + "userformat_find_requirements": 1, + "format_commit_message": 1, + "*context": 1, + "pretty_print_commit": 1, + "*pp": 4, + "pp_commit_easy": 1, + "pp_user_info": 1, + "*what": 1, + "*line": 1, + "*encoding": 2, + "pp_title_line": 1, + "**msg_p": 2, + "pp_remainder": 1, + "indent": 1, + "*pop_most_recent_commit": 1, + "mark": 3, + "*pop_commit": 1, + "**stack": 1, + "clear_commit_marks": 1, + "clear_commit_marks_for_object_array": 1, + "object_array": 2, + "sort_in_topological_order": 1, + "list": 1, + "lifo": 1, + "FLEX_ARRAY": 1, + "*read_graft_line": 1, + "*lookup_commit_graft": 1, + "*get_merge_bases": 1, + "*rev1": 1, + "*rev2": 1, + "*get_merge_bases_many": 1, + "*one": 1, + "**twos": 1, + "*get_octopus_merge_bases": 1, + "*in": 1, + "register_shallow": 1, + "unregister_shallow": 1, + "for_each_commit_graft": 1, + "each_commit_graft_fn": 1, + "is_repository_shallow": 1, + "*get_shallow_commits": 1, + "*heads": 2, + "shallow_flag": 1, + "not_shallow_flag": 1, + "is_descendant_of": 1, + "in_merge_bases": 1, + "interactive_add": 1, + "patch": 1, + "run_add_interactive": 1, + "*revision": 1, + "*patch_mode": 1, + "**pathspec": 1, + "single_parent": 1, + "*reduce_heads": 1, + "commit_extra_header": 7, + "append_merge_tag_headers": 1, + "***tail": 1, + "commit_tree": 1, + "*author": 2, + "*sign_commit": 2, + "commit_tree_extended": 1, + "*read_commit_extra_headers": 1, + "*read_commit_extra_header_lines": 1, + "free_commit_extra_headers": 1, + "*extra": 1, + "merge_remote_util": 1, + "*get_merge_parent": 1, + "parse_signed_commit": 1, + "*message": 1, + "*signature": 1, + "git_cache_init": 1, + "git_cache": 4, + "*cache": 4, + "git_cached_obj_freeptr": 1, + "free_ptr": 2, + "git__size_t_powerof2": 1, + "cache": 26, + "size_mask": 6, + "lru_count": 1, + "free_obj": 4, + "git_mutex_init": 1, + "nodes": 10, + "git_cached_obj": 5, + "GITERR_CHECK_ALLOC": 3, + "git_cache_free": 1, + "git_cached_obj_decref": 3, + "*git_cache_get": 1, + "*oid": 2, + "*node": 2, + "*result": 1, + "oid": 17, + "git_mutex_lock": 2, + "node": 9, + "git_oid_cmp": 6, + "git_cached_obj_incref": 3, + "git_mutex_unlock": 2, + "*git_cache_try_store": 1, + "*_entry": 1, + "*entry": 2, + "_entry": 1, + "entry": 17, + "HELLO_H": 2, + "hello": 1, + "": 1, + "_Included_jni_JniLayer": 2, + "JNIEXPORT": 6, + "jlong": 6, + "JNICALL": 6, + "Java_jni_JniLayer_jni_1layer_1initialize": 1, + "JNIEnv": 6, + "jobject": 6, + "jintArray": 1, + "jint": 7, + "Java_jni_JniLayer_jni_1layer_1mainloop": 1, + "Java_jni_JniLayer_jni_1layer_1set_1button": 1, + "Java_jni_JniLayer_jni_1layer_1set_1analog": 1, + "jfloat": 1, + "Java_jni_JniLayer_jni_1layer_1report_1analog_1chg": 1, + "Java_jni_JniLayer_jni_1layer_1kill": 1, + "VALUE": 13, + "rb_cRDiscount": 4, + "rb_rdiscount_to_html": 2, + "*res": 2, + "szres": 8, + "rb_funcall": 14, + "rb_intern": 15, + "rb_str_buf_new": 2, + "Check_Type": 2, + "T_STRING": 2, + "rb_rdiscount__get_flags": 3, + "MMIOT": 2, + "*doc": 2, + "mkd_string": 2, + "RSTRING_PTR": 2, + "RSTRING_LEN": 2, + "mkd_compile": 2, + "doc": 6, + "mkd_document": 1, + "res": 4, + "rb_str_cat": 4, + "mkd_cleanup": 2, + "rb_respond_to": 1, + "rb_rdiscount_toc_content": 2, + "mkd_toc": 1, + "ruby_obj": 11, + "MKD_TABSTOP": 1, + "MKD_NOHEADER": 1, + "Qtrue": 10, + "MKD_NOPANTS": 1, + "MKD_NOHTML": 1, + "MKD_TOC": 1, + "MKD_NOIMAGE": 1, + "MKD_NOLINKS": 1, + "MKD_NOTABLES": 1, + "MKD_STRICT": 1, + "MKD_AUTOLINK": 1, + "MKD_SAFELINK": 1, + "MKD_NO_EXT": 1, + "Init_rdiscount": 1, + "rb_define_class": 1, + "rb_cObject": 1, + "rb_define_method": 2, + "*diff_prefix_from_pathspec": 1, + "git_strarray": 2, + "*pathspec": 2, + "git_buf": 3, + "GIT_BUF_INIT": 3, + "*scan": 2, + "git_buf_common_prefix": 1, + "pathspec": 15, + "scan": 4, + "prefix.ptr": 2, + "git__iswildcard": 1, + "git_buf_truncate": 1, + "prefix.size": 1, + "git_buf_detach": 1, + "git_buf_free": 4, + "diff_pathspec_is_interesting": 2, + "*str": 1, + "diff_path_matches_pathspec": 3, + "git_diff_list": 17, + "*diff": 8, + "*path": 2, + "git_attr_fnmatch": 4, + "*match": 3, + "pathspec.length": 1, + "git_vector_foreach": 4, + "p_fnmatch": 1, + "pattern": 3, + "path": 20, + "FNM_NOMATCH": 1, + "GIT_ATTR_FNMATCH_HASWILD": 1, + "strncmp": 1, + "GIT_ATTR_FNMATCH_NEGATIVE": 1, + "git_diff_delta": 19, + "*diff_delta__alloc": 1, + "git_delta_t": 5, + "*delta": 6, + "git__calloc": 3, + "old_file.path": 12, + "git_pool_strdup": 3, + "pool": 12, + "new_file.path": 6, + "opts.flags": 8, + "GIT_DIFF_REVERSE": 3, + "GIT_DELTA_ADDED": 4, + "GIT_DELTA_DELETED": 7, + "*diff_delta__dup": 1, + "*d": 1, + "git_pool": 4, + "*pool": 3, + "fail": 19, + "*diff_delta__merge_like_cgit": 1, + "*b": 6, + "*dup": 1, + "diff_delta__dup": 3, + "dup": 15, + "new_file.oid": 7, + "git_oid_cpy": 5, + "new_file.mode": 4, + "new_file.size": 3, + "new_file.flags": 4, + "old_file.oid": 3, + "GIT_DELTA_UNTRACKED": 5, + "GIT_DELTA_IGNORED": 5, + "GIT_DELTA_UNMODIFIED": 11, + "diff_delta__from_one": 5, + "git_index_entry": 8, + "GIT_DIFF_INCLUDE_IGNORED": 1, + "GIT_DIFF_INCLUDE_UNTRACKED": 1, + "diff_delta__alloc": 2, + "GIT_DELTA_MODIFIED": 3, + "old_file.mode": 2, + "old_file.size": 1, + "file_size": 6, + "old_file.flags": 2, + "GIT_DIFF_FILE_VALID_OID": 4, + "git_vector_insert": 4, + "deltas": 8, + "diff_delta__from_two": 2, + "*old_entry": 1, + "*new_entry": 1, + "*new_oid": 1, + "GIT_DIFF_INCLUDE_UNMODIFIED": 1, + "*temp": 1, + "old_entry": 5, + "new_entry": 5, + "new_oid": 3, + "git_oid_iszero": 2, + "*diff_strdup_prefix": 1, + "git_pool_strcat": 1, + "git_pool_strndup": 1, + "diff_delta__cmp": 3, + "*da": 1, + "da": 2, + "config_bool": 5, + "*cfg": 2, + "defvalue": 2, + "git_config_get_bool": 1, + "cfg": 6, + "giterr_clear": 1, + "*git_diff_list_alloc": 1, + "git_repository": 7, + "*repo": 7, + "git_diff_options": 7, + "*opts": 6, + "repo": 23, + "git_vector_init": 3, + "git_pool_init": 2, + "git_repository_config__weakptr": 1, + "diffcaps": 13, + "GIT_DIFFCAPS_HAS_SYMLINKS": 2, + "GIT_DIFFCAPS_ASSUME_UNCHANGED": 2, + "GIT_DIFFCAPS_TRUST_EXEC_BIT": 2, + "GIT_DIFFCAPS_TRUST_CTIME": 2, + "opts": 24, + "opts.pathspec": 2, + "opts.old_prefix": 4, + "diff_strdup_prefix": 2, + "old_prefix": 2, + "DIFF_OLD_PREFIX_DEFAULT": 1, + "opts.new_prefix": 4, + "new_prefix": 2, + "DIFF_NEW_PREFIX_DEFAULT": 1, + "*swap": 1, + "pathspec.count": 2, + "*pattern": 1, + "pathspec.strings": 1, + "GIT_ATTR_FNMATCH_ALLOWSPACE": 1, + "git_attr_fnmatch__parse": 1, + "GIT_ENOTFOUND": 1, + "git_diff_list_free": 3, + "deltas.contents": 1, + "git_vector_free": 3, + "pathspec.contents": 1, + "git_pool_clear": 2, + "oid_for_workdir_item": 2, + "full_path": 3, + "git_buf_joinpath": 1, + "git_repository_workdir": 1, + "S_ISLNK": 2, + "git_odb__hashlink": 1, + "full_path.ptr": 2, + "git__is_sizet": 1, + "giterr_set": 1, + "GITERR_OS": 1, + "git_futils_open_ro": 1, + "git_odb__hashfd": 1, + "GIT_OBJ_BLOB": 1, + "p_close": 1, + "EXEC_BIT_MASK": 3, + "maybe_modified": 2, + "git_iterator": 8, + "*old_iter": 2, + "*oitem": 2, + "*new_iter": 2, + "*nitem": 2, + "noid": 4, + "*use_noid": 1, + "omode": 8, + "oitem": 29, + "nmode": 10, + "nitem": 32, + "GIT_UNUSED": 1, + "old_iter": 8, + "S_ISREG": 1, + "GIT_MODE_TYPE": 3, + "GIT_MODE_PERMS_MASK": 1, + "flags_extended": 2, + "GIT_IDXENTRY_INTENT_TO_ADD": 1, + "GIT_IDXENTRY_SKIP_WORKTREE": 1, + "new_iter": 13, + "GIT_ITERATOR_WORKDIR": 2, + "ctime.seconds": 2, + "mtime.seconds": 2, + "GIT_DIFFCAPS_USE_DEV": 1, + "dev": 2, + "ino": 2, + "uid": 2, + "gid": 2, + "S_ISGITLINK": 1, + "git_submodule": 1, + "*sub": 1, + "GIT_DIFF_IGNORE_SUBMODULES": 1, + "git_submodule_lookup": 1, + "ignore": 1, + "GIT_SUBMODULE_IGNORE_ALL": 1, + "use_noid": 2, + "diff_from_iterators": 5, + "**diff_ptr": 1, + "ignore_prefix": 6, + "git_diff_list_alloc": 1, + "old_src": 1, + "new_src": 3, + "git_iterator_current": 2, + "git_iterator_advance": 5, + "delta_type": 8, + "git_buf_len": 1, + "git__prefixcmp": 2, + "git_buf_cstr": 1, + "S_ISDIR": 1, + "GIT_DIFF_RECURSE_UNTRACKED_DIRS": 1, + "git_iterator_current_is_ignored": 2, + "git_buf_sets": 1, + "git_iterator_advance_into_directory": 1, + "git_iterator_free": 4, + "*diff_ptr": 2, + "git_diff_tree_to_tree": 1, + "git_tree": 4, + "*old_tree": 3, + "*new_tree": 1, + "**diff": 4, + "diff_prefix_from_pathspec": 4, + "old_tree": 5, + "new_tree": 2, + "git_iterator_for_tree_range": 4, + "git_diff_index_to_tree": 1, + "git_iterator_for_index_range": 2, + "git_diff_workdir_to_index": 1, + "git_iterator_for_workdir_range": 2, + "git_diff_workdir_to_tree": 1, + "git_diff_merge": 1, + "*onto": 1, + "*from": 1, + "onto_pool": 7, + "git_vector": 1, + "onto_new": 6, + "onto": 7, + "deltas.length": 4, + "GIT_VECTOR_GET": 2, + "diff_delta__merge_like_cgit": 1, + "git_vector_swap": 1, + "git_pool_swap": 1 }, "Standard ML": { "structure": 15, @@ -62288,14 +66772,6 @@ "Lazy": 2, "LazyFn": 4, "LazyMemo": 2, - "signature": 2, - "sig": 2, - "LAZY": 1, - "bool": 9, - "string": 14, - "*": 9, - "order": 2, - "b": 58, "functor": 2, "Main": 1, "S": 2, @@ -62315,6 +66791,7 @@ "int": 1, "OptPred": 1, "Target": 1, + "string": 14, "Yes": 1, "Show": 1, "Anns": 1, @@ -62334,6 +66811,7 @@ "ccOpts": 6, "linkOpts": 6, "buildConstants": 2, + "bool": 9, "debugRuntime": 3, "debugFormat": 5, "Dwarf": 3, @@ -62480,6 +66958,7 @@ "Coalesce": 1, "limit": 1, "Bool": 10, + "b": 58, "closureConvertGlobalize": 1, "closureConvertShrink": 1, "String.concatWith": 2, @@ -62782,6 +67261,7 @@ "CommandLine.arguments": 1, "RedBlackTree": 1, "key": 16, + "*": 9, "entry": 12, "dict": 17, "Empty": 15, @@ -62825,5886 +67305,1508 @@ "new": 1, "insert": 2, "table": 14, - "clear": 1 + "clear": 1, + "signature": 2, + "sig": 2, + "LAZY": 1, + "order": 2 }, - "Stata": { - "local": 6, - "inname": 1, - "outname": 1, - "program": 2, - "hello": 1, - "vers": 1, - "display": 1, - "end": 4, - "{": 441, - "*": 25, - "version": 2, - "mar2014": 1, - "}": 440, - "...": 30, - "Hello": 1, - "world": 1, - "p_end": 47, - "MAXDIM": 1, - "smcl": 1, - "Matthew": 2, - "White": 2, - "jan2014": 1, - "title": 7, - "Title": 1, - "phang": 4, - "cmd": 111, - "odkmeta": 17, - "hline": 1, - "Create": 4, - "a": 30, - "do": 22, - "-": 42, - "file": 18, - "to": 23, - "import": 9, - "ODK": 6, - "data": 4, - "marker": 10, - "syntax": 1, - "Syntax": 1, - "p": 2, - "using": 10, - "it": 61, - "help": 27, - "filename": 3, - "opt": 25, - "csv": 9, - "(": 60, - "csvfile": 3, - ")": 61, - "Using": 7, - "histogram": 2, - "as": 29, - "template.": 8, - "notwithstanding": 1, - "is": 31, - "rarely": 1, - "preceded": 3, - "by": 7, - "an": 6, - "underscore.": 1, - "cmdab": 5, - "s": 10, - "urvey": 2, - "surveyfile": 5, - "odkmeta##surveyopts": 2, - "surveyopts": 4, - "cho": 2, - "ices": 2, - "choicesfile": 4, - "odkmeta##choicesopts": 2, - "choicesopts": 5, - "[": 6, - "options": 1, - "]": 6, - "odbc": 2, - "the": 67, - "position": 1, - "of": 36, - "last": 1, - "character": 1, - "in": 24, - "first": 2, - "column": 18, - "+": 2, - "synoptset": 5, - "tabbed": 4, - "synopthdr": 4, - "synoptline": 8, - "syntab": 6, - "Main": 3, - "heckman": 2, - "p2coldent": 3, - "name": 20, - ".csv": 2, - "that": 21, - "contains": 3, - "metadata": 5, - "from": 6, - "survey": 14, - "worksheet": 5, - "choices": 10, - "Fields": 2, - "synopt": 16, - "drop": 1, - "attrib": 2, - "headers": 8, - "not": 8, - "field": 25, - "attributes": 10, - "with": 10, - "keep": 1, - "only": 3, - "rel": 1, - "ax": 1, - "ignore": 1, - "fields": 7, - "exist": 1, - "Lists": 1, - "ca": 1, - "oth": 1, - "er": 1, - "odkmeta##other": 1, - "other": 14, - "Stata": 5, - "value": 14, - "values": 3, - "select": 6, - "or_other": 5, - ";": 15, - "default": 8, - "max": 2, - "one": 5, - "line": 4, - "write": 1, - "each": 7, - "list": 13, - "on": 7, - "single": 1, - "Options": 1, - "replace": 7, - "overwrite": 1, - "existing": 1, - "p2colreset": 4, - "and": 18, - "are": 13, - "required.": 1, - "Change": 1, - "t": 2, - "ype": 1, - "header": 15, - "type": 7, - "attribute": 10, - "la": 2, - "bel": 2, - "label": 9, - "d": 1, - "isabled": 1, - "disabled": 4, - "li": 1, - "stname": 1, - "list_name": 6, - "maximum": 3, - "plus": 2, - "min": 2, - "minimum": 2, - "minus": 1, - "#": 6, - "constant": 2, - "for": 13, - "all": 3, - "labels": 8, - "description": 1, - "Description": 1, - "pstd": 20, - "creates": 1, - "worksheets": 1, - "XLSForm.": 1, - "The": 9, - "saved": 1, - "completes": 2, - "following": 1, - "tasks": 3, - "order": 1, - "anova": 1, - "phang2": 23, - "o": 12, - "Import": 2, - "lists": 2, - "Add": 1, - "char": 4, - "characteristics": 4, - "Split": 1, - "select_multiple": 6, - "variables": 8, - "Drop": 1, - "note": 1, - "format": 1, - "Format": 1, - "date": 1, - "time": 1, - "datetime": 1, - "Attach": 2, - "variable": 14, - "notes": 1, - "merge": 3, - "Merge": 1, - "repeat": 6, - "groups": 4, - "After": 1, - "have": 2, - "been": 1, - "split": 4, - "can": 1, - "be": 12, - "removed": 1, - "without": 2, - "affecting": 1, - "tasks.": 1, - "User": 1, - "written": 2, - "supplements": 1, - "may": 2, - "make": 1, - "use": 3, - "any": 3, - "which": 6, - "imported": 4, - "characteristics.": 1, - "remarks": 1, - "Remarks": 1, - "uses": 3, - "helpb": 7, - "insheet": 4, - "data.": 1, - "long": 7, - "strings": 1, - "digits": 1, - "such": 2, - "simserial": 1, - "will": 9, - "numeric": 4, - "even": 1, - "if": 10, - "they": 2, - "more": 1, - "than": 3, - "digits.": 1, - "As": 1, - "result": 6, - "lose": 1, - "precision": 1, - ".": 22, - "makes": 1, - "limited": 1, - "mata": 1, - "Mata": 1, - "manage": 1, - "contain": 1, - "difficult": 1, - "characters.": 2, - "starts": 1, - "definitions": 1, - "several": 1, - "macros": 1, - "these": 4, - "constants": 1, - "uses.": 1, - "For": 4, - "instance": 1, - "macro": 1, - "datemask": 1, - "varname": 1, - "constraints": 1, - "names": 16, - "Further": 1, - "files": 1, - "often": 1, - "much": 1, - "longer": 1, - "length": 3, - "limit": 1, - "These": 2, - "differences": 1, - "convention": 1, - "lead": 1, - "three": 1, - "kinds": 1, - "problematic": 1, - "Long": 3, - "involve": 1, - "invalid": 1, - "combination": 1, - "characters": 3, - "example": 2, - "begins": 1, - "colon": 1, - "followed": 1, - "number.": 1, - "convert": 2, - "instead": 1, - "naming": 1, - "v": 6, - "concatenated": 1, - "positive": 1, - "integer": 1, - "v1": 1, - "unique": 1, - "but": 4, - "when": 1, - "converted": 3, - "truncated": 1, - "become": 3, - "duplicates.": 1, - "again": 1, - "names.": 6, - "form": 1, - "duplicates": 1, - "cannot": 2, - "chooses": 1, - "different": 1, - "Because": 1, - "problem": 2, - "recommended": 1, - "you": 1, - "If": 2, - "its": 3, - "characteristic": 2, - "odkmeta##Odk_bad_name": 1, - "Odk_bad_name": 3, - "otherwise": 1, - "Most": 1, - "depend": 1, - "There": 1, - "two": 2, - "exceptions": 1, - "variables.": 1, - "error": 4, - "has": 6, - "or": 7, - "splitting": 2, - "would": 1, - "duplicate": 4, - "reshape": 2, - "groups.": 1, - "there": 2, - "merging": 2, - "code": 1, - "datasets.": 1, - "Where": 1, - "renaming": 2, - "left": 1, - "user.": 1, - "section": 2, - "designated": 2, - "area": 2, - "renaming.": 3, - "In": 3, - "reshaping": 1, - "group": 4, - "own": 2, - "Many": 1, - "forms": 2, - "require": 1, - "others": 1, - "few": 1, - "need": 1, - "renamed": 1, - "should": 1, - "go": 1, - "areas.": 1, - "However": 1, - "some": 1, - "usually": 1, - "because": 1, - "many": 2, - "nested": 2, - "above": 1, - "this": 1, - "case": 1, - "work": 1, - "best": 1, - "Odk_group": 1, - "Odk_name": 1, - "Odk_is_other": 2, - "Odk_geopoint": 2, - "r": 2, - "varlist": 2, - "Odk_list_name": 2, - "foreach": 1, - "var": 5, - "*search": 1, - "n/a": 1, - "know": 1, - "don": 1, - "worksheet.": 1, - "requires": 1, - "comma": 1, - "separated": 2, - "text": 1, - "file.": 1, - "Strings": 1, - "embedded": 2, - "commas": 1, - "double": 3, - "quotes": 3, - "must": 2, - "enclosed": 1, - "another": 1, - "quote.": 1, - "pmore": 5, - "Each": 1, - "header.": 1, - "Use": 1, - "suboptions": 1, - "specify": 1, - "alternative": 1, - "respectively.": 1, - "All": 1, - "used.": 1, - "standardized": 1, - "follows": 1, - "replaced": 9, - "select_one": 3, - "begin_group": 1, - "begin": 2, - "end_group": 1, - "begin_repeat": 1, - "end_repeat": 1, - "addition": 1, - "specified": 1, - "attaches": 1, - "pmore2": 3, - "formed": 1, - "concatenating": 1, - "elements": 1, - "Odk_repeat": 1, - "nested.": 1, - "geopoint": 2, - "component": 1, - "Latitude": 1, - "Longitude": 1, - "Altitude": 1, - "Accuracy": 1, - "blank.": 1, - "imports": 4, - "XLSForm": 1, - "list.": 1, - "one.": 1, - "specifies": 4, - "vary": 1, - "definition": 1, - "rather": 1, - "multiple": 1, - "delimit": 1, - "#delimit": 1, - "dlgtab": 1, - "Other": 1, - "already": 2, - "exists.": 1, - "examples": 1, - "Examples": 1, - "named": 1, - "import.do": 7, - "including": 1, - "survey.csv": 1, - "choices.csv": 1, - "txt": 6, - "Same": 3, - "previous": 3, - "command": 3, - "appears": 2, - "fieldname": 3, - "survey_fieldname.csv": 1, - "valuename": 2, - "choices_valuename.csv": 1, - "except": 1, - "hint": 2, - "dropattrib": 2, - "does": 1, - "_all": 1, - "acknowledgements": 1, - "Acknowledgements": 1, - "Lindsey": 1, - "Shaughnessy": 1, - "Innovations": 2, - "Poverty": 2, - "Action": 2, - "assisted": 1, - "almost": 1, - "aspects": 1, - "development.": 1, - "She": 1, - "collaborated": 1, - "structure": 1, - "was": 1, - "very": 1, - "helpful": 1, - "tester": 1, - "contributed": 1, - "information": 1, - "about": 1, - "ODK.": 1, - "author": 1, - "Author": 1, - "mwhite@poverty": 1, - "action.org": 1, - "Setup": 1, - "sysuse": 1, - "auto": 1, - "Fit": 2, - "linear": 2, - "regression": 2, - "regress": 5, - "mpg": 1, - "weight": 4, - "foreign": 2, - "better": 1, - "physics": 1, - "standpoint": 1, - "gen": 1, - "gp100m": 2, - "/mpg": 1, - "Obtain": 1, - "beta": 2, - "coefficients": 1, - "refitting": 1, - "model": 1, - "Suppress": 1, - "intercept": 1, - "term": 1, - "noconstant": 1, - "Model": 1, - "bn.foreign": 1, - "hascons": 1, - "matrix": 3, - "tanh": 1, - "u": 3, - "eu": 4, - "emu": 4, - "exp": 2, - "return": 1, - "/": 1 - }, - "STON": { - "[": 11, - "]": 11, - "{": 15, - "#a": 1, - "#b": 1, - "}": 15, - "Rectangle": 1, - "#origin": 1, - "Point": 2, - "-": 2, - "#corner": 1, - "TestDomainObject": 1, - "#created": 1, - "DateAndTime": 2, - "#modified": 1, - "#integer": 1, - "#float": 1, - "#description": 1, - "#color": 1, - "#green": 1, - "#tags": 1, - "#two": 1, - "#beta": 1, - "#medium": 1, - "#bytes": 1, - "ByteArray": 1, - "#boolean": 1, - "false": 1, - "ZnResponse": 1, - "#headers": 2, - "ZnHeaders": 1, - "ZnMultiValueDictionary": 1, - "#entity": 1, - "ZnStringEntity": 1, - "#contentType": 1, - "ZnMimeType": 1, - "#main": 1, - "#sub": 1, - "#parameters": 1, - "#contentLength": 1, - "#string": 1, - "#encoder": 1, - "ZnUTF8Encoder": 1, - "#statusLine": 1, - "ZnStatusLine": 1, - "#version": 1, - "#code": 1, - "#reason": 1 - }, - "Stylus": { - "border": 6, - "-": 10, - "radius": 5, - "(": 1, - ")": 1, - "webkit": 1, - "arguments": 3, - "moz": 1, - "a.button": 1, - "px": 5, - "fonts": 2, - "helvetica": 1, - "arial": 1, - "sans": 1, - "serif": 1, - "body": 1, - "{": 1, - "padding": 3, - ";": 2, - "font": 1, - "px/1.4": 1, - "}": 1, - "form": 2, - "input": 2, - "[": 2, - "type": 2, - "text": 2, - "]": 2, - "solid": 1, - "#eee": 1, - "color": 2, - "#ddd": 1, - "textarea": 1, - "@extends": 2, - "foo": 2, - "#FFF": 1, - ".bar": 1, - "background": 1, - "#000": 1 - }, - "SuperCollider": { - "//boot": 1, - "server": 1, - "s.boot": 1, - ";": 18, - "(": 22, - "SynthDef": 1, - "{": 5, - "var": 1, - "sig": 7, - "resfreq": 3, - "Saw.ar": 1, - ")": 22, - "SinOsc.kr": 1, - "*": 3, - "+": 1, - "RLPF.ar": 1, - "Out.ar": 1, - "}": 5, - ".play": 2, - "do": 2, - "arg": 1, - "i": 1, - "Pan2.ar": 1, - "SinOsc.ar": 1, - "exprand": 1, - "LFNoise2.kr": 2, - "rrand": 2, - ".range": 2, - "**": 1, - "rand2": 1, - "a": 2, - "Env.perc": 1, - "-": 1, - "b": 1, - "a.delay": 2, - "a.test.plot": 1, - "b.test.plot": 1, - "Env": 1, - "[": 2, - "]": 2, - ".plot": 2, - "e": 1, - "Env.sine.asStream": 1, - "e.next.postln": 1, - "wait": 1, - ".fork": 1 - }, - "Swift": { - "let": 43, - "apples": 1, - "oranges": 1, - "appleSummary": 1, - "fruitSummary": 1, - "var": 42, - "shoppingList": 3, - "[": 18, - "]": 18, - "occupations": 2, - "emptyArray": 1, - "String": 27, - "(": 89, - ")": 89, - "emptyDictionary": 1, - "Dictionary": 1, - "": 1, - "Float": 1, - "//": 1, - "Went": 1, - "shopping": 1, - "and": 1, - "bought": 1, - "everything.": 1, - "individualScores": 2, - "teamScore": 4, - "for": 10, - "score": 2, - "in": 11, - "{": 77, - "if": 6, - "+": 15, - "}": 77, - "else": 1, - "optionalString": 2, - "nil": 1, - "optionalName": 2, - "greeting": 2, - "name": 21, - "vegetable": 2, - "switch": 4, - "case": 21, - "vegetableComment": 4, - "x": 1, - "where": 2, - "x.hasSuffix": 1, - "default": 2, - "interestingNumbers": 2, - "largest": 4, - "kind": 1, - "numbers": 6, - "number": 13, - "n": 5, - "while": 2, - "<": 4, - "*": 7, - "m": 5, - "do": 1, - "firstForLoop": 3, - "i": 6, - "secondForLoop": 3, - ";": 2, - "println": 1, - "func": 24, - "greet": 2, - "day": 1, - "-": 21, - "return": 30, - "getGasPrices": 2, - "Double": 11, - "sumOf": 3, - "Int...": 1, - "Int": 19, - "sum": 3, - "returnFifteen": 2, - "y": 3, - "add": 2, - "makeIncrementer": 2, - "addOne": 2, - "increment": 2, - "hasAnyMatches": 2, - "list": 2, - "condition": 2, - "Bool": 4, - "item": 4, - "true": 2, - "false": 2, - "lessThanTen": 2, - "numbers.map": 2, - "result": 5, - "sort": 1, - "class": 7, - "Shape": 2, - "numberOfSides": 4, - "simpleDescription": 14, - "myVariable": 2, - "myConstant": 1, - "shape": 1, - "shape.numberOfSides": 1, - "shapeDescription": 1, - "shape.simpleDescription": 1, - "NamedShape": 3, - "init": 4, - "self.name": 1, - "Square": 7, - "sideLength": 17, - "self.sideLength": 2, - "super.init": 2, - "area": 1, - "override": 2, - "test": 1, - "test.area": 1, - "test.simpleDescription": 1, - "EquilateralTriangle": 4, - "perimeter": 1, - "get": 2, - "set": 1, - "newValue": 1, - "/": 1, - "triangle": 3, - "triangle.perimeter": 2, - "triangle.sideLength": 2, - "TriangleAndSquare": 2, - "willSet": 2, - "square.sideLength": 1, - "newValue.sideLength": 2, - "square": 2, - "size": 4, - "triangleAndSquare": 1, - "triangleAndSquare.square.sideLength": 1, - "triangleAndSquare.triangle.sideLength": 2, - "triangleAndSquare.square": 1, - "Counter": 2, - "count": 2, - "incrementBy": 1, - "amount": 2, - "numberOfTimes": 2, - "times": 4, - "counter": 1, - "counter.incrementBy": 1, - "optionalSquare": 2, - ".sideLength": 1, - "enum": 4, - "Rank": 2, - "Ace": 1, - "Two": 1, - "Three": 1, - "Four": 1, - "Five": 1, - "Six": 1, - "Seven": 1, - "Eight": 1, - "Nine": 1, - "Ten": 1, - "Jack": 1, - "Queen": 1, - "King": 1, - "self": 3, - ".Ace": 1, - ".Jack": 1, - ".Queen": 1, - ".King": 1, - "self.toRaw": 1, - "ace": 1, - "Rank.Ace": 1, - "aceRawValue": 1, - "ace.toRaw": 1, - "convertedRank": 1, - "Rank.fromRaw": 1, - "threeDescription": 1, - "convertedRank.simpleDescription": 1, - "Suit": 2, - "Spades": 1, - "Hearts": 1, - "Diamonds": 1, - "Clubs": 1, - ".Spades": 2, - ".Hearts": 1, - ".Diamonds": 1, - ".Clubs": 1, - "hearts": 1, - "Suit.Hearts": 1, - "heartsDescription": 1, - "hearts.simpleDescription": 1, - "implicitInteger": 1, - "implicitDouble": 1, - "explicitDouble": 1, - "struct": 2, - "Card": 2, - "rank": 2, - "suit": 2, - "threeOfSpades": 1, - ".Three": 1, - "threeOfSpadesDescription": 1, - "threeOfSpades.simpleDescription": 1, - "ServerResponse": 1, - "Result": 1, - "Error": 1, - "success": 2, - "ServerResponse.Result": 1, - "failure": 1, - "ServerResponse.Error": 1, - ".Result": 1, - "sunrise": 1, - "sunset": 1, - "serverResponse": 2, - ".Error": 1, - "error": 1, - "protocol": 1, - "ExampleProtocol": 5, - "mutating": 3, - "adjust": 4, - "SimpleClass": 2, - "anotherProperty": 1, - "a": 2, - "a.adjust": 1, - "aDescription": 1, - "a.simpleDescription": 1, - "SimpleStructure": 2, - "b": 1, - "b.adjust": 1, - "bDescription": 1, - "b.simpleDescription": 1, - "extension": 1, - "protocolValue": 1, - "protocolValue.simpleDescription": 1, - "repeat": 2, - "": 1, - "ItemType": 3, - "OptionalValue": 2, - "": 1, - "None": 1, - "Some": 1, - "T": 5, - "possibleInteger": 2, - "": 1, - ".None": 1, - ".Some": 1, - "anyCommonElements": 2, - "": 1, - "U": 4, - "Sequence": 2, - "GeneratorType": 3, - "Element": 3, - "Equatable": 1, - "lhs": 2, - "rhs": 2, - "lhsItem": 2, - "rhsItem": 2, - "label": 2, - "width": 2, - "widthLabel": 1 - }, - "SystemVerilog": { - "module": 3, - "endpoint_phy_wrapper": 2, - "(": 92, - "input": 12, - "clk_sys_i": 2, - "clk_ref_i": 6, - "clk_rx_i": 3, - "rst_n_i": 3, - "IWishboneMaster.master": 2, - "src": 1, - "IWishboneSlave.slave": 1, - "snk": 1, - "sys": 1, - "output": 6, - "[": 17, - "]": 17, - "td_o": 2, - "rd_i": 2, - "txn_o": 2, - "txp_o": 2, - "rxn_i": 2, - "rxp_i": 2, - ")": 92, - ";": 32, - "wire": 12, - "rx_clock": 3, - "parameter": 2, - "g_phy_type": 6, - "gtx_data": 3, - "gtx_k": 3, - "gtx_disparity": 3, - "gtx_enc_error": 3, - "grx_data": 3, - "grx_clk": 1, - "grx_k": 3, - "grx_enc_error": 3, - "grx_bitslide": 2, - "gtp_rst": 2, - "tx_clock": 3, - "generate": 1, - "if": 5, - "begin": 4, - "assign": 2, - "wr_tbi_phy": 1, - "U_Phy": 1, - ".serdes_rst_i": 1, - ".serdes_loopen_i": 1, - "b0": 5, - ".serdes_enable_i": 1, - "b1": 2, - ".serdes_tx_data_i": 1, - ".serdes_tx_k_i": 1, - ".serdes_tx_disparity_o": 1, - ".serdes_tx_enc_err_o": 1, - ".serdes_rx_data_o": 1, - ".serdes_rx_k_o": 1, - ".serdes_rx_enc_err_o": 1, - ".serdes_rx_bitslide_o": 1, - ".tbi_refclk_i": 1, - ".tbi_rbclk_i": 1, - ".tbi_td_o": 1, - ".tbi_rd_i": 1, - ".tbi_syncen_o": 1, - ".tbi_loopen_o": 1, - ".tbi_prbsen_o": 1, - ".tbi_enable_o": 1, - "end": 4, - "else": 2, - "//": 3, - "wr_gtx_phy_virtex6": 1, - "#": 3, - ".g_simulation": 2, - "U_PHY": 1, - ".clk_ref_i": 2, - ".tx_clk_o": 1, - ".tx_data_i": 1, - ".tx_k_i": 1, - ".tx_disparity_o": 1, - ".tx_enc_err_o": 1, - ".rx_rbclk_o": 1, - ".rx_data_o": 1, - ".rx_k_o": 1, - ".rx_enc_err_o": 1, - ".rx_bitslide_o": 1, - ".rst_i": 1, - ".loopen_i": 1, - ".pad_txn0_o": 1, - ".pad_txp0_o": 1, - ".pad_rxn0_i": 1, - ".pad_rxp0_i": 1, - "endgenerate": 1, - "wr_endpoint": 1, - ".g_pcs_16bit": 1, - ".g_rx_buffer_size": 1, - ".g_with_rx_buffer": 1, - ".g_with_timestamper": 1, - ".g_with_dmtd": 1, - ".g_with_dpi_classifier": 1, - ".g_with_vlans": 1, - ".g_with_rtu": 1, - "DUT": 1, - ".clk_sys_i": 1, - ".clk_dmtd_i": 1, - ".rst_n_i": 1, - ".pps_csync_p1_i": 1, - ".src_dat_o": 1, - "snk.dat_i": 1, - ".src_adr_o": 1, - "snk.adr": 1, - ".src_sel_o": 1, - "snk.sel": 1, - ".src_cyc_o": 1, - "snk.cyc": 1, - ".src_stb_o": 1, - "snk.stb": 1, - ".src_we_o": 1, - "snk.we": 1, - ".src_stall_i": 1, - "snk.stall": 1, - ".src_ack_i": 1, - "snk.ack": 1, - ".src_err_i": 1, - ".rtu_full_i": 1, - ".rtu_rq_strobe_p1_o": 1, - ".rtu_rq_smac_o": 1, - ".rtu_rq_dmac_o": 1, - ".rtu_rq_vid_o": 1, - ".rtu_rq_has_vid_o": 1, - ".rtu_rq_prio_o": 1, - ".rtu_rq_has_prio_o": 1, - ".wb_cyc_i": 1, - "sys.cyc": 1, - ".wb_stb_i": 1, - "sys.stb": 1, - ".wb_we_i": 1, - "sys.we": 1, - ".wb_sel_i": 1, - "sys.sel": 1, - ".wb_adr_i": 1, - "sys.adr": 1, - ".wb_dat_i": 1, - "sys.dat_o": 1, - ".wb_dat_o": 1, - "sys.dat_i": 1, - ".wb_ack_o": 1, - "sys.ack": 1, - "endmodule": 2, - "fifo": 1, - "clk_50": 1, - "clk_2": 1, - "reset_n": 1, - "data_out": 1, - "empty": 1, - "priority_encoder": 1, - "INPUT_WIDTH": 3, - "OUTPUT_WIDTH": 3, - "logic": 2, - "-": 4, - "input_data": 2, - "output_data": 3, - "int": 1, - "ii": 6, - "always_comb": 1, - "for": 2, - "<": 1, - "+": 3, - "function": 1, - "integer": 2, - "log2": 4, - "x": 6, - "endfunction": 1 - }, - "Tcl": { - "#": 7, - "package": 2, - "require": 2, - "Tcl": 2, - "namespace": 6, - "eval": 2, - "stream": 61, - "{": 148, - "export": 3, - "[": 76, + "Logos": { + "%": 15, + "hook": 2, + "ABC": 2, + "-": 3, + "(": 8, + "id": 2, + ")": 8, "a": 1, - "-": 5, - "z": 1, - "]": 76, - "*": 19, - "}": 148, - "ensemble": 1, - "create": 7, - "proc": 28, - "first": 24, - "restCmdPrefix": 2, - "return": 22, - "list": 18, - "lassign": 11, - "foldl": 1, - "cmdPrefix": 19, - "initialValue": 7, - "args": 13, - "set": 34, - "numStreams": 3, - "llength": 5, - "if": 14, - "FoldlSingleStream": 2, - "lindex": 5, - "elseif": 3, - "FoldlMultiStream": 2, - "else": 5, - "Usage": 4, - "foreach": 5, - "numArgs": 7, - "varName": 7, - "body": 8, - "ForeachSingleStream": 2, - "(": 11, - ")": 11, - "&&": 2, - "%": 1, - "end": 2, - "items": 5, - "lrange": 1, - "ForeachMultiStream": 2, - "fromList": 2, - "_list": 4, - "index": 4, - "expr": 4, - "+": 1, - "isEmpty": 10, - "map": 1, - "MapSingleStream": 3, - "MapMultiStream": 3, - "rest": 22, - "select": 2, - "while": 6, - "take": 2, - "num": 3, - "||": 1, - "<": 1, - "toList": 1, - "res": 10, - "lappend": 8, - "#################################": 2, - "acc": 9, - "streams": 5, - "firsts": 6, - "restStreams": 6, - "uplevel": 4, - "nextItems": 4, - "msg": 1, - "code": 1, - "error": 1, - "level": 1, - "XDG": 11, - "variable": 4, - "DEFAULTS": 8, - "DATA_HOME": 4, - "CONFIG_HOME": 4, - "CACHE_HOME": 4, - "RUNTIME_DIR": 3, - "DATA_DIRS": 4, - "CONFIG_DIRS": 4, - "SetDefaults": 3, - "ne": 2, - "file": 9, - "join": 9, - "env": 8, - "HOME": 3, - ".local": 1, - "share": 3, - ".config": 1, - ".cache": 1, - "/usr": 2, - "local": 1, - "/etc": 1, - "xdg": 1, - "XDGVarSet": 4, - "var": 11, - "info": 1, - "exists": 1, - "XDG_": 4, - "Dir": 4, - "subdir": 16, - "dir": 5, - "dict": 2, - "get": 2, - "Dirs": 3, - "rawDirs": 3, - "split": 1, - "outDirs": 3, - "XDG_RUNTIME_DIR": 1 - }, - "Tea": { - "<%>": 1, - "template": 1, - "foo": 1 - }, - "TeX": { - "%": 135, - "ProvidesClass": 2, - "{": 463, - "problemset": 1, - "}": 469, - "DeclareOption*": 2, - "PassOptionsToClass": 2, - "final": 2, - "article": 2, - "DeclareOption": 2, - "worksheet": 1, - "providecommand": 45, - "@solutionvis": 3, - "expand": 1, - "@expand": 3, - "ProcessOptions": 2, - "relax": 3, - "LoadClass": 2, - "[": 81, - "pt": 5, - "letterpaper": 1, - "]": 80, - "RequirePackage": 20, - "top": 1, - "in": 20, - "bottom": 1, - "left": 15, - "right": 16, - "geometry": 1, - "pgfkeys": 1, - "For": 13, - "mathtable": 2, - "environment.": 3, - "tabularx": 1, - "pset": 1, - "heading": 2, - "float": 1, - "Used": 6, - "for": 21, - "floats": 1, - "(": 12, - "tables": 1, - "figures": 1, - "etc.": 1, - ")": 12, - "graphicx": 1, - "inserting": 3, - "images.": 1, - "enumerate": 2, - "the": 19, - "mathtools": 2, - "Required.": 7, - "Loads": 1, - "amsmath.": 1, - "amsthm": 1, - "theorem": 1, - "environments.": 1, - "amssymb": 1, - "booktabs": 1, - "esdiff": 1, - "derivatives": 4, - "and": 5, - "partial": 2, - "Optional.": 1, - "shortintertext.": 1, - "fancyhdr": 2, - "customizing": 1, - "headers/footers.": 1, - "lastpage": 1, - "page": 4, - "count": 1, - "header/footer.": 1, - "xcolor": 1, - "setting": 3, - "color": 3, - "of": 14, - "hyperlinks": 2, - "obeyFinal": 1, - "Disable": 1, - "todos": 1, - "by": 1, - "option": 1, - "class": 1, - "@todoclr": 2, - "linecolor": 1, - "red": 1, - "todonotes": 1, - "keeping": 1, - "track": 1, - "to": 16, - "-": 9, - "dos.": 1, - "colorlinks": 1, - "true": 1, - "linkcolor": 1, - "navy": 2, - "urlcolor": 1, - "black": 2, - "hyperref": 1, - "following": 2, - "urls": 2, - "references": 1, - "a": 2, - "document.": 1, - "url": 2, - "Enables": 1, - "with": 5, - "tag": 1, - "all": 2, - "hypcap": 1, - "definecolor": 2, - "gray": 1, - "To": 1, - "Dos.": 1, - "brightness": 1, - "RGB": 1, - "coloring": 1, - "setlength": 12, - "parskip": 1, - "ex": 2, - "Sets": 1, - "space": 8, - "between": 1, - "paragraphs.": 2, - "parindent": 2, - "Indent": 1, - "first": 1, - "line": 2, - "new": 1, - "let": 11, - "VERBATIM": 2, - "verbatim": 2, - "def": 18, - "verbatim@font": 1, - "small": 8, - "ttfamily": 1, - "usepackage": 2, - "caption": 1, - "footnotesize": 2, - "subcaption": 1, - "captionsetup": 4, - "table": 2, - "labelformat": 4, - "simple": 3, - "labelsep": 4, - "period": 3, - "labelfont": 4, - "bf": 4, - "figure": 2, - "subtable": 1, - "parens": 1, - "subfigure": 1, - "TRUE": 1, - "FALSE": 1, - "SHOW": 3, - "HIDE": 2, - "thispagestyle": 5, - "empty": 6, - "listoftodos": 1, - "clearpage": 4, - "pagenumbering": 1, - "arabic": 2, - "shortname": 2, - "#1": 40, - "authorname": 2, - "#2": 17, - "coursename": 3, - "#3": 8, - "assignment": 3, - "#4": 4, - "duedate": 2, - "#5": 2, - "begin": 11, - "minipage": 4, - "textwidth": 4, - "flushleft": 2, - "hypertarget": 1, - "@assignment": 2, - "textbf": 5, - "end": 12, - "flushright": 2, - "renewcommand": 10, - "headrulewidth": 1, - "footrulewidth": 1, - "pagestyle": 3, - "fancyplain": 4, - "fancyhf": 2, - "lfoot": 1, - "hyperlink": 1, - "cfoot": 1, - "rfoot": 1, - "thepage": 2, - "pageref": 1, - "LastPage": 1, - "newcounter": 1, - "theproblem": 3, - "Problem": 2, - "counter": 1, - "environment": 1, - "problem": 1, - "addtocounter": 2, - "setcounter": 5, - "equation": 1, - "noindent": 2, - ".": 3, - "textit": 1, - "Default": 2, - "is": 2, - "omit": 1, - "pagebreaks": 1, - "after": 1, - "solution": 2, - "qqed": 2, - "hfill": 3, - "rule": 1, - "mm": 2, - "ifnum": 3, - "pagebreak": 2, - "fi": 15, - "show": 1, - "solutions.": 1, - "vspace": 2, - "em": 8, - "Solution.": 1, - "ifnum#1": 2, - "else": 9, - "chap": 1, - "section": 2, - "Sum": 3, - "n": 4, - "ensuremath": 15, - "sum_": 2, - "from": 5, - "infsum": 2, - "infty": 2, - "Infinite": 1, - "sum": 1, - "Int": 1, - "x": 4, - "int_": 1, - "mathrm": 1, - "d": 1, - "Integrate": 1, - "respect": 1, - "Lim": 2, - "displaystyle": 2, - "lim_": 1, - "Take": 1, - "limit": 1, - "infinity": 1, - "f": 1, - "Frac": 1, - "/": 1, - "_": 1, - "Slanted": 1, - "fraction": 1, - "proper": 1, - "spacing.": 1, - "Usefule": 1, - "display": 2, - "fractions.": 1, - "eval": 1, - "vert_": 1, - "L": 1, - "hand": 2, - "sizing": 2, - "R": 1, - "D": 1, - "diff": 1, - "writing": 2, - "PD": 1, - "diffp": 1, - "full": 1, - "Forces": 1, - "style": 1, - "math": 4, - "mode": 4, - "Deg": 1, - "circ": 1, - "adding": 1, - "degree": 1, - "symbol": 4, - "even": 1, - "if": 1, - "not": 2, - "abs": 1, - "vert": 3, - "Absolute": 1, - "Value": 1, - "norm": 1, - "Vert": 2, - "Norm": 1, - "vector": 1, - "magnitude": 1, - "e": 1, - "times": 3, - "Scientific": 2, - "Notation": 2, - "E": 2, - "u": 1, - "text": 7, - "units": 1, - "Roman": 1, - "mc": 1, - "hspace": 3, - "comma": 1, - "into": 2, - "mtxt": 1, - "insterting": 1, - "on": 2, - "either": 1, - "side.": 1, - "Option": 1, - "preceding": 1, - "punctuation.": 1, - "prob": 1, - "P": 2, - "cndprb": 1, - "right.": 1, - "cov": 1, - "Cov": 1, - "twovector": 1, - "r": 3, - "array": 6, - "threevector": 1, - "fourvector": 1, - "vecs": 4, - "vec": 2, - "bm": 2, - "bolded": 2, - "arrow": 2, - "vect": 3, - "unitvecs": 1, - "hat": 2, - "unitvect": 1, - "Div": 1, - "del": 3, - "cdot": 1, - "Curl": 1, - "Grad": 1, - "NeedsTeXFormat": 1, - "LaTeX2e": 1, - "reedthesis": 1, - "/01/27": 1, - "The": 4, - "Reed": 5, - "College": 5, - "Thesis": 5, - "Class": 4, - "CurrentOption": 1, - "book": 2, - "AtBeginDocument": 1, - "fancyhead": 5, - "LE": 1, - "RO": 1, - "above": 1, - "makes": 2, - "your": 1, - "headers": 6, - "caps.": 2, - "If": 1, - "you": 1, - "would": 1, - "like": 1, - "different": 1, - "choose": 1, - "one": 1, - "options": 1, - "be": 3, - "sure": 1, - "remove": 1, - "both": 1, - "RE": 2, - "slshape": 2, - "nouppercase": 2, - "leftmark": 2, - "This": 2, - "RIGHT": 2, - "side": 2, - "pages": 2, - "italic": 1, - "use": 1, - "lowercase": 1, - "With": 1, - "Capitals": 1, - "When": 1, - "Specified.": 1, - "LO": 2, - "rightmark": 2, - "does": 1, - "same": 1, - "thing": 1, - "LEFT": 2, - "or": 1, - "scshape": 2, - "will": 2, - "And": 1, - "so": 1, - "fancy": 1, - "oldthebibliography": 2, - "thebibliography": 2, - "endoldthebibliography": 2, - "endthebibliography": 1, - "renewenvironment": 2, - "addcontentsline": 5, - "toc": 5, - "chapter": 9, - "bibname": 2, - "things": 1, - "psych": 1, - "majors": 1, - "comment": 1, - "out": 1, - "oldtheindex": 2, - "theindex": 2, - "endoldtheindex": 2, - "endtheindex": 1, - "indexname": 1, - "RToldchapter": 1, - "if@openright": 1, - "RTcleardoublepage": 3, - "global": 2, - "@topnum": 1, - "z@": 2, - "@afterindentfalse": 1, - "secdef": 1, - "@chapter": 2, - "@schapter": 1, - "c@secnumdepth": 1, - "m@ne": 2, - "if@mainmatter": 1, - "refstepcounter": 1, - "typeout": 1, - "@chapapp": 2, - "thechapter.": 1, - "thechapter": 1, - "space#1": 1, - "chaptermark": 1, - "addtocontents": 2, - "lof": 1, - "protect": 2, - "addvspace": 2, - "p@": 3, - "lot": 1, - "if@twocolumn": 3, - "@topnewpage": 1, - "@makechapterhead": 2, - "@afterheading": 1, - "newcommand": 2, - "if@twoside": 1, - "ifodd": 1, - "c@page": 1, - "hbox": 15, - "newpage": 3, - "RToldcleardoublepage": 1, - "cleardoublepage": 4, - "oddsidemargin": 2, - ".5in": 3, - "evensidemargin": 2, - "textheight": 4, - "topmargin": 6, - "addtolength": 8, - "headheight": 4, - "headsep": 3, - ".6in": 1, - "division#1": 1, - "gdef": 6, - "@division": 3, - "@latex@warning@no@line": 3, - "No": 3, - "noexpand": 3, - "division": 2, - "given": 3, - "department#1": 1, - "@department": 3, - "department": 1, - "thedivisionof#1": 1, - "@thedivisionof": 3, - "Division": 2, - "approvedforthe#1": 1, - "@approvedforthe": 3, - "advisor#1": 1, - "@advisor": 3, - "advisor": 1, - "altadvisor#1": 1, - "@altadvisor": 3, - "@altadvisortrue": 1, - "@empty": 1, - "newif": 1, - "if@altadvisor": 3, - "@altadvisorfalse": 1, - "contentsname": 1, - "Table": 1, - "Contents": 1, - "References": 1, - "l@chapter": 1, - "c@tocdepth": 1, - "addpenalty": 1, - "@highpenalty": 2, - "vskip": 4, - "@plus": 1, - "@tempdima": 2, - "begingroup": 1, - "rightskip": 1, - "@pnumwidth": 3, - "parfillskip": 1, - "leavevmode": 1, - "bfseries": 3, - "advance": 1, - "leftskip": 2, - "hskip": 1, - "nobreak": 2, - "normalfont": 1, - "leaders": 1, - "m@th": 1, - "mkern": 2, - "@dotsep": 2, - "mu": 2, - "hb@xt@": 1, - "hss": 1, - "par": 6, - "penalty": 1, - "endgroup": 1, - "newenvironment": 1, - "abstract": 1, - "@restonecoltrue": 1, - "onecolumn": 1, - "@restonecolfalse": 1, - "Abstract": 2, - "center": 7, - "fontsize": 7, - "selectfont": 6, - "if@restonecol": 1, - "twocolumn": 1, - "ifx": 1, - "@pdfoutput": 1, - "@undefined": 1, - "RTpercent": 3, - "@percentchar": 1, - "AtBeginDvi": 2, - "special": 2, - "LaTeX": 3, - "/12/04": 3, - "SN": 3, - "rawpostscript": 1, - "AtEndDocument": 1, - "pdfinfo": 1, - "/Creator": 1, - "maketitle": 1, - "titlepage": 2, - "footnoterule": 1, - "footnote": 1, - "thanks": 1, - "baselineskip": 2, - "setbox0": 2, - "Requirements": 2, - "Degree": 2, - "null": 3, - "vfil": 8, - "@title": 1, - "centerline": 8, - "wd0": 7, - "hrulefill": 5, - "A": 1, - "Presented": 1, - "In": 1, - "Partial": 1, - "Fulfillment": 1, - "Bachelor": 1, - "Arts": 1, - "bigskip": 2, - "lineskip": 1, - ".75em": 1, - "tabular": 2, - "t": 1, - "c": 5, - "@author": 1, - "@date": 1, - "Approved": 2, - "just": 1, - "below": 2, - "cm": 2, - "copy0": 1, - "approved": 1, - "major": 1, - "sign": 1, - "makebox": 6 - }, - "Turing": { - "function": 1, - "factorial": 4, - "(": 3, - "n": 9, - "int": 2, - ")": 3, - "real": 1, - "if": 2, - "then": 1, - "result": 2, - "else": 1, - "*": 1, - "-": 1, - "end": 3, - "var": 1, - "loop": 2, - "put": 3, - "..": 1, - "get": 1, - "exit": 1, - "when": 1 - }, - "TXL": { - "define": 12, - "program": 1, - "[": 38, - "expression": 9, - "]": 38, - "end": 12, - "term": 6, - "|": 3, - "addop": 2, - "primary": 4, - "mulop": 2, - "number": 10, - "(": 2, - ")": 2, - "-": 3, - "/": 3, - "rule": 12, - "main": 1, - "replace": 6, - "E": 3, - "construct": 1, - "NewE": 3, - "resolveAddition": 2, - "resolveSubtraction": 2, - "resolveMultiplication": 2, - "resolveDivision": 2, - "resolveParentheses": 2, - "where": 1, - "not": 1, - "by": 6, - "N1": 8, - "+": 2, - "N2": 8, - "*": 2, - "N": 2 - }, - "TypeScript": { - "class": 3, - "Animal": 4, - "{": 9, - "constructor": 3, - "(": 18, - "public": 1, - "name": 5, - ")": 18, - "}": 9, - "move": 3, - "meters": 2, - "alert": 3, - "this.name": 1, - "+": 3, - ";": 8, - "Snake": 2, - "extends": 2, - "super": 2, - "super.move": 2, - "Horse": 2, - "var": 2, - "sam": 1, - "new": 2, - "tom": 1, - "sam.move": 1, - "tom.move": 1, - "console.log": 1 - }, - "UnrealScript": { - "//": 5, - "-": 220, - "class": 18, - "MutU2Weapons": 1, - "extends": 2, - "Mutator": 1, - "config": 18, - "(": 189, - "U2Weapons": 1, - ")": 189, - ";": 295, - "var": 30, - "string": 25, - "ReplacedWeaponClassNames0": 1, - "ReplacedWeaponClassNames1": 1, - "ReplacedWeaponClassNames2": 1, - "ReplacedWeaponClassNames3": 1, - "ReplacedWeaponClassNames4": 1, - "ReplacedWeaponClassNames5": 1, - "ReplacedWeaponClassNames6": 1, - "ReplacedWeaponClassNames7": 1, - "ReplacedWeaponClassNames8": 1, - "ReplacedWeaponClassNames9": 1, - "ReplacedWeaponClassNames10": 1, - "ReplacedWeaponClassNames11": 1, - "ReplacedWeaponClassNames12": 1, - "bool": 18, - "bConfigUseU2Weapon0": 1, - "bConfigUseU2Weapon1": 1, - "bConfigUseU2Weapon2": 1, - "bConfigUseU2Weapon3": 1, - "bConfigUseU2Weapon4": 1, - "bConfigUseU2Weapon5": 1, - "bConfigUseU2Weapon6": 1, - "bConfigUseU2Weapon7": 1, - "bConfigUseU2Weapon8": 1, - "bConfigUseU2Weapon9": 1, - "bConfigUseU2Weapon10": 1, - "bConfigUseU2Weapon11": 1, - "bConfigUseU2Weapon12": 1, - "//var": 8, - "byte": 4, - "bUseU2Weapon": 1, - "[": 125, - "]": 125, - "": 7, - "ReplacedWeaponClasses": 3, - "": 2, - "ReplacedWeaponPickupClasses": 1, - "": 3, - "ReplacedAmmoPickupClasses": 1, - "U2WeaponClasses": 2, - "//GE": 17, - "For": 3, - "default": 12, - "properties": 3, - "ONLY": 3, - "U2WeaponPickupClassNames": 1, - "U2AmmoPickupClassNames": 2, - "bIsVehicle": 4, - "bNotVehicle": 3, - "localized": 2, - "U2WeaponDisplayText": 1, - "U2WeaponDescText": 1, - "GUISelectOptions": 1, - "int": 10, - "FirePowerMode": 1, - "bExperimental": 3, - "bUseFieldGenerator": 2, - "bUseProximitySensor": 2, - "bIntegrateShieldReward": 2, - "IterationNum": 8, - "Weapons.Length": 1, - "const": 1, - "DamageMultiplier": 28, - "DamagePercentage": 3, - "bUseXMPFeel": 4, - "FlashbangModeString": 1, - "struct": 1, - "WeaponInfo": 2, - "{": 28, - "ReplacedWeaponClass": 1, - "Generated": 4, - "from": 6, - "ReplacedWeaponClassName.": 2, - "This": 3, - "is": 6, - "what": 1, - "we": 3, - "replace.": 1, - "ReplacedWeaponPickupClass": 1, - "UNUSED": 1, - "ReplacedAmmoPickupClass": 1, - "WeaponClass": 1, - "the": 31, - "weapon": 10, - "are": 1, - "going": 1, - "to": 4, - "put": 1, - "inside": 1, - "world.": 1, - "WeaponPickupClassName": 1, - "WeponClass.": 1, - "AmmoPickupClassName": 1, - "WeaponClass.": 1, - "bEnabled": 1, - "Structs": 1, - "can": 2, - "d": 1, - "thus": 1, - "still": 1, - "require": 1, - "bConfigUseU2WeaponX": 1, - "indicates": 1, - "that": 3, - "spawns": 1, - "a": 2, - "vehicle": 3, - "deployable": 1, - "turrets": 1, - ".": 2, - "These": 1, - "only": 2, - "work": 1, - "in": 4, - "gametypes": 1, - "duh.": 1, - "Opposite": 1, - "of": 1, - "works": 1, - "non": 1, - "gametypes.": 2, - "Think": 1, - "shotgun.": 1, - "}": 27, - "Weapons": 31, - "function": 5, - "PostBeginPlay": 1, - "local": 8, - "FireMode": 8, - "x": 65, - "//local": 3, - "ReplacedWeaponPickupClassName": 1, - "//IterationNum": 1, - "ArrayCount": 2, - "Level.Game.bAllowVehicles": 4, - "He": 1, - "he": 1, - "neat": 1, - "way": 1, - "get": 1, - "required": 1, - "number.": 1, - "for": 11, - "<": 9, - "+": 18, - ".bEnabled": 3, - "GetPropertyText": 5, - "needed": 1, - "use": 1, - "variables": 1, - "an": 1, - "array": 2, - "like": 1, - "fashion.": 1, - "//bUseU2Weapon": 1, - ".ReplacedWeaponClass": 5, - "DynamicLoadObject": 2, - "//ReplacedWeaponClasses": 1, - "//ReplacedWeaponPickupClassName": 1, - ".default.PickupClass": 1, - "if": 55, - ".ReplacedWeaponClass.default.FireModeClass": 4, - "None": 10, - "&&": 15, - ".default.AmmoClass": 1, - ".default.AmmoClass.default.PickupClass": 2, - ".ReplacedAmmoPickupClass": 2, - "break": 1, - ".WeaponClass": 7, - ".WeaponPickupClassName": 1, - ".WeaponClass.default.PickupClass": 1, - ".AmmoPickupClassName": 2, - ".bIsVehicle": 2, - ".bNotVehicle": 2, - "Super.PostBeginPlay": 1, - "ValidReplacement": 6, - "return": 47, - "CheckReplacement": 1, - "Actor": 1, - "Other": 23, - "out": 2, - "bSuperRelevant": 3, - "i": 12, - "WeaponLocker": 3, - "L": 2, - "xWeaponBase": 3, - ".WeaponType": 2, - "false": 3, - "true": 5, - "Weapon": 1, - "Other.IsA": 2, - "Other.Class": 2, - "Ammo": 1, - "ReplaceWith": 1, - "L.Weapons.Length": 1, - "L.Weapons": 2, - "//STARTING": 1, - "WEAPON": 1, - "xPawn": 6, - ".RequiredEquipment": 3, - "True": 2, - "Special": 1, - "handling": 1, - "Shield": 2, - "Reward": 2, - "integration": 1, - "ShieldPack": 7, - ".SetStaticMesh": 1, - "StaticMesh": 1, - ".Skins": 1, - "Shader": 2, - ".RepSkin": 1, - ".SetDrawScale": 1, - ".SetCollisionSize": 1, - ".PickupMessage": 1, - ".PickupSound": 1, - "Sound": 1, - "Super.CheckReplacement": 1, - "GetInventoryClassOverride": 1, - "InventoryClassName": 3, - "Super.GetInventoryClassOverride": 1, - "static": 2, - "FillPlayInfo": 1, - "PlayInfo": 3, - "": 1, - "Recs": 4, - "WeaponOptions": 17, - "Super.FillPlayInfo": 1, - ".static.GetWeaponList": 1, - "Recs.Length": 1, - ".ClassName": 1, - ".FriendlyName": 1, - "PlayInfo.AddSetting": 33, - "default.RulesGroup": 33, - "default.U2WeaponDisplayText": 33, - "event": 3, - "GetDescriptionText": 1, - "PropName": 35, - "default.U2WeaponDescText": 33, - "Super.GetDescriptionText": 1, - "PreBeginPlay": 1, - "float": 3, - "k": 29, - "Multiplier.": 1, - "Super.PreBeginPlay": 1, - "/100.0": 1, - "//log": 1, - "@k": 1, - "//Sets": 1, - "various": 1, - "settings": 1, - "match": 1, - "different": 1, - "games": 1, - ".default.DamagePercentage": 1, - "//Original": 1, - "U2": 3, - "compensate": 1, - "division": 1, - "errors": 1, - "Class": 105, - ".default.DamageMin": 12, - "*": 54, - ".default.DamageMax": 12, - ".default.Damage": 27, - ".default.myDamage": 4, - "//Dampened": 1, - "already": 1, - "no": 2, - "need": 1, - "rewrite": 1, - "else": 1, - "//General": 2, - "XMP": 4, - ".default.Spread": 1, - ".default.MaxAmmo": 7, - ".default.Speed": 8, - ".default.MomentumTransfer": 4, - ".default.ClipSize": 4, - ".default.FireLastReloadTime": 3, - ".default.DamageRadius": 4, - ".default.LifeSpan": 4, - ".default.ShakeRadius": 1, - ".default.ShakeMagnitude": 1, - ".default.MaxSpeed": 5, - ".default.FireRate": 3, - ".default.ReloadTime": 3, - "//3200": 1, - "too": 1, - "much": 1, - ".default.VehicleDamageScaling": 2, - "*k": 28, - "//Experimental": 1, - "options": 1, - "lets": 1, - "you": 2, - "Unuse": 1, - "EMPimp": 1, - "projectile": 1, - "and": 3, - "fire": 1, - "two": 1, - "CAR": 1, - "barrels": 1, - "//CAR": 1, - "nothing": 1, - "U2Weapons.U2AssaultRifleFire": 1, - "U2Weapons.U2AssaultRifleAltFire": 1, - "U2ProjectileConcussionGrenade": 1, - "U2Weapons.U2AssaultRifleInv": 1, - "U2Weapons.U2WeaponEnergyRifle": 1, - "U2Weapons.U2WeaponFlameThrower": 1, - "U2Weapons.U2WeaponPistol": 1, - "U2Weapons.U2AutoTurretDeploy": 1, - "U2Weapons.U2WeaponRocketLauncher": 1, - "U2Weapons.U2WeaponGrenadeLauncher": 1, - "U2Weapons.U2WeaponSniper": 2, - "U2Weapons.U2WeaponRocketTurret": 1, - "U2Weapons.U2WeaponLandMine": 1, - "U2Weapons.U2WeaponLaserTripMine": 1, - "U2Weapons.U2WeaponShotgun": 1, - "s": 7, - "Minigun.": 1, - "Enable": 5, - "Shock": 1, - "Lance": 1, - "Energy": 2, - "Rifle": 3, - "What": 7, - "should": 7, - "be": 8, - "replaced": 8, - "with": 9, - "Rifle.": 3, - "By": 7, - "it": 7, - "Bio": 1, - "Magnum": 2, - "Pistol": 1, - "Pistol.": 1, - "Onslaught": 1, - "Grenade": 1, - "Launcher.": 2, - "Shark": 2, - "Rocket": 4, - "Launcher": 1, - "Flak": 1, - "Cannon.": 1, - "Should": 1, - "Lightning": 1, - "Gun": 2, - "Widowmaker": 2, - "Sniper": 3, - "Classic": 1, - "here.": 1, - "Turret": 2, - "delpoyable": 1, - "deployable.": 1, - "Redeemer.": 1, - "Laser": 2, - "Trip": 2, - "Mine": 1, - "Mine.": 1, - "t": 2, - "replace": 1, - "Link": 1, - "matches": 1, - "vehicles.": 1, - "Crowd": 1, - "Pleaser": 1, - "Shotgun.": 1, - "have": 1, - "shields": 1, - "or": 2, - "damage": 1, - "filtering.": 1, - "If": 1, - "checked": 1, - "mutator": 1, - "produces": 1, - "Unreal": 4, - "II": 4, - "shield": 1, - "pickups.": 1, - "Choose": 1, - "between": 2, - "white": 1, - "overlay": 3, - "depending": 2, - "on": 2, - "player": 2, - "view": 1, - "style": 1, - "distance": 1, - "foolproof": 1, - "FM_DistanceBased": 1, - "Arena": 1, - "Add": 1, - "weapons": 1, - "other": 1, - "Fully": 1, - "customisable": 1, - "choose": 1, - "behaviour.": 1, - "US3HelloWorld": 1, - "GameInfo": 1, - "InitGame": 1, - "Options": 1, - "Error": 1, - "log": 1, - "defaultproperties": 1 - }, - "VCL": { - "sub": 23, - "vcl_recv": 2, - "{": 50, - "if": 14, - "(": 50, - "req.request": 18, - "&&": 14, - ")": 50, - "return": 33, - "pipe": 4, - ";": 48, - "}": 50, - "pass": 9, - "req.http.Authorization": 2, - "||": 4, - "req.http.Cookie": 2, - "lookup": 2, - "vcl_pipe": 2, - "vcl_pass": 2, - "vcl_hash": 2, - "set": 10, - "req.hash": 3, - "+": 17, - "req.url": 2, - "req.http.host": 4, - "else": 3, - "server.ip": 2, - "hash": 2, - "vcl_hit": 2, - "obj.cacheable": 2, - "deliver": 8, - "vcl_miss": 2, - "fetch": 3, - "vcl_fetch": 2, - "obj.http.Set": 1, - "-": 21, - "Cookie": 2, - "obj.prefetch": 1, - "s": 3, - "vcl_deliver": 2, - "vcl_discard": 1, - "discard": 2, - "vcl_prefetch": 1, - "vcl_timeout": 1, - "vcl_error": 2, - "obj.http.Content": 2, - "Type": 2, - "synthetic": 2, - "utf": 2, - "//W3C//DTD": 2, - "XHTML": 2, - "Strict//EN": 2, - "http": 3, - "//www.w3.org/TR/xhtml1/DTD/xhtml1": 2, - "strict.dtd": 2, - "obj.status": 4, - "obj.response": 6, - "req.xid": 2, - "//www.varnish": 1, - "cache.org/": 1, - "req.restarts": 1, - "req.http.x": 1, - "forwarded": 1, - "for": 1, - "req.http.X": 3, - "Forwarded": 3, - "For": 3, - "client.ip": 2, - "hash_data": 3, - "beresp.ttl": 2, - "<": 1, - "beresp.http.Set": 1, - "beresp.http.Vary": 1, - "hit_for_pass": 1, - "obj.http.Retry": 1, - "After": 1, - "vcl_init": 1, - "ok": 2, - "vcl_fini": 1 - }, - "Verilog": { - "////////////////////////////////////////////////////////////////////////////////": 14, - "//": 117, - "timescale": 10, - "ns": 8, - "/": 11, - "ps": 8, - "module": 18, - "button_debounce": 3, - "(": 378, - "input": 68, - "clk": 40, - "clock": 3, - "reset_n": 32, - "asynchronous": 2, - "reset": 13, - "button": 25, - "bouncy": 1, - "output": 42, - "reg": 26, - "debounce": 6, - "debounced": 1, - "-": 73, - "cycle": 1, - "signal": 3, - ")": 378, - ";": 287, - "parameter": 7, - "CLK_FREQUENCY": 4, - "DEBOUNCE_HZ": 4, - "localparam": 4, - "COUNT_VALUE": 2, - "WAIT": 6, - "FIRE": 4, - "COUNT": 4, - "[": 179, - "]": 179, - "state": 6, - "next_state": 6, - "count": 6, - "always": 23, - "@": 16, - "posedge": 11, - "or": 14, - "negedge": 8, - "<": 47, - "begin": 46, - "if": 23, - "end": 48, - "else": 22, - "case": 3, - "<=>": 4, - "1": 7, - "endcase": 3, - "default": 2, - "endmodule": 18, - "control": 1, - "en": 13, - "dsp_sel": 9, - "an": 6, - "wire": 67, - "a": 5, - "b": 3, - "c": 3, - "d": 3, - "e": 3, - "f": 2, - "g": 2, - "h": 2, - "i": 62, - "j": 2, - "k": 2, - "l": 2, - "assign": 23, - "FDRSE": 6, - "#": 10, - ".INIT": 6, - "b0": 27, - "Synchronous": 12, - ".S": 6, - "b1": 19, - "Initial": 6, - "value": 6, - "of": 8, - "register": 6, - "DFF2": 1, - ".Q": 6, - "Data": 13, - ".C": 6, - "Clock": 14, - ".CE": 6, - "enable": 6, - ".D": 6, - ".R": 6, - "set": 6, - "DFF0": 1, - "DFF6": 1, - "DFF4": 1, - "DFF10": 1, - "DFF8": 1, - "hex_display": 1, - "num": 5, - "hex0": 2, - "hex1": 2, - "hex2": 2, - "hex3": 2, - "seg_7": 4, - "hex_group0": 1, - ".num": 4, - ".en": 4, - ".seg": 4, - "hex_group1": 1, - "hex_group2": 1, - "hex_group3": 1, - "mux": 1, - "opA": 4, - "opB": 3, - "sum": 5, - "out": 5, - "cout": 4, - "b0000": 1, - "b01": 1, - "b11": 1, - "pipeline_registers": 1, - "BIT_WIDTH": 5, - "pipe_in": 4, - "pipe_out": 5, - "NUMBER_OF_STAGES": 7, - "generate": 3, - "genvar": 3, - "*": 4, - "BIT_WIDTH*": 5, - "pipe_gen": 6, - "for": 4, - "+": 36, - "pipeline": 2, - "BIT_WIDTH*i": 2, - "endgenerate": 3, - "ps2_mouse": 1, - "Input": 2, - "Reset": 1, - "inout": 2, - "ps2_clk": 3, - "PS2": 2, - "Bidirectional": 2, - "ps2_dat": 3, - "the_command": 2, - "Command": 1, - "to": 3, - "send": 2, - "mouse": 1, - "send_command": 2, - "Signal": 2, - "command_was_sent": 2, - "command": 1, - "finished": 1, - "sending": 1, - "error_communication_timed_out": 3, - "received_data": 2, - "Received": 1, - "data": 4, - "received_data_en": 4, - "If": 1, - "new": 1, - "has": 1, - "been": 1, - "received": 1, - "start_receiving_data": 3, - "wait_for_incoming_data": 3, - "ps2_clk_posedge": 3, - "Internal": 2, - "Wires": 1, - "ps2_clk_negedge": 3, - "idle_counter": 4, - "Registers": 2, - "ps2_clk_reg": 4, - "ps2_data_reg": 5, - "last_ps2_clk": 4, - "ns_ps2_transceiver": 13, - "State": 1, - "Machine": 1, - "s_ps2_transceiver": 8, - "PS2_STATE_0_IDLE": 10, - "h1": 1, - "PS2_STATE_2_COMMAND_OUT": 2, - "h3": 1, - "PS2_STATE_4_END_DELAYED": 4, - "Defaults": 1, - "PS2_STATE_1_DATA_IN": 3, - "||": 1, - "PS2_STATE_3_END_TRANSFER": 3, - "h00": 1, - "&&": 3, - "h01": 1, - "ps2_mouse_cmdout": 1, - "mouse_cmdout": 1, - ".clk": 6, - "Inputs": 2, - ".reset": 2, - ".the_command": 1, - ".send_command": 1, - ".ps2_clk_posedge": 2, - ".ps2_clk_negedge": 2, - ".ps2_clk": 1, - "Bidirectionals": 1, - ".ps2_dat": 1, - ".command_was_sent": 1, - "Outputs": 2, - ".error_communication_timed_out": 1, - "ps2_mouse_datain": 1, - "mouse_datain": 1, - ".wait_for_incoming_data": 1, - ".start_receiving_data": 1, - ".ps2_data": 1, - ".received_data": 1, - ".received_data_en": 1, - "ns/1ps": 2, - "e0": 1, - "x": 41, - "y": 21, - "{": 11, - "}": 11, - "e1": 1, - "ch": 1, - "z": 7, - "o": 6, - "&": 6, - "maj": 1, - "|": 2, - "s0": 1, - "s1": 1, - "sign_extender": 1, - "INPUT_WIDTH": 5, - "OUTPUT_WIDTH": 4, - "original": 3, - "sign_extended_original": 2, - "sign_extend": 3, - "gen_sign_extend": 1, - "sqrt_pipelined": 3, - "start": 12, - "optional": 2, - "INPUT_BITS": 28, - "radicand": 12, - "unsigned": 2, - "data_valid": 7, - "valid": 2, - "OUTPUT_BITS": 14, - "root": 8, - "number": 2, - "bits": 2, - "any": 1, - "integer": 1, - "%": 3, - "start_gen": 7, - "propagation": 1, - "OUTPUT_BITS*INPUT_BITS": 9, - "root_gen": 15, - "values": 3, - "radicand_gen": 10, - "mask_gen": 9, - "mask": 3, - "mask_4": 1, - "is": 4, - "odd": 1, - "this": 2, - "INPUT_BITS*": 27, - "<<": 2, - "i/2": 2, - "even": 1, - "pipeline_stage": 1, - "INPUT_BITS*i": 5, - "t_button_debounce": 1, - ".CLK_FREQUENCY": 1, - ".DEBOUNCE_HZ": 1, - ".reset_n": 3, - ".button": 1, - ".debounce": 1, - "initial": 3, - "bx": 4, - "#10": 10, - "#5": 3, - "#100": 1, - "#0.1": 8, - "t_div_pipelined": 1, - "dividend": 3, - "divisor": 5, - "div_by_zero": 2, - "quotient": 2, - "quotient_correct": 1, - "BITS": 2, - "div_pipelined": 2, - ".BITS": 1, - ".dividend": 1, - ".divisor": 1, - ".quotient": 1, - ".div_by_zero": 1, - ".start": 2, - ".data_valid": 2, - "#50": 2, - "#1": 1, - "#1000": 1, - "finish": 2, - "t_sqrt_pipelined": 1, - ".INPUT_BITS": 1, - ".radicand": 1, - ".root": 1, - "#10000": 1, - "vga": 1, - "wb_clk_i": 6, - "Mhz": 1, - "VDU": 1, - "wb_rst_i": 6, - "wb_dat_i": 3, - "wb_dat_o": 2, - "wb_adr_i": 3, - "wb_we_i": 3, - "wb_tga_i": 5, - "wb_sel_i": 3, - "wb_stb_i": 2, - "wb_cyc_i": 2, - "wb_ack_o": 2, - "vga_red_o": 2, - "vga_green_o": 2, - "vga_blue_o": 2, - "horiz_sync": 2, - "vert_sync": 2, - "csrm_adr_o": 2, - "csrm_sel_o": 2, - "csrm_we_o": 2, - "csrm_dat_o": 2, - "csrm_dat_i": 2, - "csr_adr_i": 3, - "csr_stb_i": 2, - "conf_wb_dat_o": 3, - "conf_wb_ack_o": 3, - "mem_wb_dat_o": 3, - "mem_wb_ack_o": 3, - "csr_adr_o": 2, - "csr_dat_i": 3, - "csr_stb_o": 3, - "v_retrace": 3, - "vh_retrace": 3, - "w_vert_sync": 3, - "shift_reg1": 3, - "graphics_alpha": 4, - "memory_mapping1": 3, - "write_mode": 3, - "raster_op": 3, - "read_mode": 3, - "bitmask": 3, - "set_reset": 3, - "enable_set_reset": 3, - "map_mask": 3, - "x_dotclockdiv2": 3, - "chain_four": 3, - "read_map_select": 3, - "color_compare": 3, - "color_dont_care": 3, - "wbm_adr_o": 3, - "wbm_sel_o": 3, - "wbm_we_o": 3, - "wbm_dat_o": 3, - "wbm_dat_i": 3, - "wbm_stb_o": 3, - "wbm_ack_i": 3, - "stb": 4, - "cur_start": 3, - "cur_end": 3, - "start_addr": 2, - "vcursor": 3, - "hcursor": 3, - "horiz_total": 3, - "end_horiz": 3, - "st_hor_retr": 3, - "end_hor_retr": 3, - "vert_total": 3, - "end_vert": 3, - "st_ver_retr": 3, - "end_ver_retr": 3, - "pal_addr": 3, - "pal_we": 3, - "pal_read": 3, - "pal_write": 3, - "dac_we": 3, - "dac_read_data_cycle": 3, - "dac_read_data_register": 3, - "dac_read_data": 3, - "dac_write_data_cycle": 3, - "dac_write_data_register": 3, - "dac_write_data": 3, - "vga_config_iface": 1, - "config_iface": 1, - ".wb_clk_i": 2, - ".wb_rst_i": 2, - ".wb_dat_i": 2, - ".wb_dat_o": 2, - ".wb_adr_i": 2, - ".wb_we_i": 2, - ".wb_sel_i": 2, - ".wb_stb_i": 2, - ".wb_ack_o": 2, - ".shift_reg1": 2, - ".graphics_alpha": 2, - ".memory_mapping1": 2, - ".write_mode": 2, - ".raster_op": 2, - ".read_mode": 2, - ".bitmask": 2, - ".set_reset": 2, - ".enable_set_reset": 2, - ".map_mask": 2, - ".x_dotclockdiv2": 2, - ".chain_four": 2, - ".read_map_select": 2, - ".color_compare": 2, - ".color_dont_care": 2, - ".pal_addr": 2, - ".pal_we": 2, - ".pal_read": 2, - ".pal_write": 2, - ".dac_we": 2, - ".dac_read_data_cycle": 2, - ".dac_read_data_register": 2, - ".dac_read_data": 2, - ".dac_write_data_cycle": 2, - ".dac_write_data_register": 2, - ".dac_write_data": 2, - ".cur_start": 2, - ".cur_end": 2, - ".start_addr": 1, - ".vcursor": 2, - ".hcursor": 2, - ".horiz_total": 2, - ".end_horiz": 2, - ".st_hor_retr": 2, - ".end_hor_retr": 2, - ".vert_total": 2, - ".end_vert": 2, - ".st_ver_retr": 2, - ".end_ver_retr": 2, - ".v_retrace": 2, - ".vh_retrace": 2, - "vga_lcd": 1, - "lcd": 1, - ".rst": 1, - ".csr_adr_o": 1, - ".csr_dat_i": 1, - ".csr_stb_o": 1, - ".vga_red_o": 1, - ".vga_green_o": 1, - ".vga_blue_o": 1, - ".horiz_sync": 1, - ".vert_sync": 1, - "vga_cpu_mem_iface": 1, - "cpu_mem_iface": 1, - ".wbs_adr_i": 1, - ".wbs_sel_i": 1, - ".wbs_we_i": 1, - ".wbs_dat_i": 1, - ".wbs_dat_o": 1, - ".wbs_stb_i": 1, - ".wbs_ack_o": 1, - ".wbm_adr_o": 1, - ".wbm_sel_o": 1, - ".wbm_we_o": 1, - ".wbm_dat_o": 1, - ".wbm_dat_i": 1, - ".wbm_stb_o": 1, - ".wbm_ack_i": 1, - "vga_mem_arbitrer": 1, - "mem_arbitrer": 1, - ".clk_i": 1, - ".rst_i": 1, - ".csr_adr_i": 1, - ".csr_dat_o": 1, - ".csr_stb_i": 1, - ".csrm_adr_o": 1, - ".csrm_sel_o": 1, - ".csrm_we_o": 1, - ".csrm_dat_o": 1, - ".csrm_dat_i": 1 - }, - "VHDL": { - "-": 2, - "VHDL": 1, - "example": 1, - "file": 1, - "library": 1, - "ieee": 1, - ";": 7, - "use": 1, - "ieee.std_logic_1164.all": 1, - "entity": 2, - "inverter": 2, - "is": 2, - "port": 1, - "(": 1, - "a": 2, - "in": 1, - "std_logic": 2, - "b": 2, - "out": 1, - ")": 1, - "end": 2, - "architecture": 2, - "rtl": 1, - "of": 1, - "begin": 1, - "<": 1, - "not": 1 - }, - "VimL": { - "no": 1, - "toolbar": 1, - "set": 7, - "guioptions": 1, - "-": 1, - "T": 1, - "nocompatible": 1, - "ignorecase": 1, - "incsearch": 1, - "smartcase": 1, - "showmatch": 1, - "showcmd": 1, - "syntax": 1, - "on": 1 - }, - "Visual Basic": { - "VERSION": 1, - "CLASS": 1, - "BEGIN": 1, - "MultiUse": 1, - "-": 9, - "NotPersistable": 1, - "DataBindingBehavior": 1, - "vbNone": 1, - "MTSTransactionMode": 1, - "*************************************************************************************************************************************************************************************************************************************************": 2, - "Copyright": 1, - "(": 20, - "c": 1, - ")": 20, - "David": 1, - "Briant": 1, - "All": 1, - "rights": 1, - "reserved": 1, - "Option": 1, - "Explicit": 1, - "Private": 25, - "Declare": 3, - "Function": 5, - "apiSetProp": 4, - "Lib": 3, - "Alias": 3, - "ByVal": 6, - "hwnd": 2, - "As": 34, - "Long": 10, - "lpString": 2, - "String": 13, - "hData": 1, - "apiGlobalAddAtom": 3, - "apiSetForegroundWindow": 1, - "myMouseEventsForm": 5, - "fMouseEventsForm": 2, - "WithEvents": 3, - "myAST": 3, - "cTP_AdvSysTray": 2, - "Attribute": 3, - "myAST.VB_VarHelpID": 1, - "myClassName": 2, - "myWindowName": 2, - "Const": 9, - "TEN_MILLION": 1, - "Single": 1, - "myListener": 1, - "VLMessaging.VLMMMFileListener": 1, - "myListener.VB_VarHelpID": 1, - "myMMFileTransports": 2, - "VLMessaging.VLMMMFileTransports": 1, - "myMMFileTransports.VB_VarHelpID": 1, - "myMachineID": 1, - "myRouterSeed": 1, - "myRouterIDsByMMTransportID": 1, - "New": 6, - "Dictionary": 3, - "myMMTransportIDsByRouterID": 2, - "myDirectoryEntriesByIDString": 1, - "GET_ROUTER_ID": 1, - "GET_ROUTER_ID_REPLY": 1, - "REGISTER_SERVICE": 1, - "REGISTER_SERVICE_REPLY": 1, - "UNREGISTER_SERVICE": 1, - "UNREGISTER_SERVICE_REPLY": 1, - "GET_SERVICES": 1, - "GET_SERVICES_REPLY": 1, - "Initialize": 1, - "/": 1, - "Release": 1, - "hide": 1, - "us": 1, - "from": 2, - "the": 7, - "Applications": 1, - "list": 1, - "in": 1, - "Windows": 1, - "Task": 1, - "Manager": 1, - "App.TaskVisible": 1, - "False": 1, - "create": 1, - "tray": 1, - "icon": 1, - "Set": 5, - "myAST.create": 1, - "myMouseEventsForm.icon": 1, - "make": 1, - "myself": 1, - "easily": 2, - "found": 1, - "myMouseEventsForm.hwnd": 3, - "End": 11, - "Sub": 9, - "shutdown": 1, - "myAST.destroy": 1, - "Nothing": 2, - "Unload": 1, - "myAST_RButtonUp": 1, - "Dim": 1, - "epm": 1, - "cTP_EasyPopupMenu": 1, - "menuItemSelected": 1, - "epm.addMenuItem": 3, - "MF_STRING": 3, - "epm.addSubmenuItem": 2, - "MF_SEPARATOR": 1, - "MF_CHECKED": 1, - "route": 2, - "to": 4, - "a": 4, - "remote": 1, - "machine": 1, - "Else": 1, - "for": 4, - "moment": 1, - "just": 1, - "between": 1, - "MMFileTransports": 1, - "If": 4, - "myMMTransportIDsByRouterID.Exists": 1, - "message.toAddress.RouterID": 2, - "Then": 1, - "transport": 1, - "transport.send": 1, - "messageToBytes": 1, - "message": 1, - "directoryEntryIDString": 2, - "serviceType": 2, - "address": 1, - "VLMAddress": 1, - "&": 7, - "address.MachineID": 1, - "address.RouterID": 1, - "address.AgentID": 1, - "myMMFileTransports_disconnecting": 1, - "id": 1, - "oReceived": 2, - "Boolean": 1, - "True": 1, - "@Code": 1, - "ViewData": 1, - "Code": 1, - "@section": 1, - "featured": 1, - "
": 1, - "Section": 1, - "

": 1, - "We": 1, - "suggest": 1, - "following": 1, - "

": 1, - "
    ": 1, - "
  1. ": 3, - "
    ": 3, - "Getting": 1, - "Started": 1, - "
    ": 3, - "gives": 2, - "powerful": 1, - "patterns": 1, - "based": 1, - "way": 1, - "build": 1, - "dynamic": 1, - "websites": 1, - "that": 5, - "enables": 1, - "clean": 1, - "separation": 1, - "of": 2, - "concerns": 1, - "full": 1, - "control": 1, - "over": 1, - "markup": 1, - "enjoyable": 1, - "agile": 1, - "development.": 1, - "includes": 1, - "many": 1, - "enable": 1, - "fast": 1, - "TDD": 1, - "friendly": 1, - "development": 1, - "creating": 1, - "sophisticated": 1, - "applications": 1, - "use": 1, - "latest": 1, - "web": 2, - "standards.": 1, - "Learn": 3, - "
  2. ": 3, - "Add": 1, - "NuGet": 2, - "packages": 1, - "jump": 1, - "start": 1, - "your": 2, - "coding": 1, - "makes": 1, - "it": 1, - "easy": 1, - "install": 1, - "update": 1, - "free": 1, - "libraries": 1, - "tools.": 1, - "Find": 1, - "Web": 1, - "Hosting": 1, - "You": 1, - "can": 1, - "find": 1, - "hosting": 1, - "company": 1, - "offers": 1, - "right": 1, - "mix": 1, - "price": 1, - "applications.": 1, - "
": 1, - "Module": 2, - "Module1": 1, - "Main": 1, - "Console.Out.WriteLine": 2 - }, - "Volt": { - "module": 1, - "main": 2, - ";": 53, - "import": 7, - "core.stdc.stdio": 1, - "core.stdc.stdlib": 1, - "watt.process": 1, - "watt.path": 1, - "results": 1, - "list": 1, - "cmd": 1, - "int": 8, - "(": 37, - ")": 37, - "{": 12, - "auto": 6, - "cmdGroup": 2, - "new": 3, - "CmdGroup": 1, - "bool": 4, - "printOk": 2, - "true": 4, - "printImprovments": 2, - "printFailing": 2, - "printRegressions": 2, - "string": 1, - "compiler": 3, - "getEnv": 1, - "if": 7, - "is": 2, - "null": 3, - "printf": 6, - ".ptr": 14, - "return": 2, - "-": 3, - "}": 12, - "///": 1, - "@todo": 1, - "Scan": 1, - "for": 4, - "files": 1, - "tests": 2, - "testList": 1, - "total": 5, - "passed": 5, - "failed": 5, - "improved": 3, - "regressed": 6, - "rets": 5, - "Result": 2, - "[": 6, - "]": 6, - "tests.length": 3, - "size_t": 3, - "i": 14, - "<": 3, - "+": 14, - ".runTest": 1, - "cmdGroup.waitAll": 1, - "ret": 1, - "ret.ok": 1, - "cast": 5, - "ret.hasPassed": 4, - "&&": 2, - "ret.test.ptr": 4, - "ret.msg.ptr": 4, - "else": 3, - "fflush": 2, - "stdout": 1, - "xml": 8, - "fopen": 1, - "fprintf": 2, - "rets.length": 1, - ".xmlLog": 1, - "fclose": 1, - "rate": 2, - "float": 2, - "/": 1, - "*": 1, - "f": 1, - "double": 1 - }, - "wisp": { - ";": 199, - "#": 2, - "wisp": 6, - "Wisp": 13, - "is": 20, - "homoiconic": 1, - "JS": 17, - "dialect": 1, - "with": 6, - "a": 24, - "clojure": 2, - "syntax": 2, - "s": 7, - "-": 33, - "expressions": 6, - "and": 9, - "macros.": 1, - "code": 3, - "compiles": 1, - "to": 21, - "human": 1, - "readable": 1, - "javascript": 1, - "which": 3, - "one": 3, - "of": 16, - "they": 3, - "key": 3, - "differences": 1, - "from": 2, - "clojurescript.": 1, - "##": 2, - "data": 1, - "structures": 1, - "nil": 4, - "just": 3, - "like": 2, - "js": 1, - "undefined": 1, - "differenc": 1, - "that": 7, - "it": 10, - "shortcut": 1, - "for": 5, - "void": 2, - "(": 77, - ")": 75, - "in": 16, - "JS.": 2, - "Booleans": 1, - "booleans": 2, - "true": 6, - "/": 1, - "false": 2, - "are": 14, - "Numbers": 1, - "numbers": 2, - "Strings": 2, - "strings": 3, - "can": 13, - "be": 15, - "multiline": 1, - "Characters": 2, - "sugar": 1, - "single": 1, - "char": 1, - "Keywords": 3, - "symbolic": 2, - "identifiers": 2, - "evaluate": 2, - "themselves.": 1, - "keyword": 1, - "Since": 1, - "string": 1, - "constats": 1, - "fulfill": 1, - "this": 2, - "purpose": 2, - "keywords": 1, - "compile": 3, - "equivalent": 2, - "strings.": 1, - "window.addEventListener": 1, - "load": 1, - "handler": 1, - "invoked": 2, - "as": 4, - "functions": 8, - "desugars": 1, - "plain": 2, - "associated": 2, - "value": 2, - "access": 1, - "bar": 4, - "foo": 6, - "[": 22, - "]": 22, - "Vectors": 1, - "vectors": 1, - "arrays.": 1, - "Note": 3, - "Commas": 2, - "white": 1, - "space": 1, - "&": 6, - "used": 1, - "if": 7, - "desired": 1, - "Maps": 2, - "hash": 1, - "maps": 1, - "objects.": 1, - "unlike": 1, - "keys": 1, - "not": 4, - "arbitary": 1, - "types.": 1, + "B": 1, + "b": 1, "{": 4, - "beep": 1, - "bop": 1, - "}": 4, - "optional": 2, - "but": 7, - "come": 1, - "handy": 1, - "separating": 1, - "pairs.": 1, - "b": 5, - "In": 5, - "future": 2, - "JSONs": 1, - "may": 1, - "made": 2, - "compatible": 1, - "map": 3, - "syntax.": 1, - "Lists": 1, - "You": 1, - "up": 1, - "lists": 1, - "representing": 1, - "expressions.": 1, - "The": 1, - "first": 4, - "item": 2, - "the": 9, - "expression": 6, - "function": 7, - "being": 1, - "rest": 7, - "items": 2, - "arguments.": 2, - "baz": 2, - "Conventions": 1, - "puts": 1, - "lot": 2, - "effort": 1, - "making": 1, - "naming": 1, - "conventions": 3, - "transparent": 1, - "by": 2, - "encouraning": 1, - "lisp": 1, - "then": 1, - "translating": 1, - "them": 1, - "dash": 1, - "delimited": 1, - "dashDelimited": 1, - "predicate": 1, - "isPredicate": 1, - "__privates__": 1, - "list": 2, - "vector": 1, - "listToVector": 1, - "As": 1, - "side": 2, - "effect": 1, - "some": 2, - "names": 1, - "expressed": 3, - "few": 1, - "ways": 1, - "although": 1, - "third": 2, - "expression.": 1, - "<": 1, - "number": 3, - "Else": 1, - "missing": 1, - "conditional": 1, - "evaluates": 2, - "result": 2, - "will": 6, - ".": 6, - "monday": 1, - "today": 1, - "Compbining": 1, - "everything": 1, - "an": 1, - "sometimes": 1, - "might": 1, - "want": 2, - "compbine": 1, - "multiple": 1, - "into": 2, - "usually": 3, - "evaluating": 1, - "have": 2, - "effects": 1, - "do": 4, - "console.log": 2, - "+": 9, - "Also": 1, - "special": 4, - "form": 10, - "many.": 1, - "If": 2, - "evaluation": 1, - "nil.": 1, - "Bindings": 1, - "Let": 1, - "containing": 1, - "lexical": 1, - "context": 1, - "simbols": 1, - "bindings": 1, - "forms": 1, - "bound": 1, - "their": 2, - "respective": 1, - "results.": 1, - "let": 2, - "c": 1, - "Functions": 1, - "fn": 15, - "x": 22, - "named": 1, - "similar": 2, - "increment": 1, - "also": 2, - "contain": 1, - "documentation": 1, - "metadata.": 1, - "Docstring": 1, - "metadata": 1, - "presented": 1, - "compiled": 2, - "yet": 1, - "comments": 1, - "function.": 1, - "incerement": 1, - "added": 1, - "makes": 1, - "capturing": 1, - "arguments": 7, - "easier": 1, - "than": 1, - "argument": 1, - "follows": 1, - "simbol": 1, - "capture": 1, - "all": 4, - "args": 1, - "array.": 1, - "rest.reduce": 1, - "sum": 3, - "Overloads": 1, - "overloaded": 1, - "depending": 1, - "on": 1, - "take": 2, - "without": 2, - "introspection": 1, - "version": 1, - "y": 6, - "more": 3, - "more.reduce": 1, - "does": 1, - "has": 2, - "variadic": 1, - "overload": 1, - "passed": 1, - "throws": 1, - "exception.": 1, - "Other": 1, - "Special": 1, - "Forms": 1, - "Instantiation": 1, - "type": 2, - "instantiation": 1, - "consice": 1, - "needs": 1, - "suffixed": 1, - "character": 1, - "Type.": 1, - "options": 2, - "More": 1, - "verbose": 1, - "there": 1, - "new": 2, - "Class": 1, - "Method": 1, - "calls": 3, - "method": 2, - "no": 1, - "different": 1, - "Any": 1, - "quoted": 1, - "prevent": 1, - "doesn": 1, - "t": 1, - "unless": 5, - "or": 2, - "macro": 7, - "try": 1, - "implemting": 1, - "understand": 1, - "use": 2, - "case": 1, - "We": 1, - "execute": 1, - "body": 4, - "condition": 4, - "defn": 2, - "Although": 1, - "following": 2, "log": 1, - "anyway": 1, - "since": 1, - "exectued": 1, - "before": 1, - "called.": 1, - "Macros": 2, - "solve": 1, - "problem": 1, - "because": 1, - "immediately.": 1, - "Instead": 1, - "you": 1, - "get": 2, - "choose": 1, - "when": 1, - "evaluated.": 1, - "return": 1, - "instead.": 1, - "defmacro": 3, - "less": 1, - "how": 1, - "build": 1, - "implemented.": 1, - "define": 4, - "name": 2, - "def": 1, - "@body": 1, - "Now": 1, - "we": 2, - "above": 1, - "defined": 1, - "expanded": 2, - "time": 1, - "resulting": 1, - "diff": 1, - "program": 1, - "output.": 1, - "print": 1, - "message": 2, - ".log": 1, - "console": 1, - "Not": 1, - "macros": 2, - "via": 2, - "templating": 1, - "language": 1, - "available": 1, - "at": 1, - "hand": 1, - "assemble": 1, - "form.": 1, - "For": 2, - "instance": 1, - "ease": 1, - "functional": 1, - "chanining": 1, - "popular": 1, - "chaining.": 1, - "example": 1, - "API": 1, - "pioneered": 1, - "jQuery": 1, - "very": 2, - "common": 1, - "open": 2, - "target": 1, - "keypress": 2, - "filter": 2, - "isEnterKey": 1, - "getInputText": 1, - "reduce": 3, - "render": 2, - "Unfortunately": 1, - "though": 1, - "requires": 1, - "need": 1, - "methods": 1, - "dsl": 1, - "object": 1, - "limited.": 1, - "Making": 1, - "party": 1, - "second": 1, - "class.": 1, - "Via": 1, - "achieve": 1, - "chaining": 1, - "such": 1, - "tradeoffs.": 1, - "operations": 3, - "operation": 3, - "cons": 2, - "tagret": 1, - "enter": 1, - "input": 1, - "text": 1 - }, - "XC": { - "int": 2, - "main": 1, - "(": 1, - ")": 1, - "{": 2, - "x": 3, - ";": 4, - "chan": 1, - "c": 3, - "par": 1, - "<:>": 1, - "0": 1, - "}": 2, - "return": 1 - }, - "XML": { - "": 10, - "version=": 16, - "encoding=": 7, - "": 7, - "ToolsVersion=": 6, - "DefaultTargets=": 5, - "xmlns=": 7, - "": 21, - "Project=": 12, - "Condition=": 37, - "": 26, - "": 6, - "Debug": 10, - "": 6, - "": 6, - "AnyCPU": 10, - "": 6, - "": 5, - "{": 6, - "D9BF15": 1, - "-": 90, - "D10": 1, - "ABAD688E8B": 1, - "}": 6, - "": 5, - "": 4, - "Exe": 4, - "": 4, - "": 2, - "Properties": 3, - "": 2, - "": 5, - "csproj_sample": 1, - "": 5, - "": 4, - "csproj": 1, - "sample": 6, - "": 4, - "": 5, - "v4.5.1": 5, - "": 5, - "": 3, - "": 3, - "": 3, - "true": 24, - "": 3, - "": 25, - "": 6, - "": 6, - "": 5, - "": 5, - "": 6, - "full": 4, - "": 6, - "": 7, - "false": 10, - "": 7, - "": 8, - "bin": 11, - "": 8, - "": 6, - "DEBUG": 3, - ";": 52, - "TRACE": 6, - "": 6, - "": 4, - "prompt": 4, - "": 4, - "": 8, - "": 8, - "pdbonly": 3, - "Release": 6, - "": 26, - "": 30, - "Include=": 78, - "": 26, - "": 10, - "": 5, - "": 7, - "": 2, - "": 2, - "cfa7a11": 1, - "a5cd": 1, - "bd7b": 1, - "b210d4d51a29": 1, - "fsproj_sample": 2, - "": 1, - "": 1, - "": 3, - "fsproj": 1, - "": 3, - "": 2, - "": 2, - "": 5, - "fsproj_sample.XML": 2, - "": 5, - "": 2, - "": 2, - "": 2, - "True": 13, - "": 2, - "": 5, - "": 1, - "": 1, - "": 1, - "": 1, - "": 2, - "(": 65, - "MSBuildExtensionsPath32": 2, - ")": 58, - "..": 1, - "Microsoft": 2, - "SDKs": 1, - "F#": 1, - "Framework": 1, - "v4.0": 1, - "Microsoft.FSharp.Targets": 2, - "": 2, - "": 1, - "": 1, - "VisualStudio": 1, - "v": 1, - "VisualStudioVersion": 1, - "FSharp": 1, - "": 1, - "": 1, - "": 1, - "name=": 227, - "xmlns": 2, - "ea=": 2, - "": 3, - "This": 21, - "easyant": 3, - "module.ant": 1, - "file": 3, - "is": 123, - "optionnal": 1, - "and": 44, - "designed": 1, - "to": 164, - "customize": 1, - "your": 8, - "build": 1, - "with": 23, - "own": 2, - "specific": 8, - "target.": 1, - "": 3, - "": 2, - "": 2, - "my": 2, - "awesome": 1, - "additionnal": 1, - "target": 6, - "": 2, - "": 2, - "extensionOf=": 1, - "i": 2, - "would": 2, - "love": 1, - "could": 1, - "easily": 1, - "plug": 1, - "pre": 1, - "compile": 1, - "step": 1, - "": 1, - "": 1, - "": 1, - "organisation=": 3, - "module=": 3, - "revision=": 3, - "status=": 1, - "this": 77, - "a": 128, - "module.ivy": 1, - "for": 60, - "java": 1, - "standard": 1, - "application": 2, - "": 1, - "": 1, - "value=": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 2, - "visibility=": 2, - "description=": 2, - "": 1, - "": 1, - "": 4, - "org=": 1, - "rev=": 1, - "conf=": 1, - "default": 9, - "junit": 2, - "test": 7, - "/": 6, - "": 1, - "": 1, - "": 1, - "": 1, - "": 2, - "ReactiveUI": 2, - "": 2, - "": 1, - "": 1, - "": 120, - "": 120, - "IObservedChange": 5, - "generic": 3, - "interface": 4, - "that": 94, - "replaces": 1, - "the": 261, - "non": 1, - "PropertyChangedEventArgs.": 1, - "Note": 7, - "it": 16, - "used": 19, - "both": 2, - "Changing": 5, - "i.e.": 23, - "Changed": 4, - "Observables.": 2, - "In": 6, - "future": 2, - "will": 65, - "be": 57, - "Covariant": 1, - "which": 12, - "allow": 1, - "simpler": 1, - "casting": 1, - "between": 15, - "changes.": 2, - "": 121, - "": 120, - "The": 75, - "object": 42, - "has": 16, - "raised": 1, - "change.": 12, - "name": 7, - "of": 75, - "property": 74, - "changed": 18, - "on": 35, - "Sender.": 1, - "value": 44, - "changed.": 9, - "IMPORTANT": 1, - "NOTE": 1, - "often": 3, - "not": 9, - "set": 41, - "performance": 1, - "reasons": 1, - "unless": 1, - "you": 20, - "have": 17, - "explicitly": 1, - "requested": 1, - "an": 88, - "Observable": 56, - "via": 8, - "method": 34, - "such": 5, - "as": 25, - "ObservableForProperty.": 1, - "To": 4, - "retrieve": 3, - "use": 5, - "Value": 3, - "extension": 2, - "method.": 2, - "IReactiveNotifyPropertyChanged": 6, - "represents": 4, - "extended": 1, - "version": 3, - "INotifyPropertyChanged": 1, - "also": 17, - "exposes": 1, - "IEnableLogger": 1, - "dummy": 1, - "attaching": 1, - "any": 11, - "class": 11, - "give": 1, - "access": 3, - "Log": 2, - "When": 5, - "called": 5, - "fire": 11, - "change": 26, - "notifications": 22, - "neither": 3, - "traditional": 3, - "nor": 3, - "until": 7, - "return": 11, - "disposed.": 3, - "": 36, - "An": 26, - "when": 38, - "disposed": 4, - "reenables": 3, - "notifications.": 5, - "": 36, - "Represents": 4, - "fires": 6, - "*before*": 2, - "about": 5, - "should": 10, - "duplicate": 2, - "if": 27, - "same": 8, - "multiple": 6, - "times.": 4, - "*after*": 2, - "TSender": 1, - "helper": 5, - "adds": 2, - "typed": 2, - "versions": 2, - "Changed.": 1, - "IReactiveCollection": 3, - "collection": 27, - "can": 11, - "notify": 3, - "its": 4, - "contents": 2, - "are": 13, - "either": 1, - "items": 27, - "added/removed": 1, - "or": 24, - "itself": 2, - "changes": 13, - ".": 20, - "It": 1, - "important": 6, - "implement": 5, - "Changing/Changed": 1, - "from": 12, - "semantically": 3, - "Fires": 14, - "added": 6, - "once": 4, - "per": 2, - "item": 19, - "added.": 4, - "Functions": 2, - "add": 2, - "AddRange": 2, - "provided": 14, - "was": 6, - "before": 8, - "going": 4, - "collection.": 6, - "been": 5, - "removed": 4, - "providing": 20, - "removed.": 4, - "whenever": 18, - "number": 9, - "in": 45, - "new": 10, - "Count.": 4, - "previous": 2, - "Provides": 4, - "Item": 4, - "implements": 8, - "IReactiveNotifyPropertyChanged.": 4, - "only": 18, - "enabled": 8, - "ChangeTrackingEnabled": 2, - "True.": 2, - "Enables": 2, - "ItemChanging": 2, - "ItemChanged": 2, - "properties": 29, - "implementing": 2, - "rebroadcast": 2, - "through": 3, - "ItemChanging/ItemChanged.": 2, - "T": 1, - "type": 23, - "specified": 7, - "Observables": 4, - "IMessageBus": 1, - "act": 2, - "simple": 2, - "way": 2, - "ViewModels": 3, - "other": 9, - "objects": 4, - "communicate": 2, - "each": 7, - "loosely": 2, - "coupled": 2, - "way.": 2, - "Specifying": 2, - "messages": 22, - "go": 2, - "where": 4, - "done": 2, - "combination": 2, - "Type": 9, - "message": 30, - "well": 2, - "additional": 3, - "parameter": 6, - "unique": 12, - "string": 13, - "distinguish": 12, - "arbitrarily": 2, - "by": 14, - "client.": 2, - "Listen": 4, - "provides": 6, - "Message": 2, - "RegisterMessageSource": 4, - "SendMessage.": 2, - "": 12, - "listen": 6, - "to.": 7, - "": 12, - "": 84, - "A": 20, - "identical": 11, - "types": 10, - "one": 27, - "purpose": 10, - "leave": 10, - "null.": 10, - "": 83, - "Determins": 2, - "particular": 2, - "registered.": 2, - "message.": 1, - "posted": 3, - "Type.": 2, - "Registers": 3, - "representing": 20, - "stream": 7, - "send.": 4, - "Another": 2, - "part": 2, - "code": 4, - "then": 3, - "call": 5, - "Observable.": 6, - "subscribed": 2, - "sent": 2, - "out": 4, - "provided.": 5, - "Sends": 2, - "single": 2, - "using": 9, - "contract.": 2, - "Consider": 2, - "instead": 2, - "sending": 2, - "response": 2, - "events.": 2, - "actual": 2, - "send": 3, - "returns": 5, - "current": 10, - "logger": 2, - "allows": 15, - "log": 2, - "attached.": 1, - "data": 2, - "structure": 1, - "representation": 1, - "memoizing": 2, - "cache": 14, - "evaluate": 1, - "function": 13, - "but": 7, - "keep": 1, - "recently": 3, - "evaluated": 1, - "parameters.": 1, - "Since": 1, - "mathematical": 2, - "sense": 1, - "key": 12, - "*always*": 1, - "maps": 1, - "corresponding": 2, - "value.": 2, - "calculation": 8, - "function.": 6, - "returned": 2, - "Constructor": 2, - "whose": 7, - "results": 6, - "want": 2, - "Tag": 1, - "user": 2, - "defined": 1, - "size": 1, - "maintain": 1, - "after": 1, - "old": 1, - "start": 1, - "thrown": 1, - "out.": 1, - "result": 3, - "gets": 1, - "evicted": 2, - "because": 2, - "Invalidate": 2, - "Evaluates": 1, - "returning": 1, - "cached": 2, - "possible": 1, - "pass": 2, - "optional": 2, - "parameter.": 1, - "Ensure": 1, - "next": 1, - "time": 3, - "queried": 1, - "called.": 1, - "all": 4, - "Returns": 5, - "values": 4, - "currently": 2, - "MessageBus": 3, - "bus.": 1, - "scheduler": 11, - "post": 2, - "RxApp.DeferredScheduler": 2, - "default.": 2, - "Current": 1, - "RxApp": 1, - "global": 1, - "object.": 3, - "ViewModel": 8, - "another": 3, - "s": 3, - "Return": 1, - "instance": 2, - "type.": 3, - "registered": 1, - "ObservableAsPropertyHelper": 6, - "help": 1, - "backed": 1, - "read": 3, - "still": 1, - "created": 2, - "directly": 1, - "more": 16, - "ToProperty": 2, - "ObservableToProperty": 1, - "methods.": 2, - "so": 1, - "output": 1, - "chained": 2, - "example": 2, - "property.": 12, - "Constructs": 4, - "base": 3, - "on.": 6, - "action": 2, - "take": 2, - "typically": 1, - "t": 2, - "bindings": 13, - "null": 4, - "OAPH": 2, - "at": 2, - "startup.": 1, - "initial": 28, - "normally": 6, - "Dispatcher": 3, - "based": 9, - "last": 1, - "Exception": 1, - "steps": 1, - "taken": 1, - "ensure": 3, - "never": 3, - "complete": 1, - "fail.": 1, - "Converts": 2, - "automatically": 3, - "onChanged": 2, - "raise": 2, - "notification.": 2, - "equivalent": 2, - "convenient.": 1, - "Expression": 7, - "initialized": 2, - "backing": 9, - "field": 10, - "ReactiveObject": 11, - "ObservableAsyncMRUCache": 2, - "memoization": 2, - "asynchronous": 4, - "expensive": 2, - "compute": 1, - "MRU": 1, - "fixed": 1, - "limit": 5, - "cache.": 5, - "guarantees": 6, - "given": 11, - "flight": 2, - "subsequent": 1, - "requests": 4, - "wait": 3, - "first": 1, - "empty": 1, - "web": 6, - "image": 1, - "receives": 1, - "two": 1, - "concurrent": 5, - "issue": 2, - "WebRequest": 1, - "does": 1, - "mean": 1, - "request": 3, - "Concurrency": 1, - "limited": 1, - "maxConcurrent": 1, - "too": 1, - "many": 1, - "operations": 6, - "progress": 1, - "further": 1, - "queued": 1, - "slot": 1, - "available.": 1, - "performs": 1, - "asyncronous": 1, - "async": 3, - "CPU": 1, - "Observable.Return": 1, - "may": 1, - "result.": 2, - "*must*": 1, - "equivalently": 1, - "input": 2, - "being": 1, - "memoized": 1, - "calculationFunc": 2, - "depends": 1, - "varables": 1, - "than": 5, - "unpredictable.": 1, - "reached": 2, - "discarded.": 4, - "maximum": 2, - "regardless": 2, - "caches": 2, - "server.": 2, - "clean": 1, - "up": 25, - "manage": 1, - "disk": 1, - "download": 1, - "save": 2, - "temporary": 1, - "folder": 1, - "onRelease": 1, - "delete": 1, - "file.": 1, - "run": 7, - "defaults": 1, - "TaskpoolScheduler": 2, - "Issues": 1, - "fetch": 1, - "operation.": 1, - "operation": 2, - "finishes.": 1, - "If": 6, - "immediately": 3, - "upon": 1, - "subscribing": 1, - "returned.": 2, - "provide": 2, - "synchronous": 1, - "AsyncGet": 1, - "resulting": 1, - "Works": 2, - "like": 2, - "SelectMany": 2, - "memoizes": 2, - "selector": 5, - "calls.": 2, - "addition": 3, - "no": 4, - "selectors": 2, - "running": 4, - "concurrently": 2, - "queues": 2, - "rest.": 2, - "very": 2, - "services": 2, - "avoid": 2, - "potentially": 2, - "spamming": 2, - "server": 2, - "hundreds": 2, - "requests.": 2, - "similar": 3, - "passed": 1, - "SelectMany.": 1, - "similarly": 1, - "ObservableAsyncMRUCache.AsyncGet": 1, - "must": 2, - "sense.": 1, - "flattened": 2, - "selector.": 2, - "overload": 2, - "useful": 2, - "making": 3, - "service": 1, - "several": 1, - "places": 1, - "paths": 1, - "already": 1, - "configured": 1, - "ObservableAsyncMRUCache.": 1, - "notification": 6, - "Attempts": 1, - "expression": 3, - "expression.": 1, - "entire": 1, - "able": 1, - "followed": 1, - "otherwise": 1, - "Given": 3, - "fully": 3, - "filled": 1, - "SetValueToProperty": 1, - "apply": 3, - "target.property": 1, - "This.GetValue": 1, - "observed": 1, - "onto": 1, - "convert": 2, - "stream.": 3, - "ValueIfNotDefault": 1, - "filters": 1, - "BindTo": 1, - "takes": 1, - "applies": 1, - "Conceptually": 1, - "child": 2, - "without": 1, - "checks.": 1, - "set.": 3, - "x.Foo.Bar.Baz": 1, - "disconnects": 1, - "binding.": 1, - "ReactiveCollection.": 1, - "ReactiveCollection": 1, - "existing": 3, - "list.": 2, - "list": 1, - "populate": 1, - "anything": 2, - "Change": 2, - "Tracking": 2, - "Creates": 3, - "adding": 2, - "completes": 4, - "optionally": 2, - "ensuring": 2, - "delay.": 2, - "withDelay": 2, - "leak": 2, - "Timer.": 2, - "always": 4, - "UI": 2, - "thread.": 3, - "put": 2, - "into": 2, - "populated": 4, - "faster": 2, - "delay": 2, - "Select": 3, - "item.": 3, - "creating": 2, - "collections": 1, - "updated": 1, - "respective": 1, - "Model": 1, - "updated.": 1, - "Collection.Select": 1, - "mirror": 1, - "ObservableForProperty": 14, - "ReactiveObject.": 1, - "unlike": 13, - "Selector": 1, - "classes": 2, - "INotifyPropertyChanged.": 1, - "monitor": 1, - "RaiseAndSetIfChanged": 2, - "Setter": 2, - "write": 2, - "assumption": 4, - "named": 2, - "RxApp.GetFieldNameForPropertyNameFunc.": 2, - "almost": 2, - "keyword.": 2, - "newly": 2, - "intended": 5, - "Silverlight": 2, - "WP7": 1, - "reflection": 1, - "cannot": 1, - "private": 1, - "field.": 1, - "Reference": 1, - "Use": 15, - "custom": 4, - "raiseAndSetIfChanged": 1, - "doesn": 1, - "x": 1, - "x.SomeProperty": 1, - "suffice.": 1, - "RaisePropertyChanging": 2, - "mock": 4, - "scenarios": 4, - "manually": 4, - "fake": 4, - "invoke": 4, - "raisePropertyChanging": 4, - "faking": 4, - "RaisePropertyChanged": 2, - "helps": 1, - "make": 2, - "them": 1, - "compatible": 1, - "Rx.Net.": 1, - "declare": 1, - "initialize": 1, - "derive": 1, - "properties/methods": 1, - "MakeObjectReactiveHelper.": 1, - "InUnitTestRunner": 1, - "attempts": 1, - "determine": 1, - "heuristically": 1, - "unit": 3, - "framework.": 1, - "we": 1, - "determined": 1, - "framework": 1, - "running.": 1, - "GetFieldNameForProperty": 1, - "convention": 2, - "GetFieldNameForPropertyNameFunc.": 1, - "needs": 1, - "found.": 1, - "name.": 1, - "DeferredScheduler": 1, - "schedule": 2, - "work": 2, - "normal": 2, - "mode": 2, - "DispatcherScheduler": 1, - "Unit": 1, - "Test": 1, - "Immediate": 1, - "simplify": 1, - "writing": 1, - "common": 1, - "tests.": 1, - "background": 1, - "modes": 1, - "TPL": 1, - "Task": 1, - "Pool": 1, - "Threadpool": 1, - "Set": 3, - "provider": 1, - "usually": 1, - "entry": 1, - "MessageBus.Current.": 1, - "override": 1, - "naming": 1, - "one.": 1, - "WhenAny": 12, - "observe": 12, - "constructors": 12, - "need": 12, - "setup.": 12, - "": 1, - "": 1, - "": 1, - "": 1, - "c67af951": 1, - "d8d6376993e7": 1, - "nproj_sample": 2, - "": 1, - "": 1, - "": 1, - "Net": 1, - "": 1, - "": 1, - "ProgramFiles": 1, - "Nemerle": 3, - "": 1, - "": 1, - "NemerleBinPathRoot": 1, - "NemerleVersion": 1, - "": 1, - "nproj": 1, - "OutputPath": 1, - "AssemblyName": 1, - ".xml": 1, - "": 3, - "": 3, - "": 1, - "False": 1, - "": 1, - "": 2, - "Nemerle.dll": 1, - "": 2, - "": 1, - "Nemerle.Linq.dll": 1, - "": 1, - "": 1, - "": 1, - "TS": 1, - "": 1, - "language=": 1, - "": 1, - "MainWindow": 1, - "": 8, - "": 8, - "filename=": 8, - "line=": 8, - "": 8, - "United": 1, - "Kingdom": 1, - "": 8, - "": 8, - "Reino": 1, - "Unido": 1, - "": 8, - "": 8, - "God": 1, - "Queen": 1, - "Deus": 1, - "salve": 1, - "Rainha": 1, - "England": 1, - "Inglaterra": 1, - "Wales": 1, - "Gales": 1, - "Scotland": 1, - "Esc": 1, - "cia": 1, - "Northern": 1, - "Ireland": 1, - "Irlanda": 1, - "Norte": 1, - "Portuguese": 1, - "Portugu": 1, - "English": 1, - "Ingl": 1, - "": 1, - "": 1, - "MyCommon": 1, - "": 1, - "Name=": 1, - "": 1, - "Text=": 1, - "": 1, - "D377F": 1, - "A798": 1, - "B3FD04C": 1, - "": 1, - "vbproj_sample.Module1": 1, - "": 1, - "vbproj_sample": 1, - "vbproj": 3, - "": 1, - "Console": 3, - "": 1, - "": 2, - "": 2, - "": 2, - "": 2, - "sample.xml": 2, - "": 2, - "": 2, - "": 1, - "On": 2, - "": 1, - "": 1, - "Binary": 1, - "": 1, - "": 1, - "Off": 1, - "": 1, - "": 1, - "": 1, - "": 3, - "": 3, - "": 3, - "Application.myapp": 1, - "": 3, - "": 3, - "": 1, - "": 1, - "Resources.resx": 1, - "Settings.settings": 1, - "": 1, - "": 1, - "": 1, - "": 3, - "VbMyResourcesResXFileCodeGenerator": 1, - "": 3, - "": 3, - "Resources.Designer.vb": 1, - "": 3, - "": 2, - "My.Resources": 1, - "": 2, - "": 1, - "Designer": 1, - "": 1, - "": 1, - "MyApplicationCodeGenerator": 1, - "Application.Designer.vb": 1, - "": 2, - "SettingsSingleFileGenerator": 1, - "My": 1, - "Settings.Designer.vb": 1, - "Label=": 11, - "": 2, - "Win32": 2, - "": 2, - "BF6EED48": 1, - "BF18": 1, - "C54": 1, - "F": 1, - "BBF19EEDC7C": 1, - "": 1, - "ManagedCProj": 1, - "": 1, - "vcxprojsample": 1, - "": 2, - "Application": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "v120": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "Unicode": 2, - "": 2, - "": 4, - "": 4, - "": 2, - "": 2, - "": 2, - "": 8, - "Level3": 2, - "": 1, - "Disabled": 1, - "": 1, - "": 2, - "WIN32": 2, - "_DEBUG": 1, - "%": 2, - "PreprocessorDefinitions": 2, - "": 2, - "": 4, - "": 4, - "": 6, - "": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "NDEBUG": 1, - "": 2, - "": 4, - "": 2, - "Create": 2, - "": 2, - "": 10, - "": 3, - "FC737F1": 1, - "C7A5": 1, - "A066": 1, - "A32D752A2FF": 1, - "": 3, - "": 3, - "cpp": 1, - "c": 1, - "cc": 1, - "cxx": 1, - "def": 1, - "odl": 1, - "idl": 1, - "hpj": 1, - "bat": 1, - "asm": 1, - "asmx": 1, - "": 3, - "": 10, - "BD": 1, - "b04": 1, - "EB": 1, - "FBE52EBFB": 1, - "h": 1, - "hh": 1, - "hpp": 1, - "hxx": 1, - "hm": 1, - "inl": 1, - "inc": 1, - "xsd": 1, - "DA6AB6": 1, - "F800": 1, - "c08": 1, - "B7A": 1, - "BB121AAD01": 1, - "rc": 1, - "ico": 1, - "cur": 1, - "bmp": 1, - "dlg": 1, - "rc2": 1, - "rct": 1, - "rgs": 1, - "gif": 1, - "jpg": 1, - "jpeg": 1, - "jpe": 1, - "resx": 1, - "tiff": 1, - "tif": 1, - "png": 1, - "wav": 1, - "mfcribbon": 1, - "ms": 1, - "Header": 2, - "Files": 7, - "": 2, - "Resource": 2, - "": 1, - "Source": 3, - "": 1, - "": 1, - "compatVersion=": 1, - "": 1, - "FreeMedForms": 1, - "": 1, - "": 1, - "C": 1, - "Eric": 1, - "MAEKER": 1, - "MD": 1, - "": 1, - "": 1, - "GPLv3": 1, - "": 1, - "": 1, - "Patient": 1, - "": 1, - "XML": 1, - "form": 1, - "loader/saver": 1, - "FreeMedForms.": 1, - "": 1, - "http": 1, - "//www.freemedforms.com/": 1, - "": 1, - "": 1, - "": 1, - "": 1 - }, - "XProc": { - "": 1, - "version=": 2, - "encoding=": 1, - "": 1, - "xmlns": 2, - "p=": 1, - "c=": 1, - "": 1, - "port=": 2, - "": 1, - "": 1, - "Hello": 1, - "world": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1 - }, - "XQuery": { - "(": 38, - "-": 486, - "xproc.xqm": 1, - "core": 1, - "xqm": 1, - "contains": 1, - "entry": 2, - "points": 1, - "primary": 1, - "eval": 3, - "step": 5, - "function": 3, - "and": 3, - "control": 1, - "functions.": 1, - ")": 38, - "xquery": 1, - "version": 1, - "encoding": 1, - ";": 25, - "module": 6, - "namespace": 8, - "xproc": 17, - "declare": 24, - "namespaces": 5, - "p": 2, - "c": 1, - "err": 1, - "imports": 1, - "import": 4, - "util": 1, - "at": 4, - "const": 1, - "parse": 8, - "u": 2, - "options": 2, - "boundary": 1, - "space": 1, - "preserve": 1, - "option": 1, - "saxon": 1, - "output": 1, - "functions": 1, - "variable": 13, - "run": 2, - "run#6": 1, - "choose": 1, - "try": 1, - "catch": 1, - "group": 1, - "for": 1, - "each": 1, - "viewport": 1, - "library": 1, - "pipeline": 8, - "list": 1, - "all": 1, - "declared": 1, - "enum": 3, - "{": 5, - "": 1, - "name=": 1, - "ns": 1, - "": 1, - "}": 5, - "": 1, - "": 1, - "point": 1, - "stdin": 1, - "dflag": 1, - "tflag": 1, - "bindings": 2, - "STEP": 3, - "I": 1, - "preprocess": 1, - "let": 6, - "validate": 1, - "explicit": 3, - "AST": 2, - "name": 1, - "type": 1, - "ast": 1, - "element": 1, - "parse/@*": 1, - "sort": 1, - "parse/*": 1, - "II": 1, - "eval_result": 1, - "III": 1, - "serialize": 1, + ";": 8, "return": 2, - "results": 1, - "serialized_result": 2 - }, - "XSLT": { - "": 1, - "version=": 2, - "": 1, - "xmlns": 1, - "xsl=": 1, - "": 1, - "match=": 1, - "": 1, - "": 1, - "

": 1, - "My": 1, - "CD": 1, - "Collection": 1, - "

": 1, - "": 1, - "border=": 1, - "": 2, - "bgcolor=": 1, - "": 2, - "Artist": 1, - "": 2, - "": 1, - "select=": 3, - "": 2, - "": 1, - "
": 2, - "Title": 1, - "
": 2, - "": 2, - "
": 1, - "": 1, - "": 1, - "
": 1, - "
": 1 - }, - "Xtend": { - "package": 2, - "example2": 1, - "import": 7, - "org.junit.Test": 2, - "static": 4, - "org.junit.Assert.*": 2, - "class": 4, - "BasicExpressions": 2, - "{": 14, - "@Test": 7, - "def": 7, - "void": 7, - "literals": 5, - "(": 42, - ")": 42, - "//": 11, - "string": 1, - "work": 1, - "with": 2, - "single": 1, - "or": 1, - "double": 2, - "quotes": 1, - "assertEquals": 14, - "number": 1, - "big": 1, - "decimals": 1, - "in": 2, - "this": 1, - "case": 1, - "+": 6, - "*": 1, - "bd": 3, - "boolean": 1, - "true": 1, - "false": 1, - "getClass": 1, - "typeof": 1, - "}": 13, - "collections": 2, - "There": 1, - "are": 1, - "various": 1, - "methods": 2, - "to": 1, - "create": 1, - "and": 1, - "numerous": 1, - "extension": 2, - "which": 1, - "make": 1, - "working": 1, - "them": 1, - "convenient.": 1, - "val": 9, - "list": 1, - "newArrayList": 2, - "list.map": 1, - "[": 9, - "toUpperCase": 1, - "]": 9, - ".head": 1, - "set": 1, - "newHashSet": 1, - "set.filter": 1, - "it": 2, - ".size": 2, - "map": 1, - "newHashMap": 1, - "-": 5, - "map.get": 1, - "controlStructures": 1, - "looks": 1, - "like": 1, - "Java": 1, + "orig": 2, + "nil": 2, + "}": 4, + "end": 4, + "subclass": 1, + "DEF": 1, + "NSObject": 1, + "init": 3, + "[": 2, + "c": 1, + "RuntimeAccessibleClass": 1, + "alloc": 1, + "]": 2, + "group": 1, + "OptionalHooks": 2, + "void": 1, + "release": 1, + "self": 1, + "retain": 1, + "ctor": 1, "if": 1, - ".length": 1, - "but": 1, - "foo": 1, - "bar": 1, - "Never": 2, - "happens": 3, - "text": 2, - "never": 1, - "s": 1, - "cascades.": 1, - "Object": 1, - "someValue": 2, - "switch": 1, - "Number": 1, - "String": 2, - "loops": 1, - "for": 2, - "loop": 2, - "var": 1, - "counter": 8, - "i": 4, - "..": 1, - "while": 2, - "iterator": 1, - ".iterator": 2, - "iterator.hasNext": 1, - "iterator.next": 1, - "example6": 1, - "java.io.FileReader": 1, - "java.util.Set": 1, - "com.google.common.io.CharStreams.*": 1, - "Movies": 1, - "numberOfActionMovies": 1, - "movies.filter": 2, - "categories.contains": 1, - "yearOfBestMovieFrom80ies": 1, - ".contains": 1, - "year": 2, - ".sortBy": 1, - "rating": 3, - ".last.year": 1, - "sumOfVotesOfTop2": 1, - "long": 2, - "movies": 3, - "movies.sortBy": 1, - ".take": 1, - ".map": 1, - "numberOfVotes": 2, - ".reduce": 1, - "a": 2, - "b": 2, - "|": 2, - "_229": 1, - "new": 2, - "FileReader": 1, - ".readLines.map": 1, - "line": 1, - "segments": 1, - "line.split": 1, - "return": 1, - "Movie": 2, - "segments.next": 4, - "Integer": 1, - "parseInt": 1, - "Double": 1, - "parseDouble": 1, - "Long": 1, - "parseLong": 1, - "segments.toSet": 1, - "@Data": 1, - "title": 1, - "int": 1, - "Set": 1, - "": 1, - "categories": 1 + "OptionalCondition": 1 }, - "YAML": { - "gem": 1, - "-": 25, - "local": 1, - "gen": 1, - "rdoc": 2, - "run": 1, - "tests": 1, - "inline": 1, - "source": 1, - "line": 1, - "numbers": 1, - "gempath": 1, - "/usr/local/rubygems": 1, - "/home/gavin/.rubygems": 1, - "http_interactions": 1, - "request": 1, - "method": 1, - "get": 1, - "uri": 1, - "http": 1, - "//example.com/": 1, - "body": 3, - "headers": 2, - "{": 1, - "}": 1, - "response": 2, - "status": 1, - "code": 1, - "message": 1, - "OK": 1, - "Content": 2, - "Type": 1, - "text/html": 1, - ";": 1, - "charset": 1, - "utf": 1, - "Length": 1, - "This": 1, - "is": 1, - "the": 1, - "http_version": 1, - "recorded_at": 1, - "Tue": 1, - "Nov": 1, - "GMT": 1, - "recorded_with": 1, - "VCR": 1 + "Omgrofl": { + "lol": 14, + "iz": 11, + "wtf": 1, + "liek": 1, + "lmao": 1, + "brb": 1, + "w00t": 1, + "Hello": 1, + "World": 1, + "rofl": 13, + "lool": 5, + "loool": 6, + "stfu": 1 }, - "Zephir": { - "%": 10, - "{": 56, - "#define": 1, - "MAX_FACTOR": 3, - "}": 50, - "namespace": 3, - "Test": 2, - ";": 86, - "#include": 1, - "static": 1, - "long": 3, - "fibonacci": 4, - "(": 55, - "n": 5, - ")": 53, - "if": 39, - "<": 1, - "return": 25, - "else": 11, - "-": 25, - "+": 5, - "class": 2, - "Cblock": 1, - "public": 22, - "function": 22, - "testCblock1": 1, - "int": 3, - "a": 6, - "testCblock2": 1, - "Router": 1, - "Route": 1, - "protected": 9, - "_pattern": 3, - "_compiledPattern": 3, - "_paths": 3, - "_methods": 5, - "_hostname": 3, - "_converters": 3, - "_id": 2, - "_name": 3, - "_beforeMatch": 3, - "__construct": 1, - "pattern": 37, - "paths": 7, - "null": 11, - "httpMethods": 6, - "this": 28, - "reConfigure": 2, - "let": 51, - "compilePattern": 2, - "var": 4, - "idPattern": 6, - "memstr": 10, - "str_replace": 6, - ".": 5, - "via": 1, - "extractNamedParams": 2, - "string": 6, - "char": 1, - "ch": 27, - "tmp": 4, - "matches": 5, - "boolean": 1, - "notValid": 5, - "false": 3, - "cursor": 4, - "cursorVar": 5, - "marker": 4, - "bracketCount": 7, - "parenthesesCount": 5, - "foundPattern": 6, - "intermediate": 4, - "numberMatches": 4, - "route": 12, - "item": 7, - "variable": 5, - "regexp": 7, - "strlen": 1, - "<=>": 5, - "0": 9, - "for": 4, - "in": 4, - "1": 3, - "substr": 3, - "break": 9, - "&&": 6, - "z": 2, - "Z": 2, - "true": 2, - "<='9')>": 1, - "_": 1, - "2": 2, - "continue": 1, - "[": 14, - "]": 14, - "moduleName": 5, - "controllerName": 7, - "actionName": 4, - "parts": 9, - "routePaths": 5, - "realClassName": 1, - "namespaceName": 1, - "pcrePattern": 4, - "compiledPattern": 4, - "extracted": 4, - "typeof": 2, - "throw": 1, - "new": 1, - "Exception": 1, - "explode": 1, - "switch": 1, - "count": 1, - "case": 3, - "controller": 1, - "action": 1, - "array": 1, - "The": 1, - "contains": 1, - "invalid": 1, - "#": 1, - "array_merge": 1, - "//Update": 1, - "the": 1, - "s": 1, - "name": 5, - "*": 2, - "@return": 1, - "*/": 1, - "getName": 1, - "setName": 1, - "beforeMatch": 1, - "callback": 2, - "getBeforeMatch": 1, - "getRouteId": 1, - "getPattern": 1, - "getCompiledPattern": 1, - "getPaths": 1, - "getReversedPaths": 1, - "reversed": 4, - "path": 3, - "position": 3, - "setHttpMethods": 1, - "getHttpMethods": 1, - "setHostname": 1, - "hostname": 2, - "getHostname": 1, - "convert": 1, - "converter": 2, - "getConverters": 1 - }, - "Zimpl": { - "#": 2, - "param": 1, - "columns": 2, - ";": 7, - "set": 3, - "I": 3, + "Opa": { + "server": 1, + "Server.one_page_server": 1, + "(": 4, + "-": 1, + "

": 2, + "Hello": 2, + "world": 2, + "

": 2, + ")": 4, + "Server.start": 1, + "Server.http": 1, "{": 2, - "..": 1, + "page": 1, + "function": 1, "}": 2, - "IxI": 6, - "*": 2, - "TABU": 4, - "[": 8, - "": 3, - "in": 5, - "]": 8, - "": 2, - "with": 1, - "(": 6, - "m": 4, - "i": 8, - "or": 3, - "n": 4, - "j": 8, - ")": 6, - "and": 1, - "abs": 2, - "-": 3, - "var": 1, - "x": 4, - "binary": 1, - "maximize": 1, - "queens": 1, - "sum": 2, - "subto": 1, - "c1": 1, - "forall": 1, - "do": 1, - "card": 2 + "title": 1 + }, + "Python": { + "xspacing": 4, + "#": 21, + "How": 2, + "far": 1, + "apart": 1, + "should": 1, + "each": 1, + "horizontal": 1, + "location": 1, + "be": 1, + "spaced": 1, + "maxwaves": 3, + "total": 1, + "of": 5, + "waves": 1, + "to": 5, + "add": 1, + "together": 1, + "theta": 3, + "amplitude": 3, + "[": 161, + "]": 161, + "Height": 1, + "wave": 2, + "dx": 8, + "yvalues": 7, + "def": 74, + "setup": 2, + "(": 762, + ")": 773, + "size": 2, + "frameRate": 1, + "colorMode": 1, + "RGB": 1, + "w": 2, + "width": 1, + "+": 44, + "for": 65, + "i": 13, + "in": 85, + "range": 5, + "amplitude.append": 1, + "random": 2, + "period": 2, + "many": 1, + "pixels": 1, + "before": 1, + "the": 6, + "repeats": 1, + "dx.append": 1, + "TWO_PI": 1, + "/": 26, + "*": 37, + "_": 6, + "yvalues.append": 1, + "draw": 2, + "background": 2, + "calcWave": 2, + "renderWave": 2, + "len": 11, + "j": 7, + "x": 28, + "if": 146, + "%": 33, + "sin": 1, + "else": 31, + "cos": 1, + "noStroke": 2, + "fill": 2, + "ellipseMode": 1, + "CENTER": 1, + "v": 13, + "enumerate": 2, + "ellipse": 1, + "height": 1, + "SHEBANG#!python": 4, + "print": 39, + "from": 34, + ".globals": 1, + "import": 47, + "request": 1, + "http_method_funcs": 2, + "frozenset": 2, + "class": 14, + "View": 2, + "object": 6, + "A": 1, + "which": 1, + "methods": 5, + "this": 2, + "pluggable": 1, + "view": 2, + "can": 1, + "handle.": 1, + "None": 86, + "The": 1, + "canonical": 1, + "way": 1, + "decorate": 2, + "-": 33, + "based": 1, + "views": 1, + "is": 29, + "return": 57, + "value": 9, + "as_view": 1, + ".": 1, + "However": 1, + "since": 1, + "moves": 1, + "parts": 1, + "logic": 1, + "declaration": 1, + "place": 1, + "where": 1, + "it": 1, + "s": 1, + "also": 1, + "used": 1, + "instantiating": 1, + "view.view_class": 1, + "cls": 32, + "view.__name__": 1, + "name": 39, + "view.__doc__": 1, + "cls.__doc__": 3, + "view.__module__": 1, + "cls.__module__": 1, + "view.methods": 1, + "cls.methods": 1, + "MethodViewType": 2, + "type": 6, + "__new__": 2, + "bases": 6, + "d": 5, + "rv": 2, + "type.__new__": 1, + "not": 64, + "set": 3, + "rv.methods": 2, + "or": 27, + "key": 5, + "methods.add": 1, + "key.upper": 1, + "sorted": 1, + "MethodView": 1, + "__metaclass__": 3, + "dispatch_request": 1, + "self": 100, + "*args": 4, + "**kwargs": 9, + "meth": 5, + "getattr": 30, + "request.method.lower": 1, + "and": 35, + "request.method": 2, + "assert": 7, + "args": 8, + "argparse": 1, + "matplotlib.pyplot": 1, + "as": 11, + "pl": 1, + "numpy": 1, + "np": 1, + "scipy.optimize": 1, + "op": 6, + "prettytable": 1, + "PrettyTable": 6, + "__docformat__": 1, + "S": 4, + "e": 13, + "phif": 7, + "U": 10, + "main": 4, + "options": 3, + "_parse_args": 2, + "V": 12, + "data": 22, + "np.genfromtxt": 8, + "delimiter": 8, + "t": 8, + "U_err": 7, + "offset": 13, + "np.mean": 1, + "np.linspace": 9, + "min": 10, + "max": 11, + "y": 10, + "np.ones": 11, + "x.size": 2, + "pl.plot": 9, + "**6": 6, + "label": 18, + ".format": 11, + "pl.errorbar": 8, + "yerr": 8, + "linestyle": 8, + "marker": 4, + "pl.grid": 5, + "True": 20, + "pl.legend": 5, + "loc": 5, + "pl.title": 5, + "u": 9, + "pl.xlabel": 5, + "ur": 11, + "pl.ylabel": 5, + "pl.savefig": 5, + "pl.clf": 5, + "glanz": 13, + "matt": 13, + "schwarz": 13, + "weiss": 13, + "T0": 1, + "T0_err": 2, + "glanz_phi": 4, + "matt_phi": 4, + "schwarz_phi": 4, + "weiss_phi": 4, + "T_err": 7, + "sigma": 4, + "boltzmann": 12, + "T": 6, + "epsilon": 7, + "T**4": 1, + "glanz_popt": 3, + "glanz_pconv": 1, + "op.curve_fit": 6, + "matt_popt": 3, + "matt_pconv": 1, + "schwarz_popt": 3, + "schwarz_pconv": 1, + "weiss_popt": 3, + "weiss_pconv": 1, + "glanz_x": 3, + "glanz_y": 2, + "*glanz_popt": 1, + "color": 8, + "matt_x": 3, + "matt_y": 2, + "*matt_popt": 1, + "schwarz_x": 3, + "schwarz_y": 2, + "*schwarz_popt": 1, + "weiss_x": 3, + "weiss_y": 2, + "*weiss_popt": 1, + "np.sqrt": 17, + "glanz_pconv.diagonal": 2, + "matt_pconv.diagonal": 2, + "schwarz_pconv.diagonal": 2, + "weiss_pconv.diagonal": 2, + "xerr": 6, + "U_err/S": 4, + "header": 5, + "glanz_table": 2, + "row": 10, + "zip": 8, + ".size": 4, + "*T_err": 4, + "glanz_phi.size": 1, + "*U_err/S": 4, + "glanz_table.add_row": 1, + "matt_table": 2, + "matt_phi.size": 1, + "matt_table.add_row": 1, + "schwarz_table": 2, + "schwarz_phi.size": 1, + "schwarz_table.add_row": 1, + "weiss_table": 2, + "weiss_phi.size": 1, + "weiss_table.add_row": 1, + "T0**4": 1, + "prop": 5, + "{": 25, + "}": 25, + "phi": 5, + "c": 3, + "a": 2, + "b": 11, + "a*x": 1, + "d**": 2, + "dy": 4, + "dx_err": 3, + "np.abs": 1, + "dy_err": 2, + "popt": 5, + "pconv": 2, + "*popt": 2, + "pconv.diagonal": 3, + "fields": 12, + "table": 2, + "table.align": 1, + "dy.size": 1, + "*dy_err": 1, + "table.add_row": 1, + "U1": 3, + "I1": 3, + "U2": 2, + "I_err": 2, + "p": 1, + "R": 1, + "R_err": 2, + "/I1": 1, + "**2": 2, + "U1/I1**2": 1, + "phi_err": 3, + "alpha": 2, + "beta": 1, + "R0": 6, + "R0_err": 2, + "alpha*R0": 2, + "*np.sqrt": 6, + "*beta*R": 5, + "alpha**2*R0": 5, + "*beta*R0": 7, + "*beta*R0*T0": 2, + "epsilon_err": 2, + "f1": 1, + "f2": 1, + "f3": 1, + "alpha**2": 1, + "*beta": 1, + "*beta*T0": 1, + "*beta*R0**2": 1, + "f1**2": 1, + "f2**2": 1, + "f3**2": 1, + "parser": 1, + "argparse.ArgumentParser": 1, + "description": 1, + "#parser.add_argument": 3, + "metavar": 1, + "str": 2, + "nargs": 1, + "help": 2, + "dest": 1, + "default": 1, + "action": 1, + "version": 6, + "parser.parse_args": 1, + "__name__": 2, + "__future__": 2, + "absolute_import": 1, + "division": 1, + "with_statement": 1, + "Cookie": 1, + "logging": 1, + "socket": 1, + "time": 1, + "tornado.escape": 1, + "utf8": 2, + "native_str": 4, + "parse_qs_bytes": 3, + "tornado": 3, + "httputil": 1, + "iostream": 1, + "tornado.netutil": 1, + "TCPServer": 2, + "stack_context": 1, + "tornado.util": 1, + "bytes_type": 2, + "try": 17, + "ssl": 2, + "Python": 1, + "except": 17, + "ImportError": 1, + "HTTPServer": 1, + "r": 3, + "__init__": 5, + "request_callback": 4, + "no_keep_alive": 4, + "False": 28, + "io_loop": 3, + "xheaders": 4, + "ssl_options": 3, + "self.request_callback": 5, + "self.no_keep_alive": 4, + "self.xheaders": 3, + "TCPServer.__init__": 1, + "handle_stream": 1, + "stream": 4, + "address": 4, + "HTTPConnection": 2, + "_BadRequestException": 5, + "Exception": 2, + "pass": 4, + "self.stream": 1, + "self.address": 3, + "self._request": 7, + "self._request_finished": 4, + "self._header_callback": 3, + "stack_context.wrap": 2, + "self._on_headers": 1, + "self.stream.read_until": 2, + "self._write_callback": 5, + "write": 2, + "chunk": 5, + "callback": 7, + "self.stream.closed": 1, + "self.stream.write": 2, + "self._on_write_complete": 1, + "finish": 2, + "self.stream.writing": 2, + "self._finish_request": 2, + "_on_write_complete": 1, + "_finish_request": 1, + "disconnect": 5, + "connection_header": 5, + "self._request.headers.get": 2, + "connection_header.lower": 1, + "self._request.supports_http_1_1": 1, + "elif": 4, + "self._request.headers": 1, + "self._request.method": 2, + "self.stream.close": 2, + "_on_headers": 1, + "data.decode": 1, + "eol": 3, + "data.find": 1, + "start_line": 1, + "method": 5, + "uri": 5, + "start_line.split": 1, + "ValueError": 5, + "raise": 22, + "version.startswith": 1, + "headers": 5, + "httputil.HTTPHeaders.parse": 1, + "self.stream.socket": 1, + "socket.AF_INET": 2, + "socket.AF_INET6": 1, + "remote_ip": 8, + "HTTPRequest": 2, + "connection": 5, + "content_length": 6, + "headers.get": 2, + "int": 1, + "self.stream.max_buffer_size": 1, + "self.stream.read_bytes": 1, + "self._on_request_body": 1, + "logging.info": 1, + "_on_request_body": 1, + "self._request.body": 2, + "content_type": 1, + "content_type.startswith": 2, + "arguments": 2, + "values": 13, + "arguments.iteritems": 2, + "self._request.arguments.setdefault": 1, + ".extend": 2, + "content_type.split": 1, + "field": 32, + "k": 4, + "sep": 2, + "field.strip": 1, + ".partition": 1, + "httputil.parse_multipart_form_data": 1, + "self._request.arguments": 1, + "self._request.files": 1, + "break": 2, + "logging.warning": 1, + "body": 2, + "protocol": 4, + "host": 2, + "files": 2, + "self.method": 1, + "self.uri": 2, + "self.version": 2, + "self.headers": 4, + "httputil.HTTPHeaders": 1, + "self.body": 1, + "connection.xheaders": 1, + "self.remote_ip": 4, + "self.headers.get": 5, + "self._valid_ip": 1, + "self.protocol": 7, + "isinstance": 11, + "connection.stream": 1, + "iostream.SSLIOStream": 1, + "self.host": 2, + "self.files": 1, + "self.connection": 1, + "self._start_time": 3, + "time.time": 3, + "self._finish_time": 4, + "self.path": 1, + "self.query": 2, + "uri.partition": 1, + "self.arguments": 2, + "supports_http_1_1": 1, + "@property": 1, + "cookies": 1, + "hasattr": 11, + "self._cookies": 3, + "Cookie.SimpleCookie": 1, + "self._cookies.load": 1, + "self.connection.write": 1, + "self.connection.finish": 1, + "full_url": 1, + "request_time": 1, + "get_ssl_certificate": 1, + "self.connection.stream.socket.getpeercert": 1, + "ssl.SSLError": 1, + "__repr__": 2, + "attrs": 7, + ".join": 3, + "n": 3, + "self.__class__.__name__": 3, + "dict": 3, + "_valid_ip": 1, + "ip": 2, + "res": 2, + "socket.getaddrinfo": 1, + "socket.AF_UNSPEC": 1, + "socket.SOCK_STREAM": 1, + "socket.AI_NUMERICHOST": 1, + "bool": 2, + "socket.gaierror": 1, + "e.args": 1, + "socket.EAI_NONAME": 1, + "os": 1, + "sys": 2, + "usage": 3, + "string": 1, + "command": 4, + "check": 4, + "sys.argv": 2, + "<": 1, + "sys.exit": 1, + "printDelimiter": 4, + "get": 1, + "list": 1, + "git": 1, + "directories": 1, + "specified": 1, + "parent": 5, + "gitDirectories": 2, + "getSubdirectories": 2, + "isGitDirectory": 2, + "gitDirectory": 2, + "os.chdir": 1, + "os.getcwd": 1, + "os.system": 1, + "directory": 9, + "filter": 3, + "os.path.abspath": 1, + "subdirectories": 3, + "os.walk": 1, + ".next": 1, + "os.path.isdir": 1, + "google.protobuf": 4, + "descriptor": 1, + "_descriptor": 1, + "message": 1, + "_message": 1, + "reflection": 1, + "_reflection": 1, + "descriptor_pb2": 1, + "DESCRIPTOR": 3, + "_descriptor.FileDescriptor": 1, + "package": 1, + "serialized_pb": 1, + "_PERSON": 3, + "_descriptor.Descriptor": 1, + "full_name": 2, + "filename": 1, + "file": 1, + "containing_type": 2, + "_descriptor.FieldDescriptor": 1, + "index": 1, + "number": 1, + "cpp_type": 1, + "has_default_value": 1, + "default_value": 1, + "unicode": 8, + "message_type": 1, + "enum_type": 1, + "is_extension": 1, + "extension_scope": 1, + "extensions": 1, + "nested_types": 1, + "enum_types": 1, + "is_extendable": 1, + "extension_ranges": 1, + "serialized_start": 1, + "serialized_end": 1, + "DESCRIPTOR.message_types_by_name": 1, + "Person": 1, + "_message.Message": 1, + "_reflection.GeneratedProtocolMessageType": 1, + "P3D": 1, + "lights": 1, + "camera": 1, + "mouseY": 1, + "eyeX": 1, + "eyeY": 1, + "eyeZ": 1, + "centerX": 1, + "centerY": 1, + "centerZ": 1, + "upX": 1, + "upY": 1, + "upZ": 1, + "box": 1, + "stroke": 1, + "line": 3, + "unicode_literals": 1, + "copy": 1, + "functools": 1, + "update_wrapper": 2, + "future_builtins": 1, + "django.db.models.manager": 1, + "Imported": 1, + "register": 1, + "signal": 1, + "handler.": 1, + "django.conf": 1, + "settings": 1, + "django.core.exceptions": 1, + "ObjectDoesNotExist": 2, + "MultipleObjectsReturned": 2, + "FieldError": 4, + "ValidationError": 8, + "NON_FIELD_ERRORS": 3, + "django.core": 1, + "validators": 1, + "django.db.models.fields": 1, + "AutoField": 2, + "FieldDoesNotExist": 2, + "django.db.models.fields.related": 1, + "ManyToOneRel": 3, + "OneToOneField": 3, + "add_lazy_relation": 2, + "django.db": 1, + "router": 1, + "transaction": 1, + "DatabaseError": 3, + "DEFAULT_DB_ALIAS": 2, + "django.db.models.query": 1, + "Q": 3, + "django.db.models.query_utils": 2, + "DeferredAttribute": 3, + "django.db.models.deletion": 1, + "Collector": 2, + "django.db.models.options": 1, + "Options": 2, + "django.db.models": 1, + "signals": 1, + "django.db.models.loading": 1, + "register_models": 2, + "get_model": 3, + "django.utils.translation": 1, + "ugettext_lazy": 1, + "django.utils.functional": 1, + "curry": 6, + "django.utils.encoding": 1, + "smart_str": 3, + "force_unicode": 3, + "django.utils.text": 1, + "get_text_list": 2, + "capfirst": 6, + "ModelBase": 4, + "super_new": 3, + "super": 2, + ".__new__": 1, + "parents": 8, + "module": 6, + "attrs.pop": 2, + "new_class": 9, + "attr_meta": 5, + "abstract": 3, + "meta": 12, + "base_meta": 2, + "model_module": 1, + "sys.modules": 1, + "new_class.__module__": 1, + "kwargs": 9, + "model_module.__name__.split": 1, + "new_class.add_to_class": 7, + "subclass_exception": 3, + "tuple": 3, + "x.DoesNotExist": 1, + "x._meta.abstract": 2, + "x.MultipleObjectsReturned": 1, + "base_meta.abstract": 1, + "new_class._meta.ordering": 1, + "base_meta.ordering": 1, + "new_class._meta.get_latest_by": 1, + "base_meta.get_latest_by": 1, + "is_proxy": 5, + "new_class._meta.proxy": 1, + "new_class._default_manager": 2, + "new_class._base_manager": 2, + "new_class._default_manager._copy_to_model": 1, + "new_class._base_manager._copy_to_model": 1, + "m": 3, + "new_class._meta.app_label": 3, + "seed_cache": 2, + "only_installed": 2, + "obj_name": 2, + "obj": 4, + "attrs.items": 1, + "new_fields": 2, + "new_class._meta.local_fields": 3, + "new_class._meta.local_many_to_many": 2, + "new_class._meta.virtual_fields": 1, + "field_names": 5, + "f.name": 5, + "f": 19, + "base": 13, + "parent._meta.abstract": 1, + "parent._meta.fields": 1, + "TypeError": 4, + "continue": 10, + "new_class._meta.setup_proxy": 1, + "new_class._meta.concrete_model": 2, + "base._meta.concrete_model": 2, + "o2o_map": 3, + "f.rel.to": 1, + "original_base": 1, + "parent_fields": 3, + "base._meta.local_fields": 1, + "base._meta.local_many_to_many": 1, + "field.name": 14, + "base.__name__": 2, + "base._meta.abstract": 2, + "attr_name": 3, + "base._meta.module_name": 1, + "auto_created": 1, + "parent_link": 1, + "new_class._meta.parents": 1, + "copy.deepcopy": 2, + "new_class._meta.parents.update": 1, + "base._meta.parents": 1, + "new_class.copy_managers": 2, + "base._meta.abstract_managers": 1, + "original_base._meta.concrete_managers": 1, + "base._meta.virtual_fields": 1, + "attr_meta.abstract": 1, + "new_class.Meta": 1, + "new_class._prepare": 1, + "copy_managers": 1, + "base_managers": 2, + "base_managers.sort": 1, + "mgr_name": 3, + "manager": 3, + "val": 14, + "new_manager": 2, + "manager._copy_to_model": 1, + "cls.add_to_class": 1, + "add_to_class": 1, + "value.contribute_to_class": 1, + "setattr": 14, + "_prepare": 1, + "opts": 5, + "cls._meta": 3, + "opts._prepare": 1, + "opts.order_with_respect_to": 2, + "cls.get_next_in_order": 1, + "cls._get_next_or_previous_in_order": 2, + "is_next": 9, + "cls.get_previous_in_order": 1, + "make_foreign_order_accessors": 2, + "model": 8, + "field.rel.to": 2, + "cls.__name__.lower": 2, + "method_get_order": 2, + "method_set_order": 2, + "opts.order_with_respect_to.rel.to": 1, + "cls.__name__": 1, + "f.attname": 5, + "opts.fields": 1, + "cls.get_absolute_url": 3, + "get_absolute_url": 2, + "signals.class_prepared.send": 1, + "sender": 5, + "ModelState": 2, + "db": 2, + "self.db": 1, + "self.adding": 1, + "Model": 2, + "_deferred": 1, + "signals.pre_init.send": 1, + "self.__class__": 10, + "self._state": 1, + "args_len": 2, + "self._meta.fields": 5, + "IndexError": 2, + "fields_iter": 4, + "iter": 1, + "field.attname": 17, + "kwargs.pop": 6, + "field.rel": 2, + "is_related_object": 3, + "self.__class__.__dict__.get": 2, + "rel_obj": 3, + "KeyError": 3, + "field.get_default": 3, + "field.null": 1, + "kwargs.keys": 2, + "property": 2, + "AttributeError": 1, + ".__init__": 1, + "signals.post_init.send": 1, + "instance": 5, + "UnicodeEncodeError": 1, + "UnicodeDecodeError": 1, + "__str__": 1, + ".encode": 1, + "__eq__": 1, + "other": 4, + "self._get_pk_val": 6, + "other._get_pk_val": 1, + "__ne__": 1, + "self.__eq__": 1, + "__hash__": 1, + "hash": 1, + "__reduce__": 1, + "self.__dict__": 1, + "defers": 2, + "self._deferred": 1, + "deferred_class_factory": 2, + "factory": 5, + "defers.append": 1, + "self._meta.proxy_for_model": 1, + "simple_class_factory": 2, + "model_unpickle": 2, + "_get_pk_val": 2, + "self._meta": 2, + "meta.pk.attname": 2, + "_set_pk_val": 2, + "self._meta.pk.attname": 2, + "pk": 5, + "serializable_value": 1, + "field_name": 8, + "self._meta.get_field_by_name": 1, + "save": 1, + "force_insert": 7, + "force_update": 10, + "using": 30, + "update_fields": 23, + "field.primary_key": 1, + "non_model_fields": 2, + "update_fields.difference": 1, + "self.save_base": 2, + "save.alters_data": 1, + "save_base": 1, + "raw": 9, + "origin": 7, + "router.db_for_write": 2, + "meta.proxy": 5, + "meta.auto_created": 2, + "signals.pre_save.send": 1, + "org": 3, + "meta.parents.items": 1, + "parent._meta.pk.attname": 2, + "parent._meta": 1, + "non_pks": 5, + "meta.local_fields": 2, + "f.primary_key": 2, + "pk_val": 4, + "pk_set": 5, + "record_exists": 5, + "cls._base_manager": 1, + "manager.using": 3, + ".filter": 7, + ".exists": 1, + "f.pre_save": 1, + "rows": 3, + "._update": 1, + "meta.order_with_respect_to": 2, + "order_value": 2, + ".count": 1, + "self._order": 1, + "update_pk": 3, + "meta.has_auto_field": 1, + "result": 2, + "manager._insert": 1, + "return_id": 1, + "transaction.commit_unless_managed": 2, + "self._state.db": 2, + "self._state.adding": 4, + "signals.post_save.send": 1, + "created": 1, + "save_base.alters_data": 1, + "delete": 1, + "self._meta.object_name": 1, + "collector": 1, + "collector.collect": 1, + "collector.delete": 1, + "delete.alters_data": 1, + "_get_FIELD_display": 1, + "field.flatchoices": 1, + ".get": 2, + "strings_only": 1, + "_get_next_or_previous_by_FIELD": 1, + "self.pk": 6, + "order": 5, + "param": 3, + "q": 4, + "|": 1, + "qs": 6, + "self.__class__._default_manager.using": 1, + "*kwargs": 1, + ".order_by": 2, + "self.DoesNotExist": 1, + "self.__class__._meta.object_name": 1, + "_get_next_or_previous_in_order": 1, + "cachename": 4, + "order_field": 1, + "self._meta.order_with_respect_to": 1, + "self._default_manager.filter": 1, + "order_field.name": 1, + "order_field.attname": 1, + "self._default_manager.values": 1, + "self._meta.pk.name": 1, + "prepare_database_save": 1, + "unused": 1, + "clean": 1, + "validate_unique": 1, + "exclude": 23, + "unique_checks": 6, + "date_checks": 6, + "self._get_unique_checks": 1, + "errors": 20, + "self._perform_unique_checks": 1, + "date_errors": 1, + "self._perform_date_checks": 1, + "date_errors.items": 1, + "errors.setdefault": 3, + "_get_unique_checks": 1, + "unique_togethers": 2, + "self._meta.unique_together": 1, + "parent_class": 4, + "self._meta.parents.keys": 2, + "parent_class._meta.unique_together": 2, + "unique_togethers.append": 1, + "model_class": 11, + "unique_together": 2, + "unique_checks.append": 2, + "fields_with_class": 2, + "self._meta.local_fields": 1, + "fields_with_class.append": 1, + "parent_class._meta.local_fields": 1, + "f.unique": 1, + "f.unique_for_date": 3, + "date_checks.append": 3, + "f.unique_for_year": 3, + "f.unique_for_month": 3, + "_perform_unique_checks": 1, + "unique_check": 10, + "lookup_kwargs": 8, + "self._meta.get_field": 1, + "lookup_value": 3, + "lookup_kwargs.keys": 1, + "model_class._default_manager.filter": 2, + "*lookup_kwargs": 2, + "model_class_pk": 3, + "model_class._meta": 2, + "qs.exclude": 2, + "qs.exists": 2, + ".append": 2, + "self.unique_error_message": 1, + "_perform_date_checks": 1, + "lookup_type": 7, + "unique_for": 9, + "date": 3, + "date.day": 1, + "date.month": 1, + "date.year": 1, + "self.date_error_message": 1, + "date_error_message": 1, + "opts.get_field": 4, + ".verbose_name": 3, + "unique_error_message": 1, + "model_name": 3, + "opts.verbose_name": 1, + "field_label": 2, + "field.verbose_name": 1, + "field.error_messages": 1, + "field_labels": 4, + "map": 1, + "lambda": 1, + "full_clean": 1, + "self.clean_fields": 1, + "e.update_error_dict": 3, + "self.clean": 1, + "errors.keys": 1, + "exclude.append": 1, + "self.validate_unique": 1, + "clean_fields": 1, + "raw_value": 3, + "f.blank": 1, + "validators.EMPTY_VALUES": 1, + "f.clean": 1, + "e.messages": 1, + "############################################": 2, + "ordered_obj": 2, + "id_list": 2, + "rel_val": 4, + "ordered_obj._meta.order_with_respect_to.rel.field_name": 2, + "order_name": 4, + "ordered_obj._meta.order_with_respect_to.name": 2, + "ordered_obj.objects.filter": 2, + ".update": 1, + "_order": 1, + "pk_name": 3, + "ordered_obj._meta.pk.name": 1, + ".values": 1, + "##############################################": 2, + "func": 2, + "settings.ABSOLUTE_URL_OVERRIDES.get": 1, + "opts.app_label": 1, + "opts.module_name": 1, + "########": 2, + "Empty": 1, + "cls.__new__": 1, + "model_unpickle.__safe_for_unpickle__": 1 + }, + "Handlebars": { + "
": 5, + "class=": 5, + "

": 3, + "By": 2, + "{": 16, + "fullName": 2, + "author": 2, + "}": 16, + "

": 3, + "body": 3, + "
": 5, + "Comments": 1, + "#each": 1, + "comments": 1, + "

": 1, + "

": 1, + "/each": 1, + "title": 1 } }, "language_tokens": { - "ABAP": 1500, - "Agda": 376, - "Alloy": 1143, - "ApacheConf": 1449, - "Apex": 4408, - "AppleScript": 1862, - "Arduino": 20, - "AsciiDoc": 103, - "AspectJ": 324, - "Assembly": 21750, - "ATS": 4558, - "AutoHotkey": 3, - "Awk": 544, - "BlitzBasic": 2065, - "Bluespec": 1298, - "Brightscript": 579, - "C": 59053, - "C#": 278, - "C++": 34739, - "Ceylon": 50, - "Cirru": 244, - "Clojure": 510, - "COBOL": 90, - "CoffeeScript": 2951, - "Common Lisp": 2186, - "Component Pascal": 825, - "Coq": 18259, - "Creole": 134, - "Crystal": 1506, - "CSS": 43867, - "Cuda": 290, - "Dart": 74, - "Diff": 16, - "DM": 169, - "Dogescript": 30, - "E": 601, - "Eagle": 30089, - "ECL": 281, - "edn": 227, - "Elm": 628, - "Emacs Lisp": 1756, - "Erlang": 2928, - "fish": 636, - "Forth": 1516, - "Frege": 5564, - "Game Maker Language": 13310, - "GAMS": 363, - "GAP": 9944, - "GAS": 133, - "GLSL": 4033, - "Gnuplot": 1023, - "Gosu": 410, - "Grammatical Framework": 10607, - "Groovy": 93, - "Groovy Server Pages": 91, - "Haml": 4, - "Handlebars": 69, - "Haskell": 302, - "HTML": 413, - "Hy": 155, + "Stylus": 76, "IDL": 418, - "Idris": 148, + "OpenEdge ABL": 762, + "Latte": 759, + "Racket": 331, + "Assembly": 21750, + "AsciiDoc": 103, + "Gnuplot": 1023, + "Nginx": 179, + "Dogescript": 30, + "Markdown": 1, + "Perl": 17979, + "XML": 8185, + "MTML": 93, + "Lasso": 9849, + "Max": 714, + "Awk": 544, + "JavaScript": 76970, + "Visual Basic": 581, + "GAP": 9944, + "Logtalk": 36, + "Scheme": 3515, + "C++": 34739, + "JSON5": 57, + "MoonScript": 1718, + "Mercury": 31096, + "Perl6": 372, + "VHDL": 42, + "Literate CoffeeScript": 275, + "KRL": 25, + "Nimrod": 1, + "Pascal": 30, + "C#": 278, + "Groovy Server Pages": 91, + "GAMS": 363, + "COBOL": 90, + "Cuda": 290, + "Gosu": 410, + "Prolog": 468, + "Tcl": 1133, + "Squirrel": 130, + "YAML": 77, + "Clojure": 510, + "Tea": 3, + "VimL": 20, + "M": 23615, + "NSIS": 725, + "Pod": 658, + "AutoHotkey": 3, + "TXL": 213, + "wisp": 1363, + "Mathematica": 411, + "Coq": 18259, + "GAS": 133, + "Verilog": 3778, + "Apex": 4408, + "Scala": 750, + "JSONLD": 18, + "LiveScript": 123, + "Org": 358, + "Liquid": 633, + "UnrealScript": 2873, + "Component Pascal": 825, + "PogoScript": 250, + "Creole": 134, + "Processing": 74, + "Emacs Lisp": 1756, + "Elm": 628, "Inform 7": 75, - "INI": 27, + "XC": 24, + "JSON": 183, + "Scaml": 4, + "Shell": 3744, + "Sass": 56, + "Oxygene": 157, + "ATS": 4558, + "SCSS": 39, + "R": 1790, + "Brightscript": 579, + "HTML": 413, + "Frege": 5564, + "Literate Agda": 478, + "Lua": 724, + "XSLT": 44, + "Zimpl": 123, + "Groovy": 93, "Ioke": 2, "Jade": 3, - "Java": 8987, - "JavaScript": 76970, - "JSON": 183, - "JSON5": 57, - "JSONiq": 151, - "JSONLD": 18, - "Julia": 247, - "Kit": 6, - "Kotlin": 155, - "KRL": 25, - "Lasso": 9849, - "Latte": 759, - "Less": 39, - "LFE": 1711, - "Liquid": 633, - "Literate Agda": 478, - "Literate CoffeeScript": 275, - "LiveScript": 123, - "Logos": 93, - "Logtalk": 36, - "Lua": 724, - "M": 23615, - "Makefile": 50, - "Markdown": 1, - "Mask": 74, - "Mathematica": 411, - "Matlab": 11942, - "Max": 714, + "TypeScript": 109, + "Erlang": 2928, + "ABAP": 1500, + "Rebol": 533, + "SuperCollider": 133, + "CoffeeScript": 2951, + "PHP": 20754, "MediaWiki": 766, - "Mercury": 31096, - "Monkey": 207, - "Moocode": 5234, - "MoonScript": 1718, - "MTML": 93, - "Nemerle": 17, - "NetLogo": 243, - "Nginx": 179, - "Nimrod": 1, - "NSIS": 725, - "Nu": 116, + "Ceylon": 50, + "fish": 636, + "Diff": 16, + "Slash": 187, "Objective-C": 26518, - "Objective-C++": 6021, + "Stata": 3133, + "Shen": 3472, + "Mask": 74, + "SAS": 93, + "Xtend": 399, + "Arduino": 20, + "XProc": 22, + "Haml": 4, + "AspectJ": 324, + "RDoc": 279, + "AppleScript": 1862, + "Ox": 1006, + "STON": 100, + "Scilab": 69, + "Dart": 74, + "Nu": 116, + "Alloy": 1143, + "Red": 816, + "BlitzBasic": 2065, + "RobotFramework": 483, + "ApacheConf": 1449, + "Agda": 376, + "Hy": 155, + "Less": 39, + "Kit": 6, + "E": 601, + "DM": 169, + "OpenCL": 144, + "ShellSession": 233, + "GLSL": 4033, + "ECL": 281, + "Makefile": 50, + "Haskell": 302, + "Slim": 77, + "Zephir": 1026, + "INI": 27, "OCaml": 382, + "VCL": 545, + "Smalltalk": 423, + "Parrot Assembly": 6, + "Protocol Buffer": 63, + "SQL": 1485, + "Nemerle": 17, + "Bluespec": 1298, + "Swift": 1128, + "SourcePawn": 2080, + "Propeller Spin": 13519, + "Cirru": 244, + "Julia": 247, + "Ragel in Ruby Host": 593, + "JSONiq": 151, + "TeX": 2701, + "XQuery": 801, + "RMarkdown": 19, + "Crystal": 1506, + "edn": 227, + "PowerShell": 12, + "Game Maker Language": 13310, + "Volt": 388, + "Monkey": 207, + "SystemVerilog": 541, + "Grammatical Framework": 10607, + "PostScript": 107, + "CSS": 43867, + "Forth": 1516, + "LFE": 1711, + "Moocode": 5234, + "Java": 8987, + "Turing": 44, + "Kotlin": 155, + "Idris": 148, + "PureScript": 1652, + "NetLogo": 243, + "Eagle": 30089, + "Common Lisp": 2186, + "Parrot Internal Representation": 5, + "Objective-C++": 6021, + "Rust": 3566, + "Matlab": 11942, + "Pan": 130, + "PAWN": 3263, + "Ruby": 3862, + "C": 59053, + "Standard ML": 6567, + "Logos": 93, "Omgrofl": 57, "Opa": 28, - "OpenCL": 144, - "OpenEdge ABL": 762, - "Org": 358, - "Ox": 1006, - "Oxygene": 157, - "Pan": 130, - "Parrot Assembly": 6, - "Parrot Internal Representation": 5, - "Pascal": 30, - "PAWN": 3263, - "Perl": 17979, - "Perl6": 372, - "PHP": 20724, - "Pod": 658, - "PogoScript": 250, - "PostScript": 107, - "PowerShell": 12, - "Processing": 74, - "Prolog": 468, - "Propeller Spin": 13519, - "Protocol Buffer": 63, - "PureScript": 1652, "Python": 5994, - "R": 1790, - "Racket": 331, - "Ragel in Ruby Host": 593, - "RDoc": 279, - "Rebol": 533, - "Red": 816, - "RMarkdown": 19, - "RobotFramework": 483, - "Ruby": 3862, - "Rust": 3566, - "SAS": 93, - "Sass": 56, - "Scala": 750, - "Scaml": 4, - "Scheme": 3515, - "Scilab": 69, - "SCSS": 39, - "Shell": 3744, - "ShellSession": 233, - "Shen": 3472, - "Slash": 187, - "Slim": 77, - "Smalltalk": 423, - "SourcePawn": 2080, - "SQL": 1485, - "Squirrel": 130, - "Standard ML": 6567, - "Stata": 3133, - "STON": 100, - "Stylus": 76, - "SuperCollider": 133, - "Swift": 1128, - "SystemVerilog": 541, - "Tcl": 1133, - "Tea": 3, - "TeX": 2701, - "Turing": 44, - "TXL": 213, - "TypeScript": 109, - "UnrealScript": 2873, - "VCL": 545, - "Verilog": 3778, - "VHDL": 42, - "VimL": 20, - "Visual Basic": 581, - "Volt": 388, - "wisp": 1363, - "XC": 24, - "XML": 7006, - "XProc": 22, - "XQuery": 801, - "XSLT": 44, - "Xtend": 399, - "YAML": 77, - "Zephir": 1026, - "Zimpl": 123 + "Handlebars": 69 }, "languages": { - "ABAP": 1, - "Agda": 1, - "Alloy": 3, - "ApacheConf": 3, - "Apex": 6, - "AppleScript": 7, - "Arduino": 1, - "AsciiDoc": 3, - "AspectJ": 2, - "Assembly": 4, - "ATS": 10, - "AutoHotkey": 1, - "Awk": 1, - "BlitzBasic": 3, - "Bluespec": 2, - "Brightscript": 1, - "C": 29, - "C#": 2, - "C++": 29, - "Ceylon": 1, - "Cirru": 9, - "Clojure": 7, - "COBOL": 4, - "CoffeeScript": 9, - "Common Lisp": 3, - "Component Pascal": 2, - "Coq": 12, - "Creole": 1, - "Crystal": 3, - "CSS": 2, - "Cuda": 2, - "Dart": 1, - "Diff": 1, - "DM": 1, - "Dogescript": 1, - "E": 6, - "Eagle": 2, - "ECL": 1, - "edn": 1, - "Elm": 3, - "Emacs Lisp": 2, - "Erlang": 5, - "fish": 3, - "Forth": 7, - "Frege": 4, - "Game Maker Language": 13, - "GAMS": 1, - "GAP": 7, - "GAS": 1, - "GLSL": 5, - "Gnuplot": 6, - "Gosu": 4, - "Grammatical Framework": 41, - "Groovy": 5, - "Groovy Server Pages": 4, - "Haml": 1, - "Handlebars": 2, - "Haskell": 3, - "HTML": 2, - "Hy": 2, + "Stylus": 1, "IDL": 4, - "Idris": 1, + "OpenEdge ABL": 5, + "Latte": 2, + "Racket": 2, + "Assembly": 4, + "AsciiDoc": 3, + "Gnuplot": 6, + "Nginx": 1, + "Dogescript": 1, + "Markdown": 1, + "Perl": 15, + "XML": 13, + "MTML": 1, + "Lasso": 4, + "Max": 3, + "Awk": 1, + "JavaScript": 22, + "Visual Basic": 3, + "GAP": 7, + "Logtalk": 1, + "Scheme": 2, + "C++": 29, + "JSON5": 2, + "MoonScript": 1, + "Mercury": 9, + "Perl6": 3, + "VHDL": 1, + "Literate CoffeeScript": 1, + "KRL": 1, + "Nimrod": 1, + "Pascal": 1, + "C#": 2, + "Groovy Server Pages": 4, + "GAMS": 1, + "COBOL": 4, + "Cuda": 2, + "Gosu": 4, + "Prolog": 3, + "Tcl": 2, + "Squirrel": 1, + "YAML": 2, + "Clojure": 7, + "Tea": 1, + "VimL": 2, + "M": 29, + "NSIS": 2, + "Pod": 1, + "AutoHotkey": 1, + "TXL": 1, + "wisp": 1, + "Mathematica": 3, + "Coq": 12, + "GAS": 1, + "Verilog": 13, + "Apex": 6, + "Scala": 4, + "JSONLD": 1, + "LiveScript": 1, + "Org": 1, + "Liquid": 2, + "UnrealScript": 2, + "Component Pascal": 2, + "PogoScript": 1, + "Creole": 1, + "Processing": 1, + "Emacs Lisp": 2, + "Elm": 3, "Inform 7": 2, - "INI": 2, + "XC": 1, + "JSON": 4, + "Scaml": 1, + "Shell": 37, + "Sass": 2, + "Oxygene": 1, + "ATS": 10, + "SCSS": 1, + "R": 7, + "Brightscript": 1, + "HTML": 2, + "Frege": 4, + "Literate Agda": 1, + "Lua": 3, + "XSLT": 1, + "Zimpl": 1, + "Groovy": 5, "Ioke": 1, "Jade": 1, - "Java": 6, - "JavaScript": 22, - "JSON": 4, - "JSON5": 2, - "JSONiq": 2, - "JSONLD": 1, - "Julia": 1, - "Kit": 1, - "Kotlin": 1, - "KRL": 1, - "Lasso": 4, - "Latte": 2, - "Less": 1, - "LFE": 4, - "Liquid": 2, - "Literate Agda": 1, - "Literate CoffeeScript": 1, - "LiveScript": 1, - "Logos": 1, - "Logtalk": 1, - "Lua": 3, - "M": 29, - "Makefile": 2, - "Markdown": 1, - "Mask": 1, - "Mathematica": 3, - "Matlab": 39, - "Max": 3, + "TypeScript": 3, + "Erlang": 5, + "ABAP": 1, + "Rebol": 6, + "SuperCollider": 1, + "CoffeeScript": 9, + "PHP": 10, "MediaWiki": 1, - "Mercury": 9, - "Monkey": 1, - "Moocode": 3, - "MoonScript": 1, - "MTML": 1, - "Nemerle": 1, - "NetLogo": 1, - "Nginx": 1, - "Nimrod": 1, - "NSIS": 2, - "Nu": 2, + "Ceylon": 1, + "fish": 3, + "Diff": 1, + "Slash": 1, "Objective-C": 19, - "Objective-C++": 2, + "Stata": 7, + "Shen": 3, + "Mask": 1, + "SAS": 2, + "Xtend": 2, + "Arduino": 1, + "XProc": 1, + "Haml": 1, + "AspectJ": 2, + "RDoc": 1, + "AppleScript": 7, + "Ox": 3, + "STON": 7, + "Scilab": 3, + "Dart": 1, + "Nu": 2, + "Alloy": 3, + "Red": 2, + "BlitzBasic": 3, + "RobotFramework": 3, + "ApacheConf": 3, + "Agda": 1, + "Hy": 2, + "Less": 1, + "Kit": 1, + "E": 6, + "DM": 1, + "OpenCL": 2, + "ShellSession": 3, + "GLSL": 5, + "ECL": 1, + "Makefile": 2, + "Haskell": 3, + "Slim": 1, + "Zephir": 2, + "INI": 2, "OCaml": 2, + "VCL": 2, + "Smalltalk": 3, + "Parrot Assembly": 1, + "Protocol Buffer": 1, + "SQL": 5, + "Nemerle": 1, + "Bluespec": 2, + "Swift": 43, + "SourcePawn": 1, + "Propeller Spin": 10, + "Cirru": 9, + "Julia": 1, + "Ragel in Ruby Host": 3, + "JSONiq": 2, + "TeX": 2, + "XQuery": 1, + "RMarkdown": 1, + "Crystal": 3, + "edn": 1, + "PowerShell": 2, + "Game Maker Language": 13, + "Volt": 1, + "Monkey": 1, + "SystemVerilog": 4, + "Grammatical Framework": 41, + "PostScript": 1, + "CSS": 2, + "Forth": 7, + "LFE": 4, + "Moocode": 3, + "Java": 6, + "Turing": 1, + "Kotlin": 1, + "Idris": 1, + "PureScript": 4, + "NetLogo": 1, + "Eagle": 2, + "Common Lisp": 3, + "Parrot Internal Representation": 1, + "Objective-C++": 2, + "Rust": 1, + "Matlab": 39, + "Pan": 1, + "PAWN": 1, + "Ruby": 17, + "C": 29, + "Standard ML": 5, + "Logos": 1, "Omgrofl": 1, "Opa": 2, - "OpenCL": 2, - "OpenEdge ABL": 5, - "Org": 1, - "Ox": 3, - "Oxygene": 1, - "Pan": 1, - "Parrot Assembly": 1, - "Parrot Internal Representation": 1, - "Pascal": 1, - "PAWN": 1, - "Perl": 15, - "Perl6": 3, - "PHP": 9, - "Pod": 1, - "PogoScript": 1, - "PostScript": 1, - "PowerShell": 2, - "Processing": 1, - "Prolog": 3, - "Propeller Spin": 10, - "Protocol Buffer": 1, - "PureScript": 4, "Python": 9, - "R": 7, - "Racket": 2, - "Ragel in Ruby Host": 3, - "RDoc": 1, - "Rebol": 6, - "Red": 2, - "RMarkdown": 1, - "RobotFramework": 3, - "Ruby": 17, - "Rust": 1, - "SAS": 2, - "Sass": 2, - "Scala": 4, - "Scaml": 1, - "Scheme": 2, - "Scilab": 3, - "SCSS": 1, - "Shell": 37, - "ShellSession": 3, - "Shen": 3, - "Slash": 1, - "Slim": 1, - "Smalltalk": 3, - "SourcePawn": 1, - "SQL": 5, - "Squirrel": 1, - "Standard ML": 5, - "Stata": 7, - "STON": 7, - "Stylus": 1, - "SuperCollider": 1, - "Swift": 43, - "SystemVerilog": 4, - "Tcl": 2, - "Tea": 1, - "TeX": 2, - "Turing": 1, - "TXL": 1, - "TypeScript": 3, - "UnrealScript": 2, - "VCL": 2, - "Verilog": 13, - "VHDL": 1, - "VimL": 2, - "Visual Basic": 3, - "Volt": 1, - "wisp": 1, - "XC": 1, - "XML": 12, - "XProc": 1, - "XQuery": 1, - "XSLT": 1, - "Xtend": 2, - "YAML": 2, - "Zephir": 2, - "Zimpl": 1 + "Handlebars": 2 }, - "md5": "7403e3e21c597d10462391ab49bb9bf9" + "md5": "c6118389c68035913e7562d8a8e6617d" } \ No newline at end of file diff --git a/samples/PHP/filenames/.php b/samples/PHP/filenames/.php new file mode 100755 index 00000000..be170195 --- /dev/null +++ b/samples/PHP/filenames/.php @@ -0,0 +1,34 @@ +#!/usr/bin/env php + diff --git a/samples/XML/filenames/.cproject b/samples/XML/filenames/.cproject new file mode 100755 index 00000000..5fbff7b7 --- /dev/null +++ b/samples/XML/filenames/.cproject @@ -0,0 +1,542 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From 8bbe10bf50fb53fa8c6d75b146eaa8314afe1fa7 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Fri, 20 Jun 2014 10:22:14 +0100 Subject: [PATCH 043/268] Reordering --- lib/linguist/languages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 2e3ba7ed..933b8d7c 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1698,11 +1698,11 @@ Python: - .gyp - .lmi - .pyde + - .pyp - .pyt - .pyw - .wsgi - .xpy - - .pyp filenames: - wscript - SConstruct From 28a64c931869eec6d9d51f4aa4b6b1b51ba3d644 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Fri, 20 Jun 2014 10:27:47 +0100 Subject: [PATCH 044/268] Samples --- lib/linguist/samples.json | 222 ++++++++++++++++++++++++++++---------- 1 file changed, 165 insertions(+), 57 deletions(-) diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index e8f82a38..c5569e09 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -469,6 +469,7 @@ "Python": [ ".py", ".pyde", + ".pyp", ".script!" ], "R": [ @@ -764,8 +765,8 @@ "exception.zep.php" ] }, - "tokens_total": 637237, - "languages_total": 827, + "tokens_total": 637830, + "languages_total": 828, "tokens": { "ABAP": { "*/**": 1, @@ -55794,7 +55795,7 @@ }, "Python": { "xspacing": 4, - "#": 21, + "#": 28, "How": 2, "far": 1, "apart": 1, @@ -55813,26 +55814,26 @@ "together": 1, "theta": 3, "amplitude": 3, - "[": 161, - "]": 161, + "[": 165, + "]": 165, "Height": 1, "wave": 2, "dx": 8, "yvalues": 7, - "def": 74, + "def": 87, "setup": 2, - "(": 762, - ")": 773, - "size": 2, + "(": 850, + ")": 861, + "size": 5, "frameRate": 1, "colorMode": 1, "RGB": 1, "w": 2, "width": 1, - "+": 44, - "for": 65, + "+": 51, + "for": 69, "i": 13, - "in": 85, + "in": 91, "range": 5, "amplitude.append": 1, "random": 2, @@ -55845,7 +55846,7 @@ "dx.append": 1, "TWO_PI": 1, "/": 26, - "*": 37, + "*": 38, "_": 6, "yvalues.append": 1, "draw": 2, @@ -55854,26 +55855,167 @@ "renderWave": 2, "len": 11, "j": 7, - "x": 28, - "if": 146, + "x": 34, + "if": 160, "%": 33, "sin": 1, - "else": 31, + "else": 33, "cos": 1, "noStroke": 2, "fill": 2, "ellipseMode": 1, "CENTER": 1, - "v": 13, + "v": 19, "enumerate": 2, "ellipse": 1, "height": 1, - "from": 34, + "import": 55, + "os": 2, + "sys": 3, + "json": 1, + "c4d": 1, + "c4dtools": 1, + "itertools": 1, + "from": 36, + "c4d.modules": 1, + "graphview": 1, + "as": 14, + "gv": 1, + "c4dtools.misc": 1, + "graphnode": 1, + "res": 3, + "importer": 1, + "c4dtools.prepare": 1, + "__file__": 1, + "__res__": 1, + "settings": 2, + "c4dtools.helpers.Attributor": 2, + "{": 27, + "res.file": 3, + "}": 27, + "align_nodes": 2, + "nodes": 11, + "mode": 5, + "spacing": 7, + "r": 9, + "modes": 3, + "not": 69, + "return": 68, + "raise": 23, + "ValueError": 6, + ".join": 4, + "get_0": 12, + "lambda": 6, + "x.x": 1, + "get_1": 4, + "x.y": 1, + "set_0": 6, + "setattr": 16, + "set_1": 4, + "graphnode.GraphNode": 1, + "n": 6, + "nodes.sort": 1, + "key": 6, + "n.position": 1, + "midpoint": 3, + "graphnode.find_nodes_mid": 1, + "first_position": 2, + ".position": 1, + "new_positions": 2, + "prev_offset": 6, + "node": 2, + "position": 12, + "node.position": 2, + "-": 36, + "node.size": 1, + "<": 2, + "new_positions.append": 1, + "bbox_size": 2, + "bbox_size_2": 2, + "itertools.izip": 1, + "align_nodes_shortcut": 3, + "master": 2, + "gv.GetMaster": 1, + "root": 3, + "master.GetRoot": 1, + "graphnode.find_selected_nodes": 1, + "master.AddUndo": 1, + "c4d.EventAdd": 1, + "True": 25, + "class": 19, + "XPAT_Options": 3, + "defaults": 1, + "__init__": 7, + "self": 113, + "filename": 12, + "None": 92, + "super": 4, + ".__init__": 3, + "self.load": 1, + "load": 1, + "is": 31, + "settings.options_filename": 2, + "os.path.isfile": 1, + "self.dict_": 2, + "self.defaults.copy": 2, + "with": 2, + "open": 2, + "fp": 4, + "self.dict_.update": 1, + "json.load": 1, + "self.save": 1, + "save": 2, + "values": 15, + "dict": 4, + "k": 7, + "self.dict_.iteritems": 1, + "self.defaults": 1, + "json.dump": 1, + "XPAT_OptionsDialog": 2, + "c4d.gui.GeDialog": 1, + "CreateLayout": 1, + "self.LoadDialogResource": 1, + "res.DLG_OPTIONS": 1, + "InitValues": 1, + "self.SetLong": 2, + "res.EDT_HSPACE": 2, + "options.hspace": 3, + "res.EDT_VSPACE": 2, + "options.vspace": 3, + "Command": 1, + "id": 2, + "msg": 1, + "res.BTN_SAVE": 1, + "self.GetLong": 2, + "options.save": 1, + "self.Close": 1, + "XPAT_Command_OpenOptionsDialog": 2, + "c4dtools.plugins.Command": 3, + "self._dialog": 4, + "@property": 2, + "dialog": 1, + "PLUGIN_ID": 3, + "PLUGIN_NAME": 3, + "res.string.XPAT_COMMAND_OPENOPTIONSDIALOG": 1, + "PLUGIN_HELP": 3, + "res.string.XPAT_COMMAND_OPENOPTIONSDIALOG_HELP": 1, + "Execute": 3, + "doc": 3, + "self.dialog.Open": 1, + "c4d.DLG_TYPE_MODAL": 1, + "XPAT_Command_AlignHorizontal": 1, + "res.string.XPAT_COMMAND_ALIGNHORIZONTAL": 1, + "PLUGIN_ICON": 2, + "res.string.XPAT_COMMAND_ALIGNHORIZONTAL_HELP": 1, + "XPAT_Command_AlignVertical": 1, + "res.string.XPAT_COMMAND_ALIGNVERTICAL": 1, + "res.string.XPAT_COMMAND_ALIGNVERTICAL_HELP": 1, + "options": 4, + "__name__": 3, + "c4dtools.plugins.main": 1, "__future__": 2, - "import": 47, "unicode_literals": 1, "copy": 1, - "sys": 2, "functools": 1, "update_wrapper": 2, "future_builtins": 1, @@ -55884,7 +56026,6 @@ "signal": 1, "handler.": 1, "django.conf": 1, - "settings": 1, "django.core.exceptions": 1, "ObjectDoesNotExist": 2, "MultipleObjectsReturned": 2, @@ -55920,7 +56061,6 @@ "get_model": 3, "django.utils.translation": 1, "ugettext_lazy": 1, - "as": 11, "django.utils.functional": 1, "curry": 6, "django.utils.encoding": 1, @@ -55929,7 +56069,6 @@ "django.utils.text": 1, "get_text_list": 2, "capfirst": 6, - "class": 14, "ModelBase": 4, "type": 6, "__new__": 2, @@ -55938,32 +56077,24 @@ "bases": 6, "attrs": 7, "super_new": 3, - "super": 2, ".__new__": 1, "parents": 8, "b": 11, "isinstance": 11, - "not": 64, - "return": 57, "module": 6, "attrs.pop": 2, "new_class": 9, - "{": 25, - "}": 25, "attr_meta": 5, - "None": 86, "abstract": 3, "getattr": 30, "False": 28, "meta": 12, "base_meta": 2, - "is": 29, "model_module": 1, "sys.modules": 1, "new_class.__module__": 1, "kwargs": 9, "model_module.__name__.split": 1, - "-": 33, "new_class.add_to_class": 7, "**kwargs": 9, "subclass_exception": 3, @@ -56004,14 +56135,12 @@ "parent": 5, "parent._meta.abstract": 1, "parent._meta.fields": 1, - "raise": 22, "TypeError": 4, "continue": 10, "new_class._meta.setup_proxy": 1, "new_class._meta.concrete_model": 2, "base._meta.concrete_model": 2, "o2o_map": 3, - "dict": 3, "f.rel.to": 1, "original_base": 1, "parent_fields": 3, @@ -56025,7 +56154,6 @@ "attr_name": 3, "base._meta.module_name": 1, "auto_created": 1, - "True": 20, "parent_link": 1, "new_class._meta.parents": 1, "copy.deepcopy": 2, @@ -56050,7 +56178,6 @@ "add_to_class": 1, "value": 9, "value.contribute_to_class": 1, - "setattr": 14, "_prepare": 1, "opts": 5, "cls._meta": 3, @@ -56069,7 +56196,6 @@ "opts.order_with_respect_to.rel.to": 1, "cls.__doc__": 3, "cls.__name__": 1, - ".join": 3, "f.attname": 5, "opts.fields": 1, "cls.get_absolute_url": 3, @@ -56078,8 +56204,6 @@ "sender": 5, "ModelState": 2, "object": 6, - "__init__": 5, - "self": 100, "db": 2, "self.db": 1, "self.adding": 1, @@ -56112,7 +56236,6 @@ "property": 2, "AttributeError": 1, "pass": 4, - ".__init__": 1, "signals.post_init.send": 1, "instance": 5, "__repr__": 2, @@ -56151,12 +56274,10 @@ "serializable_value": 1, "field_name": 8, "self._meta.get_field_by_name": 1, - "save": 1, "force_insert": 7, "force_update": 10, "using": 30, "update_fields": 23, - "ValueError": 5, "frozenset": 2, "field.primary_key": 1, "non_model_fields": 2, @@ -56185,7 +56306,6 @@ "manager.using": 3, ".filter": 7, ".exists": 1, - "values": 13, "f.pre_save": 1, "rows": 3, "._update": 1, @@ -56250,7 +56370,6 @@ "self._perform_unique_checks": 1, "date_errors": 1, "self._perform_date_checks": 1, - "k": 4, "date_errors.items": 1, "errors.setdefault": 3, ".extend": 2, @@ -56288,7 +56407,6 @@ "model_class._meta": 2, "qs.exclude": 2, "qs.exists": 2, - "key": 5, ".append": 2, "self.unique_error_message": 1, "_perform_date_checks": 1, @@ -56310,7 +56428,6 @@ "field.error_messages": 1, "field_labels": 4, "map": 1, - "lambda": 1, "full_clean": 1, "self.clean_fields": 1, "e": 13, @@ -56337,7 +56454,6 @@ "_order": 1, "pk_name": 3, "ordered_obj._meta.pk.name": 1, - "r": 3, ".values": 1, "##############################################": 2, "func": 2, @@ -56432,7 +56548,6 @@ "_PERSON": 3, "_descriptor.Descriptor": 1, "full_name": 2, - "filename": 1, "file": 1, "containing_type": 2, "_descriptor.FieldDescriptor": 1, @@ -56446,7 +56561,6 @@ "enum_type": 1, "is_extension": 1, "extension_scope": 1, - "options": 3, "extensions": 1, "nested_types": 1, "enum_types": 1, @@ -56460,13 +56574,11 @@ "_reflection.GeneratedProtocolMessageType": 1, "SHEBANG#!python": 4, "print": 39, - "os": 1, "main": 4, "usage": 3, "string": 1, "command": 4, "sys.argv": 2, - "<": 1, "sys.exit": 1, "printDelimiter": 4, "get": 1, @@ -56489,7 +56601,6 @@ "os.walk": 1, ".next": 1, "os.path.isdir": 1, - "__name__": 2, "argparse": 1, "matplotlib.pyplot": 1, "pl": 1, @@ -56789,7 +56900,6 @@ "uri.partition": 1, "self.arguments": 2, "supports_http_1_1": 1, - "@property": 1, "cookies": 1, "self._cookies": 3, "Cookie.SimpleCookie": 1, @@ -56801,10 +56911,8 @@ "get_ssl_certificate": 1, "self.connection.stream.socket.getpeercert": 1, "ssl.SSLError": 1, - "n": 3, "_valid_ip": 1, "ip": 2, - "res": 2, "socket.getaddrinfo": 1, "socket.AF_UNSPEC": 1, "socket.SOCK_STREAM": 1, @@ -68794,7 +68902,7 @@ "Propeller Spin": 13519, "Protocol Buffer": 63, "PureScript": 1652, - "Python": 5994, + "Python": 6587, "R": 1790, "Racket": 331, "Ragel in Ruby Host": 593, @@ -68988,7 +69096,7 @@ "Propeller Spin": 10, "Protocol Buffer": 1, "PureScript": 4, - "Python": 9, + "Python": 10, "R": 7, "Racket": 2, "Ragel in Ruby Host": 3, @@ -69047,5 +69155,5 @@ "Zephir": 5, "Zimpl": 1 }, - "md5": "c04de3d45a3b9a3f48347f9cb0603f09" + "md5": "896b4ca841571551a8fe421eec69b0f6" } \ No newline at end of file From b7bda346452da78305c18b0b29b969916cc3f618 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Fri, 20 Jun 2014 10:46:38 +0100 Subject: [PATCH 045/268] Samples update --- lib/linguist/samples.json | 343 +++++++++++++++++++++++++++++++++++--- 1 file changed, 318 insertions(+), 25 deletions(-) diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index c5569e09..4a1fb89a 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -765,8 +765,8 @@ "exception.zep.php" ] }, - "tokens_total": 637830, - "languages_total": 828, + "tokens_total": 639782, + "languages_total": 830, "tokens": { "ABAP": { "*/**": 1, @@ -53362,27 +53362,330 @@ "TWO_PI": 1 }, "Prolog": { - "-": 52, + "-": 161, + "module": 3, + "(": 327, + "format_spec": 12, + "[": 87, + "format_error/2": 1, + "format_spec/2": 1, + "format_spec//1": 1, + "spec_arity/2": 1, + "spec_types/2": 1, + "]": 87, + ")": 326, + ".": 107, + "use_module": 8, + "library": 8, + "dcg/basics": 1, + "eos//0": 1, + "integer//1": 1, + "string_without//2": 1, + "error": 6, + "when": 3, + "when/2": 1, + "%": 71, + "mavis": 1, + "format_error": 8, + "+": 14, + "Goal": 29, + "Error": 25, + "string": 8, + "is": 12, + "nondet.": 1, + "format": 8, + "Format": 23, + "Args": 19, + "format_error_": 5, + "_": 30, + "debug": 4, + "Spec": 10, + "is_list": 1, + "spec_types": 8, + "Types": 16, + "types_error": 3, + "length": 4, + "TypesLen": 3, + "ArgsLen": 3, + "types_error_": 4, + "Arg": 6, + "|": 25, + "Type": 3, + "ground": 5, + "is_of_type": 2, + "message_to_string": 1, + "type_error": 1, + "_Location": 1, + "multifile": 2, + "check": 3, + "checker/2.": 2, + "dynamic": 2, + "checker": 3, + "format_fail/3.": 1, + "prolog_walk_code": 1, + "module_class": 1, + "user": 5, + "infer_meta_predicates": 1, + "false": 2, + "autoload": 1, + "format/": 1, + "{": 7, + "}": 7, + "are": 3, + "always": 1, + "loaded": 1, + "undefined": 1, + "ignore": 1, + "trace_reference": 1, + "on_trace": 1, + "check_format": 3, + "retract": 1, + "format_fail": 2, + "Location": 6, + "print_message": 1, + "warning": 1, + "fail.": 3, + "iterate": 1, + "all": 1, + "errors": 2, + "checker.": 1, + "succeed": 2, + "even": 1, + "if": 1, + "no": 1, + "found": 1, + "Module": 4, + "_Caller": 1, + "predicate_property": 1, + "imported_from": 1, + "Source": 2, + "memberchk": 2, + "system": 1, + "prolog_debug": 1, + "can_check": 2, + "assert": 2, + "to": 5, + "avoid": 1, + "printing": 1, + "goals": 1, + "once": 3, + "clause": 1, + "prolog": 2, + "message": 1, + "message_location": 1, + "//": 1, + "eos.": 1, + "escape": 2, + "Numeric": 4, + "Modifier": 2, + "Action": 15, + "Rest": 12, + "numeric_argument": 5, + "modifier_argument": 3, + "action": 6, + "text": 4, + "String": 6, + ";": 12, + "Codes": 21, + "string_codes": 4, + "string_without": 1, + "list": 4, + "semidet.": 3, + "text_codes": 6, + "phrase": 3, + "spec_arity": 2, + "FormatSpec": 2, + "Arity": 3, + "positive_integer": 1, + "det.": 4, + "type": 2, + "Item": 2, + "Items": 2, + "item_types": 3, + "numeric_types": 5, + "action_types": 18, + "number": 3, + "character": 2, + "star": 2, + "nothing": 2, + "atom_codes": 4, + "Code": 2, + "Text": 1, + "codes": 5, + "Var": 5, + "var": 4, + "Atom": 3, + "atom": 6, + "N": 5, + "integer": 7, + "C": 5, + "colon": 1, + "no_colon": 1, + "is_action": 4, + "multi.": 1, + "a": 4, + "d": 3, + "e": 1, + "float": 3, + "f": 1, + "G": 2, + "I": 1, + "n": 1, + "p": 1, + "any": 3, + "r": 1, + "s": 2, + "t": 1, + "W": 1, + "func": 13, + "op": 2, + "xfy": 2, + "of": 8, + "/2": 3, + "list_util": 1, + "xfy_list/3": 1, + "function_expansion": 5, + "arithmetic": 2, + "wants_func": 4, + "prolog_load_context": 1, + "we": 1, + "don": 1, + "used": 1, + "at": 3, + "compile": 3, + "time": 3, + "for": 1, + "macro": 1, + "expansion.": 1, + "compile_function/4.": 1, + "compile_function": 8, + "Expr": 5, + "In": 15, + "Out": 16, + "evaluable/1": 1, + "throws": 1, + "exception": 1, + "with": 2, + "strings": 1, + "evaluable": 1, + "term_variables": 1, + "F": 26, + "function_composition_term": 2, + "Functor": 8, + "true": 5, + "..": 6, + "format_template": 7, + "has_type": 2, + "fail": 1, + "be": 4, + "explicit": 1, + "Dict": 3, + "is_dict": 1, + "get_dict": 1, + "Function": 5, + "Argument": 1, + "Apply": 1, + "an": 1, + "Argument.": 1, + "A": 1, + "predicate": 4, + "whose": 2, + "final": 1, + "argument": 2, + "generates": 1, + "output": 1, + "and": 2, + "penultimate": 1, + "accepts": 1, + "input.": 1, + "This": 1, + "realized": 1, + "by": 2, + "expanding": 1, + "function": 2, + "application": 2, + "chained": 1, + "calls": 1, + "time.": 1, + "itself": 1, + "can": 3, + "chained.": 2, + "Reversed": 2, + "reverse": 4, + "sort": 2, + "c": 2, + "b": 4, + "meta_predicate": 2, + "throw": 1, + "permission_error": 1, + "call": 4, + "context": 1, + "X": 10, + "Y": 7, + "defer": 1, + "until": 1, + "run": 1, + "P": 2, + "Creates": 1, + "new": 2, + "composing": 1, + "G.": 1, + "The": 1, + "functions": 2, + "composed": 1, + "create": 1, + "compiled": 1, + "which": 1, + "behaves": 1, + "like": 1, + "function.": 1, + "composition": 1, + "Composed": 1, + "also": 1, + "applied": 1, + "/2.": 1, + "fix": 1, + "syntax": 1, + "highlighting": 1, + "functions_to_compose": 2, + "Term": 10, + "Funcs": 7, + "functor": 1, + "Op": 3, + "xfy_list": 2, + "thread_state": 4, + "Goals": 2, + "Tmp": 3, + "instantiation_error": 1, + "append": 2, + "NewArgs": 2, + "variant_sha1": 1, + "Sha": 2, + "current_predicate": 1, + "Functor/2": 2, + "RevFuncs": 2, + "Threaded": 2, + "Body": 2, + "Head": 2, + "compile_predicates": 1, + "Output": 2, + "compound": 1, + "setof": 1, + "arg": 1, + "Name": 2, + "Args0": 2, + "nth1": 2, "lib": 1, - "(": 49, "ic": 1, - ")": 49, - ".": 25, "vabs": 2, "Val": 8, "AbsVal": 10, "#": 9, - ";": 1, "labeling": 2, - "[": 21, - "]": 21, "vabsIC": 1, "or": 1, "faitListe": 3, - "_": 2, "First": 2, - "|": 12, - "Rest": 6, "Taille": 2, "Min": 2, "Max": 2, @@ -53397,7 +53700,6 @@ "Xi.": 1, "checkPeriode": 3, "ListVar": 2, - "length": 1, "Length": 2, "<": 1, "X1": 2, @@ -53418,9 +53720,6 @@ "christie": 3, "parents": 4, "brother": 1, - "X": 3, - "Y": 2, - "F": 2, "M": 2, "turing": 1, "Tape0": 2, @@ -53429,9 +53728,7 @@ "q0": 1, "Ls": 12, "Rs": 16, - "reverse": 1, "Ls1": 4, - "append": 1, "qf": 1, "Q0": 2, "Ls0": 6, @@ -53439,14 +53736,10 @@ "symbol": 3, "Sym": 6, "RsRest": 2, - "once": 1, "rule": 1, "Q1": 2, "NewSym": 2, - "Action": 2, - "action": 4, "Rs1": 2, - "b": 2, "left": 4, "stay": 1, "right": 1, @@ -68898,7 +69191,7 @@ "PostScript": 107, "PowerShell": 12, "Processing": 74, - "Prolog": 468, + "Prolog": 2420, "Propeller Spin": 13519, "Protocol Buffer": 63, "PureScript": 1652, @@ -69092,7 +69385,7 @@ "PostScript": 1, "PowerShell": 2, "Processing": 1, - "Prolog": 3, + "Prolog": 5, "Propeller Spin": 10, "Protocol Buffer": 1, "PureScript": 4, @@ -69155,5 +69448,5 @@ "Zephir": 5, "Zimpl": 1 }, - "md5": "896b4ca841571551a8fe421eec69b0f6" + "md5": "95cec2f85e2b8d7b956746aab7aa16aa" } \ No newline at end of file From bf3db20a9d01a7a64160bb94597c1328eadd28eb Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Fri, 20 Jun 2014 10:58:44 +0100 Subject: [PATCH 046/268] Samples --- lib/linguist/samples.json | 158 ++++++++++++++++++++++++++++++++++---- 1 file changed, 143 insertions(+), 15 deletions(-) diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index 4a1fb89a..c822a922 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -323,7 +323,8 @@ ".mask" ], "Mathematica": [ - ".m" + ".m", + ".nb" ], "Matlab": [ ".m" @@ -765,8 +766,8 @@ "exception.zep.php" ] }, - "tokens_total": 639782, - "languages_total": 830, + "tokens_total": 641228, + "languages_total": 833, "tokens": { "ABAP": { "*/**": 1, @@ -39405,22 +39406,142 @@ }, "Mathematica": { "Get": 1, - "[": 74, - "]": 73, + "[": 307, + "]": 286, + "Notebook": 2, + "{": 227, + "Cell": 28, + "CellGroupData": 8, + "BoxData": 19, + "RowBox": 34, + "}": 222, + "CellChangeTimes": 13, + "-": 134, + "*": 19, + "SuperscriptBox": 1, + "MultilineFunction": 1, + "None": 8, + "Open": 7, + "NumberMarks": 3, + "False": 19, + "GraphicsBox": 2, + "Hue": 5, + "LineBox": 5, + "CompressedData": 9, + "AspectRatio": 1, + "NCache": 1, + "GoldenRatio": 1, + "(": 2, + ")": 1, + "Axes": 1, + "True": 7, + "AxesLabel": 1, + "AxesOrigin": 1, + "Method": 2, + "PlotRange": 1, + "PlotRangeClipping": 1, + "PlotRangePadding": 1, + "Scaled": 10, + "WindowSize": 1, + "WindowMargins": 1, + "Automatic": 9, + "FrontEndVersion": 1, + "StyleDefinitions": 1, + "NamespaceBox": 1, + "DynamicModuleBox": 1, + "Typeset": 7, + "q": 1, + "opts": 1, + "AppearanceElements": 1, + "Asynchronous": 1, + "All": 1, + "TimeConstraint": 1, + "elements": 1, + "pod1": 1, + "XMLElement": 13, + "FormBox": 4, + "TagBox": 9, + "GridBox": 2, + "PaneBox": 1, + "StyleBox": 4, + "CellContext": 5, + "TagBoxWrapper": 4, + "AstronomicalData": 1, + "Identity": 2, + "LineIndent": 4, + "LineSpacing": 2, + "GridBoxBackground": 1, + "GrayLevel": 17, + "GridBoxItemSize": 2, + "ColumnsEqual": 2, + "RowsEqual": 2, + "GridBoxDividers": 1, + "GridBoxSpacings": 2, + "GridBoxAlignment": 1, + "Left": 1, + "Baseline": 1, + "AllowScriptLevelChange": 2, + "BaselinePosition": 2, + "Center": 1, + "AbsoluteThickness": 3, + "TraditionalForm": 3, + "PolynomialForm": 1, + "#": 2, + "TraditionalOrder": 1, + "&": 2, + "pod2": 1, + "LinebreakAdjustments": 2, + "FontFamily": 1, + "UnitFontFamily": 1, + "FontSize": 1, + "Smaller": 1, + "StripOnInput": 1, + "SyntaxForm": 2, + "Dot": 2, + "ZeroWidthTimes": 1, + "pod3": 1, + "TemplateBox": 1, + "GraphicsComplexBox": 1, + "EdgeForm": 2, + "Directive": 5, + "Opacity": 2, + "GraphicsGroupBox": 2, + "PolygonBox": 3, + "RGBColor": 3, + "Dashing": 1, + "Small": 1, + "GridLines": 1, + "Dynamic": 1, + "Join": 1, + "Replace": 1, + "MousePosition": 1, + "Graphics": 1, + "Pattern": 2, + "CalculateUtilities": 5, + "GraphicsUtilities": 5, + "Private": 5, + "x": 2, + "Blank": 2, + "y": 2, + "Epilog": 1, + "CapForm": 1, + "Offset": 8, + "DynamicBox": 1, + "ToBoxes": 1, + "DynamicModule": 1, + "pt": 1, + "NearestFunction": 1, "Paclet": 1, "Name": 1, - "-": 8, "Version": 1, "MathematicaVersion": 1, "Description": 1, "Creator": 1, "Extensions": 1, - "{": 2, "Language": 1, "MainPage": 1, - "}": 2, "BeginPackage": 1, - ";": 41, + ";": 42, "PossiblyTrueQ": 3, "usage": 22, "PossiblyFalseQ": 2, @@ -39454,13 +39575,11 @@ "L_": 5, "Fold": 3, "Or": 1, - "False": 4, "cond": 4, "/@": 3, "L": 4, "Flatten": 1, "And": 4, - "True": 2, "SHEBANG#!#!=": 1, "n_": 5, "Im": 1, @@ -39479,7 +39598,16 @@ "a": 3, "Symbol": 2, "NumericQ": 1, - "EndPackage": 1 + "EndPackage": 1, + "Do": 1, + "If": 1, + "Length": 1, + "Divisors": 1, + "Binomial": 2, + "i": 3, + "+": 2, + "Print": 1, + "Break": 1 }, "Matlab": { "function": 34, @@ -69153,7 +69281,7 @@ "Makefile": 50, "Markdown": 1, "Mask": 74, - "Mathematica": 411, + "Mathematica": 1857, "Matlab": 11942, "Max": 714, "MediaWiki": 766, @@ -69347,7 +69475,7 @@ "Makefile": 2, "Markdown": 1, "Mask": 1, - "Mathematica": 3, + "Mathematica": 6, "Matlab": 39, "Max": 3, "MediaWiki": 1, @@ -69448,5 +69576,5 @@ "Zephir": 5, "Zimpl": 1 }, - "md5": "95cec2f85e2b8d7b956746aab7aa16aa" + "md5": "61ffbb3e74924102a1a2a9688d2ba8f8" } \ No newline at end of file From ea7e8941398bb5914f76c634a4f078ea09ebce10 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Fri, 20 Jun 2014 12:13:04 +0100 Subject: [PATCH 047/268] Explicit lexer --- lib/linguist/languages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 65462354..c9044fd7 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1404,6 +1404,7 @@ Nimrod: Nix: type: programming + lexer: Nix extensions: - .nix From 858a66ccc849fc5caaab84d1dace36debda22668 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Fri, 20 Jun 2014 11:18:02 -0700 Subject: [PATCH 048/268] Add .pryrc support --- lib/linguist/languages.yml | 1 + samples/Ruby/.pryrc | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 samples/Ruby/.pryrc diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 15c3a588..fffb8c42 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1876,6 +1876,7 @@ Ruby: - .irbrc - .mspec - .podspec + - .pryrc - .rbuild - .rbw - .rbx diff --git a/samples/Ruby/.pryrc b/samples/Ruby/.pryrc new file mode 100644 index 00000000..3fb31ad4 --- /dev/null +++ b/samples/Ruby/.pryrc @@ -0,0 +1,19 @@ +Pry.config.commands.import Pry::ExtendedCommands::Experimental + +Pry.config.pager = false + +Pry.config.color = false + +Pry.config.commands.alias_command "lM", "ls -M" + +Pry.config.commands.command "add", "Add a list of numbers together" do |*args| + output.puts "Result is: #{args.map(&:to_i).inject(&:+)}" +end + +Pry.config.history.should_save = false + +Pry.config.prompt = [proc { "input> " }, + proc { " | " }] + +# Disable pry-buggy-plug: +Pry.plugins["buggy-plug"].disable! From 84f3b3720bd7ab02c1d200a7edf6beba08e6c111 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Fri, 20 Jun 2014 11:27:28 -0700 Subject: [PATCH 049/268] Move .pryrc to filenames --- lib/linguist/languages.yml | 2 +- samples/Ruby/{ => filenames}/.pryrc | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename samples/Ruby/{ => filenames}/.pryrc (100%) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index fffb8c42..1b0f2325 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1876,7 +1876,6 @@ Ruby: - .irbrc - .mspec - .podspec - - .pryrc - .rbuild - .rbw - .rbx @@ -1896,6 +1895,7 @@ Ruby: - Thorfile - Vagrantfile - buildfile + - .pryrc Rust: type: programming diff --git a/samples/Ruby/.pryrc b/samples/Ruby/filenames/.pryrc similarity index 100% rename from samples/Ruby/.pryrc rename to samples/Ruby/filenames/.pryrc From 13109bb9b8237d66155b1d197b684737ea4c96de Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Fri, 20 Jun 2014 11:28:35 -0700 Subject: [PATCH 050/268] Sort filenames --- lib/linguist/languages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 1b0f2325..c9407944 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1885,6 +1885,7 @@ Ruby: interpreters: - ruby filenames: + - .pryrc - Appraisals - Berksfile - Buildfile @@ -1895,7 +1896,6 @@ Ruby: - Thorfile - Vagrantfile - buildfile - - .pryrc Rust: type: programming From 4f1a5cd4563ba16535c1c12e7f3f4f58c7fa66c8 Mon Sep 17 00:00:00 2001 From: Paul Chaignon Date: Fri, 20 Jun 2014 23:30:01 +0200 Subject: [PATCH 051/268] Remove stylistic yet useless parentheses --- lib/linguist/language.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/linguist/language.rb b/lib/linguist/language.rb index e9144217..3fcf448b 100644 --- a/lib/linguist/language.rb +++ b/lib/linguist/language.rb @@ -103,7 +103,7 @@ module Linguist # A bit of an elegant hack. If the file is executable but extensionless, # append a "magic" extension so it can be classified with other # languages that have shebang scripts. - extension = FileBlob.new(name).extension() + extension = FileBlob.new(name).extension if extension.empty? && mode && (mode.to_i(8) & 05) == 05 name += ".script!" end @@ -185,7 +185,7 @@ module Linguist # Returns all matching Languages or [] if none were found. def self.find_by_filename(filename) basename = File.basename(filename) - extname = FileBlob.new(filename).extension() + extname = FileBlob.new(filename).extension langs = @filename_index[basename] + @extension_index[extname] langs.compact.uniq From 81fcb4452e569717919fa83446a13207651b2353 Mon Sep 17 00:00:00 2001 From: Paul Chaignon Date: Sat, 21 Jun 2014 10:16:33 +0200 Subject: [PATCH 052/268] Rename file for the test on non-existing extension --- test/test_language.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_language.rb b/test/test_language.rb index 7c9b6bc0..fa92f38c 100644 --- a/test/test_language.rb +++ b/test/test_language.rb @@ -249,7 +249,7 @@ class TestLanguage < Test::Unit::TestCase assert_equal Language['Nginx'], Language.find_by_filename('nginx.conf').first assert_equal ['C', 'C++', 'Objective-C'], Language.find_by_filename('foo.h').map(&:name).sort assert_equal [], Language.find_by_filename('rb') - assert_equal [], Language.find_by_filename('.nkt') + assert_equal [], Language.find_by_filename('.null') assert_equal [Language['Shell']], Language.find_by_filename('.bashrc') assert_equal [Language['Shell']], Language.find_by_filename('bash_profile') assert_equal [Language['Shell']], Language.find_by_filename('.zshrc') From 9c05bdac856dc36a868f7b877f50e1ff500ce451 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Sat, 21 Jun 2014 13:19:38 +0100 Subject: [PATCH 053/268] Samples --- lib/linguist/samples.json | 43 ++++++++++++++++++++++++++------------- 1 file changed, 29 insertions(+), 14 deletions(-) diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index ca418f61..befafbe2 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -735,6 +735,7 @@ "expr-dist" ], "Ruby": [ + ".pryrc", "Appraisals", "Capfile", "Rakefile" @@ -778,8 +779,8 @@ "exception.zep.php" ] }, - "tokens_total": 643370, - "languages_total": 840, + "tokens_total": 643401, + "languages_total": 841, "tokens": { "ABAP": { "*/**": 1, @@ -59170,21 +59171,37 @@ "variable": 1 }, "Ruby": { + "Pry.config.commands.import": 1, + "Pry": 1, + "ExtendedCommands": 1, + "Experimental": 1, + "Pry.config.pager": 1, + "false": 29, + "Pry.config.color": 1, + "Pry.config.commands.alias_command": 1, + "Pry.config.commands.command": 1, + "do": 38, + "|": 93, + "*args": 17, + "output.puts": 1, + "end": 239, + "Pry.config.history.should_save": 1, + "Pry.config.prompt": 1, + "[": 58, + "proc": 2, + "{": 70, + "}": 70, + "]": 58, + "Pry.plugins": 1, + ".disable": 1, "appraise": 2, - "do": 37, "gem": 3, - "end": 238, "load": 3, "Dir": 4, - "[": 56, - "]": 56, ".each": 4, - "{": 68, - "|": 91, "plugin": 3, "(": 244, ")": 256, - "}": 68, "task": 2, "default": 2, "puts": 12, @@ -59255,7 +59272,6 @@ "return": 25, "installed_prefix.children.length": 1, "rescue": 13, - "false": 26, "explicitly_requested": 1, "ARGV.named.empty": 1, "ARGV.formulae.include": 1, @@ -59461,7 +59477,6 @@ "protected": 1, "system": 1, "cmd": 6, - "*args": 16, "pretty_args": 1, "args.dup": 1, "pretty_args.delete": 1, @@ -69729,7 +69744,7 @@ "Red": 816, "RMarkdown": 19, "RobotFramework": 483, - "Ruby": 3862, + "Ruby": 3893, "Rust": 3566, "SAS": 93, "Sass": 56, @@ -69926,7 +69941,7 @@ "Red": 2, "RMarkdown": 1, "RobotFramework": 3, - "Ruby": 17, + "Ruby": 18, "Rust": 1, "SAS": 2, "Sass": 2, @@ -69976,5 +69991,5 @@ "Zephir": 5, "Zimpl": 1 }, - "md5": "72caade4a1a1dc14e10dd5478a6a5978" + "md5": "51b6967559ab6f115e0b62360bb0b296" } \ No newline at end of file From 861656978b808e82290667561491d0bf10056b72 Mon Sep 17 00:00:00 2001 From: Paul Chaignon Date: Sat, 21 Jun 2014 17:31:49 +0200 Subject: [PATCH 054/268] Lexer for IDL --- lib/linguist/languages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index c9407944..31298c87 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -941,7 +941,7 @@ Hy: IDL: type: programming - lexer: Text only + lexer: IDL color: "#e3592c" extensions: - .pro From f92fed60f882564d42f1b566c88e260df75f1475 Mon Sep 17 00:00:00 2001 From: Christian Theilemann Date: Sun, 22 Jun 2014 15:14:46 +0200 Subject: [PATCH 055/268] Add .xsjs and .xsjslib as JavaScript file extension .xsjs and .xsjslib is used to denote server-side JavaScript files in SAP HANA XS --- lib/linguist/languages.yml | 2 ++ samples/JavaScript/helloHanaEndpoint.xsjs | 24 +++++++++++++++++++++++ samples/JavaScript/helloHanaMath.xsjslib | 9 +++++++++ 3 files changed, 35 insertions(+) create mode 100644 samples/JavaScript/helloHanaEndpoint.xsjs create mode 100644 samples/JavaScript/helloHanaMath.xsjslib diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 5c32b14a..ae77f12c 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1095,6 +1095,8 @@ JavaScript: - .pac - .sjs - .ssjs + - .xsjs + - .xsjslib filenames: - Jakefile interpreters: diff --git a/samples/JavaScript/helloHanaEndpoint.xsjs b/samples/JavaScript/helloHanaEndpoint.xsjs new file mode 100644 index 00000000..25629850 --- /dev/null +++ b/samples/JavaScript/helloHanaEndpoint.xsjs @@ -0,0 +1,24 @@ +/* + invoke endpoint by calling in a browser: + http://:////helloHanaMath.xsjslib?x=4&y=2 + e.g.: + http://192.168.178.20:8000/geekflyer/linguist/helloHanaEndpoint.xsjs?x=4&y=2 + */ + +var hanaMath = $.import("./helloHanaMath.xsjslib"); + +var x = parseFloat($.request.parameters.get("x")); +var y = parseFloat($.request.parameters.get("y")); + + +var result = hanaMath.multiply(x, y); + +var output = { + title: "Hello HANA XS - do some simple math", + input: {x: x, y: y}, + result: result +}; + +$.response.contentType = "application/json"; +$.response.statusCode = $.net.http.OK; +$.response.setBody(JSON.stringify(output)); \ No newline at end of file diff --git a/samples/JavaScript/helloHanaMath.xsjslib b/samples/JavaScript/helloHanaMath.xsjslib new file mode 100644 index 00000000..311c2570 --- /dev/null +++ b/samples/JavaScript/helloHanaMath.xsjslib @@ -0,0 +1,9 @@ +/* simple hana xs demo library, which can be used by multiple endpoints */ + +function multiply(x, y) { + return x * y; +} + +function add(x, y) { + return x + y; +} \ No newline at end of file From 27a4eeb20660b500902ae6564e408f180c184950 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Sun, 22 Jun 2014 16:19:04 +0100 Subject: [PATCH 056/268] Samples update --- lib/linguist/samples.json | 59 ++++++++++++++++++++++++--------------- 1 file changed, 36 insertions(+), 23 deletions(-) diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index befafbe2..f83d0320 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -247,7 +247,9 @@ "JavaScript": [ ".frag", ".js", - ".script!" + ".script!", + ".xsjs", + ".xsjslib" ], "JSON": [ ".json", @@ -779,8 +781,8 @@ "exception.zep.php" ] }, - "tokens_total": 643401, - "languages_total": 841, + "tokens_total": 643487, + "languages_total": 843, "tokens": { "ABAP": { "*/**": 1, @@ -28497,15 +28499,15 @@ ".internalBuildGeneratedFileFrom": 1 }, "JavaScript": { - "function": 1212, - "(": 8518, - ")": 8526, - "{": 2738, - ";": 4056, + "function": 1214, + "(": 8528, + ")": 8536, + "{": 2742, + ";": 4066, "//": 410, "jshint": 1, "_": 9, - "var": 911, + "var": 916, "Modal": 2, "content": 5, "options": 56, @@ -28516,11 +28518,11 @@ ".proxy": 1, "this.hide": 1, "this": 578, - "}": 2714, + "}": 2718, "Modal.prototype": 1, "constructor": 8, "toggle": 10, - "return": 945, + "return": 947, "[": 1461, "this.isShown": 3, "]": 1458, @@ -28598,7 +28600,7 @@ "Animal.prototype.move": 2, "meters": 4, "alert": 11, - "+": 1135, + "+": 1136, "Snake.__super__.constructor.apply": 2, "arguments": 83, "Snake.prototype.move": 2, @@ -28615,6 +28617,25 @@ "Snake.name": 1, "Horse.name": 1, "console.log": 3, + "hanaMath": 1, + ".import": 1, + "x": 41, + "parseFloat": 32, + ".request.parameters.get": 2, + "y": 109, + "result": 12, + "hanaMath.multiply": 1, + "output": 2, + "title": 1, + "input": 26, + ".response.contentType": 1, + ".response.statusCode": 1, + ".net.http.OK": 1, + ".response.setBody": 1, + "JSON.stringify": 5, + "multiply": 1, + "*": 71, + "add": 16, "util": 1, "require": 9, "net": 1, @@ -28633,7 +28654,6 @@ "debug": 15, "process.env.NODE_DEBUG": 2, "/http/.test": 1, - "x": 33, "console.error": 3, "else": 307, "parserOnHeaders": 2, @@ -29138,7 +29158,6 @@ "incoming.shift": 2, "serverSocketCloseListener": 3, "socket.setTimeout": 1, - "*": 70, "minute": 1, "timeout": 2, "socket.once": 1, @@ -29616,7 +29635,6 @@ "style/": 1, "ab": 1, "button": 24, - "input": 25, "/i": 22, "bb": 2, "select": 20, @@ -29783,7 +29801,6 @@ "q": 34, "h.nodeType": 4, "p": 110, - "y": 101, "S": 8, "H": 8, "M": 9, @@ -30437,7 +30454,6 @@ "exposing": 2, "metadata": 2, "plain": 2, - "JSON.stringify": 4, ".toJSON": 4, "jQuery.noop": 2, "An": 1, @@ -30510,7 +30526,6 @@ "rmultiDash": 3, ".toLowerCase": 7, "jQuery.isNaN": 1, - "parseFloat": 30, "rbrace.test": 2, "jQuery.parseJSON": 2, "isn": 2, @@ -31052,7 +31067,6 @@ "f.inArray": 4, "s.": 1, "f.event": 2, - "add": 15, "d.handler": 1, "g.handler": 1, "d.guid": 4, @@ -31135,7 +31149,6 @@ "preventDefault": 4, "stopPropagation": 5, "isImmediatePropagationStopped": 2, - "result": 9, "props": 21, "split": 4, "fix": 1, @@ -69666,7 +69679,7 @@ "Isabelle": 136, "Jade": 3, "Java": 8987, - "JavaScript": 76970, + "JavaScript": 77056, "JSON": 183, "JSON5": 57, "JSONiq": 151, @@ -69863,7 +69876,7 @@ "Isabelle": 1, "Jade": 1, "Java": 6, - "JavaScript": 22, + "JavaScript": 24, "JSON": 4, "JSON5": 2, "JSONiq": 2, @@ -69991,5 +70004,5 @@ "Zephir": 5, "Zimpl": 1 }, - "md5": "51b6967559ab6f115e0b62360bb0b296" + "md5": "59afe9ab875947c5df3590aef023152d" } \ No newline at end of file From 4819fb12a384ae82fdfeb43b56bf7cc6eeae33fd Mon Sep 17 00:00:00 2001 From: neersighted Date: Sun, 22 Jun 2014 17:18:10 -0700 Subject: [PATCH 057/268] Also ignore extern(al) ...because some of us don't like 'vendor' --- lib/linguist/vendor.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/linguist/vendor.yml b/lib/linguist/vendor.yml index 4d8481e5..4b67fdda 100644 --- a/lib/linguist/vendor.yml +++ b/lib/linguist/vendor.yml @@ -43,6 +43,7 @@ # Vendored dependencies - thirdparty/ - vendors?/ +- extern(al)?/ # Debian packaging - ^debian/ From 2f4ea20fdd6f17d36e4a8baa808e5d9139003e13 Mon Sep 17 00:00:00 2001 From: Paul Chaignon Date: Mon, 23 Jun 2014 14:09:49 +0200 Subject: [PATCH 058/268] Update lexers from Pygments --- lib/linguist/languages.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index f733b114..de7f583f 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -353,9 +353,8 @@ ChucK: Cirru: type: programming color: "#aaaaff" - # ace_mode: cirru - # lexer: Cirru - lexer: Text only + ace_mode: cirru + lexer: Cirru extensions: - .cirru @@ -589,7 +588,7 @@ Eagle: Eiffel: type: programming - lexer: Text only + lexer: Eiffel color: "#946d57" extensions: - .e @@ -933,7 +932,7 @@ Haxe: Hy: type: programming - lexer: Clojure + lexer: Hy ace_mode: clojure color: "#7891b1" extensions: @@ -967,7 +966,7 @@ Idris: Inform 7: type: programming - lexer: Text only + lexer: Inform 7 wrap: true extensions: - .ni @@ -1297,7 +1296,7 @@ Mathematica: - .mathematica - .m - .nb - lexer: Text only + lexer: Mathematica Matlab: type: programming @@ -1768,7 +1767,7 @@ R: RDoc: type: prose - lexer: Text only + lexer: Rd ace_mode: rdoc wrap: true extensions: From 5b7316fb2a44ec2fed8ac95c428c10849941dc5b Mon Sep 17 00:00:00 2001 From: Joshua Peek Date: Mon, 23 Jun 2014 10:48:09 -0500 Subject: [PATCH 059/268] Remove DCPU-16 ASM language --- lib/linguist/languages.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index f733b114..4871c0f4 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -529,15 +529,6 @@ Dart: extensions: - .dart -DCPU-16 ASM: - type: programming - lexer: dasm16 - extensions: - - .dasm16 - - .dasm - aliases: - - dasm16 - Diff: extensions: - .diff From b83a364b0ebae0cd47dd721d39e3e6b01ce188a7 Mon Sep 17 00:00:00 2001 From: "Max K." Date: Mon, 23 Jun 2014 15:46:28 -0500 Subject: [PATCH 060/268] Added 3 character glsl extensions. --- lib/linguist/languages.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 4871c0f4..47a04fef 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -735,12 +735,14 @@ GLSL: - .glsl - .fp - .frag + - .frg - .fshader - .geom - .glslv - .gshader - .shader - .vert + - .vrx - .vshader Genshi: From b90d940aefb221a2d16fc55a69c734b78082e115 Mon Sep 17 00:00:00 2001 From: neersighted Date: Mon, 23 Jun 2014 14:50:31 -0700 Subject: [PATCH 061/268] Add tests for extern(al) being vendored --- test/test_blob.rb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/test_blob.rb b/test/test_blob.rb index 4f08db11..eb65d1d8 100644 --- a/test/test_blob.rb +++ b/test/test_blob.rb @@ -277,6 +277,10 @@ class TestBlob < Test::Unit::TestCase # 'thirdparty' directory assert blob("thirdparty/lib/main.c").vendored? + + # 'extern(al)' directory + assert blob("extern/util/__init__.py").vendored? + assert blob("external/jquery.min.js").vendored? # C deps assert blob("deps/http_parser/http_parser.c").vendored? From f4e254202b0e21789aa728ffe8173e0ca6b99b03 Mon Sep 17 00:00:00 2001 From: Paul Chaignon Date: Tue, 24 Jun 2014 10:50:03 +0200 Subject: [PATCH 062/268] Set a sort order for the samples.json file's content --- lib/linguist/samples.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/samples.rb b/lib/linguist/samples.rb index 2bd5212e..9a291b2d 100644 --- a/lib/linguist/samples.rb +++ b/lib/linguist/samples.rb @@ -28,7 +28,7 @@ module Linguist # # Returns nothing. def self.each(&block) - Dir.entries(ROOT).each do |category| + Dir.entries(ROOT).sort!.each do |category| next if category == '.' || category == '..' # Skip text and binary for now From d40b4a33deba710e2f494db357c654fbe5d4b419 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Tue, 24 Jun 2014 10:43:20 +0100 Subject: [PATCH 063/268] Sorted samples --- lib/linguist/samples.json | 13084 ++++++++++++++++++------------------ 1 file changed, 6542 insertions(+), 6542 deletions(-) diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index f83d0320..d63f4157 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -3,6 +3,12 @@ "ABAP": [ ".abap" ], + "ATS": [ + ".atxt", + ".dats", + ".hats", + ".sats" + ], "Agda": [ ".agda" ], @@ -30,12 +36,6 @@ ".asm", ".inc" ], - "ATS": [ - ".atxt", - ".dats", - ".hats", - ".sats" - ], "AutoHotkey": [ ".ahk" ], @@ -68,6 +68,15 @@ ".inl", ".ipp" ], + "COBOL": [ + ".cbl", + ".ccp", + ".cob", + ".cpy" + ], + "CSS": [ + ".css" + ], "Ceylon": [ ".ceylon" ], @@ -83,12 +92,6 @@ ".cljx", ".hic" ], - "COBOL": [ - ".cbl", - ".ccp", - ".cob", - ".cpy" - ], "CoffeeScript": [ ".coffee" ], @@ -109,37 +112,31 @@ "Crystal": [ ".cr" ], - "CSS": [ - ".css" - ], "Cuda": [ ".cu", ".cuh" ], + "DM": [ + ".dm" + ], "Dart": [ ".dart" ], "Diff": [ ".patch" ], - "DM": [ - ".dm" - ], "Dogescript": [ ".djs" ], "E": [ ".E" ], - "Eagle": [ - ".brd", - ".sch" - ], "ECL": [ ".ecl" ], - "edn": [ - ".edn" + "Eagle": [ + ".brd", + ".sch" ], "Elm": [ ".elm" @@ -152,9 +149,6 @@ ".escript", ".script!" ], - "fish": [ - ".fish" - ], "Forth": [ ".forth", ".fth" @@ -162,9 +156,6 @@ "Frege": [ ".fr" ], - "Game Maker Language": [ - ".gml" - ], "GAMS": [ ".gms" ], @@ -181,6 +172,9 @@ ".frag", ".glsl" ], + "Game Maker Language": [ + ".gml" + ], "Gnuplot": [ ".gnu", ".gp" @@ -204,6 +198,10 @@ "Groovy Server Pages": [ ".gsp" ], + "HTML": [ + ".html", + ".st" + ], "Haml": [ ".haml" ], @@ -214,10 +212,6 @@ "Haskell": [ ".hs" ], - "HTML": [ - ".html", - ".st" - ], "Hy": [ ".hy" ], @@ -238,6 +232,19 @@ "Isabelle": [ ".thy" ], + "JSON": [ + ".json", + ".lock" + ], + "JSON5": [ + ".json5" + ], + "JSONLD": [ + ".jsonld" + ], + "JSONiq": [ + ".jq" + ], "Jade": [ ".jade" ], @@ -251,30 +258,20 @@ ".xsjs", ".xsjslib" ], - "JSON": [ - ".json", - ".lock" - ], - "JSON5": [ - ".json5" - ], - "JSONiq": [ - ".jq" - ], - "JSONLD": [ - ".jsonld" - ], "Julia": [ ".jl" ], + "KRL": [ + ".krl" + ], "Kit": [ ".kit" ], "Kotlin": [ ".kt" ], - "KRL": [ - ".krl" + "LFE": [ + ".lfe" ], "Lasso": [ ".las", @@ -288,9 +285,6 @@ "Less": [ ".less" ], - "LFE": [ - ".lfe" - ], "Liquid": [ ".liquid" ], @@ -315,6 +309,9 @@ "M": [ ".m" ], + "MTML": [ + ".mtml" + ], "Makefile": [ ".script!" ], @@ -352,8 +349,9 @@ "MoonScript": [ ".moon" ], - "MTML": [ - ".mtml" + "NSIS": [ + ".nsh", + ".nsi" ], "Nemerle": [ ".n" @@ -367,14 +365,14 @@ "Nix": [ ".nix" ], - "NSIS": [ - ".nsh", - ".nsi" - ], "Nu": [ ".nu", ".script!" ], + "OCaml": [ + ".eliom", + ".ml" + ], "Objective-C": [ ".h", ".m" @@ -382,10 +380,6 @@ "Objective-C++": [ ".mm" ], - "OCaml": [ - ".eliom", - ".ml" - ], "Omgrofl": [ ".omgrofl" ], @@ -410,6 +404,14 @@ "Oxygene": [ ".oxygene" ], + "PAWN": [ + ".pwn" + ], + "PHP": [ + ".module", + ".php", + ".script!" + ], "Pan": [ ".pan" ], @@ -422,9 +424,6 @@ "Pascal": [ ".dpr" ], - "PAWN": [ - ".pwn" - ], "Perl": [ ".fcgi", ".pl", @@ -437,11 +436,6 @@ ".p6", ".pm6" ], - "PHP": [ - ".module", - ".php", - ".script!" - ], "Pike": [ ".pike", ".pmod" @@ -494,15 +488,18 @@ ".rsx", ".script!" ], + "RDoc": [ + ".rdoc" + ], + "RMarkdown": [ + ".rmd" + ], "Racket": [ ".scrbl" ], "Ragel in Ruby Host": [ ".rl" ], - "RDoc": [ - ".rdoc" - ], "Rebol": [ ".r", ".r2", @@ -514,9 +511,6 @@ ".red", ".reds" ], - "RMarkdown": [ - ".rmd" - ], "RobotFramework": [ ".robot" ], @@ -533,6 +527,19 @@ "SAS": [ ".sas" ], + "SCSS": [ + ".scss" + ], + "SQL": [ + ".prc", + ".sql", + ".tab", + ".udf", + ".viw" + ], + "STON": [ + ".ston" + ], "Sass": [ ".sass", ".scss" @@ -554,9 +561,6 @@ ".sci", ".tst" ], - "SCSS": [ - ".scss" - ], "Shell": [ ".bash", ".script!", @@ -581,13 +585,6 @@ "SourcePawn": [ ".sp" ], - "SQL": [ - ".prc", - ".sql", - ".tab", - ".udf", - ".viw" - ], "Squirrel": [ ".nut" ], @@ -606,9 +603,6 @@ ".matah", ".sthlp" ], - "STON": [ - ".ston" - ], "Stylus": [ ".styl" ], @@ -623,21 +617,21 @@ ".svh", ".vh" ], + "TXL": [ + ".txl" + ], "Tcl": [ ".tm" ], - "Tea": [ - ".tea" - ], "TeX": [ ".cls" ], + "Tea": [ + ".tea" + ], "Turing": [ ".t" ], - "TXL": [ - ".txl" - ], "TypeScript": [ ".ts" ], @@ -647,12 +641,12 @@ "VCL": [ ".vcl" ], - "Verilog": [ - ".v" - ], "VHDL": [ ".vhd" ], + "Verilog": [ + ".v" + ], "Visual Basic": [ ".cls", ".vb", @@ -661,9 +655,6 @@ "Volt": [ ".volt" ], - "wisp": [ - ".wisp" - ], "XC": [ ".xc" ], @@ -681,14 +672,6 @@ ".vcxproj", ".xml" ], - "Xojo": [ - ".xojo_code", - ".xojo_menu", - ".xojo_report", - ".xojo_script", - ".xojo_toolbar", - ".xojo_window" - ], "XProc": [ ".xpl" ], @@ -698,6 +681,14 @@ "XSLT": [ ".xslt" ], + "Xojo": [ + ".xojo_code", + ".xojo_menu", + ".xojo_report", + ".xojo_script", + ".xojo_toolbar", + ".xojo_window" + ], "Xtend": [ ".xtend" ], @@ -709,6 +700,15 @@ ], "Zimpl": [ ".zmpl" + ], + "edn": [ + ".edn" + ], + "fish": [ + ".fish" + ], + "wisp": [ + ".wisp" ] }, "interpreters": { @@ -1043,6 +1043,561 @@ "pos": 2, "endclass.": 1 }, + "ATS": { + "//": 211, + "#include": 16, + "staload": 25, + "_": 25, + "sortdef": 2, + "ftype": 13, + "type": 30, + "-": 49, + "infixr": 2, + "(": 562, + ")": 567, + "typedef": 10, + "a": 200, + "b": 26, + "": 2, + "functor": 12, + "F": 34, + "{": 142, + "}": 141, + "list0": 9, + "extern": 13, + "val": 95, + "functor_list0": 7, + "implement": 55, + "f": 22, + "lam": 20, + "xs": 82, + "list0_map": 2, + "": 14, + "": 3, + "datatype": 4, + "CoYoneda": 7, + "r": 25, + "of": 59, + "fun": 56, + "CoYoneda_phi": 2, + "CoYoneda_psi": 3, + "ftor": 9, + "fx": 8, + "x": 48, + "int0": 4, + "I": 8, + "int": 2, + "bool": 27, + "True": 7, + "|": 22, + "False": 8, + "boxed": 2, + "boolean": 2, + "bool2string": 4, + "string": 2, + "case": 9, + "+": 20, + "fprint_val": 2, + "": 2, + "out": 8, + "fprint": 3, + "int2bool": 2, + "i": 6, + "let": 34, + "in": 48, + "if": 7, + "then": 11, + "else": 7, + "end": 73, + "myintlist0": 2, + "g0ofg1": 1, + "list": 1, + "myboolist0": 9, + "fprintln": 3, + "stdout_ref": 4, + "main0": 3, + "UN": 3, + "phil_left": 3, + "n": 51, + "phil_right": 3, + "nmod": 1, + "NPHIL": 6, + "randsleep": 6, + "intGte": 1, + "void": 14, + "ignoret": 2, + "sleep": 2, + "UN.cast": 2, + "uInt": 1, + "rand": 1, + "mod": 1, + "phil_think": 3, + "println": 9, + "phil_dine": 3, + "lf": 5, + "rf": 5, + "phil_loop": 10, + "nl": 2, + "nr": 2, + "ch_lfork": 2, + "fork_changet": 5, + "ch_rfork": 2, + "channel_takeout": 4, + "HX": 1, + "try": 1, + "to": 16, + "actively": 1, + "induce": 1, + "deadlock": 2, + "ch_forktray": 3, + "forktray_changet": 4, + "channel_insert": 5, + "[": 49, + "]": 48, + "cleaner_wash": 3, + "fork_get_num": 4, + "cleaner_return": 4, + "ch": 7, + "cleaner_loop": 6, + "f0": 3, + "dynload": 3, + "local": 10, + "mythread_create_cloptr": 6, + "llam": 6, + "while": 1, + "true": 5, + "%": 7, + "#": 7, + "#define": 4, + "nphil": 13, + "natLt": 2, + "absvtype": 2, + "fork_vtype": 3, + "ptr": 2, + "vtypedef": 2, + "fork": 16, + "channel": 11, + "datavtype": 1, + "FORK": 3, + "assume": 2, + "the_forkarray": 2, + "t": 1, + "array_tabulate": 1, + "fopr": 1, + "": 2, + "where": 6, + "channel_create_exn": 2, + "": 2, + "i2sz": 4, + "arrayref_tabulate": 1, + "the_forktray": 2, + "set_vtype": 3, + "t@ype": 2, + "set": 34, + "t0p": 31, + "compare_elt_elt": 4, + "x1": 1, + "x2": 1, + "<": 14, + "linset_nil": 2, + "linset_make_nil": 2, + "linset_sing": 2, + "": 16, + "linset_make_sing": 2, + "linset_make_list": 1, + "List": 1, + "INV": 24, + "linset_is_nil": 2, + "linset_isnot_nil": 2, + "linset_size": 2, + "size_t": 1, + "linset_is_member": 3, + "x0": 22, + "linset_isnot_member": 1, + "linset_copy": 2, + "linset_free": 2, + "linset_insert": 3, + "&": 17, + "linset_takeout": 1, + "res": 9, + "opt": 6, + "endfun": 1, + "linset_takeout_opt": 1, + "Option_vt": 4, + "linset_remove": 2, + "linset_choose": 3, + "linset_choose_opt": 1, + "linset_takeoutmax": 1, + "linset_takeoutmax_opt": 1, + "linset_takeoutmin": 1, + "linset_takeoutmin_opt": 1, + "fprint_linset": 3, + "sep": 1, + "FILEref": 2, + "overload": 1, + "with": 1, + "env": 11, + "vt0p": 2, + "linset_foreach": 3, + "fwork": 3, + "linset_foreach_env": 3, + "linset_listize": 2, + "List0_vt": 5, + "linset_listize1": 2, + "code": 6, + "reuse": 2, + "elt": 2, + "list_vt_nil": 16, + "list_vt_cons": 17, + "list_vt_is_nil": 1, + "list_vt_is_cons": 1, + "list_vt_length": 1, + "aux": 4, + "nat": 4, + ".": 14, + "": 3, + "list_vt": 7, + "sgn": 9, + "false": 6, + "list_vt_copy": 2, + "list_vt_free": 1, + "mynode_cons": 4, + "nx": 22, + "mynode1": 6, + "xs1": 15, + "UN.castvwtp0": 8, + "List1_vt": 5, + "@list_vt_cons": 5, + "xs2": 3, + "prval": 20, + "UN.cast2void": 5, + ";": 4, + "fold@": 8, + "ins": 3, + "tail": 1, + "recursive": 1, + "n1": 4, + "<=>": 1, + "1": 3, + "mynode_make_elt": 4, + "ans": 2, + "is": 26, + "found": 1, + "effmask_all": 3, + "free@": 1, + "xs1_": 3, + "rem": 1, + "*": 2, + "opt_some": 1, + "opt_none": 1, + "list_vt_foreach": 1, + "": 3, + "list_vt_foreach_env": 1, + "mynode_null": 5, + "mynode": 3, + "null": 1, + "the_null_ptr": 1, + "mynode_free": 1, + "nx2": 4, + "mynode_get_elt": 1, + "nx1": 7, + "UN.castvwtp1": 2, + "mynode_set_elt": 1, + "l": 3, + "__assert": 2, + "praxi": 1, + "mynode_getfree_elt": 1, + "linset_takeout_ngc": 2, + "takeout": 3, + "mynode0": 1, + "pf_x": 6, + "view@x": 3, + "pf_xs1": 6, + "view@xs1": 3, + "linset_takeoutmax_ngc": 2, + "xs_": 4, + "@list_vt_nil": 1, + "linset_takeoutmin_ngc": 2, + "unsnoc": 4, + "pos": 1, + "and": 10, + "fold@xs": 1, + "ATS_PACKNAME": 1, + "ATS_STALOADFLAG": 1, + "no": 2, + "static": 1, + "loading": 1, + "at": 2, + "run": 1, + "time": 1, + "castfn": 1, + "linset2list": 1, + "": 1, + "html": 1, + "PUBLIC": 1, + "W3C": 1, + "DTD": 2, + "XHTML": 1, + "EN": 1, + "http": 2, + "www": 1, + "w3": 1, + "org": 1, + "TR": 1, + "xhtml11": 2, + "dtd": 1, + "": 1, + "xmlns=": 1, + "": 1, + "": 1, + "equiv=": 1, + "content=": 1, + "": 1, + "EFFECTIVATS": 1, + "DiningPhil2": 1, + "": 1, + "#patscode_style": 1, + "": 1, + "": 1, + "

": 1, + "Effective": 1, + "ATS": 2, + "Dining": 2, + "Philosophers": 2, + "

": 1, + "In": 2, + "this": 2, + "article": 2, + "present": 1, + "an": 6, + "implementation": 3, + "slight": 1, + "variant": 1, + "the": 30, + "famous": 1, + "problem": 1, + "by": 4, + "Dijkstra": 1, + "that": 8, + "makes": 1, + "simple": 1, + "but": 1, + "convincing": 1, + "use": 1, + "linear": 2, + "types.": 1, + "

": 8, + "The": 8, + "Original": 2, + "Problem": 2, + "

": 8, + "There": 3, + "are": 7, + "five": 1, + "philosophers": 1, + "sitting": 1, + "around": 1, + "table": 3, + "there": 3, + "also": 3, + "forks": 7, + "placed": 1, + "on": 8, + "such": 1, + "each": 2, + "located": 2, + "between": 1, + "left": 3, + "hand": 6, + "philosopher": 5, + "right": 3, + "another": 1, + "philosopher.": 1, + "Each": 4, + "does": 1, + "following": 6, + "routine": 1, + "repeatedly": 1, + "thinking": 1, + "dining.": 1, + "order": 1, + "dine": 1, + "needs": 2, + "first": 2, + "acquire": 1, + "two": 3, + "one": 3, + "his": 4, + "side": 2, + "other": 2, + "side.": 2, + "After": 2, + "finishing": 1, + "dining": 1, + "puts": 2, + "acquired": 1, + "onto": 1, + "A": 6, + "Variant": 1, + "twist": 1, + "added": 1, + "original": 1, + "version": 1, + "

": 1, + "used": 1, + "it": 2, + "becomes": 1, + "be": 9, + "put": 1, + "tray": 2, + "for": 15, + "dirty": 2, + "forks.": 1, + "cleaner": 2, + "who": 1, + "cleans": 1, + "them": 2, + "back": 1, + "table.": 1, + "Channels": 1, + "Communication": 1, + "just": 1, + "shared": 1, + "queue": 1, + "fixed": 1, + "capacity.": 1, + "functions": 1, + "inserting": 1, + "element": 5, + "into": 3, + "taking": 1, + "given": 4, + "

": 7,
+      "class=": 6,
+      "#pats2xhtml_sats": 3,
+      "
": 7, + "If": 2, + "called": 2, + "full": 4, + "caller": 2, + "blocked": 3, + "until": 2, + "taken": 1, + "channel.": 2, + "empty": 1, + "inserted": 1, + "Channel": 2, + "Fork": 3, + "Forks": 1, + "resources": 1, + "type.": 1, + "initially": 1, + "stored": 2, + "which": 2, + "can": 4, + "obtained": 2, + "calling": 2, + "function": 3, + "defined": 1, + "natural": 1, + "numbers": 1, + "less": 1, + "than": 1, + "channels": 4, + "storing": 3, + "chosen": 3, + "capacity": 3, + "reason": 1, + "store": 1, + "most": 1, + "guarantee": 1, + "these": 1, + "never": 2, + "so": 2, + "attempt": 1, + "made": 1, + "send": 1, + "signals": 1, + "awake": 1, + "callers": 1, + "supposedly": 1, + "being": 2, + "due": 1, + "Tray": 1, + "instead": 1, + "become": 1, + "as": 4, + "only": 1, + "total": 1, + "Philosopher": 1, + "Loop": 2, + "implemented": 2, + "loop": 2, + "#pats2xhtml_dats": 3, + "It": 2, + "should": 3, + "straighforward": 2, + "follow": 2, + "Cleaner": 1, + "finds": 1, + "number": 2, + "uses": 1, + "locate": 1, + "fork.": 1, + "Its": 1, + "actual": 1, + "follows": 1, + "now": 1, + "Testing": 1, + "entire": 1, + "files": 1, + "DiningPhil2.sats": 1, + "DiningPhil2.dats": 1, + "DiningPhil2_fork.dats": 1, + "DiningPhil2_thread.dats": 1, + "Makefile": 1, + "available": 1, + "compiling": 1, + "source": 1, + "excutable": 1, + "testing.": 1, + "One": 1, + "able": 1, + "encounter": 1, + "after": 1, + "running": 1, + "simulation": 1, + "while.": 1, + "
": 1, + "size=": 1, + "This": 1, + "written": 1, + "href=": 1, + "Hongwei": 1, + "Xi": 1, + "
": 1, + "": 1, + "": 1, + "main": 1, + "fprint_filsub": 1, + "option0": 3, + "functor_option0": 2, + "option0_map": 1, + "functor_homres": 2, + "c": 3, + "Yoneda_phi": 3, + "Yoneda_psi": 3, + "m": 4, + "mf": 4, + "natrans": 3, + "G": 2, + "Yoneda_phi_nat": 2, + "Yoneda_psi_nat": 2, + "list_t": 1, + "g0ofg1_list": 1, + "Yoneda_bool_list0": 3, + "myboolist1": 2 + }, "Agda": { "module": 3, "NatCat": 1, @@ -3914,561 +4469,6 @@ "cvtpi2pd_instruction": 1, "cvtpi2ps_instruction": 1 }, - "ATS": { - "//": 211, - "#include": 16, - "staload": 25, - "_": 25, - "sortdef": 2, - "ftype": 13, - "type": 30, - "-": 49, - "infixr": 2, - "(": 562, - ")": 567, - "typedef": 10, - "a": 200, - "b": 26, - "": 2, - "functor": 12, - "F": 34, - "{": 142, - "}": 141, - "list0": 9, - "extern": 13, - "val": 95, - "functor_list0": 7, - "implement": 55, - "f": 22, - "lam": 20, - "xs": 82, - "list0_map": 2, - "": 14, - "": 3, - "datatype": 4, - "CoYoneda": 7, - "r": 25, - "of": 59, - "fun": 56, - "CoYoneda_phi": 2, - "CoYoneda_psi": 3, - "ftor": 9, - "fx": 8, - "x": 48, - "int0": 4, - "I": 8, - "int": 2, - "bool": 27, - "True": 7, - "|": 22, - "False": 8, - "boxed": 2, - "boolean": 2, - "bool2string": 4, - "string": 2, - "case": 9, - "+": 20, - "fprint_val": 2, - "": 2, - "out": 8, - "fprint": 3, - "int2bool": 2, - "i": 6, - "let": 34, - "in": 48, - "if": 7, - "then": 11, - "else": 7, - "end": 73, - "myintlist0": 2, - "g0ofg1": 1, - "list": 1, - "myboolist0": 9, - "fprintln": 3, - "stdout_ref": 4, - "main0": 3, - "UN": 3, - "phil_left": 3, - "n": 51, - "phil_right": 3, - "nmod": 1, - "NPHIL": 6, - "randsleep": 6, - "intGte": 1, - "void": 14, - "ignoret": 2, - "sleep": 2, - "UN.cast": 2, - "uInt": 1, - "rand": 1, - "mod": 1, - "phil_think": 3, - "println": 9, - "phil_dine": 3, - "lf": 5, - "rf": 5, - "phil_loop": 10, - "nl": 2, - "nr": 2, - "ch_lfork": 2, - "fork_changet": 5, - "ch_rfork": 2, - "channel_takeout": 4, - "HX": 1, - "try": 1, - "to": 16, - "actively": 1, - "induce": 1, - "deadlock": 2, - "ch_forktray": 3, - "forktray_changet": 4, - "channel_insert": 5, - "[": 49, - "]": 48, - "cleaner_wash": 3, - "fork_get_num": 4, - "cleaner_return": 4, - "ch": 7, - "cleaner_loop": 6, - "f0": 3, - "dynload": 3, - "local": 10, - "mythread_create_cloptr": 6, - "llam": 6, - "while": 1, - "true": 5, - "%": 7, - "#": 7, - "#define": 4, - "nphil": 13, - "natLt": 2, - "absvtype": 2, - "fork_vtype": 3, - "ptr": 2, - "vtypedef": 2, - "fork": 16, - "channel": 11, - "datavtype": 1, - "FORK": 3, - "assume": 2, - "the_forkarray": 2, - "t": 1, - "array_tabulate": 1, - "fopr": 1, - "": 2, - "where": 6, - "channel_create_exn": 2, - "": 2, - "i2sz": 4, - "arrayref_tabulate": 1, - "the_forktray": 2, - "set_vtype": 3, - "t@ype": 2, - "set": 34, - "t0p": 31, - "compare_elt_elt": 4, - "x1": 1, - "x2": 1, - "<": 14, - "linset_nil": 2, - "linset_make_nil": 2, - "linset_sing": 2, - "": 16, - "linset_make_sing": 2, - "linset_make_list": 1, - "List": 1, - "INV": 24, - "linset_is_nil": 2, - "linset_isnot_nil": 2, - "linset_size": 2, - "size_t": 1, - "linset_is_member": 3, - "x0": 22, - "linset_isnot_member": 1, - "linset_copy": 2, - "linset_free": 2, - "linset_insert": 3, - "&": 17, - "linset_takeout": 1, - "res": 9, - "opt": 6, - "endfun": 1, - "linset_takeout_opt": 1, - "Option_vt": 4, - "linset_remove": 2, - "linset_choose": 3, - "linset_choose_opt": 1, - "linset_takeoutmax": 1, - "linset_takeoutmax_opt": 1, - "linset_takeoutmin": 1, - "linset_takeoutmin_opt": 1, - "fprint_linset": 3, - "sep": 1, - "FILEref": 2, - "overload": 1, - "with": 1, - "env": 11, - "vt0p": 2, - "linset_foreach": 3, - "fwork": 3, - "linset_foreach_env": 3, - "linset_listize": 2, - "List0_vt": 5, - "linset_listize1": 2, - "code": 6, - "reuse": 2, - "elt": 2, - "list_vt_nil": 16, - "list_vt_cons": 17, - "list_vt_is_nil": 1, - "list_vt_is_cons": 1, - "list_vt_length": 1, - "aux": 4, - "nat": 4, - ".": 14, - "": 3, - "list_vt": 7, - "sgn": 9, - "false": 6, - "list_vt_copy": 2, - "list_vt_free": 1, - "mynode_cons": 4, - "nx": 22, - "mynode1": 6, - "xs1": 15, - "UN.castvwtp0": 8, - "List1_vt": 5, - "@list_vt_cons": 5, - "xs2": 3, - "prval": 20, - "UN.cast2void": 5, - ";": 4, - "fold@": 8, - "ins": 3, - "tail": 1, - "recursive": 1, - "n1": 4, - "<=>": 1, - "1": 3, - "mynode_make_elt": 4, - "ans": 2, - "is": 26, - "found": 1, - "effmask_all": 3, - "free@": 1, - "xs1_": 3, - "rem": 1, - "*": 2, - "opt_some": 1, - "opt_none": 1, - "list_vt_foreach": 1, - "": 3, - "list_vt_foreach_env": 1, - "mynode_null": 5, - "mynode": 3, - "null": 1, - "the_null_ptr": 1, - "mynode_free": 1, - "nx2": 4, - "mynode_get_elt": 1, - "nx1": 7, - "UN.castvwtp1": 2, - "mynode_set_elt": 1, - "l": 3, - "__assert": 2, - "praxi": 1, - "mynode_getfree_elt": 1, - "linset_takeout_ngc": 2, - "takeout": 3, - "mynode0": 1, - "pf_x": 6, - "view@x": 3, - "pf_xs1": 6, - "view@xs1": 3, - "linset_takeoutmax_ngc": 2, - "xs_": 4, - "@list_vt_nil": 1, - "linset_takeoutmin_ngc": 2, - "unsnoc": 4, - "pos": 1, - "and": 10, - "fold@xs": 1, - "ATS_PACKNAME": 1, - "ATS_STALOADFLAG": 1, - "no": 2, - "static": 1, - "loading": 1, - "at": 2, - "run": 1, - "time": 1, - "castfn": 1, - "linset2list": 1, - "": 1, - "html": 1, - "PUBLIC": 1, - "W3C": 1, - "DTD": 2, - "XHTML": 1, - "EN": 1, - "http": 2, - "www": 1, - "w3": 1, - "org": 1, - "TR": 1, - "xhtml11": 2, - "dtd": 1, - "": 1, - "xmlns=": 1, - "": 1, - "": 1, - "equiv=": 1, - "content=": 1, - "": 1, - "EFFECTIVATS": 1, - "DiningPhil2": 1, - "": 1, - "#patscode_style": 1, - "": 1, - "": 1, - "

": 1, - "Effective": 1, - "ATS": 2, - "Dining": 2, - "Philosophers": 2, - "

": 1, - "In": 2, - "this": 2, - "article": 2, - "present": 1, - "an": 6, - "implementation": 3, - "slight": 1, - "variant": 1, - "the": 30, - "famous": 1, - "problem": 1, - "by": 4, - "Dijkstra": 1, - "that": 8, - "makes": 1, - "simple": 1, - "but": 1, - "convincing": 1, - "use": 1, - "linear": 2, - "types.": 1, - "

": 8, - "The": 8, - "Original": 2, - "Problem": 2, - "

": 8, - "There": 3, - "are": 7, - "five": 1, - "philosophers": 1, - "sitting": 1, - "around": 1, - "table": 3, - "there": 3, - "also": 3, - "forks": 7, - "placed": 1, - "on": 8, - "such": 1, - "each": 2, - "located": 2, - "between": 1, - "left": 3, - "hand": 6, - "philosopher": 5, - "right": 3, - "another": 1, - "philosopher.": 1, - "Each": 4, - "does": 1, - "following": 6, - "routine": 1, - "repeatedly": 1, - "thinking": 1, - "dining.": 1, - "order": 1, - "dine": 1, - "needs": 2, - "first": 2, - "acquire": 1, - "two": 3, - "one": 3, - "his": 4, - "side": 2, - "other": 2, - "side.": 2, - "After": 2, - "finishing": 1, - "dining": 1, - "puts": 2, - "acquired": 1, - "onto": 1, - "A": 6, - "Variant": 1, - "twist": 1, - "added": 1, - "original": 1, - "version": 1, - "

": 1, - "used": 1, - "it": 2, - "becomes": 1, - "be": 9, - "put": 1, - "tray": 2, - "for": 15, - "dirty": 2, - "forks.": 1, - "cleaner": 2, - "who": 1, - "cleans": 1, - "them": 2, - "back": 1, - "table.": 1, - "Channels": 1, - "Communication": 1, - "just": 1, - "shared": 1, - "queue": 1, - "fixed": 1, - "capacity.": 1, - "functions": 1, - "inserting": 1, - "element": 5, - "into": 3, - "taking": 1, - "given": 4, - "

": 7,
-      "class=": 6,
-      "#pats2xhtml_sats": 3,
-      "
": 7, - "If": 2, - "called": 2, - "full": 4, - "caller": 2, - "blocked": 3, - "until": 2, - "taken": 1, - "channel.": 2, - "empty": 1, - "inserted": 1, - "Channel": 2, - "Fork": 3, - "Forks": 1, - "resources": 1, - "type.": 1, - "initially": 1, - "stored": 2, - "which": 2, - "can": 4, - "obtained": 2, - "calling": 2, - "function": 3, - "defined": 1, - "natural": 1, - "numbers": 1, - "less": 1, - "than": 1, - "channels": 4, - "storing": 3, - "chosen": 3, - "capacity": 3, - "reason": 1, - "store": 1, - "most": 1, - "guarantee": 1, - "these": 1, - "never": 2, - "so": 2, - "attempt": 1, - "made": 1, - "send": 1, - "signals": 1, - "awake": 1, - "callers": 1, - "supposedly": 1, - "being": 2, - "due": 1, - "Tray": 1, - "instead": 1, - "become": 1, - "as": 4, - "only": 1, - "total": 1, - "Philosopher": 1, - "Loop": 2, - "implemented": 2, - "loop": 2, - "#pats2xhtml_dats": 3, - "It": 2, - "should": 3, - "straighforward": 2, - "follow": 2, - "Cleaner": 1, - "finds": 1, - "number": 2, - "uses": 1, - "locate": 1, - "fork.": 1, - "Its": 1, - "actual": 1, - "follows": 1, - "now": 1, - "Testing": 1, - "entire": 1, - "files": 1, - "DiningPhil2.sats": 1, - "DiningPhil2.dats": 1, - "DiningPhil2_fork.dats": 1, - "DiningPhil2_thread.dats": 1, - "Makefile": 1, - "available": 1, - "compiling": 1, - "source": 1, - "excutable": 1, - "testing.": 1, - "One": 1, - "able": 1, - "encounter": 1, - "after": 1, - "running": 1, - "simulation": 1, - "while.": 1, - "
": 1, - "size=": 1, - "This": 1, - "written": 1, - "href=": 1, - "Hongwei": 1, - "Xi": 1, - "
": 1, - "": 1, - "": 1, - "main": 1, - "fprint_filsub": 1, - "option0": 3, - "functor_option0": 2, - "option0_map": 1, - "functor_homres": 2, - "c": 3, - "Yoneda_phi": 3, - "Yoneda_psi": 3, - "m": 4, - "mf": 4, - "natrans": 3, - "G": 2, - "Yoneda_phi_nat": 2, - "Yoneda_psi_nat": 2, - "list_t": 1, - "g0ofg1_list": 1, - "Yoneda_bool_list0": 3, - "myboolist1": 2 - }, "AutoHotkey": { "MsgBox": 1, "Hello": 1, @@ -15434,6 +15434,785 @@ "__pyx_L10": 2, "Py_EQ": 6 }, + "COBOL": { + "program": 1, + "-": 19, + "id.": 1, + "hello.": 3, + "procedure": 1, + "division.": 1, + "display": 1, + ".": 3, + "stop": 1, + "run.": 1, + "IDENTIFICATION": 2, + "DIVISION.": 4, + "PROGRAM": 2, + "ID.": 2, + "PROCEDURE": 2, + "DISPLAY": 2, + "STOP": 2, + "RUN.": 2, + "COBOL": 7, + "TEST": 2, + "RECORD.": 1, + "USAGES.": 1, + "COMP": 5, + "PIC": 5, + "S9": 4, + "(": 5, + ")": 5, + "COMP.": 3, + "COMP2": 2 + }, + "CSS": { + ".clearfix": 8, + "{": 1661, + "*zoom": 48, + ";": 4219, + "}": 1705, + "before": 48, + "after": 96, + "display": 135, + "table": 44, + "content": 66, + "line": 97, + "-": 8839, + "height": 141, + "clear": 32, + "both": 30, + ".hide": 12, + "text": 129, + "font": 142, + "/0": 2, + "a": 268, + "color": 711, + "transparent": 148, + "shadow": 254, + "none": 128, + "background": 770, + "border": 912, + ".input": 216, + "block": 133, + "level": 2, + "width": 215, + "%": 366, + "min": 14, + "px": 2535, + "webkit": 364, + "box": 264, + "sizing": 27, + "moz": 316, + "article": 2, + "aside": 2, + "details": 2, + "figcaption": 2, + "figure": 2, + "footer": 2, + "header": 12, + "hgroup": 2, + "nav": 2, + "section": 2, + "audio": 4, + "canvas": 2, + "video": 4, + "inline": 116, + "*display": 20, + "not": 6, + "(": 748, + "[": 384, + "controls": 2, + "]": 384, + ")": 748, + "html": 4, + "size": 104, + "adjust": 6, + "ms": 13, + "focus": 232, + "outline": 30, + "thin": 8, + "dotted": 10, + "#333": 6, + "auto": 50, + "ring": 6, + "offset": 6, + "hover": 144, + "active": 46, + "sub": 4, + "sup": 4, + "position": 342, + "relative": 18, + "vertical": 56, + "align": 72, + "baseline": 4, + "top": 376, + "em": 6, + "bottom": 309, + "img": 14, + "max": 18, + "middle": 20, + "interpolation": 2, + "mode": 2, + "bicubic": 2, + "#map_canvas": 2, + ".google": 2, + "maps": 2, + "button": 18, + "input": 336, + "select": 90, + "textarea": 76, + "margin": 424, + "*overflow": 3, + "visible": 8, + "normal": 18, + "inner": 37, + "padding": 174, + "type": 174, + "appearance": 6, + "cursor": 30, + "pointer": 12, + "label": 20, + "textfield": 2, + "search": 66, + "decoration": 33, + "cancel": 2, + "overflow": 21, + "@media": 2, + "print": 4, + "*": 2, + "important": 18, + "#000": 2, + "visited": 2, + "underline": 6, + "href": 28, + "attr": 4, + "abbr": 6, + "title": 10, + ".ir": 2, + "pre": 16, + "blockquote": 14, + "solid": 93, + "#999": 6, + "page": 6, + "break": 12, + "inside": 4, + "avoid": 6, + "thead": 38, + "group": 120, + "tr": 92, + "@page": 2, + "cm": 2, + "p": 14, + "h2": 14, + "h3": 14, + "orphans": 2, + "widows": 2, + "body": 3, + "family": 10, + "Helvetica": 6, + "Arial": 6, + "sans": 6, + "serif": 6, + "#333333": 26, + "#ffffff": 136, + "#0088cc": 24, + "#005580": 8, + ".img": 6, + "rounded": 2, + "radius": 534, + "polaroid": 2, + "#fff": 10, + "#ccc": 13, + "rgba": 409, + "circle": 18, + ".row": 126, + "left": 489, + "class*": 100, + "float": 84, + ".container": 32, + ".navbar": 332, + "static": 14, + "fixed": 36, + ".span12": 4, + ".span11": 4, + ".span10": 4, + ".span9": 4, + ".span8": 4, + ".span7": 4, + ".span6": 4, + ".span5": 4, + ".span4": 4, + ".span3": 4, + ".span2": 4, + ".span1": 4, + ".offset12": 6, + ".offset11": 6, + ".offset10": 6, + ".offset9": 6, + ".offset8": 6, + ".offset7": 6, + ".offset6": 6, + ".offset5": 6, + ".offset4": 6, + ".offset3": 6, + ".offset2": 6, + ".offset1": 6, + "fluid": 126, + "*margin": 70, + "first": 179, + "child": 301, + ".controls": 28, + "row": 20, + "+": 105, + "*width": 26, + ".pull": 16, + "right": 258, + ".lead": 2, + "weight": 28, + "small": 66, + "strong": 2, + "bold": 14, + "style": 21, + "italic": 4, + "cite": 2, + ".muted": 2, + "#999999": 50, + "a.muted": 4, + "#808080": 2, + ".text": 14, + "warning": 33, + "#c09853": 14, + "a.text": 16, + "#a47e3c": 4, + "error": 10, + "#b94a48": 20, + "#953b39": 6, + "info": 37, + "#3a87ad": 18, + "#2d6987": 6, + "success": 35, + "#468847": 18, + "#356635": 6, + "center": 17, + "h1": 11, + "h4": 20, + "h5": 6, + "h6": 6, + "inherit": 8, + "rendering": 2, + "optimizelegibility": 2, + ".page": 2, + "#eeeeee": 31, + "ul": 84, + "ol": 10, + "li": 205, + "ul.unstyled": 2, + "ol.unstyled": 2, + "list": 44, + "ul.inline": 4, + "ol.inline": 4, + "dl": 2, + "dt": 6, + "dd": 6, + ".dl": 12, + "horizontal": 60, + "hidden": 9, + "ellipsis": 2, + "white": 25, + "space": 23, + "nowrap": 14, + "hr": 2, + "data": 2, + "original": 2, + "help": 2, + "abbr.initialism": 2, + "transform": 4, + "uppercase": 4, + "blockquote.pull": 10, + "q": 4, + "address": 2, + "code": 6, + "Monaco": 2, + "Menlo": 2, + "Consolas": 2, + "monospace": 2, + "#d14": 2, + "#f7f7f9": 2, + "#e1e1e8": 2, + "word": 6, + "all": 10, + "wrap": 6, + "#f5f5f5": 26, + "pre.prettyprint": 2, + ".pre": 2, + "scrollable": 2, + "y": 2, + "scroll": 2, + ".label": 30, + ".badge": 30, + "empty": 7, + "a.label": 4, + "a.badge": 4, + "#f89406": 27, + "#c67605": 4, + "inverse": 110, + "#1a1a1a": 2, + ".btn": 506, + "mini": 34, + "collapse": 12, + "spacing": 3, + ".table": 180, + "th": 70, + "td": 66, + "#dddddd": 16, + "caption": 18, + "colgroup": 18, + "tbody": 68, + "condensed": 4, + "bordered": 76, + "separate": 4, + "*border": 8, + "topleft": 16, + "last": 118, + "topright": 16, + "tfoot": 12, + "bottomleft": 16, + "bottomright": 16, + "striped": 13, + "nth": 4, + "odd": 4, + "#f9f9f9": 12, + "cell": 2, + "td.span1": 2, + "th.span1": 2, + "td.span2": 2, + "th.span2": 2, + "td.span3": 2, + "th.span3": 2, + "td.span4": 2, + "th.span4": 2, + "td.span5": 2, + "th.span5": 2, + "td.span6": 2, + "th.span6": 2, + "td.span7": 2, + "th.span7": 2, + "td.span8": 2, + "th.span8": 2, + "td.span9": 2, + "th.span9": 2, + "td.span10": 2, + "th.span10": 2, + "td.span11": 2, + "th.span11": 2, + "td.span12": 2, + "th.span12": 2, + "tr.success": 4, + "#dff0d8": 6, + "tr.error": 4, + "#f2dede": 6, + "tr.warning": 4, + "#fcf8e3": 6, + "tr.info": 4, + "#d9edf7": 6, + "#d0e9c6": 2, + "#ebcccc": 2, + "#faf2cc": 2, + "#c4e3f3": 2, + "form": 38, + "fieldset": 2, + "legend": 6, + "#e5e5e5": 28, + ".uneditable": 80, + "#555555": 18, + "#cccccc": 18, + "inset": 132, + "transition": 36, + "linear": 204, + ".2s": 16, + "o": 48, + ".075": 12, + ".6": 6, + "multiple": 2, + "#fcfcfc": 2, + "allowed": 4, + "placeholder": 18, + ".radio": 26, + ".checkbox": 26, + ".radio.inline": 6, + ".checkbox.inline": 6, + "medium": 2, + "large": 40, + "xlarge": 2, + "xxlarge": 2, + "append": 120, + "prepend": 82, + "input.span12": 4, + "textarea.span12": 2, + "input.span11": 4, + "textarea.span11": 2, + "input.span10": 4, + "textarea.span10": 2, + "input.span9": 4, + "textarea.span9": 2, + "input.span8": 4, + "textarea.span8": 2, + "input.span7": 4, + "textarea.span7": 2, + "input.span6": 4, + "textarea.span6": 2, + "input.span5": 4, + "textarea.span5": 2, + "input.span4": 4, + "textarea.span4": 2, + "input.span3": 4, + "textarea.span3": 2, + "input.span2": 4, + "textarea.span2": 2, + "input.span1": 4, + "textarea.span1": 2, + "disabled": 36, + "readonly": 10, + ".control": 150, + "group.warning": 32, + ".help": 44, + "#dbc59e": 6, + ".add": 36, + "on": 36, + "group.error": 32, + "#d59392": 6, + "group.success": 32, + "#7aba7b": 6, + "group.info": 32, + "#7ab5d3": 6, + "invalid": 12, + "#ee5f5b": 18, + "#e9322d": 2, + "#f8b9b7": 6, + ".form": 132, + "actions": 10, + "#595959": 2, + ".dropdown": 126, + "menu": 42, + ".popover": 14, + "z": 12, + "index": 14, + "toggle": 84, + ".active": 86, + "#a9dba9": 2, + "#46a546": 2, + "prepend.input": 22, + "input.search": 2, + "query": 22, + ".search": 22, + "*padding": 36, + "image": 187, + "gradient": 175, + "#e6e6e6": 20, + "from": 40, + "to": 75, + "repeat": 66, + "x": 30, + "filter": 57, + "progid": 48, + "DXImageTransform.Microsoft.gradient": 48, + "startColorstr": 30, + "endColorstr": 30, + "GradientType": 30, + "#bfbfbf": 4, + "*background": 36, + "enabled": 18, + "false": 18, + "#b3b3b3": 2, + ".3em": 6, + ".2": 12, + ".05": 24, + ".btn.active": 8, + ".btn.disabled": 4, + "#d9d9d9": 4, + "s": 25, + ".15": 24, + "default": 12, + "opacity": 15, + "alpha": 7, + "class": 26, + "primary.active": 6, + "warning.active": 6, + "danger.active": 6, + "success.active": 6, + "info.active": 6, + "inverse.active": 6, + "primary": 14, + "#006dcc": 2, + "#0044cc": 20, + "#002a80": 2, + "primary.disabled": 2, + "#003bb3": 2, + "#003399": 2, + "#faa732": 3, + "#fbb450": 16, + "#ad6704": 2, + "warning.disabled": 2, + "#df8505": 2, + "danger": 21, + "#da4f49": 2, + "#bd362f": 20, + "#802420": 2, + "danger.disabled": 2, + "#a9302a": 2, + "#942a25": 2, + "#5bb75b": 2, + "#62c462": 16, + "#51a351": 20, + "#387038": 2, + "success.disabled": 2, + "#499249": 2, + "#408140": 2, + "#49afcd": 2, + "#5bc0de": 16, + "#2f96b4": 20, + "#1f6377": 2, + "info.disabled": 2, + "#2a85a0": 2, + "#24748c": 2, + "#363636": 2, + "#444444": 10, + "#222222": 32, + "#000000": 14, + "inverse.disabled": 2, + "#151515": 12, + "#080808": 2, + "button.btn": 4, + "button.btn.btn": 6, + ".btn.btn": 6, + "link": 28, + "url": 4, + "no": 2, + ".icon": 288, + ".nav": 308, + "pills": 28, + "submenu": 8, + "glass": 2, + "music": 2, + "envelope": 2, + "heart": 2, + "star": 4, + "user": 2, + "film": 2, + "ok": 6, + "remove": 6, + "zoom": 5, + "in": 10, + "out": 10, + "off": 4, + "signal": 2, + "cog": 2, + "trash": 2, + "home": 2, + "file": 2, + "time": 2, + "road": 2, + "download": 4, + "alt": 6, + "upload": 2, + "inbox": 2, + "play": 4, + "refresh": 2, + "lock": 2, + "flag": 2, + "headphones": 2, + "volume": 6, + "down": 12, + "up": 12, + "qrcode": 2, + "barcode": 2, + "tag": 2, + "tags": 2, + "book": 2, + "bookmark": 2, + "camera": 2, + "justify": 2, + "indent": 4, + "facetime": 2, + "picture": 2, + "pencil": 2, + "map": 2, + "marker": 2, + "tint": 2, + "edit": 2, + "share": 4, + "check": 2, + "move": 2, + "step": 4, + "backward": 6, + "fast": 4, + "pause": 2, + "stop": 32, + "forward": 6, + "eject": 2, + "chevron": 8, + "plus": 4, + "sign": 16, + "minus": 4, + "question": 2, + "screenshot": 2, + "ban": 2, + "arrow": 21, + "resize": 8, + "full": 2, + "asterisk": 2, + "exclamation": 2, + "gift": 2, + "leaf": 2, + "fire": 2, + "eye": 4, + "open": 4, + "close": 4, + "plane": 2, + "calendar": 2, + "random": 2, + "comment": 2, + "magnet": 2, + "retweet": 2, + "shopping": 2, + "cart": 2, + "folder": 4, + "hdd": 2, + "bullhorn": 2, + "bell": 2, + "certificate": 2, + "thumbs": 4, + "hand": 8, + "globe": 2, + "wrench": 2, + "tasks": 2, + "briefcase": 2, + "fullscreen": 2, + "toolbar": 8, + ".btn.large": 4, + ".large.dropdown": 2, + "group.open": 18, + ".125": 6, + ".btn.dropdown": 2, + "primary.dropdown": 2, + "warning.dropdown": 2, + "danger.dropdown": 2, + "success.dropdown": 2, + "info.dropdown": 2, + "inverse.dropdown": 2, + ".caret": 70, + ".dropup": 2, + ".divider": 8, + "tabs": 94, + "#ddd": 38, + "stacked": 24, + "tabs.nav": 12, + "pills.nav": 4, + ".dropdown.active": 4, + ".open": 8, + "li.dropdown.open.active": 14, + "li.dropdown.open": 14, + ".tabs": 62, + ".tabbable": 8, + ".tab": 8, + "below": 18, + "pane": 4, + ".pill": 6, + ".disabled": 22, + "*position": 2, + "*z": 2, + "#fafafa": 2, + "#f2f2f2": 22, + "#d4d4d4": 2, + "collapse.collapse": 2, + ".brand": 14, + "#777777": 12, + ".1": 24, + ".nav.pull": 2, + "navbar": 28, + "#ededed": 2, + "navbar.active": 8, + "navbar.disabled": 4, + "bar": 21, + "absolute": 8, + "li.dropdown": 12, + "li.dropdown.active": 8, + "menu.pull": 8, + "#1b1b1b": 2, + "#111111": 18, + "#252525": 2, + "#515151": 2, + "query.focused": 2, + "#0e0e0e": 2, + "#040404": 18, + ".breadcrumb": 8, + ".pagination": 78, + "span": 38, + "centered": 2, + ".pager": 34, + ".next": 4, + ".previous": 4, + ".thumbnails": 12, + ".thumbnail": 6, + "ease": 12, + "a.thumbnail": 4, + ".caption": 2, + ".alert": 34, + "#fbeed5": 2, + ".close": 2, + "#d6e9c6": 2, + "#eed3d7": 2, + "#bce8f1": 2, + "@": 8, + "keyframes": 8, + "progress": 15, + "stripes": 15, + "@keyframes": 2, + ".progress": 22, + "#f7f7f7": 3, + ".bar": 22, + "#0e90d2": 2, + "#149bdf": 11, + "#0480be": 10, + "deg": 20, + ".progress.active": 1, + "animation": 5, + "infinite": 5, + "#dd514c": 1, + "#c43c35": 5, + "danger.progress": 1, + "#5eb95e": 1, + "#57a957": 5, + "success.progress": 1, + "#4bb1cf": 1, + "#339bb9": 5, + "info.progress": 1, + "warning.progress": 1, + ".hero": 3, + "unit": 3, + "letter": 1, + ".media": 11, + "object": 1, + "heading": 1, + ".tooltip": 7, + "visibility": 1, + ".tooltip.in": 1, + ".tooltip.top": 2, + ".tooltip.right": 2, + ".tooltip.bottom": 2, + ".tooltip.left": 2, + "clip": 3, + ".popover.top": 3, + ".popover.right": 3, + ".popover.bottom": 3, + ".popover.left": 3, + "#ebebeb": 1, + ".arrow": 12, + ".modal": 5, + "backdrop": 2, + "backdrop.fade": 1, + "backdrop.fade.in": 1 + }, "Ceylon": { "doc": 2, "by": 1, @@ -15629,37 +16408,6 @@ "vals": 1, "filter": 1 }, - "COBOL": { - "program": 1, - "-": 19, - "id.": 1, - "hello.": 3, - "procedure": 1, - "division.": 1, - "display": 1, - ".": 3, - "stop": 1, - "run.": 1, - "IDENTIFICATION": 2, - "DIVISION.": 4, - "PROGRAM": 2, - "ID.": 2, - "PROCEDURE": 2, - "DISPLAY": 2, - "STOP": 2, - "RUN.": 2, - "COBOL": 7, - "TEST": 2, - "RECORD.": 1, - "USAGES.": 1, - "COMP": 5, - "PIC": 5, - "S9": 4, - "(": 5, - ")": 5, - "COMP.": 3, - "COMP2": 2 - }, "CoffeeScript": { "CoffeeScript": 1, "require": 21, @@ -18554,754 +19302,6 @@ "Attribute": 1, "exps.map": 1 }, - "CSS": { - ".clearfix": 8, - "{": 1661, - "*zoom": 48, - ";": 4219, - "}": 1705, - "before": 48, - "after": 96, - "display": 135, - "table": 44, - "content": 66, - "line": 97, - "-": 8839, - "height": 141, - "clear": 32, - "both": 30, - ".hide": 12, - "text": 129, - "font": 142, - "/0": 2, - "a": 268, - "color": 711, - "transparent": 148, - "shadow": 254, - "none": 128, - "background": 770, - "border": 912, - ".input": 216, - "block": 133, - "level": 2, - "width": 215, - "%": 366, - "min": 14, - "px": 2535, - "webkit": 364, - "box": 264, - "sizing": 27, - "moz": 316, - "article": 2, - "aside": 2, - "details": 2, - "figcaption": 2, - "figure": 2, - "footer": 2, - "header": 12, - "hgroup": 2, - "nav": 2, - "section": 2, - "audio": 4, - "canvas": 2, - "video": 4, - "inline": 116, - "*display": 20, - "not": 6, - "(": 748, - "[": 384, - "controls": 2, - "]": 384, - ")": 748, - "html": 4, - "size": 104, - "adjust": 6, - "ms": 13, - "focus": 232, - "outline": 30, - "thin": 8, - "dotted": 10, - "#333": 6, - "auto": 50, - "ring": 6, - "offset": 6, - "hover": 144, - "active": 46, - "sub": 4, - "sup": 4, - "position": 342, - "relative": 18, - "vertical": 56, - "align": 72, - "baseline": 4, - "top": 376, - "em": 6, - "bottom": 309, - "img": 14, - "max": 18, - "middle": 20, - "interpolation": 2, - "mode": 2, - "bicubic": 2, - "#map_canvas": 2, - ".google": 2, - "maps": 2, - "button": 18, - "input": 336, - "select": 90, - "textarea": 76, - "margin": 424, - "*overflow": 3, - "visible": 8, - "normal": 18, - "inner": 37, - "padding": 174, - "type": 174, - "appearance": 6, - "cursor": 30, - "pointer": 12, - "label": 20, - "textfield": 2, - "search": 66, - "decoration": 33, - "cancel": 2, - "overflow": 21, - "@media": 2, - "print": 4, - "*": 2, - "important": 18, - "#000": 2, - "visited": 2, - "underline": 6, - "href": 28, - "attr": 4, - "abbr": 6, - "title": 10, - ".ir": 2, - "pre": 16, - "blockquote": 14, - "solid": 93, - "#999": 6, - "page": 6, - "break": 12, - "inside": 4, - "avoid": 6, - "thead": 38, - "group": 120, - "tr": 92, - "@page": 2, - "cm": 2, - "p": 14, - "h2": 14, - "h3": 14, - "orphans": 2, - "widows": 2, - "body": 3, - "family": 10, - "Helvetica": 6, - "Arial": 6, - "sans": 6, - "serif": 6, - "#333333": 26, - "#ffffff": 136, - "#0088cc": 24, - "#005580": 8, - ".img": 6, - "rounded": 2, - "radius": 534, - "polaroid": 2, - "#fff": 10, - "#ccc": 13, - "rgba": 409, - "circle": 18, - ".row": 126, - "left": 489, - "class*": 100, - "float": 84, - ".container": 32, - ".navbar": 332, - "static": 14, - "fixed": 36, - ".span12": 4, - ".span11": 4, - ".span10": 4, - ".span9": 4, - ".span8": 4, - ".span7": 4, - ".span6": 4, - ".span5": 4, - ".span4": 4, - ".span3": 4, - ".span2": 4, - ".span1": 4, - ".offset12": 6, - ".offset11": 6, - ".offset10": 6, - ".offset9": 6, - ".offset8": 6, - ".offset7": 6, - ".offset6": 6, - ".offset5": 6, - ".offset4": 6, - ".offset3": 6, - ".offset2": 6, - ".offset1": 6, - "fluid": 126, - "*margin": 70, - "first": 179, - "child": 301, - ".controls": 28, - "row": 20, - "+": 105, - "*width": 26, - ".pull": 16, - "right": 258, - ".lead": 2, - "weight": 28, - "small": 66, - "strong": 2, - "bold": 14, - "style": 21, - "italic": 4, - "cite": 2, - ".muted": 2, - "#999999": 50, - "a.muted": 4, - "#808080": 2, - ".text": 14, - "warning": 33, - "#c09853": 14, - "a.text": 16, - "#a47e3c": 4, - "error": 10, - "#b94a48": 20, - "#953b39": 6, - "info": 37, - "#3a87ad": 18, - "#2d6987": 6, - "success": 35, - "#468847": 18, - "#356635": 6, - "center": 17, - "h1": 11, - "h4": 20, - "h5": 6, - "h6": 6, - "inherit": 8, - "rendering": 2, - "optimizelegibility": 2, - ".page": 2, - "#eeeeee": 31, - "ul": 84, - "ol": 10, - "li": 205, - "ul.unstyled": 2, - "ol.unstyled": 2, - "list": 44, - "ul.inline": 4, - "ol.inline": 4, - "dl": 2, - "dt": 6, - "dd": 6, - ".dl": 12, - "horizontal": 60, - "hidden": 9, - "ellipsis": 2, - "white": 25, - "space": 23, - "nowrap": 14, - "hr": 2, - "data": 2, - "original": 2, - "help": 2, - "abbr.initialism": 2, - "transform": 4, - "uppercase": 4, - "blockquote.pull": 10, - "q": 4, - "address": 2, - "code": 6, - "Monaco": 2, - "Menlo": 2, - "Consolas": 2, - "monospace": 2, - "#d14": 2, - "#f7f7f9": 2, - "#e1e1e8": 2, - "word": 6, - "all": 10, - "wrap": 6, - "#f5f5f5": 26, - "pre.prettyprint": 2, - ".pre": 2, - "scrollable": 2, - "y": 2, - "scroll": 2, - ".label": 30, - ".badge": 30, - "empty": 7, - "a.label": 4, - "a.badge": 4, - "#f89406": 27, - "#c67605": 4, - "inverse": 110, - "#1a1a1a": 2, - ".btn": 506, - "mini": 34, - "collapse": 12, - "spacing": 3, - ".table": 180, - "th": 70, - "td": 66, - "#dddddd": 16, - "caption": 18, - "colgroup": 18, - "tbody": 68, - "condensed": 4, - "bordered": 76, - "separate": 4, - "*border": 8, - "topleft": 16, - "last": 118, - "topright": 16, - "tfoot": 12, - "bottomleft": 16, - "bottomright": 16, - "striped": 13, - "nth": 4, - "odd": 4, - "#f9f9f9": 12, - "cell": 2, - "td.span1": 2, - "th.span1": 2, - "td.span2": 2, - "th.span2": 2, - "td.span3": 2, - "th.span3": 2, - "td.span4": 2, - "th.span4": 2, - "td.span5": 2, - "th.span5": 2, - "td.span6": 2, - "th.span6": 2, - "td.span7": 2, - "th.span7": 2, - "td.span8": 2, - "th.span8": 2, - "td.span9": 2, - "th.span9": 2, - "td.span10": 2, - "th.span10": 2, - "td.span11": 2, - "th.span11": 2, - "td.span12": 2, - "th.span12": 2, - "tr.success": 4, - "#dff0d8": 6, - "tr.error": 4, - "#f2dede": 6, - "tr.warning": 4, - "#fcf8e3": 6, - "tr.info": 4, - "#d9edf7": 6, - "#d0e9c6": 2, - "#ebcccc": 2, - "#faf2cc": 2, - "#c4e3f3": 2, - "form": 38, - "fieldset": 2, - "legend": 6, - "#e5e5e5": 28, - ".uneditable": 80, - "#555555": 18, - "#cccccc": 18, - "inset": 132, - "transition": 36, - "linear": 204, - ".2s": 16, - "o": 48, - ".075": 12, - ".6": 6, - "multiple": 2, - "#fcfcfc": 2, - "allowed": 4, - "placeholder": 18, - ".radio": 26, - ".checkbox": 26, - ".radio.inline": 6, - ".checkbox.inline": 6, - "medium": 2, - "large": 40, - "xlarge": 2, - "xxlarge": 2, - "append": 120, - "prepend": 82, - "input.span12": 4, - "textarea.span12": 2, - "input.span11": 4, - "textarea.span11": 2, - "input.span10": 4, - "textarea.span10": 2, - "input.span9": 4, - "textarea.span9": 2, - "input.span8": 4, - "textarea.span8": 2, - "input.span7": 4, - "textarea.span7": 2, - "input.span6": 4, - "textarea.span6": 2, - "input.span5": 4, - "textarea.span5": 2, - "input.span4": 4, - "textarea.span4": 2, - "input.span3": 4, - "textarea.span3": 2, - "input.span2": 4, - "textarea.span2": 2, - "input.span1": 4, - "textarea.span1": 2, - "disabled": 36, - "readonly": 10, - ".control": 150, - "group.warning": 32, - ".help": 44, - "#dbc59e": 6, - ".add": 36, - "on": 36, - "group.error": 32, - "#d59392": 6, - "group.success": 32, - "#7aba7b": 6, - "group.info": 32, - "#7ab5d3": 6, - "invalid": 12, - "#ee5f5b": 18, - "#e9322d": 2, - "#f8b9b7": 6, - ".form": 132, - "actions": 10, - "#595959": 2, - ".dropdown": 126, - "menu": 42, - ".popover": 14, - "z": 12, - "index": 14, - "toggle": 84, - ".active": 86, - "#a9dba9": 2, - "#46a546": 2, - "prepend.input": 22, - "input.search": 2, - "query": 22, - ".search": 22, - "*padding": 36, - "image": 187, - "gradient": 175, - "#e6e6e6": 20, - "from": 40, - "to": 75, - "repeat": 66, - "x": 30, - "filter": 57, - "progid": 48, - "DXImageTransform.Microsoft.gradient": 48, - "startColorstr": 30, - "endColorstr": 30, - "GradientType": 30, - "#bfbfbf": 4, - "*background": 36, - "enabled": 18, - "false": 18, - "#b3b3b3": 2, - ".3em": 6, - ".2": 12, - ".05": 24, - ".btn.active": 8, - ".btn.disabled": 4, - "#d9d9d9": 4, - "s": 25, - ".15": 24, - "default": 12, - "opacity": 15, - "alpha": 7, - "class": 26, - "primary.active": 6, - "warning.active": 6, - "danger.active": 6, - "success.active": 6, - "info.active": 6, - "inverse.active": 6, - "primary": 14, - "#006dcc": 2, - "#0044cc": 20, - "#002a80": 2, - "primary.disabled": 2, - "#003bb3": 2, - "#003399": 2, - "#faa732": 3, - "#fbb450": 16, - "#ad6704": 2, - "warning.disabled": 2, - "#df8505": 2, - "danger": 21, - "#da4f49": 2, - "#bd362f": 20, - "#802420": 2, - "danger.disabled": 2, - "#a9302a": 2, - "#942a25": 2, - "#5bb75b": 2, - "#62c462": 16, - "#51a351": 20, - "#387038": 2, - "success.disabled": 2, - "#499249": 2, - "#408140": 2, - "#49afcd": 2, - "#5bc0de": 16, - "#2f96b4": 20, - "#1f6377": 2, - "info.disabled": 2, - "#2a85a0": 2, - "#24748c": 2, - "#363636": 2, - "#444444": 10, - "#222222": 32, - "#000000": 14, - "inverse.disabled": 2, - "#151515": 12, - "#080808": 2, - "button.btn": 4, - "button.btn.btn": 6, - ".btn.btn": 6, - "link": 28, - "url": 4, - "no": 2, - ".icon": 288, - ".nav": 308, - "pills": 28, - "submenu": 8, - "glass": 2, - "music": 2, - "envelope": 2, - "heart": 2, - "star": 4, - "user": 2, - "film": 2, - "ok": 6, - "remove": 6, - "zoom": 5, - "in": 10, - "out": 10, - "off": 4, - "signal": 2, - "cog": 2, - "trash": 2, - "home": 2, - "file": 2, - "time": 2, - "road": 2, - "download": 4, - "alt": 6, - "upload": 2, - "inbox": 2, - "play": 4, - "refresh": 2, - "lock": 2, - "flag": 2, - "headphones": 2, - "volume": 6, - "down": 12, - "up": 12, - "qrcode": 2, - "barcode": 2, - "tag": 2, - "tags": 2, - "book": 2, - "bookmark": 2, - "camera": 2, - "justify": 2, - "indent": 4, - "facetime": 2, - "picture": 2, - "pencil": 2, - "map": 2, - "marker": 2, - "tint": 2, - "edit": 2, - "share": 4, - "check": 2, - "move": 2, - "step": 4, - "backward": 6, - "fast": 4, - "pause": 2, - "stop": 32, - "forward": 6, - "eject": 2, - "chevron": 8, - "plus": 4, - "sign": 16, - "minus": 4, - "question": 2, - "screenshot": 2, - "ban": 2, - "arrow": 21, - "resize": 8, - "full": 2, - "asterisk": 2, - "exclamation": 2, - "gift": 2, - "leaf": 2, - "fire": 2, - "eye": 4, - "open": 4, - "close": 4, - "plane": 2, - "calendar": 2, - "random": 2, - "comment": 2, - "magnet": 2, - "retweet": 2, - "shopping": 2, - "cart": 2, - "folder": 4, - "hdd": 2, - "bullhorn": 2, - "bell": 2, - "certificate": 2, - "thumbs": 4, - "hand": 8, - "globe": 2, - "wrench": 2, - "tasks": 2, - "briefcase": 2, - "fullscreen": 2, - "toolbar": 8, - ".btn.large": 4, - ".large.dropdown": 2, - "group.open": 18, - ".125": 6, - ".btn.dropdown": 2, - "primary.dropdown": 2, - "warning.dropdown": 2, - "danger.dropdown": 2, - "success.dropdown": 2, - "info.dropdown": 2, - "inverse.dropdown": 2, - ".caret": 70, - ".dropup": 2, - ".divider": 8, - "tabs": 94, - "#ddd": 38, - "stacked": 24, - "tabs.nav": 12, - "pills.nav": 4, - ".dropdown.active": 4, - ".open": 8, - "li.dropdown.open.active": 14, - "li.dropdown.open": 14, - ".tabs": 62, - ".tabbable": 8, - ".tab": 8, - "below": 18, - "pane": 4, - ".pill": 6, - ".disabled": 22, - "*position": 2, - "*z": 2, - "#fafafa": 2, - "#f2f2f2": 22, - "#d4d4d4": 2, - "collapse.collapse": 2, - ".brand": 14, - "#777777": 12, - ".1": 24, - ".nav.pull": 2, - "navbar": 28, - "#ededed": 2, - "navbar.active": 8, - "navbar.disabled": 4, - "bar": 21, - "absolute": 8, - "li.dropdown": 12, - "li.dropdown.active": 8, - "menu.pull": 8, - "#1b1b1b": 2, - "#111111": 18, - "#252525": 2, - "#515151": 2, - "query.focused": 2, - "#0e0e0e": 2, - "#040404": 18, - ".breadcrumb": 8, - ".pagination": 78, - "span": 38, - "centered": 2, - ".pager": 34, - ".next": 4, - ".previous": 4, - ".thumbnails": 12, - ".thumbnail": 6, - "ease": 12, - "a.thumbnail": 4, - ".caption": 2, - ".alert": 34, - "#fbeed5": 2, - ".close": 2, - "#d6e9c6": 2, - "#eed3d7": 2, - "#bce8f1": 2, - "@": 8, - "keyframes": 8, - "progress": 15, - "stripes": 15, - "@keyframes": 2, - ".progress": 22, - "#f7f7f7": 3, - ".bar": 22, - "#0e90d2": 2, - "#149bdf": 11, - "#0480be": 10, - "deg": 20, - ".progress.active": 1, - "animation": 5, - "infinite": 5, - "#dd514c": 1, - "#c43c35": 5, - "danger.progress": 1, - "#5eb95e": 1, - "#57a957": 5, - "success.progress": 1, - "#4bb1cf": 1, - "#339bb9": 5, - "info.progress": 1, - "warning.progress": 1, - ".hero": 3, - "unit": 3, - "letter": 1, - ".media": 11, - "object": 1, - "heading": 1, - ".tooltip": 7, - "visibility": 1, - ".tooltip.in": 1, - ".tooltip.top": 2, - ".tooltip.right": 2, - ".tooltip.bottom": 2, - ".tooltip.left": 2, - "clip": 3, - ".popover.top": 3, - ".popover.right": 3, - ".popover.bottom": 3, - ".popover.left": 3, - "#ebebeb": 1, - ".arrow": 12, - ".modal": 5, - "backdrop": 2, - "backdrop.fade": 1, - "backdrop.fade.in": 1 - }, "Cuda": { "__global__": 2, "void": 3, @@ -19380,51 +19380,6 @@ "cudaDeviceReset": 1, "return": 1 }, - "Dart": { - "import": 1, - "as": 1, - "math": 1, - ";": 9, - "class": 1, - "Point": 5, - "{": 3, - "num": 2, - "x": 2, - "y": 2, - "(": 7, - "this.x": 1, - "this.y": 1, - ")": 7, - "distanceTo": 1, - "other": 1, - "var": 4, - "dx": 3, - "-": 2, - "other.x": 1, - "dy": 3, - "other.y": 1, - "return": 1, - "math.sqrt": 1, - "*": 2, - "+": 1, - "}": 3, - "void": 1, - "main": 1, - "p": 1, - "new": 2, - "q": 1, - "print": 1 - }, - "Diff": { - "diff": 1, - "-": 5, - "git": 1, - "a/lib/linguist.rb": 2, - "b/lib/linguist.rb": 2, - "index": 1, - "d472341..8ad9ffb": 1, - "+": 3 - }, "DM": { "#define": 4, "PI": 6, @@ -19517,6 +19472,51 @@ "#undef": 1, "Undefine": 1 }, + "Dart": { + "import": 1, + "as": 1, + "math": 1, + ";": 9, + "class": 1, + "Point": 5, + "{": 3, + "num": 2, + "x": 2, + "y": 2, + "(": 7, + "this.x": 1, + "this.y": 1, + ")": 7, + "distanceTo": 1, + "other": 1, + "var": 4, + "dx": 3, + "-": 2, + "other.x": 1, + "dy": 3, + "other.y": 1, + "return": 1, + "math.sqrt": 1, + "*": 2, + "+": 1, + "}": 3, + "void": 1, + "main": 1, + "p": 1, + "new": 2, + "q": 1, + "print": 1 + }, + "Diff": { + "diff": 1, + "-": 5, + "git": 1, + "a/lib/linguist.rb": 2, + "b/lib/linguist.rb": 2, + "index": 1, + "d472341..8ad9ffb": 1, + "+": 3 + }, "Dogescript": { "quiet": 1, "wow": 4, @@ -19692,6 +19692,84 @@ "#....log": 1, "event": 1 }, + "ECL": { + "#option": 1, + "(": 32, + "true": 1, + ")": 32, + ";": 23, + "namesRecord": 4, + "RECORD": 1, + "string20": 1, + "surname": 1, + "string10": 2, + "forename": 1, + "integer2": 5, + "age": 2, + "dadAge": 1, + "mumAge": 1, + "END": 1, + "namesRecord2": 3, + "record": 1, + "extra": 1, + "end": 1, + "namesTable": 11, + "dataset": 2, + "FLAT": 2, + "namesTable2": 9, + "aveAgeL": 3, + "l": 1, + "l.dadAge": 1, + "+": 16, + "l.mumAge": 1, + "/2": 2, + "aveAgeR": 4, + "r": 1, + "r.dadAge": 1, + "r.mumAge": 1, + "output": 9, + "join": 11, + "left": 2, + "right": 3, + "//Several": 1, + "simple": 1, + "examples": 1, + "of": 1, + "sliding": 2, + "syntax": 1, + "left.age": 8, + "right.age": 12, + "-": 5, + "and": 10, + "<": 1, + "between": 7, + "//Same": 1, + "but": 1, + "on": 1, + "strings.": 1, + "Also": 1, + "includes": 1, + "to": 1, + "ensure": 1, + "sort": 1, + "is": 1, + "done": 1, + "by": 1, + "non": 1, + "before": 1, + "sliding.": 1, + "left.surname": 2, + "right.surname": 4, + "[": 4, + "]": 4, + "all": 1, + "//This": 1, + "should": 1, + "not": 1, + "generate": 1, + "a": 1, + "self": 1 + }, "Eagle": { "": 2, "version=": 4, @@ -20195,108 +20273,6 @@ "": 12, "radius=": 12 }, - "ECL": { - "#option": 1, - "(": 32, - "true": 1, - ")": 32, - ";": 23, - "namesRecord": 4, - "RECORD": 1, - "string20": 1, - "surname": 1, - "string10": 2, - "forename": 1, - "integer2": 5, - "age": 2, - "dadAge": 1, - "mumAge": 1, - "END": 1, - "namesRecord2": 3, - "record": 1, - "extra": 1, - "end": 1, - "namesTable": 11, - "dataset": 2, - "FLAT": 2, - "namesTable2": 9, - "aveAgeL": 3, - "l": 1, - "l.dadAge": 1, - "+": 16, - "l.mumAge": 1, - "/2": 2, - "aveAgeR": 4, - "r": 1, - "r.dadAge": 1, - "r.mumAge": 1, - "output": 9, - "join": 11, - "left": 2, - "right": 3, - "//Several": 1, - "simple": 1, - "examples": 1, - "of": 1, - "sliding": 2, - "syntax": 1, - "left.age": 8, - "right.age": 12, - "-": 5, - "and": 10, - "<": 1, - "between": 7, - "//Same": 1, - "but": 1, - "on": 1, - "strings.": 1, - "Also": 1, - "includes": 1, - "to": 1, - "ensure": 1, - "sort": 1, - "is": 1, - "done": 1, - "by": 1, - "non": 1, - "before": 1, - "sliding.": 1, - "left.surname": 2, - "right.surname": 4, - "[": 4, - "]": 4, - "all": 1, - "//This": 1, - "should": 1, - "not": 1, - "generate": 1, - "a": 1, - "self": 1 - }, - "edn": { - "[": 24, - "{": 22, - "db/id": 22, - "#db/id": 22, - "db.part/db": 6, - "]": 24, - "db/ident": 3, - "object/name": 18, - "db/doc": 4, - "db/valueType": 3, - "db.type/string": 2, - "db/index": 3, - "true": 3, - "db/cardinality": 3, - "db.cardinality/one": 3, - "db.install/_attribute": 3, - "}": 22, - "object/meanRadius": 18, - "db.type/double": 1, - "data/source": 2, - "db.part/tx": 2, - "db.part/user": 17 - }, "Elm": { "import": 3, "List": 1, @@ -21169,162 +21145,6 @@ "ExitCode": 2, "flush": 1 }, - "fish": { - "#": 18, - "set": 49, - "-": 102, - "g": 1, - "IFS": 4, - "n": 5, - "t": 2, - "l": 15, - "configdir": 2, - "/.config": 1, - "if": 21, - "q": 9, - "XDG_CONFIG_HOME": 2, - "end": 33, - "not": 8, - "fish_function_path": 4, - "configdir/fish/functions": 1, - "__fish_sysconfdir/functions": 1, - "__fish_datadir/functions": 3, - "contains": 4, - "[": 13, - "]": 13, - "fish_complete_path": 4, - "configdir/fish/completions": 1, - "__fish_sysconfdir/completions": 1, - "__fish_datadir/completions": 3, - "test": 7, - "d": 3, - "/usr/xpg4/bin": 3, - "PATH": 6, - "path_list": 4, - "/bin": 1, - "/usr/bin": 1, - "/usr/X11R6/bin": 1, - "/usr/local/bin": 1, - "__fish_bin_dir": 1, - "switch": 3, - "USER": 1, - "case": 9, - "root": 1, - "/sbin": 1, - "/usr/sbin": 1, - "/usr/local/sbin": 1, - "for": 1, - "i": 5, - "in": 2, - "function": 6, - "fish_sigtrap_handler": 1, - "on": 2, - "signal": 1, - "TRAP": 1, - "no": 2, - "scope": 1, - "shadowing": 1, - "description": 2, - "breakpoint": 1, - "__fish_on_interactive": 2, - "event": 1, - "fish_prompt": 1, - "__fish_config_interactive": 1, - "functions": 5, - "e": 6, - "eval": 5, - "S": 1, - "If": 2, - "we": 2, - "are": 1, - "an": 1, - "interactive": 8, - "shell": 1, - "should": 2, - "enable": 1, - "full": 4, - "job": 5, - "control": 5, - "since": 1, - "it": 1, - "behave": 1, - "like": 2, - "the": 1, - "real": 1, - "code": 1, - "was": 1, - "executed.": 1, - "don": 1, - "do": 1, - "this": 1, - "commands": 1, - "that": 1, - "expect": 1, - "to": 1, - "be": 1, - "used": 1, - "interactively": 1, - "less": 1, - "wont": 1, - "work": 1, - "using": 1, - "eval.": 1, - "mode": 5, - "status": 7, - "is": 3, - "else": 3, - "none": 1, - "echo": 3, - "|": 3, - ".": 2, - "<": 1, - "&": 1, - "res": 2, - "return": 6, - "funced": 3, - "editor": 7, - "EDITOR": 1, - "funcname": 14, - "while": 2, - "argv": 9, - "h": 1, - "help": 1, - "__fish_print_help": 1, - "set_color": 4, - "red": 2, - "printf": 3, - "(": 7, - "_": 3, - ")": 7, - "normal": 2, - "begin": 2, - ";": 7, - "or": 3, - "init": 5, - "nend": 2, - "editor_cmd": 2, - "type": 1, - "f": 3, - "/dev/null": 2, - "fish": 3, - "z": 1, - "fish_indent": 2, - "indent": 1, - "prompt": 2, - "read": 1, - "p": 1, - "c": 1, - "s": 1, - "cmd": 2, - "TMPDIR": 2, - "/tmp": 1, - "tmpname": 8, - "%": 2, - "self": 2, - "random": 2, - "stat": 2, - "rm": 1 - }, "Forth": { "(": 88, "Block": 2, @@ -22358,1541 +22178,6 @@ "newContentPane.setOpaque": 1, "frame.setContentPane": 1 }, - "Game Maker Language": { - "//draws": 1, - "the": 62, - "sprite": 12, - "draw": 3, - "true": 73, - ";": 1282, - "if": 397, - "(": 1501, - "facing": 17, - "RIGHT": 10, - ")": 1502, - "image_xscale": 17, - "-": 212, - "else": 151, - "blinkToggle": 1, - "{": 300, - "state": 50, - "CLIMBING": 5, - "or": 78, - "sprite_index": 14, - "sPExit": 1, - "sDamselExit": 1, - "sTunnelExit": 1, - "and": 155, - "global.hasJetpack": 4, - "not": 63, - "whipping": 5, - "draw_sprite_ext": 10, - "x": 76, - "y": 85, - "image_yscale": 14, - "image_angle": 14, - "image_blend": 2, - "image_alpha": 10, - "//draw_sprite": 1, - "draw_sprite": 9, - "sJetpackBack": 1, - "false": 85, - "}": 307, - "sJetpackRight": 1, - "sJetpackLeft": 1, - "+": 206, - "redColor": 2, - "make_color_rgb": 1, - "holdArrow": 4, - "ARROW_NORM": 2, - "sArrowRight": 1, - "ARROW_BOMB": 2, - "holdArrowToggle": 2, - "sBombArrowRight": 2, - "LEFT": 7, - "sArrowLeft": 1, - "sBombArrowLeft": 2, - "hangCountMax": 2, - "//////////////////////////////////////": 2, - "kLeft": 12, - "checkLeft": 1, - "kLeftPushedSteps": 3, - "kLeftPressed": 2, - "checkLeftPressed": 1, - "kLeftReleased": 3, - "checkLeftReleased": 1, - "kRight": 12, - "checkRight": 1, - "kRightPushedSteps": 3, - "kRightPressed": 2, - "checkRightPressed": 1, - "kRightReleased": 3, - "checkRightReleased": 1, - "kUp": 5, - "checkUp": 1, - "kDown": 5, - "checkDown": 1, - "//key": 1, - "canRun": 1, - "kRun": 2, - "kJump": 6, - "checkJump": 1, - "kJumpPressed": 11, - "checkJumpPressed": 1, - "kJumpReleased": 5, - "checkJumpReleased": 1, - "cantJump": 3, - "global.isTunnelMan": 1, - "sTunnelAttackL": 1, - "holdItem": 1, - "kAttack": 2, - "checkAttack": 2, - "kAttackPressed": 2, - "checkAttackPressed": 1, - "kAttackReleased": 2, - "checkAttackReleased": 1, - "kItemPressed": 2, - "checkItemPressed": 1, - "xPrev": 1, - "yPrev": 1, - "stunned": 3, - "dead": 3, - "//////////////////////////////////////////": 2, - "colSolidLeft": 4, - "colSolidRight": 3, - "colLeft": 6, - "colRight": 6, - "colTop": 4, - "colBot": 11, - "colLadder": 3, - "colPlatBot": 6, - "colPlat": 5, - "colWaterTop": 3, - "colIceBot": 2, - "runKey": 4, - "isCollisionMoveableSolidLeft": 1, - "isCollisionMoveableSolidRight": 1, - "isCollisionLeft": 2, - "isCollisionRight": 2, - "isCollisionTop": 1, - "isCollisionBottom": 1, - "isCollisionLadder": 1, - "isCollisionPlatformBottom": 1, - "isCollisionPlatform": 1, - "isCollisionWaterTop": 1, - "collision_point": 30, - "oIce": 1, - "checkRun": 1, - "runHeld": 3, - "HANGING": 10, - "approximatelyZero": 4, - "xVel": 24, - "xAcc": 12, - "platformCharacterIs": 23, - "ON_GROUND": 18, - "DUCKING": 4, - "pushTimer": 3, - "//if": 5, - "SS_IsSoundPlaying": 2, - "global.sndPush": 4, - "playSound": 3, - "runAcc": 2, - "abs": 9, - "alarm": 13, - "[": 99, - "]": 103, - "<": 39, - "floor": 11, - "/": 5, - "/xVel": 1, - "instance_exists": 8, - "oCape": 2, - "oCape.open": 6, - "kJumped": 7, - "ladderTimer": 4, - "ladder": 5, - "oLadder": 4, - "ladder.x": 3, - "oLadderTop": 2, - "yAcc": 26, - "climbAcc": 2, - "FALLING": 8, - "STANDING": 2, - "departLadderXVel": 2, - "departLadderYVel": 1, - "JUMPING": 6, - "jumpButtonReleased": 7, - "jumpTime": 8, - "IN_AIR": 5, - "gravityIntensity": 2, - "yVel": 20, - "RUNNING": 3, - "jumps": 3, - "//playSound": 1, - "global.sndLand": 1, - "grav": 22, - "global.hasGloves": 3, - "hangCount": 14, - "*": 18, - "yVel*0.3": 1, - "oWeb": 2, - "obj": 14, - "instance_place": 3, - "obj.life": 1, - "initialJumpAcc": 6, - "xVel/2": 3, - "gravNorm": 7, - "global.hasCape": 1, - "jetpackFuel": 2, - "fallTimer": 2, - "global.hasJordans": 1, - "yAccLimit": 2, - "global.hasSpringShoes": 1, - "global.sndJump": 1, - "jumpTimeTotal": 2, - "//let": 1, - "character": 20, - "continue": 4, - "to": 62, - "jump": 1, - "jumpTime/jumpTimeTotal": 1, - "looking": 2, - "UP": 1, - "LOOKING_UP": 4, - "oSolid": 14, - "move_snap": 6, - "oTree": 4, - "oArrow": 5, - "instance_nearest": 1, - "obj.stuck": 1, - "//the": 2, - "can": 1, - "t": 23, - "want": 1, - "use": 4, - "because": 2, - "is": 9, - "too": 2, - "high": 1, - "yPrevHigh": 1, - "//": 11, - "we": 5, - "ll": 1, - "move": 2, - "correct": 1, - "distance": 1, - "but": 2, - "need": 1, - "shorten": 1, - "out": 4, - "a": 55, - "little": 1, - "ratio": 1, - "xVelInteger": 2, - "/dist*0.9": 1, - "//can": 1, - "be": 4, - "changed": 1, - "moveTo": 2, - "round": 6, - "xVelInteger*ratio": 1, - "yVelInteger*ratio": 1, - "slopeChangeInY": 1, - "maxDownSlope": 1, - "floating": 1, - "just": 1, - "above": 1, - "slope": 1, - "so": 2, - "down": 1, - "upYPrev": 1, - "for": 26, - "<=upYPrev+maxDownSlope;y+=1)>": 1, - "hit": 1, - "solid": 1, - "below": 1, - "upYPrev=": 1, - "I": 1, - "know": 1, - "that": 2, - "this": 2, - "doesn": 1, - "seem": 1, - "make": 1, - "sense": 1, - "of": 25, - "name": 9, - "variable": 1, - "it": 6, - "all": 3, - "works": 1, - "correctly": 1, - "after": 1, - "break": 58, - "loop": 1, - "y=": 1, - "figures": 1, - "what": 1, - "index": 11, - "should": 25, - "characterSprite": 1, - "sets": 1, - "previous": 2, - "previously": 1, - "statePrevPrev": 1, - "statePrev": 2, - "calculates": 1, - "image_speed": 9, - "based": 1, - "on": 4, - "s": 6, - "velocity": 1, - "runAnimSpeed": 1, - "0": 21, - "1": 32, - "sqrt": 1, - "sqr": 2, - "climbAnimSpeed": 1, - "<=>": 3, - "4": 2, - "setCollisionBounds": 3, - "8": 9, - "5": 5, - "DUCKTOHANG": 1, - "image_index": 1, - "limit": 5, - "at": 23, - "animation": 1, - "always": 1, - "looks": 1, - "good": 1, - "var": 79, - "i": 95, - "playerObject": 1, - "playerID": 1, - "player": 36, - "otherPlayerID": 1, - "otherPlayer": 1, - "sameVersion": 1, - "buffer": 1, - "plugins": 4, - "pluginsRequired": 2, - "usePlugins": 1, - "tcp_eof": 3, - "global.serverSocket": 10, - "gotServerHello": 2, - "show_message": 7, - "instance_destroy": 7, - "exit": 10, - "room": 1, - "DownloadRoom": 1, - "keyboard_check": 1, - "vk_escape": 1, - "downloadingMap": 2, - "while": 15, - "tcp_receive": 3, - "min": 4, - "downloadMapBytes": 2, - "buffer_size": 2, - "downloadMapBuffer": 6, - "write_buffer": 2, - "write_buffer_to_file": 1, - "downloadMapName": 3, - "buffer_destroy": 8, - "roomchange": 2, - "do": 1, - "switch": 9, - "read_ubyte": 10, - "case": 50, - "HELLO": 1, - "global.joinedServerName": 2, - "receivestring": 4, - "advertisedMapMd5": 1, - "receiveCompleteMessage": 1, - "global.tempBuffer": 3, - "string_pos": 20, - "Server": 3, - "sent": 7, - "illegal": 2, - "map": 47, - "This": 2, - "server": 10, - "requires": 1, - "following": 2, - "play": 2, - "#": 3, - "suggests": 1, - "optional": 1, - "Error": 2, - "ocurred": 1, - "loading": 1, - "plugins.": 1, - "Maps/": 2, - ".png": 2, - "The": 6, - "version": 4, - "Enter": 1, - "Password": 1, - "Incorrect": 1, - "Password.": 1, - "Incompatible": 1, - "protocol": 3, - "version.": 1, - "Name": 1, - "Exploit": 1, - "Invalid": 2, - "plugin": 6, - "packet": 3, - "ID": 2, - "There": 1, - "are": 1, - "many": 1, - "connections": 1, - "from": 5, - "your": 1, - "IP": 1, - "You": 1, - "have": 2, - "been": 1, - "kicked": 1, - "server.": 1, - ".": 12, - "#Server": 1, - "went": 1, - "invalid": 1, - "internal": 1, - "#Exiting.": 1, - "full.": 1, - "noone": 7, - "ERROR": 1, - "when": 1, - "reading": 1, - "no": 1, - "such": 1, - "unexpected": 1, - "data.": 1, - "until": 1, - "downloadHandle": 3, - "url": 62, - "tmpfile": 3, - "window_oldshowborder": 2, - "window_oldfullscreen": 2, - "timeLeft": 1, - "counter": 1, - "AudioControlPlaySong": 1, - "window_get_showborder": 1, - "window_get_fullscreen": 1, - "window_set_fullscreen": 2, - "window_set_showborder": 1, - "global.updaterBetaChannel": 3, - "UPDATE_SOURCE_BETA": 1, - "UPDATE_SOURCE": 1, - "temp_directory": 1, - "httpGet": 1, - "httpRequestStatus": 1, - "download": 1, - "isn": 1, - "extract": 1, - "downloaded": 1, - "file": 2, - "now.": 1, - "extractzip": 1, - "working_directory": 6, - "execute_program": 1, - "game_end": 1, - "victim": 10, - "killer": 11, - "assistant": 16, - "damageSource": 18, - "argument0": 28, - "argument1": 10, - "argument2": 3, - "argument3": 1, - "//*************************************": 6, - "//*": 3, - "Scoring": 1, - "Kill": 1, - "log": 1, - "recordKillInLog": 1, - "victim.stats": 1, - "DEATHS": 1, - "WEAPON_KNIFE": 1, - "||": 16, - "WEAPON_BACKSTAB": 1, - "killer.stats": 8, - "STABS": 2, - "killer.roundStats": 8, - "POINTS": 10, - "victim.object.currentWeapon.object_index": 1, - "Medigun": 2, - "victim.object.currentWeapon.uberReady": 1, - "BONUS": 2, - "KILLS": 2, - "victim.object.intel": 1, - "DEFENSES": 2, - "recordEventInLog": 1, - "killer.team": 1, - "killer.name": 2, - "global.myself": 4, - "assistant.stats": 2, - "ASSISTS": 2, - "assistant.roundStats": 2, - ".5": 2, - "//SPEC": 1, - "instance_create": 20, - "victim.object.x": 3, - "victim.object.y": 3, - "Spectator": 1, - "Gibbing": 2, - "xoffset": 5, - "yoffset": 5, - "xsize": 3, - "ysize": 3, - "view_xview": 3, - "view_yview": 3, - "view_wview": 2, - "view_hview": 2, - "randomize": 1, - "with": 47, - "victim.object": 2, - "WEAPON_ROCKETLAUNCHER": 1, - "WEAPON_MINEGUN": 1, - "FRAG_BOX": 2, - "WEAPON_REFLECTED_STICKY": 1, - "WEAPON_REFLECTED_ROCKET": 1, - "FINISHED_OFF_GIB": 2, - "GENERATOR_EXPLOSION": 2, - "player.class": 15, - "CLASS_QUOTE": 3, - "global.gibLevel": 14, - "distance_to_point": 3, - "xsize/2": 2, - "ysize/2": 2, - "hasReward": 4, - "repeat": 7, - "createGib": 14, - "PumpkinGib": 1, - "hspeed": 14, - "vspeed": 13, - "random": 21, - "choose": 8, - "Gib": 1, - "player.team": 8, - "TEAM_BLUE": 6, - "BlueClump": 1, - "TEAM_RED": 8, - "RedClump": 1, - "blood": 2, - "BloodDrop": 1, - "blood.hspeed": 1, - "blood.vspeed": 1, - "blood.sprite_index": 1, - "PumpkinJuiceS": 1, - "//All": 1, - "Classes": 1, - "gib": 1, - "head": 1, - "hands": 2, - "feet": 1, - "Headgib": 1, - "//Medic": 1, - "has": 2, - "specially": 1, - "colored": 1, - "CLASS_MEDIC": 2, - "Hand": 3, - "Feet": 1, - "//Class": 1, - "specific": 1, - "gibs": 1, - "CLASS_PYRO": 2, - "Accesory": 5, - "CLASS_SOLDIER": 2, - "CLASS_ENGINEER": 3, - "CLASS_SNIPER": 3, - "playsound": 2, - "deadbody": 2, - "DeathSnd1": 1, - "DeathSnd2": 1, - "DeadGuy": 1, - "deadbody.sprite_index": 2, - "haxxyStatue": 1, - "deadbody.image_index": 2, - "CHARACTER_ANIMATION_DEAD": 1, - "deadbody.hspeed": 1, - "deadbody.vspeed": 1, - "deadbody.image_xscale": 1, - "global.gg_birthday": 1, - "myHat": 2, - "PartyHat": 1, - "myHat.image_index": 2, - "victim.team": 2, - "global.xmas": 1, - "XmasHat": 1, - "Deathcam": 1, - "global.killCam": 3, - "KILL_BOX": 1, - "FINISHED_OFF": 5, - "DeathCam": 1, - "DeathCam.killedby": 1, - "DeathCam.name": 1, - "DeathCam.oldxview": 1, - "DeathCam.oldyview": 1, - "DeathCam.lastDamageSource": 1, - "DeathCam.team": 1, - "global.myself.team": 3, - "xr": 19, - "yr": 19, - "cloakAlpha": 1, - "team": 13, - "canCloak": 1, - "cloakAlpha/2": 1, - "invisible": 1, - "stabbing": 2, - "power": 1, - "currentWeapon.stab.alpha": 1, - "&&": 6, - "global.showHealthBar": 3, - "draw_set_alpha": 3, - "draw_healthbar": 1, - "hp*100/maxHp": 1, - "c_black": 1, - "c_red": 3, - "c_green": 1, - "mouse_x": 1, - "mouse_y": 1, - "<25)>": 1, - "cloak": 2, - "global": 8, - "myself": 2, - "draw_set_halign": 1, - "fa_center": 1, - "draw_set_valign": 1, - "fa_bottom": 1, - "team=": 1, - "draw_set_color": 2, - "c_blue": 2, - "draw_text": 4, - "35": 1, - "showTeammateStats": 1, - "weapons": 3, - "50": 3, - "Superburst": 1, - "string": 13, - "currentWeapon": 2, - "uberCharge": 1, - "20": 1, - "Shotgun": 1, - "Nuts": 1, - "N": 1, - "Bolts": 1, - "nutsNBolts": 1, - "Minegun": 1, - "Lobbed": 1, - "Mines": 1, - "lobbed": 1, - "ubercolour": 6, - "overlaySprite": 6, - "zoomed": 1, - "SniperCrouchRedS": 1, - "SniperCrouchBlueS": 1, - "sniperCrouchOverlay": 1, - "overlay": 1, - "omnomnomnom": 2, - "draw_sprite_ext_overlay": 7, - "omnomnomnomSprite": 2, - "omnomnomnomOverlay": 2, - "omnomnomnomindex": 4, - "c_white": 13, - "ubered": 7, - "7": 4, - "taunting": 2, - "tauntsprite": 2, - "tauntOverlay": 2, - "tauntindex": 2, - "humiliated": 1, - "humiliationPoses": 1, - "animationImage": 9, - "humiliationOffset": 1, - "animationOffset": 6, - "burnDuration": 2, - "burnIntensity": 2, - "numFlames": 1, - "maxIntensity": 1, - "FlameS": 1, - "flameArray_x": 1, - "flameArray_y": 1, - "maxDuration": 1, - "demon": 4, - "demonX": 5, - "median": 2, - "demonY": 4, - "demonOffset": 4, - "demonDir": 2, - "dir": 3, - "demonFrame": 5, - "sprite_get_number": 1, - "*player.team": 2, - "dir*1": 2, - "#define": 26, - "__http_init": 3, - "global.__HttpClient": 4, - "object_add": 1, - "object_set_persistent": 1, - "__http_split": 3, - "text": 19, - "delimeter": 7, - "list": 36, - "count": 4, - "ds_list_create": 5, - "ds_list_add": 23, - "string_copy": 32, - "string_length": 25, - "return": 56, - "__http_parse_url": 4, - "ds_map_create": 4, - "ds_map_add": 15, - "colonPos": 22, - "string_char_at": 13, - "slashPos": 13, - "real": 14, - "queryPos": 12, - "ds_map_destroy": 6, - "__http_resolve_url": 2, - "baseUrl": 3, - "refUrl": 18, - "urlParts": 15, - "refUrlParts": 5, - "canParseRefUrl": 3, - "result": 11, - "ds_map_find_value": 22, - "__http_resolve_path": 3, - "ds_map_replace": 3, - "ds_map_exists": 11, - "ds_map_delete": 1, - "path": 10, - "query": 4, - "relUrl": 1, - "__http_construct_url": 2, - "basePath": 4, - "refPath": 7, - "parts": 29, - "refParts": 5, - "lastPart": 3, - "ds_list_find_value": 9, - "ds_list_size": 11, - "ds_list_delete": 5, - "ds_list_destroy": 4, - "part": 6, - "ds_list_replace": 3, - "__http_parse_hex": 2, - "hexString": 4, - "hexValues": 3, - "digit": 4, - "__http_prepare_request": 4, - "client": 33, - "headers": 11, - "parsed": 18, - "show_error": 2, - "destroyed": 3, - "CR": 10, - "chr": 3, - "LF": 5, - "CRLF": 17, - "socket": 40, - "tcp_connect": 1, - "errored": 19, - "error": 18, - "linebuf": 33, - "line": 19, - "statusCode": 6, - "reasonPhrase": 2, - "responseBody": 19, - "buffer_create": 7, - "responseBodySize": 5, - "responseBodyProgress": 5, - "responseHeaders": 9, - "requestUrl": 2, - "requestHeaders": 2, - "write_string": 9, - "key": 17, - "ds_map_find_first": 1, - "is_string": 2, - "ds_map_find_next": 1, - "socket_send": 1, - "__http_parse_header": 3, - "ord": 16, - "headerValue": 9, - "string_lower": 3, - "headerName": 4, - "__http_client_step": 2, - "socket_has_error": 1, - "socket_error": 1, - "__http_client_destroy": 20, - "available": 7, - "tcp_receive_available": 1, - "bytesRead": 6, - "c": 20, - "read_string": 9, - "Reached": 2, - "end": 11, - "HTTP": 1, - "defines": 1, - "sequence": 2, - "as": 1, - "marker": 1, - "elements": 1, - "except": 2, - "entity": 1, - "body": 2, - "see": 1, - "appendix": 1, - "19": 1, - "3": 1, - "tolerant": 1, - "applications": 1, - "Strip": 1, - "trailing": 1, - "First": 1, - "status": 2, - "code": 2, - "first": 3, - "Response": 1, - "message": 1, - "Status": 1, - "Line": 1, - "consisting": 1, - "followed": 1, - "by": 5, - "numeric": 1, - "its": 1, - "associated": 1, - "textual": 1, - "phrase": 1, - "each": 18, - "element": 8, - "separated": 1, - "SP": 1, - "characters": 3, - "No": 3, - "allowed": 1, - "in": 21, - "final": 1, - "httpVer": 2, - "spacePos": 11, - "space": 4, - "response": 5, - "second": 2, - "Other": 1, - "Blank": 1, - "write": 1, - "remainder": 1, - "write_buffer_part": 3, - "Header": 1, - "Receiving": 1, - "transfer": 6, - "encoding": 2, - "chunked": 4, - "Chunked": 1, - "let": 1, - "decode": 36, - "actualResponseBody": 8, - "actualResponseSize": 1, - "actualResponseBodySize": 3, - "Parse": 1, - "chunks": 1, - "chunk": 12, - "size": 7, - "extension": 3, - "data": 4, - "HEX": 1, - "buffer_bytes_left": 6, - "chunkSize": 11, - "Read": 1, - "byte": 2, - "We": 1, - "found": 21, - "semicolon": 1, - "beginning": 1, - "skip": 1, - "stuff": 2, - "header": 2, - "Doesn": 1, - "did": 1, - "empty": 13, - "something": 1, - "up": 6, - "Parsing": 1, - "failed": 56, - "hex": 2, - "was": 1, - "hexadecimal": 1, - "Is": 1, - "bigger": 2, - "than": 1, - "remaining": 1, - "2": 2, - "responseHaders": 1, - "location": 4, - "resolved": 5, - "socket_destroy": 4, - "http_new_get": 1, - "variable_global_exists": 2, - "http_new_get_ex": 1, - "http_step": 1, - "client.errored": 3, - "client.state": 3, - "http_status_code": 1, - "client.statusCode": 1, - "http_reason_phrase": 1, - "client.error": 1, - "client.reasonPhrase": 1, - "http_response_body": 1, - "client.responseBody": 1, - "http_response_body_size": 1, - "client.responseBodySize": 1, - "http_response_body_progress": 1, - "client.responseBodyProgress": 1, - "http_response_headers": 1, - "client.responseHeaders": 1, - "http_destroy": 1, - "RoomChangeObserver": 1, - "set_little_endian_global": 1, - "file_exists": 5, - "file_delete": 3, - "backupFilename": 5, - "file_find_first": 1, - "file_find_next": 1, - "file_find_close": 1, - "customMapRotationFile": 7, - "restart": 4, - "//import": 1, - "wav": 1, - "files": 1, - "music": 1, - "global.MenuMusic": 3, - "sound_add": 3, - "global.IngameMusic": 3, - "global.FaucetMusic": 3, - "sound_volume": 3, - "global.sendBuffer": 19, - "global.HudCheck": 1, - "global.map_rotation": 19, - "global.CustomMapCollisionSprite": 1, - "window_set_region_scale": 1, - "ini_open": 2, - "global.playerName": 7, - "ini_read_string": 12, - "string_count": 2, - "MAX_PLAYERNAME_LENGTH": 2, - "global.fullscreen": 3, - "ini_read_real": 65, - "global.useLobbyServer": 2, - "global.hostingPort": 2, - "global.music": 2, - "MUSIC_BOTH": 1, - "global.playerLimit": 4, - "//thy": 1, - "playerlimit": 1, - "shalt": 1, - "exceed": 1, - "global.dedicatedMode": 7, - "ini_write_real": 60, - "global.multiClientLimit": 2, - "global.particles": 2, - "PARTICLES_NORMAL": 1, - "global.monitorSync": 3, - "set_synchronization": 2, - "global.medicRadar": 2, - "global.showHealer": 2, - "global.showHealing": 2, - "global.showTeammateStats": 2, - "global.serverPluginsPrompt": 2, - "global.restartPrompt": 2, - "//user": 1, - "HUD": 1, - "settings": 1, - "global.timerPos": 2, - "global.killLogPos": 2, - "global.kothHudPos": 2, - "global.clientPassword": 1, - "global.shuffleRotation": 2, - "global.timeLimitMins": 2, - "max": 2, - "global.serverPassword": 2, - "global.mapRotationFile": 1, - "global.serverName": 2, - "global.welcomeMessage": 2, - "global.caplimit": 3, - "global.caplimitBkup": 1, - "global.autobalance": 2, - "global.Server_RespawntimeSec": 4, - "global.rewardKey": 1, - "unhex": 1, - "global.rewardId": 1, - "global.mapdownloadLimitBps": 2, - "isBetaVersion": 1, - "global.attemptPortForward": 2, - "global.serverPluginList": 3, - "global.serverPluginsRequired": 2, - "CrosshairFilename": 5, - "CrosshairRemoveBG": 4, - "global.queueJumping": 2, - "global.backgroundHash": 2, - "global.backgroundTitle": 2, - "global.backgroundURL": 2, - "global.backgroundShowVersion": 2, - "readClasslimitsFromIni": 1, - "global.currentMapArea": 1, - "global.totalMapAreas": 1, - "global.setupTimer": 1, - "global.serverPluginsInUse": 1, - "global.pluginPacketBuffers": 1, - "global.pluginPacketPlayers": 1, - "ini_write_string": 10, - "ini_key_delete": 1, - "global.classlimits": 10, - "CLASS_SCOUT": 1, - "CLASS_HEAVY": 2, - "CLASS_DEMOMAN": 1, - "CLASS_SPY": 1, - "//screw": 1, - "will": 1, - "start": 1, - "//map_truefort": 1, - "maps": 37, - "//map_2dfort": 1, - "//map_conflict": 1, - "//map_classicwell": 1, - "//map_waterway": 1, - "//map_orange": 1, - "//map_dirtbowl": 1, - "//map_egypt": 1, - "//arena_montane": 1, - "//arena_lumberyard": 1, - "//gen_destroy": 1, - "//koth_valley": 1, - "//koth_corinth": 1, - "//koth_harvest": 1, - "//dkoth_atalia": 1, - "//dkoth_sixties": 1, - "//Server": 1, - "respawn": 1, - "time": 1, - "calculator.": 1, - "Converts": 1, - "frame.": 1, - "read": 1, - "multiply": 1, - "hehe": 1, - "global.Server_Respawntime": 3, - "global.mapchanging": 1, - "ini_close": 2, - "global.protocolUuid": 2, - "parseUuid": 2, - "PROTOCOL_UUID": 1, - "global.gg2lobbyId": 2, - "GG2_LOBBY_UUID": 1, - "initRewards": 1, - "IPRaw": 3, - "portRaw": 3, - "doubleCheck": 8, - "global.launchMap": 5, - "parameter_count": 1, - "parameter_string": 8, - "global.serverPort": 1, - "global.serverIP": 1, - "global.isHost": 1, - "Client": 1, - "global.customMapdesginated": 2, - "fileHandle": 6, - "mapname": 9, - "file_text_open_read": 1, - "file_text_eof": 1, - "file_text_read_string": 1, - "starts": 1, - "tab": 2, - "string_delete": 1, - "delete": 1, - "comment": 1, - "starting": 1, - "file_text_readln": 1, - "file_text_close": 1, - "load": 1, - "ini": 1, - "Maps": 9, - "section": 1, - "//Set": 1, - "rotation": 1, - "sort_list": 7, - "*maps": 1, - "ds_list_sort": 1, - "mod": 1, - "global.gg2Font": 2, - "font_add_sprite": 2, - "gg2FontS": 1, - "global.countFont": 1, - "countFontS": 1, - "draw_set_font": 1, - "cursor_sprite": 1, - "CrosshairS": 5, - "directory_exists": 2, - "directory_create": 2, - "AudioControl": 1, - "SSControl": 1, - "message_background": 1, - "popupBackgroundB": 1, - "message_button": 1, - "popupButtonS": 1, - "message_text_font": 1, - "message_button_font": 1, - "message_input_font": 1, - "//Key": 1, - "Mapping": 1, - "global.jump": 1, - "global.down": 1, - "global.left": 1, - "global.right": 1, - "global.attack": 1, - "MOUSE_LEFT": 1, - "global.special": 1, - "MOUSE_RIGHT": 1, - "global.taunt": 1, - "global.chat1": 1, - "global.chat2": 1, - "global.chat3": 1, - "global.medic": 1, - "global.drop": 1, - "global.changeTeam": 1, - "global.changeClass": 1, - "global.showScores": 1, - "vk_shift": 1, - "calculateMonthAndDay": 1, - "loadplugins": 1, - "registry_set_root": 1, - "HKLM": 1, - "global.NTKernelVersion": 1, - "registry_read_string_ext": 1, - "CurrentVersion": 1, - "SIC": 1, - "sprite_replace": 1, - "sprite_set_offset": 1, - "sprite_get_width": 1, - "/2": 2, - "sprite_get_height": 1, - "AudioControlToggleMute": 1, - "room_goto_fix": 2, - "Menu": 2, - "__jso_gmt_tuple": 1, - "//Position": 1, - "address": 1, - "table": 1, - "pos": 2, - "addr_table": 2, - "*argument_count": 1, - "//Build": 1, - "tuple": 1, - "ca": 1, - "isstr": 1, - "datastr": 1, - "argument_count": 1, - "//Check": 1, - "argument": 10, - "Unexpected": 18, - "position": 16, - "f": 5, - "JSON": 5, - "string.": 5, - "Cannot": 5, - "parse": 3, - "boolean": 3, - "value": 13, - "expecting": 9, - "digit.": 9, - "e": 4, - "E": 4, - "dot": 1, - "an": 24, - "integer": 6, - "Expected": 6, - "least": 6, - "arguments": 26, - "got": 6, - "find": 10, - "lookup.": 4, - "indices": 1, - "nested": 27, - "lists": 6, - "Index": 1, - "overflow": 4, - "Recursive": 1, - "abcdef": 1, - "number": 7, - "num": 1, - "assert_true": 1, - "_assert_error_popup": 2, - "string_repeat": 2, - "_assert_newline": 2, - "assert_false": 1, - "assert_equal": 1, - "//Safe": 1, - "equality": 1, - "check": 1, - "won": 1, - "support": 1, - "instead": 1, - "_assert_debug_value": 1, - "//String": 1, - "os_browser": 1, - "browser_not_a_browser": 1, - "string_replace_all": 1, - "//Numeric": 1, - "GMTuple": 1, - "jso_encode_string": 1, - "encode": 8, - "escape": 2, - "jso_encode_map": 4, - "one": 42, - "key1": 3, - "key2": 3, - "multi": 7, - "jso_encode_list": 3, - "three": 36, - "_jso_decode_string": 5, - "small": 1, - "quick": 2, - "brown": 2, - "fox": 2, - "over": 2, - "lazy": 2, - "dog.": 2, - "simple": 1, - "Waahoo": 1, - "negg": 1, - "mixed": 1, - "_jso_decode_boolean": 2, - "_jso_decode_real": 11, - "standard": 1, - "zero": 4, - "signed": 2, - "decimal": 1, - "digits": 1, - "positive": 7, - "negative": 7, - "exponent": 4, - "_jso_decode_integer": 3, - "_jso_decode_map": 14, - "didn": 14, - "include": 14, - "right": 14, - "prefix": 14, - "#1": 14, - "#2": 14, - "entry": 29, - "pi": 2, - "bool": 2, - "waahoo": 10, - "woohah": 8, - "mix": 4, - "_jso_decode_list": 14, - "woo": 2, - "Empty": 4, - "equal": 20, - "other.": 12, - "junk": 2, - "info": 1, - "taxi": 1, - "An": 4, - "filled": 4, - "map.": 2, - "A": 24, - "B": 18, - "C": 8, - "same": 6, - "content": 4, - "entered": 4, - "different": 12, - "orders": 4, - "D": 1, - "keys": 2, - "values": 4, - "six": 1, - "corresponding": 4, - "types": 4, - "other": 4, - "crash.": 4, - "list.": 2, - "Lists": 4, - "two": 16, - "entries": 2, - "also": 2, - "jso_map_check": 9, - "existing": 9, - "single": 11, - "jso_map_lookup": 3, - "wrong": 10, - "trap": 2, - "jso_map_lookup_type": 3, - "type": 8, - "four": 21, - "inexistent": 11, - "multiple": 20, - "jso_list_check": 8, - "jso_list_lookup": 3, - "jso_list_lookup_type": 3, - "inner": 1, - "indexing": 1, - "bad": 1, - "jso_cleanup_map": 1, - "one_map": 1, - "hashList": 5, - "pluginname": 9, - "pluginhash": 4, - "realhash": 1, - "handle": 1, - "filesize": 1, - "progress": 1, - "tempfile": 1, - "tempdir": 1, - "lastContact": 2, - "isCached": 2, - "isDebug": 2, - "split": 1, - "checkpluginname": 1, - "ds_list_find_index": 1, - ".zip": 3, - "ServerPluginsCache": 6, - "@": 5, - ".zip.tmp": 1, - ".tmp": 2, - "ServerPluginsDebug": 1, - "Warning": 2, - "being": 2, - "loaded": 2, - "ServerPluginsDebug.": 2, - "Make": 2, - "sure": 2, - "clients": 1, - "they": 1, - "may": 2, - "unable": 2, - "connect.": 2, - "you": 1, - "Downloading": 1, - "last_plugin.log": 2, - "plugin.gml": 1, - "playerId": 11, - "commandLimitRemaining": 4, - "variable_local_exists": 4, - "commandReceiveState": 1, - "commandReceiveExpectedBytes": 1, - "commandReceiveCommand": 1, - "player.socket": 12, - "player.commandReceiveExpectedBytes": 7, - "player.commandReceiveState": 7, - "player.commandReceiveCommand": 4, - "commandBytes": 2, - "commandBytesInvalidCommand": 1, - "commandBytesPrefixLength1": 1, - "commandBytesPrefixLength2": 1, - "default": 1, - "read_ushort": 2, - "PLAYER_LEAVE": 1, - "PLAYER_CHANGECLASS": 1, - "class": 8, - "getCharacterObject": 2, - "player.object": 12, - "SpawnRoom": 2, - "lastDamageDealer": 8, - "sendEventPlayerDeath": 4, - "BID_FAREWELL": 4, - "doEventPlayerDeath": 4, - "secondToLastDamageDealer": 2, - "lastDamageDealer.object": 2, - "lastDamageDealer.object.healer": 4, - "player.alarm": 4, - "<=0)>": 1, - "checkClasslimits": 2, - "ServerPlayerChangeclass": 2, - "sendBuffer": 1, - "PLAYER_CHANGETEAM": 1, - "newTeam": 7, - "balance": 5, - "redSuperiority": 6, - "calculate": 1, - "which": 1, - "Player": 1, - "TEAM_SPECTATOR": 1, - "newClass": 4, - "ServerPlayerChangeteam": 1, - "ServerBalanceTeams": 1, - "CHAT_BUBBLE": 2, - "bubbleImage": 5, - "global.aFirst": 1, - "write_ubyte": 20, - "setChatBubble": 1, - "BUILD_SENTRY": 2, - "collision_circle": 1, - "player.object.x": 3, - "player.object.y": 3, - "Sentry": 1, - "player.object.nutsNBolts": 1, - "player.sentry": 2, - "player.object.onCabinet": 1, - "write_ushort": 2, - "global.serializeBuffer": 3, - "player.object.x*5": 1, - "player.object.y*5": 1, - "write_byte": 1, - "player.object.image_xscale": 2, - "buildSentry": 1, - "DESTROY_SENTRY": 1, - "DROP_INTEL": 1, - "player.object.intel": 1, - "sendEventDropIntel": 1, - "doEventDropIntel": 1, - "OMNOMNOMNOM": 2, - "player.humiliated": 1, - "player.object.taunting": 1, - "player.object.omnomnomnom": 1, - "player.object.canEat": 1, - "omnomnomnomend": 2, - "xscale": 1, - "TOGGLE_ZOOM": 2, - "toggleZoom": 1, - "PLAYER_CHANGENAME": 2, - "nameLength": 4, - "socket_receivebuffer_size": 3, - "KICK": 2, - "KICK_NAME": 1, - "current_time": 2, - "lastNamechange": 2, - "INPUTSTATE": 1, - "keyState": 1, - "netAimDirection": 1, - "aimDirection": 1, - "netAimDirection*360/65536": 1, - "event_user": 1, - "REWARD_REQUEST": 1, - "player.rewardId": 1, - "player.challenge": 2, - "rewardCreateChallenge": 1, - "REWARD_CHALLENGE_CODE": 1, - "write_binstring": 1, - "REWARD_CHALLENGE_RESPONSE": 1, - "answer": 3, - "authbuffer": 1, - "read_binstring": 1, - "rewardAuthStart": 1, - "challenge": 1, - "rewardId": 1, - "PLUGIN_PACKET": 1, - "packetID": 3, - "buf": 5, - "success": 3, - "_PluginPacketPush": 1, - "KICK_BAD_PLUGIN_PACKET": 1, - "CLIENT_SETTINGS": 2, - "mirror": 4, - "player.queueJump": 1, - "global.levelType": 22, - "//global.currLevel": 1, - "global.currLevel": 22, - "global.hadDarkLevel": 4, - "global.startRoomX": 1, - "global.startRoomY": 1, - "global.endRoomX": 1, - "global.endRoomY": 1, - "oGame.levelGen": 2, - "j": 14, - "global.roomPath": 1, - "k": 5, - "global.lake": 3, - "isLevel": 1, - "999": 2, - "levelType": 2, - "16": 14, - "656": 3, - "oDark": 2, - "invincible": 2, - "sDark": 1, - "oTemple": 2, - "cityOfGold": 1, - "sTemple": 2, - "lake": 1, - "i*16": 8, - "j*16": 6, - "oLush": 2, - "obj.sprite_index": 4, - "sLush": 2, - "obj.invincible": 3, - "oBrick": 1, - "sBrick": 1, - "global.cityOfGold": 2, - "*16": 2, - "//instance_create": 2, - "oSpikes": 1, - "background_index": 1, - "bgTemple": 1, - "global.temp1": 1, - "global.gameStart": 3, - "scrLevelGen": 1, - "global.cemetary": 3, - "rand": 10, - "global.probCemetary": 1, - "oRoom": 1, - "scrRoomGen": 1, - "global.blackMarket": 3, - "scrRoomGenMarket": 1, - "scrRoomGen2": 1, - "global.yetiLair": 2, - "scrRoomGenYeti": 1, - "scrRoomGen3": 1, - "scrRoomGen4": 1, - "scrRoomGen5": 1, - "global.darkLevel": 4, - "global.noDarkLevel": 1, - "global.probDarkLevel": 1, - "oPlayer1.x": 2, - "oPlayer1.y": 2, - "oFlare": 1, - "global.genUdjatEye": 4, - "global.madeUdjatEye": 1, - "global.genMarketEntrance": 4, - "global.madeMarketEntrance": 1, - "////////////////////////////": 2, - "global.temp2": 1, - "isRoom": 3, - "scrEntityGen": 1, - "oEntrance": 1, - "global.customLevel": 1, - "oEntrance.x": 1, - "oEntrance.y": 1, - "global.snakePit": 1, - "global.alienCraft": 1, - "global.sacrificePit": 1, - "oPlayer1": 1, - "scrSetupWalls": 3, - "global.graphicsHigh": 1, - "tile_add": 4, - "bgExtrasLush": 1, - "*rand": 12, - "bgExtrasIce": 1, - "bgExtrasTemple": 1, - "bgExtras": 1, - "global.murderer": 1, - "global.thiefLevel": 1, - "isRealLevel": 1, - "oExit": 1, - "oShopkeeper": 1, - "obj.status": 1, - "oTreasure": 1, - "oWater": 1, - "sWaterTop": 1, - "sLavaTop": 1, - "scrCheckWaterTop": 1, - "global.temp3": 1 - }, "GAMS": { "*Basic": 1, "example": 2, @@ -25784,6 +24069,1541 @@ "gl_FragColor.rgba": 1, "sampled.rgb": 1 }, + "Game Maker Language": { + "//draws": 1, + "the": 62, + "sprite": 12, + "draw": 3, + "true": 73, + ";": 1282, + "if": 397, + "(": 1501, + "facing": 17, + "RIGHT": 10, + ")": 1502, + "image_xscale": 17, + "-": 212, + "else": 151, + "blinkToggle": 1, + "{": 300, + "state": 50, + "CLIMBING": 5, + "or": 78, + "sprite_index": 14, + "sPExit": 1, + "sDamselExit": 1, + "sTunnelExit": 1, + "and": 155, + "global.hasJetpack": 4, + "not": 63, + "whipping": 5, + "draw_sprite_ext": 10, + "x": 76, + "y": 85, + "image_yscale": 14, + "image_angle": 14, + "image_blend": 2, + "image_alpha": 10, + "//draw_sprite": 1, + "draw_sprite": 9, + "sJetpackBack": 1, + "false": 85, + "}": 307, + "sJetpackRight": 1, + "sJetpackLeft": 1, + "+": 206, + "redColor": 2, + "make_color_rgb": 1, + "holdArrow": 4, + "ARROW_NORM": 2, + "sArrowRight": 1, + "ARROW_BOMB": 2, + "holdArrowToggle": 2, + "sBombArrowRight": 2, + "LEFT": 7, + "sArrowLeft": 1, + "sBombArrowLeft": 2, + "hangCountMax": 2, + "//////////////////////////////////////": 2, + "kLeft": 12, + "checkLeft": 1, + "kLeftPushedSteps": 3, + "kLeftPressed": 2, + "checkLeftPressed": 1, + "kLeftReleased": 3, + "checkLeftReleased": 1, + "kRight": 12, + "checkRight": 1, + "kRightPushedSteps": 3, + "kRightPressed": 2, + "checkRightPressed": 1, + "kRightReleased": 3, + "checkRightReleased": 1, + "kUp": 5, + "checkUp": 1, + "kDown": 5, + "checkDown": 1, + "//key": 1, + "canRun": 1, + "kRun": 2, + "kJump": 6, + "checkJump": 1, + "kJumpPressed": 11, + "checkJumpPressed": 1, + "kJumpReleased": 5, + "checkJumpReleased": 1, + "cantJump": 3, + "global.isTunnelMan": 1, + "sTunnelAttackL": 1, + "holdItem": 1, + "kAttack": 2, + "checkAttack": 2, + "kAttackPressed": 2, + "checkAttackPressed": 1, + "kAttackReleased": 2, + "checkAttackReleased": 1, + "kItemPressed": 2, + "checkItemPressed": 1, + "xPrev": 1, + "yPrev": 1, + "stunned": 3, + "dead": 3, + "//////////////////////////////////////////": 2, + "colSolidLeft": 4, + "colSolidRight": 3, + "colLeft": 6, + "colRight": 6, + "colTop": 4, + "colBot": 11, + "colLadder": 3, + "colPlatBot": 6, + "colPlat": 5, + "colWaterTop": 3, + "colIceBot": 2, + "runKey": 4, + "isCollisionMoveableSolidLeft": 1, + "isCollisionMoveableSolidRight": 1, + "isCollisionLeft": 2, + "isCollisionRight": 2, + "isCollisionTop": 1, + "isCollisionBottom": 1, + "isCollisionLadder": 1, + "isCollisionPlatformBottom": 1, + "isCollisionPlatform": 1, + "isCollisionWaterTop": 1, + "collision_point": 30, + "oIce": 1, + "checkRun": 1, + "runHeld": 3, + "HANGING": 10, + "approximatelyZero": 4, + "xVel": 24, + "xAcc": 12, + "platformCharacterIs": 23, + "ON_GROUND": 18, + "DUCKING": 4, + "pushTimer": 3, + "//if": 5, + "SS_IsSoundPlaying": 2, + "global.sndPush": 4, + "playSound": 3, + "runAcc": 2, + "abs": 9, + "alarm": 13, + "[": 99, + "]": 103, + "<": 39, + "floor": 11, + "/": 5, + "/xVel": 1, + "instance_exists": 8, + "oCape": 2, + "oCape.open": 6, + "kJumped": 7, + "ladderTimer": 4, + "ladder": 5, + "oLadder": 4, + "ladder.x": 3, + "oLadderTop": 2, + "yAcc": 26, + "climbAcc": 2, + "FALLING": 8, + "STANDING": 2, + "departLadderXVel": 2, + "departLadderYVel": 1, + "JUMPING": 6, + "jumpButtonReleased": 7, + "jumpTime": 8, + "IN_AIR": 5, + "gravityIntensity": 2, + "yVel": 20, + "RUNNING": 3, + "jumps": 3, + "//playSound": 1, + "global.sndLand": 1, + "grav": 22, + "global.hasGloves": 3, + "hangCount": 14, + "*": 18, + "yVel*0.3": 1, + "oWeb": 2, + "obj": 14, + "instance_place": 3, + "obj.life": 1, + "initialJumpAcc": 6, + "xVel/2": 3, + "gravNorm": 7, + "global.hasCape": 1, + "jetpackFuel": 2, + "fallTimer": 2, + "global.hasJordans": 1, + "yAccLimit": 2, + "global.hasSpringShoes": 1, + "global.sndJump": 1, + "jumpTimeTotal": 2, + "//let": 1, + "character": 20, + "continue": 4, + "to": 62, + "jump": 1, + "jumpTime/jumpTimeTotal": 1, + "looking": 2, + "UP": 1, + "LOOKING_UP": 4, + "oSolid": 14, + "move_snap": 6, + "oTree": 4, + "oArrow": 5, + "instance_nearest": 1, + "obj.stuck": 1, + "//the": 2, + "can": 1, + "t": 23, + "want": 1, + "use": 4, + "because": 2, + "is": 9, + "too": 2, + "high": 1, + "yPrevHigh": 1, + "//": 11, + "we": 5, + "ll": 1, + "move": 2, + "correct": 1, + "distance": 1, + "but": 2, + "need": 1, + "shorten": 1, + "out": 4, + "a": 55, + "little": 1, + "ratio": 1, + "xVelInteger": 2, + "/dist*0.9": 1, + "//can": 1, + "be": 4, + "changed": 1, + "moveTo": 2, + "round": 6, + "xVelInteger*ratio": 1, + "yVelInteger*ratio": 1, + "slopeChangeInY": 1, + "maxDownSlope": 1, + "floating": 1, + "just": 1, + "above": 1, + "slope": 1, + "so": 2, + "down": 1, + "upYPrev": 1, + "for": 26, + "<=upYPrev+maxDownSlope;y+=1)>": 1, + "hit": 1, + "solid": 1, + "below": 1, + "upYPrev=": 1, + "I": 1, + "know": 1, + "that": 2, + "this": 2, + "doesn": 1, + "seem": 1, + "make": 1, + "sense": 1, + "of": 25, + "name": 9, + "variable": 1, + "it": 6, + "all": 3, + "works": 1, + "correctly": 1, + "after": 1, + "break": 58, + "loop": 1, + "y=": 1, + "figures": 1, + "what": 1, + "index": 11, + "should": 25, + "characterSprite": 1, + "sets": 1, + "previous": 2, + "previously": 1, + "statePrevPrev": 1, + "statePrev": 2, + "calculates": 1, + "image_speed": 9, + "based": 1, + "on": 4, + "s": 6, + "velocity": 1, + "runAnimSpeed": 1, + "0": 21, + "1": 32, + "sqrt": 1, + "sqr": 2, + "climbAnimSpeed": 1, + "<=>": 3, + "4": 2, + "setCollisionBounds": 3, + "8": 9, + "5": 5, + "DUCKTOHANG": 1, + "image_index": 1, + "limit": 5, + "at": 23, + "animation": 1, + "always": 1, + "looks": 1, + "good": 1, + "var": 79, + "i": 95, + "playerObject": 1, + "playerID": 1, + "player": 36, + "otherPlayerID": 1, + "otherPlayer": 1, + "sameVersion": 1, + "buffer": 1, + "plugins": 4, + "pluginsRequired": 2, + "usePlugins": 1, + "tcp_eof": 3, + "global.serverSocket": 10, + "gotServerHello": 2, + "show_message": 7, + "instance_destroy": 7, + "exit": 10, + "room": 1, + "DownloadRoom": 1, + "keyboard_check": 1, + "vk_escape": 1, + "downloadingMap": 2, + "while": 15, + "tcp_receive": 3, + "min": 4, + "downloadMapBytes": 2, + "buffer_size": 2, + "downloadMapBuffer": 6, + "write_buffer": 2, + "write_buffer_to_file": 1, + "downloadMapName": 3, + "buffer_destroy": 8, + "roomchange": 2, + "do": 1, + "switch": 9, + "read_ubyte": 10, + "case": 50, + "HELLO": 1, + "global.joinedServerName": 2, + "receivestring": 4, + "advertisedMapMd5": 1, + "receiveCompleteMessage": 1, + "global.tempBuffer": 3, + "string_pos": 20, + "Server": 3, + "sent": 7, + "illegal": 2, + "map": 47, + "This": 2, + "server": 10, + "requires": 1, + "following": 2, + "play": 2, + "#": 3, + "suggests": 1, + "optional": 1, + "Error": 2, + "ocurred": 1, + "loading": 1, + "plugins.": 1, + "Maps/": 2, + ".png": 2, + "The": 6, + "version": 4, + "Enter": 1, + "Password": 1, + "Incorrect": 1, + "Password.": 1, + "Incompatible": 1, + "protocol": 3, + "version.": 1, + "Name": 1, + "Exploit": 1, + "Invalid": 2, + "plugin": 6, + "packet": 3, + "ID": 2, + "There": 1, + "are": 1, + "many": 1, + "connections": 1, + "from": 5, + "your": 1, + "IP": 1, + "You": 1, + "have": 2, + "been": 1, + "kicked": 1, + "server.": 1, + ".": 12, + "#Server": 1, + "went": 1, + "invalid": 1, + "internal": 1, + "#Exiting.": 1, + "full.": 1, + "noone": 7, + "ERROR": 1, + "when": 1, + "reading": 1, + "no": 1, + "such": 1, + "unexpected": 1, + "data.": 1, + "until": 1, + "downloadHandle": 3, + "url": 62, + "tmpfile": 3, + "window_oldshowborder": 2, + "window_oldfullscreen": 2, + "timeLeft": 1, + "counter": 1, + "AudioControlPlaySong": 1, + "window_get_showborder": 1, + "window_get_fullscreen": 1, + "window_set_fullscreen": 2, + "window_set_showborder": 1, + "global.updaterBetaChannel": 3, + "UPDATE_SOURCE_BETA": 1, + "UPDATE_SOURCE": 1, + "temp_directory": 1, + "httpGet": 1, + "httpRequestStatus": 1, + "download": 1, + "isn": 1, + "extract": 1, + "downloaded": 1, + "file": 2, + "now.": 1, + "extractzip": 1, + "working_directory": 6, + "execute_program": 1, + "game_end": 1, + "victim": 10, + "killer": 11, + "assistant": 16, + "damageSource": 18, + "argument0": 28, + "argument1": 10, + "argument2": 3, + "argument3": 1, + "//*************************************": 6, + "//*": 3, + "Scoring": 1, + "Kill": 1, + "log": 1, + "recordKillInLog": 1, + "victim.stats": 1, + "DEATHS": 1, + "WEAPON_KNIFE": 1, + "||": 16, + "WEAPON_BACKSTAB": 1, + "killer.stats": 8, + "STABS": 2, + "killer.roundStats": 8, + "POINTS": 10, + "victim.object.currentWeapon.object_index": 1, + "Medigun": 2, + "victim.object.currentWeapon.uberReady": 1, + "BONUS": 2, + "KILLS": 2, + "victim.object.intel": 1, + "DEFENSES": 2, + "recordEventInLog": 1, + "killer.team": 1, + "killer.name": 2, + "global.myself": 4, + "assistant.stats": 2, + "ASSISTS": 2, + "assistant.roundStats": 2, + ".5": 2, + "//SPEC": 1, + "instance_create": 20, + "victim.object.x": 3, + "victim.object.y": 3, + "Spectator": 1, + "Gibbing": 2, + "xoffset": 5, + "yoffset": 5, + "xsize": 3, + "ysize": 3, + "view_xview": 3, + "view_yview": 3, + "view_wview": 2, + "view_hview": 2, + "randomize": 1, + "with": 47, + "victim.object": 2, + "WEAPON_ROCKETLAUNCHER": 1, + "WEAPON_MINEGUN": 1, + "FRAG_BOX": 2, + "WEAPON_REFLECTED_STICKY": 1, + "WEAPON_REFLECTED_ROCKET": 1, + "FINISHED_OFF_GIB": 2, + "GENERATOR_EXPLOSION": 2, + "player.class": 15, + "CLASS_QUOTE": 3, + "global.gibLevel": 14, + "distance_to_point": 3, + "xsize/2": 2, + "ysize/2": 2, + "hasReward": 4, + "repeat": 7, + "createGib": 14, + "PumpkinGib": 1, + "hspeed": 14, + "vspeed": 13, + "random": 21, + "choose": 8, + "Gib": 1, + "player.team": 8, + "TEAM_BLUE": 6, + "BlueClump": 1, + "TEAM_RED": 8, + "RedClump": 1, + "blood": 2, + "BloodDrop": 1, + "blood.hspeed": 1, + "blood.vspeed": 1, + "blood.sprite_index": 1, + "PumpkinJuiceS": 1, + "//All": 1, + "Classes": 1, + "gib": 1, + "head": 1, + "hands": 2, + "feet": 1, + "Headgib": 1, + "//Medic": 1, + "has": 2, + "specially": 1, + "colored": 1, + "CLASS_MEDIC": 2, + "Hand": 3, + "Feet": 1, + "//Class": 1, + "specific": 1, + "gibs": 1, + "CLASS_PYRO": 2, + "Accesory": 5, + "CLASS_SOLDIER": 2, + "CLASS_ENGINEER": 3, + "CLASS_SNIPER": 3, + "playsound": 2, + "deadbody": 2, + "DeathSnd1": 1, + "DeathSnd2": 1, + "DeadGuy": 1, + "deadbody.sprite_index": 2, + "haxxyStatue": 1, + "deadbody.image_index": 2, + "CHARACTER_ANIMATION_DEAD": 1, + "deadbody.hspeed": 1, + "deadbody.vspeed": 1, + "deadbody.image_xscale": 1, + "global.gg_birthday": 1, + "myHat": 2, + "PartyHat": 1, + "myHat.image_index": 2, + "victim.team": 2, + "global.xmas": 1, + "XmasHat": 1, + "Deathcam": 1, + "global.killCam": 3, + "KILL_BOX": 1, + "FINISHED_OFF": 5, + "DeathCam": 1, + "DeathCam.killedby": 1, + "DeathCam.name": 1, + "DeathCam.oldxview": 1, + "DeathCam.oldyview": 1, + "DeathCam.lastDamageSource": 1, + "DeathCam.team": 1, + "global.myself.team": 3, + "xr": 19, + "yr": 19, + "cloakAlpha": 1, + "team": 13, + "canCloak": 1, + "cloakAlpha/2": 1, + "invisible": 1, + "stabbing": 2, + "power": 1, + "currentWeapon.stab.alpha": 1, + "&&": 6, + "global.showHealthBar": 3, + "draw_set_alpha": 3, + "draw_healthbar": 1, + "hp*100/maxHp": 1, + "c_black": 1, + "c_red": 3, + "c_green": 1, + "mouse_x": 1, + "mouse_y": 1, + "<25)>": 1, + "cloak": 2, + "global": 8, + "myself": 2, + "draw_set_halign": 1, + "fa_center": 1, + "draw_set_valign": 1, + "fa_bottom": 1, + "team=": 1, + "draw_set_color": 2, + "c_blue": 2, + "draw_text": 4, + "35": 1, + "showTeammateStats": 1, + "weapons": 3, + "50": 3, + "Superburst": 1, + "string": 13, + "currentWeapon": 2, + "uberCharge": 1, + "20": 1, + "Shotgun": 1, + "Nuts": 1, + "N": 1, + "Bolts": 1, + "nutsNBolts": 1, + "Minegun": 1, + "Lobbed": 1, + "Mines": 1, + "lobbed": 1, + "ubercolour": 6, + "overlaySprite": 6, + "zoomed": 1, + "SniperCrouchRedS": 1, + "SniperCrouchBlueS": 1, + "sniperCrouchOverlay": 1, + "overlay": 1, + "omnomnomnom": 2, + "draw_sprite_ext_overlay": 7, + "omnomnomnomSprite": 2, + "omnomnomnomOverlay": 2, + "omnomnomnomindex": 4, + "c_white": 13, + "ubered": 7, + "7": 4, + "taunting": 2, + "tauntsprite": 2, + "tauntOverlay": 2, + "tauntindex": 2, + "humiliated": 1, + "humiliationPoses": 1, + "animationImage": 9, + "humiliationOffset": 1, + "animationOffset": 6, + "burnDuration": 2, + "burnIntensity": 2, + "numFlames": 1, + "maxIntensity": 1, + "FlameS": 1, + "flameArray_x": 1, + "flameArray_y": 1, + "maxDuration": 1, + "demon": 4, + "demonX": 5, + "median": 2, + "demonY": 4, + "demonOffset": 4, + "demonDir": 2, + "dir": 3, + "demonFrame": 5, + "sprite_get_number": 1, + "*player.team": 2, + "dir*1": 2, + "#define": 26, + "__http_init": 3, + "global.__HttpClient": 4, + "object_add": 1, + "object_set_persistent": 1, + "__http_split": 3, + "text": 19, + "delimeter": 7, + "list": 36, + "count": 4, + "ds_list_create": 5, + "ds_list_add": 23, + "string_copy": 32, + "string_length": 25, + "return": 56, + "__http_parse_url": 4, + "ds_map_create": 4, + "ds_map_add": 15, + "colonPos": 22, + "string_char_at": 13, + "slashPos": 13, + "real": 14, + "queryPos": 12, + "ds_map_destroy": 6, + "__http_resolve_url": 2, + "baseUrl": 3, + "refUrl": 18, + "urlParts": 15, + "refUrlParts": 5, + "canParseRefUrl": 3, + "result": 11, + "ds_map_find_value": 22, + "__http_resolve_path": 3, + "ds_map_replace": 3, + "ds_map_exists": 11, + "ds_map_delete": 1, + "path": 10, + "query": 4, + "relUrl": 1, + "__http_construct_url": 2, + "basePath": 4, + "refPath": 7, + "parts": 29, + "refParts": 5, + "lastPart": 3, + "ds_list_find_value": 9, + "ds_list_size": 11, + "ds_list_delete": 5, + "ds_list_destroy": 4, + "part": 6, + "ds_list_replace": 3, + "__http_parse_hex": 2, + "hexString": 4, + "hexValues": 3, + "digit": 4, + "__http_prepare_request": 4, + "client": 33, + "headers": 11, + "parsed": 18, + "show_error": 2, + "destroyed": 3, + "CR": 10, + "chr": 3, + "LF": 5, + "CRLF": 17, + "socket": 40, + "tcp_connect": 1, + "errored": 19, + "error": 18, + "linebuf": 33, + "line": 19, + "statusCode": 6, + "reasonPhrase": 2, + "responseBody": 19, + "buffer_create": 7, + "responseBodySize": 5, + "responseBodyProgress": 5, + "responseHeaders": 9, + "requestUrl": 2, + "requestHeaders": 2, + "write_string": 9, + "key": 17, + "ds_map_find_first": 1, + "is_string": 2, + "ds_map_find_next": 1, + "socket_send": 1, + "__http_parse_header": 3, + "ord": 16, + "headerValue": 9, + "string_lower": 3, + "headerName": 4, + "__http_client_step": 2, + "socket_has_error": 1, + "socket_error": 1, + "__http_client_destroy": 20, + "available": 7, + "tcp_receive_available": 1, + "bytesRead": 6, + "c": 20, + "read_string": 9, + "Reached": 2, + "end": 11, + "HTTP": 1, + "defines": 1, + "sequence": 2, + "as": 1, + "marker": 1, + "elements": 1, + "except": 2, + "entity": 1, + "body": 2, + "see": 1, + "appendix": 1, + "19": 1, + "3": 1, + "tolerant": 1, + "applications": 1, + "Strip": 1, + "trailing": 1, + "First": 1, + "status": 2, + "code": 2, + "first": 3, + "Response": 1, + "message": 1, + "Status": 1, + "Line": 1, + "consisting": 1, + "followed": 1, + "by": 5, + "numeric": 1, + "its": 1, + "associated": 1, + "textual": 1, + "phrase": 1, + "each": 18, + "element": 8, + "separated": 1, + "SP": 1, + "characters": 3, + "No": 3, + "allowed": 1, + "in": 21, + "final": 1, + "httpVer": 2, + "spacePos": 11, + "space": 4, + "response": 5, + "second": 2, + "Other": 1, + "Blank": 1, + "write": 1, + "remainder": 1, + "write_buffer_part": 3, + "Header": 1, + "Receiving": 1, + "transfer": 6, + "encoding": 2, + "chunked": 4, + "Chunked": 1, + "let": 1, + "decode": 36, + "actualResponseBody": 8, + "actualResponseSize": 1, + "actualResponseBodySize": 3, + "Parse": 1, + "chunks": 1, + "chunk": 12, + "size": 7, + "extension": 3, + "data": 4, + "HEX": 1, + "buffer_bytes_left": 6, + "chunkSize": 11, + "Read": 1, + "byte": 2, + "We": 1, + "found": 21, + "semicolon": 1, + "beginning": 1, + "skip": 1, + "stuff": 2, + "header": 2, + "Doesn": 1, + "did": 1, + "empty": 13, + "something": 1, + "up": 6, + "Parsing": 1, + "failed": 56, + "hex": 2, + "was": 1, + "hexadecimal": 1, + "Is": 1, + "bigger": 2, + "than": 1, + "remaining": 1, + "2": 2, + "responseHaders": 1, + "location": 4, + "resolved": 5, + "socket_destroy": 4, + "http_new_get": 1, + "variable_global_exists": 2, + "http_new_get_ex": 1, + "http_step": 1, + "client.errored": 3, + "client.state": 3, + "http_status_code": 1, + "client.statusCode": 1, + "http_reason_phrase": 1, + "client.error": 1, + "client.reasonPhrase": 1, + "http_response_body": 1, + "client.responseBody": 1, + "http_response_body_size": 1, + "client.responseBodySize": 1, + "http_response_body_progress": 1, + "client.responseBodyProgress": 1, + "http_response_headers": 1, + "client.responseHeaders": 1, + "http_destroy": 1, + "RoomChangeObserver": 1, + "set_little_endian_global": 1, + "file_exists": 5, + "file_delete": 3, + "backupFilename": 5, + "file_find_first": 1, + "file_find_next": 1, + "file_find_close": 1, + "customMapRotationFile": 7, + "restart": 4, + "//import": 1, + "wav": 1, + "files": 1, + "music": 1, + "global.MenuMusic": 3, + "sound_add": 3, + "global.IngameMusic": 3, + "global.FaucetMusic": 3, + "sound_volume": 3, + "global.sendBuffer": 19, + "global.HudCheck": 1, + "global.map_rotation": 19, + "global.CustomMapCollisionSprite": 1, + "window_set_region_scale": 1, + "ini_open": 2, + "global.playerName": 7, + "ini_read_string": 12, + "string_count": 2, + "MAX_PLAYERNAME_LENGTH": 2, + "global.fullscreen": 3, + "ini_read_real": 65, + "global.useLobbyServer": 2, + "global.hostingPort": 2, + "global.music": 2, + "MUSIC_BOTH": 1, + "global.playerLimit": 4, + "//thy": 1, + "playerlimit": 1, + "shalt": 1, + "exceed": 1, + "global.dedicatedMode": 7, + "ini_write_real": 60, + "global.multiClientLimit": 2, + "global.particles": 2, + "PARTICLES_NORMAL": 1, + "global.monitorSync": 3, + "set_synchronization": 2, + "global.medicRadar": 2, + "global.showHealer": 2, + "global.showHealing": 2, + "global.showTeammateStats": 2, + "global.serverPluginsPrompt": 2, + "global.restartPrompt": 2, + "//user": 1, + "HUD": 1, + "settings": 1, + "global.timerPos": 2, + "global.killLogPos": 2, + "global.kothHudPos": 2, + "global.clientPassword": 1, + "global.shuffleRotation": 2, + "global.timeLimitMins": 2, + "max": 2, + "global.serverPassword": 2, + "global.mapRotationFile": 1, + "global.serverName": 2, + "global.welcomeMessage": 2, + "global.caplimit": 3, + "global.caplimitBkup": 1, + "global.autobalance": 2, + "global.Server_RespawntimeSec": 4, + "global.rewardKey": 1, + "unhex": 1, + "global.rewardId": 1, + "global.mapdownloadLimitBps": 2, + "isBetaVersion": 1, + "global.attemptPortForward": 2, + "global.serverPluginList": 3, + "global.serverPluginsRequired": 2, + "CrosshairFilename": 5, + "CrosshairRemoveBG": 4, + "global.queueJumping": 2, + "global.backgroundHash": 2, + "global.backgroundTitle": 2, + "global.backgroundURL": 2, + "global.backgroundShowVersion": 2, + "readClasslimitsFromIni": 1, + "global.currentMapArea": 1, + "global.totalMapAreas": 1, + "global.setupTimer": 1, + "global.serverPluginsInUse": 1, + "global.pluginPacketBuffers": 1, + "global.pluginPacketPlayers": 1, + "ini_write_string": 10, + "ini_key_delete": 1, + "global.classlimits": 10, + "CLASS_SCOUT": 1, + "CLASS_HEAVY": 2, + "CLASS_DEMOMAN": 1, + "CLASS_SPY": 1, + "//screw": 1, + "will": 1, + "start": 1, + "//map_truefort": 1, + "maps": 37, + "//map_2dfort": 1, + "//map_conflict": 1, + "//map_classicwell": 1, + "//map_waterway": 1, + "//map_orange": 1, + "//map_dirtbowl": 1, + "//map_egypt": 1, + "//arena_montane": 1, + "//arena_lumberyard": 1, + "//gen_destroy": 1, + "//koth_valley": 1, + "//koth_corinth": 1, + "//koth_harvest": 1, + "//dkoth_atalia": 1, + "//dkoth_sixties": 1, + "//Server": 1, + "respawn": 1, + "time": 1, + "calculator.": 1, + "Converts": 1, + "frame.": 1, + "read": 1, + "multiply": 1, + "hehe": 1, + "global.Server_Respawntime": 3, + "global.mapchanging": 1, + "ini_close": 2, + "global.protocolUuid": 2, + "parseUuid": 2, + "PROTOCOL_UUID": 1, + "global.gg2lobbyId": 2, + "GG2_LOBBY_UUID": 1, + "initRewards": 1, + "IPRaw": 3, + "portRaw": 3, + "doubleCheck": 8, + "global.launchMap": 5, + "parameter_count": 1, + "parameter_string": 8, + "global.serverPort": 1, + "global.serverIP": 1, + "global.isHost": 1, + "Client": 1, + "global.customMapdesginated": 2, + "fileHandle": 6, + "mapname": 9, + "file_text_open_read": 1, + "file_text_eof": 1, + "file_text_read_string": 1, + "starts": 1, + "tab": 2, + "string_delete": 1, + "delete": 1, + "comment": 1, + "starting": 1, + "file_text_readln": 1, + "file_text_close": 1, + "load": 1, + "ini": 1, + "Maps": 9, + "section": 1, + "//Set": 1, + "rotation": 1, + "sort_list": 7, + "*maps": 1, + "ds_list_sort": 1, + "mod": 1, + "global.gg2Font": 2, + "font_add_sprite": 2, + "gg2FontS": 1, + "global.countFont": 1, + "countFontS": 1, + "draw_set_font": 1, + "cursor_sprite": 1, + "CrosshairS": 5, + "directory_exists": 2, + "directory_create": 2, + "AudioControl": 1, + "SSControl": 1, + "message_background": 1, + "popupBackgroundB": 1, + "message_button": 1, + "popupButtonS": 1, + "message_text_font": 1, + "message_button_font": 1, + "message_input_font": 1, + "//Key": 1, + "Mapping": 1, + "global.jump": 1, + "global.down": 1, + "global.left": 1, + "global.right": 1, + "global.attack": 1, + "MOUSE_LEFT": 1, + "global.special": 1, + "MOUSE_RIGHT": 1, + "global.taunt": 1, + "global.chat1": 1, + "global.chat2": 1, + "global.chat3": 1, + "global.medic": 1, + "global.drop": 1, + "global.changeTeam": 1, + "global.changeClass": 1, + "global.showScores": 1, + "vk_shift": 1, + "calculateMonthAndDay": 1, + "loadplugins": 1, + "registry_set_root": 1, + "HKLM": 1, + "global.NTKernelVersion": 1, + "registry_read_string_ext": 1, + "CurrentVersion": 1, + "SIC": 1, + "sprite_replace": 1, + "sprite_set_offset": 1, + "sprite_get_width": 1, + "/2": 2, + "sprite_get_height": 1, + "AudioControlToggleMute": 1, + "room_goto_fix": 2, + "Menu": 2, + "__jso_gmt_tuple": 1, + "//Position": 1, + "address": 1, + "table": 1, + "pos": 2, + "addr_table": 2, + "*argument_count": 1, + "//Build": 1, + "tuple": 1, + "ca": 1, + "isstr": 1, + "datastr": 1, + "argument_count": 1, + "//Check": 1, + "argument": 10, + "Unexpected": 18, + "position": 16, + "f": 5, + "JSON": 5, + "string.": 5, + "Cannot": 5, + "parse": 3, + "boolean": 3, + "value": 13, + "expecting": 9, + "digit.": 9, + "e": 4, + "E": 4, + "dot": 1, + "an": 24, + "integer": 6, + "Expected": 6, + "least": 6, + "arguments": 26, + "got": 6, + "find": 10, + "lookup.": 4, + "indices": 1, + "nested": 27, + "lists": 6, + "Index": 1, + "overflow": 4, + "Recursive": 1, + "abcdef": 1, + "number": 7, + "num": 1, + "assert_true": 1, + "_assert_error_popup": 2, + "string_repeat": 2, + "_assert_newline": 2, + "assert_false": 1, + "assert_equal": 1, + "//Safe": 1, + "equality": 1, + "check": 1, + "won": 1, + "support": 1, + "instead": 1, + "_assert_debug_value": 1, + "//String": 1, + "os_browser": 1, + "browser_not_a_browser": 1, + "string_replace_all": 1, + "//Numeric": 1, + "GMTuple": 1, + "jso_encode_string": 1, + "encode": 8, + "escape": 2, + "jso_encode_map": 4, + "one": 42, + "key1": 3, + "key2": 3, + "multi": 7, + "jso_encode_list": 3, + "three": 36, + "_jso_decode_string": 5, + "small": 1, + "quick": 2, + "brown": 2, + "fox": 2, + "over": 2, + "lazy": 2, + "dog.": 2, + "simple": 1, + "Waahoo": 1, + "negg": 1, + "mixed": 1, + "_jso_decode_boolean": 2, + "_jso_decode_real": 11, + "standard": 1, + "zero": 4, + "signed": 2, + "decimal": 1, + "digits": 1, + "positive": 7, + "negative": 7, + "exponent": 4, + "_jso_decode_integer": 3, + "_jso_decode_map": 14, + "didn": 14, + "include": 14, + "right": 14, + "prefix": 14, + "#1": 14, + "#2": 14, + "entry": 29, + "pi": 2, + "bool": 2, + "waahoo": 10, + "woohah": 8, + "mix": 4, + "_jso_decode_list": 14, + "woo": 2, + "Empty": 4, + "equal": 20, + "other.": 12, + "junk": 2, + "info": 1, + "taxi": 1, + "An": 4, + "filled": 4, + "map.": 2, + "A": 24, + "B": 18, + "C": 8, + "same": 6, + "content": 4, + "entered": 4, + "different": 12, + "orders": 4, + "D": 1, + "keys": 2, + "values": 4, + "six": 1, + "corresponding": 4, + "types": 4, + "other": 4, + "crash.": 4, + "list.": 2, + "Lists": 4, + "two": 16, + "entries": 2, + "also": 2, + "jso_map_check": 9, + "existing": 9, + "single": 11, + "jso_map_lookup": 3, + "wrong": 10, + "trap": 2, + "jso_map_lookup_type": 3, + "type": 8, + "four": 21, + "inexistent": 11, + "multiple": 20, + "jso_list_check": 8, + "jso_list_lookup": 3, + "jso_list_lookup_type": 3, + "inner": 1, + "indexing": 1, + "bad": 1, + "jso_cleanup_map": 1, + "one_map": 1, + "hashList": 5, + "pluginname": 9, + "pluginhash": 4, + "realhash": 1, + "handle": 1, + "filesize": 1, + "progress": 1, + "tempfile": 1, + "tempdir": 1, + "lastContact": 2, + "isCached": 2, + "isDebug": 2, + "split": 1, + "checkpluginname": 1, + "ds_list_find_index": 1, + ".zip": 3, + "ServerPluginsCache": 6, + "@": 5, + ".zip.tmp": 1, + ".tmp": 2, + "ServerPluginsDebug": 1, + "Warning": 2, + "being": 2, + "loaded": 2, + "ServerPluginsDebug.": 2, + "Make": 2, + "sure": 2, + "clients": 1, + "they": 1, + "may": 2, + "unable": 2, + "connect.": 2, + "you": 1, + "Downloading": 1, + "last_plugin.log": 2, + "plugin.gml": 1, + "playerId": 11, + "commandLimitRemaining": 4, + "variable_local_exists": 4, + "commandReceiveState": 1, + "commandReceiveExpectedBytes": 1, + "commandReceiveCommand": 1, + "player.socket": 12, + "player.commandReceiveExpectedBytes": 7, + "player.commandReceiveState": 7, + "player.commandReceiveCommand": 4, + "commandBytes": 2, + "commandBytesInvalidCommand": 1, + "commandBytesPrefixLength1": 1, + "commandBytesPrefixLength2": 1, + "default": 1, + "read_ushort": 2, + "PLAYER_LEAVE": 1, + "PLAYER_CHANGECLASS": 1, + "class": 8, + "getCharacterObject": 2, + "player.object": 12, + "SpawnRoom": 2, + "lastDamageDealer": 8, + "sendEventPlayerDeath": 4, + "BID_FAREWELL": 4, + "doEventPlayerDeath": 4, + "secondToLastDamageDealer": 2, + "lastDamageDealer.object": 2, + "lastDamageDealer.object.healer": 4, + "player.alarm": 4, + "<=0)>": 1, + "checkClasslimits": 2, + "ServerPlayerChangeclass": 2, + "sendBuffer": 1, + "PLAYER_CHANGETEAM": 1, + "newTeam": 7, + "balance": 5, + "redSuperiority": 6, + "calculate": 1, + "which": 1, + "Player": 1, + "TEAM_SPECTATOR": 1, + "newClass": 4, + "ServerPlayerChangeteam": 1, + "ServerBalanceTeams": 1, + "CHAT_BUBBLE": 2, + "bubbleImage": 5, + "global.aFirst": 1, + "write_ubyte": 20, + "setChatBubble": 1, + "BUILD_SENTRY": 2, + "collision_circle": 1, + "player.object.x": 3, + "player.object.y": 3, + "Sentry": 1, + "player.object.nutsNBolts": 1, + "player.sentry": 2, + "player.object.onCabinet": 1, + "write_ushort": 2, + "global.serializeBuffer": 3, + "player.object.x*5": 1, + "player.object.y*5": 1, + "write_byte": 1, + "player.object.image_xscale": 2, + "buildSentry": 1, + "DESTROY_SENTRY": 1, + "DROP_INTEL": 1, + "player.object.intel": 1, + "sendEventDropIntel": 1, + "doEventDropIntel": 1, + "OMNOMNOMNOM": 2, + "player.humiliated": 1, + "player.object.taunting": 1, + "player.object.omnomnomnom": 1, + "player.object.canEat": 1, + "omnomnomnomend": 2, + "xscale": 1, + "TOGGLE_ZOOM": 2, + "toggleZoom": 1, + "PLAYER_CHANGENAME": 2, + "nameLength": 4, + "socket_receivebuffer_size": 3, + "KICK": 2, + "KICK_NAME": 1, + "current_time": 2, + "lastNamechange": 2, + "INPUTSTATE": 1, + "keyState": 1, + "netAimDirection": 1, + "aimDirection": 1, + "netAimDirection*360/65536": 1, + "event_user": 1, + "REWARD_REQUEST": 1, + "player.rewardId": 1, + "player.challenge": 2, + "rewardCreateChallenge": 1, + "REWARD_CHALLENGE_CODE": 1, + "write_binstring": 1, + "REWARD_CHALLENGE_RESPONSE": 1, + "answer": 3, + "authbuffer": 1, + "read_binstring": 1, + "rewardAuthStart": 1, + "challenge": 1, + "rewardId": 1, + "PLUGIN_PACKET": 1, + "packetID": 3, + "buf": 5, + "success": 3, + "_PluginPacketPush": 1, + "KICK_BAD_PLUGIN_PACKET": 1, + "CLIENT_SETTINGS": 2, + "mirror": 4, + "player.queueJump": 1, + "global.levelType": 22, + "//global.currLevel": 1, + "global.currLevel": 22, + "global.hadDarkLevel": 4, + "global.startRoomX": 1, + "global.startRoomY": 1, + "global.endRoomX": 1, + "global.endRoomY": 1, + "oGame.levelGen": 2, + "j": 14, + "global.roomPath": 1, + "k": 5, + "global.lake": 3, + "isLevel": 1, + "999": 2, + "levelType": 2, + "16": 14, + "656": 3, + "oDark": 2, + "invincible": 2, + "sDark": 1, + "oTemple": 2, + "cityOfGold": 1, + "sTemple": 2, + "lake": 1, + "i*16": 8, + "j*16": 6, + "oLush": 2, + "obj.sprite_index": 4, + "sLush": 2, + "obj.invincible": 3, + "oBrick": 1, + "sBrick": 1, + "global.cityOfGold": 2, + "*16": 2, + "//instance_create": 2, + "oSpikes": 1, + "background_index": 1, + "bgTemple": 1, + "global.temp1": 1, + "global.gameStart": 3, + "scrLevelGen": 1, + "global.cemetary": 3, + "rand": 10, + "global.probCemetary": 1, + "oRoom": 1, + "scrRoomGen": 1, + "global.blackMarket": 3, + "scrRoomGenMarket": 1, + "scrRoomGen2": 1, + "global.yetiLair": 2, + "scrRoomGenYeti": 1, + "scrRoomGen3": 1, + "scrRoomGen4": 1, + "scrRoomGen5": 1, + "global.darkLevel": 4, + "global.noDarkLevel": 1, + "global.probDarkLevel": 1, + "oPlayer1.x": 2, + "oPlayer1.y": 2, + "oFlare": 1, + "global.genUdjatEye": 4, + "global.madeUdjatEye": 1, + "global.genMarketEntrance": 4, + "global.madeMarketEntrance": 1, + "////////////////////////////": 2, + "global.temp2": 1, + "isRoom": 3, + "scrEntityGen": 1, + "oEntrance": 1, + "global.customLevel": 1, + "oEntrance.x": 1, + "oEntrance.y": 1, + "global.snakePit": 1, + "global.alienCraft": 1, + "global.sacrificePit": 1, + "oPlayer1": 1, + "scrSetupWalls": 3, + "global.graphicsHigh": 1, + "tile_add": 4, + "bgExtrasLush": 1, + "*rand": 12, + "bgExtrasIce": 1, + "bgExtrasTemple": 1, + "bgExtras": 1, + "global.murderer": 1, + "global.thiefLevel": 1, + "isRealLevel": 1, + "oExit": 1, + "oShopkeeper": 1, + "obj.status": 1, + "oTreasure": 1, + "oWater": 1, + "sWaterTop": 1, + "sLavaTop": 1, + "scrCheckWaterTop": 1, + "global.temp3": 1 + }, "Gnuplot": { "set": 98, "label": 14, @@ -26858,111 +26678,6 @@ "example": 1, "}": 1 }, - "Haml": { - "%": 1, - "p": 1, - "Hello": 1, - "World": 1 - }, - "Handlebars": { - "
": 5, - "class=": 5, - "

": 3, - "{": 16, - "title": 1, - "}": 16, - "

": 3, - "body": 3, - "
": 5, - "By": 2, - "fullName": 2, - "author": 2, - "Comments": 1, - "#each": 1, - "comments": 1, - "

": 1, - "

": 1, - "/each": 1 - }, - "Haskell": { - "import": 6, - "Data.Char": 1, - "main": 4, - "IO": 2, - "(": 8, - ")": 8, - "do": 3, - "let": 2, - "hello": 2, - "putStrLn": 3, - "map": 13, - "toUpper": 1, - "module": 2, - "Main": 1, - "where": 4, - "Sudoku": 9, - "Data.Maybe": 2, - "sudoku": 36, - "[": 4, - "]": 3, - "pPrint": 5, - "+": 2, - "fromMaybe": 1, - "solve": 5, - "isSolved": 4, - "Data.List": 1, - "Data.List.Split": 1, - "type": 1, - "Int": 1, - "-": 3, - "Maybe": 1, - "|": 8, - "Just": 1, - "otherwise": 2, - "index": 27, - "<": 1, - "elemIndex": 1, - "sudokus": 2, - "nextTest": 5, - "i": 7, - "<->": 1, - "1": 2, - "9": 7, - "checkRow": 2, - "checkColumn": 2, - "checkBox": 2, - "listToMaybe": 1, - "mapMaybe": 1, - "take": 1, - "drop": 1, - "length": 12, - "getRow": 3, - "nub": 6, - "getColumn": 3, - "getBox": 3, - "filter": 3, - "0": 3, - "chunksOf": 10, - "quot": 3, - "transpose": 4, - "mod": 2, - "concat": 2, - "concatMap": 2, - "3": 4, - "27": 1, - "Bool": 1, - "product": 1, - "False": 4, - ".": 4, - "sudokuRows": 4, - "/": 3, - "sudokuColumns": 3, - "sudokuBoxes": 3, - "True": 1, - "String": 1, - "intercalate": 2, - "show": 1 - }, "HTML": { "": 2, "HTML": 2, @@ -27161,6 +26876,111 @@ "with": 1, "Doxygen": 1 }, + "Haml": { + "%": 1, + "p": 1, + "Hello": 1, + "World": 1 + }, + "Handlebars": { + "
": 5, + "class=": 5, + "

": 3, + "{": 16, + "title": 1, + "}": 16, + "

": 3, + "body": 3, + "
": 5, + "By": 2, + "fullName": 2, + "author": 2, + "Comments": 1, + "#each": 1, + "comments": 1, + "

": 1, + "

": 1, + "/each": 1 + }, + "Haskell": { + "import": 6, + "Data.Char": 1, + "main": 4, + "IO": 2, + "(": 8, + ")": 8, + "do": 3, + "let": 2, + "hello": 2, + "putStrLn": 3, + "map": 13, + "toUpper": 1, + "module": 2, + "Main": 1, + "where": 4, + "Sudoku": 9, + "Data.Maybe": 2, + "sudoku": 36, + "[": 4, + "]": 3, + "pPrint": 5, + "+": 2, + "fromMaybe": 1, + "solve": 5, + "isSolved": 4, + "Data.List": 1, + "Data.List.Split": 1, + "type": 1, + "Int": 1, + "-": 3, + "Maybe": 1, + "|": 8, + "Just": 1, + "otherwise": 2, + "index": 27, + "<": 1, + "elemIndex": 1, + "sudokus": 2, + "nextTest": 5, + "i": 7, + "<->": 1, + "1": 2, + "9": 7, + "checkRow": 2, + "checkColumn": 2, + "checkBox": 2, + "listToMaybe": 1, + "mapMaybe": 1, + "take": 1, + "drop": 1, + "length": 12, + "getRow": 3, + "nub": 6, + "getColumn": 3, + "getBox": 3, + "filter": 3, + "0": 3, + "chunksOf": 10, + "quot": 3, + "transpose": 4, + "mod": 2, + "concat": 2, + "concatMap": 2, + "3": 4, + "27": 1, + "Bool": 1, + "product": 1, + "False": 4, + ".": 4, + "sudokuRows": 4, + "/": 3, + "sudokuColumns": 3, + "sudokuBoxes": 3, + "True": 1, + "String": 1, + "intercalate": 2, + "show": 1 + }, "Hy": { ";": 4, "Fibonacci": 1, @@ -27355,6 +27175,31 @@ "L": 1, "example": 1 }, + "INI": { + ";": 1, + "editorconfig.org": 1, + "root": 1, + "true": 3, + "[": 2, + "*": 1, + "]": 2, + "indent_style": 1, + "space": 1, + "indent_size": 1, + "end_of_line": 1, + "lf": 1, + "charset": 1, + "utf": 1, + "-": 1, + "trim_trailing_whitespace": 1, + "insert_final_newline": 1, + "user": 1, + "name": 1, + "Josh": 1, + "Peek": 1, + "email": 1, + "josh@github.com": 1 + }, "Idris": { "module": 1, "Prelude.Char": 1, @@ -27446,31 +27291,6 @@ "purple.": 1, "ends": 1 }, - "INI": { - ";": 1, - "editorconfig.org": 1, - "root": 1, - "true": 3, - "[": 2, - "*": 1, - "]": 2, - "indent_style": 1, - "space": 1, - "indent_size": 1, - "end_of_line": 1, - "lf": 1, - "charset": 1, - "utf": 1, - "-": 1, - "trim_trailing_whitespace": 1, - "insert_final_newline": 1, - "user": 1, - "name": 1, - "Josh": 1, - "Peek": 1, - "email": 1, - "josh@github.com": 1 - }, "Ioke": { "SHEBANG#!ioke": 1, "println": 1 @@ -27556,6 +27376,115 @@ "intro": 1, "end": 1 }, + "JSON": { + "{": 73, + "[": 17, + "]": 17, + "}": 73, + "true": 3 + }, + "JSON5": { + "{": 6, + "foo": 1, + "while": 1, + "true": 1, + "this": 1, + "here": 1, + "//": 2, + "inline": 1, + "comment": 1, + "hex": 1, + "xDEADbeef": 1, + "half": 1, + ".5": 1, + "delta": 1, + "+": 1, + "to": 1, + "Infinity": 1, + "and": 1, + "beyond": 1, + "finally": 1, + "oh": 1, + "[": 3, + "]": 3, + "}": 6, + "name": 1, + "version": 1, + "description": 1, + "keywords": 1, + "author": 1, + "contributors": 1, + "main": 1, + "bin": 1, + "dependencies": 1, + "devDependencies": 1, + "mocha": 1, + "scripts": 1, + "build": 1, + "test": 1, + "homepage": 1, + "repository": 1, + "type": 1, + "url": 1 + }, + "JSONLD": { + "{": 7, + "}": 7, + "[": 1, + "null": 2, + "]": 1 + }, + "JSONiq": { + "(": 14, + "Query": 2, + "for": 4, + "returning": 1, + "one": 1, + "database": 2, + "entry": 1, + ")": 14, + "import": 5, + "module": 5, + "namespace": 5, + "req": 6, + ";": 9, + "catalog": 4, + "variable": 4, + "id": 3, + "param": 4, + "-": 11, + "values": 4, + "[": 5, + "]": 5, + "part": 2, + "get": 2, + "data": 4, + "by": 2, + "key": 1, + "searching": 1, + "the": 1, + "keywords": 1, + "index": 3, + "phrase": 2, + "limit": 2, + "integer": 1, + "result": 1, + "at": 1, + "idx": 2, + "in": 1, + "search": 1, + "where": 1, + "le": 1, + "let": 1, + "result.s": 1, + "result.p": 1, + "return": 1, + "{": 2, + "|": 2, + "score": 1, + "result.r": 1, + "}": 2 + }, "Jade": { "p.": 1, "Hello": 1, @@ -34526,115 +34455,6 @@ "exports.set_logger": 1, "logger": 2 }, - "JSON": { - "{": 73, - "[": 17, - "]": 17, - "}": 73, - "true": 3 - }, - "JSON5": { - "{": 6, - "foo": 1, - "while": 1, - "true": 1, - "this": 1, - "here": 1, - "//": 2, - "inline": 1, - "comment": 1, - "hex": 1, - "xDEADbeef": 1, - "half": 1, - ".5": 1, - "delta": 1, - "+": 1, - "to": 1, - "Infinity": 1, - "and": 1, - "beyond": 1, - "finally": 1, - "oh": 1, - "[": 3, - "]": 3, - "}": 6, - "name": 1, - "version": 1, - "description": 1, - "keywords": 1, - "author": 1, - "contributors": 1, - "main": 1, - "bin": 1, - "dependencies": 1, - "devDependencies": 1, - "mocha": 1, - "scripts": 1, - "build": 1, - "test": 1, - "homepage": 1, - "repository": 1, - "type": 1, - "url": 1 - }, - "JSONiq": { - "(": 14, - "Query": 2, - "for": 4, - "returning": 1, - "one": 1, - "database": 2, - "entry": 1, - ")": 14, - "import": 5, - "module": 5, - "namespace": 5, - "req": 6, - ";": 9, - "catalog": 4, - "variable": 4, - "id": 3, - "param": 4, - "-": 11, - "values": 4, - "[": 5, - "]": 5, - "part": 2, - "get": 2, - "data": 4, - "by": 2, - "key": 1, - "searching": 1, - "the": 1, - "keywords": 1, - "index": 3, - "phrase": 2, - "limit": 2, - "integer": 1, - "result": 1, - "at": 1, - "idx": 2, - "in": 1, - "search": 1, - "where": 1, - "le": 1, - "let": 1, - "result.s": 1, - "result.p": 1, - "return": 1, - "{": 2, - "|": 2, - "score": 1, - "result.r": 1, - "}": 2 - }, - "JSONLD": { - "{": 7, - "}": 7, - "[": 1, - "null": 2, - "]": 1 - }, "Julia": { "##": 5, "Test": 1, @@ -34734,6 +34554,29 @@ "end": 3, "return": 1 }, + "KRL": { + "ruleset": 1, + "sample": 1, + "{": 3, + "meta": 1, + "name": 1, + "description": 1, + "<<": 1, + "Hello": 1, + "world": 1, + "author": 1, + "}": 3, + "rule": 1, + "hello": 1, + "select": 1, + "when": 1, + "web": 1, + "pageview": 1, + "notify": 1, + "(": 1, + ")": 1, + ";": 1 + }, "Kit": { "
": 1, "

": 1, @@ -34805,28 +34648,337 @@ "true": 1, "return": 1 }, - "KRL": { - "ruleset": 1, - "sample": 1, - "{": 3, - "meta": 1, - "name": 1, - "description": 1, - "<<": 1, - "Hello": 1, - "world": 1, - "author": 1, - "}": 3, - "rule": 1, - "hello": 1, + "LFE": { + ";": 213, + "Copyright": 4, + "(": 217, + "c": 4, + ")": 231, + "Duncan": 4, + "McGreggor": 4, + "": 2, + "Licensed": 3, + "under": 9, + "the": 36, + "Apache": 3, + "License": 12, + "Version": 3, + "you": 3, + "may": 6, + "not": 5, + "use": 6, + "this": 3, + "file": 6, + "except": 3, + "in": 10, + "compliance": 3, + "with": 8, + "License.": 6, + "You": 3, + "obtain": 3, + "a": 8, + "copy": 3, + "of": 10, + "at": 4, + "http": 4, + "//www.apache.org/licenses/LICENSE": 3, + "-": 98, + "Unless": 3, + "required": 3, + "by": 4, + "applicable": 3, + "law": 3, + "or": 6, + "agreed": 3, + "to": 10, + "writing": 3, + "software": 3, + "distributed": 6, + "is": 5, + "on": 4, + "an": 5, + "BASIS": 3, + "WITHOUT": 3, + "WARRANTIES": 3, + "OR": 3, + "CONDITIONS": 3, + "OF": 3, + "ANY": 3, + "KIND": 3, + "either": 3, + "express": 3, + "implied.": 3, + "See": 3, + "for": 5, + "specific": 3, + "language": 3, + "governing": 3, + "permissions": 3, + "and": 7, + "limitations": 3, + "File": 4, + "church.lfe": 1, + "Author": 3, + "Purpose": 3, + "Demonstrating": 2, + "church": 20, + "numerals": 1, + "from": 2, + "lambda": 18, + "calculus": 1, + "The": 4, + "code": 2, + "below": 3, + "was": 1, + "used": 1, + "create": 4, + "section": 1, + "user": 1, + "guide": 1, + "here": 1, + "//lfe.github.io/user": 1, + "guide/recursion/5.html": 1, + "Here": 1, + "some": 2, + "example": 2, + "usage": 1, + "slurp": 2, + "five/0": 2, + "int2": 1, + "get": 21, + "defmodule": 2, + "export": 2, + "all": 1, + "defun": 20, + "zero": 2, + "s": 19, + "x": 12, + "one": 1, + "funcall": 23, + "two": 1, + "three": 1, + "four": 1, + "five": 1, + "int": 2, + "successor": 3, + "n": 4, + "+": 2, + "int1": 1, + "numeral": 8, + "#": 3, + "successor/1": 1, + "count": 7, + "limit": 4, + "cond": 1, + "/": 1, + "integer": 2, + "*": 6, + "Mode": 1, + "LFE": 4, + "Code": 1, + "Paradigms": 1, + "Artificial": 1, + "Intelligence": 1, + "Programming": 1, + "Peter": 1, + "Norvig": 1, + "gps1.lisp": 1, + "First": 1, + "version": 1, + "GPS": 1, + "General": 1, + "Problem": 1, + "Solver": 1, + "Converted": 1, + "Robert": 3, + "Virding": 3, + "Define": 1, + "macros": 1, + "global": 2, + "variable": 2, + "access.": 1, + "This": 2, + "hack": 1, + "very": 1, + "naughty": 1, + "defsyntax": 2, + "defvar": 2, + "[": 3, + "name": 8, + "val": 2, + "]": 3, + "let": 6, + "v": 3, + "put": 1, + "getvar": 3, + "solved": 1, + "gps": 1, + "state": 4, + "goals": 2, + "Set": 1, + "variables": 1, + "but": 1, + "existing": 1, + "*ops*": 1, + "*state*": 5, + "current": 1, + "list": 13, + "conditions.": 1, + "if": 1, + "every": 1, + "fun": 1, + "achieve": 1, + "op": 8, + "action": 3, + "setvar": 2, + "set": 1, + "difference": 1, + "del": 5, + "union": 1, + "add": 3, + "drive": 1, + "son": 2, + "school": 2, + "preconds": 4, + "shop": 6, + "installs": 1, + "battery": 1, + "car": 1, + "works": 1, + "make": 2, + "communication": 2, + "telephone": 1, + "have": 3, + "phone": 1, + "book": 1, + "give": 1, + "money": 3, + "has": 1, + "mnesia_demo.lfe": 1, + "A": 1, + "simple": 4, + "Mnesia": 2, + "demo": 2, + "LFE.": 1, + "contains": 1, + "using": 1, + "access": 1, + "tables.": 1, + "It": 1, + "shows": 2, + "how": 2, + "emp": 1, + "XXXX": 1, + "macro": 1, + "ETS": 1, + "match": 5, + "pattern": 1, + "together": 1, + "mnesia": 8, + "match_object": 1, + "specifications": 1, "select": 1, + "Query": 2, + "List": 2, + "Comprehensions.": 1, + "mnesia_demo": 1, + "new": 2, + "by_place": 1, + "by_place_ms": 1, + "by_place_qlc": 2, + "defrecord": 1, + "person": 8, + "place": 7, + "job": 3, + "Start": 1, + "table": 2, + "we": 1, + "will": 1, + "memory": 1, + "only": 1, + "schema.": 1, + "start": 1, + "create_table": 1, + "attributes": 1, + "Initialise": 1, + "table.": 1, + "people": 1, + "spec": 1, + "p": 2, + "j": 2, "when": 1, - "web": 1, - "pageview": 1, - "notify": 1, - "(": 1, - ")": 1, - ";": 1 + "tuple": 1, + "transaction": 2, + "f": 3, + "Use": 1, + "Comprehensions": 1, + "records": 1, + "q": 2, + "qlc": 2, + "lc": 1, + "<": 1, + "e": 1, + "object.lfe": 1, + "OOP": 1, + "closures": 1, + "object": 16, + "system": 1, + "demonstrated": 1, + "do": 2, + "following": 2, + "objects": 2, + "call": 2, + "methods": 5, + "those": 1, + "which": 1, + "can": 1, + "other": 1, + "update": 1, + "instance": 2, + "Note": 1, + "however": 1, + "that": 1, + "his": 1, + "does": 1, + "demonstrate": 1, + "inheritance.": 1, + "To": 1, + "cd": 1, + "examples": 1, + "../bin/lfe": 1, + "pa": 1, + "../ebin": 1, + "Load": 1, + "fish": 6, + "class": 3, + "#Fun": 1, + "": 1, + "Execute": 1, + "basic": 1, + "species": 7, + "mommy": 3, + "move": 4, + "Carp": 1, + "swam": 1, + "feet": 1, + "ok": 1, + "id": 9, + "Now": 1, + "strictly": 1, + "necessary.": 1, + "When": 1, + "isn": 1, + "children": 10, + "formatted": 1, + "verb": 2, + "self": 6, + "distance": 2, + "erlang": 1, + "length": 1, + "method": 7, + "define": 1, + "info": 1, + "reproduce": 1 }, "Lasso": { "<": 7, @@ -35965,338 +36117,6 @@ "/": 2, "margin": 1 }, - "LFE": { - ";": 213, - "Copyright": 4, - "(": 217, - "c": 4, - ")": 231, - "Duncan": 4, - "McGreggor": 4, - "": 2, - "Licensed": 3, - "under": 9, - "the": 36, - "Apache": 3, - "License": 12, - "Version": 3, - "you": 3, - "may": 6, - "not": 5, - "use": 6, - "this": 3, - "file": 6, - "except": 3, - "in": 10, - "compliance": 3, - "with": 8, - "License.": 6, - "You": 3, - "obtain": 3, - "a": 8, - "copy": 3, - "of": 10, - "at": 4, - "http": 4, - "//www.apache.org/licenses/LICENSE": 3, - "-": 98, - "Unless": 3, - "required": 3, - "by": 4, - "applicable": 3, - "law": 3, - "or": 6, - "agreed": 3, - "to": 10, - "writing": 3, - "software": 3, - "distributed": 6, - "is": 5, - "on": 4, - "an": 5, - "BASIS": 3, - "WITHOUT": 3, - "WARRANTIES": 3, - "OR": 3, - "CONDITIONS": 3, - "OF": 3, - "ANY": 3, - "KIND": 3, - "either": 3, - "express": 3, - "implied.": 3, - "See": 3, - "for": 5, - "specific": 3, - "language": 3, - "governing": 3, - "permissions": 3, - "and": 7, - "limitations": 3, - "File": 4, - "church.lfe": 1, - "Author": 3, - "Purpose": 3, - "Demonstrating": 2, - "church": 20, - "numerals": 1, - "from": 2, - "lambda": 18, - "calculus": 1, - "The": 4, - "code": 2, - "below": 3, - "was": 1, - "used": 1, - "create": 4, - "section": 1, - "user": 1, - "guide": 1, - "here": 1, - "//lfe.github.io/user": 1, - "guide/recursion/5.html": 1, - "Here": 1, - "some": 2, - "example": 2, - "usage": 1, - "slurp": 2, - "five/0": 2, - "int2": 1, - "get": 21, - "defmodule": 2, - "export": 2, - "all": 1, - "defun": 20, - "zero": 2, - "s": 19, - "x": 12, - "one": 1, - "funcall": 23, - "two": 1, - "three": 1, - "four": 1, - "five": 1, - "int": 2, - "successor": 3, - "n": 4, - "+": 2, - "int1": 1, - "numeral": 8, - "#": 3, - "successor/1": 1, - "count": 7, - "limit": 4, - "cond": 1, - "/": 1, - "integer": 2, - "*": 6, - "Mode": 1, - "LFE": 4, - "Code": 1, - "Paradigms": 1, - "Artificial": 1, - "Intelligence": 1, - "Programming": 1, - "Peter": 1, - "Norvig": 1, - "gps1.lisp": 1, - "First": 1, - "version": 1, - "GPS": 1, - "General": 1, - "Problem": 1, - "Solver": 1, - "Converted": 1, - "Robert": 3, - "Virding": 3, - "Define": 1, - "macros": 1, - "global": 2, - "variable": 2, - "access.": 1, - "This": 2, - "hack": 1, - "very": 1, - "naughty": 1, - "defsyntax": 2, - "defvar": 2, - "[": 3, - "name": 8, - "val": 2, - "]": 3, - "let": 6, - "v": 3, - "put": 1, - "getvar": 3, - "solved": 1, - "gps": 1, - "state": 4, - "goals": 2, - "Set": 1, - "variables": 1, - "but": 1, - "existing": 1, - "*ops*": 1, - "*state*": 5, - "current": 1, - "list": 13, - "conditions.": 1, - "if": 1, - "every": 1, - "fun": 1, - "achieve": 1, - "op": 8, - "action": 3, - "setvar": 2, - "set": 1, - "difference": 1, - "del": 5, - "union": 1, - "add": 3, - "drive": 1, - "son": 2, - "school": 2, - "preconds": 4, - "shop": 6, - "installs": 1, - "battery": 1, - "car": 1, - "works": 1, - "make": 2, - "communication": 2, - "telephone": 1, - "have": 3, - "phone": 1, - "book": 1, - "give": 1, - "money": 3, - "has": 1, - "mnesia_demo.lfe": 1, - "A": 1, - "simple": 4, - "Mnesia": 2, - "demo": 2, - "LFE.": 1, - "contains": 1, - "using": 1, - "access": 1, - "tables.": 1, - "It": 1, - "shows": 2, - "how": 2, - "emp": 1, - "XXXX": 1, - "macro": 1, - "ETS": 1, - "match": 5, - "pattern": 1, - "together": 1, - "mnesia": 8, - "match_object": 1, - "specifications": 1, - "select": 1, - "Query": 2, - "List": 2, - "Comprehensions.": 1, - "mnesia_demo": 1, - "new": 2, - "by_place": 1, - "by_place_ms": 1, - "by_place_qlc": 2, - "defrecord": 1, - "person": 8, - "place": 7, - "job": 3, - "Start": 1, - "table": 2, - "we": 1, - "will": 1, - "memory": 1, - "only": 1, - "schema.": 1, - "start": 1, - "create_table": 1, - "attributes": 1, - "Initialise": 1, - "table.": 1, - "people": 1, - "spec": 1, - "p": 2, - "j": 2, - "when": 1, - "tuple": 1, - "transaction": 2, - "f": 3, - "Use": 1, - "Comprehensions": 1, - "records": 1, - "q": 2, - "qlc": 2, - "lc": 1, - "<": 1, - "e": 1, - "object.lfe": 1, - "OOP": 1, - "closures": 1, - "object": 16, - "system": 1, - "demonstrated": 1, - "do": 2, - "following": 2, - "objects": 2, - "call": 2, - "methods": 5, - "those": 1, - "which": 1, - "can": 1, - "other": 1, - "update": 1, - "instance": 2, - "Note": 1, - "however": 1, - "that": 1, - "his": 1, - "does": 1, - "demonstrate": 1, - "inheritance.": 1, - "To": 1, - "cd": 1, - "examples": 1, - "../bin/lfe": 1, - "pa": 1, - "../ebin": 1, - "Load": 1, - "fish": 6, - "class": 3, - "#Fun": 1, - "": 1, - "Execute": 1, - "basic": 1, - "species": 7, - "mommy": 3, - "move": 4, - "Carp": 1, - "swam": 1, - "feet": 1, - "ok": 1, - "id": 9, - "Now": 1, - "strictly": 1, - "necessary.": 1, - "When": 1, - "isn": 1, - "children": 10, - "formatted": 1, - "verb": 2, - "self": 6, - "distance": 2, - "erlang": 1, - "length": 1, - "method": 7, - "define": 1, - "info": 1, - "reproduce": 1 - }, "Liquid": { "": 1, "html": 1, @@ -39355,6 +39175,40 @@ "c1": 4, "buf_c1_": 1 }, + "MTML": { + "<$mt:Var>": 15, + "name=": 19, + "value=": 9, + "": 1, + "op=": 8, + "setvar=": 9, + "": 1, + "<": 2, + "a": 1, + "href": 1, + "<$mt:CategoryLabel>": 1, + "remove_html=": 1, + "": 1, + "": 1, + "": 1, + "function=": 1, + "": 1, + "gt=": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 2, + "from=": 2, + "to=": 2, + "div": 1, + "class": 1, + "col_num": 1, + "": 2, + "": 1 + }, "Makefile": { "all": 1, "hello": 4, @@ -44783,300 +44637,6 @@ "arg_list": 1, "Value": 1 }, - "MTML": { - "<$mt:Var>": 15, - "name=": 19, - "value=": 9, - "": 1, - "op=": 8, - "setvar=": 9, - "": 1, - "<": 2, - "a": 1, - "href": 1, - "<$mt:CategoryLabel>": 1, - "remove_html=": 1, - "": 1, - "": 1, - "": 1, - "function=": 1, - "": 1, - "gt=": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 2, - "from=": 2, - "to=": 2, - "div": 1, - "class": 1, - "col_num": 1, - "": 2, - "": 1 - }, - "Nemerle": { - "using": 1, - "System.Console": 1, - ";": 2, - "module": 1, - "Program": 1, - "{": 2, - "Main": 1, - "(": 2, - ")": 2, - "void": 1, - "WriteLine": 1, - "}": 2 - }, - "NetLogo": { - "patches": 7, - "-": 28, - "own": 1, - "[": 17, - "living": 6, - ";": 12, - "indicates": 1, - "if": 2, - "the": 6, - "cell": 10, - "is": 1, - "live": 4, - "neighbors": 5, - "counts": 1, - "how": 1, - "many": 1, - "neighboring": 1, - "cells": 2, - "are": 1, - "alive": 1, - "]": 17, - "to": 6, - "setup": 2, - "blank": 1, - "clear": 2, - "all": 5, - "ask": 6, - "death": 5, - "reset": 2, - "ticks": 2, - "end": 6, - "random": 2, - "ifelse": 3, - "float": 1, - "<": 1, - "initial": 1, - "density": 1, - "birth": 4, - "set": 5, - "true": 1, - "pcolor": 2, - "fgcolor": 1, - "false": 1, - "bgcolor": 1, - "go": 1, - "count": 1, - "with": 2, - "Starting": 1, - "a": 1, - "new": 1, - "here": 1, - "ensures": 1, - "that": 1, - "finish": 1, - "executing": 2, - "first": 1, - "before": 1, - "any": 1, - "of": 2, - "them": 1, - "start": 1, - "second": 1, - "ask.": 1, - "This": 1, - "keeps": 1, - "in": 2, - "synch": 1, - "each": 2, - "other": 1, - "so": 1, - "births": 1, - "and": 1, - "deaths": 1, - "at": 1, - "generation": 1, - "happen": 1, - "lockstep.": 1, - "tick": 1, - "draw": 1, - "let": 1, - "erasing": 2, - "patch": 2, - "mouse": 5, - "xcor": 2, - "ycor": 2, - "while": 1, - "down": 1, - "display": 1 - }, - "Nginx": { - "user": 1, - "www": 2, - ";": 35, - "worker_processes": 1, - "error_log": 1, - "logs/error.log": 1, - "pid": 1, - "logs/nginx.pid": 1, - "worker_rlimit_nofile": 1, - "events": 1, - "{": 10, - "worker_connections": 1, - "}": 10, - "http": 3, - "include": 3, - "conf/mime.types": 1, - "/etc/nginx/proxy.conf": 1, - "/etc/nginx/fastcgi.conf": 1, - "index": 1, - "index.html": 1, - "index.htm": 1, - "index.php": 1, - "default_type": 1, - "application/octet": 1, - "-": 2, - "stream": 1, - "log_format": 1, - "main": 5, - "access_log": 4, - "logs/access.log": 1, - "sendfile": 1, - "on": 2, - "tcp_nopush": 1, - "server_names_hash_bucket_size": 1, - "#": 4, - "this": 1, - "seems": 1, - "to": 1, - "be": 1, - "required": 1, - "for": 1, - "some": 1, - "vhosts": 1, - "server": 7, - "php/fastcgi": 1, - "listen": 3, - "server_name": 3, - "domain1.com": 1, - "www.domain1.com": 1, - "logs/domain1.access.log": 1, - "root": 2, - "html": 1, - "location": 4, - ".php": 1, - "fastcgi_pass": 1, - "simple": 2, - "reverse": 1, - "proxy": 1, - "domain2.com": 1, - "www.domain2.com": 1, - "logs/domain2.access.log": 1, - "/": 4, - "(": 1, - "images": 1, - "|": 6, - "javascript": 1, - "js": 1, - "css": 1, - "flash": 1, - "media": 1, - "static": 1, - ")": 1, - "/var/www/virtual/big.server.com/htdocs": 1, - "expires": 1, - "d": 1, - "proxy_pass": 2, - "//127.0.0.1": 1, - "upstream": 1, - "big_server_com": 1, - "weight": 2, - "load": 1, - "balancing": 1, - "big.server.com": 1, - "logs/big.server.access.log": 1, - "//big_server_com": 1 - }, - "Nimrod": { - "echo": 1 - }, - "Nix": { - "{": 8, - "stdenv": 1, - "fetchurl": 2, - "fetchgit": 5, - "openssl": 2, - "zlib": 2, - "pcre": 2, - "libxml2": 2, - "libxslt": 2, - "expat": 2, - "rtmp": 4, - "false": 4, - "fullWebDAV": 3, - "syslog": 4, - "moreheaders": 3, - "...": 1, - "}": 8, - "let": 1, - "version": 2, - ";": 32, - "mainSrc": 2, - "url": 5, - "sha256": 5, - "-": 12, - "ext": 5, - "git": 2, - "//github.com/arut/nginx": 2, - "module.git": 3, - "rev": 4, - "dav": 2, - "https": 2, - "//github.com/yaoweibin/nginx_syslog_patch.git": 1, - "//github.com/agentzh/headers": 1, - "more": 1, - "nginx": 1, - "in": 1, - "stdenv.mkDerivation": 1, - "rec": 1, - "name": 1, - "src": 1, - "buildInputs": 1, - "[": 5, - "]": 5, - "+": 10, - "stdenv.lib.optional": 5, - "patches": 1, - "if": 1, - "then": 1, - "else": 1, - "configureFlags": 1, - "preConfigure": 1, - "export": 1, - "NIX_CFLAGS_COMPILE": 1, - "postInstall": 1, - "mv": 1, - "out/sbin": 1, - "out/bin": 1, - "meta": 1, - "description": 1, - "maintainers": 1, - "stdenv.lib.maintainers.raskin": 1, - "platforms": 1, - "stdenv.lib.platforms.all": 1, - "inherit": 1 - }, "NSIS": { ";": 39, "bigtest.nsi": 1, @@ -45340,6 +44900,266 @@ "i0": 1, "i1": 1 }, + "Nemerle": { + "using": 1, + "System.Console": 1, + ";": 2, + "module": 1, + "Program": 1, + "{": 2, + "Main": 1, + "(": 2, + ")": 2, + "void": 1, + "WriteLine": 1, + "}": 2 + }, + "NetLogo": { + "patches": 7, + "-": 28, + "own": 1, + "[": 17, + "living": 6, + ";": 12, + "indicates": 1, + "if": 2, + "the": 6, + "cell": 10, + "is": 1, + "live": 4, + "neighbors": 5, + "counts": 1, + "how": 1, + "many": 1, + "neighboring": 1, + "cells": 2, + "are": 1, + "alive": 1, + "]": 17, + "to": 6, + "setup": 2, + "blank": 1, + "clear": 2, + "all": 5, + "ask": 6, + "death": 5, + "reset": 2, + "ticks": 2, + "end": 6, + "random": 2, + "ifelse": 3, + "float": 1, + "<": 1, + "initial": 1, + "density": 1, + "birth": 4, + "set": 5, + "true": 1, + "pcolor": 2, + "fgcolor": 1, + "false": 1, + "bgcolor": 1, + "go": 1, + "count": 1, + "with": 2, + "Starting": 1, + "a": 1, + "new": 1, + "here": 1, + "ensures": 1, + "that": 1, + "finish": 1, + "executing": 2, + "first": 1, + "before": 1, + "any": 1, + "of": 2, + "them": 1, + "start": 1, + "second": 1, + "ask.": 1, + "This": 1, + "keeps": 1, + "in": 2, + "synch": 1, + "each": 2, + "other": 1, + "so": 1, + "births": 1, + "and": 1, + "deaths": 1, + "at": 1, + "generation": 1, + "happen": 1, + "lockstep.": 1, + "tick": 1, + "draw": 1, + "let": 1, + "erasing": 2, + "patch": 2, + "mouse": 5, + "xcor": 2, + "ycor": 2, + "while": 1, + "down": 1, + "display": 1 + }, + "Nginx": { + "user": 1, + "www": 2, + ";": 35, + "worker_processes": 1, + "error_log": 1, + "logs/error.log": 1, + "pid": 1, + "logs/nginx.pid": 1, + "worker_rlimit_nofile": 1, + "events": 1, + "{": 10, + "worker_connections": 1, + "}": 10, + "http": 3, + "include": 3, + "conf/mime.types": 1, + "/etc/nginx/proxy.conf": 1, + "/etc/nginx/fastcgi.conf": 1, + "index": 1, + "index.html": 1, + "index.htm": 1, + "index.php": 1, + "default_type": 1, + "application/octet": 1, + "-": 2, + "stream": 1, + "log_format": 1, + "main": 5, + "access_log": 4, + "logs/access.log": 1, + "sendfile": 1, + "on": 2, + "tcp_nopush": 1, + "server_names_hash_bucket_size": 1, + "#": 4, + "this": 1, + "seems": 1, + "to": 1, + "be": 1, + "required": 1, + "for": 1, + "some": 1, + "vhosts": 1, + "server": 7, + "php/fastcgi": 1, + "listen": 3, + "server_name": 3, + "domain1.com": 1, + "www.domain1.com": 1, + "logs/domain1.access.log": 1, + "root": 2, + "html": 1, + "location": 4, + ".php": 1, + "fastcgi_pass": 1, + "simple": 2, + "reverse": 1, + "proxy": 1, + "domain2.com": 1, + "www.domain2.com": 1, + "logs/domain2.access.log": 1, + "/": 4, + "(": 1, + "images": 1, + "|": 6, + "javascript": 1, + "js": 1, + "css": 1, + "flash": 1, + "media": 1, + "static": 1, + ")": 1, + "/var/www/virtual/big.server.com/htdocs": 1, + "expires": 1, + "d": 1, + "proxy_pass": 2, + "//127.0.0.1": 1, + "upstream": 1, + "big_server_com": 1, + "weight": 2, + "load": 1, + "balancing": 1, + "big.server.com": 1, + "logs/big.server.access.log": 1, + "//big_server_com": 1 + }, + "Nimrod": { + "echo": 1 + }, + "Nix": { + "{": 8, + "stdenv": 1, + "fetchurl": 2, + "fetchgit": 5, + "openssl": 2, + "zlib": 2, + "pcre": 2, + "libxml2": 2, + "libxslt": 2, + "expat": 2, + "rtmp": 4, + "false": 4, + "fullWebDAV": 3, + "syslog": 4, + "moreheaders": 3, + "...": 1, + "}": 8, + "let": 1, + "version": 2, + ";": 32, + "mainSrc": 2, + "url": 5, + "sha256": 5, + "-": 12, + "ext": 5, + "git": 2, + "//github.com/arut/nginx": 2, + "module.git": 3, + "rev": 4, + "dav": 2, + "https": 2, + "//github.com/yaoweibin/nginx_syslog_patch.git": 1, + "//github.com/agentzh/headers": 1, + "more": 1, + "nginx": 1, + "in": 1, + "stdenv.mkDerivation": 1, + "rec": 1, + "name": 1, + "src": 1, + "buildInputs": 1, + "[": 5, + "]": 5, + "+": 10, + "stdenv.lib.optional": 5, + "patches": 1, + "if": 1, + "then": 1, + "else": 1, + "configureFlags": 1, + "preConfigure": 1, + "export": 1, + "NIX_CFLAGS_COMPILE": 1, + "postInstall": 1, + "mv": 1, + "out/sbin": 1, + "out/bin": 1, + "meta": 1, + "description": 1, + "maintainers": 1, + "stdenv.lib.maintainers.raskin": 1, + "platforms": 1, + "stdenv.lib.platforms.all": 1, + "inherit": 1 + }, "Nu": { "SHEBANG#!nush": 1, "(": 14, @@ -45404,6 +45224,93 @@ "NSApplicationMain": 1, "nil": 1 }, + "OCaml": { + "{": 11, + "shared": 1, + "open": 4, + "Eliom_content": 1, + "Html5.D": 1, + "Eliom_parameter": 1, + "}": 13, + "server": 2, + "module": 5, + "Example": 1, + "Eliom_registration.App": 1, + "(": 21, + "struct": 5, + "let": 13, + "application_name": 1, + "end": 5, + ")": 23, + "main": 2, + "Eliom_service.service": 1, + "path": 1, + "[": 13, + "]": 13, + "get_params": 1, + "unit": 5, + "client": 1, + "hello_popup": 2, + "Dom_html.window##alert": 1, + "Js.string": 1, + "_": 2, + "Example.register": 1, + "service": 1, + "fun": 9, + "-": 22, + "Lwt.return": 1, + "html": 1, + "head": 1, + "title": 1, + "pcdata": 4, + "body": 1, + "h1": 1, + ";": 14, + "p": 1, + "h2": 1, + "a": 4, + "a_onclick": 1, + "type": 2, + "Ops": 2, + "@": 6, + "f": 10, + "k": 21, + "|": 15, + "x": 14, + "List": 1, + "rec": 3, + "map": 3, + "l": 8, + "match": 4, + "with": 4, + "hd": 6, + "tl": 6, + "fold": 2, + "acc": 5, + "Option": 1, + "opt": 2, + "None": 5, + "Some": 5, + "Lazy": 1, + "option": 1, + "mutable": 1, + "waiters": 5, + "make": 1, + "push": 4, + "cps": 7, + "value": 3, + "force": 1, + "l.value": 2, + "when": 1, + "l.waiters": 5, + "<->": 3, + "function": 1, + "Base.List.iter": 1, + "l.push": 1, + "<": 1, + "get_state": 1, + "lazy_from_val": 1 + }, "Objective-C": { "//": 317, "#import": 53, @@ -48974,93 +48881,6 @@ "text": 1, "self.on": 1 }, - "OCaml": { - "{": 11, - "shared": 1, - "open": 4, - "Eliom_content": 1, - "Html5.D": 1, - "Eliom_parameter": 1, - "}": 13, - "server": 2, - "module": 5, - "Example": 1, - "Eliom_registration.App": 1, - "(": 21, - "struct": 5, - "let": 13, - "application_name": 1, - "end": 5, - ")": 23, - "main": 2, - "Eliom_service.service": 1, - "path": 1, - "[": 13, - "]": 13, - "get_params": 1, - "unit": 5, - "client": 1, - "hello_popup": 2, - "Dom_html.window##alert": 1, - "Js.string": 1, - "_": 2, - "Example.register": 1, - "service": 1, - "fun": 9, - "-": 22, - "Lwt.return": 1, - "html": 1, - "head": 1, - "title": 1, - "pcdata": 4, - "body": 1, - "h1": 1, - ";": 14, - "p": 1, - "h2": 1, - "a": 4, - "a_onclick": 1, - "type": 2, - "Ops": 2, - "@": 6, - "f": 10, - "k": 21, - "|": 15, - "x": 14, - "List": 1, - "rec": 3, - "map": 3, - "l": 8, - "match": 4, - "with": 4, - "hd": 6, - "tl": 6, - "fold": 2, - "acc": 5, - "Option": 1, - "opt": 2, - "None": 5, - "Some": 5, - "Lazy": 1, - "option": 1, - "mutable": 1, - "waiters": 5, - "make": 1, - "push": 4, - "cps": 7, - "value": 3, - "force": 1, - "l.value": 2, - "when": 1, - "l.waiters": 5, - "<->": 3, - "function": 1, - "Base.List.iter": 1, - "l.push": 1, - "<": 1, - "get_state": 1, - "lazy_from_val": 1 - }, "Omgrofl": { "lol": 14, "iz": 11, @@ -49929,107 +49749,6 @@ "": 1, "": 1 }, - "Pan": { - "object": 1, - "template": 1, - "pantest": 1, - ";": 32, - "xFF": 1, - "e": 2, - "-": 2, - "E10": 1, - "variable": 4, - "TEST": 2, - "to_string": 1, - "(": 8, - ")": 8, - "+": 2, - "value": 1, - "undef": 1, - "null": 1, - "error": 1, - "include": 1, - "{": 5, - "}": 5, - "pkg_repl": 2, - "PKG_ARCH_DEFAULT": 1, - "function": 1, - "show_things_view_for_stuff": 1, - "thing": 2, - "ARGV": 1, - "[": 2, - "]": 2, - "foreach": 1, - "i": 1, - "mything": 2, - "STUFF": 1, - "if": 1, - "return": 2, - "true": 2, - "else": 1, - "SELF": 1, - "false": 2, - "HERE": 1, - "<<": 1, - "EOF": 2, - "This": 1, - "example": 1, - "demonstrates": 1, - "an": 1, - "in": 1, - "line": 1, - "heredoc": 1, - "style": 1, - "config": 1, - "file": 1, - "main": 1, - "awesome": 1, - "small": 1, - "#This": 1, - "should": 1, - "be": 1, - "highlighted": 1, - "normally": 1, - "again.": 1 - }, - "Parrot Assembly": { - "SHEBANG#!parrot": 1, - ".pcc_sub": 1, - "main": 2, - "say": 1, - "end": 1 - }, - "Parrot Internal Representation": { - "SHEBANG#!parrot": 1, - ".sub": 1, - "main": 1, - "say": 1, - ".end": 1 - }, - "Pascal": { - "program": 1, - "gmail": 1, - ";": 6, - "uses": 1, - "Forms": 1, - "Unit2": 1, - "in": 1, - "{": 2, - "Form2": 2, - "}": 2, - "R": 1, - "*.res": 1, - "begin": 1, - "Application.Initialize": 1, - "Application.MainFormOnTaskbar": 1, - "True": 1, - "Application.CreateForm": 1, - "(": 1, - "TForm2": 1, - ")": 1, - "Application.Run": 1, - "end.": 1 - }, "PAWN": { "//": 22, "-": 1551, @@ -50189,6 +49908,1155 @@ "WEAPON_MINIGUN": 1, "Kick": 1 }, + "PHP": { + "<": 11, + "php": 12, + "namespace": 28, + "Symfony": 24, + "Component": 24, + "Console": 17, + ";": 1383, + "use": 23, + "Input": 6, + "InputInterface": 4, + "ArgvInput": 2, + "ArrayInput": 3, + "InputDefinition": 2, + "InputOption": 15, + "InputArgument": 3, + "Output": 5, + "OutputInterface": 6, + "ConsoleOutput": 2, + "ConsoleOutputInterface": 2, + "Command": 6, + "HelpCommand": 2, + "ListCommand": 2, + "Helper": 3, + "HelperSet": 3, + "FormatterHelper": 2, + "DialogHelper": 2, + "class": 21, + "Application": 3, + "{": 974, + "private": 24, + "commands": 39, + "wantHelps": 4, + "false": 154, + "runningCommand": 5, + "name": 181, + "version": 8, + "catchExceptions": 4, + "autoExit": 4, + "definition": 3, + "helperSet": 6, + "public": 202, + "function": 205, + "__construct": 8, + "(": 2416, + ")": 2417, + "this": 928, + "-": 1271, + "true": 133, + "array": 296, + "getDefaultHelperSet": 2, + "getDefaultInputDefinition": 2, + "foreach": 94, + "getDefaultCommands": 2, + "as": 96, + "command": 41, + "add": 7, + "}": 972, + "run": 4, + "input": 20, + "null": 164, + "output": 60, + "if": 450, + "new": 74, + "try": 3, + "statusCode": 14, + "doRun": 2, + "catch": 3, + "Exception": 1, + "e": 18, + "throw": 19, + "instanceof": 8, + "renderException": 3, + "getErrorOutput": 2, + "else": 70, + "getCode": 1, + "is_numeric": 7, + "&&": 119, + "exit": 7, + "return": 305, + "getCommandName": 2, + "hasParameterOption": 7, + "setDecorated": 2, + "elseif": 31, + "setInteractive": 2, + "function_exists": 4, + "getHelperSet": 3, + "has": 7, + "inputStream": 2, + "get": 12, + "getInputStream": 1, + "posix_isatty": 1, + "setVerbosity": 2, + "VERBOSITY_QUIET": 1, + "VERBOSITY_VERBOSE": 2, + "writeln": 13, + "getLongVersion": 3, + "find": 17, + "setHelperSet": 1, + "getDefinition": 2, + "getHelp": 2, + "messages": 16, + "sprintf": 27, + "getOptions": 1, + "option": 5, + "[": 672, + "]": 672, + ".": 169, + "getName": 14, + "getShortcut": 2, + "getDescription": 3, + "implode": 8, + "PHP_EOL": 3, + "setCatchExceptions": 1, + "boolean": 4, + "Boolean": 4, + "setAutoExit": 1, + "setName": 1, + "getVersion": 3, + "setVersion": 1, + "register": 1, + "addCommands": 1, + "setApplication": 2, + "isEnabled": 1, + "getAliases": 3, + "alias": 87, + "isset": 101, + "InvalidArgumentException": 9, + "helpCommand": 3, + "setCommand": 1, + "getNamespaces": 3, + "namespaces": 4, + "extractNamespace": 7, + "array_values": 5, + "array_unique": 4, + "array_filter": 2, + "findNamespace": 4, + "allNamespaces": 3, + "n": 12, + "explode": 9, + "found": 4, + "i": 36, + "part": 10, + "abbrevs": 31, + "static": 6, + "getAbbreviations": 4, + "array_map": 2, + "p": 3, + "message": 12, + "<=>": 3, + "alternatives": 10, + "findAlternativeNamespace": 2, + "count": 32, + "getAbbreviationSuggestions": 4, + "searchName": 13, + "pos": 3, + "strrpos": 2, + "substr": 6, + "namespace.substr": 1, + "suggestions": 2, + "aliases": 8, + "findAlternativeCommands": 2, + "all": 11, + "substr_count": 1, + "+": 12, + "names": 3, + "for": 8, + "len": 11, + "strlen": 14, + "abbrev": 4, + "asText": 1, + "raw": 2, + "width": 7, + "sortCommands": 4, + "space": 5, + "space.": 1, + "asXml": 2, + "asDom": 2, + "dom": 12, + "DOMDocument": 2, + "formatOutput": 1, + "appendChild": 10, + "xml": 5, + "createElement": 6, + "commandsXML": 3, + "setAttribute": 2, + "namespacesXML": 3, + "namespaceArrayXML": 4, + "continue": 7, + "commandXML": 3, + "createTextNode": 1, + "node": 42, + "getElementsByTagName": 1, + "item": 9, + "importNode": 3, + "saveXml": 1, + "string": 5, + "encoding": 2, + "mb_detect_encoding": 1, + "mb_strlen": 1, + "do": 2, + "title": 3, + "get_class": 4, + "getTerminalWidth": 3, + "PHP_INT_MAX": 1, + "lines": 3, + "preg_split": 1, + "getMessage": 1, + "line": 10, + "str_split": 1, + "max": 2, + "str_repeat": 2, + "title.str_repeat": 1, + "line.str_repeat": 1, + "message.": 1, + "getVerbosity": 1, + "trace": 12, + "getTrace": 1, + "array_unshift": 2, + "getFile": 2, + "getLine": 2, + "type": 62, + "file": 3, + "while": 6, + "getPrevious": 1, + "getSynopsis": 1, + "protected": 59, + "defined": 5, + "ansicon": 4, + "getenv": 2, + "preg_replace": 4, + "preg_match": 6, + "getSttyColumns": 3, + "match": 4, + "getTerminalHeight": 1, + "trim": 3, + "getFirstArgument": 1, + "REQUIRED": 1, + "VALUE_NONE": 7, + "descriptorspec": 2, + "process": 10, + "proc_open": 1, + "pipes": 4, + "is_resource": 1, + "info": 5, + "stream_get_contents": 1, + "fclose": 2, + "proc_close": 1, + "namespacedCommands": 5, + "key": 64, + "ksort": 2, + "&": 19, + "limit": 3, + "parts": 4, + "array_pop": 1, + "array_slice": 1, + "callback": 5, + "findAlternatives": 3, + "collection": 3, + "call_user_func": 2, + "lev": 6, + "levenshtein": 2, + "3": 1, + "strpos": 15, + "values": 53, + "/": 1, + "||": 52, + "value": 53, + "asort": 1, + "array_keys": 7, + "BrowserKit": 1, + "DomCrawler": 5, + "Crawler": 2, + "Link": 3, + "Form": 4, + "Process": 1, + "PhpProcess": 2, + "abstract": 2, + "Client": 1, + "history": 15, + "cookieJar": 9, + "server": 20, + "request": 76, + "response": 33, + "crawler": 7, + "insulated": 7, + "redirect": 6, + "followRedirects": 5, + "History": 2, + "CookieJar": 2, + "setServerParameters": 2, + "followRedirect": 4, + "insulate": 1, + "class_exists": 2, + "RuntimeException": 2, + "array_merge": 32, + "setServerParameter": 1, + "getServerParameter": 1, + "default": 9, + "getHistory": 1, + "getCookieJar": 1, + "getCrawler": 1, + "getResponse": 1, + "getRequest": 1, + "click": 1, + "link": 10, + "submit": 2, + "getMethod": 6, + "getUri": 8, + "form": 7, + "setValues": 2, + "getPhpValues": 2, + "getPhpFiles": 2, + "method": 31, + "uri": 23, + "parameters": 4, + "files": 7, + "content": 4, + "changeHistory": 4, + "getAbsoluteUri": 2, + "isEmpty": 2, + "current": 4, + "parse_url": 3, + "PHP_URL_HOST": 1, + "PHP_URL_SCHEME": 1, + "Request": 3, + "allValues": 1, + "filterRequest": 2, + "doRequestInProcess": 2, + "doRequest": 2, + "filterResponse": 2, + "updateFromResponse": 1, + "getHeader": 2, + "createCrawlerFromContent": 2, + "getContent": 2, + "getScript": 2, + "sys_get_temp_dir": 2, + "isSuccessful": 1, + "getOutput": 3, + "unserialize": 1, + "LogicException": 4, + "addContent": 1, + "back": 2, + "requestFromRequest": 4, + "forward": 2, + "reload": 1, + "empty": 96, + "restart": 1, + "clear": 2, + "currentUri": 7, + "path": 20, + "PHP_URL_PATH": 1, + "path.": 1, + "getParameters": 1, + "getFiles": 3, + "getServer": 1, + "": 3, + "CakePHP": 6, + "tm": 6, + "Rapid": 2, + "Development": 2, + "Framework": 2, + "http": 14, + "cakephp": 4, + "org": 10, + "Copyright": 5, + "2005": 4, + "2012": 4, + "Cake": 7, + "Software": 5, + "Foundation": 4, + "Inc": 4, + "cakefoundation": 4, + "Licensed": 2, + "under": 2, + "The": 4, + "MIT": 4, + "License": 4, + "Redistributions": 2, + "of": 10, + "must": 2, + "retain": 2, + "the": 11, + "above": 2, + "copyright": 5, + "notice": 2, + "Project": 2, + "package": 2, + "Controller": 4, + "since": 2, + "v": 17, + "0": 4, + "2": 2, + "9": 1, + "license": 6, + "www": 4, + "opensource": 2, + "licenses": 2, + "mit": 2, + "App": 20, + "uses": 46, + "CakeResponse": 2, + "Network": 1, + "ClassRegistry": 9, + "Utility": 6, + "ComponentCollection": 2, + "View": 9, + "CakeEvent": 13, + "Event": 6, + "CakeEventListener": 4, + "CakeEventManager": 5, + "controller": 3, + "organization": 1, + "business": 1, + "logic": 1, + "Provides": 1, + "basic": 1, + "functionality": 1, + "such": 1, + "rendering": 1, + "views": 1, + "inside": 1, + "layouts": 1, + "automatic": 1, + "model": 34, + "availability": 1, + "redirection": 2, + "callbacks": 4, + "and": 5, + "more": 1, + "Controllers": 2, + "should": 1, + "provide": 1, + "a": 11, + "number": 1, + "action": 7, + "methods": 5, + "These": 1, + "are": 5, + "on": 4, + "that": 2, + "not": 2, + "prefixed": 1, + "with": 5, + "_": 1, + "Each": 1, + "serves": 1, + "an": 1, + "endpoint": 1, + "performing": 2, + "specific": 1, + "resource": 1, + "or": 9, + "resources": 1, + "For": 2, + "example": 2, + "adding": 1, + "editing": 1, + "object": 14, + "listing": 1, + "set": 26, + "objects": 5, + "You": 2, + "can": 2, + "access": 1, + "using": 2, + "contains": 1, + "POST": 1, + "GET": 1, + "FILES": 1, + "*": 25, + "were": 1, + "request.": 1, + "After": 1, + "required": 2, + "actions": 2, + "controllers": 2, + "responsible": 1, + "creating": 1, + "response.": 2, + "This": 1, + "usually": 1, + "takes": 1, + "generated": 1, + "possibly": 1, + "to": 6, + "another": 1, + "action.": 1, + "In": 1, + "either": 1, + "case": 31, + "allows": 1, + "you": 1, + "manipulate": 1, + "aspects": 1, + "created": 8, + "by": 2, + "Dispatcher": 1, + "based": 2, + "routing.": 1, + "By": 1, + "conventional": 1, + "names.": 1, + "/posts/index": 1, + "maps": 1, + "PostsController": 1, + "index": 5, + "re": 1, + "map": 1, + "urls": 1, + "Router": 5, + "connect": 1, + "@package": 2, + "Cake.Controller": 1, + "@property": 8, + "AclComponent": 1, + "Acl": 1, + "AuthComponent": 1, + "Auth": 1, + "CookieComponent": 1, + "Cookie": 1, + "EmailComponent": 1, + "Email": 1, + "PaginatorComponent": 1, + "Paginator": 1, + "RequestHandlerComponent": 1, + "RequestHandler": 1, + "SecurityComponent": 1, + "Security": 1, + "SessionComponent": 1, + "Session": 1, + "@link": 2, + "//book.cakephp.org/2.0/en/controllers.html": 1, + "*/": 2, + "extends": 3, + "Object": 4, + "implements": 3, + "helpers": 1, + "_responseClass": 1, + "viewPath": 3, + "layoutPath": 1, + "viewVars": 3, + "view": 5, + "layout": 5, + "autoRender": 6, + "autoLayout": 2, + "Components": 7, + "components": 1, + "viewClass": 10, + "ext": 1, + "plugin": 31, + "cacheAction": 1, + "passedArgs": 2, + "scaffold": 2, + "modelClass": 25, + "modelKey": 2, + "validationErrors": 50, + "_mergeParent": 4, + "_eventManager": 12, + "Inflector": 12, + "singularize": 4, + "underscore": 3, + "childMethods": 2, + "get_class_methods": 2, + "parentMethods": 2, + "array_diff": 3, + "CakeRequest": 5, + "setRequest": 2, + "parent": 14, + "__isset": 2, + "switch": 6, + "is_array": 37, + "list": 29, + "pluginSplit": 12, + "loadModel": 3, + "__get": 2, + "params": 34, + "load": 3, + "settings": 2, + "__set": 1, + "camelize": 3, + "array_key_exists": 11, + "invokeAction": 1, + "ReflectionMethod": 2, + "_isPrivateAction": 2, + "PrivateActionException": 1, + "invokeArgs": 1, + "ReflectionException": 1, + "_getScaffold": 2, + "MissingActionException": 1, + "privateAction": 4, + "isPublic": 1, + "in_array": 26, + "prefixes": 4, + "prefix": 2, + "Scaffold": 1, + "_mergeControllerVars": 2, + "pluginController": 9, + "pluginDot": 4, + "mergeParent": 2, + "is_subclass_of": 3, + "pluginVars": 3, + "appVars": 6, + "merge": 12, + "_mergeVars": 5, + "get_class_vars": 2, + "_mergeUses": 3, + "implementedEvents": 2, + "constructClasses": 1, + "init": 4, + "getEventManager": 13, + "attach": 4, + "startupProcess": 1, + "dispatch": 11, + "shutdownProcess": 1, + "httpCodes": 3, + "code": 4, + "id": 82, + "MissingModelException": 1, + "url": 18, + "status": 15, + "extract": 9, + "EXTR_OVERWRITE": 3, + "event": 35, + "//TODO": 1, + "Remove": 1, + "following": 1, + "when": 1, + "events": 1, + "fully": 1, + "migrated": 1, + "break": 19, + "breakOn": 4, + "collectReturn": 1, + "isStopped": 4, + "result": 21, + "_parseBeforeRedirect": 2, + "session_write_close": 1, + "header": 3, + "is_string": 7, + "codes": 3, + "array_flip": 1, + "send": 1, + "_stop": 1, + "resp": 6, + "compact": 8, + "one": 19, + "two": 6, + "data": 187, + "array_combine": 2, + "setAction": 1, + "args": 5, + "func_get_args": 5, + "unset": 22, + "call_user_func_array": 3, + "validate": 9, + "errors": 9, + "validateErrors": 1, + "invalidFields": 2, + "render": 3, + "className": 27, + "models": 6, + "keys": 19, + "currentModel": 2, + "currentObject": 6, + "getObject": 1, + "is_a": 1, + "location": 1, + "body": 1, + "referer": 5, + "local": 2, + "disableCache": 2, + "flash": 1, + "pause": 2, + "postConditions": 1, + "op": 9, + "bool": 5, + "exclusive": 2, + "cond": 5, + "arrayOp": 2, + "fields": 60, + "field": 88, + "fieldOp": 11, + "strtoupper": 3, + "paginate": 3, + "scope": 2, + "whitelist": 14, + "beforeFilter": 1, + "beforeRender": 1, + "beforeRedirect": 1, + "afterFilter": 1, + "beforeScaffold": 2, + "_beforeScaffold": 1, + "afterScaffoldSave": 2, + "_afterScaffoldSave": 1, + "afterScaffoldSaveError": 2, + "_afterScaffoldSaveError": 1, + "scaffoldError": 2, + "_scaffoldError": 1, + "php_help": 1, + "arg": 1, + "t": 26, + "php_permission": 1, + "TRUE": 1, + "php_eval": 1, + "global": 2, + "theme_path": 5, + "theme_info": 3, + "conf": 2, + "old_theme_path": 2, + "drupal_get_path": 1, + "dirname": 1, + "filename": 1, + "ob_start": 1, + "print": 1, + "eval": 1, + "ob_get_contents": 1, + "ob_end_clean": 1, + "_php_filter_tips": 1, + "filter": 1, + "format": 3, + "long": 2, + "FALSE": 2, + "base_url": 1, + "php_filter_info": 1, + "filters": 2, + "Field": 9, + "FormField": 3, + "ArrayAccess": 1, + "button": 6, + "DOMNode": 3, + "initialize": 2, + "getFormNode": 1, + "getValues": 3, + "isDisabled": 2, + "FileFormField": 3, + "hasValue": 1, + "getValue": 2, + "qs": 4, + "http_build_query": 3, + "parse_str": 2, + "queryString": 2, + "sep": 1, + "sep.": 1, + "getRawUri": 1, + "getAttribute": 10, + "remove": 4, + "offsetExists": 1, + "offsetGet": 1, + "offsetSet": 1, + "offsetUnset": 1, + "setNode": 1, + "nodeName": 13, + "parentNode": 1, + "FormFieldRegistry": 2, + "document": 6, + "root": 4, + "xpath": 2, + "DOMXPath": 1, + "query": 102, + "hasAttribute": 1, + "InputFormField": 2, + "ChoiceFormField": 2, + "addChoice": 1, + "TextareaFormField": 1, + "base": 8, + "segments": 13, + "getSegments": 4, + "target": 20, + "array_shift": 5, + "self": 1, + "create": 13, + "k": 7, + "setValue": 1, + "walk": 3, + "registry": 4, + "m": 5, + "relational": 2, + "mapper": 2, + "DBO": 2, + "backed": 2, + "mapping": 1, + "database": 2, + "tables": 5, + "PHP": 1, + "versions": 1, + "5": 1, + "Model": 5, + "10": 1, + "Validation": 1, + "String": 5, + "Set": 9, + "BehaviorCollection": 2, + "ModelBehavior": 1, + "ConnectionManager": 2, + "Xml": 2, + "Automatically": 1, + "selects": 1, + "table": 21, + "pluralized": 1, + "lowercase": 1, + "User": 1, + "is": 1, + "have": 2, + "at": 1, + "least": 1, + "primary": 3, + "key.": 1, + "Cake.Model": 1, + "//book.cakephp.org/2.0/en/models.html": 1, + "useDbConfig": 7, + "useTable": 12, + "displayField": 4, + "schemaName": 1, + "primaryKey": 38, + "_schema": 11, + "validationDomain": 1, + "tablePrefix": 8, + "tableToModel": 4, + "cacheQueries": 1, + "belongsTo": 7, + "hasOne": 2, + "hasMany": 2, + "hasAndBelongsToMany": 24, + "actsAs": 2, + "Behaviors": 6, + "cacheSources": 7, + "findQueryType": 3, + "recursive": 9, + "order": 4, + "virtualFields": 8, + "_associationKeys": 2, + "_associations": 5, + "__backAssociation": 22, + "__backInnerAssociation": 1, + "__backOriginalAssociation": 1, + "__backContainableAssociation": 1, + "_insertID": 1, + "_sourceConfigured": 1, + "findMethods": 3, + "ds": 3, + "addObject": 2, + "parentClass": 3, + "get_parent_class": 1, + "tableize": 2, + "_createLinks": 3, + "__call": 1, + "dispatchMethod": 1, + "getDataSource": 15, + "relation": 7, + "assocKey": 13, + "dynamic": 2, + "isKeySet": 1, + "AppModel": 1, + "_constructLinkedModel": 2, + "schema": 11, + "hasField": 7, + "setDataSource": 2, + "property_exists": 3, + "bindModel": 1, + "reset": 6, + "assoc": 75, + "assocName": 6, + "unbindModel": 1, + "_generateAssociation": 2, + "dynamicWith": 3, + "sort": 1, + "setSource": 1, + "tableName": 4, + "db": 45, + "method_exists": 5, + "sources": 3, + "listSources": 1, + "strtolower": 1, + "MissingTableException": 1, + "is_object": 2, + "SimpleXMLElement": 1, + "_normalizeXmlData": 3, + "toArray": 1, + "reverse": 1, + "_setAliasData": 2, + "modelName": 3, + "fieldSet": 3, + "fieldName": 6, + "fieldValue": 7, + "deconstruct": 2, + "getAssociated": 4, + "getColumnType": 4, + "useNewDate": 2, + "dateFields": 5, + "timeFields": 2, + "date": 9, + "val": 27, + "columns": 5, + "str_replace": 3, + "describe": 1, + "getColumnTypes": 1, + "trigger_error": 1, + "__d": 1, + "E_USER_WARNING": 1, + "cols": 7, + "column": 10, + "startQuote": 4, + "endQuote": 4, + "checkVirtual": 3, + "isVirtualField": 3, + "hasMethod": 2, + "getVirtualField": 1, + "filterKey": 2, + "defaults": 6, + "properties": 4, + "read": 2, + "conditions": 41, + "saveField": 1, + "options": 85, + "save": 9, + "fieldList": 1, + "_whitelist": 4, + "keyPresentAndEmpty": 2, + "exists": 6, + "validates": 60, + "updateCol": 6, + "colType": 4, + "time": 3, + "strtotime": 1, + "joined": 5, + "x": 4, + "y": 2, + "success": 10, + "cache": 2, + "_prepareUpdateFields": 2, + "update": 2, + "fInfo": 4, + "isUUID": 5, + "j": 2, + "array_search": 1, + "uuid": 3, + "updateCounterCache": 6, + "_saveMulti": 2, + "_clearCache": 2, + "join": 22, + "joinModel": 8, + "keyInfo": 4, + "withModel": 4, + "pluginName": 1, + "dbMulti": 6, + "newData": 5, + "newValues": 8, + "newJoins": 7, + "primaryAdded": 3, + "idField": 3, + "row": 17, + "keepExisting": 3, + "associationForeignKey": 5, + "links": 4, + "oldLinks": 4, + "delete": 9, + "oldJoin": 4, + "insertMulti": 1, + "foreignKey": 11, + "fkQuoted": 3, + "escapeField": 6, + "intval": 4, + "updateAll": 3, + "foreignKeys": 3, + "included": 3, + "array_intersect": 1, + "old": 2, + "saveAll": 1, + "numeric": 1, + "validateMany": 4, + "saveMany": 3, + "validateAssociated": 5, + "saveAssociated": 5, + "transactionBegun": 4, + "begin": 2, + "record": 10, + "saved": 18, + "commit": 2, + "rollback": 2, + "associations": 9, + "association": 47, + "notEmpty": 4, + "_return": 3, + "recordData": 2, + "cascade": 10, + "_deleteDependent": 3, + "_deleteLinks": 3, + "_collectForeignKeys": 2, + "savedAssociatons": 3, + "deleteAll": 2, + "records": 6, + "ids": 8, + "_id": 2, + "getID": 2, + "hasAny": 1, + "buildQuery": 2, + "is_null": 1, + "results": 22, + "resetAssociations": 3, + "_filterResults": 2, + "ucfirst": 2, + "modParams": 2, + "_findFirst": 1, + "state": 15, + "_findCount": 1, + "calculate": 2, + "expression": 1, + "_findList": 1, + "tokenize": 1, + "lst": 4, + "combine": 1, + "_findNeighbors": 1, + "prevVal": 2, + "return2": 6, + "_findThreaded": 1, + "nest": 1, + "isUnique": 1, + "is_bool": 1, + "sql": 1, + "SHEBANG#!php": 3, + "echo": 2, + "Yii": 3, + "console": 3, + "bootstrap": 1, + "yiiframework": 2, + "com": 2, + "c": 1, + "2008": 1, + "LLC": 1, + "YII_DEBUG": 2, + "define": 2, + "fcgi": 1, + "doesn": 1, + "STDIN": 3, + "fopen": 1, + "stdin": 1, + "r": 1, + "require": 3, + "__DIR__": 3, + "vendor": 2, + "yiisoft": 1, + "yii2": 1, + "yii": 2, + "autoload": 1, + "config": 3, + "application": 2 + }, + "Pan": { + "object": 1, + "template": 1, + "pantest": 1, + ";": 32, + "xFF": 1, + "e": 2, + "-": 2, + "E10": 1, + "variable": 4, + "TEST": 2, + "to_string": 1, + "(": 8, + ")": 8, + "+": 2, + "value": 1, + "undef": 1, + "null": 1, + "error": 1, + "include": 1, + "{": 5, + "}": 5, + "pkg_repl": 2, + "PKG_ARCH_DEFAULT": 1, + "function": 1, + "show_things_view_for_stuff": 1, + "thing": 2, + "ARGV": 1, + "[": 2, + "]": 2, + "foreach": 1, + "i": 1, + "mything": 2, + "STUFF": 1, + "if": 1, + "return": 2, + "true": 2, + "else": 1, + "SELF": 1, + "false": 2, + "HERE": 1, + "<<": 1, + "EOF": 2, + "This": 1, + "example": 1, + "demonstrates": 1, + "an": 1, + "in": 1, + "line": 1, + "heredoc": 1, + "style": 1, + "config": 1, + "file": 1, + "main": 1, + "awesome": 1, + "small": 1, + "#This": 1, + "should": 1, + "be": 1, + "highlighted": 1, + "normally": 1, + "again.": 1 + }, + "Parrot Assembly": { + "SHEBANG#!parrot": 1, + ".pcc_sub": 1, + "main": 2, + "say": 1, + "end": 1 + }, + "Parrot Internal Representation": { + "SHEBANG#!parrot": 1, + ".sub": 1, + "main": 1, + "say": 1, + ".end": 1 + }, + "Pascal": { + "program": 1, + "gmail": 1, + ";": 6, + "uses": 1, + "Forms": 1, + "Unit2": 1, + "in": 1, + "{": 2, + "Form2": 2, + "}": 2, + "R": 1, + "*.res": 1, + "begin": 1, + "Application.Initialize": 1, + "Application.MainFormOnTaskbar": 1, + "True": 1, + "Application.CreateForm": 1, + "(": 1, + "TForm2": 1, + ")": 1, + "Application.Run": 1, + "end.": 1 + }, "Perl": { "package": 14, "App": 131, @@ -52118,1054 +52986,6 @@ "": 1, "roleq": 1 }, - "PHP": { - "<": 11, - "php": 12, - "namespace": 28, - "Symfony": 24, - "Component": 24, - "Console": 17, - ";": 1383, - "use": 23, - "Input": 6, - "InputInterface": 4, - "ArgvInput": 2, - "ArrayInput": 3, - "InputDefinition": 2, - "InputOption": 15, - "InputArgument": 3, - "Output": 5, - "OutputInterface": 6, - "ConsoleOutput": 2, - "ConsoleOutputInterface": 2, - "Command": 6, - "HelpCommand": 2, - "ListCommand": 2, - "Helper": 3, - "HelperSet": 3, - "FormatterHelper": 2, - "DialogHelper": 2, - "class": 21, - "Application": 3, - "{": 974, - "private": 24, - "commands": 39, - "wantHelps": 4, - "false": 154, - "runningCommand": 5, - "name": 181, - "version": 8, - "catchExceptions": 4, - "autoExit": 4, - "definition": 3, - "helperSet": 6, - "public": 202, - "function": 205, - "__construct": 8, - "(": 2416, - ")": 2417, - "this": 928, - "-": 1271, - "true": 133, - "array": 296, - "getDefaultHelperSet": 2, - "getDefaultInputDefinition": 2, - "foreach": 94, - "getDefaultCommands": 2, - "as": 96, - "command": 41, - "add": 7, - "}": 972, - "run": 4, - "input": 20, - "null": 164, - "output": 60, - "if": 450, - "new": 74, - "try": 3, - "statusCode": 14, - "doRun": 2, - "catch": 3, - "Exception": 1, - "e": 18, - "throw": 19, - "instanceof": 8, - "renderException": 3, - "getErrorOutput": 2, - "else": 70, - "getCode": 1, - "is_numeric": 7, - "&&": 119, - "exit": 7, - "return": 305, - "getCommandName": 2, - "hasParameterOption": 7, - "setDecorated": 2, - "elseif": 31, - "setInteractive": 2, - "function_exists": 4, - "getHelperSet": 3, - "has": 7, - "inputStream": 2, - "get": 12, - "getInputStream": 1, - "posix_isatty": 1, - "setVerbosity": 2, - "VERBOSITY_QUIET": 1, - "VERBOSITY_VERBOSE": 2, - "writeln": 13, - "getLongVersion": 3, - "find": 17, - "setHelperSet": 1, - "getDefinition": 2, - "getHelp": 2, - "messages": 16, - "sprintf": 27, - "getOptions": 1, - "option": 5, - "[": 672, - "]": 672, - ".": 169, - "getName": 14, - "getShortcut": 2, - "getDescription": 3, - "implode": 8, - "PHP_EOL": 3, - "setCatchExceptions": 1, - "boolean": 4, - "Boolean": 4, - "setAutoExit": 1, - "setName": 1, - "getVersion": 3, - "setVersion": 1, - "register": 1, - "addCommands": 1, - "setApplication": 2, - "isEnabled": 1, - "getAliases": 3, - "alias": 87, - "isset": 101, - "InvalidArgumentException": 9, - "helpCommand": 3, - "setCommand": 1, - "getNamespaces": 3, - "namespaces": 4, - "extractNamespace": 7, - "array_values": 5, - "array_unique": 4, - "array_filter": 2, - "findNamespace": 4, - "allNamespaces": 3, - "n": 12, - "explode": 9, - "found": 4, - "i": 36, - "part": 10, - "abbrevs": 31, - "static": 6, - "getAbbreviations": 4, - "array_map": 2, - "p": 3, - "message": 12, - "<=>": 3, - "alternatives": 10, - "findAlternativeNamespace": 2, - "count": 32, - "getAbbreviationSuggestions": 4, - "searchName": 13, - "pos": 3, - "strrpos": 2, - "substr": 6, - "namespace.substr": 1, - "suggestions": 2, - "aliases": 8, - "findAlternativeCommands": 2, - "all": 11, - "substr_count": 1, - "+": 12, - "names": 3, - "for": 8, - "len": 11, - "strlen": 14, - "abbrev": 4, - "asText": 1, - "raw": 2, - "width": 7, - "sortCommands": 4, - "space": 5, - "space.": 1, - "asXml": 2, - "asDom": 2, - "dom": 12, - "DOMDocument": 2, - "formatOutput": 1, - "appendChild": 10, - "xml": 5, - "createElement": 6, - "commandsXML": 3, - "setAttribute": 2, - "namespacesXML": 3, - "namespaceArrayXML": 4, - "continue": 7, - "commandXML": 3, - "createTextNode": 1, - "node": 42, - "getElementsByTagName": 1, - "item": 9, - "importNode": 3, - "saveXml": 1, - "string": 5, - "encoding": 2, - "mb_detect_encoding": 1, - "mb_strlen": 1, - "do": 2, - "title": 3, - "get_class": 4, - "getTerminalWidth": 3, - "PHP_INT_MAX": 1, - "lines": 3, - "preg_split": 1, - "getMessage": 1, - "line": 10, - "str_split": 1, - "max": 2, - "str_repeat": 2, - "title.str_repeat": 1, - "line.str_repeat": 1, - "message.": 1, - "getVerbosity": 1, - "trace": 12, - "getTrace": 1, - "array_unshift": 2, - "getFile": 2, - "getLine": 2, - "type": 62, - "file": 3, - "while": 6, - "getPrevious": 1, - "getSynopsis": 1, - "protected": 59, - "defined": 5, - "ansicon": 4, - "getenv": 2, - "preg_replace": 4, - "preg_match": 6, - "getSttyColumns": 3, - "match": 4, - "getTerminalHeight": 1, - "trim": 3, - "getFirstArgument": 1, - "REQUIRED": 1, - "VALUE_NONE": 7, - "descriptorspec": 2, - "process": 10, - "proc_open": 1, - "pipes": 4, - "is_resource": 1, - "info": 5, - "stream_get_contents": 1, - "fclose": 2, - "proc_close": 1, - "namespacedCommands": 5, - "key": 64, - "ksort": 2, - "&": 19, - "limit": 3, - "parts": 4, - "array_pop": 1, - "array_slice": 1, - "callback": 5, - "findAlternatives": 3, - "collection": 3, - "call_user_func": 2, - "lev": 6, - "levenshtein": 2, - "3": 1, - "strpos": 15, - "values": 53, - "/": 1, - "||": 52, - "value": 53, - "asort": 1, - "array_keys": 7, - "BrowserKit": 1, - "DomCrawler": 5, - "Crawler": 2, - "Link": 3, - "Form": 4, - "Process": 1, - "PhpProcess": 2, - "abstract": 2, - "Client": 1, - "history": 15, - "cookieJar": 9, - "server": 20, - "request": 76, - "response": 33, - "crawler": 7, - "insulated": 7, - "redirect": 6, - "followRedirects": 5, - "History": 2, - "CookieJar": 2, - "setServerParameters": 2, - "followRedirect": 4, - "insulate": 1, - "class_exists": 2, - "RuntimeException": 2, - "array_merge": 32, - "setServerParameter": 1, - "getServerParameter": 1, - "default": 9, - "getHistory": 1, - "getCookieJar": 1, - "getCrawler": 1, - "getResponse": 1, - "getRequest": 1, - "click": 1, - "link": 10, - "submit": 2, - "getMethod": 6, - "getUri": 8, - "form": 7, - "setValues": 2, - "getPhpValues": 2, - "getPhpFiles": 2, - "method": 31, - "uri": 23, - "parameters": 4, - "files": 7, - "content": 4, - "changeHistory": 4, - "getAbsoluteUri": 2, - "isEmpty": 2, - "current": 4, - "parse_url": 3, - "PHP_URL_HOST": 1, - "PHP_URL_SCHEME": 1, - "Request": 3, - "allValues": 1, - "filterRequest": 2, - "doRequestInProcess": 2, - "doRequest": 2, - "filterResponse": 2, - "updateFromResponse": 1, - "getHeader": 2, - "createCrawlerFromContent": 2, - "getContent": 2, - "getScript": 2, - "sys_get_temp_dir": 2, - "isSuccessful": 1, - "getOutput": 3, - "unserialize": 1, - "LogicException": 4, - "addContent": 1, - "back": 2, - "requestFromRequest": 4, - "forward": 2, - "reload": 1, - "empty": 96, - "restart": 1, - "clear": 2, - "currentUri": 7, - "path": 20, - "PHP_URL_PATH": 1, - "path.": 1, - "getParameters": 1, - "getFiles": 3, - "getServer": 1, - "": 3, - "CakePHP": 6, - "tm": 6, - "Rapid": 2, - "Development": 2, - "Framework": 2, - "http": 14, - "cakephp": 4, - "org": 10, - "Copyright": 5, - "2005": 4, - "2012": 4, - "Cake": 7, - "Software": 5, - "Foundation": 4, - "Inc": 4, - "cakefoundation": 4, - "Licensed": 2, - "under": 2, - "The": 4, - "MIT": 4, - "License": 4, - "Redistributions": 2, - "of": 10, - "must": 2, - "retain": 2, - "the": 11, - "above": 2, - "copyright": 5, - "notice": 2, - "Project": 2, - "package": 2, - "Controller": 4, - "since": 2, - "v": 17, - "0": 4, - "2": 2, - "9": 1, - "license": 6, - "www": 4, - "opensource": 2, - "licenses": 2, - "mit": 2, - "App": 20, - "uses": 46, - "CakeResponse": 2, - "Network": 1, - "ClassRegistry": 9, - "Utility": 6, - "ComponentCollection": 2, - "View": 9, - "CakeEvent": 13, - "Event": 6, - "CakeEventListener": 4, - "CakeEventManager": 5, - "controller": 3, - "organization": 1, - "business": 1, - "logic": 1, - "Provides": 1, - "basic": 1, - "functionality": 1, - "such": 1, - "rendering": 1, - "views": 1, - "inside": 1, - "layouts": 1, - "automatic": 1, - "model": 34, - "availability": 1, - "redirection": 2, - "callbacks": 4, - "and": 5, - "more": 1, - "Controllers": 2, - "should": 1, - "provide": 1, - "a": 11, - "number": 1, - "action": 7, - "methods": 5, - "These": 1, - "are": 5, - "on": 4, - "that": 2, - "not": 2, - "prefixed": 1, - "with": 5, - "_": 1, - "Each": 1, - "serves": 1, - "an": 1, - "endpoint": 1, - "performing": 2, - "specific": 1, - "resource": 1, - "or": 9, - "resources": 1, - "For": 2, - "example": 2, - "adding": 1, - "editing": 1, - "object": 14, - "listing": 1, - "set": 26, - "objects": 5, - "You": 2, - "can": 2, - "access": 1, - "using": 2, - "contains": 1, - "POST": 1, - "GET": 1, - "FILES": 1, - "*": 25, - "were": 1, - "request.": 1, - "After": 1, - "required": 2, - "actions": 2, - "controllers": 2, - "responsible": 1, - "creating": 1, - "response.": 2, - "This": 1, - "usually": 1, - "takes": 1, - "generated": 1, - "possibly": 1, - "to": 6, - "another": 1, - "action.": 1, - "In": 1, - "either": 1, - "case": 31, - "allows": 1, - "you": 1, - "manipulate": 1, - "aspects": 1, - "created": 8, - "by": 2, - "Dispatcher": 1, - "based": 2, - "routing.": 1, - "By": 1, - "conventional": 1, - "names.": 1, - "/posts/index": 1, - "maps": 1, - "PostsController": 1, - "index": 5, - "re": 1, - "map": 1, - "urls": 1, - "Router": 5, - "connect": 1, - "@package": 2, - "Cake.Controller": 1, - "@property": 8, - "AclComponent": 1, - "Acl": 1, - "AuthComponent": 1, - "Auth": 1, - "CookieComponent": 1, - "Cookie": 1, - "EmailComponent": 1, - "Email": 1, - "PaginatorComponent": 1, - "Paginator": 1, - "RequestHandlerComponent": 1, - "RequestHandler": 1, - "SecurityComponent": 1, - "Security": 1, - "SessionComponent": 1, - "Session": 1, - "@link": 2, - "//book.cakephp.org/2.0/en/controllers.html": 1, - "*/": 2, - "extends": 3, - "Object": 4, - "implements": 3, - "helpers": 1, - "_responseClass": 1, - "viewPath": 3, - "layoutPath": 1, - "viewVars": 3, - "view": 5, - "layout": 5, - "autoRender": 6, - "autoLayout": 2, - "Components": 7, - "components": 1, - "viewClass": 10, - "ext": 1, - "plugin": 31, - "cacheAction": 1, - "passedArgs": 2, - "scaffold": 2, - "modelClass": 25, - "modelKey": 2, - "validationErrors": 50, - "_mergeParent": 4, - "_eventManager": 12, - "Inflector": 12, - "singularize": 4, - "underscore": 3, - "childMethods": 2, - "get_class_methods": 2, - "parentMethods": 2, - "array_diff": 3, - "CakeRequest": 5, - "setRequest": 2, - "parent": 14, - "__isset": 2, - "switch": 6, - "is_array": 37, - "list": 29, - "pluginSplit": 12, - "loadModel": 3, - "__get": 2, - "params": 34, - "load": 3, - "settings": 2, - "__set": 1, - "camelize": 3, - "array_key_exists": 11, - "invokeAction": 1, - "ReflectionMethod": 2, - "_isPrivateAction": 2, - "PrivateActionException": 1, - "invokeArgs": 1, - "ReflectionException": 1, - "_getScaffold": 2, - "MissingActionException": 1, - "privateAction": 4, - "isPublic": 1, - "in_array": 26, - "prefixes": 4, - "prefix": 2, - "Scaffold": 1, - "_mergeControllerVars": 2, - "pluginController": 9, - "pluginDot": 4, - "mergeParent": 2, - "is_subclass_of": 3, - "pluginVars": 3, - "appVars": 6, - "merge": 12, - "_mergeVars": 5, - "get_class_vars": 2, - "_mergeUses": 3, - "implementedEvents": 2, - "constructClasses": 1, - "init": 4, - "getEventManager": 13, - "attach": 4, - "startupProcess": 1, - "dispatch": 11, - "shutdownProcess": 1, - "httpCodes": 3, - "code": 4, - "id": 82, - "MissingModelException": 1, - "url": 18, - "status": 15, - "extract": 9, - "EXTR_OVERWRITE": 3, - "event": 35, - "//TODO": 1, - "Remove": 1, - "following": 1, - "when": 1, - "events": 1, - "fully": 1, - "migrated": 1, - "break": 19, - "breakOn": 4, - "collectReturn": 1, - "isStopped": 4, - "result": 21, - "_parseBeforeRedirect": 2, - "session_write_close": 1, - "header": 3, - "is_string": 7, - "codes": 3, - "array_flip": 1, - "send": 1, - "_stop": 1, - "resp": 6, - "compact": 8, - "one": 19, - "two": 6, - "data": 187, - "array_combine": 2, - "setAction": 1, - "args": 5, - "func_get_args": 5, - "unset": 22, - "call_user_func_array": 3, - "validate": 9, - "errors": 9, - "validateErrors": 1, - "invalidFields": 2, - "render": 3, - "className": 27, - "models": 6, - "keys": 19, - "currentModel": 2, - "currentObject": 6, - "getObject": 1, - "is_a": 1, - "location": 1, - "body": 1, - "referer": 5, - "local": 2, - "disableCache": 2, - "flash": 1, - "pause": 2, - "postConditions": 1, - "op": 9, - "bool": 5, - "exclusive": 2, - "cond": 5, - "arrayOp": 2, - "fields": 60, - "field": 88, - "fieldOp": 11, - "strtoupper": 3, - "paginate": 3, - "scope": 2, - "whitelist": 14, - "beforeFilter": 1, - "beforeRender": 1, - "beforeRedirect": 1, - "afterFilter": 1, - "beforeScaffold": 2, - "_beforeScaffold": 1, - "afterScaffoldSave": 2, - "_afterScaffoldSave": 1, - "afterScaffoldSaveError": 2, - "_afterScaffoldSaveError": 1, - "scaffoldError": 2, - "_scaffoldError": 1, - "php_help": 1, - "arg": 1, - "t": 26, - "php_permission": 1, - "TRUE": 1, - "php_eval": 1, - "global": 2, - "theme_path": 5, - "theme_info": 3, - "conf": 2, - "old_theme_path": 2, - "drupal_get_path": 1, - "dirname": 1, - "filename": 1, - "ob_start": 1, - "print": 1, - "eval": 1, - "ob_get_contents": 1, - "ob_end_clean": 1, - "_php_filter_tips": 1, - "filter": 1, - "format": 3, - "long": 2, - "FALSE": 2, - "base_url": 1, - "php_filter_info": 1, - "filters": 2, - "Field": 9, - "FormField": 3, - "ArrayAccess": 1, - "button": 6, - "DOMNode": 3, - "initialize": 2, - "getFormNode": 1, - "getValues": 3, - "isDisabled": 2, - "FileFormField": 3, - "hasValue": 1, - "getValue": 2, - "qs": 4, - "http_build_query": 3, - "parse_str": 2, - "queryString": 2, - "sep": 1, - "sep.": 1, - "getRawUri": 1, - "getAttribute": 10, - "remove": 4, - "offsetExists": 1, - "offsetGet": 1, - "offsetSet": 1, - "offsetUnset": 1, - "setNode": 1, - "nodeName": 13, - "parentNode": 1, - "FormFieldRegistry": 2, - "document": 6, - "root": 4, - "xpath": 2, - "DOMXPath": 1, - "query": 102, - "hasAttribute": 1, - "InputFormField": 2, - "ChoiceFormField": 2, - "addChoice": 1, - "TextareaFormField": 1, - "base": 8, - "segments": 13, - "getSegments": 4, - "target": 20, - "array_shift": 5, - "self": 1, - "create": 13, - "k": 7, - "setValue": 1, - "walk": 3, - "registry": 4, - "m": 5, - "relational": 2, - "mapper": 2, - "DBO": 2, - "backed": 2, - "mapping": 1, - "database": 2, - "tables": 5, - "PHP": 1, - "versions": 1, - "5": 1, - "Model": 5, - "10": 1, - "Validation": 1, - "String": 5, - "Set": 9, - "BehaviorCollection": 2, - "ModelBehavior": 1, - "ConnectionManager": 2, - "Xml": 2, - "Automatically": 1, - "selects": 1, - "table": 21, - "pluralized": 1, - "lowercase": 1, - "User": 1, - "is": 1, - "have": 2, - "at": 1, - "least": 1, - "primary": 3, - "key.": 1, - "Cake.Model": 1, - "//book.cakephp.org/2.0/en/models.html": 1, - "useDbConfig": 7, - "useTable": 12, - "displayField": 4, - "schemaName": 1, - "primaryKey": 38, - "_schema": 11, - "validationDomain": 1, - "tablePrefix": 8, - "tableToModel": 4, - "cacheQueries": 1, - "belongsTo": 7, - "hasOne": 2, - "hasMany": 2, - "hasAndBelongsToMany": 24, - "actsAs": 2, - "Behaviors": 6, - "cacheSources": 7, - "findQueryType": 3, - "recursive": 9, - "order": 4, - "virtualFields": 8, - "_associationKeys": 2, - "_associations": 5, - "__backAssociation": 22, - "__backInnerAssociation": 1, - "__backOriginalAssociation": 1, - "__backContainableAssociation": 1, - "_insertID": 1, - "_sourceConfigured": 1, - "findMethods": 3, - "ds": 3, - "addObject": 2, - "parentClass": 3, - "get_parent_class": 1, - "tableize": 2, - "_createLinks": 3, - "__call": 1, - "dispatchMethod": 1, - "getDataSource": 15, - "relation": 7, - "assocKey": 13, - "dynamic": 2, - "isKeySet": 1, - "AppModel": 1, - "_constructLinkedModel": 2, - "schema": 11, - "hasField": 7, - "setDataSource": 2, - "property_exists": 3, - "bindModel": 1, - "reset": 6, - "assoc": 75, - "assocName": 6, - "unbindModel": 1, - "_generateAssociation": 2, - "dynamicWith": 3, - "sort": 1, - "setSource": 1, - "tableName": 4, - "db": 45, - "method_exists": 5, - "sources": 3, - "listSources": 1, - "strtolower": 1, - "MissingTableException": 1, - "is_object": 2, - "SimpleXMLElement": 1, - "_normalizeXmlData": 3, - "toArray": 1, - "reverse": 1, - "_setAliasData": 2, - "modelName": 3, - "fieldSet": 3, - "fieldName": 6, - "fieldValue": 7, - "deconstruct": 2, - "getAssociated": 4, - "getColumnType": 4, - "useNewDate": 2, - "dateFields": 5, - "timeFields": 2, - "date": 9, - "val": 27, - "columns": 5, - "str_replace": 3, - "describe": 1, - "getColumnTypes": 1, - "trigger_error": 1, - "__d": 1, - "E_USER_WARNING": 1, - "cols": 7, - "column": 10, - "startQuote": 4, - "endQuote": 4, - "checkVirtual": 3, - "isVirtualField": 3, - "hasMethod": 2, - "getVirtualField": 1, - "filterKey": 2, - "defaults": 6, - "properties": 4, - "read": 2, - "conditions": 41, - "saveField": 1, - "options": 85, - "save": 9, - "fieldList": 1, - "_whitelist": 4, - "keyPresentAndEmpty": 2, - "exists": 6, - "validates": 60, - "updateCol": 6, - "colType": 4, - "time": 3, - "strtotime": 1, - "joined": 5, - "x": 4, - "y": 2, - "success": 10, - "cache": 2, - "_prepareUpdateFields": 2, - "update": 2, - "fInfo": 4, - "isUUID": 5, - "j": 2, - "array_search": 1, - "uuid": 3, - "updateCounterCache": 6, - "_saveMulti": 2, - "_clearCache": 2, - "join": 22, - "joinModel": 8, - "keyInfo": 4, - "withModel": 4, - "pluginName": 1, - "dbMulti": 6, - "newData": 5, - "newValues": 8, - "newJoins": 7, - "primaryAdded": 3, - "idField": 3, - "row": 17, - "keepExisting": 3, - "associationForeignKey": 5, - "links": 4, - "oldLinks": 4, - "delete": 9, - "oldJoin": 4, - "insertMulti": 1, - "foreignKey": 11, - "fkQuoted": 3, - "escapeField": 6, - "intval": 4, - "updateAll": 3, - "foreignKeys": 3, - "included": 3, - "array_intersect": 1, - "old": 2, - "saveAll": 1, - "numeric": 1, - "validateMany": 4, - "saveMany": 3, - "validateAssociated": 5, - "saveAssociated": 5, - "transactionBegun": 4, - "begin": 2, - "record": 10, - "saved": 18, - "commit": 2, - "rollback": 2, - "associations": 9, - "association": 47, - "notEmpty": 4, - "_return": 3, - "recordData": 2, - "cascade": 10, - "_deleteDependent": 3, - "_deleteLinks": 3, - "_collectForeignKeys": 2, - "savedAssociatons": 3, - "deleteAll": 2, - "records": 6, - "ids": 8, - "_id": 2, - "getID": 2, - "hasAny": 1, - "buildQuery": 2, - "is_null": 1, - "results": 22, - "resetAssociations": 3, - "_filterResults": 2, - "ucfirst": 2, - "modParams": 2, - "_findFirst": 1, - "state": 15, - "_findCount": 1, - "calculate": 2, - "expression": 1, - "_findList": 1, - "tokenize": 1, - "lst": 4, - "combine": 1, - "_findNeighbors": 1, - "prevVal": 2, - "return2": 6, - "_findThreaded": 1, - "nest": 1, - "isUnique": 1, - "is_bool": 1, - "sql": 1, - "SHEBANG#!php": 3, - "echo": 2, - "Yii": 3, - "console": 3, - "bootstrap": 1, - "yiiframework": 2, - "com": 2, - "c": 1, - "2008": 1, - "LLC": 1, - "YII_DEBUG": 2, - "define": 2, - "fcgi": 1, - "doesn": 1, - "STDIN": 3, - "fopen": 1, - "stdin": 1, - "r": 1, - "require": 3, - "__DIR__": 3, - "vendor": 2, - "yiisoft": 1, - "yii2": 1, - "yii": 2, - "autoload": 1, - "config": 3, - "application": 2 - }, "Pike": { "#pike": 2, "__REAL_VERSION__": 2, @@ -58169,6 +57989,194 @@ "developed": 1, "independently.": 1 }, + "RDoc": { + "RDoc": 7, + "-": 9, + "Ruby": 4, + "Documentation": 2, + "System": 1, + "home": 1, + "https": 3, + "//github.com/rdoc/rdoc": 1, + "rdoc": 7, + "http": 1, + "//docs.seattlerb.org/rdoc": 1, + "bugs": 1, + "//github.com/rdoc/rdoc/issues": 1, + "code": 1, + "quality": 1, + "{": 1, + "": 1, + "src=": 1, + "alt=": 1, + "}": 1, + "[": 3, + "//codeclimate.com/github/rdoc/rdoc": 1, + "]": 3, + "Description": 1, + "produces": 1, + "HTML": 1, + "and": 9, + "command": 4, + "line": 1, + "documentation": 8, + "for": 9, + "projects.": 1, + "includes": 1, + "the": 12, + "+": 8, + "ri": 1, + "tools": 1, + "generating": 1, + "displaying": 1, + "from": 1, + "line.": 1, + "Generating": 1, + "Once": 1, + "installed": 1, + "you": 3, + "can": 2, + "create": 1, + "using": 1, + "options": 1, + "names...": 1, + "For": 1, + "an": 1, + "up": 1, + "to": 4, + "date": 1, + "option": 1, + "summary": 1, + "type": 2, + "help": 1, + "A": 1, + "typical": 1, + "use": 1, + "might": 1, + "be": 3, + "generate": 1, + "a": 5, + "package": 1, + "of": 2, + "source": 2, + "(": 3, + "such": 1, + "as": 1, + "itself": 1, + ")": 3, + ".": 2, + "This": 2, + "generates": 1, + "all": 1, + "C": 1, + "files": 2, + "in": 4, + "below": 1, + "current": 1, + "directory.": 1, + "These": 1, + "will": 1, + "stored": 1, + "tree": 1, + "starting": 1, + "subdirectory": 1, + "doc": 1, + "You": 2, + "make": 2, + "this": 1, + "slightly": 1, + "more": 1, + "useful": 1, + "your": 1, + "readers": 1, + "by": 1, + "having": 1, + "index": 1, + "page": 1, + "contain": 1, + "primary": 1, + "file.": 1, + "In": 1, + "our": 1, + "case": 1, + "we": 1, + "could": 1, + "#": 1, + "rdoc/rdoc": 1, + "s": 1, + "OK": 1, + "file": 1, + "bug": 1, + "report": 1, + "anything": 1, + "t": 1, + "figure": 1, + "out": 1, + "how": 1, + "produce": 1, + "output": 1, + "like": 1, + "that": 1, + "is": 4, + "probably": 1, + "bug.": 1, + "License": 1, + "Copyright": 1, + "c": 2, + "Dave": 1, + "Thomas": 1, + "The": 1, + "Pragmatic": 1, + "Programmers.": 1, + "Portions": 2, + "Eric": 1, + "Hodel.": 1, + "copyright": 1, + "others": 1, + "see": 1, + "individual": 1, + "LEGAL.rdoc": 1, + "details.": 1, + "free": 1, + "software": 2, + "may": 1, + "redistributed": 1, + "under": 1, + "terms": 1, + "specified": 1, + "LICENSE.rdoc.": 1, + "Warranty": 1, + "provided": 1, + "without": 2, + "any": 1, + "express": 1, + "or": 1, + "implied": 2, + "warranties": 2, + "including": 1, + "limitation": 1, + "merchantability": 1, + "fitness": 1, + "particular": 1, + "purpose.": 1 + }, + "RMarkdown": { + "Some": 1, + "text.": 1, + "##": 1, + "A": 1, + "graphic": 1, + "in": 1, + "R": 1, + "{": 1, + "r": 1, + "}": 1, + "plot": 1, + "(": 3, + ")": 3, + "hist": 1, + "rnorm": 1 + }, "Racket": { ";": 3, "Clean": 1, @@ -58414,177 +58422,6 @@ "my_ts..": 1, "SimpleTokenizer.new": 1 }, - "RDoc": { - "RDoc": 7, - "-": 9, - "Ruby": 4, - "Documentation": 2, - "System": 1, - "home": 1, - "https": 3, - "//github.com/rdoc/rdoc": 1, - "rdoc": 7, - "http": 1, - "//docs.seattlerb.org/rdoc": 1, - "bugs": 1, - "//github.com/rdoc/rdoc/issues": 1, - "code": 1, - "quality": 1, - "{": 1, - "": 1, - "src=": 1, - "alt=": 1, - "}": 1, - "[": 3, - "//codeclimate.com/github/rdoc/rdoc": 1, - "]": 3, - "Description": 1, - "produces": 1, - "HTML": 1, - "and": 9, - "command": 4, - "line": 1, - "documentation": 8, - "for": 9, - "projects.": 1, - "includes": 1, - "the": 12, - "+": 8, - "ri": 1, - "tools": 1, - "generating": 1, - "displaying": 1, - "from": 1, - "line.": 1, - "Generating": 1, - "Once": 1, - "installed": 1, - "you": 3, - "can": 2, - "create": 1, - "using": 1, - "options": 1, - "names...": 1, - "For": 1, - "an": 1, - "up": 1, - "to": 4, - "date": 1, - "option": 1, - "summary": 1, - "type": 2, - "help": 1, - "A": 1, - "typical": 1, - "use": 1, - "might": 1, - "be": 3, - "generate": 1, - "a": 5, - "package": 1, - "of": 2, - "source": 2, - "(": 3, - "such": 1, - "as": 1, - "itself": 1, - ")": 3, - ".": 2, - "This": 2, - "generates": 1, - "all": 1, - "C": 1, - "files": 2, - "in": 4, - "below": 1, - "current": 1, - "directory.": 1, - "These": 1, - "will": 1, - "stored": 1, - "tree": 1, - "starting": 1, - "subdirectory": 1, - "doc": 1, - "You": 2, - "make": 2, - "this": 1, - "slightly": 1, - "more": 1, - "useful": 1, - "your": 1, - "readers": 1, - "by": 1, - "having": 1, - "index": 1, - "page": 1, - "contain": 1, - "primary": 1, - "file.": 1, - "In": 1, - "our": 1, - "case": 1, - "we": 1, - "could": 1, - "#": 1, - "rdoc/rdoc": 1, - "s": 1, - "OK": 1, - "file": 1, - "bug": 1, - "report": 1, - "anything": 1, - "t": 1, - "figure": 1, - "out": 1, - "how": 1, - "produce": 1, - "output": 1, - "like": 1, - "that": 1, - "is": 4, - "probably": 1, - "bug.": 1, - "License": 1, - "Copyright": 1, - "c": 2, - "Dave": 1, - "Thomas": 1, - "The": 1, - "Pragmatic": 1, - "Programmers.": 1, - "Portions": 2, - "Eric": 1, - "Hodel.": 1, - "copyright": 1, - "others": 1, - "see": 1, - "individual": 1, - "LEGAL.rdoc": 1, - "details.": 1, - "free": 1, - "software": 2, - "may": 1, - "redistributed": 1, - "under": 1, - "terms": 1, - "specified": 1, - "LICENSE.rdoc.": 1, - "Warranty": 1, - "provided": 1, - "without": 2, - "any": 1, - "express": 1, - "or": 1, - "implied": 2, - "warranties": 2, - "including": 1, - "limitation": 1, - "merchantability": 1, - "fitness": 1, - "particular": 1, - "purpose.": 1 - }, "Rebol": { "REBOL": 5, "[": 54, @@ -58979,23 +58816,6 @@ "on": 1, "bit": 1 }, - "RMarkdown": { - "Some": 1, - "text.": 1, - "##": 1, - "A": 1, - "graphic": 1, - "in": 1, - "R": 1, - "{": 1, - "r": 1, - "}": 1, - "plot": 1, - "(": 3, - ")": 3, - "hist": 1, - "rnorm": 1 - }, "RobotFramework": { "***": 16, "Settings": 3, @@ -60654,6 +60474,240 @@ "/": 1, "risklimits": 1 }, + "SCSS": { + "blue": 4, + "#3bbfce": 1, + ";": 7, + "margin": 4, + "px": 1, + ".content": 1, + "-": 3, + "navigation": 1, + "{": 2, + "border": 2, + "color": 3, + "darken": 1, + "(": 1, + "%": 1, + ")": 1, + "}": 2, + ".border": 1, + "padding": 1, + "/": 2 + }, + "SQL": { + "IF": 13, + "EXISTS": 12, + "(": 131, + "SELECT": 4, + "*": 3, + "FROM": 1, + "DBO.SYSOBJECTS": 1, + "WHERE": 1, + "ID": 2, + "OBJECT_ID": 1, + "N": 7, + ")": 131, + "AND": 1, + "OBJECTPROPERTY": 1, + "id": 22, + "DROP": 3, + "PROCEDURE": 1, + "dbo.AvailableInSearchSel": 2, + "GO": 4, + "CREATE": 10, + "Procedure": 1, + "AvailableInSearchSel": 1, + "AS": 1, + "UNION": 2, + "ALL": 2, + "DB_NAME": 1, + "BEGIN": 1, + "GRANT": 1, + "EXECUTE": 1, + "ON": 1, + "TO": 1, + "[": 1, + "rv": 1, + "]": 1, + "END": 1, + "SHOW": 2, + "WARNINGS": 2, + ";": 31, + "-": 496, + "Table": 9, + "structure": 9, + "for": 15, + "table": 17, + "articles": 4, + "TABLE": 10, + "NOT": 46, + "int": 28, + "NULL": 91, + "AUTO_INCREMENT": 9, + "title": 4, + "varchar": 22, + "DEFAULT": 22, + "content": 2, + "longtext": 1, + "date_posted": 4, + "datetime": 10, + "created_by": 2, + "last_modified": 2, + "last_modified_by": 2, + "ordering": 2, + "is_published": 2, + "PRIMARY": 9, + "KEY": 13, + "Dumping": 6, + "data": 6, + "INSERT": 6, + "INTO": 6, + "VALUES": 6, + "challenges": 4, + "pkg_name": 2, + "description": 2, + "text": 1, + "author": 2, + "category": 2, + "visibility": 2, + "publish": 2, + "abstract": 2, + "level": 2, + "duration": 2, + "goal": 2, + "solution": 2, + "availability": 2, + "default_points": 2, + "default_duration": 2, + "challenge_attempts": 2, + "user_id": 8, + "challenge_id": 7, + "time": 1, + "status": 1, + "challenge_attempt_count": 2, + "tries": 1, + "UNIQUE": 4, + "classes": 4, + "name": 3, + "date_created": 6, + "archive": 2, + "class_challenges": 4, + "class_id": 5, + "class_memberships": 4, + "users": 4, + "username": 3, + "full_name": 2, + "email": 2, + "password": 2, + "joined": 2, + "last_visit": 2, + "is_activated": 2, + "type": 3, + "token": 3, + "user_has_challenge_token": 3, + "create": 2, + "FILIAL": 10, + "NUMBER": 1, + "not": 5, + "null": 4, + "title_ua": 1, + "VARCHAR2": 4, + "title_ru": 1, + "title_eng": 1, + "remove_date": 1, + "DATE": 2, + "modify_date": 1, + "modify_user": 1, + "alter": 1, + "add": 1, + "constraint": 1, + "PK_ID": 1, + "primary": 1, + "key": 1, + "grant": 8, + "select": 10, + "on": 8, + "to": 8, + "ATOLL": 1, + "CRAMER2GIS": 1, + "DMS": 1, + "HPSM2GIS": 1, + "PLANMONITOR": 1, + "SIEBEL": 1, + "VBIS": 1, + "VPORTAL": 1, + "if": 1, + "exists": 1, + "from": 2, + "sysobjects": 1, + "where": 2, + "and": 1, + "in": 1, + "exec": 1, + "%": 2, + "object_ddl": 1, + "go": 1, + "use": 1, + "translog": 1, + "VIEW": 1, + "suspendedtoday": 2, + "view": 1, + "as": 1, + "suspended": 1, + "datediff": 1, + "now": 1 + }, + "STON": { + "[": 11, + "]": 11, + "{": 15, + "#a": 1, + "#b": 1, + "}": 15, + "Rectangle": 1, + "#origin": 1, + "Point": 2, + "-": 2, + "#corner": 1, + "TestDomainObject": 1, + "#created": 1, + "DateAndTime": 2, + "#modified": 1, + "#integer": 1, + "#float": 1, + "#description": 1, + "#color": 1, + "#green": 1, + "#tags": 1, + "#two": 1, + "#beta": 1, + "#medium": 1, + "#bytes": 1, + "ByteArray": 1, + "#boolean": 1, + "false": 1, + "ZnResponse": 1, + "#headers": 2, + "ZnHeaders": 1, + "ZnMultiValueDictionary": 1, + "#entity": 1, + "ZnStringEntity": 1, + "#contentType": 1, + "ZnMimeType": 1, + "#main": 1, + "#sub": 1, + "#parameters": 1, + "#contentLength": 1, + "#string": 1, + "#encoder": 1, + "ZnUTF8Encoder": 1, + "#statusLine": 1, + "ZnStatusLine": 1, + "#version": 1, + "#code": 1, + "#reason": 1 + }, "Sass": { "blue": 7, "#3bbfce": 2, @@ -61132,27 +61186,6 @@ "assert_checkequal": 1, "assert_checkfalse": 1 }, - "SCSS": { - "blue": 4, - "#3bbfce": 1, - ";": 7, - "margin": 4, - "px": 1, - ".content": 1, - "-": 3, - "navigation": 1, - "{": 2, - "border": 2, - "color": 3, - "darken": 1, - "(": 1, - "%": 1, - ")": 1, - "}": 2, - ".border": 1, - "padding": 1, - "/": 2 - }, "Shell": { "SHEBANG#!bash": 8, "typeset": 5, @@ -63069,169 +63102,6 @@ "well": 1, "PushArrayCell": 1 }, - "SQL": { - "IF": 13, - "EXISTS": 12, - "(": 131, - "SELECT": 4, - "*": 3, - "FROM": 1, - "DBO.SYSOBJECTS": 1, - "WHERE": 1, - "ID": 2, - "OBJECT_ID": 1, - "N": 7, - ")": 131, - "AND": 1, - "OBJECTPROPERTY": 1, - "id": 22, - "DROP": 3, - "PROCEDURE": 1, - "dbo.AvailableInSearchSel": 2, - "GO": 4, - "CREATE": 10, - "Procedure": 1, - "AvailableInSearchSel": 1, - "AS": 1, - "UNION": 2, - "ALL": 2, - "DB_NAME": 1, - "BEGIN": 1, - "GRANT": 1, - "EXECUTE": 1, - "ON": 1, - "TO": 1, - "[": 1, - "rv": 1, - "]": 1, - "END": 1, - "SHOW": 2, - "WARNINGS": 2, - ";": 31, - "-": 496, - "Table": 9, - "structure": 9, - "for": 15, - "table": 17, - "articles": 4, - "TABLE": 10, - "NOT": 46, - "int": 28, - "NULL": 91, - "AUTO_INCREMENT": 9, - "title": 4, - "varchar": 22, - "DEFAULT": 22, - "content": 2, - "longtext": 1, - "date_posted": 4, - "datetime": 10, - "created_by": 2, - "last_modified": 2, - "last_modified_by": 2, - "ordering": 2, - "is_published": 2, - "PRIMARY": 9, - "KEY": 13, - "Dumping": 6, - "data": 6, - "INSERT": 6, - "INTO": 6, - "VALUES": 6, - "challenges": 4, - "pkg_name": 2, - "description": 2, - "text": 1, - "author": 2, - "category": 2, - "visibility": 2, - "publish": 2, - "abstract": 2, - "level": 2, - "duration": 2, - "goal": 2, - "solution": 2, - "availability": 2, - "default_points": 2, - "default_duration": 2, - "challenge_attempts": 2, - "user_id": 8, - "challenge_id": 7, - "time": 1, - "status": 1, - "challenge_attempt_count": 2, - "tries": 1, - "UNIQUE": 4, - "classes": 4, - "name": 3, - "date_created": 6, - "archive": 2, - "class_challenges": 4, - "class_id": 5, - "class_memberships": 4, - "users": 4, - "username": 3, - "full_name": 2, - "email": 2, - "password": 2, - "joined": 2, - "last_visit": 2, - "is_activated": 2, - "type": 3, - "token": 3, - "user_has_challenge_token": 3, - "create": 2, - "FILIAL": 10, - "NUMBER": 1, - "not": 5, - "null": 4, - "title_ua": 1, - "VARCHAR2": 4, - "title_ru": 1, - "title_eng": 1, - "remove_date": 1, - "DATE": 2, - "modify_date": 1, - "modify_user": 1, - "alter": 1, - "add": 1, - "constraint": 1, - "PK_ID": 1, - "primary": 1, - "key": 1, - "grant": 8, - "select": 10, - "on": 8, - "to": 8, - "ATOLL": 1, - "CRAMER2GIS": 1, - "DMS": 1, - "HPSM2GIS": 1, - "PLANMONITOR": 1, - "SIEBEL": 1, - "VBIS": 1, - "VPORTAL": 1, - "if": 1, - "exists": 1, - "from": 2, - "sysobjects": 1, - "where": 2, - "and": 1, - "in": 1, - "exec": 1, - "%": 2, - "object_ddl": 1, - "go": 1, - "use": 1, - "translog": 1, - "VIEW": 1, - "suspendedtoday": 2, - "view": 1, - "as": 1, - "suspended": 1, - "datediff": 1, - "now": 1 - }, "Squirrel": { "//example": 1, "from": 1, @@ -64421,56 +64291,6 @@ "return": 1, "/": 1 }, - "STON": { - "[": 11, - "]": 11, - "{": 15, - "#a": 1, - "#b": 1, - "}": 15, - "Rectangle": 1, - "#origin": 1, - "Point": 2, - "-": 2, - "#corner": 1, - "TestDomainObject": 1, - "#created": 1, - "DateAndTime": 2, - "#modified": 1, - "#integer": 1, - "#float": 1, - "#description": 1, - "#color": 1, - "#green": 1, - "#tags": 1, - "#two": 1, - "#beta": 1, - "#medium": 1, - "#bytes": 1, - "ByteArray": 1, - "#boolean": 1, - "false": 1, - "ZnResponse": 1, - "#headers": 2, - "ZnHeaders": 1, - "ZnMultiValueDictionary": 1, - "#entity": 1, - "ZnStringEntity": 1, - "#contentType": 1, - "ZnMimeType": 1, - "#main": 1, - "#sub": 1, - "#parameters": 1, - "#contentLength": 1, - "#string": 1, - "#encoder": 1, - "ZnUTF8Encoder": 1, - "#statusLine": 1, - "ZnStatusLine": 1, - "#version": 1, - "#code": 1, - "#reason": 1 - }, "Stylus": { "border": 6, "-": 10, @@ -64987,6 +64807,43 @@ "x": 6, "endfunction": 1 }, + "TXL": { + "define": 12, + "program": 1, + "[": 38, + "expression": 9, + "]": 38, + "end": 12, + "term": 6, + "|": 3, + "addop": 2, + "primary": 4, + "mulop": 2, + "number": 10, + "(": 2, + ")": 2, + "-": 3, + "/": 3, + "rule": 12, + "main": 1, + "replace": 6, + "E": 3, + "construct": 1, + "NewE": 3, + "resolveAddition": 2, + "resolveSubtraction": 2, + "resolveMultiplication": 2, + "resolveDivision": 2, + "resolveParentheses": 2, + "where": 1, + "not": 1, + "by": 6, + "N1": 8, + "+": 2, + "N2": 8, + "*": 2, + "N": 2 + }, "Tcl": { "#": 7, "package": 2, @@ -65108,11 +64965,6 @@ "outDirs": 3, "XDG_RUNTIME_DIR": 1 }, - "Tea": { - "<%>": 1, - "template": 1, - "foo": 1 - }, "TeX": { "%": 135, "ProvidesClass": 2, @@ -65702,6 +65554,11 @@ "sign": 1, "makebox": 6 }, + "Tea": { + "<%>": 1, + "template": 1, + "foo": 1 + }, "Turing": { "function": 1, "factorial": 4, @@ -65725,43 +65582,6 @@ "exit": 1, "when": 1 }, - "TXL": { - "define": 12, - "program": 1, - "[": 38, - "expression": 9, - "]": 38, - "end": 12, - "term": 6, - "|": 3, - "addop": 2, - "primary": 4, - "mulop": 2, - "number": 10, - "(": 2, - ")": 2, - "-": 3, - "/": 3, - "rule": 12, - "main": 1, - "replace": 6, - "E": 3, - "construct": 1, - "NewE": 3, - "resolveAddition": 2, - "resolveSubtraction": 2, - "resolveMultiplication": 2, - "resolveDivision": 2, - "resolveParentheses": 2, - "where": 1, - "not": 1, - "by": 6, - "N1": 8, - "+": 2, - "N2": 8, - "*": 2, - "N": 2 - }, "TypeScript": { "class": 3, "Animal": 4, @@ -66297,6 +66117,35 @@ "ok": 2, "vcl_fini": 1 }, + "VHDL": { + "-": 2, + "VHDL": 1, + "example": 1, + "file": 1, + "library": 1, + "ieee": 1, + ";": 7, + "use": 1, + "ieee.std_logic_1164.all": 1, + "entity": 2, + "inverter": 2, + "is": 2, + "port": 1, + "(": 1, + "a": 2, + "in": 1, + "std_logic": 2, + "b": 2, + "out": 1, + ")": 1, + "end": 2, + "architecture": 2, + "rtl": 1, + "of": 1, + "begin": 1, + "<": 1, + "not": 1 + }, "Verilog": { "////////////////////////////////////////////////////////////////////////////////": 14, "//": 117, @@ -66779,35 +66628,6 @@ ".csrm_dat_o": 1, ".csrm_dat_i": 1 }, - "VHDL": { - "-": 2, - "VHDL": 1, - "example": 1, - "file": 1, - "library": 1, - "ieee": 1, - ";": 7, - "use": 1, - "ieee.std_logic_1164.all": 1, - "entity": 2, - "inverter": 2, - "is": 2, - "port": 1, - "(": 1, - "a": 2, - "in": 1, - "std_logic": 2, - "b": 2, - "out": 1, - ")": 1, - "end": 2, - "architecture": 2, - "rtl": 1, - "of": 1, - "begin": 1, - "<": 1, - "not": 1 - }, "VimL": { "no": 1, "toolbar": 1, @@ -67186,433 +67006,6 @@ "f": 1, "double": 1 }, - "wisp": { - ";": 199, - "#": 2, - "wisp": 6, - "Wisp": 13, - "is": 20, - "homoiconic": 1, - "JS": 17, - "dialect": 1, - "with": 6, - "a": 24, - "clojure": 2, - "syntax": 2, - "s": 7, - "-": 33, - "expressions": 6, - "and": 9, - "macros.": 1, - "code": 3, - "compiles": 1, - "to": 21, - "human": 1, - "readable": 1, - "javascript": 1, - "which": 3, - "one": 3, - "of": 16, - "they": 3, - "key": 3, - "differences": 1, - "from": 2, - "clojurescript.": 1, - "##": 2, - "data": 1, - "structures": 1, - "nil": 4, - "just": 3, - "like": 2, - "js": 1, - "undefined": 1, - "differenc": 1, - "that": 7, - "it": 10, - "shortcut": 1, - "for": 5, - "void": 2, - "(": 77, - ")": 75, - "in": 16, - "JS.": 2, - "Booleans": 1, - "booleans": 2, - "true": 6, - "/": 1, - "false": 2, - "are": 14, - "Numbers": 1, - "numbers": 2, - "Strings": 2, - "strings": 3, - "can": 13, - "be": 15, - "multiline": 1, - "Characters": 2, - "sugar": 1, - "single": 1, - "char": 1, - "Keywords": 3, - "symbolic": 2, - "identifiers": 2, - "evaluate": 2, - "themselves.": 1, - "keyword": 1, - "Since": 1, - "string": 1, - "constats": 1, - "fulfill": 1, - "this": 2, - "purpose": 2, - "keywords": 1, - "compile": 3, - "equivalent": 2, - "strings.": 1, - "window.addEventListener": 1, - "load": 1, - "handler": 1, - "invoked": 2, - "as": 4, - "functions": 8, - "desugars": 1, - "plain": 2, - "associated": 2, - "value": 2, - "access": 1, - "bar": 4, - "foo": 6, - "[": 22, - "]": 22, - "Vectors": 1, - "vectors": 1, - "arrays.": 1, - "Note": 3, - "Commas": 2, - "white": 1, - "space": 1, - "&": 6, - "used": 1, - "if": 7, - "desired": 1, - "Maps": 2, - "hash": 1, - "maps": 1, - "objects.": 1, - "unlike": 1, - "keys": 1, - "not": 4, - "arbitary": 1, - "types.": 1, - "{": 4, - "beep": 1, - "bop": 1, - "}": 4, - "optional": 2, - "but": 7, - "come": 1, - "handy": 1, - "separating": 1, - "pairs.": 1, - "b": 5, - "In": 5, - "future": 2, - "JSONs": 1, - "may": 1, - "made": 2, - "compatible": 1, - "map": 3, - "syntax.": 1, - "Lists": 1, - "You": 1, - "up": 1, - "lists": 1, - "representing": 1, - "expressions.": 1, - "The": 1, - "first": 4, - "item": 2, - "the": 9, - "expression": 6, - "function": 7, - "being": 1, - "rest": 7, - "items": 2, - "arguments.": 2, - "baz": 2, - "Conventions": 1, - "puts": 1, - "lot": 2, - "effort": 1, - "making": 1, - "naming": 1, - "conventions": 3, - "transparent": 1, - "by": 2, - "encouraning": 1, - "lisp": 1, - "then": 1, - "translating": 1, - "them": 1, - "dash": 1, - "delimited": 1, - "dashDelimited": 1, - "predicate": 1, - "isPredicate": 1, - "__privates__": 1, - "list": 2, - "vector": 1, - "listToVector": 1, - "As": 1, - "side": 2, - "effect": 1, - "some": 2, - "names": 1, - "expressed": 3, - "few": 1, - "ways": 1, - "although": 1, - "third": 2, - "expression.": 1, - "<": 1, - "number": 3, - "Else": 1, - "missing": 1, - "conditional": 1, - "evaluates": 2, - "result": 2, - "will": 6, - ".": 6, - "monday": 1, - "today": 1, - "Compbining": 1, - "everything": 1, - "an": 1, - "sometimes": 1, - "might": 1, - "want": 2, - "compbine": 1, - "multiple": 1, - "into": 2, - "usually": 3, - "evaluating": 1, - "have": 2, - "effects": 1, - "do": 4, - "console.log": 2, - "+": 9, - "Also": 1, - "special": 4, - "form": 10, - "many.": 1, - "If": 2, - "evaluation": 1, - "nil.": 1, - "Bindings": 1, - "Let": 1, - "containing": 1, - "lexical": 1, - "context": 1, - "simbols": 1, - "bindings": 1, - "forms": 1, - "bound": 1, - "their": 2, - "respective": 1, - "results.": 1, - "let": 2, - "c": 1, - "Functions": 1, - "fn": 15, - "x": 22, - "named": 1, - "similar": 2, - "increment": 1, - "also": 2, - "contain": 1, - "documentation": 1, - "metadata.": 1, - "Docstring": 1, - "metadata": 1, - "presented": 1, - "compiled": 2, - "yet": 1, - "comments": 1, - "function.": 1, - "incerement": 1, - "added": 1, - "makes": 1, - "capturing": 1, - "arguments": 7, - "easier": 1, - "than": 1, - "argument": 1, - "follows": 1, - "simbol": 1, - "capture": 1, - "all": 4, - "args": 1, - "array.": 1, - "rest.reduce": 1, - "sum": 3, - "Overloads": 1, - "overloaded": 1, - "depending": 1, - "on": 1, - "take": 2, - "without": 2, - "introspection": 1, - "version": 1, - "y": 6, - "more": 3, - "more.reduce": 1, - "does": 1, - "has": 2, - "variadic": 1, - "overload": 1, - "passed": 1, - "throws": 1, - "exception.": 1, - "Other": 1, - "Special": 1, - "Forms": 1, - "Instantiation": 1, - "type": 2, - "instantiation": 1, - "consice": 1, - "needs": 1, - "suffixed": 1, - "character": 1, - "Type.": 1, - "options": 2, - "More": 1, - "verbose": 1, - "there": 1, - "new": 2, - "Class": 1, - "Method": 1, - "calls": 3, - "method": 2, - "no": 1, - "different": 1, - "Any": 1, - "quoted": 1, - "prevent": 1, - "doesn": 1, - "t": 1, - "unless": 5, - "or": 2, - "macro": 7, - "try": 1, - "implemting": 1, - "understand": 1, - "use": 2, - "case": 1, - "We": 1, - "execute": 1, - "body": 4, - "condition": 4, - "defn": 2, - "Although": 1, - "following": 2, - "log": 1, - "anyway": 1, - "since": 1, - "exectued": 1, - "before": 1, - "called.": 1, - "Macros": 2, - "solve": 1, - "problem": 1, - "because": 1, - "immediately.": 1, - "Instead": 1, - "you": 1, - "get": 2, - "choose": 1, - "when": 1, - "evaluated.": 1, - "return": 1, - "instead.": 1, - "defmacro": 3, - "less": 1, - "how": 1, - "build": 1, - "implemented.": 1, - "define": 4, - "name": 2, - "def": 1, - "@body": 1, - "Now": 1, - "we": 2, - "above": 1, - "defined": 1, - "expanded": 2, - "time": 1, - "resulting": 1, - "diff": 1, - "program": 1, - "output.": 1, - "print": 1, - "message": 2, - ".log": 1, - "console": 1, - "Not": 1, - "macros": 2, - "via": 2, - "templating": 1, - "language": 1, - "available": 1, - "at": 1, - "hand": 1, - "assemble": 1, - "form.": 1, - "For": 2, - "instance": 1, - "ease": 1, - "functional": 1, - "chanining": 1, - "popular": 1, - "chaining.": 1, - "example": 1, - "API": 1, - "pioneered": 1, - "jQuery": 1, - "very": 2, - "common": 1, - "open": 2, - "target": 1, - "keypress": 2, - "filter": 2, - "isEnterKey": 1, - "getInputText": 1, - "reduce": 3, - "render": 2, - "Unfortunately": 1, - "though": 1, - "requires": 1, - "need": 1, - "methods": 1, - "dsl": 1, - "object": 1, - "limited.": 1, - "Making": 1, - "party": 1, - "second": 1, - "class.": 1, - "Via": 1, - "achieve": 1, - "chaining": 1, - "such": 1, - "tradeoffs.": 1, - "operations": 3, - "operation": 3, - "cons": 2, - "tagret": 1, - "enter": 1, - "input": 1, - "text": 1 - }, "XC": { "int": 2, "main": 1, @@ -68860,6 +68253,158 @@ "": 1, "": 1 }, + "XProc": { + "": 1, + "version=": 2, + "encoding=": 1, + "": 1, + "xmlns": 2, + "p=": 1, + "c=": 1, + "": 1, + "port=": 2, + "": 1, + "": 1, + "Hello": 1, + "world": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1 + }, + "XQuery": { + "(": 38, + "-": 486, + "xproc.xqm": 1, + "core": 1, + "xqm": 1, + "contains": 1, + "entry": 2, + "points": 1, + "primary": 1, + "eval": 3, + "step": 5, + "function": 3, + "and": 3, + "control": 1, + "functions.": 1, + ")": 38, + "xquery": 1, + "version": 1, + "encoding": 1, + ";": 25, + "module": 6, + "namespace": 8, + "xproc": 17, + "declare": 24, + "namespaces": 5, + "p": 2, + "c": 1, + "err": 1, + "imports": 1, + "import": 4, + "util": 1, + "at": 4, + "const": 1, + "parse": 8, + "u": 2, + "options": 2, + "boundary": 1, + "space": 1, + "preserve": 1, + "option": 1, + "saxon": 1, + "output": 1, + "functions": 1, + "variable": 13, + "run": 2, + "run#6": 1, + "choose": 1, + "try": 1, + "catch": 1, + "group": 1, + "for": 1, + "each": 1, + "viewport": 1, + "library": 1, + "pipeline": 8, + "list": 1, + "all": 1, + "declared": 1, + "enum": 3, + "{": 5, + "": 1, + "name=": 1, + "ns": 1, + "": 1, + "}": 5, + "": 1, + "": 1, + "point": 1, + "stdin": 1, + "dflag": 1, + "tflag": 1, + "bindings": 2, + "STEP": 3, + "I": 1, + "preprocess": 1, + "let": 6, + "validate": 1, + "explicit": 3, + "AST": 2, + "name": 1, + "type": 1, + "ast": 1, + "element": 1, + "parse/@*": 1, + "sort": 1, + "parse/*": 1, + "II": 1, + "eval_result": 1, + "III": 1, + "serialize": 1, + "return": 2, + "results": 1, + "serialized_result": 2 + }, + "XSLT": { + "": 1, + "version=": 2, + "": 1, + "xmlns": 1, + "xsl=": 1, + "": 1, + "match=": 1, + "": 1, + "": 1, + "

": 1, + "My": 1, + "CD": 1, + "Collection": 1, + "

": 1, + "": 1, + "border=": 1, + "": 2, + "bgcolor=": 1, + "": 2, + "Artist": 1, + "": 2, + "": 1, + "select=": 3, + "": 2, + "": 1, + "
": 2, + "Title": 1, + "
": 2, + "": 2, + "
": 1, + "": 1, + "": 1, + "
": 1, + "
": 1 + }, "Xojo": { "#tag": 88, "Class": 3, @@ -69042,158 +68587,6 @@ "EnumValues": 2, "EndEnumValues": 2 }, - "XProc": { - "": 1, - "version=": 2, - "encoding=": 1, - "": 1, - "xmlns": 2, - "p=": 1, - "c=": 1, - "": 1, - "port=": 2, - "": 1, - "": 1, - "Hello": 1, - "world": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1 - }, - "XQuery": { - "(": 38, - "-": 486, - "xproc.xqm": 1, - "core": 1, - "xqm": 1, - "contains": 1, - "entry": 2, - "points": 1, - "primary": 1, - "eval": 3, - "step": 5, - "function": 3, - "and": 3, - "control": 1, - "functions.": 1, - ")": 38, - "xquery": 1, - "version": 1, - "encoding": 1, - ";": 25, - "module": 6, - "namespace": 8, - "xproc": 17, - "declare": 24, - "namespaces": 5, - "p": 2, - "c": 1, - "err": 1, - "imports": 1, - "import": 4, - "util": 1, - "at": 4, - "const": 1, - "parse": 8, - "u": 2, - "options": 2, - "boundary": 1, - "space": 1, - "preserve": 1, - "option": 1, - "saxon": 1, - "output": 1, - "functions": 1, - "variable": 13, - "run": 2, - "run#6": 1, - "choose": 1, - "try": 1, - "catch": 1, - "group": 1, - "for": 1, - "each": 1, - "viewport": 1, - "library": 1, - "pipeline": 8, - "list": 1, - "all": 1, - "declared": 1, - "enum": 3, - "{": 5, - "": 1, - "name=": 1, - "ns": 1, - "": 1, - "}": 5, - "": 1, - "": 1, - "point": 1, - "stdin": 1, - "dflag": 1, - "tflag": 1, - "bindings": 2, - "STEP": 3, - "I": 1, - "preprocess": 1, - "let": 6, - "validate": 1, - "explicit": 3, - "AST": 2, - "name": 1, - "type": 1, - "ast": 1, - "element": 1, - "parse/@*": 1, - "sort": 1, - "parse/*": 1, - "II": 1, - "eval_result": 1, - "III": 1, - "serialize": 1, - "return": 2, - "results": 1, - "serialized_result": 2 - }, - "XSLT": { - "": 1, - "version=": 2, - "": 1, - "xmlns": 1, - "xsl=": 1, - "": 1, - "match=": 1, - "": 1, - "": 1, - "

": 1, - "My": 1, - "CD": 1, - "Collection": 1, - "

": 1, - "": 1, - "border=": 1, - "": 2, - "bgcolor=": 1, - "": 2, - "Artist": 1, - "": 2, - "": 1, - "select=": 3, - "": 2, - "": 1, - "
": 2, - "Title": 1, - "
": 2, - "": 2, - "
": 1, - "": 1, - "": 1, - "
": 1, - "
": 1 - }, "Xtend": { "package": 2, "example2": 1, @@ -69608,10 +69001,618 @@ "forall": 1, "do": 1, "card": 2 + }, + "edn": { + "[": 24, + "{": 22, + "db/id": 22, + "#db/id": 22, + "db.part/db": 6, + "]": 24, + "db/ident": 3, + "object/name": 18, + "db/doc": 4, + "db/valueType": 3, + "db.type/string": 2, + "db/index": 3, + "true": 3, + "db/cardinality": 3, + "db.cardinality/one": 3, + "db.install/_attribute": 3, + "}": 22, + "object/meanRadius": 18, + "db.type/double": 1, + "data/source": 2, + "db.part/tx": 2, + "db.part/user": 17 + }, + "fish": { + "#": 18, + "set": 49, + "-": 102, + "g": 1, + "IFS": 4, + "n": 5, + "t": 2, + "l": 15, + "configdir": 2, + "/.config": 1, + "if": 21, + "q": 9, + "XDG_CONFIG_HOME": 2, + "end": 33, + "not": 8, + "fish_function_path": 4, + "configdir/fish/functions": 1, + "__fish_sysconfdir/functions": 1, + "__fish_datadir/functions": 3, + "contains": 4, + "[": 13, + "]": 13, + "fish_complete_path": 4, + "configdir/fish/completions": 1, + "__fish_sysconfdir/completions": 1, + "__fish_datadir/completions": 3, + "test": 7, + "d": 3, + "/usr/xpg4/bin": 3, + "PATH": 6, + "path_list": 4, + "/bin": 1, + "/usr/bin": 1, + "/usr/X11R6/bin": 1, + "/usr/local/bin": 1, + "__fish_bin_dir": 1, + "switch": 3, + "USER": 1, + "case": 9, + "root": 1, + "/sbin": 1, + "/usr/sbin": 1, + "/usr/local/sbin": 1, + "for": 1, + "i": 5, + "in": 2, + "function": 6, + "fish_sigtrap_handler": 1, + "on": 2, + "signal": 1, + "TRAP": 1, + "no": 2, + "scope": 1, + "shadowing": 1, + "description": 2, + "breakpoint": 1, + "__fish_on_interactive": 2, + "event": 1, + "fish_prompt": 1, + "__fish_config_interactive": 1, + "functions": 5, + "e": 6, + "eval": 5, + "S": 1, + "If": 2, + "we": 2, + "are": 1, + "an": 1, + "interactive": 8, + "shell": 1, + "should": 2, + "enable": 1, + "full": 4, + "job": 5, + "control": 5, + "since": 1, + "it": 1, + "behave": 1, + "like": 2, + "the": 1, + "real": 1, + "code": 1, + "was": 1, + "executed.": 1, + "don": 1, + "do": 1, + "this": 1, + "commands": 1, + "that": 1, + "expect": 1, + "to": 1, + "be": 1, + "used": 1, + "interactively": 1, + "less": 1, + "wont": 1, + "work": 1, + "using": 1, + "eval.": 1, + "mode": 5, + "status": 7, + "is": 3, + "else": 3, + "none": 1, + "echo": 3, + "|": 3, + ".": 2, + "<": 1, + "&": 1, + "res": 2, + "return": 6, + "funced": 3, + "editor": 7, + "EDITOR": 1, + "funcname": 14, + "while": 2, + "argv": 9, + "h": 1, + "help": 1, + "__fish_print_help": 1, + "set_color": 4, + "red": 2, + "printf": 3, + "(": 7, + "_": 3, + ")": 7, + "normal": 2, + "begin": 2, + ";": 7, + "or": 3, + "init": 5, + "nend": 2, + "editor_cmd": 2, + "type": 1, + "f": 3, + "/dev/null": 2, + "fish": 3, + "z": 1, + "fish_indent": 2, + "indent": 1, + "prompt": 2, + "read": 1, + "p": 1, + "c": 1, + "s": 1, + "cmd": 2, + "TMPDIR": 2, + "/tmp": 1, + "tmpname": 8, + "%": 2, + "self": 2, + "random": 2, + "stat": 2, + "rm": 1 + }, + "wisp": { + ";": 199, + "#": 2, + "wisp": 6, + "Wisp": 13, + "is": 20, + "homoiconic": 1, + "JS": 17, + "dialect": 1, + "with": 6, + "a": 24, + "clojure": 2, + "syntax": 2, + "s": 7, + "-": 33, + "expressions": 6, + "and": 9, + "macros.": 1, + "code": 3, + "compiles": 1, + "to": 21, + "human": 1, + "readable": 1, + "javascript": 1, + "which": 3, + "one": 3, + "of": 16, + "they": 3, + "key": 3, + "differences": 1, + "from": 2, + "clojurescript.": 1, + "##": 2, + "data": 1, + "structures": 1, + "nil": 4, + "just": 3, + "like": 2, + "js": 1, + "undefined": 1, + "differenc": 1, + "that": 7, + "it": 10, + "shortcut": 1, + "for": 5, + "void": 2, + "(": 77, + ")": 75, + "in": 16, + "JS.": 2, + "Booleans": 1, + "booleans": 2, + "true": 6, + "/": 1, + "false": 2, + "are": 14, + "Numbers": 1, + "numbers": 2, + "Strings": 2, + "strings": 3, + "can": 13, + "be": 15, + "multiline": 1, + "Characters": 2, + "sugar": 1, + "single": 1, + "char": 1, + "Keywords": 3, + "symbolic": 2, + "identifiers": 2, + "evaluate": 2, + "themselves.": 1, + "keyword": 1, + "Since": 1, + "string": 1, + "constats": 1, + "fulfill": 1, + "this": 2, + "purpose": 2, + "keywords": 1, + "compile": 3, + "equivalent": 2, + "strings.": 1, + "window.addEventListener": 1, + "load": 1, + "handler": 1, + "invoked": 2, + "as": 4, + "functions": 8, + "desugars": 1, + "plain": 2, + "associated": 2, + "value": 2, + "access": 1, + "bar": 4, + "foo": 6, + "[": 22, + "]": 22, + "Vectors": 1, + "vectors": 1, + "arrays.": 1, + "Note": 3, + "Commas": 2, + "white": 1, + "space": 1, + "&": 6, + "used": 1, + "if": 7, + "desired": 1, + "Maps": 2, + "hash": 1, + "maps": 1, + "objects.": 1, + "unlike": 1, + "keys": 1, + "not": 4, + "arbitary": 1, + "types.": 1, + "{": 4, + "beep": 1, + "bop": 1, + "}": 4, + "optional": 2, + "but": 7, + "come": 1, + "handy": 1, + "separating": 1, + "pairs.": 1, + "b": 5, + "In": 5, + "future": 2, + "JSONs": 1, + "may": 1, + "made": 2, + "compatible": 1, + "map": 3, + "syntax.": 1, + "Lists": 1, + "You": 1, + "up": 1, + "lists": 1, + "representing": 1, + "expressions.": 1, + "The": 1, + "first": 4, + "item": 2, + "the": 9, + "expression": 6, + "function": 7, + "being": 1, + "rest": 7, + "items": 2, + "arguments.": 2, + "baz": 2, + "Conventions": 1, + "puts": 1, + "lot": 2, + "effort": 1, + "making": 1, + "naming": 1, + "conventions": 3, + "transparent": 1, + "by": 2, + "encouraning": 1, + "lisp": 1, + "then": 1, + "translating": 1, + "them": 1, + "dash": 1, + "delimited": 1, + "dashDelimited": 1, + "predicate": 1, + "isPredicate": 1, + "__privates__": 1, + "list": 2, + "vector": 1, + "listToVector": 1, + "As": 1, + "side": 2, + "effect": 1, + "some": 2, + "names": 1, + "expressed": 3, + "few": 1, + "ways": 1, + "although": 1, + "third": 2, + "expression.": 1, + "<": 1, + "number": 3, + "Else": 1, + "missing": 1, + "conditional": 1, + "evaluates": 2, + "result": 2, + "will": 6, + ".": 6, + "monday": 1, + "today": 1, + "Compbining": 1, + "everything": 1, + "an": 1, + "sometimes": 1, + "might": 1, + "want": 2, + "compbine": 1, + "multiple": 1, + "into": 2, + "usually": 3, + "evaluating": 1, + "have": 2, + "effects": 1, + "do": 4, + "console.log": 2, + "+": 9, + "Also": 1, + "special": 4, + "form": 10, + "many.": 1, + "If": 2, + "evaluation": 1, + "nil.": 1, + "Bindings": 1, + "Let": 1, + "containing": 1, + "lexical": 1, + "context": 1, + "simbols": 1, + "bindings": 1, + "forms": 1, + "bound": 1, + "their": 2, + "respective": 1, + "results.": 1, + "let": 2, + "c": 1, + "Functions": 1, + "fn": 15, + "x": 22, + "named": 1, + "similar": 2, + "increment": 1, + "also": 2, + "contain": 1, + "documentation": 1, + "metadata.": 1, + "Docstring": 1, + "metadata": 1, + "presented": 1, + "compiled": 2, + "yet": 1, + "comments": 1, + "function.": 1, + "incerement": 1, + "added": 1, + "makes": 1, + "capturing": 1, + "arguments": 7, + "easier": 1, + "than": 1, + "argument": 1, + "follows": 1, + "simbol": 1, + "capture": 1, + "all": 4, + "args": 1, + "array.": 1, + "rest.reduce": 1, + "sum": 3, + "Overloads": 1, + "overloaded": 1, + "depending": 1, + "on": 1, + "take": 2, + "without": 2, + "introspection": 1, + "version": 1, + "y": 6, + "more": 3, + "more.reduce": 1, + "does": 1, + "has": 2, + "variadic": 1, + "overload": 1, + "passed": 1, + "throws": 1, + "exception.": 1, + "Other": 1, + "Special": 1, + "Forms": 1, + "Instantiation": 1, + "type": 2, + "instantiation": 1, + "consice": 1, + "needs": 1, + "suffixed": 1, + "character": 1, + "Type.": 1, + "options": 2, + "More": 1, + "verbose": 1, + "there": 1, + "new": 2, + "Class": 1, + "Method": 1, + "calls": 3, + "method": 2, + "no": 1, + "different": 1, + "Any": 1, + "quoted": 1, + "prevent": 1, + "doesn": 1, + "t": 1, + "unless": 5, + "or": 2, + "macro": 7, + "try": 1, + "implemting": 1, + "understand": 1, + "use": 2, + "case": 1, + "We": 1, + "execute": 1, + "body": 4, + "condition": 4, + "defn": 2, + "Although": 1, + "following": 2, + "log": 1, + "anyway": 1, + "since": 1, + "exectued": 1, + "before": 1, + "called.": 1, + "Macros": 2, + "solve": 1, + "problem": 1, + "because": 1, + "immediately.": 1, + "Instead": 1, + "you": 1, + "get": 2, + "choose": 1, + "when": 1, + "evaluated.": 1, + "return": 1, + "instead.": 1, + "defmacro": 3, + "less": 1, + "how": 1, + "build": 1, + "implemented.": 1, + "define": 4, + "name": 2, + "def": 1, + "@body": 1, + "Now": 1, + "we": 2, + "above": 1, + "defined": 1, + "expanded": 2, + "time": 1, + "resulting": 1, + "diff": 1, + "program": 1, + "output.": 1, + "print": 1, + "message": 2, + ".log": 1, + "console": 1, + "Not": 1, + "macros": 2, + "via": 2, + "templating": 1, + "language": 1, + "available": 1, + "at": 1, + "hand": 1, + "assemble": 1, + "form.": 1, + "For": 2, + "instance": 1, + "ease": 1, + "functional": 1, + "chanining": 1, + "popular": 1, + "chaining.": 1, + "example": 1, + "API": 1, + "pioneered": 1, + "jQuery": 1, + "very": 2, + "common": 1, + "open": 2, + "target": 1, + "keypress": 2, + "filter": 2, + "isEnterKey": 1, + "getInputText": 1, + "reduce": 3, + "render": 2, + "Unfortunately": 1, + "though": 1, + "requires": 1, + "need": 1, + "methods": 1, + "dsl": 1, + "object": 1, + "limited.": 1, + "Making": 1, + "party": 1, + "second": 1, + "class.": 1, + "Via": 1, + "achieve": 1, + "chaining": 1, + "such": 1, + "tradeoffs.": 1, + "operations": 3, + "operation": 3, + "cons": 2, + "tagret": 1, + "enter": 1, + "input": 1, + "text": 1 } }, "language_tokens": { "ABAP": 1500, + "ATS": 4558, "Agda": 376, "Alloy": 1143, "ApacheConf": 1449, @@ -69621,7 +69622,6 @@ "AsciiDoc": 103, "AspectJ": 324, "Assembly": 21750, - "ATS": 4558, "AutoHotkey": 3, "Awk": 544, "BlitzBasic": 2065, @@ -69630,68 +69630,66 @@ "C": 59053, "C#": 278, "C++": 34739, + "COBOL": 90, + "CSS": 43867, "Ceylon": 50, "Cirru": 244, "Clojure": 510, - "COBOL": 90, "CoffeeScript": 2951, "Common Lisp": 2186, "Component Pascal": 825, "Coq": 18259, "Creole": 134, "Crystal": 1506, - "CSS": 43867, "Cuda": 290, + "DM": 169, "Dart": 74, "Diff": 16, - "DM": 169, "Dogescript": 30, "E": 601, - "Eagle": 30089, "ECL": 281, - "edn": 227, + "Eagle": 30089, "Elm": 628, "Emacs Lisp": 1756, "Erlang": 2928, - "fish": 636, "Forth": 1516, "Frege": 5564, - "Game Maker Language": 13310, "GAMS": 363, "GAP": 9944, "GAS": 133, "GLSL": 4033, + "Game Maker Language": 13310, "Gnuplot": 1023, "Gosu": 410, "Grammatical Framework": 10607, "Groovy": 93, "Groovy Server Pages": 91, + "HTML": 413, "Haml": 4, "Handlebars": 69, "Haskell": 302, - "HTML": 413, "Hy": 155, "IDL": 418, + "INI": 27, "Idris": 148, "Inform 7": 75, - "INI": 27, "Ioke": 2, "Isabelle": 136, + "JSON": 183, + "JSON5": 57, + "JSONLD": 18, + "JSONiq": 151, "Jade": 3, "Java": 8987, "JavaScript": 77056, - "JSON": 183, - "JSON5": 57, - "JSONiq": 151, - "JSONLD": 18, "Julia": 247, + "KRL": 25, "Kit": 6, "Kotlin": 155, - "KRL": 25, + "LFE": 1711, "Lasso": 9849, "Latte": 759, "Less": 39, - "LFE": 1711, "Liquid": 633, "Literate Agda": 478, "Literate CoffeeScript": 275, @@ -69700,6 +69698,7 @@ "Logtalk": 36, "Lua": 724, "M": 23615, + "MTML": 93, "Makefile": 50, "Markdown": 1, "Mask": 74, @@ -69711,17 +69710,16 @@ "Monkey": 207, "Moocode": 5234, "MoonScript": 1718, - "MTML": 93, + "NSIS": 725, "Nemerle": 17, "NetLogo": 243, "Nginx": 179, "Nimrod": 1, "Nix": 188, - "NSIS": 725, "Nu": 116, + "OCaml": 382, "Objective-C": 26518, "Objective-C++": 6021, - "OCaml": 382, "Omgrofl": 57, "Opa": 28, "OpenCL": 144, @@ -69729,14 +69727,14 @@ "Org": 358, "Ox": 1006, "Oxygene": 157, + "PAWN": 3263, + "PHP": 20724, "Pan": 130, "Parrot Assembly": 6, "Parrot Internal Representation": 5, "Pascal": 30, - "PAWN": 3263, "Perl": 17979, "Perl6": 372, - "PHP": 20724, "Pike": 1835, "Pod": 658, "PogoScript": 250, @@ -69750,22 +69748,24 @@ "Python": 6587, "QMake": 119, "R": 1790, + "RDoc": 279, + "RMarkdown": 19, "Racket": 331, "Ragel in Ruby Host": 593, - "RDoc": 279, "Rebol": 533, "Red": 816, - "RMarkdown": 19, "RobotFramework": 483, "Ruby": 3893, "Rust": 3566, "SAS": 93, + "SCSS": 39, + "SQL": 1485, + "STON": 100, "Sass": 56, "Scala": 750, "Scaml": 4, "Scheme": 3515, "Scilab": 69, - "SCSS": 39, "Shell": 3744, "ShellSession": 233, "Shen": 3472, @@ -69773,42 +69773,43 @@ "Slim": 77, "Smalltalk": 423, "SourcePawn": 2080, - "SQL": 1485, "Squirrel": 130, "Standard ML": 6567, "Stata": 3133, - "STON": 100, "Stylus": 76, "SuperCollider": 133, "Swift": 1128, "SystemVerilog": 541, - "Tcl": 1133, - "Tea": 3, - "TeX": 2701, - "Turing": 44, "TXL": 213, + "Tcl": 1133, + "TeX": 2701, + "Tea": 3, + "Turing": 44, "TypeScript": 109, "UnrealScript": 2873, "VCL": 545, - "Verilog": 3778, "VHDL": 42, + "Verilog": 3778, "VimL": 20, "Visual Basic": 581, "Volt": 388, - "wisp": 1363, "XC": 24, "XML": 7057, - "Xojo": 807, "XProc": 22, "XQuery": 801, "XSLT": 44, + "Xojo": 807, "Xtend": 399, "YAML": 77, "Zephir": 1085, - "Zimpl": 123 + "Zimpl": 123, + "edn": 227, + "fish": 636, + "wisp": 1363 }, "languages": { "ABAP": 1, + "ATS": 10, "Agda": 1, "Alloy": 3, "ApacheConf": 3, @@ -69818,7 +69819,6 @@ "AsciiDoc": 3, "AspectJ": 2, "Assembly": 4, - "ATS": 10, "AutoHotkey": 1, "Awk": 1, "BlitzBasic": 3, @@ -69827,68 +69827,66 @@ "C": 29, "C#": 2, "C++": 29, + "COBOL": 4, + "CSS": 2, "Ceylon": 1, "Cirru": 9, "Clojure": 7, - "COBOL": 4, "CoffeeScript": 9, "Common Lisp": 3, "Component Pascal": 2, "Coq": 12, "Creole": 1, "Crystal": 3, - "CSS": 2, "Cuda": 2, + "DM": 1, "Dart": 1, "Diff": 1, - "DM": 1, "Dogescript": 1, "E": 6, - "Eagle": 2, "ECL": 1, - "edn": 1, + "Eagle": 2, "Elm": 3, "Emacs Lisp": 2, "Erlang": 5, - "fish": 3, "Forth": 7, "Frege": 4, - "Game Maker Language": 13, "GAMS": 1, "GAP": 7, "GAS": 1, "GLSL": 5, + "Game Maker Language": 13, "Gnuplot": 6, "Gosu": 4, "Grammatical Framework": 41, "Groovy": 5, "Groovy Server Pages": 4, + "HTML": 2, "Haml": 1, "Handlebars": 2, "Haskell": 3, - "HTML": 2, "Hy": 2, "IDL": 4, + "INI": 2, "Idris": 1, "Inform 7": 2, - "INI": 2, "Ioke": 1, "Isabelle": 1, + "JSON": 4, + "JSON5": 2, + "JSONLD": 1, + "JSONiq": 2, "Jade": 1, "Java": 6, "JavaScript": 24, - "JSON": 4, - "JSON5": 2, - "JSONiq": 2, - "JSONLD": 1, "Julia": 1, + "KRL": 1, "Kit": 1, "Kotlin": 1, - "KRL": 1, + "LFE": 4, "Lasso": 4, "Latte": 2, "Less": 1, - "LFE": 4, "Liquid": 2, "Literate Agda": 1, "Literate CoffeeScript": 1, @@ -69897,6 +69895,7 @@ "Logtalk": 1, "Lua": 3, "M": 29, + "MTML": 1, "Makefile": 2, "Markdown": 1, "Mask": 1, @@ -69908,17 +69907,16 @@ "Monkey": 1, "Moocode": 3, "MoonScript": 1, - "MTML": 1, + "NSIS": 2, "Nemerle": 1, "NetLogo": 1, "Nginx": 1, "Nimrod": 1, "Nix": 1, - "NSIS": 2, "Nu": 2, + "OCaml": 2, "Objective-C": 19, "Objective-C++": 2, - "OCaml": 2, "Omgrofl": 1, "Opa": 2, "OpenCL": 2, @@ -69926,14 +69924,14 @@ "Org": 1, "Ox": 3, "Oxygene": 1, + "PAWN": 1, + "PHP": 9, "Pan": 1, "Parrot Assembly": 1, "Parrot Internal Representation": 1, "Pascal": 1, - "PAWN": 1, "Perl": 15, "Perl6": 3, - "PHP": 9, "Pike": 2, "Pod": 1, "PogoScript": 1, @@ -69947,22 +69945,24 @@ "Python": 10, "QMake": 4, "R": 7, + "RDoc": 1, + "RMarkdown": 1, "Racket": 2, "Ragel in Ruby Host": 3, - "RDoc": 1, "Rebol": 6, "Red": 2, - "RMarkdown": 1, "RobotFramework": 3, "Ruby": 18, "Rust": 1, "SAS": 2, + "SCSS": 1, + "SQL": 5, + "STON": 7, "Sass": 2, "Scala": 4, "Scaml": 1, "Scheme": 2, "Scilab": 3, - "SCSS": 1, "Shell": 37, "ShellSession": 3, "Shen": 3, @@ -69970,39 +69970,39 @@ "Slim": 1, "Smalltalk": 3, "SourcePawn": 1, - "SQL": 5, "Squirrel": 1, "Standard ML": 5, "Stata": 7, - "STON": 7, "Stylus": 1, "SuperCollider": 1, "Swift": 43, "SystemVerilog": 4, - "Tcl": 2, - "Tea": 1, - "TeX": 2, - "Turing": 1, "TXL": 1, + "Tcl": 2, + "TeX": 2, + "Tea": 1, + "Turing": 1, "TypeScript": 3, "UnrealScript": 2, "VCL": 2, - "Verilog": 13, "VHDL": 1, + "Verilog": 13, "VimL": 2, "Visual Basic": 3, "Volt": 1, - "wisp": 1, "XC": 1, "XML": 13, - "Xojo": 6, "XProc": 1, "XQuery": 1, "XSLT": 1, + "Xojo": 6, "Xtend": 2, "YAML": 2, "Zephir": 5, - "Zimpl": 1 + "Zimpl": 1, + "edn": 1, + "fish": 3, + "wisp": 1 }, "md5": "59afe9ab875947c5df3590aef023152d" } \ No newline at end of file From c4260ae6814e0b60fa97db1359d1044057df46aa Mon Sep 17 00:00:00 2001 From: Vicent Marti Date: Mon, 16 Jun 2014 15:19:56 +0200 Subject: [PATCH 064/268] Use Rugged when computing Repository stats --- Gemfile | 2 + lib/linguist/blob_helper.rb | 10 +-- lib/linguist/file_blob.rb | 4 +- lib/linguist/language.rb | 14 ++-- lib/linguist/repository.rb | 128 ++++++++++++++++++++---------------- test/test_heuristics.rb | 5 -- test/test_repository.rb | 11 +--- 7 files changed, 82 insertions(+), 92 deletions(-) diff --git a/Gemfile b/Gemfile index 851fabc2..3ac3ffa4 100644 --- a/Gemfile +++ b/Gemfile @@ -1,2 +1,4 @@ source 'https://rubygems.org' + gemspec +gem 'rugged', :git => 'https://github.com/libgit2/rugged.git', branch: 'development', submodules: true diff --git a/lib/linguist/blob_helper.rb b/lib/linguist/blob_helper.rb index 15ab2d9f..27c4b3dd 100644 --- a/lib/linguist/blob_helper.rb +++ b/lib/linguist/blob_helper.rb @@ -313,15 +313,7 @@ module Linguist # # Returns a Language or nil if none is detected def language - return @language if defined? @language - - if defined?(@data) && @data.is_a?(String) - data = @data - else - data = lambda { (binary_mime_type? || binary?) ? "" : self.data } - end - - @language = Language.detect(name.to_s, data, mode) + @language ||= Language.detect(self) end # Internal: Get the lexer of the blob. diff --git a/lib/linguist/file_blob.rb b/lib/linguist/file_blob.rb index 7e7f1acd..e84e9b61 100644 --- a/lib/linguist/file_blob.rb +++ b/lib/linguist/file_blob.rb @@ -34,9 +34,9 @@ module Linguist # Public: Read file permissions # - # Returns a String like '100644' + # Returns an Int like 0100644 def mode - File.stat(@path).mode.to_s(8) + File.stat(@path).mode end # Public: Read file contents. diff --git a/lib/linguist/language.rb b/lib/linguist/language.rb index a8e7a33c..3a354463 100644 --- a/lib/linguist/language.rb +++ b/lib/linguist/language.rb @@ -92,18 +92,14 @@ module Linguist # Public: Detects the Language of the blob. # - # name - String filename - # data - String blob data. A block also maybe passed in for lazy - # loading. This behavior is deprecated and you should always - # pass in a String. - # mode - Optional String mode (defaults to nil) - # # Returns Language or nil. - def self.detect(name, data, mode = nil) + def self.detect(blob) + name = blob.name + # A bit of an elegant hack. If the file is executable but extensionless, # append a "magic" extension so it can be classified with other # languages that have shebang scripts. - if File.extname(name).empty? && mode && (mode.to_i(8) & 05) == 05 + if File.extname(name).empty? && blob.mode && (blob.mode & 05) == 05 name += ".script!" end @@ -114,7 +110,7 @@ module Linguist # extension at all, in the case of extensionless scripts), we need to continue # our detection work if possible_languages.length > 1 - data = data.call() if data.respond_to?(:call) + data = blob.data possible_language_names = possible_languages.map(&:name) # Don't bother with emptiness diff --git a/lib/linguist/repository.rb b/lib/linguist/repository.rb index a62bf281..bbf32171 100644 --- a/lib/linguist/repository.rb +++ b/lib/linguist/repository.rb @@ -1,4 +1,6 @@ require 'linguist/file_blob' +require 'linguist/lazy_blob' +require 'rugged' module Linguist # A Repository is an abstraction of a Grit::Repo or a basic file @@ -7,29 +9,15 @@ module Linguist # Its primary purpose is for gathering language statistics across # the entire project. class Repository - # Public: Initialize a new Repository from a File directory - # - # base_path - A path String - # - # Returns a Repository - def self.from_directory(base_path) - new Dir["#{base_path}/**/*"]. - select { |f| File.file?(f) }. - map { |path| FileBlob.new(path, base_path) } - end + attr_reader :repository # Public: Initialize a new Repository # - # enum - Enumerator that responds to `each` and - # yields Blob objects - # # Returns a Repository - def initialize(enum) - @enum = enum - @computed_stats = false - @language = @size = nil - @sizes = Hash.new { 0 } - @file_breakdown = Hash.new { |h,k| h[k] = Array.new } + def initialize(repo, sha1, existing_stats = nil) + @repository = repo + @current_sha1 = sha1 + @old_sha1, @old_stats = existing_stats if existing_stats end # Public: Returns a breakdown of language stats. @@ -41,66 +29,90 @@ module Linguist # # Returns a Hash of Language keys and Integer size values. def languages - compute_stats - @sizes + @sizes ||= begin + sizes = Hash.new { 0 } + file_map.each do |_, (language, size)| + sizes[language] += size + end + sizes + end end # Public: Get primary Language of repository. # # Returns a Language def language - compute_stats - @language + @language ||= begin + primary = languages.max_by { |(_, size)| size } + primary && primary[0] + end end # Public: Get the total size of the repository. # # Returns a byte size Integer def size - compute_stats - @size + @size ||= languages.inject(0) { |s,(_,v)| s + v } end # Public: Return the language breakdown of this repository by file def breakdown_by_file - compute_stats - @file_breakdown + @file_breakdown ||= begin + breakdown = Hash.new { |h,k| h[k] = Array.new } + file_map.each do |filename, (language, _)| + breakdown[language.name] << filename + end + breakdown + end + end + + def incremental_stats(old_sha1, new_sha1, file_map = nil) + file_map = file_map ? file_map.dup : {} + old_commit = old_sha1 && Rugged::Commit.lookup(repository, old_sha1) + new_commit = Rugged::Commit.lookup(repository, new_sha1) + + diff = Rugged::Tree.diff(repository, old_commit, new_commit) + + diff.each_delta do |delta| + old = delta.old_file[:path] + new = delta.new_file[:path] + + file_map.delete(old) + next if delta.binary + + if [:added, :modified].include? delta.status + blob = Linguist::LazyBlob.new(repository, delta.new_file[:oid], new, delta.new_file[:mode]) + + # Skip vendored or generated blobs + next if blob.vendored? || blob.generated? || blob.language.nil? + + # Only include programming languages and acceptable markup languages + if blob.language.type == :programming || Language.detectable_markup.include?(blob.language.name) + file_map[new] = [blob.language.group, blob.size] + end + end + end + + file_map + end + + def load_stats(file) + @old_sha1, @old_stats = JSON.load(file) + end + + def dump_stats(file) + JSON.dump([@current_sha1, file_map], file) end # Internal: Compute language breakdown for each blob in the Repository. # # Returns nothing - def compute_stats - return if @computed_stats - - @enum.each do |blob| - # Skip files that are likely binary - next if blob.likely_binary? - - # Skip vendored or generated blobs - next if blob.vendored? || blob.generated? || blob.language.nil? - - # Only include programming languages and acceptable markup languages - if blob.language.type == :programming || Language.detectable_markup.include?(blob.language.name) - - # Build up the per-file breakdown stats - @file_breakdown[blob.language.group.name] << blob.name - - @sizes[blob.language.group] += blob.size - end - end - - # Compute total size - @size = @sizes.inject(0) { |s,(_,v)| s + v } - - # Get primary language - if primary = @sizes.max_by { |(_, size)| size } - @language = primary[0] - end - - @computed_stats = true - - nil + def file_map + @file_map ||= if @old_sha1 == @current_sha1 + @old_stats + else + incremental_stats(@old_sha1, @current_sha1, @old_stats) + end end end end diff --git a/test/test_heuristics.rb b/test/test_heuristics.rb index 0c1a07ff..33f8a087 100644 --- a/test/test_heuristics.rb +++ b/test/test_heuristics.rb @@ -34,11 +34,6 @@ class TestHeuristcs < Test::Unit::TestCase assert_equal Language["C++"], results.first end - def test_detect_still_works_if_nothing_matches - match = Language.detect("Hello.m", fixture("Objective-C/hello.m")) - assert_equal Language["Objective-C"], match - end - def test_pl_prolog_by_heuristics languages = ["Perl", "Prolog"] results = Heuristics.disambiguate_pl(fixture("Prolog/turing.pl"), languages) diff --git a/test/test_repository.rb b/test/test_repository.rb index 832489d3..13dbdaef 100644 --- a/test/test_repository.rb +++ b/test/test_repository.rb @@ -5,12 +5,9 @@ require 'test/unit' class TestRepository < Test::Unit::TestCase include Linguist - def repo(base_path) - Repository.from_directory(base_path) - end - def linguist_repo - repo(File.expand_path("../..", __FILE__)) + r = Rugged::Repository.new(File.expand_path("../../.git", __FILE__)) + Linguist::Repository.new(r, '31921838cdc252536ec07668f73d4b64d8022750') end def test_linguist_language @@ -30,8 +27,4 @@ class TestRepository < Test::Unit::TestCase assert linguist_repo.breakdown_by_file["Ruby"].include?("bin/linguist") assert linguist_repo.breakdown_by_file["Ruby"].include?("lib/linguist/language.rb") end - - def test_binary_override - assert_equal repo(File.expand_path("../../samples/Nimrod", __FILE__)).language, Language["Nimrod"] - end end From cd58a30c7c29fb1a0cd4331eb7d1f36ce445bbc7 Mon Sep 17 00:00:00 2001 From: Vicent Marti Date: Mon, 16 Jun 2014 16:41:58 +0200 Subject: [PATCH 065/268] Only cache strings, thanks --- lib/linguist/repository.rb | 37 ++++++++++++++----------------------- lib/linguist/version.rb | 2 +- 2 files changed, 15 insertions(+), 24 deletions(-) diff --git a/lib/linguist/repository.rb b/lib/linguist/repository.rb index bbf32171..960ae3df 100644 --- a/lib/linguist/repository.rb +++ b/lib/linguist/repository.rb @@ -31,7 +31,7 @@ module Linguist def languages @sizes ||= begin sizes = Hash.new { 0 } - file_map.each do |_, (language, size)| + cache.each do |_, (language, size)| sizes[language] += size end sizes @@ -59,15 +59,15 @@ module Linguist def breakdown_by_file @file_breakdown ||= begin breakdown = Hash.new { |h,k| h[k] = Array.new } - file_map.each do |filename, (language, _)| - breakdown[language.name] << filename + cache.each do |filename, (language, _)| + breakdown[language] << filename end breakdown end end - def incremental_stats(old_sha1, new_sha1, file_map = nil) - file_map = file_map ? file_map.dup : {} + def incremental_stats(old_sha1, new_sha1, cache = nil) + file_map = cache ? cache.dup : {} old_commit = old_sha1 && Rugged::Commit.lookup(repository, old_sha1) new_commit = Rugged::Commit.lookup(repository, new_sha1) @@ -88,7 +88,7 @@ module Linguist # Only include programming languages and acceptable markup languages if blob.language.type == :programming || Language.detectable_markup.include?(blob.language.name) - file_map[new] = [blob.language.group, blob.size] + file_map[new] = [blob.language.group.name, blob.size] end end end @@ -96,23 +96,14 @@ module Linguist file_map end - def load_stats(file) - @old_sha1, @old_stats = JSON.load(file) - end - - def dump_stats(file) - JSON.dump([@current_sha1, file_map], file) - end - - # Internal: Compute language breakdown for each blob in the Repository. - # - # Returns nothing - def file_map - @file_map ||= if @old_sha1 == @current_sha1 - @old_stats - else - incremental_stats(@old_sha1, @current_sha1, @old_stats) - end + def cache + @cache ||= begin + if @old_sha1 == @current_sha1 + @old_stats + else + incremental_stats(@old_sha1, @current_sha1, @old_stats) + end + end end end end diff --git a/lib/linguist/version.rb b/lib/linguist/version.rb index 6704b3fb..ed7d57dc 100644 --- a/lib/linguist/version.rb +++ b/lib/linguist/version.rb @@ -1,3 +1,3 @@ module Linguist - VERSION = "2.12.0" + VERSION = "2.13.0.github2" end From 463f48f04f4f2137222044ba42d5dc7175f5dbf2 Mon Sep 17 00:00:00 2001 From: Vicent Marti Date: Mon, 16 Jun 2014 17:31:44 +0200 Subject: [PATCH 066/268] Mode must always be a String --- lib/linguist/file_blob.rb | 4 ++-- lib/linguist/language.rb | 2 +- lib/linguist/repository.rb | 3 ++- lib/linguist/version.rb | 2 +- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/lib/linguist/file_blob.rb b/lib/linguist/file_blob.rb index e84e9b61..9123922f 100644 --- a/lib/linguist/file_blob.rb +++ b/lib/linguist/file_blob.rb @@ -34,9 +34,9 @@ module Linguist # Public: Read file permissions # - # Returns an Int like 0100644 + # Returns a String like '0100644' def mode - File.stat(@path).mode + File.stat(@path).mode.to_s(8) end # Public: Read file contents. diff --git a/lib/linguist/language.rb b/lib/linguist/language.rb index 3a354463..bdaa91e8 100644 --- a/lib/linguist/language.rb +++ b/lib/linguist/language.rb @@ -99,7 +99,7 @@ module Linguist # A bit of an elegant hack. If the file is executable but extensionless, # append a "magic" extension so it can be classified with other # languages that have shebang scripts. - if File.extname(name).empty? && blob.mode && (blob.mode & 05) == 05 + if File.extname(name).empty? && blob.mode && (blob.mode.to_i(8) & 05) == 05 name += ".script!" end diff --git a/lib/linguist/repository.rb b/lib/linguist/repository.rb index 960ae3df..9fb6ebc7 100644 --- a/lib/linguist/repository.rb +++ b/lib/linguist/repository.rb @@ -81,7 +81,8 @@ module Linguist next if delta.binary if [:added, :modified].include? delta.status - blob = Linguist::LazyBlob.new(repository, delta.new_file[:oid], new, delta.new_file[:mode]) + mode = delta.new_file[:mode].to_s(8) + blob = Linguist::LazyBlob.new(repository, delta.new_file[:oid], new, mode) # Skip vendored or generated blobs next if blob.vendored? || blob.generated? || blob.language.nil? diff --git a/lib/linguist/version.rb b/lib/linguist/version.rb index ed7d57dc..c47a92f3 100644 --- a/lib/linguist/version.rb +++ b/lib/linguist/version.rb @@ -1,3 +1,3 @@ module Linguist - VERSION = "2.13.0.github2" + VERSION = "2.13.0.github3" end From ea1fc90cf5610acf6dd987af324ceab7ed78dbc0 Mon Sep 17 00:00:00 2001 From: Vicent Marti Date: Mon, 16 Jun 2014 18:41:51 +0200 Subject: [PATCH 067/268] Handle `nil` blob names --- lib/linguist/file_blob.rb | 2 +- lib/linguist/language.rb | 2 +- lib/linguist/version.rb | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/linguist/file_blob.rb b/lib/linguist/file_blob.rb index 9123922f..7e7f1acd 100644 --- a/lib/linguist/file_blob.rb +++ b/lib/linguist/file_blob.rb @@ -34,7 +34,7 @@ module Linguist # Public: Read file permissions # - # Returns a String like '0100644' + # Returns a String like '100644' def mode File.stat(@path).mode.to_s(8) end diff --git a/lib/linguist/language.rb b/lib/linguist/language.rb index bdaa91e8..ffbecb7b 100644 --- a/lib/linguist/language.rb +++ b/lib/linguist/language.rb @@ -94,7 +94,7 @@ module Linguist # # Returns Language or nil. def self.detect(blob) - name = blob.name + name = blob.name.to_s # A bit of an elegant hack. If the file is executable but extensionless, # append a "magic" extension so it can be classified with other diff --git a/lib/linguist/version.rb b/lib/linguist/version.rb index c47a92f3..232278b4 100644 --- a/lib/linguist/version.rb +++ b/lib/linguist/version.rb @@ -1,3 +1,3 @@ module Linguist - VERSION = "2.13.0.github3" + VERSION = "2.13.0.github4" end From 5896bb8fa35d813902dff6a7495f3da3ec2f32f2 Mon Sep 17 00:00:00 2001 From: Vicent Marti Date: Tue, 24 Jun 2014 17:52:43 +0200 Subject: [PATCH 068/268] Missing file. Duh. --- lib/linguist/lazy_blob.rb | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 lib/linguist/lazy_blob.rb diff --git a/lib/linguist/lazy_blob.rb b/lib/linguist/lazy_blob.rb new file mode 100644 index 00000000..bb262241 --- /dev/null +++ b/lib/linguist/lazy_blob.rb @@ -0,0 +1,37 @@ +require 'linguist/blob_helper' +require 'rugged' + +module Linguist + class LazyBlob + include BlobHelper + + MAX_SIZE = 128 * 1024 + + attr_reader :repository + attr_reader :oid + attr_reader :name + attr_reader :mode + + def initialize(repo, oid, name, mode = nil) + @repository = repo + @oid = oid + @name = name + @mode = mode + end + + def data + load_blob! + @data + end + + def size + load_blob! + @size + end + + protected + def load_blob! + @data, @size = Rugged::Blob.to_buffer(repository, oid, MAX_SIZE) if @data.nil? + end + end +end From 1fd59361b5c4ce323d633261377a9175d3f8f1f9 Mon Sep 17 00:00:00 2001 From: Vicent Marti Date: Wed, 25 Jun 2014 20:26:44 +0200 Subject: [PATCH 069/268] Proper incremental diffing --- lib/linguist/repository.rb | 18 +++++++++--------- test/test_repository.rb | 33 +++++++++++++++++++++++++++------ 2 files changed, 36 insertions(+), 15 deletions(-) diff --git a/lib/linguist/repository.rb b/lib/linguist/repository.rb index 9fb6ebc7..e11d2b23 100644 --- a/lib/linguist/repository.rb +++ b/lib/linguist/repository.rb @@ -14,10 +14,10 @@ module Linguist # Public: Initialize a new Repository # # Returns a Repository - def initialize(repo, sha1, existing_stats = nil) + def initialize(repo, commit_oid, existing_stats = nil) @repository = repo - @current_sha1 = sha1 - @old_sha1, @old_stats = existing_stats if existing_stats + @commit_oid = commit_oid + @old_commit_oid, @old_stats = existing_stats if existing_stats end # Public: Returns a breakdown of language stats. @@ -66,12 +66,12 @@ module Linguist end end - def incremental_stats(old_sha1, new_sha1, cache = nil) + def compute_stats(old_commit_oid, commit_oid, cache = nil) file_map = cache ? cache.dup : {} - old_commit = old_sha1 && Rugged::Commit.lookup(repository, old_sha1) - new_commit = Rugged::Commit.lookup(repository, new_sha1) + old_tree = old_commit_oid && Rugged::Commit.lookup(repository, old_commit_oid).tree + new_tree = Rugged::Commit.lookup(repository, commit_oid).tree - diff = Rugged::Tree.diff(repository, old_commit, new_commit) + diff = Rugged::Tree.diff(repository, old_tree, new_tree) diff.each_delta do |delta| old = delta.old_file[:path] @@ -99,10 +99,10 @@ module Linguist def cache @cache ||= begin - if @old_sha1 == @current_sha1 + if @old_commit_oid == @commit_oid @old_stats else - incremental_stats(@old_sha1, @current_sha1, @old_stats) + compute_stats(@old_commit_oid, @commit_oid, @old_stats) end end end diff --git a/test/test_repository.rb b/test/test_repository.rb index 13dbdaef..bd96e66d 100644 --- a/test/test_repository.rb +++ b/test/test_repository.rb @@ -3,19 +3,24 @@ require 'linguist/repository' require 'test/unit' class TestRepository < Test::Unit::TestCase - include Linguist + def rugged_repository + @rugged ||= Rugged::Repository.new(File.expand_path("../../.git", __FILE__)) + end - def linguist_repo - r = Rugged::Repository.new(File.expand_path("../../.git", __FILE__)) - Linguist::Repository.new(r, '31921838cdc252536ec07668f73d4b64d8022750') + def master_oid + @master_oid ||= Rugged::Object.rev_parse_oid(rugged_repository, 'master') + end + + def linguist_repo(oid = master_oid) + Linguist::Repository.new(rugged_repository, oid) end def test_linguist_language - # assert_equal Language['Ruby'], linguist_repo.language + assert_equal 'Ruby', linguist_repo.language end def test_linguist_languages - # assert linguist_repo.languages[Language['Ruby']] > 10_000 + assert linguist_repo.languages['Ruby'] > 10_000 end def test_linguist_size @@ -27,4 +32,20 @@ class TestRepository < Test::Unit::TestCase assert linguist_repo.breakdown_by_file["Ruby"].include?("bin/linguist") assert linguist_repo.breakdown_by_file["Ruby"].include?("lib/linguist/language.rb") end + + def test_incremental_stats + old_commit = Rugged::Object.rev_parse_oid(rugged_repository, 'v2.0.0') + old_repo = linguist_repo(old_commit) + + assert old_repo.languages['Ruby'] > 10_000 + assert old_repo.size > 30_000 + + old_cache = [old_commit, old_repo.cache] + new_repo = Linguist::Repository.new(rugged_repository, master_oid, old_cache) + + assert new_repo.languages['Ruby'] > old_repo.languages['Ruby'] + assert new_repo.size > old_repo.size + + assert_equal linguist_repo.cache, new_repo.cache + end end From 29072d6eae88b31c56cf7604e5c2aeb39afbcbda Mon Sep 17 00:00:00 2001 From: Vicent Marti Date: Thu, 26 Jun 2014 12:27:02 +0200 Subject: [PATCH 070/268] Fix travis build --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 83880550..3a5791da 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,6 @@ before_install: + - git fetch origin master:master + - git fetch origin v2.0.0:v2.0.0 - sudo apt-get install libicu-dev -y - gem update --system 2.1.11 rvm: From 659d27cae589c9cb5a085239dd3833a8cede9462 Mon Sep 17 00:00:00 2001 From: Vicent Marti Date: Thu, 26 Jun 2014 12:54:08 +0200 Subject: [PATCH 071/268] DOCS --- lib/linguist/repository.rb | 74 ++++++++++++++++++++++++++++---------- test/test_repository.rb | 3 +- 2 files changed, 57 insertions(+), 20 deletions(-) diff --git a/lib/linguist/repository.rb b/lib/linguist/repository.rb index e11d2b23..82e9ef47 100644 --- a/lib/linguist/repository.rb +++ b/lib/linguist/repository.rb @@ -1,4 +1,3 @@ -require 'linguist/file_blob' require 'linguist/lazy_blob' require 'rugged' @@ -11,23 +10,53 @@ module Linguist class Repository attr_reader :repository - # Public: Initialize a new Repository + # Public: Create a new Repository based on the stats of + # an existing one + def self.incremental(repo, commit_oid, old_commit_oid, old_stats) + repo = self.new(repo, commit_oid) + repo.load_existing_stats(old_commit_oid, old_stats) + repo + end + + # Public: Initialize a new Repository to be analyzed for language + # data + # + # repo - a Rugged::Repository object + # commit_oid - the sha1 of the commit that will be analyzed; + # this is usually the master branch # # Returns a Repository - def initialize(repo, commit_oid, existing_stats = nil) + def initialize(repo, commit_oid) @repository = repo @commit_oid = commit_oid - @old_commit_oid, @old_stats = existing_stats if existing_stats + end + + # Public: Load the results of a previous analysis on this repository + # to speed up the new scan. + # + # The new analysis will be performed incrementally as to only take + # into account the file changes since the last time the repository + # was scanned + # + # old_commit_oid - the sha1 of the commit that was previously analyzed + # old_stats - the result of the previous analysis, obtained by calling + # Repository#cache on the old repository + # + # Returns nothing + def load_existing_stats(old_commit_oid, old_stats) + @old_commit_oid = old_commit_oid + @old_stats = old_stats + nil end # Public: Returns a breakdown of language stats. # # Examples # - # # => { Language['Ruby'] => 46319, - # Language['JavaScript'] => 258 } + # # => { 'Ruby' => 46319, + # 'JavaScript' => 258 } # - # Returns a Hash of Language keys and Integer size values. + # Returns a Hash of language names and Integer size values. def languages @sizes ||= begin sizes = Hash.new { 0 } @@ -40,7 +69,7 @@ module Linguist # Public: Get primary Language of repository. # - # Returns a Language + # Returns a language name def language @language ||= begin primary = languages.max_by { |(_, size)| size } @@ -56,6 +85,8 @@ module Linguist end # Public: Return the language breakdown of this repository by file + # + # Returns a map of language names => [filenames...] def breakdown_by_file @file_breakdown ||= begin breakdown = Hash.new { |h,k| h[k] = Array.new } @@ -66,6 +97,23 @@ module Linguist end end + # Public: Return the cached results of the analysis + # + # This is a per-file breakdown that can be passed to other instances + # of Linguist::Repository to perform incremental scans + # + # Returns a map of filename => [language, size] + def cache + @cache ||= begin + if @old_commit_oid == @commit_oid + @old_stats + else + compute_stats(@old_commit_oid, @commit_oid, @old_stats) + end + end + end + + protected def compute_stats(old_commit_oid, commit_oid, cache = nil) file_map = cache ? cache.dup : {} old_tree = old_commit_oid && Rugged::Commit.lookup(repository, old_commit_oid).tree @@ -96,15 +144,5 @@ module Linguist file_map end - - def cache - @cache ||= begin - if @old_commit_oid == @commit_oid - @old_stats - else - compute_stats(@old_commit_oid, @commit_oid, @old_stats) - end - end - end end end diff --git a/test/test_repository.rb b/test/test_repository.rb index bd96e66d..6637f51f 100644 --- a/test/test_repository.rb +++ b/test/test_repository.rb @@ -40,8 +40,7 @@ class TestRepository < Test::Unit::TestCase assert old_repo.languages['Ruby'] > 10_000 assert old_repo.size > 30_000 - old_cache = [old_commit, old_repo.cache] - new_repo = Linguist::Repository.new(rugged_repository, master_oid, old_cache) + new_repo = Linguist::Repository.incremental(rugged_repository, master_oid, old_commit, old_repo.cache) assert new_repo.languages['Ruby'] > old_repo.languages['Ruby'] assert new_repo.size > old_repo.size From bc34345a56f977ac070675b57ad01fd76cf5778b Mon Sep 17 00:00:00 2001 From: Vicent Marti Date: Thu, 26 Jun 2014 13:03:30 +0200 Subject: [PATCH 072/268] Fix the linguist binary --- bin/linguist | 4 +++- lib/linguist/repository.rb | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/bin/linguist b/bin/linguist index 2cfa8064..e086dcea 100755 --- a/bin/linguist +++ b/bin/linguist @@ -5,6 +5,7 @@ require 'linguist/file_blob' require 'linguist/repository' +require 'rugged' path = ARGV[0] || Dir.pwd @@ -18,7 +19,8 @@ ARGV.shift breakdown = true if ARGV[0] == "--breakdown" if File.directory?(path) - repo = Linguist::Repository.from_directory(path) + rugged = Rugged::Repository.new(path) + repo = Linguist::Repository.new(rugged, rugged.head.target_id) repo.languages.sort_by { |_, size| size }.reverse.each do |language, size| percentage = ((size / repo.size.to_f) * 100) percentage = sprintf '%.2f' % percentage diff --git a/lib/linguist/repository.rb b/lib/linguist/repository.rb index 82e9ef47..e3d2d707 100644 --- a/lib/linguist/repository.rb +++ b/lib/linguist/repository.rb @@ -29,6 +29,8 @@ module Linguist def initialize(repo, commit_oid) @repository = repo @commit_oid = commit_oid + + raise TypeError, 'commit_oid must be a commit SHA1' unless commit_oid.is_a?(String) end # Public: Load the results of a previous analysis on this repository From 00a873dcc7ed88201b2a502f703e04784ddeccb8 Mon Sep 17 00:00:00 2001 From: Vicent Marti Date: Thu, 26 Jun 2014 13:03:41 +0200 Subject: [PATCH 073/268] Bump 3.0.0b0 --- lib/linguist/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/version.rb b/lib/linguist/version.rb index 232278b4..42e0eb95 100644 --- a/lib/linguist/version.rb +++ b/lib/linguist/version.rb @@ -1,3 +1,3 @@ module Linguist - VERSION = "2.13.0.github4" + VERSION = "3.0.0b0" end From 324ac834891a31b4738cd7a8f17da2d2db93075d Mon Sep 17 00:00:00 2001 From: Vicent Marti Date: Thu, 26 Jun 2014 14:12:00 +0200 Subject: [PATCH 074/268] Use the new Rugged release --- Gemfile | 1 - github-linguist.gemspec | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 3ac3ffa4..fa75df15 100644 --- a/Gemfile +++ b/Gemfile @@ -1,4 +1,3 @@ source 'https://rubygems.org' gemspec -gem 'rugged', :git => 'https://github.com/libgit2/rugged.git', branch: 'development', submodules: true diff --git a/github-linguist.gemspec b/github-linguist.gemspec index d4c2337a..936550f3 100644 --- a/github-linguist.gemspec +++ b/github-linguist.gemspec @@ -17,6 +17,7 @@ Gem::Specification.new do |s| s.add_dependency 'escape_utils', '~> 1.0.1' s.add_dependency 'mime-types', '~> 1.19' s.add_dependency 'pygments.rb', '~> 0.6.0' + s.add_dependency 'rugged', '~> 0.21.0' s.add_development_dependency 'json' s.add_development_dependency 'mocha' From 898f1e215ed03ff0de927b77aa8eebc9fce7f0e5 Mon Sep 17 00:00:00 2001 From: "Max K." Date: Thu, 26 Jun 2014 09:25:40 -0500 Subject: [PATCH 075/268] Added sample files for glsl. --- samples/GLSL/myfragment.frg | 6 ++++++ samples/GLSL/myvertex.vrx | 12 ++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 samples/GLSL/myfragment.frg create mode 100644 samples/GLSL/myvertex.vrx diff --git a/samples/GLSL/myfragment.frg b/samples/GLSL/myfragment.frg new file mode 100644 index 00000000..a4e84395 --- /dev/null +++ b/samples/GLSL/myfragment.frg @@ -0,0 +1,6 @@ +varying vec4 v_color; + +void main() +{ + gl_FragColor = v_color; +} \ No newline at end of file diff --git a/samples/GLSL/myvertex.vrx b/samples/GLSL/myvertex.vrx new file mode 100644 index 00000000..5371affa --- /dev/null +++ b/samples/GLSL/myvertex.vrx @@ -0,0 +1,12 @@ +uniform mat4 u_MVPMatrix; + +attribute vec4 a_position; +attribute vec4 a_color; + +varying vec4 v_color; + +void main() +{ + v_color = a_color; + gl_Position = u_MVPMatrix * pos; +} \ No newline at end of file From 907d3c5a3676daee59e46cfbf43a716822c47199 Mon Sep 17 00:00:00 2001 From: Vicent Marti Date: Thu, 26 Jun 2014 18:17:51 +0200 Subject: [PATCH 076/268] b1 --- lib/linguist/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/version.rb b/lib/linguist/version.rb index 42e0eb95..c5c3085d 100644 --- a/lib/linguist/version.rb +++ b/lib/linguist/version.rb @@ -1,3 +1,3 @@ module Linguist - VERSION = "3.0.0b0" + VERSION = "3.0.0b1" end From 526244be11b7a98b3177f9decc2284e840416f51 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Thu, 26 Jun 2014 17:38:39 +0100 Subject: [PATCH 077/268] Samples --- lib/linguist/samples.json | 47 +++++++++++++++++++++++---------------- 1 file changed, 28 insertions(+), 19 deletions(-) diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index d63f4157..8ce707c0 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -170,7 +170,9 @@ "GLSL": [ ".fp", ".frag", - ".glsl" + ".frg", + ".glsl", + ".vrx" ], "Game Maker Language": [ ".gml" @@ -781,8 +783,8 @@ "exception.zep.php" ] }, - "tokens_total": 643487, - "languages_total": 843, + "tokens_total": 643530, + "languages_total": 845, "tokens": { "ABAP": { "*/**": 1, @@ -23553,14 +23555,14 @@ "////": 4, "High": 1, "quality": 2, - "(": 435, + "(": 437, "Some": 1, "browsers": 1, "may": 1, "freeze": 1, "or": 1, "crash": 1, - ")": 435, + ")": 437, "//#define": 10, "HIGHQUALITY": 2, "Medium": 1, @@ -23602,7 +23604,7 @@ "eps": 5, "e": 4, "-": 108, - ";": 383, + ";": 391, "PI": 3, "vec3": 165, "sunDir": 5, @@ -23621,13 +23623,13 @@ "tonemapping": 1, "mod289": 4, "x": 11, - "{": 82, + "{": 84, "return": 47, "floor": 8, - "*": 115, + "*": 116, "/": 24, - "}": 82, - "vec4": 73, + "}": 84, + "vec4": 77, "permute": 4, "x*34.0": 1, "+": 108, @@ -23743,7 +23745,7 @@ "p*0.5": 1, "Other": 1, "bump": 2, - "pos": 42, + "pos": 43, "rayDir": 43, "s": 23, "Fade": 1, @@ -23931,8 +23933,8 @@ "iResolution.x/iResolution.y*0.5": 1, "rd.x": 1, "rd.y": 1, - "void": 31, - "main": 5, + "void": 33, + "main": 7, "gl_FragCoord.xy": 7, "*0.25": 4, "*0.5": 1, @@ -23944,7 +23946,16 @@ "col*exposure": 1, "x*": 2, ".5": 1, - "gl_FragColor": 3, + "gl_FragColor": 4, + "varying": 6, + "v_color": 4, + "uniform": 8, + "mat4": 1, + "u_MVPMatrix": 2, + "attribute": 2, + "a_position": 1, + "a_color": 2, + "gl_Position": 1, "#version": 2, "core": 1, "cbar": 2, @@ -23980,11 +23991,9 @@ "AMBIENT": 2, "MAX_DIST": 3, "MAX_DIST_SQUARED": 3, - "uniform": 7, "lightColor": 3, "[": 29, "]": 29, - "varying": 4, "fragmentNormal": 2, "cameraVector": 2, "lightVector": 4, @@ -69657,7 +69666,7 @@ "GAMS": 363, "GAP": 9944, "GAS": 133, - "GLSL": 4033, + "GLSL": 4076, "Game Maker Language": 13310, "Gnuplot": 1023, "Gosu": 410, @@ -69854,7 +69863,7 @@ "GAMS": 1, "GAP": 7, "GAS": 1, - "GLSL": 5, + "GLSL": 7, "Game Maker Language": 13, "Gnuplot": 6, "Gosu": 4, @@ -70004,5 +70013,5 @@ "fish": 3, "wisp": 1 }, - "md5": "59afe9ab875947c5df3590aef023152d" + "md5": "bb637c5d1f457edff3f8c2676d10807a" } \ No newline at end of file From 621042e63936fbdecf1e526e26ef3ada91e3b7e0 Mon Sep 17 00:00:00 2001 From: Vicent Marti Date: Thu, 26 Jun 2014 18:42:43 +0200 Subject: [PATCH 078/268] Remove whitespace --- Gemfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Gemfile b/Gemfile index fa75df15..851fabc2 100644 --- a/Gemfile +++ b/Gemfile @@ -1,3 +1,2 @@ source 'https://rubygems.org' - gemspec From 12429b90fe02171cc035d16164ca723bb83f2213 Mon Sep 17 00:00:00 2001 From: Vicent Marti Date: Thu, 26 Jun 2014 21:24:30 +0200 Subject: [PATCH 079/268] Bring back missing test --- test/test_heuristics.rb | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/test/test_heuristics.rb b/test/test_heuristics.rb index 33f8a087..8bbf0695 100644 --- a/test/test_heuristics.rb +++ b/test/test_heuristics.rb @@ -1,6 +1,7 @@ require 'linguist/heuristics' require 'linguist/language' require 'linguist/samples' +require 'linguist/file_blob' require 'test/unit' @@ -34,6 +35,12 @@ class TestHeuristcs < Test::Unit::TestCase assert_equal Language["C++"], results.first end + def test_detect_still_works_if_nothing_matches + blob = Linguist::FileBlob.new(File.join(samples_path, "Objective-C/hello.m")) + match = Language.detect(blob) + assert_equal Language["Objective-C"], match + end + def test_pl_prolog_by_heuristics languages = ["Perl", "Prolog"] results = Heuristics.disambiguate_pl(fixture("Prolog/turing.pl"), languages) From 65eaf98d0badbb5f6012f9d5bf947e418e28f9a0 Mon Sep 17 00:00:00 2001 From: Vicent Marti Date: Thu, 26 Jun 2014 21:26:26 +0200 Subject: [PATCH 080/268] docs --- lib/linguist/language.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/linguist/language.rb b/lib/linguist/language.rb index ffbecb7b..ed9b68e9 100644 --- a/lib/linguist/language.rb +++ b/lib/linguist/language.rb @@ -92,6 +92,9 @@ module Linguist # Public: Detects the Language of the blob. # + # blob - an object that implements the Linguist `Blob` interface; + # see Linguist::LazyBlob and Linguist::FileBlob for examples + # # Returns Language or nil. def self.detect(blob) name = blob.name.to_s From d206131df0df57c9a77b88b4a6709ae65a8075b1 Mon Sep 17 00:00:00 2001 From: Vicent Marti Date: Fri, 27 Jun 2014 13:51:37 +0200 Subject: [PATCH 081/268] Hardcode OIDs for test --- test/test_repository.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_repository.rb b/test/test_repository.rb index 6637f51f..f4c5ad70 100644 --- a/test/test_repository.rb +++ b/test/test_repository.rb @@ -8,7 +8,7 @@ class TestRepository < Test::Unit::TestCase end def master_oid - @master_oid ||= Rugged::Object.rev_parse_oid(rugged_repository, 'master') + 'd40b4a33deba710e2f494db357c654fbe5d4b419' end def linguist_repo(oid = master_oid) @@ -34,7 +34,7 @@ class TestRepository < Test::Unit::TestCase end def test_incremental_stats - old_commit = Rugged::Object.rev_parse_oid(rugged_repository, 'v2.0.0') + old_commit = '3d7364877d6794f6cc2a86b493e893968a597332' old_repo = linguist_repo(old_commit) assert old_repo.languages['Ruby'] > 10_000 From 32828a9af56d748225609e55e99e5c5df4c041cc Mon Sep 17 00:00:00 2001 From: Vicent Marti Date: Fri, 27 Jun 2014 13:51:56 +0200 Subject: [PATCH 082/268] b2 --- lib/linguist/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/version.rb b/lib/linguist/version.rb index c5c3085d..eb7bbeb7 100644 --- a/lib/linguist/version.rb +++ b/lib/linguist/version.rb @@ -1,3 +1,3 @@ module Linguist - VERSION = "3.0.0b1" + VERSION = "3.0.0b2" end From d9be472ccb22ef2ccb5b131a80757bb9ab6c6b0c Mon Sep 17 00:00:00 2001 From: Vicent Marti Date: Fri, 27 Jun 2014 16:41:23 +0200 Subject: [PATCH 083/268] Skip submodules when diffing --- lib/linguist/repository.rb | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lib/linguist/repository.rb b/lib/linguist/repository.rb index e3d2d707..a89c81e6 100644 --- a/lib/linguist/repository.rb +++ b/lib/linguist/repository.rb @@ -131,8 +131,11 @@ module Linguist next if delta.binary if [:added, :modified].include? delta.status - mode = delta.new_file[:mode].to_s(8) - blob = Linguist::LazyBlob.new(repository, delta.new_file[:oid], new, mode) + # Skip submodules + mode = delta.new_file[:mode] + next if (mode & 040000) != 0 + + blob = Linguist::LazyBlob.new(repository, delta.new_file[:oid], new, mode.to_s(8)) # Skip vendored or generated blobs next if blob.vendored? || blob.generated? || blob.language.nil? From addf4e2485c9316a7a66dcab0c6ed69b23b50bd9 Mon Sep 17 00:00:00 2001 From: Lucas Bajolet Date: Fri, 27 Jun 2014 10:49:08 -0400 Subject: [PATCH 084/268] Added Nit to supported languages. Signed-off-by: Lucas Bajolet --- lib/linguist/languages.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 4871c0f4..fe1ce3c5 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1395,6 +1395,14 @@ Nimrod: - .nim - .nimrod +Nit: + type: programming + #lexer: Nit + lexer: Text only + color: "#0d8921" + extensions: + - .nit + Nix: type: programming lexer: Nix From dd557ed00a226235b3554cfb93d07d48d048f47a Mon Sep 17 00:00:00 2001 From: Lucas Bajolet Date: Fri, 27 Jun 2014 10:49:29 -0400 Subject: [PATCH 085/268] Added examples for Nit to samples. Signed-off-by: Lucas Bajolet --- samples/Nit/calculator.nit | 272 +++++++++++++++++++++++ samples/Nit/callback_chimpanze.nit | 45 ++++ samples/Nit/callback_monkey.nit | 92 ++++++++ samples/Nit/circular_list.nit | 167 ++++++++++++++ samples/Nit/clock.nit | 78 +++++++ samples/Nit/clock_more.nit | 60 +++++ samples/Nit/curl_http.nit | 113 ++++++++++ samples/Nit/curl_mail.nit | 59 +++++ samples/Nit/draw_operation.nit | 243 ++++++++++++++++++++ samples/Nit/drop_privileges.nit | 46 ++++ samples/Nit/extern_methods.nit | 69 ++++++ samples/Nit/fibonacci.nit | 43 ++++ samples/Nit/hello_world.nit | 1 + samples/Nit/html_page.nit | 105 +++++++++ samples/Nit/int_stack.nit | 100 +++++++++ samples/Nit/opengles2_hello_triangle.nit | 193 ++++++++++++++++ samples/Nit/print_arguments.nit | 22 ++ samples/Nit/procedural_array.nit | 48 ++++ samples/Nit/socket_client.nit | 38 ++++ samples/Nit/socket_server.nit | 52 +++++ samples/Nit/tmpl_composer.nit | 94 ++++++++ samples/Nit/websocket_server.nit | 46 ++++ 22 files changed, 1986 insertions(+) create mode 100644 samples/Nit/calculator.nit create mode 100644 samples/Nit/callback_chimpanze.nit create mode 100644 samples/Nit/callback_monkey.nit create mode 100644 samples/Nit/circular_list.nit create mode 100644 samples/Nit/clock.nit create mode 100644 samples/Nit/clock_more.nit create mode 100644 samples/Nit/curl_http.nit create mode 100644 samples/Nit/curl_mail.nit create mode 100644 samples/Nit/draw_operation.nit create mode 100644 samples/Nit/drop_privileges.nit create mode 100644 samples/Nit/extern_methods.nit create mode 100644 samples/Nit/fibonacci.nit create mode 100644 samples/Nit/hello_world.nit create mode 100644 samples/Nit/html_page.nit create mode 100644 samples/Nit/int_stack.nit create mode 100644 samples/Nit/opengles2_hello_triangle.nit create mode 100644 samples/Nit/print_arguments.nit create mode 100644 samples/Nit/procedural_array.nit create mode 100644 samples/Nit/socket_client.nit create mode 100644 samples/Nit/socket_server.nit create mode 100644 samples/Nit/tmpl_composer.nit create mode 100644 samples/Nit/websocket_server.nit diff --git a/samples/Nit/calculator.nit b/samples/Nit/calculator.nit new file mode 100644 index 00000000..541f4d28 --- /dev/null +++ b/samples/Nit/calculator.nit @@ -0,0 +1,272 @@ +# This file is part of NIT ( http://www.nitlanguage.org ). +# +# Copyright 2013 Alexis Laferrière +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import gtk + +class CalculatorContext + var result : nullable Float = null + + var last_op : nullable Char = null + + var current : nullable Float = null + var after_point : nullable Int = null + + fun push_op( op : Char ) + do + apply_last_op_if_any + if op == 'C' then + self.result = 0.0 + last_op = null + else + last_op = op # store for next push_op + end + + # prepare next current + after_point = null + current = null + end + + fun push_digit( digit : Int ) + do + var current = current + if current == null then current = 0.0 + + var after_point = after_point + if after_point == null then + current = current * 10.0 + digit.to_f + else + current = current + digit.to_f * 10.0.pow(after_point.to_f) + self.after_point -= 1 + end + + self.current = current + end + + fun switch_to_decimals + do + if self.current == null then current = 0.0 + if after_point != null then return + + after_point = -1 + end + + fun apply_last_op_if_any + do + var op = last_op + + var result = result + if result == null then result = 0.0 + + var current = current + if current == null then current = 0.0 + + if op == null then + result = current + else if op == '+' then + result = result + current + else if op == '-' then + result = result - current + else if op == '/' then + result = result / current + else if op == '*' then + result = result * current + end + self.result = result + self.current = null + end +end + +class CalculatorGui + super GtkCallable + + var win : GtkWindow + var container : GtkGrid + + var lbl_disp : GtkLabel + var but_eq : GtkButton + var but_dot : GtkButton + + var context = new CalculatorContext + + redef fun signal( sender, user_data ) + do + var after_point = context.after_point + if after_point == null then + after_point = 0 + else + after_point = (after_point.abs) + end + + if user_data isa Char then # is an operation + var c = user_data + if c == '.' then + but_dot.sensitive= false + context.switch_to_decimals + lbl_disp.text = "{context.current.to_i}." + else + but_dot.sensitive= true + context.push_op( c ) + + var s = context.result.to_precision_native(6) + var index : nullable Int = null + for i in s.length.times do + var chiffre = s.chars[i] + if chiffre == '0' and index == null then + index = i + else if chiffre != '0' then + index = null + end + end + if index != null then + s = s.substring(0, index) + if s.chars[s.length-1] == ',' then s = s.substring(0, s.length-1) + end + lbl_disp.text = s + end + else if user_data isa Int then # is a number + var n = user_data + context.push_digit( n ) + lbl_disp.text = context.current.to_precision_native(after_point) + end + end + + init + do + init_gtk + + win = new GtkWindow( 0 ) + + container = new GtkGrid(5,5,true) + win.add( container ) + + lbl_disp = new GtkLabel( "_" ) + container.attach( lbl_disp, 0, 0, 5, 1 ) + + # digits + for n in [0..9] do + var but = new GtkButton.with_label( n.to_s ) + but.request_size( 64, 64 ) + but.signal_connect( "clicked", self, n ) + if n == 0 then + container.attach( but, 0, 4, 1, 1 ) + else container.attach( but, (n-1)%3, 3-(n-1)/3, 1, 1 ) + end + + # operators + var r = 1 + for op in ['+', '-', '*', '/' ] do + var but = new GtkButton.with_label( op.to_s ) + but.request_size( 64, 64 ) + but.signal_connect( "clicked", self, op ) + container.attach( but, 3, r, 1, 1 ) + r+=1 + end + + # = + but_eq = new GtkButton.with_label( "=" ) + but_eq.request_size( 64, 64 ) + but_eq.signal_connect( "clicked", self, '=' ) + container.attach( but_eq, 4, 3, 1, 2 ) + + # . + but_dot = new GtkButton.with_label( "." ) + but_dot.request_size( 64, 64 ) + but_dot.signal_connect( "clicked", self, '.' ) + container.attach( but_dot, 1, 4, 1, 1 ) + + #C + var but_c = new GtkButton.with_label( "C" ) + but_c.request_size( 64, 64 ) + but_c.signal_connect("clicked", self, 'C') + container.attach( but_c, 2, 4, 1, 1 ) + + win.show_all + end +end + +# context tests +var context = new CalculatorContext +context.push_digit( 1 ) +context.push_digit( 2 ) +context.push_op( '+' ) +context.push_digit( 3 ) +context.push_op( '*' ) +context.push_digit( 2 ) +context.push_op( '=' ) +var r = context.result.to_precision( 2 ) +assert r == "30.00" else print r + +context = new CalculatorContext +context.push_digit( 1 ) +context.push_digit( 4 ) +context.switch_to_decimals +context.push_digit( 1 ) +context.push_op( '*' ) +context.push_digit( 3 ) +context.push_op( '=' ) +r = context.result.to_precision( 2 ) +assert r == "42.30" else print r + +context.push_op( '+' ) +context.push_digit( 1 ) +context.push_digit( 1 ) +context.push_op( '=' ) +r = context.result.to_precision( 2 ) +assert r == "53.30" else print r + +context = new CalculatorContext +context.push_digit( 4 ) +context.push_digit( 2 ) +context.switch_to_decimals +context.push_digit( 3 ) +context.push_op( '/' ) +context.push_digit( 3 ) +context.push_op( '=' ) +r = context.result.to_precision( 2 ) +assert r == "14.10" else print r + +#test multiple decimals +context = new CalculatorContext +context.push_digit( 5 ) +context.push_digit( 0 ) +context.switch_to_decimals +context.push_digit( 1 ) +context.push_digit( 2 ) +context.push_digit( 3 ) +context.push_op( '+' ) +context.push_digit( 1 ) +context.push_op( '=' ) +r = context.result.to_precision( 3 ) +assert r == "51.123" else print r + +#test 'C' button +context = new CalculatorContext +context.push_digit( 1 ) +context.push_digit( 0 ) +context.push_op( '+' ) +context.push_digit( 1 ) +context.push_digit( 0 ) +context.push_op( '=' ) +context.push_op( 'C' ) +r = context.result.to_precision( 1 ) +assert r == "0.0" else print r + +# graphical application + +if "NIT_TESTING".environ != "true" then + var app = new CalculatorGui + run_gtk +end diff --git a/samples/Nit/callback_chimpanze.nit b/samples/Nit/callback_chimpanze.nit new file mode 100644 index 00000000..2ca8dc3a --- /dev/null +++ b/samples/Nit/callback_chimpanze.nit @@ -0,0 +1,45 @@ +# This file is part of NIT ( http://www.nitlanguage.org ). +# +# Copyright 2013 Matthieu Lucas +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# This sample has been implemented to show you how simple is it to play +# with native callbacks (C) through an high level with NIT program. + +module callback_chimpanze +import callback_monkey + +class Chimpanze + super MonkeyActionCallable + + fun create + do + var monkey = new Monkey + print "Hum, I'm sleeping ..." + # Invoking method which will take some time to compute, and + # will be back in wokeUp method with information. + # - Callback method defined in MonkeyActionCallable Interface + monkey.wokeUpAction(self, "Hey, I'm awake.") + end + + # Inherit callback method, defined by MonkeyActionCallable interface + # - Back of wokeUpAction method + redef fun wokeUp( sender:Monkey, message:Object ) + do + print message + end +end + +var m = new Chimpanze +m.create diff --git a/samples/Nit/callback_monkey.nit b/samples/Nit/callback_monkey.nit new file mode 100644 index 00000000..6e1ed262 --- /dev/null +++ b/samples/Nit/callback_monkey.nit @@ -0,0 +1,92 @@ +# This file is part of NIT ( http://www.nitlanguage.org ). +# +# Copyright 2013 Matthieu Lucas +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# This sample has been implemented to show you how simple is it to play +# with native callbacks (C) through an high level with NIT program. + +module callback_monkey + +in "C header" `{ + #include + #include + + typedef struct { + int id; + int age; + } CMonkey; + + typedef struct { + MonkeyActionCallable toCall; + Object message; + } MonkeyAction; +`} + +in "C body" `{ + // Method which reproduce a callback answer + // Please note that a function pointer is only used to reproduce the callback + void cbMonkey(CMonkey *mkey, void callbackFunc(CMonkey*, MonkeyAction*), MonkeyAction *data) + { + sleep(2); + callbackFunc( mkey, data ); + } + + // Back of background treatment, will be redirected to callback function + void nit_monkey_callback_func( CMonkey *mkey, MonkeyAction *data ) + { + // To call a your method, the signature must be written like this : + // _... + MonkeyActionCallable_wokeUp( data->toCall, mkey, data->message ); + } +`} + +# Implementable interface to get callback in defined methods +interface MonkeyActionCallable + fun wokeUp( sender:Monkey, message: Object) is abstract +end + +# Defining my object type Monkey, which is, in a low level, a pointer to a C struct (CMonkey) +extern class Monkey `{ CMonkey * `} + + new `{ + CMonkey *monkey = malloc( sizeof(CMonkey) ); + monkey->age = 10; + monkey->id = 1; + return monkey; + `} + + # Object method which will get a callback in wokeUp method, defined in MonkeyActionCallable interface + # Must be defined as Nit/C method because of C call inside + fun wokeUpAction( toCall: MonkeyActionCallable, message: Object ) is extern import MonkeyActionCallable.wokeUp `{ + + // Allocating memory to keep reference of received parameters : + // - Object receiver + // - Message + MonkeyAction *data = malloc( sizeof(MonkeyAction) ); + + // Incrementing reference counter to prevent from releasing + MonkeyActionCallable_incr_ref( toCall ); + Object_incr_ref( message ); + + data->toCall = toCall; + data->message = message; + + // Calling method which reproduce a callback by passing : + // - Receiver + // - Function pointer to object return method + // - Datas + cbMonkey( recv, &nit_monkey_callback_func, data ); + `} +end diff --git a/samples/Nit/circular_list.nit b/samples/Nit/circular_list.nit new file mode 100644 index 00000000..c3ba1edb --- /dev/null +++ b/samples/Nit/circular_list.nit @@ -0,0 +1,167 @@ +# This file is part of NIT ( http://www.nitlanguage.org ). +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Implementation of circular lists +# This example shows the usage of generics and somewhat a specialisation of collections. +module circular_list + +# Sequences of elements implemented with a double-linked circular list +class CircularList[E] + # Like standard Array or LinkedList, CircularList is a Sequence. + super Sequence[E] + + # The first node of the list if any + # The special case of an empty list is handled by a null node + private var node: nullable CLNode[E] = null + + redef fun iterator do return new CircularListIterator[E](self) + + redef fun first do return self.node.item + + redef fun push(e) + do + var new_node = new CLNode[E](e) + var n = self.node + if n == null then + # the first node + self.node = new_node + else + # not the first one, so attach nodes correctly. + var old_last_node = n.prev + new_node.next = n + new_node.prev = old_last_node + old_last_node.next = new_node + n.prev = new_node + end + end + + redef fun pop + do + var n = self.node + assert n != null + var prev = n.prev + if prev == n then + # the only node + self.node = null + return n.item + end + # not the only one do detach nodes correctly. + var prev_prev = prev.prev + n.prev = prev_prev + prev_prev.next = n + return prev.item + end + + redef fun unshift(e) + do + # Circularity has benefits. + push(e) + self.node = self.node.prev + end + + redef fun shift + do + # Circularity has benefits. + self.node = self.node.next + return self.pop + end + + # Move the first at the last position, the second at the first, etc. + fun rotate + do + var n = self.node + if n == null then return + self.node = n.next + end + + # Sort the list using the Josephus algorithm. + fun josephus(step: Int) + do + var res = new CircularList[E] + while not self.is_empty do + # count 'step' + for i in [1..step[ do self.rotate + # kill + var x = self.shift + res.add(x) + end + self.node = res.node + end +end + +# Nodes of a CircularList +private class CLNode[E] + # The current item + var item: E + + # The next item in the circular list. + # Because of circularity, there is always a next; + # so by default let it be self + var next: CLNode[E] = self + + # The previous item in the circular list. + # Coherence between next and previous nodes has to be maintained by the + # circular list. + var prev: CLNode[E] = self +end + +# An iterator of a CircularList. +private class CircularListIterator[E] + super IndexedIterator[E] + + redef var index: Int + + # The current node pointed. + # Is null if the list is empty. + var node: nullable CLNode[E] + + # The list iterated. + var list: CircularList[E] + + redef fun is_ok + do + # Empty lists are not OK. + # Pointing again the first node is not OK. + return self.node != null and (self.index == 0 or self.node != self.list.node) + end + + redef fun next + do + self.node = self.node.next + self.index += 1 + end + + redef fun item do return self.node.item + + init(list: CircularList[E]) + do + self.node = list.node + self.list = list + self.index = 0 + end +end + +var i = new CircularList[Int] +i.add_all([1, 2, 3, 4, 5, 6, 7]) +print i.first +print i.join(":") + +i.push(8) +print i.shift +print i.pop +i.unshift(0) +print i.join(":") + +i.josephus(3) +print i.join(":") diff --git a/samples/Nit/clock.nit b/samples/Nit/clock.nit new file mode 100644 index 00000000..8fdb9abd --- /dev/null +++ b/samples/Nit/clock.nit @@ -0,0 +1,78 @@ +# This file is part of NIT ( http://www.nitlanguage.org ). +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# This module provide a simple wall clock. +# It is an example of getters and setters. +# A beefed-up module is available in clock_more +module clock + +# A simple wall clock with 60 minutes and 12 hours. +class Clock + # total number of minutes from 0 to 719 + var total_minutes: Int + # Note: only the read acces is public, the write access is private. + + # number of minutes in the current hour (from 0 to 59) + fun minutes: Int do return self.total_minutes % 60 + + # set the number of minutes in the current hour. + # if m < 0 or m >= 60, the hour will be changed accordinlgy + fun minutes=(m: Int) do self.total_minutes = self.hours * 60 + m + + # number of hours (from 0 to 11) + fun hours: Int do return self.total_minutes / 60 + + # set the number of hours + # the minutes will not be updated + fun hours=(h: Int) do self.total_minutes = h * 60 + minutes + + # the position of the hour arrow in the [0..60[ interval + fun hour_pos: Int do return total_minutes / 12 + + # replace the arrow of hours (from 0 to 59). + # the hours and the minutes will be updated. + fun hour_pos=(h: Int) do self.total_minutes = h * 12 + + redef fun to_s do return "{hours}:{minutes}" + + fun reset(hours, minutes: Int) do self.total_minutes = hours*60 + minutes + + init(hours, minutes: Int) do self.reset(hours, minutes) + + redef fun ==(o) + do + # Note: o is a nullable Object, a type test is required + # Thanks to adaptive typing, there is no downcast + # i.e. the code is safe! + return o isa Clock and self.total_minutes == o.total_minutes + end +end + +var c = new Clock(10,50) +print "It's {c} o'clock." + +c.minutes += 22 +print "Now it's {c} o'clock." + +print "The short arrow in on the {c.hour_pos/5} and the long arrow in on the {c.minutes/5}." + +c.hours -= 2 +print "Now it's {c} o'clock." + +var c2 = new Clock(9, 11) +print "It's {c2} on the second clock." +print "The two clocks are synchronized: {c == c2}." +c2.minutes += 1 +print "It's now {c2} on the second clock." +print "The two clocks are synchronized: {c == c2}." diff --git a/samples/Nit/clock_more.nit b/samples/Nit/clock_more.nit new file mode 100644 index 00000000..d2ef89e2 --- /dev/null +++ b/samples/Nit/clock_more.nit @@ -0,0 +1,60 @@ +# This file is part of NIT ( http://www.nitlanguage.org ). +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# This module beef up the clock module by allowing a clock to be comparable. +# It show the usage of class refinement +module clock_more + +import clock + +redef class Clock + # Clock are now comparable + super Comparable + + # Comparaison of a clock make only sense with an other clock + redef type OTHER: Clock + + redef fun <(o) + do + # Note: < is the only abstract method of Comparable. + # All other operators and methods rely on < and ==. + return self.total_minutes < o.total_minutes + end +end + +var c1 = new Clock(8, 12) +var c2 = new Clock(8, 13) +var c3 = new Clock(9, 13) + +print "{c1}<{c2}? {c1{c2}? {c1>c2}" +print "{c1}>={c2}? {c1>=c2}" +print "{c1}<=>{c2}? {c1<=>c2}" +print "{c1},{c2}? max={c1.max(c2)} min={c1.min(c2)}" +print "{c1}.is_between({c2}, {c3})? {c1.is_between(c2, c3)}" +print "{c2}.is_between({c1}, {c3})? {c2.is_between(c1, c3)}" + +print "-" + +c1.minutes += 1 + +print "{c1}<{c2}? {c1{c2}? {c1>c2}" +print "{c1}>={c2}? {c1>=c2}" +print "{c1}<=>{c2}? {c1<=>c2}" +print "{c1},{c2}? max={c1.max(c2)} min={c1.min(c2)}" +print "{c1}.is_between({c2}, {c3})? {c1.is_between(c2, c3)}" +print "{c2}.is_between({c1}, {c3})? {c2.is_between(c1, c3)}" diff --git a/samples/Nit/curl_http.nit b/samples/Nit/curl_http.nit new file mode 100644 index 00000000..079f12c8 --- /dev/null +++ b/samples/Nit/curl_http.nit @@ -0,0 +1,113 @@ +# This file is part of NIT ( http://www.nitlanguage.org ). +# +# Copyright 2013 Matthieu Lucas +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Sample of the Curl module. +module curl_http + +import curl + +# Small class to represent an Http Fetcher +class MyHttpFetcher + super CurlCallbacks + + var curl: Curl + var our_body: String = "" + + init(curl: Curl) do self.curl = curl + + # Release curl object + fun destroy do self.curl.destroy + + # Header callback + redef fun header_callback(line: String) do + # We keep this callback silent for testing purposes + #if not line.has_prefix("Date:") then print "Header_callback : {line}" + end + + # Body callback + redef fun body_callback(line: String) do self.our_body = "{self.our_body}{line}" + + # Stream callback - Cf : No one is registered + redef fun stream_callback(buffer: String, size: Int, count: Int) do print "Stream_callback : {buffer} - {size} - {count}" +end + + +# Program +if args.length < 2 then + print "Usage: curl_http " +else + var curl = new Curl + var url = args[1] + var request = new CurlHTTPRequest(url, curl) + + # HTTP Get Request + if args[0] == "GET" then + request.verbose = false + var getResponse = request.execute + + if getResponse isa CurlResponseSuccess then + print "Status code : {getResponse.status_code}" + print "Body : {getResponse.body_str}" + else if getResponse isa CurlResponseFailed then + print "Error code : {getResponse.error_code}" + print "Error msg : {getResponse.error_msg}" + end + + # HTTP Post Request + else if args[0] == "POST" then + var myHttpFetcher = new MyHttpFetcher(curl) + request.delegate = myHttpFetcher + + var postDatas = new HeaderMap + postDatas["Bugs Bunny"] = "Daffy Duck" + postDatas["Batman"] = "Robin likes special characters @#ùà!è§'(\"é&://,;<>∞~*" + postDatas["Batman"] = "Yes you can set multiple identical keys, but APACHE will consider only once, the last one" + request.datas = postDatas + request.verbose = false + var postResponse = request.execute + + print "Our body from the callback : {myHttpFetcher.our_body}" + + if postResponse isa CurlResponseSuccess then + print "*** Answer ***" + print "Status code : {postResponse.status_code}" + print "Body should be empty, because we decided to manage callbacks : {postResponse.body_str.length}" + else if postResponse isa CurlResponseFailed then + print "Error code : {postResponse.error_code}" + print "Error msg : {postResponse.error_msg}" + end + + # HTTP Get to file Request + else if args[0] == "GET_FILE" then + var headers = new HeaderMap + headers["Accept"] = "Moo" + request.headers = headers + request.verbose = false + var downloadResponse = request.download_to_file(null) + + if downloadResponse isa CurlFileResponseSuccess then + print "*** Answer ***" + print "Status code : {downloadResponse.status_code}" + print "Size downloaded : {downloadResponse.size_download}" + else if downloadResponse isa CurlResponseFailed then + print "Error code : {downloadResponse.error_code}" + print "Error msg : {downloadResponse.error_msg}" + end + # Program logic + else + print "Usage : Method[POST, GET, GET_FILE]" + end +end diff --git a/samples/Nit/curl_mail.nit b/samples/Nit/curl_mail.nit new file mode 100644 index 00000000..b28f5a4c --- /dev/null +++ b/samples/Nit/curl_mail.nit @@ -0,0 +1,59 @@ +# This file is part of NIT ( http://www.nitlanguage.org ). +# +# Copyright 2013 Matthieu Lucas +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Mail sender sample using the Curl module +module curl_mail + +import curl + +var curl = new Curl +var mail_request = new CurlMailRequest(curl) + +# Networks +var response = mail_request.set_outgoing_server("smtps://smtp.example.org:465", "user@example.org", "mypassword") +if response isa CurlResponseFailed then + print "Error code : {response.error_code}" + print "Error msg : {response.error_msg}" +end + +# Headers +mail_request.from = "Billy Bob" +mail_request.to = ["user@example.org"] +mail_request.cc = ["bob@example.org"] +mail_request.bcc = null + +var headers_body = new HeaderMap +headers_body["Content-Type:"] = "text/html; charset=\"UTF-8\"" +headers_body["Content-Transfer-Encoding:"] = "quoted-printable" +mail_request.headers_body = headers_body + +# Content +mail_request.body = "

Here you can write HTML stuff.

" +mail_request.subject = "Hello From My Nit Program" + +# Others +mail_request.verbose = false + +# Send mail +response = mail_request.execute +if response isa CurlResponseFailed then + print "Error code : {response.error_code}" + print "Error msg : {response.error_msg}" +else if response isa CurlMailResponseSuccess then + print "Mail Sent" +else + print "Unknown Curl Response type" +end diff --git a/samples/Nit/draw_operation.nit b/samples/Nit/draw_operation.nit new file mode 100644 index 00000000..cada8318 --- /dev/null +++ b/samples/Nit/draw_operation.nit @@ -0,0 +1,243 @@ +# This file is part of NIT ( http://www.nitlanguage.org ). +# +# Copyright 2012-2013 Alexis Laferrière +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Draws an arithmetic operation to the terminal +module draw_operation + +redef enum Int + fun n_chars: Int `{ + int c; + if ( abs(recv) >= 10 ) + c = 1+(int)log10f( (float)abs(recv) ); + else + c = 1; + if ( recv < 0 ) c ++; + return c; + `} +end + +redef enum Char + fun as_operator(a, b: Int): Int + do + if self == '+' then return a + b + if self == '-' then return a - b + if self == '*' then return a * b + if self == '/' then return a / b + if self == '%' then return a % b + abort + end + + fun override_dispc: Bool + do + return self == '+' or self == '-' or self == '*' or self == '/' or self == '%' + end + + fun lines(s: Int): Array[Line] + do + if self == '+' then + return [new Line(new P(0,s/2),1,0,s), new Line(new P(s/2,1),0,1,s-2)] + else if self == '-' then + return [new Line(new P(0,s/2),1,0,s)] + else if self == '*' then + var lines = new Array[Line] + for y in [1..s-1[ do + lines.add( new Line(new P(1,y), 1,0,s-2) ) + end + return lines + else if self == '/' then + return [new Line(new P(s-1,0), -1,1, s )] + else if self == '%' then + var q4 = s/4 + var lines = [new Line(new P(s-1,0),-1,1,s)] + for l in [0..q4[ do + lines.append([ new Line( new P(0,l), 1,0,q4), new Line( new P(s-1,s-1-l), -1,0,q4) ]) + end + return lines + else if self == '1' then + return [new Line(new P(s/2,0), 0,1,s),new Line(new P(0,s-1),1,0,s), + new Line( new P(s/2,0),-1,1,s/2)] + else if self == '2' then + return [new Line(new P(0,0), 1,0,s),new Line(new P(s-1,0),0,1,s/2), + new Line( new P(0,s-1),1,0,s), new Line( new P(0,s/2), 0,1,s/2), + new Line( new P(0,s/2), 1,0,s)] + else if self == '3' then + return [new Line(new P(0,0), 1,0,s),new Line(new P(s-1,0),0,1,s), + new Line( new P(0,s-1),1,0,s), new Line( new P(0,s/2), 1,0,s)] + else if self == '4' then + return [new Line(new P(s-1,0),0,1,s), new Line( new P(0,0), 0,1,s/2), + new Line( new P(0,s/2), 1,0,s)] + else if self == '5' then + return [new Line(new P(0,0), 1,0,s),new Line(new P(s-1,s/2),0,1,s/2), + new Line( new P(0,s-1),1,0,s), new Line( new P(0,0), 0,1,s/2), + new Line( new P(0,s/2), 1,0,s)] + else if self == '6' then + return [new Line(new P(0,0), 1,0,s),new Line(new P(s-1,s/2),0,1,s/2), + new Line( new P(0,s-1),1,0,s), new Line( new P(0,0), 0,1,s), + new Line( new P(0,s/2), 1,0,s)] + else if self == '7' then + var tl = new P(0,0) + var tr = new P(s-1,0) + return [new Line(tl, 1,0,s), new Line(tr,-1,1,s)] + else if self == '8' then + return [new Line(new P(0,0), 1,0,s),new Line(new P(s-1,0),0,1,s), + new Line( new P(0,s-1),1,0,s), new Line( new P(0,0), 0,1,s), + new Line( new P(0,s/2), 1,0,s)] + else if self == '9' then + return [new Line(new P(0,0), 1,0,s),new Line(new P(s-1,0),0,1,s), + new Line( new P(0,s-1),1,0,s), new Line( new P(0,0), 0,1,s/2), + new Line( new P(0,s/2), 1,0,s)] + else if self == '0' then + return [new Line(new P(0,0), 1,0,s),new Line(new P(s-1,0),0,1,s), + new Line( new P(0,s-1),1,0,s), new Line( new P(0,0), 0,1,s)] + end + return new Array[Line] + end +end + +class P + var x : Int + var y : Int +end + +redef class String + # hack is to support a bug in the evaluation software + fun draw(dispc: Char, size, gap: Int, hack: Bool) + do + var w = size * length +(length-1)*gap + var h = size + var map = new Array[Array[Char]] + for x in [0..w[ do + map[x] = new Array[Char].filled_with( ' ', h ) + end + + var ci = 0 + for c in self.chars do + var local_dispc + if c.override_dispc then + local_dispc = c + else + local_dispc = dispc + end + + var lines = c.lines( size ) + for line in lines do + var x = line.o.x+ci*size + x += ci*gap + var y = line.o.y + for s in [0..line.len[ do + assert map.length > x and map[x].length > y else print "setting {x},{y} as {local_dispc}" + map[x][y] = local_dispc + x += line.step_x + y += line.step_y + end + end + + ci += 1 + end + + if hack then + for c in [0..size[ do + map[c][0] = map[map.length-size+c][0] + map[map.length-size+c][0] = ' ' + end + end + + for y in [0..h[ do + for x in [0..w[ do + printn map[x][y] + end + print "" + end + end +end + +class Line + var o : P + var step_x : Int + var step_y : Int + var len : Int +end + +var a +var b +var op_char +var disp_char +var disp_size +var disp_gap + +if "NIT_TESTING".environ == "true" then + a = 567 + b = 13 + op_char = '*' + disp_char = 'O' + disp_size = 8 + disp_gap = 1 +else + printn "Left operand: " + a = gets.to_i + + printn "Right operand: " + b = gets.to_i + + printn "Operator (+, -, *, /, %): " + op_char = gets.chars[0] + + printn "Char to display: " + disp_char = gets.chars[0] + + printn "Size of text: " + disp_size = gets.to_i + + printn "Space between digits: " + disp_gap = gets.to_i +end + +var result = op_char.as_operator( a, b ) + +var len_a = a.n_chars +var len_b = b.n_chars +var len_res = result.n_chars +var max_len = len_a.max( len_b.max( len_res ) ) + 1 + +# draw first line +var d = max_len - len_a +var line_a = "" +for i in [0..d[ do line_a += " " +line_a += a.to_s +line_a.draw( disp_char, disp_size, disp_gap, false ) + +print "" +# draw second line +d = max_len - len_b-1 +var line_b = op_char.to_s +for i in [0..d[ do line_b += " " +line_b += b.to_s +line_b.draw( disp_char, disp_size, disp_gap, false ) + +# draw ----- +print "" +for i in [0..disp_size*max_len+(max_len-1)*disp_gap] do + printn "_" +end +print "" +print "" + +# draw result +d = max_len - len_res +var line_res = "" +for i in [0..d[ do line_res += " " +line_res += result.to_s +line_res.draw( disp_char, disp_size, disp_gap, false ) diff --git a/samples/Nit/drop_privileges.nit b/samples/Nit/drop_privileges.nit new file mode 100644 index 00000000..932a87be --- /dev/null +++ b/samples/Nit/drop_privileges.nit @@ -0,0 +1,46 @@ +# This file is part of NIT ( http://www.nitlanguage.org ). +# +# Copyright 2013 Alexis Laferrière +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Example using the privileges module to drop privileges from root +module drop_privileges + +import privileges + +# basic command line options +var opts = new OptionContext +var opt_ug = new OptionUserAndGroup.for_dropping_privileges +opt_ug.mandatory = true +opts.add_option(opt_ug) + +# parse and check command line options +opts.parse(args) +if not opts.errors.is_empty then + print opts.errors + print "Usage: drop_privileges [options]" + opts.usage + exit 1 +end + +# original user +print "before {sys.uid}:{sys.gid}" + +# make the switch +var user_group = opt_ug.value +assert user_group != null +user_group.drop_privileges + +# final user +print "after {sys.uid}:{sys.egid}" diff --git a/samples/Nit/extern_methods.nit b/samples/Nit/extern_methods.nit new file mode 100644 index 00000000..00c6b684 --- /dev/null +++ b/samples/Nit/extern_methods.nit @@ -0,0 +1,69 @@ +# This file is part of NIT ( http://www.nitlanguage.org ). +# +# Copyright 2012-2013 Alexis Laferrière +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# This module illustrates some uses of the FFI, specifically +# how to use extern methods. Which means to implement a Nit method in C. +module extern_methods + +redef enum Int + # Returns self'th fibonnaci number + # implemented here in C for optimization purposes + fun fib : Int import fib `{ + if ( recv < 2 ) + return recv; + else + return Int_fib( recv-1 ) + Int_fib( recv-2 ); + `} + + # System call to sleep for "self" seconds + fun sleep `{ + sleep( recv ); + `} + + # Return atan2l( self, x ) from libmath + fun atan_with( x : Int ) : Float `{ + return atan2( recv, x ); + `} + + # This method callback to Nit methods from C code + # It will use from C code: + # * the local fib method + # * the + operator, a method of Int + # * to_s, a method of all objects + # * String.to_cstring, a method of String to return an equivalent char* + fun foo import fib, +, to_s, String.to_cstring `{ + long recv_fib = Int_fib( recv ); + long recv_plus_fib = Int__plus( recv, recv_fib ); + + String nit_string = Int_to_s( recv_plus_fib ); + char *c_string = String_to_cstring( nit_string ); + + printf( "from C: self + fib(self) = %s\n", c_string ); + `} + + # Equivalent to foo but written in pure Nit + fun bar do print "from Nit: self + fib(self) = {self+self.fib}" +end + +print 12.fib + +print "sleeping 1 second..." +1.sleep + +print 100.atan_with( 200 ) +8.foo +8.bar + diff --git a/samples/Nit/fibonacci.nit b/samples/Nit/fibonacci.nit new file mode 100644 index 00000000..e1a72c9e --- /dev/null +++ b/samples/Nit/fibonacci.nit @@ -0,0 +1,43 @@ +# This file is part of NIT ( http://www.nitlanguage.org ). +# +# Copyright 2004-2008 Jean Privat +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# A simple exemple of refinement where a method is added to the integer class. +module fibonacci + +redef class Int + # Calculate the self-th element of the fibonacci sequence. + fun fibonacci: Int + do + if self < 2 then + return 1 + else + return (self-2).fibonacci + (self-1).fibonacci + end + end +end + +# Print usage and exit. +fun usage +do + print "Usage: fibonnaci " + exit 0 +end + +# Main part +if args.length != 1 then + usage +end +print args.first.to_i.fibonacci diff --git a/samples/Nit/hello_world.nit b/samples/Nit/hello_world.nit new file mode 100644 index 00000000..da6849ae --- /dev/null +++ b/samples/Nit/hello_world.nit @@ -0,0 +1 @@ +print "hello world" diff --git a/samples/Nit/html_page.nit b/samples/Nit/html_page.nit new file mode 100644 index 00000000..cf76665d --- /dev/null +++ b/samples/Nit/html_page.nit @@ -0,0 +1,105 @@ +# This file is part of NIT ( http://www.nitlanguage.org ). +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import html + +class NitHomepage + super HTMLPage + + redef fun head do + add("meta").attr("charset", "utf-8") + add("title").text("Nit") + add("link").attr("rel", "icon").attr("href", "http://nitlanguage.org/favicon.ico").attr("type", "image/x-icon") + add("link").attr("rel", "stylesheet").attr("href", "http://nitlanguage.org/style.css").attr("type", "text/css") + add("link").attr("rel", "stylesheet").attr("href", "http://nitlanguage.org/local.css").attr("type", "text/css") + end + + redef fun body do + open("article").add_class("page") + open("section").add_class("pageheader") + add_html("theNitProgramming Language") + open("header").add_class("header") + open("div").add_class("topsubtitle") + add("p").text("A Fun Language for Serious Programming") + close("div") + close("header") + close("section") + + open("div").attr("id", "pagebody") + open("section").attr("id", "content") + add("h1").text("# What is Nit?") + add("p").text("Nit is an object-oriented programming language. The goal of Nit is to propose a robust statically typed programming language where structure is not a pain.") + add("p").text("So, what does the famous hello world program look like, in Nit?") + add_html("
print 'Hello, World!'
") + + add("h1").text("# Feature Highlights") + add("h2").text("Usability") + add("p").text("Nit's goal is to be usable by real programmers for real projects") + + open("ul") + open("li") + add("a").attr("href", "http://en.wikipedia.org/wiki/KISS_principle").text("KISS principle") + close("li") + add("li").text("Script-like language without verbosity nor cryptic statements") + add("li").text("Painless static types: static typing should help programmers") + add("li").text("Efficient development, efficient execution, efficient evolution.") + close("ul") + + add("h2").text("Robustness") + add("p").text("Nit will help you to write bug-free programs") + + open("ul") + add("li").text("Strong static typing") + add("li").text("No more NullPointerException") + close("ul") + + add("h2").text("Object-Oriented") + add("p").text("Nit's guideline is to follow the most powerful OO principles") + + open("ul") + open("li") + add("a").attr("href", "./everything_is_an_object/").text("Everything is an object") + close("li") + open("li") + add("a").attr("href", "./multiple_inheritance/").text("Multiple inheritance") + close("li") + open("li") + add("a").attr("href", "./refinement/").text("Open classes") + close("li") + open("li") + add("a").attr("href", "./virtual_types/").text("Virtual types") + close("li") + close("ul") + + + add("h1").text("# Getting Started") + add("p").text("Get Nit from its Git repository:") + + add_html("
$ git clone http://nitlanguage.org/nit.git
") + add("p").text("Build the compiler (may be long):") + add_html("
$ cd nit\n")
+					add_html("$ make
") + add("p").text("Compile a program:") + add_html("
$ bin/nitc examples/hello_world.nit
") + add("p").text("Execute the program:") + add_html("
$ ./hello_world
") + close("section") + close("div") + close("article") + end +end + +var page = new NitHomepage +page.write_to stdout +page.write_to_file("nit.html") diff --git a/samples/Nit/int_stack.nit b/samples/Nit/int_stack.nit new file mode 100644 index 00000000..1109bbbc --- /dev/null +++ b/samples/Nit/int_stack.nit @@ -0,0 +1,100 @@ +# This file is part of NIT ( http://www.nitlanguage.org ). +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# An example that defines and uses stacks of integers. +# The implementation is done with a simple linked list. +# It features: free constructors, nullable types and some adaptive typing. +module int_stack + +# A stack of integer implemented by a simple linked list. +# Note that this is only a toy class since a real linked list will gain to use +# generics and extends interfaces, like Collection, from the standard library. +class IntStack + # The head node of the list. + # Null means that the stack is empty. + private var head: nullable ISNode = null + + # Add a new integer in the stack. + fun push(val: Int) + do + self.head = new ISNode(val, self.head) + end + + # Remove and return the last pushed integer. + # Return null if the stack is empty. + fun pop: nullable Int + do + var head = self.head + if head == null then return null + # Note: the followings are statically safe because of the + # previous 'if'. + var val = head.val + self.head = head.next + return val + end + + # Return the sum of all integers of the stack. + # Return 0 if the stack is empty. + fun sumall: Int + do + var sum = 0 + var cur = self.head + while cur != null do + # Note: the followings are statically safe because of + # the condition of the 'while'. + sum += cur.val + cur = cur.next + end + return sum + end + + # Note: Because all attributes have a default value, a free constructor + # "init()" is implicitly defined. +end + +# A node of a IntStack +private class ISNode + # The integer value stored in the node. + var val: Int + + # The next node, if any. + var next: nullable ISNode + + # Note: A free constructor "init(val: Int, next: nullable ISNode)" is + # implicitly defined. +end + +var l = new IntStack +l.push(1) +l.push(2) +l.push(3) + +print l.sumall + +# Note: the 'for' control structure cannot be used on IntStack in its current state. +# It requires a more advanced topic. +# However, why not using the 'loop' control structure? +loop + var i = l.pop + if i == null then break + # The following is statically safe because of the previous 'if'. + print i * 10 +end + +# Note: 'or else' is used to give an alternative of a null expression. +l.push(5) +print l.pop or else 0 # l.pop gives 5, so print 5 +print l.pop or else 0 # l.pop gives null, so print the alternative: 0 + + diff --git a/samples/Nit/opengles2_hello_triangle.nit b/samples/Nit/opengles2_hello_triangle.nit new file mode 100644 index 00000000..2b39b1ba --- /dev/null +++ b/samples/Nit/opengles2_hello_triangle.nit @@ -0,0 +1,193 @@ +# This file is part of NIT ( http://www.nitlanguage.org ). +# +# Copyright 2014 Alexis Laferrière +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Basic example of OpenGL ES 2.0 usage from the book OpenGL ES 2.0 Programming Guide. +# +# Code reference: +# https://code.google.com/p/opengles-book-samples/source/browse/trunk/LinuxX11/Chapter_2/Hello_Triangle/Hello_Triangle.c +module opengles2_hello_triangle + +import glesv2 +import egl +import mnit_linux # for sdl +import x11 + +if "NIT_TESTING".environ == "true" then exit(0) + +var window_width = 800 +var window_height = 600 + +# +## SDL +# +var sdl_display = new SDLDisplay(window_width, window_height) +var sdl_wm_info = new SDLSystemWindowManagerInfo +var x11_window_handle = sdl_wm_info.x11_window_handle + +# +## X11 +# +var x_display = x_open_default_display +assert x_display != 0 else print "x11 fail" + +# +## EGL +# +var egl_display = new EGLDisplay(x_display) +assert egl_display.is_valid else print "EGL display is not valid" +egl_display.initialize + +print "EGL version: {egl_display.version}" +print "EGL vendor: {egl_display.vendor}" +print "EGL extensions: {egl_display.extensions.join(", ")}" +print "EGL client APIs: {egl_display.client_apis.join(", ")}" + +assert egl_display.is_valid else print egl_display.error + +var config_chooser = new EGLConfigChooser +#config_chooser.surface_type_egl +config_chooser.blue_size = 8 +config_chooser.green_size = 8 +config_chooser.red_size = 8 +#config_chooser.alpha_size = 8 +#config_chooser.depth_size = 8 +#config_chooser.stencil_size = 8 +#config_chooser.sample_buffers = 1 +config_chooser.close + +var configs = config_chooser.choose(egl_display) +assert configs != null else print "choosing config failed: {egl_display.error}" +assert not configs.is_empty else print "no EGL config" + +print "{configs.length} EGL configs available" +for config in configs do + var attribs = config.attribs(egl_display) + print "* caveats: {attribs.caveat}" + print " conformant to: {attribs.conformant}" + print " size of RGBA: {attribs.red_size} {attribs.green_size} {attribs.blue_size} {attribs.alpha_size}" + print " buffer, depth, stencil: {attribs.buffer_size} {attribs.depth_size} {attribs.stencil_size}" +end + +var config = configs.first + +var format = config.attribs(egl_display).native_visual_id + +# TODO android part +# Opengles1Display_midway_init(recv, format); + +var surface = egl_display.create_window_surface(config, x11_window_handle, [0]) +assert surface.is_ok else print egl_display.error + +var context = egl_display.create_context(config) +assert context.is_ok else print egl_display.error + +var make_current_res = egl_display.make_current(surface, surface, context) +assert make_current_res + +var width = surface.attribs(egl_display).width +var height = surface.attribs(egl_display).height +print "Width: {width}" +print "Height: {height}" + +assert egl_bind_opengl_es_api else print "eglBingAPI failed: {egl_display.error}" + +# +## GLESv2 +# + +print "Can compile shaders? {gl_shader_compiler}" +assert_no_gl_error + +assert gl_shader_compiler else print "Cannot compile shaders" + +# gl program +print gl_error.to_s +var program = new GLProgram +if not program.is_ok then + print "Program is not ok: {gl_error.to_s}\nLog:" + print program.info_log + abort +end +assert_no_gl_error + +# vertex shader +var vertex_shader = new GLVertexShader +assert vertex_shader.is_ok else print "Vertex shader is not ok: {gl_error}" +vertex_shader.source = """ +attribute vec4 vPosition; +void main() +{ + gl_Position = vPosition; +} """ +vertex_shader.compile +assert vertex_shader.is_compiled else print "Vertex shader compilation failed with: {vertex_shader.info_log} {program.info_log}" +assert_no_gl_error + +# fragment shader +var fragment_shader = new GLFragmentShader +assert fragment_shader.is_ok else print "Fragment shader is not ok: {gl_error}" +fragment_shader.source = """ +precision mediump float; +void main() +{ + gl_FragColor = vec4(1.0, 0.0, 0.0, 1.0); +} +""" +fragment_shader.compile +assert fragment_shader.is_compiled else print "Fragment shader compilation failed with: {fragment_shader.info_log}" +assert_no_gl_error + +program.attach_shader vertex_shader +program.attach_shader fragment_shader +program.bind_attrib_location(0, "vPosition") +program.link +assert program.is_linked else print "Linking failed: {program.info_log}" +assert_no_gl_error + +# draw! +var vertices = [0.0, 0.5, 0.0, -0.5, -0.5, 0.0, 0.5, -0.5, 0.0] +var vertex_array = new VertexArray(0, 3, vertices) +vertex_array.attrib_pointer +gl_clear_color(0.5, 0.0, 0.5, 1.0) +for i in [0..10000[ do + printn "." + assert_no_gl_error + gl_viewport(0, 0, width, height) + gl_clear_color_buffer + program.use + vertex_array.enable + vertex_array.draw_arrays_triangles + egl_display.swap_buffers(surface) +end + +# delete +program.delete +vertex_shader.delete +fragment_shader.delete + +# +## EGL +# +# close +egl_display.make_current(new EGLSurface.none, new EGLSurface.none, new EGLContext.none) +egl_display.destroy_context(context) +egl_display.destroy_surface(surface) + +# +## SDL +# +# close +sdl_display.destroy diff --git a/samples/Nit/print_arguments.nit b/samples/Nit/print_arguments.nit new file mode 100644 index 00000000..3bdddc62 --- /dev/null +++ b/samples/Nit/print_arguments.nit @@ -0,0 +1,22 @@ +# This file is part of NIT ( http://www.nitlanguage.org ). +# +# Copyright 2004-2008 Jean Privat +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# How to print arguments of the command line. +module print_arguments + +for a in args do + print a +end diff --git a/samples/Nit/procedural_array.nit b/samples/Nit/procedural_array.nit new file mode 100644 index 00000000..838bda02 --- /dev/null +++ b/samples/Nit/procedural_array.nit @@ -0,0 +1,48 @@ +# This file is part of NIT ( http://www.nitlanguage.org ). +# +# Copyright 2004-2008 Jean Privat +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# A procedural program (without explicit class definition). +# This program manipulates arrays of integers. +module procedural_array + +# The sum of the elements of `a'. +# Uses a 'for' control structure. +fun array_sum(a: Array[Int]): Int +do + var sum = 0 + for i in a do + sum = sum + i + end + return sum +end + +# The sum of the elements of `a' (alternative version). +# Uses a 'while' control structure. +fun array_sum_alt(a: Array[Int]): Int +do + var sum = 0 + var i = 0 + while i < a.length do + sum = sum + a[i] + i = i + 1 + end + return sum +end + +# The main part of the program. +var a = [10, 5, 8, 9] +print(array_sum(a)) +print(array_sum_alt(a)) diff --git a/samples/Nit/socket_client.nit b/samples/Nit/socket_client.nit new file mode 100644 index 00000000..0ba19132 --- /dev/null +++ b/samples/Nit/socket_client.nit @@ -0,0 +1,38 @@ +# This file is part of NIT ( http://www.nitlanguage.org ). +# +# Copyright 2013 Matthieu Lucas +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Client sample using the Socket module which connect to the server sample. +module socket_client + +import socket + +if args.length < 2 then + print "Usage : socket_client " + return +end + +var s = new Socket.client(args[0], args[1].to_i) +print "[HOST ADDRESS] : {s.address}" +print "[HOST] : {s.host}" +print "[PORT] : {s.port}" +print "Connecting ... {s.connected}" +if s.connected then + print "Writing ... Hello server !" + s.write("Hello server !") + print "[Response from server] : {s.read(100)}" + print "Closing ..." + s.close +end diff --git a/samples/Nit/socket_server.nit b/samples/Nit/socket_server.nit new file mode 100644 index 00000000..aa77a759 --- /dev/null +++ b/samples/Nit/socket_server.nit @@ -0,0 +1,52 @@ +# This file is part of NIT ( http://www.nitlanguage.org ). +# +# Copyright 2013 Matthieu Lucas +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Server sample using the Socket module which allow client to connect +module socket_server + +import socket + +if args.is_empty then + print "Usage : socket_server " + return +end + +var socket = new Socket.server(args[0].to_i, 1) +print "[PORT] : {socket.port.to_s}" + +var clients = new Array[Socket] +var max = socket +loop + var fs = new SocketObserver(true, true, true) + fs.readset.set(socket) + + for c in clients do fs.readset.set(c) + + if fs.select(max, 4, 0) == 0 then + print "Error occured in select {sys.errno.strerror}" + break + end + + if fs.readset.is_set(socket) then + var ns = socket.accept + print "Accepting {ns.address} ... " + print "[Message from {ns.address}] : {ns.read(100)}" + ns.write("Goodbye client.") + print "Closing {ns.address} ..." + ns.close + end +end + diff --git a/samples/Nit/tmpl_composer.nit b/samples/Nit/tmpl_composer.nit new file mode 100644 index 00000000..6160b1a8 --- /dev/null +++ b/samples/Nit/tmpl_composer.nit @@ -0,0 +1,94 @@ +# This file is part of NIT ( http://www.nitlanguage.org ). +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import template + +### Here, definition of the specific templates + +# The root template for composers +class TmplComposers + super Template + + # Short list of composers + var composers = new Array[TmplComposer] + + # Detailled list of composers + var composer_details = new Array[TmplComposerDetail] + + # Add a composer in both lists + fun add_composer(firstname, lastname: String, birth, death: Int) + do + composers.add(new TmplComposer(lastname)) + composer_details.add(new TmplComposerDetail(firstname, lastname, birth, death)) + end + + redef fun rendering do + add """ +COMPOSERS +========= +""" + add_all composers + add """ + +DETAILS +======= +""" + add_all composer_details + end +end + +# A composer in the short list of composers +class TmplComposer + super Template + + # Short name + var name: String + + init(name: String) do self.name = name + + redef fun rendering do add "- {name}\n" +end + +# A composer in the detailled list of composers +class TmplComposerDetail + super Template + + var firstname: String + var lastname: String + var birth: Int + var death: Int + + init(firstname, lastname: String, birth, death: Int) do + self.firstname = firstname + self.lastname = lastname + self.birth = birth + self.death = death + end + + redef fun rendering do add """ + +COMPOSER: {{{firstname}}} {{{lastname}}} +BIRTH...: {{{birth}}} +DEATH...: {{{death}}} +""" + +end + +### Here a simple usage of the templates + +var f = new TmplComposers +f.add_composer("Johann Sebastian", "Bach", 1685, 1750) +f.add_composer("George Frideric", "Handel", 1685, 1759) +f.add_composer("Wolfgang Amadeus", "Mozart", 1756, 1791) +f.write_to(stdout) diff --git a/samples/Nit/websocket_server.nit b/samples/Nit/websocket_server.nit new file mode 100644 index 00000000..38029c37 --- /dev/null +++ b/samples/Nit/websocket_server.nit @@ -0,0 +1,46 @@ +# This file is part of NIT ( http://www.nitlanguage.org ). +# +# Copyright 2014 Lucas Bajolet +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Sample module for a minimal chat server using Websockets on port 8088 +module websocket_server + +import websocket + +var sock = new WebSocket(8088, 1) + +var msg: String + +if sock.listener.eof then + print sys.errno.strerror +end + +sock.accept + +while not sock.listener.eof do + if not sock.connected then sock.accept + if sys.stdin.poll_in then + msg = gets + printn "Received message : {msg}" + if msg == "exit" then sock.close + if msg == "disconnect" then sock.disconnect_client + sock.write(msg) + end + if sock.can_read(10) then + msg = sock.read_line + if msg != "" then print msg + end +end + From 5199fcf0a24cf5a1cd284fd3e142687a150e508a Mon Sep 17 00:00:00 2001 From: Lucas Bajolet Date: Fri, 27 Jun 2014 10:53:17 -0400 Subject: [PATCH 086/268] Updated samples.json. Signed-off-by: Lucas Bajolet --- lib/linguist/samples.json | 130651 ++++++++++++++++++----------------- 1 file changed, 65779 insertions(+), 64872 deletions(-) diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index f83d0320..d0399b43 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -1,78 +1,150 @@ { "extnames": { - "ABAP": [ - ".abap" + "Mercury": [ + ".m", + ".moo" + ], + "Gosu": [ + ".gs", + ".gst", + ".gsx", + ".vark" + ], + "JSON5": [ + ".json5" + ], + "PHP": [ + ".module", + ".php", + ".script!" + ], + "Moocode": [ + ".moo" ], "Agda": [ ".agda" ], - "Alloy": [ - ".als" + "Tea": [ + ".tea" ], - "Apex": [ - ".cls" + "Scala": [ + ".sbt", + ".sc", + ".script!" ], - "AppleScript": [ - ".applescript" + "Rebol": [ + ".r", + ".r2", + ".r3", + ".reb", + ".rebol" + ], + "CoffeeScript": [ + ".coffee" + ], + "Scilab": [ + ".sce", + ".sci", + ".tst" + ], + "Ragel in Ruby Host": [ + ".rl" + ], + "JSONLD": [ + ".jsonld" + ], + "Pascal": [ + ".dpr" ], "Arduino": [ ".ino" ], - "AsciiDoc": [ - ".adoc", - ".asc", - ".asciidoc" + "Game Maker Language": [ + ".gml" ], - "AspectJ": [ - ".aj" + "NSIS": [ + ".nsh", + ".nsi" ], - "Assembly": [ - ".asm", - ".inc" + "SystemVerilog": [ + ".sv", + ".svh", + ".vh" ], - "ATS": [ - ".atxt", - ".dats", - ".hats", - ".sats" + "Inform 7": [ + ".i7x", + ".ni" ], - "AutoHotkey": [ - ".ahk" + "XProc": [ + ".xpl" ], - "Awk": [ - ".awk" + "Nu": [ + ".nu", + ".script!" ], - "BlitzBasic": [ - ".bb" + "edn": [ + ".edn" ], - "Bluespec": [ - ".bsv" + "Zephir": [ + ".zep" + ], + "Component Pascal": [ + ".cp", + ".cps" + ], + "RDoc": [ + ".rdoc" + ], + "Gnuplot": [ + ".gnu", + ".gp" + ], + "Mask": [ + ".mask" ], "Brightscript": [ ".brs" ], - "C": [ - ".c", - ".cats", - ".h" + "Kotlin": [ + ".kt" ], - "C#": [ - ".cs", - ".cshtml" + "XC": [ + ".xc" ], - "C++": [ - ".cc", - ".cpp", - ".h", - ".hpp", - ".inl", - ".ipp" + "QMake": [ + ".pri", + ".pro", + ".script!" ], - "Ceylon": [ - ".ceylon" + "Nix": [ + ".nix" ], - "Cirru": [ - ".cirru" + "Turing": [ + ".t" + ], + "Xojo": [ + ".xojo_code", + ".xojo_menu", + ".xojo_report", + ".xojo_script", + ".xojo_toolbar", + ".xojo_window" + ], + "Xtend": [ + ".xtend" + ], + "Ruby": [ + ".pluginspec", + ".rabl", + ".rake", + ".rb", + ".script!" + ], + "Frege": [ + ".fr" + ], + "Literate Agda": [ + ".lagda" ], "Clojure": [ ".cl2", @@ -83,398 +155,57 @@ ".cljx", ".hic" ], - "COBOL": [ - ".cbl", - ".ccp", - ".cob", - ".cpy" - ], - "CoffeeScript": [ - ".coffee" + "Pan": [ + ".pan" ], "Common Lisp": [ ".cl", ".lisp" ], - "Component Pascal": [ - ".cp", - ".cps" - ], - "Coq": [ - ".v" - ], - "Creole": [ - ".creole" - ], - "Crystal": [ - ".cr" - ], - "CSS": [ - ".css" - ], - "Cuda": [ - ".cu", - ".cuh" - ], - "Dart": [ - ".dart" - ], - "Diff": [ - ".patch" - ], - "DM": [ - ".dm" - ], - "Dogescript": [ - ".djs" - ], - "E": [ - ".E" - ], - "Eagle": [ - ".brd", - ".sch" - ], - "ECL": [ - ".ecl" - ], - "edn": [ - ".edn" - ], - "Elm": [ - ".elm" - ], - "Emacs Lisp": [ - ".el" - ], - "Erlang": [ - ".erl", - ".escript", - ".script!" - ], - "fish": [ - ".fish" - ], - "Forth": [ - ".forth", - ".fth" - ], - "Frege": [ - ".fr" - ], - "Game Maker Language": [ - ".gml" - ], - "GAMS": [ - ".gms" - ], - "GAP": [ - ".g", - ".gd", - ".gi" - ], - "GAS": [ - ".s" - ], - "GLSL": [ - ".fp", - ".frag", - ".glsl" - ], - "Gnuplot": [ - ".gnu", - ".gp" - ], - "Gosu": [ - ".gs", - ".gst", - ".gsx", - ".vark" - ], - "Grammatical Framework": [ - ".gf" - ], - "Groovy": [ - ".gradle", - ".grt", - ".gtpl", - ".gvy", - ".script!" - ], - "Groovy Server Pages": [ - ".gsp" - ], - "Haml": [ - ".haml" - ], - "Handlebars": [ - ".handlebars", - ".hbs" - ], - "Haskell": [ - ".hs" - ], - "HTML": [ - ".html", - ".st" - ], - "Hy": [ - ".hy" - ], - "IDL": [ - ".dlm", - ".pro" - ], - "Idris": [ - ".idr" - ], - "Inform 7": [ - ".i7x", - ".ni" - ], - "Ioke": [ - ".ik" - ], - "Isabelle": [ - ".thy" - ], - "Jade": [ - ".jade" - ], - "Java": [ - ".java" - ], - "JavaScript": [ - ".frag", - ".js", - ".script!", - ".xsjs", - ".xsjslib" - ], - "JSON": [ - ".json", - ".lock" - ], - "JSON5": [ - ".json5" - ], - "JSONiq": [ - ".jq" - ], - "JSONLD": [ - ".jsonld" - ], - "Julia": [ - ".jl" - ], - "Kit": [ - ".kit" - ], - "Kotlin": [ - ".kt" - ], - "KRL": [ - ".krl" - ], - "Lasso": [ - ".las", - ".lasso", - ".lasso9", - ".ldml" - ], - "Latte": [ - ".latte" - ], - "Less": [ - ".less" - ], - "LFE": [ - ".lfe" - ], - "Liquid": [ - ".liquid" - ], - "Literate Agda": [ - ".lagda" - ], - "Literate CoffeeScript": [ - ".litcoffee" - ], - "LiveScript": [ - ".ls" - ], - "Logos": [ - ".xm" - ], "Logtalk": [ ".lgt" ], - "Lua": [ - ".pd_lua" + "Swift": [ + ".swift" ], - "M": [ - ".m" + "Pod": [ + ".pod" ], - "Makefile": [ - ".script!" + "TeX": [ + ".cls" ], - "Markdown": [ - ".md" - ], - "Mask": [ - ".mask" - ], - "Mathematica": [ - ".m", - ".nb" - ], - "Matlab": [ - ".m" - ], - "Max": [ - ".maxhelp", - ".maxpat", - ".mxt" - ], - "MediaWiki": [ - ".mediawiki" - ], - "Mercury": [ - ".m", - ".moo" - ], - "Monkey": [ - ".monkey" - ], - "Moocode": [ - ".moo" - ], - "MoonScript": [ - ".moon" - ], - "MTML": [ - ".mtml" - ], - "Nemerle": [ - ".n" - ], - "NetLogo": [ - ".nlogo" - ], - "Nimrod": [ - ".nim" - ], - "Nix": [ - ".nix" - ], - "NSIS": [ - ".nsh", - ".nsi" - ], - "Nu": [ - ".nu", - ".script!" - ], - "Objective-C": [ - ".h", - ".m" - ], - "Objective-C++": [ - ".mm" - ], - "OCaml": [ - ".eliom", - ".ml" - ], - "Omgrofl": [ - ".omgrofl" - ], - "Opa": [ - ".opa" - ], - "OpenCL": [ - ".cl" - ], - "OpenEdge ABL": [ - ".cls", - ".p" - ], - "Org": [ - ".org" + "Cirru": [ + ".cirru" ], "Ox": [ ".ox", ".oxh", ".oxo" ], - "Oxygene": [ - ".oxygene" + "OpenCL": [ + ".cl" ], - "Pan": [ - ".pan" - ], - "Parrot Assembly": [ - ".pasm" - ], - "Parrot Internal Representation": [ - ".pir" - ], - "Pascal": [ - ".dpr" - ], - "PAWN": [ - ".pwn" - ], - "Perl": [ - ".fcgi", - ".pl", - ".pm", - ".pod", - ".script!", - ".t" - ], - "Perl6": [ - ".p6", - ".pm6" - ], - "PHP": [ - ".module", - ".php", - ".script!" + "PostScript": [ + ".ps" ], "Pike": [ ".pike", ".pmod" ], - "Pod": [ - ".pod" + "Bluespec": [ + ".bsv" ], - "PogoScript": [ - ".pogo" + "GAS": [ + ".s" ], - "PostScript": [ - ".ps" + "JSONiq": [ + ".jq" ], - "PowerShell": [ - ".ps1", - ".psm1" + "Lua": [ + ".pd_lua" ], - "Processing": [ - ".pde" - ], - "Prolog": [ - ".ecl", - ".pl", - ".prolog" - ], - "Propeller Spin": [ - ".spin" - ], - "Protocol Buffer": [ - ".proto" - ], - "PureScript": [ - ".purs" + "AppleScript": [ + ".applescript" ], "Python": [ ".py", @@ -482,105 +213,6 @@ ".pyp", ".script!" ], - "QMake": [ - ".pri", - ".pro", - ".script!" - ], - "R": [ - ".R", - ".Rd", - ".r", - ".rsx", - ".script!" - ], - "Racket": [ - ".scrbl" - ], - "Ragel in Ruby Host": [ - ".rl" - ], - "RDoc": [ - ".rdoc" - ], - "Rebol": [ - ".r", - ".r2", - ".r3", - ".reb", - ".rebol" - ], - "Red": [ - ".red", - ".reds" - ], - "RMarkdown": [ - ".rmd" - ], - "RobotFramework": [ - ".robot" - ], - "Ruby": [ - ".pluginspec", - ".rabl", - ".rake", - ".rb", - ".script!" - ], - "Rust": [ - ".rs" - ], - "SAS": [ - ".sas" - ], - "Sass": [ - ".sass", - ".scss" - ], - "Scala": [ - ".sbt", - ".sc", - ".script!" - ], - "Scaml": [ - ".scaml" - ], - "Scheme": [ - ".sld", - ".sps" - ], - "Scilab": [ - ".sce", - ".sci", - ".tst" - ], - "SCSS": [ - ".scss" - ], - "Shell": [ - ".bash", - ".script!", - ".sh", - ".zsh" - ], - "ShellSession": [ - ".sh-session" - ], - "Shen": [ - ".shen" - ], - "Slash": [ - ".sl" - ], - "Slim": [ - ".slim" - ], - "Smalltalk": [ - ".st" - ], - "SourcePawn": [ - ".sp" - ], "SQL": [ ".prc", ".sql", @@ -588,15 +220,365 @@ ".udf", ".viw" ], + "Markdown": [ + ".md" + ], + "PowerShell": [ + ".ps1", + ".psm1" + ], + "RobotFramework": [ + ".robot" + ], + "HTML": [ + ".html", + ".st" + ], + "Eagle": [ + ".brd", + ".sch" + ], + "Lasso": [ + ".las", + ".lasso", + ".lasso9", + ".ldml" + ], + "Parrot Internal Representation": [ + ".pir" + ], + "Kit": [ + ".kit" + ], + "Stylus": [ + ".styl" + ], + "C": [ + ".c", + ".cats", + ".h" + ], + "Jade": [ + ".jade" + ], + "Zimpl": [ + ".zmpl" + ], + "AsciiDoc": [ + ".adoc", + ".asc", + ".asciidoc" + ], + "NetLogo": [ + ".nlogo" + ], + "Hy": [ + ".hy" + ], + "Racket": [ + ".scrbl" + ], + "Haskell": [ + ".hs" + ], + "ShellSession": [ + ".sh-session" + ], + "Volt": [ + ".volt" + ], + "Literate CoffeeScript": [ + ".litcoffee" + ], + "Sass": [ + ".sass", + ".scss" + ], + "Objective-C": [ + ".h", + ".m" + ], + "E": [ + ".E" + ], + "YAML": [ + ".yml" + ], + "Visual Basic": [ + ".cls", + ".vb", + ".vbhtml" + ], + "Propeller Spin": [ + ".spin" + ], + "Monkey": [ + ".monkey" + ], + "Groovy Server Pages": [ + ".gsp" + ], + "Opa": [ + ".opa" + ], + "XSLT": [ + ".xslt" + ], + "Dogescript": [ + ".djs" + ], + "Creole": [ + ".creole" + ], + "Crystal": [ + ".cr" + ], + "Nemerle": [ + ".n" + ], + "Assembly": [ + ".asm", + ".inc" + ], + "Isabelle": [ + ".thy" + ], + "DM": [ + ".dm" + ], + "GLSL": [ + ".fp", + ".frag", + ".glsl" + ], + "GAP": [ + ".g", + ".gd", + ".gi" + ], + "XQuery": [ + ".xqm" + ], + "Max": [ + ".maxhelp", + ".maxpat", + ".mxt" + ], + "PogoScript": [ + ".pogo" + ], + "SAS": [ + ".sas" + ], + "MediaWiki": [ + ".mediawiki" + ], + "Mathematica": [ + ".m", + ".nb" + ], + "Idris": [ + ".idr" + ], + "Prolog": [ + ".ecl", + ".pl", + ".prolog" + ], + "Oxygene": [ + ".oxygene" + ], + "R": [ + ".R", + ".Rd", + ".r", + ".rsx", + ".script!" + ], + "JavaScript": [ + ".frag", + ".js", + ".script!", + ".xsjs", + ".xsjslib" + ], + "STON": [ + ".ston" + ], + "AspectJ": [ + ".aj" + ], + "OCaml": [ + ".eliom", + ".ml" + ], + "Nimrod": [ + ".nim" + ], + "Grammatical Framework": [ + ".gf" + ], + "CSS": [ + ".css" + ], + "SourcePawn": [ + ".sp" + ], + "BlitzBasic": [ + ".bb" + ], + "Dart": [ + ".dart" + ], + "OpenEdge ABL": [ + ".cls", + ".p" + ], + "Handlebars": [ + ".handlebars", + ".hbs" + ], + "VHDL": [ + ".vhd" + ], + "Objective-C++": [ + ".mm" + ], + "M": [ + ".m" + ], + "C++": [ + ".cc", + ".cpp", + ".h", + ".hpp", + ".inl", + ".ipp" + ], + "Shen": [ + ".shen" + ], + "Cuda": [ + ".cu", + ".cuh" + ], + "Less": [ + ".less" + ], + "ATS": [ + ".atxt", + ".dats", + ".hats", + ".sats" + ], + "PAWN": [ + ".pwn" + ], + "Makefile": [ + ".script!" + ], + "Forth": [ + ".forth", + ".fth" + ], + "Scheme": [ + ".sld", + ".sps" + ], + "wisp": [ + ".wisp" + ], + "SuperCollider": [ + ".scd" + ], + "RMarkdown": [ + ".rmd" + ], + "ABAP": [ + ".abap" + ], + "fish": [ + ".fish" + ], + "Protocol Buffer": [ + ".proto" + ], + "UnrealScript": [ + ".uc" + ], + "Processing": [ + ".pde" + ], + "Scaml": [ + ".scaml" + ], + "TXL": [ + ".txl" + ], + "Julia": [ + ".jl" + ], + "Diff": [ + ".patch" + ], + "SCSS": [ + ".scss" + ], + "Omgrofl": [ + ".omgrofl" + ], + "Tcl": [ + ".tm" + ], + "Emacs Lisp": [ + ".el" + ], "Squirrel": [ ".nut" ], + "PureScript": [ + ".purs" + ], + "VCL": [ + ".vcl" + ], "Standard ML": [ ".ML", ".fun", ".sig", ".sml" ], + "IDL": [ + ".dlm", + ".pro" + ], + "Red": [ + ".red", + ".reds" + ], + "Latte": [ + ".latte" + ], + "Matlab": [ + ".m" + ], + "JSON": [ + ".json", + ".lock" + ], + "Haml": [ + ".haml" + ], + "Groovy": [ + ".gradle", + ".grt", + ".gtpl", + ".gvy", + ".script!" + ], + "Coq": [ + ".v" + ], "Stata": [ ".ado", ".do", @@ -606,66 +588,56 @@ ".matah", ".sthlp" ], - "STON": [ - ".ston" + "Ceylon": [ + ".ceylon" ], - "Stylus": [ - ".styl" + "MoonScript": [ + ".moon" ], - "SuperCollider": [ - ".scd" - ], - "Swift": [ - ".swift" - ], - "SystemVerilog": [ - ".sv", - ".svh", - ".vh" - ], - "Tcl": [ - ".tm" - ], - "Tea": [ - ".tea" - ], - "TeX": [ - ".cls" - ], - "Turing": [ + "Perl": [ + ".fcgi", + ".pl", + ".pm", + ".pod", + ".script!", ".t" ], - "TXL": [ - ".txl" - ], "TypeScript": [ ".ts" ], - "UnrealScript": [ - ".uc" - ], - "VCL": [ - ".vcl" - ], "Verilog": [ ".v" ], - "VHDL": [ - ".vhd" + "KRL": [ + ".krl" ], - "Visual Basic": [ - ".cls", - ".vb", - ".vbhtml" + "ECL": [ + ".ecl" ], - "Volt": [ - ".volt" + "LFE": [ + ".lfe" ], - "wisp": [ - ".wisp" + "MTML": [ + ".mtml" ], - "XC": [ - ".xc" + "Slash": [ + ".sl" + ], + "Awk": [ + ".awk" + ], + "Ioke": [ + ".ik" + ], + "Org": [ + ".org" + ], + "Perl6": [ + ".p6", + ".pm6" + ], + "Smalltalk": [ + ".st" ], "XML": [ ".ant", @@ -681,60 +653,75 @@ ".vcxproj", ".xml" ], - "Xojo": [ - ".xojo_code", - ".xojo_menu", - ".xojo_report", - ".xojo_script", - ".xojo_toolbar", - ".xojo_window" + "Alloy": [ + ".als" ], - "XProc": [ - ".xpl" + "Nit": [ + ".nit" ], - "XQuery": [ - ".xqm" + "COBOL": [ + ".cbl", + ".ccp", + ".cob", + ".cpy" ], - "XSLT": [ - ".xslt" + "Java": [ + ".java" ], - "Xtend": [ - ".xtend" + "Logos": [ + ".xm" ], - "YAML": [ - ".yml" + "Shell": [ + ".bash", + ".script!", + ".sh", + ".zsh" ], - "Zephir": [ - ".zep" + "LiveScript": [ + ".ls" ], - "Zimpl": [ - ".zmpl" + "Apex": [ + ".cls" + ], + "GAMS": [ + ".gms" + ], + "Slim": [ + ".slim" + ], + "Elm": [ + ".elm" + ], + "C#": [ + ".cs", + ".cshtml" + ], + "AutoHotkey": [ + ".ahk" + ], + "Rust": [ + ".rs" + ], + "Liquid": [ + ".liquid" + ], + "Erlang": [ + ".erl", + ".escript", + ".script!" + ], + "Parrot Assembly": [ + ".pasm" ] }, "interpreters": { }, "filenames": { - "ApacheConf": [ - ".htaccess", - "apache2.conf", - "httpd.conf" - ], - "INI": [ - ".editorconfig", - ".gitconfig" - ], - "Makefile": [ - "Makefile" - ], - "Nginx": [ - "nginx.conf" - ], - "Perl": [ - "ack" - ], - "R": [ - "expr-dist" + "Zephir": [ + "exception.zep.c", + "exception.zep.h", + "exception.zep.php" ], "Ruby": [ ".pryrc", @@ -742,6 +729,34 @@ "Capfile", "Rakefile" ], + "ApacheConf": [ + ".htaccess", + "apache2.conf", + "httpd.conf" + ], + "VimL": [ + ".gvimrc", + ".vimrc" + ], + "YAML": [ + ".gemrc" + ], + "R": [ + "expr-dist" + ], + "Nginx": [ + "nginx.conf" + ], + "Makefile": [ + "Makefile" + ], + "Perl": [ + "ack" + ], + "INI": [ + ".editorconfig", + ".gitconfig" + ], "Shell": [ ".bash_logout", ".bash_profile", @@ -767,281 +782,4622 @@ "zprofile", "zshenv", "zshrc" - ], - "VimL": [ - ".gvimrc", - ".vimrc" - ], - "YAML": [ - ".gemrc" - ], - "Zephir": [ - "exception.zep.c", - "exception.zep.h", - "exception.zep.php" ] }, - "tokens_total": 643487, - "languages_total": 843, + "tokens_total": 648769, + "languages_total": 865, "tokens": { - "ABAP": { - "*/**": 1, - "*": 56, - "The": 2, - "MIT": 2, - "License": 1, - "(": 8, - ")": 8, - "Copyright": 1, - "c": 3, - "Ren": 1, - "van": 1, - "Mil": 1, - "Permission": 1, - "is": 2, - "hereby": 1, - "granted": 1, - "free": 1, - "of": 6, - "charge": 1, - "to": 10, - "any": 1, - "person": 1, - "obtaining": 1, - "a": 1, - "copy": 2, - "this": 2, - "software": 1, - "and": 3, - "associated": 1, - "documentation": 1, - "files": 4, - "the": 10, - "deal": 1, - "in": 3, - "Software": 3, - "without": 2, - "restriction": 1, - "including": 1, - "limitation": 1, - "rights": 1, - "use": 1, - "modify": 1, - "merge": 1, - "publish": 1, - "distribute": 1, - "sublicense": 1, - "and/or": 1, - "sell": 1, - "copies": 2, - "permit": 1, - "persons": 1, - "whom": 1, - "furnished": 1, - "do": 4, - "so": 1, - "subject": 1, - "following": 1, - "conditions": 1, - "above": 1, - "copyright": 1, - "notice": 2, - "permission": 1, - "shall": 1, - "be": 1, - "included": 1, - "all": 1, - "or": 1, - "substantial": 1, - "portions": 1, - "Software.": 1, - "THE": 6, - "SOFTWARE": 2, - "IS": 1, - "PROVIDED": 1, - "WITHOUT": 1, - "WARRANTY": 1, - "OF": 4, - "ANY": 2, - "KIND": 1, - "EXPRESS": 1, - "OR": 7, - "IMPLIED": 1, - "INCLUDING": 1, - "BUT": 1, - "NOT": 1, - "LIMITED": 1, - "TO": 2, - "WARRANTIES": 1, - "MERCHANTABILITY": 1, - "FITNESS": 1, - "FOR": 2, - "A": 1, - "PARTICULAR": 1, - "PURPOSE": 1, - "AND": 1, - "NONINFRINGEMENT.": 1, - "IN": 4, - "NO": 1, - "EVENT": 1, - "SHALL": 1, - "AUTHORS": 1, - "COPYRIGHT": 1, - "HOLDERS": 1, - "BE": 1, - "LIABLE": 1, - "CLAIM": 1, - "DAMAGES": 1, - "OTHER": 2, - "LIABILITY": 1, - "WHETHER": 1, - "AN": 1, - "ACTION": 1, - "CONTRACT": 1, - "TORT": 1, - "OTHERWISE": 1, - "ARISING": 1, - "FROM": 1, - "OUT": 1, - "CONNECTION": 1, - "WITH": 1, - "USE": 1, - "DEALINGS": 1, - "SOFTWARE.": 1, - "*/": 1, - "-": 978, - "CLASS": 2, - "CL_CSV_PARSER": 6, - "DEFINITION": 2, - "class": 2, - "cl_csv_parser": 2, - "definition": 1, - "public": 3, - "inheriting": 1, + "Mercury": { + "%": 416, + "-": 6967, + "module": 46, + "store.": 1, + "interface.": 13, + "import_module": 126, + "io.": 8, + "typeclass": 1, + "store": 52, + "(": 3351, + "T": 52, + ")": 3351, + "where": 8, + "[": 203, + "]": 203, + ".": 610, + "type": 57, + "S": 133, + "instance": 4, + "io.state": 3, + "some": 4, + "pred": 255, + "store.init": 2, + "uo": 58, + "is": 246, + "det.": 184, + "generic_mutvar": 15, + "io_mutvar": 1, + "store_mutvar": 1, + "store.new_mutvar": 1, + "in": 510, + "out": 337, + "di": 54, + "det": 21, + "<": 14, + "store.copy_mutvar": 1, + "store.get_mutvar": 1, + "store.set_mutvar": 1, + "<=>": 5, + "new_cyclic_mutvar": 2, + "Func": 4, + "Mutvar": 23, + "Create": 1, + "a": 10, + "new": 25, + "mutable": 3, + "variable": 1, + "whose": 2, + "value": 16, + "initialized": 2, + "with": 5, + "the": 27, + "returned": 1, "from": 1, - "cl_object": 1, - "final": 1, - "create": 1, - ".": 9, - "section.": 3, - "not": 3, - "include": 3, - "other": 3, - "source": 3, - "here": 3, - "type": 11, - "pools": 1, - "abap": 1, - "methods": 2, - "constructor": 2, - "importing": 1, - "delegate": 1, - "ref": 1, - "if_csv_parser_delegate": 1, - "csvstring": 1, - "string": 1, - "separator": 1, - "skip_first_line": 1, - "abap_bool": 2, - "parse": 2, - "raising": 1, - "cx_csv_parse_error": 2, - "protected": 1, - "private": 1, - "constants": 1, - "_textindicator": 1, - "value": 2, - "IMPLEMENTATION": 2, - "implementation.": 1, - "": 2, - "+": 9, - "|": 7, - "Instance": 2, - "Public": 1, - "Method": 2, - "CONSTRUCTOR": 1, - "[": 5, - "]": 5, - "DELEGATE": 1, - "TYPE": 5, - "REF": 1, - "IF_CSV_PARSER_DELEGATE": 1, - "CSVSTRING": 1, - "STRING": 1, - "SEPARATOR": 1, - "C": 1, - "SKIP_FIRST_LINE": 1, - "ABAP_BOOL": 1, - "": 2, - "method": 2, - "constructor.": 1, - "super": 1, - "_delegate": 1, - "delegate.": 1, - "_csvstring": 2, - "csvstring.": 1, - "_separator": 1, - "separator.": 1, - "_skip_first_line": 1, - "skip_first_line.": 1, - "endmethod.": 2, - "Get": 1, - "lines": 4, - "data": 3, - "is_first_line": 1, - "abap_true.": 2, - "standard": 2, - "table": 3, - "string.": 3, - "_lines": 1, - "field": 1, - "symbols": 1, - "": 3, - "loop": 1, - "at": 2, - "assigning": 1, - "Parse": 1, - "line": 1, - "values": 2, - "_parse_line": 2, - "Private": 1, - "_LINES": 1, + "specified": 1, + "function": 3, + "The": 2, + "argument": 6, + "passed": 2, + "to": 16, + "mutvar": 6, + "itself": 4, + "has": 4, + "not": 7, + "yet": 1, + "been": 1, + "this": 4, + "safe": 2, + "because": 1, + "does": 3, + "get": 2, + "so": 3, + "it": 1, + "can": 1, + "t": 5, + "examine": 1, + "uninitialized": 1, + "This": 2, + "predicate": 1, + "useful": 1, + "for": 8, + "creating": 1, + "self": 1, + "referential": 1, + "values": 1, + "such": 2, + "as": 5, + "circular": 1, + "linked": 1, + "lists": 1, + "For": 1, + "example": 1, + "clist": 2, + "node": 1, + "store.new_cyclic_mutvar": 1, + "func": 24, + "generic_ref": 20, + "io_ref": 1, + "store_ref": 1, + "store.new_ref": 1, + "store.ref_functor": 1, + "string": 115, + "int": 129, + "store.arg_ref": 1, + "ArgT": 4, + "store.new_arg_ref": 3, + "store.set_ref": 1, + "store.set_ref_value": 1, + "store.copy_ref_value": 1, + "store.extract_ref_value": 1, + "Nasty": 1, + "performance": 2, + "hacks": 1, + "WARNING": 1, + "use": 1, + "of": 10, + "these": 1, + "procedures": 2, + "dangerous": 1, + "Use": 1, + "them": 1, + "only": 4, + "last": 1, + "resort": 1, + "if": 15, + "critical": 1, + "and": 6, + "profiling": 5, + "shows": 1, + "that": 2, + "using": 1, + "versions": 1, + "bottleneck": 1, + "These": 1, + "may": 1, + "vanish": 1, + "future": 1, + "version": 3, + "Mercury": 1, + "unsafe_arg_ref": 1, + "same": 2, + "arg_ref": 12, + "unsafe_new_arg_ref": 1, + "new_arg_ref": 1, + "except": 1, + "they": 4, + "doesn": 1, + "check": 1, + "errors": 1, + "don": 3, + "work": 3, + "no_tag": 1, + "types": 3, + "exactly": 2, + "one": 2, + "functor": 2, + "which": 2, + "arguments": 2, + "occupy": 1, + "word": 2, + "other": 1, + "functors.": 1, + "store.unsafe_arg_ref": 1, + "store.unsafe_new_arg_ref": 1, + "implementation": 1, + "deconstruct": 2, + "require": 1, + "io": 6, + "state": 3, + "just": 1, + "dummy": 2, + "no": 365, + "real": 1, + "representation": 1, + "pragma": 41, + "foreign_type": 10, + "C": 34, + "MR_Word": 24, + "can_pass_as_mercury_type": 5, + "equality": 5, + "store_equal": 7, + "comparison": 5, + "store_compare": 7, + "IL": 2, + "int32": 1, + "Java": 12, + "Erlang": 3, + "semidet": 2, + "_": 149, + "error": 7, + "attempt": 2, + "unify": 21, + "two": 2, + "stores": 2, + "comparison_result": 1, + "compare": 1, + "Mutvars": 1, + "references": 1, + "are": 1, + "each": 1, + "represented": 1, + "pointer": 1, + "single": 1, + "on": 1, + "heap": 1, + "private_builtin.ref": 2, + "ref": 2, + "store.do_init": 6, + "foreign_proc": 28, + "_S0": 16, + "will_not_call_mercury": 28, + "promise_pure": 30, + "will_not_modify_trail": 7, + "new_mutvar": 5, + "Val": 45, + "S0": 23, + "get_mutvar": 5, + "set_mutvar": 5, + "_S": 12, + "copy_mutvar": 1, + "Copy": 2, + "Value": 4, + "store.unsafe_new_uninitialized_mutvar": 1, + "unsafe_new_uninitialized_mutvar": 4, + "MR_offset_incr_hp_msg": 5, + "MR_SIZE_SLOT_SIZE": 10, + "1": 5, + "MR_ALLOC_ID": 5, + "2": 2, + "MR_define_size_slot": 5, + "0": 2, + "object": 21, + "MutVar": 4, + "Store": 5, + "apply": 1, + "Ref": 41, + "foreign_code": 2, + "public": 17, + "class": 4, + "Object": 9, + "referenced": 4, + "obj": 7, + "Specific": 2, + "field": 20, + "or": 2, + "null": 8, + "specify": 2, + "XXX": 3, + "GetFields": 2, + "return": 6, + "fields": 3, + "any": 2, + "particular": 2, + "order": 2, + "really": 2, + "usable": 2, + "System": 1, + "Reflection": 1, + "FieldInfo": 1, + "Constructors": 2, + "init": 8, + "num": 11, + "setField": 4, + "Set": 2, + "according": 2, + "given": 2, + "index": 2, + "void": 4, + "GetType": 1, + "Return": 6, + "reference": 4, + "getValue": 4, + "else": 8, + "GetValue": 1, + "Update": 2, + "setValue": 2, + "SetValue": 1, + "java": 35, + "static": 1, + "lang": 28, + "getDeclaredFields": 2, + "reflect": 1, + "Field": 5, + "try": 3, + "getClass": 1, + "catch": 11, + "SecurityException": 1, + "se": 1, + "throw": 11, + "RuntimeException": 11, + "Security": 1, + "manager": 1, + "denied": 1, + "access": 3, + "ArrayIndexOutOfBoundsException": 1, + "e": 13, + "No": 1, + "Exception": 3, + "Unable": 3, + "set": 16, + "getMessage": 3, + "IllegalAccessException": 2, + "inaccessible": 2, + "IllegalArgumentException": 2, + "mismatch": 2, + "NullPointerException": 2, + "new_ref": 4, + "ets": 3, + "insert": 1, + "copy_ref_value": 1, + "unsafe_ref_value": 6, + "store.unsafe_ref_value": 1, + "lookup": 1, + "ref_functor": 1, + "Functor": 6, + "Arity": 5, + "canonicalize": 1, + "foreign_decl": 1, + "include": 4, + "mercury_type_info": 1, + "h": 4, + "mercury_heap": 1, + "mercury_misc": 1, + "MR_fatal_error": 5, + "mercury_deconstruct": 1, + "MR_arg": 3, + "ArgNum": 7, + "ArgRef": 22, + "may_not_duplicate": 1, + "MR_TypeInfo": 10, + "type_info": 8, + "arg_type_info": 6, + "exp_arg_type_info": 6, + "const": 10, + "MR_DuArgLocn": 2, + "arg_locn": 9, + "TypeInfo_for_T": 2, + "TypeInfo_for_ArgT": 2, + "MR_save_transient_registers": 2, + "MR_NONCANON_ABORT": 2, + "number": 2, + "range": 2, + "MR_compare_type_info": 2, + "MR_COMPARE_EQUAL": 2, + "wrong": 2, + "MR_restore_transient_registers": 2, + "NULL": 2, + "MR_arg_bits": 2, + "{": 27, + "+": 127, + "store.ref/2": 3, + ";": 913, + "*": 20, + "MR_arg_value": 2, + "}": 28, + "C#": 6, + "store.Ref": 8, + "Ref.getValue": 6, + "*arg_ref": 1, + "*arg_locn": 1, + "&": 7, + "&&": 1, + "ValRef": 1, + "Ref.setValue": 3, + "ValRef.getValue": 2, + "*Ptr": 2, + "Ptr": 4, + "MR_strip_tag": 2, + "Arg": 6, + "hello.": 1, + "main": 15, + "implementation.": 12, + "IO": 4, + "io.write_string": 1, + "libs.options.": 3, + "char.": 1, + "getopt_io.": 1, + "set.": 4, + "short_option": 36, + "char": 10, + "option": 9, + "semidet.": 10, + "long_option": 241, + "option_defaults": 2, + "option_data": 2, + "nondet.": 1, + "special_handler": 1, + "special_data": 1, + "option_table": 5, + "maybe_option_table": 3, + "inconsequential_options": 1, + "options_help": 1, + "option_table_add_mercury_library_directory": 1, + "option_table.": 2, + "option_table_add_search_library_files_directory": 1, + "quote_arg": 1, + "string.": 7, + "inhibit_warnings": 4, + "inhibit_accumulator_warnings": 3, + "halt_at_warn": 3, + "halt_at_syntax_errors": 3, + "halt_at_auto_parallel_failure": 3, + "warn_singleton_vars": 3, + "warn_overlapping_scopes": 3, + "warn_det_decls_too_lax": 3, + "warn_inferred_erroneous": 3, + "warn_nothing_exported": 3, + "warn_unused_args": 3, + "warn_interface_imports": 3, + "warn_missing_opt_files": 3, + "warn_missing_trans_opt_files": 3, + "warn_missing_trans_opt_deps": 3, + "warn_non_contiguous_clauses": 3, + "warn_non_contiguous_foreign_procs": 3, + "warn_non_stratification": 3, + "warn_unification_cannot_succeed": 3, + "warn_simple_code": 3, + "warn_duplicate_calls": 3, + "warn_missing_module_name": 3, + "warn_wrong_module_name": 3, + "warn_smart_recompilation": 3, + "warn_undefined_options_variables": 3, + "warn_non_tail_recursion": 3, + "warn_target_code": 3, + "warn_up_to_date": 3, + "warn_stubs": 3, + "warn_dead_procs": 3, + "warn_table_with_inline": 3, + "warn_non_term_special_preds": 3, + "warn_known_bad_format_calls": 3, + "warn_unknown_format_calls": 3, + "warn_obsolete": 3, + "warn_insts_without_matching_type": 3, + "warn_unused_imports": 3, + "inform_ite_instead_of_switch": 3, + "warn_unresolved_polymorphism": 3, + "warn_suspicious_foreign_procs": 3, + "warn_state_var_shadowing": 3, + "inform_inferred": 3, + "inform_inferred_types": 3, + "inform_inferred_modes": 3, + "verbose": 4, + "very_verbose": 4, + "verbose_errors": 4, + "verbose_recompilation": 3, + "find_all_recompilation_reasons": 3, + "verbose_make": 3, + "verbose_commands": 3, + "output_compile_error_lines": 3, + "report_cmd_line_args": 3, + "report_cmd_line_args_in_doterr": 3, + "statistics": 4, + "detailed_statistics": 3, + "proc_size_statistics": 3, + "debug_types": 4, + "debug_modes": 4, + "debug_modes_statistics": 3, + "debug_modes_minimal": 3, + "debug_modes_verbose": 3, + "debug_modes_pred_id": 3, + "debug_dep_par_conj": 3, + "debug_det": 4, + "debug_code_gen_pred_id": 3, + "debug_opt": 3, + "debug_term": 4, + "term": 10, + "constraint": 2, + "termination": 3, + "analysis": 1, + "debug_opt_pred_id": 3, + "debug_opt_pred_name": 3, + "debug_pd": 3, + "pd": 1, + "partial": 1, + "deduction/deforestation": 1, + "debug_il_asm": 3, + "il_asm": 1, + "generation": 1, + "via": 1, + "asm": 1, + "debug_liveness": 3, + "debug_stack_opt": 3, + "debug_make": 3, + "debug_closure": 3, + "debug_trail_usage": 3, + "debug_mode_constraints": 3, + "debug_intermodule_analysis": 3, + "debug_mm_tabling_analysis": 3, + "debug_indirect_reuse": 3, + "debug_type_rep": 3, + "make_short_interface": 4, + "make_interface": 5, + "make_private_interface": 4, + "make_optimization_interface": 5, + "make_transitive_opt_interface": 5, + "make_analysis_registry": 3, + "make_xml_documentation": 5, + "generate_source_file_mapping": 4, + "generate_dependency_file": 3, + "generate_dependencies": 4, + "generate_module_order": 3, + "generate_standalone_interface": 3, + "convert_to_mercury": 6, + "typecheck_only": 4, + "errorcheck_only": 4, + "target_code_only": 10, + "compile_only": 4, + "compile_to_shared_lib": 3, + "output_grade_string": 3, + "output_link_command": 3, + "output_shared_lib_link_command": 3, + "output_libgrades": 3, + "output_cc": 3, + "output_c_compiler_type": 4, + "output_csharp_compiler_type": 3, + "output_cflags": 3, + "output_library_link_flags": 3, + "output_grade_defines": 3, + "output_c_include_directory_flags": 4, + "smart_recompilation": 3, + "generate_item_version_numbers": 2, + "generate_mmc_make_module_dependencies": 4, + "assume_gmake": 3, + "trace_level": 4, + "trace_optimized": 4, + "trace_prof": 3, + "trace_table_io": 3, + "trace_table_io_only_retry": 3, + "trace_table_io_states": 3, + "trace_table_io_require": 3, + "trace_table_io_all": 3, + "trace_goal_flags": 3, + "prof_optimized": 4, + "exec_trace_tail_rec": 3, + "suppress_trace": 3, + "force_disable_tracing": 3, + "delay_death": 3, + "delay_death_max_vars": 3, + "stack_trace_higher_order": 3, + "force_disable_ssdebug": 3, + "generate_bytecode": 3, + "line_numbers": 4, + "auto_comments": 4, + "frameopt_comments": 3, + "max_error_line_width": 3, + "show_dependency_graph": 3, + "imports_graph": 3, + "dump_trace_counts": 3, + "dump_hlds": 5, + "dump_hlds_pred_id": 3, + "dump_hlds_pred_name": 3, + "dump_hlds_alias": 4, + "dump_hlds_options": 3, + "dump_hlds_inst_limit": 3, + "dump_hlds_file_suffix": 3, + "dump_same_hlds": 3, + "dump_mlds": 4, + "verbose_dump_mlds": 4, + "mode_constraints": 3, + "simple_mode_constraints": 3, + "prop_mode_constraints": 4, + "benchmark_modes": 3, + "benchmark_modes_repeat": 3, + "sign_assembly": 3, + "separate_assemblies": 3, + "reorder_conj": 3, + "reorder_disj": 3, + "fully_strict": 3, + "strict_sequential": 3, + "allow_stubs": 3, + "infer_types": 3, + "infer_modes": 3, + "infer_det": 4, + "infer_all": 3, + "type_inference_iteration_limit": 3, + "mode_inference_iteration_limit": 3, + "event_set_file_name": 3, + "grade": 4, + "target": 14, + "il": 5, + "il_only": 4, + "compile_to_c": 4, + "c": 1, + "java_only": 4, + "csharp": 6, + "csharp_only": 4, + "x86_64": 6, + "x86_64_only": 4, + "erlang": 6, + "erlang_only": 4, + "exec_trace": 3, + "decl_debug": 3, + "profile_time": 5, + "profile_calls": 6, + "time_profiling": 3, + "memory_profiling": 3, + "profile_mem": 1, + "deep_profiling": 3, + "profile_deep": 4, + "profile_memory": 3, + "use_activation_counts": 3, + "pre_prof_transforms_simplify": 3, + "pre_implicit_parallelism_simplify": 3, + "coverage_profiling": 3, + "coverage_profiling_via_calls": 3, + "coverage_profiling_static": 3, + "profile_deep_coverage_after_goal": 3, + "profile_deep_coverage_branch_ite": 3, + "profile_deep_coverage_branch_switch": 3, + "profile_deep_coverage_branch_disj": 3, + "profile_deep_coverage_use_portcounts": 3, + "profile_deep_coverage_use_trivial": 2, + "profile_for_feedback": 2, + "use_zeroing_for_ho_cycles": 2, + "use_lots_of_ho_specialization": 2, + "deep_profile_tail_recursion": 2, + "record_term_sizes_as_words": 2, + "record_term_sizes_as_cells": 2, + "experimental_complexity": 2, + "gc": 2, + "parallel": 3, + "threadscope": 2, + "use_trail": 3, + "trail_segments": 2, + "use_minimal_model_stack_copy": 2, + "use_minimal_model_own_stacks": 2, + "minimal_model_debug": 2, + "single_prec_float": 2, + "type_layout": 2, + "maybe_thread_safe_opt": 2, + "extend_stacks_when_needed": 2, + "stack_segments": 2, + "use_regions": 2, + "use_alloc_regions": 2, + "use_regions_debug": 2, + "use_regions_profiling": 2, + "source_to_source_debug": 5, + "ssdb_trace_level": 3, + "link_ssdb_libs": 4, + "tags": 2, + "num_tag_bits": 2, + "num_reserved_addresses": 2, + "num_reserved_objects": 2, + "bits_per_word": 2, + "bytes_per_word": 2, + "conf_low_tag_bits": 2, + "unboxed_float": 3, + "unboxed_enums": 2, + "unboxed_no_tag_types": 2, + "sync_term_size": 2, + "words": 1, + "gcc_non_local_gotos": 3, + "gcc_global_registers": 2, + "asm_labels": 3, + "pic_reg": 2, + "use_float_registers": 5, + "highlevel_code": 3, + "highlevel_data": 2, + "gcc_nested_functions": 2, + "det_copy_out": 2, + "nondet_copy_out": 2, + "put_commit_in_own_func": 2, + "put_nondet_env_on_heap": 2, + "verifiable_code": 2, + "il_refany_fields": 2, + "il_funcptr_types": 2, + "il_byref_tailcalls": 2, + "backend_foreign_languages": 2, + "stack_trace": 2, + "basic_stack_layout": 2, + "agc_stack_layout": 2, + "procid_stack_layout": 2, + "trace_stack_layout": 2, + "body_typeinfo_liveness": 4, + "can_compare_constants_as_ints": 2, + "pretest_equality_cast_pointers": 2, + "can_compare_compound_values": 2, + "lexically_order_constructors": 2, + "mutable_always_boxed": 2, + "delay_partial_instantiations": 2, + "allow_defn_of_builtins": 2, + "special_preds": 2, + "type_ctor_info": 2, + "type_ctor_layout": 2, + "type_ctor_functors": 2, + "new_type_class_rtti": 2, + "rtti_line_numbers": 2, + "disable_minimal_model_stack_copy_pneg": 2, + "disable_minimal_model_stack_copy_cut": 2, + "use_minimal_model_stack_copy_pneg": 2, + "use_minimal_model_stack_copy_cut": 3, + "disable_trail_ops": 3, + "size_region_ite_fixed": 2, + "size_region_disj_fixed": 2, + "size_region_semi_disj_fixed": 1, + "size_region_commit_fixed": 2, + "size_region_ite_protect": 2, + "size_region_ite_snapshot": 2, + "size_region_semi_disj_protect": 2, + "size_region_disj_snapshot": 2, + "size_region_commit_entry": 2, + "solver_type_auto_init": 2, + "allow_multi_arm_switches": 2, + "type_check_constraints": 2, + "allow_argument_packing": 2, + "low_level_debug": 2, + "table_debug": 2, + "trad_passes": 2, + "parallel_liveness": 2, + "parallel_code_gen": 2, + "polymorphism": 2, + "reclaim_heap_on_failure": 2, + "reclaim_heap_on_semidet_failure": 2, + "reclaim_heap_on_nondet_failure": 2, + "have_delay_slot": 2, + "num_real_r_regs": 2, + "num_real_f_regs": 2, + "num_real_r_temps": 2, + "num_real_f_temps": 2, + "max_jump_table_size": 2, + "max_specialized_do_call_closure": 2, + "max_specialized_do_call_class_method": 2, + "compare_specialization": 2, + "should_pretest_equality": 2, + "fact_table_max_array_size": 2, + "fact_table_hash_percent_full": 2, + "gcc_local_labels": 2, + "prefer_switch": 2, + "opt_no_return_calls": 3, + "opt_level": 3, + "opt_level_number": 2, + "opt_space": 2, + "Default": 3, + "optimize": 3, + "time.": 1, + "intermodule_optimization": 2, + "read_opt_files_transitively": 2, + "use_opt_files": 2, + "use_trans_opt_files": 2, + "transitive_optimization": 2, + "intermodule_analysis": 2, + "analysis_repeat": 2, + "analysis_file_cache": 2, + "allow_inlining": 2, + "inlining": 2, + "inline_simple": 2, + "inline_builtins": 2, + "inline_single_use": 2, + "inline_call_cost": 2, + "inline_compound_threshold": 2, + "inline_simple_threshold": 2, + "inline_vars_threshold": 2, + "intermod_inline_simple_threshold": 2, + "from_ground_term_threshold": 2, + "enable_const_struct": 2, + "common_struct": 2, + "common_struct_preds": 2, + "common_goal": 2, + "constraint_propagation": 2, + "local_constraint_propagation": 2, + "optimize_unused_args": 2, + "intermod_unused_args": 2, + "optimize_higher_order": 2, + "higher_order_size_limit": 2, + "higher_order_arg_limit": 2, + "unneeded_code": 2, + "unneeded_code_copy_limit": 2, + "unneeded_code_debug": 2, + "unneeded_code_debug_pred_name": 2, + "type_specialization": 2, + "user_guided_type_specialization": 2, + "introduce_accumulators": 2, + "optimize_constructor_last_call_accumulator": 2, + "optimize_constructor_last_call_null": 3, + "optimize_constructor_last_call": 2, + "optimize_duplicate_calls": 2, + "constant_propagation": 2, + "excess_assign": 2, + "optimize_format_calls": 2, + "optimize_saved_vars_const": 2, + "optimize_saved_vars_cell": 2, + "optimize_saved_vars_cell_loop": 2, + "optimize_saved_vars_cell_full_path": 2, + "optimize_saved_vars_cell_on_stack": 2, + "optimize_saved_vars_cell_candidate_headvars": 2, + "optimize_saved_vars_cell_cv_store_cost": 2, + "optimize_saved_vars_cell_cv_load_cost": 2, + "optimize_saved_vars_cell_fv_store_cost": 2, + "optimize_saved_vars_cell_fv_load_cost": 2, + "optimize_saved_vars_cell_op_ratio": 2, + "optimize_saved_vars_cell_node_ratio": 2, + "optimize_saved_vars_cell_all_path_node_ratio": 2, + "optimize_saved_vars_cell_include_all_candidates": 2, + "optimize_saved_vars": 2, + "loop_invariants": 2, + "delay_construct": 2, + "follow_code": 2, + "optimize_dead_procs": 2, + "deforestation": 2, + "deforestation_depth_limit": 2, + "deforestation_cost_factor": 2, + "deforestation_vars_threshold": 2, + "deforestation_size_threshold": 2, + "analyse_trail_usage": 2, + "optimize_trail_usage": 3, + "optimize_region_ops": 3, + "analyse_mm_tabling": 2, + "untuple": 2, + "tuple": 2, + "tuple_trace_counts_file": 2, + "tuple_costs_ratio": 2, + "tuple_min_args": 2, + "inline_par_builtins": 2, + "always_specialize_in_dep_par_conjs": 2, + "allow_some_paths_only_waits": 2, + "region_analysis": 3, + "structure_sharing_analysis": 2, + "structure_sharing_widening": 2, + "structure_reuse_analysis": 2, + "structure_reuse_constraint": 2, + "structure_reuse_constraint_arg": 2, + "structure_reuse_max_conditions": 2, + "structure_reuse_repeat": 2, + "structure_reuse_free_cells": 2, + "termination_check": 2, + "verbose_check_termination": 2, + "termination_single_args": 2, + "termination_norm": 2, + "termination_error_limit": 2, + "termination_path_limit": 2, + "termination2": 2, + "check_termination2": 2, + "verbose_check_termination2": 2, + "termination2_norm": 2, + "widening_limit": 2, + "arg_size_analysis_only": 2, + "propagate_failure_constrs": 2, + "term2_maximum_matrix_size": 2, + "analyse_exceptions": 2, + "analyse_closures": 2, + "smart_indexing": 2, + "dense_switch_req_density": 2, + "lookup_switch_req_density": 2, + "dense_switch_size": 2, + "lookup_switch_size": 2, + "string_hash_switch_size": 2, + "string_binary_switch_size": 2, + "tag_switch_size": 2, + "try_switch_size": 2, + "binary_switch_size": 2, + "switch_single_rec_base_first": 2, + "switch_multi_rec_base_first": 2, + "static_ground_cells": 3, + "static_ground_floats": 3, + "static_code_addresses": 3, + "use_atomic_cells": 2, + "middle_rec": 2, + "simple_neg": 2, + "allow_hijacks": 3, + "optimize_tailcalls": 2, + "optimize_initializations": 2, + "eliminate_local_vars": 2, + "generate_trail_ops_inline": 2, + "common_data": 2, + "common_layout_data": 2, + "Also": 1, + "used": 2, + "MLDS": 2, + "optimizations.": 1, + "optimize_peep": 2, + "optimize_peep_mkword": 2, + "optimize_jumps": 2, + "optimize_fulljumps": 2, + "pessimize_tailcalls": 2, + "checked_nondet_tailcalls": 2, + "use_local_vars": 2, + "local_var_access_threshold": 2, + "standardize_labels": 2, + "optimize_labels": 2, + "optimize_dups": 2, + "optimize_proc_dups": 2, + "optimize_frames": 2, + "optimize_delay_slot": 2, + "optimize_reassign": 2, + "optimize_repeat": 2, + "layout_compression_limit": 2, + "use_macro_for_redo_fail": 2, + "emit_c_loops": 2, + "procs_per_c_function": 3, + "everything_in_one_c_function": 2, + "local_thread_engine_base": 2, + "erlang_switch_on_strings_as_atoms": 2, + "target_debug": 2, + "cc": 2, + "cflags": 2, + "quoted_cflag": 2, + "c_include_directory": 2, + "c_optimize": 2, + "ansi_c": 2, + "inline_alloc": 2, + "gcc_flags": 2, + "quoted_gcc_flag": 2, + "clang_flags": 2, + "quoted_clang_flag": 2, + "msvc_flags": 2, + "quoted_msvc_flag": 2, + "cflags_for_warnings": 2, + "cflags_for_optimization": 2, + "cflags_for_ansi": 2, + "cflags_for_regs": 2, + "cflags_for_gotos": 2, + "cflags_for_threads": 2, + "cflags_for_debug": 2, + "cflags_for_pic": 2, + "c_flag_to_name_object_file": 2, + "object_file_extension": 2, + "pic_object_file_extension": 2, + "link_with_pic_object_file_extension": 2, + "c_compiler_type": 2, + "csharp_compiler_type": 2, + "java_compiler": 2, + "java_interpreter": 2, + "java_flags": 2, + "quoted_java_flag": 2, + "java_classpath": 2, + "java_object_file_extension": 2, + "il_assembler": 2, + "ilasm_flags": 2, + "quoted_ilasm_flag": 2, + "dotnet_library_version": 2, + "support_ms_clr": 2, + "support_rotor_clr": 2, + "csharp_compiler": 2, + "csharp_flags": 2, + "quoted_csharp_flag": 2, + "cli_interpreter": 2, + "erlang_compiler": 2, + "erlang_interpreter": 2, + "erlang_flags": 2, + "quoted_erlang_flag": 2, + "erlang_include_directory": 2, + "erlang_object_file_extension": 2, + "erlang_native_code": 2, + "erlang_inhibit_trivial_warnings": 2, + "output_file_name": 3, + "ld_flags": 2, + "quoted_ld_flag": 2, + "ld_libflags": 2, + "quoted_ld_libflag": 2, + "link_library_directories": 3, + "runtime_link_library_directories": 3, + "link_libraries": 3, + "link_objects": 2, + "mercury_library_directories": 2, + "mercury_library_directory_special": 2, + "search_library_files_directories": 2, + "search_library_files_directory_special": 2, + "mercury_libraries": 2, + "mercury_library_special": 2, + "mercury_standard_library_directory": 2, + "mercury_standard_library_directory_special": 2, + "init_file_directories": 2, + "init_files": 2, + "trace_init_files": 2, + "linkage": 2, + "linkage_special": 2, + "mercury_linkage": 2, + "mercury_linkage_special": 2, + "strip": 2, + "demangle": 2, + "allow_undefined": 2, + "use_readline": 2, + "runtime_flags": 2, + "extra_initialization_functions": 2, + "frameworks": 2, + "framework_directories": 3, + "shared_library_extension": 2, + "library_extension": 2, + "executable_file_extension": 2, + "link_executable_command": 2, + "link_shared_lib_command": 2, + "create_archive_command": 2, + "create_archive_command_output_flag": 2, + "create_archive_command_flags": 2, + "ranlib_command": 2, + "ranlib_flags": 2, + "mkinit_command": 2, + "mkinit_erl_command": 2, + "demangle_command": 2, + "filtercc_command": 2, + "trace_libs": 2, + "thread_libs": 2, + "hwloc_libs": 2, + "hwloc_static_libs": 2, + "shared_libs": 2, + "math_lib": 2, + "readline_libs": 2, + "linker_opt_separator": 2, + "linker_thread_flags": 2, + "shlib_linker_thread_flags": 2, + "linker_static_flags": 2, + "linker_strip_flag": 2, + "linker_link_lib_flag": 2, + "linker_link_lib_suffix": 2, + "shlib_linker_link_lib_flag": 2, + "shlib_linker_link_lib_suffix": 2, + "linker_debug_flags": 2, + "shlib_linker_debug_flags": 2, + "linker_trace_flags": 2, + "shlib_linker_trace_flags": 2, + "linker_path_flag": 2, + "linker_rpath_flag": 2, + "linker_rpath_separator": 2, + "shlib_linker_rpath_flag": 2, + "shlib_linker_rpath_separator": 2, + "linker_allow_undefined_flag": 2, + "linker_error_undefined_flag": 2, + "shlib_linker_use_install_name": 2, + "shlib_linker_install_name_flag": 2, + "shlib_linker_install_name_path": 2, + "java_archive_command": 2, + "make": 3, + "keep_going": 3, + "rebuild": 3, + "jobs": 3, + "track_flags": 2, + "invoked_by_mmc_make": 2, + "extra_init_command": 2, + "pre_link_command": 2, + "install_prefix": 2, + "use_symlinks": 2, + "mercury_configuration_directory": 2, + "mercury_configuration_directory_special": 2, + "install_command": 2, + "install_command_dir_option": 2, + "libgrades": 2, + "libgrades_include_components": 2, + "libgrades_exclude_components": 2, + "lib_linkages": 2, + "flags_file": 2, + "options_files": 2, + "config_file": 2, + "options_search_directories": 2, + "use_subdirs": 2, + "use_grade_subdirs": 2, + "search_directories": 3, + "intermod_directories": 2, + "use_search_directories_for_intermod": 2, + "libgrade_install_check": 2, + "order_make_by_timestamp": 2, + "show_make_times": 2, + "extra_library_header": 2, + "restricted_command_line": 2, + "env_type": 2, + "host_env_type": 2, + "target_env_type": 2, + "filenames_from_stdin": 2, + "typecheck_ambiguity_warn_limit": 2, + "typecheck_ambiguity_error_limit": 2, + "help": 4, + "fullarch": 2, + "cross_compiling": 2, + "local_module_id": 2, + "analysis_file_cache_dir": 2, + "compiler_sufficiently_recent": 2, + "experiment": 2, + "ignore_par_conjunctions": 2, + "control_granularity": 2, + "distance_granularity": 2, + "implicit_parallelism": 2, + "feedback_file": 2, + "par_loop_control": 2, + "par_loop_control_preserve_tail_recursion.": 1, + "libs.handle_options.": 1, + "assoc_list.": 3, + "bool.": 4, + "dir.": 1, + "int.": 4, + "list.": 4, + "map.": 3, + "maybe.": 3, + "pair.": 3, + "require.": 6, + "option_category": 2, + "warning_option": 2, + "verbosity_option": 2, + "output_option": 2, + "aux_output_option": 2, + "language_semantics_option": 2, + "compilation_model_option": 2, + "internal_use_option": 2, + "code_gen_option": 2, + "special_optimization_option": 2, + "optimization_option": 2, + "target_code_compilation_option": 2, + "link_option": 2, + "build_system_option": 2, + "miscellaneous_option.": 1, + "Option": 2, + "option_defaults_2": 18, + "_Category": 1, + "OptionsList": 2, + "list.member": 2, + "list": 82, + "pair": 7, + "mode": 8, + "multi.": 1, + "bool_special": 7, + "bool": 406, + "yes": 144, + "should": 1, + "be": 1, + "accumulating": 49, + "maybe_string": 6, + "special": 17, + "string_special": 18, + "int_special": 1, + "maybe_string_special": 1, + "file_special": 1, + "miscellaneous_option": 1, + "par_loop_control_preserve_tail_recursion": 1, + "rot13_concise.": 1, + "alphabet": 3, + "cycle": 4, + "rot_n": 2, + "N": 6, + "Char": 12, + "RotChar": 8, + "char_to_string": 1, + "CharString": 2, + "sub_string_search": 1, + "Index": 3, + "then": 3, + "NewIndex": 2, + "mod": 1, + "//": 2, + "index_det": 1, + "rot13": 11, + "read_char": 1, + "Res": 8, + "ok": 3, + "print": 3, + "eof": 6, + "ErrorCode": 4, + "error_message": 1, + "ErrorMessage": 4, + "stderr_stream": 1, + "StdErr": 8, + "nl": 1, + "rot13_verbose.": 1, + "io__state": 4, + "rot13a/2": 1, + "A": 14, + "table": 1, + "map": 7, + "alphabetic": 2, + "characters": 1, + "their": 1, + "equivalents": 1, + "fails": 1, + "input": 1, + "rot13a": 55, + "rot13/2": 1, + "Applies": 1, + "algorithm": 1, + "character.": 1, + "TmpChar": 2, + "io__read_char": 1, + "io__write_char": 1, + "io__error_message": 2, + "io__stderr_stream": 1, + "io__write_string": 2, + "io__nl": 1, + "check_hlds.polymorphism.": 1, + "hlds.": 1, + "hlds.hlds_goal.": 2, + "hlds.hlds_module.": 2, + "hlds.hlds_pred.": 2, + "hlds.hlds_rtti.": 2, + "mdbcomp.": 1, + "mdbcomp.prim_data.": 3, + "parse_tree.": 1, + "parse_tree.prog_data.": 2, + "term.": 3, + "polymorphism_process_module": 2, + "module_info": 26, + "polymorphism_process_generated_pred": 2, + "pred_id": 15, + "unification_typeinfos_rtti_varmaps": 2, + "mer_type": 21, + "rtti_varmaps": 9, + "unification": 8, + "hlds_goal_info": 22, + "polymorphism_process_new_call": 2, + "pred_info": 20, + "proc_info": 11, + "proc_id": 12, + "prog_var": 58, + "builtin_state": 1, + "maybe": 20, + "call_unify_context": 2, + "sym_name": 3, + "hlds_goal": 45, + "poly_info": 45, + "polymorphism_make_type_info_vars": 1, + "term.context": 3, + "polymorphism_make_type_info_var": 1, + "int_or_var": 2, + "iov_int": 1, + "iov_var": 1, + "gen_extract_type_info": 1, + "tvar": 10, + "kind": 1, + "prog_varset": 14, + "vartypes": 12, + "poly_info.": 1, + "create_poly_info": 1, + "poly_info_extract": 1, + "build_typeclass_info_type": 3, + "prog_constraint": 4, + "type_is_typeclass_info": 1, + "type_is_type_info_or_ctor_type": 1, + "build_type_info_type": 1, + "get_special_proc": 1, + "special_pred_id": 2, + "get_special_proc_det": 1, + "convert_pred_to_lambda_goal": 3, + "purity": 1, + "lambda_eval_method": 1, + "unify_context": 3, + "context": 1, + "unify_rhs": 4, + "fix_undetermined_mode_lambda_goal": 2, + "rhs_lambda_goal": 7, + "init_type_info_var": 1, + "init_const_type_ctor_info_var": 1, + "type_ctor": 1, + "cons_id": 2, + "type_info_kind": 2, + "type_ctor_info.": 1, + "new_type_info_var_raw": 1, + "check_hlds.clause_to_proc.": 1, + "check_hlds.mode_util.": 1, + "check_hlds.type_util.": 2, + "hlds.from_ground_term_util.": 1, + "hlds.const_struct.": 1, + "hlds.goal_util.": 1, + "hlds.hlds_args.": 1, + "hlds.hlds_clauses.": 1, + "hlds.hlds_code_util.": 1, + "hlds.hlds_data.": 2, + "hlds.instmap.": 2, + "hlds.passes_aux.": 1, + "hlds.pred_table.": 1, + "hlds.quantification.": 1, + "hlds.special_pred.": 1, + "libs.": 1, + "libs.globals.": 2, + "mdbcomp.goal_path.": 2, + "mdbcomp.program_representation.": 1, + "parse_tree.builtin_lib_types.": 2, + "parse_tree.prog_mode.": 1, + "parse_tree.prog_type.": 2, + "parse_tree.prog_type_subst.": 1, + "parse_tree.set_of_var.": 2, + "solutions.": 1, + "varset.": 2, + "ModuleInfo": 49, + "module_info_get_preds": 3, + ".ModuleInfo": 8, + "Preds0": 2, + "map.keys": 3, + "PredIds0": 2, + "list.foldl": 6, + "maybe_polymorphism_process_pred": 3, + "Preds1": 2, + "PredIds1": 2, + "fixup_pred_polymorphism": 4, + "expand_class_method_bodies": 1, + "PredId": 50, + "module_info_pred_info": 6, + "PredInfo": 64, + "PredModule": 8, + "pred_info_module": 4, + "PredName": 8, + "pred_info_name": 4, + "PredArity": 6, + "pred_info_orig_arity": 3, + "no_type_info_builtin": 3, + "copy_module_clauses_to_procs": 1, + "polymorphism_process_pred_msg": 3, + "PredTable0": 3, + "map.lookup": 2, + "PredInfo0": 16, + "pred_info_get_clauses_info": 2, + "ClausesInfo0": 5, + "clauses_info_get_vartypes": 2, + "VarTypes0": 12, + "clauses_info_get_headvars": 2, + "HeadVars": 20, + "pred_info_get_arg_types": 7, + "TypeVarSet": 15, + "ExistQVars": 13, + "ArgTypes0": 3, + "proc_arg_vector_partition_poly_args": 1, + "ExtraHeadVarList": 2, + "OldHeadVarList": 2, + "lookup_var_types": 6, + "ExtraArgTypes": 2, + "ArgTypes": 6, + "pred_info_set_arg_types": 1, + "PredInfo1": 5, + "|": 38, + "OldHeadVarTypes": 2, + "type_list_subsumes": 2, + "Subn": 3, + "map.is_empty": 1, + "pred_info_set_existq_tvar_binding": 1, + "PredInfo2": 7, + "polymorphism_introduce_exists_casts_pred": 3, + "map.det_update": 4, + "PredTable": 2, + "module_info_set_preds": 1, + "pred_info_get_procedures": 2, + ".PredInfo": 2, + "Procs0": 4, + "map.map_values_only": 1, + ".ProcInfo": 2, + "ProcInfo": 43, + "introduce_exists_casts_proc": 1, + "Procs": 4, + "pred_info_set_procedures": 2, + "trace": 4, + "compiletime": 4, + "flag": 4, + "write_pred_progress_message": 1, + "polymorphism_process_pred": 4, + "selected_pred": 1, + "ground": 9, + "untrailed": 2, + "level": 1, + "pred_id_to_int": 1, + "impure": 2, + "set_selected_pred": 2, + "true": 3, + "polymorphism_process_clause_info": 3, + "ClausesInfo": 13, + "Info": 134, + "ExtraArgModes": 20, + "poly_info_get_module_info": 4, + "poly_info_get_const_struct_db": 1, + "ConstStructDb": 2, + "module_info_set_const_struct_db": 1, + "poly_info_get_typevarset": 4, + "pred_info_set_typevarset": 1, + "pred_info_set_clauses_info": 1, + "ProcIds": 5, + "pred_info_procids": 2, + "polymorphism_process_proc_in_table": 3, + "module_info_set_pred_info": 1, + "clauses_info": 6, + "poly_arg_vector": 9, + "mer_mode": 14, + "ModuleInfo0": 8, + "init_poly_info": 1, + ".ClausesInfo": 2, + "_VarSet": 1, + "ExplicitVarTypes": 2, + "_TVarNameMap": 1, + "_VarTypes": 1, + "HeadVars0": 5, + "ClausesRep0": 2, + "ItemNumbers": 2, + "_RttiVarMaps": 1, + "HaveForeignClauses": 2, + "setup_headvars": 3, + "UnconstrainedTVars": 15, + "ExtraTypeInfoHeadVars": 4, + "ExistTypeClassInfoHeadVars": 6, + "get_clause_list": 1, + "Clauses0": 2, + "list.map_foldl": 2, + "polymorphism_process_clause": 3, + "Clauses": 2, + "poly_info_get_varset": 4, + ".Info": 25, + "VarSet": 15, + "poly_info_get_var_types": 6, + "VarTypes": 22, + "poly_info_get_rtti_varmaps": 4, + "RttiVarMaps": 16, + "set_clause_list": 1, + "ClausesRep": 2, + "map.init": 7, + "TVarNameMap": 2, + "while": 1, + "adding": 1, + "clauses.": 1, + "proc_arg_vector": 9, + "clause": 2, + "OldHeadVars": 2, + "NewHeadVars": 2, + "Clause": 2, + "pred_info_is_imported": 2, + "Goal0": 21, + ".Clause": 1, + "clause_body": 2, + "empty_cache_maps": 4, + "poly_info_set_num_reuses": 1, + "polymorphism_process_goal": 20, + "Goal1": 2, + "produce_existq_tvars": 3, + "Goal2": 2, + "pred_info_get_exist_quant_tvars": 1, + "fixup_quantification": 1, + "Goal": 40, + "proc_table": 2, + "ProcId": 31, + "ProcTable": 2, + ".ProcTable": 1, + "ProcInfo0": 2, + "polymorphism_process_proc": 3, + "pred_info_is_pseudo_imported": 1, + "hlds_pred.in_in_unification_proc_id": 1, + "HeadVarList": 4, + "proc_arg_vector_to_list": 2, + "clauses_info_get_rtti_varmaps": 1, + "clauses_info_get_varset": 1, + "proc_info_set_headvars": 1, + "proc_info_set_rtti_varmaps": 1, + "proc_info_set_varset": 1, + "proc_info_set_vartypes": 1, + "copy_clauses_to_proc": 1, + "proc_info_get_argmodes": 2, + "ArgModes1": 2, + "ExtraArgModesList": 2, + "poly_arg_vector_to_list": 1, + "ArgModes": 5, + "proc_info_set_argmodes": 1, + "ExtraHeadTypeInfoVars": 7, + "ExistHeadTypeClassInfoVars": 9, + "pred_info_get_origin": 1, + "Origin": 8, + "ExtraArgModes0": 3, + "poly_arg_vector_init": 1, + "origin_instance_method": 1, + "InstanceMethodConstraints": 4, + "setup_headvars_instance_method": 3, + "origin_special_pred": 1, + "origin_transformed": 1, + "origin_created": 1, + "origin_assertion": 1, + "origin_lambda": 1, + "origin_user": 1, + "pred_info_get_class_context": 4, + "ClassContext": 6, + "InstanceTVars": 7, + "InstanceUnconstrainedTVars": 2, + "InstanceUnconstrainedTypeInfoVars": 2, + "setup_headvars_2": 4, + "instance_method_constraints": 2, + "InstanceTypes": 2, + "InstanceConstraints": 3, + "type_vars_list": 5, + "get_unconstrained_tvars": 1, + "UnconstrainedInstanceTVars": 6, + "ArgTypeVarSet": 5, + "make_head_vars": 3, + "UnconstrainedInstanceTypeInfoVars": 7, + "make_typeclass_info_head_vars": 3, + "do_record_type_info_locns": 3, + "InstanceHeadTypeClassInfoVars": 4, + "proc_arg_vector_set_instance_type_infos": 1, + "proc_arg_vector_set_instance_typeclass_infos": 1, + "RttiVarMaps0": 4, + "rtti_reuse_typeclass_info_var": 3, + "poly_info_set_rtti_varmaps": 3, + "in_mode": 3, + "InMode": 3, + "list.duplicate": 6, + "list.length": 16, + "UnconstrainedInstanceTypeInfoModes": 2, + "InstanceHeadTypeClassInfoModes": 2, + "poly_arg_vector_set_instance_type_infos": 1, + "poly_arg_vector_set_instance_typeclass_infos": 1, + "prog_constraints": 1, + "AllUnconstrainedTVars": 2, + "AllExtraHeadTypeInfoVars": 2, + "constraints": 4, + "UnivConstraints": 3, + "ExistConstraints": 6, + "prog_type.constraint_list_get_tvars": 2, + "UnivConstrainedTVars": 2, + "ExistConstrainedTVars": 2, + "poly_info_get_constraint_map": 4, + "ConstraintMap": 12, + "get_improved_exists_head_constraints": 4, + "ActualExistConstraints": 9, + "pred_info_get_markers": 1, + "PredMarkers": 2, + "check_marker": 1, + "marker_class_method": 1, + "RecordExistQLocns": 3, + "do_not_record_type_info_locns": 1, + "UnivHeadTypeClassInfoVars": 4, + "HeadTypeVars": 2, + "list.delete_elems": 12, + "UnconstrainedTVars0": 2, + "UnconstrainedTVars1": 2, + "UnconstrainedTVars2": 2, + "list.remove_dups": 4, + "UnconstrainedUnivTVars": 7, + "UnconstrainedExistTVars": 6, + "ExistHeadTypeInfoVars": 5, + "UnivHeadTypeInfoVars": 4, + "list.condense": 4, + "proc_arg_vector_set_univ_type_infos": 1, + "HeadVars1": 2, + "proc_arg_vector_set_exist_type_infos": 1, + "HeadVars2": 2, + "proc_arg_vector_set_univ_typeclass_infos": 1, + "HeadVars3": 2, + "proc_arg_vector_set_exist_typeclass_infos": 1, + "In": 6, + "out_mode": 2, + "Out": 6, + "NumUnconstrainedUnivTVars": 2, + "NumUnconstrainedExistTVars": 2, + "NumUnivClassInfoVars": 2, + "NumExistClassInfoVars": 2, + "UnivTypeInfoModes": 2, + "ExistTypeInfoModes": 2, + "UnivTypeClassInfoModes": 2, + "ExistTypeClassInfoModes": 2, + "poly_arg_vector_set_univ_type_infos": 1, + "poly_arg_vector_set_exist_type_infos": 1, + "poly_arg_vector_set_univ_typeclass_infos": 1, + "poly_arg_vector_set_exist_typeclass_infos": 1, + "ToLocn": 4, + "TheVar": 2, + "TheLocn": 2, + "list.map": 17, + "UnivTypeLocns": 2, + "list.foldl_corresponding": 3, + "rtti_det_insert_type_info_locn": 3, + "ExistTypeLocns": 2, + "UnconstrainedInstanceTypeLocns": 2, + ".RttiVarMaps": 1, + "TypeInfoHeadVars": 2, + "pred_info_get_tvar_kinds": 2, + "KindMap": 2, + "PredClassContext": 5, + "PredExistConstraints": 2, + "exist_constraints": 1, + "ExistQVarsForCall": 2, + "GoalInfo": 44, + "Context": 20, + "goal_info_get_context": 4, + "make_typeclass_info_vars": 3, + "ExistTypeClassVarsMCAs": 2, + "ExtraTypeClassGoals": 5, + "assoc_list.keys": 8, + "ExistTypeClassVars": 3, + "assign_var_list": 8, + "ExtraTypeClassUnifyGoals": 2, + "vartypes_is_empty": 1, + "PredToActualTypeSubst": 4, + "ActualArgTypes": 8, + "ArgTypeSubst": 2, + "apply_subst_to_tvar_list": 1, + "ActualTypes": 2, + "polymorphism_do_make_type_info_vars": 5, + "TypeInfoVarsMCAs": 2, + "ExtraTypeInfoGoals": 4, + "TypeInfoVars": 5, + "ExtraTypeInfoUnifyGoals": 2, + "GoalList": 8, + "conj_list_to_goal": 6, + "unexpected": 21, + "Var1": 5, + "Vars1": 2, + "Var2": 5, + "Vars2": 2, + "Goals": 13, + "assign_var": 3, + "true_goal": 1, + "term.context_init": 2, + "create_pure_atomic_complicated_unification": 1, + "rhs_var": 2, + "umc_explicit": 1, + "constraint_map": 1, + "NumExistConstraints": 4, + "search_hlds_constraint_list": 1, + "unproven": 3, + "goal_id": 1, + "ActualExistConstraints0": 2, + "GoalExpr0": 18, + "GoalInfo0": 41, + "generic_call": 1, + "plain_call": 5, + "ArgVars0": 23, + "polymorphism_process_call": 4, + "ExtraVars": 13, + "ExtraGoals": 13, + "ArgVars": 6, + "CallExpr": 4, + "call_args": 1, + "Call": 4, + "call_foreign_proc": 4, + "polymorphism_process_foreign_proc": 3, + "XVar": 11, + "Y": 9, + "Mode": 12, + "Unification": 16, + "UnifyContext": 15, + "polymorphism_process_unify": 4, + "conj": 5, + "ConjType": 4, + "Goals0": 13, + "plain_conj": 4, + "polymorphism_process_plain_conj": 5, + "parallel_conj": 1, + "get_cache_maps_snapshot": 11, + "InitialSnapshot": 36, + "polymorphism_process_par_conj": 5, + "GoalExpr": 19, + "disj": 2, + "polymorphism_process_disj": 6, + "set_cache_maps_snapshot": 15, + "if_then_else": 2, + "Vars": 10, + "Cond0": 2, + "Then0": 2, + "Else0": 2, + "Cond": 2, + "Then": 2, + "Else": 2, + "negation": 2, + "SubGoal0": 14, + "SubGoal": 16, + "switch": 2, + "Var": 13, + "CanFail": 4, + "Cases0": 4, + "polymorphism_process_cases": 5, + "Cases": 4, + "scope": 7, + "Reason0": 16, + "from_ground_term": 2, + "TermVar": 4, + "Kind": 5, + "from_ground_term_initial": 2, + "polymorphism_process_from_ground_term_initial": 3, + "from_ground_term_construct": 1, + "from_ground_term_deconstruct": 1, + "from_ground_term_other": 1, + "promise_solutions": 1, + "promise_purity": 1, + "require_detism": 1, + "require_complete_switch": 1, + "commit": 1, + "barrier": 1, + "loop_control": 1, + "exist_quant": 1, + "trace_goal": 1, + "shorthand": 2, + "ShortHand0": 4, + "atomic_goal": 2, + "GoalType": 2, + "Outer": 2, + "Inner": 2, + "MainGoal0": 2, + "OrElseGoals0": 2, + "OrElseInners": 2, + "MainGoal": 2, + "OrElseGoals": 2, + "ShortHand": 3, + "try_goal": 2, + "MaybeIO": 2, + "ResultVar": 2, + "SubGoalExpr0": 4, + "SubGoalInfo": 2, + "Conjuncts0": 2, + "ConjunctA0": 2, + "ConjunctB0": 2, + "ConjunctA": 2, + "ConjunctB": 2, + "Conjuncts": 2, + "SubGoalExpr": 2, + "bi_implication": 1, + "hlds_goal_expr": 2, + "SubGoalInfo0": 2, + "SubGoals0Prime": 2, + "SubGoals0": 2, + "polymorphism_process_fgti_goals": 5, + "RevMarkedSubGoals": 2, + "fgt_invariants_kept": 2, + "InvariantsStatus": 7, + "Reason": 2, + "fgt_invariants_broken": 2, + "introduce_partial_fgt_scopes": 1, + "deconstruct_top_down": 1, + "fgt_marked_goal": 2, + "fgt_invariants_status": 2, + "RevMarkedGoals": 4, + "OldInfo": 3, + "XVarPrime": 2, + "ModePrime": 2, + "UnificationPrime": 2, + "UnifyContextPrime": 2, + "rhs_functor": 5, + "ConsIdPrime": 2, + "YVarsPrime": 2, + "ConsId": 10, + "YVars": 4, + "polymorphism_process_unify_functor": 4, + "Changed": 10, + "VarSetBefore": 2, + "MaxVarBefore": 2, + "varset.max_var": 2, + "poly_info_get_num_reuses": 2, + "NumReusesBefore": 2, + "VarSetAfter": 2, + "MaxVarAfter": 2, + "NumReusesAfter": 2, + "expect": 15, + "MarkedGoal": 3, + "fgt_kept_goal": 1, + "fgt_broken_goal": 1, + ".RevMarkedGoals": 1, + "unify_mode": 2, + "Unification0": 8, + "_YVar": 1, + "lookup_var_type": 3, + "Type": 18, + "unification_typeinfos": 5, + "_Changed": 3, + "Args": 11, + "Purity": 9, + "Groundness": 6, + "PredOrFunc": 6, + "EvalMethod": 8, + "LambdaVars": 13, + "Modes": 4, + "Det": 4, + "LambdaGoal0": 5, + "LambdaGoal1": 2, + "fixup_lambda_quantification": 1, + "LambdaGoal": 6, + "NonLocalTypeInfos": 3, + "set_of_var.to_sorted_list": 1, + "NonLocalTypeInfosList": 2, + "Y1": 2, + "NonLocals0": 10, + "goal_info_get_nonlocals": 6, + "set_of_var.union": 3, + "NonLocals": 12, + "goal_info_set_nonlocals": 6, + "type_vars": 2, + "TypeVars": 8, + "get_type_info_locn": 1, + "TypeInfoLocns": 6, + "add_unification_typeinfos": 4, + "rtti_lookup_type_info_locn": 1, + "type_info_locn": 1, + "type_info_locn_var": 1, + "TypeInfoVars0": 2, + ".GoalInfo": 1, + "set_of_var.insert_list": 4, + ".Unification": 5, + "complicated_unify": 2, + "construct": 1, + "assign": 46, + "simple_test": 1, + "X0": 8, + "ConsId0": 5, + "Mode0": 4, + "TypeOfX": 6, + "closure_cons": 1, + "ShroudedPredProcId": 2, + "proc": 2, + "ProcId0": 3, + "unshroud_pred_proc_id": 1, + "type_is_higher_order_details": 1, + "_PredOrFunc": 1, + "CalleeArgTypes": 2, + "invalid_proc_id": 1, + "goal_info_add_feature": 1, + "feature_lambda_undetermined_mode": 1, + "GoalInfo1": 6, + "VarSet0": 2, + "Functor0": 6, + "poly_info_set_varset_and_types": 1, + "cons": 3, + "ConsTypeCtor": 2, + "remove_new_prefix": 1, + "OrigFunctor": 2, + "IsConstruction": 7, + "type_util.get_existq_cons_defn": 1, + "ConsDefn": 2, + "polymorphism_process_existq_unify_functor": 3, + "UnifyExpr": 2, + "Unify": 2, + "PredArgTypes": 10, + "create_fresh_vars": 5, + "module_info_pred_proc_info": 4, + "QualifiedPName": 5, + "qualified": 1, + "cons_id_dummy_type_ctor": 1, + "RHS": 2, + "CallUnifyContext": 2, + "LambdaGoalExpr": 2, + "not_builtin": 3, + "OutsideVars": 2, + "set_of_var.list_to_set": 3, + "InsideVars": 2, + "set_of_var.intersect": 1, + "LambdaNonLocals": 2, + "GoalId": 8, + "goal_info_get_goal_id": 3, + "goal_info_init": 1, + "LambdaGoalInfo0": 2, + "goal_info_set_context": 1, + "LambdaGoalInfo1": 2, + "LambdaGoalInfo2": 2, + "goal_info_set_purity": 1, + "LambdaGoalInfo3": 2, + "goal_info_set_goal_id": 1, + "LambdaGoalInfo": 4, + "lambda_modes_and_det": 4, + "LambdaModes": 6, + "LambdaDet": 6, + "pred_info_is_pred_or_func": 1, + "ho_ground": 1, + "_LambdaModes0": 1, + "_LambdaDet0": 1, + "goal_to_conj_list": 1, + "LambdaGoalList0": 2, + "list.split_last": 1, + "LambdaGoalButLast0": 2, + "LastGoal0": 2, + "LastGoalExpr0": 2, + "LastGoalInfo0": 2, + "PredId0": 2, + "_DummyProcId": 1, + "Args0": 5, + "MaybeCallUnifyContext0": 2, + "QualifiedPName0": 2, + "LambdaGoalButLast": 2, + "LastGoalInfo": 2, + "MaybeCallUnifyContext": 4, + "LastGoalExpr": 2, + "LastGoal": 2, + "prog_vars": 1, + "determinism": 1, + "NumArgModes": 2, + "NumLambdaVars": 2, + "list.drop": 2, + "LambdaModesPrime": 2, + "proc_info_get_declared_determinism": 1, + "MaybeDet": 3, + "sorry": 1, + "Types": 6, + "varset.new_var": 1, + "add_var_type": 1, + "ctor_defn": 2, + "CtorDefn": 2, + "ActualRetType": 2, + "CtorTypeVarSet": 2, + "CtorExistQVars": 2, + "CtorKindMap": 2, + "CtorExistentialConstraints": 2, + "CtorArgTypes": 2, + "CtorRetType": 2, + "TypeVarSet0": 5, + "tvarset_merge_renaming": 3, + "CtorToParentRenaming": 6, + "apply_variable_renaming_to_tvar_list": 2, + "ParentExistQVars": 6, + "apply_variable_renaming_to_tvar_kind_map": 2, + "ParentKindMap": 7, + "apply_variable_renaming_to_prog_constraint_list": 1, + "ParentExistentialConstraints": 3, + "apply_variable_renaming_to_type_list": 4, + "ParentArgTypes": 6, + "apply_variable_renaming_to_type": 1, + "ParentRetType": 2, + "poly_info_set_typevarset": 3, + "type_list_subsumes_det": 3, + "ParentToActualTypeSubst": 6, + "NumExistentialConstraints": 3, + "lookup_hlds_constraint_list": 4, + "ActualExistentialConstraints": 4, + "ExtraTypeClassVarsMCAs": 2, + "ExtraTypeClassVars": 2, + "assumed": 2, + "make_existq_typeclass_info_vars": 2, + "constraint_list_get_tvars": 3, + "ParentExistConstrainedTVars": 4, + "ParentUnconstrainedExistQVars": 2, + "apply_rec_subst_to_tvar_list": 4, + "ActualExistentialTypes": 2, + "ExtraTypeInfoVarsMCAs": 2, + "ExtraTypeInfoVars": 2, + "ExtraTypeClassVars.": 1, + "bound": 1, + "Attributes": 2, + "ProcExtraArgs": 2, + "MaybeTraceRuntimeCond": 2, + "Impl": 14, + "foreign_arg_var": 1, + "CanOptAwayUnnamed": 11, + "polymorphism_process_foreign_proc_args": 3, + "ExtraArgs": 5, + "pragma_foreign_code_impl": 4, + "foreign_arg": 1, + "PredTypeVarSet": 8, + "UnivCs": 4, + "ExistCs": 4, + "UnivVars0": 2, + "get_constrained_vars": 2, + "UnivConstrainedVars": 2, + "ExistVars0": 2, + "ExistConstrainedVars": 2, + "PredTypeVars0": 2, + "PredTypeVars1": 2, + "PredTypeVars2": 2, + "PredTypeVars": 3, + "foreign_proc_add_typeclass_info": 4, + "ExistTypeClassArgInfos": 2, + "UnivTypeClassArgInfos": 2, + "TypeClassArgInfos": 2, + "list.filter": 1, + "X": 9, + "ExistUnconstrainedVars": 2, + "UnivUnconstrainedVars": 2, + "foreign_proc_add_typeinfo": 4, + "ExistTypeArgInfos": 2, + "UnivTypeArgInfos": 2, + "TypeInfoArgInfos": 2, + "ArgInfos": 2, + "TypeInfoTypes": 2, + "type_info_type": 1, + "UnivTypes": 2, + "ExistTypes": 2, + "OrigArgTypes": 2, + "make_foreign_args": 1, + "tvarset": 3, + "box_policy": 2, + "Constraint": 2, + "MaybeArgName": 7, + "native_if_possible": 2, + "SymName": 4, + "Name": 4, + "sym_name_to_string_sep": 1, + "TypeVarNames": 2, + "underscore_and_tvar_name": 3, + "string.append_list": 1, + "ConstraintVarName": 3, + "foreign_code_does_not_use_variable": 4, + "TVar": 4, + "varset.search_name": 1, + "TypeVarName": 2, + "C_VarName": 3, + "VarName": 2, + "foreign_code_uses_variable": 1, + "TVarName": 2, + "varset.lookup_name": 2, + "TVarName0": 1, + "TVarName0.": 1, + "cache_maps": 3, + "case": 4, + "Case0": 2, + "Case": 2, + "MainConsId": 2, + "OtherConsIds": 2, + "PredExistQVars": 2, + "PredKindMap": 3, + "varset.is_empty": 1, + "PredToParentTypeRenaming": 6, + "ParentTVars": 4, + "apply_variable_renaming_to_prog_constraints": 1, + "ParentClassContext": 2, + "ParentUnivConstraints": 3, + "ParentExistConstraints": 3, + "ParentUnivConstrainedTVars": 2, + "ParentUnconstrainedTVars0": 2, + "ParentUnconstrainedTVars1": 2, + "ParentUnconstrainedTVars": 3, + "ParentUnconstrainedUnivTVars": 3, + "ParentUnconstrainedExistTVars": 2, + "NumUnivConstraints": 2, + "ActualUnivConstraints": 2, + "ActualExistQVarTypes": 2, + "prog_type.type_list_to_var_list": 1, + "ActualExistQVars0": 2, + "ActualExistQVars": 2, + "ExtraUnivClassVarsMCAs": 2, + "ExtraUnivClassGoals": 2, + "ExtraUnivClassVars": 2, + "ExtraExistClassVars": 2, + "ExtraExistClassGoals": 2, + "ActualUnconstrainedUnivTypes": 2, + "ExtraUnivTypeInfoVarsMCAs": 2, + "ExtraUnivTypeInfoGoals": 2, + "ExtraUnivTypeInfoVars": 2, + "ActualUnconstrainedExistTypes": 2, + "ExtraExistTypeInfoVarsMCAs": 2, + "ExtraExistTypeInfoGoals": 2, + "ExtraExistTypeInfoVars": 2, + "CalleePredInfo": 2, + "CalleeProcInfo": 3, + "CallArgs0": 3, + "BuiltinState": 2, + "TVarSet0": 2, + "ActualArgTypes0": 3, + "PredTVarSet": 2, + "_PredExistQVars": 1, + "proc_info_get_headvars": 2, + "CalleeHeadVars": 2, + "proc_info_get_rtti_varmaps": 1, + "CalleeRttiVarMaps": 2, + "NCallArgs0": 2, + "NPredArgs": 2, + "NExtraArgs": 3, + "OrigPredArgTypes0": 2, + "list.take": 1, + "CalleeExtraHeadVars0": 2, + "OrigPredArgTypes": 2, + "CalleeExtraHeadVars": 2, + "TVarSet": 2, + "PredToParentRenaming": 3, + "OrigParentArgTypes": 2, + "ParentToActualTSubst": 2, + "GetTypeInfoTypes": 2, + "ProgVar": 2, + "TypeInfoType": 2, + "rtti_varmaps_var_info": 1, + "VarInfo": 4, + "type_info_var": 1, + "typeclass_info_var": 1, + "non_rtti_var": 1, + "PredTypeInfoTypes": 2, + "ParentTypeInfoTypes": 2, + "apply_rec_subst_to_type_list": 1, + "ActualTypeInfoTypes": 2, + "Ctxt": 2, + "ExtraArgsConstArgs": 2, + "CallArgs": 2, + "NonLocals1": 2, + "CallGoalExpr": 2, + "CallGoal": 2, + "rot13_ralph.": 1, + "io__read_byte": 1, + "Result": 4, + "io__write_byte": 1, + "ErrNo": 2, + "z": 1, + "Rot13": 2, + "rem": 1, + "ll_backend.code_info.": 1, + "hlds.code_model.": 1, + "hlds.hlds_llds.": 1, + "ll_backend.continuation_info.": 1, + "ll_backend.global_data.": 1, + "ll_backend.layout.": 1, + "ll_backend.llds.": 1, + "ll_backend.trace_gen.": 1, + "counter.": 1, + "set_tree234.": 1, + "backend_libs.builtin_ops.": 1, + "backend_libs.proc_label.": 1, + "hlds.arg_info.": 1, + "hlds.hlds_desc.": 1, + "libs.trace_params.": 1, + "ll_backend.code_util.": 1, + "ll_backend.opt_debug.": 1, + "ll_backend.var_locn.": 1, + "parse_tree.mercury_to_mercury.": 1, + "cord.": 1, + "stack.": 1, + "code_info.": 1, + "code_info_init": 2, + "globals": 5, + "abs_follow_vars": 3, + "static_cell_info": 4, + "const_struct_map": 3, + "resume_point_info": 11, + "trace_slot_info": 3, + "containing_goal_map": 4, + "code_info": 208, + "get_globals": 5, + "get_exprn_opts": 2, + "exprn_opts": 3, + "get_module_info": 7, + "get_pred_id": 6, + "get_proc_id": 5, + "get_pred_info": 2, + "get_proc_info": 4, + "get_varset": 3, + "get_var_types": 3, + "vartypes.": 1, + "get_maybe_trace_info": 2, + "trace_info": 3, + "get_emit_trail_ops": 2, + "add_trail_ops": 5, + "get_emit_region_ops": 2, + "add_region_ops": 6, + "get_forward_live_vars": 2, + "set_of_progvar": 10, + "set_forward_live_vars": 2, + "get_instmap": 4, + "instmap": 3, + "set_instmap": 3, + "get_par_conj_depth": 2, + "set_par_conj_depth": 2, + "get_label_counter": 3, + "counter": 6, + "get_succip_used": 2, + "get_layout_info": 4, + "proc_label_layout_info": 3, + "get_proc_trace_events": 2, + "set_proc_trace_events": 2, + "get_closure_layouts": 3, + "closure_proc_id_data": 4, + "get_max_reg_in_use_at_trace": 2, + "set_max_reg_in_use_at_trace": 2, + "get_created_temp_frame": 2, + "get_static_cell_info": 5, + "set_static_cell_info": 5, + "get_alloc_sites": 3, + "set_tree234": 3, + "alloc_site_info": 4, + "set_alloc_sites": 3, + "get_used_env_vars": 2, + "set_used_env_vars": 2, + "get_opt_trail_ops": 2, + "get_opt_region_ops": 2, + "get_auto_comments": 2, + "get_lcmc_null": 2, + "get_containing_goal_map": 3, + "get_containing_goal_map_det": 2, + "get_const_struct_map": 2, + "add_out_of_line_code": 2, + "llds_code": 21, + "get_out_of_line_code": 2, + "get_var_slot_count": 2, + "set_maybe_trace_info": 3, + "get_opt_no_return_calls": 2, + "get_zombies": 2, + "set_zombies": 2, + "get_var_locn_info": 7, + "var_locn_info": 3, + "set_var_locn_info": 4, + "get_temps_in_use": 6, + "lval": 114, + "set_temps_in_use": 4, + "get_fail_info": 13, + "fail_info": 24, + "set_fail_info": 9, + "set_label_counter": 3, + "set_succip_used": 3, + "set_layout_info": 4, + "get_max_temp_slot_count": 2, + "set_max_temp_slot_count": 2, + "get_temp_content_map": 3, + "slot_contents": 4, + "set_temp_content_map": 2, + "get_persistent_temps": 3, + "set_persistent_temps": 2, + "set_closure_layouts": 3, + "get_closure_seq_counter": 3, + "set_closure_seq_counter": 3, + "set_created_temp_frame": 2, + "code_info_static": 26, + "code_info_loc_dep": 22, + "code_info_persistent": 44, + "cis_globals": 2, + "cis_exprn_opts": 2, + "cis_module_info": 2, + "cis_pred_id": 2, + "cis_proc_id": 2, + "cis_pred_info": 2, + "cis_proc_info": 2, + "cis_proc_label": 1, + "proc_label": 2, + "cis_varset": 2, + "cis_var_slot_count": 2, + "cis_maybe_trace_info": 3, + "cis_opt_no_resume_calls": 2, + "cis_emit_trail_ops": 2, + "cis_opt_trail_ops": 2, + "cis_emit_region_ops": 2, + "cis_opt_region_ops": 2, + "cis_auto_comments": 2, + "cis_lcmc_null": 2, + "cis_containing_goal_map": 2, + "cis_const_struct_map": 2, + "cild_forward_live_vars": 3, + "cild_instmap": 3, + "cild_zombies": 3, + "cild_var_locn_info": 3, + "cild_temps_in_use": 3, + "cild_fail_info": 3, + "cild_par_conj_depth": 3, + "cip_label_num_src": 3, + "cip_store_succip": 3, + "cip_label_info": 3, + "cip_proc_trace_events": 3, + "cip_stackslot_max": 3, + "cip_temp_contents": 3, + "cip_persistent_temps": 3, + "cip_closure_layout_seq": 3, + "cip_closure_layouts": 3, + "cip_max_reg_r_used": 3, + "cip_max_reg_f_used": 2, + "cip_created_temp_frame": 3, + "cip_static_cell_info": 3, + "cip_alloc_sites": 3, + "cip_used_env_vars": 3, + "cip_ts_string_table_size": 3, + "cip_ts_rev_string_table": 4, + "cip_out_of_line_code": 4, + "SaveSuccip": 2, + "Globals": 32, + "FollowVars": 6, + "StaticCellInfo": 8, + "ConstStructMap": 2, + "ResumePoint": 13, + "TraceSlotInfo": 5, + "MaybeContainingGoalMap": 5, + "TSRevStringTable": 2, + "TSStringTableSize": 2, + "CodeInfo": 2, + "ProcLabel": 8, + "make_proc_label": 1, + "proc_info_get_initial_instmap": 1, + "InstMap": 6, + "proc_info_get_liveness_info": 1, + "Liveness": 4, + "CodeModel": 8, + "proc_info_interface_code_model": 2, + "build_input_arg_list": 1, + "ArgList": 2, + "proc_info_get_varset": 1, + "proc_info_get_vartypes": 2, + "proc_info_get_stack_slots": 1, + "StackSlots": 5, + "ExprnOpts": 4, + "init_exprn_opts": 3, + "globals.lookup_bool_option": 18, + "UseFloatRegs": 6, + "FloatRegType": 3, + "reg_f": 1, + "reg_r": 2, + "globals.get_trace_level": 1, + "TraceLevel": 5, + "eff_trace_level_is_none": 2, + "trace_fail_vars": 1, + "FailVars": 3, + "MaybeFailVars": 3, + "EffLiveness": 3, + "init_var_locn_state": 1, + "VarLocnInfo": 12, + "stack.init": 1, + "ResumePoints": 14, + "AllowHijack": 3, + "Hijack": 6, + "allowed": 6, + "not_allowed": 5, + "DummyFailInfo": 2, + "resume_point_unknown": 9, + "may_be_different": 7, + "not_inside_non_condition": 2, + "TempContentMap": 4, + "set.init": 7, + "PersistentTemps": 4, + "TempsInUse": 8, + "Zombies": 2, + "set_of_var.init": 1, + "LayoutMap": 2, + "max_var_slot": 1, + "VarSlotMax": 2, + "trace_reserved_slots": 1, + "FixedSlots": 2, + "int.max": 1, + "SlotMax": 2, + "OptNoReturnCalls": 2, + "UseTrail": 2, + "DisableTrailOps": 2, + "EmitTrailOps": 3, + "do_not_add_trail_ops": 1, + "OptTrailOps": 2, + "OptRegionOps": 2, + "UseRegions": 3, + "EmitRegionOps": 3, + "do_not_add_region_ops": 1, + "AutoComments": 2, + "LCMCNull": 2, + "CodeInfo0": 2, + "init_fail_info": 2, + "will": 1, + "override": 1, + "nested": 1, + "conjunction": 1, + "depth": 1, + "counter.init": 2, + "set_tree234.init": 1, + "cord.empty": 1, + "init_maybe_trace_info": 3, + "CodeInfo1": 2, + "exprn_opts.": 1, + "OptNLG": 3, + "NLG": 3, + "have_non_local_gotos": 1, + "do_not_have_non_local_gotos": 1, + "OptASM": 3, + "ASM": 3, + "have_asm_labels": 1, + "do_not_have_asm_labels": 1, + "OptSGCell": 3, + "SGCell": 3, + "have_static_ground_cells": 1, + "do_not_have_static_ground_cells": 1, + "OptUBF": 3, + "UBF": 3, + "have_unboxed_floats": 1, + "do_not_have_unboxed_floats": 1, + "OptFloatRegs": 3, + "do_not_use_float_registers": 1, + "OptSGFloat": 3, + "SGFloat": 3, + "have_static_ground_floats": 1, + "do_not_have_static_ground_floats": 1, + "OptStaticCodeAddr": 3, + "StaticCodeAddrs": 3, + "have_static_code_addresses": 1, + "do_not_have_static_code_addresses": 1, + "CI": 294, + "proc_info_get_has_tail_call_events": 1, + "HasTailCallEvents": 3, + "tail_call_events": 1, + "get_next_label": 5, + "TailRecLabel": 2, + "MaybeTailRecLabel": 3, + "no_tail_call_events": 1, + "trace_setup": 1, + "TraceInfo": 2, + "MaxRegR": 4, + "MaxRegF": 4, + "cip_max_reg_f_used.": 1, + "TI": 4, + "LV": 2, + "IM": 2, + "Zs": 2, + "EI": 2, + "FI": 2, + "LC": 2, + "SU": 2, + "LI": 2, + "PTE": 2, + "TM": 2, + "CM": 2, + "PT": 2, + "CLS": 2, + "CG": 2, + "MR": 4, + "MF": 1, + "MF.": 1, + "SCI": 2, + "ASI": 2, + "UEV": 2, + "ContainingGoalMap": 2, + "NewCode": 2, + "Code0": 2, + ".CI": 29, + "Code": 36, + "Code.": 1, + "get_stack_slots": 2, + "stack_slots": 1, + "get_follow_var_map": 2, + "abs_follow_vars_map": 1, + "get_next_non_reserved": 2, + "reg_type": 1, + "set_follow_vars": 4, + "pre_goal_update": 3, + "has_subgoals": 2, + "post_goal_update": 3, + "variable_type": 3, + "mer_type.": 1, + "variable_is_of_dummy_type": 2, + "is_dummy_type.": 1, + "search_type_defn": 4, + "hlds_type_defn": 1, + "lookup_type_defn": 2, + "hlds_type_defn.": 1, + "lookup_cheaper_tag_test": 2, + "maybe_cheaper_tag_test.": 1, + "filter_region_vars": 2, + "set_of_progvar.": 2, + "get_proc_model": 2, + "code_model.": 1, + "get_headvars": 2, + "get_arginfo": 2, + "arg_info": 2, + "get_pred_proc_arginfo": 3, + "current_resume_point_vars": 2, + "variable_name": 2, + "make_proc_entry_label": 2, + "code_addr.": 1, + "label": 5, + "succip_is_used": 2, + "add_trace_layout_for_label": 2, + "trace_port": 1, + "forward_goal_path": 1, + "user_event_info": 1, + "layout_label_info": 2, + "get_cur_proc_label": 4, + "get_next_closure_seq_no": 2, + "add_closure_layout": 2, + "add_threadscope_string": 2, + "get_threadscope_rev_string_table": 2, + "add_scalar_static_cell": 2, + "typed_rval": 1, + "data_id": 3, + "add_scalar_static_cell_natural_types": 2, + "rval": 3, + "add_vector_static_cell": 2, + "llds_type": 1, + "add_alloc_site_info": 2, + "prog_context": 1, + "alloc_site_id": 2, + "add_resume_layout_for_label": 2, + "var_locn_get_stack_slots": 1, + "FollowVarMap": 2, + "var_locn_get_follow_var_map": 1, + "RegType": 2, + "NextNonReserved": 2, + "var_locn_get_next_non_reserved": 1, + "VarLocnInfo0": 4, + "var_locn_set_follow_vars": 1, + "HasSubGoals": 3, + "goal_info_get_resume_point": 1, + "no_resume_point": 1, + "resume_point": 1, + "goal_info_get_follow_vars": 1, + "MaybeFollowVars": 3, + "goal_info_get_pre_deaths": 1, + "PreDeaths": 3, + "rem_forward_live_vars": 3, + "maybe_make_vars_forward_dead": 2, + "goal_info_get_pre_births": 1, + "PreBirths": 2, + "add_forward_live_vars": 2, + "does_not_have_subgoals": 2, + "goal_info_get_post_deaths": 2, + "PostDeaths": 5, + "goal_info_get_post_births": 1, + "PostBirths": 3, + "make_vars_forward_live": 1, + "InstMapDelta": 2, + "goal_info_get_instmap_delta": 1, + "InstMap0": 2, + "instmap.apply_instmap_delta": 1, + "TypeInfoLiveness": 2, + "body_should_use_typeinfo_liveness": 1, + "IsDummy": 2, + "VarType": 2, + "check_dummy_type": 1, + "TypeDefn": 6, + "type_to_ctor_det": 1, + "TypeCtor": 2, + "module_info_get_type_table": 1, + "TypeTable": 2, + "search_type_ctor_defn": 1, + "TypeDefnPrime": 2, + "CheaperTagTest": 3, + "get_type_defn_body": 1, + "TypeBody": 2, + "hlds_du_type": 1, + "CheaperTagTestPrime": 2, + "no_cheaper_tag_test": 1, + "ForwardLiveVarsBeforeGoal": 6, + "RegionVars": 2, + "code_info.get_var_types": 1, + "set_of_var.filter": 1, + "is_region_var": 1, + "ArgInfo": 4, + "proc_info_arg_info": 1, + "ResumeVars": 4, + "FailInfo": 19, + "ResumePointStack": 2, + "stack.det_top": 5, + "ResumePointInfo": 2, + "pick_first_resume_point": 1, + "ResumeMap": 8, + "ResumeMapVarList": 2, + "Varset": 2, + "Immed0": 3, + "CodeAddr": 2, + "Immed": 3, + "globals.lookup_int_option": 1, + "ProcsPerFunc": 2, + "CurPredId": 2, + "CurProcId": 2, + "make_entry_label": 1, + "Label": 8, + "C0": 4, + "counter.allocate": 2, + "internal_label": 3, + "Port": 2, + "IsHidden": 2, + "GoalPath": 2, + "MaybeSolverEventInfo": 2, + "Layout": 2, + "Internals0": 8, + "Exec": 5, + "trace_port_layout_info": 1, + "LabelNum": 8, + "entry_label": 2, + "map.search": 2, + "Internal0": 4, + "internal_layout_info": 6, + "Exec0": 3, + "Resume": 5, + "Internal": 8, + "Internals": 6, + "map.det_insert": 3, + "LayoutInfo": 2, + "Resume0": 3, + "get_active_temps_data": 2, + "assoc_list": 1, + "Temps": 2, + "map.select": 1, + "TempsInUseContentMap": 2, + "map.to_assoc_list": 3, + "cis_proc_label.": 1, + "SeqNo": 2, + "ClosureLayout": 2, + "ClosureLayouts": 2, + "String": 2, + "SlotNum": 2, + "Size0": 3, + "RevTable0": 2, + "Size": 4, + "RevTable": 3, + "RevTable.": 1, + "TableSize": 2, + "cip_ts_string_table_size.": 1, + "RvalsTypes": 2, + "DataAddr": 6, + "StaticCellInfo0": 6, + "global_data.add_scalar_static_cell": 1, + "Rvals": 2, + "global_data.add_scalar_static_cell_natural_types": 1, + "Vector": 2, + "global_data.add_vector_static_cell": 1, + "AllocId": 2, + "AllocSite": 3, + "AllocSites0": 2, + "set_tree234.insert": 1, + "AllocSites": 2, + "position_info.": 1, + "branch_end_info.": 1, + "branch_end": 4, + "branch_end_info": 7, + "remember_position": 3, + "position_info": 14, + "reset_to_position": 4, + "reset_resume_known": 2, + "generate_branch_end": 2, + "abs_store_map": 3, + "after_all_branches": 2, + "save_hp_in_branch": 2, + "pos_get_fail_info": 3, + "fail_info.": 2, + "LocDep": 6, + "cild_fail_info.": 1, + "CurCI": 2, + "NextCI": 2, + "Static": 2, + "Persistent": 2, + "NextCI0": 4, + "TempsInUse0": 4, + "set.union": 2, + "BranchStart": 2, + "BranchStartFailInfo": 2, + "BSResumeKnown": 2, + "CurFailInfo": 2, + "CurFailStack": 2, + "CurCurfMaxfr": 2, + "CurCondEnv": 2, + "CurHijack": 2, + "NewFailInfo": 2, + "StoreMap": 8, + "MaybeEnd0": 3, + "MaybeEnd": 6, + "AbsVarLocs": 3, + "assoc_list.values": 1, + "AbsLocs": 2, + "code_util.max_mentioned_abs_regs": 1, + "instmap_is_reachable": 1, + "VarLocs": 2, + "assoc_list.map_values_only": 2, + "abs_locn_to_lval": 2, + "place_vars": 1, + "remake_with_store_map": 4, + "empty": 9, + "EndCodeInfo1": 5, + "EndCodeInfo0": 3, + "FailInfo0": 13, + "FailInfo1": 2, + "ResumeKnown0": 5, + "CurfrMaxfr0": 2, + "CondEnv0": 3, + "Hijack0": 2, + "R": 2, + "ResumeKnown1": 2, + "CurfrMaxfr1": 2, + "CondEnv1": 2, + "Hijack1": 2, + "resume_point_known": 15, + "Redoip0": 3, + "Redoip1": 2, + "ResumeKnown": 21, + "must_be_equal": 11, + "CurfrMaxfr": 24, + "EndCodeInfoA": 2, + "TempsInUse1": 2, + "EndCodeInfo": 2, + "BranchEnd": 2, + "BranchEndCodeInfo": 2, + "BranchEndLocDep": 2, + "VarLocns": 2, + "VarLvals": 2, + "reinit_var_locn_state": 1, + "Slot": 2, + "Pos0": 2, + "Pos": 2, + "CI0": 2, + "CIStatic0": 2, + "CILocDep0": 2, + "CIPersistent0": 2, + "LocDep0": 2, + "CI1": 2, + "save_hp": 1, + "CI2": 2, + "CIStatic": 2, + "CIPersistent": 2, + "resume_map.": 1, + "resume_point_info.": 1, + "disj_hijack_info.": 1, + "prepare_for_disj_hijack": 2, + "code_model": 3, + "disj_hijack_info": 3, + "undo_disj_hijack": 2, + "ite_hijack_info.": 1, + "prepare_for_ite_hijack": 2, + "embedded_stack_frame_id": 3, + "ite_hijack_info": 3, + "ite_enter_then": 2, + "simple_neg_info.": 1, + "enter_simple_neg": 2, + "simple_neg_info": 3, + "leave_simple_neg": 2, + "det_commit_info.": 1, + "prepare_for_det_commit": 2, + "det_commit_info": 6, + "generate_det_commit": 2, + "semi_commit_info.": 1, + "prepare_for_semi_commit": 2, + "semi_commit_info": 6, + "generate_semi_commit": 2, + "effect_resume_point": 2, + "pop_resume_point": 1, + "top_resume_point": 1, + "set_resume_point_to_unknown": 1, + "set_resume_point_and_frame_to_unknown": 1, + "generate_failure": 2, + "fail_if_rval_is_false": 1, + "failure_is_direct_branch": 1, + "code_addr": 8, + "may_use_nondet_tailcall": 1, + "nondet_tail_call": 1, + "produce_vars": 1, + "resume_map": 9, + "flush_resume_vars_to_stack": 1, + "make_resume_point": 1, + "resume_locs": 1, + "generate_resume_point": 2, + "resume_point_vars": 1, + "resume_point_stack_addr": 2, + "stack": 1, + "curfr_vs_maxfr": 2, + "condition_env": 3, + "hijack_allowed": 2, + "orig_only": 2, + "stack_only": 2, + "orig_and_stack": 1, + "stack_and_orig": 1, + "redoip_update": 2, + "has_been_done": 5, + "wont_be_done.": 1, + "resume_point_unknown.": 1, + "may_be_different.": 1, + "inside_non_condition": 6, + "not_inside_non_condition.": 1, + "not_allowed.": 1, + "disj_no_hijack": 4, + "disj_temp_frame": 4, + "disj_quarter_hijack": 4, + "disj_half_hijack": 3, + "disj_full_hijack": 3, + "HijackInfo": 29, + "CondEnv": 12, + "Allow": 12, + "model_det": 2, + "model_semi": 3, + "singleton": 28, + "llds_instr": 64, + "comment": 5, + "model_non": 2, + "create_temp_frame": 4, + "do_fail": 6, + "stack.pop": 1, + "TopResumePoint": 6, + "RestResumePoints": 2, + "stack.is_empty": 1, + "wont_be_done": 2, + "acquire_temp_slot": 15, + "slot_lval": 14, + "redoip_slot": 30, + "curfr": 18, + "non_persistent_temp_slot": 15, + "RedoipSlot": 33, + "maxfr": 42, + "redofr_slot": 14, + "RedofrSlot": 17, + "from_list": 13, + "prevfr_slot": 3, + "pick_stack_resume_point": 3, + "StackLabel": 9, + "LabelConst": 4, + "llconst_code_addr": 6, + "ite_region_info": 5, + "ite_info": 3, + "ite_hijack_type": 2, + "ite_no_hijack": 3, + "ite_temp_frame": 3, + "ite_quarter_hijack": 3, + "ite_half_hijack": 3, + "ite_full_hijack": 3, + "CondCodeModel": 4, + "MaybeEmbeddedFrameId": 5, + "HijackType": 12, + "MaybeRegionInfo": 12, + "MaxfrSlot": 30, + "TempFrameCode": 4, + "MaxfrCode": 7, + "EmbeddedFrameId": 2, + "slot_success_record": 1, + "persistent_temp_slot": 1, + "SuccessRecordSlot": 6, + "InitSuccessCode": 3, + "llconst_false": 1, + "ITEResumePoint": 2, + "ThenCode": 10, + "ElseCode": 7, + "ResumePoints0": 5, + "stack.det_pop": 1, + "HijackResumeKnown": 2, + "OldCondEnv": 2, + "RegionInfo": 2, + "EmbeddedStackFrameId": 2, + "ITEStackResumeCodeAddr": 2, + "llconst_true": 1, + "AfterRegionOp": 3, + "if_val": 1, + "unop": 1, + "logical_not": 1, + "code_label": 2, + "use_and_maybe_pop_region_frame": 1, + "region_ite_nondet_cond_fail": 1, + "goto": 2, + "maybe_pick_stack_resume_point": 1, + "ResumeMap0": 2, + "make_fake_resume_map": 5, + "do_redo": 1, + "is_empty": 1, + "Locns": 2, + "set.make_singleton_set": 1, + "reg": 1, + "region_commit_stack_frame": 5, + "AddTrailOps": 4, + "AddRegionOps": 5, + "CommitGoalInfo": 4, + "DetCommitInfo": 4, + "SaveMaxfrCode": 3, + "save_maxfr": 3, + "MaybeMaxfrSlot": 6, + "maybe_save_trail_info": 2, + "MaybeTrailSlots": 8, + "SaveTrailCode": 4, + "maybe_save_region_commit_frame": 4, + "MaybeRegionCommitFrameInfo": 8, + "SaveRegionCommitFrameCode": 2, + "SaveRegionCommitFrameCode.": 2, + "RestoreMaxfrCode": 3, + "restore_maxfr": 3, + "release_temp_slot": 1, + "maybe_restore_trail_info": 2, + "CommitTrailCode": 4, + "maybe_restore_region_commit_frame": 2, + "SuccessRegionCode": 3, + "_FailureRegionCode": 1, + "SuccessRegionCode.": 1, + "commit_hijack_info": 2, + "commit_temp_frame": 3, + "commit_quarter_hijack": 3, + "commit_half_hijack": 3, + "commit_full_hijack": 3, + "SemiCommitInfo": 4, + "clone_resume_point": 1, + "NewResumePoint": 4, + "stack.push": 1, + "StackLabelConst": 7, + "UseMinimalModelStackCopyCut": 4, + "Components": 4, + "foreign_proc_raw_code": 4, + "cannot_branch_away": 4, + "proc_affects_liveness": 2, + "live_lvals_info": 4, + "proc_does_not_affect_liveness": 2, + "MD": 4, + "proc_may_duplicate": 2, + "MarkCode": 3, + "foreign_proc_code": 2, + "proc_will_not_call_mercury": 2, + "HijackCode": 5, + "UseMinimalModel": 3, + "CutCode": 4, + "SuccessUndoCode": 5, + "FailureUndoCode": 5, + "AfterCommit": 2, + "ResumePointCode": 2, + "FailCode": 2, + "RestoreTrailCode": 2, + "FailureRegionCode": 2, + "SuccLabel": 3, + "GotoSuccLabel": 2, + "SuccLabelCode": 1, + "SuccessCode": 2, + "FailureCode": 2, + "SuccLabelCode.": 1, + "_ForwardLiveVarsBeforeGoal": 1, + "expr.": 1, + "token": 5, + "parse": 1, + "exprn/1": 1, + "xx": 1, + "scan": 16, + "rule": 3, + "exprn": 7, + "Num": 18, + "B": 8, + "factor": 6, + "/": 1, + "Chars": 2, + "Toks": 13, + "Toks0": 11, + "list__reverse": 1, + "Cs": 9, + "char__is_whitespace": 1, + "char__is_digit": 2, + "takewhile": 1, + "Digits": 2, + "Rest": 2, + "string__from_char_list": 1, + "NumStr": 2, + "string__det_to_int": 1 + }, + "Gosu": { + "<%!-->": 1, + "defined": 1, + "in": 3, + "Hello": 2, + "gst": 1, "<": 1, - "RETURNING": 1, - "STRINGTAB": 1, - "_lines.": 1, - "split": 1, - "cl_abap_char_utilities": 1, - "cr_lf": 1, - "into": 6, - "returning.": 1, - "Space": 2, - "concatenate": 4, - "csvvalue": 6, - "csvvalue.": 5, - "else.": 4, - "char": 2, - "endif.": 6, - "This": 1, - "indicates": 1, + "%": 2, + "@": 1, + "params": 1, + "(": 53, + "users": 2, + "Collection": 1, + "": 1, + ")": 54, + "<%>": 2, + "for": 2, + "user": 1, + "{": 28, + "user.LastName": 1, + "}": 28, + "user.FirstName": 1, + "user.Department": 1, + "package": 2, + "example": 2, + "enhancement": 1, + "String": 6, + "function": 11, + "toPerson": 1, + "Person": 7, + "var": 10, + "vals": 4, + "this.split": 1, + "return": 4, + "new": 6, + "[": 4, + "]": 4, + "as": 3, + "int": 2, + "Relationship.valueOf": 2, + "uses": 2, + "java.util.*": 1, + "java.io.File": 1, + "class": 1, + "extends": 1, + "Contact": 1, + "implements": 1, + "IEmailable": 2, + "_name": 4, + "_age": 3, + "Integer": 3, + "Age": 1, + "_relationship": 2, + "Relationship": 3, + "readonly": 1, + "RelationshipOfPerson": 1, + "delegate": 1, + "_emailHelper": 2, + "represents": 1, + "enum": 1, + "FRIEND": 1, + "FAMILY": 1, + "BUSINESS_CONTACT": 1, + "static": 7, + "ALL_PEOPLE": 2, + "HashMap": 1, + "": 1, + "construct": 1, + "name": 4, + "age": 4, + "relationship": 2, + "EmailHelper": 1, + "this": 1, + "property": 2, + "get": 1, + "Name": 3, + "set": 1, + "override": 1, + "getEmailName": 1, + "incrementAge": 1, + "+": 2, + "@Deprecated": 1, + "printPersonInfo": 1, + "print": 3, + "addPerson": 4, + "p": 5, + "if": 4, + "ALL_PEOPLE.containsKey": 2, + ".Name": 1, + "throw": 1, + "IllegalArgumentException": 1, + "p.Name": 2, + "addAllPeople": 1, + "contacts": 2, + "List": 1, + "": 1, + "contact": 3, + "typeis": 1, + "and": 1, + "not": 1, + "contact.Name": 1, + "getAllPeopleOlderThanNOrderedByName": 1, + "allPeople": 1, + "ALL_PEOPLE.Values": 3, + "allPeople.where": 1, + "-": 3, + "p.Age": 1, + ".orderBy": 1, + "loadPersonFromDB": 1, + "id": 1, + "using": 2, + "conn": 1, + "DBConnectionManager.getConnection": 1, + "stmt": 1, + "conn.prepareStatement": 1, + "stmt.setInt": 1, + "result": 1, + "stmt.executeQuery": 1, + "result.next": 1, + "result.getString": 2, + "result.getInt": 1, + "loadFromFile": 1, + "file": 3, + "File": 2, + "file.eachLine": 1, + "line": 1, + "line.HasContent": 1, + "line.toPerson": 1, + "saveToFile": 1, + "writer": 2, + "FileWriter": 1, + "PersonCSVTemplate.renderToString": 1, + "PersonCSVTemplate.render": 1, + "hello": 1 + }, + "JSON5": { + "{": 6, + "foo": 1, + "while": 1, + "true": 1, + "this": 1, + "here": 1, + "//": 2, + "inline": 1, + "comment": 1, + "hex": 1, + "xDEADbeef": 1, + "half": 1, + ".5": 1, + "delta": 1, + "+": 1, + "to": 1, + "Infinity": 1, + "and": 1, + "beyond": 1, + "finally": 1, + "oh": 1, + "[": 3, + "]": 3, + "}": 6, + "name": 1, + "version": 1, + "description": 1, + "keywords": 1, + "author": 1, + "contributors": 1, + "main": 1, + "bin": 1, + "dependencies": 1, + "devDependencies": 1, + "mocha": 1, + "scripts": 1, + "build": 1, + "test": 1, + "homepage": 1, + "repository": 1, + "type": 1, + "url": 1 + }, + "PHP": { + "<": 11, + "php": 12, + "namespace": 28, + "Symfony": 24, + "Component": 24, + "BrowserKit": 1, + ";": 1383, + "use": 23, + "DomCrawler": 5, + "Crawler": 2, + "Link": 3, + "Form": 4, + "Process": 1, + "PhpProcess": 2, + "abstract": 2, + "class": 21, + "Client": 1, + "{": 974, + "protected": 59, + "history": 15, + "cookieJar": 9, + "server": 20, + "request": 76, + "response": 33, + "crawler": 7, + "insulated": 7, + "redirect": 6, + "followRedirects": 5, + "public": 202, + "function": 205, + "__construct": 8, + "(": 2416, + "array": 296, + ")": 2417, + "History": 2, + "null": 164, + "CookieJar": 2, + "this": 928, + "-": 1271, + "setServerParameters": 2, + "new": 74, + "false": 154, + "true": 133, + "}": 972, + "followRedirect": 4, + "Boolean": 4, + "insulate": 1, + "if": 450, + "&&": 119, + "class_exists": 2, + "throw": 19, + "RuntimeException": 2, + "array_merge": 32, + "setServerParameter": 1, + "key": 64, + "value": 53, + "[": 672, + "]": 672, + "getServerParameter": 1, + "default": 9, + "return": 305, + "isset": 101, + "getHistory": 1, + "getCookieJar": 1, + "getCrawler": 1, + "getResponse": 1, + "getRequest": 1, + "click": 1, + "link": 10, + "instanceof": 8, + "submit": 2, + "getMethod": 6, + "getUri": 8, + "form": 7, + "values": 53, + "setValues": 2, + "getPhpValues": 2, + "getPhpFiles": 2, + "method": 31, + "uri": 23, + "parameters": 4, + "files": 7, + "content": 4, + "changeHistory": 4, + "getAbsoluteUri": 2, + "isEmpty": 2, + "current": 4, + "parse_url": 3, + "PHP_URL_HOST": 1, + "PHP_URL_SCHEME": 1, + "Request": 3, + "allValues": 1, + "filterRequest": 2, + "add": 7, + "doRequestInProcess": 2, + "else": 70, + "doRequest": 2, + "filterResponse": 2, + "updateFromResponse": 1, + "getHeader": 2, + "createCrawlerFromContent": 2, + "getContent": 2, + "process": 10, + "getScript": 2, + "sys_get_temp_dir": 2, + "run": 4, + "isSuccessful": 1, + "||": 52, + "preg_match": 6, + "getOutput": 3, + ".": 169, + "getErrorOutput": 2, + "unserialize": 1, + "LogicException": 4, + "type": 62, + "addContent": 1, + "back": 2, + "requestFromRequest": 4, + "forward": 2, + "reload": 1, + "empty": 96, + "restart": 1, + "clear": 2, + "strpos": 15, + "currentUri": 7, + "sprintf": 27, + "preg_replace": 4, + "path": 20, + "PHP_URL_PATH": 1, + "substr": 6, + "strrpos": 2, + "+": 12, + "path.": 1, + "getParameters": 1, + "getFiles": 3, + "getServer": 1, + "SHEBANG#!php": 3, + "echo": 2, + "php_help": 1, + "arg": 1, + "switch": 6, + "case": 31, + "output": 60, + "t": 26, + "url": 18, + "php_permission": 1, + "TRUE": 1, + "php_eval": 1, + "code": 4, + "global": 2, + "theme_path": 5, + "theme_info": 3, + "conf": 2, + "old_theme_path": 2, + "drupal_get_path": 1, + "dirname": 1, + "filename": 1, + "ob_start": 1, + "print": 1, + "eval": 1, + "ob_get_contents": 1, + "ob_end_clean": 1, + "_php_filter_tips": 1, + "filter": 1, + "format": 3, + "long": 2, + "FALSE": 2, + "base_url": 1, + "php_filter_info": 1, + "filters": 2, + "": 3, + "Object": 4, + "relational": 2, + "mapper": 2, + "DBO": 2, + "backed": 2, + "object": 14, + "data": 187, + "model": 34, + "for": 8, + "mapping": 1, + "database": 2, + "tables": 5, + "to": 6, + "Cake": 7, + "objects": 5, + "PHP": 1, + "versions": 1, + "5": 1, + "CakePHP": 6, + "tm": 6, + "Rapid": 2, + "Development": 2, + "Framework": 2, + "http": 14, + "cakephp": 4, + "org": 10, + "Copyright": 5, + "2005": 4, + "2012": 4, + "Software": 5, + "Foundation": 4, + "Inc": 4, + "cakefoundation": 4, + "Licensed": 2, + "under": 2, + "The": 4, + "MIT": 4, + "License": 4, + "Redistributions": 2, + "of": 10, + "must": 2, + "retain": 2, + "the": 11, + "above": 2, + "copyright": 5, + "notice": 2, + "Project": 2, + "package": 2, + "Model": 5, + "since": 2, + "v": 17, + "0": 4, + "10": 1, + "license": 6, + "www": 4, + "opensource": 2, + "licenses": 2, + "mit": 2, + "App": 20, + "uses": 46, + "ClassRegistry": 9, + "Utility": 6, + "Validation": 1, + "String": 5, + "Set": 9, + "BehaviorCollection": 2, + "ModelBehavior": 1, + "ConnectionManager": 2, + "Xml": 2, + "CakeEvent": 13, + "Event": 6, + "CakeEventListener": 4, + "CakeEventManager": 5, + "Automatically": 1, + "selects": 1, + "a": 11, + "table": 21, + "name": 181, + "based": 2, + "on": 4, + "pluralized": 1, + "lowercase": 1, + "i": 36, + "e": 18, + "User": 1, + "*": 25, + "is": 1, + "required": 2, + "have": 2, + "at": 1, + "least": 1, + "primary": 3, + "key.": 1, + "@package": 2, + "Cake.Model": 1, + "@link": 2, + "//book.cakephp.org/2.0/en/models.html": 1, + "*/": 2, + "extends": 3, + "implements": 3, + "useDbConfig": 7, + "useTable": 12, + "displayField": 4, + "id": 82, + "schemaName": 1, + "primaryKey": 38, + "_schema": 11, + "validate": 9, + "validationErrors": 50, + "validationDomain": 1, + "tablePrefix": 8, + "alias": 87, + "tableToModel": 4, + "cacheQueries": 1, + "belongsTo": 7, + "hasOne": 2, + "hasMany": 2, + "hasAndBelongsToMany": 24, + "actsAs": 2, + "Behaviors": 6, + "whitelist": 14, + "cacheSources": 7, + "findQueryType": 3, + "recursive": 9, + "order": 4, + "virtualFields": 8, + "_associationKeys": 2, + "_associations": 5, + "__backAssociation": 22, + "__backInnerAssociation": 1, + "__backOriginalAssociation": 1, + "__backContainableAssociation": 1, + "_insertID": 1, + "_sourceConfigured": 1, + "findMethods": 3, + "_eventManager": 12, + "ds": 3, + "parent": 14, + "is_array": 37, + "extract": 9, + "get_class": 4, + "addObject": 2, + "unset": 22, + "elseif": 31, + "is_subclass_of": 3, + "merge": 12, + "parentClass": 3, + "get_parent_class": 1, + "_mergeVars": 5, + "Inflector": 12, + "tableize": 2, + "_createLinks": 3, + "init": 4, + "implementedEvents": 2, + "getEventManager": 13, + "attach": 4, + "__call": 1, + "params": 34, + "result": 21, + "dispatchMethod": 1, + "getDataSource": 15, + "query": 102, + "__isset": 2, + "className": 27, + "foreach": 94, + "as": 96, + "break": 19, + "k": 7, + "relation": 7, + "continue": 7, + "list": 29, + "plugin": 31, + "pluginSplit": 12, + "assocKey": 13, + "dynamic": 2, + "isKeySet": 1, + "AppModel": 1, + "_constructLinkedModel": 2, + "count": 32, + "schema": 11, + "<=>": 3, + "2": 2, + "__get": 2, + "hasField": 7, + "setDataSource": 2, + "property_exists": 3, + "bindModel": 1, + "reset": 6, + "assoc": 75, + "assocName": 6, + "is_numeric": 7, + "unbindModel": 1, + "models": 6, + "explode": 9, + "trim": 3, + "_generateAssociation": 2, + "dynamicWith": 3, + "underscore": 3, + "singularize": 4, + "camelize": 3, + "sort": 1, + "setSource": 1, + "tableName": 4, + "db": 45, + "method_exists": 5, + "sources": 3, + "listSources": 1, + "in_array": 26, + "strtolower": 1, + "array_map": 2, + "MissingTableException": 1, + "set": 26, + "one": 19, + "two": 6, + "is_object": 2, + "SimpleXMLElement": 1, + "DOMNode": 3, + "_normalizeXmlData": 3, + "toArray": 1, + "reverse": 1, + "_setAliasData": 2, + "modelName": 3, + "fieldSet": 3, + "fieldName": 6, + "fieldValue": 7, + "deconstruct": 2, + "array_keys": 7, + "getAssociated": 4, + "field": 88, + "xml": 5, + "getColumnType": 4, + "useNewDate": 2, + "dateFields": 5, + "timeFields": 2, + "date": 9, + "val": 27, + "columns": 5, + "index": 5, + "str_replace": 3, + "array_values": 5, + "describe": 1, + "is_string": 7, + "getColumnTypes": 1, + "trigger_error": 1, + "__d": 1, + "E_USER_WARNING": 1, + "cols": 7, + "column": 10, + "startQuote": 4, + "endQuote": 4, + "checkVirtual": 3, + "n": 12, + "isVirtualField": 3, + "hasMethod": 2, + "getVirtualField": 1, + "create": 13, + "filterKey": 2, + "defaults": 6, + "properties": 4, + "read": 2, + "fields": 60, + "find": 17, + "conditions": 41, + "compact": 8, + "array_shift": 5, + "saveField": 1, + "options": 85, + "save": 9, + "fieldList": 1, + "_whitelist": 4, + "keyPresentAndEmpty": 2, + "array_key_exists": 11, + "exists": 6, + "validates": 60, + "updateCol": 6, + "colType": 4, + "time": 3, + "strtotime": 1, + "call_user_func": 2, + "event": 35, + "breakOn": 4, + "dispatch": 11, + "joined": 5, + "x": 4, + "y": 2, + "success": 10, + "created": 8, + "cache": 2, + "_prepareUpdateFields": 2, + "array_combine": 2, + "bool": 5, + "update": 2, + "fInfo": 4, + "isUUID": 5, + "j": 2, + "array_search": 1, + "uuid": 3, + "updateCounterCache": 6, + "_saveMulti": 2, + "_clearCache": 2, + "join": 22, + "joinModel": 8, + "keyInfo": 4, + "with": 5, + "withModel": 4, + "pluginName": 1, + "dbMulti": 6, + "newData": 5, + "newValues": 8, + "newJoins": 7, + "primaryAdded": 3, + "idField": 3, + "row": 17, + "strlen": 14, + "keepExisting": 3, + "associationForeignKey": 5, + "links": 4, + "oldLinks": 4, + "array_diff": 3, + "delete": 9, + "oldJoin": 4, + "insertMulti": 1, + "keys": 19, + "foreignKey": 11, + "fkQuoted": 3, + "escapeField": 6, + "intval": 4, + "updateAll": 3, + "foreignKeys": 3, + "info": 5, + "included": 3, + "array_intersect": 1, + "old": 2, + "saveAll": 1, + "numeric": 1, + "validateMany": 4, + "saveMany": 3, + "validateAssociated": 5, + "saveAssociated": 5, + "transactionBegun": 4, + "begin": 2, + "record": 10, + "saved": 18, + "commit": 2, + "rollback": 2, + "&": 19, + "associations": 9, + "association": 47, + "notEmpty": 4, + "_return": 3, + "recordData": 2, + "cascade": 10, + "isStopped": 4, + "_deleteDependent": 3, + "_deleteLinks": 3, + "_collectForeignKeys": 2, + "savedAssociatons": 3, + "deleteAll": 2, + "records": 6, + "callbacks": 4, + "ids": 8, + "_id": 2, + "getID": 2, + "hasAny": 1, + "buildQuery": 2, + "is_null": 1, + "results": 22, + "resetAssociations": 3, + "_filterResults": 2, + "ucfirst": 2, + "modParams": 2, + "_findFirst": 1, + "state": 15, + "_findCount": 1, + "calculate": 2, + "expression": 1, + "_findList": 1, + "tokenize": 1, + "lst": 4, + "combine": 1, + "_findNeighbors": 1, + "prevVal": 2, + "return2": 6, + "_findThreaded": 1, + "nest": 1, + "isUnique": 1, + "or": 9, + "func_get_args": 5, + "is_bool": 1, + "sql": 1, + "call_user_func_array": 3, + "errors": 9, + "invalidFields": 2, + "Controller": 4, + "9": 1, + "CakeResponse": 2, + "Network": 1, + "ComponentCollection": 2, + "View": 9, + "Application": 3, + "controller": 3, + "organization": 1, + "business": 1, + "logic": 1, + "Provides": 1, + "basic": 1, + "functionality": 1, + "such": 1, + "rendering": 1, + "views": 1, + "inside": 1, + "layouts": 1, + "automatic": 1, + "availability": 1, + "redirection": 2, + "and": 5, + "more": 1, + "Controllers": 2, + "should": 1, + "provide": 1, + "number": 1, + "action": 7, + "methods": 5, + "These": 1, + "are": 5, + "that": 2, + "not": 2, + "prefixed": 1, + "_": 1, + "part": 10, + "Each": 1, + "serves": 1, "an": 1, - "error": 1, - "CSV": 1, - "formatting": 1, - "text_ended": 1, - "message": 2, - "e003": 1, - "csv": 1, - "msg.": 2, - "raise": 1, - "exception": 1, - "exporting": 1, - "endwhile.": 2, - "append": 2, - "csvvalues.": 2, - "clear": 1, - "pos": 2, - "endclass.": 1 + "endpoint": 1, + "performing": 2, + "specific": 1, + "resource": 1, + "collection": 3, + "resources": 1, + "For": 2, + "example": 2, + "adding": 1, + "editing": 1, + "listing": 1, + "You": 2, + "can": 2, + "access": 1, + "using": 2, + "contains": 1, + "all": 11, + "POST": 1, + "GET": 1, + "FILES": 1, + "were": 1, + "request.": 1, + "After": 1, + "actions": 2, + "controllers": 2, + "responsible": 1, + "creating": 1, + "response.": 2, + "This": 1, + "usually": 1, + "takes": 1, + "generated": 1, + "possibly": 1, + "another": 1, + "action.": 1, + "In": 1, + "either": 1, + "allows": 1, + "you": 1, + "manipulate": 1, + "aspects": 1, + "by": 2, + "Dispatcher": 1, + "routing.": 1, + "By": 1, + "conventional": 1, + "names.": 1, + "/posts/index": 1, + "maps": 1, + "PostsController": 1, + "re": 1, + "map": 1, + "urls": 1, + "Router": 5, + "connect": 1, + "Cake.Controller": 1, + "@property": 8, + "AclComponent": 1, + "Acl": 1, + "AuthComponent": 1, + "Auth": 1, + "CookieComponent": 1, + "Cookie": 1, + "EmailComponent": 1, + "Email": 1, + "PaginatorComponent": 1, + "Paginator": 1, + "RequestHandlerComponent": 1, + "RequestHandler": 1, + "SecurityComponent": 1, + "Security": 1, + "SessionComponent": 1, + "Session": 1, + "//book.cakephp.org/2.0/en/controllers.html": 1, + "helpers": 1, + "_responseClass": 1, + "viewPath": 3, + "layoutPath": 1, + "viewVars": 3, + "view": 5, + "layout": 5, + "autoRender": 6, + "autoLayout": 2, + "Components": 7, + "components": 1, + "viewClass": 10, + "ext": 1, + "cacheAction": 1, + "passedArgs": 2, + "scaffold": 2, + "modelClass": 25, + "modelKey": 2, + "_mergeParent": 4, + "childMethods": 2, + "get_class_methods": 2, + "parentMethods": 2, + "CakeRequest": 5, + "setRequest": 2, + "loadModel": 3, + "load": 3, + "settings": 2, + "__set": 1, + "invokeAction": 1, + "try": 3, + "ReflectionMethod": 2, + "_isPrivateAction": 2, + "PrivateActionException": 1, + "invokeArgs": 1, + "catch": 3, + "ReflectionException": 1, + "_getScaffold": 2, + "MissingActionException": 1, + "privateAction": 4, + "isPublic": 1, + "prefixes": 4, + "prefix": 2, + "Scaffold": 1, + "_mergeControllerVars": 2, + "pluginController": 9, + "pluginDot": 4, + "mergeParent": 2, + "pluginVars": 3, + "appVars": 6, + "get_class_vars": 2, + "array_unshift": 2, + "_mergeUses": 3, + "constructClasses": 1, + "startupProcess": 1, + "shutdownProcess": 1, + "httpCodes": 3, + "MissingModelException": 1, + "status": 15, + "exit": 7, + "EXTR_OVERWRITE": 3, + "//TODO": 1, + "Remove": 1, + "following": 1, + "line": 10, + "when": 1, + "events": 1, + "fully": 1, + "migrated": 1, + "collectReturn": 1, + "_parseBeforeRedirect": 2, + "function_exists": 4, + "session_write_close": 1, + "header": 3, + "codes": 3, + "array_flip": 1, + "statusCode": 14, + "send": 1, + "_stop": 1, + "resp": 6, + "setAction": 1, + "args": 5, + "validateErrors": 1, + "render": 3, + "currentModel": 2, + "currentObject": 6, + "getObject": 1, + "is_a": 1, + "location": 1, + "body": 1, + "referer": 5, + "local": 2, + "disableCache": 2, + "flash": 1, + "message": 12, + "pause": 2, + "postConditions": 1, + "op": 9, + "exclusive": 2, + "cond": 5, + "arrayOp": 2, + "fieldOp": 11, + "strtoupper": 3, + "paginate": 3, + "scope": 2, + "beforeFilter": 1, + "beforeRender": 1, + "beforeRedirect": 1, + "afterFilter": 1, + "beforeScaffold": 2, + "_beforeScaffold": 1, + "afterScaffoldSave": 2, + "_afterScaffoldSave": 1, + "afterScaffoldSaveError": 2, + "_afterScaffoldSaveError": 1, + "scaffoldError": 2, + "_scaffoldError": 1, + "Console": 17, + "Input": 6, + "InputInterface": 4, + "ArgvInput": 2, + "ArrayInput": 3, + "InputDefinition": 2, + "InputOption": 15, + "InputArgument": 3, + "Output": 5, + "OutputInterface": 6, + "ConsoleOutput": 2, + "ConsoleOutputInterface": 2, + "Command": 6, + "HelpCommand": 2, + "ListCommand": 2, + "Helper": 3, + "HelperSet": 3, + "FormatterHelper": 2, + "DialogHelper": 2, + "private": 24, + "commands": 39, + "wantHelps": 4, + "runningCommand": 5, + "version": 8, + "catchExceptions": 4, + "autoExit": 4, + "definition": 3, + "helperSet": 6, + "getDefaultHelperSet": 2, + "getDefaultInputDefinition": 2, + "getDefaultCommands": 2, + "command": 41, + "input": 20, + "doRun": 2, + "Exception": 1, + "renderException": 3, + "getCode": 1, + "getCommandName": 2, + "hasParameterOption": 7, + "setDecorated": 2, + "setInteractive": 2, + "getHelperSet": 3, + "has": 7, + "inputStream": 2, + "get": 12, + "getInputStream": 1, + "posix_isatty": 1, + "setVerbosity": 2, + "VERBOSITY_QUIET": 1, + "VERBOSITY_VERBOSE": 2, + "writeln": 13, + "getLongVersion": 3, + "setHelperSet": 1, + "getDefinition": 2, + "getHelp": 2, + "messages": 16, + "getOptions": 1, + "option": 5, + "getName": 14, + "getShortcut": 2, + "getDescription": 3, + "implode": 8, + "PHP_EOL": 3, + "setCatchExceptions": 1, + "boolean": 4, + "setAutoExit": 1, + "setName": 1, + "getVersion": 3, + "setVersion": 1, + "register": 1, + "addCommands": 1, + "setApplication": 2, + "isEnabled": 1, + "getAliases": 3, + "InvalidArgumentException": 9, + "helpCommand": 3, + "setCommand": 1, + "getNamespaces": 3, + "namespaces": 4, + "extractNamespace": 7, + "array_unique": 4, + "array_filter": 2, + "findNamespace": 4, + "allNamespaces": 3, + "found": 4, + "abbrevs": 31, + "static": 6, + "getAbbreviations": 4, + "p": 3, + "alternatives": 10, + "findAlternativeNamespace": 2, + "getAbbreviationSuggestions": 4, + "searchName": 13, + "pos": 3, + "namespace.substr": 1, + "suggestions": 2, + "aliases": 8, + "findAlternativeCommands": 2, + "substr_count": 1, + "names": 3, + "len": 11, + "abbrev": 4, + "asText": 1, + "raw": 2, + "width": 7, + "sortCommands": 4, + "space": 5, + "space.": 1, + "asXml": 2, + "asDom": 2, + "dom": 12, + "DOMDocument": 2, + "formatOutput": 1, + "appendChild": 10, + "createElement": 6, + "commandsXML": 3, + "setAttribute": 2, + "namespacesXML": 3, + "namespaceArrayXML": 4, + "commandXML": 3, + "createTextNode": 1, + "node": 42, + "getElementsByTagName": 1, + "item": 9, + "importNode": 3, + "saveXml": 1, + "string": 5, + "encoding": 2, + "mb_detect_encoding": 1, + "mb_strlen": 1, + "do": 2, + "title": 3, + "getTerminalWidth": 3, + "PHP_INT_MAX": 1, + "lines": 3, + "preg_split": 1, + "getMessage": 1, + "str_split": 1, + "max": 2, + "str_repeat": 2, + "title.str_repeat": 1, + "line.str_repeat": 1, + "message.": 1, + "getVerbosity": 1, + "trace": 12, + "getTrace": 1, + "getFile": 2, + "getLine": 2, + "file": 3, + "while": 6, + "getPrevious": 1, + "getSynopsis": 1, + "defined": 5, + "ansicon": 4, + "getenv": 2, + "getSttyColumns": 3, + "match": 4, + "getTerminalHeight": 1, + "getFirstArgument": 1, + "REQUIRED": 1, + "VALUE_NONE": 7, + "descriptorspec": 2, + "proc_open": 1, + "pipes": 4, + "is_resource": 1, + "stream_get_contents": 1, + "fclose": 2, + "proc_close": 1, + "namespacedCommands": 5, + "ksort": 2, + "limit": 3, + "parts": 4, + "array_pop": 1, + "array_slice": 1, + "callback": 5, + "findAlternatives": 3, + "lev": 6, + "levenshtein": 2, + "3": 1, + "/": 1, + "asort": 1, + "Field": 9, + "FormField": 3, + "ArrayAccess": 1, + "button": 6, + "initialize": 2, + "getFormNode": 1, + "getValues": 3, + "isDisabled": 2, + "FileFormField": 3, + "hasValue": 1, + "getValue": 2, + "qs": 4, + "http_build_query": 3, + "parse_str": 2, + "queryString": 2, + "sep": 1, + "sep.": 1, + "getRawUri": 1, + "getAttribute": 10, + "remove": 4, + "offsetExists": 1, + "offsetGet": 1, + "offsetSet": 1, + "offsetUnset": 1, + "setNode": 1, + "nodeName": 13, + "parentNode": 1, + "FormFieldRegistry": 2, + "document": 6, + "root": 4, + "xpath": 2, + "DOMXPath": 1, + "hasAttribute": 1, + "InputFormField": 2, + "ChoiceFormField": 2, + "addChoice": 1, + "TextareaFormField": 1, + "base": 8, + "segments": 13, + "getSegments": 4, + "target": 20, + "self": 1, + "setValue": 1, + "walk": 3, + "registry": 4, + "m": 5, + "Yii": 3, + "console": 3, + "bootstrap": 1, + "yiiframework": 2, + "com": 2, + "c": 1, + "2008": 1, + "LLC": 1, + "YII_DEBUG": 2, + "define": 2, + "fcgi": 1, + "doesn": 1, + "STDIN": 3, + "fopen": 1, + "stdin": 1, + "r": 1, + "require": 3, + "__DIR__": 3, + "vendor": 2, + "yiisoft": 1, + "yii2": 1, + "yii": 2, + "autoload": 1, + "config": 3, + "application": 2 + }, + "Moocode": { + ";": 505, + "while": 15, + "(": 600, + "read": 1, + "player": 2, + ")": 593, + "endwhile": 14, + "I": 1, + "M": 1, + "P": 1, + "O": 1, + "R": 1, + "T": 2, + "A": 1, + "N": 1, + "The": 2, + "following": 2, + "code": 43, + "cannot": 1, + "be": 1, + "used": 1, + "as": 28, + "is.": 1, + "You": 1, + "will": 1, + "need": 1, + "to": 1, + "rewrite": 1, + "functionality": 1, + "that": 3, + "is": 6, + "not": 2, + "present": 1, + "in": 43, + "your": 1, + "server/core.": 1, + "most": 1, + "straight": 1, + "-": 98, + "forward": 1, + "target": 7, + "other": 1, + "than": 1, + "Stunt/Improvise": 1, + "a": 12, + "server/core": 1, + "provides": 1, + "map": 5, + "datatype": 1, + "and": 1, + "anonymous": 1, + "objects.": 1, + "Installation": 1, + "my": 1, + "server": 1, + "uses": 1, + "the": 4, + "object": 1, + "numbers": 1, + "#36819": 1, + "MOOcode": 4, + "Experimental": 2, + "Language": 2, + "Package": 2, + "#36820": 1, + "Changelog": 1, + "#36821": 1, + "Dictionary": 1, + "#36822": 1, + "Compiler": 2, + "#38128": 1, + "Syntax": 4, + "Tree": 1, + "Pretty": 1, + "Printer": 1, + "#37644": 1, + "Tokenizer": 2, + "Prototype": 25, + "#37645": 1, + "Parser": 2, + "#37648": 1, + "Symbol": 2, + "#37649": 1, + "Literal": 1, + "#37650": 1, + "Statement": 8, + "#37651": 1, + "Operator": 11, + "#37652": 1, + "Control": 1, + "Flow": 1, + "#37653": 1, + "Assignment": 2, + "#38140": 1, + "Compound": 1, + "#38123": 1, + "Prefix": 1, + "#37654": 1, + "Infix": 1, + "#37655": 1, + "Name": 1, + "#37656": 1, + "Bracket": 1, + "#37657": 1, + "Brace": 1, + "#37658": 1, + "If": 1, + "#38119": 1, + "For": 1, + "#38120": 1, + "Loop": 1, + "#38126": 1, + "Fork": 1, + "#38127": 1, + "Try": 1, + "#37659": 1, + "Invocation": 1, + "#37660": 1, + "Verb": 1, + "Selector": 2, + "#37661": 1, + "Property": 1, + "#38124": 1, + "Error": 1, + "Catching": 1, + "#38122": 1, + "Positional": 1, + "#38141": 1, + "From": 1, + "#37662": 1, + "Utilities": 1, + "#36823": 1, + "Tests": 4, + "#36824": 1, + "#37646": 1, + "#37647": 1, + ".": 30, + "parent": 1, + "plastic.tokenizer_proto": 4, + "@program": 29, + "_": 4, + "_ensure_prototype": 4, + "application/x": 27, + "moocode": 27, + "typeof": 11, + "this": 114, + "OBJ": 3, + "||": 19, + "raise": 23, + "E_INVARG": 3, + "_ensure_instance": 7, + "ANON": 2, + "plastic.compiler": 3, + "_lookup": 2, + "private": 1, + "{": 112, + "name": 9, + "}": 112, + "args": 26, + "if": 90, + "value": 73, + "this.variable_map": 3, + "[": 99, + "]": 102, + "E_RANGE": 17, + "return": 61, + "else": 45, + "tostr": 51, + "random": 3, + "this.reserved_names": 1, + "endif": 93, + "compile": 1, + "source": 32, + "options": 3, + "tokenizer": 6, + "this.plastic.tokenizer_proto": 2, + "create": 16, + "parser": 89, + "this.plastic.parser_proto": 2, + "compiler": 2, + "try": 2, + "statements": 13, + "except": 2, + "ex": 4, + "ANY": 3, + ".tokenizer.row": 1, + "endtry": 2, + "for": 31, + "statement": 29, + "statement.type": 10, + "@source": 3, + "p": 82, + "@compiler": 1, + "endfor": 31, + "ticks_left": 4, + "<": 13, + "seconds_left": 4, + "&&": 39, + "suspend": 4, + "statement.value": 20, + "elseif": 41, + "_generate": 1, + "isa": 21, + "this.plastic.sign_operator_proto": 1, + "|": 9, + "statement.first": 18, + "statement.second": 13, + "this.plastic.control_flow_statement_proto": 1, + "first": 22, + "statement.id": 3, + "this.plastic.if_statement_proto": 1, + "s": 47, + "respond_to": 9, + "@code": 28, + "@this": 13, + "+": 39, + "i": 29, + "length": 11, + "LIST": 6, + "this.plastic.for_statement_proto": 1, + "statement.subtype": 2, + "this.plastic.loop_statement_proto": 1, + "prefix": 4, + "this.plastic.fork_statement_proto": 1, + "this.plastic.try_statement_proto": 1, + "x": 9, + "@x": 3, + "join": 6, + "this.plastic.assignment_operator_proto": 1, + "statement.first.type": 1, + "res": 19, + "rest": 3, + "v": 17, + "statement.first.value": 1, + "v.type": 2, + "v.first": 2, + "v.second": 1, + "this.plastic.bracket_operator_proto": 1, + "statement.third": 4, + "this.plastic.brace_operator_proto": 1, + "this.plastic.invocation_operator_proto": 1, + "@a": 2, + "statement.second.type": 2, + "this.plastic.property_selector_operator_proto": 1, + "this.plastic.error_catching_operator_proto": 1, + "second": 18, + "this.plastic.literal_proto": 1, + "toliteral": 1, + "this.plastic.positional_symbol_proto": 1, + "this.plastic.prefix_operator_proto": 3, + "this.plastic.infix_operator_proto": 1, + "this.plastic.traditional_ternary_operator_proto": 1, + "this.plastic.name_proto": 1, + "plastic.printer": 2, + "_print": 4, + "indent": 4, + "result": 7, + "item": 2, + "@result": 2, + "E_PROPNF": 1, + "print": 1, + "instance": 59, + "instance.row": 1, + "instance.column": 1, + "instance.source": 1, + "advance": 16, + "this.token": 21, + "this.source": 3, + "row": 23, + "this.row": 2, + "column": 63, + "this.column": 2, + "eol": 5, + "block_comment": 6, + "inline_comment": 4, + "loop": 14, + "len": 3, + "continue": 16, + "next_two": 4, + "column..column": 1, + "c": 44, + "break": 6, + "re": 1, + "not.": 1, + "Worse": 1, + "*": 4, + "valid": 2, + "error": 6, + "like": 4, + "E_PERM": 4, + "treated": 2, + "literal": 2, + "an": 2, + "invalid": 2, + "E_FOO": 1, + "variable.": 1, + "Any": 1, + "starts": 1, + "with": 1, + "characters": 1, + "*now*": 1, + "but": 1, + "errors": 1, + "are": 1, + "errors.": 1, + "*/": 1, + "<=>": 8, + "z": 4, + "col1": 6, + "mark": 2, + "start": 2, + "1": 13, + "9": 4, + "col2": 4, + "chars": 21, + "index": 2, + "E_": 1, + "token": 24, + "type": 9, + "this.errors": 1, + "col1..col2": 2, + "toobj": 1, + "float": 4, + "0": 1, + "cc": 1, + "e": 1, + "tofloat": 1, + "toint": 1, + "esc": 1, + "q": 1, + "col1..column": 1, + "plastic.parser_proto": 3, + "@options": 1, + "instance.tokenizer": 1, + "instance.symbols": 1, + "plastic": 1, + "this.plastic": 1, + "symbol": 65, + "plastic.name_proto": 1, + "plastic.literal_proto": 1, + "plastic.operator_proto": 10, + "plastic.prefix_operator_proto": 1, + "plastic.error_catching_operator_proto": 3, + "plastic.assignment_operator_proto": 1, + "plastic.compound_assignment_operator_proto": 5, + "plastic.traditional_ternary_operator_proto": 2, + "plastic.infix_operator_proto": 13, + "plastic.sign_operator_proto": 2, + "plastic.bracket_operator_proto": 1, + "plastic.brace_operator_proto": 1, + "plastic.control_flow_statement_proto": 3, + "plastic.if_statement_proto": 1, + "plastic.for_statement_proto": 1, + "plastic.loop_statement_proto": 2, + "plastic.fork_statement_proto": 1, + "plastic.try_statement_proto": 1, + "plastic.from_statement_proto": 2, + "plastic.verb_selector_operator_proto": 2, + "plastic.property_selector_operator_proto": 2, + "plastic.invocation_operator_proto": 1, + "id": 14, + "bp": 3, + "proto": 4, + "nothing": 1, + "this.plastic.symbol_proto": 2, + "this.symbols": 4, + "clone": 2, + "this.token.type": 1, + "this.token.value": 1, + "this.token.eol": 1, + "operator": 1, + "variable": 1, + "identifier": 1, + "keyword": 1, + "Unexpected": 1, + "end": 2, + "Expected": 1, + "t": 1, + "call": 1, + "nud": 2, + "on": 1, + "@definition": 1, + "new": 4, + "pop": 4, + "delete": 1, + "plastic.utilities": 6, + "suspend_if_necessary": 4, + "parse_map_sequence": 1, + "separator": 6, + "infix": 3, + "terminator": 6, + "symbols": 7, + "ids": 6, + "@ids": 2, + "push": 3, + "@symbol": 2, + ".id": 13, + "key": 7, + "expression": 19, + "@map": 1, + "parse_list_sequence": 2, + "list": 3, + "@list": 1, + "validate_scattering_pattern": 1, + "pattern": 5, + "state": 8, + "element": 1, + "element.type": 3, + "element.id": 2, + "element.first.type": 2, + "children": 4, + "node": 3, + "node.value": 1, + "@children": 1, + "match": 1, + "root": 2, + "keys": 3, + "matches": 3, + "stack": 4, + "next": 2, + "top": 5, + "@stack": 2, + "top.": 1, + "@matches": 1, + "plastic.symbol_proto": 2, + "opts": 2, + "instance.id": 1, + "instance.value": 1, + "instance.bp": 1, + "k": 3, + "instance.": 1, + "parents": 3, + "ancestor": 2, + "ancestors": 1, + "property": 1, + "properties": 1, + "this.type": 8, + "this.first": 8, + "import": 8, + "this.second": 7, + "left": 2, + "this.third": 3, + "sequence": 2, + "led": 4, + "this.bp": 2, + "second.type": 2, + "make_identifier": 4, + "first.id": 1, + "parser.symbols": 2, + "reserve_keyword": 2, + "this.plastic.utilities": 1, + "third": 4, + "third.id": 2, + "second.id": 1, + "std": 1, + "reserve_statement": 1, + "types": 7, + ".type": 1, + "target.type": 3, + "target.value": 3, + "target.id": 4, + "temp": 4, + "temp.id": 1, + "temp.first.id": 1, + "temp.first.type": 2, + "temp.second.type": 1, + "temp.first": 2, + "imports": 5, + "import.type": 2, + "@imports": 2, + "parser.plastic.invocation_operator_proto": 1, + "temp.type": 1, + "parser.plastic.name_proto": 2, + "temp.first.value": 1, + "temp.second": 1, + "first.type": 1, + "parser.imports": 2, + "import.id": 2, + "parser.plastic.assignment_operator_proto": 1, + "result.type": 1, + "result.first": 1, + "result.second": 1, + "toy": 3, + "wind": 1, + "this.wound": 8, + "tell": 1, + "this.name": 4, + "player.location": 1, + "announce": 1, + "player.name": 1, + "@verb": 1, + "do_the_work": 3, + "none": 1, + "object_utils": 1, + "this.location": 3, + "room": 1, + "announce_all": 2, + "continue_msg": 1, + "fork": 1, + "endfork": 1, + "wind_down_msg": 1 }, "Agda": { "module": 3, @@ -1101,242 +5457,8868 @@ "zero": 1, "Nat": 1 }, - "Alloy": { - "module": 3, - "examples/systems/file_system": 1, - "abstract": 2, - "sig": 20, - "Object": 10, - "{": 54, - "}": 60, - "Name": 2, - "File": 1, - "extends": 10, - "some": 3, - "d": 3, - "Dir": 8, - "|": 19, - "this": 14, - "in": 19, - "d.entries.contents": 1, - "entries": 3, - "set": 10, - "DirEntry": 2, - "parent": 3, - "lone": 6, - "this.": 4, - "@contents.": 1, - "@entries": 1, - "all": 16, - "e1": 2, - "e2": 2, - "e1.name": 1, - "e2.name": 1, - "@parent": 2, - "Root": 5, - "one": 8, - "no": 8, - "Cur": 1, - "name": 1, - "contents": 2, - "pred": 16, - "OneParent_buggyVersion": 2, - "-": 41, - "d.parent": 2, - "OneParent_correctVersion": 2, - "(": 12, - "&&": 2, - "contents.d": 1, - ")": 9, - "NoDirAliases": 3, - "o": 1, - "o.": 1, - "check": 6, - "for": 7, - "expect": 6, - "examples/systems/marksweepgc": 1, - "Node": 10, - "HeapState": 5, - "left": 3, - "right": 1, - "marked": 1, - "freeList": 1, - "clearMarks": 1, - "[": 82, - "hs": 16, - ".marked": 3, - ".right": 4, - "hs.right": 3, - "fun": 1, - "reachable": 1, - "n": 5, - "]": 80, - "+": 14, - "n.": 1, - "hs.left": 2, - "mark": 1, - "from": 2, - "hs.reachable": 1, - "setFreeList": 1, - ".freeList.*": 3, - ".left": 5, - "hs.marked": 1, - "GC": 1, - "root": 5, - "assert": 3, - "Soundness1": 2, - "h": 9, - "live": 3, - "h.reachable": 1, - "h.right": 1, - "Soundness2": 2, - ".reachable": 2, - "h.GC": 1, - ".freeList": 1, - "Completeness": 1, - "examples/systems/views": 1, - "open": 2, - "util/ordering": 1, - "State": 16, - "as": 2, - "so": 1, - "util/relation": 1, - "rel": 1, - "Ref": 19, - "t": 16, - "b": 13, - "v": 25, - "views": 2, - "when": 1, - "is": 1, - "view": 2, - "of": 3, - "type": 1, - "backing": 1, - "dirty": 3, - "contains": 1, - "refs": 7, - "that": 1, - "have": 1, - "been": 1, - "invalidated": 1, - "obj": 1, - "ViewType": 8, - "anyviews": 2, - "visualization": 1, - "ViewType.views": 1, - "Map": 2, - "keys": 3, - "map": 2, - "s": 6, - "Ref.map": 1, - "s.refs": 3, - "MapRef": 4, - "fact": 4, - "State.obj": 3, + "Tea": { + "<%>": 1, + "template": 1, + "foo": 1 + }, + "Scala": { + "name": 4, + "version": 1, + "organization": 1, + "libraryDependencies": 3, + "+": 49, + "%": 12, + "Seq": 3, + "(": 67, + ")": 67, + "{": 21, + "val": 6, + "libosmVersion": 4, + "from": 1, + "}": 22, + "maxErrors": 1, + "pollInterval": 1, + "javacOptions": 1, + "scalacOptions": 1, + "scalaVersion": 1, + "initialCommands": 2, + "in": 12, + "console": 1, + "mainClass": 2, + "Compile": 4, + "packageBin": 1, + "Some": 6, + "run": 1, + "watchSources": 1, + "<+=>": 1, + "baseDirectory": 1, + "map": 1, + "_": 2, + "input": 1, + "add": 2, + "a": 4, + "maven": 2, + "style": 2, + "repository": 2, + "resolvers": 2, + "at": 4, + "url": 3, + "sequence": 1, + "of": 1, + "repositories": 1, + "define": 1, + "the": 5, + "to": 7, + "publish": 1, + "publishTo": 1, + "set": 2, + "Ivy": 1, + "logging": 1, + "be": 1, + "highest": 1, + "level": 1, + "ivyLoggingLevel": 1, + "UpdateLogging": 1, + "Full": 1, + "disable": 1, + "updating": 1, + "dynamic": 1, + "revisions": 1, + "including": 1, + "SNAPSHOT": 1, + "versions": 1, + "offline": 1, + "true": 5, + "prompt": 1, + "for": 1, + "this": 1, + "build": 1, + "include": 1, + "project": 1, + "id": 1, + "shellPrompt": 2, + "ThisBuild": 1, + "state": 3, + "Project.extract": 1, + ".currentRef.project": 1, + "System.getProperty": 1, + "showTiming": 1, + "false": 7, + "showSuccess": 1, + "timingFormat": 1, + "import": 9, + "java.text.DateFormat": 1, + "DateFormat.getDateTimeInstance": 1, + "DateFormat.SHORT": 2, + "crossPaths": 1, + "fork": 2, + "Test": 3, + "javaOptions": 1, + "parallelExecution": 2, + "javaHome": 1, + "file": 3, + "scalaHome": 1, + "aggregate": 1, + "clean": 1, + "logLevel": 2, + "compile": 1, + "Level.Warn": 2, + "persistLogLevel": 1, + "Level.Debug": 1, + "traceLevel": 2, + "unmanagedJars": 1, + "publishArtifact": 2, + "packageDoc": 2, + "artifactClassifier": 1, + "retrieveManaged": 1, + "credentials": 2, + "Credentials": 2, + "Path.userHome": 1, + "/": 2, + "math.random": 1, + "scala.language.postfixOps": 1, + "scala.util._": 1, + "scala.util.": 1, + "Try": 1, + "Success": 2, + "Failure": 2, + "scala.concurrent._": 1, + "duration._": 1, + "ExecutionContext.Implicits.global": 1, + "scala.concurrent.": 1, + "ExecutionContext": 1, + "CanAwait": 1, + "OnCompleteRunnable": 1, + "TimeoutException": 1, + "ExecutionException": 1, + "blocking": 3, + "object": 3, + "node11": 1, + "println": 8, + "//": 29, + "Welcome": 1, + "Scala": 1, + "worksheet": 1, + "def": 10, + "retry": 3, + "[": 11, + "T": 8, + "]": 11, + "n": 3, + "Int": 11, + "block": 8, + "Future": 5, + "ns": 1, "Iterator": 2, - "done": 3, - "lastRef": 2, - "IteratorRef": 5, - "Set": 2, - "elts": 2, - "SetRef": 5, - "KeySetView": 6, - "State.views": 1, - "IteratorView": 3, - "s.views": 2, + ".iterator": 1, + "attempts": 1, + "ns.map": 1, + "failed": 2, + "Future.failed": 1, + "new": 1, + "Exception": 2, + "attempts.foldLeft": 1, + "fallbackTo": 1, + "scala.concurrent.Future": 1, + "scala.concurrent.Fut": 1, + "|": 19, + "ure": 1, + "rb": 3, + "i": 9, + "Thread.sleep": 2, + "*random.toInt": 1, + "i.toString": 5, + "ri": 2, + "onComplete": 1, + "case": 8, + "s": 1, + "s.toString": 1, + "t": 1, + "t.toString": 1, + "r": 1, + "r.toString": 1, + "Unit": 1, + "toList": 1, + ".foreach": 1, + "Iteration": 5, + "java.lang.Exception": 1, + "Hi": 10, + "-": 5, + "SHEBANG#!sh": 2, + "exec": 2, + "scala": 2, + "#": 2, + "Beers": 1, + "extends": 1, + "Application": 1, + "bottles": 3, + "qty": 12, + "f": 4, + "String": 5, + "higher": 1, + "order": 1, + "functions": 2, + "match": 2, + "x": 3, + "beers": 3, + "sing": 3, + "implicit": 3, + "song": 3, + "takeOne": 2, + "nextQty": 2, + "nested": 1, + "if": 2, + "else": 2, + "refrain": 2, + ".capitalize": 1, + "tail": 1, + "recursion": 1, + "headOfSong": 1, + "parameter": 1, + "HelloWorld": 1, + "main": 1, + "args": 1, + "Array": 1 + }, + "Rebol": { + "Rebol": 4, + "[": 54, + "]": 61, + "hello": 8, + "func": 5, + "print": 4, + "Title": 2, + "re": 20, + "s": 5, + "/i": 1, + "rejoin": 1, + "compose": 1, + "(": 30, + ")": 33, + "either": 1, + "i": 1, + ";": 19, + "little": 1, + "helper": 1, + "for": 4, + "standard": 1, + "grammar": 1, + "regex": 2, + "used": 3, + "date": 6, + "-": 26, + "naive": 1, + "string": 1, + "{": 8, + "}": 8, + "|": 22, + "S": 3, + "*": 7, + "<(?:[^^\\>": 1, + ".": 4, + "d": 3, + "+": 6, + "/": 5, + "@": 1, + "%": 2, + "A": 3, + "F": 1, + "url": 1, + "PR_LITERAL": 10, + "string_url": 1, + "email": 1, + "string_email": 1, + "binary": 1, + "binary_base_two": 1, + "binary_base_sixty_four": 1, + "binary_base_sixteen": 1, + "re/i": 2, + "issue": 1, + "string_issue": 1, + "values": 1, + "value_date": 1, + "time": 2, + "value_time": 1, + "tuple": 1, + "value_tuple": 1, + "pair": 1, + "value_pair": 1, + "number": 2, + "PR": 1, + "Za": 2, + "z0": 2, + "<[=>": 1, + "rebol": 1, + "red": 1, + "/system": 1, + "world": 1, + "topaz": 1, + "true": 1, + "false": 1, + "yes": 1, + "no": 3, + "on": 1, + "off": 1, + "none": 1, + "#": 1, + "block": 5, + "REBOL": 5, + "author": 1, + "System": 1, + "Rights": 1, + "Copyright": 1, + "Technologies": 2, + "is": 4, + "a": 2, + "trademark": 1, + "of": 1, + "License": 2, + "Licensed": 1, + "under": 1, + "the": 3, + "Apache": 1, + "Version": 1, + "See": 1, + "http": 1, + "//www.apache.org/licenses/LICENSE": 1, + "Purpose": 1, + "These": 1, + "are": 2, + "to": 2, + "define": 1, + "natives": 1, + "and": 2, + "actions.": 1, + "Bind": 1, + "attributes": 1, + "this": 1, + "BIND_SET": 1, + "SHALLOW": 1, + "Special": 1, + "as": 1, + "spec": 3, + "datatype": 2, + "test": 1, + "functions": 1, + "e.g.": 1, + "value": 1, + "any": 1, + "type": 1, + "The": 1, + "native": 5, + "function": 3, + "must": 1, + "be": 1, + "defined": 1, + "first.": 1, + "This": 1, + "special": 1, + "boot": 1, + "created": 1, + "manually": 1, + "within": 1, + "C": 1, + "code.": 1, + "Creates": 2, + "internal": 2, + "usage": 2, + "only": 2, + "check": 2, + "required": 2, + "we": 2, + "know": 2, + "it": 2, + "correct": 2, + "action": 2 + }, + "CoffeeScript": { + "#": 35, + "async": 1, + "require": 21, + "fs": 2, + "nack": 1, + "{": 31, + "bufferLines": 3, + "pause": 2, + "sourceScriptEnv": 3, + "}": 34, + "join": 8, + "exists": 5, + "basename": 2, + "resolve": 2, + "module.exports": 1, + "class": 11, + "RackApplication": 1, + "constructor": 6, + "(": 193, + "@configuration": 1, + "@root": 8, + "@firstHost": 1, + ")": 196, + "-": 107, + "@logger": 1, + "@configuration.getLogger": 1, + "@readyCallbacks": 3, + "[": 134, + "]": 134, + "@quitCallbacks": 3, + "@statCallbacks": 3, + "ready": 1, + "callback": 35, + "if": 102, + "@state": 11, + "is": 36, + "else": 53, + "@readyCallbacks.push": 1, + "@initialize": 2, + "quit": 1, + "@quitCallbacks.push": 1, + "@terminate": 2, + "queryRestartFile": 1, + "fs.stat": 1, + "err": 20, + "stats": 1, + "@mtime": 5, + "null": 15, + "false": 4, + "lastMtime": 2, + "stats.mtime.getTime": 1, + "isnt": 7, + "setPoolRunOnceFlag": 1, + "unless": 19, + "@statCallbacks.length": 1, + "alwaysRestart": 2, + "@pool.runOnce": 1, + "statCallback": 2, + "for": 14, + "in": 32, + "@statCallbacks.push": 1, + "loadScriptEnvironment": 1, + "env": 18, + "async.reduce": 1, + "filename": 6, + "script": 7, + "scriptExists": 2, + "loadRvmEnvironment": 1, + "rvmrcExists": 2, + "rvm": 1, + "@configuration.rvmPath": 1, + "rvmExists": 2, + "libexecPath": 1, + "before": 2, + ".trim": 1, + "loadEnvironment": 1, + "@queryRestartFile": 2, + "@loadScriptEnvironment": 1, + "@configuration.env": 1, + "then": 24, + "@loadRvmEnvironment": 1, + "initialize": 1, + "@quit": 3, + "return": 29, + "@loadEnvironment": 1, + "@logger.error": 3, + "err.message": 2, + "@pool": 2, + "nack.createPool": 1, + "size": 1, + ".POW_WORKERS": 1, + "@configuration.workers": 1, + "idle": 1, + ".POW_TIMEOUT": 1, + "@configuration.timeout": 1, + "*": 21, + "@pool.stdout": 1, + "line": 6, + "@logger.info": 1, + "@pool.stderr": 1, + "@logger.warning": 1, + "@pool.on": 2, + "process": 2, + "@logger.debug": 2, + "readyCallback": 2, + "terminate": 1, + "@ready": 3, + "@pool.quit": 1, + "quitCallback": 2, "handle": 1, - "possibility": 1, - "modifying": 1, - "an": 1, - "object": 1, - "and": 1, - "its": 1, - "at": 1, - "once": 1, - "*": 1, - "should": 1, - "we": 1, - "limit": 1, - "frame": 1, - "conds": 1, - "to": 1, - "non": 1, - "*/": 1, - "modifies": 5, - "pre": 15, - "post": 14, - "rs": 4, - "let": 5, - "vr": 1, - "pre.views": 8, - "mods": 3, - "rs.*vr": 1, - "r": 3, - "pre.refs": 6, - "pre.obj": 10, - "post.obj": 7, - "viewFrame": 4, - "post.dirty": 1, - "pre.dirty": 1, - "allocates": 5, - "&": 3, - "post.refs": 1, - ".map": 3, - ".elts": 3, - "dom": 1, - "<:>": 1, - "setRefs": 1, - "MapRef.put": 1, + "req": 4, + "res": 3, + "next": 3, + "resume": 2, + "@setPoolRunOnceFlag": 1, + "@restartIfNecessary": 1, + "req.proxyMetaVariables": 1, + "SERVER_PORT": 1, + "@configuration.dstPort.toString": 1, + "try": 3, + "@pool.proxy": 1, + "finally": 2, + "restart": 1, + "restartIfNecessary": 1, + "mtimeChanged": 2, + "@restart": 1, + "writeRvmBoilerplate": 1, + "powrc": 3, + "boilerplate": 2, + "@constructor.rvmBoilerplate": 1, + "fs.readFile": 1, + "contents": 2, + "contents.indexOf": 1, + "fs.writeFile": 1, + "@rvmBoilerplate": 1, + "Rewriter": 2, + "INVERSES": 2, + "count": 5, + "starts": 1, + "compact": 1, + "last": 3, + "exports.Lexer": 1, + "Lexer": 3, + "tokenize": 1, + "code": 20, + "opts": 1, + "WHITESPACE.test": 1, + "code.replace": 1, + "/": 44, + "r/g": 1, + ".replace": 3, + "TRAILING_SPACES": 2, + "@code": 1, + "The": 7, + "remainder": 1, + "of": 7, + "the": 4, + "source": 5, + "code.": 1, + "@line": 4, + "opts.line": 1, + "or": 22, + "current": 5, + "line.": 1, + "@indent": 3, + "indentation": 3, + "level.": 3, + "@indebt": 1, + "over": 1, + "at": 2, + "@outdebt": 1, + "under": 1, + "outdentation": 1, + "@indents": 1, + "stack": 4, + "all": 1, + "levels.": 1, + "@ends": 1, + "pairing": 1, + "up": 1, + "tokens.": 1, + "@tokens": 7, + "Stream": 1, + "parsed": 1, + "tokens": 5, + "form": 1, + "value": 25, + ".": 13, + "i": 8, + "while": 4, + "@chunk": 9, + "i..": 1, + "+": 31, + "@identifierToken": 1, + "@commentToken": 1, + "@whitespaceToken": 1, + "@lineToken": 1, + "@heredocToken": 1, + "@stringToken": 1, + "@numberToken": 1, + "@regexToken": 1, + "@jsToken": 1, + "@literalToken": 1, + "@closeIndentation": 1, + "@error": 10, + "tag": 33, + "@ends.pop": 1, + "opts.rewrite": 1, + "off": 1, + "new": 12, + ".rewrite": 1, + "identifierToken": 1, + "match": 23, + "IDENTIFIER.exec": 1, + "input": 1, + "id": 16, + "colon": 3, + "and": 20, + "@tag": 3, + "@token": 12, + "id.length": 1, + "forcedIdentifier": 4, + "prev": 17, + "not": 4, + "prev.spaced": 3, + "JS_KEYWORDS": 1, + "COFFEE_KEYWORDS": 1, + "id.toUpperCase": 1, + "LINE_BREAK": 2, + "@seenFor": 4, + "yes": 5, + "UNARY": 4, + "RELATION": 3, + "no": 3, + "@value": 1, + "@tokens.pop": 1, + "JS_FORBIDDEN": 1, + "String": 1, + "id.reserved": 1, + "RESERVED": 3, + "COFFEE_ALIAS_MAP": 1, + "COFFEE_ALIASES": 1, + "switch": 7, + "when": 16, + "input.length": 1, + "numberToken": 1, + "NUMBER.exec": 1, + "number": 13, + "BOX": 1, + "/.test": 4, + "/E/.test": 1, + "x/.test": 1, + "d*": 1, + "d": 2, + "lexedLength": 2, + "number.length": 1, + "octalLiteral": 2, + "o": 4, + "/.exec": 2, + "parseInt": 5, + ".toString": 3, + "binaryLiteral": 2, + "b": 1, + "stringToken": 1, + "@chunk.charAt": 3, + "SIMPLESTR.exec": 1, + "string": 9, + "MULTILINER": 2, + "@balancedString": 1, + "<": 6, + "string.indexOf": 1, + "@interpolateString": 2, + "@escapeLines": 1, + "octalEsc": 1, + "|": 21, + "string.length": 1, + "heredocToken": 1, + "HEREDOC.exec": 1, + "heredoc": 4, + "quote": 5, + "heredoc.charAt": 1, + "doc": 11, + "@sanitizeHeredoc": 2, + "indent": 7, + "<=>": 1, + "indexOf": 1, + "interpolateString": 1, + "token": 1, + "STRING": 2, + "makeString": 1, + "n": 16, + "length": 4, + "Matches": 1, + "consumes": 1, + "comments": 1, + "commentToken": 1, + "@chunk.match": 1, + "COMMENT": 2, + "comment": 2, + "here": 3, + "herecomment": 4, + "true": 8, + "Array": 1, + ".join": 2, + "comment.length": 1, + "jsToken": 1, + "JSTOKEN.exec": 1, + "script.length": 1, + "regexToken": 1, + "HEREGEX.exec": 1, + "@heregexToken": 1, + "NOT_REGEX": 2, + "NOT_SPACED_REGEX": 2, + "REGEX.exec": 1, + "regex": 5, + "flags": 2, + "..1": 1, + "match.length": 1, + "heregexToken": 1, + "heregex": 1, + "body": 2, + "body.indexOf": 1, + "re": 1, + "body.replace": 1, + "HEREGEX_OMIT": 3, + "//g": 1, + "re.match": 1, + "*/": 2, + "heregex.length": 1, + "@tokens.push": 1, + "tokens.push": 1, + "value...": 1, + "continue": 3, + "value.replace": 2, + "/g": 3, + "spaced": 1, + "reserved": 1, + "word": 1, + "value.length": 2, + "MATH": 3, + "COMPARE": 3, + "COMPOUND_ASSIGN": 2, + "SHIFT": 3, + "LOGIC": 3, + ".spaced": 1, + "CALLABLE": 2, + "INDEXABLE": 2, + "@ends.push": 1, + "@pair": 1, + "sanitizeHeredoc": 1, + "options": 16, + "HEREDOC_ILLEGAL.test": 1, + "doc.indexOf": 1, + "HEREDOC_INDENT.exec": 1, + "attempt": 2, + "attempt.length": 1, + "indent.length": 1, + "doc.replace": 2, + "///": 12, + "///g": 1, + "n/": 1, + "tagParameters": 1, + "this": 6, + "tokens.length": 1, + "tok": 5, + "stack.push": 1, + "stack.length": 1, + "stack.pop": 2, + "closeIndentation": 1, + "@outdentToken": 1, + "balancedString": 1, + "str": 1, + "end": 2, + "continueCount": 3, + "str.length": 1, + "letter": 1, + "str.charAt": 1, + "missing": 1, + "starting": 1, + "Hello": 1, + "name.capitalize": 1, + "OUTDENT": 1, + "THROW": 1, + "EXTENDS": 1, + "&": 4, + "delete": 1, + "typeof": 2, + "instanceof": 2, + "throw": 3, + "break": 1, + "debugger": 1, + "do": 2, + "catch": 2, + "extends": 6, + "super": 4, + "undefined": 1, + "until": 1, + "loop": 1, + "by": 1, + "&&": 1, + "||": 3, + "case": 1, + "default": 1, + "function": 2, + "var": 1, + "void": 1, + "with": 1, + "const": 1, + "let": 2, + "enum": 1, + "export": 1, + "import": 1, + "native": 1, + "__hasProp": 1, + "__extends": 1, + "__slice": 1, + "__bind": 1, + "__indexOf": 1, + "implements": 1, + "interface": 1, + "package": 1, + "private": 1, + "protected": 1, + "public": 1, + "static": 1, + "yield": 1, + "arguments": 1, + "eval": 2, + "s": 10, + "S": 10, + "OPERATOR": 1, + "%": 1, + "compound": 1, + "assign": 1, + "compare": 1, + "zero": 1, + "fill": 1, + "right": 1, + "shift": 2, + "doubles": 1, + "logic": 1, + "soak": 1, + "access": 1, + "range": 1, + "splat": 1, + "WHITESPACE": 1, + "###": 3, + "s*#": 1, + "##": 1, + ".*": 1, + "CODE": 1, + "MULTI_DENT": 1, + "SIMPLESTR": 1, + "JSTOKEN": 1, + "REGEX": 1, + "disallow": 1, + "leading": 1, + "whitespace": 1, + "equals": 1, + "signs": 1, + "every": 1, + "other": 1, + "thing": 1, + "anything": 1, + "escaped": 1, + "character": 1, + "imgy": 2, + "w": 2, + "HEREGEX": 1, + "#.*": 1, + "n/g": 1, + "HEREDOC_INDENT": 1, + "HEREDOC_ILLEGAL": 1, + "//": 1, + "LINE_CONTINUER": 1, + "s*": 1, + "BOOL": 1, + "NOT_REGEX.concat": 1, + "CALLABLE.concat": 1, + "path": 3, + "parser": 1, + "vm": 1, + "require.extensions": 3, + "module": 1, + "content": 4, + "compile": 5, + "fs.readFileSync": 1, + "module._compile": 1, + "require.registerExtension": 2, + "exports.VERSION": 1, + "exports.RESERVED": 1, + "exports.helpers": 2, + "exports.compile": 1, + "merge": 1, + "js": 5, + "parser.parse": 3, + "lexer.tokenize": 3, + ".compile": 1, + "options.header": 1, + "options.filename": 5, + "header": 1, + "exports.tokens": 1, + "exports.nodes": 1, + "exports.run": 1, + "mainModule": 1, + "require.main": 1, + "mainModule.filename": 4, + "process.argv": 1, + "fs.realpathSync": 2, + "mainModule.moduleCache": 1, + "mainModule.paths": 1, + "._nodeModulePaths": 1, + "path.dirname": 2, + "path.extname": 1, + "mainModule._compile": 2, + "exports.eval": 1, + "code.trim": 1, + "Script": 2, + "vm.Script": 1, + "options.sandbox": 4, + "Script.createContext": 2, + ".constructor": 1, + "sandbox": 8, + "k": 4, + "v": 4, + "own": 2, + "sandbox.global": 1, + "sandbox.root": 1, + "sandbox.GLOBAL": 1, + "global": 3, + "sandbox.__filename": 3, + "sandbox.__dirname": 1, + "sandbox.module": 2, + "sandbox.require": 2, + "Module": 2, + "_module": 3, + "options.modulename": 1, + "_require": 2, + "Module._load": 1, + "_module.filename": 1, + "r": 4, + "Object.getOwnPropertyNames": 1, + "_require.paths": 1, + "_module.paths": 1, + "Module._nodeModulePaths": 1, + "process.cwd": 1, + "_require.resolve": 1, + "request": 2, + "Module._resolveFilename": 1, + "o.bare": 1, + "on": 3, + "ensure": 1, + "vm.runInThisContext": 1, + "vm.runInContext": 1, + "lexer": 1, + "parser.lexer": 1, + "lex": 1, + "@yytext": 1, + "@yylineno": 1, + "@pos": 2, + "setInput": 1, + "upcomingInput": 1, + "parser.yy": 1, + "console.log": 1, + "CoffeeScript": 1, + "CoffeeScript.require": 1, + "CoffeeScript.eval": 1, + "options.bare": 2, + "CoffeeScript.compile": 2, + "CoffeeScript.run": 3, + "Function": 1, + "window": 1, + "CoffeeScript.load": 2, + "url": 2, + "xhr": 2, + "window.ActiveXObject": 1, + "XMLHttpRequest": 1, + "xhr.open": 1, + "xhr.overrideMimeType": 1, + "xhr.onreadystatechange": 1, + "xhr.readyState": 1, + "xhr.status": 1, + "xhr.responseText": 1, + "Error": 1, + "xhr.send": 1, + "runScripts": 3, + "scripts": 2, + "document.getElementsByTagName": 1, + "coffees": 2, + "s.type": 1, + "index": 4, + "coffees.length": 1, + "execute": 3, + ".type": 1, + "script.src": 2, + "script.innerHTML": 1, + "window.addEventListener": 1, + "addEventListener": 1, + "attachEvent": 1, + "dnsserver": 1, + "exports.Server": 1, + "Server": 2, + "dnsserver.Server": 1, + "NS_T_A": 3, + "NS_T_NS": 2, + "NS_T_CNAME": 1, + "NS_T_SOA": 2, + "NS_C_IN": 5, + "NS_RCODE_NXDOMAIN": 2, + "domain": 6, + "@rootAddress": 2, + "@domain": 3, + "domain.toLowerCase": 1, + "@soa": 2, + "createSOA": 2, + "@on": 1, + "@handleRequest": 1, + "handleRequest": 1, + "question": 5, + "req.question": 1, + "subdomain": 10, + "@extractSubdomain": 1, + "question.name": 3, + "isARequest": 2, + "res.addRR": 2, + "subdomain.getAddress": 1, + ".isEmpty": 1, + "isNSRequest": 2, + "res.header.rcode": 1, + "res.send": 1, + "extractSubdomain": 1, + "name": 5, + "Subdomain.extract": 1, + "question.type": 2, + "question.class": 2, + "mname": 2, + "rname": 2, + "serial": 2, + "Date": 1, + ".getTime": 1, + "refresh": 2, + "retry": 2, + "expire": 2, + "minimum": 2, + "dnsserver.createSOA": 1, + "exports.createServer": 1, + "address": 4, + "exports.Subdomain": 1, + "Subdomain": 4, + "@extract": 1, + "name.toLowerCase": 1, + "offset": 4, + "name.length": 1, + "domain.length": 1, + "name.slice": 2, + "@for": 2, + "IPAddressSubdomain.pattern.test": 1, + "IPAddressSubdomain": 2, + "EncodedSubdomain.pattern.test": 1, + "EncodedSubdomain": 2, + "@subdomain": 1, + "@address": 2, + "@labels": 2, + ".split": 1, + "@length": 3, + "@labels.length": 1, + "isEmpty": 1, + "getAddress": 3, + "@pattern": 2, + "@labels.slice": 1, + "a": 2, + "z0": 2, + "decode": 2, + "exports.encode": 1, + "encode": 1, + "ip": 2, + "byte": 2, + "ip.split": 1, + "<<": 1, + "PATTERN": 1, + "exports.decode": 1, + "PATTERN.test": 1, + "ip.push": 1, + "xFF": 1, + "ip.join": 1, + "opposite": 2, + "square": 4, + "x": 6, + "list": 2, + "math": 1, + "root": 1, + "Math.sqrt": 1, + "cube": 1, + "race": 1, + "winner": 2, + "runners...": 1, + "print": 1, + "runners": 1, + "alert": 4, + "elvis": 1, + "cubes": 1, + "math.cube": 1, + "num": 2, + "Animal": 3, + "@name": 2, + "move": 3, + "meters": 2, + "Snake": 2, + "Horse": 2, + "sam": 1, + "tom": 1, + "sam.move": 1, + "tom.move": 1 + }, + "Scilab": { + "assert_checkequal": 1, + "(": 7, + "+": 5, + ")": 7, + ";": 7, + "assert_checkfalse": 1, + "%": 4, + "pi": 3, + "e": 4, + "disp": 1, + "function": 1, + "[": 1, + "a": 4, + "b": 4, + "]": 1, + "myfunction": 1, + "d": 2, + "f": 2, + "cos": 1, + "cosh": 1, + "if": 1, + "then": 1, + "-": 2, + "e.field": 1, + "else": 1, + "home": 1, + "return": 1, + "end": 1, + "myvar": 1, + "endfunction": 1 + }, + "Ragel in Ruby Host": { + "begin": 3, + "%": 34, + "{": 19, + "machine": 3, + "simple_scanner": 1, + ";": 38, + "action": 9, + "Emit": 4, + "emit": 4, + "data": 15, + "[": 20, + "(": 33, + "ts": 4, + "+": 7, + ")": 33, + "..": 1, + "te": 1, + "-": 5, + "]": 20, + ".pack": 6, + "}": 19, + "foo": 8, + "any": 4, + "main": 3, + "|": 11, + "*": 9, + "end": 23, + "#": 4, + "class": 3, + "SimpleScanner": 1, + "attr_reader": 2, + "path": 8, + "def": 10, + "initialize": 2, + "@path": 2, + "write": 9, + "stdout.puts": 2, + "perform": 2, + "pe": 4, + "ignored": 4, + "eof": 3, + "init": 3, + "leftover": 8, + "File.open": 2, + "do": 2, + "f": 2, + "while": 2, + "chunk": 2, + "f.read": 2, + "ENV": 2, + ".to_i": 2, + "chunk.unpack": 2, + "p": 8, + "||": 1, + "data.length": 3, + "exec": 3, + "if": 4, + "ts..pe": 1, + "else": 2, + "s": 4, + "SimpleScanner.new": 1, + "ARGV": 2, + "s.perform": 2, + "ephemeris_parser": 1, + "mark": 6, + "parse_start_time": 2, + "parser.start_time": 1, + "mark..p": 4, + "parse_stop_time": 2, + "parser.stop_time": 1, + "parse_step_size": 2, + "parser.step_size": 1, + "parse_ephemeris_table": 2, + "fhold": 1, + "parser.ephemeris_table": 1, + "ws": 2, + "t": 1, + "r": 1, + "n": 1, + "adbc": 2, + "year": 2, + "digit": 7, + "month": 2, + "upper": 1, + "lower": 1, + "date": 2, + "hours": 2, + "minutes": 2, + "seconds": 2, + "tz": 2, + "datetime": 3, + "time_unit": 2, + "soe": 2, + "eoe": 2, + "ephemeris_table": 3, + "alnum": 1, + "./": 1, + "start_time": 4, + "space*": 2, + "stop_time": 4, + "step_size": 3, + "ephemeris": 2, + "any*": 3, + "require": 1, + "module": 1, + "Tengai": 1, + "EPHEMERIS_DATA": 2, + "Struct.new": 1, + ".freeze": 1, + "EphemerisParser": 1, + "<": 1, + "self.parse": 1, + "parser": 2, + "new": 1, + "data.unpack": 1, + "data.is_a": 1, + "String": 1, + "time": 6, + "super": 2, + "parse_time": 3, + "private": 1, + "DateTime.parse": 1, + "simple_tokenizer": 1, + "MyTs": 2, + "my_ts": 6, + "MyTe": 2, + "my_te": 6, + "my_ts...my_te": 1, + "nil": 4, + "SimpleTokenizer": 1, + "my_ts..": 1, + "SimpleTokenizer.new": 1 + }, + "JSONLD": { + "{": 7, + "}": 7, + "[": 1, + "null": 2, + "]": 1 + }, + "Pascal": { + "program": 1, + "gmail": 1, + ";": 6, + "uses": 1, + "Forms": 1, + "Unit2": 1, + "in": 1, + "{": 2, + "Form2": 2, + "}": 2, + "R": 1, + "*.res": 1, + "begin": 1, + "Application.Initialize": 1, + "Application.MainFormOnTaskbar": 1, + "True": 1, + "Application.CreateForm": 1, + "(": 1, + "TForm2": 1, + ")": 1, + "Application.Run": 1, + "end.": 1 + }, + "Arduino": { + "void": 2, + "setup": 1, + "(": 4, + ")": 4, + "{": 2, + "Serial.begin": 1, + ";": 2, + "}": 2, + "loop": 1, + "Serial.print": 1 + }, + "Game Maker Language": { + "#define": 26, + "__jso_gmt_tuple": 1, + "{": 300, + "//Position": 1, + "address": 1, + "table": 1, + "and": 155, + "data": 4, + "var": 79, + "pos": 2, + "addr_table": 2, + ";": 1282, + "*argument_count": 1, + "+": 206, + "//Build": 1, + "the": 62, + "tuple": 1, + "element": 8, + "-": 212, + "by": 5, + "i": 95, + "ca": 1, + "isstr": 1, + "datastr": 1, + "for": 26, + "(": 1501, + "<": 39, + "argument_count": 1, + ")": 1502, + "//Check": 1, + "argument": 10, + "Unexpected": 18, + "character": 20, + "at": 23, + "position": 16, + ".": 12, + "[": 99, + "t": 23, + "f": 5, + "]": 103, + "end": 11, + "of": 25, + "list": 36, + "in": 21, + "JSON": 5, + "string.": 5, + "string": 13, + "Cannot": 5, + "parse": 3, + "boolean": 3, + "value": 13, + "true": 73, + "false": 85, + "real": 14, + "expecting": 9, + "a": 55, + "digit.": 9, + "}": 307, + "e": 4, + "E": 4, + "dot": 1, + "or": 78, + "an": 24, + "integer": 6, + "Expected": 6, + "least": 6, + "arguments": 26, + "got": 6, + "map": 47, + "find": 10, + "lookup.": 4, + "use": 4, + "indices": 1, + "nested": 27, + "lists": 6, + "Index": 1, + "overflow": 4, + "Recursive": 1, + "abcdef": 1, + "Invalid": 2, + "hex": 2, + "number": 7, + "argument0": 28, + "return": 56, + "num": 1, + "hashList": 5, + "text": 19, + "pluginname": 9, + "pluginhash": 4, + "realhash": 1, + "url": 62, + "handle": 1, + "filesize": 1, + "progress": 1, + "tempfile": 1, + "tempdir": 1, + "failed": 56, + "lastContact": 2, + "isCached": 2, + "ds_list_create": 5, + "isDebug": 2, + "split": 1, + "ds_list_size": 11, + "ds_list_find_value": 9, + "string_copy": 32, + "string_pos": 20, + "string_length": 25, + "ds_list_replace": 3, + "ds_list_add": 23, + "if": 397, + "checkpluginname": 1, + "show_message": 7, + "else": 151, + "ds_list_find_index": 1, + "file_exists": 5, + "working_directory": 6, + ".zip": 3, + "ServerPluginsCache": 6, + "@": 5, + ".zip.tmp": 1, + ".tmp": 2, + "ServerPluginsDebug": 1, + "Warning": 2, + "server": 10, + "sent": 7, + "plugin": 6, + "is": 9, + "being": 2, + "loaded": 2, + "from": 5, + "ServerPluginsDebug.": 2, + "Make": 2, + "sure": 2, + "clients": 1, + "have": 2, + "same": 6, + "version": 4, + "they": 1, + "may": 2, + "be": 4, + "unable": 2, + "to": 62, + "connect.": 2, + "has": 2, + "you": 1, + "Downloading": 1, + "/": 5, + "last_plugin.log": 2, + "plugin.gml": 1, + "ds_list_destroy": 4, + "player": 36, + "playerId": 11, + "commandLimitRemaining": 4, + "argument1": 10, + "with": 47, + "variable_local_exists": 4, + "commandReceiveState": 1, + "commandReceiveExpectedBytes": 1, + "commandReceiveCommand": 1, + "while": 15, + "socket": 40, + "player.socket": 12, + "tcp_receive": 3, + "player.commandReceiveExpectedBytes": 7, + "switch": 9, + "player.commandReceiveState": 7, + "case": 50, + "player.commandReceiveCommand": 4, + "read_ubyte": 10, + "commandBytes": 2, + "commandBytesInvalidCommand": 1, + "break": 58, + "commandBytesPrefixLength1": 1, + "commandBytesPrefixLength2": 1, + "default": 1, + "read_ushort": 2, + "PLAYER_LEAVE": 1, + "socket_destroy": 4, + "PLAYER_CHANGECLASS": 1, + "class": 8, + "getCharacterObject": 2, + "player.team": 8, + "player.object": 12, + "collision_point": 30, + "x": 76, + "y": 85, + "SpawnRoom": 2, + "instance_exists": 8, + "lastDamageDealer": 8, + "||": 16, + "sendEventPlayerDeath": 4, + "noone": 7, + "BID_FAREWELL": 4, + "doEventPlayerDeath": 4, + "assistant": 16, + "secondToLastDamageDealer": 2, + "lastDamageDealer.object": 2, + "lastDamageDealer.object.healer": 4, + "FINISHED_OFF": 5, + "instance_destroy": 7, + "player.alarm": 4, + "<=0)>": 1, + "alarm": 13, + "5": 5, + "1": 32, + "checkClasslimits": 2, + "team": 13, + "ServerPlayerChangeclass": 2, + "global": 8, + "sendBuffer": 1, + "PLAYER_CHANGETEAM": 1, + "newTeam": 7, + "balance": 5, + "redSuperiority": 6, + "0": 21, + "calculate": 1, + "which": 1, + "bigger": 2, + "Player": 1, + "TEAM_RED": 8, + "TEAM_BLUE": 6, + "player.class": 15, + "TEAM_SPECTATOR": 1, + "global.Server_Respawntime": 3, + "newClass": 4, + "global.sendBuffer": 19, + "ServerPlayerChangeteam": 1, + "ServerBalanceTeams": 1, + "CHAT_BUBBLE": 2, + "bubbleImage": 5, + "global.aFirst": 1, + "write_ubyte": 20, + "setChatBubble": 1, + "BUILD_SENTRY": 2, + "CLASS_ENGINEER": 3, + "collision_circle": 1, + "player.object.x": 3, + "player.object.y": 3, + "Sentry": 1, + "player.object.nutsNBolts": 1, + "player.sentry": 2, + "player.object.onCabinet": 1, + "write_ushort": 2, + "global.serializeBuffer": 3, + "round": 6, + "player.object.x*5": 1, + "player.object.y*5": 1, + "write_byte": 1, + "player.object.image_xscale": 2, + "buildSentry": 1, + "DESTROY_SENTRY": 1, + "DROP_INTEL": 1, + "player.object.intel": 1, + "sendEventDropIntel": 1, + "doEventDropIntel": 1, + "OMNOMNOMNOM": 2, + "player.humiliated": 1, + "player.object.taunting": 1, + "player.object.omnomnomnom": 1, + "player.object.canEat": 1, + "CLASS_HEAVY": 2, + "omnomnomnom": 2, + "omnomnomnomindex": 4, + "omnomnomnomend": 2, + "xscale": 1, + "image_xscale": 17, + "TOGGLE_ZOOM": 2, + "CLASS_SNIPER": 3, + "toggleZoom": 1, + "PLAYER_CHANGENAME": 2, + "nameLength": 4, + "socket_receivebuffer_size": 3, + "MAX_PLAYERNAME_LENGTH": 2, + "KICK": 2, + "KICK_NAME": 1, + "current_time": 2, + "lastNamechange": 2, + "name": 9, + "read_string": 9, + "string_count": 2, + "write_string": 9, + "INPUTSTATE": 1, + "keyState": 1, + "netAimDirection": 1, + "aimDirection": 1, + "netAimDirection*360/65536": 1, + "event_user": 1, + "REWARD_REQUEST": 1, + "player.rewardId": 1, + "player.challenge": 2, + "rewardCreateChallenge": 1, + "REWARD_CHALLENGE_CODE": 1, + "write_binstring": 1, + "REWARD_CHALLENGE_RESPONSE": 1, + "answer": 3, + "authbuffer": 1, + "read_binstring": 1, + "rewardAuthStart": 1, + "challenge": 1, + "rewardId": 1, + "PLUGIN_PACKET": 1, + "packetID": 3, + "buf": 5, + "success": 3, + "buffer_create": 7, + "write_buffer_part": 3, + "_PluginPacketPush": 1, + "buffer_destroy": 8, + "KICK_BAD_PLUGIN_PACKET": 1, + "CLIENT_SETTINGS": 2, + "mirror": 4, + "player.queueJump": 1, + "assert_true": 1, + "_assert_error_popup": 2, + "string_repeat": 2, + "_assert_newline": 2, + "assert_false": 1, + "assert_equal": 1, + "//Safe": 1, + "equality": 1, + "check": 1, + "won": 1, + "support": 1, + "show_error": 2, + "instead": 1, + "_assert_debug_value": 1, + "//String": 1, + "is_string": 2, + "os_browser": 1, + "browser_not_a_browser": 1, + "string_replace_all": 1, + "//Numeric": 1, + "GMTuple": 1, + "jso_encode_string": 1, + "encode": 8, + "escape": 2, + "jso_encode_map": 4, + "empty": 13, + "key": 17, + "one": 42, + "key1": 3, + "key2": 3, + "multi": 7, + "jso_encode_list": 3, + "three": 36, + "_jso_decode_string": 5, + "decode": 36, + "small": 1, + "The": 6, + "quick": 2, + "brown": 2, + "fox": 2, + "jumps": 3, + "over": 2, + "lazy": 2, + "dog.": 2, + "simple": 1, + "characters": 3, + "Waahoo": 1, + "negg": 1, + "mixed": 1, + "_jso_decode_boolean": 2, + "_jso_decode_real": 11, + "standard": 1, + "zero": 4, + "signed": 2, + "decimal": 1, + "digits": 1, + "positive": 7, + "negative": 7, + "exponent": 4, + "_jso_decode_integer": 3, + "_jso_decode_map": 14, + "didn": 14, + "include": 14, + "right": 14, + "prefix": 14, + "#1": 14, + "#2": 14, + "entry": 29, + "pi": 2, + "bool": 2, + "waahoo": 10, + "woohah": 8, + "mix": 4, + "up": 6, + "_jso_decode_list": 14, + "woo": 2, + "maps": 37, + "Empty": 4, + "should": 25, + "equal": 20, + "each": 18, + "other.": 12, + "junk": 2, + "info": 1, + "taxi": 1, + "An": 4, + "not": 63, + "filled": 4, + "map.": 2, + "A": 24, + "B": 18, + "C": 8, + "Maps": 9, + "content": 4, + "entered": 4, + "different": 12, + "orders": 4, + "D": 1, + "keys": 2, + "values": 4, + "six": 1, + "corresponding": 4, + "types": 4, + "other": 4, + "crash.": 4, + "list.": 2, + "Lists": 4, + "two": 16, + "entries": 2, + "also": 2, + "jso_map_check": 9, + "existing": 9, + "single": 11, + "jso_map_lookup": 3, + "found": 21, + "wrong": 10, + "trap": 2, + "jso_map_lookup_type": 3, + "type": 8, + "four": 21, + "inexistent": 11, + "multiple": 20, + "index": 11, + "jso_list_check": 8, + "jso_list_lookup": 3, + "jso_list_lookup_type": 3, + "inner": 1, + "indexing": 1, + "on": 4, + "bad": 1, + "jso_cleanup_map": 1, + "one_map": 1, + "downloadHandle": 3, + "tmpfile": 3, + "window_oldshowborder": 2, + "window_oldfullscreen": 2, + "timeLeft": 1, + "counter": 1, + "AudioControlPlaySong": 1, + "window_get_showborder": 1, + "window_get_fullscreen": 1, + "window_set_fullscreen": 2, + "window_set_showborder": 1, + "global.updaterBetaChannel": 3, + "UPDATE_SOURCE_BETA": 1, + "UPDATE_SOURCE": 1, + "temp_directory": 1, + "httpGet": 1, + "httpRequestStatus": 1, + "//": 11, + "download": 1, + "isn": 1, + "s": 6, + "extract": 1, + "downloaded": 1, + "file": 2, + "now.": 1, + "extractzip": 1, + "execute_program": 1, + "game_end": 1, + "hangCountMax": 2, + "//////////////////////////////////////": 2, + "kLeft": 12, + "checkLeft": 1, + "kLeftPushedSteps": 3, + "kLeftPressed": 2, + "checkLeftPressed": 1, + "kLeftReleased": 3, + "checkLeftReleased": 1, + "kRight": 12, + "checkRight": 1, + "kRightPushedSteps": 3, + "kRightPressed": 2, + "checkRightPressed": 1, + "kRightReleased": 3, + "checkRightReleased": 1, + "kUp": 5, + "checkUp": 1, + "kDown": 5, + "checkDown": 1, + "//key": 1, + "canRun": 1, + "kRun": 2, + "kJump": 6, + "checkJump": 1, + "kJumpPressed": 11, + "checkJumpPressed": 1, + "kJumpReleased": 5, + "checkJumpReleased": 1, + "cantJump": 3, + "global.isTunnelMan": 1, + "sprite_index": 14, + "sTunnelAttackL": 1, + "holdItem": 1, + "kAttack": 2, + "checkAttack": 2, + "kAttackPressed": 2, + "checkAttackPressed": 1, + "kAttackReleased": 2, + "checkAttackReleased": 1, + "kItemPressed": 2, + "checkItemPressed": 1, + "xPrev": 1, + "yPrev": 1, + "stunned": 3, + "dead": 3, + "//////////////////////////////////////////": 2, + "colSolidLeft": 4, + "colSolidRight": 3, + "colLeft": 6, + "colRight": 6, + "colTop": 4, + "colBot": 11, + "colLadder": 3, + "colPlatBot": 6, + "colPlat": 5, + "colWaterTop": 3, + "colIceBot": 2, + "runKey": 4, + "isCollisionMoveableSolidLeft": 1, + "isCollisionMoveableSolidRight": 1, + "isCollisionLeft": 2, + "isCollisionRight": 2, + "isCollisionTop": 1, + "isCollisionBottom": 1, + "isCollisionLadder": 1, + "isCollisionPlatformBottom": 1, + "isCollisionPlatform": 1, + "isCollisionWaterTop": 1, + "oIce": 1, + "checkRun": 1, + "runHeld": 3, + "whipping": 5, + "state": 50, + "CLIMBING": 5, + "HANGING": 10, + "approximatelyZero": 4, + "xVel": 24, + "xAcc": 12, + "platformCharacterIs": 23, + "ON_GROUND": 18, + "DUCKING": 4, + "pushTimer": 3, + "//if": 5, + "SS_IsSoundPlaying": 2, + "global.sndPush": 4, + "playSound": 3, + "facing": 17, + "LEFT": 7, + "runAcc": 2, + "abs": 9, + "floor": 11, + "RIGHT": 10, + "/xVel": 1, + "oCape": 2, + "oCape.open": 6, + "kJumped": 7, + "ladderTimer": 4, + "ladder": 5, + "oLadder": 4, + "ladder.x": 3, + "oLadderTop": 2, + "yAcc": 26, + "climbAcc": 2, + "FALLING": 8, + "STANDING": 2, + "departLadderXVel": 2, + "departLadderYVel": 1, + "JUMPING": 6, + "jumpButtonReleased": 7, + "jumpTime": 8, + "IN_AIR": 5, + "gravityIntensity": 2, + "yVel": 20, + "RUNNING": 3, + "//playSound": 1, + "global.sndLand": 1, + "grav": 22, + "global.hasGloves": 3, + "hangCount": 14, + "*": 18, + "yVel*0.3": 1, + "oWeb": 2, + "obj": 14, + "instance_place": 3, + "obj.life": 1, + "initialJumpAcc": 6, + "xVel/2": 3, + "gravNorm": 7, + "global.hasCape": 1, + "global.hasJetpack": 4, + "jetpackFuel": 2, + "fallTimer": 2, + "global.hasJordans": 1, + "yAccLimit": 2, + "global.hasSpringShoes": 1, + "global.sndJump": 1, + "jumpTimeTotal": 2, + "//let": 1, + "continue": 4, + "jump": 1, + "jumpTime/jumpTimeTotal": 1, + "looking": 2, + "UP": 1, + "LOOKING_UP": 4, + "oSolid": 14, + "move_snap": 6, + "oTree": 4, + "oArrow": 5, + "instance_nearest": 1, + "obj.stuck": 1, + "//the": 2, + "can": 1, + "want": 1, + "because": 2, + "too": 2, + "high": 1, + "yPrevHigh": 1, + "we": 5, + "ll": 1, + "move": 2, + "correct": 1, + "distance": 1, + "but": 2, + "need": 1, + "shorten": 1, + "out": 4, + "little": 1, + "ratio": 1, + "xVelInteger": 2, + "/dist*0.9": 1, + "//can": 1, + "changed": 1, + "moveTo": 2, + "xVelInteger*ratio": 1, + "yVelInteger*ratio": 1, + "slopeChangeInY": 1, + "maxDownSlope": 1, + "floating": 1, + "just": 1, + "above": 1, + "slope": 1, + "so": 2, + "down": 1, + "upYPrev": 1, + "<=upYPrev+maxDownSlope;y+=1)>": 1, + "hit": 1, + "solid": 1, + "below": 1, + "upYPrev=": 1, + "I": 1, + "know": 1, + "that": 2, + "this": 2, + "doesn": 1, + "seem": 1, + "make": 1, + "sense": 1, + "variable": 1, + "it": 6, + "all": 3, + "works": 1, + "correctly": 1, + "after": 1, + "loop": 1, + "y=": 1, + "figures": 1, + "what": 1, + "sprite": 12, + "characterSprite": 1, + "sets": 1, + "previous": 2, + "previously": 1, + "statePrevPrev": 1, + "statePrev": 2, + "calculates": 1, + "image_speed": 9, + "based": 1, + "velocity": 1, + "runAnimSpeed": 1, + "sqrt": 1, + "sqr": 2, + "climbAnimSpeed": 1, + "<=>": 3, + "4": 2, + "setCollisionBounds": 3, + "8": 9, + "DUCKTOHANG": 1, + "image_index": 1, + "limit": 5, + "animation": 1, + "always": 1, + "looks": 1, + "good": 1, + "instance_create": 20, + "RoomChangeObserver": 1, + "set_little_endian_global": 1, + "file_delete": 3, + "backupFilename": 5, + "file_find_first": 1, + "file_find_next": 1, + "file_find_close": 1, + "customMapRotationFile": 7, + "restart": 4, + "//import": 1, + "wav": 1, + "files": 1, + "music": 1, + "global.MenuMusic": 3, + "sound_add": 3, + "choose": 8, + "global.IngameMusic": 3, + "global.FaucetMusic": 3, + "sound_volume": 3, + "global.tempBuffer": 3, + "global.HudCheck": 1, + "global.map_rotation": 19, + "global.CustomMapCollisionSprite": 1, + "window_set_region_scale": 1, + "ini_open": 2, + "global.playerName": 7, + "ini_read_string": 12, + "min": 4, + "global.fullscreen": 3, + "ini_read_real": 65, + "global.useLobbyServer": 2, + "global.hostingPort": 2, + "global.music": 2, + "MUSIC_BOTH": 1, + "global.playerLimit": 4, + "//thy": 1, + "playerlimit": 1, + "shalt": 1, + "exceed": 1, + "global.dedicatedMode": 7, + "ini_write_real": 60, + "global.multiClientLimit": 2, + "global.particles": 2, + "PARTICLES_NORMAL": 1, + "global.gibLevel": 14, + "global.killCam": 3, + "global.monitorSync": 3, + "set_synchronization": 2, + "global.medicRadar": 2, + "global.showHealer": 2, + "global.showHealing": 2, + "global.showHealthBar": 3, + "global.showTeammateStats": 2, + "global.serverPluginsPrompt": 2, + "global.restartPrompt": 2, + "//user": 1, + "HUD": 1, + "settings": 1, + "global.timerPos": 2, + "global.killLogPos": 2, + "global.kothHudPos": 2, + "global.clientPassword": 1, + "global.shuffleRotation": 2, + "global.timeLimitMins": 2, + "max": 2, + "global.serverPassword": 2, + "global.mapRotationFile": 1, + "global.serverName": 2, + "global.welcomeMessage": 2, + "global.caplimit": 3, + "global.caplimitBkup": 1, + "global.autobalance": 2, + "global.Server_RespawntimeSec": 4, + "global.rewardKey": 1, + "unhex": 1, + "global.rewardId": 1, + "global.mapdownloadLimitBps": 2, + "isBetaVersion": 1, + "global.attemptPortForward": 2, + "global.serverPluginList": 3, + "global.serverPluginsRequired": 2, + "CrosshairFilename": 5, + "CrosshairRemoveBG": 4, + "global.queueJumping": 2, + "global.backgroundHash": 2, + "global.backgroundTitle": 2, + "global.backgroundURL": 2, + "global.backgroundShowVersion": 2, + "readClasslimitsFromIni": 1, + "global.currentMapArea": 1, + "global.totalMapAreas": 1, + "global.setupTimer": 1, + "global.joinedServerName": 2, + "global.serverPluginsInUse": 1, + "global.pluginPacketBuffers": 1, + "ds_map_create": 4, + "global.pluginPacketPlayers": 1, + "ini_write_string": 10, + "ini_key_delete": 1, + "global.classlimits": 10, + "CLASS_SCOUT": 1, + "CLASS_PYRO": 2, + "CLASS_SOLDIER": 2, + "CLASS_DEMOMAN": 1, + "CLASS_MEDIC": 2, + "CLASS_SPY": 1, + "CLASS_QUOTE": 3, + "//screw": 1, + "will": 1, + "start": 1, + "//map_truefort": 1, + "//map_2dfort": 1, + "//map_conflict": 1, + "//map_classicwell": 1, + "//map_waterway": 1, + "//map_orange": 1, + "//map_dirtbowl": 1, + "//map_egypt": 1, + "//arena_montane": 1, + "//arena_lumberyard": 1, + "//gen_destroy": 1, + "//koth_valley": 1, + "//koth_corinth": 1, + "//koth_harvest": 1, + "//dkoth_atalia": 1, + "//dkoth_sixties": 1, + "//Server": 1, + "respawn": 1, + "time": 1, + "calculator.": 1, + "Converts": 1, + "second": 2, + "frame.": 1, + "read": 1, + "multiply": 1, + "hehe": 1, + "global.mapchanging": 1, + "ini_close": 2, + "global.protocolUuid": 2, + "parseUuid": 2, + "PROTOCOL_UUID": 1, + "global.gg2lobbyId": 2, + "GG2_LOBBY_UUID": 1, + "initRewards": 1, + "IPRaw": 3, + "portRaw": 3, + "doubleCheck": 8, + "global.launchMap": 5, + "parameter_count": 1, + "parameter_string": 8, + "global.serverPort": 1, + "global.serverIP": 1, + "global.isHost": 1, + "Client": 1, + "global.customMapdesginated": 2, + "&&": 6, + "fileHandle": 6, + "mapname": 9, + "file_text_open_read": 1, + "file_text_eof": 1, + "file_text_read_string": 1, + "string_char_at": 13, + "chr": 3, + "starts": 1, + "space": 4, + "tab": 2, + "string_delete": 1, + "delete": 1, + "comment": 1, + "starting": 1, + "#": 3, + "file_text_readln": 1, + "file_text_close": 1, + "load": 1, + "ini": 1, + "section": 1, + "//Set": 1, + "rotation": 1, + "stuff": 2, + "sort_list": 7, + "*maps": 1, + "ds_list_sort": 1, + "mod": 1, + "global.gg2Font": 2, + "font_add_sprite": 2, + "gg2FontS": 1, + "ord": 16, + "global.countFont": 1, + "countFontS": 1, + "draw_set_font": 1, + "cursor_sprite": 1, + "CrosshairS": 5, + "directory_exists": 2, + "directory_create": 2, + "AudioControl": 1, + "SSControl": 1, + "message_background": 1, + "popupBackgroundB": 1, + "message_button": 1, + "popupButtonS": 1, + "message_text_font": 1, + "c_white": 13, + "message_button_font": 1, + "message_input_font": 1, + "//Key": 1, + "Mapping": 1, + "global.jump": 1, + "global.down": 1, + "global.left": 1, + "global.right": 1, + "global.attack": 1, + "MOUSE_LEFT": 1, + "global.special": 1, + "MOUSE_RIGHT": 1, + "global.taunt": 1, + "global.chat1": 1, + "global.chat2": 1, + "global.chat3": 1, + "global.medic": 1, + "global.drop": 1, + "global.changeTeam": 1, + "global.changeClass": 1, + "global.showScores": 1, + "vk_shift": 1, + "calculateMonthAndDay": 1, + "loadplugins": 1, + "registry_set_root": 1, + "HKLM": 1, + "global.NTKernelVersion": 1, + "registry_read_string_ext": 1, + "CurrentVersion": 1, + "SIC": 1, + "sprite_replace": 1, + "sprite_set_offset": 1, + "sprite_get_width": 1, + "/2": 2, + "sprite_get_height": 1, + "AudioControlToggleMute": 1, + "room_goto_fix": 2, + "Menu": 2, + "//draws": 1, + "draw": 3, + "blinkToggle": 1, + "sPExit": 1, + "sDamselExit": 1, + "sTunnelExit": 1, + "draw_sprite_ext": 10, + "image_yscale": 14, + "image_angle": 14, + "image_blend": 2, + "image_alpha": 10, + "//draw_sprite": 1, + "draw_sprite": 9, + "sJetpackBack": 1, + "sJetpackRight": 1, + "sJetpackLeft": 1, + "redColor": 2, + "make_color_rgb": 1, + "holdArrow": 4, + "ARROW_NORM": 2, + "sArrowRight": 1, + "ARROW_BOMB": 2, + "holdArrowToggle": 2, + "sBombArrowRight": 2, + "sArrowLeft": 1, + "sBombArrowLeft": 2, + "victim": 10, + "killer": 11, + "damageSource": 18, + "argument2": 3, + "argument3": 1, + "//*************************************": 6, + "//*": 3, + "Scoring": 1, + "Kill": 1, + "log": 1, + "recordKillInLog": 1, + "victim.stats": 1, + "DEATHS": 1, + "WEAPON_KNIFE": 1, + "WEAPON_BACKSTAB": 1, + "killer.stats": 8, + "STABS": 2, + "killer.roundStats": 8, + "POINTS": 10, + "victim.object.currentWeapon.object_index": 1, + "Medigun": 2, + "victim.object.currentWeapon.uberReady": 1, + "BONUS": 2, + "KILLS": 2, + "victim.object.intel": 1, + "DEFENSES": 2, + "recordEventInLog": 1, + "killer.team": 1, + "killer.name": 2, + "global.myself": 4, + "assistant.stats": 2, + "ASSISTS": 2, + "assistant.roundStats": 2, + ".5": 2, + "//SPEC": 1, + "victim.object.x": 3, + "victim.object.y": 3, + "Spectator": 1, + "Gibbing": 2, + "xoffset": 5, + "yoffset": 5, + "xsize": 3, + "ysize": 3, + "view_xview": 3, + "view_yview": 3, + "view_wview": 2, + "view_hview": 2, + "randomize": 1, + "victim.object": 2, + "WEAPON_ROCKETLAUNCHER": 1, + "WEAPON_MINEGUN": 1, + "FRAG_BOX": 2, + "WEAPON_REFLECTED_STICKY": 1, + "WEAPON_REFLECTED_ROCKET": 1, + "FINISHED_OFF_GIB": 2, + "GENERATOR_EXPLOSION": 2, + "distance_to_point": 3, + "xsize/2": 2, + "ysize/2": 2, + "hasReward": 4, + "repeat": 7, + "createGib": 14, + "PumpkinGib": 1, + "hspeed": 14, + "vspeed": 13, + "random": 21, + "Gib": 1, + "BlueClump": 1, + "RedClump": 1, + "blood": 2, + "BloodDrop": 1, + "blood.hspeed": 1, + "blood.vspeed": 1, + "blood.sprite_index": 1, + "PumpkinJuiceS": 1, + "//All": 1, + "Classes": 1, + "gib": 1, + "head": 1, + "hands": 2, + "feet": 1, + "Headgib": 1, + "//Medic": 1, + "specially": 1, + "colored": 1, + "Hand": 3, + "Feet": 1, + "//Class": 1, + "specific": 1, + "gibs": 1, + "Accesory": 5, + "playsound": 2, + "deadbody": 2, + "DeathSnd1": 1, + "DeathSnd2": 1, + "DeadGuy": 1, + "deadbody.sprite_index": 2, + "haxxyStatue": 1, + "deadbody.image_index": 2, + "CHARACTER_ANIMATION_DEAD": 1, + "deadbody.hspeed": 1, + "deadbody.vspeed": 1, + "deadbody.image_xscale": 1, + "global.gg_birthday": 1, + "myHat": 2, + "PartyHat": 1, + "myHat.image_index": 2, + "victim.team": 2, + "global.xmas": 1, + "XmasHat": 1, + "Deathcam": 1, + "KILL_BOX": 1, + "DeathCam": 1, + "DeathCam.killedby": 1, + "DeathCam.name": 1, + "DeathCam.oldxview": 1, + "DeathCam.oldyview": 1, + "DeathCam.lastDamageSource": 1, + "DeathCam.team": 1, + "global.myself.team": 3, + "global.levelType": 22, + "//global.currLevel": 1, + "global.currLevel": 22, + "global.hadDarkLevel": 4, + "global.startRoomX": 1, + "global.startRoomY": 1, + "global.endRoomX": 1, + "global.endRoomY": 1, + "oGame.levelGen": 2, + "j": 14, + "global.roomPath": 1, "k": 5, - "none": 4, - "post.views": 4, - "SetRef.iterator": 1, - "iterRef": 4, - "i": 7, - "i.left": 3, - "i.done": 1, - "i.lastRef": 1, - "IteratorRef.remove": 1, - ".lastRef": 2, - "IteratorRef.next": 1, - "ref": 3, - "IteratorRef.hasNext": 1, - "s.obj": 1, - "zippishOK": 2, - "ks": 6, - "vs": 6, - "m": 4, - "ki": 2, - "vi": 2, - "s0": 4, - "so/first": 1, - "s1": 4, - "so/next": 7, - "s2": 6, - "s3": 4, - "s4": 4, - "s5": 4, - "s6": 4, - "s7": 2, - "precondition": 2, - "s0.dirty": 1, - "ks.iterator": 1, - "vs.iterator": 1, - "ki.hasNext": 1, - "vi.hasNext": 1, - "ki.this/next": 1, - "vi.this/next": 1, - "m.put": 1, - "ki.remove": 1, - "vi.remove": 1, - "State.dirty": 1, - "ViewType.pre.views": 2, + "global.lake": 3, + "isLevel": 1, + "999": 2, + "levelType": 2, + "2": 2, + "16": 14, + "656": 3, + "oDark": 2, + "invincible": 2, + "sDark": 1, + "oTemple": 2, + "cityOfGold": 1, + "sTemple": 2, + "lake": 1, + "i*16": 8, + "j*16": 6, + "oLush": 2, + "obj.sprite_index": 4, + "sLush": 2, + "obj.invincible": 3, + "oBrick": 1, + "sBrick": 1, + "global.cityOfGold": 2, + "*16": 2, + "//instance_create": 2, + "oSpikes": 1, + "background_index": 1, + "bgTemple": 1, + "global.temp1": 1, + "global.gameStart": 3, + "scrLevelGen": 1, + "global.cemetary": 3, + "rand": 10, + "global.probCemetary": 1, + "oRoom": 1, + "scrRoomGen": 1, + "global.blackMarket": 3, + "scrRoomGenMarket": 1, + "scrRoomGen2": 1, + "global.yetiLair": 2, + "scrRoomGenYeti": 1, + "scrRoomGen3": 1, + "scrRoomGen4": 1, + "scrRoomGen5": 1, + "global.darkLevel": 4, + "global.noDarkLevel": 1, + "global.probDarkLevel": 1, + "oPlayer1.x": 2, + "oPlayer1.y": 2, + "oFlare": 1, + "global.genUdjatEye": 4, + "global.madeUdjatEye": 1, + "global.genMarketEntrance": 4, + "global.madeMarketEntrance": 1, + "////////////////////////////": 2, + "global.temp2": 1, + "isRoom": 3, + "scrEntityGen": 1, + "oEntrance": 1, + "global.customLevel": 1, + "oEntrance.x": 1, + "oEntrance.y": 1, + "global.snakePit": 1, + "global.alienCraft": 1, + "global.sacrificePit": 1, + "oPlayer1": 1, + "scrSetupWalls": 3, + "global.graphicsHigh": 1, + "tile_add": 4, + "bgExtrasLush": 1, + "*rand": 12, + "bgExtrasIce": 1, + "bgExtrasTemple": 1, + "bgExtras": 1, + "global.murderer": 1, + "global.thiefLevel": 1, + "isRealLevel": 1, + "oExit": 1, + "oShopkeeper": 1, + "obj.status": 1, + "oTreasure": 1, + "oWater": 1, + "sWaterTop": 1, + "sLavaTop": 1, + "scrCheckWaterTop": 1, + "global.temp3": 1, + "exit": 10, + "xr": 19, + "yr": 19, + "cloakAlpha": 1, + "canCloak": 1, + "cloakAlpha/2": 1, + "invisible": 1, + "stabbing": 2, + "power": 1, + "currentWeapon.stab.alpha": 1, + "draw_set_alpha": 3, + "draw_healthbar": 1, + "hp*100/maxHp": 1, + "c_black": 1, + "c_red": 3, + "c_green": 1, + "mouse_x": 1, + "mouse_y": 1, + "<25)>": 1, + "cloak": 2, + "myself": 2, + "draw_set_halign": 1, + "fa_center": 1, + "draw_set_valign": 1, + "fa_bottom": 1, + "team=": 1, + "draw_set_color": 2, + "c_blue": 2, + "draw_text": 4, + "35": 1, + "showTeammateStats": 1, + "weapons": 3, + "50": 3, + "Superburst": 1, + "currentWeapon": 2, + "uberCharge": 1, + "20": 1, + "Shotgun": 1, + "Nuts": 1, + "N": 1, + "Bolts": 1, + "nutsNBolts": 1, + "Minegun": 1, + "Lobbed": 1, + "Mines": 1, + "lobbed": 1, + "ubercolour": 6, + "overlaySprite": 6, + "zoomed": 1, + "SniperCrouchRedS": 1, + "SniperCrouchBlueS": 1, + "sniperCrouchOverlay": 1, + "overlay": 1, + "draw_sprite_ext_overlay": 7, + "omnomnomnomSprite": 2, + "omnomnomnomOverlay": 2, + "ubered": 7, + "7": 4, + "taunting": 2, + "tauntsprite": 2, + "tauntOverlay": 2, + "tauntindex": 2, + "humiliated": 1, + "humiliationPoses": 1, + "animationImage": 9, + "humiliationOffset": 1, + "animationOffset": 6, + "burnDuration": 2, + "burnIntensity": 2, + "numFlames": 1, + "maxIntensity": 1, + "FlameS": 1, + "flameArray_x": 1, + "flameArray_y": 1, + "maxDuration": 1, + "demon": 4, + "demonX": 5, + "median": 2, + "demonY": 4, + "demonOffset": 4, + "demonDir": 2, + "dir": 3, + "demonFrame": 5, + "sprite_get_number": 1, + "*player.team": 2, + "dir*1": 2, + "playerObject": 1, + "playerID": 1, + "otherPlayerID": 1, + "otherPlayer": 1, + "sameVersion": 1, + "buffer": 1, + "plugins": 4, + "pluginsRequired": 2, + "usePlugins": 1, + "tcp_eof": 3, + "global.serverSocket": 10, + "gotServerHello": 2, + "room": 1, + "DownloadRoom": 1, + "keyboard_check": 1, + "vk_escape": 1, + "downloadingMap": 2, + "downloadMapBytes": 2, + "buffer_size": 2, + "downloadMapBuffer": 6, + "write_buffer": 2, + "write_buffer_to_file": 1, + "downloadMapName": 3, + "roomchange": 2, + "do": 1, + "HELLO": 1, + "receivestring": 4, + "advertisedMapMd5": 1, + "receiveCompleteMessage": 1, + "Server": 3, + "illegal": 2, + "This": 2, + "requires": 1, + "following": 2, + "play": 2, + "suggests": 1, + "optional": 1, + "Error": 2, + "ocurred": 1, + "loading": 1, + "plugins.": 1, + "Maps/": 2, + ".png": 2, + "Enter": 1, + "Password": 1, + "Incorrect": 1, + "Password.": 1, + "Incompatible": 1, + "protocol": 3, + "version.": 1, + "Name": 1, + "Exploit": 1, + "packet": 3, + "ID": 2, + "There": 1, + "are": 1, + "many": 1, + "connections": 1, + "your": 1, + "IP": 1, + "You": 1, + "been": 1, + "kicked": 1, + "server.": 1, + "#Server": 1, + "went": 1, + "invalid": 1, + "internal": 1, + "#Exiting.": 1, + "full.": 1, + "ERROR": 1, + "when": 1, + "reading": 1, + "no": 1, + "such": 1, + "unexpected": 1, + "data.": 1, + "until": 1, + "__http_init": 3, + "global.__HttpClient": 4, + "object_add": 1, + "object_set_persistent": 1, + "__http_split": 3, + "delimeter": 7, + "count": 4, + "__http_parse_url": 4, + "ds_map_add": 15, + "colonPos": 22, + "slashPos": 13, + "queryPos": 12, + "ds_map_destroy": 6, + "__http_resolve_url": 2, + "baseUrl": 3, + "refUrl": 18, + "urlParts": 15, + "refUrlParts": 5, + "canParseRefUrl": 3, + "result": 11, + "ds_map_find_value": 22, + "__http_resolve_path": 3, + "ds_map_replace": 3, + "ds_map_exists": 11, + "ds_map_delete": 1, + "path": 10, + "query": 4, + "relUrl": 1, + "__http_construct_url": 2, + "basePath": 4, + "refPath": 7, + "parts": 29, + "refParts": 5, + "lastPart": 3, + "ds_list_delete": 5, + "part": 6, + "__http_parse_hex": 2, + "hexString": 4, + "hexValues": 3, + "digit": 4, + "__http_prepare_request": 4, + "client": 33, + "headers": 11, + "parsed": 18, + "destroyed": 3, + "CR": 10, + "LF": 5, + "CRLF": 17, + "tcp_connect": 1, + "errored": 19, + "error": 18, + "linebuf": 33, + "line": 19, + "statusCode": 6, + "reasonPhrase": 2, + "responseBody": 19, + "responseBodySize": 5, + "responseBodyProgress": 5, + "responseHeaders": 9, + "requestUrl": 2, + "requestHeaders": 2, + "ds_map_find_first": 1, + "ds_map_find_next": 1, + "socket_send": 1, + "__http_parse_header": 3, + "headerValue": 9, + "string_lower": 3, + "headerName": 4, + "__http_client_step": 2, + "socket_has_error": 1, + "socket_error": 1, + "__http_client_destroy": 20, + "available": 7, + "tcp_receive_available": 1, + "bytesRead": 6, + "c": 20, + "Reached": 2, + "HTTP": 1, + "defines": 1, + "sequence": 2, + "as": 1, + "marker": 1, + "elements": 1, + "except": 2, + "entity": 1, + "body": 2, + "see": 1, + "appendix": 1, + "19": 1, + "3": 1, + "tolerant": 1, + "applications": 1, + "Strip": 1, + "trailing": 1, + "First": 1, + "status": 2, + "code": 2, + "first": 3, + "Response": 1, + "message": 1, + "Status": 1, + "Line": 1, + "consisting": 1, + "followed": 1, + "numeric": 1, + "its": 1, + "associated": 1, + "textual": 1, + "phrase": 1, + "separated": 1, + "SP": 1, + "No": 3, + "allowed": 1, + "final": 1, + "httpVer": 2, + "spacePos": 11, + "response": 5, + "Other": 1, + "Blank": 1, + "write": 1, + "remainder": 1, + "Header": 1, + "Receiving": 1, + "transfer": 6, + "encoding": 2, + "chunked": 4, + "Chunked": 1, + "let": 1, + "actualResponseBody": 8, + "actualResponseSize": 1, + "actualResponseBodySize": 3, + "Parse": 1, + "chunks": 1, + "chunk": 12, + "size": 7, + "extension": 3, + "HEX": 1, + "buffer_bytes_left": 6, + "chunkSize": 11, + "Read": 1, + "byte": 2, + "We": 1, + "semicolon": 1, + "beginning": 1, + "skip": 1, + "header": 2, + "Doesn": 1, + "did": 1, + "something": 1, + "Parsing": 1, + "was": 1, + "hexadecimal": 1, + "Is": 1, + "than": 1, + "remaining": 1, + "responseHaders": 1, + "location": 4, + "resolved": 5, + "http_new_get": 1, + "variable_global_exists": 2, + "http_new_get_ex": 1, + "http_step": 1, + "client.errored": 3, + "client.state": 3, + "http_status_code": 1, + "client.statusCode": 1, + "http_reason_phrase": 1, + "client.error": 1, + "client.reasonPhrase": 1, + "http_response_body": 1, + "client.responseBody": 1, + "http_response_body_size": 1, + "client.responseBodySize": 1, + "http_response_body_progress": 1, + "client.responseBodyProgress": 1, + "http_response_headers": 1, + "client.responseHeaders": 1, + "http_destroy": 1 + }, + "NSIS": { + ";": 39, + "-": 205, + "x64.nsh": 1, + "A": 1, + "few": 1, + "simple": 1, + "macros": 1, + "to": 6, + "handle": 1, + "installations": 1, + "on": 6, + "x64": 1, + "machines.": 1, + "RunningX64": 4, + "checks": 1, + "if": 4, + "the": 4, + "installer": 1, + "is": 2, + "running": 1, + "x64.": 1, + "{": 8, + "If": 1, + "}": 8, + "MessageBox": 11, + "MB_OK": 8, + "EndIf": 1, + "DisableX64FSRedirection": 4, + "disables": 1, + "file": 4, + "system": 2, + "redirection.": 2, + "EnableX64FSRedirection": 4, + "enables": 1, + "SetOutPath": 3, + "SYSDIR": 1, + "File": 3, + "some.dll": 2, + "#": 3, + "extracts": 2, + "C": 2, + "Windows": 3, + "System32": 1, + "SysWOW64": 1, + "ifndef": 2, + "___X64__NSH___": 3, + "define": 4, + "include": 1, + "LogicLib.nsh": 1, + "macro": 3, + "_RunningX64": 1, + "_a": 1, + "_b": 1, + "_t": 2, + "_f": 2, + "insertmacro": 2, + "_LOGICLIB_TEMP": 3, + "System": 4, + "Call": 6, + "kernel32": 4, + "GetCurrentProcess": 1, + "(": 5, + ")": 5, + "i.s": 1, + "IsWow64Process": 1, + "*i.s": 1, + "Pop": 1, + "_": 1, + "macroend": 3, + "Wow64EnableWow64FsRedirection": 2, + "i0": 1, + "i1": 1, + "endif": 4, + "bigtest.nsi": 1, + "This": 2, + "script": 1, + "attempts": 1, + "test": 1, + "most": 1, + "of": 3, + "functionality": 1, + "NSIS": 3, + "exehead.": 1, + "ifdef": 2, + "HAVE_UPX": 1, + "packhdr": 1, + "tmp.dat": 1, + "NOCOMPRESS": 1, + "SetCompress": 1, + "off": 1, + "Name": 1, + "Caption": 1, + "Icon": 1, + "OutFile": 1, + "SetDateSave": 1, + "SetDatablockOptimize": 1, + "CRCCheck": 1, + "SilentInstall": 1, + "normal": 1, + "BGGradient": 1, + "FFFFFF": 1, + "InstallColors": 1, + "FF8080": 1, + "XPStyle": 1, + "InstallDir": 1, + "InstallDirRegKey": 1, + "HKLM": 9, + "CheckBitmap": 1, + "LicenseText": 1, + "LicenseData": 1, + "RequestExecutionLevel": 1, + "admin": 1, + "Page": 4, + "license": 1, + "components": 1, + "directory": 3, + "instfiles": 2, + "UninstPage": 2, + "uninstConfirm": 1, + "NOINSTTYPES": 1, + "only": 1, + "not": 2, + "defined": 1, + "InstType": 6, + "/NOCUSTOM": 1, + "/COMPONENTSONLYONCUSTOM": 1, + "AutoCloseWindow": 1, + "false": 1, + "ShowInstDetails": 1, + "show": 1, + "Section": 5, + "empty": 1, + "string": 1, + "makes": 1, + "it": 3, + "hidden": 1, + "so": 1, + "would": 1, + "starting": 1, + "with": 1, + "write": 2, + "reg": 1, + "info": 1, + "StrCpy": 2, + "DetailPrint": 1, + "WriteRegStr": 4, + "SOFTWARE": 7, + "NSISTest": 7, + "BigNSISTest": 8, + "uninstall": 2, + "strings": 1, + "INSTDIR": 15, + "/a": 1, + "CreateDirectory": 1, + "recursively": 1, + "create": 1, + "a": 2, + "for": 2, + "fun.": 1, + "WriteUninstaller": 1, + "Nop": 1, + "fun": 1, + "SectionEnd": 5, + "SectionIn": 4, + "Start": 2, + "MB_YESNO": 3, + "IDYES": 2, + "MyLabel": 2, + "SectionGroup": 2, + "/e": 1, + "SectionGroup1": 1, + "WriteRegDword": 3, + "xdeadbeef": 1, + "WriteRegBin": 1, + "WriteINIStr": 5, + "MyFunctionTest": 1, + "DeleteINIStr": 1, + "DeleteINISec": 1, + "ReadINIStr": 1, + "StrCmp": 1, + "INIDelSuccess": 2, + "ClearErrors": 1, + "ReadRegStr": 1, + "HKCR": 1, + "xyz_cc_does_not_exist": 1, + "IfErrors": 1, + "NoError": 2, + "Goto": 1, + "ErrorYay": 2, + "CSCTest": 1, + "Group2": 1, + "BeginTestSection": 1, + "IfFileExists": 1, + "BranchTest69": 1, + "|": 3, + "MB_ICONQUESTION": 1, + "IDNO": 1, + "NoOverwrite": 1, + "skipped": 2, + "doesn": 2, + "s": 1, + "icon": 1, + "start": 1, + "minimized": 1, + "and": 1, + "give": 1, + "hotkey": 1, + "Ctrl": 1, + "+": 2, + "Shift": 1, + "Q": 2, + "CreateShortCut": 2, + "SW_SHOWMINIMIZED": 1, + "CONTROL": 1, + "SHIFT": 1, + "MyTestVar": 1, + "myfunc": 1, + "test.ini": 2, + "MySectionIni": 1, + "Value1": 1, + "failed": 1, + "TextInSection": 1, + "will": 1, + "example2.": 1, + "Hit": 1, + "next": 1, + "continue.": 1, + "NSISDIR": 1, + "Contrib": 1, + "Graphics": 1, + "Icons": 1, + "nsis1": 1, + "uninstall.ico": 1, + "Uninstall": 2, + "Software": 1, + "Microsoft": 1, + "CurrentVersion": 1, + "silent.nsi": 1, + "LogicLib.nsi": 1, + "bt": 1, + "uninst.exe": 1, + "SMPROGRAMS": 2, + "Big": 1, + "Test": 2, + "*.*": 2, + "BiG": 1, + "Would": 1, + "you": 1, + "like": 1, + "remove": 1, + "cpdest": 3, + "MyProjectFamily": 2, + "MyProject": 1, + "Note": 1, + "could": 1, + "be": 1, + "removed": 1, + "IDOK": 1, + "t": 1, + "exist": 1, + "NoErrorMsg": 1 + }, + "SystemVerilog": { + "module": 3, + "priority_encoder": 1, + "#": 3, + "(": 92, + "parameter": 2, + "INPUT_WIDTH": 3, + "OUTPUT_WIDTH": 3, + ")": 92, + "input": 12, + "logic": 2, + "[": 17, + "-": 4, + "]": 17, + "input_data": 2, + "output": 6, + "output_data": 3, + ";": 32, + "int": 1, + "ii": 6, + "always_comb": 1, + "begin": 4, + "b0": 5, + "for": 2, + "<": 1, + "+": 3, + "if": 5, + "end": 4, + "endmodule": 2, + "fifo": 1, + "clk_50": 1, + "clk_2": 1, + "reset_n": 1, + "data_out": 1, + "empty": 1, + "function": 1, + "integer": 2, + "log2": 4, + "x": 6, + "endfunction": 1, + "endpoint_phy_wrapper": 2, + "clk_sys_i": 2, + "clk_ref_i": 6, + "clk_rx_i": 3, + "rst_n_i": 3, + "IWishboneMaster.master": 2, + "src": 1, + "IWishboneSlave.slave": 1, + "snk": 1, + "sys": 1, + "td_o": 2, + "rd_i": 2, + "txn_o": 2, + "txp_o": 2, + "rxn_i": 2, + "rxp_i": 2, + "wire": 12, + "rx_clock": 3, + "g_phy_type": 6, + "gtx_data": 3, + "gtx_k": 3, + "gtx_disparity": 3, + "gtx_enc_error": 3, + "grx_data": 3, + "grx_clk": 1, + "grx_k": 3, + "grx_enc_error": 3, + "grx_bitslide": 2, + "gtp_rst": 2, + "tx_clock": 3, + "generate": 1, + "assign": 2, + "wr_tbi_phy": 1, + "U_Phy": 1, + ".serdes_rst_i": 1, + ".serdes_loopen_i": 1, + ".serdes_enable_i": 1, + "b1": 2, + ".serdes_tx_data_i": 1, + ".serdes_tx_k_i": 1, + ".serdes_tx_disparity_o": 1, + ".serdes_tx_enc_err_o": 1, + ".serdes_rx_data_o": 1, + ".serdes_rx_k_o": 1, + ".serdes_rx_enc_err_o": 1, + ".serdes_rx_bitslide_o": 1, + ".tbi_refclk_i": 1, + ".tbi_rbclk_i": 1, + ".tbi_td_o": 1, + ".tbi_rd_i": 1, + ".tbi_syncen_o": 1, + ".tbi_loopen_o": 1, + ".tbi_prbsen_o": 1, + ".tbi_enable_o": 1, + "else": 2, + "//": 3, + "wr_gtx_phy_virtex6": 1, + ".g_simulation": 2, + "U_PHY": 1, + ".clk_ref_i": 2, + ".tx_clk_o": 1, + ".tx_data_i": 1, + ".tx_k_i": 1, + ".tx_disparity_o": 1, + ".tx_enc_err_o": 1, + ".rx_rbclk_o": 1, + ".rx_data_o": 1, + ".rx_k_o": 1, + ".rx_enc_err_o": 1, + ".rx_bitslide_o": 1, + ".rst_i": 1, + ".loopen_i": 1, + ".pad_txn0_o": 1, + ".pad_txp0_o": 1, + ".pad_rxn0_i": 1, + ".pad_rxp0_i": 1, + "endgenerate": 1, + "wr_endpoint": 1, + ".g_pcs_16bit": 1, + ".g_rx_buffer_size": 1, + ".g_with_rx_buffer": 1, + ".g_with_timestamper": 1, + ".g_with_dmtd": 1, + ".g_with_dpi_classifier": 1, + ".g_with_vlans": 1, + ".g_with_rtu": 1, + "DUT": 1, + ".clk_sys_i": 1, + ".clk_dmtd_i": 1, + ".rst_n_i": 1, + ".pps_csync_p1_i": 1, + ".src_dat_o": 1, + "snk.dat_i": 1, + ".src_adr_o": 1, + "snk.adr": 1, + ".src_sel_o": 1, + "snk.sel": 1, + ".src_cyc_o": 1, + "snk.cyc": 1, + ".src_stb_o": 1, + "snk.stb": 1, + ".src_we_o": 1, + "snk.we": 1, + ".src_stall_i": 1, + "snk.stall": 1, + ".src_ack_i": 1, + "snk.ack": 1, + ".src_err_i": 1, + ".rtu_full_i": 1, + ".rtu_rq_strobe_p1_o": 1, + ".rtu_rq_smac_o": 1, + ".rtu_rq_dmac_o": 1, + ".rtu_rq_vid_o": 1, + ".rtu_rq_has_vid_o": 1, + ".rtu_rq_prio_o": 1, + ".rtu_rq_has_prio_o": 1, + ".wb_cyc_i": 1, + "sys.cyc": 1, + ".wb_stb_i": 1, + "sys.stb": 1, + ".wb_we_i": 1, + "sys.we": 1, + ".wb_sel_i": 1, + "sys.sel": 1, + ".wb_adr_i": 1, + "sys.adr": 1, + ".wb_dat_i": 1, + "sys.dat_o": 1, + ".wb_dat_o": 1, + "sys.dat_i": 1, + ".wb_ack_o": 1, + "sys.ack": 1 + }, + "Inform 7": { + "Version": 1, + "of": 3, + "Trivial": 3, + "Extension": 3, + "by": 3, + "Andrew": 3, + "Plotkin": 1, + "begins": 1, + "here.": 2, + "A": 3, + "cow": 3, + "is": 4, + "a": 2, + "kind": 1, + "animal.": 1, + "can": 1, + "be": 1, + "purple.": 1, + "ends": 1, + "Plotkin.": 2, + "Include": 1, + "The": 1, + "Kitchen": 1, + "room.": 1, + "[": 1, + "This": 1, + "kitchen": 1, + "modelled": 1, + "after": 1, + "the": 4, + "one": 1, + "in": 2, + "Zork": 1, + "although": 1, + "it": 1, + "lacks": 1, + "detail": 1, + "to": 2, + "establish": 1, + "this": 1, + "player.": 1, + "]": 1, + "purple": 1, + "called": 1, + "Gelett": 2, + "Kitchen.": 1, + "Instead": 1, + "examining": 1, + "say": 1 + }, + "XProc": { + "": 1, + "version=": 2, + "encoding=": 1, + "": 1, + "xmlns": 2, + "p=": 1, + "c=": 1, + "": 1, + "port=": 2, + "": 1, + "": 1, + "Hello": 1, + "world": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1 + }, + "Nu": { + ";": 22, + "main.nu": 1, + "Entry": 1, + "point": 1, + "for": 1, + "a": 1, + "Nu": 1, + "program.": 1, + "Copyright": 1, + "(": 14, + "c": 1, + ")": 14, + "Tim": 1, + "Burks": 1, + "Neon": 1, + "Design": 1, + "Technology": 1, + "Inc.": 1, + "load": 4, + "basics": 1, + "cocoa": 1, + "definitions": 1, + "menu": 1, + "generation": 1, + "Aaron": 1, + "Hillegass": 1, + "t": 1, + "retain": 1, + "it.": 1, + "NSApplication": 2, + "sharedApplication": 2, + "setDelegate": 1, + "set": 1, + "delegate": 1, + "ApplicationDelegate": 1, + "alloc": 1, + "init": 1, + "this": 1, + "makes": 1, + "the": 3, + "application": 1, + "window": 1, + "take": 1, + "focus": 1, + "when": 1, + "we": 1, + "ve": 1, + "started": 1, + "it": 1, + "from": 1, + "terminal": 1, + "activateIgnoringOtherApps": 1, + "YES": 1, + "run": 1, + "main": 1, + "Cocoa": 1, + "event": 1, + "loop": 1, + "NSApplicationMain": 1, + "nil": 1, + "SHEBANG#!nush": 1, + "puts": 1 + }, + "edn": { + "[": 24, + "{": 22, + "db/id": 22, + "#db/id": 22, + "db.part/db": 6, + "]": 24, + "db/ident": 3, + "object/name": 18, + "db/doc": 4, + "db/valueType": 3, + "db.type/string": 2, + "db/index": 3, + "true": 3, + "db/cardinality": 3, + "db.cardinality/one": 3, + "db.install/_attribute": 3, + "}": 22, + "object/meanRadius": 18, + "db.type/double": 1, + "data/source": 2, + "db.part/tx": 2, + "db.part/user": 17 + }, + "Zephir": { + "namespace": 4, + "Test": 4, + "Router": 3, + ";": 91, + "class": 3, + "Route": 1, + "{": 58, + "protected": 9, + "_pattern": 3, + "_compiledPattern": 3, + "_paths": 3, + "_methods": 5, + "_hostname": 3, + "_converters": 3, + "_id": 2, + "_name": 3, + "_beforeMatch": 3, + "public": 22, + "function": 22, + "__construct": 1, + "(": 59, + "pattern": 37, + "paths": 7, + "null": 11, + "httpMethods": 6, + ")": 57, + "this": 28, + "-": 25, + "reConfigure": 2, + "let": 51, + "}": 52, + "compilePattern": 2, + "var": 4, + "idPattern": 6, + "if": 39, + "memstr": 10, + "str_replace": 6, + "return": 26, + ".": 5, + "via": 1, + "extractNamedParams": 2, + "string": 6, + "char": 1, + "ch": 27, + "tmp": 4, + "matches": 5, + "boolean": 1, + "notValid": 5, + "false": 3, + "int": 3, + "cursor": 4, + "cursorVar": 5, + "marker": 4, + "bracketCount": 7, + "parenthesesCount": 5, + "foundPattern": 6, + "intermediate": 4, + "numberMatches": 4, + "route": 12, + "item": 7, + "variable": 5, + "regexp": 7, + "strlen": 1, + "<=>": 5, + "0": 9, + "for": 4, + "in": 4, + "1": 3, + "else": 11, + "+": 5, + "substr": 3, + "break": 9, + "&&": 6, + "z": 2, + "Z": 2, + "true": 2, + "<='9')>": 1, + "_": 1, + "2": 2, + "continue": 1, + "[": 14, + "]": 14, + "moduleName": 5, + "controllerName": 7, + "actionName": 4, + "parts": 9, + "routePaths": 5, + "realClassName": 1, + "namespaceName": 1, + "pcrePattern": 4, + "compiledPattern": 4, + "extracted": 4, + "typeof": 2, + "throw": 1, + "new": 1, + "Exception": 4, + "explode": 1, + "switch": 1, + "count": 1, + "case": 3, + "controller": 1, + "action": 1, + "array": 1, + "The": 1, + "contains": 1, + "invalid": 1, + "#": 1, + "array_merge": 1, + "//Update": 1, + "the": 1, + "s": 1, + "name": 5, + "*": 2, + "@return": 1, + "*/": 1, + "getName": 1, + "setName": 1, + "beforeMatch": 1, + "callback": 2, + "getBeforeMatch": 1, + "getRouteId": 1, + "getPattern": 1, + "getCompiledPattern": 1, + "getPaths": 1, + "getReversedPaths": 1, + "reversed": 4, + "path": 3, + "position": 3, + "setHttpMethods": 1, + "getHttpMethods": 1, + "setHostname": 1, + "hostname": 2, + "getHostname": 1, + "convert": 1, + "converter": 2, + "getConverters": 1, + "%": 10, + "#define": 1, + "MAX_FACTOR": 3, + "#include": 9, + "static": 1, + "long": 3, + "fibonacci": 4, + "n": 5, + "<": 2, + "Cblock": 1, + "testCblock1": 1, + "a": 6, + "testCblock2": 1, + "extern": 1, + "zend_class_entry": 1, + "*test_router_exception_ce": 1, + "ZEPHIR_INIT_CLASS": 2, + "Test_Router_Exception": 2, + "php": 1, + "extends": 1, + "#ifdef": 1, + "HAVE_CONFIG_H": 1, + "#endif": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "ZEPHIR_REGISTER_CLASS_EX": 1, + "test": 1, + "router_exception": 1, + "zend_exception_get_default": 1, + "TSRMLS_C": 1, + "NULL": 1, + "SUCCESS": 1 + }, + "Component Pascal": { + "MODULE": 2, + "ObxControls": 1, + ";": 123, + "IMPORT": 2, + "Dialog": 1, + "Ports": 1, + "Properties": 1, + "Views": 1, + "CONST": 1, + "beginner": 5, + "advanced": 3, + "expert": 1, + "guru": 2, + "TYPE": 1, + "View": 6, + "POINTER": 2, + "TO": 2, + "RECORD": 2, + "(": 91, + "Views.View": 2, + ")": 94, + "size": 1, + "INTEGER": 10, + "END": 31, + "VAR": 9, + "data*": 1, + "class*": 1, + "list*": 1, + "Dialog.List": 1, + "width*": 1, + "predef": 12, + "ARRAY": 2, + "OF": 2, + "PROCEDURE": 12, + "SetList": 4, + "BEGIN": 13, + "IF": 11, + "data.class": 5, + "THEN": 12, + "data.list.SetLen": 3, + "data.list.SetItem": 11, + "ELSIF": 1, + "ELSE": 3, + "v": 6, + "CopyFromSimpleView": 2, + "source": 2, + "v.size": 10, + ".size": 1, + "Restore": 2, + "f": 1, + "Views.Frame": 1, + "l": 1, + "t": 1, + "r": 7, + "b": 1, + "[": 13, + "]": 13, + "f.DrawRect": 1, + "Ports.fill": 1, + "Ports.red": 1, + "HandlePropMsg": 2, + "msg": 2, + "Views.PropMessage": 1, + "WITH": 1, + "Properties.SizePref": 1, + "DO": 4, + "msg.w": 1, + "msg.h": 1, + "ClassNotify*": 1, + "op": 4, + "from": 2, + "to": 5, + "Dialog.changed": 2, + "OR": 4, + "&": 8, + "data.list.index": 3, + "data.width": 4, + "Dialog.Update": 2, + "data": 2, + "Dialog.UpdateList": 1, + "data.list": 1, + "ClassNotify": 1, + "ListNotify*": 1, + "ListNotify": 1, + "ListGuard*": 1, + "par": 2, + "Dialog.Par": 2, + "par.disabled": 1, + "ListGuard": 1, + "WidthGuard*": 1, + "par.readOnly": 1, + "#": 3, + "WidthGuard": 1, + "Open*": 1, + "NEW": 2, + "*": 1, + "Ports.mm": 1, + "Views.OpenAux": 1, + "Open": 1, + "ObxControls.": 1, + "ObxFact": 1, + "Stores": 1, + "Models": 1, + "TextModels": 1, + "TextControllers": 1, + "Integers": 1, + "Read": 3, + "TextModels.Reader": 2, + "x": 15, + "Integers.Integer": 3, + "i": 17, + "len": 5, + "beg": 11, + "ch": 14, + "CHAR": 3, + "buf": 5, + "r.ReadChar": 5, + "WHILE": 3, + "r.eot": 4, + "<=>": 1, + "ReadChar": 1, + "ASSERT": 1, + "eot": 1, + "<": 8, + "r.Pos": 2, + "-": 1, + "REPEAT": 3, + "INC": 4, + "UNTIL": 3, + "+": 1, + "r.SetPos": 2, + "X": 1, + "Integers.ConvertFromString": 1, + "Write": 3, + "w": 4, + "TextModels.Writer": 2, + "Integers.Sign": 2, + "w.WriteChar": 3, + "Integers.Digits10Of": 1, + "DEC": 1, + "Integers.ThisDigit10": 1, + "Compute*": 1, + "end": 6, + "n": 3, + "s": 3, + "Stores.Operation": 1, + "attr": 3, + "TextModels.Attributes": 1, + "c": 3, + "TextControllers.Controller": 1, + "TextControllers.Focus": 1, + "NIL": 3, + "c.HasSelection": 1, + "c.GetSelection": 1, + "c.text.NewReader": 1, + "r.ReadPrev": 2, + "r.attr": 1, + "Integers.Compare": 1, + "Integers.Long": 3, + "MAX": 1, + "LONGINT": 1, + "SHORT": 1, + "Integers.Short": 1, + "Integers.Product": 1, + "Models.BeginScript": 1, + "c.text": 2, + "c.text.Delete": 1, + "c.text.NewWriter": 1, + "w.SetPos": 1, + "w.SetAttr": 1, + "Models.EndScript": 1, + "Compute": 1, + "ObxFact.": 1 + }, + "RDoc": { + "RDoc": 7, + "-": 9, + "Ruby": 4, + "Documentation": 2, + "System": 1, + "home": 1, + "https": 3, + "//github.com/rdoc/rdoc": 1, + "rdoc": 7, + "http": 1, + "//docs.seattlerb.org/rdoc": 1, + "bugs": 1, + "//github.com/rdoc/rdoc/issues": 1, + "code": 1, + "quality": 1, + "{": 1, + "": 1, + "src=": 1, + "alt=": 1, + "}": 1, + "[": 3, + "//codeclimate.com/github/rdoc/rdoc": 1, + "]": 3, + "Description": 1, + "produces": 1, + "HTML": 1, + "and": 9, + "command": 4, + "line": 1, + "documentation": 8, + "for": 9, + "projects.": 1, + "includes": 1, + "the": 12, + "+": 8, + "ri": 1, + "tools": 1, + "generating": 1, + "displaying": 1, + "from": 1, + "line.": 1, + "Generating": 1, + "Once": 1, + "installed": 1, + "you": 3, + "can": 2, + "create": 1, + "using": 1, + "options": 1, + "names...": 1, + "For": 1, + "an": 1, + "up": 1, + "to": 4, + "date": 1, + "option": 1, + "summary": 1, + "type": 2, + "help": 1, + "A": 1, + "typical": 1, + "use": 1, + "might": 1, + "be": 3, + "generate": 1, + "a": 5, + "package": 1, + "of": 2, + "source": 2, + "(": 3, + "such": 1, + "as": 1, + "itself": 1, + ")": 3, + ".": 2, + "This": 2, + "generates": 1, + "all": 1, + "C": 1, + "files": 2, + "in": 4, + "below": 1, + "current": 1, + "directory.": 1, + "These": 1, + "will": 1, + "stored": 1, + "tree": 1, + "starting": 1, + "subdirectory": 1, + "doc": 1, + "You": 2, + "make": 2, + "this": 1, + "slightly": 1, + "more": 1, + "useful": 1, + "your": 1, + "readers": 1, + "by": 1, + "having": 1, + "index": 1, + "page": 1, + "contain": 1, + "primary": 1, + "file.": 1, + "In": 1, + "our": 1, + "case": 1, + "we": 1, + "could": 1, + "#": 1, + "rdoc/rdoc": 1, + "s": 1, + "OK": 1, + "file": 1, + "bug": 1, + "report": 1, + "anything": 1, + "t": 1, + "figure": 1, + "out": 1, + "how": 1, + "produce": 1, + "output": 1, + "like": 1, + "that": 1, + "is": 4, + "probably": 1, + "bug.": 1, + "License": 1, + "Copyright": 1, + "c": 2, + "Dave": 1, + "Thomas": 1, + "The": 1, + "Pragmatic": 1, + "Programmers.": 1, + "Portions": 2, + "Eric": 1, + "Hodel.": 1, + "copyright": 1, + "others": 1, + "see": 1, + "individual": 1, + "LEGAL.rdoc": 1, + "details.": 1, + "free": 1, + "software": 2, + "may": 1, + "redistributed": 1, + "under": 1, + "terms": 1, + "specified": 1, + "LICENSE.rdoc.": 1, + "Warranty": 1, + "provided": 1, + "without": 2, + "any": 1, + "express": 1, + "or": 1, + "implied": 2, + "warranties": 2, + "including": 1, + "limitation": 1, + "merchantability": 1, + "fitness": 1, + "particular": 1, + "purpose.": 1 + }, + "Gnuplot": { + "set": 98, + "boxwidth": 1, + "absolute": 1, + "style": 7, + "fill": 1, + "solid": 1, + "border": 3, + "lt": 15, + "-": 102, + "key": 1, + "inside": 1, + "right": 1, + "top": 1, + "vertical": 2, + "Right": 1, + "noreverse": 13, + "noenhanced": 1, + "autotitles": 1, + "nobox": 1, + "histogram": 1, + "clustered": 1, + "gap": 1, + "title": 13, + "offset": 25, + "character": 22, + "datafile": 1, + "missing": 1, + "data": 1, + "histograms": 1, + "xtics": 3, + "in": 1, + "scale": 1, + "nomirror": 1, + "rotate": 3, + "by": 3, + "autojustify": 1, + "norangelimit": 3, + "font": 8, + "(": 52, + ")": 52, + "yrange": 4, + "[": 18, + "]": 18, + "nowriteback": 12, + "i": 1, + "plot": 3, + "using": 2, + "xtic": 1, + "ti": 4, + "col": 4, + "u": 25, + "SHEBANG#!gnuplot": 1, + "reset": 1, + "terminal": 1, + "png": 1, + "output": 1, + "xlabel": 6, + "ylabel": 5, + "#set": 2, + "xr": 1, + "yr": 1, + "pt": 2, + "notitle": 15, + "dummy": 3, + "v": 31, + "label": 14, + "at": 14, + "left": 15, + "norotate": 18, + "back": 23, + "nopoint": 14, + "arrow": 7, + "from": 7, + "to": 7, + "head": 7, + "nofilled": 7, + "linetype": 11, + "linewidth": 11, + "parametric": 3, + "view": 3, + "samples": 3, + "isosamples": 3, + "hidden3d": 2, + "trianglepattern": 2, + "undefined": 2, + "altdiagonal": 2, + "bentover": 2, + "ztics": 2, + "textcolor": 13, + "xrange": 3, + "zlabel": 4, + "zrange": 2, + "sinc": 13, + "sin": 3, + "sqrt": 4, + "u**2": 4, + "+": 6, + "v**2": 4, + "/": 2, + "GPFUN_sinc": 2, + "xx": 2, + "dx": 2, + "x0": 4, + "x1": 4, + "x2": 4, + "x3": 4, + "x4": 4, + "x5": 4, + "x6": 4, + "x7": 4, + "x8": 4, + "x9": 4, + "splot": 3, + "<": 10, + "rgb": 8, + "line": 4, + "linecolor": 4, + "pointtype": 4, + "pointsize": 4, + "default": 4, + "pointinterval": 4, + "noxtics": 2, + "noytics": 2, + "bmargin": 1, + "unset": 2, + "colorbox": 3, + "cos": 9, + "x": 7, + "ls": 4, + ".2": 1, + ".4": 1, + ".6": 1, + ".8": 1, + "lc": 3, + "angles": 1, + "degrees": 1, + "mapping": 1, + "spherical": 1, + "noztics": 1, + "urange": 1, + "vrange": 1, + "cblabel": 1, + "cbrange": 1, + "user": 1, + "origin": 1, + "screen": 2, + "size": 1, + "front": 1, + "bdefault": 1, + "*cos": 1, + "*sin": 1, + "with": 3, + "lines": 2, + "labels": 1, + "point": 1, + "lw": 1, + ".1": 1, + "tc": 1, + "pal": 1, + "xmin": 3, + "xmax": 1, + "n": 1, + "zbase": 2, + ".5": 2, + "*n": 1, + "floor": 3, + "u/3": 1, + "*dx": 1, + "%": 2, + "u/3.*dx": 1, + "/0": 1 + }, + "Mask": { + "header": 1, + "{": 10, + "img": 1, + ".logo": 1, + "src": 1, + "alt": 1, + "logo": 1, + ";": 3, + "h4": 1, + "if": 1, + "(": 3, + "currentUser": 1, + ")": 3, + ".account": 1, + "a": 1, + "href": 1, + "}": 10, + ".view": 1, + "ul": 1, + "for": 1, + "user": 1, + "index": 1, + "of": 1, + "users": 1, + "li.user": 1, + "data": 1, + "-": 3, + "id": 1, + ".name": 1, + ".count": 1, + ".date": 1, + "countdownComponent": 1, + "input": 1, + "type": 1, + "text": 1, + "dualbind": 1, + "value": 1, + "button": 1, + "x": 2, + "signal": 1, + "h5": 1, + "animation": 1, + "slot": 1, + "@model": 1, + "@next": 1, + "footer": 1, + "bazCompo": 1 + }, + "Brightscript": { + "**": 17, + "Simple": 1, + "Grid": 2, + "Screen": 2, + "Demonstration": 1, + "App": 1, + "Copyright": 1, + "(": 32, + "c": 1, + ")": 31, + "Roku": 1, + "Inc.": 1, + "All": 3, + "Rights": 1, + "Reserved.": 1, + "************************************************************": 2, + "Sub": 2, + "Main": 1, + "set": 2, + "to": 10, + "go": 1, + "time": 1, + "get": 1, + "started": 1, + "while": 4, + "gridstyle": 7, + "<": 1, + "print": 7, + ";": 10, + "screen": 5, + "preShowGridScreen": 2, + "showGridScreen": 2, + "end": 2, + "End": 4, + "Set": 1, + "the": 17, + "configurable": 1, + "theme": 3, + "attributes": 2, + "for": 10, + "application": 1, + "Configure": 1, + "custom": 1, + "overhang": 1, + "and": 4, + "Logo": 1, + "are": 2, + "artwork": 2, + "colors": 1, + "offsets": 1, + "specific": 1, + "app": 1, + "******************************************************": 4, + "Screens": 1, + "can": 2, + "make": 1, + "slight": 1, + "adjustments": 1, + "default": 1, + "individual": 1, + "attributes.": 1, + "these": 1, + "greyscales": 1, + "theme.GridScreenBackgroundColor": 1, + "theme.GridScreenMessageColor": 1, + "theme.GridScreenRetrievingColor": 1, + "theme.GridScreenListNameColor": 1, + "used": 1, + "in": 3, + "theme.CounterTextLeft": 1, + "theme.CounterSeparator": 1, + "theme.CounterTextRight": 1, + "theme.GridScreenLogoHD": 1, + "theme.GridScreenLogoOffsetHD_X": 1, + "theme.GridScreenLogoOffsetHD_Y": 1, + "theme.GridScreenOverhangHeightHD": 1, + "theme.GridScreenLogoSD": 1, + "theme.GridScreenOverhangHeightSD": 1, + "theme.GridScreenLogoOffsetSD_X": 1, + "theme.GridScreenLogoOffsetSD_Y": 1, + "theme.GridScreenFocusBorderSD": 1, + "theme.GridScreenFocusBorderHD": 1, + "use": 1, + "your": 1, + "own": 1, + "description": 1, + "background": 1, + "theme.GridScreenDescriptionOffsetSD": 1, + "theme.GridScreenDescriptionOffsetHD": 1, + "return": 5, + "Function": 5, + "Perform": 1, + "any": 1, + "startup/initialization": 1, + "stuff": 1, + "prior": 1, + "style": 6, + "as": 2, + "string": 3, + "As": 3, + "Object": 2, + "m.port": 3, + "CreateObject": 2, + "screen.SetMessagePort": 1, + "screen.": 1, + "The": 1, + "will": 3, + "show": 1, + "retreiving": 1, + "categoryList": 4, + "getCategoryList": 1, + "[": 3, + "]": 4, + "+": 1, + "screen.setupLists": 1, + "categoryList.count": 2, + "screen.SetListNames": 1, + "StyleButtons": 3, + "getGridControlButtons": 1, + "screen.SetContentList": 2, + "i": 3, + "-": 15, + "getShowsForCategoryItem": 1, + "screen.Show": 1, + "true": 1, + "msg": 3, + "wait": 1, + "getmessageport": 1, + "does": 1, + "not": 2, + "work": 1, + "on": 1, + "gridscreen": 1, + "type": 2, + "if": 3, + "then": 3, + "msg.GetMessage": 1, + "msg.GetIndex": 3, + "msg.getData": 2, + "msg.isListItemFocused": 1, + "else": 1, + "msg.isListItemSelected": 1, + "row": 2, + "selection": 3, + "yes": 1, + "so": 2, + "we": 3, + "come": 1, + "back": 1, + "with": 2, + "new": 1, + ".Title": 1, + "endif": 1, + "**********************************************************": 1, + "this": 3, + "function": 1, + "passing": 1, + "an": 1, + "roAssociativeArray": 2, + "be": 2, + "sufficient": 1, + "springboard": 2, + "display": 2, + "add": 1, + "code": 1, + "create": 1, + "now": 1, + "do": 1, + "nothing": 1, + "Return": 1, + "list": 1, + "of": 5, + "categories": 1, + "filter": 1, + "all": 1, + "categories.": 1, + "just": 2, + "static": 1, + "data": 2, + "example.": 1, + "********************************************************************": 1, + "ContentMetaData": 1, + "objects": 1, + "shows": 1, + "category.": 1, + "For": 1, + "example": 1, + "cheat": 1, + "but": 2, + "ideally": 1, + "you": 1, + "dynamically": 1, + "content": 2, + "each": 1, + "category": 1, + "is": 1, + "dynamic": 1, + "s": 1, + "one": 3, + "small": 1, + "step": 1, + "a": 4, + "man": 1, + "giant": 1, + "leap": 1, + "mankind.": 1, + "http": 14, + "//upload.wikimedia.org/wikipedia/commons/1/1e/Apollo_11_first_step.jpg": 2, + "I": 2, + "have": 2, + "Dream": 1, + "PG": 1, + "dream": 1, + "that": 1, + "my": 1, + "four": 1, + "little": 1, + "children": 1, + "day": 1, + "live": 1, + "nation": 1, + "where": 1, + "they": 1, + "judged": 1, + "by": 2, + "color": 1, + "their": 2, + "skin": 1, + "character.": 1, + "//upload.wikimedia.org/wikipedia/commons/8/81/Martin_Luther_King_": 2, + "_March_on_Washington.jpg": 2, + "Flat": 6, + "Movie": 2, + "HD": 6, + "x2": 4, + "SD": 5, + "Netflix": 1, + "//upload.wikimedia.org/wikipedia/commons/4/43/Gold_star_on_blue.gif": 2, + "Landscape": 1, + "x3": 6, + "Channel": 1, + "Store": 1, + "//upload.wikimedia.org/wikipedia/commons/thumb/9/96/Dunkery_Hill.jpg/800px": 2, + "Dunkery_Hill.jpg": 2, + "Portrait": 1, + "x4": 1, + "posters": 3, + "//upload.wikimedia.org/wikipedia/commons/9/9f/Kane_George_Gurnett.jpg": 2, + "Square": 1, + "x1": 1, + "//upload.wikimedia.org/wikipedia/commons/thumb/d/de/SQUARE_SHAPE.svg/536px": 2, + "SQUARE_SHAPE.svg.png": 2, + "x9": 1, + "//upload.wikimedia.org/wikipedia/commons/thumb/2/22/": 2, + "%": 8, + "C3": 4, + "cran_TV_plat.svg/200px": 2, + "cran_TV_plat.svg.png": 2, + "}": 1, + "buttons": 1 + }, + "Kotlin": { + "package": 1, + "addressbook": 1, + "class": 5, + "Contact": 1, + "(": 15, + "val": 16, + "name": 2, + "String": 7, + "emails": 1, + "List": 3, + "": 1, + "addresses": 1, + "": 1, + "phonenums": 1, + "": 1, + ")": 15, + "EmailAddress": 1, + "user": 1, + "host": 1, + "PostalAddress": 1, + "streetAddress": 1, + "city": 1, + "zip": 1, + "state": 2, + "USState": 1, + "country": 3, + "Country": 7, + "{": 6, + "assert": 1, + "null": 3, + "xor": 1, + "Countries": 2, + "[": 3, + "]": 3, + "}": 6, + "PhoneNumber": 1, + "areaCode": 1, + "Int": 1, + "number": 1, + "Long": 1, + "object": 1, + "fun": 1, + "get": 2, + "id": 2, + "CountryID": 1, + "countryTable": 2, + "private": 2, + "var": 1, + "table": 5, + "Map": 2, + "": 2, + "if": 1, + "HashMap": 1, + "for": 1, + "line": 3, + "in": 1, + "TextFile": 1, + ".lines": 1, + "stripWhiteSpace": 1, + "true": 1, + "return": 1 + }, + "XC": { + "int": 2, + "main": 1, + "(": 1, + ")": 1, + "{": 2, + "x": 3, + ";": 4, + "chan": 1, + "c": 3, + "par": 1, + "<:>": 1, + "0": 1, + "}": 2, + "return": 1 + }, + "QMake": { + "exists": 1, + "(": 8, + ".git/HEAD": 1, + ")": 8, + "{": 6, + "system": 2, + "git": 1, + "rev": 1, + "-": 1, + "parse": 1, + "HEAD": 1, + "rev.txt": 2, + "}": 6, + "else": 2, + "echo": 1, + "ThisIsNotAGitRepo": 1, + "SHEBANG#!qmake": 1, + "message": 1, + "This": 1, + "is": 1, + "QMake.": 1, + "QT": 4, + "+": 13, + "core": 2, + "gui": 2, + "greaterThan": 1, + "QT_MAJOR_VERSION": 1, + "widgets": 1, + "contains": 2, + "QT_CONFIG": 2, + "opengl": 2, + "|": 1, + "opengles2": 1, + "DEFINES": 1, + "QT_NO_OPENGL": 1, + "TEMPLATE": 2, + "app": 2, + "win32": 2, + "TARGET": 3, + "BlahApp": 1, + "RC_FILE": 1, + "Resources/winres.rc": 1, + "blahapp": 1, + "include": 1, + "functions.pri": 1, + "SOURCES": 2, + "file.cpp": 2, + "HEADERS": 2, + "file.h": 2, + "FORMS": 2, + "file.ui": 1, + "RESOURCES": 1, + "res.qrc": 1, + "CONFIG": 1, + "qt": 1, + "simpleapp": 1, + "file2.c": 1, + "This/Is/Folder/file3.cpp": 1, + "file2.h": 1, + "This/Is/Folder/file3.h": 1, + "This/Is/Folder/file3.ui": 1, + "Test.ui": 1 + }, + "Nix": { + "{": 8, + "stdenv": 1, + "fetchurl": 2, + "fetchgit": 5, + "openssl": 2, + "zlib": 2, + "pcre": 2, + "libxml2": 2, + "libxslt": 2, + "expat": 2, + "rtmp": 4, + "false": 4, + "fullWebDAV": 3, + "syslog": 4, + "moreheaders": 3, + "...": 1, + "}": 8, + "let": 1, + "version": 2, + ";": 32, + "mainSrc": 2, + "url": 5, + "sha256": 5, + "-": 12, + "ext": 5, + "git": 2, + "//github.com/arut/nginx": 2, + "module.git": 3, + "rev": 4, + "dav": 2, + "https": 2, + "//github.com/yaoweibin/nginx_syslog_patch.git": 1, + "//github.com/agentzh/headers": 1, + "more": 1, + "nginx": 1, + "in": 1, + "stdenv.mkDerivation": 1, + "rec": 1, + "name": 1, + "src": 1, + "buildInputs": 1, + "[": 5, + "]": 5, + "+": 10, + "stdenv.lib.optional": 5, + "patches": 1, + "if": 1, + "then": 1, + "else": 1, + "configureFlags": 1, + "preConfigure": 1, + "export": 1, + "NIX_CFLAGS_COMPILE": 1, + "postInstall": 1, + "mv": 1, + "out/sbin": 1, + "out/bin": 1, + "meta": 1, + "description": 1, + "maintainers": 1, + "stdenv.lib.maintainers.raskin": 1, + "platforms": 1, + "stdenv.lib.platforms.all": 1, + "inherit": 1 + }, + "Turing": { + "function": 1, + "factorial": 4, + "(": 3, + "n": 9, + "int": 2, + ")": 3, + "real": 1, + "if": 2, + "then": 1, + "result": 2, + "else": 1, + "*": 1, + "-": 1, + "end": 3, + "var": 1, + "loop": 2, + "put": 3, + "..": 1, + "get": 1, + "exit": 1, + "when": 1 + }, + "Xojo": { + "#tag": 88, + "Report": 2, + "Begin": 23, + "BillingReport": 1, + "Compatibility": 2, + "Units": 1, + "Width": 3, + "PageHeader": 1, + "Type": 34, + "Height": 5, + "End": 27, + "Body": 1, + "PageFooter": 1, + "EndReport": 1, + "ReportCode": 1, + "EndReportCode": 1, + "Toolbar": 2, + "MyToolbar": 1, + "ToolButton": 2, + "FirstItem": 1, + "Caption": 3, + "HelpTag": 3, + "Style": 2, + "SecondItem": 1, + "EndToolbar": 1, + "Class": 3, + "Protected": 1, + "App": 1, + "Inherits": 1, + "Application": 1, + "Constant": 3, + "Name": 31, + "kEditClear": 1, + "String": 3, + "Dynamic": 3, + "False": 14, + "Default": 9, + "Scope": 4, + "Public": 3, + "#Tag": 5, + "Instance": 5, + "Platform": 5, + "Windows": 2, + "Language": 5, + "Definition": 5, + "Linux": 2, + "EndConstant": 3, + "kFileQuit": 1, + "kFileQuitShortcut": 1, + "Mac": 1, + "OS": 1, + "ViewBehavior": 2, + "EndViewBehavior": 2, + "EndClass": 1, + "Menu": 2, + "MainMenuBar": 1, + "MenuItem": 11, + "FileMenu": 1, + "SpecialMenu": 13, + "Text": 13, + "Index": 14, + "-": 14, + "AutoEnable": 13, + "True": 46, + "Visible": 41, + "QuitMenuItem": 1, + "FileQuit": 1, + "ShortcutKey": 6, + "Shortcut": 6, + "EditMenu": 1, + "EditUndo": 1, + "MenuModifier": 5, + "EditSeparator1": 1, + "EditCut": 1, + "EditCopy": 1, + "EditPaste": 1, + "EditClear": 1, + "EditSeparator2": 1, + "EditSelectAll": 1, + "UntitledSeparator": 1, + "AppleMenuItem": 1, + "AboutItem": 1, + "EndMenu": 1, + "Dim": 3, + "dbFile": 3, + "As": 4, + "FolderItem": 1, + "db": 1, + "New": 1, + "SQLiteDatabase": 1, + "GetFolderItem": 1, + "(": 7, + ")": 7, + "db.DatabaseFile": 1, + "If": 4, + "db.Connect": 1, + "Then": 1, + "db.SQLExecute": 2, + "_": 1, + "+": 5, + "db.Error": 1, + "then": 1, + "MsgBox": 3, + "db.ErrorMessage": 2, + "db.Rollback": 1, + "Else": 2, + "db.Commit": 1, + "Window": 2, + "Window1": 1, + "BackColor": 1, + "&": 1, + "cFFFFFF00": 1, + "Backdrop": 1, + "CloseButton": 1, + "Composite": 1, + "Frame": 1, + "FullScreen": 1, + "FullScreenButton": 1, + "HasBackColor": 1, + "ImplicitInstance": 1, + "LiveResize": 1, + "MacProcID": 1, + "MaxHeight": 1, + "MaximizeButton": 1, + "MaxWidth": 1, + "MenuBar": 1, + "MenuBarVisible": 1, + "MinHeight": 1, + "MinimizeButton": 1, + "MinWidth": 1, + "Placement": 1, + "Resizeable": 1, + "Title": 1, + "PushButton": 1, + "HelloWorldButton": 2, + "AutoDeactivate": 1, + "Bold": 1, + "ButtonStyle": 1, + "Cancel": 1, + "Enabled": 1, + "InitialParent": 1, + "Italic": 1, + "Left": 1, + "LockBottom": 1, + "LockedInPosition": 1, + "LockLeft": 1, + "LockRight": 1, + "LockTop": 1, + "TabIndex": 1, + "TabPanelIndex": 1, + "TabStop": 1, + "TextFont": 1, + "TextSize": 1, + "TextUnit": 1, + "Top": 1, + "Underline": 1, + "EndWindow": 1, + "WindowCode": 1, + "EndWindowCode": 1, + "Events": 1, + "Event": 1, + "Sub": 2, + "Action": 1, + "total": 4, + "Integer": 2, + "For": 1, + "i": 2, + "To": 1, + "Next": 1, + "Str": 1, + "EndEvent": 1, + "EndEvents": 1, + "ViewProperty": 28, + "true": 26, + "Group": 28, + "InitialValue": 23, + "EndViewProperty": 28, + "EditorType": 14, + "EnumValues": 2, + "EndEnumValues": 2 + }, + "Xtend": { + "package": 2, + "example6": 1, + "import": 7, + "org.junit.Test": 2, + "static": 4, + "org.junit.Assert.*": 2, + "java.io.FileReader": 1, + "java.util.Set": 1, + "extension": 2, + "com.google.common.io.CharStreams.*": 1, + "class": 4, + "Movies": 1, + "{": 14, + "@Test": 7, + "def": 7, + "void": 7, + "numberOfActionMovies": 1, + "(": 42, + ")": 42, + "assertEquals": 14, + "movies.filter": 2, + "[": 9, + "categories.contains": 1, + "]": 9, + ".size": 2, + "}": 13, + "yearOfBestMovieFrom80ies": 1, + ".contains": 1, + "year": 2, + ".sortBy": 1, + "rating": 3, + ".last.year": 1, + "sumOfVotesOfTop2": 1, + "val": 9, + "long": 2, + "movies": 3, + "movies.sortBy": 1, + "-": 5, + ".take": 1, + ".map": 1, + "numberOfVotes": 2, + ".reduce": 1, + "a": 2, + "b": 2, + "|": 2, + "+": 6, + "_229": 1, + "new": 2, + "FileReader": 1, + ".readLines.map": 1, + "line": 1, + "segments": 1, + "line.split": 1, + ".iterator": 2, + "return": 1, + "Movie": 2, + "segments.next": 4, + "Integer": 1, + "parseInt": 1, + "Double": 1, + "parseDouble": 1, + "Long": 1, + "parseLong": 1, + "segments.toSet": 1, + "@Data": 1, + "String": 2, + "title": 1, + "int": 1, + "double": 2, + "Set": 1, + "": 1, + "categories": 1, + "example2": 1, + "BasicExpressions": 2, + "literals": 5, + "//": 11, + "string": 1, + "work": 1, + "with": 2, + "single": 1, + "or": 1, + "quotes": 1, + "number": 1, + "big": 1, + "decimals": 1, + "in": 2, + "this": 1, + "case": 1, + "*": 1, + "bd": 3, + "boolean": 1, + "true": 1, + "false": 1, + "getClass": 1, + "typeof": 1, + "collections": 2, + "There": 1, + "are": 1, + "various": 1, + "methods": 2, + "to": 1, + "create": 1, + "and": 1, + "numerous": 1, + "which": 1, + "make": 1, + "working": 1, + "them": 1, + "convenient.": 1, + "list": 1, + "newArrayList": 2, + "list.map": 1, + "toUpperCase": 1, + ".head": 1, + "set": 1, + "newHashSet": 1, + "set.filter": 1, + "it": 2, + "map": 1, + "newHashMap": 1, + "map.get": 1, + "controlStructures": 1, + "looks": 1, + "like": 1, + "Java": 1, + "if": 1, + ".length": 1, "but": 1, - "#s.obj": 1, - "<": 1 + "foo": 1, + "bar": 1, + "Never": 2, + "happens": 3, + "text": 2, + "never": 1, + "s": 1, + "cascades.": 1, + "Object": 1, + "someValue": 2, + "switch": 1, + "Number": 1, + "loops": 1, + "for": 2, + "loop": 2, + "var": 1, + "counter": 8, + "i": 4, + "..": 1, + "while": 2, + "iterator": 1, + "iterator.hasNext": 1, + "iterator.next": 1 + }, + "Ruby": { + "SHEBANG#!rake": 1, + "task": 2, + "default": 2, + "do": 38, + "puts": 12, + "end": 239, + ".unshift": 1, + "File.dirname": 4, + "(": 244, + "__FILE__": 3, + ")": 256, + "#": 100, + "For": 1, + "use/testing": 1, + "when": 11, + "no": 1, + "gem": 3, + "is": 3, + "installed": 2, + "def": 143, + "require_all": 4, + "path": 16, + "glob": 2, + "File.join": 6, + "Dir": 4, + "[": 58, + "]": 58, + ".each": 4, + "|": 93, + "f": 11, + "require": 58, + "module": 8, + "Jekyll": 3, + "VERSION": 1, + "DEFAULTS": 2, + "{": 70, + "false": 29, + "Dir.pwd": 3, + "true": 15, + "}": 70, + "self.configuration": 1, + "override": 3, + "source": 2, + "||": 22, + "config_file": 2, + "begin": 9, + "config": 3, + "YAML.load_file": 1, + "raise": 17, + "if": 72, + "config.is_a": 1, + "Hash": 3, + "stdout.puts": 1, + "rescue": 13, + "err": 1, + "stderr.puts": 2, + "+": 47, + "err.to_s": 1, + "DEFAULTS.deep_merge": 1, + ".deep_merge": 1, + "object": 2, + "@user": 1, + "person": 1, + "attributes": 2, + "username": 1, + "email": 1, + "location": 1, + "created_at": 1, + "registered_at": 1, + "node": 2, + "role": 1, + "user": 1, + "user.is_admin": 1, + "child": 1, + "phone_numbers": 1, + "pnumbers": 1, + "extends": 1, + "node_numbers": 1, + "u": 1, + "partial": 1, + "u.phone_numbers": 1, + "SHEBANG#!python": 1, + "Jenkins": 1, + "Plugin": 1, + "Specification.new": 1, + "plugin": 3, + "plugin.name": 1, + "plugin.display_name": 1, + "plugin.version": 1, + "plugin.description": 1, + "plugin.url": 1, + "plugin.developed_by": 1, + "plugin.uses_repository": 1, + "github": 1, + "plugin.depends_on": 1, + "#plugin.depends_on": 1, + "SHEBANG#!macruby": 1, + "Sinatra": 2, + "class": 7, + "Request": 2, + "<": 2, + "Rack": 1, + "accept": 1, + "@env": 2, + "entries": 1, + ".to_s.split": 1, + "entries.map": 1, + "e": 8, + "accept_entry": 1, + ".sort_by": 1, + "&": 31, + "last": 4, + ".map": 6, + "first": 1, + "preferred_type": 1, + "yield": 5, + "self.defer": 1, + "/": 34, + "match": 6, + "keys": 6, + "<<": 15, + "else": 25, + "-": 34, + "pattern": 1, + "elsif": 7, + "path.respond_to": 5, + "&&": 8, + "path.keys": 1, + "names": 2, + "path.names": 1, + "TypeError": 1, + "URI": 3, + "URI.const_defined": 1, + "Parser": 1, + "Parser.new": 1, + "encoded": 1, + "char": 4, + "enc": 5, + "URI.escape": 1, + "public": 2, + "helpers": 3, + "data": 1, + "reset": 1, + "set": 36, + "environment": 2, + "ENV": 4, + "development": 6, + ".to_sym": 1, + "raise_errors": 1, + "Proc.new": 11, + "test": 5, + "dump_errors": 1, + "show_exceptions": 1, + "sessions": 1, + "logging": 2, + "protection": 1, + "method_override": 4, + "use_code": 1, + "default_encoding": 1, + "add_charset": 1, + "%": 10, + "w": 6, + "javascript": 1, + "xml": 2, + "xhtml": 1, + "json": 1, + "t": 3, + "settings.add_charset": 1, + "text": 3, + "//": 3, + "session_secret": 3, + "SecureRandom.hex": 1, + "LoadError": 3, + "NotImplementedError": 1, + "Kernel.rand": 1, + "**256": 1, + "self": 11, + "alias_method": 2, + "methodoverride": 2, + "run": 2, + "start": 7, + "server": 11, + "via": 1, + "at": 1, + "exit": 2, + "hook": 9, + "running": 2, + "the": 8, + "built": 1, + "in": 3, + "now": 1, + "http": 1, + "webrick": 1, + "bind": 1, + "port": 4, + "ruby_engine": 6, + "defined": 1, + "RUBY_ENGINE": 2, + "server.unshift": 6, + "ruby_engine.nil": 1, + "absolute_redirects": 1, + "prefixed_redirects": 1, + "empty_path_info": 1, + "nil": 21, + "app_file": 4, + "root": 5, + "File.expand_path": 1, + "views": 1, + "reload_templates": 1, + "lock": 1, + "threaded": 1, + "public_folder": 3, + "static": 1, + "File.exist": 1, + "static_cache_control": 1, + "error": 3, + "Exception": 1, + "response.status": 1, + "content_type": 3, + "configure": 2, + "get": 2, + "filename": 2, + "png": 1, + "send_file": 1, + "NotFound": 1, + "HTML": 2, + ".gsub": 5, + "": 1, + "html": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "

": 1, + "doesn": 1, + "rsquo": 1, + "know": 1, + "this": 2, + "ditty.": 1, + "

": 1, + "": 1, + "src=": 1, + "
": 1, + "id=": 1, + "Try": 1, + "
": 1,
+      "request.request_method.downcase": 1,
+      "n": 4,
+      "nend": 1,
+      "
": 1, + "
": 1, + "": 1, + "": 1, + "Application": 2, + "Base": 2, + "super": 3, + "unless": 15, + "self.register": 2, + "extensions": 6, + "block": 30, + "nodoc": 3, + "added_methods": 2, + "extensions.map": 1, + "m": 3, + "m.public_instance_methods": 1, + ".flatten": 1, + "Delegator.delegate": 1, + "Delegator": 1, + "self.delegate": 1, + "methods": 1, + "methods.each": 1, + "method_name": 5, + "define_method": 1, + "*args": 17, + "return": 25, + "args": 5, + "respond_to": 1, + "Delegator.target.send": 1, + "private": 3, + "delegate": 1, + "patch": 3, + "put": 1, + "post": 1, + "delete": 1, + "head": 3, + "options": 3, + "template": 1, + "layout": 1, + "before": 1, + "after": 1, + "not_found": 1, + "mime_type": 1, + "enable": 1, + "disable": 1, + "use": 1, + "production": 1, + "settings": 2, + "attr_accessor": 2, + "target": 1, + "self.target": 1, + "Wrapper": 1, + "initialize": 2, + "stack": 2, + "instance": 2, + "@stack": 1, + "@instance": 2, + "@instance.settings": 1, + "call": 1, + "env": 2, + "@stack.call": 1, + "inspect": 2, + "self.new": 1, + "base": 4, + "Class.new": 2, + "base.class_eval": 1, + "block_given": 5, + "Delegator.target.register": 1, + "self.helpers": 1, + "Delegator.target.helpers": 1, + "self.use": 1, + "Delegator.target.use": 1, + "Grit": 1, + "Foo": 1, + "Resque": 3, + "include": 3, + "Helpers": 1, + "extend": 2, + "redis": 7, + "case": 5, + "String": 2, + "/redis": 1, + "Redis.connect": 2, + "url": 12, + "thread_safe": 2, + "namespace": 3, + "server.split": 2, + "host": 3, + "db": 3, + "Redis.new": 1, + "resque": 2, + "@redis": 6, + "Redis": 3, + "Namespace.new": 2, + "Namespace": 1, + "@queues": 2, + "Hash.new": 1, + "h": 2, + "name": 51, + "Queue.new": 1, + "coder": 3, + "@coder": 1, + "MultiJsonCoder.new": 1, + "attr_writer": 4, + "self.redis": 2, + "Redis.respond_to": 1, + "connect": 1, + "redis_id": 2, + "redis.respond_to": 2, + "redis.server": 1, + "nodes": 1, + "distributed": 1, + "redis.nodes.map": 1, + "n.id": 1, + ".join": 1, + "redis.client.id": 1, + "before_first_fork": 2, + "@before_first_fork": 2, + "before_fork": 2, + "@before_fork": 2, + "after_fork": 2, + "@after_fork": 2, + "to_s": 1, + "inline": 3, + "alias": 1, + "push": 1, + "queue": 24, + "item": 4, + "pop": 1, + ".pop": 1, + "ThreadError": 1, + ".size": 1, + "peek": 1, + "count": 5, + ".slice": 1, + "list_range": 1, + "key": 8, + "decode": 2, + "redis.lindex": 1, + "Array": 2, + "redis.lrange": 1, + "queues": 3, + "redis.smembers": 1, + "remove_queue": 1, + ".destroy": 1, + "@queues.delete": 1, + "queue.to_s": 1, + "name.to_s": 3, + "enqueue": 1, + "klass": 16, + "enqueue_to": 2, + "queue_from_class": 4, + "before_hooks": 2, + "Plugin.before_enqueue_hooks": 1, + ".collect": 2, + "klass.send": 4, + "before_hooks.any": 2, + "result": 8, + "Job.create": 1, + "Plugin.after_enqueue_hooks": 1, + "dequeue": 1, + "Plugin.before_dequeue_hooks": 1, + "Job.destroy": 1, + "Plugin.after_dequeue_hooks": 1, + "klass.instance_variable_get": 1, + "@queue": 1, + "klass.respond_to": 1, + "and": 6, + "klass.queue": 1, + "reserve": 1, + "Job.reserve": 1, + "validate": 1, + "NoQueueError.new": 1, + "klass.to_s.empty": 1, + "NoClassError.new": 1, + "workers": 2, + "Worker.all": 1, + "working": 2, + "Worker.working": 1, + "remove_worker": 1, + "worker_id": 2, + "worker": 1, + "Worker.find": 1, + "worker.unregister_worker": 1, + "info": 2, + "pending": 1, + "queues.inject": 1, + "k": 2, + "processed": 2, + "Stat": 2, + "queues.size": 1, + "workers.size.to_i": 1, + "working.size": 1, + "failed": 3, + "servers": 1, + "redis.keys": 1, + "key.sub": 1, + "appraise": 2, + "load": 3, + "Pry.config.commands.import": 1, + "Pry": 1, + "ExtendedCommands": 1, + "Experimental": 1, + "Pry.config.pager": 1, + "Pry.config.color": 1, + "Pry.config.commands.alias_command": 1, + "Pry.config.commands.command": 1, + "output.puts": 1, + "Pry.config.history.should_save": 1, + "Pry.config.prompt": 1, + "proc": 2, + "Pry.plugins": 1, + ".disable": 1, + "SHEBANG#!ruby": 2, + "ActiveSupport": 1, + "Inflector": 1, + "pluralize": 3, + "word": 10, + "apply_inflections": 3, + "inflections.plurals": 1, + "singularize": 2, + "inflections.singulars": 1, + "camelize": 2, + "term": 1, + "uppercase_first_letter": 2, + "string": 4, + "term.to_s": 1, + "string.sub": 2, + "a": 10, + "z": 7, + "d": 6, + "*/": 1, + "inflections.acronyms": 1, + ".capitalize": 1, + "inflections.acronym_regex": 2, + "b": 4, + "A": 5, + "Z_": 1, + ".downcase": 2, + "string.gsub": 1, + "_": 2, + "*": 3, + "/i": 2, + "underscore": 3, + "camel_cased_word": 6, + "camel_cased_word.to_s.dup": 1, + "word.gsub": 4, + "Za": 1, + "Z": 3, + "word.tr": 1, + "word.downcase": 1, + "humanize": 2, + "lower_case_and_underscored_word": 1, + "lower_case_and_underscored_word.to_s.dup": 1, + "inflections.humans.each": 1, + "rule": 4, + "replacement": 4, + "break": 4, + "result.sub": 2, + "result.gsub": 2, + "/_id": 1, + "result.tr": 1, + "w/": 1, + ".upcase": 1, + "titleize": 1, + "": 1, + "capitalize": 1, + "Create": 1, + "of": 1, + "table": 2, + "like": 1, + "Rails": 1, + "does": 1, + "for": 1, + "models": 1, + "to": 1, + "This": 1, + "method": 4, + "uses": 1, + "on": 2, + "RawScaledScorer": 1, + "tableize": 2, + "class_name": 2, + "classify": 1, + "table_name": 1, + "table_name.to_s.sub": 1, + "/.*": 1, + "./": 1, + "dasherize": 1, + "underscored_word": 1, + "underscored_word.tr": 1, + "demodulize": 1, + "path.to_s": 3, + "i": 2, + "path.rindex": 2, + "..": 1, + "deconstantize": 1, + "implementation": 1, + "based": 1, + "one": 1, + "facets": 1, + "id": 1, + "outside": 2, + "inside": 2, + "s": 2, + "owned": 1, + "constant": 4, + "constant.ancestors.inject": 1, + "const": 3, + "ancestor": 3, + "Object": 1, + "ancestor.const_defined": 1, + "constant.const_get": 1, + "safe_constantize": 1, + "constantize": 1, + "NameError": 2, + "e.message": 2, + "uninitialized": 1, + "wrong": 1, + "const_regexp": 3, + "e.name.to_s": 1, + "camel_cased_word.to_s": 1, + "ArgumentError": 1, + "/not": 1, + "missing": 1, + "ordinal": 1, + "number": 2, + ".include": 1, + "number.to_i.abs": 2, + "ordinalize": 1, + "parts": 1, + "camel_cased_word.split": 1, + "parts.pop": 1, + "parts.reverse.inject": 1, + "acc": 2, + "part": 1, + "part.empty": 1, + "rules": 1, + "word.to_s.dup": 1, + "word.empty": 1, + "inflections.uncountables.include": 1, + "result.downcase": 1, + "Z/": 1, + "rules.each": 1, + "Formula": 2, + "FileUtils": 1, + "attr_reader": 5, + "version": 10, + "homepage": 2, + "specs": 14, + "downloader": 6, + "standard": 2, + "unstable": 2, + "bottle_version": 2, + "bottle_url": 3, + "bottle_sha1": 2, + "buildpath": 1, + "set_instance_variable": 12, + "@head": 4, + "not": 3, + "@url": 8, + "or": 7, + "ARGV.build_head": 2, + "@version": 10, + "@spec_to_use": 4, + "@unstable": 2, + "@standard.nil": 1, + "SoftwareSpecification.new": 3, + "@specs": 3, + "@standard": 3, + "@url.nil": 1, + "@name": 3, + "validate_variable": 7, + "@path": 1, + "path.nil": 1, + "self.class.path": 1, + "Pathname.new": 3, + "@spec_to_use.detect_version": 1, + "CHECKSUM_TYPES.each": 1, + "type": 10, + "@downloader": 2, + "download_strategy.new": 2, + "@spec_to_use.url": 1, + "@spec_to_use.specs": 1, + "@bottle_url": 2, + "bottle_base_url": 1, + "bottle_filename": 1, + "@bottle_sha1": 2, + "installed_prefix.children.length": 1, + "explicitly_requested": 1, + "ARGV.named.empty": 1, + "ARGV.formulae.include": 1, + "linked_keg": 1, + "HOMEBREW_REPOSITORY/": 2, + "/@name": 1, + "installed_prefix": 1, + "head_prefix": 2, + "HOMEBREW_CELLAR": 2, + "head_prefix.directory": 1, + "prefix": 14, + "rack": 1, + "prefix.parent": 1, + "bin": 1, + "doc": 1, + "lib": 1, + "libexec": 1, + "man": 9, + "man1": 1, + "man2": 1, + "man3": 1, + "man4": 1, + "man5": 1, + "man6": 1, + "man7": 1, + "man8": 1, + "sbin": 1, + "share": 1, + "etc": 1, + "HOMEBREW_PREFIX": 2, + "var": 1, + "plist_name": 2, + "plist_path": 1, + "download_strategy": 1, + "@spec_to_use.download_strategy": 1, + "cached_download": 1, + "@downloader.cached_location": 1, + "caveats": 1, + "patches": 2, + "keg_only": 2, + "self.class.keg_only_reason": 1, + "fails_with": 2, + "cc": 3, + "self.class.cc_failures.nil": 1, + "Compiler.new": 1, + "cc.is_a": 1, + "Compiler": 1, + "self.class.cc_failures.find": 1, + "failure": 1, + "next": 1, + "failure.compiler": 1, + "cc.name": 1, + "failure.build.zero": 1, + "failure.build": 1, + "cc.build": 1, + "skip_clean": 2, + "self.class.skip_clean_all": 1, + "to_check": 2, + "path.relative_path_from": 1, + ".to_s": 3, + "self.class.skip_clean_paths.include": 1, + "brew": 2, + "stage": 2, + "Interrupt": 2, + "RuntimeError": 1, + "SystemCallError": 1, + "don": 1, + "config.log": 2, + "std_autotools": 1, + "variant": 1, + "because": 1, + "autotools": 1, + "lot": 1, + "std_cmake_args": 1, + "W": 1, + "DCMAKE_INSTALL_PREFIX": 1, + "DCMAKE_BUILD_TYPE": 1, + "None": 1, + "DCMAKE_FIND_FRAMEWORK": 1, + "LAST": 1, + "Wno": 1, + "dev": 1, + "self.class_s": 2, + "#remove": 1, + "invalid": 1, + "characters": 1, + "then": 4, + "camelcase": 1, + "it": 1, + "name.capitalize.gsub": 1, + "_.": 1, + "zA": 1, + "Z0": 1, + "upcase": 1, + "self.names": 1, + "File.basename": 2, + ".sort": 2, + "self.all": 1, + "map": 1, + "self.map": 1, + "rv": 3, + "each": 1, + "self.each": 1, + "names.each": 1, + "Formula.factory": 2, + "onoe": 2, + "self.aliases": 1, + "self.canonical_name": 1, + "name.kind_of": 2, + "Pathname": 2, + "formula_with_that_name": 1, + "HOMEBREW_REPOSITORY": 4, + "possible_alias": 1, + "possible_cached_formula": 1, + "HOMEBREW_CACHE_FORMULA": 2, + "name.include": 2, + "r": 3, + ".": 3, + "tapd": 1, + "tapd.find_formula": 1, + "relative_pathname": 1, + "relative_pathname.stem.to_s": 1, + "tapd.directory": 1, + "formula_with_that_name.file": 1, + "formula_with_that_name.readable": 1, + "possible_alias.file": 1, + "possible_alias.realpath.basename": 1, + "possible_cached_formula.file": 1, + "possible_cached_formula.to_s": 1, + "self.factory": 1, + "https": 1, + "ftp": 1, + ".basename": 1, + "target_file": 6, + "name.basename": 1, + "HOMEBREW_CACHE_FORMULA.mkpath": 1, + "FileUtils.rm": 1, + "force": 1, + "curl": 1, + "install_type": 4, + "from_url": 1, + "Formula.canonical_name": 1, + ".rb": 1, + "path.stem": 1, + "from_path": 1, + "Formula.path": 1, + "from_name": 2, + "klass_name": 2, + "Object.const_get": 1, + "klass.new": 2, + "FormulaUnavailableError.new": 1, + "tap": 1, + "path.realpath.to_s": 1, + "/Library/Taps/": 1, + "self.path": 1, + "mirrors": 4, + "self.class.mirrors": 1, + "deps": 1, + "self.class.dependencies.deps": 1, + "external_deps": 1, + "self.class.dependencies.external_deps": 1, + "recursive_deps": 1, + "Formula.expand_deps": 1, + ".flatten.uniq": 1, + "self.expand_deps": 1, + "f.deps.map": 1, + "dep": 3, + "f_dep": 3, + "dep.to_s": 1, + "expand_deps": 1, + "protected": 1, + "system": 1, + "cmd": 6, + "pretty_args": 1, + "args.dup": 1, + "pretty_args.delete": 1, + "ARGV.verbose": 2, + "ohai": 3, + ".strip": 1, + "removed_ENV_variables": 2, + "args.empty": 1, + "cmd.split": 1, + ".first": 1, + "ENV.remove_cc_etc": 1, + "safe_system": 4, + "rd": 1, + "wr": 3, + "IO.pipe": 1, + "pid": 1, + "fork": 1, + "rd.close": 1, + "stdout.reopen": 1, + "stderr.reopen": 1, + "args.collect": 1, + "arg": 1, + "arg.to_s": 1, + "exec": 2, + "never": 1, + "gets": 1, + "here": 1, + "threw": 1, + "wr.close": 1, + "out": 4, + "rd.read": 1, + "until": 1, + "rd.eof": 1, + "Process.wait": 1, + ".success": 1, + "removed_ENV_variables.each": 1, + "value": 4, + "ENV.kind_of": 1, + "BuildError.new": 1, + "fetch": 2, + "install_bottle": 1, + "CurlBottleDownloadStrategy.new": 1, + "mirror_list": 2, + "HOMEBREW_CACHE.mkpath": 1, + "fetched": 4, + "downloader.fetch": 1, + "CurlDownloadStrategyError": 1, + "mirror_list.empty": 1, + "mirror_list.shift.values_at": 1, + "retry": 2, + "checksum_type": 2, + "CHECKSUM_TYPES.detect": 1, + "instance_variable_defined": 2, + "verify_download_integrity": 2, + "fn": 2, + "args.length": 1, + "md5": 2, + "supplied": 4, + "instance_variable_get": 2, + "type.to_s.upcase": 1, + "hasher": 2, + "Digest.const_get": 1, + "hash": 2, + "fn.incremental_hash": 1, + "supplied.empty": 1, + "message": 2, + "EOF": 2, + "mismatch": 1, + "Expected": 1, + "Got": 1, + "Archive": 1, + "To": 1, + "an": 1, + "incomplete": 1, + "download": 1, + "remove": 1, + "file": 1, + "above.": 1, + "supplied.upcase": 1, + "hash.upcase": 1, + "opoo": 1, + "CHECKSUM_TYPES": 2, + "sha1": 4, + "sha256": 1, + ".freeze": 1, + "fetched.kind_of": 1, + "mktemp": 1, + "downloader.stage": 1, + "@buildpath": 2, + "Pathname.pwd": 1, + "patch_list": 1, + "Patches.new": 1, + "patch_list.empty": 1, + "patch_list.external_patches": 1, + "patch_list.download": 1, + "patch_list.each": 1, + "p": 2, + "p.compression": 1, + "gzip": 1, + "p.compressed_filename": 2, + "bzip2": 1, + "p.patch_args": 1, + "v": 2, + "v.to_s.empty": 1, + "s/": 1, + "class_value": 3, + "self.class.send": 1, + "instance_variable_set": 1, + "self.method_added": 1, + "self.attr_rw": 1, + "attrs": 1, + "attrs.each": 1, + "attr": 4, + "class_eval": 1, + "Q": 1, + "val": 10, + "val.nil": 3, + "@#": 2, + "attr_rw": 4, + "keg_only_reason": 1, + "skip_clean_all": 2, + "cc_failures": 1, + "stable": 2, + "instance_eval": 2, + "ARGV.build_devel": 2, + "devel": 1, + "@mirrors": 3, + "clear": 1, + "from": 1, + "release": 1, + "bottle": 1, + "bottle_block": 1, + "self.version": 1, + "self.url": 1, + "self.sha1": 1, + "sha1.shift": 1, + "@sha1": 6, + "MacOS.cat": 1, + "MacOS.lion": 1, + "self.data": 1, + "bottle_block.instance_eval": 1, + "@bottle_version": 1, + "bottle_block.data": 1, + "mirror": 1, + "@mirrors.uniq": 1, + "dependencies": 1, + "@dependencies": 1, + "DependencyCollector.new": 1, + "depends_on": 1, + "dependencies.add": 1, + "paths": 3, + "all": 1, + "@skip_clean_all": 2, + "@skip_clean_paths": 3, + ".flatten.each": 1, + "p.to_s": 2, + "@skip_clean_paths.include": 1, + "skip_clean_paths": 1, + "reason": 2, + "explanation": 1, + "@keg_only_reason": 1, + "KegOnlyReason.new": 1, + "explanation.to_s.chomp": 1, + "compiler": 3, + "@cc_failures": 2, + "CompilerFailures.new": 1, + "CompilerFailure.new": 2 + }, + "Frege": { + "package": 2, + "examples.Sudoku": 1, + "where": 39, + "import": 7, + "Data.TreeMap": 1, + "(": 339, + "Tree": 4, + "keys": 2, + ")": 345, + "Data.List": 1, + "as": 33, + "DL": 1, + "hiding": 1, + "find": 20, + "union": 10, + "type": 8, + "Element": 6, + "Int": 6, + "-": 730, + "Zelle": 8, + "[": 120, + "]": 116, + "set": 4, + "of": 32, + "candidates": 18, + "Position": 22, + "Feld": 3, + "Brett": 13, + "data": 3, + "for": 25, + "assumptions": 10, + "and": 14, + "conclusions": 2, + "Assumption": 21, + "ISNOT": 14, + "|": 62, + "IS": 16, + "derive": 2, + "Eq": 1, + "Ord": 1, + "instance": 1, + "Show": 1, + "show": 24, + "p": 72, + "e": 15, + "pname": 10, + "+": 200, + "e.show": 2, + "showcs": 5, + "cs": 27, + "joined": 4, + "map": 49, + "Assumption.show": 1, + "elements": 12, + "all": 22, + "possible": 2, + "..": 1, + "positions": 16, + "rowstarts": 4, + "a": 99, + "row": 20, + "is": 24, + "starting": 3, + "colstarts": 3, + "column": 2, + "boxstarts": 3, + "box": 15, + "boxmuster": 3, + "pattern": 1, + "by": 3, + "adding": 1, + "upper": 2, + "left": 4, + "position": 9, + "results": 1, + "in": 22, + "real": 1, + "extract": 2, + "field": 9, + "getf": 16, + "f": 19, + "fs": 22, + "fst": 9, + "otherwise": 8, + "cell": 24, + "getc": 12, + "b": 113, + "snd": 20, + "compute": 5, + "the": 20, + "list": 7, + "that": 18, + "belong": 3, + "to": 13, + "same": 8, + "given": 3, + "z..": 1, + "z": 12, + "quot": 1, + "*": 5, + "col": 17, + "c": 33, + "mod": 3, + "ri": 2, + "div": 3, + "or": 15, + "depending": 1, + "on": 4, + "ci": 3, + "index": 3, + "middle": 2, + "right": 4, + "check": 2, + "if": 5, + "candidate": 10, + "has": 2, + "exactly": 2, + "one": 2, + "member": 1, + "i.e.": 1, + "been": 1, + "solved": 1, + "single": 9, + "Bool": 2, + "_": 60, + "true": 16, + "false": 13, + "unsolved": 10, + "rows": 4, + "cols": 6, + "boxes": 1, + "allrows": 8, + "allcols": 5, + "allboxs": 5, + "allrcb": 5, + "zip": 7, + "repeat": 3, + "containers": 6, + "String": 9, + "PRINTING": 1, + "printable": 1, + "coordinate": 1, + "a1": 3, + "lower": 1, + "i9": 1, + "packed": 1, + "chr": 2, + "ord": 6, + "print": 25, + "board": 41, + "printb": 4, + "mapM_": 5, + "p1line": 2, + "println": 25, + "do": 38, + "pfld": 4, + "line": 2, + "brief": 1, + "no": 4, + ".": 41, + "some": 2, + "x": 45, + "zs": 1, + "initial/final": 1, + "result": 11, + "msg": 6, + "return": 17, + "res012": 2, + "case": 6, + "concatMap": 1, + "a*100": 1, + "b*10": 1, + "BOARD": 1, + "ALTERATION": 1, + "ACTIONS": 1, + "message": 1, + "about": 1, + "what": 1, + "done": 1, + "new": 9, + "turnoff1": 3, + "IO": 13, + "i": 16, + "off": 11, + "nc": 7, + "head": 19, + "newb": 7, + "filter": 26, + "notElem": 7, + "<->": 35, + "turnoff": 11, + "turnoffh": 1, + "ps": 8, + "foldM": 2, + "toh": 2, + "setto": 3, + "n": 38, + "cname": 4, + "nf": 2, + "<": 84, + "SOLVING": 1, + "STRATEGIES": 1, + "reduce": 3, + "sets": 2, + "contains": 1, + "numbers": 1, + "already": 1, + "This": 2, + "finds": 1, + "logs": 1, + "NAKED": 5, + "SINGLEs": 1, + "passing.": 1, + "sss": 3, + "each": 2, + "with": 15, + "more": 2, + "than": 2, + "fields": 6, + "are": 6, + "s": 21, + "rcb": 16, + "elem": 16, + "collect": 1, + "remove": 3, + "from": 7, + "look": 10, + "number": 4, + "appears": 1, + "container": 9, + "this": 2, + "can": 9, + "go": 1, + "other": 2, + "place": 1, + "HIDDEN": 6, + "SINGLE": 1, + "hiddenSingle": 2, + "select": 1, + "containername": 1, + "FOR": 11, + "IN": 9, + "occurs": 5, + "length": 20, + "PAIRS": 8, + "TRIPLES": 8, + "QUADS": 2, + "nakedPair": 4, + "t": 14, + "nm": 6, + "SELECT": 3, + "pos": 5, + "tuple": 2, + "name": 2, + "//": 8, + "let": 8, + "u": 6, + "fold": 7, + "non": 2, + "outof": 6, + "tuples": 2, + "hit": 7, + "subset": 3, + "any": 3, + "hiddenPair": 4, + "minus": 2, + "uniq": 4, + "sort": 4, + "common": 4, + "1": 2, + "bs": 7, + "undefined": 1, + "cannot": 1, + "happen": 1, + "because": 1, + "either": 1, + "empty": 4, + "not": 5, + "intersectionlist": 2, + "intersections": 2, + "reason": 8, + "reson": 1, + "cpos": 7, + "WHERE": 2, + "tail": 2, + "intersection": 1, + "we": 5, + "occurences": 1, + "but": 2, + "an": 6, + "XY": 2, + "Wing": 2, + "there": 6, + "exists": 6, + "A": 7, + "X": 5, + "Y": 4, + "B": 5, + "Z": 6, + "shares": 2, + "C": 6, + "reasoning": 1, + "will": 4, + "be": 9, + "since": 1, + "indeed": 1, + "thus": 1, + "see": 1, + "xyWing": 2, + "y": 15, + "rcba": 4, + "share": 1, + "b1": 11, + "b2": 10, + "&&": 9, + "||": 2, + "then": 1, + "else": 1, + "c1": 4, + "c2": 3, + "N": 5, + "Fish": 1, + "Swordfish": 1, + "Jellyfish": 1, + "When": 2, + "particular": 1, + "digit": 1, + "located": 2, + "only": 1, + "columns": 2, + "eliminate": 1, + "those": 2, + "which": 2, + "fish": 7, + "fishname": 5, + "rset": 4, + "take": 13, + "certain": 1, + "rflds": 2, + "rowset": 1, + "colss": 3, + "must": 4, + "appear": 1, + "at": 3, + "least": 3, + "cstart": 2, + "immediate": 1, + "consequences": 6, + "assumption": 8, + "form": 1, + "conseq": 3, + "cp": 3, + "two": 1, + "contradict": 2, + "contradicts": 7, + "get": 3, + "aPos": 5, + "List": 1, + "turned": 1, + "when": 2, + "true/false": 1, + "toClear": 7, + "whose": 1, + "implications": 5, + "themself": 1, + "chain": 2, + "paths": 12, + "solution": 6, + "reverse": 4, + "css": 7, + "yields": 1, + "contradictory": 1, + "chainContra": 2, + "pro": 7, + "contra": 4, + "ALL": 2, + "conlusions": 1, + "uniqBy": 2, + "using": 2, + "sortBy": 2, + "comparing": 2, + "conslusion": 1, + "chains": 4, + "LET": 1, + "BE": 1, + "final": 2, + "conclusion": 4, + "THE": 1, + "FIRST": 1, + "con": 3, + "implication": 2, + "ai": 2, + "so": 1, + "a0": 1, + "OR": 7, + "a2": 2, + "...": 2, + "IMPLIES": 1, + "For": 2, + "cells": 1, + "pi": 2, + "have": 1, + "construct": 2, + "p0": 1, + "p1": 1, + "c0": 1, + "cellRegionChain": 2, + "os": 3, + "cellas": 2, + "regionas": 2, + "iss": 3, + "ass": 2, + "first": 2, + "candidates@": 1, + "region": 2, + "oss": 2, + "Liste": 1, + "aller": 1, + "Annahmen": 1, + "r": 7, + "ein": 1, + "bestimmtes": 1, + "acstree": 3, + "Tree.fromList": 1, + "bypass": 1, + "maybe": 1, + "tree": 1, + "lookup": 2, + "Just": 2, + "error": 1, + "performance": 1, + "resons": 1, + "confine": 1, + "ourselves": 1, + "20": 1, + "per": 1, + "mkPaths": 3, + "acst": 3, + "impl": 2, + "{": 1, + "a3": 1, + "ordered": 1, + "impls": 2, + "ns": 2, + "concat": 1, + "takeUntil": 1, + "null": 1, + "iterate": 1, + "expandchain": 3, + "avoid": 1, + "loops": 1, + "uni": 3, + "SOLVE": 1, + "SUDOKU": 1, + "Apply": 1, + "available": 1, + "strategies": 1, + "until": 1, + "nothing": 2, + "changes": 1, + "anymore": 1, + "Strategy": 1, + "functions": 2, + "supposed": 1, + "applied": 1, + "give": 2, + "changed": 1, + "board.": 1, + "strategy": 2, + "does": 2, + "anything": 1, + "alter": 1, + "it": 2, + "returns": 2, + "next": 1, + "tried.": 1, + "solve": 19, + "res@": 16, + "apply": 17, + "res": 16, + "smallest": 1, + "comment": 16, + "SINGLES": 1, + "locked": 1, + "2": 3, + "QUADRUPELS": 6, + "3": 3, + "4": 3, + "WINGS": 1, + "FISH": 3, + "pcomment": 2, + "9": 5, + "forcing": 1, + "allow": 1, + "infer": 1, + "both": 1, + "brd": 2, + "com": 5, + "stderr": 3, + "<<": 4, + "log": 1, + "turn": 1, + "string": 3, + "into": 1, + "mkrow": 2, + "mkrow1": 2, + "xs": 4, + "make": 1, + "sure": 1, + "unpacked": 2, + "<=>": 1, + "0": 2, + "ignored": 1, + "main": 11, + "h": 1, + "help": 1, + "usage": 1, + "java": 5, + "Sudoku": 2, + "file": 4, + "81": 3, + "char": 1, + "consisting": 1, + "digits": 2, + "One": 1, + "such": 1, + "going": 1, + "http": 3, + "www": 1, + "sudokuoftheday": 1, + "pages": 1, + "o": 1, + "d": 3, + "php": 1, + "Right": 6, + "click": 1, + "puzzle": 1, + "open": 1, + "tab": 1, + "Copy": 1, + "URL": 2, + "address": 1, + "your": 1, + "browser": 1, + "There": 1, + "also": 1, + "hard": 1, + "sudokus": 1, + "examples": 1, + "top95": 1, + "txt": 1, + "W": 1, + "felder": 2, + "decode": 4, + "files": 2, + "forM_": 1, + "sudoku": 2, + "br": 4, + "openReader": 1, + "lines": 2, + "BufferedReader.getLines": 1, + "process": 5, + "ss": 8, + "mapM": 3, + "sum": 2, + "candi": 2, + "consider": 3, + "acht": 4, + "stderr.println": 3, + "neun": 2, + "module": 2, + "examples.CommandLineClock": 1, + "Date": 5, + "native": 4, + "java.util.Date": 1, + "MutableIO": 1, + "toString": 2, + "Mutable": 1, + "ST": 1, + "d.toString": 1, + "action": 2, + "us": 1, + "current": 4, + "time": 1, + "lang": 2, + "Thread": 2, + "sleep": 4, + "takes": 1, + "long": 4, + "may": 1, + "throw": 1, + "InterruptedException": 4, + "without": 1, + "doubt": 1, + "public": 1, + "static": 1, + "void": 2, + "millis": 1, + "throws": 4, + "Encoded": 1, + "Frege": 1, + "argument": 1, + "Long": 3, + "defined": 1, + "frege": 1, + "Lang": 1, + "args": 2, + "forever": 1, + "stdout.flush": 1, + "Thread.sleep": 4, + "examples.Concurrent": 1, + "System.Random": 1, + "Java.Net": 1, + "Control.Concurrent": 1, + "main2": 1, + "m": 2, + "newEmptyMVar": 1, + "forkIO": 11, + "m.put": 3, + "replicateM_": 3, + "m.take": 1, + "example1": 1, + "putChar": 2, + "example2": 2, + "getLine": 2, + "setReminder": 3, + "Left": 5, + "L*n": 1, + "table": 1, + "mainPhil": 2, + "fork1": 3, + "fork2": 3, + "fork3": 3, + "fork4": 3, + "fork5": 3, + "MVar": 3, + "5": 1, + "philosopher": 7, + "Kant": 1, + "Locke": 1, + "Wittgenstein": 1, + "Nozick": 1, + "Mises": 1, + "me": 13, + "g": 4, + "Random.newStdGen": 1, + "phil": 4, + "tT": 2, + "g1": 2, + "Random.randomR": 2, + "L": 6, + "eT": 2, + "g2": 3, + "thinkTime": 3, + "eatTime": 3, + "fl": 4, + "left.take": 1, + "rFork": 2, + "poll": 1, + "fr": 3, + "right.put": 1, + "left.put": 2, + "table.notifyAll": 2, + "Nothing": 2, + "table.wait": 1, + "inter": 3, + "catch": 2, + "getURL": 4, + "xx": 2, + "url": 1, + "URL.new": 1, + "url.openConnection": 1, + "con.connect": 1, + "con.getInputStream": 1, + "typ": 5, + "con.getContentType": 1, + "ir": 2, + "InputStreamReader.new": 2, + "fromMaybe": 1, + "charset": 2, + "unsupportedEncoding": 3, + "BufferedReader": 1, + "getLines": 1, + "InputStream": 1, + "UnsupportedEncodingException": 1, + "InputStreamReader": 1, + "x.catched": 1, + "ctyp": 2, + "charset=": 1, + "m.group": 1, + "SomeException": 2, + "Throwable": 1, + "m1": 1, + "MVar.newEmpty": 3, + "m2": 1, + "m3": 2, + "catchAll": 3, + "m1.put": 1, + "m2.put": 1, + "m3.put": 1, + "r1": 2, + "m1.take": 1, + "r2": 3, + "m2.take": 1, + "r3": 3, + "putStrLn": 2, + "x.getClass.getName": 1, + "examples.SwingExamples": 1, + "Java.Awt": 1, + "ActionListener": 2, + "Java.Swing": 1, + "rs": 2, + "Runnable.new": 1, + "helloWorldGUI": 2, + "buttonDemoGUI": 2, + "celsiusConverterGUI": 2, + "invokeLater": 1, + "tempTextField": 2, + "JTextField.new": 1, + "celsiusLabel": 1, + "JLabel.new": 3, + "convertButton": 1, + "JButton.new": 3, + "fahrenheitLabel": 1, + "frame": 3, + "JFrame.new": 3, + "frame.setDefaultCloseOperation": 3, + "JFrame.dispose_on_close": 3, + "frame.setTitle": 1, + "celsiusLabel.setText": 1, + "convertButton.setText": 1, + "convertButtonActionPerformed": 2, + "celsius": 3, + "getText": 1, + "double": 1, + "fahrenheitLabel.setText": 3, + "c*1.8": 1, + ".long": 1, + "ActionListener.new": 2, + "convertButton.addActionListener": 1, + "contentPane": 2, + "frame.getContentPane": 2, + "layout": 2, + "GroupLayout.new": 1, + "contentPane.setLayout": 1, + "TODO": 1, + "continue": 1, + "//docs.oracle.com/javase/tutorial/displayCode.html": 1, + "code": 1, + "//docs.oracle.com/javase/tutorial/uiswing/examples/learn/CelsiusConverterProject/src/learn/CelsiusConverterGUI.java": 1, + "frame.pack": 3, + "frame.setVisible": 3, + "label": 2, + "cp.add": 1, + "newContentPane": 2, + "JPanel.new": 1, + "JButton": 4, + "b1.setVerticalTextPosition": 1, + "SwingConstants.center": 2, + "b1.setHorizontalTextPosition": 1, + "SwingConstants.leading": 2, + "b2.setVerticalTextPosition": 1, + "b2.setHorizontalTextPosition": 1, + "b3": 7, + "Enable": 1, + "button": 1, + "setVerticalTextPosition": 1, + "SwingConstants": 2, + "center": 1, + "setHorizontalTextPosition": 1, + "leading": 1, + "setEnabled": 7, + "action1": 2, + "action3": 2, + "b1.addActionListener": 1, + "b3.addActionListener": 1, + "newContentPane.add": 3, + "newContentPane.setOpaque": 1, + "frame.setContentPane": 1 + }, + "Literate Agda": { + "documentclass": 1, + "{": 35, + "article": 1, + "}": 35, + "usepackage": 7, + "amssymb": 1, + "bbm": 1, + "[": 2, + "greek": 1, + "english": 1, + "]": 2, + "babel": 1, + "ucs": 1, + "utf8x": 1, + "inputenc": 1, + "autofe": 1, + "DeclareUnicodeCharacter": 3, + "ensuremath": 3, + "ulcorner": 1, + "urcorner": 1, + "overline": 1, + "equiv": 1, + "fancyvrb": 1, + "DefineVerbatimEnvironment": 1, + "code": 3, + "Verbatim": 1, + "%": 1, + "Add": 1, + "fancy": 1, + "options": 1, + "here": 1, + "if": 1, + "you": 3, + "like.": 1, + "begin": 2, + "document": 2, + "module": 3, + "NatCat": 1, + "where": 2, + "open": 2, + "import": 2, + "Relation.Binary.PropositionalEquality": 1, + "-": 21, + "If": 1, + "can": 1, + "show": 1, + "that": 1, + "a": 1, + "relation": 1, + "only": 1, + "ever": 1, + "has": 1, + "one": 1, + "inhabitant": 5, + "get": 1, + "the": 1, + "category": 1, + "laws": 1, + "for": 1, + "free": 1, + "EasyCategory": 3, + "(": 36, + "obj": 4, + "Set": 2, + ")": 36, + "_": 6, + "x": 34, + "y": 28, + "z": 18, + "id": 9, + "single": 4, + "r": 26, + "s": 29, + "assoc": 2, + "w": 4, + "t": 6, + "Data.Nat": 1, + "same": 5, + ".0": 2, + "n": 14, + "refl": 6, + ".": 5, + "suc": 6, + "m": 6, + "cong": 1, + "trans": 5, + ".n": 1, + "zero": 1, + "Nat": 1, + "end": 2 + }, + "Clojure": { + "[": 41, + "html": 1, + "head": 1, + "meta": 1, + "{": 8, + "charset": 1, + "}": 8, + "]": 41, + "link": 1, + "rel": 1, + "href": 1, + "script": 1, + "src": 1, + "body": 1, + "div.nav": 1, + "p": 1, + "(": 83, + "deftest": 1, + "function": 1, + "-": 14, + "tests": 1, + "is": 7, + "count": 3, + ")": 84, + "false": 2, + "not": 3, + "true": 2, + "contains": 1, + "foo": 6, + "bar": 4, + "select": 1, + "keys": 2, + "baz": 4, + "vals": 1, + "filter": 1, + "fn": 2, + "x": 6, + "rem": 2, + "defn": 4, + "prime": 2, + "n": 9, + "any": 1, + "zero": 1, + "map": 2, + "#": 1, + "%": 1, + "range": 3, + ";": 8, + "while": 3, + "stops": 1, + "at": 1, + "the": 1, + "first": 2, + "collection": 1, + "element": 1, + "that": 1, + "evaluates": 1, + "to": 1, + "like": 1, + "take": 1, + "for": 2, + "clj": 1, + "ns": 2, + "c2.svg": 2, + "use": 2, + "c2.core": 2, + "only": 4, + "unify": 2, + "c2.maths": 2, + "Pi": 2, + "Tau": 2, + "radians": 2, + "per": 2, + "degree": 2, + "sin": 2, + "cos": 2, + "mean": 2, + "cljs": 3, + "require": 1, + "c2.dom": 1, + "as": 1, + "dom": 1, + "Stub": 1, + "float": 2, + "which": 1, + "does": 1, + "exist": 1, + "on": 1, + "runtime": 1, + "def": 1, + "identity": 1, + "xy": 1, + "coordinates": 7, + "cond": 1, + "and": 1, + "vector": 1, + "y": 1, + "into": 2, + "array": 3, + "aseq": 8, + "nil": 1, + "type": 2, + "let": 1, + "a": 3, + "make": 1, + "loop": 1, + "seq": 1, + "i": 4, + "if": 1, + "<": 1, + "do": 1, + "aset": 1, + "recur": 1, + "next": 1, + "inc": 1, + "defprotocol": 1, + "ISound": 4, + "sound": 5, + "deftype": 2, + "Cat": 1, + "_": 3, + "Dog": 1, + "extend": 1, + "default": 1, + "rand": 2, + "scm*": 1, + "random": 1, + "real": 1 + }, + "Pan": { + "object": 1, + "template": 1, + "pantest": 1, + ";": 32, + "xFF": 1, + "e": 2, + "-": 2, + "E10": 1, + "variable": 4, + "TEST": 2, + "to_string": 1, + "(": 8, + ")": 8, + "+": 2, + "value": 1, + "undef": 1, + "null": 1, + "error": 1, + "include": 1, + "{": 5, + "}": 5, + "pkg_repl": 2, + "PKG_ARCH_DEFAULT": 1, + "function": 1, + "show_things_view_for_stuff": 1, + "thing": 2, + "ARGV": 1, + "[": 2, + "]": 2, + "foreach": 1, + "i": 1, + "mything": 2, + "STUFF": 1, + "if": 1, + "return": 2, + "true": 2, + "else": 1, + "SELF": 1, + "false": 2, + "HERE": 1, + "<<": 1, + "EOF": 2, + "This": 1, + "example": 1, + "demonstrates": 1, + "an": 1, + "in": 1, + "line": 1, + "heredoc": 1, + "style": 1, + "config": 1, + "file": 1, + "main": 1, + "awesome": 1, + "small": 1, + "#This": 1, + "should": 1, + "be": 1, + "highlighted": 1, + "normally": 1, + "again.": 1 + }, + "Common Lisp": { + "#": 15, + "|": 9, + "ESCUELA": 1, + "POLITECNICA": 1, + "SUPERIOR": 1, + "-": 161, + "UNIVERSIDAD": 1, + "AUTONOMA": 1, + "DE": 1, + "MADRID": 1, + "INTELIGENCIA": 1, + "ARTIFICIAL": 1, + "Motor": 1, + "de": 2, + "inferencia": 1, + "Basado": 1, + "en": 2, + "parte": 1, + "Peter": 1, + "Norvig": 1, + ";": 152, + "Global": 1, + "variables": 6, + "(": 365, + "defvar": 4, + "*hypothesis": 1, + "list*": 7, + ")": 372, + "*rule": 4, + "*fact": 2, + "Constants": 1, + "defconstant": 2, + "+": 35, + "fail": 10, + "nil": 3, + "no": 6, + "bindings": 45, + "lambda": 4, + "b": 6, + "mapcar": 2, + "man": 3, + "luis": 1, + "pedro": 1, + "woman": 2, + "mart": 1, + "daniel": 1, + "laura": 1, + "value": 8, + "from": 8, + "facts": 1, + "x": 47, + "let": 6, + "aux": 3, + "unify": 12, + "hypothesis": 10, + "when": 4, + "list": 9, + "____________________________________________________________________________": 5, + "FUNCTION": 3, + "FIND": 1, + "RULES": 2, + "COMMENTS": 3, + "Returns": 2, + "the": 35, + "rules": 5, + "in": 23, + "whose": 1, + "THENs": 1, + "with": 7, + "term": 1, + "given": 3, + "": 2, + "The": 2, + "that": 5, + "satisfy": 1, + "this": 1, + "requirement": 1, + "are": 2, + "renamed.": 1, + "EXAMPLES": 2, + "setq": 1, + "renamed": 3, + "rule": 17, + "rename": 1, + "then": 7, + "defun": 23, + "unless": 3, + "null": 1, + "not": 6, + "equal": 4, + "VALUE": 1, + "FROM": 1, + "all": 2, + "solutions": 1, + "to": 4, + "found": 5, + "using": 1, + "": 1, + ".": 10, + "Note": 2, + "a": 7, + "single": 1, + "can": 4, + "have": 1, + "multiple": 1, + "solutions.": 1, + "mapcan": 1, + "R1": 2, + "pertenece": 3, + "E": 4, + "_": 8, + "R2": 2, + "Xs": 2, + "Then": 1, + "EVAL": 2, + "RULE": 2, + "PERTENECE": 6, + "E.42": 2, + "returns": 4, + "NIL": 3, + "That": 2, + "is": 6, + "query": 4, + "be": 2, + "proven": 2, + "and": 12, + "binding": 17, + "necessary": 2, + "fact": 4, + "has": 1, + "On": 1, + "other": 1, + "hand": 1, + "E.49": 2, + "XS.50": 2, + "R2.": 1, + "eval": 6, + "if": 14, + "ifs": 1, + "NOT": 2, + "question": 1, + "T": 1, + "equality": 2, + "new": 6, + "second": 3, + "third": 2, + "UNIFY": 1, + "Finds": 1, + "most": 2, + "general": 1, + "unifier": 1, + "of": 3, + "two": 2, + "input": 2, + "expressions": 2, + "taking": 1, + "into": 2, + "account": 1, + "specified": 2, + "": 1, + "In": 1, + "case": 1, + "function": 2, + "total": 1, + "for": 3, + "unification.": 1, + "Otherwise": 1, + "which": 1, + "constant": 1, + "p": 10, + "var": 49, + "anonymous": 4, + "make": 4, + "variable": 6, + "Auxiliary": 1, + "Functions": 1, + "cond": 3, + "or": 4, + "get": 5, + "lookup": 5, + "occurs": 5, + "t": 7, + "extend": 2, + "symbolp": 2, + "eql": 2, + "char": 2, + "symbol": 2, + "name": 6, + "assoc": 1, + "car": 2, + "val": 6, + "cdr": 2, + "cons": 2, + "append": 1, + "eq": 7, + "consp": 2, + "first": 5, + "rest": 5, + "subst": 3, + "listp": 1, + "exp": 1, + "unique": 3, + "find": 6, + "anywhere": 6, + "predicate": 8, + "tree": 11, + "&": 8, + "optional": 2, + "so": 4, + "far": 4, + "atom": 3, + "funcall": 2, + "pushnew": 1, + "gentemp": 2, + "format": 3, + "quote": 3, + "s/reuse": 1, + "cons/cons": 1, + "expresion": 2, + "some": 1, + "EOF": 1, + "*": 2, + "lisp": 1, + "package": 1, + "foo": 2, + "Header": 1, + "comment.": 4, + "*foo*": 1, + "execute": 1, + "compile": 1, + "toplevel": 2, + "load": 1, + "add": 1, + "y": 2, + "key": 1, + "z": 2, + "declare": 1, + "ignore": 1, + "Inline": 1, + "Multi": 1, + "line": 2, + "defmacro": 5, + "body": 8, + "After": 1, + "@file": 1, + "macros": 2, + "advanced.cl": 1, + "@breif": 1, + "Advanced": 1, + "macro": 5, + "practices": 1, + "defining": 1, + "your": 1, + "own": 1, + "Macro": 1, + "definition": 1, + "skeleton": 1, + "parameter*": 1, + "form*": 1, + "backquote": 1, + "expression": 2, + "often": 1, + "used": 2, + "form": 1, + "primep": 4, + "test": 1, + "number": 2, + "prime": 12, + "n": 8, + "<": 1, + "return": 3, + "do": 9, + "i": 8, + "zerop": 1, + "mod": 1, + "sqrt": 1, + "next": 11, + "bigger": 1, + "than": 1, + "recommended": 1, + "procedures": 1, + "writting": 1, + "as": 1, + "follows": 1, + "Write": 2, + "sample": 2, + "call": 2, + "code": 2, + "it": 2, + "should": 1, + "expand": 1, + "primes": 3, + "Expected": 1, + "expanded": 1, + "codes": 1, + "generate": 1, + "hardwritten": 1, + "expansion": 2, + "arguments": 1, + "range": 4, + "start": 5, + "end": 8, + "@body": 4, + "More": 1, + "concise": 1, + "implementations": 1, + "synonym": 1, + "also": 1, + "emits": 1, + "more": 1, + "friendly": 1, + "messages": 1, + "on": 1, + "incorrent": 1, + "input.": 1, + "Test": 1, + "result": 1, + "macroexpand": 2, + "gensyms": 4, + "Define": 1, + "note": 1, + "how": 1, + "comma": 1, + "interpolate": 1, + "loop": 2, + "names": 2, + "collect": 1, + "gensym": 1 + }, + "Logtalk": { + "-": 3, + "object": 2, + "(": 4, + "hello_world": 1, + ")": 4, + ".": 2, + "%": 2, + "the": 2, + "initialization/1": 1, + "directive": 1, + "argument": 1, + "is": 2, + "automatically": 1, + "executed": 1, + "when": 1, + "loaded": 1, + "into": 1, + "memory": 1, + "initialization": 1, + "nl": 2, + "write": 1, + "end_object.": 1 + }, + "Swift": { + "func": 24, + "hasAnyMatches": 2, + "(": 89, + "list": 2, + "Int": 19, + "[": 18, + "]": 18, + "condition": 2, + "-": 21, + "Bool": 4, + ")": 89, + "{": 77, + "for": 10, + "item": 4, + "in": 11, + "if": 6, + "return": 30, + "true": 2, + "}": 77, + "false": 2, + "lessThanTen": 2, + "number": 13, + "<": 4, + "var": 42, + "numbers": 6, + "let": 43, + "interestingNumbers": 2, + "largest": 4, + "kind": 1, + "optionalString": 2, + "String": 27, + "nil": 1, + "optionalName": 2, + "greeting": 2, + "name": 21, + "println": 1, + "label": 2, + "width": 2, + "widthLabel": 1, + "+": 15, + "class": 7, + "Shape": 2, + "numberOfSides": 4, + "simpleDescription": 14, + "myVariable": 2, + "myConstant": 1, + "Square": 7, + "NamedShape": 3, + "sideLength": 17, + "Double": 11, + "init": 4, + "self.sideLength": 2, + "super.init": 2, + "area": 1, + "*": 7, + "override": 2, + "test": 1, + "test.area": 1, + "test.simpleDescription": 1, + "makeIncrementer": 2, + "addOne": 2, + "increment": 2, + "protocolValue": 1, + "ExampleProtocol": 5, + "a": 2, + "protocolValue.simpleDescription": 1, + "enum": 4, + "OptionalValue": 2, + "": 1, + "case": 21, + "None": 1, + "Some": 1, + "T": 5, + "possibleInteger": 2, + "": 1, + ".None": 1, + ".Some": 1, + "self.name": 1, + "implicitInteger": 1, + "implicitDouble": 1, + "explicitDouble": 1, + "getGasPrices": 2, + "extension": 1, + "mutating": 3, + "adjust": 4, + "self": 3, + "shoppingList": 3, + "occupations": 2, + "emptyArray": 1, + "emptyDictionary": 1, + "Dictionary": 1, + "": 1, + "Float": 1, + "greet": 2, + "day": 1, + "protocol": 1, + "get": 2, + "struct": 2, + "Card": 2, + "rank": 2, + "Rank": 2, + "suit": 2, + "Suit": 2, + "threeOfSpades": 1, + ".Three": 1, + ".Spades": 2, + "threeOfSpadesDescription": 1, + "threeOfSpades.simpleDescription": 1, + "Counter": 2, + "count": 2, + "incrementBy": 1, + "amount": 2, + "numberOfTimes": 2, + "times": 4, + "counter": 1, + "counter.incrementBy": 1, + "Ace": 1, + "Two": 1, + "Three": 1, + "Four": 1, + "Five": 1, + "Six": 1, + "Seven": 1, + "Eight": 1, + "Nine": 1, + "Ten": 1, + "Jack": 1, + "Queen": 1, + "King": 1, + "switch": 4, + ".Ace": 1, + ".Jack": 1, + ".Queen": 1, + ".King": 1, + "default": 2, + "self.toRaw": 1, + "ace": 1, + "Rank.Ace": 1, + "aceRawValue": 1, + "ace.toRaw": 1, + "anyCommonElements": 2, + "": 1, + "U": 4, + "where": 2, + "Sequence": 2, + "GeneratorType": 3, + "Element": 3, + "Equatable": 1, + "lhs": 2, + "rhs": 2, + "lhsItem": 2, + "rhsItem": 2, + "returnFifteen": 2, + "y": 3, + "add": 2, + "vegetable": 2, + "vegetableComment": 4, + "x": 1, + "x.hasSuffix": 1, + "TriangleAndSquare": 2, + "triangle": 3, + "EquilateralTriangle": 4, + "willSet": 2, + "square.sideLength": 1, + "newValue.sideLength": 2, + "square": 2, + "triangle.sideLength": 2, + "size": 4, + "triangleAndSquare": 1, + "triangleAndSquare.square.sideLength": 1, + "triangleAndSquare.triangle.sideLength": 2, + "triangleAndSquare.square": 1, + "optionalSquare": 2, + ".sideLength": 1, + "n": 5, + "while": 2, + "m": 5, + "do": 1, + "Spades": 1, + "Hearts": 1, + "Diamonds": 1, + "Clubs": 1, + ".Hearts": 1, + ".Diamonds": 1, + ".Clubs": 1, + "hearts": 1, + "Suit.Hearts": 1, + "heartsDescription": 1, + "hearts.simpleDescription": 1, + "ServerResponse": 1, + "Result": 1, + "Error": 1, + "success": 2, + "ServerResponse.Result": 1, + "failure": 1, + "ServerResponse.Error": 1, + ".Result": 1, + "sunrise": 1, + "sunset": 1, + "serverResponse": 2, + ".Error": 1, + "error": 1, + "//": 1, + "Went": 1, + "shopping": 1, + "and": 1, + "bought": 1, + "everything.": 1, + "numbers.map": 2, + "convertedRank": 1, + "Rank.fromRaw": 1, + "threeDescription": 1, + "convertedRank.simpleDescription": 1, + "shape": 1, + "shape.numberOfSides": 1, + "shapeDescription": 1, + "shape.simpleDescription": 1, + "SimpleClass": 2, + "anotherProperty": 1, + "a.adjust": 1, + "aDescription": 1, + "a.simpleDescription": 1, + "SimpleStructure": 2, + "b": 1, + "b.adjust": 1, + "bDescription": 1, + "b.simpleDescription": 1, + "perimeter": 1, + "set": 1, + "newValue": 1, + "/": 1, + "triangle.perimeter": 2, + "result": 5, + "individualScores": 2, + "teamScore": 4, + "score": 2, + "else": 1, + "sort": 1, + "repeat": 2, + "": 1, + "ItemType": 3, + "i": 6, + "apples": 1, + "oranges": 1, + "appleSummary": 1, + "fruitSummary": 1, + "sumOf": 3, + "Int...": 1, + "sum": 3, + "firstForLoop": 3, + "secondForLoop": 3, + ";": 2 + }, + "Pod": { + "Id": 1, + "contents.pod": 1, + "v": 1, + "/05/04": 1, + "tower": 1, + "Exp": 1, + "begin": 3, + "html": 7, + "": 1, + "end": 4, + "head1": 2, + "Net": 12, + "Z3950": 12, + "AsyncZ": 16, + "head2": 3, + "Intro": 1, + "adds": 1, + "an": 3, + "additional": 1, + "layer": 1, + "of": 19, + "asynchronous": 4, + "support": 1, + "for": 11, + "the": 29, + "module": 6, + "through": 1, + "use": 1, + "multiple": 1, + "forked": 1, + "processes.": 1, + "I": 8, + "hope": 1, + "that": 9, + "users": 1, + "will": 1, + "also": 2, + "find": 1, + "it": 3, + "provides": 1, + "a": 8, + "convenient": 2, + "front": 1, + "to": 9, + "C": 13, + "": 1, + ".": 5, + "My": 1, + "initial": 1, + "idea": 1, + "was": 1, + "write": 1, + "something": 2, + "would": 1, + "provide": 1, + "means": 1, + "processing": 1, + "and": 14, + "formatting": 2, + "Z39.50": 1, + "records": 4, + "which": 3, + "did": 1, + "using": 1, + "": 2, + "synchronous": 1, + "code.": 1, + "But": 3, + "wanted": 1, + "could": 1, + "handle": 1, + "queries": 1, + "large": 1, + "numbers": 1, + "servers": 1, + "at": 1, + "one": 1, + "session.": 1, + "Working": 1, + "on": 1, + "this": 3, + "part": 3, + "my": 1, + "project": 1, + "found": 1, + "had": 1, + "trouble": 1, + "with": 6, + "features": 1, + "so": 1, + "ended": 1, + "up": 1, + "what": 1, + "have": 3, + "here.": 1, + "give": 2, + "more": 4, + "detailed": 4, + "account": 2, + "in": 9, + "": 4, + "href=": 5, + "": 1, + "DESCRIPTION": 1, + "": 1, + "": 5, + "section": 2, + "": 5, + "AsyncZ.html": 2, + "": 6, + "pod": 3, + "B": 1, + "": 1, + "": 1, + "cut": 3, + "Documentation": 1, + "over": 2, + "item": 10, + "AsyncZ.pod": 1, + "This": 4, + "is": 8, + "starting": 2, + "point": 2, + "gives": 2, + "overview": 2, + "describes": 2, + "basic": 4, + "mechanics": 2, + "its": 2, + "workings": 2, + "details": 5, + "particulars": 2, + "objects": 2, + "methods.": 2, + "see": 2, + "L": 1, + "": 1, + "explanations": 2, + "sample": 2, + "scripts": 2, + "come": 2, + "": 2, + "distribution.": 2, + "Options.pod": 1, + "document": 2, + "various": 2, + "options": 2, + "can": 4, + "be": 2, + "set": 2, + "modify": 2, + "behavior": 2, + "Index": 1, + "Report.pod": 2, + "deals": 2, + "how": 4, + "are": 7, + "treated": 2, + "line": 4, + "by": 2, + "you": 4, + "affect": 2, + "apearance": 2, + "record": 2, + "s": 2, + "HOW": 2, + "TO.": 2, + "back": 2, + "": 1, + "The": 6, + "Modules": 1, + "There": 2, + "modules": 5, + "than": 2, + "there": 2, + "documentation.": 2, + "reason": 2, + "only": 2, + "full": 2, + "complete": 2, + "access": 9, + "other": 2, + "either": 2, + "internal": 2, + "": 1, + "or": 4, + "accessed": 2, + "indirectly": 2, + "indirectly.": 2, + "head3": 1, + "Here": 1, + "main": 1, + "direct": 2, + "documented": 7, + "": 4, + "": 2, + "documentation": 4, + "ErrMsg": 1, + "User": 1, + "error": 1, + "message": 1, + "handling": 2, + "indirect": 2, + "Errors": 1, + "Error": 1, + "debugging": 1, + "limited": 2, + "Report": 1, + "Module": 1, + "reponsible": 1, + "fetching": 1, + "ZLoop": 1, + "Event": 1, + "loop": 1, + "child": 3, + "processes": 3, + "no": 2, + "not": 2, + "ZSend": 1, + "Connection": 1, + "Options": 2, + "_params": 1, + "INDEX": 1 + }, + "TeX": { + "%": 135, + "NeedsTeXFormat": 1, + "{": 463, + "LaTeX2e": 1, + "}": 469, + "ProvidesClass": 2, + "reedthesis": 1, + "[": 81, + "/01/27": 1, + "The": 4, + "Reed": 5, + "College": 5, + "Thesis": 5, + "Class": 4, + "]": 80, + "DeclareOption*": 2, + "PassOptionsToClass": 2, + "CurrentOption": 1, + "book": 2, + "ProcessOptions": 2, + "relax": 3, + "LoadClass": 2, + "RequirePackage": 20, + "fancyhdr": 2, + "AtBeginDocument": 1, + "fancyhf": 2, + "fancyhead": 5, + "LE": 1, + "RO": 1, + "thepage": 2, + "above": 1, + "makes": 2, + "your": 1, + "headers": 6, + "in": 20, + "all": 2, + "caps.": 2, + "If": 1, + "you": 1, + "would": 1, + "like": 1, + "different": 1, + "choose": 1, + "one": 1, + "of": 14, + "the": 19, + "following": 2, + "options": 1, + "(": 12, + "be": 3, + "sure": 1, + "to": 16, + "remove": 1, + "symbol": 4, + "from": 5, + "both": 1, + "right": 16, + "and": 5, + "left": 15, + ")": 12, + "RE": 2, + "slshape": 2, + "nouppercase": 2, + "leftmark": 2, + "This": 2, + "on": 2, + "RIGHT": 2, + "side": 2, + "pages": 2, + "italic": 1, + "use": 1, + "lowercase": 1, + "With": 1, + "Capitals": 1, + "When": 1, + "Specified.": 1, + "LO": 2, + "rightmark": 2, + "does": 1, + "same": 1, + "thing": 1, + "LEFT": 2, + "or": 1, + "scshape": 2, + "will": 2, + "small": 8, + "And": 1, + "so": 1, + "pagestyle": 3, + "fancy": 1, + "let": 11, + "oldthebibliography": 2, + "thebibliography": 2, + "endoldthebibliography": 2, + "endthebibliography": 1, + "renewenvironment": 2, + "#1": 40, + "addcontentsline": 5, + "toc": 5, + "chapter": 9, + "bibname": 2, + "end": 12, + "things": 1, + "for": 21, + "psych": 1, + "majors": 1, + "comment": 1, + "out": 1, + "oldtheindex": 2, + "theindex": 2, + "endoldtheindex": 2, + "endtheindex": 1, + "indexname": 1, + "RToldchapter": 1, + "renewcommand": 10, + "if@openright": 1, + "RTcleardoublepage": 3, + "else": 9, + "clearpage": 4, + "fi": 15, + "thispagestyle": 5, + "empty": 6, + "global": 2, + "@topnum": 1, + "z@": 2, + "@afterindentfalse": 1, + "secdef": 1, + "@chapter": 2, + "@schapter": 1, + "def": 18, + "#2": 17, + "ifnum": 3, + "c@secnumdepth": 1, + "m@ne": 2, + "if@mainmatter": 1, + "refstepcounter": 1, + "typeout": 1, + "@chapapp": 2, + "space": 8, + "thechapter.": 1, + "thechapter": 1, + "space#1": 1, + "chaptermark": 1, + "addtocontents": 2, + "lof": 1, + "protect": 2, + "addvspace": 2, + "p@": 3, + "lot": 1, + "if@twocolumn": 3, + "@topnewpage": 1, + "@makechapterhead": 2, + "@afterheading": 1, + "newcommand": 2, + "if@twoside": 1, + "ifodd": 1, + "c@page": 1, + "hbox": 15, + "newpage": 3, + "RToldcleardoublepage": 1, + "cleardoublepage": 4, + "setlength": 12, + "oddsidemargin": 2, + ".5in": 3, + "evensidemargin": 2, + "textwidth": 4, + "textheight": 4, + "topmargin": 6, + "addtolength": 8, + "headheight": 4, + "headsep": 3, + ".6in": 1, + "pt": 5, + "division#1": 1, + "gdef": 6, + "@division": 3, + "@latex@warning@no@line": 3, + "No": 3, + "noexpand": 3, + "division": 2, + "given": 3, + "department#1": 1, + "@department": 3, + "department": 1, + "thedivisionof#1": 1, + "@thedivisionof": 3, + "Division": 2, + "approvedforthe#1": 1, + "@approvedforthe": 3, + "advisor#1": 1, + "@advisor": 3, + "advisor": 1, + "altadvisor#1": 1, + "@altadvisor": 3, + "@altadvisortrue": 1, + "@empty": 1, + "newif": 1, + "if@altadvisor": 3, + "@altadvisorfalse": 1, + "contentsname": 1, + "Table": 1, + "Contents": 1, + "References": 1, + "l@chapter": 1, + "c@tocdepth": 1, + "addpenalty": 1, + "@highpenalty": 2, + "vskip": 4, + "em": 8, + "@plus": 1, + "@tempdima": 2, + "begingroup": 1, + "parindent": 2, + "rightskip": 1, + "@pnumwidth": 3, + "parfillskip": 1, + "-": 9, + "leavevmode": 1, + "bfseries": 3, + "advance": 1, + "leftskip": 2, + "hskip": 1, + "nobreak": 2, + "normalfont": 1, + "leaders": 1, + "m@th": 1, + "mkern": 2, + "@dotsep": 2, + "mu": 2, + ".": 3, + "hfill": 3, + "hb@xt@": 1, + "hss": 1, + "par": 6, + "penalty": 1, + "endgroup": 1, + "newenvironment": 1, + "abstract": 1, + "@restonecoltrue": 1, + "onecolumn": 1, + "@restonecolfalse": 1, + "Abstract": 2, + "begin": 11, + "center": 7, + "fontsize": 7, + "selectfont": 6, + "if@restonecol": 1, + "twocolumn": 1, + "ifx": 1, + "@pdfoutput": 1, + "@undefined": 1, + "RTpercent": 3, + "@percentchar": 1, + "AtBeginDvi": 2, + "special": 2, + "LaTeX": 3, + "/12/04": 3, + "SN": 3, + "rawpostscript": 1, + "AtEndDocument": 1, + "pdfinfo": 1, + "/Creator": 1, + "maketitle": 1, + "titlepage": 2, + "footnotesize": 2, + "footnoterule": 1, + "footnote": 1, + "thanks": 1, + "baselineskip": 2, + "setbox0": 2, + "Requirements": 2, + "Degree": 2, + "setcounter": 5, + "page": 4, + "null": 3, + "vfil": 8, + "@title": 1, + "centerline": 8, + "wd0": 7, + "hrulefill": 5, + "A": 1, + "Presented": 1, + "In": 1, + "Partial": 1, + "Fulfillment": 1, + "Bachelor": 1, + "Arts": 1, + "bigskip": 2, + "lineskip": 1, + ".75em": 1, + "tabular": 2, + "t": 1, + "c": 5, + "@author": 1, + "@date": 1, + "Approved": 2, + "just": 1, + "below": 2, + "cm": 2, + "not": 2, + "copy0": 1, + "approved": 1, + "major": 1, + "sign": 1, + "makebox": 6, + "problemset": 1, + "final": 2, + "article": 2, + "DeclareOption": 2, + "worksheet": 1, + "providecommand": 45, + "@solutionvis": 3, + "expand": 1, + "@expand": 3, + "letterpaper": 1, + "top": 1, + "bottom": 1, + "geometry": 1, + "pgfkeys": 1, + "For": 13, + "mathtable": 2, + "environment.": 3, + "tabularx": 1, + "pset": 1, + "heading": 2, + "float": 1, + "Used": 6, + "floats": 1, + "tables": 1, + "figures": 1, + "etc.": 1, + "graphicx": 1, + "inserting": 3, + "images.": 1, + "enumerate": 2, + "mathtools": 2, + "Required.": 7, + "Loads": 1, + "amsmath.": 1, + "amsthm": 1, + "theorem": 1, + "environments.": 1, + "amssymb": 1, + "booktabs": 1, + "esdiff": 1, + "derivatives": 4, + "partial": 2, + "Optional.": 1, + "shortintertext.": 1, + "customizing": 1, + "headers/footers.": 1, + "lastpage": 1, + "count": 1, + "header/footer.": 1, + "xcolor": 1, + "setting": 3, + "color": 3, + "hyperlinks": 2, + "obeyFinal": 1, + "Disable": 1, + "todos": 1, + "by": 1, + "option": 1, + "class": 1, + "@todoclr": 2, + "linecolor": 1, + "red": 1, + "todonotes": 1, + "keeping": 1, + "track": 1, + "dos.": 1, + "colorlinks": 1, + "true": 1, + "linkcolor": 1, + "navy": 2, + "urlcolor": 1, + "black": 2, + "hyperref": 1, + "urls": 2, + "references": 1, + "a": 2, + "document.": 1, + "url": 2, + "Enables": 1, + "with": 5, + "tag": 1, + "hypcap": 1, + "definecolor": 2, + "gray": 1, + "To": 1, + "Dos.": 1, + "brightness": 1, + "RGB": 1, + "coloring": 1, + "parskip": 1, + "ex": 2, + "Sets": 1, + "between": 1, + "paragraphs.": 2, + "Indent": 1, + "first": 1, + "line": 2, + "new": 1, + "VERBATIM": 2, + "verbatim": 2, + "verbatim@font": 1, + "ttfamily": 1, + "usepackage": 2, + "caption": 1, + "subcaption": 1, + "captionsetup": 4, + "table": 2, + "labelformat": 4, + "simple": 3, + "labelsep": 4, + "period": 3, + "labelfont": 4, + "bf": 4, + "figure": 2, + "subtable": 1, + "parens": 1, + "subfigure": 1, + "TRUE": 1, + "FALSE": 1, + "SHOW": 3, + "HIDE": 2, + "listoftodos": 1, + "pagenumbering": 1, + "arabic": 2, + "shortname": 2, + "authorname": 2, + "coursename": 3, + "#3": 8, + "assignment": 3, + "#4": 4, + "duedate": 2, + "#5": 2, + "minipage": 4, + "flushleft": 2, + "hypertarget": 1, + "@assignment": 2, + "textbf": 5, + "flushright": 2, + "headrulewidth": 1, + "footrulewidth": 1, + "fancyplain": 4, + "lfoot": 1, + "hyperlink": 1, + "cfoot": 1, + "rfoot": 1, + "pageref": 1, + "LastPage": 1, + "newcounter": 1, + "theproblem": 3, + "Problem": 2, + "counter": 1, + "environment": 1, + "problem": 1, + "addtocounter": 2, + "equation": 1, + "noindent": 2, + "textit": 1, + "Default": 2, + "is": 2, + "omit": 1, + "pagebreaks": 1, + "after": 1, + "solution": 2, + "qqed": 2, + "rule": 1, + "mm": 2, + "pagebreak": 2, + "show": 1, + "solutions.": 1, + "vspace": 2, + "Solution.": 1, + "ifnum#1": 2, + "chap": 1, + "section": 2, + "Sum": 3, + "n": 4, + "ensuremath": 15, + "sum_": 2, + "infsum": 2, + "infty": 2, + "Infinite": 1, + "sum": 1, + "Int": 1, + "x": 4, + "int_": 1, + "mathrm": 1, + "d": 1, + "Integrate": 1, + "respect": 1, + "Lim": 2, + "displaystyle": 2, + "lim_": 1, + "Take": 1, + "limit": 1, + "infinity": 1, + "f": 1, + "Frac": 1, + "/": 1, + "_": 1, + "Slanted": 1, + "fraction": 1, + "proper": 1, + "spacing.": 1, + "Usefule": 1, + "display": 2, + "fractions.": 1, + "eval": 1, + "vert_": 1, + "L": 1, + "hand": 2, + "sizing": 2, + "R": 1, + "D": 1, + "diff": 1, + "writing": 2, + "PD": 1, + "diffp": 1, + "full": 1, + "Forces": 1, + "style": 1, + "math": 4, + "mode": 4, + "Deg": 1, + "circ": 1, + "adding": 1, + "degree": 1, + "even": 1, + "if": 1, + "abs": 1, + "vert": 3, + "Absolute": 1, + "Value": 1, + "norm": 1, + "Vert": 2, + "Norm": 1, + "vector": 1, + "magnitude": 1, + "e": 1, + "times": 3, + "Scientific": 2, + "Notation": 2, + "E": 2, + "u": 1, + "text": 7, + "units": 1, + "Roman": 1, + "mc": 1, + "hspace": 3, + "comma": 1, + "into": 2, + "mtxt": 1, + "insterting": 1, + "either": 1, + "side.": 1, + "Option": 1, + "preceding": 1, + "punctuation.": 1, + "prob": 1, + "P": 2, + "cndprb": 1, + "right.": 1, + "cov": 1, + "Cov": 1, + "twovector": 1, + "r": 3, + "array": 6, + "threevector": 1, + "fourvector": 1, + "vecs": 4, + "vec": 2, + "bm": 2, + "bolded": 2, + "arrow": 2, + "vect": 3, + "unitvecs": 1, + "hat": 2, + "unitvect": 1, + "Div": 1, + "del": 3, + "cdot": 1, + "Curl": 1, + "Grad": 1 }, "ApacheConf": { + "#": 182, + "ServerRoot": 2, + "#Listen": 2, + "Listen": 2, + "LoadModule": 126, + "authn_file_module": 2, + "libexec/apache2/mod_authn_file.so": 1, + "authn_dbm_module": 2, + "libexec/apache2/mod_authn_dbm.so": 1, + "authn_anon_module": 2, + "libexec/apache2/mod_authn_anon.so": 1, + "authn_dbd_module": 2, + "libexec/apache2/mod_authn_dbd.so": 1, + "authn_default_module": 2, + "libexec/apache2/mod_authn_default.so": 1, + "authz_host_module": 2, + "libexec/apache2/mod_authz_host.so": 1, + "authz_groupfile_module": 2, + "libexec/apache2/mod_authz_groupfile.so": 1, + "authz_user_module": 2, + "libexec/apache2/mod_authz_user.so": 1, + "authz_dbm_module": 2, + "libexec/apache2/mod_authz_dbm.so": 1, + "authz_owner_module": 2, + "libexec/apache2/mod_authz_owner.so": 1, + "authz_default_module": 2, + "libexec/apache2/mod_authz_default.so": 1, + "auth_basic_module": 2, + "libexec/apache2/mod_auth_basic.so": 1, + "auth_digest_module": 2, + "libexec/apache2/mod_auth_digest.so": 1, + "cache_module": 2, + "libexec/apache2/mod_cache.so": 1, + "disk_cache_module": 2, + "libexec/apache2/mod_disk_cache.so": 1, + "mem_cache_module": 2, + "libexec/apache2/mod_mem_cache.so": 1, + "dbd_module": 2, + "libexec/apache2/mod_dbd.so": 1, + "dumpio_module": 2, + "libexec/apache2/mod_dumpio.so": 1, + "reqtimeout_module": 1, + "libexec/apache2/mod_reqtimeout.so": 1, + "ext_filter_module": 2, + "libexec/apache2/mod_ext_filter.so": 1, + "include_module": 2, + "libexec/apache2/mod_include.so": 1, + "filter_module": 2, + "libexec/apache2/mod_filter.so": 1, + "substitute_module": 1, + "libexec/apache2/mod_substitute.so": 1, + "deflate_module": 2, + "libexec/apache2/mod_deflate.so": 1, + "log_config_module": 3, + "libexec/apache2/mod_log_config.so": 1, + "log_forensic_module": 2, + "libexec/apache2/mod_log_forensic.so": 1, + "logio_module": 3, + "libexec/apache2/mod_logio.so": 1, + "env_module": 2, + "libexec/apache2/mod_env.so": 1, + "mime_magic_module": 2, + "libexec/apache2/mod_mime_magic.so": 1, + "cern_meta_module": 2, + "libexec/apache2/mod_cern_meta.so": 1, + "expires_module": 2, + "libexec/apache2/mod_expires.so": 1, + "headers_module": 2, + "libexec/apache2/mod_headers.so": 1, + "ident_module": 2, + "libexec/apache2/mod_ident.so": 1, + "usertrack_module": 2, + "libexec/apache2/mod_usertrack.so": 1, + "#LoadModule": 4, + "unique_id_module": 2, + "libexec/apache2/mod_unique_id.so": 1, + "setenvif_module": 2, + "libexec/apache2/mod_setenvif.so": 1, + "version_module": 2, + "libexec/apache2/mod_version.so": 1, + "proxy_module": 2, + "libexec/apache2/mod_proxy.so": 1, + "proxy_connect_module": 2, + "libexec/apache2/mod_proxy_connect.so": 1, + "proxy_ftp_module": 2, + "libexec/apache2/mod_proxy_ftp.so": 1, + "proxy_http_module": 2, + "libexec/apache2/mod_proxy_http.so": 1, + "proxy_scgi_module": 1, + "libexec/apache2/mod_proxy_scgi.so": 1, + "proxy_ajp_module": 2, + "libexec/apache2/mod_proxy_ajp.so": 1, + "proxy_balancer_module": 2, + "libexec/apache2/mod_proxy_balancer.so": 1, + "ssl_module": 4, + "libexec/apache2/mod_ssl.so": 1, + "mime_module": 4, + "libexec/apache2/mod_mime.so": 1, + "dav_module": 2, + "libexec/apache2/mod_dav.so": 1, + "status_module": 2, + "libexec/apache2/mod_status.so": 1, + "autoindex_module": 2, + "libexec/apache2/mod_autoindex.so": 1, + "asis_module": 2, + "libexec/apache2/mod_asis.so": 1, + "info_module": 2, + "libexec/apache2/mod_info.so": 1, + "cgi_module": 2, + "libexec/apache2/mod_cgi.so": 1, + "dav_fs_module": 2, + "libexec/apache2/mod_dav_fs.so": 1, + "vhost_alias_module": 2, + "libexec/apache2/mod_vhost_alias.so": 1, + "negotiation_module": 2, + "libexec/apache2/mod_negotiation.so": 1, + "dir_module": 4, + "libexec/apache2/mod_dir.so": 1, + "imagemap_module": 2, + "libexec/apache2/mod_imagemap.so": 1, + "actions_module": 2, + "libexec/apache2/mod_actions.so": 1, + "speling_module": 2, + "libexec/apache2/mod_speling.so": 1, + "userdir_module": 2, + "libexec/apache2/mod_userdir.so": 1, + "alias_module": 4, + "libexec/apache2/mod_alias.so": 1, + "rewrite_module": 2, + "libexec/apache2/mod_rewrite.so": 1, + "perl_module": 1, + "libexec/apache2/mod_perl.so": 1, + "php5_module": 1, + "libexec/apache2/libphp5.so": 1, + "hfs_apple_module": 1, + "libexec/apache2/mod_hfs_apple.so": 1, + "": 17, + "mpm_netware_module": 2, + "mpm_winnt_module": 1, + "User": 2, + "_www": 2, + "Group": 2, + "": 17, + "ServerAdmin": 2, + "you@example.com": 2, + "#ServerName": 2, + "www.example.com": 2, + "DocumentRoot": 2, + "": 6, + "Options": 6, + "FollowSymLinks": 4, + "AllowOverride": 6, + "None": 8, + "Order": 10, + "deny": 10, + "allow": 10, + "Deny": 6, + "from": 10, + "all": 10, + "": 6, + "Library": 2, + "WebServer": 2, + "Documents": 1, + "Indexes": 2, + "MultiViews": 1, + "Allow": 4, + "DirectoryIndex": 2, + "index.html": 2, + "": 2, + "Hh": 1, + "Tt": 1, + "Dd": 1, + "Ss": 2, + "_": 1, + "Satisfy": 4, + "All": 4, + "": 2, + "": 1, + "rsrc": 1, + "": 1, + "": 1, + "namedfork": 1, + "": 1, + "ErrorLog": 2, + "LogLevel": 2, + "warn": 2, + "LogFormat": 6, + "combined": 4, + "common": 4, + "combinedio": 2, + "CustomLog": 2, + "#CustomLog": 2, + "ScriptAliasMatch": 1, + "/cgi": 2, + "-": 43, + "bin/": 2, + "(": 16, + "i": 1, + "webobjects": 1, + ")": 17, + ".*": 3, + "cgid_module": 3, + "#Scriptsock": 2, + "/private/var/run/cgisock": 1, + "CGI": 1, + "Executables": 1, + "DefaultType": 2, + "text/plain": 2, + "TypesConfig": 2, + "/private/etc/apache2/mime.types": 1, + "#AddType": 4, + "application/x": 6, + "gzip": 6, + ".tgz": 6, + "#AddEncoding": 4, + "x": 4, + "compress": 4, + ".Z": 4, + ".gz": 4, + "AddType": 4, + "#AddHandler": 4, + "cgi": 3, + "script": 2, + ".cgi": 2, + "type": 2, + "map": 2, + "var": 2, + "text/html": 2, + ".shtml": 4, + "#AddOutputFilter": 2, + "INCLUDES": 2, + "#MIMEMagicFile": 2, + "/private/etc/apache2/magic": 1, + "#ErrorDocument": 8, + "/missing.html": 2, + "http": 2, + "//www.example.com/subscription_info.html": 2, + "#MaxRanges": 1, + "unlimited": 1, + "#EnableMMAP": 2, + "off": 5, + "#EnableSendfile": 2, + "TraceEnable": 1, + "Include": 6, + "/private/etc/apache2/extra/httpd": 11, + "mpm.conf": 2, + "#Include": 17, + "multilang": 2, + "errordoc.conf": 2, + "autoindex.conf": 2, + "languages.conf": 2, + "userdir.conf": 2, + "info.conf": 2, + "vhosts.conf": 2, + "manual.conf": 2, + "dav.conf": 2, + "default.conf": 2, + "ssl.conf": 2, + "SSLRandomSeed": 4, + "startup": 2, + "builtin": 4, + "connect": 2, + "/private/etc/apache2/other/*.conf": 1, + "/usr/lib/apache2/modules/mod_authn_file.so": 1, + "/usr/lib/apache2/modules/mod_authn_dbm.so": 1, + "/usr/lib/apache2/modules/mod_authn_anon.so": 1, + "/usr/lib/apache2/modules/mod_authn_dbd.so": 1, + "/usr/lib/apache2/modules/mod_authn_default.so": 1, + "authn_alias_module": 1, + "/usr/lib/apache2/modules/mod_authn_alias.so": 1, + "/usr/lib/apache2/modules/mod_authz_host.so": 1, + "/usr/lib/apache2/modules/mod_authz_groupfile.so": 1, + "/usr/lib/apache2/modules/mod_authz_user.so": 1, + "/usr/lib/apache2/modules/mod_authz_dbm.so": 1, + "/usr/lib/apache2/modules/mod_authz_owner.so": 1, + "authnz_ldap_module": 1, + "/usr/lib/apache2/modules/mod_authnz_ldap.so": 1, + "/usr/lib/apache2/modules/mod_authz_default.so": 1, + "/usr/lib/apache2/modules/mod_auth_basic.so": 1, + "/usr/lib/apache2/modules/mod_auth_digest.so": 1, + "file_cache_module": 1, + "/usr/lib/apache2/modules/mod_file_cache.so": 1, + "/usr/lib/apache2/modules/mod_cache.so": 1, + "/usr/lib/apache2/modules/mod_disk_cache.so": 1, + "/usr/lib/apache2/modules/mod_mem_cache.so": 1, + "/usr/lib/apache2/modules/mod_dbd.so": 1, + "/usr/lib/apache2/modules/mod_dumpio.so": 1, + "/usr/lib/apache2/modules/mod_ext_filter.so": 1, + "/usr/lib/apache2/modules/mod_include.so": 1, + "/usr/lib/apache2/modules/mod_filter.so": 1, + "charset_lite_module": 1, + "/usr/lib/apache2/modules/mod_charset_lite.so": 1, + "/usr/lib/apache2/modules/mod_deflate.so": 1, + "ldap_module": 1, + "/usr/lib/apache2/modules/mod_ldap.so": 1, + "/usr/lib/apache2/modules/mod_log_forensic.so": 1, + "/usr/lib/apache2/modules/mod_env.so": 1, + "/usr/lib/apache2/modules/mod_mime_magic.so": 1, + "/usr/lib/apache2/modules/mod_cern_meta.so": 1, + "/usr/lib/apache2/modules/mod_expires.so": 1, + "/usr/lib/apache2/modules/mod_headers.so": 1, + "/usr/lib/apache2/modules/mod_ident.so": 1, + "/usr/lib/apache2/modules/mod_usertrack.so": 1, + "/usr/lib/apache2/modules/mod_unique_id.so": 1, + "/usr/lib/apache2/modules/mod_setenvif.so": 1, + "/usr/lib/apache2/modules/mod_version.so": 1, + "/usr/lib/apache2/modules/mod_proxy.so": 1, + "/usr/lib/apache2/modules/mod_proxy_connect.so": 1, + "/usr/lib/apache2/modules/mod_proxy_ftp.so": 1, + "/usr/lib/apache2/modules/mod_proxy_http.so": 1, + "/usr/lib/apache2/modules/mod_proxy_ajp.so": 1, + "/usr/lib/apache2/modules/mod_proxy_balancer.so": 1, + "/usr/lib/apache2/modules/mod_ssl.so": 1, + "/usr/lib/apache2/modules/mod_mime.so": 1, + "/usr/lib/apache2/modules/mod_dav.so": 1, + "/usr/lib/apache2/modules/mod_status.so": 1, + "/usr/lib/apache2/modules/mod_autoindex.so": 1, + "/usr/lib/apache2/modules/mod_asis.so": 1, + "/usr/lib/apache2/modules/mod_info.so": 1, + "suexec_module": 1, + "/usr/lib/apache2/modules/mod_suexec.so": 1, + "/usr/lib/apache2/modules/mod_cgid.so": 1, + "/usr/lib/apache2/modules/mod_cgi.so": 1, + "/usr/lib/apache2/modules/mod_dav_fs.so": 1, + "dav_lock_module": 1, + "/usr/lib/apache2/modules/mod_dav_lock.so": 1, + "/usr/lib/apache2/modules/mod_vhost_alias.so": 1, + "/usr/lib/apache2/modules/mod_negotiation.so": 1, + "/usr/lib/apache2/modules/mod_dir.so": 1, + "/usr/lib/apache2/modules/mod_imagemap.so": 1, + "/usr/lib/apache2/modules/mod_actions.so": 1, + "/usr/lib/apache2/modules/mod_speling.so": 1, + "/usr/lib/apache2/modules/mod_userdir.so": 1, + "/usr/lib/apache2/modules/mod_alias.so": 1, + "/usr/lib/apache2/modules/mod_rewrite.so": 1, + "daemon": 2, + "usr": 2, + "share": 1, + "apache2": 1, + "default": 1, + "site": 1, + "htdocs": 1, + "ht": 1, + "/var/log/apache2/error_log": 1, + "/var/log/apache2/access_log": 2, + "ScriptAlias": 1, + "/var/run/apache2/cgisock": 1, + "lib": 1, + "bin": 1, + "/etc/apache2/mime.types": 1, + "/etc/apache2/magic": 1, + "/etc/apache2/extra/httpd": 11, "ServerSignature": 1, "Off": 1, "RewriteCond": 15, @@ -1344,13 +14326,11 @@ "{": 16, "REQUEST_METHOD": 1, "}": 16, - "(": 16, "HEAD": 1, "|": 80, "TRACE": 1, "DELETE": 1, "TRACK": 1, - ")": 17, "[": 17, "NC": 13, "OR": 14, @@ -1385,7 +14365,6 @@ "grab": 1, "miner": 1, "libwww": 1, - "-": 43, "perl": 1, "python": 1, "nikto": 1, @@ -1394,7 +14373,6 @@ "mySQL": 1, "injects": 1, "QUERY_STRING": 5, - ".*": 3, "*": 1, "union": 1, "select": 1, @@ -1415,845 +14393,1316 @@ "z0": 1, "RewriteRule": 1, "index.php": 1, - "F": 1, - "#": 182, - "ServerRoot": 2, - "#Listen": 2, - "Listen": 2, - "LoadModule": 126, - "authn_file_module": 2, - "/usr/lib/apache2/modules/mod_authn_file.so": 1, - "authn_dbm_module": 2, - "/usr/lib/apache2/modules/mod_authn_dbm.so": 1, - "authn_anon_module": 2, - "/usr/lib/apache2/modules/mod_authn_anon.so": 1, - "authn_dbd_module": 2, - "/usr/lib/apache2/modules/mod_authn_dbd.so": 1, - "authn_default_module": 2, - "/usr/lib/apache2/modules/mod_authn_default.so": 1, - "authn_alias_module": 1, - "/usr/lib/apache2/modules/mod_authn_alias.so": 1, - "authz_host_module": 2, - "/usr/lib/apache2/modules/mod_authz_host.so": 1, - "authz_groupfile_module": 2, - "/usr/lib/apache2/modules/mod_authz_groupfile.so": 1, - "authz_user_module": 2, - "/usr/lib/apache2/modules/mod_authz_user.so": 1, - "authz_dbm_module": 2, - "/usr/lib/apache2/modules/mod_authz_dbm.so": 1, - "authz_owner_module": 2, - "/usr/lib/apache2/modules/mod_authz_owner.so": 1, - "authnz_ldap_module": 1, - "/usr/lib/apache2/modules/mod_authnz_ldap.so": 1, - "authz_default_module": 2, - "/usr/lib/apache2/modules/mod_authz_default.so": 1, - "auth_basic_module": 2, - "/usr/lib/apache2/modules/mod_auth_basic.so": 1, - "auth_digest_module": 2, - "/usr/lib/apache2/modules/mod_auth_digest.so": 1, - "file_cache_module": 1, - "/usr/lib/apache2/modules/mod_file_cache.so": 1, - "cache_module": 2, - "/usr/lib/apache2/modules/mod_cache.so": 1, - "disk_cache_module": 2, - "/usr/lib/apache2/modules/mod_disk_cache.so": 1, - "mem_cache_module": 2, - "/usr/lib/apache2/modules/mod_mem_cache.so": 1, - "dbd_module": 2, - "/usr/lib/apache2/modules/mod_dbd.so": 1, - "dumpio_module": 2, - "/usr/lib/apache2/modules/mod_dumpio.so": 1, - "ext_filter_module": 2, - "/usr/lib/apache2/modules/mod_ext_filter.so": 1, - "include_module": 2, - "/usr/lib/apache2/modules/mod_include.so": 1, - "filter_module": 2, - "/usr/lib/apache2/modules/mod_filter.so": 1, - "charset_lite_module": 1, - "/usr/lib/apache2/modules/mod_charset_lite.so": 1, - "deflate_module": 2, - "/usr/lib/apache2/modules/mod_deflate.so": 1, - "ldap_module": 1, - "/usr/lib/apache2/modules/mod_ldap.so": 1, - "log_forensic_module": 2, - "/usr/lib/apache2/modules/mod_log_forensic.so": 1, - "env_module": 2, - "/usr/lib/apache2/modules/mod_env.so": 1, - "mime_magic_module": 2, - "/usr/lib/apache2/modules/mod_mime_magic.so": 1, - "cern_meta_module": 2, - "/usr/lib/apache2/modules/mod_cern_meta.so": 1, - "expires_module": 2, - "/usr/lib/apache2/modules/mod_expires.so": 1, - "headers_module": 2, - "/usr/lib/apache2/modules/mod_headers.so": 1, - "ident_module": 2, - "/usr/lib/apache2/modules/mod_ident.so": 1, - "usertrack_module": 2, - "/usr/lib/apache2/modules/mod_usertrack.so": 1, - "unique_id_module": 2, - "/usr/lib/apache2/modules/mod_unique_id.so": 1, - "setenvif_module": 2, - "/usr/lib/apache2/modules/mod_setenvif.so": 1, - "version_module": 2, - "/usr/lib/apache2/modules/mod_version.so": 1, - "proxy_module": 2, - "/usr/lib/apache2/modules/mod_proxy.so": 1, - "proxy_connect_module": 2, - "/usr/lib/apache2/modules/mod_proxy_connect.so": 1, - "proxy_ftp_module": 2, - "/usr/lib/apache2/modules/mod_proxy_ftp.so": 1, - "proxy_http_module": 2, - "/usr/lib/apache2/modules/mod_proxy_http.so": 1, - "proxy_ajp_module": 2, - "/usr/lib/apache2/modules/mod_proxy_ajp.so": 1, - "proxy_balancer_module": 2, - "/usr/lib/apache2/modules/mod_proxy_balancer.so": 1, - "ssl_module": 4, - "/usr/lib/apache2/modules/mod_ssl.so": 1, - "mime_module": 4, - "/usr/lib/apache2/modules/mod_mime.so": 1, - "dav_module": 2, - "/usr/lib/apache2/modules/mod_dav.so": 1, - "status_module": 2, - "/usr/lib/apache2/modules/mod_status.so": 1, - "autoindex_module": 2, - "/usr/lib/apache2/modules/mod_autoindex.so": 1, - "asis_module": 2, - "/usr/lib/apache2/modules/mod_asis.so": 1, - "info_module": 2, - "/usr/lib/apache2/modules/mod_info.so": 1, - "suexec_module": 1, - "/usr/lib/apache2/modules/mod_suexec.so": 1, - "cgid_module": 3, - "/usr/lib/apache2/modules/mod_cgid.so": 1, - "cgi_module": 2, - "/usr/lib/apache2/modules/mod_cgi.so": 1, - "dav_fs_module": 2, - "/usr/lib/apache2/modules/mod_dav_fs.so": 1, - "dav_lock_module": 1, - "/usr/lib/apache2/modules/mod_dav_lock.so": 1, - "vhost_alias_module": 2, - "/usr/lib/apache2/modules/mod_vhost_alias.so": 1, - "negotiation_module": 2, - "/usr/lib/apache2/modules/mod_negotiation.so": 1, - "dir_module": 4, - "/usr/lib/apache2/modules/mod_dir.so": 1, - "imagemap_module": 2, - "/usr/lib/apache2/modules/mod_imagemap.so": 1, - "actions_module": 2, - "/usr/lib/apache2/modules/mod_actions.so": 1, - "speling_module": 2, - "/usr/lib/apache2/modules/mod_speling.so": 1, - "userdir_module": 2, - "/usr/lib/apache2/modules/mod_userdir.so": 1, - "alias_module": 4, - "/usr/lib/apache2/modules/mod_alias.so": 1, - "rewrite_module": 2, - "/usr/lib/apache2/modules/mod_rewrite.so": 1, - "": 17, - "mpm_netware_module": 2, - "User": 2, - "daemon": 2, - "Group": 2, - "": 17, - "ServerAdmin": 2, - "you@example.com": 2, - "#ServerName": 2, - "www.example.com": 2, - "DocumentRoot": 2, - "": 6, - "Options": 6, - "FollowSymLinks": 4, - "AllowOverride": 6, - "None": 8, - "Order": 10, - "deny": 10, - "allow": 10, - "Deny": 6, - "from": 10, - "all": 10, - "": 6, - "usr": 2, - "share": 1, - "apache2": 1, - "default": 1, - "site": 1, - "htdocs": 1, - "Indexes": 2, - "Allow": 4, - "DirectoryIndex": 2, - "index.html": 2, - "": 2, - "ht": 1, - "Satisfy": 4, - "All": 4, - "": 2, - "ErrorLog": 2, - "/var/log/apache2/error_log": 1, - "LogLevel": 2, - "warn": 2, - "log_config_module": 3, - "LogFormat": 6, - "combined": 4, - "common": 4, - "logio_module": 3, - "combinedio": 2, - "CustomLog": 2, - "/var/log/apache2/access_log": 2, - "#CustomLog": 2, - "ScriptAlias": 1, - "/cgi": 2, - "bin/": 2, - "#Scriptsock": 2, - "/var/run/apache2/cgisock": 1, - "lib": 1, - "cgi": 3, - "bin": 1, - "DefaultType": 2, - "text/plain": 2, - "TypesConfig": 2, - "/etc/apache2/mime.types": 1, - "#AddType": 4, - "application/x": 6, - "gzip": 6, - ".tgz": 6, - "#AddEncoding": 4, - "x": 4, - "compress": 4, - ".Z": 4, - ".gz": 4, - "AddType": 4, - "#AddHandler": 4, - "script": 2, - ".cgi": 2, - "type": 2, - "map": 2, - "var": 2, - "text/html": 2, - ".shtml": 4, - "#AddOutputFilter": 2, - "INCLUDES": 2, - "#MIMEMagicFile": 2, - "/etc/apache2/magic": 1, - "#ErrorDocument": 8, - "/missing.html": 2, - "http": 2, - "//www.example.com/subscription_info.html": 2, - "#EnableMMAP": 2, - "off": 5, - "#EnableSendfile": 2, - "#Include": 17, - "/etc/apache2/extra/httpd": 11, - "mpm.conf": 2, - "multilang": 2, - "errordoc.conf": 2, - "autoindex.conf": 2, - "languages.conf": 2, - "userdir.conf": 2, - "info.conf": 2, - "vhosts.conf": 2, - "manual.conf": 2, - "dav.conf": 2, - "default.conf": 2, - "ssl.conf": 2, - "SSLRandomSeed": 4, - "startup": 2, - "builtin": 4, - "connect": 2, - "libexec/apache2/mod_authn_file.so": 1, - "libexec/apache2/mod_authn_dbm.so": 1, - "libexec/apache2/mod_authn_anon.so": 1, - "libexec/apache2/mod_authn_dbd.so": 1, - "libexec/apache2/mod_authn_default.so": 1, - "libexec/apache2/mod_authz_host.so": 1, - "libexec/apache2/mod_authz_groupfile.so": 1, - "libexec/apache2/mod_authz_user.so": 1, - "libexec/apache2/mod_authz_dbm.so": 1, - "libexec/apache2/mod_authz_owner.so": 1, - "libexec/apache2/mod_authz_default.so": 1, - "libexec/apache2/mod_auth_basic.so": 1, - "libexec/apache2/mod_auth_digest.so": 1, - "libexec/apache2/mod_cache.so": 1, - "libexec/apache2/mod_disk_cache.so": 1, - "libexec/apache2/mod_mem_cache.so": 1, - "libexec/apache2/mod_dbd.so": 1, - "libexec/apache2/mod_dumpio.so": 1, - "reqtimeout_module": 1, - "libexec/apache2/mod_reqtimeout.so": 1, - "libexec/apache2/mod_ext_filter.so": 1, - "libexec/apache2/mod_include.so": 1, - "libexec/apache2/mod_filter.so": 1, - "substitute_module": 1, - "libexec/apache2/mod_substitute.so": 1, - "libexec/apache2/mod_deflate.so": 1, - "libexec/apache2/mod_log_config.so": 1, - "libexec/apache2/mod_log_forensic.so": 1, - "libexec/apache2/mod_logio.so": 1, - "libexec/apache2/mod_env.so": 1, - "libexec/apache2/mod_mime_magic.so": 1, - "libexec/apache2/mod_cern_meta.so": 1, - "libexec/apache2/mod_expires.so": 1, - "libexec/apache2/mod_headers.so": 1, - "libexec/apache2/mod_ident.so": 1, - "libexec/apache2/mod_usertrack.so": 1, - "#LoadModule": 4, - "libexec/apache2/mod_unique_id.so": 1, - "libexec/apache2/mod_setenvif.so": 1, - "libexec/apache2/mod_version.so": 1, - "libexec/apache2/mod_proxy.so": 1, - "libexec/apache2/mod_proxy_connect.so": 1, - "libexec/apache2/mod_proxy_ftp.so": 1, - "libexec/apache2/mod_proxy_http.so": 1, - "proxy_scgi_module": 1, - "libexec/apache2/mod_proxy_scgi.so": 1, - "libexec/apache2/mod_proxy_ajp.so": 1, - "libexec/apache2/mod_proxy_balancer.so": 1, - "libexec/apache2/mod_ssl.so": 1, - "libexec/apache2/mod_mime.so": 1, - "libexec/apache2/mod_dav.so": 1, - "libexec/apache2/mod_status.so": 1, - "libexec/apache2/mod_autoindex.so": 1, - "libexec/apache2/mod_asis.so": 1, - "libexec/apache2/mod_info.so": 1, - "libexec/apache2/mod_cgi.so": 1, - "libexec/apache2/mod_dav_fs.so": 1, - "libexec/apache2/mod_vhost_alias.so": 1, - "libexec/apache2/mod_negotiation.so": 1, - "libexec/apache2/mod_dir.so": 1, - "libexec/apache2/mod_imagemap.so": 1, - "libexec/apache2/mod_actions.so": 1, - "libexec/apache2/mod_speling.so": 1, - "libexec/apache2/mod_userdir.so": 1, - "libexec/apache2/mod_alias.so": 1, - "libexec/apache2/mod_rewrite.so": 1, - "perl_module": 1, - "libexec/apache2/mod_perl.so": 1, - "php5_module": 1, - "libexec/apache2/libphp5.so": 1, - "hfs_apple_module": 1, - "libexec/apache2/mod_hfs_apple.so": 1, - "mpm_winnt_module": 1, - "_www": 2, - "Library": 2, - "WebServer": 2, - "Documents": 1, - "MultiViews": 1, - "Hh": 1, - "Tt": 1, - "Dd": 1, - "Ss": 2, - "_": 1, - "": 1, - "rsrc": 1, - "": 1, - "": 1, - "namedfork": 1, - "": 1, - "ScriptAliasMatch": 1, - "i": 1, - "webobjects": 1, - "/private/var/run/cgisock": 1, - "CGI": 1, - "Executables": 1, - "/private/etc/apache2/mime.types": 1, - "/private/etc/apache2/magic": 1, - "#MaxRanges": 1, - "unlimited": 1, - "TraceEnable": 1, - "Include": 6, - "/private/etc/apache2/extra/httpd": 11, - "/private/etc/apache2/other/*.conf": 1 + "F": 1 }, - "Apex": { - "global": 70, - "class": 7, - "ArrayUtils": 1, - "{": 219, - "static": 83, - "String": 60, - "[": 102, - "]": 102, - "EMPTY_STRING_ARRAY": 1, - "new": 60, - "}": 219, - ";": 308, - "Integer": 34, - "MAX_NUMBER_OF_ELEMENTS_IN_LIST": 5, - "get": 4, - "return": 106, - "List": 71, - "": 30, - "objectToString": 1, - "(": 481, - "": 22, - "objects": 3, - ")": 481, - "strings": 3, - "null": 92, - "if": 91, - "objects.size": 1, - "for": 24, - "Object": 23, - "obj": 3, - "instanceof": 1, - "strings.add": 1, - "reverse": 2, - "anArray": 14, - "i": 55, - "j": 10, - "anArray.size": 2, - "-": 18, - "tmp": 6, - "while": 8, - "+": 75, - "SObject": 19, - "lowerCase": 1, - "strs": 9, - "returnValue": 22, - "strs.size": 3, - "str": 10, - "returnValue.add": 3, - "str.toLowerCase": 1, - "upperCase": 1, - "str.toUpperCase": 1, - "trim": 1, - "str.trim": 3, - "mergex": 2, - "array1": 8, - "array2": 9, - "merged": 6, - "array1.size": 4, - "array2.size": 2, - "<": 32, - "": 19, - "sObj": 4, - "merged.add": 2, - "Boolean": 38, - "isEmpty": 7, - "objectArray": 17, - "true": 12, - "objectArray.size": 6, - "isNotEmpty": 4, - "pluck": 1, - "fieldName": 3, - "||": 12, - "fieldName.trim": 2, - ".length": 2, - "plucked": 3, - ".get": 4, - "toString": 3, - "void": 9, - "assertArraysAreEqual": 2, - "expected": 16, - "actual": 16, - "//check": 2, - "to": 4, - "see": 2, - "one": 2, - "param": 2, - "is": 5, - "but": 2, - "the": 4, - "other": 2, - "not": 3, - "System.assert": 6, - "&&": 46, - "ArrayUtils.toString": 12, - "expected.size": 4, - "actual.size": 2, - "merg": 2, - "list1": 15, - "list2": 9, - "returnList": 11, - "list1.size": 6, - "list2.size": 2, - "throw": 6, - "IllegalArgumentException": 5, - "elmt": 8, - "returnList.add": 8, - "subset": 6, - "aList": 4, - "count": 10, - "startIndex": 9, - "<=>": 2, - "size": 2, - "1": 2, - "list1.get": 2, - "//": 11, - "//LIST/ARRAY": 1, - "SORTING": 1, - "//FOR": 2, - "FORCE.COM": 1, - "PRIMITIVES": 1, - "Double": 1, - "ID": 1, - "etc.": 1, - "qsort": 18, - "theList": 72, - "PrimitiveComparator": 2, - "sortAsc": 24, - "ObjectComparator": 3, - "comparator": 14, - "theList.size": 2, - "SALESFORCE": 1, - "OBJECTS": 1, - "sObjects": 1, - "ISObjectComparator": 3, - "private": 10, - "lo0": 6, - "hi0": 8, - "lo": 42, - "hi": 50, - "else": 25, - "comparator.compare": 12, - "prs": 8, - "pivot": 14, - "/": 4, - "BooleanUtils": 1, - "isFalse": 1, - "bool": 32, - "false": 13, - "isNotFalse": 1, - "isNotTrue": 1, - "isTrue": 1, - "negate": 1, - "toBooleanDefaultIfNull": 1, - "defaultVal": 2, - "toBoolean": 2, - "value": 10, - "strToBoolean": 1, - "StringUtils.equalsIgnoreCase": 1, - "//Converts": 1, - "an": 4, - "int": 1, - "a": 6, - "boolean": 1, - "specifying": 1, - "//the": 2, - "conversion": 1, - "values.": 1, - "//Returns": 1, - "//Throws": 1, - "trueValue": 2, - "falseValue": 2, - "toInteger": 1, - "toStringYesNo": 1, - "toStringYN": 1, - "trueString": 2, - "falseString": 2, - "xor": 1, - "boolArray": 4, - "boolArray.size": 1, - "firstItem": 2, - "EmailUtils": 1, - "sendEmailWithStandardAttachments": 3, - "recipients": 11, - "emailSubject": 10, - "body": 8, - "useHTML": 6, - "": 1, - "attachmentIDs": 2, - "": 2, - "stdAttachments": 4, - "SELECT": 1, - "id": 1, - "name": 2, - "FROM": 1, - "Attachment": 2, - "WHERE": 1, - "Id": 1, - "IN": 1, - "": 3, - "fileAttachments": 5, - "attachment": 1, - "Messaging.EmailFileAttachment": 2, - "fileAttachment": 2, - "fileAttachment.setFileName": 1, - "attachment.Name": 1, - "fileAttachment.setBody": 1, - "attachment.Body": 1, - "fileAttachments.add": 1, - "sendEmail": 4, - "sendTextEmail": 1, - "textBody": 2, - "sendHTMLEmail": 1, - "htmlBody": 2, - "recipients.size": 1, - "Messaging.SingleEmailMessage": 3, - "mail": 2, - "email": 1, - "saved": 1, - "as": 1, - "activity.": 1, - "mail.setSaveAsActivity": 1, - "mail.setToAddresses": 1, - "mail.setSubject": 1, - "mail.setBccSender": 1, - "mail.setUseSignature": 1, - "mail.setHtmlBody": 1, - "mail.setPlainTextBody": 1, - "fileAttachments.size": 1, - "mail.setFileAttachments": 1, - "Messaging.sendEmail": 1, - "isValidEmailAddress": 2, - "split": 5, - "str.split": 1, - "split.size": 2, - ".split": 1, - "isNotValidEmailAddress": 1, - "public": 10, - "GeoUtils": 1, - "generate": 1, - "KML": 1, + "VimL": { + "no": 1, + "toolbar": 1, + "set": 7, + "guioptions": 1, + "-": 1, + "T": 1, + "nocompatible": 1, + "ignorecase": 1, + "incsearch": 1, + "smartcase": 1, + "showmatch": 1, + "showcmd": 1, + "syntax": 1, + "on": 1 + }, + "Cirru": { + "print": 38, + "int": 36, + "float": 1, + "map": 8, + "a": 22, + "b": 7, + "array": 14, + "(": 20, + ")": 20, + "c": 9, + "set": 12, + "m": 3, "string": 7, - "given": 2, - "page": 1, - "reference": 1, - "call": 1, - "getContent": 1, - "then": 1, - "cleanup": 1, - "output.": 1, - "generateFromContent": 1, - "PageReference": 2, - "pr": 1, - "ret": 7, - "try": 1, - "pr.getContent": 1, - ".toString": 1, - "ret.replaceAll": 4, - "content": 1, - "produces": 1, - "quote": 1, - "chars": 1, - "we": 1, - "need": 1, - "escape": 1, - "these": 2, + "self": 2, + "child": 1, + "under": 2, + "parent": 1, + "get": 4, + "x": 2, + "just": 4, + "-": 4, + "code": 4, + "eval": 2, + "nothing": 1, + "container": 3, + "require": 1, + "./stdio.cr": 1, + "bool": 6, + "true": 1, + "false": 1, + "yes": 1, + "no": 1, + "f": 3, + "block": 1, + "call": 1 + }, + "Ox": { + "#include": 2, + "Kapital": 4, + "(": 119, + "L": 2, + "const": 4, + "N": 5, + "entrant": 8, + "exit": 2, + "KP": 14, + ")": 119, + "{": 22, + "StateVariable": 1, + ";": 91, + "this.entrant": 1, + "this.exit": 1, + "this.KP": 1, + "actual": 2, + "Kbar*vals/": 1, + "-": 31, + "upper": 3, + "log": 2, + ".Inf": 2, + "}": 22, + "Transit": 1, + "FeasA": 2, + "decl": 3, + "ent": 5, + "CV": 7, + "stayout": 3, + "[": 25, + "]": 25, + "exit.pos": 1, + "tprob": 5, + "sigu": 2, + "SigU": 2, + "if": 5, + "v": 2, + "&&": 1, + "return": 10, + "<0>": 1, + "ones": 1, + "probn": 2, + "Kbe": 2, + "/sigu": 1, + "Kb0": 2, + "+": 14, + "Kb2": 2, + "*upper": 1, + "/": 1, + "vals": 1, + "tprob.*": 1, + "zeros": 4, + ".*stayout": 1, + "FirmEntry": 6, + "Run": 1, + "Initialize": 3, + "GenerateSample": 2, + "BDP": 2, + "BayesianDP": 1, + "Rust": 1, + "Reachable": 2, + "sige": 2, + "new": 19, + "StDeviations": 1, + "<0.3,0.3>": 1, + "LaggedAction": 1, + "d": 2, + "array": 1, + "Kparams": 1, + "Positive": 4, + "Free": 1, + "Kb1": 1, + "Determined": 1, + "EndogenousStates": 1, + "K": 3, + "KN": 1, + "SetDelta": 1, + "Probability": 1, + "kcoef": 3, + "ecost": 3, + "Negative": 1, + "CreateSpaces": 1, + "Volume": 3, + "LOUD": 1, + "EM": 4, + "ValueIteration": 1, + "//": 17, + "Solve": 1, + "data": 4, + "DataSet": 1, + "Simulate": 1, + "DataN": 1, + "DataT": 1, + "FALSE": 1, + "Print": 1, + "ImaiJainChing": 1, + "delta": 1, + "*CV": 2, + "Utility": 1, + "u": 2, + "ent*CV": 1, + "*AV": 1, + "|": 1, + "ParallelObjective": 1, + "obj": 18, + "DONOTUSECLIENT": 2, + "isclass": 1, + "obj.p2p": 2, + "oxwarning": 1, + "obj.L": 1, + "P2P": 2, + "ObjClient": 4, + "ObjServer": 7, + "this.obj": 2, + "Execute": 4, + "basetag": 2, + "STOP_TAG": 1, + "iml": 1, + "obj.NvfuncTerms": 2, + "Nparams": 6, + "obj.nstruct": 2, + "Loop": 2, + "nxtmsgsz": 2, + "//free": 1, + "param": 1, + "length": 1, + "is": 1, + "no": 2, + "greater": 1, + "than": 1, + "QUIET": 2, + "println": 2, + "ID": 2, + "Server": 1, + "Recv": 1, + "ANY_TAG": 1, + "//receive": 1, + "the": 1, + "ending": 1, + "parameter": 1, + "vector": 1, + "Encode": 3, + "Buffer": 8, + "//encode": 1, + "it.": 1, + "Decode": 1, + "obj.nfree": 1, + "obj.cur.V": 1, + "vfunc": 2, + "CstrServer": 3, + "SepServer": 3, + "Lagrangian": 1, + "rows": 1, + "obj.cur": 1, + "Vec": 1, + "obj.Kvar.v": 1, + "imod": 1, + "Tag": 1, + "obj.K": 1, + "TRUE": 1, + "obj.Kvar": 1, + "PDF": 1, + "*": 5, + "nldge": 1, + "ParticleLogLikeli": 1, + "it": 5, + "ip": 1, + "mss": 3, + "mbas": 1, + "ms": 8, + "my": 4, + "mx": 7, + "vw": 7, + "vwi": 4, + "dws": 3, + "mhi": 3, + "mhdet": 2, + "loglikeli": 4, + "mData": 4, + "vxm": 1, + "vxs": 1, + "mxm": 1, + "<": 4, + "mxsu": 1, + "mxsl": 1, + "time": 2, + "timeall": 1, + "timeran": 1, + "timelik": 1, + "timefun": 1, + "timeint": 1, + "timeres": 1, + "GetData": 1, + "m_asY": 1, + "sqrt": 1, + "*M_PI": 1, + "m_cY": 1, + "determinant": 2, + "m_mMSbE.": 2, + "covariance": 2, + "invert": 2, + "of": 2, + "measurement": 1, + "shocks": 1, + "m_vSss": 1, + "m_cPar": 4, + "m_cS": 1, + "start": 1, + "particles": 2, + "m_vXss": 1, + "m_cX": 1, + "steady": 1, + "state": 3, + "and": 1, + "policy": 2, + "init": 1, + "likelihood": 1, + "//timeall": 1, + "timer": 3, + "for": 2, + "sizer": 1, + "rann": 1, + "m_cSS": 1, + "m_mSSbE": 1, + "noise": 1, + "fg": 1, + "&": 2, + "transition": 1, + "prior": 1, + "as": 1, + "proposal": 1, + "m_oApprox.FastInterpolate": 1, + "interpolate": 1, + "fy": 1, + "m_cMS": 1, + "evaluate": 1, + "importance": 1, + "weights": 2, + "observation": 1, + "error": 1, + "exp": 2, + "outer": 1, + "/mhdet": 2, + "sumr": 1, + "my*mhi": 1, + ".*my": 1, + ".": 3, + ".NaN": 1, + "can": 1, + "happen": 1, + "extrem": 1, + "sumc": 1, + "or": 1, + "extremely": 1, + "wrong": 1, + "parameters": 1, + "dws/m_cPar": 1, + "loglikelihood": 1, + "contribution": 1, + "//timelik": 1, + "/100": 1, + "//time": 1, + "resample": 1, + "vw/dws": 1, + "selection": 1, + "step": 1, "in": 1, - "node": 1, + "c": 1, + "on": 1, + "normalized": 1 + }, + "OpenCL": { + "double": 3, + "run_fftw": 1, + "(": 18, + "int": 3, + "n": 4, + "const": 4, + "float": 3, + "*": 5, + "x": 5, + "y": 4, + ")": 18, + "{": 4, + "fftwf_plan": 1, + "p1": 3, + "fftwf_plan_dft_1d": 1, + "fftwf_complex": 2, + "FFTW_FORWARD": 1, + "FFTW_ESTIMATE": 1, + ";": 12, + "nops": 3, + "t": 4, + "cl": 2, + "realTime": 2, + "for": 1, + "op": 3, + "<": 1, + "+": 4, + "fftwf_execute": 1, + "}": 4, + "-": 1, + "/": 1, + "fftwf_destroy_plan": 1, + "return": 1, + "typedef": 1, + "foo_t": 3, + "#ifndef": 1, + "ZERO": 3, + "#define": 2, + "#endif": 1, + "FOO": 1, + "__kernel": 1, + "void": 1, + "foo": 1, + "__global": 1, + "__local": 1, + "uint": 1, + "barrier": 1, + "CLK_LOCAL_MEM_FENCE": 1, + "if": 1, + "*x": 1 + }, + "PostScript": { + "%": 23, + "PS": 1, + "-": 4, + "Adobe": 1, + "Creator": 1, + "Aaron": 1, + "Puchert": 1, + "Title": 1, + "The": 1, + "Sierpinski": 1, + "triangle": 1, + "Pages": 1, + "PageOrder": 1, + "Ascend": 1, + "BeginProlog": 1, + "/pageset": 1, + "{": 4, + "scale": 1, + "set": 1, + "cm": 1, + "translate": 1, + "setlinewidth": 1, + "}": 4, + "def": 2, + "/sierpinski": 1, + "dup": 4, + "gt": 1, + "[": 6, + "]": 6, + "concat": 5, + "sub": 3, + "sierpinski": 4, + "newpath": 1, + "moveto": 1, + "lineto": 2, + "closepath": 1, + "fill": 1, + "ifelse": 1, + "pop": 1, + "EndProlog": 1, + "BeginSetup": 1, + "<<": 1, + "/PageSize": 1, + "setpagedevice": 1, + "A4": 1, + "EndSetup": 1, + "Page": 1, + "Test": 1, + "pageset": 1, + "sqrt": 1, + "showpage": 1, + "EOF": 1 + }, + "Pike": { + "#pike": 2, + "__REAL_VERSION__": 2, + "constant": 13, + "Generic": 1, + "__builtin.GenericError": 1, + ";": 149, + "Index": 1, + "__builtin.IndexError": 1, + "BadArgument": 1, + "__builtin.BadArgumentError": 1, + "Math": 1, + "__builtin.MathError": 1, + "Resource": 1, + "__builtin.ResourceError": 1, + "Permission": 1, + "__builtin.PermissionError": 1, + "Decode": 1, + "__builtin.DecodeError": 1, + "Cpp": 1, + "__builtin.CppError": 1, + "Compilation": 1, + "__builtin.CompilationError": 1, + "MasterLoad": 1, + "__builtin.MasterLoadError": 1, + "ModuleLoad": 1, + "__builtin.ModuleLoadError": 1, + "//": 85, + "Returns": 2, + "an": 2, + "Error": 2, + "object": 5, + "for": 1, + "any": 1, + "argument": 2, + "it": 2, + "receives.": 1, + "If": 1, + "the": 4, + "already": 1, + "is": 2, + "or": 1, + "empty": 1, + "does": 1, + "nothing.": 1, + "mkerror": 1, + "(": 218, + "mixed": 8, + "error": 14, + ")": 218, + "{": 51, + "if": 35, + "UNDEFINED": 1, + "return": 41, + "objectp": 1, + "&&": 2, + "-": 50, + "is_generic_error": 1, + "arrayp": 2, + "Error.Generic": 3, + "@error": 1, + "stringp": 1, + "sprintf": 3, + "}": 51, + "A": 2, + "string": 20, + "wrapper": 1, + "that": 1, + "pretends": 1, + "to": 7, + "be": 3, + "a": 6, + "@": 36, + "[": 45, + "Stdio.File": 32, + "]": 45, + "in": 1, + "addition": 1, + "some": 1, + "features": 1, + "of": 3, + "Stdio.FILE": 4, + "object.": 2, + "This": 1, + "can": 2, + "used": 1, + "distinguish": 1, + "FakeFile": 3, + "from": 1, + "real": 1, + "is_fake_file": 1, + "protected": 12, + "data": 34, + "int": 31, + "ptr": 27, + "r": 10, + "w": 6, + "mtime": 4, + "function": 21, + "read_cb": 5, + "read_oob_cb": 5, + "write_cb": 5, + "write_oob_cb": 5, + "close_cb": 5, + "@seealso": 33, + "close": 2, + "void": 25, + "|": 14, + "direction": 5, + "lower_case": 2, + "||": 2, + "cr": 2, + "has_value": 4, + "cw": 2, + "@decl": 1, + "create": 3, + "type": 11, + "pointer": 1, + "_data": 3, + "_ptr": 2, + "time": 3, + "else": 5, + "make_type_str": 3, + "+": 19, + "dup": 2, + "this_program": 3, + "Always": 3, + "returns": 4, + "errno": 2, + "size": 3, + "and": 1, + "creation": 1, + "string.": 2, + "Stdio.Stat": 3, + "stat": 1, + "st": 6, + "sizeof": 21, + "ctime": 1, + "atime": 1, + "line_iterator": 2, + "String.SplitIterator": 3, + "trim": 2, + "id": 3, + "query_id": 2, + "set_id": 2, + "_id": 2, + "read_function": 2, + "nbytes": 2, + "lambda": 1, + "read": 3, + "peek": 2, + "float": 1, + "timeout": 1, + "query_address": 2, + "is_local": 1, + "len": 4, + "not_all": 1, + "<": 3, + "start": 1, + "zero_type": 1, + "start..ptr": 1, + "gets": 2, + "ret": 7, + "sscanf": 1, + "getchar": 2, + "c": 4, "catch": 1, - "exception": 1, - "e": 2, - "system.debug": 2, - "must": 1, - "use": 1, - "ALL": 1, - "since": 1, - "many": 1, - "line": 1, - "may": 1, - "also": 1, - "Map": 33, - "": 2, - "geo_response": 1, - "accountAddressString": 2, - "account": 2, - "acct": 1, - "form": 1, - "address": 1, + "unread": 2, + "s": 5, + "..ptr": 2, + "ptr..": 1, + "seek": 2, + "pos": 8, + "mult": 2, + "add": 2, + "pos*mult": 1, + "strlen": 2, + "sync": 2, + "tell": 2, + "truncate": 2, + "length": 2, + "..length": 1, + "write": 2, + "array": 1, + "str": 12, + "...": 2, + "extra": 2, + "str*": 1, + "@extra": 1, + "..": 1, + "set_blocking": 3, + "set_blocking_keep_callbacks": 3, + "set_nonblocking": 1, + "rcb": 2, + "wcb": 2, + "ccb": 2, + "rocb": 2, + "wocb": 2, + "set_nonblocking_keep_callbacks": 1, + "set_close_callback": 2, + "cb": 10, + "set_read_callback": 2, + "set_read_oob_callback": 2, + "set_write_callback": 2, + "set_write_oob_callback": 2, + "query_close_callback": 2, + "query_read_callback": 2, + "query_read_oob_callback": 2, + "query_write_callback": 2, + "query_write_oob_callback": 2, + "_sprintf": 1, + "t": 2, + "casted": 1, + "cast": 1, + "switch": 1, + "case": 2, + "this": 5, + "Sizeof": 1, + "on": 1, + "its": 1, + "contents.": 1, + "_sizeof": 1, + "@ignore": 1, + "#define": 1, + "NOPE": 20, + "X": 2, + "args": 1, + "#X": 1, + "assign": 1, + "async_connect": 1, + "connect": 1, + "connect_unix": 1, + "open": 1, + "open_socket": 1, + "pipe": 1, + "tcgetattr": 1, + "tcsetattr": 1, + "dup2": 1, + "lock": 1, + "We": 4, + "could": 4, + "implement": 4, + "mode": 1, + "proxy": 1, + "query_fd": 1, + "read_oob": 1, + "set_close_on_exec": 1, + "set_keepalive": 1, + "trylock": 1, + "write_oob": 1, + "@endignore": 1 + }, + "Bluespec": { + "package": 2, + "TbTL": 1, + ";": 156, + "import": 1, + "TL": 6, + "*": 1, + "interface": 2, + "Lamp": 3, + "method": 42, + "Bool": 32, + "changed": 2, + "Action": 17, + "show_offs": 2, + "show_ons": 2, + "reset": 2, + "endinterface": 2, + "module": 3, + "mkLamp#": 1, + "(": 158, + "String": 1, + "name": 3, + "lamp": 5, + ")": 163, + "Reg#": 15, + "prev": 5, + "<": 44, + "-": 29, + "mkReg": 15, + "False": 9, + "if": 9, + "&&": 3, + "write": 2, + "+": 7, + "endmethod": 8, + "endmodule": 3, + "mkTest": 1, + "let": 1, + "dut": 2, + "sysTL": 3, + "Bit#": 1, + "ctr": 8, + "carN": 4, + "carS": 2, + "carE": 2, + "carW": 2, + "lamps": 15, + "[": 17, + "]": 17, + "mkLamp": 12, + "dut.lampRedNS": 1, + "dut.lampAmberNS": 1, + "dut.lampGreenNS": 1, + "dut.lampRedE": 1, + "dut.lampAmberE": 1, + "dut.lampGreenE": 1, + "dut.lampRedW": 1, + "dut.lampAmberW": 1, + "dut.lampGreenW": 1, + "dut.lampRedPed": 1, + "dut.lampAmberPed": 1, + "dut.lampGreenPed": 1, + "rule": 10, + "start": 1, + "dumpvars": 1, + "endrule": 10, + "detect_cars": 1, + "dut.set_car_state_N": 1, + "dut.set_car_state_S": 1, + "dut.set_car_state_E": 1, + "dut.set_car_state_W": 1, + "go": 1, + "True": 6, + "<=>": 3, + "12_000": 1, + "ped_button_push": 4, + "stop": 1, + "display": 2, + "finish": 1, + "function": 10, + "do_offs": 2, + "l": 3, + "l.show_offs": 1, + "do_ons": 2, + "l.show_ons": 1, + "do_reset": 2, + "l.reset": 1, + "do_it": 4, + "f": 2, + "action": 3, + "for": 3, + "Integer": 3, + "i": 15, + "endaction": 3, + "endfunction": 7, + "any_changes": 2, + "b": 12, + "||": 7, + ".changed": 1, + "return": 9, + "show": 1, + "time": 1, + "endpackage": 2, + "set_car_state_N": 2, + "x": 8, + "set_car_state_S": 2, + "set_car_state_E": 2, + "set_car_state_W": 2, + "lampRedNS": 2, + "lampAmberNS": 2, + "lampGreenNS": 2, + "lampRedE": 2, + "lampAmberE": 2, + "lampGreenE": 2, + "lampRedW": 2, + "lampAmberW": 2, + "lampGreenW": 2, + "lampRedPed": 2, + "lampAmberPed": 2, + "lampGreenPed": 2, + "typedef": 3, + "enum": 1, + "{": 1, + "AllRed": 4, + "GreenNS": 9, + "AmberNS": 5, + "GreenE": 8, + "AmberE": 5, + "GreenW": 8, + "AmberW": 5, + "GreenPed": 4, + "AmberPed": 3, + "}": 1, + "TLstates": 11, + "deriving": 1, + "Eq": 1, + "Bits": 1, + "UInt#": 2, + "Time32": 9, + "CtrSize": 3, + "allRedDelay": 2, + "amberDelay": 2, + "nsGreenDelay": 2, + "ewGreenDelay": 3, + "pedGreenDelay": 1, + "pedAmberDelay": 1, + "clocks_per_sec": 2, + "state": 21, + "next_green": 8, + "secs": 7, + "ped_button_pushed": 4, + "car_present_N": 3, + "car_present_S": 3, + "car_present_E": 4, + "car_present_W": 4, + "car_present_NS": 3, + "cycle_ctr": 6, + "dec_cycle_ctr": 1, + "Rules": 5, + "low_priority_rule": 2, + "rules": 4, + "inc_sec": 1, + "endrules": 4, + "next_state": 8, + "ns": 4, + "0": 2, + "green_seq": 7, + "case": 2, + "endcase": 2, + "car_present": 4, + "make_from_green_rule": 5, + "green_state": 2, + "delay": 2, + "car_is_present": 2, + "from_green": 1, + "make_from_amber_rule": 5, + "amber_state": 2, + "ng": 2, + "from_amber": 1, + "hprs": 10, + "7": 1, + "1": 1, + "2": 1, + "3": 1, + "4": 1, + "5": 1, + "6": 1, + "fromAllRed": 2, + "else": 4, + "noAction": 1, + "high_priority_rules": 4, + "rJoin": 1, + "addRules": 1, + "preempts": 1 + }, + "GAS": { + ".cstring": 1, + "LC0": 2, + ".ascii": 2, + ".text": 1, + ".globl": 2, + "_main": 2, + "LFB3": 4, + "pushq": 1, + "%": 6, + "rbp": 2, + "LCFI0": 3, + "movq": 1, + "rsp": 1, + "LCFI1": 2, + "leaq": 1, + "(": 1, + "rip": 1, + ")": 1, + "rdi": 1, + "call": 1, + "_puts": 1, + "movl": 1, + "eax": 1, + "leave": 1, + "ret": 1, + "LFE3": 2, + ".section": 1, + "__TEXT": 1, + "__eh_frame": 1, + "coalesced": 1, + "no_toc": 1, + "+": 2, + "strip_static_syms": 1, + "live_support": 1, + "EH_frame1": 2, + ".set": 5, + "L": 10, + "set": 10, + "LECIE1": 2, + "-": 7, + "LSCIE1": 2, + ".long": 6, + ".byte": 20, + "xc": 1, + ".align": 2, + "_main.eh": 2, + "LSFDE1": 1, + "LEFDE1": 2, + "LASFDE1": 3, + ".quad": 2, + ".": 1, + "xe": 1, + "xd": 1, + ".subsections_via_symbols": 1 + }, + "JSONiq": { + "(": 14, + "Query": 2, + "for": 4, + "searching": 1, + "the": 1, + "database": 2, + "keywords": 1, + ")": 14, + "import": 5, + "module": 5, + "namespace": 5, + "index": 3, + ";": 9, + "catalog": 4, + "req": 6, + "variable": 4, + "phrase": 2, + "param": 4, + "-": 11, + "values": 4, + "[": 5, + "]": 5, + "limit": 2, + "integer": 1, + "result": 1, + "at": 1, + "idx": 2, + "in": 1, + "search": 1, + "where": 1, + "le": 1, + "let": 1, + "data": 4, + "get": 2, + "by": 2, + "id": 3, + "result.s": 1, + "result.p": 1, + "return": 1, + "{": 2, + "|": 2, + "score": 1, + "result.r": 1, + "}": 2, + "returning": 1, + "one": 1, + "entry": 1, + "part": 2, + "key": 1 + }, + "Lua": { + "local": 11, + "FileListParser": 5, + "pd.Class": 3, + "new": 3, + "(": 56, + ")": 56, + "register": 3, + "function": 16, + "initialize": 3, + "sel": 3, + "atoms": 3, + "-": 60, + "Base": 1, + "filename": 2, + "File": 2, + "extension": 2, + "Number": 4, + "of": 9, + "files": 1, + "in": 7, + "batch": 2, + "self.inlets": 3, + "To": 3, + "[": 17, + "list": 1, + "trim": 1, + "]": 17, + "binfile": 3, + "vidya": 1, + "file": 8, + "modder": 1, + "s": 5, + "mechanisms": 1, + "self.outlets": 3, + "self.extension": 3, + "the": 7, + "last": 1, + "self.batchlimit": 3, + "return": 3, + "true": 3, + "end": 26, + "in_1_symbol": 1, + "for": 9, + "i": 10, + "do": 8, + "self": 10, + "outlet": 10, + "{": 16, + "}": 16, + "..": 7, + "in_2_list": 1, + "d": 9, + "in_3_float": 1, + "f": 12, + "FileModder": 10, + "Object": 1, + "triggering": 1, + "bang": 3, + "Incoming": 1, + "single": 1, + "data": 2, + "bytes": 3, + "from": 3, + "Total": 1, + "route": 1, + "buflength": 1, + "Glitch": 3, + "type": 2, + "point": 2, + "times": 2, + "to": 8, + "glitch": 2, + "a": 5, + "Toggle": 1, + "randomized": 1, + "number": 3, + "glitches": 3, + "within": 2, + "bounds": 2, + "Active": 1, + "inlet": 2, + "get": 1, + "next": 1, + "byte": 2, + "clear": 2, + "buffer": 2, + "FLOAT": 1, + "write": 3, + "Currently": 1, + "active": 2, + "namedata": 1, + "self.filedata": 4, + "pattern": 1, + "random": 3, + "or": 2, + "splice": 1, + "self.glitchtype": 5, + "Minimum": 1, + "image": 1, + "self.glitchpoint": 6, + "repeat": 1, + "on": 1, + "given": 1, + "self.randrepeat": 5, + "Toggles": 1, + "whether": 1, + "repeating": 1, + "should": 1, + "be": 1, + "self.randtoggle": 3, + "Hold": 1, + "all": 1, + "which": 1, + "are": 1, + "converted": 1, + "ints": 1, + "range": 1, + "self.bytebuffer": 8, + "Buffer": 1, + "length": 1, + "currently": 1, + "self.buflength": 7, + "in_1_bang": 2, + "if": 2, + "then": 4, + "plen": 2, + "math.random": 8, + "patbuffer": 3, + "table.insert": 4, + "%": 1, + "#patbuffer": 1, + "+": 3, + "elseif": 2, + "randlimit": 4, + "else": 1, + "sloc": 3, + "schunksize": 2, + "splicebuffer": 3, + "table.remove": 1, + "insertpoint": 2, + "#self.bytebuffer": 1, + "_": 2, + "v": 4, + "ipairs": 2, + "outname": 3, + "pd.post": 1, + "in_2_float": 2, + "in_3_list": 1, + "Shift": 1, + "indexed": 2, + "in_4_list": 1, + "in_5_float": 1, + "in_6_float": 1, + "in_7_list": 1, + "in_8_list": 1, + "A": 1, + "simple": 1, + "counting": 1, "object": 1, - "adr": 9, - "acct.billingstreet": 1, - "acct.billingcity": 1, - "acct.billingstate": 1, - "acct.billingpostalcode": 2, - "acct.billingcountry": 2, - "adr.replaceAll": 4, - "testmethod": 1, - "t1": 1, - "pageRef": 3, - "Page.kmlPreviewTemplate": 1, - "Test.setCurrentPage": 1, - "system.assert": 1, - "GeoUtils.generateFromContent": 1, - "Account": 2, - "billingstreet": 1, - "billingcity": 1, - "billingstate": 1, - "billingpostalcode": 1, - "billingcountry": 1, - "insert": 1, - "system.assertEquals": 1, - "LanguageUtils": 1, - "final": 6, - "HTTP_LANGUAGE_CODE_PARAMETER_KEY": 2, - "DEFAULT_LANGUAGE_CODE": 3, - "Set": 6, - "SUPPORTED_LANGUAGE_CODES": 2, - "//Chinese": 2, - "Simplified": 1, - "Traditional": 1, - "//Dutch": 1, - "//English": 1, - "//Finnish": 1, - "//French": 1, - "//German": 1, - "//Italian": 1, - "//Japanese": 1, - "//Korean": 1, - "//Polish": 1, - "//Portuguese": 1, - "Brazilian": 1, - "//Russian": 1, - "//Spanish": 1, - "//Swedish": 1, - "//Thai": 1, - "//Czech": 1, - "//Danish": 1, - "//Hungarian": 1, - "//Indonesian": 1, - "//Turkish": 1, - "": 29, - "DEFAULTS": 1, - "getLangCodeByHttpParam": 4, - "LANGUAGE_CODE_SET": 1, - "getSuppLangCodeSet": 2, - "ApexPages.currentPage": 4, - ".getParameters": 2, - "LANGUAGE_HTTP_PARAMETER": 7, - "StringUtils.lowerCase": 3, - "StringUtils.replaceChars": 2, - "//underscore": 1, - "//dash": 1, - "DEFAULTS.containsKey": 3, - "DEFAULTS.get": 3, - "StringUtils.isNotBlank": 1, - "SUPPORTED_LANGUAGE_CODES.contains": 2, - "getLangCodeByBrowser": 4, - "LANGUAGES_FROM_BROWSER_AS_STRING": 2, - ".getHeaders": 1, - "LANGUAGES_FROM_BROWSER_AS_LIST": 3, - "splitAndFilterAcceptLanguageHeader": 2, - "LANGUAGES_FROM_BROWSER_AS_LIST.size": 1, - "languageFromBrowser": 6, - "getLangCodeByUser": 3, - "UserInfo.getLanguage": 1, - "getLangCodeByHttpParamOrIfNullThenBrowser": 1, - "StringUtils.defaultString": 4, - "getLangCodeByHttpParamOrIfNullThenUser": 1, - "getLangCodeByBrowserOrIfNullThenHttpParam": 1, - "getLangCodeByBrowserOrIfNullThenUser": 1, - "header": 2, - "tokens": 3, - "StringUtils.split": 1, - "token": 7, - "token.contains": 1, - "token.substring": 1, - "token.indexOf": 1, - "StringUtils.length": 1, - "StringUtils.substring": 1, - "langCodes": 2, - "langCode": 3, - "langCodes.add": 1, - "getLanguageName": 1, - "displayLanguageCode": 13, - "languageCode": 2, - "translatedLanguageNames.get": 2, - "filterLanguageCode": 4, - "getAllLanguages": 3, - "translatedLanguageNames.containsKey": 1, - "translatedLanguageNames": 1, - "TwilioAPI": 2, - "MissingTwilioConfigCustomSettingsException": 2, - "extends": 1, - "Exception": 1, - "TwilioRestClient": 5, - "client": 2, - "getDefaultClient": 2, - "TwilioConfig__c": 5, - "twilioCfg": 7, - "getTwilioConfig": 3, - "TwilioAPI.client": 2, - "twilioCfg.AccountSid__c": 3, - "twilioCfg.AuthToken__c": 3, - "TwilioAccount": 1, - "getDefaultAccount": 1, - ".getAccount": 2, - "TwilioCapability": 2, - "createCapability": 1, - "createClient": 1, - "accountSid": 2, - "authToken": 2, - "Test.isRunningTest": 1, - "dummy": 2, - "sid": 1, - "TwilioConfig__c.getOrgDefaults": 1, - "@isTest": 1, - "test_TwilioAPI": 1, - "System.assertEquals": 5, - "TwilioAPI.getTwilioConfig": 2, - ".AccountSid__c": 1, - ".AuthToken__c": 1, - "TwilioAPI.getDefaultClient": 2, - ".getAccountSid": 1, - ".getSid": 2, - "TwilioAPI.getDefaultAccount": 1 + "that": 1, + "increments": 1, + "an": 1, + "internal": 1, + "counter": 1, + "whenever": 1, + "it": 2, + "receives": 2, + "at": 2, + "its": 2, + "first": 1, + "changes": 1, + "whatever": 1, + "second": 1, + "inlet.": 1, + "HelloCounter": 4, + "self.num": 5 }, "AppleScript": { + "property": 7, + "lowFontSize": 9, + "highFontSize": 6, + "messageText": 4, + "repeat": 19, "set": 108, - "windowWidth": 3, + "userInput": 4, "to": 128, - "windowHeight": 3, - "delay": 3, - "AppleScript": 2, - "s": 3, + "display": 4, + "dialog": 4, + "&": 63, + "return": 16, + "(": 89, + "as": 27, + "string": 17, + ")": 88, + "default": 4, + "answer": 3, + "buttons": 3, + "{": 32, + "}": 32, + "button": 4, + "if": 50, + "the": 56, + "returned": 5, + "of": 72, + "is": 40, + "then": 28, + "minimumFontSize": 4, + "newFontSize": 6, "text": 13, - "item": 13, - "delimiters": 1, + "result": 2, + "integer": 3, + "greater": 5, + "than": 6, + "or": 6, + "equal": 3, + "else": 14, + "end": 67, + "-": 57, + "theText": 3, + "not": 5, + "exit": 1, + "fontList": 2, "tell": 40, "application": 16, + "activate": 3, + "crazyTextMessage": 2, + "make": 3, + "new": 2, + "outgoing": 2, + "message": 2, + "with": 11, + "properties": 2, + "content": 2, + "visible": 2, + "true": 8, + "eachCharacter": 4, + "in": 13, + "characters": 1, + "font": 2, + "some": 1, + "item": 13, + "size": 5, + "random": 4, + "number": 6, + "from": 9, + "color": 1, + "on": 18, + "isVoiceOverRunning": 3, + "isRunning": 3, + "false": 9, + "name": 8, + "processes": 2, + "contains": 1, + "isVoiceOverRunningWithAppleScript": 3, + "isRunningWithAppleScript": 3, + "AppleScript": 2, + "enabled": 2, + "VoiceOver": 1, + "try": 10, + "x": 1, + "bounds": 2, + "vo": 1, + "cursor": 1, + "error": 3, + "currentDate": 3, + "current": 3, + "date": 1, + "amPM": 4, + "currentHour": 9, + "s": 3, + "minutes": 2, + "and": 7, + "<": 2, + "below": 1, + "sound": 1, + "nice": 1, + "currentMinutes": 4, + "ensure": 1, + "nn": 2, + "gets": 1, + "AM": 1, + "readjust": 1, + "for": 5, + "hour": 1, + "time": 1, + "currentTime": 3, + "day": 1, + "output": 1, + "say": 1, + "delay": 3, + "windowWidth": 3, + "windowHeight": 3, + "delimiters": 1, "screen_width": 2, - "(": 89, "do": 4, "JavaScript": 2, - "in": 13, "document": 2, - ")": 88, "screen_height": 2, - "end": 67, "myFrontMost": 3, - "name": 8, - "of": 72, "first": 1, - "processes": 2, "whose": 1, "frontmost": 1, - "is": 40, - "true": 8, - "{": 32, "desktopTop": 2, "desktopLeft": 1, "desktopRight": 1, "desktopBottom": 1, - "}": 32, - "bounds": 2, "desktop": 1, - "try": 10, "process": 5, "w": 5, "h": 4, - "size": 5, "drawer": 2, "window": 5, - "on": 18, - "error": 3, "position": 1, - "-": 57, "/": 2, - "property": 7, "type_list": 6, "extension_list": 6, "html": 2, - "not": 5, "currently": 2, "handled": 2, "run": 4, "FinderSelection": 4, - "the": 56, "selection": 2, - "as": 27, "alias": 8, "list": 9, "FS": 10, @@ -2265,12 +15714,8 @@ "open": 8, "handler": 2, "SelectionCount": 6, - "number": 6, "count": 10, - "if": 50, - "then": 28, "userPicksFolder": 6, - "else": 14, "MyPath": 4, "path": 6, "me": 2, @@ -2284,25 +15729,17 @@ "these_items": 18, "choose": 2, "file": 6, - "with": 11, "prompt": 2, "type": 6, "thesefiles": 2, "item_info": 24, - "repeat": 19, "i": 10, - "from": 9, "this_item": 14, "info": 4, - "for": 5, "folder": 10, "processFolder": 8, - "false": 9, - "and": 7, - "or": 6, "extension": 4, "theFilePath": 8, - "string": 17, "thePOSIXFilePath": 8, "POSIX": 4, "processFile": 8, @@ -2310,24 +15747,16 @@ "theFolder": 6, "without": 2, "invisibles": 2, - "&": 63, "thePOSIXFileName": 6, "terminalCommand": 6, "convertCommand": 4, "newFileName": 4, "shell": 2, "script": 2, - "need": 1, - "pass": 1, - "URL": 1, - "Terminal": 1, "localMailboxes": 3, "every": 3, "mailbox": 2, - "greater": 5, - "than": 6, "messageCountDisplay": 5, - "return": 16, "my": 3, "getMessageCountsForMailboxes": 4, "everyAccount": 2, @@ -2335,15 +15764,7 @@ "eachAccount": 3, "accountMailboxes": 3, "outputMessage": 2, - "make": 3, - "new": 2, - "outgoing": 2, - "message": 2, - "properties": 2, - "content": 2, "subject": 1, - "visible": 2, - "font": 2, "theMailboxes": 2, "mailboxes": 1, "returns": 2, @@ -2357,102 +15778,8873 @@ "padString": 3, "theString": 4, "fieldLength": 5, - "integer": 3, "stringLength": 4, "length": 1, "paddedString": 5, "character": 2, "less": 1, - "equal": 3, "paddingLength": 2, "times": 1, "space": 1, - "lowFontSize": 9, - "highFontSize": 6, - "messageText": 4, - "userInput": 4, - "display": 4, - "dialog": 4, - "default": 4, - "answer": 3, - "buttons": 3, - "button": 4, - "returned": 5, - "minimumFontSize": 4, - "newFontSize": 6, - "result": 2, - "theText": 3, - "exit": 1, - "fontList": 2, - "activate": 3, - "crazyTextMessage": 2, - "eachCharacter": 4, - "characters": 1, - "some": 1, - "random": 4, - "color": 1, - "current": 3, + "need": 1, + "pass": 1, + "URL": 1, + "Terminal": 1, "pane": 4, "UI": 1, "elements": 1, - "enabled": 2, "tab": 1, "group": 1, "click": 1, "radio": 1, "get": 1, "value": 1, - "field": 1, - "isVoiceOverRunning": 3, - "isRunning": 3, - "contains": 1, - "isVoiceOverRunningWithAppleScript": 3, - "isRunningWithAppleScript": 3, - "VoiceOver": 1, - "x": 1, - "vo": 1, - "cursor": 1, - "currentDate": 3, - "date": 1, - "amPM": 4, - "currentHour": 9, - "minutes": 2, - "<": 2, - "below": 1, - "sound": 1, - "nice": 1, - "currentMinutes": 4, - "ensure": 1, - "nn": 2, - "gets": 1, - "AM": 1, - "readjust": 1, - "hour": 1, - "time": 1, - "currentTime": 3, - "day": 1, - "output": 1, - "say": 1 + "field": 1 }, - "Arduino": { - "void": 2, - "setup": 1, + "Python": { + "SHEBANG#!python": 4, + "import": 55, + "os": 2, + "sys": 3, + "def": 87, + "main": 4, + "(": 850, + ")": 861, + "#": 28, + "usage": 3, + "string": 1, + "command": 4, + "check": 4, + "if": 160, + "len": 11, + "sys.argv": 2, + "<": 2, + "sys.exit": 1, + "+": 51, + ".join": 4, + "[": 165, + "]": 165, + "printDelimiter": 4, + "print": 39, + "get": 1, + "a": 2, + "list": 1, + "of": 5, + "git": 1, + "directories": 1, + "in": 91, + "the": 6, + "specified": 1, + "parent": 5, + "gitDirectories": 2, + "getSubdirectories": 2, + "isGitDirectory": 2, + "for": 69, + "gitDirectory": 2, + "os.chdir": 1, + "os.getcwd": 1, + "os.system": 1, + "directory": 9, + "filter": 3, + "None": 92, + "os.path.abspath": 1, + "subdirectories": 3, + "os.walk": 1, + ".next": 1, + "is": 31, + "return": 68, + "i": 13, + "else": 33, + "os.path.isdir": 1, + "*": 38, + "__name__": 3, + "json": 1, + "c4d": 1, + "c4dtools": 1, + "itertools": 1, + "from": 36, + "c4d.modules": 1, + "graphview": 1, + "as": 14, + "gv": 1, + "c4dtools.misc": 1, + "graphnode": 1, + "res": 3, + "importer": 1, + "c4dtools.prepare": 1, + "__file__": 1, + "__res__": 1, + "settings": 2, + "c4dtools.helpers.Attributor": 2, + "{": 27, + "res.file": 3, + "}": 27, + "align_nodes": 2, + "nodes": 11, + "mode": 5, + "spacing": 7, + "r": 9, + "modes": 3, + "not": 69, + "raise": 23, + "ValueError": 6, + "get_0": 12, + "lambda": 6, + "x": 34, + "x.x": 1, + "get_1": 4, + "x.y": 1, + "set_0": 6, + "v": 19, + "setattr": 16, + "set_1": 4, + "graphnode.GraphNode": 1, + "n": 6, + "nodes.sort": 1, + "key": 6, + "n.position": 1, + "midpoint": 3, + "graphnode.find_nodes_mid": 1, + "first_position": 2, + ".position": 1, + "new_positions": 2, + "prev_offset": 6, + "node": 2, + "position": 12, + "node.position": 2, + "-": 36, + "size": 5, + "node.size": 1, + "new_positions.append": 1, + "bbox_size": 2, + "bbox_size_2": 2, + "itertools.izip": 1, + "align_nodes_shortcut": 3, + "master": 2, + "gv.GetMaster": 1, + "root": 3, + "master.GetRoot": 1, + "graphnode.find_selected_nodes": 1, + "master.AddUndo": 1, + "c4d.EventAdd": 1, + "True": 25, + "class": 19, + "XPAT_Options": 3, + "defaults": 1, + "__init__": 7, + "self": 113, + "filename": 12, + "super": 4, + ".__init__": 3, + "self.load": 1, + "load": 1, + "settings.options_filename": 2, + "os.path.isfile": 1, + "self.dict_": 2, + "self.defaults.copy": 2, + "with": 2, + "open": 2, + "fp": 4, + "self.dict_.update": 1, + "json.load": 1, + "self.save": 1, + "save": 2, + "values": 15, + "dict": 4, + "k": 7, + "self.dict_.iteritems": 1, + "self.defaults": 1, + "json.dump": 1, + "XPAT_OptionsDialog": 2, + "c4d.gui.GeDialog": 1, + "CreateLayout": 1, + "self.LoadDialogResource": 1, + "res.DLG_OPTIONS": 1, + "InitValues": 1, + "self.SetLong": 2, + "res.EDT_HSPACE": 2, + "options.hspace": 3, + "res.EDT_VSPACE": 2, + "options.vspace": 3, + "Command": 1, + "id": 2, + "msg": 1, + "res.BTN_SAVE": 1, + "self.GetLong": 2, + "options.save": 1, + "self.Close": 1, + "XPAT_Command_OpenOptionsDialog": 2, + "c4dtools.plugins.Command": 3, + "self._dialog": 4, + "@property": 2, + "dialog": 1, + "PLUGIN_ID": 3, + "PLUGIN_NAME": 3, + "res.string.XPAT_COMMAND_OPENOPTIONSDIALOG": 1, + "PLUGIN_HELP": 3, + "res.string.XPAT_COMMAND_OPENOPTIONSDIALOG_HELP": 1, + "Execute": 3, + "doc": 3, + "self.dialog.Open": 1, + "c4d.DLG_TYPE_MODAL": 1, + "XPAT_Command_AlignHorizontal": 1, + "res.string.XPAT_COMMAND_ALIGNHORIZONTAL": 1, + "PLUGIN_ICON": 2, + "res.string.XPAT_COMMAND_ALIGNHORIZONTAL_HELP": 1, + "XPAT_Command_AlignVertical": 1, + "res.string.XPAT_COMMAND_ALIGNVERTICAL": 1, + "res.string.XPAT_COMMAND_ALIGNVERTICAL_HELP": 1, + "options": 4, + "c4dtools.plugins.main": 1, + ".globals": 1, + "request": 1, + "http_method_funcs": 2, + "frozenset": 2, + "View": 2, + "object": 6, + "A": 1, + "which": 1, + "methods": 5, + "this": 2, + "pluggable": 1, + "view": 2, + "can": 1, + "handle.": 1, + "The": 1, + "canonical": 1, + "way": 1, + "to": 5, + "decorate": 2, + "based": 1, + "views": 1, + "value": 9, + "as_view": 1, + ".": 1, + "However": 1, + "since": 1, + "moves": 1, + "parts": 1, + "logic": 1, + "declaration": 1, + "place": 1, + "where": 1, + "it": 1, + "s": 1, + "also": 1, + "used": 1, + "instantiating": 1, + "view.view_class": 1, + "cls": 32, + "view.__name__": 1, + "name": 39, + "view.__doc__": 1, + "cls.__doc__": 3, + "view.__module__": 1, + "cls.__module__": 1, + "view.methods": 1, + "cls.methods": 1, + "MethodViewType": 2, + "type": 6, + "__new__": 2, + "bases": 6, + "d": 5, + "rv": 2, + "type.__new__": 1, + "set": 3, + "rv.methods": 2, + "or": 27, + "methods.add": 1, + "key.upper": 1, + "sorted": 1, + "MethodView": 1, + "__metaclass__": 3, + "dispatch_request": 1, + "*args": 4, + "**kwargs": 9, + "meth": 5, + "getattr": 30, + "request.method.lower": 1, + "and": 35, + "request.method": 2, + "assert": 7, + "%": 33, + "args": 8, + "__future__": 2, + "absolute_import": 1, + "division": 1, + "with_statement": 1, + "Cookie": 1, + "logging": 1, + "socket": 1, + "time": 1, + "tornado.escape": 1, + "utf8": 2, + "native_str": 4, + "parse_qs_bytes": 3, + "tornado": 3, + "httputil": 1, + "iostream": 1, + "tornado.netutil": 1, + "TCPServer": 2, + "stack_context": 1, + "tornado.util": 1, + "b": 11, + "bytes_type": 2, + "try": 17, + "ssl": 2, + "Python": 1, + "except": 17, + "ImportError": 1, + "HTTPServer": 1, + "request_callback": 4, + "no_keep_alive": 4, + "False": 28, + "io_loop": 3, + "xheaders": 4, + "ssl_options": 3, + "self.request_callback": 5, + "self.no_keep_alive": 4, + "self.xheaders": 3, + "TCPServer.__init__": 1, + "handle_stream": 1, + "stream": 4, + "address": 4, + "HTTPConnection": 2, + "_BadRequestException": 5, + "Exception": 2, + "pass": 4, + "self.stream": 1, + "self.address": 3, + "self._request": 7, + "self._request_finished": 4, + "self._header_callback": 3, + "stack_context.wrap": 2, + "self._on_headers": 1, + "self.stream.read_until": 2, + "self._write_callback": 5, + "write": 2, + "chunk": 5, + "callback": 7, + "self.stream.closed": 1, + "self.stream.write": 2, + "self._on_write_complete": 1, + "finish": 2, + "self.stream.writing": 2, + "self._finish_request": 2, + "_on_write_complete": 1, + "_finish_request": 1, + "disconnect": 5, + "connection_header": 5, + "self._request.headers.get": 2, + "connection_header.lower": 1, + "self._request.supports_http_1_1": 1, + "elif": 4, + "self._request.headers": 1, + "self._request.method": 2, + "self.stream.close": 2, + "_on_headers": 1, + "data": 22, + "data.decode": 1, + "eol": 3, + "data.find": 1, + "start_line": 1, + "method": 5, + "uri": 5, + "version": 6, + "start_line.split": 1, + "version.startswith": 1, + "headers": 5, + "httputil.HTTPHeaders.parse": 1, + "self.stream.socket": 1, + "socket.AF_INET": 2, + "socket.AF_INET6": 1, + "remote_ip": 8, + "HTTPRequest": 2, + "connection": 5, + "content_length": 6, + "headers.get": 2, + "int": 1, + "self.stream.max_buffer_size": 1, + "self.stream.read_bytes": 1, + "self._on_request_body": 1, + "e": 13, + "logging.info": 1, + "_on_request_body": 1, + "self._request.body": 2, + "content_type": 1, + "content_type.startswith": 2, + "arguments": 2, + "arguments.iteritems": 2, + "self._request.arguments.setdefault": 1, + ".extend": 2, + "fields": 12, + "content_type.split": 1, + "field": 32, + "sep": 2, + "field.strip": 1, + ".partition": 1, + "httputil.parse_multipart_form_data": 1, + "self._request.arguments": 1, + "self._request.files": 1, + "break": 2, + "logging.warning": 1, + "body": 2, + "protocol": 4, + "host": 2, + "files": 2, + "self.method": 1, + "self.uri": 2, + "self.version": 2, + "self.headers": 4, + "httputil.HTTPHeaders": 1, + "self.body": 1, + "connection.xheaders": 1, + "self.remote_ip": 4, + "self.headers.get": 5, + "self._valid_ip": 1, + "self.protocol": 7, + "isinstance": 11, + "connection.stream": 1, + "iostream.SSLIOStream": 1, + "self.host": 2, + "self.files": 1, + "self.connection": 1, + "self._start_time": 3, + "time.time": 3, + "self._finish_time": 4, + "self.path": 1, + "self.query": 2, + "uri.partition": 1, + "self.arguments": 2, + "supports_http_1_1": 1, + "cookies": 1, + "hasattr": 11, + "self._cookies": 3, + "Cookie.SimpleCookie": 1, + "self._cookies.load": 1, + "self.connection.write": 1, + "self.connection.finish": 1, + "full_url": 1, + "request_time": 1, + "get_ssl_certificate": 1, + "self.connection.stream.socket.getpeercert": 1, + "ssl.SSLError": 1, + "__repr__": 2, + "attrs": 7, + "self.__class__.__name__": 3, + "_valid_ip": 1, + "ip": 2, + "socket.getaddrinfo": 1, + "socket.AF_UNSPEC": 1, + "socket.SOCK_STREAM": 1, + "socket.AI_NUMERICHOST": 1, + "bool": 2, + "socket.gaierror": 1, + "e.args": 1, + "socket.EAI_NONAME": 1, + "setup": 2, + "P3D": 1, + "fill": 2, + "draw": 2, + "lights": 1, + "background": 2, + "camera": 1, + "mouseY": 1, + "eyeX": 1, + "eyeY": 1, + "eyeZ": 1, + "centerX": 1, + "centerY": 1, + "centerZ": 1, + "upX": 1, + "upY": 1, + "upZ": 1, + "noStroke": 2, + "box": 1, + "stroke": 1, + "line": 3, + "argparse": 1, + "matplotlib.pyplot": 1, + "pl": 1, + "numpy": 1, + "np": 1, + "scipy.optimize": 1, + "op": 6, + "prettytable": 1, + "PrettyTable": 6, + "__docformat__": 1, + "S": 4, + "phif": 7, + "U": 10, + "/": 26, + "_parse_args": 2, + "V": 12, + "np.genfromtxt": 8, + "delimiter": 8, + "t": 8, + "U_err": 7, + "offset": 13, + "np.mean": 1, + "np.linspace": 9, + "min": 10, + "max": 11, + "y": 10, + "np.ones": 11, + "x.size": 2, + "pl.plot": 9, + "**6": 6, + "label": 18, + ".format": 11, + "pl.errorbar": 8, + "yerr": 8, + "linestyle": 8, + "marker": 4, + "pl.grid": 5, + "pl.legend": 5, + "loc": 5, + "pl.title": 5, + "u": 9, + "pl.xlabel": 5, + "ur": 11, + "pl.ylabel": 5, + "pl.savefig": 5, + "pl.clf": 5, + "glanz": 13, + "matt": 13, + "schwarz": 13, + "weiss": 13, + "T0": 1, + "T0_err": 2, + "glanz_phi": 4, + "matt_phi": 4, + "schwarz_phi": 4, + "weiss_phi": 4, + "T_err": 7, + "sigma": 4, + "boltzmann": 12, + "T": 6, + "epsilon": 7, + "T**4": 1, + "glanz_popt": 3, + "glanz_pconv": 1, + "op.curve_fit": 6, + "matt_popt": 3, + "matt_pconv": 1, + "schwarz_popt": 3, + "schwarz_pconv": 1, + "weiss_popt": 3, + "weiss_pconv": 1, + "glanz_x": 3, + "glanz_y": 2, + "*glanz_popt": 1, + "color": 8, + "matt_x": 3, + "matt_y": 2, + "*matt_popt": 1, + "schwarz_x": 3, + "schwarz_y": 2, + "*schwarz_popt": 1, + "weiss_x": 3, + "weiss_y": 2, + "*weiss_popt": 1, + "np.sqrt": 17, + "glanz_pconv.diagonal": 2, + "matt_pconv.diagonal": 2, + "schwarz_pconv.diagonal": 2, + "weiss_pconv.diagonal": 2, + "xerr": 6, + "U_err/S": 4, + "header": 5, + "glanz_table": 2, + "row": 10, + "zip": 8, + ".size": 4, + "*T_err": 4, + "glanz_phi.size": 1, + "*U_err/S": 4, + "glanz_table.add_row": 1, + "matt_table": 2, + "matt_phi.size": 1, + "matt_table.add_row": 1, + "schwarz_table": 2, + "schwarz_phi.size": 1, + "schwarz_table.add_row": 1, + "weiss_table": 2, + "weiss_phi.size": 1, + "weiss_table.add_row": 1, + "T0**4": 1, + "prop": 5, + "phi": 5, + "c": 3, + "a*x": 1, + "dx": 8, + "d**": 2, + "dy": 4, + "dx_err": 3, + "np.abs": 1, + "dy_err": 2, + "popt": 5, + "pconv": 2, + "*popt": 2, + "pconv.diagonal": 3, + "table": 2, + "table.align": 1, + "dy.size": 1, + "*dy_err": 1, + "table.add_row": 1, + "U1": 3, + "I1": 3, + "U2": 2, + "I_err": 2, + "p": 1, + "R": 1, + "R_err": 2, + "/I1": 1, + "**2": 2, + "U1/I1**2": 1, + "phi_err": 3, + "alpha": 2, + "beta": 1, + "R0": 6, + "R0_err": 2, + "alpha*R0": 2, + "*np.sqrt": 6, + "*beta*R": 5, + "alpha**2*R0": 5, + "*beta*R0": 7, + "*beta*R0*T0": 2, + "epsilon_err": 2, + "f1": 1, + "f2": 1, + "f3": 1, + "alpha**2": 1, + "*beta": 1, + "*beta*T0": 1, + "*beta*R0**2": 1, + "f1**2": 1, + "f2**2": 1, + "f3**2": 1, + "parser": 1, + "argparse.ArgumentParser": 1, + "description": 1, + "#parser.add_argument": 3, + "metavar": 1, + "str": 2, + "nargs": 1, + "help": 2, + "dest": 1, + "default": 1, + "action": 1, + "parser.parse_args": 1, + "google.protobuf": 4, + "descriptor": 1, + "_descriptor": 1, + "message": 1, + "_message": 1, + "reflection": 1, + "_reflection": 1, + "descriptor_pb2": 1, + "DESCRIPTOR": 3, + "_descriptor.FileDescriptor": 1, + "package": 1, + "serialized_pb": 1, + "_PERSON": 3, + "_descriptor.Descriptor": 1, + "full_name": 2, + "file": 1, + "containing_type": 2, + "_descriptor.FieldDescriptor": 1, + "index": 1, + "number": 1, + "cpp_type": 1, + "has_default_value": 1, + "default_value": 1, + "unicode": 8, + "message_type": 1, + "enum_type": 1, + "is_extension": 1, + "extension_scope": 1, + "extensions": 1, + "nested_types": 1, + "enum_types": 1, + "is_extendable": 1, + "extension_ranges": 1, + "serialized_start": 1, + "serialized_end": 1, + "DESCRIPTOR.message_types_by_name": 1, + "Person": 1, + "_message.Message": 1, + "_reflection.GeneratedProtocolMessageType": 1, + "xspacing": 4, + "How": 2, + "far": 1, + "apart": 1, + "should": 1, + "each": 1, + "horizontal": 1, + "location": 1, + "be": 1, + "spaced": 1, + "maxwaves": 3, + "total": 1, + "waves": 1, + "add": 1, + "together": 1, + "theta": 3, + "amplitude": 3, + "Height": 1, + "wave": 2, + "yvalues": 7, + "frameRate": 1, + "colorMode": 1, + "RGB": 1, + "w": 2, + "width": 1, + "range": 5, + "amplitude.append": 1, + "random": 2, + "period": 2, + "many": 1, + "pixels": 1, + "before": 1, + "repeats": 1, + "dx.append": 1, + "TWO_PI": 1, + "_": 6, + "yvalues.append": 1, + "calcWave": 2, + "renderWave": 2, + "j": 7, + "sin": 1, + "cos": 1, + "ellipseMode": 1, + "CENTER": 1, + "enumerate": 2, + "ellipse": 1, + "height": 1, + "unicode_literals": 1, + "copy": 1, + "functools": 1, + "update_wrapper": 2, + "future_builtins": 1, + "django.db.models.manager": 1, + "Imported": 1, + "register": 1, + "signal": 1, + "handler.": 1, + "django.conf": 1, + "django.core.exceptions": 1, + "ObjectDoesNotExist": 2, + "MultipleObjectsReturned": 2, + "FieldError": 4, + "ValidationError": 8, + "NON_FIELD_ERRORS": 3, + "django.core": 1, + "validators": 1, + "django.db.models.fields": 1, + "AutoField": 2, + "FieldDoesNotExist": 2, + "django.db.models.fields.related": 1, + "ManyToOneRel": 3, + "OneToOneField": 3, + "add_lazy_relation": 2, + "django.db": 1, + "router": 1, + "transaction": 1, + "DatabaseError": 3, + "DEFAULT_DB_ALIAS": 2, + "django.db.models.query": 1, + "Q": 3, + "django.db.models.query_utils": 2, + "DeferredAttribute": 3, + "django.db.models.deletion": 1, + "Collector": 2, + "django.db.models.options": 1, + "Options": 2, + "django.db.models": 1, + "signals": 1, + "django.db.models.loading": 1, + "register_models": 2, + "get_model": 3, + "django.utils.translation": 1, + "ugettext_lazy": 1, + "django.utils.functional": 1, + "curry": 6, + "django.utils.encoding": 1, + "smart_str": 3, + "force_unicode": 3, + "django.utils.text": 1, + "get_text_list": 2, + "capfirst": 6, + "ModelBase": 4, + "super_new": 3, + ".__new__": 1, + "parents": 8, + "module": 6, + "attrs.pop": 2, + "new_class": 9, + "attr_meta": 5, + "abstract": 3, + "meta": 12, + "base_meta": 2, + "model_module": 1, + "sys.modules": 1, + "new_class.__module__": 1, + "kwargs": 9, + "model_module.__name__.split": 1, + "new_class.add_to_class": 7, + "subclass_exception": 3, + "tuple": 3, + "x.DoesNotExist": 1, + "x._meta.abstract": 2, + "x.MultipleObjectsReturned": 1, + "base_meta.abstract": 1, + "new_class._meta.ordering": 1, + "base_meta.ordering": 1, + "new_class._meta.get_latest_by": 1, + "base_meta.get_latest_by": 1, + "is_proxy": 5, + "new_class._meta.proxy": 1, + "new_class._default_manager": 2, + "new_class._base_manager": 2, + "new_class._default_manager._copy_to_model": 1, + "new_class._base_manager._copy_to_model": 1, + "m": 3, + "new_class._meta.app_label": 3, + "seed_cache": 2, + "only_installed": 2, + "obj_name": 2, + "obj": 4, + "attrs.items": 1, + "new_fields": 2, + "new_class._meta.local_fields": 3, + "new_class._meta.local_many_to_many": 2, + "new_class._meta.virtual_fields": 1, + "field_names": 5, + "f.name": 5, + "f": 19, + "base": 13, + "parent._meta.abstract": 1, + "parent._meta.fields": 1, + "TypeError": 4, + "continue": 10, + "new_class._meta.setup_proxy": 1, + "new_class._meta.concrete_model": 2, + "base._meta.concrete_model": 2, + "o2o_map": 3, + "f.rel.to": 1, + "original_base": 1, + "parent_fields": 3, + "base._meta.local_fields": 1, + "base._meta.local_many_to_many": 1, + "field.name": 14, + "base.__name__": 2, + "base._meta.abstract": 2, + "attr_name": 3, + "base._meta.module_name": 1, + "auto_created": 1, + "parent_link": 1, + "new_class._meta.parents": 1, + "copy.deepcopy": 2, + "new_class._meta.parents.update": 1, + "base._meta.parents": 1, + "new_class.copy_managers": 2, + "base._meta.abstract_managers": 1, + "original_base._meta.concrete_managers": 1, + "base._meta.virtual_fields": 1, + "attr_meta.abstract": 1, + "new_class.Meta": 1, + "new_class._prepare": 1, + "copy_managers": 1, + "base_managers": 2, + "base_managers.sort": 1, + "mgr_name": 3, + "manager": 3, + "val": 14, + "new_manager": 2, + "manager._copy_to_model": 1, + "cls.add_to_class": 1, + "add_to_class": 1, + "value.contribute_to_class": 1, + "_prepare": 1, + "opts": 5, + "cls._meta": 3, + "opts._prepare": 1, + "opts.order_with_respect_to": 2, + "cls.get_next_in_order": 1, + "cls._get_next_or_previous_in_order": 2, + "is_next": 9, + "cls.get_previous_in_order": 1, + "make_foreign_order_accessors": 2, + "model": 8, + "field.rel.to": 2, + "cls.__name__.lower": 2, + "method_get_order": 2, + "method_set_order": 2, + "opts.order_with_respect_to.rel.to": 1, + "cls.__name__": 1, + "f.attname": 5, + "opts.fields": 1, + "cls.get_absolute_url": 3, + "get_absolute_url": 2, + "signals.class_prepared.send": 1, + "sender": 5, + "ModelState": 2, + "db": 2, + "self.db": 1, + "self.adding": 1, + "Model": 2, + "_deferred": 1, + "signals.pre_init.send": 1, + "self.__class__": 10, + "self._state": 1, + "args_len": 2, + "self._meta.fields": 5, + "IndexError": 2, + "fields_iter": 4, + "iter": 1, + "field.attname": 17, + "kwargs.pop": 6, + "field.rel": 2, + "is_related_object": 3, + "self.__class__.__dict__.get": 2, + "rel_obj": 3, + "KeyError": 3, + "field.get_default": 3, + "field.null": 1, + "kwargs.keys": 2, + "property": 2, + "AttributeError": 1, + "signals.post_init.send": 1, + "instance": 5, + "UnicodeEncodeError": 1, + "UnicodeDecodeError": 1, + "__str__": 1, + ".encode": 1, + "__eq__": 1, + "other": 4, + "self._get_pk_val": 6, + "other._get_pk_val": 1, + "__ne__": 1, + "self.__eq__": 1, + "__hash__": 1, + "hash": 1, + "__reduce__": 1, + "self.__dict__": 1, + "defers": 2, + "self._deferred": 1, + "deferred_class_factory": 2, + "factory": 5, + "defers.append": 1, + "self._meta.proxy_for_model": 1, + "simple_class_factory": 2, + "model_unpickle": 2, + "_get_pk_val": 2, + "self._meta": 2, + "meta.pk.attname": 2, + "_set_pk_val": 2, + "self._meta.pk.attname": 2, + "pk": 5, + "serializable_value": 1, + "field_name": 8, + "self._meta.get_field_by_name": 1, + "force_insert": 7, + "force_update": 10, + "using": 30, + "update_fields": 23, + "field.primary_key": 1, + "non_model_fields": 2, + "update_fields.difference": 1, + "self.save_base": 2, + "save.alters_data": 1, + "save_base": 1, + "raw": 9, + "origin": 7, + "router.db_for_write": 2, + "meta.proxy": 5, + "meta.auto_created": 2, + "signals.pre_save.send": 1, + "org": 3, + "meta.parents.items": 1, + "parent._meta.pk.attname": 2, + "parent._meta": 1, + "non_pks": 5, + "meta.local_fields": 2, + "f.primary_key": 2, + "pk_val": 4, + "pk_set": 5, + "record_exists": 5, + "cls._base_manager": 1, + "manager.using": 3, + ".filter": 7, + ".exists": 1, + "f.pre_save": 1, + "rows": 3, + "._update": 1, + "meta.order_with_respect_to": 2, + "order_value": 2, + ".count": 1, + "self._order": 1, + "update_pk": 3, + "meta.has_auto_field": 1, + "result": 2, + "manager._insert": 1, + "return_id": 1, + "transaction.commit_unless_managed": 2, + "self._state.db": 2, + "self._state.adding": 4, + "signals.post_save.send": 1, + "created": 1, + "save_base.alters_data": 1, + "delete": 1, + "self._meta.object_name": 1, + "collector": 1, + "collector.collect": 1, + "collector.delete": 1, + "delete.alters_data": 1, + "_get_FIELD_display": 1, + "field.flatchoices": 1, + ".get": 2, + "strings_only": 1, + "_get_next_or_previous_by_FIELD": 1, + "self.pk": 6, + "order": 5, + "param": 3, + "q": 4, + "|": 1, + "qs": 6, + "self.__class__._default_manager.using": 1, + "*kwargs": 1, + ".order_by": 2, + "self.DoesNotExist": 1, + "self.__class__._meta.object_name": 1, + "_get_next_or_previous_in_order": 1, + "cachename": 4, + "order_field": 1, + "self._meta.order_with_respect_to": 1, + "self._default_manager.filter": 1, + "order_field.name": 1, + "order_field.attname": 1, + "self._default_manager.values": 1, + "self._meta.pk.name": 1, + "prepare_database_save": 1, + "unused": 1, + "clean": 1, + "validate_unique": 1, + "exclude": 23, + "unique_checks": 6, + "date_checks": 6, + "self._get_unique_checks": 1, + "errors": 20, + "self._perform_unique_checks": 1, + "date_errors": 1, + "self._perform_date_checks": 1, + "date_errors.items": 1, + "errors.setdefault": 3, + "_get_unique_checks": 1, + "unique_togethers": 2, + "self._meta.unique_together": 1, + "parent_class": 4, + "self._meta.parents.keys": 2, + "parent_class._meta.unique_together": 2, + "unique_togethers.append": 1, + "model_class": 11, + "unique_together": 2, + "unique_checks.append": 2, + "fields_with_class": 2, + "self._meta.local_fields": 1, + "fields_with_class.append": 1, + "parent_class._meta.local_fields": 1, + "f.unique": 1, + "f.unique_for_date": 3, + "date_checks.append": 3, + "f.unique_for_year": 3, + "f.unique_for_month": 3, + "_perform_unique_checks": 1, + "unique_check": 10, + "lookup_kwargs": 8, + "self._meta.get_field": 1, + "lookup_value": 3, + "lookup_kwargs.keys": 1, + "model_class._default_manager.filter": 2, + "*lookup_kwargs": 2, + "model_class_pk": 3, + "model_class._meta": 2, + "qs.exclude": 2, + "qs.exists": 2, + ".append": 2, + "self.unique_error_message": 1, + "_perform_date_checks": 1, + "lookup_type": 7, + "unique_for": 9, + "date": 3, + "date.day": 1, + "date.month": 1, + "date.year": 1, + "self.date_error_message": 1, + "date_error_message": 1, + "opts.get_field": 4, + ".verbose_name": 3, + "unique_error_message": 1, + "model_name": 3, + "opts.verbose_name": 1, + "field_label": 2, + "field.verbose_name": 1, + "field.error_messages": 1, + "field_labels": 4, + "map": 1, + "full_clean": 1, + "self.clean_fields": 1, + "e.update_error_dict": 3, + "self.clean": 1, + "errors.keys": 1, + "exclude.append": 1, + "self.validate_unique": 1, + "clean_fields": 1, + "raw_value": 3, + "f.blank": 1, + "validators.EMPTY_VALUES": 1, + "f.clean": 1, + "e.messages": 1, + "############################################": 2, + "ordered_obj": 2, + "id_list": 2, + "rel_val": 4, + "ordered_obj._meta.order_with_respect_to.rel.field_name": 2, + "order_name": 4, + "ordered_obj._meta.order_with_respect_to.name": 2, + "ordered_obj.objects.filter": 2, + ".update": 1, + "_order": 1, + "pk_name": 3, + "ordered_obj._meta.pk.name": 1, + ".values": 1, + "##############################################": 2, + "func": 2, + "settings.ABSOLUTE_URL_OVERRIDES.get": 1, + "opts.app_label": 1, + "opts.module_name": 1, + "########": 2, + "Empty": 1, + "cls.__new__": 1, + "model_unpickle.__safe_for_unpickle__": 1 + }, + "SQL": { + "use": 1, + "translog": 1, + ";": 31, + "DROP": 3, + "VIEW": 1, + "IF": 13, + "EXISTS": 12, + "suspendedtoday": 2, + "create": 2, + "view": 1, + "as": 1, + "select": 10, + "*": 3, + "from": 2, + "suspended": 1, + "where": 2, + "datediff": 1, + "(": 131, + "datetime": 10, + "now": 1, + ")": 131, + "table": 17, + "FILIAL": 10, + "id": 22, + "NUMBER": 1, + "not": 5, + "null": 4, + "title_ua": 1, + "VARCHAR2": 4, + "title_ru": 1, + "title_eng": 1, + "remove_date": 1, + "DATE": 2, + "modify_date": 1, + "modify_user": 1, + "alter": 1, + "add": 1, + "constraint": 1, + "PK_ID": 1, + "primary": 1, + "key": 1, + "ID": 2, + "grant": 8, + "on": 8, + "to": 8, + "ATOLL": 1, + "CRAMER2GIS": 1, + "DMS": 1, + "HPSM2GIS": 1, + "PLANMONITOR": 1, + "SIEBEL": 1, + "VBIS": 1, + "VPORTAL": 1, + "SHOW": 2, + "WARNINGS": 2, + "-": 496, + "Table": 9, + "structure": 9, + "for": 15, + "articles": 4, + "CREATE": 10, + "TABLE": 10, + "NOT": 46, + "int": 28, + "NULL": 91, + "AUTO_INCREMENT": 9, + "title": 4, + "varchar": 22, + "DEFAULT": 22, + "content": 2, + "longtext": 1, + "date_posted": 4, + "created_by": 2, + "last_modified": 2, + "last_modified_by": 2, + "ordering": 2, + "is_published": 2, + "PRIMARY": 9, + "KEY": 13, + "Dumping": 6, + "data": 6, + "INSERT": 6, + "INTO": 6, + "VALUES": 6, + "challenges": 4, + "pkg_name": 2, + "description": 2, + "text": 1, + "author": 2, + "category": 2, + "visibility": 2, + "publish": 2, + "abstract": 2, + "level": 2, + "duration": 2, + "goal": 2, + "solution": 2, + "availability": 2, + "default_points": 2, + "default_duration": 2, + "challenge_attempts": 2, + "user_id": 8, + "challenge_id": 7, + "time": 1, + "status": 1, + "challenge_attempt_count": 2, + "tries": 1, + "UNIQUE": 4, + "classes": 4, + "name": 3, + "date_created": 6, + "archive": 2, + "class_challenges": 4, + "class_id": 5, + "class_memberships": 4, + "users": 4, + "username": 3, + "full_name": 2, + "email": 2, + "password": 2, + "joined": 2, + "last_visit": 2, + "is_activated": 2, + "type": 3, + "token": 3, + "user_has_challenge_token": 3, + "SELECT": 4, + "FROM": 1, + "DBO.SYSOBJECTS": 1, + "WHERE": 1, + "OBJECT_ID": 1, + "N": 7, + "AND": 1, + "OBJECTPROPERTY": 1, + "PROCEDURE": 1, + "dbo.AvailableInSearchSel": 2, + "GO": 4, + "Procedure": 1, + "AvailableInSearchSel": 1, + "AS": 1, + "UNION": 2, + "ALL": 2, + "DB_NAME": 1, + "BEGIN": 1, + "GRANT": 1, + "EXECUTE": 1, + "ON": 1, + "TO": 1, + "[": 1, + "rv": 1, + "]": 1, + "END": 1, + "if": 1, + "exists": 1, + "sysobjects": 1, + "and": 1, + "in": 1, + "exec": 1, + "%": 2, + "object_ddl": 1, + "go": 1 + }, + "Markdown": { + "Tender": 1 + }, + "PowerShell": { + "Write": 2, + "-": 2, + "Host": 2, + "function": 1, + "hello": 1, + "(": 1, + ")": 1, + "{": 1, + "}": 1 + }, + "RobotFramework": { + "***": 16, + "Settings": 3, + "Documentation": 3, + "Example": 3, + "test": 6, + "cases": 2, + "using": 4, + "the": 9, + "keyword": 5, + "-": 16, + "driven": 4, + "testing": 2, + "approach.": 2, + "...": 28, + "All": 1, + "tests": 5, + "contain": 1, + "a": 4, + "workflow": 3, + "constructed": 1, + "from": 1, + "keywords": 3, + "in": 5, + "CalculatorLibrary": 5, + ".": 4, + "Creating": 1, + "new": 1, + "or": 1, + "editing": 1, + "existing": 1, + "is": 6, + "easy": 1, + "even": 1, + "for": 2, + "people": 2, + "without": 1, + "programming": 1, + "skills.": 1, + "This": 3, + "kind": 2, + "of": 3, + "style": 3, + "works": 3, + "well": 3, + "normal": 1, + "automation.": 1, + "If": 1, + "also": 2, + "business": 2, + "need": 3, + "to": 5, + "understand": 1, + "_gherkin_": 2, + "may": 1, + "work": 1, + "better.": 1, + "Library": 3, + "Test": 4, + "Cases": 3, + "Push": 16, + "button": 13, + "Result": 8, + "should": 9, + "be": 9, + "multiple": 2, + "buttons": 4, + "Simple": 1, + "calculation": 2, + "+": 6, + "Longer": 1, + "*": 4, + "/": 5, + "Clear": 1, + "C": 4, + "{": 15, + "EMPTY": 3, + "}": 15, + "#": 2, + "built": 1, + "variable": 1, + "data": 2, + "Tests": 1, + "use": 2, + "Calculate": 3, + "created": 1, + "this": 1, + "file": 1, + "that": 5, + "turn": 1, + "uses": 1, + "An": 1, + "exception": 1, + "last": 1, + "has": 5, + "custom": 1, + "_template": 1, + "keyword_.": 1, + "The": 2, + "when": 2, + "you": 1, + "repeat": 1, + "same": 1, + "times.": 1, + "Notice": 1, + "one": 1, + "these": 1, + "fails": 1, + "on": 1, + "purpose": 1, + "show": 1, + "how": 1, + "failures": 1, + "look": 1, + "like.": 1, + "Template": 2, + "Expression": 1, + "Expected": 1, + "Addition": 2, + "Subtraction": 1, + "Multiplication": 1, + "Division": 2, + "Failing": 1, + "Calculation": 3, + "error": 4, + "[": 4, + "]": 4, + "fail": 2, + "kekkonen": 1, + "Invalid": 2, + "expression.": 1, + "by": 3, + "zero.": 1, + "Keywords": 2, + "Arguments": 2, + "expression": 5, + "expected": 4, + "Should": 2, + "cause": 1, + "equal": 1, + "Using": 1, + "BuiltIn": 1, + "case": 1, + "gherkin": 1, + "syntax.": 1, + "similar": 1, + "examples.": 1, + "difference": 1, + "higher": 1, + "abstraction": 1, + "level": 1, + "and": 2, + "their": 1, + "arguments": 1, + "are": 1, + "embedded": 1, + "into": 1, + "names.": 1, + "syntax": 1, + "been": 3, + "made": 1, + "popular": 1, + "http": 1, + "//cukes.info": 1, + "|": 1, + "Cucumber": 1, + "It": 1, + "especially": 1, + "act": 1, + "as": 1, + "examples": 1, + "easily": 1, + "understood": 1, + "people.": 1, + "Given": 1, + "calculator": 1, + "cleared": 2, + "When": 1, + "user": 2, + "types": 2, + "pushes": 2, + "equals": 2, + "Then": 1, + "result": 2, + "Calculator": 1, + "User": 2 + }, + "HTML": { + "": 2, + "HTML": 2, + "PUBLIC": 2, + "W3C": 2, + "DTD": 3, + "4": 1, + "0": 2, + "Frameset": 1, + "EN": 2, + "http": 3, + "www": 2, + "w3": 2, + "org": 2, + "TR": 2, + "REC": 1, + "html40": 1, + "frameset": 1, + "dtd": 2, + "": 2, + "": 2, + "Common_meta": 1, + "(": 14, + ")": 14, + "": 2, + "Android": 5, + "API": 7, + "Differences": 2, + "Report": 2, + "": 2, + "": 2, + "
": 10, + "class=": 22, + "Header": 1, + "

": 1, + "

": 1, + "

": 3, + "This": 1, + "document": 1, + "details": 1, + "the": 11, + "changes": 2, + "in": 4, + "framework": 2, + "API.": 3, + "It": 2, + "shows": 1, + "additions": 1, + "modifications": 1, + "and": 5, + "removals": 2, + "for": 2, + "packages": 1, + "classes": 1, + "methods": 1, + "fields.": 1, + "Each": 1, + "reference": 1, + "to": 3, + "an": 3, + "change": 2, + "includes": 1, + "a": 4, + "brief": 1, + "description": 1, + "of": 5, + "explanation": 1, + "suggested": 1, + "workaround": 1, + "where": 1, + "available.": 1, + "

": 3, + "The": 2, + "differences": 2, + "described": 1, + "this": 2, + "report": 1, + "are": 3, + "based": 1, + "comparison": 1, + "APIs": 1, + "whose": 1, + "versions": 1, + "specified": 1, + "upper": 1, + "-": 1, + "right": 1, + "corner": 1, + "page.": 1, + "compares": 1, + "newer": 1, + "older": 2, + "version": 1, + "noting": 1, + "any": 1, + "relative": 1, + "So": 1, + "example": 1, + "indicated": 1, + "no": 1, + "longer": 1, + "present": 1, + "For": 1, + "more": 1, + "information": 1, + "about": 1, + "SDK": 1, + "see": 1, + "": 8, + "href=": 9, + "target=": 3, + "product": 1, + "site": 1, + "": 8, + ".": 1, + "if": 4, + "no_delta": 1, + "

": 1, + "Congratulation": 1, + "

": 1, + "No": 1, + "were": 1, + "detected": 1, + "between": 1, + "two": 1, + "provided": 1, + "APIs.": 1, + "endif": 4, + "removed_packages": 2, + "Table": 3, + "name": 3, + "rows": 3, + "{": 3, + "it.from": 1, + "ModelElementRow": 1, + "}": 3, + "
": 3, + "added_packages": 2, + "it.to": 2, + "PackageAddedLink": 1, + "SimpleTableRow": 2, + "changed_packages": 2, + "PackageChangedLink": 1, + "
": 11, + "": 2, + "": 2, + "html": 1, + "XHTML": 1, + "1": 1, + "Transitional": 1, + "xhtml1": 2, + "transitional": 1, + "xmlns=": 1, + "": 1, + "equiv=": 1, + "content=": 1, + "Related": 2, + "Pages": 2, + "": 1, + "rel=": 1, + "type=": 1, + "": 1, + "Main": 1, + "Page": 1, + "&": 3, + "middot": 3, + ";": 3, + "Class": 2, + "Overview": 2, + "Hierarchy": 1, + "All": 1, + "Classes": 1, + "Here": 1, + "is": 1, + "list": 1, + "all": 1, + "related": 1, + "documentation": 1, + "pages": 1, + "": 1, + "": 2, + "id=": 2, + "": 4, + "": 2, + "16": 1, + "Layout": 1, + "System": 1, + "
": 4, + "": 2, + "src=": 2, + "alt=": 2, + "width=": 1, + "height=": 2, + "
": 1, + "Generated": 1, + "with": 1, + "Doxygen": 1 + }, + "Eagle": { + "": 2, + "version=": 4, + "encoding=": 2, + "": 2, + "eagle": 4, + "SYSTEM": 2, + "dtd": 2, + "": 2, + "": 2, + "": 2, + "": 4, + "alwaysvectorfont=": 2, + "verticaltext=": 2, + "": 2, + "": 2, + "distance=": 2, + "unitdist=": 2, + "unit=": 2, + "style=": 2, + "multiple=": 2, + "display=": 2, + "altdistance=": 2, + "altunitdist=": 2, + "altunit=": 2, + "": 2, + "": 118, + "number=": 119, + "name=": 447, + "color=": 118, + "fill=": 118, + "visible=": 118, + "active=": 125, + "": 2, + "": 1, + "": 1, + "": 497, + "x1=": 630, + "y1=": 630, + "x2=": 630, + "y2=": 630, + "width=": 512, + "layer=": 822, + "": 1, + "": 2, + "": 4, + "": 60, + "&": 5501, + "lt": 2665, + ";": 5567, + "b": 64, + "gt": 2770, + "Resistors": 2, + "Capacitors": 4, + "Inductors": 2, + "/b": 64, + "p": 65, + "Based": 2, + "on": 2, + "the": 5, + "previous": 2, + "libraries": 2, + "ul": 2, + "li": 12, + "r.lbr": 2, + "cap.lbr": 2, + "cap": 2, + "-": 768, + "fe.lbr": 2, + "captant.lbr": 2, + "polcap.lbr": 2, + "ipc": 2, + "smd.lbr": 2, + "/ul": 2, + "All": 2, + "SMD": 4, + "packages": 2, + "are": 2, + "defined": 2, + "according": 2, + "to": 3, + "IPC": 2, + "specifications": 2, + "and": 5, + "CECC": 2, + "author": 3, + "Created": 3, + "by": 3, + "librarian@cadsoft.de": 3, + "/author": 3, + "for": 5, + "Electrolyt": 2, + "see": 4, + "also": 2, + "www.bccomponents.com": 2, + "www.panasonic.com": 2, + "www.kemet.com": 2, + "http": 4, + "//www.secc.co.jp/pdf/os_e/2004/e_os_all.pdf": 2, "(": 4, + "SANYO": 2, ")": 4, - "{": 2, - "Serial.begin": 1, + "trimmer": 2, + "refence": 2, + "u": 2, + "www.electrospec": 2, + "inc.com/cross_references/trimpotcrossref.asp": 2, + "/u": 2, + "table": 2, + "border": 2, + "cellspacing": 2, + "cellpadding": 2, + "width": 6, + "cellpaddding": 2, + "tr": 2, + "valign": 2, + "td": 4, + "amp": 66, + "nbsp": 66, + "/td": 4, + "font": 2, + "color": 20, + "size": 2, + "TRIM": 4, + "POT": 4, + "CROSS": 4, + "REFERENCE": 4, + "/font": 2, + "P": 128, + "TABLE": 4, + "BORDER": 4, + "CELLSPACING": 4, + "CELLPADDING": 4, + "TR": 36, + "TD": 170, + "COLSPAN": 16, + "FONT": 166, + "SIZE": 166, + "FACE": 166, + "ARIAL": 166, + "B": 106, + "RECTANGULAR": 2, + "MULTI": 6, + "TURN": 10, + "/B": 90, + "/FONT": 166, + "/TD": 170, + "/TR": 36, + "ALIGN": 124, + "CENTER": 124, + "BOURNS": 6, + "BI": 10, + "TECH": 10, + "DALE": 10, + "VISHAY": 10, + "PHILIPS/MEPCO": 10, + "MURATA": 6, + "PANASONIC": 10, + "SPECTROL": 6, + "MILSPEC": 6, + "BGCOLOR": 76, + "BR": 1478, + "W": 92, + "Y": 36, + "J": 12, + "L": 18, + "X": 82, + "PH": 2, + "XH": 2, + "SLT": 2, + "ALT": 42, + "T8S": 2, + "T18/784": 2, + "/1897": 2, + "/1880": 2, + "EKP/CT20/RJ": 2, + "RJ": 14, + "EKQ": 4, + "EKR": 4, + "EKJ": 2, + "EKL": 2, + "S": 18, + "EVMCOG": 2, + "T602": 2, + "RT/RTR12": 6, + "RJ/RJR12": 6, + "SQUARE": 2, + "BOURN": 4, + "H": 24, + "Z": 16, + "T63YB": 2, + "T63XB": 2, + "T93Z": 2, + "T93YA": 2, + "T93XA": 2, + "T93YB": 2, + "T93XB": 2, + "EKP": 8, + "EKW": 6, + "EKM": 4, + "EKB": 2, + "EKN": 2, + "P/CT9P": 2, + "P/3106P": 2, + "W/3106W": 2, + "X/3106X": 2, + "Y/3106Y": 2, + "Z/3105Z": 2, + "EVMCBG": 2, + "EVMCCG": 2, + "RT/RTR22": 8, + "RJ/RJR22": 6, + "RT/RTR26": 6, + "RJ/RJR26": 12, + "RT/RTR24": 6, + "RJ/RJR24": 12, + "SINGLE": 4, + "E": 6, + "K": 4, + "T": 10, + "V": 10, + "M": 10, + "R": 6, + "U": 4, + "C": 6, + "F": 4, + "RX": 6, + "PA": 2, + "A": 16, + "XW": 2, + "XL": 2, + "PM": 2, + "PX": 2, + "RXW": 2, + "RXL": 2, + "T7YB": 2, + "T7YA": 2, + "TXD": 2, + "TYA": 2, + "TYP": 2, + "TYD": 2, + "TX": 4, + "SX": 6, + "ET6P": 2, + "ET6S": 2, + "ET6X": 2, + "W/8014EMW": 2, + "P/8014EMP": 2, + "X/8014EMX": 2, + "TM7W": 2, + "TM7P": 2, + "TM7X": 2, + "SMS": 2, + "SMB": 2, + "SMA": 2, + "CT": 12, + "EKV": 2, + "EKX": 2, + "EKZ": 2, + "N": 2, + "RVA0911V304A": 2, + "RVA0911H413A": 2, + "RVG0707V100A": 2, + "RVA0607V": 2, + "RVA1214H213A": 2, + "EVMQ0G": 4, + "EVMQIG": 2, + "EVMQ3G": 2, + "EVMS0G": 2, + "EVMG0G": 2, + "EVMK4GA00B": 2, + "EVM30GA00B": 2, + "EVMK0GA00B": 2, + "EVM38GA00B": 2, + "EVMB6": 2, + "EVLQ0": 2, + "EVMMSG": 2, + "EVMMBG": 2, + "EVMMAG": 2, + "EVMMCS": 2, + "EVMM1": 2, + "EVMM0": 2, + "EVMM3": 2, + "RJ/RJR50": 6, + "/TABLE": 4, + "TOCOS": 4, + "AUX/KYOCERA": 4, + "G": 10, + "ST63Z": 2, + "ST63Y": 2, + "ST5P": 2, + "ST5W": 2, + "ST5X": 2, + "A/B": 2, + "C/D": 2, + "W/X": 2, + "ST5YL/ST53YL": 2, + "ST5YJ/5T53YJ": 2, + "ST": 14, + "EVM": 8, + "YS": 2, + "D": 2, + "G4B": 2, + "G4A": 2, + "TR04": 2, + "S1": 4, + "TRG04": 2, + "DVR": 2, + "CVR": 4, + "A/C": 2, + "ALTERNATE": 2, + "/tr": 2, + "/table": 2, + "": 60, + "": 4, + "": 53, + "RESISTOR": 52, + "": 64, + "x=": 240, + "y=": 242, + "dx=": 64, + "dy=": 64, + "": 108, + "size=": 114, + "NAME": 52, + "": 108, + "VALUE": 52, + "": 132, + "": 52, + "": 3, + "": 3, + "Pin": 1, + "Header": 1, + "Connectors": 1, + "PIN": 1, + "HEADER": 1, + "": 39, + "drill=": 41, + "shape=": 39, + "ratio=": 41, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "language=": 2, + "EAGLE": 2, + "Design": 5, + "Rules": 5, + "Die": 1, + "Standard": 1, + "sind": 1, + "so": 2, + "gew": 1, + "hlt": 1, + "dass": 1, + "sie": 1, + "f": 1, + "r": 1, + "die": 3, + "meisten": 1, + "Anwendungen": 1, + "passen.": 1, + "Sollte": 1, + "ihre": 1, + "Platine": 1, + "besondere": 1, + "Anforderungen": 1, + "haben": 1, + "treffen": 1, + "Sie": 1, + "erforderlichen": 1, + "Einstellungen": 1, + "hier": 1, + "und": 1, + "speichern": 1, + "unter": 1, + "einem": 1, + "neuen": 1, + "Namen": 1, + "ab.": 1, + "The": 1, + "default": 1, + "have": 2, + "been": 1, + "set": 1, + "cover": 1, + "a": 2, + "wide": 1, + "range": 1, + "of": 1, + "applications.": 1, + "Your": 1, + "particular": 1, + "design": 2, + "may": 1, + "different": 1, + "requirements": 1, + "please": 1, + "make": 1, + "necessary": 1, + "adjustments": 1, + "save": 1, + "your": 1, + "customized": 1, + "rules": 1, + "under": 1, + "new": 1, + "name.": 1, + "": 142, + "value=": 145, + "": 1, + "": 1, + "": 8, + "": 8, + "refer=": 7, + "": 1, + "": 1, + "": 3, + "library=": 3, + "package=": 3, + "smashed=": 3, + "": 6, + "": 3, + "1": 1, + "778": 1, + "16": 1, + "002": 1, + "": 1, + "": 1, + "": 3, + "": 4, + "element=": 4, + "pad=": 4, + "": 1, + "extent=": 1, + "": 3, + "": 2, + "": 8, + "": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "xreflabel=": 1, + "xrefpart=": 1, + "Frames": 1, + "Sheet": 2, + "Layout": 1, + "": 1, + "": 1, + "font=": 4, + "DRAWING_NAME": 1, + "LAST_DATE_TIME": 1, + "SHEET": 1, + "": 1, + "columns=": 1, + "rows=": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "prefix=": 1, + "uservalue=": 1, + "FRAME": 1, + "DIN": 1, + "A4": 1, + "landscape": 1, + "with": 1, + "location": 1, + "doc.": 1, + "field": 1, + "": 1, + "": 1, + "symbol=": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "wave": 10, + "soldering": 10, + "Source": 2, + "//download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf": 2, + "MELF": 8, + "type": 20, + "grid": 20, + "mm": 20, + "curve=": 56, + "": 12, + "radius=": 12 + }, + "Lasso": { + "[": 22, + "]": 23, + "//": 169, + "-": 2248, + "": 6, + "2009": 14, + "09": 10, + "04": 8, + "JS": 126, + "Added": 40, + "content_body": 14, + "tag": 11, + "for": 65, + "compatibility": 4, + "with": 25, + "pre": 4, + "8": 6, + "5": 4, + "05": 4, + "07": 6, + "timestamp": 4, + "to": 98, + "knop_cachestore": 4, + "and": 52, + "maxage": 2, + "parameter": 8, + "knop_cachefetch": 4, + "Corrected": 8, + "construction": 2, + "of": 24, + "cache_name": 2, + "internally": 2, + "in": 46, + "the": 86, + "knop_cache": 2, + "tags": 14, + "so": 16, + "it": 20, + "will": 12, + "work": 6, + "correctly": 2, + "at": 10, + "site": 4, + "root": 2, + "2008": 6, + "11": 8, + "dummy": 2, + "knop_debug": 4, + "ctype": 2, + "be": 38, + "able": 14, + "transparently": 2, + "or": 6, + "without": 4, + "L": 2, + "Debug": 2, + "24": 2, + "knop_stripbackticks": 2, + "01": 4, + "28": 2, + "Cache": 2, + "name": 32, + "is": 35, + "now": 23, + "used": 12, + "also": 5, + "when": 10, + "using": 8, + "session": 4, + "storage": 8, + "2007": 6, + "12": 8, + "knop_cachedelete": 2, + "Created": 4, + "03": 2, + "knop_foundrows": 2, + "condition": 4, + "returning": 2, + "normal": 2, + "found_count": 11, + "For": 2, + "Lasso": 15, + "if": 76, + "lasso_tagexists": 4, + "define_tag": 48, + "namespace=": 12, + "return": 75, + "__html_reply__": 4, + "define_type": 14, + "debug": 2, + "_unknowntag": 6, + "onconvert": 2, + "stripbackticks": 2, + "description=": 2, + "priority=": 2, + "required=": 2, + "local": 116, + "output": 30, + "string": 59, + "input": 2, + "split": 2, + "(": 640, + ")": 639, + "first": 12, + ";": 573, + "@#output": 2, + "/define_tag": 36, + "description": 34, + "namespace": 16, + "priority": 8, + "Johan": 2, + "S": 2, + "lve": 2, + "integer": 30, + "#charlist": 6, + "size": 24, + "start": 5, + "current": 10, + "date": 23, + "time": 8, + "a": 52, + "mixed": 2, + "up": 4, + "format": 7, + "as": 26, + "seed": 6, + "#seed": 36, + "convert": 4, + "this": 14, + "base": 6, + "conversion": 4, + "while": 9, + "#output": 50, + "get": 12, + "%": 14, + "#base": 8, + "+": 146, + "/": 6, + "/while": 7, + "over": 2, + "new": 14, + "chunk": 2, + "millisecond": 2, + "math_random": 2, + "lower": 2, + "upper": 2, + "__lassoservice_ip__": 2, + "response_localpath": 8, + "removetrailing": 8, + "response_filepath": 8, + "http": 6, + "//tagswap.net/found_rows": 2, + "action_statement": 2, + "string_findregexp": 8, + "#sql": 42, + "find": 57, + "ignorecase": 12, + "||": 8, + "<": 7, + "maxrecords_value": 2, + "inaccurate": 2, + "must": 4, + "accurate": 2, + "/if": 53, + "Default": 2, + "method": 7, + "usually": 2, + "fastest.": 2, + "Can": 2, + "not": 10, + "GROUP": 4, + "BY": 6, + "example.": 2, + "First": 4, + "normalize": 4, + "whitespace": 3, + "around": 2, + "FROM": 2, + "expression": 6, + "string_replaceregexp": 8, + "replace": 8, + "ReplaceOnlyOne": 2, + "substring": 6, + "remove": 6, + "ORDER": 2, + "statement": 4, + "since": 4, + "causes": 4, + "problems": 2, + "field": 26, + "aliases": 2, + "we": 2, + "can": 14, + "simple": 2, + "later": 2, + "else": 32, + "query": 4, + "contains": 2, + "use": 10, + "SQL_CALC_FOUND_ROWS": 2, + "which": 2, + "much": 2, + "slower": 2, + "see": 16, + "//bugs.mysql.com/bug.php": 2, + "id": 7, + "removeleading": 2, + "inline": 4, + "sql": 2, + "exit": 2, + "here": 2, + "normally": 2, + "/inline": 2, + "fallback": 4, + "required": 10, + "optional": 36, + "local_defined": 26, + "knop_seed": 2, + "Local": 7, + "#RandChars": 4, + "Get": 2, + "Math_Random": 2, + "Min": 2, + "Max": 2, + "Size": 2, + "#value": 14, + "join": 5, + "#numericValue": 4, + "&&": 30, + "length": 8, + "#cryptvalue": 10, + "#anyChar": 2, + "Encrypt_Blowfish": 2, + "decrypt_blowfish": 2, + "String_Remove": 2, + "StartPosition": 2, + "EndPosition": 2, + "Seed": 2, + "String_IsAlphaNumeric": 2, + "self": 72, + "_date_msec": 4, + "/define_type": 4, + "type": 63, + "seconds": 4, + "map": 23, + "default": 4, + "store": 4, + "all": 6, + "page": 14, + "vars": 8, + "specified": 8, + "iterate": 12, + "keys": 6, + "var": 38, + "#item": 10, + "isa": 25, + "#type": 26, + "#data": 14, + "insert": 18, + "/iterate": 12, + "//fail_if": 6, + "session_id": 6, + "#session": 10, + "session_addvar": 4, + "#cache_name": 72, + "duration": 4, + "second": 8, + "#expires": 4, + "server_name": 6, + "initiate": 10, + "thread": 6, + "RW": 6, + "lock": 24, + "global": 40, + "Thread_RWLock": 6, + "create": 6, + "reference": 10, + "@": 8, + "writing": 6, + "#lock": 12, + "writelock": 4, + "check": 6, + "cache": 4, + "unlock": 6, + "writeunlock": 4, + "null": 26, + "#maxage": 4, + "cached": 8, + "data": 12, + "too": 4, + "old": 4, + "reading": 2, + "readlock": 2, + "readunlock": 2, + "value": 14, + "true": 12, + "false": 8, + "ignored": 2, + "//##################################################################": 4, + "knoptype": 2, + "All": 4, + "Knop": 6, + "custom": 8, + "types": 10, + "should": 4, + "have": 6, + "parent": 5, + "This": 5, + "identify": 2, + "registered": 2, + "knop": 6, + "isknoptype": 2, + "knop_knoptype": 2, + "prototype": 4, + "version": 4, + "14": 4, + "Base": 2, + "framework": 2, + "Contains": 2, + "common": 4, + "member": 10, + "Used": 2, + "boilerplate": 2, + "creating": 4, + "other": 4, + "instance": 8, + "variables": 2, + "are": 4, + "available": 2, + "well": 2, + "CHANGE": 4, + "NOTES": 4, + "Syntax": 4, + "adjustments": 4, + "9": 2, + "Changed": 6, + "error_msg": 15, + "error": 22, + "numbers": 2, + "added": 10, + "even": 2, + "language": 10, + "already": 2, + "exists.": 2, + "improved": 4, + "reporting": 2, + "messages": 6, + "such": 2, + "from": 6, + "bad": 2, + "database": 14, + "queries": 2, + "error_lang": 2, + "provide": 2, + "knop_lang": 8, + "object": 7, + "add": 12, + "localized": 2, + "any": 14, + "except": 2, + "knop_base": 8, + "html": 4, + "xhtml": 28, + "help": 10, + "nicely": 2, + "formatted": 2, + "output.": 2, + "Centralized": 2, + "error_code": 11, + "knop_base.": 2, + "Moved": 6, + "codes": 2, + "improve": 2, + "documentation.": 2, + "It": 2, + "always": 2, + "an": 8, + "list": 4, + "parameter.": 2, + "trace": 2, + "tagtime": 4, + "was": 6, + "nav": 4, + "earlier": 2, + "varname": 4, + "retreive": 2, + "variable": 8, + "that": 18, + "stored": 2, + "in.": 2, + "automatically": 2, + "sense": 2, + "doctype": 6, + "exists": 2, + "buffer.": 2, + "The": 6, + "result": 6, + "performance.": 2, + "internal": 2, + "html.": 2, + "Introduced": 2, + "_knop_data": 10, + "general": 2, + "level": 2, + "caching": 2, + "between": 2, + "different": 2, + "objects.": 2, + "TODO": 2, + "option": 2, + "Google": 2, + "Code": 2, + "Wiki": 2, + "working": 2, + "properly": 4, + "run": 2, + "by": 12, + "atbegin": 2, + "handler": 2, + "explicitly": 2, + "*/": 2, + "array": 20, + "entire": 4, + "ms": 2, + "defined": 4, + "each": 8, + "instead": 4, + "avoid": 2, + "recursion": 2, + "properties": 4, + "params": 11, + "|": 13, + "#endslash": 10, + "#tags": 2, + "#t": 2, + "doesn": 4, + "t": 8, + "p": 2, + "n": 30, + "Parameters": 4, + "nParameters": 2, + "r": 8, + "Internal.": 2, + "Finds": 2, + "out": 2, + "used.": 2, + "Looks": 2, + "unless": 2, + "array.": 2, + "variable.": 2, + "Looking": 2, + "#params": 5, + "#xhtmlparam": 4, + "boolean": 4, + "plain": 2, + "#doctype": 4, + "copy": 4, + "standard": 2, + "code": 2, + "errors": 12, + "error_data": 12, + "form": 2, + "grid": 2, + "lang": 2, + "user": 4, + "#error_lang": 12, + "addlanguage": 4, + "strings": 6, + "@#errorcodes": 2, + "#error_lang_custom": 2, + "#custom_language": 10, + "once": 4, + "one": 2, + "key": 3, + "#custom_string": 4, + "#errorcodes": 4, + "#error_code": 10, + "message": 6, + "getstring": 2, + "literal": 3, + "test": 2, + "known": 2, + "lasso": 2, + "knop_timer": 2, + "knop_unique": 2, + "look": 2, + "#varname": 6, + "loop_abort": 2, + "tag_name": 2, + "#timer": 2, + "#trace": 4, + "merge": 2, + "#eol": 8, + "2010": 4, + "23": 4, + "Custom": 2, + "interact": 2, + "databases": 2, + "Supports": 4, + "both": 2, + "MySQL": 2, + "FileMaker": 2, + "datasources": 2, + "2012": 4, + "06": 2, + "10": 2, + "SP": 4, + "Fix": 2, + "decimal": 5, + "precision": 2, + "bug": 2, + "6": 2, + "0": 2, + "1": 2, + "renderfooter": 2, + "15": 2, + "Add": 2, + "support": 6, + "host": 6, + "Thanks": 2, + "Ric": 2, + "Lewis": 2, + "settable": 4, + "removed": 2, + "table": 6, + "nextrecord": 12, + "deprecation": 2, + "warning": 2, + "corrected": 2, + "verification": 2, + "index": 4, + "before": 4, + "calling": 2, + "resultset_count": 6, + "break": 2, + "versions": 2, + "fixed": 4, + "incorrect": 2, + "debug_trace": 2, + "addrecord": 4, + "how": 2, + "keyvalue": 10, + "returned": 6, + "adding": 2, + "records": 4, + "inserting": 2, + "generated": 2, + "suppressed": 2, + "specifying": 2, + "saverecord": 8, + "deleterecord": 4, + "case.": 2, + "recorddata": 6, + "no": 2, + "longer": 2, + "touch": 2, + "current_record": 2, + "zero": 2, + "access": 2, + "occurrence": 2, + "same": 4, + "returns": 4, + "knop_databaserows": 2, + "inlinename.": 4, + "next.": 2, + "remains": 2, + "supported": 2, + "backwards": 2, + "compatibility.": 2, + "resets": 2, + "record": 20, + "pointer": 8, + "reaching": 2, + "last": 4, + "honors": 2, + "incremented": 2, + "recordindex": 4, + "specific": 2, + "found.": 2, + "getrecord": 8, + "REALLY": 2, + "works": 4, + "keyvalues": 4, + "double": 2, + "oops": 4, + "I": 4, + "thought": 2, + "but": 2, + "misplaced": 2, + "paren...": 2, + "corresponding": 2, + "resultset": 2, + "...": 3, + "/resultset": 2, + "through": 2, + "handling": 2, + "better": 2, + "knop_user": 4, + "keeplock": 4, + "updates": 2, + "datatype": 2, + "knop_databaserow": 2, + "iterated.": 2, + "When": 2, + "iterating": 2, + "row": 2, + "values.": 2, + "Addedd": 2, + "increments": 2, + "recordpointer": 2, + "called": 2, + "until": 2, + "found": 5, + "set": 10, + "reached.": 2, + "Returns": 2, + "long": 2, + "there": 2, + "more": 2, + "records.": 2, + "Useful": 2, + "loop": 2, + "example": 2, + "below": 2, + "Implemented": 2, + ".": 5, + "reset": 2, + "query.": 2, + "shortcut": 2, + "Removed": 2, + "onassign": 2, + "touble": 2, + "Extended": 2, + "field_names": 2, + "names": 4, + "db": 2, + "objects": 2, + "never": 2, + "been": 2, + "optionally": 2, + "supports": 2, + "sql.": 2, + "Make": 2, + "sure": 2, + "SQL": 2, + "includes": 2, + "relevant": 2, + "keyfield": 4, + "lockfield": 2, + "locking": 4, + "capturesearchvars": 2, + "mysteriously": 2, + "after": 2, + "operations": 2, + "caused": 2, + "errors.": 2, + "flag": 2, + "save": 2, + "locked": 2, + "releasing": 2, + "Adding": 2, + "progress.": 2, + "Done": 2, + "oncreate": 2, + "getrecord.": 2, + "documentation": 2, + "most": 2, + "existing": 2, + "it.": 2, + "Faster": 2, + "than": 2, + "scratch.": 2, + "shown_first": 2, + "again": 2, + "hoping": 2, + "s": 2, + "only": 2, + "captured": 2, + "update": 2, + "uselimit": 2, + "querys": 2, + "LIMIT": 2, + "still": 2, + "gets": 2, + "proper": 2, + "searchresult": 2, + "separate": 2, + "COUNT": 2, + "LassoScript": 1, + "JSON": 2, + "Encoding": 1, + "Decoding": 1, + "Copyright": 1, + "LassoSoft": 1, + "Inc.": 1, + "": 1, + "": 1, + "": 1, + "incorporated": 1, + "If": 4, + "Lasso_TagExists": 1, + "False": 1, + "Define_Tag": 1, + "Namespace": 1, + "Required": 1, + "Optional": 1, + "Map": 3, + "f": 2, + "b": 2, + "newoptions": 1, + "options": 2, + "queue": 2, + "priorityqueue": 2, + "stack": 2, + "pair": 1, + "temp": 12, + "{": 18, + "}": 18, + "client_ip": 1, + "client_address": 1, + "__jsonclass__": 6, + "deserialize": 2, + "": 3, + "": 3, + "Decode_JSON": 2, + "Decode_": 1, + "consume_string": 1, + "ibytes": 9, + "unescapes": 1, + "u": 1, + "UTF": 4, + "QT": 4, + "TZ": 2, + "T": 3, + "consume_token": 1, + "obytes": 3, + "delimit": 7, + "consume_array": 1, + "consume_object": 1, + "val": 1, + "native": 2, + "comment": 2, + "//www.lassosoft.com/json": 1, + "Literal": 2, + "String": 1, + "Object": 2, + "JSON_RPCCall": 1, + "RPCCall": 1, + "JSON_": 1, + "//localhost/lassoapps.8/rpc/rpc.lasso": 1, + "request": 2, + "JSON_Records": 3, + "KeyField": 1, + "ReturnField": 1, + "ExcludeField": 1, + "Fields": 1, + "_fields": 1, + "fields": 2, + "No": 1, + "_keyfield": 4, + "ID": 1, + "_index": 1, + "_return": 1, + "returnfield": 1, + "_exclude": 1, + "excludefield": 1, + "_records": 1, + "_record": 1, + "_temp": 1, + "_field": 1, + "_output": 1, + "rows": 1, + "#_records": 1, + "Return": 7, + "@#_output": 1, + "/Define_Tag": 1, + "/If": 3, + "define": 20, + "trait_json_serialize": 2, + "trait": 1, + "require": 1, + "asString": 3, + "json_serialize": 18, + "e": 13, + "bytes": 8, + "#e": 13, + "Replace": 19, + "&": 21, + "json_literal": 1, + "asstring": 4, + "gmt": 1, + "trait_forEach": 1, + "foreach": 1, + "#delimit": 7, + "#1": 3, + "pr": 1, + "eachPair": 1, + "select": 1, + "#pr": 2, + "json_object": 2, + "foreachpair": 1, + "serialize": 1, + "json_consume_string": 3, + "#temp": 19, + "#ibytes": 17, + "export8bits": 6, + "#obytes": 5, + "import8bits": 4, + "Escape": 1, + "unescape": 1, + "//Replace": 1, + "BeginsWith": 1, + "EndsWith": 1, + "Protect": 1, + "serialization_reader": 1, + "xml": 1, + "read": 1, + "/Protect": 1, + "regexp": 1, + "d": 2, + "Z": 1, + "matches": 1, + "Format": 1, + "yyyyMMdd": 2, + "HHmmssZ": 1, + "HHmmss": 1, + "json_consume_token": 2, + "marker": 4, + "Is": 1, + "end": 2, + "token": 1, + "//............................................................................": 2, + "string_IsNumeric": 1, + "json_consume_array": 3, + "While": 1, + "Discard": 1, + "Else": 7, + "#key": 12, + "json_consume_object": 2, + "Loop_Abort": 1, + "/While": 1, + "Find": 3, + "Second": 1, + "json_deserialize": 1, + "removeLeading": 1, + "bom_utf8": 1, + "Reset": 1, + "on": 1, + "provided": 1, + "**/": 1, + "public": 1, + "onCreate": 1, + "..onCreate": 1, + "#rest": 1, + "json_rpccall": 1, + "#id": 2, + "#host": 4, + "Lasso_UniqueID": 1, + "Include_URL": 1, + "PostParams": 1, + "Encode_JSON": 1, + "#method": 1 + }, + "Parrot Internal Representation": { + "SHEBANG#!parrot": 1, + ".sub": 1, + "main": 1, + "say": 1, + ".end": 1 + }, + "Kit": { + "
": 1, + "

": 1, + "

": 1, + "

": 1, + "

": 1, + "
": 1 + }, + "Stylus": { + "border": 6, + "-": 10, + "radius": 5, + "(": 1, + ")": 1, + "webkit": 1, + "arguments": 3, + "moz": 1, + "a.button": 1, + "px": 5, + "fonts": 2, + "helvetica": 1, + "arial": 1, + "sans": 1, + "serif": 1, + "body": 1, + "{": 1, + "padding": 3, ";": 2, + "font": 1, + "px/1.4": 1, + "}": 1, + "form": 2, + "input": 2, + "[": 2, + "type": 2, + "text": 2, + "]": 2, + "solid": 1, + "#eee": 1, + "color": 2, + "#ddd": 1, + "textarea": 1, + "@extends": 2, + "foo": 2, + "#FFF": 1, + ".bar": 1, + "background": 1, + "#000": 1 + }, + "C": { + "#include": 154, + "": 5, + "": 5, + "": 3, + "": 8, + "#if": 92, + "defined": 42, + "(": 6243, + "_WIN32": 3, + ")": 6245, + "#define": 920, + "strncasecmp": 2, + "_strnicmp": 1, + "#endif": 243, + "REF_TABLE_SIZE": 1, + "BUFFER_BLOCK": 5, + "BUFFER_SPAN": 9, + "MKD_LI_END": 1, + "gperf_case_strncmp": 1, + "s1": 6, + "s2": 6, + "n": 70, + "GPERF_DOWNCASE": 1, + "GPERF_CASE_STRNCMP": 1, + "struct": 360, + "link_ref": 2, + "{": 1531, + "unsigned": 140, + "int": 446, + "id": 13, + ";": 5465, + "buf": 57, + "*link": 1, + "*title": 1, + "*next": 6, + "}": 1547, + "sd_markdown": 6, + "typedef": 191, + "size_t": 52, + "data": 69, + "+": 551, + "tag": 1, + "tag_len": 3, + "||": 141, + "[": 601, + "]": 601, + "return": 529, + "i": 410, + "w": 6, + "if": 1015, + "<": 219, + "size": 120, + "&&": 248, + "is_empty": 4, + "-": 1803, + "static": 455, + "htmlblock_end": 3, + "const": 358, + "char": 530, + "*curtag": 2, + "*rndr": 4, + "uint8_t": 6, + "*data": 12, + "start_of_line": 2, + "tag_size": 3, + "strlen": 17, + "curtag": 8, + "end_tag": 4, + "block_lines": 3, + "while": 70, + "continue": 20, + "break": 244, + "htmlblock_end_tag": 1, + "rndr": 25, + "parse_htmlblock": 1, + "*ob": 3, + "do_render": 4, + "j": 206, + "tag_end": 7, + "NULL": 330, + "work": 4, + "find_block_tag": 1, + "*": 261, + "work.size": 5, + "cb.blockhtml": 6, + "ob": 14, + "&": 442, + "opaque": 8, + "strcmp": 20, + "void": 288, + "parse_table_row": 1, + "columns": 3, + "*col_data": 1, + "header_flag": 3, + "col": 9, + "*row_work": 1, + "cb.table_cell": 3, + "cb.table_row": 2, + "row_work": 4, + "rndr_newbuf": 2, + "for": 88, + "cell_start": 5, + "cell_end": 6, + "*cell_work": 1, + "cell_work": 3, + "_isspace": 3, + "parse_inline": 1, + "col_data": 2, + "|": 132, + "rndr_popbuf": 2, + "empty_cell": 2, + "parse_table_header": 1, + "*columns": 2, + "**column_data": 1, + "pipes": 23, + "header_end": 7, + "under_end": 1, + "*column_data": 1, + "calloc": 1, + "beg": 10, + "doc_size": 6, + "memcmp": 6, + "document": 9, + "UTF8_BOM": 1, + "is_ref": 1, + "end": 48, + "md": 18, + "refs": 2, + "else": 190, + "expand_tabs": 1, + "text": 22, + "bufputc": 2, + "bufgrow": 1, + "MARKDOWN_GROW": 1, + "cb.doc_header": 2, + "parse_block": 1, + "cb.doc_footer": 2, + "bufrelease": 3, + "free_link_refs": 1, + "assert": 41, + "work_bufs": 8, + ".size": 2, + "sd_markdown_free": 1, + "*md": 1, + ".asize": 2, + ".item": 2, + "stack_free": 2, + "free": 62, + "sd_version": 1, + "*ver_major": 2, + "*ver_minor": 2, + "*ver_revision": 2, + "SUNDOWN_VER_MAJOR": 1, + "SUNDOWN_VER_MINOR": 1, + "SUNDOWN_VER_REVISION": 1, + "#ifndef": 89, + "__wglew_h__": 2, + "__WGLEW_H__": 1, + "#ifdef": 66, + "__wglext_h_": 2, + "#error": 4, + "wglext.h": 1, + "included": 2, + "before": 4, + "wglew.h": 1, + "WINAPI": 119, + "": 1, + "GLEW_STATIC": 1, + "#else": 94, + "__cplusplus": 20, + "extern": 38, + "WGL_3DFX_multisample": 2, + "WGL_SAMPLE_BUFFERS_3DFX": 1, + "WGL_SAMPLES_3DFX": 1, + "WGLEW_3DFX_multisample": 1, + "WGLEW_GET_VAR": 49, + "__WGLEW_3DFX_multisample": 2, + "WGL_3DL_stereo_control": 2, + "WGL_STEREO_EMITTER_ENABLE_3DL": 1, + "WGL_STEREO_EMITTER_DISABLE_3DL": 1, + "WGL_STEREO_POLARITY_NORMAL_3DL": 1, + "WGL_STEREO_POLARITY_INVERT_3DL": 1, + "BOOL": 84, + "PFNWGLSETSTEREOEMITTERSTATE3DLPROC": 2, + "HDC": 65, + "hDC": 33, + "UINT": 30, + "uState": 1, + "wglSetStereoEmitterState3DL": 1, + "WGLEW_GET_FUN": 120, + "__wglewSetStereoEmitterState3DL": 2, + "WGLEW_3DL_stereo_control": 1, + "__WGLEW_3DL_stereo_control": 2, + "WGL_AMD_gpu_association": 2, + "WGL_GPU_VENDOR_AMD": 1, + "F00": 1, + "WGL_GPU_RENDERER_STRING_AMD": 1, + "F01": 1, + "WGL_GPU_OPENGL_VERSION_STRING_AMD": 1, + "F02": 1, + "WGL_GPU_FASTEST_TARGET_GPUS_AMD": 1, + "A2": 2, + "WGL_GPU_RAM_AMD": 1, + "A3": 2, + "WGL_GPU_CLOCK_AMD": 1, + "A4": 2, + "WGL_GPU_NUM_PIPES_AMD": 1, + "A5": 3, + "WGL_GPU_NUM_SIMD_AMD": 1, + "A6": 2, + "WGL_GPU_NUM_RB_AMD": 1, + "A7": 2, + "WGL_GPU_NUM_SPI_AMD": 1, + "A8": 2, + "VOID": 6, + "PFNWGLBLITCONTEXTFRAMEBUFFERAMDPROC": 2, + "HGLRC": 14, + "dstCtx": 1, + "GLint": 18, + "srcX0": 1, + "srcY0": 1, + "srcX1": 1, + "srcY1": 1, + "dstX0": 1, + "dstY0": 1, + "dstX1": 1, + "dstY1": 1, + "GLbitfield": 1, + "mask": 1, + "GLenum": 8, + "filter": 1, + "PFNWGLCREATEASSOCIATEDCONTEXTAMDPROC": 2, + "PFNWGLCREATEASSOCIATEDCONTEXTATTRIBSAMDPROC": 2, + "hShareContext": 2, + "int*": 22, + "attribList": 2, + "PFNWGLDELETEASSOCIATEDCONTEXTAMDPROC": 2, + "hglrc": 5, + "PFNWGLGETCONTEXTGPUIDAMDPROC": 2, + "PFNWGLGETCURRENTASSOCIATEDCONTEXTAMDPROC": 2, + "PFNWGLGETGPUIDSAMDPROC": 2, + "maxCount": 1, + "UINT*": 6, + "ids": 1, + "INT": 3, + "PFNWGLGETGPUINFOAMDPROC": 2, + "property": 1, + "dataType": 1, + "void*": 135, + "PFNWGLMAKEASSOCIATEDCONTEXTCURRENTAMDPROC": 2, + "wglBlitContextFramebufferAMD": 1, + "__wglewBlitContextFramebufferAMD": 2, + "wglCreateAssociatedContextAMD": 1, + "__wglewCreateAssociatedContextAMD": 2, + "wglCreateAssociatedContextAttribsAMD": 1, + "__wglewCreateAssociatedContextAttribsAMD": 2, + "wglDeleteAssociatedContextAMD": 1, + "__wglewDeleteAssociatedContextAMD": 2, + "wglGetContextGPUIDAMD": 1, + "__wglewGetContextGPUIDAMD": 2, + "wglGetCurrentAssociatedContextAMD": 1, + "__wglewGetCurrentAssociatedContextAMD": 2, + "wglGetGPUIDsAMD": 1, + "__wglewGetGPUIDsAMD": 2, + "wglGetGPUInfoAMD": 1, + "__wglewGetGPUInfoAMD": 2, + "wglMakeAssociatedContextCurrentAMD": 1, + "__wglewMakeAssociatedContextCurrentAMD": 2, + "WGLEW_AMD_gpu_association": 1, + "__WGLEW_AMD_gpu_association": 2, + "WGL_ARB_buffer_region": 2, + "WGL_FRONT_COLOR_BUFFER_BIT_ARB": 1, + "WGL_BACK_COLOR_BUFFER_BIT_ARB": 1, + "WGL_DEPTH_BUFFER_BIT_ARB": 1, + "WGL_STENCIL_BUFFER_BIT_ARB": 1, + "HANDLE": 14, + "PFNWGLCREATEBUFFERREGIONARBPROC": 2, + "iLayerPlane": 5, + "uType": 1, + "PFNWGLDELETEBUFFERREGIONARBPROC": 2, + "hRegion": 3, + "PFNWGLRESTOREBUFFERREGIONARBPROC": 2, + "x": 57, + "y": 14, + "width": 3, + "height": 3, + "xSrc": 1, + "ySrc": 1, + "PFNWGLSAVEBUFFERREGIONARBPROC": 2, + "wglCreateBufferRegionARB": 1, + "__wglewCreateBufferRegionARB": 2, + "wglDeleteBufferRegionARB": 1, + "__wglewDeleteBufferRegionARB": 2, + "wglRestoreBufferRegionARB": 1, + "__wglewRestoreBufferRegionARB": 2, + "wglSaveBufferRegionARB": 1, + "__wglewSaveBufferRegionARB": 2, + "WGLEW_ARB_buffer_region": 1, + "__WGLEW_ARB_buffer_region": 2, + "WGL_ARB_create_context": 2, + "WGL_CONTEXT_DEBUG_BIT_ARB": 1, + "WGL_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB": 1, + "WGL_CONTEXT_MAJOR_VERSION_ARB": 1, + "WGL_CONTEXT_MINOR_VERSION_ARB": 1, + "WGL_CONTEXT_LAYER_PLANE_ARB": 1, + "WGL_CONTEXT_FLAGS_ARB": 1, + "ERROR_INVALID_VERSION_ARB": 1, + "ERROR_INVALID_PROFILE_ARB": 1, + "PFNWGLCREATECONTEXTATTRIBSARBPROC": 2, + "wglCreateContextAttribsARB": 1, + "__wglewCreateContextAttribsARB": 2, + "WGLEW_ARB_create_context": 1, + "__WGLEW_ARB_create_context": 2, + "WGL_ARB_create_context_profile": 2, + "WGL_CONTEXT_CORE_PROFILE_BIT_ARB": 1, + "WGL_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB": 1, + "WGL_CONTEXT_PROFILE_MASK_ARB": 1, + "WGLEW_ARB_create_context_profile": 1, + "__WGLEW_ARB_create_context_profile": 2, + "WGL_ARB_create_context_robustness": 2, + "WGL_CONTEXT_ROBUST_ACCESS_BIT_ARB": 1, + "WGL_LOSE_CONTEXT_ON_RESET_ARB": 1, + "WGL_CONTEXT_RESET_NOTIFICATION_STRATEGY_ARB": 1, + "WGL_NO_RESET_NOTIFICATION_ARB": 1, + "WGLEW_ARB_create_context_robustness": 1, + "__WGLEW_ARB_create_context_robustness": 2, + "WGL_ARB_extensions_string": 2, + "char*": 167, + "PFNWGLGETEXTENSIONSSTRINGARBPROC": 2, + "hdc": 16, + "wglGetExtensionsStringARB": 1, + "__wglewGetExtensionsStringARB": 2, + "WGLEW_ARB_extensions_string": 1, + "__WGLEW_ARB_extensions_string": 2, + "WGL_ARB_framebuffer_sRGB": 2, + "WGL_FRAMEBUFFER_SRGB_CAPABLE_ARB": 1, + "A9": 2, + "WGLEW_ARB_framebuffer_sRGB": 1, + "__WGLEW_ARB_framebuffer_sRGB": 2, + "WGL_ARB_make_current_read": 2, + "ERROR_INVALID_PIXEL_TYPE_ARB": 1, + "ERROR_INCOMPATIBLE_DEVICE_CONTEXTS_ARB": 1, + "PFNWGLGETCURRENTREADDCARBPROC": 2, + "PFNWGLMAKECONTEXTCURRENTARBPROC": 2, + "hDrawDC": 2, + "hReadDC": 2, + "wglGetCurrentReadDCARB": 1, + "__wglewGetCurrentReadDCARB": 2, + "wglMakeContextCurrentARB": 1, + "__wglewMakeContextCurrentARB": 2, + "WGLEW_ARB_make_current_read": 1, + "__WGLEW_ARB_make_current_read": 2, + "WGL_ARB_multisample": 2, + "WGL_SAMPLE_BUFFERS_ARB": 1, + "WGL_SAMPLES_ARB": 1, + "WGLEW_ARB_multisample": 1, + "__WGLEW_ARB_multisample": 2, + "WGL_ARB_pbuffer": 2, + "WGL_DRAW_TO_PBUFFER_ARB": 1, + "D": 8, + "WGL_MAX_PBUFFER_PIXELS_ARB": 1, + "E": 11, + "WGL_MAX_PBUFFER_WIDTH_ARB": 1, + "F": 38, + "WGL_MAX_PBUFFER_HEIGHT_ARB": 1, + "WGL_PBUFFER_LARGEST_ARB": 1, + "WGL_PBUFFER_WIDTH_ARB": 1, + "WGL_PBUFFER_HEIGHT_ARB": 1, + "WGL_PBUFFER_LOST_ARB": 1, + "DECLARE_HANDLE": 6, + "HPBUFFERARB": 12, + "PFNWGLCREATEPBUFFERARBPROC": 2, + "iPixelFormat": 6, + "iWidth": 2, + "iHeight": 2, + "piAttribList": 4, + "PFNWGLDESTROYPBUFFERARBPROC": 2, + "hPbuffer": 14, + "PFNWGLGETPBUFFERDCARBPROC": 2, + "PFNWGLQUERYPBUFFERARBPROC": 2, + "iAttribute": 8, + "piValue": 8, + "PFNWGLRELEASEPBUFFERDCARBPROC": 2, + "wglCreatePbufferARB": 1, + "__wglewCreatePbufferARB": 2, + "wglDestroyPbufferARB": 1, + "__wglewDestroyPbufferARB": 2, + "wglGetPbufferDCARB": 1, + "__wglewGetPbufferDCARB": 2, + "wglQueryPbufferARB": 1, + "__wglewQueryPbufferARB": 2, + "wglReleasePbufferDCARB": 1, + "__wglewReleasePbufferDCARB": 2, + "WGLEW_ARB_pbuffer": 1, + "__WGLEW_ARB_pbuffer": 2, + "WGL_ARB_pixel_format": 2, + "WGL_NUMBER_PIXEL_FORMATS_ARB": 1, + "WGL_DRAW_TO_WINDOW_ARB": 1, + "WGL_DRAW_TO_BITMAP_ARB": 1, + "WGL_ACCELERATION_ARB": 1, + "WGL_NEED_PALETTE_ARB": 1, + "WGL_NEED_SYSTEM_PALETTE_ARB": 1, + "WGL_SWAP_LAYER_BUFFERS_ARB": 1, + "WGL_SWAP_METHOD_ARB": 1, + "WGL_NUMBER_OVERLAYS_ARB": 1, + "WGL_NUMBER_UNDERLAYS_ARB": 1, + "WGL_TRANSPARENT_ARB": 1, + "A": 11, + "WGL_SHARE_DEPTH_ARB": 1, + "C": 14, + "WGL_SHARE_STENCIL_ARB": 1, + "WGL_SHARE_ACCUM_ARB": 1, + "WGL_SUPPORT_GDI_ARB": 1, + "WGL_SUPPORT_OPENGL_ARB": 1, + "WGL_DOUBLE_BUFFER_ARB": 1, + "WGL_STEREO_ARB": 1, + "WGL_PIXEL_TYPE_ARB": 1, + "WGL_COLOR_BITS_ARB": 1, + "WGL_RED_BITS_ARB": 1, + "WGL_RED_SHIFT_ARB": 1, + "WGL_GREEN_BITS_ARB": 1, + "WGL_GREEN_SHIFT_ARB": 1, + "WGL_BLUE_BITS_ARB": 1, + "WGL_BLUE_SHIFT_ARB": 1, + "WGL_ALPHA_BITS_ARB": 1, + "B": 9, + "WGL_ALPHA_SHIFT_ARB": 1, + "WGL_ACCUM_BITS_ARB": 1, + "WGL_ACCUM_RED_BITS_ARB": 1, + "WGL_ACCUM_GREEN_BITS_ARB": 1, + "WGL_ACCUM_BLUE_BITS_ARB": 1, + "WGL_ACCUM_ALPHA_BITS_ARB": 1, + "WGL_DEPTH_BITS_ARB": 1, + "WGL_STENCIL_BITS_ARB": 1, + "WGL_AUX_BUFFERS_ARB": 1, + "WGL_NO_ACCELERATION_ARB": 1, + "WGL_GENERIC_ACCELERATION_ARB": 1, + "WGL_FULL_ACCELERATION_ARB": 1, + "WGL_SWAP_EXCHANGE_ARB": 1, + "WGL_SWAP_COPY_ARB": 1, + "WGL_SWAP_UNDEFINED_ARB": 1, + "WGL_TYPE_RGBA_ARB": 1, + "WGL_TYPE_COLORINDEX_ARB": 1, + "WGL_TRANSPARENT_RED_VALUE_ARB": 1, + "WGL_TRANSPARENT_GREEN_VALUE_ARB": 1, + "WGL_TRANSPARENT_BLUE_VALUE_ARB": 1, + "WGL_TRANSPARENT_ALPHA_VALUE_ARB": 1, + "WGL_TRANSPARENT_INDEX_VALUE_ARB": 1, + "PFNWGLCHOOSEPIXELFORMATARBPROC": 2, + "piAttribIList": 2, + "FLOAT": 4, + "*pfAttribFList": 2, + "nMaxFormats": 2, + "*piFormats": 2, + "*nNumFormats": 2, + "PFNWGLGETPIXELFORMATATTRIBFVARBPROC": 2, + "nAttributes": 4, + "piAttributes": 4, + "*pfValues": 2, + "PFNWGLGETPIXELFORMATATTRIBIVARBPROC": 2, + "*piValues": 2, + "wglChoosePixelFormatARB": 1, + "__wglewChoosePixelFormatARB": 2, + "wglGetPixelFormatAttribfvARB": 1, + "__wglewGetPixelFormatAttribfvARB": 2, + "wglGetPixelFormatAttribivARB": 1, + "__wglewGetPixelFormatAttribivARB": 2, + "WGLEW_ARB_pixel_format": 1, + "__WGLEW_ARB_pixel_format": 2, + "WGL_ARB_pixel_format_float": 2, + "WGL_TYPE_RGBA_FLOAT_ARB": 1, + "A0": 3, + "WGLEW_ARB_pixel_format_float": 1, + "__WGLEW_ARB_pixel_format_float": 2, + "WGL_ARB_render_texture": 2, + "WGL_BIND_TO_TEXTURE_RGB_ARB": 1, + "WGL_BIND_TO_TEXTURE_RGBA_ARB": 1, + "WGL_TEXTURE_FORMAT_ARB": 1, + "WGL_TEXTURE_TARGET_ARB": 1, + "WGL_MIPMAP_TEXTURE_ARB": 1, + "WGL_TEXTURE_RGB_ARB": 1, + "WGL_TEXTURE_RGBA_ARB": 1, + "WGL_NO_TEXTURE_ARB": 2, + "WGL_TEXTURE_CUBE_MAP_ARB": 1, + "WGL_TEXTURE_1D_ARB": 1, + "WGL_TEXTURE_2D_ARB": 1, + "WGL_MIPMAP_LEVEL_ARB": 1, + "WGL_CUBE_MAP_FACE_ARB": 1, + "WGL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB": 1, + "WGL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB": 1, + "WGL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB": 1, + "WGL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB": 1, + "WGL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB": 1, + "WGL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB": 1, + "WGL_FRONT_LEFT_ARB": 1, + "WGL_FRONT_RIGHT_ARB": 1, + "WGL_BACK_LEFT_ARB": 1, + "WGL_BACK_RIGHT_ARB": 1, + "WGL_AUX0_ARB": 1, + "WGL_AUX1_ARB": 1, + "WGL_AUX2_ARB": 1, + "WGL_AUX3_ARB": 1, + "WGL_AUX4_ARB": 1, + "WGL_AUX5_ARB": 1, + "WGL_AUX6_ARB": 1, + "WGL_AUX7_ARB": 1, + "WGL_AUX8_ARB": 1, + "WGL_AUX9_ARB": 1, + "PFNWGLBINDTEXIMAGEARBPROC": 2, + "iBuffer": 2, + "PFNWGLRELEASETEXIMAGEARBPROC": 2, + "PFNWGLSETPBUFFERATTRIBARBPROC": 2, + "wglBindTexImageARB": 1, + "__wglewBindTexImageARB": 2, + "wglReleaseTexImageARB": 1, + "__wglewReleaseTexImageARB": 2, + "wglSetPbufferAttribARB": 1, + "__wglewSetPbufferAttribARB": 2, + "WGLEW_ARB_render_texture": 1, + "__WGLEW_ARB_render_texture": 2, + "WGL_ATI_pixel_format_float": 2, + "WGL_TYPE_RGBA_FLOAT_ATI": 1, + "GL_RGBA_FLOAT_MODE_ATI": 1, + "GL_COLOR_CLEAR_UNCLAMPED_VALUE_ATI": 1, + "WGLEW_ATI_pixel_format_float": 1, + "__WGLEW_ATI_pixel_format_float": 2, + "WGL_ATI_render_texture_rectangle": 2, + "WGL_TEXTURE_RECTANGLE_ATI": 1, + "WGLEW_ATI_render_texture_rectangle": 1, + "__WGLEW_ATI_render_texture_rectangle": 2, + "WGL_EXT_create_context_es2_profile": 2, + "WGL_CONTEXT_ES2_PROFILE_BIT_EXT": 1, + "WGLEW_EXT_create_context_es2_profile": 1, + "__WGLEW_EXT_create_context_es2_profile": 2, + "WGL_EXT_depth_float": 2, + "WGL_DEPTH_FLOAT_EXT": 1, + "WGLEW_EXT_depth_float": 1, + "__WGLEW_EXT_depth_float": 2, + "WGL_EXT_display_color_table": 2, + "GLboolean": 53, + "PFNWGLBINDDISPLAYCOLORTABLEEXTPROC": 2, + "GLushort": 3, + "PFNWGLCREATEDISPLAYCOLORTABLEEXTPROC": 2, + "PFNWGLDESTROYDISPLAYCOLORTABLEEXTPROC": 2, + "PFNWGLLOADDISPLAYCOLORTABLEEXTPROC": 2, + "GLushort*": 1, + "table": 1, + "GLuint": 9, + "length": 58, + "wglBindDisplayColorTableEXT": 1, + "__wglewBindDisplayColorTableEXT": 2, + "wglCreateDisplayColorTableEXT": 1, + "__wglewCreateDisplayColorTableEXT": 2, + "wglDestroyDisplayColorTableEXT": 1, + "__wglewDestroyDisplayColorTableEXT": 2, + "wglLoadDisplayColorTableEXT": 1, + "__wglewLoadDisplayColorTableEXT": 2, + "WGLEW_EXT_display_color_table": 1, + "__WGLEW_EXT_display_color_table": 2, + "WGL_EXT_extensions_string": 2, + "PFNWGLGETEXTENSIONSSTRINGEXTPROC": 2, + "wglGetExtensionsStringEXT": 1, + "__wglewGetExtensionsStringEXT": 2, + "WGLEW_EXT_extensions_string": 1, + "__WGLEW_EXT_extensions_string": 2, + "WGL_EXT_framebuffer_sRGB": 2, + "WGL_FRAMEBUFFER_SRGB_CAPABLE_EXT": 1, + "WGLEW_EXT_framebuffer_sRGB": 1, + "__WGLEW_EXT_framebuffer_sRGB": 2, + "WGL_EXT_make_current_read": 2, + "ERROR_INVALID_PIXEL_TYPE_EXT": 1, + "PFNWGLGETCURRENTREADDCEXTPROC": 2, + "PFNWGLMAKECONTEXTCURRENTEXTPROC": 2, + "wglGetCurrentReadDCEXT": 1, + "__wglewGetCurrentReadDCEXT": 2, + "wglMakeContextCurrentEXT": 1, + "__wglewMakeContextCurrentEXT": 2, + "WGLEW_EXT_make_current_read": 1, + "__WGLEW_EXT_make_current_read": 2, + "WGL_EXT_multisample": 2, + "WGL_SAMPLE_BUFFERS_EXT": 1, + "WGL_SAMPLES_EXT": 1, + "WGLEW_EXT_multisample": 1, + "__WGLEW_EXT_multisample": 2, + "WGL_EXT_pbuffer": 2, + "WGL_DRAW_TO_PBUFFER_EXT": 1, + "WGL_MAX_PBUFFER_PIXELS_EXT": 1, + "WGL_MAX_PBUFFER_WIDTH_EXT": 1, + "WGL_MAX_PBUFFER_HEIGHT_EXT": 1, + "WGL_OPTIMAL_PBUFFER_WIDTH_EXT": 1, + "WGL_OPTIMAL_PBUFFER_HEIGHT_EXT": 1, + "WGL_PBUFFER_LARGEST_EXT": 1, + "WGL_PBUFFER_WIDTH_EXT": 1, + "WGL_PBUFFER_HEIGHT_EXT": 1, + "HPBUFFEREXT": 6, + "PFNWGLCREATEPBUFFEREXTPROC": 2, + "PFNWGLDESTROYPBUFFEREXTPROC": 2, + "PFNWGLGETPBUFFERDCEXTPROC": 2, + "PFNWGLQUERYPBUFFEREXTPROC": 2, + "PFNWGLRELEASEPBUFFERDCEXTPROC": 2, + "wglCreatePbufferEXT": 1, + "__wglewCreatePbufferEXT": 2, + "wglDestroyPbufferEXT": 1, + "__wglewDestroyPbufferEXT": 2, + "wglGetPbufferDCEXT": 1, + "__wglewGetPbufferDCEXT": 2, + "wglQueryPbufferEXT": 1, + "__wglewQueryPbufferEXT": 2, + "wglReleasePbufferDCEXT": 1, + "__wglewReleasePbufferDCEXT": 2, + "WGLEW_EXT_pbuffer": 1, + "__WGLEW_EXT_pbuffer": 2, + "WGL_EXT_pixel_format": 2, + "WGL_NUMBER_PIXEL_FORMATS_EXT": 1, + "WGL_DRAW_TO_WINDOW_EXT": 1, + "WGL_DRAW_TO_BITMAP_EXT": 1, + "WGL_ACCELERATION_EXT": 1, + "WGL_NEED_PALETTE_EXT": 1, + "WGL_NEED_SYSTEM_PALETTE_EXT": 1, + "WGL_SWAP_LAYER_BUFFERS_EXT": 1, + "WGL_SWAP_METHOD_EXT": 1, + "WGL_NUMBER_OVERLAYS_EXT": 1, + "WGL_NUMBER_UNDERLAYS_EXT": 1, + "WGL_TRANSPARENT_EXT": 1, + "WGL_TRANSPARENT_VALUE_EXT": 1, + "WGL_SHARE_DEPTH_EXT": 1, + "WGL_SHARE_STENCIL_EXT": 1, + "WGL_SHARE_ACCUM_EXT": 1, + "WGL_SUPPORT_GDI_EXT": 1, + "WGL_SUPPORT_OPENGL_EXT": 1, + "WGL_DOUBLE_BUFFER_EXT": 1, + "WGL_STEREO_EXT": 1, + "WGL_PIXEL_TYPE_EXT": 1, + "WGL_COLOR_BITS_EXT": 1, + "WGL_RED_BITS_EXT": 1, + "WGL_RED_SHIFT_EXT": 1, + "WGL_GREEN_BITS_EXT": 1, + "WGL_GREEN_SHIFT_EXT": 1, + "WGL_BLUE_BITS_EXT": 1, + "WGL_BLUE_SHIFT_EXT": 1, + "WGL_ALPHA_BITS_EXT": 1, + "WGL_ALPHA_SHIFT_EXT": 1, + "WGL_ACCUM_BITS_EXT": 1, + "WGL_ACCUM_RED_BITS_EXT": 1, + "WGL_ACCUM_GREEN_BITS_EXT": 1, + "WGL_ACCUM_BLUE_BITS_EXT": 1, + "WGL_ACCUM_ALPHA_BITS_EXT": 1, + "WGL_DEPTH_BITS_EXT": 1, + "WGL_STENCIL_BITS_EXT": 1, + "WGL_AUX_BUFFERS_EXT": 1, + "WGL_NO_ACCELERATION_EXT": 1, + "WGL_GENERIC_ACCELERATION_EXT": 1, + "WGL_FULL_ACCELERATION_EXT": 1, + "WGL_SWAP_EXCHANGE_EXT": 1, + "WGL_SWAP_COPY_EXT": 1, + "WGL_SWAP_UNDEFINED_EXT": 1, + "WGL_TYPE_RGBA_EXT": 1, + "WGL_TYPE_COLORINDEX_EXT": 1, + "PFNWGLCHOOSEPIXELFORMATEXTPROC": 2, + "PFNWGLGETPIXELFORMATATTRIBFVEXTPROC": 2, + "PFNWGLGETPIXELFORMATATTRIBIVEXTPROC": 2, + "wglChoosePixelFormatEXT": 1, + "__wglewChoosePixelFormatEXT": 2, + "wglGetPixelFormatAttribfvEXT": 1, + "__wglewGetPixelFormatAttribfvEXT": 2, + "wglGetPixelFormatAttribivEXT": 1, + "__wglewGetPixelFormatAttribivEXT": 2, + "WGLEW_EXT_pixel_format": 1, + "__WGLEW_EXT_pixel_format": 2, + "WGL_EXT_pixel_format_packed_float": 2, + "WGL_TYPE_RGBA_UNSIGNED_FLOAT_EXT": 1, + "WGLEW_EXT_pixel_format_packed_float": 1, + "__WGLEW_EXT_pixel_format_packed_float": 2, + "WGL_EXT_swap_control": 2, + "PFNWGLGETSWAPINTERVALEXTPROC": 2, + "PFNWGLSWAPINTERVALEXTPROC": 2, + "interval": 1, + "wglGetSwapIntervalEXT": 1, + "__wglewGetSwapIntervalEXT": 2, + "wglSwapIntervalEXT": 1, + "__wglewSwapIntervalEXT": 2, + "WGLEW_EXT_swap_control": 1, + "__WGLEW_EXT_swap_control": 2, + "WGL_I3D_digital_video_control": 2, + "WGL_DIGITAL_VIDEO_CURSOR_ALPHA_FRAMEBUFFER_I3D": 1, + "WGL_DIGITAL_VIDEO_CURSOR_ALPHA_VALUE_I3D": 1, + "WGL_DIGITAL_VIDEO_CURSOR_INCLUDED_I3D": 1, + "WGL_DIGITAL_VIDEO_GAMMA_CORRECTED_I3D": 1, + "PFNWGLGETDIGITALVIDEOPARAMETERSI3DPROC": 2, + "PFNWGLSETDIGITALVIDEOPARAMETERSI3DPROC": 2, + "wglGetDigitalVideoParametersI3D": 1, + "__wglewGetDigitalVideoParametersI3D": 2, + "wglSetDigitalVideoParametersI3D": 1, + "__wglewSetDigitalVideoParametersI3D": 2, + "WGLEW_I3D_digital_video_control": 1, + "__WGLEW_I3D_digital_video_control": 2, + "WGL_I3D_gamma": 2, + "WGL_GAMMA_TABLE_SIZE_I3D": 1, + "WGL_GAMMA_EXCLUDE_DESKTOP_I3D": 1, + "PFNWGLGETGAMMATABLEI3DPROC": 2, + "iEntries": 2, + "USHORT*": 2, + "puRed": 2, + "USHORT": 4, + "*puGreen": 2, + "*puBlue": 2, + "PFNWGLGETGAMMATABLEPARAMETERSI3DPROC": 2, + "PFNWGLSETGAMMATABLEI3DPROC": 2, + "PFNWGLSETGAMMATABLEPARAMETERSI3DPROC": 2, + "wglGetGammaTableI3D": 1, + "__wglewGetGammaTableI3D": 2, + "wglGetGammaTableParametersI3D": 1, + "__wglewGetGammaTableParametersI3D": 2, + "wglSetGammaTableI3D": 1, + "__wglewSetGammaTableI3D": 2, + "wglSetGammaTableParametersI3D": 1, + "__wglewSetGammaTableParametersI3D": 2, + "WGLEW_I3D_gamma": 1, + "__WGLEW_I3D_gamma": 2, + "WGL_I3D_genlock": 2, + "WGL_GENLOCK_SOURCE_MULTIVIEW_I3D": 1, + "WGL_GENLOCK_SOURCE_EXTERNAL_SYNC_I3D": 1, + "WGL_GENLOCK_SOURCE_EXTERNAL_FIELD_I3D": 1, + "WGL_GENLOCK_SOURCE_EXTERNAL_TTL_I3D": 1, + "WGL_GENLOCK_SOURCE_DIGITAL_SYNC_I3D": 1, + "WGL_GENLOCK_SOURCE_DIGITAL_FIELD_I3D": 1, + "WGL_GENLOCK_SOURCE_EDGE_FALLING_I3D": 1, + "WGL_GENLOCK_SOURCE_EDGE_RISING_I3D": 1, + "WGL_GENLOCK_SOURCE_EDGE_BOTH_I3D": 1, + "PFNWGLDISABLEGENLOCKI3DPROC": 2, + "PFNWGLENABLEGENLOCKI3DPROC": 2, + "PFNWGLGENLOCKSAMPLERATEI3DPROC": 2, + "uRate": 2, + "PFNWGLGENLOCKSOURCEDELAYI3DPROC": 2, + "uDelay": 2, + "PFNWGLGENLOCKSOURCEEDGEI3DPROC": 2, + "uEdge": 2, + "PFNWGLGENLOCKSOURCEI3DPROC": 2, + "uSource": 2, + "PFNWGLGETGENLOCKSAMPLERATEI3DPROC": 2, + "PFNWGLGETGENLOCKSOURCEDELAYI3DPROC": 2, + "PFNWGLGETGENLOCKSOURCEEDGEI3DPROC": 2, + "PFNWGLGETGENLOCKSOURCEI3DPROC": 2, + "PFNWGLISENABLEDGENLOCKI3DPROC": 2, + "BOOL*": 3, + "pFlag": 3, + "PFNWGLQUERYGENLOCKMAXSOURCEDELAYI3DPROC": 2, + "uMaxLineDelay": 1, + "*uMaxPixelDelay": 1, + "wglDisableGenlockI3D": 1, + "__wglewDisableGenlockI3D": 2, + "wglEnableGenlockI3D": 1, + "__wglewEnableGenlockI3D": 2, + "wglGenlockSampleRateI3D": 1, + "__wglewGenlockSampleRateI3D": 2, + "wglGenlockSourceDelayI3D": 1, + "__wglewGenlockSourceDelayI3D": 2, + "wglGenlockSourceEdgeI3D": 1, + "__wglewGenlockSourceEdgeI3D": 2, + "wglGenlockSourceI3D": 1, + "__wglewGenlockSourceI3D": 2, + "wglGetGenlockSampleRateI3D": 1, + "__wglewGetGenlockSampleRateI3D": 2, + "wglGetGenlockSourceDelayI3D": 1, + "__wglewGetGenlockSourceDelayI3D": 2, + "wglGetGenlockSourceEdgeI3D": 1, + "__wglewGetGenlockSourceEdgeI3D": 2, + "wglGetGenlockSourceI3D": 1, + "__wglewGetGenlockSourceI3D": 2, + "wglIsEnabledGenlockI3D": 1, + "__wglewIsEnabledGenlockI3D": 2, + "wglQueryGenlockMaxSourceDelayI3D": 1, + "__wglewQueryGenlockMaxSourceDelayI3D": 2, + "WGLEW_I3D_genlock": 1, + "__WGLEW_I3D_genlock": 2, + "WGL_I3D_image_buffer": 2, + "WGL_IMAGE_BUFFER_MIN_ACCESS_I3D": 1, + "WGL_IMAGE_BUFFER_LOCK_I3D": 1, + "PFNWGLASSOCIATEIMAGEBUFFEREVENTSI3DPROC": 2, + "HANDLE*": 3, + "pEvent": 1, + "LPVOID": 3, + "*pAddress": 1, + "DWORD": 5, + "*pSize": 1, + "count": 17, + "PFNWGLCREATEIMAGEBUFFERI3DPROC": 2, + "dwSize": 1, + "uFlags": 1, + "PFNWGLDESTROYIMAGEBUFFERI3DPROC": 2, + "pAddress": 2, + "PFNWGLRELEASEIMAGEBUFFEREVENTSI3DPROC": 2, + "LPVOID*": 1, + "wglAssociateImageBufferEventsI3D": 1, + "__wglewAssociateImageBufferEventsI3D": 2, + "wglCreateImageBufferI3D": 1, + "__wglewCreateImageBufferI3D": 2, + "wglDestroyImageBufferI3D": 1, + "__wglewDestroyImageBufferI3D": 2, + "wglReleaseImageBufferEventsI3D": 1, + "__wglewReleaseImageBufferEventsI3D": 2, + "WGLEW_I3D_image_buffer": 1, + "__WGLEW_I3D_image_buffer": 2, + "WGL_I3D_swap_frame_lock": 2, + "PFNWGLDISABLEFRAMELOCKI3DPROC": 2, + "PFNWGLENABLEFRAMELOCKI3DPROC": 2, + "PFNWGLISENABLEDFRAMELOCKI3DPROC": 2, + "PFNWGLQUERYFRAMELOCKMASTERI3DPROC": 2, + "wglDisableFrameLockI3D": 1, + "__wglewDisableFrameLockI3D": 2, + "wglEnableFrameLockI3D": 1, + "__wglewEnableFrameLockI3D": 2, + "wglIsEnabledFrameLockI3D": 1, + "__wglewIsEnabledFrameLockI3D": 2, + "wglQueryFrameLockMasterI3D": 1, + "__wglewQueryFrameLockMasterI3D": 2, + "WGLEW_I3D_swap_frame_lock": 1, + "__WGLEW_I3D_swap_frame_lock": 2, + "WGL_I3D_swap_frame_usage": 2, + "PFNWGLBEGINFRAMETRACKINGI3DPROC": 2, + "PFNWGLENDFRAMETRACKINGI3DPROC": 2, + "PFNWGLGETFRAMEUSAGEI3DPROC": 2, + "float*": 1, + "pUsage": 1, + "PFNWGLQUERYFRAMETRACKINGI3DPROC": 2, + "DWORD*": 1, + "pFrameCount": 1, + "*pMissedFrames": 1, + "float": 26, + "*pLastMissedUsage": 1, + "wglBeginFrameTrackingI3D": 1, + "__wglewBeginFrameTrackingI3D": 2, + "wglEndFrameTrackingI3D": 1, + "__wglewEndFrameTrackingI3D": 2, + "wglGetFrameUsageI3D": 1, + "__wglewGetFrameUsageI3D": 2, + "wglQueryFrameTrackingI3D": 1, + "__wglewQueryFrameTrackingI3D": 2, + "WGLEW_I3D_swap_frame_usage": 1, + "__WGLEW_I3D_swap_frame_usage": 2, + "WGL_NV_DX_interop": 2, + "WGL_ACCESS_READ_ONLY_NV": 1, + "WGL_ACCESS_READ_WRITE_NV": 1, + "WGL_ACCESS_WRITE_DISCARD_NV": 1, + "PFNWGLDXCLOSEDEVICENVPROC": 2, + "hDevice": 9, + "PFNWGLDXLOCKOBJECTSNVPROC": 2, + "hObjects": 2, + "PFNWGLDXOBJECTACCESSNVPROC": 2, + "hObject": 2, + "access": 2, + "PFNWGLDXOPENDEVICENVPROC": 2, + "dxDevice": 1, + "PFNWGLDXREGISTEROBJECTNVPROC": 2, + "dxObject": 2, + "name": 28, + "type": 36, + "PFNWGLDXSETRESOURCESHAREHANDLENVPROC": 2, + "shareHandle": 1, + "PFNWGLDXUNLOCKOBJECTSNVPROC": 2, + "PFNWGLDXUNREGISTEROBJECTNVPROC": 2, + "wglDXCloseDeviceNV": 1, + "__wglewDXCloseDeviceNV": 2, + "wglDXLockObjectsNV": 1, + "__wglewDXLockObjectsNV": 2, + "wglDXObjectAccessNV": 1, + "__wglewDXObjectAccessNV": 2, + "wglDXOpenDeviceNV": 1, + "__wglewDXOpenDeviceNV": 2, + "wglDXRegisterObjectNV": 1, + "__wglewDXRegisterObjectNV": 2, + "wglDXSetResourceShareHandleNV": 1, + "__wglewDXSetResourceShareHandleNV": 2, + "wglDXUnlockObjectsNV": 1, + "__wglewDXUnlockObjectsNV": 2, + "wglDXUnregisterObjectNV": 1, + "__wglewDXUnregisterObjectNV": 2, + "WGLEW_NV_DX_interop": 1, + "__WGLEW_NV_DX_interop": 2, + "WGL_NV_copy_image": 2, + "PFNWGLCOPYIMAGESUBDATANVPROC": 2, + "hSrcRC": 1, + "srcName": 1, + "srcTarget": 1, + "srcLevel": 1, + "srcX": 1, + "srcY": 1, + "srcZ": 1, + "hDstRC": 1, + "dstName": 1, + "dstTarget": 1, + "dstLevel": 1, + "dstX": 1, + "dstY": 1, + "dstZ": 1, + "GLsizei": 4, + "depth": 2, + "wglCopyImageSubDataNV": 1, + "__wglewCopyImageSubDataNV": 2, + "WGLEW_NV_copy_image": 1, + "__WGLEW_NV_copy_image": 2, + "WGL_NV_float_buffer": 2, + "WGL_FLOAT_COMPONENTS_NV": 1, + "B0": 1, + "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_R_NV": 1, + "B1": 1, + "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RG_NV": 1, + "B2": 1, + "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGB_NV": 1, + "B3": 1, + "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGBA_NV": 1, + "B4": 1, + "WGL_TEXTURE_FLOAT_R_NV": 1, + "B5": 1, + "WGL_TEXTURE_FLOAT_RG_NV": 1, + "B6": 1, + "WGL_TEXTURE_FLOAT_RGB_NV": 1, + "B7": 1, + "WGL_TEXTURE_FLOAT_RGBA_NV": 1, + "B8": 1, + "WGLEW_NV_float_buffer": 1, + "__WGLEW_NV_float_buffer": 2, + "WGL_NV_gpu_affinity": 2, + "WGL_ERROR_INCOMPATIBLE_AFFINITY_MASKS_NV": 1, + "D0": 1, + "WGL_ERROR_MISSING_AFFINITY_MASK_NV": 1, + "D1": 1, + "HGPUNV": 5, + "_GPU_DEVICE": 1, + "cb": 1, + "CHAR": 2, + "DeviceName": 1, + "DeviceString": 1, + "Flags": 1, + "RECT": 1, + "rcVirtualScreen": 1, + "GPU_DEVICE": 1, + "*PGPU_DEVICE": 1, + "PFNWGLCREATEAFFINITYDCNVPROC": 2, + "*phGpuList": 1, + "PFNWGLDELETEDCNVPROC": 2, + "PFNWGLENUMGPUDEVICESNVPROC": 2, + "hGpu": 1, + "iDeviceIndex": 1, + "PGPU_DEVICE": 1, + "lpGpuDevice": 1, + "PFNWGLENUMGPUSFROMAFFINITYDCNVPROC": 2, + "hAffinityDC": 1, + "iGpuIndex": 2, + "*hGpu": 1, + "PFNWGLENUMGPUSNVPROC": 2, + "*phGpu": 1, + "wglCreateAffinityDCNV": 1, + "__wglewCreateAffinityDCNV": 2, + "wglDeleteDCNV": 1, + "__wglewDeleteDCNV": 2, + "wglEnumGpuDevicesNV": 1, + "__wglewEnumGpuDevicesNV": 2, + "wglEnumGpusFromAffinityDCNV": 1, + "__wglewEnumGpusFromAffinityDCNV": 2, + "wglEnumGpusNV": 1, + "__wglewEnumGpusNV": 2, + "WGLEW_NV_gpu_affinity": 1, + "__WGLEW_NV_gpu_affinity": 2, + "WGL_NV_multisample_coverage": 2, + "WGL_COVERAGE_SAMPLES_NV": 1, + "WGL_COLOR_SAMPLES_NV": 1, + "B9": 1, + "WGLEW_NV_multisample_coverage": 1, + "__WGLEW_NV_multisample_coverage": 2, + "WGL_NV_present_video": 2, + "WGL_NUM_VIDEO_SLOTS_NV": 1, + "F0": 1, + "HVIDEOOUTPUTDEVICENV": 2, + "PFNWGLBINDVIDEODEVICENVPROC": 2, + "hDc": 6, + "uVideoSlot": 2, + "hVideoDevice": 4, + "PFNWGLENUMERATEVIDEODEVICESNVPROC": 2, + "HVIDEOOUTPUTDEVICENV*": 1, + "phDeviceList": 2, + "PFNWGLQUERYCURRENTCONTEXTNVPROC": 2, + "wglBindVideoDeviceNV": 1, + "__wglewBindVideoDeviceNV": 2, + "wglEnumerateVideoDevicesNV": 1, + "__wglewEnumerateVideoDevicesNV": 2, + "wglQueryCurrentContextNV": 1, + "__wglewQueryCurrentContextNV": 2, + "WGLEW_NV_present_video": 1, + "__WGLEW_NV_present_video": 2, + "WGL_NV_render_depth_texture": 2, + "WGL_BIND_TO_TEXTURE_DEPTH_NV": 1, + "WGL_BIND_TO_TEXTURE_RECTANGLE_DEPTH_NV": 1, + "WGL_DEPTH_TEXTURE_FORMAT_NV": 1, + "WGL_TEXTURE_DEPTH_COMPONENT_NV": 1, + "WGL_DEPTH_COMPONENT_NV": 1, + "WGLEW_NV_render_depth_texture": 1, + "__WGLEW_NV_render_depth_texture": 2, + "WGL_NV_render_texture_rectangle": 2, + "WGL_BIND_TO_TEXTURE_RECTANGLE_RGB_NV": 1, + "WGL_BIND_TO_TEXTURE_RECTANGLE_RGBA_NV": 1, + "A1": 1, + "WGL_TEXTURE_RECTANGLE_NV": 1, + "WGLEW_NV_render_texture_rectangle": 1, + "__WGLEW_NV_render_texture_rectangle": 2, + "WGL_NV_swap_group": 2, + "PFNWGLBINDSWAPBARRIERNVPROC": 2, + "group": 3, + "barrier": 1, + "PFNWGLJOINSWAPGROUPNVPROC": 2, + "PFNWGLQUERYFRAMECOUNTNVPROC": 2, + "GLuint*": 3, + "PFNWGLQUERYMAXSWAPGROUPSNVPROC": 2, + "maxGroups": 1, + "*maxBarriers": 1, + "PFNWGLQUERYSWAPGROUPNVPROC": 2, + "*barrier": 1, + "PFNWGLRESETFRAMECOUNTNVPROC": 2, + "wglBindSwapBarrierNV": 1, + "__wglewBindSwapBarrierNV": 2, + "wglJoinSwapGroupNV": 1, + "__wglewJoinSwapGroupNV": 2, + "wglQueryFrameCountNV": 1, + "__wglewQueryFrameCountNV": 2, + "wglQueryMaxSwapGroupsNV": 1, + "__wglewQueryMaxSwapGroupsNV": 2, + "wglQuerySwapGroupNV": 1, + "__wglewQuerySwapGroupNV": 2, + "wglResetFrameCountNV": 1, + "__wglewResetFrameCountNV": 2, + "WGLEW_NV_swap_group": 1, + "__WGLEW_NV_swap_group": 2, + "WGL_NV_vertex_array_range": 2, + "PFNWGLALLOCATEMEMORYNVPROC": 2, + "GLfloat": 3, + "readFrequency": 1, + "writeFrequency": 1, + "priority": 1, + "PFNWGLFREEMEMORYNVPROC": 2, + "*pointer": 1, + "wglAllocateMemoryNV": 1, + "__wglewAllocateMemoryNV": 2, + "wglFreeMemoryNV": 1, + "__wglewFreeMemoryNV": 2, + "WGLEW_NV_vertex_array_range": 1, + "__WGLEW_NV_vertex_array_range": 2, + "WGL_NV_video_capture": 2, + "WGL_UNIQUE_ID_NV": 1, + "CE": 1, + "WGL_NUM_VIDEO_CAPTURE_SLOTS_NV": 1, + "CF": 1, + "HVIDEOINPUTDEVICENV": 5, + "PFNWGLBINDVIDEOCAPTUREDEVICENVPROC": 2, + "PFNWGLENUMERATEVIDEOCAPTUREDEVICESNVPROC": 2, + "HVIDEOINPUTDEVICENV*": 1, + "PFNWGLLOCKVIDEOCAPTUREDEVICENVPROC": 2, + "PFNWGLQUERYVIDEOCAPTUREDEVICENVPROC": 2, + "PFNWGLRELEASEVIDEOCAPTUREDEVICENVPROC": 2, + "wglBindVideoCaptureDeviceNV": 1, + "__wglewBindVideoCaptureDeviceNV": 2, + "wglEnumerateVideoCaptureDevicesNV": 1, + "__wglewEnumerateVideoCaptureDevicesNV": 2, + "wglLockVideoCaptureDeviceNV": 1, + "__wglewLockVideoCaptureDeviceNV": 2, + "wglQueryVideoCaptureDeviceNV": 1, + "__wglewQueryVideoCaptureDeviceNV": 2, + "wglReleaseVideoCaptureDeviceNV": 1, + "__wglewReleaseVideoCaptureDeviceNV": 2, + "WGLEW_NV_video_capture": 1, + "__WGLEW_NV_video_capture": 2, + "WGL_NV_video_output": 2, + "WGL_BIND_TO_VIDEO_RGB_NV": 1, + "C0": 3, + "WGL_BIND_TO_VIDEO_RGBA_NV": 1, + "C1": 1, + "WGL_BIND_TO_VIDEO_RGB_AND_DEPTH_NV": 1, + "C2": 1, + "WGL_VIDEO_OUT_COLOR_NV": 1, + "C3": 1, + "WGL_VIDEO_OUT_ALPHA_NV": 1, + "C4": 1, + "WGL_VIDEO_OUT_DEPTH_NV": 1, + "C5": 1, + "WGL_VIDEO_OUT_COLOR_AND_ALPHA_NV": 1, + "C6": 1, + "WGL_VIDEO_OUT_COLOR_AND_DEPTH_NV": 1, + "C7": 1, + "WGL_VIDEO_OUT_FRAME": 1, + "C8": 1, + "WGL_VIDEO_OUT_FIELD_1": 1, + "C9": 1, + "WGL_VIDEO_OUT_FIELD_2": 1, + "CA": 1, + "WGL_VIDEO_OUT_STACKED_FIELDS_1_2": 1, + "CB": 1, + "WGL_VIDEO_OUT_STACKED_FIELDS_2_1": 1, + "CC": 1, + "HPVIDEODEV": 4, + "PFNWGLBINDVIDEOIMAGENVPROC": 2, + "iVideoBuffer": 2, + "PFNWGLGETVIDEODEVICENVPROC": 2, + "numDevices": 1, + "HPVIDEODEV*": 1, + "PFNWGLGETVIDEOINFONVPROC": 2, + "hpVideoDevice": 1, + "long*": 2, + "pulCounterOutputPbuffer": 1, + "long": 105, + "*pulCounterOutputVideo": 1, + "PFNWGLRELEASEVIDEODEVICENVPROC": 2, + "PFNWGLRELEASEVIDEOIMAGENVPROC": 2, + "PFNWGLSENDPBUFFERTOVIDEONVPROC": 2, + "iBufferType": 1, + "pulCounterPbuffer": 1, + "bBlock": 1, + "wglBindVideoImageNV": 1, + "__wglewBindVideoImageNV": 2, + "wglGetVideoDeviceNV": 1, + "__wglewGetVideoDeviceNV": 2, + "wglGetVideoInfoNV": 1, + "__wglewGetVideoInfoNV": 2, + "wglReleaseVideoDeviceNV": 1, + "__wglewReleaseVideoDeviceNV": 2, + "wglReleaseVideoImageNV": 1, + "__wglewReleaseVideoImageNV": 2, + "wglSendPbufferToVideoNV": 1, + "__wglewSendPbufferToVideoNV": 2, + "WGLEW_NV_video_output": 1, + "__WGLEW_NV_video_output": 2, + "WGL_OML_sync_control": 2, + "PFNWGLGETMSCRATEOMLPROC": 2, + "INT32*": 1, + "numerator": 1, + "INT32": 1, + "*denominator": 1, + "PFNWGLGETSYNCVALUESOMLPROC": 2, + "INT64*": 3, + "ust": 7, + "INT64": 18, + "*msc": 3, + "*sbc": 3, + "PFNWGLSWAPBUFFERSMSCOMLPROC": 2, + "target_msc": 3, + "divisor": 3, + "remainder": 3, + "PFNWGLSWAPLAYERBUFFERSMSCOMLPROC": 2, + "fuPlanes": 1, + "PFNWGLWAITFORMSCOMLPROC": 2, + "PFNWGLWAITFORSBCOMLPROC": 2, + "target_sbc": 1, + "wglGetMscRateOML": 1, + "__wglewGetMscRateOML": 2, + "wglGetSyncValuesOML": 1, + "__wglewGetSyncValuesOML": 2, + "wglSwapBuffersMscOML": 1, + "__wglewSwapBuffersMscOML": 2, + "wglSwapLayerBuffersMscOML": 1, + "__wglewSwapLayerBuffersMscOML": 2, + "wglWaitForMscOML": 1, + "__wglewWaitForMscOML": 2, + "wglWaitForSbcOML": 1, + "__wglewWaitForSbcOML": 2, + "WGLEW_OML_sync_control": 1, + "__WGLEW_OML_sync_control": 2, + "GLEW_MX": 4, + "WGLEW_EXPORT": 167, + "GLEWAPI": 6, + "WGLEWContextStruct": 2, + "WGLEWContext": 1, + "wglewContextInit": 2, + "WGLEWContext*": 2, + "ctx": 16, + "wglewContextIsSupported": 2, + "wglewInit": 1, + "wglewGetContext": 4, + "wglewIsSupported": 2, + "wglewGetExtension": 1, + "#undef": 7, + "BLOB_H": 2, + "*blob_type": 2, + "blob": 6, + "object": 41, + "*lookup_blob": 2, + "*sha1": 16, + "parse_blob_buffer": 2, + "*item": 10, + "*buffer": 6, + "": 1, + "_Included_jni_JniLayer": 2, + "JNIEXPORT": 6, + "jlong": 6, + "JNICALL": 6, + "Java_jni_JniLayer_jni_1layer_1initialize": 1, + "JNIEnv": 6, + "jobject": 6, + "jintArray": 1, + "jint": 7, + "Java_jni_JniLayer_jni_1layer_1mainloop": 1, + "Java_jni_JniLayer_jni_1layer_1set_1button": 1, + "Java_jni_JniLayer_jni_1layer_1set_1analog": 1, + "jfloat": 1, + "Java_jni_JniLayer_jni_1layer_1report_1analog_1chg": 1, + "Java_jni_JniLayer_jni_1layer_1kill": 1, + "REFU_USTRING_H": 2, + "": 1, + "RF_MODULE_STRINGS//": 1, + "check": 8, + "the": 91, + "strings": 5, + "are": 6, + "as": 4, + "a": 80, + "module": 3, + "": 2, + "": 1, + "//": 262, + "argument": 1, + "": 2, + "local": 5, + "memory": 4, + "function": 6, + "wrapping": 1, + "functionality": 1, + "": 1, + "unicode": 2, + "opening": 2, + "bracket": 4, + "calling": 4, + "from": 16, + "RF_CASE_IGNORE": 2, + "RF_MATCH_WORD": 5, + "RF_STRING_INDEX_OUT_OF_BOUNDS": 2, + "uint32_t": 144, + "xFF0FFFF": 1, + "rfUTF8_IsContinuationByte2": 1, + "b__": 3, + "<=>": 16, + "0xBF": 1, + "pragma": 1, + "pack": 2, + "push": 1, + "1": 2, + "internal": 4, + "author": 1, + "Lefteris": 1, + "date": 5, + "09": 1, + "12": 1, + "2010": 1, + "endinternal": 1, + "brief": 1, + "String": 11, + "with": 9, + "UTF": 17, + "8": 15, + "representation": 2, + "The": 1, + "Refu": 2, + "is": 17, + "Unicode": 1, + "that": 9, + "has": 2, + "two": 1, + "versions": 1, + "One": 1, + "this": 5, + "and": 15, + "other": 16, + "ref": 1, + "RF_StringX": 2, + "to": 37, + "see": 2, + "what": 1, + "operations": 1, + "can": 2, + "be": 6, + "performed": 1, + "on": 4, + "extended": 3, + "Strings": 2, + "Functions": 1, + "convert": 1, + "all": 2, + "encoding": 14, + "exists": 6, + "but": 1, + "always": 2, + "at": 3, + "Once": 1, + "been": 1, + "created": 1, + "it": 12, + "assumed": 1, + "stream": 3, + "of": 44, + "bytes": 225, + "inside": 2, + "valid": 1, + "since": 5, + "every": 1, + "performs": 1, + "unless": 1, + "otherwise": 1, + "specified": 1, + "All": 1, + "functions": 2, + "which": 1, + "have": 2, + "isinherited": 1, + "StringX": 2, + "their": 1, + "description": 1, + "used": 10, + "safely": 1, + "no": 4, + "specific": 1, + "version": 4, + "or": 1, + "needs": 1, + "exist": 2, + "manipulate": 1, + "Extended": 1, + "To": 1, + "make": 3, + "documentation": 1, + "even": 1, + "clearer": 1, + "should": 2, + "not": 6, + "string": 18, + "marked": 1, + "notinherited": 1, + "cppcode": 1, + "default": 33, + "constructor": 1, + "i_StringCHandle": 1, + "rfString_Create": 4, + "**": 6, + "@endcpp": 1, + "@endinternal": 1, + "*/": 1, + "RF_String": 27, + "byteLength": 197, + "#pragma": 1, + "pop": 1, + "RF_IAMHERE_FOR_DOXYGEN": 22, + "RF_String*": 222, + "RFS_": 8, + "s": 154, + "...": 127, + "i_rfString_CreateLocal": 2, + "__VA_ARGS__": 66, + "RF_OPTION_DEFAULT_ARGUMENTS": 24, + "i_DECLIMEX_": 121, + "i_rfString_Create": 3, + "i_NVrfString_Create": 3, + "RP_SELECT_FUNC_IF_NARGIS": 5, + "i_SELECT_RF_STRING_CREATE": 1, + "i_SELECT_RF_STRING_CREATE1": 1, + "i_SELECT_RF_STRING_CREATE0": 1, + "///Internal": 1, + "creates": 1, + "temporary": 4, + "i_rfString_CreateLocal1": 3, + "i_NVrfString_CreateLocal": 3, + "i_SELECT_RF_STRING_CREATELOCAL": 1, + "i_SELECT_RF_STRING_CREATELOCAL1": 1, + "i_SELECT_RF_STRING_CREATELOCAL0": 1, + "rfString_Init": 3, + "str": 162, + "i_rfString_Init": 3, + "i_NVrfString_Init": 3, + "i_SELECT_RF_STRING_INIT": 1, + "i_SELECT_RF_STRING_INIT1": 1, + "i_SELECT_RF_STRING_INIT0": 1, + "rfString_Create_cp": 2, + "code": 6, + "rfString_Init_cp": 3, + "rfString_Create_nc": 3, + "i_rfString_Create_nc": 3, + "i_NVrfString_Create_nc": 3, + "i_SELECT_RF_STRING_CREATE_NC": 1, + "i_SELECT_RF_STRING_CREATE_NC1": 1, + "i_SELECT_RF_STRING_CREATE_NC0": 1, + "rfString_Init_nc": 4, + "i_rfString_Init_nc": 3, + "i_NVrfString_Init_nc": 3, + "i_SELECT_RF_STRING_INIT_NC": 1, + "i_SELECT_RF_STRING_INIT_NC1": 1, + "i_SELECT_RF_STRING_INIT_NC0": 1, + "rfString_Create_i": 2, + "int32_t": 112, + "rfString_Init_i": 2, + "rfString_Create_f": 2, + "f": 184, + "rfString_Init_f": 2, + "rfString_Create_UTF16": 2, + "endianess": 40, + "rfString_Init_UTF16": 3, + "rfString_Create_UTF32": 2, + "rfString_Init_UTF32": 3, + "//@": 1, + "rfString_Assign": 2, + "dest": 7, + "source": 8, + "i_rfString_Assign": 3, + "i_DESTINATION_": 2, + "i_SOURCE_": 2, + "i_rfLMS_WRAP2": 5, + "rfString_Assign_char": 2, + "thisstr": 210, + "character": 11, + "rfString_Destroy": 2, + "rfString_Deinit": 3, + "rfString_ToUTF8": 2, + "i_STRING_": 2, + "rfString_ToCstr": 2, + "uint16_t*": 11, + "rfString_ToUTF16": 4, + "uint32_t*": 34, + "rfString_ToUTF32": 4, + "uint32_t*length": 1, + "iteration": 6, + "/": 9, + "rfString_Iterate_Start": 6, + "string_": 9, + "startCharacterPos_": 4, + "characterUnicodeValue_": 4, + "byteIndex_": 12, + "j_": 6, + "rfUTF8_IsContinuationByte": 12, + "false": 77, + "rfString_BytePosToCodePoint": 7, + "rfString_Iterate_End": 4, + "//Two": 1, + "macros": 1, + "accomplish": 1, + "an": 2, + "any": 3, + "given": 5, + "going": 1, + "backwards.": 1, + "This": 1, + "macro": 2, + "its": 1, + "pair.": 1, + "rfString_IterateB_Start": 1, + "characterPos_": 5, + "b_index_": 6, + "int64_t": 2, + "c_index_": 3, + "rfString_IterateB_End": 1, + "rfString_Length": 5, + "rfString_GetChar": 2, + "c": 252, + "bytepos": 12, + "rfString_BytePosToCharPos": 4, + "rfString_Equal": 4, + "i_rfString_Equal": 3, + "i_STRING1_": 2, + "i_STRING2_": 2, + "i_rfLMSX_WRAP2": 4, + "rfString_Find": 3, + "sstr": 39, + "options": 62, + "i_rfString_Find": 5, + "i_THISSTR_": 60, + "i_SEARCHSTR_": 26, + "i_OPTIONS_": 28, + "i_rfLMS_WRAP3": 4, + "i_RFI8_": 54, + "RF_SELECT_FUNC_IF_NARGGT": 10, + "i_NPSELECT_RF_STRING_FIND": 1, + "i_NPSELECT_RF_STRING_FIND1": 1, + "RF_COMPILE_ERROR": 33, + "i_NPSELECT_RF_STRING_FIND0": 1, + "RF_SELECT_FUNC": 10, + "i_SELECT_RF_STRING_FIND": 1, + "i_SELECT_RF_STRING_FIND2": 1, + "i_SELECT_RF_STRING_FIND3": 1, + "i_SELECT_RF_STRING_FIND1": 1, + "i_SELECT_RF_STRING_FIND0": 1, + "rfString_ToInt": 1, + "int32_t*": 1, + "v": 11, + "rfString_ToDouble": 1, + "double*": 1, + "rfString_Copy_OUT": 2, + "src": 16, + "rfString_Copy_IN": 2, + "dst": 15, + "rfString_Copy_chars": 2, + "rfString_ScanfAfter": 2, + "afterstr": 5, + "format": 4, + "var": 7, + "i_rfString_ScanfAfter": 3, + "i_AFTERSTR_": 8, + "i_FORMAT_": 2, + "i_VAR_": 2, + "i_rfLMSX_WRAP4": 11, + "rfString_Count": 4, + "i_rfString_Count": 5, + "i_NPSELECT_RF_STRING_COUNT": 1, + "i_NPSELECT_RF_STRING_COUNT1": 1, + "i_NPSELECT_RF_STRING_COUNT0": 1, + "i_SELECT_RF_STRING_COUNT": 1, + "i_SELECT_RF_STRING_COUNT2": 1, + "i_rfLMSX_WRAP3": 5, + "i_SELECT_RF_STRING_COUNT3": 1, + "i_SELECT_RF_STRING_COUNT1": 1, + "i_SELECT_RF_STRING_COUNT0": 1, + "rfString_Tokenize": 2, + "sep": 3, + "tokensN": 2, + "RF_String**": 2, + "tokens": 5, + "rfString_Between": 3, + "lstr": 6, + "rstr": 24, + "result": 48, + "i_rfString_Between": 4, + "i_NPSELECT_RF_STRING_BETWEEN": 1, + "i_NPSELECT_RF_STRING_BETWEEN1": 1, + "i_NPSELECT_RF_STRING_BETWEEN0": 1, + "i_SELECT_RF_STRING_BETWEEN": 1, + "i_SELECT_RF_STRING_BETWEEN4": 1, + "i_LEFTSTR_": 6, + "i_RIGHTSTR_": 6, + "i_RESULT_": 12, + "i_rfLMSX_WRAP5": 9, + "i_SELECT_RF_STRING_BETWEEN5": 1, + "i_SELECT_RF_STRING_BETWEEN3": 1, + "i_SELECT_RF_STRING_BETWEEN2": 1, + "i_SELECT_RF_STRING_BETWEEN1": 1, + "i_SELECT_RF_STRING_BETWEEN0": 1, + "rfString_Beforev": 4, + "parN": 10, + "i_rfString_Beforev": 16, + "i_NPSELECT_RF_STRING_BEFOREV": 1, + "i_NPSELECT_RF_STRING_BEFOREV1": 1, + "RF_SELECT_FUNC_IF_NARGGT2": 2, + "i_LIMSELECT_RF_STRING_BEFOREV": 1, + "i_NPSELECT_RF_STRING_BEFOREV0": 1, + "i_LIMSELECT_RF_STRING_BEFOREV1": 1, + "i_LIMSELECT_RF_STRING_BEFOREV0": 1, + "i_SELECT_RF_STRING_BEFOREV": 1, + "i_SELECT_RF_STRING_BEFOREV5": 1, + "i_ARG1_": 56, + "i_ARG2_": 56, + "i_ARG3_": 56, + "i_ARG4_": 56, + "i_RFUI8_": 28, + "i_SELECT_RF_STRING_BEFOREV6": 1, + "i_rfLMSX_WRAP6": 2, + "i_SELECT_RF_STRING_BEFOREV7": 1, + "i_rfLMSX_WRAP7": 2, + "i_SELECT_RF_STRING_BEFOREV8": 1, + "i_rfLMSX_WRAP8": 2, + "i_SELECT_RF_STRING_BEFOREV9": 1, + "i_rfLMSX_WRAP9": 2, + "i_SELECT_RF_STRING_BEFOREV10": 1, + "i_rfLMSX_WRAP10": 2, + "i_SELECT_RF_STRING_BEFOREV11": 1, + "i_rfLMSX_WRAP11": 2, + "i_SELECT_RF_STRING_BEFOREV12": 1, + "i_rfLMSX_WRAP12": 2, + "i_SELECT_RF_STRING_BEFOREV13": 1, + "i_rfLMSX_WRAP13": 2, + "i_SELECT_RF_STRING_BEFOREV14": 1, + "i_rfLMSX_WRAP14": 2, + "i_SELECT_RF_STRING_BEFOREV15": 1, + "i_rfLMSX_WRAP15": 2, + "i_SELECT_RF_STRING_BEFOREV16": 1, + "i_rfLMSX_WRAP16": 2, + "i_SELECT_RF_STRING_BEFOREV17": 1, + "i_rfLMSX_WRAP17": 2, + "i_SELECT_RF_STRING_BEFOREV18": 1, + "i_rfLMSX_WRAP18": 2, + "rfString_Before": 3, + "i_rfString_Before": 5, + "i_NPSELECT_RF_STRING_BEFORE": 1, + "i_NPSELECT_RF_STRING_BEFORE1": 1, + "i_NPSELECT_RF_STRING_BEFORE0": 1, + "i_SELECT_RF_STRING_BEFORE": 1, + "i_SELECT_RF_STRING_BEFORE3": 1, + "i_SELECT_RF_STRING_BEFORE4": 1, + "i_SELECT_RF_STRING_BEFORE2": 1, + "i_SELECT_RF_STRING_BEFORE1": 1, + "i_SELECT_RF_STRING_BEFORE0": 1, + "rfString_After": 4, + "after": 6, + "out": 18, + "i_rfString_After": 5, + "i_NPSELECT_RF_STRING_AFTER": 1, + "i_NPSELECT_RF_STRING_AFTER1": 1, + "i_NPSELECT_RF_STRING_AFTER0": 1, + "i_SELECT_RF_STRING_AFTER": 1, + "i_SELECT_RF_STRING_AFTER3": 1, + "i_OUTSTR_": 6, + "i_SELECT_RF_STRING_AFTER4": 1, + "i_SELECT_RF_STRING_AFTER2": 1, + "i_SELECT_RF_STRING_AFTER1": 1, + "i_SELECT_RF_STRING_AFTER0": 1, + "rfString_Afterv": 4, + "i_rfString_Afterv": 16, + "i_NPSELECT_RF_STRING_AFTERV": 1, + "i_NPSELECT_RF_STRING_AFTERV1": 1, + "i_LIMSELECT_RF_STRING_AFTERV": 1, + "i_NPSELECT_RF_STRING_AFTERV0": 1, + "i_LIMSELECT_RF_STRING_AFTERV1": 1, + "i_LIMSELECT_RF_STRING_AFTERV0": 1, + "i_SELECT_RF_STRING_AFTERV": 1, + "i_SELECT_RF_STRING_AFTERV5": 1, + "i_SELECT_RF_STRING_AFTERV6": 1, + "i_SELECT_RF_STRING_AFTERV7": 1, + "i_SELECT_RF_STRING_AFTERV8": 1, + "i_SELECT_RF_STRING_AFTERV9": 1, + "i_SELECT_RF_STRING_AFTERV10": 1, + "i_SELECT_RF_STRING_AFTERV11": 1, + "i_SELECT_RF_STRING_AFTERV12": 1, + "i_SELECT_RF_STRING_AFTERV13": 1, + "i_SELECT_RF_STRING_AFTERV14": 1, + "i_SELECT_RF_STRING_AFTERV15": 1, + "i_SELECT_RF_STRING_AFTERV16": 1, + "i_SELECT_RF_STRING_AFTERV17": 1, + "i_SELECT_RF_STRING_AFTERV18": 1, + "rfString_Append": 5, + "i_rfString_Append": 3, + "i_OTHERSTR_": 4, + "rfString_Append_i": 2, + "rfString_Append_f": 2, + "rfString_Prepend": 2, + "i_rfString_Prepend": 3, + "rfString_Remove": 3, + "number": 19, + "i_rfString_Remove": 6, + "i_NPSELECT_RF_STRING_REMOVE": 1, + "i_NPSELECT_RF_STRING_REMOVE1": 1, + "i_NPSELECT_RF_STRING_REMOVE0": 1, + "i_SELECT_RF_STRING_REMOVE": 1, + "i_SELECT_RF_STRING_REMOVE2": 1, + "i_REPSTR_": 16, + "i_RFUI32_": 8, + "i_SELECT_RF_STRING_REMOVE3": 1, + "i_NUMBER_": 12, + "i_SELECT_RF_STRING_REMOVE4": 1, + "i_SELECT_RF_STRING_REMOVE1": 1, + "i_SELECT_RF_STRING_REMOVE0": 1, + "rfString_KeepOnly": 2, + "keepstr": 5, + "i_rfString_KeepOnly": 3, + "I_KEEPSTR_": 2, + "rfString_PruneStart": 2, + "rfString_PruneEnd": 2, + "rfString_PruneMiddleB": 2, + "p": 60, + "rfString_PruneMiddleF": 2, + "rfString_Replace": 3, + "i_rfString_Replace": 6, + "i_NPSELECT_RF_STRING_REPLACE": 1, + "i_NPSELECT_RF_STRING_REPLACE1": 1, + "i_NPSELECT_RF_STRING_REPLACE0": 1, + "i_SELECT_RF_STRING_REPLACE": 1, + "i_SELECT_RF_STRING_REPLACE3": 1, + "i_SELECT_RF_STRING_REPLACE4": 1, + "i_SELECT_RF_STRING_REPLACE5": 1, + "i_SELECT_RF_STRING_REPLACE2": 1, + "i_SELECT_RF_STRING_REPLACE1": 1, + "i_SELECT_RF_STRING_REPLACE0": 1, + "rfString_StripStart": 3, + "sub": 12, + "i_rfString_StripStart": 3, + "i_SUBSTR_": 6, + "rfString_StripEnd": 3, + "i_rfString_StripEnd": 3, + "rfString_Strip": 2, + "i_rfString_Strip": 3, + "rfString_Create_fUTF8": 2, + "FILE*": 64, + "eof": 53, + "rfString_Init_fUTF8": 3, + "rfString_Assign_fUTF8": 2, + "rfString_Append_fUTF8": 2, + "rfString_Create_fUTF16": 2, + "rfString_Init_fUTF16": 3, + "rfString_Append_fUTF16": 2, + "rfString_Assign_fUTF16": 2, + "rfString_Create_fUTF32": 2, + "rfString_Init_fUTF32": 3, + "rfString_Assign_fUTF32": 2, + "rfString_Append_fUTF32": 2, + "rfString_Fwrite": 2, + "i_rfString_Fwrite": 5, + "i_NPSELECT_RF_STRING_FWRITE": 1, + "i_NPSELECT_RF_STRING_FWRITE1": 1, + "i_NPSELECT_RF_STRING_FWRITE0": 1, + "i_SELECT_RF_STRING_FWRITE": 1, + "i_SELECT_RF_STRING_FWRITE3": 1, + "i_STR_": 8, + "i_FILE_": 16, + "i_ENCODING_": 4, + "i_SELECT_RF_STRING_FWRITE2": 1, + "RF_UTF8": 8, + "i_SELECT_RF_STRING_FWRITE1": 1, + "i_SELECT_RF_STRING_FWRITE0": 1, + "rfString_Fwrite_fUTF8": 1, + "closing": 1, + "include": 6, + "Attempted": 1, + "manipulation": 1, + "flag": 1, + "off.": 1, + "Rebuild": 1, + "library": 3, + "option": 9, + "added": 1, + "you": 1, + "need": 5, + "them": 3, + "#endif//": 1, + "guards": 2, + "": 4, + "": 2, + "": 1, + "": 1, + "": 2, + "__APPLE__": 2, + "TARGET_OS_IPHONE": 1, + "**environ": 1, + "uv__chld": 2, + "EV_P_": 1, + "ev_child*": 1, + "watcher": 4, + "revents": 2, + "status": 57, + "rstatus": 1, + "exit_status": 3, + "term_signal": 3, + "uv_process_t": 1, + "*process": 1, + "process": 19, + "child_watcher": 5, + "EV_CHILD": 1, + "ev_child_stop": 2, + "EV_A_": 1, + "WIFEXITED": 1, + "WEXITSTATUS": 2, + "WIFSIGNALED": 2, + "WTERMSIG": 2, + "exit_cb": 3, + "uv__make_socketpair": 2, + "fds": 20, + "flags": 89, + "SOCK_NONBLOCK": 2, + "fl": 8, + "SOCK_CLOEXEC": 1, + "UV__F_NONBLOCK": 5, + "socketpair": 2, + "AF_UNIX": 2, + "SOCK_STREAM": 2, + "errno": 20, + "EINVAL": 6, + "uv__cloexec": 4, + "uv__nonblock": 5, + "uv__make_pipe": 2, + "__linux__": 3, + "UV__O_CLOEXEC": 1, + "UV__O_NONBLOCK": 1, + "uv__pipe2": 1, + "ENOSYS": 1, + "pipe": 1, + "uv__process_init_stdio": 2, + "uv_stdio_container_t*": 4, + "container": 17, + "writable": 8, + "fd": 34, + "switch": 46, + "UV_IGNORE": 2, + "UV_CREATE_PIPE": 4, + "UV_INHERIT_FD": 3, + "UV_INHERIT_STREAM": 2, + "case": 273, + "data.stream": 7, + "UV_NAMED_PIPE": 2, + "data.fd": 1, + "uv__process_stdio_flags": 2, + "uv_pipe_t*": 1, + "ipc": 1, + "UV_STREAM_READABLE": 2, + "UV_STREAM_WRITABLE": 2, + "uv__process_open_stream": 2, + "child_fd": 3, + "close": 13, + "uv__stream_open": 1, + "uv_stream_t*": 2, + "uv__process_close_stream": 2, + "uv__stream_close": 1, + "uv__process_child_init": 2, + "uv_process_options_t": 2, + "stdio_count": 7, + "options.flags": 4, + "UV_PROCESS_DETACHED": 2, + "setsid": 2, + "close_fd": 2, + "use_fd": 7, + "open": 4, + "O_RDONLY": 1, + "O_RDWR": 2, + "perror": 5, + "_exit": 6, + "dup2": 4, + "options.cwd": 2, + "chdir": 2, + "UV_PROCESS_SETGID": 2, + "setgid": 1, + "options.gid": 1, + "UV_PROCESS_SETUID": 2, + "setuid": 1, + "options.uid": 1, + "environ": 4, + "options.env": 1, + "execvp": 1, + "options.file": 2, + "options.args": 1, + "SPAWN_WAIT_EXEC": 5, + "uv_spawn": 1, + "uv_loop_t*": 1, + "loop": 9, + "uv_process_t*": 3, + "char**": 7, + "save_our_env": 3, + "options.stdio_count": 4, + "malloc": 3, + "sizeof": 71, + "signal_pipe": 7, + "pollfd": 1, + "pfd": 2, + "pid_t": 2, + "pid": 13, + "ENOMEM": 4, + "goto": 159, + "error": 96, + "UV_PROCESS_WINDOWS_VERBATIM_ARGUMENTS": 1, + "uv__handle_init": 1, + "uv_handle_t*": 1, + "UV_PROCESS": 1, + "counters.process_init": 1, + "uv__handle_start": 1, + "options.exit_cb": 1, + "options.stdio": 3, + "fork": 2, + "do": 21, + "pfd.fd": 1, + "pfd.events": 1, + "POLLIN": 1, + "POLLHUP": 1, + "pfd.revents": 1, + "poll": 1, + "EINTR": 1, + "ev_child_init": 1, + "ev_child_start": 1, + "ev": 2, + "child_watcher.data": 1, + "uv__set_sys_error": 2, + "uv_process_kill": 1, + "signum": 4, + "r": 58, + "kill": 4, + "uv_err_t": 1, + "uv_kill": 1, + "uv__new_sys_error": 1, + "uv_ok_": 1, + "uv__process_close": 1, + "handle": 10, + "uv__handle_stop": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 2, + "": 1, + "": 2, + "": 1, + "": 3, + "": 1, + "sharedObjectsStruct": 1, + "shared": 1, + "double": 126, + "R_Zero": 2, + "R_PosInf": 2, + "R_NegInf": 2, + "R_Nan": 2, + "redisServer": 1, + "server": 1, + "redisCommand": 6, + "*commandTable": 1, + "redisCommandTable": 5, + "getCommand": 1, + "setCommand": 1, + "noPreloadGetKeys": 6, + "setnxCommand": 1, + "setexCommand": 1, + "psetexCommand": 1, + "appendCommand": 1, + "strlenCommand": 1, + "delCommand": 1, + "existsCommand": 1, + "setbitCommand": 1, + "getbitCommand": 1, + "setrangeCommand": 1, + "getrangeCommand": 2, + "incrCommand": 1, + "decrCommand": 1, + "mgetCommand": 1, + "rpushCommand": 1, + "lpushCommand": 1, + "rpushxCommand": 1, + "lpushxCommand": 1, + "linsertCommand": 1, + "rpopCommand": 1, + "lpopCommand": 1, + "brpopCommand": 1, + "brpoplpushCommand": 1, + "blpopCommand": 1, + "llenCommand": 1, + "lindexCommand": 1, + "lsetCommand": 1, + "lrangeCommand": 1, + "ltrimCommand": 1, + "lremCommand": 1, + "rpoplpushCommand": 1, + "saddCommand": 1, + "sremCommand": 1, + "smoveCommand": 1, + "sismemberCommand": 1, + "scardCommand": 1, + "spopCommand": 1, + "srandmemberCommand": 1, + "sinterCommand": 2, + "sinterstoreCommand": 1, + "sunionCommand": 1, + "sunionstoreCommand": 1, + "sdiffCommand": 1, + "sdiffstoreCommand": 1, + "zaddCommand": 1, + "zincrbyCommand": 1, + "zremCommand": 1, + "zremrangebyscoreCommand": 1, + "zremrangebyrankCommand": 1, + "zunionstoreCommand": 1, + "zunionInterGetKeys": 4, + "zinterstoreCommand": 1, + "zrangeCommand": 1, + "zrangebyscoreCommand": 1, + "zrevrangebyscoreCommand": 1, + "zcountCommand": 1, + "zrevrangeCommand": 1, + "zcardCommand": 1, + "zscoreCommand": 1, + "zrankCommand": 1, + "zrevrankCommand": 1, + "hsetCommand": 1, + "hsetnxCommand": 1, + "hgetCommand": 1, + "hmsetCommand": 1, + "hmgetCommand": 1, + "hincrbyCommand": 1, + "hincrbyfloatCommand": 1, + "hdelCommand": 1, + "hlenCommand": 1, + "hkeysCommand": 1, + "hvalsCommand": 1, + "hgetallCommand": 1, + "hexistsCommand": 1, + "incrbyCommand": 1, + "decrbyCommand": 1, + "incrbyfloatCommand": 1, + "getsetCommand": 1, + "msetCommand": 1, + "msetnxCommand": 1, + "randomkeyCommand": 1, + "selectCommand": 1, + "moveCommand": 1, + "renameCommand": 1, + "renameGetKeys": 2, + "renamenxCommand": 1, + "expireCommand": 1, + "expireatCommand": 1, + "pexpireCommand": 1, + "pexpireatCommand": 1, + "keysCommand": 1, + "dbsizeCommand": 1, + "authCommand": 3, + "pingCommand": 2, + "echoCommand": 2, + "saveCommand": 1, + "bgsaveCommand": 1, + "bgrewriteaofCommand": 1, + "shutdownCommand": 2, + "lastsaveCommand": 1, + "typeCommand": 1, + "multiCommand": 2, + "execCommand": 2, + "discardCommand": 2, + "syncCommand": 1, + "flushdbCommand": 1, + "flushallCommand": 1, + "sortCommand": 1, + "infoCommand": 4, + "monitorCommand": 2, + "ttlCommand": 1, + "pttlCommand": 1, + "persistCommand": 1, + "slaveofCommand": 2, + "debugCommand": 1, + "configCommand": 1, + "subscribeCommand": 2, + "unsubscribeCommand": 2, + "psubscribeCommand": 2, + "punsubscribeCommand": 2, + "publishCommand": 1, + "watchCommand": 2, + "unwatchCommand": 1, + "clusterCommand": 1, + "restoreCommand": 1, + "migrateCommand": 1, + "askingCommand": 1, + "dumpCommand": 1, + "objectCommand": 1, + "clientCommand": 1, + "evalCommand": 1, + "evalShaCommand": 1, + "slowlogCommand": 1, + "scriptCommand": 2, + "timeCommand": 2, + "bitopCommand": 1, + "bitcountCommand": 1, + "redisLogRaw": 3, + "level": 12, + "*msg": 7, + "syslogLevelMap": 2, + "LOG_DEBUG": 1, + "LOG_INFO": 1, + "LOG_NOTICE": 1, + "LOG_WARNING": 1, + "*c": 69, + "FILE": 3, + "*fp": 3, + "rawmode": 2, + "REDIS_LOG_RAW": 2, + "xff": 3, + "server.verbosity": 4, + "fp": 13, + "server.logfile": 8, + "stdout": 5, + "fopen": 3, + "fprintf": 18, + "msg": 10, + "off": 8, + "timeval": 4, + "tv": 8, + "gettimeofday": 4, + "strftime": 1, + "localtime": 1, + "tv.tv_sec": 4, + "snprintf": 2, + "tv.tv_usec/1000": 1, + "getpid": 7, + "fflush": 2, + "fclose": 5, + "server.syslog_enabled": 3, + "syslog": 1, + "redisLog": 33, + "*fmt": 2, + "va_list": 3, + "ap": 4, + "REDIS_MAX_LOGMSG_LEN": 1, + "va_start": 3, + "fmt": 4, + "vsnprintf": 1, + "va_end": 3, + "redisLogFromHandler": 2, + "server.daemonize": 5, + "O_APPEND": 2, + "O_CREAT": 2, + "O_WRONLY": 2, + "STDOUT_FILENO": 2, + "ll2string": 3, + "write": 7, + "err": 38, + "time": 10, + "oom": 3, + "REDIS_WARNING": 19, + "sleep": 1, + "abort": 1, + "ustime": 7, + "*1000000": 1, + "tv.tv_usec": 3, + "mstime": 5, + "/1000": 1, + "exitFromChild": 1, + "retcode": 3, + "COVERAGE_TEST": 1, + "exit": 20, + "dictVanillaFree": 1, + "*privdata": 8, + "*val": 6, + "DICT_NOTUSED": 6, + "privdata": 8, + "zfree": 2, + "val": 20, + "dictListDestructor": 2, + "listRelease": 1, + "list*": 1, + "dictSdsKeyCompare": 6, + "*key1": 4, + "*key2": 4, + "l1": 4, + "l2": 3, + "sdslen": 14, + "sds": 13, + "key1": 5, + "key2": 5, + "dictSdsKeyCaseCompare": 2, + "strcasecmp": 13, + "dictRedisObjectDestructor": 7, + "decrRefCount": 6, + "dictSdsDestructor": 4, + "sdsfree": 2, + "dictObjKeyCompare": 2, + "robj": 7, + "*o1": 2, + "*o2": 2, + "o1": 7, + "ptr": 18, + "o2": 7, + "dictObjHash": 2, + "*key": 5, + "*o": 8, + "key": 9, + "dictGenHashFunction": 5, + "o": 80, + "dictSdsHash": 4, + "dictSdsCaseHash": 2, + "dictGenCaseHashFunction": 1, + "dictEncObjKeyCompare": 4, + "robj*": 3, + "cmp": 9, + "REDIS_ENCODING_INT": 4, + "getDecodedObject": 3, + "dictEncObjHash": 4, + "REDIS_ENCODING_RAW": 1, + "len": 30, + "hash": 12, + "dictType": 8, + "setDictType": 1, + "zsetDictType": 1, + "dbDictType": 2, + "keyptrDictType": 2, + "commandTableDictType": 2, + "hashDictType": 1, + "keylistDictType": 4, + "clusterNodesDictType": 1, + "htNeedsResize": 3, + "dict": 11, + "*dict": 5, + "dictSlots": 3, + "dictSize": 10, + "DICT_HT_INITIAL_SIZE": 2, + "used*100/size": 1, + "REDIS_HT_MINFILL": 1, + "tryResizeHashTables": 2, + "server.dbnum": 8, + "server.db": 23, + ".dict": 9, + "dictResize": 2, + ".expires": 8, + "incrementallyRehash": 2, + "dictIsRehashing": 2, + "dictRehashMilliseconds": 2, + "updateDictResizePolicy": 2, + "server.rdb_child_pid": 12, + "server.aof_child_pid": 10, + "dictEnableResize": 1, + "dictDisableResize": 1, + "activeExpireCycle": 2, + "start": 10, + "timelimit": 5, + "*REDIS_EXPIRELOOKUPS_TIME_PERC/REDIS_HZ/100": 1, + "expired": 4, + "redisDb": 3, + "*db": 3, + "num": 24, + "db": 10, + "expires": 3, + "slots": 2, + "now": 5, + "num*100/slots": 1, + "REDIS_EXPIRELOOKUPS_PER_CRON": 2, + "dictEntry": 2, + "*de": 2, + "t": 32, + "de": 12, + "dictGetRandomKey": 4, + "dictGetSignedIntegerVal": 1, + "dictGetKey": 4, + "*keyobj": 2, + "createStringObject": 11, + "propagateExpire": 2, + "keyobj": 6, + "dbDelete": 2, + "server.stat_expiredkeys": 3, + "xf": 1, + "REDIS_EXPIRELOOKUPS_PER_CRON/4": 1, + "updateLRUClock": 3, + "server.lruclock": 2, + "server.unixtime/REDIS_LRU_CLOCK_RESOLUTION": 1, + "REDIS_LRU_CLOCK_MAX": 1, + "trackOperationsPerSecond": 2, + "server.ops_sec_last_sample_time": 3, + "ops": 1, + "server.stat_numcommands": 4, + "server.ops_sec_last_sample_ops": 3, + "ops_sec": 3, + "ops*1000/t": 1, + "server.ops_sec_samples": 4, + "server.ops_sec_idx": 4, + "%": 2, + "REDIS_OPS_SEC_SAMPLES": 3, + "getOperationsPerSecond": 2, + "sum": 3, + "clientsCronHandleTimeout": 2, + "redisClient": 12, + "time_t": 4, + "server.unixtime": 10, + "server.maxidletime": 3, + "REDIS_SLAVE": 3, + "REDIS_MASTER": 2, + "REDIS_BLOCKED": 2, + "pubsub_channels": 2, + "listLength": 14, + "pubsub_patterns": 2, + "lastinteraction": 3, + "REDIS_VERBOSE": 3, + "freeClient": 1, + "bpop.timeout": 2, + "addReply": 13, + "shared.nullmultibulk": 2, + "unblockClientWaitingData": 1, + "clientsCronResizeQueryBuffer": 2, + "querybuf_size": 3, + "sdsAllocSize": 1, + "querybuf": 6, + "idletime": 2, + "REDIS_MBULK_BIG_ARG": 1, + "querybuf_size/": 1, + "querybuf_peak": 2, + "sdsavail": 1, + "sdsRemoveFreeSpace": 1, + "clientsCron": 2, + "numclients": 3, + "server.clients": 7, + "iterations": 4, + "numclients/": 1, + "REDIS_HZ*10": 1, + "listNode": 4, + "*head": 1, + "listRotate": 1, + "head": 3, + "listFirst": 2, + "listNodeValue": 3, + "run_with_period": 6, + "_ms_": 2, + "loops": 2, + "/REDIS_HZ": 2, + "serverCron": 2, + "aeEventLoop": 2, + "*eventLoop": 2, + "*clientData": 1, + "server.cronloops": 3, + "REDIS_NOTUSED": 5, + "eventLoop": 2, + "clientData": 1, + "server.watchdog_period": 3, + "watchdogScheduleSignal": 1, + "zmalloc_used_memory": 8, + "server.stat_peak_memory": 5, + "server.shutdown_asap": 3, + "prepareForShutdown": 2, + "REDIS_OK": 23, + "vkeys": 8, + "server.activerehashing": 2, + "server.slaves": 9, + "server.aof_rewrite_scheduled": 4, + "rewriteAppendOnlyFileBackground": 2, + "statloc": 5, + "wait3": 1, + "WNOHANG": 1, + "exitcode": 3, + "bysignal": 4, + "backgroundSaveDoneHandler": 1, + "backgroundRewriteDoneHandler": 1, + "server.saveparamslen": 3, + "saveparam": 1, + "*sp": 1, + "server.saveparams": 2, + "server.dirty": 3, + "sp": 4, + "changes": 2, + "server.lastsave": 3, + "seconds": 2, + "REDIS_NOTICE": 13, + "rdbSaveBackground": 1, + "server.rdb_filename": 4, + "server.aof_rewrite_perc": 3, + "server.aof_current_size": 2, + "server.aof_rewrite_min_size": 2, + "base": 1, + "server.aof_rewrite_base_size": 4, + "growth": 3, + "server.aof_current_size*100/base": 1, + "server.aof_flush_postponed_start": 2, + "flushAppendOnlyFile": 2, + "server.masterhost": 7, + "freeClientsInAsyncFreeQueue": 1, + "replicationCron": 1, + "server.cluster_enabled": 6, + "clusterCron": 1, + "beforeSleep": 2, + "*ln": 3, + "server.unblocked_clients": 4, + "ln": 8, + "redisAssert": 1, + "value": 9, + "listDelNode": 1, + "REDIS_UNBLOCKED": 1, + "server.current_client": 3, + "processInputBuffer": 1, + "createSharedObjects": 2, + "shared.crlf": 2, + "createObject": 31, + "REDIS_STRING": 31, + "sdsnew": 27, + "shared.ok": 3, + "shared.err": 1, + "shared.emptybulk": 1, + "shared.czero": 1, + "shared.cone": 1, + "shared.cnegone": 1, + "shared.nullbulk": 1, + "shared.emptymultibulk": 1, + "shared.pong": 2, + "shared.queued": 2, + "shared.wrongtypeerr": 1, + "shared.nokeyerr": 1, + "shared.syntaxerr": 2, + "shared.sameobjecterr": 1, + "shared.outofrangeerr": 1, + "shared.noscripterr": 1, + "shared.loadingerr": 2, + "shared.slowscripterr": 2, + "shared.masterdownerr": 2, + "shared.bgsaveerr": 2, + "shared.roslaveerr": 2, + "shared.oomerr": 2, + "shared.space": 1, + "shared.colon": 1, + "shared.plus": 1, + "REDIS_SHARED_SELECT_CMDS": 1, + "shared.select": 1, + "sdscatprintf": 24, + "sdsempty": 8, + "shared.messagebulk": 1, + "shared.pmessagebulk": 1, + "shared.subscribebulk": 1, + "shared.unsubscribebulk": 1, + "shared.psubscribebulk": 1, + "shared.punsubscribebulk": 1, + "shared.del": 1, + "shared.rpop": 1, + "shared.lpop": 1, + "REDIS_SHARED_INTEGERS": 1, + "shared.integers": 2, + "REDIS_SHARED_BULKHDR_LEN": 1, + "shared.mbulkhdr": 1, + "shared.bulkhdr": 1, + "initServerConfig": 2, + "getRandomHexChars": 1, + "server.runid": 3, + "REDIS_RUN_ID_SIZE": 2, + "server.arch_bits": 3, + "server.port": 7, + "REDIS_SERVERPORT": 1, + "server.bindaddr": 2, + "server.unixsocket": 7, + "server.unixsocketperm": 2, + "server.ipfd": 9, + "server.sofd": 9, + "REDIS_DEFAULT_DBNUM": 1, + "REDIS_MAXIDLETIME": 1, + "server.client_max_querybuf_len": 1, + "REDIS_MAX_QUERYBUF_LEN": 1, + "server.loading": 4, + "server.syslog_ident": 2, + "zstrdup": 5, + "server.syslog_facility": 2, + "LOG_LOCAL0": 1, + "server.aof_state": 7, + "REDIS_AOF_OFF": 5, + "server.aof_fsync": 1, + "AOF_FSYNC_EVERYSEC": 1, + "server.aof_no_fsync_on_rewrite": 1, + "REDIS_AOF_REWRITE_PERC": 1, + "REDIS_AOF_REWRITE_MIN_SIZE": 1, + "server.aof_last_fsync": 1, + "server.aof_rewrite_time_last": 2, + "server.aof_rewrite_time_start": 2, + "server.aof_delayed_fsync": 2, + "server.aof_fd": 4, + "server.aof_selected_db": 1, + "server.pidfile": 3, + "server.aof_filename": 3, + "server.requirepass": 4, + "server.rdb_compression": 1, + "server.rdb_checksum": 1, + "server.maxclients": 6, + "REDIS_MAX_CLIENTS": 1, + "server.bpop_blocked_clients": 2, + "server.maxmemory": 6, + "server.maxmemory_policy": 11, + "REDIS_MAXMEMORY_VOLATILE_LRU": 3, + "server.maxmemory_samples": 3, + "server.hash_max_ziplist_entries": 1, + "REDIS_HASH_MAX_ZIPLIST_ENTRIES": 1, + "server.hash_max_ziplist_value": 1, + "REDIS_HASH_MAX_ZIPLIST_VALUE": 1, + "server.list_max_ziplist_entries": 1, + "REDIS_LIST_MAX_ZIPLIST_ENTRIES": 1, + "server.list_max_ziplist_value": 1, + "REDIS_LIST_MAX_ZIPLIST_VALUE": 1, + "server.set_max_intset_entries": 1, + "REDIS_SET_MAX_INTSET_ENTRIES": 1, + "server.zset_max_ziplist_entries": 1, + "REDIS_ZSET_MAX_ZIPLIST_ENTRIES": 1, + "server.zset_max_ziplist_value": 1, + "REDIS_ZSET_MAX_ZIPLIST_VALUE": 1, + "server.repl_ping_slave_period": 1, + "REDIS_REPL_PING_SLAVE_PERIOD": 1, + "server.repl_timeout": 1, + "REDIS_REPL_TIMEOUT": 1, + "server.cluster.configfile": 1, + "server.lua_caller": 1, + "server.lua_time_limit": 1, + "REDIS_LUA_TIME_LIMIT": 1, + "server.lua_client": 1, + "server.lua_timedout": 2, + "resetServerSaveParams": 2, + "appendServerSaveParams": 3, + "*60": 1, + "server.masterauth": 1, + "server.masterport": 2, + "server.master": 3, + "server.repl_state": 6, + "REDIS_REPL_NONE": 1, + "server.repl_syncio_timeout": 1, + "REDIS_REPL_SYNCIO_TIMEOUT": 1, + "server.repl_serve_stale_data": 2, + "server.repl_slave_ro": 2, + "server.repl_down_since": 2, + "server.client_obuf_limits": 9, + "REDIS_CLIENT_LIMIT_CLASS_NORMAL": 3, + ".hard_limit_bytes": 3, + ".soft_limit_bytes": 3, + ".soft_limit_seconds": 3, + "REDIS_CLIENT_LIMIT_CLASS_SLAVE": 3, + "*1024*256": 1, + "*1024*64": 1, + "REDIS_CLIENT_LIMIT_CLASS_PUBSUB": 3, + "*1024*32": 1, + "*1024*8": 1, + "/R_Zero": 2, + "R_Zero/R_Zero": 1, + "server.commands": 1, + "dictCreate": 6, + "populateCommandTable": 2, + "server.delCommand": 1, + "lookupCommandByCString": 3, + "server.multiCommand": 1, + "server.lpushCommand": 1, + "server.slowlog_log_slower_than": 1, + "REDIS_SLOWLOG_LOG_SLOWER_THAN": 1, + "server.slowlog_max_len": 1, + "REDIS_SLOWLOG_MAX_LEN": 1, + "server.assert_failed": 1, + "server.assert_file": 1, + "server.assert_line": 1, + "server.bug_report_start": 1, + "adjustOpenFilesLimit": 2, + "rlim_t": 3, + "maxfiles": 6, + "rlimit": 1, + "limit": 3, + "getrlimit": 1, + "RLIMIT_NOFILE": 2, + "strerror": 4, + "oldlimit": 5, + "limit.rlim_cur": 2, + "limit.rlim_max": 1, + "setrlimit": 1, + "initServer": 2, + "signal": 2, + "SIGHUP": 1, + "SIG_IGN": 2, + "SIGPIPE": 1, + "setupSignalHandlers": 2, + "openlog": 1, + "LOG_PID": 1, + "LOG_NDELAY": 1, + "LOG_NOWAIT": 1, + "listCreate": 6, + "server.clients_to_close": 1, + "server.monitors": 2, + "server.el": 7, + "aeCreateEventLoop": 1, + "zmalloc": 2, + "*server.dbnum": 1, + "anetTcpServer": 1, + "server.neterr": 4, + "ANET_ERR": 2, + "unlink": 3, + "anetUnixServer": 1, + ".blocking_keys": 1, + ".watched_keys": 1, + ".id": 1, + "server.pubsub_channels": 2, + "server.pubsub_patterns": 4, + "listSetFreeMethod": 1, + "freePubsubPattern": 1, + "listSetMatchMethod": 1, + "listMatchPubsubPattern": 1, + "aofRewriteBufferReset": 1, + "server.aof_buf": 3, + "server.rdb_save_time_last": 2, + "server.rdb_save_time_start": 2, + "server.stat_numconnections": 2, + "server.stat_evictedkeys": 3, + "server.stat_starttime": 2, + "server.stat_keyspace_misses": 2, + "server.stat_keyspace_hits": 2, + "server.stat_fork_time": 2, + "server.stat_rejected_conn": 2, + "memset": 4, + "server.lastbgsave_status": 3, + "server.stop_writes_on_bgsave_err": 2, + "aeCreateTimeEvent": 1, + "aeCreateFileEvent": 2, + "AE_READABLE": 2, + "acceptTcpHandler": 1, + "AE_ERR": 2, + "acceptUnixHandler": 1, + "REDIS_AOF_ON": 2, + "LL*": 1, + "*1024": 4, + "REDIS_MAXMEMORY_NO_EVICTION": 2, + "clusterInit": 1, + "scriptingInit": 1, + "slowlogInit": 1, + "bioInit": 1, + "numcommands": 5, + "/sizeof": 4, + "*f": 2, + "sflags": 1, + "retval": 3, + "argv": 54, + "cmd": 46, + "arity": 3, + "argc": 26, + "addReplyErrorFormat": 1, + "authenticated": 3, + "proc": 14, + "addReplyError": 6, + "getkeys_proc": 1, + "firstkey": 1, + "hashslot": 3, + "server.cluster.state": 1, + "REDIS_CLUSTER_OK": 1, + "ask": 3, + "clusterNode": 1, + "*n": 1, + "getNodeByQuery": 1, + "server.cluster.myself": 1, + "addReplySds": 3, + "ip": 4, + "port": 7, + "freeMemoryIfNeeded": 2, + "REDIS_CMD_DENYOOM": 1, + "REDIS_ERR": 5, + "REDIS_CMD_WRITE": 2, + "REDIS_REPL_CONNECTED": 3, + "tolower": 2, + "REDIS_MULTI": 1, + "queueMultiCommand": 1, + "call": 1, + "REDIS_CALL_FULL": 1, + "save": 2, + "REDIS_SHUTDOWN_SAVE": 1, + "nosave": 2, + "REDIS_SHUTDOWN_NOSAVE": 1, + "SIGKILL": 2, + "rdbRemoveTempFile": 1, + "aof_fsync": 1, + "rdbSave": 1, + "addReplyBulk": 1, + "addReplyMultiBulkLen": 1, + "addReplyBulkLongLong": 2, + "bytesToHuman": 3, + "*s": 3, + "d": 16, + "sprintf": 10, + "n/": 3, + "LL*1024*1024": 2, + "LL*1024*1024*1024": 1, + "genRedisInfoString": 2, + "*section": 2, + "info": 64, + "uptime": 2, + "rusage": 1, + "self_ru": 2, + "c_ru": 2, + "lol": 3, + "bib": 3, + "allsections": 12, + "defsections": 11, + "sections": 11, + "section": 14, + "getrusage": 2, + "RUSAGE_SELF": 1, + "RUSAGE_CHILDREN": 1, + "getClientsMaxBuffers": 1, + "utsname": 1, + "sdscat": 14, + "uname": 1, + "REDIS_VERSION": 4, + "redisGitSHA1": 3, + "strtol": 2, + "redisGitDirty": 3, + "name.sysname": 1, + "name.release": 1, + "name.machine": 1, + "aeGetApiName": 1, + "__GNUC__": 8, + "__GNUC_MINOR__": 2, + "__GNUC_PATCHLEVEL__": 1, + "uptime/": 1, + "*24": 1, + "hmem": 3, + "peak_hmem": 3, + "zmalloc_get_rss": 1, + "lua_gc": 1, + "server.lua": 1, + "LUA_GCCOUNT": 1, + "*1024LL": 1, + "zmalloc_get_fragmentation_ratio": 1, + "ZMALLOC_LIB": 2, + "aofRewriteBufferSize": 2, + "bioPendingJobsOfType": 1, + "REDIS_BIO_AOF_FSYNC": 1, + "perc": 3, + "eta": 4, + "elapsed": 3, + "off_t": 1, + "remaining_bytes": 1, + "server.loading_total_bytes": 3, + "server.loading_loaded_bytes": 3, + "server.loading_start_time": 2, + "elapsed*remaining_bytes": 1, + "/server.loading_loaded_bytes": 1, + "REDIS_REPL_TRANSFER": 2, + "server.repl_transfer_left": 1, + "server.repl_transfer_lastio": 1, + "slaveid": 3, + "listIter": 2, + "li": 6, + "listRewind": 2, + "listNext": 2, + "*slave": 2, + "*state": 1, + "anetPeerToString": 1, + "slave": 3, + "replstate": 1, + "REDIS_REPL_WAIT_BGSAVE_START": 1, + "REDIS_REPL_WAIT_BGSAVE_END": 1, + "state": 104, + "REDIS_REPL_SEND_BULK": 1, + "REDIS_REPL_ONLINE": 1, + "self_ru.ru_stime.tv_sec": 1, + "self_ru.ru_stime.tv_usec/1000000": 1, + "self_ru.ru_utime.tv_sec": 1, + "self_ru.ru_utime.tv_usec/1000000": 1, + "c_ru.ru_stime.tv_sec": 1, + "c_ru.ru_stime.tv_usec/1000000": 1, + "c_ru.ru_utime.tv_sec": 1, + "c_ru.ru_utime.tv_usec/1000000": 1, + "calls": 4, + "microseconds": 1, + "microseconds/c": 1, + "keys": 4, + "REDIS_MONITOR": 1, + "slaveseldb": 1, + "listAddNodeTail": 1, + "mem_used": 9, + "mem_tofree": 3, + "mem_freed": 4, + "slaves": 3, + "obuf_bytes": 3, + "getClientOutputBufferMemoryUsage": 1, + "k": 15, + "keys_freed": 3, + "bestval": 5, + "bestkey": 9, + "REDIS_MAXMEMORY_ALLKEYS_LRU": 2, + "REDIS_MAXMEMORY_ALLKEYS_RANDOM": 2, + "REDIS_MAXMEMORY_VOLATILE_RANDOM": 1, + "thiskey": 7, + "thisval": 8, + "dictFind": 1, + "dictGetVal": 2, + "estimateObjectIdleTime": 1, + "REDIS_MAXMEMORY_VOLATILE_TTL": 1, + "delta": 54, + "flushSlavesOutputBuffers": 1, + "linuxOvercommitMemoryValue": 2, + "fgets": 1, + "atoi": 3, + "linuxOvercommitMemoryWarning": 2, + "createPidFile": 2, + "daemonize": 2, + "STDIN_FILENO": 1, + "STDERR_FILENO": 2, + "printf": 4, + "usage": 2, + "stderr": 15, + "redisAsciiArt": 2, + "*buf": 10, + "*16": 2, + "ascii_logo": 1, + "sigtermHandler": 2, + "sig": 2, + "sigaction": 6, + "act": 6, + "sigemptyset": 2, + "act.sa_mask": 2, + "act.sa_flags": 2, + "act.sa_handler": 1, + "SIGTERM": 1, + "HAVE_BACKTRACE": 1, + "SA_NODEFER": 1, + "SA_RESETHAND": 1, + "SA_SIGINFO": 1, + "act.sa_sigaction": 1, + "sigsegvHandler": 1, + "SIGSEGV": 1, + "SIGBUS": 1, + "SIGFPE": 1, + "SIGILL": 1, + "memtest": 2, + "megabytes": 1, + "passes": 1, + "main": 3, + "**argv": 6, + "zmalloc_enable_thread_safeness": 1, + "srand": 1, + "dictSetHashFunctionSeed": 1, + "*configfile": 1, + "configfile": 2, + "sdscatrepr": 1, + "loadServerConfig": 1, + "loadAppendOnlyFile": 1, + "/1000000": 2, + "rdbLoad": 1, + "ENOENT": 3, + "aeSetBeforeSleepProc": 1, + "aeMain": 1, + "aeDeleteEventLoop": 1, + "HELLO_H": 2, + "hello": 1, + "READLINE_READLINE_CATS": 3, + "": 1, + "atscntrb_readline_rl_library_version": 1, + "rl_library_version": 1, + "atscntrb_readline_rl_readline_version": 1, + "rl_readline_version": 1, + "atscntrb_readline_readline": 1, + "readline": 1, + "ifndef": 2, + "REFU_IO_H": 2, + "RF_LF": 10, + "xA": 1, + "RF_CR": 1, + "xD": 1, + "REFU_WIN32_VERSION": 1, + "i_PLUSB_WIN32": 2, + "_MSC_VER": 5, + "__int64": 3, + "foff_rft": 2, + "": 2, + "off64_t": 1, + "///Fseek": 1, + "Ftelll": 1, + "definitions": 1, + "rfFseek": 2, + "i_OFFSET_": 4, + "i_WHENCE_": 4, + "_fseeki64": 1, + "rfFtell": 2, + "_ftelli64": 1, + "fseeko64": 1, + "ftello64": 1, + "rfFReadLine_UTF8": 5, + "utf8": 36, + "bufferSize": 6, + "rfFReadLine_UTF16BE": 6, + "rfFReadLine_UTF16LE": 4, + "rfFReadLine_UTF32BE": 1, + "rfFReadLine_UTF32LE": 4, + "rfFgets_UTF32BE": 1, + "buff": 95, + "rfFgets_UTF32LE": 2, + "rfFgets_UTF16BE": 2, + "rfFgets_UTF16LE": 2, + "rfFgets_UTF8": 2, + "rfFgetc_UTF8": 3, + "cp": 12, + "rfFgetc_UTF16BE": 4, + "rfFgetc_UTF16LE": 4, + "rfFgetc_UTF32LE": 4, + "rfFgetc_UTF32BE": 3, + "rfFback_UTF32BE": 2, + "rfFback_UTF32LE": 2, + "rfFback_UTF16BE": 2, + "rfFback_UTF16LE": 2, + "rfFback_UTF8": 2, + "rfPopen": 2, + "command": 2, + "mode": 11, + "i_rfPopen": 2, + "i_CMD_": 2, + "i_MODE_": 2, + "rfPclose": 1, + "///closing": 1, + "#endif//include": 1, + "git_cache_init": 1, + "git_cache": 4, + "*cache": 4, + "git_cached_obj_freeptr": 1, + "free_ptr": 2, + "git__size_t_powerof2": 1, + "cache": 26, + "size_mask": 6, + "lru_count": 1, + "free_obj": 4, + "git_mutex_init": 1, + "lock": 6, + "nodes": 10, + "git__malloc": 3, + "git_cached_obj": 5, + "GITERR_CHECK_ALLOC": 3, + "git_cache_free": 1, + "git_cached_obj_decref": 3, + "git__free": 15, + "*git_cache_get": 1, + "git_oid": 7, + "*oid": 2, + "*node": 2, + "*result": 1, + "memcpy": 35, + "oid": 17, + "git_mutex_lock": 2, + "node": 9, + "git_oid_cmp": 6, + "git_cached_obj_incref": 3, + "git_mutex_unlock": 2, + "*git_cache_try_store": 1, + "*_entry": 1, + "*entry": 2, + "_entry": 1, + "entry": 17, + "PY_SSIZE_T_CLEAN": 1, + "Py_PYTHON_H": 1, + "Python": 2, + "headers": 1, + "needed": 10, + "compile": 1, + "extensions": 1, + "please": 1, + "install": 1, + "development": 1, + "Python.": 1, + "#elif": 14, + "PY_VERSION_HEX": 11, + "Cython": 1, + "requires": 1, + ".": 1, + "": 2, + "offsetof": 2, + "member": 2, + "type*": 1, + "WIN32": 2, + "MS_WINDOWS": 2, + "__stdcall": 2, + "__cdecl": 2, + "__fastcall": 2, + "DL_IMPORT": 2, + "DL_EXPORT": 2, + "PY_LONG_LONG": 5, + "LONG_LONG": 1, + "Py_HUGE_VAL": 2, + "HUGE_VAL": 1, + "PYPY_VERSION": 1, + "CYTHON_COMPILING_IN_PYPY": 3, + "CYTHON_COMPILING_IN_CPYTHON": 6, + "Py_ssize_t": 35, + "PY_SSIZE_T_MAX": 1, + "INT_MAX": 1, + "PY_SSIZE_T_MIN": 1, + "INT_MIN": 1, + "PY_FORMAT_SIZE_T": 1, + "CYTHON_FORMAT_SSIZE_T": 2, + "PyInt_FromSsize_t": 6, + "z": 47, + "PyInt_FromLong": 3, + "PyInt_AsSsize_t": 3, + "__Pyx_PyInt_AsInt": 2, + "PyNumber_Index": 1, + "PyNumber_Check": 2, + "PyFloat_Check": 2, + "PyNumber_Int": 1, + "PyErr_Format": 4, + "PyExc_TypeError": 4, + "Py_TYPE": 7, + "tp_name": 4, + "PyObject*": 24, + "__Pyx_PyIndex_Check": 3, + "PyComplex_Check": 1, + "PyIndex_Check": 2, + "PyErr_WarnEx": 1, + "category": 2, + "message": 3, + "stacklevel": 1, + "PyErr_Warn": 1, + "__PYX_BUILD_PY_SSIZE_T": 2, + "Py_REFCNT": 1, + "ob_refcnt": 1, + "ob_type": 7, + "Py_SIZE": 1, + "PyVarObject*": 1, + "ob_size": 1, + "PyVarObject_HEAD_INIT": 1, + "PyObject_HEAD_INIT": 1, + "PyType_Modified": 1, + "PyObject": 276, + "*obj": 9, + "itemsize": 1, + "readonly": 1, + "ndim": 2, + "*format": 2, + "*shape": 1, + "*strides": 1, + "*suboffsets": 1, + "*internal": 1, + "Py_buffer": 6, + "PyBUF_SIMPLE": 1, + "PyBUF_WRITABLE": 3, + "PyBUF_FORMAT": 3, + "PyBUF_ND": 2, + "PyBUF_STRIDES": 6, + "PyBUF_C_CONTIGUOUS": 1, + "PyBUF_F_CONTIGUOUS": 1, + "PyBUF_ANY_CONTIGUOUS": 1, + "PyBUF_INDIRECT": 2, + "PyBUF_RECORDS": 1, + "PyBUF_FULL": 1, + "PY_MAJOR_VERSION": 13, + "__Pyx_BUILTIN_MODULE_NAME": 2, + "__Pyx_PyCode_New": 2, + "l": 7, + "fv": 4, + "cell": 4, + "fn": 5, + "fline": 4, + "lnos": 4, + "PyCode_New": 2, + "PY_MINOR_VERSION": 1, + "PyUnicode_FromString": 2, + "PyUnicode_Decode": 1, + "Py_TPFLAGS_CHECKTYPES": 1, + "Py_TPFLAGS_HAVE_INDEX": 1, + "Py_TPFLAGS_HAVE_NEWBUFFER": 1, + "PyUnicode_KIND": 1, + "CYTHON_PEP393_ENABLED": 2, + "__Pyx_PyUnicode_READY": 2, + "op": 8, + "likely": 22, + "PyUnicode_IS_READY": 1, + "_PyUnicode_Ready": 1, + "__Pyx_PyUnicode_GET_LENGTH": 2, + "u": 18, + "PyUnicode_GET_LENGTH": 1, + "__Pyx_PyUnicode_READ_CHAR": 2, + "PyUnicode_READ_CHAR": 1, + "__Pyx_PyUnicode_READ": 2, + "PyUnicode_READ": 1, + "PyUnicode_GET_SIZE": 1, + "Py_UCS4": 2, + "PyUnicode_AS_UNICODE": 1, + "Py_UNICODE*": 1, + "PyBaseString_Type": 1, + "PyUnicode_Type": 2, + "PyStringObject": 2, + "PyUnicodeObject": 1, + "PyString_Type": 2, + "PyString_Check": 2, + "PyUnicode_Check": 1, + "PyString_CheckExact": 2, + "PyUnicode_CheckExact": 1, + "PyBytesObject": 1, + "PyBytes_Type": 1, + "PyBytes_Check": 1, + "PyBytes_CheckExact": 1, + "PyBytes_FromString": 2, + "PyString_FromString": 2, + "PyBytes_FromStringAndSize": 1, + "PyString_FromStringAndSize": 1, + "PyBytes_FromFormat": 1, + "PyString_FromFormat": 1, + "PyBytes_DecodeEscape": 1, + "PyString_DecodeEscape": 1, + "PyBytes_AsString": 2, + "PyString_AsString": 1, + "PyBytes_AsStringAndSize": 1, + "PyString_AsStringAndSize": 1, + "PyBytes_Size": 1, + "PyString_Size": 1, + "PyBytes_AS_STRING": 1, + "PyString_AS_STRING": 1, + "PyBytes_GET_SIZE": 1, + "PyString_GET_SIZE": 1, + "PyBytes_Repr": 1, + "PyString_Repr": 1, + "PyBytes_Concat": 1, + "PyString_Concat": 1, + "PyBytes_ConcatAndDel": 1, + "PyString_ConcatAndDel": 1, + "PySet_Check": 1, + "obj": 48, + "PyObject_TypeCheck": 3, + "PySet_Type": 2, + "PyFrozenSet_Check": 1, + "PyFrozenSet_Type": 1, + "PySet_CheckExact": 2, + "__Pyx_TypeCheck": 1, + "PyTypeObject": 25, + "PyIntObject": 1, + "PyLongObject": 2, + "PyInt_Type": 1, + "PyLong_Type": 1, + "PyInt_Check": 1, + "PyLong_Check": 1, + "PyInt_CheckExact": 1, + "PyLong_CheckExact": 1, + "PyInt_FromString": 1, + "PyLong_FromString": 1, + "PyInt_FromUnicode": 1, + "PyLong_FromUnicode": 1, + "PyLong_FromLong": 1, + "PyInt_FromSize_t": 1, + "PyLong_FromSize_t": 1, + "PyLong_FromSsize_t": 1, + "PyInt_AsLong": 2, + "PyLong_AsLong": 1, + "PyInt_AS_LONG": 1, + "PyLong_AS_LONG": 1, + "PyLong_AsSsize_t": 1, + "PyInt_AsUnsignedLongMask": 1, + "PyLong_AsUnsignedLongMask": 1, + "PyInt_AsUnsignedLongLongMask": 1, + "PyLong_AsUnsignedLongLongMask": 1, + "PyBoolObject": 1, + "Py_hash_t": 1, + "__Pyx_PyInt_FromHash_t": 2, + "__Pyx_PyInt_AsHash_t": 2, + "__Pyx_PySequence_GetSlice": 2, + "b": 66, + "PySequence_GetSlice": 2, + "__Pyx_PySequence_SetSlice": 2, + "PySequence_SetSlice": 2, + "__Pyx_PySequence_DelSlice": 2, + "PySequence_DelSlice": 2, + "unlikely": 54, + "PyErr_SetString": 3, + "PyExc_SystemError": 3, + "tp_as_mapping": 3, + "PyMethod_New": 2, + "func": 3, + "self": 9, + "klass": 1, + "PyInstanceMethod_New": 1, + "__Pyx_GetAttrString": 2, + "PyObject_GetAttrString": 2, + "__Pyx_SetAttrString": 2, + "PyObject_SetAttrString": 2, + "__Pyx_DelAttrString": 2, + "PyObject_DelAttrString": 2, + "__Pyx_NAMESTR": 2, + "__Pyx_DOCSTR": 2, + "__Pyx_PyNumber_Divide": 2, + "PyNumber_TrueDivide": 1, + "__Pyx_PyNumber_InPlaceDivide": 2, + "PyNumber_InPlaceTrueDivide": 1, + "PyNumber_Divide": 1, + "PyNumber_InPlaceDivide": 1, + "__PYX_EXTERN_C": 3, + "_USE_MATH_DEFINES": 1, + "__PYX_HAVE__sklearn__linear_model__sgd_fast": 1, + "__PYX_HAVE_API__sklearn__linear_model__sgd_fast": 1, + "_OPENMP": 1, + "": 1, + "PYREX_WITHOUT_ASSERTIONS": 1, + "CYTHON_WITHOUT_ASSERTIONS": 1, + "CYTHON_INLINE": 65, + "__inline__": 1, + "__inline": 1, + "__STDC_VERSION__": 2, + "L": 1, + "inline": 3, + "CYTHON_UNUSED": 14, + "**p": 1, + "is_unicode": 1, + "is_str": 1, + "intern": 1, + "__Pyx_StringTabEntry": 2, + "__Pyx_PyBytes_FromUString": 1, + "__Pyx_PyBytes_AsUString": 1, + "__Pyx_Owned_Py_None": 1, + "Py_INCREF": 10, + "Py_None": 8, + "__Pyx_PyBool_FromLong": 1, + "Py_True": 2, + "Py_False": 2, + "__Pyx_PyObject_IsTrue": 1, + "__Pyx_PyNumber_Int": 1, + "__Pyx_PyIndex_AsSsize_t": 1, + "__Pyx_PyInt_FromSize_t": 1, + "__Pyx_PyInt_AsSize_t": 1, + "__pyx_PyFloat_AsDouble": 12, + "PyFloat_CheckExact": 1, + "PyFloat_AS_DOUBLE": 1, + "PyFloat_AsDouble": 2, + "__pyx_PyFloat_AsFloat": 1, + "__builtin_expect": 2, + "*__pyx_m": 1, + "*__pyx_b": 1, + "*__pyx_empty_tuple": 1, + "*__pyx_empty_bytes": 1, + "__pyx_lineno": 58, + "__pyx_clineno": 58, + "__pyx_cfilenm": 1, + "__FILE__": 4, + "*__pyx_filename": 7, + "CYTHON_CCOMPLEX": 12, + "_Complex_I": 3, + "": 1, + "": 1, + "__sun__": 1, + "fj": 1, + "*__pyx_f": 1, + "IS_UNSIGNED": 1, + "__Pyx_StructField_": 2, + "__PYX_BUF_FLAGS_PACKED_STRUCT": 1, + "<<": 56, + "__Pyx_StructField_*": 1, + "fields": 1, + "arraysize": 1, + "typegroup": 1, + "is_unsigned": 1, + "__Pyx_TypeInfo": 2, + "__Pyx_TypeInfo*": 2, + "offset": 1, + "__Pyx_StructField": 2, + "__Pyx_StructField*": 1, + "field": 1, + "parent_offset": 1, + "__Pyx_BufFmt_StackElem": 1, + "root": 1, + "__Pyx_BufFmt_StackElem*": 2, + "fmt_offset": 1, + "new_count": 1, + "enc_count": 1, + "struct_alignment": 1, + "is_complex": 1, + "enc_type": 1, + "new_packmode": 1, + "enc_packmode": 1, + "is_valid_array": 1, + "__Pyx_BufFmt_Context": 1, + "npy_int8": 1, + "__pyx_t_5numpy_int8_t": 1, + "npy_int16": 1, + "__pyx_t_5numpy_int16_t": 1, + "npy_int32": 1, + "__pyx_t_5numpy_int32_t": 4, + "npy_int64": 1, + "__pyx_t_5numpy_int64_t": 1, + "npy_uint8": 1, + "__pyx_t_5numpy_uint8_t": 1, + "npy_uint16": 1, + "__pyx_t_5numpy_uint16_t": 1, + "npy_uint32": 1, + "__pyx_t_5numpy_uint32_t": 1, + "npy_uint64": 1, + "__pyx_t_5numpy_uint64_t": 1, + "npy_float32": 1, + "__pyx_t_5numpy_float32_t": 1, + "npy_float64": 1, + "__pyx_t_5numpy_float64_t": 4, + "npy_long": 1, + "__pyx_t_5numpy_int_t": 1, + "npy_longlong": 2, + "__pyx_t_5numpy_long_t": 1, + "__pyx_t_5numpy_longlong_t": 1, + "npy_ulong": 1, + "__pyx_t_5numpy_uint_t": 1, + "npy_ulonglong": 2, + "__pyx_t_5numpy_ulong_t": 1, + "__pyx_t_5numpy_ulonglong_t": 1, + "npy_intp": 1, + "__pyx_t_5numpy_intp_t": 1, + "npy_uintp": 1, + "__pyx_t_5numpy_uintp_t": 1, + "npy_double": 2, + "__pyx_t_5numpy_float_t": 1, + "__pyx_t_5numpy_double_t": 1, + "npy_longdouble": 1, + "__pyx_t_5numpy_longdouble_t": 1, + "__pyx_t_7sklearn_5utils_13weight_vector_DOUBLE": 2, + "__pyx_t_7sklearn_5utils_13weight_vector_INTEGER": 1, + "__pyx_t_7sklearn_5utils_11seq_dataset_DOUBLE": 7, + "__pyx_t_7sklearn_5utils_11seq_dataset_INTEGER": 7, + "__pyx_t_7sklearn_12linear_model_8sgd_fast_DOUBLE": 4, + "__pyx_t_7sklearn_12linear_model_8sgd_fast_INTEGER": 3, + "std": 8, + "complex": 2, + "__pyx_t_float_complex": 27, + "_Complex": 2, + "real": 2, + "imag": 2, + "__pyx_t_double_complex": 27, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_LossFunction": 15, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Regression": 11, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Huber": 6, + "__pyx_obj_7sklearn_5utils_11seq_dataset_SequentialDataset": 5, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 6, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Classification": 7, + "__pyx_obj_7sklearn_5utils_11seq_dataset_CSRDataset": 2, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Log": 5, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Hinge": 6, + "__pyx_obj_7sklearn_5utils_11seq_dataset_ArrayDataset": 2, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 6, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_ModifiedHuber": 5, + "__pyx_obj_7sklearn_5utils_13weight_vector_WeightVector": 3, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredLoss": 5, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredEpsilonInsensitive": 6, + "npy_cfloat": 1, + "__pyx_t_5numpy_cfloat_t": 1, + "npy_cdouble": 2, + "__pyx_t_5numpy_cdouble_t": 1, + "npy_clongdouble": 1, + "__pyx_t_5numpy_clongdouble_t": 1, + "__pyx_t_5numpy_complex_t": 1, + "PyObject_HEAD": 3, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_LossFunction": 5, + "*__pyx_vtab": 3, + "__pyx_base": 18, + "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_SequentialDataset": 4, + "n_samples": 1, + "epsilon": 2, + "current_index": 2, + "stride": 2, + "*X_data_ptr": 2, + "*X_indptr_ptr": 1, + "*X_indices_ptr": 1, + "*Y_data_ptr": 2, + "PyArrayObject": 8, + "*feature_indices": 2, + "*feature_indices_ptr": 2, + "*index": 2, + "*index_data_ptr": 2, + "*sample_weight_data": 2, + "threshold": 2, + "n_features": 2, + "__pyx_vtabstruct_7sklearn_5utils_13weight_vector_WeightVector": 3, + "*w": 2, + "*w_data_ptr": 1, + "wscale": 1, + "sq_norm": 1, + "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_SequentialDataset": 1, + "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_ArrayDataset": 2, + "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_ArrayDataset": 1, + "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_CSRDataset": 2, + "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_CSRDataset": 1, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 2, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Regression": 3, + "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 1, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 2, + "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 1, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Huber": 2, + "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_Huber": 1, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Hinge": 2, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Classification": 1, + "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_Hinge": 1, + "*__pyx_vtabptr_7sklearn_5utils_13weight_vector_WeightVector": 1, + "CYTHON_REFNANNY": 3, + "__Pyx_RefNannyAPIStruct": 3, + "*__Pyx_RefNanny": 1, + "*__Pyx_RefNannyImportAPI": 1, + "*modname": 1, + "__Pyx_RefNannyDeclarations": 11, + "*__pyx_refnanny": 1, + "WITH_THREAD": 1, + "__Pyx_RefNannySetupContext": 12, + "acquire_gil": 4, + "PyGILState_STATE": 1, + "__pyx_gilstate_save": 2, + "PyGILState_Ensure": 1, + "__pyx_refnanny": 8, + "__Pyx_RefNanny": 8, + "SetupContext": 3, + "__LINE__": 50, + "PyGILState_Release": 1, + "__Pyx_RefNannyFinishContext": 14, + "FinishContext": 1, + "__Pyx_INCREF": 6, + "INCREF": 1, + "__Pyx_DECREF": 20, + "DECREF": 1, + "__Pyx_GOTREF": 24, + "GOTREF": 1, + "__Pyx_GIVEREF": 9, + "GIVEREF": 1, + "__Pyx_XINCREF": 2, + "__Pyx_XDECREF": 20, + "__Pyx_XGOTREF": 2, + "__Pyx_XGIVEREF": 5, + "Py_DECREF": 2, + "Py_XINCREF": 1, + "Py_XDECREF": 1, + "__Pyx_CLEAR": 1, + "tmp": 6, + "__Pyx_XCLEAR": 1, + "*__Pyx_GetName": 1, + "*name": 12, + "__Pyx_ErrRestore": 1, + "*type": 4, + "*value": 5, + "*tb": 2, + "__Pyx_ErrFetch": 1, + "**type": 1, + "**value": 1, + "**tb": 1, + "__Pyx_Raise": 4, + "*cause": 1, + "__Pyx_RaiseArgtupleInvalid": 7, + "func_name": 2, + "exact": 6, + "num_min": 1, + "num_max": 1, + "num_found": 1, + "__Pyx_RaiseDoubleKeywordsError": 1, + "kw_name": 1, + "__Pyx_ParseOptionalKeywords": 4, + "*kwds": 1, + "**argnames": 1, + "*kwds2": 1, + "*values": 1, + "num_pos_args": 1, + "function_name": 1, + "__Pyx_ArgTypeTest": 1, + "none_allowed": 1, + "__Pyx_GetBufferAndValidate": 1, + "Py_buffer*": 2, + "dtype": 1, + "nd": 1, + "cast": 1, + "stack": 6, + "__Pyx_SafeReleaseBuffer": 1, + "__Pyx_TypeTest": 1, + "__Pyx_RaiseBufferFallbackError": 1, + "*__Pyx_GetItemInt_Generic": 1, + "*r": 7, + "PyObject_GetItem": 1, + "__Pyx_GetItemInt_List": 1, + "to_py_func": 6, + "__Pyx_GetItemInt_List_Fast": 1, + "__Pyx_GetItemInt_Generic": 6, + "*__Pyx_GetItemInt_List_Fast": 1, + "PyList_GET_SIZE": 5, + "PyList_GET_ITEM": 3, + "PySequence_GetItem": 3, + "__Pyx_GetItemInt_Tuple": 1, + "__Pyx_GetItemInt_Tuple_Fast": 1, + "*__Pyx_GetItemInt_Tuple_Fast": 1, + "PyTuple_GET_SIZE": 14, + "PyTuple_GET_ITEM": 15, + "__Pyx_GetItemInt": 1, + "__Pyx_GetItemInt_Fast": 2, + "PyList_CheckExact": 1, + "PyTuple_CheckExact": 1, + "PySequenceMethods": 1, + "*m": 1, + "tp_as_sequence": 1, + "m": 8, + "sq_item": 2, + "sq_length": 2, + "PySequence_Check": 1, + "__Pyx_RaiseTooManyValuesError": 1, + "expected": 2, + "__Pyx_RaiseNeedMoreValuesError": 1, + "index": 58, + "__Pyx_RaiseNoneNotIterableError": 1, + "__Pyx_IterFinish": 1, + "__Pyx_IternextUnpackEndCheck": 1, + "*retval": 1, + "shape": 1, + "strides": 1, + "suboffsets": 1, + "__Pyx_Buf_DimInfo": 2, + "refcount": 2, + "pybuffer": 1, + "__Pyx_Buffer": 2, + "*rcbuffer": 1, + "diminfo": 1, + "__Pyx_LocalBuf_ND": 1, + "__Pyx_GetBuffer": 2, + "*view": 2, + "__Pyx_ReleaseBuffer": 2, + "PyObject_GetBuffer": 1, + "PyBuffer_Release": 1, + "__Pyx_zeros": 1, + "__Pyx_minusones": 1, + "*__Pyx_Import": 1, + "*from_list": 1, + "__Pyx_RaiseImportError": 1, + "__Pyx_Print": 1, + "__pyx_print": 1, + "__pyx_print_kwargs": 1, + "__Pyx_PrintOne": 1, + "__Pyx_CREAL": 4, + ".real": 3, + "__Pyx_CIMAG": 4, + ".imag": 3, + "__real__": 1, + "__imag__": 1, + "__Pyx_SET_CREAL": 2, + "__Pyx_SET_CIMAG": 2, + "__pyx_t_float_complex_from_parts": 1, + "__Pyx_c_eqf": 2, + "__Pyx_c_sumf": 2, + "__Pyx_c_difff": 2, + "__Pyx_c_prodf": 2, + "__Pyx_c_quotf": 2, + "__Pyx_c_negf": 2, + "__Pyx_c_is_zerof": 3, + "__Pyx_c_conjf": 3, + "conj": 3, + "__Pyx_c_absf": 3, + "abs": 2, + "__Pyx_c_powf": 3, + "pow": 2, + "conjf": 1, + "cabsf": 1, + "cpowf": 1, + "__pyx_t_double_complex_from_parts": 1, + "__Pyx_c_eq": 2, + "__Pyx_c_sum": 2, + "__Pyx_c_diff": 2, + "__Pyx_c_prod": 2, + "__Pyx_c_quot": 2, + "__Pyx_c_neg": 2, + "__Pyx_c_is_zero": 3, + "__Pyx_c_conj": 3, + "__Pyx_c_abs": 3, + "__Pyx_c_pow": 3, + "cabs": 1, + "cpow": 1, + "__Pyx_PyInt_AsUnsignedChar": 1, + "short": 6, + "__Pyx_PyInt_AsUnsignedShort": 1, + "__Pyx_PyInt_AsUnsignedInt": 1, + "__Pyx_PyInt_AsChar": 1, + "__Pyx_PyInt_AsShort": 1, + "signed": 5, + "__Pyx_PyInt_AsSignedChar": 1, + "__Pyx_PyInt_AsSignedShort": 1, + "__Pyx_PyInt_AsSignedInt": 1, + "__Pyx_PyInt_AsLongDouble": 1, + "__Pyx_PyInt_AsUnsignedLong": 1, + "__Pyx_PyInt_AsUnsignedLongLong": 1, + "__Pyx_PyInt_AsLong": 1, + "__Pyx_PyInt_AsLongLong": 1, + "__Pyx_PyInt_AsSignedLong": 1, + "__Pyx_PyInt_AsSignedLongLong": 1, + "__Pyx_WriteUnraisable": 4, + "clineno": 1, + "lineno": 1, + "*filename": 2, + "__Pyx_check_binary_version": 1, + "__Pyx_SetVtable": 1, + "*vtable": 1, + "__Pyx_PyIdentifier_FromString": 3, + "*__Pyx_ImportModule": 1, + "*__Pyx_ImportType": 1, + "*module_name": 1, + "*class_name": 1, + "strict": 2, + "__Pyx_GetVtable": 1, + "code_line": 4, + "PyCodeObject*": 2, + "code_object": 2, + "__Pyx_CodeObjectCacheEntry": 1, + "__Pyx_CodeObjectCache": 2, + "max_count": 1, + "__Pyx_CodeObjectCacheEntry*": 2, + "entries": 2, + "__pyx_code_cache": 1, + "__pyx_bisect_code_objects": 1, + "PyCodeObject": 1, + "*__pyx_find_code_object": 1, + "__pyx_insert_code_object": 1, + "__Pyx_AddTraceback": 7, + "*funcname": 1, + "c_line": 1, + "py_line": 1, + "__Pyx_InitStrings": 1, + "*t": 2, + "*__pyx_ptype_7cpython_4type_type": 1, + "*__pyx_ptype_5numpy_dtype": 1, + "*__pyx_ptype_5numpy_flatiter": 1, + "*__pyx_ptype_5numpy_broadcast": 1, + "*__pyx_ptype_5numpy_ndarray": 1, + "*__pyx_ptype_5numpy_ufunc": 1, + "*__pyx_f_5numpy__util_dtypestring": 1, + "PyArray_Descr": 1, + "*__pyx_ptype_7sklearn_5utils_13weight_vector_WeightVector": 1, + "*__pyx_ptype_7sklearn_5utils_11seq_dataset_SequentialDataset": 1, + "*__pyx_ptype_7sklearn_5utils_11seq_dataset_ArrayDataset": 1, + "*__pyx_ptype_7sklearn_5utils_11seq_dataset_CSRDataset": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_LossFunction": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Regression": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Classification": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_ModifiedHuber": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Hinge": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Log": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredLoss": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Huber": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredEpsilonInsensitive": 1, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_max": 1, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_min": 1, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_sqnorm": 1, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_l1penalty": 1, + "__Pyx_TypeInfo_nn___pyx_t_7sklearn_12linear_model_8sgd_fast_DOUBLE": 1, + "__Pyx_MODULE_NAME": 1, + "__pyx_module_is_main_sklearn__linear_model__sgd_fast": 1, + "*__pyx_builtin_NotImplementedError": 1, + "*__pyx_builtin_range": 1, + "*__pyx_builtin_ValueError": 1, + "*__pyx_builtin_RuntimeError": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 2, + "*__pyx_v_self": 52, + "__pyx_v_p": 46, + "__pyx_v_y": 46, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 2, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 2, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_2dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_14Classification_loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_14Classification_2dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_2dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_4__reduce__": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge___init__": 1, + "__pyx_v_threshold": 2, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_2loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_4dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_6__reduce__": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge___init__": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_2loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_4dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_6__reduce__": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_2dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_4__reduce__": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_2dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_4__reduce__": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber___init__": 1, + "__pyx_v_c": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_2loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_4dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_6__reduce__": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive___init__": 1, + "__pyx_v_epsilon": 2, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_2loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_4dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_6__reduce__": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive___init__": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_2loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_4dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_6__reduce__": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_plain_sgd": 1, + "*__pyx_self": 1, + "*__pyx_v_weights": 1, + "__pyx_v_intercept": 1, + "*__pyx_v_loss": 1, + "__pyx_v_penalty_type": 1, + "__pyx_v_alpha": 1, + "__pyx_v_C": 1, + "__pyx_v_rho": 1, + "*__pyx_v_dataset": 1, + "__pyx_v_n_iter": 1, + "__pyx_v_fit_intercept": 1, + "__pyx_v_verbose": 1, + "__pyx_v_shuffle": 1, + "*__pyx_v_seed": 1, + "__pyx_v_weight_pos": 1, + "__pyx_v_weight_neg": 1, + "__pyx_v_learning_rate": 1, + "__pyx_v_eta0": 1, + "__pyx_v_power_t": 1, + "__pyx_v_t": 1, + "__pyx_v_intercept_decay": 1, + "__pyx_pf_5numpy_7ndarray___getbuffer__": 1, + "*__pyx_v_info": 2, + "__pyx_v_flags": 1, + "__pyx_pf_5numpy_7ndarray_2__releasebuffer__": 1, + "__pyx_k_1": 1, + "__pyx_k_2": 1, + "__pyx_k_3": 1, + "__pyx_k_4": 1, + "__pyx_k_6": 1, + "__pyx_k_8": 1, + "__pyx_k_10": 1, + "__pyx_k_12": 1, + "__pyx_k_13": 1, + "__pyx_k_16": 1, + "__pyx_k_20": 1, + "__pyx_k_21": 1, + "__pyx_k__B": 1, + "__pyx_k__C": 1, + "__pyx_k__H": 1, + "__pyx_k__I": 1, + "__pyx_k__L": 1, + "__pyx_k__O": 1, + "__pyx_k__Q": 1, + "__pyx_k__b": 1, + "__pyx_k__c": 1, + "__pyx_k__d": 1, + "__pyx_k__f": 1, + "__pyx_k__g": 1, + "__pyx_k__h": 1, + "__pyx_k__i": 1, + "__pyx_k__l": 1, + "__pyx_k__p": 1, + "__pyx_k__q": 1, + "__pyx_k__t": 1, + "__pyx_k__u": 1, + "__pyx_k__w": 1, + "__pyx_k__y": 1, + "__pyx_k__Zd": 1, + "__pyx_k__Zf": 1, + "__pyx_k__Zg": 1, + "__pyx_k__np": 1, + "__pyx_k__any": 1, + "__pyx_k__eta": 1, + "__pyx_k__rho": 1, + "__pyx_k__sys": 1, + "__pyx_k__eta0": 1, + "__pyx_k__loss": 1, + "__pyx_k__seed": 1, + "__pyx_k__time": 1, + "__pyx_k__xnnz": 1, + "__pyx_k__alpha": 1, + "__pyx_k__count": 1, + "__pyx_k__dloss": 1, + "__pyx_k__dtype": 1, + "__pyx_k__epoch": 1, + "__pyx_k__isinf": 1, + "__pyx_k__isnan": 1, + "__pyx_k__numpy": 1, + "__pyx_k__order": 1, + "__pyx_k__range": 1, + "__pyx_k__shape": 1, + "__pyx_k__zeros": 1, + "__pyx_k__n_iter": 1, + "__pyx_k__update": 1, + "__pyx_k__dataset": 1, + "__pyx_k__epsilon": 1, + "__pyx_k__float64": 1, + "__pyx_k__nonzero": 1, + "__pyx_k__power_t": 1, + "__pyx_k__shuffle": 1, + "__pyx_k__sumloss": 1, + "__pyx_k__t_start": 1, + "__pyx_k__verbose": 1, + "__pyx_k__weights": 1, + "__pyx_k____main__": 1, + "__pyx_k____test__": 1, + "__pyx_k__is_hinge": 1, + "__pyx_k__intercept": 1, + "__pyx_k__n_samples": 1, + "__pyx_k__plain_sgd": 1, + "__pyx_k__threshold": 1, + "__pyx_k__x_ind_ptr": 1, + "__pyx_k__ValueError": 1, + "__pyx_k__n_features": 1, + "__pyx_k__q_data_ptr": 1, + "__pyx_k__weight_neg": 1, + "__pyx_k__weight_pos": 1, + "__pyx_k__x_data_ptr": 1, + "__pyx_k__RuntimeError": 1, + "__pyx_k__class_weight": 1, + "__pyx_k__penalty_type": 1, + "__pyx_k__fit_intercept": 1, + "__pyx_k__learning_rate": 1, + "__pyx_k__sample_weight": 1, + "__pyx_k__intercept_decay": 1, + "__pyx_k__NotImplementedError": 1, + "*__pyx_kp_s_1": 1, + "*__pyx_kp_u_10": 1, + "*__pyx_kp_u_12": 1, + "*__pyx_kp_u_13": 1, + "*__pyx_kp_u_16": 1, + "*__pyx_kp_s_2": 1, + "*__pyx_kp_s_20": 1, + "*__pyx_n_s_21": 1, + "*__pyx_kp_s_3": 1, + "*__pyx_kp_s_4": 1, + "*__pyx_kp_u_6": 1, + "*__pyx_kp_u_8": 1, + "*__pyx_n_s__C": 1, + "*__pyx_n_s__NotImplementedError": 1, + "*__pyx_n_s__RuntimeError": 1, + "*__pyx_n_s__ValueError": 1, + "*__pyx_n_s____main__": 1, + "*__pyx_n_s____test__": 1, + "*__pyx_n_s__alpha": 1, + "*__pyx_n_s__any": 1, + "*__pyx_n_s__c": 1, + "*__pyx_n_s__class_weight": 1, + "*__pyx_n_s__count": 1, + "*__pyx_n_s__dataset": 1, + "*__pyx_n_s__dloss": 1, + "*__pyx_n_s__dtype": 1, + "*__pyx_n_s__epoch": 1, + "*__pyx_n_s__epsilon": 1, + "*__pyx_n_s__eta": 1, + "*__pyx_n_s__eta0": 1, + "*__pyx_n_s__fit_intercept": 1, + "*__pyx_n_s__float64": 1, + "*__pyx_n_s__i": 1, + "*__pyx_n_s__intercept": 1, + "*__pyx_n_s__intercept_decay": 1, + "*__pyx_n_s__is_hinge": 1, + "*__pyx_n_s__isinf": 1, + "*__pyx_n_s__isnan": 1, + "*__pyx_n_s__learning_rate": 1, + "*__pyx_n_s__loss": 1, + "*__pyx_n_s__n_features": 1, + "*__pyx_n_s__n_iter": 1, + "*__pyx_n_s__n_samples": 1, + "*__pyx_n_s__nonzero": 1, + "*__pyx_n_s__np": 1, + "*__pyx_n_s__numpy": 1, + "*__pyx_n_s__order": 1, + "*__pyx_n_s__p": 1, + "*__pyx_n_s__penalty_type": 1, + "*__pyx_n_s__plain_sgd": 1, + "*__pyx_n_s__power_t": 1, + "*__pyx_n_s__q": 1, + "*__pyx_n_s__q_data_ptr": 1, + "*__pyx_n_s__range": 1, + "*__pyx_n_s__rho": 1, + "*__pyx_n_s__sample_weight": 1, + "*__pyx_n_s__seed": 1, + "*__pyx_n_s__shape": 1, + "*__pyx_n_s__shuffle": 1, + "*__pyx_n_s__sumloss": 1, + "*__pyx_n_s__sys": 1, + "*__pyx_n_s__t": 1, + "*__pyx_n_s__t_start": 1, + "*__pyx_n_s__threshold": 1, + "*__pyx_n_s__time": 1, + "*__pyx_n_s__u": 1, + "*__pyx_n_s__update": 1, + "*__pyx_n_s__verbose": 1, + "*__pyx_n_s__w": 1, + "*__pyx_n_s__weight_neg": 1, + "*__pyx_n_s__weight_pos": 1, + "*__pyx_n_s__weights": 1, + "*__pyx_n_s__x_data_ptr": 1, + "*__pyx_n_s__x_ind_ptr": 1, + "*__pyx_n_s__xnnz": 1, + "*__pyx_n_s__y": 1, + "*__pyx_n_s__zeros": 1, + "*__pyx_int_15": 1, + "*__pyx_k_tuple_5": 1, + "*__pyx_k_tuple_7": 1, + "*__pyx_k_tuple_9": 1, + "*__pyx_k_tuple_11": 1, + "*__pyx_k_tuple_14": 1, + "*__pyx_k_tuple_15": 1, + "*__pyx_k_tuple_17": 1, + "*__pyx_k_tuple_18": 1, + "*__pyx_k_codeobj_19": 1, + "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_1loss": 3, + "*__pyx_args": 9, + "*__pyx_kwds": 9, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, + "__pyx_skip_dispatch": 6, + "__pyx_r": 39, + "*__pyx_t_1": 6, + "*__pyx_t_2": 3, + "*__pyx_t_3": 3, + "*__pyx_t_4": 3, + "__pyx_t_5": 12, + "__pyx_v_self": 15, + "tp_dictoffset": 3, + "__pyx_t_1": 69, + "PyObject_GetAttr": 3, + "__pyx_n_s__loss": 2, + "__pyx_filename": 51, + "__pyx_f": 42, + "__pyx_L1_error": 33, + "PyCFunction_Check": 3, + "PyCFunction_GET_FUNCTION": 3, + "PyCFunction": 3, + "__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_1loss": 1, + "__pyx_t_2": 21, + "PyFloat_FromDouble": 9, + "__pyx_t_3": 39, + "__pyx_t_4": 27, + "PyTuple_New": 3, + "PyTuple_SET_ITEM": 6, + "PyObject_Call": 6, + "PyErr_Occurred": 9, + "__pyx_L0": 18, + "__pyx_builtin_NotImplementedError": 3, + "__pyx_empty_tuple": 3, + "__pyx_doc_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, + "*__pyx_r": 6, + "**__pyx_pyargnames": 3, + "__pyx_n_s__p": 6, + "__pyx_n_s__y": 6, + "values": 30, + "__pyx_kwds": 15, + "kw_args": 15, + "pos_args": 12, + "__pyx_args": 21, + "__pyx_L5_argtuple_error": 12, + "PyDict_Size": 3, + "PyDict_GetItem": 6, + "__pyx_L3_error": 18, + "__pyx_pyargnames": 3, + "__pyx_L4_argument_unpacking_done": 6, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, + "__pyx_vtab": 2, + "loss": 1, + "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_3dloss": 3, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_12LossFunction_dloss": 1, + "__pyx_n_s__dloss": 1, + "__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_3dloss": 1, + "__pyx_doc_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 1, + "dloss": 1, + "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_10Regression_1loss": 3, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 1, + "__pyx_pw_7sklearn_12linear_model_8sgd_fast_10Regression_1loss": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 1, + "__pyx_base.__pyx_vtab": 1, + "__pyx_base.loss": 1, + "": 3, + "yajl_status_to_string": 1, + "yajl_status": 4, + "stat": 3, + "statStr": 6, + "yajl_status_ok": 1, + "yajl_status_client_canceled": 1, + "yajl_status_insufficient_data": 1, + "yajl_status_error": 1, + "yajl_handle": 10, + "yajl_alloc": 1, + "yajl_callbacks": 1, + "callbacks": 3, + "yajl_parser_config": 1, + "config": 4, + "yajl_alloc_funcs": 3, + "afs": 8, + "allowComments": 4, + "validateUTF8": 3, + "hand": 28, + "afsBuffer": 3, + "realloc": 1, + "yajl_set_default_alloc_funcs": 1, + "YA_MALLOC": 1, + "yajl_handle_t": 1, + "alloc": 6, + "checkUTF8": 1, + "lexer": 4, + "yajl_lex_alloc": 1, + "bytesConsumed": 2, + "decodeBuf": 2, + "yajl_buf_alloc": 1, + "yajl_bs_init": 1, + "stateStack": 3, + "yajl_bs_push": 1, + "yajl_state_start": 1, + "yajl_reset_parser": 1, + "yajl_lex_realloc": 1, + "yajl_free": 1, + "yajl_bs_free": 1, + "yajl_buf_free": 1, + "yajl_lex_free": 1, + "YA_FREE": 2, + "yajl_parse": 2, + "jsonText": 4, + "jsonTextLen": 4, + "yajl_do_parse": 1, + "yajl_parse_complete": 1, + "yajl_get_error": 1, + "verbose": 2, + "yajl_render_error_string": 1, + "yajl_get_bytes_consumed": 1, + "yajl_free_error": 1, + "": 2, + "": 2, + "": 1, + "READ_VSNPRINTF_ARGS": 5, + "rfUTF8_VerifySequence": 7, + "RF_FAILURE": 24, + "LOG_ERROR": 64, + "RE_STRING_INIT_FAILURE": 8, + "buffAllocated": 11, + "true": 73, + "ret": 142, + "RF_MALLOC": 47, + "RF_OPTION_SOURCE_ENCODING": 30, + "characterLength": 16, + "*codepoints": 2, + "rfLMS_MacroEvalPtr": 2, + "RF_LMS": 6, + "RF_UTF16_LE": 9, + "RF_UTF16_BE": 7, + "codepoints": 44, + "i/2": 2, + "RF_UTF32_LE": 3, + "RF_UTF32_BE": 3, + "decode": 6, + "UTF16": 4, + "rfUTILS_Endianess": 24, + "RF_LITTLE_ENDIAN": 23, + "rfUTF16_Decode": 5, + "cleanup": 12, + "rfUTF16_Decode_swap": 5, + "RF_UTF16_BE//": 2, + "RF_UTF32_LE//": 2, + "copy": 4, + "UTF32": 4, + "into": 8, + "codepoint": 47, + "rfUTILS_SwapEndianUI": 11, + "RF_UTF32_BE//": 2, + "RF_BIG_ENDIAN": 10, + "": 2, + "endif": 6, + "in": 11, + "than": 5, + "encode": 2, + "rfUTF8_Encode": 4, + "0": 11, + "While": 2, + "attempting": 2, + "create": 2, + "byte": 6, + "sequence": 6, + "could": 2, + "properly": 2, + "encoded": 2, + "RE_UTF8_ENCODING": 2, + "End": 2, + "Non": 2, + "code=": 2, + "normally": 1, + "here": 5, + "we": 10, + "buffer": 10, + "validity": 2, + "get": 4, + "Error": 2, + "Allocation": 2, + "due": 2, + "invalid": 2, + "rfLMS_Push": 4, + "Memory": 4, + "allocation": 3, + "Local": 2, + "Stack": 2, + "failed": 2, + "Insufficient": 2, + "space": 4, + "Consider": 2, + "compiling": 2, + "bigger": 3, + "Quitting": 2, + "proccess": 2, + "RE_LOCALMEMSTACK_INSUFFICIENT": 8, + "RE_UTF16_INVALID_SEQUENCE": 20, + "during": 1, + "RF_HEXLE_UI": 8, + "RF_HEXGE_UI": 6, + "ff": 10, + "ffff": 4, + "xFC0": 4, + "xF000": 2, + "xE": 2, + "F000": 2, + "C0000": 2, + "RE_UTF8_INVALID_CODE_POINT": 2, + "numLen": 8, + "max": 4, + "most": 3, + "environment": 3, + "so": 4, + "chars": 3, + "will": 3, + "certainly": 3, + "fit": 3, + "strcpy": 4, + "utf8ByteLength": 34, + "last": 1, + "utf": 1, + "null": 4, + "termination": 3, + "byteLength*2": 1, + "allocate": 1, + "same": 1, + "else//": 14, + "different": 1, + "RE_INPUT": 1, + "ends": 3, + "swapE": 21, + "codeBuffer": 9, + "RF_HEXEQ_UI": 7, + "xFEFF": 1, + "big": 14, + "endian": 20, + "xFFFE0000": 1, + "little": 7, + "according": 1, + "standard": 1, + "BOM": 1, + "means": 1, + "rfUTF32_Length": 1, + "sourceP": 2, + "RF_REALLOC": 9, + "<5)>": 1, + "bytesWritten": 2, + "charsN": 5, + "rfUTF8_Decode": 2, + "rfUTF16_Encode": 1, + "RF_STRING_ITERATE_START": 9, + "RF_STRING_ITERATE_END": 9, + "codePoint": 18, + "RF_HEXEQ_C": 9, + "xC0": 3, + "xE0": 2, + "xF": 5, + "xF0": 2, + "thisstrP": 32, + "charPos": 8, + "byteI": 7, + "s1P": 2, + "s2P": 2, + "sstrP": 6, + "optionsP": 11, + "*optionsP": 8, + "found": 20, + "RF_BITFLAG_ON": 5, + "strstr": 2, + "": 1, + "0x5a": 1, + "match": 16, + "0x7a": 1, + "substring": 5, + "search": 1, + "zero": 2, + "equals": 1, + "then": 1, + "okay": 1, + "RF_SUCCESS": 14, + "ERANGE": 1, + "RE_STRING_TOFLOAT_UNDERFLOW": 1, + "RE_STRING_TOFLOAT": 1, + "srcP": 6, + "bytePos": 23, + "terminate": 1, + "afterstrP": 2, + "sscanf": 1, + "<=0)>": 1, + "Counts": 1, + "how": 1, + "many": 1, + "times": 1, + "occurs": 1, + "sstr2": 2, + "move": 12, + "rfString_FindBytePos": 10, + "*tokensN": 1, + "lstrP": 1, + "rstrP": 5, + "temp": 11, + "parNP": 6, + "*parNP": 2, + "minPos": 17, + "thisPos": 8, + "argList": 8, + "va_arg": 2, + "afterP": 2, + "minPosLength": 3, + "go": 8, + "otherP": 4, + "strncat": 1, + "goes": 1, + "numberP": 1, + "*numberP": 1, + "occurences": 5, + "done": 1, + "<=thisstr->": 1, + "keepstrP": 2, + "keepLength": 2, + "charValue": 12, + "*keepChars": 1, + "charBLength": 5, + "keepChars": 4, + "*keepLength": 1, + "": 1, + "does": 1, + "back": 1, + "cover": 1, + "effectively": 1, + "gets": 1, + "deleted": 1, + "rfUTF8_FromCodepoint": 1, + "kind": 1, + "non": 1, + "clean": 1, + "way": 1, + "internally": 1, + "uses": 1, + "variable": 1, + "use": 1, + "determine": 1, + "current": 5, + "backs": 1, + "memmove": 2, + "by": 1, + "contiuing": 1, + "sure": 2, + "position": 1, + "won": 1, + "array": 1, + "nBytePos": 23, + "RF_STRING_ITERATEB_START": 2, + "RF_STRING_ITERATEB_END": 2, + "pBytePos": 15, + "indexing": 1, + "works": 1, + "pbytePos": 2, + "pth": 2, + "got": 1, + "numP": 1, + "*numP": 1, + "just": 1, + "finding": 1, + "foundN": 10, + "diff": 93, + "bSize": 4, + "bytePositions": 17, + "bSize*sizeof": 1, + "rfStringX_FromString_IN": 1, + "temp.bIndex": 2, + "temp.bytes": 1, + "temp.byteLength": 1, + "rfStringX_Deinit": 1, + "replace": 3, + "removed": 2, + "one": 2, + "orSize": 5, + "nSize": 4, + "number*diff": 1, + "strncpy": 3, + "smaller": 1, + "diff*number": 1, + "remove": 1, + "equal": 1, + "subP": 7, + "RF_String*sub": 2, + "noMatch": 8, + "*subValues": 2, + "subLength": 6, + "subValues": 8, + "*subLength": 2, + "lastBytePos": 4, + "testity": 2, + "res1": 2, + "res2": 2, + "bytesN": 98, + "unused": 3, + "FILE*f": 2, + "utf8BufferSize": 4, + "char*utf8": 3, + "<0)>": 1, + "Failure": 1, + "initialize": 1, + "reading": 1, + "Little": 1, + "Endian": 1, + "32": 1, + "file": 6, + "bytesN=": 1, + "sP": 2, + "encodingP": 1, + "*utf32": 1, + "utf16": 11, + "*encodingP": 1, + "fwrite": 5, + "logging": 5, + "rfUTILS_SwapEndianUS": 10, + "utf32": 10, + "i_WRITE_CHECK": 1, + "RE_FILE_WRITE": 1, + "ATSHOME_LIBATS_DYNARRAY_CATS": 3, + "atslib_dynarray_memcpy": 1, + "atslib_dynarray_memmove": 1, + "lookup_object": 2, + "sha1": 20, + "create_object": 2, + "OBJ_BLOB": 3, + "alloc_blob_node": 1, + "sha1_to_hex": 8, + "typename": 2, + "item": 24, + "object.parsed": 4, + "http_parser_h": 2, + "HTTP_PARSER_VERSION_MAJOR": 1, + "HTTP_PARSER_VERSION_MINOR": 1, + "__MINGW32__": 1, + "__int8": 2, + "int8_t": 3, + "__int16": 2, + "int16_t": 1, + "uint16_t": 12, + "__int32": 2, + "uint64_t": 8, + "ssize_t": 1, + "": 1, + "HTTP_PARSER_STRICT": 5, + "HTTP_PARSER_DEBUG": 4, + "HTTP_MAX_HEADER_SIZE": 2, + "http_parser": 13, + "http_parser_settings": 5, + "HTTP_METHOD_MAP": 3, + "XX": 63, + "DELETE": 2, + "GET": 2, + "HEAD": 2, + "POST": 2, + "PUT": 2, + "CONNECT": 2, + "OPTIONS": 2, + "TRACE": 2, + "COPY": 2, + "LOCK": 2, + "MKCOL": 2, + "MOVE": 2, + "PROPFIND": 2, + "PROPPATCH": 2, + "SEARCH": 3, + "UNLOCK": 2, + "REPORT": 2, + "MKACTIVITY": 2, + "CHECKOUT": 2, + "MERGE": 2, + "MSEARCH": 1, + "M": 1, + "NOTIFY": 2, + "SUBSCRIBE": 2, + "UNSUBSCRIBE": 2, + "PATCH": 2, + "PURGE": 2, + "enum": 30, + "http_method": 4, + "HTTP_##name": 1, + "http_parser_type": 3, + "HTTP_REQUEST": 7, + "HTTP_RESPONSE": 3, + "HTTP_BOTH": 1, + "F_CHUNKED": 11, + "F_CONNECTION_KEEP_ALIVE": 3, + "F_CONNECTION_CLOSE": 3, + "F_TRAILING": 3, + "F_UPGRADE": 3, + "F_SKIPBODY": 4, + "HTTP_ERRNO_MAP": 3, + "OK": 1, + "CB_message_begin": 1, + "CB_url": 1, + "CB_header_field": 1, + "CB_header_value": 1, + "CB_headers_complete": 1, + "CB_body": 1, + "CB_message_complete": 1, + "INVALID_EOF_STATE": 1, + "HEADER_OVERFLOW": 1, + "CLOSED_CONNECTION": 1, + "INVALID_VERSION": 1, + "INVALID_STATUS": 1, + "INVALID_METHOD": 1, + "INVALID_URL": 1, + "INVALID_HOST": 1, + "INVALID_PORT": 1, + "INVALID_PATH": 1, + "INVALID_QUERY_STRING": 1, + "INVALID_FRAGMENT": 1, + "LF_EXPECTED": 1, + "INVALID_HEADER_TOKEN": 1, + "INVALID_CONTENT_LENGTH": 1, + "INVALID_CHUNK_SIZE": 1, + "INVALID_CONSTANT": 1, + "INVALID_INTERNAL_STATE": 1, + "STRICT": 1, + "PAUSED": 1, + "UNKNOWN": 1, + "HTTP_ERRNO_GEN": 3, + "HPE_##n": 1, + "http_errno": 11, + "HTTP_PARSER_ERRNO": 10, + "HTTP_PARSER_ERRNO_LINE": 2, + "error_lineno": 3, + "header_state": 42, + "nread": 7, + "content_length": 27, + "http_major": 11, + "http_minor": 11, + "status_code": 8, + "method": 39, + "upgrade": 3, + "http_cb": 3, + "on_message_begin": 1, + "http_data_cb": 4, + "on_url": 1, + "on_header_field": 1, + "on_header_value": 1, + "on_headers_complete": 3, + "on_body": 1, + "on_message_complete": 1, + "http_parser_url_fields": 2, + "UF_SCHEMA": 2, + "UF_HOST": 3, + "UF_PORT": 5, + "UF_PATH": 2, + "UF_QUERY": 2, + "UF_FRAGMENT": 2, + "UF_MAX": 3, + "http_parser_url": 3, + "field_set": 5, + "field_data": 5, + "http_parser_init": 2, + "*parser": 9, + "http_parser_execute": 2, + "*settings": 2, + "http_should_keep_alive": 2, + "*http_method_str": 1, + "*http_errno_name": 1, + "*http_errno_description": 1, + "http_parser_parse_url": 2, + "buflen": 3, + "is_connect": 4, + "*u": 2, + "http_parser_pause": 2, + "paused": 3, + "PPC_SHA1": 1, + "git_hash_ctx": 7, + "SHA_CTX": 3, + "*git_hash_new_ctx": 1, + "*ctx": 5, + "SHA1_Init": 4, + "git_hash_free_ctx": 1, + "git_hash_init": 1, + "git_hash_update": 1, + "SHA1_Update": 3, + "git_hash_final": 1, + "*out": 3, + "SHA1_Final": 3, + "git_hash_buf": 1, + "git_hash_vec": 1, + "git_buf_vec": 1, + "*vec": 1, + "vec": 2, + ".data": 1, + ".len": 3, + "BOOTSTRAP_H": 2, + "*true": 1, + "*false": 1, + "*eof": 1, + "*empty_list": 1, + "*global_enviroment": 1, + "obj_type": 1, + "scm_bool": 1, + "scm_empty_list": 1, + "scm_eof": 1, + "scm_char": 1, + "scm_int": 1, + "scm_pair": 1, + "scm_symbol": 1, + "scm_prim_fun": 1, + "scm_lambda": 1, + "scm_str": 1, + "scm_file": 1, + "*eval_proc": 1, + "*maybe_add_begin": 1, + "*code": 2, + "init_enviroment": 1, + "*env": 4, + "eval_err": 1, + "__attribute__": 1, + "noreturn": 1, + "define_var": 1, + "*var": 4, + "set_var": 1, + "*get_var": 1, + "*cond2nested_if": 1, + "*cond": 1, + "*let2lambda": 1, + "*let": 1, + "*and2nested_if": 1, + "*and": 1, + "*or2nested_if": 1, + "*or": 1, + "syscalldef": 1, + "syscalldefs": 1, + "SYSCALL_OR_NUM": 3, + "SYS_restart_syscall": 1, + "MAKE_UINT16": 3, + "SYS_exit": 1, + "SYS_fork": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "CONFIG_SMP": 1, + "DEFINE_MUTEX": 1, + "cpu_add_remove_lock": 3, + "cpu_maps_update_begin": 9, + "mutex_lock": 5, + "cpu_maps_update_done": 9, + "mutex_unlock": 6, + "RAW_NOTIFIER_HEAD": 1, + "cpu_chain": 4, + "cpu_hotplug_disabled": 7, + "CONFIG_HOTPLUG_CPU": 2, + "task_struct": 5, + "*active_writer": 1, + "mutex": 1, + "cpu_hotplug": 1, + ".active_writer": 1, + ".lock": 1, + "__MUTEX_INITIALIZER": 1, + "cpu_hotplug.lock": 8, + ".refcount": 1, + "get_online_cpus": 2, + "might_sleep": 1, + "cpu_hotplug.active_writer": 6, + "cpu_hotplug.refcount": 3, + "EXPORT_SYMBOL_GPL": 4, + "put_online_cpus": 2, + "wake_up_process": 1, + "cpu_hotplug_begin": 4, + "__set_current_state": 1, + "TASK_UNINTERRUPTIBLE": 1, + "schedule": 1, + "cpu_hotplug_done": 4, + "__ref": 6, + "register_cpu_notifier": 2, + "notifier_block": 3, + "*nb": 3, + "raw_notifier_chain_register": 1, + "nb": 2, + "__cpu_notify": 6, + "*v": 3, + "nr_to_call": 2, + "*nr_calls": 1, + "__raw_notifier_call_chain": 1, + "nr_calls": 9, + "notifier_to_errno": 1, + "cpu_notify": 5, + "cpu_notify_nofail": 4, + "BUG_ON": 4, + "EXPORT_SYMBOL": 8, + "unregister_cpu_notifier": 2, + "raw_notifier_chain_unregister": 1, + "clear_tasks_mm_cpumask": 1, + "cpu": 57, + "*p": 9, + "WARN_ON": 1, + "cpu_online": 5, + "rcu_read_lock": 1, + "for_each_process": 2, + "find_lock_task_mm": 1, + "cpumask_clear_cpu": 5, + "mm_cpumask": 1, + "mm": 1, + "task_unlock": 1, + "rcu_read_unlock": 1, + "check_for_tasks": 2, + "write_lock_irq": 1, + "tasklist_lock": 2, + "task_cpu": 1, + "TASK_RUNNING": 1, + "utime": 1, + "stime": 1, + "printk": 12, + "KERN_WARNING": 3, + "comm": 1, + "task_pid_nr": 1, + "write_unlock_irq": 1, + "take_cpu_down_param": 3, + "mod": 13, + "*hcpu": 3, + "take_cpu_down": 2, + "*_param": 1, + "*param": 1, + "_param": 1, + "__cpu_disable": 1, + "CPU_DYING": 1, + "param": 2, + "hcpu": 10, + "_cpu_down": 3, + "tasks_frozen": 4, + "CPU_TASKS_FROZEN": 2, + "tcd_param": 2, + ".mod": 1, + ".hcpu": 1, + "num_online_cpus": 2, + "EBUSY": 3, + "CPU_DOWN_PREPARE": 1, + "CPU_DOWN_FAILED": 2, + "__func__": 2, + "out_release": 3, + "__stop_machine": 1, + "cpumask_of": 1, + "idle_cpu": 1, + "cpu_relax": 1, + "__cpu_die": 1, + "CPU_DEAD": 1, + "CPU_POST_DEAD": 1, + "cpu_down": 2, + "__cpuinit": 3, + "_cpu_up": 3, + "*idle": 1, + "cpu_present": 1, + "idle": 4, + "idle_thread_get": 1, + "IS_ERR": 1, + "PTR_ERR": 1, + "CPU_UP_PREPARE": 1, + "out_notify": 3, + "__cpu_up": 1, + "CPU_ONLINE": 1, + "CPU_UP_CANCELED": 1, + "cpu_up": 2, + "CONFIG_MEMORY_HOTPLUG": 2, + "nid": 5, + "pg_data_t": 1, + "*pgdat": 1, + "cpu_possible": 1, + "KERN_ERR": 5, + "CONFIG_IA64": 1, + "cpu_to_node": 1, + "node_online": 1, + "mem_online_node": 1, + "pgdat": 3, + "NODE_DATA": 1, + "node_zonelists": 1, + "_zonerefs": 1, + "zone": 1, + "zonelists_mutex": 2, + "build_all_zonelists": 1, + "CONFIG_PM_SLEEP_SMP": 2, + "cpumask_var_t": 1, + "frozen_cpus": 9, + "__weak": 4, + "arch_disable_nonboot_cpus_begin": 2, + "arch_disable_nonboot_cpus_end": 2, + "disable_nonboot_cpus": 1, + "first_cpu": 3, + "cpumask_first": 1, + "cpu_online_mask": 3, + "cpumask_clear": 2, + "for_each_online_cpu": 1, + "cpumask_set_cpu": 5, + "arch_enable_nonboot_cpus_begin": 2, + "arch_enable_nonboot_cpus_end": 2, + "enable_nonboot_cpus": 1, + "cpumask_empty": 1, + "KERN_INFO": 2, + "for_each_cpu": 1, + "__init": 2, + "alloc_frozen_cpus": 2, + "alloc_cpumask_var": 1, + "GFP_KERNEL": 1, + "__GFP_ZERO": 1, + "core_initcall": 2, + "cpu_hotplug_disable_before_freeze": 2, + "cpu_hotplug_enable_after_thaw": 2, + "cpu_hotplug_pm_callback": 2, + "action": 2, + "*ptr": 1, + "PM_SUSPEND_PREPARE": 1, + "PM_HIBERNATION_PREPARE": 1, + "PM_POST_SUSPEND": 1, + "PM_POST_HIBERNATION": 1, + "NOTIFY_DONE": 1, + "NOTIFY_OK": 1, + "cpu_hotplug_pm_sync_init": 2, + "pm_notifier": 1, + "notify_cpu_starting": 1, + "CPU_STARTING": 1, + "cpumask_test_cpu": 1, + "CPU_STARTING_FROZEN": 1, + "MASK_DECLARE_1": 3, + "UL": 1, + "MASK_DECLARE_2": 3, + "MASK_DECLARE_4": 3, + "MASK_DECLARE_8": 9, + "cpu_bit_bitmap": 2, + "BITS_PER_LONG": 2, + "BITS_TO_LONGS": 1, + "NR_CPUS": 2, + "DECLARE_BITMAP": 6, + "cpu_all_bits": 2, + "CPU_BITS_ALL": 2, + "CONFIG_INIT_ALL_POSSIBLE": 1, + "cpu_possible_bits": 6, + "CONFIG_NR_CPUS": 5, + "__read_mostly": 5, + "cpumask": 7, + "*const": 4, + "cpu_possible_mask": 2, + "to_cpumask": 15, + "cpu_online_bits": 5, + "cpu_present_bits": 5, + "cpu_present_mask": 2, + "cpu_active_bits": 4, + "cpu_active_mask": 2, + "set_cpu_possible": 1, + "bool": 6, + "possible": 2, + "set_cpu_present": 1, + "present": 2, + "set_cpu_online": 1, + "online": 2, + "set_cpu_active": 1, + "active": 2, + "init_cpu_present": 1, + "*src": 3, + "cpumask_copy": 3, + "init_cpu_possible": 1, + "init_cpu_online": 1, + "git_usage_string": 2, + "git_more_info_string": 2, + "N_": 1, + "startup_info": 3, + "git_startup_info": 2, + "use_pager": 8, + "pager_config": 3, + "*cmd": 5, + "want": 3, + "pager_command_config": 2, + "prefixcmp": 3, + "git_config_maybe_bool": 1, + "xstrdup": 2, + "check_pager_config": 3, + "c.cmd": 1, + "c.want": 2, + "c.value": 3, + "git_config": 3, + "pager_program": 1, + "commit_pager_choice": 4, + "setenv": 1, + "setup_pager": 1, + "handle_options": 2, + "***argv": 2, + "*argc": 1, + "*envchanged": 1, + "**orig_argv": 1, + "*argv": 6, + "new_argv": 7, + "option_count": 1, + "die": 5, + "alias_command": 4, + "trace_argv_printf": 3, + "xrealloc": 2, + "*argcp": 4, + "subdir": 3, + "die_errno": 3, + "saved_errno": 1, + "git_version_string": 1, + "GIT_VERSION": 1, + "RUN_SETUP": 81, + "RUN_SETUP_GENTLY": 16, + "USE_PAGER": 3, + "NEED_WORK_TREE": 18, + "cmd_struct": 4, + "run_builtin": 2, + "help": 4, + "st": 2, + "*prefix": 7, + "prefix": 34, + "setup_git_directory": 1, + "nongit_ok": 2, + "setup_git_directory_gently": 1, + "have_repository": 1, + "trace_repo_setup": 1, + "setup_work_tree": 1, + "fstat": 1, + "fileno": 1, + "S_ISFIFO": 1, + "st.st_mode": 2, + "S_ISSOCK": 1, + "ferror": 2, + "handle_internal_command": 3, + "commands": 3, + "cmd_add": 2, + "cmd_annotate": 1, + "cmd_apply": 1, + "cmd_archive": 1, + "cmd_bisect__helper": 1, + "cmd_blame": 2, + "cmd_branch": 1, + "cmd_bundle": 1, + "cmd_cat_file": 1, + "cmd_check_attr": 1, + "cmd_check_ref_format": 1, + "cmd_checkout": 1, + "cmd_checkout_index": 1, + "cmd_cherry": 1, + "cmd_cherry_pick": 1, + "cmd_clean": 1, + "cmd_clone": 1, + "cmd_column": 1, + "cmd_commit": 1, + "cmd_commit_tree": 1, + "cmd_config": 1, + "cmd_count_objects": 1, + "cmd_describe": 1, + "cmd_diff": 1, + "cmd_diff_files": 1, + "cmd_diff_index": 1, + "cmd_diff_tree": 1, + "cmd_fast_export": 1, + "cmd_fetch": 1, + "cmd_fetch_pack": 1, + "cmd_fmt_merge_msg": 1, + "cmd_for_each_ref": 1, + "cmd_format_patch": 1, + "cmd_fsck": 2, + "cmd_gc": 1, + "cmd_get_tar_commit_id": 1, + "cmd_grep": 1, + "cmd_hash_object": 1, + "cmd_help": 1, + "cmd_index_pack": 1, + "cmd_init_db": 2, + "cmd_log": 1, + "cmd_ls_files": 1, + "cmd_ls_remote": 2, + "cmd_ls_tree": 1, + "cmd_mailinfo": 1, + "cmd_mailsplit": 1, + "cmd_merge": 1, + "cmd_merge_base": 1, + "cmd_merge_file": 1, + "cmd_merge_index": 1, + "cmd_merge_ours": 1, + "cmd_merge_recursive": 4, + "cmd_merge_tree": 1, + "cmd_mktag": 1, + "cmd_mktree": 1, + "cmd_mv": 1, + "cmd_name_rev": 1, + "cmd_notes": 1, + "cmd_pack_objects": 1, + "cmd_pack_redundant": 1, + "cmd_pack_refs": 1, + "cmd_patch_id": 1, + "cmd_prune": 1, + "cmd_prune_packed": 1, + "cmd_push": 1, + "cmd_read_tree": 1, + "cmd_receive_pack": 1, + "cmd_reflog": 1, + "cmd_remote": 1, + "cmd_remote_ext": 1, + "cmd_remote_fd": 1, + "cmd_replace": 1, + "cmd_repo_config": 1, + "cmd_rerere": 1, + "cmd_reset": 1, + "cmd_rev_list": 1, + "cmd_rev_parse": 1, + "cmd_revert": 1, + "cmd_rm": 1, + "cmd_send_pack": 1, + "cmd_shortlog": 1, + "cmd_show": 1, + "cmd_show_branch": 1, + "cmd_show_ref": 1, + "cmd_status": 1, + "cmd_stripspace": 1, + "cmd_symbolic_ref": 1, + "cmd_tag": 1, + "cmd_tar_tree": 1, + "cmd_unpack_file": 1, + "cmd_unpack_objects": 1, + "cmd_update_index": 1, + "cmd_update_ref": 1, + "cmd_update_server_info": 1, + "cmd_upload_archive": 1, + "cmd_upload_archive_writer": 1, + "cmd_var": 1, + "cmd_verify_pack": 1, + "cmd_verify_tag": 1, + "cmd_version": 1, + "cmd_whatchanged": 1, + "cmd_write_tree": 1, + "ext": 4, + "STRIP_EXTENSION": 1, + "*argv0": 1, + "argv0": 2, + "ARRAY_SIZE": 1, + "execv_dashed_external": 2, + "strbuf": 12, + "STRBUF_INIT": 1, + "*tmp": 1, + "strbuf_addf": 1, + "cmd.buf": 1, + "run_command_v_opt": 1, + "RUN_SILENT_EXEC_FAILURE": 1, + "RUN_CLEAN_ON_EXIT": 1, + "strbuf_release": 1, + "run_argv": 2, + "done_alias": 4, + "argcp": 2, + "handle_alias": 1, + "git_extract_argv0_path": 1, + "git_setup_gettext": 1, + "list_common_cmds_help": 1, + "setup_path": 1, + "done_help": 3, + "was_alias": 3, + "help_unknown_cmd": 1, + "*diff_prefix_from_pathspec": 1, + "git_strarray": 2, + "*pathspec": 2, + "git_buf": 3, + "GIT_BUF_INIT": 3, + "*scan": 2, + "git_buf_common_prefix": 1, + "pathspec": 15, + "scan": 4, + "prefix.ptr": 2, + "git__iswildcard": 1, + "git_buf_truncate": 1, + "prefix.size": 1, + "git_buf_detach": 1, + "git_buf_free": 4, + "diff_pathspec_is_interesting": 2, + "*str": 1, + "diff_path_matches_pathspec": 3, + "git_diff_list": 17, + "*diff": 8, + "*path": 2, + "git_attr_fnmatch": 4, + "*match": 3, + "pathspec.length": 1, + "git_vector_foreach": 4, + "p_fnmatch": 1, + "pattern": 3, + "path": 20, + "FNM_NOMATCH": 1, + "GIT_ATTR_FNMATCH_HASWILD": 1, + "strncmp": 1, + "GIT_ATTR_FNMATCH_NEGATIVE": 1, + "git_diff_delta": 19, + "*diff_delta__alloc": 1, + "git_delta_t": 5, + "*delta": 6, + "git__calloc": 3, + "old_file.path": 12, + "git_pool_strdup": 3, + "pool": 12, + "new_file.path": 6, + "opts.flags": 8, + "GIT_DIFF_REVERSE": 3, + "GIT_DELTA_ADDED": 4, + "GIT_DELTA_DELETED": 7, + "*diff_delta__dup": 1, + "*d": 1, + "git_pool": 4, + "*pool": 3, + "fail": 19, + "*diff_delta__merge_like_cgit": 1, + "*a": 9, + "*b": 6, + "*dup": 1, + "diff_delta__dup": 3, + "dup": 15, + "new_file.oid": 7, + "git_oid_cpy": 5, + "new_file.mode": 4, + "new_file.size": 3, + "new_file.flags": 4, + "old_file.oid": 3, + "GIT_DELTA_UNTRACKED": 5, + "GIT_DELTA_IGNORED": 5, + "GIT_DELTA_UNMODIFIED": 11, + "diff_delta__from_one": 5, + "git_index_entry": 8, + "GIT_DIFF_INCLUDE_IGNORED": 1, + "GIT_DIFF_INCLUDE_UNTRACKED": 1, + "diff_delta__alloc": 2, + "GIT_DELTA_MODIFIED": 3, + "old_file.mode": 2, + "old_file.size": 1, + "file_size": 6, + "old_file.flags": 2, + "GIT_DIFF_FILE_VALID_OID": 4, + "git_vector_insert": 4, + "deltas": 8, + "diff_delta__from_two": 2, + "*old_entry": 1, + "*new_entry": 1, + "*new_oid": 1, + "GIT_DIFF_INCLUDE_UNMODIFIED": 1, + "*temp": 1, + "old_entry": 5, + "new_entry": 5, + "new_oid": 3, + "git_oid_iszero": 2, + "*diff_strdup_prefix": 1, + "git_pool_strcat": 1, + "git_pool_strndup": 1, + "diff_delta__cmp": 3, + "*da": 1, + "da": 2, + "config_bool": 5, + "*cfg": 2, + "defvalue": 2, + "git_config_get_bool": 1, + "cfg": 6, + "giterr_clear": 1, + "*git_diff_list_alloc": 1, + "git_repository": 7, + "*repo": 7, + "git_diff_options": 7, + "*opts": 6, + "repo": 23, + "git_vector_init": 3, + "git_pool_init": 2, + "git_repository_config__weakptr": 1, + "diffcaps": 13, + "GIT_DIFFCAPS_HAS_SYMLINKS": 2, + "GIT_DIFFCAPS_ASSUME_UNCHANGED": 2, + "GIT_DIFFCAPS_TRUST_EXEC_BIT": 2, + "GIT_DIFFCAPS_TRUST_CTIME": 2, + "opts": 24, + "opts.pathspec": 2, + "opts.old_prefix": 4, + "diff_strdup_prefix": 2, + "old_prefix": 2, + "DIFF_OLD_PREFIX_DEFAULT": 1, + "opts.new_prefix": 4, + "new_prefix": 2, + "DIFF_NEW_PREFIX_DEFAULT": 1, + "*swap": 1, + "swap": 9, + "pathspec.count": 2, + "*pattern": 1, + "pathspec.strings": 1, + "GIT_ATTR_FNMATCH_ALLOWSPACE": 1, + "git_attr_fnmatch__parse": 1, + "GIT_ENOTFOUND": 1, + "git_diff_list_free": 3, + "deltas.contents": 1, + "git_vector_free": 3, + "pathspec.contents": 1, + "git_pool_clear": 2, + "oid_for_workdir_item": 2, + "full_path": 3, + "git_buf_joinpath": 1, + "git_repository_workdir": 1, + "S_ISLNK": 2, + "git_odb__hashlink": 1, + "full_path.ptr": 2, + "git__is_sizet": 1, + "giterr_set": 1, + "GITERR_OS": 1, + "git_futils_open_ro": 1, + "git_odb__hashfd": 1, + "GIT_OBJ_BLOB": 1, + "p_close": 1, + "EXEC_BIT_MASK": 3, + "maybe_modified": 2, + "git_iterator": 8, + "*old_iter": 2, + "*oitem": 2, + "*new_iter": 2, + "*nitem": 2, + "noid": 4, + "*use_noid": 1, + "omode": 8, + "oitem": 29, + "nmode": 10, + "nitem": 32, + "GIT_UNUSED": 1, + "old_iter": 8, + "S_ISREG": 1, + "GIT_MODE_TYPE": 3, + "GIT_MODE_PERMS_MASK": 1, + "flags_extended": 2, + "GIT_IDXENTRY_INTENT_TO_ADD": 1, + "GIT_IDXENTRY_SKIP_WORKTREE": 1, + "new_iter": 13, + "GIT_ITERATOR_WORKDIR": 2, + "ctime.seconds": 2, + "mtime.seconds": 2, + "GIT_DIFFCAPS_USE_DEV": 1, + "dev": 2, + "ino": 2, + "uid": 2, + "gid": 2, + "S_ISGITLINK": 1, + "git_submodule": 1, + "*sub": 1, + "GIT_DIFF_IGNORE_SUBMODULES": 1, + "git_submodule_lookup": 1, + "ignore": 1, + "GIT_SUBMODULE_IGNORE_ALL": 1, + "use_noid": 2, + "diff_from_iterators": 5, + "**diff_ptr": 1, + "ignore_prefix": 6, + "git_diff_list_alloc": 1, + "old_src": 1, + "new_src": 3, + "git_iterator_current": 2, + "git_iterator_advance": 5, + "delta_type": 8, + "git_buf_len": 1, + "git__prefixcmp": 2, + "git_buf_cstr": 1, + "S_ISDIR": 1, + "GIT_DIFF_RECURSE_UNTRACKED_DIRS": 1, + "git_iterator_current_is_ignored": 2, + "git_buf_sets": 1, + "git_iterator_advance_into_directory": 1, + "git_iterator_free": 4, + "*diff_ptr": 2, + "git_diff_tree_to_tree": 1, + "git_tree": 4, + "*old_tree": 3, + "*new_tree": 1, + "**diff": 4, + "diff_prefix_from_pathspec": 4, + "old_tree": 5, + "new_tree": 2, + "git_iterator_for_tree_range": 4, + "git_diff_index_to_tree": 1, + "git_iterator_for_index_range": 2, + "git_diff_workdir_to_index": 1, + "git_iterator_for_workdir_range": 2, + "git_diff_workdir_to_tree": 1, + "git_diff_merge": 1, + "*onto": 1, + "*from": 1, + "onto_pool": 7, + "git_vector": 1, + "onto_new": 6, + "onto": 7, + "deltas.length": 4, + "GIT_VECTOR_GET": 2, + "diff_delta__merge_like_cgit": 1, + "git_vector_swap": 1, + "git_pool_swap": 1, + "VALUE": 13, + "rb_cRDiscount": 4, + "rb_rdiscount_to_html": 2, + "*res": 2, + "szres": 8, + "rb_funcall": 14, + "rb_intern": 15, + "rb_str_buf_new": 2, + "Check_Type": 2, + "T_STRING": 2, + "rb_rdiscount__get_flags": 3, + "MMIOT": 2, + "*doc": 2, + "mkd_string": 2, + "RSTRING_PTR": 2, + "RSTRING_LEN": 2, + "mkd_compile": 2, + "doc": 6, + "mkd_document": 1, + "res": 4, + "EOF": 26, + "rb_str_cat": 4, + "mkd_cleanup": 2, + "rb_respond_to": 1, + "rb_rdiscount_toc_content": 2, + "mkd_toc": 1, + "ruby_obj": 11, + "MKD_TABSTOP": 1, + "MKD_NOHEADER": 1, + "Qtrue": 10, + "MKD_NOPANTS": 1, + "MKD_NOHTML": 1, + "MKD_TOC": 1, + "MKD_NOIMAGE": 1, + "MKD_NOLINKS": 1, + "MKD_NOTABLES": 1, + "MKD_STRICT": 1, + "MKD_AUTOLINK": 1, + "MKD_SAFELINK": 1, + "MKD_NO_EXT": 1, + "Init_rdiscount": 1, + "rb_define_class": 1, + "rb_cObject": 1, + "rb_define_method": 2, + "save_commit_buffer": 3, + "*commit_type": 2, + "commit": 59, + "*check_commit": 1, + "quiet": 5, + "OBJ_COMMIT": 5, + "*lookup_commit_reference_gently": 2, + "deref_tag": 1, + "parse_object": 1, + "check_commit": 2, + "*lookup_commit_reference": 2, + "lookup_commit_reference_gently": 1, + "*lookup_commit_or_die": 2, + "*ref_name": 2, + "lookup_commit_reference": 2, + "_": 3, + "ref_name": 2, + "hashcmp": 2, + "object.sha1": 8, + "warning": 1, + "*lookup_commit": 2, + "alloc_commit_node": 1, + "*lookup_commit_reference_by_name": 2, + "*commit": 10, + "get_sha1": 1, + "parse_commit": 3, + "parse_commit_date": 2, + "*tail": 2, + "*dateptr": 1, + "tail": 12, + "dateptr": 2, + "strtoul": 2, + "commit_graft": 13, + "**commit_graft": 1, + "commit_graft_alloc": 4, + "commit_graft_nr": 5, + "commit_graft_pos": 2, + "lo": 6, + "hi": 5, + "mi": 5, + "*graft": 3, + "graft": 10, + "register_commit_graft": 2, + "ignore_dups": 2, + "pos": 7, + "alloc_nr": 1, + "parse_commit_buffer": 3, + "*bufptr": 1, + "parent": 7, + "commit_list": 35, + "**pptr": 1, + "bufptr": 12, + "46": 1, + "tree": 3, + "5": 1, + "45": 1, + "bogus": 1, + "get_sha1_hex": 2, + "lookup_tree": 1, + "pptr": 5, + "parents": 4, + "lookup_commit_graft": 1, + "*new_parent": 2, + "48": 1, + "7": 1, + "47": 1, + "bad": 1, + "nr_parent": 3, + "grafts_replace_parents": 1, + "new_parent": 6, + "lookup_commit": 2, + "commit_list_insert": 2, + "next": 8, + "object_type": 1, + "read_sha1_file": 1, + "find_commit_subject": 2, + "*commit_buffer": 2, + "**subject": 2, + "*eol": 1, + "commit_buffer": 1, + "b_date": 3, + "a_date": 2, + "*commit_list_get_next": 1, + "commit_list_set_next": 1, + "commit_list_sort_by_date": 2, + "**list": 5, + "*list": 2, + "llist_mergesort": 1, + "peel_to_type": 1, + "util": 3, + "merge_remote_desc": 3, + "*desc": 1, + "desc": 5, + "xmalloc": 2, + "strdup": 1, + "**commit_list_append": 2, + "**next": 2, + "*new": 1, + "new": 4, + "ULLONG_MAX": 10, + "MIN": 3, + "SET_ERRNO": 47, + "e": 4, + "parser": 334, + "CALLBACK_NOTIFY_": 3, + "FOR": 11, + "ER": 4, + "HPE_OK": 10, + "settings": 6, + "on_##FOR": 4, + "HPE_CB_##FOR": 2, + "CALLBACK_NOTIFY": 10, + "CALLBACK_NOTIFY_NOADVANCE": 2, + "CALLBACK_DATA_": 4, + "LEN": 2, + "FOR##_mark": 7, + "CALLBACK_DATA": 10, + "CALLBACK_DATA_NOADVANCE": 6, + "MARK": 7, + "PROXY_CONNECTION": 4, + "CONNECTION": 4, + "CONTENT_LENGTH": 4, + "TRANSFER_ENCODING": 4, + "UPGRADE": 4, + "CHUNKED": 4, + "KEEP_ALIVE": 4, + "CLOSE": 4, + "*method_strings": 1, + "#string": 1, + "unhex": 3, + "normal_url_char": 3, + "T": 3, + "s_dead": 10, + "s_start_req_or_res": 4, + "s_res_or_resp_H": 3, + "s_start_res": 5, + "s_res_H": 3, + "s_res_HT": 4, + "s_res_HTT": 3, + "s_res_HTTP": 3, + "s_res_first_http_major": 3, + "s_res_http_major": 3, + "s_res_first_http_minor": 3, + "s_res_http_minor": 3, + "s_res_first_status_code": 3, + "s_res_status_code": 3, + "s_res_status": 3, + "s_res_line_almost_done": 4, + "s_start_req": 6, + "s_req_method": 4, + "s_req_spaces_before_url": 5, + "s_req_schema": 6, + "s_req_schema_slash": 6, + "s_req_schema_slash_slash": 6, + "s_req_host_start": 8, + "s_req_host_v6_start": 7, + "s_req_host_v6": 7, + "s_req_host_v6_end": 7, + "s_req_host": 8, + "s_req_port_start": 7, + "s_req_port": 6, + "s_req_path": 8, + "s_req_query_string_start": 8, + "s_req_query_string": 7, + "s_req_fragment_start": 7, + "s_req_fragment": 7, + "s_req_http_start": 3, + "s_req_http_H": 3, + "s_req_http_HT": 3, + "s_req_http_HTT": 3, + "s_req_http_HTTP": 3, + "s_req_first_http_major": 3, + "s_req_http_major": 3, + "s_req_first_http_minor": 3, + "s_req_http_minor": 3, + "s_req_line_almost_done": 4, + "s_header_field_start": 12, + "s_header_field": 4, + "s_header_value_start": 4, + "s_header_value": 5, + "s_header_value_lws": 3, + "s_header_almost_done": 6, + "s_chunk_size_start": 4, + "s_chunk_size": 3, + "s_chunk_parameters": 3, + "s_chunk_size_almost_done": 4, + "s_headers_almost_done": 4, + "s_headers_done": 4, + "s_chunk_data": 3, + "s_chunk_data_almost_done": 3, + "s_chunk_data_done": 3, + "s_body_identity": 3, + "s_body_identity_eof": 4, + "s_message_done": 3, + "PARSING_HEADER": 2, + "header_states": 1, + "h_general": 23, + "h_C": 3, + "h_CO": 3, + "h_CON": 3, + "h_matching_connection": 3, + "h_matching_proxy_connection": 3, + "h_matching_content_length": 3, + "h_matching_transfer_encoding": 3, + "h_matching_upgrade": 3, + "h_connection": 6, + "h_content_length": 5, + "h_transfer_encoding": 5, + "h_upgrade": 4, + "h_matching_transfer_encoding_chunked": 3, + "h_matching_connection_keep_alive": 3, + "h_matching_connection_close": 3, + "h_transfer_encoding_chunked": 4, + "h_connection_keep_alive": 4, + "h_connection_close": 4, + "Macros": 1, + "classes": 1, + "depends": 1, + "define": 14, + "CR": 18, + "LF": 21, + "LOWER": 7, + "0x20": 1, + "IS_ALPHA": 5, + "IS_NUM": 14, + "9": 1, + "IS_ALPHANUM": 3, + "IS_HEX": 2, + "TOKEN": 4, + "IS_URL_CHAR": 6, + "IS_HOST_CHAR": 4, + "0x80": 1, + "start_state": 1, + "cond": 1, + "HPE_STRICT": 1, + "HTTP_STRERROR_GEN": 3, + "#n": 1, + "*description": 1, + "http_strerror_tab": 7, + "http_message_needs_eof": 4, + "parse_url_char": 5, + "ch": 145, + "unhex_val": 7, + "*header_field_mark": 1, + "*header_value_mark": 1, + "*url_mark": 1, + "*body_mark": 1, + "message_complete": 7, + "HPE_INVALID_EOF_STATE": 1, + "header_field_mark": 2, + "header_value_mark": 2, + "url_mark": 2, + "HPE_HEADER_OVERFLOW": 1, + "reexecute_byte": 7, + "HPE_CLOSED_CONNECTION": 1, + "message_begin": 3, + "HPE_INVALID_CONSTANT": 3, + "HTTP_HEAD": 2, + "STRICT_CHECK": 15, + "HPE_INVALID_VERSION": 12, + "HPE_INVALID_STATUS": 3, + "HPE_INVALID_METHOD": 4, + "HTTP_CONNECT": 4, + "HTTP_DELETE": 1, + "HTTP_GET": 1, + "HTTP_LOCK": 1, + "HTTP_MKCOL": 2, + "HTTP_NOTIFY": 1, + "HTTP_OPTIONS": 1, + "HTTP_POST": 2, + "HTTP_REPORT": 1, + "HTTP_SUBSCRIBE": 2, + "HTTP_TRACE": 1, + "HTTP_UNLOCK": 2, + "*matcher": 1, + "matcher": 3, + "method_strings": 2, + "HTTP_CHECKOUT": 1, + "HTTP_COPY": 1, + "HTTP_MOVE": 1, + "HTTP_MERGE": 1, + "HTTP_MSEARCH": 1, + "HTTP_MKACTIVITY": 1, + "HTTP_SEARCH": 1, + "HTTP_PROPFIND": 2, + "HTTP_PUT": 2, + "HTTP_PATCH": 1, + "HTTP_PURGE": 1, + "HTTP_UNSUBSCRIBE": 1, + "HTTP_PROPPATCH": 1, + "url": 4, + "HPE_INVALID_URL": 4, + "HPE_LF_EXPECTED": 1, + "HPE_INVALID_HEADER_TOKEN": 2, + "header_field": 5, + "header_value": 6, + "HPE_INVALID_CONTENT_LENGTH": 4, + "NEW_MESSAGE": 6, + "HPE_CB_headers_complete": 1, + "to_read": 6, + "body": 6, + "body_mark": 2, + "HPE_INVALID_CHUNK_SIZE": 2, + "HPE_INVALID_INTERNAL_STATE": 1, + "HPE_UNKNOWN": 1, + "Does": 1, + "find": 1, + "http_method_str": 1, + "http_errno_name": 1, + ".name": 1, + "http_errno_description": 1, + ".description": 1, + "uf": 14, + "old_uf": 4, + ".off": 2, + "xffff": 1, + "HPE_PAUSED": 2, + "": 1, + "rfUTF8_IsContinuationbyte": 1, + "e.t.c.": 1, + "bIndex": 5, + "RF_NEWLINE_CRLF": 1, + "newLineFound": 1, + "*bufferSize": 1, + "RF_OPTION_FGETS_READBYTESN": 5, + "tempBuff": 6, + "RE_FILE_EOF": 22, + "*eofReached": 14, + "undo": 5, + "peek": 5, + "ahead": 5, + "pointer": 5, + "fseek": 19, + "SEEK_CUR": 19, + "eofReached": 4, + "fgetc": 9, + "RE_FILE_READ": 2, + "*ret": 20, + "c2": 13, + "c3": 9, + "c4": 5, + "i_READ_CHECK": 20, + "///": 4, + "success": 4, + "cc": 24, + "more": 2, + "xC1": 1, + "RE_UTF8_INVALID_SEQUENCE_INVALID_BYTE": 6, + "RE_UTF8_INVALID_SEQUENCE_END": 6, + "RE_UTF8_INVALID_SEQUENCE_CONBYTE": 6, + "decoded": 3, + "RF_HEXGE_C": 1, + "xBF": 2, + "//invalid": 1, + "xFF": 1, + "//if": 1, + "needing": 1, + "v1": 38, + "v2": 26, + "fread": 12, + "RF_HEXGE_US": 4, + "xD800": 8, + "RF_HEXLE_US": 4, + "xDFFF": 8, + "RF_HEXL_US": 8, + "RF_HEXG_US": 8, + "xDBFF": 4, + "RE_UTF16_NO_SURRPAIR": 2, + "xDC00": 4, + "user": 2, + "wants": 2, + "surrogate": 4, + "pair": 4, + "existence": 2, + "i_FSEEK_CHECK": 14, + "depending": 1, + "read": 1, + "backwards": 1, + "RE_UTF8_INVALID_SEQUENCE": 2, + "COMMIT_H": 2, + "*util": 1, + "indegree": 1, + "*parents": 4, + "*tree": 3, + "decoration": 1, + "name_decoration": 3, + "*commit_list_insert": 1, + "commit_list_count": 1, + "*l": 1, + "*commit_list_insert_by_date": 1, + "free_commit_list": 1, + "cmit_fmt": 3, + "CMIT_FMT_RAW": 1, + "CMIT_FMT_MEDIUM": 2, + "CMIT_FMT_DEFAULT": 1, + "CMIT_FMT_SHORT": 1, + "CMIT_FMT_FULL": 1, + "CMIT_FMT_FULLER": 1, + "CMIT_FMT_ONELINE": 1, + "CMIT_FMT_EMAIL": 1, + "CMIT_FMT_USERFORMAT": 1, + "CMIT_FMT_UNSPECIFIED": 1, + "pretty_print_context": 6, + "abbrev": 1, + "*subject": 1, + "*after_subject": 1, + "preserve_subject": 1, + "date_mode": 2, + "date_mode_explicit": 1, + "need_8bit_cte": 2, + "show_notes": 1, + "reflog_walk_info": 1, + "*reflog_info": 1, + "*output_encoding": 2, + "userformat_want": 2, + "notes": 1, + "has_non_ascii": 1, + "*text": 1, + "rev_info": 2, + "*logmsg_reencode": 1, + "*reencode_commit_message": 1, + "**encoding_p": 1, + "get_commit_format": 1, + "*arg": 1, + "*format_subject": 1, + "*sb": 7, + "*line_separator": 1, + "userformat_find_requirements": 1, + "format_commit_message": 1, + "*context": 1, + "pretty_print_commit": 1, + "*pp": 4, + "pp_commit_easy": 1, + "pp_user_info": 1, + "*what": 1, + "*line": 1, + "*encoding": 2, + "pp_title_line": 1, + "**msg_p": 2, + "pp_remainder": 1, + "indent": 1, + "*pop_most_recent_commit": 1, + "mark": 3, + "*pop_commit": 1, + "**stack": 1, + "clear_commit_marks": 1, + "clear_commit_marks_for_object_array": 1, + "object_array": 2, + "sort_in_topological_order": 1, + "list": 1, + "lifo": 1, + "FLEX_ARRAY": 1, + "*read_graft_line": 1, + "*lookup_commit_graft": 1, + "*get_merge_bases": 1, + "*rev1": 1, + "*rev2": 1, + "*get_merge_bases_many": 1, + "*one": 1, + "**twos": 1, + "*get_octopus_merge_bases": 1, + "*in": 1, + "register_shallow": 1, + "unregister_shallow": 1, + "for_each_commit_graft": 1, + "each_commit_graft_fn": 1, + "is_repository_shallow": 1, + "*get_shallow_commits": 1, + "*heads": 2, + "shallow_flag": 1, + "not_shallow_flag": 1, + "is_descendant_of": 1, + "in_merge_bases": 1, + "interactive_add": 1, + "patch": 1, + "run_add_interactive": 1, + "*revision": 1, + "*patch_mode": 1, + "**pathspec": 1, + "single_parent": 1, + "*reduce_heads": 1, + "commit_extra_header": 7, + "append_merge_tag_headers": 1, + "***tail": 1, + "commit_tree": 1, + "*author": 2, + "*sign_commit": 2, + "commit_tree_extended": 1, + "*read_commit_extra_headers": 1, + "*read_commit_extra_header_lines": 1, + "free_commit_extra_headers": 1, + "*extra": 1, + "merge_remote_util": 1, + "*get_merge_parent": 1, + "parse_signed_commit": 1, + "*message": 1, + "*signature": 1 + }, + "Jade": { + "p.": 1, + "Hello": 1, + "World": 1 + }, + "Zimpl": { + "#": 2, + "param": 1, + "columns": 2, + ";": 7, + "set": 3, + "I": 3, + "{": 2, + "..": 1, "}": 2, - "loop": 1, - "Serial.print": 1 + "IxI": 6, + "*": 2, + "TABU": 4, + "[": 8, + "": 3, + "in": 5, + "]": 8, + "": 2, + "with": 1, + "(": 6, + "m": 4, + "i": 8, + "or": 3, + "n": 4, + "j": 8, + ")": 6, + "and": 1, + "abs": 2, + "-": 3, + "var": 1, + "x": 4, + "binary": 1, + "maximize": 1, + "queens": 1, + "sum": 2, + "subto": 1, + "c1": 1, + "forall": 1, + "do": 1, + "card": 2 }, "AsciiDoc": { + "AsciiDoc": 3, + "Home": 1, + "Page": 1, + "Example": 1, + "Articles": 1, + "-": 4, + "Item": 6, "Gregory": 2, "Rom": 2, "has": 2, "written": 2, "an": 2, - "AsciiDoc": 3, "plugin": 2, "for": 2, "the": 2, @@ -2462,7 +24654,6 @@ "application.": 2, "https": 1, "//github.com/foo": 1, - "-": 4, "users/foo": 1, "vicmd": 1, "gif": 1, @@ -2482,11 +24673,6 @@ "Versionen": 1, "von": 1, "Ruby": 1, - "Home": 1, - "Page": 1, - "Example": 1, - "Articles": 1, - "Item": 6, "Document": 1, "Title": 1, "Doc": 1, @@ -2513,95 +24699,6710 @@ ".Section": 1, "list": 1 }, - "AspectJ": { - "package": 2, - "com.blogspot.miguelinlas3.aspectj.cache": 1, - ";": 29, - "import": 5, - "java.util.Map": 2, - "java.util.WeakHashMap": 1, - "org.aspectj.lang.JoinPoint": 1, - "com.blogspot.miguelinlas3.aspectj.cache.marker.Cachable": 1, - "public": 6, - "aspect": 2, - "CacheAspect": 1, - "{": 11, - "pointcut": 3, - "cache": 3, - "(": 46, - "Cachable": 2, - "cachable": 5, - ")": 46, - "execution": 1, - "@Cachable": 2, - "*": 2, - "..": 1, - "&&": 2, - "@annotation": 1, - "Object": 15, - "around": 2, - "String": 3, - "evaluatedKey": 6, - "this.evaluateKey": 1, - "cachable.scriptKey": 1, - "thisJoinPoint": 1, + "NetLogo": { + "patches": 7, + "-": 28, + "own": 1, + "[": 17, + "living": 6, + ";": 12, + "indicates": 1, "if": 2, - "cache.containsKey": 1, - "System.out.println": 5, - "+": 7, - "return": 5, - "this.cache.get": 1, - "}": 11, - "value": 3, - "proceed": 2, - "cache.put": 1, - "protected": 2, - "evaluateKey": 1, - "key": 2, - "JoinPoint": 1, - "joinPoint": 1, - "//": 1, - "TODO": 1, - "add": 1, - "some": 1, - "smart": 1, - "staff": 1, - "to": 1, - "allow": 1, - "simple": 1, - "scripting": 1, - "in": 1, - "annotation": 1, - "Map": 3, - "": 2, + "the": 6, + "cell": 10, + "is": 1, + "live": 4, + "neighbors": 5, + "counts": 1, + "how": 1, + "many": 1, + "neighboring": 1, + "cells": 2, + "are": 1, + "alive": 1, + "]": 17, + "to": 6, + "setup": 2, + "blank": 1, + "clear": 2, + "all": 5, + "ask": 6, + "death": 5, + "reset": 2, + "ticks": 2, + "end": 6, + "random": 2, + "ifelse": 3, + "float": 1, + "<": 1, + "initial": 1, + "density": 1, + "birth": 4, + "set": 5, + "true": 1, + "pcolor": 2, + "fgcolor": 1, + "false": 1, + "bgcolor": 1, + "go": 1, + "count": 1, + "with": 2, + "Starting": 1, + "a": 1, "new": 1, - "WeakHashMap": 1, - "aspects.caching": 1, - "abstract": 3, - "OptimizeRecursionCache": 2, - "@SuppressWarnings": 3, - "private": 1, - "_cache": 2, - "getCache": 2, - "operation": 4, - "o": 16, - "topLevelOperation": 4, - "cflowbelow": 1, + "here": 1, + "ensures": 1, + "that": 1, + "finish": 1, + "executing": 2, + "first": 1, "before": 1, - "cachedValue": 4, - "_cache.get": 1, + "any": 1, + "of": 2, + "them": 1, + "start": 1, + "second": 1, + "ask.": 1, + "This": 1, + "keeps": 1, + "in": 2, + "synch": 1, + "each": 2, + "other": 1, + "so": 1, + "births": 1, + "and": 1, + "deaths": 1, + "at": 1, + "generation": 1, + "happen": 1, + "lockstep.": 1, + "tick": 1, + "draw": 1, + "let": 1, + "erasing": 2, + "patch": 2, + "mouse": 5, + "xcor": 2, + "ycor": 2, + "while": 1, + "down": 1, + "display": 1 + }, + "Hy": { + ";": 4, + "Fibonacci": 1, + "example": 2, + "in": 2, + "Hy.": 2, + "(": 28, + "defn": 2, + "fib": 4, + "[": 10, + "n": 5, + "]": 10, + "if": 2, + "<": 1, + ")": 28, + "+": 1, + "-": 10, + "__name__": 1, + "for": 2, + "x": 3, + "print": 1, + "The": 1, + "concurrent.futures": 2, + "import": 1, + "ThreadPoolExecutor": 2, + "as": 3, + "completed": 2, + "random": 1, + "randint": 2, + "sh": 1, + "sleep": 2, + "task": 2, + "to": 2, + "do": 2, + "with": 1, + "executor": 2, + "setv": 1, + "jobs": 2, + "list": 1, + "comp": 1, + ".submit": 1, + "range": 1, + "future": 2, + ".result": 1 + }, + "Racket": { + "#lang": 1, + "scribble/manual": 1, + "@": 3, + "(": 23, + "require": 1, + "scribble/bnf": 1, + ")": 23, + "@title": 1, + "{": 2, + "Scribble": 3, + "The": 1, + "Racket": 2, + "Documentation": 1, + "Tool": 1, + "}": 2, + "@author": 1, + "[": 16, + "]": 16, + "is": 3, + "a": 1, + "collection": 1, + "of": 4, + "tools": 1, + "for": 2, + "creating": 1, + "prose": 2, + "documents": 1, + "-": 94, + "papers": 1, + "books": 1, + "library": 1, + "documentation": 1, + "etc.": 1, + "in": 3, + "HTML": 1, + "or": 2, + "PDF": 1, + "via": 1, + "Latex": 1, + "form.": 1, + "More": 1, + "generally": 1, + "helps": 1, + "you": 1, + "write": 1, + "programs": 1, + "that": 2, + "are": 1, + "rich": 1, + "textual": 1, + "content": 2, + "whether": 1, + "the": 3, + "to": 2, + "be": 2, + "typeset": 1, + "any": 1, + "other": 1, + "form": 1, + "text": 1, + "generated": 1, + "programmatically.": 1, + "This": 1, + "document": 1, + "itself": 1, + "written": 1, + "using": 1, + "Scribble.": 1, + "You": 1, + "can": 1, + "see": 1, + "its": 1, + "source": 1, + "at": 1, + "let": 1, + "url": 3, + "link": 1, + "starting": 1, + "with": 1, + "@filepath": 1, + "scribble.scrbl": 1, + "file.": 1, + "@table": 1, + "contents": 1, + ";": 3, + "@include": 8, + "section": 9, + "@index": 1, + "Clean": 1, + "simple": 1, + "and": 1, + "efficient": 1, + "code": 1, + "s": 1, + "power": 1, + "http": 1, + "//racket": 1, + "lang.org/": 1, + "define": 1, + "bottles": 4, + "n": 8, + "more": 2, + "printf": 2, + "case": 1, + "else": 1, + "if": 1, + "range": 1, + "sub1": 1, + "displayln": 2 + }, + "Haskell": { + "import": 6, + "Data.Char": 1, + "main": 4, + "IO": 2, + "(": 8, + ")": 8, + "do": 3, + "let": 2, + "hello": 2, + "putStrLn": 3, + "map": 13, + "toUpper": 1, + "module": 2, + "Main": 1, + "where": 4, + "Sudoku": 9, + "Data.Maybe": 2, + "sudoku": 36, + "[": 4, + "]": 3, + "pPrint": 5, + "+": 2, + "fromMaybe": 1, + "solve": 5, + "isSolved": 4, + "Data.List": 1, + "Data.List.Split": 1, + "type": 1, + "Int": 1, + "-": 3, + "Maybe": 1, + "|": 8, + "Just": 1, + "otherwise": 2, + "index": 27, + "<": 1, + "elemIndex": 1, + "sudokus": 2, + "nextTest": 5, + "i": 7, + "<->": 1, + "1": 2, + "9": 7, + "checkRow": 2, + "checkColumn": 2, + "checkBox": 2, + "listToMaybe": 1, + "mapMaybe": 1, + "take": 1, + "drop": 1, + "length": 12, + "getRow": 3, + "nub": 6, + "getColumn": 3, + "getBox": 3, + "filter": 3, + "0": 3, + "chunksOf": 10, + "quot": 3, + "transpose": 4, + "mod": 2, + "concat": 2, + "concatMap": 2, + "3": 4, + "27": 1, + "Bool": 1, + "product": 1, + "False": 4, + ".": 4, + "sudokuRows": 4, + "/": 3, + "sudokuColumns": 3, + "sudokuBoxes": 3, + "True": 1, + "String": 1, + "intercalate": 2, + "show": 1 + }, + "ShellSession": { + "echo": 2, + "FOOBAR": 2, + "Hello": 2, + "World": 2, + "gem": 4, + "install": 4, + "nokogiri": 6, + "...": 4, + "Building": 2, + "native": 2, + "extensions.": 2, + "This": 4, + "could": 2, + "take": 2, + "a": 4, + "while...": 2, + "checking": 1, + "for": 4, + "libxml/parser.h...": 1, + "***": 2, + "extconf.rb": 1, + "failed": 1, + "Could": 2, + "not": 2, + "create": 1, + "Makefile": 1, + "due": 1, + "to": 3, + "some": 1, + "reason": 2, + "probably": 1, + "lack": 1, + "of": 2, + "necessary": 1, + "libraries": 1, + "and/or": 1, + "headers.": 1, + "Check": 1, + "the": 2, + "mkmf.log": 1, + "file": 1, + "more": 1, + "details.": 1, + "You": 1, + "may": 1, + "need": 1, + "configuration": 1, + "options.": 1, + "brew": 2, + "tap": 2, + "homebrew/dupes": 1, + "Cloning": 1, + "into": 1, + "remote": 3, + "Counting": 1, + "objects": 3, + "done.": 4, + "Compressing": 1, + "%": 5, + "(": 6, + "/591": 1, + ")": 6, + "Total": 1, + "delta": 2, + "reused": 1, + "Receiving": 1, + "/1034": 1, + "KiB": 1, + "|": 1, + "bytes/s": 1, + "Resolving": 1, + "deltas": 1, + "/560": 1, + "Checking": 1, + "connectivity...": 1, + "done": 1, + "Warning": 1, + "homebrew/dupes/lsof": 1, + "over": 1, + "mxcl/master/lsof": 1, + "Tapped": 1, + "formula": 4, + "apple": 1, + "-": 12, + "gcc42": 1, + "Downloading": 1, + "http": 2, + "//r.research.att.com/tools/gcc": 1, + "darwin11.pkg": 1, + "########################################################################": 1, + "Caveats": 1, + "NOTE": 1, + "provides": 1, + "components": 1, + "that": 1, + "were": 1, + "removed": 1, + "from": 3, + "XCode": 2, + "in": 2, + "release.": 1, + "There": 1, + "is": 2, + "no": 1, + "this": 1, + "if": 1, + "you": 1, + "are": 1, + "using": 1, + "version": 1, + "prior": 1, + "contains": 1, + "compilers": 2, + "built": 2, + "Apple": 1, + "s": 1, + "GCC": 1, + "sources": 1, + "build": 1, + "available": 1, + "//opensource.apple.com/tarballs/gcc": 1, + "All": 1, + "have": 1, + "suffix.": 1, + "A": 1, + "GFortran": 1, + "compiler": 1, + "also": 1, + "included.": 1, + "Summary": 1, + "/usr/local/Cellar/apple": 1, + "gcc42/4.2.1": 1, + "files": 1, + "M": 1, + "seconds": 1, + "v": 1, + "Fetching": 1, + "Successfully": 1, + "installed": 2, + "Installing": 2, + "ri": 1, + "documentation": 2, + "RDoc": 1 + }, + "Volt": { + "module": 1, + "main": 2, + ";": 53, + "import": 7, + "core.stdc.stdio": 1, + "core.stdc.stdlib": 1, + "watt.process": 1, + "watt.path": 1, + "results": 1, + "list": 1, + "cmd": 1, + "int": 8, + "(": 37, + ")": 37, + "{": 12, + "auto": 6, + "cmdGroup": 2, + "new": 3, + "CmdGroup": 1, + "bool": 4, + "printOk": 2, + "true": 4, + "printImprovments": 2, + "printFailing": 2, + "printRegressions": 2, + "string": 1, + "compiler": 3, + "getEnv": 1, + "if": 7, + "is": 2, + "null": 3, + "printf": 6, + ".ptr": 14, + "return": 2, + "-": 3, + "}": 12, + "///": 1, + "@todo": 1, + "Scan": 1, + "for": 4, + "files": 1, + "tests": 2, + "testList": 1, + "total": 5, + "passed": 5, + "failed": 5, + "improved": 3, + "regressed": 6, + "rets": 5, + "Result": 2, + "[": 6, + "]": 6, + "tests.length": 3, + "size_t": 3, + "i": 14, + "<": 3, + "+": 14, + ".runTest": 1, + "cmdGroup.waitAll": 1, + "ret": 1, + "ret.ok": 1, + "cast": 5, + "ret.hasPassed": 4, + "&&": 2, + "ret.test.ptr": 4, + "ret.msg.ptr": 4, + "else": 3, + "fflush": 2, + "stdout": 1, + "xml": 8, + "fopen": 1, + "fprintf": 2, + "rets.length": 1, + ".xmlLog": 1, + "fclose": 1, + "rate": 2, + "float": 2, + "/": 1, + "*": 1, + "f": 1, + "double": 1 + }, + "Literate CoffeeScript": { + "The": 2, + "**Scope**": 2, + "class": 2, + "regulates": 1, + "lexical": 1, + "scoping": 1, + "within": 2, + "CoffeeScript.": 1, + "As": 1, + "you": 2, + "generate": 1, + "code": 1, + "create": 1, + "a": 8, + "tree": 1, + "of": 4, + "scopes": 1, + "in": 2, + "the": 12, + "same": 1, + "shape": 1, + "as": 3, + "nested": 1, + "function": 2, + "bodies.": 1, + "Each": 1, + "scope": 2, + "knows": 1, + "about": 1, + "variables": 3, + "declared": 2, + "it": 4, + "and": 5, + "has": 1, + "reference": 3, + "to": 8, + "its": 3, + "parent": 2, + "enclosing": 1, + "scope.": 2, + "In": 1, + "this": 3, + "way": 1, + "we": 4, + "know": 1, + "which": 3, + "are": 3, + "new": 2, + "need": 2, + "be": 2, + "with": 3, + "var": 4, + "shared": 1, + "external": 1, + "scopes.": 1, + "Import": 1, + "helpers": 1, + "plan": 1, + "use.": 1, + "{": 4, + "extend": 1, + "last": 1, + "}": 4, + "require": 1, + "exports.Scope": 1, + "Scope": 1, + "root": 1, + "is": 3, + "top": 2, + "-": 5, + "level": 1, + "object": 1, + "for": 3, + "given": 1, + "file.": 1, + "@root": 1, "null": 1, + "Initialize": 1, + "lookups": 1, + "up": 1, + "chain": 1, + "well": 1, + "**Block**": 1, + "node": 1, + "belongs": 2, + "where": 1, + "should": 1, + "declare": 1, + "that": 2, + "to.": 1, + "constructor": 1, + "(": 5, + "@parent": 2, + "@expressions": 1, + "@method": 1, + ")": 6, + "@variables": 3, + "[": 4, + "name": 8, + "type": 5, + "]": 4, + "@positions": 4, + "Scope.root": 1, + "unless": 1, + "Adds": 1, + "variable": 1, + "or": 1, + "overrides": 1, + "an": 1, + "existing": 1, + "one.": 1, + "add": 1, + "immediate": 3, + "return": 1, + "@parent.add": 1, + "if": 2, + "@shared": 1, + "not": 1, + "Object": 1, + "hasOwnProperty.call": 1, + ".type": 1, + "else": 2, + "@variables.push": 1, + "When": 1, + "super": 1, + "called": 1, + "find": 1, + "current": 1, + "method": 1, + "param": 1, + "_": 3, + "then": 1, + "tempVars": 1, + "realVars": 1, + ".push": 1, + "v.name": 1, + "realVars.sort": 1, + ".concat": 1, + "tempVars.sort": 1, + "Return": 1, + "list": 1, + "assignments": 1, + "supposed": 1, + "made": 1, + "at": 1, + "assignedVariables": 1, + "v": 1, + "when": 1, + "v.type.assigned": 1 + }, + "Sass": { + "blue": 7, + "#3bbfce": 2, + ";": 6, + "margin": 8, + "px": 3, + ".content_navigation": 1, + "{": 2, + "color": 4, + "}": 2, + ".border": 2, + "padding": 2, + "/": 4, + "border": 3, + "solid": 1, + ".content": 1, + "-": 3, + "navigation": 1, + "darken": 1, + "(": 1, + "%": 1, + ")": 1 + }, + "Objective-C": { + "#import": 53, + "#define": 65, + "HEADER_Z_POSITION": 2, + "typedef": 47, + "struct": 20, + "{": 541, + "CGFloat": 44, + "offset": 23, + ";": 2003, + "//": 317, + "from": 18, + "beginning": 1, + "of": 34, + "section": 60, + "height": 19, + "}": 532, + "TUITableViewRowInfo": 3, + "@interface": 23, + "TUITableViewSection": 16, + "NSObject": 5, + "__unsafe_unretained": 2, + "TUITableView": 25, + "*_tableView": 1, + "weak": 2, + "TUIView": 17, + "*_headerView": 1, + "Not": 2, + "reusable": 1, + "(": 2109, + "similar": 1, + "to": 115, + "UITableView": 1, + ")": 2106, + "NSInteger": 56, + "sectionIndex": 23, + "NSUInteger": 93, + "numberOfRows": 13, + "sectionHeight": 9, + "sectionOffset": 8, + "*rowInfo": 1, + "@property": 150, + "strong": 4, + "readonly": 19, + "*headerView": 6, + "nonatomic": 40, + "assign": 84, + "@end": 37, + "@implementation": 13, + "@synthesize": 7, + "-": 595, + "id": 170, + "initWithNumberOfRows": 2, + "n": 7, + "s": 35, + "tableView": 45, + "*": 311, + "t": 15, + "if": 297, + "self": 500, + "[": 1227, + "super": 25, + "init": 34, + "]": 1227, + "_tableView": 3, + "rowInfo": 7, + "calloc": 5, + "sizeof": 13, + "return": 165, + "void": 253, + "dealloc": 13, + "free": 4, + "_setupRowHeights": 2, + "*header": 1, + "header": 20, + "self.headerView": 2, + "nil": 131, + "+": 195, + "roundf": 2, + "header.frame.size.height": 1, + "for": 99, + "int": 55, + "i": 41, + "<": 56, + "h": 3, + "_tableView.delegate": 1, + "heightForRowAtIndexPath": 2, + "TUIFastIndexPath": 89, + "indexPathForRow": 11, + "inSection": 11, + ".offset": 2, + ".height": 4, + "rowHeight": 2, + "&&": 123, + "sectionRowOffset": 2, + "tableRowOffset": 2, + "headerHeight": 4, + "self.headerView.frame.size.height": 1, + "headerView": 14, + "_headerView": 8, + "_tableView.dataSource": 3, + "respondsToSelector": 8, + "@selector": 28, + "headerViewForSection": 6, + "_headerView.autoresizingMask": 1, + "TUIViewAutoresizingFlexibleWidth": 1, + "_headerView.layer.zPosition": 1, + "Private": 1, + "_updateSectionInfo": 2, + "_updateDerepeaterViews": 2, + "pullDownView": 1, + "_pullDownView": 4, + "initWithFrame": 12, + "CGRect": 41, + "frame": 38, + "style": 29, + "TUITableViewStyle": 4, + "_style": 8, + "_reusableTableCells": 5, + "NSMutableDictionary": 18, + "alloc": 47, + "_visibleSectionHeaders": 6, + "NSMutableIndexSet": 6, + "_visibleItems": 14, + "_tableFlags.animateSelectionChanges": 3, + "TUITableViewStylePlain": 2, + "": 4, + "delegate": 29, + "setDelegate": 4, + "d": 11, + "_tableFlags.delegateTableViewWillDisplayCellForRowAtIndexPath": 1, + "willDisplayCell": 2, + "forRowAtIndexPath": 2, + "must": 6, + "call": 8, + "": 4, + "dataSource": 2, + "_dataSource": 6, + "setDataSource": 1, + "_tableFlags.dataSourceNumberOfSectionsInTableView": 2, + "numberOfSectionsInTableView": 3, + "BOOL": 137, + "animateSelectionChanges": 3, + "setAnimateSelectionChanges": 1, + "a": 78, + "numberOfSections": 10, + "_sectionInfo": 27, + "count": 99, + "numberOfRowsInSection": 9, + "objectAtIndex": 8, + "rectForHeaderOfSection": 4, + "*s": 3, + "y": 12, + "_contentHeight": 7, + "CGRectMake": 8, + "self.bounds.size.width": 4, + "CGRectZero": 5, + "rectForSection": 3, + "rectForRowAtIndexPath": 7, + "indexPath": 47, + "indexPath.section": 3, + "row": 36, + "indexPath.row": 1, + "*section": 8, + "in": 42, + "removeFromSuperview": 4, + "removeAllIndexes": 2, + "NSMutableArray": 31, + "*sections": 1, + "initWithCapacity": 2, + "bounds": 2, + ".size.height": 1, + "self.contentInset.top*2": 1, + "section.sectionOffset": 1, + "sections": 4, + "addObject": 16, + "self.contentInset.bottom": 1, + "_enqueueReusableCell": 2, + "TUITableViewCell": 23, + "cell": 21, + "NSString": 127, + "*identifier": 1, + "cell.reuseIdentifier": 1, + "identifier": 7, + "*array": 9, + "objectForKey": 29, + "array": 84, + "setObject": 9, + "forKey": 9, + "dequeueReusableCellWithIdentifier": 2, + "*c": 1, + "lastObject": 1, + "c": 7, + "removeLastObject": 1, + "prepareForReuse": 1, + "else": 35, + "cellForRowAtIndexPath": 9, + "returns": 4, + "is": 77, + "not": 29, + "visible": 16, + "or": 18, + "index": 11, + "path": 11, + "out": 7, + "range": 8, + "NSArray": 27, + "visibleCells": 3, + "allValues": 1, + "static": 102, + "SortCells": 1, + "*a": 2, + "*b": 2, + "*ctx": 1, + "a.frame.origin.y": 2, + "b.frame.origin.y": 2, + "NSOrderedAscending": 4, + "NSOrderedDescending": 4, + "sortedVisibleCells": 2, + "*v": 2, + "v": 4, + "sortedArrayUsingComparator": 1, + "NSComparator": 1, + "NSComparisonResult": 1, + "INDEX_PATHS_FOR_VISIBLE_ROWS": 4, + "allKeys": 1, + "indexPathsForVisibleRows": 2, + "indexPathForCell": 2, + "*i": 4, + "*cell": 7, + "NSIndexSet": 4, + "indexesOfSectionsInRect": 2, + "rect": 10, + "*indexes": 2, + "CGRectIntersectsRect": 5, + "indexes": 4, + "addIndex": 3, + "indexesOfSectionHeadersInRect": 2, + "indexPathsForRowsInRect": 3, + "*indexPaths": 1, + "arrayWithCapacity": 2, + "*indexPath": 11, + "cellRect": 7, + "indexPaths": 2, + "indexPathForRowAtPoint": 2, + "CGPoint": 7, + "point": 11, + "CGRectContainsPoint": 1, + "indexPathForRowAtVerticalOffset": 2, + "cellRect.origin.y": 1, + "<=>": 15, + "origin": 1, + "size": 12, + "brief": 1, + "Obtain": 1, + "the": 197, + "whose": 2, + "at": 10, + "specified": 1, + "If": 30, + "valid": 5, + "no": 7, + "exists": 1, + "that": 23, + "negative": 1, + "value": 21, + "returned": 1, + "param": 1, + "location": 3, + "table": 7, + "view": 11, + "p": 3, + "indexOfSectionWithHeaderAtPoint": 2, + "0": 2, + "width": 1, + "frame.origin.y": 16, + "point.y": 1, + "frame.size.height": 15, + "indexOfSectionWithHeaderAtVerticalOffset": 2, + "section.headerView": 9, + "enumerateIndexPathsUsingBlock": 2, + "*stop": 7, + "block": 18, + "enumerateIndexPathsFromIndexPath": 4, + "toIndexPath": 12, + "withOptions": 4, + "usingBlock": 6, + "enumerateIndexPathsWithOptions": 2, + "NSEnumerationOptions": 4, + "options": 6, + "fromIndexPath": 6, + "sectionLowerBound": 2, + "fromIndexPath.section": 1, + "sectionUpperBound": 3, + "toIndexPath.section": 1, + "rowLowerBound": 2, + "fromIndexPath.row": 1, + "rowUpperBound": 3, + "toIndexPath.row": 1, + "irow": 3, + "start": 3, + "lower": 1, + "bound": 1, + "first": 9, + "iteration...": 1, + "rowCount": 3, + "j": 5, + "||": 42, + "stop": 4, + "FALSE": 2, + "&": 36, + "...then": 1, + "use": 26, + "zero": 1, + "subsequent": 2, + "iterations": 1, + "_topVisibleIndexPath": 1, + "*topVisibleIndex": 1, + "sortedArrayUsingSelector": 1, + "compare": 4, + "topVisibleIndex": 2, + "setFrame": 2, + "f": 8, + "_tableFlags.forceSaveScrollPosition": 1, + "setContentOffset": 2, + "_tableFlags.didFirstLayout": 1, + "prevent": 2, + "auto": 2, + "scroll": 3, + "top": 8, + "during": 4, + "layout": 3, + "we": 73, + "pinned": 5, + "state": 35, + "isKindOfClass": 2, + "TUITableViewSectionHeader": 5, + "class": 30, + ".pinnedToViewport": 2, + "TRUE": 1, + "pinnedHeader": 1, + "CGRectGetMaxY": 2, + "headerFrame": 4, + "pinnedHeader.frame.origin.y": 1, + "this": 50, + "intersecting": 1, + "with": 19, + "so": 15, + "push": 1, + "upwards.": 1, + "pinnedHeaderFrame": 2, + "pinnedHeader.frame": 2, + "pinnedHeaderFrame.origin.y": 1, + "notify": 3, + "it": 28, + "section.headerView.frame": 1, + "setNeedsLayout": 3, + "section.headerView.superview": 1, + "addSubview": 8, + "remove": 4, + "offscreen": 2, + "headers": 11, + "toRemove": 1, + "enumerateIndexesUsingBlock": 1, + "removeIndex": 1, + "_layoutCells": 3, + "visibleCellsNeedRelayout": 5, + "update": 6, + "remaining": 1, + "cells": 7, + "needed": 3, + "cell.frame": 1, + "cell.layer.zPosition": 1, + "visibleRect": 3, + "Example": 1, + "old": 5, + "new": 10, + "add": 5, + "*oldVisibleIndexPaths": 1, + "*newVisibleIndexPaths": 1, + "*indexPathsToRemove": 1, + "oldVisibleIndexPaths": 2, + "mutableCopy": 2, + "indexPathsToRemove": 2, + "removeObjectsInArray": 2, + "newVisibleIndexPaths": 2, + "*indexPathsToAdd": 1, + "indexPathsToAdd": 2, + "don": 2, + "on": 26, + "newly": 1, + "added": 5, + "_dragToReorderCell": 5, + "superview": 1, + "bringSubviewToFront": 1, + "CGSize": 5, + "self.contentSize": 3, + "headerViewRect": 3, + "s.height": 3, + "_headerView.frame.size.height": 2, + "visible.size.width": 3, + "_headerView.frame": 1, + "_headerView.hidden": 4, + "show": 2, + "NO": 30, + "YES": 62, + "pullDownRect": 4, + "_pullDownView.frame.size.height": 2, + "pullDownViewIsVisible": 3, + "_pullDownView.hidden": 4, + "_pullDownView.frame": 1, + "reloadDataMaintainingVisibleIndexPath": 2, + "relativeOffset": 5, + "_keepVisibleIndexPathForReload": 2, + "_relativeOffsetForReload": 2, + "reloadData": 3, + "self.delegate": 10, + "tableViewWillReloadData": 3, + "_selectedIndexPath": 9, + "need": 10, + "recycle": 1, + "all": 3, + "have": 15, + "them": 10, + "be": 49, + "regenerated": 3, + "layoutSubviews": 5, + "because": 1, + "same": 6, + "might": 4, + "different": 4, + "content": 5, + "dragged": 1, + "clear": 3, + "removeAllObjects": 1, + "any": 3, + "they": 6, + "should": 8, + "re": 9, + "when": 46, + "laid": 1, + "will": 57, + "next": 2, + "tableViewDidReloadData": 3, + "_tableFlags.layoutSubviewsReentrancyGuard": 3, + "setAnimationsEnabled": 1, + "CATransaction": 3, + "begin": 1, + "setDisableActions": 1, + "_preLayoutCells": 2, + "munge": 2, + "contentOffset": 2, + "_layoutSectionHeaders": 2, + "_tableFlags.derepeaterEnabled": 1, + "commit": 1, + "NSLog": 4, + "@": 258, + "reloadLayout": 2, + "scrollToRowAtIndexPath": 3, + "atScrollPosition": 3, + "TUITableViewScrollPosition": 5, + "scrollPosition": 9, + "animated": 27, + "r": 6, + "target": 5, + "has": 6, + "its": 9, + "our": 6, + "selected": 2, + "being": 4, + "overlapped": 1, + "by": 12, + "r.size.height": 4, + "headerFrame.size.height": 1, + "switch": 3, + "case": 8, + "TUITableViewScrollPositionNone": 2, + "do": 5, + "nothing": 2, + "break": 13, + "TUITableViewScrollPositionTop": 2, + "r.origin.y": 1, + "v.size.height": 2, + "scrollRectToVisible": 2, + "TUITableViewScrollPositionToVisible": 3, + "default": 8, + "indexPathForSelectedRow": 4, + "indexPathForFirstRow": 2, + "indexPathForLastRow": 2, + "sec": 3, + "_makeRowAtIndexPathFirstResponder": 2, + "only": 12, + "accept": 2, + "responder": 2, + "made": 1, + "acceptsFirstResponder": 1, + "self.nsWindow": 3, + "makeFirstResponderIfNotAlreadyInResponderChain": 1, + "_indexPathShouldBeFirstResponder": 2, + "_futureMakeFirstResponderToken": 2, + "futureMakeFirstResponderRequestToken": 1, + "selectRowAtIndexPath": 3, + "*oldIndexPath": 1, + "isEqual": 4, + "oldIndexPath": 2, + "just": 4, + "deselectRowAtIndexPath": 3, + "may": 8, + "setSelected": 2, + "already": 4, + "setNeedsDisplay": 2, + "selection": 3, + "actually": 2, + "changes": 4, + "didSelectRowAtIndexPath": 3, + "NSResponder": 1, + "*firstResponder": 1, + "firstResponder": 3, + "didDeselectRowAtIndexPath": 3, + "indexPathForFirstVisibleRow": 2, + "*firstIndexPath": 1, + "firstIndexPath": 4, + "indexPathForLastVisibleRow": 2, + "*lastIndexPath": 5, + "lastIndexPath": 8, + "performKeyAction": 2, + "NSEvent": 3, + "event": 8, + "and": 44, + "repeative": 1, + "key": 32, + "press": 1, + "noCurrentSelection": 2, + "isARepeat": 1, + "TUITableViewCalculateNextIndexPathBlock": 3, + "selectValidIndexPath": 3, + "*startForNoSelection": 2, + "calculateNextIndexPath": 4, + "NSParameterAssert": 15, + "foundValidNextRow": 4, + "while": 11, + "*newIndexPath": 1, + "newIndexPath": 6, + "startForNoSelection": 1, + "_delegate": 2, + "shouldSelectRowAtIndexPath": 3, + "forEvent": 3, + "self.animateSelectionChanges": 1, + "charactersIgnoringModifiers": 1, + "characterAtIndex": 1, + "NSUpArrowFunctionKey": 1, + "lastIndexPath.section": 2, + "lastIndexPath.row": 2, + "rowsInSection": 7, + "NSDownArrowFunctionKey": 1, + "maintainContentOffsetAfterReload": 3, + "_tableFlags.maintainContentOffsetAfterReload": 2, + "setMaintainContentOffsetAfterReload": 1, + "newValue": 2, + "NSIndexPath": 5, + "indexPathWithIndexes": 1, + "length": 32, + "indexAtPosition": 2, + "SBJsonParser": 2, + "maxDepth": 2, + "error": 75, + "self.maxDepth": 2, + "u": 4, + "#pragma": 44, + "mark": 42, + "Methods": 1, + "objectWithData": 7, + "NSData": 28, + "data": 27, + "self.error": 3, + "SBJsonStreamParserAccumulator": 2, + "*accumulator": 1, + "SBJsonStreamParserAdapter": 2, + "*adapter": 1, + "adapter.delegate": 1, + "accumulator": 1, + "SBJsonStreamParser": 2, + "*parser": 1, + "parser.maxDepth": 1, + "parser.delegate": 1, + "adapter": 1, + "parser": 3, + "parse": 1, + "SBJsonStreamParserComplete": 1, + "accumulator.value": 1, + "SBJsonStreamParserWaitingForData": 1, + "SBJsonStreamParserError": 1, + "parser.error": 1, + "objectWithString": 5, + "repr": 5, + "dataUsingEncoding": 2, + "NSUTF8StringEncoding": 2, + "NSString*": 13, + "NSError**": 2, + "error_": 2, + "tmp": 3, + "NSDictionary": 37, + "*ui": 1, + "dictionaryWithObjectsAndKeys": 10, + "NSLocalizedDescriptionKey": 10, + "*error_": 1, + "NSError": 51, + "errorWithDomain": 6, + "code": 16, + "userInfo": 15, + "ui": 1, + "": 2, + "main": 8, + "argc": 1, + "char": 19, + "*argv": 1, + "kTextStyleType": 2, + "kViewStyleType": 2, + "kImageStyleType": 2, + "///////////////////////////////////////////////////////////////////////////////////////////////////": 24, + "StyleViewController": 2, + "initWithStyleName": 1, + "name": 7, + "styleType": 3, + "initWithNibName": 3, + "bundle": 3, + "self.title": 2, + "TTStyleSheet": 4, + "globalStyleSheet": 4, + "styleWithSelector": 4, + "retain": 73, + "_styleHighlight": 6, + "forState": 4, + "UIControlStateHighlighted": 1, + "_styleDisabled": 6, + "UIControlStateDisabled": 1, + "_styleSelected": 6, + "UIControlStateSelected": 1, + "_styleType": 6, + "copy": 4, + "TT_RELEASE_SAFELY": 12, + "UIViewController": 2, + "addTextView": 5, + "title": 2, + "TTStyle*": 7, + "textFrame": 3, + "TTRectInset": 3, + "UIEdgeInsetsMake": 3, + "StyleView*": 2, + "text": 12, + "StyleView": 2, + "text.text": 1, + "TTStyleContext*": 1, + "context": 4, + "TTStyleContext": 1, + "context.frame": 1, + "context.delegate": 1, + "context.font": 1, + "UIFont": 3, + "systemFontOfSize": 2, + "systemFontSize": 1, + "addToSize": 1, + "CGSizeZero": 1, + "size.width": 1, + "size.height": 1, + "textFrame.size": 1, + "text.frame": 1, + "text.style": 1, + "text.backgroundColor": 1, + "UIColor": 3, + "colorWithRed": 3, + "green": 3, + "blue": 3, + "alpha": 3, + "text.autoresizingMask": 1, + "UIViewAutoresizingFlexibleWidth": 4, + "|": 13, + "UIViewAutoresizingFlexibleBottomMargin": 3, + "self.view": 4, + "addView": 5, + "viewFrame": 4, + "view.style": 2, + "view.backgroundColor": 2, + "view.autoresizingMask": 2, + "addImageView": 5, + "TTImageView*": 1, + "TTImageView": 1, + "view.urlPath": 1, + "imageFrame": 2, + "view.frame": 2, + "imageFrame.size": 1, + "view.image.size": 1, + "loadView": 4, + "self.view.bounds": 2, + "/": 18, + "isEqualToString": 13, + "": 4, + "Foo": 2, + "MainMenuViewController": 2, + "TTTableViewController": 1, + "#include": 18, + "": 1, + "": 2, + "": 2, + "": 1, + "": 1, + "#ifdef": 10, + "__OBJC__": 4, + "": 2, + "": 2, + "": 2, + "": 1, + "": 2, + "": 1, + "#endif": 59, + "__cplusplus": 2, + "extern": 6, + "#ifndef": 9, + "NSINTEGER_DEFINED": 3, + "#if": 41, + "defined": 16, + "__LP64__": 4, + "NS_BUILD_32_LIKE_64": 3, + "long": 71, + "unsigned": 62, + "NSIntegerMin": 3, + "LONG_MIN": 3, + "NSIntegerMax": 4, + "LONG_MAX": 3, + "NSUIntegerMax": 7, + "ULONG_MAX": 3, + "#else": 8, + "INT_MIN": 3, + "INT_MAX": 2, + "UINT_MAX": 3, + "_JSONKIT_H_": 3, + "__GNUC__": 14, + "__APPLE_CC__": 2, + "JK_DEPRECATED_ATTRIBUTE": 6, + "__attribute__": 3, + "deprecated": 1, + "JSONKIT_VERSION_MAJOR": 1, + "JSONKIT_VERSION_MINOR": 1, + "JKFlags": 5, + "enum": 17, + "JKParseOptionNone": 1, + "JKParseOptionStrict": 1, + "JKParseOptionComments": 2, + "<<": 16, + "JKParseOptionUnicodeNewlines": 2, + "JKParseOptionLooseUnicode": 2, + "JKParseOptionPermitTextAfterValidJSON": 2, + "JKParseOptionValidFlags": 1, + "JKParseOptionFlags": 12, + "JKSerializeOptionNone": 3, + "JKSerializeOptionPretty": 2, + "JKSerializeOptionEscapeUnicode": 2, + "JKSerializeOptionEscapeForwardSlashes": 2, + "JKSerializeOptionValidFlags": 1, + "JKSerializeOptionFlags": 16, + "JKParseState": 18, + "Opaque": 1, + "internal": 2, + "private": 1, + "type.": 3, + "JSONDecoder": 2, + "*parseState": 16, + "decoder": 1, + "decoderWithParseOptions": 1, + "parseOptionFlags": 11, + "initWithParseOptions": 1, + "clearCache": 1, + "parseUTF8String": 2, + "const": 28, + "string": 9, + "size_t": 23, + "Deprecated": 4, + "JSONKit": 11, + "v1.4.": 4, + "Use": 6, + "objectWithUTF8String": 4, + "instead.": 4, + "**": 27, + "parseJSONData": 2, + "jsonData": 6, + "mutableObjectWithUTF8String": 2, + "mutableObjectWithData": 2, + "////////////": 4, + "Deserializing": 1, + "methods": 2, + "JSONKitDeserializing": 2, + "objectFromJSONString": 1, + "objectFromJSONStringWithParseOptions": 2, + "mutableObjectFromJSONString": 1, + "mutableObjectFromJSONStringWithParseOptions": 2, + "objectFromJSONData": 1, + "objectFromJSONDataWithParseOptions": 2, + "mutableObjectFromJSONData": 1, + "mutableObjectFromJSONDataWithParseOptions": 2, + "Serializing": 1, + "JSONKitSerializing": 3, + "JSONData": 3, + "Invokes": 2, + "JSONDataWithOptions": 8, + "includeQuotes": 6, + "serializeOptions": 14, + "JSONString": 3, + "JSONStringWithOptions": 8, + "serializeUnsupportedClassesUsingDelegate": 4, + "selector": 12, + "SEL": 19, + "__BLOCKS__": 1, + "JSONKitSerializingBlockAdditions": 2, + "serializeUnsupportedClassesUsingBlock": 4, + "object": 36, + "regular": 1, + "TUITableViewStyleGrouped": 1, + "grouped": 1, + "stick": 1, + "TUITableViewScrollPositionMiddle": 1, + "TUITableViewScrollPositionBottom": 1, + "currently": 4, + "supported": 1, + "arg": 11, + "TUITableViewInsertionMethodBeforeIndex": 1, + "TUITableViewInsertionMethodAtIndex": 1, + "NSOrderedSame": 1, + "TUITableViewInsertionMethodAfterIndex": 1, + "TUITableViewInsertionMethod": 3, + "@class": 4, + "@protocol": 3, + "TUITableViewDataSource": 2, + "TUITableViewDelegate": 1, + "": 1, + "TUIScrollViewDelegate": 1, + "@optional": 2, + "called": 3, + "after": 5, + "as": 17, + "subview": 1, + "happens": 4, + "left/right": 2, + "mouse": 2, + "down": 1, + "up/down": 1, + "didClickRowAtIndexPath": 1, + "withEvent": 2, + "up": 4, + "can": 20, + "look": 1, + "clickCount": 1, + "TUITableView*": 1, + "TUIFastIndexPath*": 1, + "NSEvent*": 1, + "implemented": 7, + "NSMenu": 1, + "menuForRowAtIndexPath": 1, + "targetIndexPathForMoveFromRowAtIndexPath": 1, + "fromPath": 1, + "toProposedIndexPath": 1, + "proposedPath": 1, + "TUIScrollView": 1, + "_lastSize": 1, + "drag": 1, + "reorder": 1, + "_currentDragToReorderLocation": 1, + "_currentDragToReorderMouseOffset": 1, + "_currentDragToReorderIndexPath": 1, + "_currentDragToReorderInsertionMethod": 1, + "_previousDragToReorderIndexPath": 1, + "_previousDragToReorderInsertionMethod": 1, + "forceSaveScrollPosition": 1, + "derepeaterEnabled": 1, + "layoutSubviewsReentrancyGuard": 1, + "didFirstLayout": 1, + "dataSourceNumberOfSectionsInTableView": 1, + "delegateTableViewWillDisplayCellForRowAtIndexPath": 1, + "_tableFlags": 1, + "specify": 2, + "creation.": 1, + "calls": 1, + "UITableViewStylePlain": 1, + "unsafe_unretained": 2, + "readwrite": 1, + "particular": 2, + "order": 1, + "bottom": 6, + "representing": 1, + "selection.": 1, + "*pullDownView": 1, + "": 1, + "@required": 1, + "canMoveRowAtIndexPath": 2, + "moveRowAtIndexPath": 2, + "nibNameOrNil": 1, + "NSBundle": 1, + "nibBundleOrNil": 1, + "//self.variableHeightRows": 1, + "self.tableViewStyle": 1, + "UITableViewStyleGrouped": 1, + "self.dataSource": 1, + "TTSectionedDataSource": 1, + "dataSourceWithObjects": 1, + "TTTableTextItem": 48, + "itemWithText": 48, + "URL": 48, + "TARGET_OS_IPHONE": 11, + "": 1, + "": 1, + "*ASIHTTPRequestVersion": 2, + "*defaultUserAgent": 1, + "NetworkRequestErrorDomain": 12, + "*ASIHTTPRequestRunLoopMode": 1, + "CFOptionFlags": 1, + "kNetworkEvents": 1, + "kCFStreamEventHasBytesAvailable": 1, + "kCFStreamEventEndEncountered": 1, + "kCFStreamEventErrorOccurred": 1, + "*sessionCredentialsStore": 1, + "*sessionProxyCredentialsStore": 1, + "NSRecursiveLock": 13, + "*sessionCredentialsLock": 1, + "*sessionCookies": 1, + "RedirectionLimit": 1, + "NSTimeInterval": 10, + "defaultTimeOutSeconds": 3, + "ReadStreamClientCallBack": 1, + "CFReadStreamRef": 5, + "readStream": 5, + "CFStreamEventType": 2, + "type": 5, + "*clientCallBackInfo": 1, + "ASIHTTPRequest*": 1, + "clientCallBackInfo": 1, + "handleNetworkEvent": 2, + "*progressLock": 1, + "*ASIRequestCancelledError": 1, + "*ASIRequestTimedOutError": 1, + "*ASIAuthenticationError": 1, + "*ASIUnableToCreateRequestError": 1, + "*ASITooMuchRedirectionError": 1, + "*bandwidthUsageTracker": 1, + "averageBandwidthUsedPerSecond": 2, + "nextConnectionNumberToCreate": 1, + "*persistentConnectionsPool": 1, + "*connectionsLock": 1, + "nextRequestID": 1, + "bandwidthUsedInLastSecond": 1, + "NSDate": 9, + "*bandwidthMeasurementDate": 1, + "NSLock": 2, + "*bandwidthThrottlingLock": 1, + "maxBandwidthPerSecond": 2, + "ASIWWANBandwidthThrottleAmount": 2, + "isBandwidthThrottled": 2, + "shouldThrottleBandwidthForWWANOnly": 1, + "*sessionCookiesLock": 1, + "*delegateAuthenticationLock": 1, + "*throttleWakeUpTime": 1, + "": 9, + "defaultCache": 3, + "runningRequestCount": 1, + "shouldUpdateNetworkActivityIndicator": 1, + "NSThread": 4, + "*networkThread": 1, + "NSOperationQueue": 4, + "*sharedQueue": 1, + "ASIHTTPRequest": 31, + "cancelLoad": 3, + "destroyReadStream": 3, + "scheduleReadStream": 1, + "unscheduleReadStream": 1, + "willAskDelegateForCredentials": 1, + "willAskDelegateForProxyCredentials": 1, + "askDelegateForProxyCredentials": 1, + "askDelegateForCredentials": 1, + "failAuthentication": 1, + "measureBandwidthUsage": 1, + "recordBandwidthUsage": 1, + "startRequest": 3, + "updateStatus": 2, + "NSTimer": 5, + "timer": 5, + "checkRequestStatus": 2, + "reportFailure": 3, + "reportFinished": 1, + "markAsFinished": 4, + "performRedirect": 1, + "shouldTimeOut": 2, + "willRedirect": 1, + "willAskDelegateToConfirmRedirect": 1, + "performInvocation": 2, + "NSInvocation": 4, + "invocation": 4, + "onTarget": 7, + "releasingObject": 2, + "objectToRelease": 1, + "hideNetworkActivityIndicatorAfterDelay": 1, + "hideNetworkActivityIndicatorIfNeeeded": 1, + "runRequests": 1, + "configureProxies": 2, + "fetchPACFile": 1, + "finishedDownloadingPACFile": 1, + "theRequest": 1, + "runPACScript": 1, + "script": 1, + "timeOutPACRead": 1, + "useDataFromCache": 2, + "updatePartialDownloadSize": 1, + "registerForNetworkReachabilityNotifications": 1, + "unsubscribeFromNetworkReachabilityNotifications": 1, + "reachabilityChanged": 1, + "NSNotification": 2, + "note": 1, + "NS_BLOCKS_AVAILABLE": 8, + "performBlockOnMainThread": 2, + "ASIBasicBlock": 15, + "releaseBlocksOnMainThread": 4, + "releaseBlocks": 3, + "blocks": 16, + "callBlock": 1, + "complete": 12, + "*responseCookies": 3, + "responseStatusCode": 3, + "*lastActivityTime": 2, + "partialDownloadSize": 8, + "uploadBufferSize": 6, + "NSOutputStream": 6, + "*postBodyWriteStream": 1, + "NSInputStream": 7, + "*postBodyReadStream": 1, + "lastBytesRead": 3, + "lastBytesSent": 3, + "*cancelledLock": 2, + "*fileDownloadOutputStream": 2, + "*inflatedFileDownloadOutputStream": 2, + "authenticationRetryCount": 2, + "proxyAuthenticationRetryCount": 4, + "updatedProgress": 3, + "needsRedirect": 3, + "redirectCount": 2, + "*compressedPostBody": 1, + "*compressedPostBodyFilePath": 1, + "*authenticationRealm": 2, + "*proxyAuthenticationRealm": 3, + "*responseStatusMessage": 3, + "inProgress": 4, + "retryCount": 3, + "willRetryRequest": 1, + "connectionCanBeReused": 4, + "*connectionInfo": 2, + "*readStream": 1, + "ASIAuthenticationState": 5, + "authenticationNeeded": 3, + "readStreamIsScheduled": 1, + "downloadComplete": 2, + "NSNumber": 11, + "*requestID": 3, + "*runLoopMode": 2, + "*statusTimer": 2, + "didUseCachedResponse": 3, + "NSURL": 21, + "*redirectURL": 2, + "isPACFileRequest": 3, + "*PACFileRequest": 2, + "*PACFileReadStream": 2, + "NSMutableData": 5, + "*PACFileData": 2, + "setter": 2, + "setSynchronous": 2, + "isSynchronous": 2, + "initialize": 1, + "persistentConnectionsPool": 3, + "connectionsLock": 3, + "progressLock": 1, + "bandwidthThrottlingLock": 1, + "sessionCookiesLock": 1, + "sessionCredentialsLock": 1, + "delegateAuthenticationLock": 1, + "bandwidthUsageTracker": 1, + "ASIRequestTimedOutError": 1, + "initWithDomain": 5, + "ASIRequestTimedOutErrorType": 2, + "ASIAuthenticationError": 1, + "ASIAuthenticationErrorType": 3, + "ASIRequestCancelledError": 2, + "ASIRequestCancelledErrorType": 2, + "ASIUnableToCreateRequestError": 3, + "ASIUnableToCreateRequestErrorType": 2, + "ASITooMuchRedirectionError": 1, + "ASITooMuchRedirectionErrorType": 3, + "sharedQueue": 4, + "setMaxConcurrentOperationCount": 1, + "initWithURL": 4, + "newURL": 16, + "setRequestMethod": 3, + "setRunLoopMode": 2, + "NSDefaultRunLoopMode": 2, + "setShouldAttemptPersistentConnection": 2, + "setPersistentConnectionTimeoutSeconds": 2, + "setShouldPresentCredentialsBeforeChallenge": 1, + "setShouldRedirect": 1, + "setShowAccurateProgress": 1, + "setShouldResetDownloadProgress": 1, + "setShouldResetUploadProgress": 1, + "setAllowCompressedResponse": 1, + "setShouldWaitToInflateCompressedResponses": 1, + "setDefaultResponseEncoding": 1, + "NSISOLatin1StringEncoding": 2, + "setShouldPresentProxyAuthenticationDialog": 1, + "setTimeOutSeconds": 1, + "setUseSessionPersistence": 1, + "setUseCookiePersistence": 1, + "setValidatesSecureCertificate": 1, + "setRequestCookies": 2, + "autorelease": 21, + "setDidStartSelector": 1, + "requestStarted": 3, + "setDidReceiveResponseHeadersSelector": 1, + "request": 113, + "didReceiveResponseHeaders": 2, + "setWillRedirectSelector": 1, + "willRedirectToURL": 1, + "setDidFinishSelector": 1, + "requestFinished": 4, + "setDidFailSelector": 1, + "requestFailed": 2, + "setDidReceiveDataSelector": 1, + "didReceiveData": 2, + "setURL": 3, + "setCancelledLock": 1, + "setDownloadCache": 3, + "requestWithURL": 7, + "usingCache": 5, + "cache": 17, + "andCachePolicy": 3, + "ASIUseDefaultCachePolicy": 1, + "ASICachePolicy": 4, + "policy": 7, + "*request": 1, + "setCachePolicy": 1, + "setAuthenticationNeeded": 2, + "ASINoAuthenticationNeededYet": 3, + "requestAuthentication": 7, + "CFRelease": 19, + "proxyAuthentication": 7, + "clientCertificateIdentity": 5, + "redirectURL": 1, + "release": 66, + "statusTimer": 3, + "invalidate": 2, + "queue": 12, + "postBody": 11, + "compressedPostBody": 4, + "requestHeaders": 6, + "requestCookies": 1, + "downloadDestinationPath": 11, + "temporaryFileDownloadPath": 2, + "temporaryUncompressedDataDownloadPath": 3, + "fileDownloadOutputStream": 1, + "inflatedFileDownloadOutputStream": 1, + "username": 8, + "password": 11, + "domain": 2, + "authenticationRealm": 4, + "authenticationScheme": 4, + "requestCredentials": 1, + "proxyHost": 2, + "proxyType": 1, + "proxyUsername": 3, + "proxyPassword": 3, + "proxyDomain": 1, + "proxyAuthenticationRealm": 2, + "proxyAuthenticationScheme": 2, + "proxyCredentials": 1, + "url": 24, + "originalURL": 1, + "lastActivityTime": 1, + "responseCookies": 1, + "rawResponseData": 4, + "responseHeaders": 5, + "requestMethod": 13, + "cancelledLock": 37, + "postBodyFilePath": 7, + "compressedPostBodyFilePath": 4, + "postBodyWriteStream": 7, + "postBodyReadStream": 2, + "PACurl": 1, + "clientCertificates": 2, + "responseStatusMessage": 1, + "connectionInfo": 13, + "requestID": 2, + "dataDecompressor": 1, + "userAgentString": 1, + "*blocks": 1, + "completionBlock": 5, + "failureBlock": 5, + "startedBlock": 5, + "headersReceivedBlock": 5, + "bytesReceivedBlock": 8, + "bytesSentBlock": 5, + "downloadSizeIncrementedBlock": 5, + "uploadSizeIncrementedBlock": 5, + "dataReceivedBlock": 5, + "proxyAuthenticationNeededBlock": 5, + "authenticationNeededBlock": 5, + "requestRedirectedBlock": 5, + "performSelectorOnMainThread": 2, + "withObject": 10, + "waitUntilDone": 4, + "isMainThread": 2, + "Blocks": 1, + "released": 2, + "method": 5, + "exits": 1, + "setup": 2, + "addRequestHeader": 5, + "setRequestHeaders": 2, + "dictionaryWithCapacity": 2, + "buildPostBody": 3, + "haveBuiltPostBody": 3, + "Are": 1, + "submitting": 1, + "body": 8, + "file": 14, + "disk": 1, + "were": 5, + "writing": 2, + "post": 2, + "via": 5, + "appendPostData": 3, + "appendPostDataFromFile": 3, + "close": 5, + "write": 4, + "stream": 13, + "setPostBodyWriteStream": 2, + "*path": 1, + "shouldCompressRequestBody": 6, + "setCompressedPostBodyFilePath": 1, + "NSTemporaryDirectory": 2, + "stringByAppendingPathComponent": 2, + "NSProcessInfo": 2, + "processInfo": 2, + "globallyUniqueString": 2, + "*err": 3, + "ASIDataCompressor": 2, + "compressDataFromFile": 1, + "toFile": 1, + "err": 8, + "failWithError": 11, + "setPostLength": 3, + "NSFileManager": 1, + "attributesOfItemAtPath": 1, + "fileSize": 1, + "ASIFileManagementError": 2, + "stringWithFormat": 6, + "NSUnderlyingErrorKey": 3, + "Otherwise": 2, + "an": 20, + "memory": 3, + "*compressedBody": 1, + "compressData": 1, + "setCompressedPostBody": 1, + "compressedBody": 1, + "postLength": 6, + "setHaveBuiltPostBody": 1, + "setupPostBody": 3, + "shouldStreamPostDataFromDisk": 4, + "setPostBodyFilePath": 1, + "setDidCreateTemporaryPostDataFile": 1, + "initToFileAtPath": 1, + "append": 1, + "open": 2, + "setPostBody": 1, + "bytes": 8, + "maxLength": 3, + "appendData": 2, + "*stream": 1, + "initWithFileAtPath": 1, + "bytesRead": 5, + "hasBytesAvailable": 1, + "buffer": 7, + "*256": 1, + "read": 3, + "dataWithBytes": 1, + "lock": 19, + "*m": 1, + "unlock": 20, + "m": 1, + "newRequestMethod": 3, + "*u": 1, + "NULL": 152, + "setRedirectURL": 2, + "newDelegate": 6, + "q": 2, + "setQueue": 2, + "newQueue": 3, + "get": 4, + "information": 5, + "about": 4, + "cancelOnRequestThread": 2, + "DEBUG_REQUEST_STATUS": 4, + "ASI_DEBUG_LOG": 11, + "isCancelled": 6, + "setComplete": 3, + "CFRetain": 4, + "willChangeValueForKey": 1, + "cancelled": 5, + "didChangeValueForKey": 1, + "cancel": 5, + "performSelector": 7, + "onThread": 2, + "threadForRequest": 3, + "clearDelegatesAndCancel": 2, + "Clear": 3, + "delegates": 2, + "setDownloadProgressDelegate": 2, + "setUploadProgressDelegate": 2, + "result": 4, + "responseString": 3, + "*data": 2, + "responseData": 5, + "initWithBytes": 1, + "encoding": 7, + "responseEncoding": 3, + "isResponseCompressed": 3, + "*encoding": 1, + "rangeOfString": 1, + ".location": 1, + "NSNotFound": 1, + "shouldWaitToInflateCompressedResponses": 4, + "ASIDataDecompressor": 4, + "uncompressData": 1, + "running": 4, + "startSynchronous": 2, + "DEBUG_THROTTLING": 2, + "ASIHTTPRequestRunLoopMode": 2, + "setInProgress": 3, + "NSRunLoop": 2, + "currentRunLoop": 2, + "runMode": 1, + "runLoopMode": 2, + "beforeDate": 1, + "distantFuture": 1, + "startAsynchronous": 2, + "addOperation": 1, + "concurrency": 1, + "isConcurrent": 1, + "isFinished": 1, + "finished": 3, + "isExecuting": 1, + "logic": 1, + "@try": 1, + "__IPHONE_OS_VERSION_MAX_ALLOWED": 4, + "__IPHONE_4_0": 6, + "isMultitaskingSupported": 2, + "shouldContinueWhenAppEntersBackground": 3, + "backgroundTask": 7, + "UIBackgroundTaskInvalid": 3, + "UIApplication": 2, + "sharedApplication": 2, + "beginBackgroundTaskWithExpirationHandler": 1, + "dispatch_async": 1, + "dispatch_get_main_queue": 1, + "endBackgroundTask": 1, + "A": 4, + "HEAD": 10, + "generated": 3, + "ASINetworkQueue": 4, + "set": 24, + "already.": 1, + "proceed.": 1, + "setDidUseCachedResponse": 1, + "Must": 1, + "before": 6, + "create": 1, + "needs": 1, + "mainRequest": 9, + "ll": 6, + "CFHTTPMessageRef": 3, + "Create": 1, + "HTTP": 9, + "request.": 1, + "CFHTTPMessageCreateRequest": 1, + "kCFAllocatorDefault": 3, + "CFStringRef": 1, + "CFURLRef": 1, + "useHTTPVersionOne": 3, + "kCFHTTPVersion1_0": 1, + "kCFHTTPVersion1_1": 1, + "//If": 2, + "let": 8, + "generate": 1, + "buildRequestHeaders": 3, + "Even": 1, + "still": 2, + "give": 2, + "subclasses": 2, + "chance": 2, + "their": 3, + "own": 3, + "requests": 21, + "ASIS3Request": 1, + "does": 3, + "downloadCache": 5, + "download": 9, + "downloading": 5, + "proxy": 11, + "PAC": 7, + "once": 3, + "process": 1, + "@catch": 1, + "NSException": 19, + "*exception": 1, + "*underlyingError": 1, + "ASIUnhandledExceptionError": 3, + "exception": 3, + "reason": 1, + "NSLocalizedFailureReasonErrorKey": 1, + "underlyingError": 1, + "@finally": 1, + "applyAuthorizationHeader": 2, + "Do": 3, + "want": 5, + "send": 2, + "credentials": 35, + "are": 15, + "asked": 3, + "shouldPresentCredentialsBeforeChallenge": 4, + "DEBUG_HTTP_AUTHENTICATION": 4, + "*credentials": 1, + "auth": 2, + "basic": 3, + "authentication": 18, + "explicitly": 2, + "kCFHTTPAuthenticationSchemeBasic": 2, + "addBasicAuthenticationHeaderWithUsername": 2, + "andPassword": 2, + "See": 5, + "cached": 2, + "session": 5, + "store": 4, + "useSessionPersistence": 6, + "findSessionAuthenticationCredentials": 2, + "When": 15, + "Authentication": 3, + "stored": 9, + "challenge": 1, + "CFNetwork": 3, + "apply": 2, + "Digest": 2, + "NTLM": 6, + "always": 2, + "like": 1, + "CFHTTPMessageApplyCredentialDictionary": 2, + "CFHTTPAuthenticationRef": 2, + "CFDictionaryRef": 1, + "setAuthenticationScheme": 1, + "removeAuthenticationCredentialsFromSessionStore": 3, + "these": 3, + "previous": 2, + "passed": 2, + "%": 30, + "retrying": 1, + "using": 8, + "custom": 2, + "measure": 1, + "bandwidth": 3, + "throttled": 1, + "necessary": 2, + "setPostBodyReadStream": 2, + "ASIInputStream": 2, + "inputStreamWithData": 2, + "setReadStream": 2, + "NSMakeCollectable": 3, + "CFReadStreamCreateForStreamedHTTPRequest": 1, + "CFReadStreamCreateForHTTPRequest": 1, + "ASIInternalErrorWhileBuildingRequestType": 3, + "scheme": 5, + "lowercaseString": 1, + "validatesSecureCertificate": 3, + "*sslProperties": 2, + "initWithObjectsAndKeys": 1, + "numberWithBool": 3, + "kCFStreamSSLAllowsExpiredCertificates": 1, + "kCFStreamSSLAllowsAnyRoot": 1, + "kCFStreamSSLValidatesCertificateChain": 1, + "kCFNull": 1, + "kCFStreamSSLPeerName": 1, + "CFReadStreamSetProperty": 1, + "kCFStreamPropertySSLSettings": 1, + "CFTypeRef": 1, + "sslProperties": 2, + "*certificates": 1, + "The": 15, + "SecIdentityRef": 3, + "certificates": 2, + "ve": 7, + "opened": 3, + "*oldStream": 1, + "persistent": 5, + "connection": 17, + "possible": 3, + "shouldAttemptPersistentConnection": 2, + "redirecting": 2, + "current": 2, + "connecting": 2, + "server": 8, + "host": 9, + "intValue": 4, + "port": 17, + "setConnectionInfo": 2, + "Check": 1, + "expired": 1, + "timeIntervalSinceNow": 1, + "DEBUG_PERSISTENT_CONNECTIONS": 3, + "removeObject": 2, + "//Some": 1, + "other": 3, + "reused": 2, + "was": 4, + "previously": 1, + "there": 1, + "one": 1, + "We": 7, + "make": 3, + "http": 4, + "//lists.apple.com/archives/Macnetworkprog/2006/Mar/msg00119.html": 1, + "oldStream": 4, + "streamSuccessfullyOpened": 1, + "setConnectionCanBeReused": 2, + "shouldResetUploadProgress": 3, + "showAccurateProgress": 7, + "incrementUploadSizeBy": 3, + "updateProgressIndicator": 4, + "uploadProgressDelegate": 8, + "withProgress": 4, + "ofTotal": 4, + "shouldResetDownloadProgress": 3, + "downloadProgressDelegate": 10, + "Record": 1, + "started": 1, + "timeout": 6, + "setLastActivityTime": 1, + "date": 3, + "setStatusTimer": 2, + "timerWithTimeInterval": 1, + "repeats": 1, + "addTimer": 1, + "forMode": 1, + "here": 2, + "sent": 6, + "more": 5, + "than": 9, + "upload": 4, + "safely": 1, + "time": 9, + "totalBytesSent": 5, + "***Black": 1, + "magic": 1, + "warning***": 1, + "but": 5, + "reliable": 1, + "way": 1, + "track": 1, + "progress": 13, + "KB": 4, + "iPhone": 3, + "Mac": 2, + "very": 2, + "slow.": 1, + "secondsSinceLastActivity": 1, + "timeOutSeconds": 3, + "*1.5": 1, + "won": 3, + "updating": 1, + "checking": 1, + "told": 1, + "us": 2, + "performThrottling": 2, + "retry": 3, + "numberOfTimesToRetryOnTimeout": 2, + "resuming": 1, + "Range": 1, + "take": 1, + "account": 1, + "perhaps": 1, + "uploaded": 2, + "far": 2, + "setTotalBytesSent": 1, + "CFReadStreamCopyProperty": 2, + "kCFStreamPropertyHTTPRequestBytesWrittenCount": 1, + "unsignedLongLongValue": 1, + "middle": 1, + "said": 1, + "resume": 2, + "used": 16, + "preset": 2, + "updateUploadProgress": 3, + "updateDownloadProgress": 3, + "NSProgressIndicator": 4, + "MaxValue": 2, + "UIProgressView": 2, + "double": 3, + "max": 7, + "setMaxValue": 2, + "amount": 12, + "callerToRetain": 7, + "examined": 1, + "since": 1, + "authenticate": 1, + "contentLength": 6, + "bytesReadSoFar": 3, + "totalBytesRead": 4, + "setUpdatedProgress": 1, + "didReceiveBytes": 2, + "totalSize": 2, + "setLastBytesRead": 1, + "pass": 5, + "pointer": 2, + "directly": 1, + "number": 2, + "itself": 1, + "rather": 4, + "setArgument": 4, + "atIndex": 6, + "argumentNumber": 1, + "callback": 3, + "NSMethodSignature": 1, + "*cbSignature": 1, + "methodSignatureForSelector": 1, + "*cbInvocation": 1, + "invocationWithMethodSignature": 1, + "cbSignature": 1, + "cbInvocation": 5, + "setSelector": 1, + "setTarget": 1, + "Used": 13, + "until": 2, + "forget": 2, + "know": 3, + "attempt": 3, + "reuse": 3, + "theError": 6, + "removeObjectForKey": 1, + "dateWithTimeIntervalSinceNow": 1, + "persistentConnectionTimeoutSeconds": 4, + "ignore": 1, + "ASIFallbackToCacheIfLoadFailsCachePolicy": 2, + "cachePolicy": 3, + "canUseCachedDataForRequest": 1, + "setError": 2, + "*failedRequest": 1, + "created": 3, + "compatible": 1, + "fail": 1, + "failedRequest": 4, + "parsing": 2, + "response": 17, + "readResponseHeaders": 2, + "message": 2, + "kCFStreamPropertyHTTPResponseHeader": 1, + "Make": 1, + "sure": 1, + "didn": 3, + "tells": 1, + "keepAliveHeader": 2, + "NSScanner": 2, + "*scanner": 1, + "scannerWithString": 1, + "scanner": 5, + "scanString": 2, + "intoString": 3, + "scanInt": 2, + "scanUpToString": 1, + "probably": 4, + "what": 3, + "you": 10, + "hard": 1, + "keep": 2, + "throw": 1, + "away.": 1, + "*userAgentHeader": 1, + "*acceptHeader": 1, + "userAgentHeader": 2, + "acceptHeader": 2, + "setHaveBuiltRequestHeaders": 1, + "Force": 2, + "rebuild": 2, + "cookie": 1, + "incase": 1, + "got": 1, + "some": 1, + "cookies": 5, + "All": 2, + "remain": 1, + "redirects": 2, + "applyCookieHeader": 2, + "redirected": 2, + "ones": 3, + "URLWithString": 1, + "valueForKey": 2, + "relativeToURL": 1, + "absoluteURL": 1, + "setNeedsRedirect": 1, + "This": 7, + "means": 1, + "manually": 1, + "redirect": 4, + "those": 1, + "global": 1, + "But": 1, + "safest": 1, + "option": 1, + "responseCode": 1, + "parseStringEncodingFromHeaders": 2, + "Handle": 1, + "NSStringEncoding": 6, + "charset": 5, + "*mimeType": 1, + "parseMimeType": 2, + "mimeType": 2, + "andResponseEncoding": 2, + "fromContentType": 2, + "setResponseEncoding": 2, + "defaultResponseEncoding": 4, + "saveProxyCredentialsToKeychain": 1, + "newCredentials": 16, + "NSURLCredential": 8, + "*authenticationCredentials": 2, + "credentialWithUser": 2, + "kCFHTTPAuthenticationUsername": 2, + "kCFHTTPAuthenticationPassword": 2, + "persistence": 2, + "NSURLCredentialPersistencePermanent": 2, + "authenticationCredentials": 4, + "saveCredentials": 4, + "forProxy": 2, + "proxyPort": 2, + "realm": 14, + "saveCredentialsToKeychain": 3, + "forHost": 2, + "protocol": 10, + "applyProxyCredentials": 2, + "setProxyAuthenticationRetryCount": 1, + "Apply": 1, + "whatever": 1, + "ok": 1, + "built": 2, + "CFMutableDictionaryRef": 1, + "save": 3, + "keychain": 7, + "useKeychainPersistence": 4, + "*sessionCredentials": 1, + "dictionary": 64, + "sessionCredentials": 6, + "storeAuthenticationCredentialsInSessionStore": 2, + "setRequestCredentials": 1, + "findProxyCredentials": 2, + "*newCredentials": 1, + "*user": 1, + "*pass": 1, + "*theRequest": 1, + "try": 3, + "user": 6, + "connect": 1, + "website": 1, + "kCFHTTPAuthenticationSchemeNTLM": 1, + "Ok": 1, + "For": 2, + "authenticating": 2, + "proxies": 3, + "extract": 1, + "NSArray*": 1, + "ntlmComponents": 1, + "componentsSeparatedByString": 1, + "AUTH": 6, + "Request": 6, + "parent": 1, + "properties": 1, + "received": 5, + "ASIAuthenticationDialog": 2, + "had": 1, + "TTViewController": 1, + "@private": 2, + "": 1, + "kFramePadding": 7, + "kElementSpacing": 3, + "kGroupSpacing": 5, + "PlaygroundViewController": 2, + "addHeader": 5, + "yOffset": 42, + "UILabel*": 2, + "label": 6, + "UILabel": 2, + "label.text": 2, + "label.font": 3, + "label.numberOfLines": 2, + "label.frame": 4, + "frame.origin.x": 3, + "frame.size.width": 4, + "sizeWithFont": 2, + "constrainedToSize": 2, + "CGSizeMake": 3, + "_scrollView": 9, + "label.frame.size.height": 2, + "addText": 5, + "UIScrollView": 1, + "_scrollView.autoresizingMask": 1, + "UIViewAutoresizingFlexibleHeight": 1, + "NSLocalizedString": 9, + "UIButton*": 1, + "button": 5, + "UIButton": 1, + "buttonWithType": 1, + "UIButtonTypeRoundedRect": 1, + "setTitle": 1, + "UIControlStateNormal": 1, + "addTarget": 1, + "action": 1, + "debugTestAction": 2, + "forControlEvents": 1, + "UIControlEventTouchUpInside": 1, + "sizeToFit": 1, + "button.frame": 2, + "TTCurrentLocale": 2, + "displayNameForKey": 1, + "NSLocaleIdentifier": 1, + "localeIdentifier": 1, + "TTPathForBundleResource": 1, + "TTPathForDocumentsResource": 1, + "md5Hash": 1, + "setContentSize": 1, + "viewDidUnload": 2, + "viewDidAppear": 2, + "flashScrollIndicators": 1, + "DEBUG": 1, + "TTDPRINTMETHODNAME": 1, + "TTDPRINT": 9, + "TTMAXLOGLEVEL": 1, + "TTDERROR": 1, + "TTLOGLEVEL_ERROR": 1, + "TTDWARNING": 1, + "TTLOGLEVEL_WARNING": 1, + "TTDINFO": 1, + "TTLOGLEVEL_INFO": 1, + "TTDCONDITIONLOG": 3, + "true": 9, + "false": 3, + "rand": 1, + "TTDASSERT": 2, + "": 1, + "": 1, + "Necessary": 1, + "background": 1, + "task": 1, + "support": 4, + "": 2, + "__IPHONE_3_2": 2, + "__MAC_10_5": 2, + "__MAC_10_6": 2, + "_ASIAuthenticationState": 1, + "ASIHTTPAuthenticationNeeded": 1, + "ASIProxyAuthenticationNeeded": 1, + "_ASINetworkErrorType": 1, + "ASIConnectionFailureErrorType": 2, + "ASIInternalErrorWhileApplyingCredentialsType": 1, + "ASICompressionError": 1, + "ASINetworkErrorType": 1, + "ASIHeadersBlock": 3, + "*responseHeaders": 2, + "ASISizeBlock": 5, + "ASIProgressBlock": 5, + "total": 4, + "ASIDataBlock": 3, + "NSOperation": 1, + "": 1, + "operation": 2, + "include": 1, + "GET": 1, + "params": 1, + "query": 1, + "where": 1, + "appropriate": 4, + "*url": 2, + "Will": 7, + "contain": 4, + "original": 2, + "making": 1, + "change": 2, + "*originalURL": 2, + "Temporarily": 1, + "stores": 1, + "to.": 2, + "again": 1, + "notified": 2, + "various": 1, + "ASIHTTPRequestDelegate": 1, + "": 1, + "Another": 1, + "also": 1, + "status": 4, + "updates": 2, + "Generally": 1, + "likely": 1, + "sessionCookies": 2, + "*requestCookies": 2, + "populated": 1, + "useCookiePersistence": 3, + "network": 4, + "present": 3, + "successfully": 4, + "presented": 2, + "duration": 1, + "clearSession": 2, + "allowCompressedResponse": 3, + "inform": 1, + "compressed": 2, + "automatically": 2, + "decompress": 1, + "gzipped": 7, + "responses.": 1, + "Default": 10, + "true.": 1, + "gzipped.": 1, + "false.": 1, + "You": 1, + "enable": 1, + "feature": 1, + "your": 2, + "webserver": 1, + "work.": 1, + "Tested": 1, + "apache": 1, + "only.": 1, + "downloaded": 6, + "*downloadDestinationPath": 2, + "files": 5, + "Once": 2, + "decompressed": 3, + "moved": 2, + "*temporaryFileDownloadPath": 2, + "containing": 1, + "inflated": 6, + "comes": 3, + "*temporaryUncompressedDataDownloadPath": 2, + "fails": 2, + "completes": 6, + "occurs": 1, + "Connection": 1, + "failure": 1, + "occurred": 1, + "inspect": 1, + "*error": 3, + "Username": 2, + "*username": 2, + "*password": 2, + "User": 1, + "Agent": 1, + "*userAgentString": 2, + "Domain": 2, + "*domain": 2, + "*proxyUsername": 2, + "*proxyPassword": 2, + "*proxyDomain": 2, + "Delegate": 2, + "displaying": 2, + "usually": 2, + "supply": 2, + "handle": 4, + "yourself": 4, + "": 2, + "Whether": 1, + "hassle": 1, + "adding": 1, + "apps": 1, + "shouldPresentProxyAuthenticationDialog": 2, + "*proxyCredentials": 2, + "Basic": 2, + "*proxyAuthenticationScheme": 2, + "Realm": 1, + "required": 2, + "eg": 2, + "OK": 1, + "found": 4, + "etc": 1, + "Description": 1, + "Size": 3, + "partially": 1, + "POST": 2, + "payload": 1, + "Last": 2, + "incrementing": 2, + "prevents": 1, + "inopportune": 1, + "moment": 1, + "Called": 6, + "starts.": 1, + "didStartSelector": 2, + "receives": 3, + "headers.": 1, + "didReceiveResponseHeadersSelector": 2, + "Location": 1, + "shouldRedirect": 3, + "then": 1, + "restart": 1, + "calling": 1, + "redirectToURL": 2, + "simply": 1, + "willRedirectSelector": 2, + "successfully.": 1, + "didFinishSelector": 2, + "fails.": 1, + "didFailSelector": 2, + "data.": 1, + "implement": 1, + "populate": 1, + "didReceiveDataSelector": 2, + "recording": 1, + "something": 1, + "last": 1, + "happened": 1, + "Number": 1, + "seconds": 2, + "wait": 1, + "timing": 1, + "starts": 2, + "*mainRequest": 2, + "indicator": 4, + "according": 2, + "how": 2, + "much": 2, + "Also": 1, + "see": 1, + "comments": 1, + "ASINetworkQueue.h": 1, + "ensure": 1, + "incremented": 4, + "Prevents": 1, + "largely": 1, + "internally": 3, + "reflect": 1, + "PUT": 1, + "operations": 1, + "sizes": 1, + "greater": 1, + "unless": 2, + "been": 1, + "Likely": 1, + "OS": 1, + "X": 1, + "Leopard": 1, + "x": 10, + "Text": 1, + "responses": 5, + "Content": 1, + "Type": 1, + "value.": 1, + "Defaults": 2, + "set.": 1, + "Tells": 1, + "delete": 1, + "partial": 2, + "downloads": 1, + "allows": 1, + "existing": 1, + "download.": 1, + "NO.": 1, + "allowResumeForFileDownloads": 2, + "Custom": 1, + "associated": 1, + "*userInfo": 2, + "tag": 2, + "defaults": 2, + "tell": 2, + "loop": 1, + "Incremented": 1, + "every": 3, + "redirects.": 1, + "reaches": 1, + "check": 1, + "secure": 1, + "certificate": 2, + "signed": 1, + "development": 1, + "DO": 1, + "NOT": 1, + "USE": 1, + "IN": 1, + "PRODUCTION": 1, + "*clientCertificates": 2, + "Details": 1, + "could": 1, + "best": 1, + "local": 1, + "*PACurl": 2, + "values": 3, + "above.": 1, + "No": 1, + "yet": 1, + "ASIHTTPRequests": 1, + "avoids": 1, + "extra": 1, + "round": 1, + "trip": 1, + "succeeded": 1, + "which": 1, + "efficient": 1, + "authenticated": 1, + "large": 1, + "bodies": 1, + "slower": 1, + "connections": 3, + "Set": 4, + "affects": 1, + "YES.": 1, + "Credentials": 1, + "never": 1, + "asks": 1, + "hasn": 1, + "doing": 1, + "anything": 1, + "expires": 1, + "yes": 1, + "alive": 1, + "Stores": 1, + "use.": 1, + "It": 2, + "expire": 2, + "connection.": 2, + "These": 1, + "determine": 1, + "whether": 1, + "match": 1, + "An": 2, + "determining": 1, + "available": 1, + "reference": 1, + "one.": 1, + "closed": 1, + "either": 1, + "another": 1, + "fires": 1, + "automatic": 1, + "standard": 1, + "follow": 1, + "behaviour": 2, + "most": 1, + "browsers": 1, + "shouldUseRFC2616RedirectBehaviour": 2, + "record": 1, + "ID": 1, + "uniquely": 1, + "identifies": 1, + "primarily": 1, + "debugging": 1, + "synchronous": 1, + "checks": 1, + "setDefaultCache": 2, + "configure": 2, + "ASICacheDelegate.h": 2, + "storage": 2, + "ASICacheStoragePolicy": 2, + "cacheStoragePolicy": 2, + "pulled": 1, + "secondsToCache": 3, + "interval": 1, + "expiring": 1, + "UIBackgroundTaskIdentifier": 1, + "helper": 1, + "inflate": 2, + "*dataDecompressor": 2, + "Controls": 1, + "without": 1, + "raw": 3, + "discarded": 1, + "normal": 1, + "contents": 1, + "into": 1, + "Setting": 1, + "especially": 1, + "useful": 1, + "users": 1, + "conjunction": 1, + "streaming": 1, + "allow": 1, + "behind": 1, + "scenes": 1, + "https": 1, + "webservers": 1, + "asynchronously": 1, + "reading": 1, + "URLs": 2, + "storing": 1, + "startSynchronous.": 1, + "Currently": 1, + "detection": 2, + "synchronously": 1, + "//block": 12, + "execute": 4, + "handling": 4, + "redirections": 1, + "setStartedBlock": 1, + "aStartedBlock": 1, + "setHeadersReceivedBlock": 1, + "aReceivedBlock": 2, + "setCompletionBlock": 1, + "aCompletionBlock": 1, + "setFailedBlock": 1, + "aFailedBlock": 1, + "setBytesReceivedBlock": 1, + "aBytesReceivedBlock": 1, + "setBytesSentBlock": 1, + "aBytesSentBlock": 1, + "setDownloadSizeIncrementedBlock": 1, + "aDownloadSizeIncrementedBlock": 1, + "setUploadSizeIncrementedBlock": 1, + "anUploadSizeIncrementedBlock": 1, + "setDataReceivedBlock": 1, + "setAuthenticationNeededBlock": 1, + "anAuthenticationBlock": 1, + "setProxyAuthenticationNeededBlock": 1, + "aProxyAuthenticationBlock": 1, + "setRequestRedirectedBlock": 1, + "aRedirectBlock": 1, + "HEADRequest": 1, + "upload/download": 1, + "updateProgressIndicators": 1, + "removeUploadProgressSoFar": 1, + "incrementDownloadSizeBy": 1, + "caller": 1, + "talking": 1, + "requestReceivedResponseHeaders": 1, + "newHeaders": 1, + "retryUsingNewConnection": 1, + "stringEncoding": 1, + "contentType": 1, + "stuff": 1, + "applyCredentials": 1, + "findCredentials": 1, + "retryUsingSuppliedCredentials": 1, + "cancelAuthentication": 1, + "attemptToApplyCredentialsAndResume": 1, + "attemptToApplyProxyCredentialsAndResume": 1, + "showProxyAuthenticationDialog": 1, + "showAuthenticationDialog": 1, + "theUsername": 1, + "thePassword": 1, + "handlers": 1, + "handleBytesAvailable": 1, + "handleStreamComplete": 1, + "handleStreamError": 1, + "cleanup": 1, + "removeTemporaryDownloadFile": 1, + "removeTemporaryUncompressedDownloadFile": 1, + "removeTemporaryUploadFile": 1, + "removeTemporaryCompressedUploadFile": 1, + "removeFileAtPath": 1, + "connectionID": 1, + "expirePersistentConnections": 1, + "setDefaultTimeOutSeconds": 1, + "newTimeOutSeconds": 1, + "client": 1, + "setClientCertificateIdentity": 1, + "anIdentity": 1, + "sessionProxyCredentialsStore": 1, + "sessionCredentialsStore": 1, + "storeProxyAuthenticationCredentialsInSessionStore": 1, + "removeProxyAuthenticationCredentialsFromSessionStore": 1, + "findSessionProxyAuthenticationCredentials": 1, + "savedCredentialsForHost": 1, + "savedCredentialsForProxy": 1, + "removeCredentialsForHost": 1, + "removeCredentialsForProxy": 1, + "setSessionCookies": 1, + "newSessionCookies": 1, + "addSessionCookie": 1, + "NSHTTPCookie": 1, + "newCookie": 1, + "agent": 2, + "defaultUserAgentString": 1, + "setDefaultUserAgentString": 1, + "mime": 1, + "mimeTypeForFileAtPath": 1, + "measurement": 1, + "throttling": 1, + "setMaxBandwidthPerSecond": 1, + "incrementBandwidthUsedInLastSecond": 1, + "setShouldThrottleBandwidthForWWAN": 1, + "throttle": 1, + "throttleBandwidthForWWANUsingLimit": 1, + "limit": 1, + "reachability": 1, + "isNetworkReachableViaWWAN": 1, + "maxUploadReadLength": 1, + "activity": 1, + "isNetworkInUse": 1, + "setShouldUpdateNetworkActivityIndicator": 1, + "shouldUpdate": 1, + "showNetworkActivityIndicator": 1, + "hideNetworkActivityIndicator": 1, + "miscellany": 1, + "base64forData": 1, + "theData": 1, + "expiryDateForRequest": 1, + "maxAge": 2, + "dateFromRFC1123String": 1, + "threading": 1, + "*proxyHost": 1, + "*proxyType": 1, + "*requestHeaders": 1, + "*requestCredentials": 1, + "*rawResponseData": 1, + "*requestMethod": 1, + "*postBody": 1, + "*postBodyFilePath": 1, + "didCreateTemporaryPostDataFile": 1, + "*authenticationScheme": 1, + "shouldPresentAuthenticationDialog": 1, + "haveBuiltRequestHeaders": 1, + "FooAppDelegate": 2, + "": 1, + "NSWindow": 2, + "*window": 2, + "IBOutlet": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "//#include": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "//#import": 1, + "": 1, + "": 1, + "": 1, + "__has_feature": 3, + "JK_ENABLE_CF_TRANSFER_OWNERSHIP_CALLBACKS": 2, + "#warning": 1, + "As": 1, + "v1.4": 1, + "longer": 2, + "required.": 1, + "option.": 1, + "__OBJC_GC__": 1, + "#error": 6, + "Objective": 2, + "C": 6, + "Garbage": 1, + "Collection": 1, + "objc_arc": 1, + "Automatic": 1, + "Reference": 1, + "Counting": 1, + "ARC": 1, + "xffffffffU": 1, + "fffffff": 1, + "ULLONG_MAX": 1, + "xffffffffffffffffULL": 1, + "LLONG_MIN": 1, + "fffffffffffffffLL": 1, + "LL": 1, + "requires": 4, + "types": 2, + "bits": 1, + "respectively.": 1, + "WORD_BIT": 1, + "LONG_BIT": 1, + "bit": 1, + "architectures.": 1, + "SIZE_MAX": 1, + "SSIZE_MAX": 1, + "JK_HASH_INIT": 1, + "UL": 138, + "JK_FAST_TRAILING_BYTES": 2, + "JK_CACHE_SLOTS_BITS": 2, + "JK_CACHE_SLOTS": 1, + "JK_CACHE_PROBES": 1, + "JK_INIT_CACHE_AGE": 1, + "JK_TOKENBUFFER_SIZE": 1, + "JK_STACK_OBJS": 1, + "JK_JSONBUFFER_SIZE": 1, + "JK_UTF8BUFFER_SIZE": 1, + "JK_ENCODE_CACHE_SLOTS": 1, + "JK_ATTRIBUTES": 15, + "attr": 3, + "...": 11, + "##__VA_ARGS__": 7, + "JK_EXPECTED": 4, + "cond": 12, + "expect": 3, + "__builtin_expect": 1, + "JK_EXPECT_T": 22, + "U": 2, + "JK_EXPECT_F": 14, + "JK_PREFETCH": 2, + "ptr": 3, + "__builtin_prefetch": 1, + "JK_STATIC_INLINE": 10, + "__inline__": 1, + "always_inline": 1, + "JK_ALIGNED": 1, + "aligned": 1, + "JK_UNUSED_ARG": 2, + "unused": 3, + "JK_WARN_UNUSED": 1, + "warn_unused_result": 9, + "JK_WARN_UNUSED_CONST": 1, + "JK_WARN_UNUSED_PURE": 1, + "pure": 2, + "JK_WARN_UNUSED_SENTINEL": 1, + "sentinel": 1, + "JK_NONNULL_ARGS": 1, + "nonnull": 6, + "JK_WARN_UNUSED_NONNULL_ARGS": 1, + "JK_WARN_UNUSED_CONST_NONNULL_ARGS": 1, + "JK_WARN_UNUSED_PURE_NONNULL_ARGS": 1, + "__GNUC_MINOR__": 3, + "JK_ALLOC_SIZE_NON_NULL_ARGS_WARN_UNUSED": 2, + "nn": 4, + "alloc_size": 1, + "JKArray": 14, + "JKDictionaryEnumerator": 4, + "JKDictionary": 22, + "JSONNumberStateStart": 1, + "JSONNumberStateFinished": 1, + "JSONNumberStateError": 1, + "JSONNumberStateWholeNumberStart": 1, + "JSONNumberStateWholeNumberMinus": 1, + "JSONNumberStateWholeNumberZero": 1, + "JSONNumberStateWholeNumber": 1, + "JSONNumberStatePeriod": 1, + "JSONNumberStateFractionalNumberStart": 1, + "JSONNumberStateFractionalNumber": 1, + "JSONNumberStateExponentStart": 1, + "JSONNumberStateExponentPlusMinus": 1, + "JSONNumberStateExponent": 1, + "JSONStringStateStart": 1, + "JSONStringStateParsing": 1, + "JSONStringStateFinished": 1, + "JSONStringStateError": 1, + "JSONStringStateEscape": 1, + "JSONStringStateEscapedUnicode1": 1, + "JSONStringStateEscapedUnicode2": 1, + "JSONStringStateEscapedUnicode3": 1, + "JSONStringStateEscapedUnicode4": 1, + "JSONStringStateEscapedUnicodeSurrogate1": 1, + "JSONStringStateEscapedUnicodeSurrogate2": 1, + "JSONStringStateEscapedUnicodeSurrogate3": 1, + "JSONStringStateEscapedUnicodeSurrogate4": 1, + "JSONStringStateEscapedNeedEscapeForSurrogate": 1, + "JSONStringStateEscapedNeedEscapedUForSurrogate": 1, + "JKParseAcceptValue": 2, + "JKParseAcceptComma": 2, + "JKParseAcceptEnd": 3, + "JKParseAcceptValueOrEnd": 1, + "JKParseAcceptCommaOrEnd": 1, + "JKClassUnknown": 1, + "JKClassString": 1, + "JKClassNumber": 1, + "JKClassArray": 1, + "JKClassDictionary": 1, + "JKClassNull": 1, + "JKManagedBufferOnStack": 1, + "JKManagedBufferOnHeap": 1, + "JKManagedBufferLocationMask": 1, + "JKManagedBufferLocationShift": 1, + "JKManagedBufferMustFree": 1, + "JKManagedBufferFlags": 1, + "JKObjectStackOnStack": 1, + "JKObjectStackOnHeap": 1, + "JKObjectStackLocationMask": 1, + "JKObjectStackLocationShift": 1, + "JKObjectStackMustFree": 1, + "JKObjectStackFlags": 1, + "JKTokenTypeInvalid": 1, + "JKTokenTypeNumber": 1, + "JKTokenTypeString": 1, + "JKTokenTypeObjectBegin": 1, + "JKTokenTypeObjectEnd": 1, + "JKTokenTypeArrayBegin": 1, + "JKTokenTypeArrayEnd": 1, + "JKTokenTypeSeparator": 1, + "JKTokenTypeComma": 1, + "JKTokenTypeTrue": 1, + "JKTokenTypeFalse": 1, + "JKTokenTypeNull": 1, + "JKTokenTypeWhiteSpace": 1, + "JKTokenType": 2, + "JKValueTypeNone": 1, + "JKValueTypeString": 1, + "JKValueTypeLongLong": 1, + "JKValueTypeUnsignedLongLong": 1, + "JKValueTypeDouble": 1, + "JKValueType": 1, + "JKEncodeOptionAsData": 1, + "JKEncodeOptionAsString": 1, + "JKEncodeOptionAsTypeMask": 1, + "JKEncodeOptionCollectionObj": 1, + "JKEncodeOptionStringObj": 1, + "JKEncodeOptionStringObjTrimQuotes": 1, + "JKEncodeOptionType": 2, + "JKHash": 4, + "JKTokenCacheItem": 2, + "JKTokenCache": 2, + "JKTokenValue": 2, + "JKParseToken": 2, + "JKPtrRange": 2, + "JKObjectStack": 5, + "JKBuffer": 2, + "JKConstBuffer": 2, + "JKConstPtrRange": 2, + "JKRange": 2, + "JKManagedBuffer": 5, + "JKFastClassLookup": 2, + "JKEncodeCache": 6, + "JKEncodeState": 11, + "JKObjCImpCache": 2, + "JKHashTableEntry": 21, + "serializeObject": 1, + "optionFlags": 1, + "encodeOption": 2, + "JKSERIALIZER_BLOCKS_PROTO": 1, + "releaseState": 1, + "keyHash": 21, + "uint32_t": 1, + "UTF32": 11, + "uint16_t": 1, + "UTF16": 1, + "uint8_t": 1, + "UTF8": 2, + "conversionOK": 1, + "sourceExhausted": 1, + "targetExhausted": 1, + "sourceIllegal": 1, + "ConversionResult": 1, + "UNI_REPLACEMENT_CHAR": 1, + "FFFD": 1, + "UNI_MAX_BMP": 1, + "FFFF": 3, + "UNI_MAX_UTF16": 1, + "UNI_MAX_UTF32": 1, + "FFFFFFF": 1, + "UNI_MAX_LEGAL_UTF32": 1, + "UNI_SUR_HIGH_START": 1, + "xD800": 1, + "UNI_SUR_HIGH_END": 1, + "xDBFF": 1, + "UNI_SUR_LOW_START": 1, + "xDC00": 1, + "UNI_SUR_LOW_END": 1, + "xDFFF": 1, + "trailingBytesForUTF8": 1, + "offsetsFromUTF8": 1, + "E2080UL": 1, + "C82080UL": 1, + "xFA082080UL": 1, + "firstByteMark": 1, + "xC0": 1, + "xE0": 1, + "xF0": 1, + "xF8": 1, + "xFC": 1, + "JK_AT_STRING_PTR": 1, + "stringBuffer.bytes.ptr": 2, + "JK_END_STRING_PTR": 1, + "stringBuffer.bytes.length": 1, + "*_JKArrayCreate": 2, + "*objects": 5, + "mutableCollection": 7, + "_JKArrayInsertObjectAtIndex": 3, + "newObject": 12, + "objectIndex": 48, + "_JKArrayReplaceObjectAtIndexWithObject": 3, + "_JKArrayRemoveObjectAtIndex": 3, + "_JKDictionaryCapacityForCount": 4, + "*_JKDictionaryCreate": 2, + "*keys": 2, + "*keyHashes": 2, + "*_JKDictionaryHashEntry": 2, + "*dictionary": 13, + "_JKDictionaryCapacity": 3, + "_JKDictionaryResizeIfNeccessary": 3, + "_JKDictionaryRemoveObjectWithEntry": 3, + "*entry": 4, + "_JKDictionaryAddObject": 4, + "*_JKDictionaryHashTableEntryForKey": 2, + "aKey": 13, + "_JSONDecoderCleanup": 1, + "*decoder": 1, + "_NSStringObjectFromJSONString": 1, + "*jsonString": 1, + "**error": 1, + "jk_managedBuffer_release": 1, + "*managedBuffer": 3, + "jk_managedBuffer_setToStackBuffer": 1, + "*ptr": 2, + "*jk_managedBuffer_resize": 1, + "newSize": 1, + "jk_objectStack_release": 1, + "*objectStack": 3, + "jk_objectStack_setToStackBuffer": 1, + "**objects": 1, + "**keys": 1, + "CFHashCode": 1, + "*cfHashes": 1, + "jk_objectStack_resize": 1, + "newCount": 1, + "jk_error": 1, + "*format": 7, + "jk_parse_string": 1, + "jk_parse_number": 1, + "jk_parse_is_newline": 1, + "*atCharacterPtr": 1, + "jk_parse_skip_newline": 1, + "jk_parse_skip_whitespace": 1, + "jk_parse_next_token": 1, + "jk_error_parse_accept_or3": 1, + "*or1String": 1, + "*or2String": 1, + "*or3String": 1, + "*jk_create_dictionary": 1, + "startingObjectIndex": 1, + "*jk_parse_dictionary": 1, + "*jk_parse_array": 1, + "*jk_object_for_token": 1, + "*jk_cachedObjects": 1, + "jk_cache_age": 1, + "jk_set_parsed_token": 1, + "advanceBy": 1, + "jk_encode_error": 1, + "*encodeState": 9, + "jk_encode_printf": 1, + "*cacheSlot": 4, + "startingAtIndex": 4, + "jk_encode_write": 1, + "jk_encode_writePrettyPrintWhiteSpace": 1, + "jk_encode_write1slow": 2, + "ssize_t": 2, + "depthChange": 2, + "jk_encode_write1fast": 2, + "jk_encode_writen": 1, + "jk_encode_object_hash": 1, + "*objectPtr": 2, + "jk_encode_updateCache": 1, + "jk_encode_add_atom_to_buffer": 1, + "jk_encode_write1": 1, + "es": 3, + "dc": 3, + "_jk_encode_prettyPrint": 1, + "jk_min": 1, + "b": 4, + "jk_max": 3, + "jk_calculateHash": 1, + "currentHash": 1, + "Class": 3, + "_JKArrayClass": 5, + "_JKArrayInstanceSize": 4, + "_JKDictionaryClass": 5, + "_JKDictionaryInstanceSize": 4, + "_jk_NSNumberClass": 2, + "NSNumberAllocImp": 2, + "_jk_NSNumberAllocImp": 2, + "NSNumberInitWithUnsignedLongLongImp": 2, + "_jk_NSNumberInitWithUnsignedLongLongImp": 2, + "jk_collectionClassLoadTimeInitialization": 2, + "constructor": 1, + "NSAutoreleasePool": 2, + "*pool": 1, + "Though": 1, + "technically": 1, + "run": 1, + "environment": 1, + "load": 1, + "initialization": 1, + "less": 1, + "ideal.": 1, + "objc_getClass": 2, + "class_getInstanceSize": 2, + "methodForSelector": 2, + "temp_NSNumber": 4, + "initWithUnsignedLongLong": 1, + "pool": 2, + "": 2, + "NSMutableCopying": 2, + "NSFastEnumeration": 2, + "capacity": 51, + "mutations": 20, + "allocWithZone": 4, + "NSZone": 4, + "zone": 8, + "raise": 18, + "NSInvalidArgumentException": 6, + "format": 18, + "NSStringFromClass": 18, + "NSStringFromSelector": 16, + "_cmd": 16, + "NSCParameterAssert": 19, + "objects": 58, + "Directly": 2, + "allocate": 2, + "instance": 2, + "calloc.": 2, + "isa": 2, + "malloc": 1, + "memcpy": 2, + "*newObjects": 1, + "newObjects": 2, + "realloc": 1, + "NSMallocException": 2, + "memset": 1, + "memmove": 2, + "atObject": 12, + "getObjects": 2, + "objectsPtr": 3, + "NSRange": 1, + "NSMaxRange": 4, + "NSRangeException": 6, + "range.location": 2, + "range.length": 1, + "countByEnumeratingWithState": 2, + "NSFastEnumerationState": 2, + "stackbuf": 8, + "len": 6, + "mutationsPtr": 2, + "itemsPtr": 2, + "enumeratedCount": 8, + "insertObject": 1, + "anObject": 16, + "NSInternalInconsistencyException": 4, + "__clang_analyzer__": 3, + "Stupid": 2, + "clang": 3, + "analyzer...": 2, + "Issue": 2, + "#19.": 2, + "removeObjectAtIndex": 1, + "replaceObjectAtIndex": 1, + "copyWithZone": 1, + "initWithObjects": 2, + "mutableCopyWithZone": 1, + "NSEnumerator": 2, + "collection": 11, + "nextObject": 6, + "initWithJKDictionary": 3, + "initDictionary": 4, + "allObjects": 2, + "arrayWithObjects": 1, + "_JKDictionaryHashEntry": 2, + "returnObject": 3, + "entry": 41, + ".key": 11, + "jk_dictionaryCapacities": 4, + "mid": 5, + "tableSize": 2, + "lround": 1, + "floor": 1, + "capacityForCount": 4, + "resize": 3, + "oldCapacity": 2, + "NS_BLOCK_ASSERTIONS": 1, + "oldCount": 2, + "*oldEntry": 1, + "idx": 33, + "oldEntry": 9, + ".keyHash": 2, + ".object": 7, + "keys": 5, + "keyHashes": 2, + "atEntry": 45, + "removeIdx": 3, + "entryIdx": 4, + "*atEntry": 3, + "addKeyEntry": 2, + "addIdx": 5, + "*atAddEntry": 1, + "atAddEntry": 6, + "keyEntry": 4, + "CFEqual": 2, + "CFHash": 1, + "would": 2, + "now.": 1, + "entryForKey": 3, + "_JKDictionaryHashTableEntryForKey": 1, + "andKeys": 1, + "arrayIdx": 5, + "keyEnumerator": 1, + "Why": 1, + "earth": 1, + "complain": 1, + "doesn": 1, + "Internal": 2, + "Unable": 2, + "temporary": 2, + "buffer.": 2, + "line": 2, + "#": 2, + "ld": 2, + "Invalid": 1, + "character": 1, + "x.": 1, + "F": 1, + ".": 2, + "e": 1, + "Unexpected": 1, + "token": 1, + "wanted": 1, + "Expected": 3, + "UIScrollView*": 1, + "NSData*": 1, + "jsonText": 1, + "window": 1, + "applicationDidFinishLaunching": 1, + "aNotification": 1 + }, + "E": { + "def": 24, + "makeVehicle": 3, + "(": 65, + "self": 1, + ")": 64, + "{": 57, + "vehicle": 2, + "to": 27, + "milesTillEmpty": 1, + "return": 19, + "self.milesPerGallon": 1, + "*": 1, + "self.getFuelRemaining": 1, + "}": 57, + "makeCar": 4, + "var": 6, + "fuelRemaining": 4, + "car": 8, + "extends": 2, + "milesPerGallon": 2, + "getFuelRemaining": 2, + "makeJet": 1, + "jet": 3, + "println": 2, + "The": 2, + "can": 1, + "go": 1, + "car.milesTillEmpty": 1, + "miles.": 1, + "name": 4, + "x": 3, + "y": 3, + "moveTo": 1, + "newX": 2, + "newY": 2, + "getX": 1, + "getY": 1, + "setName": 1, + "newName": 2, + "getName": 1, + "sportsCar": 1, + "sportsCar.moveTo": 1, + "sportsCar.getName": 1, + "is": 1, + "at": 1, + "X": 1, + "location": 1, + "sportsCar.getX": 1, + "makeVOCPair": 1, + "brandName": 3, + "String": 1, + "near": 6, + "myTempContents": 6, + "none": 2, + "brand": 5, + "__printOn": 4, + "out": 4, + "TextWriter": 4, + "void": 5, + "out.print": 4, + "ProveAuth": 2, + "<$brandName>": 3, + "prover": 1, + "getBrand": 4, + "coerce": 2, + "specimen": 2, + "optEjector": 3, + "sealedBox": 2, + "offerContent": 1, + "CheckAuth": 2, + "checker": 3, + "template": 1, + "match": 4, + "[": 10, + "get": 2, + "authList": 2, + "any": 2, + "]": 10, + "specimenBox": 2, + "null": 1, + "if": 2, + "specimenBox.__respondsTo": 1, + "specimenBox.offerContent": 1, + "else": 1, + "for": 3, + "auth": 3, + "in": 1, + "throw.eject": 1, + "Unmatched": 1, + "authorization": 1, + "__respondsTo": 2, + "_": 3, + "true": 1, + "false": 1, + "__getAllegedType": 1, + "null.__getAllegedType": 1, + "pragma.syntax": 1, + "send": 1, + "message": 4, + "when": 2, + "friend": 4, + "<-receive(message))>": 1, + "chatUI.showMessage": 4, + "catch": 2, + "prob": 2, + "receive": 1, + "receiveFriend": 2, + "friendRcvr": 2, + "bind": 2, + "save": 1, + "file": 3, + "file.setText": 1, + "makeURIFromObject": 1, + "chatController": 2, + "load": 1, + "getObjectFromURI": 1, + "file.getText": 1, + "<": 1, + "-": 2, + "tempVow": 2, + "#...use": 1, + "#....": 1, + "report": 1, + "problem": 1, + "finally": 1, + "#....log": 1, + "event": 1, + "#File": 1, + "objects": 1, + "hardwired": 1, + "files": 1, + "file1": 1, + "": 1, + "file2": 1, + "": 1, + "#Using": 2, + "a": 4, + "variable": 1, + "filePath": 2, + "file3": 1, + "": 1, + "single": 1, + "character": 1, + "specify": 1, + "Windows": 1, + "drive": 1, + "file4": 1, + "": 1, + "file5": 1, + "": 1, + "file6": 1, + "": 1 + }, + "YAML": { + "gem": 1, + "-": 25, + "local": 1, + "gen": 1, + "rdoc": 2, + "run": 1, + "tests": 1, + "inline": 1, + "source": 1, + "line": 1, + "numbers": 1, + "gempath": 1, + "/usr/local/rubygems": 1, + "/home/gavin/.rubygems": 1, + "http_interactions": 1, + "request": 1, + "method": 1, + "get": 1, + "uri": 1, + "http": 1, + "//example.com/": 1, + "body": 3, + "headers": 2, + "{": 1, + "}": 1, + "response": 2, + "status": 1, + "code": 1, + "message": 1, + "OK": 1, + "Content": 2, + "Type": 1, + "text/html": 1, + ";": 1, + "charset": 1, + "utf": 1, + "Length": 1, + "This": 1, + "is": 1, + "the": 1, + "http_version": 1, + "recorded_at": 1, + "Tue": 1, + "Nov": 1, + "GMT": 1, + "recorded_with": 1, + "VCR": 1 + }, + "Visual Basic": { + "VERSION": 1, + "CLASS": 1, + "BEGIN": 1, + "MultiUse": 1, + "-": 9, + "NotPersistable": 1, + "DataBindingBehavior": 1, + "vbNone": 1, + "MTSTransactionMode": 1, + "*************************************************************************************************************************************************************************************************************************************************": 2, + "Copyright": 1, + "(": 20, + "c": 1, + ")": 20, + "David": 1, + "Briant": 1, + "All": 1, + "rights": 1, + "reserved": 1, + "Option": 1, + "Explicit": 1, + "Private": 25, + "Declare": 3, + "Function": 5, + "apiSetProp": 4, + "Lib": 3, + "Alias": 3, + "ByVal": 6, + "hwnd": 2, + "As": 34, + "Long": 10, + "lpString": 2, + "String": 13, + "hData": 1, + "apiGlobalAddAtom": 3, + "apiSetForegroundWindow": 1, + "myMouseEventsForm": 5, + "fMouseEventsForm": 2, + "WithEvents": 3, + "myAST": 3, + "cTP_AdvSysTray": 2, + "Attribute": 3, + "myAST.VB_VarHelpID": 1, + "myClassName": 2, + "myWindowName": 2, + "Const": 9, + "TEN_MILLION": 1, + "Single": 1, + "myListener": 1, + "VLMessaging.VLMMMFileListener": 1, + "myListener.VB_VarHelpID": 1, + "myMMFileTransports": 2, + "VLMessaging.VLMMMFileTransports": 1, + "myMMFileTransports.VB_VarHelpID": 1, + "myMachineID": 1, + "myRouterSeed": 1, + "myRouterIDsByMMTransportID": 1, + "New": 6, + "Dictionary": 3, + "myMMTransportIDsByRouterID": 2, + "myDirectoryEntriesByIDString": 1, + "GET_ROUTER_ID": 1, + "GET_ROUTER_ID_REPLY": 1, + "REGISTER_SERVICE": 1, + "REGISTER_SERVICE_REPLY": 1, + "UNREGISTER_SERVICE": 1, + "UNREGISTER_SERVICE_REPLY": 1, + "GET_SERVICES": 1, + "GET_SERVICES_REPLY": 1, + "Initialize": 1, + "/": 1, + "Release": 1, + "hide": 1, + "us": 1, + "from": 2, + "the": 7, + "Applications": 1, + "list": 1, + "in": 1, + "Windows": 1, + "Task": 1, + "Manager": 1, + "App.TaskVisible": 1, + "False": 1, + "create": 1, + "tray": 1, + "icon": 1, + "Set": 5, + "myAST.create": 1, + "myMouseEventsForm.icon": 1, + "make": 1, + "myself": 1, + "easily": 2, + "found": 1, + "myMouseEventsForm.hwnd": 3, + "End": 11, + "Sub": 9, + "shutdown": 1, + "myAST.destroy": 1, + "Nothing": 2, + "Unload": 1, + "myAST_RButtonUp": 1, + "Dim": 1, + "epm": 1, + "cTP_EasyPopupMenu": 1, + "menuItemSelected": 1, + "epm.addMenuItem": 3, + "MF_STRING": 3, + "epm.addSubmenuItem": 2, + "MF_SEPARATOR": 1, + "MF_CHECKED": 1, + "route": 2, + "to": 4, + "a": 4, + "remote": 1, + "machine": 1, + "Else": 1, + "for": 4, + "moment": 1, + "just": 1, + "between": 1, + "MMFileTransports": 1, + "If": 4, + "myMMTransportIDsByRouterID.Exists": 1, + "message.toAddress.RouterID": 2, + "Then": 1, + "transport": 1, + "transport.send": 1, + "messageToBytes": 1, + "message": 1, + "directoryEntryIDString": 2, + "serviceType": 2, + "address": 1, + "VLMAddress": 1, + "&": 7, + "address.MachineID": 1, + "address.RouterID": 1, + "address.AgentID": 1, + "myMMFileTransports_disconnecting": 1, + "id": 1, + "oReceived": 2, + "Boolean": 1, + "True": 1, + "Module": 2, + "Module1": 1, + "Main": 1, + "Console.Out.WriteLine": 2, + "@Code": 1, + "ViewData": 1, + "Code": 1, + "@section": 1, + "featured": 1, + "
": 1, + "class=": 7, + "
": 1, + "
": 1, + "

": 1, + "@ViewData": 2, + ".": 3, + "

": 1, + "

": 1, + "

": 1, + "
": 1, + "

": 1, + "To": 1, + "learn": 1, + "more": 4, + "about": 2, + "ASP.NET": 5, + "MVC": 4, + "visit": 2, + "": 5, + "href=": 5, + "title=": 2, + "http": 1, + "//asp.net/mvc": 1, + "": 5, + "The": 1, + "page": 1, + "features": 3, + "": 1, + "videos": 1, + "tutorials": 1, + "and": 6, + "samples": 1, + "": 1, + "help": 1, + "you": 4, + "get": 1, + "most": 1, + "MVC.": 1, + "have": 1, + "any": 1, + "questions": 1, + "our": 1, + "forums": 1, + "

": 1, + "
": 1, + "
": 1, + "Section": 1, + "

": 1, + "We": 1, + "suggest": 1, + "following": 1, + "

": 1, + "
    ": 1, + "
  1. ": 3, + "
    ": 3, + "Getting": 1, + "Started": 1, + "
    ": 3, + "gives": 2, + "powerful": 1, + "patterns": 1, + "based": 1, + "way": 1, + "build": 1, + "dynamic": 1, + "websites": 1, + "that": 5, + "enables": 1, + "clean": 1, + "separation": 1, + "of": 2, + "concerns": 1, + "full": 1, + "control": 1, + "over": 1, + "markup": 1, + "enjoyable": 1, + "agile": 1, + "development.": 1, + "includes": 1, + "many": 1, + "enable": 1, + "fast": 1, + "TDD": 1, + "friendly": 1, + "development": 1, + "creating": 1, + "sophisticated": 1, + "applications": 1, + "use": 1, + "latest": 1, + "web": 2, + "standards.": 1, + "Learn": 3, + "
  2. ": 3, + "Add": 1, + "NuGet": 2, + "packages": 1, + "jump": 1, + "start": 1, + "your": 2, + "coding": 1, + "makes": 1, + "it": 1, + "easy": 1, + "install": 1, + "update": 1, + "free": 1, + "libraries": 1, + "tools.": 1, + "Find": 1, + "Web": 1, + "Hosting": 1, + "You": 1, + "can": 1, + "find": 1, + "hosting": 1, + "company": 1, + "offers": 1, + "right": 1, + "mix": 1, + "price": 1, + "applications.": 1, + "
": 1 + }, + "Propeller Spin": { + "***************************************": 12, + "*": 143, + "TV": 9, + "Text": 1, + "x13": 2, + "v1.0": 4, + "Author": 8, + "Chip": 7, + "Gracey": 7, + "Copyright": 10, + "(": 356, + "c": 33, + ")": 356, + "Parallax": 10, + "Inc.": 8, + "See": 10, + "end": 12, + "of": 108, + "file": 9, + "for": 70, + "terms": 9, + "use.": 9, + "CON": 4, + "cols": 5, + "rows": 4, + "screensize": 4, + "lastrow": 2, + "-": 486, + "tv_count": 2, + "VAR": 10, + "long": 122, + "col": 9, + "row": 4, + "color": 39, + "flag": 5, + "word": 212, + "screen": 13, + "[": 35, + "]": 34, + "colors": 18, + "tv_status": 4, + "/non": 4, + "off/on": 3, + "write": 36, + "only": 63, + "tv_pins": 5, + "%": 162, + "tccip": 3, + "tile": 41, + "chroma": 19, + "interlace": 20, + "ntsc/pal": 3, + "tv_screen": 5, + "pointer": 14, + "to": 191, + "longs": 15, + "tv_ht": 5, + "vertical": 29, + "tiles": 19, + "tv_hx": 5, + "expansion": 8, + "tv_ho": 5, + "offset": 14, + "tv_broadcast": 4, + "aural": 13, + "fm": 6, + "cog": 39, + "OBJ": 2, + "tv": 2, + "PUB": 63, + "start": 16, + "basepin": 3, + "okay": 11, + "Start": 6, + "terminal": 4, + "starts": 4, + "a": 72, + "returns": 6, + "false": 7, + "if": 53, + "no": 7, + "available": 4, + "setcolors": 2, + "@palette": 1, + "out": 24, + "longmove": 2, + "@tv_status": 3, + "@tv_params": 1, + "&": 21, + "<<": 70, + "|": 22, + "@screen": 3, + "tv_colors": 2, + "@colors": 2, + "tv.start": 1, + "stop": 9, + "Stop": 6, + "frees": 6, + "tv.stop": 2, + "str": 3, + "stringptr": 3, + "Print": 15, + "zero": 10, + "terminated": 4, + "string": 8, + "repeat": 18, + "strsize": 2, + "byte": 27, + "+": 759, + "dec": 3, + "value": 51, + "i": 24, + "decimal": 5, + "number": 27, + "<": 14, + "_000_000_000": 2, + "/": 27, + "//": 4, + "result": 6, + "elseif": 2, + "or": 43, + "hex": 3, + "digits": 23, + "hexadecimal": 4, + "lookupz": 2, + "F": 18, + "..": 4, + "bin": 3, + "binary": 4, + "k": 1, + "Output": 1, + "character": 6, + "clear": 5, + "home": 4, + "backspace": 1, + "tab": 3, + "spaces": 1, + "per": 4, + "A": 21, + "set": 42, + "X": 4, + "position": 9, + "follows": 4, + "B": 15, + "Y": 2, + "C": 11, + "D": 18, + "return": 15, + "others": 1, + "printable": 1, + "characters": 1, + "case": 5, + "wordfill": 2, + "print": 2, + "while": 5, + "A..": 1, + "newline": 3, + "other": 1, + "colorptr": 2, + "fore": 3, + "back": 8, + "Override": 1, + "default": 1, + "palette": 2, + "must": 18, + "point": 21, + "list": 1, + "up": 4, + "arranged": 3, + "as": 8, + "scroll": 1, + "lines": 24, + "status": 15, + "pins": 26, + "hc": 1, + "hx": 5, + "ho": 1, + "broadcast": 19, + "white": 2, + "dark": 2, + "blue": 3, + "BB": 1, + "yellow": 1, + "brown": 1, + "cyan": 3, + "E": 7, + "red": 2, + "pink": 1, + "{": 26, + "TERMS": 9, + "OF": 49, + "USE": 19, + "MIT": 9, + "License": 9, + "Permission": 9, + "is": 51, + "hereby": 9, + "granted": 9, + "free": 10, + "charge": 10, + "any": 15, + "person": 9, + "obtaining": 9, + "copy": 21, + "this": 26, + "software": 9, + "and": 95, + "associated": 11, + "documentation": 9, + "files": 9, + "the": 136, + "deal": 9, + "in": 53, + "Software": 28, + "without": 19, + "restriction": 9, + "including": 9, + "limitation": 9, + "rights": 9, + "use": 19, + "modify": 9, + "merge": 9, + "publish": 9, + "distribute": 9, + "sublicense": 9, + "and/or": 9, + "sell": 9, + "copies": 18, + "permit": 9, + "persons": 9, + "whom": 9, + "furnished": 9, + "do": 26, + "so": 11, + "subject": 9, + "following": 9, + "conditions": 9, + "The": 17, + "above": 11, + "copyright": 9, + "notice": 18, + "permission": 9, + "shall": 9, + "be": 46, + "included": 9, + "all": 14, + "substantial": 9, + "portions": 9, + "Software.": 9, + "THE": 59, + "SOFTWARE": 19, + "IS": 10, + "PROVIDED": 9, + "WITHOUT": 10, + "WARRANTY": 10, + "ANY": 20, + "KIND": 10, + "EXPRESS": 10, + "OR": 70, + "IMPLIED": 10, + "INCLUDING": 10, + "BUT": 10, + "NOT": 11, + "LIMITED": 10, + "TO": 10, + "WARRANTIES": 10, + "MERCHANTABILITY": 10, + "FITNESS": 10, + "FOR": 20, + "PARTICULAR": 10, + "PURPOSE": 10, + "AND": 10, + "NONINFRINGEMENT.": 10, + "IN": 40, + "NO": 10, + "EVENT": 10, + "SHALL": 10, + "AUTHORS": 10, + "COPYRIGHT": 10, + "HOLDERS": 10, + "BE": 10, + "LIABLE": 10, + "CLAIM": 10, + "DAMAGES": 10, + "OTHER": 20, + "LIABILITY": 10, + "WHETHER": 10, + "AN": 10, + "ACTION": 10, + "CONTRACT": 10, + "TORT": 10, + "OTHERWISE": 10, + "ARISING": 10, + "FROM": 10, + "OUT": 10, + "CONNECTION": 10, + "WITH": 10, + "DEALINGS": 10, + "SOFTWARE.": 10, + "}": 26, + "Terminal": 1, + "v1.1": 8, + "REVISION": 2, + "HISTORY": 2, + "Updated": 4, + "/15/2006": 2, + "actual": 4, + "pin": 18, + "instead": 1, + "group": 7, + "method": 2, + "minimum": 2, + "x_scale": 4, + "x_spacing": 4, + "normal": 1, + "x_chr": 2, + "y_chr": 5, + "y_scale": 3, + "y_spacing": 3, + "y_offset": 2, + "x_limit": 2, + "x_screen": 1, + "y_limit": 3, + "y_screen": 4, + "y_max": 3, + "y_screen_bytes": 2, + "y_scroll": 2, + "y_scroll_longs": 4, + "y_clear": 2, + "y_clear_longs": 2, + "paramcount": 1, + "x": 112, + "y": 80, + "bitmap_base": 7, + "ccinp": 1, + "swap": 2, + "tv_hc": 1, + "cells": 1, + "cell": 1, + "bitmap": 15, + "x_tiles": 9, + "y_tiles": 9, + "init": 2, + "@bitmap": 1, + "FC0": 1, + "from": 21, + "graphics": 4, + "gr.start": 2, + "gr.setup": 2, + "gr.textmode": 1, + "gr.width": 1, + "width": 9, + "gr.stop": 1, + "schemes": 1, + "gr.color": 1, + "gr.text": 1, + "@c": 1, + "gr.finish": 2, + "string_ptr": 6, + "PRI": 1, + "longfill": 2, + "DAT": 7, + "tvparams": 1, + "enable": 5, + "tvparams_pins": 1, + "_0101": 1, + "mode": 7, + "vc": 1, + "vx": 2, + "vo": 1, + "_250_000": 2, + "auralcog": 1, + "color_schemes": 1, + "BC_6C_05_02": 1, + "E_0D_0C_0A": 1, + "E_6D_6C_6A": 1, + "BE_BD_BC_BA": 1, + "*****************************************": 4, + "Inductive": 1, + "Sensor": 1, + "Demo": 1, + "Beau": 2, + "Schwabe": 2, + "Test": 2, + "Circuit": 1, + "pF": 1, + "K": 4, + "M": 1, + "FPin": 2, + "SDF": 1, + "sigma": 3, + "delta": 10, + "feedback": 2, + "SDI": 1, + "input": 2, + "L": 5, + "GND": 4, + "Coils": 1, + "Wire": 1, + "used": 9, + "was": 2, + "GREEN": 2, + "about": 4, + "gauge": 1, + "T": 5, + "Coke": 3, + "Can": 3, + "form": 7, + "MHz": 16, + "BIC": 1, + "pen": 1, + "How": 1, + "does": 2, + "it": 8, + "work": 2, + "Note": 1, + "reported": 2, + "resonate": 5, + "frequency": 18, + "LC": 8, + "frequency.": 2, + "Instead": 1, + "where": 2, + "voltage": 5, + "produced": 1, + "circuit": 5, + "clipped.": 1, + "In": 2, + "example": 3, + "below": 4, + "When": 1, + "you": 5, + "apply": 1, + "small": 1, + "at": 26, + "specific": 1, + "an": 12, + "that": 10, + "near": 1, + "not": 6, + "uncommon": 1, + "measure": 1, + "s": 16, + "times": 3, + "amount": 1, + "are": 18, + "applying": 1, + "circuit.": 1, + "passes": 3, + "through": 1, + "diode": 2, + "which": 16, + "then": 5, + "basically": 1, + "feeds": 1, + "divide": 3, + "by": 17, + "divider": 1, + "...So": 1, + "order": 1, + "see": 2, + "ADC": 2, + "sweep": 2, + "output": 11, + "needs": 1, + "generate": 1, + "Volts": 1, + "ground.": 1, + "V": 7, + "drop": 1, + "across": 1, + "since": 1, + "sensitive": 1, + "works": 1, "after": 2, - "returning": 2, + "divider.": 1, + "typical": 1, + "magnitude": 1, + "plot": 17, + "applied": 2, + "might": 1, + "look": 2, + "something": 1, + "like": 4, + "*****": 4, + "...With": 1, + "pattern": 2, + "looks": 1, + "more": 90, + "X****": 1, + "...The": 1, + "denotes": 1, + "location": 1, + "reason": 1, + "slightly": 1, + "off": 8, + "two": 6, + "reasons": 1, + "really.": 1, + "lazy": 1, + "I": 1, + "didn": 1, + "same": 7, + "acts": 1, + "dead": 1, + "short.": 1, + "situation": 1, + "exactly": 1, + "great": 1, + "Propeller": 3, + "I/O": 3, + "setup": 3, + "FindResonateFrequency": 1, + "DisplayInductorValue": 2, + "Freq.Synth": 1, + "FValue": 1, + "ADC.SigmaDelta": 1, + "@FTemp": 1, + "gr.clear": 1, + "display": 23, + "gr.copy": 2, + "display_base": 2, + "****************************************": 4, + "Graphics": 3, + "Option": 2, + "*********************************************": 2, + "P": 6, + "Frequency": 1, + "LowerFrequency": 2, + "*100/": 1, + "UpperFrequency": 1, + "gr.colorwidth": 4, + "gr.plot": 3, + "gr.line": 3, + "FTemp/1024": 1, + "Finish": 1, + "Debug_Lcd": 1, + "v1.2": 2, + "Authors": 1, + "Jon": 2, + "Williams": 2, + "Jeff": 2, + "Martin": 2, + "Debugging": 1, + "wrapper": 1, + "Serial_Lcd": 1, + "object": 7, + "March": 1, + "conform": 1, + "initialization": 2, + "standards.": 1, + "April": 1, + "consistency.": 1, + "lcd": 2, + "conversion": 1, + "baud": 2, + "Initializes": 1, + "serial": 1, + "LCD": 4, + "true": 6, + "parameters": 19, + "lcd.init": 1, + "finalize": 1, + "Finalizes": 1, + "floats": 1, + "lcd.finalize": 1, + "putc": 1, + "txbyte": 2, + "Send": 1, + "lcd.putc": 1, + "strAddr": 2, + "lcd.str": 8, + "signed": 4, + "num.dec": 1, + "decf": 1, + "Prints": 2, + "space": 1, + "padded": 2, + "fixed": 1, + "field": 4, + "num.decf": 1, + "decx": 1, + "negative": 2, + "num.decx": 1, + "num.hex": 1, + "ihex": 1, + "indicated": 2, + "num.ihex": 1, + "num.bin": 1, + "ibin": 1, + "num.ibin": 1, + "cls": 1, + "Clears": 2, + "moves": 1, + "cursor": 9, + "lcd.cls": 1, + "Moves": 2, + "lcd.home": 1, + "gotoxy": 1, + "line": 33, + "col/line": 1, + "lcd.gotoxy": 1, + "clrln": 1, + "lcd.clrln": 1, + "type": 4, + "Selects": 1, + "blink": 4, + "on": 12, + "lcd.cursor": 1, + "Controls": 1, + "visibility": 1, + ";": 2, + "hide": 1, + "contents": 3, + "clearing": 1, + "lcd.displayOn": 1, + "else": 3, + "lcd.displayOff": 1, + "custom": 2, + "char": 2, + "chrDataAddr": 3, + "Installs": 1, + "map": 1, + "address": 16, + "definition": 9, + "array": 1, + "lcd.custom": 1, + "backLight": 1, + "Enable": 1, + "disable": 7, + "backlight": 1, + "affects": 1, + "backlit": 1, + "models": 1, + "lcd.backLight": 1, + "VGA": 8, + "Driver": 4, + "May": 2, + "pixel": 40, + "size": 5, + "can": 4, + "now": 3, + "efficient": 2, + "vga_mode": 3, + "colortable": 7, + "inside": 2, + "vgaptr": 3, + "driver": 17, + "cognew": 4, + "@entry": 3, + "cogstop": 3, + "Assembly": 2, + "language": 2, + "Entry": 2, + "reset": 14, + "tasks": 6, + "mov": 154, + "#8": 14, + "Superfield": 2, + "hv": 5, + "#0": 20, + "get": 30, + "into": 19, + "nz": 3, + "wrlong": 6, + "visible": 7, + "par": 20, + "porch": 9, + "vb": 2, + "movd": 10, + "bcolor": 3, + "#colortable": 2, + "call": 44, + "#blank_line": 3, + "nobl": 1, + "_screen": 3, + "_vx": 1, + "skip": 5, + "if_nz": 18, + "tjz": 8, + "#": 97, + "hb": 2, + "nobp": 1, + "horizontal": 21, + "vscl": 12, + "read": 29, + "add": 92, + "pixels": 14, + "rdlong": 16, + "#2": 15, + "pass": 5, + "video": 7, + "djnz": 24, + "repoint": 2, + "first": 9, + "hf": 2, + "nofp": 1, + "hsync": 5, + "#blank_hsync": 1, + "expand": 3, + "ror": 4, + "linerot": 5, + "next": 16, + "wc": 57, + "front": 4, + "vf": 1, + "nofl": 1, + "xor": 8, + "#1": 47, + "wz": 21, + "unless": 2, + "field1": 4, + "invisible": 8, + "taskptr": 3, + "#tasks": 1, + "before": 1, + "_vs": 2, + "except": 1, + "last": 6, + "#blank_vsync": 1, + "jmp": 24, + "#field": 1, + "new": 6, + "superfield": 1, + "blank_vsync": 1, + "cmp": 16, + "blank": 2, + "vsync": 4, + "if_nc": 15, + "h2": 2, + "if_c_and_nz": 1, + "if_c": 37, + "waitvid": 3, + "task": 2, + "section": 4, + "z": 4, + "undisturbed": 2, + "blank_hsync": 1, + "_hf": 1, + "invisble": 1, + "sync": 10, + "_hb": 1, + "#hv": 1, + "blank_hsync_ret": 1, + "blank_line_ret": 1, + "blank_vsync_ret": 1, + "ret": 17, + "t1": 139, + "_status": 1, + "t2": 90, + "#paramcount": 1, + "load": 3, + "#4": 8, + "d0": 11, + "directions": 1, + "shl": 21, + "_pins": 4, + "_enable": 2, + "#disabled": 2, + "break": 6, + "later": 6, + "min": 4, + "_rate": 3, + "pllmin": 1, + "_011": 1, + "adjust": 4, + "rate": 6, + "within": 5, + "shr": 24, + "hvbase": 5, + "frqa": 3, + "make": 16, + "muxnc": 5, + "vmask": 1, + "test": 38, + "_mode": 7, + "hmask": 1, + "_hx": 4, + "_vt": 3, + "consider": 2, + "muxc": 5, + "lineadd": 4, + "lineinc": 3, + "movi": 3, + "vcfg": 2, + "_000": 5, + "/160": 2, + "#13": 3, + "loaded": 3, + "#9": 2, + "FC": 2, + "_colors": 2, + "colormask": 1, + "andn": 7, + "d6": 3, + "loop": 14, + "keep": 2, + "loading": 2, + "multiply": 8, + "multiply_ret": 2, + "Disabled": 2, + "nap": 5, + "ms": 4, + "try": 2, + "again": 2, + "ctra": 5, + "disabled": 3, + "#3": 7, + "cnt": 2, + "waitcnt": 3, + "#entry": 1, + "Initialized": 1, + "data": 47, + "pll": 5, + "lowest": 1, + "pllmax": 1, + "_000_000": 6, + "*16": 1, + "vco": 3, + "max": 6, + "m4": 1, + "Uninitialized": 3, + "taskret": 4, + "res": 89, + "Parameter": 4, + "buffer": 4, + "tihv": 1, + "@long": 2, + "_ht": 2, + "_ho": 2, + "_hd": 1, + "_hs": 1, + "_vd": 1, + "fit": 2, + "underneath": 1, + "BF": 1, + "___": 1, + "/1/2": 1, + "off/visible/invisible": 1, + "vga_enable": 3, + "pppttt": 1, + "words": 5, + "vga_colors": 2, + "vga_vt": 6, + "vga_vx": 4, + "vga_vo": 4, + "ticks": 11, + "vga_hf": 2, + "vga_hb": 2, + "vga_vf": 2, + "vga_vb": 2, + "tick": 2, + "Hz": 5, + "preceding": 2, + "may": 6, + "copied": 2, + "your": 2, + "code.": 2, + "After": 2, + "setting": 2, + "variables": 3, + "@vga_status": 1, + "driver.": 3, + "All": 2, + "reloaded": 2, + "each": 11, + "superframe": 2, + "allowing": 2, + "live": 2, + "changes.": 2, + "To": 3, + "minimize": 2, + "flicker": 5, + "correlate": 2, + "changes": 3, + "with": 8, + "vga_status.": 1, + "Experimentation": 2, + "required": 4, + "optimize": 2, + "some": 3, + "parameters.": 2, + "descriptions": 2, + "__________": 4, + "vga_status": 1, + "sets": 3, + "indicate": 2, + "CLKFREQ": 10, + "currently": 4, + "outputting": 4, + "will": 12, + "driven": 2, + "low": 5, + "reduces": 2, + "power": 3, + "non": 3, + "________": 3, + "vga_pins": 1, + "bits": 29, + "select": 9, + "top": 10, + "bit": 35, + "selects": 4, + "between": 4, + "x16": 7, + "x32": 6, + "tileheight": 4, + "controls": 4, + "progressive": 2, + "scan": 7, + "less": 5, + "good": 5, + "motion": 2, + "monitors": 1, + "interlaced": 5, + "allows": 1, + "double": 2, + "text": 9, + "polarity": 1, + "respectively": 1, + "active": 3, + "high": 7, + "vga_screen": 1, + "define": 10, + "left": 12, + "right": 9, + "bottom": 5, + "vga_ht": 3, + "has": 4, + "bitfields": 2, + "colorset": 2, + "ptr": 5, + "pixelgroup": 2, + "colorset*": 2, + "pixelgroup**": 2, + "ppppppppppcccc00": 2, + "p": 8, + "colorsets": 4, + "four": 8, + "**": 2, + "pixelgroups": 2, + "": 5, + "fields": 2, + "t": 10, + "care": 1, + "suggested": 1, + "bits/pins": 3, + "green": 1, + "bit/pin": 1, + "sum": 7, + "ohm": 10, + "resistors": 4, + "signals": 1, + "connect": 3, + "signal": 8, + "RED": 1, + "BLUE": 1, + "connector": 3, + "always": 2, + "HSYNC": 1, + "via": 5, + "resistor": 4, + "VSYNC": 1, + "______": 14, + "least": 14, + "vga_hx": 3, + "factor": 4, + "sure": 4, + "||": 5, + "vga_ho": 2, + "equal": 1, + "than": 5, + "vga_hd": 2, + "exceed": 1, + "vga_vd": 2, + "pos/neg": 4, + "recommended": 2, + "shifts": 4, + "right/left": 2, + "up/down": 2, + "vga_hs": 1, + "vga_vs": 1, + "vga_rate": 2, + "limit": 4, + "KHz": 3, + "should": 1, + "x4": 4, + "Keypad": 1, + "Reader": 1, + "Operation": 2, + "This": 3, + "uses": 2, + "capacitive": 1, + "PIN": 1, + "approach": 1, + "reading": 1, + "keypad.": 1, + "ALL": 2, + "made": 2, + "LOW": 2, + "OUTPUT": 2, + "pins.": 1, + "Then": 1, + "INPUT": 2, + "state.": 1, + "At": 1, + "one": 4, + "HIGH": 3, + "time.": 2, + "If": 2, + "closed": 1, + "otherwise": 1, + "returned.": 1, + "keypad": 4, + "decoding": 1, + "routine": 1, + "requires": 3, + "subroutines": 1, + "entire": 1, + "matrix": 1, + "single": 2, + "WORD": 1, + "variable": 1, + "indicating": 1, + "buttons": 2, + "pressed.": 1, + "Multiple": 1, + "button": 2, + "presses": 1, + "allowed": 1, + "understanding": 1, + "BOX": 2, + "entries": 1, + "confused.": 1, + "An": 1, + "entry...": 1, + "etc.": 1, + "pressed": 3, + "evaluate": 1, + "being": 2, + "even": 1, + "when": 3, + "they": 2, + "not.": 1, + "There": 1, + "danger": 1, + "physical": 1, + "electrical": 1, + "damage": 1, + "just": 2, + "way": 1, + "sensing": 1, + "happens": 1, + "work.": 1, + "Schematic": 1, + "No": 2, + "capacitors.": 1, + "connections": 1, + "directly": 1, + "Clear": 2, + "ReadRow": 4, + "Shift": 3, + "preset": 1, + "P0": 2, + "P7": 2, + "LOWs": 1, + "dira": 3, + "INPUTSs": 1, + "...": 5, + "act": 1, + "tiny": 1, + "capacitors": 1, + "outa": 2, + "n": 4, + "Pin": 1, + "OUTPUT...": 1, + "Make": 1, + "ina": 3, + "Pn": 1, + "remain": 1, + "discharged": 1, + "PS/2": 1, + "Keyboard": 1, + "v1.0.1": 2, + "Tool": 1, + "par_tail": 1, + "key": 4, + "head": 1, + "par_present": 1, + "states": 1, + "par_keys": 1, + "******************************************": 2, + "org": 2, + "entry": 1, + "#_dpin": 1, + "masks": 1, + "dmask": 4, + "_dpin": 3, + "cmask": 2, + "_cpin": 2, + "parameter": 14, + "_head": 6, + "_present/_states": 1, + "dlsb": 2, + "stat": 6, + "Update": 1, + "update": 7, + "_head/_present/_states": 1, + "#1*4": 1, + "Get": 2, + "scancode": 2, + "state": 2, + "#receive": 1, + "AA": 1, + "extended": 1, + "if_nc_and_z": 2, + "F0": 3, + "unknown": 2, + "ignore": 2, + "if_z": 11, + "#newcode": 1, + "_states": 2, + "set/clear": 1, + "#5": 2, + "#_states": 1, + "reg": 5, + "cmpsub": 4, + "shift/ctrl/alt/win": 1, + "pairs": 1, + "#16": 6, + "E0": 1, + "handle": 1, + "scrlock/capslock/numlock": 1, + "_locks": 5, + "#29": 1, + "change": 3, + "configure": 3, + "leds": 3, + "check": 5, + "shift1": 1, + "if_nz_and_c": 4, + "#@shift1": 1, + "@table": 1, + "#look": 1, + "shift": 7, + "alpha": 1, + "considering": 1, + "capslock": 1, + "if_nz_and_nc": 1, + "flags": 1, + "alt": 1, + "room": 1, + "valid": 2, + "enter": 1, + "sub": 12, + "FF": 3, + "#11*4": 1, + "wrword": 1, + "F3": 1, + "keyboard": 3, + "lock": 1, + "#transmit": 2, + "rev": 1, + "rcl": 2, + "_present": 2, + "#update": 1, + "Lookup": 2, + "table": 9, + "perform": 2, + "lookup": 1, + "movs": 9, + "#table": 1, + "#27": 1, + "#rand": 1, + "Transmit": 1, + "pull": 2, + "clock": 4, + "napshr": 3, + "#18": 2, + "release": 1, + "ready": 10, + "transmit_bit": 1, + "#wait_c0": 2, + "_d2": 1, + "wcond": 3, + "c1": 2, + "another": 7, + "c0d0": 2, + "wait": 6, + "until": 3, + "#wait": 2, + "#receive_ack": 1, + "ack": 1, + "error": 1, + "#reset": 2, + "transmit_ret": 1, + "receive": 1, + "receive_bit": 1, + "pause": 1, + "us": 1, + "#nap": 1, + "_d3": 1, + "#receive_bit": 1, + "align": 1, + "isolate": 1, + "look_ret": 1, + "receive_ack_ret": 1, + "receive_ret": 1, + "wait_c0": 1, + "c0": 1, + "timeout": 1, + "wloop": 1, + "_d4": 1, + "replaced": 1, + "c0/c1/c0d0/c1d1": 1, + "if_never": 1, + "replacements": 1, + "#wloop": 3, + "if_c_or_nz": 1, + "c1d1": 1, + "if_nc_or_z": 1, + "scales": 1, + "time": 7, + "snag": 1, + "elapses": 1, + "nap_ret": 1, + "F9": 1, + "F5": 1, + "D2": 1, + "F1": 2, + "D1": 1, + "F12": 1, + "F10": 1, + "D7": 1, + "F6": 1, + "D3": 1, + "Tab": 2, + "Alt": 2, + "R": 3, + "F3F2": 1, + "q": 1, + "w": 8, + "Win": 2, + "d": 2, + "Space": 2, + "f": 2, + "r": 4, + "Apps": 1, + "h": 2, + "Power": 1, + "j": 2, + "Sleep": 1, + ".": 2, + "EF2F": 1, + "l": 2, + "CapsLock": 1, + "Enter": 3, + "WakeUp": 1, + "BackSpace": 1, + "C5E1": 1, + "C0E4": 1, + "Home": 1, + "Insert": 1, + "C9EA": 1, + "Down": 1, + "E5": 1, + "Right": 1, + "C2E8": 1, + "Esc": 1, + "DF": 2, + "F11": 1, + "EC": 1, + "PageDn": 1, + "ED": 1, + "PrScr": 1, + "C6E9": 1, + "ScrLock": 1, + "D6": 1, + "_________": 5, + "Key": 1, + "Codes": 1, + "keypress": 1, + "keystate": 2, + "E0..FF": 1, + "AS": 1, + "Vocal": 2, + "Tract": 2, + "October": 1, + "synthesizes": 1, + "human": 1, + "vocal": 10, + "tract": 12, + "real": 2, + "It": 1, + "MHz.": 1, + "controlled": 1, + "reside": 1, + "parent": 1, + "aa": 2, + "ga": 5, + "gp": 2, + "vp": 3, + "vr": 1, + "f1": 4, + "f2": 1, + "f3": 3, + "f4": 2, + "na": 2, + "nf": 2, + "fa": 2, + "ff": 2, + "values.": 2, + "Before": 1, + "were": 1, + "interpolation": 1, + "shy": 1, + "frame": 12, + "makes": 1, + "behave": 1, + "sensibly": 1, + "during": 2, + "gaps.": 1, + "frame_buffers": 2, + "bytes": 2, + "frame_longs": 3, + "frame_bytes": 1, + "...must": 1, + "dira_": 3, + "dirb_": 1, + "ctra_": 1, + "ctrb_": 3, + "frqa_": 3, + "cnt_": 1, + "many": 1, + "...contiguous": 1, + "tract_ptr": 3, + "pos_pin": 7, + "neg_pin": 6, + "fm_offset": 5, + "positive": 1, + "modulation": 4, + "also": 1, + "enabled": 2, + "subcarrier": 3, + "generation": 2, + "_500_000": 1, + "NTSC": 11, + "Remember": 1, + "ctrb": 4, + "duty": 2, + "Ready": 1, + "clkfreq": 2, + "Launch": 1, + "@attenuation": 1, + "Reset": 1, + "buffers": 1, + "@index": 1, + "constant": 3, + "frame_buffer_longs": 2, + "set_attenuation": 1, + "level": 5, + "Set": 5, + "master": 2, + "attenuation": 3, + "initially": 2, + "set_pace": 2, + "percentage": 3, + "pace": 3, + "go": 1, + "Queue": 1, + "current": 3, + "transition": 1, + "over": 2, + "integer": 2, + "Load": 1, + "bytemove": 1, + "@frames": 1, + "index": 5, + "Increment": 1, + "full": 3, + "Returns": 4, + "queue": 2, + "useful": 2, + "checking": 1, + "would": 1, + "have": 1, + "frames": 2, + "empty": 2, + "detecting": 1, + "finished": 1, + "sample_ptr": 1, + "receives": 1, + "audio": 1, + "samples": 1, + "values": 2, + "updated": 1, + "@sample": 1, + "aural_id": 1, + "id": 2, + "executing": 1, + "algorithm": 1, + "connecting": 1, + "Initialization": 1, + "reserved": 3, + "clear_cnt": 1, + "#2*15": 1, + "saves": 2, + "hub": 1, + "memory": 2, + "minst": 3, + "d0s0": 3, + "mult_ret": 1, + "antilog_ret": 1, + "assemble": 1, + "cordic": 4, + "steps": 9, + "reserves": 2, + "cstep": 1, + "instruction": 2, + "center": 10, + "prepare": 1, + "initial": 6, + "cnt_value": 3, + "cnt_ticks": 3, + "Loop": 1, + "Wait": 2, + "sample": 2, + "period": 1, + "sar": 8, + "cycle": 1, + "driving": 1, + "h80000000": 2, + "frqb": 2, + "White": 1, + "noise": 3, + "source": 2, + "lfsr": 1, + "lfsr_taps": 2, + "Aspiration": 1, + "vibrato": 3, + "#10": 2, + "vphase": 2, + "glottal": 2, + "pitch": 5, + "final": 3, + "mesh": 1, + "tune": 2, + "convert": 1, + "log": 2, + "phase": 2, + "gphase": 3, + "formant2": 2, + "rotate": 2, + "f2x": 3, + "f2y": 3, + "#cordic": 2, + "formant4": 2, + "f4x": 3, + "f4y": 3, + "subtract": 1, + "nx": 4, + "negated": 1, + "nasal": 2, + "amplitude": 3, + "#mult": 1, + "negate": 2, + "fphase": 4, + "frication": 2, + "#sine": 1, + "Handle": 1, + "cycles": 4, + "frame_ptr": 6, + "past": 1, + "miscellaneous": 2, + "frame_index": 3, + "stepsize": 2, + "step_size": 5, + "h00FFFFFF": 2, + "final1": 2, + "finali": 2, + "iterate": 3, + "aa..ff": 4, + "jmpret": 5, + "#loop": 9, + "insure": 2, + "accurate": 1, + "accumulation": 1, + "step_acc": 3, + "set2": 3, + "#par_curr": 1, + "set3": 2, + "#par_next": 1, + "set4": 3, + "#par_step": 1, + "#24": 1, + "par_curr": 3, + "absolute": 1, + "msb": 2, + "nr": 1, + "step": 9, + "mult": 2, + "negnz": 3, + "par_step": 1, + "pointers": 2, + "frame_cnt": 2, + "step1": 2, + "stepi": 1, + "done": 3, + "stepframe": 1, + "#frame_bytes": 1, + "par_next": 2, + "Math": 1, + "Subroutines": 1, + "Antilog": 1, + "whole": 2, + "fraction": 1, + "antilog": 2, + "FFEA0000": 1, + "h00000FFE": 2, + "base": 6, + "rdword": 10, + "insert": 2, + "leading": 1, + "Scaled": 1, + "sine": 7, + "unsigned": 3, + "scale": 7, + "angle": 23, + "h00001000": 2, + "quadrant": 3, + "negc": 1, + "justify": 4, + "Multiply": 1, + "multiplier": 3, + "#15": 1, + "mult_step": 1, + "Cordic": 1, + "rotation": 3, + "degree": 1, + "#cordic_steps": 1, + "gets": 1, + "assembled": 1, + "cordic_dx": 1, + "incremented": 1, + "sumnc": 7, + "sumc": 4, + "cordic_a": 1, + "cordic_delta": 2, + "linear": 1, + "register": 1, + "B901476": 1, + "constants": 2, + "greater": 1, + "h40000000": 1, + "h01000000": 1, + "FFFFFF": 1, + "h00010000": 1, + "h0000D000": 1, + "D000": 1, + "h00007000": 1, + "FFE": 1, + "h00000800": 1, + "registers": 2, + "startup": 2, + "Undefined": 2, + "Data": 1, + "zeroed": 1, + "code": 3, + "cleared": 1, + "f1x": 1, + "f1y": 1, + "f3x": 1, + "f3y": 1, + "aspiration": 1, + "***": 1, + "mult_steps": 1, + "assembly": 1, + "area": 1, + "w/ret": 1, + "cordic_ret": 1, + "Theory": 1, + "launched": 1, + "processes": 1, + "commands": 1, + "routines.": 1, + "Points": 1, + "arcs": 1, + "sprites": 1, + "polygons": 1, + "rasterized": 1, + "specified": 1, + "stretch": 1, + "serves": 1, + "generic": 1, + "buffer.": 1, + "displayed": 1, + "TV.SRC": 1, + "VGA.SRC": 1, + "GRAPHICS_DEMO.SRC": 1, + "usage": 1, + "example.": 1, + "_setup": 1, + "_color": 2, + "_width": 2, + "_plot": 2, + "_line": 2, + "_arc": 2, + "_vec": 2, + "_vecarc": 2, + "_pix": 1, + "_pixarc": 1, + "_text": 2, + "_textarc": 1, + "_textmode": 2, + "_fill": 1, + "_loop": 5, + "command": 7, + "slices": 3, + "text_xs": 1, + "text_ys": 1, + "text_sp": 1, + "text_just": 1, + "font": 3, + "instances": 1, + "@loop": 1, + "@command": 1, + "x_origin": 2, + "y_origin": 2, + "base_ptr": 3, + "bases_ptr": 3, + "slices_ptr": 1, + "relative": 2, + "setcommand": 13, + "bases": 2, + "retain": 2, + "bitmap_longs": 1, + "dest_ptr": 2, + "Copy": 1, + "buffered": 1, + "destination": 1, + "determine": 2, + "shape/width": 2, + "pixel_width": 1, + "pixel_passes": 2, + "@w": 1, + "colorwidth": 1, + "Plot": 3, + "@x": 6, + "Draw": 7, + "endpoint": 1, + "arc": 21, + "xr": 7, + "yr": 7, + "anglestep": 2, + "arcmode": 2, + "radii": 3, + "FFF": 3, + "..359.956": 3, + "leaves": 1, + "points": 2, + "vec": 1, + "vecscale": 5, + "vecangle": 5, + "vecdef_ptr": 5, + "vector": 12, + "sprite": 14, + "Vector": 2, + "length": 4, + "vecarc": 2, + "pix": 3, + "pixrot": 3, + "pixdef_ptr": 3, + "mirror": 1, + "Pixel": 1, + "draw": 5, + "textarc": 1, + "justx": 2, + "justy": 3, + "necessary": 1, + ".finish": 1, + "immediately": 1, + "afterwards": 1, + "prevent": 1, + "subsequent": 1, + "clobbering": 1, + "drawn": 1, + "@justx": 1, + "@x_scale": 1, + "half": 2, + "pmin": 1, + "round/square": 1, + "corners": 1, + "y2": 7, + "x2": 6, + "fill": 3, + "pmax": 2, + "triangle": 3, + "sides": 1, + "polygon": 1, + "tri": 2, + "x3": 4, + "y3": 5, + "y4": 1, + "x1": 5, + "y1": 7, + "xy": 1, + "solid": 1, + "finish": 2, + "safe": 1, + "manually": 1, + "manipulate": 1, + "primitives": 1, + "xa0": 53, + "ya1": 3, + "ya2": 1, + "ya3": 2, + "ya4": 40, + "ya5": 3, + "ya6": 21, + "ya7": 9, + "ya8": 19, + "ya9": 5, + "yaA": 18, + "yaB": 4, + "yaC": 12, + "yaD": 4, + "yaE": 1, + "yaF": 1, + "xb0": 19, + "yb1": 2, + "yb2": 1, + "yb3": 4, + "yb4": 15, + "yb5": 2, + "yb6": 7, + "yb7": 3, + "yb8": 20, + "yb9": 5, + "ybA": 8, + "ybB": 1, + "ybC": 32, + "ybD": 1, + "ybE": 1, + "ybF": 1, + "ax1": 11, + "radius": 2, + "ay2": 23, + "ay3": 6, + "ay4": 4, + "a0": 8, + "a2": 1, + "farc": 41, + "arc/line": 1, + "Round": 1, + "recipes": 1, + "fline": 88, + "xa2": 48, + "xb2": 26, + "xa1": 8, + "xb1": 2, + "xa3": 8, + "xb3": 6, + "xb4": 35, + "a9": 3, + "ax2": 30, + "ay1": 10, + "a7": 2, + "aE": 1, + "aC": 2, + "aF": 4, + "aD": 3, + "aB": 2, + "xa4": 13, + "a8": 8, + "@": 1, + "a4": 3, + "H": 1, + "J": 1, + "N": 1, + "aA": 5, + "Z": 1, + "b": 1, + "v": 1, + "bullet": 1, + "fx": 1, + "*************************************": 2, + "arguments": 1, + "t3": 10, + "arg": 3, + "arg0": 12, + "dx": 20, + "dy": 15, + "arg1": 3, + "jump": 1, + "jumps": 6, + "color_": 1, + "plot_": 2, + "arc_": 2, + "vecarc_": 1, + "pixarc_": 1, + "textarc_": 2, + "fill_": 1, + "setup_": 1, + "xlongs": 4, + "xorigin": 2, + "yorigin": 4, + "arg3": 12, + "basesptr": 4, + "arg5": 6, + "width_": 1, + "pwidth": 3, + "#plotd": 3, + "line_": 1, + "#linepd": 2, + "arg7": 6, + "exit": 5, + "px": 14, + "py": 11, + "#plotp": 3, + "arg4": 5, + "iterations": 1, + "vecdef": 1, + "t7": 8, + "add/sub": 1, + "to/from": 1, + "t6": 7, + "#multiply": 2, + "round": 1, + "/2": 1, + "lsb": 1, + "t4": 7, + "h8000": 5, + "xwords": 1, + "ywords": 1, + "xxxxxxxx": 2, + "save": 1, + "sy": 5, + "rdbyte": 3, + "origin": 1, + "neg": 2, + "arg2": 7, + "yline": 1, + "sx": 4, + "t5": 4, + "xpixel": 2, + "rol": 1, + "pcolor": 5, + "color1": 2, + "color2": 2, + "@string": 1, + "#arcmod": 1, + "text_": 1, + "chr": 4, + "def": 2, + "extract": 4, + "_0001_1": 1, + "#fontb": 3, + "textsy": 2, + "starting": 1, + "_0011_0": 1, + "#11": 1, + "#arcd": 1, + "#fontxy": 1, + "advance": 2, + "textsx": 3, + "_0111_0": 1, + "setd_ret": 1, + "fontxy_ret": 1, + "fontb": 1, + "fontb_ret": 1, + "textmode_": 1, + "textsp": 2, + "da": 1, + "db": 1, + "db2": 1, + "linechange": 1, + "lines_minus_1": 1, + "fractions": 1, + "pre": 1, + "increment": 1, + "counter": 1, + "yloop": 2, + "integers": 1, + "base0": 17, + "base1": 10, + "cmps": 3, + "range": 2, + "ylongs": 6, + "mins": 1, + "mask": 3, + "mask0": 8, + "count": 4, + "mask1": 6, + "bits0": 6, + "bits1": 5, + "deltas": 1, + "linepd": 1, + "wr": 2, + "direction": 2, + "abs": 1, + "dominant": 2, + "axis": 1, + "ratio": 1, + "xloop": 1, + "linepd_ret": 1, + "plotd": 1, + "wide": 3, + "bounds": 2, + "#plotp_ret": 2, + "#7": 2, + "store": 1, + "writes": 1, + "pair": 1, + "account": 1, + "special": 1, + "slice": 7, + "shift0": 1, + "colorize": 1, + "upper": 2, + "subx": 1, + "#wslice": 1, + "args": 5, + "move": 2, + "using": 1, + "arg6": 1, + "arcmod_ret": 1, + "arg2/t4": 1, + "arg4/t6": 1, + "arcd": 1, + "#setd": 1, + "#polarx": 1, + "Polar": 1, + "cartesian": 1, + "polarx": 1, + "sine_90": 2, + "sine_table": 1, + "sine/cosine": 1, + "sine_180": 1, + "shifted": 1, + "product": 1, + "Defined": 1, + "hFFFFFFFF": 1, + "FFFFFFFF": 1, + "fontptr": 1, + "temps": 1, + "slicesptr": 1, + "line/plot": 1, + "coordinates": 1, + "tv_mode": 2, + "lntsc": 3, + "fpal": 2, + "_433_618": 2, + "PAL": 10, + "spal": 3, + "tvptr": 3, + "vinv": 2, + "burst": 2, + "sync_high2": 2, + "black": 2, + "leftmost": 1, + "vert": 1, + "if_z_eq_c": 1, + "#hsync": 1, + "pulses": 2, + "vsync1": 2, + "#sync_low1": 1, + "hhalf": 2, + "field2": 1, + "#superfield": 1, + "Blank": 1, + "Horizontal": 1, + "pal": 2, + "toggle": 1, + "phaseflip": 4, + "phasemask": 2, + "sync_scale1": 1, + "hsync_ret": 1, + "vsync_high": 1, + "#sync_high1": 1, + "Tasks": 1, + "performed": 1, + "sections": 1, + "#_enable": 1, + "rd": 1, + "#wtab": 1, + "ltab": 1, + "#ltab": 1, + "cancel": 1, + "_broadcast": 4, + "m8": 3, + "fcolor": 4, + "#divide": 2, + "_111": 1, + "m128": 2, + "_100": 1, + "_001": 1, + "broadcast/baseband": 1, + "strip": 3, + "baseband": 18, + "_auralcog": 1, + "colorreg": 3, + "colorloop": 1, + "m1": 4, + "reload": 1, + "d0s1": 1, + "F0F0F0F0": 1, + "pins0": 1, + "_01110000_00001111_00000111": 1, + "pins1": 1, + "_11110111_01111111_01110111": 1, + "sync_high1": 1, + "_101010_0101": 1, + "NTSC/PAL": 2, + "metrics": 1, + "tables": 1, + "wtab": 1, + "sntsc": 3, + "lpal": 3, + "hrest": 2, + "vvis": 2, + "vrep": 2, + "_8A": 1, + "_AA": 1, + "sync_scale2": 1, + "_00000000_01_10101010101010_0101": 1, + "m2": 1, + "contiguous": 1, + "tv_status.": 1, + "tv_enable": 2, + "requirement": 2, + "_______": 2, + "_0111": 6, + "_1111": 6, + "_0000": 4, + "nibble": 4, + "attach": 1, + "/560/1100": 2, + "network": 1, + "visual": 1, + "carrier": 1, + "mixing": 2, + "mix": 2, + "black/white": 2, + "composite": 1, + "doubles": 1, + "format": 1, + "_318_180": 1, + "_579_545": 1, + "_734_472": 1, + "itself": 1, + "tv_vt": 3, + "luminance": 2, + "adds/subtracts": 1, + "beware": 1, + "modulated": 1, + "produce": 1, + "saturated": 1, + "toggling": 1, + "levels": 1, + "because": 1, + "abruptly": 1, + "rather": 1, + "against": 1, + "background": 1, + "best": 1, + "appearance": 1, + "_____": 6, + "practical": 2, + "/30": 1, + "tv_vx": 2, + "tv_vo": 2, + "centered": 2, + "image": 2, + "____________": 1, + "expressed": 1, + "ie": 1, + "channel": 1, + "modulator": 2, + "turned": 2, + "broadcasting": 1, + "___________": 1, + "tv_auralcog": 1, + "supply": 1, + "selected": 1, + "bandwidth": 2, + "vary": 1 + }, + "Monkey": { + "Strict": 1, + "sample": 1, + "class": 1, + "from": 1, + "the": 1, + "documentation": 1, + "Class": 3, + "Game": 1, + "Extends": 2, + "App": 1, + "Function": 2, + "New": 1, + "(": 12, + ")": 12, + "End": 8, + "DrawSpiral": 3, + "clock": 3, + "Local": 3, + "w": 3, + "DeviceWidth/2": 1, + "For": 1, + "i#": 1, + "Until": 1, + "w*1.5": 1, + "Step": 1, + ".2": 1, + "x#": 1, + "y#": 1, + "x": 2, + "+": 5, + "i*Sin": 1, + "i*3": 1, + "y": 2, + "i*Cos": 1, + "i*2": 1, + "DrawRect": 1, + "Next": 1, + "hitbox.Collide": 1, + "event.pos": 1, + "Field": 2, + "updateCount": 3, + "Method": 4, + "OnCreate": 1, + "Print": 2, + "SetUpdateRate": 1, + "OnUpdate": 1, + "OnRender": 1, + "Cls": 1, + "updateCount*1.1": 1, + "Enemy": 1, + "Die": 1, + "Abstract": 1, + "field": 1, + "testField": 1, + "Bool": 2, + "True": 2, + "oss": 1, + "he": 2, + "-": 2, + "killed": 1, + "me": 1, + "b": 6, + "extending": 1, + "with": 1, + "generics": 1, + "VectorNode": 1, + "Node": 1, + "": 1, + "array": 1, + "syntax": 1, + "Global": 14, + "listOfStuff": 3, + "String": 4, + "[": 6, + "]": 6, + "lessStuff": 1, + "oneStuff": 1, + "a": 3, + "comma": 1, + "separated": 1, + "sequence": 1, + "text": 1, + "worstCase": 1, + "worst.List": 1, + "": 1, + "escape": 1, + "characers": 1, + "in": 1, + "strings": 1, + "string3": 1, + "string4": 1, + "string5": 1, + "string6": 1, + "prints": 1, + ".ToUpper": 1, + "Boolean": 1, + "shorttype": 1, + "boolVariable1": 1, + "boolVariable2": 1, + "False": 1, + "preprocessor": 1, + "keywords": 1, + "#If": 1, + "TARGET": 2, + "DoStuff": 1, + "#ElseIf": 1, + "DoOtherStuff": 1, + "#End": 1, + "operators": 1, + "|": 2, + "&": 1, + "c": 1 + }, + "Groovy Server Pages": { + "": 4, + "": 4, + "": 4, + "http": 3, + "equiv=": 3, + "content=": 4, + "": 4, + "Testing": 3, + "with": 3, + "SiteMesh": 2, + "and": 2, + "Resources": 2, + "": 4, + "name=": 1, + "": 2, + "module=": 2, + "": 4, + "": 4, + "": 4, + "": 4, + "<%@>": 1, + "page": 2, + "contentType=": 1, + "Using": 1, + "directive": 1, + "tag": 1, + "": 2, + "Print": 1, + "{": 1, + "example": 1, + "}": 1 + }, + "Opa": { + "Server.start": 1, + "(": 4, + "Server.http": 1, + "{": 2, + "page": 1, + "function": 1, + ")": 4, + "

": 2, + "Hello": 2, + "world": 2, + "

": 2, + "}": 2, + "title": 1, + "server": 1, + "Server.one_page_server": 1, + "-": 1 + }, + "XSLT": { + "": 1, + "version=": 2, + "": 1, + "xmlns": 1, + "xsl=": 1, + "": 1, + "match=": 1, + "": 1, + "": 1, + "

": 1, + "My": 1, + "CD": 1, + "Collection": 1, + "

": 1, + "": 1, + "border=": 1, + "": 2, + "bgcolor=": 1, + "": 2, + "Artist": 1, + "": 2, + "": 1, + "select=": 3, + "": 2, + "": 1, + "
": 2, + "Title": 1, + "
": 2, + "": 2, + "
": 1, + "": 1, + "": 1, + "
": 1, + "
": 1 + }, + "Dogescript": { + "quiet": 1, + "wow": 4, + "such": 2, + "language": 3, + "very": 1, + "syntax": 1, + "github": 1, + "recognized": 1, + "loud": 1, + "much": 1, + "friendly": 2, + "rly": 1, + "is": 2, + "true": 1, + "plz": 2, + "console.loge": 2, + "with": 2, + "but": 1, + "module.exports": 1 + }, + "Creole": { + "Creole": 6, + "is": 3, + "a": 2, + "-": 5, + "to": 2, + "HTML": 1, + "converter": 2, + "for": 1, + "the": 5, + "lightweight": 1, + "markup": 1, + "language": 1, + "(": 5, + "http": 4, + "//wikicreole.org/": 1, + ")": 5, + ".": 1, + "Github": 1, + "uses": 1, + "this": 1, + "render": 1, + "*.creole": 1, + "files.": 1, + "Project": 1, + "page": 1, + "on": 2, + "github": 1, + "*": 5, + "//github.com/minad/creole": 1, + "Travis": 1, + "CI": 1, + "https": 1, + "//travis": 1, + "ci.org/minad/creole": 1, + "RDOC": 1, + "//rdoc.info/projects/minad/creole": 1, + "INSTALLATION": 1, + "{": 6, + "gem": 1, + "install": 1, + "creole": 1, + "}": 6, + "SYNOPSIS": 1, + "require": 1, + "html": 1, + "Creole.creolize": 1, + "BUGS": 1, + "If": 1, + "you": 1, + "found": 1, + "bug": 1, + "please": 1, + "report": 1, + "it": 1, + "at": 1, + "project": 1, + "s": 1, + "tracker": 1, + "GitHub": 1, + "//github.com/minad/creole/issues": 1, + "AUTHORS": 1, + "Lars": 2, + "Christensen": 2, + "larsch": 1, + "Daniel": 2, + "Mendler": 1, + "minad": 1, + "LICENSE": 1, + "Copyright": 1, + "c": 1, + "Mendler.": 1, + "It": 1, + "free": 1, + "software": 1, + "and": 1, + "may": 1, + "be": 1, + "redistributed": 1, + "under": 1, + "terms": 1, + "specified": 1, + "in": 1, + "README": 1, + "file": 1, + "of": 1, + "Ruby": 1, + "distribution.": 1 + }, + "Crystal": { + "SHEBANG#!bin/crystal": 2, + "require": 2, + "describe": 2, + "do": 26, + "it": 21, + "assert_type": 7, + "(": 201, + ")": 201, + "{": 7, + "int32": 8, + "}": 7, + "end": 135, + "union_of": 1, + "char": 1, "result": 3, - "_cache.put": 1, - "_cache.size": 1 + "types": 3, + "[": 9, + "]": 9, + "mod": 1, + "result.program": 1, + "foo": 3, + "mod.types": 1, + "as": 4, + "NonGenericClassType": 1, + "foo.instance_vars": 1, + ".type.should": 3, + "eq": 16, + "mod.int32": 1, + "GenericClassType": 2, + "foo_i32": 4, + "foo.instantiate": 2, + "of": 3, + "Type": 2, + "|": 8, + "ASTNode": 4, + "foo_i32.lookup_instance_var": 2, + "run": 14, + ".to_i.should": 11, + ".to_f32.should": 2, + ".to_b.should": 1, + "be_true": 1, + "module": 1, + "Crystal": 1, + "class": 2, + "def": 84, + "transform": 81, + "transformer": 1, + "transformer.before_transform": 1, + "self": 77, + "node": 164, + "transformer.transform": 1, + "transformer.after_transform": 1, + "Transformer": 1, + "before_transform": 1, + "after_transform": 1, + "Expressions": 2, + "exps": 6, + "node.expressions.each": 1, + "exp": 3, + "new_exp": 3, + "exp.transform": 3, + "if": 23, + "new_exp.is_a": 1, + "exps.concat": 1, + "new_exp.expressions": 1, + "else": 2, + "<<": 1, + "exps.length": 1, + "node.expressions": 3, + "Call": 1, + "node_obj": 1, + "node.obj": 9, + "node_obj.transform": 1, + "transform_many": 23, + "node.args": 3, + "node_block": 1, + "node.block": 2, + "node_block.transform": 1, + "node_block_arg": 1, + "node.block_arg": 6, + "node_block_arg.transform": 1, + "And": 1, + "node.left": 3, + "node.left.transform": 3, + "node.right": 3, + "node.right.transform": 3, + "Or": 1, + "StringInterpolation": 1, + "ArrayLiteral": 1, + "node.elements": 1, + "node_of": 1, + "node.of": 2, + "node_of.transform": 1, + "HashLiteral": 1, + "node.keys": 1, + "node.values": 2, + "of_key": 1, + "node.of_key": 2, + "of_key.transform": 1, + "of_value": 1, + "node.of_value": 2, + "of_value.transform": 1, + "If": 1, + "node.cond": 5, + "node.cond.transform": 5, + "node.then": 3, + "node.then.transform": 3, + "node.else": 5, + "node.else.transform": 3, + "Unless": 1, + "IfDef": 1, + "MultiAssign": 1, + "node.targets": 1, + "SimpleOr": 1, + "Def": 1, + "node.body": 12, + "node.body.transform": 10, + "receiver": 2, + "node.receiver": 4, + "receiver.transform": 2, + "block_arg": 2, + "block_arg.transform": 2, + "Macro": 1, + "PointerOf": 1, + "node.exp": 3, + "node.exp.transform": 3, + "SizeOf": 1, + "InstanceSizeOf": 1, + "IsA": 1, + "node.obj.transform": 5, + "node.const": 1, + "node.const.transform": 1, + "RespondsTo": 1, + "Case": 1, + "node.whens": 1, + "node_else": 1, + "node_else.transform": 1, + "When": 1, + "node.conds": 1, + "ImplicitObj": 1, + "ClassDef": 1, + "superclass": 1, + "node.superclass": 2, + "superclass.transform": 1, + "ModuleDef": 1, + "While": 1, + "Generic": 1, + "node.name": 5, + "node.name.transform": 5, + "node.type_vars": 1, + "ExceptionHandler": 1, + "node.rescues": 1, + "node_ensure": 1, + "node.ensure": 2, + "node_ensure.transform": 1, + "Rescue": 1, + "node.types": 2, + "Union": 1, + "Hierarchy": 1, + "Metaclass": 1, + "Arg": 1, + "default_value": 1, + "node.default_value": 2, + "default_value.transform": 1, + "restriction": 1, + "node.restriction": 2, + "restriction.transform": 1, + "BlockArg": 1, + "node.fun": 1, + "node.fun.transform": 1, + "Fun": 1, + "node.inputs": 1, + "output": 1, + "node.output": 2, + "output.transform": 1, + "Block": 1, + "node.args.map": 1, + "Var": 2, + "FunLiteral": 1, + "node.def.body": 1, + "node.def.body.transform": 1, + "FunPointer": 1, + "obj": 1, + "obj.transform": 1, + "Return": 1, + "node.exps": 5, + "Break": 1, + "Next": 1, + "Yield": 1, + "scope": 1, + "node.scope": 2, + "scope.transform": 1, + "Include": 1, + "Extend": 1, + "RangeLiteral": 1, + "node.from": 1, + "node.from.transform": 1, + "node.to": 2, + "node.to.transform": 2, + "Assign": 1, + "node.target": 1, + "node.target.transform": 1, + "node.value": 3, + "node.value.transform": 3, + "Nop": 1, + "NilLiteral": 1, + "BoolLiteral": 1, + "NumberLiteral": 1, + "CharLiteral": 1, + "StringLiteral": 1, + "SymbolLiteral": 1, + "RegexLiteral": 1, + "MetaVar": 1, + "InstanceVar": 1, + "ClassVar": 1, + "Global": 1, + "Require": 1, + "Path": 1, + "Self": 1, + "LibDef": 1, + "FunDef": 1, + "body": 1, + "body.transform": 1, + "TypeDef": 1, + "StructDef": 1, + "UnionDef": 1, + "EnumDef": 1, + "ExternalVar": 1, + "IndirectRead": 1, + "IndirectWrite": 1, + "TypeOf": 1, + "Primitive": 1, + "Not": 1, + "TypeFilteredNode": 1, + "TupleLiteral": 1, + "Cast": 1, + "DeclareVar": 1, + "node.var": 1, + "node.var.transform": 1, + "node.declared_type": 1, + "node.declared_type.transform": 1, + "Alias": 1, + "TupleIndexer": 1, + "Attribute": 1, + "exps.map": 1 + }, + "Nemerle": { + "using": 1, + "System.Console": 1, + ";": 2, + "module": 1, + "Program": 1, + "{": 2, + "Main": 1, + "(": 2, + ")": 2, + "void": 1, + "WriteLine": 1, + "}": 2 }, "Assembly": { ";": 20, "flat": 4, "assembler": 6, - "core": 2, + "interface": 2, + "for": 2, + "Win32": 2, "Copyright": 4, "(": 13, "c": 4, @@ -2612,13 +31413,164 @@ "All": 4, "rights": 4, "reserved.": 4, - "xor": 52, - "eax": 510, + "format": 1, + "PE": 1, + "console": 1, + "section": 4, + "code": 1, + "readable": 4, + "executable": 1, + "start": 1, "mov": 1253, "[": 2026, - "stub_size": 1, + "con_handle": 8, "]": 2026, + "STD_OUTPUT_HANDLE": 2, + "esi": 619, + "_logo": 2, + "call": 845, + "display_string": 19, + "get_params": 2, + "jc": 28, + "information": 2, + "init_memory": 2, + "_memory_prefix": 2, + "eax": 510, + "memory_end": 7, + "sub": 64, + "memory_start": 4, + "add": 76, + "additional_memory_end": 9, + "additional_memory": 6, + "shr": 30, + "display_number": 8, + "_memory_suffix": 2, + "GetTickCount": 3, + "start_time": 3, + "preprocessor": 1, + "parser": 1, + "formatter": 1, + "display_user_messages": 3, + "movzx": 13, "current_pass": 16, + "inc": 87, + "_passes_suffix": 2, + "xor": 52, + "edx": 219, + "ebx": 336, + "div": 8, + "or": 194, + "jz": 107, + "display_bytes_count": 2, + "push": 150, + "dl": 58, + "display_character": 6, + "pop": 99, + "_seconds_suffix": 2, + "written_size": 1, + "_bytes_suffix": 2, + "al": 1174, + "jmp": 450, + "exit_program": 5, + "_usage": 2, + "input_file": 4, + "output_file": 3, + "symbols_file": 4, + "memory_setting": 4, + "passes_limit": 3, + "GetCommandLine": 2, + "edi": 250, + "params": 2, + "find_command_start": 2, + "lodsb": 12, + "cmp": 1088, + "h": 376, + "je": 485, + "skip_quoted_name": 3, + "skip_name": 2, + "find_param": 7, + "all_params": 5, + "option_param": 2, + "Dh": 19, + "jne": 485, + "get_output_file": 2, + "process_param": 3, + "bad_params": 11, + "string_param": 3, + "copy_param": 2, + "stosb": 6, + "param_end": 6, + "string_param_end": 2, + "memory_option": 4, + "passes_option": 4, + "symbols_option": 3, + "stc": 9, + "ret": 70, + "get_option_value": 3, + "get_option_digit": 2, + "option_value_ok": 4, + "invalid_option_value": 5, + "ja": 28, + "imul": 1, + "jo": 2, + "dec": 30, + "clc": 11, + "shl": 17, + "jae": 34, + "dx": 27, + "find_symbols_file_name": 2, + "include": 15, + "data": 3, + "writeable": 2, + "_copyright": 1, + "db": 35, + "Ah": 25, + "VERSION_STRING": 1, + "align": 1, + "dd": 22, + "bytes_count": 8, + "displayed_count": 4, + "character": 3, + "last_displayed": 5, + "rb": 4, + "options": 1, + "buffer": 14, + "stack": 1, + "import": 1, + "rva": 16, + "kernel_name": 2, + "kernel_table": 2, + "ExitProcess": 2, + "_ExitProcess": 2, + "CreateFile": 3, + "_CreateFileA": 2, + "ReadFile": 2, + "_ReadFile": 2, + "WriteFile": 6, + "_WriteFile": 2, + "CloseHandle": 2, + "_CloseHandle": 2, + "SetFilePointer": 2, + "_SetFilePointer": 2, + "_GetCommandLineA": 2, + "GetEnvironmentVariable": 2, + "_GetEnvironmentVariable": 2, + "GetStdHandle": 5, + "_GetStdHandle": 2, + "VirtualAlloc": 2, + "_VirtualAlloc": 2, + "VirtualFree": 2, + "_VirtualFree": 2, + "_GetTickCount": 2, + "GetSystemTime": 2, + "_GetSystemTime": 2, + "GlobalMemoryStatus": 2, + "_GlobalMemoryStatus": 2, + "dw": 14, + "fixups": 1, + "discardable": 1, + "core": 2, + "stub_size": 1, "ax": 87, "resolver_flags": 1, "number_of_sections": 1, @@ -2626,13 +31578,9 @@ "assembler_loop": 2, "labels_list": 3, "tagged_blocks": 23, - "additional_memory": 6, "free_additional_memory": 2, - "additional_memory_end": 9, "structures_buffer": 9, - "esi": 619, "source_start": 1, - "edi": 250, "code_start": 2, "dword": 87, "adjustment": 4, @@ -2645,37 +31593,25 @@ "undefined_data_end": 4, "file_extension": 1, "next_pass_needed": 16, - "al": 1174, "output_format": 3, "adjustment_sign": 2, "code_type": 106, - "call": 845, "init_addressing_space": 6, "pass_loop": 2, "assemble_line": 3, "jnc": 11, - "cmp": 1088, - "je": 485, "pass_done": 2, - "sub": 64, - "h": 376, "current_line": 24, - "jmp": 450, "missing_end_directive": 7, "close_pass": 1, "check_symbols": 2, - "memory_end": 7, - "jae": 34, "symbols_checked": 2, "test": 95, "byte": 549, - "jz": 107, "symbol_defined_ok": 5, "cx": 42, - "jne": 485, "and": 50, "not": 42, - "or": 194, "use_prediction_ok": 5, "jnz": 125, "check_use_prediction": 2, @@ -2683,7 +31619,6 @@ "check_next_symbol": 5, "define_misprediction": 4, "check_define_prediction": 2, - "add": 76, "LABEL_STRUCTURE_SIZE": 1, "next_pass": 3, "assemble_ok": 2, @@ -2693,18 +31628,12 @@ "error_info": 2, "error_handler": 3, "esp": 14, - "ret": 70, - "inc": 87, - "passes_limit": 3, "code_cannot_be_generated": 1, "create_addressing_space": 1, - "ebx": 336, - "Ah": 25, "illegal_instruction": 48, "Ch": 11, "jbe": 11, "out_of_memory": 19, - "ja": 28, "lods": 366, "assemble_instruction": 2, "jb": 34, @@ -2718,14 +31647,12 @@ "segment_prefix": 2, "instruction_assembled": 138, "prefixed_instruction": 11, - "symbols_file": 4, "continue_line": 8, "line_assembled": 3, "invalid_use_of_symbol": 17, "reserved_word_used_as_symbol": 6, "label_size": 5, "make_label": 3, - "edx": 219, "cl": 42, "ebp": 49, "ds": 21, @@ -2737,7 +31664,6 @@ "make_virtual_label": 2, "xchg": 31, "ch": 55, - "shr": 30, "neg": 4, "setnz": 5, "ah": 229, @@ -2749,15 +31675,11 @@ "new_label": 2, "symbol_already_defined": 3, "btr": 2, - "jc": 28, "requalified_label": 2, "label_made": 4, - "push": 150, "get_constant_value": 4, - "dl": 58, "size_override": 7, "get_value": 2, - "pop": 99, "bl": 124, "ecx": 153, "constant_referencing_mode_ok": 2, @@ -2770,7 +31692,6 @@ "redeclare_constant": 2, "requalified_constant": 2, "make_addressing_space_label": 3, - "dx": 27, "operand_size": 121, "operand_prefix": 9, "opcode_prefix": 30, @@ -2779,12 +31700,8 @@ "vex_register": 1, "immediate_size": 9, "instruction_handler": 32, - "movzx": 13, "word": 79, "extra_characters_on_line": 8, - "clc": 11, - "dec": 30, - "stc": 9, "org_directive": 1, "invalid_argument": 28, "invalid_value": 21, @@ -2801,7 +31718,6 @@ "get_address_value": 3, "bh": 34, "bp": 2, - "shl": 17, "bx": 8, "make_free_label": 1, "address_symbol": 2, @@ -2956,7 +31872,6 @@ "complex_tword": 2, "fp_zero_tword": 2, "FFFh": 3, - "jo": 2, "value_out_of_range": 10, "jge": 5, "jg": 1, @@ -2975,8 +31890,6 @@ "close": 3, "find_current_source_path": 2, "get_current_path": 3, - "lodsb": 12, - "stosb": 6, "cut_current_path": 1, "current_path_ok": 1, "/": 1, @@ -2993,120 +31906,6 @@ "invoked_error": 2, "assert_directive": 1, "assertion_failed": 1, - "interface": 2, - "for": 2, - "Win32": 2, - "format": 1, - "PE": 1, - "console": 1, - "section": 4, - "code": 1, - "readable": 4, - "executable": 1, - "start": 1, - "con_handle": 8, - "STD_OUTPUT_HANDLE": 2, - "_logo": 2, - "display_string": 19, - "get_params": 2, - "information": 2, - "init_memory": 2, - "_memory_prefix": 2, - "memory_start": 4, - "display_number": 8, - "_memory_suffix": 2, - "GetTickCount": 3, - "start_time": 3, - "preprocessor": 1, - "parser": 1, - "formatter": 1, - "display_user_messages": 3, - "_passes_suffix": 2, - "div": 8, - "display_bytes_count": 2, - "display_character": 6, - "_seconds_suffix": 2, - "written_size": 1, - "_bytes_suffix": 2, - "exit_program": 5, - "_usage": 2, - "input_file": 4, - "output_file": 3, - "memory_setting": 4, - "GetCommandLine": 2, - "params": 2, - "find_command_start": 2, - "skip_quoted_name": 3, - "skip_name": 2, - "find_param": 7, - "all_params": 5, - "option_param": 2, - "Dh": 19, - "get_output_file": 2, - "process_param": 3, - "bad_params": 11, - "string_param": 3, - "copy_param": 2, - "param_end": 6, - "string_param_end": 2, - "memory_option": 4, - "passes_option": 4, - "symbols_option": 3, - "get_option_value": 3, - "get_option_digit": 2, - "option_value_ok": 4, - "invalid_option_value": 5, - "imul": 1, - "find_symbols_file_name": 2, - "include": 15, - "data": 3, - "writeable": 2, - "_copyright": 1, - "db": 35, - "VERSION_STRING": 1, - "align": 1, - "dd": 22, - "bytes_count": 8, - "displayed_count": 4, - "character": 3, - "last_displayed": 5, - "rb": 4, - "options": 1, - "buffer": 14, - "stack": 1, - "import": 1, - "rva": 16, - "kernel_name": 2, - "kernel_table": 2, - "ExitProcess": 2, - "_ExitProcess": 2, - "CreateFile": 3, - "_CreateFileA": 2, - "ReadFile": 2, - "_ReadFile": 2, - "WriteFile": 6, - "_WriteFile": 2, - "CloseHandle": 2, - "_CloseHandle": 2, - "SetFilePointer": 2, - "_SetFilePointer": 2, - "_GetCommandLineA": 2, - "GetEnvironmentVariable": 2, - "_GetEnvironmentVariable": 2, - "GetStdHandle": 5, - "_GetStdHandle": 2, - "VirtualAlloc": 2, - "_VirtualAlloc": 2, - "VirtualFree": 2, - "_VirtualFree": 2, - "_GetTickCount": 2, - "GetSystemTime": 2, - "_GetSystemTime": 2, - "GlobalMemoryStatus": 2, - "_GlobalMemoryStatus": 2, - "dw": 14, - "fixups": 1, - "discardable": 1, "CREATE_NEW": 1, "CREATE_ALWAYS": 2, "OPEN_EXISTING": 2, @@ -3914,14645 +32713,10458 @@ "cvtpi2pd_instruction": 1, "cvtpi2ps_instruction": 1 }, - "ATS": { - "//": 211, - "#include": 16, - "staload": 25, - "_": 25, - "sortdef": 2, - "ftype": 13, - "type": 30, - "-": 49, - "infixr": 2, - "(": 562, - ")": 567, - "typedef": 10, - "a": 200, - "b": 26, - "": 2, - "functor": 12, - "F": 34, - "{": 142, - "}": 141, - "list0": 9, - "extern": 13, - "val": 95, - "functor_list0": 7, - "implement": 55, - "f": 22, - "lam": 20, - "xs": 82, - "list0_map": 2, - "": 14, - "": 3, - "datatype": 4, - "CoYoneda": 7, - "r": 25, - "of": 59, - "fun": 56, - "CoYoneda_phi": 2, - "CoYoneda_psi": 3, - "ftor": 9, - "fx": 8, - "x": 48, - "int0": 4, - "I": 8, - "int": 2, - "bool": 27, - "True": 7, - "|": 22, - "False": 8, - "boxed": 2, - "boolean": 2, - "bool2string": 4, - "string": 2, - "case": 9, - "+": 20, - "fprint_val": 2, - "": 2, - "out": 8, - "fprint": 3, - "int2bool": 2, - "i": 6, - "let": 34, - "in": 48, - "if": 7, - "then": 11, - "else": 7, - "end": 73, - "myintlist0": 2, - "g0ofg1": 1, - "list": 1, - "myboolist0": 9, - "fprintln": 3, - "stdout_ref": 4, - "main0": 3, - "UN": 3, - "phil_left": 3, - "n": 51, - "phil_right": 3, - "nmod": 1, - "NPHIL": 6, - "randsleep": 6, - "intGte": 1, - "void": 14, - "ignoret": 2, - "sleep": 2, - "UN.cast": 2, - "uInt": 1, - "rand": 1, - "mod": 1, - "phil_think": 3, - "println": 9, - "phil_dine": 3, - "lf": 5, - "rf": 5, - "phil_loop": 10, - "nl": 2, - "nr": 2, - "ch_lfork": 2, - "fork_changet": 5, - "ch_rfork": 2, - "channel_takeout": 4, - "HX": 1, - "try": 1, - "to": 16, - "actively": 1, - "induce": 1, - "deadlock": 2, - "ch_forktray": 3, - "forktray_changet": 4, - "channel_insert": 5, - "[": 49, - "]": 48, - "cleaner_wash": 3, - "fork_get_num": 4, - "cleaner_return": 4, - "ch": 7, - "cleaner_loop": 6, - "f0": 3, - "dynload": 3, - "local": 10, - "mythread_create_cloptr": 6, - "llam": 6, - "while": 1, - "true": 5, - "%": 7, - "#": 7, - "#define": 4, - "nphil": 13, - "natLt": 2, - "absvtype": 2, - "fork_vtype": 3, - "ptr": 2, - "vtypedef": 2, - "fork": 16, - "channel": 11, - "datavtype": 1, - "FORK": 3, - "assume": 2, - "the_forkarray": 2, - "t": 1, - "array_tabulate": 1, - "fopr": 1, - "": 2, - "where": 6, - "channel_create_exn": 2, - "": 2, - "i2sz": 4, - "arrayref_tabulate": 1, - "the_forktray": 2, - "set_vtype": 3, - "t@ype": 2, - "set": 34, - "t0p": 31, - "compare_elt_elt": 4, - "x1": 1, - "x2": 1, - "<": 14, - "linset_nil": 2, - "linset_make_nil": 2, - "linset_sing": 2, - "": 16, - "linset_make_sing": 2, - "linset_make_list": 1, - "List": 1, - "INV": 24, - "linset_is_nil": 2, - "linset_isnot_nil": 2, - "linset_size": 2, - "size_t": 1, - "linset_is_member": 3, - "x0": 22, - "linset_isnot_member": 1, - "linset_copy": 2, - "linset_free": 2, - "linset_insert": 3, - "&": 17, - "linset_takeout": 1, - "res": 9, - "opt": 6, - "endfun": 1, - "linset_takeout_opt": 1, - "Option_vt": 4, - "linset_remove": 2, - "linset_choose": 3, - "linset_choose_opt": 1, - "linset_takeoutmax": 1, - "linset_takeoutmax_opt": 1, - "linset_takeoutmin": 1, - "linset_takeoutmin_opt": 1, - "fprint_linset": 3, - "sep": 1, - "FILEref": 2, - "overload": 1, - "with": 1, - "env": 11, - "vt0p": 2, - "linset_foreach": 3, - "fwork": 3, - "linset_foreach_env": 3, - "linset_listize": 2, - "List0_vt": 5, - "linset_listize1": 2, - "code": 6, - "reuse": 2, - "elt": 2, - "list_vt_nil": 16, - "list_vt_cons": 17, - "list_vt_is_nil": 1, - "list_vt_is_cons": 1, - "list_vt_length": 1, - "aux": 4, - "nat": 4, - ".": 14, - "": 3, - "list_vt": 7, - "sgn": 9, - "false": 6, - "list_vt_copy": 2, - "list_vt_free": 1, - "mynode_cons": 4, - "nx": 22, - "mynode1": 6, - "xs1": 15, - "UN.castvwtp0": 8, - "List1_vt": 5, - "@list_vt_cons": 5, - "xs2": 3, - "prval": 20, - "UN.cast2void": 5, - ";": 4, - "fold@": 8, - "ins": 3, - "tail": 1, - "recursive": 1, - "n1": 4, - "<=>": 1, - "1": 3, - "mynode_make_elt": 4, - "ans": 2, - "is": 26, - "found": 1, - "effmask_all": 3, - "free@": 1, - "xs1_": 3, - "rem": 1, - "*": 2, - "opt_some": 1, - "opt_none": 1, - "list_vt_foreach": 1, - "": 3, - "list_vt_foreach_env": 1, - "mynode_null": 5, - "mynode": 3, - "null": 1, - "the_null_ptr": 1, - "mynode_free": 1, - "nx2": 4, - "mynode_get_elt": 1, - "nx1": 7, - "UN.castvwtp1": 2, - "mynode_set_elt": 1, - "l": 3, - "__assert": 2, - "praxi": 1, - "mynode_getfree_elt": 1, - "linset_takeout_ngc": 2, - "takeout": 3, - "mynode0": 1, - "pf_x": 6, - "view@x": 3, - "pf_xs1": 6, - "view@xs1": 3, - "linset_takeoutmax_ngc": 2, - "xs_": 4, - "@list_vt_nil": 1, - "linset_takeoutmin_ngc": 2, - "unsnoc": 4, - "pos": 1, - "and": 10, - "fold@xs": 1, - "ATS_PACKNAME": 1, - "ATS_STALOADFLAG": 1, - "no": 2, - "static": 1, - "loading": 1, - "at": 2, - "run": 1, - "time": 1, - "castfn": 1, - "linset2list": 1, - "": 1, - "html": 1, - "PUBLIC": 1, - "W3C": 1, - "DTD": 2, - "XHTML": 1, - "EN": 1, - "http": 2, - "www": 1, - "w3": 1, - "org": 1, - "TR": 1, - "xhtml11": 2, - "dtd": 1, - "": 1, - "xmlns=": 1, - "": 1, - "": 1, - "equiv=": 1, - "content=": 1, - "": 1, - "EFFECTIVATS": 1, - "DiningPhil2": 1, - "": 1, - "#patscode_style": 1, - "": 1, - "": 1, - "

": 1, - "Effective": 1, - "ATS": 2, - "Dining": 2, - "Philosophers": 2, - "

": 1, - "In": 2, - "this": 2, - "article": 2, - "present": 1, - "an": 6, - "implementation": 3, - "slight": 1, - "variant": 1, - "the": 30, - "famous": 1, - "problem": 1, - "by": 4, - "Dijkstra": 1, - "that": 8, - "makes": 1, - "simple": 1, - "but": 1, - "convincing": 1, - "use": 1, - "linear": 2, - "types.": 1, - "

": 8, - "The": 8, - "Original": 2, - "Problem": 2, - "

": 8, - "There": 3, - "are": 7, - "five": 1, - "philosophers": 1, - "sitting": 1, + "Isabelle": { + "theory": 1, + "HelloWorld": 3, + "imports": 1, + "Main": 1, + "begin": 1, + "section": 1, + "{": 5, + "*Playing": 1, "around": 1, - "table": 3, - "there": 3, - "also": 3, - "forks": 7, - "placed": 1, - "on": 8, - "such": 1, - "each": 2, - "located": 2, - "between": 1, - "left": 3, - "hand": 6, - "philosopher": 5, - "right": 3, - "another": 1, - "philosopher.": 1, - "Each": 4, - "does": 1, - "following": 6, - "routine": 1, - "repeatedly": 1, - "thinking": 1, - "dining.": 1, - "order": 1, - "dine": 1, - "needs": 2, - "first": 2, - "acquire": 1, - "two": 3, - "one": 3, - "his": 4, - "side": 2, - "other": 2, - "side.": 2, - "After": 2, - "finishing": 1, - "dining": 1, - "puts": 2, - "acquired": 1, - "onto": 1, - "A": 6, - "Variant": 1, - "twist": 1, - "added": 1, - "original": 1, - "version": 1, - "

": 1, - "used": 1, + "with": 2, + "Isabelle*": 1, + "}": 5, + "text": 4, + "*": 4, + "creating": 1, + "a": 2, + "lemma": 2, + "the": 2, + "name": 1, + "hello_world*": 1, + "hello_world": 2, + "by": 9, + "simp": 8, + "thm": 1, + "defining": 1, + "string": 1, + "constant": 1, + "definition": 1, + "where": 1, + "theorem": 2, + "(": 5, + "fact": 1, + "List.rev_rev_ident": 4, + ")": 5, + "*now": 1, + "we": 1, + "delete": 1, + "already": 1, + "proven": 1, + "lema": 1, + "and": 1, + "show": 2, "it": 2, - "becomes": 1, - "be": 9, - "put": 1, - "tray": 2, - "for": 15, - "dirty": 2, - "forks.": 1, - "cleaner": 2, - "who": 1, - "cleans": 1, - "them": 2, - "back": 1, - "table.": 1, - "Channels": 1, - "Communication": 1, - "just": 1, - "shared": 1, - "queue": 1, - "fixed": 1, - "capacity.": 1, - "functions": 1, - "inserting": 1, - "element": 5, - "into": 3, - "taking": 1, - "given": 4, - "

": 7,
-      "class=": 6,
-      "#pats2xhtml_sats": 3,
-      "
": 7, - "If": 2, - "called": 2, - "full": 4, - "caller": 2, - "blocked": 3, - "until": 2, - "taken": 1, - "channel.": 2, - "empty": 1, - "inserted": 1, - "Channel": 2, - "Fork": 3, - "Forks": 1, - "resources": 1, - "type.": 1, - "initially": 1, - "stored": 2, - "which": 2, - "can": 4, - "obtained": 2, - "calling": 2, - "function": 3, - "defined": 1, - "natural": 1, - "numbers": 1, - "less": 1, - "than": 1, - "channels": 4, - "storing": 3, - "chosen": 3, - "capacity": 3, - "reason": 1, - "store": 1, - "most": 1, - "guarantee": 1, - "these": 1, - "never": 2, - "so": 2, - "attempt": 1, - "made": 1, - "send": 1, - "signals": 1, - "awake": 1, - "callers": 1, - "supposedly": 1, - "being": 2, - "due": 1, - "Tray": 1, - "instead": 1, - "become": 1, - "as": 4, - "only": 1, - "total": 1, - "Philosopher": 1, - "Loop": 2, - "implemented": 2, - "loop": 2, - "#pats2xhtml_dats": 3, - "It": 2, - "should": 3, - "straighforward": 2, - "follow": 2, - "Cleaner": 1, - "finds": 1, - "number": 2, - "uses": 1, - "locate": 1, - "fork.": 1, - "Its": 1, - "actual": 1, - "follows": 1, - "now": 1, - "Testing": 1, - "entire": 1, - "files": 1, - "DiningPhil2.sats": 1, - "DiningPhil2.dats": 1, - "DiningPhil2_fork.dats": 1, - "DiningPhil2_thread.dats": 1, - "Makefile": 1, - "available": 1, - "compiling": 1, - "source": 1, - "excutable": 1, - "testing.": 1, - "One": 1, - "able": 1, - "encounter": 1, - "after": 1, - "running": 1, - "simulation": 1, - "while.": 1, - "
": 1, - "size=": 1, - "This": 1, - "written": 1, - "href=": 1, - "Hongwei": 1, - "Xi": 1, - "
": 1, - "": 1, - "": 1, - "main": 1, - "fprint_filsub": 1, - "option0": 3, - "functor_option0": 2, - "option0_map": 1, - "functor_homres": 2, - "c": 3, - "Yoneda_phi": 3, - "Yoneda_psi": 3, - "m": 4, - "mf": 4, - "natrans": 3, - "G": 2, - "Yoneda_phi_nat": 2, - "Yoneda_psi_nat": 2, - "list_t": 1, - "g0ofg1_list": 1, - "Yoneda_bool_list0": 3, - "myboolist1": 2 - }, - "AutoHotkey": { - "MsgBox": 1, - "Hello": 1, - "World": 1 - }, - "Awk": { - "SHEBANG#!awk": 1, - "BEGIN": 1, - "{": 17, - "n": 13, - ";": 55, - "printf": 1, - "network_max_bandwidth_in_byte": 3, - "network_max_packet_per_second": 3, - "last3": 3, - "last4": 3, - "last5": 3, - "last6": 3, - "}": 17, - "if": 14, - "(": 14, - "/Average/": 1, - ")": 14, - "#": 48, - "Skip": 1, - "the": 12, - "Average": 1, - "values": 1, - "next": 1, - "/all/": 1, - "This": 8, - "is": 7, - "cpu": 1, - "info": 7, - "print": 35, - "FILENAME": 35, - "-": 2, - "/eth0/": 1, - "eth0": 1, - "network": 1, - "Total": 9, - "number": 9, - "of": 22, - "packets": 4, - "received": 4, - "per": 14, - "second.": 8, - "else": 4, - "transmitted": 4, - "bytes": 4, - "/proc": 1, - "|": 4, - "cswch": 1, - "tps": 1, - "kbmemfree": 1, - "totsck/": 1, - "/": 2, + "hand*": 1, + "declare": 1, "[": 1, + "del": 1, "]": 1, - "proc/s": 1, - "context": 1, - "switches": 1, - "second": 6, - "disk": 1, - "total": 1, - "transfers": 1, - "read": 1, - "requests": 2, - "write": 1, - "block": 2, - "reads": 1, - "writes": 1, - "mem": 1, - "Amount": 7, - "free": 2, - "memory": 6, - "available": 1, - "in": 11, - "kilobytes.": 7, - "used": 8, - "does": 1, - "not": 1, - "take": 1, - "into": 1, - "account": 1, - "by": 4, - "kernel": 3, - "itself.": 1, - "Percentage": 2, - "memory.": 1, - "X": 1, - "shared": 1, - "system": 1, - "Always": 1, - "zero": 1, - "with": 1, - "kernels.": 1, - "as": 1, - "buffers": 1, - "to": 1, - "cache": 1, - "data": 1, - "swap": 3, - "space": 2, - "space.": 1, - "socket": 1, - "sockets.": 1, - "Number": 4, - "TCP": 1, - "sockets": 3, - "currently": 4, - "use.": 4, - "UDP": 1, - "RAW": 1, - "IP": 1, - "fragments": 1, - "END": 1 + "hide_fact": 1, + "corollary": 2, + "apply": 1, + "add": 1, + "HelloWorld_def": 1, + "done": 1, + "*does": 1, + "hold": 1, + "in": 1, + "general": 1, + "rev_rev_ident": 2, + "proof": 1, + "induction": 1, + "l": 2, + "case": 3, + "Nil": 1, + "thus": 1, + "next": 1, + "Cons": 1, + "ls": 1, + "assume": 1, + "IH": 2, + "have": 2, + "hence": 1, + "also": 1, + "finally": 1, + "using": 1, + "qed": 1, + "fastforce": 1, + "intro": 1, + "end": 1 }, - "BlitzBasic": { - "Local": 34, - "bk": 3, - "CreateBank": 5, - "(": 125, - ")": 126, - "PokeFloat": 3, - "-": 24, - "Print": 13, - "Bin": 4, - "PeekInt": 4, - "%": 6, - "Shl": 7, - "f": 5, - "ff": 1, - "+": 11, - "Hex": 2, - "FloatToHalf": 3, - "HalfToFloat": 1, - "FToI": 2, - "WaitKey": 2, - "End": 58, - ";": 57, - "Half": 1, - "precision": 2, - "bit": 2, - "arithmetic": 2, - "library": 2, - "Global": 2, - "Half_CBank_": 13, - "Function": 101, - "f#": 3, - "If": 25, - "Then": 18, - "Return": 36, - "HalfToFloat#": 1, - "h": 4, - "signBit": 6, - "exponent": 22, - "fraction": 9, - "fBits": 8, - "And": 8, - "<": 18, - "Shr": 3, - "F": 3, - "FF": 2, - "ElseIf": 1, - "Or": 4, - "PokeInt": 2, - "PeekFloat": 1, - "F800000": 1, - "FFFFF": 1, - "Abs": 1, - "*": 2, - "Sgn": 1, - "Else": 7, - "EndIf": 7, - "HalfAdd": 1, - "l": 84, - "r": 12, - "HalfSub": 1, - "HalfMul": 1, - "HalfDiv": 1, - "HalfLT": 1, - "HalfGT": 1, - "Double": 2, - "DoubleOut": 1, + "DM": { + "#define": 4, + "PI": 6, + "#if": 1, + "G": 1, + "#elif": 1, + "I": 1, + "#else": 1, + "K": 1, + "#endif": 1, + "var/GlobalCounter": 1, + "var/const/CONST_VARIABLE": 1, + "var/list/MyList": 1, + "list": 3, + "(": 17, + "new": 1, + "/datum/entity": 2, + ")": 17, + "var/list/EmptyList": 1, "[": 2, "]": 2, - "Double_CBank_": 1, - "DoubleToFloat#": 1, - "d": 1, - "FloatToDouble": 1, - "IntToDouble": 1, - "i": 49, - "SefToDouble": 1, - "s": 12, - "e": 4, - "DoubleAdd": 1, - "DoubleSub": 1, - "DoubleMul": 1, - "DoubleDiv": 1, - "DoubleLT": 1, - "DoubleGT": 1, - "IDEal": 3, - "Editor": 3, - "Parameters": 3, - "F#1A#20#2F": 1, - "C#Blitz3D": 3, - "linked": 2, - "list": 32, - "container": 1, - "class": 1, - "with": 3, - "thanks": 1, - "to": 11, - "MusicianKool": 3, - "for": 3, - "concept": 1, - "and": 9, - "issue": 1, - "fixes": 1, - "Type": 8, - "LList": 3, - "Field": 10, - "head_.ListNode": 1, - "tail_.ListNode": 1, - "ListNode": 8, - "pv_.ListNode": 1, - "nx_.ListNode": 1, - "Value": 37, - "Iterator": 2, - "l_.LList": 1, - "cn_.ListNode": 1, - "cni_": 8, - "Create": 4, - "a": 46, - "new": 4, - "object": 2, - "CreateList.LList": 1, - "l.LList": 20, - "New": 11, - "head_": 35, - "tail_": 34, - "nx_": 33, - "caps": 1, - "pv_": 27, - "These": 1, - "make": 1, - "it": 1, - "more": 1, - "or": 4, - "less": 1, - "safe": 1, - "iterate": 2, - "freely": 1, - "Free": 1, - "all": 3, - "elements": 4, - "not": 4, - "any": 1, - "values": 4, - "FreeList": 1, - "ClearList": 2, - "Delete": 6, - "Remove": 7, - "the": 52, - "from": 15, - "does": 1, - "free": 1, - "n.ListNode": 12, - "While": 7, - "n": 54, - "nx.ListNode": 1, - "nx": 1, - "Wend": 6, - "Count": 1, - "number": 1, - "of": 16, - "in": 4, - "slow": 3, - "ListLength": 2, - "i.Iterator": 6, - "GetIterator": 3, - "elems": 4, - "EachIn": 5, - "True": 4, - "if": 2, - "contains": 1, - "given": 7, - "value": 16, - "ListContains": 1, - "ListFindNode": 2, - "Null": 15, - "intvalues": 1, - "bank": 8, - "ListFromBank.LList": 1, - "CreateList": 2, - "size": 4, - "BankSize": 1, - "p": 7, - "For": 6, - "To": 6, - "Step": 2, - "ListAddLast": 2, - "Next": 7, - "containing": 3, - "ListToBank": 1, - "Swap": 1, - "contents": 1, - "two": 1, - "objects": 1, - "SwapLists": 1, - "l1.LList": 1, - "l2.LList": 1, - "tempH.ListNode": 1, - "l1": 4, - "tempT.ListNode": 1, - "l2": 4, - "tempH": 1, - "tempT": 1, - "same": 1, - "as": 2, - "first": 5, - "CopyList.LList": 1, - "lo.LList": 1, - "ln.LList": 1, - "lo": 1, - "ln": 2, - "Reverse": 1, - "order": 1, - "ReverseList": 1, - "n1.ListNode": 1, - "n2.ListNode": 1, - "tmp.ListNode": 1, - "n1": 5, - "n2": 6, - "tmp": 4, - "Search": 1, - "retrieve": 1, - "node": 8, - "ListFindNode.ListNode": 1, - "Append": 1, - "end": 5, - "fast": 2, - "return": 7, - "ListAddLast.ListNode": 1, - "Attach": 1, - "start": 13, - "ListAddFirst.ListNode": 1, - "occurence": 1, - "ListRemove": 1, - "RemoveListNode": 6, - "element": 4, - "at": 5, - "position": 4, - "backwards": 2, - "negative": 2, - "index": 13, - "ValueAtIndex": 1, - "ListNodeAtIndex": 3, - "invalid": 1, - "ListNodeAtIndex.ListNode": 1, - "Beyond": 1, - "valid": 2, - "Negative": 1, - "count": 1, - "backward": 1, - "Before": 3, - "Replace": 1, - "added": 2, - "by": 3, - "ReplaceValueAtIndex": 1, - "RemoveNodeAtIndex": 1, - "tval": 3, - "Retrieve": 2, - "ListFirst": 1, - "last": 2, - "ListLast": 1, - "its": 2, - "ListRemoveFirst": 1, - "val": 6, - "ListRemoveLast": 1, - "Insert": 3, - "into": 2, - "before": 2, - "specified": 2, - "InsertBeforeNode.ListNode": 1, - "bef.ListNode": 1, - "bef": 7, - "after": 1, - "then": 1, - "InsertAfterNode.ListNode": 1, - "aft.ListNode": 1, - "aft": 7, - "Get": 1, - "an": 4, - "iterator": 4, - "use": 1, - "loop": 2, - "This": 1, - "function": 1, - "means": 1, - "that": 1, - "most": 1, - "programs": 1, - "won": 1, - "available": 1, - "moment": 1, - "l_": 7, - "Exit": 1, - "there": 1, - "wasn": 1, - "t": 1, - "create": 1, - "one": 1, - "cn_": 12, - "No": 1, - "especial": 1, - "reason": 1, - "why": 1, - "this": 2, - "has": 1, - "be": 1, - "anything": 1, - "but": 1, - "meh": 1, - "Use": 1, - "argument": 1, - "over": 1, - "members": 1, - "Still": 1, - "items": 1, - "Disconnect": 1, - "having": 1, - "reached": 1, - "False": 3, - "currently": 1, - "pointed": 1, - "IteratorRemove": 1, - "temp.ListNode": 1, - "temp": 1, - "Call": 1, - "breaking": 1, - "out": 1, - "disconnect": 1, - "IteratorBreak": 1, - "F#5#A#10#18#2A#32#3E#47#4C#58#66#6F#78#8F#9B#A9#B7#BD#C5#CC": 1, - "F#E3#E9#EF#F4#F9#103#10D#11B#12B#13F#152#163": 1, - "result": 4, - "s.Sum3Obj": 2, - "Sum3Obj": 6, - "Handle": 2, - "MilliSecs": 4, - "Sum3_": 2, - "MakeSum3Obj": 2, - "Sum3": 2, - "b": 7, - "c": 7, - "isActive": 4, - "Last": 1, - "Restore": 1, - "label": 1, - "Read": 1, - "foo": 1, - ".label": 1, - "Data": 1, - "a_": 2, - "a.Sum3Obj": 1, - "Object.Sum3Obj": 1, - "return_": 2, - "First": 1 - }, - "Bluespec": { - "package": 2, - "TbTL": 1, - ";": 156, - "import": 1, - "TL": 6, - "*": 1, - "interface": 2, - "Lamp": 3, - "method": 42, - "Bool": 32, - "changed": 2, - "Action": 17, - "show_offs": 2, - "show_ons": 2, - "reset": 2, - "endinterface": 2, - "module": 3, - "mkLamp#": 1, - "(": 158, - "String": 1, - "name": 3, - "lamp": 5, - ")": 163, - "Reg#": 15, - "prev": 5, - "<": 44, - "-": 29, - "mkReg": 15, - "False": 9, - "if": 9, - "&&": 3, - "write": 2, - "+": 7, - "endmethod": 8, - "endmodule": 3, - "mkTest": 1, - "let": 1, - "dut": 2, - "sysTL": 3, - "Bit#": 1, - "ctr": 8, - "carN": 4, - "carS": 2, - "carE": 2, - "carW": 2, - "lamps": 15, - "[": 17, - "]": 17, - "mkLamp": 12, - "dut.lampRedNS": 1, - "dut.lampAmberNS": 1, - "dut.lampGreenNS": 1, - "dut.lampRedE": 1, - "dut.lampAmberE": 1, - "dut.lampGreenE": 1, - "dut.lampRedW": 1, - "dut.lampAmberW": 1, - "dut.lampGreenW": 1, - "dut.lampRedPed": 1, - "dut.lampAmberPed": 1, - "dut.lampGreenPed": 1, - "rule": 10, - "start": 1, - "dumpvars": 1, - "endrule": 10, - "detect_cars": 1, - "dut.set_car_state_N": 1, - "dut.set_car_state_S": 1, - "dut.set_car_state_E": 1, - "dut.set_car_state_W": 1, - "go": 1, - "True": 6, - "<=>": 3, - "12_000": 1, - "ped_button_push": 4, - "stop": 1, - "display": 2, - "finish": 1, - "function": 10, - "do_offs": 2, - "l": 3, - "l.show_offs": 1, - "do_ons": 2, - "l.show_ons": 1, - "do_reset": 2, - "l.reset": 1, - "do_it": 4, - "f": 2, - "action": 3, - "for": 3, - "Integer": 3, - "i": 15, - "endaction": 3, - "endfunction": 7, - "any_changes": 2, - "b": 12, - "||": 7, - ".changed": 1, - "return": 9, - "show": 1, - "time": 1, - "endpackage": 2, - "set_car_state_N": 2, - "x": 8, - "set_car_state_S": 2, - "set_car_state_E": 2, - "set_car_state_W": 2, - "lampRedNS": 2, - "lampAmberNS": 2, - "lampGreenNS": 2, - "lampRedE": 2, - "lampAmberE": 2, - "lampGreenE": 2, - "lampRedW": 2, - "lampAmberW": 2, - "lampGreenW": 2, - "lampRedPed": 2, - "lampAmberPed": 2, - "lampGreenPed": 2, - "typedef": 3, - "enum": 1, - "{": 1, - "AllRed": 4, - "GreenNS": 9, - "AmberNS": 5, - "GreenE": 8, - "AmberE": 5, - "GreenW": 8, - "AmberW": 5, - "GreenPed": 4, - "AmberPed": 3, - "}": 1, - "TLstates": 11, - "deriving": 1, - "Eq": 1, - "Bits": 1, - "UInt#": 2, - "Time32": 9, - "CtrSize": 3, - "allRedDelay": 2, - "amberDelay": 2, - "nsGreenDelay": 2, - "ewGreenDelay": 3, - "pedGreenDelay": 1, - "pedAmberDelay": 1, - "clocks_per_sec": 2, - "state": 21, - "next_green": 8, - "secs": 7, - "ped_button_pushed": 4, - "car_present_N": 3, - "car_present_S": 3, - "car_present_E": 4, - "car_present_W": 4, - "car_present_NS": 3, - "cycle_ctr": 6, - "dec_cycle_ctr": 1, - "Rules": 5, - "low_priority_rule": 2, - "rules": 4, - "inc_sec": 1, - "endrules": 4, - "next_state": 8, - "ns": 4, - "0": 2, - "green_seq": 7, - "case": 2, - "endcase": 2, - "car_present": 4, - "make_from_green_rule": 5, - "green_state": 2, - "delay": 2, - "car_is_present": 2, - "from_green": 1, - "make_from_amber_rule": 5, - "amber_state": 2, - "ng": 2, - "from_amber": 1, - "hprs": 10, - "7": 1, - "1": 1, - "2": 1, - "3": 1, - "4": 1, - "5": 1, - "6": 1, - "fromAllRed": 2, - "else": 4, - "noAction": 1, - "high_priority_rules": 4, - "rJoin": 1, - "addRules": 1, - "preempts": 1 - }, - "Brightscript": { - "**": 17, - "Simple": 1, - "Grid": 2, - "Screen": 2, - "Demonstration": 1, - "App": 1, - "Copyright": 1, - "(": 32, - "c": 1, - ")": 31, - "Roku": 1, - "Inc.": 1, - "All": 3, - "Rights": 1, - "Reserved.": 1, - "************************************************************": 2, - "Sub": 2, - "Main": 1, - "set": 2, - "to": 10, - "go": 1, - "time": 1, - "get": 1, - "started": 1, - "while": 4, - "gridstyle": 7, - "<": 1, - "print": 7, - ";": 10, - "screen": 5, - "preShowGridScreen": 2, - "showGridScreen": 2, - "end": 2, - "End": 4, - "Set": 1, - "the": 17, - "configurable": 1, - "theme": 3, - "attributes": 2, - "for": 10, - "application": 1, - "Configure": 1, - "custom": 1, - "overhang": 1, - "and": 4, - "Logo": 1, - "are": 2, - "artwork": 2, - "colors": 1, - "offsets": 1, - "specific": 1, - "app": 1, - "******************************************************": 4, - "Screens": 1, - "can": 2, - "make": 1, - "slight": 1, - "adjustments": 1, - "default": 1, - "individual": 1, - "attributes.": 1, - "these": 1, - "greyscales": 1, - "theme.GridScreenBackgroundColor": 1, - "theme.GridScreenMessageColor": 1, - "theme.GridScreenRetrievingColor": 1, - "theme.GridScreenListNameColor": 1, - "used": 1, - "in": 3, - "theme.CounterTextLeft": 1, - "theme.CounterSeparator": 1, - "theme.CounterTextRight": 1, - "theme.GridScreenLogoHD": 1, - "theme.GridScreenLogoOffsetHD_X": 1, - "theme.GridScreenLogoOffsetHD_Y": 1, - "theme.GridScreenOverhangHeightHD": 1, - "theme.GridScreenLogoSD": 1, - "theme.GridScreenOverhangHeightSD": 1, - "theme.GridScreenLogoOffsetSD_X": 1, - "theme.GridScreenLogoOffsetSD_Y": 1, - "theme.GridScreenFocusBorderSD": 1, - "theme.GridScreenFocusBorderHD": 1, - "use": 1, - "your": 1, - "own": 1, - "description": 1, - "background": 1, - "theme.GridScreenDescriptionOffsetSD": 1, - "theme.GridScreenDescriptionOffsetHD": 1, - "return": 5, - "Function": 5, - "Perform": 1, - "any": 1, - "startup/initialization": 1, - "stuff": 1, - "prior": 1, - "style": 6, - "as": 2, - "string": 3, - "As": 3, - "Object": 2, - "m.port": 3, - "CreateObject": 2, - "screen.SetMessagePort": 1, - "screen.": 1, - "The": 1, - "will": 3, - "show": 1, - "retreiving": 1, - "categoryList": 4, - "getCategoryList": 1, - "[": 3, - "]": 4, - "+": 1, - "screen.setupLists": 1, - "categoryList.count": 2, - "screen.SetListNames": 1, - "StyleButtons": 3, - "getGridControlButtons": 1, - "screen.SetContentList": 2, - "i": 3, - "-": 15, - "getShowsForCategoryItem": 1, - "screen.Show": 1, - "true": 1, - "msg": 3, - "wait": 1, - "getmessageport": 1, - "does": 1, - "not": 2, - "work": 1, - "on": 1, - "gridscreen": 1, - "type": 2, - "if": 3, - "then": 3, - "msg.GetMessage": 1, - "msg.GetIndex": 3, - "msg.getData": 2, - "msg.isListItemFocused": 1, - "else": 1, - "msg.isListItemSelected": 1, - "row": 2, - "selection": 3, - "yes": 1, - "so": 2, - "we": 3, - "come": 1, - "back": 1, - "with": 2, - "new": 1, - ".Title": 1, - "endif": 1, - "**********************************************************": 1, - "this": 3, - "function": 1, - "passing": 1, - "an": 1, - "roAssociativeArray": 2, - "be": 2, - "sufficient": 1, - "springboard": 2, - "display": 2, - "add": 1, - "code": 1, - "create": 1, - "now": 1, - "do": 1, - "nothing": 1, - "Return": 1, - "list": 1, - "of": 5, - "categories": 1, - "filter": 1, - "all": 1, - "categories.": 1, - "just": 2, - "static": 1, - "data": 2, - "example.": 1, - "********************************************************************": 1, - "ContentMetaData": 1, - "objects": 1, - "shows": 1, - "category.": 1, - "For": 1, - "example": 1, - "cheat": 1, - "but": 2, - "ideally": 1, - "you": 1, - "dynamically": 1, - "content": 2, - "each": 1, - "category": 1, - "is": 1, - "dynamic": 1, - "s": 1, - "one": 3, - "small": 1, - "step": 1, - "a": 4, - "man": 1, - "giant": 1, - "leap": 1, - "mankind.": 1, - "http": 14, - "//upload.wikimedia.org/wikipedia/commons/1/1e/Apollo_11_first_step.jpg": 2, - "I": 2, - "have": 2, - "Dream": 1, - "PG": 1, - "dream": 1, - "that": 1, - "my": 1, - "four": 1, - "little": 1, - "children": 1, - "day": 1, - "live": 1, - "nation": 1, - "where": 1, - "they": 1, - "judged": 1, - "by": 2, - "color": 1, - "their": 2, - "skin": 1, - "character.": 1, - "//upload.wikimedia.org/wikipedia/commons/8/81/Martin_Luther_King_": 2, - "_March_on_Washington.jpg": 2, - "Flat": 6, - "Movie": 2, - "HD": 6, - "x2": 4, - "SD": 5, - "Netflix": 1, - "//upload.wikimedia.org/wikipedia/commons/4/43/Gold_star_on_blue.gif": 2, - "Landscape": 1, - "x3": 6, - "Channel": 1, - "Store": 1, - "//upload.wikimedia.org/wikipedia/commons/thumb/9/96/Dunkery_Hill.jpg/800px": 2, - "Dunkery_Hill.jpg": 2, - "Portrait": 1, - "x4": 1, - "posters": 3, - "//upload.wikimedia.org/wikipedia/commons/9/9f/Kane_George_Gurnett.jpg": 2, - "Square": 1, - "x1": 1, - "//upload.wikimedia.org/wikipedia/commons/thumb/d/de/SQUARE_SHAPE.svg/536px": 2, - "SQUARE_SHAPE.svg.png": 2, - "x9": 1, - "//upload.wikimedia.org/wikipedia/commons/thumb/2/22/": 2, - "%": 8, - "C3": 4, - "cran_TV_plat.svg/200px": 2, - "cran_TV_plat.svg.png": 2, - "}": 1, - "buttons": 1 - }, - "C": { - "#include": 154, - "const": 358, - "char": 530, - "*blob_type": 2, - ";": 5465, - "struct": 360, - "blob": 6, - "*lookup_blob": 2, - "(": 6243, - "unsigned": 140, - "*sha1": 16, - ")": 6245, - "{": 1531, - "object": 41, - "*obj": 9, - "lookup_object": 2, - "sha1": 20, - "if": 1015, - "obj": 48, - "return": 529, - "create_object": 2, - "OBJ_BLOB": 3, - "alloc_blob_node": 1, - "-": 1803, - "type": 36, - "error": 96, - "sha1_to_hex": 8, - "typename": 2, - "NULL": 330, - "}": 1547, - "*": 261, - "int": 446, - "parse_blob_buffer": 2, - "*item": 10, - "void": 288, - "*buffer": 6, - "long": 105, - "size": 120, - "item": 24, - "object.parsed": 4, - "#ifndef": 89, - "BLOB_H": 2, - "#define": 920, - "extern": 38, - "#endif": 243, - "BOOTSTRAP_H": 2, - "": 8, - "__GNUC__": 8, - "typedef": 191, - "*true": 1, - "*false": 1, - "*eof": 1, - "*empty_list": 1, - "*global_enviroment": 1, - "enum": 30, - "obj_type": 1, - "scm_bool": 1, - "scm_empty_list": 1, - "scm_eof": 1, - "scm_char": 1, - "scm_int": 1, - "scm_pair": 1, - "scm_symbol": 1, - "scm_prim_fun": 1, - "scm_lambda": 1, - "scm_str": 1, - "scm_file": 1, - "*eval_proc": 1, - "*maybe_add_begin": 1, - "*code": 2, - "init_enviroment": 1, - "*env": 4, - "eval_err": 1, - "*msg": 7, - "__attribute__": 1, - "noreturn": 1, - "define_var": 1, - "*var": 4, - "*val": 6, - "set_var": 1, - "*get_var": 1, - "*cond2nested_if": 1, - "*cond": 1, - "*let2lambda": 1, - "*let": 1, - "*and2nested_if": 1, - "*and": 1, - "*or2nested_if": 1, - "*or": 1, - "git_cache_init": 1, - "git_cache": 4, - "*cache": 4, - "size_t": 52, - "git_cached_obj_freeptr": 1, - "free_ptr": 2, - "<": 219, - "git__size_t_powerof2": 1, - "cache": 26, - "size_mask": 6, - "lru_count": 1, - "free_obj": 4, - "git_mutex_init": 1, - "&": 442, - "lock": 6, - "nodes": 10, - "git__malloc": 3, - "sizeof": 71, - "git_cached_obj": 5, - "GITERR_CHECK_ALLOC": 3, - "memset": 4, - "git_cache_free": 1, - "i": 410, - "for": 88, - "+": 551, - "[": 601, - "]": 601, - "git_cached_obj_decref": 3, - "git__free": 15, - "*git_cache_get": 1, - "git_oid": 7, - "*oid": 2, - "uint32_t": 144, - "hash": 12, - "*node": 2, - "*result": 1, - "memcpy": 35, - "oid": 17, - "id": 13, - "git_mutex_lock": 2, - "node": 9, - "&&": 248, - "git_oid_cmp": 6, - "git_cached_obj_incref": 3, - "result": 48, - "git_mutex_unlock": 2, - "*git_cache_try_store": 1, - "*_entry": 1, - "*entry": 2, - "_entry": 1, - "entry": 17, - "else": 190, - "save_commit_buffer": 3, - "*commit_type": 2, - "static": 455, - "commit": 59, - "*check_commit": 1, - "quiet": 5, - "OBJ_COMMIT": 5, - "*lookup_commit_reference_gently": 2, - "deref_tag": 1, - "parse_object": 1, - "check_commit": 2, - "*lookup_commit_reference": 2, - "lookup_commit_reference_gently": 1, - "*lookup_commit_or_die": 2, - "*ref_name": 2, - "*c": 69, - "lookup_commit_reference": 2, - "c": 252, - "die": 5, - "_": 3, - "ref_name": 2, - "hashcmp": 2, - "object.sha1": 8, - "warning": 1, - "*lookup_commit": 2, - "alloc_commit_node": 1, - "*lookup_commit_reference_by_name": 2, - "*name": 12, - "*commit": 10, - "get_sha1": 1, - "name": 28, - "||": 141, - "parse_commit": 3, - "parse_commit_date": 2, - "*buf": 10, - "*tail": 2, - "*dateptr": 1, - "buf": 57, - "tail": 12, - "memcmp": 6, - "while": 70, - "dateptr": 2, - "strtoul": 2, - "commit_graft": 13, - "**commit_graft": 1, - "commit_graft_alloc": 4, - "commit_graft_nr": 5, - "commit_graft_pos": 2, - "lo": 6, - "hi": 5, - "mi": 5, - "/": 9, - "*graft": 3, - "cmp": 9, - "graft": 10, - "register_commit_graft": 2, - "ignore_dups": 2, - "pos": 7, - "free": 62, - "alloc_nr": 1, - "xrealloc": 2, - "parse_commit_buffer": 3, - "buffer": 10, - "*bufptr": 1, - "parent": 7, - "commit_list": 35, - "**pptr": 1, - "<=>": 16, - "bufptr": 12, - "46": 1, - "tree": 3, - "5": 1, - "45": 1, - "n": 70, - "bogus": 1, - "s": 154, - "get_sha1_hex": 2, - "lookup_tree": 1, - "pptr": 5, - "parents": 4, - "lookup_commit_graft": 1, - "*new_parent": 2, - "48": 1, - "7": 1, - "47": 1, - "bad": 1, - "in": 11, - "nr_parent": 3, - "grafts_replace_parents": 1, - "continue": 20, - "new_parent": 6, - "lookup_commit": 2, - "commit_list_insert": 2, - "next": 8, - "date": 5, - "object_type": 1, - "ret": 142, - "read_sha1_file": 1, - "find_commit_subject": 2, - "*commit_buffer": 2, - "**subject": 2, - "*eol": 1, - "*p": 9, - "commit_buffer": 1, - "a": 80, - "b_date": 3, - "b": 66, - "a_date": 2, - "*commit_list_get_next": 1, - "*a": 9, - "commit_list_set_next": 1, - "*next": 6, - "commit_list_sort_by_date": 2, - "**list": 5, - "*list": 2, - "llist_mergesort": 1, - "peel_to_type": 1, - "util": 3, - "merge_remote_desc": 3, - "*desc": 1, - "desc": 5, - "xmalloc": 2, - "strdup": 1, - "**commit_list_append": 2, - "**next": 2, - "*new": 1, - "new": 4, - "COMMIT_H": 2, - "*util": 1, - "indegree": 1, - "*parents": 4, - "*tree": 3, - "decoration": 1, - "name_decoration": 3, - "*commit_list_insert": 1, - "commit_list_count": 1, - "*l": 1, - "*commit_list_insert_by_date": 1, - "free_commit_list": 1, - "cmit_fmt": 3, - "CMIT_FMT_RAW": 1, - "CMIT_FMT_MEDIUM": 2, - "CMIT_FMT_DEFAULT": 1, - "CMIT_FMT_SHORT": 1, - "CMIT_FMT_FULL": 1, - "CMIT_FMT_FULLER": 1, - "CMIT_FMT_ONELINE": 1, - "CMIT_FMT_EMAIL": 1, - "CMIT_FMT_USERFORMAT": 1, - "CMIT_FMT_UNSPECIFIED": 1, - "pretty_print_context": 6, - "fmt": 4, - "abbrev": 1, - "*subject": 1, - "*after_subject": 1, - "preserve_subject": 1, - "date_mode": 2, - "date_mode_explicit": 1, - "need_8bit_cte": 2, - "show_notes": 1, - "reflog_walk_info": 1, - "*reflog_info": 1, - "*output_encoding": 2, - "userformat_want": 2, - "notes": 1, - "has_non_ascii": 1, - "*text": 1, - "rev_info": 2, - "*logmsg_reencode": 1, - "*reencode_commit_message": 1, - "**encoding_p": 1, - "get_commit_format": 1, - "*arg": 1, - "*format_subject": 1, - "strbuf": 12, - "*sb": 7, - "*line_separator": 1, - "userformat_find_requirements": 1, - "*fmt": 2, - "*w": 2, - "format_commit_message": 1, - "*format": 2, - "*context": 1, - "pretty_print_commit": 1, - "*pp": 4, - "pp_commit_easy": 1, - "pp_user_info": 1, - "*what": 1, - "*line": 1, - "*encoding": 2, - "pp_title_line": 1, - "**msg_p": 2, - "pp_remainder": 1, - "indent": 1, - "*pop_most_recent_commit": 1, - "mark": 3, - "*pop_commit": 1, - "**stack": 1, - "clear_commit_marks": 1, - "clear_commit_marks_for_object_array": 1, - "object_array": 2, - "sort_in_topological_order": 1, - "**": 6, - "list": 1, - "lifo": 1, - "FLEX_ARRAY": 1, - "*read_graft_line": 1, - "len": 30, - "*lookup_commit_graft": 1, - "*get_merge_bases": 1, - "*rev1": 1, - "*rev2": 1, - "cleanup": 12, - "*get_merge_bases_many": 1, - "*one": 1, - "**twos": 1, - "*get_octopus_merge_bases": 1, - "*in": 1, - "register_shallow": 1, - "unregister_shallow": 1, - "for_each_commit_graft": 1, - "each_commit_graft_fn": 1, - "is_repository_shallow": 1, - "*get_shallow_commits": 1, - "*heads": 2, - "depth": 2, - "shallow_flag": 1, - "not_shallow_flag": 1, - "is_descendant_of": 1, - "in_merge_bases": 1, - "interactive_add": 1, - "argc": 26, - "**argv": 6, - "*prefix": 7, - "patch": 1, - "run_add_interactive": 1, - "*revision": 1, - "*patch_mode": 1, - "**pathspec": 1, - "inline": 3, - "single_parent": 1, - "*reduce_heads": 1, - "commit_extra_header": 7, - "*key": 5, - "*value": 5, - "append_merge_tag_headers": 1, - "***tail": 1, - "commit_tree": 1, - "*ret": 20, - "*author": 2, - "*sign_commit": 2, - "commit_tree_extended": 1, - "*read_commit_extra_headers": 1, - "*read_commit_extra_header_lines": 1, - "free_commit_extra_headers": 1, - "*extra": 1, - "merge_remote_util": 1, - "*get_merge_parent": 1, - "parse_signed_commit": 1, - "*message": 1, - "*signature": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "#ifdef": 66, - "CONFIG_SMP": 1, - "DEFINE_MUTEX": 1, - "cpu_add_remove_lock": 3, - "cpu_maps_update_begin": 9, - "mutex_lock": 5, - "cpu_maps_update_done": 9, - "mutex_unlock": 6, - "RAW_NOTIFIER_HEAD": 1, - "cpu_chain": 4, - "cpu_hotplug_disabled": 7, - "CONFIG_HOTPLUG_CPU": 2, - "task_struct": 5, - "*active_writer": 1, - "mutex": 1, - "refcount": 2, - "cpu_hotplug": 1, - ".active_writer": 1, - ".lock": 1, - "__MUTEX_INITIALIZER": 1, - "cpu_hotplug.lock": 8, - ".refcount": 1, - "get_online_cpus": 2, - "might_sleep": 1, - "cpu_hotplug.active_writer": 6, - "current": 5, - "cpu_hotplug.refcount": 3, - "EXPORT_SYMBOL_GPL": 4, - "put_online_cpus": 2, - "unlikely": 54, - "wake_up_process": 1, - "cpu_hotplug_begin": 4, - "likely": 22, - "break": 244, - "__set_current_state": 1, - "TASK_UNINTERRUPTIBLE": 1, - "schedule": 1, - "cpu_hotplug_done": 4, - "#else": 94, - "__ref": 6, - "register_cpu_notifier": 2, - "notifier_block": 3, - "*nb": 3, - "raw_notifier_chain_register": 1, - "nb": 2, - "__cpu_notify": 6, - "val": 20, - "*v": 3, - "nr_to_call": 2, - "*nr_calls": 1, - "__raw_notifier_call_chain": 1, - "v": 11, - "nr_calls": 9, - "notifier_to_errno": 1, - "cpu_notify": 5, - "cpu_notify_nofail": 4, - "BUG_ON": 4, - "EXPORT_SYMBOL": 8, - "unregister_cpu_notifier": 2, - "raw_notifier_chain_unregister": 1, - "clear_tasks_mm_cpumask": 1, - "cpu": 57, - "WARN_ON": 1, - "cpu_online": 5, - "rcu_read_lock": 1, - "for_each_process": 2, - "p": 60, - "*t": 2, - "t": 32, - "find_lock_task_mm": 1, - "cpumask_clear_cpu": 5, - "mm_cpumask": 1, - "mm": 1, - "task_unlock": 1, - "rcu_read_unlock": 1, - "check_for_tasks": 2, - "write_lock_irq": 1, - "tasklist_lock": 2, - "task_cpu": 1, - "state": 104, - "TASK_RUNNING": 1, - "utime": 1, - "stime": 1, - "printk": 12, - "KERN_WARNING": 3, - "comm": 1, - "task_pid_nr": 1, - "flags": 89, - "write_unlock_irq": 1, - "take_cpu_down_param": 3, - "mod": 13, - "*hcpu": 3, - "take_cpu_down": 2, - "*_param": 1, - "*param": 1, - "_param": 1, - "err": 38, - "__cpu_disable": 1, - "CPU_DYING": 1, - "|": 132, - "param": 2, - "hcpu": 10, - "_cpu_down": 3, - "tasks_frozen": 4, - "CPU_TASKS_FROZEN": 2, - "tcd_param": 2, - ".mod": 1, - ".hcpu": 1, - "num_online_cpus": 2, - "EBUSY": 3, - "EINVAL": 6, - "CPU_DOWN_PREPARE": 1, - "CPU_DOWN_FAILED": 2, - "__func__": 2, - "goto": 159, - "out_release": 3, - "__stop_machine": 1, - "cpumask_of": 1, - "idle_cpu": 1, - "cpu_relax": 1, - "__cpu_die": 1, - "CPU_DEAD": 1, - "CPU_POST_DEAD": 1, - "cpu_down": 2, - "out": 18, - "__cpuinit": 3, - "_cpu_up": 3, - "*idle": 1, - "cpu_present": 1, - "idle": 4, - "idle_thread_get": 1, - "IS_ERR": 1, - "PTR_ERR": 1, - "CPU_UP_PREPARE": 1, - "out_notify": 3, - "__cpu_up": 1, - "CPU_ONLINE": 1, - "CPU_UP_CANCELED": 1, - "cpu_up": 2, - "CONFIG_MEMORY_HOTPLUG": 2, - "nid": 5, - "pg_data_t": 1, - "*pgdat": 1, - "cpu_possible": 1, - "KERN_ERR": 5, - "#if": 92, - "defined": 42, - "CONFIG_IA64": 1, - "cpu_to_node": 1, - "node_online": 1, - "mem_online_node": 1, - "pgdat": 3, - "NODE_DATA": 1, - "ENOMEM": 4, - "node_zonelists": 1, - "_zonerefs": 1, - "zone": 1, - "zonelists_mutex": 2, - "build_all_zonelists": 1, - "CONFIG_PM_SLEEP_SMP": 2, - "cpumask_var_t": 1, - "frozen_cpus": 9, - "__weak": 4, - "arch_disable_nonboot_cpus_begin": 2, - "arch_disable_nonboot_cpus_end": 2, - "disable_nonboot_cpus": 1, - "first_cpu": 3, - "cpumask_first": 1, - "cpu_online_mask": 3, - "cpumask_clear": 2, - "for_each_online_cpu": 1, - "cpumask_set_cpu": 5, - "arch_enable_nonboot_cpus_begin": 2, - "arch_enable_nonboot_cpus_end": 2, - "enable_nonboot_cpus": 1, - "cpumask_empty": 1, - "KERN_INFO": 2, - "for_each_cpu": 1, - "__init": 2, - "alloc_frozen_cpus": 2, - "alloc_cpumask_var": 1, - "GFP_KERNEL": 1, - "__GFP_ZERO": 1, - "core_initcall": 2, - "cpu_hotplug_disable_before_freeze": 2, - "cpu_hotplug_enable_after_thaw": 2, - "cpu_hotplug_pm_callback": 2, - "action": 2, - "*ptr": 1, - "switch": 46, - "case": 273, - "PM_SUSPEND_PREPARE": 1, - "PM_HIBERNATION_PREPARE": 1, - "PM_POST_SUSPEND": 1, - "PM_POST_HIBERNATION": 1, - "default": 33, - "NOTIFY_DONE": 1, - "NOTIFY_OK": 1, - "cpu_hotplug_pm_sync_init": 2, - "pm_notifier": 1, - "notify_cpu_starting": 1, - "CPU_STARTING": 1, - "cpumask_test_cpu": 1, - "CPU_STARTING_FROZEN": 1, - "MASK_DECLARE_1": 3, - "x": 57, - "UL": 1, - "<<": 56, - "MASK_DECLARE_2": 3, - "MASK_DECLARE_4": 3, - "MASK_DECLARE_8": 9, - "cpu_bit_bitmap": 2, - "BITS_PER_LONG": 2, - "BITS_TO_LONGS": 1, - "NR_CPUS": 2, - "DECLARE_BITMAP": 6, - "cpu_all_bits": 2, - "CPU_BITS_ALL": 2, - "CONFIG_INIT_ALL_POSSIBLE": 1, - "cpu_possible_bits": 6, - "CONFIG_NR_CPUS": 5, - "__read_mostly": 5, - "cpumask": 7, - "*const": 4, - "cpu_possible_mask": 2, - "to_cpumask": 15, - "cpu_online_bits": 5, - "cpu_present_bits": 5, - "cpu_present_mask": 2, - "cpu_active_bits": 4, - "cpu_active_mask": 2, - "set_cpu_possible": 1, - "bool": 6, - "possible": 2, - "set_cpu_present": 1, - "present": 2, - "set_cpu_online": 1, - "online": 2, - "set_cpu_active": 1, - "active": 2, - "init_cpu_present": 1, - "*src": 3, - "cpumask_copy": 3, - "src": 16, - "init_cpu_possible": 1, - "init_cpu_online": 1, - "*diff_prefix_from_pathspec": 1, - "git_strarray": 2, - "*pathspec": 2, - "git_buf": 3, - "prefix": 34, - "GIT_BUF_INIT": 3, - "*scan": 2, - "git_buf_common_prefix": 1, - "pathspec": 15, - "scan": 4, - "prefix.ptr": 2, - "git__iswildcard": 1, - "git_buf_truncate": 1, - "prefix.size": 1, - "git_buf_detach": 1, - "git_buf_free": 4, - "diff_pathspec_is_interesting": 2, - "*str": 1, - "count": 17, - "false": 77, - "true": 73, - "str": 162, - "strings": 5, - "diff_path_matches_pathspec": 3, - "git_diff_list": 17, - "*diff": 8, - "*path": 2, - "git_attr_fnmatch": 4, - "*match": 3, - "diff": 93, - "pathspec.length": 1, - "git_vector_foreach": 4, - "match": 16, - "p_fnmatch": 1, - "pattern": 3, - "path": 20, - "FNM_NOMATCH": 1, - "GIT_ATTR_FNMATCH_HASWILD": 1, - "strncmp": 1, - "length": 58, - "GIT_ATTR_FNMATCH_NEGATIVE": 1, - "git_diff_delta": 19, - "*diff_delta__alloc": 1, - "git_delta_t": 5, - "status": 57, - "*delta": 6, - "git__calloc": 3, - "delta": 54, - "old_file.path": 12, - "git_pool_strdup": 3, - "pool": 12, - "new_file.path": 6, - "opts.flags": 8, - "GIT_DIFF_REVERSE": 3, - "GIT_DELTA_ADDED": 4, - "GIT_DELTA_DELETED": 7, - "*diff_delta__dup": 1, - "*d": 1, - "git_pool": 4, - "*pool": 3, - "d": 16, - "fail": 19, - "*diff_delta__merge_like_cgit": 1, - "*b": 6, - "*dup": 1, - "diff_delta__dup": 3, - "dup": 15, - "new_file.oid": 7, - "git_oid_cpy": 5, - "new_file.mode": 4, - "new_file.size": 3, - "new_file.flags": 4, - "old_file.oid": 3, - "GIT_DELTA_UNTRACKED": 5, - "GIT_DELTA_IGNORED": 5, - "GIT_DELTA_UNMODIFIED": 11, - "diff_delta__from_one": 5, - "git_index_entry": 8, - "GIT_DIFF_INCLUDE_IGNORED": 1, - "GIT_DIFF_INCLUDE_UNTRACKED": 1, - "diff_delta__alloc": 2, - "assert": 41, - "GIT_DELTA_MODIFIED": 3, - "old_file.mode": 2, - "mode": 11, - "old_file.size": 1, - "file_size": 6, - "old_file.flags": 2, - "GIT_DIFF_FILE_VALID_OID": 4, - "git_vector_insert": 4, - "deltas": 8, - "diff_delta__from_two": 2, - "*old_entry": 1, - "*new_entry": 1, - "*new_oid": 1, - "GIT_DIFF_INCLUDE_UNMODIFIED": 1, - "*temp": 1, - "old_entry": 5, - "new_entry": 5, - "temp": 11, - "new_oid": 3, - "git_oid_iszero": 2, - "*diff_strdup_prefix": 1, - "strlen": 17, - "git_pool_strcat": 1, - "git_pool_strndup": 1, - "diff_delta__cmp": 3, - "*da": 1, - "*db": 3, - "strcmp": 20, - "da": 2, - "db": 10, - "config_bool": 5, - "git_config": 3, - "*cfg": 2, - "defvalue": 2, - "git_config_get_bool": 1, - "cfg": 6, - "giterr_clear": 1, - "*git_diff_list_alloc": 1, - "git_repository": 7, - "*repo": 7, - "git_diff_options": 7, - "*opts": 6, - "repo": 23, - "git_vector_init": 3, - "git_pool_init": 2, - "git_repository_config__weakptr": 1, - "diffcaps": 13, - "GIT_DIFFCAPS_HAS_SYMLINKS": 2, - "GIT_DIFFCAPS_ASSUME_UNCHANGED": 2, - "GIT_DIFFCAPS_TRUST_EXEC_BIT": 2, - "GIT_DIFFCAPS_TRUST_CTIME": 2, - "opts": 24, - "opts.pathspec": 2, - "opts.old_prefix": 4, - "diff_strdup_prefix": 2, - "old_prefix": 2, - "DIFF_OLD_PREFIX_DEFAULT": 1, - "opts.new_prefix": 4, - "new_prefix": 2, - "DIFF_NEW_PREFIX_DEFAULT": 1, - "*swap": 1, - "swap": 9, - "pathspec.count": 2, - "*pattern": 1, - "pathspec.strings": 1, - "GIT_ATTR_FNMATCH_ALLOWSPACE": 1, - "git_attr_fnmatch__parse": 1, - "GIT_ENOTFOUND": 1, - "git_diff_list_free": 3, - "deltas.contents": 1, - "git_vector_free": 3, - "pathspec.contents": 1, - "git_pool_clear": 2, - "oid_for_workdir_item": 2, - "full_path": 3, - "git_buf_joinpath": 1, - "git_repository_workdir": 1, - "S_ISLNK": 2, - "git_odb__hashlink": 1, - "full_path.ptr": 2, - "git__is_sizet": 1, - "giterr_set": 1, - "GITERR_OS": 1, - "fd": 34, - "git_futils_open_ro": 1, - "git_odb__hashfd": 1, - "GIT_OBJ_BLOB": 1, - "p_close": 1, - "EXEC_BIT_MASK": 3, - "maybe_modified": 2, - "git_iterator": 8, - "*old_iter": 2, - "*oitem": 2, - "*new_iter": 2, - "*nitem": 2, - "noid": 4, - "*use_noid": 1, - "omode": 8, - "oitem": 29, - "nmode": 10, - "nitem": 32, - "GIT_UNUSED": 1, - "old_iter": 8, - "S_ISREG": 1, - "GIT_MODE_TYPE": 3, - "GIT_MODE_PERMS_MASK": 1, - "flags_extended": 2, - "GIT_IDXENTRY_INTENT_TO_ADD": 1, - "GIT_IDXENTRY_SKIP_WORKTREE": 1, - "new_iter": 13, - "GIT_ITERATOR_WORKDIR": 2, - "ctime.seconds": 2, - "mtime.seconds": 2, - "GIT_DIFFCAPS_USE_DEV": 1, - "dev": 2, - "ino": 2, - "uid": 2, - "gid": 2, - "S_ISGITLINK": 1, - "git_submodule": 1, - "*sub": 1, - "GIT_DIFF_IGNORE_SUBMODULES": 1, - "git_submodule_lookup": 1, - "sub": 12, - "ignore": 1, - "GIT_SUBMODULE_IGNORE_ALL": 1, - "use_noid": 2, - "diff_from_iterators": 5, - "**diff_ptr": 1, - "ignore_prefix": 6, - "git_diff_list_alloc": 1, - "old_src": 1, - "new_src": 3, - "git_iterator_current": 2, - "git_iterator_advance": 5, - "delta_type": 8, - "git_buf_len": 1, - "git__prefixcmp": 2, - "git_buf_cstr": 1, - "S_ISDIR": 1, - "GIT_DIFF_RECURSE_UNTRACKED_DIRS": 1, - "git_iterator_current_is_ignored": 2, - "git_buf_sets": 1, - "git_iterator_advance_into_directory": 1, - "git_iterator_free": 4, - "*diff_ptr": 2, - "git_diff_tree_to_tree": 1, - "git_tree": 4, - "*old_tree": 3, - "*new_tree": 1, - "**diff": 4, - "diff_prefix_from_pathspec": 4, - "old_tree": 5, - "new_tree": 2, - "git_iterator_for_tree_range": 4, - "git_diff_index_to_tree": 1, - "git_iterator_for_index_range": 2, - "git_diff_workdir_to_index": 1, - "git_iterator_for_workdir_range": 2, - "git_diff_workdir_to_tree": 1, - "git_diff_merge": 1, - "*onto": 1, - "*from": 1, - "onto_pool": 7, - "git_vector": 1, - "onto_new": 6, - "j": 206, - "onto": 7, - "from": 16, - "deltas.length": 4, - "*o": 8, - "GIT_VECTOR_GET": 2, - "*f": 2, - "f": 184, - "o": 80, - "diff_delta__merge_like_cgit": 1, - "git_vector_swap": 1, - "git_pool_swap": 1, - "ATSHOME_LIBATS_DYNARRAY_CATS": 3, - "": 5, - "atslib_dynarray_memcpy": 1, - "atslib_dynarray_memmove": 1, - "memmove": 2, - "//": 262, - "ifndef": 2, - "git_usage_string": 2, - "git_more_info_string": 2, - "N_": 1, - "startup_info": 3, - "git_startup_info": 2, - "use_pager": 8, - "pager_config": 3, - "*cmd": 5, - "want": 3, - "pager_command_config": 2, - "*data": 12, - "data": 69, - "prefixcmp": 3, - "var": 7, - "cmd": 46, - "git_config_maybe_bool": 1, - "value": 9, - "xstrdup": 2, - "check_pager_config": 3, - "c.cmd": 1, - "c.want": 2, - "c.value": 3, - "pager_program": 1, - "commit_pager_choice": 4, - "setenv": 1, - "setup_pager": 1, - "handle_options": 2, - "***argv": 2, - "*argc": 1, - "*envchanged": 1, - "**orig_argv": 1, - "*argv": 6, - "new_argv": 7, - "option_count": 1, - "alias_command": 4, - "trace_argv_printf": 3, - "*argcp": 4, - "subdir": 3, - "chdir": 2, - "die_errno": 3, - "errno": 20, - "saved_errno": 1, - "git_version_string": 1, - "GIT_VERSION": 1, - "RUN_SETUP": 81, - "RUN_SETUP_GENTLY": 16, - "USE_PAGER": 3, - "NEED_WORK_TREE": 18, - "cmd_struct": 4, - "option": 9, - "run_builtin": 2, - "help": 4, - "stat": 3, - "st": 2, - "argv": 54, - "setup_git_directory": 1, - "nongit_ok": 2, - "setup_git_directory_gently": 1, - "have_repository": 1, - "trace_repo_setup": 1, - "setup_work_tree": 1, - "fn": 5, - "fstat": 1, - "fileno": 1, - "stdout": 5, - "S_ISFIFO": 1, - "st.st_mode": 2, - "S_ISSOCK": 1, - "fflush": 2, - "ferror": 2, - "fclose": 5, - "handle_internal_command": 3, - "commands": 3, - "cmd_add": 2, - "cmd_annotate": 1, - "cmd_apply": 1, - "cmd_archive": 1, - "cmd_bisect__helper": 1, - "cmd_blame": 2, - "cmd_branch": 1, - "cmd_bundle": 1, - "cmd_cat_file": 1, - "cmd_check_attr": 1, - "cmd_check_ref_format": 1, - "cmd_checkout": 1, - "cmd_checkout_index": 1, - "cmd_cherry": 1, - "cmd_cherry_pick": 1, - "cmd_clean": 1, - "cmd_clone": 1, - "cmd_column": 1, - "cmd_commit": 1, - "cmd_commit_tree": 1, - "cmd_config": 1, - "cmd_count_objects": 1, - "cmd_describe": 1, - "cmd_diff": 1, - "cmd_diff_files": 1, - "cmd_diff_index": 1, - "cmd_diff_tree": 1, - "cmd_fast_export": 1, - "cmd_fetch": 1, - "cmd_fetch_pack": 1, - "cmd_fmt_merge_msg": 1, - "cmd_for_each_ref": 1, - "cmd_format_patch": 1, - "cmd_fsck": 2, - "cmd_gc": 1, - "cmd_get_tar_commit_id": 1, - "cmd_grep": 1, - "cmd_hash_object": 1, - "cmd_help": 1, - "cmd_index_pack": 1, - "cmd_init_db": 2, - "cmd_log": 1, - "cmd_ls_files": 1, - "cmd_ls_remote": 2, - "cmd_ls_tree": 1, - "cmd_mailinfo": 1, - "cmd_mailsplit": 1, - "cmd_merge": 1, - "cmd_merge_base": 1, - "cmd_merge_file": 1, - "cmd_merge_index": 1, - "cmd_merge_ours": 1, - "cmd_merge_recursive": 4, - "cmd_merge_tree": 1, - "cmd_mktag": 1, - "cmd_mktree": 1, - "cmd_mv": 1, - "cmd_name_rev": 1, - "cmd_notes": 1, - "cmd_pack_objects": 1, - "cmd_pack_redundant": 1, - "cmd_pack_refs": 1, - "cmd_patch_id": 1, - "cmd_prune": 1, - "cmd_prune_packed": 1, - "cmd_push": 1, - "cmd_read_tree": 1, - "cmd_receive_pack": 1, - "cmd_reflog": 1, - "cmd_remote": 1, - "cmd_remote_ext": 1, - "cmd_remote_fd": 1, - "cmd_replace": 1, - "cmd_repo_config": 1, - "cmd_rerere": 1, - "cmd_reset": 1, - "cmd_rev_list": 1, - "cmd_rev_parse": 1, - "cmd_revert": 1, - "cmd_rm": 1, - "cmd_send_pack": 1, - "cmd_shortlog": 1, - "cmd_show": 1, - "cmd_show_branch": 1, - "cmd_show_ref": 1, - "cmd_status": 1, - "cmd_stripspace": 1, - "cmd_symbolic_ref": 1, - "cmd_tag": 1, - "cmd_tar_tree": 1, - "cmd_unpack_file": 1, - "cmd_unpack_objects": 1, - "cmd_update_index": 1, - "cmd_update_ref": 1, - "cmd_update_server_info": 1, - "cmd_upload_archive": 1, - "cmd_upload_archive_writer": 1, - "cmd_var": 1, - "cmd_verify_pack": 1, - "cmd_verify_tag": 1, - "cmd_version": 1, - "cmd_whatchanged": 1, - "cmd_write_tree": 1, - "ext": 4, - "STRIP_EXTENSION": 1, - "*argv0": 1, - "argv0": 2, - "ARRAY_SIZE": 1, - "exit": 20, - "execv_dashed_external": 2, - "STRBUF_INIT": 1, - "*tmp": 1, - "strbuf_addf": 1, - "tmp": 6, - "cmd.buf": 1, - "run_command_v_opt": 1, - "RUN_SILENT_EXEC_FAILURE": 1, - "RUN_CLEAN_ON_EXIT": 1, - "ENOENT": 3, - "strbuf_release": 1, - "run_argv": 2, - "done_alias": 4, - "argcp": 2, - "handle_alias": 1, - "main": 3, - "git_extract_argv0_path": 1, - "git_setup_gettext": 1, - "printf": 4, - "list_common_cmds_help": 1, - "setup_path": 1, - "done_help": 3, - "was_alias": 3, - "fprintf": 18, - "stderr": 15, - "help_unknown_cmd": 1, - "strerror": 4, - "PPC_SHA1": 1, - "git_hash_ctx": 7, - "SHA_CTX": 3, - "*git_hash_new_ctx": 1, - "*ctx": 5, - "ctx": 16, - "SHA1_Init": 4, - "git_hash_free_ctx": 1, - "git_hash_init": 1, - "git_hash_update": 1, - "SHA1_Update": 3, - "git_hash_final": 1, - "*out": 3, - "SHA1_Final": 3, - "git_hash_buf": 1, - "git_hash_vec": 1, - "git_buf_vec": 1, - "*vec": 1, - "vec": 2, - ".data": 1, - ".len": 3, - "HELLO_H": 2, - "hello": 1, - "": 5, - "": 2, - "": 3, - "": 3, - "": 2, - "ULLONG_MAX": 10, - "MIN": 3, - "HTTP_PARSER_DEBUG": 4, - "SET_ERRNO": 47, - "e": 4, - "do": 21, - "parser": 334, - "http_errno": 11, - "error_lineno": 3, - "__LINE__": 50, - "CALLBACK_NOTIFY_": 3, - "FOR": 11, - "ER": 4, - "HTTP_PARSER_ERRNO": 10, - "HPE_OK": 10, - "settings": 6, - "on_##FOR": 4, - "HPE_CB_##FOR": 2, - "CALLBACK_NOTIFY": 10, - "CALLBACK_NOTIFY_NOADVANCE": 2, - "CALLBACK_DATA_": 4, - "LEN": 2, - "FOR##_mark": 7, - "CALLBACK_DATA": 10, - "CALLBACK_DATA_NOADVANCE": 6, - "MARK": 7, - "PROXY_CONNECTION": 4, - "CONNECTION": 4, - "CONTENT_LENGTH": 4, - "TRANSFER_ENCODING": 4, - "UPGRADE": 4, - "CHUNKED": 4, - "KEEP_ALIVE": 4, - "CLOSE": 4, - "*method_strings": 1, - "XX": 63, - "num": 24, - "string": 18, - "#string": 1, - "HTTP_METHOD_MAP": 3, - "#undef": 7, - "tokens": 5, - "int8_t": 3, - "unhex": 3, - "HTTP_PARSER_STRICT": 5, - "uint8_t": 6, - "normal_url_char": 3, - "T": 3, - "s_dead": 10, - "s_start_req_or_res": 4, - "s_res_or_resp_H": 3, - "s_start_res": 5, - "s_res_H": 3, - "s_res_HT": 4, - "s_res_HTT": 3, - "s_res_HTTP": 3, - "s_res_first_http_major": 3, - "s_res_http_major": 3, - "s_res_first_http_minor": 3, - "s_res_http_minor": 3, - "s_res_first_status_code": 3, - "s_res_status_code": 3, - "s_res_status": 3, - "s_res_line_almost_done": 4, - "s_start_req": 6, - "s_req_method": 4, - "s_req_spaces_before_url": 5, - "s_req_schema": 6, - "s_req_schema_slash": 6, - "s_req_schema_slash_slash": 6, - "s_req_host_start": 8, - "s_req_host_v6_start": 7, - "s_req_host_v6": 7, - "s_req_host_v6_end": 7, - "s_req_host": 8, - "s_req_port_start": 7, - "s_req_port": 6, - "s_req_path": 8, - "s_req_query_string_start": 8, - "s_req_query_string": 7, - "s_req_fragment_start": 7, - "s_req_fragment": 7, - "s_req_http_start": 3, - "s_req_http_H": 3, - "s_req_http_HT": 3, - "s_req_http_HTT": 3, - "s_req_http_HTTP": 3, - "s_req_first_http_major": 3, - "s_req_http_major": 3, - "s_req_first_http_minor": 3, - "s_req_http_minor": 3, - "s_req_line_almost_done": 4, - "s_header_field_start": 12, - "s_header_field": 4, - "s_header_value_start": 4, - "s_header_value": 5, - "s_header_value_lws": 3, - "s_header_almost_done": 6, - "s_chunk_size_start": 4, - "s_chunk_size": 3, - "s_chunk_parameters": 3, - "s_chunk_size_almost_done": 4, - "s_headers_almost_done": 4, - "s_headers_done": 4, - "s_chunk_data": 3, - "s_chunk_data_almost_done": 3, - "s_chunk_data_done": 3, - "s_body_identity": 3, - "s_body_identity_eof": 4, - "s_message_done": 3, - "PARSING_HEADER": 2, - "header_states": 1, - "h_general": 23, - "0": 11, - "h_C": 3, - "h_CO": 3, - "h_CON": 3, - "h_matching_connection": 3, - "h_matching_proxy_connection": 3, - "h_matching_content_length": 3, - "h_matching_transfer_encoding": 3, - "h_matching_upgrade": 3, - "h_connection": 6, - "h_content_length": 5, - "h_transfer_encoding": 5, - "h_upgrade": 4, - "h_matching_transfer_encoding_chunked": 3, - "h_matching_connection_keep_alive": 3, - "h_matching_connection_close": 3, - "h_transfer_encoding_chunked": 4, - "h_connection_keep_alive": 4, - "h_connection_close": 4, - "Macros": 1, - "character": 11, - "classes": 1, - "depends": 1, - "on": 4, - "strict": 2, - "define": 14, - "CR": 18, - "r": 58, - "LF": 21, - "LOWER": 7, - "0x20": 1, - "IS_ALPHA": 5, - "z": 47, - "IS_NUM": 14, - "9": 1, - "IS_ALPHANUM": 3, - "IS_HEX": 2, - "TOKEN": 4, - "IS_URL_CHAR": 6, - "IS_HOST_CHAR": 4, - "0x80": 1, - "endif": 6, - "start_state": 1, - "HTTP_REQUEST": 7, - "cond": 1, - "HPE_STRICT": 1, - "HTTP_STRERROR_GEN": 3, - "#n": 1, - "*description": 1, - "http_strerror_tab": 7, - "HTTP_ERRNO_MAP": 3, - "http_message_needs_eof": 4, - "http_parser": 13, - "*parser": 9, - "parse_url_char": 5, - "ch": 145, - "http_parser_execute": 2, - "http_parser_settings": 5, - "*settings": 2, - "unhex_val": 7, - "*header_field_mark": 1, - "*header_value_mark": 1, - "*url_mark": 1, - "*body_mark": 1, - "message_complete": 7, - "HPE_INVALID_EOF_STATE": 1, - "header_field_mark": 2, - "header_value_mark": 2, - "url_mark": 2, - "nread": 7, - "HTTP_MAX_HEADER_SIZE": 2, - "HPE_HEADER_OVERFLOW": 1, - "reexecute_byte": 7, - "HPE_CLOSED_CONNECTION": 1, - "content_length": 27, - "message_begin": 3, - "HTTP_RESPONSE": 3, - "HPE_INVALID_CONSTANT": 3, - "method": 39, - "HTTP_HEAD": 2, - "index": 58, - "STRICT_CHECK": 15, - "HPE_INVALID_VERSION": 12, - "http_major": 11, - "http_minor": 11, - "HPE_INVALID_STATUS": 3, - "status_code": 8, - "HPE_INVALID_METHOD": 4, - "http_method": 4, - "HTTP_CONNECT": 4, - "HTTP_DELETE": 1, - "HTTP_GET": 1, - "HTTP_LOCK": 1, - "HTTP_MKCOL": 2, - "HTTP_NOTIFY": 1, - "HTTP_OPTIONS": 1, - "HTTP_POST": 2, - "HTTP_REPORT": 1, - "HTTP_SUBSCRIBE": 2, - "HTTP_TRACE": 1, - "HTTP_UNLOCK": 2, - "*matcher": 1, - "matcher": 3, - "method_strings": 2, - "HTTP_CHECKOUT": 1, - "HTTP_COPY": 1, - "HTTP_MOVE": 1, - "HTTP_MERGE": 1, - "HTTP_MSEARCH": 1, - "HTTP_MKACTIVITY": 1, - "HTTP_SEARCH": 1, - "HTTP_PROPFIND": 2, - "HTTP_PUT": 2, - "HTTP_PATCH": 1, - "HTTP_PURGE": 1, - "HTTP_UNSUBSCRIBE": 1, - "HTTP_PROPPATCH": 1, - "url": 4, - "HPE_INVALID_URL": 4, - "HPE_LF_EXPECTED": 1, - "HPE_INVALID_HEADER_TOKEN": 2, - "header_field": 5, - "header_state": 42, - "header_value": 6, - "F_UPGRADE": 3, - "HPE_INVALID_CONTENT_LENGTH": 4, - "uint64_t": 8, - "F_CONNECTION_KEEP_ALIVE": 3, - "F_CONNECTION_CLOSE": 3, - "F_CHUNKED": 11, - "F_TRAILING": 3, - "NEW_MESSAGE": 6, - "upgrade": 3, - "on_headers_complete": 3, - "F_SKIPBODY": 4, - "HPE_CB_headers_complete": 1, - "to_read": 6, - "body": 6, - "body_mark": 2, - "HPE_INVALID_CHUNK_SIZE": 2, - "HPE_INVALID_INTERNAL_STATE": 1, - "1": 2, - "HPE_UNKNOWN": 1, - "Does": 1, - "the": 91, - "need": 5, - "to": 37, - "see": 2, - "an": 2, - "EOF": 26, - "find": 1, - "end": 48, - "of": 44, - "message": 3, - "http_should_keep_alive": 2, - "http_method_str": 1, - "m": 8, - "http_parser_init": 2, - "http_parser_type": 3, - "http_errno_name": 1, - "/sizeof": 4, - ".name": 1, - "http_errno_description": 1, - ".description": 1, - "http_parser_parse_url": 2, - "buflen": 3, - "is_connect": 4, - "http_parser_url": 3, - "*u": 2, - "http_parser_url_fields": 2, - "uf": 14, - "old_uf": 4, - "u": 18, - "port": 7, - "field_set": 5, - "UF_MAX": 3, - "UF_SCHEMA": 2, - "UF_HOST": 3, - "UF_PORT": 5, - "UF_PATH": 2, - "UF_QUERY": 2, - "UF_FRAGMENT": 2, - "field_data": 5, - ".off": 2, - "xffff": 1, - "uint16_t": 12, - "http_parser_pause": 2, - "paused": 3, - "HPE_PAUSED": 2, - "http_parser_h": 2, - "__cplusplus": 20, - "HTTP_PARSER_VERSION_MAJOR": 1, - "HTTP_PARSER_VERSION_MINOR": 1, - "": 2, - "_WIN32": 3, - "__MINGW32__": 1, - "_MSC_VER": 5, - "__int8": 2, - "__int16": 2, - "int16_t": 1, - "__int32": 2, - "int32_t": 112, - "__int64": 3, - "int64_t": 2, - "ssize_t": 1, - "": 1, - "*1024": 4, - "DELETE": 2, - "GET": 2, - "HEAD": 2, - "POST": 2, - "PUT": 2, - "CONNECT": 2, - "OPTIONS": 2, - "TRACE": 2, - "COPY": 2, - "LOCK": 2, - "MKCOL": 2, - "MOVE": 2, - "PROPFIND": 2, - "PROPPATCH": 2, - "SEARCH": 3, - "UNLOCK": 2, - "REPORT": 2, - "MKACTIVITY": 2, - "CHECKOUT": 2, - "MERGE": 2, - "MSEARCH": 1, - "M": 1, - "NOTIFY": 2, - "SUBSCRIBE": 2, - "UNSUBSCRIBE": 2, - "PATCH": 2, - "PURGE": 2, - "HTTP_##name": 1, - "HTTP_BOTH": 1, - "OK": 1, - "CB_message_begin": 1, - "CB_url": 1, - "CB_header_field": 1, - "CB_header_value": 1, - "CB_headers_complete": 1, - "CB_body": 1, - "CB_message_complete": 1, - "INVALID_EOF_STATE": 1, - "HEADER_OVERFLOW": 1, - "CLOSED_CONNECTION": 1, - "INVALID_VERSION": 1, - "INVALID_STATUS": 1, - "INVALID_METHOD": 1, - "INVALID_URL": 1, - "INVALID_HOST": 1, - "INVALID_PORT": 1, - "INVALID_PATH": 1, - "INVALID_QUERY_STRING": 1, - "INVALID_FRAGMENT": 1, - "LF_EXPECTED": 1, - "INVALID_HEADER_TOKEN": 1, - "INVALID_CONTENT_LENGTH": 1, - "INVALID_CHUNK_SIZE": 1, - "INVALID_CONSTANT": 1, - "INVALID_INTERNAL_STATE": 1, - "STRICT": 1, - "PAUSED": 1, - "UNKNOWN": 1, - "HTTP_ERRNO_GEN": 3, - "HPE_##n": 1, - "HTTP_PARSER_ERRNO_LINE": 2, - "short": 6, - "http_cb": 3, - "on_message_begin": 1, - "http_data_cb": 4, - "on_url": 1, - "on_header_field": 1, - "on_header_value": 1, - "on_body": 1, - "on_message_complete": 1, - "off": 8, - "*http_method_str": 1, - "*http_errno_name": 1, - "*http_errno_description": 1, - "": 1, - "_Included_jni_JniLayer": 2, - "JNIEXPORT": 6, - "jlong": 6, - "JNICALL": 6, - "Java_jni_JniLayer_jni_1layer_1initialize": 1, - "JNIEnv": 6, - "jobject": 6, - "jintArray": 1, - "jint": 7, - "Java_jni_JniLayer_jni_1layer_1mainloop": 1, - "Java_jni_JniLayer_jni_1layer_1set_1button": 1, - "Java_jni_JniLayer_jni_1layer_1set_1analog": 1, - "jfloat": 1, - "Java_jni_JniLayer_jni_1layer_1report_1analog_1chg": 1, - "Java_jni_JniLayer_jni_1layer_1kill": 1, - "strncasecmp": 2, - "_strnicmp": 1, - "REF_TABLE_SIZE": 1, - "BUFFER_BLOCK": 5, - "BUFFER_SPAN": 9, - "MKD_LI_END": 1, - "gperf_case_strncmp": 1, - "s1": 6, - "s2": 6, - "GPERF_DOWNCASE": 1, - "GPERF_CASE_STRNCMP": 1, - "link_ref": 2, - "*link": 1, - "*title": 1, - "sd_markdown": 6, - "tag": 1, - "tag_len": 3, - "w": 6, - "is_empty": 4, - "htmlblock_end": 3, - "*curtag": 2, - "*rndr": 4, - "start_of_line": 2, - "tag_size": 3, - "curtag": 8, - "end_tag": 4, - "block_lines": 3, - "htmlblock_end_tag": 1, - "rndr": 25, - "parse_htmlblock": 1, - "*ob": 3, - "do_render": 4, - "tag_end": 7, - "work": 4, - "find_block_tag": 1, - "work.size": 5, - "cb.blockhtml": 6, - "ob": 14, - "opaque": 8, - "parse_table_row": 1, - "columns": 3, - "*col_data": 1, - "header_flag": 3, - "col": 9, - "*row_work": 1, - "cb.table_cell": 3, - "cb.table_row": 2, - "row_work": 4, - "rndr_newbuf": 2, - "cell_start": 5, - "cell_end": 6, - "*cell_work": 1, - "cell_work": 3, - "_isspace": 3, - "parse_inline": 1, - "col_data": 2, - "rndr_popbuf": 2, - "empty_cell": 2, - "parse_table_header": 1, - "*columns": 2, - "**column_data": 1, - "pipes": 23, - "header_end": 7, - "under_end": 1, - "*column_data": 1, - "calloc": 1, - "beg": 10, - "doc_size": 6, - "document": 9, - "UTF8_BOM": 1, - "is_ref": 1, - "md": 18, - "refs": 2, - "expand_tabs": 1, - "text": 22, - "bufputc": 2, - "bufgrow": 1, - "MARKDOWN_GROW": 1, - "cb.doc_header": 2, - "parse_block": 1, - "cb.doc_footer": 2, - "bufrelease": 3, - "free_link_refs": 1, - "work_bufs": 8, - ".size": 2, - "sd_markdown_free": 1, - "*md": 1, - ".asize": 2, - ".item": 2, - "stack_free": 2, - "sd_version": 1, - "*ver_major": 2, - "*ver_minor": 2, - "*ver_revision": 2, - "SUNDOWN_VER_MAJOR": 1, - "SUNDOWN_VER_MINOR": 1, - "SUNDOWN_VER_REVISION": 1, - "": 4, - "": 2, - "": 1, - "": 1, - "": 2, - "__APPLE__": 2, - "TARGET_OS_IPHONE": 1, - "**environ": 1, - "uv__chld": 2, - "EV_P_": 1, - "ev_child*": 1, - "watcher": 4, - "revents": 2, - "rstatus": 1, - "exit_status": 3, - "term_signal": 3, - "uv_process_t": 1, - "*process": 1, - "process": 19, - "child_watcher": 5, - "EV_CHILD": 1, - "ev_child_stop": 2, - "EV_A_": 1, - "WIFEXITED": 1, - "WEXITSTATUS": 2, - "WIFSIGNALED": 2, - "WTERMSIG": 2, - "exit_cb": 3, - "uv__make_socketpair": 2, - "fds": 20, - "SOCK_NONBLOCK": 2, - "fl": 8, - "SOCK_CLOEXEC": 1, - "UV__F_NONBLOCK": 5, - "socketpair": 2, - "AF_UNIX": 2, - "SOCK_STREAM": 2, - "uv__cloexec": 4, - "uv__nonblock": 5, - "uv__make_pipe": 2, - "__linux__": 3, - "UV__O_CLOEXEC": 1, - "UV__O_NONBLOCK": 1, - "uv__pipe2": 1, - "ENOSYS": 1, - "pipe": 1, - "uv__process_init_stdio": 2, - "uv_stdio_container_t*": 4, - "container": 17, - "writable": 8, - "UV_IGNORE": 2, - "UV_CREATE_PIPE": 4, - "UV_INHERIT_FD": 3, - "UV_INHERIT_STREAM": 2, - "data.stream": 7, - "UV_NAMED_PIPE": 2, - "data.fd": 1, - "uv__process_stdio_flags": 2, - "uv_pipe_t*": 1, - "ipc": 1, - "UV_STREAM_READABLE": 2, - "UV_STREAM_WRITABLE": 2, - "uv__process_open_stream": 2, - "child_fd": 3, - "close": 13, - "uv__stream_open": 1, - "uv_stream_t*": 2, - "uv__process_close_stream": 2, - "uv__stream_close": 1, - "uv__process_child_init": 2, - "uv_process_options_t": 2, - "options": 62, - "stdio_count": 7, - "int*": 22, - "options.flags": 4, - "UV_PROCESS_DETACHED": 2, - "setsid": 2, - "close_fd": 2, - "use_fd": 7, - "open": 4, - "O_RDONLY": 1, - "O_RDWR": 2, - "perror": 5, - "_exit": 6, - "dup2": 4, - "options.cwd": 2, - "UV_PROCESS_SETGID": 2, - "setgid": 1, - "options.gid": 1, - "UV_PROCESS_SETUID": 2, - "setuid": 1, - "options.uid": 1, - "environ": 4, - "options.env": 1, - "execvp": 1, - "options.file": 2, - "options.args": 1, - "SPAWN_WAIT_EXEC": 5, - "uv_spawn": 1, - "uv_loop_t*": 1, - "loop": 9, - "uv_process_t*": 3, - "char**": 7, - "save_our_env": 3, - "options.stdio_count": 4, - "malloc": 3, - "signal_pipe": 7, - "pollfd": 1, - "pfd": 2, - "pid_t": 2, - "pid": 13, - "UV_PROCESS_WINDOWS_VERBATIM_ARGUMENTS": 1, - "uv__handle_init": 1, - "uv_handle_t*": 1, - "UV_PROCESS": 1, - "counters.process_init": 1, - "uv__handle_start": 1, - "options.exit_cb": 1, - "options.stdio": 3, - "fork": 2, - "pfd.fd": 1, - "pfd.events": 1, - "POLLIN": 1, - "POLLHUP": 1, - "pfd.revents": 1, - "poll": 1, - "EINTR": 1, - "ev_child_init": 1, - "ev_child_start": 1, - "ev": 2, - "child_watcher.data": 1, - "uv__set_sys_error": 2, - "uv_process_kill": 1, - "signum": 4, - "kill": 4, - "uv_err_t": 1, - "uv_kill": 1, - "uv__new_sys_error": 1, - "uv_ok_": 1, - "uv__process_close": 1, - "handle": 10, - "uv__handle_stop": 1, - "VALUE": 13, - "rb_cRDiscount": 4, - "rb_rdiscount_to_html": 2, - "self": 9, - "*res": 2, - "szres": 8, - "encoding": 14, - "rb_funcall": 14, - "rb_intern": 15, - "rb_str_buf_new": 2, - "Check_Type": 2, - "T_STRING": 2, - "rb_rdiscount__get_flags": 3, - "MMIOT": 2, - "*doc": 2, - "mkd_string": 2, - "RSTRING_PTR": 2, - "RSTRING_LEN": 2, - "mkd_compile": 2, - "doc": 6, - "mkd_document": 1, - "res": 4, - "rb_str_cat": 4, - "mkd_cleanup": 2, - "rb_respond_to": 1, - "rb_rdiscount_toc_content": 2, - "mkd_toc": 1, - "ruby_obj": 11, - "MKD_TABSTOP": 1, - "MKD_NOHEADER": 1, - "Qtrue": 10, - "MKD_NOPANTS": 1, - "MKD_NOHTML": 1, - "MKD_TOC": 1, - "MKD_NOIMAGE": 1, - "MKD_NOLINKS": 1, - "MKD_NOTABLES": 1, - "MKD_STRICT": 1, - "MKD_AUTOLINK": 1, - "MKD_SAFELINK": 1, - "MKD_NO_EXT": 1, - "Init_rdiscount": 1, - "rb_define_class": 1, - "rb_cObject": 1, - "rb_define_method": 2, - "READLINE_READLINE_CATS": 3, - "": 1, - "atscntrb_readline_rl_library_version": 1, - "char*": 167, - "rl_library_version": 1, - "atscntrb_readline_rl_readline_version": 1, - "rl_readline_version": 1, - "atscntrb_readline_readline": 1, - "readline": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 2, - "": 1, - "": 1, - "": 3, - "": 1, - "sharedObjectsStruct": 1, - "shared": 1, - "double": 126, - "R_Zero": 2, - "R_PosInf": 2, - "R_NegInf": 2, - "R_Nan": 2, - "redisServer": 1, - "server": 1, - "redisCommand": 6, - "*commandTable": 1, - "redisCommandTable": 5, - "getCommand": 1, - "setCommand": 1, - "noPreloadGetKeys": 6, - "setnxCommand": 1, - "setexCommand": 1, - "psetexCommand": 1, - "appendCommand": 1, - "strlenCommand": 1, - "delCommand": 1, - "existsCommand": 1, - "setbitCommand": 1, - "getbitCommand": 1, - "setrangeCommand": 1, - "getrangeCommand": 2, - "incrCommand": 1, - "decrCommand": 1, - "mgetCommand": 1, - "rpushCommand": 1, - "lpushCommand": 1, - "rpushxCommand": 1, - "lpushxCommand": 1, - "linsertCommand": 1, - "rpopCommand": 1, - "lpopCommand": 1, - "brpopCommand": 1, - "brpoplpushCommand": 1, - "blpopCommand": 1, - "llenCommand": 1, - "lindexCommand": 1, - "lsetCommand": 1, - "lrangeCommand": 1, - "ltrimCommand": 1, - "lremCommand": 1, - "rpoplpushCommand": 1, - "saddCommand": 1, - "sremCommand": 1, - "smoveCommand": 1, - "sismemberCommand": 1, - "scardCommand": 1, - "spopCommand": 1, - "srandmemberCommand": 1, - "sinterCommand": 2, - "sinterstoreCommand": 1, - "sunionCommand": 1, - "sunionstoreCommand": 1, - "sdiffCommand": 1, - "sdiffstoreCommand": 1, - "zaddCommand": 1, - "zincrbyCommand": 1, - "zremCommand": 1, - "zremrangebyscoreCommand": 1, - "zremrangebyrankCommand": 1, - "zunionstoreCommand": 1, - "zunionInterGetKeys": 4, - "zinterstoreCommand": 1, - "zrangeCommand": 1, - "zrangebyscoreCommand": 1, - "zrevrangebyscoreCommand": 1, - "zcountCommand": 1, - "zrevrangeCommand": 1, - "zcardCommand": 1, - "zscoreCommand": 1, - "zrankCommand": 1, - "zrevrankCommand": 1, - "hsetCommand": 1, - "hsetnxCommand": 1, - "hgetCommand": 1, - "hmsetCommand": 1, - "hmgetCommand": 1, - "hincrbyCommand": 1, - "hincrbyfloatCommand": 1, - "hdelCommand": 1, - "hlenCommand": 1, - "hkeysCommand": 1, - "hvalsCommand": 1, - "hgetallCommand": 1, - "hexistsCommand": 1, - "incrbyCommand": 1, - "decrbyCommand": 1, - "incrbyfloatCommand": 1, - "getsetCommand": 1, - "msetCommand": 1, - "msetnxCommand": 1, - "randomkeyCommand": 1, - "selectCommand": 1, - "moveCommand": 1, - "renameCommand": 1, - "renameGetKeys": 2, - "renamenxCommand": 1, - "expireCommand": 1, - "expireatCommand": 1, - "pexpireCommand": 1, - "pexpireatCommand": 1, - "keysCommand": 1, - "dbsizeCommand": 1, - "authCommand": 3, - "pingCommand": 2, - "echoCommand": 2, - "saveCommand": 1, - "bgsaveCommand": 1, - "bgrewriteaofCommand": 1, - "shutdownCommand": 2, - "lastsaveCommand": 1, - "typeCommand": 1, - "multiCommand": 2, - "execCommand": 2, - "discardCommand": 2, - "syncCommand": 1, - "flushdbCommand": 1, - "flushallCommand": 1, - "sortCommand": 1, - "infoCommand": 4, - "monitorCommand": 2, - "ttlCommand": 1, - "pttlCommand": 1, - "persistCommand": 1, - "slaveofCommand": 2, - "debugCommand": 1, - "configCommand": 1, - "subscribeCommand": 2, - "unsubscribeCommand": 2, - "psubscribeCommand": 2, - "punsubscribeCommand": 2, - "publishCommand": 1, - "watchCommand": 2, - "unwatchCommand": 1, - "clusterCommand": 1, - "restoreCommand": 1, - "migrateCommand": 1, - "askingCommand": 1, - "dumpCommand": 1, - "objectCommand": 1, - "clientCommand": 1, - "evalCommand": 1, - "evalShaCommand": 1, - "slowlogCommand": 1, - "scriptCommand": 2, - "timeCommand": 2, - "bitopCommand": 1, - "bitcountCommand": 1, - "redisLogRaw": 3, - "level": 12, - "syslogLevelMap": 2, - "LOG_DEBUG": 1, - "LOG_INFO": 1, - "LOG_NOTICE": 1, - "LOG_WARNING": 1, - "FILE": 3, - "*fp": 3, - "rawmode": 2, - "REDIS_LOG_RAW": 2, - "xff": 3, - "server.verbosity": 4, - "fp": 13, - "server.logfile": 8, - "fopen": 3, - "msg": 10, - "timeval": 4, - "tv": 8, - "gettimeofday": 4, - "strftime": 1, - "localtime": 1, - "tv.tv_sec": 4, - "snprintf": 2, - "tv.tv_usec/1000": 1, - "getpid": 7, - "server.syslog_enabled": 3, - "syslog": 1, - "redisLog": 33, - "...": 127, - "va_list": 3, - "ap": 4, - "REDIS_MAX_LOGMSG_LEN": 1, - "va_start": 3, - "vsnprintf": 1, - "va_end": 3, - "redisLogFromHandler": 2, - "server.daemonize": 5, - "O_APPEND": 2, - "O_CREAT": 2, - "O_WRONLY": 2, - "STDOUT_FILENO": 2, - "ll2string": 3, - "write": 7, - "time": 10, - "oom": 3, - "REDIS_WARNING": 19, - "sleep": 1, - "abort": 1, - "ustime": 7, - "ust": 7, - "*1000000": 1, - "tv.tv_usec": 3, - "mstime": 5, - "/1000": 1, - "exitFromChild": 1, - "retcode": 3, - "COVERAGE_TEST": 1, - "dictVanillaFree": 1, - "*privdata": 8, - "DICT_NOTUSED": 6, - "privdata": 8, - "zfree": 2, - "dictListDestructor": 2, - "listRelease": 1, - "list*": 1, - "dictSdsKeyCompare": 6, - "*key1": 4, - "*key2": 4, - "l1": 4, - "l2": 3, - "sdslen": 14, - "sds": 13, - "key1": 5, - "key2": 5, - "dictSdsKeyCaseCompare": 2, - "strcasecmp": 13, - "dictRedisObjectDestructor": 7, - "decrRefCount": 6, - "dictSdsDestructor": 4, - "sdsfree": 2, - "dictObjKeyCompare": 2, - "robj": 7, - "*o1": 2, - "*o2": 2, - "o1": 7, - "ptr": 18, - "o2": 7, - "dictObjHash": 2, - "key": 9, - "dictGenHashFunction": 5, - "dictSdsHash": 4, - "dictSdsCaseHash": 2, - "dictGenCaseHashFunction": 1, - "dictEncObjKeyCompare": 4, - "robj*": 3, - "REDIS_ENCODING_INT": 4, - "getDecodedObject": 3, - "dictEncObjHash": 4, - "REDIS_ENCODING_RAW": 1, - "dictType": 8, - "setDictType": 1, - "zsetDictType": 1, - "dbDictType": 2, - "keyptrDictType": 2, - "commandTableDictType": 2, - "hashDictType": 1, - "keylistDictType": 4, - "clusterNodesDictType": 1, - "htNeedsResize": 3, - "dict": 11, - "*dict": 5, - "used": 10, - "dictSlots": 3, - "dictSize": 10, - "DICT_HT_INITIAL_SIZE": 2, - "used*100/size": 1, - "REDIS_HT_MINFILL": 1, - "tryResizeHashTables": 2, - "server.dbnum": 8, - "server.db": 23, - ".dict": 9, - "dictResize": 2, - ".expires": 8, - "incrementallyRehash": 2, - "dictIsRehashing": 2, - "dictRehashMilliseconds": 2, - "updateDictResizePolicy": 2, - "server.rdb_child_pid": 12, - "server.aof_child_pid": 10, - "dictEnableResize": 1, - "dictDisableResize": 1, - "activeExpireCycle": 2, - "iteration": 6, - "start": 10, - "timelimit": 5, - "*REDIS_EXPIRELOOKUPS_TIME_PERC/REDIS_HZ/100": 1, - "expired": 4, - "redisDb": 3, - "expires": 3, - "slots": 2, - "now": 5, - "num*100/slots": 1, - "REDIS_EXPIRELOOKUPS_PER_CRON": 2, - "dictEntry": 2, - "*de": 2, - "de": 12, - "dictGetRandomKey": 4, - "dictGetSignedIntegerVal": 1, - "dictGetKey": 4, - "*keyobj": 2, - "createStringObject": 11, - "propagateExpire": 2, - "keyobj": 6, - "dbDelete": 2, - "server.stat_expiredkeys": 3, - "xf": 1, - "REDIS_EXPIRELOOKUPS_PER_CRON/4": 1, - "updateLRUClock": 3, - "server.lruclock": 2, - "server.unixtime/REDIS_LRU_CLOCK_RESOLUTION": 1, - "REDIS_LRU_CLOCK_MAX": 1, - "trackOperationsPerSecond": 2, - "server.ops_sec_last_sample_time": 3, - "ops": 1, - "server.stat_numcommands": 4, - "server.ops_sec_last_sample_ops": 3, - "ops_sec": 3, - "ops*1000/t": 1, - "server.ops_sec_samples": 4, - "server.ops_sec_idx": 4, - "%": 2, - "REDIS_OPS_SEC_SAMPLES": 3, - "getOperationsPerSecond": 2, - "sum": 3, - "clientsCronHandleTimeout": 2, - "redisClient": 12, - "time_t": 4, - "server.unixtime": 10, - "server.maxidletime": 3, - "REDIS_SLAVE": 3, - "REDIS_MASTER": 2, - "REDIS_BLOCKED": 2, - "pubsub_channels": 2, - "listLength": 14, - "pubsub_patterns": 2, - "lastinteraction": 3, - "REDIS_VERBOSE": 3, - "freeClient": 1, - "bpop.timeout": 2, - "addReply": 13, - "shared.nullmultibulk": 2, - "unblockClientWaitingData": 1, - "clientsCronResizeQueryBuffer": 2, - "querybuf_size": 3, - "sdsAllocSize": 1, - "querybuf": 6, - "idletime": 2, - "REDIS_MBULK_BIG_ARG": 1, - "querybuf_size/": 1, - "querybuf_peak": 2, - "sdsavail": 1, - "sdsRemoveFreeSpace": 1, - "clientsCron": 2, - "numclients": 3, - "server.clients": 7, - "iterations": 4, - "numclients/": 1, - "REDIS_HZ*10": 1, - "listNode": 4, - "*head": 1, - "listRotate": 1, - "head": 3, - "listFirst": 2, - "listNodeValue": 3, - "run_with_period": 6, - "_ms_": 2, - "loops": 2, - "/REDIS_HZ": 2, - "serverCron": 2, - "aeEventLoop": 2, - "*eventLoop": 2, - "*clientData": 1, - "server.cronloops": 3, - "REDIS_NOTUSED": 5, - "eventLoop": 2, - "clientData": 1, - "server.watchdog_period": 3, - "watchdogScheduleSignal": 1, - "zmalloc_used_memory": 8, - "server.stat_peak_memory": 5, - "server.shutdown_asap": 3, - "prepareForShutdown": 2, - "REDIS_OK": 23, - "vkeys": 8, - "server.activerehashing": 2, - "server.slaves": 9, - "server.aof_rewrite_scheduled": 4, - "rewriteAppendOnlyFileBackground": 2, - "statloc": 5, - "wait3": 1, - "WNOHANG": 1, - "exitcode": 3, - "bysignal": 4, - "backgroundSaveDoneHandler": 1, - "backgroundRewriteDoneHandler": 1, - "server.saveparamslen": 3, - "saveparam": 1, - "*sp": 1, - "server.saveparams": 2, - "server.dirty": 3, - "sp": 4, - "changes": 2, - "server.lastsave": 3, - "seconds": 2, - "REDIS_NOTICE": 13, - "rdbSaveBackground": 1, - "server.rdb_filename": 4, - "server.aof_rewrite_perc": 3, - "server.aof_current_size": 2, - "server.aof_rewrite_min_size": 2, - "base": 1, - "server.aof_rewrite_base_size": 4, - "growth": 3, - "server.aof_current_size*100/base": 1, - "server.aof_flush_postponed_start": 2, - "flushAppendOnlyFile": 2, - "server.masterhost": 7, - "freeClientsInAsyncFreeQueue": 1, - "replicationCron": 1, - "server.cluster_enabled": 6, - "clusterCron": 1, - "beforeSleep": 2, - "*ln": 3, - "server.unblocked_clients": 4, - "ln": 8, - "redisAssert": 1, - "listDelNode": 1, - "REDIS_UNBLOCKED": 1, - "server.current_client": 3, - "processInputBuffer": 1, - "createSharedObjects": 2, - "shared.crlf": 2, - "createObject": 31, - "REDIS_STRING": 31, - "sdsnew": 27, - "shared.ok": 3, - "shared.err": 1, - "shared.emptybulk": 1, - "shared.czero": 1, - "shared.cone": 1, - "shared.cnegone": 1, - "shared.nullbulk": 1, - "shared.emptymultibulk": 1, - "shared.pong": 2, - "shared.queued": 2, - "shared.wrongtypeerr": 1, - "shared.nokeyerr": 1, - "shared.syntaxerr": 2, - "shared.sameobjecterr": 1, - "shared.outofrangeerr": 1, - "shared.noscripterr": 1, - "shared.loadingerr": 2, - "shared.slowscripterr": 2, - "shared.masterdownerr": 2, - "shared.bgsaveerr": 2, - "shared.roslaveerr": 2, - "shared.oomerr": 2, - "shared.space": 1, - "shared.colon": 1, - "shared.plus": 1, - "REDIS_SHARED_SELECT_CMDS": 1, - "shared.select": 1, - "sdscatprintf": 24, - "sdsempty": 8, - "shared.messagebulk": 1, - "shared.pmessagebulk": 1, - "shared.subscribebulk": 1, - "shared.unsubscribebulk": 1, - "shared.psubscribebulk": 1, - "shared.punsubscribebulk": 1, - "shared.del": 1, - "shared.rpop": 1, - "shared.lpop": 1, - "REDIS_SHARED_INTEGERS": 1, - "shared.integers": 2, - "void*": 135, - "REDIS_SHARED_BULKHDR_LEN": 1, - "shared.mbulkhdr": 1, - "shared.bulkhdr": 1, - "initServerConfig": 2, - "getRandomHexChars": 1, - "server.runid": 3, - "REDIS_RUN_ID_SIZE": 2, - "server.arch_bits": 3, - "server.port": 7, - "REDIS_SERVERPORT": 1, - "server.bindaddr": 2, - "server.unixsocket": 7, - "server.unixsocketperm": 2, - "server.ipfd": 9, - "server.sofd": 9, - "REDIS_DEFAULT_DBNUM": 1, - "REDIS_MAXIDLETIME": 1, - "server.client_max_querybuf_len": 1, - "REDIS_MAX_QUERYBUF_LEN": 1, - "server.loading": 4, - "server.syslog_ident": 2, - "zstrdup": 5, - "server.syslog_facility": 2, - "LOG_LOCAL0": 1, - "server.aof_state": 7, - "REDIS_AOF_OFF": 5, - "server.aof_fsync": 1, - "AOF_FSYNC_EVERYSEC": 1, - "server.aof_no_fsync_on_rewrite": 1, - "REDIS_AOF_REWRITE_PERC": 1, - "REDIS_AOF_REWRITE_MIN_SIZE": 1, - "server.aof_last_fsync": 1, - "server.aof_rewrite_time_last": 2, - "server.aof_rewrite_time_start": 2, - "server.aof_delayed_fsync": 2, - "server.aof_fd": 4, - "server.aof_selected_db": 1, - "server.pidfile": 3, - "server.aof_filename": 3, - "server.requirepass": 4, - "server.rdb_compression": 1, - "server.rdb_checksum": 1, - "server.maxclients": 6, - "REDIS_MAX_CLIENTS": 1, - "server.bpop_blocked_clients": 2, - "server.maxmemory": 6, - "server.maxmemory_policy": 11, - "REDIS_MAXMEMORY_VOLATILE_LRU": 3, - "server.maxmemory_samples": 3, - "server.hash_max_ziplist_entries": 1, - "REDIS_HASH_MAX_ZIPLIST_ENTRIES": 1, - "server.hash_max_ziplist_value": 1, - "REDIS_HASH_MAX_ZIPLIST_VALUE": 1, - "server.list_max_ziplist_entries": 1, - "REDIS_LIST_MAX_ZIPLIST_ENTRIES": 1, - "server.list_max_ziplist_value": 1, - "REDIS_LIST_MAX_ZIPLIST_VALUE": 1, - "server.set_max_intset_entries": 1, - "REDIS_SET_MAX_INTSET_ENTRIES": 1, - "server.zset_max_ziplist_entries": 1, - "REDIS_ZSET_MAX_ZIPLIST_ENTRIES": 1, - "server.zset_max_ziplist_value": 1, - "REDIS_ZSET_MAX_ZIPLIST_VALUE": 1, - "server.repl_ping_slave_period": 1, - "REDIS_REPL_PING_SLAVE_PERIOD": 1, - "server.repl_timeout": 1, - "REDIS_REPL_TIMEOUT": 1, - "server.cluster.configfile": 1, - "server.lua_caller": 1, - "server.lua_time_limit": 1, - "REDIS_LUA_TIME_LIMIT": 1, - "server.lua_client": 1, - "server.lua_timedout": 2, - "resetServerSaveParams": 2, - "appendServerSaveParams": 3, - "*60": 1, - "server.masterauth": 1, - "server.masterport": 2, - "server.master": 3, - "server.repl_state": 6, - "REDIS_REPL_NONE": 1, - "server.repl_syncio_timeout": 1, - "REDIS_REPL_SYNCIO_TIMEOUT": 1, - "server.repl_serve_stale_data": 2, - "server.repl_slave_ro": 2, - "server.repl_down_since": 2, - "server.client_obuf_limits": 9, - "REDIS_CLIENT_LIMIT_CLASS_NORMAL": 3, - ".hard_limit_bytes": 3, - ".soft_limit_bytes": 3, - ".soft_limit_seconds": 3, - "REDIS_CLIENT_LIMIT_CLASS_SLAVE": 3, - "*1024*256": 1, - "*1024*64": 1, - "REDIS_CLIENT_LIMIT_CLASS_PUBSUB": 3, - "*1024*32": 1, - "*1024*8": 1, - "/R_Zero": 2, - "R_Zero/R_Zero": 1, - "server.commands": 1, - "dictCreate": 6, - "populateCommandTable": 2, - "server.delCommand": 1, - "lookupCommandByCString": 3, - "server.multiCommand": 1, - "server.lpushCommand": 1, - "server.slowlog_log_slower_than": 1, - "REDIS_SLOWLOG_LOG_SLOWER_THAN": 1, - "server.slowlog_max_len": 1, - "REDIS_SLOWLOG_MAX_LEN": 1, - "server.assert_failed": 1, - "server.assert_file": 1, - "server.assert_line": 1, - "server.bug_report_start": 1, - "adjustOpenFilesLimit": 2, - "rlim_t": 3, - "maxfiles": 6, - "rlimit": 1, - "limit": 3, - "getrlimit": 1, - "RLIMIT_NOFILE": 2, - "oldlimit": 5, - "limit.rlim_cur": 2, - "limit.rlim_max": 1, - "setrlimit": 1, - "initServer": 2, - "signal": 2, - "SIGHUP": 1, - "SIG_IGN": 2, - "SIGPIPE": 1, - "setupSignalHandlers": 2, - "openlog": 1, - "LOG_PID": 1, - "LOG_NDELAY": 1, - "LOG_NOWAIT": 1, - "listCreate": 6, - "server.clients_to_close": 1, - "server.monitors": 2, - "server.el": 7, - "aeCreateEventLoop": 1, - "zmalloc": 2, - "*server.dbnum": 1, - "anetTcpServer": 1, - "server.neterr": 4, - "ANET_ERR": 2, - "unlink": 3, - "anetUnixServer": 1, - ".blocking_keys": 1, - ".watched_keys": 1, - ".id": 1, - "server.pubsub_channels": 2, - "server.pubsub_patterns": 4, - "listSetFreeMethod": 1, - "freePubsubPattern": 1, - "listSetMatchMethod": 1, - "listMatchPubsubPattern": 1, - "aofRewriteBufferReset": 1, - "server.aof_buf": 3, - "server.rdb_save_time_last": 2, - "server.rdb_save_time_start": 2, - "server.stat_numconnections": 2, - "server.stat_evictedkeys": 3, - "server.stat_starttime": 2, - "server.stat_keyspace_misses": 2, - "server.stat_keyspace_hits": 2, - "server.stat_fork_time": 2, - "server.stat_rejected_conn": 2, - "server.lastbgsave_status": 3, - "server.stop_writes_on_bgsave_err": 2, - "aeCreateTimeEvent": 1, - "aeCreateFileEvent": 2, - "AE_READABLE": 2, - "acceptTcpHandler": 1, - "AE_ERR": 2, - "acceptUnixHandler": 1, - "REDIS_AOF_ON": 2, - "LL*": 1, - "REDIS_MAXMEMORY_NO_EVICTION": 2, - "clusterInit": 1, - "scriptingInit": 1, - "slowlogInit": 1, - "bioInit": 1, - "numcommands": 5, - "sflags": 1, - "retval": 3, - "arity": 3, - "addReplyErrorFormat": 1, - "authenticated": 3, - "proc": 14, - "addReplyError": 6, - "getkeys_proc": 1, - "firstkey": 1, - "hashslot": 3, - "server.cluster.state": 1, - "REDIS_CLUSTER_OK": 1, - "ask": 3, - "clusterNode": 1, - "*n": 1, - "getNodeByQuery": 1, - "server.cluster.myself": 1, - "addReplySds": 3, - "ip": 4, - "freeMemoryIfNeeded": 2, - "REDIS_CMD_DENYOOM": 1, - "REDIS_ERR": 5, - "REDIS_CMD_WRITE": 2, - "REDIS_REPL_CONNECTED": 3, - "tolower": 2, - "REDIS_MULTI": 1, - "queueMultiCommand": 1, - "call": 1, - "REDIS_CALL_FULL": 1, - "save": 2, - "REDIS_SHUTDOWN_SAVE": 1, - "nosave": 2, - "REDIS_SHUTDOWN_NOSAVE": 1, - "SIGKILL": 2, - "rdbRemoveTempFile": 1, - "aof_fsync": 1, - "rdbSave": 1, - "addReplyBulk": 1, - "addReplyMultiBulkLen": 1, - "addReplyBulkLongLong": 2, - "bytesToHuman": 3, - "*s": 3, - "sprintf": 10, - "n/": 3, - "LL*1024*1024": 2, - "LL*1024*1024*1024": 1, - "genRedisInfoString": 2, - "*section": 2, - "info": 64, - "uptime": 2, - "rusage": 1, - "self_ru": 2, - "c_ru": 2, - "lol": 3, - "bib": 3, - "allsections": 12, - "defsections": 11, - "sections": 11, - "section": 14, - "getrusage": 2, - "RUSAGE_SELF": 1, - "RUSAGE_CHILDREN": 1, - "getClientsMaxBuffers": 1, - "utsname": 1, - "sdscat": 14, - "uname": 1, - "REDIS_VERSION": 4, - "redisGitSHA1": 3, - "strtol": 2, - "redisGitDirty": 3, - "name.sysname": 1, - "name.release": 1, - "name.machine": 1, - "aeGetApiName": 1, - "__GNUC_MINOR__": 2, - "__GNUC_PATCHLEVEL__": 1, - "uptime/": 1, - "*24": 1, - "hmem": 3, - "peak_hmem": 3, - "zmalloc_get_rss": 1, - "lua_gc": 1, - "server.lua": 1, - "LUA_GCCOUNT": 1, - "*1024LL": 1, - "zmalloc_get_fragmentation_ratio": 1, - "ZMALLOC_LIB": 2, - "aofRewriteBufferSize": 2, - "bioPendingJobsOfType": 1, - "REDIS_BIO_AOF_FSYNC": 1, - "perc": 3, - "eta": 4, - "elapsed": 3, - "off_t": 1, - "remaining_bytes": 1, - "server.loading_total_bytes": 3, - "server.loading_loaded_bytes": 3, - "server.loading_start_time": 2, - "elapsed*remaining_bytes": 1, - "/server.loading_loaded_bytes": 1, - "REDIS_REPL_TRANSFER": 2, - "server.repl_transfer_left": 1, - "server.repl_transfer_lastio": 1, - "slaveid": 3, - "listIter": 2, - "li": 6, - "listRewind": 2, - "listNext": 2, - "*slave": 2, - "*state": 1, - "anetPeerToString": 1, - "slave": 3, - "replstate": 1, - "REDIS_REPL_WAIT_BGSAVE_START": 1, - "REDIS_REPL_WAIT_BGSAVE_END": 1, - "REDIS_REPL_SEND_BULK": 1, - "REDIS_REPL_ONLINE": 1, - "float": 26, - "self_ru.ru_stime.tv_sec": 1, - "self_ru.ru_stime.tv_usec/1000000": 1, - "self_ru.ru_utime.tv_sec": 1, - "self_ru.ru_utime.tv_usec/1000000": 1, - "c_ru.ru_stime.tv_sec": 1, - "c_ru.ru_stime.tv_usec/1000000": 1, - "c_ru.ru_utime.tv_sec": 1, - "c_ru.ru_utime.tv_usec/1000000": 1, - "calls": 4, - "microseconds": 1, - "microseconds/c": 1, - "keys": 4, - "REDIS_MONITOR": 1, - "slaveseldb": 1, - "listAddNodeTail": 1, - "mem_used": 9, - "mem_tofree": 3, - "mem_freed": 4, - "slaves": 3, - "obuf_bytes": 3, - "getClientOutputBufferMemoryUsage": 1, - "k": 15, - "keys_freed": 3, - "bestval": 5, - "bestkey": 9, - "REDIS_MAXMEMORY_ALLKEYS_LRU": 2, - "REDIS_MAXMEMORY_ALLKEYS_RANDOM": 2, - "REDIS_MAXMEMORY_VOLATILE_RANDOM": 1, - "thiskey": 7, - "thisval": 8, - "dictFind": 1, - "dictGetVal": 2, - "estimateObjectIdleTime": 1, - "REDIS_MAXMEMORY_VOLATILE_TTL": 1, - "flushSlavesOutputBuffers": 1, - "linuxOvercommitMemoryValue": 2, - "fgets": 1, - "atoi": 3, - "linuxOvercommitMemoryWarning": 2, - "createPidFile": 2, - "daemonize": 2, - "STDIN_FILENO": 1, - "STDERR_FILENO": 2, - "version": 4, - "usage": 2, - "redisAsciiArt": 2, - "*16": 2, - "ascii_logo": 1, - "sigtermHandler": 2, - "sig": 2, - "sigaction": 6, - "act": 6, - "sigemptyset": 2, - "act.sa_mask": 2, - "act.sa_flags": 2, - "act.sa_handler": 1, - "SIGTERM": 1, - "HAVE_BACKTRACE": 1, - "SA_NODEFER": 1, - "SA_RESETHAND": 1, - "SA_SIGINFO": 1, - "act.sa_sigaction": 1, - "sigsegvHandler": 1, - "SIGSEGV": 1, - "SIGBUS": 1, - "SIGFPE": 1, - "SIGILL": 1, - "memtest": 2, - "megabytes": 1, - "passes": 1, - "zmalloc_enable_thread_safeness": 1, - "srand": 1, - "dictSetHashFunctionSeed": 1, - "*configfile": 1, - "configfile": 2, - "sdscatrepr": 1, - "loadServerConfig": 1, - "loadAppendOnlyFile": 1, - "/1000000": 2, - "rdbLoad": 1, - "aeSetBeforeSleepProc": 1, - "aeMain": 1, - "aeDeleteEventLoop": 1, - "": 1, - "": 2, - "": 2, - "rfUTF8_IsContinuationbyte": 1, - "e.t.c.": 1, - "rfFReadLine_UTF8": 5, - "FILE*": 64, - "utf8": 36, - "uint32_t*": 34, - "byteLength": 197, - "bufferSize": 6, - "eof": 53, - "bytesN": 98, - "bIndex": 5, - "RF_NEWLINE_CRLF": 1, - "newLineFound": 1, - "*bufferSize": 1, - "RF_OPTION_FGETS_READBYTESN": 5, - "RF_MALLOC": 47, - "tempBuff": 6, - "RF_LF": 10, - "buff": 95, - "RF_SUCCESS": 14, - "RE_FILE_EOF": 22, - "found": 20, - "*eofReached": 14, - "LOG_ERROR": 64, - "RF_HEXEQ_UI": 7, - "rfFgetc_UTF32BE": 3, - "else//": 14, - "undo": 5, - "peek": 5, - "ahead": 5, - "file": 6, - "pointer": 5, - "fseek": 19, - "SEEK_CUR": 19, - "rfFgets_UTF32LE": 2, - "eofReached": 4, - "rfFgetc_UTF32LE": 4, - "rfFgets_UTF16BE": 2, - "rfFgetc_UTF16BE": 4, - "rfFgets_UTF16LE": 2, - "rfFgetc_UTF16LE": 4, - "rfFgets_UTF8": 2, - "rfFgetc_UTF8": 3, - "RF_HEXEQ_C": 9, - "fgetc": 9, - "check": 8, - "RE_FILE_READ": 2, - "cp": 12, - "c2": 13, - "c3": 9, - "c4": 5, - "i_READ_CHECK": 20, - "///": 4, - "success": 4, - "cc": 24, - "we": 10, - "more": 2, - "bytes": 225, - "xC0": 3, - "xC1": 1, - "RE_UTF8_INVALID_SEQUENCE_INVALID_BYTE": 6, - "RE_UTF8_INVALID_SEQUENCE_END": 6, - "rfUTF8_IsContinuationByte": 12, - "RE_UTF8_INVALID_SEQUENCE_CONBYTE": 6, - "decoded": 3, - "codepoint": 47, - "F": 38, - "xE0": 2, - "xF": 5, - "decode": 6, - "xF0": 2, - "RF_HEXGE_C": 1, - "xBF": 2, - "//invalid": 1, - "byte": 6, - "are": 6, - "xFF": 1, - "//if": 1, - "needing": 1, - "than": 5, - "swapE": 21, - "v1": 38, - "v2": 26, - "rfUTILS_Endianess": 24, - "RF_LITTLE_ENDIAN": 23, - "fread": 12, - "endianess": 40, - "needed": 10, - "rfUTILS_SwapEndianUS": 10, - "RF_HEXGE_US": 4, - "xD800": 8, - "RF_HEXLE_US": 4, - "xDFFF": 8, - "RF_HEXL_US": 8, - "RF_HEXG_US": 8, - "xDBFF": 4, - "RE_UTF16_INVALID_SEQUENCE": 20, - "RE_UTF16_NO_SURRPAIR": 2, - "xDC00": 4, - "user": 2, - "wants": 2, - "ff": 10, - "uint16_t*": 11, - "surrogate": 4, - "pair": 4, - "existence": 2, - "RF_BIG_ENDIAN": 10, - "rfUTILS_SwapEndianUI": 11, - "rfFback_UTF32BE": 2, - "i_FSEEK_CHECK": 14, - "rfFback_UTF32LE": 2, - "rfFback_UTF16BE": 2, - "rfFback_UTF16LE": 2, - "rfFback_UTF8": 2, - "depending": 1, - "number": 19, - "read": 1, - "backwards": 1, - "RE_UTF8_INVALID_SEQUENCE": 2, - "REFU_IO_H": 2, - "": 2, - "opening": 2, - "bracket": 4, - "calling": 4, - "C": 14, - "xA": 1, - "RF_CR": 1, - "xD": 1, - "REFU_WIN32_VERSION": 1, - "i_PLUSB_WIN32": 2, - "foff_rft": 2, - "off64_t": 1, - "///Fseek": 1, - "and": 15, - "Ftelll": 1, - "definitions": 1, - "rfFseek": 2, - "i_FILE_": 16, - "i_OFFSET_": 4, - "i_WHENCE_": 4, - "_fseeki64": 1, - "rfFtell": 2, - "_ftelli64": 1, - "fseeko64": 1, - "ftello64": 1, - "i_DECLIMEX_": 121, - "rfFReadLine_UTF16BE": 6, - "rfFReadLine_UTF16LE": 4, - "rfFReadLine_UTF32BE": 1, - "rfFReadLine_UTF32LE": 4, - "rfFgets_UTF32BE": 1, - "RF_IAMHERE_FOR_DOXYGEN": 22, - "rfPopen": 2, - "command": 2, - "i_rfPopen": 2, - "i_CMD_": 2, - "i_MODE_": 2, - "i_rfLMS_WRAP2": 5, - "rfPclose": 1, - "stream": 3, - "///closing": 1, - "#endif//include": 1, - "guards": 2, - "": 1, - "": 2, - "local": 5, - "stack": 6, - "memory": 4, - "RF_OPTION_DEFAULT_ARGUMENTS": 24, - "RF_String*": 222, - "rfString_Create": 4, - "i_rfString_Create": 3, - "READ_VSNPRINTF_ARGS": 5, - "rfUTF8_VerifySequence": 7, - "RF_FAILURE": 24, - "RE_STRING_INIT_FAILURE": 8, - "buffAllocated": 11, - "RF_String": 27, - "i_NVrfString_Create": 3, - "i_rfString_CreateLocal1": 3, - "RF_OPTION_SOURCE_ENCODING": 30, - "RF_UTF8": 8, - "characterLength": 16, - "*codepoints": 2, - "rfLMS_MacroEvalPtr": 2, - "RF_LMS": 6, - "RF_UTF16_LE": 9, - "RF_UTF16_BE": 7, - "codepoints": 44, - "i/2": 2, - "#elif": 14, - "RF_UTF32_LE": 3, - "RF_UTF32_BE": 3, - "UTF16": 4, - "rfUTF16_Decode": 5, - "rfUTF16_Decode_swap": 5, - "RF_UTF16_BE//": 2, - "RF_UTF32_LE//": 2, - "copy": 4, - "UTF32": 4, - "into": 8, - "RF_UTF32_BE//": 2, - "": 2, - "any": 3, - "other": 16, - "UTF": 17, - "8": 15, - "encode": 2, - "them": 3, - "rfUTF8_Encode": 4, - "While": 2, - "attempting": 2, - "create": 2, - "temporary": 4, - "given": 5, - "sequence": 6, - "could": 2, - "not": 6, - "be": 6, - "properly": 2, - "encoded": 2, - "RE_UTF8_ENCODING": 2, - "End": 2, - "Non": 2, - "code=": 2, - "normally": 1, - "since": 5, - "here": 5, - "have": 2, - "validity": 2, - "get": 4, - "Error": 2, - "at": 3, - "String": 11, - "Allocation": 2, - "due": 2, - "invalid": 2, - "rfLMS_Push": 4, - "Memory": 4, - "allocation": 3, - "Local": 2, - "Stack": 2, - "failed": 2, - "Insufficient": 2, - "space": 4, - "Consider": 2, - "compiling": 2, - "library": 3, - "with": 9, - "bigger": 3, - "Quitting": 2, - "proccess": 2, - "RE_LOCALMEMSTACK_INSUFFICIENT": 8, - "i_NVrfString_CreateLocal": 3, - "during": 1, - "rfString_Init": 3, - "i_rfString_Init": 3, - "i_NVrfString_Init": 3, - "rfString_Create_cp": 2, - "rfString_Init_cp": 3, - "RF_HEXLE_UI": 8, - "RF_HEXGE_UI": 6, - "C0": 3, - "ffff": 4, - "xFC0": 4, - "xF000": 2, - "xE": 2, - "F000": 2, - "C0000": 2, - "E": 11, - "RE_UTF8_INVALID_CODE_POINT": 2, - "rfString_Create_i": 2, - "numLen": 8, - "max": 4, - "is": 17, - "most": 3, - "environment": 3, - "so": 4, - "chars": 3, - "will": 3, - "certainly": 3, - "fit": 3, - "it": 12, - "strcpy": 4, - "rfString_Init_i": 2, - "rfString_Create_f": 2, - "rfString_Init_f": 2, - "rfString_Create_UTF16": 2, - "rfString_Init_UTF16": 3, - "utf8ByteLength": 34, - "last": 1, - "utf": 1, - "null": 4, - "termination": 3, - "byteLength*2": 1, - "allocate": 1, - "same": 1, - "as": 4, - "different": 1, - "RE_INPUT": 1, - "ends": 3, - "rfString_Create_UTF32": 2, - "rfString_Init_UTF32": 3, - "codeBuffer": 9, - "xFEFF": 1, - "big": 14, - "endian": 20, - "xFFFE0000": 1, - "little": 7, - "according": 1, - "standard": 1, - "no": 4, - "BOM": 1, - "means": 1, - "rfUTF32_Length": 1, - "i_rfString_Assign": 3, - "dest": 7, - "sourceP": 2, - "source": 8, - "RF_REALLOC": 9, - "rfString_Assign_char": 2, - "<5)>": 1, - "rfString_Create_nc": 3, - "i_rfString_Create_nc": 3, - "bytesWritten": 2, - "i_NVrfString_Create_nc": 3, - "rfString_Init_nc": 4, - "i_rfString_Init_nc": 3, - "i_NVrfString_Init_nc": 3, - "rfString_Destroy": 2, - "rfString_Deinit": 3, - "rfString_ToUTF16": 4, - "charsN": 5, - "rfUTF8_Decode": 2, - "rfUTF16_Encode": 1, - "rfString_ToUTF32": 4, - "rfString_Length": 5, - "RF_STRING_ITERATE_START": 9, - "RF_STRING_ITERATE_END": 9, - "rfString_GetChar": 2, - "thisstr": 210, - "codePoint": 18, - "RF_STRING_INDEX_OUT_OF_BOUNDS": 2, - "rfString_BytePosToCodePoint": 7, - "rfString_BytePosToCharPos": 4, - "thisstrP": 32, - "bytepos": 12, - "before": 4, - "charPos": 8, - "byteI": 7, - "i_rfString_Equal": 3, - "s1P": 2, - "s2P": 2, - "i_rfString_Find": 5, - "sstrP": 6, - "optionsP": 11, - "sstr": 39, - "*optionsP": 8, - "RF_BITFLAG_ON": 5, - "RF_CASE_IGNORE": 2, - "strstr": 2, - "RF_MATCH_WORD": 5, - "exact": 6, - "": 1, - "0x5a": 1, - "0x7a": 1, - "substring": 5, - "search": 1, - "zero": 2, - "equals": 1, - "then": 1, - "okay": 1, - "rfString_Equal": 4, - "RFS_": 8, - "ERANGE": 1, - "RE_STRING_TOFLOAT_UNDERFLOW": 1, - "RE_STRING_TOFLOAT": 1, - "rfString_Copy_OUT": 2, - "srcP": 6, - "rfString_Copy_IN": 2, - "dst": 15, - "rfString_Copy_chars": 2, - "bytePos": 23, - "terminate": 1, - "i_rfString_ScanfAfter": 3, - "afterstrP": 2, - "format": 4, - "afterstr": 5, - "sscanf": 1, - "<=0)>": 1, - "Counts": 1, - "how": 1, - "many": 1, - "times": 1, - "occurs": 1, - "inside": 2, - "i_rfString_Count": 5, - "sstr2": 2, - "move": 12, - "rfString_FindBytePos": 10, - "rfString_Tokenize": 2, - "sep": 3, - "tokensN": 2, - "RF_String**": 2, - "*tokensN": 1, - "rfString_Count": 4, - "lstr": 6, - "lstrP": 1, - "rstr": 24, - "rstrP": 5, - "rfString_After": 4, - "rfString_Beforev": 4, - "parNP": 6, - "i_rfString_Beforev": 16, - "parN": 10, - "*parNP": 2, - "minPos": 17, - "thisPos": 8, - "argList": 8, - "va_arg": 2, - "i_rfString_Before": 5, - "i_rfString_After": 5, - "afterP": 2, - "after": 6, - "rfString_Afterv": 4, - "i_rfString_Afterv": 16, - "minPosLength": 3, - "go": 8, - "i_rfString_Append": 3, - "otherP": 4, - "strncat": 1, - "rfString_Append_i": 2, - "rfString_Append_f": 2, - "i_rfString_Prepend": 3, - "goes": 1, - "i_rfString_Remove": 6, - "numberP": 1, - "*numberP": 1, - "occurences": 5, - "done": 1, - "<=thisstr->": 1, - "i_rfString_KeepOnly": 3, - "keepstrP": 2, - "keepLength": 2, - "charValue": 12, - "*keepChars": 1, - "keepstr": 5, - "exists": 6, - "charBLength": 5, - "keepChars": 4, - "*keepLength": 1, - "rfString_Iterate_Start": 6, - "rfString_Iterate_End": 4, - "": 1, - "does": 1, - "exist": 2, - "back": 1, - "cover": 1, - "that": 9, - "effectively": 1, - "gets": 1, - "deleted": 1, - "rfUTF8_FromCodepoint": 1, - "this": 5, - "kind": 1, - "non": 1, - "clean": 1, - "way": 1, - "macro": 2, - "internally": 1, - "uses": 1, - "byteIndex_": 12, - "variable": 1, - "use": 1, - "determine": 1, - "backs": 1, - "by": 1, - "contiuing": 1, - "make": 3, - "sure": 2, - "position": 1, - "won": 1, - "array": 1, - "rfString_PruneStart": 2, - "nBytePos": 23, - "rfString_PruneEnd": 2, - "RF_STRING_ITERATEB_START": 2, - "RF_STRING_ITERATEB_END": 2, - "rfString_PruneMiddleB": 2, - "pBytePos": 15, - "indexing": 1, - "works": 1, - "pbytePos": 2, - "pth": 2, - "include": 6, - "rfString_PruneMiddleF": 2, - "got": 1, - "all": 2, - "i_rfString_Replace": 6, - "numP": 1, - "*numP": 1, - "RF_StringX": 2, - "just": 1, - "finding": 1, - "foundN": 10, - "bSize": 4, - "bytePositions": 17, - "bSize*sizeof": 1, - "rfStringX_FromString_IN": 1, - "temp.bIndex": 2, - "temp.bytes": 1, - "temp.byteLength": 1, - "rfStringX_Deinit": 1, - "replace": 3, - "removed": 2, - "one": 2, - "orSize": 5, - "nSize": 4, - "number*diff": 1, - "strncpy": 3, - "smaller": 1, - "diff*number": 1, - "remove": 1, - "equal": 1, - "i_rfString_StripStart": 3, - "subP": 7, - "RF_String*sub": 2, - "noMatch": 8, - "*subValues": 2, - "subLength": 6, - "subValues": 8, - "*subLength": 2, - "i_rfString_StripEnd": 3, - "lastBytePos": 4, - "testity": 2, - "i_rfString_Strip": 3, - "res1": 2, - "rfString_StripStart": 3, - "res2": 2, - "rfString_StripEnd": 3, - "rfString_Create_fUTF8": 2, - "rfString_Init_fUTF8": 3, - "unused": 3, - "rfString_Assign_fUTF8": 2, - "FILE*f": 2, - "utf8BufferSize": 4, - "function": 6, - "rfString_Append_fUTF8": 2, - "rfString_Append": 5, - "rfString_Create_fUTF16": 2, - "rfString_Init_fUTF16": 3, - "rfString_Assign_fUTF16": 2, - "rfString_Append_fUTF16": 2, - "char*utf8": 3, - "rfString_Create_fUTF32": 2, - "rfString_Init_fUTF32": 3, - "<0)>": 1, - "Failure": 1, - "initialize": 1, - "reading": 1, - "Little": 1, - "Endian": 1, - "32": 1, - "bytesN=": 1, - "rfString_Assign_fUTF32": 2, - "rfString_Append_fUTF32": 2, - "i_rfString_Fwrite": 5, - "sP": 2, - "encodingP": 1, - "*utf32": 1, - "utf16": 11, - "*encodingP": 1, - "fwrite": 5, - "logging": 5, - "utf32": 10, - "i_WRITE_CHECK": 1, - "RE_FILE_WRITE": 1, - "REFU_USTRING_H": 2, - "": 1, - "RF_MODULE_STRINGS//": 1, - "included": 2, - "module": 3, - "": 1, - "argument": 1, - "wrapping": 1, - "functionality": 1, - "": 1, - "unicode": 2, - "xFF0FFFF": 1, - "rfUTF8_IsContinuationByte2": 1, - "b__": 3, - "0xBF": 1, - "pragma": 1, - "pack": 2, - "push": 1, - "internal": 4, - "author": 1, - "Lefteris": 1, - "09": 1, - "12": 1, - "2010": 1, - "endinternal": 1, - "brief": 1, - "A": 11, - "representation": 2, - "The": 1, - "Refu": 2, - "Unicode": 1, - "has": 2, - "two": 1, - "versions": 1, - "One": 1, - "ref": 1, - "what": 1, - "operations": 1, - "can": 2, - "performed": 1, - "extended": 3, - "Strings": 2, - "Functions": 1, - "convert": 1, - "but": 1, - "always": 2, - "Once": 1, - "been": 1, - "created": 1, - "assumed": 1, - "valid": 1, - "every": 1, - "performs": 1, - "unless": 1, - "otherwise": 1, - "specified": 1, - "All": 1, - "functions": 2, - "which": 1, - "isinherited": 1, - "StringX": 2, - "their": 1, - "description": 1, - "safely": 1, - "specific": 1, - "or": 1, - "needs": 1, - "manipulate": 1, - "Extended": 1, - "To": 1, - "documentation": 1, - "even": 1, - "clearer": 1, - "should": 2, - "marked": 1, - "notinherited": 1, - "cppcode": 1, - "constructor": 1, - "i_StringCHandle": 1, - "@endcpp": 1, - "@endinternal": 1, - "*/": 1, - "#pragma": 1, - "pop": 1, - "i_rfString_CreateLocal": 2, - "__VA_ARGS__": 66, - "RP_SELECT_FUNC_IF_NARGIS": 5, - "i_SELECT_RF_STRING_CREATE": 1, - "i_SELECT_RF_STRING_CREATE1": 1, - "i_SELECT_RF_STRING_CREATE0": 1, - "///Internal": 1, + "//": 6, "creates": 1, - "i_SELECT_RF_STRING_CREATELOCAL": 1, - "i_SELECT_RF_STRING_CREATELOCAL1": 1, - "i_SELECT_RF_STRING_CREATELOCAL0": 1, - "i_SELECT_RF_STRING_INIT": 1, - "i_SELECT_RF_STRING_INIT1": 1, - "i_SELECT_RF_STRING_INIT0": 1, - "code": 6, - "i_SELECT_RF_STRING_CREATE_NC": 1, - "i_SELECT_RF_STRING_CREATE_NC1": 1, - "i_SELECT_RF_STRING_CREATE_NC0": 1, - "i_SELECT_RF_STRING_INIT_NC": 1, - "i_SELECT_RF_STRING_INIT_NC1": 1, - "i_SELECT_RF_STRING_INIT_NC0": 1, - "//@": 1, - "rfString_Assign": 2, - "i_DESTINATION_": 2, - "i_SOURCE_": 2, - "rfString_ToUTF8": 2, - "i_STRING_": 2, - "rfString_ToCstr": 2, - "uint32_t*length": 1, - "string_": 9, - "startCharacterPos_": 4, - "characterUnicodeValue_": 4, - "j_": 6, - "//Two": 1, - "macros": 1, - "accomplish": 1, - "going": 1, - "backwards.": 1, - "This": 1, - "its": 1, - "pair.": 1, - "rfString_IterateB_Start": 1, - "characterPos_": 5, - "b_index_": 6, - "c_index_": 3, - "rfString_IterateB_End": 1, - "i_STRING1_": 2, - "i_STRING2_": 2, - "i_rfLMSX_WRAP2": 4, - "rfString_Find": 3, - "i_THISSTR_": 60, - "i_SEARCHSTR_": 26, - "i_OPTIONS_": 28, - "i_rfLMS_WRAP3": 4, - "i_RFI8_": 54, - "RF_SELECT_FUNC_IF_NARGGT": 10, - "i_NPSELECT_RF_STRING_FIND": 1, - "i_NPSELECT_RF_STRING_FIND1": 1, - "RF_COMPILE_ERROR": 33, - "i_NPSELECT_RF_STRING_FIND0": 1, - "RF_SELECT_FUNC": 10, - "i_SELECT_RF_STRING_FIND": 1, - "i_SELECT_RF_STRING_FIND2": 1, - "i_SELECT_RF_STRING_FIND3": 1, - "i_SELECT_RF_STRING_FIND1": 1, - "i_SELECT_RF_STRING_FIND0": 1, - "rfString_ToInt": 1, - "int32_t*": 1, - "rfString_ToDouble": 1, - "double*": 1, - "rfString_ScanfAfter": 2, - "i_AFTERSTR_": 8, - "i_FORMAT_": 2, - "i_VAR_": 2, - "i_rfLMSX_WRAP4": 11, - "i_NPSELECT_RF_STRING_COUNT": 1, - "i_NPSELECT_RF_STRING_COUNT1": 1, - "i_NPSELECT_RF_STRING_COUNT0": 1, - "i_SELECT_RF_STRING_COUNT": 1, - "i_SELECT_RF_STRING_COUNT2": 1, - "i_rfLMSX_WRAP3": 5, - "i_SELECT_RF_STRING_COUNT3": 1, - "i_SELECT_RF_STRING_COUNT1": 1, - "i_SELECT_RF_STRING_COUNT0": 1, - "rfString_Between": 3, - "i_rfString_Between": 4, - "i_NPSELECT_RF_STRING_BETWEEN": 1, - "i_NPSELECT_RF_STRING_BETWEEN1": 1, - "i_NPSELECT_RF_STRING_BETWEEN0": 1, - "i_SELECT_RF_STRING_BETWEEN": 1, - "i_SELECT_RF_STRING_BETWEEN4": 1, - "i_LEFTSTR_": 6, - "i_RIGHTSTR_": 6, - "i_RESULT_": 12, - "i_rfLMSX_WRAP5": 9, - "i_SELECT_RF_STRING_BETWEEN5": 1, - "i_SELECT_RF_STRING_BETWEEN3": 1, - "i_SELECT_RF_STRING_BETWEEN2": 1, - "i_SELECT_RF_STRING_BETWEEN1": 1, - "i_SELECT_RF_STRING_BETWEEN0": 1, - "i_NPSELECT_RF_STRING_BEFOREV": 1, - "i_NPSELECT_RF_STRING_BEFOREV1": 1, - "RF_SELECT_FUNC_IF_NARGGT2": 2, - "i_LIMSELECT_RF_STRING_BEFOREV": 1, - "i_NPSELECT_RF_STRING_BEFOREV0": 1, - "i_LIMSELECT_RF_STRING_BEFOREV1": 1, - "i_LIMSELECT_RF_STRING_BEFOREV0": 1, - "i_SELECT_RF_STRING_BEFOREV": 1, - "i_SELECT_RF_STRING_BEFOREV5": 1, - "i_ARG1_": 56, - "i_ARG2_": 56, - "i_ARG3_": 56, - "i_ARG4_": 56, - "i_RFUI8_": 28, - "i_SELECT_RF_STRING_BEFOREV6": 1, - "i_rfLMSX_WRAP6": 2, - "i_SELECT_RF_STRING_BEFOREV7": 1, - "i_rfLMSX_WRAP7": 2, - "i_SELECT_RF_STRING_BEFOREV8": 1, - "i_rfLMSX_WRAP8": 2, - "i_SELECT_RF_STRING_BEFOREV9": 1, - "i_rfLMSX_WRAP9": 2, - "i_SELECT_RF_STRING_BEFOREV10": 1, - "i_rfLMSX_WRAP10": 2, - "i_SELECT_RF_STRING_BEFOREV11": 1, - "i_rfLMSX_WRAP11": 2, - "i_SELECT_RF_STRING_BEFOREV12": 1, - "i_rfLMSX_WRAP12": 2, - "i_SELECT_RF_STRING_BEFOREV13": 1, - "i_rfLMSX_WRAP13": 2, - "i_SELECT_RF_STRING_BEFOREV14": 1, - "i_rfLMSX_WRAP14": 2, - "i_SELECT_RF_STRING_BEFOREV15": 1, - "i_rfLMSX_WRAP15": 2, - "i_SELECT_RF_STRING_BEFOREV16": 1, - "i_rfLMSX_WRAP16": 2, - "i_SELECT_RF_STRING_BEFOREV17": 1, - "i_rfLMSX_WRAP17": 2, - "i_SELECT_RF_STRING_BEFOREV18": 1, - "i_rfLMSX_WRAP18": 2, - "rfString_Before": 3, - "i_NPSELECT_RF_STRING_BEFORE": 1, - "i_NPSELECT_RF_STRING_BEFORE1": 1, - "i_NPSELECT_RF_STRING_BEFORE0": 1, - "i_SELECT_RF_STRING_BEFORE": 1, - "i_SELECT_RF_STRING_BEFORE3": 1, - "i_SELECT_RF_STRING_BEFORE4": 1, - "i_SELECT_RF_STRING_BEFORE2": 1, - "i_SELECT_RF_STRING_BEFORE1": 1, - "i_SELECT_RF_STRING_BEFORE0": 1, - "i_NPSELECT_RF_STRING_AFTER": 1, - "i_NPSELECT_RF_STRING_AFTER1": 1, - "i_NPSELECT_RF_STRING_AFTER0": 1, - "i_SELECT_RF_STRING_AFTER": 1, - "i_SELECT_RF_STRING_AFTER3": 1, - "i_OUTSTR_": 6, - "i_SELECT_RF_STRING_AFTER4": 1, - "i_SELECT_RF_STRING_AFTER2": 1, - "i_SELECT_RF_STRING_AFTER1": 1, - "i_SELECT_RF_STRING_AFTER0": 1, - "i_NPSELECT_RF_STRING_AFTERV": 1, - "i_NPSELECT_RF_STRING_AFTERV1": 1, - "i_LIMSELECT_RF_STRING_AFTERV": 1, - "i_NPSELECT_RF_STRING_AFTERV0": 1, - "i_LIMSELECT_RF_STRING_AFTERV1": 1, - "i_LIMSELECT_RF_STRING_AFTERV0": 1, - "i_SELECT_RF_STRING_AFTERV": 1, - "i_SELECT_RF_STRING_AFTERV5": 1, - "i_SELECT_RF_STRING_AFTERV6": 1, - "i_SELECT_RF_STRING_AFTERV7": 1, - "i_SELECT_RF_STRING_AFTERV8": 1, - "i_SELECT_RF_STRING_AFTERV9": 1, - "i_SELECT_RF_STRING_AFTERV10": 1, - "i_SELECT_RF_STRING_AFTERV11": 1, - "i_SELECT_RF_STRING_AFTERV12": 1, - "i_SELECT_RF_STRING_AFTERV13": 1, - "i_SELECT_RF_STRING_AFTERV14": 1, - "i_SELECT_RF_STRING_AFTERV15": 1, - "i_SELECT_RF_STRING_AFTERV16": 1, - "i_SELECT_RF_STRING_AFTERV17": 1, - "i_SELECT_RF_STRING_AFTERV18": 1, - "i_OTHERSTR_": 4, - "rfString_Prepend": 2, - "rfString_Remove": 3, - "i_NPSELECT_RF_STRING_REMOVE": 1, - "i_NPSELECT_RF_STRING_REMOVE1": 1, - "i_NPSELECT_RF_STRING_REMOVE0": 1, - "i_SELECT_RF_STRING_REMOVE": 1, - "i_SELECT_RF_STRING_REMOVE2": 1, - "i_REPSTR_": 16, - "i_RFUI32_": 8, - "i_SELECT_RF_STRING_REMOVE3": 1, - "i_NUMBER_": 12, - "i_SELECT_RF_STRING_REMOVE4": 1, - "i_SELECT_RF_STRING_REMOVE1": 1, - "i_SELECT_RF_STRING_REMOVE0": 1, - "rfString_KeepOnly": 2, - "I_KEEPSTR_": 2, - "rfString_Replace": 3, - "i_NPSELECT_RF_STRING_REPLACE": 1, - "i_NPSELECT_RF_STRING_REPLACE1": 1, - "i_NPSELECT_RF_STRING_REPLACE0": 1, - "i_SELECT_RF_STRING_REPLACE": 1, - "i_SELECT_RF_STRING_REPLACE3": 1, - "i_SELECT_RF_STRING_REPLACE4": 1, - "i_SELECT_RF_STRING_REPLACE5": 1, - "i_SELECT_RF_STRING_REPLACE2": 1, - "i_SELECT_RF_STRING_REPLACE1": 1, - "i_SELECT_RF_STRING_REPLACE0": 1, - "i_SUBSTR_": 6, - "rfString_Strip": 2, - "rfString_Fwrite": 2, - "i_NPSELECT_RF_STRING_FWRITE": 1, - "i_NPSELECT_RF_STRING_FWRITE1": 1, - "i_NPSELECT_RF_STRING_FWRITE0": 1, - "i_SELECT_RF_STRING_FWRITE": 1, - "i_SELECT_RF_STRING_FWRITE3": 1, - "i_STR_": 8, - "i_ENCODING_": 4, - "i_SELECT_RF_STRING_FWRITE2": 1, - "i_SELECT_RF_STRING_FWRITE1": 1, - "i_SELECT_RF_STRING_FWRITE0": 1, - "rfString_Fwrite_fUTF8": 1, - "closing": 1, - "#error": 4, - "Attempted": 1, - "manipulation": 1, - "flag": 1, - "off.": 1, - "Rebuild": 1, - "added": 1, - "you": 1, - "#endif//": 1, - "PY_SSIZE_T_CLEAN": 1, - "Py_PYTHON_H": 1, - "Python": 2, - "headers": 1, - "compile": 1, - "extensions": 1, - "please": 1, - "install": 1, - "development": 1, - "Python.": 1, - "PY_VERSION_HEX": 11, - "Cython": 1, - "requires": 1, - ".": 1, - "offsetof": 2, - "member": 2, - "type*": 1, - "WIN32": 2, - "MS_WINDOWS": 2, - "__stdcall": 2, - "__cdecl": 2, - "__fastcall": 2, - "DL_IMPORT": 2, - "DL_EXPORT": 2, - "PY_LONG_LONG": 5, - "LONG_LONG": 1, - "Py_HUGE_VAL": 2, - "HUGE_VAL": 1, - "PYPY_VERSION": 1, - "CYTHON_COMPILING_IN_PYPY": 3, - "CYTHON_COMPILING_IN_CPYTHON": 6, - "Py_ssize_t": 35, - "PY_SSIZE_T_MAX": 1, - "INT_MAX": 1, - "PY_SSIZE_T_MIN": 1, - "INT_MIN": 1, - "PY_FORMAT_SIZE_T": 1, - "CYTHON_FORMAT_SSIZE_T": 2, - "PyInt_FromSsize_t": 6, - "PyInt_FromLong": 3, - "PyInt_AsSsize_t": 3, - "__Pyx_PyInt_AsInt": 2, - "PyNumber_Index": 1, - "PyNumber_Check": 2, - "PyFloat_Check": 2, - "PyNumber_Int": 1, - "PyErr_Format": 4, - "PyExc_TypeError": 4, - "Py_TYPE": 7, - "tp_name": 4, - "PyObject*": 24, - "__Pyx_PyIndex_Check": 3, - "PyComplex_Check": 1, - "PyIndex_Check": 2, - "PyErr_WarnEx": 1, - "category": 2, - "stacklevel": 1, - "PyErr_Warn": 1, - "__PYX_BUILD_PY_SSIZE_T": 2, - "Py_REFCNT": 1, - "ob_refcnt": 1, - "ob_type": 7, - "Py_SIZE": 1, - "PyVarObject*": 1, - "ob_size": 1, - "PyVarObject_HEAD_INIT": 1, - "PyObject_HEAD_INIT": 1, - "PyType_Modified": 1, - "PyObject": 276, - "itemsize": 1, - "readonly": 1, - "ndim": 2, - "*shape": 1, - "*strides": 1, - "*suboffsets": 1, - "*internal": 1, - "Py_buffer": 6, - "PyBUF_SIMPLE": 1, - "PyBUF_WRITABLE": 3, - "PyBUF_FORMAT": 3, - "PyBUF_ND": 2, - "PyBUF_STRIDES": 6, - "PyBUF_C_CONTIGUOUS": 1, - "PyBUF_F_CONTIGUOUS": 1, - "PyBUF_ANY_CONTIGUOUS": 1, - "PyBUF_INDIRECT": 2, - "PyBUF_RECORDS": 1, - "PyBUF_FULL": 1, - "PY_MAJOR_VERSION": 13, - "__Pyx_BUILTIN_MODULE_NAME": 2, - "__Pyx_PyCode_New": 2, - "l": 7, - "fv": 4, - "cell": 4, - "fline": 4, - "lnos": 4, - "PyCode_New": 2, - "PY_MINOR_VERSION": 1, - "PyUnicode_FromString": 2, - "PyUnicode_Decode": 1, - "Py_TPFLAGS_CHECKTYPES": 1, - "Py_TPFLAGS_HAVE_INDEX": 1, - "Py_TPFLAGS_HAVE_NEWBUFFER": 1, - "PyUnicode_KIND": 1, - "CYTHON_PEP393_ENABLED": 2, - "__Pyx_PyUnicode_READY": 2, - "op": 8, - "PyUnicode_IS_READY": 1, - "_PyUnicode_Ready": 1, - "__Pyx_PyUnicode_GET_LENGTH": 2, - "PyUnicode_GET_LENGTH": 1, - "__Pyx_PyUnicode_READ_CHAR": 2, - "PyUnicode_READ_CHAR": 1, - "__Pyx_PyUnicode_READ": 2, - "PyUnicode_READ": 1, - "PyUnicode_GET_SIZE": 1, - "Py_UCS4": 2, - "PyUnicode_AS_UNICODE": 1, - "Py_UNICODE*": 1, - "PyBaseString_Type": 1, - "PyUnicode_Type": 2, - "PyStringObject": 2, - "PyUnicodeObject": 1, - "PyString_Type": 2, - "PyString_Check": 2, - "PyUnicode_Check": 1, - "PyString_CheckExact": 2, - "PyUnicode_CheckExact": 1, - "PyBytesObject": 1, - "PyBytes_Type": 1, - "PyBytes_Check": 1, - "PyBytes_CheckExact": 1, - "PyBytes_FromString": 2, - "PyString_FromString": 2, - "PyBytes_FromStringAndSize": 1, - "PyString_FromStringAndSize": 1, - "PyBytes_FromFormat": 1, - "PyString_FromFormat": 1, - "PyBytes_DecodeEscape": 1, - "PyString_DecodeEscape": 1, - "PyBytes_AsString": 2, - "PyString_AsString": 1, - "PyBytes_AsStringAndSize": 1, - "PyString_AsStringAndSize": 1, - "PyBytes_Size": 1, - "PyString_Size": 1, - "PyBytes_AS_STRING": 1, - "PyString_AS_STRING": 1, - "PyBytes_GET_SIZE": 1, - "PyString_GET_SIZE": 1, - "PyBytes_Repr": 1, - "PyString_Repr": 1, - "PyBytes_Concat": 1, - "PyString_Concat": 1, - "PyBytes_ConcatAndDel": 1, - "PyString_ConcatAndDel": 1, - "PySet_Check": 1, - "PyObject_TypeCheck": 3, - "PySet_Type": 2, - "PyFrozenSet_Check": 1, - "PyFrozenSet_Type": 1, - "PySet_CheckExact": 2, - "__Pyx_TypeCheck": 1, - "PyTypeObject": 25, - "PyIntObject": 1, - "PyLongObject": 2, - "PyInt_Type": 1, - "PyLong_Type": 1, - "PyInt_Check": 1, - "PyLong_Check": 1, - "PyInt_CheckExact": 1, - "PyLong_CheckExact": 1, - "PyInt_FromString": 1, - "PyLong_FromString": 1, - "PyInt_FromUnicode": 1, - "PyLong_FromUnicode": 1, - "PyLong_FromLong": 1, - "PyInt_FromSize_t": 1, - "PyLong_FromSize_t": 1, - "PyLong_FromSsize_t": 1, - "PyInt_AsLong": 2, - "PyLong_AsLong": 1, - "PyInt_AS_LONG": 1, - "PyLong_AS_LONG": 1, - "PyLong_AsSsize_t": 1, - "PyInt_AsUnsignedLongMask": 1, - "PyLong_AsUnsignedLongMask": 1, - "PyInt_AsUnsignedLongLongMask": 1, - "PyLong_AsUnsignedLongLongMask": 1, - "PyBoolObject": 1, - "Py_hash_t": 1, - "__Pyx_PyInt_FromHash_t": 2, - "__Pyx_PyInt_AsHash_t": 2, - "__Pyx_PySequence_GetSlice": 2, - "PySequence_GetSlice": 2, - "__Pyx_PySequence_SetSlice": 2, - "PySequence_SetSlice": 2, - "__Pyx_PySequence_DelSlice": 2, - "PySequence_DelSlice": 2, - "PyErr_SetString": 3, - "PyExc_SystemError": 3, - "tp_as_mapping": 3, - "PyMethod_New": 2, - "func": 3, - "klass": 1, - "PyInstanceMethod_New": 1, - "__Pyx_GetAttrString": 2, - "PyObject_GetAttrString": 2, - "__Pyx_SetAttrString": 2, - "PyObject_SetAttrString": 2, - "__Pyx_DelAttrString": 2, - "PyObject_DelAttrString": 2, - "__Pyx_NAMESTR": 2, - "__Pyx_DOCSTR": 2, - "__Pyx_PyNumber_Divide": 2, - "y": 14, - "PyNumber_TrueDivide": 1, - "__Pyx_PyNumber_InPlaceDivide": 2, - "PyNumber_InPlaceTrueDivide": 1, - "PyNumber_Divide": 1, - "PyNumber_InPlaceDivide": 1, - "__PYX_EXTERN_C": 3, - "_USE_MATH_DEFINES": 1, - "__PYX_HAVE__sklearn__linear_model__sgd_fast": 1, - "__PYX_HAVE_API__sklearn__linear_model__sgd_fast": 1, - "_OPENMP": 1, - "": 1, - "PYREX_WITHOUT_ASSERTIONS": 1, - "CYTHON_WITHOUT_ASSERTIONS": 1, - "CYTHON_INLINE": 65, - "__inline__": 1, - "__inline": 1, - "__STDC_VERSION__": 2, - "L": 1, - "CYTHON_UNUSED": 14, - "**p": 1, - "is_unicode": 1, - "is_str": 1, - "intern": 1, - "__Pyx_StringTabEntry": 2, - "__Pyx_PyBytes_FromUString": 1, - "__Pyx_PyBytes_AsUString": 1, - "__Pyx_Owned_Py_None": 1, - "Py_INCREF": 10, - "Py_None": 8, - "__Pyx_PyBool_FromLong": 1, - "Py_True": 2, - "Py_False": 2, - "__Pyx_PyObject_IsTrue": 1, - "__Pyx_PyNumber_Int": 1, - "__Pyx_PyIndex_AsSsize_t": 1, - "__Pyx_PyInt_FromSize_t": 1, - "__Pyx_PyInt_AsSize_t": 1, - "__pyx_PyFloat_AsDouble": 12, - "PyFloat_CheckExact": 1, - "PyFloat_AS_DOUBLE": 1, - "PyFloat_AsDouble": 2, - "__pyx_PyFloat_AsFloat": 1, - "__builtin_expect": 2, - "*__pyx_m": 1, - "*__pyx_b": 1, - "*__pyx_empty_tuple": 1, - "*__pyx_empty_bytes": 1, - "__pyx_lineno": 58, - "__pyx_clineno": 58, - "__pyx_cfilenm": 1, - "__FILE__": 4, - "*__pyx_filename": 7, - "CYTHON_CCOMPLEX": 12, - "_Complex_I": 3, - "": 1, - "": 1, - "__sun__": 1, - "fj": 1, - "*__pyx_f": 1, - "IS_UNSIGNED": 1, - "__Pyx_StructField_": 2, - "__PYX_BUF_FLAGS_PACKED_STRUCT": 1, - "__Pyx_StructField_*": 1, - "fields": 1, - "arraysize": 1, - "typegroup": 1, - "is_unsigned": 1, - "__Pyx_TypeInfo": 2, - "__Pyx_TypeInfo*": 2, - "offset": 1, - "__Pyx_StructField": 2, - "__Pyx_StructField*": 1, - "field": 1, - "parent_offset": 1, - "__Pyx_BufFmt_StackElem": 1, - "root": 1, - "__Pyx_BufFmt_StackElem*": 2, - "fmt_offset": 1, - "new_count": 1, - "enc_count": 1, - "struct_alignment": 1, - "is_complex": 1, - "enc_type": 1, - "new_packmode": 1, - "enc_packmode": 1, - "is_valid_array": 1, - "__Pyx_BufFmt_Context": 1, - "npy_int8": 1, - "__pyx_t_5numpy_int8_t": 1, - "npy_int16": 1, - "__pyx_t_5numpy_int16_t": 1, - "npy_int32": 1, - "__pyx_t_5numpy_int32_t": 4, - "npy_int64": 1, - "__pyx_t_5numpy_int64_t": 1, - "npy_uint8": 1, - "__pyx_t_5numpy_uint8_t": 1, - "npy_uint16": 1, - "__pyx_t_5numpy_uint16_t": 1, - "npy_uint32": 1, - "__pyx_t_5numpy_uint32_t": 1, - "npy_uint64": 1, - "__pyx_t_5numpy_uint64_t": 1, - "npy_float32": 1, - "__pyx_t_5numpy_float32_t": 1, - "npy_float64": 1, - "__pyx_t_5numpy_float64_t": 4, - "npy_long": 1, - "__pyx_t_5numpy_int_t": 1, - "npy_longlong": 2, - "__pyx_t_5numpy_long_t": 1, - "__pyx_t_5numpy_longlong_t": 1, - "npy_ulong": 1, - "__pyx_t_5numpy_uint_t": 1, - "npy_ulonglong": 2, - "__pyx_t_5numpy_ulong_t": 1, - "__pyx_t_5numpy_ulonglong_t": 1, - "npy_intp": 1, - "__pyx_t_5numpy_intp_t": 1, - "npy_uintp": 1, - "__pyx_t_5numpy_uintp_t": 1, - "npy_double": 2, - "__pyx_t_5numpy_float_t": 1, - "__pyx_t_5numpy_double_t": 1, - "npy_longdouble": 1, - "__pyx_t_5numpy_longdouble_t": 1, - "__pyx_t_7sklearn_5utils_13weight_vector_DOUBLE": 2, - "__pyx_t_7sklearn_5utils_13weight_vector_INTEGER": 1, - "__pyx_t_7sklearn_5utils_11seq_dataset_DOUBLE": 7, - "__pyx_t_7sklearn_5utils_11seq_dataset_INTEGER": 7, - "__pyx_t_7sklearn_12linear_model_8sgd_fast_DOUBLE": 4, - "__pyx_t_7sklearn_12linear_model_8sgd_fast_INTEGER": 3, - "std": 8, - "complex": 2, - "__pyx_t_float_complex": 27, - "_Complex": 2, - "real": 2, - "imag": 2, - "__pyx_t_double_complex": 27, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_LossFunction": 15, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Regression": 11, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Huber": 6, - "__pyx_obj_7sklearn_5utils_11seq_dataset_SequentialDataset": 5, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 6, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Classification": 7, - "__pyx_obj_7sklearn_5utils_11seq_dataset_CSRDataset": 2, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Log": 5, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Hinge": 6, - "__pyx_obj_7sklearn_5utils_11seq_dataset_ArrayDataset": 2, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 6, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_ModifiedHuber": 5, - "__pyx_obj_7sklearn_5utils_13weight_vector_WeightVector": 3, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredLoss": 5, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredEpsilonInsensitive": 6, - "npy_cfloat": 1, - "__pyx_t_5numpy_cfloat_t": 1, - "npy_cdouble": 2, - "__pyx_t_5numpy_cdouble_t": 1, - "npy_clongdouble": 1, - "__pyx_t_5numpy_clongdouble_t": 1, - "__pyx_t_5numpy_complex_t": 1, - "PyObject_HEAD": 3, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_LossFunction": 5, - "*__pyx_vtab": 3, - "__pyx_base": 18, - "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_SequentialDataset": 4, - "n_samples": 1, - "epsilon": 2, - "current_index": 2, - "stride": 2, - "*X_data_ptr": 2, - "*X_indptr_ptr": 1, - "*X_indices_ptr": 1, - "*Y_data_ptr": 2, - "PyArrayObject": 8, - "*feature_indices": 2, - "*feature_indices_ptr": 2, - "*index": 2, - "*index_data_ptr": 2, - "*sample_weight_data": 2, - "threshold": 2, - "n_features": 2, - "__pyx_vtabstruct_7sklearn_5utils_13weight_vector_WeightVector": 3, - "*w_data_ptr": 1, - "wscale": 1, - "sq_norm": 1, - "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_SequentialDataset": 1, - "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_ArrayDataset": 2, - "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_ArrayDataset": 1, - "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_CSRDataset": 2, - "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_CSRDataset": 1, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 2, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Regression": 3, - "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 1, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 2, - "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 1, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Huber": 2, - "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_Huber": 1, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Hinge": 2, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Classification": 1, - "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_Hinge": 1, - "*__pyx_vtabptr_7sklearn_5utils_13weight_vector_WeightVector": 1, - "CYTHON_REFNANNY": 3, - "__Pyx_RefNannyAPIStruct": 3, - "*__Pyx_RefNanny": 1, - "*__Pyx_RefNannyImportAPI": 1, - "*modname": 1, - "__Pyx_RefNannyDeclarations": 11, - "*__pyx_refnanny": 1, - "WITH_THREAD": 1, - "__Pyx_RefNannySetupContext": 12, - "acquire_gil": 4, - "PyGILState_STATE": 1, - "__pyx_gilstate_save": 2, - "PyGILState_Ensure": 1, - "__pyx_refnanny": 8, - "__Pyx_RefNanny": 8, - "SetupContext": 3, - "PyGILState_Release": 1, - "__Pyx_RefNannyFinishContext": 14, - "FinishContext": 1, - "__Pyx_INCREF": 6, - "INCREF": 1, - "__Pyx_DECREF": 20, - "DECREF": 1, - "__Pyx_GOTREF": 24, - "GOTREF": 1, - "__Pyx_GIVEREF": 9, - "GIVEREF": 1, - "__Pyx_XINCREF": 2, - "__Pyx_XDECREF": 20, - "__Pyx_XGOTREF": 2, - "__Pyx_XGIVEREF": 5, - "Py_DECREF": 2, - "Py_XINCREF": 1, - "Py_XDECREF": 1, - "__Pyx_CLEAR": 1, - "__Pyx_XCLEAR": 1, - "*__Pyx_GetName": 1, - "__Pyx_ErrRestore": 1, - "*type": 4, - "*tb": 2, - "__Pyx_ErrFetch": 1, - "**type": 1, - "**value": 1, - "**tb": 1, - "__Pyx_Raise": 4, - "*cause": 1, - "__Pyx_RaiseArgtupleInvalid": 7, - "func_name": 2, - "num_min": 1, - "num_max": 1, - "num_found": 1, - "__Pyx_RaiseDoubleKeywordsError": 1, - "kw_name": 1, - "__Pyx_ParseOptionalKeywords": 4, - "*kwds": 1, - "**argnames": 1, - "*kwds2": 1, - "*values": 1, - "num_pos_args": 1, - "function_name": 1, - "__Pyx_ArgTypeTest": 1, - "none_allowed": 1, - "__Pyx_GetBufferAndValidate": 1, - "Py_buffer*": 2, - "dtype": 1, - "nd": 1, - "cast": 1, - "__Pyx_SafeReleaseBuffer": 1, - "__Pyx_TypeTest": 1, - "__Pyx_RaiseBufferFallbackError": 1, - "*__Pyx_GetItemInt_Generic": 1, - "*r": 7, - "PyObject_GetItem": 1, - "__Pyx_GetItemInt_List": 1, - "to_py_func": 6, - "__Pyx_GetItemInt_List_Fast": 1, - "__Pyx_GetItemInt_Generic": 6, - "*__Pyx_GetItemInt_List_Fast": 1, - "PyList_GET_SIZE": 5, - "PyList_GET_ITEM": 3, - "PySequence_GetItem": 3, - "__Pyx_GetItemInt_Tuple": 1, - "__Pyx_GetItemInt_Tuple_Fast": 1, - "*__Pyx_GetItemInt_Tuple_Fast": 1, - "PyTuple_GET_SIZE": 14, - "PyTuple_GET_ITEM": 15, - "__Pyx_GetItemInt": 1, - "__Pyx_GetItemInt_Fast": 2, - "PyList_CheckExact": 1, - "PyTuple_CheckExact": 1, - "PySequenceMethods": 1, - "*m": 1, - "tp_as_sequence": 1, - "sq_item": 2, - "sq_length": 2, - "PySequence_Check": 1, - "__Pyx_RaiseTooManyValuesError": 1, - "expected": 2, - "__Pyx_RaiseNeedMoreValuesError": 1, - "__Pyx_RaiseNoneNotIterableError": 1, - "__Pyx_IterFinish": 1, - "__Pyx_IternextUnpackEndCheck": 1, - "*retval": 1, - "shape": 1, - "strides": 1, - "suboffsets": 1, - "__Pyx_Buf_DimInfo": 2, - "pybuffer": 1, - "__Pyx_Buffer": 2, - "*rcbuffer": 1, - "diminfo": 1, - "__Pyx_LocalBuf_ND": 1, - "__Pyx_GetBuffer": 2, - "*view": 2, - "__Pyx_ReleaseBuffer": 2, - "PyObject_GetBuffer": 1, - "PyBuffer_Release": 1, - "__Pyx_zeros": 1, - "__Pyx_minusones": 1, - "*__Pyx_Import": 1, - "*from_list": 1, - "__Pyx_RaiseImportError": 1, - "__Pyx_Print": 1, - "__pyx_print": 1, - "__pyx_print_kwargs": 1, - "__Pyx_PrintOne": 1, - "__Pyx_CREAL": 4, - ".real": 3, - "__Pyx_CIMAG": 4, - ".imag": 3, - "__real__": 1, - "__imag__": 1, - "__Pyx_SET_CREAL": 2, - "__Pyx_SET_CIMAG": 2, - "__pyx_t_float_complex_from_parts": 1, - "__Pyx_c_eqf": 2, - "__Pyx_c_sumf": 2, - "__Pyx_c_difff": 2, - "__Pyx_c_prodf": 2, - "__Pyx_c_quotf": 2, - "__Pyx_c_negf": 2, - "__Pyx_c_is_zerof": 3, - "__Pyx_c_conjf": 3, - "conj": 3, - "__Pyx_c_absf": 3, - "abs": 2, - "__Pyx_c_powf": 3, - "pow": 2, - "conjf": 1, - "cabsf": 1, - "cpowf": 1, - "__pyx_t_double_complex_from_parts": 1, - "__Pyx_c_eq": 2, - "__Pyx_c_sum": 2, - "__Pyx_c_diff": 2, - "__Pyx_c_prod": 2, - "__Pyx_c_quot": 2, - "__Pyx_c_neg": 2, - "__Pyx_c_is_zero": 3, - "__Pyx_c_conj": 3, - "__Pyx_c_abs": 3, - "__Pyx_c_pow": 3, - "cabs": 1, - "cpow": 1, - "__Pyx_PyInt_AsUnsignedChar": 1, - "__Pyx_PyInt_AsUnsignedShort": 1, - "__Pyx_PyInt_AsUnsignedInt": 1, - "__Pyx_PyInt_AsChar": 1, - "__Pyx_PyInt_AsShort": 1, - "signed": 5, - "__Pyx_PyInt_AsSignedChar": 1, - "__Pyx_PyInt_AsSignedShort": 1, - "__Pyx_PyInt_AsSignedInt": 1, - "__Pyx_PyInt_AsLongDouble": 1, - "__Pyx_PyInt_AsUnsignedLong": 1, - "__Pyx_PyInt_AsUnsignedLongLong": 1, - "__Pyx_PyInt_AsLong": 1, - "__Pyx_PyInt_AsLongLong": 1, - "__Pyx_PyInt_AsSignedLong": 1, - "__Pyx_PyInt_AsSignedLongLong": 1, - "__Pyx_WriteUnraisable": 4, - "clineno": 1, - "lineno": 1, - "*filename": 2, - "__Pyx_check_binary_version": 1, - "__Pyx_SetVtable": 1, - "*vtable": 1, - "__Pyx_PyIdentifier_FromString": 3, - "*__Pyx_ImportModule": 1, - "*__Pyx_ImportType": 1, - "*module_name": 1, - "*class_name": 1, - "__Pyx_GetVtable": 1, - "code_line": 4, - "PyCodeObject*": 2, - "code_object": 2, - "__Pyx_CodeObjectCacheEntry": 1, - "__Pyx_CodeObjectCache": 2, - "max_count": 1, - "__Pyx_CodeObjectCacheEntry*": 2, - "entries": 2, - "__pyx_code_cache": 1, - "__pyx_bisect_code_objects": 1, - "PyCodeObject": 1, - "*__pyx_find_code_object": 1, - "__pyx_insert_code_object": 1, - "__Pyx_AddTraceback": 7, - "*funcname": 1, - "c_line": 1, - "py_line": 1, - "__Pyx_InitStrings": 1, - "*__pyx_ptype_7cpython_4type_type": 1, - "*__pyx_ptype_5numpy_dtype": 1, - "*__pyx_ptype_5numpy_flatiter": 1, - "*__pyx_ptype_5numpy_broadcast": 1, - "*__pyx_ptype_5numpy_ndarray": 1, - "*__pyx_ptype_5numpy_ufunc": 1, - "*__pyx_f_5numpy__util_dtypestring": 1, - "PyArray_Descr": 1, - "*__pyx_ptype_7sklearn_5utils_13weight_vector_WeightVector": 1, - "*__pyx_ptype_7sklearn_5utils_11seq_dataset_SequentialDataset": 1, - "*__pyx_ptype_7sklearn_5utils_11seq_dataset_ArrayDataset": 1, - "*__pyx_ptype_7sklearn_5utils_11seq_dataset_CSRDataset": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_LossFunction": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Regression": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Classification": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_ModifiedHuber": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Hinge": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Log": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredLoss": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Huber": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredEpsilonInsensitive": 1, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_max": 1, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_min": 1, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_sqnorm": 1, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_l1penalty": 1, - "__Pyx_TypeInfo_nn___pyx_t_7sklearn_12linear_model_8sgd_fast_DOUBLE": 1, - "__Pyx_MODULE_NAME": 1, - "__pyx_module_is_main_sklearn__linear_model__sgd_fast": 1, - "*__pyx_builtin_NotImplementedError": 1, - "*__pyx_builtin_range": 1, - "*__pyx_builtin_ValueError": 1, - "*__pyx_builtin_RuntimeError": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 2, - "*__pyx_v_self": 52, - "__pyx_v_p": 46, - "__pyx_v_y": 46, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 2, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 2, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_2dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_14Classification_loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_14Classification_2dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_2dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_4__reduce__": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge___init__": 1, - "__pyx_v_threshold": 2, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_2loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_4dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_6__reduce__": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge___init__": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_2loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_4dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_6__reduce__": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_2dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_4__reduce__": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_2dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_4__reduce__": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber___init__": 1, - "__pyx_v_c": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_2loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_4dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_6__reduce__": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive___init__": 1, - "__pyx_v_epsilon": 2, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_2loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_4dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_6__reduce__": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive___init__": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_2loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_4dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_6__reduce__": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_plain_sgd": 1, - "*__pyx_self": 1, - "*__pyx_v_weights": 1, - "__pyx_v_intercept": 1, - "*__pyx_v_loss": 1, - "__pyx_v_penalty_type": 1, - "__pyx_v_alpha": 1, - "__pyx_v_C": 1, - "__pyx_v_rho": 1, - "*__pyx_v_dataset": 1, - "__pyx_v_n_iter": 1, - "__pyx_v_fit_intercept": 1, - "__pyx_v_verbose": 1, - "__pyx_v_shuffle": 1, - "*__pyx_v_seed": 1, - "__pyx_v_weight_pos": 1, - "__pyx_v_weight_neg": 1, - "__pyx_v_learning_rate": 1, - "__pyx_v_eta0": 1, - "__pyx_v_power_t": 1, - "__pyx_v_t": 1, - "__pyx_v_intercept_decay": 1, - "__pyx_pf_5numpy_7ndarray___getbuffer__": 1, - "*__pyx_v_info": 2, - "__pyx_v_flags": 1, - "__pyx_pf_5numpy_7ndarray_2__releasebuffer__": 1, - "__pyx_k_1": 1, - "__pyx_k_2": 1, - "__pyx_k_3": 1, - "__pyx_k_4": 1, - "__pyx_k_6": 1, - "__pyx_k_8": 1, - "__pyx_k_10": 1, - "__pyx_k_12": 1, - "__pyx_k_13": 1, - "__pyx_k_16": 1, - "__pyx_k_20": 1, - "__pyx_k_21": 1, - "__pyx_k__B": 1, - "__pyx_k__C": 1, - "__pyx_k__H": 1, - "__pyx_k__I": 1, - "__pyx_k__L": 1, - "__pyx_k__O": 1, - "__pyx_k__Q": 1, - "__pyx_k__b": 1, - "__pyx_k__c": 1, - "__pyx_k__d": 1, - "__pyx_k__f": 1, - "__pyx_k__g": 1, - "__pyx_k__h": 1, - "__pyx_k__i": 1, - "__pyx_k__l": 1, - "__pyx_k__p": 1, - "__pyx_k__q": 1, - "__pyx_k__t": 1, - "__pyx_k__u": 1, - "__pyx_k__w": 1, - "__pyx_k__y": 1, - "__pyx_k__Zd": 1, - "__pyx_k__Zf": 1, - "__pyx_k__Zg": 1, - "__pyx_k__np": 1, - "__pyx_k__any": 1, - "__pyx_k__eta": 1, - "__pyx_k__rho": 1, - "__pyx_k__sys": 1, - "__pyx_k__eta0": 1, - "__pyx_k__loss": 1, - "__pyx_k__seed": 1, - "__pyx_k__time": 1, - "__pyx_k__xnnz": 1, - "__pyx_k__alpha": 1, - "__pyx_k__count": 1, - "__pyx_k__dloss": 1, - "__pyx_k__dtype": 1, - "__pyx_k__epoch": 1, - "__pyx_k__isinf": 1, - "__pyx_k__isnan": 1, - "__pyx_k__numpy": 1, - "__pyx_k__order": 1, - "__pyx_k__range": 1, - "__pyx_k__shape": 1, - "__pyx_k__zeros": 1, - "__pyx_k__n_iter": 1, - "__pyx_k__update": 1, - "__pyx_k__dataset": 1, - "__pyx_k__epsilon": 1, - "__pyx_k__float64": 1, - "__pyx_k__nonzero": 1, - "__pyx_k__power_t": 1, - "__pyx_k__shuffle": 1, - "__pyx_k__sumloss": 1, - "__pyx_k__t_start": 1, - "__pyx_k__verbose": 1, - "__pyx_k__weights": 1, - "__pyx_k____main__": 1, - "__pyx_k____test__": 1, - "__pyx_k__is_hinge": 1, - "__pyx_k__intercept": 1, - "__pyx_k__n_samples": 1, - "__pyx_k__plain_sgd": 1, - "__pyx_k__threshold": 1, - "__pyx_k__x_ind_ptr": 1, - "__pyx_k__ValueError": 1, - "__pyx_k__n_features": 1, - "__pyx_k__q_data_ptr": 1, - "__pyx_k__weight_neg": 1, - "__pyx_k__weight_pos": 1, - "__pyx_k__x_data_ptr": 1, - "__pyx_k__RuntimeError": 1, - "__pyx_k__class_weight": 1, - "__pyx_k__penalty_type": 1, - "__pyx_k__fit_intercept": 1, - "__pyx_k__learning_rate": 1, - "__pyx_k__sample_weight": 1, - "__pyx_k__intercept_decay": 1, - "__pyx_k__NotImplementedError": 1, - "*__pyx_kp_s_1": 1, - "*__pyx_kp_u_10": 1, - "*__pyx_kp_u_12": 1, - "*__pyx_kp_u_13": 1, - "*__pyx_kp_u_16": 1, - "*__pyx_kp_s_2": 1, - "*__pyx_kp_s_20": 1, - "*__pyx_n_s_21": 1, - "*__pyx_kp_s_3": 1, - "*__pyx_kp_s_4": 1, - "*__pyx_kp_u_6": 1, - "*__pyx_kp_u_8": 1, - "*__pyx_n_s__C": 1, - "*__pyx_n_s__NotImplementedError": 1, - "*__pyx_n_s__RuntimeError": 1, - "*__pyx_n_s__ValueError": 1, - "*__pyx_n_s____main__": 1, - "*__pyx_n_s____test__": 1, - "*__pyx_n_s__alpha": 1, - "*__pyx_n_s__any": 1, - "*__pyx_n_s__c": 1, - "*__pyx_n_s__class_weight": 1, - "*__pyx_n_s__count": 1, - "*__pyx_n_s__dataset": 1, - "*__pyx_n_s__dloss": 1, - "*__pyx_n_s__dtype": 1, - "*__pyx_n_s__epoch": 1, - "*__pyx_n_s__epsilon": 1, - "*__pyx_n_s__eta": 1, - "*__pyx_n_s__eta0": 1, - "*__pyx_n_s__fit_intercept": 1, - "*__pyx_n_s__float64": 1, - "*__pyx_n_s__i": 1, - "*__pyx_n_s__intercept": 1, - "*__pyx_n_s__intercept_decay": 1, - "*__pyx_n_s__is_hinge": 1, - "*__pyx_n_s__isinf": 1, - "*__pyx_n_s__isnan": 1, - "*__pyx_n_s__learning_rate": 1, - "*__pyx_n_s__loss": 1, - "*__pyx_n_s__n_features": 1, - "*__pyx_n_s__n_iter": 1, - "*__pyx_n_s__n_samples": 1, - "*__pyx_n_s__nonzero": 1, - "*__pyx_n_s__np": 1, - "*__pyx_n_s__numpy": 1, - "*__pyx_n_s__order": 1, - "*__pyx_n_s__p": 1, - "*__pyx_n_s__penalty_type": 1, - "*__pyx_n_s__plain_sgd": 1, - "*__pyx_n_s__power_t": 1, - "*__pyx_n_s__q": 1, - "*__pyx_n_s__q_data_ptr": 1, - "*__pyx_n_s__range": 1, - "*__pyx_n_s__rho": 1, - "*__pyx_n_s__sample_weight": 1, - "*__pyx_n_s__seed": 1, - "*__pyx_n_s__shape": 1, - "*__pyx_n_s__shuffle": 1, - "*__pyx_n_s__sumloss": 1, - "*__pyx_n_s__sys": 1, - "*__pyx_n_s__t": 1, - "*__pyx_n_s__t_start": 1, - "*__pyx_n_s__threshold": 1, - "*__pyx_n_s__time": 1, - "*__pyx_n_s__u": 1, - "*__pyx_n_s__update": 1, - "*__pyx_n_s__verbose": 1, - "*__pyx_n_s__w": 1, - "*__pyx_n_s__weight_neg": 1, - "*__pyx_n_s__weight_pos": 1, - "*__pyx_n_s__weights": 1, - "*__pyx_n_s__x_data_ptr": 1, - "*__pyx_n_s__x_ind_ptr": 1, - "*__pyx_n_s__xnnz": 1, - "*__pyx_n_s__y": 1, - "*__pyx_n_s__zeros": 1, - "*__pyx_int_15": 1, - "*__pyx_k_tuple_5": 1, - "*__pyx_k_tuple_7": 1, - "*__pyx_k_tuple_9": 1, - "*__pyx_k_tuple_11": 1, - "*__pyx_k_tuple_14": 1, - "*__pyx_k_tuple_15": 1, - "*__pyx_k_tuple_17": 1, - "*__pyx_k_tuple_18": 1, - "*__pyx_k_codeobj_19": 1, - "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_1loss": 3, - "*__pyx_args": 9, - "*__pyx_kwds": 9, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, - "__pyx_skip_dispatch": 6, - "__pyx_r": 39, - "*__pyx_t_1": 6, - "*__pyx_t_2": 3, - "*__pyx_t_3": 3, - "*__pyx_t_4": 3, - "__pyx_t_5": 12, - "__pyx_v_self": 15, - "tp_dictoffset": 3, - "__pyx_t_1": 69, - "PyObject_GetAttr": 3, - "__pyx_n_s__loss": 2, - "__pyx_filename": 51, - "__pyx_f": 42, - "__pyx_L1_error": 33, - "PyCFunction_Check": 3, - "PyCFunction_GET_FUNCTION": 3, - "PyCFunction": 3, - "__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_1loss": 1, - "__pyx_t_2": 21, - "PyFloat_FromDouble": 9, - "__pyx_t_3": 39, - "__pyx_t_4": 27, - "PyTuple_New": 3, - "PyTuple_SET_ITEM": 6, - "PyObject_Call": 6, - "PyErr_Occurred": 9, - "__pyx_L0": 18, - "__pyx_builtin_NotImplementedError": 3, - "__pyx_empty_tuple": 3, - "__pyx_doc_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, - "*__pyx_r": 6, - "**__pyx_pyargnames": 3, - "__pyx_n_s__p": 6, - "__pyx_n_s__y": 6, - "values": 30, - "__pyx_kwds": 15, - "kw_args": 15, - "pos_args": 12, - "__pyx_args": 21, - "__pyx_L5_argtuple_error": 12, - "PyDict_Size": 3, - "PyDict_GetItem": 6, - "__pyx_L3_error": 18, - "__pyx_pyargnames": 3, - "__pyx_L4_argument_unpacking_done": 6, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, - "__pyx_vtab": 2, - "loss": 1, - "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_3dloss": 3, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_12LossFunction_dloss": 1, - "__pyx_n_s__dloss": 1, - "__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_3dloss": 1, - "__pyx_doc_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 1, - "dloss": 1, - "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_10Regression_1loss": 3, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 1, - "__pyx_pw_7sklearn_12linear_model_8sgd_fast_10Regression_1loss": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 1, - "__pyx_base.__pyx_vtab": 1, - "__pyx_base.loss": 1, - "syscalldef": 1, - "syscalldefs": 1, - "SYSCALL_OR_NUM": 3, - "SYS_restart_syscall": 1, - "MAKE_UINT16": 3, - "SYS_exit": 1, - "SYS_fork": 1, - "__wglew_h__": 2, - "__WGLEW_H__": 1, - "__wglext_h_": 2, - "wglext.h": 1, - "wglew.h": 1, - "WINAPI": 119, - "": 1, - "GLEW_STATIC": 1, - "WGL_3DFX_multisample": 2, - "WGL_SAMPLE_BUFFERS_3DFX": 1, - "WGL_SAMPLES_3DFX": 1, - "WGLEW_3DFX_multisample": 1, - "WGLEW_GET_VAR": 49, - "__WGLEW_3DFX_multisample": 2, - "WGL_3DL_stereo_control": 2, - "WGL_STEREO_EMITTER_ENABLE_3DL": 1, - "WGL_STEREO_EMITTER_DISABLE_3DL": 1, - "WGL_STEREO_POLARITY_NORMAL_3DL": 1, - "WGL_STEREO_POLARITY_INVERT_3DL": 1, - "BOOL": 84, - "PFNWGLSETSTEREOEMITTERSTATE3DLPROC": 2, - "HDC": 65, - "hDC": 33, - "UINT": 30, - "uState": 1, - "wglSetStereoEmitterState3DL": 1, - "WGLEW_GET_FUN": 120, - "__wglewSetStereoEmitterState3DL": 2, - "WGLEW_3DL_stereo_control": 1, - "__WGLEW_3DL_stereo_control": 2, - "WGL_AMD_gpu_association": 2, - "WGL_GPU_VENDOR_AMD": 1, - "F00": 1, - "WGL_GPU_RENDERER_STRING_AMD": 1, - "F01": 1, - "WGL_GPU_OPENGL_VERSION_STRING_AMD": 1, - "F02": 1, - "WGL_GPU_FASTEST_TARGET_GPUS_AMD": 1, - "A2": 2, - "WGL_GPU_RAM_AMD": 1, - "A3": 2, - "WGL_GPU_CLOCK_AMD": 1, - "A4": 2, - "WGL_GPU_NUM_PIPES_AMD": 1, - "A5": 3, - "WGL_GPU_NUM_SIMD_AMD": 1, - "A6": 2, - "WGL_GPU_NUM_RB_AMD": 1, - "A7": 2, - "WGL_GPU_NUM_SPI_AMD": 1, - "A8": 2, - "VOID": 6, - "PFNWGLBLITCONTEXTFRAMEBUFFERAMDPROC": 2, - "HGLRC": 14, - "dstCtx": 1, - "GLint": 18, - "srcX0": 1, - "srcY0": 1, - "srcX1": 1, - "srcY1": 1, - "dstX0": 1, - "dstY0": 1, - "dstX1": 1, - "dstY1": 1, - "GLbitfield": 1, - "mask": 1, - "GLenum": 8, - "filter": 1, - "PFNWGLCREATEASSOCIATEDCONTEXTAMDPROC": 2, - "PFNWGLCREATEASSOCIATEDCONTEXTATTRIBSAMDPROC": 2, - "hShareContext": 2, - "attribList": 2, - "PFNWGLDELETEASSOCIATEDCONTEXTAMDPROC": 2, - "hglrc": 5, - "PFNWGLGETCONTEXTGPUIDAMDPROC": 2, - "PFNWGLGETCURRENTASSOCIATEDCONTEXTAMDPROC": 2, - "PFNWGLGETGPUIDSAMDPROC": 2, - "maxCount": 1, - "UINT*": 6, - "ids": 1, - "INT": 3, - "PFNWGLGETGPUINFOAMDPROC": 2, - "property": 1, - "dataType": 1, - "PFNWGLMAKEASSOCIATEDCONTEXTCURRENTAMDPROC": 2, - "wglBlitContextFramebufferAMD": 1, - "__wglewBlitContextFramebufferAMD": 2, - "wglCreateAssociatedContextAMD": 1, - "__wglewCreateAssociatedContextAMD": 2, - "wglCreateAssociatedContextAttribsAMD": 1, - "__wglewCreateAssociatedContextAttribsAMD": 2, - "wglDeleteAssociatedContextAMD": 1, - "__wglewDeleteAssociatedContextAMD": 2, - "wglGetContextGPUIDAMD": 1, - "__wglewGetContextGPUIDAMD": 2, - "wglGetCurrentAssociatedContextAMD": 1, - "__wglewGetCurrentAssociatedContextAMD": 2, - "wglGetGPUIDsAMD": 1, - "__wglewGetGPUIDsAMD": 2, - "wglGetGPUInfoAMD": 1, - "__wglewGetGPUInfoAMD": 2, - "wglMakeAssociatedContextCurrentAMD": 1, - "__wglewMakeAssociatedContextCurrentAMD": 2, - "WGLEW_AMD_gpu_association": 1, - "__WGLEW_AMD_gpu_association": 2, - "WGL_ARB_buffer_region": 2, - "WGL_FRONT_COLOR_BUFFER_BIT_ARB": 1, - "WGL_BACK_COLOR_BUFFER_BIT_ARB": 1, - "WGL_DEPTH_BUFFER_BIT_ARB": 1, - "WGL_STENCIL_BUFFER_BIT_ARB": 1, - "HANDLE": 14, - "PFNWGLCREATEBUFFERREGIONARBPROC": 2, - "iLayerPlane": 5, - "uType": 1, - "PFNWGLDELETEBUFFERREGIONARBPROC": 2, - "hRegion": 3, - "PFNWGLRESTOREBUFFERREGIONARBPROC": 2, - "width": 3, - "height": 3, - "xSrc": 1, - "ySrc": 1, - "PFNWGLSAVEBUFFERREGIONARBPROC": 2, - "wglCreateBufferRegionARB": 1, - "__wglewCreateBufferRegionARB": 2, - "wglDeleteBufferRegionARB": 1, - "__wglewDeleteBufferRegionARB": 2, - "wglRestoreBufferRegionARB": 1, - "__wglewRestoreBufferRegionARB": 2, - "wglSaveBufferRegionARB": 1, - "__wglewSaveBufferRegionARB": 2, - "WGLEW_ARB_buffer_region": 1, - "__WGLEW_ARB_buffer_region": 2, - "WGL_ARB_create_context": 2, - "WGL_CONTEXT_DEBUG_BIT_ARB": 1, - "WGL_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB": 1, - "WGL_CONTEXT_MAJOR_VERSION_ARB": 1, - "WGL_CONTEXT_MINOR_VERSION_ARB": 1, - "WGL_CONTEXT_LAYER_PLANE_ARB": 1, - "WGL_CONTEXT_FLAGS_ARB": 1, - "ERROR_INVALID_VERSION_ARB": 1, - "ERROR_INVALID_PROFILE_ARB": 1, - "PFNWGLCREATECONTEXTATTRIBSARBPROC": 2, - "wglCreateContextAttribsARB": 1, - "__wglewCreateContextAttribsARB": 2, - "WGLEW_ARB_create_context": 1, - "__WGLEW_ARB_create_context": 2, - "WGL_ARB_create_context_profile": 2, - "WGL_CONTEXT_CORE_PROFILE_BIT_ARB": 1, - "WGL_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB": 1, - "WGL_CONTEXT_PROFILE_MASK_ARB": 1, - "WGLEW_ARB_create_context_profile": 1, - "__WGLEW_ARB_create_context_profile": 2, - "WGL_ARB_create_context_robustness": 2, - "WGL_CONTEXT_ROBUST_ACCESS_BIT_ARB": 1, - "WGL_LOSE_CONTEXT_ON_RESET_ARB": 1, - "WGL_CONTEXT_RESET_NOTIFICATION_STRATEGY_ARB": 1, - "WGL_NO_RESET_NOTIFICATION_ARB": 1, - "WGLEW_ARB_create_context_robustness": 1, - "__WGLEW_ARB_create_context_robustness": 2, - "WGL_ARB_extensions_string": 2, - "PFNWGLGETEXTENSIONSSTRINGARBPROC": 2, - "hdc": 16, - "wglGetExtensionsStringARB": 1, - "__wglewGetExtensionsStringARB": 2, - "WGLEW_ARB_extensions_string": 1, - "__WGLEW_ARB_extensions_string": 2, - "WGL_ARB_framebuffer_sRGB": 2, - "WGL_FRAMEBUFFER_SRGB_CAPABLE_ARB": 1, - "A9": 2, - "WGLEW_ARB_framebuffer_sRGB": 1, - "__WGLEW_ARB_framebuffer_sRGB": 2, - "WGL_ARB_make_current_read": 2, - "ERROR_INVALID_PIXEL_TYPE_ARB": 1, - "ERROR_INCOMPATIBLE_DEVICE_CONTEXTS_ARB": 1, - "PFNWGLGETCURRENTREADDCARBPROC": 2, - "PFNWGLMAKECONTEXTCURRENTARBPROC": 2, - "hDrawDC": 2, - "hReadDC": 2, - "wglGetCurrentReadDCARB": 1, - "__wglewGetCurrentReadDCARB": 2, - "wglMakeContextCurrentARB": 1, - "__wglewMakeContextCurrentARB": 2, - "WGLEW_ARB_make_current_read": 1, - "__WGLEW_ARB_make_current_read": 2, - "WGL_ARB_multisample": 2, - "WGL_SAMPLE_BUFFERS_ARB": 1, - "WGL_SAMPLES_ARB": 1, - "WGLEW_ARB_multisample": 1, - "__WGLEW_ARB_multisample": 2, - "WGL_ARB_pbuffer": 2, - "WGL_DRAW_TO_PBUFFER_ARB": 1, - "D": 8, - "WGL_MAX_PBUFFER_PIXELS_ARB": 1, - "WGL_MAX_PBUFFER_WIDTH_ARB": 1, - "WGL_MAX_PBUFFER_HEIGHT_ARB": 1, - "WGL_PBUFFER_LARGEST_ARB": 1, - "WGL_PBUFFER_WIDTH_ARB": 1, - "WGL_PBUFFER_HEIGHT_ARB": 1, - "WGL_PBUFFER_LOST_ARB": 1, - "DECLARE_HANDLE": 6, - "HPBUFFERARB": 12, - "PFNWGLCREATEPBUFFERARBPROC": 2, - "iPixelFormat": 6, - "iWidth": 2, - "iHeight": 2, - "piAttribList": 4, - "PFNWGLDESTROYPBUFFERARBPROC": 2, - "hPbuffer": 14, - "PFNWGLGETPBUFFERDCARBPROC": 2, - "PFNWGLQUERYPBUFFERARBPROC": 2, - "iAttribute": 8, - "piValue": 8, - "PFNWGLRELEASEPBUFFERDCARBPROC": 2, - "wglCreatePbufferARB": 1, - "__wglewCreatePbufferARB": 2, - "wglDestroyPbufferARB": 1, - "__wglewDestroyPbufferARB": 2, - "wglGetPbufferDCARB": 1, - "__wglewGetPbufferDCARB": 2, - "wglQueryPbufferARB": 1, - "__wglewQueryPbufferARB": 2, - "wglReleasePbufferDCARB": 1, - "__wglewReleasePbufferDCARB": 2, - "WGLEW_ARB_pbuffer": 1, - "__WGLEW_ARB_pbuffer": 2, - "WGL_ARB_pixel_format": 2, - "WGL_NUMBER_PIXEL_FORMATS_ARB": 1, - "WGL_DRAW_TO_WINDOW_ARB": 1, - "WGL_DRAW_TO_BITMAP_ARB": 1, - "WGL_ACCELERATION_ARB": 1, - "WGL_NEED_PALETTE_ARB": 1, - "WGL_NEED_SYSTEM_PALETTE_ARB": 1, - "WGL_SWAP_LAYER_BUFFERS_ARB": 1, - "WGL_SWAP_METHOD_ARB": 1, - "WGL_NUMBER_OVERLAYS_ARB": 1, - "WGL_NUMBER_UNDERLAYS_ARB": 1, - "WGL_TRANSPARENT_ARB": 1, - "WGL_SHARE_DEPTH_ARB": 1, - "WGL_SHARE_STENCIL_ARB": 1, - "WGL_SHARE_ACCUM_ARB": 1, - "WGL_SUPPORT_GDI_ARB": 1, - "WGL_SUPPORT_OPENGL_ARB": 1, - "WGL_DOUBLE_BUFFER_ARB": 1, - "WGL_STEREO_ARB": 1, - "WGL_PIXEL_TYPE_ARB": 1, - "WGL_COLOR_BITS_ARB": 1, - "WGL_RED_BITS_ARB": 1, - "WGL_RED_SHIFT_ARB": 1, - "WGL_GREEN_BITS_ARB": 1, - "WGL_GREEN_SHIFT_ARB": 1, - "WGL_BLUE_BITS_ARB": 1, - "WGL_BLUE_SHIFT_ARB": 1, - "WGL_ALPHA_BITS_ARB": 1, - "B": 9, - "WGL_ALPHA_SHIFT_ARB": 1, - "WGL_ACCUM_BITS_ARB": 1, - "WGL_ACCUM_RED_BITS_ARB": 1, - "WGL_ACCUM_GREEN_BITS_ARB": 1, - "WGL_ACCUM_BLUE_BITS_ARB": 1, - "WGL_ACCUM_ALPHA_BITS_ARB": 1, - "WGL_DEPTH_BITS_ARB": 1, - "WGL_STENCIL_BITS_ARB": 1, - "WGL_AUX_BUFFERS_ARB": 1, - "WGL_NO_ACCELERATION_ARB": 1, - "WGL_GENERIC_ACCELERATION_ARB": 1, - "WGL_FULL_ACCELERATION_ARB": 1, - "WGL_SWAP_EXCHANGE_ARB": 1, - "WGL_SWAP_COPY_ARB": 1, - "WGL_SWAP_UNDEFINED_ARB": 1, - "WGL_TYPE_RGBA_ARB": 1, - "WGL_TYPE_COLORINDEX_ARB": 1, - "WGL_TRANSPARENT_RED_VALUE_ARB": 1, - "WGL_TRANSPARENT_GREEN_VALUE_ARB": 1, - "WGL_TRANSPARENT_BLUE_VALUE_ARB": 1, - "WGL_TRANSPARENT_ALPHA_VALUE_ARB": 1, - "WGL_TRANSPARENT_INDEX_VALUE_ARB": 1, - "PFNWGLCHOOSEPIXELFORMATARBPROC": 2, - "piAttribIList": 2, - "FLOAT": 4, - "*pfAttribFList": 2, - "nMaxFormats": 2, - "*piFormats": 2, - "*nNumFormats": 2, - "PFNWGLGETPIXELFORMATATTRIBFVARBPROC": 2, - "nAttributes": 4, - "piAttributes": 4, - "*pfValues": 2, - "PFNWGLGETPIXELFORMATATTRIBIVARBPROC": 2, - "*piValues": 2, - "wglChoosePixelFormatARB": 1, - "__wglewChoosePixelFormatARB": 2, - "wglGetPixelFormatAttribfvARB": 1, - "__wglewGetPixelFormatAttribfvARB": 2, - "wglGetPixelFormatAttribivARB": 1, - "__wglewGetPixelFormatAttribivARB": 2, - "WGLEW_ARB_pixel_format": 1, - "__WGLEW_ARB_pixel_format": 2, - "WGL_ARB_pixel_format_float": 2, - "WGL_TYPE_RGBA_FLOAT_ARB": 1, - "A0": 3, - "WGLEW_ARB_pixel_format_float": 1, - "__WGLEW_ARB_pixel_format_float": 2, - "WGL_ARB_render_texture": 2, - "WGL_BIND_TO_TEXTURE_RGB_ARB": 1, - "WGL_BIND_TO_TEXTURE_RGBA_ARB": 1, - "WGL_TEXTURE_FORMAT_ARB": 1, - "WGL_TEXTURE_TARGET_ARB": 1, - "WGL_MIPMAP_TEXTURE_ARB": 1, - "WGL_TEXTURE_RGB_ARB": 1, - "WGL_TEXTURE_RGBA_ARB": 1, - "WGL_NO_TEXTURE_ARB": 2, - "WGL_TEXTURE_CUBE_MAP_ARB": 1, - "WGL_TEXTURE_1D_ARB": 1, - "WGL_TEXTURE_2D_ARB": 1, - "WGL_MIPMAP_LEVEL_ARB": 1, - "WGL_CUBE_MAP_FACE_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB": 1, - "WGL_FRONT_LEFT_ARB": 1, - "WGL_FRONT_RIGHT_ARB": 1, - "WGL_BACK_LEFT_ARB": 1, - "WGL_BACK_RIGHT_ARB": 1, - "WGL_AUX0_ARB": 1, - "WGL_AUX1_ARB": 1, - "WGL_AUX2_ARB": 1, - "WGL_AUX3_ARB": 1, - "WGL_AUX4_ARB": 1, - "WGL_AUX5_ARB": 1, - "WGL_AUX6_ARB": 1, - "WGL_AUX7_ARB": 1, - "WGL_AUX8_ARB": 1, - "WGL_AUX9_ARB": 1, - "PFNWGLBINDTEXIMAGEARBPROC": 2, - "iBuffer": 2, - "PFNWGLRELEASETEXIMAGEARBPROC": 2, - "PFNWGLSETPBUFFERATTRIBARBPROC": 2, - "wglBindTexImageARB": 1, - "__wglewBindTexImageARB": 2, - "wglReleaseTexImageARB": 1, - "__wglewReleaseTexImageARB": 2, - "wglSetPbufferAttribARB": 1, - "__wglewSetPbufferAttribARB": 2, - "WGLEW_ARB_render_texture": 1, - "__WGLEW_ARB_render_texture": 2, - "WGL_ATI_pixel_format_float": 2, - "WGL_TYPE_RGBA_FLOAT_ATI": 1, - "GL_RGBA_FLOAT_MODE_ATI": 1, - "GL_COLOR_CLEAR_UNCLAMPED_VALUE_ATI": 1, - "WGLEW_ATI_pixel_format_float": 1, - "__WGLEW_ATI_pixel_format_float": 2, - "WGL_ATI_render_texture_rectangle": 2, - "WGL_TEXTURE_RECTANGLE_ATI": 1, - "WGLEW_ATI_render_texture_rectangle": 1, - "__WGLEW_ATI_render_texture_rectangle": 2, - "WGL_EXT_create_context_es2_profile": 2, - "WGL_CONTEXT_ES2_PROFILE_BIT_EXT": 1, - "WGLEW_EXT_create_context_es2_profile": 1, - "__WGLEW_EXT_create_context_es2_profile": 2, - "WGL_EXT_depth_float": 2, - "WGL_DEPTH_FLOAT_EXT": 1, - "WGLEW_EXT_depth_float": 1, - "__WGLEW_EXT_depth_float": 2, - "WGL_EXT_display_color_table": 2, - "GLboolean": 53, - "PFNWGLBINDDISPLAYCOLORTABLEEXTPROC": 2, - "GLushort": 3, - "PFNWGLCREATEDISPLAYCOLORTABLEEXTPROC": 2, - "PFNWGLDESTROYDISPLAYCOLORTABLEEXTPROC": 2, - "PFNWGLLOADDISPLAYCOLORTABLEEXTPROC": 2, - "GLushort*": 1, - "table": 1, - "GLuint": 9, - "wglBindDisplayColorTableEXT": 1, - "__wglewBindDisplayColorTableEXT": 2, - "wglCreateDisplayColorTableEXT": 1, - "__wglewCreateDisplayColorTableEXT": 2, - "wglDestroyDisplayColorTableEXT": 1, - "__wglewDestroyDisplayColorTableEXT": 2, - "wglLoadDisplayColorTableEXT": 1, - "__wglewLoadDisplayColorTableEXT": 2, - "WGLEW_EXT_display_color_table": 1, - "__WGLEW_EXT_display_color_table": 2, - "WGL_EXT_extensions_string": 2, - "PFNWGLGETEXTENSIONSSTRINGEXTPROC": 2, - "wglGetExtensionsStringEXT": 1, - "__wglewGetExtensionsStringEXT": 2, - "WGLEW_EXT_extensions_string": 1, - "__WGLEW_EXT_extensions_string": 2, - "WGL_EXT_framebuffer_sRGB": 2, - "WGL_FRAMEBUFFER_SRGB_CAPABLE_EXT": 1, - "WGLEW_EXT_framebuffer_sRGB": 1, - "__WGLEW_EXT_framebuffer_sRGB": 2, - "WGL_EXT_make_current_read": 2, - "ERROR_INVALID_PIXEL_TYPE_EXT": 1, - "PFNWGLGETCURRENTREADDCEXTPROC": 2, - "PFNWGLMAKECONTEXTCURRENTEXTPROC": 2, - "wglGetCurrentReadDCEXT": 1, - "__wglewGetCurrentReadDCEXT": 2, - "wglMakeContextCurrentEXT": 1, - "__wglewMakeContextCurrentEXT": 2, - "WGLEW_EXT_make_current_read": 1, - "__WGLEW_EXT_make_current_read": 2, - "WGL_EXT_multisample": 2, - "WGL_SAMPLE_BUFFERS_EXT": 1, - "WGL_SAMPLES_EXT": 1, - "WGLEW_EXT_multisample": 1, - "__WGLEW_EXT_multisample": 2, - "WGL_EXT_pbuffer": 2, - "WGL_DRAW_TO_PBUFFER_EXT": 1, - "WGL_MAX_PBUFFER_PIXELS_EXT": 1, - "WGL_MAX_PBUFFER_WIDTH_EXT": 1, - "WGL_MAX_PBUFFER_HEIGHT_EXT": 1, - "WGL_OPTIMAL_PBUFFER_WIDTH_EXT": 1, - "WGL_OPTIMAL_PBUFFER_HEIGHT_EXT": 1, - "WGL_PBUFFER_LARGEST_EXT": 1, - "WGL_PBUFFER_WIDTH_EXT": 1, - "WGL_PBUFFER_HEIGHT_EXT": 1, - "HPBUFFEREXT": 6, - "PFNWGLCREATEPBUFFEREXTPROC": 2, - "PFNWGLDESTROYPBUFFEREXTPROC": 2, - "PFNWGLGETPBUFFERDCEXTPROC": 2, - "PFNWGLQUERYPBUFFEREXTPROC": 2, - "PFNWGLRELEASEPBUFFERDCEXTPROC": 2, - "wglCreatePbufferEXT": 1, - "__wglewCreatePbufferEXT": 2, - "wglDestroyPbufferEXT": 1, - "__wglewDestroyPbufferEXT": 2, - "wglGetPbufferDCEXT": 1, - "__wglewGetPbufferDCEXT": 2, - "wglQueryPbufferEXT": 1, - "__wglewQueryPbufferEXT": 2, - "wglReleasePbufferDCEXT": 1, - "__wglewReleasePbufferDCEXT": 2, - "WGLEW_EXT_pbuffer": 1, - "__WGLEW_EXT_pbuffer": 2, - "WGL_EXT_pixel_format": 2, - "WGL_NUMBER_PIXEL_FORMATS_EXT": 1, - "WGL_DRAW_TO_WINDOW_EXT": 1, - "WGL_DRAW_TO_BITMAP_EXT": 1, - "WGL_ACCELERATION_EXT": 1, - "WGL_NEED_PALETTE_EXT": 1, - "WGL_NEED_SYSTEM_PALETTE_EXT": 1, - "WGL_SWAP_LAYER_BUFFERS_EXT": 1, - "WGL_SWAP_METHOD_EXT": 1, - "WGL_NUMBER_OVERLAYS_EXT": 1, - "WGL_NUMBER_UNDERLAYS_EXT": 1, - "WGL_TRANSPARENT_EXT": 1, - "WGL_TRANSPARENT_VALUE_EXT": 1, - "WGL_SHARE_DEPTH_EXT": 1, - "WGL_SHARE_STENCIL_EXT": 1, - "WGL_SHARE_ACCUM_EXT": 1, - "WGL_SUPPORT_GDI_EXT": 1, - "WGL_SUPPORT_OPENGL_EXT": 1, - "WGL_DOUBLE_BUFFER_EXT": 1, - "WGL_STEREO_EXT": 1, - "WGL_PIXEL_TYPE_EXT": 1, - "WGL_COLOR_BITS_EXT": 1, - "WGL_RED_BITS_EXT": 1, - "WGL_RED_SHIFT_EXT": 1, - "WGL_GREEN_BITS_EXT": 1, - "WGL_GREEN_SHIFT_EXT": 1, - "WGL_BLUE_BITS_EXT": 1, - "WGL_BLUE_SHIFT_EXT": 1, - "WGL_ALPHA_BITS_EXT": 1, - "WGL_ALPHA_SHIFT_EXT": 1, - "WGL_ACCUM_BITS_EXT": 1, - "WGL_ACCUM_RED_BITS_EXT": 1, - "WGL_ACCUM_GREEN_BITS_EXT": 1, - "WGL_ACCUM_BLUE_BITS_EXT": 1, - "WGL_ACCUM_ALPHA_BITS_EXT": 1, - "WGL_DEPTH_BITS_EXT": 1, - "WGL_STENCIL_BITS_EXT": 1, - "WGL_AUX_BUFFERS_EXT": 1, - "WGL_NO_ACCELERATION_EXT": 1, - "WGL_GENERIC_ACCELERATION_EXT": 1, - "WGL_FULL_ACCELERATION_EXT": 1, - "WGL_SWAP_EXCHANGE_EXT": 1, - "WGL_SWAP_COPY_EXT": 1, - "WGL_SWAP_UNDEFINED_EXT": 1, - "WGL_TYPE_RGBA_EXT": 1, - "WGL_TYPE_COLORINDEX_EXT": 1, - "PFNWGLCHOOSEPIXELFORMATEXTPROC": 2, - "PFNWGLGETPIXELFORMATATTRIBFVEXTPROC": 2, - "PFNWGLGETPIXELFORMATATTRIBIVEXTPROC": 2, - "wglChoosePixelFormatEXT": 1, - "__wglewChoosePixelFormatEXT": 2, - "wglGetPixelFormatAttribfvEXT": 1, - "__wglewGetPixelFormatAttribfvEXT": 2, - "wglGetPixelFormatAttribivEXT": 1, - "__wglewGetPixelFormatAttribivEXT": 2, - "WGLEW_EXT_pixel_format": 1, - "__WGLEW_EXT_pixel_format": 2, - "WGL_EXT_pixel_format_packed_float": 2, - "WGL_TYPE_RGBA_UNSIGNED_FLOAT_EXT": 1, - "WGLEW_EXT_pixel_format_packed_float": 1, - "__WGLEW_EXT_pixel_format_packed_float": 2, - "WGL_EXT_swap_control": 2, - "PFNWGLGETSWAPINTERVALEXTPROC": 2, - "PFNWGLSWAPINTERVALEXTPROC": 2, - "interval": 1, - "wglGetSwapIntervalEXT": 1, - "__wglewGetSwapIntervalEXT": 2, - "wglSwapIntervalEXT": 1, - "__wglewSwapIntervalEXT": 2, - "WGLEW_EXT_swap_control": 1, - "__WGLEW_EXT_swap_control": 2, - "WGL_I3D_digital_video_control": 2, - "WGL_DIGITAL_VIDEO_CURSOR_ALPHA_FRAMEBUFFER_I3D": 1, - "WGL_DIGITAL_VIDEO_CURSOR_ALPHA_VALUE_I3D": 1, - "WGL_DIGITAL_VIDEO_CURSOR_INCLUDED_I3D": 1, - "WGL_DIGITAL_VIDEO_GAMMA_CORRECTED_I3D": 1, - "PFNWGLGETDIGITALVIDEOPARAMETERSI3DPROC": 2, - "PFNWGLSETDIGITALVIDEOPARAMETERSI3DPROC": 2, - "wglGetDigitalVideoParametersI3D": 1, - "__wglewGetDigitalVideoParametersI3D": 2, - "wglSetDigitalVideoParametersI3D": 1, - "__wglewSetDigitalVideoParametersI3D": 2, - "WGLEW_I3D_digital_video_control": 1, - "__WGLEW_I3D_digital_video_control": 2, - "WGL_I3D_gamma": 2, - "WGL_GAMMA_TABLE_SIZE_I3D": 1, - "WGL_GAMMA_EXCLUDE_DESKTOP_I3D": 1, - "PFNWGLGETGAMMATABLEI3DPROC": 2, - "iEntries": 2, - "USHORT*": 2, - "puRed": 2, - "USHORT": 4, - "*puGreen": 2, - "*puBlue": 2, - "PFNWGLGETGAMMATABLEPARAMETERSI3DPROC": 2, - "PFNWGLSETGAMMATABLEI3DPROC": 2, - "PFNWGLSETGAMMATABLEPARAMETERSI3DPROC": 2, - "wglGetGammaTableI3D": 1, - "__wglewGetGammaTableI3D": 2, - "wglGetGammaTableParametersI3D": 1, - "__wglewGetGammaTableParametersI3D": 2, - "wglSetGammaTableI3D": 1, - "__wglewSetGammaTableI3D": 2, - "wglSetGammaTableParametersI3D": 1, - "__wglewSetGammaTableParametersI3D": 2, - "WGLEW_I3D_gamma": 1, - "__WGLEW_I3D_gamma": 2, - "WGL_I3D_genlock": 2, - "WGL_GENLOCK_SOURCE_MULTIVIEW_I3D": 1, - "WGL_GENLOCK_SOURCE_EXTERNAL_SYNC_I3D": 1, - "WGL_GENLOCK_SOURCE_EXTERNAL_FIELD_I3D": 1, - "WGL_GENLOCK_SOURCE_EXTERNAL_TTL_I3D": 1, - "WGL_GENLOCK_SOURCE_DIGITAL_SYNC_I3D": 1, - "WGL_GENLOCK_SOURCE_DIGITAL_FIELD_I3D": 1, - "WGL_GENLOCK_SOURCE_EDGE_FALLING_I3D": 1, - "WGL_GENLOCK_SOURCE_EDGE_RISING_I3D": 1, - "WGL_GENLOCK_SOURCE_EDGE_BOTH_I3D": 1, - "PFNWGLDISABLEGENLOCKI3DPROC": 2, - "PFNWGLENABLEGENLOCKI3DPROC": 2, - "PFNWGLGENLOCKSAMPLERATEI3DPROC": 2, - "uRate": 2, - "PFNWGLGENLOCKSOURCEDELAYI3DPROC": 2, - "uDelay": 2, - "PFNWGLGENLOCKSOURCEEDGEI3DPROC": 2, - "uEdge": 2, - "PFNWGLGENLOCKSOURCEI3DPROC": 2, - "uSource": 2, - "PFNWGLGETGENLOCKSAMPLERATEI3DPROC": 2, - "PFNWGLGETGENLOCKSOURCEDELAYI3DPROC": 2, - "PFNWGLGETGENLOCKSOURCEEDGEI3DPROC": 2, - "PFNWGLGETGENLOCKSOURCEI3DPROC": 2, - "PFNWGLISENABLEDGENLOCKI3DPROC": 2, - "BOOL*": 3, - "pFlag": 3, - "PFNWGLQUERYGENLOCKMAXSOURCEDELAYI3DPROC": 2, - "uMaxLineDelay": 1, - "*uMaxPixelDelay": 1, - "wglDisableGenlockI3D": 1, - "__wglewDisableGenlockI3D": 2, - "wglEnableGenlockI3D": 1, - "__wglewEnableGenlockI3D": 2, - "wglGenlockSampleRateI3D": 1, - "__wglewGenlockSampleRateI3D": 2, - "wglGenlockSourceDelayI3D": 1, - "__wglewGenlockSourceDelayI3D": 2, - "wglGenlockSourceEdgeI3D": 1, - "__wglewGenlockSourceEdgeI3D": 2, - "wglGenlockSourceI3D": 1, - "__wglewGenlockSourceI3D": 2, - "wglGetGenlockSampleRateI3D": 1, - "__wglewGetGenlockSampleRateI3D": 2, - "wglGetGenlockSourceDelayI3D": 1, - "__wglewGetGenlockSourceDelayI3D": 2, - "wglGetGenlockSourceEdgeI3D": 1, - "__wglewGetGenlockSourceEdgeI3D": 2, - "wglGetGenlockSourceI3D": 1, - "__wglewGetGenlockSourceI3D": 2, - "wglIsEnabledGenlockI3D": 1, - "__wglewIsEnabledGenlockI3D": 2, - "wglQueryGenlockMaxSourceDelayI3D": 1, - "__wglewQueryGenlockMaxSourceDelayI3D": 2, - "WGLEW_I3D_genlock": 1, - "__WGLEW_I3D_genlock": 2, - "WGL_I3D_image_buffer": 2, - "WGL_IMAGE_BUFFER_MIN_ACCESS_I3D": 1, - "WGL_IMAGE_BUFFER_LOCK_I3D": 1, - "PFNWGLASSOCIATEIMAGEBUFFEREVENTSI3DPROC": 2, - "HANDLE*": 3, - "pEvent": 1, - "LPVOID": 3, - "*pAddress": 1, - "DWORD": 5, - "*pSize": 1, - "PFNWGLCREATEIMAGEBUFFERI3DPROC": 2, - "dwSize": 1, - "uFlags": 1, - "PFNWGLDESTROYIMAGEBUFFERI3DPROC": 2, - "pAddress": 2, - "PFNWGLRELEASEIMAGEBUFFEREVENTSI3DPROC": 2, - "LPVOID*": 1, - "wglAssociateImageBufferEventsI3D": 1, - "__wglewAssociateImageBufferEventsI3D": 2, - "wglCreateImageBufferI3D": 1, - "__wglewCreateImageBufferI3D": 2, - "wglDestroyImageBufferI3D": 1, - "__wglewDestroyImageBufferI3D": 2, - "wglReleaseImageBufferEventsI3D": 1, - "__wglewReleaseImageBufferEventsI3D": 2, - "WGLEW_I3D_image_buffer": 1, - "__WGLEW_I3D_image_buffer": 2, - "WGL_I3D_swap_frame_lock": 2, - "PFNWGLDISABLEFRAMELOCKI3DPROC": 2, - "PFNWGLENABLEFRAMELOCKI3DPROC": 2, - "PFNWGLISENABLEDFRAMELOCKI3DPROC": 2, - "PFNWGLQUERYFRAMELOCKMASTERI3DPROC": 2, - "wglDisableFrameLockI3D": 1, - "__wglewDisableFrameLockI3D": 2, - "wglEnableFrameLockI3D": 1, - "__wglewEnableFrameLockI3D": 2, - "wglIsEnabledFrameLockI3D": 1, - "__wglewIsEnabledFrameLockI3D": 2, - "wglQueryFrameLockMasterI3D": 1, - "__wglewQueryFrameLockMasterI3D": 2, - "WGLEW_I3D_swap_frame_lock": 1, - "__WGLEW_I3D_swap_frame_lock": 2, - "WGL_I3D_swap_frame_usage": 2, - "PFNWGLBEGINFRAMETRACKINGI3DPROC": 2, - "PFNWGLENDFRAMETRACKINGI3DPROC": 2, - "PFNWGLGETFRAMEUSAGEI3DPROC": 2, - "float*": 1, - "pUsage": 1, - "PFNWGLQUERYFRAMETRACKINGI3DPROC": 2, - "DWORD*": 1, - "pFrameCount": 1, - "*pMissedFrames": 1, - "*pLastMissedUsage": 1, - "wglBeginFrameTrackingI3D": 1, - "__wglewBeginFrameTrackingI3D": 2, - "wglEndFrameTrackingI3D": 1, - "__wglewEndFrameTrackingI3D": 2, - "wglGetFrameUsageI3D": 1, - "__wglewGetFrameUsageI3D": 2, - "wglQueryFrameTrackingI3D": 1, - "__wglewQueryFrameTrackingI3D": 2, - "WGLEW_I3D_swap_frame_usage": 1, - "__WGLEW_I3D_swap_frame_usage": 2, - "WGL_NV_DX_interop": 2, - "WGL_ACCESS_READ_ONLY_NV": 1, - "WGL_ACCESS_READ_WRITE_NV": 1, - "WGL_ACCESS_WRITE_DISCARD_NV": 1, - "PFNWGLDXCLOSEDEVICENVPROC": 2, - "hDevice": 9, - "PFNWGLDXLOCKOBJECTSNVPROC": 2, - "hObjects": 2, - "PFNWGLDXOBJECTACCESSNVPROC": 2, - "hObject": 2, - "access": 2, - "PFNWGLDXOPENDEVICENVPROC": 2, - "dxDevice": 1, - "PFNWGLDXREGISTEROBJECTNVPROC": 2, - "dxObject": 2, - "PFNWGLDXSETRESOURCESHAREHANDLENVPROC": 2, - "shareHandle": 1, - "PFNWGLDXUNLOCKOBJECTSNVPROC": 2, - "PFNWGLDXUNREGISTEROBJECTNVPROC": 2, - "wglDXCloseDeviceNV": 1, - "__wglewDXCloseDeviceNV": 2, - "wglDXLockObjectsNV": 1, - "__wglewDXLockObjectsNV": 2, - "wglDXObjectAccessNV": 1, - "__wglewDXObjectAccessNV": 2, - "wglDXOpenDeviceNV": 1, - "__wglewDXOpenDeviceNV": 2, - "wglDXRegisterObjectNV": 1, - "__wglewDXRegisterObjectNV": 2, - "wglDXSetResourceShareHandleNV": 1, - "__wglewDXSetResourceShareHandleNV": 2, - "wglDXUnlockObjectsNV": 1, - "__wglewDXUnlockObjectsNV": 2, - "wglDXUnregisterObjectNV": 1, - "__wglewDXUnregisterObjectNV": 2, - "WGLEW_NV_DX_interop": 1, - "__WGLEW_NV_DX_interop": 2, - "WGL_NV_copy_image": 2, - "PFNWGLCOPYIMAGESUBDATANVPROC": 2, - "hSrcRC": 1, - "srcName": 1, - "srcTarget": 1, - "srcLevel": 1, - "srcX": 1, - "srcY": 1, - "srcZ": 1, - "hDstRC": 1, - "dstName": 1, - "dstTarget": 1, - "dstLevel": 1, - "dstX": 1, - "dstY": 1, - "dstZ": 1, - "GLsizei": 4, - "wglCopyImageSubDataNV": 1, - "__wglewCopyImageSubDataNV": 2, - "WGLEW_NV_copy_image": 1, - "__WGLEW_NV_copy_image": 2, - "WGL_NV_float_buffer": 2, - "WGL_FLOAT_COMPONENTS_NV": 1, - "B0": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_R_NV": 1, - "B1": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RG_NV": 1, - "B2": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGB_NV": 1, - "B3": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGBA_NV": 1, - "B4": 1, - "WGL_TEXTURE_FLOAT_R_NV": 1, - "B5": 1, - "WGL_TEXTURE_FLOAT_RG_NV": 1, - "B6": 1, - "WGL_TEXTURE_FLOAT_RGB_NV": 1, - "B7": 1, - "WGL_TEXTURE_FLOAT_RGBA_NV": 1, - "B8": 1, - "WGLEW_NV_float_buffer": 1, - "__WGLEW_NV_float_buffer": 2, - "WGL_NV_gpu_affinity": 2, - "WGL_ERROR_INCOMPATIBLE_AFFINITY_MASKS_NV": 1, - "D0": 1, - "WGL_ERROR_MISSING_AFFINITY_MASK_NV": 1, - "D1": 1, - "HGPUNV": 5, - "_GPU_DEVICE": 1, - "cb": 1, - "CHAR": 2, - "DeviceName": 1, - "DeviceString": 1, - "Flags": 1, - "RECT": 1, - "rcVirtualScreen": 1, - "GPU_DEVICE": 1, - "*PGPU_DEVICE": 1, - "PFNWGLCREATEAFFINITYDCNVPROC": 2, - "*phGpuList": 1, - "PFNWGLDELETEDCNVPROC": 2, - "PFNWGLENUMGPUDEVICESNVPROC": 2, - "hGpu": 1, - "iDeviceIndex": 1, - "PGPU_DEVICE": 1, - "lpGpuDevice": 1, - "PFNWGLENUMGPUSFROMAFFINITYDCNVPROC": 2, - "hAffinityDC": 1, - "iGpuIndex": 2, - "*hGpu": 1, - "PFNWGLENUMGPUSNVPROC": 2, - "*phGpu": 1, - "wglCreateAffinityDCNV": 1, - "__wglewCreateAffinityDCNV": 2, - "wglDeleteDCNV": 1, - "__wglewDeleteDCNV": 2, - "wglEnumGpuDevicesNV": 1, - "__wglewEnumGpuDevicesNV": 2, - "wglEnumGpusFromAffinityDCNV": 1, - "__wglewEnumGpusFromAffinityDCNV": 2, - "wglEnumGpusNV": 1, - "__wglewEnumGpusNV": 2, - "WGLEW_NV_gpu_affinity": 1, - "__WGLEW_NV_gpu_affinity": 2, - "WGL_NV_multisample_coverage": 2, - "WGL_COVERAGE_SAMPLES_NV": 1, - "WGL_COLOR_SAMPLES_NV": 1, - "B9": 1, - "WGLEW_NV_multisample_coverage": 1, - "__WGLEW_NV_multisample_coverage": 2, - "WGL_NV_present_video": 2, - "WGL_NUM_VIDEO_SLOTS_NV": 1, - "F0": 1, - "HVIDEOOUTPUTDEVICENV": 2, - "PFNWGLBINDVIDEODEVICENVPROC": 2, - "hDc": 6, - "uVideoSlot": 2, - "hVideoDevice": 4, - "PFNWGLENUMERATEVIDEODEVICESNVPROC": 2, - "HVIDEOOUTPUTDEVICENV*": 1, - "phDeviceList": 2, - "PFNWGLQUERYCURRENTCONTEXTNVPROC": 2, - "wglBindVideoDeviceNV": 1, - "__wglewBindVideoDeviceNV": 2, - "wglEnumerateVideoDevicesNV": 1, - "__wglewEnumerateVideoDevicesNV": 2, - "wglQueryCurrentContextNV": 1, - "__wglewQueryCurrentContextNV": 2, - "WGLEW_NV_present_video": 1, - "__WGLEW_NV_present_video": 2, - "WGL_NV_render_depth_texture": 2, - "WGL_BIND_TO_TEXTURE_DEPTH_NV": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_DEPTH_NV": 1, - "WGL_DEPTH_TEXTURE_FORMAT_NV": 1, - "WGL_TEXTURE_DEPTH_COMPONENT_NV": 1, - "WGL_DEPTH_COMPONENT_NV": 1, - "WGLEW_NV_render_depth_texture": 1, - "__WGLEW_NV_render_depth_texture": 2, - "WGL_NV_render_texture_rectangle": 2, - "WGL_BIND_TO_TEXTURE_RECTANGLE_RGB_NV": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_RGBA_NV": 1, - "A1": 1, - "WGL_TEXTURE_RECTANGLE_NV": 1, - "WGLEW_NV_render_texture_rectangle": 1, - "__WGLEW_NV_render_texture_rectangle": 2, - "WGL_NV_swap_group": 2, - "PFNWGLBINDSWAPBARRIERNVPROC": 2, - "group": 3, - "barrier": 1, - "PFNWGLJOINSWAPGROUPNVPROC": 2, - "PFNWGLQUERYFRAMECOUNTNVPROC": 2, - "GLuint*": 3, - "PFNWGLQUERYMAXSWAPGROUPSNVPROC": 2, - "maxGroups": 1, - "*maxBarriers": 1, - "PFNWGLQUERYSWAPGROUPNVPROC": 2, - "*barrier": 1, - "PFNWGLRESETFRAMECOUNTNVPROC": 2, - "wglBindSwapBarrierNV": 1, - "__wglewBindSwapBarrierNV": 2, - "wglJoinSwapGroupNV": 1, - "__wglewJoinSwapGroupNV": 2, - "wglQueryFrameCountNV": 1, - "__wglewQueryFrameCountNV": 2, - "wglQueryMaxSwapGroupsNV": 1, - "__wglewQueryMaxSwapGroupsNV": 2, - "wglQuerySwapGroupNV": 1, - "__wglewQuerySwapGroupNV": 2, - "wglResetFrameCountNV": 1, - "__wglewResetFrameCountNV": 2, - "WGLEW_NV_swap_group": 1, - "__WGLEW_NV_swap_group": 2, - "WGL_NV_vertex_array_range": 2, - "PFNWGLALLOCATEMEMORYNVPROC": 2, - "GLfloat": 3, - "readFrequency": 1, - "writeFrequency": 1, - "priority": 1, - "PFNWGLFREEMEMORYNVPROC": 2, - "*pointer": 1, - "wglAllocateMemoryNV": 1, - "__wglewAllocateMemoryNV": 2, - "wglFreeMemoryNV": 1, - "__wglewFreeMemoryNV": 2, - "WGLEW_NV_vertex_array_range": 1, - "__WGLEW_NV_vertex_array_range": 2, - "WGL_NV_video_capture": 2, - "WGL_UNIQUE_ID_NV": 1, - "CE": 1, - "WGL_NUM_VIDEO_CAPTURE_SLOTS_NV": 1, - "CF": 1, - "HVIDEOINPUTDEVICENV": 5, - "PFNWGLBINDVIDEOCAPTUREDEVICENVPROC": 2, - "PFNWGLENUMERATEVIDEOCAPTUREDEVICESNVPROC": 2, - "HVIDEOINPUTDEVICENV*": 1, - "PFNWGLLOCKVIDEOCAPTUREDEVICENVPROC": 2, - "PFNWGLQUERYVIDEOCAPTUREDEVICENVPROC": 2, - "PFNWGLRELEASEVIDEOCAPTUREDEVICENVPROC": 2, - "wglBindVideoCaptureDeviceNV": 1, - "__wglewBindVideoCaptureDeviceNV": 2, - "wglEnumerateVideoCaptureDevicesNV": 1, - "__wglewEnumerateVideoCaptureDevicesNV": 2, - "wglLockVideoCaptureDeviceNV": 1, - "__wglewLockVideoCaptureDeviceNV": 2, - "wglQueryVideoCaptureDeviceNV": 1, - "__wglewQueryVideoCaptureDeviceNV": 2, - "wglReleaseVideoCaptureDeviceNV": 1, - "__wglewReleaseVideoCaptureDeviceNV": 2, - "WGLEW_NV_video_capture": 1, - "__WGLEW_NV_video_capture": 2, - "WGL_NV_video_output": 2, - "WGL_BIND_TO_VIDEO_RGB_NV": 1, - "WGL_BIND_TO_VIDEO_RGBA_NV": 1, - "C1": 1, - "WGL_BIND_TO_VIDEO_RGB_AND_DEPTH_NV": 1, - "C2": 1, - "WGL_VIDEO_OUT_COLOR_NV": 1, - "C3": 1, - "WGL_VIDEO_OUT_ALPHA_NV": 1, - "C4": 1, - "WGL_VIDEO_OUT_DEPTH_NV": 1, - "C5": 1, - "WGL_VIDEO_OUT_COLOR_AND_ALPHA_NV": 1, - "C6": 1, - "WGL_VIDEO_OUT_COLOR_AND_DEPTH_NV": 1, - "C7": 1, - "WGL_VIDEO_OUT_FRAME": 1, - "C8": 1, - "WGL_VIDEO_OUT_FIELD_1": 1, - "C9": 1, - "WGL_VIDEO_OUT_FIELD_2": 1, - "CA": 1, - "WGL_VIDEO_OUT_STACKED_FIELDS_1_2": 1, - "CB": 1, - "WGL_VIDEO_OUT_STACKED_FIELDS_2_1": 1, - "CC": 1, - "HPVIDEODEV": 4, - "PFNWGLBINDVIDEOIMAGENVPROC": 2, - "iVideoBuffer": 2, - "PFNWGLGETVIDEODEVICENVPROC": 2, - "numDevices": 1, - "HPVIDEODEV*": 1, - "PFNWGLGETVIDEOINFONVPROC": 2, - "hpVideoDevice": 1, - "long*": 2, - "pulCounterOutputPbuffer": 1, - "*pulCounterOutputVideo": 1, - "PFNWGLRELEASEVIDEODEVICENVPROC": 2, - "PFNWGLRELEASEVIDEOIMAGENVPROC": 2, - "PFNWGLSENDPBUFFERTOVIDEONVPROC": 2, - "iBufferType": 1, - "pulCounterPbuffer": 1, - "bBlock": 1, - "wglBindVideoImageNV": 1, - "__wglewBindVideoImageNV": 2, - "wglGetVideoDeviceNV": 1, - "__wglewGetVideoDeviceNV": 2, - "wglGetVideoInfoNV": 1, - "__wglewGetVideoInfoNV": 2, - "wglReleaseVideoDeviceNV": 1, - "__wglewReleaseVideoDeviceNV": 2, - "wglReleaseVideoImageNV": 1, - "__wglewReleaseVideoImageNV": 2, - "wglSendPbufferToVideoNV": 1, - "__wglewSendPbufferToVideoNV": 2, - "WGLEW_NV_video_output": 1, - "__WGLEW_NV_video_output": 2, - "WGL_OML_sync_control": 2, - "PFNWGLGETMSCRATEOMLPROC": 2, - "INT32*": 1, - "numerator": 1, - "INT32": 1, - "*denominator": 1, - "PFNWGLGETSYNCVALUESOMLPROC": 2, - "INT64*": 3, - "INT64": 18, - "*msc": 3, - "*sbc": 3, - "PFNWGLSWAPBUFFERSMSCOMLPROC": 2, - "target_msc": 3, - "divisor": 3, - "remainder": 3, - "PFNWGLSWAPLAYERBUFFERSMSCOMLPROC": 2, - "fuPlanes": 1, - "PFNWGLWAITFORMSCOMLPROC": 2, - "PFNWGLWAITFORSBCOMLPROC": 2, - "target_sbc": 1, - "wglGetMscRateOML": 1, - "__wglewGetMscRateOML": 2, - "wglGetSyncValuesOML": 1, - "__wglewGetSyncValuesOML": 2, - "wglSwapBuffersMscOML": 1, - "__wglewSwapBuffersMscOML": 2, - "wglSwapLayerBuffersMscOML": 1, - "__wglewSwapLayerBuffersMscOML": 2, - "wglWaitForMscOML": 1, - "__wglewWaitForMscOML": 2, - "wglWaitForSbcOML": 1, - "__wglewWaitForSbcOML": 2, - "WGLEW_OML_sync_control": 1, - "__WGLEW_OML_sync_control": 2, - "GLEW_MX": 4, - "WGLEW_EXPORT": 167, - "GLEWAPI": 6, - "WGLEWContextStruct": 2, - "WGLEWContext": 1, - "wglewContextInit": 2, - "WGLEWContext*": 2, - "wglewContextIsSupported": 2, - "wglewInit": 1, - "wglewGetContext": 4, - "wglewIsSupported": 2, - "wglewGetExtension": 1, - "yajl_status_to_string": 1, - "yajl_status": 4, - "statStr": 6, - "yajl_status_ok": 1, - "yajl_status_client_canceled": 1, - "yajl_status_insufficient_data": 1, - "yajl_status_error": 1, - "yajl_handle": 10, - "yajl_alloc": 1, - "yajl_callbacks": 1, - "callbacks": 3, - "yajl_parser_config": 1, - "config": 4, - "yajl_alloc_funcs": 3, - "afs": 8, - "allowComments": 4, - "validateUTF8": 3, - "hand": 28, - "afsBuffer": 3, - "realloc": 1, - "yajl_set_default_alloc_funcs": 1, - "YA_MALLOC": 1, - "yajl_handle_t": 1, - "alloc": 6, - "checkUTF8": 1, - "lexer": 4, - "yajl_lex_alloc": 1, - "bytesConsumed": 2, - "decodeBuf": 2, - "yajl_buf_alloc": 1, - "yajl_bs_init": 1, - "stateStack": 3, - "yajl_bs_push": 1, - "yajl_state_start": 1, - "yajl_reset_parser": 1, - "yajl_lex_realloc": 1, - "yajl_free": 1, - "yajl_bs_free": 1, - "yajl_buf_free": 1, - "yajl_lex_free": 1, - "YA_FREE": 2, - "yajl_parse": 2, - "jsonText": 4, - "jsonTextLen": 4, - "yajl_do_parse": 1, - "yajl_parse_complete": 1, - "yajl_get_error": 1, - "verbose": 2, - "yajl_render_error_string": 1, - "yajl_get_bytes_consumed": 1, - "yajl_free_error": 1 - }, - "C#": { - "@": 1, - "{": 5, - "ViewBag.Title": 1, - ";": 8, - "}": 5, - "@section": 1, - "featured": 1, - "
": 1, - "class=": 7, - "
": 1, - "
": 1, - "

": 1, - "@ViewBag.Title.": 1, - "

": 1, - "

": 1, - "@ViewBag.Message": 1, - "

": 1, - "
": 1, - "

": 1, - "To": 1, - "learn": 1, - "more": 4, - "about": 2, - "ASP.NET": 5, - "MVC": 4, - "visit": 2, - "": 5, - "href=": 5, - "title=": 2, - "http": 1, - "//asp.net/mvc": 1, - "": 5, - ".": 2, - "The": 1, - "page": 1, - "features": 3, - "": 1, - "videos": 1, - "tutorials": 1, - "and": 6, - "samples": 1, - "": 1, - "to": 4, - "help": 1, - "you": 4, - "get": 1, - "the": 5, - "most": 1, + "a": 1, + "of": 1, + "null": 2, + "entries": 1, + "var/list/NullList": 1, + "var/name": 1, + "var/number": 1, + "/datum/entity/proc/myFunction": 1, + "world.log": 5, + "<<": 5, + "/datum/entity/New": 1, + "number": 2, + "GlobalCounter": 1, + "+": 3, + "/datum/entity/unit": 1, + "name": 1, + "/datum/entity/unit/New": 1, + "..": 1, + "calls": 1, + "the": 2, + "parent": 1, + "s": 1, + "proc": 1, + ";": 3, + "equal": 1, + "to": 1, + "super": 1, + "and": 1, + "base": 1, + "in": 1, + "other": 1, + "languages": 1, + "rand": 1, + "/datum/entity/unit/myFunction": 1, + "/proc/ReverseList": 1, + "var/list/input": 1, + "var/list/output": 1, + "for": 1, + "var/i": 1, + "input.len": 1, + "i": 3, + "-": 2, + "IMPORTANT": 1, + "List": 1, + "Arrays": 1, + "count": 1, "from": 1, - "MVC.": 1, - "If": 1, - "have": 1, - "any": 1, - "questions": 1, - "our": 1, - "forums": 1, - "

": 1, - "
": 1, - "
": 1, - "

": 1, - "We": 1, - "suggest": 1, - "following": 1, - "

": 1, - "
    ": 1, - "
  1. ": 3, - "
    ": 3, + "output": 2, + "input": 1, + "is": 2, + "return": 3, + "/proc/DoStuff": 1, + "var/bitflag": 2, + "bitflag": 4, + "|": 1, + "/proc/DoOtherStuff": 1, + "bits": 1, + "maximum": 1, + "amount": 1, + "&": 1, + "/proc/DoNothing": 1, + "var/pi": 1, + "if": 2, + "pi": 2, + "else": 2, + "CONST_VARIABLE": 1, + "#undef": 1, + "Undefine": 1 + }, + "GLSL": { + "static": 1, + "const": 19, + "char*": 1, + "SimpleFragmentShader": 1, + "STRINGIFY": 1, + "(": 435, + "varying": 4, + "vec4": 73, + "FrontColor": 2, + ";": 383, + "void": 31, + "main": 5, + ")": 435, + "{": 82, + "gl_FragColor": 3, + "}": 82, + "////": 4, + "High": 1, + "quality": 2, + "Some": 1, + "browsers": 1, + "may": 1, + "freeze": 1, + "or": 1, + "crash": 1, + "//#define": 10, + "HIGHQUALITY": 2, + "Medium": 1, + "Should": 1, + "be": 1, + "fine": 1, + "on": 3, + "all": 1, + "systems": 1, + "works": 1, + "Intel": 1, + "HD2000": 1, + "Win7": 1, + "but": 1, + "quite": 1, + "slow": 1, + "MEDIUMQUALITY": 2, + "Defaults": 1, + "REFLECTIONS": 3, + "#define": 13, + "SHADOWS": 5, + "GRASS": 3, + "SMALL_WAVES": 4, + "RAGGED_LEAVES": 5, + "DETAILED_NOISE": 3, + "LIGHT_AA": 3, + "//": 38, + "sample": 2, + "SSAA": 2, + "HEAVY_AA": 2, + "x2": 5, + "RG": 1, + "TONEMAP": 5, + "Configurations": 1, + "#ifdef": 14, + "#endif": 14, + "float": 105, + "eps": 5, + "e": 4, + "-": 108, + "PI": 3, + "vec3": 165, + "sunDir": 5, + "skyCol": 4, + "sandCol": 2, + "treeCol": 2, + "grassCol": 2, + "leavesCol": 4, + "leavesPos": 4, + "sunCol": 5, + "#else": 5, + "exposure": 1, + "Only": 1, + "used": 1, + "when": 1, + "tonemapping": 1, + "mod289": 4, + "x": 11, + "return": 47, + "floor": 8, + "*": 115, + "/": 24, + "permute": 4, + "x*34.0": 1, + "+": 108, + "*x": 3, + "taylorInvSqrt": 2, + "r": 14, + "snoise": 7, + "v": 8, + "vec2": 26, + "C": 1, + "/6.0": 1, + "/3.0": 1, + "D": 1, + "i": 38, + "dot": 30, + "C.yyy": 2, + "x0": 7, + "C.xxx": 2, + "g": 2, + "step": 2, + "x0.yzx": 1, + "x0.xyz": 1, + "l": 1, + "i1": 2, + "min": 11, + "g.xyz": 2, + "l.zxy": 2, + "i2": 2, + "max": 9, + "x1": 4, + "*C.x": 2, + "/3": 1, + "C.y": 1, + "x3": 4, + "D.yyy": 1, + "D.y": 1, + "p": 26, + "i.z": 1, + "i1.z": 1, + "i2.z": 1, + "i.y": 1, + "i1.y": 1, + "i2.y": 1, + "i.x": 1, + "i1.x": 1, + "i2.x": 1, + "n_": 2, + "/7.0": 1, + "ns": 4, + "D.wyz": 1, + "D.xzx": 1, + "j": 4, + "ns.z": 3, + "mod": 2, + "*7": 1, + "x_": 3, + "y_": 2, + "N": 1, + "*ns.x": 2, + "ns.yyyy": 2, + "y": 2, + "h": 21, + "abs": 2, + "b0": 3, + "x.xy": 1, + "y.xy": 1, + "b1": 3, + "x.zw": 1, + "y.zw": 1, + "//vec4": 3, + "s0": 2, + "lessThan": 2, + "*2.0": 4, + "s1": 2, + "sh": 1, + "a0": 1, + "b0.xzyw": 1, + "s0.xzyw*sh.xxyy": 1, + "a1": 1, + "b1.xzyw": 1, + "s1.xzyw*sh.zzww": 1, + "p0": 5, + "a0.xy": 1, + "h.x": 1, + "p1": 5, + "a0.zw": 1, + "h.y": 1, + "p2": 5, + "a1.xy": 1, + "h.z": 1, + "p3": 5, + "a1.zw": 1, + "h.w": 1, + "//Normalise": 1, + "gradients": 1, + "norm": 1, + "norm.x": 1, + "norm.y": 1, + "norm.z": 1, + "norm.w": 1, + "m": 8, + "m*m": 1, + "fbm": 2, + "final": 5, + "waterHeight": 4, + "d": 10, + "length": 7, + "p.xz": 2, + "sin": 8, + "iGlobalTime": 7, + "Island": 1, + "waves": 3, + "p*0.5": 1, + "Other": 1, + "bump": 2, + "pos": 42, + "rayDir": 43, + "s": 23, + "Fade": 1, + "out": 1, + "to": 1, + "reduce": 1, + "aliasing": 1, + "dist": 7, + "<": 23, + "sqrt": 6, + "Calculate": 1, + "normal": 7, + "from": 2, + "heightmap": 1, + "pos.x": 1, + "iGlobalTime*0.5": 1, + "pos.z": 2, + "*0.7": 1, + "*s": 4, + "normalize": 14, + "e.xyy": 1, + "e.yxy": 1, + "intersectSphere": 2, + "rpos": 5, + "rdir": 3, + "rad": 2, + "op": 5, + "b": 5, + "det": 11, + "b*b": 2, + "rad*rad": 2, + "if": 29, + "t": 44, + "rdir*t": 1, + "intersectCylinder": 1, + "rdir2": 2, + "rdir.yz": 1, + "op.yz": 3, + "rpos.yz": 2, + "rdir2*t": 2, + "pos.yz": 2, + "intersectPlane": 3, + "rayPos": 38, + "n": 18, + "sign": 1, + "rotate": 5, + "theta": 6, + "c": 6, + "cos": 4, + "p.x": 2, + "p.z": 2, + "p.y": 1, + "impulse": 2, + "k": 8, + "by": 1, + "iq": 2, + "k*x": 1, + "exp": 2, + "grass": 2, + "Optimization": 1, + "Avoid": 1, + "noise": 1, + "too": 1, + "far": 1, + "away": 1, + "pos.y": 8, + "tree": 2, + "pos.y*0.03": 2, + "mat2": 2, + "m*pos.xy": 1, + "width": 2, + "clamp": 4, + "scene": 7, + "vtree": 4, + "vgrass": 2, + ".x": 4, + "eps.xyy": 1, + "eps.yxy": 1, + "eps.yyx": 1, + "plantsShadow": 2, + "Soft": 1, + "shadow": 4, + "taken": 1, + "for": 7, + "int": 8, + "rayDir*t": 2, + "res": 6, + "res.x": 3, + "k*res.x/t": 1, + "s*s*": 1, + "intersectWater": 2, + "rayPos.y": 1, + "rayDir.y": 1, + "intersectSand": 3, + "intersectTreasure": 2, + "intersectLeaf": 2, + "openAmount": 4, + "dir": 2, + "offset": 5, + "rayDir*res.w": 1, + "pos*0.8": 2, + "||": 3, + "res.w": 6, + "res2": 2, + "dir.xy": 1, + "dir.z": 1, + "rayDir*res2.w": 1, + "res2.w": 3, + "&&": 10, + "leaves": 7, + "e20": 3, + "sway": 5, + "fract": 1, + "upDownSway": 2, + "angleOffset": 3, + "Left": 1, + "right": 1, + "alpha": 3, + "Up": 1, + "down": 1, + "k*10.0": 1, + "p.xzy": 1, + ".xzy": 2, + "d.xzy": 1, + "Shift": 1, + "Intersect": 11, + "individual": 1, + "leaf": 1, + "res.xyz": 1, + "sand": 2, + "resSand": 2, + "//if": 1, + "resSand.w": 4, + "plants": 6, + "resLeaves": 3, + "resLeaves.w": 10, + "e7": 3, + "light": 5, + "sunDir*0.01": 2, + "col": 32, + "n.y": 3, + "lightLeaves": 3, + "ao": 5, + "sky": 5, + "res.y": 2, + "uvFact": 2, + "uv": 12, + "n.x": 1, + "tex": 6, + "texture2D": 6, + "iChannel0": 3, + ".rgb": 2, + "e8": 1, + "traceReflection": 2, + "resPlants": 2, + "resPlants.w": 6, + "resPlants.xyz": 2, + "pos.xz": 2, + "leavesPos.xz": 2, + ".r": 3, + "resLeaves.xyz": 2, + "trace": 2, + "resSand.xyz": 1, + "treasure": 1, + "chest": 1, + "resTreasure": 1, + "resTreasure.w": 4, + "resTreasure.xyz": 1, + "water": 1, + "resWater": 1, + "resWater.w": 4, + "ct": 2, + "fresnel": 2, + "pow": 3, + "trans": 2, + "reflDir": 3, + "reflect": 1, + "refl": 3, + "resWater.t": 1, + "mix": 2, + "camera": 8, + "px": 4, + "rd": 1, + "iResolution.yy": 1, + "iResolution.x/iResolution.y*0.5": 1, + "rd.x": 1, + "rd.y": 1, + "gl_FragCoord.xy": 7, + "*0.25": 4, + "*0.5": 1, + "Optimized": 1, + "Haarm": 1, + "Peter": 1, + "Duiker": 1, + "curve": 1, + "col*exposure": 1, + "x*": 2, + ".5": 1, + "#version": 2, + "uniform": 7, + "kCoeff": 2, + "kCube": 2, + "uShift": 3, + "vShift": 3, + "chroma_red": 2, + "chroma_green": 2, + "chroma_blue": 2, + "bool": 1, + "apply_disto": 4, + "sampler2D": 1, + "input1": 4, + "adsk_input1_w": 4, + "adsk_input1_h": 3, + "adsk_input1_aspect": 1, + "adsk_input1_frameratio": 5, + "adsk_result_w": 3, + "adsk_result_h": 2, + "distortion_f": 3, + "f": 17, + "r*r": 1, + "inverse_f": 2, + "[": 29, + "]": 29, + "lut": 9, + "max_r": 2, + "incr": 2, + "lut_r": 5, + ".z": 5, + ".y": 2, + "aberrate": 4, + "chroma": 2, + "chromaticize_and_invert": 2, + "rgb_f": 5, + "px.x": 2, + "px.y": 2, + "uv.x": 11, + "uv.y": 7, + "*2": 2, + "uv.x*uv.x": 1, + "uv.y*uv.y": 1, + "else": 1, + "rgb_uvs": 12, + "rgb_f.rr": 1, + "rgb_f.gg": 1, + "rgb_f.bb": 1, + "sampled": 1, + "sampled.r": 1, + "sampled.g": 1, + ".g": 1, + "sampled.b": 1, + ".b": 1, + "gl_FragColor.rgba": 1, + "sampled.rgb": 1, + "NUM_LIGHTS": 4, + "AMBIENT": 2, + "MAX_DIST": 3, + "MAX_DIST_SQUARED": 3, + "lightColor": 3, + "fragmentNormal": 2, + "cameraVector": 2, + "lightVector": 4, + "initialize": 1, + "diffuse/specular": 1, + "lighting": 1, + "diffuse": 4, + "specular": 4, + "the": 1, + "fragment": 1, + "and": 2, + "direction": 1, + "cameraDir": 2, + "loop": 1, + "through": 1, + "each": 1, + "calculate": 1, + "distance": 1, + "between": 1, + "distFactor": 3, + "lightDir": 3, + "diffuseDot": 2, + "halfAngle": 2, + "specularColor": 2, + "specularDot": 2, + "sample.rgb": 1, + "sample.a": 1, + "core": 1, + "cbar": 2, + "cfoo": 1, + "CB": 2, + "CD": 2, + "CA": 1, + "CC": 1, + "CBT": 5, + "CDT": 3, + "CAT": 1, + "CCT": 1, + "norA": 4, + "norB": 3, + "norC": 1, + "norD": 1, + "norE": 4, + "norF": 1, + "norG": 1, + "norH": 1, + "norI": 1, + "norcA": 2, + "norcB": 3, + "norcC": 2, + "norcD": 2, + "head": 1, + "of": 1, + "cycle": 2, + "norcE": 1, + "lead": 1, + "into": 1 + }, + "GAP": { + "#############################################################################": 63, + "##": 766, + "Magic.gd": 1, + "AutoDoc": 4, + "package": 10, + "Copyright": 6, + "Max": 2, + "Horn": 2, + "JLU": 2, + "Giessen": 2, + "Sebastian": 2, + "Gutsche": 2, + "University": 4, + "of": 114, + "Kaiserslautern": 2, + "SHEBANG#!#! @Description": 1, + "SHEBANG#!#! This": 1, + "SHEBANG#!#! any": 1, + "SHEBANG#!#! ": 1, + "SHEBANG#!#! ": 5, + "SHEBANG#!#! It": 3, + "SHEBANG#!#! That": 1, + "SHEBANG#!#! of": 1, + "SHEBANG#!#! (with": 1, + "SHEBANG#!#! main": 1, + "SHEBANG#!#! XML": 1, + "SHEBANG#!#! other": 1, + "SHEBANG#!#! as": 1, + "SHEBANG#!#! to": 2, + "SHEBANG#!#! Secondly,": 1, + "SHEBANG#!#! page": 1, + "SHEBANG#!#! (name,": 1, + "SHEBANG#!#! on": 1, + "SHEBANG#!Item>": 25, + "SHEBANG#!#! tags": 1, + "SHEBANG#!#! This": 1, + "SHEBANG#!#! produce": 1, + "SHEBANG#!#! MathJaX": 1, + "SHEBANG#!#! generated": 1, + "SHEBANG#!#! this,": 1, + "SHEBANG#!#! supplementary": 1, + "SHEBANG#!#! (see": 1, + "SHEBANG#!Enum>": 1, + "SHEBANG#!#! For": 1, + "SHEBANG#!>": 11, + "SHEBANG#!#! The": 1, + "SHEBANG#!#! ": 1, + "#": 73, + "SHEBANG#!Mark>": 22, + "SHEBANG#!#! The": 2, + "SHEBANG#!A>": 1, + "SHEBANG#!#! ": 1, + "SHEBANG#!#! ": 4, + "SHEBANG#!#! This": 4, + "SHEBANG#!#! Directory()": 1, + "SHEBANG#!#! (i.e.": 1, + "SHEBANG#!#! Default": 1, + "SHEBANG#!#! for": 1, + "SHEBANG#!#! The": 3, + "SHEBANG#!#! record.": 3, + "SHEBANG#!#! equivalent": 3, + "SHEBANG#!#! enabled.": 3, + "SHEBANG#!#! package's": 1, + "SHEBANG#!#! In": 3, + "SHEBANG#!K>),": 3, + "SHEBANG#!#! If": 3, + "####": 34, + "TODO": 3, + "mention": 1, + "merging": 1, + "with": 24, + "PackageInfo.AutoDoc": 1, + "SHEBANG#!#! ": 3, + "SHEBANG#!#! ": 13, + "SHEBANG#!#! A": 6, + "SHEBANG#!#! If": 2, + "SHEBANG#!#! your": 1, + "SHEBANG#!#! you": 1, + "SHEBANG#!#! to": 4, + "SHEBANG#!#! is": 1, + "SHEBANG#!#! of": 2, + "SHEBANG#!#! This": 3, + "SHEBANG#!#! i.e.": 1, + "SHEBANG#!#! The": 2, + "SHEBANG#!#! then": 1, + "The": 21, + "param": 1, + "is": 72, + "a": 113, + "bit": 2, + "strange.": 1, + "We": 4, + "should": 2, + "probably": 2, + "change": 1, + "it": 8, + "to": 37, + "be": 24, + "more": 3, + "general": 1, + "as": 23, + "one": 11, + "might": 1, + "want": 1, + "define": 2, + "other": 4, + "entities...": 1, + "For": 10, + "now": 1, + "we": 3, + "do": 18, + "not": 49, + "document": 1, + "leave": 1, + "us": 1, + "the": 136, + "choice": 1, + "revising": 1, + "how": 1, + "works.": 1, + "": 2, + "": 117, + "entities": 2, + "": 117, + "": 2, + "": 2, + "A": 9, + "list": 16, + "names": 1, + "or": 13, + "which": 8, + "are": 14, + "used": 10, + "corresponding": 1, + "XML": 4, + "entities.": 1, + "example": 3, + "if": 103, + "set": 6, + "containing": 1, + "string": 6, + "": 2, + "SomePackage": 3, + "": 2, + "then": 128, + "following": 4, + "added": 1, + "preamble": 1, + "": 2, + "<": 17, + "[": 145, + "CDATA": 2, + "ENTITY": 2, + "]": 169, + "": 2, + "This": 10, + "allows": 1, + "you": 3, + "write": 3, + "&": 37, + "amp": 1, + ";": 569, + "in": 64, + "your": 1, + "documentation": 2, + "reference": 1, + "that": 39, + "package.": 2, + "If": 11, + "another": 1, + "type": 2, + "entity": 1, + "desired": 1, + "can": 12, + "simply": 2, + "add": 2, + "instead": 1, + "two": 13, + "entry": 2, + "list.": 2, + "It": 1, + "will": 5, + "handled": 3, + "so": 3, + "please": 1, + "careful.": 1, + "": 2, + "SHEBANG#!#! for": 1, + "SHEBANG#!#! statement": 1, + "SHEBANG#!#! components": 2, + "SHEBANG#!#! example,": 1, + "SHEBANG#!#! acknowledgements": 1, + "SHEBANG#!#! ": 6, + "SHEBANG#!#! by": 1, + "SHEBANG#!#! package": 1, + "SHEBANG#!#! Usually": 2, + "SHEBANG#!#! are": 2, + "SHEBANG#!#! Default": 3, + "SHEBANG#!#! When": 1, + "SHEBANG#!#! they": 1, + "Document": 1, + "section_intros": 2, + "later": 1, + "on.": 1, + "However": 2, + "note": 2, + "thanks": 1, + "new": 2, + "comment": 1, + "syntax": 1, + "only": 5, + "remaining": 1, + "use": 5, + "for": 53, + "this": 15, + "seems": 1, + "ability": 1, + "specify": 3, + "order": 1, + "chapters": 1, + "and": 102, + "sections.": 1, + "TODO.": 1, + "SHEBANG#!#! files": 1, + "Note": 3, + "strictly": 1, + "speaking": 1, + "also": 3, + "scaffold.": 1, + "uses": 2, + "scaffolding": 2, + "mechanism": 4, + "really": 4, + "necessary": 2, + "custom": 1, + "name": 2, + "main": 1, + "file.": 3, + "Thus": 3, + "purpose": 1, + "parameter": 1, + "cater": 1, + "packages": 5, + "have": 3, + "existing": 1, + "using": 2, + "different": 2, + "wish": 1, + "scaffolding.": 1, + "explain": 1, + "why": 2, + "allow": 1, + "specifying": 1, + "gapdoc.main.": 1, + "code": 1, + "still": 1, + "honor": 1, + "though": 1, + "just": 1, + "case.": 1, + "SHEBANG#!#! In": 1, + "maketest": 12, + "part.": 1, + "Still": 1, + "under": 1, + "construction.": 1, + "SHEBANG#!#! ": 1, + "SHEBANG#!#! The": 1, + "SHEBANG#!#! a": 1, + "SHEBANG#!#! which": 1, + "SHEBANG#!#! the": 1, + "SHEBANG#!#! ": 1, + "SHEBANG#!#! ": 2, + "SHEBANG#!#! Sets": 1, + "SHEBANG#!#! A": 1, + "SHEBANG#!#! will": 1, + "SHEBANG#!#! @Returns": 1, + "SHEBANG#!#! @Arguments": 1, + "SHEBANG#!#! @ChapterInfo": 1, + "DeclareGlobalFunction": 5, + "(": 721, + ")": 722, + "Magic.gi": 1, + "BindGlobal": 7, + "function": 37, + "str": 8, + "suffix": 3, + "local": 16, + "n": 31, + "m": 8, + "Length": 14, + "return": 41, + "{": 21, + "-": 67, + "+": 9, + "}": 21, + "end": 34, + "i": 25, + "while": 5, + "od": 15, + "fi": 91, + "d": 16, + "tmp": 20, + "IsDirectoryPath": 1, + "CreateDir": 2, + "currently": 1, + "undocumented": 1, + "fail": 18, + "Error": 7, + "LastSystemError": 1, + ".message": 1, + "false": 7, + "true": 21, + "pkg": 32, + "subdirs": 2, + "extensions": 1, + "d_rel": 6, + "files": 4, + "result": 9, + "DirectoriesPackageLibrary": 2, + "IsEmpty": 6, + "continue": 3, + "Directory": 5, + "DirectoryContents": 1, + "Sort": 1, + "AUTODOC_GetSuffix": 2, + "IsReadableFile": 2, + "Filename": 8, + "Add": 4, + "Make": 1, + "callable": 1, + "package_name": 1, + "AutoDocWorksheet.": 1, + "Which": 1, + "create": 1, + "worksheet": 1, + "InstallGlobalFunction": 5, + "arg": 16, + "package_info": 3, + "opt": 3, + "scaffold": 12, + "gapdoc": 7, + "autodoc": 8, + "pkg_dir": 5, + "doc_dir": 18, + "doc_dir_rel": 3, + "title_page": 7, + "tree": 8, + "is_worksheet": 13, + "position_document_class": 7, + "gapdoc_latex_option_record": 4, + "LowercaseString": 3, + "rec": 20, + "DirectoryCurrent": 1, + "else": 25, + "PackageInfo": 1, + "key": 3, + "val": 4, + "ValueOption": 1, + "opt.": 1, + "IsBound": 39, + "opt.dir": 4, + "elif": 21, + "IsString": 7, + "IsDirectory": 1, + "AUTODOC_CreateDirIfMissing": 1, + "Print": 24, + "opt.scaffold": 5, + "package_info.AutoDoc": 3, + "IsRecord": 7, + "IsBool": 4, + "AUTODOC_APPEND_RECORD_WRITEONCE": 3, + "AUTODOC_WriteOnce": 10, + "opt.autodoc": 5, + "Concatenation": 15, + "package_info.Dependencies.NeededOtherPackages": 1, + "package_info.Dependencies.SuggestedOtherPackages": 1, + "ForAny": 1, + "x": 14, + "autodoc.files": 7, + "autodoc.scan_dirs": 5, + "autodoc.level": 3, + "PushOptions": 1, + "level_value": 1, + "Append": 2, + "AUTODOC_FindMatchingFiles": 2, + "opt.gapdoc": 5, + "opt.maketest": 4, + "gapdoc.main": 8, + "package_info.PackageDoc": 3, + ".BookName": 2, + "gapdoc.bookname": 4, + "#Print": 1, + "gapdoc.files": 9, + "gapdoc.scan_dirs": 3, + "Set": 1, + "Number": 1, + "ListWithIdenticalEntries": 1, + "List": 6, + "f": 11, + "DocumentationTree": 1, + "autodoc.section_intros": 2, + "AUTODOC_PROCESS_INTRO_STRINGS": 1, + "Tree": 2, + "AutoDocScanFiles": 1, + "PackageName": 2, + "scaffold.TitlePage": 4, + "scaffold.TitlePage.Title": 2, + ".TitlePage.Title": 2, + "Position": 2, + "Remove": 2, + "JoinStringsWithSeparator": 1, + "ReplacedString": 2, + "Syntax": 1, + "scaffold.document_class": 7, + "PositionSublist": 5, + "GAPDoc2LaTeXProcs.Head": 14, + "..": 6, + "scaffold.latex_header_file": 2, + "StringFile": 2, + "scaffold.gapdoc_latex_options": 4, + "RecNames": 1, + "scaffold.gapdoc_latex_options.": 5, + "IsList": 1, + "scaffold.includes": 4, + "scaffold.bib": 7, + "Unbind": 1, + "scaffold.main_xml_file": 2, + ".TitlePage": 1, + "ExtractTitleInfoFromPackageInfo": 1, + "CreateTitlePage": 1, + "scaffold.MainPage": 2, + "scaffold.dir": 1, + "scaffold.book_name": 1, + "CreateMainPage": 1, + "WriteDocumentation": 1, + "SetGapDocLaTeXOptions": 1, + "MakeGAPDocDoc": 1, + "CopyHTMLStyleFiles": 1, + "GAPDocManualLab": 1, + "maketest.folder": 3, + "maketest.scan_dir": 3, + "CreateMakeTest": 1, + "#W": 4, + "example.gd": 2, + "file": 7, + "contains": 7, + "sample": 2, + "GAP": 15, + "implementation": 1, + "#M": 20, + "SomeOperation": 1, + "": 2, + "performs": 1, + "some": 2, + "operation": 1, + "on": 5, + "InstallMethod": 18, + "SomeProperty": 1, + "IsLeftModule": 6, + "M": 7, + "IsFreeLeftModule": 3, + "IsTrivial": 1, + "TryNextMethod": 7, + "#F": 17, + "SomeGlobalFunction": 2, + "global": 1, + "variadic": 1, + "funfion.": 1, + "*": 12, + "SomeFunc": 1, + "y": 8, + "z": 3, + "func": 3, + "j": 3, + "mod": 2, + "repeat": 1, + "until": 1, + "declaration": 1, + "DeclareProperty": 2, + "#C": 7, + "IsQuuxFrobnicator": 1, + "": 3, + "": 28, + "": 7, + "Name=": 33, + "Arg=": 33, + "Type=": 7, + "": 28, + "Tests": 1, + "whether": 5, + "R": 5, + "quux": 1, + "frobnicator.": 1, + "": 28, + "": 28, + "DeclareSynonym": 17, + "IsField": 1, + "IsGroup": 1, + "PackageInfo.g": 2, + "cvec": 1, + "s": 4, + "template": 1, + "SetPackageInfo": 1, + "Subtitle": 1, + "Version": 1, + "Date": 1, + "dd/mm/yyyy": 1, + "format": 2, + "Information": 1, + "about": 3, + "authors": 1, + "maintainers.": 1, + "Persons": 1, + "LastName": 1, + "FirstNames": 1, + "IsAuthor": 1, + "IsMaintainer": 1, + "Email": 1, + "WWWHome": 1, + "PostalAddress": 1, + "Place": 1, + "Institution": 1, + "Status": 2, + "information.": 1, + "Currently": 1, + "cases": 2, + "recognized": 1, + "successfully": 2, + "refereed": 2, + "developers": 1, + "agreed": 1, + "distribute": 1, + "them": 1, + "core": 1, + "system": 1, + "development": 1, + "versions": 1, + "all": 18, + "You": 1, + "must": 6, + "provide": 2, + "next": 6, + "entries": 8, + "status": 1, + "because": 2, + "was": 1, + "#CommunicatedBy": 1, + "#AcceptDate": 1, + "PackageWWWHome": 1, + "README_URL": 1, + ".PackageWWWHome": 2, + "PackageInfoURL": 1, + "ArchiveURL": 1, + ".Version": 2, + "ArchiveFormats": 1, + "Here": 2, + "short": 1, + "abstract": 1, + "explaining": 1, + "content": 1, + "HTML": 1, + "overview": 1, + "Web": 1, + "page": 1, + "an": 17, + "URL": 1, + "Webpage": 1, + "detailed": 1, + "information": 1, + "than": 1, + "few": 1, + "lines": 1, + "less": 1, + "ok": 1, + "Please": 1, + "specifing": 1, + "names.": 1, + "AbstractHTML": 1, + "PackageDoc": 1, + "BookName": 1, + "ArchiveURLSubset": 1, + "HTMLStart": 1, + "PDFFile": 1, + "SixFile": 1, + "LongTitle": 1, + "Dependencies": 1, + "NeededOtherPackages": 1, + "SuggestedOtherPackages": 1, + "ExternalConditions": 1, + "AvailabilityTest": 1, + "SHOW_STAT": 1, + "DirectoriesPackagePrograms": 1, + "#Info": 1, + "InfoWarning": 1, + "*Optional*": 2, + "but": 1, + "recommended": 1, + "path": 1, + "relative": 1, + "root": 1, + "many": 1, + "tests": 1, + "functionality": 1, + "sensible.": 1, + "#TestFile": 1, + "keyword": 1, + "related": 1, + "topic": 1, + "Keywords": 1, + "vspc.gd": 1, + "library": 2, + "Thomas": 2, + "Breuer": 2, + "#Y": 6, + "C": 11, + "Lehrstuhl": 2, + "D": 36, + "r": 2, + "Mathematik": 2, + "RWTH": 2, + "Aachen": 2, + "Germany": 2, + "School": 2, + "Math": 2, + "Comp.": 2, + "Sci.": 2, + "St": 2, + "Andrews": 2, + "Scotland": 2, + "Group": 3, + "declares": 1, + "operations": 2, + "vector": 67, + "spaces.": 4, + "bases": 5, + "free": 3, + "left": 15, + "modules": 1, + "found": 1, + "": 10, + "lib/basis.gd": 1, + ".": 257, + "IsLeftOperatorRing": 1, + "IsLeftOperatorAdditiveGroup": 2, + "IsRing": 1, + "IsAssociativeLOpDProd": 2, + "#T": 6, + "IsLeftOperatorRingWithOne": 2, + "IsRingWithOne": 1, + "IsLeftVectorSpace": 3, + "": 38, + "IsVectorSpace": 26, + "<#GAPDoc>": 17, + "Label=": 19, + "": 12, + "space": 74, + "": 12, + "module": 2, + "see": 30, + "nbsp": 30, + "": 71, + "Func=": 40, + "over": 24, + "division": 15, + "ring": 14, + "Chapter": 3, + "Chap=": 3, + "

    ": 23, + "Whenever": 1, + "talk": 1, + "": 42, + "F": 61, + "": 41, + "V": 152, + "additive": 1, + "group": 2, + "acts": 1, + "via": 6, + "multiplication": 1, + "from": 5, + "such": 4, + "action": 4, + "addition": 1, + "right": 2, + "distributive.": 1, + "accessed": 1, + "value": 9, + "attribute": 2, + "Vector": 1, + "spaces": 15, + "always": 1, + "Filt=": 4, + "synonyms.": 1, + "<#/GAPDoc>": 17, + "IsLeftActedOnByDivisionRing": 4, + "InstallTrueMethod": 4, + "IsGaussianSpace": 10, + "": 14, + "filter": 3, + "Sect=": 6, + "row": 17, + "matrix": 5, + "field": 12, + "say": 1, + "indicates": 3, + "vectors": 16, + "matrices": 5, + "respectively": 1, + "contained": 4, + "In": 3, + "case": 2, + "called": 1, + "Gaussian": 19, + "space.": 5, + "Bases": 1, + "computed": 2, + "elimination": 5, + "given": 4, + "generators.": 1, + "": 12, + "": 12, + "gap": 41, + "mats": 5, + "VectorSpace": 13, + "Rationals": 13, + "E": 2, + "element": 2, + "extension": 3, + "Field": 1, + "": 12, + "DeclareFilter": 1, + "IsFullMatrixModule": 1, + "IsFullRowModule": 1, + "IsDivisionRing": 5, + "": 12, + "nontrivial": 1, + "associative": 1, + "algebra": 2, + "multiplicative": 1, + "inverse": 1, + "each": 2, + "nonzero": 3, + "element.": 1, + "every": 1, + "possibly": 1, + "itself": 1, + "being": 2, + "thus": 1, + "property": 2, + "get": 1, + "usually": 1, + "represented": 1, + "coefficients": 3, + "stored": 1, + "DeclareSynonymAttr": 4, + "IsMagmaWithInversesIfNonzero": 1, + "IsNonTrivial": 1, + "IsAssociative": 1, + "IsEuclideanRing": 1, + "#A": 7, + "GeneratorsOfLeftVectorSpace": 1, + "GeneratorsOfVectorSpace": 2, + "": 7, + "Attr=": 10, + "returns": 14, + "generate": 1, + "FullRowSpace": 5, + "GeneratorsOfLeftOperatorAdditiveGroup": 2, + "CanonicalBasis": 3, + "supports": 1, + "canonical": 6, + "basis": 14, + "otherwise": 2, + "": 3, + "": 3, + "returned.": 4, + "defining": 1, + "its": 2, + "uniquely": 1, + "determined": 1, + "by": 14, + "exist": 1, + "same": 6, + "acting": 8, + "domain": 17, + "equality": 1, + "these": 5, + "decided": 1, + "comparing": 1, + "bases.": 1, + "exact": 1, + "meaning": 1, + "depends": 1, + "Canonical": 1, + "defined": 3, + "designs": 1, + "kind": 1, + "defines": 1, + "method": 4, + "installs": 1, + "call": 1, + "On": 1, + "hand": 1, + "install": 1, + "calls": 1, + "": 10, + "CANONICAL_BASIS_FLAGS": 1, + "": 9, + "vecs": 4, + "B": 16, + "": 8, + "3": 5, + "generators": 16, + "BasisVectors": 4, + "DeclareAttribute": 4, + "IsRowSpace": 2, + "consists": 7, + "IsRowModule": 1, + "IsGaussianRowSpace": 1, + "scalars": 2, + "occur": 2, + "vectors.": 2, + "calculations.": 2, + "Otherwise": 3, + "non": 4, + "Gaussian.": 2, + "need": 3, + "flag": 2, + "down": 2, + "methods": 4, + "delegate": 2, + "ones.": 2, + "IsNonGaussianRowSpace": 1, + "expresses": 2, + "cannot": 2, + "compute": 3, + "nice": 4, + "way.": 2, + "Let": 4, + "K": 4, + "spanned": 4, + "Then": 1, + "/": 12, + "cap": 1, + "v": 5, + "replacing": 1, + "forming": 1, + "concatenation.": 1, + "So": 2, + "associated": 3, + "DeclareHandlingByNiceBasis": 2, + "IsMatrixSpace": 2, + "IsMatrixModule": 1, + "IsGaussianMatrixSpace": 1, + "IsNonGaussianMatrixSpace": 1, + "irrelevant": 1, + "concatenation": 1, + "rows": 1, + "necessarily": 1, + "NormedRowVectors": 2, + "normed": 1, + "finite": 5, + "those": 1, + "first": 1, + "component.": 1, + "yields": 1, + "natural": 1, + "dimensional": 5, + "subspaces": 17, + "GF": 22, + "*Z": 5, + "Z": 6, + "Action": 1, + "GL": 1, + "OnLines": 1, + "TrivialSubspace": 2, + "subspace": 7, + "zero": 4, + "triv": 2, + "0": 2, + "AsSet": 1, + "TrivialSubmodule": 1, + "": 5, + "": 2, + "collection": 3, + "gens": 16, + "elements": 7, + "optional": 3, + "argument": 1, + "empty.": 1, + "known": 5, + "linearly": 3, + "independent": 3, + "particular": 1, + "dimension": 9, + "immediately": 2, + "formed": 1, + "argument.": 1, + "2": 1, + "Subspace": 4, + "generated": 1, + "SubspaceNC": 2, + "subset": 4, + "empty": 1, + "trivial": 1, + "parent": 3, + "returned": 3, + "does": 1, + "except": 1, + "omits": 1, + "check": 5, + "both": 2, + "W": 32, + "1": 3, + "Submodule": 1, + "SubmoduleNC": 1, + "#O": 2, + "AsVectorSpace": 4, + "view": 4, + "": 2, + "domain.": 1, + "form": 2, + "Oper=": 6, + "smaller": 1, + "larger": 1, + "ring.": 3, + "Dimension": 6, + "LeftActingDomain": 29, + "9": 1, + "AsLeftModule": 6, + "AsSubspace": 5, + "": 6, + "U": 12, + "collection.": 1, + "/2": 4, + "Parent": 4, + "DeclareOperation": 2, + "IsCollection": 3, + "Intersection2Spaces": 4, + "": 2, + "": 2, + "": 2, + "takes": 1, + "arguments": 1, + "intersection": 5, + "domains": 3, + "let": 1, + "their": 1, + "intersection.": 1, + "AsStruct": 2, + "equal": 1, + "either": 2, + "Substruct": 1, + "common": 1, + "Struct": 1, + "basis.": 1, + "handle": 1, + "intersections": 1, + "algebras": 2, + "ideals": 2, + "sided": 1, + "ideals.": 1, + "": 2, + "": 2, + "nonnegative": 2, + "integer": 2, + "length": 1, + "An": 2, + "alternative": 2, + "construct": 2, + "above": 2, + "FullRowModule": 2, + "FullMatrixSpace": 2, + "": 1, + "positive": 1, + "integers": 1, + "fact": 1, + "FullMatrixModule": 3, + "IsSubspacesVectorSpace": 9, + "fixed": 1, + "lies": 1, + "category": 1, + "Subspaces": 8, + "Size": 5, + "iter": 17, + "Iterator": 5, + "NextIterator": 5, + "DeclareCategory": 1, + "IsDomain": 1, + "IsFinite": 4, + "Returns": 1, + "": 1, + "Called": 2, + "k": 17, + "Special": 1, + "provided": 1, + "domains.": 1, + "IsInt": 3, + "IsSubspace": 3, + "OrthogonalSpaceInFullRowSpace": 1, + "complement": 1, + "full": 2, + "#P": 1, + "IsVectorSpaceHomomorphism": 3, + "": 2, + "": 1, + "mapping": 2, + "homomorphism": 1, + "linear": 1, + "source": 2, + "range": 1, + "b": 8, + "hold": 1, + "IsGeneralMapping": 2, + "#E": 2, + "vspc.gi": 1, + "generic": 1, + "SetLeftActingDomain": 2, + "": 2, + "external": 1, + "knows": 1, + "e.g.": 1, + "tell": 1, + "InstallOtherMethod": 3, + "IsAttributeStoringRep": 2, + "IsLeftActedOnByRing": 2, + "IsObject": 1, + "extL": 2, + "HasIsDivisionRing": 1, + "SetIsLeftActedOnByDivisionRing": 1, + "IsExtLSet": 1, + "IsIdenticalObj": 5, + "difference": 1, + "between": 1, + "shall": 1, + "CallFuncList": 1, + "FreeLeftModule": 1, + "newC": 7, + "IsSubset": 4, + "SetParent": 1, + "UseIsomorphismRelation": 2, + "UseSubsetRelation": 4, + "View": 1, + "base": 5, + "gen": 5, + "loop": 2, + "newgens": 4, + "extended": 1, + "Characteristic": 2, + "Basis": 5, + "AsField": 2, + "GeneratorsOfLeftModule": 9, + "LeftModuleByGenerators": 5, + "Zero": 5, + "Intersection": 1, + "ViewObj": 4, + "print": 1, + "no.": 1, + "HasGeneratorsOfLeftModule": 2, + "HasDimension": 1, + "override": 1, + "PrintObj": 5, + "HasZero": 1, + "": 2, + "factor": 2, + "": 1, + "ImagesSource": 1, + "NaturalHomomorphismBySubspace": 1, + "AsStructure": 3, + "Substructure": 3, + "Structure": 2, + "inters": 17, + "gensV": 7, + "gensW": 7, + "VW": 3, + "sum": 1, + "Intersection2": 4, + "IsFiniteDimensional": 2, + "Coefficients": 3, + "SumIntersectionMat": 1, + "LinearCombination": 2, + "HasParent": 2, + "SetIsTrivial": 1, + "ClosureLeftModule": 2, + "": 1, + "closure": 1, + "IsCollsElms": 1, + "HasBasis": 1, + "IsVector": 1, + "w": 3, + "easily": 1, + "UseBasis": 1, + "Methods": 1, + "collections": 1, + "#R": 1, + "IsSubspacesVectorSpaceDefaultRep": 7, + "representation": 1, + "components": 1, + "means": 1, + "DeclareRepresentation": 1, + "IsComponentObjectRep": 1, + ".dimension": 9, + ".structure": 9, + "number": 2, + "q": 20, + "prod_": 2, + "frac": 3, + "recursion": 1, + "sum_": 1, + "size": 12, + "qn": 10, + "qd": 10, + "ank": 6, + "Int": 1, + "Enumerator": 2, + "Use": 1, + "iterator": 3, + "allowed": 1, + "elms": 4, + "IsDoneIterator": 3, + ".associatedIterator": 3, + ".basis": 2, + "structure": 4, + "associatedIterator": 2, + "ShallowCopy": 2, + "IteratorByFunctions": 1, + "IsDoneIterator_Subspaces": 1, + "NextIterator_Subspaces": 1, + "ShallowCopy_Subspaces": 1, + "": 1, + "dim": 2, + "Objectify": 2, + "NewType": 2, + "CollectionsFamily": 2, + "FamilyObj": 2, + "map": 4, + "S": 4, + "Source": 1, + "Range": 1, + "IsLinearMapping": 1 + }, + "XQuery": { + "(": 38, + "-": 486, + "xproc.xqm": 1, + "core": 1, + "xqm": 1, + "contains": 1, + "entry": 2, + "points": 1, + "primary": 1, + "eval": 3, + "step": 5, + "function": 3, + "and": 3, + "control": 1, + "functions.": 1, + ")": 38, + "xquery": 1, + "version": 1, + "encoding": 1, + ";": 25, + "module": 6, + "namespace": 8, + "xproc": 17, + "declare": 24, + "namespaces": 5, + "p": 2, + "c": 1, + "err": 1, + "imports": 1, + "import": 4, + "util": 1, + "at": 4, + "const": 1, + "parse": 8, + "u": 2, + "options": 2, + "boundary": 1, + "space": 1, + "preserve": 1, + "option": 1, + "saxon": 1, + "output": 1, + "functions": 1, + "variable": 13, + "run": 2, + "run#6": 1, + "choose": 1, + "try": 1, + "catch": 1, + "group": 1, + "for": 1, + "each": 1, + "viewport": 1, + "library": 1, + "pipeline": 8, + "list": 1, + "all": 1, + "declared": 1, + "enum": 3, + "{": 5, + "": 1, + "name=": 1, + "ns": 1, + "": 1, + "}": 5, + "": 1, + "": 1, + "point": 1, + "stdin": 1, + "dflag": 1, + "tflag": 1, + "bindings": 2, + "STEP": 3, + "I": 1, + "preprocess": 1, + "let": 6, + "validate": 1, + "explicit": 3, + "AST": 2, + "name": 1, + "type": 1, + "ast": 1, + "element": 1, + "parse/@*": 1, + "sort": 1, + "parse/*": 1, + "II": 1, + "eval_result": 1, + "III": 1, + "serialize": 1, + "return": 2, + "results": 1, + "serialized_result": 2 + }, + "Max": { + "{": 126, + "}": 126, + "[": 163, + "]": 163, + "max": 1, + "v2": 1, + ";": 39, + "#N": 2, + "vpatcher": 1, + "#P": 33, + "toggle": 1, + "button": 4, + "window": 2, + "setfont": 1, + "Verdana": 1, + "linecount": 1, + "newex": 8, + "r": 1, + "jojo": 2, + "#B": 2, + "color": 2, + "s": 1, + "route": 1, + "append": 1, + "toto": 1, + "%": 1, + "counter": 2, + "#X": 1, + "flags": 1, + "newobj": 1, + "metro": 1, + "t": 2, + "message": 2, + "Goodbye": 1, + "World": 2, + "Hello": 1, + "connect": 13, + "fasten": 1, + "pop": 1 + }, + "PogoScript": { + "httpism": 1, + "require": 3, + "async": 1, + "resolve": 2, + ".resolve": 1, + "exports.squash": 1, + "(": 38, + "url": 5, + ")": 38, + "html": 15, + "httpism.get": 2, + ".body": 2, + "squash": 2, + "callback": 2, + "replacements": 6, + "sort": 2, + "links": 2, + "in": 11, + ".concat": 1, + "scripts": 2, + "for": 2, + "each": 2, + "@": 6, + "r": 1, + "{": 3, + "r.url": 1, + "r.href": 1, + "}": 3, + "async.map": 1, + "get": 2, + "err": 2, + "requested": 2, + "replace": 2, + "replacements.sort": 1, + "a": 1, + "b": 1, + "a.index": 1, + "-": 1, + "b.index": 1, + "replacement": 2, + "replacement.body": 1, + "replacement.url": 1, + "i": 3, + "parts": 3, + "rep": 1, + "rep.index": 1, + "+": 2, + "rep.length": 1, + "html.substr": 1, + "link": 2, + "reg": 5, + "r/": 2, + "": 1, + "]": 7, + "*href": 1, + "[": 5, + "*": 2, + "/": 2, + "|": 2, + "s*": 2, + "<\\/link\\>": 1, + "/gi": 2, + "elements": 5, + "matching": 3, + "as": 3, + "script": 2, + "": 1, + "*src": 1, + "<\\/script\\>": 1, + "tag": 3, + "while": 1, + "m": 1, + "reg.exec": 1, + "elements.push": 1, + "index": 1, + "m.index": 1, + "length": 1, + "m.0.length": 1, + "href": 1, + "m.1": 1 + }, + "SAS": { + "proc": 2, + "surveyselect": 1, + "data": 6, + "work.data": 1, + "out": 2, + "work.boot": 2, + "method": 1, + "urs": 1, + "reps": 1, + "seed": 2, + "sampsize": 1, + "outhits": 1, + ";": 22, + "samplingunit": 1, + "Site": 1, + "run": 6, + "PROC": 1, + "MI": 1, + "work.bootmi": 2, + "nimpute": 1, + "round": 1, + "By": 2, + "Replicate": 2, + "VAR": 1, + "Variable1": 2, + "Variable2": 2, + "logistic": 1, + "descending": 1, + "_Imputation_": 1, + "model": 1, + "Outcome": 1, + "/": 1, + "risklimits": 1, + "libname": 1, + "source": 1, + "work.working_copy": 5, + "set": 3, + "source.original_file.sas7bdat": 1, + "if": 2, + "Purge": 1, + "then": 2, + "delete": 1, + "ImportantVariable": 1, + ".": 1, + "MissingFlag": 1 + }, + "MediaWiki": { + "Overview": 1, + "The": 17, + "GDB": 15, + "Tracepoint": 4, + "Analysis": 1, + "feature": 3, + "is": 9, + "an": 3, + "extension": 1, + "to": 12, + "the": 72, + "Tracing": 3, + "and": 20, + "Monitoring": 1, + "Framework": 1, + "that": 4, + "allows": 2, + "visualization": 1, + "analysis": 1, + "of": 8, + "C/C": 10, + "+": 20, + "tracepoint": 5, + "data": 5, + "collected": 2, + "by": 10, + "stored": 1, + "a": 12, + "log": 1, + "file.": 1, "Getting": 1, "Started": 1, - "

    ": 3, - "gives": 2, - "a": 3, - "powerful": 1, - "patterns": 1, - "-": 3, - "based": 1, - "way": 1, - "build": 1, - "dynamic": 1, - "websites": 1, - "that": 5, - "enables": 1, - "clean": 1, - "separation": 1, - "of": 2, - "concerns": 1, - "full": 1, - "control": 1, - "over": 1, - "markup": 1, - "for": 4, - "enjoyable": 1, - "agile": 1, - "development.": 1, - "includes": 1, - "many": 1, - "enable": 1, - "fast": 1, - "TDD": 1, - "friendly": 1, - "development": 1, - "creating": 1, - "sophisticated": 1, - "applications": 1, - "use": 1, - "latest": 1, - "web": 2, - "standards.": 1, - "Learn": 3, - "
  2. ": 3, - "Add": 1, - "NuGet": 2, - "packages": 1, - "jump": 1, - "start": 1, - "your": 2, - "coding": 1, - "makes": 1, - "it": 2, - "easy": 1, - "install": 1, - "update": 1, - "free": 1, - "libraries": 1, - "tools.": 1, - "Find": 1, - "Web": 1, - "Hosting": 1, - "You": 1, - "can": 1, - "easily": 1, - "find": 1, - "hosting": 1, - "company": 1, - "offers": 1, - "right": 1, - "mix": 1, - "price": 1, - "applications.": 1, - "
": 1, - "using": 5, - "System": 1, - "System.Collections.Generic": 1, - "System.Linq": 1, - "System.Text": 1, - "System.Threading.Tasks": 1, - "namespace": 1, - "LittleSampleApp": 1, - "///": 4, - "": 1, - "Just": 1, - "what": 1, - "says": 1, - "on": 1, - "tin.": 1, - "A": 1, - "little": 1, - "sample": 1, - "application": 1, - "Linguist": 1, - "try": 1, - "out.": 1, - "": 1, - "class": 1, - "Program": 1, - "static": 1, - "void": 1, - "Main": 1, - "(": 3, - "string": 1, - "[": 1, - "]": 1, - "args": 1, - ")": 3, - "Console.WriteLine": 2 - }, - "C++": { - "class": 40, - "Bar": 2, - "{": 726, - "protected": 4, - "char": 127, - "*name": 6, - ";": 2783, - "public": 33, - "void": 241, - "hello": 2, - "(": 3102, - ")": 3105, - "}": 726, - "//": 315, - "///": 843, - "mainpage": 1, - "C": 6, - "library": 14, - "for": 105, - "Broadcom": 3, - "BCM": 14, - "as": 28, - "used": 17, - "in": 165, - "Raspberry": 6, - "Pi": 5, - "This": 19, - "is": 102, - "a": 157, - "RPi": 17, - ".": 16, - "It": 7, - "provides": 3, - "access": 17, - "to": 254, - "GPIO": 87, - "and": 118, - "other": 17, - "IO": 2, - "functions": 19, - "on": 55, - "the": 541, - "chip": 9, - "allowing": 3, - "pins": 40, - "pin": 90, - "IDE": 4, - "plug": 3, - "board": 2, - "so": 2, - "you": 29, - "can": 21, - "control": 17, - "interface": 9, - "with": 33, - "various": 4, - "external": 3, - "devices.": 1, - "reading": 3, - "digital": 2, - "inputs": 2, - "setting": 2, - "outputs": 1, - "using": 11, - "SPI": 44, - "I2C": 29, - "accessing": 2, - "system": 13, - "timers.": 1, - "Pin": 65, - "event": 3, - "detection": 2, - "supported": 3, - "by": 53, - "polling": 1, - "interrupts": 1, - "are": 36, - "not": 29, - "+": 80, - "compatible": 1, - "installs": 1, - "header": 7, - "file": 31, - "non": 2, - "-": 438, - "shared": 2, - "any": 23, - "Linux": 2, - "based": 4, - "distro": 1, - "but": 5, - "clearly": 1, - "no": 7, - "use": 37, - "except": 2, - "or": 44, - "another": 1, - "The": 50, - "version": 38, - "of": 215, - "package": 1, - "that": 36, - "this": 57, - "documentation": 3, - "refers": 1, - "be": 35, - "downloaded": 1, - "from": 91, - "http": 11, - "//www.airspayce.com/mikem/bcm2835/bcm2835": 1, - "tar.gz": 1, - "You": 9, - "find": 2, - "latest": 2, - "at": 20, - "//www.airspayce.com/mikem/bcm2835": 1, - "Several": 1, - "example": 3, - "programs": 4, - "provided.": 1, - "Based": 1, - "data": 26, - "//elinux.org/RPi_Low": 1, - "level_peripherals": 1, - "//www.raspberrypi.org/wp": 1, - "content/uploads/2012/02/BCM2835": 1, - "ARM": 5, - "Peripherals.pdf": 1, - "//www.scribd.com/doc/101830961/GPIO": 2, - "Pads": 3, - "Control2": 2, - "also": 3, - "online": 1, - "help": 1, - "discussion": 1, - "//groups.google.com/group/bcm2835": 1, - "Please": 4, - "group": 23, - "all": 11, - "questions": 1, - "discussions": 1, - "topic.": 1, - "Do": 1, - "contact": 1, - "author": 3, - "directly": 2, - "unless": 1, - "it": 19, - "discuss": 1, - "commercial": 1, - "licensing.": 1, - "Tested": 1, - "debian6": 1, - "wheezy": 3, - "raspbian": 3, - "Occidentalisv01": 2, - "CAUTION": 1, - "has": 29, - "been": 14, - "observed": 1, - "when": 22, - "detect": 3, - "enables": 3, - "such": 4, - "bcm2835_gpio_len": 5, - "pulled": 1, - "LOW": 8, - "cause": 1, - "temporary": 1, - "hangs": 1, - "Occidentalisv01.": 1, - "Reason": 1, - "yet": 1, - "determined": 1, - "suspect": 1, - "an": 23, - "interrupt": 3, - "handler": 1, - "hitting": 1, - "hard": 1, - "loop": 2, - "those": 3, - "OSs.": 1, - "If": 11, - "must": 6, - "friends": 2, - "make": 6, - "sure": 6, - "disable": 2, - "bcm2835_gpio_cler_len": 1, - "after": 18, - "use.": 1, - "par": 9, - "Installation": 1, - "consists": 1, - "single": 2, - "which": 14, - "will": 15, - "installed": 1, - "usual": 3, - "places": 1, - "install": 3, - "code": 12, - "#": 1, - "download": 2, - "say": 1, - "bcm2835": 7, - "xx.tar.gz": 2, - "then": 15, - "tar": 1, - "zxvf": 1, - "cd": 1, - "xx": 2, - "./configure": 1, - "sudo": 2, - "check": 4, - "endcode": 2, - "Physical": 21, - "Addresses": 6, - "bcm2835_peri_read": 3, - "bcm2835_peri_write": 3, - "bcm2835_peri_set_bits": 2, - "low": 5, - "level": 10, - "peripheral": 14, - "register": 17, - "functions.": 4, - "They": 1, - "designed": 3, - "physical": 4, - "addresses": 4, - "described": 1, - "section": 6, - "BCM2835": 2, - "Peripherals": 1, - "manual.": 1, - "range": 3, - "FFFFFF": 1, - "peripherals.": 1, - "bus": 4, - "peripherals": 2, - "set": 18, - "up": 18, - "map": 3, - "onto": 1, - "address": 13, - "starting": 1, - "E000000.": 1, - "Thus": 1, - "advertised": 1, - "manual": 8, - "Ennnnnn": 1, - "available": 6, - "nnnnnn.": 1, - "base": 8, - "registers": 12, - "following": 2, - "externals": 1, - "bcm2835_gpio": 2, - "bcm2835_pwm": 2, - "bcm2835_clk": 2, - "bcm2835_pads": 2, - "bcm2835_spio0": 1, - "bcm2835_st": 1, - "bcm2835_bsc0": 1, - "bcm2835_bsc1": 1, - "Numbering": 1, - "numbering": 1, - "different": 5, - "inconsistent": 1, - "underlying": 4, - "numbering.": 1, - "//elinux.org/RPi_BCM2835_GPIOs": 1, - "some": 4, - "well": 1, - "power": 1, - "ground": 1, - "pins.": 1, - "Not": 4, - "header.": 1, - "Version": 40, - "P5": 6, - "connector": 1, - "V": 2, - "Gnd.": 1, - "passed": 4, - "number": 52, - "_not_": 1, - "number.": 1, - "There": 1, - "symbolic": 1, - "definitions": 3, - "each": 7, - "should": 10, - "convenience.": 1, - "See": 7, - "ref": 32, - "RPiGPIOPin.": 22, - "Pins": 2, - "bcm2835_spi_*": 1, - "allow": 5, - "SPI0": 17, - "send": 3, - "received": 3, - "Serial": 3, - "Peripheral": 6, - "Interface": 2, - "For": 6, - "more": 4, - "information": 3, - "about": 6, - "see": 14, - "//en.wikipedia.org/wiki/Serial_Peripheral_Interface_Bus": 1, - "When": 12, - "bcm2835_spi_begin": 3, - "called": 13, - "changes": 2, - "bahaviour": 1, - "their": 6, - "default": 14, - "behaviour": 1, - "order": 14, - "support": 4, - "SPI.": 1, - "While": 1, - "able": 2, - "state": 33, - "through": 4, - "bcm2835_spi_gpio_write": 1, - "bcm2835_spi_end": 4, - "revert": 1, - "configured": 1, - "controled": 1, - "bcm2835_gpio_*": 1, - "calls.": 1, - "P1": 56, - "MOSI": 8, - "MISO": 6, - "CLK": 6, - "CE0": 5, - "CE1": 6, - "bcm2835_i2c_*": 2, - "BSC": 10, - "generically": 1, - "referred": 1, - "I": 4, - "//en.wikipedia.org/wiki/I": 1, - "%": 7, - "C2": 1, - "B2C": 1, - "V2": 2, - "SDA": 3, - "SLC": 1, - "Real": 1, - "Time": 1, - "performance": 2, - "constraints": 2, - "user": 3, - "i.e.": 1, - "they": 2, - "run": 2, - "Such": 1, - "part": 1, - "kernel": 4, - "usually": 2, - "subject": 1, - "paging": 1, - "swapping": 2, - "while": 17, - "does": 4, - "things": 1, - "besides": 1, - "running": 1, - "your": 12, - "program.": 1, - "means": 8, - "expect": 2, - "get": 5, - "real": 4, - "time": 10, - "timing": 3, - "programs.": 1, - "In": 2, - "particular": 1, - "there": 4, - "guarantee": 1, - "bcm2835_delay": 5, - "bcm2835_delayMicroseconds": 6, - "return": 240, - "exactly": 2, - "requested.": 1, - "fact": 2, - "depending": 1, - "activity": 1, - "host": 1, - "etc": 1, - "might": 1, - "significantly": 1, - "longer": 1, - "delay": 9, - "times": 2, - "than": 6, - "one": 73, - "asked": 1, - "for.": 1, - "So": 1, - "please": 2, - "dont": 1, - "request.": 1, - "Arjan": 2, - "reports": 1, - "prevent": 4, - "fragment": 2, - "struct": 13, - "sched_param": 1, - "sp": 4, - "memset": 3, - "&": 203, - "sizeof": 15, - "sp.sched_priority": 1, - "sched_get_priority_max": 1, - "SCHED_FIFO": 2, - "sched_setscheduler": 1, - "mlockall": 1, - "MCL_CURRENT": 1, - "|": 40, - "MCL_FUTURE": 1, - "Open": 2, - "Source": 2, - "Licensing": 2, - "GPL": 2, - "appropriate": 7, - "option": 1, - "if": 359, - "want": 5, - "share": 2, - "source": 12, - "application": 2, - "everyone": 1, - "distribute": 1, - "give": 2, - "them": 1, - "right": 9, - "who": 1, - "uses": 4, - "it.": 3, - "wish": 2, - "software": 1, - "under": 2, - "contribute": 1, - "open": 6, - "community": 1, - "accordance": 1, - "distributed.": 1, - "//www.gnu.org/copyleft/gpl.html": 1, - "COPYING": 1, - "Acknowledgements": 1, - "Some": 1, - "inspired": 2, - "Dom": 1, - "Gert.": 1, - "Alan": 1, - "Barr.": 1, - "Revision": 1, - "History": 1, - "Initial": 1, - "release": 1, - "Minor": 1, - "bug": 1, - "fixes": 1, - "Added": 11, - "bcm2835_spi_transfern": 3, - "Fixed": 4, - "problem": 2, - "prevented": 1, - "being": 4, - "used.": 2, - "Reported": 5, - "David": 1, - "Robinson.": 1, - "bcm2835_close": 4, - "deinit": 1, - "library.": 3, - "Suggested": 1, - "sar": 1, - "Ortiz": 1, - "Document": 1, - "testing": 2, - "Functions": 1, - "bcm2835_gpio_ren": 3, - "bcm2835_gpio_fen": 3, - "bcm2835_gpio_hen": 3, - "bcm2835_gpio_aren": 3, - "bcm2835_gpio_afen": 3, - "now": 4, - "only": 6, - "specified.": 1, - "Other": 1, - "were": 1, - "already": 1, - "previously": 10, - "enabled": 4, - "stay": 1, - "enabled.": 1, - "bcm2835_gpio_clr_ren": 2, - "bcm2835_gpio_clr_fen": 2, - "bcm2835_gpio_clr_hen": 2, - "bcm2835_gpio_clr_len": 2, - "bcm2835_gpio_clr_aren": 2, - "bcm2835_gpio_clr_afen": 2, - "clear": 3, - "enable": 3, - "individual": 1, - "suggested": 3, - "Andreas": 1, - "Sundstrom.": 1, - "bcm2835_spi_transfernb": 2, - "buffers": 3, - "read": 21, - "write.": 1, - "Improvements": 3, - "barrier": 3, - "maddin.": 1, - "contributed": 1, - "mikew": 1, - "noticed": 1, - "was": 6, - "mallocing": 1, - "memory": 14, - "mmaps": 1, - "/dev/mem.": 1, - "ve": 4, - "removed": 1, - "mallocs": 1, - "frees": 1, - "found": 1, - "calling": 9, - "nanosleep": 7, - "takes": 1, - "least": 2, - "us.": 1, - "need": 6, - "link": 3, - "version.": 1, - "s": 26, - "doc": 1, - "Also": 1, - "added": 2, - "define": 2, - "passwrd": 1, - "value": 50, - "Gert": 1, - "says": 1, - "needed": 3, - "change": 3, - "pad": 4, - "settings.": 1, - "Changed": 1, - "names": 3, - "collisions": 1, - "wiringPi.": 1, - "Macros": 2, - "delayMicroseconds": 3, - "disabled": 2, - "defining": 1, - "BCM2835_NO_DELAY_COMPATIBILITY": 2, - "incorrect": 2, - "New": 6, - "mapping": 3, - "Hardware": 1, - "pointers": 2, - "initialisation": 2, - "externally": 1, - "bcm2835_spi0.": 1, - "Now": 4, - "compiles": 1, - "even": 2, - "CLOCK_MONOTONIC_RAW": 1, - "CLOCK_MONOTONIC": 3, - "instead.": 1, - "errors": 1, - "divider": 15, - "frequencies": 2, - "MHz": 14, - "clock.": 6, - "Ben": 1, - "Simpson.": 1, - "end": 23, - "examples": 1, - "Mark": 5, - "Wolfe.": 1, - "bcm2835_gpio_set_multi": 2, - "bcm2835_gpio_clr_multi": 2, - "bcm2835_gpio_write_multi": 4, - "mask": 20, - "once.": 1, - "Requested": 2, - "Sebastian": 2, - "Loncar.": 2, - "bcm2835_gpio_write_mask.": 1, - "Changes": 1, - "timer": 2, - "counter": 1, - "instead": 4, - "clock_gettime": 1, - "improved": 1, - "accuracy.": 1, - "No": 2, - "lrt": 1, - "now.": 1, - "Contributed": 1, - "van": 1, - "Vught.": 1, - "Removed": 1, - "inlines": 1, - "previous": 6, - "patch": 1, - "since": 3, - "don": 1, - "t": 15, - "seem": 1, - "work": 1, - "everywhere.": 1, - "olly.": 1, - "Patch": 2, - "Dootson": 2, - "close": 7, - "/dev/mem": 4, - "granted.": 1, - "susceptible": 1, - "bit": 19, - "overruns.": 1, - "courtesy": 1, - "Jeremy": 1, - "Mortis.": 1, - "definition": 3, - "BCM2835_GPFEN0": 2, - "broke": 1, - "ability": 1, - "falling": 4, - "edge": 8, - "events.": 1, - "Dootson.": 2, - "bcm2835_i2c_set_baudrate": 2, - "bcm2835_i2c_read_register_rs.": 1, - "bcm2835_i2c_read": 4, - "bcm2835_i2c_write": 4, - "fix": 1, - "ocasional": 1, - "reads": 2, - "completing.": 1, - "Patched": 1, - "p": 6, - "[": 293, - "atched": 1, - "his": 1, - "submitted": 1, - "high": 5, - "load": 1, - "processes.": 1, - "Updated": 1, - "distribution": 1, - "location": 6, - "details": 1, - "airspayce.com": 1, - "missing": 1, - "unmapmem": 1, - "pads": 7, - "leak.": 1, - "Hartmut": 1, - "Henkel.": 1, - "Mike": 1, - "McCauley": 1, - "mikem@airspayce.com": 1, - "DO": 1, - "NOT": 3, - "CONTACT": 1, - "THE": 2, - "AUTHOR": 1, - "DIRECTLY": 1, - "USE": 1, - "LISTS": 1, - "#ifndef": 29, - "BCM2835_H": 3, - "#define": 343, - "#include": 129, - "": 2, - "defgroup": 7, - "constants": 1, - "Constants": 1, - "passing": 1, - "values": 3, - "here": 1, - "@": 14, - "HIGH": 12, - "true": 49, - "volts": 2, - "pin.": 21, - "false": 48, - "Speed": 1, - "core": 1, - "clock": 21, - "core_clk": 1, - "BCM2835_CORE_CLK_HZ": 1, - "<": 255, - "Base": 17, - "Address": 10, - "BCM2835_PERI_BASE": 9, - "System": 10, - "Timer": 9, - "BCM2835_ST_BASE": 1, - "BCM2835_GPIO_PADS": 2, - "Clock/timer": 1, - "BCM2835_CLOCK_BASE": 1, - "BCM2835_GPIO_BASE": 6, - "BCM2835_SPI0_BASE": 1, - "BSC0": 2, - "BCM2835_BSC0_BASE": 1, - "PWM": 2, - "BCM2835_GPIO_PWM": 1, - "C000": 1, - "BSC1": 2, - "BCM2835_BSC1_BASE": 1, - "ST": 1, - "registers.": 10, - "Available": 8, - "bcm2835_init": 11, - "extern": 72, - "volatile": 13, - "uint32_t": 39, - "*bcm2835_st": 1, - "*bcm2835_gpio": 1, - "*bcm2835_pwm": 1, - "*bcm2835_clk": 1, - "PADS": 1, - "*bcm2835_pads": 1, - "*bcm2835_spi0": 1, - "*bcm2835_bsc0": 1, - "*bcm2835_bsc1": 1, - "Size": 2, - "page": 5, - "BCM2835_PAGE_SIZE": 1, - "*1024": 2, - "block": 7, - "BCM2835_BLOCK_SIZE": 1, - "offsets": 2, - "BCM2835_GPIO_BASE.": 1, - "Offsets": 1, - "into": 6, - "bytes": 29, - "per": 3, - "Register": 1, - "View": 1, - "BCM2835_GPFSEL0": 1, - "Function": 8, - "Select": 49, - "BCM2835_GPFSEL1": 1, - "BCM2835_GPFSEL2": 1, - "BCM2835_GPFSEL3": 1, - "c": 72, - "BCM2835_GPFSEL4": 1, - "BCM2835_GPFSEL5": 1, - "BCM2835_GPSET0": 1, - "Output": 6, - "Set": 2, - "BCM2835_GPSET1": 1, - "BCM2835_GPCLR0": 1, - "Clear": 18, - "BCM2835_GPCLR1": 1, - "BCM2835_GPLEV0": 1, - "Level": 2, - "BCM2835_GPLEV1": 1, - "BCM2835_GPEDS0": 1, - "Event": 11, - "Detect": 35, - "Status": 6, - "BCM2835_GPEDS1": 1, - "BCM2835_GPREN0": 1, - "Rising": 8, - "Edge": 16, - "Enable": 38, - "BCM2835_GPREN1": 1, - "Falling": 8, - "BCM2835_GPFEN1": 1, - "BCM2835_GPHEN0": 1, - "High": 4, - "BCM2835_GPHEN1": 1, - "BCM2835_GPLEN0": 1, - "Low": 5, - "BCM2835_GPLEN1": 1, - "BCM2835_GPAREN0": 1, - "Async.": 4, - "BCM2835_GPAREN1": 1, - "BCM2835_GPAFEN0": 1, - "BCM2835_GPAFEN1": 1, - "BCM2835_GPPUD": 1, - "Pull": 11, - "up/down": 10, - "BCM2835_GPPUDCLK0": 1, - "Clock": 11, - "BCM2835_GPPUDCLK1": 1, - "brief": 12, - "bcm2835PortFunction": 1, - "Port": 1, - "function": 19, - "select": 9, - "modes": 1, - "bcm2835_gpio_fsel": 2, - "typedef": 50, - "enum": 17, - "BCM2835_GPIO_FSEL_INPT": 1, - "b000": 1, - "Input": 2, - "BCM2835_GPIO_FSEL_OUTP": 1, - "b001": 1, - "BCM2835_GPIO_FSEL_ALT0": 1, - "b100": 1, - "Alternate": 6, - "BCM2835_GPIO_FSEL_ALT1": 1, - "b101": 1, - "BCM2835_GPIO_FSEL_ALT2": 1, - "b110": 1, - "BCM2835_GPIO_FSEL_ALT3": 1, - "b111": 2, - "BCM2835_GPIO_FSEL_ALT4": 1, - "b011": 1, - "BCM2835_GPIO_FSEL_ALT5": 1, - "b010": 1, - "BCM2835_GPIO_FSEL_MASK": 1, - "bits": 11, - "bcm2835FunctionSelect": 2, - "bcm2835PUDControl": 4, - "Pullup/Pulldown": 1, - "defines": 3, - "bcm2835_gpio_pud": 5, - "BCM2835_GPIO_PUD_OFF": 1, - "b00": 1, - "Off": 3, - "pull": 1, - "BCM2835_GPIO_PUD_DOWN": 1, - "b01": 1, - "Down": 1, - "BCM2835_GPIO_PUD_UP": 1, - "b10": 1, - "Up": 1, - "Pad": 11, - "BCM2835_PADS_GPIO_0_27": 1, - "BCM2835_PADS_GPIO_28_45": 1, - "BCM2835_PADS_GPIO_46_53": 1, - "Control": 6, - "masks": 1, - "BCM2835_PAD_PASSWRD": 1, - "A": 7, - "<<": 29, - "Password": 1, - "BCM2835_PAD_SLEW_RATE_UNLIMITED": 1, - "Slew": 1, - "rate": 3, - "unlimited": 1, - "BCM2835_PAD_HYSTERESIS_ENABLED": 1, - "Hysteresis": 1, - "BCM2835_PAD_DRIVE_2mA": 1, - "mA": 8, - "drive": 8, - "current": 26, - "BCM2835_PAD_DRIVE_4mA": 1, - "BCM2835_PAD_DRIVE_6mA": 1, - "BCM2835_PAD_DRIVE_8mA": 1, - "BCM2835_PAD_DRIVE_10mA": 1, - "BCM2835_PAD_DRIVE_12mA": 1, - "BCM2835_PAD_DRIVE_14mA": 1, - "BCM2835_PAD_DRIVE_16mA": 1, - "bcm2835PadGroup": 4, - "specification": 1, - "bcm2835_gpio_pad": 2, - "BCM2835_PAD_GROUP_GPIO_0_27": 1, - "BCM2835_PAD_GROUP_GPIO_28_45": 1, - "BCM2835_PAD_GROUP_GPIO_46_53": 1, - "Numbers": 1, - "Here": 1, - "we": 10, - "terms": 4, - "numbers.": 1, - "These": 6, - "requiring": 1, - "bin": 1, - "connected": 1, - "adopt": 1, - "alternate": 7, - "function.": 3, - "slightly": 1, - "pinouts": 1, - "these": 1, - "RPI_V2_*.": 1, - "At": 1, - "bootup": 1, - "UART0_TXD": 3, - "UART0_RXD": 3, - "ie": 3, - "alt0": 1, - "respectively": 1, - "dedicated": 1, - "cant": 1, - "controlled": 1, - "independently": 1, - "RPI_GPIO_P1_03": 6, - "RPI_GPIO_P1_05": 6, - "RPI_GPIO_P1_07": 1, - "RPI_GPIO_P1_08": 1, - "defaults": 4, - "alt": 4, - "RPI_GPIO_P1_10": 1, - "RPI_GPIO_P1_11": 1, - "RPI_GPIO_P1_12": 1, - "RPI_GPIO_P1_13": 1, - "RPI_GPIO_P1_15": 1, - "RPI_GPIO_P1_16": 1, - "RPI_GPIO_P1_18": 1, - "RPI_GPIO_P1_19": 1, - "RPI_GPIO_P1_21": 1, - "RPI_GPIO_P1_22": 1, - "RPI_GPIO_P1_23": 1, - "RPI_GPIO_P1_24": 1, - "RPI_GPIO_P1_26": 1, - "RPI_V2_GPIO_P1_03": 1, - "RPI_V2_GPIO_P1_05": 1, - "RPI_V2_GPIO_P1_07": 1, - "RPI_V2_GPIO_P1_08": 1, - "RPI_V2_GPIO_P1_10": 1, - "RPI_V2_GPIO_P1_11": 1, - "RPI_V2_GPIO_P1_12": 1, - "RPI_V2_GPIO_P1_13": 1, - "RPI_V2_GPIO_P1_15": 1, - "RPI_V2_GPIO_P1_16": 1, - "RPI_V2_GPIO_P1_18": 1, - "RPI_V2_GPIO_P1_19": 1, - "RPI_V2_GPIO_P1_21": 1, - "RPI_V2_GPIO_P1_22": 1, - "RPI_V2_GPIO_P1_23": 1, - "RPI_V2_GPIO_P1_24": 1, - "RPI_V2_GPIO_P1_26": 1, - "RPI_V2_GPIO_P5_03": 1, - "RPI_V2_GPIO_P5_04": 1, - "RPI_V2_GPIO_P5_05": 1, - "RPI_V2_GPIO_P5_06": 1, - "RPiGPIOPin": 1, - "BCM2835_SPI0_CS": 1, - "Master": 12, - "BCM2835_SPI0_FIFO": 1, - "TX": 5, - "RX": 7, - "FIFOs": 1, - "BCM2835_SPI0_CLK": 1, - "Divider": 2, - "BCM2835_SPI0_DLEN": 1, - "Data": 9, - "Length": 2, - "BCM2835_SPI0_LTOH": 1, - "LOSSI": 1, - "mode": 24, - "TOH": 1, - "BCM2835_SPI0_DC": 1, - "DMA": 3, - "DREQ": 1, - "Controls": 1, - "BCM2835_SPI0_CS_LEN_LONG": 1, - "Long": 1, - "word": 7, - "Lossi": 2, - "DMA_LEN": 1, - "BCM2835_SPI0_CS_DMA_LEN": 1, - "BCM2835_SPI0_CS_CSPOL2": 1, - "Chip": 9, - "Polarity": 5, - "BCM2835_SPI0_CS_CSPOL1": 1, - "BCM2835_SPI0_CS_CSPOL0": 1, - "BCM2835_SPI0_CS_RXF": 1, - "RXF": 2, - "FIFO": 25, - "Full": 1, - "BCM2835_SPI0_CS_RXR": 1, - "RXR": 3, - "needs": 4, - "Reading": 1, - "full": 9, - "BCM2835_SPI0_CS_TXD": 1, - "TXD": 2, - "accept": 2, - "BCM2835_SPI0_CS_RXD": 1, - "RXD": 2, - "contains": 2, - "BCM2835_SPI0_CS_DONE": 1, - "Done": 3, - "transfer": 8, - "BCM2835_SPI0_CS_TE_EN": 1, - "Unused": 2, - "BCM2835_SPI0_CS_LMONO": 1, - "BCM2835_SPI0_CS_LEN": 1, - "LEN": 1, - "LoSSI": 1, - "BCM2835_SPI0_CS_REN": 1, - "REN": 1, - "Read": 3, - "BCM2835_SPI0_CS_ADCS": 1, - "ADCS": 1, - "Automatically": 1, - "Deassert": 1, - "BCM2835_SPI0_CS_INTR": 1, - "INTR": 1, - "Interrupt": 5, - "BCM2835_SPI0_CS_INTD": 1, - "INTD": 1, - "BCM2835_SPI0_CS_DMAEN": 1, - "DMAEN": 1, - "BCM2835_SPI0_CS_TA": 1, - "Transfer": 3, - "Active": 2, - "BCM2835_SPI0_CS_CSPOL": 1, - "BCM2835_SPI0_CS_CLEAR": 1, - "BCM2835_SPI0_CS_CLEAR_RX": 1, - "BCM2835_SPI0_CS_CLEAR_TX": 1, - "BCM2835_SPI0_CS_CPOL": 1, - "BCM2835_SPI0_CS_CPHA": 1, - "Phase": 1, - "BCM2835_SPI0_CS_CS": 1, - "bcm2835SPIBitOrder": 3, - "Bit": 1, - "Specifies": 5, - "ordering": 4, - "bcm2835_spi_setBitOrder": 2, - "BCM2835_SPI_BIT_ORDER_LSBFIRST": 1, - "LSB": 1, - "First": 2, - "BCM2835_SPI_BIT_ORDER_MSBFIRST": 1, - "MSB": 1, - "Specify": 2, - "bcm2835_spi_setDataMode": 2, - "BCM2835_SPI_MODE0": 1, - "CPOL": 4, - "CPHA": 4, - "BCM2835_SPI_MODE1": 1, - "BCM2835_SPI_MODE2": 1, - "BCM2835_SPI_MODE3": 1, - "bcm2835SPIMode": 2, - "bcm2835SPIChipSelect": 3, - "BCM2835_SPI_CS0": 1, - "BCM2835_SPI_CS1": 1, - "BCM2835_SPI_CS2": 1, - "CS1": 1, - "CS2": 1, - "asserted": 3, - "BCM2835_SPI_CS_NONE": 1, - "CS": 5, - "yourself": 1, - "bcm2835SPIClockDivider": 3, - "generate": 2, - "Figures": 1, - "below": 1, - "period": 1, - "frequency.": 1, - "divided": 2, - "nominal": 2, - "reported": 2, - "contrary": 1, - "may": 9, - "shown": 1, - "have": 4, - "confirmed": 1, - "measurement": 2, - "BCM2835_SPI_CLOCK_DIVIDER_65536": 1, - "us": 12, - "kHz": 10, - "BCM2835_SPI_CLOCK_DIVIDER_32768": 1, - "BCM2835_SPI_CLOCK_DIVIDER_16384": 1, - "BCM2835_SPI_CLOCK_DIVIDER_8192": 1, - "/51757813kHz": 1, - "BCM2835_SPI_CLOCK_DIVIDER_4096": 1, - "BCM2835_SPI_CLOCK_DIVIDER_2048": 1, - "BCM2835_SPI_CLOCK_DIVIDER_1024": 1, - "BCM2835_SPI_CLOCK_DIVIDER_512": 1, - "BCM2835_SPI_CLOCK_DIVIDER_256": 1, - "BCM2835_SPI_CLOCK_DIVIDER_128": 1, - "ns": 9, - "BCM2835_SPI_CLOCK_DIVIDER_64": 1, - "BCM2835_SPI_CLOCK_DIVIDER_32": 1, - "BCM2835_SPI_CLOCK_DIVIDER_16": 1, - "BCM2835_SPI_CLOCK_DIVIDER_8": 1, - "BCM2835_SPI_CLOCK_DIVIDER_4": 1, - "BCM2835_SPI_CLOCK_DIVIDER_2": 1, - "fastest": 1, - "BCM2835_SPI_CLOCK_DIVIDER_1": 1, - "same": 3, - "/65536": 1, - "BCM2835_BSC_C": 1, - "BCM2835_BSC_S": 1, - "BCM2835_BSC_DLEN": 1, - "BCM2835_BSC_A": 1, - "Slave": 1, - "BCM2835_BSC_FIFO": 1, - "BCM2835_BSC_DIV": 1, - "BCM2835_BSC_DEL": 1, - "Delay": 4, - "BCM2835_BSC_CLKT": 1, - "Stretch": 2, - "Timeout": 2, - "BCM2835_BSC_C_I2CEN": 1, - "BCM2835_BSC_C_INTR": 1, - "BCM2835_BSC_C_INTT": 1, - "BCM2835_BSC_C_INTD": 1, - "DONE": 2, - "BCM2835_BSC_C_ST": 1, - "Start": 4, - "new": 13, - "BCM2835_BSC_C_CLEAR_1": 1, - "BCM2835_BSC_C_CLEAR_2": 1, - "BCM2835_BSC_C_READ": 1, - "BCM2835_BSC_S_CLKT": 1, - "stretch": 1, - "timeout": 5, - "BCM2835_BSC_S_ERR": 1, - "ACK": 1, - "error": 8, - "BCM2835_BSC_S_RXF": 1, - "BCM2835_BSC_S_TXE": 1, - "TXE": 1, - "BCM2835_BSC_S_RXD": 1, - "BCM2835_BSC_S_TXD": 1, - "BCM2835_BSC_S_RXR": 1, - "BCM2835_BSC_S_TXW": 1, - "TXW": 1, - "writing": 2, - "BCM2835_BSC_S_DONE": 1, - "BCM2835_BSC_S_TA": 1, - "BCM2835_BSC_FIFO_SIZE": 1, - "size": 13, - "bcm2835I2CClockDivider": 3, - "BCM2835_I2C_CLOCK_DIVIDER_2500": 1, - "BCM2835_I2C_CLOCK_DIVIDER_626": 1, - "BCM2835_I2C_CLOCK_DIVIDER_150": 1, - "reset": 1, - "BCM2835_I2C_CLOCK_DIVIDER_148": 1, - "bcm2835I2CReasonCodes": 5, - "reason": 4, - "codes": 1, - "BCM2835_I2C_REASON_OK": 1, - "Success": 1, - "BCM2835_I2C_REASON_ERROR_NACK": 1, - "Received": 4, - "NACK": 1, - "BCM2835_I2C_REASON_ERROR_CLKT": 1, - "BCM2835_I2C_REASON_ERROR_DATA": 1, - "sent": 1, - "/": 16, - "BCM2835_ST_CS": 1, - "Control/Status": 1, - "BCM2835_ST_CLO": 1, - "Counter": 4, - "Lower": 2, - "BCM2835_ST_CHI": 1, - "Upper": 1, - "BCM2835_PWM_CONTROL": 1, - "BCM2835_PWM_STATUS": 1, - "BCM2835_PWM0_RANGE": 1, - "BCM2835_PWM0_DATA": 1, - "BCM2835_PWM1_RANGE": 1, - "BCM2835_PWM1_DATA": 1, - "BCM2835_PWMCLK_CNTL": 1, - "BCM2835_PWMCLK_DIV": 1, - "BCM2835_PWM1_MS_MODE": 1, - "Run": 4, - "MS": 2, - "BCM2835_PWM1_USEFIFO": 1, - "BCM2835_PWM1_REVPOLAR": 1, - "Reverse": 2, - "polarity": 3, - "BCM2835_PWM1_OFFSTATE": 1, - "Ouput": 2, - "BCM2835_PWM1_REPEATFF": 1, - "Repeat": 2, - "last": 6, - "empty": 2, - "BCM2835_PWM1_SERIAL": 1, - "serial": 2, - "BCM2835_PWM1_ENABLE": 1, - "Channel": 2, - "BCM2835_PWM0_MS_MODE": 1, - "BCM2835_PWM0_USEFIFO": 1, - "BCM2835_PWM0_REVPOLAR": 1, - "BCM2835_PWM0_OFFSTATE": 1, - "BCM2835_PWM0_REPEATFF": 1, - "BCM2835_PWM0_SERIAL": 1, - "BCM2835_PWM0_ENABLE": 1, - "x": 86, - "#endif": 110, - "#ifdef": 19, - "__cplusplus": 12, - "init": 2, - "Library": 1, - "management": 1, - "intialise": 1, - "Initialise": 1, - "opening": 1, - "getting": 1, - "internal": 47, - "device": 7, - "call": 4, - "successfully": 1, - "before": 7, - "bcm2835_set_debug": 2, - "fails": 1, - "returning": 1, - "result": 8, - "crashes": 1, - "failures.": 1, - "Prints": 1, - "messages": 1, - "stderr": 1, - "case": 34, - "errors.": 1, - "successful": 2, - "else": 58, - "int": 218, - "Close": 1, - "deallocating": 1, - "allocated": 2, - "closing": 3, - "Sets": 24, - "debug": 6, - "prevents": 1, - "makes": 1, - "print": 5, - "out": 5, - "what": 2, - "would": 2, - "do": 13, - "rather": 2, - "causes": 1, - "normal": 1, - "operation.": 2, - "Call": 2, - "param": 72, - "]": 292, - "level.": 3, - "uint8_t": 43, - "lowlevel": 2, - "provide": 1, - "generally": 1, - "Reads": 5, - "done": 3, - "twice": 3, - "therefore": 6, - "always": 3, - "safe": 4, - "precautions": 3, - "correct": 3, - "paddr": 10, - "from.": 6, - "etc.": 5, - "sa": 30, - "uint32_t*": 7, - "without": 3, - "within": 4, - "occurred": 2, - "since.": 2, - "bcm2835_peri_read_nb": 1, - "Writes": 2, - "write": 8, - "bcm2835_peri_write_nb": 1, - "Alters": 1, - "regsiter.": 1, - "valu": 1, - "alters": 1, - "deines": 1, - "according": 1, - "value.": 2, - "All": 1, - "unaffected.": 1, - "Use": 8, - "alter": 2, - "subset": 1, - "register.": 3, - "masked": 2, - "mask.": 1, - "Bitmask": 1, - "altered": 1, - "gpio": 1, - "interface.": 3, - "input": 12, - "output": 21, - "state.": 1, - "given": 16, - "configures": 1, - "RPI_GPIO_P1_*": 21, - "Mode": 1, - "BCM2835_GPIO_FSEL_*": 1, - "specified": 27, - "HIGH.": 2, - "bcm2835_gpio_write": 3, - "bcm2835_gpio_set": 1, - "LOW.": 5, - "bcm2835_gpio_clr": 1, - "first": 13, - "Mask": 6, - "affect.": 4, - "eg": 5, - "returns": 4, - "either": 4, - "Works": 1, - "whether": 4, - "output.": 1, - "bcm2835_gpio_lev": 1, - "Status.": 7, - "Tests": 1, - "detected": 7, - "requested": 1, - "flag": 3, - "bcm2835_gpio_set_eds": 2, - "status": 1, - "th": 1, - "true.": 2, - "bcm2835_gpio_eds": 1, - "effect": 3, - "clearing": 1, - "flag.": 1, - "afer": 1, - "seeing": 1, - "rising": 3, - "sets": 8, - "GPRENn": 2, - "synchronous": 2, - "detection.": 2, - "signal": 4, - "sampled": 6, - "looking": 2, - "pattern": 2, - "signal.": 2, - "suppressing": 2, - "glitches.": 2, - "Disable": 6, - "Asynchronous": 6, - "incoming": 2, - "As": 2, - "edges": 2, - "very": 2, - "short": 5, - "duration": 2, - "detected.": 2, - "bcm2835_gpio_pudclk": 3, - "resistor": 1, - "However": 3, - "convenient": 2, - "bcm2835_gpio_set_pud": 4, - "pud": 4, - "desired": 7, - "mode.": 4, - "One": 3, - "BCM2835_GPIO_PUD_*": 2, - "Clocks": 3, - "earlier": 1, - "remove": 2, - "group.": 2, - "BCM2835_PAD_GROUP_GPIO_*": 2, - "BCM2835_PAD_*": 2, - "bcm2835_gpio_set_pad": 1, - "Delays": 3, - "milliseconds.": 1, - "Uses": 4, - "CPU": 5, - "until": 1, - "up.": 1, - "mercy": 2, - "From": 2, - "interval": 4, - "req": 2, - "exact": 2, - "multiple": 2, - "granularity": 2, - "rounded": 2, - "next": 9, - "multiple.": 2, - "Furthermore": 2, - "sleep": 2, - "completes": 2, - "still": 3, - "becomes": 2, - "free": 4, - "once": 5, - "again": 2, - "execute": 3, - "thread.": 2, - "millis": 2, - "milliseconds": 1, - "unsigned": 22, - "microseconds.": 2, - "combination": 2, - "busy": 2, - "wait": 2, - "timers": 1, - "less": 1, - "microseconds": 6, - "Timer.": 1, - "RaspberryPi": 1, - "Your": 1, - "mileage": 1, - "vary.": 1, - "micros": 5, - "uint64_t": 8, - "required": 2, - "bcm2835_gpio_write_mask": 1, - "clocking": 1, - "spi": 1, - "let": 2, - "device.": 2, - "operations.": 4, - "Forces": 2, - "ALT0": 2, - "funcitons": 1, - "complete": 3, - "End": 2, - "returned": 5, - "INPUT": 2, - "behaviour.": 2, - "NOTE": 1, - "effect.": 1, - "SPI0.": 1, - "Defaults": 1, - "BCM2835_SPI_BIT_ORDER_*": 1, - "speed.": 2, - "BCM2835_SPI_CLOCK_DIVIDER_*": 1, - "bcm2835_spi_setClockDivider": 1, - "uint16_t": 2, - "polariy": 1, - "phase": 1, - "BCM2835_SPI_MODE*": 1, - "bcm2835_spi_transfer": 5, - "made": 1, - "selected": 13, - "during": 4, - "transfer.": 4, - "cs": 4, - "activate": 1, - "slave.": 7, - "BCM2835_SPI_CS*": 1, - "bcm2835_spi_chipSelect": 4, - "occurs": 1, - "currently": 12, - "active.": 1, - "transfers": 1, - "happening": 1, - "complement": 1, - "inactive": 1, - "affect": 1, - "active": 3, - "Whether": 1, - "bcm2835_spi_setChipSelectPolarity": 1, - "Transfers": 6, - "byte": 6, - "Asserts": 3, - "simultaneously": 3, - "clocks": 2, - "MISO.": 2, - "Returns": 2, - "polled": 2, - "Peripherls": 2, - "len": 15, - "slave": 8, - "placed": 1, - "rbuf.": 1, - "rbuf": 3, - "long": 15, - "tbuf": 4, - "Buffer": 10, - "send.": 5, - "put": 1, - "buffer": 9, - "Number": 8, - "send/received": 2, - "char*": 24, - "bcm2835_spi_transfernb.": 1, - "replaces": 1, - "transmitted": 1, - "buffer.": 1, - "buf": 14, - "replace": 1, - "contents": 3, - "eh": 2, - "bcm2835_spi_writenb": 1, - "i2c": 1, - "Philips": 1, - "bus/interface": 1, - "January": 1, - "SCL": 2, - "bcm2835_i2c_end": 3, - "bcm2835_i2c_begin": 1, - "address.": 2, - "addr": 2, - "bcm2835_i2c_setSlaveAddress": 4, - "BCM2835_I2C_CLOCK_DIVIDER_*": 1, - "bcm2835_i2c_setClockDivider": 2, - "converting": 1, - "baudrate": 4, - "parameter": 1, - "equivalent": 1, - "divider.": 1, - "standard": 2, - "khz": 1, - "corresponds": 1, - "its": 1, - "driver.": 1, - "Of": 1, - "course": 2, - "nothing": 1, - "driver": 1, - "const": 172, - "*": 183, - "receive.": 2, - "received.": 2, - "Allows": 2, - "slaves": 1, - "require": 3, - "repeated": 1, - "start": 12, - "prior": 1, - "stop": 1, - "set.": 1, - "popular": 1, - "MPL3115A2": 1, - "pressure": 1, - "temperature": 1, - "sensor.": 1, - "Note": 1, - "combined": 1, - "better": 1, - "choice.": 1, - "Will": 1, - "regaddr": 2, - "containing": 2, - "bcm2835_i2c_read_register_rs": 1, - "st": 1, - "delays": 1, - "Counter.": 1, - "bcm2835_st_read": 1, - "offset.": 1, - "offset_micros": 2, - "Offset": 1, - "bcm2835_st_delay": 1, - "@example": 5, - "blink.c": 1, - "Blinks": 1, - "off": 1, - "input.c": 1, - "event.c": 1, - "Shows": 3, - "how": 3, - "spi.c": 1, - "spin.c": 1, - "#pragma": 3, - "": 4, - "": 4, - "": 2, - "namespace": 38, - "std": 53, - "DEFAULT_DELIMITER": 1, - "CsvStreamer": 5, - "private": 16, - "ofstream": 1, - "File": 1, - "stream": 6, - "vector": 16, - "row_buffer": 1, - "stores": 3, - "row": 12, - "flushed/written": 1, - "fields": 4, - "columns": 2, - "rows": 3, - "records": 2, - "including": 2, - "delimiter": 2, - "Delimiter": 1, - "character": 10, - "comma": 2, - "string": 24, - "sanitize": 1, - "ready": 1, - "Empty": 1, - "CSV": 4, - "streamer...": 1, - "Same": 1, - "...": 1, - "Opens": 3, - "path/name": 3, - "Ensures": 1, - "closed": 1, - "saved": 1, - "delimiting": 1, - "add_field": 1, - "line": 11, - "adds": 1, - "field": 5, - "save_fields": 1, - "save": 1, - "writes": 2, - "append": 8, - "Appends": 5, - "quoted": 1, - "leading/trailing": 1, - "spaces": 3, - "trimmed": 1, - "bool": 111, - "Like": 1, - "specify": 1, - "trim": 2, - "keep": 1, - "float": 74, - "double": 25, - "writeln": 1, - "Flushes": 1, - "Saves": 1, - "closes": 1, - "field_count": 1, - "Gets": 2, - "row_count": 1, - "": 1, - "": 1, - "": 2, - "static": 263, - "Env": 13, - "*env_instance": 1, - "NULL": 109, - "*Env": 1, - "instance": 4, - "env_instance": 3, - "QObject": 2, - "QCoreApplication": 1, - "parse": 3, - "**envp": 1, - "**env": 1, - "**": 2, - "QString": 20, - "envvar": 2, - "name": 25, - "indexOfEquals": 5, - "env": 3, - "envp": 4, - "*env": 1, - "envvar.indexOf": 1, - "continue": 2, - "envvar.left": 1, - "envvar.mid": 1, - "m_map.insert": 1, - "QVariantMap": 3, - "asVariantMap": 2, - "m_map": 2, - "ENV_H": 3, - "": 1, - "Q_OBJECT": 1, - "*instance": 1, - "BOOST_ASIO_DETAIL_IMPL_EPOLL_REACTOR_IPP": 3, - "#if": 63, - "defined": 49, - "_MSC_VER": 7, - "&&": 29, - "": 1, - "BOOST_ASIO_HAS_EPOLL": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "BOOST_ASIO_HAS_TIMERFD": 19, - "": 1, - "boost": 18, - "asio": 14, - "detail": 5, - "epoll_reactor": 40, - "io_service": 6, - "service_base": 1, - "": 1, - "io_service_": 1, - "use_service": 1, - "": 1, - "mutex_": 13, - "interrupter_": 5, - "epoll_fd_": 20, - "do_epoll_create": 3, - "timer_fd_": 21, - "do_timerfd_create": 3, - "shutdown_": 10, - "epoll_event": 10, - "ev": 21, - "ev.events": 13, - "EPOLLIN": 8, - "EPOLLERR": 8, - "EPOLLET": 5, - "ev.data.ptr": 10, - "epoll_ctl": 12, - "EPOLL_CTL_ADD": 7, - "interrupter_.read_descriptor": 3, - "interrupter_.interrupt": 2, - "shutdown_service": 1, - "mutex": 16, - "scoped_lock": 16, - "lock": 5, - "lock.unlock": 1, - "op_queue": 6, - "": 6, - "ops": 10, - "descriptor_state*": 6, - "registered_descriptors_.first": 2, - "i": 106, - "max_ops": 6, - "ops.push": 5, - "op_queue_": 12, - "registered_descriptors_.free": 2, - "timer_queues_.get_all_timers": 1, - "io_service_.abandon_operations": 1, - "fork_service": 1, - "fork_event": 1, - "fork_ev": 2, - "fork_child": 1, - "interrupter_.recreate": 1, - "update_timeout": 2, - "descriptors_lock": 3, - "registered_descriptors_mutex_": 3, - "next_": 3, - "registered_events_": 8, - "descriptor_": 5, - "error_code": 4, - "ec": 6, - "errno": 10, - "get_system_category": 3, - "throw_error": 2, - "init_task": 1, - "io_service_.init_task": 1, - "register_descriptor": 1, - "socket_type": 7, - "descriptor": 15, - "per_descriptor_data": 8, - "descriptor_data": 60, - "allocate_descriptor_state": 3, - "descriptor_lock": 7, - "reactor_": 7, - "EPOLLHUP": 3, - "EPOLLPRI": 3, - "register_internal_descriptor": 1, - "op_type": 8, - "reactor_op*": 5, - "op": 28, - ".push": 2, - "move_descriptor": 1, - "target_descriptor_data": 2, - "source_descriptor_data": 3, - "start_op": 1, - "is_continuation": 5, - "allow_speculative": 2, - "ec_": 4, - "bad_descriptor": 1, - "post_immediate_completion": 2, - ".empty": 5, - "read_op": 1, - "||": 19, - "except_op": 1, - "perform": 2, - "descriptor_lock.unlock": 4, - "io_service_.post_immediate_completion": 2, - "write_op": 2, - "EPOLLOUT": 4, - "EPOLL_CTL_MOD": 3, - "io_service_.work_started": 2, - "cancel_ops": 1, - ".front": 3, - "operation_aborted": 2, - ".pop": 3, - "io_service_.post_deferred_completions": 3, - "deregister_descriptor": 1, - "EPOLL_CTL_DEL": 2, - "free_descriptor_state": 3, - "deregister_internal_descriptor": 1, - "get_timeout": 5, - "events": 8, - "num_events": 2, - "epoll_wait": 1, - "check_timers": 6, - "#else": 35, - "void*": 2, - "ptr": 6, - ".data.ptr": 1, - "static_cast": 14, - "": 2, - "set_ready_events": 1, - ".events": 1, - "common_lock": 1, - "timer_queues_.get_ready_timers": 1, - "itimerspec": 5, - "new_timeout": 6, - "old_timeout": 4, - "flags": 4, - "timerfd_settime": 2, - "EPOLL_CLOEXEC": 4, - "fd": 15, - "epoll_create1": 1, - "EINVAL": 4, - "ENOSYS": 1, - "epoll_create": 1, - "epoll_size": 1, - "fcntl": 2, - "F_SETFD": 2, - "FD_CLOEXEC": 2, - "timerfd_create": 2, - "TFD_CLOEXEC": 1, - "registered_descriptors_.alloc": 1, - "do_add_timer_queue": 1, - "timer_queue_base": 2, - "queue": 4, - "timer_queues_.insert": 1, - "do_remove_timer_queue": 1, - "timer_queues_.erase": 1, - "timer_queues_.wait_duration_msec": 1, - "ts": 1, - "ts.it_interval.tv_sec": 1, - "ts.it_interval.tv_nsec": 1, - "usec": 5, - "timer_queues_.wait_duration_usec": 1, - "ts.it_value.tv_sec": 1, - "ts.it_value.tv_nsec": 1, - "TFD_TIMER_ABSTIME": 1, - "perform_io_cleanup_on_block_exit": 4, - "explicit": 5, - "epoll_reactor*": 2, - "r": 38, - "first_op_": 3, - "ops_.empty": 1, - "ops_": 2, - "operation*": 4, - "descriptor_state": 5, - "operation": 2, - "do_complete": 2, - "perform_io": 2, - "mutex_.lock": 1, - "io_cleanup": 1, - "adopt_lock": 1, - "j": 10, - "io_cleanup.ops_.push": 1, - "break": 35, - "io_cleanup.first_op_": 2, - "io_cleanup.ops_.front": 1, - "io_cleanup.ops_.pop": 1, - "io_service_impl*": 1, - "owner": 3, - "size_t": 6, - "bytes_transferred": 2, - "": 1, - "": 1, - "Field": 2, - "Free": 1, - "Black": 1, - "White": 1, - "Illegal": 1, - "Player": 1, - "GDSDBREADER_H": 3, - "": 1, - "GDS_DIR": 1, - "LEVEL_ONE": 1, - "LEVEL_TWO": 1, - "LEVEL_THREE": 1, - "dbDataStructure": 2, - "label": 1, - "quint32": 3, - "depth": 1, - "userIndex": 1, - "QByteArray": 1, - "COMPRESSED": 1, - "optimize": 1, - "ram": 1, - "disk": 2, - "space": 2, - "decompressed": 1, - "quint64": 1, - "uniqueID": 1, - "QVector": 2, - "": 1, - "nextItems": 1, - "": 1, - "nextItemsIndices": 1, - "dbDataStructure*": 1, - "father": 1, - "fatherIndex": 1, - "noFatherRoot": 1, - "Used": 2, - "tell": 1, - "node": 1, - "root": 1, - "hasn": 1, - "argument": 1, - "list": 3, - "operator": 10, - "overload.": 1, - "friend": 10, - "myclass.label": 2, - "myclass.depth": 2, - "myclass.userIndex": 2, - "qCompress": 2, - "myclass.data": 4, - "myclass.uniqueID": 2, - "myclass.nextItemsIndices": 2, - "myclass.fatherIndex": 2, - "myclass.noFatherRoot": 2, - "myclass.fileName": 2, - "myclass.firstLineData": 4, - "myclass.linesNumbers": 2, - "QDataStream": 2, - "myclass": 1, - "//Don": 1, - "qUncompress": 2, - "": 2, - "main": 2, - "cout": 2, - "endl": 1, - "": 1, - "": 1, - "": 1, - "EC_KEY_regenerate_key": 1, - "EC_KEY": 3, - "*eckey": 2, - "BIGNUM": 9, - "*priv_key": 1, - "ok": 3, - "BN_CTX": 2, - "*ctx": 2, - "EC_POINT": 4, - "*pub_key": 1, - "eckey": 7, - "EC_GROUP": 2, - "*group": 2, - "EC_KEY_get0_group": 2, - "ctx": 26, - "BN_CTX_new": 2, - "goto": 156, - "err": 26, - "pub_key": 6, - "EC_POINT_new": 4, - "EC_POINT_mul": 3, - "priv_key": 2, - "EC_KEY_set_private_key": 1, - "EC_KEY_set_public_key": 2, - "EC_POINT_free": 4, - "BN_CTX_free": 2, - "ECDSA_SIG_recover_key_GFp": 3, - "ECDSA_SIG": 3, - "*ecsig": 1, - "*msg": 2, - "msglen": 2, - "recid": 3, - "ret": 24, - "*x": 1, - "*e": 1, - "*order": 1, - "*sor": 1, - "*eor": 1, - "*field": 1, - "*R": 1, - "*O": 1, - "*Q": 1, - "*rr": 1, - "*zero": 1, - "n": 28, - "BN_CTX_start": 1, - "BN_CTX_get": 8, - "EC_GROUP_get_order": 1, - "BN_copy": 1, - "BN_mul_word": 1, - "BN_add": 1, - "ecsig": 3, - "EC_GROUP_get_curve_GFp": 1, - "BN_cmp": 1, - "R": 6, - "EC_POINT_set_compressed_coordinates_GFp": 1, - "O": 5, - "EC_POINT_is_at_infinity": 1, - "Q": 5, - "EC_GROUP_get_degree": 1, - "e": 15, - "BN_bin2bn": 3, - "msg": 1, - "*msglen": 1, - "BN_rshift": 1, - "zero": 5, - "BN_zero": 1, - "BN_mod_sub": 1, - "rr": 4, - "BN_mod_inverse": 1, - "sor": 3, - "BN_mod_mul": 2, - "eor": 3, - "BN_CTX_end": 1, - "CKey": 26, - "SetCompressedPubKey": 4, - "EC_KEY_set_conv_form": 1, - "pkey": 14, - "POINT_CONVERSION_COMPRESSED": 1, - "fCompressedPubKey": 5, - "Reset": 5, - "EC_KEY_new_by_curve_name": 2, - "NID_secp256k1": 2, - "throw": 4, - "key_error": 6, - "fSet": 7, - "b": 57, - "EC_KEY_dup": 1, - "b.pkey": 2, - "b.fSet": 2, - "EC_KEY_copy": 1, - "hash": 20, - "vchSig": 18, - "nSize": 2, - "vchSig.clear": 2, - "vchSig.resize": 2, - "Shrink": 1, - "fit": 1, - "actual": 1, - "SignCompact": 2, - "uint256": 10, - "": 19, - "fOk": 3, - "*sig": 2, - "ECDSA_do_sign": 1, - "sig": 11, - "nBitsR": 3, - "BN_num_bits": 2, - "nBitsS": 3, - "nRecId": 4, - "<4;>": 1, - "keyRec": 5, - "1": 4, - "GetPubKey": 5, - "BN_bn2bin": 2, - "/8": 2, - "ECDSA_SIG_free": 2, - "SetCompactSignature": 2, - "vchSig.size": 2, - "nV": 6, - "<27>": 1, - "ECDSA_SIG_new": 1, - "EC_KEY_free": 1, - "Verify": 2, - "ECDSA_verify": 1, - "VerifyCompact": 2, - "key": 23, - "key.SetCompactSignature": 1, - "key.GetPubKey": 1, - "IsValid": 4, - "fCompr": 3, - "CSecret": 4, - "secret": 2, - "GetSecret": 2, - "key2": 1, - "key2.SetSecret": 1, - "key2.GetPubKey": 1, - "BITCOIN_KEY_H": 2, - "": 1, - "": 1, - "runtime_error": 2, - "str": 2, - "CKeyID": 5, - "uint160": 8, - "CScriptID": 3, - "CPubKey": 11, - "vchPubKey": 6, - "vchPubKeyIn": 2, - "a.vchPubKey": 3, - "b.vchPubKey": 3, - "IMPLEMENT_SERIALIZE": 1, - "READWRITE": 1, - "GetID": 1, - "Hash160": 1, - "GetHash": 1, - "Hash": 1, - "vchPubKey.begin": 1, - "vchPubKey.end": 1, - "vchPubKey.size": 3, - "IsCompressed": 2, - "Raw": 1, - "secure_allocator": 2, - "CPrivKey": 3, - "EC_KEY*": 1, - "IsNull": 1, - "MakeNewKey": 1, - "fCompressed": 3, - "SetPrivKey": 1, - "vchPrivKey": 1, - "SetSecret": 1, - "vchSecret": 1, - "GetPrivKey": 1, - "SetPubKey": 1, - "Sign": 2, - "LIBCANIH": 2, - "": 1, - "": 1, - "int64": 1, - "//#define": 1, - "DEBUG": 5, - "dout": 2, - "cerr": 1, - "libcanister": 2, - "//the": 8, - "canmem": 22, - "object": 3, - "generic": 1, - "container": 2, - "commonly": 1, - "//throughout": 1, - "canister": 14, - "framework": 1, - "hold": 1, - "uncertain": 1, - "//length": 1, - "contain": 1, - "null": 3, - "bytes.": 1, - "raw": 2, - "absolute": 1, - "length": 10, - "//creates": 3, - "unallocated": 1, - "allocsize": 1, - "blank": 1, - "strdata": 1, - "//automates": 1, - "creation": 1, - "limited": 2, - "canmems": 1, - "//cleans": 1, - "zeromem": 1, - "//overwrites": 2, - "fragmem": 1, - "notation": 1, - "countlen": 1, - "//counts": 1, - "strings": 1, - "//removes": 1, - "nulls": 1, - "//returns": 2, - "singleton": 2, - "//contains": 2, - "caninfo": 2, - "path": 8, - "//physical": 1, - "internalname": 1, - "//a": 1, - "numfiles": 1, - "files": 6, - "//necessary": 1, - "type": 7, - "canfile": 7, - "//this": 1, - "holds": 2, - "//canister": 1, - "canister*": 1, - "parent": 1, - "//internal": 1, - "id": 4, - "//use": 1, - "own.": 1, - "newline": 2, - "delimited": 2, - "container.": 1, - "TOC": 1, - "info": 2, - "general": 1, - "canfiles": 1, - "recommended": 1, - "modify": 1, - "//these": 1, - "enforced.": 1, - "canfile*": 1, - "readonly": 3, - "//if": 1, - "routines": 1, - "anything": 1, - "//maximum": 1, - "//time": 1, - "whatever": 1, - "suits": 1, - "application.": 1, - "cachemax": 2, - "cachecnt": 1, - "//number": 1, - "cache": 2, - "modified": 3, - "//both": 1, - "initialize": 1, - "fspath": 3, - "//destroys": 1, - "flushing": 1, - "modded": 1, - "//open": 1, - "//does": 1, - "exist": 2, - "//close": 1, - "flush": 1, - "clean": 2, - "//deletes": 1, - "inside": 1, - "delFile": 1, - "//pulls": 1, - "getFile": 1, - "otherwise": 1, - "overwrites": 1, - "succeeded": 2, - "writeFile": 2, - "//get": 1, - "//list": 1, - "paths": 1, - "getTOC": 1, - "//brings": 1, - "back": 1, - "limit": 1, - "//important": 1, - "sCFID": 2, - "CFID": 2, - "avoid": 1, - "uncaching": 1, - "//really": 1, - "just": 2, - "internally": 1, - "harm.": 1, - "cacheclean": 1, - "dFlush": 1, - "Q_OS_LINUX": 2, - "": 1, - "QT_VERSION": 1, - "QT_VERSION_CHECK": 1, - "#error": 9, - "Something": 1, - "wrong": 1, - "setup.": 1, - "report": 3, - "mailing": 1, - "argc": 2, - "char**": 2, - "argv": 2, - "google_breakpad": 1, - "ExceptionHandler": 1, - "Utils": 4, - "exceptionHandler": 2, - "qInstallMsgHandler": 1, - "messageHandler": 2, - "QApplication": 1, - "app": 1, - "STATIC_BUILD": 1, - "Q_INIT_RESOURCE": 2, - "WebKit": 1, - "InspectorBackendStub": 1, - "app.setWindowIcon": 1, - "QIcon": 1, - "app.setApplicationName": 1, - "app.setOrganizationName": 1, - "app.setOrganizationDomain": 1, - "app.setApplicationVersion": 1, - "PHANTOMJS_VERSION_STRING": 1, - "Phantom": 1, - "phantom": 1, - "phantom.execute": 1, - "app.exec": 1, - "phantom.returnValue": 1, - "__OG_MATH_INL__": 2, - "og": 1, - "OG_INLINE": 41, - "Math": 41, - "Abs": 1, - "MASK_SIGNED": 2, - "y": 16, - "Fabs": 1, - "f": 104, - "uInt": 1, - "*pf": 1, - "reinterpret_cast": 8, - "": 1, - "pf": 1, - "fabsf": 1, - "Round": 1, - "floorf": 2, - "Floor": 1, - "Ceil": 1, - "ceilf": 1, - "Ftoi": 1, - "@todo": 1, - "note": 1, - "sse": 1, - "cvttss2si": 2, - "OG_ASM_MSVC": 4, - "OG_FTOI_USE_SSE": 2, - "SysInfo": 2, - "cpu.general.SSE": 2, - "__asm": 8, - "eax": 5, - "mov": 6, - "fld": 4, - "fistp": 3, - "//__asm": 3, - "O_o": 3, - "#elif": 7, - "OG_ASM_GNU": 4, - "__asm__": 4, - "__volatile__": 4, - "cast": 7, - "why": 3, - "did": 3, - "": 3, - "FtoiFast": 2, - "Ftol": 1, - "": 1, - "Fmod": 1, - "numerator": 2, - "denominator": 2, - "fmodf": 1, - "Modf": 2, - "modff": 2, - "Sqrt": 2, - "sqrtf": 2, - "InvSqrt": 1, - "OG_ASSERT": 4, - "RSqrt": 1, - "g": 2, - "*reinterpret_cast": 3, - "guess": 1, - "f375a86": 1, - "": 1, - "Newtons": 1, - "calculation": 1, - "Log": 1, - "logf": 3, - "Log2": 1, - "INV_LN_2": 1, - "Log10": 1, - "INV_LN_10": 1, - "Pow": 1, - "exp": 2, - "powf": 1, - "Exp": 1, - "expf": 1, - "IsPowerOfTwo": 4, - "faster": 3, - "two": 2, - "known": 1, - "methods": 2, - "moved": 1, - "beginning": 1, - "HigherPowerOfTwo": 4, - "LowerPowerOfTwo": 2, - "FloorPowerOfTwo": 1, - "CeilPowerOfTwo": 1, - "ClosestPowerOfTwo": 1, - "Digits": 1, - "digits": 6, - "step": 3, - "Sin": 2, - "sinf": 1, - "ASin": 1, - "<=>": 2, - "0f": 2, - "HALF_PI": 2, - "asinf": 1, - "Cos": 2, - "cosf": 1, - "ACos": 1, - "PI": 1, - "acosf": 1, - "Tan": 1, - "tanf": 1, - "ATan": 2, - "atanf": 1, - "f1": 2, - "f2": 2, - "atan2f": 1, - "SinCos": 1, - "sometimes": 1, - "assembler": 1, - "waaayy": 1, - "_asm": 1, - "fsincos": 1, - "ecx": 2, - "edx": 2, - "fstp": 2, - "dword": 2, - "asm": 1, - "Deg2Rad": 1, - "DEG_TO_RAD": 1, - "Rad2Deg": 1, - "RAD_TO_DEG": 1, - "Square": 1, - "v": 10, - "Cube": 1, - "Sec2Ms": 1, - "sec": 2, - "Ms2Sec": 1, - "ms": 2, - "NINJA_METRICS_H_": 3, - "int64_t.": 1, - "Metrics": 2, - "module": 1, - "dumps": 1, - "stats": 2, - "actions.": 1, - "To": 1, - "METRIC_RECORD": 4, - "below.": 1, - "metrics": 2, - "hit": 1, - "path.": 2, - "count": 1, - "Total": 1, - "spent": 1, - "int64_t": 3, - "sum": 1, - "scoped": 1, - "recording": 1, - "metric": 2, - "across": 1, - "body": 1, - "macro.": 1, - "ScopedMetric": 4, - "Metric*": 4, - "metric_": 1, - "Timestamp": 1, - "started.": 1, - "Value": 24, - "platform": 2, - "dependent.": 1, - "start_": 1, - "prints": 1, - "report.": 1, - "NewMetric": 2, - "Print": 2, - "summary": 1, - "stdout.": 1, - "Report": 1, - "": 1, - "metrics_": 1, - "Get": 1, - "relative": 2, - "epoch.": 1, - "Epoch": 1, - "varies": 1, - "between": 1, - "platforms": 1, - "useful": 1, - "measuring": 1, - "elapsed": 1, - "time.": 1, - "GetTimeMillis": 1, - "simple": 1, - "stopwatch": 1, - "seconds": 1, - "Restart": 3, - "called.": 1, - "Stopwatch": 2, - "started_": 4, - "Seconds": 1, - "call.": 1, - "Elapsed": 1, - "": 1, - "primary": 1, - "metrics.": 1, - "top": 1, - "recorded": 1, - "metrics_h_metric": 2, - "g_metrics": 3, - "metrics_h_scoped": 1, - "Metrics*": 1, - "INTERNAL_SUPPRESS_PROTOBUF_FIELD_DEPRECATION": 1, - "": 1, - "": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "persons": 4, - "google": 72, - "protobuf": 72, - "Descriptor*": 3, - "Person_descriptor_": 6, - "GeneratedMessageReflection*": 1, - "Person_reflection_": 4, - "protobuf_AssignDesc_protocol_2dbuffer_2eproto": 4, - "protobuf_AddDesc_protocol_2dbuffer_2eproto": 6, - "FileDescriptor*": 1, - "DescriptorPool": 3, - "generated_pool": 2, - "FindFileByName": 1, - "GOOGLE_CHECK": 1, - "message_type": 1, - "Person_offsets_": 2, - "GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET": 3, - "Person": 65, - "name_": 30, - "GeneratedMessageReflection": 1, - "default_instance_": 8, - "_has_bits_": 14, - "_unknown_fields_": 5, - "MessageFactory": 3, - "generated_factory": 1, - "GOOGLE_PROTOBUF_DECLARE_ONCE": 1, - "protobuf_AssignDescriptors_once_": 2, - "inline": 39, - "protobuf_AssignDescriptorsOnce": 4, - "GoogleOnceInit": 1, - "protobuf_RegisterTypes": 2, - "InternalRegisterGeneratedMessage": 1, - "default_instance": 3, - "protobuf_ShutdownFile_protocol_2dbuffer_2eproto": 4, - "delete": 6, - "already_here": 3, - "GOOGLE_PROTOBUF_VERIFY_VERSION": 1, - "InternalAddGeneratedFile": 1, - "InternalRegisterGeneratedFile": 1, - "InitAsDefaultInstance": 3, - "OnShutdown": 1, - "StaticDescriptorInitializer_protocol_2dbuffer_2eproto": 2, - "static_descriptor_initializer_protocol_2dbuffer_2eproto_": 1, - "kNameFieldNumber": 2, - "Message": 7, - "SharedCtor": 4, - "MergeFrom": 9, - "_cached_size_": 7, - "const_cast": 3, - "string*": 11, - "kEmptyString": 12, - "SharedDtor": 3, - "SetCachedSize": 2, - "GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN": 2, - "GOOGLE_SAFE_CONCURRENT_WRITES_END": 2, - "*default_instance_": 1, - "Person*": 7, - "xffu": 3, - "has_name": 6, - "mutable_unknown_fields": 4, - "MergePartialFromCodedStream": 2, - "io": 4, - "CodedInputStream*": 2, - "DO_": 4, - "EXPRESSION": 2, - "uint32": 2, - "tag": 6, - "ReadTag": 1, - "switch": 3, - "WireFormatLite": 9, - "GetTagFieldNumber": 1, - "GetTagWireType": 2, - "WIRETYPE_LENGTH_DELIMITED": 1, - "ReadString": 1, - "mutable_name": 3, - "WireFormat": 10, - "VerifyUTF8String": 3, - ".data": 3, - ".length": 3, - "PARSE": 1, - "handle_uninterpreted": 2, - "ExpectAtEnd": 1, - "WIRETYPE_END_GROUP": 1, - "SkipField": 1, - "#undef": 3, - "SerializeWithCachedSizes": 2, - "CodedOutputStream*": 2, - "SERIALIZE": 2, - "WriteString": 1, - "unknown_fields": 7, - "SerializeUnknownFields": 1, - "uint8*": 4, - "SerializeWithCachedSizesToArray": 2, - "target": 6, - "WriteStringToArray": 1, - "SerializeUnknownFieldsToArray": 1, - "ByteSize": 2, - "total_size": 5, - "StringSize": 1, - "ComputeUnknownFieldsSize": 1, - "GOOGLE_CHECK_NE": 2, - "dynamic_cast_if_available": 1, - "": 12, - "ReflectionOps": 1, - "Merge": 1, - "from._has_bits_": 1, - "from.has_name": 1, - "set_name": 7, - "from.name": 1, - "from.unknown_fields": 1, - "CopyFrom": 5, - "IsInitialized": 3, - "Swap": 2, - "swap": 3, - "_unknown_fields_.Swap": 1, - "Metadata": 3, - "GetMetadata": 2, - "metadata": 2, - "metadata.descriptor": 1, - "metadata.reflection": 1, - "PROTOBUF_protocol_2dbuffer_2eproto__INCLUDED": 3, - "GOOGLE_PROTOBUF_VERSION": 1, - "generated": 2, - "newer": 2, - "protoc": 2, - "incompatible": 2, - "Protocol": 2, - "headers.": 3, - "update": 1, - "GOOGLE_PROTOBUF_MIN_PROTOC_VERSION": 1, - "older": 1, - "regenerate": 1, - "protoc.": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "virtual": 10, - "*this": 1, - "UnknownFieldSet": 2, - "UnknownFieldSet*": 1, - "GetCachedSize": 1, - "clear_name": 2, - "release_name": 2, - "set_allocated_name": 2, - "set_has_name": 7, - "clear_has_name": 5, - "mutable": 1, - "u": 9, - "*name_": 1, - "assign": 3, - "temp": 2, - "SWIG": 2, - "QSCICOMMAND_H": 2, - "__APPLE__": 4, - "": 1, - "": 2, - "": 1, - "QsciScintilla": 7, - "QsciCommand": 7, - "represents": 1, - "editor": 1, - "command": 9, - "keys": 3, - "bound": 4, - "Methods": 1, - "provided": 1, - "binding.": 1, - "Each": 1, - "friendly": 2, - "description": 3, - "dialogs.": 1, - "QSCINTILLA_EXPORT": 2, - "commands": 1, - "assigned": 1, - "key.": 1, - "Command": 4, - "Move": 26, - "down": 12, - "line.": 33, - "LineDown": 1, - "QsciScintillaBase": 100, - "SCI_LINEDOWN": 1, - "Extend": 33, - "selection": 39, - "LineDownExtend": 1, - "SCI_LINEDOWNEXTEND": 1, - "rectangular": 9, - "LineDownRectExtend": 1, - "SCI_LINEDOWNRECTEXTEND": 1, - "Scroll": 5, - "view": 2, - "LineScrollDown": 1, - "SCI_LINESCROLLDOWN": 1, - "LineUp": 1, - "SCI_LINEUP": 1, - "LineUpExtend": 1, - "SCI_LINEUPEXTEND": 1, - "LineUpRectExtend": 1, - "SCI_LINEUPRECTEXTEND": 1, - "LineScrollUp": 1, - "SCI_LINESCROLLUP": 1, - "document.": 8, - "ScrollToStart": 1, - "SCI_SCROLLTOSTART": 1, - "ScrollToEnd": 1, - "SCI_SCROLLTOEND": 1, - "vertically": 1, - "centre": 1, - "VerticalCentreCaret": 1, - "SCI_VERTICALCENTRECARET": 1, - "paragraph.": 4, - "ParaDown": 1, - "SCI_PARADOWN": 1, - "ParaDownExtend": 1, - "SCI_PARADOWNEXTEND": 1, - "ParaUp": 1, - "SCI_PARAUP": 1, - "ParaUpExtend": 1, - "SCI_PARAUPEXTEND": 1, - "left": 7, - "character.": 9, - "CharLeft": 1, - "SCI_CHARLEFT": 1, - "CharLeftExtend": 1, - "SCI_CHARLEFTEXTEND": 1, - "CharLeftRectExtend": 1, - "SCI_CHARLEFTRECTEXTEND": 1, - "CharRight": 1, - "SCI_CHARRIGHT": 1, - "CharRightExtend": 1, - "SCI_CHARRIGHTEXTEND": 1, - "CharRightRectExtend": 1, - "SCI_CHARRIGHTRECTEXTEND": 1, - "word.": 9, - "WordLeft": 1, - "SCI_WORDLEFT": 1, - "WordLeftExtend": 1, - "SCI_WORDLEFTEXTEND": 1, - "WordRight": 1, - "SCI_WORDRIGHT": 1, - "WordRightExtend": 1, - "SCI_WORDRIGHTEXTEND": 1, - "WordLeftEnd": 1, - "SCI_WORDLEFTEND": 1, - "WordLeftEndExtend": 1, - "SCI_WORDLEFTENDEXTEND": 1, - "WordRightEnd": 1, - "SCI_WORDRIGHTEND": 1, - "WordRightEndExtend": 1, - "SCI_WORDRIGHTENDEXTEND": 1, - "part.": 4, - "WordPartLeft": 1, - "SCI_WORDPARTLEFT": 1, - "WordPartLeftExtend": 1, - "SCI_WORDPARTLEFTEXTEND": 1, - "WordPartRight": 1, - "SCI_WORDPARTRIGHT": 1, - "WordPartRightExtend": 1, - "SCI_WORDPARTRIGHTEXTEND": 1, - "document": 16, - "Home": 1, - "SCI_HOME": 1, - "HomeExtend": 1, - "SCI_HOMEEXTEND": 1, - "HomeRectExtend": 1, - "SCI_HOMERECTEXTEND": 1, - "displayed": 10, - "HomeDisplay": 1, - "SCI_HOMEDISPLAY": 1, - "HomeDisplayExtend": 1, - "SCI_HOMEDISPLAYEXTEND": 1, - "HomeWrap": 1, - "SCI_HOMEWRAP": 1, - "HomeWrapExtend": 1, - "SCI_HOMEWRAPEXTEND": 1, - "visible": 6, - "VCHome": 1, - "SCI_VCHOME": 1, - "VCHomeExtend": 1, - "SCI_VCHOMEEXTEND": 1, - "VCHomeRectExtend": 1, - "SCI_VCHOMERECTEXTEND": 1, - "VCHomeWrap": 1, - "SCI_VCHOMEWRAP": 1, - "VCHomeWrapExtend": 1, - "SCI_VCHOMEWRAPEXTEND": 1, - "LineEnd": 1, - "SCI_LINEEND": 1, - "LineEndExtend": 1, - "SCI_LINEENDEXTEND": 1, - "LineEndRectExtend": 1, - "SCI_LINEENDRECTEXTEND": 1, - "LineEndDisplay": 1, - "SCI_LINEENDDISPLAY": 1, - "LineEndDisplayExtend": 1, - "SCI_LINEENDDISPLAYEXTEND": 1, - "LineEndWrap": 1, - "SCI_LINEENDWRAP": 1, - "LineEndWrapExtend": 1, - "SCI_LINEENDWRAPEXTEND": 1, - "DocumentStart": 1, - "SCI_DOCUMENTSTART": 1, - "DocumentStartExtend": 1, - "SCI_DOCUMENTSTARTEXTEND": 1, - "DocumentEnd": 1, - "SCI_DOCUMENTEND": 1, - "DocumentEndExtend": 1, - "SCI_DOCUMENTENDEXTEND": 1, - "page.": 13, - "PageUp": 1, - "SCI_PAGEUP": 1, - "PageUpExtend": 1, - "SCI_PAGEUPEXTEND": 1, - "PageUpRectExtend": 1, - "SCI_PAGEUPRECTEXTEND": 1, - "PageDown": 1, - "SCI_PAGEDOWN": 1, - "PageDownExtend": 1, - "SCI_PAGEDOWNEXTEND": 1, - "PageDownRectExtend": 1, - "SCI_PAGEDOWNRECTEXTEND": 1, - "Stuttered": 4, - "move": 2, - "StutteredPageUp": 1, - "SCI_STUTTEREDPAGEUP": 1, - "extend": 2, - "StutteredPageUpExtend": 1, - "SCI_STUTTEREDPAGEUPEXTEND": 1, - "StutteredPageDown": 1, - "SCI_STUTTEREDPAGEDOWN": 1, - "StutteredPageDownExtend": 1, - "SCI_STUTTEREDPAGEDOWNEXTEND": 1, - "Delete": 10, - "SCI_CLEAR": 1, - "DeleteBack": 1, - "SCI_DELETEBACK": 1, - "DeleteBackNotLine": 1, - "SCI_DELETEBACKNOTLINE": 1, - "left.": 2, - "DeleteWordLeft": 1, - "SCI_DELWORDLEFT": 1, - "right.": 2, - "DeleteWordRight": 1, - "SCI_DELWORDRIGHT": 1, - "DeleteWordRightEnd": 1, - "SCI_DELWORDRIGHTEND": 1, - "DeleteLineLeft": 1, - "SCI_DELLINELEFT": 1, - "DeleteLineRight": 1, - "SCI_DELLINERIGHT": 1, - "LineDelete": 1, - "SCI_LINEDELETE": 1, - "Cut": 2, - "clipboard.": 5, - "LineCut": 1, - "SCI_LINECUT": 1, - "Copy": 2, - "LineCopy": 1, - "SCI_LINECOPY": 1, - "Transpose": 1, - "lines.": 1, - "LineTranspose": 1, - "SCI_LINETRANSPOSE": 1, - "Duplicate": 2, - "LineDuplicate": 1, - "SCI_LINEDUPLICATE": 1, - "whole": 2, - "SelectAll": 1, - "SCI_SELECTALL": 1, - "lines": 3, - "MoveSelectedLinesUp": 1, - "SCI_MOVESELECTEDLINESUP": 1, - "MoveSelectedLinesDown": 1, - "SCI_MOVESELECTEDLINESDOWN": 1, - "selection.": 1, - "SelectionDuplicate": 1, - "SCI_SELECTIONDUPLICATE": 1, - "Convert": 2, - "lower": 1, - "case.": 2, - "SelectionLowerCase": 1, - "SCI_LOWERCASE": 1, - "upper": 1, - "SelectionUpperCase": 1, - "SCI_UPPERCASE": 1, - "SelectionCut": 1, - "SCI_CUT": 1, - "SelectionCopy": 1, - "SCI_COPY": 1, - "Paste": 2, - "SCI_PASTE": 1, - "Toggle": 1, - "insert/overtype.": 1, - "EditToggleOvertype": 1, - "SCI_EDITTOGGLEOVERTYPE": 1, - "Insert": 2, - "dependent": 1, - "newline.": 1, - "Newline": 1, - "SCI_NEWLINE": 1, - "formfeed.": 1, - "Formfeed": 1, - "SCI_FORMFEED": 1, - "Indent": 1, - "Tab": 1, - "SCI_TAB": 1, - "De": 1, - "indent": 1, - "Backtab": 1, - "SCI_BACKTAB": 1, - "Cancel": 2, - "SCI_CANCEL": 1, - "Undo": 2, - "command.": 5, - "SCI_UNDO": 1, - "Redo": 2, - "SCI_REDO": 1, - "Zoom": 2, - "in.": 1, - "ZoomIn": 1, - "SCI_ZOOMIN": 1, - "out.": 1, - "ZoomOut": 1, - "SCI_ZOOMOUT": 1, - "Return": 3, - "executed": 1, - "instance.": 2, - "scicmd": 2, - "Execute": 1, - "Binds": 2, - "binding": 3, - "removed.": 2, - "invalid": 5, - "unchanged.": 1, - "Valid": 1, - "Key_Down": 1, - "Key_Up": 1, - "Key_Left": 1, - "Key_Right": 1, - "Key_Home": 1, - "Key_End": 1, - "Key_PageUp": 1, - "Key_PageDown": 1, - "Key_Delete": 1, - "Key_Insert": 1, - "Key_Escape": 1, - "Key_Backspace": 1, - "Key_Tab": 1, - "Key_Return.": 1, - "Keys": 1, - "SHIFT": 1, - "CTRL": 1, - "ALT": 1, - "META.": 1, - "setAlternateKey": 3, - "validKey": 3, - "setKey": 3, - "altkey": 3, - "alternateKey": 3, - "returned.": 4, - "qkey": 2, - "qaltkey": 2, - "valid": 2, - "QsciCommandSet": 1, - "*qs": 1, - "cmd": 1, - "*desc": 1, - "bindKey": 1, - "qk": 1, - "scik": 1, - "*qsCmd": 1, - "scikey": 1, - "scialtkey": 1, - "*descCmd": 1, - "QSCIPRINTER_H": 2, - "": 1, - "": 1, - "QT_BEGIN_NAMESPACE": 1, - "QRect": 2, - "QPainter": 2, - "QT_END_NAMESPACE": 1, - "QsciPrinter": 9, - "sub": 2, - "Qt": 1, - "QPrinter": 3, - "text": 5, - "Scintilla": 2, - "further": 1, - "classed": 1, - "layout": 1, - "adding": 2, - "headers": 3, - "footers": 2, - "example.": 1, - "Constructs": 1, - "printer": 1, - "paint": 1, - "PrinterMode": 1, - "ScreenResolution": 1, - "Destroys": 1, - "Format": 1, - "drawn": 2, - "painter": 4, - "add": 3, - "customised": 2, - "graphics.": 2, - "drawing": 4, - "actually": 1, - "sized.": 1, - "area": 5, - "draw": 1, - "text.": 3, - "necessary": 1, - "reserve": 1, - "By": 1, - "printable": 1, - "setFullPage": 1, - "because": 2, - "printRange": 2, - "try": 1, - "over": 1, - "pagenr": 2, - "numbered": 1, - "formatPage": 1, - "points": 2, - "font": 2, - "printing.": 2, - "setMagnification": 2, - "magnification": 3, - "mag": 2, - "printing": 2, - "magnification.": 1, - "qsb.": 1, - "negative": 2, - "signifies": 2, - "error.": 1, - "*qsb": 1, - "wrap": 4, - "WrapWord.": 1, - "setWrapMode": 2, - "WrapMode": 3, - "wrapMode": 2, - "wmode.": 1, - "wmode": 1, - "": 2, - "Gui": 1, - "rpc_init": 1, - "rpc_server_loop": 1, - "v8": 9, - "Scanner": 16, - "UnicodeCache*": 4, - "unicode_cache": 3, - "unicode_cache_": 10, - "octal_pos_": 5, - "Location": 14, - "harmony_scoping_": 4, - "harmony_modules_": 4, - "Initialize": 4, - "Utf16CharacterStream*": 3, - "source_": 7, - "Init": 3, - "has_line_terminator_before_next_": 9, - "SkipWhiteSpace": 4, - "Scan": 5, - "uc32": 19, - "ScanHexNumber": 2, - "expected_length": 4, - "ASSERT": 17, - "overflow": 1, - "c0_": 64, - "d": 8, - "HexValue": 2, - "PushBack": 8, - "Advance": 44, - "STATIC_ASSERT": 5, - "Token": 212, - "NUM_TOKENS": 1, - "one_char_tokens": 2, - "ILLEGAL": 120, - "LPAREN": 2, - "RPAREN": 2, - "COMMA": 2, - "COLON": 2, - "SEMICOLON": 2, - "CONDITIONAL": 2, - "LBRACK": 2, - "RBRACK": 2, - "LBRACE": 2, - "RBRACE": 2, - "BIT_NOT": 2, - "Next": 3, - "current_": 2, - "has_multiline_comment_before_next_": 5, - "token": 64, - "": 1, - "pos": 12, - "source_pos": 10, - "next_.token": 3, - "next_.location.beg_pos": 3, - "next_.location.end_pos": 4, - "current_.token": 4, - "IsByteOrderMark": 2, - "xFEFF": 1, - "xFFFE": 1, - "start_position": 2, - "IsWhiteSpace": 2, - "IsLineTerminator": 6, - "SkipSingleLineComment": 6, - "undo": 4, - "WHITESPACE": 6, - "SkipMultiLineComment": 3, - "ch": 5, - "ScanHtmlComment": 3, - "LT": 2, - "next_.literal_chars": 13, - "ScanString": 3, - "LTE": 1, - "ASSIGN_SHL": 1, - "SHL": 1, - "GTE": 1, - "ASSIGN_SAR": 1, - "ASSIGN_SHR": 1, - "SHR": 1, - "SAR": 1, - "GT": 1, - "EQ_STRICT": 1, - "EQ": 1, - "ASSIGN": 1, - "NE_STRICT": 1, - "NE": 1, - "INC": 1, - "ASSIGN_ADD": 1, - "ADD": 1, - "DEC": 1, - "ASSIGN_SUB": 1, - "SUB": 1, - "ASSIGN_MUL": 1, - "MUL": 1, - "ASSIGN_MOD": 1, - "MOD": 1, - "ASSIGN_DIV": 1, - "DIV": 1, - "AND": 1, - "ASSIGN_BIT_AND": 1, - "BIT_AND": 1, - "OR": 1, - "ASSIGN_BIT_OR": 1, - "BIT_OR": 1, - "ASSIGN_BIT_XOR": 1, - "BIT_XOR": 1, - "IsDecimalDigit": 2, - "ScanNumber": 3, - "PERIOD": 1, - "IsIdentifierStart": 2, - "ScanIdentifierOrKeyword": 2, - "EOS": 1, - "SeekForward": 4, - "current_pos": 4, - "ASSERT_EQ": 1, - "ScanEscape": 2, - "IsCarriageReturn": 2, - "IsLineFeed": 2, - "fall": 2, - "xxx": 1, - "immediately": 1, - "octal": 1, - "escape": 1, - "quote": 3, - "consume": 2, - "LiteralScope": 4, - "literal": 2, - "X": 2, - "E": 3, - "l": 1, - "w": 1, - "keyword": 1, - "Unescaped": 1, - "in_character_class": 2, - "AddLiteralCharAdvance": 3, - "literal.Complete": 2, - "ScanLiteralUnicodeEscape": 3, - "V8_SCANNER_H_": 3, - "ParsingFlags": 1, - "kNoParsingFlags": 1, - "kLanguageModeMask": 4, - "kAllowLazy": 1, - "kAllowNativesSyntax": 1, - "kAllowModules": 1, - "CLASSIC_MODE": 2, - "STRICT_MODE": 2, - "EXTENDED_MODE": 2, - "x16": 1, - "x36.": 1, - "Utf16CharacterStream": 3, - "pos_": 6, - "buffer_cursor_": 5, - "buffer_end_": 3, - "ReadBlock": 2, - "": 1, - "kEndOfInput": 2, - "code_unit_count": 7, - "buffered_chars": 2, - "SlowSeekForward": 2, - "int32_t": 1, - "code_unit": 6, - "uc16*": 3, - "UnicodeCache": 3, - "unibrow": 11, - "Utf8InputBuffer": 2, - "<1024>": 2, - "Utf8Decoder": 2, - "StaticResource": 2, - "": 2, - "utf8_decoder": 1, - "utf8_decoder_": 2, - "uchar": 4, - "kIsIdentifierStart.get": 1, - "IsIdentifierPart": 1, - "kIsIdentifierPart.get": 1, - "kIsLineTerminator.get": 1, - "kIsWhiteSpace.get": 1, - "Predicate": 4, - "": 1, - "128": 4, - "kIsIdentifierStart": 1, - "": 1, - "kIsIdentifierPart": 1, - "": 1, - "kIsLineTerminator": 1, - "": 1, - "kIsWhiteSpace": 1, - "DISALLOW_COPY_AND_ASSIGN": 2, - "LiteralBuffer": 6, - "is_ascii_": 10, - "position_": 17, - "backing_store_": 7, - "backing_store_.length": 4, - "backing_store_.Dispose": 3, - "INLINE": 2, - "AddChar": 2, - "ExpandBuffer": 2, - "kMaxAsciiCharCodeU": 1, - "": 6, - "kASCIISize": 1, - "ConvertToUtf16": 2, - "": 2, - "kUC16Size": 2, - "is_ascii": 3, - "Vector": 13, - "uc16": 5, - "utf16_literal": 3, - "backing_store_.start": 5, - "ascii_literal": 3, - "kInitialCapacity": 2, - "kGrowthFactory": 2, - "kMinConversionSlack": 1, - "kMaxGrowth": 2, - "MB": 1, - "NewCapacity": 3, - "min_capacity": 2, - "capacity": 3, - "Max": 1, - "new_capacity": 2, - "Min": 1, - "new_store": 6, - "memcpy": 1, - "new_store.start": 3, - "new_content_size": 4, - "src": 2, - "": 1, - "dst": 2, - "Scanner*": 2, - "self": 5, - "scanner_": 5, - "complete_": 4, - "StartLiteral": 2, - "DropLiteral": 2, - "Complete": 1, - "TerminateLiteral": 2, - "beg_pos": 5, - "end_pos": 4, - "kNoOctalLocation": 1, - "scanner_contants": 1, - "current_token": 1, - "current_.location": 2, - "literal_ascii_string": 1, - "ASSERT_NOT_NULL": 9, - "current_.literal_chars": 11, - "literal_utf16_string": 1, - "is_literal_ascii": 1, - "literal_length": 1, - "literal_contains_escapes": 1, - "source_length": 3, - "location.end_pos": 1, - "location.beg_pos": 1, - "STRING": 1, - "peek": 1, - "peek_location": 1, - "next_.location": 1, - "next_literal_ascii_string": 1, - "next_literal_utf16_string": 1, - "is_next_literal_ascii": 1, - "next_literal_length": 1, - "kCharacterLookaheadBufferSize": 3, - "ScanOctalEscape": 1, - "octal_position": 1, - "clear_octal_position": 1, - "HarmonyScoping": 1, - "SetHarmonyScoping": 1, - "scoping": 2, - "HarmonyModules": 1, - "SetHarmonyModules": 1, - "modules": 2, - "HasAnyLineTerminatorBeforeNext": 1, - "ScanRegExpPattern": 1, - "seen_equal": 1, - "ScanRegExpFlags": 1, - "IsIdentifier": 1, - "CharacterStream*": 1, - "TokenDesc": 3, - "LiteralBuffer*": 2, - "literal_chars": 1, - "free_buffer": 3, - "literal_buffer1_": 3, - "literal_buffer2_": 2, - "AddLiteralChar": 2, - "tok": 2, - "else_": 2, - "ScanDecimalDigits": 1, - "seen_period": 1, - "ScanIdentifierSuffix": 1, - "LiteralScope*": 1, - "ScanIdentifierUnicodeEscape": 1, - "desc": 2, - "look": 1, - "ahead": 1, - "smallPrime_t": 1, - "UTILS_H": 3, - "": 1, - "": 1, - "": 1, - "QTemporaryFile": 1, - "showUsage": 1, - "QtMsgType": 1, - "dump_path": 1, - "minidump_id": 1, - "context": 8, - "QVariant": 1, - "coffee2js": 1, - "script": 1, - "injectJsInFrame": 2, - "jsFilePath": 5, - "libraryPath": 5, - "QWebFrame": 4, - "*targetFrame": 4, - "startingScript": 2, - "Encoding": 3, - "jsFileEnc": 2, - "readResourceFileUtf8": 1, - "resourceFilePath": 1, - "loadJSForDebug": 2, - "autorun": 2, - "cleanupFromDebug": 1, - "findScript": 1, - "jsFromScriptFile": 1, - "scriptPath": 1, - "enc": 1, - "shouldn": 1, - "instantiated": 1, - "QTemporaryFile*": 2, - "m_tempHarness": 1, - "We": 1, - "ourselves": 1, - "m_tempWrapper": 1, - "V8_DECLARE_ONCE": 1, - "init_once": 2, - "V8": 21, - "is_running_": 6, - "has_been_set_up_": 4, - "has_been_disposed_": 6, - "has_fatal_error_": 5, - "use_crankshaft_": 6, - "List": 3, - "": 3, - "call_completed_callbacks_": 16, - "LazyMutex": 1, - "entropy_mutex": 1, - "LAZY_MUTEX_INITIALIZER": 1, - "EntropySource": 3, - "entropy_source": 4, - "Deserializer*": 2, - "des": 3, - "FlagList": 1, - "EnforceFlagImplications": 1, - "InitializeOncePerProcess": 4, - "Isolate": 9, - "CurrentPerIsolateThreadData": 4, - "EnterDefaultIsolate": 1, - "thread_id": 1, - ".Equals": 1, - "ThreadId": 1, - "Current": 5, - "isolate": 15, - "IsDead": 2, - "Isolate*": 6, - "SetFatalError": 2, - "TearDown": 5, - "IsDefaultIsolate": 1, - "ElementsAccessor": 2, - "LOperand": 2, - "TearDownCaches": 1, - "RegisteredExtension": 1, - "UnregisterAll": 1, - "OS": 3, - "seed_random": 2, - "FLAG_random_seed": 2, - "val": 3, - "ScopedLock": 1, - "entropy_mutex.Pointer": 1, - "random": 1, - "random_base": 3, - "xFFFF": 2, - "FFFF": 1, - "SetEntropySource": 2, - "SetReturnAddressLocationResolver": 3, - "ReturnAddressLocationResolver": 2, - "resolver": 3, - "StackFrame": 1, - "Random": 3, - "Context*": 4, - "IsGlobalContext": 1, - "ByteArray*": 1, - "seed": 2, - "random_seed": 1, - "": 1, - "GetDataStartAddress": 1, - "RandomPrivate": 2, - "private_random_seed": 1, - "IdleNotification": 3, - "hint": 3, - "FLAG_use_idle_notification": 1, - "HEAP": 1, - "AddCallCompletedCallback": 2, - "CallCompletedCallback": 4, - "callback": 7, - "Lazy": 1, - "init.": 1, - "Add": 1, - "RemoveCallCompletedCallback": 2, - "Remove": 1, - "FireCallCompletedCallback": 2, - "HandleScopeImplementer*": 1, - "handle_scope_implementer": 5, - "CallDepthIsZero": 1, - "IncrementCallDepth": 1, - "DecrementCallDepth": 1, - "union": 1, - "double_value": 1, - "uint64_t_value": 1, - "double_int_union": 2, - "Object*": 4, - "FillHeapNumberWithRandom": 2, - "heap_number": 4, - "random_bits": 2, - "binary_million": 3, - "r.double_value": 3, - "r.uint64_t_value": 1, - "HeapNumber": 1, - "set_value": 1, - "InitializeOncePerProcessImpl": 3, - "SetUp": 4, - "FLAG_crankshaft": 1, - "Serializer": 1, - "SupportsCrankshaft": 1, - "PostSetUp": 1, - "RuntimeProfiler": 1, - "GlobalSetUp": 1, - "FLAG_stress_compaction": 1, - "FLAG_force_marking_deque_overflows": 1, - "FLAG_gc_global": 1, - "FLAG_max_new_space_size": 1, - "kPageSizeBits": 1, - "SetUpCaches": 1, - "SetUpJSCallerSavedCodeData": 1, - "SamplerRegistry": 1, - "ExternalReference": 1, - "CallOnce": 1, - "V8_V8_H_": 3, - "GOOGLE3": 2, - "NDEBUG": 4, - "both": 1, - "Deserializer": 1, - "AllStatic": 1, - "IsRunning": 1, - "UseCrankshaft": 1, - "FatalProcessOutOfMemory": 1, - "take_snapshot": 1, - "NilValue": 1, - "kNullValue": 1, - "kUndefinedValue": 1, - "EqualityKind": 1, - "kStrictEquality": 1, - "kNonStrictEquality": 1, - "PY_SSIZE_T_CLEAN": 1, - "Py_PYTHON_H": 1, - "Python": 1, - "compile": 1, - "extensions": 1, - "development": 1, - "Python.": 1, - "": 1, - "offsetof": 2, - "member": 2, - "type*": 1, - "WIN32": 2, - "MS_WINDOWS": 2, - "__stdcall": 2, - "__cdecl": 2, - "__fastcall": 2, - "DL_IMPORT": 2, - "DL_EXPORT": 2, - "PY_LONG_LONG": 5, - "LONG_LONG": 1, - "PY_VERSION_HEX": 9, - "METH_COEXIST": 1, - "PyDict_CheckExact": 1, - "Py_TYPE": 4, - "PyDict_Type": 1, - "PyDict_Contains": 1, - "o": 20, - "PySequence_Contains": 1, - "Py_ssize_t": 17, - "PY_SSIZE_T_MAX": 1, - "INT_MAX": 1, - "PY_SSIZE_T_MIN": 1, - "INT_MIN": 1, - "PY_FORMAT_SIZE_T": 1, - "PyInt_FromSsize_t": 2, - "z": 46, - "PyInt_FromLong": 13, - "PyInt_AsSsize_t": 2, - "PyInt_AsLong": 2, - "PyNumber_Index": 1, - "PyNumber_Int": 1, - "PyIndex_Check": 1, - "PyNumber_Check": 1, - "PyErr_WarnEx": 1, - "category": 2, - "message": 2, - "stacklevel": 1, - "PyErr_Warn": 1, - "Py_REFCNT": 1, - "ob": 6, - "PyObject*": 16, - "ob_refcnt": 1, - "ob_type": 7, - "Py_SIZE": 1, - "PyVarObject*": 1, - "ob_size": 1, - "PyVarObject_HEAD_INIT": 1, - "PyObject_HEAD_INIT": 1, - "PyType_Modified": 1, - "*buf": 1, - "PyObject": 221, - "*obj": 2, - "itemsize": 2, - "ndim": 2, - "*format": 1, - "*shape": 1, - "*strides": 1, - "*suboffsets": 1, - "*internal": 1, - "Py_buffer": 5, - "PyBUF_SIMPLE": 1, - "PyBUF_WRITABLE": 1, - "PyBUF_FORMAT": 1, - "PyBUF_ND": 2, - "PyBUF_STRIDES": 5, - "PyBUF_C_CONTIGUOUS": 3, - "PyBUF_F_CONTIGUOUS": 3, - "PyBUF_ANY_CONTIGUOUS": 1, - "PyBUF_INDIRECT": 1, - "PY_MAJOR_VERSION": 10, - "__Pyx_BUILTIN_MODULE_NAME": 2, - "Py_TPFLAGS_CHECKTYPES": 1, - "Py_TPFLAGS_HAVE_INDEX": 1, - "Py_TPFLAGS_HAVE_NEWBUFFER": 1, - "PyBaseString_Type": 1, - "PyUnicode_Type": 2, - "PyStringObject": 2, - "PyUnicodeObject": 1, - "PyString_Type": 2, - "PyString_Check": 2, - "PyUnicode_Check": 1, - "PyString_CheckExact": 2, - "PyUnicode_CheckExact": 1, - "PyBytesObject": 1, - "PyBytes_Type": 1, - "PyBytes_Check": 1, - "PyBytes_CheckExact": 1, - "PyBytes_FromString": 2, - "PyString_FromString": 1, - "PyBytes_FromStringAndSize": 1, - "PyString_FromStringAndSize": 1, - "PyBytes_FromFormat": 1, - "PyString_FromFormat": 1, - "PyBytes_DecodeEscape": 1, - "PyString_DecodeEscape": 1, - "PyBytes_AsString": 2, - "PyString_AsString": 1, - "PyBytes_AsStringAndSize": 1, - "PyString_AsStringAndSize": 1, - "PyBytes_Size": 1, - "PyString_Size": 1, - "PyBytes_AS_STRING": 1, - "PyString_AS_STRING": 1, - "PyBytes_GET_SIZE": 1, - "PyString_GET_SIZE": 1, - "PyBytes_Repr": 1, - "PyString_Repr": 1, - "PyBytes_Concat": 1, - "PyString_Concat": 1, - "PyBytes_ConcatAndDel": 1, - "PyString_ConcatAndDel": 1, - "PySet_Check": 1, - "obj": 42, - "PyObject_TypeCheck": 3, - "PySet_Type": 2, - "PyFrozenSet_Check": 1, - "PyFrozenSet_Type": 1, - "PySet_CheckExact": 2, - "__Pyx_TypeCheck": 1, - "PyTypeObject": 2, - "PyIntObject": 1, - "PyLongObject": 2, - "PyInt_Type": 1, - "PyLong_Type": 1, - "PyInt_Check": 1, - "PyLong_Check": 1, - "PyInt_CheckExact": 1, - "PyLong_CheckExact": 1, - "PyInt_FromString": 1, - "PyLong_FromString": 1, - "PyInt_FromUnicode": 1, - "PyLong_FromUnicode": 1, - "PyLong_FromLong": 1, - "PyInt_FromSize_t": 1, - "PyLong_FromSize_t": 1, - "PyLong_FromSsize_t": 1, - "PyLong_AsLong": 1, - "PyInt_AS_LONG": 1, - "PyLong_AS_LONG": 1, - "PyLong_AsSsize_t": 1, - "PyInt_AsUnsignedLongMask": 1, - "PyLong_AsUnsignedLongMask": 1, - "PyInt_AsUnsignedLongLongMask": 1, - "PyLong_AsUnsignedLongLongMask": 1, - "PyBoolObject": 1, - "__Pyx_PyNumber_Divide": 2, - "PyNumber_TrueDivide": 1, - "__Pyx_PyNumber_InPlaceDivide": 2, - "PyNumber_InPlaceTrueDivide": 1, - "PyNumber_Divide": 1, - "PyNumber_InPlaceDivide": 1, - "__Pyx_PySequence_GetSlice": 2, - "PySequence_GetSlice": 2, - "__Pyx_PySequence_SetSlice": 2, - "PySequence_SetSlice": 2, - "__Pyx_PySequence_DelSlice": 2, - "PySequence_DelSlice": 2, - "unlikely": 69, - "PyErr_SetString": 4, - "PyExc_SystemError": 3, - "likely": 15, - "tp_as_mapping": 3, - "PyErr_Format": 4, - "PyExc_TypeError": 5, - "tp_name": 4, - "PyMethod_New": 2, - "func": 3, - "klass": 1, - "PyInstanceMethod_New": 1, - "__Pyx_GetAttrString": 2, - "PyObject_GetAttrString": 3, - "__Pyx_SetAttrString": 2, - "PyObject_SetAttrString": 2, - "__Pyx_DelAttrString": 2, - "PyObject_DelAttrString": 2, - "__Pyx_NAMESTR": 3, - "__Pyx_DOCSTR": 3, - "__PYX_EXTERN_C": 2, - "_USE_MATH_DEFINES": 1, - "": 1, - "__PYX_HAVE_API__wrapper_inner": 1, - "PYREX_WITHOUT_ASSERTIONS": 1, - "CYTHON_WITHOUT_ASSERTIONS": 1, - "CYTHON_INLINE": 68, - "__GNUC__": 5, - "__inline__": 1, - "__inline": 1, - "__STDC_VERSION__": 2, - "L": 1, - "CYTHON_UNUSED": 7, - "**p": 1, - "*s": 1, - "encoding": 1, - "is_unicode": 1, - "is_str": 1, - "intern": 1, - "__Pyx_StringTabEntry": 1, - "__Pyx_PyBytes_FromUString": 1, - "__Pyx_PyBytes_AsUString": 1, - "__Pyx_PyBool_FromLong": 1, - "Py_INCREF": 3, - "Py_True": 2, - "Py_False": 2, - "__Pyx_PyObject_IsTrue": 8, - "__Pyx_PyNumber_Int": 1, - "__Pyx_PyIndex_AsSsize_t": 1, - "__Pyx_PyInt_FromSize_t": 1, - "__Pyx_PyInt_AsSize_t": 1, - "__pyx_PyFloat_AsDouble": 3, - "PyFloat_CheckExact": 1, - "PyFloat_AS_DOUBLE": 1, - "PyFloat_AsDouble": 1, - "__GNUC_MINOR__": 1, - "__builtin_expect": 2, - "*__pyx_m": 1, - "*__pyx_b": 1, - "*__pyx_empty_tuple": 1, - "*__pyx_empty_bytes": 1, - "__pyx_lineno": 80, - "__pyx_clineno": 80, - "__pyx_cfilenm": 1, - "__FILE__": 2, - "*__pyx_filename": 1, - "CYTHON_CCOMPLEX": 12, - "_Complex_I": 3, - "": 1, - "": 1, - "__sun__": 1, - "fj": 1, - "*__pyx_f": 1, - "npy_int8": 1, - "__pyx_t_5numpy_int8_t": 1, - "npy_int16": 1, - "__pyx_t_5numpy_int16_t": 1, - "npy_int32": 1, - "__pyx_t_5numpy_int32_t": 1, - "npy_int64": 1, - "__pyx_t_5numpy_int64_t": 1, - "npy_uint8": 1, - "__pyx_t_5numpy_uint8_t": 1, - "npy_uint16": 1, - "__pyx_t_5numpy_uint16_t": 1, - "npy_uint32": 1, - "__pyx_t_5numpy_uint32_t": 1, - "npy_uint64": 1, - "__pyx_t_5numpy_uint64_t": 1, - "npy_float32": 1, - "__pyx_t_5numpy_float32_t": 1, - "npy_float64": 1, - "__pyx_t_5numpy_float64_t": 1, - "npy_long": 1, - "__pyx_t_5numpy_int_t": 1, - "npy_longlong": 1, - "__pyx_t_5numpy_long_t": 1, - "npy_intp": 10, - "__pyx_t_5numpy_intp_t": 1, - "npy_uintp": 1, - "__pyx_t_5numpy_uintp_t": 1, - "npy_ulong": 1, - "__pyx_t_5numpy_uint_t": 1, - "npy_ulonglong": 1, - "__pyx_t_5numpy_ulong_t": 1, - "npy_double": 2, - "__pyx_t_5numpy_float_t": 1, - "__pyx_t_5numpy_double_t": 1, - "npy_longdouble": 1, - "__pyx_t_5numpy_longdouble_t": 1, - "complex": 2, - "__pyx_t_float_complex": 27, - "_Complex": 2, - "imag": 2, - "__pyx_t_double_complex": 27, - "npy_cfloat": 1, - "__pyx_t_5numpy_cfloat_t": 1, - "npy_cdouble": 2, - "__pyx_t_5numpy_cdouble_t": 1, - "npy_clongdouble": 1, - "__pyx_t_5numpy_clongdouble_t": 1, - "__pyx_t_5numpy_complex_t": 1, - "CYTHON_REFNANNY": 3, - "__Pyx_RefNannyAPIStruct": 4, - "*__Pyx_RefNanny": 1, - "__Pyx_RefNannyImportAPI": 1, - "*modname": 1, - "*m": 1, - "*p": 1, - "*r": 1, - "m": 4, - "PyImport_ImportModule": 1, - "modname": 1, - "PyLong_AsVoidPtr": 1, - "Py_XDECREF": 3, - "__Pyx_RefNannySetupContext": 13, - "*__pyx_refnanny": 1, - "__Pyx_RefNanny": 6, - "SetupContext": 1, - "__LINE__": 84, - "__Pyx_RefNannyFinishContext": 12, - "FinishContext": 1, - "__pyx_refnanny": 5, - "__Pyx_INCREF": 36, - "INCREF": 1, - "__Pyx_DECREF": 66, - "DECREF": 1, - "__Pyx_GOTREF": 60, - "GOTREF": 1, - "__Pyx_GIVEREF": 10, - "GIVEREF": 1, - "__Pyx_XDECREF": 26, - "Py_DECREF": 1, - "__Pyx_XGIVEREF": 7, - "__Pyx_XGOTREF": 1, - "__Pyx_TypeTest": 4, - "*type": 3, - "*__Pyx_GetName": 1, - "*dict": 1, - "__Pyx_ErrRestore": 1, - "*value": 2, - "*tb": 2, - "__Pyx_ErrFetch": 1, - "**type": 1, - "**value": 1, - "**tb": 1, - "__Pyx_Raise": 8, - "__Pyx_RaiseNoneNotIterableError": 1, - "__Pyx_RaiseNeedMoreValuesError": 1, - "index": 2, - "__Pyx_RaiseTooManyValuesError": 1, - "expected": 1, - "__Pyx_UnpackTupleError": 2, - "*__Pyx_Import": 1, - "*from_list": 1, - "__Pyx_Print": 1, - "__pyx_print": 1, - "__pyx_print_kwargs": 1, - "__Pyx_PrintOne": 4, - "*o": 1, - "*__Pyx_PyInt_to_py_Py_intptr_t": 1, - "Py_intptr_t": 1, - "__Pyx_CREAL": 4, - ".real": 3, - "__Pyx_CIMAG": 4, - ".imag": 3, - "__real__": 1, - "__imag__": 1, - "_WIN32": 1, - "__Pyx_SET_CREAL": 2, - "__Pyx_SET_CIMAG": 2, - "__pyx_t_float_complex_from_parts": 1, - "__Pyx_c_eqf": 2, - "__Pyx_c_sumf": 2, - "__Pyx_c_difff": 2, - "__Pyx_c_prodf": 2, - "__Pyx_c_quotf": 2, - "__Pyx_c_negf": 2, - "__Pyx_c_is_zerof": 3, - "__Pyx_c_conjf": 3, - "conj": 3, - "__Pyx_c_absf": 3, - "abs": 2, - "__Pyx_c_powf": 3, - "pow": 2, - "conjf": 1, - "cabsf": 1, - "cpowf": 1, - "__pyx_t_double_complex_from_parts": 1, - "__Pyx_c_eq": 2, - "__Pyx_c_sum": 2, - "__Pyx_c_diff": 2, - "__Pyx_c_prod": 2, - "__Pyx_c_quot": 2, - "__Pyx_c_neg": 2, - "__Pyx_c_is_zero": 3, - "__Pyx_c_conj": 3, - "__Pyx_c_abs": 3, - "__Pyx_c_pow": 3, - "cabs": 1, - "cpow": 1, - "__Pyx_PyInt_AsUnsignedChar": 1, - "__Pyx_PyInt_AsUnsignedShort": 1, - "__Pyx_PyInt_AsUnsignedInt": 1, - "__Pyx_PyInt_AsChar": 1, - "__Pyx_PyInt_AsShort": 1, - "__Pyx_PyInt_AsInt": 1, - "signed": 5, - "__Pyx_PyInt_AsSignedChar": 1, - "__Pyx_PyInt_AsSignedShort": 1, - "__Pyx_PyInt_AsSignedInt": 1, - "__Pyx_PyInt_AsLongDouble": 1, - "__Pyx_PyInt_AsUnsignedLong": 1, - "__Pyx_PyInt_AsUnsignedLongLong": 1, - "__Pyx_PyInt_AsLong": 1, - "__Pyx_PyInt_AsLongLong": 1, - "__Pyx_PyInt_AsSignedLong": 1, - "__Pyx_PyInt_AsSignedLongLong": 1, - "__Pyx_WriteUnraisable": 3, - "__Pyx_ExportFunction": 1, - "*__pyx_f_5numpy_PyArray_MultiIterNew2": 2, - "*__pyx_f_5numpy_PyArray_MultiIterNew3": 2, - "*__pyx_f_5numpy_PyArray_MultiIterNew4": 2, - "*__pyx_f_5numpy_PyArray_MultiIterNew5": 2, - "*__pyx_f_5numpy__util_dtypestring": 2, - "PyArray_Descr": 6, - "__pyx_f_5numpy_set_array_base": 1, - "PyArrayObject": 19, - "*__pyx_f_5numpy_get_array_base": 1, - "inner_work_1d": 2, - "inner_work_2d": 2, - "__Pyx_MODULE_NAME": 1, - "__pyx_module_is_main_wrapper_inner": 1, - "*__pyx_builtin_ValueError": 1, - "*__pyx_builtin_range": 1, - "*__pyx_builtin_RuntimeError": 1, - "__pyx_k_1": 1, - "__pyx_k_2": 1, - "__pyx_k_3": 1, - "__pyx_k_5": 1, - "__pyx_k_7": 1, - "__pyx_k_9": 1, - "__pyx_k_11": 1, - "__pyx_k_12": 1, - "__pyx_k_15": 1, - "__pyx_k__B": 2, - "__pyx_k__H": 2, - "__pyx_k__I": 2, - "__pyx_k__L": 2, - "__pyx_k__O": 2, - "__pyx_k__Q": 2, - "__pyx_k__b": 2, - "__pyx_k__d": 2, - "__pyx_k__f": 2, - "__pyx_k__g": 2, - "__pyx_k__h": 2, - "__pyx_k__i": 2, - "__pyx_k__l": 2, - "__pyx_k__q": 2, - "__pyx_k__Zd": 2, - "__pyx_k__Zf": 2, - "__pyx_k__Zg": 2, - "__pyx_k__np": 1, - "__pyx_k__buf": 1, - "__pyx_k__obj": 1, - "__pyx_k__base": 1, - "__pyx_k__ndim": 1, - "__pyx_k__ones": 1, - "__pyx_k__descr": 1, - "__pyx_k__names": 1, - "__pyx_k__numpy": 1, - "__pyx_k__range": 1, - "__pyx_k__shape": 1, - "__pyx_k__fields": 1, - "__pyx_k__format": 1, - "__pyx_k__strides": 1, - "__pyx_k____main__": 1, - "__pyx_k____test__": 1, - "__pyx_k__itemsize": 1, - "__pyx_k__readonly": 1, - "__pyx_k__type_num": 1, - "__pyx_k__byteorder": 1, - "__pyx_k__ValueError": 1, - "__pyx_k__suboffsets": 1, - "__pyx_k__work_module": 1, - "__pyx_k__RuntimeError": 1, - "__pyx_k__pure_py_test": 1, - "__pyx_k__wrapper_inner": 1, - "__pyx_k__do_awesome_work": 1, - "*__pyx_kp_s_1": 1, - "*__pyx_kp_u_11": 1, - "*__pyx_kp_u_12": 1, - "*__pyx_kp_u_15": 1, - "*__pyx_kp_s_2": 1, - "*__pyx_kp_s_3": 1, - "*__pyx_kp_u_5": 1, - "*__pyx_kp_u_7": 1, - "*__pyx_kp_u_9": 1, - "*__pyx_n_s__RuntimeError": 1, - "*__pyx_n_s__ValueError": 1, - "*__pyx_n_s____main__": 1, - "*__pyx_n_s____test__": 1, - "*__pyx_n_s__base": 1, - "*__pyx_n_s__buf": 1, - "*__pyx_n_s__byteorder": 1, - "*__pyx_n_s__descr": 1, - "*__pyx_n_s__do_awesome_work": 1, - "*__pyx_n_s__fields": 1, - "*__pyx_n_s__format": 1, - "*__pyx_n_s__itemsize": 1, - "*__pyx_n_s__names": 1, - "*__pyx_n_s__ndim": 1, - "*__pyx_n_s__np": 1, - "*__pyx_n_s__numpy": 1, - "*__pyx_n_s__obj": 1, - "*__pyx_n_s__ones": 1, - "*__pyx_n_s__pure_py_test": 1, - "*__pyx_n_s__range": 1, - "*__pyx_n_s__readonly": 1, - "*__pyx_n_s__shape": 1, - "*__pyx_n_s__strides": 1, - "*__pyx_n_s__suboffsets": 1, - "*__pyx_n_s__type_num": 1, - "*__pyx_n_s__work_module": 1, - "*__pyx_n_s__wrapper_inner": 1, - "*__pyx_int_5": 1, - "*__pyx_int_15": 1, - "*__pyx_k_tuple_4": 1, - "*__pyx_k_tuple_6": 1, - "*__pyx_k_tuple_8": 1, - "*__pyx_k_tuple_10": 1, - "*__pyx_k_tuple_13": 1, - "*__pyx_k_tuple_14": 1, - "*__pyx_k_tuple_16": 1, - "__pyx_v_num_x": 4, - "*__pyx_v_data_ptr": 2, - "*__pyx_v_answer_ptr": 2, - "__pyx_v_nd": 6, - "*__pyx_v_dims": 2, - "__pyx_v_typenum": 6, - "*__pyx_v_data_np": 2, - "__pyx_v_sum": 6, - "__pyx_t_1": 154, - "*__pyx_t_2": 4, - "*__pyx_t_3": 4, - "*__pyx_t_4": 3, - "__pyx_t_5": 75, - "__pyx_kp_s_1": 1, - "__pyx_filename": 79, - "__pyx_f": 79, - "__pyx_L1_error": 88, - "__pyx_v_dims": 4, - "NPY_DOUBLE": 3, - "__pyx_t_2": 120, - "PyArray_SimpleNewFromData": 2, - "__pyx_v_data_ptr": 2, - "Py_None": 38, - "__pyx_ptype_5numpy_ndarray": 2, - "__pyx_v_data_np": 10, - "__Pyx_GetName": 4, - "__pyx_m": 4, - "__pyx_n_s__work_module": 3, - "__pyx_t_3": 113, - "PyObject_GetAttr": 4, - "__pyx_n_s__do_awesome_work": 3, - "PyTuple_New": 4, - "PyTuple_SET_ITEM": 4, - "__pyx_t_4": 35, - "PyObject_Call": 11, - "PyErr_Occurred": 2, - "__pyx_v_answer_ptr": 2, - "__pyx_L0": 24, - "__pyx_v_num_y": 2, - "__pyx_kp_s_2": 1, - "*__pyx_pf_13wrapper_inner_pure_py_test": 2, - "*__pyx_self": 2, - "*unused": 2, - "PyMethodDef": 1, - "__pyx_mdef_13wrapper_inner_pure_py_test": 1, - "PyCFunction": 1, - "__pyx_pf_13wrapper_inner_pure_py_test": 1, - "METH_NOARGS": 1, - "*__pyx_v_data": 1, - "*__pyx_r": 7, - "*__pyx_t_1": 8, - "__pyx_self": 2, - "__pyx_v_data": 7, - "__pyx_kp_s_3": 1, - "__pyx_n_s__np": 1, - "__pyx_n_s__ones": 1, - "__pyx_k_tuple_4": 1, - "__pyx_r": 39, - "__Pyx_AddTraceback": 7, - "__pyx_pf_5numpy_7ndarray___getbuffer__": 2, - "*__pyx_v_self": 4, - "*__pyx_v_info": 4, - "__pyx_v_flags": 4, - "__pyx_v_copy_shape": 5, - "__pyx_v_i": 6, - "__pyx_v_ndim": 6, - "__pyx_v_endian_detector": 6, - "__pyx_v_little_endian": 8, - "__pyx_v_t": 29, - "*__pyx_v_f": 2, - "*__pyx_v_descr": 2, - "__pyx_v_offset": 9, - "__pyx_v_hasfields": 4, - "__pyx_t_6": 40, - "__pyx_t_7": 9, - "*__pyx_t_8": 1, - "*__pyx_t_9": 1, - "__pyx_v_info": 33, - "__pyx_v_self": 16, - "PyArray_NDIM": 1, - "__pyx_L5": 6, - "PyArray_CHKFLAGS": 2, - "NPY_C_CONTIGUOUS": 1, - "__pyx_builtin_ValueError": 5, - "__pyx_k_tuple_6": 1, - "__pyx_L6": 6, - "NPY_F_CONTIGUOUS": 1, - "__pyx_k_tuple_8": 1, - "__pyx_L7": 2, - "PyArray_DATA": 1, - "strides": 5, - "malloc": 2, - "shape": 3, - "PyArray_STRIDES": 2, - "PyArray_DIMS": 2, - "__pyx_L8": 2, - "suboffsets": 1, - "PyArray_ITEMSIZE": 1, - "PyArray_ISWRITEABLE": 1, - "__pyx_v_f": 31, - "descr": 2, - "__pyx_v_descr": 10, - "PyDataType_HASFIELDS": 2, - "__pyx_L11": 7, - "type_num": 2, - "byteorder": 4, - "__pyx_k_tuple_10": 1, - "__pyx_L13": 2, - "NPY_BYTE": 2, - "__pyx_L14": 18, - "NPY_UBYTE": 2, - "NPY_SHORT": 2, - "NPY_USHORT": 2, - "NPY_INT": 2, - "NPY_UINT": 2, - "NPY_LONG": 1, - "NPY_ULONG": 1, - "NPY_LONGLONG": 1, - "NPY_ULONGLONG": 1, - "NPY_FLOAT": 1, - "NPY_LONGDOUBLE": 1, - "NPY_CFLOAT": 1, - "NPY_CDOUBLE": 1, - "NPY_CLONGDOUBLE": 1, - "NPY_OBJECT": 1, - "__pyx_t_8": 16, - "PyNumber_Remainder": 1, - "__pyx_kp_u_11": 1, - "format": 6, - "__pyx_L12": 2, - "__pyx_t_9": 7, - "__pyx_f_5numpy__util_dtypestring": 1, - "__pyx_L2": 2, - "__pyx_pf_5numpy_7ndarray_1__releasebuffer__": 2, - "PyArray_HASFIELDS": 1, - "*__pyx_f_5numpy_PyArray_MultiIterNew1": 1, - "*__pyx_v_a": 5, - "PyArray_MultiIterNew": 5, - "__pyx_v_a": 5, - "*__pyx_v_b": 4, - "__pyx_v_b": 4, - "*__pyx_v_c": 3, - "__pyx_v_c": 3, - "*__pyx_v_d": 2, - "__pyx_v_d": 2, - "*__pyx_v_e": 1, - "__pyx_v_e": 1, - "*__pyx_v_end": 1, - "*__pyx_v_offset": 1, - "*__pyx_v_child": 1, - "*__pyx_v_fields": 1, - "*__pyx_v_childname": 1, - "*__pyx_v_new_offset": 1, - "*__pyx_v_t": 1, - "*__pyx_t_5": 1, - "__pyx_t_10": 7, - "*__pyx_t_11": 1, - "__pyx_v_child": 8, - "__pyx_v_fields": 7, - "__pyx_v_childname": 4, - "__pyx_v_new_offset": 5, - "PyTuple_GET_SIZE": 2, - "PyTuple_GET_ITEM": 3, - "PyObject_GetItem": 1, - "PyTuple_CheckExact": 1, - "tuple": 3, - "__pyx_ptype_5numpy_dtype": 1, - "__pyx_v_end": 2, - "PyNumber_Subtract": 2, - "PyObject_RichCompare": 8, - "__pyx_int_15": 1, - "Py_LT": 2, - "__pyx_builtin_RuntimeError": 2, - "__pyx_k_tuple_13": 1, - "__pyx_k_tuple_14": 1, - "elsize": 1, - "__pyx_k_tuple_16": 1, - "__pyx_L10": 2, - "Py_EQ": 6 - }, - "Ceylon": { - "doc": 2, - "by": 1, - "shared": 5, - "void": 1, - "test": 1, - "(": 4, - ")": 4, - "{": 3, - "print": 1, - ";": 4, - "}": 3, - "class": 1, - "Test": 2, - "name": 4, - "satisfies": 1, - "Comparable": 1, - "": 1, - "String": 2, - "actual": 2, - "string": 1, - "Comparison": 1, - "compare": 1, - "other": 1, - "return": 1, - "<=>": 1, - "other.name": 1 - }, - "Cirru": { - "print": 38, - "array": 14, - "int": 36, - "string": 7, - "set": 12, - "f": 3, - "block": 1, - "(": 20, - "a": 22, - "b": 7, - "c": 9, - ")": 20, - "call": 1, - "bool": 6, - "true": 1, - "false": 1, - "yes": 1, - "no": 1, - "map": 8, - "m": 3, - "float": 1, - "require": 1, - "./stdio.cr": 1, - "self": 2, - "child": 1, - "under": 2, - "parent": 1, - "get": 4, - "x": 2, - "just": 4, - "-": 4, - "code": 4, - "eval": 2, - "nothing": 1, - "container": 3 - }, - "Clojure": { - "(": 83, - "defn": 4, - "prime": 2, - "[": 41, - "n": 9, - "]": 41, - "not": 3, - "-": 14, - "any": 1, - "zero": 1, - "map": 2, - "#": 1, - "rem": 2, - "%": 1, - ")": 84, - "range": 3, - ";": 8, - "while": 3, - "stops": 1, - "at": 1, - "the": 1, - "first": 2, - "collection": 1, - "element": 1, - "that": 1, - "evaluates": 1, - "to": 1, - "false": 2, - "like": 1, - "take": 1, - "for": 2, - "x": 6, - "html": 1, - "head": 1, - "meta": 1, - "{": 8, - "charset": 1, - "}": 8, - "link": 1, - "rel": 1, - "href": 1, - "script": 1, - "src": 1, - "body": 1, - "div.nav": 1, - "p": 1, - "into": 2, - "array": 3, - "aseq": 8, - "nil": 1, - "type": 2, - "let": 1, - "count": 3, - "a": 3, - "make": 1, - "loop": 1, - "seq": 1, - "i": 4, - "if": 1, - "<": 1, - "do": 1, - "aset": 1, - "recur": 1, - "next": 1, - "inc": 1, - "defprotocol": 1, - "ISound": 4, - "sound": 5, - "deftype": 2, - "Cat": 1, - "_": 3, - "Dog": 1, - "extend": 1, - "default": 1, - "rand": 2, - "scm*": 1, - "random": 1, - "real": 1, - "clj": 1, - "ns": 2, - "c2.svg": 2, - "use": 2, - "c2.core": 2, - "only": 4, - "unify": 2, - "c2.maths": 2, - "Pi": 2, - "Tau": 2, - "radians": 2, - "per": 2, - "degree": 2, - "sin": 2, - "cos": 2, - "mean": 2, - "cljs": 3, - "require": 1, - "c2.dom": 1, - "as": 1, - "dom": 1, - "Stub": 1, - "float": 2, - "fn": 2, - "which": 1, - "does": 1, - "exist": 1, - "on": 1, - "runtime": 1, - "def": 1, - "identity": 1, - "xy": 1, - "coordinates": 7, - "cond": 1, - "and": 1, - "vector": 1, - "y": 1, - "deftest": 1, - "function": 1, - "tests": 1, - "is": 7, - "true": 2, - "contains": 1, - "foo": 6, - "bar": 4, - "select": 1, - "keys": 2, - "baz": 4, - "vals": 1, - "filter": 1 - }, - "COBOL": { - "program": 1, - "-": 19, - "id.": 1, - "hello.": 3, - "procedure": 1, - "division.": 1, - "display": 1, - ".": 3, - "stop": 1, - "run.": 1, - "IDENTIFICATION": 2, - "DIVISION.": 4, - "PROGRAM": 2, - "ID.": 2, - "PROCEDURE": 2, - "DISPLAY": 2, - "STOP": 2, - "RUN.": 2, - "COBOL": 7, - "TEST": 2, - "RECORD.": 1, - "USAGES.": 1, - "COMP": 5, - "PIC": 5, - "S9": 4, - "(": 5, - ")": 5, - "COMP.": 3, - "COMP2": 2 - }, - "CoffeeScript": { - "CoffeeScript": 1, - "require": 21, - "CoffeeScript.require": 1, - "CoffeeScript.eval": 1, - "(": 193, - "code": 20, - "options": 16, - "{": 31, - "}": 34, - ")": 196, - "-": 107, - "options.bare": 2, + "can": 9, + "be": 18, + "installed": 2, + "from": 8, + "Eclipse": 1, + "update": 2, + "site": 1, + "selecting": 1, + ".": 8, + "requires": 1, + "version": 1, + "or": 8, + "later": 1, "on": 3, - "eval": 2, - "CoffeeScript.compile": 2, - "CoffeeScript.run": 3, - "Function": 1, - "return": 29, - "unless": 19, - "window": 1, - "CoffeeScript.load": 2, - "url": 2, - "callback": 35, - "xhr": 2, - "new": 12, - "window.ActiveXObject": 1, - "or": 22, - "XMLHttpRequest": 1, - "xhr.open": 1, - "true": 8, - "xhr.overrideMimeType": 1, - "if": 102, - "of": 7, - "xhr.onreadystatechange": 1, - "xhr.readyState": 1, - "is": 36, - "xhr.status": 1, - "in": 32, - "[": 134, - "]": 134, - "xhr.responseText": 1, - "else": 53, - "throw": 3, - "Error": 1, - "xhr.send": 1, - "null": 15, - "runScripts": 3, - "scripts": 2, - "document.getElementsByTagName": 1, - "coffees": 2, - "s": 10, - "for": 14, - "when": 16, - "s.type": 1, - "index": 4, - "length": 4, - "coffees.length": 1, - "do": 2, - "execute": 3, - "script": 7, - "+": 31, - ".type": 1, - "script.src": 2, - "script.innerHTML": 1, - "window.addEventListener": 1, - "addEventListener": 1, - "no": 3, - "attachEvent": 1, - "class": 11, - "Animal": 3, - "constructor": 6, - "@name": 2, - "move": 3, - "meters": 2, - "alert": 4, - "Snake": 2, - "extends": 6, - "super": 4, - "Horse": 2, - "sam": 1, - "tom": 1, - "sam.move": 1, - "tom.move": 1, - "#": 35, - "fs": 2, - "path": 3, - "Lexer": 3, - "RESERVED": 3, - "parser": 1, - "vm": 1, - "require.extensions": 3, - "module": 1, - "filename": 6, - "content": 4, - "compile": 5, - "fs.readFileSync": 1, - "module._compile": 1, - "require.registerExtension": 2, - "exports.VERSION": 1, - "exports.RESERVED": 1, - "exports.helpers": 2, - "exports.compile": 1, - "merge": 1, - "try": 3, - "js": 5, - "parser.parse": 3, - "lexer.tokenize": 3, - ".compile": 1, - "options.header": 1, - "catch": 2, - "err": 20, - "err.message": 2, - "options.filename": 5, - "header": 1, - "exports.tokens": 1, - "exports.nodes": 1, - "source": 5, - "typeof": 2, - "exports.run": 1, - "mainModule": 1, - "require.main": 1, - "mainModule.filename": 4, - "process.argv": 1, - "then": 24, - "fs.realpathSync": 2, - "mainModule.moduleCache": 1, - "and": 20, - "mainModule.paths": 1, - "._nodeModulePaths": 1, - "path.dirname": 2, - "path.extname": 1, - "isnt": 7, - "mainModule._compile": 2, - "exports.eval": 1, - "code.trim": 1, - "Script": 2, - "vm.Script": 1, - "options.sandbox": 4, - "instanceof": 2, - "Script.createContext": 2, - ".constructor": 1, - "sandbox": 8, - "k": 4, - "v": 4, - "own": 2, - "sandbox.global": 1, - "sandbox.root": 1, - "sandbox.GLOBAL": 1, - "global": 3, - "sandbox.__filename": 3, - "||": 3, - "sandbox.__dirname": 1, - "sandbox.module": 2, - "sandbox.require": 2, - "Module": 2, - "_module": 3, - "options.modulename": 1, - "_require": 2, - "Module._load": 1, - "_module.filename": 1, - "r": 4, - "Object.getOwnPropertyNames": 1, - "_require.paths": 1, - "_module.paths": 1, - "Module._nodeModulePaths": 1, - "process.cwd": 1, - "_require.resolve": 1, - "request": 2, - "Module._resolveFilename": 1, - "o": 4, - "o.bare": 1, - "ensure": 1, - "value": 25, - "vm.runInThisContext": 1, - "vm.runInContext": 1, - "lexer": 1, - "parser.lexer": 1, - "lex": 1, - "tag": 33, - "@yytext": 1, - "@yylineno": 1, - "@tokens": 7, - "@pos": 2, - "setInput": 1, - "upcomingInput": 1, - "parser.yy": 1, - "console.log": 1, - "number": 13, - "opposite": 2, - "square": 4, - "x": 6, - "*": 21, - "list": 2, - "math": 1, - "root": 1, - "Math.sqrt": 1, - "cube": 1, - "race": 1, - "winner": 2, - "runners...": 1, - "print": 1, - "runners": 1, - "elvis": 1, - "cubes": 1, - "math.cube": 1, - "num": 2, - "Rewriter": 2, - "INVERSES": 2, - "count": 5, - "starts": 1, - "compact": 1, - "last": 3, - "exports.Lexer": 1, - "tokenize": 1, - "opts": 1, - "WHITESPACE.test": 1, - "code.replace": 1, - "/": 44, - "r/g": 1, - ".replace": 3, - "TRAILING_SPACES": 2, - "@code": 1, - "The": 7, - "remainder": 1, - "the": 4, - "code.": 1, - "@line": 4, - "opts.line": 1, - "current": 5, - "line.": 1, - "@indent": 3, - "indentation": 3, - "level.": 3, - "@indebt": 1, - "over": 1, - "at": 2, - "@outdebt": 1, - "under": 1, - "outdentation": 1, - "@indents": 1, - "stack": 4, - "all": 1, - "levels.": 1, - "@ends": 1, - "pairing": 1, - "up": 1, - "tokens.": 1, - "Stream": 1, - "parsed": 1, - "tokens": 5, - "form": 1, - "line": 6, - ".": 13, - "i": 8, - "while": 4, - "@chunk": 9, - "i..": 1, - "@identifierToken": 1, - "@commentToken": 1, - "@whitespaceToken": 1, - "@lineToken": 1, - "@heredocToken": 1, - "@stringToken": 1, - "@numberToken": 1, - "@regexToken": 1, - "@jsToken": 1, - "@literalToken": 1, - "@closeIndentation": 1, - "@error": 10, - "@ends.pop": 1, - "opts.rewrite": 1, - "off": 1, - ".rewrite": 1, - "identifierToken": 1, - "match": 23, - "IDENTIFIER.exec": 1, - "input": 1, - "id": 16, - "colon": 3, - "@tag": 3, - "@token": 12, - "id.length": 1, - "forcedIdentifier": 4, - "prev": 17, - "not": 4, - "prev.spaced": 3, - "JS_KEYWORDS": 1, - "COFFEE_KEYWORDS": 1, - "id.toUpperCase": 1, - "LINE_BREAK": 2, - "@seenFor": 4, - "yes": 5, - "UNARY": 4, - "RELATION": 3, - "@value": 1, - "@tokens.pop": 1, - "JS_FORBIDDEN": 1, - "String": 1, - "id.reserved": 1, - "COFFEE_ALIAS_MAP": 1, - "COFFEE_ALIASES": 1, - "switch": 7, - "input.length": 1, - "numberToken": 1, - "NUMBER.exec": 1, - "BOX": 1, - "/.test": 4, - "/E/.test": 1, - "x/.test": 1, - "d*": 1, - "d": 2, - "lexedLength": 2, - "number.length": 1, - "octalLiteral": 2, - "/.exec": 2, - "parseInt": 5, - ".toString": 3, - "binaryLiteral": 2, - "b": 1, - "stringToken": 1, - "@chunk.charAt": 3, - "SIMPLESTR.exec": 1, - "string": 9, - "MULTILINER": 2, - "@balancedString": 1, - "<": 6, - "string.indexOf": 1, - "@interpolateString": 2, - "@escapeLines": 1, - "octalEsc": 1, - "|": 21, - "string.length": 1, - "heredocToken": 1, - "HEREDOC.exec": 1, - "heredoc": 4, - "quote": 5, - "heredoc.charAt": 1, - "doc": 11, - "@sanitizeHeredoc": 2, - "indent": 7, - "<=>": 1, - "indexOf": 1, - "interpolateString": 1, - "token": 1, - "STRING": 2, - "makeString": 1, - "n": 16, - "Matches": 1, - "consumes": 1, - "comments": 1, - "commentToken": 1, - "@chunk.match": 1, - "COMMENT": 2, - "comment": 2, - "here": 3, - "herecomment": 4, - "Array": 1, - ".join": 2, - "comment.length": 1, - "jsToken": 1, - "JSTOKEN.exec": 1, - "script.length": 1, - "regexToken": 1, - "HEREGEX.exec": 1, - "@heregexToken": 1, - "NOT_REGEX": 2, - "NOT_SPACED_REGEX": 2, - "REGEX.exec": 1, - "regex": 5, - "flags": 2, - "..1": 1, - "match.length": 1, - "heregexToken": 1, - "heregex": 1, - "body": 2, - "body.indexOf": 1, - "re": 1, - "body.replace": 1, - "HEREGEX_OMIT": 3, - "//g": 1, - "re.match": 1, - "*/": 2, - "heregex.length": 1, - "@tokens.push": 1, - "tokens.push": 1, - "value...": 1, - "continue": 3, - "value.replace": 2, - "/g": 3, - "spaced": 1, - "reserved": 1, - "word": 1, - "value.length": 2, - "MATH": 3, - "COMPARE": 3, - "COMPOUND_ASSIGN": 2, - "SHIFT": 3, - "LOGIC": 3, - ".spaced": 1, - "CALLABLE": 2, - "INDEXABLE": 2, - "@ends.push": 1, - "@pair": 1, - "sanitizeHeredoc": 1, - "HEREDOC_ILLEGAL.test": 1, - "doc.indexOf": 1, - "HEREDOC_INDENT.exec": 1, - "attempt": 2, - "attempt.length": 1, - "indent.length": 1, - "doc.replace": 2, - "///": 12, - "///g": 1, - "n/": 1, - "tagParameters": 1, - "this": 6, - "tokens.length": 1, - "tok": 5, - "stack.push": 1, - "stack.length": 1, - "stack.pop": 2, - "closeIndentation": 1, - "@outdentToken": 1, - "balancedString": 1, - "str": 1, - "end": 2, - "continueCount": 3, - "str.length": 1, - "letter": 1, - "str.charAt": 1, - "missing": 1, - "starting": 1, - "Hello": 1, - "name.capitalize": 1, - "OUTDENT": 1, - "THROW": 1, - "EXTENDS": 1, - "&": 4, - "false": 4, - "delete": 1, - "break": 1, + "local": 1, + "host.": 1, + "executable": 3, + "program": 1, + "must": 3, + "found": 1, + "in": 15, + "path.": 1, + "Trace": 9, + "Perspective": 1, + "To": 1, + "open": 1, + "perspective": 2, + "select": 5, + "includes": 1, + "following": 1, + "views": 2, + "default": 2, + "*": 6, + "This": 7, + "view": 7, + "shows": 7, + "projects": 1, + "workspace": 2, + "used": 1, + "create": 1, + "manage": 1, + "projects.": 1, + "running": 1, + "Postmortem": 5, + "Debugger": 4, + "instances": 1, + "displays": 2, + "thread": 1, + "stack": 2, + "trace": 17, + "associated": 1, + "with": 4, + "tracepoint.": 3, + "status": 1, "debugger": 1, - "finally": 2, - "undefined": 1, - "until": 1, - "loop": 1, - "by": 1, - "&&": 1, - "case": 1, - "default": 1, - "function": 2, - "var": 1, - "void": 1, - "with": 1, - "const": 1, - "let": 2, - "enum": 1, - "export": 1, - "import": 1, - "native": 1, - "__hasProp": 1, - "__extends": 1, - "__slice": 1, - "__bind": 1, - "__indexOf": 1, - "implements": 1, - "interface": 1, - "package": 1, - "private": 1, - "protected": 1, - "public": 1, - "static": 1, - "yield": 1, - "arguments": 1, - "S": 10, - "OPERATOR": 1, - "%": 1, - "compound": 1, - "assign": 1, - "compare": 1, - "zero": 1, - "fill": 1, - "right": 1, - "shift": 2, - "doubles": 1, - "logic": 1, - "soak": 1, - "access": 1, - "range": 1, - "splat": 1, - "WHITESPACE": 1, - "###": 3, - "s*#": 1, - "##": 1, - ".*": 1, - "CODE": 1, - "MULTI_DENT": 1, - "SIMPLESTR": 1, - "JSTOKEN": 1, - "REGEX": 1, - "disallow": 1, - "leading": 1, - "whitespace": 1, - "equals": 1, - "signs": 1, - "every": 1, - "other": 1, - "thing": 1, - "anything": 1, - "escaped": 1, - "character": 1, - "imgy": 2, - "w": 2, - "HEREGEX": 1, - "#.*": 1, - "n/g": 1, - "HEREDOC_INDENT": 1, - "HEREDOC_ILLEGAL": 1, - "//": 1, - "LINE_CONTINUER": 1, - "s*": 1, - "BOOL": 1, - "NOT_REGEX.concat": 1, - "CALLABLE.concat": 1, - "async": 1, - "nack": 1, - "bufferLines": 3, - "pause": 2, - "sourceScriptEnv": 3, - "join": 8, - "exists": 5, - "basename": 2, - "resolve": 2, - "module.exports": 1, - "RackApplication": 1, - "@configuration": 1, - "@root": 8, - "@firstHost": 1, - "@logger": 1, - "@configuration.getLogger": 1, - "@readyCallbacks": 3, - "@quitCallbacks": 3, - "@statCallbacks": 3, - "ready": 1, - "@state": 11, - "@readyCallbacks.push": 1, - "@initialize": 2, - "quit": 1, - "@quitCallbacks.push": 1, - "@terminate": 2, - "queryRestartFile": 1, - "fs.stat": 1, - "stats": 1, - "@mtime": 5, - "lastMtime": 2, - "stats.mtime.getTime": 1, - "setPoolRunOnceFlag": 1, - "@statCallbacks.length": 1, - "alwaysRestart": 2, - "@pool.runOnce": 1, - "statCallback": 2, - "@statCallbacks.push": 1, - "loadScriptEnvironment": 1, - "env": 18, - "async.reduce": 1, - "scriptExists": 2, - "loadRvmEnvironment": 1, - "rvmrcExists": 2, - "rvm": 1, - "@configuration.rvmPath": 1, - "rvmExists": 2, - "libexecPath": 1, - "before": 2, - ".trim": 1, - "loadEnvironment": 1, - "@queryRestartFile": 2, - "@loadScriptEnvironment": 1, - "@configuration.env": 1, - "@loadRvmEnvironment": 1, - "initialize": 1, - "@quit": 3, - "@loadEnvironment": 1, - "@logger.error": 3, - "@pool": 2, - "nack.createPool": 1, - "size": 1, - ".POW_WORKERS": 1, - "@configuration.workers": 1, - "idle": 1, - ".POW_TIMEOUT": 1, - "@configuration.timeout": 1, - "@pool.stdout": 1, - "@logger.info": 1, - "@pool.stderr": 1, - "@logger.warning": 1, - "@pool.on": 2, - "process": 2, - "@logger.debug": 2, - "readyCallback": 2, - "terminate": 1, - "@ready": 3, - "@pool.quit": 1, - "quitCallback": 2, - "handle": 1, - "req": 4, - "res": 3, - "next": 3, - "resume": 2, - "@setPoolRunOnceFlag": 1, - "@restartIfNecessary": 1, - "req.proxyMetaVariables": 1, - "SERVER_PORT": 1, - "@configuration.dstPort.toString": 1, - "@pool.proxy": 1, - "restart": 1, - "restartIfNecessary": 1, - "mtimeChanged": 2, - "@restart": 1, - "writeRvmBoilerplate": 1, - "powrc": 3, - "boilerplate": 2, - "@constructor.rvmBoilerplate": 1, - "fs.readFile": 1, - "contents": 2, - "contents.indexOf": 1, - "fs.writeFile": 1, - "@rvmBoilerplate": 1, - "dnsserver": 1, - "exports.Server": 1, - "Server": 2, - "dnsserver.Server": 1, - "NS_T_A": 3, - "NS_T_NS": 2, - "NS_T_CNAME": 1, - "NS_T_SOA": 2, - "NS_C_IN": 5, - "NS_RCODE_NXDOMAIN": 2, - "domain": 6, - "@rootAddress": 2, - "@domain": 3, - "domain.toLowerCase": 1, - "@soa": 2, - "createSOA": 2, - "@on": 1, - "@handleRequest": 1, - "handleRequest": 1, - "question": 5, - "req.question": 1, - "subdomain": 10, - "@extractSubdomain": 1, - "question.name": 3, - "isARequest": 2, - "res.addRR": 2, - "subdomain.getAddress": 1, - ".isEmpty": 1, - "isNSRequest": 2, - "res.header.rcode": 1, - "res.send": 1, - "extractSubdomain": 1, - "name": 5, - "Subdomain.extract": 1, - "question.type": 2, - "question.class": 2, - "mname": 2, - "rname": 2, - "serial": 2, - "Date": 1, - ".getTime": 1, - "refresh": 2, - "retry": 2, - "expire": 2, - "minimum": 2, - "dnsserver.createSOA": 1, - "exports.createServer": 1, - "address": 4, - "exports.Subdomain": 1, - "Subdomain": 4, - "@extract": 1, - "name.toLowerCase": 1, - "offset": 4, - "name.length": 1, - "domain.length": 1, - "name.slice": 2, - "@for": 2, - "IPAddressSubdomain.pattern.test": 1, - "IPAddressSubdomain": 2, - "EncodedSubdomain.pattern.test": 1, - "EncodedSubdomain": 2, - "@subdomain": 1, - "@address": 2, - "@labels": 2, - ".split": 1, - "@length": 3, - "@labels.length": 1, - "isEmpty": 1, - "getAddress": 3, - "@pattern": 2, - "@labels.slice": 1, - "a": 2, - "z0": 2, - "decode": 2, - "exports.encode": 1, - "encode": 1, - "ip": 2, - "byte": 2, - "ip.split": 1, - "<<": 1, - "PATTERN": 1, - "exports.decode": 1, - "PATTERN.test": 1, - "ip.push": 1, - "xFF": 1, - "ip.join": 1 + "navigation": 1, + "records.": 1, + "console": 1, + "output": 1, + "Debugger.": 1, + "editor": 7, + "area": 2, + "contains": 1, + "editors": 1, + "when": 1, + "opened.": 1, + "[": 11, + "Image": 2, + "images/GDBTracePerspective.png": 1, + "]": 11, + "Collecting": 2, + "Data": 4, + "outside": 2, + "scope": 1, + "this": 5, + "feature.": 1, + "It": 1, + "done": 2, + "command": 1, + "line": 2, + "using": 3, + "CDT": 3, + "debug": 1, + "component": 1, + "within": 1, + "Eclipse.": 1, + "See": 1, + "FAQ": 2, + "entry": 2, + "#References": 2, + "|": 2, + "References": 3, + "section.": 2, + "Importing": 2, + "Some": 1, + "information": 1, + "section": 1, + "redundant": 1, + "LTTng": 3, + "User": 3, + "Guide.": 1, + "For": 1, + "further": 1, + "details": 1, + "see": 1, + "Guide": 2, + "Creating": 1, + "Project": 1, + "In": 5, + "right": 3, + "-": 8, + "click": 8, + "context": 4, + "menu.": 4, + "dialog": 1, + "name": 2, + "your": 2, + "project": 2, + "tracing": 1, + "folder": 5, + "Browse": 2, + "enter": 2, + "source": 2, + "directory.": 1, + "Select": 1, + "file": 6, + "tree.": 1, + "Optionally": 1, + "set": 1, + "type": 2, + "Click": 1, + "Alternatively": 1, + "drag": 1, + "&": 1, + "dropped": 1, + "any": 2, + "external": 1, + "manager.": 1, + "Selecting": 2, + "Type": 1, + "Right": 2, + "imported": 1, + "choose": 2, + "step": 1, + "omitted": 1, + "if": 1, + "was": 2, + "selected": 3, + "at": 3, + "import.": 1, + "will": 6, + "updated": 2, + "icon": 1, + "images/gdb_icon16.png": 1, + "Executable": 1, + "created": 1, + "identified": 1, + "so": 2, + "launched": 1, + "properly.": 1, + "path": 1, + "press": 1, + "recognized": 1, + "as": 1, + "executable.": 1, + "Visualizing": 1, + "Opening": 1, + "double": 1, + "it": 3, + "opened": 2, + "Events": 5, + "instance": 1, + "launched.": 1, + "If": 2, + "available": 1, + "code": 1, + "corresponding": 1, + "first": 1, + "record": 2, + "also": 2, + "editor.": 2, + "At": 1, + "point": 1, + "recommended": 1, + "relocate": 1, + "not": 1, + "hidden": 1, + "Viewing": 1, + "table": 1, + "shown": 1, + "one": 1, + "row": 1, + "for": 2, + "each": 1, + "record.": 2, + "column": 6, + "sequential": 1, + "number.": 1, + "number": 2, + "assigned": 1, + "collection": 1, + "time": 2, + "method": 1, + "where": 1, + "set.": 1, + "run": 1, + "Searching": 1, + "filtering": 1, + "entering": 1, + "regular": 1, + "expression": 1, + "header.": 1, + "Navigating": 1, + "records": 1, + "keyboard": 1, + "mouse.": 1, + "show": 1, + "current": 1, + "navigated": 1, + "clicking": 1, + "buttons.": 1, + "updated.": 1, + "http": 4, + "//wiki.eclipse.org/index.php/Linux_Tools_Project/LTTng2/User_Guide": 1, + "//wiki.eclipse.org/CDT/User/FAQ#How_can_I_trace_my_application_using_C.2FC.2B.2B_Tracepoints.3F": 1, + "How": 1, + "I": 1, + "my": 1, + "application": 1, + "Tracepoints": 1, + "Updating": 1, + "Document": 1, + "document": 2, + "maintained": 1, + "collaborative": 1, + "wiki.": 1, + "you": 1, + "wish": 1, + "modify": 1, + "please": 1, + "visit": 1, + "//wiki.eclipse.org/index.php/Linux_Tools_Project/GDB_Tracepoint_Analysis/User_Guide": 1, + "//wiki.eclipse.org/Linux_Tools_Project/GDB_Tracepoint_Analysis/User_Guide": 1 }, - "Common Lisp": { - ";": 152, - "@file": 1, - "macros": 2, + "Mathematica": { + "Paclet": 1, + "[": 307, + "Name": 1, + "-": 134, + "Version": 1, + "MathematicaVersion": 1, + "Description": 1, + "Creator": 1, + "Extensions": 1, + "{": 227, + "Language": 1, + "MainPage": 1, + "}": 222, + "]": 286, + "Do": 1, + "If": 1, + "Length": 1, + "Divisors": 1, + "Binomial": 2, + "i": 3, + "+": 2, + "Print": 1, + ";": 42, + "Break": 1, + "Notebook": 2, + "Cell": 28, + "CellGroupData": 8, + "CellChangeTimes": 13, + "*": 19, + "BoxData": 19, + "NamespaceBox": 1, + "DynamicModuleBox": 1, + "Typeset": 7, + "q": 1, + "opts": 1, + "AppearanceElements": 1, + "Asynchronous": 1, + "All": 1, + "TimeConstraint": 1, + "Automatic": 9, + "Method": 2, + "elements": 1, + "pod1": 1, + "XMLElement": 13, + "False": 19, + "True": 7, + "FormBox": 4, + "TagBox": 9, + "GridBox": 2, + "PaneBox": 1, + "StyleBox": 4, + "CellContext": 5, + "TagBoxWrapper": 4, + "AstronomicalData": 1, + "Identity": 2, + "LineIndent": 4, + "LineSpacing": 2, + "GridBoxBackground": 1, + "GrayLevel": 17, + "None": 8, + "GridBoxItemSize": 2, + "ColumnsEqual": 2, + "RowsEqual": 2, + "GridBoxDividers": 1, + "GridBoxSpacings": 2, + "GridBoxAlignment": 1, + "Left": 1, + "Baseline": 1, + "AllowScriptLevelChange": 2, + "BaselinePosition": 2, + "Center": 1, + "AbsoluteThickness": 3, + "TraditionalForm": 3, + "PolynomialForm": 1, + "#": 2, + "TraditionalOrder": 1, + "&": 2, + "pod2": 1, + "RowBox": 34, + "LinebreakAdjustments": 2, + "FontFamily": 1, + "UnitFontFamily": 1, + "FontSize": 1, + "Smaller": 1, + "StripOnInput": 1, + "SyntaxForm": 2, + "Dot": 2, + "ZeroWidthTimes": 1, + "pod3": 1, + "TemplateBox": 1, + "GraphicsBox": 2, + "GraphicsComplexBox": 1, + "CompressedData": 9, + "EdgeForm": 2, + "Directive": 5, + "Opacity": 2, + "Hue": 5, + "GraphicsGroupBox": 2, + "PolygonBox": 3, + "RGBColor": 3, + "LineBox": 5, + "Dashing": 1, + "Small": 1, + "GridLines": 1, + "Dynamic": 1, + "Join": 1, + "Replace": 1, + "MousePosition": 1, + "Graphics": 1, + "Pattern": 2, + "CalculateUtilities": 5, + "GraphicsUtilities": 5, + "Private": 5, + "x": 2, + "Blank": 2, + "y": 2, + "Epilog": 1, + "CapForm": 1, + "Offset": 8, + "Scaled": 10, + "DynamicBox": 1, + "ToBoxes": 1, + "DynamicModule": 1, + "pt": 1, + "(": 2, + "NearestFunction": 1, + "BeginPackage": 1, + "PossiblyTrueQ": 3, + "usage": 22, + "PossiblyFalseQ": 2, + "PossiblyNonzeroQ": 3, + "Begin": 2, + "expr_": 4, + "Not": 6, + "TrueQ": 4, + "expr": 4, + "End": 2, + "AnyQ": 3, + "AnyElementQ": 4, + "AllQ": 2, + "AllElementQ": 2, + "AnyNonzeroQ": 2, + "AnyPossiblyNonzeroQ": 2, + "RealQ": 3, + "PositiveQ": 3, + "NonnegativeQ": 3, + "PositiveIntegerQ": 3, + "NonnegativeIntegerQ": 4, + "IntegerListQ": 5, + "PositiveIntegerListQ": 3, + "NonnegativeIntegerListQ": 3, + "IntegerOrListQ": 2, + "PositiveIntegerOrListQ": 2, + "NonnegativeIntegerOrListQ": 2, + "SymbolQ": 2, + "SymbolOrNumberQ": 2, + "cond_": 4, + "L_": 5, + "Fold": 3, + "Or": 1, + "cond": 4, + "/@": 3, + "L": 4, + "Flatten": 1, + "And": 4, + "SHEBANG#!#!=": 1, + "n_": 5, + "Im": 1, + "n": 8, + "Positive": 2, + "IntegerQ": 3, + "&&": 4, + "input_": 6, + "ListQ": 1, + "input": 11, + "MemberQ": 3, + "IntegerQ/@input": 1, + "||": 4, + "a_": 2, + "Head": 2, + "a": 3, + "Symbol": 2, + "NumericQ": 1, + "EndPackage": 1, + "Get": 1, + "SuperscriptBox": 1, + "MultilineFunction": 1, + "Open": 7, + "NumberMarks": 3, + "AspectRatio": 1, + "NCache": 1, + "GoldenRatio": 1, + ")": 1, + "Axes": 1, + "AxesLabel": 1, + "AxesOrigin": 1, + "PlotRange": 1, + "PlotRangeClipping": 1, + "PlotRangePadding": 1, + "WindowSize": 1, + "WindowMargins": 1, + "FrontEndVersion": 1, + "StyleDefinitions": 1 + }, + "Idris": { + "module": 1, + "Prelude.Char": 1, + "import": 1, + "Builtins": 1, + "isUpper": 4, + "Char": 13, + "-": 8, + "Bool": 8, + "x": 36, + "&&": 3, + "<=>": 3, + "Z": 1, + "isLower": 4, + "z": 1, + "isAlpha": 3, + "||": 9, + "isDigit": 3, + "(": 8, + "9": 1, + "isAlphaNum": 2, + "isSpace": 2, + "isNL": 2, + "toUpper": 3, + "if": 2, + ")": 7, + "then": 2, + "prim__intToChar": 2, + "prim__charToInt": 2, + "else": 2, + "toLower": 2, + "+": 1, + "isHexDigit": 2, + "elem": 1, + "hexChars": 3, + "where": 1, + "List": 1, + "[": 1, + "]": 1 + }, + "Prolog": { "-": 161, - "advanced.cl": 1, - "@breif": 1, - "Advanced": 1, - "macro": 5, - "practices": 1, - "defining": 1, + "module": 3, + "(": 327, + "func": 13, + "[": 87, + "op": 2, + "xfy": 2, + ")": 326, + "of": 8, + "/2": 3, + "]": 87, + ".": 107, + "use_module": 8, + "library": 8, + "list_util": 1, + "xfy_list/3": 1, + "function_expansion": 5, + "arithmetic": 2, + "error": 6, + "wants_func": 4, + "prolog_load_context": 1, + "Module": 4, + "%": 71, + "we": 1, + "don": 1, + "s": 2, + "used": 1, + "at": 3, + "compile": 3, + "time": 3, + "for": 1, + "macro": 1, + "expansion.": 1, + "multifile": 2, + "compile_function/4.": 1, + "compile_function": 8, + "Var": 5, + "_": 30, + "var": 4, + "fail.": 3, + "Expr": 5, + "In": 15, + "Out": 16, + "is": 12, + "+": 14, + "string": 8, + "evaluable/1": 1, + "throws": 1, + "exception": 1, + "with": 2, + "strings": 1, + "evaluable": 1, + "term_variables": 1, + "F": 26, + "Goal": 29, + "function_composition_term": 2, + "user": 5, + "Functor": 8, + "true": 5, + "..": 6, + "format_template": 7, + "atom": 6, + "format": 8, + ";": 12, + "has_type": 2, + "codes": 5, + "fail": 1, + "to": 5, + "be": 4, + "explicit": 1, + "Dict": 3, + "is_dict": 1, + "get_dict": 1, + "Function": 5, + "Argument": 1, + "det.": 4, + "Apply": 1, + "an": 1, + "Argument.": 1, + "A": 1, + "any": 3, + "predicate": 4, + "whose": 2, + "final": 1, + "argument": 2, + "generates": 1, + "output": 1, + "and": 2, + "penultimate": 1, + "accepts": 1, + "input.": 1, + "This": 1, + "realized": 1, + "by": 2, + "expanding": 1, + "function": 2, + "application": 2, + "chained": 1, + "calls": 1, + "time.": 1, + "itself": 1, + "can": 3, + "chained.": 2, + "Reversed": 2, + "reverse": 4, + "sort": 2, + "c": 2, + "d": 3, + "b": 4, + "meta_predicate": 2, + "throw": 1, + "permission_error": 1, + "call": 4, + "context": 1, + "X": 10, + "Y": 7, + "defer": 1, + "until": 1, + "run": 1, + "P": 2, + "G": 2, + "Creates": 1, + "a": 4, + "new": 2, + "composing": 1, + "G.": 1, + "The": 1, + "functions": 2, + "are": 3, + "composed": 1, + "create": 1, + "compiled": 1, + "which": 1, + "behaves": 1, + "like": 1, + "function.": 1, + "composition": 1, + "Composed": 1, + "also": 1, + "applied": 1, + "/2.": 1, + "Format": 23, + "semidet.": 3, + "atom_codes": 4, + "Codes": 21, + "string_codes": 4, + "memberchk": 2, + "fix": 1, + "syntax": 1, + "highlighting": 1, + "functions_to_compose": 2, + "Term": 10, + "Funcs": 7, + "functor": 1, + "Op": 3, + "xfy_list": 2, + "thread_state": 4, + "|": 25, + "Goals": 2, + "Tmp": 3, + "instantiation_error": 1, + "Args": 19, + "append": 2, + "NewArgs": 2, + "debug": 4, + "variant_sha1": 1, + "Sha": 2, + "current_predicate": 1, + "Functor/2": 2, + "RevFuncs": 2, + "Threaded": 2, + "Body": 2, + "Head": 2, + "assert": 2, + "compile_predicates": 1, + "Output": 2, + "compound": 1, + "setof": 1, + "arg": 1, + "Arg": 6, + "N": 5, + "Name": 2, + "Args0": 2, + "nth1": 2, + "Rest": 12, + "format_spec": 12, + "format_error/2": 1, + "format_spec/2": 1, + "format_spec//1": 1, + "spec_arity/2": 1, + "spec_types/2": 1, + "dcg/basics": 1, + "eos//0": 1, + "integer//1": 1, + "string_without//2": 1, + "when": 3, + "when/2": 1, + "mavis": 1, + "format_error": 8, + "Error": 25, + "nondet.": 1, + "format_error_": 5, + "Spec": 10, + "is_list": 1, + "spec_types": 8, + "Types": 16, + "types_error": 3, + "length": 4, + "TypesLen": 3, + "ArgsLen": 3, + "types_error_": 4, + "Type": 3, + "ground": 5, + "is_of_type": 2, + "message_to_string": 1, + "type_error": 1, + "_Location": 1, + "check": 3, + "checker/2.": 2, + "dynamic": 2, + "checker": 3, + "format_fail/3.": 1, + "prolog_walk_code": 1, + "module_class": 1, + "infer_meta_predicates": 1, + "false": 2, + "autoload": 1, + "format/": 1, + "{": 7, + "}": 7, + "always": 1, + "loaded": 1, + "undefined": 1, + "ignore": 1, + "trace_reference": 1, + "on_trace": 1, + "check_format": 3, + "retract": 1, + "format_fail": 2, + "Location": 6, + "print_message": 1, + "warning": 1, + "iterate": 1, + "all": 1, + "errors": 2, + "checker.": 1, + "succeed": 2, + "even": 1, + "if": 1, + "no": 1, + "found": 1, + "_Caller": 1, + "predicate_property": 1, + "imported_from": 1, + "Source": 2, + "system": 1, + "prolog_debug": 1, + "can_check": 2, + "avoid": 1, + "printing": 1, + "goals": 1, + "once": 3, + "clause": 1, + "prolog": 2, + "message": 1, + "message_location": 1, + "//": 1, + "eos.": 1, + "escape": 2, + "Numeric": 4, + "Modifier": 2, + "Action": 15, + "numeric_argument": 5, + "modifier_argument": 3, + "action": 6, + "text": 4, + "String": 6, + "string_without": 1, + "list": 4, + "text_codes": 6, + "phrase": 3, + "spec_arity": 2, + "FormatSpec": 2, + "Arity": 3, + "positive_integer": 1, + "type": 2, + "Item": 2, + "Items": 2, + "item_types": 3, + "numeric_types": 5, + "action_types": 18, + "number": 3, + "character": 2, + "star": 2, + "nothing": 2, + "Code": 2, + "Text": 1, + "Atom": 3, + "integer": 7, + "C": 5, + "colon": 1, + "no_colon": 1, + "is_action": 4, + "multi.": 1, + "e": 1, + "float": 3, + "f": 1, + "I": 1, + "n": 1, + "p": 1, + "r": 1, + "t": 1, + "W": 1, + "lib": 1, + "ic": 1, + "vabs": 2, + "Val": 8, + "AbsVal": 10, + "#": 9, + "labeling": 2, + "vabsIC": 1, + "or": 1, + "faitListe": 3, + "First": 2, + "Taille": 2, + "Min": 2, + "Max": 2, + "Min..Max": 1, + "Taille1": 2, + "suite": 3, + "Xi": 5, + "Xi1": 7, + "Xi2": 7, + "checkRelation": 3, + "VabsXi1": 2, + "Xi.": 1, + "checkPeriode": 3, + "ListVar": 2, + "Length": 2, + "<": 1, + "X1": 2, + "X2": 2, + "X3": 2, + "X4": 2, + "X5": 2, + "X6": 2, + "X7": 2, + "X8": 2, + "X9": 2, + "X10": 3, + "male": 3, + "john": 2, + "peter": 3, + "female": 2, + "vick": 2, + "christie": 3, + "parents": 4, + "brother": 1, + "M": 2, + "turing": 1, + "Tape0": 2, + "Tape": 2, + "perform": 4, + "q0": 1, + "Ls": 12, + "Rs": 16, + "Ls1": 4, + "qf": 1, + "Q0": 2, + "Ls0": 6, + "Rs0": 6, + "symbol": 3, + "Sym": 6, + "RsRest": 2, + "rule": 1, + "Q1": 2, + "NewSym": 2, + "Rs1": 2, + "left": 4, + "stay": 1, + "right": 1, + "L": 2 + }, + "Oxygene": { + "": 1, + "DefaultTargets=": 1, + "xmlns=": 1, + "": 3, + "": 1, + "Loops": 2, + "": 1, + "": 1, + "exe": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "False": 4, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "Properties": 1, + "App.ico": 1, + "": 1, + "": 1, + "Condition=": 3, + "Release": 2, + "": 1, + "": 1, + "{": 1, + "BD89C": 1, + "-": 4, + "B610": 1, + "CEE": 1, + "CAF": 1, + "C515D88E2C94": 1, + "}": 1, + "": 1, + "": 3, + "": 1, + "DEBUG": 1, + ";": 2, + "TRACE": 1, + "": 1, + "": 2, + ".": 2, + "bin": 2, + "Debug": 1, + "": 2, + "": 1, + "True": 3, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "Project=": 1, + "": 2, + "": 5, + "Include=": 12, + "": 5, + "(": 5, + "Framework": 5, + ")": 5, + "mscorlib.dll": 1, + "": 5, + "": 5, + "System.dll": 1, + "ProgramFiles": 1, + "Reference": 1, + "Assemblies": 1, + "Microsoft": 1, + "v3.5": 1, + "System.Core.dll": 1, + "": 1, + "": 1, + "System.Data.dll": 1, + "System.Xml.dll": 1, + "": 2, + "": 4, + "": 1, + "": 1, + "": 2, + "ResXFileCodeGenerator": 1, + "": 2, + "": 1, + "": 1, + "SettingsSingleFileGenerator": 1, + "": 1, + "": 1 + }, + "R": { + "docType": 1, + "{": 58, + "package": 5, + "}": 58, + "name": 10, + "scholar": 6, + "alias": 2, + "-": 53, + "title": 1, + "source": 3, + "The": 5, + "reads": 1, + "data": 13, + "from": 5, + "url": 2, + "http": 2, + "//scholar.google.com": 1, + ".": 7, + "Dates": 1, + "and": 5, + "citation": 2, + "counts": 1, + "are": 4, + "estimated": 1, + "determined": 1, + "automatically": 1, + "by": 2, + "a": 6, + "computer": 1, + "program.": 1, + "Use": 1, + "at": 2, "your": 1, "own": 1, - "Macro": 1, - "definition": 1, - "skeleton": 1, - "(": 365, - "defmacro": 5, - "name": 6, - "parameter*": 1, - ")": 372, - "body": 8, - "form*": 1, - "Note": 2, - "that": 5, - "backquote": 1, - "expression": 2, - "is": 6, - "most": 2, - "often": 1, - "used": 2, - "in": 23, - "the": 35, - "form": 1, - "primep": 4, - "test": 1, - "a": 7, - "number": 2, - "for": 3, - "prime": 12, - "defun": 23, - "n": 8, - "if": 14, - "<": 1, - "return": 3, - "from": 8, - "do": 9, - "i": 8, - "+": 35, - "p": 10, - "t": 7, - "not": 6, - "zerop": 1, - "mod": 1, - "sqrt": 1, - "when": 4, - "next": 11, - "bigger": 1, - "than": 1, - "specified": 2, - "The": 2, - "recommended": 1, - "procedures": 1, - "to": 4, - "writting": 1, - "new": 6, - "are": 2, - "as": 1, - "follows": 1, - "Write": 2, - "sample": 2, - "call": 2, - "and": 12, - "code": 2, - "it": 2, - "should": 1, - "expand": 1, - "into": 2, - "primes": 3, - "format": 3, - "Expected": 1, - "expanded": 1, - "codes": 1, - "generate": 1, - "hardwritten": 1, - "expansion": 2, - "arguments": 1, - "var": 49, - "range": 4, - "&": 8, - "rest": 5, - "let": 6, - "first": 5, - "start": 5, - "second": 3, - "end": 8, - "third": 2, - "@body": 4, - "More": 1, - "concise": 1, - "implementations": 1, - "with": 7, - "synonym": 1, + "risk.": 1, + "description": 1, + "code": 21, + "provides": 1, + "functions": 3, + "to": 9, + "extract": 1, + "Google": 2, + "Scholar.": 1, + "There": 1, "also": 1, - "emits": 1, - "more": 1, - "friendly": 1, - "messages": 1, - "on": 1, - "incorrent": 1, - "input.": 1, - "Test": 1, - "result": 1, - "of": 3, - "macroexpand": 2, - "function": 2, - "gensyms": 4, - "value": 8, - "Define": 1, - "note": 1, - "how": 1, - "comma": 1, - "interpolate": 1, - "loop": 2, - "names": 2, - "collect": 1, - "gensym": 1, - "#": 15, - "|": 9, - "ESCUELA": 1, - "POLITECNICA": 1, - "SUPERIOR": 1, - "UNIVERSIDAD": 1, - "AUTONOMA": 1, - "DE": 1, - "MADRID": 1, - "INTELIGENCIA": 1, - "ARTIFICIAL": 1, - "Motor": 1, - "de": 2, - "inferencia": 1, - "Basado": 1, - "en": 2, - "parte": 1, - "Peter": 1, - "Norvig": 1, - "Global": 1, - "variables": 6, - "defvar": 4, - "*hypothesis": 1, - "list*": 7, - "*rule": 4, - "*fact": 2, - "Constants": 1, - "defconstant": 2, - "fail": 10, - "nil": 3, - "no": 6, - "bindings": 45, - "lambda": 4, - "b": 6, - "mapcar": 2, - "man": 3, - "luis": 1, - "pedro": 1, - "woman": 2, - "mart": 1, - "daniel": 1, - "laura": 1, - "facts": 1, - "x": 47, - "aux": 3, - "unify": 12, - "hypothesis": 10, - "list": 9, - "____________________________________________________________________________": 5, - "FUNCTION": 3, - "FIND": 1, - "RULES": 2, - "COMMENTS": 3, - "Returns": 2, - "rules": 5, - "whose": 1, - "THENs": 1, - "term": 1, - "given": 3, - "": 2, - "satisfy": 1, - "this": 1, - "requirement": 1, - "renamed.": 1, - "EXAMPLES": 2, - "setq": 1, - "renamed": 3, - "rule": 17, - "rename": 1, - "then": 7, - "unless": 3, - "null": 1, - "equal": 4, - "VALUE": 1, - "FROM": 1, - "all": 2, - "solutions": 1, - "found": 5, - "using": 1, - "": 1, - ".": 10, - "single": 1, - "can": 4, - "have": 1, + "convenience": 1, + "for": 4, + "comparing": 1, "multiple": 1, - "solutions.": 1, - "mapcan": 1, - "R1": 2, - "pertenece": 3, - "E": 4, - "_": 8, - "R2": 2, - "Xs": 2, - "Then": 1, - "EVAL": 2, - "RULE": 2, - "PERTENECE": 6, - "E.42": 2, - "returns": 4, - "NIL": 3, - "That": 2, - "query": 4, - "be": 2, - "proven": 2, - "binding": 17, - "necessary": 2, - "fact": 4, - "has": 1, - "On": 1, - "other": 1, - "hand": 1, - "E.49": 2, - "XS.50": 2, - "R2.": 1, - "eval": 6, - "ifs": 1, - "NOT": 2, - "question": 1, - "T": 1, - "equality": 2, - "UNIFY": 1, - "Finds": 1, - "general": 1, - "unifier": 1, - "two": 2, - "input": 2, - "expressions": 2, - "taking": 1, - "account": 1, - "": 1, - "In": 1, - "case": 1, - "total": 1, - "unification.": 1, - "Otherwise": 1, - "which": 1, - "constant": 1, - "anonymous": 4, - "make": 4, - "variable": 6, - "Auxiliary": 1, - "Functions": 1, - "cond": 3, - "or": 4, - "get": 5, - "lookup": 5, - "occurs": 5, - "extend": 2, - "symbolp": 2, - "eql": 2, - "char": 2, - "symbol": 2, - "assoc": 1, - "car": 2, - "val": 6, - "cdr": 2, - "cons": 2, - "append": 1, - "eq": 7, - "consp": 2, - "subst": 3, - "listp": 1, - "exp": 1, - "unique": 3, - "find": 6, - "anywhere": 6, - "predicate": 8, - "tree": 11, - "optional": 2, - "so": 4, - "far": 4, - "atom": 3, - "funcall": 2, - "pushnew": 1, - "gentemp": 2, - "quote": 3, - "s/reuse": 1, - "cons/cons": 1, - "expresion": 2, - "some": 1, - "EOF": 1, + "scholars": 1, + "predicting": 1, + "h": 13, + "index": 1, + "scores": 1, + "based": 1, + "on": 2, + "past": 1, + "publication": 1, + "records.": 1, + "note": 1, + "A": 1, + "complementary": 1, + "set": 2, + "of": 2, + "Scholar": 1, + "can": 3, + "be": 8, + "found": 1, + "//biostat.jhsph.edu/": 1, + "jleek/code/googleCite.r": 1, + "was": 1, + "developed": 1, + "independently.": 1, + "df.residual.mira": 1, + "<": 46, + "function": 18, + "(": 219, + "object": 12, + "...": 4, + ")": 220, + "fit": 2, + "analyses": 1, + "[": 23, + "]": 24, + "return": 8, + "df.residual": 2, + "df.residual.lme": 1, + "fixDF": 1, + "df.residual.mer": 1, + "sum": 1, + "object@dims": 1, "*": 2, - "lisp": 1, - "package": 1, - "foo": 2, - "Header": 1, - "comment.": 4, - "*foo*": 1, - "execute": 1, - "compile": 1, - "toplevel": 2, - "load": 1, - "add": 1, - "y": 2, - "key": 1, - "z": 2, - "declare": 1, - "ignore": 1, - "Inline": 1, - "Multi": 1, - "line": 2, - "After": 1 - }, - "Component Pascal": { - "MODULE": 2, - "ObxControls": 1, - ";": 123, - "IMPORT": 2, - "Dialog": 1, - "Ports": 1, - "Properties": 1, - "Views": 1, - "CONST": 1, - "beginner": 5, - "advanced": 3, - "expert": 1, - "guru": 2, - "TYPE": 1, - "View": 6, - "POINTER": 2, - "TO": 2, - "RECORD": 2, - "(": 91, - "Views.View": 2, - ")": 94, - "size": 1, - "INTEGER": 10, - "END": 31, - "VAR": 9, - "data*": 1, - "class*": 1, - "list*": 1, - "Dialog.List": 1, - "width*": 1, - "predef": 12, - "ARRAY": 2, - "OF": 2, - "PROCEDURE": 12, - "SetList": 4, - "BEGIN": 13, - "IF": 11, - "data.class": 5, - "THEN": 12, - "data.list.SetLen": 3, - "data.list.SetItem": 11, - "ELSIF": 1, - "ELSE": 3, - "v": 6, - "CopyFromSimpleView": 2, - "source": 2, - "v.size": 10, - ".size": 1, - "Restore": 2, - "f": 1, - "Views.Frame": 1, - "l": 1, + "c": 11, + "+": 4, + "df.residual.default": 1, + "q": 3, + "df": 3, + "if": 19, + "is.null": 8, + "mk": 2, + "try": 3, + "coef": 1, + "silent": 3, + "TRUE": 14, + "mn": 2, + "f": 9, + "fitted": 1, + "inherits": 6, + "|": 3, + "NULL": 2, + "n": 3, + "ifelse": 1, + "is.data.frame": 1, + "is.matrix": 1, + "nrow": 1, + "length": 3, + "k": 3, + "max": 1, + "#": 45, + "module": 25, + "available": 1, + "via": 1, + "the": 16, + "environment": 4, + "like": 1, + "it": 3, + "returns.": 1, + "@param": 2, + "an": 1, + "identifier": 1, + "specifying": 1, + "full": 1, + "path": 9, + "search": 5, + "see": 1, + "Details": 1, + "even": 1, + "attach": 11, + "is": 7, + "FALSE": 9, + "optionally": 1, + "attached": 2, + "current": 2, + "scope": 1, + "defaults": 1, + "However": 1, + "in": 8, + "interactive": 2, + "invoked": 1, + "directly": 1, + "terminal": 1, + "only": 1, + "i.e.": 1, + "not": 4, + "within": 1, + "modules": 4, + "import.attach": 1, + "or": 1, + "depending": 1, + "user": 1, + "s": 2, + "preference.": 1, + "attach_operators": 3, + "causes": 1, + "emph": 3, + "operators": 3, + "default": 1, + "path.": 1, + "Not": 1, + "attaching": 1, + "them": 1, + "therefore": 1, + "drastically": 1, + "limits": 1, + "usefulness.": 1, + "Modules": 1, + "searched": 1, + "options": 1, + "priority.": 1, + "directory": 1, + "always": 1, + "considered": 1, + "first.": 1, + "That": 1, + "local": 3, + "file": 4, + "./a.r": 1, + "will": 2, + "loaded.": 1, + "Module": 1, + "names": 2, + "fully": 1, + "qualified": 1, + "refer": 1, + "nested": 1, + "paths.": 1, + "See": 1, + "import": 5, + "executed": 1, + "global": 1, + "effect": 1, + "same.": 1, + "When": 1, + "used": 2, + "globally": 1, + "inside": 1, + "newly": 2, + "outside": 1, + "nor": 1, + "other": 2, + "which": 3, + "might": 1, + "loaded": 4, + "@examples": 1, + "@seealso": 3, + "reload": 3, + "@export": 2, + "substitute": 2, + "stopifnot": 3, + "missing": 1, + "&&": 2, + "module_name": 7, + "getOption": 1, + "else": 4, + "class": 4, + "module_path": 15, + "find_module": 1, + "stop": 1, + "attr": 2, + "message": 1, + "containing_modules": 3, + "module_init_files": 1, + "mapply": 1, + "do_import": 4, + "mod_ns": 5, + "as.character": 3, + "module_parent": 8, + "parent.frame": 2, + "mod_env": 7, + "exhibit_namespace": 3, + "identical": 2, + ".GlobalEnv": 2, + "environmentName": 2, + "parent.env": 4, + "export_operators": 2, + "invisible": 1, + "is_module_loaded": 1, + "get_loaded_module": 1, + "namespace": 13, + "structure": 3, + "new.env": 1, + "parent": 9, + ".BaseNamespaceEnv": 1, + "paste": 3, + "sep": 4, + "chdir": 1, + "envir": 5, + "cache_module": 1, + "exported_functions": 2, + "lsf.str": 2, + "list2env": 2, + "sapply": 2, + "get": 2, + "ops": 2, + "is_predefined": 2, + "%": 2, + "is_op": 2, + "prefix": 3, + "strsplit": 3, + "||": 1, + "grepl": 1, + "Filter": 1, + "op_env": 4, + "cache.": 1, + "@note": 1, + "Any": 1, + "references": 1, + "remain": 1, + "unchanged": 1, + "files": 1, + "would": 1, + "have": 1, + "happened": 1, + "without": 1, + "unload": 2, + "should": 2, + "production": 1, + "code.": 1, + "does": 1, + "currently": 1, + "detach": 1, + "environments.": 1, + "Reload": 1, + "given": 1, + "Remove": 1, + "cache": 1, + "forcing": 1, + "reload.": 1, + "reloaded": 1, + "reference": 1, + "unloaded": 1, + "still": 1, + "work.": 1, + "Reloading": 1, + "primarily": 1, + "useful": 1, + "testing": 1, + "during": 1, + "module_ref": 3, + "rm": 1, + "list": 1, + ".loaded_modules": 1, + "whatnot.": 1, + "assign": 1, + "SHEBANG#!Rscript": 2, + "MedianNorm": 2, + "geomeans": 3, + "<->": 1, + "exp": 1, + "rowMeans": 1, + "log": 5, + "apply": 2, + "2": 1, + "cnts": 2, + "median": 1, + "library": 1, + "print_usage": 2, + "stderr": 1, + "cat": 1, + "spec": 2, + "matrix": 3, + "byrow": 3, + "ncol": 3, + "opt": 23, + "getopt": 1, + "help": 1, + "stdout": 1, + "status": 1, + "height": 7, + "out": 4, + "res": 6, + "width": 7, + "ylim": 7, + "read.table": 1, + "header": 1, + "quote": 1, + "nsamp": 8, + "dim": 1, + "outfile": 4, + "sprintf": 2, + "png": 2, + "hist": 4, + "plot": 7, + "mids": 4, + "density": 4, + "type": 3, + "col": 4, + "rainbow": 4, + "main": 2, + "xlab": 2, + "ylab": 2, + "i": 6, + "lines": 6, + "devnum": 2, + "dev.off": 2, + "size.factors": 2, + "data.matrix": 1, + "data.norm": 3, "t": 1, - "r": 7, - "b": 1, + "x": 3, + "/": 1, + "hello": 2, + "print": 1, + "ParseDates": 2, + "dates": 3, + "unlist": 2, + "days": 2, + "times": 2, + "hours": 2, + "all.days": 2, + "all.hours": 2, + "data.frame": 1, + "Day": 2, + "factor": 2, + "levels": 2, + "Hour": 2, + "Main": 2, + "system": 1, + "intern": 1, + "punchcard": 4, + "as.data.frame": 1, + "table": 1, + "ggplot2": 6, + "ggplot": 1, + "aes": 2, + "y": 1, + "geom_point": 1, + "size": 1, + "Freq": 1, + "scale_size": 1, + "range": 1, + "ggsave": 1, + "filename": 1, + "##polyg": 1, + "vector": 2, + "##numpoints": 1, + "number": 1, + "##output": 1, + "output": 1, + "##": 1, + "Example": 1, + "scripts": 1, + "group": 1, + "pts": 1, + "spsample": 1, + "polyg": 1, + "numpoints": 1 + }, + "JavaScript": { + "(": 8528, + "function": 1214, + ")": 8536, + "{": 2742, + "var": 916, + "cubes": 4, + "list": 21, + "math": 4, + "num": 23, + "number": 13, + "opposite": 6, + "race": 4, + "square": 10, + "__slice": 2, + "[": 1461, + "]": 1458, + ".slice": 6, + ";": 4066, + "true": 147, + "if": 1230, + "-": 706, + "x": 41, + "return": 947, + "*": 71, + "}": 2718, + "root": 5, + "Math.sqrt": 2, + "cube": 2, + "runners": 6, + "winner": 6, + "arguments": 83, + "<": 209, + "arguments.length": 18, + "__slice.call": 2, + "print": 2, + "typeof": 132, + "elvis": 4, + "&&": 1017, + "null": 427, + "alert": 11, + "_i": 10, + "_len": 6, + "_results": 6, + "for": 262, + "list.length": 5, + "+": 1136, + "_results.push": 2, + "math.cube": 2, + ".call": 10, + "this": 578, + "A": 24, + "w": 110, + "ma": 3, + "c.isReady": 4, + "try": 44, + "s.documentElement.doScroll": 2, + "catch": 38, + "a": 1489, + "setTimeout": 19, + "c.ready": 7, + "Qa": 1, + "b": 961, + "b.src": 4, + "c.ajax": 1, + "url": 23, + "async": 5, + "false": 142, + "dataType": 6, + "c.globalEval": 1, + "b.text": 3, + "||": 648, + "b.textContent": 2, + "b.innerHTML": 3, + "b.parentNode": 4, + "b.parentNode.removeChild": 2, + "X": 6, + "d": 771, + "f": 666, + "e": 663, + "j": 265, + "i": 853, + "a.length": 23, + "o": 322, + "in": 170, + "c.isFunction": 9, + "d.call": 3, + "J": 5, + "new": 86, + "Date": 4, + ".getTime": 3, + "Y": 3, + "Z": 6, + "na": 1, + ".type": 2, + "c.event.handle.apply": 1, + "oa": 1, + "k": 302, + "n": 874, + "r": 261, + "c.data": 12, + "a.liveFired": 4, + "i.live": 1, + "a.button": 2, + "a.type": 14, + "u": 304, + "i.live.slice": 1, + "u.length": 3, + "i.origType.replace": 1, + "O": 6, + "f.push": 5, + "i.selector": 3, + "u.splice": 1, + "c": 775, + "a.target": 5, + ".closest": 4, + "a.currentTarget": 4, + "j.length": 2, + ".selector": 1, + ".elem": 1, + "i.preType": 2, + "a.relatedTarget": 2, + "d.push": 1, + "elem": 101, + "handleObj": 2, + "d.length": 8, + "j.elem": 2, + "a.data": 2, + "j.handleObj.data": 1, + "a.handleObj": 2, + "j.handleObj": 1, + "j.handleObj.origHandler.apply": 1, + "break": 111, + "pa": 1, + "b.replace": 3, + "/": 290, + "./g": 2, + ".replace": 38, + "/g": 37, + "qa": 1, + "a.parentNode": 6, + "a.parentNode.nodeType": 2, + "ra": 1, + "b.each": 1, + "this.nodeName": 4, + ".nodeName": 2, + "f.events": 1, + "delete": 39, + "e.handle": 2, + "e.events": 2, + "c.event.add": 1, + ".data": 3, + "sa": 2, + ".ownerDocument": 5, + "s": 290, + ".length": 24, + "ta.test": 1, + "c.support.checkClone": 2, + "ua.test": 1, + "c.fragments": 2, + "b.createDocumentFragment": 1, + "c.clean": 1, + "fragment": 27, + "cacheable": 2, + "K": 4, + "c.each": 2, + "va.concat.apply": 1, + "va.slice": 1, + "wa": 1, + "a.document": 3, + "a.nodeType": 27, + "a.defaultView": 2, + "a.parentWindow": 2, + "c.fn.init": 1, + "Ra": 2, + "A.jQuery": 3, + "Sa": 2, + "A.": 3, + "A.document": 1, + "T": 4, + "Ta": 1, + "<[\\w\\W]+>": 4, + "|": 206, + "#": 13, + "Ua": 1, + ".": 91, + "Va": 1, + "S/": 4, + "Wa": 2, + "u00A0": 2, + "Xa": 1, + "<(\\w+)\\s*\\/?>": 4, + "<\\/\\1>": 4, + "P": 4, + "navigator.userAgent": 3, + "xa": 3, + "Q": 6, + "L": 10, + "Object.prototype.toString": 7, + "aa": 1, + "Object.prototype.hasOwnProperty": 6, + "ba": 3, + "Array.prototype.push": 4, + "R": 2, + "Array.prototype.slice": 6, + "ya": 2, + "Array.prototype.indexOf": 4, + "c.fn": 2, + "c.prototype": 1, + "init": 7, + "this.context": 17, + "this.length": 41, + "s.body": 2, + "this.selector": 16, + "Ta.exec": 1, + "b.ownerDocument": 6, + "Xa.exec": 1, + "c.isPlainObject": 3, + "s.createElement": 10, + "c.fn.attr.call": 1, + "else": 307, + "f.createElement": 1, + "a.cacheable": 1, + "a.fragment.cloneNode": 1, + "a.fragment": 1, + ".childNodes": 2, + "c.merge": 4, + "s.getElementById": 1, + "b.id": 1, + "T.find": 1, + "/.test": 19, + "s.getElementsByTagName": 2, + "b.jquery": 1, + ".find": 5, + "T.ready": 1, + "a.selector": 4, + "a.context": 2, + "c.makeArray": 3, + "selector": 40, + "jquery": 3, + "length": 48, + "size": 6, + "toArray": 2, + "R.call": 2, + "get": 24, + "this.toArray": 3, + "this.slice": 5, + "pushStack": 4, + "c.isArray": 5, + "ba.apply": 1, + "f.prevObject": 1, + "f.context": 1, + "f.selector": 2, + "each": 17, + "ready": 31, + "c.bindReady": 1, + "a.call": 17, + "Q.push": 1, + "eq": 2, + "first": 10, + "this.eq": 4, + "last": 6, + "slice": 10, + "this.pushStack": 12, + "R.apply": 1, + ".join": 14, + "map": 7, + "c.map": 1, + "end": 14, + "this.prevObject": 3, + "push": 11, + "sort": 4, + ".sort": 9, + "splice": 5, + ".splice": 5, + "c.fn.init.prototype": 1, + "c.extend": 7, + "c.fn.extend": 4, + "noConflict": 4, + "isReady": 5, + "c.fn.triggerHandler": 1, + ".triggerHandler": 1, + "bindReady": 5, + "s.readyState": 2, + "s.addEventListener": 3, + "A.addEventListener": 1, + "s.attachEvent": 3, + "A.attachEvent": 1, + "A.frameElement": 1, + "isFunction": 12, + "isArray": 10, + "isPlainObject": 4, + "a.setInterval": 2, + "a.constructor": 2, + "aa.call": 3, + "a.constructor.prototype": 2, + "isEmptyObject": 7, + "error": 20, + "throw": 27, + "parseJSON": 4, + "c.trim": 3, + "a.replace": 7, + "@": 1, + "d*": 8, + "eE": 4, + "s*": 15, + "A.JSON": 1, + "A.JSON.parse": 2, + "Function": 3, + "c.error": 2, + "noop": 3, + "globalEval": 2, + "Va.test": 1, + "s.documentElement": 2, + "d.type": 2, + "c.support.scriptEval": 2, + "d.appendChild": 3, + "s.createTextNode": 2, + "d.text": 1, + "b.insertBefore": 3, + "b.firstChild": 5, + "b.removeChild": 3, + "nodeName": 20, + "a.nodeName": 12, + "a.nodeName.toUpperCase": 2, + "b.toUpperCase": 3, + "b.apply": 2, + "b.call": 4, + "trim": 5, + "makeArray": 3, + "ba.call": 1, + "inArray": 5, + "b.indexOf": 2, + "b.length": 12, + "merge": 2, + "grep": 6, + "f.length": 5, + "f.concat.apply": 1, + "guid": 5, + "proxy": 4, + "a.apply": 2, + "b.guid": 2, + "a.guid": 7, + "c.guid": 1, + "uaMatch": 3, + "a.toLowerCase": 4, + "webkit": 6, + "w.": 17, + "/.exec": 4, + "opera": 4, + ".*version": 4, + "msie": 4, + "/compatible/.test": 1, + "mozilla": 4, + ".*": 20, + "rv": 4, + "browser": 11, + "version": 10, + "c.uaMatch": 1, + "P.browser": 2, + "c.browser": 1, + "c.browser.version": 1, + "P.version": 1, + "c.browser.webkit": 1, + "c.browser.safari": 1, + "c.inArray": 2, + "ya.call": 1, + "s.removeEventListener": 1, + "s.detachEvent": 1, + "c.support": 2, + "d.style.display": 5, + "d.innerHTML": 2, + "d.getElementsByTagName": 6, + "e.length": 9, + "leadingWhitespace": 3, + "d.firstChild.nodeType": 1, + "tbody": 7, + "htmlSerialize": 3, + "style": 30, + "/red/.test": 1, + "j.getAttribute": 2, + "hrefNormalized": 3, + "opacity": 13, + "j.style.opacity": 1, + "cssFloat": 4, + "j.style.cssFloat": 1, + "checkOn": 4, + ".value": 1, + "optSelected": 3, + ".appendChild": 1, + ".selected": 1, + "parentNode": 10, + "d.removeChild": 1, + ".parentNode": 7, + "deleteExpando": 3, + "checkClone": 1, + "scriptEval": 1, + "noCloneEvent": 3, + "boxModel": 1, + "b.type": 4, + "b.appendChild": 1, + "a.insertBefore": 2, + "a.firstChild": 6, + "b.test": 1, + "c.support.deleteExpando": 2, + "a.removeChild": 2, + "d.attachEvent": 2, + "d.fireEvent": 1, + "c.support.noCloneEvent": 1, + "d.detachEvent": 1, + "d.cloneNode": 1, + ".fireEvent": 3, + "s.createDocumentFragment": 1, + "a.appendChild": 3, + "d.firstChild": 2, + "a.cloneNode": 3, + ".cloneNode": 4, + ".lastChild.checked": 2, + "k.style.width": 1, + "k.style.paddingLeft": 1, + "s.body.appendChild": 1, + "c.boxModel": 1, + "c.support.boxModel": 1, + "k.offsetWidth": 1, + "s.body.removeChild": 1, + ".style.display": 5, + "n.setAttribute": 1, + "c.support.submitBubbles": 1, + "c.support.changeBubbles": 1, + "c.props": 2, + "readonly": 3, + "maxlength": 2, + "cellspacing": 2, + "rowspan": 2, + "colspan": 2, + "tabindex": 4, + "usemap": 2, + "frameborder": 2, + "G": 11, + "Ya": 2, + "za": 3, + "cache": 45, + "expando": 14, + "noData": 3, + "embed": 3, + "object": 59, + "applet": 2, + "data": 145, + "c.noData": 2, + "a.nodeName.toLowerCase": 3, + "c.cache": 2, + "removeData": 8, + "c.isEmptyObject": 1, + "c.removeData": 2, + "c.expando": 2, + "a.removeAttribute": 3, + "this.each": 42, + "a.split": 4, + "this.triggerHandler": 6, + "this.data": 5, + "this.trigger": 2, + ".each": 3, + "queue": 7, + "dequeue": 6, + "c.queue": 3, + "d.shift": 2, + "d.unshift": 2, + "f.call": 1, + "c.dequeue": 4, + "delay": 4, + "c.fx": 1, + "c.fx.speeds": 1, + "this.queue": 4, + "clearQueue": 2, + "Aa": 3, + "t": 436, + "ca": 6, + "Za": 2, + "r/g": 2, + "/href": 1, + "src": 7, + "style/": 1, + "ab": 1, + "button": 24, + "input": 26, + "/i": 22, + "bb": 2, + "select": 20, + "textarea": 8, + "cb": 16, + "area": 2, + "Ba": 3, + "/radio": 1, + "checkbox/": 1, + "attr": 13, + "c.attr": 4, + "removeAttr": 5, + "this.nodeType": 4, + "this.removeAttribute": 1, + "addClass": 2, + "r.addClass": 1, + "r.attr": 1, + ".split": 19, + "e.nodeType": 7, + "e.className": 14, + "j.indexOf": 1, + "removeClass": 2, + "n.removeClass": 1, + "n.attr": 1, + "j.replace": 2, + "toggleClass": 2, + "j.toggleClass": 1, + "j.attr": 1, + "i.hasClass": 1, + "this.className": 10, + "hasClass": 2, + "": 1, + "className": 4, + "replace": 8, + "indexOf": 5, + "val": 13, + "c.nodeName": 4, + "b.attributes.value": 1, + ".specified": 1, + "b.value": 4, + "b.selectedIndex": 2, + "b.options": 1, + "": 1, + "i=": 31, + "selected": 5, + "a=": 23, + "test": 21, + "type": 49, + "support": 13, + "getAttribute": 3, + "value": 98, + "on": 37, + "o=": 13, + "n=": 10, + "r=": 18, + "nodeType=": 6, + "call": 9, + "checked=": 1, + "this.selected": 1, + ".val": 5, + "this.selectedIndex": 1, + "this.value": 4, + "attrFn": 2, + "css": 7, + "html": 10, + "text": 14, + "width": 32, + "height": 25, + "offset": 21, + "c.attrFn": 1, + "c.isXMLDoc": 1, + "a.test": 2, + "ab.test": 1, + "a.getAttributeNode": 7, + ".nodeValue": 1, + "b.specified": 2, + "bb.test": 2, + "cb.test": 1, + "a.href": 2, + "c.support.style": 1, + "a.style.cssText": 3, + "a.setAttribute": 7, + "c.support.hrefNormalized": 1, + "a.getAttribute": 11, + "c.style": 1, + "db": 1, + "undefined": 328, + "string": 41, + "handle": 15, + "click": 11, + "events": 18, + "altKey": 4, + "attrChange": 4, + "attrName": 4, + "bubbles": 4, + "cancelable": 4, + "charCode": 7, + "clientX": 6, + "clientY": 5, + "ctrlKey": 6, + "currentTarget": 4, + "detail": 3, + "eventPhase": 4, + "fromElement": 6, + "handler": 14, + "keyCode": 6, + "layerX": 3, + "layerY": 3, + "metaKey": 5, + "newValue": 3, + "offsetX": 4, + "offsetY": 4, + "originalTarget": 1, + "pageX": 4, + "pageY": 4, + "prevValue": 3, + "relatedNode": 4, + "relatedTarget": 6, + "screenX": 4, + "screenY": 4, + "shiftKey": 4, + "srcElement": 5, + "target": 44, + "toElement": 5, + "view": 4, + "wheelDelta": 3, + "which": 8, + "mouseover": 12, + "mouseout": 12, + "form": 12, + "click.specialSubmit": 2, + "submit": 14, + "image": 5, + "keypress.specialSubmit": 2, + "password": 5, + ".specialSubmit": 2, + "radio": 17, + "checkbox": 14, + "multiple": 7, + "_change_data": 6, + "focusout": 11, + "change": 16, + "file": 5, + ".specialChange": 4, + "focusin": 9, + "bind": 3, + "one": 15, + "unload": 5, + "live": 8, + "lastToggle": 4, + "die": 3, + "hover": 3, + "mouseenter": 9, + "mouseleave": 9, + "focus": 7, + "blur": 8, + "load": 5, + "resize": 3, + "scroll": 6, + "dblclick": 3, + "mousedown": 3, + "mouseup": 3, + "mousemove": 3, + "keydown": 4, + "keypress": 4, + "keyup": 3, + "onunload": 1, + "g": 441, + "h": 499, + "l": 312, + "m": 76, + "q": 34, + "h.nodeType": 4, + "p": 110, + "v": 135, + "y": 109, + "S": 8, + "H": 8, + "M": 9, + "I": 7, + "f.exec": 2, + "p.push": 2, + "p.length": 10, + "r.exec": 1, + "n.relative": 5, + "ga": 2, + "p.shift": 4, + "n.match.ID.test": 2, + "k.find": 6, + "v.expr": 4, + "k.filter": 5, + "v.set": 5, + "expr": 2, + "p.pop": 4, + "set": 22, + "z": 21, + "h.parentNode": 3, + "D": 9, + "k.error": 2, + "j.call": 2, + ".nodeType": 9, + "E": 11, + "l.push": 2, + "l.push.apply": 1, + "k.uniqueSort": 5, + "B": 5, + "g.sort": 1, + "g.length": 2, + "g.splice": 2, + "k.matches": 1, + "n.order.length": 1, + "n.order": 1, + "n.leftMatch": 1, + ".exec": 2, + "q.splice": 1, + "y.substr": 1, + "y.length": 1, + "Syntax": 3, + "unrecognized": 3, + "expression": 4, + "ID": 8, + "NAME": 2, + "TAG": 2, + "u00c0": 2, + "uFFFF": 2, + "leftMatch": 2, + "attrMap": 2, + "attrHandle": 2, + "href": 9, + "g.getAttribute": 1, + "relative": 4, + "W/.test": 1, + "h.toLowerCase": 2, + "": 1, + "previousSibling": 5, + "name": 161, + "nth": 5, + "even": 3, + "odd": 2, + "not": 26, + "hidden": 12, + "reset": 2, + "contains": 8, + "only": 10, + "id": 38, + "class": 5, + "Array": 3, + "sourceIndex": 1, + "div": 28, + "script": 7, + "": 4, + "name=": 2, + "href=": 2, + "": 2, + "

": 2, + "class=": 5, + "

": 2, + ".TEST": 2, + "
": 4, + "
": 3, + "CLASS": 1, + "HTML": 9, + "find": 7, + "filter": 10, + "nextSibling": 3, + "iframe": 3, + "": 1, + "": 1, + "
": 1, + "
": 1, + "": 4, + "
": 5, + "": 3, + "": 3, + "": 2, + "": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "body": 22, + "before": 8, + "after": 7, + "position": 7, + "absolute": 2, + "top": 12, + "left": 14, + "margin": 8, + "border": 7, + "px": 31, + "solid": 2, + "#000": 2, + "padding": 4, + "": 1, + "": 1, + "fixed": 1, + "marginTop": 3, + "marginLeft": 2, + "using": 5, + "borderTopWidth": 1, + "borderLeftWidth": 1, + "static": 2, + "Left": 1, + "Top": 1, + "pageXOffset": 2, + "pageYOffset": 1, + "Height": 1, + "Width": 1, + "inner": 2, + "outer": 2, + "scrollTo": 1, + "CSS1Compat": 1, + "client": 3, + "window": 18, + "JSON": 5, + "Date.prototype.toJSON": 2, + "key": 85, + "isFinite": 1, + "this.valueOf": 2, + "this.getUTCFullYear": 1, + "this.getUTCMonth": 1, + "this.getUTCDate": 1, + "this.getUTCHours": 1, + "this.getUTCMinutes": 1, + "this.getUTCSeconds": 1, + "String.prototype.toJSON": 1, + "Number.prototype.toJSON": 1, + "Boolean.prototype.toJSON": 1, + "cx": 2, + "u0000": 1, + "u00ad": 1, + "u0600": 1, + "u0604": 1, + "u070f": 1, + "u17b4": 1, + "u17b5": 1, + "u200c": 1, + "u200f": 1, + "u2028": 3, + "u202f": 1, + "u2060": 1, + "u206f": 1, + "ufeff": 1, + "ufff0": 1, + "uffff": 1, + "escapable": 1, + "boolean": 8, + "JSON.stringify": 5, + "/bfnrt": 1, + "fA": 2, + "F": 8, + "JSON.parse": 1, + "PUT": 1, + "DELETE": 1, + "all": 16, + "_id": 1, + "Can": 2, + "add": 16, + "remove": 9, + "ties": 1, + "to": 92, + "collection.": 1, + "_removeReference": 1, + "model": 14, + "model.collection": 2, + "model.unbind": 1, + "this._onModelEvent": 1, + "_onModelEvent": 1, + "ev": 5, + "collection": 3, + "options": 56, + "this._remove": 1, + "model.idAttribute": 2, + "this._byId": 2, + "model.previous": 1, + "model.id": 1, + "this.trigger.apply": 2, + "methods": 8, + "_.each": 1, + "method": 30, + "Backbone.Collection.prototype": 1, + "_": 9, + ".apply": 7, + "this.models": 1, + ".concat": 3, + "_.toArray": 1, + "Backbone.Router": 1, + "options.routes": 2, + "this.routes": 4, + "this._bindRoutes": 1, + "this.initialize.apply": 2, + "namedParam": 2, + "splatParam": 2, + "escapeRegExp": 2, + "_.extend": 9, + "Backbone.Router.prototype": 1, + "Backbone.Events": 2, + "initialize": 3, + "//": 410, + "route": 18, + "callback": 23, + "Backbone.history": 2, + "Backbone.History": 2, + "_.isRegExp": 1, + "this._routeToRegExp": 1, + "Backbone.history.route": 1, + "_.bind": 2, + "args": 31, + "this._extractParameters": 1, + "callback.apply": 1, + "navigate": 2, + "triggerRoute": 4, + "Backbone.history.navigate": 1, + "_bindRoutes": 1, + "routes": 4, + "routes.unshift": 1, + "routes.length": 1, + "this.route": 1, + "_routeToRegExp": 1, + "route.replace": 1, + "RegExp": 12, + "_extractParameters": 1, + "route.exec": 1, + "this.handlers": 2, + "_.bindAll": 1, + "hashStrip": 4, + "#*": 1, + "isExplorer": 1, + "/msie": 1, + "historyStarted": 3, + "Backbone.History.prototype": 1, + "interval": 3, + "getFragment": 1, + "forcePushState": 2, + "this._hasPushState": 6, + "window.location.pathname": 1, + "search": 5, + "window.location.search": 1, + "fragment.indexOf": 1, + "this.options.root": 6, + "fragment.substr": 1, + "this.options.root.length": 1, + "window.location.hash": 3, + "fragment.replace": 1, + "start": 20, + "Error": 16, + "this.options": 6, + "this._wantsPushState": 3, + "this.options.pushState": 2, + "window.history": 2, + "window.history.pushState": 2, + "this.getFragment": 6, + "docMode": 3, + "document.documentMode": 3, + "oldIE": 3, + "isExplorer.exec": 1, + "navigator.userAgent.toLowerCase": 1, + "this.iframe": 4, + ".hide": 2, + ".appendTo": 2, + ".contentWindow": 1, + "this.navigate": 2, + ".bind": 3, + "this.checkUrl": 3, + "setInterval": 6, + "this.interval": 1, + "this.fragment": 13, + "loc": 2, + "window.location": 5, + "atRoot": 3, + "loc.pathname": 1, + "loc.hash": 1, + "loc.hash.replace": 1, + "window.history.replaceState": 1, + "document.title": 2, + "loc.protocol": 2, + "loc.host": 2, + "this.loadUrl": 4, + "this.handlers.unshift": 1, + "checkUrl": 1, + "current": 7, + "this.iframe.location.hash": 3, + "decodeURIComponent": 2, + "loadUrl": 1, + "fragmentOverride": 2, + "matched": 2, + "_.any": 1, + "handler.route.test": 1, + "handler.callback": 1, + "frag": 13, + "frag.indexOf": 1, + "this.iframe.document.open": 1, + ".close": 1, + "Backbone.View": 1, + "this.cid": 3, + "_.uniqueId": 1, + "this._configure": 1, + "this._ensureElement": 1, + "this.delegateEvents": 1, + "selectorDelegate": 2, + "this.el": 10, + "eventSplitter": 2, + "viewOptions": 2, + "Backbone.View.prototype": 1, + "tagName": 3, + "render": 1, + ".remove": 2, + "make": 2, + "attributes": 14, + "content": 5, + "el": 4, + "document.createElement": 26, + ".attr": 1, + ".html": 1, + "delegateEvents": 1, + "this.events": 1, + ".unbind": 4, + "match": 30, + "key.match": 1, + "eventName": 21, + ".delegate": 2, + "_configure": 1, + "viewOptions.length": 1, + "_ensureElement": 1, + "attrs": 6, + "this.attributes": 1, + "this.id": 2, + "attrs.id": 1, + "this.make": 1, + "this.tagName": 1, + "_.isString": 1, + ".get": 3, + "extend": 13, + "protoProps": 6, + "classProps": 2, + "child": 17, + "inherits": 2, + "child.extend": 1, + "this.extend": 1, + "Backbone.Model.extend": 1, + "Backbone.Collection.extend": 1, + "Backbone.Router.extend": 1, + "Backbone.View.extend": 1, + "methodMap": 2, + "Backbone.sync": 1, + "params": 2, + "processData": 3, + "params.url": 2, + "getUrl": 2, + "urlError": 2, + "params.data": 5, + "params.contentType": 2, + "model.toJSON": 1, + "Backbone.emulateJSON": 2, + "params.processData": 1, + "Backbone.emulateHTTP": 1, + "params.data._method": 1, + "params.type": 1, + "params.beforeSend": 1, + "xhr": 1, + "xhr.setRequestHeader": 1, + ".ajax": 1, + "ctor": 6, + "parent": 15, + "staticProps": 3, + "protoProps.hasOwnProperty": 1, + "protoProps.constructor": 1, + "parent.apply": 1, + "ctor.prototype": 3, + "parent.prototype": 6, + "child.prototype": 4, + "child.prototype.constructor": 1, + "child.__super__": 3, + "object.url": 4, + "_.isFunction": 1, + "wrapError": 1, + "onError": 3, + "resp": 3, + "model.trigger": 1, + "escapeHTML": 1, + "string.replace": 1, + "&": 13, + "#x": 1, + "da": 1, + "/gi": 2, + "": 1, + "lt": 55, + "#x27": 1, + "#x2F": 1, + "SHEBANG#!node": 2, + "http": 6, + "require": 9, + "http.createServer": 1, + "req": 32, + "res": 14, + "res.writeHead": 1, + "res.end": 1, + ".listen": 1, + "console.log": 3, + "window.Modernizr": 1, + "document": 26, + "Modernizr": 12, + "enableClasses": 3, + "docElement": 1, + "document.documentElement": 2, + "mod": 12, + "modElem": 2, + "mStyle": 2, + "modElem.style": 1, + "inputElem": 6, + "smile": 4, + "toString": 4, + ".toString": 3, + "prefixes": 2, + "omPrefixes": 1, + "cssomPrefixes": 2, + "omPrefixes.split": 1, + "domPrefixes": 3, + "omPrefixes.toLowerCase": 1, + "ns": 1, + "tests": 48, + "inputs": 3, + "classes": 1, + "classes.slice": 1, + "featureName": 5, + "used": 13, + "testing": 1, + "loop": 7, + "injectElementWithStyles": 9, + "rule": 5, + "nodes": 14, + "testnames": 3, + "ret": 62, + "node": 23, + "document.body": 8, + "fakeBody": 4, + "parseInt": 12, + "while": 53, + "node.id": 1, + "div.appendChild": 4, + "div.id": 1, + ".innerHTML": 3, + "fakeBody.appendChild": 1, + "//avoid": 1, + "crashing": 1, + "IE8": 2, + "background": 56, + "is": 67, + "fakeBody.style.background": 1, + "docElement.appendChild": 2, + "fakeBody.parentNode.removeChild": 1, + "div.parentNode.removeChild": 1, + "testMediaQuery": 2, + "mq": 3, + "matchMedia": 3, + "window.matchMedia": 1, + "window.msMatchMedia": 1, + ".matches": 1, + "bool": 30, + "window.getComputedStyle": 6, + "getComputedStyle": 3, + "node.currentStyle": 2, + "isEventSupported": 5, + "TAGNAMES": 2, + "element": 19, + "isSupported": 7, + "element.setAttribute": 3, + "element.removeAttribute": 2, + "_hasOwnProperty": 2, + ".hasOwnProperty": 2, + "hasOwnProperty": 5, + "_hasOwnProperty.call": 2, + "property": 15, + "object.constructor.prototype": 1, + "Function.prototype.bind": 2, + "that": 33, + "TypeError": 2, + "slice.call": 3, + "bound": 8, + "instanceof": 19, + "F.prototype": 1, + "target.prototype": 1, + "self": 17, + "result": 12, + "target.apply": 2, + "args.concat": 2, + "Object": 4, + "setCss": 7, + "str": 4, + "mStyle.cssText": 1, + "setCssAll": 2, + "str1": 6, + "str2": 4, + "prefixes.join": 3, + "obj": 40, + "substr": 2, + ".indexOf": 2, + "testProps": 3, + "props": 21, + "prefixed": 7, + "testDOMProps": 2, + "item": 4, + "item.bind": 1, + "testPropsAll": 17, + "prop": 24, + "ucProp": 5, + "prop.charAt": 1, + ".toUpperCase": 3, + "prop.substr": 1, + "cssomPrefixes.join": 1, + "elem.getContext": 2, + ".getContext": 8, + ".fillText": 1, + "window.WebGLRenderingContext": 1, + "window.DocumentTouch": 1, + "DocumentTouch": 1, + "node.offsetTop": 1, + "navigator": 3, + "window.postMessage": 1, + "window.openDatabase": 1, + "history.pushState": 1, + "mStyle.backgroundColor": 3, + "mStyle.background": 1, + ".style.textShadow": 1, + "mStyle.opacity": 1, + "str3": 2, + "str1.length": 1, + "mStyle.backgroundImage": 1, + "docElement.style": 1, + "node.offsetLeft": 1, + "node.offsetHeight": 2, + "document.styleSheets": 1, + "document.styleSheets.length": 1, + "cssText": 4, + "style.cssRules": 3, + ".cssText": 2, + "style.cssText": 1, + "/src/i.test": 1, + "cssText.indexOf": 1, + "rule.split": 1, + "elem.canPlayType": 10, + "Boolean": 2, + "bool.ogg": 2, + "no": 19, + "bool.h264": 1, + "bool.webm": 1, + "bool.mp3": 1, + "bool.wav": 1, + "bool.m4a": 1, + "localStorage.setItem": 1, + "localStorage.removeItem": 1, + "sessionStorage.setItem": 1, + "sessionStorage.removeItem": 1, + "window.Worker": 1, + "window.applicationCache": 1, + "document.createElementNS": 6, + "ns.svg": 4, + ".createSVGRect": 1, + "div.innerHTML": 7, + "div.firstChild": 3, + "div.firstChild.namespaceURI": 1, + "/SVGAnimate/.test": 1, + "toString.call": 2, + "/SVGClipPath/.test": 1, + "webforms": 2, + "len": 11, + "props.length": 2, + "attrs.list": 2, + "window.HTMLDataListElement": 1, + "inputElemType": 5, + "defaultView": 2, + "inputElem.setAttribute": 1, + "inputElem.type": 1, + "inputElem.value": 2, + "inputElem.style.cssText": 1, + "range": 2, + "inputElem.style.WebkitAppearance": 1, + "document.defaultView": 1, + "defaultView.getComputedStyle": 2, + ".WebkitAppearance": 1, + "inputElem.offsetHeight": 1, + "docElement.removeChild": 1, + "tel": 2, + "email": 2, + "inputElem.checkValidity": 2, + "feature": 12, + "feature.toLowerCase": 2, + "classes.push": 1, + "Modernizr.input": 1, + "Modernizr.addTest": 2, + "docElement.className": 2, + "allow": 6, + "chaining.": 1, + "window.html5": 2, + "reSkip": 1, + "option": 12, + "optgroup": 5, + "saveClones": 1, + "code": 2, + "fieldset": 1, + "h1": 5, + "h2": 5, + "h3": 3, + "h4": 3, + "h5": 1, + "h6": 1, + "img": 1, + "label": 2, + "li": 19, + "link": 2, + "ol": 1, + "param": 3, + "span": 1, + "strong": 1, + "table": 6, + "td": 3, + "tfoot": 1, + "th": 1, + "thead": 2, + "tr": 23, + "ul": 1, + "supportsHtml5Styles": 5, + "supportsUnknownElements": 3, + "a.innerHTML": 7, + "//if": 2, + "the": 107, + "implemented": 1, + "we": 25, + "can": 10, + "assume": 1, + "supports": 2, + "HTML5": 3, + "Styles": 1, + "fails": 2, + "Chrome": 2, + "are": 18, + "part": 8, + "of": 28, + "do": 15, + "an": 12, + "additional": 1, + "solve": 1, + "fail": 10, + "node.hidden": 1, + ".display": 1, + "a.childNodes.length": 1, + "document.createDocumentFragment": 3, + "frag.cloneNode": 1, + "frag.createDocumentFragment": 1, + "frag.createElement": 2, + "addStyleSheet": 2, + "ownerDocument": 9, + "ownerDocument.createElement": 3, + "ownerDocument.getElementsByTagName": 1, + "ownerDocument.documentElement": 1, + "p.innerHTML": 1, + "parent.insertBefore": 1, + "p.lastChild": 1, + "parent.firstChild": 1, + "getElements": 2, + "elements": 9, + "html5.elements": 1, + "elements.split": 1, + "shivMethods": 2, + "docCreateElement": 5, + "docCreateFragment": 2, + "ownerDocument.createDocumentFragment": 2, + "//abort": 1, + "shiv": 1, + "html5.shivMethods": 1, + "saveClones.test": 1, + "node.canHaveChildren": 1, + "reSkip.test": 1, + "frag.appendChild": 1, + "html5": 3, + "shivDocument": 3, + "shived": 5, + "ownerDocument.documentShived": 2, + "html5.shivCSS": 1, + "options.elements": 1, + "options.shivCSS": 1, + "options.shivMethods": 1, + "Modernizr._version": 1, + "Modernizr._prefixes": 1, + "Modernizr._domPrefixes": 1, + "Modernizr._cssomPrefixes": 1, + "Modernizr.mq": 1, + "Modernizr.hasEvent": 1, + "Modernizr.testProp": 1, + "Modernizr.testAllProps": 1, + "Modernizr.testStyles": 1, + "Modernizr.prefixed": 1, + "docElement.className.replace": 1, + "js": 1, + "classes.join": 1, + "this.document": 1, + "steelseries": 10, + "n.charAt": 1, + "n.substring": 1, + "i.substring": 3, + "this.color": 1, + "ui": 31, + "/255": 1, + "t.getRed": 4, + "t.getGreen": 4, + "t.getBlue": 4, + "t.getAlpha": 4, + "i.getRed": 1, + "i.getGreen": 1, + "i.getBlue": 1, + "i.getAlpha": 1, + "*f": 2, + "w/r": 1, + "p/r": 1, + "s/r": 1, + "o/r": 1, + "e*u": 1, + ".toFixed": 3, + "l*u": 1, + "c*u": 1, + "h*u": 1, + "vr": 20, + "stop": 7, + "color": 4, + "Math.floor": 26, + "Math.log10": 1, + "n/Math.pow": 1, + "": 1, + "e=": 21, + "beginPath": 12, + "moveTo": 10, + "lineTo": 22, + "quadraticCurveTo": 4, + "closePath": 8, + "stroke": 7, + "createElement": 3, + "canvas": 22, + "width=": 17, + "height=": 17, + "ii": 29, + "u=": 12, + "getContext": 26, + "2d": 26, + "ft": 70, + "1": 97, + "fillStyle=": 13, + "rect": 3, + "0": 220, + "fill": 10, + "t=": 19, + "getImageData": 1, + "2": 66, + "3": 13, + "wt": 26, + "32": 1, + "62": 1, + "f=": 13, + "84": 1, + "s=": 12, + "94": 1, + "ar": 20, + "255": 3, + "max": 1, + "min": 2, + ".5": 7, + "u/": 3, + "switch": 30, + "case": 136, + "/u": 3, + "f/": 1, + "vt": 50, + "n*6": 2, + "i*": 3, + "h*t": 1, + "*t": 3, + "%": 26, + "f*255": 1, + "u*255": 1, + "r*255": 1, + "st": 59, + "n/255": 1, + "t/255": 1, + "i/255": 1, + "Math.max": 10, + "Math.min": 5, + "f/r": 1, + "/f": 3, + "<0?0:n>": 1, + "si": 23, + "ti": 39, + "Math.round": 7, + "or": 38, + "/r": 1, + "u*r": 1, + "ni": 30, + "tt": 53, + "ei": 26, + "ot": 43, + "i.gaugeType": 6, + "steelseries.GaugeType.TYPE4": 2, + "i.size": 6, + "i.minValue": 10, + "i.maxValue": 10, + "bf": 6, + "i.niceScale": 10, + "i.threshold": 10, + "/2": 25, + "i.section": 8, + "i.area": 4, + "lu": 10, + "i.titleString": 10, + "au": 10, + "i.unitString": 10, + "hu": 11, + "i.frameDesign": 10, + "steelseries.FrameDesign.METAL": 7, + "wu": 9, + "i.frameVisible": 10, + "bt": 42, + "i.backgroundColor": 10, + "steelseries.BackgroundColor.DARK_GRAY": 7, + "bu": 11, + "i.backgroundVisible": 10, + "pt": 48, + "i.pointerType": 4, + "steelseries.PointerType.TYPE1": 3, + "i.pointerColor": 4, + "steelseries.ColorDef.RED": 7, + "ee": 2, + "i.knobType": 4, + "steelseries.KnobType.STANDARD_KNOB": 14, + "fi": 26, + "i.knobStyle": 4, + "steelseries.KnobStyle.SILVER": 4, + "i.lcdColor": 8, + "steelseries.LcdColor.STANDARD": 9, + "i.lcdVisible": 8, + "eu": 13, + "i.lcdDecimals": 8, + "ye": 2, + "i.digitalFont": 8, + "pe": 2, + "i.fractionalScaleDecimals": 4, + "br": 19, + "i.ledColor": 10, + "steelseries.LedColor.RED_LED": 7, + "ru": 14, + "i.ledVisible": 10, + "vf": 5, + "i.thresholdVisible": 8, + "kr": 17, + "i.minMeasuredValueVisible": 8, + "dr": 16, + "i.maxMeasuredValueVisible": 8, + "cf": 7, + "i.foregroundType": 6, + "steelseries.ForegroundType.TYPE1": 5, + "af": 5, + "i.foregroundVisible": 10, + "oe": 2, + "i.labelNumberFormat": 10, + "steelseries.LabelNumberFormat.STANDARD": 5, + "yr": 17, + "i.playAlarm": 10, + "uf": 5, + "i.alarmSound": 10, + "fe": 2, + "i.customLayer": 4, + "le": 1, + "i.tickLabelOrientation": 4, + "steelseries.GaugeType.TYPE1": 4, + "steelseries.TickLabelOrientation.TANGENT": 2, + "steelseries.TickLabelOrientation.NORMAL": 2, + "wr": 18, + "i.trendVisible": 4, + "hr": 17, + "i.trendColors": 4, + "steelseries.LedColor.GREEN_LED": 2, + "steelseries.LedColor.CYAN_LED": 2, + "sr": 21, + "i.useOdometer": 2, + "i.odometerParams": 2, + "wf": 4, + "i.odometerUseValue": 2, + "ki": 21, + "r.createElement": 11, + "ki.setAttribute": 2, + "yf": 3, + "ri": 24, + "ht": 34, + "ef": 5, + "steelseries.TrendState.OFF": 4, + "lr": 19, + "f*.06": 1, + "cr": 20, + "f*.29": 19, + "er": 19, + "f*.36": 4, + "ci": 29, + "et": 45, + "gi": 26, + "at": 58, + "rr": 21, + "*lt": 9, + "r.getElementById": 7, + "u.save": 7, + "u.clearRect": 5, + "u.canvas.width": 7, + "u.canvas.height": 7, + "s/2": 2, + "it": 112, + "k/2": 1, + "pf": 4, + ".6*s": 1, + "ne": 2, + ".4*k": 1, + "pr": 16, + "s/10": 1, + "ce": 6, + "ae": 2, + "hf": 4, + "k*.13": 2, + "bi": 27, + "s*.4": 1, + "sf": 5, + "rf": 5, + "k*.57": 1, + "tf": 5, + "ve": 3, + "k*.61": 1, + "Math.PI/2": 40, + "ue": 1, + "Math.PI/180": 5, + "ff": 5, + "ir": 23, + "nr": 22, + "ai": 21, + "yt": 32, + "fr": 21, + "oi": 23, + "lf": 5, + "re": 2, + "ai/": 2, + "h/vt": 1, + "*vt": 4, + "Math.ceil": 63, + "b/vt": 1, + "vt/": 3, + "ot.type": 10, + "Math.PI": 13, + "at/yt": 4, + "*Math.PI": 10, + "default": 21, + "*ue": 1, + "ci/2": 1, + "wi": 24, + "nf": 7, + "wi.getContext": 2, + "di": 22, + "ut": 59, + "di.getContext": 2, + "fu": 13, + "hi": 15, + "f*.093457": 10, + "uu": 13, + "hi.getContext": 6, + "gt": 32, + "nu": 11, + "gt.getContext": 3, + "iu": 14, + "f*.028037": 6, + "se": 1, + "iu.getContext": 1, + "gr": 12, + "he": 1, + "gr.getContext": 1, + "vi": 16, + "tu": 13, + "vi.getContext": 2, + "yi": 17, + "ou": 13, + "yi.getContext": 2, + "pi": 24, + "kt": 24, + "pi.getContext": 2, + "pu": 9, + "li.getContext": 6, + "gu": 9, + "du": 10, + "ku": 9, + "yu": 10, + "cu": 18, + "su": 12, + "tr.getContext": 1, + "kf": 3, + "u.textAlign": 2, + "u.strokeStyle": 2, + "ei.textColor": 2, + "u.fillStyle": 2, + "steelseries.LcdColor.STANDARD_GREEN": 4, + "u.shadowColor": 2, + "u.shadowOffsetX": 2, + "s*.007": 3, + "u.shadowOffsetY": 2, + "u.shadowBlur": 2, + "u.font": 2, + "u.fillText": 2, + "n.toFixed": 2, + "bi*.05": 1, + "hf*.5": 1, + "pr*.38": 1, + "bi*.9": 1, + "u.restore": 6, + "te": 2, + "n.save": 35, + "n.drawImage": 14, + "k*.037383": 11, + "s*.523364": 2, + "k*.130841": 1, + "s*.130841": 1, + "k*.514018": 2, + "s*.831775": 1, + "k*.831775": 1, + "s*.336448": 1, + "k*.803738": 2, + "s*.626168": 1, + "n.restore": 35, + "ie": 2, + "t.width": 2, + "f*.046728": 1, + "t.height": 2, + "t.width*.9": 4, + "t.getContext": 2, + "n.createLinearGradient": 17, + ".1": 18, + "t.height*.9": 6, + "i.addColorStop": 27, + ".3": 8, + ".59": 4, + "n.fillStyle": 36, + "n.beginPath": 39, + "n.moveTo": 37, + "t.width*.5": 4, + "n.lineTo": 33, + "t.width*.1": 2, + "n.closePath": 34, + "n.fill": 17, + "n.strokeStyle": 27, + "n.stroke": 31, + "vu": 10, + "": 1, + "": 1, + "n.lineWidth": 30, + "s*.035": 2, + "at/yt*t": 1, + "at/yt*h": 1, + "yt/at": 1, + "n.translate": 93, + "n.rotate": 53, + "n.arc": 6, + "s*.365": 2, + "n.lineWidth/2": 2, + "df": 3, + "bt.labelColor.setAlpha": 1, + "n.textAlign": 12, + "n.textBaseline": 10, + "s*.04": 1, + "n.font": 34, + "bt.labelColor.getRgbaColor": 2, + "lt*fr": 1, + "s*.38": 2, + "s*.35": 1, + "s*.355": 1, + "s*.36": 1, + "s*.3": 1, + "s*.1": 1, + "oi/2": 2, + "parseFloat": 32, + "b.toFixed": 1, + "c.toFixed": 2, + "le.type": 1, + "t.format": 7, + "n.fillText": 54, + "e.toFixed": 2, + "e.toPrecision": 1, + "continue": 18, + "n.frame": 22, + "n.background": 22, + "n.led": 20, + "n.pointer": 10, + "n.foreground": 22, + "n.trend": 4, + "n.odo": 2, + "rt": 45, + "uu.drawImage": 1, + "nu.drawImage": 3, + "se.drawImage": 1, + "steelseries.ColorDef.BLUE.dark.getRgbaColor": 6, + "he.drawImage": 1, + "steelseries.ColorDef.RED.medium.getRgbaColor": 6, + "ii.length": 2, + ".start": 12, + ".stop": 11, + ".color": 13, + "ui.length": 2, + "ct": 34, + "ut.save": 1, + "ut.translate": 3, + "ut.rotate": 1, + "ut.drawImage": 2, + "s*.475": 1, + "ut.restore": 1, + "steelseries.Odometer": 1, + "_context": 1, + "f*.075": 1, + "decimals": 1, + "wt.decimals": 1, + "digits": 3, + "wt.digits": 2, + "valueForeColor": 1, + "wt.valueForeColor": 1, + "valueBackColor": 1, + "wt.valueBackColor": 1, + "decimalForeColor": 1, + "wt.decimalForeColor": 1, + "decimalBackColor": 1, + "wt.decimalBackColor": 1, + "font": 1, + "wt.font": 1, + "tr.width": 1, + "nt": 75, + "bt.labelColor": 2, + "pt.type": 6, + "steelseries.TrendState.UP": 2, + "steelseries.TrendState.STEADY": 2, + "steelseries.TrendState.DOWN": 2, + "dt": 30, + "wi.width": 1, + "wi.height": 1, + "di.width": 1, + "di.height": 1, + "hi.width": 3, + "hi.height": 3, + "gt.width": 2, + "gt.height": 1, + "vi.width": 1, + "vi.height": 1, + "yi.width": 1, + "yi.height": 1, + "pi.width": 1, + "pi.height": 1, + "li.width": 3, + "li.height": 3, + "gf": 2, + "yf.repaint": 1, + "ur": 20, + "e3": 5, + "clearInterval": 6, + "this.setValue": 7, + "": 5, + "ki.pause": 1, + "ki.play": 1, + "this.repaint": 126, + "this.getValue": 7, + "this.setOdoValue": 1, + "this.getOdoValue": 1, + "this.setValueAnimated": 7, + "t.playing": 1, + "t.stop": 1, + "Tween": 11, + "Tween.regularEaseInOut": 6, + "t.onMotionChanged": 1, + "n.target._pos": 7, + "": 1, + "i.repaint": 1, + "t.start": 1, + "this.resetMinMeasuredValue": 4, + "this.resetMaxMeasuredValue": 4, + "this.setMinMeasuredValueVisible": 4, + "this.setMaxMeasuredValueVisible": 4, + "this.setMaxMeasuredValue": 3, + "this.setMinMeasuredValue": 3, + "this.setTitleString": 4, + "this.setUnitString": 4, + "this.setMinValue": 4, + "frame": 23, + "this.getMinValue": 3, + "this.setMaxValue": 3, + "this.getMaxValue": 4, + "this.setThreshold": 4, + "this.setArea": 1, + "foreground": 30, + "this.setSection": 4, + "this.setThresholdVisible": 4, + "this.setLcdDecimals": 3, + "this.setFrameDesign": 7, + "this.setBackgroundColor": 7, + "pointer": 28, + "this.setForegroundType": 5, + "this.setPointerType": 3, + "this.setPointerColor": 4, + "this.setLedColor": 5, + "led": 18, + "this.setLcdColor": 5, + "this.setTrend": 2, + "this.setTrendVisible": 2, + "trend": 2, + "odo": 1, + "u.drawImage": 22, + "cu.setValue": 1, + "of.state": 1, + "u.translate": 8, + "u.rotate": 4, + "u.canvas.width*.4865": 2, + "u.canvas.height*.105": 2, + "s*.006": 1, + "kt.clearRect": 1, + "kt.save": 1, + "kt.translate": 2, + "kt.rotate": 1, + "kt.drawImage": 1, + "kt.restore": 1, + "i.useSectionColors": 4, + "i.valueColor": 6, + "i.valueGradient": 4, + "i.useValueGradient": 4, + "yi.setAttribute": 2, + "e/2": 2, + "ut/2": 4, + "e/10": 3, + "ut*.13": 1, + "e*.4": 1, + "or/2": 1, + "e*.116822": 3, + "e*.485981": 3, + "s*.093457": 5, + "e*.53": 1, + "ut*.61": 1, + "s*.06": 1, + "s*.57": 1, + "dt.type": 4, + "l/Math.PI*180": 4, + "l/et": 8, + "Math.PI/3": 1, + "ft/2": 2, + "Math.PI/": 1, + "ai.getContext": 2, + "s*.060747": 2, + "s*.023364": 2, + "ri.getContext": 6, + "yt.getContext": 5, + "si.getContext": 4, + "ci/": 2, + "f/ht": 1, + "*ht": 8, + "h/ht": 1, + "ht/": 2, + "*kt": 5, + "angle": 1, + "*st": 1, + "n.value": 4, + "tu.drawImage": 1, + "gr.drawImage": 3, + "at.getImageData": 1, + "at.drawImage": 1, + "bt.length": 4, + "ii.push": 1, + "Math.abs": 19, + "ai.width": 1, + "ai.height": 1, + "ri.width": 3, + "ri.height": 3, + "yt.width": 2, + "yt.height": 2, + "si.width": 2, + "si.height": 2, + "s*.085": 1, + "e*.35514": 2, + ".107476*ut": 1, + ".897195*ut": 1, + "t.addColorStop": 6, + ".22": 1, + ".76": 1, + "s*.075": 1, + ".112149*ut": 1, + ".892523*ut": 1, + "r.addColorStop": 6, + "e*.060747": 2, + "e*.023364": 2, + "n.createRadialGradient": 4, + ".030373*e": 1, + "u.addColorStop": 14, + "i*kt": 1, + "n.rect": 4, + "n.canvas.width": 3, + "n.canvas.height": 3, + "n.canvas.width/2": 6, + "n.canvas.height/2": 4, + "u.createRadialGradient": 1, + "t.light.getRgbaColor": 2, + "t.dark.getRgbaColor": 2, + "ni.textColor": 2, + "e*.007": 5, + "oi*.05": 1, + "or*.5": 1, + "cr*.38": 1, + "oi*.9": 1, + "ei.labelColor.setAlpha": 1, + "e*.04": 1, + "ei.labelColor.getRgbaColor": 2, + "st*di": 1, + "e*.28": 1, + "e*.1": 1, + "e*.0375": 1, + "h.toFixed": 3, + "df.type": 1, + "u.toFixed": 2, + "u.toPrecision": 1, + "kf.repaint": 1, + "": 3, + "yi.pause": 1, + "yi.play": 1, + "ti.playing": 1, + "ti.stop": 1, + "ti.onMotionChanged": 1, + "t.repaint": 4, + "ti.start": 1, + "this.setValueColor": 3, + "this.setSectionActive": 2, + "this.setGradient": 2, + "this.setGradientActive": 2, + "useGradient": 2, + "n/lt*": 1, + "vi.getEnd": 1, + "vi.getStart": 1, + "s/c": 1, + "vi.getColorAt": 1, + ".getRgbaColor": 3, + "": 1, + "e.medium.getHexColor": 1, + "i.medium.getHexColor": 1, + "n*kt": 1, + "pu.state": 1, + "i.orientation": 2, + "steelseries.Orientation.NORTH": 2, + "hi.setAttribute": 2, + "steelseries.GaugeType.TYPE5": 1, + "kt/at": 2, + "f.clearRect": 2, + "f.canvas.width": 3, + "f.canvas.height": 3, + "h/2": 1, + "k*.733644": 1, + ".455*h": 1, + ".51*k": 1, + "bi/": 2, + "l/ot": 1, + "*ot": 2, + "d/ot": 1, + "ot/": 1, + "ui.getContext": 4, + "u*.093457": 10, + "ii.getContext": 5, + "st.getContext": 2, + "u*.028037": 6, + "hr.getContext": 1, + "er.getContext": 1, + "fi.getContext": 4, + "kr.type": 1, + "ft.type": 1, + "h*.44": 3, + "k*.8": 1, + "k*.16": 1, + "h*.2": 2, + "k*.446666": 2, + "h*.8": 1, + "u*.046728": 1, + "h*.035": 1, + "kt/at*t": 1, + "kt/at*l": 1, + "at/kt": 1, + "h*.365": 2, + "it.labelColor.getRgbaColor": 4, + "vertical": 1, + ".046728*h": 1, + "n.measureText": 2, + ".width": 2, + "k*.4": 1, + "h*.3": 1, + "k*.47": 1, + "it.labelColor.setAlpha": 1, + "steelseries.Orientation.WEST": 6, + "h*.04": 1, + "ht*yi": 1, + "h*.41": 1, + "h*.415": 1, + "h*.42": 1, + "h*.48": 1, + "h*.0375": 1, + "d.toFixed": 1, + "f.toFixed": 1, + "i.toFixed": 2, + "i.toPrecision": 1, + "u/2": 5, + "cr.drawImage": 3, + "ar.drawImage": 1, + "or.drawImage": 1, + "or.restore": 1, + "rr.drawImage": 1, + "rr.restore": 1, + "gt.length": 2, + "p.save": 2, + "p.translate": 8, + "p.rotate": 4, + "p.restore": 3, + "ni.length": 2, + "p.drawImage": 1, + "h*.475": 1, + "k*.32": 1, + "h*1.17": 2, + "it.labelColor": 2, + "ut.type": 6, + "ui.width": 2, + "ui.height": 2, + "ii.width": 2, + "ii.height": 2, + "st.width": 1, + "st.height": 1, + "fi.width": 2, + "fi.height": 2, + "wu.repaint": 1, + "": 2, + "hi.pause": 1, + "hi.play": 1, + "dt.playing": 2, + "dt.stop": 2, + "dt.onMotionChanged": 2, + "": 1, + "dt.start": 2, + "f.save": 5, + "f.drawImage": 9, + "f.translate": 10, + "f.rotate": 5, + "f.canvas.width*.4865": 2, + "f.canvas.height*.27": 2, + "f.restore": 5, + "h*.006": 1, + "h*1.17/2": 1, + "et.clearRect": 1, + "et.save": 1, + "et.translate": 2, + "et.rotate": 1, + "et.drawImage": 1, + "et.restore": 1, + "i.width": 6, + "i.height": 6, + "fi.setAttribute": 2, + "l.type": 26, + "y.clearRect": 2, + "y.canvas.width": 3, + "y.canvas.height": 3, + "*.05": 4, + "f/2": 13, + "it/2": 2, + ".053": 1, + ".038": 1, + "*u": 1, + "u/22": 2, + ".89*f": 2, + "u/10": 2, + "ei/": 1, + "e/ut": 1, + "*ut": 2, + "s/ut": 1, + "ut/": 1, + "kt.getContext": 2, + "rt.getContext": 2, + "dt.getContext": 1, + "ni.getContext": 4, + "lt.textColor": 2, + "n.shadowColor": 2, + "n.shadowOffsetX": 4, + "u*.003": 2, + "n.shadowOffsetY": 4, + "n.shadowBlur": 4, + "u*.004": 1, + "u*.007": 2, + "u*.009": 1, + "f*.571428": 8, + "u*.88": 2, + "u*.055": 2, + "f*.7": 2, + "f*.695": 4, + "f*.18": 4, + "u*.22": 3, + "u*.15": 2, + "t.toFixed": 2, + "i.getContext": 2, + "t.save": 2, + "t.createLinearGradient": 2, + "i.height*.9": 6, + "t.fillStyle": 2, + "t.beginPath": 4, + "t.moveTo": 4, + "i.height*.5": 2, + "t.lineTo": 8, + "i.width*.9": 6, + "t.closePath": 4, + "i.width*.5": 2, + "t.fill": 2, + "t.strokeStyle": 2, + "t.stroke": 2, + "t.restore": 2, + "w.labelColor.setAlpha": 1, + "f*.1": 5, + "w.labelColor.getRgbaColor": 2, + ".34*f": 2, + ".36*f": 6, + ".33*f": 2, + ".32*f": 2, + "u*.12864": 3, + "u*.856796": 1, + "u*.7475": 1, + "c/": 2, + ".65*u": 1, + ".63*u": 3, + ".66*u": 1, + ".67*u": 1, + "f*.142857": 4, + "f*.871012": 2, + "f*.19857": 1, + "f*.82": 1, + "v/": 1, + "tickCounter": 4, + "currentPos": 20, + "tickCounter*a": 2, + "r.toFixed": 8, + "f*.28": 6, + "r.toPrecision": 4, + "u*.73": 3, + "ui/2": 1, + "vi.drawImage": 2, + "yi.drawImage": 2, + "hr.drawImage": 2, + "k.save": 1, + ".856796": 2, + ".7475": 2, + ".12864": 2, + "u*i": 1, + "u*r*": 1, + "bt/": 1, + "k.translate": 2, + "f*.365": 2, + "nt/2": 2, + ".871012": 3, + ".82": 2, + ".142857": 5, + ".19857": 6, + "f*r*bt/": 1, + "f*": 5, + "u*.58": 1, + "k.drawImage": 3, + "k.restore": 1, + "kt.width": 1, + "b*.093457": 2, + "kt.height": 1, + "d*.093457": 2, + "rt.width": 1, + "rt.height": 1, + "ni.width": 2, + "ni.height": 2, + "hu.repaint": 1, + "w.labelColor": 1, + "i*.12864": 2, + "i*.856796": 2, + "i*.7475": 1, + "t*.871012": 1, + "t*.142857": 8, + "t*.82": 1, + "t*.19857": 1, + "steelseries.BackgroundColor.CARBON": 2, + "steelseries.BackgroundColor.PUNCHED_SHEET": 2, + "steelseries.BackgroundColor.STAINLESS": 2, + "steelseries.BackgroundColor.BRUSHED_STAINLESS": 2, + "steelseries.BackgroundColor.TURNED": 2, + "r.setAlpha": 8, + ".05": 2, + "p.addColorStop": 4, + "r.getRgbaColor": 8, + ".15": 2, + ".48": 7, + ".49": 4, + "n.fillRect": 16, + "t*.435714": 4, + "i*.435714": 4, + "i*.142857": 1, + "b.addColorStop": 4, + ".69": 1, + ".7": 1, + ".4": 2, + "t*.007142": 4, + "t*.571428": 2, + "i*.007142": 4, + "i*.571428": 2, + "t*.45": 4, + "t*.114285": 1, + "t/2": 1, + "i*.0486/2": 1, + "i*.053": 1, + "i*.45": 4, + "i*.114285": 1, + "i/2": 1, + "t*.025": 1, + "t*.053": 1, + "ut.addColorStop": 2, + "wt.medium.getRgbaColor": 3, + "wt.light.getRgbaColor": 2, + "i*.05": 2, + "t*.05": 2, + "ot.addColorStop": 2, + ".98": 1, + "Math.PI*.5": 2, + "f*.05": 2, + ".049*t": 8, + ".825*t": 9, + "n.bezierCurveTo": 42, + ".7975*t": 2, + ".0264*t": 4, + ".775*t": 3, + ".0013*t": 12, + ".85*t": 2, + ".8725*t": 3, + ".0365*t": 9, + ".8075*t": 4, + ".7925*t": 3, + ".0214*t": 13, + ".7875*t": 4, + ".7825*t": 5, + ".0189*t": 4, + ".785*t": 1, + ".8175*t": 2, + ".815*t": 1, + ".8125*t": 2, + ".8*t": 2, + ".0377*t": 2, + ".86*t": 4, + ".0415*t": 2, + ".845*t": 1, + ".0465*t": 2, + ".805*t": 2, + ".0113*t": 10, + ".0163*t": 7, + ".8025*t": 1, + ".8225*t": 3, + ".8425*t": 1, + ".03*t": 2, + ".115*t": 5, + ".1075*t": 2, + ".1025*t": 8, + ".0038*t": 2, + ".76*t": 4, + ".7675*t": 2, + ".7725*t": 6, + ".34": 1, + ".0516*t": 7, + ".8525*t": 2, + ".0289*t": 8, + ".875*t": 3, + ".044*t": 1, + ".0314*t": 5, + ".12*t": 4, + ".0875*t": 3, + ".79*t": 1, + "": 5, + "fi.pause": 1, + "fi.play": 1, + "yt.playing": 1, + "yt.stop": 1, + "yt.onMotionChanged": 1, + "t.setValue": 1, + "yt.start": 1, + "mminMeasuredValue": 1, + "": 1, + "setMaxValue=": 1, + "y.drawImage": 6, + "u*n": 2, + "u*i*": 2, + "at/": 1, + "f*.34": 3, + "gt.height/2": 2, + "f*i*at/": 1, + "u*.65": 2, + "ft/": 1, + "dt.width": 1, + "dt.height/2": 2, + ".8": 1, + ".14857": 1, + "f*i*ft/": 1, + "y.save": 1, + "y.restore": 1, + "oi.setAttribute": 2, + "v.clearRect": 2, + "v.canvas.width": 4, + "v.canvas.height": 4, + ".053*e": 1, + "e/22": 2, + "e/1.95": 1, + "u/vt": 1, + "s/vt": 1, + "g.width": 4, + "f*.121428": 2, + "g.height": 4, + "e*.012135": 2, + "f*.012135": 2, + "e*.121428": 2, + "g.getContext": 2, + "d.width": 4, + "d.height": 4, + "d.getContext": 2, + "pt.getContext": 2, + "ci.getContext": 1, + "kt.textColor": 2, + "f*.007": 2, + "f*.009": 1, + "e*.009": 1, + "e*.88": 2, + "e*.055": 2, + "e*.22": 3, + "e*.15": 2, + "k.labelColor.setAlpha": 1, + "k.labelColor.getRgbaColor": 5, + "e*.12864": 3, + "e*.856796": 3, + ".65*e": 1, + ".63*e": 3, + ".66*e": 1, + ".67*e": 1, + "g/": 1, + "tickCounter*h": 2, + "e*.73": 3, + "ti/2": 1, + "n.bargraphled": 4, + "nr.drawImage": 2, + "tr.drawImage": 2, + "nt.save": 1, + "e*.728155*": 1, + "st/": 1, + "nt.translate": 2, + "rt/2": 2, + "f*.856796": 2, + "f*.12864": 2, + "*st/": 1, + "e*.58": 1, + "nt.drawImage": 3, + "nt.restore": 1, + "f*.012135/2": 1, + "ft.push": 1, + "*c": 2, + "y*.121428": 2, + "w*.012135": 2, + "y*.012135": 2, + "w*.121428": 2, + "y*.093457": 2, + "w*.093457": 2, + "pt.width": 1, + "pt.height": 1, + "ku.repaint": 1, + "k.labelColor": 1, + "r*": 2, + "r*1.014": 5, + "t*.856796": 1, + "t*.12864": 1, + "t*.13": 3, + "r*1.035": 4, + "f.setAlpha": 8, + ".047058": 2, + "rt.addColorStop": 4, + "f.getRgbaColor": 8, + ".145098": 1, + ".149019": 1, + "t*.15": 1, + "i*.152857": 1, + ".298039": 1, + "it.addColorStop": 4, + ".686274": 1, + ".698039": 1, + "i*.851941": 1, + "t*.121428": 1, + "i*.012135": 1, + "t*.012135": 1, + "i*.121428": 1, + "*r": 4, + "o/r*": 1, + "yt.getEnd": 2, + "yt.getStart": 2, + "lt/ct": 2, + "yt.getColorAt": 2, + "": 1, + "st.medium.getHexColor": 2, + "a.medium.getHexColor": 2, + "b/2": 2, + "e/r*": 1, + "": 1, + "v.createRadialGradient": 2, + "": 5, + "oi.pause": 1, + "oi.play": 1, + "": 1, + "bargraphled": 3, + "v.drawImage": 2, + "": 1, + "856796": 4, + "728155": 2, + "34": 2, + "12864": 2, + "142857": 2, + "65": 2, + "drawImage": 12, + "save": 27, + "restore": 14, + "repaint": 23, + "dr=": 1, + "b=": 25, + "128": 2, + "y=": 5, + "48": 1, + "w=": 4, + "lcdColor": 4, + "LcdColor": 4, + "STANDARD": 3, + "pt=": 5, + "lcdDecimals": 4, + "lt=": 4, + "unitString": 4, + "at=": 3, + "unitStringVisible": 4, + "ht=": 6, + "digitalFont": 4, + "bt=": 3, + "valuesNumeric": 4, + "ct=": 5, + "autoScroll": 2, + "section": 2, + "c=": 24, + "wt=": 3, + "getElementById": 4, + "clearRect": 8, + "h=": 19, + "l=": 10, + "v=": 5, + "floor": 13, + "5": 23, + "ot=": 4, + "sans": 12, + "serif": 13, + "it=": 7, + "nt=": 5, + "et=": 6, + "kt=": 4, + "textAlign=": 7, + "strokeStyle=": 8, + "4": 4, + "clip": 1, + "font=": 28, + "measureText": 4, + "toFixed": 3, + "fillText": 23, + "38": 5, + "o*.2": 1, + "clearTimeout": 2, + "<=o-4&&(e=0,c=!1),u.fillText(n,o-2-e,h*.5+v*.38)),u.restore()},dt=function(n,i,r,u){var>": 1, + "d=": 15, + "rt=": 3, + "095": 1, + "createLinearGradient": 6, + "addColorStop": 25, + "4c4c4c": 1, + "08": 1, + "666666": 2, + "92": 1, + "e6e6e6": 1, + "g=": 15, + "gradientStartColor": 1, + "tt=": 3, + "gradientFraction1Color": 1, + "gradientFraction2Color": 1, + "gradientFraction3Color": 1, + "gradientStopColor": 1, + "yt=": 4, + "31": 26, + "k=": 11, + "p=": 5, + "ut=": 6, + "rgb": 6, + "03": 1, + "49": 1, + "57": 1, + "83": 1, + "wt.repaint": 1, + "resetBuffers": 1, + "this.setScrolling": 1, + "w.textColor": 1, + "": 1, + "<=f[n].stop){t=et[n],i=ut[n];break}u.drawImage(t,0,0),kt(a,i)},this.repaint(),this},wr=function(n,t){t=t||{};var>": 1, + "64": 1, + "875": 2, + "textBaseline=": 4, + "textColor": 2, + "STANDARD_GREEN": 1, + "shadowColor=": 1, + "shadowOffsetX=": 1, + "05": 2, + "shadowOffsetY=": 1, + "shadowBlur=": 1, + "06": 1, + "46": 1, + "8": 2, + "setValue=": 2, + "setLcdColor=": 2, + "repaint=": 2, + "br=": 1, + "200": 2, + "st=": 3, + "decimalsVisible": 2, + "gt=": 1, + "textOrientationFixed": 2, + "frameDesign": 4, + "FrameDesign": 2, + "METAL": 2, + "frameVisible": 4, + "backgroundColor": 2, + "BackgroundColor": 1, + "DARK_GRAY": 1, + "vt=": 2, + "backgroundVisible": 2, + "pointerColor": 4, + "ColorDef": 2, + "RED": 1, + "foregroundType": 4, + "ForegroundType": 2, + "TYPE1": 2, + "foregroundVisible": 4, + "PI": 54, + "180": 26, + "ni=": 1, + "labelColor": 6, + "getRgbaColor": 21, + "translate": 38, + "360": 15, + "p.labelColor.getRgbaColor": 4, + "f*.38": 7, + "f*.37": 3, + "": 1, + "rotate": 31, + "Math": 51, + "u00b0": 8, + "41": 3, + "45": 5, + "25": 9, + "085": 4, + "100": 4, + "90": 3, + "21": 2, + "u221e": 2, + "135": 1, + "225": 1, + "75": 3, + "270": 1, + "315": 1, + "ti=": 2, + "200934": 2, + "434579": 4, + "163551": 5, + "560747": 4, + "lineWidth=": 6, + "lineCap=": 5, + "lineJoin=": 5, + "471962": 4, + "205607": 1, + "523364": 5, + "799065": 2, + "836448": 5, + "794392": 1, + "ii=": 2, + "350467": 5, + "130841": 1, + "476635": 2, + "bezierCurveTo": 6, + "490654": 3, + "345794": 3, + "509345": 1, + "154205": 1, + "350466": 1, + "dark": 2, + "light": 5, + "setAlpha": 8, + "70588": 4, + "59": 3, + "dt=": 2, + "285046": 5, + "514018": 6, + "21028": 1, + "481308": 4, + "280373": 3, + "495327": 2, + "504672": 2, + "224299": 1, + "289719": 1, + "714953": 5, + "789719": 1, + "719626": 3, + "7757": 1, + "71028": 1, + "ft=": 3, + "*10": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "<-90&&e>": 2, + "<-180&&e>": 2, + "<-270&&e>": 2, + "d.playing": 2, + "d.stop": 2, + "d.onMotionChanged": 2, + "d.start": 2, + "s.save": 4, + "s.clearRect": 3, + "s.canvas.width": 4, + "s.canvas.height": 4, + "s.drawImage": 8, + "e*kt": 1, + "s.translate": 6, + "s.rotate": 3, + "s.fillStyle": 1, + "s.textAlign": 1, + "s.textBaseline": 1, + "s.restore": 6, + "s.font": 2, + "f*.15": 2, + "s.fillText": 2, + "f*.35": 26, + "f*.2": 1, + "k*Math.PI/180": 1, + "u.size": 4, + "u.frameDesign": 4, + "u.frameVisible": 4, + "u.backgroundColor": 4, + "u.backgroundVisible": 4, + "u.pointerType": 2, + "steelseries.PointerType.TYPE2": 1, + "u.pointerColor": 4, + "u.knobType": 4, + "u.knobStyle": 4, + "u.foregroundType": 4, + "u.foregroundVisible": 4, + "u.pointSymbols": 4, + "u.customLayer": 4, + "u.degreeScale": 4, + "u.roseVisible": 4, + "ft.getContext": 2, + "ut.getContext": 2, + "it.getContext": 2, + "ot.getContext": 3, + "et.getContext": 2, + "tt.labelColor.getRgbaColor": 2, + ".08*f": 1, + "f*.033": 1, + "st*10": 2, + ".substring": 2, + ".12*f": 2, + ".06*f": 2, + "tt.symbolColor.getRgbaColor": 1, + "st*2.5": 1, + "bt.type": 1, + "f*.53271": 6, + "e*.453271": 5, + "f*.5": 17, + "e*.149532": 8, + "f*.467289": 6, + "f*.453271": 2, + "e*.462616": 2, + "f*.443925": 9, + "e*.481308": 2, + "e*.5": 10, + "f*.556074": 9, + "f*.546728": 2, + ".471962*f": 5, + ".528036*f": 5, + "o.addColorStop": 4, + "h.light.getRgbaColor": 6, + ".46": 3, + ".47": 3, + "h.medium.getRgbaColor": 6, + "h.dark.getRgbaColor": 3, + "n.lineCap": 5, + "n.lineJoin": 5, + "e*.546728": 5, + "e*.850467": 4, + "e*.537383": 2, + "e*.518691": 2, + "s.addColorStop": 4, + "e*.490654": 2, + "e*.53271": 2, + "e*.556074": 3, + "e*.495327": 4, + "f*.528037": 2, + "f*.471962": 2, + "e*.504672": 4, + ".480099": 1, + "f*.006": 2, + "ft.width": 1, + "ft.height": 1, + "ut.width": 1, + "ut.height": 1, + "it.width": 1, + "it.height": 1, + "ot.width": 1, + "ot.height": 1, + "et.width": 1, + "et.height": 1, + "Tween.elasticEaseOut": 1, + "r.repaint": 1, + "this.setPointSymbols": 1, + "p*st": 1, + "b.clearRect": 1, + "b.save": 1, + "b.translate": 2, + "b.rotate": 1, + "b.drawImage": 1, + "b.restore": 1, + "u.pointerTypeLatest": 2, + "u.pointerTypeAverage": 2, + "steelseries.PointerType.TYPE8": 1, + "u.pointerColorAverage": 2, + "steelseries.ColorDef.BLUE": 1, + "u.lcdColor": 2, + "u.lcdVisible": 2, + "u.digitalFont": 2, + "u.section": 2, + "u.area": 2, + "u.lcdTitleStrings": 2, + "u.titleString": 2, + "u.useColorLabels": 2, + "this.valueLatest": 1, + "this.valueAverage": 1, + "Math.PI*2": 1, + "e.save": 2, + "e.clearRect": 1, + "e.canvas.width": 2, + "e.canvas.height": 2, + "f/10": 1, + "f*.3": 4, + "s*.12": 1, + "s*.32": 1, + "s*.565": 1, + "bt.getContext": 1, + "at.getContext": 1, + "vt.getContext": 1, + "lt.getContext": 1, + "wt.getContext": 1, + "e.textAlign": 1, + "e.strokeStyle": 1, + "ht.textColor": 2, + "e.fillStyle": 1, + "<0&&(n+=360),n=\"00\"+Math.round(n),n=n.substring(n.length,n.length-3),(ht===steelseries.LcdColor.STANDARD||ht===steelseries.LcdColor.STANDARD_GREEN)&&(e.shadowColor=\"gray\",e.shadowOffsetX=f*.007,e.shadowOffsetY=f*.007,e.shadowBlur=f*.007),e.font=pr?gr:br,e.fillText(n+\"\\u00b0\",f/2+gt*.05,(t?or:cr)+er*.5+ui*.38,gt*.9),e.restore()},wi=function(n,t,i,r,u){n.save(),n.strokeStyle=r,n.fillStyle=r,n.lineWidth=f*.035;var>": 1, + "arc": 2, + "365": 2, + "lineWidth": 1, + "lr=": 1, + "35": 1, + "355": 1, + "36": 2, + "bold": 1, + "04": 2, + "ct*5": 1, + "k.symbolColor.getRgbaColor": 1, + "ct*2.5": 1, + "ti.length": 1, + "kt.medium.getRgbaColor": 1, + ".04*f": 1, + "s*.29": 1, + "ii.medium.getRgbaColor": 1, + "s*.71": 1, + "rr.length": 1, + ".0467*f": 1, + "s*.5": 1, + "et.length": 2, + "ft.length": 2, + "": 1, + "ci=": 1, + "li=": 1, + "ai=": 1, + "ki=": 1, + "yi=": 1, + "setValueLatest=": 1, + "getValueLatest=": 1, + "setValueAverage=": 1, + "getValueAverage=": 1, + "setValueAnimatedLatest=": 1, + "playing": 2, + "regularEaseInOut": 2, + "onMotionChanged=": 2, + "_pos": 2, + "onMotionFinished=": 2, + "setValueAnimatedAverage=": 1, + "setArea=": 1, + "setSection=": 1, + "setFrameDesign=": 1, + "pi=": 1, + "setBackgroundColor=": 1, + "setForegroundType=": 1, + "si=": 1, + "setPointerColor=": 1, + "setPointerColorAverage=": 1, + "setPointerType=": 1, + "setPointerTypeAverage=": 1, + "ri=": 1, + "setPointSymbols=": 1, + "setLcdTitleStrings=": 1, + "fi=": 1, + "006": 1, + "ei=": 1, + "ru=": 1, + "WHITE": 1, + "037383": 1, + "056074": 1, + "7fd5f0": 2, + "3c4439": 2, + "72": 1, + "KEYWORDS": 2, + "array_to_hash": 11, + "RESERVED_WORDS": 2, + "KEYWORDS_BEFORE_EXPRESSION": 2, + "KEYWORDS_ATOM": 2, + "OPERATOR_CHARS": 1, + "characters": 6, + "RE_HEX_NUMBER": 1, + "RE_OCT_NUMBER": 1, + "RE_DEC_NUMBER": 1, + "OPERATORS": 2, + "WHITESPACE_CHARS": 2, + "PUNC_BEFORE_EXPRESSION": 2, + "PUNC_CHARS": 1, + "REGEXP_MODIFIERS": 1, + "UNICODE": 1, + "letter": 3, + "non_spacing_mark": 1, + "space_combining_mark": 1, + "connector_punctuation": 1, + "is_letter": 3, + "ch": 58, + "UNICODE.letter.test": 1, + "is_digit": 3, + "ch.charCodeAt": 1, + "//XXX": 1, + "out": 1, + "means": 1, + "something": 3, + "than": 3, + "is_alphanumeric_char": 3, + "is_unicode_combining_mark": 2, + "UNICODE.non_spacing_mark.test": 1, + "UNICODE.space_combining_mark.test": 1, + "is_unicode_connector_punctuation": 2, + "UNICODE.connector_punctuation.test": 1, + "is_identifier_start": 2, + "is_identifier_char": 1, + "zero": 2, + "non": 8, + "joiner": 2, + "": 1, + "": 1, + "my": 1, + "ECMA": 1, + "PDF": 1, + "also": 5, + "parse_js_number": 2, + "RE_HEX_NUMBER.test": 1, + "num.substr": 2, + "RE_OCT_NUMBER.test": 1, + "RE_DEC_NUMBER.test": 1, + "JS_Parse_Error": 2, + "message": 5, + "line": 14, + "col": 7, + "pos": 197, + "this.message": 3, + "this.line": 3, + "this.col": 2, + "this.pos": 4, + "ex": 3, + "ex.name": 1, + "this.stack": 2, + "ex.stack": 1, + "JS_Parse_Error.prototype.toString": 1, + "js_error": 2, + "is_token": 1, + "token": 5, + "token.type": 1, + "token.value": 1, + "EX_EOF": 3, + "tokenizer": 2, + "TEXT": 1, + "TEXT.replace": 1, + "u2029": 2, + "uFEFF/": 1, + "tokpos": 1, + "tokline": 1, + "tokcol": 1, + "newline_before": 1, + "regex_allowed": 1, + "comments_before": 1, + "peek": 5, + "S.text.charAt": 2, + "S.pos": 4, + "next": 9, + "signal_eof": 4, + "S.newline_before": 3, + "S.line": 2, + "S.col": 3, + "eof": 6, + "S.peek": 1, + "what": 2, + "S.text.indexOf": 1, + "start_token": 1, + "S.tokline": 3, + "S.tokcol": 3, + "S.tokpos": 3, + "is_comment": 2, + "S.regex_allowed": 1, + "HOP": 5, + "UNARY_POSTFIX": 1, + "nlb": 1, + "ret.comments_before": 1, + "S.comments_before": 2, + "skip_whitespace": 1, + "read_while": 2, + "pred": 2, + "parse_error": 3, + "err": 5, + "read_num": 1, + "prefix": 6, + "has_e": 3, + "after_e": 5, + "has_x": 5, + "has_dot": 3, + "valid": 4, + "isNaN": 6, + "read_escaped_char": 1, + "String.fromCharCode": 4, + "hex_bytes": 3, + "digit": 3, + "<<": 4, + "read_string": 1, + "with_eof_error": 1, + "quote": 3, + "comment1": 1, + "Unterminated": 2, + "multiline": 1, + "comment": 3, + "*/": 2, + "comment2": 1, + "WARNING": 1, + "***": 1, + "Found": 1, + "warn": 3, + "tok": 1, + "read_name": 1, + "backslash": 2, + "Expecting": 1, + "UnicodeEscapeSequence": 1, + "uXXXX": 1, + "Unicode": 1, + "char": 2, + "identifier": 1, + "regular": 1, + "regexp": 5, + "operator": 14, + "punc": 27, + "atom": 5, + "keyword": 11, + "Unexpected": 3, + "character": 3, + "void": 1, + "<\",>": 1, + "<=\",>": 1, + "expected": 12, + "block": 4, + "debugger": 2, + "outside": 2, + "const": 2, + "with": 18, + "stat": 1, + "Label": 1, + "without": 1, + "matching": 3, + "statement": 1, + "inside": 3, + "defun": 1, + "Name": 1, + "finally": 3, + "Missing": 1, + "catch/finally": 1, + "blocks": 1, + "unary": 2, + "array": 7, + "dot": 2, + "sub": 4, + "postfix": 1, + "Invalid": 2, + "use": 10, + "binary": 1, + "conditional": 1, + "assign": 1, + "assignment": 1, + "seq": 1, + "toplevel": 7, + "member": 2, + "array.length": 1, + "Object.prototype.hasOwnProperty.call": 1, + "exports.tokenizer": 1, + "exports.parse": 1, + "parse": 1, + "exports.slice": 1, + "exports.curry": 1, + "curry": 1, + "exports.member": 1, + "exports.array_to_hash": 1, + "exports.PRECEDENCE": 1, + "PRECEDENCE": 1, + "exports.KEYWORDS_ATOM": 1, + "exports.RESERVED_WORDS": 1, + "exports.KEYWORDS": 1, + "exports.ATOMIC_START_TOKEN": 1, + "ATOMIC_START_TOKEN": 1, + "exports.OPERATORS": 1, + "exports.is_alphanumeric_char": 1, + "exports.set_logger": 1, + "logger": 2, + "PEG.parser": 1, + "result0": 264, + "result1": 81, + "result2": 77, + "parse_singleQuotedCharacter": 3, + "result1.push": 3, + "input.charCodeAt": 18, + "reportFailures": 64, + "matchFailed": 40, + "pos1": 63, + "chars": 1, + "chars.join": 1, + "pos0": 51, + "parse_simpleSingleQuotedCharacter": 2, + "parse_simpleEscapeSequence": 3, + "parse_zeroEscapeSequence": 3, + "parse_hexEscapeSequence": 3, + "parse_unicodeEscapeSequence": 3, + "parse_eolEscapeSequence": 3, + "pos2": 22, + "parse_eolChar": 6, + "input.length": 9, + "input.charAt": 21, + "char_": 9, + "parse_class": 1, + "result3": 35, + "result4": 12, + "result5": 4, + "parse_classCharacterRange": 3, + "parse_classCharacter": 5, + "result2.push": 1, + "parse___": 2, + "inverted": 4, + "parts": 28, + "flags": 13, + "partsConverted": 2, + "part.data": 1, + "rawText": 5, + "part.rawText": 1, + "ignoreCase": 1, + "begin": 1, + "begin.data.charCodeAt": 1, + "end.data.charCodeAt": 1, + "this.SyntaxError": 2, + "begin.rawText": 2, + "end.rawText": 2, + "begin.data": 1, + "end.data": 1, + "parse_bracketDelimitedCharacter": 2, + "quoteForRegexpClass": 1, + "parse_simpleBracketDelimitedCharacter": 2, + "parse_digit": 3, + "IE": 28, + "does": 9, + "recognize": 1, + "input.substr": 9, + "parse_hexDigit": 7, + "parse_eol": 4, + "eol": 2, + "parse_letter": 1, + "parse_lowerCaseLetter": 2, + "parse_upperCaseLetter": 2, + "parse_whitespace": 3, + "parse_comment": 3, + "result0.push": 1, + "parse_singleLineComment": 2, + "parse_multiLineComment": 2, + "x0B": 1, + "xA0": 7, + "uFEFF": 1, + "u1680": 1, + "u180E": 1, + "u2000": 1, + "u200A": 1, + "u202F": 1, + "u205F": 1, + "u3000": 1, + "cleanupExpected": 2, + "expected.sort": 1, + "lastExpected": 3, + "cleanExpected": 2, + "expected.length": 4, + "cleanExpected.push": 1, + "computeErrorPosition": 2, + "column": 8, + "seenCR": 5, + "rightmostFailuresPos": 2, + "parseFunctions": 1, + "startRule": 1, + "found": 10, + "errorPosition": 1, + "rightmostFailuresExpected": 1, + "errorPosition.line": 1, + "errorPosition.column": 1, + "toSource": 1, + "this._source": 1, + "result.SyntaxError": 1, + "buildMessage": 2, + "expectedHumanized": 5, + "foundHumanized": 3, + "expected.slice": 1, + "this.name": 7, + "this.expected": 1, + "this.found": 1, + "this.offset": 2, + "this.column": 1, + "result.SyntaxError.prototype": 1, + "Error.prototype": 1, + "multiply": 1, + "cy": 4, + "f.isWindow": 2, + "cv": 2, + "cj": 4, + "b.css": 1, + "b.remove": 1, + "ck": 5, + "c.createElement": 12, + "ck.frameBorder": 1, + "ck.width": 1, + "ck.height": 1, + "c.body.appendChild": 1, + "cl": 3, + "ck.createElement": 1, + "ck.contentWindow": 1, + "ck.contentDocument": 1, + ".document": 1, + "cl.write": 1, + "cl.createElement": 1, + "cl.body.appendChild": 1, + "f.css": 24, + "c.body.removeChild": 1, + "f.each": 21, + "cp.concat.apply": 1, + "cp.slice": 1, + "cq": 3, + "cs": 3, + "f.now": 2, + "a.ActiveXObject": 3, + "a.XMLHttpRequest": 1, + "a.dataFilter": 2, + "a.dataType": 1, + "a.dataTypes": 2, + "a.converters": 3, + "o.split": 1, + "f.error": 4, + "m.replace": 1, + "a.contents": 1, + "a.responseFields": 1, + "f.shift": 1, + "a.mimeType": 1, + "c.getResponseHeader": 1, + ".test": 1, + "f.unshift": 2, + "b_": 4, + "f.isArray": 8, + "bF.test": 1, + "c.dataTypes": 1, + "h.length": 3, + "bU": 4, + "c.dataTypes.unshift": 1, + "bZ": 3, + "f.isFunction": 21, + "b.toLowerCase": 3, + "bQ": 3, + "h.substr": 1, + "bD": 3, + "bx": 2, + "by": 12, + "a.offsetWidth": 6, + "a.offsetHeight": 2, + "bn": 2, + "f.ajax": 3, + "f.globalEval": 2, + "bm": 3, + "f.nodeName": 16, + "bl": 3, + "a.getElementsByTagName": 9, + "f.grep": 3, + "a.defaultChecked": 1, + "a.checked": 4, + "bk": 5, + "a.querySelectorAll": 1, + "bj": 3, + "b.nodeType": 6, + "b.clearAttributes": 2, + "b.mergeAttributes": 2, + "b.nodeName.toLowerCase": 1, + "b.outerHTML": 1, + "a.outerHTML": 1, + "b.selected": 1, + "a.defaultSelected": 1, + "b.defaultValue": 1, + "a.defaultValue": 1, + "b.defaultChecked": 1, + "b.checked": 1, + "a.value": 8, + "b.removeAttribute": 3, + "f.expando": 23, + "f.hasData": 2, + "f.data": 25, + "d.events": 1, + "f.extend": 23, + "": 1, + "bh": 1, + "getElementsByTagName": 1, + "appendChild": 1, + "nodeType": 1, + "W": 3, + "N": 2, + "f._data": 15, + "r.live": 1, + "a.target.disabled": 1, + "a.namespace": 1, + "a.namespace.split": 1, + "r.live.slice": 1, + "s.length": 2, + "g.origType.replace": 1, + "q.push": 1, + "g.selector": 3, + "s.splice": 1, + "m.selector": 1, + "n.test": 2, + "g.namespace": 1, + "m.elem.disabled": 1, + "m.elem": 1, + "g.preType": 3, + "f.contains": 5, + "level": 3, + "m.level": 1, + "": 1, + "e.elem": 2, + "e.handleObj.data": 1, + "e.handleObj": 1, + "e.handleObj.origHandler.apply": 1, + "a.isPropagationStopped": 1, + "e.level": 1, + "a.isImmediatePropagationStopped": 1, + "e.type": 6, + "e.originalEvent": 1, + "e.liveFired": 1, + "f.event.handle.call": 1, + "e.isDefaultPrevented": 2, + ".preventDefault": 1, + "f.removeData": 4, + "i.resolve": 1, + "c.replace": 4, + ".toLowerCase": 7, + "f.isNaN": 3, + "i.test": 1, + "f.parseJSON": 2, + "a.navigator": 1, + "a.location": 1, + "e.isReady": 1, + "c.documentElement.doScroll": 2, + "e.ready": 6, + "e.fn.init": 1, + "a.jQuery": 2, + "a.": 2, + "d/": 3, + "d.userAgent": 1, + "C": 4, + "String.prototype.trim": 3, + "e.fn": 2, + "e.prototype": 1, + "constructor": 8, + "c.body": 4, + "a.charAt": 2, + "i.exec": 1, + "d.ownerDocument": 1, + "n.exec": 1, + "e.isPlainObject": 1, + "e.fn.attr.call": 1, + "k.createElement": 1, + "e.buildFragment": 1, + "j.cacheable": 1, + "e.clone": 1, + "j.fragment": 2, + "e.merge": 3, + "c.getElementById": 1, + "h.id": 1, + "f.find": 2, + "d.jquery": 1, + "this.constructor": 5, + "e.isFunction": 5, + "f.ready": 1, + "e.makeArray": 1, + "D.call": 4, + "e.isArray": 2, + "C.apply": 1, + "d.prevObject": 1, + "d.context": 2, + "d.selector": 2, + "e.each": 2, + "e.bindReady": 1, + "y.done": 1, + "D.apply": 1, + "e.map": 1, + "e.fn.init.prototype": 1, + "e.extend": 2, + "e.fn.extend": 1, + "": 1, + "jQuery=": 2, + "readyWait": 6, + "holdReady": 3, + "isReady=": 1, + "y.resolveWith": 1, + "e.fn.trigger": 1, + ".trigger": 3, + "e._Deferred": 1, + "c.readyState": 2, + "c.addEventListener": 4, + "a.addEventListener": 4, + "c.attachEvent": 3, + "a.attachEvent": 6, + "a.frameElement": 1, + "Array.isArray": 7, + "isWindow": 2, + "m.test": 1, + "String": 2, + "A.call": 1, + "e.isWindow": 2, + "B.call": 3, + "e.trim": 1, + "a.JSON": 1, + "a.JSON.parse": 2, + "o.test": 1, + "e.error": 2, + "parseXML": 1, + "a.DOMParser": 1, + "DOMParser": 1, + "d.parseFromString": 1, + "ActiveXObject": 1, + "c.async": 4, + "c.loadXML": 1, + "c.documentElement": 4, + "d.nodeName": 4, + "j.test": 3, + "a.execScript": 1, + "a.eval.call": 1, + "c.apply": 2, + "c.call": 3, + "E.call": 1, + "C.call": 1, + "F.call": 1, + "c.length": 8, + "": 1, + "j=": 14, + "h.concat.apply": 1, + "f.concat": 1, + "g.guid": 3, + "e.guid": 3, + "access": 2, + "e.access": 1, + "now": 5, + "s.exec": 1, + "t.exec": 1, + "u.exec": 1, + "a.indexOf": 2, + "v.exec": 1, + "a.fn.init": 2, + "a.superclass": 1, + "a.fn": 2, + "a.prototype": 1, + "a.fn.constructor": 1, + "a.sub": 1, + "this.sub": 2, + "e.fn.init.call": 1, + "a.fn.init.prototype": 1, + "e.uaMatch": 1, + "x.browser": 2, + "e.browser": 1, + "e.browser.version": 1, + "x.version": 1, + "e.browser.webkit": 1, + "e.browser.safari": 1, + "c.removeEventListener": 2, + "c.detachEvent": 1, + "_Deferred": 4, + "done": 10, + "": 1, + "resolveWith": 4, + "shift": 1, + "apply": 8, + "resolve": 7, + "isResolved": 3, + "cancel": 6, + "Deferred": 5, + "then": 8, + "always": 6, + "rejectWith": 2, + "reject": 4, + "isRejected": 2, + "pipe": 2, + "promise": 14, + "when": 20, + "h.call": 2, + "g.resolveWith": 3, + "<=1&&a&&f.isFunction(a.promise)?a:f.Deferred();if(d>": 1, + ".promise": 5, + ".then": 3, + "g.reject": 1, + "g.promise": 1, + "f.support": 2, + "f.appendChild": 1, + "a.firstChild.nodeType": 2, + "/top/.test": 2, + "e.getAttribute": 2, + "e.style.opacity": 1, + "e.style.cssFloat": 1, + "h.value": 3, + "g.selected": 1, + "getSetAttribute": 3, + "a.className": 1, + "submitBubbles": 3, + "changeBubbles": 3, + "focusinBubbles": 2, + "inlineBlockNeedsLayout": 3, + "shrinkWrapBlocks": 2, + "reliableMarginRight": 2, + "h.checked": 2, + "j.noCloneChecked": 1, + "h.cloneNode": 1, + ".checked": 2, + "f.disabled": 1, + "j.optDisabled": 1, + "g.disabled": 1, + "j.deleteExpando": 1, + "a.fireEvent": 1, + "j.noCloneEvent": 1, + "a.detachEvent": 1, + "h.setAttribute": 2, + "j.radioValue": 1, + "c.createDocumentFragment": 1, + "k.appendChild": 1, + "j.checkClone": 1, + "k.cloneNode": 1, + "a.style.width": 1, + "a.style.paddingLeft": 1, + "visibility": 3, + "l.style": 1, + "l.appendChild": 1, + "j.appendChecked": 1, + "j.boxModel": 1, + "a.style": 8, + "a.style.display": 3, + "a.style.zoom": 1, + "j.inlineBlockNeedsLayout": 1, + "j.shrinkWrapBlocks": 1, + ".offsetHeight": 4, + "j.reliableHiddenOffsets": 1, + "c.defaultView": 2, + "c.defaultView.getComputedStyle": 3, + "i.style.width": 1, + "i.style.marginRight": 1, + "j.reliableMarginRight": 1, + "marginRight": 2, + ".marginRight": 2, + "l.innerHTML": 1, + "f.boxModel": 1, + "f.support.boxModel": 4, + "uuid": 2, + "f.fn.jquery": 1, + "Math.random": 2, + "D/g": 2, + "hasData": 2, + "f.cache": 5, + "f.acceptData": 4, + "f.uuid": 1, + ".toJSON": 4, + "f.noop": 4, + "f.camelCase": 5, + ".events": 1, + "f.support.deleteExpando": 3, + "_data": 3, + "acceptData": 3, + "f.noData": 2, + "f.fn.extend": 9, + ".attributes": 2, + ".name": 3, + "g.indexOf": 2, + "g.substring": 1, + "b.triggerHandler": 2, + "_mark": 2, + "_unmark": 3, + "f.makeArray": 5, + "e.push": 3, + "f.queue": 3, + "c.shift": 2, + "c.unshift": 1, + "f.dequeue": 4, + "f.fx": 2, + "f.fx.speeds": 1, + "d.resolveWith": 1, + "f.Deferred": 2, + "f._Deferred": 2, + "l.done": 1, + "d.promise": 1, + "rea": 1, + "autofocus": 1, + "autoplay": 1, + "checked": 4, + "controls": 1, + "defer": 1, + "disabled": 11, + "open": 2, + "required": 1, + "scoped": 1, + "f.access": 3, + "f.attr": 2, + "f.removeAttr": 3, + "f.prop": 2, + "removeProp": 1, + "f.propFix": 6, + "c.addClass": 1, + "f.trim": 2, + "c.removeClass": 1, + "g.nodeType": 6, + "g.className": 4, + "h.replace": 2, + "d.toggleClass": 1, + "d.attr": 1, + "h.hasClass": 1, + "": 1, + "f.valHooks": 7, + "e.nodeName.toLowerCase": 1, + "c.get": 1, + "e.value": 1, + "e.val": 1, + "f.map": 5, + "this.nodeName.toLowerCase": 1, + "this.type": 3, + "c.set": 1, + "valHooks": 1, + "a.attributes.value": 1, + "a.text": 1, + "a.selectedIndex": 3, + "a.options": 2, + "": 3, + "optDisabled": 1, + "selected=": 1, + "attrFix": 1, + "f.attrFn": 3, + "f.isXMLDoc": 4, + "f.attrFix": 3, + "f.attrHooks": 5, + "t.test": 2, + "d.toLowerCase": 1, + "c.toLowerCase": 4, + "u.test": 1, + "i.set": 1, + "i.get": 1, + "f.support.getSetAttribute": 2, + "a.removeAttributeNode": 1, + "attrHooks": 3, + "q.test": 1, + "f.support.radioValue": 1, + "tabIndex": 4, + "c.specified": 1, + "c.value": 1, + "r.test": 1, + "s.test": 1, + "propFix": 1, + "cellpadding": 1, + "contenteditable": 1, + "f.propHooks": 1, + "h.set": 1, + "h.get": 1, + "propHooks": 1, + "f.attrHooks.value": 1, + "v.get": 1, + "f.attrHooks.name": 1, + "f.valHooks.button": 1, + "d.nodeValue": 3, + "f.support.hrefNormalized": 1, + "f.support.style": 1, + "f.attrHooks.style": 1, + "a.style.cssText.toLowerCase": 1, + "f.support.optSelected": 1, + "f.propHooks.selected": 2, + "b.parentNode.selectedIndex": 1, + "f.support.checkOn": 1, + "f.inArray": 4, + "s.": 1, + "f.event": 2, + "d.handler": 1, + "g.handler": 1, + "d.guid": 4, + "f.guid": 3, + "i.events": 2, + "i.handle": 2, + "f.event.triggered": 3, + "f.event.handle.apply": 1, + "k.elem": 2, + "c.split": 2, + "l.indexOf": 1, + "l.split": 1, + "n.shift": 1, + "h.namespace": 2, + "n.slice": 1, + "h.type": 1, + "h.guid": 2, + "f.event.special": 5, + "p.setup": 1, + "p.setup.call": 1, + "p.add": 1, + "p.add.call": 1, + "h.handler.guid": 2, + "o.push": 1, + "f.event.global": 2, + "global": 5, + "s.events": 1, + "c.type": 9, + "c.handler": 1, + "c.charAt": 1, + "f.event.remove": 5, + "h.indexOf": 3, + "h.split": 2, + "m.shift": 1, + "m.slice": 1, + "q.namespace": 1, + "q.handler": 1, + "p.splice": 1, + "": 1, + "elem=": 4, + "customEvent": 1, + "getData": 3, + "setData": 3, + "changeData": 3, + "trigger": 4, + "h.slice": 1, + "i.shift": 1, + "i.sort": 1, + "f.event.customEvent": 1, + "f.Event": 2, + "c.exclusive": 2, + "c.namespace": 2, + "i.join": 2, + "c.namespace_re": 1, + "c.preventDefault": 3, + "c.stopPropagation": 1, + "b.events": 4, + "f.event.trigger": 6, + "b.handle.elem": 2, + "c.result": 3, + "c.target": 3, + "c.currentTarget": 2, + "m.apply": 1, + "k.parentNode": 1, + "k.ownerDocument": 1, + "c.target.ownerDocument": 1, + "c.isPropagationStopped": 1, + "c.isDefaultPrevented": 2, + "o._default": 1, + "o._default.call": 1, + "e.ownerDocument": 1, + "f.event.fix": 2, + "a.event": 1, + "Array.prototype.slice.call": 1, + "namespace_re": 1, + "namespace": 1, + "handler=": 1, + "data=": 2, + "handleObj=": 1, + "result=": 1, + "preventDefault": 4, + "stopPropagation": 5, + "isImmediatePropagationStopped": 2, + "split": 4, + "fix": 1, + "Event": 3, + "target=": 2, + "relatedTarget=": 1, + "fromElement=": 1, + "pageX=": 2, + "documentElement": 2, + "scrollLeft": 2, + "clientLeft": 2, + "pageY=": 1, + "scrollTop": 2, + "clientTop": 2, + "which=": 3, + "metaKey=": 1, + "1e8": 1, + "special": 3, + "setup": 5, + "teardown": 6, + "event": 31, + "origType": 2, + "beforeunload": 1, + "onbeforeunload=": 3, + "removeEvent=": 1, + "removeEventListener": 3, + "detachEvent": 2, + "Event=": 1, + "originalEvent=": 1, + "type=": 5, + "isDefaultPrevented=": 2, + "defaultPrevented": 1, + "returnValue=": 2, + "getPreventDefault": 2, + "timeStamp=": 1, + "prototype=": 2, + "originalEvent": 2, + "isPropagationStopped=": 1, + "cancelBubble=": 1, + "stopImmediatePropagation": 1, + "isImmediatePropagationStopped=": 1, + "isDefaultPrevented": 1, + "isPropagationStopped": 1, + "G=": 1, + "H=": 1, + "submit=": 1, + "specialSubmit": 3, + "closest": 3, + "keyCode=": 1, + "J=": 1, + "selectedIndex": 1, + "a.selected": 1, + "z.test": 3, + "d.readOnly": 1, + "c.liveFired": 1, + "f.event.special.change": 1, + "filters": 1, + "beforedeactivate": 1, + "K.call": 2, + "a.keyCode": 2, + "beforeactivate": 1, + "f.event.add": 2, + "f.event.special.change.filters": 1, + "I.focus": 1, + "I.beforeactivate": 1, + "f.support.focusinBubbles": 1, + "c.originalEvent": 1, + "a.preventDefault": 3, + "f.fn": 9, + "e.apply": 1, + "this.one": 1, + "unbind": 2, + "this.unbind": 2, + "delegate": 1, + "this.live": 1, + "undelegate": 1, + "this.die": 1, + "triggerHandler": 1, + "toggle": 10, + ".guid": 1, + "this.click": 1, + "this.mouseenter": 1, + ".mouseleave": 1, + "g.charAt": 1, + "n.unbind": 1, + "y.exec": 1, + "a.push": 2, + "n.length": 1, + "": 1, + "fn": 14, + "this.bind": 2, + "": 2, + "sizcache=": 4, + "sizset": 2, + "sizset=": 2, + "toLowerCase": 3, + "W/": 2, + "d.nodeType": 5, + "k.isXML": 4, + "a.exec": 2, + "x.push": 1, + "x.length": 8, + "m.exec": 1, + "l.relative": 6, + "x.shift": 4, + "l.match.ID.test": 2, + "q.expr": 4, + "q.set": 4, + "x.pop": 4, + "d.parentNode": 4, + "e.call": 1, + "f.push.apply": 1, + "k.contains": 5, + "a.sort": 1, + "": 1, + "matches=": 1, + "matchesSelector=": 1, + "l.order.length": 1, + "l.order": 1, + "l.leftMatch": 1, + "j.substr": 1, + "": 1, + "__sizzle__": 1, + "sizzle": 1, + "l.match.PSEUDO.test": 1, + "a.document.nodeType": 1, + "a.getElementsByClassName": 3, + "a.lastChild.className": 1, + "l.order.splice": 1, + "l.find.CLASS": 1, + "b.getElementsByClassName": 2, + "c.documentElement.contains": 1, + "a.contains": 2, + "c.documentElement.compareDocumentPosition": 1, + "a.compareDocumentPosition": 1, + "a.ownerDocument": 1, + ".documentElement": 1, + "b.nodeName": 2, + "l.match.PSEUDO.exec": 1, + "l.match.PSEUDO": 1, + "f.expr": 4, + "k.selectors": 1, + "f.expr.filters": 3, + "f.unique": 4, + "f.text": 2, + "k.getText": 1, + "/Until": 1, + "parents": 2, + "prevUntil": 2, + "prevAll": 2, + "U": 1, + "f.expr.match.POS": 1, + "V": 2, + "children": 3, + "contents": 4, + "prev": 2, + ".filter": 2, + "": 1, + "e.splice": 1, + "has": 9, + "this.filter": 2, + "": 1, + "": 1, + "index": 5, + ".is": 2, + "c.push": 3, + "g.parentNode": 2, + "U.test": 1, + "": 1, + "f.find.matchesSelector": 2, + "g.ownerDocument": 1, + "this.parent": 2, + ".children": 1, + "a.jquery": 2, + "f.merge": 2, + "this.get": 1, + "andSelf": 1, + "this.add": 1, + "f.dir": 6, + "parentsUntil": 1, + "f.nth": 2, + "nextAll": 1, + "nextUntil": 1, + "siblings": 1, + "f.sibling": 2, + "a.parentNode.firstChild": 1, + "a.contentDocument": 1, + "a.contentWindow.document": 1, + "a.childNodes": 1, + "T.call": 1, + "P.test": 1, + "f.filter": 2, + "R.test": 1, + "Q.test": 1, + "e.reverse": 1, + "g.join": 1, + "f.find.matches": 1, + "dir": 1, + "sibling": 1, + "a.nextSibling": 1, + "jQuery": 48, + "<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:]+)[^>": 1, + "/ig": 3, + "tbody/i": 1, + "bc": 1, + "bd": 1, + "/checked": 1, + "s*.checked.": 1, + "be": 12, + "java": 1, + "ecma": 1, + "script/i": 1, + "CDATA": 1, + "bg": 3, + "legend": 1, + "_default": 5, + "bg.optgroup": 1, + "bg.option": 1, + "bg.tbody": 1, + "bg.tfoot": 1, + "bg.colgroup": 1, + "bg.caption": 1, + "bg.thead": 1, + "bg.th": 1, + "bg.td": 1, + "f.support.htmlSerialize": 1, + "bg._default": 2, + "c.text": 2, + "this.empty": 3, + ".append": 6, + ".createTextNode": 1, + "wrapAll": 1, + ".wrapAll": 2, + ".eq": 1, + ".clone": 1, + "b.map": 1, + "wrapInner": 1, + ".wrapInner": 1, + "b.contents": 1, + "c.wrapAll": 1, + "b.append": 1, + "wrap": 2, + "unwrap": 1, + ".replaceWith": 1, + "this.childNodes": 1, + ".end": 1, + "append": 1, + "this.domManip": 4, + "this.appendChild": 1, + "prepend": 1, + "this.insertBefore": 1, + "this.firstChild": 1, + "this.parentNode.insertBefore": 2, + "a.push.apply": 2, + "this.nextSibling": 2, + ".toArray": 1, + "f.cleanData": 4, + "d.parentNode.removeChild": 1, + "empty": 3, + "b.getElementsByTagName": 1, + "clone": 5, + "this.map": 3, + "f.clone": 2, + ".innerHTML.replace": 1, + "bc.test": 2, + "f.support.leadingWhitespace": 2, + "Z.test": 2, + "_.exec": 2, + ".getElementsByTagName": 2, + "c.html": 3, + "replaceWith": 1, + "c.replaceWith": 1, + ".detach": 1, + "this.parentNode": 1, + ".before": 1, + "detach": 1, + "this.remove": 1, + "domManip": 1, + "f.support.checkClone": 2, + "bd.test": 2, + ".domManip": 1, + "g.html": 1, + "g.domManip": 1, + "j.parentNode": 1, + "f.support.parentNode": 1, + "i.nodeType": 1, + "i.childNodes.length": 1, + "f.buildFragment": 2, + "e.fragment": 1, + "h.childNodes.length": 1, + "h.firstChild": 2, + "": 1, + "k.length": 2, + ".charAt": 1, + "f.fragments": 3, + "i.createDocumentFragment": 1, + "f.clean": 1, + "appendTo": 1, + "prependTo": 1, + "insertBefore": 1, + "insertAfter": 1, + "replaceAll": 1, + "g.childNodes.length": 1, + "this.clone": 1, + "d.concat": 1, + "e.selector": 1, + "f.support.noCloneEvent": 1, + "f.support.noCloneChecked": 1, + "clean": 3, + "b.createElement": 2, + "b.createTextNode": 2, + "k.replace": 2, + "o.innerHTML": 1, + "o.lastChild": 1, + "f.support.tbody": 1, + "ba.test": 1, + "o.firstChild": 2, + "o.firstChild.childNodes": 1, + "o.childNodes": 2, + "q.length": 1, + ".childNodes.length": 1, + ".parentNode.removeChild": 2, + "o.insertBefore": 1, + "Z.exec": 1, + "f.support.appendChecked": 1, + "k.nodeType": 1, + "h.push": 1, + "be.test": 1, + ".type.toLowerCase": 1, + "h.splice.apply": 1, + "cleanData": 1, + "j.nodeName": 1, + "j.nodeName.toLowerCase": 1, + "f.removeEvent": 1, + "b.handle": 2, + "j.removeAttribute": 2, + "bo": 2, + "/alpha": 1, + "bp": 1, + "/opacity": 1, + "bq": 2, + "ms": 2, + "bs": 2, + "bv": 2, + "de": 1, + "bw": 2, + "display": 7, + "bz": 7, + "bA": 3, + "bB": 5, + "bC": 2, + "f.fn.css": 1, + "f.style": 4, + "cssHooks": 1, + "a.style.opacity": 2, + "cssNumber": 3, + "zIndex": 1, + "fontWeight": 1, + "zoom": 1, + "lineHeight": 1, + "widows": 1, + "orphans": 1, + "cssProps": 1, + "f.support.cssFloat": 1, + "f.cssHooks": 3, + "f.cssProps": 2, + "k.get": 1, + "bu.test": 1, + "d.replace": 1, + "f.cssNumber": 1, + "k.set": 1, + "g.get": 1, + "swap": 1, + "camelCase": 3, + "f.curCSS": 1, + "f.swap": 2, + "<0||e==null){e=a.style[b];return>": 1, + "auto": 3, + "0px": 1, + "f.support.opacity": 1, + "f.cssHooks.opacity": 1, + "bp.test": 1, + "a.currentStyle": 4, + "a.currentStyle.filter": 1, + "a.style.filter": 1, + "RegExp.": 1, + "/100": 2, + "c.zoom": 1, + "b*100": 1, + "d.filter": 1, + "c.filter": 2, + "bo.test": 1, + "g.replace": 1, + "f.support.reliableMarginRight": 1, + "f.cssHooks.marginRight": 1, + "a.style.marginRight": 1, + "a.ownerDocument.defaultView": 1, + "e.getComputedStyle": 1, + "g.getPropertyValue": 1, + "a.ownerDocument.documentElement": 1, + "c.documentElement.currentStyle": 1, + "a.runtimeStyle": 2, + "bs.test": 1, + "bt.test": 1, + "f.left": 3, + "a.runtimeStyle.left": 2, + "a.currentStyle.left": 1, + "f.pixelLeft": 1, + "f.expr.filters.hidden": 2, + "f.support.reliableHiddenOffsets": 1, + "f.expr.filters.visible": 1, + "bE": 2, + "bF": 1, + "bG": 3, + "n/g": 1, + "bH": 2, + "/#.*": 1, + "bI": 1, + "/mg": 1, + "bJ": 1, + "date": 1, + "datetime": 1, + "month": 1, + "time": 1, + "week": 1, + "bK": 1, + "about": 1, + "app": 3, + "storage": 1, + "extension": 1, + "widget": 1, + "bL": 1, + "GET": 1, + "HEAD": 3, + "bM": 2, + "bN": 2, + "bO": 2, + "<\\/script>": 2, + "bP": 1, + "bR": 2, + "bS": 1, + "bT": 2, + "f.fn.load": 1, + "bV": 3, + "bW": 5, + "bX": 8, + "e.href": 1, + "bY": 1, + "bW.href": 2, + "bS.exec": 1, + "bW.toLowerCase": 1, + "bT.apply": 1, + "a.slice": 2, + "f.param": 2, + "f.ajaxSettings.traditional": 2, + "complete": 6, + "a.responseText": 1, + "a.isResolved": 1, + "a.done": 1, + "i.html": 1, + "i.each": 1, + "serialize": 1, + "this.serializeArray": 1, + "serializeArray": 1, + "this.elements": 2, + "this.disabled": 1, + "this.checked": 1, + "bP.test": 1, + "bJ.test": 1, + ".map": 1, + "b.name": 2, + "success": 2, + "getScript": 1, + "f.get": 2, + "getJSON": 1, + "ajaxSetup": 1, + "f.ajaxSettings": 4, + "context": 48, + "ajaxSettings": 1, + "isLocal": 1, + "bK.test": 1, + "contentType": 4, + "accepts": 5, + "xml": 3, + "json": 2, + "/xml/": 1, + "/html/": 1, + "/json/": 1, + "responseFields": 1, + "converters": 2, + "a.String": 1, + "f.parseXML": 1, + "ajaxPrefilter": 1, + "ajaxTransport": 1, + "ajax": 2, + "v.readyState": 1, + "d.ifModified": 1, + "v.getResponseHeader": 2, + "f.lastModified": 1, + "f.etag": 1, + "v.status": 1, + "v.statusText": 1, + "h.resolveWith": 1, + "h.rejectWith": 1, + "v.statusCode": 2, + "g.trigger": 2, + "i.resolveWith": 1, + "f.active": 1, + "f.ajaxSetup": 3, + "d.statusCode": 1, + "readyState": 1, + "setRequestHeader": 6, + "getAllResponseHeaders": 1, + "getResponseHeader": 1, + "bI.exec": 1, + "overrideMimeType": 1, + "d.mimeType": 1, + "abort": 4, + "p.abort": 1, + "h.promise": 1, + "v.success": 1, + "v.done": 1, + "v.error": 1, + "v.fail": 1, + "v.complete": 1, + "i.done": 1, + "<2)for(b>": 1, + "status": 3, + "url=": 1, + "dataTypes=": 1, + "crossDomain=": 2, + "exec": 8, + "80": 2, + "443": 2, + "traditional": 1, + "toUpperCase": 1, + "hasContent=": 1, + "active": 2, + "ajaxStart": 1, + "hasContent": 2, + "cache=": 1, + "x=": 1, + "1_=": 1, + "_=": 1, + "Content": 1, + "Type": 1, + "ifModified": 1, + "lastModified": 3, + "If": 21, + "Modified": 1, + "Since": 3, + "etag": 3, + "None": 1, + "Match": 3, + "Accept": 1, + "dataTypes": 4, + "q=": 1, + "01": 1, + "headers": 41, + "beforeSend": 2, + "No": 1, + "Transport": 1, + "readyState=": 1, + "ajaxSend": 1, + "timeout": 2, + "v.abort": 1, + "d.timeout": 1, + "p.send": 1, + "encodeURIComponent": 2, + "f.isPlainObject": 1, + "d.join": 1, + "cc": 2, + "cd": 3, + "jsonp": 1, + "jsonpCallback": 1, + "f.ajaxPrefilter": 2, + "b.contentType": 1, + "b.data": 5, + "b.dataTypes": 2, + "b.jsonp": 3, + "cd.test": 2, + "b.url": 4, + "b.jsonpCallback": 4, + "d.always": 1, + "b.converters": 1, + "/javascript": 1, + "ecmascript/": 1, + "a.cache": 2, + "a.crossDomain": 2, + "a.global": 1, + "f.ajaxTransport": 2, + "c.head": 1, + "c.getElementsByTagName": 1, + "send": 2, + "d.async": 1, + "a.scriptCharset": 2, + "d.charset": 1, + "d.src": 1, + "a.url": 1, + "d.onload": 3, + "d.onreadystatechange": 2, + "d.readyState": 2, + "/loaded": 1, + "complete/.test": 1, + "e.removeChild": 1, + "e.insertBefore": 1, + "e.firstChild": 1, + "cg": 7, + "f.ajaxSettings.xhr": 2, + "this.isLocal": 1, + "cors": 1, + "f.support.ajax": 1, + "c.crossDomain": 3, + "f.support.cors": 1, + "c.xhr": 1, + "c.username": 2, + "h.open": 2, + "c.url": 2, + "c.password": 1, + "c.xhrFields": 3, + "c.mimeType": 2, + "h.overrideMimeType": 2, + "h.setRequestHeader": 1, + "h.send": 1, + "c.hasContent": 1, + "h.readyState": 3, + "h.onreadystatechange": 2, + "h.abort": 1, + "h.status": 1, + "h.getAllResponseHeaders": 1, + "h.responseXML": 1, + "n.documentElement": 1, + "m.xml": 1, + "m.text": 2, + "h.responseText": 1, + "h.statusText": 1, + "c.isLocal": 1, + ".unload": 1, + "cm": 2, + "show": 10, + "hide": 8, + "cn": 1, + "co": 5, + "cp": 1, + "a.webkitRequestAnimationFrame": 1, + "a.mozRequestAnimationFrame": 1, + "a.oRequestAnimationFrame": 1, + "this.animate": 2, + "d.style": 3, + ".style": 1, + "": 1, + "_toggle": 2, + "animate": 4, + "fadeTo": 1, + "speed": 4, + "queue=": 2, + "animatedProperties=": 1, + "animatedProperties": 2, + "specialEasing": 2, + "easing": 3, + "swing": 2, + "overflow=": 2, + "overflow": 2, + "overflowX": 1, + "overflowY": 1, + "inline": 3, + "float": 3, + "none": 4, + "display=": 3, + "zoom=": 1, + "fx": 10, + "m=": 2, + "cur": 6, + "custom": 5, + "timers": 3, + "slideDown": 1, + "slideUp": 1, + "slideToggle": 1, + "fadeIn": 1, + "fadeOut": 1, + "fadeToggle": 1, + "duration": 4, + "duration=": 2, + "off": 1, + "speeds": 4, + "old=": 1, + "complete=": 1, + "old": 2, + "linear": 1, + "cos": 1, + "options=": 1, + "prop=": 3, + "orig=": 1, + "orig": 3, + "step": 7, + "startTime=": 1, + "start=": 1, + "end=": 1, + "unit=": 1, + "unit": 1, + "now=": 1, + "pos=": 1, + "state=": 1, + "co=": 2, + "tick": 3, + "show=": 1, + "hide=": 1, + "e.duration": 3, + "this.startTime": 2, + "this.now": 3, + "this.end": 2, + "this.state": 3, + "this.update": 2, + "e.animatedProperties": 5, + "this.prop": 2, + "e.overflow": 2, + "f.support.shrinkWrapBlocks": 1, + "e.hide": 2, + "e.show": 1, + "e.orig": 1, + "e.complete.call": 1, + "Infinity": 1, + "h/e.duration": 1, + "f.easing": 1, + "this.start": 2, + "*this.pos": 1, + "f.timers": 2, + "a.splice": 1, + "f.fx.stop": 1, + "slow": 1, + "fast": 1, + "a.elem": 2, + "a.now": 4, + "a.elem.style": 3, + "a.prop": 5, + "a.unit": 1, + "f.expr.filters.animated": 1, + "b.elem": 1, + "cw": 1, + "able": 1, + "f.fn.offset": 2, + "f.offset.setOffset": 2, + "b.ownerDocument.body": 2, + "f.offset.bodyOffset": 2, + "b.getBoundingClientRect": 1, + "e.documentElement": 4, + "c.top": 4, + "c.left": 4, + "e.body": 3, + "g.clientTop": 1, + "h.clientTop": 1, + "g.clientLeft": 1, + "h.clientLeft": 1, + "i.pageYOffset": 1, + "g.scrollTop": 1, + "h.scrollTop": 2, + "i.pageXOffset": 1, + "g.scrollLeft": 1, + "h.scrollLeft": 2, + "f.offset.initialize": 3, + "b.offsetParent": 2, + "g.documentElement": 1, + "g.body": 1, + "g.defaultView": 1, + "j.getComputedStyle": 2, + "b.currentStyle": 2, + "b.offsetTop": 2, + "b.offsetLeft": 2, + "f.offset.supportsFixedPosition": 2, + "k.position": 4, + "b.scrollTop": 1, + "b.scrollLeft": 1, + "f.offset.doesNotAddBorder": 1, + "f.offset.doesAddBorderForTableAndCells": 1, + "cw.test": 1, + "c.borderTopWidth": 2, + "c.borderLeftWidth": 2, + "f.offset.subtractsBorderForOverflowNotVisible": 1, + "c.overflow": 1, + "i.offsetTop": 1, + "i.offsetLeft": 1, + "i.scrollTop": 1, + "i.scrollLeft": 1, + "f.offset": 1, + "b.style": 1, + "d.nextSibling.firstChild.firstChild": 1, + "this.doesNotAddBorder": 1, + "e.offsetTop": 4, + "this.doesAddBorderForTableAndCells": 1, + "h.offsetTop": 1, + "e.style.position": 2, + "e.style.top": 2, + "this.supportsFixedPosition": 1, + "d.style.overflow": 1, + "d.style.position": 1, + "this.subtractsBorderForOverflowNotVisible": 1, + "this.doesNotIncludeMarginInBodyOffset": 1, + "a.offsetTop": 2, + "bodyOffset": 1, + "a.offsetLeft": 1, + "f.offset.doesNotIncludeMarginInBodyOffset": 1, + "setOffset": 1, + "a.style.position": 1, + "e.offset": 1, + "e.position": 1, + "l.top": 1, + "l.left": 1, + "b.top": 2, + "k.top": 1, + "g.top": 1, + "b.left": 2, + "k.left": 1, + "g.left": 1, + "b.using.call": 1, + "e.css": 1, + "this.offsetParent": 2, + "cx.test": 2, + "b.offset": 1, + "d.top": 2, + "d.left": 2, + "offsetParent": 1, + "a.offsetParent": 1, + "g.document.documentElement": 1, + "g.document.body": 1, + "g.scrollTo": 1, + ".scrollLeft": 1, + ".scrollTop": 1, + "e.document.documentElement": 1, + "e.document.compatMode": 1, + "e.document.body": 1, + "this.css": 1, + "angular": 1, + "Array.prototype.last": 1, + "angular.module": 1, + "Animal": 12, + "Horse": 12, + "Snake": 12, + "sam": 4, + "tom": 4, + "__hasProp": 2, + "__extends": 6, + "__hasProp.call": 2, + "Animal.prototype.move": 2, + "meters": 4, + "Snake.__super__.constructor.apply": 2, + "Snake.prototype.move": 2, + "Snake.__super__.move.call": 2, + "Horse.__super__.constructor.apply": 2, + "Horse.prototype.move": 2, + "Horse.__super__.move.call": 2, + "sam.move": 2, + "tom.move": 2, + "jshint": 1, + "Modal": 2, + "this.": 2, + ".proxy": 1, + "this.hide": 1, + "Modal.prototype": 1, + "this.isShown": 3, + ".Event": 1, + "element.trigger": 1, + ".addClass": 1, + "escape.call": 1, + "backdrop.call": 1, + "transition": 1, + ".support.transition": 1, + "that.": 3, + "element.hasClass": 1, + "element.parent": 1, + "element.appendTo": 1, + "//don": 1, + "shown": 2, + "modal": 4, + "fade": 4, + "keyup.dismiss.modal": 2, + "click.modal.data": 1, + "api": 1, + ".extend": 1, + "target.data": 1, + "e.preventDefault": 1, + "target.modal": 1, + "window.jQuery": 7, + "hanaMath": 1, + ".import": 1, + ".request.parameters.get": 2, + "hanaMath.multiply": 1, + "output": 2, + "title": 1, + ".response.contentType": 1, + ".response.statusCode": 1, + ".net.http.OK": 1, + ".response.setBody": 1, + "util": 1, + "net": 1, + "stream": 1, + "EventEmitter": 3, + ".EventEmitter": 1, + "FreeList": 2, + ".FreeList": 1, + "HTTPParser": 2, + "process.binding": 1, + ".HTTPParser": 1, + "assert": 8, + ".ok": 1, + "END_OF_FILE": 3, + "debug": 15, + "process.env.NODE_DEBUG": 2, + "/http/.test": 1, + "console.error": 3, + "parserOnHeaders": 2, + "this.maxHeaderPairs": 2, + "this._headers.length": 1, + "this._headers": 13, + "this._headers.concat": 1, + "this._url": 1, + "parserOnHeadersComplete": 2, + "info": 2, + "parser": 27, + "info.headers": 1, + "info.url": 1, + "parser._headers": 6, + "parser._url": 4, + "parser.incoming": 9, + "IncomingMessage": 4, + "parser.socket": 4, + "parser.incoming.httpVersionMajor": 1, + "info.versionMajor": 2, + "parser.incoming.httpVersionMinor": 1, + "info.versionMinor": 2, + "parser.incoming.httpVersion": 1, + "parser.incoming.url": 1, + "headers.length": 2, + "parser.maxHeaderPairs": 4, + "parser.incoming._addHeaderLine": 2, + "info.method": 2, + "parser.incoming.method": 1, + "parser.incoming.statusCode": 2, + "info.statusCode": 1, + "parser.incoming.upgrade": 4, + "info.upgrade": 2, + "skipBody": 3, + "response": 3, + "CONNECT": 1, + "parser.onIncoming": 3, + "info.shouldKeepAlive": 1, + "parserOnBody": 2, + "b.slice": 1, + "parser.incoming._paused": 2, + "parser.incoming._pendings.length": 2, + "parser.incoming._pendings.push": 2, + "parser.incoming._emitData": 1, + "parserOnMessageComplete": 2, + "parser.incoming.complete": 2, + "parser.incoming.readable": 1, + "parser.incoming._emitEnd": 1, + "parser.socket.readable": 1, + "parser.socket.resume": 1, + "parsers": 2, + "HTTPParser.REQUEST": 2, + "parser.onHeaders": 1, + "parser.onHeadersComplete": 1, + "parser.onBody": 1, + "parser.onMessageComplete": 1, + "exports.parsers": 1, + "CRLF": 13, + "STATUS_CODES": 2, + "exports.STATUS_CODES": 1, + "RFC": 16, + "obsoleted": 1, + "connectionExpression": 1, + "/Connection/i": 1, + "transferEncodingExpression": 1, + "/Transfer": 1, + "Encoding/i": 1, + "closeExpression": 1, + "/close/i": 1, + "chunkExpression": 1, + "/chunk/i": 1, + "contentLengthExpression": 1, + "/Content": 1, + "Length/i": 1, + "dateExpression": 1, + "/Date/i": 1, + "expectExpression": 1, + "/Expect/i": 1, + "continueExpression": 1, + "continue/i": 1, + "dateCache": 5, + "utcDate": 2, + "d.toUTCString": 1, + "d.getMilliseconds": 1, + "socket": 26, + "stream.Stream.call": 2, + "this.socket": 10, + "this.connection": 8, + "this.httpVersion": 1, + "this.complete": 2, + "this.headers": 2, + "this.trailers": 2, + "this.readable": 1, + "this._paused": 3, + "this._pendings": 1, + "this._endEmitted": 3, + "this.url": 1, + "this.method": 2, + "this.statusCode": 3, + "this.client": 1, + "util.inherits": 7, + "stream.Stream": 2, + "exports.IncomingMessage": 1, + "IncomingMessage.prototype.destroy": 1, + "this.socket.destroy": 3, + "IncomingMessage.prototype.setEncoding": 1, + "encoding": 26, + "StringDecoder": 2, + ".StringDecoder": 1, + "lazy": 1, + "this._decoder": 2, + "IncomingMessage.prototype.pause": 1, + "this.socket.pause": 1, + "IncomingMessage.prototype.resume": 1, + "this.socket.resume": 1, + "this._emitPending": 1, + "IncomingMessage.prototype._emitPending": 1, + "this._pendings.length": 1, + "process.nextTick": 1, + "self._paused": 1, + "self._pendings.length": 2, + "chunk": 14, + "self._pendings.shift": 1, + "Buffer.isBuffer": 2, + "self._emitData": 1, + "self.readable": 1, + "self._emitEnd": 1, + "IncomingMessage.prototype._emitData": 1, + "this._decoder.write": 1, + "string.length": 1, + "this.emit": 5, + "IncomingMessage.prototype._emitEnd": 1, + "IncomingMessage.prototype._addHeaderLine": 1, + "field": 36, + "dest": 12, + "field.toLowerCase": 1, + ".push": 3, + "field.slice": 1, + "OutgoingMessage": 5, + "this.output": 3, + "this.outputEncodings": 2, + "this.writable": 1, + "this._last": 3, + "this.chunkedEncoding": 6, + "this.shouldKeepAlive": 4, + "this.useChunkedEncodingByDefault": 4, + "this.sendDate": 3, + "this._hasBody": 6, + "this._trailer": 5, + "this.finished": 4, + "exports.OutgoingMessage": 1, + "OutgoingMessage.prototype.destroy": 1, + "OutgoingMessage.prototype._send": 1, + "this._headerSent": 5, + "this._header": 10, + "this.output.unshift": 1, + "this.outputEncodings.unshift": 1, + "this._writeRaw": 2, + "OutgoingMessage.prototype._writeRaw": 1, + "data.length": 3, + "this.connection._httpMessage": 3, + "this.connection.writable": 3, + "this.output.length": 5, + "this._buffer": 2, + "this.output.shift": 2, + "this.outputEncodings.shift": 2, + "this.connection.write": 4, + "OutgoingMessage.prototype._buffer": 1, + "this.output.push": 2, + "this.outputEncodings.push": 2, + "lastEncoding": 2, + "lastData": 2, + "data.constructor": 1, + "lastData.constructor": 1, + "OutgoingMessage.prototype._storeHeader": 1, + "firstLine": 2, + "sentConnectionHeader": 3, + "sentContentLengthHeader": 4, + "sentTransferEncodingHeader": 3, + "sentDateHeader": 3, + "sentExpect": 3, + "messageHeader": 7, + "store": 3, + "connectionExpression.test": 1, + "closeExpression.test": 1, + "self._last": 4, + "self.shouldKeepAlive": 4, + "transferEncodingExpression.test": 1, + "chunkExpression.test": 1, + "self.chunkedEncoding": 1, + "contentLengthExpression.test": 1, + "dateExpression.test": 1, + "expectExpression.test": 1, + "keys": 11, + "Object.keys": 5, + "keys.length": 5, + "value.length": 1, + "shouldSendKeepAlive": 2, + "this.agent": 2, + "this._send": 8, + "OutgoingMessage.prototype.setHeader": 1, + "name.toLowerCase": 6, + "this._headerNames": 5, + "OutgoingMessage.prototype.getHeader": 1, + "OutgoingMessage.prototype.removeHeader": 1, + "OutgoingMessage.prototype._renderHeaders": 1, + "OutgoingMessage.prototype.write": 1, + "this._implicitHeader": 2, + "chunk.length": 2, + "Buffer.byteLength": 2, + "len.toString": 2, + "OutgoingMessage.prototype.addTrailers": 1, + "OutgoingMessage.prototype.end": 1, + "hot": 3, + "this.write": 1, + "Last": 2, + "chunk.": 1, + "this._finish": 2, + "OutgoingMessage.prototype._finish": 1, + "ServerResponse": 5, + "DTRACE_HTTP_SERVER_RESPONSE": 1, + "ClientRequest": 6, + "DTRACE_HTTP_CLIENT_REQUEST": 1, + "OutgoingMessage.prototype._flush": 1, + "this.socket.writable": 2, + "XXX": 1, + "Necessary": 1, + "this.socket.write": 1, + "OutgoingMessage.call": 2, + "req.method": 5, + "req.httpVersionMajor": 2, + "req.httpVersionMinor": 2, + "exports.ServerResponse": 1, + "ServerResponse.prototype.statusCode": 1, + "onServerResponseClose": 3, + "this._httpMessage.emit": 2, + "ServerResponse.prototype.assignSocket": 1, + "socket._httpMessage": 9, + "socket.on": 2, + "this._flush": 1, + "ServerResponse.prototype.detachSocket": 1, + "socket.removeListener": 5, + "ServerResponse.prototype.writeContinue": 1, + "this._sent100": 2, + "ServerResponse.prototype._implicitHeader": 1, + "this.writeHead": 1, + "ServerResponse.prototype.writeHead": 1, + "statusCode": 7, + "reasonPhrase": 4, + "headerIndex": 4, + "this._renderHeaders": 3, + "obj.length": 1, + "obj.push": 1, + "statusLine": 2, + "statusCode.toString": 1, + "this._expect_continue": 1, + "this._storeHeader": 2, + "ServerResponse.prototype.writeHeader": 1, + "this.writeHead.apply": 1, + "Agent": 5, + "self.options": 2, + "self.requests": 6, + "self.sockets": 3, + "self.maxSockets": 1, + "self.options.maxSockets": 1, + "Agent.defaultMaxSockets": 2, + "self.on": 1, + "host": 29, + "port": 29, + "localAddress": 15, + ".shift": 1, + ".onSocket": 1, + "socket.destroy": 10, + "self.createConnection": 2, + "net.createConnection": 3, + "exports.Agent": 1, + "Agent.prototype.defaultPort": 1, + "Agent.prototype.addRequest": 1, + "this.sockets": 9, + "this.maxSockets": 1, + "req.onSocket": 1, + "this.createSocket": 2, + "this.requests": 5, + "Agent.prototype.createSocket": 1, + "util._extend": 1, + "options.port": 4, + "options.host": 4, + "options.localAddress": 3, + "onFree": 3, + "self.emit": 9, + "s.on": 4, + "onClose": 3, + "self.removeSocket": 2, + "onRemove": 3, + "s.removeListener": 3, + "Agent.prototype.removeSocket": 1, + ".emit": 1, + "globalAgent": 3, + "exports.globalAgent": 1, + "self.agent": 3, + "options.agent": 3, + "defaultPort": 3, + "options.defaultPort": 1, + "options.hostname": 1, + "options.setHost": 1, + "setHost": 2, + "self.socketPath": 4, + "options.socketPath": 1, + "self.method": 3, + "options.method": 2, + "self.path": 3, + "options.path": 2, + "self.once": 2, + "options.headers": 7, + "self.setHeader": 1, + "this.getHeader": 2, + "hostHeader": 3, + "this.setHeader": 2, + "options.auth": 2, + "//basic": 1, + "auth": 1, + "Buffer": 1, + "self.useChunkedEncodingByDefault": 2, + "self._storeHeader": 2, + "self.getHeader": 1, + "self._renderHeaders": 1, + "options.createConnection": 4, + "self.onSocket": 3, + "self.agent.addRequest": 1, + "conn": 3, + "self._deferToConnect": 1, + "self._flush": 1, + "exports.ClientRequest": 1, + "ClientRequest.prototype._implicitHeader": 1, + "this.path": 1, + "ClientRequest.prototype.abort": 1, + "this._deferToConnect": 3, + "createHangUpError": 3, + "error.code": 1, + "freeParser": 9, + "parser.socket.onend": 1, + "parser.socket.ondata": 1, + "parser.socket.parser": 1, + "parsers.free": 1, + "req.parser": 1, + "socketCloseListener": 2, + "socket.parser": 3, + "req.emit": 8, + "req.res": 8, + "req.res.readable": 1, + "req.res.emit": 1, + "req.res._emitPending": 1, + "res._emitEnd": 1, + "res.emit": 1, + "req._hadError": 3, + "parser.finish": 6, + "socketErrorListener": 2, + "err.message": 1, + "err.stack": 1, + "socketOnEnd": 1, + "this._httpMessage": 3, + "this.parser": 2, + "socketOnData": 1, + "parser.execute": 2, + "bytesParsed": 4, + "socket.ondata": 3, + "socket.onend": 3, + "bodyHead": 4, + "d.slice": 2, + "req.listeners": 1, + "req.upgradeOrConnect": 1, + "socket.emit": 1, + "parserOnIncomingClient": 1, + "shouldKeepAlive": 4, + "res.upgrade": 1, + "skip": 5, + "isHeadResponse": 2, + "res.statusCode": 1, + "Clear": 1, + "so": 8, + "don": 5, + "been": 5, + "upgraded": 1, + "via": 2, + "WebSockets": 1, + "shouldn": 2, + "AGENT": 2, + "socket.destroySoon": 2, + "keep": 1, + "alive": 1, + "close": 2, + "free": 1, + "important": 1, + "promisy": 1, + "thing": 2, + "onSocket": 3, + "self.socket.writable": 1, + "self.socket": 5, + "arguments_": 2, + "self.socket.once": 1, + "ClientRequest.prototype.setTimeout": 1, + "msecs": 4, + "this.once": 2, + "emitTimeout": 4, + "this.socket.setTimeout": 1, + "this.socket.once": 1, + "this.setTimeout": 3, + "sock": 1, + "ClientRequest.prototype.setNoDelay": 1, + "ClientRequest.prototype.setSocketKeepAlive": 1, + "ClientRequest.prototype.clearTimeout": 1, + "exports.request": 2, + "url.parse": 1, + "options.protocol": 3, + "exports.get": 1, + "req.end": 1, + "ondrain": 3, + "httpSocketSetup": 2, + "Server": 6, + "requestListener": 6, + "net.Server.call": 1, + "allowHalfOpen": 1, + "this.addListener": 2, + "this.httpAllowHalfOpen": 1, + "connectionListener": 3, + "net.Server": 1, + "exports.Server": 1, + "exports.createServer": 1, + "outgoing": 2, + "incoming": 2, + "abortIncoming": 3, + "incoming.length": 2, + "incoming.shift": 2, + "serverSocketCloseListener": 3, + "socket.setTimeout": 1, + "minute": 1, + "socket.once": 1, + "parsers.alloc": 1, + "parser.reinitialize": 1, + "this.maxHeadersCount": 2, + "socket.addListener": 2, + "self.listeners": 2, + "req.socket": 1, + "self.httpAllowHalfOpen": 1, + "socket.writable": 2, + "socket.end": 2, + "outgoing.length": 2, + "._last": 1, + "socket._httpMessage._last": 1, + "incoming.push": 1, + "res.shouldKeepAlive": 1, + "DTRACE_HTTP_SERVER_REQUEST": 1, + "outgoing.push": 1, + "res.assignSocket": 1, + "res.on": 1, + "res.detachSocket": 1, + "res._last": 1, + "outgoing.shift": 1, + "m.assignSocket": 1, + "req.headers": 2, + "continueExpression.test": 1, + "res._expect_continue": 1, + "res.writeContinue": 1, + "Not": 4, + "response.": 1, + "exports._connectionListener": 1, + "Client": 6, + "this.host": 1, + "this.port": 1, + "maxSockets": 1, + "Client.prototype.request": 1, + "path": 5, + "self.host": 1, + "self.port": 1, + "c.on": 2, + "exports.Client": 1, + "module.deprecate": 2, + "exports.createClient": 1, + "Animal.name": 1, + "_super": 4, + "Snake.name": 1, + "Horse.name": 1, + "window.document": 2, + "window.navigator": 2, + "location": 2, + "The": 9, + "actually": 2, + "just": 2, + "jQuery.fn.init": 2, + "rootjQuery": 8, + "Map": 4, + "over": 7, + "overwrite": 4, + "_jQuery": 4, + "window.": 6, + "central": 2, + "reference": 5, + "simple": 3, + "way": 2, + "check": 8, + "strings": 8, + "Prioritize": 1, + "#id": 3, + "": 1, + "avoid": 5, + "XSS": 1, + "location.hash": 1, + "#9521": 1, + "quickExpr": 2, + "Check": 10, + "whitespace": 7, + "rnotwhite": 2, + "Used": 3, + "trimming": 2, + "trimLeft": 4, + "trimRight": 4, + "standalone": 2, + "tag": 2, + "rsingleTag": 2, + "rvalidchars": 2, + "rvalidescape": 2, + "rvalidbraces": 2, + "Useragent": 2, + "rwebkit": 2, + "ropera": 2, + "rmsie": 2, + "rmozilla": 2, + "Matches": 1, + "dashed": 1, + "camelizing": 1, + "rdashAlpha": 1, + "rmsPrefix": 1, + "jQuery.camelCase": 6, + "as": 11, + "fcamelCase": 1, + "Keep": 2, + "UserAgent": 2, + "jQuery.browser": 4, + "userAgent": 3, + "For": 5, + "engine": 2, + "and": 42, + "browserMatch": 3, + "deferred": 25, + "DOM": 21, + "readyList": 6, + "DOMContentLoaded": 14, + "Save": 2, + "some": 2, + "core": 2, + "hasOwn": 2, + "Class": 2, + "pairs": 2, + "class2type": 3, + "jQuery.fn": 4, + "jQuery.prototype": 2, + "doc": 4, + "Handle": 14, + "DOMElement": 2, + "selector.nodeType": 2, + "exists": 9, + "once": 4, + "optimize": 3, + "finding": 2, + "Are": 2, + "dealing": 2, + "selector.charAt": 4, + "selector.length": 4, + "Assume": 2, + "regex": 3, + "quickExpr.exec": 2, + "Verify": 3, + "was": 6, + "specified": 4, + "HANDLE": 2, + "context.ownerDocument": 2, + "single": 2, + "passed": 5, + "like": 5, + "method.": 3, + "jQuery.fn.init.prototype": 2, + "jQuery.extend": 11, + "jQuery.fn.extend": 4, + "copy": 16, + "copyIsArray": 2, + "deep": 12, + "situation": 2, + "possible": 3, + "jQuery.isFunction": 6, + "itself": 4, + "argument": 2, + "Only": 5, + "deal": 2, + "null/undefined": 2, + "values": 10, + "Extend": 2, + "base": 2, + "Prevent": 2, + "never": 2, + "ending": 2, + "Recurse": 2, + "bring": 2, + "Return": 2, + "modified": 3, + "Is": 2, + "Set": 4, + "occurs.": 2, + "counter": 2, + "track": 2, + "how": 2, + "many": 3, + "items": 2, + "wait": 12, + "fires.": 2, + "See": 9, + "#6781": 2, + "Hold": 2, + "release": 2, + "hold": 6, + "jQuery.readyWait": 6, + "jQuery.ready": 16, + "Either": 2, + "released": 2, + "DOMready/load": 2, + "yet": 2, + "jQuery.isReady": 6, + "Make": 17, + "sure": 18, + "least": 4, + "gets": 6, + "little": 4, + "overzealous": 4, + "ticket": 4, + "#5443": 4, + "Remember": 2, + "normal": 2, + "Ready": 2, + "fired": 12, + "decrement": 2, + "need": 10, + "there": 6, + "functions": 6, + "execute": 4, + "readyList.fireWith": 1, + "Trigger": 2, + "any": 12, + "jQuery.fn.trigger": 2, + ".off": 1, + "jQuery.Callbacks": 2, + "Catch": 2, + "cases": 4, + "where": 2, + ".ready": 2, + "called": 2, + "already": 6, + "occurred.": 2, + "document.readyState": 4, + "asynchronously": 2, + "scripts": 2, + "opportunity": 2, + "Mozilla": 2, + "Opera": 2, + "nightlies": 3, + "currently": 4, + "document.addEventListener": 6, + "Use": 7, + "handy": 2, + "fallback": 4, + "window.onload": 4, + "will": 7, + "work": 6, + "window.addEventListener": 2, + "document.attachEvent": 6, + "ensure": 2, + "firing": 16, + "onload": 2, + "maybe": 2, + "late": 2, + "but": 4, + "safe": 3, + "iframes": 2, + "window.attachEvent": 2, + "continually": 2, + "see": 6, + "window.frameElement": 2, + "document.documentElement.doScroll": 4, + "doScrollCheck": 6, + "test/unit/core.js": 2, + "details": 3, + "concerning": 2, + "isFunction.": 2, + "aren": 5, + "pass": 7, + "through": 3, + "well": 2, + "jQuery.type": 4, + "obj.nodeType": 2, + "jQuery.isWindow": 2, + "own": 4, + "must": 4, + "obj.constructor": 2, + "hasOwn.call": 6, + "obj.constructor.prototype": 2, + "Will": 2, + "exceptions": 2, + "certain": 2, + "objects": 7, + "#9897": 1, + "Own": 2, + "properties": 7, + "enumerated": 2, + "firstly": 2, + "up": 4, + "own.": 2, + "msg": 4, + "leading/trailing": 2, + "removed": 3, + "elems": 9, + "chainable": 4, + "emptyGet": 3, + "bulk": 3, + "elems.length": 1, + "Sets": 3, + "jQuery.access": 2, + "Optionally": 1, + "executed": 1, + "Bulk": 1, + "operations": 1, + "iterate": 1, + "executing": 1, + "exec.call": 1, + "Otherwise": 2, + "they": 2, + "run": 1, + "against": 1, + "entire": 1, + "fn.call": 2, + "value.call": 1, + "Gets": 2, + "frowned": 1, + "upon.": 1, + "More": 1, + "//docs.jquery.com/Utilities/jQuery.browser": 1, + "ua": 6, + "ua.toLowerCase": 1, + "rwebkit.exec": 1, + "ropera.exec": 1, + "rmsie.exec": 1, + "ua.indexOf": 1, + "rmozilla.exec": 1, + "jQuerySub": 7, + "jQuerySub.fn.init": 2, + "jQuerySub.superclass": 1, + "jQuerySub.fn": 2, + "jQuerySub.prototype": 1, + "jQuerySub.fn.constructor": 1, + "jQuerySub.sub": 1, + "jQuery.fn.init.call": 1, + "rootjQuerySub": 2, + "jQuerySub.fn.init.prototype": 1, + "jQuery.each": 2, + "jQuery.uaMatch": 1, + "browserMatch.browser": 2, + "jQuery.browser.version": 1, + "browserMatch.version": 1, + "jQuery.browser.webkit": 1, + "jQuery.browser.safari": 1, + "rnotwhite.test": 2, + "document.removeEventListener": 2, + "document.detachEvent": 2, + "trick": 2, + "Diego": 2, + "Perini": 2, + "//javascript.nwbox.com/IEContentLoaded/": 2, + "waiting": 2, + "flagsCache": 3, + "createFlags": 2, + "flags.split": 1, + "flags.length": 1, + "Convert": 1, + "from": 7, + "formatted": 2, + "Actual": 2, + "Stack": 1, + "fire": 4, + "calls": 1, + "repeatable": 1, + "lists": 2, + "stack": 2, + "forgettable": 1, + "memory": 8, + "Flag": 2, + "know": 3, + "First": 3, + "internally": 5, + "fireWith": 1, + "firingStart": 3, + "End": 1, + "firingLength": 4, + "Index": 1, + "needed": 2, + "firingIndex": 5, + "Add": 4, + "several": 1, + "callbacks": 10, + "actual": 1, + "args.length": 3, + "Inspect": 1, + "recursively": 1, + "unique": 2, + "mode": 1, + "flags.unique": 1, + "self.has": 1, + "list.push": 1, + "Fire": 1, + "flags.memory": 1, + "flags.stopOnFalse": 1, + "Mark": 1, + "halted": 1, + "flags.once": 1, + "stack.length": 1, + "stack.shift": 1, + "self.fireWith": 1, + "self.disable": 1, + "Callbacks": 1, + "Do": 2, + "batch": 2, + "With": 1, + "/a": 1, + ".55": 1, + "basic": 1, + "all.length": 1, + "opt": 2, + "select.appendChild": 1, + "div.getElementsByTagName": 6, + "strips": 1, + "leading": 1, + "div.firstChild.nodeType": 1, + "manipulated": 1, + "normalizes": 1, + "uses": 3, + "instead": 6, + "around": 1, + "WebKit": 9, + "issue.": 1, + "#5145": 1, + "existence": 1, + "styleFloat": 1, + "a.style.cssFloat": 1, + "defaults": 3, + "input.value": 5, + "working": 1, + "property.": 1, + "too": 1, + "marked": 1, + "marks": 1, + "them": 3, + "select.disabled": 1, + "support.optDisabled": 1, + "opt.disabled": 1, + "Test": 3, + "handlers": 1, + "support.noCloneEvent": 1, + "div.cloneNode": 1, + "maintains": 1, + "its": 2, + "being": 2, + "appended": 2, + "input.setAttribute": 5, + "support.radioValue": 2, + "#11217": 1, + "loses": 1, + "attribute": 5, + "fragment.appendChild": 2, + "div.lastChild": 1, + "doesn": 2, + "have": 6, + "conMarginTop": 3, + "paddingMarginBorder": 5, + "positionTopLeftWidthHeight": 3, + "paddingMarginBorderVisibility": 3, + "container": 4, + "container.style.cssText": 1, + "body.insertBefore": 1, + "body.firstChild": 1, + "Construct": 1, + "container.appendChild": 1, + "cells": 3, + "still": 4, + "offsetWidth/Height": 3, + "other": 3, + "visible": 1, + "row": 1, + "reliable": 1, + "determining": 3, + "directly": 2, + "offsets": 1, + "safety": 1, + "goggles": 1, + "bug": 3, + "#4512": 1, + "more": 6, + "information": 5, + "tds": 6, + "support.reliableHiddenOffsets": 1, + "explicit": 1, + "right": 3, + "incorrectly": 1, + "computed": 1, + "based": 1, + "container.": 1, + "#3333": 1, + "Fails": 2, + "Feb": 1, + "Bug": 1, + "returns": 1, + "wrong": 1, + "marginDiv": 5, + "marginDiv.style.width": 1, + "marginDiv.style.marginRight": 1, + "div.style.width": 2, + "support.reliableMarginRight": 1, + "div.style.zoom": 2, + "natively": 1, + "act": 1, + "setting": 2, + "their": 3, + "giving": 1, + "layout": 2, + "div.style.padding": 1, + "div.style.border": 1, + "div.style.overflow": 2, + "div.style.display": 2, + "support.inlineBlockNeedsLayout": 1, + "div.offsetWidth": 2, + "shrink": 1, + "support.shrinkWrapBlocks": 1, + "div.style.cssText": 1, + "outer.firstChild": 1, + "outer.nextSibling.firstChild.firstChild": 1, + "offsetSupport": 2, + "doesNotAddBorder": 1, + "inner.offsetTop": 4, + "doesAddBorderForTableAndCells": 1, + "td.offsetTop": 1, + "inner.style.position": 2, + "inner.style.top": 2, + "safari": 1, + "subtracts": 1, + "here": 1, + "offsetSupport.fixedPosition": 1, + "outer.style.overflow": 1, + "outer.style.position": 1, + "offsetSupport.subtractsBorderForOverflowNotVisible": 1, + "offsetSupport.doesNotIncludeMarginInBodyOffset": 1, + "body.offsetTop": 1, + "div.style.marginTop": 1, + "support.pixelMargin": 1, + ".marginTop": 1, + "container.style.zoom": 2, + "body.removeChild": 1, + "rbrace": 1, + "rmultiDash": 3, + "Please": 1, + "caution": 1, + "Unique": 1, + "page": 1, + "Non": 3, + "rinlinejQuery": 1, + "jQuery.fn.jquery": 1, + "following": 1, + "uncatchable": 1, + "you": 1, + "attempt": 2, + "them.": 1, + "Ban": 1, + "except": 1, + "Flash": 1, + "expandos": 2, + "elem.nodeType": 8, + "jQuery.cache": 3, + "jQuery.expando": 12, + "isEmptyDataObject": 3, + "pvt": 8, + "jQuery.acceptData": 2, + "privateCache": 1, + "thisCache": 15, + "internalKey": 12, + "getByName": 3, + "We": 6, + "JS": 7, + "differently": 1, + "because": 1, + "IE6": 1, + "internal": 8, + "order": 1, + "collisions": 1, + "between": 1, + "user": 1, + "defined": 3, + "data.": 1, + "thisCache.data": 3, + "Users": 1, + "should": 1, + "inspect": 1, + "jQuery.data": 15, + "undocumented": 1, + "subject": 1, + "change.": 1, + "But": 1, + "anyone": 1, + "listen": 1, + "No.": 1, + "isEvents": 1, + "privateCache.events": 1, + "both": 2, + "converted": 2, + "camel": 2, + "names": 2, + "Try": 4, + "camelCased": 1, + "Reference": 1, + "isNode": 11, + "entry": 1, + "purpose": 1, + "continuing": 1, + "Support": 1, + "space": 1, + "separated": 1, + "jQuery.isArray": 1, + "manipulation": 1, + "cased": 1, + "spaces": 3, + "unless": 2, + "name.split": 1, + "name.length": 1, + "want": 1, + "let": 1, + "destroyed": 2, + "jQuery.isEmptyObject": 1, + "Don": 1, + "care": 1, + "Ensure": 1, + "#10080": 1, + "jQuery.support.deleteExpando": 3, + "cache.setInterval": 1, + "eliminate": 2, + "lookups": 2, + "entries": 2, + "longer": 2, + "exist": 2, + "us": 2, + "nor": 2, + "removeAttribute": 3, + "Document": 2, + "these": 2, + "elem.removeAttribute": 6, + "only.": 2, + "elem.nodeName": 2, + "jQuery.noData": 2, + "elem.nodeName.toLowerCase": 2, + "elem.getAttribute": 7, + "jQuery._data": 2, + "elem.attributes": 1, + "attr.length": 2, + "name.indexOf": 2, + "name.substring": 2, + "dataAttr": 6, + "key.split": 2, + "fetch": 4, + "stored": 4, + "self.triggerHandler": 2, + "jQuery.removeData": 2, + "nothing": 2, + "key.replace": 2, + "jQuery.isNumeric": 1, + "rbrace.test": 2, + "jQuery.parseJSON": 2, + "isn": 2, + "option.selected": 2, + "jQuery.support.optDisabled": 2, + "option.disabled": 2, + "option.getAttribute": 2, + "option.parentNode.disabled": 2, + "jQuery.nodeName": 3, + "option.parentNode": 2, + "Get": 4, + "specific": 2, + "get/set": 2, + "nType": 8, + "jQuery.attrFn": 2, + "Fallback": 2, + "supported": 2, + "jQuery.prop": 2, + "notxml": 8, + "jQuery.isXMLDoc": 2, + "All": 1, + "lowercase": 1, + "Grab": 1, + "necessary": 1, + "hook": 1, + "hooks": 14, + "jQuery.attrHooks": 2, + "rboolean.test": 4, + "boolHook": 3, + "nodeHook": 1, + "jQuery.removeAttr": 2, + "hooks.set": 2, + "elem.setAttribute": 2, + "hooks.get": 2, + "existent": 2, + "normalize": 2, + "propName": 8, + "attrNames": 3, + "isBool": 4, + "value.toLowerCase": 2, + "rspace": 1, + "attrNames.length": 1, + "jQuery.propFix": 2, + "#9699": 1, + "explanation": 1, + "approach": 1, + "removal": 1, + "#10870": 1, + "jQuery.attr": 2, + "corresponding": 2, + "changed": 3, + "readOnly": 2, + "htmlFor": 2, + "maxLength": 2, + "cellSpacing": 2, + "cellPadding": 2, + "rowSpan": 2, + "colSpan": 2, + "useMap": 2, + "frameBorder": 2, + "contentEditable": 2, + "**": 1, + "timeStamp": 1, + "buttons": 1, + "rdigit": 1, + "readyList.resolveWith": 1, + "jQuery._Deferred": 3, + "breaking": 1, + "Promise": 1, + "promiseMethods": 3, + "Static": 1, + "sliceDeferred": 1, + "Create": 1, + "doing": 3, + "flag": 1, + "cancelled": 5, + "f1": 1, + "f2": 1, + "...": 1, + "_fired": 5, + "deferred.done.apply": 2, + "callbacks.push": 1, + "deferred.resolveWith": 5, + "given": 3, + "available": 1, + "#8421": 1, + "callbacks.shift": 1, + "Has": 1, + "resolved": 1, + "Cancel": 1, + "Full": 1, + "fledged": 1, + "two": 1, + "func": 3, + "failDeferred": 1, + "errorDeferred": 1, + "doneCallbacks": 2, + "failCallbacks": 2, + "deferred.done": 2, + ".fail": 2, + ".fail.apply": 1, + "failDeferred.done": 1, + "failDeferred.resolveWith": 1, + "failDeferred.resolve": 1, + "failDeferred.isResolved": 1, + "fnDone": 2, + "fnFail": 2, + "jQuery.Deferred": 1, + "newDefer": 3, + "action": 3, + "returned": 4, + "fn.apply": 1, + "returned.promise": 2, + "newDefer.resolve": 1, + "newDefer.reject": 1, + "provided": 1, + "aspect": 1, + "added": 1, + "promiseMethods.length": 1, + "failDeferred.cancel": 1, + "deferred.cancel": 2, + "Unexpose": 1, + "Call": 1, + "func.call": 1, + "helper": 1, + "firstParam": 6, + "count": 4, + "<=>": 1, + "resolveFunc": 2, + "sliceDeferred.call": 2, + "Strange": 1, + "FF4": 1, + "Values": 1, + "onto": 2, + "sometimes": 1, + ".when": 1, + "Cloning": 2, + "into": 2, + "fresh": 1, + "solves": 1, + "issue": 1, + "deferred.reject": 1, + "deferred.promise": 1, + "jQuery.support": 1, + "bodyStyle": 1, + "Preliminary": 1, + "div.setAttribute": 1, + "automatically": 2, + "inserted": 1, + "insert": 1, + "tables": 1, + "serialized": 3, + "correctly": 1, + "innerHTML": 1, + "This": 3, + "requires": 1, + "wrapper": 1, + "URLs": 1, + "opt.selected": 1, + "setAttribute": 1, + "class.": 1, + "works": 1, + "attrFixes": 1, + "get/setAttribute": 1, + "ie6/7": 1, + "div.className": 1, + "later": 1, + "properly": 2, + "cloned": 1, + "input.checked": 1, + "support.noCloneChecked": 1, + "input.cloneNode": 1, + "selects": 1, + "Internet": 1, + "Explorer": 1, + "div.test": 1, + "support.deleteExpando": 1, + "div.addEventListener": 1, + "div.attachEvent": 2, + "div.fireEvent": 1, + "GC": 2, + "references": 1, + "across": 1, + "boundary": 1, + "attached": 1, + "occur": 1, + "defining": 1, + "allows": 1, + "shortcut": 1, + "same": 1, + "Avoid": 1, + "trying": 1, + "since": 1, + "ends": 1, + "jQuery.uuid": 1, + "TODO": 2, + "hack": 2, + "ONLY.": 2, + "Avoids": 2, + "exposing": 2, + "metadata": 2, + "plain": 2, + "jQuery.noop": 2, + "An": 1, + "key/value": 1, + "pair": 1, + "shallow": 1, + "copied": 1, + "existing": 1, + "Internal": 1, + "separate": 1, + "destroy": 1, + "had": 1, + "internalCache": 3, + "Browsers": 1, + "deletion": 1, + "refuse": 1, + "browsers": 2, + "faster": 1, + "iterating": 1, + "persist": 1, + "existed": 1, + "jQuery.isNaN": 1, + "Normalize": 1, + "jQuery.attrFix": 2, + "formHook": 3, + "forms": 1, + "rinvalidChar.test": 1, + "jQuery.support.getSetAttribute": 1, + "elem.removeAttributeNode": 1, + "elem.getAttributeNode": 1, + "bubbling": 1, + "live.": 2, + "hasDuplicate": 1, + "baseHasDuplicate": 2, + "rBackslash": 1, + "rNonWord": 1, + "Sizzle": 1, + "results": 4, + "seed": 1, + "origContext": 1, + "context.nodeType": 2, + "checkSet": 1, + "extra": 1, + "pop": 1, + "prune": 1, + "contextXML": 1, + "Sizzle.isXML": 1, + "soFar": 1, + "Reset": 1, + "window.angular": 1 + }, + "STON": { + "{": 15, + "#a": 1, + "#b": 1, + "}": 15, + "Rectangle": 1, + "#origin": 1, + "Point": 2, + "[": 11, + "-": 2, + "]": 11, + "#corner": 1, + "TestDomainObject": 1, + "#created": 1, + "DateAndTime": 2, + "#modified": 1, + "#integer": 1, + "#float": 1, + "#description": 1, + "#color": 1, + "#green": 1, + "#tags": 1, + "#two": 1, + "#beta": 1, + "#medium": 1, + "#bytes": 1, + "ByteArray": 1, + "#boolean": 1, + "false": 1, + "ZnResponse": 1, + "#headers": 2, + "ZnHeaders": 1, + "ZnMultiValueDictionary": 1, + "#entity": 1, + "ZnStringEntity": 1, + "#contentType": 1, + "ZnMimeType": 1, + "#main": 1, + "#sub": 1, + "#parameters": 1, + "#contentLength": 1, + "#string": 1, + "#encoder": 1, + "ZnUTF8Encoder": 1, + "#statusLine": 1, + "ZnStatusLine": 1, + "#version": 1, + "#code": 1, + "#reason": 1 + }, + "AspectJ": { + "package": 2, + "com.blogspot.miguelinlas3.aspectj.cache": 1, + ";": 29, + "import": 5, + "java.util.Map": 2, + "java.util.WeakHashMap": 1, + "org.aspectj.lang.JoinPoint": 1, + "com.blogspot.miguelinlas3.aspectj.cache.marker.Cachable": 1, + "public": 6, + "aspect": 2, + "CacheAspect": 1, + "{": 11, + "pointcut": 3, + "cache": 3, + "(": 46, + "Cachable": 2, + "cachable": 5, + ")": 46, + "execution": 1, + "@Cachable": 2, + "*": 2, + "..": 1, + "&&": 2, + "@annotation": 1, + "Object": 15, + "around": 2, + "String": 3, + "evaluatedKey": 6, + "this.evaluateKey": 1, + "cachable.scriptKey": 1, + "thisJoinPoint": 1, + "if": 2, + "cache.containsKey": 1, + "System.out.println": 5, + "+": 7, + "return": 5, + "this.cache.get": 1, + "}": 11, + "value": 3, + "proceed": 2, + "cache.put": 1, + "protected": 2, + "evaluateKey": 1, + "key": 2, + "JoinPoint": 1, + "joinPoint": 1, + "//": 1, + "TODO": 1, + "add": 1, + "some": 1, + "smart": 1, + "staff": 1, + "to": 1, + "allow": 1, + "simple": 1, + "scripting": 1, + "in": 1, + "annotation": 1, + "Map": 3, + "": 2, + "new": 1, + "WeakHashMap": 1, + "aspects.caching": 1, + "abstract": 3, + "OptimizeRecursionCache": 2, + "@SuppressWarnings": 3, + "private": 1, + "_cache": 2, + "getCache": 2, + "operation": 4, + "o": 16, + "topLevelOperation": 4, + "cflowbelow": 1, + "before": 1, + "cachedValue": 4, + "_cache.get": 1, + "null": 1, + "after": 2, + "returning": 2, + "result": 3, + "_cache.put": 1, + "_cache.size": 1 + }, + "OCaml": { + "{": 11, + "shared": 1, + "open": 4, + "Eliom_content": 1, + "Html5.D": 1, + "Eliom_parameter": 1, + "}": 13, + "server": 2, + "module": 5, + "Example": 1, + "Eliom_registration.App": 1, + "(": 21, + "struct": 5, + "let": 13, + "application_name": 1, + "end": 5, + ")": 23, + "main": 2, + "Eliom_service.service": 1, + "path": 1, "[": 13, "]": 13, - "f.DrawRect": 1, - "Ports.fill": 1, - "Ports.red": 1, - "HandlePropMsg": 2, - "msg": 2, - "Views.PropMessage": 1, - "WITH": 1, - "Properties.SizePref": 1, - "DO": 4, - "msg.w": 1, - "msg.h": 1, - "ClassNotify*": 1, - "op": 4, - "from": 2, - "to": 5, - "Dialog.changed": 2, - "OR": 4, - "&": 8, - "data.list.index": 3, - "data.width": 4, - "Dialog.Update": 2, - "data": 2, - "Dialog.UpdateList": 1, - "data.list": 1, - "ClassNotify": 1, - "ListNotify*": 1, - "ListNotify": 1, - "ListGuard*": 1, - "par": 2, - "Dialog.Par": 2, - "par.disabled": 1, - "ListGuard": 1, - "WidthGuard*": 1, - "par.readOnly": 1, - "#": 3, - "WidthGuard": 1, - "Open*": 1, - "NEW": 2, - "*": 1, - "Ports.mm": 1, - "Views.OpenAux": 1, - "Open": 1, - "ObxControls.": 1, - "ObxFact": 1, - "Stores": 1, - "Models": 1, - "TextModels": 1, - "TextControllers": 1, - "Integers": 1, - "Read": 3, - "TextModels.Reader": 2, - "x": 15, - "Integers.Integer": 3, - "i": 17, - "len": 5, - "beg": 11, - "ch": 14, - "CHAR": 3, - "buf": 5, - "r.ReadChar": 5, - "WHILE": 3, - "r.eot": 4, - "<=>": 1, - "ReadChar": 1, - "ASSERT": 1, - "eot": 1, - "<": 8, - "r.Pos": 2, - "-": 1, - "REPEAT": 3, - "INC": 4, - "UNTIL": 3, - "+": 1, - "r.SetPos": 2, - "X": 1, - "Integers.ConvertFromString": 1, - "Write": 3, - "w": 4, - "TextModels.Writer": 2, - "Integers.Sign": 2, - "w.WriteChar": 3, - "Integers.Digits10Of": 1, - "DEC": 1, - "Integers.ThisDigit10": 1, - "Compute*": 1, - "end": 6, - "n": 3, - "s": 3, - "Stores.Operation": 1, - "attr": 3, - "TextModels.Attributes": 1, - "c": 3, - "TextControllers.Controller": 1, - "TextControllers.Focus": 1, - "NIL": 3, - "c.HasSelection": 1, - "c.GetSelection": 1, - "c.text.NewReader": 1, - "r.ReadPrev": 2, - "r.attr": 1, - "Integers.Compare": 1, - "Integers.Long": 3, - "MAX": 1, - "LONGINT": 1, - "SHORT": 1, - "Integers.Short": 1, - "Integers.Product": 1, - "Models.BeginScript": 1, - "c.text": 2, - "c.text.Delete": 1, - "c.text.NewWriter": 1, - "w.SetPos": 1, - "w.SetAttr": 1, - "Models.EndScript": 1, - "Compute": 1, - "ObxFact.": 1 - }, - "Coq": { - "Inductive": 41, - "day": 9, - "Type": 86, - "|": 457, - "monday": 5, - "tuesday": 3, - "wednesday": 3, - "thursday": 3, - "friday": 3, - "saturday": 3, - "sunday": 2, - "day.": 1, - "Definition": 46, - "next_weekday": 3, - "(": 1248, - "d": 6, - ")": 1249, - "match": 70, - "with": 223, - "end.": 52, - "Example": 37, - "test_next_weekday": 1, - "tuesday.": 1, - "Proof.": 208, - "simpl.": 70, - "reflexivity.": 199, - "Qed.": 194, - "bool": 38, - "true": 68, - "false": 48, - "bool.": 1, - "negb": 10, - "b": 89, - "andb": 8, - "b1": 35, - "b2": 23, - "orb": 8, - "test_orb1": 1, - "true.": 16, - "test_orb2": 1, - "false.": 12, - "test_orb3": 1, - "test_orb4": 1, - "nandb": 5, - "end": 16, - "test_nandb1": 1, - "test_nandb2": 1, - "test_nandb3": 1, - "test_nandb4": 1, - "andb3": 5, - "b3": 2, - "test_andb31": 1, - "test_andb32": 1, - "test_andb33": 1, - "test_andb34": 1, - "Module": 11, - "Playground1.": 5, - "nat": 108, - "O": 98, - "S": 186, - "-": 508, - "nat.": 4, - "pred": 3, - "n": 369, - "minustwo": 1, - "Fixpoint": 36, - "evenb": 5, - "oddb": 5, - ".": 433, - "test_oddb1": 1, - "test_oddb2": 1, - "plus": 10, - "m": 201, - "mult": 3, - "minus": 3, - "_": 67, - "exp": 2, - "base": 3, - "power": 2, - "p": 81, - "factorial": 2, - "test_factorial1": 1, - "Notation": 39, - "x": 266, - "y": 116, - "at": 17, - "level": 11, - "left": 6, - "associativity": 7, - "nat_scope.": 3, - "beq_nat": 24, - "forall": 248, - "+": 227, - "n.": 44, - "Theorem": 115, - "plus_O_n": 1, - "intros": 258, - "plus_1_1": 1, - "mult_0_1": 1, - "*": 59, - "O.": 5, - "plus_id_example": 1, - "m.": 21, - "H.": 100, - "rewrite": 241, - "plus_id_exercise": 1, - "o": 25, - "o.": 4, - "H": 76, - "mult_0_plus": 1, - "plus_O_n.": 1, - "mult_1_plus": 1, - "plus_1_1.": 1, - "mult_1": 1, - "induction": 81, - "as": 77, - "[": 170, - "plus_1_neq_0": 1, - "destruct": 94, - "]": 173, - "Case": 51, - "IHn": 12, - "plus_comm": 3, - "plus_distr.": 1, - "beq_nat_refl": 3, - "plus_rearrange": 1, - "q": 15, - "q.": 2, - "assert": 68, - "plus_comm.": 3, - "plus_swap": 2, - "p.": 9, - "plus_assoc.": 4, - "H2": 12, - "H2.": 20, - "plus_swap.": 2, - "<->": 31, - "IHm": 2, - "reflexivity": 16, - "Qed": 23, - "mult_comm": 2, - "Proof": 12, - "0": 5, - "simpl": 116, - "mult_0_r.": 4, - "mult_distr": 1, - "mult_1_distr.": 1, - "mult_1.": 1, - "bad": 1, - "zero_nbeq_S": 1, - "andb_false_r": 1, - "plus_ble_compat_1": 1, - "ble_nat": 6, - "IHp.": 2, - "S_nbeq_0": 1, - "mult_1_1": 1, - "plus_0_r.": 1, - "all3_spec": 1, - "c": 70, - "c.": 5, - "b.": 14, - "Lemma": 51, - "mult_plus_1": 1, - "IHm.": 1, - "mult_mult": 1, - "IHn.": 3, - "mult_plus_1.": 1, - "mult_plus_distr_r": 1, - "mult_mult.": 3, - "H1": 18, - "plus_assoc": 1, - "H1.": 31, - "H3": 4, - "H3.": 5, - "mult_assoc": 1, - "mult_plus_distr_r.": 1, - "bin": 9, - "BO": 4, - "D": 9, - "M": 4, - "bin.": 1, - "incbin": 2, - "bin2un": 3, - "bin_comm": 1, - "End": 15, - "Require": 17, - "Import": 11, - "List": 2, - "Multiset": 2, - "PermutSetoid": 1, - "Relations": 2, - "Sorting.": 1, - "Section": 4, - "defs.": 2, - "Variable": 7, - "A": 113, - "Type.": 3, - "leA": 25, - "relation": 19, - "A.": 6, - "eqA": 29, - "Let": 8, - "gtA": 1, - "y.": 15, - "Hypothesis": 7, - "leA_dec": 4, - "{": 39, - "}": 35, - "eqA_dec": 26, - "leA_refl": 1, - "leA_trans": 2, - "z": 14, - "z.": 6, - "leA_antisym": 1, - "Hint": 9, - "Resolve": 5, - "leA_refl.": 1, - "Immediate": 1, - "leA_antisym.": 1, - "emptyBag": 4, - "EmptyBag": 2, - "singletonBag": 10, - "SingletonBag": 2, - "eqA_dec.": 2, - "Tree": 24, - "Tree_Leaf": 9, - "Tree_Node": 11, - "Tree.": 1, - "leA_Tree": 16, - "a": 207, - "t": 93, - "True": 1, - "T1": 25, - "T2": 20, - "leA_Tree_Leaf": 5, - "Tree_Leaf.": 1, - ";": 375, - "auto": 73, - "datatypes.": 47, - "leA_Tree_Node": 1, - "G": 6, - "is_heap": 18, - "Prop": 17, - "nil_is_heap": 5, - "node_is_heap": 7, - "invert_heap": 3, - "/": 41, - "T2.": 1, - "inversion": 104, - "is_heap_rect": 1, - "P": 32, - "T": 49, - "T.": 9, - "simple": 7, - "PG": 2, - "PD": 2, - "PN.": 2, - "elim": 21, - "H4": 7, - "intros.": 27, - "apply": 340, - "X0": 2, - "is_heap_rec": 1, - "Set": 4, - "X": 191, - "low_trans": 3, - "merge_lem": 3, - "l1": 89, - "l2": 73, - "list": 78, - "merge_exist": 5, - "l": 379, - "Sorted": 5, - "meq": 15, - "list_contents": 30, - "munion": 18, - "HdRel": 4, - "l2.": 8, - "Morphisms.": 2, - "Instance": 7, - "Equivalence": 2, - "@meq": 4, - "constructor": 6, - "red.": 1, - "meq_trans.": 1, - "Defined.": 1, - "Proper": 5, - "@munion": 1, - "now": 24, - "meq_congr.": 1, - "merge": 5, - "fix": 2, - "l1.": 5, - "rename": 2, - "into": 2, - "l.": 26, - "revert": 5, - "H0.": 24, - "a0": 15, - "l0": 7, - "Sorted_inv": 2, - "in": 221, - "H0": 16, - "clear": 7, - "merge0.": 2, - "using": 18, - "cons_sort": 2, - "cons_leA": 2, - "munion_ass.": 2, - "cons_leA.": 2, - "@HdRel_inv": 2, - "trivial": 15, - "merge0": 1, - "setoid_rewrite": 2, - "munion_ass": 1, - "munion_comm.": 2, - "repeat": 11, - "munion_comm": 1, - "contents": 12, - "multiset": 2, - "t1": 48, - "t2": 51, - "equiv_Tree": 1, - "insert_spec": 3, - "insert_exist": 4, - "insert": 2, - "unfold": 58, - "T0": 2, - "treesort_twist1": 1, - "T3": 2, - "HeapT3": 1, - "ConT3": 1, - "LeA.": 1, - "LeA": 1, - "treesort_twist2": 1, - "build_heap": 3, - "heap_exist": 3, - "list_to_heap": 2, - "nil": 46, - "exact": 4, - "nil_is_heap.": 1, - "i": 11, - "meq_trans": 10, - "meq_right": 2, - "meq_sym": 2, - "flat_spec": 3, - "flat_exist": 3, - "heap_to_list": 2, - "h": 14, - "s1": 20, - "i1": 15, - "m1": 1, - "s2": 2, - "i2": 10, - "m2.": 1, - "meq_congr": 1, - "munion_rotate.": 1, - "treesort": 1, - "&": 21, - "permutation": 43, - "intro": 27, - "permutation.": 1, - "exists": 60, - "Export": 10, - "SfLib.": 2, - "AExp.": 2, - "aexp": 30, - "ANum": 18, - "APlus": 14, - "AMinus": 9, - "AMult": 9, - "aexp.": 1, - "bexp": 22, - "BTrue": 10, - "BFalse": 11, - "BEq": 9, - "BLe": 9, - "BNot": 9, - "BAnd": 10, - "bexp.": 1, - "aeval": 46, - "e": 53, - "a1": 56, - "a2": 62, - "test_aeval1": 1, - "beval": 16, - "optimize_0plus": 15, - "e2": 54, - "e1": 58, - "test_optimize_0plus": 1, - "optimize_0plus_sound": 4, - "e.": 15, - "e1.": 1, - "SCase": 24, - "SSCase": 3, - "IHe2.": 10, - "IHe1.": 11, - "aexp_cases": 3, - "try": 17, - "IHe1": 6, - "IHe2": 6, - "optimize_0plus_all": 2, - "Tactic": 9, - "tactic": 9, - "first": 18, - "ident": 9, - "Case_aux": 38, - "optimize_0plus_all_sound": 1, - "bexp_cases": 4, - "optimize_and": 5, - "optimize_and_sound": 1, - "IHe": 2, - "aevalR_first_try.": 2, - "aevalR": 18, - "E_Anum": 1, - "E_APlus": 2, - "n1": 45, - "n2": 41, - "E_AMinus": 2, - "E_AMult": 2, - "Reserved": 4, - "E_ANum": 1, - "where": 6, - "bevalR": 11, - "E_BTrue": 1, - "E_BFalse": 1, - "E_BEq": 1, - "E_BLe": 1, - "E_BNot": 1, - "E_BAnd": 1, - "aeval_iff_aevalR": 9, - "split.": 17, - "subst": 7, - "generalize": 13, - "dependent": 6, - "IHa1": 1, - "IHa2": 1, - "beval_iff_bevalR": 1, - "*.": 110, - "subst.": 43, - "IHbevalR": 1, - "IHbevalR1": 1, - "IHbevalR2": 1, - "a.": 6, - "constructor.": 16, - "<": 76, - "remember": 12, - "IHa.": 1, - "IHa1.": 1, - "IHa2.": 1, - "silly_presburger_formula": 1, - "<=>": 12, - "3": 2, - "omega": 7, - "Id": 7, - "id": 7, - "id.": 1, - "beq_id": 14, - "id1": 2, - "id2": 2, - "beq_id_refl": 1, - "i.": 2, - "beq_nat_refl.": 1, - "beq_id_eq": 4, - "i2.": 8, - "i1.": 3, - "beq_nat_eq": 2, - "beq_id_false_not_eq": 1, - "C.": 3, - "n0": 5, - "beq_false_not_eq": 1, - "not_eq_beq_id_false": 1, - "not_eq_beq_false.": 1, - "beq_nat_sym": 2, - "AId": 4, - "com_cases": 1, - "SKIP": 5, - "IFB": 4, - "WHILE": 5, - "c1": 14, - "c2": 9, - "e3": 1, - "cl": 1, - "st": 113, - "E_IfTrue": 2, - "THEN": 3, - "ELSE": 3, - "FI": 3, - "E_WhileEnd": 2, - "DO": 4, - "END": 4, - "E_WhileLoop": 2, - "ceval_cases": 1, - "E_Skip": 1, - "E_Ass": 1, - "E_Seq": 1, - "E_IfFalse": 1, - "assignment": 1, - "command": 2, - "if": 10, - "st1": 2, - "IHi1": 3, - "Heqst1": 1, - "Hceval.": 4, - "Hceval": 2, - "assumption.": 61, - "bval": 2, - "ceval_step": 3, - "Some": 21, - "ceval_step_more": 7, - "x1.": 3, - "omega.": 7, - "x2.": 2, - "IHHce.": 2, - "%": 3, - "IHHce1.": 1, - "IHHce2.": 1, - "x0": 14, - "plus2": 1, - "nx": 3, - "Y": 38, - "ny": 2, - "XtimesYinZ": 1, - "Z": 11, - "ny.": 1, - "loop": 2, - "contra.": 19, - "loopdef.": 1, - "Heqloopdef.": 8, - "contra1.": 1, - "IHcontra2.": 1, - "no_whiles": 15, - "com": 5, - "ct": 2, - "cf": 2, - "no_Whiles": 10, - "noWhilesSKIP": 1, - "noWhilesAss": 1, - "noWhilesSeq": 1, - "noWhilesIf": 1, - "no_whiles_eqv": 1, - "noWhilesSKIP.": 1, - "noWhilesAss.": 1, - "noWhilesSeq.": 1, - "IHc1.": 2, - "auto.": 47, - "eauto": 10, - "andb_true_elim1": 4, - "IHc2.": 2, - "andb_true_elim2": 4, - "noWhilesIf.": 1, - "andb_true_intro.": 2, - "no_whiles_terminate": 1, - "state": 6, - "st.": 7, - "update": 2, - "IHc1": 2, - "IHc2": 2, - "H5.": 1, - "x1": 11, - "r": 11, - "r.": 3, - "symmetry": 4, - "Heqr.": 1, - "H4.": 2, - "s": 13, - "Heqr": 3, - "H8.": 1, - "H10": 1, - "assumption": 10, - "beval_short_circuit": 5, - "beval_short_circuit_eqv": 1, - "sinstr": 8, - "SPush": 8, - "SLoad": 6, - "SPlus": 10, - "SMinus": 11, - "SMult": 11, - "sinstr.": 1, - "s_execute": 21, - "stack": 7, - "prog": 2, - "cons": 26, - "al": 3, - "bl": 3, - "s_execute1": 1, - "empty_state": 2, - "s_execute2": 1, - "s_compile": 36, - "v": 28, - "s_compile1": 1, - "execute_theorem": 1, - "other": 20, - "other.": 4, - "app_ass.": 6, - "s_compile_correct": 1, - "app_nil_end.": 1, - "execute_theorem.": 1, - "Eqdep_dec.": 1, - "Arith.": 2, - "eq_rect_eq_nat": 2, - "Q": 3, - "eq_rect": 3, - "h.": 1, - "K_dec_set": 1, - "eq_nat_dec.": 1, - "Scheme": 1, - "le_ind": 1, - "replace": 4, - "le_n": 4, - "fun": 17, - "refl_equal": 4, - "pattern": 2, - "case": 2, - "trivial.": 14, - "contradiction": 8, - "le_Sn_n": 5, - "le_S": 6, - "Heq": 8, - "m0": 1, - "HeqS": 3, - "injection": 4, - "HeqS.": 2, - "eq_rect_eq_nat.": 1, - "IHp": 2, - "dep_pair_intro": 2, - "Hx": 20, - "Hy": 14, - "<=n),>": 1, - "x=": 1, - "exist": 7, - "Hy.": 3, - "Heq.": 6, - "le_uniqueness_proof": 1, - "Hy0": 1, - "card": 2, - "f": 108, - "card_interval": 1, - "<=n}>": 1, - "proj1_sig": 1, - "proj2_sig": 1, - "Hp": 5, - "Hq": 3, - "Hpq.": 1, - "Hmn.": 1, - "Hmn": 1, - "interval_dec": 1, - "left.": 3, - "dep_pair_intro.": 3, - "right.": 9, - "discriminate": 3, - "le_Sn_le": 2, - "eq_S.": 1, - "Hneq.": 2, - "card_inj_aux": 1, - "g": 6, - "False.": 1, - "Hfbound": 1, - "Hfinj": 1, - "Hgsurj.": 1, - "Hgsurj": 3, - "Hfx": 2, - "le_n_O_eq.": 2, - "Hfbound.": 2, - "Hx.": 5, - "le_lt_dec": 9, - "xSn": 21, - "then": 9, - "else": 9, - "is": 4, - "bounded": 1, - "injective": 6, - "Hlefx": 1, - "Hgefx": 1, - "Hlefy": 1, - "Hgefy": 1, - "Hfinj.": 3, - "sym_not_eq.": 2, - "Heqf.": 2, - "Hneqy.": 2, - "le_lt_trans": 2, - "le_O_n.": 2, - "le_neq_lt": 2, - "Hneqx.": 2, - "pred_inj.": 1, - "lt_O_neq": 2, - "neq_dep_intro": 2, - "inj_restrict": 1, - "Heqf": 1, - "surjective": 1, - "Hlep.": 3, - "Hle": 1, - "Hlt": 3, - "Hfsurj": 2, - "le_n_S": 1, - "Hlep": 4, - "Hneq": 7, - "Heqx.": 2, - "Heqx": 4, - "Hle.": 1, - "le_not_lt": 1, - "lt_trans": 4, - "lt_n_Sn.": 1, - "Hlt.": 1, - "lt_irrefl": 2, - "lt_le_trans": 1, - "pose": 2, - "let": 3, - "Hneqx": 1, - "Hneqy": 1, - "Heqg": 1, - "Hdec": 3, - "Heqy": 1, - "Hginj": 1, - "HSnx.": 1, - "HSnx": 1, - "interval_discr": 1, - "<=m}>": 1, - "card_inj": 1, - "interval_dec.": 1, - "card_interval.": 2, - "Basics.": 2, - "NatList.": 2, - "natprod": 5, - "pair": 7, - "natprod.": 1, - "fst": 3, - "snd": 3, - "swap_pair": 1, - "surjective_pairing": 1, - "count": 7, - "remove_one": 3, - "test_remove_one1": 1, - "remove_all": 2, - "bag": 3, - "app_ass": 1, - "l3": 12, - "natlist": 7, - "l3.": 1, - "remove_decreases_count": 1, - "s.": 4, - "ble_n_Sn.": 1, - "IHs.": 2, - "natoption": 5, - "None": 9, - "natoption.": 1, - "index": 3, - "option_elim": 2, - "hd_opt": 8, - "test_hd_opt1": 2, - "None.": 2, - "test_hd_opt2": 2, - "option_elim_hd": 1, - "head": 1, - "beq_natlist": 5, - "v1": 7, - "r1": 2, - "v2": 2, - "r2": 2, - "test_beq_natlist1": 1, - "test_beq_natlist2": 1, - "beq_natlist_refl": 1, - "IHl.": 7, - "silly1": 1, - "eq1": 6, - "eq2.": 9, - "eq2": 1, - "silly2a": 1, - "eq1.": 5, - "silly_ex": 1, - "silly3": 1, - "symmetry.": 2, - "rev_exercise": 1, - "rev_involutive.": 1, - "Setoid": 1, - "Compare_dec": 1, - "ListNotations.": 1, - "Implicit": 15, - "Arguments.": 2, - "Permutation.": 2, - "Permutation": 38, - "perm_nil": 1, - "perm_skip": 1, - "Local": 7, - "Constructors": 3, - "Permutation_nil": 2, - "HF.": 3, - "@nil": 1, - "HF": 2, - "||": 1, - "Permutation_nil_cons": 1, - "discriminate.": 2, - "Permutation_refl": 1, - "Permutation_sym": 1, - "Hperm": 7, - "perm_trans": 1, - "Permutation_trans": 4, - "Logic.eq": 2, - "@Permutation": 5, - "iff": 1, - "@In": 1, - "red": 6, - "Permutation_in.": 2, - "Permutation_app_tail": 2, - "tl": 8, - "eapply": 8, - "Permutation_app_head": 2, - "app_comm_cons": 5, - "Permutation_app": 3, - "Hpermmm": 1, - "idtac": 1, - "Global": 5, - "@app": 1, - "Permutation_app.": 1, - "Permutation_add_inside": 1, - "Permutation_cons_append": 1, - "IHl": 8, - "Permutation_cons_append.": 3, - "Permutation_app_comm": 3, - "app_nil_r": 1, - "app_assoc": 2, - "Permutation_cons_app": 3, - "Permutation_middle": 2, - "Permutation_rev": 3, - "rev": 7, - "1": 1, - "@rev": 1, - "2": 1, - "Permutation_length": 2, - "length": 21, - "transitivity": 4, - "@length": 1, - "Permutation_length.": 1, - "Permutation_ind_bis": 2, - "Hnil": 1, - "Hskip": 3, - "Hswap": 2, - "Htrans.": 1, - "Htrans": 1, - "eauto.": 7, - "Ltac": 1, - "break_list": 5, - "Permutation_nil_app_cons": 1, - "l4": 3, - "P.": 5, - "IH": 3, - "Permutation_middle.": 3, - "perm_swap.": 2, - "perm_swap": 1, - "eq_refl": 2, - "In_split": 1, - "Permutation_app_inv": 1, - "NoDup": 4, - "incl": 3, - "N.": 1, - "E": 7, - "Ha": 6, - "In": 6, - "N": 1, - "Hal": 1, - "Hl": 1, - "exfalso.": 1, - "NoDup_Permutation_bis": 2, - "inversion_clear": 6, - "intuition.": 2, - "Permutation_NoDup": 1, - "Permutation_map": 1, - "Hf": 15, - "injective_bounded_surjective": 1, - "set": 1, - "seq": 2, - "map": 4, - "x.": 3, - "in_map_iff.": 2, - "in_seq": 4, - "arith": 4, - "NoDup_cardinal_incl": 1, - "injective_map_NoDup": 2, - "seq_NoDup": 1, - "map_length": 1, - "by": 7, - "in_map_iff": 1, - "split": 14, - "nat_bijection_Permutation": 1, - "BD.": 1, - "seq_NoDup.": 1, - "map_length.": 1, - "Injection": 1, - "Permutation_alt": 1, - "Alternative": 1, - "characterization": 1, - "of": 4, - "via": 1, - "nth_error": 7, - "and": 1, - "nth": 2, - "adapt": 4, - "adapt_injective": 1, - "adapt.": 2, - "EQ.": 2, - "LE": 11, - "LT": 14, - "eq_add_S": 2, - "Hf.": 1, - "Lt.le_lt_or_eq": 3, - "LE.": 3, - "EQ": 8, - "lt": 3, - "LT.": 5, - "Lt.S_pred": 3, - "Lt.lt_not_le": 2, - "adapt_ok": 2, - "nth_error_app1": 1, - "nth_error_app2": 1, - "arith.": 8, - "Minus.minus_Sn_m": 1, - "Permutation_nth_error": 2, - "IHP": 2, - "IHP2": 1, - "Hg": 2, - "E.": 2, - "L12": 2, - "app_length.": 2, - "plus_n_Sm.": 1, - "adapt_injective.": 1, - "nth_error_None": 4, - "Hn": 1, - "Hf2": 1, - "Hf3": 2, - "Lt.le_or_lt": 1, - "Lt.lt_irrefl": 2, - "Lt.lt_le_trans": 2, - "Hf1": 1, - "do": 4, - "congruence.": 1, - "Permutation_alt.": 1, - "Permutation_app_swap": 1, - "only": 3, - "parsing": 3, - "Omega": 1, - "SetoidList.": 1, - "nil.": 2, - "..": 4, - "Permut.": 1, - "eqA_equiv": 1, - "eqA.": 1, - "list_contents_app": 5, - "permut_refl": 1, - "permut_sym": 4, - "permut_trans": 5, - "permut_cons_eq": 3, - "meq_left": 1, - "meq_singleton": 1, - "permut_cons": 5, - "permut_app": 1, - "specialize": 6, - "a0.": 1, - "decide": 1, - "permut_add_inside_eq": 1, - "permut_add_cons_inside": 3, - "permut_add_inside": 1, - "permut_middle": 1, - "permut_refl.": 5, - "permut_sym_app": 1, - "permut_rev": 1, - "permut_add_cons_inside.": 1, - "app_nil_end": 1, - "results": 1, - "permut_conv_inv": 1, - "plus_reg_l.": 1, - "permut_app_inv1": 1, - "list_contents_app.": 1, - "plus_reg_l": 1, - "multiplicity": 6, - "Fact": 3, - "if_eqA_then": 1, - "B": 6, - "if_eqA_refl": 3, - "decide_left": 1, - "if_eqA": 1, - "contradict": 3, - "A1": 2, - "if_eqA_rewrite_r": 1, - "A2": 4, - "Hxx": 1, - "multiplicity_InA": 4, - "InA": 8, - "multiplicity_InA_O": 2, - "multiplicity_InA_S": 1, - "multiplicity_NoDupA": 1, - "NoDupA": 3, - "NEQ": 1, - "compatible": 1, - "permut_InA_InA": 3, - "multiplicity_InA.": 1, - "meq.": 2, - "permut_cons_InA": 3, - "permut_nil": 3, - "Abs": 2, - "permut_length_1": 1, - "permut_length_2": 1, - "permut_length_1.": 2, - "@if_eqA_rewrite_l": 2, - "permut_length": 1, - "InA_split": 1, - "h2": 1, - "plus_n_Sm": 1, - "f_equal.": 1, - "app_length": 1, - "IHl1": 1, - "permut_remove_hd": 1, - "f_equal": 1, - "if_eqA_rewrite_l": 1, - "NoDupA_equivlistA_permut": 1, - "Equivalence_Reflexive.": 1, - "change": 1, - "Equivalence_Reflexive": 1, - "Forall2": 2, - "permutation_Permutation": 1, - "Forall2.": 1, - "proof": 1, - "IHA": 2, - "Forall2_app_inv_r": 1, - "Hl1": 1, - "Hl2": 1, - "Forall2_app": 1, - "Forall2_cons": 1, - "Permutation_impl_permutation": 1, - "permut_eqA": 1, - "Permut_permut.": 1, - "permut_right": 1, - "permut_tran": 1, - "Lists.": 1, - "X.": 4, - "app": 5, - "snoc": 9, - "Arguments": 11, - "list123": 1, - "right": 2, - "test_repeat1": 1, - "nil_app": 1, - "rev_snoc": 1, - "snoc_with_append": 1, - "v.": 1, - "IHl1.": 1, - "prod": 3, - "Y.": 1, - "type_scope.": 1, - "combine": 3, - "lx": 4, - "ly": 4, - "tx": 2, - "ty": 7, - "tp": 2, - "option": 6, - "xs": 7, - "plus3": 2, - "prod_curry": 3, - "prod_uncurry": 3, - "uncurry_uncurry": 1, - "curry_uncurry": 1, - "filter": 3, - "test": 4, - "countoddmembers": 1, - "k": 7, - "fmostlytrue": 5, - "override": 5, - "ftrue": 1, - "override_example1": 1, - "override_example2": 1, - "override_example3": 1, - "override_example4": 1, - "override_example": 1, - "constfun": 1, - "unfold_example_bad": 1, - "plus3.": 1, - "override_eq": 1, - "f.": 1, - "override.": 2, - "override_neq": 1, - "x2": 3, - "k1": 5, - "k2": 4, - "eq.": 11, - "silly4": 1, - "silly5": 1, - "sillyex1": 1, - "j": 6, - "j.": 1, - "silly6": 1, - "silly7": 1, - "sillyex2": 1, - "assertion": 3, - "Hl.": 1, - "eq": 4, - "beq_nat_O_l": 1, - "beq_nat_O_r": 1, - "double_injective": 1, - "double": 2, - "fold_map": 2, - "fold": 1, - "total": 2, - "fold_map_correct": 1, - "fold_map.": 1, - "forallb": 4, - "existsb": 3, - "existsb2": 2, - "existsb_correct": 1, - "existsb2.": 1, - "index_okx": 1, - "mumble": 5, - "mumble.": 1, - "grumble": 3, - "Logic.": 1, - "Prop.": 1, - "partial_function": 6, - "R": 54, - "y1": 6, - "y2": 5, - "y2.": 3, - "next_nat_partial_function": 1, - "next_nat.": 1, - "partial_function.": 5, - "Q.": 2, - "le_not_a_partial_function": 1, - "le": 1, - "not.": 3, - "Nonsense.": 4, - "le_n.": 6, - "le_S.": 4, - "total_relation_not_partial_function": 1, - "total_relation": 1, - "total_relation1.": 2, - "empty_relation_not_partial_funcion": 1, - "empty_relation.": 1, - "reflexive": 5, - "le_reflexive": 1, - "le.": 4, - "reflexive.": 1, - "transitive": 8, - "le_trans": 4, - "Hnm": 3, - "Hmo.": 4, - "Hnm.": 3, - "IHHmo.": 1, - "lt.": 2, - "transitive.": 1, - "Hm": 1, - "le_S_n": 2, - "Sn_le_Sm__n_le_m.": 1, - "not": 1, - "TODO": 1, - "Hmo": 1, - "symmetric": 2, - "antisymmetric": 3, - "le_antisymmetric": 1, - "Sn_le_Sm__n_le_m": 2, - "IHb": 1, - "equivalence": 1, - "order": 2, - "preorder": 1, - "le_order": 1, - "order.": 1, - "le_reflexive.": 1, - "le_antisymmetric.": 1, - "le_trans.": 1, - "clos_refl_trans": 8, - "rt_step": 1, - "rt_refl": 1, - "rt_trans": 3, - "next_nat_closure_is_le": 1, - "next_nat": 1, - "rt_refl.": 2, - "IHle.": 1, - "rt_step.": 2, - "nn.": 1, - "IHclos_refl_trans1.": 2, - "IHclos_refl_trans2.": 2, - "refl_step_closure": 11, - "rsc_refl": 1, - "rsc_step": 4, - "rsc_R": 2, - "rsc_refl.": 4, - "rsc_trans": 4, - "IHrefl_step_closure": 1, - "rtc_rsc_coincide": 1, - "IHrefl_step_closure.": 1, - "Imp.": 1, - "Relations.": 1, - "tm": 43, - "tm_const": 45, - "tm_plus": 30, - "tm.": 3, - "SimpleArith0.": 2, - "eval": 8, - "SimpleArith1.": 2, - "E_Const": 2, - "E_Plus": 2, - "test_step_1": 1, - "ST_Plus1.": 2, - "ST_PlusConstConst.": 3, - "test_step_2": 1, - "ST_Plus2.": 2, - "step_deterministic": 1, - "step.": 3, - "Hy1": 2, - "Hy2.": 2, - "step_cases": 4, - "Hy2": 3, - "SCase.": 3, - "Hy1.": 5, - "IHHy1": 2, - "SimpleArith2.": 1, - "value": 25, - "v_const": 4, - "step": 9, - "ST_PlusConstConst": 3, - "ST_Plus1": 2, - "strong_progress": 2, - "value_not_same_as_normal_form": 2, - "normal_form": 3, - "t.": 4, - "normal_form.": 2, - "v_funny.": 1, - "Temp1.": 1, - "Temp2.": 1, - "ST_Funny": 1, - "Temp3.": 1, - "Temp4.": 2, - "tm_true": 8, - "tm_false": 5, - "tm_if": 10, - "v_true": 1, - "v_false": 1, - "tm_false.": 3, - "ST_IfTrue": 1, - "ST_IfFalse": 1, - "ST_If": 1, - "t3": 6, - "bool_step_prop4": 1, - "bool_step_prop4_holds": 1, - "bool_step_prop4.": 2, - "ST_ShortCut.": 1, - "IHt1.": 1, - "t2.": 4, - "t3.": 2, - "ST_If.": 2, - "Temp5.": 1, - "stepmany": 4, - "normalizing": 1, - "IHt2": 3, - "H11": 2, - "H12": 2, - "H21": 3, - "H22": 2, - "nf_same_as_value": 3, - "H12.": 1, - "H22.": 1, - "H11.": 1, - "stepmany_congr_1": 1, - "stepmany_congr2": 1, - "eval__value": 1, - "HE.": 1, - "eval_cases": 1, - "HE": 1, - "v_const.": 1, - "Sorted.": 1, - "Mergesort.": 1, - "STLC.": 1, - "ty_Bool": 10, - "ty_arrow": 7, - "ty.": 2, - "tm_var": 6, - "tm_app": 7, - "tm_abs": 9, - "idB": 2, - "idBB": 2, - "idBBBB": 2, - "v_abs": 1, - "t_true": 1, - "t_false": 1, - "value.": 1, - "ST_App2": 1, - "step_example3": 1, - "idB.": 1, - "rsc_step.": 2, - "ST_App1.": 2, - "ST_AppAbs.": 3, - "v_abs.": 2, - "context": 1, - "partial_map": 4, - "Context.": 1, - "empty": 3, - "extend": 1, - "Gamma": 10, - "has_type": 4, - "appears_free_in": 1, - "S.": 1, - "HT": 1, - "T_Var.": 1, - "extend_neq": 1, - "Heqe.": 3, - "T_Abs.": 1, - "context_invariance...": 2, - "Hafi.": 2, - "extend.": 2, - "IHt.": 1, - "Coiso1.": 2, - "Coiso2.": 3, - "HeqCoiso1.": 1, - "HeqCoiso2.": 1, - "beq_id_false_not_eq.": 1, - "ex_falso_quodlibet.": 1, - "preservation": 1, - "HT.": 1, - "substitution_preserves_typing": 1, - "T11.": 4, - "HT1.": 1, - "T_App": 2, - "IHHT1.": 1, - "IHHT2.": 1, - "tm_cases": 1, - "Ht": 1, - "Ht.": 3, - "IHt1": 2, - "T11": 2, - "ST_App2.": 1, - "ty_Bool.": 1, - "IHt3": 1, - "ST_IfTrue.": 1, - "ST_IfFalse.": 1, - "types_unique": 1, - "T12": 2, - "IHhas_type.": 1, - "IHhas_type1.": 1, - "IHhas_type2.": 1 - }, - "Creole": { - "Creole": 6, - "is": 3, - "a": 2, - "-": 5, - "to": 2, - "HTML": 1, - "converter": 2, - "for": 1, - "the": 5, - "lightweight": 1, - "markup": 1, - "language": 1, - "(": 5, - "http": 4, - "//wikicreole.org/": 1, - ")": 5, - ".": 1, - "Github": 1, - "uses": 1, - "this": 1, - "render": 1, - "*.creole": 1, - "files.": 1, - "Project": 1, - "page": 1, - "on": 2, - "github": 1, - "*": 5, - "//github.com/minad/creole": 1, - "Travis": 1, - "CI": 1, - "https": 1, - "//travis": 1, - "ci.org/minad/creole": 1, - "RDOC": 1, - "//rdoc.info/projects/minad/creole": 1, - "INSTALLATION": 1, - "{": 6, - "gem": 1, - "install": 1, - "creole": 1, - "}": 6, - "SYNOPSIS": 1, - "require": 1, + "get_params": 1, + "unit": 5, + "client": 1, + "hello_popup": 2, + "Dom_html.window##alert": 1, + "Js.string": 1, + "_": 2, + "Example.register": 1, + "service": 1, + "fun": 9, + "-": 22, + "Lwt.return": 1, "html": 1, - "Creole.creolize": 1, - "BUGS": 1, - "If": 1, - "you": 1, - "found": 1, - "bug": 1, - "please": 1, - "report": 1, - "it": 1, - "at": 1, - "project": 1, - "s": 1, - "tracker": 1, - "GitHub": 1, - "//github.com/minad/creole/issues": 1, - "AUTHORS": 1, - "Lars": 2, - "Christensen": 2, - "larsch": 1, - "Daniel": 2, - "Mendler": 1, - "minad": 1, - "LICENSE": 1, - "Copyright": 1, - "c": 1, - "Mendler.": 1, - "It": 1, - "free": 1, - "software": 1, - "and": 1, - "may": 1, - "be": 1, - "redistributed": 1, - "under": 1, - "terms": 1, - "specified": 1, - "in": 1, - "README": 1, - "file": 1, - "of": 1, - "Ruby": 1, - "distribution.": 1 - }, - "Crystal": { - "SHEBANG#!bin/crystal": 2, - "require": 2, - "describe": 2, - "do": 26, - "it": 21, - "run": 14, - "(": 201, - ")": 201, - ".to_i.should": 11, - "eq": 16, - "end": 135, - ".to_f32.should": 2, - ".to_b.should": 1, - "be_true": 1, - "assert_type": 7, - "{": 7, - "int32": 8, - "}": 7, - "union_of": 1, - "char": 1, - "result": 3, - "types": 3, - "[": 9, - "]": 9, - "mod": 1, - "result.program": 1, - "foo": 3, - "mod.types": 1, - "as": 4, - "NonGenericClassType": 1, - "foo.instance_vars": 1, - ".type.should": 3, - "mod.int32": 1, - "GenericClassType": 2, - "foo_i32": 4, - "foo.instantiate": 2, - "of": 3, - "Type": 2, - "|": 8, - "ASTNode": 4, - "foo_i32.lookup_instance_var": 2, - "module": 1, - "Crystal": 1, - "class": 2, - "def": 84, - "transform": 81, - "transformer": 1, - "transformer.before_transform": 1, - "self": 77, - "node": 164, - "transformer.transform": 1, - "transformer.after_transform": 1, - "Transformer": 1, - "before_transform": 1, - "after_transform": 1, - "Expressions": 2, - "exps": 6, - "node.expressions.each": 1, - "exp": 3, - "new_exp": 3, - "exp.transform": 3, - "if": 23, - "new_exp.is_a": 1, - "exps.concat": 1, - "new_exp.expressions": 1, - "else": 2, - "<<": 1, - "exps.length": 1, - "node.expressions": 3, - "Call": 1, - "node_obj": 1, - "node.obj": 9, - "node_obj.transform": 1, - "transform_many": 23, - "node.args": 3, - "node_block": 1, - "node.block": 2, - "node_block.transform": 1, - "node_block_arg": 1, - "node.block_arg": 6, - "node_block_arg.transform": 1, - "And": 1, - "node.left": 3, - "node.left.transform": 3, - "node.right": 3, - "node.right.transform": 3, - "Or": 1, - "StringInterpolation": 1, - "ArrayLiteral": 1, - "node.elements": 1, - "node_of": 1, - "node.of": 2, - "node_of.transform": 1, - "HashLiteral": 1, - "node.keys": 1, - "node.values": 2, - "of_key": 1, - "node.of_key": 2, - "of_key.transform": 1, - "of_value": 1, - "node.of_value": 2, - "of_value.transform": 1, - "If": 1, - "node.cond": 5, - "node.cond.transform": 5, - "node.then": 3, - "node.then.transform": 3, - "node.else": 5, - "node.else.transform": 3, - "Unless": 1, - "IfDef": 1, - "MultiAssign": 1, - "node.targets": 1, - "SimpleOr": 1, - "Def": 1, - "node.body": 12, - "node.body.transform": 10, - "receiver": 2, - "node.receiver": 4, - "receiver.transform": 2, - "block_arg": 2, - "block_arg.transform": 2, - "Macro": 1, - "PointerOf": 1, - "node.exp": 3, - "node.exp.transform": 3, - "SizeOf": 1, - "InstanceSizeOf": 1, - "IsA": 1, - "node.obj.transform": 5, - "node.const": 1, - "node.const.transform": 1, - "RespondsTo": 1, - "Case": 1, - "node.whens": 1, - "node_else": 1, - "node_else.transform": 1, - "When": 1, - "node.conds": 1, - "ImplicitObj": 1, - "ClassDef": 1, - "superclass": 1, - "node.superclass": 2, - "superclass.transform": 1, - "ModuleDef": 1, - "While": 1, - "Generic": 1, - "node.name": 5, - "node.name.transform": 5, - "node.type_vars": 1, - "ExceptionHandler": 1, - "node.rescues": 1, - "node_ensure": 1, - "node.ensure": 2, - "node_ensure.transform": 1, - "Rescue": 1, - "node.types": 2, - "Union": 1, - "Hierarchy": 1, - "Metaclass": 1, - "Arg": 1, - "default_value": 1, - "node.default_value": 2, - "default_value.transform": 1, - "restriction": 1, - "node.restriction": 2, - "restriction.transform": 1, - "BlockArg": 1, - "node.fun": 1, - "node.fun.transform": 1, - "Fun": 1, - "node.inputs": 1, - "output": 1, - "node.output": 2, - "output.transform": 1, - "Block": 1, - "node.args.map": 1, - "Var": 2, - "FunLiteral": 1, - "node.def.body": 1, - "node.def.body.transform": 1, - "FunPointer": 1, - "obj": 1, - "obj.transform": 1, - "Return": 1, - "node.exps": 5, - "Break": 1, - "Next": 1, - "Yield": 1, - "scope": 1, - "node.scope": 2, - "scope.transform": 1, - "Include": 1, - "Extend": 1, - "RangeLiteral": 1, - "node.from": 1, - "node.from.transform": 1, - "node.to": 2, - "node.to.transform": 2, - "Assign": 1, - "node.target": 1, - "node.target.transform": 1, - "node.value": 3, - "node.value.transform": 3, - "Nop": 1, - "NilLiteral": 1, - "BoolLiteral": 1, - "NumberLiteral": 1, - "CharLiteral": 1, - "StringLiteral": 1, - "SymbolLiteral": 1, - "RegexLiteral": 1, - "MetaVar": 1, - "InstanceVar": 1, - "ClassVar": 1, - "Global": 1, - "Require": 1, - "Path": 1, - "Self": 1, - "LibDef": 1, - "FunDef": 1, + "head": 1, + "title": 1, + "pcdata": 4, "body": 1, - "body.transform": 1, - "TypeDef": 1, - "StructDef": 1, - "UnionDef": 1, - "EnumDef": 1, - "ExternalVar": 1, - "IndirectRead": 1, - "IndirectWrite": 1, - "TypeOf": 1, - "Primitive": 1, - "Not": 1, - "TypeFilteredNode": 1, - "TupleLiteral": 1, - "Cast": 1, - "DeclareVar": 1, - "node.var": 1, - "node.var.transform": 1, - "node.declared_type": 1, - "node.declared_type.transform": 1, - "Alias": 1, - "TupleIndexer": 1, - "Attribute": 1, - "exps.map": 1 + "h1": 1, + ";": 14, + "p": 1, + "h2": 1, + "a": 4, + "a_onclick": 1, + "type": 2, + "Ops": 2, + "@": 6, + "f": 10, + "k": 21, + "|": 15, + "x": 14, + "List": 1, + "rec": 3, + "map": 3, + "l": 8, + "match": 4, + "with": 4, + "hd": 6, + "tl": 6, + "fold": 2, + "acc": 5, + "Option": 1, + "opt": 2, + "None": 5, + "Some": 5, + "Lazy": 1, + "option": 1, + "mutable": 1, + "waiters": 5, + "make": 1, + "push": 4, + "cps": 7, + "value": 3, + "force": 1, + "l.value": 2, + "when": 1, + "l.waiters": 5, + "<->": 3, + "function": 1, + "Base.List.iter": 1, + "l.push": 1, + "<": 1, + "get_state": 1, + "lazy_from_val": 1 + }, + "Nimrod": { + "echo": 1 + }, + "Grammatical Framework": { + "-": 594, + "#": 14, + "path": 14, + ".": 13, + "present": 7, + "(": 256, + "c": 73, + ")": 256, + "Aarne": 13, + "Ranta": 13, + "under": 33, + "LGPL": 33, + "concrete": 33, + "FoodsSwe": 1, + "of": 89, + "Foods": 34, + "FoodsI": 6, + "with": 5, + "Syntax": 7, + "SyntaxSwe": 2, + "LexFoods": 12, + "LexFoodsSwe": 2, + "**": 1, + "{": 579, + "flags": 32, + "language": 2, + "sv_SE": 1, + ";": 1399, + "}": 580, + "FoodsEng": 1, + "en_US": 1, + "lincat": 28, + "Comment": 31, + "Quality": 34, + "s": 365, + "Str": 394, + "Kind": 33, + "Number": 207, + "Item": 31, + "n": 206, + "lin": 28, + "Pred": 30, + "item": 36, + "quality": 90, + "item.s": 24, + "+": 480, + "copula": 33, + "item.n": 29, + "quality.s": 50, + "This": 29, + "det": 86, + "Sg": 184, + "That": 29, + "These": 28, + "Pl": 182, + "Those": 28, + "Mod": 29, + "kind": 115, + "kind.s": 46, + "Wine": 29, + "regNoun": 38, + "Cheese": 29, + "Fish": 29, + "noun": 51, + "Pizza": 28, + "Very": 29, + "a": 57, + "a.s": 8, + "Fresh": 29, + "adj": 38, + "Warm": 29, + "Italian": 29, + "Expensive": 29, + "Delicious": 29, + "Boring": 29, + "param": 22, + "|": 122, + "oper": 29, + "noun.s": 7, + "man": 10, + "men": 10, + "table": 148, + "car": 6, + "cold": 4, + "Shafqat": 1, + "Virk": 1, + "FoodsUrd": 1, + "coding": 29, + "utf8": 29, + "Gender": 94, + "Masc": 67, + "Fem": 65, + "coupla": 2, + "case": 44, + "g": 132, + "item.g": 12, + "kind.g": 38, + "regAdj": 61, + "x": 74, + "mkAdj": 27, + "_": 68, + "p": 11, + "f": 16, + "FoodsAmh": 1, + "interface": 1, + "open": 23, + "in": 32, + "wine_N": 7, + "N": 4, + "pizza_N": 7, + "cheese_N": 7, + "fish_N": 8, + "fresh_A": 7, + "A": 6, + "warm_A": 8, + "italian_A": 7, + "expensive_A": 7, + "delicious_A": 7, + "boring_A": 7, + "FoodsSpa": 1, + "SyntaxSpa": 1, + "StructuralSpa": 1, + "ParadigmsSpa": 1, + "Utt": 4, + "NP": 4, + "CN": 4, + "AP": 4, + "mkUtt": 4, + "mkCl": 4, + "mkNP": 16, + "this_QuantSg": 2, + "that_QuantSg": 2, + "these_QuantPl": 2, + "those_QuantPl": 2, + "mkCN": 20, + "mkAP": 28, + "very_AdA": 4, + "mkN": 46, + "mkA": 47, + "../foods": 1, + "FoodsFre": 1, + "SyntaxFre": 1, + "ParadigmsFre": 1, + "masculine": 4, + "feminine": 2, + "incomplete": 1, + "this_Det": 2, + "that_Det": 2, + "these_Det": 2, + "those_Det": 2, + "Femke": 1, + "Johansson": 1, + "FoodsDut": 1, + "AForm": 4, + "APred": 8, + "AAttr": 3, + "regadj": 6, + "wijn": 3, + "koud": 3, + "duur": 2, + "dure": 2, + "/GF/lib/src/prelude": 1, + "Nyamsuren": 1, + "Erdenebadrakh": 1, + "FoodsMon": 1, + "Prelude": 11, + "SS": 6, + "ss": 13, + "prefixSS": 1, + "d": 6, + "cn": 11, + "cn.s": 8, + "John": 1, + "J.": 1, + "Camilleri": 1, + "FoodsMlt": 1, + "qual": 8, + "qual.s": 8, + "adjective": 22, + "uniAdj": 2, + "Create": 6, + "an": 2, + "full": 1, + "function": 1, + "Params": 4, + "Sing": 4, + "Plural": 2, + "iswed": 2, + "sewda": 2, + "suwed": 3, + "regular": 2, + "Param": 2, + "frisk": 4, + "eg": 1, + "tal": 1, + "buzz": 1, + "uni": 4, + "Singular": 1, + "inherent": 1, + "ktieb": 2, + "kotba": 2, + "Copula": 1, + "is": 6, + "linking": 1, + "verb": 1, + "article": 3, + "taking": 1, + "into": 1, + "account": 1, + "first": 1, + "letter": 1, + "next": 1, + "word": 3, + "pre": 1, + "cons@": 1, + "cons": 1, + "determinant": 1, + "Sg/Pl": 1, + "m": 9, + "cn.g": 10, + "string": 1, + "default": 1, + "to": 6, + "masc": 3, + "gender": 2, + "number": 2, + "alltenses": 3, + "Laurette": 2, + "Pretorius": 2, + "Sr": 2, + "&": 2, + "Jr": 2, + "and": 4, + "Ansu": 2, + "Berg": 2, + "FoodsTsn": 1, + "Predef": 3, + "NounClass": 28, + "w": 15, + "r": 9, + "q": 10, + "b": 9, + "Bool": 5, + "p_form": 18, + "t": 28, + "TType": 16, + "mkPredDescrCop": 2, + "quality.t": 3, + "item.c": 1, + "quality.p_form": 1, + "kind.w": 4, + "mkDemPron1": 3, + "kind.c": 11, + "kind.q": 4, + "mkDemPron2": 3, + "mkMod": 2, + "Lexicon": 1, + "mkNounNC14_6": 2, + "mkNounNC9_10": 4, + "smartVery": 2, + "mkVarAdj": 2, + "mkOrdAdj": 4, + "mkPerAdj": 2, + "mkVerbRel": 2, + "NC9_10": 14, + "NC14_6": 14, + "P": 4, + "V": 4, + "ModV": 4, + "R": 4, + "y": 3, + "y.b": 1, + "True": 3, + "y.w": 2, + "y.r": 2, + "y.c": 14, + "y.q": 4, + "smartQualRelPart": 5, + "x.t": 10, + "smartDescrCop": 5, + "x.s": 8, + "False": 3, + "mkVeryAdj": 2, + "x.p_form": 2, + "mkVeryVerb": 3, + "mkQualRelPart_PName": 2, + "mkQualRelPart": 2, + "mkDescrCop_PName": 2, + "mkDescrCop": 2, + "../lib/src/prelude": 1, + "Zofia": 1, + "Stankiewicz": 1, + "FoodsJpn": 1, + "Style": 3, + "AdjUse": 4, + "AdjType": 4, + "IAdj": 4, + "Plain": 3, + "Polite": 4, + "NaAdj": 4, + "Attr": 9, + "na": 1, + "adjectives": 2, + "have": 2, + "different": 1, + "forms": 2, + "as": 2, + "attributes": 1, + "predicates": 2, + "for": 6, + "phrase": 1, + "types": 1, + "can": 1, + "form": 4, + "without": 1, + "the": 7, + "cannot": 1, + "sakana": 6, + "chosenna": 2, + "chosen": 2, + "akai": 2, + "FoodsIta": 1, + "SyntaxIta": 2, + "LexFoodsIta": 2, + "instance": 5, + "LexFoodsGer": 2, + "SyntaxGer": 2, + "ParadigmsGer": 1, + "Jordi": 2, + "Saludes": 2, + "LexFoodsCat": 2, + "SyntaxCat": 2, + "ParadigmsCat": 1, + "M": 1, + "MorphoCat": 1, + "M.Masc": 2, + "FoodsCat": 1, + "Vikash": 1, + "Rauniyar": 1, + "FoodsHin": 2, + "regN": 15, + "lark": 8, + "ms": 4, + "mp": 4, + "acch": 6, + "Krasimir": 1, + "Angelov": 1, + "FoodsBul": 1, + "Neutr": 21, + "Agr": 3, + "ASg": 23, + "APl": 11, + "item.a": 2, + "Katerina": 2, + "Bohmova": 2, + "FoodsCze": 1, + "ResCze": 2, + "Adjective": 9, + "Noun": 9, + "NounPhrase": 3, + "regnfAdj": 2, + "Dinesh": 1, + "Simkhada": 1, + "FoodsNep": 1, + "adjPl": 2, + "bor": 2, + "FoodsOri": 1, + "FoodsAfr": 1, + "AdjAP": 10, + "Predic": 3, + "declNoun_e": 2, + "declNoun_aa": 2, + "declNoun_ss": 2, + "declNoun_s": 2, + "veryAdj": 2, + "smartAdj_e": 4, + "operations": 2, + "wyn": 1, + "kaas": 1, + "vis": 1, + "pizza": 1, + "let": 8, + "v": 6, + "tk": 1, + "last": 3, + "declAdj_e": 2, + "declAdj_g": 2, + "init": 4, + "declAdj_oog": 2, + "i": 2, + "FoodsFin": 1, + "SyntaxFin": 2, + "LexFoodsFin": 2, + "Julia": 1, + "Hammar": 1, + "FoodsEpo": 1, + "vino": 3, + "nova": 3, + "FoodsChi": 1, + "quality.p": 2, + "geKind": 5, + "longQuality": 8, + "mkKind": 2, + "Dana": 1, + "Dannells": 1, + "Licensed": 1, + "FoodsHeb": 2, + "Species": 8, + "mod": 7, + "Modified": 5, + "sp": 11, + "Indef": 6, + "Def": 21, + "T": 2, + "regAdj2": 3, + "F": 2, + "Type": 9, + "Adj": 4, + "cn.mod": 2, + "gvina": 6, + "hagvina": 3, + "gvinot": 6, + "hagvinot": 3, + "defH": 7, + "replaceLastLetter": 7, + "tov": 6, + "tova": 3, + "tovim": 3, + "tovot": 3, + "c@": 3, + "italki": 3, + "italk": 4, + "resource": 1, + "ne": 2, + "muz": 2, + "muzi": 2, + "msg": 3, + "fsg": 3, + "nsg": 3, + "mpl": 3, + "fpl": 3, + "npl": 3, + "mlad": 7, + "vynikajici": 7, + "ParadigmsFin": 1, + "prelude": 2, + "Martha": 1, + "Dis": 1, + "Brandt": 1, + "FoodsIce": 1, + "Defin": 9, + "Ind": 14, + "more": 1, + "commonly": 1, + "used": 2, + "Iceland": 1, + "but": 1, + "Icelandic": 1, + "it": 2, + "defOrInd": 2, + "order": 1, + "given": 1, + "mSg": 1, + "fSg": 1, + "nSg": 1, + "mPl": 1, + "fPl": 1, + "nPl": 1, + "mSgDef": 1, + "f/nSgDef": 1, + "_PlDef": 1, + "fem": 2, + "neutr": 2, + "x1": 3, + "x9": 1, + "ferskur": 5, + "fersk": 11, + "ferskt": 2, + "ferskir": 2, + "ferskar": 2, + "fersk_pl": 2, + "ferski": 2, + "ferska": 2, + "fersku": 2, + "": 1, + "<": 10, + "Predef.tk": 2, + "FoodsPes": 1, + "optimize": 1, + "noexpand": 1, + "Add": 8, + "prep": 11, + "Indep": 4, + "kind.prep": 1, + "quality.prep": 1, + "at": 3, + "a.prep": 1, + "must": 1, + "be": 1, + "written": 1, + "x4": 2, + "pytzA": 3, + "pytzAy": 1, + "pytzAhA": 3, + "pr": 4, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "mrd": 8, + "tAzh": 8, + "tAzhy": 2, + "Ramona": 1, + "Enache": 1, + "FoodsRon": 1, + "NGender": 6, + "NMasc": 2, + "NFem": 3, + "NNeut": 2, + "mkTab": 5, + "mkNoun": 5, + "getAgrGender": 3, + "acesta": 2, + "aceasta": 2, + "gg": 3, + "noun.g": 3, + "det.s": 1, + "peste": 2, + "pesti": 2, + "scump": 2, + "scumpa": 2, + "scumpi": 2, + "scumpe": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "ng": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "ParadigmsSwe": 1, + "Rami": 1, + "Shashati": 1, + "FoodsPor": 1, + "mkAdjReg": 7, + "QualityT": 5, + "bonito": 2, + "bonita": 2, + "bonitos": 2, + "bonitas": 2, + "pattern": 1, + "adjSozinho": 2, + "sozinho": 3, + "sozinh": 4, + "independent": 1, + "adjUtil": 2, + "util": 3, + "uteis": 3, + "smart": 1, + "paradigm": 1, + "adjcetives": 1, + "ItemT": 2, + "KindT": 4, + "num": 6, + "animal": 2, + "animais": 2, + "gen": 4, + "carro": 3, + "FoodsGer": 1, + "FoodsTur": 1, + "Case": 10, + "softness": 4, + "Softness": 5, + "h": 4, + "Harmony": 5, + "Reason": 1, + "excluding": 1, + "plural": 3, + "In": 1, + "Turkish": 1, + "if": 1, + "subject": 1, + "not": 2, + "human": 2, + "being": 1, + "then": 1, + "singular": 1, + "regardless": 1, + "subject.": 1, + "Since": 1, + "all": 1, + "possible": 1, + "subjects": 1, + "are": 1, + "non": 1, + "do": 1, + "need": 1, + "form.": 1, + "quality.softness": 1, + "quality.h": 1, + "quality.c": 1, + "Nom": 9, + "Gen": 5, + "a.c": 1, + "a.softness": 1, + "a.h": 1, + "I_Har": 4, + "Ih_Har": 4, + "U_Har": 4, + "Uh_Har": 4, + "Ih": 1, + "Uh": 1, + "Soft": 3, + "Hard": 3, + "overload": 1, + "mkn": 1, + "peynir": 2, + "peynirler": 2, + "[": 2, + "]": 2, + "sarap": 2, + "saraplar": 2, + "sarabi": 2, + "saraplari": 2, + "italyan": 4, + "ca": 2, + "getSoftness": 2, + "getHarmony": 2, + "See": 1, + "comment": 1, + "lines": 1, + "excluded": 1, + "copula.": 1, + "base": 4, + "*": 1, + "abstract": 1, + "startcat": 1, + "cat": 1, + "fun": 1, + "Inese": 1, + "Bernsone": 1, + "FoodsLav": 1, + "Q": 5, + "Q1": 5, + "spec": 2, + "Q2": 3, + "specAdj": 2, + "skaists": 5, + "skaista": 2, + "skaisti": 2, + "skaistas": 2, + "skaistais": 2, + "skaistaa": 2, + "skaistie": 2, + "skaistaas": 2, + "skaist": 8, + "FoodsTha": 1, + "SyntaxTha": 1, + "LexiconTha": 1, + "ParadigmsTha": 1, + "ResTha": 1, + "R.thword": 4, + "ParadigmsIta": 1 }, "CSS": { ".clearfix": 8, @@ -19302,83 +43914,695 @@ "backdrop.fade": 1, "backdrop.fade.in": 1 }, - "Cuda": { - "__global__": 2, - "void": 3, - "scalarProdGPU": 1, - "(": 20, - "float": 8, - "*d_C": 1, - "*d_A": 1, - "*d_B": 1, - "int": 14, - "vectorN": 2, - "elementN": 3, - ")": 20, - "{": 8, - "//Accumulators": 1, - "cache": 1, - "__shared__": 1, - "accumResult": 5, - "[": 11, - "ACCUM_N": 4, - "]": 11, - ";": 30, - "////////////////////////////////////////////////////////////////////////////": 2, - "for": 5, - "vec": 5, - "blockIdx.x": 2, + "SourcePawn": { + "//#define": 1, + "DEBUG": 2, + "#if": 1, + "defined": 1, + "#define": 7, + "assert": 2, + "(": 233, + "%": 18, + ")": 234, + "if": 44, + "ThrowError": 2, + ";": 213, + "assert_msg": 2, + "#else": 1, + "#endif": 1, + "#pragma": 1, + "semicolon": 1, + "#include": 3, + "": 1, + "": 1, + "": 1, + "public": 21, + "Plugin": 1, + "myinfo": 1, + "{": 73, + "name": 7, + "author": 1, + "description": 1, + "version": 1, + "SOURCEMOD_VERSION": 1, + "url": 1, + "}": 71, + "new": 62, + "Handle": 51, + "g_Cvar_Winlimit": 5, + "INVALID_HANDLE": 56, + "g_Cvar_Maxrounds": 5, + "g_Cvar_Fraglimit": 6, + "g_Cvar_Bonusroundtime": 6, + "g_Cvar_StartTime": 3, + "g_Cvar_StartRounds": 5, + "g_Cvar_StartFrags": 3, + "g_Cvar_ExtendTimeStep": 2, + "g_Cvar_ExtendRoundStep": 2, + "g_Cvar_ExtendFragStep": 2, + "g_Cvar_ExcludeMaps": 3, + "g_Cvar_IncludeMaps": 2, + "g_Cvar_NoVoteMode": 2, + "g_Cvar_Extend": 2, + "g_Cvar_DontChange": 2, + "g_Cvar_EndOfMapVote": 8, + "g_Cvar_VoteDuration": 3, + "g_Cvar_RunOff": 2, + "g_Cvar_RunOffPercent": 2, + "g_VoteTimer": 7, + "g_RetryTimer": 4, + "g_MapList": 8, + "g_NominateList": 7, + "g_NominateOwners": 7, + "g_OldMapList": 7, + "g_NextMapList": 2, + "g_VoteMenu": 1, + "g_Extends": 2, + "g_TotalRounds": 7, + "bool": 10, + "g_HasVoteStarted": 7, + "g_WaitingForVote": 4, + "g_MapVoteCompleted": 9, + "g_ChangeMapAtRoundEnd": 6, + "g_ChangeMapInProgress": 4, + "g_mapFileSerial": 3, + "-": 12, + "g_NominateCount": 3, + "MapChange": 4, + "g_ChangeTime": 1, + "g_NominationsResetForward": 3, + "g_MapVoteStartedForward": 2, + "MAXTEAMS": 4, + "g_winCount": 4, + "[": 19, + "]": 19, + "VOTE_EXTEND": 1, + "VOTE_DONTCHANGE": 1, + "OnPluginStart": 1, + "LoadTranslations": 2, + "arraySize": 5, + "ByteCountToCells": 1, + "PLATFORM_MAX_PATH": 6, + "CreateArray": 5, + "CreateConVar": 15, + "_": 18, + "true": 26, + "RegAdminCmd": 2, + "Command_Mapvote": 2, + "ADMFLAG_CHANGEMAP": 2, + "Command_SetNextmap": 2, + "FindConVar": 4, + "||": 15, + "decl": 5, + "String": 11, + "folder": 5, + "GetGameFolderName": 1, + "sizeof": 6, + "strcmp": 3, + "HookEvent": 6, + "Event_TeamPlayWinPanel": 3, + "Event_TFRestartRound": 2, + "else": 5, + "Event_RoundEnd": 3, + "Event_PlayerDeath": 2, + "AutoExecConfig": 1, + "//Change": 1, + "the": 5, + "mp_bonusroundtime": 1, + "max": 1, + "so": 1, + "that": 2, + "we": 2, + "have": 2, + "time": 9, + "to": 4, + "display": 2, + "vote": 6, + "//If": 1, + "you": 1, + "a": 1, + "during": 2, + "bonus": 2, + "good": 1, + "defaults": 1, + "are": 1, + "duration": 1, + "and": 1, + "mp_bonustime": 1, + "SetConVarBounds": 1, + "ConVarBound_Upper": 1, + "CreateGlobalForward": 2, + "ET_Ignore": 2, + "Param_String": 1, + "Param_Cell": 1, + "APLRes": 1, + "AskPluginLoad2": 1, + "myself": 1, + "late": 1, + "error": 1, + "err_max": 1, + "RegPluginLibrary": 1, + "CreateNative": 9, + "Native_NominateMap": 1, + "Native_RemoveNominationByMap": 1, + "Native_RemoveNominationByOwner": 1, + "Native_InitiateVote": 1, + "Native_CanVoteStart": 2, + "Native_CheckVoteDone": 2, + "Native_GetExcludeMapList": 2, + "Native_GetNominatedMapList": 2, + "Native_EndOfMapVoteEnabled": 2, + "return": 23, + "APLRes_Success": 1, + "OnConfigsExecuted": 1, + "ReadMapList": 1, + "MAPLIST_FLAG_CLEARARRAY": 1, + "|": 1, + "MAPLIST_FLAG_MAPSFOLDER": 1, + "LogError": 2, + "CreateNextVote": 1, + "SetupTimeleftTimer": 3, + "false": 8, + "ClearArray": 2, + "for": 9, + "i": 13, "<": 5, "+": 12, - "gridDim.x": 1, - "vectorBase": 3, - "IMUL": 1, - "vectorEnd": 2, - "////////////////////////////////////////////////////////////////////////": 4, - "iAccum": 10, - "threadIdx.x": 4, - "blockDim.x": 3, - "sum": 3, - "pos": 5, - "d_A": 2, + "&&": 5, + "GetConVarInt": 10, + "GetConVarFloat": 2, + "<=>": 1, + "Warning": 1, + "Bonus": 1, + "Round": 1, + "Time": 2, + "shorter": 1, + "than": 1, + "Vote": 4, + "Votes": 1, + "round": 1, + "may": 1, + "not": 1, + "complete": 1, + "OnMapEnd": 1, + "map": 27, + "GetCurrentMap": 1, + "PushArrayString": 3, + "GetArraySize": 8, + "RemoveFromArray": 3, + "OnClientDisconnect": 1, + "client": 9, + "index": 8, + "FindValueInArray": 1, + "oldmap": 4, + "GetArrayString": 3, + "Call_StartForward": 1, + "Call_PushString": 1, + "Call_PushCell": 1, + "GetArrayCell": 2, + "Call_Finish": 1, + "Action": 3, + "args": 3, + "ReplyToCommand": 2, + "Plugin_Handled": 4, + "GetCmdArg": 1, + "IsMapValid": 1, + "ShowActivity": 1, + "LogAction": 1, + "SetNextMap": 1, + "OnMapTimeLeftChanged": 1, + "GetMapTimeLeft": 1, + "startTime": 4, + "*": 1, + "GetConVarBool": 6, + "InitiateVote": 8, + "MapChange_MapEnd": 6, + "KillTimer": 1, + "//g_VoteTimer": 1, + "CreateTimer": 3, + "float": 2, + "Timer_StartMapVote": 3, + "TIMER_FLAG_NO_MAPCHANGE": 4, + "data": 8, + "CreateDataTimer": 1, + "WritePackCell": 2, + "ResetPack": 1, + "timer": 2, + "Plugin_Stop": 2, + "mapChange": 2, + "ReadPackCell": 2, + "hndl": 2, + "event": 11, + "const": 4, + "dontBroadcast": 4, + "Timer_ChangeMap": 2, + "bluescore": 2, + "GetEventInt": 7, + "redscore": 2, + "StrEqual": 1, + "CheckMaxRounds": 3, + "switch": 1, + "case": 2, + "CheckWinLimit": 4, + "//We": 1, + "need": 2, + "do": 1, + "nothing": 1, + "on": 1, + "winning_team": 1, + "this": 1, + "indicates": 1, + "stalemate.": 1, + "default": 1, + "winner": 9, + "//": 3, + "Nuclear": 1, + "Dawn": 1, + "SetFailState": 1, + "winner_score": 2, + "winlimit": 3, + "roundcount": 2, + "maxrounds": 3, + "fragger": 3, + "GetClientOfUserId": 1, + "GetClientFrags": 1, + "when": 2, + "inputlist": 1, + "IsVoteInProgress": 1, + "Can": 1, + "t": 7, + "be": 1, + "excluded": 1, + "from": 1, + "as": 2, + "they": 1, + "weren": 1, + "nominationsToAdd": 1, + "Change": 2, + "Extend": 2, + "Map": 5, + "Voting": 7, + "next": 5, + "has": 5, + "started.": 1, + "SM": 5, + "Nextmap": 5, + "Started": 1, + "Current": 2, + "Extended": 1, + "finished.": 3, + "The": 1, + "current": 1, + "been": 1, + "extended.": 1, + "Stays": 1, + "was": 3, + "Finished": 1, + "s.": 1, + "Runoff": 2, + "Starting": 2, + "indecisive": 1, + "beginning": 1, + "runoff": 1, + "T": 3, + "Dont": 1, + "because": 1, + "outside": 1, + "request": 1, + "inputarray": 1, + "plugin": 5, + "numParams": 5, + "CanVoteStart": 1, + "array": 3, + "GetNativeCell": 3, + "size": 2, + "maparray": 3, + "ownerarray": 3, + "If": 1, + "optional": 1, + "parameter": 1, + "an": 1, + "owner": 1, + "list": 1, + "passed": 1, + "then": 1, + "fill": 1, + "out": 1, + "well": 1, + "PushArrayCell": 1 + }, + "BlitzBasic": { + ";": 57, + "Double": 2, + "-": 24, + "linked": 2, + "list": 32, + "container": 1, + "class": 1, + "with": 3, + "thanks": 1, + "to": 11, + "MusicianKool": 3, + "for": 3, + "concept": 1, + "and": 9, + "issue": 1, + "fixes": 1, + "Type": 8, + "LList": 3, + "Field": 10, + "head_.ListNode": 1, + "tail_.ListNode": 1, + "End": 58, + "ListNode": 8, + "pv_.ListNode": 1, + "nx_.ListNode": 1, + "Value": 37, + "Iterator": 2, + "l_.LList": 1, + "cn_.ListNode": 1, + "cni_": 8, + "Create": 4, + "a": 46, + "new": 4, + "object": 2, + "Function": 101, + "CreateList.LList": 1, + "(": 125, + ")": 126, + "Local": 34, + "l.LList": 20, + "New": 11, + "l": 84, + "head_": 35, + "tail_": 34, + "nx_": 33, + "caps": 1, + "pv_": 27, + "These": 1, + "make": 1, + "it": 1, + "more": 1, + "or": 4, + "less": 1, + "safe": 1, + "iterate": 2, + "freely": 1, + "Return": 36, + "Free": 1, + "all": 3, + "elements": 4, + "not": 4, + "any": 1, + "values": 4, + "FreeList": 1, + "ClearList": 2, + "Delete": 6, + "Remove": 7, + "the": 52, + "from": 15, + "does": 1, + "free": 1, + "n.ListNode": 12, + "While": 7, + "n": 54, + "<": 18, + "nx.ListNode": 1, + "nx": 1, + "Wend": 6, + "Count": 1, + "number": 1, + "of": 16, + "in": 4, + "slow": 3, + "ListLength": 2, + "i.Iterator": 6, + "GetIterator": 3, + "elems": 4, + "EachIn": 5, + "i": 49, + "+": 11, + "True": 4, + "if": 2, + "contains": 1, + "given": 7, + "value": 16, + "ListContains": 1, + "ListFindNode": 2, + "Null": 15, + "intvalues": 1, + "bank": 8, + "ListFromBank.LList": 1, + "CreateList": 2, + "size": 4, + "BankSize": 1, + "p": 7, + "For": 6, + "To": 6, + "Step": 2, + "ListAddLast": 2, + "PeekInt": 4, + "Next": 7, + "containing": 3, + "ListToBank": 1, "*": 2, - "d_B": 2, - "}": 8, - "stride": 5, - "/": 2, - "__syncthreads": 1, - "if": 3, - "d_C": 2, - "#include": 2, - "": 1, - "": 1, - "vectorAdd": 2, - "const": 2, - "*A": 1, - "*B": 1, - "*C": 1, - "numElements": 4, - "i": 5, - "C": 1, - "A": 1, - "B": 1, - "main": 1, - "cudaError_t": 1, - "err": 5, - "cudaSuccess": 2, - "threadsPerBlock": 4, - "blocksPerGrid": 1, - "-": 1, - "<<": 1, - "": 1, - "cudaGetLastError": 1, - "fprintf": 1, - "stderr": 1, - "cudaGetErrorString": 1, - "exit": 1, - "EXIT_FAILURE": 1, - "cudaDeviceReset": 1, - "return": 1 + "CreateBank": 5, + "PokeInt": 2, + "Swap": 1, + "contents": 1, + "two": 1, + "objects": 1, + "SwapLists": 1, + "l1.LList": 1, + "l2.LList": 1, + "tempH.ListNode": 1, + "l1": 4, + "tempT.ListNode": 1, + "l2": 4, + "tempH": 1, + "tempT": 1, + "same": 1, + "as": 2, + "first": 5, + "CopyList.LList": 1, + "lo.LList": 1, + "ln.LList": 1, + "lo": 1, + "ln": 2, + "Reverse": 1, + "order": 1, + "ReverseList": 1, + "n1.ListNode": 1, + "n2.ListNode": 1, + "tmp.ListNode": 1, + "n1": 5, + "n2": 6, + "tmp": 4, + "Search": 1, + "retrieve": 1, + "node": 8, + "ListFindNode.ListNode": 1, + "If": 25, + "Then": 18, + "Append": 1, + "end": 5, + "fast": 2, + "return": 7, + "ListAddLast.ListNode": 1, + "Attach": 1, + "start": 13, + "ListAddFirst.ListNode": 1, + "occurence": 1, + "ListRemove": 1, + "RemoveListNode": 6, + "element": 4, + "at": 5, + "position": 4, + "backwards": 2, + "negative": 2, + "index": 13, + "ValueAtIndex": 1, + "ListNodeAtIndex": 3, + "Else": 7, + "invalid": 1, + "ListNodeAtIndex.ListNode": 1, + "e": 4, + "Beyond": 1, + "valid": 2, + "Negative": 1, + "count": 1, + "backward": 1, + "Before": 3, + "EndIf": 7, + "Replace": 1, + "added": 2, + "by": 3, + "ReplaceValueAtIndex": 1, + "RemoveNodeAtIndex": 1, + "tval": 3, + "Retrieve": 2, + "ListFirst": 1, + "last": 2, + "ListLast": 1, + "its": 2, + "ListRemoveFirst": 1, + "val": 6, + "ListRemoveLast": 1, + "Insert": 3, + "into": 2, + "before": 2, + "specified": 2, + "InsertBeforeNode.ListNode": 1, + "bef.ListNode": 1, + "bef": 7, + "after": 1, + "then": 1, + "InsertAfterNode.ListNode": 1, + "aft.ListNode": 1, + "aft": 7, + "Get": 1, + "an": 4, + "iterator": 4, + "use": 1, + "loop": 2, + "This": 1, + "function": 1, + "means": 1, + "that": 1, + "most": 1, + "programs": 1, + "won": 1, + "s": 12, + "available": 1, + "moment": 1, + "l_": 7, + "Exit": 1, + "there": 1, + "wasn": 1, + "t": 1, + "create": 1, + "one": 1, + "cn_": 12, + "No": 1, + "especial": 1, + "reason": 1, + "why": 1, + "this": 2, + "has": 1, + "be": 1, + "anything": 1, + "but": 1, + "meh": 1, + "Use": 1, + "argument": 1, + "over": 1, + "members": 1, + "Still": 1, + "items": 1, + "Disconnect": 1, + "having": 1, + "reached": 1, + "False": 3, + "currently": 1, + "pointed": 1, + "IteratorRemove": 1, + "And": 8, + "temp.ListNode": 1, + "temp": 1, + "Call": 1, + "breaking": 1, + "out": 1, + "disconnect": 1, + "IteratorBreak": 1, + "IDEal": 3, + "Editor": 3, + "Parameters": 3, + "F#5#A#10#18#2A#32#3E#47#4C#58#66#6F#78#8F#9B#A9#B7#BD#C5#CC": 1, + "F#E3#E9#EF#F4#F9#103#10D#11B#12B#13F#152#163": 1, + "C#Blitz3D": 3, + "bk": 3, + "PokeFloat": 3, + "Print": 13, + "Bin": 4, + "%": 6, + "Shl": 7, + "f": 5, + "ff": 1, + "Hex": 2, + "FloatToHalf": 3, + "HalfToFloat": 1, + "FToI": 2, + "WaitKey": 2, + "Half": 1, + "precision": 2, + "bit": 2, + "arithmetic": 2, + "library": 2, + "Global": 2, + "Half_CBank_": 13, + "f#": 3, + "HalfToFloat#": 1, + "h": 4, + "signBit": 6, + "exponent": 22, + "fraction": 9, + "fBits": 8, + "Shr": 3, + "F": 3, + "FF": 2, + "ElseIf": 1, + "Or": 4, + "PeekFloat": 1, + "F800000": 1, + "FFFFF": 1, + "Abs": 1, + "Sgn": 1, + "HalfAdd": 1, + "r": 12, + "HalfSub": 1, + "HalfMul": 1, + "HalfDiv": 1, + "HalfLT": 1, + "HalfGT": 1, + "DoubleOut": 1, + "[": 2, + "]": 2, + "Double_CBank_": 1, + "DoubleToFloat#": 1, + "d": 1, + "FloatToDouble": 1, + "IntToDouble": 1, + "SefToDouble": 1, + "DoubleAdd": 1, + "DoubleSub": 1, + "DoubleMul": 1, + "DoubleDiv": 1, + "DoubleLT": 1, + "DoubleGT": 1, + "F#1A#20#2F": 1, + "result": 4, + "s.Sum3Obj": 2, + "Sum3Obj": 6, + "Handle": 2, + "MilliSecs": 4, + "Sum3_": 2, + "MakeSum3Obj": 2, + "Sum3": 2, + "b": 7, + "c": 7, + "isActive": 4, + "Last": 1, + "Restore": 1, + "label": 1, + "Read": 1, + "foo": 1, + ".label": 1, + "Data": 1, + "a_": 2, + "a.Sum3Obj": 1, + "Object.Sum3Obj": 1, + "return_": 2, + "First": 1 }, "Dart": { "import": 1, @@ -19415,25512 +44639,6 @@ "q": 1, "print": 1 }, - "Diff": { - "diff": 1, - "-": 5, - "git": 1, - "a/lib/linguist.rb": 2, - "b/lib/linguist.rb": 2, - "index": 1, - "d472341..8ad9ffb": 1, - "+": 3 - }, - "DM": { - "#define": 4, - "PI": 6, - "#if": 1, - "G": 1, - "#elif": 1, - "I": 1, - "#else": 1, - "K": 1, - "#endif": 1, - "var/GlobalCounter": 1, - "var/const/CONST_VARIABLE": 1, - "var/list/MyList": 1, - "list": 3, - "(": 17, - "new": 1, - "/datum/entity": 2, - ")": 17, - "var/list/EmptyList": 1, - "[": 2, - "]": 2, - "//": 6, - "creates": 1, - "a": 1, - "of": 1, - "null": 2, - "entries": 1, - "var/list/NullList": 1, - "var/name": 1, - "var/number": 1, - "/datum/entity/proc/myFunction": 1, - "world.log": 5, - "<<": 5, - "/datum/entity/New": 1, - "number": 2, - "GlobalCounter": 1, - "+": 3, - "/datum/entity/unit": 1, - "name": 1, - "/datum/entity/unit/New": 1, - "..": 1, - "calls": 1, - "the": 2, - "parent": 1, - "s": 1, - "proc": 1, - ";": 3, - "equal": 1, - "to": 1, - "super": 1, - "and": 1, - "base": 1, - "in": 1, - "other": 1, - "languages": 1, - "rand": 1, - "/datum/entity/unit/myFunction": 1, - "/proc/ReverseList": 1, - "var/list/input": 1, - "var/list/output": 1, - "for": 1, - "var/i": 1, - "input.len": 1, - "i": 3, - "-": 2, - "IMPORTANT": 1, - "List": 1, - "Arrays": 1, - "count": 1, - "from": 1, - "output": 2, - "input": 1, - "is": 2, - "return": 3, - "/proc/DoStuff": 1, - "var/bitflag": 2, - "bitflag": 4, - "|": 1, - "/proc/DoOtherStuff": 1, - "bits": 1, - "maximum": 1, - "amount": 1, - "&": 1, - "/proc/DoNothing": 1, - "var/pi": 1, - "if": 2, - "pi": 2, - "else": 2, - "CONST_VARIABLE": 1, - "#undef": 1, - "Undefine": 1 - }, - "Dogescript": { - "quiet": 1, - "wow": 4, - "such": 2, - "language": 3, - "very": 1, - "syntax": 1, - "github": 1, - "recognized": 1, - "loud": 1, - "much": 1, - "friendly": 2, - "rly": 1, - "is": 2, - "true": 1, - "plz": 2, - "console.loge": 2, - "with": 2, - "but": 1, - "module.exports": 1 - }, - "E": { - "def": 24, - "makeVehicle": 3, - "(": 65, - "self": 1, - ")": 64, - "{": 57, - "vehicle": 2, - "to": 27, - "milesTillEmpty": 1, - "return": 19, - "self.milesPerGallon": 1, - "*": 1, - "self.getFuelRemaining": 1, - "}": 57, - "makeCar": 4, - "var": 6, - "fuelRemaining": 4, - "car": 8, - "extends": 2, - "milesPerGallon": 2, - "getFuelRemaining": 2, - "makeJet": 1, - "jet": 3, - "println": 2, - "The": 2, - "can": 1, - "go": 1, - "car.milesTillEmpty": 1, - "miles.": 1, - "name": 4, - "x": 3, - "y": 3, - "moveTo": 1, - "newX": 2, - "newY": 2, - "getX": 1, - "getY": 1, - "setName": 1, - "newName": 2, - "getName": 1, - "sportsCar": 1, - "sportsCar.moveTo": 1, - "sportsCar.getName": 1, - "is": 1, - "at": 1, - "X": 1, - "location": 1, - "sportsCar.getX": 1, - "makeVOCPair": 1, - "brandName": 3, - "String": 1, - "near": 6, - "myTempContents": 6, - "none": 2, - "brand": 5, - "__printOn": 4, - "out": 4, - "TextWriter": 4, - "void": 5, - "out.print": 4, - "ProveAuth": 2, - "<$brandName>": 3, - "prover": 1, - "getBrand": 4, - "coerce": 2, - "specimen": 2, - "optEjector": 3, - "sealedBox": 2, - "offerContent": 1, - "CheckAuth": 2, - "checker": 3, - "template": 1, - "match": 4, - "[": 10, - "get": 2, - "authList": 2, - "any": 2, - "]": 10, - "specimenBox": 2, - "null": 1, - "if": 2, - "specimenBox.__respondsTo": 1, - "specimenBox.offerContent": 1, - "else": 1, - "for": 3, - "auth": 3, - "in": 1, - "throw.eject": 1, - "Unmatched": 1, - "authorization": 1, - "__respondsTo": 2, - "_": 3, - "true": 1, - "false": 1, - "__getAllegedType": 1, - "null.__getAllegedType": 1, - "#File": 1, - "objects": 1, - "hardwired": 1, - "files": 1, - "file1": 1, - "": 1, - "file2": 1, - "": 1, - "#Using": 2, - "a": 4, - "variable": 1, - "file": 3, - "filePath": 2, - "file3": 1, - "": 1, - "single": 1, - "character": 1, - "specify": 1, - "Windows": 1, - "drive": 1, - "file4": 1, - "": 1, - "file5": 1, - "": 1, - "file6": 1, - "": 1, - "pragma.syntax": 1, - "send": 1, - "message": 4, - "when": 2, - "friend": 4, - "<-receive(message))>": 1, - "chatUI.showMessage": 4, - "catch": 2, - "prob": 2, - "receive": 1, - "receiveFriend": 2, - "friendRcvr": 2, - "bind": 2, - "save": 1, - "file.setText": 1, - "makeURIFromObject": 1, - "chatController": 2, - "load": 1, - "getObjectFromURI": 1, - "file.getText": 1, - "<": 1, - "-": 2, - "tempVow": 2, - "#...use": 1, - "#....": 1, - "report": 1, - "problem": 1, - "finally": 1, - "#....log": 1, - "event": 1 - }, - "Eagle": { - "": 2, - "version=": 4, - "encoding=": 2, - "": 2, - "eagle": 4, - "SYSTEM": 2, - "dtd": 2, - "": 2, - "": 2, - "": 2, - "": 4, - "alwaysvectorfont=": 2, - "verticaltext=": 2, - "": 2, - "": 2, - "distance=": 2, - "unitdist=": 2, - "unit=": 2, - "style=": 2, - "multiple=": 2, - "display=": 2, - "altdistance=": 2, - "altunitdist=": 2, - "altunit=": 2, - "": 2, - "": 118, - "number=": 119, - "name=": 447, - "color=": 118, - "fill=": 118, - "visible=": 118, - "active=": 125, - "": 2, - "": 1, - "": 1, - "": 497, - "x1=": 630, - "y1=": 630, - "x2=": 630, - "y2=": 630, - "width=": 512, - "layer=": 822, - "": 1, - "": 2, - "": 4, - "": 60, - "&": 5501, - "lt": 2665, - ";": 5567, - "b": 64, - "gt": 2770, - "Resistors": 2, - "Capacitors": 4, - "Inductors": 2, - "/b": 64, - "p": 65, - "Based": 2, - "on": 2, - "the": 5, - "previous": 2, - "libraries": 2, - "ul": 2, - "li": 12, - "r.lbr": 2, - "cap.lbr": 2, - "cap": 2, - "-": 768, - "fe.lbr": 2, - "captant.lbr": 2, - "polcap.lbr": 2, - "ipc": 2, - "smd.lbr": 2, - "/ul": 2, - "All": 2, - "SMD": 4, - "packages": 2, - "are": 2, - "defined": 2, - "according": 2, - "to": 3, - "IPC": 2, - "specifications": 2, - "and": 5, - "CECC": 2, - "author": 3, - "Created": 3, - "by": 3, - "librarian@cadsoft.de": 3, - "/author": 3, - "for": 5, - "Electrolyt": 2, - "see": 4, - "also": 2, - "www.bccomponents.com": 2, - "www.panasonic.com": 2, - "www.kemet.com": 2, - "http": 4, - "//www.secc.co.jp/pdf/os_e/2004/e_os_all.pdf": 2, - "(": 4, - "SANYO": 2, - ")": 4, - "trimmer": 2, - "refence": 2, - "u": 2, - "www.electrospec": 2, - "inc.com/cross_references/trimpotcrossref.asp": 2, - "/u": 2, - "table": 2, - "border": 2, - "cellspacing": 2, - "cellpadding": 2, - "width": 6, - "cellpaddding": 2, - "tr": 2, - "valign": 2, - "td": 4, - "amp": 66, - "nbsp": 66, - "/td": 4, - "font": 2, - "color": 20, - "size": 2, - "TRIM": 4, - "POT": 4, - "CROSS": 4, - "REFERENCE": 4, - "/font": 2, - "P": 128, - "TABLE": 4, - "BORDER": 4, - "CELLSPACING": 4, - "CELLPADDING": 4, - "TR": 36, - "TD": 170, - "COLSPAN": 16, - "FONT": 166, - "SIZE": 166, - "FACE": 166, - "ARIAL": 166, - "B": 106, - "RECTANGULAR": 2, - "MULTI": 6, - "TURN": 10, - "/B": 90, - "/FONT": 166, - "/TD": 170, - "/TR": 36, - "ALIGN": 124, - "CENTER": 124, - "BOURNS": 6, - "BI": 10, - "TECH": 10, - "DALE": 10, - "VISHAY": 10, - "PHILIPS/MEPCO": 10, - "MURATA": 6, - "PANASONIC": 10, - "SPECTROL": 6, - "MILSPEC": 6, - "BGCOLOR": 76, - "BR": 1478, - "W": 92, - "Y": 36, - "J": 12, - "L": 18, - "X": 82, - "PH": 2, - "XH": 2, - "SLT": 2, - "ALT": 42, - "T8S": 2, - "T18/784": 2, - "/1897": 2, - "/1880": 2, - "EKP/CT20/RJ": 2, - "RJ": 14, - "EKQ": 4, - "EKR": 4, - "EKJ": 2, - "EKL": 2, - "S": 18, - "EVMCOG": 2, - "T602": 2, - "RT/RTR12": 6, - "RJ/RJR12": 6, - "SQUARE": 2, - "BOURN": 4, - "H": 24, - "Z": 16, - "T63YB": 2, - "T63XB": 2, - "T93Z": 2, - "T93YA": 2, - "T93XA": 2, - "T93YB": 2, - "T93XB": 2, - "EKP": 8, - "EKW": 6, - "EKM": 4, - "EKB": 2, - "EKN": 2, - "P/CT9P": 2, - "P/3106P": 2, - "W/3106W": 2, - "X/3106X": 2, - "Y/3106Y": 2, - "Z/3105Z": 2, - "EVMCBG": 2, - "EVMCCG": 2, - "RT/RTR22": 8, - "RJ/RJR22": 6, - "RT/RTR26": 6, - "RJ/RJR26": 12, - "RT/RTR24": 6, - "RJ/RJR24": 12, - "SINGLE": 4, - "E": 6, - "K": 4, - "T": 10, - "V": 10, - "M": 10, - "R": 6, - "U": 4, - "C": 6, - "F": 4, - "RX": 6, - "PA": 2, - "A": 16, - "XW": 2, - "XL": 2, - "PM": 2, - "PX": 2, - "RXW": 2, - "RXL": 2, - "T7YB": 2, - "T7YA": 2, - "TXD": 2, - "TYA": 2, - "TYP": 2, - "TYD": 2, - "TX": 4, - "SX": 6, - "ET6P": 2, - "ET6S": 2, - "ET6X": 2, - "W/8014EMW": 2, - "P/8014EMP": 2, - "X/8014EMX": 2, - "TM7W": 2, - "TM7P": 2, - "TM7X": 2, - "SMS": 2, - "SMB": 2, - "SMA": 2, - "CT": 12, - "EKV": 2, - "EKX": 2, - "EKZ": 2, - "N": 2, - "RVA0911V304A": 2, - "RVA0911H413A": 2, - "RVG0707V100A": 2, - "RVA0607V": 2, - "RVA1214H213A": 2, - "EVMQ0G": 4, - "EVMQIG": 2, - "EVMQ3G": 2, - "EVMS0G": 2, - "EVMG0G": 2, - "EVMK4GA00B": 2, - "EVM30GA00B": 2, - "EVMK0GA00B": 2, - "EVM38GA00B": 2, - "EVMB6": 2, - "EVLQ0": 2, - "EVMMSG": 2, - "EVMMBG": 2, - "EVMMAG": 2, - "EVMMCS": 2, - "EVMM1": 2, - "EVMM0": 2, - "EVMM3": 2, - "RJ/RJR50": 6, - "/TABLE": 4, - "TOCOS": 4, - "AUX/KYOCERA": 4, - "G": 10, - "ST63Z": 2, - "ST63Y": 2, - "ST5P": 2, - "ST5W": 2, - "ST5X": 2, - "A/B": 2, - "C/D": 2, - "W/X": 2, - "ST5YL/ST53YL": 2, - "ST5YJ/5T53YJ": 2, - "ST": 14, - "EVM": 8, - "YS": 2, - "D": 2, - "G4B": 2, - "G4A": 2, - "TR04": 2, - "S1": 4, - "TRG04": 2, - "DVR": 2, - "CVR": 4, - "A/C": 2, - "ALTERNATE": 2, - "/tr": 2, - "/table": 2, - "": 60, - "": 4, - "": 53, - "RESISTOR": 52, - "": 64, - "x=": 240, - "y=": 242, - "dx=": 64, - "dy=": 64, - "": 108, - "size=": 114, - "NAME": 52, - "": 108, - "VALUE": 52, - "": 132, - "": 52, - "": 3, - "": 3, - "Pin": 1, - "Header": 1, - "Connectors": 1, - "PIN": 1, - "HEADER": 1, - "": 39, - "drill=": 41, - "shape=": 39, - "ratio=": 41, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "language=": 2, - "EAGLE": 2, - "Design": 5, - "Rules": 5, - "Die": 1, - "Standard": 1, - "sind": 1, - "so": 2, - "gew": 1, - "hlt": 1, - "dass": 1, - "sie": 1, - "f": 1, - "r": 1, - "die": 3, - "meisten": 1, - "Anwendungen": 1, - "passen.": 1, - "Sollte": 1, - "ihre": 1, - "Platine": 1, - "besondere": 1, - "Anforderungen": 1, - "haben": 1, - "treffen": 1, - "Sie": 1, - "erforderlichen": 1, - "Einstellungen": 1, - "hier": 1, - "und": 1, - "speichern": 1, - "unter": 1, - "einem": 1, - "neuen": 1, - "Namen": 1, - "ab.": 1, - "The": 1, - "default": 1, - "have": 2, - "been": 1, - "set": 1, - "cover": 1, - "a": 2, - "wide": 1, - "range": 1, - "of": 1, - "applications.": 1, - "Your": 1, - "particular": 1, - "design": 2, - "may": 1, - "different": 1, - "requirements": 1, - "please": 1, - "make": 1, - "necessary": 1, - "adjustments": 1, - "save": 1, - "your": 1, - "customized": 1, - "rules": 1, - "under": 1, - "new": 1, - "name.": 1, - "": 142, - "value=": 145, - "": 1, - "": 1, - "": 8, - "": 8, - "refer=": 7, - "": 1, - "": 1, - "": 3, - "library=": 3, - "package=": 3, - "smashed=": 3, - "": 6, - "": 3, - "1": 1, - "778": 1, - "16": 1, - "002": 1, - "": 1, - "": 1, - "": 3, - "": 4, - "element=": 4, - "pad=": 4, - "": 1, - "extent=": 1, - "": 3, - "": 2, - "": 8, - "": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "xreflabel=": 1, - "xrefpart=": 1, - "Frames": 1, - "Sheet": 2, - "Layout": 1, - "": 1, - "": 1, - "font=": 4, - "DRAWING_NAME": 1, - "LAST_DATE_TIME": 1, - "SHEET": 1, - "": 1, - "columns=": 1, - "rows=": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "prefix=": 1, - "uservalue=": 1, - "FRAME": 1, - "DIN": 1, - "A4": 1, - "landscape": 1, - "with": 1, - "location": 1, - "doc.": 1, - "field": 1, - "": 1, - "": 1, - "symbol=": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "wave": 10, - "soldering": 10, - "Source": 2, - "//download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf": 2, - "MELF": 8, - "type": 20, - "grid": 20, - "mm": 20, - "curve=": 56, - "": 12, - "radius=": 12 - }, - "ECL": { - "#option": 1, - "(": 32, - "true": 1, - ")": 32, - ";": 23, - "namesRecord": 4, - "RECORD": 1, - "string20": 1, - "surname": 1, - "string10": 2, - "forename": 1, - "integer2": 5, - "age": 2, - "dadAge": 1, - "mumAge": 1, - "END": 1, - "namesRecord2": 3, - "record": 1, - "extra": 1, - "end": 1, - "namesTable": 11, - "dataset": 2, - "FLAT": 2, - "namesTable2": 9, - "aveAgeL": 3, - "l": 1, - "l.dadAge": 1, - "+": 16, - "l.mumAge": 1, - "/2": 2, - "aveAgeR": 4, - "r": 1, - "r.dadAge": 1, - "r.mumAge": 1, - "output": 9, - "join": 11, - "left": 2, - "right": 3, - "//Several": 1, - "simple": 1, - "examples": 1, - "of": 1, - "sliding": 2, - "syntax": 1, - "left.age": 8, - "right.age": 12, - "-": 5, - "and": 10, - "<": 1, - "between": 7, - "//Same": 1, - "but": 1, - "on": 1, - "strings.": 1, - "Also": 1, - "includes": 1, - "to": 1, - "ensure": 1, - "sort": 1, - "is": 1, - "done": 1, - "by": 1, - "non": 1, - "before": 1, - "sliding.": 1, - "left.surname": 2, - "right.surname": 4, - "[": 4, - "]": 4, - "all": 1, - "//This": 1, - "should": 1, - "not": 1, - "generate": 1, - "a": 1, - "self": 1 - }, - "edn": { - "[": 24, - "{": 22, - "db/id": 22, - "#db/id": 22, - "db.part/db": 6, - "]": 24, - "db/ident": 3, - "object/name": 18, - "db/doc": 4, - "db/valueType": 3, - "db.type/string": 2, - "db/index": 3, - "true": 3, - "db/cardinality": 3, - "db.cardinality/one": 3, - "db.install/_attribute": 3, - "}": 22, - "object/meanRadius": 18, - "db.type/double": 1, - "data/source": 2, - "db.part/tx": 2, - "db.part/user": 17 - }, - "Elm": { - "import": 3, - "List": 1, - "(": 119, - "intercalate": 2, - "intersperse": 3, - ")": 116, - "Website.Skeleton": 1, - "Website.ColorScheme": 1, - "addFolder": 4, - "folder": 2, - "lst": 6, - "let": 2, - "add": 2, - "x": 13, - "y": 7, - "+": 14, - "in": 2, - "f": 8, - "n": 2, - "xs": 9, - "map": 11, - "elements": 2, - "[": 31, - "]": 31, - "functional": 2, - "reactive": 2, - "-": 11, - "example": 3, - "name": 6, - "loc": 2, - "Text.link": 1, - "toText": 6, - "toLinks": 2, - "title": 2, - "links": 2, - "flow": 4, - "right": 8, - "width": 3, - "text": 4, - "italic": 1, - "bold": 2, - ".": 9, - "Text.color": 1, - "accent4": 1, - "insertSpace": 2, - "case": 5, - "of": 7, - "{": 1, - "spacer": 2, - ";": 1, - "}": 1, - "subsection": 2, - "w": 7, - "info": 2, - "down": 3, - "words": 2, - "markdown": 1, - "|": 3, - "###": 1, - "Basic": 1, - "Examples": 1, - "Each": 1, - "listed": 1, - "below": 1, - "focuses": 1, - "on": 1, - "a": 5, - "single": 1, - "function": 1, - "or": 1, - "concept.": 1, - "These": 1, - "examples": 1, - "demonstrate": 1, - "all": 1, - "the": 1, - "basic": 1, - "building": 1, - "blocks": 1, - "Elm.": 1, - "content": 2, - "exampleSets": 2, - "plainText": 1, - "main": 3, - "lift": 1, - "skeleton": 1, - "Window.width": 1, - "asText": 1, - "qsort": 4, - "filter": 2, - "<)x)>": 1, - "data": 1, - "Tree": 3, - "Node": 8, - "Empty": 8, - "empty": 2, - "singleton": 2, - "v": 8, - "insert": 4, - "tree": 7, - "left": 7, - "if": 2, - "then": 2, - "else": 2, - "<": 1, - "fromList": 3, - "foldl": 1, - "depth": 5, - "max": 1, - "t1": 2, - "t2": 3, - "display": 4, - "monospace": 1, - "concat": 1, - "show": 2 - }, - "Emacs Lisp": { - "(": 156, - "print": 1, - ")": 144, - ";": 333, - "ess": 48, - "-": 294, - "julia.el": 2, - "ESS": 5, - "julia": 39, - "mode": 12, - "and": 3, - "inferior": 13, - "interaction": 1, - "Copyright": 1, - "C": 2, - "Vitalie": 3, - "Spinu.": 1, - "Filename": 1, - "Author": 1, - "Spinu": 2, - "based": 1, - "on": 2, - "mode.el": 1, - "from": 3, - "lang": 1, - "project": 1, - "Maintainer": 1, - "Created": 1, - "Keywords": 1, - "This": 4, - "file": 10, - "is": 5, - "*NOT*": 1, - "part": 2, - "of": 8, - "GNU": 4, - "Emacs.": 1, - "program": 6, - "free": 1, - "software": 1, - "you": 1, - "can": 1, - "redistribute": 1, - "it": 3, - "and/or": 1, - "modify": 5, - "under": 1, - "the": 10, - "terms": 1, - "General": 3, - "Public": 3, - "License": 3, - "as": 1, - "published": 1, - "by": 1, - "Free": 2, - "Software": 2, - "Foundation": 2, - "either": 1, - "version": 2, - "any": 1, - "later": 1, - "version.": 1, - "distributed": 1, - "in": 3, - "hope": 1, - "that": 2, - "will": 1, - "be": 2, - "useful": 1, - "but": 2, - "WITHOUT": 1, - "ANY": 1, - "WARRANTY": 1, - "without": 1, - "even": 1, - "implied": 1, - "warranty": 1, - "MERCHANTABILITY": 1, - "or": 3, - "FITNESS": 1, - "FOR": 1, - "A": 1, - "PARTICULAR": 1, - "PURPOSE.": 1, - "See": 1, - "for": 8, - "more": 1, - "details.": 1, - "You": 1, - "should": 2, - "have": 1, - "received": 1, - "a": 4, - "copy": 2, - "along": 1, - "with": 4, - "this": 1, - "see": 2, - "COPYING.": 1, - "If": 1, - "not": 1, - "write": 2, - "to": 4, - "Inc.": 1, - "Franklin": 1, - "Street": 1, - "Fifth": 1, - "Floor": 1, - "Boston": 1, - "MA": 1, - "USA.": 1, - "Commentary": 1, - "customise": 1, - "name": 8, - "point": 6, - "your": 1, - "release": 1, - "basic": 1, - "start": 13, - "M": 2, - "x": 2, - "julia.": 2, - "require": 2, - "auto": 1, - "alist": 9, - "table": 9, - "character": 1, - "quote": 2, - "transpose": 1, - "syntax": 7, - "entry": 4, - ".": 40, - "Syntax": 3, - "inside": 1, - "char": 6, - "defvar": 5, - "let": 3, - "make": 4, - "defconst": 5, - "regex": 5, - "unquote": 1, - "forloop": 1, - "subset": 2, - "regexp": 6, - "font": 6, - "lock": 6, - "defaults": 2, - "list": 3, - "identity": 1, - "keyword": 2, - "face": 4, - "constant": 1, - "cons": 1, - "function": 7, - "keep": 2, - "string": 8, - "paragraph": 3, - "concat": 7, - "page": 2, - "delimiter": 2, - "separate": 1, - "ignore": 2, - "fill": 1, - "prefix": 2, - "t": 6, - "final": 1, - "newline": 1, - "comment": 6, - "add": 4, - "skip": 1, - "column": 1, - "indent": 8, - "S": 2, - "line": 5, - "calculate": 1, - "parse": 1, - "sexp": 1, - "comments": 1, - "style": 2, - "default": 1, - "ignored": 1, - "local": 6, - "process": 5, - "nil": 12, - "dump": 2, - "files": 1, - "_": 1, - "autoload": 1, - "defun": 5, - "send": 3, - "visibly": 1, - "temporary": 1, - "directory": 2, - "temp": 2, - "insert": 1, - "format": 3, - "load": 1, - "command": 5, - "get": 3, - "help": 3, - "topics": 1, - "&": 3, - "optional": 3, - "proc": 3, - "words": 1, - "vector": 1, - "com": 1, - "error": 6, - "s": 5, - "*in": 1, - "[": 3, - "n": 1, - "]": 3, - "*": 1, - "at": 5, - ".*": 2, - "+": 5, - "w*": 1, - "http": 1, - "//docs.julialang.org/en/latest/search/": 1, - "q": 1, - "%": 1, - "include": 1, - "funargs": 1, - "re": 2, - "args": 10, - "language": 1, - "STERM": 1, - "editor": 2, - "R": 2, - "pager": 2, - "versions": 1, - "Julia": 1, - "made": 1, - "available.": 1, - "String": 1, - "arguments": 2, - "used": 1, - "when": 2, - "starting": 1, - "group": 1, - "###autoload": 2, - "interactive": 2, - "setq": 2, - "customize": 5, - "emacs": 1, - "<": 1, - "hook": 4, - "complete": 1, - "object": 2, - "completion": 4, - "functions": 2, - "first": 1, - "if": 4, - "fboundp": 1, - "end": 1, - "workaround": 1, - "set": 3, - "variable": 3, - "post": 1, - "run": 2, - "settings": 1, - "notably": 1, - "null": 1, - "dribble": 1, - "buffer": 3, - "debugging": 1, - "only": 1, - "dialect": 1, - "current": 2, - "arg": 1, - "let*": 2, - "jl": 2, - "space": 1, - "just": 1, - "case": 1, - "read": 1, - "..": 3, - "multi": 1, - "...": 1, - "tb": 1, - "logo": 1, - "goto": 2, - "min": 1, - "while": 1, - "search": 1, - "forward": 1, - "replace": 1, - "match": 1, - "max": 1, - "inject": 1, - "code": 1, - "etc": 1, - "hooks": 1, - "busy": 1, - "funname": 5, - "eldoc": 1, - "show": 1, - "symbol": 2, - "aggressive": 1, - "car": 1, - "funname.start": 1, - "sequence": 1, - "nth": 1, - "W": 1, - "window": 2, - "width": 1, - "minibuffer": 1, - "length": 1, - "doc": 1, - "propertize": 1, - "use": 1, - "classes": 1, - "screws": 1, - "egrep": 1 - }, - "Erlang": { - "SHEBANG#!escript": 3, - "%": 134, - "-": 262, - "*": 9, - "erlang": 5, - "smp": 1, - "enable": 1, - "sname": 1, - "factorial": 1, - "mnesia": 1, - "debug": 1, - "verbose": 1, - "main": 4, - "(": 236, - "[": 66, - "String": 2, - "]": 61, - ")": 230, - "try": 2, - "N": 6, - "list_to_integer": 1, - "F": 16, - "fac": 4, - "io": 5, - "format": 7, - "catch": 2, - "_": 52, - "usage": 3, - "end": 3, - ";": 56, - ".": 37, - "halt": 2, - "export": 2, - "main/1": 1, - "For": 1, - "each": 1, - "header": 1, - "file": 6, - "it": 2, - "scans": 1, - "thru": 1, - "all": 1, - "records": 1, - "and": 8, - "create": 1, - "helper": 1, - "functions": 2, - "Helper": 1, - "are": 3, - "setters": 1, - "getters": 1, - "fields": 4, - "fields_atom": 4, - "type": 6, - "module": 2, - "record_helper": 1, - "make/1": 1, - "make/2": 1, - "make": 3, - "HeaderFiles": 5, - "atom_to_list": 18, - "X": 12, - "||": 6, - "<->": 5, - "hrl": 1, - "relative": 1, - "to": 2, - "current": 1, - "dir": 1, - "OutDir": 4, - "ModuleName": 3, - "HeaderComment": 2, - "ModuleDeclaration": 2, - "+": 214, - "<": 1, - "Src": 10, - "format_src": 8, - "lists": 11, - "sort": 1, - "flatten": 6, - "read": 2, - "generate_type_default_function": 2, - "write_file": 1, - "erl": 1, - "list_to_binary": 1, - "HeaderFile": 4, - "epp": 1, - "parse_file": 1, - "of": 9, - "{": 109, - "ok": 34, - "Tree": 4, - "}": 109, - "parse": 2, - "error": 4, - "Error": 4, - "catched_error": 1, - "end.": 3, - "|": 25, - "T": 24, - "when": 29, - "length": 6, - "Type": 3, - "A": 5, - "B": 4, - "NSrc": 4, - "_Type": 1, - "Type1": 2, - "parse_record": 3, - "attribute": 1, - "record": 4, - "RecordInfo": 2, - "RecordName": 41, - "RecordFields": 10, - "if": 1, - "generate_setter_getter_function": 5, - "generate_type_function": 3, - "true": 3, - "generate_fields_function": 2, - "generate_fields_atom_function": 2, - "parse_field_name": 5, - "record_field": 9, - "atom": 9, - "FieldName": 26, - "field": 4, - "_FieldName": 2, - "ParentRecordName": 8, - "parent_field": 2, - "parse_field_name_atom": 5, - "concat": 5, - "_S": 3, - "S": 6, - "concat_ext": 4, - "parse_field": 6, - "AccFields": 6, - "AccParentFields": 6, - "case": 3, - "Field": 2, - "PField": 2, - "parse_field_atom": 4, - "zzz": 1, - "Fields": 4, - "field_atom": 1, - "to_setter_getter_function": 5, - "setter": 2, - "getter": 2, - "This": 2, - "is": 1, - "auto": 1, - "generated": 1, - "file.": 1, - "Please": 1, - "don": 1, - "t": 1, - "edit": 1, - "record_utils": 1, - "compile": 2, - "export_all": 1, - "include": 1, - "abstract_message": 21, - "async_message": 12, - "clientId": 5, - "destination": 5, - "messageId": 5, - "timestamp": 5, - "timeToLive": 5, - "headers": 5, - "body": 5, - "correlationId": 5, - "correlationIdBytes": 5, - "get": 12, - "Obj": 49, - "is_record": 25, - "Obj#abstract_message.body": 1, - "Obj#abstract_message.clientId": 1, - "Obj#abstract_message.destination": 1, - "Obj#abstract_message.headers": 1, - "Obj#abstract_message.messageId": 1, - "Obj#abstract_message.timeToLive": 1, - "Obj#abstract_message.timestamp": 1, - "Obj#async_message.correlationId": 1, - "Obj#async_message.correlationIdBytes": 1, - "parent": 5, - "Obj#async_message.parent": 3, - "ParentProperty": 6, - "is_atom": 2, - "set": 13, - "Value": 35, - "NewObj": 20, - "Obj#abstract_message": 7, - "Obj#async_message": 3, - "NewParentObject": 2, - "undefined.": 1, - "Mode": 1, - "coding": 1, - "utf": 1, - "tab": 1, - "width": 1, - "c": 2, - "basic": 1, - "offset": 1, - "indent": 1, - "tabs": 1, - "mode": 2, - "BSD": 1, - "LICENSE": 1, - "Copyright": 1, - "Michael": 2, - "Truog": 2, - "": 1, - "at": 1, - "gmail": 1, - "dot": 1, - "com": 1, - "All": 2, - "rights": 1, - "reserved.": 1, - "Redistribution": 1, - "use": 2, - "in": 3, - "source": 2, - "binary": 2, - "forms": 1, - "with": 2, - "or": 3, - "without": 2, - "modification": 1, - "permitted": 1, - "provided": 2, - "that": 1, - "the": 9, - "following": 4, - "conditions": 3, - "met": 1, - "Redistributions": 2, - "code": 2, - "must": 3, - "retain": 1, - "above": 2, - "copyright": 2, - "notice": 2, - "this": 4, - "list": 2, - "disclaimer.": 1, - "form": 1, - "reproduce": 1, - "disclaimer": 1, - "documentation": 1, - "and/or": 1, - "other": 1, - "materials": 2, - "distribution.": 1, - "advertising": 1, - "mentioning": 1, - "features": 1, - "software": 3, - "display": 1, - "acknowledgment": 1, - "product": 1, - "includes": 1, - "developed": 1, - "by": 1, - "The": 1, - "name": 1, - "author": 2, - "may": 1, - "not": 1, - "be": 1, - "used": 1, - "endorse": 1, - "promote": 1, - "products": 1, - "derived": 1, - "from": 1, - "specific": 1, - "prior": 1, - "written": 1, - "permission": 1, - "THIS": 2, - "SOFTWARE": 2, - "IS": 1, - "PROVIDED": 1, - "BY": 1, - "THE": 5, - "COPYRIGHT": 2, - "HOLDERS": 1, - "AND": 4, - "CONTRIBUTORS": 2, - "ANY": 4, - "EXPRESS": 1, - "OR": 8, - "IMPLIED": 2, - "WARRANTIES": 2, - "INCLUDING": 3, - "BUT": 2, - "NOT": 2, - "LIMITED": 2, - "TO": 2, - "OF": 8, - "MERCHANTABILITY": 1, - "FITNESS": 1, - "FOR": 2, - "PARTICULAR": 1, - "PURPOSE": 1, - "ARE": 1, - "DISCLAIMED.": 1, - "IN": 3, - "NO": 1, - "EVENT": 1, - "SHALL": 1, - "OWNER": 1, - "BE": 1, - "LIABLE": 1, - "DIRECT": 1, - "INDIRECT": 1, - "INCIDENTAL": 1, - "SPECIAL": 1, - "EXEMPLARY": 1, - "CONSEQUENTIAL": 1, - "DAMAGES": 1, - "PROCUREMENT": 1, - "SUBSTITUTE": 1, - "GOODS": 1, - "SERVICES": 1, - "LOSS": 1, - "USE": 2, - "DATA": 1, - "PROFITS": 1, - "BUSINESS": 1, - "INTERRUPTION": 1, - "HOWEVER": 1, - "CAUSED": 1, - "ON": 1, - "THEORY": 1, - "LIABILITY": 2, - "WHETHER": 1, - "CONTRACT": 1, - "STRICT": 1, - "TORT": 1, - "NEGLIGENCE": 1, - "OTHERWISE": 1, - "ARISING": 1, - "WAY": 1, - "OUT": 1, - "EVEN": 1, - "IF": 1, - "ADVISED": 1, - "POSSIBILITY": 1, - "SUCH": 1, - "DAMAGE.": 1, - "sys": 2, - "RelToolConfig": 5, - "target_dir": 2, - "TargetDir": 14, - "overlay": 2, - "OverlayConfig": 4, - "consult": 1, - "Spec": 2, - "reltool": 2, - "get_target_spec": 1, - "make_dir": 1, - "eexist": 1, - "exit_code": 3, - "eval_target_spec": 1, - "root_dir": 1, - "process_overlay": 2, - "shell": 3, - "Command": 3, - "Arguments": 3, - "CommandSuffix": 2, - "reverse": 4, - "os": 1, - "cmd": 1, - "io_lib": 2, - "boot_rel_vsn": 2, - "Config": 2, - "_RelToolConfig": 1, - "rel": 2, - "_Name": 1, - "Ver": 1, - "proplists": 1, - "lookup": 1, - "Ver.": 1, - "minimal": 2, - "parsing": 1, - "for": 1, - "handling": 1, - "mustache": 11, - "syntax": 1, - "Body": 2, - "Context": 11, - "Result": 10, - "_Context": 1, - "KeyStr": 6, - "mustache_key": 4, - "C": 4, - "Rest": 10, - "Key": 2, - "list_to_existing_atom": 1, - "dict": 2, - "find": 1, - "support": 1, - "based": 1, - "on": 1, - "rebar": 1, - "overlays": 1, - "BootRelVsn": 2, - "OverlayVars": 2, - "from_list": 1, - "erts_vsn": 1, - "system_info": 1, - "version": 1, - "rel_vsn": 1, - "hostname": 1, - "net_adm": 1, - "localhost": 1, - "BaseDir": 7, - "get_cwd": 1, - "execute_overlay": 6, - "_Vars": 1, - "_BaseDir": 1, - "_TargetDir": 1, - "mkdir": 1, - "Out": 4, - "Vars": 7, - "filename": 3, - "join": 3, - "copy": 1, - "In": 2, - "InFile": 3, - "OutFile": 2, - "filelib": 1, - "is_file": 1, - "ExitCode": 2, - "flush": 1 - }, - "fish": { - "#": 18, - "set": 49, - "-": 102, - "g": 1, - "IFS": 4, - "n": 5, - "t": 2, - "l": 15, - "configdir": 2, - "/.config": 1, - "if": 21, - "q": 9, - "XDG_CONFIG_HOME": 2, - "end": 33, - "not": 8, - "fish_function_path": 4, - "configdir/fish/functions": 1, - "__fish_sysconfdir/functions": 1, - "__fish_datadir/functions": 3, - "contains": 4, - "[": 13, - "]": 13, - "fish_complete_path": 4, - "configdir/fish/completions": 1, - "__fish_sysconfdir/completions": 1, - "__fish_datadir/completions": 3, - "test": 7, - "d": 3, - "/usr/xpg4/bin": 3, - "PATH": 6, - "path_list": 4, - "/bin": 1, - "/usr/bin": 1, - "/usr/X11R6/bin": 1, - "/usr/local/bin": 1, - "__fish_bin_dir": 1, - "switch": 3, - "USER": 1, - "case": 9, - "root": 1, - "/sbin": 1, - "/usr/sbin": 1, - "/usr/local/sbin": 1, - "for": 1, - "i": 5, - "in": 2, - "function": 6, - "fish_sigtrap_handler": 1, - "on": 2, - "signal": 1, - "TRAP": 1, - "no": 2, - "scope": 1, - "shadowing": 1, - "description": 2, - "breakpoint": 1, - "__fish_on_interactive": 2, - "event": 1, - "fish_prompt": 1, - "__fish_config_interactive": 1, - "functions": 5, - "e": 6, - "eval": 5, - "S": 1, - "If": 2, - "we": 2, - "are": 1, - "an": 1, - "interactive": 8, - "shell": 1, - "should": 2, - "enable": 1, - "full": 4, - "job": 5, - "control": 5, - "since": 1, - "it": 1, - "behave": 1, - "like": 2, - "the": 1, - "real": 1, - "code": 1, - "was": 1, - "executed.": 1, - "don": 1, - "do": 1, - "this": 1, - "commands": 1, - "that": 1, - "expect": 1, - "to": 1, - "be": 1, - "used": 1, - "interactively": 1, - "less": 1, - "wont": 1, - "work": 1, - "using": 1, - "eval.": 1, - "mode": 5, - "status": 7, - "is": 3, - "else": 3, - "none": 1, - "echo": 3, - "|": 3, - ".": 2, - "<": 1, - "&": 1, - "res": 2, - "return": 6, - "funced": 3, - "editor": 7, - "EDITOR": 1, - "funcname": 14, - "while": 2, - "argv": 9, - "h": 1, - "help": 1, - "__fish_print_help": 1, - "set_color": 4, - "red": 2, - "printf": 3, - "(": 7, - "_": 3, - ")": 7, - "normal": 2, - "begin": 2, - ";": 7, - "or": 3, - "init": 5, - "nend": 2, - "editor_cmd": 2, - "type": 1, - "f": 3, - "/dev/null": 2, - "fish": 3, - "z": 1, - "fish_indent": 2, - "indent": 1, - "prompt": 2, - "read": 1, - "p": 1, - "c": 1, - "s": 1, - "cmd": 2, - "TMPDIR": 2, - "/tmp": 1, - "tmpname": 8, - "%": 2, - "self": 2, - "random": 2, - "stat": 2, - "rm": 1 - }, - "Forth": { - "(": 88, - "Block": 2, - "words.": 6, - ")": 87, - "variable": 3, - "blk": 3, - "current": 5, - "-": 473, - "block": 8, - "n": 22, - "addr": 11, - ";": 61, - "buffer": 2, - "evaluate": 1, - "extended": 3, - "semantics": 3, - "flush": 1, - "load": 2, - "...": 4, - "dup": 10, - "save": 2, - "input": 2, - "in": 4, - "@": 13, - "source": 5, - "#source": 2, - "interpret": 1, - "restore": 1, - "buffers": 2, - "update": 1, - "extension": 4, - "empty": 2, - "scr": 2, - "list": 1, - "bounds": 1, - "do": 2, - "i": 5, - "emit": 2, - "loop": 4, - "refill": 2, - "thru": 1, - "x": 10, - "y": 5, - "+": 17, - "swap": 12, - "*": 9, - "forth": 2, - "Copyright": 3, - "Lars": 3, - "Brinkhoff": 3, - "Kernel": 4, - "#tib": 2, - "TODO": 12, - ".r": 1, - ".": 5, - "[": 16, - "char": 10, - "]": 15, - "parse": 5, - "type": 3, - "immediate": 19, - "<": 14, - "flag": 4, - "r": 18, - "x1": 5, - "x2": 5, - "R": 13, - "rot": 2, - "r@": 2, - "noname": 1, - "align": 2, - "here": 9, - "c": 3, - "allot": 2, - "lastxt": 4, - "SP": 1, - "query": 1, - "tib": 1, - "body": 1, - "true": 1, - "tuck": 2, - "over": 5, - "u.r": 1, - "u": 3, - "if": 9, - "drop": 4, - "false": 1, - "else": 6, - "then": 5, - "unused": 1, - "value": 1, - "create": 2, - "does": 5, - "within": 1, - "compile": 2, - "Forth2012": 2, - "core": 1, - "action": 1, - "of": 3, - "defer": 2, - "name": 1, - "s": 4, - "c@": 2, - "negate": 1, - "nip": 2, - "bl": 4, - "word": 9, - "ahead": 2, - "resolve": 4, - "literal": 4, - "postpone": 14, - "nonimmediate": 1, - "caddr": 1, - "C": 9, - "find": 2, - "cells": 1, - "postponers": 1, - "execute": 1, - "unresolved": 4, - "orig": 5, - "chars": 1, - "n1": 2, - "n2": 2, - "orig1": 1, - "orig2": 1, - "branch": 5, - "dodoes_code": 1, - "code": 3, - "begin": 2, - "dest": 5, - "while": 2, - "repeat": 2, - "until": 1, - "recurse": 1, - "pad": 3, - "If": 1, - "necessary": 1, - "and": 3, - "keep": 1, - "parsing.": 1, - "string": 3, - "cmove": 1, - "state": 2, - "cr": 3, - "abort": 3, - "": 1, - "Undefined": 1, - "ok": 1, - "HELLO": 4, - "KataDiversion": 1, - "Forth": 1, - "utils": 1, - "the": 7, - "stack": 3, - "EMPTY": 1, - "DEPTH": 2, - "IF": 10, - "BEGIN": 3, - "DROP": 5, - "UNTIL": 3, - "THEN": 10, - "power": 2, - "**": 2, - "n1_pow_n2": 1, - "SWAP": 8, - "DUP": 14, - "DO": 2, - "OVER": 2, - "LOOP": 2, - "NIP": 4, - "compute": 1, - "highest": 1, - "below": 1, - "N.": 1, - "e.g.": 2, - "MAXPOW2": 2, - "log2_n": 1, - "ABORT": 1, - "ELSE": 7, - "|": 4, - "I": 5, - "i*2": 1, - "/": 3, - "kata": 1, - "test": 1, - "given": 3, - "N": 6, - "has": 1, - "two": 2, - "adjacent": 2, - "bits": 3, - "NOT": 3, - "TWO": 3, - "ADJACENT": 3, - "BITS": 3, - "bool": 1, - "uses": 1, - "following": 1, - "algorithm": 1, - "return": 5, - "A": 5, - "X": 5, - "LOG2": 1, - "end": 1, - "OR": 1, - "INVERT": 1, - "maximum": 1, - "number": 4, - "which": 3, - "can": 2, - "be": 2, - "made": 2, - "with": 2, - "MAX": 2, - "NB": 3, - "m": 2, - "**n": 1, - "numbers": 1, - "or": 1, - "less": 1, - "have": 1, - "not": 1, - "bits.": 1, - "see": 1, - "http": 1, - "//www.codekata.com/2007/01/code_kata_fifte.html": 1, - "HOW": 1, - "MANY": 1, - "Tools": 2, - ".s": 1, - "depth": 1, - "traverse": 1, - "dictionary": 1, - "assembler": 1, - "kernel": 1, - "bye": 1, - "cs": 2, - "pick": 1, - "roll": 1, - "editor": 1, - "forget": 1, - "reveal": 1, - "tools": 1, - "nr": 1, - "synonym": 1, - "undefined": 2, - "defined": 1, - "invert": 1, - "/cell": 2, - "cell": 2 - }, - "Frege": { - "module": 2, - "examples.CommandLineClock": 1, - "where": 39, - "data": 3, - "Date": 5, - "native": 4, - "java.util.Date": 1, - "new": 9, - "(": 339, - ")": 345, - "-": 730, - "IO": 13, - "MutableIO": 1, - "toString": 2, - "Mutable": 1, - "s": 21, - "ST": 1, - "String": 9, - "d.toString": 1, - "action": 2, - "to": 13, - "give": 2, - "us": 1, - "the": 20, - "current": 4, - "time": 1, - "as": 33, - "do": 38, - "d": 3, - "<->": 35, - "java": 5, - "lang": 2, - "Thread": 2, - "sleep": 4, - "takes": 1, - "a": 99, - "long": 4, - "and": 14, - "returns": 2, - "nothing": 2, - "but": 2, - "may": 1, - "throw": 1, - "an": 6, - "InterruptedException": 4, - "This": 2, - "is": 24, - "without": 1, - "doubt": 1, - "public": 1, - "static": 1, - "void": 2, - "millis": 1, - "throws": 4, - "Encoded": 1, - "in": 22, - "Frege": 1, - "argument": 1, - "type": 8, - "Long": 3, - "result": 11, - "does": 2, - "defined": 1, - "frege": 1, - "Lang": 1, - "main": 11, - "args": 2, - "forever": 1, - "print": 25, - "stdout.flush": 1, - "Thread.sleep": 4, - "examples.Concurrent": 1, - "import": 7, - "System.Random": 1, - "Java.Net": 1, - "URL": 2, - "Control.Concurrent": 1, - "C": 6, - "main2": 1, - "m": 2, - "<": 84, - "newEmptyMVar": 1, - "forkIO": 11, - "m.put": 3, - "replicateM_": 3, - "c": 33, - "m.take": 1, - "println": 25, - "example1": 1, - "putChar": 2, - "example2": 2, - "getLine": 2, - "case": 6, - "of": 32, - "Right": 6, - "n": 38, - "setReminder": 3, - "Left": 5, - "_": 60, - "+": 200, - "show": 24, - "L*n": 1, - "table": 1, - "mainPhil": 2, - "[": 120, - "fork1": 3, - "fork2": 3, - "fork3": 3, - "fork4": 3, - "fork5": 3, - "]": 116, - "mapM": 3, - "MVar": 3, - "1": 2, - "5": 1, - "philosopher": 7, - "Kant": 1, - "Locke": 1, - "Wittgenstein": 1, - "Nozick": 1, - "Mises": 1, - "return": 17, - "Int": 6, - "me": 13, - "left": 4, - "right": 4, - "g": 4, - "Random.newStdGen": 1, - "let": 8, - "phil": 4, - "tT": 2, - "g1": 2, - "Random.randomR": 2, - "L": 6, - "eT": 2, - "g2": 3, - "thinkTime": 3, - "*": 5, - "eatTime": 3, - "fl": 4, - "left.take": 1, - "rFork": 2, - "poll": 1, - "Just": 2, - "fr": 3, - "right.put": 1, - "left.put": 2, - "table.notifyAll": 2, - "Nothing": 2, - "table.wait": 1, - "inter": 3, - "catch": 2, - "getURL": 4, - "xx": 2, - "url": 1, - "URL.new": 1, - "con": 3, - "url.openConnection": 1, - "con.connect": 1, - "con.getInputStream": 1, - "typ": 5, - "con.getContentType": 1, - "stderr.println": 3, - "ir": 2, - "InputStreamReader.new": 2, - "fromMaybe": 1, - "charset": 2, - "unsupportedEncoding": 3, - "br": 4, - "BufferedReader": 1, - "getLines": 1, - "InputStream": 1, - "UnsupportedEncodingException": 1, - "InputStreamReader": 1, - "x": 45, - "x.catched": 1, - "ctyp": 2, - "charset=": 1, - "m.group": 1, - "SomeException": 2, - "Throwable": 1, - "m1": 1, - "MVar.newEmpty": 3, - "m2": 1, - "m3": 2, - "r": 7, - "catchAll": 3, - ".": 41, - "m1.put": 1, - "m2.put": 1, - "m3.put": 1, - "r1": 2, - "m1.take": 1, - "r2": 3, - "m2.take": 1, - "r3": 3, - "take": 13, - "ss": 8, - "mapM_": 5, - "putStrLn": 2, - "|": 62, - "x.getClass.getName": 1, - "y": 15, - "sum": 2, - "map": 49, - "length": 20, - "package": 2, - "examples.Sudoku": 1, - "Data.TreeMap": 1, - "Tree": 4, - "keys": 2, - "Data.List": 1, - "DL": 1, - "hiding": 1, - "find": 20, - "union": 10, - "Element": 6, - "Zelle": 8, - "set": 4, - "candidates": 18, - "Position": 22, - "Feld": 3, - "Brett": 13, - "for": 25, - "assumptions": 10, - "conclusions": 2, - "Assumption": 21, - "ISNOT": 14, - "IS": 16, - "derive": 2, - "Eq": 1, - "Ord": 1, - "instance": 1, - "Show": 1, - "p": 72, - "e": 15, - "pname": 10, - "e.show": 2, - "showcs": 5, - "cs": 27, - "joined": 4, - "Assumption.show": 1, - "elements": 12, - "all": 22, - "possible": 2, - "..": 1, - "positions": 16, - "rowstarts": 4, - "row": 20, - "starting": 3, - "colstarts": 3, - "column": 2, - "boxstarts": 3, - "box": 15, - "boxmuster": 3, - "pattern": 1, - "by": 3, - "adding": 1, - "upper": 2, - "position": 9, - "results": 1, - "real": 1, - "extract": 2, - "field": 9, - "getf": 16, - "f": 19, - "fs": 22, - "fst": 9, - "otherwise": 8, - "cell": 24, - "getc": 12, - "b": 113, - "snd": 20, - "compute": 5, - "list": 7, - "that": 18, - "belong": 3, - "same": 8, - "given": 3, - "z..": 1, - "z": 12, - "quot": 1, - "col": 17, - "mod": 3, - "ri": 2, - "div": 3, - "or": 15, - "depending": 1, - "on": 4, - "ci": 3, - "index": 3, - "middle": 2, - "check": 2, - "if": 5, - "candidate": 10, - "has": 2, - "exactly": 2, - "one": 2, - "member": 1, - "i.e.": 1, - "been": 1, - "solved": 1, - "single": 9, - "Bool": 2, - "true": 16, - "false": 13, - "unsolved": 10, - "rows": 4, - "cols": 6, - "boxes": 1, - "allrows": 8, - "allcols": 5, - "allboxs": 5, - "allrcb": 5, - "zip": 7, - "repeat": 3, - "containers": 6, - "PRINTING": 1, - "printable": 1, - "coordinate": 1, - "a1": 3, - "lower": 1, - "i9": 1, - "packed": 1, - "chr": 2, - "ord": 6, - "board": 41, - "printb": 4, - "p1line": 2, - "pfld": 4, - "line": 2, - "brief": 1, - "no": 4, - "some": 2, - "zs": 1, - "initial/final": 1, - "msg": 6, - "res012": 2, - "concatMap": 1, - "a*100": 1, - "b*10": 1, - "BOARD": 1, - "ALTERATION": 1, - "ACTIONS": 1, - "message": 1, - "about": 1, - "what": 1, - "done": 1, - "turnoff1": 3, - "i": 16, - "off": 11, - "nc": 7, - "head": 19, - "newb": 7, - "filter": 26, - "notElem": 7, - "turnoff": 11, - "turnoffh": 1, - "ps": 8, - "foldM": 2, - "toh": 2, - "setto": 3, - "cname": 4, - "nf": 2, - "SOLVING": 1, - "STRATEGIES": 1, - "reduce": 3, - "sets": 2, - "contains": 1, - "numbers": 1, - "already": 1, - "finds": 1, - "logs": 1, - "NAKED": 5, - "SINGLEs": 1, - "passing.": 1, - "sss": 3, - "each": 2, - "with": 15, - "more": 2, - "than": 2, - "fields": 6, - "are": 6, - "rcb": 16, - "elem": 16, - "collect": 1, - "remove": 3, - "from": 7, - "look": 10, - "number": 4, - "appears": 1, - "container": 9, - "this": 2, - "can": 9, - "go": 1, - "other": 2, - "place": 1, - "HIDDEN": 6, - "SINGLE": 1, - "hiddenSingle": 2, - "select": 1, - "containername": 1, - "FOR": 11, - "IN": 9, - "occurs": 5, - "PAIRS": 8, - "TRIPLES": 8, - "QUADS": 2, - "nakedPair": 4, - "t": 14, - "nm": 6, - "SELECT": 3, - "pos": 5, - "tuple": 2, - "name": 2, - "//": 8, - "u": 6, - "fold": 7, - "non": 2, - "outof": 6, - "tuples": 2, - "hit": 7, - "subset": 3, - "any": 3, - "hiddenPair": 4, - "minus": 2, - "uniq": 4, - "sort": 4, - "common": 4, - "bs": 7, - "undefined": 1, - "cannot": 1, - "happen": 1, - "because": 1, - "either": 1, - "empty": 4, - "not": 5, - "intersectionlist": 2, - "intersections": 2, - "reason": 8, - "reson": 1, - "cpos": 7, - "WHERE": 2, - "tail": 2, - "intersection": 1, - "we": 5, - "occurences": 1, - "XY": 2, - "Wing": 2, - "there": 6, - "exists": 6, - "A": 7, - "X": 5, - "Y": 4, - "B": 5, - "Z": 6, - "shares": 2, - "reasoning": 1, - "will": 4, - "be": 9, - "since": 1, - "indeed": 1, - "thus": 1, - "see": 1, - "xyWing": 2, - "rcba": 4, - "share": 1, - "b1": 11, - "b2": 10, - "&&": 9, - "||": 2, - "then": 1, - "else": 1, - "c1": 4, - "c2": 3, - "N": 5, - "Fish": 1, - "Swordfish": 1, - "Jellyfish": 1, - "When": 2, - "particular": 1, - "digit": 1, - "located": 2, - "only": 1, - "columns": 2, - "eliminate": 1, - "those": 2, - "which": 2, - "fish": 7, - "fishname": 5, - "rset": 4, - "certain": 1, - "rflds": 2, - "rowset": 1, - "colss": 3, - "must": 4, - "appear": 1, - "at": 3, - "least": 3, - "cstart": 2, - "immediate": 1, - "consequences": 6, - "assumption": 8, - "form": 1, - "conseq": 3, - "cp": 3, - "two": 1, - "contradict": 2, - "contradicts": 7, - "get": 3, - "aPos": 5, - "List": 1, - "turned": 1, - "when": 2, - "true/false": 1, - "toClear": 7, - "whose": 1, - "implications": 5, - "themself": 1, - "chain": 2, - "paths": 12, - "solution": 6, - "reverse": 4, - "css": 7, - "yields": 1, - "contradictory": 1, - "chainContra": 2, - "pro": 7, - "contra": 4, - "ALL": 2, - "conlusions": 1, - "uniqBy": 2, - "using": 2, - "sortBy": 2, - "comparing": 2, - "conslusion": 1, - "chains": 4, - "LET": 1, - "BE": 1, - "final": 2, - "conclusion": 4, - "THE": 1, - "FIRST": 1, - "implication": 2, - "ai": 2, - "so": 1, - "a0": 1, - "OR": 7, - "a2": 2, - "...": 2, - "IMPLIES": 1, - "For": 2, - "cells": 1, - "pi": 2, - "have": 1, - "construct": 2, - "p0": 1, - "p1": 1, - "c0": 1, - "cellRegionChain": 2, - "os": 3, - "cellas": 2, - "regionas": 2, - "iss": 3, - "ass": 2, - "first": 2, - "candidates@": 1, - "region": 2, - "oss": 2, - "Liste": 1, - "aller": 1, - "Annahmen": 1, - "ein": 1, - "bestimmtes": 1, - "acstree": 3, - "Tree.fromList": 1, - "bypass": 1, - "maybe": 1, - "tree": 1, - "lookup": 2, - "error": 1, - "performance": 1, - "resons": 1, - "confine": 1, - "ourselves": 1, - "20": 1, - "per": 1, - "mkPaths": 3, - "acst": 3, - "impl": 2, - "{": 1, - "a3": 1, - "ordered": 1, - "impls": 2, - "ns": 2, - "concat": 1, - "takeUntil": 1, - "null": 1, - "iterate": 1, - "expandchain": 3, - "avoid": 1, - "loops": 1, - "uni": 3, - "SOLVE": 1, - "SUDOKU": 1, - "Apply": 1, - "available": 1, - "strategies": 1, - "until": 1, - "changes": 1, - "anymore": 1, - "Strategy": 1, - "functions": 2, - "supposed": 1, - "applied": 1, - "changed": 1, - "board.": 1, - "strategy": 2, - "anything": 1, - "alter": 1, - "it": 2, - "next": 1, - "tried.": 1, - "solve": 19, - "res@": 16, - "apply": 17, - "res": 16, - "smallest": 1, - "comment": 16, - "SINGLES": 1, - "locked": 1, - "2": 3, - "QUADRUPELS": 6, - "3": 3, - "4": 3, - "WINGS": 1, - "FISH": 3, - "pcomment": 2, - "9": 5, - "forcing": 1, - "allow": 1, - "infer": 1, - "both": 1, - "brd": 2, - "com": 5, - "stderr": 3, - "<<": 4, - "log": 1, - "turn": 1, - "string": 3, - "into": 1, - "mkrow": 2, - "mkrow1": 2, - "xs": 4, - "make": 1, - "sure": 1, - "unpacked": 2, - "<=>": 1, - "0": 2, - "ignored": 1, - "h": 1, - "help": 1, - "usage": 1, - "Sudoku": 2, - "file": 4, - "81": 3, - "char": 1, - "consisting": 1, - "digits": 2, - "One": 1, - "such": 1, - "going": 1, - "http": 3, - "www": 1, - "sudokuoftheday": 1, - "pages": 1, - "o": 1, - "php": 1, - "click": 1, - "puzzle": 1, - "open": 1, - "tab": 1, - "Copy": 1, - "address": 1, - "your": 1, - "browser": 1, - "There": 1, - "also": 1, - "hard": 1, - "sudokus": 1, - "examples": 1, - "top95": 1, - "txt": 1, - "W": 1, - "felder": 2, - "decode": 4, - "files": 2, - "forM_": 1, - "sudoku": 2, - "openReader": 1, - "lines": 2, - "BufferedReader.getLines": 1, - "process": 5, - "candi": 2, - "consider": 3, - "acht": 4, - "neun": 2, - "examples.SwingExamples": 1, - "Java.Awt": 1, - "ActionListener": 2, - "Java.Swing": 1, - "rs": 2, - "Runnable.new": 1, - "helloWorldGUI": 2, - "buttonDemoGUI": 2, - "celsiusConverterGUI": 2, - "invokeLater": 1, - "tempTextField": 2, - "JTextField.new": 1, - "celsiusLabel": 1, - "JLabel.new": 3, - "convertButton": 1, - "JButton.new": 3, - "fahrenheitLabel": 1, - "frame": 3, - "JFrame.new": 3, - "frame.setDefaultCloseOperation": 3, - "JFrame.dispose_on_close": 3, - "frame.setTitle": 1, - "celsiusLabel.setText": 1, - "convertButton.setText": 1, - "convertButtonActionPerformed": 2, - "celsius": 3, - "getText": 1, - "double": 1, - "fahrenheitLabel.setText": 3, - "c*1.8": 1, - ".long": 1, - "ActionListener.new": 2, - "convertButton.addActionListener": 1, - "contentPane": 2, - "frame.getContentPane": 2, - "layout": 2, - "GroupLayout.new": 1, - "contentPane.setLayout": 1, - "TODO": 1, - "continue": 1, - "//docs.oracle.com/javase/tutorial/displayCode.html": 1, - "code": 1, - "//docs.oracle.com/javase/tutorial/uiswing/examples/learn/CelsiusConverterProject/src/learn/CelsiusConverterGUI.java": 1, - "frame.pack": 3, - "frame.setVisible": 3, - "label": 2, - "cp.add": 1, - "newContentPane": 2, - "JPanel.new": 1, - "JButton": 4, - "b1.setVerticalTextPosition": 1, - "SwingConstants.center": 2, - "b1.setHorizontalTextPosition": 1, - "SwingConstants.leading": 2, - "b2.setVerticalTextPosition": 1, - "b2.setHorizontalTextPosition": 1, - "b3": 7, - "Enable": 1, - "button": 1, - "setVerticalTextPosition": 1, - "SwingConstants": 2, - "center": 1, - "setHorizontalTextPosition": 1, - "leading": 1, - "setEnabled": 7, - "action1": 2, - "action3": 2, - "b1.addActionListener": 1, - "b3.addActionListener": 1, - "newContentPane.add": 3, - "newContentPane.setOpaque": 1, - "frame.setContentPane": 1 - }, - "Game Maker Language": { - "//draws": 1, - "the": 62, - "sprite": 12, - "draw": 3, - "true": 73, - ";": 1282, - "if": 397, - "(": 1501, - "facing": 17, - "RIGHT": 10, - ")": 1502, - "image_xscale": 17, - "-": 212, - "else": 151, - "blinkToggle": 1, - "{": 300, - "state": 50, - "CLIMBING": 5, - "or": 78, - "sprite_index": 14, - "sPExit": 1, - "sDamselExit": 1, - "sTunnelExit": 1, - "and": 155, - "global.hasJetpack": 4, - "not": 63, - "whipping": 5, - "draw_sprite_ext": 10, - "x": 76, - "y": 85, - "image_yscale": 14, - "image_angle": 14, - "image_blend": 2, - "image_alpha": 10, - "//draw_sprite": 1, - "draw_sprite": 9, - "sJetpackBack": 1, - "false": 85, - "}": 307, - "sJetpackRight": 1, - "sJetpackLeft": 1, - "+": 206, - "redColor": 2, - "make_color_rgb": 1, - "holdArrow": 4, - "ARROW_NORM": 2, - "sArrowRight": 1, - "ARROW_BOMB": 2, - "holdArrowToggle": 2, - "sBombArrowRight": 2, - "LEFT": 7, - "sArrowLeft": 1, - "sBombArrowLeft": 2, - "hangCountMax": 2, - "//////////////////////////////////////": 2, - "kLeft": 12, - "checkLeft": 1, - "kLeftPushedSteps": 3, - "kLeftPressed": 2, - "checkLeftPressed": 1, - "kLeftReleased": 3, - "checkLeftReleased": 1, - "kRight": 12, - "checkRight": 1, - "kRightPushedSteps": 3, - "kRightPressed": 2, - "checkRightPressed": 1, - "kRightReleased": 3, - "checkRightReleased": 1, - "kUp": 5, - "checkUp": 1, - "kDown": 5, - "checkDown": 1, - "//key": 1, - "canRun": 1, - "kRun": 2, - "kJump": 6, - "checkJump": 1, - "kJumpPressed": 11, - "checkJumpPressed": 1, - "kJumpReleased": 5, - "checkJumpReleased": 1, - "cantJump": 3, - "global.isTunnelMan": 1, - "sTunnelAttackL": 1, - "holdItem": 1, - "kAttack": 2, - "checkAttack": 2, - "kAttackPressed": 2, - "checkAttackPressed": 1, - "kAttackReleased": 2, - "checkAttackReleased": 1, - "kItemPressed": 2, - "checkItemPressed": 1, - "xPrev": 1, - "yPrev": 1, - "stunned": 3, - "dead": 3, - "//////////////////////////////////////////": 2, - "colSolidLeft": 4, - "colSolidRight": 3, - "colLeft": 6, - "colRight": 6, - "colTop": 4, - "colBot": 11, - "colLadder": 3, - "colPlatBot": 6, - "colPlat": 5, - "colWaterTop": 3, - "colIceBot": 2, - "runKey": 4, - "isCollisionMoveableSolidLeft": 1, - "isCollisionMoveableSolidRight": 1, - "isCollisionLeft": 2, - "isCollisionRight": 2, - "isCollisionTop": 1, - "isCollisionBottom": 1, - "isCollisionLadder": 1, - "isCollisionPlatformBottom": 1, - "isCollisionPlatform": 1, - "isCollisionWaterTop": 1, - "collision_point": 30, - "oIce": 1, - "checkRun": 1, - "runHeld": 3, - "HANGING": 10, - "approximatelyZero": 4, - "xVel": 24, - "xAcc": 12, - "platformCharacterIs": 23, - "ON_GROUND": 18, - "DUCKING": 4, - "pushTimer": 3, - "//if": 5, - "SS_IsSoundPlaying": 2, - "global.sndPush": 4, - "playSound": 3, - "runAcc": 2, - "abs": 9, - "alarm": 13, - "[": 99, - "]": 103, - "<": 39, - "floor": 11, - "/": 5, - "/xVel": 1, - "instance_exists": 8, - "oCape": 2, - "oCape.open": 6, - "kJumped": 7, - "ladderTimer": 4, - "ladder": 5, - "oLadder": 4, - "ladder.x": 3, - "oLadderTop": 2, - "yAcc": 26, - "climbAcc": 2, - "FALLING": 8, - "STANDING": 2, - "departLadderXVel": 2, - "departLadderYVel": 1, - "JUMPING": 6, - "jumpButtonReleased": 7, - "jumpTime": 8, - "IN_AIR": 5, - "gravityIntensity": 2, - "yVel": 20, - "RUNNING": 3, - "jumps": 3, - "//playSound": 1, - "global.sndLand": 1, - "grav": 22, - "global.hasGloves": 3, - "hangCount": 14, - "*": 18, - "yVel*0.3": 1, - "oWeb": 2, - "obj": 14, - "instance_place": 3, - "obj.life": 1, - "initialJumpAcc": 6, - "xVel/2": 3, - "gravNorm": 7, - "global.hasCape": 1, - "jetpackFuel": 2, - "fallTimer": 2, - "global.hasJordans": 1, - "yAccLimit": 2, - "global.hasSpringShoes": 1, - "global.sndJump": 1, - "jumpTimeTotal": 2, - "//let": 1, - "character": 20, - "continue": 4, - "to": 62, - "jump": 1, - "jumpTime/jumpTimeTotal": 1, - "looking": 2, - "UP": 1, - "LOOKING_UP": 4, - "oSolid": 14, - "move_snap": 6, - "oTree": 4, - "oArrow": 5, - "instance_nearest": 1, - "obj.stuck": 1, - "//the": 2, - "can": 1, - "t": 23, - "want": 1, - "use": 4, - "because": 2, - "is": 9, - "too": 2, - "high": 1, - "yPrevHigh": 1, - "//": 11, - "we": 5, - "ll": 1, - "move": 2, - "correct": 1, - "distance": 1, - "but": 2, - "need": 1, - "shorten": 1, - "out": 4, - "a": 55, - "little": 1, - "ratio": 1, - "xVelInteger": 2, - "/dist*0.9": 1, - "//can": 1, - "be": 4, - "changed": 1, - "moveTo": 2, - "round": 6, - "xVelInteger*ratio": 1, - "yVelInteger*ratio": 1, - "slopeChangeInY": 1, - "maxDownSlope": 1, - "floating": 1, - "just": 1, - "above": 1, - "slope": 1, - "so": 2, - "down": 1, - "upYPrev": 1, - "for": 26, - "<=upYPrev+maxDownSlope;y+=1)>": 1, - "hit": 1, - "solid": 1, - "below": 1, - "upYPrev=": 1, - "I": 1, - "know": 1, - "that": 2, - "this": 2, - "doesn": 1, - "seem": 1, - "make": 1, - "sense": 1, - "of": 25, - "name": 9, - "variable": 1, - "it": 6, - "all": 3, - "works": 1, - "correctly": 1, - "after": 1, - "break": 58, - "loop": 1, - "y=": 1, - "figures": 1, - "what": 1, - "index": 11, - "should": 25, - "characterSprite": 1, - "sets": 1, - "previous": 2, - "previously": 1, - "statePrevPrev": 1, - "statePrev": 2, - "calculates": 1, - "image_speed": 9, - "based": 1, - "on": 4, - "s": 6, - "velocity": 1, - "runAnimSpeed": 1, - "0": 21, - "1": 32, - "sqrt": 1, - "sqr": 2, - "climbAnimSpeed": 1, - "<=>": 3, - "4": 2, - "setCollisionBounds": 3, - "8": 9, - "5": 5, - "DUCKTOHANG": 1, - "image_index": 1, - "limit": 5, - "at": 23, - "animation": 1, - "always": 1, - "looks": 1, - "good": 1, - "var": 79, - "i": 95, - "playerObject": 1, - "playerID": 1, - "player": 36, - "otherPlayerID": 1, - "otherPlayer": 1, - "sameVersion": 1, - "buffer": 1, - "plugins": 4, - "pluginsRequired": 2, - "usePlugins": 1, - "tcp_eof": 3, - "global.serverSocket": 10, - "gotServerHello": 2, - "show_message": 7, - "instance_destroy": 7, - "exit": 10, - "room": 1, - "DownloadRoom": 1, - "keyboard_check": 1, - "vk_escape": 1, - "downloadingMap": 2, - "while": 15, - "tcp_receive": 3, - "min": 4, - "downloadMapBytes": 2, - "buffer_size": 2, - "downloadMapBuffer": 6, - "write_buffer": 2, - "write_buffer_to_file": 1, - "downloadMapName": 3, - "buffer_destroy": 8, - "roomchange": 2, - "do": 1, - "switch": 9, - "read_ubyte": 10, - "case": 50, - "HELLO": 1, - "global.joinedServerName": 2, - "receivestring": 4, - "advertisedMapMd5": 1, - "receiveCompleteMessage": 1, - "global.tempBuffer": 3, - "string_pos": 20, - "Server": 3, - "sent": 7, - "illegal": 2, - "map": 47, - "This": 2, - "server": 10, - "requires": 1, - "following": 2, - "play": 2, - "#": 3, - "suggests": 1, - "optional": 1, - "Error": 2, - "ocurred": 1, - "loading": 1, - "plugins.": 1, - "Maps/": 2, - ".png": 2, - "The": 6, - "version": 4, - "Enter": 1, - "Password": 1, - "Incorrect": 1, - "Password.": 1, - "Incompatible": 1, - "protocol": 3, - "version.": 1, - "Name": 1, - "Exploit": 1, - "Invalid": 2, - "plugin": 6, - "packet": 3, - "ID": 2, - "There": 1, - "are": 1, - "many": 1, - "connections": 1, - "from": 5, - "your": 1, - "IP": 1, - "You": 1, - "have": 2, - "been": 1, - "kicked": 1, - "server.": 1, - ".": 12, - "#Server": 1, - "went": 1, - "invalid": 1, - "internal": 1, - "#Exiting.": 1, - "full.": 1, - "noone": 7, - "ERROR": 1, - "when": 1, - "reading": 1, - "no": 1, - "such": 1, - "unexpected": 1, - "data.": 1, - "until": 1, - "downloadHandle": 3, - "url": 62, - "tmpfile": 3, - "window_oldshowborder": 2, - "window_oldfullscreen": 2, - "timeLeft": 1, - "counter": 1, - "AudioControlPlaySong": 1, - "window_get_showborder": 1, - "window_get_fullscreen": 1, - "window_set_fullscreen": 2, - "window_set_showborder": 1, - "global.updaterBetaChannel": 3, - "UPDATE_SOURCE_BETA": 1, - "UPDATE_SOURCE": 1, - "temp_directory": 1, - "httpGet": 1, - "httpRequestStatus": 1, - "download": 1, - "isn": 1, - "extract": 1, - "downloaded": 1, - "file": 2, - "now.": 1, - "extractzip": 1, - "working_directory": 6, - "execute_program": 1, - "game_end": 1, - "victim": 10, - "killer": 11, - "assistant": 16, - "damageSource": 18, - "argument0": 28, - "argument1": 10, - "argument2": 3, - "argument3": 1, - "//*************************************": 6, - "//*": 3, - "Scoring": 1, - "Kill": 1, - "log": 1, - "recordKillInLog": 1, - "victim.stats": 1, - "DEATHS": 1, - "WEAPON_KNIFE": 1, - "||": 16, - "WEAPON_BACKSTAB": 1, - "killer.stats": 8, - "STABS": 2, - "killer.roundStats": 8, - "POINTS": 10, - "victim.object.currentWeapon.object_index": 1, - "Medigun": 2, - "victim.object.currentWeapon.uberReady": 1, - "BONUS": 2, - "KILLS": 2, - "victim.object.intel": 1, - "DEFENSES": 2, - "recordEventInLog": 1, - "killer.team": 1, - "killer.name": 2, - "global.myself": 4, - "assistant.stats": 2, - "ASSISTS": 2, - "assistant.roundStats": 2, - ".5": 2, - "//SPEC": 1, - "instance_create": 20, - "victim.object.x": 3, - "victim.object.y": 3, - "Spectator": 1, - "Gibbing": 2, - "xoffset": 5, - "yoffset": 5, - "xsize": 3, - "ysize": 3, - "view_xview": 3, - "view_yview": 3, - "view_wview": 2, - "view_hview": 2, - "randomize": 1, - "with": 47, - "victim.object": 2, - "WEAPON_ROCKETLAUNCHER": 1, - "WEAPON_MINEGUN": 1, - "FRAG_BOX": 2, - "WEAPON_REFLECTED_STICKY": 1, - "WEAPON_REFLECTED_ROCKET": 1, - "FINISHED_OFF_GIB": 2, - "GENERATOR_EXPLOSION": 2, - "player.class": 15, - "CLASS_QUOTE": 3, - "global.gibLevel": 14, - "distance_to_point": 3, - "xsize/2": 2, - "ysize/2": 2, - "hasReward": 4, - "repeat": 7, - "createGib": 14, - "PumpkinGib": 1, - "hspeed": 14, - "vspeed": 13, - "random": 21, - "choose": 8, - "Gib": 1, - "player.team": 8, - "TEAM_BLUE": 6, - "BlueClump": 1, - "TEAM_RED": 8, - "RedClump": 1, - "blood": 2, - "BloodDrop": 1, - "blood.hspeed": 1, - "blood.vspeed": 1, - "blood.sprite_index": 1, - "PumpkinJuiceS": 1, - "//All": 1, - "Classes": 1, - "gib": 1, - "head": 1, - "hands": 2, - "feet": 1, - "Headgib": 1, - "//Medic": 1, - "has": 2, - "specially": 1, - "colored": 1, - "CLASS_MEDIC": 2, - "Hand": 3, - "Feet": 1, - "//Class": 1, - "specific": 1, - "gibs": 1, - "CLASS_PYRO": 2, - "Accesory": 5, - "CLASS_SOLDIER": 2, - "CLASS_ENGINEER": 3, - "CLASS_SNIPER": 3, - "playsound": 2, - "deadbody": 2, - "DeathSnd1": 1, - "DeathSnd2": 1, - "DeadGuy": 1, - "deadbody.sprite_index": 2, - "haxxyStatue": 1, - "deadbody.image_index": 2, - "CHARACTER_ANIMATION_DEAD": 1, - "deadbody.hspeed": 1, - "deadbody.vspeed": 1, - "deadbody.image_xscale": 1, - "global.gg_birthday": 1, - "myHat": 2, - "PartyHat": 1, - "myHat.image_index": 2, - "victim.team": 2, - "global.xmas": 1, - "XmasHat": 1, - "Deathcam": 1, - "global.killCam": 3, - "KILL_BOX": 1, - "FINISHED_OFF": 5, - "DeathCam": 1, - "DeathCam.killedby": 1, - "DeathCam.name": 1, - "DeathCam.oldxview": 1, - "DeathCam.oldyview": 1, - "DeathCam.lastDamageSource": 1, - "DeathCam.team": 1, - "global.myself.team": 3, - "xr": 19, - "yr": 19, - "cloakAlpha": 1, - "team": 13, - "canCloak": 1, - "cloakAlpha/2": 1, - "invisible": 1, - "stabbing": 2, - "power": 1, - "currentWeapon.stab.alpha": 1, - "&&": 6, - "global.showHealthBar": 3, - "draw_set_alpha": 3, - "draw_healthbar": 1, - "hp*100/maxHp": 1, - "c_black": 1, - "c_red": 3, - "c_green": 1, - "mouse_x": 1, - "mouse_y": 1, - "<25)>": 1, - "cloak": 2, - "global": 8, - "myself": 2, - "draw_set_halign": 1, - "fa_center": 1, - "draw_set_valign": 1, - "fa_bottom": 1, - "team=": 1, - "draw_set_color": 2, - "c_blue": 2, - "draw_text": 4, - "35": 1, - "showTeammateStats": 1, - "weapons": 3, - "50": 3, - "Superburst": 1, - "string": 13, - "currentWeapon": 2, - "uberCharge": 1, - "20": 1, - "Shotgun": 1, - "Nuts": 1, - "N": 1, - "Bolts": 1, - "nutsNBolts": 1, - "Minegun": 1, - "Lobbed": 1, - "Mines": 1, - "lobbed": 1, - "ubercolour": 6, - "overlaySprite": 6, - "zoomed": 1, - "SniperCrouchRedS": 1, - "SniperCrouchBlueS": 1, - "sniperCrouchOverlay": 1, - "overlay": 1, - "omnomnomnom": 2, - "draw_sprite_ext_overlay": 7, - "omnomnomnomSprite": 2, - "omnomnomnomOverlay": 2, - "omnomnomnomindex": 4, - "c_white": 13, - "ubered": 7, - "7": 4, - "taunting": 2, - "tauntsprite": 2, - "tauntOverlay": 2, - "tauntindex": 2, - "humiliated": 1, - "humiliationPoses": 1, - "animationImage": 9, - "humiliationOffset": 1, - "animationOffset": 6, - "burnDuration": 2, - "burnIntensity": 2, - "numFlames": 1, - "maxIntensity": 1, - "FlameS": 1, - "flameArray_x": 1, - "flameArray_y": 1, - "maxDuration": 1, - "demon": 4, - "demonX": 5, - "median": 2, - "demonY": 4, - "demonOffset": 4, - "demonDir": 2, - "dir": 3, - "demonFrame": 5, - "sprite_get_number": 1, - "*player.team": 2, - "dir*1": 2, - "#define": 26, - "__http_init": 3, - "global.__HttpClient": 4, - "object_add": 1, - "object_set_persistent": 1, - "__http_split": 3, - "text": 19, - "delimeter": 7, - "list": 36, - "count": 4, - "ds_list_create": 5, - "ds_list_add": 23, - "string_copy": 32, - "string_length": 25, - "return": 56, - "__http_parse_url": 4, - "ds_map_create": 4, - "ds_map_add": 15, - "colonPos": 22, - "string_char_at": 13, - "slashPos": 13, - "real": 14, - "queryPos": 12, - "ds_map_destroy": 6, - "__http_resolve_url": 2, - "baseUrl": 3, - "refUrl": 18, - "urlParts": 15, - "refUrlParts": 5, - "canParseRefUrl": 3, - "result": 11, - "ds_map_find_value": 22, - "__http_resolve_path": 3, - "ds_map_replace": 3, - "ds_map_exists": 11, - "ds_map_delete": 1, - "path": 10, - "query": 4, - "relUrl": 1, - "__http_construct_url": 2, - "basePath": 4, - "refPath": 7, - "parts": 29, - "refParts": 5, - "lastPart": 3, - "ds_list_find_value": 9, - "ds_list_size": 11, - "ds_list_delete": 5, - "ds_list_destroy": 4, - "part": 6, - "ds_list_replace": 3, - "__http_parse_hex": 2, - "hexString": 4, - "hexValues": 3, - "digit": 4, - "__http_prepare_request": 4, - "client": 33, - "headers": 11, - "parsed": 18, - "show_error": 2, - "destroyed": 3, - "CR": 10, - "chr": 3, - "LF": 5, - "CRLF": 17, - "socket": 40, - "tcp_connect": 1, - "errored": 19, - "error": 18, - "linebuf": 33, - "line": 19, - "statusCode": 6, - "reasonPhrase": 2, - "responseBody": 19, - "buffer_create": 7, - "responseBodySize": 5, - "responseBodyProgress": 5, - "responseHeaders": 9, - "requestUrl": 2, - "requestHeaders": 2, - "write_string": 9, - "key": 17, - "ds_map_find_first": 1, - "is_string": 2, - "ds_map_find_next": 1, - "socket_send": 1, - "__http_parse_header": 3, - "ord": 16, - "headerValue": 9, - "string_lower": 3, - "headerName": 4, - "__http_client_step": 2, - "socket_has_error": 1, - "socket_error": 1, - "__http_client_destroy": 20, - "available": 7, - "tcp_receive_available": 1, - "bytesRead": 6, - "c": 20, - "read_string": 9, - "Reached": 2, - "end": 11, - "HTTP": 1, - "defines": 1, - "sequence": 2, - "as": 1, - "marker": 1, - "elements": 1, - "except": 2, - "entity": 1, - "body": 2, - "see": 1, - "appendix": 1, - "19": 1, - "3": 1, - "tolerant": 1, - "applications": 1, - "Strip": 1, - "trailing": 1, - "First": 1, - "status": 2, - "code": 2, - "first": 3, - "Response": 1, - "message": 1, - "Status": 1, - "Line": 1, - "consisting": 1, - "followed": 1, - "by": 5, - "numeric": 1, - "its": 1, - "associated": 1, - "textual": 1, - "phrase": 1, - "each": 18, - "element": 8, - "separated": 1, - "SP": 1, - "characters": 3, - "No": 3, - "allowed": 1, - "in": 21, - "final": 1, - "httpVer": 2, - "spacePos": 11, - "space": 4, - "response": 5, - "second": 2, - "Other": 1, - "Blank": 1, - "write": 1, - "remainder": 1, - "write_buffer_part": 3, - "Header": 1, - "Receiving": 1, - "transfer": 6, - "encoding": 2, - "chunked": 4, - "Chunked": 1, - "let": 1, - "decode": 36, - "actualResponseBody": 8, - "actualResponseSize": 1, - "actualResponseBodySize": 3, - "Parse": 1, - "chunks": 1, - "chunk": 12, - "size": 7, - "extension": 3, - "data": 4, - "HEX": 1, - "buffer_bytes_left": 6, - "chunkSize": 11, - "Read": 1, - "byte": 2, - "We": 1, - "found": 21, - "semicolon": 1, - "beginning": 1, - "skip": 1, - "stuff": 2, - "header": 2, - "Doesn": 1, - "did": 1, - "empty": 13, - "something": 1, - "up": 6, - "Parsing": 1, - "failed": 56, - "hex": 2, - "was": 1, - "hexadecimal": 1, - "Is": 1, - "bigger": 2, - "than": 1, - "remaining": 1, - "2": 2, - "responseHaders": 1, - "location": 4, - "resolved": 5, - "socket_destroy": 4, - "http_new_get": 1, - "variable_global_exists": 2, - "http_new_get_ex": 1, - "http_step": 1, - "client.errored": 3, - "client.state": 3, - "http_status_code": 1, - "client.statusCode": 1, - "http_reason_phrase": 1, - "client.error": 1, - "client.reasonPhrase": 1, - "http_response_body": 1, - "client.responseBody": 1, - "http_response_body_size": 1, - "client.responseBodySize": 1, - "http_response_body_progress": 1, - "client.responseBodyProgress": 1, - "http_response_headers": 1, - "client.responseHeaders": 1, - "http_destroy": 1, - "RoomChangeObserver": 1, - "set_little_endian_global": 1, - "file_exists": 5, - "file_delete": 3, - "backupFilename": 5, - "file_find_first": 1, - "file_find_next": 1, - "file_find_close": 1, - "customMapRotationFile": 7, - "restart": 4, - "//import": 1, - "wav": 1, - "files": 1, - "music": 1, - "global.MenuMusic": 3, - "sound_add": 3, - "global.IngameMusic": 3, - "global.FaucetMusic": 3, - "sound_volume": 3, - "global.sendBuffer": 19, - "global.HudCheck": 1, - "global.map_rotation": 19, - "global.CustomMapCollisionSprite": 1, - "window_set_region_scale": 1, - "ini_open": 2, - "global.playerName": 7, - "ini_read_string": 12, - "string_count": 2, - "MAX_PLAYERNAME_LENGTH": 2, - "global.fullscreen": 3, - "ini_read_real": 65, - "global.useLobbyServer": 2, - "global.hostingPort": 2, - "global.music": 2, - "MUSIC_BOTH": 1, - "global.playerLimit": 4, - "//thy": 1, - "playerlimit": 1, - "shalt": 1, - "exceed": 1, - "global.dedicatedMode": 7, - "ini_write_real": 60, - "global.multiClientLimit": 2, - "global.particles": 2, - "PARTICLES_NORMAL": 1, - "global.monitorSync": 3, - "set_synchronization": 2, - "global.medicRadar": 2, - "global.showHealer": 2, - "global.showHealing": 2, - "global.showTeammateStats": 2, - "global.serverPluginsPrompt": 2, - "global.restartPrompt": 2, - "//user": 1, - "HUD": 1, - "settings": 1, - "global.timerPos": 2, - "global.killLogPos": 2, - "global.kothHudPos": 2, - "global.clientPassword": 1, - "global.shuffleRotation": 2, - "global.timeLimitMins": 2, - "max": 2, - "global.serverPassword": 2, - "global.mapRotationFile": 1, - "global.serverName": 2, - "global.welcomeMessage": 2, - "global.caplimit": 3, - "global.caplimitBkup": 1, - "global.autobalance": 2, - "global.Server_RespawntimeSec": 4, - "global.rewardKey": 1, - "unhex": 1, - "global.rewardId": 1, - "global.mapdownloadLimitBps": 2, - "isBetaVersion": 1, - "global.attemptPortForward": 2, - "global.serverPluginList": 3, - "global.serverPluginsRequired": 2, - "CrosshairFilename": 5, - "CrosshairRemoveBG": 4, - "global.queueJumping": 2, - "global.backgroundHash": 2, - "global.backgroundTitle": 2, - "global.backgroundURL": 2, - "global.backgroundShowVersion": 2, - "readClasslimitsFromIni": 1, - "global.currentMapArea": 1, - "global.totalMapAreas": 1, - "global.setupTimer": 1, - "global.serverPluginsInUse": 1, - "global.pluginPacketBuffers": 1, - "global.pluginPacketPlayers": 1, - "ini_write_string": 10, - "ini_key_delete": 1, - "global.classlimits": 10, - "CLASS_SCOUT": 1, - "CLASS_HEAVY": 2, - "CLASS_DEMOMAN": 1, - "CLASS_SPY": 1, - "//screw": 1, - "will": 1, - "start": 1, - "//map_truefort": 1, - "maps": 37, - "//map_2dfort": 1, - "//map_conflict": 1, - "//map_classicwell": 1, - "//map_waterway": 1, - "//map_orange": 1, - "//map_dirtbowl": 1, - "//map_egypt": 1, - "//arena_montane": 1, - "//arena_lumberyard": 1, - "//gen_destroy": 1, - "//koth_valley": 1, - "//koth_corinth": 1, - "//koth_harvest": 1, - "//dkoth_atalia": 1, - "//dkoth_sixties": 1, - "//Server": 1, - "respawn": 1, - "time": 1, - "calculator.": 1, - "Converts": 1, - "frame.": 1, - "read": 1, - "multiply": 1, - "hehe": 1, - "global.Server_Respawntime": 3, - "global.mapchanging": 1, - "ini_close": 2, - "global.protocolUuid": 2, - "parseUuid": 2, - "PROTOCOL_UUID": 1, - "global.gg2lobbyId": 2, - "GG2_LOBBY_UUID": 1, - "initRewards": 1, - "IPRaw": 3, - "portRaw": 3, - "doubleCheck": 8, - "global.launchMap": 5, - "parameter_count": 1, - "parameter_string": 8, - "global.serverPort": 1, - "global.serverIP": 1, - "global.isHost": 1, - "Client": 1, - "global.customMapdesginated": 2, - "fileHandle": 6, - "mapname": 9, - "file_text_open_read": 1, - "file_text_eof": 1, - "file_text_read_string": 1, - "starts": 1, - "tab": 2, - "string_delete": 1, - "delete": 1, - "comment": 1, - "starting": 1, - "file_text_readln": 1, - "file_text_close": 1, - "load": 1, - "ini": 1, - "Maps": 9, - "section": 1, - "//Set": 1, - "rotation": 1, - "sort_list": 7, - "*maps": 1, - "ds_list_sort": 1, - "mod": 1, - "global.gg2Font": 2, - "font_add_sprite": 2, - "gg2FontS": 1, - "global.countFont": 1, - "countFontS": 1, - "draw_set_font": 1, - "cursor_sprite": 1, - "CrosshairS": 5, - "directory_exists": 2, - "directory_create": 2, - "AudioControl": 1, - "SSControl": 1, - "message_background": 1, - "popupBackgroundB": 1, - "message_button": 1, - "popupButtonS": 1, - "message_text_font": 1, - "message_button_font": 1, - "message_input_font": 1, - "//Key": 1, - "Mapping": 1, - "global.jump": 1, - "global.down": 1, - "global.left": 1, - "global.right": 1, - "global.attack": 1, - "MOUSE_LEFT": 1, - "global.special": 1, - "MOUSE_RIGHT": 1, - "global.taunt": 1, - "global.chat1": 1, - "global.chat2": 1, - "global.chat3": 1, - "global.medic": 1, - "global.drop": 1, - "global.changeTeam": 1, - "global.changeClass": 1, - "global.showScores": 1, - "vk_shift": 1, - "calculateMonthAndDay": 1, - "loadplugins": 1, - "registry_set_root": 1, - "HKLM": 1, - "global.NTKernelVersion": 1, - "registry_read_string_ext": 1, - "CurrentVersion": 1, - "SIC": 1, - "sprite_replace": 1, - "sprite_set_offset": 1, - "sprite_get_width": 1, - "/2": 2, - "sprite_get_height": 1, - "AudioControlToggleMute": 1, - "room_goto_fix": 2, - "Menu": 2, - "__jso_gmt_tuple": 1, - "//Position": 1, - "address": 1, - "table": 1, - "pos": 2, - "addr_table": 2, - "*argument_count": 1, - "//Build": 1, - "tuple": 1, - "ca": 1, - "isstr": 1, - "datastr": 1, - "argument_count": 1, - "//Check": 1, - "argument": 10, - "Unexpected": 18, - "position": 16, - "f": 5, - "JSON": 5, - "string.": 5, - "Cannot": 5, - "parse": 3, - "boolean": 3, - "value": 13, - "expecting": 9, - "digit.": 9, - "e": 4, - "E": 4, - "dot": 1, - "an": 24, - "integer": 6, - "Expected": 6, - "least": 6, - "arguments": 26, - "got": 6, - "find": 10, - "lookup.": 4, - "indices": 1, - "nested": 27, - "lists": 6, - "Index": 1, - "overflow": 4, - "Recursive": 1, - "abcdef": 1, - "number": 7, - "num": 1, - "assert_true": 1, - "_assert_error_popup": 2, - "string_repeat": 2, - "_assert_newline": 2, - "assert_false": 1, - "assert_equal": 1, - "//Safe": 1, - "equality": 1, - "check": 1, - "won": 1, - "support": 1, - "instead": 1, - "_assert_debug_value": 1, - "//String": 1, - "os_browser": 1, - "browser_not_a_browser": 1, - "string_replace_all": 1, - "//Numeric": 1, - "GMTuple": 1, - "jso_encode_string": 1, - "encode": 8, - "escape": 2, - "jso_encode_map": 4, - "one": 42, - "key1": 3, - "key2": 3, - "multi": 7, - "jso_encode_list": 3, - "three": 36, - "_jso_decode_string": 5, - "small": 1, - "quick": 2, - "brown": 2, - "fox": 2, - "over": 2, - "lazy": 2, - "dog.": 2, - "simple": 1, - "Waahoo": 1, - "negg": 1, - "mixed": 1, - "_jso_decode_boolean": 2, - "_jso_decode_real": 11, - "standard": 1, - "zero": 4, - "signed": 2, - "decimal": 1, - "digits": 1, - "positive": 7, - "negative": 7, - "exponent": 4, - "_jso_decode_integer": 3, - "_jso_decode_map": 14, - "didn": 14, - "include": 14, - "right": 14, - "prefix": 14, - "#1": 14, - "#2": 14, - "entry": 29, - "pi": 2, - "bool": 2, - "waahoo": 10, - "woohah": 8, - "mix": 4, - "_jso_decode_list": 14, - "woo": 2, - "Empty": 4, - "equal": 20, - "other.": 12, - "junk": 2, - "info": 1, - "taxi": 1, - "An": 4, - "filled": 4, - "map.": 2, - "A": 24, - "B": 18, - "C": 8, - "same": 6, - "content": 4, - "entered": 4, - "different": 12, - "orders": 4, - "D": 1, - "keys": 2, - "values": 4, - "six": 1, - "corresponding": 4, - "types": 4, - "other": 4, - "crash.": 4, - "list.": 2, - "Lists": 4, - "two": 16, - "entries": 2, - "also": 2, - "jso_map_check": 9, - "existing": 9, - "single": 11, - "jso_map_lookup": 3, - "wrong": 10, - "trap": 2, - "jso_map_lookup_type": 3, - "type": 8, - "four": 21, - "inexistent": 11, - "multiple": 20, - "jso_list_check": 8, - "jso_list_lookup": 3, - "jso_list_lookup_type": 3, - "inner": 1, - "indexing": 1, - "bad": 1, - "jso_cleanup_map": 1, - "one_map": 1, - "hashList": 5, - "pluginname": 9, - "pluginhash": 4, - "realhash": 1, - "handle": 1, - "filesize": 1, - "progress": 1, - "tempfile": 1, - "tempdir": 1, - "lastContact": 2, - "isCached": 2, - "isDebug": 2, - "split": 1, - "checkpluginname": 1, - "ds_list_find_index": 1, - ".zip": 3, - "ServerPluginsCache": 6, - "@": 5, - ".zip.tmp": 1, - ".tmp": 2, - "ServerPluginsDebug": 1, - "Warning": 2, - "being": 2, - "loaded": 2, - "ServerPluginsDebug.": 2, - "Make": 2, - "sure": 2, - "clients": 1, - "they": 1, - "may": 2, - "unable": 2, - "connect.": 2, - "you": 1, - "Downloading": 1, - "last_plugin.log": 2, - "plugin.gml": 1, - "playerId": 11, - "commandLimitRemaining": 4, - "variable_local_exists": 4, - "commandReceiveState": 1, - "commandReceiveExpectedBytes": 1, - "commandReceiveCommand": 1, - "player.socket": 12, - "player.commandReceiveExpectedBytes": 7, - "player.commandReceiveState": 7, - "player.commandReceiveCommand": 4, - "commandBytes": 2, - "commandBytesInvalidCommand": 1, - "commandBytesPrefixLength1": 1, - "commandBytesPrefixLength2": 1, - "default": 1, - "read_ushort": 2, - "PLAYER_LEAVE": 1, - "PLAYER_CHANGECLASS": 1, - "class": 8, - "getCharacterObject": 2, - "player.object": 12, - "SpawnRoom": 2, - "lastDamageDealer": 8, - "sendEventPlayerDeath": 4, - "BID_FAREWELL": 4, - "doEventPlayerDeath": 4, - "secondToLastDamageDealer": 2, - "lastDamageDealer.object": 2, - "lastDamageDealer.object.healer": 4, - "player.alarm": 4, - "<=0)>": 1, - "checkClasslimits": 2, - "ServerPlayerChangeclass": 2, - "sendBuffer": 1, - "PLAYER_CHANGETEAM": 1, - "newTeam": 7, - "balance": 5, - "redSuperiority": 6, - "calculate": 1, - "which": 1, - "Player": 1, - "TEAM_SPECTATOR": 1, - "newClass": 4, - "ServerPlayerChangeteam": 1, - "ServerBalanceTeams": 1, - "CHAT_BUBBLE": 2, - "bubbleImage": 5, - "global.aFirst": 1, - "write_ubyte": 20, - "setChatBubble": 1, - "BUILD_SENTRY": 2, - "collision_circle": 1, - "player.object.x": 3, - "player.object.y": 3, - "Sentry": 1, - "player.object.nutsNBolts": 1, - "player.sentry": 2, - "player.object.onCabinet": 1, - "write_ushort": 2, - "global.serializeBuffer": 3, - "player.object.x*5": 1, - "player.object.y*5": 1, - "write_byte": 1, - "player.object.image_xscale": 2, - "buildSentry": 1, - "DESTROY_SENTRY": 1, - "DROP_INTEL": 1, - "player.object.intel": 1, - "sendEventDropIntel": 1, - "doEventDropIntel": 1, - "OMNOMNOMNOM": 2, - "player.humiliated": 1, - "player.object.taunting": 1, - "player.object.omnomnomnom": 1, - "player.object.canEat": 1, - "omnomnomnomend": 2, - "xscale": 1, - "TOGGLE_ZOOM": 2, - "toggleZoom": 1, - "PLAYER_CHANGENAME": 2, - "nameLength": 4, - "socket_receivebuffer_size": 3, - "KICK": 2, - "KICK_NAME": 1, - "current_time": 2, - "lastNamechange": 2, - "INPUTSTATE": 1, - "keyState": 1, - "netAimDirection": 1, - "aimDirection": 1, - "netAimDirection*360/65536": 1, - "event_user": 1, - "REWARD_REQUEST": 1, - "player.rewardId": 1, - "player.challenge": 2, - "rewardCreateChallenge": 1, - "REWARD_CHALLENGE_CODE": 1, - "write_binstring": 1, - "REWARD_CHALLENGE_RESPONSE": 1, - "answer": 3, - "authbuffer": 1, - "read_binstring": 1, - "rewardAuthStart": 1, - "challenge": 1, - "rewardId": 1, - "PLUGIN_PACKET": 1, - "packetID": 3, - "buf": 5, - "success": 3, - "_PluginPacketPush": 1, - "KICK_BAD_PLUGIN_PACKET": 1, - "CLIENT_SETTINGS": 2, - "mirror": 4, - "player.queueJump": 1, - "global.levelType": 22, - "//global.currLevel": 1, - "global.currLevel": 22, - "global.hadDarkLevel": 4, - "global.startRoomX": 1, - "global.startRoomY": 1, - "global.endRoomX": 1, - "global.endRoomY": 1, - "oGame.levelGen": 2, - "j": 14, - "global.roomPath": 1, - "k": 5, - "global.lake": 3, - "isLevel": 1, - "999": 2, - "levelType": 2, - "16": 14, - "656": 3, - "oDark": 2, - "invincible": 2, - "sDark": 1, - "oTemple": 2, - "cityOfGold": 1, - "sTemple": 2, - "lake": 1, - "i*16": 8, - "j*16": 6, - "oLush": 2, - "obj.sprite_index": 4, - "sLush": 2, - "obj.invincible": 3, - "oBrick": 1, - "sBrick": 1, - "global.cityOfGold": 2, - "*16": 2, - "//instance_create": 2, - "oSpikes": 1, - "background_index": 1, - "bgTemple": 1, - "global.temp1": 1, - "global.gameStart": 3, - "scrLevelGen": 1, - "global.cemetary": 3, - "rand": 10, - "global.probCemetary": 1, - "oRoom": 1, - "scrRoomGen": 1, - "global.blackMarket": 3, - "scrRoomGenMarket": 1, - "scrRoomGen2": 1, - "global.yetiLair": 2, - "scrRoomGenYeti": 1, - "scrRoomGen3": 1, - "scrRoomGen4": 1, - "scrRoomGen5": 1, - "global.darkLevel": 4, - "global.noDarkLevel": 1, - "global.probDarkLevel": 1, - "oPlayer1.x": 2, - "oPlayer1.y": 2, - "oFlare": 1, - "global.genUdjatEye": 4, - "global.madeUdjatEye": 1, - "global.genMarketEntrance": 4, - "global.madeMarketEntrance": 1, - "////////////////////////////": 2, - "global.temp2": 1, - "isRoom": 3, - "scrEntityGen": 1, - "oEntrance": 1, - "global.customLevel": 1, - "oEntrance.x": 1, - "oEntrance.y": 1, - "global.snakePit": 1, - "global.alienCraft": 1, - "global.sacrificePit": 1, - "oPlayer1": 1, - "scrSetupWalls": 3, - "global.graphicsHigh": 1, - "tile_add": 4, - "bgExtrasLush": 1, - "*rand": 12, - "bgExtrasIce": 1, - "bgExtrasTemple": 1, - "bgExtras": 1, - "global.murderer": 1, - "global.thiefLevel": 1, - "isRealLevel": 1, - "oExit": 1, - "oShopkeeper": 1, - "obj.status": 1, - "oTreasure": 1, - "oWater": 1, - "sWaterTop": 1, - "sLavaTop": 1, - "scrCheckWaterTop": 1, - "global.temp3": 1 - }, - "GAMS": { - "*Basic": 1, - "example": 2, - "of": 7, - "transport": 5, - "model": 6, - "from": 2, - "GAMS": 5, - "library": 3, - "Title": 1, - "A": 3, - "Transportation": 1, - "Problem": 1, - "(": 22, - "TRNSPORT": 1, - "SEQ": 1, - ")": 22, - "Ontext": 1, - "This": 2, - "problem": 1, - "finds": 1, - "a": 3, - "least": 1, - "cost": 4, - "shipping": 1, - "schedule": 1, - "that": 1, - "meets": 1, - "requirements": 1, - "at": 5, - "markets": 2, - "and": 2, - "supplies": 1, - "factories.": 1, - "Dantzig": 1, - "G": 1, - "B": 1, - "Chapter": 2, - "In": 2, - "Linear": 1, - "Programming": 1, - "Extensions.": 1, - "Princeton": 2, - "University": 1, - "Press": 2, - "New": 1, - "Jersey": 1, - "formulation": 1, - "is": 1, - "described": 1, - "in": 10, - "detail": 1, - "Rosenthal": 1, - "R": 1, - "E": 1, - "Tutorial.": 1, - "User": 1, - "s": 1, - "Guide.": 1, - "The": 2, - "Scientific": 1, - "Redwood": 1, - "City": 1, - "California": 1, - "line": 1, - "numbers": 1, - "will": 1, - "not": 1, - "match": 1, - "those": 1, - "the": 1, - "book": 1, - "because": 1, - "these": 1, - "comments.": 1, - "Offtext": 1, - "Sets": 1, - "i": 18, - "canning": 1, - "plants": 1, - "/": 9, - "seattle": 3, - "san": 3, - "-": 6, - "diego": 3, - "j": 18, - "new": 3, - "york": 3, - "chicago": 3, - "topeka": 3, - ";": 15, - "Parameters": 1, - "capacity": 1, - "plant": 2, - "cases": 3, - "b": 2, - "demand": 4, - "market": 2, - "Table": 1, - "d": 2, - "distance": 1, - "thousands": 3, - "miles": 2, - "Scalar": 1, - "f": 2, - "freight": 1, - "dollars": 3, - "per": 3, - "case": 2, - "thousand": 1, - "/90/": 1, - "Parameter": 1, - "c": 3, - "*": 1, - "Variables": 1, - "x": 4, - "shipment": 1, - "quantities": 1, - "z": 3, - "total": 1, - "transportation": 1, - "costs": 1, - "Positive": 1, - "Variable": 1, - "Equations": 1, - "define": 1, - "objective": 1, - "function": 1, - "supply": 3, - "observe": 1, - "limit": 1, - "satisfy": 1, - "..": 3, - "e": 1, - "sum": 3, - "*x": 1, - "l": 1, - "g": 1, - "Model": 1, - "/all/": 1, - "Solve": 1, - "using": 1, - "lp": 1, - "minimizing": 1, - "Display": 1, - "x.l": 1, - "x.m": 1, - "ontext": 1, - "#user": 1, - "stuff": 1, - "Main": 1, - "topic": 1, - "Basic": 2, - "Featured": 4, - "item": 4, - "Trnsport": 1, - "Description": 1, - "offtext": 1 - }, - "GAP": { - "#############################################################################": 63, - "##": 766, - "#W": 4, - "example.gd": 2, - "This": 10, - "file": 7, - "contains": 7, - "a": 113, - "sample": 2, - "of": 114, - "GAP": 15, - "declaration": 1, - "file.": 3, - "DeclareProperty": 2, - "(": 721, - "IsLeftModule": 6, - ")": 722, - ";": 569, - "DeclareGlobalFunction": 5, - "#C": 7, - "IsQuuxFrobnicator": 1, - "": 3, - "": 28, - "": 7, - "Name=": 33, - "Arg=": 33, - "Type=": 7, - "": 28, - "Tests": 1, - "whether": 5, - "R": 5, - "is": 72, - "quux": 1, - "frobnicator.": 1, - "": 28, - "": 28, - "DeclareSynonym": 17, - "IsField": 1, - "and": 102, - "IsGroup": 1, - "implementation": 1, - "#M": 20, - "SomeOperation": 1, - "": 2, - "performs": 1, - "some": 2, - "operation": 1, - "on": 5, - "InstallMethod": 18, - "SomeProperty": 1, - "[": 145, - "]": 169, - "function": 37, - "M": 7, - "if": 103, - "IsFreeLeftModule": 3, - "not": 49, - "IsTrivial": 1, - "then": 128, - "return": 41, - "true": 21, - "fi": 91, - "TryNextMethod": 7, - "end": 34, - "#F": 17, - "SomeGlobalFunction": 2, - "A": 9, - "global": 1, - "variadic": 1, - "funfion.": 1, - "InstallGlobalFunction": 5, - "arg": 16, - "Length": 14, - "+": 9, - "*": 12, - "elif": 21, - "-": 67, - "else": 25, - "Error": 7, - "#": 73, - "SomeFunc": 1, - "x": 14, - "y": 8, - "local": 16, - "z": 3, - "func": 3, - "tmp": 20, - "j": 3, - "mod": 2, - "List": 6, - "while": 5, - "do": 18, - "for": 53, - "in": 64, - "Print": 24, - "od": 15, - "repeat": 1, - "until": 1, - "<": 17, - "Magic.gd": 1, - "AutoDoc": 4, - "package": 10, - "Copyright": 6, - "Max": 2, - "Horn": 2, - "JLU": 2, - "Giessen": 2, - "Sebastian": 2, - "Gutsche": 2, - "University": 4, - "Kaiserslautern": 2, - "SHEBANG#!#! @Description": 1, - "SHEBANG#!#! This": 1, - "SHEBANG#!#! any": 1, - "SHEBANG#!#! ": 1, - "SHEBANG#!#! ": 5, - "SHEBANG#!#! It": 3, - "SHEBANG#!#! That": 1, - "SHEBANG#!#! of": 1, - "SHEBANG#!#! (with": 1, - "SHEBANG#!#! main": 1, - "SHEBANG#!#! XML": 1, - "SHEBANG#!#! other": 1, - "SHEBANG#!#! as": 1, - "SHEBANG#!#! to": 2, - "SHEBANG#!#! Secondly,": 1, - "SHEBANG#!#! page": 1, - "SHEBANG#!#! (name,": 1, - "SHEBANG#!#! on": 1, - "SHEBANG#!Item>": 25, - "SHEBANG#!#! tags": 1, - "SHEBANG#!#! This": 1, - "SHEBANG#!#! produce": 1, - "SHEBANG#!#! MathJaX": 1, - "SHEBANG#!#! generated": 1, - "SHEBANG#!#! this,": 1, - "SHEBANG#!#! supplementary": 1, - "SHEBANG#!#! (see": 1, - "SHEBANG#!Enum>": 1, - "SHEBANG#!#! For": 1, - "SHEBANG#!>": 11, - "SHEBANG#!#! The": 1, - "SHEBANG#!#! ": 1, - "SHEBANG#!Mark>": 22, - "SHEBANG#!#! The": 2, - "SHEBANG#!A>": 1, - "SHEBANG#!#! ": 1, - "SHEBANG#!#! ": 4, - "SHEBANG#!#! This": 4, - "SHEBANG#!#! Directory()": 1, - "SHEBANG#!#! (i.e.": 1, - "SHEBANG#!#! Default": 1, - "SHEBANG#!#! for": 1, - "SHEBANG#!#! The": 3, - "SHEBANG#!#! record.": 3, - "SHEBANG#!#! equivalent": 3, - "SHEBANG#!#! enabled.": 3, - "SHEBANG#!#! package's": 1, - "SHEBANG#!#! In": 3, - "SHEBANG#!K>),": 3, - "SHEBANG#!#! If": 3, - "####": 34, - "TODO": 3, - "mention": 1, - "merging": 1, - "with": 24, - "PackageInfo.AutoDoc": 1, - "SHEBANG#!#! ": 3, - "SHEBANG#!#! ": 13, - "SHEBANG#!#! A": 6, - "SHEBANG#!#! If": 2, - "SHEBANG#!#! your": 1, - "SHEBANG#!#! you": 1, - "SHEBANG#!#! to": 4, - "SHEBANG#!#! is": 1, - "SHEBANG#!#! of": 2, - "SHEBANG#!#! This": 3, - "SHEBANG#!#! i.e.": 1, - "SHEBANG#!#! The": 2, - "SHEBANG#!#! then": 1, - "The": 21, - "param": 1, - "bit": 2, - "strange.": 1, - "We": 4, - "should": 2, - "probably": 2, - "change": 1, - "it": 8, - "to": 37, - "be": 24, - "more": 3, - "general": 1, - "as": 23, - "one": 11, - "might": 1, - "want": 1, - "define": 2, - "other": 4, - "entities...": 1, - "For": 10, - "now": 1, - "we": 3, - "document": 1, - "leave": 1, - "us": 1, - "the": 136, - "choice": 1, - "revising": 1, - "how": 1, - "works.": 1, - "": 2, - "": 117, - "entities": 2, - "": 117, - "": 2, - "": 2, - "list": 16, - "names": 1, - "or": 13, - "which": 8, - "are": 14, - "used": 10, - "corresponding": 1, - "XML": 4, - "entities.": 1, - "example": 3, - "set": 6, - "containing": 1, - "string": 6, - "": 2, - "SomePackage": 3, - "": 2, - "following": 4, - "added": 1, - "preamble": 1, - "": 2, - "CDATA": 2, - "ENTITY": 2, - "": 2, - "allows": 1, - "you": 3, - "write": 3, - "&": 37, - "amp": 1, - "your": 1, - "documentation": 2, - "reference": 1, - "that": 39, - "package.": 2, - "If": 11, - "another": 1, - "type": 2, - "entity": 1, - "desired": 1, - "can": 12, - "simply": 2, - "add": 2, - "instead": 1, - "two": 13, - "entry": 2, - "list.": 2, - "It": 1, - "will": 5, - "handled": 3, - "so": 3, - "please": 1, - "careful.": 1, - "": 2, - "SHEBANG#!#! for": 1, - "SHEBANG#!#! statement": 1, - "SHEBANG#!#! components": 2, - "SHEBANG#!#! example,": 1, - "SHEBANG#!#! acknowledgements": 1, - "SHEBANG#!#! ": 6, - "SHEBANG#!#! by": 1, - "SHEBANG#!#! package": 1, - "SHEBANG#!#! Usually": 2, - "SHEBANG#!#! are": 2, - "SHEBANG#!#! Default": 3, - "SHEBANG#!#! When": 1, - "SHEBANG#!#! they": 1, - "Document": 1, - "section_intros": 2, - "later": 1, - "on.": 1, - "However": 2, - "note": 2, - "thanks": 1, - "new": 2, - "comment": 1, - "syntax": 1, - "only": 5, - "remaining": 1, - "use": 5, - "this": 15, - "seems": 1, - "ability": 1, - "specify": 3, - "order": 1, - "chapters": 1, - "sections.": 1, - "TODO.": 1, - "SHEBANG#!#! files": 1, - "Note": 3, - "strictly": 1, - "speaking": 1, - "also": 3, - "scaffold.": 1, - "uses": 2, - "scaffolding": 2, - "mechanism": 4, - "really": 4, - "necessary": 2, - "custom": 1, - "name": 2, - "main": 1, - "Thus": 3, - "purpose": 1, - "parameter": 1, - "cater": 1, - "packages": 5, - "have": 3, - "existing": 1, - "using": 2, - "different": 2, - "wish": 1, - "scaffolding.": 1, - "explain": 1, - "why": 2, - "allow": 1, - "specifying": 1, - "gapdoc.main.": 1, - "code": 1, - "still": 1, - "honor": 1, - "though": 1, - "just": 1, - "case.": 1, - "SHEBANG#!#! In": 1, - "maketest": 12, - "part.": 1, - "Still": 1, - "under": 1, - "construction.": 1, - "SHEBANG#!#! ": 1, - "SHEBANG#!#! The": 1, - "SHEBANG#!#! a": 1, - "SHEBANG#!#! which": 1, - "SHEBANG#!#! the": 1, - "SHEBANG#!#! ": 1, - "SHEBANG#!#! ": 2, - "SHEBANG#!#! Sets": 1, - "SHEBANG#!#! A": 1, - "SHEBANG#!#! will": 1, - "SHEBANG#!#! @Returns": 1, - "SHEBANG#!#! @Arguments": 1, - "SHEBANG#!#! @ChapterInfo": 1, - "Magic.gi": 1, - "BindGlobal": 7, - "str": 8, - "suffix": 3, - "n": 31, - "m": 8, - "{": 21, - "}": 21, - "i": 25, - "d": 16, - "IsDirectoryPath": 1, - "CreateDir": 2, - "currently": 1, - "undocumented": 1, - "fail": 18, - "LastSystemError": 1, - ".message": 1, - "false": 7, - "pkg": 32, - "subdirs": 2, - "extensions": 1, - "d_rel": 6, - "files": 4, - "result": 9, - "DirectoriesPackageLibrary": 2, - "IsEmpty": 6, - "continue": 3, - "Directory": 5, - "DirectoryContents": 1, - "Sort": 1, - "AUTODOC_GetSuffix": 2, - "IsReadableFile": 2, - "Filename": 8, - "Add": 4, - "Make": 1, - "callable": 1, - "package_name": 1, - "AutoDocWorksheet.": 1, - "Which": 1, - "create": 1, - "worksheet": 1, - "package_info": 3, - "opt": 3, - "scaffold": 12, - "gapdoc": 7, - "autodoc": 8, - "pkg_dir": 5, - "doc_dir": 18, - "doc_dir_rel": 3, - "title_page": 7, - "tree": 8, - "is_worksheet": 13, - "position_document_class": 7, - "gapdoc_latex_option_record": 4, - "LowercaseString": 3, - "rec": 20, - "DirectoryCurrent": 1, - "PackageInfo": 1, - "key": 3, - "val": 4, - "ValueOption": 1, - "opt.": 1, - "IsBound": 39, - "opt.dir": 4, - "IsString": 7, - "IsDirectory": 1, - "AUTODOC_CreateDirIfMissing": 1, - "opt.scaffold": 5, - "package_info.AutoDoc": 3, - "IsRecord": 7, - "IsBool": 4, - "AUTODOC_APPEND_RECORD_WRITEONCE": 3, - "AUTODOC_WriteOnce": 10, - "opt.autodoc": 5, - "Concatenation": 15, - "package_info.Dependencies.NeededOtherPackages": 1, - "package_info.Dependencies.SuggestedOtherPackages": 1, - "ForAny": 1, - "autodoc.files": 7, - "autodoc.scan_dirs": 5, - "autodoc.level": 3, - "PushOptions": 1, - "level_value": 1, - "Append": 2, - "AUTODOC_FindMatchingFiles": 2, - "opt.gapdoc": 5, - "opt.maketest": 4, - "gapdoc.main": 8, - "package_info.PackageDoc": 3, - ".BookName": 2, - "gapdoc.bookname": 4, - "#Print": 1, - "gapdoc.files": 9, - "gapdoc.scan_dirs": 3, - "Set": 1, - "Number": 1, - "ListWithIdenticalEntries": 1, - "f": 11, - "DocumentationTree": 1, - "autodoc.section_intros": 2, - "AUTODOC_PROCESS_INTRO_STRINGS": 1, - "Tree": 2, - "AutoDocScanFiles": 1, - "PackageName": 2, - "scaffold.TitlePage": 4, - "scaffold.TitlePage.Title": 2, - ".TitlePage.Title": 2, - "Position": 2, - "Remove": 2, - "JoinStringsWithSeparator": 1, - "ReplacedString": 2, - "Syntax": 1, - "scaffold.document_class": 7, - "PositionSublist": 5, - "GAPDoc2LaTeXProcs.Head": 14, - "..": 6, - "scaffold.latex_header_file": 2, - "StringFile": 2, - "scaffold.gapdoc_latex_options": 4, - "RecNames": 1, - "scaffold.gapdoc_latex_options.": 5, - "IsList": 1, - "scaffold.includes": 4, - "scaffold.bib": 7, - "Unbind": 1, - "scaffold.main_xml_file": 2, - ".TitlePage": 1, - "ExtractTitleInfoFromPackageInfo": 1, - "CreateTitlePage": 1, - "scaffold.MainPage": 2, - "scaffold.dir": 1, - "scaffold.book_name": 1, - "CreateMainPage": 1, - "WriteDocumentation": 1, - "SetGapDocLaTeXOptions": 1, - "MakeGAPDocDoc": 1, - "CopyHTMLStyleFiles": 1, - "GAPDocManualLab": 1, - "maketest.folder": 3, - "maketest.scan_dir": 3, - "CreateMakeTest": 1, - "PackageInfo.g": 2, - "cvec": 1, - "s": 4, - "template": 1, - "SetPackageInfo": 1, - "Subtitle": 1, - "Version": 1, - "Date": 1, - "dd/mm/yyyy": 1, - "format": 2, - "Information": 1, - "about": 3, - "authors": 1, - "maintainers.": 1, - "Persons": 1, - "LastName": 1, - "FirstNames": 1, - "IsAuthor": 1, - "IsMaintainer": 1, - "Email": 1, - "WWWHome": 1, - "PostalAddress": 1, - "Place": 1, - "Institution": 1, - "Status": 2, - "information.": 1, - "Currently": 1, - "cases": 2, - "recognized": 1, - "successfully": 2, - "refereed": 2, - "developers": 1, - "agreed": 1, - "distribute": 1, - "them": 1, - "core": 1, - "system": 1, - "development": 1, - "versions": 1, - "all": 18, - "You": 1, - "must": 6, - "provide": 2, - "next": 6, - "entries": 8, - "status": 1, - "because": 2, - "was": 1, - "#CommunicatedBy": 1, - "#AcceptDate": 1, - "PackageWWWHome": 1, - "README_URL": 1, - ".PackageWWWHome": 2, - "PackageInfoURL": 1, - "ArchiveURL": 1, - ".Version": 2, - "ArchiveFormats": 1, - "Here": 2, - "short": 1, - "abstract": 1, - "explaining": 1, - "content": 1, - "HTML": 1, - "overview": 1, - "Web": 1, - "page": 1, - "an": 17, - "URL": 1, - "Webpage": 1, - "detailed": 1, - "information": 1, - "than": 1, - "few": 1, - "lines": 1, - "less": 1, - "ok": 1, - "Please": 1, - "specifing": 1, - "names.": 1, - "AbstractHTML": 1, - "PackageDoc": 1, - "BookName": 1, - "ArchiveURLSubset": 1, - "HTMLStart": 1, - "PDFFile": 1, - "SixFile": 1, - "LongTitle": 1, - "Dependencies": 1, - "NeededOtherPackages": 1, - "SuggestedOtherPackages": 1, - "ExternalConditions": 1, - "AvailabilityTest": 1, - "SHOW_STAT": 1, - "DirectoriesPackagePrograms": 1, - "#Info": 1, - "InfoWarning": 1, - "*Optional*": 2, - "but": 1, - "recommended": 1, - "path": 1, - "relative": 1, - "root": 1, - "many": 1, - "tests": 1, - "functionality": 1, - "sensible.": 1, - "#TestFile": 1, - "keyword": 1, - "related": 1, - "topic": 1, - "Keywords": 1, - "vspc.gd": 1, - "library": 2, - "Thomas": 2, - "Breuer": 2, - "#Y": 6, - "C": 11, - "Lehrstuhl": 2, - "D": 36, - "r": 2, - "Mathematik": 2, - "RWTH": 2, - "Aachen": 2, - "Germany": 2, - "School": 2, - "Math": 2, - "Comp.": 2, - "Sci.": 2, - "St": 2, - "Andrews": 2, - "Scotland": 2, - "Group": 3, - "declares": 1, - "operations": 2, - "vector": 67, - "spaces.": 4, - "bases": 5, - "free": 3, - "left": 15, - "modules": 1, - "found": 1, - "": 10, - "lib/basis.gd": 1, - ".": 257, - "IsLeftOperatorRing": 1, - "IsLeftOperatorAdditiveGroup": 2, - "IsRing": 1, - "IsAssociativeLOpDProd": 2, - "#T": 6, - "IsLeftOperatorRingWithOne": 2, - "IsRingWithOne": 1, - "IsLeftVectorSpace": 3, - "": 38, - "IsVectorSpace": 26, - "<#GAPDoc>": 17, - "Label=": 19, - "": 12, - "space": 74, - "": 12, - "module": 2, - "see": 30, - "nbsp": 30, - "": 71, - "Func=": 40, - "over": 24, - "division": 15, - "ring": 14, - "Chapter": 3, - "Chap=": 3, - "

": 23, - "Whenever": 1, - "talk": 1, - "": 42, - "F": 61, - "": 41, - "V": 152, - "additive": 1, - "group": 2, - "acts": 1, - "via": 6, - "multiplication": 1, - "from": 5, - "such": 4, - "action": 4, - "addition": 1, - "right": 2, - "distributive.": 1, - "accessed": 1, - "value": 9, - "attribute": 2, - "Vector": 1, - "spaces": 15, - "always": 1, - "Filt=": 4, - "synonyms.": 1, - "<#/GAPDoc>": 17, - "IsLeftActedOnByDivisionRing": 4, - "InstallTrueMethod": 4, - "IsGaussianSpace": 10, - "": 14, - "filter": 3, - "Sect=": 6, - "row": 17, - "matrix": 5, - "field": 12, - "say": 1, - "indicates": 3, - "vectors": 16, - "matrices": 5, - "respectively": 1, - "contained": 4, - "In": 3, - "case": 2, - "called": 1, - "Gaussian": 19, - "space.": 5, - "Bases": 1, - "computed": 2, - "elimination": 5, - "given": 4, - "generators.": 1, - "": 12, - "": 12, - "gap": 41, - "mats": 5, - "VectorSpace": 13, - "Rationals": 13, - "E": 2, - "element": 2, - "extension": 3, - "Field": 1, - "": 12, - "DeclareFilter": 1, - "IsFullMatrixModule": 1, - "IsFullRowModule": 1, - "IsDivisionRing": 5, - "": 12, - "nontrivial": 1, - "associative": 1, - "algebra": 2, - "multiplicative": 1, - "inverse": 1, - "each": 2, - "nonzero": 3, - "element.": 1, - "every": 1, - "possibly": 1, - "itself": 1, - "being": 2, - "thus": 1, - "property": 2, - "get": 1, - "usually": 1, - "represented": 1, - "coefficients": 3, - "stored": 1, - "DeclareSynonymAttr": 4, - "IsMagmaWithInversesIfNonzero": 1, - "IsNonTrivial": 1, - "IsAssociative": 1, - "IsEuclideanRing": 1, - "#A": 7, - "GeneratorsOfLeftVectorSpace": 1, - "GeneratorsOfVectorSpace": 2, - "": 7, - "Attr=": 10, - "returns": 14, - "generate": 1, - "FullRowSpace": 5, - "GeneratorsOfLeftOperatorAdditiveGroup": 2, - "CanonicalBasis": 3, - "supports": 1, - "canonical": 6, - "basis": 14, - "otherwise": 2, - "": 3, - "": 3, - "returned.": 4, - "defining": 1, - "its": 2, - "uniquely": 1, - "determined": 1, - "by": 14, - "exist": 1, - "same": 6, - "acting": 8, - "domain": 17, - "equality": 1, - "these": 5, - "decided": 1, - "comparing": 1, - "bases.": 1, - "exact": 1, - "meaning": 1, - "depends": 1, - "Canonical": 1, - "defined": 3, - "designs": 1, - "kind": 1, - "defines": 1, - "method": 4, - "installs": 1, - "call": 1, - "On": 1, - "hand": 1, - "install": 1, - "calls": 1, - "": 10, - "CANONICAL_BASIS_FLAGS": 1, - "": 9, - "vecs": 4, - "B": 16, - "": 8, - "3": 5, - "generators": 16, - "BasisVectors": 4, - "DeclareAttribute": 4, - "IsRowSpace": 2, - "consists": 7, - "IsRowModule": 1, - "IsGaussianRowSpace": 1, - "scalars": 2, - "occur": 2, - "vectors.": 2, - "calculations.": 2, - "Otherwise": 3, - "non": 4, - "Gaussian.": 2, - "need": 3, - "flag": 2, - "down": 2, - "methods": 4, - "delegate": 2, - "ones.": 2, - "IsNonGaussianRowSpace": 1, - "expresses": 2, - "cannot": 2, - "compute": 3, - "nice": 4, - "way.": 2, - "Let": 4, - "K": 4, - "spanned": 4, - "Then": 1, - "/": 12, - "cap": 1, - "v": 5, - "replacing": 1, - "forming": 1, - "concatenation.": 1, - "So": 2, - "associated": 3, - "DeclareHandlingByNiceBasis": 2, - "IsMatrixSpace": 2, - "IsMatrixModule": 1, - "IsGaussianMatrixSpace": 1, - "IsNonGaussianMatrixSpace": 1, - "irrelevant": 1, - "concatenation": 1, - "rows": 1, - "necessarily": 1, - "NormedRowVectors": 2, - "normed": 1, - "finite": 5, - "those": 1, - "first": 1, - "component.": 1, - "yields": 1, - "natural": 1, - "dimensional": 5, - "subspaces": 17, - "GF": 22, - "*Z": 5, - "Z": 6, - "Action": 1, - "GL": 1, - "OnLines": 1, - "TrivialSubspace": 2, - "subspace": 7, - "zero": 4, - "triv": 2, - "0": 2, - "AsSet": 1, - "TrivialSubmodule": 1, - "": 5, - "": 2, - "collection": 3, - "gens": 16, - "elements": 7, - "optional": 3, - "argument": 1, - "empty.": 1, - "known": 5, - "linearly": 3, - "independent": 3, - "particular": 1, - "dimension": 9, - "immediately": 2, - "formed": 1, - "argument.": 1, - "2": 1, - "Subspace": 4, - "generated": 1, - "SubspaceNC": 2, - "subset": 4, - "empty": 1, - "trivial": 1, - "parent": 3, - "returned": 3, - "does": 1, - "except": 1, - "omits": 1, - "check": 5, - "both": 2, - "W": 32, - "1": 3, - "Submodule": 1, - "SubmoduleNC": 1, - "#O": 2, - "AsVectorSpace": 4, - "view": 4, - "": 2, - "domain.": 1, - "form": 2, - "Oper=": 6, - "smaller": 1, - "larger": 1, - "ring.": 3, - "Dimension": 6, - "LeftActingDomain": 29, - "9": 1, - "AsLeftModule": 6, - "AsSubspace": 5, - "": 6, - "U": 12, - "collection.": 1, - "/2": 4, - "Parent": 4, - "DeclareOperation": 2, - "IsCollection": 3, - "Intersection2Spaces": 4, - "": 2, - "": 2, - "": 2, - "takes": 1, - "arguments": 1, - "intersection": 5, - "domains": 3, - "let": 1, - "their": 1, - "intersection.": 1, - "AsStruct": 2, - "equal": 1, - "either": 2, - "Substruct": 1, - "common": 1, - "Struct": 1, - "basis.": 1, - "handle": 1, - "intersections": 1, - "algebras": 2, - "ideals": 2, - "sided": 1, - "ideals.": 1, - "": 2, - "": 2, - "nonnegative": 2, - "integer": 2, - "length": 1, - "An": 2, - "alternative": 2, - "construct": 2, - "above": 2, - "FullRowModule": 2, - "FullMatrixSpace": 2, - "": 1, - "positive": 1, - "integers": 1, - "fact": 1, - "FullMatrixModule": 3, - "IsSubspacesVectorSpace": 9, - "fixed": 1, - "lies": 1, - "category": 1, - "Subspaces": 8, - "Size": 5, - "iter": 17, - "Iterator": 5, - "NextIterator": 5, - "DeclareCategory": 1, - "IsDomain": 1, - "IsFinite": 4, - "Returns": 1, - "": 1, - "Called": 2, - "k": 17, - "Special": 1, - "provided": 1, - "domains.": 1, - "IsInt": 3, - "IsSubspace": 3, - "OrthogonalSpaceInFullRowSpace": 1, - "complement": 1, - "full": 2, - "#P": 1, - "IsVectorSpaceHomomorphism": 3, - "": 2, - "": 1, - "mapping": 2, - "homomorphism": 1, - "linear": 1, - "source": 2, - "range": 1, - "b": 8, - "hold": 1, - "IsGeneralMapping": 2, - "#E": 2, - "vspc.gi": 1, - "generic": 1, - "SetLeftActingDomain": 2, - "": 2, - "external": 1, - "knows": 1, - "e.g.": 1, - "tell": 1, - "InstallOtherMethod": 3, - "IsAttributeStoringRep": 2, - "IsLeftActedOnByRing": 2, - "IsObject": 1, - "extL": 2, - "HasIsDivisionRing": 1, - "SetIsLeftActedOnByDivisionRing": 1, - "IsExtLSet": 1, - "IsIdenticalObj": 5, - "difference": 1, - "between": 1, - "shall": 1, - "CallFuncList": 1, - "FreeLeftModule": 1, - "newC": 7, - "IsSubset": 4, - "SetParent": 1, - "UseIsomorphismRelation": 2, - "UseSubsetRelation": 4, - "View": 1, - "base": 5, - "gen": 5, - "loop": 2, - "newgens": 4, - "extended": 1, - "Characteristic": 2, - "Basis": 5, - "AsField": 2, - "GeneratorsOfLeftModule": 9, - "LeftModuleByGenerators": 5, - "Zero": 5, - "Intersection": 1, - "ViewObj": 4, - "print": 1, - "no.": 1, - "HasGeneratorsOfLeftModule": 2, - "HasDimension": 1, - "override": 1, - "PrintObj": 5, - "HasZero": 1, - "": 2, - "factor": 2, - "": 1, - "ImagesSource": 1, - "NaturalHomomorphismBySubspace": 1, - "AsStructure": 3, - "Substructure": 3, - "Structure": 2, - "inters": 17, - "gensV": 7, - "gensW": 7, - "VW": 3, - "sum": 1, - "Intersection2": 4, - "IsFiniteDimensional": 2, - "Coefficients": 3, - "SumIntersectionMat": 1, - "LinearCombination": 2, - "HasParent": 2, - "SetIsTrivial": 1, - "ClosureLeftModule": 2, - "": 1, - "closure": 1, - "IsCollsElms": 1, - "HasBasis": 1, - "IsVector": 1, - "w": 3, - "easily": 1, - "UseBasis": 1, - "Methods": 1, - "collections": 1, - "#R": 1, - "IsSubspacesVectorSpaceDefaultRep": 7, - "representation": 1, - "components": 1, - "means": 1, - "DeclareRepresentation": 1, - "IsComponentObjectRep": 1, - ".dimension": 9, - ".structure": 9, - "number": 2, - "q": 20, - "prod_": 2, - "frac": 3, - "recursion": 1, - "sum_": 1, - "size": 12, - "qn": 10, - "qd": 10, - "ank": 6, - "Int": 1, - "Enumerator": 2, - "Use": 1, - "iterator": 3, - "allowed": 1, - "elms": 4, - "IsDoneIterator": 3, - ".associatedIterator": 3, - ".basis": 2, - "structure": 4, - "associatedIterator": 2, - "ShallowCopy": 2, - "IteratorByFunctions": 1, - "IsDoneIterator_Subspaces": 1, - "NextIterator_Subspaces": 1, - "ShallowCopy_Subspaces": 1, - "": 1, - "dim": 2, - "Objectify": 2, - "NewType": 2, - "CollectionsFamily": 2, - "FamilyObj": 2, - "map": 4, - "S": 4, - "Source": 1, - "Range": 1, - "IsLinearMapping": 1 - }, - "GAS": { - ".cstring": 1, - "LC0": 2, - ".ascii": 2, - ".text": 1, - ".globl": 2, - "_main": 2, - "LFB3": 4, - "pushq": 1, - "%": 6, - "rbp": 2, - "LCFI0": 3, - "movq": 1, - "rsp": 1, - "LCFI1": 2, - "leaq": 1, - "(": 1, - "rip": 1, - ")": 1, - "rdi": 1, - "call": 1, - "_puts": 1, - "movl": 1, - "eax": 1, - "leave": 1, - "ret": 1, - "LFE3": 2, - ".section": 1, - "__TEXT": 1, - "__eh_frame": 1, - "coalesced": 1, - "no_toc": 1, - "+": 2, - "strip_static_syms": 1, - "live_support": 1, - "EH_frame1": 2, - ".set": 5, - "L": 10, - "set": 10, - "LECIE1": 2, - "-": 7, - "LSCIE1": 2, - ".long": 6, - ".byte": 20, - "xc": 1, - ".align": 2, - "_main.eh": 2, - "LSFDE1": 1, - "LEFDE1": 2, - "LASFDE1": 3, - ".quad": 2, - ".": 1, - "xe": 1, - "xd": 1, - ".subsections_via_symbols": 1 - }, - "GLSL": { - "////": 4, - "High": 1, - "quality": 2, - "(": 435, - "Some": 1, - "browsers": 1, - "may": 1, - "freeze": 1, - "or": 1, - "crash": 1, - ")": 435, - "//#define": 10, - "HIGHQUALITY": 2, - "Medium": 1, - "Should": 1, - "be": 1, - "fine": 1, - "on": 3, - "all": 1, - "systems": 1, - "works": 1, - "Intel": 1, - "HD2000": 1, - "Win7": 1, - "but": 1, - "quite": 1, - "slow": 1, - "MEDIUMQUALITY": 2, - "Defaults": 1, - "REFLECTIONS": 3, - "#define": 13, - "SHADOWS": 5, - "GRASS": 3, - "SMALL_WAVES": 4, - "RAGGED_LEAVES": 5, - "DETAILED_NOISE": 3, - "LIGHT_AA": 3, - "//": 38, - "sample": 2, - "SSAA": 2, - "HEAVY_AA": 2, - "x2": 5, - "RG": 1, - "TONEMAP": 5, - "Configurations": 1, - "#ifdef": 14, - "#endif": 14, - "const": 19, - "float": 105, - "eps": 5, - "e": 4, - "-": 108, - ";": 383, - "PI": 3, - "vec3": 165, - "sunDir": 5, - "skyCol": 4, - "sandCol": 2, - "treeCol": 2, - "grassCol": 2, - "leavesCol": 4, - "leavesPos": 4, - "sunCol": 5, - "#else": 5, - "exposure": 1, - "Only": 1, - "used": 1, - "when": 1, - "tonemapping": 1, - "mod289": 4, - "x": 11, - "{": 82, - "return": 47, - "floor": 8, - "*": 115, - "/": 24, - "}": 82, - "vec4": 73, - "permute": 4, - "x*34.0": 1, - "+": 108, - "*x": 3, - "taylorInvSqrt": 2, - "r": 14, - "snoise": 7, - "v": 8, - "vec2": 26, - "C": 1, - "/6.0": 1, - "/3.0": 1, - "D": 1, - "i": 38, - "dot": 30, - "C.yyy": 2, - "x0": 7, - "C.xxx": 2, - "g": 2, - "step": 2, - "x0.yzx": 1, - "x0.xyz": 1, - "l": 1, - "i1": 2, - "min": 11, - "g.xyz": 2, - "l.zxy": 2, - "i2": 2, - "max": 9, - "x1": 4, - "*C.x": 2, - "/3": 1, - "C.y": 1, - "x3": 4, - "D.yyy": 1, - "D.y": 1, - "p": 26, - "i.z": 1, - "i1.z": 1, - "i2.z": 1, - "i.y": 1, - "i1.y": 1, - "i2.y": 1, - "i.x": 1, - "i1.x": 1, - "i2.x": 1, - "n_": 2, - "/7.0": 1, - "ns": 4, - "D.wyz": 1, - "D.xzx": 1, - "j": 4, - "ns.z": 3, - "mod": 2, - "*7": 1, - "x_": 3, - "y_": 2, - "N": 1, - "*ns.x": 2, - "ns.yyyy": 2, - "y": 2, - "h": 21, - "abs": 2, - "b0": 3, - "x.xy": 1, - "y.xy": 1, - "b1": 3, - "x.zw": 1, - "y.zw": 1, - "//vec4": 3, - "s0": 2, - "lessThan": 2, - "*2.0": 4, - "s1": 2, - "sh": 1, - "a0": 1, - "b0.xzyw": 1, - "s0.xzyw*sh.xxyy": 1, - "a1": 1, - "b1.xzyw": 1, - "s1.xzyw*sh.zzww": 1, - "p0": 5, - "a0.xy": 1, - "h.x": 1, - "p1": 5, - "a0.zw": 1, - "h.y": 1, - "p2": 5, - "a1.xy": 1, - "h.z": 1, - "p3": 5, - "a1.zw": 1, - "h.w": 1, - "//Normalise": 1, - "gradients": 1, - "norm": 1, - "norm.x": 1, - "norm.y": 1, - "norm.z": 1, - "norm.w": 1, - "m": 8, - "m*m": 1, - "fbm": 2, - "final": 5, - "waterHeight": 4, - "d": 10, - "length": 7, - "p.xz": 2, - "sin": 8, - "iGlobalTime": 7, - "Island": 1, - "waves": 3, - "p*0.5": 1, - "Other": 1, - "bump": 2, - "pos": 42, - "rayDir": 43, - "s": 23, - "Fade": 1, - "out": 1, - "to": 1, - "reduce": 1, - "aliasing": 1, - "dist": 7, - "<": 23, - "sqrt": 6, - "Calculate": 1, - "normal": 7, - "from": 2, - "heightmap": 1, - "pos.x": 1, - "iGlobalTime*0.5": 1, - "pos.z": 2, - "*0.7": 1, - "*s": 4, - "normalize": 14, - "e.xyy": 1, - "e.yxy": 1, - "intersectSphere": 2, - "rpos": 5, - "rdir": 3, - "rad": 2, - "op": 5, - "b": 5, - "det": 11, - "b*b": 2, - "rad*rad": 2, - "if": 29, - "t": 44, - "rdir*t": 1, - "intersectCylinder": 1, - "rdir2": 2, - "rdir.yz": 1, - "op.yz": 3, - "rpos.yz": 2, - "rdir2*t": 2, - "pos.yz": 2, - "intersectPlane": 3, - "rayPos": 38, - "n": 18, - "sign": 1, - "rotate": 5, - "theta": 6, - "c": 6, - "cos": 4, - "p.x": 2, - "p.z": 2, - "p.y": 1, - "impulse": 2, - "k": 8, - "by": 1, - "iq": 2, - "k*x": 1, - "exp": 2, - "grass": 2, - "Optimization": 1, - "Avoid": 1, - "noise": 1, - "too": 1, - "far": 1, - "away": 1, - "pos.y": 8, - "tree": 2, - "pos.y*0.03": 2, - "mat2": 2, - "m*pos.xy": 1, - "width": 2, - "clamp": 4, - "scene": 7, - "vtree": 4, - "vgrass": 2, - ".x": 4, - "eps.xyy": 1, - "eps.yxy": 1, - "eps.yyx": 1, - "plantsShadow": 2, - "Soft": 1, - "shadow": 4, - "taken": 1, - "for": 7, - "int": 8, - "rayDir*t": 2, - "res": 6, - "res.x": 3, - "k*res.x/t": 1, - "s*s*": 1, - "intersectWater": 2, - "rayPos.y": 1, - "rayDir.y": 1, - "intersectSand": 3, - "intersectTreasure": 2, - "intersectLeaf": 2, - "openAmount": 4, - "dir": 2, - "offset": 5, - "rayDir*res.w": 1, - "pos*0.8": 2, - "||": 3, - "res.w": 6, - "res2": 2, - "dir.xy": 1, - "dir.z": 1, - "rayDir*res2.w": 1, - "res2.w": 3, - "&&": 10, - "leaves": 7, - "e20": 3, - "sway": 5, - "fract": 1, - "upDownSway": 2, - "angleOffset": 3, - "Left": 1, - "right": 1, - "alpha": 3, - "Up": 1, - "down": 1, - "k*10.0": 1, - "p.xzy": 1, - ".xzy": 2, - "d.xzy": 1, - "Shift": 1, - "Intersect": 11, - "individual": 1, - "leaf": 1, - "res.xyz": 1, - "sand": 2, - "resSand": 2, - "//if": 1, - "resSand.w": 4, - "plants": 6, - "resLeaves": 3, - "resLeaves.w": 10, - "e7": 3, - "light": 5, - "sunDir*0.01": 2, - "col": 32, - "n.y": 3, - "lightLeaves": 3, - "ao": 5, - "sky": 5, - "res.y": 2, - "uvFact": 2, - "uv": 12, - "n.x": 1, - "tex": 6, - "texture2D": 6, - "iChannel0": 3, - ".rgb": 2, - "e8": 1, - "traceReflection": 2, - "resPlants": 2, - "resPlants.w": 6, - "resPlants.xyz": 2, - "pos.xz": 2, - "leavesPos.xz": 2, - ".r": 3, - "resLeaves.xyz": 2, - "trace": 2, - "resSand.xyz": 1, - "treasure": 1, - "chest": 1, - "resTreasure": 1, - "resTreasure.w": 4, - "resTreasure.xyz": 1, - "water": 1, - "resWater": 1, - "resWater.w": 4, - "ct": 2, - "fresnel": 2, - "pow": 3, - "trans": 2, - "reflDir": 3, - "reflect": 1, - "refl": 3, - "resWater.t": 1, - "mix": 2, - "camera": 8, - "px": 4, - "rd": 1, - "iResolution.yy": 1, - "iResolution.x/iResolution.y*0.5": 1, - "rd.x": 1, - "rd.y": 1, - "void": 31, - "main": 5, - "gl_FragCoord.xy": 7, - "*0.25": 4, - "*0.5": 1, - "Optimized": 1, - "Haarm": 1, - "Peter": 1, - "Duiker": 1, - "curve": 1, - "col*exposure": 1, - "x*": 2, - ".5": 1, - "gl_FragColor": 3, - "#version": 2, - "core": 1, - "cbar": 2, - "cfoo": 1, - "CB": 2, - "CD": 2, - "CA": 1, - "CC": 1, - "CBT": 5, - "CDT": 3, - "CAT": 1, - "CCT": 1, - "norA": 4, - "norB": 3, - "norC": 1, - "norD": 1, - "norE": 4, - "norF": 1, - "norG": 1, - "norH": 1, - "norI": 1, - "norcA": 2, - "norcB": 3, - "norcC": 2, - "norcD": 2, - "head": 1, - "of": 1, - "cycle": 2, - "norcE": 1, - "lead": 1, - "into": 1, - "NUM_LIGHTS": 4, - "AMBIENT": 2, - "MAX_DIST": 3, - "MAX_DIST_SQUARED": 3, - "uniform": 7, - "lightColor": 3, - "[": 29, - "]": 29, - "varying": 4, - "fragmentNormal": 2, - "cameraVector": 2, - "lightVector": 4, - "initialize": 1, - "diffuse/specular": 1, - "lighting": 1, - "diffuse": 4, - "specular": 4, - "the": 1, - "fragment": 1, - "and": 2, - "direction": 1, - "cameraDir": 2, - "loop": 1, - "through": 1, - "each": 1, - "calculate": 1, - "distance": 1, - "between": 1, - "distFactor": 3, - "lightDir": 3, - "diffuseDot": 2, - "halfAngle": 2, - "specularColor": 2, - "specularDot": 2, - "sample.rgb": 1, - "sample.a": 1, - "static": 1, - "char*": 1, - "SimpleFragmentShader": 1, - "STRINGIFY": 1, - "FrontColor": 2, - "kCoeff": 2, - "kCube": 2, - "uShift": 3, - "vShift": 3, - "chroma_red": 2, - "chroma_green": 2, - "chroma_blue": 2, - "bool": 1, - "apply_disto": 4, - "sampler2D": 1, - "input1": 4, - "adsk_input1_w": 4, - "adsk_input1_h": 3, - "adsk_input1_aspect": 1, - "adsk_input1_frameratio": 5, - "adsk_result_w": 3, - "adsk_result_h": 2, - "distortion_f": 3, - "f": 17, - "r*r": 1, - "inverse_f": 2, - "lut": 9, - "max_r": 2, - "incr": 2, - "lut_r": 5, - ".z": 5, - ".y": 2, - "aberrate": 4, - "chroma": 2, - "chromaticize_and_invert": 2, - "rgb_f": 5, - "px.x": 2, - "px.y": 2, - "uv.x": 11, - "uv.y": 7, - "*2": 2, - "uv.x*uv.x": 1, - "uv.y*uv.y": 1, - "else": 1, - "rgb_uvs": 12, - "rgb_f.rr": 1, - "rgb_f.gg": 1, - "rgb_f.bb": 1, - "sampled": 1, - "sampled.r": 1, - "sampled.g": 1, - ".g": 1, - "sampled.b": 1, - ".b": 1, - "gl_FragColor.rgba": 1, - "sampled.rgb": 1 - }, - "Gnuplot": { - "set": 98, - "label": 14, - "at": 14, - "-": 102, - "left": 15, - "norotate": 18, - "back": 23, - "textcolor": 13, - "rgb": 8, - "nopoint": 14, - "offset": 25, - "character": 22, - "lt": 15, - "style": 7, - "line": 4, - "linetype": 11, - "linecolor": 4, - "linewidth": 11, - "pointtype": 4, - "pointsize": 4, - "default": 4, - "pointinterval": 4, - "noxtics": 2, - "noytics": 2, - "title": 13, - "xlabel": 6, - "xrange": 3, - "[": 18, - "]": 18, - "noreverse": 13, - "nowriteback": 12, - "yrange": 4, - "bmargin": 1, - "unset": 2, - "colorbox": 3, - "plot": 3, - "cos": 9, - "(": 52, - "x": 7, - ")": 52, - "ls": 4, - ".2": 1, - ".4": 1, - ".6": 1, - ".8": 1, - "lc": 3, - "boxwidth": 1, - "absolute": 1, - "fill": 1, - "solid": 1, - "border": 3, - "key": 1, - "inside": 1, - "right": 1, - "top": 1, - "vertical": 2, - "Right": 1, - "noenhanced": 1, - "autotitles": 1, - "nobox": 1, - "histogram": 1, - "clustered": 1, - "gap": 1, - "datafile": 1, - "missing": 1, - "data": 1, - "histograms": 1, - "xtics": 3, - "in": 1, - "scale": 1, - "nomirror": 1, - "rotate": 3, - "by": 3, - "autojustify": 1, - "norangelimit": 3, - "font": 8, - "i": 1, - "using": 2, - "xtic": 1, - "ti": 4, - "col": 4, - "u": 25, - "SHEBANG#!gnuplot": 1, - "reset": 1, - "terminal": 1, - "png": 1, - "output": 1, - "ylabel": 5, - "#set": 2, - "xr": 1, - "yr": 1, - "pt": 2, - "notitle": 15, - "dummy": 3, - "v": 31, - "arrow": 7, - "from": 7, - "to": 7, - "head": 7, - "nofilled": 7, - "parametric": 3, - "view": 3, - "samples": 3, - "isosamples": 3, - "hidden3d": 2, - "trianglepattern": 2, - "undefined": 2, - "altdiagonal": 2, - "bentover": 2, - "ztics": 2, - "zlabel": 4, - "zrange": 2, - "sinc": 13, - "sin": 3, - "sqrt": 4, - "u**2": 4, - "+": 6, - "v**2": 4, - "/": 2, - "GPFUN_sinc": 2, - "xx": 2, - "dx": 2, - "x0": 4, - "x1": 4, - "x2": 4, - "x3": 4, - "x4": 4, - "x5": 4, - "x6": 4, - "x7": 4, - "x8": 4, - "x9": 4, - "splot": 3, - "<": 10, - "xmin": 3, - "xmax": 1, - "n": 1, - "zbase": 2, - ".5": 2, - "*n": 1, - "floor": 3, - "u/3": 1, - "*dx": 1, - "%": 2, - "u/3.*dx": 1, - "/0": 1, - "angles": 1, - "degrees": 1, - "mapping": 1, - "spherical": 1, - "noztics": 1, - "urange": 1, - "vrange": 1, - "cblabel": 1, - "cbrange": 1, - "user": 1, - "origin": 1, - "screen": 2, - "size": 1, - "front": 1, - "bdefault": 1, - "*cos": 1, - "*sin": 1, - "with": 3, - "lines": 2, - "labels": 1, - "point": 1, - "lw": 1, - ".1": 1, - "tc": 1, - "pal": 1 - }, - "Gosu": { - "<%!-->": 1, - "defined": 1, - "in": 3, - "Hello": 2, - "gst": 1, - "<": 1, - "%": 2, - "@": 1, - "params": 1, - "(": 53, - "users": 2, - "Collection": 1, - "": 1, - ")": 54, - "<%>": 2, - "for": 2, - "user": 1, - "{": 28, - "user.LastName": 1, - "}": 28, - "user.FirstName": 1, - "user.Department": 1, - "package": 2, - "example": 2, - "enhancement": 1, - "String": 6, - "function": 11, - "toPerson": 1, - "Person": 7, - "var": 10, - "vals": 4, - "this.split": 1, - "return": 4, - "new": 6, - "[": 4, - "]": 4, - "as": 3, - "int": 2, - "Relationship.valueOf": 2, - "hello": 1, - "print": 3, - "uses": 2, - "java.util.*": 1, - "java.io.File": 1, - "class": 1, - "extends": 1, - "Contact": 1, - "implements": 1, - "IEmailable": 2, - "_name": 4, - "_age": 3, - "Integer": 3, - "Age": 1, - "_relationship": 2, - "Relationship": 3, - "readonly": 1, - "RelationshipOfPerson": 1, - "delegate": 1, - "_emailHelper": 2, - "represents": 1, - "enum": 1, - "FRIEND": 1, - "FAMILY": 1, - "BUSINESS_CONTACT": 1, - "static": 7, - "ALL_PEOPLE": 2, - "HashMap": 1, - "": 1, - "construct": 1, - "name": 4, - "age": 4, - "relationship": 2, - "EmailHelper": 1, - "this": 1, - "property": 2, - "get": 1, - "Name": 3, - "set": 1, - "override": 1, - "getEmailName": 1, - "incrementAge": 1, - "+": 2, - "@Deprecated": 1, - "printPersonInfo": 1, - "addPerson": 4, - "p": 5, - "if": 4, - "ALL_PEOPLE.containsKey": 2, - ".Name": 1, - "throw": 1, - "IllegalArgumentException": 1, - "p.Name": 2, - "addAllPeople": 1, - "contacts": 2, - "List": 1, - "": 1, - "contact": 3, - "typeis": 1, - "and": 1, - "not": 1, - "contact.Name": 1, - "getAllPeopleOlderThanNOrderedByName": 1, - "allPeople": 1, - "ALL_PEOPLE.Values": 3, - "allPeople.where": 1, - "-": 3, - "p.Age": 1, - ".orderBy": 1, - "loadPersonFromDB": 1, - "id": 1, - "using": 2, - "conn": 1, - "DBConnectionManager.getConnection": 1, - "stmt": 1, - "conn.prepareStatement": 1, - "stmt.setInt": 1, - "result": 1, - "stmt.executeQuery": 1, - "result.next": 1, - "result.getString": 2, - "result.getInt": 1, - "loadFromFile": 1, - "file": 3, - "File": 2, - "file.eachLine": 1, - "line": 1, - "line.HasContent": 1, - "line.toPerson": 1, - "saveToFile": 1, - "writer": 2, - "FileWriter": 1, - "PersonCSVTemplate.renderToString": 1, - "PersonCSVTemplate.render": 1 - }, - "Grammatical Framework": { - "-": 594, - "(": 256, - "c": 73, - ")": 256, - "Aarne": 13, - "Ranta": 13, - "under": 33, - "LGPL": 33, - "abstract": 1, - "Foods": 34, - "{": 579, - "flags": 32, - "startcat": 1, - "Comment": 31, - ";": 1399, - "cat": 1, - "Item": 31, - "Kind": 33, - "Quality": 34, - "fun": 1, - "Pred": 30, - "This": 29, - "That": 29, - "These": 28, - "Those": 28, - "Mod": 29, - "Wine": 29, - "Cheese": 29, - "Fish": 29, - "Pizza": 28, - "Very": 29, - "Fresh": 29, - "Warm": 29, - "Italian": 29, - "Expensive": 29, - "Delicious": 29, - "Boring": 29, - "}": 580, - "Laurette": 2, - "Pretorius": 2, - "Sr": 2, - "&": 2, - "Jr": 2, - "and": 4, - "Ansu": 2, - "Berg": 2, - "concrete": 33, - "FoodsAfr": 1, - "of": 89, - "open": 23, - "Prelude": 11, - "Predef": 3, - "in": 32, - "coding": 29, - "utf8": 29, - "lincat": 28, - "s": 365, - "Str": 394, - "Number": 207, - "n": 206, - "AdjAP": 10, - "lin": 28, - "item": 36, - "quality": 90, - "item.s": 24, - "+": 480, - "quality.s": 50, - "Predic": 3, - "kind": 115, - "kind.s": 46, - "Sg": 184, - "Pl": 182, - "table": 148, - "Attr": 9, - "declNoun_e": 2, - "declNoun_aa": 2, - "declNoun_ss": 2, - "declNoun_s": 2, - "veryAdj": 2, - "regAdj": 61, - "smartAdj_e": 4, - "param": 22, - "|": 122, - "oper": 29, - "Noun": 9, - "operations": 2, - "wyn": 1, - "kaas": 1, - "vis": 1, - "pizza": 1, - "x": 74, - "let": 8, - "v": 6, - "tk": 1, - "last": 3, - "Adjective": 9, - "mkAdj": 27, - "y": 3, - "declAdj_e": 2, - "declAdj_g": 2, - "w": 15, - "init": 4, - "declAdj_oog": 2, - "i": 2, - "a": 57, - "x.s": 8, - "case": 44, - "_": 68, - "FoodsAmh": 1, - "Krasimir": 1, - "Angelov": 1, - "FoodsBul": 1, - "Gender": 94, - "Masc": 67, - "Fem": 65, - "Neutr": 21, - "Agr": 3, - "ASg": 23, - "APl": 11, - "g": 132, - "qual": 8, - "item.a": 2, - "qual.s": 8, - "kind.g": 38, - "#": 14, - "path": 14, - ".": 13, - "present": 7, - "Jordi": 2, - "Saludes": 2, - "FoodsCat": 1, - "FoodsI": 6, - "with": 5, - "Syntax": 7, - "SyntaxCat": 2, - "LexFoods": 12, - "LexFoodsCat": 2, - "FoodsChi": 1, - "p": 11, - "quality.p": 2, - "kind.c": 11, - "geKind": 5, - "longQuality": 8, - "mkKind": 2, - "Katerina": 2, - "Bohmova": 2, - "FoodsCze": 1, - "ResCze": 2, - "NounPhrase": 3, - "copula": 33, - "item.n": 29, - "item.g": 12, - "det": 86, - "noun": 51, - "regnfAdj": 2, - "Femke": 1, - "Johansson": 1, - "FoodsDut": 1, - "AForm": 4, - "APred": 8, - "AAttr": 3, - "regNoun": 38, - "f": 16, - "a.s": 8, - "regadj": 6, - "adj": 38, - "noun.s": 7, - "man": 10, - "men": 10, - "wijn": 3, - "koud": 3, - "duur": 2, - "dure": 2, - "FoodsEng": 1, - "language": 2, - "en_US": 1, - "car": 6, - "cold": 4, - "Julia": 1, - "Hammar": 1, - "FoodsEpo": 1, - "SS": 6, - "ss": 13, - "d": 6, - "cn": 11, - "cn.s": 8, - "vino": 3, - "nova": 3, - "FoodsFin": 1, - "SyntaxFin": 2, - "LexFoodsFin": 2, - "../foods": 1, - "FoodsFre": 1, - "SyntaxFre": 1, - "ParadigmsFre": 1, - "Utt": 4, - "NP": 4, - "CN": 4, - "AP": 4, - "mkUtt": 4, - "mkCl": 4, - "mkNP": 16, - "this_QuantSg": 2, - "that_QuantSg": 2, - "these_QuantPl": 2, - "those_QuantPl": 2, - "mkCN": 20, - "mkAP": 28, - "very_AdA": 4, - "mkN": 46, - "masculine": 4, - "feminine": 2, - "mkA": 47, - "FoodsGer": 1, - "SyntaxGer": 2, - "LexFoodsGer": 2, - "alltenses": 3, - "Dana": 1, - "Dannells": 1, - "Licensed": 1, - "FoodsHeb": 2, - "Species": 8, - "mod": 7, - "Modified": 5, - "sp": 11, - "Indef": 6, - "Def": 21, - "T": 2, - "regAdj2": 3, - "F": 2, - "Type": 9, - "Adj": 4, - "m": 9, - "cn.mod": 2, - "cn.g": 10, - "gvina": 6, - "hagvina": 3, - "gvinot": 6, - "hagvinot": 3, - "defH": 7, - "replaceLastLetter": 7, - "adjective": 22, - "tov": 6, - "tova": 3, - "tovim": 3, - "tovot": 3, - "to": 6, - "c@": 3, - "italki": 3, - "italk": 4, - "Vikash": 1, - "Rauniyar": 1, - "FoodsHin": 2, - "regN": 15, - "lark": 8, - "ms": 4, - "mp": 4, - "acch": 6, - "incomplete": 1, - "this_Det": 2, - "that_Det": 2, - "these_Det": 2, - "those_Det": 2, - "wine_N": 7, - "pizza_N": 7, - "cheese_N": 7, - "fish_N": 8, - "fresh_A": 7, - "warm_A": 8, - "italian_A": 7, - "expensive_A": 7, - "delicious_A": 7, - "boring_A": 7, - "prelude": 2, - "Martha": 1, - "Dis": 1, - "Brandt": 1, - "FoodsIce": 1, - "Defin": 9, - "Ind": 14, - "the": 7, - "word": 3, - "is": 6, - "more": 1, - "commonly": 1, - "used": 2, - "Iceland": 1, - "but": 1, - "Icelandic": 1, - "for": 6, - "it": 2, - "defOrInd": 2, - "order": 1, - "given": 1, - "forms": 2, - "mSg": 1, - "fSg": 1, - "nSg": 1, - "mPl": 1, - "fPl": 1, - "nPl": 1, - "mSgDef": 1, - "f/nSgDef": 1, - "_PlDef": 1, - "masc": 3, - "fem": 2, - "neutr": 2, - "x1": 3, - "x9": 1, - "ferskur": 5, - "fersk": 11, - "ferskt": 2, - "ferskir": 2, - "ferskar": 2, - "fersk_pl": 2, - "ferski": 2, - "ferska": 2, - "fersku": 2, - "t": 28, - "": 1, - "<": 10, - "Predef.tk": 2, - "FoodsIta": 1, - "SyntaxIta": 2, - "LexFoodsIta": 2, - "../lib/src/prelude": 1, - "Zofia": 1, - "Stankiewicz": 1, - "FoodsJpn": 1, - "Style": 3, - "AdjUse": 4, - "AdjType": 4, - "quality.t": 3, - "IAdj": 4, - "Plain": 3, - "Polite": 4, - "NaAdj": 4, - "na": 1, - "adjectives": 2, - "have": 2, - "different": 1, - "as": 2, - "attributes": 1, - "predicates": 2, - "phrase": 1, - "types": 1, - "can": 1, - "form": 4, - "without": 1, - "cannot": 1, - "sakana": 6, - "chosenna": 2, - "chosen": 2, - "akai": 2, - "Inese": 1, - "Bernsone": 1, - "FoodsLav": 1, - "Q": 5, - "Q1": 5, - "q": 10, - "spec": 2, - "Q2": 3, - "specAdj": 2, - "skaists": 5, - "skaista": 2, - "skaisti": 2, - "skaistas": 2, - "skaistais": 2, - "skaistaa": 2, - "skaistie": 2, - "skaistaas": 2, - "skaist": 8, - "John": 1, - "J.": 1, - "Camilleri": 1, - "FoodsMlt": 1, - "uniAdj": 2, - "Create": 6, - "an": 2, - "full": 1, - "function": 1, - "Params": 4, - "Sing": 4, - "Plural": 2, - "iswed": 2, - "sewda": 2, - "suwed": 3, - "regular": 2, - "Param": 2, - "frisk": 4, - "eg": 1, - "tal": 1, - "buzz": 1, - "uni": 4, - "Singular": 1, - "inherent": 1, - "ktieb": 2, - "kotba": 2, - "Copula": 1, - "linking": 1, - "verb": 1, - "article": 3, - "taking": 1, - "into": 1, - "account": 1, - "first": 1, - "letter": 1, - "next": 1, - "pre": 1, - "cons@": 1, - "cons": 1, - "determinant": 1, - "Sg/Pl": 1, - "string": 1, - "default": 1, - "gender": 2, - "number": 2, - "/GF/lib/src/prelude": 1, - "Nyamsuren": 1, - "Erdenebadrakh": 1, - "FoodsMon": 1, - "prefixSS": 1, - "Dinesh": 1, - "Simkhada": 1, - "FoodsNep": 1, - "adjPl": 2, - "bor": 2, - "FoodsOri": 1, - "FoodsPes": 1, - "optimize": 1, - "noexpand": 1, - "Add": 8, - "prep": 11, - "Indep": 4, - "kind.prep": 1, - "quality.prep": 1, - "at": 3, - "a.prep": 1, - "must": 1, - "be": 1, - "written": 1, - "x4": 2, - "pytzA": 3, - "pytzAy": 1, - "pytzAhA": 3, - "pr": 4, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "mrd": 8, - "tAzh": 8, - "tAzhy": 2, - "Rami": 1, - "Shashati": 1, - "FoodsPor": 1, - "mkAdjReg": 7, - "QualityT": 5, - "bonito": 2, - "bonita": 2, - "bonitos": 2, - "bonitas": 2, - "pattern": 1, - "adjSozinho": 2, - "sozinho": 3, - "sozinh": 4, - "independent": 1, - "adjUtil": 2, - "util": 3, - "uteis": 3, - "smart": 1, - "paradigm": 1, - "adjcetives": 1, - "ItemT": 2, - "KindT": 4, - "num": 6, - "noun.g": 3, - "animal": 2, - "animais": 2, - "gen": 4, - "carro": 3, - "Ramona": 1, - "Enache": 1, - "FoodsRon": 1, - "NGender": 6, - "NMasc": 2, - "NFem": 3, - "NNeut": 2, - "mkTab": 5, - "mkNoun": 5, - "getAgrGender": 3, - "acesta": 2, - "aceasta": 2, - "gg": 3, - "det.s": 1, - "peste": 2, - "pesti": 2, - "scump": 2, - "scumpa": 2, - "scumpi": 2, - "scumpe": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "ng": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "FoodsSpa": 1, - "SyntaxSpa": 1, - "StructuralSpa": 1, - "ParadigmsSpa": 1, - "FoodsSwe": 1, - "SyntaxSwe": 2, - "LexFoodsSwe": 2, - "**": 1, - "sv_SE": 1, - "FoodsTha": 1, - "SyntaxTha": 1, - "LexiconTha": 1, - "ParadigmsTha": 1, - "R": 4, - "ResTha": 1, - "R.thword": 4, - "FoodsTsn": 1, - "NounClass": 28, - "r": 9, - "b": 9, - "Bool": 5, - "p_form": 18, - "TType": 16, - "mkPredDescrCop": 2, - "item.c": 1, - "quality.p_form": 1, - "kind.w": 4, - "mkDemPron1": 3, - "kind.q": 4, - "mkDemPron2": 3, - "mkMod": 2, - "Lexicon": 1, - "mkNounNC14_6": 2, - "mkNounNC9_10": 4, - "smartVery": 2, - "mkVarAdj": 2, - "mkOrdAdj": 4, - "mkPerAdj": 2, - "mkVerbRel": 2, - "NC9_10": 14, - "NC14_6": 14, - "P": 4, - "V": 4, - "ModV": 4, - "y.b": 1, - "True": 3, - "y.w": 2, - "y.r": 2, - "y.c": 14, - "y.q": 4, - "smartQualRelPart": 5, - "x.t": 10, - "smartDescrCop": 5, - "False": 3, - "mkVeryAdj": 2, - "x.p_form": 2, - "mkVeryVerb": 3, - "mkQualRelPart_PName": 2, - "mkQualRelPart": 2, - "mkDescrCop_PName": 2, - "mkDescrCop": 2, - "FoodsTur": 1, - "Case": 10, - "softness": 4, - "Softness": 5, - "h": 4, - "Harmony": 5, - "Reason": 1, - "excluding": 1, - "plural": 3, - "In": 1, - "Turkish": 1, - "if": 1, - "subject": 1, - "not": 2, - "human": 2, - "being": 1, - "then": 1, - "singular": 1, - "regardless": 1, - "subject.": 1, - "Since": 1, - "all": 1, - "possible": 1, - "subjects": 1, - "are": 1, - "non": 1, - "do": 1, - "need": 1, - "form.": 1, - "quality.softness": 1, - "quality.h": 1, - "quality.c": 1, - "Nom": 9, - "Gen": 5, - "a.c": 1, - "a.softness": 1, - "a.h": 1, - "I_Har": 4, - "Ih_Har": 4, - "U_Har": 4, - "Uh_Har": 4, - "Ih": 1, - "Uh": 1, - "Soft": 3, - "Hard": 3, - "overload": 1, - "mkn": 1, - "peynir": 2, - "peynirler": 2, - "[": 2, - "]": 2, - "sarap": 2, - "saraplar": 2, - "sarabi": 2, - "saraplari": 2, - "italyan": 4, - "ca": 2, - "getSoftness": 2, - "getHarmony": 2, - "See": 1, - "comment": 1, - "lines": 1, - "excluded": 1, - "copula.": 1, - "base": 4, - "*": 1, - "Shafqat": 1, - "Virk": 1, - "FoodsUrd": 1, - "coupla": 2, - "interface": 1, - "N": 4, - "A": 6, - "instance": 5, - "ParadigmsCat": 1, - "M": 1, - "MorphoCat": 1, - "M.Masc": 2, - "ParadigmsFin": 1, - "ParadigmsGer": 1, - "ParadigmsIta": 1, - "ParadigmsSwe": 1, - "resource": 1, - "ne": 2, - "muz": 2, - "muzi": 2, - "msg": 3, - "fsg": 3, - "nsg": 3, - "mpl": 3, - "fpl": 3, - "npl": 3, - "mlad": 7, - "vynikajici": 7 - }, - "Groovy": { - "task": 1, - "echoDirListViaAntBuilder": 1, - "(": 7, - ")": 7, - "{": 9, - "description": 1, - "//Docs": 1, - "http": 1, - "//ant.apache.org/manual/Types/fileset.html": 1, - "//Echo": 1, - "the": 3, - "Gradle": 1, - "project": 1, - "name": 1, - "via": 1, - "ant": 1, - "echo": 1, - "plugin": 1, - "ant.echo": 3, - "message": 1, - "project.name": 1, - "path": 2, - "//Gather": 1, - "list": 1, - "of": 1, - "files": 1, - "in": 1, - "a": 1, - "subdirectory": 1, - "ant.fileScanner": 1, - "fileset": 1, - "dir": 1, - "}": 9, - ".each": 1, - "//Print": 1, - "each": 1, - "file": 1, - "to": 1, - "screen": 1, - "with": 1, - "CWD": 1, - "projectDir": 1, - "removed.": 1, - "println": 3, - "it.toString": 1, - "-": 1, - "SHEBANG#!groovy": 2, - "html": 3, - "head": 2, - "component": 1, - "title": 2, - "body": 1, - "p": 1 - }, - "Groovy Server Pages": { - "": 4, - "": 4, - "": 4, - "http": 3, - "equiv=": 3, - "content=": 4, - "": 4, - "Testing": 3, - "with": 3, - "SiteMesh": 2, - "and": 2, - "Resources": 2, - "": 4, - "name=": 1, - "": 2, - "module=": 2, - "": 4, - "": 4, - "": 4, - "": 4, - "<%@>": 1, - "page": 2, - "contentType=": 1, - "Using": 1, - "directive": 1, - "tag": 1, - "

": 2, - "Print": 1, - "{": 1, - "example": 1, - "}": 1 - }, - "Haml": { - "%": 1, - "p": 1, - "Hello": 1, - "World": 1 - }, - "Handlebars": { - "
": 5, - "class=": 5, - "

": 3, - "{": 16, - "title": 1, - "}": 16, - "

": 3, - "body": 3, - "
": 5, - "By": 2, - "fullName": 2, - "author": 2, - "Comments": 1, - "#each": 1, - "comments": 1, - "

": 1, - "

": 1, - "/each": 1 - }, - "Haskell": { - "import": 6, - "Data.Char": 1, - "main": 4, - "IO": 2, - "(": 8, - ")": 8, - "do": 3, - "let": 2, - "hello": 2, - "putStrLn": 3, - "map": 13, - "toUpper": 1, - "module": 2, - "Main": 1, - "where": 4, - "Sudoku": 9, - "Data.Maybe": 2, - "sudoku": 36, - "[": 4, - "]": 3, - "pPrint": 5, - "+": 2, - "fromMaybe": 1, - "solve": 5, - "isSolved": 4, - "Data.List": 1, - "Data.List.Split": 1, - "type": 1, - "Int": 1, - "-": 3, - "Maybe": 1, - "|": 8, - "Just": 1, - "otherwise": 2, - "index": 27, - "<": 1, - "elemIndex": 1, - "sudokus": 2, - "nextTest": 5, - "i": 7, - "<->": 1, - "1": 2, - "9": 7, - "checkRow": 2, - "checkColumn": 2, - "checkBox": 2, - "listToMaybe": 1, - "mapMaybe": 1, - "take": 1, - "drop": 1, - "length": 12, - "getRow": 3, - "nub": 6, - "getColumn": 3, - "getBox": 3, - "filter": 3, - "0": 3, - "chunksOf": 10, - "quot": 3, - "transpose": 4, - "mod": 2, - "concat": 2, - "concatMap": 2, - "3": 4, - "27": 1, - "Bool": 1, - "product": 1, - "False": 4, - ".": 4, - "sudokuRows": 4, - "/": 3, - "sudokuColumns": 3, - "sudokuBoxes": 3, - "True": 1, - "String": 1, - "intercalate": 2, - "show": 1 - }, - "HTML": { - "": 2, - "HTML": 2, - "PUBLIC": 2, - "W3C": 2, - "DTD": 3, - "4": 1, - "0": 2, - "Frameset": 1, - "EN": 2, - "http": 3, - "www": 2, - "w3": 2, - "org": 2, - "TR": 2, - "REC": 1, - "html40": 1, - "frameset": 1, - "dtd": 2, - "": 2, - "": 2, - "Common_meta": 1, - "(": 14, - ")": 14, - "": 2, - "Android": 5, - "API": 7, - "Differences": 2, - "Report": 2, - "": 2, - "": 2, - "
": 10, - "class=": 22, - "Header": 1, - "

": 1, - "

": 1, - "

": 3, - "This": 1, - "document": 1, - "details": 1, - "the": 11, - "changes": 2, - "in": 4, - "framework": 2, - "API.": 3, - "It": 2, - "shows": 1, - "additions": 1, - "modifications": 1, - "and": 5, - "removals": 2, - "for": 2, - "packages": 1, - "classes": 1, - "methods": 1, - "fields.": 1, - "Each": 1, - "reference": 1, - "to": 3, - "an": 3, - "change": 2, - "includes": 1, - "a": 4, - "brief": 1, - "description": 1, - "of": 5, - "explanation": 1, - "suggested": 1, - "workaround": 1, - "where": 1, - "available.": 1, - "

": 3, - "The": 2, - "differences": 2, - "described": 1, - "this": 2, - "report": 1, - "are": 3, - "based": 1, - "comparison": 1, - "APIs": 1, - "whose": 1, - "versions": 1, - "specified": 1, - "upper": 1, - "-": 1, - "right": 1, - "corner": 1, - "page.": 1, - "compares": 1, - "newer": 1, - "older": 2, - "version": 1, - "noting": 1, - "any": 1, - "relative": 1, - "So": 1, - "example": 1, - "indicated": 1, - "no": 1, - "longer": 1, - "present": 1, - "For": 1, - "more": 1, - "information": 1, - "about": 1, - "SDK": 1, - "see": 1, - "": 8, - "href=": 9, - "target=": 3, - "product": 1, - "site": 1, - "": 8, - ".": 1, - "if": 4, - "no_delta": 1, - "

": 1, - "Congratulation": 1, - "

": 1, - "No": 1, - "were": 1, - "detected": 1, - "between": 1, - "two": 1, - "provided": 1, - "APIs.": 1, - "endif": 4, - "removed_packages": 2, - "Table": 3, - "name": 3, - "rows": 3, - "{": 3, - "it.from": 1, - "ModelElementRow": 1, - "}": 3, - "
": 3, - "added_packages": 2, - "it.to": 2, - "PackageAddedLink": 1, - "SimpleTableRow": 2, - "changed_packages": 2, - "PackageChangedLink": 1, - "
": 11, - "": 2, - "": 2, - "html": 1, - "XHTML": 1, - "1": 1, - "Transitional": 1, - "xhtml1": 2, - "transitional": 1, - "xmlns=": 1, - "": 1, - "equiv=": 1, - "content=": 1, - "Related": 2, - "Pages": 2, - "": 1, - "rel=": 1, - "type=": 1, - "": 1, - "Main": 1, - "Page": 1, - "&": 3, - "middot": 3, - ";": 3, - "Class": 2, - "Overview": 2, - "Hierarchy": 1, - "All": 1, - "Classes": 1, - "Here": 1, - "is": 1, - "list": 1, - "all": 1, - "related": 1, - "documentation": 1, - "pages": 1, - "": 1, - "": 2, - "id=": 2, - "": 4, - "": 2, - "16": 1, - "Layout": 1, - "System": 1, - "
": 4, - "": 2, - "src=": 2, - "alt=": 2, - "width=": 1, - "height=": 2, - "
": 1, - "Generated": 1, - "with": 1, - "Doxygen": 1 - }, - "Hy": { - ";": 4, - "Fibonacci": 1, - "example": 2, - "in": 2, - "Hy.": 2, - "(": 28, - "defn": 2, - "fib": 4, - "[": 10, - "n": 5, - "]": 10, - "if": 2, - "<": 1, - ")": 28, - "+": 1, - "-": 10, - "__name__": 1, - "for": 2, - "x": 3, - "print": 1, - "The": 1, - "concurrent.futures": 2, - "import": 1, - "ThreadPoolExecutor": 2, - "as": 3, - "completed": 2, - "random": 1, - "randint": 2, - "sh": 1, - "sleep": 2, - "task": 2, - "to": 2, - "do": 2, - "with": 1, - "executor": 2, - "setv": 1, - "jobs": 2, - "list": 1, - "comp": 1, - ".submit": 1, - "range": 1, - "future": 2, - ".result": 1 - }, - "IDL": { - ";": 59, - "docformat": 3, - "+": 8, - "Inverse": 1, - "hyperbolic": 2, - "cosine.": 1, - "Uses": 1, - "the": 7, - "formula": 1, - "text": 1, - "{": 3, - "acosh": 1, - "}": 3, - "(": 26, - "z": 9, - ")": 26, - "ln": 1, - "sqrt": 4, - "-": 14, - "Examples": 2, - "The": 1, - "arc": 1, - "sine": 1, - "function": 4, - "looks": 1, - "like": 2, - "IDL": 5, - "x": 8, - "*": 2, - "findgen": 1, - "/": 1, - "plot": 1, - "mg_acosh": 2, - "xstyle": 1, - "This": 1, - "should": 1, - "look": 1, - "..": 1, - "image": 1, - "acosh.png": 1, - "Returns": 3, - "float": 1, - "double": 2, - "complex": 2, - "or": 1, - "depending": 1, - "on": 1, - "input": 2, - "Params": 3, - "in": 4, - "required": 4, - "type": 5, - "numeric": 1, - "compile_opt": 3, - "strictarr": 3, - "return": 5, - "alog": 1, - "end": 5, - "MODULE": 1, - "mg_analysis": 1, - "DESCRIPTION": 1, - "Tools": 1, - "for": 2, - "analysis": 1, - "VERSION": 1, - "SOURCE": 1, - "mgalloy": 1, - "BUILD_DATE": 1, - "January": 1, - "FUNCTION": 2, - "MG_ARRAY_EQUAL": 1, - "KEYWORDS": 1, - "MG_TOTAL": 1, - "Find": 1, - "greatest": 1, - "common": 1, - "denominator": 1, - "GCD": 1, - "two": 1, - "positive": 2, - "integers.": 1, - "integer": 5, - "a": 4, - "first": 1, - "b": 4, - "second": 1, - "mg_gcd": 2, - "on_error": 1, - "if": 5, - "n_params": 1, - "ne": 1, - "then": 5, - "message": 2, - "mg_isinteger": 2, - "||": 1, - "begin": 2, - "endif": 2, - "_a": 3, - "abs": 2, - "_b": 3, - "minArg": 5, - "<": 1, - "maxArg": 3, - "eq": 2, - "remainder": 3, - "mod": 1, - "Truncate": 1, - "argument": 2, - "towards": 1, - "i.e.": 1, - "takes": 1, - "FLOOR": 1, - "of": 4, - "values": 2, - "and": 1, - "CEIL": 1, - "negative": 1, - "values.": 1, - "Try": 1, - "main": 2, - "level": 2, - "program": 2, - "at": 1, - "this": 1, - "file.": 1, - "It": 1, - "does": 1, - "print": 4, - "mg_trunc": 3, - "[": 6, - "]": 6, - "floor": 2, - "ceil": 2, - "array": 2, - "same": 1, - "as": 1, - "float/double": 1, - "containing": 1, - "to": 1, - "truncate": 1, - "result": 3, - "posInd": 3, - "where": 1, - "gt": 2, - "nposInd": 2, - "L": 1, - "example": 1 - }, - "Idris": { - "module": 1, - "Prelude.Char": 1, - "import": 1, - "Builtins": 1, - "isUpper": 4, - "Char": 13, - "-": 8, - "Bool": 8, - "x": 36, - "&&": 3, - "<=>": 3, - "Z": 1, - "isLower": 4, - "z": 1, - "isAlpha": 3, - "||": 9, - "isDigit": 3, - "(": 8, - "9": 1, - "isAlphaNum": 2, - "isSpace": 2, - "isNL": 2, - "toUpper": 3, - "if": 2, - ")": 7, - "then": 2, - "prim__intToChar": 2, - "prim__charToInt": 2, - "else": 2, - "toLower": 2, - "+": 1, - "isHexDigit": 2, - "elem": 1, - "hexChars": 3, - "where": 1, - "List": 1, - "[": 1, - "]": 1 - }, - "Inform 7": { - "by": 3, - "Andrew": 3, - "Plotkin.": 2, - "Include": 1, - "Trivial": 3, - "Extension": 3, - "The": 1, - "Kitchen": 1, - "is": 4, - "a": 2, - "room.": 1, - "[": 1, - "This": 1, - "kitchen": 1, - "modelled": 1, - "after": 1, - "the": 4, - "one": 1, - "in": 2, - "Zork": 1, - "although": 1, - "it": 1, - "lacks": 1, - "detail": 1, - "to": 2, - "establish": 1, - "this": 1, - "player.": 1, - "]": 1, - "A": 3, - "purple": 1, - "cow": 3, - "called": 1, - "Gelett": 2, - "Kitchen.": 1, - "Instead": 1, - "of": 3, - "examining": 1, - "say": 1, - "Version": 1, - "Plotkin": 1, - "begins": 1, - "here.": 2, - "kind": 1, - "animal.": 1, - "can": 1, - "be": 1, - "purple.": 1, - "ends": 1 - }, - "INI": { - ";": 1, - "editorconfig.org": 1, - "root": 1, - "true": 3, - "[": 2, - "*": 1, - "]": 2, - "indent_style": 1, - "space": 1, - "indent_size": 1, - "end_of_line": 1, - "lf": 1, - "charset": 1, - "utf": 1, - "-": 1, - "trim_trailing_whitespace": 1, - "insert_final_newline": 1, - "user": 1, - "name": 1, - "Josh": 1, - "Peek": 1, - "email": 1, - "josh@github.com": 1 - }, - "Ioke": { - "SHEBANG#!ioke": 1, - "println": 1 - }, - "Isabelle": { - "theory": 1, - "HelloWorld": 3, - "imports": 1, - "Main": 1, - "begin": 1, - "section": 1, - "{": 5, - "*Playing": 1, - "around": 1, - "with": 2, - "Isabelle*": 1, - "}": 5, - "text": 4, - "*": 4, - "creating": 1, - "a": 2, - "lemma": 2, - "the": 2, - "name": 1, - "hello_world*": 1, - "hello_world": 2, - "by": 9, - "simp": 8, - "thm": 1, - "defining": 1, - "string": 1, - "constant": 1, - "definition": 1, - "where": 1, - "theorem": 2, - "(": 5, - "fact": 1, - "List.rev_rev_ident": 4, - ")": 5, - "*now": 1, - "we": 1, - "delete": 1, - "already": 1, - "proven": 1, - "lema": 1, - "and": 1, - "show": 2, - "it": 2, - "hand*": 1, - "declare": 1, - "[": 1, - "del": 1, - "]": 1, - "hide_fact": 1, - "corollary": 2, - "apply": 1, - "add": 1, - "HelloWorld_def": 1, - "done": 1, - "*does": 1, - "hold": 1, - "in": 1, - "general": 1, - "rev_rev_ident": 2, - "proof": 1, - "induction": 1, - "l": 2, - "case": 3, - "Nil": 1, - "thus": 1, - "next": 1, - "Cons": 1, - "ls": 1, - "assume": 1, - "IH": 2, - "have": 2, - "hence": 1, - "also": 1, - "finally": 1, - "using": 1, - "qed": 1, - "fastforce": 1, - "intro": 1, - "end": 1 - }, - "Jade": { - "p.": 1, - "Hello": 1, - "World": 1 - }, - "Java": { - "package": 6, - "clojure.asm": 1, - ";": 891, - "import": 66, - "java.lang.reflect.Constructor": 1, - "java.lang.reflect.Method": 1, - "public": 214, - "class": 12, - "Type": 42, - "{": 434, - "final": 78, - "static": 141, - "int": 62, - "VOID": 5, - "BOOLEAN": 6, - "CHAR": 6, - "BYTE": 6, - "SHORT": 6, - "INT": 6, - "FLOAT": 6, - "LONG": 7, - "DOUBLE": 7, - "ARRAY": 6, - "OBJECT": 7, - "VOID_TYPE": 3, - "new": 131, - "(": 1097, - ")": 1097, - "BOOLEAN_TYPE": 3, - "CHAR_TYPE": 3, - "BYTE_TYPE": 3, - "SHORT_TYPE": 3, - "INT_TYPE": 3, - "FLOAT_TYPE": 3, - "LONG_TYPE": 3, - "DOUBLE_TYPE": 3, - "private": 77, - "sort": 18, - "char": 13, - "[": 54, - "]": 54, - "buf": 43, - "off": 25, - "len": 24, - "this.sort": 2, - "this.len": 2, - "}": 434, - "this.buf": 2, - "this.off": 1, - "getType": 10, - "String": 33, - "typeDescriptor": 1, - "return": 267, - "typeDescriptor.toCharArray": 1, - "Class": 10, - "c": 21, - "if": 116, - "c.isPrimitive": 2, - "Integer.TYPE": 2, - "else": 33, - "Void.TYPE": 3, - "Boolean.TYPE": 2, - "Byte.TYPE": 2, - "Character.TYPE": 2, - "Short.TYPE": 2, - "Double.TYPE": 2, - "Float.TYPE": 2, - "getDescriptor": 15, - "getObjectType": 1, - "name": 10, - "l": 5, - "name.length": 2, - "+": 83, - "name.getChars": 1, - "getArgumentTypes": 2, - "methodDescriptor": 2, - "methodDescriptor.toCharArray": 2, - "size": 16, - "while": 10, - "true": 21, - "car": 18, - "break": 4, - "args": 6, - ".len": 1, - "Method": 3, - "method": 2, - "classes": 2, - "method.getParameterTypes": 1, - "types": 3, - "classes.length": 2, - "for": 16, - "i": 54, - "-": 15, - "getReturnType": 2, - "methodDescriptor.indexOf": 1, - "method.getReturnType": 1, - "switch": 6, - "case": 56, - "//": 16, - "default": 6, - "getSort": 1, - "getDimensions": 3, - "getElementType": 2, - "getClassName": 1, - "StringBuffer": 14, - "b": 7, - ".getClassName": 1, - "b.append": 1, - "b.toString": 1, - ".replace": 2, - "getInternalName": 2, - "buf.toString": 4, - "getMethodDescriptor": 2, - "returnType": 1, - "argumentTypes": 2, - "buf.append": 21, - "<": 13, - "argumentTypes.length": 1, - ".getDescriptor": 1, - "returnType.getDescriptor": 1, - "void": 25, - "c.getName": 1, - "getConstructorDescriptor": 1, - "Constructor": 1, - "parameters": 4, - "c.getParameterTypes": 1, - "parameters.length": 2, - ".toString": 1, - "m": 1, - "m.getParameterTypes": 1, - "m.getReturnType": 1, - "d": 10, - "d.isPrimitive": 1, - "d.isArray": 1, - "d.getComponentType": 1, - "d.getName": 1, - "name.charAt": 1, - "getSize": 1, - "||": 8, - "getOpcode": 1, - "opcode": 17, - "Opcodes.IALOAD": 1, - "Opcodes.IASTORE": 1, - "boolean": 36, - "equals": 2, - "Object": 31, - "o": 12, - "this": 16, - "instanceof": 19, - "false": 12, - "t": 6, - "t.sort": 1, - "Type.OBJECT": 2, - "Type.ARRAY": 2, - "t.len": 1, - "j": 9, - "t.off": 1, - "end": 4, - "t.buf": 1, - "hashCode": 1, - "hc": 4, - "*": 2, - "toString": 1, - "clojure.lang": 1, - "java.lang.ref.Reference": 1, - "java.math.BigInteger": 1, - "java.util.Map": 3, - "java.util.concurrent.ConcurrentHashMap": 1, - "java.lang.ref.SoftReference": 1, - "java.lang.ref.ReferenceQueue": 1, - "Util": 1, - "equiv": 17, - "k1": 40, - "k2": 38, - "null": 80, - "Number": 9, - "&&": 6, - "Numbers.equal": 1, - "IPersistentCollection": 5, - "pcequiv": 2, - "k1.equals": 2, - "long": 5, - "double": 4, - "c1": 2, - "c2": 2, - ".equiv": 2, - "identical": 1, - "classOf": 1, - "x": 8, - "x.getClass": 1, - "compare": 1, - "Numbers.compare": 1, - "Comparable": 1, - ".compareTo": 1, - "hash": 3, - "o.hashCode": 2, - "hasheq": 1, - "Numbers.hasheq": 1, - "IHashEq": 2, - ".hasheq": 1, - "hashCombine": 1, - "seed": 5, - "//a": 1, - "la": 1, - "boost": 1, - "e3779b9": 1, - "<<": 1, - "isPrimitive": 1, - "isInteger": 1, - "Integer": 2, - "Long": 1, - "BigInt": 1, - "BigInteger": 1, - "ret1": 2, - "ret": 4, - "nil": 2, - "ISeq": 2, - "": 1, - "clearCache": 1, - "ReferenceQueue": 1, - "rq": 1, - "ConcurrentHashMap": 1, - "K": 2, - "Reference": 3, - "": 3, - "cache": 1, - "//cleanup": 1, - "any": 1, - "dead": 1, - "entries": 1, - "rq.poll": 2, - "Map.Entry": 1, - "e": 31, - "cache.entrySet": 1, - "val": 3, - "e.getValue": 1, - "val.get": 1, - "cache.remove": 1, - "e.getKey": 1, - "RuntimeException": 5, - "runtimeException": 2, - "s": 10, - "Throwable": 4, - "sneakyThrow": 1, - "throw": 9, - "NullPointerException": 3, - "Util.": 1, - "": 1, - "sneakyThrow0": 2, - "@SuppressWarnings": 1, - "": 1, - "extends": 10, - "throws": 26, - "T": 2, - "nokogiri.internals": 1, - "nokogiri.internals.NokogiriHelpers.getNokogiriClass": 1, - "nokogiri.internals.NokogiriHelpers.isNamespace": 1, - "nokogiri.internals.NokogiriHelpers.stringOrNil": 1, - "nokogiri.HtmlDocument": 1, - "nokogiri.NokogiriService": 1, - "nokogiri.XmlDocument": 1, - "org.apache.xerces.parsers.DOMParser": 1, - "org.apache.xerces.xni.Augmentations": 1, - "org.apache.xerces.xni.QName": 1, - "org.apache.xerces.xni.XMLAttributes": 1, - "org.apache.xerces.xni.XNIException": 1, - "org.apache.xerces.xni.parser.XMLDocumentFilter": 1, - "org.apache.xerces.xni.parser.XMLParserConfiguration": 1, - "org.cyberneko.html.HTMLConfiguration": 1, - "org.cyberneko.html.filters.DefaultFilter": 1, - "org.jruby.Ruby": 2, - "org.jruby.RubyClass": 2, - "org.jruby.runtime.ThreadContext": 1, - "org.jruby.runtime.builtin.IRubyObject": 2, - "org.w3c.dom.Document": 1, - "org.w3c.dom.NamedNodeMap": 1, - "org.w3c.dom.NodeList": 1, - "HtmlDomParserContext": 3, - "XmlDomParserContext": 1, - "Ruby": 43, - "runtime": 88, - "IRubyObject": 35, - "options": 4, - "super": 7, - "encoding": 2, - "@Override": 6, - "protected": 8, - "initErrorHandler": 1, - "options.strict": 1, - "errorHandler": 6, - "NokogiriStrictErrorHandler": 1, - "options.noError": 2, - "options.noWarning": 2, - "NokogiriNonStrictErrorHandler4NekoHtml": 1, - "initParser": 1, - "XMLParserConfiguration": 1, - "config": 2, - "HTMLConfiguration": 1, - "XMLDocumentFilter": 3, - "removeNSAttrsFilter": 2, - "RemoveNSAttrsFilter": 2, - "elementValidityCheckFilter": 3, - "ElementValidityCheckFilter": 3, - "//XMLDocumentFilter": 1, - "filters": 3, - "config.setErrorHandler": 1, - "this.errorHandler": 2, - "parser": 1, - "DOMParser": 1, - "setProperty": 4, - "java_encoding": 2, - "setFeature": 4, - "enableDocumentFragment": 1, - "XmlDocument": 8, - "getNewEmptyDocument": 1, - "ThreadContext": 2, - "context": 8, - "XmlDocument.rbNew": 1, - "getNokogiriClass": 1, - "context.getRuntime": 3, - "wrapDocument": 1, - "RubyClass": 92, - "klazz": 107, - "Document": 2, - "document": 5, - "HtmlDocument": 7, - "htmlDocument": 6, - "NokogiriService.HTML_DOCUMENT_ALLOCATOR.allocate": 1, - "htmlDocument.setDocumentNode": 1, - "ruby_encoding.isNil": 1, - "detected_encoding": 2, - "detected_encoding.isNil": 1, - "ruby_encoding": 3, - "charset": 2, - "tryGetCharsetFromHtml5MetaTag": 2, - "stringOrNil": 1, - "htmlDocument.setEncoding": 1, - "htmlDocument.setParsedEncoding": 1, - ".equalsIgnoreCase": 5, - "document.getDocumentElement": 2, - ".getNodeName": 4, - "NodeList": 2, - "list": 1, - ".getChildNodes": 2, - "list.getLength": 1, - "list.item": 2, - "headers": 1, - "headers.getLength": 1, - "headers.item": 2, - "NamedNodeMap": 1, - "nodeMap": 1, - ".getAttributes": 1, - "k": 5, - "nodeMap.getLength": 1, - "nodeMap.item": 2, - ".getNodeValue": 1, - "DefaultFilter": 2, - "startElement": 2, - "QName": 2, - "element": 3, - "XMLAttributes": 2, - "attrs": 4, - "Augmentations": 2, - "augs": 4, - "XNIException": 2, - "attrs.getLength": 1, - "isNamespace": 1, - "attrs.getQName": 1, - "attrs.removeAttributeAt": 1, - "element.uri": 1, - "super.startElement": 2, - "NokogiriErrorHandler": 2, - "element_names": 3, - "g": 1, - "r": 1, - "w": 1, - "y": 1, - "z": 1, - "isValid": 2, - "testee": 1, - "testee.toCharArray": 1, - "index": 4, - ".length": 1, - "testee.equals": 1, - "name.rawname": 2, - "errorHandler.getErrors": 1, - ".add": 1, - "Exception": 1, - "hudson.model": 1, - "hudson.ExtensionListView": 1, - "hudson.Functions": 1, - "hudson.Platform": 1, - "hudson.PluginManager": 1, - "hudson.cli.declarative.CLIResolver": 1, - "hudson.model.listeners.ItemListener": 1, - "hudson.slaves.ComputerListener": 1, - "hudson.util.CopyOnWriteList": 1, - "hudson.util.FormValidation": 1, - "jenkins.model.Jenkins": 1, - "org.jvnet.hudson.reactor.ReactorException": 1, - "org.kohsuke.stapler.QueryParameter": 1, - "org.kohsuke.stapler.Stapler": 1, - "org.kohsuke.stapler.StaplerRequest": 1, - "org.kohsuke.stapler.StaplerResponse": 1, - "javax.servlet.ServletContext": 1, - "javax.servlet.ServletException": 1, - "java.io.File": 1, - "java.io.IOException": 10, - "java.text.NumberFormat": 1, - "java.text.ParseException": 1, - "java.util.Collections": 2, - "java.util.List": 1, - "hudson.Util.fixEmpty": 1, - "Hudson": 5, - "Jenkins": 2, - "transient": 2, - "CopyOnWriteList": 4, - "": 2, - "itemListeners": 2, - "ExtensionListView.createCopyOnWriteList": 2, - "ItemListener.class": 1, - "": 2, - "computerListeners": 2, - "ComputerListener.class": 1, - "@CLIResolver": 1, - "getInstance": 2, - "Jenkins.getInstance": 2, - "File": 2, - "root": 6, - "ServletContext": 2, - "IOException": 8, - "InterruptedException": 2, - "ReactorException": 2, - "PluginManager": 1, - "pluginManager": 2, - "getJobListeners": 1, - "getComputerListeners": 1, - "Slave": 3, - "getSlave": 1, - "Node": 1, - "n": 3, - "getNode": 1, - "List": 3, - "": 2, - "getSlaves": 1, - "slaves": 3, - "setSlaves": 1, - "setNodes": 1, - "TopLevelItem": 3, - "getJob": 1, - "getItem": 1, - "getJobCaseInsensitive": 1, - "match": 2, - "Functions.toEmailSafeString": 2, - "item": 2, - "getItems": 1, - "item.getName": 1, - "synchronized": 1, - "doQuietDown": 2, - "StaplerResponse": 4, - "rsp": 6, - "ServletException": 3, - ".generateResponse": 2, - "doLogRss": 1, - "StaplerRequest": 4, - "req": 6, - "qs": 3, - "req.getQueryString": 1, - "rsp.sendRedirect2": 1, - "doFieldCheck": 3, - "fixEmpty": 8, - "req.getParameter": 4, - "FormValidation": 2, - "@QueryParameter": 4, - "value": 11, - "type": 3, - "errorText": 3, - "warningText": 3, - "FormValidation.error": 4, - "FormValidation.warning": 1, - "try": 26, - "type.equalsIgnoreCase": 2, - "NumberFormat.getInstance": 2, - ".parse": 2, - ".floatValue": 1, - "<=>": 1, - "0": 1, - "error": 1, - "Messages": 1, - "Hudson_NotAPositiveNumber": 1, - "equalsIgnoreCase": 1, - "number": 1, - "negative": 1, - "NumberFormat": 1, - "parse": 1, - "floatValue": 1, - "Messages.Hudson_NotANegativeNumber": 1, - "catch": 27, - "ParseException": 1, - "Messages.Hudson_NotANumber": 1, - "FormValidation.ok": 1, - "isWindows": 1, - "File.pathSeparatorChar": 1, - "isDarwin": 1, - "Platform.isDarwin": 1, - "adminCheck": 3, - "Stapler.getCurrentRequest": 1, - "Stapler.getCurrentResponse": 1, - "isAdmin": 4, - "rsp.sendError": 1, - "StaplerResponse.SC_FORBIDDEN": 1, - ".getACL": 1, - ".hasPermission": 1, - "ADMINISTER": 1, - "XSTREAM.alias": 1, - "Hudson.class": 1, - "MasterComputer": 1, - "Jenkins.MasterComputer": 1, - "CloudList": 3, - "Jenkins.CloudList": 1, - "h": 2, - "needed": 1, - "XStream": 1, - "deserialization": 1, - "nokogiri": 6, - "java.util.HashMap": 1, - "org.jruby.RubyArray": 1, - "org.jruby.RubyFixnum": 1, - "org.jruby.RubyModule": 1, - "org.jruby.runtime.ObjectAllocator": 1, - "org.jruby.runtime.load.BasicLibraryService": 1, - "NokogiriService": 1, - "implements": 3, - "BasicLibraryService": 1, - "nokogiriClassCacheGvarName": 1, - "Map": 1, - "": 2, - "nokogiriClassCache": 2, - "basicLoad": 1, - "ruby": 25, - "init": 2, - "createNokogiriClassCahce": 2, - "Collections.synchronizedMap": 1, - "HashMap": 1, - "nokogiriClassCache.put": 26, - "ruby.getClassFromPath": 26, - "RubyModule": 18, - "ruby.defineModule": 1, - "xmlModule": 7, - "nokogiri.defineModuleUnder": 3, - "xmlSaxModule": 3, - "xmlModule.defineModuleUnder": 1, - "htmlModule": 5, - "htmlSaxModule": 3, - "htmlModule.defineModuleUnder": 1, - "xsltModule": 3, - "createNokogiriModule": 2, - "createSyntaxErrors": 2, - "xmlNode": 5, - "createXmlModule": 2, - "createHtmlModule": 2, - "createDocuments": 2, - "createSaxModule": 2, - "createXsltModule": 2, - "encHandler": 1, - "nokogiri.defineClassUnder": 2, - "ruby.getObject": 13, - "ENCODING_HANDLER_ALLOCATOR": 2, - "encHandler.defineAnnotatedMethods": 1, - "EncodingHandler.class": 1, - "syntaxError": 2, - "ruby.getStandardError": 2, - ".getAllocator": 1, - "xmlSyntaxError": 4, - "xmlModule.defineClassUnder": 23, - "XML_SYNTAXERROR_ALLOCATOR": 2, - "xmlSyntaxError.defineAnnotatedMethods": 1, - "XmlSyntaxError.class": 1, - "node": 14, - "XML_NODE_ALLOCATOR": 2, - "node.defineAnnotatedMethods": 1, - "XmlNode.class": 1, - "attr": 1, - "XML_ATTR_ALLOCATOR": 2, - "attr.defineAnnotatedMethods": 1, - "XmlAttr.class": 1, - "attrDecl": 1, - "XML_ATTRIBUTE_DECL_ALLOCATOR": 2, - "attrDecl.defineAnnotatedMethods": 1, - "XmlAttributeDecl.class": 1, - "characterData": 3, - "comment": 1, - "XML_COMMENT_ALLOCATOR": 2, - "comment.defineAnnotatedMethods": 1, - "XmlComment.class": 1, - "text": 2, - "XML_TEXT_ALLOCATOR": 2, - "text.defineAnnotatedMethods": 1, - "XmlText.class": 1, - "cdata": 1, - "XML_CDATA_ALLOCATOR": 2, - "cdata.defineAnnotatedMethods": 1, - "XmlCdata.class": 1, - "dtd": 1, - "XML_DTD_ALLOCATOR": 2, - "dtd.defineAnnotatedMethods": 1, - "XmlDtd.class": 1, - "documentFragment": 1, - "XML_DOCUMENT_FRAGMENT_ALLOCATOR": 2, - "documentFragment.defineAnnotatedMethods": 1, - "XmlDocumentFragment.class": 1, - "XML_ELEMENT_ALLOCATOR": 2, - "element.defineAnnotatedMethods": 1, - "XmlElement.class": 1, - "elementContent": 1, - "XML_ELEMENT_CONTENT_ALLOCATOR": 2, - "elementContent.defineAnnotatedMethods": 1, - "XmlElementContent.class": 1, - "elementDecl": 1, - "XML_ELEMENT_DECL_ALLOCATOR": 2, - "elementDecl.defineAnnotatedMethods": 1, - "XmlElementDecl.class": 1, - "entityDecl": 1, - "XML_ENTITY_DECL_ALLOCATOR": 2, - "entityDecl.defineAnnotatedMethods": 1, - "XmlEntityDecl.class": 1, - "entityDecl.defineConstant": 6, - "RubyFixnum.newFixnum": 6, - "XmlEntityDecl.INTERNAL_GENERAL": 1, - "XmlEntityDecl.EXTERNAL_GENERAL_PARSED": 1, - "XmlEntityDecl.EXTERNAL_GENERAL_UNPARSED": 1, - "XmlEntityDecl.INTERNAL_PARAMETER": 1, - "XmlEntityDecl.EXTERNAL_PARAMETER": 1, - "XmlEntityDecl.INTERNAL_PREDEFINED": 1, - "entref": 1, - "XML_ENTITY_REFERENCE_ALLOCATOR": 2, - "entref.defineAnnotatedMethods": 1, - "XmlEntityReference.class": 1, - "namespace": 1, - "XML_NAMESPACE_ALLOCATOR": 2, - "namespace.defineAnnotatedMethods": 1, - "XmlNamespace.class": 1, - "nodeSet": 1, - "XML_NODESET_ALLOCATOR": 2, - "nodeSet.defineAnnotatedMethods": 1, - "XmlNodeSet.class": 1, - "pi": 1, - "XML_PROCESSING_INSTRUCTION_ALLOCATOR": 2, - "pi.defineAnnotatedMethods": 1, - "XmlProcessingInstruction.class": 1, - "reader": 1, - "XML_READER_ALLOCATOR": 2, - "reader.defineAnnotatedMethods": 1, - "XmlReader.class": 1, - "schema": 2, - "XML_SCHEMA_ALLOCATOR": 2, - "schema.defineAnnotatedMethods": 1, - "XmlSchema.class": 1, - "relaxng": 1, - "XML_RELAXNG_ALLOCATOR": 2, - "relaxng.defineAnnotatedMethods": 1, - "XmlRelaxng.class": 1, - "xpathContext": 1, - "XML_XPATHCONTEXT_ALLOCATOR": 2, - "xpathContext.defineAnnotatedMethods": 1, - "XmlXpathContext.class": 1, - "htmlElemDesc": 1, - "htmlModule.defineClassUnder": 3, - "HTML_ELEMENT_DESCRIPTION_ALLOCATOR": 2, - "htmlElemDesc.defineAnnotatedMethods": 1, - "HtmlElementDescription.class": 1, - "htmlEntityLookup": 1, - "HTML_ENTITY_LOOKUP_ALLOCATOR": 2, - "htmlEntityLookup.defineAnnotatedMethods": 1, - "HtmlEntityLookup.class": 1, - "xmlDocument": 5, - "XML_DOCUMENT_ALLOCATOR": 2, - "xmlDocument.defineAnnotatedMethods": 1, - "XmlDocument.class": 1, - "//RubyModule": 1, - "htmlDoc": 1, - "html.defineOrGetClassUnder": 1, - "HTML_DOCUMENT_ALLOCATOR": 2, - "htmlDocument.defineAnnotatedMethods": 1, - "HtmlDocument.class": 1, - "xmlSaxParserContext": 5, - "xmlSaxModule.defineClassUnder": 2, - "XML_SAXPARSER_CONTEXT_ALLOCATOR": 2, - "xmlSaxParserContext.defineAnnotatedMethods": 1, - "XmlSaxParserContext.class": 1, - "xmlSaxPushParser": 1, - "XML_SAXPUSHPARSER_ALLOCATOR": 2, - "xmlSaxPushParser.defineAnnotatedMethods": 1, - "XmlSaxPushParser.class": 1, - "htmlSaxParserContext": 4, - "htmlSaxModule.defineClassUnder": 1, - "HTML_SAXPARSER_CONTEXT_ALLOCATOR": 2, - "htmlSaxParserContext.defineAnnotatedMethods": 1, - "HtmlSaxParserContext.class": 1, - "stylesheet": 1, - "xsltModule.defineClassUnder": 1, - "XSLT_STYLESHEET_ALLOCATOR": 2, - "stylesheet.defineAnnotatedMethods": 1, - "XsltStylesheet.class": 2, - "xsltModule.defineAnnotatedMethod": 1, - "ObjectAllocator": 60, - "allocate": 30, - "EncodingHandler": 1, - "clone": 47, - "htmlDocument.clone": 1, - "clone.setMetaClass": 23, - "CloneNotSupportedException": 23, - "HtmlSaxParserContext": 5, - "htmlSaxParserContext.clone": 1, - "HtmlElementDescription": 1, - "HtmlEntityLookup": 1, - "XmlAttr": 5, - "xmlAttr": 3, - "xmlAttr.clone": 1, - "XmlCdata": 5, - "xmlCdata": 3, - "xmlCdata.clone": 1, - "XmlComment": 5, - "xmlComment": 3, - "xmlComment.clone": 1, - "xmlDocument.clone": 1, - "XmlDocumentFragment": 5, - "xmlDocumentFragment": 3, - "xmlDocumentFragment.clone": 1, - "XmlDtd": 5, - "xmlDtd": 3, - "xmlDtd.clone": 1, - "XmlElement": 5, - "xmlElement": 3, - "xmlElement.clone": 1, - "XmlElementDecl": 5, - "xmlElementDecl": 3, - "xmlElementDecl.clone": 1, - "XmlEntityReference": 5, - "xmlEntityRef": 3, - "xmlEntityRef.clone": 1, - "XmlNamespace": 5, - "xmlNamespace": 3, - "xmlNamespace.clone": 1, - "XmlNode": 5, - "xmlNode.clone": 1, - "XmlNodeSet": 5, - "xmlNodeSet": 5, - "xmlNodeSet.clone": 1, - "xmlNodeSet.setNodes": 1, - "RubyArray.newEmptyArray": 1, - "XmlProcessingInstruction": 5, - "xmlProcessingInstruction": 3, - "xmlProcessingInstruction.clone": 1, - "XmlReader": 5, - "xmlReader": 5, - "xmlReader.clone": 1, - "XmlAttributeDecl": 1, - "XmlEntityDecl": 1, - "runtime.newNotImplementedError": 1, - "XmlRelaxng": 5, - "xmlRelaxng": 3, - "xmlRelaxng.clone": 1, - "XmlSaxParserContext": 5, - "xmlSaxParserContext.clone": 1, - "XmlSaxPushParser": 1, - "XmlSchema": 5, - "xmlSchema": 3, - "xmlSchema.clone": 1, - "XmlSyntaxError": 5, - "xmlSyntaxError.clone": 1, - "XmlText": 6, - "xmlText": 3, - "xmlText.clone": 1, - "XmlXpathContext": 5, - "xmlXpathContext": 3, - "xmlXpathContext.clone": 1, - "XsltStylesheet": 4, - "xsltStylesheet": 3, - "xsltStylesheet.clone": 1, - "persons": 1, - "ProtocolBuffer": 2, - "registerAllExtensions": 1, - "com.google.protobuf.ExtensionRegistry": 2, - "registry": 1, - "interface": 1, - "PersonOrBuilder": 2, - "com.google.protobuf.MessageOrBuilder": 1, - "hasName": 5, - "java.lang.String": 15, - "getName": 3, - "com.google.protobuf.ByteString": 13, - "getNameBytes": 5, - "Person": 10, - "com.google.protobuf.GeneratedMessage": 1, - "com.google.protobuf.GeneratedMessage.Builder": 2, - "": 1, - "builder": 4, - "this.unknownFields": 4, - "builder.getUnknownFields": 1, - "noInit": 1, - "com.google.protobuf.UnknownFieldSet.getDefaultInstance": 1, - "defaultInstance": 4, - "getDefaultInstance": 2, - "getDefaultInstanceForType": 2, - "com.google.protobuf.UnknownFieldSet": 2, - "unknownFields": 3, - "@java.lang.Override": 4, - "getUnknownFields": 3, - "com.google.protobuf.CodedInputStream": 5, - "input": 18, - "com.google.protobuf.ExtensionRegistryLite": 8, - "extensionRegistry": 16, - "com.google.protobuf.InvalidProtocolBufferException": 9, - "initFields": 2, - "mutable_bitField0_": 1, - "com.google.protobuf.UnknownFieldSet.Builder": 1, - "com.google.protobuf.UnknownFieldSet.newBuilder": 1, - "done": 4, - "tag": 3, - "input.readTag": 1, - "parseUnknownField": 1, - "bitField0_": 15, - "|": 5, - "name_": 18, - "input.readBytes": 1, - "e.setUnfinishedMessage": 1, - "e.getMessage": 1, - ".setUnfinishedMessage": 1, - "finally": 2, - "unknownFields.build": 1, - "makeExtensionsImmutable": 1, - "com.google.protobuf.Descriptors.Descriptor": 4, - "persons.ProtocolBuffer.internal_static_persons_Person_descriptor": 3, - "com.google.protobuf.GeneratedMessage.FieldAccessorTable": 4, - "internalGetFieldAccessorTable": 2, - "persons.ProtocolBuffer.internal_static_persons_Person_fieldAccessorTable": 2, - ".ensureFieldAccessorsInitialized": 2, - "persons.ProtocolBuffer.Person.class": 2, - "persons.ProtocolBuffer.Person.Builder.class": 2, - "com.google.protobuf.Parser": 2, - "": 3, - "PARSER": 2, - "com.google.protobuf.AbstractParser": 1, - "parsePartialFrom": 1, - "getParserForType": 1, - "NAME_FIELD_NUMBER": 1, - "java.lang.Object": 7, - "&": 7, - "ref": 16, - "bs": 1, - "bs.toStringUtf8": 1, - "bs.isValidUtf8": 1, - "com.google.protobuf.ByteString.copyFromUtf8": 2, - "byte": 4, - "memoizedIsInitialized": 4, - "isInitialized": 5, - "writeTo": 1, - "com.google.protobuf.CodedOutputStream": 2, - "output": 2, - "getSerializedSize": 2, - "output.writeBytes": 1, - ".writeTo": 1, - "memoizedSerializedSize": 3, - ".computeBytesSize": 1, - ".getSerializedSize": 1, - "serialVersionUID": 1, - "L": 1, - "writeReplace": 1, - "java.io.ObjectStreamException": 1, - "super.writeReplace": 1, - "persons.ProtocolBuffer.Person": 22, - "parseFrom": 8, - "data": 8, - "PARSER.parseFrom": 8, - "java.io.InputStream": 4, - "parseDelimitedFrom": 2, - "PARSER.parseDelimitedFrom": 2, - "Builder": 20, - "newBuilder": 5, - "Builder.create": 1, - "newBuilderForType": 2, - "prototype": 2, - ".mergeFrom": 2, - "toBuilder": 1, - "com.google.protobuf.GeneratedMessage.BuilderParent": 2, - "parent": 4, - "": 1, - "persons.ProtocolBuffer.PersonOrBuilder": 1, - "maybeForceBuilderInitialization": 3, - "com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders": 1, - "create": 2, - "clear": 1, - "super.clear": 1, - "buildPartial": 3, - "getDescriptorForType": 1, - "persons.ProtocolBuffer.Person.getDefaultInstance": 2, - "build": 1, - "result": 5, - "result.isInitialized": 1, - "newUninitializedMessageException": 1, - "from_bitField0_": 2, - "to_bitField0_": 3, - "result.name_": 1, - "result.bitField0_": 1, - "onBuilt": 1, - "mergeFrom": 5, - "com.google.protobuf.Message": 1, - "other": 6, - "super.mergeFrom": 1, - "other.hasName": 1, - "other.name_": 1, - "onChanged": 4, - "this.mergeUnknownFields": 1, - "other.getUnknownFields": 1, - "parsedMessage": 5, - "PARSER.parsePartialFrom": 1, - "e.getUnfinishedMessage": 1, - ".toStringUtf8": 1, - "setName": 1, - "clearName": 1, - ".getName": 1, - "setNameBytes": 1, - "defaultInstance.initFields": 1, - "internal_static_persons_Person_descriptor": 3, - "internal_static_persons_Person_fieldAccessorTable": 2, - "com.google.protobuf.Descriptors.FileDescriptor": 5, - "descriptor": 3, - "descriptorData": 2, - "com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner": 2, - "assigner": 2, - "assignDescriptors": 1, - ".getMessageTypes": 1, - ".get": 1, - ".internalBuildGeneratedFileFrom": 1 - }, - "JavaScript": { - "function": 1214, - "(": 8528, - ")": 8536, - "{": 2742, - ";": 4066, - "//": 410, - "jshint": 1, - "_": 9, - "var": 916, - "Modal": 2, - "content": 5, - "options": 56, - "this.options": 6, - "this.": 2, - "element": 19, - ".delegate": 2, - ".proxy": 1, - "this.hide": 1, - "this": 578, - "}": 2718, - "Modal.prototype": 1, - "constructor": 8, - "toggle": 10, - "return": 947, - "[": 1461, - "this.isShown": 3, - "]": 1458, - "show": 10, - "that": 33, - "e": 663, - ".Event": 1, - "element.trigger": 1, - "if": 1230, - "||": 648, - "e.isDefaultPrevented": 2, - ".addClass": 1, - "true": 147, - "escape.call": 1, - "backdrop.call": 1, - "transition": 1, - ".support.transition": 1, - "&&": 1017, - "that.": 3, - "element.hasClass": 1, - "element.parent": 1, - ".length": 24, - "element.appendTo": 1, - "document.body": 8, - "//don": 1, - "in": 170, - "shown": 2, - "hide": 8, - "body": 22, - "modal": 4, - "-": 706, - "open": 2, - "fade": 4, - "hidden": 12, - "
": 4, - "class=": 5, - "static": 2, - "keyup.dismiss.modal": 2, - "object": 59, - "string": 41, - "click.modal.data": 1, - "api": 1, - "data": 145, - "target": 44, - "href": 9, - ".extend": 1, - "target.data": 1, - "this.data": 5, - "e.preventDefault": 1, - "target.modal": 1, - "option": 12, - "window.jQuery": 7, - "Animal": 12, - "Horse": 12, - "Snake": 12, - "sam": 4, - "tom": 4, - "__hasProp": 2, - "Object.prototype.hasOwnProperty": 6, - "__extends": 6, - "child": 17, - "parent": 15, - "for": 262, - "key": 85, - "__hasProp.call": 2, - "ctor": 6, - "this.constructor": 5, - "ctor.prototype": 3, - "parent.prototype": 6, - "child.prototype": 4, - "new": 86, - "child.__super__": 3, - "name": 161, - "this.name": 7, - "Animal.prototype.move": 2, - "meters": 4, - "alert": 11, - "+": 1136, - "Snake.__super__.constructor.apply": 2, - "arguments": 83, - "Snake.prototype.move": 2, - "Snake.__super__.move.call": 2, - "Horse.__super__.constructor.apply": 2, - "Horse.prototype.move": 2, - "Horse.__super__.move.call": 2, - "sam.move": 2, - "tom.move": 2, - ".call": 10, - ".hasOwnProperty": 2, - "Animal.name": 1, - "_super": 4, - "Snake.name": 1, - "Horse.name": 1, - "console.log": 3, - "hanaMath": 1, - ".import": 1, - "x": 41, - "parseFloat": 32, - ".request.parameters.get": 2, - "y": 109, - "result": 12, - "hanaMath.multiply": 1, - "output": 2, - "title": 1, - "input": 26, - ".response.contentType": 1, - ".response.statusCode": 1, - ".net.http.OK": 1, - ".response.setBody": 1, - "JSON.stringify": 5, - "multiply": 1, - "*": 71, - "add": 16, - "util": 1, - "require": 9, - "net": 1, - "stream": 1, - "url": 23, - "EventEmitter": 3, - ".EventEmitter": 1, - "FreeList": 2, - ".FreeList": 1, - "HTTPParser": 2, - "process.binding": 1, - ".HTTPParser": 1, - "assert": 8, - ".ok": 1, - "END_OF_FILE": 3, - "debug": 15, - "process.env.NODE_DEBUG": 2, - "/http/.test": 1, - "console.error": 3, - "else": 307, - "parserOnHeaders": 2, - "headers": 41, - "this.maxHeaderPairs": 2, - "<": 209, - "this._headers.length": 1, - "this._headers": 13, - "this._headers.concat": 1, - "this._url": 1, - "parserOnHeadersComplete": 2, - "info": 2, - "parser": 27, - "info.headers": 1, - "info.url": 1, - "parser._headers": 6, - "parser._url": 4, - "parser.incoming": 9, - "IncomingMessage": 4, - "parser.socket": 4, - "parser.incoming.httpVersionMajor": 1, - "info.versionMajor": 2, - "parser.incoming.httpVersionMinor": 1, - "info.versionMinor": 2, - "parser.incoming.httpVersion": 1, - "parser.incoming.url": 1, - "n": 874, - "headers.length": 2, - "parser.maxHeaderPairs": 4, - "Math.min": 5, - "i": 853, - "k": 302, - "v": 135, - "parser.incoming._addHeaderLine": 2, - "info.method": 2, - "parser.incoming.method": 1, - "parser.incoming.statusCode": 2, - "info.statusCode": 1, - "parser.incoming.upgrade": 4, - "info.upgrade": 2, - "skipBody": 3, - "false": 142, - "response": 3, - "to": 92, - "HEAD": 3, - "or": 38, - "CONNECT": 1, - "parser.onIncoming": 3, - "info.shouldKeepAlive": 1, - "parserOnBody": 2, - "b": 961, - "start": 20, - "len": 11, - "slice": 10, - "b.slice": 1, - "parser.incoming._paused": 2, - "parser.incoming._pendings.length": 2, - "parser.incoming._pendings.push": 2, - "parser.incoming._emitData": 1, - "parserOnMessageComplete": 2, - "parser.incoming.complete": 2, - "parser.incoming.readable": 1, - "parser.incoming._emitEnd": 1, - "parser.socket.readable": 1, - "parser.socket.resume": 1, - "parsers": 2, - "HTTPParser.REQUEST": 2, - "parser.onHeaders": 1, - "parser.onHeadersComplete": 1, - "parser.onBody": 1, - "parser.onMessageComplete": 1, - "exports.parsers": 1, - "CRLF": 13, - "STATUS_CODES": 2, - "exports.STATUS_CODES": 1, - "RFC": 16, - "obsoleted": 1, - "by": 12, - "connectionExpression": 1, - "/Connection/i": 1, - "transferEncodingExpression": 1, - "/Transfer": 1, - "Encoding/i": 1, - "closeExpression": 1, - "/close/i": 1, - "chunkExpression": 1, - "/chunk/i": 1, - "contentLengthExpression": 1, - "/Content": 1, - "Length/i": 1, - "dateExpression": 1, - "/Date/i": 1, - "expectExpression": 1, - "/Expect/i": 1, - "continueExpression": 1, - "/100": 2, - "continue/i": 1, - "dateCache": 5, - "utcDate": 2, - "d": 771, - "Date": 4, - "d.toUTCString": 1, - "setTimeout": 19, - "undefined": 328, - "d.getMilliseconds": 1, - "socket": 26, - "stream.Stream.call": 2, - "this.socket": 10, - "this.connection": 8, - "this.httpVersion": 1, - "null": 427, - "this.complete": 2, - "this.headers": 2, - "this.trailers": 2, - "this.readable": 1, - "this._paused": 3, - "this._pendings": 1, - "this._endEmitted": 3, - "this.url": 1, - "this.method": 2, - "this.statusCode": 3, - "this.client": 1, - "util.inherits": 7, - "stream.Stream": 2, - "exports.IncomingMessage": 1, - "IncomingMessage.prototype.destroy": 1, - "error": 20, - "this.socket.destroy": 3, - "IncomingMessage.prototype.setEncoding": 1, - "encoding": 26, - "StringDecoder": 2, - ".StringDecoder": 1, - "lazy": 1, - "load": 5, - "this._decoder": 2, - "IncomingMessage.prototype.pause": 1, - "this.socket.pause": 1, - "IncomingMessage.prototype.resume": 1, - "this.socket.resume": 1, - "this._emitPending": 1, - "IncomingMessage.prototype._emitPending": 1, - "callback": 23, - "this._pendings.length": 1, - "self": 17, - "process.nextTick": 1, - "while": 53, - "self._paused": 1, - "self._pendings.length": 2, - "chunk": 14, - "self._pendings.shift": 1, - "Buffer.isBuffer": 2, - "self._emitData": 1, - "self.readable": 1, - "self._emitEnd": 1, - "IncomingMessage.prototype._emitData": 1, - "this._decoder.write": 1, - "string.length": 1, - "this.emit": 5, - "IncomingMessage.prototype._emitEnd": 1, - "IncomingMessage.prototype._addHeaderLine": 1, - "field": 36, - "value": 98, - "dest": 12, - "field.toLowerCase": 1, - "switch": 30, - "case": 136, - ".push": 3, - "break": 111, - "default": 21, - "field.slice": 1, - "OutgoingMessage": 5, - "this.output": 3, - "this.outputEncodings": 2, - "this.writable": 1, - "this._last": 3, - "this.chunkedEncoding": 6, - "this.shouldKeepAlive": 4, - "this.useChunkedEncodingByDefault": 4, - "this.sendDate": 3, - "this._hasBody": 6, - "this._trailer": 5, - "this.finished": 4, - "exports.OutgoingMessage": 1, - "OutgoingMessage.prototype.destroy": 1, - "OutgoingMessage.prototype._send": 1, - "this._headerSent": 5, - "typeof": 132, - "this._header": 10, - "this.output.unshift": 1, - "this.outputEncodings.unshift": 1, - "this._writeRaw": 2, - "OutgoingMessage.prototype._writeRaw": 1, - "data.length": 3, - "this.connection._httpMessage": 3, - "this.connection.writable": 3, - "this.output.length": 5, - "this._buffer": 2, - "c": 775, - "this.output.shift": 2, - "this.outputEncodings.shift": 2, - "this.connection.write": 4, - "OutgoingMessage.prototype._buffer": 1, - "length": 48, - "this.output.push": 2, - "this.outputEncodings.push": 2, - "lastEncoding": 2, - "lastData": 2, - "data.constructor": 1, - "lastData.constructor": 1, - "OutgoingMessage.prototype._storeHeader": 1, - "firstLine": 2, - "sentConnectionHeader": 3, - "sentContentLengthHeader": 4, - "sentTransferEncodingHeader": 3, - "sentDateHeader": 3, - "sentExpect": 3, - "messageHeader": 7, - "store": 3, - "connectionExpression.test": 1, - "closeExpression.test": 1, - "self._last": 4, - "self.shouldKeepAlive": 4, - "transferEncodingExpression.test": 1, - "chunkExpression.test": 1, - "self.chunkedEncoding": 1, - "contentLengthExpression.test": 1, - "dateExpression.test": 1, - "expectExpression.test": 1, - "keys": 11, - "Object.keys": 5, - "isArray": 10, - "Array.isArray": 7, - "l": 312, - "keys.length": 5, - "j": 265, - "value.length": 1, - "shouldSendKeepAlive": 2, - "this.agent": 2, - "this._send": 8, - "OutgoingMessage.prototype.setHeader": 1, - "arguments.length": 18, - "throw": 27, - "Error": 16, - "name.toLowerCase": 6, - "this._headerNames": 5, - "OutgoingMessage.prototype.getHeader": 1, - "OutgoingMessage.prototype.removeHeader": 1, - "delete": 39, - "OutgoingMessage.prototype._renderHeaders": 1, - "OutgoingMessage.prototype.write": 1, - "this._implicitHeader": 2, - "TypeError": 2, - "chunk.length": 2, - "ret": 62, - "Buffer.byteLength": 2, - "len.toString": 2, - "OutgoingMessage.prototype.addTrailers": 1, - "OutgoingMessage.prototype.end": 1, - "hot": 3, - ".toString": 3, - "this.write": 1, - "Last": 2, - "chunk.": 1, - "this._finish": 2, - "OutgoingMessage.prototype._finish": 1, - "instanceof": 19, - "ServerResponse": 5, - "DTRACE_HTTP_SERVER_RESPONSE": 1, - "ClientRequest": 6, - "DTRACE_HTTP_CLIENT_REQUEST": 1, - "OutgoingMessage.prototype._flush": 1, - "this.socket.writable": 2, - "XXX": 1, - "Necessary": 1, - "this.socket.write": 1, - "req": 32, - "OutgoingMessage.call": 2, - "req.method": 5, - "req.httpVersionMajor": 2, - "req.httpVersionMinor": 2, - "exports.ServerResponse": 1, - "ServerResponse.prototype.statusCode": 1, - "onServerResponseClose": 3, - "this._httpMessage.emit": 2, - "ServerResponse.prototype.assignSocket": 1, - "socket._httpMessage": 9, - "socket.on": 2, - "this._flush": 1, - "ServerResponse.prototype.detachSocket": 1, - "socket.removeListener": 5, - "ServerResponse.prototype.writeContinue": 1, - "this._sent100": 2, - "ServerResponse.prototype._implicitHeader": 1, - "this.writeHead": 1, - "ServerResponse.prototype.writeHead": 1, - "statusCode": 7, - "reasonPhrase": 4, - "headerIndex": 4, - "obj": 40, - "this._renderHeaders": 3, - "obj.length": 1, - "obj.push": 1, - "statusLine": 2, - "statusCode.toString": 1, - "this._expect_continue": 1, - "this._storeHeader": 2, - "ServerResponse.prototype.writeHeader": 1, - "this.writeHead.apply": 1, - "Agent": 5, - "self.options": 2, - "self.requests": 6, - "self.sockets": 3, - "self.maxSockets": 1, - "self.options.maxSockets": 1, - "Agent.defaultMaxSockets": 2, - "self.on": 1, - "host": 29, - "port": 29, - "localAddress": 15, - ".shift": 1, - ".onSocket": 1, - "socket.destroy": 10, - "self.createConnection": 2, - "net.createConnection": 3, - "exports.Agent": 1, - "Agent.prototype.defaultPort": 1, - "Agent.prototype.addRequest": 1, - "this.sockets": 9, - "this.maxSockets": 1, - "req.onSocket": 1, - "this.createSocket": 2, - "this.requests": 5, - "Agent.prototype.createSocket": 1, - "util._extend": 1, - "options.port": 4, - "options.host": 4, - "options.localAddress": 3, - "s": 290, - "onFree": 3, - "self.emit": 9, - "s.on": 4, - "onClose": 3, - "err": 5, - "self.removeSocket": 2, - "onRemove": 3, - "s.removeListener": 3, - "Agent.prototype.removeSocket": 1, - "index": 5, - ".indexOf": 2, - ".splice": 5, - ".emit": 1, - "globalAgent": 3, - "exports.globalAgent": 1, - "cb": 16, - "self.agent": 3, - "options.agent": 3, - "defaultPort": 3, - "options.defaultPort": 1, - "options.hostname": 1, - "options.setHost": 1, - "setHost": 2, - "self.socketPath": 4, - "options.socketPath": 1, - "method": 30, - "self.method": 3, - "options.method": 2, - ".toUpperCase": 3, - "self.path": 3, - "options.path": 2, - "self.once": 2, - "options.headers": 7, - "self.setHeader": 1, - "this.getHeader": 2, - "hostHeader": 3, - "this.setHeader": 2, - "options.auth": 2, - "//basic": 1, - "auth": 1, - "Buffer": 1, - "self.useChunkedEncodingByDefault": 2, - "self._storeHeader": 2, - "self.getHeader": 1, - "self._renderHeaders": 1, - "options.createConnection": 4, - "self.onSocket": 3, - "self.agent.addRequest": 1, - "conn": 3, - "self._deferToConnect": 1, - "self._flush": 1, - "exports.ClientRequest": 1, - "ClientRequest.prototype._implicitHeader": 1, - "this.path": 1, - "ClientRequest.prototype.abort": 1, - "this._deferToConnect": 3, - "createHangUpError": 3, - "error.code": 1, - "freeParser": 9, - "parser.socket.onend": 1, - "parser.socket.ondata": 1, - "parser.socket.parser": 1, - "parsers.free": 1, - "req.parser": 1, - "socketCloseListener": 2, - "socket.parser": 3, - "req.emit": 8, - "req.res": 8, - "req.res.readable": 1, - "req.res.emit": 1, - "res": 14, - "req.res._emitPending": 1, - "res._emitEnd": 1, - "res.emit": 1, - "req._hadError": 3, - "parser.finish": 6, - "socketErrorListener": 2, - "err.message": 1, - "err.stack": 1, - "socketOnEnd": 1, - "this._httpMessage": 3, - "this.parser": 2, - "socketOnData": 1, - "end": 14, - "parser.execute": 2, - "bytesParsed": 4, - "socket.ondata": 3, - "socket.onend": 3, - "bodyHead": 4, - "d.slice": 2, - "eventName": 21, - "req.listeners": 1, - "req.upgradeOrConnect": 1, - "socket.emit": 1, - "parserOnIncomingClient": 1, - "shouldKeepAlive": 4, - "res.upgrade": 1, - "skip": 5, - "isHeadResponse": 2, - "res.statusCode": 1, - "Clear": 1, - "so": 8, - "we": 25, - "don": 5, - "continue": 18, - "ve": 3, - "been": 5, - "upgraded": 1, - "via": 2, - "WebSockets": 1, - "also": 5, - "shouldn": 2, - "AGENT": 2, - "socket.destroySoon": 2, - "keep": 1, - "alive": 1, - "close": 2, - "free": 1, - "number": 13, - "an": 12, - "important": 1, - "promisy": 1, - "thing": 2, - "all": 16, - "the": 107, - "onSocket": 3, - "self.socket.writable": 1, - "self.socket": 5, - ".apply": 7, - "arguments_": 2, - "self.socket.once": 1, - "ClientRequest.prototype.setTimeout": 1, - "msecs": 4, - "this.once": 2, - "emitTimeout": 4, - "this.socket.setTimeout": 1, - "this.socket.once": 1, - "this.setTimeout": 3, - "sock": 1, - "ClientRequest.prototype.setNoDelay": 1, - "ClientRequest.prototype.setSocketKeepAlive": 1, - "ClientRequest.prototype.clearTimeout": 1, - "exports.request": 2, - "url.parse": 1, - "options.protocol": 3, - "exports.get": 1, - "req.end": 1, - "ondrain": 3, - "httpSocketSetup": 2, - "Server": 6, - "requestListener": 6, - "net.Server.call": 1, - "allowHalfOpen": 1, - "this.addListener": 2, - "this.httpAllowHalfOpen": 1, - "connectionListener": 3, - "net.Server": 1, - "exports.Server": 1, - "exports.createServer": 1, - "outgoing": 2, - "incoming": 2, - "abortIncoming": 3, - "incoming.length": 2, - "incoming.shift": 2, - "serverSocketCloseListener": 3, - "socket.setTimeout": 1, - "minute": 1, - "timeout": 2, - "socket.once": 1, - "parsers.alloc": 1, - "parser.reinitialize": 1, - "this.maxHeadersCount": 2, - "<<": 4, - "socket.addListener": 2, - "self.listeners": 2, - "req.socket": 1, - "self.httpAllowHalfOpen": 1, - "socket.writable": 2, - "socket.end": 2, - "outgoing.length": 2, - "._last": 1, - "socket._httpMessage._last": 1, - "incoming.push": 1, - "res.shouldKeepAlive": 1, - "DTRACE_HTTP_SERVER_REQUEST": 1, - "outgoing.push": 1, - "res.assignSocket": 1, - "res.on": 1, - "res.detachSocket": 1, - "res._last": 1, - "m": 76, - "outgoing.shift": 1, - "m.assignSocket": 1, - "req.headers": 2, - "continueExpression.test": 1, - "res._expect_continue": 1, - "res.writeContinue": 1, - "Not": 4, - "a": 1489, - "response.": 1, - "even": 3, - "exports._connectionListener": 1, - "Client": 6, - "this.host": 1, - "this.port": 1, - "maxSockets": 1, - "Client.prototype.request": 1, - "path": 5, - "self.host": 1, - "self.port": 1, - "c.on": 2, - "exports.Client": 1, - "module.deprecate": 2, - "exports.createClient": 1, - "cubes": 4, - "list": 21, - "math": 4, - "num": 23, - "opposite": 6, - "race": 4, - "square": 10, - "__slice": 2, - "Array.prototype.slice": 6, - "root": 5, - "Math.sqrt": 2, - "cube": 2, - "runners": 6, - "winner": 6, - "__slice.call": 2, - "print": 2, - "elvis": 4, - "_i": 10, - "_len": 6, - "_results": 6, - "list.length": 5, - "_results.push": 2, - "math.cube": 2, - ".slice": 6, - "window": 18, - "angular": 1, - "Array.prototype.last": 1, - "this.length": 41, - "app": 3, - "angular.module": 1, - "A": 24, - "w": 110, - "ma": 3, - "c.isReady": 4, - "try": 44, - "s.documentElement.doScroll": 2, - "catch": 38, - "c.ready": 7, - "Qa": 1, - "b.src": 4, - "c.ajax": 1, - "async": 5, - "dataType": 6, - "c.globalEval": 1, - "b.text": 3, - "b.textContent": 2, - "b.innerHTML": 3, - "b.parentNode": 4, - "b.parentNode.removeChild": 2, - "X": 6, - "f": 666, - "a.length": 23, - "o": 322, - "c.isFunction": 9, - "d.call": 3, - "J": 5, - ".getTime": 3, - "Y": 3, - "Z": 6, - "na": 1, - ".type": 2, - "c.event.handle.apply": 1, - "oa": 1, - "r": 261, - "c.data": 12, - "a.liveFired": 4, - "i.live": 1, - "a.button": 2, - "a.type": 14, - "u": 304, - "i.live.slice": 1, - "u.length": 3, - "i.origType.replace": 1, - "O": 6, - "f.push": 5, - "i.selector": 3, - "u.splice": 1, - "a.target": 5, - ".closest": 4, - "a.currentTarget": 4, - "j.length": 2, - ".selector": 1, - ".elem": 1, - "i.preType": 2, - "a.relatedTarget": 2, - "d.push": 1, - "elem": 101, - "handleObj": 2, - "d.length": 8, - "j.elem": 2, - "a.data": 2, - "j.handleObj.data": 1, - "a.handleObj": 2, - "j.handleObj": 1, - "j.handleObj.origHandler.apply": 1, - "pa": 1, - "b.replace": 3, - "/": 290, - "./g": 2, - ".replace": 38, - "/g": 37, - "qa": 1, - "a.parentNode": 6, - "a.parentNode.nodeType": 2, - "ra": 1, - "b.each": 1, - "this.nodeName": 4, - ".nodeName": 2, - "f.events": 1, - "e.handle": 2, - "e.events": 2, - "c.event.add": 1, - ".data": 3, - "sa": 2, - ".ownerDocument": 5, - "ta.test": 1, - "c.support.checkClone": 2, - "ua.test": 1, - "c.fragments": 2, - "b.createDocumentFragment": 1, - "c.clean": 1, - "fragment": 27, - "cacheable": 2, - "K": 4, - "c.each": 2, - "va.concat.apply": 1, - "va.slice": 1, - "wa": 1, - "a.document": 3, - "a.nodeType": 27, - "a.defaultView": 2, - "a.parentWindow": 2, - "c.fn.init": 1, - "Ra": 2, - "A.jQuery": 3, - "Sa": 2, - "A.": 3, - "A.document": 1, - "T": 4, - "Ta": 1, - "<[\\w\\W]+>": 4, - "|": 206, - "#": 13, - "Ua": 1, - ".": 91, - "Va": 1, - "S/": 4, - "Wa": 2, - "u00A0": 2, - "Xa": 1, - "<(\\w+)\\s*\\/?>": 4, - "<\\/\\1>": 4, - "P": 4, - "navigator.userAgent": 3, - "xa": 3, - "Q": 6, - "L": 10, - "Object.prototype.toString": 7, - "aa": 1, - "ba": 3, - "Array.prototype.push": 4, - "R": 2, - "ya": 2, - "Array.prototype.indexOf": 4, - "c.fn": 2, - "c.prototype": 1, - "init": 7, - "this.context": 17, - "s.body": 2, - "this.selector": 16, - "Ta.exec": 1, - "b.ownerDocument": 6, - "Xa.exec": 1, - "c.isPlainObject": 3, - "s.createElement": 10, - "c.fn.attr.call": 1, - "f.createElement": 1, - "a.cacheable": 1, - "a.fragment.cloneNode": 1, - "a.fragment": 1, - ".childNodes": 2, - "c.merge": 4, - "s.getElementById": 1, - "b.id": 1, - "T.find": 1, - "/.test": 19, - "s.getElementsByTagName": 2, - "b.jquery": 1, - ".find": 5, - "T.ready": 1, - "a.selector": 4, - "a.context": 2, - "c.makeArray": 3, - "selector": 40, - "jquery": 3, - "size": 6, - "toArray": 2, - "R.call": 2, - "get": 24, - "this.toArray": 3, - "this.slice": 5, - "pushStack": 4, - "c.isArray": 5, - "ba.apply": 1, - "f.prevObject": 1, - "f.context": 1, - "f.selector": 2, - "each": 17, - "ready": 31, - "c.bindReady": 1, - "a.call": 17, - "Q.push": 1, - "eq": 2, - "first": 10, - "this.eq": 4, - "last": 6, - "this.pushStack": 12, - "R.apply": 1, - ".join": 14, - "map": 7, - "c.map": 1, - "this.prevObject": 3, - "push": 11, - "sort": 4, - ".sort": 9, - "splice": 5, - "c.fn.init.prototype": 1, - "c.extend": 7, - "c.fn.extend": 4, - "noConflict": 4, - "isReady": 5, - "c.fn.triggerHandler": 1, - ".triggerHandler": 1, - "bindReady": 5, - "s.readyState": 2, - "s.addEventListener": 3, - "A.addEventListener": 1, - "s.attachEvent": 3, - "A.attachEvent": 1, - "A.frameElement": 1, - "isFunction": 12, - "isPlainObject": 4, - "a.setInterval": 2, - "a.constructor": 2, - "aa.call": 3, - "a.constructor.prototype": 2, - "isEmptyObject": 7, - "parseJSON": 4, - "c.trim": 3, - "a.replace": 7, - "@": 1, - "d*": 8, - "eE": 4, - "s*": 15, - "A.JSON": 1, - "A.JSON.parse": 2, - "Function": 3, - "c.error": 2, - "noop": 3, - "globalEval": 2, - "Va.test": 1, - "s.documentElement": 2, - "d.type": 2, - "c.support.scriptEval": 2, - "d.appendChild": 3, - "s.createTextNode": 2, - "d.text": 1, - "b.insertBefore": 3, - "b.firstChild": 5, - "b.removeChild": 3, - "nodeName": 20, - "a.nodeName": 12, - "a.nodeName.toUpperCase": 2, - "b.toUpperCase": 3, - "b.apply": 2, - "b.call": 4, - "trim": 5, - "makeArray": 3, - "ba.call": 1, - "inArray": 5, - "b.indexOf": 2, - "b.length": 12, - "merge": 2, - "grep": 6, - "f.length": 5, - "f.concat.apply": 1, - "guid": 5, - "proxy": 4, - "a.apply": 2, - "b.guid": 2, - "a.guid": 7, - "c.guid": 1, - "uaMatch": 3, - "a.toLowerCase": 4, - "webkit": 6, - "w.": 17, - "/.exec": 4, - "opera": 4, - ".*version": 4, - "msie": 4, - "/compatible/.test": 1, - "mozilla": 4, - ".*": 20, - "rv": 4, - "browser": 11, - "version": 10, - "c.uaMatch": 1, - "P.browser": 2, - "c.browser": 1, - "c.browser.version": 1, - "P.version": 1, - "c.browser.webkit": 1, - "c.browser.safari": 1, - "c.inArray": 2, - "ya.call": 1, - "s.removeEventListener": 1, - "s.detachEvent": 1, - "c.support": 2, - "d.style.display": 5, - "d.innerHTML": 2, - "d.getElementsByTagName": 6, - "e.length": 9, - "leadingWhitespace": 3, - "d.firstChild.nodeType": 1, - "tbody": 7, - "htmlSerialize": 3, - "style": 30, - "/red/.test": 1, - "j.getAttribute": 2, - "hrefNormalized": 3, - "opacity": 13, - "j.style.opacity": 1, - "cssFloat": 4, - "j.style.cssFloat": 1, - "checkOn": 4, - ".value": 1, - "optSelected": 3, - ".appendChild": 1, - ".selected": 1, - "parentNode": 10, - "d.removeChild": 1, - ".parentNode": 7, - "deleteExpando": 3, - "checkClone": 1, - "scriptEval": 1, - "noCloneEvent": 3, - "boxModel": 1, - "b.type": 4, - "b.appendChild": 1, - "a.insertBefore": 2, - "a.firstChild": 6, - "b.test": 1, - "c.support.deleteExpando": 2, - "a.removeChild": 2, - "d.attachEvent": 2, - "d.fireEvent": 1, - "c.support.noCloneEvent": 1, - "d.detachEvent": 1, - "d.cloneNode": 1, - ".fireEvent": 3, - "s.createDocumentFragment": 1, - "a.appendChild": 3, - "d.firstChild": 2, - "a.cloneNode": 3, - ".cloneNode": 4, - ".lastChild.checked": 2, - "k.style.width": 1, - "k.style.paddingLeft": 1, - "s.body.appendChild": 1, - "c.boxModel": 1, - "c.support.boxModel": 1, - "k.offsetWidth": 1, - "s.body.removeChild": 1, - ".style.display": 5, - "n.setAttribute": 1, - "c.support.submitBubbles": 1, - "c.support.changeBubbles": 1, - "c.props": 2, - "readonly": 3, - "maxlength": 2, - "cellspacing": 2, - "rowspan": 2, - "colspan": 2, - "tabindex": 4, - "usemap": 2, - "frameborder": 2, - "G": 11, - "Ya": 2, - "za": 3, - "cache": 45, - "expando": 14, - "noData": 3, - "embed": 3, - "applet": 2, - "c.noData": 2, - "a.nodeName.toLowerCase": 3, - "c.cache": 2, - "removeData": 8, - "c.isEmptyObject": 1, - "c.removeData": 2, - "c.expando": 2, - "a.removeAttribute": 3, - "this.each": 42, - "a.split": 4, - "this.triggerHandler": 6, - "this.trigger": 2, - ".each": 3, - "queue": 7, - "dequeue": 6, - "c.queue": 3, - "d.shift": 2, - "d.unshift": 2, - "f.call": 1, - "c.dequeue": 4, - "delay": 4, - "c.fx": 1, - "c.fx.speeds": 1, - "this.queue": 4, - "clearQueue": 2, - "Aa": 3, - "t": 436, - "ca": 6, - "Za": 2, - "r/g": 2, - "/href": 1, - "src": 7, - "style/": 1, - "ab": 1, - "button": 24, - "/i": 22, - "bb": 2, - "select": 20, - "textarea": 8, - "area": 2, - "Ba": 3, - "/radio": 1, - "checkbox/": 1, - "attr": 13, - "c.attr": 4, - "removeAttr": 5, - "this.nodeType": 4, - "this.removeAttribute": 1, - "addClass": 2, - "r.addClass": 1, - "r.attr": 1, - ".split": 19, - "e.nodeType": 7, - "e.className": 14, - "j.indexOf": 1, - "removeClass": 2, - "n.removeClass": 1, - "n.attr": 1, - "j.replace": 2, - "toggleClass": 2, - "j.toggleClass": 1, - "j.attr": 1, - "i.hasClass": 1, - "this.className": 10, - "hasClass": 2, - "": 1, - "className": 4, - "replace": 8, - "indexOf": 5, - "val": 13, - "c.nodeName": 4, - "b.attributes.value": 1, - ".specified": 1, - "b.value": 4, - "b.selectedIndex": 2, - "b.options": 1, - "": 1, - "i=": 31, - "selected": 5, - "a=": 23, - "test": 21, - "type": 49, - "support": 13, - "getAttribute": 3, - "on": 37, - "o=": 13, - "n=": 10, - "r=": 18, - "nodeType=": 6, - "call": 9, - "checked=": 1, - "this.selected": 1, - ".val": 5, - "this.selectedIndex": 1, - "this.value": 4, - "attrFn": 2, - "css": 7, - "html": 10, - "text": 14, - "width": 32, - "height": 25, - "offset": 21, - "c.attrFn": 1, - "c.isXMLDoc": 1, - "a.test": 2, - "ab.test": 1, - "a.getAttributeNode": 7, - ".nodeValue": 1, - "b.specified": 2, - "bb.test": 2, - "cb.test": 1, - "a.href": 2, - "c.support.style": 1, - "a.style.cssText": 3, - "a.setAttribute": 7, - "c.support.hrefNormalized": 1, - "a.getAttribute": 11, - "c.style": 1, - "db": 1, - "handle": 15, - "click": 11, - "events": 18, - "altKey": 4, - "attrChange": 4, - "attrName": 4, - "bubbles": 4, - "cancelable": 4, - "charCode": 7, - "clientX": 6, - "clientY": 5, - "ctrlKey": 6, - "currentTarget": 4, - "detail": 3, - "eventPhase": 4, - "fromElement": 6, - "handler": 14, - "keyCode": 6, - "layerX": 3, - "layerY": 3, - "metaKey": 5, - "newValue": 3, - "offsetX": 4, - "offsetY": 4, - "originalTarget": 1, - "pageX": 4, - "pageY": 4, - "prevValue": 3, - "relatedNode": 4, - "relatedTarget": 6, - "screenX": 4, - "screenY": 4, - "shiftKey": 4, - "srcElement": 5, - "toElement": 5, - "view": 4, - "wheelDelta": 3, - "which": 8, - "mouseover": 12, - "mouseout": 12, - "form": 12, - "click.specialSubmit": 2, - "submit": 14, - "image": 5, - "keypress.specialSubmit": 2, - "password": 5, - ".specialSubmit": 2, - "radio": 17, - "checkbox": 14, - "multiple": 7, - "_change_data": 6, - "focusout": 11, - "change": 16, - "file": 5, - ".specialChange": 4, - "focusin": 9, - "bind": 3, - "one": 15, - "unload": 5, - "live": 8, - "lastToggle": 4, - "die": 3, - "hover": 3, - "mouseenter": 9, - "mouseleave": 9, - "focus": 7, - "blur": 8, - "resize": 3, - "scroll": 6, - "dblclick": 3, - "mousedown": 3, - "mouseup": 3, - "mousemove": 3, - "keydown": 4, - "keypress": 4, - "keyup": 3, - "onunload": 1, - "g": 441, - "h": 499, - "q": 34, - "h.nodeType": 4, - "p": 110, - "S": 8, - "H": 8, - "M": 9, - "I": 7, - "f.exec": 2, - "p.push": 2, - "p.length": 10, - "r.exec": 1, - "n.relative": 5, - "ga": 2, - "p.shift": 4, - "n.match.ID.test": 2, - "k.find": 6, - "v.expr": 4, - "k.filter": 5, - "v.set": 5, - "expr": 2, - "p.pop": 4, - "set": 22, - "z": 21, - "h.parentNode": 3, - "D": 9, - "k.error": 2, - "j.call": 2, - ".nodeType": 9, - "E": 11, - "l.push": 2, - "l.push.apply": 1, - "k.uniqueSort": 5, - "B": 5, - "g.sort": 1, - "g.length": 2, - "g.splice": 2, - "k.matches": 1, - "n.order.length": 1, - "n.order": 1, - "n.leftMatch": 1, - ".exec": 2, - "q.splice": 1, - "y.substr": 1, - "y.length": 1, - "Syntax": 3, - "unrecognized": 3, - "expression": 4, - "ID": 8, - "NAME": 2, - "TAG": 2, - "u00c0": 2, - "uFFFF": 2, - "leftMatch": 2, - "attrMap": 2, - "attrHandle": 2, - "g.getAttribute": 1, - "relative": 4, - "W/.test": 1, - "h.toLowerCase": 2, - "": 1, - "previousSibling": 5, - "nth": 5, - "odd": 2, - "not": 26, - "reset": 2, - "contains": 8, - "only": 10, - "id": 38, - "class": 5, - "Array": 3, - "sourceIndex": 1, - "div": 28, - "script": 7, - "": 4, - "name=": 2, - "href=": 2, - "": 2, - "

": 2, - "

": 2, - ".TEST": 2, - "
": 3, - "CLASS": 1, - "HTML": 9, - "find": 7, - "filter": 10, - "nextSibling": 3, - "iframe": 3, - "": 1, - "": 1, - "
": 1, - "
": 1, - "": 4, - "
": 5, - "": 3, - "": 3, - "": 2, - "": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "before": 8, - "after": 7, - "position": 7, - "absolute": 2, - "top": 12, - "left": 14, - "margin": 8, - "border": 7, - "px": 31, - "solid": 2, - "#000": 2, - "padding": 4, - "": 1, - "": 1, - "fixed": 1, - "marginTop": 3, - "marginLeft": 2, - "using": 5, - "borderTopWidth": 1, - "borderLeftWidth": 1, - "Left": 1, - "Top": 1, - "pageXOffset": 2, - "pageYOffset": 1, - "Height": 1, - "Width": 1, - "inner": 2, - "outer": 2, - "scrollTo": 1, - "CSS1Compat": 1, - "client": 3, - "document": 26, - "window.document": 2, - "navigator": 3, - "window.navigator": 2, - "location": 2, - "window.location": 5, - "jQuery": 48, - "context": 48, - "The": 9, - "is": 67, - "actually": 2, - "just": 2, - "jQuery.fn.init": 2, - "rootjQuery": 8, - "Map": 4, - "over": 7, - "of": 28, - "overwrite": 4, - "_jQuery": 4, - "window.": 6, - "central": 2, - "reference": 5, - "simple": 3, - "way": 2, - "check": 8, - "strings": 8, - "both": 2, - "optimize": 3, - "quickExpr": 2, - "Check": 10, - "has": 9, - "non": 8, - "whitespace": 7, - "character": 3, - "it": 112, - "rnotwhite": 2, - "Used": 3, - "trimming": 2, - "trimLeft": 4, - "trimRight": 4, - "digits": 3, - "rdigit": 1, - "d/": 3, - "Match": 3, - "standalone": 2, - "tag": 2, - "rsingleTag": 2, - "JSON": 5, - "RegExp": 12, - "rvalidchars": 2, - "rvalidescape": 2, - "rvalidbraces": 2, - "Useragent": 2, - "rwebkit": 2, - "ropera": 2, - "rmsie": 2, - "rmozilla": 2, - "Keep": 2, - "UserAgent": 2, - "use": 10, - "with": 18, - "jQuery.browser": 4, - "userAgent": 3, - "For": 5, - "matching": 3, - "engine": 2, - "and": 42, - "browserMatch": 3, - "deferred": 25, - "used": 13, - "DOM": 21, - "readyList": 6, - "event": 31, - "DOMContentLoaded": 14, - "Save": 2, - "some": 2, - "core": 2, - "methods": 8, - "toString": 4, - "hasOwn": 2, - "String.prototype.trim": 3, - "Class": 2, - "pairs": 2, - "class2type": 3, - "jQuery.fn": 4, - "jQuery.prototype": 2, - "match": 30, - "doc": 4, - "Handle": 14, - "DOMElement": 2, - "selector.nodeType": 2, - "exists": 9, - "once": 4, - "finding": 2, - "Are": 2, - "dealing": 2, - "selector.charAt": 4, - "selector.length": 4, - "Assume": 2, - "are": 18, - "regex": 3, - "quickExpr.exec": 2, - "Verify": 3, - "no": 19, - "was": 6, - "specified": 4, - "#id": 3, - "HANDLE": 2, - "array": 7, - "context.ownerDocument": 2, - "If": 21, - "single": 2, - "passed": 5, - "clean": 3, - "like": 5, - "method.": 3, - "jQuery.fn.init.prototype": 2, - "jQuery.extend": 11, - "jQuery.fn.extend": 4, - "copy": 16, - "copyIsArray": 2, - "clone": 5, - "deep": 12, - "situation": 2, - "boolean": 8, - "when": 20, - "something": 3, - "possible": 3, - "jQuery.isFunction": 6, - "extend": 13, - "itself": 4, - "argument": 2, - "Only": 5, - "deal": 2, - "null/undefined": 2, - "values": 10, - "Extend": 2, - "base": 2, - "Prevent": 2, - "never": 2, - "ending": 2, - "loop": 7, - "Recurse": 2, - "bring": 2, - "Return": 2, - "modified": 3, - "Is": 2, - "be": 12, - "Set": 4, - "occurs.": 2, - "counter": 2, - "track": 2, - "how": 2, - "many": 3, - "items": 2, - "wait": 12, - "fires.": 2, - "See": 9, - "#6781": 2, - "readyWait": 6, - "Hold": 2, - "release": 2, - "holdReady": 3, - "hold": 6, - "jQuery.readyWait": 6, - "jQuery.ready": 16, - "Either": 2, - "released": 2, - "DOMready/load": 2, - "yet": 2, - "jQuery.isReady": 6, - "Make": 17, - "sure": 18, - "at": 58, - "least": 4, - "IE": 28, - "gets": 6, - "little": 4, - "overzealous": 4, - "ticket": 4, - "#5443": 4, - "Remember": 2, - "normal": 2, - "Ready": 2, - "fired": 12, - "decrement": 2, - "need": 10, - "there": 6, - "functions": 6, - "bound": 8, - "execute": 4, - "readyList.resolveWith": 1, - "Trigger": 2, - "any": 12, - "jQuery.fn.trigger": 2, - ".trigger": 3, - ".unbind": 4, - "jQuery._Deferred": 3, - "Catch": 2, - "cases": 4, - "where": 2, - ".ready": 2, - "called": 2, - "already": 6, - "occurred.": 2, - "document.readyState": 4, - "asynchronously": 2, - "allow": 6, - "scripts": 2, - "opportunity": 2, - "Mozilla": 2, - "Opera": 2, - "nightlies": 3, - "currently": 4, - "document.addEventListener": 6, - "Use": 7, - "handy": 2, - "fallback": 4, - "window.onload": 4, - "will": 7, - "always": 6, - "work": 6, - "window.addEventListener": 2, - "model": 14, - "document.attachEvent": 6, - "ensure": 2, - "firing": 16, - "onload": 2, - "maybe": 2, - "late": 2, - "but": 4, - "safe": 3, - "iframes": 2, - "window.attachEvent": 2, - "frame": 23, - "continually": 2, - "see": 6, - "toplevel": 7, - "window.frameElement": 2, - "document.documentElement.doScroll": 4, - "doScrollCheck": 6, - "test/unit/core.js": 2, - "details": 3, - "concerning": 2, - "isFunction.": 2, - "Since": 3, - "aren": 5, - "pass": 7, - "through": 3, - "as": 11, - "well": 2, - "jQuery.type": 4, - "obj.nodeType": 2, - "jQuery.isWindow": 2, - "own": 4, - "property": 15, - "must": 4, - "Object": 4, - "obj.constructor": 2, - "hasOwn.call": 6, - "obj.constructor.prototype": 2, - "Own": 2, - "properties": 7, - "enumerated": 2, - "firstly": 2, - "speed": 4, - "up": 4, - "then": 8, - "own.": 2, - "msg": 4, - "leading/trailing": 2, - "removed": 3, - "can": 10, - "breaking": 1, - "spaces": 3, - "rnotwhite.test": 2, - "xA0": 7, - "document.removeEventListener": 2, - "document.detachEvent": 2, - "trick": 2, - "Diego": 2, - "Perini": 2, - "http": 6, - "//javascript.nwbox.com/IEContentLoaded/": 2, - "waiting": 2, - "Promise": 1, - "promiseMethods": 3, - "Static": 1, - "sliceDeferred": 1, - "Create": 1, - "callbacks": 10, - "_Deferred": 4, - "stored": 4, - "args": 31, - "avoid": 5, - "doing": 3, - "flag": 1, - "know": 3, - "cancelled": 5, - "done": 10, - "f1": 1, - "f2": 1, - "...": 1, - "_fired": 5, - "args.length": 3, - "deferred.done.apply": 2, - "callbacks.push": 1, - "deferred.resolveWith": 5, - "resolve": 7, - "given": 3, - "resolveWith": 4, - "make": 2, - "available": 1, - "#8421": 1, - "callbacks.shift": 1, - "finally": 3, - "Has": 1, - "resolved": 1, - "isResolved": 3, - "Cancel": 1, - "cancel": 6, - "Full": 1, - "fledged": 1, - "two": 1, - "Deferred": 5, - "func": 3, - "failDeferred": 1, - "promise": 14, - "Add": 4, - "errorDeferred": 1, - "doneCallbacks": 2, - "failCallbacks": 2, - "deferred.done": 2, - ".fail": 2, - ".fail.apply": 1, - "fail": 10, - "failDeferred.done": 1, - "rejectWith": 2, - "failDeferred.resolveWith": 1, - "reject": 4, - "failDeferred.resolve": 1, - "isRejected": 2, - "failDeferred.isResolved": 1, - "pipe": 2, - "fnDone": 2, - "fnFail": 2, - "jQuery.Deferred": 1, - "newDefer": 3, - "jQuery.each": 2, - "fn": 14, - "action": 3, - "returned": 4, - "fn.apply": 1, - "returned.promise": 2, - ".then": 3, - "newDefer.resolve": 1, - "newDefer.reject": 1, - ".promise": 5, - "Get": 4, - "provided": 1, - "aspect": 1, - "added": 1, - "promiseMethods.length": 1, - "failDeferred.cancel": 1, - "deferred.cancel": 2, - "Unexpose": 1, - "Call": 1, - "func.call": 1, - "helper": 1, - "firstParam": 6, - "count": 4, - "<=>": 1, - "1": 97, - "resolveFunc": 2, - "sliceDeferred.call": 2, - "Strange": 1, - "bug": 3, - "FF4": 1, - "Values": 1, - "changed": 3, - "onto": 2, - "sometimes": 1, - "outside": 2, - ".when": 1, - "Cloning": 2, - "into": 2, - "fresh": 1, - "solves": 1, - "issue": 1, - "deferred.reject": 1, - "deferred.promise": 1, - "jQuery.support": 1, - "document.createElement": 26, - "documentElement": 2, - "document.documentElement": 2, - "opt": 2, - "marginDiv": 5, - "bodyStyle": 1, - "tds": 6, - "isSupported": 7, - "Preliminary": 1, - "tests": 48, - "div.setAttribute": 1, - "div.innerHTML": 7, - "div.getElementsByTagName": 6, - "Can": 2, - "automatically": 2, - "inserted": 1, - "insert": 1, - "them": 3, - "empty": 3, - "tables": 1, - "link": 2, - "elements": 9, - "serialized": 3, - "correctly": 1, - "innerHTML": 1, - "This": 3, - "requires": 1, - "wrapper": 1, - "information": 5, - "from": 7, - "uses": 3, - ".cssText": 2, - "instead": 6, - "/top/.test": 2, - "URLs": 1, - "optgroup": 5, - "opt.selected": 1, - "Test": 3, - "setAttribute": 1, - "camelCase": 3, - "class.": 1, - "works": 1, - "attrFixes": 1, - "get/setAttribute": 1, - "ie6/7": 1, - "getSetAttribute": 3, - "div.className": 1, - "Will": 2, - "defined": 3, - "later": 1, - "submitBubbles": 3, - "changeBubbles": 3, - "focusinBubbles": 2, - "inlineBlockNeedsLayout": 3, - "shrinkWrapBlocks": 2, - "reliableMarginRight": 2, - "checked": 4, - "status": 3, - "properly": 2, - "cloned": 1, - "input.checked": 1, - "support.noCloneChecked": 1, - "input.cloneNode": 1, - ".checked": 2, - "inside": 3, - "disabled": 11, - "selects": 1, - "Fails": 2, - "Internet": 1, - "Explorer": 1, - "div.test": 1, - "support.deleteExpando": 1, - "div.addEventListener": 1, - "div.attachEvent": 2, - "div.fireEvent": 1, - "node": 23, - "being": 2, - "appended": 2, - "input.value": 5, - "input.setAttribute": 5, - "support.radioValue": 2, - "div.appendChild": 4, - "document.createDocumentFragment": 3, - "fragment.appendChild": 2, - "div.firstChild": 3, - "WebKit": 9, - "doesn": 2, - "inline": 3, - "display": 7, - "none": 4, - "GC": 2, - "references": 1, - "across": 1, - "JS": 7, - "boundary": 1, - "isNode": 11, - "elem.nodeType": 8, - "nodes": 14, - "global": 5, - "attached": 1, - "directly": 2, - "occur": 1, - "jQuery.cache": 3, - "defining": 1, - "objects": 7, - "its": 2, - "allows": 1, - "code": 2, - "shortcut": 1, - "same": 1, - "jQuery.expando": 12, - "Avoid": 1, - "more": 6, - "than": 3, - "trying": 1, - "pvt": 8, - "internalKey": 12, - "getByName": 3, - "unique": 2, - "since": 1, - "their": 3, - "ends": 1, - "jQuery.uuid": 1, - "TODO": 2, - "hack": 2, - "ONLY.": 2, - "Avoids": 2, - "exposing": 2, - "metadata": 2, - "plain": 2, - ".toJSON": 4, - "jQuery.noop": 2, - "An": 1, - "jQuery.data": 15, - "key/value": 1, - "pair": 1, - "shallow": 1, - "copied": 1, - "existing": 1, - "thisCache": 15, - "Internal": 1, - "separate": 1, - "destroy": 1, - "unless": 2, - "internal": 8, - "had": 1, - "isEmptyDataObject": 3, - "internalCache": 3, - "Browsers": 1, - "deletion": 1, - "refuse": 1, - "expandos": 2, - "other": 3, - "browsers": 2, - "faster": 1, - "iterating": 1, - "persist": 1, - "existed": 1, - "Otherwise": 2, - "eliminate": 2, - "lookups": 2, - "entries": 2, - "longer": 2, - "exist": 2, - "does": 9, - "us": 2, - "nor": 2, - "have": 6, - "removeAttribute": 3, - "Document": 2, - "these": 2, - "jQuery.support.deleteExpando": 3, - "elem.removeAttribute": 6, - "only.": 2, - "_data": 3, - "determining": 3, - "acceptData": 3, - "elem.nodeName": 2, - "jQuery.noData": 2, - "elem.nodeName.toLowerCase": 2, - "elem.getAttribute": 7, - ".attributes": 2, - "attr.length": 2, - ".name": 3, - "name.indexOf": 2, - "jQuery.camelCase": 6, - "name.substring": 2, - "dataAttr": 6, - "parts": 28, - "key.split": 2, - "Try": 4, - "fetch": 4, - "internally": 5, - "jQuery.removeData": 2, - "nothing": 2, - "found": 10, - "HTML5": 3, - "attribute": 5, - "key.replace": 2, - "rmultiDash": 3, - ".toLowerCase": 7, - "jQuery.isNaN": 1, - "rbrace.test": 2, - "jQuery.parseJSON": 2, - "isn": 2, - "option.selected": 2, - "jQuery.support.optDisabled": 2, - "option.disabled": 2, - "option.getAttribute": 2, - "option.parentNode.disabled": 2, - "jQuery.nodeName": 3, - "option.parentNode": 2, - "specific": 2, - "We": 6, - "get/set": 2, - "attributes": 14, - "comment": 3, - "nType": 8, - "jQuery.attrFn": 2, - "Fallback": 2, - "prop": 24, - "supported": 2, - "jQuery.prop": 2, - "hooks": 14, - "notxml": 8, - "jQuery.isXMLDoc": 2, - "Normalize": 1, - "needed": 2, - "jQuery.attrFix": 2, - "jQuery.attrHooks": 2, - "boolHook": 3, - "rboolean.test": 4, - "value.toLowerCase": 2, - "formHook": 3, - "forms": 1, - "certain": 2, - "characters": 6, - "rinvalidChar.test": 1, - "jQuery.removeAttr": 2, - "hooks.set": 2, - "elem.setAttribute": 2, - "hooks.get": 2, - "Non": 3, - "existent": 2, - "normalize": 2, - "propName": 8, - "jQuery.support.getSetAttribute": 1, - "jQuery.attr": 2, - "elem.removeAttributeNode": 1, - "elem.getAttributeNode": 1, - "corresponding": 2, - "jQuery.propFix": 2, - "attrHooks": 3, - "tabIndex": 4, - "readOnly": 2, - "htmlFor": 2, - "maxLength": 2, - "cellSpacing": 2, - "cellPadding": 2, - "rowSpan": 2, - "colSpan": 2, - "useMap": 2, - "frameBorder": 2, - "contentEditable": 2, - "auto": 3, - "&": 13, - "getData": 3, - "setData": 3, - "changeData": 3, - "bubbling": 1, - "live.": 2, - "hasDuplicate": 1, - "baseHasDuplicate": 2, - "rBackslash": 1, - "rNonWord": 1, - "W/": 2, - "Sizzle": 1, - "results": 4, - "seed": 1, - "origContext": 1, - "context.nodeType": 2, - "checkSet": 1, - "extra": 1, - "cur": 6, - "pop": 1, - "prune": 1, - "contextXML": 1, - "Sizzle.isXML": 1, - "soFar": 1, - "Reset": 1, - "cy": 4, - "f.isWindow": 2, - "cv": 2, - "cj": 4, - ".appendTo": 2, - "b.css": 1, - "b.remove": 1, - "ck": 5, - "c.createElement": 12, - "ck.frameBorder": 1, - "ck.width": 1, - "ck.height": 1, - "c.body.appendChild": 1, - "cl": 3, - "ck.createElement": 1, - "ck.contentWindow": 1, - "ck.contentDocument": 1, - ".document": 1, - "cl.write": 1, - "cl.createElement": 1, - "cl.body.appendChild": 1, - "f.css": 24, - "c.body.removeChild": 1, - "cu": 18, - "f.each": 21, - "cp.concat.apply": 1, - "cp.slice": 1, - "ct": 34, - "cq": 3, - "cs": 3, - "f.now": 2, - "ci": 29, - "a.ActiveXObject": 3, - "ch": 58, - "a.XMLHttpRequest": 1, - "a.dataFilter": 2, - "a.dataType": 1, - "a.dataTypes": 2, - "a.converters": 3, - "o.split": 1, - "f.error": 4, - "m.replace": 1, - "a.contents": 1, - "a.responseFields": 1, - "f.shift": 1, - "a.mimeType": 1, - "c.getResponseHeader": 1, - ".test": 1, - "f.unshift": 2, - "b_": 4, - "f.isArray": 8, - "bF.test": 1, - "c.dataTypes": 1, - "h.length": 3, - "bU": 4, - "c.dataTypes.unshift": 1, - "bZ": 3, - "f.isFunction": 21, - "b.toLowerCase": 3, - "bQ": 3, - "h.substr": 1, - "bD": 3, - "bx": 2, - "a.offsetWidth": 6, - "a.offsetHeight": 2, - "bn": 2, - "f.ajax": 3, - "f.globalEval": 2, - "bf": 6, - "bm": 3, - "f.nodeName": 16, - "bl": 3, - "a.getElementsByTagName": 9, - "f.grep": 3, - "a.defaultChecked": 1, - "a.checked": 4, - "bk": 5, - "a.querySelectorAll": 1, - "bj": 3, - "b.nodeType": 6, - "b.clearAttributes": 2, - "b.mergeAttributes": 2, - "b.nodeName.toLowerCase": 1, - "b.outerHTML": 1, - "a.outerHTML": 1, - "b.selected": 1, - "a.defaultSelected": 1, - "b.defaultValue": 1, - "a.defaultValue": 1, - "b.defaultChecked": 1, - "b.checked": 1, - "a.value": 8, - "b.removeAttribute": 3, - "f.expando": 23, - "bi": 27, - "f.hasData": 2, - "f.data": 25, - "d.events": 1, - "f.extend": 23, - "": 1, - "bh": 1, - "table": 6, - "getElementsByTagName": 1, - "0": 220, - "appendChild": 1, - "ownerDocument": 9, - "createElement": 3, - "b=": 25, - "e=": 21, - "nodeType": 1, - "d=": 15, - "W": 3, - "N": 2, - "f._data": 15, - "r.live": 1, - "a.target.disabled": 1, - "a.namespace": 1, - "a.namespace.split": 1, - "r.live.slice": 1, - "s.length": 2, - "g.origType.replace": 1, - "q.push": 1, - "g.selector": 3, - "s.splice": 1, - "m.selector": 1, - "n.test": 2, - "g.namespace": 1, - "m.elem.disabled": 1, - "m.elem": 1, - "g.preType": 3, - "f.contains": 5, - "level": 3, - "m.level": 1, - "": 1, - "e.elem": 2, - "e.handleObj.data": 1, - "e.handleObj": 1, - "e.handleObj.origHandler.apply": 1, - "a.isPropagationStopped": 1, - "e.level": 1, - "a.isImmediatePropagationStopped": 1, - "e.type": 6, - "e.originalEvent": 1, - "e.liveFired": 1, - "f.event.handle.call": 1, - ".preventDefault": 1, - "F": 8, - "f.removeData": 4, - "i.resolve": 1, - "c.replace": 4, - "f.isNaN": 3, - "i.test": 1, - "f.parseJSON": 2, - "a.navigator": 1, - "a.location": 1, - "e.isReady": 1, - "c.documentElement.doScroll": 2, - "e.ready": 6, - "e.fn.init": 1, - "a.jQuery": 2, - "a.": 2, - "d.userAgent": 1, - "C": 4, - "e.fn": 2, - "e.prototype": 1, - "c.body": 4, - "a.charAt": 2, - "i.exec": 1, - "d.ownerDocument": 1, - "n.exec": 1, - "e.isPlainObject": 1, - "e.fn.attr.call": 1, - "k.createElement": 1, - "e.buildFragment": 1, - "j.cacheable": 1, - "e.clone": 1, - "j.fragment": 2, - "e.merge": 3, - "c.getElementById": 1, - "h.id": 1, - "f.find": 2, - "d.jquery": 1, - "e.isFunction": 5, - "f.ready": 1, - "e.makeArray": 1, - "D.call": 4, - "e.isArray": 2, - "C.apply": 1, - "d.prevObject": 1, - "d.context": 2, - "d.selector": 2, - "e.each": 2, - "e.bindReady": 1, - "y.done": 1, - "D.apply": 1, - "e.map": 1, - "e.fn.init.prototype": 1, - "e.extend": 2, - "e.fn.extend": 1, - "": 1, - "f=": 13, - "g=": 15, - "h=": 19, - "jQuery=": 2, - "isReady=": 1, - "y.resolveWith": 1, - "e.fn.trigger": 1, - "e._Deferred": 1, - "c.readyState": 2, - "c.addEventListener": 4, - "a.addEventListener": 4, - "c.attachEvent": 3, - "a.attachEvent": 6, - "a.frameElement": 1, - "isWindow": 2, - "isNaN": 6, - "m.test": 1, - "String": 2, - "A.call": 1, - "e.isWindow": 2, - "B.call": 3, - "e.trim": 1, - "a.JSON": 1, - "a.JSON.parse": 2, - "o.test": 1, - "e.error": 2, - "parseXML": 1, - "a.DOMParser": 1, - "DOMParser": 1, - "d.parseFromString": 1, - "ActiveXObject": 1, - "c.async": 4, - "c.loadXML": 1, - "c.documentElement": 4, - "d.nodeName": 4, - "j.test": 3, - "a.execScript": 1, - "a.eval.call": 1, - "c.apply": 2, - "c.call": 3, - "E.call": 1, - "C.call": 1, - "F.call": 1, - "c.length": 8, - "": 1, - "j=": 14, - "k=": 11, - "h.concat.apply": 1, - "f.concat": 1, - "g.guid": 3, - "e.guid": 3, - "access": 2, - "e.access": 1, - "now": 5, - "s.exec": 1, - "t.exec": 1, - "u.exec": 1, - "a.indexOf": 2, - "v.exec": 1, - "sub": 4, - "a.fn.init": 2, - "a.superclass": 1, - "a.fn": 2, - "a.prototype": 1, - "a.fn.constructor": 1, - "a.sub": 1, - "this.sub": 2, - "e.fn.init.call": 1, - "a.fn.init.prototype": 1, - "e.uaMatch": 1, - "x.browser": 2, - "e.browser": 1, - "e.browser.version": 1, - "x.version": 1, - "e.browser.webkit": 1, - "e.browser.safari": 1, - "c.removeEventListener": 2, - "c.detachEvent": 1, - "": 1, - "c=": 24, - "shift": 1, - "apply": 8, - "h.call": 2, - "g.resolveWith": 3, - "<=1&&a&&f.isFunction(a.promise)?a:f.Deferred();if(d>": 1, - "g.reject": 1, - "g.promise": 1, - "f.support": 2, - "a.innerHTML": 7, - "f.appendChild": 1, - "a.firstChild.nodeType": 2, - "e.getAttribute": 2, - "e.style.opacity": 1, - "e.style.cssFloat": 1, - "h.value": 3, - "g.selected": 1, - "a.className": 1, - "h.checked": 2, - "j.noCloneChecked": 1, - "h.cloneNode": 1, - "f.disabled": 1, - "j.optDisabled": 1, - "g.disabled": 1, - "j.deleteExpando": 1, - "a.fireEvent": 1, - "j.noCloneEvent": 1, - "a.detachEvent": 1, - "h.setAttribute": 2, - "j.radioValue": 1, - "c.createDocumentFragment": 1, - "k.appendChild": 1, - "j.checkClone": 1, - "k.cloneNode": 1, - "a.style.width": 1, - "a.style.paddingLeft": 1, - "visibility": 3, - "background": 56, - "l.style": 1, - "l.appendChild": 1, - "j.appendChecked": 1, - "j.boxModel": 1, - "a.style": 8, - "a.style.display": 3, - "a.style.zoom": 1, - "j.inlineBlockNeedsLayout": 1, - "j.shrinkWrapBlocks": 1, - ".offsetHeight": 4, - "j.reliableHiddenOffsets": 1, - "c.defaultView": 2, - "c.defaultView.getComputedStyle": 3, - "i.style.width": 1, - "i.style.marginRight": 1, - "j.reliableMarginRight": 1, - "parseInt": 12, - "marginRight": 2, - ".marginRight": 2, - "l.innerHTML": 1, - "f.boxModel": 1, - "f.support.boxModel": 4, - "uuid": 2, - "f.fn.jquery": 1, - "Math.random": 2, - "D/g": 2, - "hasData": 2, - "f.cache": 5, - "f.acceptData": 4, - "f.uuid": 1, - "f.noop": 4, - "f.camelCase": 5, - ".events": 1, - "f.support.deleteExpando": 3, - "f.noData": 2, - "f.fn.extend": 9, - "g.indexOf": 2, - "g.substring": 1, - "b.triggerHandler": 2, - "_mark": 2, - "_unmark": 3, - "f.makeArray": 5, - "e.push": 3, - "f.queue": 3, - "c.shift": 2, - "c.unshift": 1, - "f.dequeue": 4, - "f.fx": 2, - "f.fx.speeds": 1, - "d.resolveWith": 1, - "f.Deferred": 2, - "f._Deferred": 2, - "l.done": 1, - "d.promise": 1, - "rea": 1, - "autofocus": 1, - "autoplay": 1, - "controls": 1, - "defer": 1, - "required": 1, - "scoped": 1, - "f.access": 3, - "f.attr": 2, - "f.removeAttr": 3, - "f.prop": 2, - "removeProp": 1, - "f.propFix": 6, - "c.addClass": 1, - "f.trim": 2, - "c.removeClass": 1, - "g.nodeType": 6, - "g.className": 4, - "h.replace": 2, - "d.toggleClass": 1, - "d.attr": 1, - "h.hasClass": 1, - "": 1, - "f.valHooks": 7, - "e.nodeName.toLowerCase": 1, - "c.get": 1, - "e.value": 1, - "e.val": 1, - "f.map": 5, - "this.nodeName.toLowerCase": 1, - "this.type": 3, - "c.set": 1, - "valHooks": 1, - "a.attributes.value": 1, - "a.text": 1, - "a.selectedIndex": 3, - "a.options": 2, - "": 3, - "optDisabled": 1, - "selected=": 1, - "attrFix": 1, - "f.attrFn": 3, - "f.isXMLDoc": 4, - "f.attrFix": 3, - "f.attrHooks": 5, - "t.test": 2, - "d.toLowerCase": 1, - "c.toLowerCase": 4, - "u.test": 1, - "i.set": 1, - "i.get": 1, - "f.support.getSetAttribute": 2, - "a.removeAttributeNode": 1, - "q.test": 1, - "f.support.radioValue": 1, - "c.specified": 1, - "c.value": 1, - "r.test": 1, - "s.test": 1, - "propFix": 1, - "cellpadding": 1, - "contenteditable": 1, - "f.propHooks": 1, - "h.set": 1, - "h.get": 1, - "propHooks": 1, - "f.attrHooks.value": 1, - "v.get": 1, - "f.attrHooks.name": 1, - "f.valHooks.button": 1, - "d.nodeValue": 3, - "f.support.hrefNormalized": 1, - "f.support.style": 1, - "f.attrHooks.style": 1, - "a.style.cssText.toLowerCase": 1, - "f.support.optSelected": 1, - "f.propHooks.selected": 2, - "b.parentNode.selectedIndex": 1, - "f.support.checkOn": 1, - "f.inArray": 4, - "s.": 1, - "f.event": 2, - "d.handler": 1, - "g.handler": 1, - "d.guid": 4, - "f.guid": 3, - "i.events": 2, - "i.handle": 2, - "f.event.triggered": 3, - "f.event.handle.apply": 1, - "k.elem": 2, - "c.split": 2, - "l.indexOf": 1, - "l.split": 1, - "n.shift": 1, - "h.namespace": 2, - "n.slice": 1, - "h.type": 1, - "h.guid": 2, - "f.event.special": 5, - "p.setup": 1, - "p.setup.call": 1, - "p.add": 1, - "p.add.call": 1, - "h.handler.guid": 2, - "o.push": 1, - "f.event.global": 2, - "remove": 9, - "s.events": 1, - "c.type": 9, - "c.handler": 1, - "c.charAt": 1, - "f.event.remove": 5, - "h.indexOf": 3, - "h.split": 2, - "m.shift": 1, - "m.slice": 1, - "q.namespace": 1, - "q.handler": 1, - "p.splice": 1, - "": 1, - "u=": 12, - "elem=": 4, - "customEvent": 1, - "trigger": 4, - "h.slice": 1, - "i.shift": 1, - "i.sort": 1, - "f.event.customEvent": 1, - "f.Event": 2, - "c.exclusive": 2, - "c.namespace": 2, - "i.join": 2, - "c.namespace_re": 1, - "c.preventDefault": 3, - "c.stopPropagation": 1, - "b.events": 4, - "f.event.trigger": 6, - "b.handle.elem": 2, - "c.result": 3, - "c.target": 3, - "do": 15, - "c.currentTarget": 2, - "m.apply": 1, - "k.parentNode": 1, - "k.ownerDocument": 1, - "c.target.ownerDocument": 1, - "c.isPropagationStopped": 1, - "c.isDefaultPrevented": 2, - "o._default": 1, - "o._default.call": 1, - "e.ownerDocument": 1, - "f.event.fix": 2, - "a.event": 1, - "Array.prototype.slice.call": 1, - "namespace_re": 1, - "namespace": 1, - "handler=": 1, - "data=": 2, - "handleObj=": 1, - "result=": 1, - "preventDefault": 4, - "stopPropagation": 5, - "isImmediatePropagationStopped": 2, - "props": 21, - "split": 4, - "fix": 1, - "Event": 3, - "target=": 2, - "relatedTarget=": 1, - "fromElement=": 1, - "pageX=": 2, - "scrollLeft": 2, - "clientLeft": 2, - "pageY=": 1, - "scrollTop": 2, - "clientTop": 2, - "which=": 3, - "metaKey=": 1, - "2": 66, - "3": 13, - "4": 4, - "1e8": 1, - "special": 3, - "setup": 5, - "teardown": 6, - "origType": 2, - "beforeunload": 1, - "onbeforeunload=": 3, - "removeEvent=": 1, - "removeEventListener": 3, - "detachEvent": 2, - "Event=": 1, - "originalEvent=": 1, - "type=": 5, - "isDefaultPrevented=": 2, - "defaultPrevented": 1, - "returnValue=": 2, - "getPreventDefault": 2, - "timeStamp=": 1, - "prototype=": 2, - "originalEvent": 2, - "isPropagationStopped=": 1, - "cancelBubble=": 1, - "stopImmediatePropagation": 1, - "isImmediatePropagationStopped=": 1, - "isDefaultPrevented": 1, - "isPropagationStopped": 1, - "G=": 1, - "H=": 1, - "submit=": 1, - "specialSubmit": 3, - "closest": 3, - "keyCode=": 1, - "J=": 1, - "selectedIndex": 1, - "a.selected": 1, - "z.test": 3, - "d.readOnly": 1, - "c.liveFired": 1, - "f.event.special.change": 1, - "filters": 1, - "beforedeactivate": 1, - "K.call": 2, - "a.keyCode": 2, - "beforeactivate": 1, - "f.event.add": 2, - "f.event.special.change.filters": 1, - "I.focus": 1, - "I.beforeactivate": 1, - "f.support.focusinBubbles": 1, - "c.originalEvent": 1, - "a.preventDefault": 3, - "f.fn": 9, - "e.apply": 1, - "this.one": 1, - "unbind": 2, - "this.unbind": 2, - "delegate": 1, - "this.live": 1, - "undelegate": 1, - "this.die": 1, - "triggerHandler": 1, - "%": 26, - ".guid": 1, - "this.click": 1, - "this.mouseenter": 1, - ".mouseleave": 1, - "g.charAt": 1, - "n.unbind": 1, - "y.exec": 1, - "a.push": 2, - "n.length": 1, - "": 1, - "this.bind": 2, - "": 2, - "sizcache=": 4, - "sizset": 2, - "sizset=": 2, - "toLowerCase": 3, - "d.nodeType": 5, - "k.isXML": 4, - "a.exec": 2, - "x.push": 1, - "x.length": 8, - "m.exec": 1, - "l.relative": 6, - "x.shift": 4, - "l.match.ID.test": 2, - "q.expr": 4, - "q.set": 4, - "x.pop": 4, - "d.parentNode": 4, - "e.call": 1, - "f.push.apply": 1, - "k.contains": 5, - "a.sort": 1, - "": 1, - "matches=": 1, - "matchesSelector=": 1, - "l.order.length": 1, - "l.order": 1, - "l.leftMatch": 1, - "j.substr": 1, - "": 1, - "__sizzle__": 1, - "sizzle": 1, - "l.match.PSEUDO.test": 1, - "a.document.nodeType": 1, - "a.getElementsByClassName": 3, - "a.lastChild.className": 1, - "l.order.splice": 1, - "l.find.CLASS": 1, - "b.getElementsByClassName": 2, - "c.documentElement.contains": 1, - "a.contains": 2, - "c.documentElement.compareDocumentPosition": 1, - "a.compareDocumentPosition": 1, - "a.ownerDocument": 1, - ".documentElement": 1, - "b.nodeName": 2, - "l.match.PSEUDO.exec": 1, - "l.match.PSEUDO": 1, - "f.expr": 4, - "k.selectors": 1, - "f.expr.filters": 3, - "f.unique": 4, - "f.text": 2, - "k.getText": 1, - "/Until": 1, - "parents": 2, - "prevUntil": 2, - "prevAll": 2, - "U": 1, - "f.expr.match.POS": 1, - "V": 2, - "children": 3, - "contents": 4, - "next": 9, - "prev": 2, - ".filter": 2, - "": 1, - "e.splice": 1, - "this.filter": 2, - "": 1, - "": 1, - ".is": 2, - "c.push": 3, - "g.parentNode": 2, - "U.test": 1, - "": 1, - "f.find.matchesSelector": 2, - "g.ownerDocument": 1, - "this.parent": 2, - ".children": 1, - "a.jquery": 2, - "f.merge": 2, - "this.get": 1, - "andSelf": 1, - "this.add": 1, - "f.dir": 6, - "parentsUntil": 1, - "f.nth": 2, - "nextAll": 1, - "nextUntil": 1, - "siblings": 1, - "f.sibling": 2, - "a.parentNode.firstChild": 1, - "a.contentDocument": 1, - "a.contentWindow.document": 1, - "a.childNodes": 1, - "T.call": 1, - "P.test": 1, - "f.filter": 2, - "R.test": 1, - "Q.test": 1, - "e.reverse": 1, - "g.join": 1, - "f.find.matches": 1, - "dir": 1, - "sibling": 1, - "a.nextSibling": 1, - "<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:]+)[^>": 1, - "/ig": 3, - "tbody/i": 1, - "bc": 1, - "bd": 1, - "/checked": 1, - "s*.checked.": 1, - "java": 1, - "ecma": 1, - "script/i": 1, - "CDATA": 1, - "bg": 3, - "legend": 1, - "thead": 2, - "tr": 23, - "td": 3, - "col": 7, - "_default": 5, - "bg.optgroup": 1, - "bg.option": 1, - "bg.tbody": 1, - "bg.tfoot": 1, - "bg.colgroup": 1, - "bg.caption": 1, - "bg.thead": 1, - "bg.th": 1, - "bg.td": 1, - "f.support.htmlSerialize": 1, - "bg._default": 2, - "c.text": 2, - "this.empty": 3, - ".append": 6, - ".createTextNode": 1, - "wrapAll": 1, - ".wrapAll": 2, - ".eq": 1, - ".clone": 1, - "b.map": 1, - "wrapInner": 1, - ".wrapInner": 1, - "b.contents": 1, - "c.wrapAll": 1, - "b.append": 1, - "wrap": 2, - "unwrap": 1, - ".replaceWith": 1, - "this.childNodes": 1, - ".end": 1, - "append": 1, - "this.domManip": 4, - "this.appendChild": 1, - "prepend": 1, - "this.insertBefore": 1, - "this.firstChild": 1, - "this.parentNode.insertBefore": 2, - "a.push.apply": 2, - "this.nextSibling": 2, - ".toArray": 1, - "f.cleanData": 4, - "d.parentNode.removeChild": 1, - "b.getElementsByTagName": 1, - "this.map": 3, - "f.clone": 2, - ".innerHTML.replace": 1, - "bc.test": 2, - "f.support.leadingWhitespace": 2, - "Z.test": 2, - "_.exec": 2, - ".getElementsByTagName": 2, - ".innerHTML": 3, - "c.html": 3, - "replaceWith": 1, - "c.replaceWith": 1, - ".detach": 1, - "this.parentNode": 1, - ".remove": 2, - ".before": 1, - "detach": 1, - "this.remove": 1, - "domManip": 1, - "f.support.checkClone": 2, - "bd.test": 2, - ".domManip": 1, - "g.html": 1, - "g.domManip": 1, - "j.parentNode": 1, - "f.support.parentNode": 1, - "i.nodeType": 1, - "i.childNodes.length": 1, - "f.buildFragment": 2, - "e.fragment": 1, - "h.childNodes.length": 1, - "h.firstChild": 2, - "": 1, - "k.length": 2, - ".charAt": 1, - "f.fragments": 3, - "i.createDocumentFragment": 1, - "f.clean": 1, - "appendTo": 1, - "prependTo": 1, - "insertBefore": 1, - "insertAfter": 1, - "replaceAll": 1, - "g.childNodes.length": 1, - "this.clone": 1, - ".get": 3, - "d.concat": 1, - "e.selector": 1, - "f.support.noCloneEvent": 1, - "f.support.noCloneChecked": 1, - "b.createElement": 2, - "b.createTextNode": 2, - "k.replace": 2, - "o.innerHTML": 1, - "o.lastChild": 1, - "f.support.tbody": 1, - "ba.test": 1, - "o.firstChild": 2, - "o.firstChild.childNodes": 1, - "o.childNodes": 2, - "q.length": 1, - ".childNodes.length": 1, - ".parentNode.removeChild": 2, - "o.insertBefore": 1, - "Z.exec": 1, - "f.support.appendChecked": 1, - "k.nodeType": 1, - "h.push": 1, - "be.test": 1, - ".type.toLowerCase": 1, - "h.splice.apply": 1, - ".concat": 3, - "cleanData": 1, - "j.nodeName": 1, - "j.nodeName.toLowerCase": 1, - "f.removeEvent": 1, - "b.handle": 2, - "j.removeAttribute": 2, - "bo": 2, - "/alpha": 1, - "bp": 1, - "/opacity": 1, - "bq": 2, - "br": 19, - "ms": 2, - "bs": 2, - "bt": 42, - "bu": 11, - "bv": 2, - "de": 1, - "bw": 2, - "bz": 7, - "bA": 3, - "bB": 5, - "bC": 2, - "f.fn.css": 1, - "f.style": 4, - "cssHooks": 1, - "a.style.opacity": 2, - "cssNumber": 3, - "zIndex": 1, - "fontWeight": 1, - "zoom": 1, - "lineHeight": 1, - "widows": 1, - "orphans": 1, - "cssProps": 1, - "f.support.cssFloat": 1, - "f.cssHooks": 3, - "f.cssProps": 2, - "k.get": 1, - "bu.test": 1, - "d.replace": 1, - "f.cssNumber": 1, - "k.set": 1, - "g.get": 1, - "swap": 1, - "f.curCSS": 1, - "f.swap": 2, - "<0||e==null){e=a.style[b];return>": 1, - "0px": 1, - "f.support.opacity": 1, - "f.cssHooks.opacity": 1, - "bp.test": 1, - "a.currentStyle": 4, - "a.currentStyle.filter": 1, - "a.style.filter": 1, - "RegExp.": 1, - "c.zoom": 1, - "b*100": 1, - "d.filter": 1, - "c.filter": 2, - "bo.test": 1, - "g.replace": 1, - "f.support.reliableMarginRight": 1, - "f.cssHooks.marginRight": 1, - "a.style.marginRight": 1, - "a.ownerDocument.defaultView": 1, - "e.getComputedStyle": 1, - "g.getPropertyValue": 1, - "a.ownerDocument.documentElement": 1, - "c.documentElement.currentStyle": 1, - "a.runtimeStyle": 2, - "bs.test": 1, - "bt.test": 1, - "f.left": 3, - "a.runtimeStyle.left": 2, - "a.currentStyle.left": 1, - "f.pixelLeft": 1, - "f.expr.filters.hidden": 2, - "f.support.reliableHiddenOffsets": 1, - "f.expr.filters.visible": 1, - "bE": 2, - "bF": 1, - "bG": 3, - "n/g": 1, - "bH": 2, - "/#.*": 1, - "bI": 1, - "/mg": 1, - "bJ": 1, - "color": 4, - "date": 1, - "datetime": 1, - "email": 2, - "month": 1, - "range": 2, - "search": 5, - "tel": 2, - "time": 1, - "week": 1, - "bK": 1, - "about": 1, - "storage": 1, - "extension": 1, - "widget": 1, - "bL": 1, - "GET": 1, - "bM": 2, - "bN": 2, - "bO": 2, - "<\\/script>": 2, - "/gi": 2, - "bP": 1, - "bR": 2, - "*/": 2, - "bS": 1, - "bT": 2, - "f.fn.load": 1, - "bV": 3, - "bW": 5, - "bX": 8, - "e.href": 1, - "bY": 1, - "bW.href": 2, - "bS.exec": 1, - "bW.toLowerCase": 1, - "bT.apply": 1, - "a.slice": 2, - "f.param": 2, - "f.ajaxSettings.traditional": 2, - "complete": 6, - "a.responseText": 1, - "a.isResolved": 1, - "a.done": 1, - "i.html": 1, - "i.each": 1, - "serialize": 1, - "this.serializeArray": 1, - "serializeArray": 1, - "this.elements": 2, - "this.disabled": 1, - "this.checked": 1, - "bP.test": 1, - "bJ.test": 1, - ".map": 1, - "b.name": 2, - "success": 2, - "getScript": 1, - "f.get": 2, - "getJSON": 1, - "ajaxSetup": 1, - "f.ajaxSettings": 4, - "ajaxSettings": 1, - "isLocal": 1, - "bK.test": 1, - "contentType": 4, - "processData": 3, - "accepts": 5, - "xml": 3, - "json": 2, - "/xml/": 1, - "/html/": 1, - "/json/": 1, - "responseFields": 1, - "converters": 2, - "a.String": 1, - "f.parseXML": 1, - "ajaxPrefilter": 1, - "ajaxTransport": 1, - "ajax": 2, - "clearTimeout": 2, - "v.readyState": 1, - "d.ifModified": 1, - "v.getResponseHeader": 2, - "f.lastModified": 1, - "f.etag": 1, - "v.status": 1, - "v.statusText": 1, - "h.resolveWith": 1, - "h.rejectWith": 1, - "v.statusCode": 2, - "g.trigger": 2, - "i.resolveWith": 1, - "f.active": 1, - "f.ajaxSetup": 3, - "d.statusCode": 1, - "readyState": 1, - "setRequestHeader": 6, - "getAllResponseHeaders": 1, - "getResponseHeader": 1, - "bI.exec": 1, - "overrideMimeType": 1, - "d.mimeType": 1, - "abort": 4, - "p.abort": 1, - "h.promise": 1, - "v.success": 1, - "v.done": 1, - "v.error": 1, - "v.fail": 1, - "v.complete": 1, - "i.done": 1, - "<2)for(b>": 1, - "url=": 1, - "dataTypes=": 1, - "crossDomain=": 2, - "exec": 8, - "80": 2, - "443": 2, - "param": 3, - "traditional": 1, - "s=": 12, - "t=": 19, - "toUpperCase": 1, - "hasContent=": 1, - "active": 2, - "ajaxStart": 1, - "hasContent": 2, - "cache=": 1, - "x=": 1, - "y=": 5, - "1_=": 1, - "_=": 1, - "Content": 1, - "Type": 1, - "ifModified": 1, - "lastModified": 3, - "Modified": 1, - "etag": 3, - "None": 1, - "Accept": 1, - "dataTypes": 4, - "q=": 1, - "01": 1, - "beforeSend": 2, - "p=": 5, - "No": 1, - "Transport": 1, - "readyState=": 1, - "ajaxSend": 1, - "v.abort": 1, - "d.timeout": 1, - "p.send": 1, - "encodeURIComponent": 2, - "f.isPlainObject": 1, - "d.join": 1, - "cc": 2, - "cd": 3, - "jsonp": 1, - "jsonpCallback": 1, - "f.ajaxPrefilter": 2, - "b.contentType": 1, - "b.data": 5, - "b.dataTypes": 2, - "b.jsonp": 3, - "cd.test": 2, - "b.url": 4, - "b.jsonpCallback": 4, - "d.always": 1, - "b.converters": 1, - "/javascript": 1, - "ecmascript/": 1, - "a.cache": 2, - "a.crossDomain": 2, - "a.global": 1, - "f.ajaxTransport": 2, - "c.head": 1, - "c.getElementsByTagName": 1, - "send": 2, - "d.async": 1, - "a.scriptCharset": 2, - "d.charset": 1, - "d.src": 1, - "a.url": 1, - "d.onload": 3, - "d.onreadystatechange": 2, - "d.readyState": 2, - "/loaded": 1, - "complete/.test": 1, - "e.removeChild": 1, - "e.insertBefore": 1, - "e.firstChild": 1, - "ce": 6, - "cg": 7, - "cf": 7, - "f.ajaxSettings.xhr": 2, - "this.isLocal": 1, - "cors": 1, - "f.support.ajax": 1, - "c.crossDomain": 3, - "f.support.cors": 1, - "c.xhr": 1, - "c.username": 2, - "h.open": 2, - "c.url": 2, - "c.password": 1, - "c.xhrFields": 3, - "c.mimeType": 2, - "h.overrideMimeType": 2, - "h.setRequestHeader": 1, - "h.send": 1, - "c.hasContent": 1, - "h.readyState": 3, - "h.onreadystatechange": 2, - "h.abort": 1, - "h.status": 1, - "h.getAllResponseHeaders": 1, - "h.responseXML": 1, - "n.documentElement": 1, - "m.xml": 1, - "m.text": 2, - "h.responseText": 1, - "h.statusText": 1, - "c.isLocal": 1, - ".unload": 1, - "cm": 2, - "cn": 1, - "co": 5, - "cp": 1, - "cr": 20, - "a.webkitRequestAnimationFrame": 1, - "a.mozRequestAnimationFrame": 1, - "a.oRequestAnimationFrame": 1, - "this.animate": 2, - "d.style": 3, - ".style": 1, - "": 1, - "_toggle": 2, - "animate": 4, - "fadeTo": 1, - "queue=": 2, - "animatedProperties=": 1, - "animatedProperties": 2, - "specialEasing": 2, - "easing": 3, - "swing": 2, - "overflow=": 2, - "overflow": 2, - "overflowX": 1, - "overflowY": 1, - "float": 3, - "display=": 3, - "zoom=": 1, - "fx": 10, - "l=": 10, - "m=": 2, - "custom": 5, - "stop": 7, - "timers": 3, - "slideDown": 1, - "slideUp": 1, - "slideToggle": 1, - "fadeIn": 1, - "fadeOut": 1, - "fadeToggle": 1, - "duration": 4, - "duration=": 2, - "off": 1, - "speeds": 4, - "old=": 1, - "complete=": 1, - "old": 2, - "linear": 1, - "Math": 51, - "cos": 1, - "PI": 54, - "5": 23, - "options=": 1, - "prop=": 3, - "orig=": 1, - "orig": 3, - "step": 7, - "startTime=": 1, - "start=": 1, - "end=": 1, - "unit=": 1, - "unit": 1, - "now=": 1, - "pos=": 1, - "state=": 1, - "co=": 2, - "tick": 3, - "interval": 3, - "show=": 1, - "hide=": 1, - "e.duration": 3, - "this.startTime": 2, - "this.now": 3, - "this.end": 2, - "this.pos": 4, - "this.state": 3, - "this.update": 2, - "e.animatedProperties": 5, - "this.prop": 2, - "e.overflow": 2, - "f.support.shrinkWrapBlocks": 1, - "e.hide": 2, - ".hide": 2, - "e.show": 1, - "e.orig": 1, - "e.complete.call": 1, - "Infinity": 1, - "h/e.duration": 1, - "f.easing": 1, - "this.start": 2, - "*this.pos": 1, - "f.timers": 2, - "a.splice": 1, - "f.fx.stop": 1, - "clearInterval": 6, - "slow": 1, - "fast": 1, - "a.elem": 2, - "a.now": 4, - "a.elem.style": 3, - "a.prop": 5, - "Math.max": 10, - "a.unit": 1, - "f.expr.filters.animated": 1, - "b.elem": 1, - "cw": 1, - "able": 1, - "cx": 2, - "f.fn.offset": 2, - "f.offset.setOffset": 2, - "b.ownerDocument.body": 2, - "f.offset.bodyOffset": 2, - "b.getBoundingClientRect": 1, - "e.documentElement": 4, - "c.top": 4, - "c.left": 4, - "e.body": 3, - "g.clientTop": 1, - "h.clientTop": 1, - "g.clientLeft": 1, - "h.clientLeft": 1, - "i.pageYOffset": 1, - "g.scrollTop": 1, - "h.scrollTop": 2, - "i.pageXOffset": 1, - "g.scrollLeft": 1, - "h.scrollLeft": 2, - "f.offset.initialize": 3, - "b.offsetParent": 2, - "g.documentElement": 1, - "g.body": 1, - "g.defaultView": 1, - "j.getComputedStyle": 2, - "b.currentStyle": 2, - "b.offsetTop": 2, - "b.offsetLeft": 2, - "f.offset.supportsFixedPosition": 2, - "k.position": 4, - "b.scrollTop": 1, - "b.scrollLeft": 1, - "f.offset.doesNotAddBorder": 1, - "f.offset.doesAddBorderForTableAndCells": 1, - "cw.test": 1, - "c.borderTopWidth": 2, - "c.borderLeftWidth": 2, - "f.offset.subtractsBorderForOverflowNotVisible": 1, - "c.overflow": 1, - "i.offsetTop": 1, - "i.offsetLeft": 1, - "i.scrollTop": 1, - "i.scrollLeft": 1, - "f.offset": 1, - "initialize": 3, - "b.style": 1, - "d.nextSibling.firstChild.firstChild": 1, - "this.doesNotAddBorder": 1, - "e.offsetTop": 4, - "this.doesAddBorderForTableAndCells": 1, - "h.offsetTop": 1, - "e.style.position": 2, - "e.style.top": 2, - "this.supportsFixedPosition": 1, - "d.style.overflow": 1, - "d.style.position": 1, - "this.subtractsBorderForOverflowNotVisible": 1, - "this.doesNotIncludeMarginInBodyOffset": 1, - "a.offsetTop": 2, - "bodyOffset": 1, - "a.offsetLeft": 1, - "f.offset.doesNotIncludeMarginInBodyOffset": 1, - "setOffset": 1, - "a.style.position": 1, - "e.offset": 1, - "e.position": 1, - "l.top": 1, - "l.left": 1, - "b.top": 2, - "k.top": 1, - "g.top": 1, - "b.left": 2, - "k.left": 1, - "g.left": 1, - "b.using.call": 1, - "e.css": 1, - "this.offsetParent": 2, - "this.offset": 2, - "cx.test": 2, - "b.offset": 1, - "d.top": 2, - "d.left": 2, - "offsetParent": 1, - "a.offsetParent": 1, - "g.document.documentElement": 1, - "g.document.body": 1, - "g.scrollTo": 1, - ".scrollLeft": 1, - ".scrollTop": 1, - "e.document.documentElement": 1, - "e.document.compatMode": 1, - "e.document.body": 1, - "this.css": 1, - "Prioritize": 1, - "": 1, - "XSS": 1, - "location.hash": 1, - "#9521": 1, - "Matches": 1, - "dashed": 1, - "camelizing": 1, - "rdashAlpha": 1, - "rmsPrefix": 1, - "fcamelCase": 1, - "letter": 3, - "readyList.fireWith": 1, - ".off": 1, - "jQuery.Callbacks": 2, - "IE8": 2, - "exceptions": 2, - "#9897": 1, - "elems": 9, - "chainable": 4, - "emptyGet": 3, - "bulk": 3, - "elems.length": 1, - "Sets": 3, - "jQuery.access": 2, - "Optionally": 1, - "executed": 1, - "Bulk": 1, - "operations": 1, - "iterate": 1, - "executing": 1, - "exec.call": 1, - "they": 2, - "run": 1, - "against": 1, - "entire": 1, - "fn.call": 2, - "value.call": 1, - "Gets": 2, - "frowned": 1, - "upon.": 1, - "More": 1, - "//docs.jquery.com/Utilities/jQuery.browser": 1, - "ua": 6, - "ua.toLowerCase": 1, - "rwebkit.exec": 1, - "ropera.exec": 1, - "rmsie.exec": 1, - "ua.indexOf": 1, - "rmozilla.exec": 1, - "jQuerySub": 7, - "jQuerySub.fn.init": 2, - "jQuerySub.superclass": 1, - "jQuerySub.fn": 2, - "jQuerySub.prototype": 1, - "jQuerySub.fn.constructor": 1, - "jQuerySub.sub": 1, - "jQuery.fn.init.call": 1, - "rootjQuerySub": 2, - "jQuerySub.fn.init.prototype": 1, - "jQuery.uaMatch": 1, - "browserMatch.browser": 2, - "jQuery.browser.version": 1, - "browserMatch.version": 1, - "jQuery.browser.webkit": 1, - "jQuery.browser.safari": 1, - "flagsCache": 3, - "createFlags": 2, - "flags": 13, - "flags.split": 1, - "flags.length": 1, - "Convert": 1, - "formatted": 2, - "Actual": 2, - "Stack": 1, - "fire": 4, - "calls": 1, - "repeatable": 1, - "lists": 2, - "stack": 2, - "forgettable": 1, - "memory": 8, - "Flag": 2, - "First": 3, - "fireWith": 1, - "firingStart": 3, - "End": 1, - "firingLength": 4, - "Index": 1, - "firingIndex": 5, - "several": 1, - "actual": 1, - "Inspect": 1, - "recursively": 1, - "mode": 1, - "flags.unique": 1, - "self.has": 1, - "list.push": 1, - "Fire": 1, - "flags.memory": 1, - "flags.stopOnFalse": 1, - "Mark": 1, - "halted": 1, - "flags.once": 1, - "stack.length": 1, - "stack.shift": 1, - "self.fireWith": 1, - "self.disable": 1, - "Callbacks": 1, - "collection": 3, - "Do": 2, - "current": 7, - "batch": 2, - "With": 1, - "/a": 1, - ".55": 1, - "basic": 1, - "all.length": 1, - "supports": 2, - "select.appendChild": 1, - "strips": 1, - "leading": 1, - "div.firstChild.nodeType": 1, - "manipulated": 1, - "normalizes": 1, - "around": 1, - "issue.": 1, - "#5145": 1, - "existence": 1, - "styleFloat": 1, - "a.style.cssFloat": 1, - "defaults": 3, - "working": 1, - "property.": 1, - "too": 1, - "marked": 1, - "marks": 1, - "select.disabled": 1, - "support.optDisabled": 1, - "opt.disabled": 1, - "handlers": 1, - "support.noCloneEvent": 1, - "div.cloneNode": 1, - "maintains": 1, - "#11217": 1, - "loses": 1, - "div.lastChild": 1, - "conMarginTop": 3, - "paddingMarginBorder": 5, - "positionTopLeftWidthHeight": 3, - "paddingMarginBorderVisibility": 3, - "container": 4, - "container.style.cssText": 1, - "body.insertBefore": 1, - "body.firstChild": 1, - "Construct": 1, - "container.appendChild": 1, - "cells": 3, - "still": 4, - "offsetWidth/Height": 3, - "visible": 1, - "row": 1, - "reliable": 1, - "offsets": 1, - "safety": 1, - "goggles": 1, - "#4512": 1, - "fails": 2, - "support.reliableHiddenOffsets": 1, - "explicit": 1, - "right": 3, - "incorrectly": 1, - "computed": 1, - "based": 1, - "container.": 1, - "#3333": 1, - "Feb": 1, - "Bug": 1, - "getComputedStyle": 3, - "returns": 1, - "wrong": 1, - "window.getComputedStyle": 6, - "marginDiv.style.width": 1, - "marginDiv.style.marginRight": 1, - "div.style.width": 2, - "support.reliableMarginRight": 1, - "div.style.zoom": 2, - "natively": 1, - "block": 4, - "act": 1, - "setting": 2, - "giving": 1, - "layout": 2, - "div.style.padding": 1, - "div.style.border": 1, - "div.style.overflow": 2, - "div.style.display": 2, - "support.inlineBlockNeedsLayout": 1, - "div.offsetWidth": 2, - "shrink": 1, - "support.shrinkWrapBlocks": 1, - "div.style.cssText": 1, - "outer.firstChild": 1, - "outer.nextSibling.firstChild.firstChild": 1, - "offsetSupport": 2, - "doesNotAddBorder": 1, - "inner.offsetTop": 4, - "doesAddBorderForTableAndCells": 1, - "td.offsetTop": 1, - "inner.style.position": 2, - "inner.style.top": 2, - "safari": 1, - "subtracts": 1, - "here": 1, - "offsetSupport.fixedPosition": 1, - "outer.style.overflow": 1, - "outer.style.position": 1, - "offsetSupport.subtractsBorderForOverflowNotVisible": 1, - "offsetSupport.doesNotIncludeMarginInBodyOffset": 1, - "body.offsetTop": 1, - "div.style.marginTop": 1, - "support.pixelMargin": 1, - ".marginTop": 1, - "container.style.zoom": 2, - "body.removeChild": 1, - "rbrace": 1, - "Please": 1, - "caution": 1, - "Unique": 1, - "page": 1, - "rinlinejQuery": 1, - "jQuery.fn.jquery": 1, - "following": 1, - "uncatchable": 1, - "you": 1, - "attempt": 2, - "them.": 1, - "Ban": 1, - "except": 1, - "Flash": 1, - "jQuery.acceptData": 2, - "privateCache": 1, - "differently": 1, - "because": 1, - "IE6": 1, - "order": 1, - "collisions": 1, - "between": 1, - "user": 1, - "data.": 1, - "thisCache.data": 3, - "Users": 1, - "should": 1, - "inspect": 1, - "undocumented": 1, - "subject": 1, - "change.": 1, - "But": 1, - "anyone": 1, - "listen": 1, - "No.": 1, - "isEvents": 1, - "privateCache.events": 1, - "converted": 2, - "camel": 2, - "names": 2, - "camelCased": 1, - "Reference": 1, - "entry": 1, - "purpose": 1, - "continuing": 1, - "Support": 1, - "space": 1, - "separated": 1, - "jQuery.isArray": 1, - "manipulation": 1, - "cased": 1, - "name.split": 1, - "name.length": 1, - "want": 1, - "let": 1, - "destroyed": 2, - "jQuery.isEmptyObject": 1, - "Don": 1, - "care": 1, - "Ensure": 1, - "#10080": 1, - "cache.setInterval": 1, - "part": 8, - "jQuery._data": 2, - "elem.attributes": 1, - "self.triggerHandler": 2, - "jQuery.isNumeric": 1, - "All": 1, - "lowercase": 1, - "Grab": 1, - "necessary": 1, - "hook": 1, - "nodeHook": 1, - "attrNames": 3, - "isBool": 4, - "rspace": 1, - "attrNames.length": 1, - "#9699": 1, - "explanation": 1, - "approach": 1, - "removal": 1, - "#10870": 1, - "**": 1, - "timeStamp": 1, - "char": 2, - "buttons": 1, - "SHEBANG#!node": 2, - "http.createServer": 1, - "res.writeHead": 1, - "res.end": 1, - ".listen": 1, - "Date.prototype.toJSON": 2, - "isFinite": 1, - "this.valueOf": 2, - "this.getUTCFullYear": 1, - "this.getUTCMonth": 1, - "this.getUTCDate": 1, - "this.getUTCHours": 1, - "this.getUTCMinutes": 1, - "this.getUTCSeconds": 1, - "String.prototype.toJSON": 1, - "Number.prototype.toJSON": 1, - "Boolean.prototype.toJSON": 1, - "u0000": 1, - "u00ad": 1, - "u0600": 1, - "u0604": 1, - "u070f": 1, - "u17b4": 1, - "u17b5": 1, - "u200c": 1, - "u200f": 1, - "u2028": 3, - "u202f": 1, - "u2060": 1, - "u206f": 1, - "ufeff": 1, - "ufff0": 1, - "uffff": 1, - "escapable": 1, - "/bfnrt": 1, - "fA": 2, - "JSON.parse": 1, - "PUT": 1, - "DELETE": 1, - "_id": 1, - "ties": 1, - "collection.": 1, - "_removeReference": 1, - "model.collection": 2, - "model.unbind": 1, - "this._onModelEvent": 1, - "_onModelEvent": 1, - "ev": 5, - "this._remove": 1, - "model.idAttribute": 2, - "this._byId": 2, - "model.previous": 1, - "model.id": 1, - "this.trigger.apply": 2, - "_.each": 1, - "Backbone.Collection.prototype": 1, - "this.models": 1, - "_.toArray": 1, - "Backbone.Router": 1, - "options.routes": 2, - "this.routes": 4, - "this._bindRoutes": 1, - "this.initialize.apply": 2, - "namedParam": 2, - "splatParam": 2, - "escapeRegExp": 2, - "_.extend": 9, - "Backbone.Router.prototype": 1, - "Backbone.Events": 2, - "route": 18, - "Backbone.history": 2, - "Backbone.History": 2, - "_.isRegExp": 1, - "this._routeToRegExp": 1, - "Backbone.history.route": 1, - "_.bind": 2, - "this._extractParameters": 1, - "callback.apply": 1, - "navigate": 2, - "triggerRoute": 4, - "Backbone.history.navigate": 1, - "_bindRoutes": 1, - "routes": 4, - "routes.unshift": 1, - "routes.length": 1, - "this.route": 1, - "_routeToRegExp": 1, - "route.replace": 1, - "_extractParameters": 1, - "route.exec": 1, - "this.handlers": 2, - "_.bindAll": 1, - "hashStrip": 4, - "#*": 1, - "isExplorer": 1, - "/msie": 1, - "historyStarted": 3, - "Backbone.History.prototype": 1, - "getFragment": 1, - "forcePushState": 2, - "this._hasPushState": 6, - "window.location.pathname": 1, - "window.location.search": 1, - "fragment.indexOf": 1, - "this.options.root": 6, - "fragment.substr": 1, - "this.options.root.length": 1, - "window.location.hash": 3, - "fragment.replace": 1, - "this._wantsPushState": 3, - "this.options.pushState": 2, - "window.history": 2, - "window.history.pushState": 2, - "this.getFragment": 6, - "docMode": 3, - "document.documentMode": 3, - "oldIE": 3, - "isExplorer.exec": 1, - "navigator.userAgent.toLowerCase": 1, - "this.iframe": 4, - ".contentWindow": 1, - "this.navigate": 2, - ".bind": 3, - "this.checkUrl": 3, - "setInterval": 6, - "this.interval": 1, - "this.fragment": 13, - "loc": 2, - "atRoot": 3, - "loc.pathname": 1, - "loc.hash": 1, - "loc.hash.replace": 1, - "window.history.replaceState": 1, - "document.title": 2, - "loc.protocol": 2, - "loc.host": 2, - "this.loadUrl": 4, - "this.handlers.unshift": 1, - "checkUrl": 1, - "this.iframe.location.hash": 3, - "decodeURIComponent": 2, - "loadUrl": 1, - "fragmentOverride": 2, - "matched": 2, - "_.any": 1, - "handler.route.test": 1, - "handler.callback": 1, - "frag": 13, - "frag.indexOf": 1, - "this.iframe.document.open": 1, - ".close": 1, - "Backbone.View": 1, - "this.cid": 3, - "_.uniqueId": 1, - "this._configure": 1, - "this._ensureElement": 1, - "this.delegateEvents": 1, - "selectorDelegate": 2, - "this.el": 10, - "eventSplitter": 2, - "viewOptions": 2, - "Backbone.View.prototype": 1, - "tagName": 3, - "render": 1, - "el": 4, - ".attr": 1, - ".html": 1, - "delegateEvents": 1, - "this.events": 1, - "key.match": 1, - "_configure": 1, - "viewOptions.length": 1, - "_ensureElement": 1, - "attrs": 6, - "this.attributes": 1, - "this.id": 2, - "attrs.id": 1, - "this.make": 1, - "this.tagName": 1, - "_.isString": 1, - "protoProps": 6, - "classProps": 2, - "inherits": 2, - "child.extend": 1, - "this.extend": 1, - "Backbone.Model.extend": 1, - "Backbone.Collection.extend": 1, - "Backbone.Router.extend": 1, - "Backbone.View.extend": 1, - "methodMap": 2, - "Backbone.sync": 1, - "params": 2, - "params.url": 2, - "getUrl": 2, - "urlError": 2, - "params.data": 5, - "params.contentType": 2, - "model.toJSON": 1, - "Backbone.emulateJSON": 2, - "params.processData": 1, - "Backbone.emulateHTTP": 1, - "params.data._method": 1, - "params.type": 1, - "params.beforeSend": 1, - "xhr": 1, - "xhr.setRequestHeader": 1, - ".ajax": 1, - "staticProps": 3, - "protoProps.hasOwnProperty": 1, - "protoProps.constructor": 1, - "parent.apply": 1, - "child.prototype.constructor": 1, - "object.url": 4, - "_.isFunction": 1, - "wrapError": 1, - "onError": 3, - "resp": 3, - "model.trigger": 1, - "escapeHTML": 1, - "string.replace": 1, - "#x": 1, - "da": 1, - "": 1, - "lt": 55, - "#x27": 1, - "#x2F": 1, - "window.Modernizr": 1, - "Modernizr": 12, - "enableClasses": 3, - "docElement": 1, - "mod": 12, - "modElem": 2, - "mStyle": 2, - "modElem.style": 1, - "inputElem": 6, - "smile": 4, - "prefixes": 2, - "omPrefixes": 1, - "cssomPrefixes": 2, - "omPrefixes.split": 1, - "domPrefixes": 3, - "omPrefixes.toLowerCase": 1, - "ns": 1, - "inputs": 3, - "classes": 1, - "classes.slice": 1, - "featureName": 5, - "testing": 1, - "injectElementWithStyles": 9, - "rule": 5, - "testnames": 3, - "fakeBody": 4, - "node.id": 1, - "div.id": 1, - "fakeBody.appendChild": 1, - "//avoid": 1, - "crashing": 1, - "fakeBody.style.background": 1, - "docElement.appendChild": 2, - "fakeBody.parentNode.removeChild": 1, - "div.parentNode.removeChild": 1, - "testMediaQuery": 2, - "mq": 3, - "matchMedia": 3, - "window.matchMedia": 1, - "window.msMatchMedia": 1, - ".matches": 1, - "bool": 30, - "node.currentStyle": 2, - "isEventSupported": 5, - "TAGNAMES": 2, - "element.setAttribute": 3, - "element.removeAttribute": 2, - "_hasOwnProperty": 2, - "hasOwnProperty": 5, - "_hasOwnProperty.call": 2, - "object.constructor.prototype": 1, - "Function.prototype.bind": 2, - "slice.call": 3, - "F.prototype": 1, - "target.prototype": 1, - "target.apply": 2, - "args.concat": 2, - "setCss": 7, - "str": 4, - "mStyle.cssText": 1, - "setCssAll": 2, - "str1": 6, - "str2": 4, - "prefixes.join": 3, - "substr": 2, - "testProps": 3, - "prefixed": 7, - "testDOMProps": 2, - "item": 4, - "item.bind": 1, - "testPropsAll": 17, - "ucProp": 5, - "prop.charAt": 1, - "prop.substr": 1, - "cssomPrefixes.join": 1, - "elem.getContext": 2, - ".getContext": 8, - ".fillText": 1, - "window.WebGLRenderingContext": 1, - "window.DocumentTouch": 1, - "DocumentTouch": 1, - "node.offsetTop": 1, - "window.postMessage": 1, - "window.openDatabase": 1, - "history.pushState": 1, - "mStyle.backgroundColor": 3, - "mStyle.background": 1, - ".style.textShadow": 1, - "mStyle.opacity": 1, - "str3": 2, - "str1.length": 1, - "mStyle.backgroundImage": 1, - "docElement.style": 1, - "node.offsetLeft": 1, - "node.offsetHeight": 2, - "document.styleSheets": 1, - "document.styleSheets.length": 1, - "cssText": 4, - "style.cssRules": 3, - "style.cssText": 1, - "/src/i.test": 1, - "cssText.indexOf": 1, - "rule.split": 1, - "elem.canPlayType": 10, - "Boolean": 2, - "bool.ogg": 2, - "bool.h264": 1, - "bool.webm": 1, - "bool.mp3": 1, - "bool.wav": 1, - "bool.m4a": 1, - "localStorage.setItem": 1, - "localStorage.removeItem": 1, - "sessionStorage.setItem": 1, - "sessionStorage.removeItem": 1, - "window.Worker": 1, - "window.applicationCache": 1, - "document.createElementNS": 6, - "ns.svg": 4, - ".createSVGRect": 1, - "div.firstChild.namespaceURI": 1, - "/SVGAnimate/.test": 1, - "toString.call": 2, - "/SVGClipPath/.test": 1, - "webforms": 2, - "props.length": 2, - "attrs.list": 2, - "window.HTMLDataListElement": 1, - "inputElemType": 5, - "defaultView": 2, - "inputElem.setAttribute": 1, - "inputElem.type": 1, - "inputElem.value": 2, - "inputElem.style.cssText": 1, - "inputElem.style.WebkitAppearance": 1, - "document.defaultView": 1, - "defaultView.getComputedStyle": 2, - ".WebkitAppearance": 1, - "inputElem.offsetHeight": 1, - "docElement.removeChild": 1, - "inputElem.checkValidity": 2, - "feature": 12, - "feature.toLowerCase": 2, - "classes.push": 1, - "Modernizr.input": 1, - "Modernizr.addTest": 2, - "docElement.className": 2, - "chaining.": 1, - "window.html5": 2, - "reSkip": 1, - "saveClones": 1, - "fieldset": 1, - "h1": 5, - "h2": 5, - "h3": 3, - "h4": 3, - "h5": 1, - "h6": 1, - "img": 1, - "label": 2, - "li": 19, - "ol": 1, - "span": 1, - "strong": 1, - "tfoot": 1, - "th": 1, - "ul": 1, - "supportsHtml5Styles": 5, - "supportsUnknownElements": 3, - "//if": 2, - "implemented": 1, - "assume": 1, - "Styles": 1, - "Chrome": 2, - "additional": 1, - "solve": 1, - "node.hidden": 1, - ".display": 1, - "a.childNodes.length": 1, - "frag.cloneNode": 1, - "frag.createDocumentFragment": 1, - "frag.createElement": 2, - "addStyleSheet": 2, - "ownerDocument.createElement": 3, - "ownerDocument.getElementsByTagName": 1, - "ownerDocument.documentElement": 1, - "p.innerHTML": 1, - "parent.insertBefore": 1, - "p.lastChild": 1, - "parent.firstChild": 1, - "getElements": 2, - "html5.elements": 1, - "elements.split": 1, - "shivMethods": 2, - "docCreateElement": 5, - "docCreateFragment": 2, - "ownerDocument.createDocumentFragment": 2, - "//abort": 1, - "shiv": 1, - "html5.shivMethods": 1, - "saveClones.test": 1, - "node.canHaveChildren": 1, - "reSkip.test": 1, - "frag.appendChild": 1, - "html5": 3, - "shivDocument": 3, - "shived": 5, - "ownerDocument.documentShived": 2, - "html5.shivCSS": 1, - "options.elements": 1, - "options.shivCSS": 1, - "options.shivMethods": 1, - "Modernizr._version": 1, - "Modernizr._prefixes": 1, - "Modernizr._domPrefixes": 1, - "Modernizr._cssomPrefixes": 1, - "Modernizr.mq": 1, - "Modernizr.hasEvent": 1, - "Modernizr.testProp": 1, - "Modernizr.testAllProps": 1, - "Modernizr.testStyles": 1, - "Modernizr.prefixed": 1, - "docElement.className.replace": 1, - "js": 1, - "classes.join": 1, - "this.document": 1, - "window.angular": 1, - "PEG.parser": 1, - "quote": 3, - "result0": 264, - "result1": 81, - "result2": 77, - "parse_singleQuotedCharacter": 3, - "result1.push": 3, - "input.charCodeAt": 18, - "pos": 197, - "reportFailures": 64, - "matchFailed": 40, - "pos1": 63, - "chars": 1, - "chars.join": 1, - "pos0": 51, - "parse_simpleSingleQuotedCharacter": 2, - "parse_simpleEscapeSequence": 3, - "parse_zeroEscapeSequence": 3, - "parse_hexEscapeSequence": 3, - "parse_unicodeEscapeSequence": 3, - "parse_eolEscapeSequence": 3, - "pos2": 22, - "parse_eolChar": 6, - "input.length": 9, - "input.charAt": 21, - "char_": 9, - "parse_class": 1, - "result3": 35, - "result4": 12, - "result5": 4, - "parse_classCharacterRange": 3, - "parse_classCharacter": 5, - "result2.push": 1, - "parse___": 2, - "inverted": 4, - "partsConverted": 2, - "part.data": 1, - "rawText": 5, - "part.rawText": 1, - "ignoreCase": 1, - "begin": 1, - "begin.data.charCodeAt": 1, - "end.data.charCodeAt": 1, - "this.SyntaxError": 2, - "begin.rawText": 2, - "end.rawText": 2, - "begin.data": 1, - "end.data": 1, - "parse_bracketDelimitedCharacter": 2, - "quoteForRegexpClass": 1, - "parse_simpleBracketDelimitedCharacter": 2, - "parse_digit": 3, - "recognize": 1, - "input.substr": 9, - "parse_hexDigit": 7, - "String.fromCharCode": 4, - "parse_eol": 4, - "eol": 2, - "parse_letter": 1, - "parse_lowerCaseLetter": 2, - "parse_upperCaseLetter": 2, - "parse_whitespace": 3, - "parse_comment": 3, - "result0.push": 1, - "parse_singleLineComment": 2, - "parse_multiLineComment": 2, - "u2029": 2, - "x0B": 1, - "uFEFF": 1, - "u1680": 1, - "u180E": 1, - "u2000": 1, - "u200A": 1, - "u202F": 1, - "u205F": 1, - "u3000": 1, - "cleanupExpected": 2, - "expected": 12, - "expected.sort": 1, - "lastExpected": 3, - "cleanExpected": 2, - "expected.length": 4, - "cleanExpected.push": 1, - "computeErrorPosition": 2, - "line": 14, - "column": 8, - "seenCR": 5, - "rightmostFailuresPos": 2, - "parseFunctions": 1, - "startRule": 1, - "errorPosition": 1, - "rightmostFailuresExpected": 1, - "errorPosition.line": 1, - "errorPosition.column": 1, - "toSource": 1, - "this._source": 1, - "result.SyntaxError": 1, - "buildMessage": 2, - "expectedHumanized": 5, - "foundHumanized": 3, - "expected.slice": 1, - "this.expected": 1, - "this.found": 1, - "this.message": 3, - "this.line": 3, - "this.column": 1, - "result.SyntaxError.prototype": 1, - "Error.prototype": 1, - "steelseries": 10, - "n.charAt": 1, - "n.substring": 1, - "i.substring": 3, - "this.color": 1, - "ui": 31, - "/255": 1, - "t.getRed": 4, - "t.getGreen": 4, - "t.getBlue": 4, - "t.getAlpha": 4, - "i.getRed": 1, - "i.getGreen": 1, - "i.getBlue": 1, - "i.getAlpha": 1, - "*f": 2, - "w/r": 1, - "p/r": 1, - "s/r": 1, - "o/r": 1, - "e*u": 1, - ".toFixed": 3, - "l*u": 1, - "c*u": 1, - "h*u": 1, - "vr": 20, - "Math.floor": 26, - "Math.log10": 1, - "n/Math.pow": 1, - "": 1, - "beginPath": 12, - "moveTo": 10, - "lineTo": 22, - "quadraticCurveTo": 4, - "closePath": 8, - "stroke": 7, - "canvas": 22, - "width=": 17, - "height=": 17, - "ii": 29, - "getContext": 26, - "2d": 26, - "ft": 70, - "fillStyle=": 13, - "rect": 3, - "fill": 10, - "getImageData": 1, - "wt": 26, - "32": 1, - "62": 1, - "84": 1, - "94": 1, - "ar": 20, - "255": 3, - "max": 1, - "min": 2, - ".5": 7, - "u/": 3, - "/u": 3, - "f/": 1, - "vt": 50, - "n*6": 2, - "i*": 3, - "h*t": 1, - "*t": 3, - "f*255": 1, - "u*255": 1, - "r*255": 1, - "st": 59, - "n/255": 1, - "t/255": 1, - "i/255": 1, - "f/r": 1, - "/f": 3, - "<0?0:n>": 1, - "si": 23, - "ti": 39, - "Math.round": 7, - "/r": 1, - "u*r": 1, - "ni": 30, - "tt": 53, - "ei": 26, - "ot": 43, - "i.gaugeType": 6, - "steelseries.GaugeType.TYPE4": 2, - "i.size": 6, - "i.minValue": 10, - "i.maxValue": 10, - "i.niceScale": 10, - "i.threshold": 10, - "/2": 25, - "i.section": 8, - "i.area": 4, - "lu": 10, - "i.titleString": 10, - "au": 10, - "i.unitString": 10, - "hu": 11, - "i.frameDesign": 10, - "steelseries.FrameDesign.METAL": 7, - "wu": 9, - "i.frameVisible": 10, - "i.backgroundColor": 10, - "steelseries.BackgroundColor.DARK_GRAY": 7, - "i.backgroundVisible": 10, - "pt": 48, - "i.pointerType": 4, - "steelseries.PointerType.TYPE1": 3, - "i.pointerColor": 4, - "steelseries.ColorDef.RED": 7, - "ee": 2, - "i.knobType": 4, - "steelseries.KnobType.STANDARD_KNOB": 14, - "fi": 26, - "i.knobStyle": 4, - "steelseries.KnobStyle.SILVER": 4, - "i.lcdColor": 8, - "steelseries.LcdColor.STANDARD": 9, - "i.lcdVisible": 8, - "eu": 13, - "i.lcdDecimals": 8, - "ye": 2, - "i.digitalFont": 8, - "pe": 2, - "i.fractionalScaleDecimals": 4, - "i.ledColor": 10, - "steelseries.LedColor.RED_LED": 7, - "ru": 14, - "i.ledVisible": 10, - "vf": 5, - "i.thresholdVisible": 8, - "kr": 17, - "i.minMeasuredValueVisible": 8, - "dr": 16, - "i.maxMeasuredValueVisible": 8, - "i.foregroundType": 6, - "steelseries.ForegroundType.TYPE1": 5, - "af": 5, - "i.foregroundVisible": 10, - "oe": 2, - "i.labelNumberFormat": 10, - "steelseries.LabelNumberFormat.STANDARD": 5, - "yr": 17, - "i.playAlarm": 10, - "uf": 5, - "i.alarmSound": 10, - "fe": 2, - "i.customLayer": 4, - "le": 1, - "i.tickLabelOrientation": 4, - "steelseries.GaugeType.TYPE1": 4, - "steelseries.TickLabelOrientation.TANGENT": 2, - "steelseries.TickLabelOrientation.NORMAL": 2, - "wr": 18, - "i.trendVisible": 4, - "hr": 17, - "i.trendColors": 4, - "steelseries.LedColor.GREEN_LED": 2, - "steelseries.LedColor.CYAN_LED": 2, - "sr": 21, - "i.useOdometer": 2, - "i.odometerParams": 2, - "wf": 4, - "i.odometerUseValue": 2, - "ki": 21, - "r.createElement": 11, - "ki.setAttribute": 2, - "yf": 3, - "ri": 24, - "ht": 34, - "ef": 5, - "steelseries.TrendState.OFF": 4, - "lr": 19, - "f*.06": 1, - "f*.29": 19, - "er": 19, - "f*.36": 4, - "et": 45, - "gi": 26, - "rr": 21, - "*lt": 9, - "r.getElementById": 7, - "u.save": 7, - "u.clearRect": 5, - "u.canvas.width": 7, - "u.canvas.height": 7, - "s/2": 2, - "k/2": 1, - "pf": 4, - ".6*s": 1, - "ne": 2, - ".4*k": 1, - "pr": 16, - "s/10": 1, - "ae": 2, - "hf": 4, - "k*.13": 2, - "s*.4": 1, - "sf": 5, - "rf": 5, - "k*.57": 1, - "tf": 5, - "k*.61": 1, - "Math.PI/2": 40, - "ue": 1, - "Math.PI/180": 5, - "ff": 5, - "ir": 23, - "nr": 22, - "ai": 21, - "yt": 32, - "fr": 21, - "oi": 23, - "lf": 5, - "re": 2, - "ai/": 2, - "h/vt": 1, - "*vt": 4, - "Math.ceil": 63, - "b/vt": 1, - "vt/": 3, - "ot.type": 10, - "Math.PI": 13, - "at/yt": 4, - "*Math.PI": 10, - "*ue": 1, - "ci/2": 1, - "wi": 24, - "nf": 7, - "wi.getContext": 2, - "di": 22, - "ut": 59, - "di.getContext": 2, - "fu": 13, - "hi": 15, - "f*.093457": 10, - "uu": 13, - "hi.getContext": 6, - "gt": 32, - "nu": 11, - "gt.getContext": 3, - "iu": 14, - "f*.028037": 6, - "se": 1, - "iu.getContext": 1, - "gr": 12, - "he": 1, - "gr.getContext": 1, - "vi": 16, - "tu": 13, - "vi.getContext": 2, - "yi": 17, - "ou": 13, - "yi.getContext": 2, - "pi": 24, - "kt": 24, - "pi.getContext": 2, - "pu": 9, - "li.getContext": 6, - "gu": 9, - "du": 10, - "ku": 9, - "yu": 10, - "su": 12, - "tr.getContext": 1, - "kf": 3, - "u.textAlign": 2, - "u.strokeStyle": 2, - "ei.textColor": 2, - "u.fillStyle": 2, - "steelseries.LcdColor.STANDARD_GREEN": 4, - "u.shadowColor": 2, - "u.shadowOffsetX": 2, - "s*.007": 3, - "u.shadowOffsetY": 2, - "u.shadowBlur": 2, - "u.font": 2, - "u.fillText": 2, - "n.toFixed": 2, - "bi*.05": 1, - "hf*.5": 1, - "pr*.38": 1, - "bi*.9": 1, - "u.restore": 6, - "te": 2, - "n.save": 35, - "n.drawImage": 14, - "k*.037383": 11, - "s*.523364": 2, - "k*.130841": 1, - "s*.130841": 1, - "k*.514018": 2, - "s*.831775": 1, - "k*.831775": 1, - "s*.336448": 1, - "k*.803738": 2, - "s*.626168": 1, - "n.restore": 35, - "ie": 2, - "t.width": 2, - "f*.046728": 1, - "t.height": 2, - "t.width*.9": 4, - "t.getContext": 2, - "n.createLinearGradient": 17, - ".1": 18, - "t.height*.9": 6, - "i.addColorStop": 27, - ".3": 8, - ".59": 4, - "n.fillStyle": 36, - "n.beginPath": 39, - "n.moveTo": 37, - "t.width*.5": 4, - "n.lineTo": 33, - "t.width*.1": 2, - "n.closePath": 34, - "n.fill": 17, - "n.strokeStyle": 27, - "n.stroke": 31, - "vu": 10, - "": 1, - "": 1, - "n.lineWidth": 30, - "s*.035": 2, - "at/yt*t": 1, - "at/yt*h": 1, - "yt/at": 1, - "n.translate": 93, - "n.rotate": 53, - "n.arc": 6, - "s*.365": 2, - "n.lineWidth/2": 2, - "df": 3, - "bt.labelColor.setAlpha": 1, - "n.textAlign": 12, - "n.textBaseline": 10, - "s*.04": 1, - "n.font": 34, - "bt.labelColor.getRgbaColor": 2, - "lt*fr": 1, - "s*.38": 2, - "s*.35": 1, - "s*.355": 1, - "s*.36": 1, - "s*.3": 1, - "s*.1": 1, - "oi/2": 2, - "b.toFixed": 1, - "c.toFixed": 2, - "le.type": 1, - "t.format": 7, - "n.fillText": 54, - "e.toFixed": 2, - "e.toPrecision": 1, - "n.frame": 22, - "n.background": 22, - "n.led": 20, - "n.pointer": 10, - "n.foreground": 22, - "n.trend": 4, - "n.odo": 2, - "rt": 45, - "uu.drawImage": 1, - "nu.drawImage": 3, - "se.drawImage": 1, - "steelseries.ColorDef.BLUE.dark.getRgbaColor": 6, - "he.drawImage": 1, - "steelseries.ColorDef.RED.medium.getRgbaColor": 6, - "ii.length": 2, - ".start": 12, - ".stop": 11, - ".color": 13, - "ui.length": 2, - "ut.save": 1, - "ut.translate": 3, - "ut.rotate": 1, - "ut.drawImage": 2, - "s*.475": 1, - "ut.restore": 1, - "steelseries.Odometer": 1, - "_context": 1, - "f*.075": 1, - "decimals": 1, - "wt.decimals": 1, - "wt.digits": 2, - "valueForeColor": 1, - "wt.valueForeColor": 1, - "valueBackColor": 1, - "wt.valueBackColor": 1, - "decimalForeColor": 1, - "wt.decimalForeColor": 1, - "decimalBackColor": 1, - "wt.decimalBackColor": 1, - "font": 1, - "wt.font": 1, - "tr.width": 1, - "nt": 75, - "bt.labelColor": 2, - "pt.type": 6, - "steelseries.TrendState.UP": 2, - "steelseries.TrendState.STEADY": 2, - "steelseries.TrendState.DOWN": 2, - "dt": 30, - "wi.width": 1, - "wi.height": 1, - "di.width": 1, - "di.height": 1, - "hi.width": 3, - "hi.height": 3, - "gt.width": 2, - "gt.height": 1, - "vi.width": 1, - "vi.height": 1, - "yi.width": 1, - "yi.height": 1, - "pi.width": 1, - "pi.height": 1, - "li.width": 3, - "li.height": 3, - "gf": 2, - "yf.repaint": 1, - "ur": 20, - "e3": 5, - "this.setValue": 7, - "": 5, - "ki.pause": 1, - "ki.play": 1, - "this.repaint": 126, - "this.getValue": 7, - "this.setOdoValue": 1, - "this.getOdoValue": 1, - "this.setValueAnimated": 7, - "t.playing": 1, - "t.stop": 1, - "Tween": 11, - "Tween.regularEaseInOut": 6, - "t.onMotionChanged": 1, - "n.target._pos": 7, - "": 1, - "i.repaint": 1, - "t.start": 1, - "this.resetMinMeasuredValue": 4, - "this.resetMaxMeasuredValue": 4, - "this.setMinMeasuredValueVisible": 4, - "this.setMaxMeasuredValueVisible": 4, - "this.setMaxMeasuredValue": 3, - "this.setMinMeasuredValue": 3, - "this.setTitleString": 4, - "this.setUnitString": 4, - "this.setMinValue": 4, - "this.getMinValue": 3, - "this.setMaxValue": 3, - "this.getMaxValue": 4, - "this.setThreshold": 4, - "this.setArea": 1, - "foreground": 30, - "this.setSection": 4, - "this.setThresholdVisible": 4, - "this.setLcdDecimals": 3, - "this.setFrameDesign": 7, - "this.setBackgroundColor": 7, - "pointer": 28, - "this.setForegroundType": 5, - "this.setPointerType": 3, - "this.setPointerColor": 4, - "this.setLedColor": 5, - "led": 18, - "this.setLcdColor": 5, - "this.setTrend": 2, - "this.setTrendVisible": 2, - "trend": 2, - "odo": 1, - "u.drawImage": 22, - "cu.setValue": 1, - "of.state": 1, - "u.translate": 8, - "u.rotate": 4, - "u.canvas.width*.4865": 2, - "u.canvas.height*.105": 2, - "s*.006": 1, - "kt.clearRect": 1, - "kt.save": 1, - "kt.translate": 2, - "kt.rotate": 1, - "kt.drawImage": 1, - "kt.restore": 1, - "i.useSectionColors": 4, - "i.valueColor": 6, - "i.valueGradient": 4, - "i.useValueGradient": 4, - "yi.setAttribute": 2, - "e/2": 2, - "ut/2": 4, - "e/10": 3, - "ut*.13": 1, - "e*.4": 1, - "or/2": 1, - "e*.116822": 3, - "e*.485981": 3, - "s*.093457": 5, - "e*.53": 1, - "ut*.61": 1, - "s*.06": 1, - "s*.57": 1, - "dt.type": 4, - "l/Math.PI*180": 4, - "l/et": 8, - "Math.PI/3": 1, - "ft/2": 2, - "Math.PI/": 1, - "ai.getContext": 2, - "s*.060747": 2, - "s*.023364": 2, - "ri.getContext": 6, - "yt.getContext": 5, - "si.getContext": 4, - "ci/": 2, - "f/ht": 1, - "*ht": 8, - "h/ht": 1, - "ht/": 2, - "*kt": 5, - "angle": 1, - "*st": 1, - "n.value": 4, - "tu.drawImage": 1, - "gr.drawImage": 3, - "at.getImageData": 1, - "at.drawImage": 1, - "bt.length": 4, - "ii.push": 1, - "Math.abs": 19, - "ai.width": 1, - "ai.height": 1, - "ri.width": 3, - "ri.height": 3, - "yt.width": 2, - "yt.height": 2, - "si.width": 2, - "si.height": 2, - "s*.085": 1, - "e*.35514": 2, - ".107476*ut": 1, - ".897195*ut": 1, - "t.addColorStop": 6, - ".22": 1, - ".76": 1, - "s*.075": 1, - ".112149*ut": 1, - ".892523*ut": 1, - "r.addColorStop": 6, - "e*.060747": 2, - "e*.023364": 2, - "n.createRadialGradient": 4, - ".030373*e": 1, - "u.addColorStop": 14, - "i*kt": 1, - "n.rect": 4, - "n.canvas.width": 3, - "n.canvas.height": 3, - "n.canvas.width/2": 6, - "n.canvas.height/2": 4, - "u.createRadialGradient": 1, - "t.light.getRgbaColor": 2, - "t.dark.getRgbaColor": 2, - "ni.textColor": 2, - "e*.007": 5, - "oi*.05": 1, - "or*.5": 1, - "cr*.38": 1, - "oi*.9": 1, - "ei.labelColor.setAlpha": 1, - "e*.04": 1, - "ei.labelColor.getRgbaColor": 2, - "st*di": 1, - "e*.28": 1, - "e*.1": 1, - "e*.0375": 1, - "h.toFixed": 3, - "df.type": 1, - "u.toFixed": 2, - "u.toPrecision": 1, - "kf.repaint": 1, - "": 3, - "yi.pause": 1, - "yi.play": 1, - "ti.playing": 1, - "ti.stop": 1, - "ti.onMotionChanged": 1, - "t.repaint": 4, - "ti.start": 1, - "this.setValueColor": 3, - "this.setSectionActive": 2, - "this.setGradient": 2, - "this.setGradientActive": 2, - "useGradient": 2, - "n/lt*": 1, - "vi.getEnd": 1, - "vi.getStart": 1, - "s/c": 1, - "vi.getColorAt": 1, - ".getRgbaColor": 3, - "": 1, - "e.medium.getHexColor": 1, - "i.medium.getHexColor": 1, - "n*kt": 1, - "pu.state": 1, - "i.orientation": 2, - "steelseries.Orientation.NORTH": 2, - "hi.setAttribute": 2, - "steelseries.GaugeType.TYPE5": 1, - "kt/at": 2, - "f.clearRect": 2, - "f.canvas.width": 3, - "f.canvas.height": 3, - "h/2": 1, - "k*.733644": 1, - ".455*h": 1, - ".51*k": 1, - "bi/": 2, - "l/ot": 1, - "*ot": 2, - "d/ot": 1, - "ot/": 1, - "ui.getContext": 4, - "u*.093457": 10, - "ii.getContext": 5, - "st.getContext": 2, - "u*.028037": 6, - "hr.getContext": 1, - "er.getContext": 1, - "fi.getContext": 4, - "kr.type": 1, - "ft.type": 1, - "h*.44": 3, - "k*.8": 1, - "k*.16": 1, - "h*.2": 2, - "k*.446666": 2, - "h*.8": 1, - "u*.046728": 1, - "h*.035": 1, - "kt/at*t": 1, - "kt/at*l": 1, - "at/kt": 1, - "h*.365": 2, - "it.labelColor.getRgbaColor": 4, - "vertical": 1, - ".046728*h": 1, - "n.measureText": 2, - ".width": 2, - "k*.4": 1, - "h*.3": 1, - "k*.47": 1, - "it.labelColor.setAlpha": 1, - "steelseries.Orientation.WEST": 6, - "h*.04": 1, - "ht*yi": 1, - "h*.41": 1, - "h*.415": 1, - "h*.42": 1, - "h*.48": 1, - "h*.0375": 1, - "d.toFixed": 1, - "f.toFixed": 1, - "i.toFixed": 2, - "i.toPrecision": 1, - "u/2": 5, - "cr.drawImage": 3, - "ar.drawImage": 1, - "or.drawImage": 1, - "or.restore": 1, - "rr.drawImage": 1, - "rr.restore": 1, - "gt.length": 2, - "p.save": 2, - "p.translate": 8, - "p.rotate": 4, - "p.restore": 3, - "ni.length": 2, - "p.drawImage": 1, - "h*.475": 1, - "k*.32": 1, - "h*1.17": 2, - "it.labelColor": 2, - "ut.type": 6, - "ui.width": 2, - "ui.height": 2, - "ii.width": 2, - "ii.height": 2, - "st.width": 1, - "st.height": 1, - "fi.width": 2, - "fi.height": 2, - "wu.repaint": 1, - "": 2, - "hi.pause": 1, - "hi.play": 1, - "dt.playing": 2, - "dt.stop": 2, - "dt.onMotionChanged": 2, - "": 1, - "dt.start": 2, - "f.save": 5, - "f.drawImage": 9, - "f.translate": 10, - "f.rotate": 5, - "f.canvas.width*.4865": 2, - "f.canvas.height*.27": 2, - "f.restore": 5, - "h*.006": 1, - "h*1.17/2": 1, - "et.clearRect": 1, - "et.save": 1, - "et.translate": 2, - "et.rotate": 1, - "et.drawImage": 1, - "et.restore": 1, - "i.width": 6, - "i.height": 6, - "fi.setAttribute": 2, - "l.type": 26, - "y.clearRect": 2, - "y.canvas.width": 3, - "y.canvas.height": 3, - "*.05": 4, - "f/2": 13, - "it/2": 2, - ".053": 1, - ".038": 1, - "*u": 1, - "u/22": 2, - ".89*f": 2, - "u/10": 2, - "ei/": 1, - "e/ut": 1, - "*ut": 2, - "s/ut": 1, - "ut/": 1, - "kt.getContext": 2, - "rt.getContext": 2, - "dt.getContext": 1, - "ni.getContext": 4, - "lt.textColor": 2, - "n.shadowColor": 2, - "n.shadowOffsetX": 4, - "u*.003": 2, - "n.shadowOffsetY": 4, - "n.shadowBlur": 4, - "u*.004": 1, - "u*.007": 2, - "u*.009": 1, - "f*.571428": 8, - "u*.88": 2, - "u*.055": 2, - "f*.7": 2, - "f*.695": 4, - "f*.18": 4, - "u*.22": 3, - "u*.15": 2, - "t.toFixed": 2, - "i.getContext": 2, - "t.save": 2, - "t.createLinearGradient": 2, - "i.height*.9": 6, - "t.fillStyle": 2, - "t.beginPath": 4, - "t.moveTo": 4, - "i.height*.5": 2, - "t.lineTo": 8, - "i.width*.9": 6, - "t.closePath": 4, - "i.width*.5": 2, - "t.fill": 2, - "t.strokeStyle": 2, - "t.stroke": 2, - "t.restore": 2, - "w.labelColor.setAlpha": 1, - "f*.1": 5, - "w.labelColor.getRgbaColor": 2, - ".34*f": 2, - ".36*f": 6, - ".33*f": 2, - ".32*f": 2, - "u*.12864": 3, - "u*.856796": 1, - "u*.7475": 1, - "c/": 2, - ".65*u": 1, - ".63*u": 3, - ".66*u": 1, - ".67*u": 1, - "f*.142857": 4, - "f*.871012": 2, - "f*.19857": 1, - "f*.82": 1, - "v/": 1, - "tickCounter": 4, - "currentPos": 20, - "tickCounter*a": 2, - "r.toFixed": 8, - "f*.28": 6, - "r.toPrecision": 4, - "u*.73": 3, - "ui/2": 1, - "vi.drawImage": 2, - "yi.drawImage": 2, - "hr.drawImage": 2, - "k.save": 1, - ".856796": 2, - ".7475": 2, - ".12864": 2, - "u*i": 1, - "u*r*": 1, - "bt/": 1, - "k.translate": 2, - "f*.365": 2, - "nt/2": 2, - ".871012": 3, - ".82": 2, - ".142857": 5, - ".19857": 6, - "f*r*bt/": 1, - "f*": 5, - "u*.58": 1, - "k.drawImage": 3, - "k.restore": 1, - "kt.width": 1, - "b*.093457": 2, - "kt.height": 1, - "d*.093457": 2, - "rt.width": 1, - "rt.height": 1, - "ni.width": 2, - "ni.height": 2, - "hu.repaint": 1, - "w.labelColor": 1, - "i*.12864": 2, - "i*.856796": 2, - "i*.7475": 1, - "t*.871012": 1, - "t*.142857": 8, - "t*.82": 1, - "t*.19857": 1, - "steelseries.BackgroundColor.CARBON": 2, - "steelseries.BackgroundColor.PUNCHED_SHEET": 2, - "steelseries.BackgroundColor.STAINLESS": 2, - "steelseries.BackgroundColor.BRUSHED_STAINLESS": 2, - "steelseries.BackgroundColor.TURNED": 2, - "r.setAlpha": 8, - ".05": 2, - "p.addColorStop": 4, - "r.getRgbaColor": 8, - ".15": 2, - ".48": 7, - ".49": 4, - "n.fillRect": 16, - "t*.435714": 4, - "i*.435714": 4, - "i*.142857": 1, - "b.addColorStop": 4, - ".69": 1, - ".7": 1, - ".4": 2, - "t*.007142": 4, - "t*.571428": 2, - "i*.007142": 4, - "i*.571428": 2, - "t*.45": 4, - "t*.114285": 1, - "t/2": 1, - "i*.0486/2": 1, - "i*.053": 1, - "i*.45": 4, - "i*.114285": 1, - "i/2": 1, - "t*.025": 1, - "t*.053": 1, - "ut.addColorStop": 2, - "wt.medium.getRgbaColor": 3, - "wt.light.getRgbaColor": 2, - "i*.05": 2, - "t*.05": 2, - "ot.addColorStop": 2, - ".98": 1, - "Math.PI*.5": 2, - "f*.05": 2, - ".049*t": 8, - ".825*t": 9, - "n.bezierCurveTo": 42, - ".7975*t": 2, - ".0264*t": 4, - ".775*t": 3, - ".0013*t": 12, - ".85*t": 2, - ".8725*t": 3, - ".0365*t": 9, - ".8075*t": 4, - ".7925*t": 3, - ".0214*t": 13, - ".7875*t": 4, - ".7825*t": 5, - ".0189*t": 4, - ".785*t": 1, - ".8175*t": 2, - ".815*t": 1, - ".8125*t": 2, - ".8*t": 2, - ".0377*t": 2, - ".86*t": 4, - ".0415*t": 2, - ".845*t": 1, - ".0465*t": 2, - ".805*t": 2, - ".0113*t": 10, - ".0163*t": 7, - ".8025*t": 1, - ".8225*t": 3, - ".8425*t": 1, - ".03*t": 2, - ".115*t": 5, - ".1075*t": 2, - ".1025*t": 8, - ".0038*t": 2, - ".76*t": 4, - ".7675*t": 2, - ".7725*t": 6, - ".34": 1, - ".0516*t": 7, - ".8525*t": 2, - ".0289*t": 8, - ".875*t": 3, - ".044*t": 1, - ".0314*t": 5, - ".12*t": 4, - ".0875*t": 3, - ".79*t": 1, - "": 5, - "fi.pause": 1, - "fi.play": 1, - "yt.playing": 1, - "yt.stop": 1, - "yt.onMotionChanged": 1, - "t.setValue": 1, - "yt.start": 1, - "mminMeasuredValue": 1, - "": 1, - "setMaxValue=": 1, - "y.drawImage": 6, - "u*n": 2, - "u*i*": 2, - "at/": 1, - "f*.34": 3, - "gt.height/2": 2, - "f*i*at/": 1, - "u*.65": 2, - "ft/": 1, - "dt.width": 1, - "dt.height/2": 2, - ".8": 1, - ".14857": 1, - "f*i*ft/": 1, - "y.save": 1, - "y.restore": 1, - "oi.setAttribute": 2, - "v.clearRect": 2, - "v.canvas.width": 4, - "v.canvas.height": 4, - ".053*e": 1, - "e/22": 2, - "e/1.95": 1, - "u/vt": 1, - "s/vt": 1, - "g.width": 4, - "f*.121428": 2, - "g.height": 4, - "e*.012135": 2, - "f*.012135": 2, - "e*.121428": 2, - "g.getContext": 2, - "d.width": 4, - "d.height": 4, - "d.getContext": 2, - "pt.getContext": 2, - "ci.getContext": 1, - "kt.textColor": 2, - "f*.007": 2, - "f*.009": 1, - "e*.009": 1, - "e*.88": 2, - "e*.055": 2, - "e*.22": 3, - "e*.15": 2, - "k.labelColor.setAlpha": 1, - "k.labelColor.getRgbaColor": 5, - "e*.12864": 3, - "e*.856796": 3, - ".65*e": 1, - ".63*e": 3, - ".66*e": 1, - ".67*e": 1, - "g/": 1, - "tickCounter*h": 2, - "e*.73": 3, - "ti/2": 1, - "n.bargraphled": 4, - "nr.drawImage": 2, - "tr.drawImage": 2, - "nt.save": 1, - "e*.728155*": 1, - "st/": 1, - "nt.translate": 2, - "rt/2": 2, - "f*.856796": 2, - "f*.12864": 2, - "*st/": 1, - "e*.58": 1, - "nt.drawImage": 3, - "nt.restore": 1, - "f*.012135/2": 1, - "ft.push": 1, - "*c": 2, - "y*.121428": 2, - "w*.012135": 2, - "y*.012135": 2, - "w*.121428": 2, - "y*.093457": 2, - "w*.093457": 2, - "pt.width": 1, - "pt.height": 1, - "ku.repaint": 1, - "k.labelColor": 1, - "r*": 2, - "r*1.014": 5, - "t*.856796": 1, - "t*.12864": 1, - "t*.13": 3, - "r*1.035": 4, - "f.setAlpha": 8, - ".047058": 2, - "rt.addColorStop": 4, - "f.getRgbaColor": 8, - ".145098": 1, - ".149019": 1, - "t*.15": 1, - "i*.152857": 1, - ".298039": 1, - "it.addColorStop": 4, - ".686274": 1, - ".698039": 1, - "i*.851941": 1, - "t*.121428": 1, - "i*.012135": 1, - "t*.012135": 1, - "i*.121428": 1, - "*r": 4, - "o/r*": 1, - "yt.getEnd": 2, - "yt.getStart": 2, - "lt/ct": 2, - "yt.getColorAt": 2, - "": 1, - "st.medium.getHexColor": 2, - "a.medium.getHexColor": 2, - "b/2": 2, - "e/r*": 1, - "": 1, - "v.createRadialGradient": 2, - "": 5, - "oi.pause": 1, - "oi.play": 1, - "": 1, - "bargraphled": 3, - "v.drawImage": 2, - "": 1, - "856796": 4, - "728155": 2, - "34": 2, - "12864": 2, - "142857": 2, - "65": 2, - "drawImage": 12, - "save": 27, - "restore": 14, - "repaint": 23, - "dr=": 1, - "128": 2, - "48": 1, - "w=": 4, - "lcdColor": 4, - "LcdColor": 4, - "STANDARD": 3, - "pt=": 5, - "lcdDecimals": 4, - "lt=": 4, - "unitString": 4, - "at=": 3, - "unitStringVisible": 4, - "ht=": 6, - "digitalFont": 4, - "bt=": 3, - "valuesNumeric": 4, - "ct=": 5, - "autoScroll": 2, - "section": 2, - "wt=": 3, - "getElementById": 4, - "clearRect": 8, - "v=": 5, - "floor": 13, - "ot=": 4, - "sans": 12, - "serif": 13, - "it=": 7, - "nt=": 5, - "et=": 6, - "kt=": 4, - "textAlign=": 7, - "strokeStyle=": 8, - "clip": 1, - "font=": 28, - "measureText": 4, - "toFixed": 3, - "fillText": 23, - "38": 5, - "o*.2": 1, - "<=o-4&&(e=0,c=!1),u.fillText(n,o-2-e,h*.5+v*.38)),u.restore()},dt=function(n,i,r,u){var>": 1, - "rt=": 3, - "095": 1, - "createLinearGradient": 6, - "addColorStop": 25, - "4c4c4c": 1, - "08": 1, - "666666": 2, - "92": 1, - "e6e6e6": 1, - "gradientStartColor": 1, - "tt=": 3, - "gradientFraction1Color": 1, - "gradientFraction2Color": 1, - "gradientFraction3Color": 1, - "gradientStopColor": 1, - "yt=": 4, - "31": 26, - "ut=": 6, - "rgb": 6, - "03": 1, - "49": 1, - "57": 1, - "83": 1, - "wt.repaint": 1, - "resetBuffers": 1, - "this.setScrolling": 1, - "w.textColor": 1, - "": 1, - "<=f[n].stop){t=et[n],i=ut[n];break}u.drawImage(t,0,0),kt(a,i)},this.repaint(),this},wr=function(n,t){t=t||{};var>": 1, - "64": 1, - "875": 2, - "textBaseline=": 4, - "textColor": 2, - "STANDARD_GREEN": 1, - "shadowColor=": 1, - "shadowOffsetX=": 1, - "05": 2, - "shadowOffsetY=": 1, - "shadowBlur=": 1, - "06": 1, - "46": 1, - "8": 2, - "setValue=": 2, - "setLcdColor=": 2, - "repaint=": 2, - "br=": 1, - "200": 2, - "st=": 3, - "decimalsVisible": 2, - "gt=": 1, - "textOrientationFixed": 2, - "frameDesign": 4, - "FrameDesign": 2, - "METAL": 2, - "frameVisible": 4, - "backgroundColor": 2, - "BackgroundColor": 1, - "DARK_GRAY": 1, - "vt=": 2, - "backgroundVisible": 2, - "pointerColor": 4, - "ColorDef": 2, - "RED": 1, - "foregroundType": 4, - "ForegroundType": 2, - "TYPE1": 2, - "foregroundVisible": 4, - "180": 26, - "ni=": 1, - "labelColor": 6, - "getRgbaColor": 21, - "translate": 38, - "360": 15, - "p.labelColor.getRgbaColor": 4, - "f*.38": 7, - "f*.37": 3, - "": 1, - "rotate": 31, - "u00b0": 8, - "41": 3, - "45": 5, - "25": 9, - "085": 4, - "100": 4, - "90": 3, - "21": 2, - "u221e": 2, - "135": 1, - "225": 1, - "75": 3, - "270": 1, - "315": 1, - "ti=": 2, - "200934": 2, - "434579": 4, - "163551": 5, - "560747": 4, - "lineWidth=": 6, - "lineCap=": 5, - "lineJoin=": 5, - "471962": 4, - "205607": 1, - "523364": 5, - "799065": 2, - "836448": 5, - "794392": 1, - "ii=": 2, - "350467": 5, - "130841": 1, - "476635": 2, - "bezierCurveTo": 6, - "490654": 3, - "345794": 3, - "509345": 1, - "154205": 1, - "350466": 1, - "dark": 2, - "light": 5, - "setAlpha": 8, - "70588": 4, - "59": 3, - "dt=": 2, - "285046": 5, - "514018": 6, - "21028": 1, - "481308": 4, - "280373": 3, - "495327": 2, - "504672": 2, - "224299": 1, - "289719": 1, - "714953": 5, - "789719": 1, - "719626": 3, - "7757": 1, - "71028": 1, - "ft=": 3, - "*10": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "<-90&&e>": 2, - "<-180&&e>": 2, - "<-270&&e>": 2, - "d.playing": 2, - "d.stop": 2, - "d.onMotionChanged": 2, - "d.start": 2, - "s.save": 4, - "s.clearRect": 3, - "s.canvas.width": 4, - "s.canvas.height": 4, - "s.drawImage": 8, - "e*kt": 1, - "s.translate": 6, - "s.rotate": 3, - "s.fillStyle": 1, - "s.textAlign": 1, - "s.textBaseline": 1, - "s.restore": 6, - "s.font": 2, - "f*.15": 2, - "s.fillText": 2, - "f*.35": 26, - "f*.2": 1, - "k*Math.PI/180": 1, - "u.size": 4, - "u.frameDesign": 4, - "u.frameVisible": 4, - "u.backgroundColor": 4, - "u.backgroundVisible": 4, - "u.pointerType": 2, - "steelseries.PointerType.TYPE2": 1, - "u.pointerColor": 4, - "u.knobType": 4, - "u.knobStyle": 4, - "u.foregroundType": 4, - "u.foregroundVisible": 4, - "u.pointSymbols": 4, - "u.customLayer": 4, - "u.degreeScale": 4, - "u.roseVisible": 4, - "ft.getContext": 2, - "ut.getContext": 2, - "it.getContext": 2, - "ot.getContext": 3, - "et.getContext": 2, - "tt.labelColor.getRgbaColor": 2, - ".08*f": 1, - "f*.033": 1, - "st*10": 2, - ".substring": 2, - ".12*f": 2, - ".06*f": 2, - "tt.symbolColor.getRgbaColor": 1, - "st*2.5": 1, - "bt.type": 1, - "f*.53271": 6, - "e*.453271": 5, - "f*.5": 17, - "e*.149532": 8, - "f*.467289": 6, - "f*.453271": 2, - "e*.462616": 2, - "f*.443925": 9, - "e*.481308": 2, - "e*.5": 10, - "f*.556074": 9, - "f*.546728": 2, - ".471962*f": 5, - ".528036*f": 5, - "o.addColorStop": 4, - "h.light.getRgbaColor": 6, - ".46": 3, - ".47": 3, - "h.medium.getRgbaColor": 6, - "h.dark.getRgbaColor": 3, - "n.lineCap": 5, - "n.lineJoin": 5, - "e*.546728": 5, - "e*.850467": 4, - "e*.537383": 2, - "e*.518691": 2, - "s.addColorStop": 4, - "e*.490654": 2, - "e*.53271": 2, - "e*.556074": 3, - "e*.495327": 4, - "f*.528037": 2, - "f*.471962": 2, - "e*.504672": 4, - ".480099": 1, - "f*.006": 2, - "ft.width": 1, - "ft.height": 1, - "ut.width": 1, - "ut.height": 1, - "it.width": 1, - "it.height": 1, - "ot.width": 1, - "ot.height": 1, - "et.width": 1, - "et.height": 1, - "Tween.elasticEaseOut": 1, - "r.repaint": 1, - "this.setPointSymbols": 1, - "p*st": 1, - "b.clearRect": 1, - "b.save": 1, - "b.translate": 2, - "b.rotate": 1, - "b.drawImage": 1, - "b.restore": 1, - "u.pointerTypeLatest": 2, - "u.pointerTypeAverage": 2, - "steelseries.PointerType.TYPE8": 1, - "u.pointerColorAverage": 2, - "steelseries.ColorDef.BLUE": 1, - "u.lcdColor": 2, - "u.lcdVisible": 2, - "u.digitalFont": 2, - "u.section": 2, - "u.area": 2, - "u.lcdTitleStrings": 2, - "u.titleString": 2, - "u.useColorLabels": 2, - "this.valueLatest": 1, - "this.valueAverage": 1, - "Math.PI*2": 1, - "e.save": 2, - "e.clearRect": 1, - "e.canvas.width": 2, - "e.canvas.height": 2, - "f/10": 1, - "f*.3": 4, - "s*.12": 1, - "s*.32": 1, - "s*.565": 1, - "bt.getContext": 1, - "at.getContext": 1, - "vt.getContext": 1, - "lt.getContext": 1, - "wt.getContext": 1, - "e.textAlign": 1, - "e.strokeStyle": 1, - "ht.textColor": 2, - "e.fillStyle": 1, - "<0&&(n+=360),n=\"00\"+Math.round(n),n=n.substring(n.length,n.length-3),(ht===steelseries.LcdColor.STANDARD||ht===steelseries.LcdColor.STANDARD_GREEN)&&(e.shadowColor=\"gray\",e.shadowOffsetX=f*.007,e.shadowOffsetY=f*.007,e.shadowBlur=f*.007),e.font=pr?gr:br,e.fillText(n+\"\\u00b0\",f/2+gt*.05,(t?or:cr)+er*.5+ui*.38,gt*.9),e.restore()},wi=function(n,t,i,r,u){n.save(),n.strokeStyle=r,n.fillStyle=r,n.lineWidth=f*.035;var>": 1, - "arc": 2, - "365": 2, - "lineWidth": 1, - "lr=": 1, - "35": 1, - "355": 1, - "36": 2, - "bold": 1, - "04": 2, - "ct*5": 1, - "k.symbolColor.getRgbaColor": 1, - "ct*2.5": 1, - "ti.length": 1, - "kt.medium.getRgbaColor": 1, - ".04*f": 1, - "s*.29": 1, - "ii.medium.getRgbaColor": 1, - "s*.71": 1, - "rr.length": 1, - ".0467*f": 1, - "s*.5": 1, - "et.length": 2, - "ft.length": 2, - "": 1, - "ci=": 1, - "li=": 1, - "ai=": 1, - "ki=": 1, - "yi=": 1, - "setValueLatest=": 1, - "getValueLatest=": 1, - "setValueAverage=": 1, - "getValueAverage=": 1, - "setValueAnimatedLatest=": 1, - "playing": 2, - "regularEaseInOut": 2, - "onMotionChanged=": 2, - "_pos": 2, - "onMotionFinished=": 2, - "setValueAnimatedAverage=": 1, - "setArea=": 1, - "setSection=": 1, - "setFrameDesign=": 1, - "pi=": 1, - "setBackgroundColor=": 1, - "setForegroundType=": 1, - "si=": 1, - "setPointerColor=": 1, - "setPointerColorAverage=": 1, - "setPointerType=": 1, - "setPointerTypeAverage=": 1, - "ri=": 1, - "setPointSymbols=": 1, - "setLcdTitleStrings=": 1, - "fi=": 1, - "006": 1, - "ei=": 1, - "ru=": 1, - "WHITE": 1, - "037383": 1, - "056074": 1, - "7fd5f0": 2, - "3c4439": 2, - "72": 1, - "KEYWORDS": 2, - "array_to_hash": 11, - "RESERVED_WORDS": 2, - "KEYWORDS_BEFORE_EXPRESSION": 2, - "KEYWORDS_ATOM": 2, - "OPERATOR_CHARS": 1, - "RE_HEX_NUMBER": 1, - "RE_OCT_NUMBER": 1, - "RE_DEC_NUMBER": 1, - "OPERATORS": 2, - "WHITESPACE_CHARS": 2, - "PUNC_BEFORE_EXPRESSION": 2, - "PUNC_CHARS": 1, - "REGEXP_MODIFIERS": 1, - "UNICODE": 1, - "non_spacing_mark": 1, - "space_combining_mark": 1, - "connector_punctuation": 1, - "is_letter": 3, - "UNICODE.letter.test": 1, - "is_digit": 3, - "ch.charCodeAt": 1, - "//XXX": 1, - "out": 1, - "means": 1, - "is_alphanumeric_char": 3, - "is_unicode_combining_mark": 2, - "UNICODE.non_spacing_mark.test": 1, - "UNICODE.space_combining_mark.test": 1, - "is_unicode_connector_punctuation": 2, - "UNICODE.connector_punctuation.test": 1, - "is_identifier_start": 2, - "is_identifier_char": 1, - "zero": 2, - "joiner": 2, - "": 1, - "": 1, - "my": 1, - "ECMA": 1, - "PDF": 1, - "parse_js_number": 2, - "RE_HEX_NUMBER.test": 1, - "num.substr": 2, - "RE_OCT_NUMBER.test": 1, - "RE_DEC_NUMBER.test": 1, - "JS_Parse_Error": 2, - "message": 5, - "this.col": 2, - "ex": 3, - "ex.name": 1, - "this.stack": 2, - "ex.stack": 1, - "JS_Parse_Error.prototype.toString": 1, - "js_error": 2, - "is_token": 1, - "token": 5, - "token.type": 1, - "token.value": 1, - "EX_EOF": 3, - "tokenizer": 2, - "TEXT": 1, - "TEXT.replace": 1, - "uFEFF/": 1, - "tokpos": 1, - "tokline": 1, - "tokcol": 1, - "newline_before": 1, - "regex_allowed": 1, - "comments_before": 1, - "peek": 5, - "S.text.charAt": 2, - "S.pos": 4, - "signal_eof": 4, - "S.newline_before": 3, - "S.line": 2, - "S.col": 3, - "eof": 6, - "S.peek": 1, - "what": 2, - "S.text.indexOf": 1, - "start_token": 1, - "S.tokline": 3, - "S.tokcol": 3, - "S.tokpos": 3, - "is_comment": 2, - "S.regex_allowed": 1, - "HOP": 5, - "UNARY_POSTFIX": 1, - "nlb": 1, - "ret.comments_before": 1, - "S.comments_before": 2, - "skip_whitespace": 1, - "read_while": 2, - "pred": 2, - "parse_error": 3, - "read_num": 1, - "prefix": 6, - "has_e": 3, - "after_e": 5, - "has_x": 5, - "has_dot": 3, - "valid": 4, - "read_escaped_char": 1, - "hex_bytes": 3, - "digit": 3, - "read_string": 1, - "with_eof_error": 1, - "comment1": 1, - "Unterminated": 2, - "multiline": 1, - "comment2": 1, - "WARNING": 1, - "***": 1, - "Found": 1, - "warn": 3, - "tok": 1, - "read_name": 1, - "backslash": 2, - "Expecting": 1, - "UnicodeEscapeSequence": 1, - "uXXXX": 1, - "Unicode": 1, - "identifier": 1, - "regular": 1, - "regexp": 5, - "operator": 14, - "punc": 27, - "atom": 5, - "keyword": 11, - "Unexpected": 3, - "void": 1, - "<\",>": 1, - "<=\",>": 1, - "debugger": 2, - "const": 2, - "stat": 1, - "Label": 1, - "without": 1, - "statement": 1, - "defun": 1, - "Name": 1, - "Missing": 1, - "catch/finally": 1, - "blocks": 1, - "unary": 2, - "dot": 2, - "postfix": 1, - "Invalid": 2, - "binary": 1, - "conditional": 1, - "assign": 1, - "assignment": 1, - "seq": 1, - "member": 2, - "array.length": 1, - "Object.prototype.hasOwnProperty.call": 1, - "exports.tokenizer": 1, - "exports.parse": 1, - "parse": 1, - "exports.slice": 1, - "exports.curry": 1, - "curry": 1, - "exports.member": 1, - "exports.array_to_hash": 1, - "exports.PRECEDENCE": 1, - "PRECEDENCE": 1, - "exports.KEYWORDS_ATOM": 1, - "exports.RESERVED_WORDS": 1, - "exports.KEYWORDS": 1, - "exports.ATOMIC_START_TOKEN": 1, - "ATOMIC_START_TOKEN": 1, - "exports.OPERATORS": 1, - "exports.is_alphanumeric_char": 1, - "exports.set_logger": 1, - "logger": 2 - }, - "JSON": { - "{": 73, - "[": 17, - "]": 17, - "}": 73, - "true": 3 - }, - "JSON5": { - "{": 6, - "foo": 1, - "while": 1, - "true": 1, - "this": 1, - "here": 1, - "//": 2, - "inline": 1, - "comment": 1, - "hex": 1, - "xDEADbeef": 1, - "half": 1, - ".5": 1, - "delta": 1, - "+": 1, - "to": 1, - "Infinity": 1, - "and": 1, - "beyond": 1, - "finally": 1, - "oh": 1, - "[": 3, - "]": 3, - "}": 6, - "name": 1, - "version": 1, - "description": 1, - "keywords": 1, - "author": 1, - "contributors": 1, - "main": 1, - "bin": 1, - "dependencies": 1, - "devDependencies": 1, - "mocha": 1, - "scripts": 1, - "build": 1, - "test": 1, - "homepage": 1, - "repository": 1, - "type": 1, - "url": 1 - }, - "JSONiq": { - "(": 14, - "Query": 2, - "for": 4, - "returning": 1, - "one": 1, - "database": 2, - "entry": 1, - ")": 14, - "import": 5, - "module": 5, - "namespace": 5, - "req": 6, - ";": 9, - "catalog": 4, - "variable": 4, - "id": 3, - "param": 4, - "-": 11, - "values": 4, - "[": 5, - "]": 5, - "part": 2, - "get": 2, - "data": 4, - "by": 2, - "key": 1, - "searching": 1, - "the": 1, - "keywords": 1, - "index": 3, - "phrase": 2, - "limit": 2, - "integer": 1, - "result": 1, - "at": 1, - "idx": 2, - "in": 1, - "search": 1, - "where": 1, - "le": 1, - "let": 1, - "result.s": 1, - "result.p": 1, - "return": 1, - "{": 2, - "|": 2, - "score": 1, - "result.r": 1, - "}": 2 - }, - "JSONLD": { - "{": 7, - "}": 7, - "[": 1, - "null": 2, - "]": 1 - }, - "Julia": { - "##": 5, - "Test": 1, - "case": 1, - "from": 1, - "Issue": 1, - "#445": 1, - "#STOCKCORR": 1, - "-": 11, - "The": 1, - "original": 1, - "unoptimised": 1, - "code": 1, - "that": 1, - "simulates": 1, - "two": 2, - "correlated": 1, - "assets": 1, - "function": 1, - "stockcorr": 1, - "(": 13, - ")": 13, - "Correlated": 1, - "asset": 1, - "information": 1, - "CurrentPrice": 3, - "[": 20, - "]": 20, - "#": 11, - "Initial": 1, - "Prices": 1, - "of": 6, - "the": 2, - "stocks": 1, - "Corr": 2, - ";": 1, - "Correlation": 1, - "Matrix": 2, - "T": 5, - "Number": 2, - "days": 3, - "to": 1, - "simulate": 1, - "years": 1, - "n": 4, - "simulations": 1, - "dt": 3, - "/250": 1, - "Time": 1, - "step": 1, - "year": 1, - "Div": 3, - "Dividend": 1, - "Vol": 5, - "Volatility": 1, - "Market": 1, - "Information": 1, - "r": 3, - "Risk": 1, - "free": 1, - "rate": 1, - "Define": 1, - "storages": 1, - "SimulPriceA": 5, - "zeros": 2, - "Simulated": 2, - "Price": 2, - "Asset": 2, - "A": 1, - "SimulPriceB": 5, - "B": 1, - "Generating": 1, - "paths": 1, - "stock": 1, - "prices": 1, - "by": 2, - "Geometric": 1, - "Brownian": 1, - "Motion": 1, - "UpperTriangle": 2, - "chol": 1, - "Cholesky": 1, - "decomposition": 1, - "for": 2, - "i": 5, - "Wiener": 1, - "randn": 1, - "CorrWiener": 1, - "Wiener*UpperTriangle": 1, - "j": 7, - "*exp": 2, - "/2": 2, - "*dt": 2, - "+": 2, - "*sqrt": 2, - "*CorrWiener": 2, - "end": 3, - "return": 1 - }, - "Kit": { - "
": 1, - "

": 1, - "

": 1, - "

": 1, - "

": 1, - "
": 1 - }, - "Kotlin": { - "package": 1, - "addressbook": 1, - "class": 5, - "Contact": 1, - "(": 15, - "val": 16, - "name": 2, - "String": 7, - "emails": 1, - "List": 3, - "": 1, - "addresses": 1, - "": 1, - "phonenums": 1, - "": 1, - ")": 15, - "EmailAddress": 1, - "user": 1, - "host": 1, - "PostalAddress": 1, - "streetAddress": 1, - "city": 1, - "zip": 1, - "state": 2, - "USState": 1, - "country": 3, - "Country": 7, - "{": 6, - "assert": 1, - "null": 3, - "xor": 1, - "Countries": 2, - "[": 3, - "]": 3, - "}": 6, - "PhoneNumber": 1, - "areaCode": 1, - "Int": 1, - "number": 1, - "Long": 1, - "object": 1, - "fun": 1, - "get": 2, - "id": 2, - "CountryID": 1, - "countryTable": 2, - "private": 2, - "var": 1, - "table": 5, - "Map": 2, - "": 2, - "if": 1, - "HashMap": 1, - "for": 1, - "line": 3, - "in": 1, - "TextFile": 1, - ".lines": 1, - "stripWhiteSpace": 1, - "true": 1, - "return": 1 - }, - "KRL": { - "ruleset": 1, - "sample": 1, - "{": 3, - "meta": 1, - "name": 1, - "description": 1, - "<<": 1, - "Hello": 1, - "world": 1, - "author": 1, - "}": 3, - "rule": 1, - "hello": 1, - "select": 1, - "when": 1, - "web": 1, - "pageview": 1, - "notify": 1, - "(": 1, - ")": 1, - ";": 1 - }, - "Lasso": { - "<": 7, - "LassoScript": 1, - "//": 169, - "JSON": 2, - "Encoding": 1, - "and": 52, - "Decoding": 1, - "Copyright": 1, - "-": 2248, - "LassoSoft": 1, - "Inc.": 1, - "": 1, - "": 1, - "": 1, - "This": 5, - "tag": 11, - "is": 35, - "now": 23, - "incorporated": 1, - "in": 46, - "Lasso": 15, - "If": 4, - "(": 640, - "Lasso_TagExists": 1, - ")": 639, - "False": 1, - ";": 573, - "Define_Tag": 1, - "Namespace": 1, - "Required": 1, - "Optional": 1, - "Local": 7, - "Map": 3, - "r": 8, - "n": 30, - "t": 8, - "f": 2, - "b": 2, - "output": 30, - "newoptions": 1, - "options": 2, - "array": 20, - "set": 10, - "list": 4, - "queue": 2, - "priorityqueue": 2, - "stack": 2, - "pair": 1, - "map": 23, - "[": 22, - "]": 23, - "literal": 3, - "string": 59, - "integer": 30, - "decimal": 5, - "boolean": 4, - "null": 26, - "date": 23, - "temp": 12, - "object": 7, - "{": 18, - "}": 18, - "client_ip": 1, - "client_address": 1, - "__jsonclass__": 6, - "deserialize": 2, - "": 3, - "": 3, - "Decode_JSON": 2, - "Decode_": 1, - "value": 14, - "consume_string": 1, - "ibytes": 9, - "unescapes": 1, - "u": 1, - "UTF": 4, - "%": 14, - "QT": 4, - "TZ": 2, - "T": 3, - "consume_token": 1, - "obytes": 3, - "delimit": 7, - "true": 12, - "false": 8, - ".": 5, - "consume_array": 1, - "consume_object": 1, - "key": 3, - "val": 1, - "native": 2, - "comment": 2, - "http": 6, - "//www.lassosoft.com/json": 1, - "start": 5, - "Literal": 2, - "String": 1, - "Object": 2, - "JSON_RPCCall": 1, - "RPCCall": 1, - "JSON_": 1, - "method": 7, - "params": 11, - "id": 7, - "host": 6, - "//localhost/lassoapps.8/rpc/rpc.lasso": 1, - "request": 2, - "result": 6, - "JSON_Records": 3, - "KeyField": 1, - "ReturnField": 1, - "ExcludeField": 1, - "Fields": 1, - "_fields": 1, - "fields": 2, - "No": 1, - "found": 5, - "for": 65, - "_keyfield": 4, - "keyfield": 4, - "ID": 1, - "_index": 1, - "_return": 1, - "returnfield": 1, - "_exclude": 1, - "excludefield": 1, - "_records": 1, - "_record": 1, - "_temp": 1, - "_field": 1, - "_output": 1, - "error_msg": 15, - "error_code": 11, - "found_count": 11, - "rows": 1, - "#_records": 1, - "Return": 7, - "@#_output": 1, - "/Define_Tag": 1, - "/If": 3, - "define": 20, - "trait_json_serialize": 2, - "trait": 1, - "require": 1, - "asString": 3, - "json_serialize": 18, - "e": 13, - "bytes": 8, - "+": 146, - "#e": 13, - "Replace": 19, - "&": 21, - "json_literal": 1, - "asstring": 4, - "format": 7, - "gmt": 1, - "|": 13, - "trait_forEach": 1, - "local": 116, - "foreach": 1, - "#output": 50, - "#delimit": 7, - "#1": 3, - "return": 75, - "with": 25, - "pr": 1, - "eachPair": 1, - "select": 1, - "#pr": 2, - "first": 12, - "second": 8, - "join": 5, - "json_object": 2, - "foreachpair": 1, - "any": 14, - "serialize": 1, - "json_consume_string": 3, - "while": 9, - "#temp": 19, - "#ibytes": 17, - "export8bits": 6, - "#obytes": 5, - "import8bits": 4, - "Escape": 1, - "/while": 7, - "unescape": 1, - "//Replace": 1, - "if": 76, - "BeginsWith": 1, - "&&": 30, - "EndsWith": 1, - "Protect": 1, - "serialization_reader": 1, - "xml": 1, - "read": 1, - "/Protect": 1, - "else": 32, - "size": 24, - "or": 6, - "regexp": 1, - "d": 2, - "Z": 1, - "matches": 1, - "Format": 1, - "yyyyMMdd": 2, - "HHmmssZ": 1, - "HHmmss": 1, - "/if": 53, - "json_consume_token": 2, - "marker": 4, - "Is": 1, - "also": 5, - "end": 2, - "of": 24, - "token": 1, - "//............................................................................": 2, - "string_IsNumeric": 1, - "json_consume_array": 3, - "While": 1, - "Discard": 1, - "whitespace": 3, - "Else": 7, - "insert": 18, - "#key": 12, - "json_consume_object": 2, - "Loop_Abort": 1, - "/While": 1, - "Find": 3, - "isa": 25, - "First": 4, - "find": 57, - "Second": 1, - "json_deserialize": 1, - "removeLeading": 1, - "bom_utf8": 1, - "Reset": 1, - "on": 1, - "provided": 1, - "**/": 1, - "type": 63, - "parent": 5, - "public": 1, - "onCreate": 1, - "...": 3, - "..onCreate": 1, - "#rest": 1, - "json_rpccall": 1, - "#id": 2, - "#host": 4, - "Lasso_UniqueID": 1, - "Include_URL": 1, - "PostParams": 1, - "Encode_JSON": 1, - "#method": 1, - "#params": 5, - "": 6, - "2009": 14, - "09": 10, - "04": 8, - "JS": 126, - "Added": 40, - "content_body": 14, - "compatibility": 4, - "pre": 4, - "8": 6, - "5": 4, - "05": 4, - "07": 6, - "timestamp": 4, - "to": 98, - "knop_cachestore": 4, - "maxage": 2, - "parameter": 8, - "knop_cachefetch": 4, - "Corrected": 8, - "construction": 2, - "cache_name": 2, - "internally": 2, - "the": 86, - "knop_cache": 2, - "tags": 14, - "so": 16, - "it": 20, - "will": 12, - "work": 6, - "correctly": 2, - "at": 10, - "site": 4, - "root": 2, - "2008": 6, - "11": 8, - "dummy": 2, - "knop_debug": 4, - "ctype": 2, - "be": 38, - "able": 14, - "transparently": 2, - "without": 4, - "L": 2, - "Debug": 2, - "24": 2, - "knop_stripbackticks": 2, - "01": 4, - "28": 2, - "Cache": 2, - "name": 32, - "used": 12, - "when": 10, - "using": 8, - "session": 4, - "storage": 8, - "2007": 6, - "12": 8, - "knop_cachedelete": 2, - "Created": 4, - "03": 2, - "knop_foundrows": 2, - "condition": 4, - "returning": 2, - "normal": 2, - "For": 2, - "lasso_tagexists": 4, - "define_tag": 48, - "namespace=": 12, - "__html_reply__": 4, - "define_type": 14, - "debug": 2, - "_unknowntag": 6, - "onconvert": 2, - "stripbackticks": 2, - "description=": 2, - "priority=": 2, - "required=": 2, - "input": 2, - "split": 2, - "@#output": 2, - "/define_tag": 36, - "description": 34, - "namespace": 16, - "priority": 8, - "Johan": 2, - "S": 2, - "lve": 2, - "#charlist": 6, - "current": 10, - "time": 8, - "a": 52, - "mixed": 2, - "up": 4, - "as": 26, - "seed": 6, - "#seed": 36, - "convert": 4, - "this": 14, - "base": 6, - "conversion": 4, - "get": 12, - "#base": 8, - "/": 6, - "over": 2, - "new": 14, - "chunk": 2, - "millisecond": 2, - "math_random": 2, - "lower": 2, - "upper": 2, - "__lassoservice_ip__": 2, - "response_localpath": 8, - "removetrailing": 8, - "response_filepath": 8, - "//tagswap.net/found_rows": 2, - "action_statement": 2, - "string_findregexp": 8, - "#sql": 42, - "ignorecase": 12, - "||": 8, - "maxrecords_value": 2, - "inaccurate": 2, - "must": 4, - "accurate": 2, - "Default": 2, - "usually": 2, - "fastest.": 2, - "Can": 2, - "not": 10, - "GROUP": 4, - "BY": 6, - "example.": 2, - "normalize": 4, - "around": 2, - "FROM": 2, - "expression": 6, - "string_replaceregexp": 8, - "replace": 8, - "ReplaceOnlyOne": 2, - "substring": 6, - "remove": 6, - "ORDER": 2, - "statement": 4, - "since": 4, - "causes": 4, - "problems": 2, - "field": 26, - "aliases": 2, - "we": 2, - "can": 14, - "simple": 2, - "later": 2, - "query": 4, - "contains": 2, - "use": 10, - "SQL_CALC_FOUND_ROWS": 2, - "which": 2, - "much": 2, - "slower": 2, - "see": 16, - "//bugs.mysql.com/bug.php": 2, - "removeleading": 2, - "inline": 4, - "sql": 2, - "exit": 2, - "here": 2, - "normally": 2, - "/inline": 2, - "fallback": 4, - "required": 10, - "optional": 36, - "local_defined": 26, - "knop_seed": 2, - "#RandChars": 4, - "Get": 2, - "Math_Random": 2, - "Min": 2, - "Max": 2, - "Size": 2, - "#value": 14, - "#numericValue": 4, - "length": 8, - "#cryptvalue": 10, - "#anyChar": 2, - "Encrypt_Blowfish": 2, - "decrypt_blowfish": 2, - "String_Remove": 2, - "StartPosition": 2, - "EndPosition": 2, - "Seed": 2, - "String_IsAlphaNumeric": 2, - "self": 72, - "_date_msec": 4, - "/define_type": 4, - "seconds": 4, - "default": 4, - "store": 4, - "all": 6, - "page": 14, - "vars": 8, - "specified": 8, - "iterate": 12, - "keys": 6, - "var": 38, - "#item": 10, - "#type": 26, - "#data": 14, - "/iterate": 12, - "//fail_if": 6, - "session_id": 6, - "#session": 10, - "session_addvar": 4, - "#cache_name": 72, - "duration": 4, - "#expires": 4, - "server_name": 6, - "initiate": 10, - "thread": 6, - "RW": 6, - "lock": 24, - "global": 40, - "Thread_RWLock": 6, - "create": 6, - "reference": 10, - "@": 8, - "writing": 6, - "#lock": 12, - "writelock": 4, - "check": 6, - "cache": 4, - "unlock": 6, - "writeunlock": 4, - "#maxage": 4, - "cached": 8, - "data": 12, - "too": 4, - "old": 4, - "reading": 2, - "readlock": 2, - "readunlock": 2, - "ignored": 2, - "//##################################################################": 4, - "knoptype": 2, - "All": 4, - "Knop": 6, - "custom": 8, - "types": 10, - "should": 4, - "have": 6, - "identify": 2, - "registered": 2, - "knop": 6, - "isknoptype": 2, - "knop_knoptype": 2, - "prototype": 4, - "version": 4, - "14": 4, - "Base": 2, - "framework": 2, - "Contains": 2, - "common": 4, - "member": 10, - "Used": 2, - "boilerplate": 2, - "creating": 4, - "other": 4, - "instance": 8, - "variables": 2, - "are": 4, - "available": 2, - "well": 2, - "CHANGE": 4, - "NOTES": 4, - "Syntax": 4, - "adjustments": 4, - "9": 2, - "Changed": 6, - "error": 22, - "numbers": 2, - "added": 10, - "even": 2, - "language": 10, - "already": 2, - "exists.": 2, - "improved": 4, - "reporting": 2, - "messages": 6, - "such": 2, - "from": 6, - "bad": 2, - "database": 14, - "queries": 2, - "error_lang": 2, - "provide": 2, - "knop_lang": 8, - "add": 12, - "localized": 2, - "except": 2, - "knop_base": 8, - "html": 4, - "xhtml": 28, - "help": 10, - "nicely": 2, - "formatted": 2, - "output.": 2, - "Centralized": 2, - "knop_base.": 2, - "Moved": 6, - "codes": 2, - "improve": 2, - "documentation.": 2, - "It": 2, - "always": 2, - "an": 8, - "parameter.": 2, - "trace": 2, - "tagtime": 4, - "was": 6, - "nav": 4, - "earlier": 2, - "varname": 4, - "retreive": 2, - "variable": 8, - "that": 18, - "stored": 2, - "in.": 2, - "automatically": 2, - "sense": 2, - "doctype": 6, - "exists": 2, - "buffer.": 2, - "The": 6, - "performance.": 2, - "internal": 2, - "html.": 2, - "Introduced": 2, - "_knop_data": 10, - "general": 2, - "level": 2, - "caching": 2, - "between": 2, - "different": 2, - "objects.": 2, - "TODO": 2, - "option": 2, - "Google": 2, - "Code": 2, - "Wiki": 2, - "working": 2, - "properly": 4, - "run": 2, - "by": 12, - "atbegin": 2, - "handler": 2, - "explicitly": 2, - "*/": 2, - "entire": 4, - "ms": 2, - "defined": 4, - "each": 8, - "instead": 4, - "avoid": 2, - "recursion": 2, - "properties": 4, - "#endslash": 10, - "#tags": 2, - "#t": 2, - "doesn": 4, - "p": 2, - "Parameters": 4, - "nParameters": 2, - "Internal.": 2, - "Finds": 2, - "out": 2, - "used.": 2, - "Looks": 2, - "unless": 2, - "array.": 2, - "variable.": 2, - "Looking": 2, - "#xhtmlparam": 4, - "plain": 2, - "#doctype": 4, - "copy": 4, - "standard": 2, - "code": 2, - "errors": 12, - "error_data": 12, - "form": 2, - "grid": 2, - "lang": 2, - "user": 4, - "#error_lang": 12, - "addlanguage": 4, - "strings": 6, - "@#errorcodes": 2, - "#error_lang_custom": 2, - "#custom_language": 10, - "once": 4, - "one": 2, - "#custom_string": 4, - "#errorcodes": 4, - "#error_code": 10, - "message": 6, - "getstring": 2, - "test": 2, - "known": 2, - "lasso": 2, - "knop_timer": 2, - "knop_unique": 2, - "look": 2, - "#varname": 6, - "loop_abort": 2, - "tag_name": 2, - "#timer": 2, - "#trace": 4, - "merge": 2, - "#eol": 8, - "2010": 4, - "23": 4, - "Custom": 2, - "interact": 2, - "databases": 2, - "Supports": 4, - "both": 2, - "MySQL": 2, - "FileMaker": 2, - "datasources": 2, - "2012": 4, - "06": 2, - "10": 2, - "SP": 4, - "Fix": 2, - "precision": 2, - "bug": 2, - "6": 2, - "0": 2, - "1": 2, - "renderfooter": 2, - "15": 2, - "Add": 2, - "support": 6, - "Thanks": 2, - "Ric": 2, - "Lewis": 2, - "settable": 4, - "removed": 2, - "table": 6, - "nextrecord": 12, - "deprecation": 2, - "warning": 2, - "corrected": 2, - "verification": 2, - "index": 4, - "before": 4, - "calling": 2, - "resultset_count": 6, - "break": 2, - "versions": 2, - "fixed": 4, - "incorrect": 2, - "debug_trace": 2, - "addrecord": 4, - "how": 2, - "keyvalue": 10, - "returned": 6, - "adding": 2, - "records": 4, - "inserting": 2, - "generated": 2, - "suppressed": 2, - "specifying": 2, - "saverecord": 8, - "deleterecord": 4, - "case.": 2, - "recorddata": 6, - "no": 2, - "longer": 2, - "touch": 2, - "current_record": 2, - "zero": 2, - "access": 2, - "occurrence": 2, - "same": 4, - "returns": 4, - "knop_databaserows": 2, - "inlinename.": 4, - "next.": 2, - "remains": 2, - "supported": 2, - "backwards": 2, - "compatibility.": 2, - "resets": 2, - "record": 20, - "pointer": 8, - "reaching": 2, - "last": 4, - "honors": 2, - "incremented": 2, - "recordindex": 4, - "specific": 2, - "found.": 2, - "getrecord": 8, - "REALLY": 2, - "works": 4, - "keyvalues": 4, - "double": 2, - "oops": 4, - "I": 4, - "thought": 2, - "but": 2, - "misplaced": 2, - "paren...": 2, - "corresponding": 2, - "resultset": 2, - "/resultset": 2, - "through": 2, - "handling": 2, - "better": 2, - "knop_user": 4, - "keeplock": 4, - "updates": 2, - "datatype": 2, - "knop_databaserow": 2, - "iterated.": 2, - "When": 2, - "iterating": 2, - "row": 2, - "values.": 2, - "Addedd": 2, - "increments": 2, - "recordpointer": 2, - "called": 2, - "until": 2, - "reached.": 2, - "Returns": 2, - "long": 2, - "there": 2, - "more": 2, - "records.": 2, - "Useful": 2, - "loop": 2, - "example": 2, - "below": 2, - "Implemented": 2, - "reset": 2, - "query.": 2, - "shortcut": 2, - "Removed": 2, - "onassign": 2, - "touble": 2, - "Extended": 2, - "field_names": 2, - "names": 4, - "db": 2, - "objects": 2, - "never": 2, - "been": 2, - "optionally": 2, - "supports": 2, - "sql.": 2, - "Make": 2, - "sure": 2, - "SQL": 2, - "includes": 2, - "relevant": 2, - "lockfield": 2, - "locking": 4, - "capturesearchvars": 2, - "mysteriously": 2, - "after": 2, - "operations": 2, - "caused": 2, - "errors.": 2, - "flag": 2, - "save": 2, - "locked": 2, - "releasing": 2, - "Adding": 2, - "progress.": 2, - "Done": 2, - "oncreate": 2, - "getrecord.": 2, - "documentation": 2, - "most": 2, - "existing": 2, - "it.": 2, - "Faster": 2, - "than": 2, - "scratch.": 2, - "shown_first": 2, - "again": 2, - "hoping": 2, - "s": 2, - "only": 2, - "captured": 2, - "update": 2, - "uselimit": 2, - "querys": 2, - "LIMIT": 2, - "still": 2, - "gets": 2, - "proper": 2, - "searchresult": 2, - "separate": 2, - "COUNT": 2 - }, - "Latte": { - "{": 54, - "**": 1, - "*": 4, - "@param": 3, - "string": 2, - "basePath": 1, - "web": 1, - "base": 1, - "path": 1, - "robots": 2, - "tell": 1, - "how": 1, - "to": 2, - "index": 1, - "the": 1, - "content": 1, - "of": 3, - "a": 4, - "page": 1, - "(": 18, - "optional": 1, - ")": 18, - "array": 1, - "flashes": 1, - "flash": 3, - "messages": 1, - "}": 54, - "": 1, - "html": 1, - "": 1, - "": 1, - "": 6, - "charset=": 1, - "name=": 4, - "content=": 5, - "n": 8, - "ifset=": 1, - "http": 1, - "equiv=": 1, - "": 1, - "ifset": 1, - "title": 4, - "/ifset": 1, - "Translation": 1, - "report": 1, - "": 1, - "": 2, - "rel=": 2, - "media=": 1, - "href=": 4, - "": 3, - "block": 3, - "#head": 1, - "/block": 3, - "": 1, - "": 1, - "class=": 12, - "document.documentElement.className": 1, - "+": 3, - "#navbar": 1, - "include": 3, - "_navbar.latte": 1, - "
": 6, - "inner": 1, - "foreach=": 3, - "_flash.latte": 1, - "
": 7, - "#content": 1, - "
": 1, - "
": 1, - "src=": 1, - "#scripts": 1, - "": 1, - "": 1, - "var": 3, - "define": 1, - "author": 7, - "": 2, - "Author": 2, - "authorId": 2, - "-": 71, - "id": 3, - "black": 2, - "avatar": 2, - "img": 2, - "rounded": 2, - "class": 2, - "tooltip": 4, - "Total": 1, - "time": 4, - "shortName": 1, - "translated": 4, - "on": 5, - "all": 1, - "videos.": 1, - "amaraCallbackLink": 1, - "row": 2, - "col": 3, - "md": 2, - "outOf": 5, - "done": 7, - "threshold": 4, - "alert": 2, - "warning": 2, - "<=>": 2, - "Seems": 1, - "complete": 1, - "|": 6, - "out": 1, - "

": 2, - "elseif": 2, - "<": 1, - "p": 1, - "if": 7, - "Although": 1, - "is": 1, - "there": 1, - "are": 1, - "no": 1, - "English": 1, - "subtitles": 1, - "for": 1, - "comparison.": 1, - "/if": 8, - "/cache": 1, - "editor": 1, - "ksid": 2, - "new": 5, - "video": 2, - "siteId": 1, - "Video": 1, - "khanovaskola.cz": 1, - "revision": 18, - "rev": 4, - "this": 3, - "older": 1, - "#": 2, - "else": 2, - "newer": 1, - "
": 1, - "

": 1, - "diffs": 3, - "noescape": 2, - "

": 1, - "description": 1, - "text": 4, - "as": 2, - "line": 3, - "context": 1, - "splitter": 1, - "template": 1, - "bottom": 1, - "Expand": 1, - "fa": 16, - "sort": 1, - "ellipsis": 1, - "h": 1, - "success": 1, - "amaraEdit": 1, - "amaraId": 2, - "editButton": 1, - "btn": 17, - "default": 6, - "edit": 1, - "khanAcademy": 1, - "kaButton": 1, - "link": 1, - "info": 1, - "group": 4, - "approve": 1, - "thumbs": 3, - "up": 1, - "markIncomplete": 2, - "down": 2, - "redirectToAdd": 1, - "plus": 1, - "square": 1, - "table": 2, - "condensed": 1, - "revisions": 1, - "revId": 1, - "secondary": 2, - "Percent": 1, - "lines": 1, - "&": 1, - "thinsp": 1, - "%": 1, - "": 3, - "": 3, - "": 2, - "incomplete": 3, - "approved": 2, - "": 1, - "user": 1, - "loggedIn": 1, - "&&": 1, - "comments": 2, - "count": 1, - "": 2, - "": 2, - "colspan=": 1, - "": 1, - "comment": 4, - "left": 1, - "createdAt": 1, - "timeAgo": 1, - "noborder": 1, - "input": 3, - "form": 1, - "control": 1, - "Comment": 1, - "only": 1, - "visible": 1, - "other": 1, - "editors": 1, - "save": 1, - "share": 1, - "": 1, - "": 1, - "/form": 1, - "/foreach": 1, - "
": 1 - }, - "Less": { - "@blue": 4, - "#3bbfce": 1, - ";": 7, - "@margin": 3, - "px": 1, - ".content": 1, - "-": 3, - "navigation": 1, - "{": 2, - "border": 2, - "color": 3, - "darken": 1, - "(": 1, - "%": 1, - ")": 1, - "}": 2, - ".border": 1, - "padding": 1, - "/": 2, - "margin": 1 - }, - "LFE": { - ";": 213, - "Copyright": 4, - "(": 217, - "c": 4, - ")": 231, - "Duncan": 4, - "McGreggor": 4, - "": 2, - "Licensed": 3, - "under": 9, - "the": 36, - "Apache": 3, - "License": 12, - "Version": 3, - "you": 3, - "may": 6, - "not": 5, - "use": 6, - "this": 3, - "file": 6, - "except": 3, - "in": 10, - "compliance": 3, - "with": 8, - "License.": 6, - "You": 3, - "obtain": 3, - "a": 8, - "copy": 3, - "of": 10, - "at": 4, - "http": 4, - "//www.apache.org/licenses/LICENSE": 3, - "-": 98, - "Unless": 3, - "required": 3, - "by": 4, - "applicable": 3, - "law": 3, - "or": 6, - "agreed": 3, - "to": 10, - "writing": 3, - "software": 3, - "distributed": 6, - "is": 5, - "on": 4, - "an": 5, - "BASIS": 3, - "WITHOUT": 3, - "WARRANTIES": 3, - "OR": 3, - "CONDITIONS": 3, - "OF": 3, - "ANY": 3, - "KIND": 3, - "either": 3, - "express": 3, - "implied.": 3, - "See": 3, - "for": 5, - "specific": 3, - "language": 3, - "governing": 3, - "permissions": 3, - "and": 7, - "limitations": 3, - "File": 4, - "church.lfe": 1, - "Author": 3, - "Purpose": 3, - "Demonstrating": 2, - "church": 20, - "numerals": 1, - "from": 2, - "lambda": 18, - "calculus": 1, - "The": 4, - "code": 2, - "below": 3, - "was": 1, - "used": 1, - "create": 4, - "section": 1, - "user": 1, - "guide": 1, - "here": 1, - "//lfe.github.io/user": 1, - "guide/recursion/5.html": 1, - "Here": 1, - "some": 2, - "example": 2, - "usage": 1, - "slurp": 2, - "five/0": 2, - "int2": 1, - "get": 21, - "defmodule": 2, - "export": 2, - "all": 1, - "defun": 20, - "zero": 2, - "s": 19, - "x": 12, - "one": 1, - "funcall": 23, - "two": 1, - "three": 1, - "four": 1, - "five": 1, - "int": 2, - "successor": 3, - "n": 4, - "+": 2, - "int1": 1, - "numeral": 8, - "#": 3, - "successor/1": 1, - "count": 7, - "limit": 4, - "cond": 1, - "/": 1, - "integer": 2, - "*": 6, - "Mode": 1, - "LFE": 4, - "Code": 1, - "Paradigms": 1, - "Artificial": 1, - "Intelligence": 1, - "Programming": 1, - "Peter": 1, - "Norvig": 1, - "gps1.lisp": 1, - "First": 1, - "version": 1, - "GPS": 1, - "General": 1, - "Problem": 1, - "Solver": 1, - "Converted": 1, - "Robert": 3, - "Virding": 3, - "Define": 1, - "macros": 1, - "global": 2, - "variable": 2, - "access.": 1, - "This": 2, - "hack": 1, - "very": 1, - "naughty": 1, - "defsyntax": 2, - "defvar": 2, - "[": 3, - "name": 8, - "val": 2, - "]": 3, - "let": 6, - "v": 3, - "put": 1, - "getvar": 3, - "solved": 1, - "gps": 1, - "state": 4, - "goals": 2, - "Set": 1, - "variables": 1, - "but": 1, - "existing": 1, - "*ops*": 1, - "*state*": 5, - "current": 1, - "list": 13, - "conditions.": 1, - "if": 1, - "every": 1, - "fun": 1, - "achieve": 1, - "op": 8, - "action": 3, - "setvar": 2, - "set": 1, - "difference": 1, - "del": 5, - "union": 1, - "add": 3, - "drive": 1, - "son": 2, - "school": 2, - "preconds": 4, - "shop": 6, - "installs": 1, - "battery": 1, - "car": 1, - "works": 1, - "make": 2, - "communication": 2, - "telephone": 1, - "have": 3, - "phone": 1, - "book": 1, - "give": 1, - "money": 3, - "has": 1, - "mnesia_demo.lfe": 1, - "A": 1, - "simple": 4, - "Mnesia": 2, - "demo": 2, - "LFE.": 1, - "contains": 1, - "using": 1, - "access": 1, - "tables.": 1, - "It": 1, - "shows": 2, - "how": 2, - "emp": 1, - "XXXX": 1, - "macro": 1, - "ETS": 1, - "match": 5, - "pattern": 1, - "together": 1, - "mnesia": 8, - "match_object": 1, - "specifications": 1, - "select": 1, - "Query": 2, - "List": 2, - "Comprehensions.": 1, - "mnesia_demo": 1, - "new": 2, - "by_place": 1, - "by_place_ms": 1, - "by_place_qlc": 2, - "defrecord": 1, - "person": 8, - "place": 7, - "job": 3, - "Start": 1, - "table": 2, - "we": 1, - "will": 1, - "memory": 1, - "only": 1, - "schema.": 1, - "start": 1, - "create_table": 1, - "attributes": 1, - "Initialise": 1, - "table.": 1, - "people": 1, - "spec": 1, - "p": 2, - "j": 2, - "when": 1, - "tuple": 1, - "transaction": 2, - "f": 3, - "Use": 1, - "Comprehensions": 1, - "records": 1, - "q": 2, - "qlc": 2, - "lc": 1, - "<": 1, - "e": 1, - "object.lfe": 1, - "OOP": 1, - "closures": 1, - "object": 16, - "system": 1, - "demonstrated": 1, - "do": 2, - "following": 2, - "objects": 2, - "call": 2, - "methods": 5, - "those": 1, - "which": 1, - "can": 1, - "other": 1, - "update": 1, - "instance": 2, - "Note": 1, - "however": 1, - "that": 1, - "his": 1, - "does": 1, - "demonstrate": 1, - "inheritance.": 1, - "To": 1, - "cd": 1, - "examples": 1, - "../bin/lfe": 1, - "pa": 1, - "../ebin": 1, - "Load": 1, - "fish": 6, - "class": 3, - "#Fun": 1, - "": 1, - "Execute": 1, - "basic": 1, - "species": 7, - "mommy": 3, - "move": 4, - "Carp": 1, - "swam": 1, - "feet": 1, - "ok": 1, - "id": 9, - "Now": 1, - "strictly": 1, - "necessary.": 1, - "When": 1, - "isn": 1, - "children": 10, - "formatted": 1, - "verb": 2, - "self": 6, - "distance": 2, - "erlang": 1, - "length": 1, - "method": 7, - "define": 1, - "info": 1, - "reproduce": 1 - }, - "Liquid": { - "": 1, - "html": 1, - "PUBLIC": 1, - "W3C": 1, - "DTD": 2, - "XHTML": 1, - "1": 1, - "0": 1, - "Transitional": 1, - "EN": 1, - "http": 2, - "www": 1, - "w3": 1, - "org": 1, - "TR": 1, - "xhtml1": 2, - "transitional": 1, - "dtd": 1, - "": 1, - "xmlns=": 1, - "xml": 1, - "lang=": 2, - "": 1, - "": 1, - "equiv=": 1, - "content=": 1, - "": 1, - "{": 89, - "shop.name": 2, - "}": 89, - "-": 4, - "page_title": 1, - "": 1, - "|": 31, - "global_asset_url": 5, - "stylesheet_tag": 3, - "script_tag": 5, - "shopify_asset_url": 1, - "asset_url": 2, - "content_for_header": 1, - "": 1, - "": 1, - "id=": 28, - "

": 1, - "class=": 14, - "": 9, - "href=": 9, - "Skip": 1, - "to": 1, - "navigation.": 1, - "": 9, - "

": 1, - "%": 46, - "if": 5, - "cart.item_count": 7, - "
": 23, - "style=": 5, - "

": 3, - "There": 1, - "pluralize": 3, - "in": 8, - "title=": 3, - "your": 1, - "cart": 1, - "

": 3, - "

": 1, - "Your": 1, - "subtotal": 1, - "is": 1, - "cart.total_price": 2, - "money": 5, - ".": 3, - "

": 1, - "for": 6, - "item": 1, - "cart.items": 1, - "onMouseover=": 2, - "onMouseout=": 2, - "": 4, - "src=": 5, - "
": 23, - "endfor": 6, - "
": 2, - "endif": 5, - "

": 1, - "

": 1, - "onclick=": 1, - "View": 1, - "Mini": 1, - "Cart": 1, - "(": 1, - ")": 1, - "
": 3, - "content_for_layout": 1, - "
    ": 5, - "link": 2, - "linklists.main": 1, - "menu.links": 1, - "
  • ": 5, - "link.title": 2, - "link_to": 2, - "link.url": 2, - "
  • ": 5, - "
": 5, - "tags": 1, - "tag": 4, - "collection.tags": 1, - "": 1, - "link_to_add_tag": 1, - "": 1, - "highlight_active_tag": 1, - "link_to_tag": 1, - "linklists.footer.links": 1, - "All": 1, - "prices": 1, - "are": 1, - "shop.currency": 1, - "Powered": 1, - "by": 1, - "Shopify": 1, - "": 1, - "": 1, - "

": 1, - "We": 1, - "have": 1, - "wonderful": 1, - "products": 1, - "

": 1, - "image": 1, - "product.images": 1, - "forloop.first": 1, - "rel=": 2, - "alt=": 2, - "else": 1, - "product.title": 1, - "Vendor": 1, - "product.vendor": 1, - "link_to_vendor": 1, - "Type": 1, - "product.type": 1, - "link_to_type": 1, - "": 1, - "product.price_min": 1, - "product.price_varies": 1, - "product.price_max": 1, - "": 1, - "
": 1, - "action=": 1, - "method=": 1, - "": 1, - "": 1, - "type=": 2, - "
": 1, - "product.description": 1, - "": 1 - }, - "Literate Agda": { - "documentclass": 1, - "{": 35, - "article": 1, - "}": 35, - "usepackage": 7, - "amssymb": 1, - "bbm": 1, - "[": 2, - "greek": 1, - "english": 1, - "]": 2, - "babel": 1, - "ucs": 1, - "utf8x": 1, - "inputenc": 1, - "autofe": 1, - "DeclareUnicodeCharacter": 3, - "ensuremath": 3, - "ulcorner": 1, - "urcorner": 1, - "overline": 1, - "equiv": 1, - "fancyvrb": 1, - "DefineVerbatimEnvironment": 1, - "code": 3, - "Verbatim": 1, - "%": 1, - "Add": 1, - "fancy": 1, - "options": 1, - "here": 1, - "if": 1, - "you": 3, - "like.": 1, - "begin": 2, - "document": 2, - "module": 3, - "NatCat": 1, - "where": 2, - "open": 2, - "import": 2, - "Relation.Binary.PropositionalEquality": 1, - "-": 21, - "If": 1, - "can": 1, - "show": 1, - "that": 1, - "a": 1, - "relation": 1, - "only": 1, - "ever": 1, - "has": 1, - "one": 1, - "inhabitant": 5, - "get": 1, - "the": 1, - "category": 1, - "laws": 1, - "for": 1, - "free": 1, - "EasyCategory": 3, - "(": 36, - "obj": 4, - "Set": 2, - ")": 36, - "_": 6, - "x": 34, - "y": 28, - "z": 18, - "id": 9, - "single": 4, - "r": 26, - "s": 29, - "assoc": 2, - "w": 4, - "t": 6, - "Data.Nat": 1, - "same": 5, - ".0": 2, - "n": 14, - "refl": 6, - ".": 5, - "suc": 6, - "m": 6, - "cong": 1, - "trans": 5, - ".n": 1, - "zero": 1, - "Nat": 1, - "end": 2 - }, - "Literate CoffeeScript": { - "The": 2, - "**Scope**": 2, - "class": 2, - "regulates": 1, - "lexical": 1, - "scoping": 1, - "within": 2, - "CoffeeScript.": 1, - "As": 1, - "you": 2, - "generate": 1, - "code": 1, - "create": 1, - "a": 8, - "tree": 1, - "of": 4, - "scopes": 1, - "in": 2, - "the": 12, - "same": 1, - "shape": 1, - "as": 3, - "nested": 1, - "function": 2, - "bodies.": 1, - "Each": 1, - "scope": 2, - "knows": 1, - "about": 1, - "variables": 3, - "declared": 2, - "it": 4, - "and": 5, - "has": 1, - "reference": 3, - "to": 8, - "its": 3, - "parent": 2, - "enclosing": 1, - "scope.": 2, - "In": 1, - "this": 3, - "way": 1, - "we": 4, - "know": 1, - "which": 3, - "are": 3, - "new": 2, - "need": 2, - "be": 2, - "with": 3, - "var": 4, - "shared": 1, - "external": 1, - "scopes.": 1, - "Import": 1, - "helpers": 1, - "plan": 1, - "use.": 1, - "{": 4, - "extend": 1, - "last": 1, - "}": 4, - "require": 1, - "exports.Scope": 1, - "Scope": 1, - "root": 1, - "is": 3, - "top": 2, - "-": 5, - "level": 1, - "object": 1, - "for": 3, - "given": 1, - "file.": 1, - "@root": 1, - "null": 1, - "Initialize": 1, - "lookups": 1, - "up": 1, - "chain": 1, - "well": 1, - "**Block**": 1, - "node": 1, - "belongs": 2, - "where": 1, - "should": 1, - "declare": 1, - "that": 2, - "to.": 1, - "constructor": 1, - "(": 5, - "@parent": 2, - "@expressions": 1, - "@method": 1, - ")": 6, - "@variables": 3, - "[": 4, - "name": 8, - "type": 5, - "]": 4, - "@positions": 4, - "Scope.root": 1, - "unless": 1, - "Adds": 1, - "variable": 1, - "or": 1, - "overrides": 1, - "an": 1, - "existing": 1, - "one.": 1, - "add": 1, - "immediate": 3, - "return": 1, - "@parent.add": 1, - "if": 2, - "@shared": 1, - "not": 1, - "Object": 1, - "hasOwnProperty.call": 1, - ".type": 1, - "else": 2, - "@variables.push": 1, - "When": 1, - "super": 1, - "called": 1, - "find": 1, - "current": 1, - "method": 1, - "param": 1, - "_": 3, - "then": 1, - "tempVars": 1, - "realVars": 1, - ".push": 1, - "v.name": 1, - "realVars.sort": 1, - ".concat": 1, - "tempVars.sort": 1, - "Return": 1, - "list": 1, - "assignments": 1, - "supposed": 1, - "made": 1, - "at": 1, - "assignedVariables": 1, - "v": 1, - "when": 1, - "v.type.assigned": 1 - }, - "LiveScript": { - "a": 8, - "-": 25, - "const": 1, - "b": 3, - "var": 1, - "c": 3, - "d": 3, - "_000_000km": 1, - "*": 1, - "ms": 1, - "e": 2, - "(": 9, - ")": 10, - "dashes": 1, - "identifiers": 1, - "underscores_i": 1, - "/regexp1/": 1, - "and": 3, - "//regexp2//g": 1, - "strings": 1, - "[": 2, - "til": 1, - "]": 2, - "or": 2, - "to": 2, - "|": 3, - "map": 1, - "filter": 1, - "fold": 1, - "+": 1, - "class": 1, - "Class": 1, - "extends": 1, - "Anc": 1, - "est": 1, - "args": 1, - "copy": 1, - "from": 1, - "callback": 4, - "error": 6, - "data": 2, - "<": 1, - "read": 1, - "file": 2, - "return": 2, - "if": 2, - "<~>": 1, - "write": 1 - }, - "Logos": { - "%": 15, - "hook": 2, - "ABC": 2, - "-": 3, - "(": 8, - "id": 2, - ")": 8, - "a": 1, - "B": 1, - "b": 1, - "{": 4, - "log": 1, - ";": 8, - "return": 2, - "orig": 2, - "nil": 2, - "}": 4, - "end": 4, - "subclass": 1, - "DEF": 1, - "NSObject": 1, - "init": 3, - "[": 2, - "c": 1, - "RuntimeAccessibleClass": 1, - "alloc": 1, - "]": 2, - "group": 1, - "OptionalHooks": 2, - "void": 1, - "release": 1, - "self": 1, - "retain": 1, - "ctor": 1, - "if": 1, - "OptionalCondition": 1 - }, - "Logtalk": { - "-": 3, - "object": 2, - "(": 4, - "hello_world": 1, - ")": 4, - ".": 2, - "%": 2, - "the": 2, - "initialization/1": 1, - "directive": 1, - "argument": 1, - "is": 2, - "automatically": 1, - "executed": 1, - "when": 1, - "loaded": 1, - "into": 1, - "memory": 1, - "initialization": 1, - "nl": 2, - "write": 1, - "end_object.": 1 - }, - "Lua": { - "-": 60, - "A": 1, - "simple": 1, - "counting": 1, - "object": 1, - "that": 1, - "increments": 1, - "an": 1, - "internal": 1, - "counter": 1, - "whenever": 1, - "it": 2, - "receives": 2, - "a": 5, - "bang": 3, - "at": 2, - "its": 2, - "first": 1, - "inlet": 2, - "or": 2, - "changes": 1, - "to": 8, - "whatever": 1, - "number": 3, - "second": 1, - "inlet.": 1, - "local": 11, - "HelloCounter": 4, - "pd.Class": 3, - "new": 3, - "(": 56, - ")": 56, - "register": 3, - "function": 16, - "initialize": 3, - "sel": 3, - "atoms": 3, - "self.inlets": 3, - "self.outlets": 3, - "self.num": 5, - "return": 3, - "true": 3, - "end": 26, - "in_1_bang": 2, - "self": 10, - "outlet": 10, - "{": 16, - "}": 16, - "+": 3, - "in_2_float": 2, - "f": 12, - "FileListParser": 5, - "Base": 1, - "filename": 2, - "File": 2, - "extension": 2, - "Number": 4, - "of": 9, - "files": 1, - "in": 7, - "batch": 2, - "To": 3, - "[": 17, - "list": 1, - "trim": 1, - "]": 17, - "binfile": 3, - "vidya": 1, - "file": 8, - "modder": 1, - "s": 5, - "mechanisms": 1, - "self.extension": 3, - "the": 7, - "last": 1, - "self.batchlimit": 3, - "in_1_symbol": 1, - "for": 9, - "i": 10, - "do": 8, - "..": 7, - "in_2_list": 1, - "d": 9, - "in_3_float": 1, - "FileModder": 10, - "Object": 1, - "triggering": 1, - "Incoming": 1, - "single": 1, - "data": 2, - "bytes": 3, - "from": 3, - "Total": 1, - "route": 1, - "buflength": 1, - "Glitch": 3, - "type": 2, - "point": 2, - "times": 2, - "glitch": 2, - "Toggle": 1, - "randomized": 1, - "glitches": 3, - "within": 2, - "bounds": 2, - "Active": 1, - "get": 1, - "next": 1, - "byte": 2, - "clear": 2, - "buffer": 2, - "FLOAT": 1, - "write": 3, - "Currently": 1, - "active": 2, - "namedata": 1, - "self.filedata": 4, - "pattern": 1, - "random": 3, - "splice": 1, - "self.glitchtype": 5, - "Minimum": 1, - "image": 1, - "self.glitchpoint": 6, - "repeat": 1, - "on": 1, - "given": 1, - "self.randrepeat": 5, - "Toggles": 1, - "whether": 1, - "repeating": 1, - "should": 1, - "be": 1, - "self.randtoggle": 3, - "Hold": 1, - "all": 1, - "which": 1, - "are": 1, - "converted": 1, - "ints": 1, - "range": 1, - "self.bytebuffer": 8, - "Buffer": 1, - "length": 1, - "currently": 1, - "self.buflength": 7, - "if": 2, - "then": 4, - "plen": 2, - "math.random": 8, - "patbuffer": 3, - "table.insert": 4, - "%": 1, - "#patbuffer": 1, - "elseif": 2, - "randlimit": 4, - "else": 1, - "sloc": 3, - "schunksize": 2, - "splicebuffer": 3, - "table.remove": 1, - "insertpoint": 2, - "#self.bytebuffer": 1, - "_": 2, - "v": 4, - "ipairs": 2, - "outname": 3, - "pd.post": 1, - "in_3_list": 1, - "Shift": 1, - "indexed": 2, - "in_4_list": 1, - "in_5_float": 1, - "in_6_float": 1, - "in_7_list": 1, - "in_8_list": 1 - }, - "M": { - "%": 207, - "zewdAPI": 52, - ";": 1309, - "Enterprise": 5, - "Web": 5, - "Developer": 5, - "run": 2, - "-": 1605, - "time": 9, - "functions": 4, - "and": 59, - "user": 27, - "APIs": 1, - "Product": 2, - "(": 2144, - "Build": 6, - ")": 2152, - "Date": 2, - "Fri": 1, - "Nov": 1, - "|": 171, - "for": 77, - "GT.M": 30, - "m_apache": 3, - "Copyright": 12, - "c": 113, - "M/Gateway": 4, - "Developments": 4, - "Ltd": 4, - "Reigate": 4, - "Surrey": 4, - "UK.": 4, - "All": 4, - "rights": 4, - "reserved.": 4, - "http": 13, - "//www.mgateway.com": 4, - "Email": 4, - "rtweed@mgateway.com": 4, - "This": 26, - "program": 19, - "is": 88, - "free": 15, - "software": 12, - "you": 17, - "can": 20, - "redistribute": 11, - "it": 45, - "and/or": 11, - "modify": 11, - "under": 14, - "the": 223, - "terms": 11, - "of": 84, - "GNU": 33, - "Affero": 33, - "General": 33, - "Public": 33, - "License": 48, - "as": 23, - "published": 11, - "by": 35, - "Free": 11, - "Software": 11, - "Foundation": 11, - "either": 13, - "version": 16, - "or": 50, - "at": 21, - "your": 16, - "option": 12, - "any": 16, - "later": 11, - "version.": 11, - "distributed": 13, - "in": 80, - "hope": 11, - "that": 19, - "will": 23, - "be": 35, - "useful": 11, - "but": 19, - "WITHOUT": 12, - "ANY": 12, - "WARRANTY": 11, - "without": 11, - "even": 12, - "implied": 11, - "warranty": 11, - "MERCHANTABILITY": 11, - "FITNESS": 11, - "FOR": 15, - "A": 12, - "PARTICULAR": 11, - "PURPOSE.": 11, - "See": 15, - "more": 13, - "details.": 12, - "You": 13, - "should": 16, - "have": 21, - "received": 11, - "a": 130, - "copy": 13, - "along": 11, - "with": 45, - "this": 39, - "program.": 9, - "If": 14, - "not": 39, - "see": 26, - "": 11, - ".": 815, - "QUIT": 251, - "_": 127, - "getVersion": 1, - "zewdCompiler": 6, - "date": 1, - "getDate": 1, - "compilePage": 2, - "app": 13, - "page": 12, - "mode": 12, - "technology": 9, - "outputPath": 4, - "multilingual": 4, - "maxLines": 4, - "d": 381, - "g": 228, - "compileAll": 2, - "templatePageName": 2, - "autoTranslate": 2, - "language": 6, - "verbose": 2, - "zewdMgr": 1, - "startSession": 2, - "requestArray": 2, - "serverArray": 1, - "sessionArray": 5, - "filesArray": 1, - "zewdPHP": 8, - ".requestArray": 2, - ".serverArray": 1, - ".sessionArray": 3, - ".filesArray": 1, - "closeSession": 2, - "saveSession": 2, - "endOfPage": 2, - "prePageScript": 2, - "sessid": 146, - "releaseLock": 2, - "tokeniseURL": 2, - "url": 2, - "zewdCompiler16": 5, - "getSessid": 1, - "token": 21, - "i": 465, - "isTokenExpired": 2, - "p": 84, - "zewdSession": 39, - "initialiseSession": 1, - "k": 122, - "deleteSession": 2, - "changeApp": 1, - "appName": 4, - "setSessionValue": 6, - "setRedirect": 1, - "toPage": 1, - "e": 210, - "n": 197, - "path": 4, - "s": 775, - "getRootURL": 1, - "l": 84, - "zewd": 17, - "trace": 24, - "_sessid_": 3, - "_token_": 1, - "_nextPage": 1, - "zcvt": 11, - "nextPage": 1, - "isNextPageTokenValid": 2, - "zewdCompiler13": 10, - "isCSP": 1, - "normaliseTextValue": 1, - "text": 6, - "replaceAll": 11, - "writeLine": 2, - "line": 14, - "CacheTempBuffer": 2, - "j": 67, - "increment": 11, - "w": 127, - "displayOptions": 2, - "fieldName": 5, - "listName": 6, - "escape": 7, - "codeValue": 7, - "name": 121, - "nnvp": 1, - "nvp": 1, - "pos": 33, - "textValue": 6, - "value": 72, - "getSessionValue": 3, - "tr": 13, - "+": 189, - "f": 93, - "o": 51, - "q": 244, - "codeValueEsc": 7, - "textValueEsc": 7, - "htmlOutputEncode": 2, - "zewdAPI2": 5, - "_codeValueEsc_": 1, - "selected": 4, - "translationMode": 1, - "_appName": 1, - "typex": 1, - "type": 2, - "avoid": 1, - "Cache": 3, - "bug": 2, - "getPhraseIndex": 1, - "zewdCompiler5": 1, - "licensed": 1, - "setWarning": 2, - "isTemp": 11, - "setWLDSymbol": 1, - "Duplicate": 1, - "performance": 1, - "also": 4, - "wldAppName": 1, - "wldName": 1, - "wldSessid": 1, - "zzname": 1, - "zv": 6, - "[": 54, - "extcErr": 1, - "mess": 3, - "namespace": 1, - "zt": 20, - "valueErr": 1, - "exportCustomTags": 2, - "tagList": 1, - "filepath": 10, - ".tagList": 1, - "exportAllCustomTags": 2, - "importCustomTags": 2, - "filePath": 2, - "zewdForm": 1, - "stripSpaces": 6, - "np": 17, - "obj": 6, - "prop": 6, - "setSessionObject": 3, - "allowJSONAccess": 1, - "sessionName": 30, - "access": 21, - "disallowJSONAccess": 1, - "JSONAccess": 1, - "existsInSession": 2, - "existsInSessionArray": 2, - "p1": 5, - "p2": 10, - "p3": 3, - "p4": 2, - "p5": 2, - "p6": 2, - "p7": 2, - "p8": 2, - "p9": 2, - "p10": 2, - "p11": 2, - "clearSessionArray": 1, - "arrayName": 35, - "setSessionArray": 1, - "itemName": 16, - "itemValue": 7, - "getSessionArray": 1, - "array": 22, - "clearArray": 2, - "set": 98, - "m": 37, - "getSessionArrayErr": 1, - "Come": 1, - "here": 4, - "if": 44, - "error": 62, - "occurred": 2, - "addToSession": 2, - "@name": 4, - "mergeToSession": 1, - "mergeGlobalToSession": 2, - "globalName": 7, - "mergeGlobalFromSession": 2, - "mergeArrayToSession": 1, - "mergeArrayToSessionObject": 2, - ".array": 1, - "mergeArrayFromSession": 1, - "mergeFromSession": 1, - "deleteFromSession": 1, - "deleteFromSessionObject": 1, - "sessionNameExists": 1, - "getSessionArrayValue": 2, - "subscript": 7, - "exists": 6, - ".exists": 1, - "sessionArrayValueExists": 2, - "deleteSessionArrayValue": 2, - "Objects": 1, - "objectName": 13, - "propertyName": 3, - "propertyValue": 5, - "comma": 3, - "x": 96, - "replace": 27, - "objectName_": 2, - "_propertyName": 2, - "_propertyName_": 2, - "_propertyValue_": 1, - "_p": 1, - "quoted": 1, - "string": 50, - "FromStr": 6, - "S": 99, - "ToStr": 4, - "InText": 4, - "old": 3, - "new": 15, - "ok": 14, - "removeDocument": 1, - "zewdDOM": 3, - "instanceName": 2, - "clearXMLIndex": 1, - "zewdSchemaForm": 1, - "closeDOM": 1, - "makeTokenString": 1, - "length": 7, - "token_": 1, - "r": 88, - "makeString": 3, - "char": 9, - "len": 8, - "create": 6, - "characters": 8, - "str": 15, - "convertDateToSeconds": 1, - "hdate": 7, - "Q": 58, - "hdate*86400": 1, - "convertSecondsToDate": 1, - "secs": 2, - "secs#86400": 1, - "getTokenExpiry": 2, - "h*86400": 1, - "h": 39, - "randChar": 1, - "R": 2, - "lowerCase": 2, - "stripLeadingSpaces": 2, - "stripTrailingSpaces": 2, - "d1": 7, - "zd": 1, - "yy": 19, - "dd": 4, - "I": 43, - "<10>": 1, - "dd=": 2, - "mm=": 3, - "1": 74, - "d1=": 1, - "2": 14, - "p1=": 1, - "mm": 7, - "p2=": 1, - "yy=": 1, - "3": 6, - "dd_": 1, - "mm_": 1, - "inetTime": 1, - "Decode": 1, - "Internet": 1, - "Format": 1, - "Time": 1, - "from": 16, - "H": 1, - "format": 2, - "Offset": 1, - "relative": 1, - "to": 74, - "GMT": 1, - "eg": 3, - "hh": 4, - "ss": 4, - "<": 20, - "_hh": 1, - "time#3600": 1, - "_mm": 1, - "time#60": 1, - "_ss": 2, - "hh_": 1, - "_mm_": 1, - "openNewFile": 2, - "openFile": 2, - "openDOM": 2, - "&": 28, - "#39": 1, - "<\",\"<\")>": 1, - "string=": 1, - "gt": 1, - "amp": 1, - "HTML": 1, - "quot": 2, - "stop": 20, - "no": 54, - "no2": 1, - "p1_c_p2": 1, - "getIP": 2, - "Get": 2, - "own": 2, - "IP": 1, - "address": 1, - "ajaxErrorRedirect": 2, - "classExport": 2, - "className": 2, - "methods": 2, - ".methods": 1, - "strx": 2, - "disableEwdMgr": 1, - "enableEwdMgr": 1, - "enableWLDAccess": 1, - "disableWLDAccess": 1, - "isSSOValid": 2, - "sso": 2, - "username": 8, - "password": 8, - "zewdMgrAjax2": 1, - "uniqueId": 1, - "nodeOID": 2, - "filename": 2, - "linkToParentSession": 2, - "zewdCompiler20": 1, - "exportToGTM": 1, - "routine": 6, - "zewdDemo": 1, - "Tutorial": 1, - "Wed": 1, - "Apr": 1, - "getLanguage": 1, - "getRequestValue": 1, - "login": 1, - "getTextValue": 4, - "getPasswordValue": 2, - "_username_": 1, - "_password": 1, - "logine": 1, - "message": 8, - "textid": 1, - "errorMessage": 1, - "ewdDemo": 8, - "clearList": 2, - "appendToList": 4, - "addUsername": 1, - "newUsername": 5, - "newUsername_": 1, - "setTextValue": 4, - "testValue": 1, - "pass": 24, - "getSelectValue": 3, - "_user": 1, - "getPassword": 1, - "setPassword": 1, - "getObjDetails": 1, - "data": 43, - "_user_": 1, - "_data": 2, - "setRadioOn": 2, - "initialiseCheckbox": 2, - "setCheckboxOn": 3, - "createLanguageList": 1, - "setMultipleSelectOn": 2, - "clearTextArea": 2, - "textarea": 2, - "createTextArea": 1, - ".textarea": 1, - "userType": 4, - "setMultipleSelectValues": 1, - ".selected": 1, - "testField3": 3, - ".value": 1, - "testField2": 1, - "field3": 1, - "must": 8, - "null": 6, - "dateTime": 1, - "start": 26, - "student": 14, - "zwrite": 1, - "write": 59, - "order": 11, - "do": 15, - "quit": 30, - "file": 10, - "part": 3, - "DataBallet.": 4, - "C": 9, - "Laurent": 2, - "Parenteau": 2, - "": 2, - "DataBallet": 4, - "encode": 1, - "Return": 1, - "base64": 6, - "URL": 2, - "Filename": 1, - "safe": 3, - "alphabet": 2, - "RFC": 1, - "todrop": 2, - "Populate": 1, - "values": 4, - "on": 17, - "first": 10, - "use": 5, - "only.": 1, - "zextract": 3, - "zlength": 3, - "Comment": 1, - "comment": 4, - "block": 1, - "comments": 5, - "always": 2, - "semicolon": 1, - "next": 1, - "while": 4, - "legal": 1, - "blank": 1, - "whitespace": 2, - "alone": 1, - "valid": 2, - "**": 4, - "Comments": 1, - "graphic": 3, - "character": 5, - "such": 1, - "@#": 1, - "*": 6, - "{": 5, - "}": 5, - "]": 15, - "/": 3, - "space": 1, - "considered": 1, - "though": 1, - "t": 12, - "it.": 2, - "ASCII": 2, - "whose": 1, - "numeric": 8, - "code": 29, - "above": 3, - "below": 1, - "are": 14, - "NOT": 2, - "allowed": 18, - "routine.": 1, - "multiple": 1, - "semicolons": 1, - "okay": 1, - "has": 7, - "tag": 2, - "after": 3, - "does": 1, - "command": 11, - "Tag1": 1, - "Tags": 2, - "an": 14, - "uppercase": 2, - "lowercase": 1, - "alphabetic": 2, - "series": 2, - "HELO": 1, - "most": 1, - "common": 1, - "label": 5, - "LABEL": 1, - "followed": 1, - "directly": 1, - "open": 1, - "parenthesis": 2, - "formal": 1, - "list": 1, - "variables": 3, - "close": 1, - "ANOTHER": 1, - "X": 19, - "Normally": 1, - "subroutine": 1, - "would": 2, - "ended": 1, - "we": 1, - "taking": 1, - "advantage": 1, - "rule": 1, - "END": 1, - "implicit": 1, - "Digest": 2, - "Extension": 9, - "Piotr": 7, - "Koper": 7, - "": 7, - "trademark": 2, - "Fidelity": 2, - "Information": 2, - "Services": 2, - "Inc.": 2, - "//sourceforge.net/projects/fis": 2, - "gtm/": 2, - "simple": 2, - "OpenSSL": 3, - "based": 1, - "digest": 19, - "extension": 3, - "rewrite": 1, - "EVP_DigestInit": 1, - "usage": 3, - "example": 5, - "additional": 5, - "M": 24, - "wrapper.": 1, - "//www.openssl.org/docs/crypto/EVP_DigestInit.html": 1, - "The": 11, - "return": 7, - "digest.init": 3, - "usually": 1, - "when": 11, - "invalid": 4, - "algorithm": 1, - "was": 5, - "specification.": 1, - "Anyway": 1, - "properly": 1, - "used": 6, - "never": 4, - "fail.": 1, - "Please": 2, - "feel": 2, - "contact": 2, - "me": 2, - "questions": 2, - "returns": 7, - "HEX": 1, - "all": 8, - "one": 5, - "digest.update": 2, - ".c": 2, - ".m": 11, - "digest.final": 2, - ".d": 1, - "init": 6, - "alg": 3, - "context": 1, - "handler": 9, - "try": 1, - "etc": 1, - "returned": 1, - "occurs": 1, - "e.g.": 2, - "unknown": 1, - "update": 1, - "ctx": 4, - "msg": 6, - "updates": 1, - ".ctx": 2, - ".msg": 1, - "final": 1, - "hex": 1, - "encoded": 8, - "frees": 1, - "memory": 1, - "allocated": 1, - ".digest": 1, - "algorithms": 1, - "availability": 1, - "depends": 1, - "libcrypto": 1, - "configuration": 1, - "md4": 1, - "md5": 2, - "sha": 1, - "sha1": 1, - "sha224": 1, - "sha256": 1, - "sha512": 1, - "dss1": 1, - "ripemd160": 1, - "These": 2, - "two": 2, - "routines": 6, - "illustrate": 1, - "dynamic": 1, - "scope": 1, - "triangle1": 1, - "sum": 15, - "main2": 1, - "y": 33, - "triangle2": 1, - "compute": 2, - "Fibonacci": 1, - "b": 64, - "term": 10, - "start1": 2, - "entry": 5, - "start2": 1, - "function": 6, - "computes": 1, - "factorial": 3, - "f*n": 1, - "main": 1, - "GMRGPNB0": 1, - "CISC/JH/RM": 1, - "NARRATIVE": 1, - "BUILDER": 1, - "TEXT": 5, - "GENERATOR": 1, - "cont.": 1, - "/20/91": 1, - "Text": 1, - "Generator": 1, - "Jan": 1, - "ENTRY": 2, - "WITH": 1, - "GMRGA": 1, - "SET": 3, - "TO": 6, - "POINT": 1, - "AT": 1, - "WHICH": 1, - "WANT": 1, - "START": 1, - "BUILDING": 1, - "GMRGE0": 11, - "GMRGADD": 4, - "D": 64, - "GMR": 6, - "GMRGA0": 11, - "GMRGPDA": 9, - "GMRGCSW": 2, - "NOW": 1, - "DTC": 1, - "GMRGB0": 9, - "O": 24, - "GMRGST": 6, - "GMRGPDT": 2, - "STAT": 8, - "GMRGRUT0": 3, - "GMRGF0": 3, - "GMRGSTAT": 8, - "P": 68, - "_GMRGB0_": 2, - "GMRD": 6, - "GMRGSSW": 3, - "SNT": 1, - "GMRGPNB1": 1, - "GMRGNAR": 8, - "GMRGPAR_": 2, - "_GMRGSPC_": 3, - "_GMRGRM": 2, - "_GMRGE0": 1, - "STORETXT": 1, - "GMRGRUT1": 1, - "GMRGSPC": 3, - "F": 10, - "GMRGD0": 7, - "ALIST": 1, - "G": 40, - "TMP": 26, - "J": 38, - "GMRGPLVL": 6, - "GMRGA0_": 1, - "_GMRGD0_": 1, - "_GMRGSSW_": 1, - "_GMRGADD": 1, - "GMRGI0": 6, - "label1": 1, - "if1": 2, - "statement": 3, - "if2": 2, - "statements": 1, - "contrasted": 1, - "": 3, - "variable": 8, - "a=": 3, - "smaller": 3, - "than": 4, - "b=": 4, - "if3": 1, - "else": 7, - "clause": 2, - "if4": 1, - "bodies": 1, - "exercise": 1, - "car": 14, - "@": 8, - "MD5": 6, - "Implementation": 1, - "It": 2, - "works": 1, - "ZCHSET": 2, - "please": 1, - "don": 1, - "only": 9, - "joke.": 1, - "Serves": 1, - "well": 2, - "reverse": 1, - "engineering": 1, - "obtaining": 1, - "boolean": 2, - "integer": 1, - "addition": 1, - "modulo": 1, - "division.": 1, - "//en.wikipedia.org/wiki/MD5": 1, - "#64": 1, - "msg_": 1, - "_m_": 1, - "n64": 2, - "*8": 2, - "read": 2, - ".p": 1, - "..": 28, - "...": 6, - "*i": 3, - "#16": 3, - "xor": 4, - "rotate": 5, - "#4294967296": 6, - "n32h": 5, - "bit": 5, - "#2": 1, - "*2147483648": 2, - "a#2": 1, - "b#2": 1, - ".a": 1, - ".b": 1, - "rol": 1, - "a*": 1, - "**n": 1, - "c#4294967296": 1, - "*n": 1, - "n#256": 1, - "n#16": 2, - "MDB": 60, - "M/DB": 2, - "Mumps": 1, - "Emulation": 1, - "Amazon": 1, - "SimpleDB": 1, - "buildDate": 1, - "indexLength": 10, - "Note": 2, - "keyId": 108, - "been": 4, - "tested": 1, - "these": 1, - "called": 8, - "To": 2, - "Initialise": 2, - "service": 1, - "//192.168.1.xxx/mdb/test.mgwsi": 1, - "Action": 2, - "addUser": 2, - "userKeyId": 6, - "userSecretKey": 6, - "requestId": 17, - "boxUsage": 11, - "startTime": 21, - ".startTime": 5, - "MDBUAF": 2, - "end": 33, - ".boxUsage": 22, - "createDomain": 1, - "domainName": 38, - "dn": 4, - "dnx": 3, - "id": 33, - "noOfDomains": 12, - "MDBConfig": 1, - "getDomainId": 3, - "found": 7, - "namex": 8, - "buildItemNameIndex": 2, - "domainId": 53, - "itemId": 41, - "itemValuex": 3, - "countDomains": 2, - "key": 22, - "deleteDomain": 2, - "listDomains": 1, - "maxNoOfDomains": 2, - "nextToken": 7, - "domainList": 3, - "fullName": 3, - "decodeBase64": 1, - "encodeBase64": 1, - "itemExists": 1, - "getItemId": 2, - "getAttributeValueId": 3, - "attribId": 36, - "valuex": 13, - "putAttributes": 2, - "attributes": 32, - "valueId": 16, - "xvalue": 4, - "add": 5, - "Item": 1, - "Domain": 1, - "itemNamex": 4, - "parseJSON": 1, - "zmwire": 53, - "attributesJSON": 1, - ".attributes": 5, - "attribute": 14, - "getAttributeId": 2, - "domain": 1, - "Not": 1, - "same": 2, - "remove": 6, - "existing": 2, - "now": 1, - "name/value": 2, - "pair": 1, - "getAttributes": 2, - "suppressBoxUsage": 1, - "attrNo": 9, - "valueNo": 6, - "delete": 2, - "item": 2, - "associated": 1, - "queryIndex": 1, - "records": 2, - "specified": 4, - "pairs": 2, - "vno": 2, - "left": 5, - "completely": 3, - "references": 1, - "maxNoOfItems": 3, - "itemList": 12, - "session": 1, - "identifier": 1, - "stored": 1, - "queryExpression": 16, - "relink": 1, - "zewdGTMRuntime": 1, - "CGIEVAR": 1, - "cgi": 1, - "unescName": 5, - "urlDecode": 2, - "KEY": 36, - "response": 29, - "WebLink": 1, - "point": 2, - "action": 15, - "AWSAcessKeyId": 1, - "db": 9, - "hash": 1, - "itemsAndAttrs": 2, - "secretKey": 1, - "signatureMethod": 2, - "signatureVersion": 3, - "stringToSign": 2, - "rltKey": 2, - "_action_": 2, - "h_": 3, - "mdbKey": 2, - "errorResponse": 9, - "initialise": 3, - ".requestId": 7, - "createResponse": 4, - "installMDBM": 1, - "authenticate": 1, - "MDBSession": 1, - "createResponseStringToSign": 1, - "Security": 1, - "OK": 6, - "_db": 1, - "MDBAPI": 1, - "lineNo": 19, - "CacheTempEWD": 16, - "_db_": 1, - "db_": 1, - "_action": 1, - "resp": 5, - "metaData": 1, - "domainMetadata": 1, - ".metaData": 1, - "paramName": 8, - "paramValue": 5, - "_i_": 5, - "Query": 1, - "DomainName": 2, - "QueryExpression": 2, - "MaxNumberOfItems": 2, - "NextToken": 3, - "QueryWithAttributes": 1, - "AttributeName.": 2, - "Select": 2, - "SelectExpression": 1, - "entering": 1, - "runSelect.": 1, - "selectExpression": 3, - "finished": 1, - "runSelect": 3, - "count": 18, - "select": 3, - "where": 6, - "limit": 14, - "asc": 1, - "inValue": 6, - "expr": 18, - "rel": 2, - "itemStack": 3, - "between": 2, - "<=\">": 1, - "lastWord=": 7, - "inAttr=": 5, - "expr=": 10, - "thisWord=": 7, - "inAttr": 2, - "c=": 28, - "queryExpression=": 4, - "_queryExpression": 2, - "4": 5, - "isNull": 1, - "5": 1, - "8": 1, - "isNotNull": 1, - "9": 1, - "offset": 6, - "prevName": 1, - "np=": 1, - "diffNames": 6, - "_term": 3, - "expr_": 1, - "_orderBy": 1, - "runQuery": 2, - ".itemList": 4, - "escVals": 1, - "str_c": 2, - "_x_": 1, - "query": 4, - "orderBy": 1, - "_query": 1, - "parseSelect": 1, - ".domainName": 2, - ".queryExpression": 1, - ".orderBy": 1, - ".limit": 1, - "executeSelect": 1, - ".itemStack": 1, - "***": 2, - "listCopy": 3, - "N.N": 12, - "N.N1": 4, - "externalSelect": 2, - "json": 9, - "_keyId_": 1, - "_selectExpression": 1, - "spaces": 3, - "string_spaces": 1, - "test": 6, - "miles": 4, - "gallons": 4, - "miles/gallons": 1, - "computepesimist": 1, - "miles/": 1, - "computeoptimist": 1, - "/gallons": 1, - "Mumtris": 3, - "tetris": 1, - "game": 1, - "MUMPS": 1, - "fun.": 1, - "Resize": 1, - "terminal": 2, - "maximize": 1, - "PuTTY": 1, - "window": 1, - "restart": 3, - "so": 4, - "report": 1, - "true": 2, - "size": 3, - "mumtris.": 1, - "Try": 2, - "setting": 3, - "ansi": 2, - "compatible": 1, - "cursor": 1, - "positioning.": 1, - "NOTICE": 1, - "uses": 1, - "making": 1, - "delays": 1, - "lower": 1, - "s.": 1, - "That": 1, - "means": 2, - "CPU": 1, - "fall": 5, - "lock": 2, - "clear": 6, - "change": 6, - "preview": 3, - "over": 2, - "exit": 3, - "short": 1, - "circuit": 1, - "redraw": 3, - "timeout": 1, - "harddrop": 1, - "other": 1, - "ex": 5, - "hd": 3, - "*c": 1, - "<0&'d>": 1, - "i=": 14, - "st": 6, - "t10m": 1, - "0": 23, - "<0>": 2, - "q=": 6, - "d=": 1, - "zb": 2, - "right": 3, - "fl=": 1, - "gr=": 1, - "hl": 2, - "help": 2, - "drop": 2, - "hd=": 1, - "matrix": 2, - "stack": 8, - "draw": 3, - "ticks": 2, - "h=": 2, - "1000000000": 1, - "e=": 1, - "t10m=": 1, - "100": 2, - "n=": 1, - "ne=": 1, - "x=": 5, - "y=": 3, - "r=": 3, - "collision": 6, - "score": 5, - "k=": 1, - "j=": 4, - "<1))))>": 1, - "800": 1, - "200": 1, - "lv": 5, - "lc=": 1, - "10": 1, - "lc": 3, - "mt_": 2, - "cls": 6, - ".s": 5, - "dh/2": 6, - "dw/2": 6, - "*s": 4, - "u": 6, - "echo": 1, - "intro": 1, - "workaround": 1, - "ANSI": 1, - "driver": 1, - "NL": 1, - "some": 1, - "place": 9, - "clearscreen": 1, - "N": 19, - "h/2": 3, - "*w/2": 3, - "fill": 3, - "fl": 2, - "*x": 1, - "mx": 4, - "my": 5, - "step": 8, - "**lv*sb": 1, - "*lv": 1, - "sc": 3, - "ne": 2, - "gr": 1, - "w*3": 1, - "dev": 1, - "zsh": 1, - "dw": 1, - "dh": 1, - "elements": 3, - "elemId": 3, - "rotateVersions": 1, - "rotateVersion": 2, - "bottom": 1, - "coordinate": 1, - "____": 1, - "__": 2, - "||": 1, - "ax": 2, - "bx": 2, - "cx": 2, - "ay": 2, - "cy": 2, - "sumx": 3, - "sqrx": 3, - "sumxy": 5, - "x*x": 1, - "x*y": 1, - "PCRE": 23, - "tries": 1, - "deliver": 1, - "best": 2, - "possible": 5, - "interface": 1, - "world": 4, - "providing": 1, - "support": 3, - "arrays": 1, - "stringified": 2, - "parameter": 1, - "names": 3, - "simplified": 1, - "API": 7, - "locales": 2, - "exceptions": 1, - "Perl5": 1, - "Global": 8, - "Match.": 1, - "pcreexamples.m": 2, - "comprehensive": 1, - "examples": 4, - "pcre": 59, - "beginner": 1, - "level": 5, - "tips": 1, - "match": 41, - "limits": 6, - "exception": 12, - "handling": 2, - "UTF": 17, - "GT.M.": 1, - "out": 2, - "known": 2, - "book": 1, - "regular": 1, - "expressions": 1, - "//regex.info/": 1, - "For": 3, - "information": 1, - "//pcre.org/": 1, - "Initial": 2, - "release": 2, - "pkoper": 2, - "pcre.version": 1, - "config": 3, - "case": 7, - "insensitive": 7, - "protect": 11, - "erropt": 6, - "isstring": 5, - "pcre.config": 1, - ".name": 1, - ".erropt": 3, - ".isstring": 1, - ".n": 20, - "ec": 10, - "compile": 14, - "pattern": 21, - "options": 45, - "locale": 24, - "mlimit": 20, - "reclimit": 19, - "optional": 16, - "joined": 3, - "Unix": 1, - "pcre_maketables": 2, - "cases": 1, - "undefined": 1, - "environment": 7, - "defined": 2, - "LANG": 4, - "LC_*": 1, - "output": 49, - "Debian": 2, - "tip": 1, - "dpkg": 1, - "reconfigure": 1, - "enable": 1, - "system": 1, - "wide": 1, - "number": 5, - "internal": 3, - "matching": 4, - "calls": 1, - "pcre_exec": 4, - "execution": 2, - "manual": 2, - "details": 5, - "depth": 1, - "recursion": 1, - "calling": 2, - "ref": 41, - "err": 4, - "erroffset": 3, - "pcre.compile": 1, - ".pattern": 3, - ".ref": 13, - ".err": 1, - ".erroffset": 1, - "exec": 4, - "subject": 24, - "startoffset": 3, - "octets": 2, - "starts": 1, - "like": 4, - "chars": 3, - "pcre.exec": 2, - ".subject": 3, - "zl": 7, - "ec=": 7, - "ovector": 25, - "element": 1, - "code=": 4, - "ovecsize": 5, - "fullinfo": 3, - "OPTIONS": 2, - "SIZE": 1, - "CAPTURECOUNT": 1, - "BACKREFMAX": 1, - "FIRSTBYTE": 1, - "FIRSTTABLE": 1, - "LASTLITERAL": 1, - "NAMEENTRYSIZE": 1, - "NAMECOUNT": 1, - "STUDYSIZE": 1, - "OKPARTIAL": 1, - "JCHANGED": 1, - "HASCRORLF": 1, - "MINLENGTH": 1, - "JIT": 1, - "JITSIZE": 1, - "NAME": 3, - "nametable": 4, - "index": 1, - "indexed": 4, - "substring": 1, - "begin": 18, - "begin=": 3, - "end=": 4, - "contains": 2, - "octet": 4, - "UNICODE": 1, - "ze": 8, - "begin_": 1, - "_end": 1, - "store": 6, - "stores": 1, - "captured": 6, - "key=": 2, - "gstore": 3, - "round": 12, - "byref": 5, - "global": 26, - "ref=": 3, - "l=": 2, - "capture": 10, - "indexes": 1, - "extended": 1, - "NAMED_ONLY": 2, - "named": 12, - "groups": 5, - "OVECTOR": 2, - "namedonly": 9, - "options=": 4, - "o=": 12, - "namedonly=": 2, - "ovector=": 2, - "NO_AUTO_CAPTURE": 2, - "_capture_": 2, - "matches": 10, - "s=": 4, - "_s_": 1, - "GROUPED": 1, - "group": 4, - "result": 3, - "patterns": 3, - "pcredemo": 1, - "pcreccp": 1, - "cc": 1, - "procedure": 2, - "Perl": 1, - "utf8": 2, - "crlf": 6, - "empty": 7, - "skip": 6, - "determine": 1, - "them": 1, - "before": 2, - "byref=": 2, - "check": 2, - "UTF8": 2, - "double": 1, - "utf8=": 1, - "crlf=": 3, - "NL_CRLF": 1, - "NL_ANY": 1, - "NL_ANYCRLF": 1, - "none": 1, - "build": 2, - "NEWLINE": 1, - ".start": 1, - "unwind": 1, - "call": 1, - "optimize": 1, - "leave": 1, - "advance": 1, - "LF": 1, - "CR": 1, - "CRLF": 1, - "middle": 1, - ".i": 2, - ".match": 2, - ".round": 2, - ".byref": 2, - ".ovector": 2, - "subst": 3, - "last": 4, - "occurrences": 1, - "matched": 1, - "back": 4, - "th": 3, - "replaced": 1, - "substitution": 2, - "begins": 1, - "substituted": 2, - "defaults": 3, - "ends": 1, - "backref": 1, - "boffset": 1, - "prepare": 1, - "reference": 2, - ".subst": 1, - ".backref": 1, - "silently": 1, - "zco": 1, - "": 1, - "s/": 6, - "b*": 7, - "/Xy/g": 6, - "print": 8, - "aa": 9, - "et": 4, - "direct": 3, - "take": 1, - "default": 6, - "setup": 3, - "trap": 10, - "source": 3, - "location": 5, - "argument": 1, - "@ref": 2, - "E": 12, - "COMPILE": 2, - "meaning": 1, - "zs": 2, - "re": 2, - "raise": 3, - "XC": 1, - "specific": 3, - "U16384": 1, - "U16385": 1, - "U16386": 1, - "U16387": 1, - "U16388": 2, - "U16389": 1, - "U16390": 1, - "U16391": 1, - "U16392": 2, - "U16393": 1, - "NOTES": 1, - "U16401": 2, - "raised": 2, - "i.e.": 3, - "NOMATCH": 2, - "ever": 1, - "uncommon": 1, - "situation": 1, - "too": 1, - "small": 1, - "considering": 1, - "controlled": 1, - "U16402": 1, - "U16403": 1, - "U16404": 1, - "U16405": 1, - "U16406": 1, - "U16407": 1, - "U16408": 1, - "U16409": 1, - "U16410": 1, - "U16411": 1, - "U16412": 1, - "U16414": 1, - "U16415": 1, - "U16416": 1, - "U16417": 1, - "U16418": 1, - "U16419": 1, - "U16420": 1, - "U16421": 1, - "U16423": 1, - "U16424": 1, - "U16425": 1, - "U16426": 1, - "U16427": 1, - "Examples": 4, - "pcre.m": 1, - "parameters": 1, - "pcreexamples": 32, - "shining": 1, - "Test": 1, - "Simple": 2, - "zwr": 17, - "Match": 4, - "grouped": 2, - "Just": 1, - "Change": 2, - "word": 3, - "Escape": 1, - "sequence": 1, - "More": 1, - "Low": 1, - "api": 1, - "Setup": 1, - "myexception2": 2, - "st_": 1, - "zl_": 2, - "Compile": 2, - ".options": 1, - "Run": 1, - ".offset": 1, - "used.": 2, - "strings": 1, - "submitted": 1, - "exact": 1, - "usable": 1, - "integers": 1, - "way": 1, - "i*2": 3, - "what": 2, - "/mg": 2, - "aaa": 1, - "nbb": 1, - ".*": 1, - "discover": 1, - "stackusage": 3, - "Locale": 5, - "Support": 1, - "Polish": 1, - "I18N": 2, - "PCRE.": 1, - "Polish.": 1, - "second": 1, - "letter": 1, - "": 1, - "which": 4, - "ISO8859": 1, - "//en.wikipedia.org/wiki/Polish_code_pages": 1, - "complete": 1, - "listing": 1, - "CHAR": 1, - "different": 3, - "modes": 1, - "In": 1, - "probably": 1, - "expected": 1, - "working": 1, - "single": 2, - "ISO": 3, - "chars.": 1, - "Use": 1, - "zch": 7, - "prepared": 1, - "GTM": 8, - "BADCHAR": 1, - "errors.": 1, - "Also": 1, - "others": 1, - "might": 1, - "expected.": 1, - "POSIX": 1, - "localization": 1, - "nolocale": 2, - "zchset": 2, - "isolocale": 2, - "utflocale": 2, - "LC_CTYPE": 1, - "Set": 2, - "obtain": 2, - "results.": 1, - "envlocale": 2, - "ztrnlnm": 2, - "Notes": 1, - "Enabling": 1, - "native": 1, - "requires": 1, - "libicu": 2, - "gtm_chset": 1, - "gtm_icu_version": 1, - "recompiled": 1, - "object": 4, - "files": 4, - "Instructions": 1, - "Install": 1, - "libicu48": 2, - "apt": 1, - "get": 2, - "install": 1, - "append": 1, - "chown": 1, - "gtm": 1, - "/opt/gtm": 1, - "Startup": 1, - "errors": 6, - "INVOBJ": 1, - "Cannot": 1, - "ZLINK": 1, - "due": 1, - "unexpected": 1, - "Object": 1, - "compiled": 1, - "CHSET": 1, - "written": 3, - "startup": 1, - "correct": 1, - "above.": 1, - "Limits": 1, - "built": 1, - "recursion.": 1, - "Those": 1, - "prevent": 1, - "engine": 1, - "very": 2, - "long": 2, - "runs": 2, - "especially": 1, - "there": 2, - "paths": 2, - "tree": 1, - "checked.": 1, - "Functions": 1, - "using": 4, - "itself": 1, - "allows": 1, - "MATCH_LIMIT": 1, - "MATCH_LIMIT_RECURSION": 1, - "arguments": 1, - "library": 1, - "compilation": 2, - "Example": 1, - "longrun": 3, - "Equal": 1, - "corrected": 1, - "shortrun": 2, - "Enforced": 1, - "enforcedlimit": 2, - "Exception": 2, - "Handling": 1, - "Error": 1, - "conditions": 1, - "handled": 1, - "zc": 1, - "codes": 1, - "labels": 1, - "file.": 1, - "When": 2, - "neither": 1, - "nor": 1, - "within": 1, - "mechanism.": 1, - "depending": 1, - "caller": 1, - "exception.": 1, - "lead": 1, - "writing": 4, - "prompt": 1, - "terminating": 1, - "image.": 1, - "define": 2, - "handlers.": 1, - "Handler": 1, - "No": 17, - "nohandler": 4, - "Pattern": 1, - "failed": 1, - "unmatched": 1, - "parentheses": 1, - "<-->": 1, - "HERE": 1, - "RTSLOC": 2, - "At": 2, - "SETECODE": 1, - "Non": 1, - "assigned": 1, - "ECODE": 1, - "32": 1, - "GT": 1, - "image": 1, - "terminated": 1, - "myexception1": 3, - "zt=": 1, - "mytrap1": 2, - "zg": 2, - "mytrap3": 1, - "DETAILS": 1, - "executed": 1, - "frame": 1, - "called.": 1, - "deeper": 1, - "frames": 1, - "already": 1, - "dropped": 1, - "local": 1, - "available": 1, - "context.": 1, - "Thats": 1, - "why": 1, - "doesn": 1, - "unless": 1, - "cleared.": 1, - "Always": 1, - "done.": 2, - "Execute": 1, - "p5global": 1, - "p5replace": 1, - "p5lf": 1, - "p5nl": 1, - "newline": 1, - "utf8support": 1, - "myexception3": 1, - "contrasting": 1, - "postconditionals": 1, - "IF": 9, - "commands": 1, - "post1": 1, - "postconditional": 3, - "purposely": 4, - "TEST": 16, - "false": 5, - "post2": 1, - "special": 2, - "post": 1, - "condition": 1, - "PRCAAPR": 1, - "WASH": 1, - "ISC@ALTOONA": 1, - "PA/RGY": 1, - "PATIENT": 5, - "ACCOUNT": 1, - "PROFILE": 1, - "CONT": 1, - "/9/94": 1, - "AM": 1, - "V": 2, - "Accounts": 1, - "Receivable": 1, - "**198": 1, - "Mar": 1, - "Per": 1, - "VHA": 1, - "Directive": 1, - "modified.": 1, - "EN": 2, - "PRCATY": 2, - "NEW": 3, - "DIC": 6, - "Y": 26, - "DEBT": 10, - "PRCADB": 5, - "DA": 4, - "PRCA": 14, - "COUNT": 2, - "OUT": 2, - "SEL": 1, - "BILL": 11, - "BAT": 8, - "TRAN": 5, - "DR": 4, - "DXS": 1, - "DTOUT": 2, - "DIROUT": 1, - "DIRUT": 1, - "DUOUT": 1, - "ASK": 3, - "DPTNOFZY": 2, - "DPTNOFZK": 2, - "K": 5, - "DTIME": 1, - "UPPER": 1, - "VALM1": 1, - "RCD": 1, - "DISV": 2, - "DUZ": 3, - "NAM": 1, - "RCFN01": 1, - "COMP": 2, - "EN1": 1, - "PRCAATR": 1, - "Y_": 3, - "PRCADB_": 1, - "HDR": 1, - "PRCAAPR1": 3, - "HDR2": 1, - "DIS": 1, - "STAT1": 2, - "_PRCATY_": 1, - "COMP1": 2, - "RCY": 5, - "COMP2": 2, - "_STAT_": 1, - "_STAT": 1, - "payments": 1, - "_TRAN": 1, - "Keith": 1, - "Lynch": 1, - "p#f": 1, - "PXAI": 1, - "ISL/JVS": 1, - "ISA/KWP": 1, - "ESW": 1, - "PCE": 2, - "DRIVING": 1, - "RTN": 1, - "/20/03": 1, - "am": 1, - "CARE": 1, - "ENCOUNTER": 2, - "**15": 1, - "Aug": 1, - "DATA2PCE": 1, - "PXADATA": 7, - "PXAPKG": 9, - "PXASOURC": 10, - "PXAVISIT": 8, - "PXAUSER": 6, - "PXANOT": 3, - "ERRRET": 2, - "PXAPREDT": 2, - "PXAPROB": 15, - "PXACCNT": 2, - "add/edit/delete": 1, - "PCE.": 1, - "required": 4, - "pointer": 4, - "visit": 3, - "related.": 1, - "then": 2, - "nodes": 1, - "needed": 1, - "lookup/create": 1, - "visit.": 1, - "adding": 1, - "data.": 1, - "displayed": 1, - "screen": 1, - "debugging": 1, - "initial": 1, - "code.": 1, - "passed": 4, - "reference.": 2, - "present": 1, - "PXKERROR": 2, - "caller.": 1, - "want": 1, - "edit": 1, - "Primary": 3, - "Provider": 1, - "moment": 1, - "editing": 2, - "being": 1, - "dangerous": 1, - "dotted": 1, - "name.": 1, - "warnings": 1, - "occur": 1, - "They": 1, - "form": 1, - "general": 1, - "description": 1, - "problem.": 1, - "ERROR1": 1, - "GENERAL": 2, - "ERRORS": 4, - "SUBSCRIPT": 5, - "PASSED": 4, - "IN": 4, - "FIELD": 2, - "FROM": 5, - "WARNING2": 1, - "WARNINGS": 2, - "WARNING3": 1, - "SERVICE": 1, - "CONNECTION": 1, - "REASON": 9, - "ERROR4": 1, - "PROBLEM": 1, - "LIST": 1, - "Returns": 2, - "PFSS": 2, - "Account": 2, - "Reference": 2, - "known.": 1, - "Returned": 1, - "located": 1, - "Order": 1, - "#100": 1, - "process": 3, - "processed": 1, - "could": 1, - "incorrectly": 1, - "VARIABLES": 1, - "NOVSIT": 1, - "PXAK": 20, - "DFN": 1, - "PXAERRF": 3, - "PXADEC": 1, - "PXELAP": 1, - "PXASUB": 2, - "VALQUIET": 2, - "PRIMFND": 7, - "PXAERROR": 1, - "PXAERR": 7, - "PRVDR": 1, - "needs": 1, - "look": 1, - "up": 1, - "passed.": 1, - "@PXADATA@": 8, - "SOR": 1, - "SOURCE": 2, - "PKG2IEN": 1, - "VSIT": 1, - "PXAPIUTL": 2, - "TMPSOURC": 1, - "SAVES": 1, - "CREATES": 1, - "VST": 2, - "VISIT": 3, - "KILL": 1, - "VPTR": 1, - "PXAIVSTV": 1, - "ERR": 2, - "PXAIVST": 1, - "PRV": 1, - "PROVIDER": 1, - "AUPNVSIT": 1, - ".I": 4, - "..S": 7, - "status": 2, - "Secondary": 2, - ".S": 6, - "..I": 2, - "PXADI": 4, - "NODE": 5, - "SCREEN": 2, - "VA": 1, - "EXTERNAL": 2, - "INTERNAL": 2, - "ARRAY": 2, - "PXAICPTV": 1, - "SEND": 1, - "W": 4, - "BLD": 2, - "DIALOG": 4, - ".PXAERR": 3, - "MSG": 2, - "GLOBAL": 1, - "NA": 1, - "PROVDRST": 1, - "Check": 1, - "provider": 1, - "PRVIEN": 14, - "DETS": 7, - "DIQ": 3, - "PRI": 3, - "PRVPRIM": 2, - "AUPNVPRV": 2, - "U": 14, - ".04": 1, - "DIQ1": 1, - "POVPRM": 1, - "POVARR": 1, - "STOP": 1, - "LPXAK": 4, - "ORDX": 14, - "NDX": 7, - "ORDXP": 3, - "DX": 2, - "ICD9": 2, - "AUPNVPOV": 2, - "@POVARR@": 6, - "force": 1, - "originally": 1, - "primary": 1, - "diagnosis": 1, - "flag": 1, - ".F": 2, - "..E": 1, - "...S": 5, - "decode": 1, - "val": 5, - "Decoded": 1, - "Encoded": 1, - "decoded": 3, - "decoded_": 1, - "safechar": 3, - "zchar": 1, - "encoded_c": 1, - "encoded_": 2, - "FUNC": 1, - "DH": 1, - "zascii": 1, - "WVBRNOT": 1, - "HCIOFO/FT": 1, - "JR": 1, - "IHS/ANMC/MWR": 1, - "BROWSE": 1, - "NOTIFICATIONS": 1, - "/30/98": 1, - "WOMEN": 1, - "WVDATE": 8, - "WVENDDT1": 2, - "WVIEN": 13, - "..F": 2, - "WV": 8, - "WVXREF": 1, - "WVDFN": 6, - "SELECTING": 1, - "ONE": 2, - "CASE": 1, - "MANAGER": 1, - "AND": 3, - "THIS": 3, - "DOESN": 1, - "WVE": 2, - "": 2, - "STORE": 3, - "WVA": 2, - "WVBEGDT1": 1, - "NOTIFICATION": 1, - "IS": 3, - "QUEUED.": 1, - "WVB": 4, - "OR": 2, - "OPEN": 1, - "ONLY": 1, - "CLOSED.": 1, - ".Q": 1, - "EP": 4, - "ALREADY": 1, - "LL": 1, - "SORT": 3, - "ABOVE.": 1, - "DATE": 1, - "WVCHRT": 1, - "SSN": 1, - "WVUTL1": 2, - "SSN#": 1, - "WVNAME": 4, - "WVACC": 4, - "ACCESSION#": 1, - "WVSTAT": 1, - "STATUS": 2, - "WVUTL4": 1, - "WVPRIO": 5, - "PRIORITY": 1, - "WVCHRT_U_WVNAME_U_WVDATE_U_WVACC_U_WVSTAT_U_WVPRIO_U_WVIEN": 1, - "WVC": 4, - "COPYGBL": 3, - "COPY": 1, - "MAKE": 1, - "IT": 1, - "FLAT.": 1, - "...F": 1, - "....S": 1, - "DEQUEUE": 1, - "TASKMAN": 1, - "QUEUE": 1, - "OF": 2, - "PRINTOUT.": 1, - "SETVARS": 2, - "WVUTL5": 2, - "WVBRNOT1": 2, - "EXIT": 1, - "FOLLOW": 1, - "CALLED": 1, - "PROCEDURE": 1, - "FOLLOWUP": 1, - "MENU.": 1, - "WVBEGDT": 1, - "DT": 2, - "WVENDDT": 1, - "DEVICE": 1, - "WVBRNOT2": 1, - "WVPOP": 1, - "WVLOOP": 1, - "ZDIOUT1": 1, - "Experimental": 1, - "FileMan": 1, - "host": 2, - "Open": 1, - "Source": 1, - "Electronic": 1, - "Health": 1, - "Record": 1, - "Agent": 1, - "Licensed": 1, - "Apache": 1, - "Version": 1, - "may": 3, - "except": 1, - "compliance": 1, - "License.": 2, - "//www.apache.org/licenses/LICENSE": 1, - "Unless": 1, - "applicable": 1, - "law": 1, - "agreed": 1, - "BASIS": 1, - "WARRANTIES": 1, - "CONDITIONS": 1, - "KIND": 1, - "express": 1, - "implied.": 1, - "governing": 1, - "permissions": 2, - "limitations": 1, - "ASKFILE": 1, - "FILE": 5, - "ASKDIR": 1, - "DIR": 3, - "SAVEFILE": 2, - "Save": 1, - "given": 1, - "directory": 1, - "CHECK": 1, - "FGR": 4, - "_FILE": 1, - "IO": 4, - "DIR_": 1, - "L": 1, - "FILENAME": 1, - "_IO_": 1, - "_P_": 1, - "NM": 1, - "non": 1, - "printing": 1, - "escaped": 1, - "evaluation": 1, - "RHS": 1, - "SET.": 1, - "TODO": 1, - "Caller": 1, - "indentation": 1, - "tab": 1, - "space.": 1, - "M/Wire": 4, - "Protocol": 2, - "Systems": 1, - "By": 1, - "server": 1, - "port": 4, - "systems": 3, - "invoked": 2, - "via": 2, - "xinetd": 2, - "Edit": 1, - "/etc/services": 1, - "mwire": 2, - "/tcp": 1, - "#": 1, - "Service": 1, - "Copy": 2, - "/etc/xinetd.d/mwire": 1, - "/usr/local/gtm/zmwire": 1, - "its": 1, - "executable": 1, - "edited": 1, - "Restart": 1, - "sudo": 1, - "/etc/init.d/xinetd": 1, - "On": 1, - "installed": 1, - "MGWSI": 1, - "provide": 1, - "hashing": 1, - "passwords": 1, - "Alternatively": 1, - "substitute": 1, - "callout": 1, - "choice": 1, - "Daemon": 2, - "running": 1, - "jobbed": 1, - "job": 1, - "zmwireDaemon": 2, - "simply": 1, - "Stop": 1, - "RESJOB": 1, - "mwireVersion": 4, - "mwireDate": 2, - "July": 1, - "_crlf": 22, - "_response_": 4, - "_crlf_response_crlf": 4, - "authNeeded": 6, - "input": 41, - "cleardown": 2, - "zint": 1, - "role": 3, - "loop": 7, - "log": 1, - "halt": 3, - "auth": 2, - "ignore": 12, - "pid": 36, - "monitor": 1, - "input_crlf": 1, - "zsy": 2, - "_pid_": 1, - "_pid": 1, - "monitoroutput": 1, - "logger": 17, - "tot": 2, - "mwireLogger": 3, - "info": 1, - "response_": 1, - "_count": 1, - "setpassword": 1, - "SETPASSWORD": 2, - "secret": 2, - "": 1, - "role=": 1, - "admin": 1, - "newrole": 4, - "getGloRef": 3, - "gloName": 1, - "gloRef": 15, - "nb": 2, - "subs": 8, - "nsp": 1, - "subs_": 2, - "_data_": 3, - "subscripts": 8, - "_value_": 1, - "_error_": 1, - "kill": 3, - "xx": 16, - "method": 2, - "Missing": 5, - "JSON": 7, - "transaction": 6, - "document": 6, - "setJSON": 4, - "GlobalName": 3, - "setGlobal": 1, - "zmwire_null_value": 1, - "Invalid": 1, - "props": 1, - "arr": 2, - "getJSON": 2, - "incr": 1, - "incrbr": 1, - "class": 1, - "##": 2, - "decr": 1, - "decrby": 1, - "direction": 1, - "subscriptValue": 1, - "dataStatus": 1, - "dataValue": 1, - "nextsubscript": 2, - "reverseorder": 1, - "*2": 1, - "queryget": 1, - "xxyy": 2, - "zz": 2, - "getallsubscripts": 1, - "orderall": 1, - "": 3, - "note": 2, - "escaping": 1, - "foo": 2, - "_gloRef": 1, - "@x": 4, - "_crlf_": 1, - "j_": 1, - "params": 10, - "_crlf_resp_crlf": 2, - "_crlf_data_crlf": 2, - "mergeto": 1, - "dataLength": 4, - "keyLength": 6, - "noOfRecs": 6, - "MERGETO": 1, - "myglobal": 1, - "*6": 1, - "hello": 1, - "": 2, - "put": 1, - "top": 1, - "noOfRecs#2": 1, - "noOfRecs/2": 1, - "gloRef1": 2, - "gloRef1_": 2, - "_gloRef1_key_": 1, - "sub": 2, - "literal": 2, - "valquot_value_valquot": 1, - "json_value_": 1, - "subscripts1": 2, - "subx": 3, - "subNo": 1, - "numsub": 1, - "json_": 2, - "removeControlChars": 2, - "zobj1": 1, - "buff": 10, - "parseJSONObject": 2, - ".buff": 2, - "subs2": 6, - "_name_": 1, - "subs2_": 2, - "value_c": 1, - "newString": 4, - "newString_c": 1, - "utfConvert": 1, - "Unescape": 1, - "buf": 4, - "c1": 4, - "buf_c1_": 1 - }, - "Makefile": { - "all": 1, - "hello": 4, - "main.o": 3, - "factorial.o": 3, - "hello.o": 3, - "g": 4, - "+": 8, - "-": 6, - "o": 1, - "main.cpp": 2, - "c": 3, - "factorial.cpp": 2, - "hello.cpp": 2, - "clean": 1, - "rm": 1, - "rf": 1, - "*o": 1, - "SHEBANG#!make": 1, - "%": 1, - "ls": 1, - "l": 1 - }, - "Markdown": { - "Tender": 1 - }, - "Mask": { - "header": 1, - "{": 10, - "img": 1, - ".logo": 1, - "src": 1, - "alt": 1, - "logo": 1, - ";": 3, - "h4": 1, - "if": 1, - "(": 3, - "currentUser": 1, - ")": 3, - ".account": 1, - "a": 1, - "href": 1, - "}": 10, - ".view": 1, - "ul": 1, - "for": 1, - "user": 1, - "index": 1, - "of": 1, - "users": 1, - "li.user": 1, - "data": 1, - "-": 3, - "id": 1, - ".name": 1, - ".count": 1, - ".date": 1, - "countdownComponent": 1, - "input": 1, - "type": 1, - "text": 1, - "dualbind": 1, - "value": 1, - "button": 1, - "x": 2, - "signal": 1, - "h5": 1, - "animation": 1, - "slot": 1, - "@model": 1, - "@next": 1, - "footer": 1, - "bazCompo": 1 - }, - "Mathematica": { - "Get": 1, - "[": 307, - "]": 286, - "Notebook": 2, - "{": 227, - "Cell": 28, - "CellGroupData": 8, - "BoxData": 19, - "RowBox": 34, - "}": 222, - "CellChangeTimes": 13, - "-": 134, - "*": 19, - "SuperscriptBox": 1, - "MultilineFunction": 1, - "None": 8, - "Open": 7, - "NumberMarks": 3, - "False": 19, - "GraphicsBox": 2, - "Hue": 5, - "LineBox": 5, - "CompressedData": 9, - "AspectRatio": 1, - "NCache": 1, - "GoldenRatio": 1, - "(": 2, - ")": 1, - "Axes": 1, - "True": 7, - "AxesLabel": 1, - "AxesOrigin": 1, - "Method": 2, - "PlotRange": 1, - "PlotRangeClipping": 1, - "PlotRangePadding": 1, - "Scaled": 10, - "WindowSize": 1, - "WindowMargins": 1, - "Automatic": 9, - "FrontEndVersion": 1, - "StyleDefinitions": 1, - "NamespaceBox": 1, - "DynamicModuleBox": 1, - "Typeset": 7, - "q": 1, - "opts": 1, - "AppearanceElements": 1, - "Asynchronous": 1, - "All": 1, - "TimeConstraint": 1, - "elements": 1, - "pod1": 1, - "XMLElement": 13, - "FormBox": 4, - "TagBox": 9, - "GridBox": 2, - "PaneBox": 1, - "StyleBox": 4, - "CellContext": 5, - "TagBoxWrapper": 4, - "AstronomicalData": 1, - "Identity": 2, - "LineIndent": 4, - "LineSpacing": 2, - "GridBoxBackground": 1, - "GrayLevel": 17, - "GridBoxItemSize": 2, - "ColumnsEqual": 2, - "RowsEqual": 2, - "GridBoxDividers": 1, - "GridBoxSpacings": 2, - "GridBoxAlignment": 1, - "Left": 1, - "Baseline": 1, - "AllowScriptLevelChange": 2, - "BaselinePosition": 2, - "Center": 1, - "AbsoluteThickness": 3, - "TraditionalForm": 3, - "PolynomialForm": 1, - "#": 2, - "TraditionalOrder": 1, - "&": 2, - "pod2": 1, - "LinebreakAdjustments": 2, - "FontFamily": 1, - "UnitFontFamily": 1, - "FontSize": 1, - "Smaller": 1, - "StripOnInput": 1, - "SyntaxForm": 2, - "Dot": 2, - "ZeroWidthTimes": 1, - "pod3": 1, - "TemplateBox": 1, - "GraphicsComplexBox": 1, - "EdgeForm": 2, - "Directive": 5, - "Opacity": 2, - "GraphicsGroupBox": 2, - "PolygonBox": 3, - "RGBColor": 3, - "Dashing": 1, - "Small": 1, - "GridLines": 1, - "Dynamic": 1, - "Join": 1, - "Replace": 1, - "MousePosition": 1, - "Graphics": 1, - "Pattern": 2, - "CalculateUtilities": 5, - "GraphicsUtilities": 5, - "Private": 5, - "x": 2, - "Blank": 2, - "y": 2, - "Epilog": 1, - "CapForm": 1, - "Offset": 8, - "DynamicBox": 1, - "ToBoxes": 1, - "DynamicModule": 1, - "pt": 1, - "NearestFunction": 1, - "Paclet": 1, - "Name": 1, - "Version": 1, - "MathematicaVersion": 1, - "Description": 1, - "Creator": 1, - "Extensions": 1, - "Language": 1, - "MainPage": 1, - "BeginPackage": 1, - ";": 42, - "PossiblyTrueQ": 3, - "usage": 22, - "PossiblyFalseQ": 2, - "PossiblyNonzeroQ": 3, - "Begin": 2, - "expr_": 4, - "Not": 6, - "TrueQ": 4, - "expr": 4, - "End": 2, - "AnyQ": 3, - "AnyElementQ": 4, - "AllQ": 2, - "AllElementQ": 2, - "AnyNonzeroQ": 2, - "AnyPossiblyNonzeroQ": 2, - "RealQ": 3, - "PositiveQ": 3, - "NonnegativeQ": 3, - "PositiveIntegerQ": 3, - "NonnegativeIntegerQ": 4, - "IntegerListQ": 5, - "PositiveIntegerListQ": 3, - "NonnegativeIntegerListQ": 3, - "IntegerOrListQ": 2, - "PositiveIntegerOrListQ": 2, - "NonnegativeIntegerOrListQ": 2, - "SymbolQ": 2, - "SymbolOrNumberQ": 2, - "cond_": 4, - "L_": 5, - "Fold": 3, - "Or": 1, - "cond": 4, - "/@": 3, - "L": 4, - "Flatten": 1, - "And": 4, - "SHEBANG#!#!=": 1, - "n_": 5, - "Im": 1, - "n": 8, - "Positive": 2, - "IntegerQ": 3, - "&&": 4, - "input_": 6, - "ListQ": 1, - "input": 11, - "MemberQ": 3, - "IntegerQ/@input": 1, - "||": 4, - "a_": 2, - "Head": 2, - "a": 3, - "Symbol": 2, - "NumericQ": 1, - "EndPackage": 1, - "Do": 1, - "If": 1, - "Length": 1, - "Divisors": 1, - "Binomial": 2, - "i": 3, - "+": 2, - "Print": 1, - "Break": 1 - }, - "Matlab": { - "function": 34, - "[": 311, - "dx": 6, - "y": 25, - "]": 311, - "adapting_structural_model": 2, - "(": 1379, - "t": 32, - "x": 46, - "u": 3, - "varargin": 25, - ")": 1380, - "%": 554, - "size": 11, - "aux": 3, - "{": 157, - "end": 150, - "}": 157, - ";": 909, - "m": 44, - "zeros": 61, - "b": 12, - "for": 78, - "i": 338, - "if": 52, - "+": 169, - "elseif": 14, - "else": 23, - "display": 10, - "aux.pars": 3, - ".*": 2, - "Yp": 2, - "human": 1, - "aux.timeDelay": 2, - "c1": 5, - "aux.m": 3, - "*": 46, - "aux.b": 3, - "e": 14, - "-": 673, - "c2": 5, - "Yc": 5, - "parallel": 2, - "plant": 4, - "aux.plantFirst": 2, - "aux.plantSecond": 2, - "Ys": 1, - "feedback": 1, - "A": 11, - "B": 9, - "C": 13, - "D": 7, - "tf2ss": 1, - "Ys.num": 1, - "Ys.den": 1, - "average": 1, - "n": 102, - "|": 2, - "&": 4, - "error": 16, - "sum": 2, - "/length": 1, - "bicycle": 7, - "bicycle_state_space": 1, - "speed": 20, - "S": 5, - "dbstack": 1, - "CURRENT_DIRECTORY": 2, - "fileparts": 1, - ".file": 1, - "par": 7, - "par_text_to_struct": 4, - "filesep": 14, - "...": 162, - "whipple_pull_force_abcd": 2, - "states": 7, - "outputs": 10, - "inputs": 14, - "defaultSettings.states": 1, - "defaultSettings.inputs": 1, - "defaultSettings.outputs": 1, - "userSettings": 3, - "varargin_to_structure": 2, - "struct": 1, - "settings": 3, - "overwrite_settings": 2, - "defaultSettings": 3, - "minStates": 2, - "ismember": 15, - "settings.states": 3, - "<": 9, - "keepStates": 2, - "find": 24, - "removeStates": 1, - "row": 6, - "abs": 12, - "col": 5, - "s": 13, - "sprintf": 11, - "removeInputs": 2, - "settings.inputs": 1, - "keepOutputs": 2, - "settings.outputs": 1, - "It": 1, - "is": 7, - "not": 3, - "possible": 1, - "to": 9, - "keep": 1, - "output": 7, - "because": 1, - "it": 1, - "depends": 1, - "on": 13, - "input": 14, - "StateName": 1, - "OutputName": 1, - "InputName": 1, - "x_0": 45, - "linspace": 14, - "vx_0": 37, - "z": 3, - "j": 242, - "*vx_0": 1, - "figure": 17, - "pcolor": 2, - "shading": 3, - "flat": 3, - "name": 4, - "order": 11, - "convert_variable": 1, - "variable": 10, - "coordinates": 6, - "speeds": 21, - "get_variables": 2, - "columns": 4, - "create_ieee_paper_plots": 2, - "data": 27, - "rollData": 8, - "global": 6, - "goldenRatio": 12, - "sqrt": 14, - "/": 59, - "exist": 1, - "mkdir": 1, - "linestyles": 15, - "colors": 13, - "loop_shape_example": 3, - "data.Benchmark.Medium": 2, - "plot_io_roll": 3, - "open_loop_all_bikes": 1, - "handling_all_bikes": 1, - "path_plots": 1, - "var": 3, - "io": 7, - "typ": 3, - "length": 49, - "plot_io": 1, - "phase_portraits": 2, - "eigenvalues": 2, - "bikeData": 2, - "figWidth": 24, - "figHeight": 19, - "set": 43, - "gcf": 17, - "freq": 12, - "hold": 23, - "all": 15, - "closedLoops": 1, - "bikeData.closedLoops": 1, - "bops": 7, - "bodeoptions": 1, - "bops.FreqUnits": 1, - "strcmp": 24, - "gray": 7, - "deltaNum": 2, - "closedLoops.Delta.num": 1, - "deltaDen": 2, - "closedLoops.Delta.den": 1, - "bodeplot": 6, - "tf": 18, - "neuroNum": 2, - "neuroDen": 2, - "whichLines": 3, - "phiDotNum": 2, - "closedLoops.PhiDot.num": 1, - "phiDotDen": 2, - "closedLoops.PhiDot.den": 1, - "closedBode": 3, - "off": 10, - "opts": 4, - "getoptions": 2, - "opts.YLim": 3, - "opts.PhaseMatching": 2, - "opts.PhaseMatchingValue": 2, - "opts.Title.String": 2, - "setoptions": 2, - "lines": 17, - "findobj": 5, - "raise": 19, - "plotAxes": 22, - "curPos1": 4, - "get": 11, - "curPos2": 4, - "xLab": 8, - "legWords": 3, - "closeLeg": 2, - "legend": 7, - "axes": 9, - "db1": 4, - "text": 11, - "db2": 2, - "dArrow1": 2, - "annotation": 13, - "dArrow2": 2, - "dArrow": 2, - "filename": 21, - "pathToFile": 11, - "print": 6, - "fix_ps_linestyle": 6, - "openLoops": 1, - "bikeData.openLoops": 1, - "num": 24, - "openLoops.Phi.num": 1, - "den": 15, - "openLoops.Phi.den": 1, - "openLoops.Psi.num": 1, - "openLoops.Psi.den": 1, - "openLoops.Y.num": 1, - "openLoops.Y.den": 1, - "openBode": 3, - "line": 15, - "wc": 14, - "wShift": 5, - "num2str": 10, - "bikeData.handlingMetric.num": 1, - "bikeData.handlingMetric.den": 1, - "w": 6, - "mag": 4, - "phase": 2, - "bode": 5, - "metricLine": 1, - "plot": 26, - "k": 75, - "Linewidth": 7, - "Color": 13, - "Linestyle": 6, - "Handling": 2, - "Quality": 2, - "Metric": 2, - "Frequency": 2, - "rad/s": 4, - "Level": 6, - "benchmark": 1, - "Handling.eps": 1, - "plots": 4, - "deps2": 1, - "loose": 4, - "PaperOrientation": 3, - "portrait": 3, - "PaperUnits": 3, - "inches": 3, - "PaperPositionMode": 3, - "manual": 3, - "PaperPosition": 3, - "PaperSize": 3, - "rad/sec": 1, - "phi": 13, - "Open": 1, - "Loop": 1, - "Bode": 1, - "Diagrams": 1, - "at": 3, - "m/s": 6, - "Latex": 1, - "type": 4, - "LineStyle": 2, - "LineWidth": 2, - "Location": 2, - "Southwest": 1, - "Fontsize": 4, - "YColor": 2, - "XColor": 1, - "Position": 6, - "Xlabel": 1, - "Units": 1, - "normalized": 1, - "openBode.eps": 1, - "deps2c": 3, - "maxMag": 2, - "max": 9, - "magnitudes": 1, - "area": 1, - "fillColors": 1, - "gca": 8, - "speedNames": 12, - "metricLines": 2, - "bikes": 24, - "data.": 6, - ".": 13, - ".handlingMetric.num": 1, - ".handlingMetric.den": 1, - "chil": 2, - "legLines": 1, - "Hands": 1, - "free": 1, - "@": 1, - "handling.eps": 1, - "f": 13, - "YTick": 1, - "YTickLabel": 1, - "Path": 1, - "Southeast": 1, - "Distance": 1, - "Lateral": 1, - "Deviation": 1, - "paths.eps": 1, - "d": 12, - "like": 1, - "plot.": 1, - "names": 6, - "prettyNames": 3, - "units": 3, - "index": 6, - "fieldnames": 5, - "data.Browser": 1, - "maxValue": 4, - "oneSpeed": 3, - "history": 7, - "oneSpeed.": 3, - "round": 1, - "pad": 10, - "yShift": 16, - "xShift": 3, - "time": 21, - "oneSpeed.time": 2, - "oneSpeed.speed": 2, - "distance": 6, - "xAxis": 12, - "xData": 3, - "textX": 3, - "ylim": 2, - "ticks": 4, - "xlabel": 8, - "xLimits": 6, - "xlim": 8, - "loc": 3, - "l1": 2, - "l2": 2, - "first": 3, - "ylabel": 4, - "box": 4, - "&&": 13, - "x_r": 6, - "y_r": 6, - "w_r": 5, - "h_r": 5, - "rectangle": 2, - "w_r/2": 4, - "h_r/2": 4, - "x_a": 10, - "y_a": 10, - "w_a": 7, - "h_a": 5, - "ax": 15, - "axis": 5, - "rollData.speed": 1, - "rollData.time": 1, - "path": 3, - "rollData.path": 1, - "frontWheel": 3, - "rollData.outputs": 3, - "rollAngle": 4, - "steerAngle": 4, - "rollTorque": 4, - "rollData.inputs": 1, - "subplot": 3, - "h1": 5, - "h2": 5, - "plotyy": 3, - "inset": 3, - "gainChanges": 2, - "loopNames": 4, - "xy": 7, - "xySource": 7, - "xlabels": 2, - "ylabels": 2, - "legends": 3, - "floatSpec": 3, - "twentyPercent": 1, - "generate_data": 5, - "nominalData": 1, - "nominalData.": 2, - "bikeData.": 2, - "twentyPercent.": 2, - "equal": 2, - "leg1": 2, - "bikeData.modelPar.": 1, - "leg2": 2, - "twentyPercent.modelPar.": 1, - "eVals": 5, - "pathToParFile": 2, - "str": 2, - "eigenValues": 1, - "eig": 6, - "real": 3, - "zeroIndices": 3, - "ones": 6, - "maxEvals": 4, - "maxLine": 7, - "minLine": 4, - "min": 1, - "speedInd": 12, - "cross_validation": 1, - "hyper_parameter": 3, - "num_data": 2, - "K": 4, - "indices": 2, - "crossvalind": 1, - "errors": 4, - "test_idx": 4, - "train_idx": 3, - "x_train": 2, - "y_train": 2, - "train": 1, - "x_test": 3, - "y_test": 3, - "calc_cost": 1, - "calc_error": 2, - "mean": 2, - "value": 2, - "isterminal": 2, - "direction": 2, - "mu": 73, - "FIXME": 1, - "from": 2, - "the": 14, - "largest": 1, - "primary": 1, - "clear": 13, - "tic": 7, - "T": 22, - "x_min": 3, - "x_max": 3, - "y_min": 3, - "y_max": 3, - "how": 1, - "many": 1, - "points": 11, - "per": 5, - "one": 3, - "measure": 1, - "unit": 1, - "both": 1, - "in": 8, - "and": 7, - "ds": 1, - "x_res": 7, - "*n": 2, - "y_res": 7, - "grid_x": 3, - "grid_y": 3, - "advected_x": 12, - "advected_y": 12, - "parfor": 5, - "X": 6, - "ode45": 6, - "@dg": 1, - "store": 4, - "advected": 2, - "positions": 2, - "as": 4, - "they": 2, - "would": 2, - "appear": 2, - "coords": 2, - "Compute": 3, - "FTLE": 14, - "sigma": 6, - "compute": 2, - "Jacobian": 3, - "*ds": 4, - "eigenvalue": 2, - "of": 35, - "*phi": 2, - "log": 2, - "lambda_max": 2, - "/abs": 3, - "*T": 3, - "toc": 5, - "field": 2, - "contourf": 2, - "location": 1, - "EastOutside": 1, - "f_x_t": 2, - "inline": 1, - "grid_min": 3, - "grid_max": 3, - "grid_width": 1, - "grid_spacing": 5, - "grid_width/": 1, - "*grid_width/": 4, - "colorbar": 1, - "load_data": 4, - "t0": 6, - "t1": 6, - "t2": 6, - "t3": 1, - "dataPlantOne": 3, - "data.Ts": 6, - "dataAdapting": 3, - "dataPlantTwo": 3, - "guessPlantOne": 4, - "resultPlantOne": 1, - "find_structural_gains": 2, - "yh": 2, - "fit": 6, - "x0": 4, - "compare": 3, - "resultPlantOne.fit": 1, - "guessPlantTwo": 3, - "resultPlantTwo": 1, - "resultPlantTwo.fit": 1, - "kP1": 4, - "resultPlantOne.fit.par": 1, - "kP2": 3, - "resultPlantTwo.fit.par": 1, - "gainSlopeOffset": 6, - "eye": 9, - "this": 2, - "only": 7, - "uses": 1, - "tau": 1, - "through": 1, - "wfs": 1, - "true": 2, - "plantOneSlopeOffset": 3, - "plantTwoSlopeOffset": 3, - "mod": 3, - "idnlgrey": 1, - "pem": 1, - "guess.plantOne": 3, - "guess.plantTwo": 2, - "plantNum.plantOne": 2, - "plantNum.plantTwo": 2, - "sections": 13, - "secData.": 1, - "||": 3, - "guess.": 2, - "result.": 2, - ".fit.par": 1, - "currentGuess": 2, - "warning": 1, - "randomGuess": 1, - "The": 6, - "self": 2, - "validation": 2, - "VAF": 2, - "f.": 2, - "data/": 1, - "results.mat": 1, - "guess": 1, - "plantNum": 1, - "result": 5, - "plots/": 1, - ".png": 1, - "task": 1, - "closed": 1, - "loop": 1, - "system": 2, - "u.": 1, - "gain": 1, - "guesses": 1, - "k1": 4, - "k2": 3, - "k3": 3, - "k4": 4, - "identified": 1, - "gains": 12, - ".vaf": 1, - "Elements": 1, - "grid": 1, - "definition": 2, - "Dimensionless": 1, - "integrating": 1, - "Choice": 2, - "mass": 2, - "parameter": 2, - "Computation": 9, - "Lagrangian": 3, - "Points": 2, - "xl1": 13, - "yl1": 12, - "xl2": 9, - "yl2": 8, - "xl3": 8, - "yl3": 8, - "xl4": 10, - "yl4": 9, - "xl5": 8, - "yl5": 8, - "Lagr": 6, - "initial": 5, - "total": 6, - "energy": 8, - "E_L1": 4, - "Omega": 7, - "C_L1": 3, - "*E_L1": 1, - "Szebehely": 1, - "E": 8, - "Offset": 2, - "Initial": 3, - "conditions": 3, - "range": 2, - "x_0_min": 8, - "x_0_max": 8, - "vx_0_min": 8, - "vx_0_max": 8, - "y_0": 29, - "ndgrid": 2, - "vy_0": 22, - "*E": 2, - "*Omega": 5, - "vx_0.": 2, - "E_cin": 4, - "x_T": 25, - "y_T": 17, - "vx_T": 22, - "vy_T": 12, - "filtro": 15, - "E_T": 11, - "delta_E": 7, - "a": 17, - "matrix": 3, - "numbers": 2, - "integration": 9, - "steps": 2, - "each": 2, - "np": 8, - "number": 2, - "integrated": 5, - "fprintf": 18, - "Energy": 4, - "tolerance": 2, - "setting": 4, - "energy_tol": 6, - "Setting": 1, - "options": 14, - "integrator": 2, - "RelTol": 2, - "AbsTol": 2, - "From": 1, - "Short": 1, - "odeset": 4, - "Parallel": 2, - "equations": 2, - "motion": 2, - "h": 19, - "waitbar": 6, - "r1": 3, - "r2": 3, - "g": 5, - "i/n": 1, - "y_0.": 2, - "./": 1, - "mu./": 1, - "isreal": 8, - "Check": 6, - "velocity": 2, - "positive": 2, - "Kinetic": 2, - "Y": 19, - "@f_reg": 1, - "Saving": 4, - "solutions": 2, - "final": 2, - "difference": 2, - "with": 2, - "conservation": 2, - "position": 2, - "point": 14, - "interesting": 4, - "non": 2, - "sense": 2, - "bad": 4, - "close": 4, - "t_integrazione": 3, - "filtro_1": 12, - "dphi": 12, - "ftle": 10, - "ftle_norm": 1, - "ds_x": 1, - "ds_vx": 1, - "La": 1, - "direzione": 1, - "dello": 1, - "spostamento": 1, - "la": 2, - "decide": 1, - "il": 1, - "denominatore": 1, - "TODO": 1, - "spiegarsi": 1, - "teoricamente": 1, - "come": 1, - "mai": 1, - "matrice": 1, - "pu": 1, - "essere": 1, - "ridotta": 1, - "x2": 1, - "*ds_x": 2, - "*ds_vx": 2, - "Manual": 2, - "visualize": 2, - "*log": 2, - "dphi*dphi": 1, - "tempo": 4, - "integrare": 2, - ".2f": 5, - "calcolare": 2, - "var_": 2, - "_": 2, - "var_xvx_": 2, - "ode00": 2, - "_n": 2, - "save": 2, - "nome": 2, - "Transforming": 1, - "into": 1, - "Hamiltonian": 1, - "variables": 2, - "px_0": 2, - "py_0": 2, - "px_T": 4, - "py_T": 4, - "inf": 1, - "@cr3bp_jac": 1, - "@fH": 1, - "EnergyH": 1, - "t_integr": 1, - "Back": 1, - "Inf": 1, - "_e": 1, - "_H": 1, - "Range": 1, - "E_0": 4, - "C_L1/2": 1, - "Y_0": 4, - "nx": 32, - "nvx": 32, - "dvx": 3, - "ny": 29, - "dy": 5, - "/2": 3, - "ne": 29, - "de": 4, - "e_0": 7, - "Definition": 1, - "arrays": 1, - "In": 1, - "approach": 1, - "useful": 9, - "pints": 1, - "are": 1, - "stored": 1, - "filter": 14, - "l": 64, - "v_y": 3, - "*e_0": 3, - "vx": 2, - "vy": 2, - "Selection": 1, - "Data": 2, - "transfer": 1, - "GPU": 3, - "x_gpu": 3, - "gpuArray": 4, - "y_gpu": 3, - "vx_gpu": 3, - "vy_gpu": 3, - "Integration": 2, - "N": 9, - "x_f": 3, - "y_f": 3, - "vx_f": 3, - "vy_f": 3, - "arrayfun": 2, - "@RKF45_FILE_gpu": 1, - "back": 1, - "CPU": 1, - "memory": 1, - "cleaning": 1, - "gather": 4, - "Construction": 1, - "computation": 2, - "X_T": 4, - "Y_T": 4, - "VX_T": 4, - "VY_T": 3, - "filter_ftle": 11, - "Compute_FILE_gpu": 1, - "Plot": 1, - "results": 1, - "squeeze": 1, - "clc": 1, - "load_bikes": 2, - "e_T": 7, - "Integrate_FILE": 1, - "Integrate": 6, - "Look": 2, - "phisically": 2, - "meaningful": 6, - "meaningless": 2, - "i/nx": 2, - "*Potential": 5, - "ci": 9, - "te": 2, - "ye": 9, - "ie": 2, - "@f": 6, - "Potential": 1, - "delta_e": 3, - "Integrate_FTLE_Gawlick_ell": 1, - "ecc": 2, - "nu": 2, - "ecc*cos": 1, - "@f_ell": 1, - "Consider": 1, - "also": 1, - "negative": 1, - "goodness": 1, - "roots": 3, - "*mu": 6, - "c3": 3, - "lane_change": 1, - "start": 4, - "width": 3, - "slope": 3, - "pathLength": 3, - "single": 1, - "double": 1, - "Double": 1, - "lane": 4, - "change": 1, - "needs": 1, - "lane.": 1, - "laneLength": 4, - "startOfSlope": 3, - "endOfSlope": 1, - "<=>": 1, - "1": 1, - "downSlope": 3, - "gains.Benchmark.Slow": 1, - "place": 2, - "holder": 2, - "gains.Browserins.Slow": 1, - "gains.Browser.Slow": 1, - "gains.Pista.Slow": 1, - "gains.Fisher.Slow": 1, - "gains.Yellow.Slow": 1, - "gains.Yellowrev.Slow": 1, - "gains.Benchmark.Medium": 1, - "gains.Browserins.Medium": 1, - "gains.Browser.Medium": 1, - "gains.Pista.Medium": 1, - "gains.Fisher.Medium": 1, - "gains.Yellow.Medium": 1, - "gains.Yellowrev.Medium": 1, - "gains.Benchmark.Fast": 1, - "gains.Browserins.Fast": 1, - "gains.Browser.Fast": 1, - "gains.Pista.Fast": 1, - "gains.Fisher.Fast": 1, - "gains.Yellow.Fast": 1, - "gains.Yellowrev.Fast": 1, - "gains.": 1, - "parser": 1, - "inputParser": 1, - "parser.addRequired": 1, - "parser.addParamValue": 3, - "parser.parse": 1, - "args": 1, - "parser.Results": 1, - "raw": 1, - "load": 1, - "args.directory": 1, - "iddata": 1, - "raw.theta": 1, - "raw.theta_c": 1, - "args.sampleTime": 1, - "args.detrend": 1, - "detrend": 1, - "filtfcn": 2, - "statefcn": 2, - "makeFilter": 1, - "v": 12, - "@iirFilter": 1, - "@getState": 1, - "yn": 2, - "iirFilter": 1, - "xn": 4, - "vOut": 2, - "getState": 1, - "classdef": 1, - "matlab_class": 2, - "properties": 1, - "R": 1, - "G": 1, - "methods": 1, - "obj": 2, - "r": 2, - "obj.R": 2, - "obj.G": 2, - "obj.B": 2, - "disp": 8, - "enumeration": 1, - "red": 1, - "green": 1, - "blue": 1, - "cyan": 1, - "magenta": 1, - "yellow": 1, - "black": 1, - "white": 1, - "ret": 3, - "matlab_function": 5, - "Call": 2, - "which": 2, - "resides": 2, - "same": 2, - "directory": 2, - "value1": 4, - "semicolon": 2, - "mandatory": 2, - "suppresses": 2, - "command": 2, - "line.": 2, - "value2": 4, - "d_mean": 3, - "d_std": 3, - "normalize": 1, - "repmat": 2, - "std": 1, - "d./": 1, - "overrideSettings": 3, - "overrideNames": 2, - "defaultNames": 2, - "notGiven": 5, - "setxor": 1, - "settings.": 1, - "defaultSettings.": 1, - "fid": 7, - "fopen": 2, - "textscan": 1, - "fclose": 2, - "strtrim": 2, - "vals": 2, - "regexp": 1, - "par.": 1, - "str2num": 1, - "choose_plant": 4, - "p": 7, - "Conditions": 1, - "@cross_y": 1, - "ode113": 2, - "RK4": 3, - "fun": 5, - "tspan": 7, - "th": 1, - "Runge": 1, - "Kutta": 1, - "dim": 2, - "while": 1, - "h/2": 2, - "k1*h/2": 1, - "k2*h/2": 1, - "h*k3": 1, - "h/6*": 1, - "*k2": 1, - "*k3": 1, - "arg1": 1, - "arg": 2, - "RK4_par": 1, - "wnm": 11, - "zetanm": 5, - "ss": 3, - "data.modelPar.A": 1, - "data.modelPar.B": 1, - "data.modelPar.C": 1, - "data.modelPar.D": 1, - "bicycle.StateName": 2, - "bicycle.OutputName": 4, - "bicycle.InputName": 2, - "analytic": 3, - "system_state_space": 2, - "numeric": 2, - "data.system.A": 1, - "data.system.B": 1, - "data.system.C": 1, - "data.system.D": 1, - "numeric.StateName": 1, - "data.bicycle.states": 1, - "numeric.InputName": 1, - "data.bicycle.inputs": 1, - "numeric.OutputName": 1, - "data.bicycle.outputs": 1, - "pzplot": 1, - "ss2tf": 2, - "analytic.A": 3, - "analytic.B": 1, - "analytic.C": 1, - "analytic.D": 1, - "mine": 1, - "data.forceTF.PhiDot.num": 1, - "data.forceTF.PhiDot.den": 1, - "numeric.A": 2, - "numeric.B": 1, - "numeric.C": 1, - "numeric.D": 1, - "whipple_pull_force_ABCD": 1, - "bottomRow": 1, - "prod": 3, - "Earth": 2, - "Moon": 2, - "C_star": 1, - "C/2": 1, - "orbit": 1, - "Y0": 6, - "y0": 2, - "vx0": 2, - "vy0": 2, - "l0": 1, - "delta_E0": 1, - "Hill": 1, - "Edgecolor": 1, - "none": 1, - "ok": 2, - "sg": 1, - "sr": 1, - "arguments": 7, - "ischar": 1, - "options.": 1, - "write_gains": 1, - "contents": 1, - "importdata": 1, - "speedsInFile": 5, - "contents.data": 2, - "gainsInFile": 3, - "sameSpeedIndices": 5, - "allGains": 4, - "allSpeeds": 4, - "sort": 1, - "contents.colheaders": 1 - }, - "Max": { - "{": 126, - "}": 126, - "[": 163, - "]": 163, - "max": 1, - "v2": 1, - ";": 39, - "#N": 2, - "vpatcher": 1, - "#P": 33, - "toggle": 1, - "button": 4, - "window": 2, - "setfont": 1, - "Verdana": 1, - "linecount": 1, - "newex": 8, - "r": 1, - "jojo": 2, - "#B": 2, - "color": 2, - "s": 1, - "route": 1, - "append": 1, - "toto": 1, - "%": 1, - "counter": 2, - "#X": 1, - "flags": 1, - "newobj": 1, - "metro": 1, - "t": 2, - "message": 2, - "Goodbye": 1, - "World": 2, - "Hello": 1, - "connect": 13, - "fasten": 1, - "pop": 1 - }, - "MediaWiki": { - "Overview": 1, - "The": 17, - "GDB": 15, - "Tracepoint": 4, - "Analysis": 1, - "feature": 3, - "is": 9, - "an": 3, - "extension": 1, - "to": 12, - "the": 72, - "Tracing": 3, - "and": 20, - "Monitoring": 1, - "Framework": 1, - "that": 4, - "allows": 2, - "visualization": 1, - "analysis": 1, - "of": 8, - "C/C": 10, - "+": 20, - "tracepoint": 5, - "data": 5, - "collected": 2, - "by": 10, - "stored": 1, - "a": 12, - "log": 1, - "file.": 1, - "Getting": 1, - "Started": 1, - "can": 9, - "be": 18, - "installed": 2, - "from": 8, - "Eclipse": 1, - "update": 2, - "site": 1, - "selecting": 1, - ".": 8, - "requires": 1, - "version": 1, - "or": 8, - "later": 1, - "on": 3, - "local": 1, - "host.": 1, - "executable": 3, - "program": 1, - "must": 3, - "found": 1, - "in": 15, - "path.": 1, - "Trace": 9, - "Perspective": 1, - "To": 1, - "open": 1, - "perspective": 2, - "select": 5, - "includes": 1, - "following": 1, - "views": 2, - "default": 2, - "*": 6, - "This": 7, - "view": 7, - "shows": 7, - "projects": 1, - "workspace": 2, - "used": 1, - "create": 1, - "manage": 1, - "projects.": 1, - "running": 1, - "Postmortem": 5, - "Debugger": 4, - "instances": 1, - "displays": 2, - "thread": 1, - "stack": 2, - "trace": 17, - "associated": 1, - "with": 4, - "tracepoint.": 3, - "status": 1, - "debugger": 1, - "navigation": 1, - "records.": 1, - "console": 1, - "output": 1, - "Debugger.": 1, - "editor": 7, - "area": 2, - "contains": 1, - "editors": 1, - "when": 1, - "opened.": 1, - "[": 11, - "Image": 2, - "images/GDBTracePerspective.png": 1, - "]": 11, - "Collecting": 2, - "Data": 4, - "outside": 2, - "scope": 1, - "this": 5, - "feature.": 1, - "It": 1, - "done": 2, - "command": 1, - "line": 2, - "using": 3, - "CDT": 3, - "debug": 1, - "component": 1, - "within": 1, - "Eclipse.": 1, - "See": 1, - "FAQ": 2, - "entry": 2, - "#References": 2, - "|": 2, - "References": 3, - "section.": 2, - "Importing": 2, - "Some": 1, - "information": 1, - "section": 1, - "redundant": 1, - "LTTng": 3, - "User": 3, - "Guide.": 1, - "For": 1, - "further": 1, - "details": 1, - "see": 1, - "Guide": 2, - "Creating": 1, - "Project": 1, - "In": 5, - "right": 3, - "-": 8, - "click": 8, - "context": 4, - "menu.": 4, - "dialog": 1, - "name": 2, - "your": 2, - "project": 2, - "tracing": 1, - "folder": 5, - "Browse": 2, - "enter": 2, - "source": 2, - "directory.": 1, - "Select": 1, - "file": 6, - "tree.": 1, - "Optionally": 1, - "set": 1, - "type": 2, - "Click": 1, - "Alternatively": 1, - "drag": 1, - "&": 1, - "dropped": 1, - "any": 2, - "external": 1, - "manager.": 1, - "Selecting": 2, - "Type": 1, - "Right": 2, - "imported": 1, - "choose": 2, - "step": 1, - "omitted": 1, - "if": 1, - "was": 2, - "selected": 3, - "at": 3, - "import.": 1, - "will": 6, - "updated": 2, - "icon": 1, - "images/gdb_icon16.png": 1, - "Executable": 1, - "created": 1, - "identified": 1, - "so": 2, - "launched": 1, - "properly.": 1, - "path": 1, - "press": 1, - "recognized": 1, - "as": 1, - "executable.": 1, - "Visualizing": 1, - "Opening": 1, - "double": 1, - "it": 3, - "opened": 2, - "Events": 5, - "instance": 1, - "launched.": 1, - "If": 2, - "available": 1, - "code": 1, - "corresponding": 1, - "first": 1, - "record": 2, - "also": 2, - "editor.": 2, - "At": 1, - "point": 1, - "recommended": 1, - "relocate": 1, - "not": 1, - "hidden": 1, - "Viewing": 1, - "table": 1, - "shown": 1, - "one": 1, - "row": 1, - "for": 2, - "each": 1, - "record.": 2, - "column": 6, - "sequential": 1, - "number.": 1, - "number": 2, - "assigned": 1, - "collection": 1, - "time": 2, - "method": 1, - "where": 1, - "set.": 1, - "run": 1, - "Searching": 1, - "filtering": 1, - "entering": 1, - "regular": 1, - "expression": 1, - "header.": 1, - "Navigating": 1, - "records": 1, - "keyboard": 1, - "mouse.": 1, - "show": 1, - "current": 1, - "navigated": 1, - "clicking": 1, - "buttons.": 1, - "updated.": 1, - "http": 4, - "//wiki.eclipse.org/index.php/Linux_Tools_Project/LTTng2/User_Guide": 1, - "//wiki.eclipse.org/CDT/User/FAQ#How_can_I_trace_my_application_using_C.2FC.2B.2B_Tracepoints.3F": 1, - "How": 1, - "I": 1, - "my": 1, - "application": 1, - "Tracepoints": 1, - "Updating": 1, - "Document": 1, - "document": 2, - "maintained": 1, - "collaborative": 1, - "wiki.": 1, - "you": 1, - "wish": 1, - "modify": 1, - "please": 1, - "visit": 1, - "//wiki.eclipse.org/index.php/Linux_Tools_Project/GDB_Tracepoint_Analysis/User_Guide": 1, - "//wiki.eclipse.org/Linux_Tools_Project/GDB_Tracepoint_Analysis/User_Guide": 1 - }, - "Mercury": { - "%": 416, - "-": 6967, - "module": 46, - "ll_backend.code_info.": 1, - "interface.": 13, - "import_module": 126, - "check_hlds.type_util.": 2, - "hlds.code_model.": 1, - "hlds.hlds_data.": 2, - "hlds.hlds_goal.": 2, - "hlds.hlds_llds.": 1, - "hlds.hlds_module.": 2, - "hlds.hlds_pred.": 2, - "hlds.instmap.": 2, - "libs.globals.": 2, - "ll_backend.continuation_info.": 1, - "ll_backend.global_data.": 1, - "ll_backend.layout.": 1, - "ll_backend.llds.": 1, - "ll_backend.trace_gen.": 1, - "mdbcomp.prim_data.": 3, - "mdbcomp.goal_path.": 2, - "parse_tree.prog_data.": 2, - "parse_tree.set_of_var.": 2, - "assoc_list.": 3, - "bool.": 4, - "counter.": 1, - "io.": 8, - "list.": 4, - "map.": 3, - "maybe.": 3, - "set.": 4, - "set_tree234.": 1, - "term.": 3, - "implementation.": 12, - "backend_libs.builtin_ops.": 1, - "backend_libs.proc_label.": 1, - "hlds.arg_info.": 1, - "hlds.hlds_desc.": 1, - "hlds.hlds_rtti.": 2, - "libs.options.": 3, - "libs.trace_params.": 1, - "ll_backend.code_util.": 1, - "ll_backend.opt_debug.": 1, - "ll_backend.var_locn.": 1, - "parse_tree.builtin_lib_types.": 2, - "parse_tree.prog_type.": 2, - "parse_tree.mercury_to_mercury.": 1, - "cord.": 1, - "int.": 4, - "pair.": 3, - "require.": 6, - "stack.": 1, - "string.": 7, - "varset.": 2, - "type": 57, - "code_info.": 1, - "pred": 255, - "code_info_init": 2, - "(": 3351, - "bool": 406, - "in": 510, - "globals": 5, - "pred_id": 15, - "proc_id": 12, - "pred_info": 20, - "proc_info": 11, - "abs_follow_vars": 3, - "module_info": 26, - "static_cell_info": 4, - "const_struct_map": 3, - "resume_point_info": 11, - "out": 337, - "trace_slot_info": 3, - "maybe": 20, - "containing_goal_map": 4, - ")": 3351, - "list": 82, - "string": 115, - "int": 129, - "code_info": 208, - "is": 246, - "det.": 184, - "get_globals": 5, - "get_exprn_opts": 2, - "exprn_opts": 3, - "get_module_info": 7, - "get_pred_id": 6, - "get_proc_id": 5, - "get_pred_info": 2, - "get_proc_info": 4, - "get_varset": 3, - "prog_varset": 14, - "func": 24, - "get_var_types": 3, - "vartypes.": 1, - "get_maybe_trace_info": 2, - "trace_info": 3, - "get_emit_trail_ops": 2, - "add_trail_ops": 5, - "get_emit_region_ops": 2, - "add_region_ops": 6, - "get_forward_live_vars": 2, - "set_of_progvar": 10, - "set_forward_live_vars": 2, - "get_instmap": 4, - "instmap": 3, - "set_instmap": 3, - "get_par_conj_depth": 2, - "set_par_conj_depth": 2, - "get_label_counter": 3, - "counter": 6, - "get_succip_used": 2, - "get_layout_info": 4, - "proc_label_layout_info": 3, - "get_proc_trace_events": 2, - "set_proc_trace_events": 2, - "get_closure_layouts": 3, - "closure_proc_id_data": 4, - "get_max_reg_in_use_at_trace": 2, - "set_max_reg_in_use_at_trace": 2, - "get_created_temp_frame": 2, - "get_static_cell_info": 5, - "set_static_cell_info": 5, - "get_alloc_sites": 3, - "set_tree234": 3, - "alloc_site_info": 4, - "set_alloc_sites": 3, - "get_used_env_vars": 2, - "set": 16, - "set_used_env_vars": 2, - "get_opt_trail_ops": 2, - "get_opt_region_ops": 2, - "get_auto_comments": 2, - "get_lcmc_null": 2, - "get_containing_goal_map": 3, - "get_containing_goal_map_det": 2, - "get_const_struct_map": 2, - "add_out_of_line_code": 2, - "llds_code": 21, - "get_out_of_line_code": 2, - "get_var_slot_count": 2, - "set_maybe_trace_info": 3, - "get_opt_no_return_calls": 2, - "get_zombies": 2, - "set_zombies": 2, - "get_var_locn_info": 7, - "var_locn_info": 3, - "set_var_locn_info": 4, - "get_temps_in_use": 6, - "lval": 114, - "set_temps_in_use": 4, - "get_fail_info": 13, - "fail_info": 24, - "set_fail_info": 9, - "set_label_counter": 3, - "set_succip_used": 3, - "set_layout_info": 4, - "get_max_temp_slot_count": 2, - "set_max_temp_slot_count": 2, - "get_temp_content_map": 3, - "map": 7, - "slot_contents": 4, - "set_temp_content_map": 2, - "get_persistent_temps": 3, - "set_persistent_temps": 2, - "set_closure_layouts": 3, - "get_closure_seq_counter": 3, - "set_closure_seq_counter": 3, - "set_created_temp_frame": 2, - "code_info_static": 26, - "code_info_loc_dep": 22, - "code_info_persistent": 44, - ".": 610, - "cis_globals": 2, - "cis_exprn_opts": 2, - "cis_module_info": 2, - "cis_pred_id": 2, - "cis_proc_id": 2, - "cis_pred_info": 2, - "cis_proc_info": 2, - "cis_proc_label": 1, - "proc_label": 2, - "cis_varset": 2, - "cis_var_slot_count": 2, - "cis_maybe_trace_info": 3, - "cis_opt_no_resume_calls": 2, - "cis_emit_trail_ops": 2, - "cis_opt_trail_ops": 2, - "cis_emit_region_ops": 2, - "cis_opt_region_ops": 2, - "cis_auto_comments": 2, - "cis_lcmc_null": 2, - "cis_containing_goal_map": 2, - "cis_const_struct_map": 2, - "cild_forward_live_vars": 3, - "cild_instmap": 3, - "cild_zombies": 3, - "cild_var_locn_info": 3, - "cild_temps_in_use": 3, - "cild_fail_info": 3, - "cild_par_conj_depth": 3, - "cip_label_num_src": 3, - "cip_store_succip": 3, - "cip_label_info": 3, - "cip_proc_trace_events": 3, - "cip_stackslot_max": 3, - "cip_temp_contents": 3, - "cip_persistent_temps": 3, - "cip_closure_layout_seq": 3, - "cip_closure_layouts": 3, - "cip_max_reg_r_used": 3, - "cip_max_reg_f_used": 2, - "cip_created_temp_frame": 3, - "cip_static_cell_info": 3, - "cip_alloc_sites": 3, - "cip_used_env_vars": 3, - "cip_ts_string_table_size": 3, - "cip_ts_rev_string_table": 4, - "cip_out_of_line_code": 4, - "SaveSuccip": 2, - "Globals": 32, - "PredId": 50, - "ProcId": 31, - "PredInfo": 64, - "ProcInfo": 43, - "FollowVars": 6, - "ModuleInfo": 49, - "StaticCellInfo": 8, - "ConstStructMap": 2, - "ResumePoint": 13, - "TraceSlotInfo": 5, - "MaybeContainingGoalMap": 5, - "TSRevStringTable": 2, - "TSStringTableSize": 2, - "CodeInfo": 2, - "ProcLabel": 8, - "make_proc_label": 1, - "proc_info_get_initial_instmap": 1, - "InstMap": 6, - "proc_info_get_liveness_info": 1, - "Liveness": 4, - "CodeModel": 8, - "proc_info_interface_code_model": 2, - "build_input_arg_list": 1, - "ArgList": 2, - "proc_info_get_varset": 1, - "VarSet": 15, - "proc_info_get_vartypes": 2, - "VarTypes": 22, - "proc_info_get_stack_slots": 1, - "StackSlots": 5, - "ExprnOpts": 4, - "init_exprn_opts": 3, - "globals.lookup_bool_option": 18, - "use_float_registers": 5, - "UseFloatRegs": 6, - "yes": 144, - "FloatRegType": 3, - "reg_f": 1, - ";": 913, - "no": 365, - "reg_r": 2, - "globals.get_trace_level": 1, - "TraceLevel": 5, - "eff_trace_level_is_none": 2, - "trace_fail_vars": 1, - "FailVars": 3, - "MaybeFailVars": 3, - "set_of_var.union": 3, - "EffLiveness": 3, - "init_var_locn_state": 1, - "VarLocnInfo": 12, - "stack.init": 1, - "ResumePoints": 14, - "allow_hijacks": 3, - "AllowHijack": 3, - "Hijack": 6, - "allowed": 6, - "not_allowed": 5, - "DummyFailInfo": 2, - "resume_point_unknown": 9, - "may_be_different": 7, - "not_inside_non_condition": 2, - "map.init": 7, - "TempContentMap": 4, - "set.init": 7, - "PersistentTemps": 4, - "TempsInUse": 8, - "Zombies": 2, - "set_of_var.init": 1, - "LayoutMap": 2, - "max_var_slot": 1, - "VarSlotMax": 2, - "trace_reserved_slots": 1, - "FixedSlots": 2, - "_": 149, - "int.max": 1, - "SlotMax": 2, - "opt_no_return_calls": 3, - "OptNoReturnCalls": 2, - "use_trail": 3, - "UseTrail": 2, - "disable_trail_ops": 3, - "DisableTrailOps": 2, - "EmitTrailOps": 3, - "do_not_add_trail_ops": 1, - "optimize_trail_usage": 3, - "OptTrailOps": 2, - "optimize_region_ops": 3, - "OptRegionOps": 2, - "region_analysis": 3, - "UseRegions": 3, - "EmitRegionOps": 3, - "do_not_add_region_ops": 1, - "auto_comments": 4, - "AutoComments": 2, - "optimize_constructor_last_call_null": 3, - "LCMCNull": 2, - "CodeInfo0": 2, - "init_fail_info": 2, - "will": 1, - "override": 1, - "this": 4, - "dummy": 2, - "value": 16, - "nested": 1, - "parallel": 3, - "conjunction": 1, - "depth": 1, - "counter.init": 2, - "[": 203, - "]": 203, - "set_tree234.init": 1, - "cord.empty": 1, - "init_maybe_trace_info": 3, - "CodeInfo1": 2, - "exprn_opts.": 1, - "gcc_non_local_gotos": 3, - "OptNLG": 3, - "NLG": 3, - "have_non_local_gotos": 1, - "do_not_have_non_local_gotos": 1, - "asm_labels": 3, - "OptASM": 3, - "ASM": 3, - "have_asm_labels": 1, - "do_not_have_asm_labels": 1, - "static_ground_cells": 3, - "OptSGCell": 3, - "SGCell": 3, - "have_static_ground_cells": 1, - "do_not_have_static_ground_cells": 1, - "unboxed_float": 3, - "OptUBF": 3, - "UBF": 3, - "have_unboxed_floats": 1, - "do_not_have_unboxed_floats": 1, - "OptFloatRegs": 3, - "do_not_use_float_registers": 1, - "static_ground_floats": 3, - "OptSGFloat": 3, - "SGFloat": 3, - "have_static_ground_floats": 1, - "do_not_have_static_ground_floats": 1, - "static_code_addresses": 3, - "OptStaticCodeAddr": 3, - "StaticCodeAddrs": 3, - "have_static_code_addresses": 1, - "do_not_have_static_code_addresses": 1, - "trace_level": 4, - "CI": 294, - "proc_info_get_has_tail_call_events": 1, - "HasTailCallEvents": 3, - "tail_call_events": 1, - "get_next_label": 5, - "TailRecLabel": 2, - "MaybeTailRecLabel": 3, - "no_tail_call_events": 1, - "trace_setup": 1, - "TraceInfo": 2, - "MaxRegR": 4, - "MaxRegF": 4, - "cip_max_reg_f_used.": 1, - "TI": 4, - "LV": 2, - "IM": 2, - "Zs": 2, - "EI": 2, - "FI": 2, - "N": 6, - "LC": 2, - "SU": 2, - "LI": 2, - "PTE": 2, - "TM": 2, - "CM": 2, - "PT": 2, - "CLS": 2, - "CG": 2, - "MR": 4, - "MF": 1, - "MF.": 1, - "SCI": 2, - "ASI": 2, - "UEV": 2, - "ContainingGoalMap": 2, - "unexpected": 21, - "NewCode": 2, - "Code0": 2, - ".CI": 29, - "Code": 36, - "+": 127, - "Code.": 1, - "get_stack_slots": 2, - "stack_slots": 1, - "get_follow_var_map": 2, - "abs_follow_vars_map": 1, - "get_next_non_reserved": 2, - "reg_type": 1, - "set_follow_vars": 4, - "pre_goal_update": 3, - "hlds_goal_info": 22, - "has_subgoals": 2, - "post_goal_update": 3, - "body_typeinfo_liveness": 4, - "variable_type": 3, - "prog_var": 58, - "mer_type.": 1, - "variable_is_of_dummy_type": 2, - "is_dummy_type.": 1, - "search_type_defn": 4, - "mer_type": 21, - "hlds_type_defn": 1, - "semidet.": 10, - "lookup_type_defn": 2, - "hlds_type_defn.": 1, - "lookup_cheaper_tag_test": 2, - "maybe_cheaper_tag_test.": 1, - "filter_region_vars": 2, - "set_of_progvar.": 2, - "get_proc_model": 2, - "code_model.": 1, - "get_headvars": 2, - "get_arginfo": 2, - "arg_info": 2, - "get_pred_proc_arginfo": 3, - "current_resume_point_vars": 2, - "variable_name": 2, - "make_proc_entry_label": 2, - "code_addr.": 1, - "label": 5, - "succip_is_used": 2, - "add_trace_layout_for_label": 2, - "term.context": 3, - "trace_port": 1, - "forward_goal_path": 1, - "user_event_info": 1, - "layout_label_info": 2, - "get_cur_proc_label": 4, - "get_next_closure_seq_no": 2, - "add_closure_layout": 2, - "add_threadscope_string": 2, - "get_threadscope_rev_string_table": 2, - "add_scalar_static_cell": 2, - "typed_rval": 1, - "data_id": 3, - "add_scalar_static_cell_natural_types": 2, - "rval": 3, - "add_vector_static_cell": 2, - "llds_type": 1, - "add_alloc_site_info": 2, - "prog_context": 1, - "alloc_site_id": 2, - "add_resume_layout_for_label": 2, - "var_locn_get_stack_slots": 1, - "FollowVarMap": 2, - "var_locn_get_follow_var_map": 1, - "RegType": 2, - "NextNonReserved": 2, - "var_locn_get_next_non_reserved": 1, - "VarLocnInfo0": 4, - "var_locn_set_follow_vars": 1, - "GoalInfo": 44, - "HasSubGoals": 3, - "goal_info_get_resume_point": 1, - "no_resume_point": 1, - "resume_point": 1, - "goal_info_get_follow_vars": 1, - "MaybeFollowVars": 3, - "goal_info_get_pre_deaths": 1, - "PreDeaths": 3, - "rem_forward_live_vars": 3, - "maybe_make_vars_forward_dead": 2, - "goal_info_get_pre_births": 1, - "PreBirths": 2, - "add_forward_live_vars": 2, - "does_not_have_subgoals": 2, - "goal_info_get_post_deaths": 2, - "PostDeaths": 5, - "goal_info_get_post_births": 1, - "PostBirths": 3, - "make_vars_forward_live": 1, - "InstMapDelta": 2, - "goal_info_get_instmap_delta": 1, - "InstMap0": 2, - "instmap.apply_instmap_delta": 1, - "TypeInfoLiveness": 2, - "module_info_pred_info": 6, - "body_should_use_typeinfo_liveness": 1, - "Var": 13, - "Type": 18, - "lookup_var_type": 3, - "IsDummy": 2, - "VarType": 2, - "check_dummy_type": 1, - "TypeDefn": 6, - "type_to_ctor_det": 1, - "TypeCtor": 2, - "module_info_get_type_table": 1, - "TypeTable": 2, - "search_type_ctor_defn": 1, - "TypeDefnPrime": 2, - "CheaperTagTest": 3, - "get_type_defn_body": 1, - "TypeBody": 2, - "hlds_du_type": 1, - "CheaperTagTestPrime": 2, - "no_cheaper_tag_test": 1, - "ForwardLiveVarsBeforeGoal": 6, - "RegionVars": 2, - "code_info.get_var_types": 1, - "set_of_var.filter": 1, - "is_region_var": 1, - "HeadVars": 20, - "module_info_pred_proc_info": 4, - "proc_info_get_headvars": 2, - "ArgInfo": 4, - "proc_info_arg_info": 1, - "ResumeVars": 4, - "FailInfo": 19, - "ResumePointStack": 2, - "stack.det_top": 5, - "ResumePointInfo": 2, - "pick_first_resume_point": 1, - "ResumeMap": 8, - "map.keys": 3, - "ResumeMapVarList": 2, - "set_of_var.list_to_set": 3, - "Name": 4, - "Varset": 2, - "varset.lookup_name": 2, - "Immed0": 3, - "CodeAddr": 2, - "Immed": 3, - "globals.lookup_int_option": 1, - "procs_per_c_function": 3, - "ProcsPerFunc": 2, - "CurPredId": 2, - "CurProcId": 2, - "proc": 2, - "make_entry_label": 1, - "Label": 8, - "C0": 4, - "counter.allocate": 2, - "C": 34, - "internal_label": 3, - "Context": 20, - "Port": 2, - "IsHidden": 2, - "GoalPath": 2, - "MaybeSolverEventInfo": 2, - "Layout": 2, - "Internals0": 8, - "Exec": 5, - "trace_port_layout_info": 1, - "LabelNum": 8, - "entry_label": 2, - "map.search": 2, - "Internal0": 4, - "internal_layout_info": 6, - "Exec0": 3, - "Resume": 5, - "Return": 6, - "Internal": 8, - "map.det_update": 4, - "Internals": 6, - "map.det_insert": 3, - "LayoutInfo": 2, - "Resume0": 3, - "get_active_temps_data": 2, - "assoc_list": 1, - "Temps": 2, - "map.select": 1, - "TempsInUseContentMap": 2, - "map.to_assoc_list": 3, - "cis_proc_label.": 1, - "SeqNo": 2, - "ClosureLayout": 2, - "ClosureLayouts": 2, - "|": 38, - "String": 2, - "SlotNum": 2, - "Size0": 3, - "RevTable0": 2, - "Size": 4, - "RevTable": 3, - "RevTable.": 1, - "TableSize": 2, - "cip_ts_string_table_size.": 1, - "RvalsTypes": 2, - "DataAddr": 6, - "StaticCellInfo0": 6, - "global_data.add_scalar_static_cell": 1, - "Rvals": 2, - "global_data.add_scalar_static_cell_natural_types": 1, - "Types": 6, - "Vector": 2, - "global_data.add_vector_static_cell": 1, - "AllocId": 2, - "AllocSite": 3, - "AllocSites0": 2, - "set_tree234.insert": 1, - "AllocSites": 2, - "position_info.": 1, - "branch_end_info.": 1, - "branch_end": 4, - "branch_end_info": 7, - "remember_position": 3, - "position_info": 14, - "reset_to_position": 4, - "reset_resume_known": 2, - "generate_branch_end": 2, - "abs_store_map": 3, - "after_all_branches": 2, - "save_hp_in_branch": 2, - "pos_get_fail_info": 3, - "fail_info.": 2, - "LocDep": 6, - "cild_fail_info.": 1, - "CurCI": 2, - "NextCI": 2, - "Static": 2, - "Persistent": 2, - "NextCI0": 4, - "TempsInUse0": 4, - "set.union": 2, - "BranchStart": 2, - "BranchStartFailInfo": 2, - "BSResumeKnown": 2, - "CurFailInfo": 2, - "CurFailStack": 2, - "CurCurfMaxfr": 2, - "CurCondEnv": 2, - "CurHijack": 2, - "NewFailInfo": 2, - "StoreMap": 8, - "MaybeEnd0": 3, - "MaybeEnd": 6, - "AbsVarLocs": 3, - "assoc_list.values": 1, - "AbsLocs": 2, - "code_util.max_mentioned_abs_regs": 1, - "instmap_is_reachable": 1, - "VarLocs": 2, - "assoc_list.map_values_only": 2, - "abs_locn_to_lval": 2, - "place_vars": 1, - "remake_with_store_map": 4, - "empty": 9, - "EndCodeInfo1": 5, - "EndCodeInfo0": 3, - "FailInfo0": 13, - "FailInfo1": 2, - "ResumeKnown0": 5, - "CurfrMaxfr0": 2, - "CondEnv0": 3, - "Hijack0": 2, - "R": 2, - "ResumeKnown1": 2, - "CurfrMaxfr1": 2, - "CondEnv1": 2, - "Hijack1": 2, - "resume_point_known": 15, - "Redoip0": 3, - "Redoip1": 2, - "ResumeKnown": 21, - "expect": 15, - "unify": 21, - "must_be_equal": 11, - "CurfrMaxfr": 24, - "EndCodeInfoA": 2, - "TempsInUse1": 2, - "EndCodeInfo": 2, - "BranchEnd": 2, - "BranchEndCodeInfo": 2, - "BranchEndLocDep": 2, - "VarLocns": 2, - "VarLvals": 2, - "reinit_var_locn_state": 1, - "Slot": 2, - "Pos0": 2, - "Pos": 2, - "CI0": 2, - "CIStatic0": 2, - "CILocDep0": 2, - "CIPersistent0": 2, - "LocDep0": 2, - "CI1": 2, - "save_hp": 1, - "CI2": 2, - "CIStatic": 2, - "CIPersistent": 2, - "resume_map.": 1, - "resume_point_info.": 1, - "disj_hijack_info.": 1, - "prepare_for_disj_hijack": 2, - "code_model": 3, - "disj_hijack_info": 3, - "undo_disj_hijack": 2, - "ite_hijack_info.": 1, - "prepare_for_ite_hijack": 2, - "embedded_stack_frame_id": 3, - "ite_hijack_info": 3, - "ite_enter_then": 2, - "simple_neg_info.": 1, - "enter_simple_neg": 2, - "simple_neg_info": 3, - "leave_simple_neg": 2, - "det_commit_info.": 1, - "prepare_for_det_commit": 2, - "det_commit_info": 6, - "generate_det_commit": 2, - "semi_commit_info.": 1, - "prepare_for_semi_commit": 2, - "semi_commit_info": 6, - "generate_semi_commit": 2, - "effect_resume_point": 2, - "pop_resume_point": 1, - "top_resume_point": 1, - "set_resume_point_to_unknown": 1, - "set_resume_point_and_frame_to_unknown": 1, - "generate_failure": 2, - "fail_if_rval_is_false": 1, - "failure_is_direct_branch": 1, - "code_addr": 8, - "may_use_nondet_tailcall": 1, - "nondet_tail_call": 1, - "produce_vars": 1, - "resume_map": 9, - "flush_resume_vars_to_stack": 1, - "make_resume_point": 1, - "resume_locs": 1, - "generate_resume_point": 2, - "resume_point_vars": 1, - "resume_point_stack_addr": 2, - "stack": 1, - "curfr_vs_maxfr": 2, - "condition_env": 3, - "hijack_allowed": 2, - "orig_only": 2, - "stack_only": 2, - "orig_and_stack": 1, - "stack_and_orig": 1, - "redoip_update": 2, - "has_been_done": 5, - "wont_be_done.": 1, - "resume_point_unknown.": 1, - "may_be_different.": 1, - "inside_non_condition": 6, - "not_inside_non_condition.": 1, - "not_allowed.": 1, - "disj_no_hijack": 4, - "disj_temp_frame": 4, - "disj_quarter_hijack": 4, - "disj_half_hijack": 3, - "disj_full_hijack": 3, - "HijackInfo": 29, - "CondEnv": 12, - "Allow": 12, - "model_det": 2, - "model_semi": 3, - "singleton": 28, - "llds_instr": 64, - "comment": 5, - "model_non": 2, - "create_temp_frame": 4, - "do_fail": 6, - "stack.pop": 1, - "TopResumePoint": 6, - "RestResumePoints": 2, - "stack.is_empty": 1, - "wont_be_done": 2, - "acquire_temp_slot": 15, - "slot_lval": 14, - "redoip_slot": 30, - "curfr": 18, - "non_persistent_temp_slot": 15, - "RedoipSlot": 33, - "assign": 46, - "maxfr": 42, - "redofr_slot": 14, - "RedofrSlot": 17, - "from_list": 13, - "prevfr_slot": 3, - "pick_stack_resume_point": 3, - "StackLabel": 9, - "LabelConst": 4, - "const": 10, - "llconst_code_addr": 6, - "true": 3, - "ite_region_info": 5, - "ite_info": 3, - "ite_hijack_type": 2, - "ite_no_hijack": 3, - "ite_temp_frame": 3, - "ite_quarter_hijack": 3, - "ite_half_hijack": 3, - "ite_full_hijack": 3, - "CondCodeModel": 4, - "MaybeEmbeddedFrameId": 5, - "HijackType": 12, - "MaybeRegionInfo": 12, - "MaxfrSlot": 30, - "TempFrameCode": 4, - "MaxfrCode": 7, - "EmbeddedFrameId": 2, - "slot_success_record": 1, - "persistent_temp_slot": 1, - "SuccessRecordSlot": 6, - "InitSuccessCode": 3, - "llconst_false": 1, - "ITEResumePoint": 2, - "ThenCode": 10, - "ElseCode": 7, - "ResumePoints0": 5, - "stack.det_pop": 1, - "HijackResumeKnown": 2, - "OldCondEnv": 2, - "RegionInfo": 2, - "EmbeddedStackFrameId": 2, - "ITEStackResumeCodeAddr": 2, - "llconst_true": 1, - "AfterRegionOp": 3, - "if_val": 1, - "unop": 1, - "logical_not": 1, - "code_label": 2, - "use_and_maybe_pop_region_frame": 1, - "region_ite_nondet_cond_fail": 1, - "goto": 2, - "maybe_pick_stack_resume_point": 1, - "ResumeMap0": 2, - "make_fake_resume_map": 5, - "do_redo": 1, - "is_empty": 1, - "Vars": 10, - "Locns": 2, - "set.make_singleton_set": 1, - "reg": 1, - "pair": 7, - "region_commit_stack_frame": 5, - "AddTrailOps": 4, - "AddRegionOps": 5, - "CommitGoalInfo": 4, - "DetCommitInfo": 4, - "SaveMaxfrCode": 3, - "save_maxfr": 3, - "MaybeMaxfrSlot": 6, - "maybe_save_trail_info": 2, - "MaybeTrailSlots": 8, - "SaveTrailCode": 4, - "maybe_save_region_commit_frame": 4, - "MaybeRegionCommitFrameInfo": 8, - "SaveRegionCommitFrameCode": 2, - "SaveRegionCommitFrameCode.": 2, - "RestoreMaxfrCode": 3, - "restore_maxfr": 3, - "release_temp_slot": 1, - "maybe_restore_trail_info": 2, - "CommitTrailCode": 4, - "maybe_restore_region_commit_frame": 2, - "SuccessRegionCode": 3, - "_FailureRegionCode": 1, - "SuccessRegionCode.": 1, - "commit_hijack_info": 2, - "commit_temp_frame": 3, - "commit_quarter_hijack": 3, - "commit_half_hijack": 3, - "commit_full_hijack": 3, - "SemiCommitInfo": 4, - "clone_resume_point": 1, - "NewResumePoint": 4, - "stack.push": 1, - "StackLabelConst": 7, - "use_minimal_model_stack_copy_cut": 3, - "UseMinimalModelStackCopyCut": 4, - "Components": 4, - "foreign_proc_raw_code": 4, - "cannot_branch_away": 4, - "proc_affects_liveness": 2, - "live_lvals_info": 4, - "proc_does_not_affect_liveness": 2, - "MD": 4, - "proc_may_duplicate": 2, - "MarkCode": 3, - "foreign_proc_code": 2, - "proc_will_not_call_mercury": 2, - "HijackCode": 5, - "UseMinimalModel": 3, - "CutCode": 4, - "SuccessUndoCode": 5, - "FailureUndoCode": 5, - "AfterCommit": 2, - "ResumePointCode": 2, - "FailCode": 2, - "RestoreTrailCode": 2, - "FailureRegionCode": 2, - "SuccLabel": 3, - "GotoSuccLabel": 2, - "SuccLabelCode": 1, - "SuccessCode": 2, - "FailureCode": 2, - "SuccLabelCode.": 1, - "_ForwardLiveVarsBeforeGoal": 1, - "expr.": 1, - "char": 10, - "token": 5, - "num": 11, - "eof": 6, - "parse": 1, - "exprn/1": 1, - "xx": 1, - "scan": 16, - "mode": 8, - "rule": 3, - "exprn": 7, - "Num": 18, - "A": 14, - "term": 10, - "B": 8, - "{": 27, - "}": 28, - "*": 20, - "factor": 6, - "/": 1, - "//": 2, - "Chars": 2, - "Toks": 13, - "Toks0": 11, - "list__reverse": 1, - "Cs": 9, - "char__is_whitespace": 1, - "char__is_digit": 2, - "takewhile": 1, - "Digits": 2, - "Rest": 2, - "string__from_char_list": 1, - "NumStr": 2, - "string__det_to_int": 1, - "error": 7, - "hello.": 1, - "main": 15, - "io": 6, - "di": 54, - "uo": 58, - "IO": 4, - "io.write_string": 1, - "char.": 1, - "getopt_io.": 1, - "short_option": 36, - "option": 9, - "long_option": 241, - "option_defaults": 2, - "option_data": 2, - "nondet.": 1, - "special_handler": 1, - "special_data": 1, - "option_table": 5, - "maybe_option_table": 3, - "inconsequential_options": 1, - "options_help": 1, - "option_table_add_mercury_library_directory": 1, - "option_table.": 2, - "option_table_add_search_library_files_directory": 1, - "quote_arg": 1, - "inhibit_warnings": 4, - "inhibit_accumulator_warnings": 3, - "halt_at_warn": 3, - "halt_at_syntax_errors": 3, - "halt_at_auto_parallel_failure": 3, - "warn_singleton_vars": 3, - "warn_overlapping_scopes": 3, - "warn_det_decls_too_lax": 3, - "warn_inferred_erroneous": 3, - "warn_nothing_exported": 3, - "warn_unused_args": 3, - "warn_interface_imports": 3, - "warn_missing_opt_files": 3, - "warn_missing_trans_opt_files": 3, - "warn_missing_trans_opt_deps": 3, - "warn_non_contiguous_clauses": 3, - "warn_non_contiguous_foreign_procs": 3, - "warn_non_stratification": 3, - "warn_unification_cannot_succeed": 3, - "warn_simple_code": 3, - "warn_duplicate_calls": 3, - "warn_missing_module_name": 3, - "warn_wrong_module_name": 3, - "warn_smart_recompilation": 3, - "warn_undefined_options_variables": 3, - "warn_non_tail_recursion": 3, - "warn_target_code": 3, - "warn_up_to_date": 3, - "warn_stubs": 3, - "warn_dead_procs": 3, - "warn_table_with_inline": 3, - "warn_non_term_special_preds": 3, - "warn_known_bad_format_calls": 3, - "warn_unknown_format_calls": 3, - "warn_obsolete": 3, - "warn_insts_without_matching_type": 3, - "warn_unused_imports": 3, - "inform_ite_instead_of_switch": 3, - "warn_unresolved_polymorphism": 3, - "warn_suspicious_foreign_procs": 3, - "warn_state_var_shadowing": 3, - "inform_inferred": 3, - "inform_inferred_types": 3, - "inform_inferred_modes": 3, - "verbose": 4, - "very_verbose": 4, - "verbose_errors": 4, - "verbose_recompilation": 3, - "find_all_recompilation_reasons": 3, - "verbose_make": 3, - "verbose_commands": 3, - "output_compile_error_lines": 3, - "report_cmd_line_args": 3, - "report_cmd_line_args_in_doterr": 3, - "statistics": 4, - "detailed_statistics": 3, - "proc_size_statistics": 3, - "debug_types": 4, - "debug_modes": 4, - "debug_modes_statistics": 3, - "debug_modes_minimal": 3, - "debug_modes_verbose": 3, - "debug_modes_pred_id": 3, - "debug_dep_par_conj": 3, - "debug_det": 4, - "debug_code_gen_pred_id": 3, - "debug_opt": 3, - "debug_term": 4, - "constraint": 2, - "termination": 3, - "analysis": 1, - "debug_opt_pred_id": 3, - "debug_opt_pred_name": 3, - "debug_pd": 3, - "pd": 1, - "partial": 1, - "deduction/deforestation": 1, - "debug_il_asm": 3, - "il_asm": 1, - "IL": 2, - "generation": 1, - "via": 1, - "asm": 1, - "debug_liveness": 3, - "debug_stack_opt": 3, - "debug_make": 3, - "debug_closure": 3, - "debug_trail_usage": 3, - "debug_mode_constraints": 3, - "debug_intermodule_analysis": 3, - "debug_mm_tabling_analysis": 3, - "debug_indirect_reuse": 3, - "debug_type_rep": 3, - "make_short_interface": 4, - "make_interface": 5, - "make_private_interface": 4, - "make_optimization_interface": 5, - "make_transitive_opt_interface": 5, - "make_analysis_registry": 3, - "make_xml_documentation": 5, - "generate_source_file_mapping": 4, - "generate_dependency_file": 3, - "generate_dependencies": 4, - "generate_module_order": 3, - "generate_standalone_interface": 3, - "convert_to_mercury": 6, - "typecheck_only": 4, - "errorcheck_only": 4, - "target_code_only": 10, - "compile_only": 4, - "compile_to_shared_lib": 3, - "output_grade_string": 3, - "output_link_command": 3, - "output_shared_lib_link_command": 3, - "output_libgrades": 3, - "output_cc": 3, - "output_c_compiler_type": 4, - "output_csharp_compiler_type": 3, - "output_cflags": 3, - "output_library_link_flags": 3, - "output_grade_defines": 3, - "output_c_include_directory_flags": 4, - "smart_recompilation": 3, - "generate_item_version_numbers": 2, - "generate_mmc_make_module_dependencies": 4, - "assume_gmake": 3, - "trace_optimized": 4, - "trace_prof": 3, - "trace_table_io": 3, - "trace_table_io_only_retry": 3, - "trace_table_io_states": 3, - "trace_table_io_require": 3, - "trace_table_io_all": 3, - "trace_goal_flags": 3, - "prof_optimized": 4, - "exec_trace_tail_rec": 3, - "suppress_trace": 3, - "force_disable_tracing": 3, - "delay_death": 3, - "delay_death_max_vars": 3, - "stack_trace_higher_order": 3, - "force_disable_ssdebug": 3, - "generate_bytecode": 3, - "line_numbers": 4, - "frameopt_comments": 3, - "max_error_line_width": 3, - "show_dependency_graph": 3, - "imports_graph": 3, - "dump_trace_counts": 3, - "dump_hlds": 5, - "dump_hlds_pred_id": 3, - "dump_hlds_pred_name": 3, - "dump_hlds_alias": 4, - "dump_hlds_options": 3, - "dump_hlds_inst_limit": 3, - "dump_hlds_file_suffix": 3, - "dump_same_hlds": 3, - "dump_mlds": 4, - "verbose_dump_mlds": 4, - "mode_constraints": 3, - "simple_mode_constraints": 3, - "prop_mode_constraints": 4, - "benchmark_modes": 3, - "benchmark_modes_repeat": 3, - "sign_assembly": 3, - "separate_assemblies": 3, - "reorder_conj": 3, - "reorder_disj": 3, - "fully_strict": 3, - "strict_sequential": 3, - "allow_stubs": 3, - "infer_types": 3, - "infer_modes": 3, - "infer_det": 4, - "infer_all": 3, - "type_inference_iteration_limit": 3, - "mode_inference_iteration_limit": 3, - "event_set_file_name": 3, - "grade": 4, - "target": 14, - "il": 5, - "il_only": 4, - "compile_to_c": 4, - "c": 1, - "java": 35, - "java_only": 4, - "csharp": 6, - "csharp_only": 4, - "x86_64": 6, - "x86_64_only": 4, - "erlang": 6, - "erlang_only": 4, - "exec_trace": 3, - "decl_debug": 3, - "profiling": 5, - "profile_time": 5, - "profile_calls": 6, - "time_profiling": 3, - "memory_profiling": 3, - "profile_mem": 1, - "deep_profiling": 3, - "profile_deep": 4, - "profile_memory": 3, - "use_activation_counts": 3, - "pre_prof_transforms_simplify": 3, - "pre_implicit_parallelism_simplify": 3, - "coverage_profiling": 3, - "coverage_profiling_via_calls": 3, - "coverage_profiling_static": 3, - "profile_deep_coverage_after_goal": 3, - "profile_deep_coverage_branch_ite": 3, - "profile_deep_coverage_branch_switch": 3, - "profile_deep_coverage_branch_disj": 3, - "profile_deep_coverage_use_portcounts": 3, - "profile_deep_coverage_use_trivial": 2, - "profile_for_feedback": 2, - "use_zeroing_for_ho_cycles": 2, - "use_lots_of_ho_specialization": 2, - "deep_profile_tail_recursion": 2, - "record_term_sizes_as_words": 2, - "record_term_sizes_as_cells": 2, - "experimental_complexity": 2, - "gc": 2, - "threadscope": 2, - "trail_segments": 2, - "use_minimal_model_stack_copy": 2, - "use_minimal_model_own_stacks": 2, - "minimal_model_debug": 2, - "single_prec_float": 2, - "type_layout": 2, - "maybe_thread_safe_opt": 2, - "extend_stacks_when_needed": 2, - "stack_segments": 2, - "use_regions": 2, - "use_alloc_regions": 2, - "use_regions_debug": 2, - "use_regions_profiling": 2, - "source_to_source_debug": 5, - "ssdb_trace_level": 3, - "link_ssdb_libs": 4, - "tags": 2, - "num_tag_bits": 2, - "num_reserved_addresses": 2, - "num_reserved_objects": 2, - "bits_per_word": 2, - "bytes_per_word": 2, - "conf_low_tag_bits": 2, - "unboxed_enums": 2, - "unboxed_no_tag_types": 2, - "sync_term_size": 2, - "words": 1, - "gcc_global_registers": 2, - "pic_reg": 2, - "highlevel_code": 3, - "highlevel_data": 2, - "gcc_nested_functions": 2, - "det_copy_out": 2, - "nondet_copy_out": 2, - "put_commit_in_own_func": 2, - "put_nondet_env_on_heap": 2, - "verifiable_code": 2, - "il_refany_fields": 2, - "il_funcptr_types": 2, - "il_byref_tailcalls": 2, - "backend_foreign_languages": 2, - "stack_trace": 2, - "basic_stack_layout": 2, - "agc_stack_layout": 2, - "procid_stack_layout": 2, - "trace_stack_layout": 2, - "can_compare_constants_as_ints": 2, - "pretest_equality_cast_pointers": 2, - "can_compare_compound_values": 2, - "lexically_order_constructors": 2, - "mutable_always_boxed": 2, - "delay_partial_instantiations": 2, - "allow_defn_of_builtins": 2, - "special_preds": 2, - "type_ctor_info": 2, - "type_ctor_layout": 2, - "type_ctor_functors": 2, - "new_type_class_rtti": 2, - "rtti_line_numbers": 2, - "disable_minimal_model_stack_copy_pneg": 2, - "disable_minimal_model_stack_copy_cut": 2, - "use_minimal_model_stack_copy_pneg": 2, - "size_region_ite_fixed": 2, - "size_region_disj_fixed": 2, - "size_region_semi_disj_fixed": 1, - "size_region_commit_fixed": 2, - "size_region_ite_protect": 2, - "size_region_ite_snapshot": 2, - "size_region_semi_disj_protect": 2, - "size_region_disj_snapshot": 2, - "size_region_commit_entry": 2, - "solver_type_auto_init": 2, - "allow_multi_arm_switches": 2, - "type_check_constraints": 2, - "allow_argument_packing": 2, - "low_level_debug": 2, - "table_debug": 2, - "trad_passes": 2, - "parallel_liveness": 2, - "parallel_code_gen": 2, - "polymorphism": 2, - "reclaim_heap_on_failure": 2, - "reclaim_heap_on_semidet_failure": 2, - "reclaim_heap_on_nondet_failure": 2, - "have_delay_slot": 2, - "num_real_r_regs": 2, - "num_real_f_regs": 2, - "num_real_r_temps": 2, - "num_real_f_temps": 2, - "max_jump_table_size": 2, - "max_specialized_do_call_closure": 2, - "max_specialized_do_call_class_method": 2, - "compare_specialization": 2, - "should_pretest_equality": 2, - "fact_table_max_array_size": 2, - "fact_table_hash_percent_full": 2, - "gcc_local_labels": 2, - "prefer_switch": 2, - "opt_level": 3, - "opt_level_number": 2, - "opt_space": 2, - "Default": 3, - "to": 16, - "optimize": 3, - "time.": 1, - "intermodule_optimization": 2, - "read_opt_files_transitively": 2, - "use_opt_files": 2, - "use_trans_opt_files": 2, - "transitive_optimization": 2, - "intermodule_analysis": 2, - "analysis_repeat": 2, - "analysis_file_cache": 2, - "allow_inlining": 2, - "inlining": 2, - "inline_simple": 2, - "inline_builtins": 2, - "inline_single_use": 2, - "inline_call_cost": 2, - "inline_compound_threshold": 2, - "inline_simple_threshold": 2, - "inline_vars_threshold": 2, - "intermod_inline_simple_threshold": 2, - "from_ground_term_threshold": 2, - "enable_const_struct": 2, - "common_struct": 2, - "common_struct_preds": 2, - "common_goal": 2, - "constraint_propagation": 2, - "local_constraint_propagation": 2, - "optimize_unused_args": 2, - "intermod_unused_args": 2, - "optimize_higher_order": 2, - "higher_order_size_limit": 2, - "higher_order_arg_limit": 2, - "unneeded_code": 2, - "unneeded_code_copy_limit": 2, - "unneeded_code_debug": 2, - "unneeded_code_debug_pred_name": 2, - "type_specialization": 2, - "user_guided_type_specialization": 2, - "introduce_accumulators": 2, - "optimize_constructor_last_call_accumulator": 2, - "optimize_constructor_last_call": 2, - "optimize_duplicate_calls": 2, - "constant_propagation": 2, - "excess_assign": 2, - "optimize_format_calls": 2, - "optimize_saved_vars_const": 2, - "optimize_saved_vars_cell": 2, - "optimize_saved_vars_cell_loop": 2, - "optimize_saved_vars_cell_full_path": 2, - "optimize_saved_vars_cell_on_stack": 2, - "optimize_saved_vars_cell_candidate_headvars": 2, - "optimize_saved_vars_cell_cv_store_cost": 2, - "optimize_saved_vars_cell_cv_load_cost": 2, - "optimize_saved_vars_cell_fv_store_cost": 2, - "optimize_saved_vars_cell_fv_load_cost": 2, - "optimize_saved_vars_cell_op_ratio": 2, - "optimize_saved_vars_cell_node_ratio": 2, - "optimize_saved_vars_cell_all_path_node_ratio": 2, - "optimize_saved_vars_cell_include_all_candidates": 2, - "optimize_saved_vars": 2, - "loop_invariants": 2, - "delay_construct": 2, - "follow_code": 2, - "optimize_dead_procs": 2, - "deforestation": 2, - "deforestation_depth_limit": 2, - "deforestation_cost_factor": 2, - "deforestation_vars_threshold": 2, - "deforestation_size_threshold": 2, - "analyse_trail_usage": 2, - "analyse_mm_tabling": 2, - "untuple": 2, - "tuple": 2, - "tuple_trace_counts_file": 2, - "tuple_costs_ratio": 2, - "tuple_min_args": 2, - "inline_par_builtins": 2, - "always_specialize_in_dep_par_conjs": 2, - "allow_some_paths_only_waits": 2, - "structure_sharing_analysis": 2, - "structure_sharing_widening": 2, - "structure_reuse_analysis": 2, - "structure_reuse_constraint": 2, - "structure_reuse_constraint_arg": 2, - "structure_reuse_max_conditions": 2, - "structure_reuse_repeat": 2, - "structure_reuse_free_cells": 2, - "termination_check": 2, - "verbose_check_termination": 2, - "termination_single_args": 2, - "termination_norm": 2, - "termination_error_limit": 2, - "termination_path_limit": 2, - "termination2": 2, - "check_termination2": 2, - "verbose_check_termination2": 2, - "termination2_norm": 2, - "widening_limit": 2, - "arg_size_analysis_only": 2, - "propagate_failure_constrs": 2, - "term2_maximum_matrix_size": 2, - "analyse_exceptions": 2, - "analyse_closures": 2, - "smart_indexing": 2, - "dense_switch_req_density": 2, - "lookup_switch_req_density": 2, - "dense_switch_size": 2, - "lookup_switch_size": 2, - "string_hash_switch_size": 2, - "string_binary_switch_size": 2, - "tag_switch_size": 2, - "try_switch_size": 2, - "binary_switch_size": 2, - "switch_single_rec_base_first": 2, - "switch_multi_rec_base_first": 2, - "use_atomic_cells": 2, - "middle_rec": 2, - "simple_neg": 2, - "optimize_tailcalls": 2, - "optimize_initializations": 2, - "eliminate_local_vars": 2, - "generate_trail_ops_inline": 2, - "common_data": 2, - "common_layout_data": 2, - "Also": 1, - "used": 2, - "for": 8, - "MLDS": 2, - "optimizations.": 1, - "optimize_peep": 2, - "optimize_peep_mkword": 2, - "optimize_jumps": 2, - "optimize_fulljumps": 2, - "pessimize_tailcalls": 2, - "checked_nondet_tailcalls": 2, - "use_local_vars": 2, - "local_var_access_threshold": 2, - "standardize_labels": 2, - "optimize_labels": 2, - "optimize_dups": 2, - "optimize_proc_dups": 2, - "optimize_frames": 2, - "optimize_delay_slot": 2, - "optimize_reassign": 2, - "optimize_repeat": 2, - "layout_compression_limit": 2, - "use_macro_for_redo_fail": 2, - "emit_c_loops": 2, - "everything_in_one_c_function": 2, - "local_thread_engine_base": 2, - "erlang_switch_on_strings_as_atoms": 2, - "target_debug": 2, - "cc": 2, - "cflags": 2, - "quoted_cflag": 2, - "c_include_directory": 2, - "c_optimize": 2, - "ansi_c": 2, - "inline_alloc": 2, - "gcc_flags": 2, - "quoted_gcc_flag": 2, - "clang_flags": 2, - "quoted_clang_flag": 2, - "msvc_flags": 2, - "quoted_msvc_flag": 2, - "cflags_for_warnings": 2, - "cflags_for_optimization": 2, - "cflags_for_ansi": 2, - "cflags_for_regs": 2, - "cflags_for_gotos": 2, - "cflags_for_threads": 2, - "cflags_for_debug": 2, - "cflags_for_pic": 2, - "c_flag_to_name_object_file": 2, - "object_file_extension": 2, - "pic_object_file_extension": 2, - "link_with_pic_object_file_extension": 2, - "c_compiler_type": 2, - "csharp_compiler_type": 2, - "java_compiler": 2, - "java_interpreter": 2, - "java_flags": 2, - "quoted_java_flag": 2, - "java_classpath": 2, - "java_object_file_extension": 2, - "il_assembler": 2, - "ilasm_flags": 2, - "quoted_ilasm_flag": 2, - "dotnet_library_version": 2, - "support_ms_clr": 2, - "support_rotor_clr": 2, - "csharp_compiler": 2, - "csharp_flags": 2, - "quoted_csharp_flag": 2, - "cli_interpreter": 2, - "erlang_compiler": 2, - "erlang_interpreter": 2, - "erlang_flags": 2, - "quoted_erlang_flag": 2, - "erlang_include_directory": 2, - "erlang_object_file_extension": 2, - "erlang_native_code": 2, - "erlang_inhibit_trivial_warnings": 2, - "output_file_name": 3, - "ld_flags": 2, - "quoted_ld_flag": 2, - "ld_libflags": 2, - "quoted_ld_libflag": 2, - "link_library_directories": 3, - "runtime_link_library_directories": 3, - "link_libraries": 3, - "link_objects": 2, - "mercury_library_directories": 2, - "mercury_library_directory_special": 2, - "search_library_files_directories": 2, - "search_library_files_directory_special": 2, - "mercury_libraries": 2, - "mercury_library_special": 2, - "mercury_standard_library_directory": 2, - "mercury_standard_library_directory_special": 2, - "init_file_directories": 2, - "init_files": 2, - "trace_init_files": 2, - "linkage": 2, - "linkage_special": 2, - "mercury_linkage": 2, - "mercury_linkage_special": 2, - "strip": 2, - "demangle": 2, - "allow_undefined": 2, - "use_readline": 2, - "runtime_flags": 2, - "extra_initialization_functions": 2, - "frameworks": 2, - "framework_directories": 3, - "shared_library_extension": 2, - "library_extension": 2, - "executable_file_extension": 2, - "link_executable_command": 2, - "link_shared_lib_command": 2, - "create_archive_command": 2, - "create_archive_command_output_flag": 2, - "create_archive_command_flags": 2, - "ranlib_command": 2, - "ranlib_flags": 2, - "mkinit_command": 2, - "mkinit_erl_command": 2, - "demangle_command": 2, - "filtercc_command": 2, - "trace_libs": 2, - "thread_libs": 2, - "hwloc_libs": 2, - "hwloc_static_libs": 2, - "shared_libs": 2, - "math_lib": 2, - "readline_libs": 2, - "linker_opt_separator": 2, - "linker_thread_flags": 2, - "shlib_linker_thread_flags": 2, - "linker_static_flags": 2, - "linker_strip_flag": 2, - "linker_link_lib_flag": 2, - "linker_link_lib_suffix": 2, - "shlib_linker_link_lib_flag": 2, - "shlib_linker_link_lib_suffix": 2, - "linker_debug_flags": 2, - "shlib_linker_debug_flags": 2, - "linker_trace_flags": 2, - "shlib_linker_trace_flags": 2, - "linker_path_flag": 2, - "linker_rpath_flag": 2, - "linker_rpath_separator": 2, - "shlib_linker_rpath_flag": 2, - "shlib_linker_rpath_separator": 2, - "linker_allow_undefined_flag": 2, - "linker_error_undefined_flag": 2, - "shlib_linker_use_install_name": 2, - "shlib_linker_install_name_flag": 2, - "shlib_linker_install_name_path": 2, - "java_archive_command": 2, - "make": 3, - "keep_going": 3, - "rebuild": 3, - "jobs": 3, - "track_flags": 2, - "invoked_by_mmc_make": 2, - "extra_init_command": 2, - "pre_link_command": 2, - "install_prefix": 2, - "use_symlinks": 2, - "mercury_configuration_directory": 2, - "mercury_configuration_directory_special": 2, - "install_command": 2, - "install_command_dir_option": 2, - "libgrades": 2, - "libgrades_include_components": 2, - "libgrades_exclude_components": 2, - "lib_linkages": 2, - "flags_file": 2, - "options_files": 2, - "config_file": 2, - "options_search_directories": 2, - "use_subdirs": 2, - "use_grade_subdirs": 2, - "search_directories": 3, - "intermod_directories": 2, - "use_search_directories_for_intermod": 2, - "libgrade_install_check": 2, - "order_make_by_timestamp": 2, - "show_make_times": 2, - "extra_library_header": 2, - "restricted_command_line": 2, - "env_type": 2, - "host_env_type": 2, - "target_env_type": 2, - "filenames_from_stdin": 2, - "typecheck_ambiguity_warn_limit": 2, - "typecheck_ambiguity_error_limit": 2, - "help": 4, - "version": 3, - "fullarch": 2, - "cross_compiling": 2, - "local_module_id": 2, - "analysis_file_cache_dir": 2, - "compiler_sufficiently_recent": 2, - "experiment": 2, - "ignore_par_conjunctions": 2, - "control_granularity": 2, - "distance_granularity": 2, - "implicit_parallelism": 2, - "feedback_file": 2, - "par_loop_control": 2, - "par_loop_control_preserve_tail_recursion.": 1, - "libs.handle_options.": 1, - "dir.": 1, - "option_category": 2, - "warning_option": 2, - "verbosity_option": 2, - "output_option": 2, - "aux_output_option": 2, - "language_semantics_option": 2, - "compilation_model_option": 2, - "internal_use_option": 2, - "code_gen_option": 2, - "special_optimization_option": 2, - "optimization_option": 2, - "target_code_compilation_option": 2, - "link_option": 2, - "build_system_option": 2, - "miscellaneous_option.": 1, - "Option": 2, - "option_defaults_2": 18, - "_Category": 1, - "OptionsList": 2, - "list.member": 2, - "multi.": 1, - "bool_special": 7, - "XXX": 3, - "should": 1, - "be": 1, - "accumulating": 49, - "maybe_string": 6, - "special": 17, - "string_special": 18, - "int_special": 1, - "maybe_string_special": 1, - "file_special": 1, - "miscellaneous_option": 1, - "par_loop_control_preserve_tail_recursion": 1, - "check_hlds.polymorphism.": 1, - "hlds.": 1, - "mdbcomp.": 1, - "parse_tree.": 1, - "polymorphism_process_module": 2, - "polymorphism_process_generated_pred": 2, - "unification_typeinfos_rtti_varmaps": 2, - "rtti_varmaps": 9, - "unification": 8, - "polymorphism_process_new_call": 2, - "builtin_state": 1, - "call_unify_context": 2, - "sym_name": 3, - "hlds_goal": 45, - "poly_info": 45, - "polymorphism_make_type_info_vars": 1, - "polymorphism_make_type_info_var": 1, - "int_or_var": 2, - "iov_int": 1, - "iov_var": 1, - "gen_extract_type_info": 1, - "tvar": 10, - "kind": 1, - "vartypes": 12, - "poly_info.": 1, - "create_poly_info": 1, - "poly_info_extract": 1, - "build_typeclass_info_type": 3, - "prog_constraint": 4, - "type_is_typeclass_info": 1, - "type_is_type_info_or_ctor_type": 1, - "build_type_info_type": 1, - "get_special_proc": 1, - "special_pred_id": 2, - "get_special_proc_det": 1, - "convert_pred_to_lambda_goal": 3, - "purity": 1, - "lambda_eval_method": 1, - "unify_context": 3, - "context": 1, - "unify_rhs": 4, - "fix_undetermined_mode_lambda_goal": 2, - "rhs_lambda_goal": 7, - "init_type_info_var": 1, - "init_const_type_ctor_info_var": 1, - "type_ctor": 1, - "cons_id": 2, - "type_info_kind": 2, - "type_info": 8, - "type_ctor_info.": 1, - "new_type_info_var_raw": 1, - "check_hlds.clause_to_proc.": 1, - "check_hlds.mode_util.": 1, - "hlds.from_ground_term_util.": 1, - "hlds.const_struct.": 1, - "hlds.goal_util.": 1, - "hlds.hlds_args.": 1, - "hlds.hlds_clauses.": 1, - "hlds.hlds_code_util.": 1, - "hlds.passes_aux.": 1, - "hlds.pred_table.": 1, - "hlds.quantification.": 1, - "hlds.special_pred.": 1, - "libs.": 1, - "mdbcomp.program_representation.": 1, - "parse_tree.prog_mode.": 1, - "parse_tree.prog_type_subst.": 1, - "solutions.": 1, - "module_info_get_preds": 3, - ".ModuleInfo": 8, - "Preds0": 2, - "PredIds0": 2, - "list.foldl": 6, - "maybe_polymorphism_process_pred": 3, - "Preds1": 2, - "PredIds1": 2, - "fixup_pred_polymorphism": 4, - "expand_class_method_bodies": 1, - "PredModule": 8, - "pred_info_module": 4, - "PredName": 8, - "pred_info_name": 4, - "PredArity": 6, - "pred_info_orig_arity": 3, - "no_type_info_builtin": 3, - "copy_module_clauses_to_procs": 1, - "polymorphism_process_pred_msg": 3, - "PredTable0": 3, - "map.lookup": 2, - "PredInfo0": 16, - "pred_info_get_clauses_info": 2, - "ClausesInfo0": 5, - "clauses_info_get_vartypes": 2, - "VarTypes0": 12, - "clauses_info_get_headvars": 2, - "pred_info_get_arg_types": 7, - "TypeVarSet": 15, - "ExistQVars": 13, - "ArgTypes0": 3, - "proc_arg_vector_partition_poly_args": 1, - "ExtraHeadVarList": 2, - "OldHeadVarList": 2, - "lookup_var_types": 6, - "ExtraArgTypes": 2, - "ArgTypes": 6, - "pred_info_set_arg_types": 1, - "PredInfo1": 5, - "OldHeadVarTypes": 2, - "type_list_subsumes": 2, - "Subn": 3, - "map.is_empty": 1, - "pred_info_set_existq_tvar_binding": 1, - "PredInfo2": 7, - "polymorphism_introduce_exists_casts_pred": 3, - "PredTable": 2, - "module_info_set_preds": 1, - "pred_info_get_procedures": 2, - ".PredInfo": 2, - "Procs0": 4, - "map.map_values_only": 1, - ".ProcInfo": 2, - "det": 21, - "introduce_exists_casts_proc": 1, - "Procs": 4, - "pred_info_set_procedures": 2, - "trace": 4, - "compiletime": 4, - "flag": 4, - "write_pred_progress_message": 1, - "polymorphism_process_pred": 4, - "mutable": 3, - "selected_pred": 1, - "ground": 9, - "untrailed": 2, - "level": 1, - "promise_pure": 30, - "pred_id_to_int": 1, - "impure": 2, - "set_selected_pred": 2, - "polymorphism_process_clause_info": 3, - "ClausesInfo": 13, - "Info": 134, - "ExtraArgModes": 20, - "poly_info_get_module_info": 4, - "poly_info_get_const_struct_db": 1, - "ConstStructDb": 2, - "module_info_set_const_struct_db": 1, - "poly_info_get_typevarset": 4, - "pred_info_set_typevarset": 1, - "pred_info_set_clauses_info": 1, - "ProcIds": 5, - "pred_info_procids": 2, - "polymorphism_process_proc_in_table": 3, - "module_info_set_pred_info": 1, - "clauses_info": 6, - "poly_arg_vector": 9, - "mer_mode": 14, - "ModuleInfo0": 8, - "init_poly_info": 1, - ".ClausesInfo": 2, - "_VarSet": 1, - "ExplicitVarTypes": 2, - "_TVarNameMap": 1, - "_VarTypes": 1, - "HeadVars0": 5, - "ClausesRep0": 2, - "ItemNumbers": 2, - "_RttiVarMaps": 1, - "HaveForeignClauses": 2, - "setup_headvars": 3, - "UnconstrainedTVars": 15, - "ExtraTypeInfoHeadVars": 4, - "ExistTypeClassInfoHeadVars": 6, - "get_clause_list": 1, - "Clauses0": 2, - "list.map_foldl": 2, - "polymorphism_process_clause": 3, - "Clauses": 2, - "poly_info_get_varset": 4, - ".Info": 25, - "poly_info_get_var_types": 6, - "poly_info_get_rtti_varmaps": 4, - "RttiVarMaps": 16, - "set_clause_list": 1, - "ClausesRep": 2, - "TVarNameMap": 2, - "This": 2, - "only": 4, - "while": 1, - "adding": 1, - "the": 27, - "clauses.": 1, - "proc_arg_vector": 9, - "clause": 2, - "OldHeadVars": 2, - "NewHeadVars": 2, - "Clause": 2, - "pred_info_is_imported": 2, - "Goal0": 21, - ".Clause": 1, - "clause_body": 2, - "empty_cache_maps": 4, - "poly_info_set_num_reuses": 1, - "polymorphism_process_goal": 20, - "Goal1": 2, - "produce_existq_tvars": 3, - "Goal2": 2, - "pred_info_get_exist_quant_tvars": 1, - "fixup_quantification": 1, - "Goal": 40, - "proc_table": 2, - "ProcTable": 2, - ".ProcTable": 1, - "ProcInfo0": 2, - "polymorphism_process_proc": 3, - "pred_info_is_pseudo_imported": 1, - "hlds_pred.in_in_unification_proc_id": 1, - "HeadVarList": 4, - "proc_arg_vector_to_list": 2, - "clauses_info_get_rtti_varmaps": 1, - "clauses_info_get_varset": 1, - "proc_info_set_headvars": 1, - "proc_info_set_rtti_varmaps": 1, - "proc_info_set_varset": 1, - "proc_info_set_vartypes": 1, - "copy_clauses_to_proc": 1, - "proc_info_get_argmodes": 2, - "ArgModes1": 2, - "ExtraArgModesList": 2, - "poly_arg_vector_to_list": 1, - "ArgModes": 5, - "proc_info_set_argmodes": 1, - "ExtraHeadTypeInfoVars": 7, - "ExistHeadTypeClassInfoVars": 9, - "pred_info_get_origin": 1, - "Origin": 8, - "ExtraArgModes0": 3, - "poly_arg_vector_init": 1, - "origin_instance_method": 1, - "InstanceMethodConstraints": 4, - "setup_headvars_instance_method": 3, - "origin_special_pred": 1, - "origin_transformed": 1, - "origin_created": 1, - "origin_assertion": 1, - "origin_lambda": 1, - "origin_user": 1, - "pred_info_get_class_context": 4, - "ClassContext": 6, - "InstanceTVars": 7, - "InstanceUnconstrainedTVars": 2, - "InstanceUnconstrainedTypeInfoVars": 2, - "setup_headvars_2": 4, - "instance_method_constraints": 2, - "InstanceTypes": 2, - "InstanceConstraints": 3, - "type_vars_list": 5, - "get_unconstrained_tvars": 1, - "UnconstrainedInstanceTVars": 6, - "ArgTypeVarSet": 5, - "make_head_vars": 3, - "UnconstrainedInstanceTypeInfoVars": 7, - "make_typeclass_info_head_vars": 3, - "do_record_type_info_locns": 3, - "InstanceHeadTypeClassInfoVars": 4, - "proc_arg_vector_set_instance_type_infos": 1, - "proc_arg_vector_set_instance_typeclass_infos": 1, - "RttiVarMaps0": 4, - "rtti_reuse_typeclass_info_var": 3, - "poly_info_set_rtti_varmaps": 3, - "in_mode": 3, - "InMode": 3, - "list.duplicate": 6, - "list.length": 16, - "UnconstrainedInstanceTypeInfoModes": 2, - "InstanceHeadTypeClassInfoModes": 2, - "poly_arg_vector_set_instance_type_infos": 1, - "poly_arg_vector_set_instance_typeclass_infos": 1, - "prog_constraints": 1, - "AllUnconstrainedTVars": 2, - "AllExtraHeadTypeInfoVars": 2, - "constraints": 4, - "UnivConstraints": 3, - "ExistConstraints": 6, - "prog_type.constraint_list_get_tvars": 2, - "UnivConstrainedTVars": 2, - "ExistConstrainedTVars": 2, - "poly_info_get_constraint_map": 4, - "ConstraintMap": 12, - "get_improved_exists_head_constraints": 4, - "ActualExistConstraints": 9, - "pred_info_get_markers": 1, - "PredMarkers": 2, - "check_marker": 1, - "marker_class_method": 1, - "RecordExistQLocns": 3, - "do_not_record_type_info_locns": 1, - "UnivHeadTypeClassInfoVars": 4, - "HeadTypeVars": 2, - "list.delete_elems": 12, - "UnconstrainedTVars0": 2, - "UnconstrainedTVars1": 2, - "UnconstrainedTVars2": 2, - "list.remove_dups": 4, - "UnconstrainedUnivTVars": 7, - "UnconstrainedExistTVars": 6, - "ExistHeadTypeInfoVars": 5, - "UnivHeadTypeInfoVars": 4, - "list.condense": 4, - "proc_arg_vector_set_univ_type_infos": 1, - "HeadVars1": 2, - "proc_arg_vector_set_exist_type_infos": 1, - "HeadVars2": 2, - "proc_arg_vector_set_univ_typeclass_infos": 1, - "HeadVars3": 2, - "proc_arg_vector_set_exist_typeclass_infos": 1, - "In": 6, - "out_mode": 2, - "Out": 6, - "NumUnconstrainedUnivTVars": 2, - "NumUnconstrainedExistTVars": 2, - "NumUnivClassInfoVars": 2, - "NumExistClassInfoVars": 2, - "UnivTypeInfoModes": 2, - "ExistTypeInfoModes": 2, - "UnivTypeClassInfoModes": 2, - "ExistTypeClassInfoModes": 2, - "poly_arg_vector_set_univ_type_infos": 1, - "poly_arg_vector_set_exist_type_infos": 1, - "poly_arg_vector_set_univ_typeclass_infos": 1, - "poly_arg_vector_set_exist_typeclass_infos": 1, - "some": 4, - "ToLocn": 4, - "TheVar": 2, - "TheLocn": 2, - "list.map": 17, - "UnivTypeLocns": 2, - "list.foldl_corresponding": 3, - "rtti_det_insert_type_info_locn": 3, - "ExistTypeLocns": 2, - "UnconstrainedInstanceTypeLocns": 2, - ".RttiVarMaps": 1, - "TypeInfoHeadVars": 2, - "pred_info_get_tvar_kinds": 2, - "KindMap": 2, - "PredClassContext": 5, - "PredExistConstraints": 2, - "exist_constraints": 1, - "ExistQVarsForCall": 2, - "goal_info_get_context": 4, - "make_typeclass_info_vars": 3, - "ExistTypeClassVarsMCAs": 2, - "ExtraTypeClassGoals": 5, - "assoc_list.keys": 8, - "ExistTypeClassVars": 3, - "assign_var_list": 8, - "ExtraTypeClassUnifyGoals": 2, - "vartypes_is_empty": 1, - "PredToActualTypeSubst": 4, - "ActualArgTypes": 8, - "ArgTypeSubst": 2, - "apply_subst_to_tvar_list": 1, - "ActualTypes": 2, - "polymorphism_do_make_type_info_vars": 5, - "TypeInfoVarsMCAs": 2, - "ExtraTypeInfoGoals": 4, - "TypeInfoVars": 5, - "ExtraTypeInfoUnifyGoals": 2, - "GoalList": 8, - "conj_list_to_goal": 6, - "Var1": 5, - "Vars1": 2, - "Var2": 5, - "Vars2": 2, - "Goals": 13, - "assign_var": 3, - "true_goal": 1, - "term.context_init": 2, - "create_pure_atomic_complicated_unification": 1, - "rhs_var": 2, - "umc_explicit": 1, - "constraint_map": 1, - "NumExistConstraints": 4, - "search_hlds_constraint_list": 1, - "unproven": 3, - "goal_id": 1, - "ActualExistConstraints0": 2, - "GoalExpr0": 18, - "GoalInfo0": 41, - "generic_call": 1, - "plain_call": 5, - "ArgVars0": 23, - "polymorphism_process_call": 4, - "ExtraVars": 13, - "ExtraGoals": 13, - "ArgVars": 6, - "CallExpr": 4, - "call_args": 1, - "Call": 4, - "call_foreign_proc": 4, - "polymorphism_process_foreign_proc": 3, - "XVar": 11, - "Y": 9, - "Mode": 12, - "Unification": 16, - "UnifyContext": 15, - "polymorphism_process_unify": 4, - "conj": 5, - "ConjType": 4, - "Goals0": 13, - "plain_conj": 4, - "polymorphism_process_plain_conj": 5, - "parallel_conj": 1, - "get_cache_maps_snapshot": 11, - "InitialSnapshot": 36, - "polymorphism_process_par_conj": 5, - "GoalExpr": 19, - "disj": 2, - "polymorphism_process_disj": 6, - "set_cache_maps_snapshot": 15, - "if_then_else": 2, - "Cond0": 2, - "Then0": 2, - "Else0": 2, - "Cond": 2, - "Then": 2, - "Else": 2, - "negation": 2, - "SubGoal0": 14, - "SubGoal": 16, - "switch": 2, - "CanFail": 4, - "Cases0": 4, - "polymorphism_process_cases": 5, - "Cases": 4, - "scope": 7, - "Reason0": 16, - "from_ground_term": 2, - "TermVar": 4, - "Kind": 5, - "from_ground_term_initial": 2, - "polymorphism_process_from_ground_term_initial": 3, - "from_ground_term_construct": 1, - "from_ground_term_deconstruct": 1, - "from_ground_term_other": 1, - "promise_solutions": 1, - "promise_purity": 1, - "require_detism": 1, - "require_complete_switch": 1, - "commit": 1, - "barrier": 1, - "loop_control": 1, - "exist_quant": 1, - "trace_goal": 1, - "shorthand": 2, - "ShortHand0": 4, - "atomic_goal": 2, - "GoalType": 2, - "Outer": 2, - "Inner": 2, - "MainGoal0": 2, - "OrElseGoals0": 2, - "OrElseInners": 2, - "MainGoal": 2, - "OrElseGoals": 2, - "ShortHand": 3, - "try_goal": 2, - "MaybeIO": 2, - "ResultVar": 2, - "SubGoalExpr0": 4, - "SubGoalInfo": 2, - "Conjuncts0": 2, - "ConjunctA0": 2, - "ConjunctB0": 2, - "ConjunctA": 2, - "ConjunctB": 2, - "Conjuncts": 2, - "SubGoalExpr": 2, - "bi_implication": 1, - "hlds_goal_expr": 2, - "SubGoalInfo0": 2, - "SubGoals0Prime": 2, - "SubGoals0": 2, - "polymorphism_process_fgti_goals": 5, - "RevMarkedSubGoals": 2, - "fgt_invariants_kept": 2, - "InvariantsStatus": 7, - "Reason": 2, - "fgt_invariants_broken": 2, - "introduce_partial_fgt_scopes": 1, - "deconstruct_top_down": 1, - "fgt_marked_goal": 2, - "fgt_invariants_status": 2, - "RevMarkedGoals": 4, - "OldInfo": 3, - "XVarPrime": 2, - "ModePrime": 2, - "UnificationPrime": 2, - "UnifyContextPrime": 2, - "rhs_functor": 5, - "ConsIdPrime": 2, - "YVarsPrime": 2, - "ConsId": 10, - "YVars": 4, - "polymorphism_process_unify_functor": 4, - "Changed": 10, - "VarSetBefore": 2, - "MaxVarBefore": 2, - "varset.max_var": 2, - "poly_info_get_num_reuses": 2, - "NumReusesBefore": 2, - "VarSetAfter": 2, - "MaxVarAfter": 2, - "NumReusesAfter": 2, - "MarkedGoal": 3, - "fgt_kept_goal": 1, - "fgt_broken_goal": 1, - ".RevMarkedGoals": 1, - "unify_mode": 2, - "Unification0": 8, - "_YVar": 1, - "unification_typeinfos": 5, - "_Changed": 3, - "Args": 11, - "Purity": 9, - "Groundness": 6, - "PredOrFunc": 6, - "EvalMethod": 8, - "LambdaVars": 13, - "Modes": 4, - "Det": 4, - "LambdaGoal0": 5, - "LambdaGoal1": 2, - "fixup_lambda_quantification": 1, - "LambdaGoal": 6, - "NonLocalTypeInfos": 3, - "set_of_var.to_sorted_list": 1, - "NonLocalTypeInfosList": 2, - "Y1": 2, - "NonLocals0": 10, - "goal_info_get_nonlocals": 6, - "NonLocals": 12, - "goal_info_set_nonlocals": 6, - "type_vars": 2, - "TypeVars": 8, - "get_type_info_locn": 1, - "TypeInfoLocns": 6, - "add_unification_typeinfos": 4, - "rtti_lookup_type_info_locn": 1, - "type_info_locn": 1, - "type_info_locn_var": 1, - "TypeInfoVars0": 2, - ".GoalInfo": 1, - "set_of_var.insert_list": 4, - ".Unification": 5, - "complicated_unify": 2, - "construct": 1, - "deconstruct": 2, - "simple_test": 1, - "X0": 8, - "ConsId0": 5, - "Mode0": 4, - "TypeOfX": 6, - "Arity": 5, - "closure_cons": 1, - "ShroudedPredProcId": 2, - "ProcId0": 3, - "unshroud_pred_proc_id": 1, - "type_is_higher_order_details": 1, - "_PredOrFunc": 1, - "CalleeArgTypes": 2, - "invalid_proc_id": 1, - "goal_info_add_feature": 1, - "feature_lambda_undetermined_mode": 1, - "GoalInfo1": 6, - "VarSet0": 2, - "Functor0": 6, - "poly_info_set_varset_and_types": 1, - "cons": 3, - "ConsTypeCtor": 2, - "remove_new_prefix": 1, - "OrigFunctor": 2, - "IsConstruction": 7, - "type_util.get_existq_cons_defn": 1, - "ConsDefn": 2, - "polymorphism_process_existq_unify_functor": 3, - "UnifyExpr": 2, - "Unify": 2, - "PredArgTypes": 10, - "Functor": 6, - "create_fresh_vars": 5, - "QualifiedPName": 5, - "qualified": 1, - "cons_id_dummy_type_ctor": 1, - "RHS": 2, - "CallUnifyContext": 2, - "LambdaGoalExpr": 2, - "not_builtin": 3, - "OutsideVars": 2, - "InsideVars": 2, - "set_of_var.intersect": 1, - "LambdaNonLocals": 2, - "GoalId": 8, - "goal_info_get_goal_id": 3, - "goal_info_init": 1, - "LambdaGoalInfo0": 2, - "goal_info_set_context": 1, - "LambdaGoalInfo1": 2, - "LambdaGoalInfo2": 2, - "goal_info_set_purity": 1, - "LambdaGoalInfo3": 2, - "goal_info_set_goal_id": 1, - "LambdaGoalInfo": 4, - "lambda_modes_and_det": 4, - "LambdaModes": 6, - "LambdaDet": 6, - "pred_info_is_pred_or_func": 1, - "ho_ground": 1, - "_LambdaModes0": 1, - "_LambdaDet0": 1, - "goal_to_conj_list": 1, - "LambdaGoalList0": 2, - "list.split_last": 1, - "LambdaGoalButLast0": 2, - "LastGoal0": 2, - "LastGoalExpr0": 2, - "LastGoalInfo0": 2, - "PredId0": 2, - "_DummyProcId": 1, - "Args0": 5, - "MaybeCallUnifyContext0": 2, - "QualifiedPName0": 2, - "LambdaGoalButLast": 2, - "LastGoalInfo": 2, - "MaybeCallUnifyContext": 4, - "LastGoalExpr": 2, - "LastGoal": 2, - "prog_vars": 1, - "determinism": 1, - "NumArgModes": 2, - "NumLambdaVars": 2, - "list.drop": 2, - "LambdaModesPrime": 2, - "proc_info_get_declared_determinism": 1, - "MaybeDet": 3, - "sorry": 1, - "varset.new_var": 1, - "add_var_type": 1, - "ctor_defn": 2, - "CtorDefn": 2, - "ActualRetType": 2, - "CtorTypeVarSet": 2, - "CtorExistQVars": 2, - "CtorKindMap": 2, - "CtorExistentialConstraints": 2, - "CtorArgTypes": 2, - "CtorRetType": 2, - "TypeVarSet0": 5, - "tvarset_merge_renaming": 3, - "CtorToParentRenaming": 6, - "apply_variable_renaming_to_tvar_list": 2, - "ParentExistQVars": 6, - "apply_variable_renaming_to_tvar_kind_map": 2, - "ParentKindMap": 7, - "apply_variable_renaming_to_prog_constraint_list": 1, - "ParentExistentialConstraints": 3, - "apply_variable_renaming_to_type_list": 4, - "ParentArgTypes": 6, - "apply_variable_renaming_to_type": 1, - "ParentRetType": 2, - "poly_info_set_typevarset": 3, - "type_list_subsumes_det": 3, - "ParentToActualTypeSubst": 6, - "NumExistentialConstraints": 3, - "lookup_hlds_constraint_list": 4, - "ActualExistentialConstraints": 4, - "ExtraTypeClassVarsMCAs": 2, - "ExtraTypeClassVars": 2, - "assumed": 2, - "make_existq_typeclass_info_vars": 2, - "constraint_list_get_tvars": 3, - "ParentExistConstrainedTVars": 4, - "ParentUnconstrainedExistQVars": 2, - "apply_rec_subst_to_tvar_list": 4, - "ActualExistentialTypes": 2, - "ExtraTypeInfoVarsMCAs": 2, - "ExtraTypeInfoVars": 2, - "ExtraTypeClassVars.": 1, - "bound": 1, - "Attributes": 2, - "ProcExtraArgs": 2, - "MaybeTraceRuntimeCond": 2, - "Impl": 14, - "foreign_arg_var": 1, - "CanOptAwayUnnamed": 11, - "polymorphism_process_foreign_proc_args": 3, - "ExtraArgs": 5, - "pragma_foreign_code_impl": 4, - "foreign_arg": 1, - "PredTypeVarSet": 8, - "UnivCs": 4, - "ExistCs": 4, - "UnivVars0": 2, - "get_constrained_vars": 2, - "UnivConstrainedVars": 2, - "ExistVars0": 2, - "ExistConstrainedVars": 2, - "PredTypeVars0": 2, - "PredTypeVars1": 2, - "PredTypeVars2": 2, - "PredTypeVars": 3, - "foreign_proc_add_typeclass_info": 4, - "ExistTypeClassArgInfos": 2, - "UnivTypeClassArgInfos": 2, - "TypeClassArgInfos": 2, - "list.filter": 1, - "X": 9, - "semidet": 2, - "ExistUnconstrainedVars": 2, - "UnivUnconstrainedVars": 2, - "foreign_proc_add_typeinfo": 4, - "ExistTypeArgInfos": 2, - "UnivTypeArgInfos": 2, - "TypeInfoArgInfos": 2, - "ArgInfos": 2, - "TypeInfoTypes": 2, - "type_info_type": 1, - "UnivTypes": 2, - "ExistTypes": 2, - "OrigArgTypes": 2, - "make_foreign_args": 1, - "tvarset": 3, - "box_policy": 2, - "Constraint": 2, - "MaybeArgName": 7, - "native_if_possible": 2, - "SymName": 4, - "sym_name_to_string_sep": 1, - "TypeVarNames": 2, - "underscore_and_tvar_name": 3, - "string.append_list": 1, - "ConstraintVarName": 3, - "foreign_code_does_not_use_variable": 4, - "TVar": 4, - "varset.search_name": 1, - "TypeVarName": 2, - "C_VarName": 3, - "VarName": 2, - "foreign_code_uses_variable": 1, - "TVarName": 2, - "TVarName0": 1, - "TVarName0.": 1, - "cache_maps": 3, - "case": 4, - "Case0": 2, - "Case": 2, - "MainConsId": 2, - "OtherConsIds": 2, - "PredExistQVars": 2, - "PredKindMap": 3, - "varset.is_empty": 1, - "PredToParentTypeRenaming": 6, - "ParentTVars": 4, - "apply_variable_renaming_to_prog_constraints": 1, - "ParentClassContext": 2, - "ParentUnivConstraints": 3, - "ParentExistConstraints": 3, - "ParentUnivConstrainedTVars": 2, - "ParentUnconstrainedTVars0": 2, - "ParentUnconstrainedTVars1": 2, - "ParentUnconstrainedTVars": 3, - "ParentUnconstrainedUnivTVars": 3, - "ParentUnconstrainedExistTVars": 2, - "NumUnivConstraints": 2, - "ActualUnivConstraints": 2, - "ActualExistQVarTypes": 2, - "prog_type.type_list_to_var_list": 1, - "ActualExistQVars0": 2, - "ActualExistQVars": 2, - "ExtraUnivClassVarsMCAs": 2, - "ExtraUnivClassGoals": 2, - "ExtraUnivClassVars": 2, - "ExtraExistClassVars": 2, - "ExtraExistClassGoals": 2, - "ActualUnconstrainedUnivTypes": 2, - "ExtraUnivTypeInfoVarsMCAs": 2, - "ExtraUnivTypeInfoGoals": 2, - "ExtraUnivTypeInfoVars": 2, - "ActualUnconstrainedExistTypes": 2, - "ExtraExistTypeInfoVarsMCAs": 2, - "ExtraExistTypeInfoGoals": 2, - "ExtraExistTypeInfoVars": 2, - "CalleePredInfo": 2, - "CalleeProcInfo": 3, - "CallArgs0": 3, - "BuiltinState": 2, - "TVarSet0": 2, - "ActualArgTypes0": 3, - "PredTVarSet": 2, - "_PredExistQVars": 1, - "CalleeHeadVars": 2, - "proc_info_get_rtti_varmaps": 1, - "CalleeRttiVarMaps": 2, - "NCallArgs0": 2, - "NPredArgs": 2, - "NExtraArgs": 3, - "OrigPredArgTypes0": 2, - "list.take": 1, - "CalleeExtraHeadVars0": 2, - "OrigPredArgTypes": 2, - "CalleeExtraHeadVars": 2, - "TVarSet": 2, - "PredToParentRenaming": 3, - "OrigParentArgTypes": 2, - "ParentToActualTSubst": 2, - "GetTypeInfoTypes": 2, - "ProgVar": 2, - "TypeInfoType": 2, - "rtti_varmaps_var_info": 1, - "VarInfo": 4, - "type_info_var": 1, - "typeclass_info_var": 1, - "non_rtti_var": 1, - "PredTypeInfoTypes": 2, - "ParentTypeInfoTypes": 2, - "apply_rec_subst_to_type_list": 1, - "ActualTypeInfoTypes": 2, - "Ctxt": 2, - "ExtraArgsConstArgs": 2, - "CallArgs": 2, - "NonLocals1": 2, - "CallGoalExpr": 2, - "CallGoal": 2, - "rot13_concise.": 1, - "state": 3, - "alphabet": 3, - "cycle": 4, - "rot_n": 2, - "Char": 12, - "RotChar": 8, - "char_to_string": 1, - "CharString": 2, - "if": 15, - "sub_string_search": 1, - "Index": 3, - "then": 3, - "NewIndex": 2, - "mod": 1, - "index_det": 1, - "else": 8, - "rot13": 11, - "read_char": 1, - "Res": 8, - "ok": 3, - "print": 3, - "ErrorCode": 4, - "error_message": 1, - "ErrorMessage": 4, - "stderr_stream": 1, - "StdErr": 8, - "nl": 1, - "rot13_ralph.": 1, - "io__state": 4, - "io__read_byte": 1, - "Result": 4, - "io__write_byte": 1, - "ErrNo": 2, - "io__error_message": 2, - "z": 1, - "Rot13": 2, - "<": 14, - "rem": 1, - "rot13_verbose.": 1, - "rot13a/2": 1, - "table": 1, - "alphabetic": 2, - "characters": 1, - "their": 1, - "equivalents": 1, - "fails": 1, - "input": 1, - "not": 7, - "rot13a": 55, - "rot13/2": 1, - "Applies": 1, - "algorithm": 1, - "a": 10, - "character.": 1, - "TmpChar": 2, - "io__read_char": 1, - "io__write_char": 1, - "io__stderr_stream": 1, - "io__write_string": 2, - "io__nl": 1, - "store.": 1, - "typeclass": 1, - "store": 52, - "T": 52, - "where": 8, - "S": 133, - "instance": 4, - "io.state": 3, - "store.init": 2, - "generic_mutvar": 15, - "io_mutvar": 1, - "store_mutvar": 1, - "store.new_mutvar": 1, - "store.copy_mutvar": 1, - "store.get_mutvar": 1, - "store.set_mutvar": 1, - "<=>": 5, - "new_cyclic_mutvar": 2, - "Func": 4, - "Mutvar": 23, - "Create": 1, - "new": 25, - "variable": 1, - "whose": 2, - "initialized": 2, - "with": 5, - "returned": 1, - "from": 1, - "specified": 1, - "function": 3, - "The": 2, - "argument": 6, - "passed": 2, - "mutvar": 6, - "itself": 4, - "has": 4, - "yet": 1, - "been": 1, - "safe": 2, - "because": 1, - "does": 3, - "get": 2, - "so": 3, - "it": 1, - "can": 1, - "t": 5, - "examine": 1, - "uninitialized": 1, - "predicate": 1, - "useful": 1, - "creating": 1, - "self": 1, - "referential": 1, - "values": 1, - "such": 2, - "as": 5, - "circular": 1, - "linked": 1, - "lists": 1, - "For": 1, - "example": 1, - "clist": 2, - "node": 1, - "store.new_cyclic_mutvar": 1, - "generic_ref": 20, - "io_ref": 1, - "store_ref": 1, - "store.new_ref": 1, - "store.ref_functor": 1, - "store.arg_ref": 1, - "ArgT": 4, - "store.new_arg_ref": 3, - "store.set_ref": 1, - "store.set_ref_value": 1, - "store.copy_ref_value": 1, - "store.extract_ref_value": 1, - "Nasty": 1, - "performance": 2, - "hacks": 1, - "WARNING": 1, - "use": 1, - "of": 10, - "these": 1, - "procedures": 2, - "dangerous": 1, - "Use": 1, - "them": 1, - "last": 1, - "resort": 1, - "critical": 1, - "and": 6, - "shows": 1, - "that": 2, - "using": 1, - "versions": 1, - "bottleneck": 1, - "These": 1, - "may": 1, - "vanish": 1, - "future": 1, - "Mercury": 1, - "unsafe_arg_ref": 1, - "same": 2, - "arg_ref": 12, - "unsafe_new_arg_ref": 1, - "new_arg_ref": 1, - "except": 1, - "they": 4, - "doesn": 1, - "check": 1, - "errors": 1, - "don": 3, - "work": 3, - "no_tag": 1, - "types": 3, - "exactly": 2, - "one": 2, - "functor": 2, - "which": 2, - "arguments": 2, - "occupy": 1, - "word": 2, - "other": 1, - "functors.": 1, - "store.unsafe_arg_ref": 1, - "store.unsafe_new_arg_ref": 1, - "implementation": 1, - "require": 1, - "just": 1, - "real": 1, - "representation": 1, - "pragma": 41, - "foreign_type": 10, - "MR_Word": 24, - "can_pass_as_mercury_type": 5, - "equality": 5, - "store_equal": 7, - "comparison": 5, - "store_compare": 7, - "int32": 1, - "Java": 12, - "Erlang": 3, - "attempt": 2, - "two": 2, - "stores": 2, - "comparison_result": 1, - "compare": 1, - "Mutvars": 1, - "references": 1, - "are": 1, - "each": 1, - "represented": 1, - "pointer": 1, - "single": 1, - "on": 1, - "heap": 1, - "private_builtin.ref": 2, - "ref": 2, - "store.do_init": 6, - "foreign_proc": 28, - "_S0": 16, - "will_not_call_mercury": 28, - "will_not_modify_trail": 7, - "new_mutvar": 5, - "Val": 45, - "S0": 23, - "get_mutvar": 5, - "set_mutvar": 5, - "_S": 12, - "copy_mutvar": 1, - "Copy": 2, - "Value": 4, - "store.unsafe_new_uninitialized_mutvar": 1, - "unsafe_new_uninitialized_mutvar": 4, - "MR_offset_incr_hp_msg": 5, - "MR_SIZE_SLOT_SIZE": 10, - "1": 5, - "MR_ALLOC_ID": 5, - "2": 2, - "MR_define_size_slot": 5, - "0": 2, - "object": 21, - "MutVar": 4, - "Store": 5, - "apply": 1, - "Ref": 41, - "foreign_code": 2, - "public": 17, - "class": 4, - "Object": 9, - "referenced": 4, - "obj": 7, - "Specific": 2, - "field": 20, - "or": 2, - "null": 8, - "specify": 2, - "GetFields": 2, - "return": 6, - "fields": 3, - "any": 2, - "particular": 2, - "order": 2, - "really": 2, - "usable": 2, - "System": 1, - "Reflection": 1, - "FieldInfo": 1, - "Constructors": 2, - "init": 8, - "setField": 4, - "Set": 2, - "according": 2, - "given": 2, - "index": 2, - "void": 4, - "GetType": 1, - "reference": 4, - "getValue": 4, - "GetValue": 1, - "Update": 2, - "setValue": 2, - "SetValue": 1, - "static": 1, - "lang": 28, - "getDeclaredFields": 2, - "reflect": 1, - "Field": 5, - "try": 3, - "getClass": 1, - "catch": 11, - "SecurityException": 1, - "se": 1, - "throw": 11, - "RuntimeException": 11, - "Security": 1, - "manager": 1, - "denied": 1, - "access": 3, - "ArrayIndexOutOfBoundsException": 1, - "e": 13, - "No": 1, - "Exception": 3, - "Unable": 3, - "getMessage": 3, - "IllegalAccessException": 2, - "inaccessible": 2, - "IllegalArgumentException": 2, - "mismatch": 2, - "NullPointerException": 2, - "new_ref": 4, - "ets": 3, - "insert": 1, - "copy_ref_value": 1, - "unsafe_ref_value": 6, - "store.unsafe_ref_value": 1, - "lookup": 1, - "ref_functor": 1, - "canonicalize": 1, - "foreign_decl": 1, - "include": 4, - "mercury_type_info": 1, - "h": 4, - "mercury_heap": 1, - "mercury_misc": 1, - "MR_fatal_error": 5, - "mercury_deconstruct": 1, - "MR_arg": 3, - "ArgNum": 7, - "ArgRef": 22, - "may_not_duplicate": 1, - "MR_TypeInfo": 10, - "arg_type_info": 6, - "exp_arg_type_info": 6, - "MR_DuArgLocn": 2, - "arg_locn": 9, - "TypeInfo_for_T": 2, - "TypeInfo_for_ArgT": 2, - "MR_save_transient_registers": 2, - "MR_NONCANON_ABORT": 2, - "number": 2, - "range": 2, - "MR_compare_type_info": 2, - "MR_COMPARE_EQUAL": 2, - "wrong": 2, - "MR_restore_transient_registers": 2, - "NULL": 2, - "MR_arg_bits": 2, - "store.ref/2": 3, - "MR_arg_value": 2, - "C#": 6, - "store.Ref": 8, - "Ref.getValue": 6, - "*arg_ref": 1, - "*arg_locn": 1, - "&": 7, - "&&": 1, - "ValRef": 1, - "Ref.setValue": 3, - "ValRef.getValue": 2, - "*Ptr": 2, - "Ptr": 4, - "MR_strip_tag": 2, - "Arg": 6 - }, - "Monkey": { - "Strict": 1, - "sample": 1, - "class": 1, - "from": 1, - "the": 1, - "documentation": 1, - "Class": 3, - "Game": 1, - "Extends": 2, - "App": 1, - "Function": 2, - "New": 1, - "(": 12, - ")": 12, - "End": 8, - "DrawSpiral": 3, - "clock": 3, - "Local": 3, - "w": 3, - "DeviceWidth/2": 1, - "For": 1, - "i#": 1, - "Until": 1, - "w*1.5": 1, - "Step": 1, - ".2": 1, - "x#": 1, - "y#": 1, - "x": 2, - "+": 5, - "i*Sin": 1, - "i*3": 1, - "y": 2, - "i*Cos": 1, - "i*2": 1, - "DrawRect": 1, - "Next": 1, - "hitbox.Collide": 1, - "event.pos": 1, - "Field": 2, - "updateCount": 3, - "Method": 4, - "OnCreate": 1, - "Print": 2, - "SetUpdateRate": 1, - "OnUpdate": 1, - "OnRender": 1, - "Cls": 1, - "updateCount*1.1": 1, - "Enemy": 1, - "Die": 1, - "Abstract": 1, - "field": 1, - "testField": 1, - "Bool": 2, - "True": 2, - "oss": 1, - "he": 2, - "-": 2, - "killed": 1, - "me": 1, - "b": 6, - "extending": 1, - "with": 1, - "generics": 1, - "VectorNode": 1, - "Node": 1, - "": 1, - "array": 1, - "syntax": 1, - "Global": 14, - "listOfStuff": 3, - "String": 4, - "[": 6, - "]": 6, - "lessStuff": 1, - "oneStuff": 1, - "a": 3, - "comma": 1, - "separated": 1, - "sequence": 1, - "text": 1, - "worstCase": 1, - "worst.List": 1, - "": 1, - "escape": 1, - "characers": 1, - "in": 1, - "strings": 1, - "string3": 1, - "string4": 1, - "string5": 1, - "string6": 1, - "prints": 1, - ".ToUpper": 1, - "Boolean": 1, - "shorttype": 1, - "boolVariable1": 1, - "boolVariable2": 1, - "False": 1, - "preprocessor": 1, - "keywords": 1, - "#If": 1, - "TARGET": 2, - "DoStuff": 1, - "#ElseIf": 1, - "DoOtherStuff": 1, - "#End": 1, - "operators": 1, - "|": 2, - "&": 1, - "c": 1 - }, - "Moocode": { - "@program": 29, - "toy": 3, - "wind": 1, - "this.wound": 8, - "+": 39, - ";": 505, - "player": 2, - "tell": 1, - "(": 600, - "this.name": 4, - ")": 593, - "player.location": 1, - "announce": 1, - "player.name": 1, - ".": 30, - "while": 15, - "read": 1, - "endwhile": 14, - "I": 1, - "M": 1, - "P": 1, - "O": 1, - "R": 1, - "T": 2, - "A": 1, - "N": 1, - "The": 2, - "following": 2, - "code": 43, - "cannot": 1, - "be": 1, - "used": 1, - "as": 28, - "is.": 1, - "You": 1, - "will": 1, - "need": 1, - "to": 1, - "rewrite": 1, - "functionality": 1, - "that": 3, - "is": 6, - "not": 2, - "present": 1, - "in": 43, - "your": 1, - "server/core.": 1, - "most": 1, - "straight": 1, - "-": 98, - "forward": 1, - "target": 7, - "other": 1, - "than": 1, - "Stunt/Improvise": 1, - "a": 12, - "server/core": 1, - "provides": 1, - "map": 5, - "datatype": 1, - "and": 1, - "anonymous": 1, - "objects.": 1, - "Installation": 1, - "my": 1, - "server": 1, - "uses": 1, - "the": 4, - "object": 1, - "numbers": 1, - "#36819": 1, - "MOOcode": 4, - "Experimental": 2, - "Language": 2, - "Package": 2, - "#36820": 1, - "Changelog": 1, - "#36821": 1, - "Dictionary": 1, - "#36822": 1, - "Compiler": 2, - "#38128": 1, - "Syntax": 4, - "Tree": 1, - "Pretty": 1, - "Printer": 1, - "#37644": 1, - "Tokenizer": 2, - "Prototype": 25, - "#37645": 1, - "Parser": 2, - "#37648": 1, - "Symbol": 2, - "#37649": 1, - "Literal": 1, - "#37650": 1, - "Statement": 8, - "#37651": 1, - "Operator": 11, - "#37652": 1, - "Control": 1, - "Flow": 1, - "#37653": 1, - "Assignment": 2, - "#38140": 1, - "Compound": 1, - "#38123": 1, - "Prefix": 1, - "#37654": 1, - "Infix": 1, - "#37655": 1, - "Name": 1, - "#37656": 1, - "Bracket": 1, - "#37657": 1, - "Brace": 1, - "#37658": 1, - "If": 1, - "#38119": 1, - "For": 1, - "#38120": 1, - "Loop": 1, - "#38126": 1, - "Fork": 1, - "#38127": 1, - "Try": 1, - "#37659": 1, - "Invocation": 1, - "#37660": 1, - "Verb": 1, - "Selector": 2, - "#37661": 1, - "Property": 1, - "#38124": 1, - "Error": 1, - "Catching": 1, - "#38122": 1, - "Positional": 1, - "#38141": 1, - "From": 1, - "#37662": 1, - "Utilities": 1, - "#36823": 1, - "Tests": 4, - "#36824": 1, - "#37646": 1, - "#37647": 1, - "parent": 1, - "plastic.tokenizer_proto": 4, - "_": 4, - "_ensure_prototype": 4, - "application/x": 27, - "moocode": 27, - "typeof": 11, - "this": 114, - "OBJ": 3, - "||": 19, - "raise": 23, - "E_INVARG": 3, - "_ensure_instance": 7, - "ANON": 2, - "plastic.compiler": 3, - "_lookup": 2, - "private": 1, - "{": 112, - "name": 9, - "}": 112, - "args": 26, - "if": 90, - "value": 73, - "this.variable_map": 3, - "[": 99, - "]": 102, - "E_RANGE": 17, - "return": 61, - "else": 45, - "tostr": 51, - "random": 3, - "this.reserved_names": 1, - "endif": 93, - "compile": 1, - "source": 32, - "options": 3, - "tokenizer": 6, - "this.plastic.tokenizer_proto": 2, - "create": 16, - "parser": 89, - "this.plastic.parser_proto": 2, - "compiler": 2, - "try": 2, - "statements": 13, - "except": 2, - "ex": 4, - "ANY": 3, - ".tokenizer.row": 1, - "endtry": 2, - "for": 31, - "statement": 29, - "statement.type": 10, - "@source": 3, - "p": 82, - "@compiler": 1, - "endfor": 31, - "ticks_left": 4, - "<": 13, - "seconds_left": 4, - "&&": 39, - "suspend": 4, - "statement.value": 20, - "elseif": 41, - "_generate": 1, - "isa": 21, - "this.plastic.sign_operator_proto": 1, - "|": 9, - "statement.first": 18, - "statement.second": 13, - "this.plastic.control_flow_statement_proto": 1, - "first": 22, - "statement.id": 3, - "this.plastic.if_statement_proto": 1, - "s": 47, - "respond_to": 9, - "@code": 28, - "@this": 13, - "i": 29, - "length": 11, - "LIST": 6, - "this.plastic.for_statement_proto": 1, - "statement.subtype": 2, - "this.plastic.loop_statement_proto": 1, - "prefix": 4, - "this.plastic.fork_statement_proto": 1, - "this.plastic.try_statement_proto": 1, - "x": 9, - "@x": 3, - "join": 6, - "this.plastic.assignment_operator_proto": 1, - "statement.first.type": 1, - "res": 19, - "rest": 3, - "v": 17, - "statement.first.value": 1, - "v.type": 2, - "v.first": 2, - "v.second": 1, - "this.plastic.bracket_operator_proto": 1, - "statement.third": 4, - "this.plastic.brace_operator_proto": 1, - "this.plastic.invocation_operator_proto": 1, - "@a": 2, - "statement.second.type": 2, - "this.plastic.property_selector_operator_proto": 1, - "this.plastic.error_catching_operator_proto": 1, - "second": 18, - "this.plastic.literal_proto": 1, - "toliteral": 1, - "this.plastic.positional_symbol_proto": 1, - "this.plastic.prefix_operator_proto": 3, - "this.plastic.infix_operator_proto": 1, - "this.plastic.traditional_ternary_operator_proto": 1, - "this.plastic.name_proto": 1, - "plastic.printer": 2, - "_print": 4, - "indent": 4, - "result": 7, - "item": 2, - "@result": 2, - "E_PROPNF": 1, - "print": 1, - "instance": 59, - "instance.row": 1, - "instance.column": 1, - "instance.source": 1, - "advance": 16, - "this.token": 21, - "this.source": 3, - "row": 23, - "this.row": 2, - "column": 63, - "this.column": 2, - "eol": 5, - "block_comment": 6, - "inline_comment": 4, - "loop": 14, - "len": 3, - "continue": 16, - "next_two": 4, - "column..column": 1, - "c": 44, - "break": 6, - "re": 1, - "not.": 1, - "Worse": 1, - "*": 4, - "valid": 2, - "error": 6, - "like": 4, - "E_PERM": 4, - "treated": 2, - "literal": 2, - "an": 2, - "invalid": 2, - "E_FOO": 1, - "variable.": 1, - "Any": 1, - "starts": 1, - "with": 1, - "characters": 1, - "*now*": 1, - "but": 1, - "errors": 1, - "are": 1, - "errors.": 1, - "*/": 1, - "<=>": 8, - "z": 4, - "col1": 6, - "mark": 2, - "start": 2, - "1": 13, - "9": 4, - "col2": 4, - "chars": 21, - "index": 2, - "E_": 1, - "token": 24, - "type": 9, - "this.errors": 1, - "col1..col2": 2, - "toobj": 1, - "float": 4, - "0": 1, - "cc": 1, - "e": 1, - "tofloat": 1, - "toint": 1, - "esc": 1, - "q": 1, - "col1..column": 1, - "plastic.parser_proto": 3, - "@options": 1, - "instance.tokenizer": 1, - "instance.symbols": 1, - "plastic": 1, - "this.plastic": 1, - "symbol": 65, - "plastic.name_proto": 1, - "plastic.literal_proto": 1, - "plastic.operator_proto": 10, - "plastic.prefix_operator_proto": 1, - "plastic.error_catching_operator_proto": 3, - "plastic.assignment_operator_proto": 1, - "plastic.compound_assignment_operator_proto": 5, - "plastic.traditional_ternary_operator_proto": 2, - "plastic.infix_operator_proto": 13, - "plastic.sign_operator_proto": 2, - "plastic.bracket_operator_proto": 1, - "plastic.brace_operator_proto": 1, - "plastic.control_flow_statement_proto": 3, - "plastic.if_statement_proto": 1, - "plastic.for_statement_proto": 1, - "plastic.loop_statement_proto": 2, - "plastic.fork_statement_proto": 1, - "plastic.try_statement_proto": 1, - "plastic.from_statement_proto": 2, - "plastic.verb_selector_operator_proto": 2, - "plastic.property_selector_operator_proto": 2, - "plastic.invocation_operator_proto": 1, - "id": 14, - "bp": 3, - "proto": 4, - "nothing": 1, - "this.plastic.symbol_proto": 2, - "this.symbols": 4, - "clone": 2, - "this.token.type": 1, - "this.token.value": 1, - "this.token.eol": 1, - "operator": 1, - "variable": 1, - "identifier": 1, - "keyword": 1, - "Unexpected": 1, - "end": 2, - "Expected": 1, - "t": 1, - "call": 1, - "nud": 2, - "on": 1, - "@definition": 1, - "new": 4, - "pop": 4, - "delete": 1, - "plastic.utilities": 6, - "suspend_if_necessary": 4, - "parse_map_sequence": 1, - "separator": 6, - "infix": 3, - "terminator": 6, - "symbols": 7, - "ids": 6, - "@ids": 2, - "push": 3, - "@symbol": 2, - ".id": 13, - "key": 7, - "expression": 19, - "@map": 1, - "parse_list_sequence": 2, - "list": 3, - "@list": 1, - "validate_scattering_pattern": 1, - "pattern": 5, - "state": 8, - "element": 1, - "element.type": 3, - "element.id": 2, - "element.first.type": 2, - "children": 4, - "node": 3, - "node.value": 1, - "@children": 1, - "match": 1, - "root": 2, - "keys": 3, - "matches": 3, - "stack": 4, - "next": 2, - "top": 5, - "@stack": 2, - "top.": 1, - "@matches": 1, - "plastic.symbol_proto": 2, - "opts": 2, - "instance.id": 1, - "instance.value": 1, - "instance.bp": 1, - "k": 3, - "instance.": 1, - "parents": 3, - "ancestor": 2, - "ancestors": 1, - "property": 1, - "properties": 1, - "this.type": 8, - "this.first": 8, - "import": 8, - "this.second": 7, - "left": 2, - "this.third": 3, - "sequence": 2, - "led": 4, - "this.bp": 2, - "second.type": 2, - "make_identifier": 4, - "first.id": 1, - "parser.symbols": 2, - "reserve_keyword": 2, - "this.plastic.utilities": 1, - "third": 4, - "third.id": 2, - "second.id": 1, - "std": 1, - "reserve_statement": 1, - "types": 7, - ".type": 1, - "target.type": 3, - "target.value": 3, - "target.id": 4, - "temp": 4, - "temp.id": 1, - "temp.first.id": 1, - "temp.first.type": 2, - "temp.second.type": 1, - "temp.first": 2, - "imports": 5, - "import.type": 2, - "@imports": 2, - "parser.plastic.invocation_operator_proto": 1, - "temp.type": 1, - "parser.plastic.name_proto": 2, - "temp.first.value": 1, - "temp.second": 1, - "first.type": 1, - "parser.imports": 2, - "import.id": 2, - "parser.plastic.assignment_operator_proto": 1, - "result.type": 1, - "result.first": 1, - "result.second": 1, - "@verb": 1, - "do_the_work": 3, - "none": 1, - "object_utils": 1, - "this.location": 3, - "room": 1, - "announce_all": 2, - "continue_msg": 1, - "fork": 1, - "endfork": 1, - "wind_down_msg": 1 - }, - "MoonScript": { - "types": 2, - "require": 5, - "util": 2, - "data": 1, - "import": 5, - "reversed": 2, - "unpack": 22, - "from": 4, - "ntype": 16, - "mtype": 3, - "build": 7, - "smart_node": 7, - "is_slice": 2, - "value_is_singular": 3, - "insert": 18, - "table": 2, - "NameProxy": 14, - "LocalName": 2, - "destructure": 1, - "local": 1, - "implicitly_return": 2, - "class": 4, - "Run": 8, - "new": 2, - "(": 54, - "@fn": 1, - ")": 54, - "self": 2, - "[": 79, - "]": 79, - "call": 3, - "state": 2, - "self.fn": 1, - "-": 51, - "transform": 2, - "the": 4, - "last": 6, - "stm": 16, - "is": 2, - "a": 4, - "list": 6, - "of": 1, - "stms": 4, - "will": 1, - "puke": 1, - "on": 1, - "group": 1, - "apply_to_last": 6, - "fn": 3, - "find": 2, - "real": 1, - "exp": 17, - "last_exp_id": 3, - "for": 20, - "i": 15, - "#stms": 1, - "if": 43, - "and": 8, - "break": 1, - "return": 11, - "in": 18, - "ipairs": 3, - "else": 22, - "body": 26, - "sindle": 1, - "expression/statement": 1, - "is_singular": 2, - "false": 2, - "#body": 1, - "true": 4, - "find_assigns": 2, - "out": 9, - "{": 135, - "}": 136, - "thing": 4, - "*body": 2, - "switch": 7, - "when": 12, - "table.insert": 3, - "extract": 1, - "names": 16, - "hoist_declarations": 1, - "assigns": 5, - "hoist": 1, - "plain": 1, - "old": 1, - "*find_assigns": 1, - "name": 31, - "*names": 3, - "type": 5, - "after": 1, - "runs": 1, - "idx": 4, - "while": 3, - "do": 2, - "+": 2, - "expand_elseif_assign": 2, - "ifstm": 5, - "#ifstm": 1, - "case": 13, - "split": 4, - "constructor_name": 2, - "with_continue_listener": 4, - "continue_name": 13, - "nil": 8, - "@listen": 1, - "unless": 6, - "@put_name": 2, - "build.group": 14, - "@splice": 1, - "lines": 2, - "Transformer": 2, - "@transformers": 3, - "@seen_nodes": 3, - "setmetatable": 1, - "__mode": 1, - "scope": 4, - "node": 68, - "...": 10, - "transformer": 3, - "res": 3, - "or": 6, - "bind": 1, - "@transform": 2, - "__call": 1, - "can_transform": 1, - "construct_comprehension": 2, - "inner": 2, - "clauses": 4, - "current_stms": 7, - "_": 10, - "clause": 4, - "t": 10, - "iter": 2, - "elseif": 1, - "cond": 11, - "error": 4, - "..t": 1, - "Statement": 2, - "root_stms": 1, - "@": 1, - "assign": 9, - "values": 10, - "bubble": 1, - "cascading": 2, - "transformed": 2, - "#values": 1, - "value": 7, - "@transform.statement": 2, - "types.cascading": 1, - "ret": 16, - "types.is_value": 1, - "destructure.has_destructure": 2, - "destructure.split_assign": 1, - "continue": 1, - "@send": 1, - "build.assign_one": 11, - "export": 1, - "they": 1, - "are": 1, - "included": 1, - "#node": 3, - "cls": 5, - "cls.name": 1, - "build.assign": 3, - "update": 1, - "op": 2, - "op_final": 3, - "match": 1, - "..op": 1, - "not": 2, - "source": 7, - "stubs": 1, - "real_names": 4, - "build.chain": 7, - "base": 8, - "stub": 4, - "*stubs": 2, - "source_name": 3, - "comprehension": 1, - "action": 4, - "decorated": 1, - "dec": 6, - "wrapped": 4, - "fail": 5, - "..": 1, - "build.declare": 1, - "*stm": 1, - "expand": 1, - "destructure.build_assign": 2, - "build.do": 2, - "apply": 1, - "decorator": 1, - "mutate": 1, - "all": 1, - "bodies": 1, - "body_idx": 3, - "with": 3, - "block": 2, - "scope_name": 5, - "named_assign": 2, - "assign_name": 1, - "@set": 1, - "foreach": 1, - "node.iter": 1, - "destructures": 5, - "node.names": 3, - "proxy": 2, - "next": 1, - "node.body": 9, - "index_name": 3, - "list_name": 6, - "slice_var": 3, - "bounds": 3, - "slice": 7, - "#list": 1, - "table.remove": 2, - "max_tmp_name": 5, - "index": 2, - "conds": 3, - "exp_name": 3, - "convert": 1, - "into": 1, - "statment": 1, - "convert_cond": 2, - "case_exps": 3, - "cond_exp": 5, - "first": 3, - "if_stm": 5, - "*conds": 1, - "if_cond": 4, - "parent_assign": 3, - "parent_val": 1, - "apart": 1, - "properties": 4, - "statements": 4, - "item": 3, - "tuple": 8, - "*item": 1, - "constructor": 7, - "*properties": 1, - "key": 3, - "parent_cls_name": 5, - "base_name": 4, - "self_name": 4, - "cls_name": 1, - "build.fndef": 3, - "args": 3, - "arrow": 1, - "then": 2, - "constructor.arrow": 1, - "real_name": 6, - "#real_name": 1, - "build.table": 2, - "look": 1, - "up": 1, - "object": 1, - "class_lookup": 3, - "cls_mt": 2, - "out_body": 1, - "make": 1, - "sure": 1, - "we": 1, - "don": 1, - "string": 1, - "parens": 2, - "colon_stub": 1, - "super": 1, - "dot": 1, - "varargs": 2, - "arg_list": 1, - "Value": 1 - }, - "MTML": { - "<$mt:Var>": 15, - "name=": 19, - "value=": 9, - "": 1, - "op=": 8, - "setvar=": 9, - "": 1, - "<": 2, - "a": 1, - "href": 1, - "<$mt:CategoryLabel>": 1, - "remove_html=": 1, - "": 1, - "": 1, - "": 1, - "function=": 1, - "": 1, - "gt=": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 2, - "from=": 2, - "to=": 2, - "div": 1, - "class": 1, - "col_num": 1, - "": 2, - "": 1 - }, - "Nemerle": { - "using": 1, - "System.Console": 1, - ";": 2, - "module": 1, - "Program": 1, - "{": 2, - "Main": 1, - "(": 2, - ")": 2, - "void": 1, - "WriteLine": 1, - "}": 2 - }, - "NetLogo": { - "patches": 7, - "-": 28, - "own": 1, - "[": 17, - "living": 6, - ";": 12, - "indicates": 1, - "if": 2, - "the": 6, - "cell": 10, - "is": 1, - "live": 4, - "neighbors": 5, - "counts": 1, - "how": 1, - "many": 1, - "neighboring": 1, - "cells": 2, - "are": 1, - "alive": 1, - "]": 17, - "to": 6, - "setup": 2, - "blank": 1, - "clear": 2, - "all": 5, - "ask": 6, - "death": 5, - "reset": 2, - "ticks": 2, - "end": 6, - "random": 2, - "ifelse": 3, - "float": 1, - "<": 1, - "initial": 1, - "density": 1, - "birth": 4, - "set": 5, - "true": 1, - "pcolor": 2, - "fgcolor": 1, - "false": 1, - "bgcolor": 1, - "go": 1, - "count": 1, - "with": 2, - "Starting": 1, - "a": 1, - "new": 1, - "here": 1, - "ensures": 1, - "that": 1, - "finish": 1, - "executing": 2, - "first": 1, - "before": 1, - "any": 1, - "of": 2, - "them": 1, - "start": 1, - "second": 1, - "ask.": 1, - "This": 1, - "keeps": 1, - "in": 2, - "synch": 1, - "each": 2, - "other": 1, - "so": 1, - "births": 1, - "and": 1, - "deaths": 1, - "at": 1, - "generation": 1, - "happen": 1, - "lockstep.": 1, - "tick": 1, - "draw": 1, - "let": 1, - "erasing": 2, - "patch": 2, - "mouse": 5, - "xcor": 2, - "ycor": 2, - "while": 1, - "down": 1, - "display": 1 - }, "Nginx": { "user": 1, "www": 2, @@ -45008,3221 +44726,273 @@ "logs/big.server.access.log": 1, "//big_server_com": 1 }, - "Nimrod": { - "echo": 1 - }, - "Nix": { - "{": 8, - "stdenv": 1, - "fetchurl": 2, - "fetchgit": 5, - "openssl": 2, - "zlib": 2, - "pcre": 2, - "libxml2": 2, - "libxslt": 2, - "expat": 2, - "rtmp": 4, - "false": 4, - "fullWebDAV": 3, - "syslog": 4, - "moreheaders": 3, - "...": 1, - "}": 8, - "let": 1, - "version": 2, - ";": 32, - "mainSrc": 2, - "url": 5, - "sha256": 5, - "-": 12, - "ext": 5, - "git": 2, - "//github.com/arut/nginx": 2, - "module.git": 3, - "rev": 4, - "dav": 2, - "https": 2, - "//github.com/yaoweibin/nginx_syslog_patch.git": 1, - "//github.com/agentzh/headers": 1, - "more": 1, - "nginx": 1, - "in": 1, - "stdenv.mkDerivation": 1, - "rec": 1, - "name": 1, - "src": 1, - "buildInputs": 1, - "[": 5, - "]": 5, - "+": 10, - "stdenv.lib.optional": 5, - "patches": 1, - "if": 1, - "then": 1, - "else": 1, - "configureFlags": 1, - "preConfigure": 1, - "export": 1, - "NIX_CFLAGS_COMPILE": 1, - "postInstall": 1, - "mv": 1, - "out/sbin": 1, - "out/bin": 1, - "meta": 1, - "description": 1, - "maintainers": 1, - "stdenv.lib.maintainers.raskin": 1, - "platforms": 1, - "stdenv.lib.platforms.all": 1, - "inherit": 1 - }, - "NSIS": { - ";": 39, - "bigtest.nsi": 1, - "This": 2, - "script": 1, - "attempts": 1, - "to": 6, - "test": 1, - "most": 1, - "of": 3, - "the": 4, - "functionality": 1, - "NSIS": 3, - "exehead.": 1, - "-": 205, - "ifdef": 2, - "HAVE_UPX": 1, - "packhdr": 1, - "tmp.dat": 1, - "endif": 4, - "NOCOMPRESS": 1, - "SetCompress": 1, - "off": 1, - "Name": 1, - "Caption": 1, - "Icon": 1, - "OutFile": 1, - "SetDateSave": 1, - "on": 6, - "SetDatablockOptimize": 1, - "CRCCheck": 1, - "SilentInstall": 1, - "normal": 1, - "BGGradient": 1, - "FFFFFF": 1, - "InstallColors": 1, - "FF8080": 1, - "XPStyle": 1, - "InstallDir": 1, - "InstallDirRegKey": 1, - "HKLM": 9, - "CheckBitmap": 1, - "LicenseText": 1, - "LicenseData": 1, - "RequestExecutionLevel": 1, - "admin": 1, - "Page": 4, - "license": 1, - "components": 1, - "directory": 3, - "instfiles": 2, - "UninstPage": 2, - "uninstConfirm": 1, - "ifndef": 2, - "NOINSTTYPES": 1, - "only": 1, - "if": 4, - "not": 2, - "defined": 1, - "InstType": 6, - "/NOCUSTOM": 1, - "/COMPONENTSONLYONCUSTOM": 1, - "AutoCloseWindow": 1, - "false": 1, - "ShowInstDetails": 1, - "show": 1, - "Section": 5, - "empty": 1, - "string": 1, - "makes": 1, - "it": 3, - "hidden": 1, - "so": 1, - "would": 1, - "starting": 1, - "with": 1, - "write": 2, - "reg": 1, - "info": 1, - "StrCpy": 2, - "DetailPrint": 1, - "WriteRegStr": 4, - "SOFTWARE": 7, - "NSISTest": 7, - "BigNSISTest": 8, - "uninstall": 2, - "strings": 1, - "SetOutPath": 3, - "INSTDIR": 15, - "File": 3, - "/a": 1, - "CreateDirectory": 1, - "recursively": 1, - "create": 1, - "a": 2, - "for": 2, - "fun.": 1, - "WriteUninstaller": 1, - "Nop": 1, - "fun": 1, - "SectionEnd": 5, - "SectionIn": 4, - "Start": 2, - "MessageBox": 11, - "MB_OK": 8, - "MB_YESNO": 3, - "IDYES": 2, - "MyLabel": 2, - "SectionGroup": 2, - "/e": 1, - "SectionGroup1": 1, - "WriteRegDword": 3, - "xdeadbeef": 1, - "WriteRegBin": 1, - "WriteINIStr": 5, - "Call": 6, - "MyFunctionTest": 1, - "DeleteINIStr": 1, - "DeleteINISec": 1, - "ReadINIStr": 1, - "StrCmp": 1, - "INIDelSuccess": 2, - "ClearErrors": 1, - "ReadRegStr": 1, - "HKCR": 1, - "xyz_cc_does_not_exist": 1, - "IfErrors": 1, - "NoError": 2, - "Goto": 1, - "ErrorYay": 2, - "CSCTest": 1, - "Group2": 1, - "BeginTestSection": 1, - "IfFileExists": 1, - "BranchTest69": 1, - "|": 3, - "MB_ICONQUESTION": 1, - "IDNO": 1, - "NoOverwrite": 1, - "skipped": 2, - "file": 4, - "doesn": 2, - "s": 1, - "icon": 1, - "start": 1, - "minimized": 1, - "and": 1, - "give": 1, - "hotkey": 1, - "(": 5, - "Ctrl": 1, - "+": 2, - "Shift": 1, - "Q": 2, - ")": 5, - "CreateShortCut": 2, - "SW_SHOWMINIMIZED": 1, - "CONTROL": 1, - "SHIFT": 1, - "MyTestVar": 1, - "myfunc": 1, - "test.ini": 2, - "MySectionIni": 1, - "Value1": 1, - "failed": 1, - "TextInSection": 1, - "will": 1, - "example2.": 1, - "Hit": 1, - "next": 1, - "continue.": 1, - "{": 8, - "NSISDIR": 1, - "}": 8, - "Contrib": 1, - "Graphics": 1, - "Icons": 1, - "nsis1": 1, - "uninstall.ico": 1, - "Uninstall": 2, - "Software": 1, - "Microsoft": 1, - "Windows": 3, - "CurrentVersion": 1, - "silent.nsi": 1, - "LogicLib.nsi": 1, - "bt": 1, - "uninst.exe": 1, - "SMPROGRAMS": 2, - "Big": 1, - "Test": 2, - "*.*": 2, - "BiG": 1, - "Would": 1, - "you": 1, - "like": 1, - "remove": 1, - "cpdest": 3, - "MyProjectFamily": 2, - "MyProject": 1, - "Note": 1, - "could": 1, - "be": 1, - "removed": 1, - "IDOK": 1, - "t": 1, - "exist": 1, - "NoErrorMsg": 1, - "x64.nsh": 1, - "A": 1, - "few": 1, - "simple": 1, - "macros": 1, - "handle": 1, - "installations": 1, - "x64": 1, - "machines.": 1, - "RunningX64": 4, - "checks": 1, - "installer": 1, - "is": 2, - "running": 1, - "x64.": 1, - "If": 1, - "EndIf": 1, - "DisableX64FSRedirection": 4, - "disables": 1, - "system": 2, - "redirection.": 2, - "EnableX64FSRedirection": 4, - "enables": 1, - "SYSDIR": 1, - "some.dll": 2, - "#": 3, - "extracts": 2, - "C": 2, - "System32": 1, - "SysWOW64": 1, - "___X64__NSH___": 3, - "define": 4, - "include": 1, - "LogicLib.nsh": 1, - "macro": 3, - "_RunningX64": 1, - "_a": 1, - "_b": 1, - "_t": 2, - "_f": 2, - "insertmacro": 2, - "_LOGICLIB_TEMP": 3, - "System": 4, - "kernel32": 4, - "GetCurrentProcess": 1, - "i.s": 1, - "IsWow64Process": 1, - "*i.s": 1, - "Pop": 1, - "_": 1, - "macroend": 3, - "Wow64EnableWow64FsRedirection": 2, - "i0": 1, - "i1": 1 - }, - "Nu": { - "SHEBANG#!nush": 1, - "(": 14, - "puts": 1, - ")": 14, - ";": 22, - "main.nu": 1, - "Entry": 1, - "point": 1, - "for": 1, - "a": 1, - "Nu": 1, - "program.": 1, - "Copyright": 1, - "c": 1, - "Tim": 1, - "Burks": 1, - "Neon": 1, - "Design": 1, - "Technology": 1, - "Inc.": 1, - "load": 4, - "basics": 1, - "cocoa": 1, - "definitions": 1, - "menu": 1, - "generation": 1, - "Aaron": 1, - "Hillegass": 1, - "t": 1, - "retain": 1, - "it.": 1, - "NSApplication": 2, - "sharedApplication": 2, - "setDelegate": 1, - "set": 1, - "delegate": 1, - "ApplicationDelegate": 1, - "alloc": 1, - "init": 1, - "this": 1, - "makes": 1, - "the": 3, - "application": 1, - "window": 1, - "take": 1, - "focus": 1, - "when": 1, - "we": 1, - "ve": 1, - "started": 1, - "it": 1, - "from": 1, - "terminal": 1, - "activateIgnoringOtherApps": 1, - "YES": 1, - "run": 1, - "main": 1, - "Cocoa": 1, - "event": 1, - "loop": 1, - "NSApplicationMain": 1, - "nil": 1 - }, - "Objective-C": { - "//": 317, - "#import": 53, - "": 4, - "#if": 41, - "TARGET_OS_IPHONE": 11, - "": 1, - "__IPHONE_OS_VERSION_MAX_ALLOWED": 4, - "__IPHONE_4_0": 6, - "": 1, - "Necessary": 1, - "for": 99, - "background": 1, - "task": 1, - "support": 4, - "#endif": 59, - "": 2, - "@class": 4, - "ASIDataDecompressor": 4, - ";": 2003, - "extern": 6, - "NSString": 127, - "*ASIHTTPRequestVersion": 2, - "#ifndef": 9, - "__IPHONE_3_2": 2, - "#define": 65, - "__MAC_10_5": 2, - "__MAC_10_6": 2, - "typedef": 47, - "enum": 17, - "_ASIAuthenticationState": 1, - "{": 541, - "ASINoAuthenticationNeededYet": 3, - "ASIHTTPAuthenticationNeeded": 1, - "ASIProxyAuthenticationNeeded": 1, - "}": 532, - "ASIAuthenticationState": 5, - "_ASINetworkErrorType": 1, - "ASIConnectionFailureErrorType": 2, - "ASIRequestTimedOutErrorType": 2, - "ASIAuthenticationErrorType": 3, - "ASIRequestCancelledErrorType": 2, - "ASIUnableToCreateRequestErrorType": 2, - "ASIInternalErrorWhileBuildingRequestType": 3, - "ASIInternalErrorWhileApplyingCredentialsType": 1, - "ASIFileManagementError": 2, - "ASITooMuchRedirectionErrorType": 3, - "ASIUnhandledExceptionError": 3, - "ASICompressionError": 1, - "ASINetworkErrorType": 1, - "NSString*": 13, - "const": 28, - "NetworkRequestErrorDomain": 12, - "unsigned": 62, - "long": 71, - "ASIWWANBandwidthThrottleAmount": 2, - "NS_BLOCKS_AVAILABLE": 8, - "void": 253, - "(": 2109, - "ASIBasicBlock": 15, - ")": 2106, - "ASIHeadersBlock": 3, - "NSDictionary": 37, - "*responseHeaders": 2, - "ASISizeBlock": 5, - "size": 12, - "ASIProgressBlock": 5, - "total": 4, - "ASIDataBlock": 3, - "NSData": 28, - "*data": 2, - "@interface": 23, - "ASIHTTPRequest": 31, - "NSOperation": 1, - "": 1, - "The": 15, - "url": 24, - "this": 50, - "operation": 2, - "should": 8, - "include": 1, - "GET": 1, - "params": 1, - "in": 42, - "the": 197, - "query": 1, - "string": 9, - "where": 1, - "appropriate": 4, - "NSURL": 21, - "*url": 2, - "Will": 7, - "always": 2, - "contain": 4, - "original": 2, - "used": 16, - "making": 1, - "request": 113, - "value": 21, - "of": 34, - "can": 20, - "change": 2, - "when": 46, - "a": 78, - "is": 77, - "redirected": 2, - "*originalURL": 2, - "Temporarily": 1, - "stores": 1, - "we": 73, - "are": 15, - "about": 4, - "to": 115, - "redirect": 4, - "to.": 2, - "be": 49, - "nil": 131, - "again": 1, - "do": 5, - "*redirectURL": 2, - "delegate": 29, - "-": 595, - "will": 57, - "notified": 2, - "various": 1, - "changes": 4, - "state": 35, - "via": 5, - "ASIHTTPRequestDelegate": 1, - "protocol": 10, - "id": 170, - "": 1, - "Another": 1, - "that": 23, - "also": 1, - "status": 4, - "and": 44, - "progress": 13, - "updates": 2, - "Generally": 1, - "you": 10, - "won": 3, - "s": 35, - "more": 5, - "likely": 1, - "sessionCookies": 2, - "NSMutableArray": 31, - "*requestCookies": 2, - "populated": 1, - "with": 19, - "cookies": 5, - "NSArray": 27, - "*responseCookies": 3, - "If": 30, - "use": 26, - "useCookiePersistence": 3, - "true": 9, - "network": 4, - "requests": 21, - "present": 3, - "valid": 5, - "from": 18, - "previous": 2, - "BOOL": 137, - "useKeychainPersistence": 4, - "attempt": 3, - "read": 3, - "credentials": 35, - "keychain": 7, - "save": 3, - "them": 10, - "they": 6, - "successfully": 4, - "presented": 2, - "useSessionPersistence": 6, - "reuse": 3, - "duration": 1, - "session": 5, - "until": 2, - "clearSession": 2, - "called": 3, - "allowCompressedResponse": 3, - "inform": 1, - "server": 8, - "accept": 2, - "compressed": 2, - "data": 27, - "automatically": 2, - "decompress": 1, - "gzipped": 7, - "responses.": 1, - "Default": 10, - "true.": 1, - "shouldCompressRequestBody": 6, - "body": 8, - "gzipped.": 1, - "false.": 1, - "You": 1, - "probably": 4, - "need": 10, - "enable": 1, - "feature": 1, - "on": 26, - "your": 2, - "webserver": 1, - "make": 3, - "work.": 1, - "Tested": 1, - "apache": 1, - "only.": 1, - "When": 15, - "downloadDestinationPath": 11, - "set": 24, - "result": 4, - "downloaded": 6, - "file": 14, - "at": 10, - "location": 3, - "not": 29, - "download": 9, - "stored": 9, - "memory": 3, - "*downloadDestinationPath": 2, - "files": 5, - "Once": 2, - "complete": 12, - "decompressed": 3, - "if": 297, - "necessary": 2, - "moved": 2, - "*temporaryFileDownloadPath": 2, - "response": 17, - "shouldWaitToInflateCompressedResponses": 4, - "NO": 30, - "created": 3, - "path": 11, - "containing": 1, - "inflated": 6, - "as": 17, - "it": 28, - "comes": 3, - "*temporaryUncompressedDataDownloadPath": 2, - "Used": 13, - "writing": 2, - "NSOutputStream": 6, - "*fileDownloadOutputStream": 2, - "*inflatedFileDownloadOutputStream": 2, - "fails": 2, - "or": 18, - "completes": 6, - "finished": 3, - "cancelled": 5, - "an": 20, - "error": 75, - "occurs": 1, - "NSError": 51, - "code": 16, - "Connection": 1, - "failure": 1, - "occurred": 1, - "inspect": 1, - "[": 1227, - "userInfo": 15, - "]": 1227, - "objectForKey": 29, - "NSUnderlyingErrorKey": 3, - "information": 5, - "*error": 3, - "Username": 2, - "password": 11, - "authentication": 18, - "*username": 2, - "*password": 2, - "User": 1, - "Agent": 1, - "*userAgentString": 2, - "Domain": 2, - "NTLM": 6, - "*domain": 2, - "proxy": 11, - "*proxyUsername": 2, - "*proxyPassword": 2, - "*proxyDomain": 2, - "Delegate": 2, - "displaying": 2, - "upload": 4, - "usually": 2, - "NSProgressIndicator": 4, - "but": 5, - "supply": 2, - "different": 4, - "object": 36, - "handle": 4, - "yourself": 4, - "": 2, - "uploadProgressDelegate": 8, - "downloadProgressDelegate": 10, - "Whether": 1, - "t": 15, - "want": 5, - "hassle": 1, - "adding": 1, - "authenticating": 2, - "proxies": 3, - "their": 3, - "apps": 1, - "shouldPresentProxyAuthenticationDialog": 2, - "CFHTTPAuthenticationRef": 2, - "proxyAuthentication": 7, - "*proxyCredentials": 2, - "during": 4, - "int": 55, - "proxyAuthenticationRetryCount": 4, - "Authentication": 3, - "scheme": 5, - "Basic": 2, - "Digest": 2, - "*proxyAuthenticationScheme": 2, - "Realm": 1, - "required": 2, - "*proxyAuthenticationRealm": 3, - "HTTP": 9, - "eg": 2, - "OK": 1, - "Not": 2, - "found": 4, - "etc": 1, - "responseStatusCode": 3, - "Description": 1, - "*responseStatusMessage": 3, - "Size": 3, - "contentLength": 6, - "partially": 1, - "content": 5, - "partialDownloadSize": 8, - "POST": 2, - "payload": 1, - "postLength": 6, - "amount": 12, - "totalBytesRead": 4, - "uploaded": 2, - "totalBytesSent": 5, - "Last": 2, - "incrementing": 2, - "lastBytesRead": 3, - "sent": 6, - "lastBytesSent": 3, - "This": 7, - "lock": 19, - "prevents": 1, - "being": 4, - "inopportune": 1, - "moment": 1, - "NSRecursiveLock": 13, - "*cancelledLock": 2, - "Called": 6, - "implemented": 7, - "starts.": 1, - "requestStarted": 3, - "SEL": 19, - "didStartSelector": 2, - "receives": 3, - "headers.": 1, - "didReceiveResponseHeaders": 2, - "didReceiveResponseHeadersSelector": 2, - "Location": 1, - "header": 20, - "shouldRedirect": 3, - "YES": 62, - "then": 1, - "needed": 3, - "restart": 1, - "by": 12, - "calling": 1, - "redirectToURL": 2, - "simply": 1, - "cancel": 5, - "willRedirectSelector": 2, - "successfully.": 1, - "requestFinished": 4, - "didFinishSelector": 2, - "fails.": 1, - "requestFailed": 2, - "didFailSelector": 2, - "data.": 1, - "didReceiveData": 2, - "implement": 1, - "method": 5, - "must": 6, - "populate": 1, - "responseData": 5, - "write": 4, - "didReceiveDataSelector": 2, - "recording": 1, - "something": 1, - "last": 1, - "happened": 1, - "compare": 4, - "current": 2, - "date": 3, - "time": 9, - "out": 7, - "NSDate": 9, - "*lastActivityTime": 2, - "Number": 1, - "seconds": 2, - "wait": 1, - "before": 6, - "timing": 1, - "default": 8, - "NSTimeInterval": 10, - "timeOutSeconds": 3, - "HEAD": 10, - "length": 32, - "starts": 2, - "shouldResetUploadProgress": 3, - "shouldResetDownloadProgress": 3, - "showAccurateProgress": 7, - "preset": 2, - "*mainRequest": 2, - "only": 12, - "update": 6, - "indicator": 4, - "according": 2, - "how": 2, - "much": 2, - "has": 6, - "received": 5, - "so": 15, - "far": 2, - "Also": 1, - "see": 1, - "comments": 1, - "ASINetworkQueue.h": 1, - "ensure": 1, - "incremented": 4, - "once": 3, - "updatedProgress": 3, - "Prevents": 1, - "post": 2, - "built": 2, - "than": 9, - "largely": 1, - "subclasses": 2, - "haveBuiltPostBody": 3, - "internally": 3, - "may": 8, - "reflect": 1, - "internal": 2, - "buffer": 7, - "CFNetwork": 3, - "/": 18, - "PUT": 1, - "operations": 1, - "sizes": 1, - "greater": 1, - "uploadBufferSize": 6, - "timeout": 6, - "unless": 2, - "bytes": 8, - "have": 15, - "been": 1, - "Likely": 1, - "KB": 4, - "iPhone": 3, - "Mac": 2, - "OS": 1, - "X": 1, - "Leopard": 1, - "x": 10, - "Text": 1, - "encoding": 7, - "responses": 5, - "send": 2, - "Content": 1, - "Type": 1, - "charset": 5, - "value.": 1, - "Defaults": 2, - "NSISOLatin1StringEncoding": 2, - "NSStringEncoding": 6, - "defaultResponseEncoding": 4, - "text": 12, - "didn": 3, - "set.": 1, - "responseEncoding": 3, - "Tells": 1, - "delete": 1, - "partial": 2, - "downloads": 1, - "allows": 1, - "existing": 1, - "resume": 2, - "download.": 1, - "NO.": 1, - "allowResumeForFileDownloads": 2, - "Custom": 1, - "user": 6, - "associated": 1, - "*userInfo": 2, - "NSInteger": 56, - "tag": 2, - "Use": 6, - "rather": 4, - "defaults": 2, - "false": 3, - "useHTTPVersionOne": 3, - "get": 4, - "tell": 2, - "main": 8, - "loop": 1, - "stop": 4, - "retry": 3, - "new": 10, - "needsRedirect": 3, - "Incremented": 1, - "every": 3, - "redirects.": 1, - "reaches": 1, - "give": 2, - "up": 4, - "redirectCount": 2, - "check": 1, - "secure": 1, - "certificate": 2, - "self": 500, - "signed": 1, - "certificates": 2, - "development": 1, - "DO": 1, - "NOT": 1, - "USE": 1, - "IN": 1, - "PRODUCTION": 1, - "validatesSecureCertificate": 3, - "SecIdentityRef": 3, - "clientCertificateIdentity": 5, - "*clientCertificates": 2, - "Details": 1, - "could": 1, - "these": 3, - "best": 1, - "local": 1, - "*PACurl": 2, - "See": 5, - "values": 3, - "above.": 1, - "No": 1, - "yet": 1, - "authenticationNeeded": 3, - "ASIHTTPRequests": 1, - "store": 4, - "same": 6, - "asked": 3, - "avoids": 1, - "extra": 1, - "round": 1, - "trip": 1, - "after": 5, - "succeeded": 1, - "which": 1, - "efficient": 1, - "authenticated": 1, - "large": 1, - "bodies": 1, - "slower": 1, - "connections": 3, - "Set": 4, - "explicitly": 2, - "affects": 1, - "cache": 17, - "YES.": 1, - "Credentials": 1, - "never": 1, - "asks": 1, - "For": 2, - "using": 8, - "authenticationScheme": 4, - "*": 311, - "kCFHTTPAuthenticationSchemeBasic": 2, - "very": 2, - "first": 9, - "shouldPresentCredentialsBeforeChallenge": 4, - "hasn": 1, - "doing": 1, - "anything": 1, - "expires": 1, - "persistentConnectionTimeoutSeconds": 4, - "yes": 1, - "keep": 2, - "alive": 1, - "connectionCanBeReused": 4, - "Stores": 1, - "persistent": 5, - "connection": 17, - "currently": 4, - "use.": 1, - "It": 2, - "particular": 2, - "specify": 2, - "expire": 2, - "A": 4, - "host": 9, - "port": 17, - "connection.": 2, - "These": 1, - "determine": 1, - "whether": 1, - "reused": 2, - "subsequent": 2, - "all": 3, - "match": 1, - "An": 2, - "determining": 1, - "available": 1, - "number": 2, - "reference": 1, - "don": 2, - "ve": 7, - "opened": 3, - "one.": 1, - "stream": 13, - "closed": 1, - "+": 195, - "released": 2, - "either": 1, - "another": 1, - "timer": 5, - "fires": 1, - "NSMutableDictionary": 18, - "*connectionInfo": 2, - "automatic": 1, - "redirects": 2, - "standard": 1, - "follow": 1, - "behaviour": 2, - "most": 1, - "browsers": 1, - "shouldUseRFC2616RedirectBehaviour": 2, - "record": 1, - "downloading": 5, - "downloadComplete": 2, - "ID": 1, - "uniquely": 1, - "identifies": 1, - "primarily": 1, - "debugging": 1, - "NSNumber": 11, - "*requestID": 3, - "ASIHTTPRequestRunLoopMode": 2, - "synchronous": 1, - "NSDefaultRunLoopMode": 2, - "other": 3, - "*runLoopMode": 2, - "checks": 1, - "NSTimer": 5, - "*statusTimer": 2, - "setDefaultCache": 2, - "configure": 2, - "": 9, - "downloadCache": 5, - "policy": 7, - "ASICacheDelegate.h": 2, - "possible": 3, - "ASICachePolicy": 4, - "cachePolicy": 3, - "storage": 2, - "ASICacheStoragePolicy": 2, - "cacheStoragePolicy": 2, - "was": 4, - "pulled": 1, - "didUseCachedResponse": 3, - "secondsToCache": 3, - "custom": 2, - "interval": 1, - "expiring": 1, - "&&": 123, - "shouldContinueWhenAppEntersBackground": 3, - "UIBackgroundTaskIdentifier": 1, - "backgroundTask": 7, - "helper": 1, - "inflate": 2, - "*dataDecompressor": 2, - "Controls": 1, - "without": 1, - "responseString": 3, - "All": 2, - "no": 7, - "raw": 3, - "discarded": 1, - "rawResponseData": 4, - "temporaryFileDownloadPath": 2, - "normal": 1, - "temporaryUncompressedDataDownloadPath": 3, - "contents": 1, - "into": 1, - "Setting": 1, - "especially": 1, - "useful": 1, - "users": 1, - "conjunction": 1, - "streaming": 1, - "parser": 3, - "allow": 1, - "passed": 2, - "while": 11, - "still": 2, - "running": 4, - "behind": 1, - "scenes": 1, - "PAC": 7, - "own": 3, - "isPACFileRequest": 3, - "http": 4, - "https": 1, - "webservers": 1, - "*PACFileRequest": 2, - "asynchronously": 1, - "reading": 1, - "URLs": 2, - "NSInputStream": 7, - "*PACFileReadStream": 2, - "storing": 1, - "NSMutableData": 5, - "*PACFileData": 2, - "startSynchronous.": 1, - "Currently": 1, - "detection": 2, - "synchronously": 1, - "isSynchronous": 2, - "//block": 12, - "execute": 4, - "startedBlock": 5, - "headers": 11, - "headersReceivedBlock": 5, - "completionBlock": 5, - "failureBlock": 5, - "bytesReceivedBlock": 8, - "bytesSentBlock": 5, - "downloadSizeIncrementedBlock": 5, - "uploadSizeIncrementedBlock": 5, - "handling": 4, - "dataReceivedBlock": 5, - "authenticationNeededBlock": 5, - "proxyAuthenticationNeededBlock": 5, - "redirections": 1, - "requestRedirectedBlock": 5, - "#pragma": 44, - "mark": 42, - "init": 34, - "dealloc": 13, - "initWithURL": 4, - "newURL": 16, - "requestWithURL": 7, - "usingCache": 5, - "andCachePolicy": 3, - "setStartedBlock": 1, - "aStartedBlock": 1, - "setHeadersReceivedBlock": 1, - "aReceivedBlock": 2, - "setCompletionBlock": 1, - "aCompletionBlock": 1, - "setFailedBlock": 1, - "aFailedBlock": 1, - "setBytesReceivedBlock": 1, - "aBytesReceivedBlock": 1, - "setBytesSentBlock": 1, - "aBytesSentBlock": 1, - "setDownloadSizeIncrementedBlock": 1, - "aDownloadSizeIncrementedBlock": 1, - "setUploadSizeIncrementedBlock": 1, - "anUploadSizeIncrementedBlock": 1, - "setDataReceivedBlock": 1, - "setAuthenticationNeededBlock": 1, - "anAuthenticationBlock": 1, - "setProxyAuthenticationNeededBlock": 1, - "aProxyAuthenticationBlock": 1, - "setRequestRedirectedBlock": 1, - "aRedirectBlock": 1, - "setup": 2, - "addRequestHeader": 5, - "applyCookieHeader": 2, - "buildRequestHeaders": 3, - "applyAuthorizationHeader": 2, - "buildPostBody": 3, - "appendPostData": 3, - "appendPostDataFromFile": 3, - "isResponseCompressed": 3, - "startSynchronous": 2, - "startAsynchronous": 2, - "clearDelegatesAndCancel": 2, - "HEADRequest": 1, - "upload/download": 1, - "updateProgressIndicators": 1, - "updateUploadProgress": 3, - "updateDownloadProgress": 3, - "removeUploadProgressSoFar": 1, - "incrementDownloadSizeBy": 1, - "incrementUploadSizeBy": 3, - "updateProgressIndicator": 4, - "withProgress": 4, - "ofTotal": 4, - "performSelector": 7, - "selector": 12, - "onTarget": 7, - "target": 5, - "withObject": 10, - "callerToRetain": 7, - "caller": 1, - "talking": 1, - "delegates": 2, - "requestReceivedResponseHeaders": 1, - "newHeaders": 1, - "failWithError": 11, - "theError": 6, - "retryUsingNewConnection": 1, - "parsing": 2, - "readResponseHeaders": 2, - "parseStringEncodingFromHeaders": 2, - "parseMimeType": 2, - "**": 27, - "mimeType": 2, - "andResponseEncoding": 2, - "stringEncoding": 1, - "fromContentType": 2, - "contentType": 1, - "stuff": 1, - "applyCredentials": 1, - "newCredentials": 16, - "applyProxyCredentials": 2, - "findCredentials": 1, - "findProxyCredentials": 2, - "retryUsingSuppliedCredentials": 1, - "cancelAuthentication": 1, - "attemptToApplyCredentialsAndResume": 1, - "attemptToApplyProxyCredentialsAndResume": 1, - "showProxyAuthenticationDialog": 1, - "showAuthenticationDialog": 1, - "addBasicAuthenticationHeaderWithUsername": 2, - "theUsername": 1, - "andPassword": 2, - "thePassword": 1, - "handlers": 1, - "handleNetworkEvent": 2, - "CFStreamEventType": 2, - "type": 5, - "handleBytesAvailable": 1, - "handleStreamComplete": 1, - "handleStreamError": 1, - "cleanup": 1, - "markAsFinished": 4, - "removeTemporaryDownloadFile": 1, - "removeTemporaryUncompressedDownloadFile": 1, - "removeTemporaryUploadFile": 1, - "removeTemporaryCompressedUploadFile": 1, - "removeFileAtPath": 1, - "err": 8, - "connectionID": 1, - "expirePersistentConnections": 1, - "defaultTimeOutSeconds": 3, - "setDefaultTimeOutSeconds": 1, - "newTimeOutSeconds": 1, - "client": 1, - "setClientCertificateIdentity": 1, - "anIdentity": 1, - "sessionProxyCredentialsStore": 1, - "sessionCredentialsStore": 1, - "storeProxyAuthenticationCredentialsInSessionStore": 1, - "storeAuthenticationCredentialsInSessionStore": 2, - "removeProxyAuthenticationCredentialsFromSessionStore": 1, - "removeAuthenticationCredentialsFromSessionStore": 3, - "findSessionProxyAuthenticationCredentials": 1, - "findSessionAuthenticationCredentials": 2, - "saveCredentialsToKeychain": 3, - "saveCredentials": 4, - "NSURLCredential": 8, - "forHost": 2, - "realm": 14, - "forProxy": 2, - "savedCredentialsForHost": 1, - "savedCredentialsForProxy": 1, - "removeCredentialsForHost": 1, - "removeCredentialsForProxy": 1, - "setSessionCookies": 1, - "newSessionCookies": 1, - "addSessionCookie": 1, - "NSHTTPCookie": 1, - "newCookie": 1, - "agent": 2, - "defaultUserAgentString": 1, - "setDefaultUserAgentString": 1, - "mime": 1, - "mimeTypeForFileAtPath": 1, - "bandwidth": 3, - "measurement": 1, - "throttling": 1, - "maxBandwidthPerSecond": 2, - "setMaxBandwidthPerSecond": 1, - "averageBandwidthUsedPerSecond": 2, - "performThrottling": 2, - "isBandwidthThrottled": 2, - "incrementBandwidthUsedInLastSecond": 1, - "setShouldThrottleBandwidthForWWAN": 1, - "throttle": 1, - "throttleBandwidthForWWANUsingLimit": 1, - "limit": 1, - "reachability": 1, - "isNetworkReachableViaWWAN": 1, - "queue": 12, - "NSOperationQueue": 4, - "sharedQueue": 4, - "defaultCache": 3, - "maxUploadReadLength": 1, - "activity": 1, - "isNetworkInUse": 1, - "setShouldUpdateNetworkActivityIndicator": 1, - "shouldUpdate": 1, - "showNetworkActivityIndicator": 1, - "hideNetworkActivityIndicator": 1, - "miscellany": 1, - "base64forData": 1, - "theData": 1, - "expiryDateForRequest": 1, - "maxAge": 2, - "dateFromRFC1123String": 1, - "isMultitaskingSupported": 2, - "threading": 1, - "NSThread": 4, - "threadForRequest": 3, - "@property": 150, - "retain": 73, - "*proxyHost": 1, - "assign": 84, - "proxyPort": 2, - "*proxyType": 1, - "setter": 2, - "setURL": 3, - "nonatomic": 40, - "readonly": 19, - "*authenticationRealm": 2, - "*requestHeaders": 1, - "*requestCredentials": 1, - "*rawResponseData": 1, - "*requestMethod": 1, - "*postBody": 1, - "*postBodyFilePath": 1, - "shouldStreamPostDataFromDisk": 4, - "didCreateTemporaryPostDataFile": 1, - "*authenticationScheme": 1, - "shouldPresentAuthenticationDialog": 1, - "authenticationRetryCount": 2, - "haveBuiltRequestHeaders": 1, - "inProgress": 4, - "numberOfTimesToRetryOnTimeout": 2, - "retryCount": 3, - "shouldAttemptPersistentConnection": 2, - "@end": 37, - "": 1, - "#else": 8, - "": 1, - "@": 258, - "static": 102, - "*defaultUserAgent": 1, - "*ASIHTTPRequestRunLoopMode": 1, - "CFOptionFlags": 1, - "kNetworkEvents": 1, - "kCFStreamEventHasBytesAvailable": 1, - "|": 13, - "kCFStreamEventEndEncountered": 1, - "kCFStreamEventErrorOccurred": 1, - "*sessionCredentialsStore": 1, - "*sessionProxyCredentialsStore": 1, - "*sessionCredentialsLock": 1, - "*sessionCookies": 1, - "RedirectionLimit": 1, - "ReadStreamClientCallBack": 1, - "CFReadStreamRef": 5, - "readStream": 5, - "*clientCallBackInfo": 1, - "ASIHTTPRequest*": 1, - "clientCallBackInfo": 1, - "*progressLock": 1, - "*ASIRequestCancelledError": 1, - "*ASIRequestTimedOutError": 1, - "*ASIAuthenticationError": 1, - "*ASIUnableToCreateRequestError": 1, - "*ASITooMuchRedirectionError": 1, - "*bandwidthUsageTracker": 1, - "nextConnectionNumberToCreate": 1, - "*persistentConnectionsPool": 1, - "*connectionsLock": 1, - "nextRequestID": 1, - "bandwidthUsedInLastSecond": 1, - "*bandwidthMeasurementDate": 1, - "NSLock": 2, - "*bandwidthThrottlingLock": 1, - "shouldThrottleBandwidthForWWANOnly": 1, - "*sessionCookiesLock": 1, - "*delegateAuthenticationLock": 1, - "*throttleWakeUpTime": 1, - "runningRequestCount": 1, - "shouldUpdateNetworkActivityIndicator": 1, - "*networkThread": 1, - "*sharedQueue": 1, - "cancelLoad": 3, - "destroyReadStream": 3, - "scheduleReadStream": 1, - "unscheduleReadStream": 1, - "willAskDelegateForCredentials": 1, - "willAskDelegateForProxyCredentials": 1, - "askDelegateForProxyCredentials": 1, - "askDelegateForCredentials": 1, - "failAuthentication": 1, - "measureBandwidthUsage": 1, - "recordBandwidthUsage": 1, - "startRequest": 3, - "updateStatus": 2, - "checkRequestStatus": 2, - "reportFailure": 3, - "reportFinished": 1, - "performRedirect": 1, - "shouldTimeOut": 2, - "willRedirect": 1, - "willAskDelegateToConfirmRedirect": 1, - "performInvocation": 2, - "NSInvocation": 4, - "invocation": 4, - "releasingObject": 2, - "objectToRelease": 1, - "hideNetworkActivityIndicatorAfterDelay": 1, - "hideNetworkActivityIndicatorIfNeeeded": 1, - "runRequests": 1, - "configureProxies": 2, - "fetchPACFile": 1, - "finishedDownloadingPACFile": 1, - "theRequest": 1, - "runPACScript": 1, - "script": 1, - "timeOutPACRead": 1, - "useDataFromCache": 2, - "updatePartialDownloadSize": 1, - "registerForNetworkReachabilityNotifications": 1, - "unsubscribeFromNetworkReachabilityNotifications": 1, - "reachabilityChanged": 1, - "NSNotification": 2, - "note": 1, - "performBlockOnMainThread": 2, - "block": 18, - "releaseBlocksOnMainThread": 4, - "releaseBlocks": 3, - "blocks": 16, - "callBlock": 1, - "*postBodyWriteStream": 1, - "*postBodyReadStream": 1, - "*compressedPostBody": 1, - "*compressedPostBodyFilePath": 1, - "willRetryRequest": 1, - "*readStream": 1, - "readStreamIsScheduled": 1, - "setSynchronous": 2, - "@implementation": 13, - "initialize": 1, - "class": 30, - "persistentConnectionsPool": 3, - "alloc": 47, - "connectionsLock": 3, - "progressLock": 1, - "bandwidthThrottlingLock": 1, - "sessionCookiesLock": 1, - "sessionCredentialsLock": 1, - "delegateAuthenticationLock": 1, - "bandwidthUsageTracker": 1, - "initWithCapacity": 2, - "ASIRequestTimedOutError": 1, - "initWithDomain": 5, - "dictionaryWithObjectsAndKeys": 10, - "NSLocalizedDescriptionKey": 10, - "ASIAuthenticationError": 1, - "ASIRequestCancelledError": 2, - "ASIUnableToCreateRequestError": 3, - "ASITooMuchRedirectionError": 1, - "setMaxConcurrentOperationCount": 1, - "setRequestMethod": 3, - "setRunLoopMode": 2, - "setShouldAttemptPersistentConnection": 2, - "setPersistentConnectionTimeoutSeconds": 2, - "setShouldPresentCredentialsBeforeChallenge": 1, - "setShouldRedirect": 1, - "setShowAccurateProgress": 1, - "setShouldResetDownloadProgress": 1, - "setShouldResetUploadProgress": 1, - "setAllowCompressedResponse": 1, - "setShouldWaitToInflateCompressedResponses": 1, - "setDefaultResponseEncoding": 1, - "setShouldPresentProxyAuthenticationDialog": 1, - "setTimeOutSeconds": 1, - "setUseSessionPersistence": 1, - "setUseCookiePersistence": 1, - "setValidatesSecureCertificate": 1, - "setRequestCookies": 2, - "autorelease": 21, - "setDidStartSelector": 1, - "@selector": 28, - "setDidReceiveResponseHeadersSelector": 1, - "setWillRedirectSelector": 1, - "willRedirectToURL": 1, - "setDidFinishSelector": 1, - "setDidFailSelector": 1, - "setDidReceiveDataSelector": 1, - "setCancelledLock": 1, - "setDownloadCache": 3, - "return": 165, - "ASIUseDefaultCachePolicy": 1, - "*request": 1, - "setCachePolicy": 1, - "setAuthenticationNeeded": 2, - "requestAuthentication": 7, - "CFRelease": 19, - "redirectURL": 1, - "release": 66, - "statusTimer": 3, - "invalidate": 2, - "postBody": 11, - "compressedPostBody": 4, - "requestHeaders": 6, - "requestCookies": 1, - "fileDownloadOutputStream": 1, - "inflatedFileDownloadOutputStream": 1, - "username": 8, - "domain": 2, - "authenticationRealm": 4, - "requestCredentials": 1, - "proxyHost": 2, - "proxyType": 1, - "proxyUsername": 3, - "proxyPassword": 3, - "proxyDomain": 1, - "proxyAuthenticationRealm": 2, - "proxyAuthenticationScheme": 2, - "proxyCredentials": 1, - "originalURL": 1, - "lastActivityTime": 1, - "responseCookies": 1, - "responseHeaders": 5, - "requestMethod": 13, - "cancelledLock": 37, - "postBodyFilePath": 7, - "compressedPostBodyFilePath": 4, - "postBodyWriteStream": 7, - "postBodyReadStream": 2, - "PACurl": 1, - "clientCertificates": 2, - "responseStatusMessage": 1, - "connectionInfo": 13, - "requestID": 2, - "dataDecompressor": 1, - "userAgentString": 1, - "super": 25, - "*blocks": 1, - "array": 84, - "addObject": 16, - "performSelectorOnMainThread": 2, - "waitUntilDone": 4, - "isMainThread": 2, - "Blocks": 1, - "exits": 1, - "setRequestHeaders": 2, - "dictionaryWithCapacity": 2, - "setObject": 9, - "forKey": 9, - "Are": 1, - "submitting": 1, - "disk": 1, - "were": 5, - "close": 5, - "setPostBodyWriteStream": 2, - "*path": 1, - "setCompressedPostBodyFilePath": 1, - "NSTemporaryDirectory": 2, - "stringByAppendingPathComponent": 2, - "NSProcessInfo": 2, - "processInfo": 2, - "globallyUniqueString": 2, - "*err": 3, - "ASIDataCompressor": 2, - "compressDataFromFile": 1, - "toFile": 1, - "&": 36, - "else": 35, - "setPostLength": 3, - "NSFileManager": 1, - "attributesOfItemAtPath": 1, - "fileSize": 1, - "errorWithDomain": 6, - "stringWithFormat": 6, - "Otherwise": 2, - "*compressedBody": 1, - "compressData": 1, - "setCompressedPostBody": 1, - "compressedBody": 1, - "isEqualToString": 13, - "||": 42, - "setHaveBuiltPostBody": 1, - "setupPostBody": 3, - "setPostBodyFilePath": 1, - "setDidCreateTemporaryPostDataFile": 1, - "initToFileAtPath": 1, - "append": 1, - "open": 2, - "setPostBody": 1, - "maxLength": 3, - "appendData": 2, - "*stream": 1, - "initWithFileAtPath": 1, - "NSUInteger": 93, - "bytesRead": 5, - "hasBytesAvailable": 1, - "char": 19, - "*256": 1, - "sizeof": 13, - "break": 13, - "dataWithBytes": 1, - "*m": 1, - "unlock": 20, - "m": 1, - "newRequestMethod": 3, - "*u": 1, - "u": 4, - "isEqual": 4, - "NULL": 152, - "setRedirectURL": 2, - "d": 11, - "setDelegate": 4, - "newDelegate": 6, - "q": 2, - "setQueue": 2, - "newQueue": 3, - "cancelOnRequestThread": 2, - "DEBUG_REQUEST_STATUS": 4, - "ASI_DEBUG_LOG": 11, - "isCancelled": 6, - "setComplete": 3, - "CFRetain": 4, - "willChangeValueForKey": 1, - "didChangeValueForKey": 1, - "onThread": 2, - "Clear": 3, - "setDownloadProgressDelegate": 2, - "setUploadProgressDelegate": 2, - "initWithBytes": 1, - "*encoding": 1, - "rangeOfString": 1, - ".location": 1, - "NSNotFound": 1, - "uncompressData": 1, - "DEBUG_THROTTLING": 2, - "setInProgress": 3, - "NSRunLoop": 2, - "currentRunLoop": 2, - "runMode": 1, - "runLoopMode": 2, - "beforeDate": 1, - "distantFuture": 1, - "start": 3, - "addOperation": 1, - "concurrency": 1, - "isConcurrent": 1, - "isFinished": 1, - "isExecuting": 1, - "logic": 1, - "@try": 1, - "UIBackgroundTaskInvalid": 3, - "UIApplication": 2, - "sharedApplication": 2, - "beginBackgroundTaskWithExpirationHandler": 1, - "dispatch_async": 1, - "dispatch_get_main_queue": 1, - "endBackgroundTask": 1, - "generated": 3, - "ASINetworkQueue": 4, - "already.": 1, - "proceed.": 1, - "setDidUseCachedResponse": 1, - "Must": 1, - "call": 8, - "create": 1, - "needs": 1, - "mainRequest": 9, - "ll": 6, - "already": 4, - "CFHTTPMessageRef": 3, - "Create": 1, - "request.": 1, - "CFHTTPMessageCreateRequest": 1, - "kCFAllocatorDefault": 3, - "CFStringRef": 1, - "CFURLRef": 1, - "kCFHTTPVersion1_0": 1, - "kCFHTTPVersion1_1": 1, - "//If": 2, - "let": 8, - "generate": 1, - "its": 9, - "Even": 1, - "chance": 2, - "add": 5, - "ASIS3Request": 1, - "does": 3, - "process": 1, - "@catch": 1, - "NSException": 19, - "*exception": 1, - "*underlyingError": 1, - "exception": 3, - "name": 7, - "reason": 1, - "NSLocalizedFailureReasonErrorKey": 1, - "underlyingError": 1, - "@finally": 1, - "Do": 3, - "DEBUG_HTTP_AUTHENTICATION": 4, - "*credentials": 1, - "auth": 2, - "basic": 3, - "any": 3, - "cached": 2, - "key": 32, - "challenge": 1, - "apply": 2, - "like": 1, - "CFHTTPMessageApplyCredentialDictionary": 2, - "CFDictionaryRef": 1, - "setAuthenticationScheme": 1, - "happens": 4, - "%": 30, - "re": 9, - "retrying": 1, - "our": 6, - "measure": 1, - "throttled": 1, - "setPostBodyReadStream": 2, - "ASIInputStream": 2, - "inputStreamWithData": 2, - "setReadStream": 2, - "NSMakeCollectable": 3, - "CFReadStreamCreateForStreamedHTTPRequest": 1, - "CFReadStreamCreateForHTTPRequest": 1, - "lowercaseString": 1, - "*sslProperties": 2, - "initWithObjectsAndKeys": 1, - "numberWithBool": 3, - "kCFStreamSSLAllowsExpiredCertificates": 1, - "kCFStreamSSLAllowsAnyRoot": 1, - "kCFStreamSSLValidatesCertificateChain": 1, - "kCFNull": 1, - "kCFStreamSSLPeerName": 1, - "CFReadStreamSetProperty": 1, - "kCFStreamPropertySSLSettings": 1, - "CFTypeRef": 1, - "sslProperties": 2, - "*certificates": 1, - "arrayWithCapacity": 2, - "count": 99, - "*oldStream": 1, - "redirecting": 2, - "connecting": 2, - "intValue": 4, - "setConnectionInfo": 2, - "Check": 1, - "expired": 1, - "timeIntervalSinceNow": 1, - "<": 56, - "DEBUG_PERSISTENT_CONNECTIONS": 3, - "removeObject": 2, - "//Some": 1, - "previously": 1, - "there": 1, - "one": 1, - "We": 7, - "just": 4, - "old": 5, - "//lists.apple.com/archives/Macnetworkprog/2006/Mar/msg00119.html": 1, - "oldStream": 4, - "streamSuccessfullyOpened": 1, - "setConnectionCanBeReused": 2, - "Record": 1, - "started": 1, - "nothing": 2, - "setLastActivityTime": 1, - "setStatusTimer": 2, - "timerWithTimeInterval": 1, - "repeats": 1, - "addTimer": 1, - "forMode": 1, - "here": 2, - "safely": 1, - "***Black": 1, - "magic": 1, - "warning***": 1, - "reliable": 1, - "way": 1, - "track": 1, - "strong": 4, - "slow.": 1, - "secondsSinceLastActivity": 1, - "*1.5": 1, - "updating": 1, - "checking": 1, - "told": 1, - "us": 2, - "auto": 2, - "resuming": 1, - "Range": 1, - "take": 1, - "account": 1, - "perhaps": 1, - "setTotalBytesSent": 1, - "CFReadStreamCopyProperty": 2, - "kCFStreamPropertyHTTPRequestBytesWrittenCount": 1, - "unsignedLongLongValue": 1, - "middle": 1, - "said": 1, - "might": 4, - "MaxValue": 2, - "UIProgressView": 2, - "double": 3, - "max": 7, - "setMaxValue": 2, - "examined": 1, - "since": 1, - "authenticate": 1, - "bytesReadSoFar": 3, - "setUpdatedProgress": 1, - "didReceiveBytes": 2, - "totalSize": 2, - "setLastBytesRead": 1, - "pass": 5, - "pointer": 2, - "directly": 1, - "itself": 1, - "setArgument": 4, - "atIndex": 6, - "argumentNumber": 1, - "callback": 3, - "NSMethodSignature": 1, - "*cbSignature": 1, - "methodSignatureForSelector": 1, - "*cbInvocation": 1, - "invocationWithMethodSignature": 1, - "cbSignature": 1, - "cbInvocation": 5, - "setSelector": 1, - "setTarget": 1, - "forget": 2, - "know": 3, - "removeObjectForKey": 1, - "dateWithTimeIntervalSinceNow": 1, - "ignore": 1, - "ASIFallbackToCacheIfLoadFailsCachePolicy": 2, - "canUseCachedDataForRequest": 1, - "setError": 2, - "*failedRequest": 1, - "compatible": 1, - "fail": 1, - "failedRequest": 4, - "message": 2, - "kCFStreamPropertyHTTPResponseHeader": 1, - "Make": 1, - "sure": 1, - "tells": 1, - "keepAliveHeader": 2, - "NSScanner": 2, - "*scanner": 1, - "scannerWithString": 1, - "scanner": 5, - "scanString": 2, - "intoString": 3, - "scanInt": 2, - "scanUpToString": 1, - "what": 3, - "hard": 1, - "throw": 1, - "away.": 1, - "*userAgentHeader": 1, - "*acceptHeader": 1, - "userAgentHeader": 2, - "acceptHeader": 2, - "setHaveBuiltRequestHeaders": 1, - "Force": 2, - "rebuild": 2, - "cookie": 1, - "incase": 1, - "got": 1, - "some": 1, - "remain": 1, - "ones": 3, - "URLWithString": 1, - "valueForKey": 2, - "relativeToURL": 1, - "absoluteURL": 1, - "setNeedsRedirect": 1, - "means": 1, - "manually": 1, - "added": 5, - "those": 1, - "global": 1, - "But": 1, - "safest": 1, - "option": 1, - "responseCode": 1, - "Handle": 1, - "*mimeType": 1, - "setResponseEncoding": 2, - "saveProxyCredentialsToKeychain": 1, - "*authenticationCredentials": 2, - "credentialWithUser": 2, - "kCFHTTPAuthenticationUsername": 2, - "kCFHTTPAuthenticationPassword": 2, - "persistence": 2, - "NSURLCredentialPersistencePermanent": 2, - "authenticationCredentials": 4, - "setProxyAuthenticationRetryCount": 1, - "Apply": 1, - "whatever": 1, - "ok": 1, - "CFMutableDictionaryRef": 1, - "*sessionCredentials": 1, - "dictionary": 64, - "sessionCredentials": 6, - "setRequestCredentials": 1, - "*newCredentials": 1, - "*user": 1, - "*pass": 1, - "*theRequest": 1, - "try": 3, - "connect": 1, - "website": 1, - "kCFHTTPAuthenticationSchemeNTLM": 1, - "Ok": 1, - "extract": 1, - "NSArray*": 1, - "ntlmComponents": 1, - "componentsSeparatedByString": 1, - "AUTH": 6, - "Request": 6, - "parent": 1, - "properties": 1, - "ASIAuthenticationDialog": 2, - "had": 1, - "Foo": 2, - "NSObject": 5, - "": 2, - "FooAppDelegate": 2, - "": 1, - "@private": 2, - "NSWindow": 2, - "*window": 2, - "IBOutlet": 1, - "@synthesize": 7, - "window": 1, - "applicationDidFinishLaunching": 1, - "aNotification": 1, - "argc": 1, - "*argv": 1, - "NSLog": 4, - "#include": 18, - "": 1, - "": 2, - "": 2, - "": 1, - "": 1, - "#ifdef": 10, - "__OBJC__": 4, - "": 2, - "": 2, - "": 2, - "": 1, - "": 2, - "": 1, - "__cplusplus": 2, - "NSINTEGER_DEFINED": 3, - "defined": 16, - "__LP64__": 4, - "NS_BUILD_32_LIKE_64": 3, - "NSIntegerMin": 3, - "LONG_MIN": 3, - "NSIntegerMax": 4, - "LONG_MAX": 3, - "NSUIntegerMax": 7, - "ULONG_MAX": 3, - "INT_MIN": 3, - "INT_MAX": 2, - "UINT_MAX": 3, - "_JSONKIT_H_": 3, - "__GNUC__": 14, - "__APPLE_CC__": 2, - "JK_DEPRECATED_ATTRIBUTE": 6, - "__attribute__": 3, - "deprecated": 1, - "JSONKIT_VERSION_MAJOR": 1, - "JSONKIT_VERSION_MINOR": 1, - "JKFlags": 5, - "JKParseOptionNone": 1, - "JKParseOptionStrict": 1, - "JKParseOptionComments": 2, - "<<": 16, - "JKParseOptionUnicodeNewlines": 2, - "JKParseOptionLooseUnicode": 2, - "JKParseOptionPermitTextAfterValidJSON": 2, - "JKParseOptionValidFlags": 1, - "JKParseOptionFlags": 12, - "JKSerializeOptionNone": 3, - "JKSerializeOptionPretty": 2, - "JKSerializeOptionEscapeUnicode": 2, - "JKSerializeOptionEscapeForwardSlashes": 2, - "JKSerializeOptionValidFlags": 1, - "JKSerializeOptionFlags": 16, - "struct": 20, - "JKParseState": 18, - "Opaque": 1, - "private": 1, - "type.": 3, - "JSONDecoder": 2, - "*parseState": 16, - "decoder": 1, - "decoderWithParseOptions": 1, - "parseOptionFlags": 11, - "initWithParseOptions": 1, - "clearCache": 1, - "parseUTF8String": 2, - "size_t": 23, - "Deprecated": 4, - "JSONKit": 11, - "v1.4.": 4, - "objectWithUTF8String": 4, - "instead.": 4, - "parseJSONData": 2, - "jsonData": 6, - "objectWithData": 7, - "mutableObjectWithUTF8String": 2, - "mutableObjectWithData": 2, - "////////////": 4, - "Deserializing": 1, - "methods": 2, - "JSONKitDeserializing": 2, - "objectFromJSONString": 1, - "objectFromJSONStringWithParseOptions": 2, - "mutableObjectFromJSONString": 1, - "mutableObjectFromJSONStringWithParseOptions": 2, - "objectFromJSONData": 1, - "objectFromJSONDataWithParseOptions": 2, - "mutableObjectFromJSONData": 1, - "mutableObjectFromJSONDataWithParseOptions": 2, - "Serializing": 1, - "JSONKitSerializing": 3, - "JSONData": 3, - "Invokes": 2, - "JSONDataWithOptions": 8, - "includeQuotes": 6, - "serializeOptions": 14, - "JSONString": 3, - "JSONStringWithOptions": 8, - "serializeUnsupportedClassesUsingDelegate": 4, - "__BLOCKS__": 1, - "JSONKitSerializingBlockAdditions": 2, - "serializeUnsupportedClassesUsingBlock": 4, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "//#include": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "//#import": 1, - "": 1, - "": 1, - "": 1, - "__has_feature": 3, - "JK_ENABLE_CF_TRANSFER_OWNERSHIP_CALLBACKS": 2, - "#warning": 1, - "As": 1, - "v1.4": 1, - "longer": 2, - "required.": 1, - "option.": 1, - "__OBJC_GC__": 1, - "#error": 6, - "Objective": 2, - "C": 6, - "Garbage": 1, - "Collection": 1, - "objc_arc": 1, - "Automatic": 1, - "Reference": 1, - "Counting": 1, - "ARC": 1, - "xffffffffU": 1, - "fffffff": 1, - "ULLONG_MAX": 1, - "xffffffffffffffffULL": 1, - "LLONG_MIN": 1, - "fffffffffffffffLL": 1, - "LL": 1, - "requires": 4, - "types": 2, - "bits": 1, - "respectively.": 1, - "WORD_BIT": 1, - "LONG_BIT": 1, - "bit": 1, - "architectures.": 1, - "SIZE_MAX": 1, - "SSIZE_MAX": 1, - "JK_HASH_INIT": 1, - "UL": 138, - "JK_FAST_TRAILING_BYTES": 2, - "JK_CACHE_SLOTS_BITS": 2, - "JK_CACHE_SLOTS": 1, - "JK_CACHE_PROBES": 1, - "JK_INIT_CACHE_AGE": 1, - "JK_TOKENBUFFER_SIZE": 1, - "JK_STACK_OBJS": 1, - "JK_JSONBUFFER_SIZE": 1, - "JK_UTF8BUFFER_SIZE": 1, - "JK_ENCODE_CACHE_SLOTS": 1, - "JK_ATTRIBUTES": 15, - "attr": 3, - "...": 11, - "##__VA_ARGS__": 7, - "JK_EXPECTED": 4, - "cond": 12, - "expect": 3, - "__builtin_expect": 1, - "JK_EXPECT_T": 22, - "U": 2, - "JK_EXPECT_F": 14, - "JK_PREFETCH": 2, - "ptr": 3, - "__builtin_prefetch": 1, - "JK_STATIC_INLINE": 10, - "__inline__": 1, - "always_inline": 1, - "JK_ALIGNED": 1, - "arg": 11, - "aligned": 1, - "JK_UNUSED_ARG": 2, - "unused": 3, - "JK_WARN_UNUSED": 1, - "warn_unused_result": 9, - "JK_WARN_UNUSED_CONST": 1, - "JK_WARN_UNUSED_PURE": 1, - "pure": 2, - "JK_WARN_UNUSED_SENTINEL": 1, - "sentinel": 1, - "JK_NONNULL_ARGS": 1, - "nonnull": 6, - "JK_WARN_UNUSED_NONNULL_ARGS": 1, - "JK_WARN_UNUSED_CONST_NONNULL_ARGS": 1, - "JK_WARN_UNUSED_PURE_NONNULL_ARGS": 1, - "__GNUC_MINOR__": 3, - "JK_ALLOC_SIZE_NON_NULL_ARGS_WARN_UNUSED": 2, - "nn": 4, - "alloc_size": 1, - "JKArray": 14, - "JKDictionaryEnumerator": 4, - "JKDictionary": 22, - "JSONNumberStateStart": 1, - "JSONNumberStateFinished": 1, - "JSONNumberStateError": 1, - "JSONNumberStateWholeNumberStart": 1, - "JSONNumberStateWholeNumberMinus": 1, - "JSONNumberStateWholeNumberZero": 1, - "JSONNumberStateWholeNumber": 1, - "JSONNumberStatePeriod": 1, - "JSONNumberStateFractionalNumberStart": 1, - "JSONNumberStateFractionalNumber": 1, - "JSONNumberStateExponentStart": 1, - "JSONNumberStateExponentPlusMinus": 1, - "JSONNumberStateExponent": 1, - "JSONStringStateStart": 1, - "JSONStringStateParsing": 1, - "JSONStringStateFinished": 1, - "JSONStringStateError": 1, - "JSONStringStateEscape": 1, - "JSONStringStateEscapedUnicode1": 1, - "JSONStringStateEscapedUnicode2": 1, - "JSONStringStateEscapedUnicode3": 1, - "JSONStringStateEscapedUnicode4": 1, - "JSONStringStateEscapedUnicodeSurrogate1": 1, - "JSONStringStateEscapedUnicodeSurrogate2": 1, - "JSONStringStateEscapedUnicodeSurrogate3": 1, - "JSONStringStateEscapedUnicodeSurrogate4": 1, - "JSONStringStateEscapedNeedEscapeForSurrogate": 1, - "JSONStringStateEscapedNeedEscapedUForSurrogate": 1, - "JKParseAcceptValue": 2, - "JKParseAcceptComma": 2, - "JKParseAcceptEnd": 3, - "JKParseAcceptValueOrEnd": 1, - "JKParseAcceptCommaOrEnd": 1, - "JKClassUnknown": 1, - "JKClassString": 1, - "JKClassNumber": 1, - "JKClassArray": 1, - "JKClassDictionary": 1, - "JKClassNull": 1, - "JKManagedBufferOnStack": 1, - "JKManagedBufferOnHeap": 1, - "JKManagedBufferLocationMask": 1, - "JKManagedBufferLocationShift": 1, - "JKManagedBufferMustFree": 1, - "JKManagedBufferFlags": 1, - "JKObjectStackOnStack": 1, - "JKObjectStackOnHeap": 1, - "JKObjectStackLocationMask": 1, - "JKObjectStackLocationShift": 1, - "JKObjectStackMustFree": 1, - "JKObjectStackFlags": 1, - "JKTokenTypeInvalid": 1, - "JKTokenTypeNumber": 1, - "JKTokenTypeString": 1, - "JKTokenTypeObjectBegin": 1, - "JKTokenTypeObjectEnd": 1, - "JKTokenTypeArrayBegin": 1, - "JKTokenTypeArrayEnd": 1, - "JKTokenTypeSeparator": 1, - "JKTokenTypeComma": 1, - "JKTokenTypeTrue": 1, - "JKTokenTypeFalse": 1, - "JKTokenTypeNull": 1, - "JKTokenTypeWhiteSpace": 1, - "JKTokenType": 2, - "JKValueTypeNone": 1, - "JKValueTypeString": 1, - "JKValueTypeLongLong": 1, - "JKValueTypeUnsignedLongLong": 1, - "JKValueTypeDouble": 1, - "JKValueType": 1, - "JKEncodeOptionAsData": 1, - "JKEncodeOptionAsString": 1, - "JKEncodeOptionAsTypeMask": 1, - "JKEncodeOptionCollectionObj": 1, - "JKEncodeOptionStringObj": 1, - "JKEncodeOptionStringObjTrimQuotes": 1, - "JKEncodeOptionType": 2, - "JKHash": 4, - "JKTokenCacheItem": 2, - "JKTokenCache": 2, - "JKTokenValue": 2, - "JKParseToken": 2, - "JKPtrRange": 2, - "JKObjectStack": 5, - "JKBuffer": 2, - "JKConstBuffer": 2, - "JKConstPtrRange": 2, - "JKRange": 2, - "JKManagedBuffer": 5, - "JKFastClassLookup": 2, - "JKEncodeCache": 6, - "JKEncodeState": 11, - "JKObjCImpCache": 2, - "JKHashTableEntry": 21, - "serializeObject": 1, - "options": 6, - "optionFlags": 1, - "encodeOption": 2, - "JKSERIALIZER_BLOCKS_PROTO": 1, - "releaseState": 1, - "keyHash": 21, - "uint32_t": 1, - "UTF32": 11, - "uint16_t": 1, - "UTF16": 1, - "uint8_t": 1, - "UTF8": 2, - "conversionOK": 1, - "sourceExhausted": 1, - "targetExhausted": 1, - "sourceIllegal": 1, - "ConversionResult": 1, - "UNI_REPLACEMENT_CHAR": 1, - "FFFD": 1, - "UNI_MAX_BMP": 1, - "FFFF": 3, - "UNI_MAX_UTF16": 1, - "UNI_MAX_UTF32": 1, - "FFFFFFF": 1, - "UNI_MAX_LEGAL_UTF32": 1, - "UNI_SUR_HIGH_START": 1, - "xD800": 1, - "UNI_SUR_HIGH_END": 1, - "xDBFF": 1, - "UNI_SUR_LOW_START": 1, - "xDC00": 1, - "UNI_SUR_LOW_END": 1, - "xDFFF": 1, - "trailingBytesForUTF8": 1, - "offsetsFromUTF8": 1, - "E2080UL": 1, - "C82080UL": 1, - "xFA082080UL": 1, - "firstByteMark": 1, - "xC0": 1, - "xE0": 1, - "xF0": 1, - "xF8": 1, - "xFC": 1, - "JK_AT_STRING_PTR": 1, - "stringBuffer.bytes.ptr": 2, - "JK_END_STRING_PTR": 1, - "stringBuffer.bytes.length": 1, - "*_JKArrayCreate": 2, - "*objects": 5, - "mutableCollection": 7, - "_JKArrayInsertObjectAtIndex": 3, - "*array": 9, - "newObject": 12, - "objectIndex": 48, - "_JKArrayReplaceObjectAtIndexWithObject": 3, - "_JKArrayRemoveObjectAtIndex": 3, - "_JKDictionaryCapacityForCount": 4, - "*_JKDictionaryCreate": 2, - "*keys": 2, - "*keyHashes": 2, - "*_JKDictionaryHashEntry": 2, - "*dictionary": 13, - "_JKDictionaryCapacity": 3, - "_JKDictionaryResizeIfNeccessary": 3, - "_JKDictionaryRemoveObjectWithEntry": 3, - "*entry": 4, - "_JKDictionaryAddObject": 4, - "*_JKDictionaryHashTableEntryForKey": 2, - "aKey": 13, - "_JSONDecoderCleanup": 1, - "*decoder": 1, - "_NSStringObjectFromJSONString": 1, - "*jsonString": 1, - "**error": 1, - "jk_managedBuffer_release": 1, - "*managedBuffer": 3, - "jk_managedBuffer_setToStackBuffer": 1, - "*ptr": 2, - "*jk_managedBuffer_resize": 1, - "newSize": 1, - "jk_objectStack_release": 1, - "*objectStack": 3, - "jk_objectStack_setToStackBuffer": 1, - "**objects": 1, - "**keys": 1, - "CFHashCode": 1, - "*cfHashes": 1, - "jk_objectStack_resize": 1, - "newCount": 1, - "jk_error": 1, - "*format": 7, - "jk_parse_string": 1, - "jk_parse_number": 1, - "jk_parse_is_newline": 1, - "*atCharacterPtr": 1, - "jk_parse_skip_newline": 1, - "jk_parse_skip_whitespace": 1, - "jk_parse_next_token": 1, - "jk_error_parse_accept_or3": 1, - "*or1String": 1, - "*or2String": 1, - "*or3String": 1, - "*jk_create_dictionary": 1, - "startingObjectIndex": 1, - "*jk_parse_dictionary": 1, - "*jk_parse_array": 1, - "*jk_object_for_token": 1, - "*jk_cachedObjects": 1, - "jk_cache_age": 1, - "jk_set_parsed_token": 1, - "advanceBy": 1, - "jk_encode_error": 1, - "*encodeState": 9, - "jk_encode_printf": 1, - "*cacheSlot": 4, - "startingAtIndex": 4, - "jk_encode_write": 1, - "jk_encode_writePrettyPrintWhiteSpace": 1, - "jk_encode_write1slow": 2, - "ssize_t": 2, - "depthChange": 2, - "jk_encode_write1fast": 2, - "jk_encode_writen": 1, - "jk_encode_object_hash": 1, - "*objectPtr": 2, - "jk_encode_updateCache": 1, - "jk_encode_add_atom_to_buffer": 1, - "jk_encode_write1": 1, - "es": 3, - "dc": 3, - "f": 8, - "_jk_encode_prettyPrint": 1, - "jk_min": 1, - "b": 4, - "jk_max": 3, - "jk_calculateHash": 1, - "currentHash": 1, - "c": 7, - "Class": 3, - "_JKArrayClass": 5, - "_JKArrayInstanceSize": 4, - "_JKDictionaryClass": 5, - "_JKDictionaryInstanceSize": 4, - "_jk_NSNumberClass": 2, - "NSNumberAllocImp": 2, - "_jk_NSNumberAllocImp": 2, - "NSNumberInitWithUnsignedLongLongImp": 2, - "_jk_NSNumberInitWithUnsignedLongLongImp": 2, - "jk_collectionClassLoadTimeInitialization": 2, - "constructor": 1, - "NSAutoreleasePool": 2, - "*pool": 1, - "Though": 1, - "technically": 1, - "run": 1, - "environment": 1, - "load": 1, - "initialization": 1, - "less": 1, - "ideal.": 1, - "objc_getClass": 2, - "class_getInstanceSize": 2, - "methodForSelector": 2, - "temp_NSNumber": 4, - "initWithUnsignedLongLong": 1, - "pool": 2, - "": 2, - "NSMutableCopying": 2, - "NSFastEnumeration": 2, - "capacity": 51, - "mutations": 20, - "allocWithZone": 4, - "NSZone": 4, - "zone": 8, - "raise": 18, - "NSInvalidArgumentException": 6, - "format": 18, - "NSStringFromClass": 18, - "NSStringFromSelector": 16, - "_cmd": 16, - "NSCParameterAssert": 19, - "objects": 58, - "calloc": 5, - "Directly": 2, - "allocate": 2, - "instance": 2, - "calloc.": 2, - "isa": 2, - "malloc": 1, - "memcpy": 2, - "<=>": 15, - "*newObjects": 1, - "newObjects": 2, - "realloc": 1, - "NSMallocException": 2, - "memset": 1, - "memmove": 2, - "atObject": 12, - "free": 4, - "NSParameterAssert": 15, - "getObjects": 2, - "objectsPtr": 3, - "range": 8, - "NSRange": 1, - "NSMaxRange": 4, - "NSRangeException": 6, - "range.location": 2, - "range.length": 1, - "objectAtIndex": 8, - "countByEnumeratingWithState": 2, - "NSFastEnumerationState": 2, - "stackbuf": 8, - "len": 6, - "mutationsPtr": 2, - "itemsPtr": 2, - "enumeratedCount": 8, - "insertObject": 1, - "anObject": 16, - "NSInternalInconsistencyException": 4, - "__clang_analyzer__": 3, - "Stupid": 2, - "clang": 3, - "analyzer...": 2, - "Issue": 2, - "#19.": 2, - "removeObjectAtIndex": 1, - "replaceObjectAtIndex": 1, - "copyWithZone": 1, - "initWithObjects": 2, - "mutableCopyWithZone": 1, - "NSEnumerator": 2, - "collection": 11, - "nextObject": 6, - "initWithJKDictionary": 3, - "initDictionary": 4, - "allObjects": 2, - "arrayWithObjects": 1, - "_JKDictionaryHashEntry": 2, - "returnObject": 3, - "entry": 41, - ".key": 11, - "jk_dictionaryCapacities": 4, - "bottom": 6, - "top": 8, - "mid": 5, - "tableSize": 2, - "lround": 1, - "floor": 1, - "capacityForCount": 4, - "resize": 3, - "oldCapacity": 2, - "NS_BLOCK_ASSERTIONS": 1, - "oldCount": 2, - "*oldEntry": 1, - "idx": 33, - "oldEntry": 9, - ".keyHash": 2, - ".object": 7, - "keys": 5, - "keyHashes": 2, - "atEntry": 45, - "removeIdx": 3, - "entryIdx": 4, - "*atEntry": 3, - "addKeyEntry": 2, - "addIdx": 5, - "*atAddEntry": 1, - "atAddEntry": 6, - "keyEntry": 4, - "CFEqual": 2, - "CFHash": 1, - "table": 7, - "would": 2, - "now.": 1, - "entryForKey": 3, - "_JKDictionaryHashTableEntryForKey": 1, - "andKeys": 1, - "arrayIdx": 5, - "keyEnumerator": 1, - "copy": 4, - "Why": 1, - "earth": 1, - "complain": 1, - "doesn": 1, - "Internal": 2, - "Unable": 2, - "temporary": 2, - "buffer.": 2, - "line": 2, - "#": 2, - "ld": 2, - "Invalid": 1, - "character": 1, - "x.": 1, - "n": 7, - "r": 6, - "F": 1, - ".": 2, - "e": 1, - "Unexpected": 1, - "token": 1, - "wanted": 1, - "Expected": 3, - "MainMenuViewController": 2, - "TTTableViewController": 1, - "///////////////////////////////////////////////////////////////////////////////////////////////////": 24, - "initWithNibName": 3, - "nibNameOrNil": 1, - "bundle": 3, - "NSBundle": 1, - "nibBundleOrNil": 1, - "self.title": 2, - "//self.variableHeightRows": 1, - "self.tableViewStyle": 1, - "UITableViewStyleGrouped": 1, - "self.dataSource": 1, - "TTSectionedDataSource": 1, - "dataSourceWithObjects": 1, - "TTTableTextItem": 48, - "itemWithText": 48, - "URL": 48, - "PlaygroundViewController": 2, - "UIViewController": 2, - "UIScrollView*": 1, - "_scrollView": 9, - "": 1, - "CGFloat": 44, - "kFramePadding": 7, - "kElementSpacing": 3, - "kGroupSpacing": 5, - "addHeader": 5, - "yOffset": 42, - "UILabel*": 2, - "label": 6, - "UILabel": 2, - "initWithFrame": 12, - "CGRectZero": 5, - "label.text": 2, - "label.font": 3, - "UIFont": 3, - "systemFontOfSize": 2, - "label.numberOfLines": 2, - "CGRect": 41, - "frame": 38, - "label.frame": 4, - "frame.origin.x": 3, - "frame.origin.y": 16, - "frame.size.width": 4, - "frame.size.height": 15, - "sizeWithFont": 2, - "constrainedToSize": 2, - "CGSizeMake": 3, - ".height": 4, - "addSubview": 8, - "label.frame.size.height": 2, - "TT_RELEASE_SAFELY": 12, - "addText": 5, - "loadView": 4, - "UIScrollView": 1, - "self.view.bounds": 2, - "_scrollView.autoresizingMask": 1, - "UIViewAutoresizingFlexibleWidth": 4, - "UIViewAutoresizingFlexibleHeight": 1, - "self.view": 4, - "NSLocalizedString": 9, - "UIButton*": 1, - "button": 5, - "UIButton": 1, - "buttonWithType": 1, - "UIButtonTypeRoundedRect": 1, - "setTitle": 1, - "forState": 4, - "UIControlStateNormal": 1, - "addTarget": 1, - "action": 1, - "debugTestAction": 2, - "forControlEvents": 1, - "UIControlEventTouchUpInside": 1, - "sizeToFit": 1, - "button.frame": 2, - "TTCurrentLocale": 2, - "displayNameForKey": 1, - "NSLocaleIdentifier": 1, - "localeIdentifier": 1, - "TTPathForBundleResource": 1, - "TTPathForDocumentsResource": 1, - "dataUsingEncoding": 2, - "NSUTF8StringEncoding": 2, - "md5Hash": 1, - "setContentSize": 1, - "viewDidUnload": 2, - "viewDidAppear": 2, - "animated": 27, - "flashScrollIndicators": 1, - "DEBUG": 1, - "TTDPRINTMETHODNAME": 1, - "TTDPRINT": 9, - "TTMAXLOGLEVEL": 1, - "TTDERROR": 1, - "TTLOGLEVEL_ERROR": 1, - "TTDWARNING": 1, - "TTLOGLEVEL_WARNING": 1, - "TTDINFO": 1, - "TTLOGLEVEL_INFO": 1, - "TTDCONDITIONLOG": 3, - "rand": 1, - "TTDASSERT": 2, - "SBJsonParser": 2, - "maxDepth": 2, - "NSData*": 1, - "objectWithString": 5, - "repr": 5, - "jsonText": 1, - "NSError**": 2, - "self.maxDepth": 2, - "Methods": 1, - "self.error": 3, - "SBJsonStreamParserAccumulator": 2, - "*accumulator": 1, - "SBJsonStreamParserAdapter": 2, - "*adapter": 1, - "adapter.delegate": 1, - "accumulator": 1, - "SBJsonStreamParser": 2, - "*parser": 1, - "parser.maxDepth": 1, - "parser.delegate": 1, - "adapter": 1, - "switch": 3, - "parse": 1, - "case": 8, - "SBJsonStreamParserComplete": 1, - "accumulator.value": 1, - "SBJsonStreamParserWaitingForData": 1, - "SBJsonStreamParserError": 1, - "parser.error": 1, - "error_": 2, - "tmp": 3, - "*ui": 1, - "*error_": 1, - "ui": 1, - "StyleViewController": 2, - "TTViewController": 1, - "TTStyle*": 7, - "_style": 8, - "_styleHighlight": 6, - "_styleDisabled": 6, - "_styleSelected": 6, - "_styleType": 6, - "kTextStyleType": 2, - "kViewStyleType": 2, - "kImageStyleType": 2, - "initWithStyleName": 1, - "styleType": 3, - "TTStyleSheet": 4, - "globalStyleSheet": 4, - "styleWithSelector": 4, - "UIControlStateHighlighted": 1, - "UIControlStateDisabled": 1, - "UIControlStateSelected": 1, - "addTextView": 5, - "title": 2, - "style": 29, - "textFrame": 3, - "TTRectInset": 3, - "UIEdgeInsetsMake": 3, - "StyleView*": 2, - "StyleView": 2, - "text.text": 1, - "TTStyleContext*": 1, - "context": 4, - "TTStyleContext": 1, - "context.frame": 1, - "context.delegate": 1, - "context.font": 1, - "systemFontSize": 1, - "CGSize": 5, - "addToSize": 1, - "CGSizeZero": 1, - "size.width": 1, - "size.height": 1, - "textFrame.size": 1, - "text.frame": 1, - "text.style": 1, - "text.backgroundColor": 1, - "UIColor": 3, - "colorWithRed": 3, - "green": 3, - "blue": 3, - "alpha": 3, - "text.autoresizingMask": 1, - "UIViewAutoresizingFlexibleBottomMargin": 3, - "addView": 5, - "viewFrame": 4, - "view": 11, - "view.style": 2, - "view.backgroundColor": 2, - "view.autoresizingMask": 2, - "addImageView": 5, - "TTImageView*": 1, - "TTImageView": 1, - "view.urlPath": 1, - "imageFrame": 2, - "view.frame": 2, - "imageFrame.size": 1, - "view.image.size": 1, - "TUITableViewStylePlain": 2, - "regular": 1, - "TUITableViewStyleGrouped": 1, - "grouped": 1, - "stick": 1, - "scroll": 3, - "TUITableViewStyle": 4, - "TUITableViewScrollPositionNone": 2, - "TUITableViewScrollPositionTop": 2, - "TUITableViewScrollPositionMiddle": 1, - "TUITableViewScrollPositionBottom": 1, - "TUITableViewScrollPositionToVisible": 3, - "supported": 1, - "TUITableViewScrollPosition": 5, - "TUITableViewInsertionMethodBeforeIndex": 1, - "NSOrderedAscending": 4, - "TUITableViewInsertionMethodAtIndex": 1, - "NSOrderedSame": 1, - "TUITableViewInsertionMethodAfterIndex": 1, - "NSOrderedDescending": 4, - "TUITableViewInsertionMethod": 3, - "TUITableViewCell": 23, - "@protocol": 3, - "TUITableViewDataSource": 2, - "TUITableView": 25, - "TUITableViewDelegate": 1, - "": 1, - "TUIScrollViewDelegate": 1, - "tableView": 45, - "heightForRowAtIndexPath": 2, - "TUIFastIndexPath": 89, - "indexPath": 47, - "@optional": 2, - "willDisplayCell": 2, - "cell": 21, - "forRowAtIndexPath": 2, - "subview": 1, - "didSelectRowAtIndexPath": 3, - "left/right": 2, - "mouse": 2, - "down": 1, - "up/down": 1, - "didDeselectRowAtIndexPath": 3, - "didClickRowAtIndexPath": 1, - "withEvent": 2, - "NSEvent": 3, - "event": 8, - "look": 1, - "clickCount": 1, - "TUITableView*": 1, - "shouldSelectRowAtIndexPath": 3, - "TUIFastIndexPath*": 1, - "forEvent": 3, - "NSEvent*": 1, - "NSMenu": 1, - "menuForRowAtIndexPath": 1, - "tableViewWillReloadData": 3, - "tableViewDidReloadData": 3, - "targetIndexPathForMoveFromRowAtIndexPath": 1, - "fromPath": 1, - "toProposedIndexPath": 1, - "proposedPath": 1, - "TUIScrollView": 1, - "__unsafe_unretained": 2, - "": 4, - "_dataSource": 6, - "weak": 2, - "_sectionInfo": 27, - "TUIView": 17, - "_pullDownView": 4, - "_headerView": 8, - "_lastSize": 1, - "_contentHeight": 7, - "NSMutableIndexSet": 6, - "_visibleSectionHeaders": 6, - "_visibleItems": 14, - "_reusableTableCells": 5, - "_selectedIndexPath": 9, - "_indexPathShouldBeFirstResponder": 2, - "_futureMakeFirstResponderToken": 2, - "_keepVisibleIndexPathForReload": 2, - "_relativeOffsetForReload": 2, - "drag": 1, - "reorder": 1, - "_dragToReorderCell": 5, - "CGPoint": 7, - "_currentDragToReorderLocation": 1, - "_currentDragToReorderMouseOffset": 1, - "_currentDragToReorderIndexPath": 1, - "_currentDragToReorderInsertionMethod": 1, - "_previousDragToReorderIndexPath": 1, - "_previousDragToReorderInsertionMethod": 1, - "animateSelectionChanges": 3, - "forceSaveScrollPosition": 1, - "derepeaterEnabled": 1, - "layoutSubviewsReentrancyGuard": 1, - "didFirstLayout": 1, - "dataSourceNumberOfSectionsInTableView": 1, - "delegateTableViewWillDisplayCellForRowAtIndexPath": 1, - "maintainContentOffsetAfterReload": 3, - "_tableFlags": 1, - "creation.": 1, - "calls": 1, - "UITableViewStylePlain": 1, - "unsafe_unretained": 2, - "dataSource": 2, - "": 4, - "readwrite": 1, - "reloadData": 3, - "reloadDataMaintainingVisibleIndexPath": 2, - "relativeOffset": 5, - "reloadLayout": 2, - "numberOfSections": 10, - "numberOfRowsInSection": 9, - "section": 60, - "rectForHeaderOfSection": 4, - "rectForSection": 3, - "rectForRowAtIndexPath": 7, - "NSIndexSet": 4, - "indexesOfSectionsInRect": 2, - "rect": 10, - "indexesOfSectionHeadersInRect": 2, - "indexPathForCell": 2, - "returns": 4, - "visible": 16, - "indexPathsForRowsInRect": 3, - "indexPathForRowAtPoint": 2, - "point": 11, - "indexPathForRowAtVerticalOffset": 2, - "offset": 23, - "indexOfSectionWithHeaderAtPoint": 2, - "indexOfSectionWithHeaderAtVerticalOffset": 2, - "enumerateIndexPathsUsingBlock": 2, - "*indexPath": 11, - "*stop": 7, - "enumerateIndexPathsWithOptions": 2, - "NSEnumerationOptions": 4, - "usingBlock": 6, - "enumerateIndexPathsFromIndexPath": 4, - "fromIndexPath": 6, - "toIndexPath": 12, - "withOptions": 4, - "headerViewForSection": 6, - "cellForRowAtIndexPath": 9, - "index": 11, - "visibleCells": 3, - "order": 1, - "sortedVisibleCells": 2, - "indexPathsForVisibleRows": 2, - "scrollToRowAtIndexPath": 3, - "atScrollPosition": 3, - "scrollPosition": 9, - "indexPathForSelectedRow": 4, - "representing": 1, - "row": 36, - "selection.": 1, - "indexPathForFirstRow": 2, - "indexPathForLastRow": 2, - "selectRowAtIndexPath": 3, - "deselectRowAtIndexPath": 3, - "*pullDownView": 1, - "pullDownViewIsVisible": 3, - "*headerView": 6, - "dequeueReusableCellWithIdentifier": 2, - "identifier": 7, - "": 1, - "@required": 1, - "canMoveRowAtIndexPath": 2, - "moveRowAtIndexPath": 2, - "numberOfSectionsInTableView": 3, - "NSIndexPath": 5, - "indexPathForRow": 11, - "inSection": 11, - "HEADER_Z_POSITION": 2, - "beginning": 1, - "height": 19, - "TUITableViewRowInfo": 3, - "TUITableViewSection": 16, - "*_tableView": 1, - "*_headerView": 1, - "reusable": 1, - "similar": 1, - "UITableView": 1, - "sectionIndex": 23, - "numberOfRows": 13, - "sectionHeight": 9, - "sectionOffset": 8, - "*rowInfo": 1, - "initWithNumberOfRows": 2, - "_tableView": 3, - "rowInfo": 7, - "_setupRowHeights": 2, - "*header": 1, - "self.headerView": 2, - "roundf": 2, - "header.frame.size.height": 1, - "i": 41, - "h": 3, - "_tableView.delegate": 1, - ".offset": 2, - "rowHeight": 2, - "sectionRowOffset": 2, - "tableRowOffset": 2, - "headerHeight": 4, - "self.headerView.frame.size.height": 1, - "headerView": 14, - "_tableView.dataSource": 3, - "respondsToSelector": 8, - "_headerView.autoresizingMask": 1, - "TUIViewAutoresizingFlexibleWidth": 1, - "_headerView.layer.zPosition": 1, + "OpenEdge ABL": { + "USING": 3, + "Progress.Lang.*.": 3, + "CLASS": 2, + "email.Util": 1, + "USE": 2, + "-": 73, + "WIDGET": 2, + "POOL": 2, + "FINAL": 1, + "DEFINE": 16, + "PRIVATE": 1, + "STATIC": 5, + "VARIABLE": 12, + "cMonthMap": 2, + "AS": 21, + "CHARACTER": 9, + "EXTENT": 1, + "INITIAL": 1, + "[": 2, + "]": 2, + ".": 14, + "METHOD": 6, + "PUBLIC": 6, + "ABLDateTimeToEmail": 3, + "(": 44, + "INPUT": 11, + "ipdttzDateTime": 6, + "DATETIME": 3, + "TZ": 2, + ")": 44, + "RETURN": 7, + "STRING": 7, + "DAY": 1, + "+": 21, + "MONTH": 1, + "YEAR": 1, + "INTEGER": 6, + "TRUNCATE": 2, + "MTIME": 1, + "/": 2, + "ABLTimeZoneToString": 2, + "TIMEZONE": 1, + "END": 12, + "METHOD.": 6, + "ipdtDateTime": 2, + "ipiTimeZone": 3, + "ABSOLUTE": 1, + "MODULO": 1, + "LONGCHAR": 4, + "ConvertDataToBase64": 1, + "iplcNonEncodedData": 2, + "lcPreBase64Data": 4, + "NO": 13, + "UNDO.": 12, + "lcPostBase64Data": 3, + "mptrPostBase64Data": 3, + "MEMPTR": 2, + "i": 3, + "COPY": 1, + "LOB": 1, + "FROM": 1, + "OBJECT": 2, + "TO": 2, + "mptrPostBase64Data.": 1, + "BASE64": 1, + "ENCODE": 1, + "SET": 5, + "SIZE": 5, + "DO": 2, + "LENGTH": 3, + "BY": 1, + "ASSIGN": 2, + "SUBSTRING": 1, + "CHR": 2, + "END.": 2, + "lcPostBase64Data.": 1, + "CLASS.": 2, + "email.Email": 2, + "&": 3, + "SCOPED": 1, + "QUOTES": 1, + "@#": 1, + "%": 2, + "*": 2, + "._MIME_BOUNDARY_.": 1, + "#@": 1, + "WIN": 1, + "From": 4, + "To": 8, + "CC": 2, + "BCC": 2, + "Personal": 1, "Private": 1, - "_updateSectionInfo": 2, - "_updateDerepeaterViews": 2, - "pullDownView": 1, - "_tableFlags.animateSelectionChanges": 3, - "_tableFlags.delegateTableViewWillDisplayCellForRowAtIndexPath": 1, - "setDataSource": 1, - "_tableFlags.dataSourceNumberOfSectionsInTableView": 2, - "setAnimateSelectionChanges": 1, - "*s": 3, - "y": 12, - "CGRectMake": 8, - "self.bounds.size.width": 4, - "indexPath.section": 3, - "indexPath.row": 1, - "*section": 8, - "removeFromSuperview": 4, - "removeAllIndexes": 2, - "*sections": 1, - "bounds": 2, - ".size.height": 1, - "self.contentInset.top*2": 1, - "section.sectionOffset": 1, - "sections": 4, - "self.contentInset.bottom": 1, - "_enqueueReusableCell": 2, - "*identifier": 1, - "cell.reuseIdentifier": 1, - "*c": 1, - "lastObject": 1, - "removeLastObject": 1, - "prepareForReuse": 1, - "allValues": 1, - "SortCells": 1, - "*a": 2, - "*b": 2, - "*ctx": 1, - "a.frame.origin.y": 2, - "b.frame.origin.y": 2, - "*v": 2, - "v": 4, - "sortedArrayUsingComparator": 1, - "NSComparator": 1, - "NSComparisonResult": 1, - "INDEX_PATHS_FOR_VISIBLE_ROWS": 4, - "allKeys": 1, - "*i": 4, - "*cell": 7, - "*indexes": 2, - "CGRectIntersectsRect": 5, - "indexes": 4, - "addIndex": 3, - "*indexPaths": 1, - "cellRect": 7, - "indexPaths": 2, - "CGRectContainsPoint": 1, - "cellRect.origin.y": 1, - "origin": 1, - "brief": 1, - "Obtain": 1, - "whose": 2, - "specified": 1, - "exists": 1, - "negative": 1, - "returned": 1, - "param": 1, - "p": 3, - "0": 2, - "width": 1, - "point.y": 1, - "section.headerView": 9, - "sectionLowerBound": 2, - "fromIndexPath.section": 1, - "sectionUpperBound": 3, - "toIndexPath.section": 1, - "rowLowerBound": 2, - "fromIndexPath.row": 1, - "rowUpperBound": 3, - "toIndexPath.row": 1, - "irow": 3, - "lower": 1, - "bound": 1, - "iteration...": 1, - "rowCount": 3, - "j": 5, - "FALSE": 2, - "...then": 1, - "zero": 1, - "iterations": 1, - "_topVisibleIndexPath": 1, - "*topVisibleIndex": 1, - "sortedArrayUsingSelector": 1, - "topVisibleIndex": 2, - "setFrame": 2, - "_tableFlags.forceSaveScrollPosition": 1, - "setContentOffset": 2, - "_tableFlags.didFirstLayout": 1, - "prevent": 2, - "layout": 3, - "pinned": 5, - "isKindOfClass": 2, - "TUITableViewSectionHeader": 5, - ".pinnedToViewport": 2, - "TRUE": 1, - "pinnedHeader": 1, - "CGRectGetMaxY": 2, - "headerFrame": 4, - "pinnedHeader.frame.origin.y": 1, - "intersecting": 1, - "push": 1, - "upwards.": 1, - "pinnedHeaderFrame": 2, - "pinnedHeader.frame": 2, - "pinnedHeaderFrame.origin.y": 1, - "notify": 3, - "section.headerView.frame": 1, - "setNeedsLayout": 3, - "section.headerView.superview": 1, - "remove": 4, - "offscreen": 2, - "toRemove": 1, - "enumerateIndexesUsingBlock": 1, - "removeIndex": 1, - "_layoutCells": 3, - "visibleCellsNeedRelayout": 5, - "remaining": 1, - "cells": 7, - "cell.frame": 1, - "cell.layer.zPosition": 1, - "visibleRect": 3, - "Example": 1, - "*oldVisibleIndexPaths": 1, - "*newVisibleIndexPaths": 1, - "*indexPathsToRemove": 1, - "oldVisibleIndexPaths": 2, - "mutableCopy": 2, - "indexPathsToRemove": 2, - "removeObjectsInArray": 2, - "newVisibleIndexPaths": 2, - "*indexPathsToAdd": 1, - "indexPathsToAdd": 2, - "newly": 1, - "superview": 1, - "bringSubviewToFront": 1, - "self.contentSize": 3, - "headerViewRect": 3, - "s.height": 3, - "_headerView.frame.size.height": 2, - "visible.size.width": 3, - "_headerView.frame": 1, - "_headerView.hidden": 4, - "show": 2, - "pullDownRect": 4, - "_pullDownView.frame.size.height": 2, - "_pullDownView.hidden": 4, - "_pullDownView.frame": 1, - "self.delegate": 10, - "recycle": 1, - "regenerated": 3, - "layoutSubviews": 5, - "because": 1, - "dragged": 1, - "clear": 3, - "removeAllObjects": 1, - "laid": 1, - "next": 2, - "_tableFlags.layoutSubviewsReentrancyGuard": 3, - "setAnimationsEnabled": 1, - "CATransaction": 3, + "Company": 2, + "confidential": 2, + "normal": 1, + "urgent": 2, + "non": 1, + "Cannot": 3, + "locate": 3, + "file": 6, + "in": 3, + "the": 3, + "filesystem": 3, + "R": 3, + "File": 3, + "exists": 3, + "but": 3, + "is": 3, + "not": 3, + "readable": 3, + "Error": 3, + "copying": 3, + "from": 3, + "<\">": 8, + "ttSenders": 2, + "cEmailAddress": 8, + "n": 13, + "ttToRecipients": 1, + "Reply": 3, + "ttReplyToRecipients": 1, + "Cc": 2, + "ttCCRecipients": 1, + "Bcc": 2, + "ttBCCRecipients": 1, + "Return": 1, + "Receipt": 1, + "ttDeliveryReceiptRecipients": 1, + "Disposition": 3, + "Notification": 1, + "ttReadReceiptRecipients": 1, + "Subject": 2, + "Importance": 3, + "H": 1, + "High": 1, + "L": 1, + "Low": 1, + "Sensitivity": 2, + "Priority": 2, + "Date": 4, + "By": 1, + "Expiry": 2, + "Mime": 1, + "Version": 1, + "Content": 10, + "Type": 4, + "multipart/mixed": 1, + ";": 5, + "boundary": 1, + "text/plain": 2, + "charset": 2, + "Transfer": 4, + "Encoding": 4, + "base64": 2, + "bit": 2, + "application/octet": 1, + "stream": 1, + "attachment": 2, + "filename": 2, + "ttAttachments.cFileName": 2, + "cNewLine.": 1, + "lcReturnData.": 1, + "send": 1, + "objSendEmailAlgorithm": 1, + "sendEmail": 2, + "THIS": 1, + "MESSAGE": 2, + "INTERFACE": 1, + "email.SendEmailAlgorithm": 1, + "ipobjEmail": 1, + "INTERFACE.": 1, + "PARAMETER": 3, + "objSendEmailAlg": 2, + "email.SendEmailSocket": 1, + "vbuffer": 9, + "vstatus": 1, + "LOGICAL": 1, + "vState": 2, + "vstate": 1, + "FUNCTION": 1, + "getHostname": 1, + "RETURNS": 1, + "cHostname": 1, + "THROUGH": 1, + "hostname": 1, + "ECHO.": 1, + "IMPORT": 1, + "UNFORMATTED": 1, + "cHostname.": 2, + "CLOSE.": 1, + "FUNCTION.": 1, + "PROCEDURE": 2, + "newState": 2, + "INTEGER.": 1, + "pstring": 4, + "CHARACTER.": 1, + "newState.": 1, + "IF": 2, + "THEN": 2, + "RETURN.": 1, + "PUT": 1, + "pstring.": 1, + "SELF": 4, + "WRITE": 1, + "PROCEDURE.": 2, + "ReadSocketResponse": 1, + "vlength": 5, + "str": 3, + "v": 1, + "GET": 3, + "BYTES": 2, + "AVAILABLE": 2, + "VIEW": 1, + "ALERT": 1, + "BOX.": 1, + "READ": 1, + "handleResponse": 1 + }, + "Handlebars": { + "
": 5, + "class=": 5, + "

": 3, + "{": 16, + "title": 1, + "}": 16, + "

": 3, + "body": 3, + "
": 5, + "By": 2, + "fullName": 2, + "author": 2, + "Comments": 1, + "#each": 1, + "comments": 1, + "

": 1, + "

": 1, + "/each": 1 + }, + "VHDL": { + "-": 2, + "VHDL": 1, + "example": 1, + "file": 1, + "library": 1, + "ieee": 1, + ";": 7, + "use": 1, + "ieee.std_logic_1164.all": 1, + "entity": 2, + "inverter": 2, + "is": 2, + "port": 1, + "(": 1, + "a": 2, + "in": 1, + "std_logic": 2, + "b": 2, + "out": 1, + ")": 1, + "end": 2, + "architecture": 2, + "rtl": 1, + "of": 1, "begin": 1, - "setDisableActions": 1, - "_preLayoutCells": 2, - "munge": 2, - "contentOffset": 2, - "_layoutSectionHeaders": 2, - "_tableFlags.derepeaterEnabled": 1, - "commit": 1, - "selected": 2, - "overlapped": 1, - "r.size.height": 4, - "headerFrame.size.height": 1, - "r.origin.y": 1, - "v.size.height": 2, - "scrollRectToVisible": 2, - "sec": 3, - "_makeRowAtIndexPathFirstResponder": 2, - "responder": 2, - "made": 1, - "acceptsFirstResponder": 1, - "self.nsWindow": 3, - "makeFirstResponderIfNotAlreadyInResponderChain": 1, - "futureMakeFirstResponderRequestToken": 1, - "*oldIndexPath": 1, - "oldIndexPath": 2, - "setSelected": 2, - "setNeedsDisplay": 2, - "selection": 3, - "actually": 2, - "NSResponder": 1, - "*firstResponder": 1, - "firstResponder": 3, - "indexPathForFirstVisibleRow": 2, - "*firstIndexPath": 1, - "firstIndexPath": 4, - "indexPathForLastVisibleRow": 2, - "*lastIndexPath": 5, - "lastIndexPath": 8, - "performKeyAction": 2, - "repeative": 1, - "press": 1, - "noCurrentSelection": 2, - "isARepeat": 1, - "TUITableViewCalculateNextIndexPathBlock": 3, - "selectValidIndexPath": 3, - "*startForNoSelection": 2, - "calculateNextIndexPath": 4, - "foundValidNextRow": 4, - "*newIndexPath": 1, - "newIndexPath": 6, - "startForNoSelection": 1, - "_delegate": 2, - "self.animateSelectionChanges": 1, - "charactersIgnoringModifiers": 1, - "characterAtIndex": 1, - "NSUpArrowFunctionKey": 1, - "lastIndexPath.section": 2, - "lastIndexPath.row": 2, - "rowsInSection": 7, - "NSDownArrowFunctionKey": 1, - "_tableFlags.maintainContentOffsetAfterReload": 2, - "setMaintainContentOffsetAfterReload": 1, - "newValue": 2, - "indexPathWithIndexes": 1, - "indexAtPosition": 2 + "<": 1, + "not": 1 }, "Objective-C++": { "#include": 26, @@ -48974,13066 +45744,6551 @@ "text": 1, "self.on": 1 }, - "OCaml": { - "{": 11, - "shared": 1, - "open": 4, - "Eliom_content": 1, - "Html5.D": 1, - "Eliom_parameter": 1, - "}": 13, - "server": 2, - "module": 5, - "Example": 1, - "Eliom_registration.App": 1, - "(": 21, - "struct": 5, - "let": 13, - "application_name": 1, - "end": 5, - ")": 23, - "main": 2, - "Eliom_service.service": 1, - "path": 1, - "[": 13, - "]": 13, - "get_params": 1, - "unit": 5, - "client": 1, - "hello_popup": 2, - "Dom_html.window##alert": 1, - "Js.string": 1, - "_": 2, - "Example.register": 1, - "service": 1, - "fun": 9, - "-": 22, - "Lwt.return": 1, - "html": 1, - "head": 1, - "title": 1, - "pcdata": 4, - "body": 1, - "h1": 1, - ";": 14, - "p": 1, - "h2": 1, - "a": 4, - "a_onclick": 1, - "type": 2, - "Ops": 2, - "@": 6, - "f": 10, - "k": 21, - "|": 15, - "x": 14, - "List": 1, - "rec": 3, - "map": 3, - "l": 8, - "match": 4, - "with": 4, - "hd": 6, - "tl": 6, - "fold": 2, - "acc": 5, - "Option": 1, - "opt": 2, - "None": 5, - "Some": 5, - "Lazy": 1, - "option": 1, - "mutable": 1, - "waiters": 5, - "make": 1, - "push": 4, - "cps": 7, - "value": 3, - "force": 1, - "l.value": 2, - "when": 1, - "l.waiters": 5, - "<->": 3, - "function": 1, - "Base.List.iter": 1, - "l.push": 1, - "<": 1, - "get_state": 1, - "lazy_from_val": 1 - }, - "Omgrofl": { - "lol": 14, - "iz": 11, - "wtf": 1, - "liek": 1, - "lmao": 1, - "brb": 1, - "w00t": 1, - "Hello": 1, - "World": 1, - "rofl": 13, - "lool": 5, - "loool": 6, - "stfu": 1 - }, - "Opa": { - "server": 1, - "Server.one_page_server": 1, - "(": 4, - "-": 1, - "

": 2, - "Hello": 2, - "world": 2, - "

": 2, - ")": 4, - "Server.start": 1, - "Server.http": 1, - "{": 2, - "page": 1, - "function": 1, - "}": 2, - "title": 1 - }, - "OpenCL": { - "double": 3, - "run_fftw": 1, - "(": 18, - "int": 3, - "n": 4, - "const": 4, - "float": 3, - "*": 5, - "x": 5, - "y": 4, - ")": 18, - "{": 4, - "fftwf_plan": 1, - "p1": 3, - "fftwf_plan_dft_1d": 1, - "fftwf_complex": 2, - "FFTW_FORWARD": 1, - "FFTW_ESTIMATE": 1, - ";": 12, - "nops": 3, - "t": 4, - "cl": 2, - "realTime": 2, - "for": 1, - "op": 3, - "<": 1, - "+": 4, - "fftwf_execute": 1, - "}": 4, - "-": 1, - "/": 1, - "fftwf_destroy_plan": 1, - "return": 1, - "typedef": 1, - "foo_t": 3, - "#ifndef": 1, - "ZERO": 3, - "#define": 2, - "#endif": 1, - "FOO": 1, - "__kernel": 1, - "void": 1, - "foo": 1, - "__global": 1, - "__local": 1, - "uint": 1, - "barrier": 1, - "CLK_LOCAL_MEM_FENCE": 1, - "if": 1, - "*x": 1 - }, - "OpenEdge ABL": { - "USING": 3, - "Progress.Lang.*.": 3, - "CLASS": 2, - "email.Email": 2, - "USE": 2, - "-": 73, - "WIDGET": 2, - "POOL": 2, - "&": 3, - "SCOPED": 1, - "DEFINE": 16, - "QUOTES": 1, - "@#": 1, - "%": 2, - "*": 2, - "+": 21, - "._MIME_BOUNDARY_.": 1, - "#@": 1, - "WIN": 1, - "From": 4, - "To": 8, - "CC": 2, - "BCC": 2, - "Personal": 1, - "Private": 1, - "Company": 2, - "confidential": 2, - "normal": 1, - "urgent": 2, - "non": 1, - "Cannot": 3, - "locate": 3, - "file": 6, - "in": 3, - "the": 3, - "filesystem": 3, - "R": 3, - "File": 3, - "exists": 3, - "but": 3, - "is": 3, - "not": 3, - "readable": 3, - "Error": 3, - "copying": 3, - "from": 3, - "<\">": 8, - "ttSenders": 2, - "cEmailAddress": 8, - "n": 13, - "ttToRecipients": 1, - "Reply": 3, - "ttReplyToRecipients": 1, - "Cc": 2, - "ttCCRecipients": 1, - "Bcc": 2, - "ttBCCRecipients": 1, - "Return": 1, - "Receipt": 1, - "ttDeliveryReceiptRecipients": 1, - "Disposition": 3, - "Notification": 1, - "ttReadReceiptRecipients": 1, - "Subject": 2, - "Importance": 3, - "H": 1, - "High": 1, - "L": 1, - "Low": 1, - "Sensitivity": 2, - "Priority": 2, - "Date": 4, - "By": 1, - "Expiry": 2, - "Mime": 1, - "Version": 1, - "Content": 10, - "Type": 4, - "multipart/mixed": 1, - ";": 5, - "boundary": 1, - "text/plain": 2, - "charset": 2, - "Transfer": 4, - "Encoding": 4, - "base64": 2, - "bit": 2, - "application/octet": 1, - "stream": 1, - "attachment": 2, - "filename": 2, - "ttAttachments.cFileName": 2, - "cNewLine.": 1, - "RETURN": 7, - "lcReturnData.": 1, - "END": 12, - "METHOD.": 6, - "METHOD": 6, - "PUBLIC": 6, - "CHARACTER": 9, - "send": 1, - "(": 44, - ")": 44, - "objSendEmailAlgorithm": 1, - "sendEmail": 2, - "INPUT": 11, - "THIS": 1, - "OBJECT": 2, - ".": 14, - "CLASS.": 2, - "MESSAGE": 2, - "INTERFACE": 1, - "email.SendEmailAlgorithm": 1, - "ipobjEmail": 1, - "AS": 21, - "INTERFACE.": 1, - "PARAMETER": 3, - "objSendEmailAlg": 2, - "email.SendEmailSocket": 1, - "NO": 13, - "UNDO.": 12, - "VARIABLE": 12, - "vbuffer": 9, - "MEMPTR": 2, - "vstatus": 1, - "LOGICAL": 1, - "vState": 2, - "INTEGER": 6, - "ASSIGN": 2, - "vstate": 1, - "FUNCTION": 1, - "getHostname": 1, - "RETURNS": 1, - "cHostname": 1, - "THROUGH": 1, - "hostname": 1, - "ECHO.": 1, - "IMPORT": 1, - "UNFORMATTED": 1, - "cHostname.": 2, - "CLOSE.": 1, - "FUNCTION.": 1, - "PROCEDURE": 2, - "newState": 2, - "INTEGER.": 1, - "pstring": 4, - "CHARACTER.": 1, - "newState.": 1, - "IF": 2, - "THEN": 2, - "RETURN.": 1, - "SET": 5, - "SIZE": 5, - "LENGTH": 3, - "PUT": 1, - "STRING": 7, - "pstring.": 1, - "SELF": 4, - "WRITE": 1, - "PROCEDURE.": 2, - "ReadSocketResponse": 1, - "vlength": 5, - "str": 3, - "v": 1, - "GET": 3, - "BYTES": 2, - "AVAILABLE": 2, - "VIEW": 1, - "ALERT": 1, - "BOX.": 1, - "DO": 2, - "READ": 1, - "handleResponse": 1, - "END.": 2, - "email.Util": 1, - "FINAL": 1, - "PRIVATE": 1, - "STATIC": 5, - "cMonthMap": 2, - "EXTENT": 1, - "INITIAL": 1, - "[": 2, - "]": 2, - "ABLDateTimeToEmail": 3, - "ipdttzDateTime": 6, - "DATETIME": 3, - "TZ": 2, - "DAY": 1, - "MONTH": 1, - "YEAR": 1, - "TRUNCATE": 2, - "MTIME": 1, - "/": 2, - "ABLTimeZoneToString": 2, - "TIMEZONE": 1, - "ipdtDateTime": 2, - "ipiTimeZone": 3, - "ABSOLUTE": 1, - "MODULO": 1, - "LONGCHAR": 4, - "ConvertDataToBase64": 1, - "iplcNonEncodedData": 2, - "lcPreBase64Data": 4, - "lcPostBase64Data": 3, - "mptrPostBase64Data": 3, - "i": 3, - "COPY": 1, - "LOB": 1, - "FROM": 1, - "TO": 2, - "mptrPostBase64Data.": 1, - "BASE64": 1, - "ENCODE": 1, - "BY": 1, - "SUBSTRING": 1, - "CHR": 2, - "lcPostBase64Data.": 1 - }, - "Org": { - "#": 13, - "+": 13, - "OPTIONS": 1, - "H": 1, - "num": 1, - "nil": 4, - "toc": 2, - "n": 1, - "@": 1, - "t": 10, - "|": 4, - "-": 30, - "f": 2, - "*": 3, - "TeX": 1, - "LaTeX": 1, - "skip": 1, - "d": 2, - "(": 11, - "HIDE": 1, - ")": 11, - "tags": 2, - "not": 1, - "in": 2, - "STARTUP": 1, - "align": 1, - "fold": 1, - "nodlcheck": 1, - "hidestars": 1, - "oddeven": 1, - "lognotestate": 1, - "SEQ_TODO": 1, - "TODO": 1, - "INPROGRESS": 1, - "i": 1, - "WAITING": 1, - "w@": 1, - "DONE": 1, - "CANCELED": 1, - "c@": 1, - "TAGS": 1, - "Write": 1, - "w": 1, - "Update": 1, - "u": 1, - "Fix": 1, - "Check": 1, - "c": 1, - "TITLE": 1, - "org": 10, - "ruby": 6, - "AUTHOR": 1, - "Brian": 1, - "Dewey": 1, - "EMAIL": 1, - "bdewey@gmail.com": 1, - "LANGUAGE": 1, - "en": 1, - "PRIORITIES": 1, - "A": 1, - "C": 1, - "B": 1, - "CATEGORY": 1, - "worg": 1, - "{": 1, - "Back": 1, - "to": 8, - "Worg": 1, - "rubygems": 2, - "ve": 1, - "already": 1, - "created": 1, - "a": 4, - "site.": 1, - "Make": 1, - "sure": 1, - "you": 2, - "have": 1, - "installed": 1, - "sudo": 1, - "gem": 1, - "install": 1, - ".": 1, - "You": 1, - "need": 1, - "register": 1, - "new": 2, - "Webby": 3, - "filter": 3, - "handle": 1, - "mode": 2, - "content.": 2, - "makes": 1, - "this": 2, - "easy.": 1, - "In": 1, - "the": 6, - "lib/": 1, - "folder": 1, - "of": 2, - "your": 2, - "site": 1, - "create": 1, - "file": 1, - "orgmode.rb": 1, - "BEGIN_EXAMPLE": 2, - "require": 1, - "Filters.register": 1, - "do": 2, - "input": 3, - "Orgmode": 2, - "Parser.new": 1, - ".to_html": 1, - "end": 1, - "END_EXAMPLE": 1, - "This": 2, - "code": 1, - "creates": 1, - "that": 1, - "will": 1, - "use": 1, - "parser": 1, - "translate": 1, - "into": 1, - "HTML.": 1, - "Create": 1, - "For": 1, - "example": 1, - "title": 2, - "Parser": 1, - "created_at": 1, - "status": 2, - "Under": 1, - "development": 1, - "erb": 1, - "orgmode": 3, - "<%=>": 2, - "page": 2, - "Status": 1, - "Description": 1, - "Helpful": 1, - "Ruby": 1, - "routines": 1, - "for": 3, - "parsing": 1, - "files.": 1, - "The": 3, - "most": 1, - "significant": 1, - "thing": 2, - "library": 1, - "does": 1, - "today": 1, - "is": 5, - "convert": 1, - "files": 1, - "textile.": 1, - "Currently": 1, - "cannot": 1, - "much": 1, - "customize": 1, - "conversion.": 1, - "supplied": 1, - "textile": 1, - "conversion": 1, - "optimized": 1, - "extracting": 1, - "from": 1, - "orgfile": 1, - "as": 1, - "opposed": 1, - "History": 1, - "**": 1, - "Version": 1, - "first": 1, - "output": 2, - "HTML": 2, - "gets": 1, - "class": 1, - "now": 1, - "indented": 1, - "Proper": 1, - "support": 1, - "multi": 1, - "paragraph": 2, - "list": 1, - "items.": 1, - "See": 1, - "part": 1, - "last": 1, - "bullet.": 1, - "Fixed": 1, - "bugs": 1, - "wouldn": 1, - "s": 1, - "all": 1, - "there": 1, - "it": 1 - }, - "Ox": { - "#include": 2, - "Kapital": 4, - "(": 119, - "L": 2, - "const": 4, - "N": 5, - "entrant": 8, - "exit": 2, - "KP": 14, - ")": 119, - "{": 22, - "StateVariable": 1, - ";": 91, - "this.entrant": 1, - "this.exit": 1, - "this.KP": 1, - "actual": 2, - "Kbar*vals/": 1, - "-": 31, - "upper": 3, - "log": 2, - ".Inf": 2, - "}": 22, - "Transit": 1, - "FeasA": 2, - "decl": 3, - "ent": 5, - "CV": 7, - "stayout": 3, - "[": 25, - "]": 25, - "exit.pos": 1, - "tprob": 5, - "sigu": 2, - "SigU": 2, - "if": 5, - "v": 2, - "&&": 1, - "return": 10, - "<0>": 1, - "ones": 1, - "probn": 2, - "Kbe": 2, - "/sigu": 1, - "Kb0": 2, - "+": 14, - "Kb2": 2, - "*upper": 1, - "/": 1, - "vals": 1, - "tprob.*": 1, - "zeros": 4, - ".*stayout": 1, - "FirmEntry": 6, - "Run": 1, - "Initialize": 3, - "GenerateSample": 2, - "BDP": 2, - "BayesianDP": 1, - "Rust": 1, - "Reachable": 2, - "sige": 2, - "new": 19, - "StDeviations": 1, - "<0.3,0.3>": 1, - "LaggedAction": 1, - "d": 2, - "array": 1, - "Kparams": 1, - "Positive": 4, - "Free": 1, - "Kb1": 1, - "Determined": 1, - "EndogenousStates": 1, - "K": 3, - "KN": 1, - "SetDelta": 1, - "Probability": 1, - "kcoef": 3, - "ecost": 3, - "Negative": 1, - "CreateSpaces": 1, - "Volume": 3, - "LOUD": 1, - "EM": 4, - "ValueIteration": 1, - "//": 17, - "Solve": 1, - "data": 4, - "DataSet": 1, - "Simulate": 1, - "DataN": 1, - "DataT": 1, - "FALSE": 1, - "Print": 1, - "ImaiJainChing": 1, - "delta": 1, - "*CV": 2, - "Utility": 1, - "u": 2, - "ent*CV": 1, - "*AV": 1, - "|": 1, - "ParallelObjective": 1, - "obj": 18, - "DONOTUSECLIENT": 2, - "isclass": 1, - "obj.p2p": 2, - "oxwarning": 1, - "obj.L": 1, - "P2P": 2, - "ObjClient": 4, - "ObjServer": 7, - "this.obj": 2, - "Execute": 4, - "basetag": 2, - "STOP_TAG": 1, - "iml": 1, - "obj.NvfuncTerms": 2, - "Nparams": 6, - "obj.nstruct": 2, - "Loop": 2, - "nxtmsgsz": 2, - "//free": 1, - "param": 1, - "length": 1, - "is": 1, - "no": 2, - "greater": 1, - "than": 1, - "QUIET": 2, - "println": 2, - "ID": 2, - "Server": 1, - "Recv": 1, - "ANY_TAG": 1, - "//receive": 1, - "the": 1, - "ending": 1, - "parameter": 1, - "vector": 1, - "Encode": 3, - "Buffer": 8, - "//encode": 1, - "it.": 1, - "Decode": 1, - "obj.nfree": 1, - "obj.cur.V": 1, - "vfunc": 2, - "CstrServer": 3, - "SepServer": 3, - "Lagrangian": 1, - "rows": 1, - "obj.cur": 1, - "Vec": 1, - "obj.Kvar.v": 1, - "imod": 1, - "Tag": 1, - "obj.K": 1, - "TRUE": 1, - "obj.Kvar": 1, - "PDF": 1, - "*": 5, - "nldge": 1, - "ParticleLogLikeli": 1, - "it": 5, - "ip": 1, - "mss": 3, - "mbas": 1, - "ms": 8, - "my": 4, - "mx": 7, - "vw": 7, - "vwi": 4, - "dws": 3, - "mhi": 3, - "mhdet": 2, - "loglikeli": 4, - "mData": 4, - "vxm": 1, - "vxs": 1, - "mxm": 1, - "<": 4, - "mxsu": 1, - "mxsl": 1, - "time": 2, - "timeall": 1, - "timeran": 1, - "timelik": 1, - "timefun": 1, - "timeint": 1, - "timeres": 1, - "GetData": 1, - "m_asY": 1, - "sqrt": 1, - "*M_PI": 1, - "m_cY": 1, - "determinant": 2, - "m_mMSbE.": 2, - "covariance": 2, - "invert": 2, - "of": 2, - "measurement": 1, - "shocks": 1, - "m_vSss": 1, - "m_cPar": 4, - "m_cS": 1, - "start": 1, - "particles": 2, - "m_vXss": 1, - "m_cX": 1, - "steady": 1, - "state": 3, - "and": 1, - "policy": 2, - "init": 1, - "likelihood": 1, - "//timeall": 1, - "timer": 3, - "for": 2, - "sizer": 1, - "rann": 1, - "m_cSS": 1, - "m_mSSbE": 1, - "noise": 1, - "fg": 1, - "&": 2, - "transition": 1, - "prior": 1, - "as": 1, - "proposal": 1, - "m_oApprox.FastInterpolate": 1, - "interpolate": 1, - "fy": 1, - "m_cMS": 1, - "evaluate": 1, - "importance": 1, - "weights": 2, - "observation": 1, - "error": 1, - "exp": 2, - "outer": 1, - "/mhdet": 2, - "sumr": 1, - "my*mhi": 1, - ".*my": 1, - ".": 3, - ".NaN": 1, - "can": 1, - "happen": 1, - "extrem": 1, - "sumc": 1, - "or": 1, - "extremely": 1, - "wrong": 1, - "parameters": 1, - "dws/m_cPar": 1, - "loglikelihood": 1, - "contribution": 1, - "//timelik": 1, - "/100": 1, - "//time": 1, - "resample": 1, - "vw/dws": 1, - "selection": 1, - "step": 1, - "in": 1, - "c": 1, - "on": 1, - "normalized": 1 - }, - "Oxygene": { - "": 1, - "DefaultTargets=": 1, - "xmlns=": 1, - "": 3, - "": 1, - "Loops": 2, - "": 1, - "": 1, - "exe": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "False": 4, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "Properties": 1, - "App.ico": 1, - "": 1, - "": 1, - "Condition=": 3, - "Release": 2, - "": 1, - "": 1, - "{": 1, - "BD89C": 1, - "-": 4, - "B610": 1, - "CEE": 1, - "CAF": 1, - "C515D88E2C94": 1, - "}": 1, - "": 1, - "": 3, - "": 1, - "DEBUG": 1, - ";": 2, - "TRACE": 1, - "": 1, - "": 2, - ".": 2, - "bin": 2, - "Debug": 1, - "": 2, - "": 1, - "True": 3, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "Project=": 1, - "": 2, - "": 5, - "Include=": 12, - "": 5, - "(": 5, - "Framework": 5, - ")": 5, - "mscorlib.dll": 1, - "": 5, - "": 5, - "System.dll": 1, - "ProgramFiles": 1, - "Reference": 1, - "Assemblies": 1, - "Microsoft": 1, - "v3.5": 1, - "System.Core.dll": 1, - "": 1, - "": 1, - "System.Data.dll": 1, - "System.Xml.dll": 1, - "": 2, - "": 4, - "": 1, - "": 1, - "": 2, - "ResXFileCodeGenerator": 1, - "": 2, - "": 1, - "": 1, - "SettingsSingleFileGenerator": 1, - "": 1, - "": 1 - }, - "Pan": { - "object": 1, - "template": 1, - "pantest": 1, - ";": 32, - "xFF": 1, - "e": 2, - "-": 2, - "E10": 1, - "variable": 4, - "TEST": 2, - "to_string": 1, - "(": 8, - ")": 8, - "+": 2, - "value": 1, - "undef": 1, - "null": 1, - "error": 1, - "include": 1, - "{": 5, - "}": 5, - "pkg_repl": 2, - "PKG_ARCH_DEFAULT": 1, - "function": 1, - "show_things_view_for_stuff": 1, - "thing": 2, - "ARGV": 1, - "[": 2, - "]": 2, - "foreach": 1, - "i": 1, - "mything": 2, - "STUFF": 1, - "if": 1, - "return": 2, - "true": 2, - "else": 1, - "SELF": 1, - "false": 2, - "HERE": 1, - "<<": 1, - "EOF": 2, - "This": 1, - "example": 1, - "demonstrates": 1, - "an": 1, - "in": 1, - "line": 1, - "heredoc": 1, - "style": 1, - "config": 1, - "file": 1, - "main": 1, - "awesome": 1, - "small": 1, - "#This": 1, - "should": 1, - "be": 1, - "highlighted": 1, - "normally": 1, - "again.": 1 - }, - "Parrot Assembly": { - "SHEBANG#!parrot": 1, - ".pcc_sub": 1, - "main": 2, - "say": 1, - "end": 1 - }, - "Parrot Internal Representation": { - "SHEBANG#!parrot": 1, - ".sub": 1, - "main": 1, - "say": 1, - ".end": 1 - }, - "Pascal": { - "program": 1, - "gmail": 1, - ";": 6, - "uses": 1, - "Forms": 1, - "Unit2": 1, - "in": 1, - "{": 2, - "Form2": 2, - "}": 2, - "R": 1, - "*.res": 1, - "begin": 1, - "Application.Initialize": 1, - "Application.MainFormOnTaskbar": 1, - "True": 1, - "Application.CreateForm": 1, - "(": 1, - "TForm2": 1, - ")": 1, - "Application.Run": 1, - "end.": 1 - }, - "PAWN": { - "//": 22, - "-": 1551, - "#include": 5, - "": 1, - "": 1, - "": 1, - "#pragma": 1, - "tabsize": 1, - "#define": 5, - "COLOR_WHITE": 2, - "xFFFFFFFF": 2, - "COLOR_NORMAL_PLAYER": 3, - "xFFBB7777": 1, - "CITY_LOS_SANTOS": 7, - "CITY_SAN_FIERRO": 4, - "CITY_LAS_VENTURAS": 6, - "new": 13, - "total_vehicles_from_files": 19, - ";": 257, - "gPlayerCitySelection": 21, - "[": 56, - "MAX_PLAYERS": 3, - "]": 56, - "gPlayerHasCitySelected": 6, - "gPlayerLastCitySelectionTick": 5, - "Text": 5, - "txtClassSelHelper": 14, - "txtLosSantos": 7, - "txtSanFierro": 7, - "txtLasVenturas": 7, - "thisanimid": 1, - "lastanimid": 1, - "main": 1, - "(": 273, - ")": 273, - "{": 39, - "print": 3, - "}": 39, - "public": 6, - "OnPlayerConnect": 1, - "playerid": 132, - "GameTextForPlayer": 1, - "SendClientMessage": 1, - "GetTickCount": 4, - "//SetPlayerColor": 2, - "//Kick": 1, - "return": 17, - "OnPlayerSpawn": 1, - "if": 28, - "IsPlayerNPC": 3, - "randSpawn": 16, - "SetPlayerInterior": 7, - "TogglePlayerClock": 2, - "ResetPlayerMoney": 3, - "GivePlayerMoney": 2, - "random": 3, - "sizeof": 3, - "gRandomSpawns_LosSantos": 5, - "SetPlayerPos": 6, - "SetPlayerFacingAngle": 6, - "else": 9, - "gRandomSpawns_SanFierro": 5, - "gRandomSpawns_LasVenturas": 5, - "SetPlayerSkillLevel": 11, - "WEAPONSKILL_PISTOL": 1, - "WEAPONSKILL_PISTOL_SILENCED": 1, - "WEAPONSKILL_DESERT_EAGLE": 1, - "WEAPONSKILL_SHOTGUN": 1, - "WEAPONSKILL_SAWNOFF_SHOTGUN": 1, - "WEAPONSKILL_SPAS12_SHOTGUN": 1, - "WEAPONSKILL_MICRO_UZI": 1, - "WEAPONSKILL_MP5": 1, - "WEAPONSKILL_AK47": 1, - "WEAPONSKILL_M4": 1, - "WEAPONSKILL_SNIPERRIFLE": 1, - "GivePlayerWeapon": 1, - "WEAPON_COLT45": 1, - "//GivePlayerWeapon": 1, - "WEAPON_MP5": 1, - "OnPlayerDeath": 1, - "killerid": 3, - "reason": 1, - "playercash": 4, - "INVALID_PLAYER_ID": 1, - "GetPlayerMoney": 1, - "ClassSel_SetupCharSelection": 2, - "SetPlayerCameraPos": 6, - "SetPlayerCameraLookAt": 6, - "ClassSel_InitCityNameText": 4, - "txtInit": 7, - "TextDrawUseBox": 2, - "TextDrawLetterSize": 2, - "TextDrawFont": 2, - "TextDrawSetShadow": 2, - "TextDrawSetOutline": 2, - "TextDrawColor": 2, - "xEEEEEEFF": 1, - "TextDrawBackgroundColor": 2, - "FF": 2, - "ClassSel_InitTextDraws": 2, - "TextDrawCreate": 4, - "TextDrawBoxColor": 1, - "BB": 1, - "TextDrawTextSize": 1, - "ClassSel_SetupSelectedCity": 3, - "TextDrawShowForPlayer": 4, - "TextDrawHideForPlayer": 10, - "ClassSel_SwitchToNextCity": 3, - "+": 19, - "PlayerPlaySound": 2, - "ClassSel_SwitchToPreviousCity": 2, - "<": 3, - "ClassSel_HandleCitySelection": 2, - "Keys": 3, - "ud": 2, - "lr": 4, - "GetPlayerKeys": 1, - "&": 1, - "KEY_FIRE": 1, - "TogglePlayerSpectating": 2, - "OnPlayerRequestClass": 1, - "classid": 1, - "GetPlayerState": 2, - "PLAYER_STATE_SPECTATING": 2, - "OnGameModeInit": 1, - "SetGameModeText": 1, - "ShowPlayerMarkers": 1, - "PLAYER_MARKERS_MODE_GLOBAL": 1, - "ShowNameTags": 1, - "SetNameTagDrawDistance": 1, - "EnableStuntBonusForAll": 1, - "DisableInteriorEnterExits": 1, - "SetWeather": 1, - "SetWorldTime": 1, - "//UsePlayerPedAnims": 1, - "//ManualVehicleEngineAndLights": 1, - "//LimitGlobalChatRadius": 1, - "AddPlayerClass": 69, - "//AddPlayerClass": 1, - "LoadStaticVehiclesFromFile": 17, - "printf": 1, - "OnPlayerUpdate": 1, - "IsPlayerConnected": 1, - "&&": 2, - "GetPlayerInterior": 1, - "GetPlayerWeapon": 2, - "SetPlayerArmedWeapon": 1, - "fists": 1, - "no": 1, - "syncing": 1, - "until": 1, - "they": 1, - "change": 1, - "their": 1, - "weapon": 1, - "WEAPON_MINIGUN": 1, - "Kick": 1 - }, - "Perl": { - "package": 14, - "App": 131, - "Ack": 136, - ";": 1193, - "use": 83, - "warnings": 18, - "strict": 18, - "File": 54, - "Next": 27, - "Plugin": 2, - "Basic": 10, - "head1": 36, - "NAME": 6, - "-": 868, - "A": 2, - "container": 1, - "for": 83, - "functions": 2, - "the": 143, - "ack": 38, - "program": 6, - "VERSION": 15, - "Version": 1, - "cut": 28, - "our": 34, - "COPYRIGHT": 7, - "BEGIN": 7, - "{": 1121, - "}": 1134, - "fh": 28, - "*STDOUT": 6, - "%": 78, - "types": 26, - "type_wanted": 20, - "mappings": 29, - "ignore_dirs": 12, - "input_from_pipe": 8, - "output_to_pipe": 12, - "dir_sep_chars": 10, - "is_cygwin": 6, - "is_windows": 12, - "Spec": 13, - "(": 925, - ")": 923, - "Glob": 4, - "Getopt": 6, - "Long": 6, - "_MTN": 2, - "blib": 2, - "CVS": 5, - "RCS": 2, - "SCCS": 2, - "_darcs": 2, - "_sgbak": 2, - "_build": 2, - "actionscript": 2, - "[": 159, - "qw": 35, - "as": 37, - "mxml": 2, - "]": 155, - "ada": 4, - "adb": 2, - "ads": 2, - "asm": 4, - "s": 35, - "batch": 2, - "bat": 2, - "cmd": 2, - "binary": 3, - "q": 5, - "Binary": 2, - "files": 42, - "defined": 54, - "by": 16, - "Perl": 9, - "T": 2, - "op": 2, - "default": 19, - "off": 4, - "tt": 4, - "tt2": 2, - "ttml": 2, - "vb": 4, - "bas": 2, - "cls": 2, - "frm": 2, - "ctl": 2, - "resx": 2, - "verilog": 2, - "v": 19, - "vh": 2, - "sv": 2, - "vhdl": 4, - "vhd": 2, - "vim": 4, - "yaml": 4, - "yml": 2, - "xml": 6, - "dtd": 2, - "xsl": 2, - "xslt": 2, - "ent": 2, - "while": 31, - "my": 404, - "type": 69, - "exts": 6, - "each": 14, - "if": 276, - "ref": 33, - "ext": 14, - "@": 38, - "push": 30, - "_": 101, - "mk": 2, - "mak": 2, - "not": 54, - "t": 18, - "p": 9, - "STDIN": 2, - "O": 4, - "eq": 31, - "/MSWin32/": 2, - "quotemeta": 5, - "catfile": 4, - "SYNOPSIS": 6, - "If": 15, - "you": 44, - "want": 7, - "to": 95, - "know": 4, - "about": 4, - "F": 24, - "": 13, - "see": 5, - "file": 49, - "itself.": 3, - "No": 4, - "user": 4, - "serviceable": 1, - "parts": 1, - "inside.": 1, - "is": 69, - "all": 23, - "that": 33, - "should": 6, - "this.": 1, - "FUNCTIONS": 1, - "head2": 34, - "read_ackrc": 4, - "Reads": 1, - "contents": 2, - "of": 64, - ".ackrc": 1, - "and": 85, - "returns": 4, - "arguments.": 1, - "sub": 225, - "@files": 12, - "ENV": 40, - "ACKRC": 2, - "@dirs": 4, - "HOME": 4, - "USERPROFILE": 2, - "dir": 27, - "grep": 17, - "bsd_glob": 4, - "GLOB_TILDE": 2, - "filename": 68, - "&&": 83, - "e": 20, - "open": 7, - "or": 49, - "die": 38, - "@lines": 21, - "/./": 2, - "/": 69, - "s*#/": 2, - "<$fh>": 4, - "chomp": 3, - "close": 19, - "s/": 22, - "+": 120, - "//": 9, - "return": 157, - "get_command_line_options": 4, - "Gets": 3, - "command": 14, - "line": 20, - "arguments": 2, - "does": 10, - "specific": 2, - "tweaking.": 1, - "opt": 291, - "pager": 19, - "ACK_PAGER_COLOR": 7, - "||": 49, - "ACK_PAGER": 5, - "getopt_specs": 6, - "m": 17, - "after_context": 16, - "before_context": 18, - "shift": 165, - "val": 26, - "break": 14, - "c": 5, - "count": 23, - "color": 38, - "ACK_COLOR_MATCH": 5, - "ACK_COLOR_FILENAME": 5, - "ACK_COLOR_LINENO": 4, - "column": 4, - "#": 99, - "ignore": 7, - "this": 22, - "option": 7, - "it": 28, - "handled": 2, - "beforehand": 2, - "f": 25, - "flush": 8, - "follow": 7, - "G": 11, - "heading": 18, - "h": 6, - "H": 6, - "i": 26, - "invert_file_match": 8, - "lines": 19, - "l": 17, - "regex": 28, - "n": 19, - "o": 17, - "output": 36, - "undef": 17, - "passthru": 9, - "print0": 7, - "Q": 7, - "show_types": 4, - "smart_case": 3, - "sort_files": 11, - "u": 10, - "w": 4, - "remove_dir_sep": 7, - "delete": 10, - "print_version_statement": 2, - "exit": 16, - "show_help": 3, - "@_": 43, - "show_help_types": 2, - "require": 12, - "Pod": 4, - "Usage": 4, - "pod2usage": 2, - "verbose": 2, - "exitval": 2, - "dummy": 2, - "wanted": 4, - "no//": 2, - "must": 5, - "be": 36, - "later": 2, - "exists": 19, - "else": 53, - "qq": 18, - "Unknown": 2, - "unshift": 4, - "@ARGV": 12, - "split": 13, - "ACK_OPTIONS": 5, - "def_types_from_ARGV": 5, - "filetypes_supported": 5, - "parser": 12, - "Parser": 4, - "new": 55, - "configure": 4, - "getoptions": 4, - "to_screen": 10, - "defaults": 16, - "eval": 8, - "Win32": 9, - "Console": 2, - "ANSI": 3, - "key": 20, - "value": 12, - "<": 15, - "join": 5, - "map": 10, - "@ret": 10, - "from": 19, - "warn": 22, - "..": 7, - "uniq": 4, - "@uniq": 2, - "sort": 8, - "a": 85, - "<=>": 2, - "b": 6, - "keys": 15, - "numerical": 2, - "occurs": 2, - "only": 11, - "once": 4, - "Go": 1, - "through": 6, - "look": 2, - "I": 68, - "<--type-set>": 1, - "foo=": 1, - "bar": 3, - "<--type-add>": 1, - "xml=": 1, - ".": 125, - "Remove": 1, - "them": 5, - "add": 9, - "supported": 1, - "filetypes": 8, - "i.e.": 2, - "into": 6, - "etc.": 3, - "@typedef": 8, - "td": 6, - "set": 12, - "Builtin": 4, - "cannot": 4, - "changed.": 4, - "ne": 9, - "delete_type": 5, - "Type": 2, - "exist": 4, - "creating": 3, - "with": 26, - "...": 2, - "unless": 39, - "@exts": 8, - ".//": 2, - "Cannot": 4, - "append": 2, - "Removes": 1, - "internal": 1, - "structures": 1, - "containing": 5, - "information": 2, - "type_wanted.": 1, - "Internal": 2, - "error": 4, - "builtin": 2, - "ignoredir_filter": 5, - "Standard": 1, - "filter": 12, - "pass": 1, - "L": 34, - "": 1, - "descend_filter.": 1, - "It": 3, - "true": 3, - "directory": 8, - "any": 4, - "ones": 1, - "we": 7, - "ignore.": 1, - "path": 28, - "This": 27, - "removes": 1, - "trailing": 1, - "separator": 4, - "there": 6, - "one": 9, - "its": 2, - "argument": 1, - "Returns": 10, - "list": 10, - "<$filename>": 1, - "could": 2, - "be.": 1, - "For": 5, - "example": 5, - "": 1, - "The": 22, - "filetype": 1, - "will": 9, - "C": 56, - "": 1, - "can": 30, - "skipped": 2, - "something": 3, - "avoid": 1, - "searching": 6, - "even": 4, - "under": 5, - "a.": 1, - "constant": 2, - "TEXT": 16, - "basename": 9, - ".*": 2, - "is_searchable": 8, - "lc_basename": 8, - "lc": 5, - "r": 14, - "B": 76, - "header": 17, - "SHEBANG#!#!": 2, - "ruby": 3, - "|": 28, - "lua": 2, - "erl": 2, - "hp": 2, - "ython": 2, - "d": 9, - "d.": 2, - "*": 8, - "b/": 4, - "ba": 2, - "k": 6, - "z": 2, - "sh": 2, - "/i": 2, - "search": 11, - "false": 1, - "regular": 3, - "expression": 9, - "found.": 4, - "www": 2, - "U": 2, - "y": 8, - "tr/": 2, - "x": 7, - "w/": 3, - "nOo_/": 2, - "_thpppt": 3, - "_get_thpppt": 3, - "print": 35, - "_bar": 3, - "<<": 10, - "&": 22, - "*I": 2, - "g": 7, - "#.": 6, - ".#": 4, - "I#": 2, - "#I": 6, - "#7": 4, - "results.": 2, - "on": 25, - "when": 18, - "used": 12, - "interactively": 6, - "no": 22, - "Print": 6, - "between": 4, - "results": 8, - "different": 2, - "files.": 6, - "group": 2, - "Same": 8, - "nogroup": 2, - "noheading": 2, - "nobreak": 2, - "Highlight": 2, - "matching": 15, - "text": 6, - "redirected": 2, - "Windows": 4, - "colour": 2, - "COLOR": 6, - "match": 21, - "lineno": 2, - "Set": 3, - "filenames": 7, - "matches": 7, - "numbers.": 2, - "Flush": 2, - "immediately": 2, - "non": 2, - "goes": 2, - "pipe": 4, - "finding": 2, - "Only": 7, - "found": 11, - "without": 3, - "searching.": 2, - "PATTERN": 8, - "specified.": 4, - "REGEX": 2, - "but": 4, - "REGEX.": 2, - "Sort": 2, - "lexically.": 3, - "invert": 2, - "Print/search": 2, - "handle": 3, - "do": 12, - "g/": 2, - "G.": 2, - "show": 3, - "Show": 2, - "which": 7, - "has.": 2, - "inclusion/exclusion": 2, - "All": 4, - "searched": 5, - "Ignores": 2, - ".svn": 3, - "other": 5, - "ignored": 6, - "directories": 9, - "unrestricted": 2, - "name": 44, - "Add/Remove": 2, - "dirs": 2, - "R": 2, - "recurse": 2, - "Recurse": 3, - "subdirectories": 2, - "END_OF_HELP": 2, - "VMS": 2, - "vd": 2, - "Term": 6, - "ANSIColor": 8, - "black": 3, - "on_yellow": 3, - "bold": 5, - "green": 3, - "yellow": 3, - "printing": 2, - "qr/": 13, - "last_output_line": 6, - "any_output": 10, - "keep_context": 8, - "@before": 16, - "before_starts_at_line": 10, - "after": 18, - "number": 4, - "still": 4, - "res": 59, - "next_text": 8, - "has_lines": 4, - "scalar": 2, - "m/": 4, - "regex/": 9, - "next": 9, - "print_match_or_context": 13, - "elsif": 10, - "last": 17, - "max": 12, - "nmatches": 61, - "show_filename": 35, - "context_overall_output_count": 6, - "print_blank_line": 2, - "is_binary": 4, - "search_resource": 7, - "is_match": 7, - "starting_line_no": 1, - "match_start": 5, - "match_end": 3, - "Prints": 4, - "out": 2, - "context": 1, - "around": 5, - "match.": 3, - "opts": 2, - "array": 7, - "line_no": 12, - "show_column": 4, - "display_filename": 8, - "colored": 6, - "print_first_filename": 2, - "sep": 8, - "output_func": 8, - "print_separator": 2, - "print_filename": 2, - "display_line_no": 4, - "print_line_no": 2, - "regex/go": 2, - "regex/Term": 2, - "substr": 2, - "/eg": 2, - "z/": 2, - "K/": 2, - "z//": 2, - "print_column_no": 2, - "scope": 4, - "TOTAL_COUNT_SCOPE": 2, - "total_count": 10, - "get_total_count": 4, - "reset_total_count": 4, - "search_and_list": 8, - "Optimized": 1, - "version": 2, - "lines.": 3, - "ors": 11, - "record": 3, - "show_total": 6, - "print_count": 4, - "print_count0": 2, - "filetypes_supported_set": 9, - "True/False": 1, - "are": 25, - "print_files": 4, - "iter": 23, - "returned": 3, - "iterator": 3, - "<$regex>": 1, - "<$one>": 1, - "stop": 1, - "first.": 1, - "<$ors>": 1, - "<\"\\n\">": 1, - "defines": 2, - "what": 14, - "filename.": 1, - "print_files_with_matches": 4, - "where": 3, - "was": 2, - "repo": 18, - "Repository": 11, - "next_resource": 6, - "print_matches": 4, - "tarballs_work": 4, - ".tar": 2, - ".gz": 2, - "Tar": 4, - "XXX": 4, - "Error": 2, - "checking": 2, - "needs_line_scan": 14, - "reset": 5, - "filetype_setup": 4, - "Minor": 1, - "housekeeping": 1, - "before": 1, - "go": 1, - "expand_filenames": 7, - "reference": 8, - "expanded": 3, - "globs": 1, - "EXPAND_FILENAMES_SCOPE": 4, - "argv": 12, - "attr": 6, - "foreach": 4, - "pattern": 10, - "@results": 14, - "didn": 2, - "ve": 2, - "tried": 2, - "load": 2, - "GetAttributes": 2, - "end": 9, - "attributes": 4, - "got": 2, - "get_starting_points": 4, - "starting": 2, - "@what": 14, - "reslash": 4, - "Assume": 2, - "current": 5, - "start_point": 4, - "_match": 8, - "target": 6, - "invert_flag": 4, - "get_iterator": 4, - "Return": 2, - "starting_point": 10, - "g_regex": 4, - "file_filter": 12, - "g_regex/": 6, - "Maybe": 2, - "is_interesting": 4, - "descend_filter": 11, - "error_handler": 5, - "msg": 4, - "follow_symlinks": 6, - "set_up_pager": 3, - "Unable": 2, - "going": 1, - "pipe.": 1, - "exit_from_ack": 5, - "Exit": 1, - "application": 15, - "correct": 1, - "code.": 2, - "otherwise": 2, - "handed": 1, - "in": 36, - "argument.": 1, - "rc": 11, - "LICENSE": 3, - "Copyright": 2, - "Andy": 2, - "Lester.": 2, - "free": 4, - "software": 3, - "redistribute": 4, - "and/or": 4, - "modify": 4, - "terms": 4, - "Artistic": 2, - "License": 2, - "v2.0.": 2, - "End": 3, - "SHEBANG#!#! perl": 4, - "examples/benchmarks/fib.pl": 1, - "Fibonacci": 2, - "Benchmark": 1, - "DESCRIPTION": 4, - "Calculates": 1, - "Number": 1, - "": 1, - "unspecified": 1, - "fib": 4, - "N": 2, - "SEE": 4, - "ALSO": 4, - "": 1, - "SHEBANG#!perl": 5, - "MAIN": 1, - "main": 3, - "env_is_usable": 3, - "th": 1, - "pt": 1, - "env": 76, - "@keys": 2, - "ACK_/": 1, - "@ENV": 1, - "load_colors": 1, - "ACK_SWITCHES": 1, - "Unbuffer": 1, - "mode": 1, - "build_regex": 3, - "nargs": 2, - "Resource": 5, - "file_matching": 2, - "check_regex": 2, - "like": 13, - "finder": 1, - "options": 7, - "FILE...": 1, - "DIRECTORY...": 1, - "designed": 1, - "replacement": 1, - "uses": 2, - "": 5, - "searches": 1, - "named": 3, - "input": 9, - "FILEs": 1, - "standard": 1, - "given": 10, - "PATTERN.": 1, - "By": 2, - "prints": 2, - "also": 7, - "would": 5, - "actually": 1, - "let": 1, - "take": 5, - "advantage": 1, - ".wango": 1, - "won": 1, - "throw": 1, - "away": 1, - "because": 3, - "times": 2, - "symlinks": 1, - "than": 5, - "whatever": 1, - "were": 1, - "specified": 3, - "line.": 4, - "default.": 2, - "item": 44, - "": 11, - "paths": 3, - "included": 1, - "search.": 1, - "entire": 3, - "matched": 1, - "against": 1, - "shell": 4, - "glob.": 1, - "<-i>": 5, - "<-w>": 2, - "<-v>": 3, - "<-Q>": 4, - "apply": 3, - "relative": 1, - "convenience": 1, - "shortcut": 2, - "<-f>": 6, - "<--group>": 2, - "<--nogroup>": 2, - "groups": 1, - "with.": 1, - "interactively.": 1, - "result": 1, - "per": 1, - "grep.": 2, - "redirected.": 1, - "<-H>": 1, - "<--with-filename>": 1, - "<-h>": 1, - "<--no-filename>": 1, - "Suppress": 1, - "prefixing": 1, - "multiple": 5, - "searched.": 1, - "<--help>": 1, - "short": 1, - "help": 2, - "statement.": 1, - "<--ignore-case>": 1, - "Ignore": 3, - "case": 3, - "strings.": 1, - "applies": 3, - "regexes": 3, - "<-g>": 5, - "<-G>": 3, - "options.": 4, - "": 2, - "etc": 2, - "May": 2, - "directories.": 2, - "mason": 1, - "users": 4, - "may": 3, - "wish": 1, - "include": 1, - "<--ignore-dir=data>": 1, - "<--noignore-dir>": 1, - "allows": 4, - "normally": 1, - "perhaps": 1, - "research": 1, - "<.svn/props>": 1, - "always": 5, - "simple": 2, - "name.": 1, - "Nested": 1, - "": 1, - "NOT": 1, - "supported.": 1, - "You": 4, - "need": 5, - "specify": 1, - "<--ignore-dir=foo>": 1, - "then": 4, - "foo": 6, - "taken": 1, - "account": 1, - "explicitly": 1, - "": 2, - "file.": 3, - "Multiple": 1, - "<--line>": 1, - "comma": 1, - "separated": 2, - "<--line=3,5,7>": 1, - "<--line=4-7>": 1, - "works.": 1, - "ascending": 1, - "order": 2, - "matter": 1, - "<-l>": 2, - "<--files-with-matches>": 1, - "instead": 4, - "text.": 1, - "<-L>": 1, - "<--files-without-matches>": 1, - "": 2, - "equivalent": 2, - "specifying": 1, - "Specify": 1, - "explicitly.": 1, - "helpful": 2, - "don": 2, - "": 1, - "via": 1, - "": 4, - "": 4, - "environment": 2, - "variables.": 1, - "Using": 3, - "suppress": 3, - "grouping": 3, - "coloring": 3, - "piping": 3, - "does.": 2, - "<--passthru>": 1, - "whether": 1, - "they": 1, - "expression.": 1, - "Highlighting": 1, - "work": 3, - "though": 1, - "so": 4, - "highlight": 1, - "seeing": 1, - "tail": 1, - "/access.log": 1, - "<--print0>": 1, - "works": 1, - "conjunction": 1, - "null": 1, - "byte": 1, - "usual": 1, - "newline.": 1, - "dealing": 1, - "contain": 3, - "whitespace": 1, - "e.g.": 2, - "html": 1, - "xargs": 2, - "rm": 1, - "<--literal>": 1, - "Quote": 1, - "metacharacters": 2, - "treated": 1, - "literal.": 1, - "<-r>": 1, - "<-R>": 1, - "<--recurse>": 1, - "just": 2, - "here": 2, - "compatibility": 2, - "turning": 1, - "<--no-recurse>": 1, - "off.": 1, - "<--smart-case>": 1, - "<--no-smart-case>": 1, - "strings": 1, - "contains": 2, - "uppercase": 1, - "characters.": 1, - "similar": 1, - "": 1, - "vim.": 1, - "overrides": 2, - "option.": 1, - "<--sort-files>": 1, - "Sorts": 1, - "Use": 6, - "your": 20, - "listings": 1, - "deterministic": 1, - "runs": 1, - "<--show-types>": 1, - "Outputs": 1, - "associates": 1, - "Works": 1, - "<--thpppt>": 1, - "Display": 1, - "important": 1, - "Bill": 1, - "Cat": 1, - "logo.": 1, - "Note": 5, - "exact": 1, - "spelling": 1, - "<--thpppppt>": 1, - "important.": 1, - "make": 3, - "perl": 8, - "php": 2, - "python": 1, - "looks": 2, - "location.": 1, - "variable": 1, - "specifies": 1, - "placed": 1, - "front": 1, - "explicit": 1, - "Specifies": 4, - "recognized": 1, - "clear": 2, - "dark": 1, - "underline": 1, - "underscore": 2, - "blink": 1, - "reverse": 1, - "concealed": 1, - "red": 1, - "blue": 1, - "magenta": 1, - "on_black": 1, - "on_red": 1, - "on_green": 1, - "on_blue": 1, - "on_magenta": 1, - "on_cyan": 1, - "on_white.": 1, - "Case": 1, - "significant.": 1, - "Underline": 1, - "reset.": 1, - "alone": 1, - "sets": 4, - "foreground": 1, - "on_color": 1, - "background": 1, - "color.": 2, - "<--color-filename>": 1, - "printed": 1, - "<--color>": 1, - "mode.": 1, - "<--color-lineno>": 1, - "See": 1, - "": 1, - "specifications.": 1, - "such": 6, - "": 1, - "": 1, - "": 1, - "send": 1, - "output.": 1, - "except": 1, - "assume": 1, - "support": 2, - "both": 1, - "understands": 1, - "sequences.": 1, - "never": 1, - "back": 4, - "ACK": 2, - "OTHER": 1, - "TOOLS": 1, - "Vim": 3, - "integration": 3, - "integrates": 1, - "easily": 2, - "editor.": 1, - "<.vimrc>": 1, - "grepprg": 1, - "That": 3, - "examples": 1, - "<-a>": 1, - "flags.": 1, - "Now": 1, - "step": 1, - "Dumper": 1, - "perllib": 1, - "Emacs": 1, - "Phil": 1, - "Jackson": 1, - "put": 1, - "together": 2, - "an": 16, - "": 1, - "extension": 1, - "": 1, - "TextMate": 2, - "Pedro": 1, - "Melo": 1, - "who": 1, - "writes": 1, - "Shell": 2, - "Code": 1, - "greater": 1, - "normal": 1, - "code": 8, - "<$?=256>": 1, - "": 1, - "backticks.": 1, - "errors": 1, - "used.": 1, - "at": 4, - "least": 1, - "returned.": 1, - "DEBUGGING": 1, - "PROBLEMS": 1, - "gives": 2, - "re": 3, - "expecting": 1, - "forgotten": 1, - "<--noenv>": 1, - "<.ackrc>": 1, - "remember.": 1, - "Put": 1, - "definitions": 1, - "it.": 1, - "smart": 1, - "too.": 1, - "there.": 1, - "working": 1, - "big": 1, - "codesets": 1, - "more": 2, - "create": 3, - "tree": 2, - "ideal": 1, - "sending": 1, - "": 1, - "prefer": 1, - "doubt": 1, - "day": 1, - "find": 1, - "trouble": 1, - "spots": 1, - "website": 1, - "visitor.": 1, - "had": 1, - "problem": 1, - "loading": 1, - "": 1, - "took": 1, - "access": 2, - "log": 3, - "scanned": 1, - "twice.": 1, - "aa.bb.cc.dd": 1, - "/path/to/access.log": 1, - "B5": 1, - "troublesome.gif": 1, - "first": 1, - "finds": 2, - "Apache": 2, - "IP.": 1, - "second": 1, - "troublesome": 1, - "GIF": 1, - "shows": 1, - "previous": 1, - "five": 1, - "case.": 1, - "Share": 1, - "knowledge": 1, - "Join": 1, - "mailing": 1, - "list.": 1, - "Send": 1, - "me": 1, - "tips": 1, - "here.": 1, - "FAQ": 1, - "Why": 3, - "isn": 1, - "doesn": 8, - "behavior": 3, - "driven": 1, - "filetype.": 1, - "": 1, - "kind": 1, - "ignores": 1, - "switch": 1, - "you.": 1, - "source": 2, - "compiled": 1, - "object": 6, - "control": 1, - "metadata": 1, - "wastes": 1, - "lot": 1, - "time": 3, - "those": 2, - "well": 2, - "returning": 1, - "things": 2, - "great": 1, - "did": 1, - "replace": 3, - "read": 6, - "only.": 1, - "has": 3, - "perfectly": 1, - "good": 2, - "way": 2, - "using": 5, - "<-p>": 1, - "<-n>": 1, - "switches.": 1, - "certainly": 2, - "select": 1, - "update.": 1, - "change": 1, - "PHP": 1, - "Unix": 1, - "Can": 1, - "recognize": 1, - "<.xyz>": 1, - "already": 2, - "program/package": 1, - "called": 4, - "ack.": 2, - "Yes": 1, - "know.": 1, - "nothing": 1, - "suggest": 1, - "symlink": 1, - "points": 1, - "": 1, - "crucial": 1, - "benefits": 1, - "having": 1, - "Regan": 1, - "Slaven": 1, - "ReziE": 1, - "<0x107>": 1, - "Mark": 1, - "Stosberg": 1, - "David": 1, - "Alan": 1, - "Pisoni": 1, - "Adriano": 1, - "Ferreira": 1, - "James": 1, - "Keenan": 1, - "Leland": 1, - "Johnson": 1, - "Ricardo": 1, - "Signes": 1, - "Pete": 1, - "Krawczyk.": 1, - "files_defaults": 3, - "skip_dirs": 3, - "CORE": 3, - "curdir": 1, - "updir": 1, - "__PACKAGE__": 1, - "parms": 15, - "@queue": 8, - "_setup": 2, - "fullpath": 12, - "splice": 2, - "local": 5, - "wantarray": 3, - "_candidate_files": 2, - "sort_standard": 2, - "cmp": 2, - "sort_reverse": 1, - "@parts": 3, - "passed_parms": 6, - "copy": 4, - "parm": 1, - "hash": 11, - "badkey": 1, - "caller": 2, - "start": 7, - "dh": 4, - "opendir": 1, - "@newfiles": 5, - "sort_sub": 4, - "readdir": 1, - "has_stat": 3, - "catdir": 3, - "closedir": 1, - "": 1, - "these": 4, - "updated": 1, - "update": 1, - "message": 1, - "bak": 1, - "core": 1, - "swp": 1, - "min": 3, - "js": 1, - "1": 1, - "str": 12, - "regex_is_lc": 2, - "S": 1, - ".*//": 1, - "_my_program": 3, - "Basename": 2, - "FAIL": 12, - "Carp": 11, - "confess": 2, - "@ISA": 2, - "class": 8, - "self": 141, - "bless": 7, - "could_be_binary": 4, - "opened": 1, - "id": 6, - "*STDIN": 2, - "size": 5, - "_000": 1, - "buffer": 9, - "sysread": 1, - "regex/m": 1, - "seek": 4, - "readline": 1, - "nexted": 3, - "CGI": 6, - "Fast": 3, - "XML": 2, - "Hash": 11, - "XS": 2, - "FindBin": 1, - "Bin": 3, - "#use": 1, - "lib": 2, - "_stop": 4, - "request": 11, - "SIG": 3, - "nginx": 2, - "external": 2, - "fcgi": 2, - "Ext_Request": 1, - "FCGI": 1, - "Request": 11, - "*STDERR": 1, - "int": 2, - "ARGV": 2, - "conv": 2, - "use_attr": 1, - "indent": 1, - "xml_decl": 1, - "tmpl_path": 2, - "tmpl": 5, - "data": 3, - "nick": 1, - "parent": 5, - "third_party": 1, - "artist_name": 2, - "venue": 2, - "event": 2, - "date": 2, - "zA": 1, - "Z0": 1, - "Content": 2, - "application/xml": 1, - "charset": 2, - "utf": 2, - "hash2xml": 1, - "text/html": 1, - "nError": 1, - "M": 1, - "system": 1, - "Foo": 11, - "Bar": 1, - "@array": 1, - "pod": 1, - "Catalyst": 10, - "PSGI": 10, - "How": 1, - "": 3, - "specification": 3, - "interface": 1, - "web": 8, - "servers": 2, - "based": 2, - "applications": 2, - "frameworks.": 1, - "supports": 1, - "writing": 1, - "portable": 1, - "run": 1, - "various": 2, - "methods": 4, - "standalone": 1, - "server": 2, - "mod_perl": 3, - "FastCGI": 2, - "": 3, - "implementation": 1, - "running": 1, - "applications.": 1, - "Engine": 1, - "XXXX": 1, - "classes": 2, - "environments": 1, - "been": 1, - "changed": 1, - "done": 2, - "implementing": 1, - "possible": 2, - "manually": 2, - "": 1, - "root": 1, - "application.": 1, - "write": 2, - "own": 4, - ".psgi": 7, - "Writing": 2, - "alternate": 1, - "": 1, - "extensions": 1, - "implement": 2, - "": 1, - "": 1, - "": 1, - "simplest": 1, - "<.psgi>": 1, - "": 1, - "TestApp": 5, - "app": 2, - "psgi_app": 3, - "middleware": 2, - "components": 2, - "automatically": 2, - "": 1, - "applied": 1, - "psgi": 2, - "yourself.": 2, - "Details": 1, - "below.": 1, - "Additional": 1, - "": 1, - "What": 1, - "generates": 2, - "": 1, - "setting": 2, - "wrapped": 1, - "": 1, - "some": 1, - "engine": 1, - "fixes": 1, - "uniform": 1, - "behaviour": 2, - "contained": 1, - "over": 2, - "": 1, - "": 1, - "override": 1, - "providing": 2, - "none": 1, - "call": 2, - "MyApp": 1, - "Thus": 1, - "functionality": 1, - "ll": 1, - "An": 1, - "apply_default_middlewares": 2, - "method": 8, - "supplied": 1, - "wrap": 1, - "middlewares": 1, - "means": 3, - "auto": 1, - "generated": 1, - "": 1, - "": 1, - "AUTHORS": 2, - "Contributors": 1, - "Catalyst.pm": 1, - "library": 2, - "software.": 1, - "same": 2, - "Plack": 25, - "_001": 1, - "HTTP": 16, - "Headers": 8, - "MultiValue": 9, - "Body": 2, - "Upload": 2, - "TempBuffer": 2, - "URI": 11, - "Escape": 6, - "_deprecated": 8, - "alt": 1, - "carp": 2, - "croak": 3, - "required": 2, - "address": 2, - "REMOTE_ADDR": 1, - "remote_host": 2, - "REMOTE_HOST": 1, - "protocol": 1, - "SERVER_PROTOCOL": 1, - "REQUEST_METHOD": 1, - "port": 1, - "SERVER_PORT": 2, - "REMOTE_USER": 1, - "request_uri": 1, - "REQUEST_URI": 2, - "path_info": 4, - "PATH_INFO": 3, - "script_name": 1, - "SCRIPT_NAME": 2, - "scheme": 3, - "secure": 2, - "body": 30, - "content_length": 4, - "CONTENT_LENGTH": 3, - "content_type": 5, - "CONTENT_TYPE": 2, - "session": 1, - "session_options": 1, - "logger": 1, - "cookies": 9, - "HTTP_COOKIE": 3, - "@pairs": 2, - "pair": 4, - "uri_unescape": 1, - "query_parameters": 3, - "uri": 11, - "query_form": 2, - "content": 8, - "_parse_request_body": 4, - "cl": 10, - "raw_body": 1, - "headers": 56, - "field": 2, - "HTTPS": 1, - "_//": 1, - "CONTENT": 1, - "COOKIE": 1, - "content_encoding": 5, - "referer": 3, - "user_agent": 3, - "body_parameters": 3, - "parameters": 8, - "query": 4, - "flatten": 3, - "uploads": 5, - "hostname": 1, - "url_scheme": 1, - "params": 1, - "query_params": 1, - "body_params": 1, - "cookie": 6, - "param": 8, - "get_all": 2, - "upload": 13, - "raw_uri": 1, - "base": 10, - "path_query": 1, - "_uri_base": 3, - "path_escape_class": 2, - "uri_escape": 3, - "QUERY_STRING": 3, - "canonical": 2, - "HTTP_HOST": 1, - "SERVER_NAME": 1, - "new_response": 4, - "Response": 16, - "ct": 3, - "cleanup": 1, - "spin": 2, - "chunk": 4, - "length": 1, - "rewind": 1, - "from_mixed": 2, - "@uploads": 3, - "@obj": 3, - "_make_upload": 2, - "__END__": 2, - "Portable": 2, - "app_or_middleware": 1, - "req": 28, - "finalize": 5, - "": 2, - "provides": 1, - "consistent": 1, - "API": 2, - "objects": 2, - "across": 1, - "environments.": 1, - "CAVEAT": 1, - "module": 2, - "intended": 1, - "developers": 3, - "framework": 2, - "rather": 2, - "directly": 1, - "recommended": 1, - "yet": 1, - "too": 1, - "low": 1, - "level.": 1, - "encouraged": 1, - "frameworks": 2, - "": 1, - "modules": 1, - "": 1, - "provide": 1, - "higher": 1, - "level": 1, - "top": 1, - "PSGI.": 1, - "METHODS": 2, - "Some": 1, - "earlier": 1, - "versions": 1, - "deprecated": 1, - "Take": 1, - "": 1, - "Unless": 1, - "noted": 1, - "": 1, - "passing": 1, - "values": 5, - "accessor": 1, - "debug": 1, - "set.": 1, - "": 2, - "request.": 1, - "uploads.": 2, - "": 2, - "": 1, - "objects.": 1, - "Shortcut": 6, - "content_encoding.": 1, - "content_length.": 1, - "content_type.": 1, - "header.": 2, - "referer.": 1, - "user_agent.": 1, - "GET": 1, - "POST": 1, - "CGI.pm": 2, - "compatible": 1, - "method.": 1, - "alternative": 1, - "accessing": 1, - "parameters.": 3, - "Unlike": 1, - "": 1, - "allow": 1, - "modifying": 1, - "@values": 1, - "@params": 1, - "convenient": 1, - "@fields": 1, - "Creates": 2, - "": 3, - "object.": 4, - "Handy": 1, - "remove": 2, - "dependency": 1, - "easy": 1, - "subclassing": 1, - "duck": 1, - "typing": 1, - "overriding": 1, - "generation": 1, - "middlewares.": 1, - "Parameters": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "store": 1, - "plain": 2, - "": 1, - "scalars": 1, - "references": 1, - "ARRAY": 1, - "parse": 1, - "twice": 1, - "efficiency.": 1, - "DISPATCHING": 1, - "wants": 1, - "dispatch": 1, - "route": 1, - "actions": 1, - "sure": 1, - "": 1, - "virtual": 1, - "regardless": 1, - "how": 1, - "mounted.": 1, - "hosted": 1, - "scripts": 1, - "multiplexed": 1, - "tools": 1, - "": 1, - "idea": 1, - "subclass": 1, - "define": 1, - "uri_for": 2, - "args": 3, - "So": 1, - "say": 1, - "link": 1, - "signoff": 1, - "": 1, - "empty.": 1, - "older": 1, - "instead.": 1, - "Cookie": 2, - "handling": 1, - "simplified": 1, - "string": 5, - "encoding": 2, - "decoding": 1, - "totally": 1, - "up": 1, - "framework.": 1, - "Also": 1, - "": 1, - "now": 1, - "": 1, - "Simple": 1, - "longer": 1, - "have": 2, - "wacky": 1, - "simply": 1, - "Tatsuhiko": 2, - "Miyagawa": 2, - "Kazuhiro": 1, - "Osawa": 1, - "Tokuhiro": 2, - "Matsuno": 2, - "": 1, - "": 1, - "Util": 3, - "Accessor": 1, - "status": 17, - "Scalar": 2, - "location": 4, - "redirect": 1, - "url": 2, - "clone": 1, - "_finalize_cookies": 2, - "/chr": 1, - "/ge": 1, - "LWS": 1, - "single": 1, - "SP": 1, - "//g": 1, - "CR": 1, - "LF": 1, - "since": 1, - "char": 1, - "invalid": 1, - "header_field_names": 1, - "_body": 2, - "blessed": 1, - "overload": 1, - "Method": 1, - "_bake_cookie": 2, - "push_header": 1, - "@cookie": 7, - "domain": 3, - "_date": 2, - "expires": 7, - "httponly": 1, - "@MON": 1, - "Jan": 1, - "Feb": 1, - "Mar": 1, - "Apr": 1, - "Jun": 1, - "Jul": 1, - "Aug": 1, - "Sep": 1, - "Oct": 1, - "Nov": 1, - "Dec": 1, - "@WDAY": 1, - "Sun": 1, - "Mon": 1, - "Tue": 1, - "Wed": 1, - "Thu": 1, - "Fri": 1, - "Sat": 1, - "sec": 2, - "hour": 2, - "mday": 2, - "mon": 2, - "year": 3, - "wday": 2, - "gmtime": 1, - "sprintf": 1, - "WDAY": 1, - "MON": 1, - "response": 5, - "psgi_handler": 1, - "API.": 1, - "Sets": 2, - "gets": 2, - "": 1, - "alias.": 2, - "response.": 1, - "Setter": 2, - "either": 2, - "headers.": 1, - "body_str": 1, - "io": 1, - "body.": 1, - "IO": 1, - "Handle": 1, - "": 1, - "X": 2, - "text/plain": 1, - "gzip": 1, - "normalize": 1, - "string.": 1, - "Users": 1, - "responsible": 1, - "properly": 1, - "": 1, - "names": 1, - "their": 1, - "corresponding": 1, - "": 2, - "everything": 1, - "": 1, - "": 2, - "": 1, - "": 1, - "": 1, - "integer": 1, - "epoch": 1, - "": 1, - "convert": 1, - "formats": 1, - "<+3M>": 1, - "reference.": 1, - "AUTHOR": 1 - }, - "Perl6": { - "token": 6, - "pod_formatting_code": 1, - "{": 29, - "": 1, - "<[A..Z]>": 1, - "*POD_IN_FORMATTINGCODE": 1, - "}": 27, - "": 1, - "[": 1, - "": 1, - "#": 13, - "N*": 1, - "role": 10, - "q": 5, - "stopper": 2, - "MAIN": 1, - "quote": 1, - ")": 19, - "backslash": 3, - "sym": 3, - "<\\\\>": 1, - "": 1, - "": 1, - "": 1, - "": 1, - ".": 1, - "method": 2, - "tweak_q": 1, - "(": 16, - "v": 2, - "self.panic": 2, - "tweak_qq": 1, - "qq": 5, - "does": 7, - "b1": 1, - "c1": 1, - "s1": 1, - "a1": 1, - "h1": 1, - "f1": 1, - "Too": 2, - "late": 2, - "for": 2, - "SHEBANG#!perl": 1, - "use": 1, - "v6": 1, - ";": 19, - "my": 10, - "string": 7, - "if": 1, - "eq": 1, - "say": 10, - "regex": 2, - "http": 1, - "-": 3, - "verb": 1, - "|": 9, - "multi": 2, - "line": 5, - "comment": 2, - "I": 1, - "there": 1, - "m": 2, - "even": 1, - "specialer": 1, - "nesting": 1, - "work": 1, - "<": 3, - "trying": 1, - "mixed": 1, - "delimiters": 1, - "": 1, - "arbitrary": 2, - "delimiter": 2, - "Hooray": 1, - "": 1, - "with": 9, - "whitespace": 1, - "<<": 1, - "more": 1, - "strings": 1, - "%": 1, - "hash": 1, - "Hash.new": 1, - "begin": 1, - "pod": 1, - "Here": 1, - "t": 2, - "highlighted": 1, - "table": 1, - "Of": 1, - "things": 1, - "A": 3, - "single": 3, - "declarator": 7, - "a": 8, - "keyword": 7, - "like": 7, - "Another": 2, - "block": 2, - "brace": 1, - "More": 2, - "blocks": 2, - "don": 2, - "x": 2, - "foo": 3, - "Rob": 1, - "food": 1, - "match": 1, - "sub": 1, - "something": 1, - "Str": 1, - "D": 1, - "value": 1, - "...": 1, - "s": 1, - "some": 2, - "stuff": 1, - "chars": 1, - "/": 1, - "": 1, - "": 1, - "roleq": 1 - }, - "PHP": { - "<": 11, - "php": 12, - "namespace": 28, - "Symfony": 24, - "Component": 24, - "Console": 17, - ";": 1383, - "use": 23, - "Input": 6, - "InputInterface": 4, - "ArgvInput": 2, - "ArrayInput": 3, - "InputDefinition": 2, - "InputOption": 15, - "InputArgument": 3, - "Output": 5, - "OutputInterface": 6, - "ConsoleOutput": 2, - "ConsoleOutputInterface": 2, - "Command": 6, - "HelpCommand": 2, - "ListCommand": 2, - "Helper": 3, - "HelperSet": 3, - "FormatterHelper": 2, - "DialogHelper": 2, - "class": 21, - "Application": 3, - "{": 974, - "private": 24, - "commands": 39, - "wantHelps": 4, - "false": 154, - "runningCommand": 5, - "name": 181, - "version": 8, - "catchExceptions": 4, - "autoExit": 4, - "definition": 3, - "helperSet": 6, - "public": 202, - "function": 205, - "__construct": 8, - "(": 2416, - ")": 2417, - "this": 928, - "-": 1271, - "true": 133, - "array": 296, - "getDefaultHelperSet": 2, - "getDefaultInputDefinition": 2, - "foreach": 94, - "getDefaultCommands": 2, - "as": 96, - "command": 41, - "add": 7, - "}": 972, - "run": 4, - "input": 20, - "null": 164, - "output": 60, - "if": 450, - "new": 74, - "try": 3, - "statusCode": 14, - "doRun": 2, - "catch": 3, - "Exception": 1, - "e": 18, - "throw": 19, - "instanceof": 8, - "renderException": 3, - "getErrorOutput": 2, - "else": 70, - "getCode": 1, - "is_numeric": 7, - "&&": 119, - "exit": 7, - "return": 305, - "getCommandName": 2, - "hasParameterOption": 7, - "setDecorated": 2, - "elseif": 31, - "setInteractive": 2, - "function_exists": 4, - "getHelperSet": 3, - "has": 7, - "inputStream": 2, - "get": 12, - "getInputStream": 1, - "posix_isatty": 1, - "setVerbosity": 2, - "VERBOSITY_QUIET": 1, - "VERBOSITY_VERBOSE": 2, - "writeln": 13, - "getLongVersion": 3, - "find": 17, - "setHelperSet": 1, - "getDefinition": 2, - "getHelp": 2, - "messages": 16, - "sprintf": 27, - "getOptions": 1, - "option": 5, - "[": 672, - "]": 672, - ".": 169, - "getName": 14, - "getShortcut": 2, - "getDescription": 3, - "implode": 8, - "PHP_EOL": 3, - "setCatchExceptions": 1, - "boolean": 4, - "Boolean": 4, - "setAutoExit": 1, - "setName": 1, - "getVersion": 3, - "setVersion": 1, - "register": 1, - "addCommands": 1, - "setApplication": 2, - "isEnabled": 1, - "getAliases": 3, - "alias": 87, - "isset": 101, - "InvalidArgumentException": 9, - "helpCommand": 3, - "setCommand": 1, - "getNamespaces": 3, - "namespaces": 4, - "extractNamespace": 7, - "array_values": 5, - "array_unique": 4, - "array_filter": 2, - "findNamespace": 4, - "allNamespaces": 3, - "n": 12, - "explode": 9, - "found": 4, - "i": 36, - "part": 10, - "abbrevs": 31, - "static": 6, - "getAbbreviations": 4, - "array_map": 2, - "p": 3, - "message": 12, - "<=>": 3, - "alternatives": 10, - "findAlternativeNamespace": 2, - "count": 32, - "getAbbreviationSuggestions": 4, - "searchName": 13, - "pos": 3, - "strrpos": 2, - "substr": 6, - "namespace.substr": 1, - "suggestions": 2, - "aliases": 8, - "findAlternativeCommands": 2, - "all": 11, - "substr_count": 1, - "+": 12, - "names": 3, - "for": 8, - "len": 11, - "strlen": 14, - "abbrev": 4, - "asText": 1, - "raw": 2, - "width": 7, - "sortCommands": 4, - "space": 5, - "space.": 1, - "asXml": 2, - "asDom": 2, - "dom": 12, - "DOMDocument": 2, - "formatOutput": 1, - "appendChild": 10, - "xml": 5, - "createElement": 6, - "commandsXML": 3, - "setAttribute": 2, - "namespacesXML": 3, - "namespaceArrayXML": 4, - "continue": 7, - "commandXML": 3, - "createTextNode": 1, - "node": 42, - "getElementsByTagName": 1, - "item": 9, - "importNode": 3, - "saveXml": 1, - "string": 5, - "encoding": 2, - "mb_detect_encoding": 1, - "mb_strlen": 1, - "do": 2, - "title": 3, - "get_class": 4, - "getTerminalWidth": 3, - "PHP_INT_MAX": 1, - "lines": 3, - "preg_split": 1, - "getMessage": 1, - "line": 10, - "str_split": 1, - "max": 2, - "str_repeat": 2, - "title.str_repeat": 1, - "line.str_repeat": 1, - "message.": 1, - "getVerbosity": 1, - "trace": 12, - "getTrace": 1, - "array_unshift": 2, - "getFile": 2, - "getLine": 2, - "type": 62, - "file": 3, - "while": 6, - "getPrevious": 1, - "getSynopsis": 1, - "protected": 59, - "defined": 5, - "ansicon": 4, - "getenv": 2, - "preg_replace": 4, - "preg_match": 6, - "getSttyColumns": 3, - "match": 4, - "getTerminalHeight": 1, - "trim": 3, - "getFirstArgument": 1, - "REQUIRED": 1, - "VALUE_NONE": 7, - "descriptorspec": 2, - "process": 10, - "proc_open": 1, - "pipes": 4, - "is_resource": 1, - "info": 5, - "stream_get_contents": 1, - "fclose": 2, - "proc_close": 1, - "namespacedCommands": 5, - "key": 64, - "ksort": 2, - "&": 19, - "limit": 3, - "parts": 4, - "array_pop": 1, - "array_slice": 1, - "callback": 5, - "findAlternatives": 3, - "collection": 3, - "call_user_func": 2, - "lev": 6, - "levenshtein": 2, - "3": 1, - "strpos": 15, - "values": 53, - "/": 1, - "||": 52, - "value": 53, - "asort": 1, - "array_keys": 7, - "BrowserKit": 1, - "DomCrawler": 5, - "Crawler": 2, - "Link": 3, - "Form": 4, - "Process": 1, - "PhpProcess": 2, - "abstract": 2, - "Client": 1, - "history": 15, - "cookieJar": 9, - "server": 20, - "request": 76, - "response": 33, - "crawler": 7, - "insulated": 7, - "redirect": 6, - "followRedirects": 5, - "History": 2, - "CookieJar": 2, - "setServerParameters": 2, - "followRedirect": 4, - "insulate": 1, - "class_exists": 2, - "RuntimeException": 2, - "array_merge": 32, - "setServerParameter": 1, - "getServerParameter": 1, - "default": 9, - "getHistory": 1, - "getCookieJar": 1, - "getCrawler": 1, - "getResponse": 1, - "getRequest": 1, - "click": 1, - "link": 10, - "submit": 2, - "getMethod": 6, - "getUri": 8, - "form": 7, - "setValues": 2, - "getPhpValues": 2, - "getPhpFiles": 2, - "method": 31, - "uri": 23, - "parameters": 4, - "files": 7, - "content": 4, - "changeHistory": 4, - "getAbsoluteUri": 2, - "isEmpty": 2, - "current": 4, - "parse_url": 3, - "PHP_URL_HOST": 1, - "PHP_URL_SCHEME": 1, - "Request": 3, - "allValues": 1, - "filterRequest": 2, - "doRequestInProcess": 2, - "doRequest": 2, - "filterResponse": 2, - "updateFromResponse": 1, - "getHeader": 2, - "createCrawlerFromContent": 2, - "getContent": 2, - "getScript": 2, - "sys_get_temp_dir": 2, - "isSuccessful": 1, - "getOutput": 3, - "unserialize": 1, - "LogicException": 4, - "addContent": 1, - "back": 2, - "requestFromRequest": 4, - "forward": 2, - "reload": 1, - "empty": 96, - "restart": 1, - "clear": 2, - "currentUri": 7, - "path": 20, - "PHP_URL_PATH": 1, - "path.": 1, - "getParameters": 1, - "getFiles": 3, - "getServer": 1, - "": 3, - "CakePHP": 6, - "tm": 6, - "Rapid": 2, - "Development": 2, - "Framework": 2, - "http": 14, - "cakephp": 4, - "org": 10, - "Copyright": 5, - "2005": 4, - "2012": 4, - "Cake": 7, - "Software": 5, - "Foundation": 4, - "Inc": 4, - "cakefoundation": 4, - "Licensed": 2, - "under": 2, - "The": 4, - "MIT": 4, - "License": 4, - "Redistributions": 2, - "of": 10, - "must": 2, - "retain": 2, - "the": 11, - "above": 2, - "copyright": 5, - "notice": 2, - "Project": 2, - "package": 2, - "Controller": 4, - "since": 2, - "v": 17, - "0": 4, - "2": 2, - "9": 1, - "license": 6, - "www": 4, - "opensource": 2, - "licenses": 2, - "mit": 2, - "App": 20, - "uses": 46, - "CakeResponse": 2, - "Network": 1, - "ClassRegistry": 9, - "Utility": 6, - "ComponentCollection": 2, - "View": 9, - "CakeEvent": 13, - "Event": 6, - "CakeEventListener": 4, - "CakeEventManager": 5, - "controller": 3, - "organization": 1, - "business": 1, - "logic": 1, - "Provides": 1, - "basic": 1, - "functionality": 1, - "such": 1, - "rendering": 1, - "views": 1, - "inside": 1, - "layouts": 1, - "automatic": 1, - "model": 34, - "availability": 1, - "redirection": 2, - "callbacks": 4, - "and": 5, - "more": 1, - "Controllers": 2, - "should": 1, - "provide": 1, - "a": 11, - "number": 1, - "action": 7, - "methods": 5, - "These": 1, - "are": 5, - "on": 4, - "that": 2, - "not": 2, - "prefixed": 1, - "with": 5, - "_": 1, - "Each": 1, - "serves": 1, - "an": 1, - "endpoint": 1, - "performing": 2, - "specific": 1, - "resource": 1, - "or": 9, - "resources": 1, - "For": 2, - "example": 2, - "adding": 1, - "editing": 1, - "object": 14, - "listing": 1, - "set": 26, - "objects": 5, - "You": 2, - "can": 2, - "access": 1, - "using": 2, - "contains": 1, - "POST": 1, - "GET": 1, - "FILES": 1, - "*": 25, - "were": 1, - "request.": 1, - "After": 1, - "required": 2, - "actions": 2, - "controllers": 2, - "responsible": 1, - "creating": 1, - "response.": 2, - "This": 1, - "usually": 1, - "takes": 1, - "generated": 1, - "possibly": 1, - "to": 6, - "another": 1, - "action.": 1, - "In": 1, - "either": 1, - "case": 31, - "allows": 1, - "you": 1, - "manipulate": 1, - "aspects": 1, - "created": 8, - "by": 2, - "Dispatcher": 1, - "based": 2, - "routing.": 1, - "By": 1, - "conventional": 1, - "names.": 1, - "/posts/index": 1, - "maps": 1, - "PostsController": 1, - "index": 5, - "re": 1, - "map": 1, - "urls": 1, - "Router": 5, - "connect": 1, - "@package": 2, - "Cake.Controller": 1, - "@property": 8, - "AclComponent": 1, - "Acl": 1, - "AuthComponent": 1, - "Auth": 1, - "CookieComponent": 1, - "Cookie": 1, - "EmailComponent": 1, - "Email": 1, - "PaginatorComponent": 1, - "Paginator": 1, - "RequestHandlerComponent": 1, - "RequestHandler": 1, - "SecurityComponent": 1, - "Security": 1, - "SessionComponent": 1, - "Session": 1, - "@link": 2, - "//book.cakephp.org/2.0/en/controllers.html": 1, - "*/": 2, - "extends": 3, - "Object": 4, - "implements": 3, - "helpers": 1, - "_responseClass": 1, - "viewPath": 3, - "layoutPath": 1, - "viewVars": 3, - "view": 5, - "layout": 5, - "autoRender": 6, - "autoLayout": 2, - "Components": 7, - "components": 1, - "viewClass": 10, - "ext": 1, - "plugin": 31, - "cacheAction": 1, - "passedArgs": 2, - "scaffold": 2, - "modelClass": 25, - "modelKey": 2, - "validationErrors": 50, - "_mergeParent": 4, - "_eventManager": 12, - "Inflector": 12, - "singularize": 4, - "underscore": 3, - "childMethods": 2, - "get_class_methods": 2, - "parentMethods": 2, - "array_diff": 3, - "CakeRequest": 5, - "setRequest": 2, - "parent": 14, - "__isset": 2, - "switch": 6, - "is_array": 37, - "list": 29, - "pluginSplit": 12, - "loadModel": 3, - "__get": 2, - "params": 34, - "load": 3, - "settings": 2, - "__set": 1, - "camelize": 3, - "array_key_exists": 11, - "invokeAction": 1, - "ReflectionMethod": 2, - "_isPrivateAction": 2, - "PrivateActionException": 1, - "invokeArgs": 1, - "ReflectionException": 1, - "_getScaffold": 2, - "MissingActionException": 1, - "privateAction": 4, - "isPublic": 1, - "in_array": 26, - "prefixes": 4, - "prefix": 2, - "Scaffold": 1, - "_mergeControllerVars": 2, - "pluginController": 9, - "pluginDot": 4, - "mergeParent": 2, - "is_subclass_of": 3, - "pluginVars": 3, - "appVars": 6, - "merge": 12, - "_mergeVars": 5, - "get_class_vars": 2, - "_mergeUses": 3, - "implementedEvents": 2, - "constructClasses": 1, - "init": 4, - "getEventManager": 13, - "attach": 4, - "startupProcess": 1, - "dispatch": 11, - "shutdownProcess": 1, - "httpCodes": 3, - "code": 4, - "id": 82, - "MissingModelException": 1, - "url": 18, - "status": 15, - "extract": 9, - "EXTR_OVERWRITE": 3, - "event": 35, - "//TODO": 1, - "Remove": 1, - "following": 1, - "when": 1, - "events": 1, - "fully": 1, - "migrated": 1, - "break": 19, - "breakOn": 4, - "collectReturn": 1, - "isStopped": 4, - "result": 21, - "_parseBeforeRedirect": 2, - "session_write_close": 1, - "header": 3, - "is_string": 7, - "codes": 3, - "array_flip": 1, - "send": 1, - "_stop": 1, - "resp": 6, - "compact": 8, - "one": 19, - "two": 6, - "data": 187, - "array_combine": 2, - "setAction": 1, - "args": 5, - "func_get_args": 5, - "unset": 22, - "call_user_func_array": 3, - "validate": 9, - "errors": 9, - "validateErrors": 1, - "invalidFields": 2, - "render": 3, - "className": 27, - "models": 6, - "keys": 19, - "currentModel": 2, - "currentObject": 6, - "getObject": 1, - "is_a": 1, - "location": 1, - "body": 1, - "referer": 5, - "local": 2, - "disableCache": 2, - "flash": 1, - "pause": 2, - "postConditions": 1, - "op": 9, - "bool": 5, - "exclusive": 2, - "cond": 5, - "arrayOp": 2, - "fields": 60, - "field": 88, - "fieldOp": 11, - "strtoupper": 3, - "paginate": 3, - "scope": 2, - "whitelist": 14, - "beforeFilter": 1, - "beforeRender": 1, - "beforeRedirect": 1, - "afterFilter": 1, - "beforeScaffold": 2, - "_beforeScaffold": 1, - "afterScaffoldSave": 2, - "_afterScaffoldSave": 1, - "afterScaffoldSaveError": 2, - "_afterScaffoldSaveError": 1, - "scaffoldError": 2, - "_scaffoldError": 1, - "php_help": 1, - "arg": 1, - "t": 26, - "php_permission": 1, - "TRUE": 1, - "php_eval": 1, - "global": 2, - "theme_path": 5, - "theme_info": 3, - "conf": 2, - "old_theme_path": 2, - "drupal_get_path": 1, - "dirname": 1, - "filename": 1, - "ob_start": 1, - "print": 1, - "eval": 1, - "ob_get_contents": 1, - "ob_end_clean": 1, - "_php_filter_tips": 1, - "filter": 1, - "format": 3, - "long": 2, - "FALSE": 2, - "base_url": 1, - "php_filter_info": 1, - "filters": 2, - "Field": 9, - "FormField": 3, - "ArrayAccess": 1, - "button": 6, - "DOMNode": 3, - "initialize": 2, - "getFormNode": 1, - "getValues": 3, - "isDisabled": 2, - "FileFormField": 3, - "hasValue": 1, - "getValue": 2, - "qs": 4, - "http_build_query": 3, - "parse_str": 2, - "queryString": 2, - "sep": 1, - "sep.": 1, - "getRawUri": 1, - "getAttribute": 10, - "remove": 4, - "offsetExists": 1, - "offsetGet": 1, - "offsetSet": 1, - "offsetUnset": 1, - "setNode": 1, - "nodeName": 13, - "parentNode": 1, - "FormFieldRegistry": 2, - "document": 6, - "root": 4, - "xpath": 2, - "DOMXPath": 1, - "query": 102, - "hasAttribute": 1, - "InputFormField": 2, - "ChoiceFormField": 2, - "addChoice": 1, - "TextareaFormField": 1, - "base": 8, - "segments": 13, - "getSegments": 4, - "target": 20, - "array_shift": 5, - "self": 1, - "create": 13, - "k": 7, - "setValue": 1, - "walk": 3, - "registry": 4, - "m": 5, - "relational": 2, - "mapper": 2, - "DBO": 2, - "backed": 2, - "mapping": 1, - "database": 2, - "tables": 5, - "PHP": 1, - "versions": 1, - "5": 1, - "Model": 5, - "10": 1, - "Validation": 1, - "String": 5, - "Set": 9, - "BehaviorCollection": 2, - "ModelBehavior": 1, - "ConnectionManager": 2, - "Xml": 2, - "Automatically": 1, - "selects": 1, - "table": 21, - "pluralized": 1, - "lowercase": 1, - "User": 1, - "is": 1, - "have": 2, - "at": 1, - "least": 1, - "primary": 3, - "key.": 1, - "Cake.Model": 1, - "//book.cakephp.org/2.0/en/models.html": 1, - "useDbConfig": 7, - "useTable": 12, - "displayField": 4, - "schemaName": 1, - "primaryKey": 38, - "_schema": 11, - "validationDomain": 1, - "tablePrefix": 8, - "tableToModel": 4, - "cacheQueries": 1, - "belongsTo": 7, - "hasOne": 2, - "hasMany": 2, - "hasAndBelongsToMany": 24, - "actsAs": 2, - "Behaviors": 6, - "cacheSources": 7, - "findQueryType": 3, - "recursive": 9, - "order": 4, - "virtualFields": 8, - "_associationKeys": 2, - "_associations": 5, - "__backAssociation": 22, - "__backInnerAssociation": 1, - "__backOriginalAssociation": 1, - "__backContainableAssociation": 1, - "_insertID": 1, - "_sourceConfigured": 1, - "findMethods": 3, - "ds": 3, - "addObject": 2, - "parentClass": 3, - "get_parent_class": 1, - "tableize": 2, - "_createLinks": 3, - "__call": 1, - "dispatchMethod": 1, - "getDataSource": 15, - "relation": 7, - "assocKey": 13, - "dynamic": 2, - "isKeySet": 1, - "AppModel": 1, - "_constructLinkedModel": 2, - "schema": 11, - "hasField": 7, - "setDataSource": 2, - "property_exists": 3, - "bindModel": 1, - "reset": 6, - "assoc": 75, - "assocName": 6, - "unbindModel": 1, - "_generateAssociation": 2, - "dynamicWith": 3, - "sort": 1, - "setSource": 1, - "tableName": 4, - "db": 45, - "method_exists": 5, - "sources": 3, - "listSources": 1, - "strtolower": 1, - "MissingTableException": 1, - "is_object": 2, - "SimpleXMLElement": 1, - "_normalizeXmlData": 3, - "toArray": 1, - "reverse": 1, - "_setAliasData": 2, - "modelName": 3, - "fieldSet": 3, - "fieldName": 6, - "fieldValue": 7, - "deconstruct": 2, - "getAssociated": 4, - "getColumnType": 4, - "useNewDate": 2, - "dateFields": 5, - "timeFields": 2, - "date": 9, - "val": 27, - "columns": 5, - "str_replace": 3, - "describe": 1, - "getColumnTypes": 1, - "trigger_error": 1, - "__d": 1, - "E_USER_WARNING": 1, - "cols": 7, - "column": 10, - "startQuote": 4, - "endQuote": 4, - "checkVirtual": 3, - "isVirtualField": 3, - "hasMethod": 2, - "getVirtualField": 1, - "filterKey": 2, - "defaults": 6, - "properties": 4, - "read": 2, - "conditions": 41, - "saveField": 1, - "options": 85, - "save": 9, - "fieldList": 1, - "_whitelist": 4, - "keyPresentAndEmpty": 2, - "exists": 6, - "validates": 60, - "updateCol": 6, - "colType": 4, - "time": 3, - "strtotime": 1, - "joined": 5, - "x": 4, - "y": 2, - "success": 10, - "cache": 2, - "_prepareUpdateFields": 2, - "update": 2, - "fInfo": 4, - "isUUID": 5, - "j": 2, - "array_search": 1, - "uuid": 3, - "updateCounterCache": 6, - "_saveMulti": 2, - "_clearCache": 2, - "join": 22, - "joinModel": 8, - "keyInfo": 4, - "withModel": 4, - "pluginName": 1, - "dbMulti": 6, - "newData": 5, - "newValues": 8, - "newJoins": 7, - "primaryAdded": 3, - "idField": 3, - "row": 17, - "keepExisting": 3, - "associationForeignKey": 5, - "links": 4, - "oldLinks": 4, - "delete": 9, - "oldJoin": 4, - "insertMulti": 1, - "foreignKey": 11, - "fkQuoted": 3, - "escapeField": 6, - "intval": 4, - "updateAll": 3, - "foreignKeys": 3, - "included": 3, - "array_intersect": 1, - "old": 2, - "saveAll": 1, - "numeric": 1, - "validateMany": 4, - "saveMany": 3, - "validateAssociated": 5, - "saveAssociated": 5, - "transactionBegun": 4, - "begin": 2, - "record": 10, - "saved": 18, - "commit": 2, - "rollback": 2, - "associations": 9, - "association": 47, - "notEmpty": 4, - "_return": 3, - "recordData": 2, - "cascade": 10, - "_deleteDependent": 3, - "_deleteLinks": 3, - "_collectForeignKeys": 2, - "savedAssociatons": 3, - "deleteAll": 2, - "records": 6, - "ids": 8, - "_id": 2, - "getID": 2, - "hasAny": 1, - "buildQuery": 2, - "is_null": 1, - "results": 22, - "resetAssociations": 3, - "_filterResults": 2, - "ucfirst": 2, - "modParams": 2, - "_findFirst": 1, - "state": 15, - "_findCount": 1, - "calculate": 2, - "expression": 1, - "_findList": 1, - "tokenize": 1, - "lst": 4, - "combine": 1, - "_findNeighbors": 1, - "prevVal": 2, - "return2": 6, - "_findThreaded": 1, - "nest": 1, - "isUnique": 1, - "is_bool": 1, - "sql": 1, - "SHEBANG#!php": 3, - "echo": 2, - "Yii": 3, - "console": 3, - "bootstrap": 1, - "yiiframework": 2, - "com": 2, - "c": 1, - "2008": 1, - "LLC": 1, - "YII_DEBUG": 2, - "define": 2, - "fcgi": 1, - "doesn": 1, - "STDIN": 3, - "fopen": 1, - "stdin": 1, - "r": 1, - "require": 3, - "__DIR__": 3, - "vendor": 2, - "yiisoft": 1, - "yii2": 1, - "yii": 2, - "autoload": 1, - "config": 3, - "application": 2 - }, - "Pike": { - "#pike": 2, - "__REAL_VERSION__": 2, - "constant": 13, - "Generic": 1, - "__builtin.GenericError": 1, - ";": 149, - "Index": 1, - "__builtin.IndexError": 1, - "BadArgument": 1, - "__builtin.BadArgumentError": 1, - "Math": 1, - "__builtin.MathError": 1, - "Resource": 1, - "__builtin.ResourceError": 1, - "Permission": 1, - "__builtin.PermissionError": 1, - "Decode": 1, - "__builtin.DecodeError": 1, - "Cpp": 1, - "__builtin.CppError": 1, - "Compilation": 1, - "__builtin.CompilationError": 1, - "MasterLoad": 1, - "__builtin.MasterLoadError": 1, - "ModuleLoad": 1, - "__builtin.ModuleLoadError": 1, - "//": 85, - "Returns": 2, - "an": 2, - "Error": 2, - "object": 5, - "for": 1, - "any": 1, - "argument": 2, - "it": 2, - "receives.": 1, - "If": 1, - "the": 4, - "already": 1, - "is": 2, - "or": 1, - "empty": 1, - "does": 1, - "nothing.": 1, - "mkerror": 1, - "(": 218, - "mixed": 8, - "error": 14, - ")": 218, - "{": 51, - "if": 35, - "UNDEFINED": 1, - "return": 41, - "objectp": 1, - "&&": 2, - "-": 50, - "is_generic_error": 1, - "arrayp": 2, - "Error.Generic": 3, - "@error": 1, - "stringp": 1, - "sprintf": 3, - "}": 51, - "A": 2, - "string": 20, - "wrapper": 1, - "that": 1, - "pretends": 1, - "to": 7, - "be": 3, - "a": 6, - "@": 36, - "[": 45, - "Stdio.File": 32, - "]": 45, - "in": 1, - "addition": 1, - "some": 1, - "features": 1, - "of": 3, - "Stdio.FILE": 4, - "object.": 2, - "This": 1, - "can": 2, - "used": 1, - "distinguish": 1, - "FakeFile": 3, - "from": 1, - "real": 1, - "is_fake_file": 1, - "protected": 12, - "data": 34, - "int": 31, - "ptr": 27, - "r": 10, - "w": 6, - "mtime": 4, - "function": 21, - "read_cb": 5, - "read_oob_cb": 5, - "write_cb": 5, - "write_oob_cb": 5, - "close_cb": 5, - "@seealso": 33, - "close": 2, - "void": 25, - "|": 14, - "direction": 5, - "lower_case": 2, - "||": 2, - "cr": 2, - "has_value": 4, - "cw": 2, - "@decl": 1, - "create": 3, - "type": 11, - "pointer": 1, - "_data": 3, - "_ptr": 2, - "time": 3, - "else": 5, - "make_type_str": 3, - "+": 19, - "dup": 2, - "this_program": 3, - "Always": 3, - "returns": 4, - "errno": 2, - "size": 3, - "and": 1, - "creation": 1, - "string.": 2, - "Stdio.Stat": 3, - "stat": 1, - "st": 6, - "sizeof": 21, - "ctime": 1, - "atime": 1, - "line_iterator": 2, - "String.SplitIterator": 3, - "trim": 2, - "id": 3, - "query_id": 2, - "set_id": 2, - "_id": 2, - "read_function": 2, - "nbytes": 2, - "lambda": 1, - "read": 3, - "peek": 2, - "float": 1, - "timeout": 1, - "query_address": 2, - "is_local": 1, - "len": 4, - "not_all": 1, - "<": 3, - "start": 1, - "zero_type": 1, - "start..ptr": 1, - "gets": 2, - "ret": 7, - "sscanf": 1, - "getchar": 2, - "c": 4, - "catch": 1, - "unread": 2, - "s": 5, - "..ptr": 2, - "ptr..": 1, - "seek": 2, - "pos": 8, - "mult": 2, - "add": 2, - "pos*mult": 1, - "strlen": 2, - "sync": 2, - "tell": 2, - "truncate": 2, - "length": 2, - "..length": 1, - "write": 2, - "array": 1, - "str": 12, - "...": 2, - "extra": 2, - "str*": 1, - "@extra": 1, - "..": 1, - "set_blocking": 3, - "set_blocking_keep_callbacks": 3, - "set_nonblocking": 1, - "rcb": 2, - "wcb": 2, - "ccb": 2, - "rocb": 2, - "wocb": 2, - "set_nonblocking_keep_callbacks": 1, - "set_close_callback": 2, - "cb": 10, - "set_read_callback": 2, - "set_read_oob_callback": 2, - "set_write_callback": 2, - "set_write_oob_callback": 2, - "query_close_callback": 2, - "query_read_callback": 2, - "query_read_oob_callback": 2, - "query_write_callback": 2, - "query_write_oob_callback": 2, - "_sprintf": 1, - "t": 2, - "casted": 1, - "cast": 1, - "switch": 1, - "case": 2, - "this": 5, - "Sizeof": 1, - "on": 1, - "its": 1, - "contents.": 1, - "_sizeof": 1, - "@ignore": 1, - "#define": 1, - "NOPE": 20, - "X": 2, - "args": 1, - "#X": 1, - "assign": 1, - "async_connect": 1, - "connect": 1, - "connect_unix": 1, - "open": 1, - "open_socket": 1, - "pipe": 1, - "tcgetattr": 1, - "tcsetattr": 1, - "dup2": 1, - "lock": 1, - "We": 4, - "could": 4, - "implement": 4, - "mode": 1, - "proxy": 1, - "query_fd": 1, - "read_oob": 1, - "set_close_on_exec": 1, - "set_keepalive": 1, - "trylock": 1, - "write_oob": 1, - "@endignore": 1 - }, - "Pod": { - "Id": 1, - "contents.pod": 1, - "v": 1, - "/05/04": 1, - "tower": 1, - "Exp": 1, - "begin": 3, - "html": 7, - "": 1, - "end": 4, - "head1": 2, - "Net": 12, - "Z3950": 12, - "AsyncZ": 16, - "head2": 3, - "Intro": 1, - "adds": 1, - "an": 3, - "additional": 1, - "layer": 1, - "of": 19, - "asynchronous": 4, - "support": 1, - "for": 11, - "the": 29, - "module": 6, - "through": 1, - "use": 1, - "multiple": 1, - "forked": 1, - "processes.": 1, - "I": 8, - "hope": 1, - "that": 9, - "users": 1, - "will": 1, - "also": 2, - "find": 1, - "it": 3, - "provides": 1, - "a": 8, - "convenient": 2, - "front": 1, - "to": 9, - "C": 13, - "": 1, - ".": 5, - "My": 1, - "initial": 1, - "idea": 1, - "was": 1, - "write": 1, - "something": 2, - "would": 1, - "provide": 1, - "means": 1, - "processing": 1, - "and": 14, - "formatting": 2, - "Z39.50": 1, - "records": 4, - "which": 3, - "did": 1, - "using": 1, - "": 2, - "synchronous": 1, - "code.": 1, - "But": 3, - "wanted": 1, - "could": 1, - "handle": 1, - "queries": 1, - "large": 1, - "numbers": 1, - "servers": 1, - "at": 1, - "one": 1, - "session.": 1, - "Working": 1, - "on": 1, - "this": 3, + "M": { + ";": 1309, + "This": 26, + "file": 10, + "is": 88, "part": 3, - "my": 1, - "project": 1, - "found": 1, - "had": 1, - "trouble": 1, - "with": 6, - "features": 1, - "so": 1, - "ended": 1, - "up": 1, - "what": 1, - "have": 3, - "here.": 1, - "give": 2, - "more": 4, - "detailed": 4, - "account": 2, - "in": 9, - "": 4, - "href=": 5, - "": 1, - "DESCRIPTION": 1, - "": 1, - "": 5, - "section": 2, - "": 5, - "AsyncZ.html": 2, - "": 6, - "pod": 3, - "B": 1, - "": 1, - "": 1, - "cut": 3, - "Documentation": 1, - "over": 2, - "item": 10, - "AsyncZ.pod": 1, - "This": 4, - "is": 8, - "starting": 2, - "point": 2, - "gives": 2, - "overview": 2, - "describes": 2, - "basic": 4, - "mechanics": 2, - "its": 2, - "workings": 2, - "details": 5, - "particulars": 2, - "objects": 2, - "methods.": 2, - "see": 2, - "L": 1, - "": 1, - "explanations": 2, - "sample": 2, - "scripts": 2, - "come": 2, - "": 2, - "distribution.": 2, - "Options.pod": 1, - "document": 2, - "various": 2, - "options": 2, - "can": 4, - "be": 2, - "set": 2, - "modify": 2, - "behavior": 2, - "Index": 1, - "Report.pod": 2, - "deals": 2, - "how": 4, - "are": 7, - "treated": 2, - "line": 4, - "by": 2, - "you": 4, - "affect": 2, - "apearance": 2, - "record": 2, - "s": 2, - "HOW": 2, - "TO.": 2, - "back": 2, - "": 1, - "The": 6, - "Modules": 1, - "There": 2, - "modules": 5, - "than": 2, - "there": 2, - "documentation.": 2, - "reason": 2, - "only": 2, - "full": 2, - "complete": 2, - "access": 9, - "other": 2, - "either": 2, - "internal": 2, - "": 1, - "or": 4, - "accessed": 2, - "indirectly": 2, - "indirectly.": 2, - "head3": 1, - "Here": 1, - "main": 1, - "direct": 2, - "documented": 7, - "": 4, - "": 2, - "documentation": 4, - "ErrMsg": 1, - "User": 1, - "error": 1, - "message": 1, - "handling": 2, - "indirect": 2, - "Errors": 1, - "Error": 1, - "debugging": 1, - "limited": 2, - "Report": 1, - "Module": 1, - "reponsible": 1, - "fetching": 1, - "ZLoop": 1, - "Event": 1, - "loop": 1, - "child": 3, - "processes": 3, - "no": 2, - "not": 2, - "ZSend": 1, - "Connection": 1, - "Options": 2, - "_params": 1, - "INDEX": 1 - }, - "PogoScript": { - "httpism": 1, - "require": 3, - "async": 1, - "resolve": 2, - ".resolve": 1, - "exports.squash": 1, - "(": 38, - "url": 5, - ")": 38, - "html": 15, - "httpism.get": 2, - ".body": 2, - "squash": 2, - "callback": 2, - "replacements": 6, - "sort": 2, - "links": 2, - "in": 11, - ".concat": 1, - "scripts": 2, - "for": 2, - "each": 2, - "@": 6, - "r": 1, - "{": 3, - "r.url": 1, - "r.href": 1, - "}": 3, - "async.map": 1, - "get": 2, - "err": 2, - "requested": 2, - "replace": 2, - "replacements.sort": 1, - "a": 1, - "b": 1, - "a.index": 1, - "-": 1, - "b.index": 1, - "replacement": 2, - "replacement.body": 1, - "replacement.url": 1, - "i": 3, - "parts": 3, - "rep": 1, - "rep.index": 1, - "+": 2, - "rep.length": 1, - "html.substr": 1, - "link": 2, - "reg": 5, - "r/": 2, - "": 1, - "]": 7, - "*href": 1, - "[": 5, - "*": 2, - "/": 2, - "|": 2, - "s*": 2, - "<\\/link\\>": 1, - "/gi": 2, - "elements": 5, - "matching": 3, - "as": 3, - "script": 2, - "": 1, - "*src": 1, - "<\\/script\\>": 1, - "tag": 3, - "while": 1, - "m": 1, - "reg.exec": 1, - "elements.push": 1, - "index": 1, - "m.index": 1, - "length": 1, - "m.0.length": 1, - "href": 1, - "m.1": 1 - }, - "PostScript": { - "%": 23, - "PS": 1, - "-": 4, - "Adobe": 1, - "Creator": 1, - "Aaron": 1, - "Puchert": 1, - "Title": 1, - "The": 1, - "Sierpinski": 1, - "triangle": 1, - "Pages": 1, - "PageOrder": 1, - "Ascend": 1, - "BeginProlog": 1, - "/pageset": 1, - "{": 4, - "scale": 1, - "set": 1, - "cm": 1, - "translate": 1, - "setlinewidth": 1, - "}": 4, - "def": 2, - "/sierpinski": 1, - "dup": 4, - "gt": 1, - "[": 6, - "]": 6, - "concat": 5, - "sub": 3, - "sierpinski": 4, - "newpath": 1, - "moveto": 1, - "lineto": 2, - "closepath": 1, - "fill": 1, - "ifelse": 1, - "pop": 1, - "EndProlog": 1, - "BeginSetup": 1, - "<<": 1, - "/PageSize": 1, - "setpagedevice": 1, - "A4": 1, - "EndSetup": 1, - "Page": 1, - "Test": 1, - "pageset": 1, - "sqrt": 1, - "showpage": 1, - "EOF": 1 - }, - "PowerShell": { - "Write": 2, - "-": 2, - "Host": 2, - "function": 1, - "hello": 1, - "(": 1, - ")": 1, - "{": 1, - "}": 1 - }, - "Processing": { - "void": 2, - "setup": 1, - "(": 17, - ")": 17, - "{": 2, - "size": 1, - ";": 15, - "background": 1, - "noStroke": 1, - "}": 2, - "draw": 1, - "fill": 6, - "triangle": 2, - "rect": 1, - "quad": 1, - "ellipse": 1, - "arc": 1, - "PI": 1, - "TWO_PI": 1 - }, - "Prolog": { - "-": 161, - "module": 3, - "(": 327, - "format_spec": 12, - "[": 87, - "format_error/2": 1, - "format_spec/2": 1, - "format_spec//1": 1, - "spec_arity/2": 1, - "spec_types/2": 1, - "]": 87, - ")": 326, - ".": 107, - "use_module": 8, - "library": 8, - "dcg/basics": 1, - "eos//0": 1, - "integer//1": 1, - "string_without//2": 1, - "error": 6, - "when": 3, - "when/2": 1, - "%": 71, - "mavis": 1, - "format_error": 8, - "+": 14, - "Goal": 29, - "Error": 25, - "string": 8, - "is": 12, - "nondet.": 1, - "format": 8, - "Format": 23, - "Args": 19, - "format_error_": 5, - "_": 30, - "debug": 4, - "Spec": 10, - "is_list": 1, - "spec_types": 8, - "Types": 16, - "types_error": 3, - "length": 4, - "TypesLen": 3, - "ArgsLen": 3, - "types_error_": 4, - "Arg": 6, - "|": 25, - "Type": 3, - "ground": 5, - "is_of_type": 2, - "message_to_string": 1, - "type_error": 1, - "_Location": 1, - "multifile": 2, - "check": 3, - "checker/2.": 2, - "dynamic": 2, - "checker": 3, - "format_fail/3.": 1, - "prolog_walk_code": 1, - "module_class": 1, - "user": 5, - "infer_meta_predicates": 1, - "false": 2, - "autoload": 1, - "format/": 1, - "{": 7, - "}": 7, - "are": 3, - "always": 1, - "loaded": 1, - "undefined": 1, - "ignore": 1, - "trace_reference": 1, - "on_trace": 1, - "check_format": 3, - "retract": 1, - "format_fail": 2, - "Location": 6, - "print_message": 1, - "warning": 1, - "fail.": 3, - "iterate": 1, - "all": 1, - "errors": 2, - "checker.": 1, - "succeed": 2, - "even": 1, - "if": 1, - "no": 1, - "found": 1, - "Module": 4, - "_Caller": 1, - "predicate_property": 1, - "imported_from": 1, - "Source": 2, - "memberchk": 2, - "system": 1, - "prolog_debug": 1, - "can_check": 2, - "assert": 2, - "to": 5, - "avoid": 1, - "printing": 1, - "goals": 1, - "once": 3, - "clause": 1, - "prolog": 2, - "message": 1, - "message_location": 1, - "//": 1, - "eos.": 1, - "escape": 2, - "Numeric": 4, - "Modifier": 2, - "Action": 15, - "Rest": 12, - "numeric_argument": 5, - "modifier_argument": 3, - "action": 6, - "text": 4, - "String": 6, - ";": 12, - "Codes": 21, - "string_codes": 4, - "string_without": 1, - "list": 4, - "semidet.": 3, - "text_codes": 6, - "phrase": 3, - "spec_arity": 2, - "FormatSpec": 2, - "Arity": 3, - "positive_integer": 1, - "det.": 4, - "type": 2, - "Item": 2, - "Items": 2, - "item_types": 3, - "numeric_types": 5, - "action_types": 18, - "number": 3, - "character": 2, - "star": 2, - "nothing": 2, - "atom_codes": 4, - "Code": 2, - "Text": 1, - "codes": 5, - "Var": 5, - "var": 4, - "Atom": 3, - "atom": 6, - "N": 5, - "integer": 7, - "C": 5, - "colon": 1, - "no_colon": 1, - "is_action": 4, - "multi.": 1, - "a": 4, - "d": 3, - "e": 1, - "float": 3, - "f": 1, - "G": 2, - "I": 1, - "n": 1, - "p": 1, - "any": 3, - "r": 1, - "s": 2, - "t": 1, - "W": 1, - "func": 13, - "op": 2, - "xfy": 2, - "of": 8, - "/2": 3, - "list_util": 1, - "xfy_list/3": 1, - "function_expansion": 5, - "arithmetic": 2, - "wants_func": 4, - "prolog_load_context": 1, - "we": 1, - "don": 1, - "used": 1, - "at": 3, - "compile": 3, - "time": 3, - "for": 1, - "macro": 1, - "expansion.": 1, - "compile_function/4.": 1, - "compile_function": 8, - "Expr": 5, - "In": 15, - "Out": 16, - "evaluable/1": 1, - "throws": 1, - "exception": 1, - "with": 2, - "strings": 1, - "evaluable": 1, - "term_variables": 1, - "F": 26, - "function_composition_term": 2, - "Functor": 8, - "true": 5, - "..": 6, - "format_template": 7, - "has_type": 2, - "fail": 1, - "be": 4, - "explicit": 1, - "Dict": 3, - "is_dict": 1, - "get_dict": 1, - "Function": 5, - "Argument": 1, - "Apply": 1, - "an": 1, - "Argument.": 1, - "A": 1, - "predicate": 4, - "whose": 2, - "final": 1, - "argument": 2, - "generates": 1, - "output": 1, - "and": 2, - "penultimate": 1, - "accepts": 1, - "input.": 1, - "This": 1, - "realized": 1, - "by": 2, - "expanding": 1, - "function": 2, - "application": 2, - "chained": 1, - "calls": 1, - "time.": 1, - "itself": 1, - "can": 3, - "chained.": 2, - "Reversed": 2, - "reverse": 4, - "sort": 2, - "c": 2, - "b": 4, - "meta_predicate": 2, - "throw": 1, - "permission_error": 1, - "call": 4, - "context": 1, - "X": 10, - "Y": 7, - "defer": 1, - "until": 1, - "run": 1, - "P": 2, - "Creates": 1, - "new": 2, - "composing": 1, - "G.": 1, - "The": 1, - "functions": 2, - "composed": 1, - "create": 1, - "compiled": 1, - "which": 1, - "behaves": 1, - "like": 1, - "function.": 1, - "composition": 1, - "Composed": 1, - "also": 1, - "applied": 1, - "/2.": 1, - "fix": 1, - "syntax": 1, - "highlighting": 1, - "functions_to_compose": 2, - "Term": 10, - "Funcs": 7, - "functor": 1, - "Op": 3, - "xfy_list": 2, - "thread_state": 4, - "Goals": 2, - "Tmp": 3, - "instantiation_error": 1, - "append": 2, - "NewArgs": 2, - "variant_sha1": 1, - "Sha": 2, - "current_predicate": 1, - "Functor/2": 2, - "RevFuncs": 2, - "Threaded": 2, - "Body": 2, - "Head": 2, - "compile_predicates": 1, - "Output": 2, - "compound": 1, - "setof": 1, - "arg": 1, - "Name": 2, - "Args0": 2, - "nth1": 2, - "lib": 1, - "ic": 1, - "vabs": 2, - "Val": 8, - "AbsVal": 10, - "#": 9, - "labeling": 2, - "vabsIC": 1, - "or": 1, - "faitListe": 3, - "First": 2, - "Taille": 2, - "Min": 2, - "Max": 2, - "Min..Max": 1, - "Taille1": 2, - "suite": 3, - "Xi": 5, - "Xi1": 7, - "Xi2": 7, - "checkRelation": 3, - "VabsXi1": 2, - "Xi.": 1, - "checkPeriode": 3, - "ListVar": 2, - "Length": 2, - "<": 1, - "X1": 2, - "X2": 2, - "X3": 2, - "X4": 2, - "X5": 2, - "X6": 2, - "X7": 2, - "X8": 2, - "X9": 2, - "X10": 3, - "male": 3, - "john": 2, - "peter": 3, - "female": 2, - "vick": 2, - "christie": 3, - "parents": 4, - "brother": 1, - "M": 2, - "turing": 1, - "Tape0": 2, - "Tape": 2, - "perform": 4, - "q0": 1, - "Ls": 12, - "Rs": 16, - "Ls1": 4, - "qf": 1, - "Q0": 2, - "Ls0": 6, - "Rs0": 6, - "symbol": 3, - "Sym": 6, - "RsRest": 2, - "rule": 1, - "Q1": 2, - "NewSym": 2, - "Rs1": 2, - "left": 4, - "stay": 1, - "right": 1, - "L": 2 - }, - "Propeller Spin": { - "{": 26, - "*****************************************": 4, - "*": 143, - "x4": 4, - "Keypad": 1, - "Reader": 1, - "v1.0": 4, - "Author": 8, - "Beau": 2, - "Schwabe": 2, - "Copyright": 10, - "(": 356, - "c": 33, - ")": 356, - "Parallax": 10, - "See": 10, - "end": 12, - "of": 108, - "file": 9, - "for": 70, - "terms": 9, - "use.": 9, - "}": 26, - "Operation": 2, - "This": 3, - "object": 7, - "uses": 2, - "a": 72, - "capacitive": 1, - "PIN": 1, - "approach": 1, - "to": 191, - "reading": 1, - "the": 136, - "keypad.": 1, - "To": 3, - "do": 26, - "so": 11, - "ALL": 2, - "pins": 26, - "are": 18, - "made": 2, - "LOW": 2, - "and": 95, - "an": 12, - "OUTPUT": 2, - "I/O": 3, - "pins.": 1, - "Then": 1, - "set": 42, - "INPUT": 2, - "state.": 1, - "At": 1, - "this": 26, - "point": 21, - "only": 63, - "one": 4, - "pin": 18, - "is": 51, - "HIGH": 3, - "at": 26, - "time.": 2, - "If": 2, - "closed": 1, - "then": 5, - "will": 12, - "be": 46, - "read": 29, - "on": 12, - "input": 2, - "otherwise": 1, - "returned.": 1, - "The": 17, - "keypad": 4, - "decoding": 1, - "routine": 1, - "requires": 3, - "two": 6, - "subroutines": 1, - "returns": 6, - "entire": 1, - "matrix": 1, - "into": 19, - "single": 2, - "WORD": 1, - "variable": 1, - "indicating": 1, - "which": 16, - "buttons": 2, - "pressed.": 1, - "Multiple": 1, - "button": 2, - "presses": 1, - "allowed": 1, - "with": 8, - "understanding": 1, - "that": 10, - "BOX": 2, - "entries": 1, - "can": 4, - "confused.": 1, - "An": 1, - "example": 3, - "entry...": 1, - "or": 43, - "#": 97, - "etc.": 1, - "where": 2, - "any": 15, - "pressed": 3, - "evaluate": 1, - "non": 3, - "as": 8, - "being": 2, - "even": 1, - "when": 3, - "they": 2, - "not.": 1, - "There": 1, - "no": 7, - "danger": 1, - "physical": 1, - "electrical": 1, - "damage": 1, - "s": 16, - "just": 2, - "way": 1, - "sensing": 1, - "method": 2, - "happens": 1, - "work.": 1, - "Schematic": 1, - "No": 2, - "resistors": 4, - "capacitors.": 1, - "connections": 1, - "directly": 1, - "from": 21, - "Clear": 2, - "value": 51, - "ReadRow": 4, - "Shift": 3, - "left": 12, - "by": 17, - "preset": 1, - "P0": 2, - "P7": 2, - "LOWs": 1, - "dira": 3, - "[": 35, - "]": 34, - "make": 16, - "INPUTSs": 1, - "...": 5, - "now": 3, - "act": 1, - "like": 4, - "tiny": 1, - "capacitors": 1, - "outa": 2, - "n": 4, - "Pin": 1, - "OUTPUT...": 1, - "Make": 1, - ";": 2, - "charge": 10, - "+": 759, - "ina": 3, - "Pn": 1, - "remain": 1, - "discharged": 1, - "DAT": 7, - "TERMS": 9, - "OF": 49, - "USE": 19, - "MIT": 9, - "License": 9, - "Permission": 9, - "hereby": 9, - "granted": 9, - "free": 10, - "person": 9, - "obtaining": 9, - "copy": 21, - "software": 9, - "associated": 11, - "documentation": 9, - "files": 9, - "deal": 9, - "in": 53, - "Software": 28, - "without": 19, - "restriction": 9, - "including": 9, - "limitation": 9, - "rights": 9, - "use": 19, - "modify": 9, - "merge": 9, - "publish": 9, - "distribute": 9, - "sublicense": 9, - "and/or": 9, - "sell": 9, - "copies": 18, - "permit": 9, - "persons": 9, - "whom": 9, - "furnished": 9, - "subject": 9, - "following": 9, - "conditions": 9, - "above": 11, - "copyright": 9, - "notice": 18, - "permission": 9, - "shall": 9, - "included": 9, - "all": 14, - "substantial": 9, - "portions": 9, - "Software.": 9, - "THE": 59, - "SOFTWARE": 19, - "IS": 10, - "PROVIDED": 9, - "WITHOUT": 10, - "WARRANTY": 10, - "ANY": 20, - "KIND": 10, - "EXPRESS": 10, - "OR": 70, - "IMPLIED": 10, - "INCLUDING": 10, - "BUT": 10, - "NOT": 11, - "LIMITED": 10, - "TO": 10, - "WARRANTIES": 10, - "MERCHANTABILITY": 10, - "FITNESS": 10, - "FOR": 20, - "A": 21, - "PARTICULAR": 10, - "PURPOSE": 10, - "AND": 10, - "NONINFRINGEMENT.": 10, - "IN": 40, - "NO": 10, - "EVENT": 10, - "SHALL": 10, - "AUTHORS": 10, - "COPYRIGHT": 10, - "HOLDERS": 10, - "BE": 10, - "LIABLE": 10, - "CLAIM": 10, - "DAMAGES": 10, - "OTHER": 20, - "LIABILITY": 10, - "WHETHER": 10, - "AN": 10, - "ACTION": 10, - "CONTRACT": 10, - "TORT": 10, - "OTHERWISE": 10, - "ARISING": 10, - "FROM": 10, - "OUT": 10, - "CONNECTION": 10, - "WITH": 10, - "DEALINGS": 10, - "SOFTWARE.": 10, - "****************************************": 4, - "Debug_Lcd": 1, - "v1.2": 2, - "Authors": 1, - "Jon": 2, - "Williams": 2, - "Jeff": 2, - "Martin": 2, - "Inc.": 8, - "Debugging": 1, - "wrapper": 1, - "Serial_Lcd": 1, - "-": 486, - "March": 1, - "Updated": 4, - "conform": 1, - "Propeller": 3, - "initialization": 2, - "standards.": 1, - "v1.1": 8, - "April": 1, - "consistency.": 1, - "OBJ": 2, - "lcd": 2, - "number": 27, - "string": 8, - "conversion": 1, - "PUB": 63, - "init": 2, - "baud": 2, - "lines": 24, - "okay": 11, - "Initializes": 1, - "serial": 1, - "LCD": 4, - "true": 6, - "if": 53, - "parameters": 19, - "lcd.init": 1, - "finalize": 1, - "Finalizes": 1, - "frees": 6, - "floats": 1, - "lcd.finalize": 1, - "putc": 1, - "txbyte": 2, - "Send": 1, - "byte": 27, - "terminal": 4, - "lcd.putc": 1, - "str": 3, - "strAddr": 2, - "Print": 15, - "zero": 10, - "terminated": 4, - "lcd.str": 8, - "dec": 3, - "signed": 4, - "decimal": 5, - "num.dec": 1, - "decf": 1, - "width": 9, - "Prints": 2, - "space": 1, - "padded": 2, - "fixed": 1, - "field": 4, - "num.decf": 1, - "decx": 1, - "digits": 23, - "negative": 2, - "num.decx": 1, - "hex": 3, - "hexadecimal": 4, - "num.hex": 1, - "ihex": 1, - "indicated": 2, - "num.ihex": 1, - "bin": 3, - "binary": 4, - "num.bin": 1, - "ibin": 1, - "%": 162, - "num.ibin": 1, - "cls": 1, - "Clears": 2, - "moves": 1, - "cursor": 9, - "home": 4, - "position": 9, - "lcd.cls": 1, - "Moves": 2, - "lcd.home": 1, - "gotoxy": 1, - "col": 9, - "line": 33, - "col/line": 1, - "lcd.gotoxy": 1, - "clrln": 1, - "lcd.clrln": 1, - "type": 4, - "Selects": 1, - "off": 8, - "blink": 4, - "lcd.cursor": 1, - "display": 23, - "status": 15, - "Controls": 1, - "visibility": 1, - "false": 7, - "hide": 1, - "contents": 3, - "clearing": 1, - "lcd.displayOn": 1, - "else": 3, - "lcd.displayOff": 1, - "custom": 2, - "char": 2, - "chrDataAddr": 3, - "Installs": 1, - "character": 6, - "map": 1, - "address": 16, - "definition": 9, - "array": 1, - "lcd.custom": 1, - "backLight": 1, - "Enable": 1, - "disable": 7, - "backlight": 1, - "affects": 1, - "backlit": 1, - "models": 1, - "lcd.backLight": 1, - "***************************************": 12, - "Graphics": 3, - "Driver": 4, - "Chip": 7, - "Gracey": 7, - "Theory": 1, - "cog": 39, - "launched": 1, - "processes": 1, - "commands": 1, - "via": 5, - "routines.": 1, - "Points": 1, - "arcs": 1, - "sprites": 1, - "text": 9, - "polygons": 1, - "rasterized": 1, - "specified": 1, - "stretch": 1, - "memory": 2, - "serves": 1, - "generic": 1, - "bitmap": 15, - "buffer.": 1, - "displayed": 1, - "TV.SRC": 1, - "VGA.SRC": 1, - "driver.": 3, - "GRAPHICS_DEMO.SRC": 1, - "usage": 1, - "example.": 1, - "CON": 4, - "#1": 47, - "_setup": 1, - "_color": 2, - "_width": 2, - "_plot": 2, - "_line": 2, - "_arc": 2, - "_vec": 2, - "_vecarc": 2, - "_pix": 1, - "_pixarc": 1, - "_text": 2, - "_textarc": 1, - "_textmode": 2, - "_fill": 1, - "_loop": 5, - "VAR": 10, - "long": 122, - "command": 7, - "bitmap_base": 7, - "pixel": 40, - "data": 47, - "slices": 3, - "text_xs": 1, - "text_ys": 1, - "text_sp": 1, - "text_just": 1, - "font": 3, - "pointer": 14, - "same": 7, - "instances": 1, - "stop": 9, - "cognew": 4, - "@loop": 1, - "@command": 1, - "Stop": 6, - "graphics": 4, - "driver": 17, - "cogstop": 3, - "setup": 3, - "x_tiles": 9, - "y_tiles": 9, - "x_origin": 2, - "y_origin": 2, - "base_ptr": 3, - "|": 22, - "bases_ptr": 3, - "slices_ptr": 1, - "Set": 5, - "x": 112, - "tiles": 19, - "x16": 7, - "pixels": 14, - "each": 11, - "y": 80, - "relative": 2, - "center": 10, - "base": 6, - "setcommand": 13, - "write": 36, - "bases": 2, - "<<": 70, - "retain": 2, - "high": 7, - "level": 5, - "bitmap_longs": 1, - "clear": 5, - "dest_ptr": 2, - "Copy": 1, - "double": 2, - "buffered": 1, - "flicker": 5, - "destination": 1, - "color": 39, - "bit": 35, - "pattern": 2, - "code": 3, - "bits": 29, - "@colors": 2, - "&": 21, - "determine": 2, - "shape/width": 2, - "w": 8, - "F": 18, - "pixel_width": 1, - "pixel_passes": 2, - "@w": 1, - "update": 7, - "new": 6, - "repeat": 18, - "i": 24, - "p": 8, - "E": 7, - "r": 4, - "<": 14, - "colorwidth": 1, - "plot": 17, - "Plot": 3, - "@x": 6, - "Draw": 7, - "endpoint": 1, - "arc": 21, - "xr": 7, - "yr": 7, - "angle": 23, - "anglestep": 2, - "steps": 9, - "arcmode": 2, - "radii": 3, - "initial": 6, - "FFF": 3, - "..359.956": 3, - "step": 9, - "leaves": 1, - "between": 4, - "points": 2, - "vec": 1, - "vecscale": 5, - "vecangle": 5, - "vecdef_ptr": 5, - "vector": 12, - "sprite": 14, - "scale": 7, - "rotation": 3, - "Vector": 2, - "word": 212, - "length": 4, - "vecarc": 2, - "pix": 3, - "pixrot": 3, - "pixdef_ptr": 3, - "mirror": 1, - "Pixel": 1, - "justify": 4, - "draw": 5, - "textarc": 1, - "string_ptr": 6, - "justx": 2, - "justy": 3, - "it": 8, - "may": 6, - "necessary": 1, - "call": 44, - ".finish": 1, - "immediately": 1, - "afterwards": 1, - "prevent": 1, - "subsequent": 1, - "clobbering": 1, - "drawn": 1, - "@justx": 1, - "@x_scale": 1, - "get": 30, - "half": 2, - "min": 4, - "max": 6, - "pmin": 1, - "round/square": 1, - "corners": 1, - "y2": 7, - "x2": 6, - "fill": 3, - "pmax": 2, - "triangle": 3, - "sides": 1, - "polygon": 1, - "tri": 2, - "x3": 4, - "y3": 5, - "y4": 1, - "x1": 5, - "y1": 7, - "xy": 1, - "solid": 1, - "/": 27, - "finish": 2, - "Wait": 2, - "current": 3, - "insure": 2, - "safe": 1, - "manually": 1, - "manipulate": 1, - "while": 5, - "primitives": 1, - "xa0": 53, - "start": 16, - "ya1": 3, - "ya2": 1, - "ya3": 2, - "ya4": 40, - "ya5": 3, - "ya6": 21, - "ya7": 9, - "ya8": 19, - "ya9": 5, - "yaA": 18, - "yaB": 4, - "yaC": 12, - "yaD": 4, - "yaE": 1, - "yaF": 1, - "xb0": 19, - "yb1": 2, - "yb2": 1, - "yb3": 4, - "yb4": 15, - "yb5": 2, - "yb6": 7, - "yb7": 3, - "yb8": 20, - "yb9": 5, - "ybA": 8, - "ybB": 1, - "ybC": 32, - "ybD": 1, - "ybE": 1, - "ybF": 1, - "ax1": 11, - "radius": 2, - "ay2": 23, - "ay3": 6, - "ay4": 4, - "a0": 8, - "a2": 1, - "farc": 41, - "another": 7, - "arc/line": 1, - "Round": 1, - "recipes": 1, - "C": 11, - "D": 18, - "fline": 88, - "xa2": 48, - "xb2": 26, - "xa1": 8, - "xb1": 2, - "more": 90, - "xa3": 8, - "xb3": 6, - "xb4": 35, - "a9": 3, - "ax2": 30, - "ay1": 10, - "a7": 2, - "aE": 1, - "aC": 2, - ".": 2, - "aF": 4, - "aD": 3, - "aB": 2, - "xa4": 13, - "a8": 8, - "@": 1, - "a4": 3, - "B": 15, - "H": 1, - "J": 1, - "L": 5, - "N": 1, - "P": 6, - "R": 3, - "T": 5, - "aA": 5, - "V": 7, - "X": 4, - "Z": 1, - "b": 1, - "d": 2, - "f": 2, - "h": 2, - "j": 2, - "l": 2, - "t": 10, - "v": 1, - "z": 4, - "delta": 10, - "bullet": 1, - "fx": 1, - "*************************************": 2, - "org": 2, - "loop": 14, - "rdlong": 16, - "t1": 139, - "par": 20, - "wz": 21, - "arguments": 1, - "mov": 154, - "t2": 90, - "t3": 10, - "#8": 14, - "arg": 3, - "arg0": 12, - "add": 92, - "d0": 11, - "#4": 8, - "djnz": 24, - "wrlong": 6, - "dx": 20, - "dy": 15, - "arg1": 3, - "ror": 4, - "#16": 6, - "jump": 1, - "jumps": 6, - "color_": 1, - "plot_": 2, - "arc_": 2, - "vecarc_": 1, - "pixarc_": 1, - "textarc_": 2, - "fill_": 1, - "setup_": 1, - "xlongs": 4, - "xorigin": 2, - "yorigin": 4, - "arg3": 12, - "basesptr": 4, - "arg5": 6, - "jmp": 24, - "#loop": 9, - "width_": 1, - "pwidth": 3, - "passes": 3, - "#plotd": 3, - "line_": 1, - "#linepd": 2, - "arg7": 6, - "#3": 7, - "cmp": 16, - "exit": 5, - "px": 14, - "py": 11, - "mode": 7, - "if_z": 11, - "#plotp": 3, - "test": 38, - "arg4": 5, - "iterations": 1, - "vecdef": 1, - "rdword": 10, - "t7": 8, - "add/sub": 1, - "to/from": 1, - "t6": 7, - "sumc": 4, - "#multiply": 2, - "round": 1, - "up": 4, - "/2": 1, - "lsb": 1, - "shr": 24, - "t4": 7, - "if_nc": 15, - "h8000": 5, - "wc": 57, - "if_c": 37, - "xwords": 1, - "ywords": 1, - "xxxxxxxx": 2, - "save": 1, - "actual": 4, - "sy": 5, - "rdbyte": 3, - "origin": 1, - "adjust": 4, - "neg": 2, - "sub": 12, - "arg2": 7, - "sumnc": 7, - "if_nz": 18, - "yline": 1, - "sx": 4, - "#0": 20, - "next": 16, - "#2": 15, - "shl": 21, - "t5": 4, - "xpixel": 2, - "rol": 1, - "muxc": 5, - "pcolor": 5, - "color1": 2, - "color2": 2, - "@string": 1, - "#arcmod": 1, - "text_": 1, - "chr": 4, - "done": 3, - "scan": 7, - "tjz": 8, - "def": 2, - "extract": 4, - "_0001_1": 1, - "#fontb": 3, - "textsy": 2, - "starting": 1, - "_0011_0": 1, - "#11": 1, - "#arcd": 1, - "#fontxy": 1, - "advance": 2, - "textsx": 3, - "_0111_0": 1, - "setd_ret": 1, - "fontxy_ret": 1, - "ret": 17, - "fontb": 1, - "multiply": 8, - "fontb_ret": 1, - "textmode_": 1, - "textsp": 2, - "da": 1, - "db": 1, - "db2": 1, - "linechange": 1, - "lines_minus_1": 1, - "right": 9, - "fractions": 1, - "pre": 1, - "increment": 1, - "counter": 1, - "yloop": 2, - "integers": 1, - "base0": 17, - "base1": 10, - "sar": 8, - "cmps": 3, - "out": 24, - "range": 2, - "ylongs": 6, - "skip": 5, - "mins": 1, - "mask": 3, - "mask0": 8, - "#5": 2, - "ready": 10, - "count": 4, - "mask1": 6, - "bits0": 6, - "bits1": 5, - "pass": 5, - "not": 6, - "full": 3, - "longs": 15, - "deltas": 1, - "linepd": 1, - "wr": 2, - "direction": 2, - "abs": 1, - "dominant": 2, - "axis": 1, - "last": 6, - "ratio": 1, - "xloop": 1, - "linepd_ret": 1, - "plotd": 1, - "wide": 3, - "bounds": 2, - "#plotp_ret": 2, - "#7": 2, - "store": 1, - "writes": 1, - "pair": 1, - "account": 1, - "special": 1, - "case": 5, - "andn": 7, - "slice": 7, - "shift0": 1, - "colorize": 1, - "upper": 2, - "subx": 1, - "#wslice": 1, - "offset": 14, - "Get": 2, - "args": 5, - "move": 2, - "using": 1, - "first": 9, - "arg6": 1, - "arcmod_ret": 1, - "arg2/t4": 1, - "arg4/t6": 1, - "arcd": 1, - "#setd": 1, - "#polarx": 1, - "Polar": 1, - "cartesian": 1, - "polarx": 1, - "sine_90": 2, - "sine": 7, - "quadrant": 3, - "nz": 3, - "negate": 2, - "table": 9, - "sine_table": 1, - "shift": 7, - "final": 3, - "sine/cosine": 1, - "integer": 2, - "negnz": 3, - "sine_180": 1, - "shifted": 1, - "multiplier": 3, - "product": 1, - "Defined": 1, - "constants": 2, - "hFFFFFFFF": 1, - "FFFFFFFF": 1, - "fontptr": 1, - "Undefined": 2, - "temps": 1, - "res": 89, - "pointers": 2, - "slicesptr": 1, - "line/plot": 1, - "coordinates": 1, - "Inductive": 1, - "Sensor": 1, - "Demo": 1, - "Test": 2, - "Circuit": 1, - "pF": 1, - "K": 4, - "M": 1, - "FPin": 2, - "SDF": 1, - "sigma": 3, - "feedback": 2, - "SDI": 1, - "GND": 4, - "Coils": 1, - "Wire": 1, - "used": 9, - "was": 2, - "GREEN": 2, - "about": 4, - "gauge": 1, - "Coke": 3, - "Can": 3, - "form": 7, - "MHz": 16, - "BIC": 1, - "pen": 1, - "How": 1, - "does": 2, - "work": 2, - "Note": 1, - "reported": 2, - "resonate": 5, - "frequency": 18, - "LC": 8, - "frequency.": 2, - "Instead": 1, - "voltage": 5, - "produced": 1, - "circuit": 5, - "clipped.": 1, - "In": 2, - "below": 4, - "When": 1, - "you": 5, - "apply": 1, - "small": 1, - "specific": 1, - "near": 1, - "uncommon": 1, - "measure": 1, - "times": 3, - "amount": 1, - "applying": 1, - "circuit.": 1, - "through": 1, - "diode": 2, - "basically": 1, - "feeds": 1, - "divide": 3, - "divider": 1, - "...So": 1, - "order": 1, - "see": 2, - "ADC": 2, - "sweep": 2, - "result": 6, - "output": 11, - "needs": 1, - "generate": 1, - "Volts": 1, - "ground.": 1, - "drop": 1, - "across": 1, - "since": 1, - "sensitive": 1, - "works": 1, - "after": 2, - "divider.": 1, - "typical": 1, - "magnitude": 1, - "applied": 2, - "might": 1, - "look": 2, - "something": 1, - "*****": 4, - "...With": 1, - "looks": 1, - "X****": 1, - "...The": 1, - "denotes": 1, - "location": 1, - "reason": 1, - "slightly": 1, - "reasons": 1, - "really.": 1, - "lazy": 1, - "I": 1, - "didn": 1, - "acts": 1, - "dead": 1, - "short.": 1, - "situation": 1, - "exactly": 1, - "great": 1, - "gr.start": 2, - "gr.setup": 2, - "FindResonateFrequency": 1, - "DisplayInductorValue": 2, - "Freq.Synth": 1, - "FValue": 1, - "ADC.SigmaDelta": 1, - "@FTemp": 1, - "gr.clear": 1, - "gr.copy": 2, - "display_base": 2, - "Option": 2, - "Start": 6, - "*********************************************": 2, - "Frequency": 1, - "LowerFrequency": 2, - "*100/": 1, - "UpperFrequency": 1, - "gr.colorwidth": 4, - "gr.plot": 3, - "gr.line": 3, - "FTemp/1024": 1, - "Finish": 1, - "PS/2": 1, - "Keyboard": 1, - "v1.0.1": 2, - "REVISION": 2, - "HISTORY": 2, - "/15/2006": 2, - "Tool": 1, - "par_tail": 1, - "key": 4, - "buffer": 4, - "head": 1, - "par_present": 1, - "states": 1, - "par_keys": 1, - "******************************************": 2, - "entry": 1, - "movd": 10, - "#_dpin": 1, - "masks": 1, - "dmask": 4, - "_dpin": 3, - "cmask": 2, - "_cpin": 2, - "reset": 14, - "parameter": 14, - "_head": 6, - "_present/_states": 1, - "dlsb": 2, - "stat": 6, - "Update": 1, - "_head/_present/_states": 1, - "#1*4": 1, - "scancode": 2, - "state": 2, - "#receive": 1, - "AA": 1, - "extended": 1, - "if_nc_and_z": 2, - "F0": 3, - "unknown": 2, - "ignore": 2, - "#newcode": 1, - "_states": 2, - "set/clear": 1, - "#_states": 1, - "reg": 5, - "muxnc": 5, - "cmpsub": 4, - "shift/ctrl/alt/win": 1, - "pairs": 1, - "E0": 1, - "handle": 1, - "scrlock/capslock/numlock": 1, - "_000": 5, - "_locks": 5, - "#29": 1, - "change": 3, - "configure": 3, - "flag": 5, - "leds": 3, - "check": 5, - "shift1": 1, - "if_nz_and_c": 4, - "#@shift1": 1, - "@table": 1, - "#look": 1, - "alpha": 1, - "considering": 1, - "capslock": 1, - "if_nz_and_nc": 1, - "xor": 8, - "flags": 1, - "alt": 1, - "room": 1, - "valid": 2, - "enter": 1, - "FF": 3, - "#11*4": 1, - "wrword": 1, - "F3": 1, - "keyboard": 3, - "lock": 1, - "#transmit": 2, - "rev": 1, - "rcl": 2, - "_present": 2, - "#update": 1, - "Lookup": 2, - "perform": 2, - "lookup": 1, - "movs": 9, - "#table": 1, - "#27": 1, - "#rand": 1, - "Transmit": 1, - "pull": 2, - "clock": 4, - "low": 5, - "napshr": 3, - "#13": 3, - "#18": 2, - "release": 1, - "transmit_bit": 1, - "#wait_c0": 2, - "_d2": 1, - "wcond": 3, - "c1": 2, - "c0d0": 2, - "wait": 6, - "until": 3, - "#wait": 2, - "#receive_ack": 1, - "ack": 1, - "error": 1, - "#reset": 2, - "transmit_ret": 1, - "receive": 1, - "receive_bit": 1, - "pause": 1, - "us": 1, - "#nap": 1, - "_d3": 1, - "#receive_bit": 1, - "align": 1, - "isolate": 1, - "look_ret": 1, - "receive_ack_ret": 1, - "receive_ret": 1, - "wait_c0": 1, - "c0": 1, - "timeout": 1, - "ms": 4, - "wloop": 1, - "required": 4, - "_d4": 1, - "replaced": 1, - "c0/c1/c0d0/c1d1": 1, - "if_never": 1, - "replacements": 1, - "#wloop": 3, - "if_c_or_nz": 1, - "c1d1": 1, - "if_nc_or_z": 1, - "nap": 5, - "scales": 1, - "time": 7, - "snag": 1, - "cnt": 2, - "elapses": 1, - "nap_ret": 1, - "F9": 1, - "F5": 1, - "D2": 1, - "F1": 2, - "D1": 1, - "F12": 1, - "F10": 1, - "D7": 1, - "F6": 1, - "D3": 1, - "Tab": 2, - "Alt": 2, - "F3F2": 1, - "q": 1, - "Win": 2, - "Space": 2, - "Apps": 1, - "Power": 1, - "Sleep": 1, - "EF2F": 1, - "CapsLock": 1, - "Enter": 3, - "WakeUp": 1, - "BackSpace": 1, - "C5E1": 1, - "C0E4": 1, - "Home": 1, - "Insert": 1, - "C9EA": 1, - "Down": 1, - "E5": 1, - "Right": 1, - "C2E8": 1, - "Esc": 1, - "DF": 2, - "F11": 1, - "EC": 1, - "PageDn": 1, - "ED": 1, - "PrScr": 1, - "C6E9": 1, - "ScrLock": 1, - "D6": 1, - "Uninitialized": 3, - "_________": 5, - "Key": 1, - "Codes": 1, - "keypress": 1, - "keystate": 2, - "E0..FF": 1, - "AS": 1, - "TV": 9, - "May": 2, - "tile": 41, - "size": 5, - "enable": 5, - "efficient": 2, - "tv_mode": 2, - "NTSC": 11, - "lntsc": 3, - "cycles": 4, - "per": 4, - "sync": 10, - "fpal": 2, - "_433_618": 2, - "PAL": 10, - "spal": 3, - "colortable": 7, - "inside": 2, - "tvptr": 3, - "starts": 4, - "available": 4, - "@entry": 3, - "Assembly": 2, - "language": 2, - "Entry": 2, - "tasks": 6, - "#10": 2, - "Superfield": 2, - "_mode": 7, - "interlace": 20, - "vinv": 2, - "hsync": 5, - "waitvid": 3, - "burst": 2, - "sync_high2": 2, - "task": 2, - "section": 4, - "undisturbed": 2, - "black": 2, - "visible": 7, - "vb": 2, - "leftmost": 1, - "_vt": 3, - "vertical": 29, - "expand": 3, - "vert": 1, - "vscl": 12, - "hb": 2, - "horizontal": 21, - "hx": 5, - "colors": 18, - "screen": 13, - "video": 7, - "repoint": 2, - "hf": 2, - "linerot": 5, - "field1": 4, - "unless": 2, - "invisible": 8, - "if_z_eq_c": 1, - "#hsync": 1, - "vsync": 4, - "pulses": 2, - "vsync1": 2, - "#sync_low1": 1, - "hhalf": 2, - "field2": 1, - "#superfield": 1, - "Blank": 1, - "Horizontal": 1, - "pal": 2, - "toggle": 1, - "phaseflip": 4, - "phasemask": 2, - "sync_scale1": 1, - "blank": 2, - "hsync_ret": 1, - "vsync_high": 1, - "#sync_high1": 1, - "Tasks": 1, - "performed": 1, - "sections": 1, - "during": 2, - "back": 8, - "porch": 9, - "load": 3, - "#_enable": 1, - "_pins": 4, - "_enable": 2, - "#disabled": 2, - "break": 6, - "return": 15, - "later": 6, - "rd": 1, - "#wtab": 1, - "ltab": 1, - "#ltab": 1, - "CLKFREQ": 10, - "cancel": 1, - "_broadcast": 4, - "m8": 3, - "jmpret": 5, - "taskptr": 3, - "taskret": 4, - "ctra": 5, - "pll": 5, - "fcolor": 4, - "#divide": 2, - "vco": 3, - "movi": 3, - "_111": 1, - "ctrb": 4, - "limit": 4, - "m128": 2, - "_100": 1, - "within": 5, - "_001": 1, - "frqb": 2, - "swap": 2, - "broadcast/baseband": 1, - "strip": 3, - "chroma": 19, - "baseband": 18, - "_auralcog": 1, - "_hx": 4, - "consider": 2, - "lineadd": 4, - "lineinc": 3, - "/160": 2, - "loaded": 3, - "#9": 2, - "FC": 2, - "_colors": 2, - "colorreg": 3, - "d6": 3, - "colorloop": 1, - "keep": 2, - "loading": 2, - "m1": 4, - "multiply_ret": 2, - "Disabled": 2, - "try": 2, - "again": 2, - "reload": 1, - "_000_000": 6, - "d0s1": 1, - "F0F0F0F0": 1, - "pins0": 1, - "_01110000_00001111_00000111": 1, - "pins1": 1, - "_11110111_01111111_01110111": 1, - "sync_high1": 1, - "_101010_0101": 1, - "NTSC/PAL": 2, - "metrics": 1, - "tables": 1, - "wtab": 1, - "sntsc": 3, - "lpal": 3, - "hrest": 2, - "vvis": 2, - "vrep": 2, - "_8A": 1, - "_AA": 1, - "sync_scale2": 1, - "_00000000_01_10101010101010_0101": 1, - "m2": 1, - "Parameter": 4, - "/non": 4, - "tccip": 3, - "_screen": 3, - "@long": 2, - "_ht": 2, - "_ho": 2, - "fit": 2, - "contiguous": 1, - "tv_status": 4, - "off/on": 3, - "tv_pins": 5, - "ntsc/pal": 3, - "tv_screen": 5, - "tv_ht": 5, - "tv_hx": 5, - "expansion": 8, - "tv_ho": 5, - "tv_broadcast": 4, - "aural": 13, - "fm": 6, - "preceding": 2, - "copied": 2, - "your": 2, - "code.": 2, - "After": 2, - "setting": 2, - "variables": 3, - "@tv_status": 3, - "All": 2, - "reloaded": 2, - "superframe": 2, - "allowing": 2, - "live": 2, - "changes.": 2, - "minimize": 2, - "correlate": 2, - "changes": 3, - "tv_status.": 1, - "Experimentation": 2, - "optimize": 2, - "some": 3, - "parameters.": 2, - "descriptions": 2, - "sets": 3, - "indicate": 2, - "disabled": 3, - "tv_enable": 2, - "requirement": 2, - "currently": 4, - "outputting": 4, - "driven": 2, - "reduces": 2, - "power": 3, - "_______": 2, - "select": 9, - "group": 7, - "_0111": 6, - "broadcast": 19, - "_1111": 6, - "_0000": 4, - "active": 3, - "top": 10, - "nibble": 4, - "bottom": 5, - "signal": 8, - "arranged": 3, - "attach": 1, - "ohm": 10, - "resistor": 4, - "sum": 7, - "/560/1100": 2, - "subcarrier": 3, - "network": 1, - "visual": 1, - "carrier": 1, - "selects": 4, - "x32": 6, - "tileheight": 4, - "controls": 4, - "mixing": 2, - "mix": 2, - "black/white": 2, - "composite": 1, - "progressive": 2, - "less": 5, - "good": 5, - "motion": 2, - "interlaced": 5, - "doubles": 1, - "format": 1, - "ticks": 11, - "must": 18, - "least": 14, - "_318_180": 1, - "_579_545": 1, - "Hz": 5, - "_734_472": 1, - "itself": 1, - "words": 5, - "define": 10, - "tv_vt": 3, - "has": 4, - "bitfields": 2, - "colorset": 2, - "ptr": 5, - "pixelgroup": 2, - "colorset*": 2, - "pixelgroup**": 2, - "ppppppppppcccc00": 2, - "colorsets": 4, - "four": 8, - "**": 2, - "pixelgroups": 2, - "": 5, - "tv_colors": 2, - "fields": 2, - "values": 2, - "luminance": 2, - "modulation": 4, - "adds/subtracts": 1, - "beware": 1, - "modulated": 1, - "produce": 1, - "saturated": 1, - "toggling": 1, - "levels": 1, - "because": 1, - "abruptly": 1, - "rather": 1, - "against": 1, - "white": 2, - "background": 1, - "best": 1, - "appearance": 1, - "_____": 6, - "practical": 2, - "/30": 1, - "factor": 4, - "sure": 4, - "||": 5, - "than": 5, - "tv_vx": 2, - "tv_vo": 2, - "pos/neg": 4, - "centered": 2, - "image": 2, - "shifts": 4, - "right/left": 2, - "up/down": 2, - "____________": 1, - "expressed": 1, - "ie": 1, - "channel": 1, - "_250_000": 2, - "modulator": 2, - "turned": 2, - "saves": 2, - "broadcasting": 1, - "___________": 1, - "tv_auralcog": 1, - "supply": 1, - "selected": 1, - "bandwidth": 2, - "KHz": 3, - "vary": 1, - "Terminal": 1, - "instead": 1, - "minimum": 2, - "x_scale": 4, - "x_spacing": 4, - "normal": 1, - "x_chr": 2, - "y_chr": 5, - "y_scale": 3, - "y_spacing": 3, - "y_offset": 2, - "x_limit": 2, - "x_screen": 1, - "y_limit": 3, - "y_screen": 4, - "y_max": 3, - "y_screen_bytes": 2, - "y_scroll": 2, - "y_scroll_longs": 4, - "y_clear": 2, - "y_clear_longs": 2, - "paramcount": 1, - "ccinp": 1, - "tv_hc": 1, - "cells": 1, - "cell": 1, - "@bitmap": 1, - "FC0": 1, - "gr.textmode": 1, - "gr.width": 1, - "tv.stop": 2, - "gr.stop": 1, - "schemes": 1, - "tab": 3, - "gr.color": 1, - "gr.text": 1, - "@c": 1, - "gr.finish": 2, - "newline": 3, - "strsize": 2, - "_000_000_000": 2, - "//": 4, - "elseif": 2, - "lookupz": 2, - "..": 4, - "PRI": 1, - "longmove": 2, - "longfill": 2, - "tvparams": 1, - "tvparams_pins": 1, - "_0101": 1, - "vc": 1, - "vx": 2, - "vo": 1, - "auralcog": 1, - "color_schemes": 1, - "BC_6C_05_02": 1, - "E_0D_0C_0A": 1, - "E_6D_6C_6A": 1, - "BE_BD_BC_BA": 1, - "Text": 1, - "x13": 2, - "cols": 5, - "rows": 4, - "screensize": 4, - "lastrow": 2, - "tv_count": 2, - "row": 4, - "tv": 2, - "basepin": 3, - "setcolors": 2, - "@palette": 1, - "@tv_params": 1, - "@screen": 3, - "tv.start": 1, - "stringptr": 3, - "k": 1, - "Output": 1, - "backspace": 1, - "spaces": 1, - "follows": 4, - "Y": 2, - "others": 1, - "printable": 1, - "characters": 1, - "wordfill": 2, - "print": 2, - "A..": 1, - "other": 1, - "colorptr": 2, - "fore": 3, - "Override": 1, - "default": 1, - "palette": 2, - "list": 1, - "scroll": 1, - "hc": 1, - "ho": 1, - "dark": 2, - "blue": 3, - "BB": 1, - "yellow": 1, - "brown": 1, - "cyan": 3, - "red": 2, - "pink": 1, - "VGA": 8, - "vga_mode": 3, - "vgaptr": 3, - "hv": 5, - "bcolor": 3, - "#colortable": 2, - "#blank_line": 3, - "nobl": 1, - "_vx": 1, - "nobp": 1, - "nofp": 1, - "#blank_hsync": 1, - "front": 4, - "vf": 1, - "nofl": 1, - "#tasks": 1, - "before": 1, - "_vs": 2, - "except": 1, - "#blank_vsync": 1, - "#field": 1, - "superfield": 1, - "blank_vsync": 1, - "h2": 2, - "if_c_and_nz": 1, - "blank_hsync": 1, - "_hf": 1, - "invisble": 1, - "_hb": 1, - "#hv": 1, - "blank_hsync_ret": 1, - "blank_line_ret": 1, - "blank_vsync_ret": 1, - "_status": 1, - "#paramcount": 1, - "directions": 1, - "_rate": 3, - "pllmin": 1, - "_011": 1, - "rate": 6, - "hvbase": 5, - "frqa": 3, - "vmask": 1, - "hmask": 1, - "vcfg": 2, - "colormask": 1, - "waitcnt": 3, - "#entry": 1, - "Initialized": 1, - "lowest": 1, - "pllmax": 1, - "*16": 1, - "m4": 1, - "tihv": 1, - "_hd": 1, - "_hs": 1, - "_vd": 1, - "underneath": 1, - "BF": 1, - "___": 1, - "/1/2": 1, - "off/visible/invisible": 1, - "vga_enable": 3, - "pppttt": 1, - "vga_colors": 2, - "vga_vt": 6, - "vga_vx": 4, - "vga_vo": 4, - "vga_hf": 2, - "vga_hb": 2, - "vga_vf": 2, - "vga_vb": 2, - "tick": 2, - "@vga_status": 1, - "vga_status.": 1, - "__________": 4, - "vga_status": 1, - "________": 3, - "vga_pins": 1, - "monitors": 1, - "allows": 1, - "polarity": 1, - "respectively": 1, - "vga_screen": 1, - "vga_ht": 3, - "care": 1, - "suggested": 1, - "bits/pins": 3, - "green": 1, - "bit/pin": 1, - "signals": 1, - "connect": 3, - "RED": 1, - "BLUE": 1, - "connector": 3, - "always": 2, - "HSYNC": 1, - "VSYNC": 1, - "______": 14, - "vga_hx": 3, - "vga_ho": 2, - "equal": 1, - "vga_hd": 2, - "exceed": 1, - "vga_vd": 2, - "recommended": 2, - "vga_hs": 1, - "vga_vs": 1, - "vga_rate": 2, - "should": 1, - "Vocal": 2, - "Tract": 2, - "October": 1, - "synthesizes": 1, - "human": 1, - "vocal": 10, - "tract": 12, - "real": 2, - "It": 1, - "MHz.": 1, - "controlled": 1, - "reside": 1, - "parent": 1, - "aa": 2, - "ga": 5, - "gp": 2, - "vp": 3, - "vr": 1, - "f1": 4, - "f2": 1, - "f3": 3, - "f4": 2, - "na": 2, - "nf": 2, - "fa": 2, - "ff": 2, - "values.": 2, - "Before": 1, - "were": 1, - "interpolation": 1, - "shy": 1, - "frame": 12, - "makes": 1, - "behave": 1, - "sensibly": 1, - "gaps.": 1, - "frame_buffers": 2, - "bytes": 2, - "frame_longs": 3, - "frame_bytes": 1, - "...must": 1, - "dira_": 3, - "dirb_": 1, - "ctra_": 1, - "ctrb_": 3, - "frqa_": 3, - "cnt_": 1, - "many": 1, - "...contiguous": 1, - "tract_ptr": 3, - "pos_pin": 7, - "neg_pin": 6, - "fm_offset": 5, - "positive": 1, - "also": 1, - "enabled": 2, - "generation": 2, - "_500_000": 1, - "Remember": 1, - "duty": 2, - "Ready": 1, - "clkfreq": 2, - "Launch": 1, - "@attenuation": 1, - "Reset": 1, - "buffers": 1, - "@index": 1, - "constant": 3, - "frame_buffer_longs": 2, - "set_attenuation": 1, - "master": 2, - "attenuation": 3, - "initially": 2, - "set_pace": 2, - "percentage": 3, - "pace": 3, - "go": 1, - "Queue": 1, - "transition": 1, - "over": 2, - "Load": 1, - "bytemove": 1, - "@frames": 1, - "index": 5, - "Increment": 1, - "Returns": 4, - "queue": 2, - "useful": 2, - "checking": 1, - "would": 1, - "have": 1, - "frames": 2, - "empty": 2, - "detecting": 1, - "finished": 1, - "sample_ptr": 1, - "receives": 1, - "audio": 1, - "samples": 1, - "updated": 1, - "@sample": 1, - "aural_id": 1, - "id": 2, - "executing": 1, - "algorithm": 1, - "connecting": 1, - "Initialization": 1, - "reserved": 3, - "clear_cnt": 1, - "#2*15": 1, - "hub": 1, - "minst": 3, - "d0s0": 3, - "mult_ret": 1, - "antilog_ret": 1, - "assemble": 1, - "cordic": 4, - "reserves": 2, - "cstep": 1, - "instruction": 2, - "prepare": 1, - "cnt_value": 3, - "cnt_ticks": 3, - "Loop": 1, - "sample": 2, - "period": 1, - "cycle": 1, - "driving": 1, - "h80000000": 2, - "White": 1, - "noise": 3, - "source": 2, - "lfsr": 1, - "lfsr_taps": 2, - "Aspiration": 1, - "vibrato": 3, - "vphase": 2, - "glottal": 2, - "pitch": 5, - "mesh": 1, - "tune": 2, - "convert": 1, - "log": 2, - "phase": 2, - "gphase": 3, - "formant2": 2, - "rotate": 2, - "f2x": 3, - "f2y": 3, - "#cordic": 2, - "formant4": 2, - "f4x": 3, - "f4y": 3, - "subtract": 1, - "nx": 4, - "negated": 1, - "nasal": 2, - "amplitude": 3, - "#mult": 1, - "fphase": 4, - "frication": 2, - "#sine": 1, - "Handle": 1, - "frame_ptr": 6, - "past": 1, - "miscellaneous": 2, - "frame_index": 3, - "stepsize": 2, - "step_size": 5, - "h00FFFFFF": 2, - "final1": 2, - "finali": 2, - "iterate": 3, - "aa..ff": 4, - "accurate": 1, - "accumulation": 1, - "step_acc": 3, - "set2": 3, - "#par_curr": 1, - "set3": 2, - "#par_next": 1, - "set4": 3, - "#par_step": 1, - "#24": 1, - "par_curr": 3, - "absolute": 1, - "msb": 2, - "nr": 1, - "mult": 2, - "par_step": 1, - "frame_cnt": 2, - "step1": 2, - "stepi": 1, - "stepframe": 1, - "#frame_bytes": 1, - "par_next": 2, - "Math": 1, - "Subroutines": 1, - "Antilog": 1, - "whole": 2, - "fraction": 1, - "antilog": 2, - "FFEA0000": 1, - "h00000FFE": 2, - "insert": 2, - "leading": 1, - "Scaled": 1, - "unsigned": 3, - "h00001000": 2, - "negc": 1, - "Multiply": 1, - "#15": 1, - "mult_step": 1, - "Cordic": 1, - "degree": 1, - "#cordic_steps": 1, - "gets": 1, - "assembled": 1, - "cordic_dx": 1, - "incremented": 1, - "cordic_a": 1, - "cordic_delta": 2, - "linear": 1, - "register": 1, - "B901476": 1, - "greater": 1, - "h40000000": 1, - "h01000000": 1, - "FFFFFF": 1, - "h00010000": 1, - "h0000D000": 1, - "D000": 1, - "h00007000": 1, - "FFE": 1, - "h00000800": 1, - "registers": 2, - "startup": 2, - "Data": 1, - "zeroed": 1, - "cleared": 1, - "f1x": 1, - "f1y": 1, - "f3x": 1, - "f3y": 1, - "aspiration": 1, - "***": 1, - "mult_steps": 1, - "assembly": 1, - "area": 1, - "w/ret": 1, - "cordic_ret": 1 - }, - "Protocol Buffer": { - "package": 1, - "tutorial": 1, - ";": 13, - "option": 2, - "java_package": 1, - "java_outer_classname": 1, - "message": 3, - "Person": 2, - "{": 4, - "required": 3, - "string": 3, - "name": 1, - "int32": 1, - "id": 1, - "optional": 2, - "email": 1, - "enum": 1, - "PhoneType": 2, - "MOBILE": 1, - "HOME": 2, - "WORK": 1, - "}": 4, - "PhoneNumber": 2, - "number": 1, - "type": 1, - "[": 1, - "default": 1, - "]": 1, - "repeated": 2, - "phone": 1, - "AddressBook": 1, - "person": 1 - }, - "PureScript": { - "module": 4, - "Control.Arrow": 1, - "where": 20, - "import": 32, - "Data.Tuple": 3, - "class": 4, - "Arrow": 5, - "a": 46, - "arr": 10, - "forall": 26, - "b": 49, - "c.": 3, - "(": 111, - "-": 88, - "c": 17, - ")": 115, - "first": 4, - "d.": 2, - "Tuple": 21, - "d": 6, - "instance": 12, - "arrowFunction": 1, - "f": 28, - "second": 3, - "Category": 3, - "swap": 4, - "b.": 1, - "x": 26, - "y": 2, - "infixr": 3, - "***": 2, - "&&": 3, - "&": 3, - ".": 2, - "g": 4, - "ArrowZero": 1, - "zeroArrow": 1, - "<+>": 2, - "ArrowPlus": 1, - "Data.Foreign": 2, - "Foreign": 12, - "..": 1, - "ForeignParser": 29, - "parseForeign": 6, - "parseJSON": 3, - "ReadForeign": 11, - "read": 10, - "prop": 3, - "Prelude": 3, - "Data.Array": 3, - "Data.Either": 1, - "Data.Maybe": 3, - "Data.Traversable": 2, - "foreign": 6, - "data": 3, - "*": 1, - "fromString": 2, - "String": 13, - "Either": 6, - "readPrimType": 5, - "a.": 6, - "readMaybeImpl": 2, - "Maybe": 5, - "readPropImpl": 2, - "showForeignImpl": 2, - "showForeign": 1, - "Prelude.Show": 1, - "show": 5, - "p": 11, - "json": 2, - "monadForeignParser": 1, - "Prelude.Monad": 1, - "return": 6, - "_": 7, - "Right": 9, - "case": 9, - "of": 9, - "Left": 8, - "err": 8, - "applicativeForeignParser": 1, - "Prelude.Applicative": 1, - "pure": 1, - "<*>": 2, - "<$>": 8, - "functorForeignParser": 1, - "Prelude.Functor": 1, - "readString": 1, - "readNumber": 1, - "Number": 1, - "readBoolean": 1, - "Boolean": 1, - "readArray": 1, - "[": 5, - "]": 5, - "let": 4, - "arrayItem": 2, - "i": 2, - "result": 4, - "+": 30, - "in": 2, - "xs": 3, - "traverse": 2, - "zip": 1, - "range": 1, - "length": 3, - "readMaybe": 1, - "<<": 4, - "<": 13, - "Just": 7, - "Nothing": 7, - "Data.Map": 1, - "Map": 26, - "empty": 6, - "singleton": 5, - "insert": 10, - "lookup": 8, - "delete": 9, - "alter": 8, - "toList": 10, - "fromList": 3, - "union": 3, - "map": 8, - "qualified": 1, - "as": 1, - "P": 1, - "concat": 3, - "Data.Foldable": 2, - "foldl": 4, - "k": 108, - "v": 57, - "Leaf": 15, - "|": 9, - "Branch": 27, - "{": 25, - "key": 13, - "value": 8, - "left": 15, - "right": 14, - "}": 26, - "eqMap": 1, - "P.Eq": 11, - "m1": 6, - "m2": 6, - "P.": 11, - "/": 1, - "P.not": 1, - "showMap": 1, - "P.Show": 3, - "m": 6, - "P.show": 1, - "v.": 11, - "P.Ord": 9, - "b@": 6, - "k1": 16, - "b.left": 9, - "b.right": 8, - "findMinKey": 5, - "glue": 4, - "minKey": 3, - "root": 2, - "b.key": 1, - "b.value": 2, - "v1": 3, - "v2.": 1, - "v2": 2, - "ReactiveJQueryTest": 1, - "flip": 2, - "Control.Monad": 1, - "Control.Monad.Eff": 1, - "Control.Monad.JQuery": 1, - "Control.Reactive": 1, - "Control.Reactive.JQuery": 1, - "head": 2, - "Data.Monoid": 1, - "Debug.Trace": 1, - "Global": 1, - "parseInt": 1, - "main": 1, - "do": 4, - "personDemo": 2, - "todoListDemo": 1, - "greet": 1, - "firstName": 2, - "lastName": 2, - "Create": 3, - "new": 1, - "reactive": 1, - "variables": 1, - "to": 3, - "hold": 1, - "the": 3, - "user": 1, - "readRArray": 1, - "insertRArray": 1, - "text": 5, - "completed": 2, - "paragraph": 2, - "display": 2, - "next": 1, - "task": 4, - "nextTaskLabel": 3, - "create": 2, - "append": 2, - "nextTask": 2, - "toComputedArray": 2, - "toComputed": 2, - "bindTextOneWay": 2, - "counter": 3, - "counterLabel": 3, - "rs": 2, - "cs": 2, - "<->": 1, - "if": 1, - "then": 1, - "else": 1, - "entry": 1, - "entry.completed": 1 - }, - "Python": { - "xspacing": 4, - "#": 28, - "How": 2, - "far": 1, - "apart": 1, - "should": 1, - "each": 1, - "horizontal": 1, - "location": 1, - "be": 1, - "spaced": 1, - "maxwaves": 3, - "total": 1, - "of": 5, - "waves": 1, - "to": 5, - "add": 1, - "together": 1, - "theta": 3, - "amplitude": 3, - "[": 165, - "]": 165, - "Height": 1, - "wave": 2, - "dx": 8, - "yvalues": 7, - "def": 87, - "setup": 2, - "(": 850, - ")": 861, - "size": 5, - "frameRate": 1, - "colorMode": 1, - "RGB": 1, - "w": 2, - "width": 1, - "+": 51, - "for": 69, - "i": 13, - "in": 91, - "range": 5, - "amplitude.append": 1, - "random": 2, - "period": 2, - "many": 1, - "pixels": 1, - "before": 1, - "the": 6, - "repeats": 1, - "dx.append": 1, - "TWO_PI": 1, - "/": 26, - "*": 38, - "_": 6, - "yvalues.append": 1, - "draw": 2, - "background": 2, - "calcWave": 2, - "renderWave": 2, - "len": 11, - "j": 7, - "x": 34, - "if": 160, - "%": 33, - "sin": 1, - "else": 33, - "cos": 1, - "noStroke": 2, - "fill": 2, - "ellipseMode": 1, - "CENTER": 1, - "v": 19, - "enumerate": 2, - "ellipse": 1, - "height": 1, - "import": 55, - "os": 2, - "sys": 3, - "json": 1, - "c4d": 1, - "c4dtools": 1, - "itertools": 1, - "from": 36, - "c4d.modules": 1, - "graphview": 1, - "as": 14, - "gv": 1, - "c4dtools.misc": 1, - "graphnode": 1, - "res": 3, - "importer": 1, - "c4dtools.prepare": 1, - "__file__": 1, - "__res__": 1, - "settings": 2, - "c4dtools.helpers.Attributor": 2, - "{": 27, - "res.file": 3, - "}": 27, - "align_nodes": 2, - "nodes": 11, - "mode": 5, - "spacing": 7, - "r": 9, - "modes": 3, - "not": 69, - "return": 68, - "raise": 23, - "ValueError": 6, - ".join": 4, - "get_0": 12, - "lambda": 6, - "x.x": 1, - "get_1": 4, - "x.y": 1, - "set_0": 6, - "setattr": 16, - "set_1": 4, - "graphnode.GraphNode": 1, - "n": 6, - "nodes.sort": 1, - "key": 6, - "n.position": 1, - "midpoint": 3, - "graphnode.find_nodes_mid": 1, - "first_position": 2, - ".position": 1, - "new_positions": 2, - "prev_offset": 6, - "node": 2, - "position": 12, - "node.position": 2, - "-": 36, - "node.size": 1, - "<": 2, - "new_positions.append": 1, - "bbox_size": 2, - "bbox_size_2": 2, - "itertools.izip": 1, - "align_nodes_shortcut": 3, - "master": 2, - "gv.GetMaster": 1, - "root": 3, - "master.GetRoot": 1, - "graphnode.find_selected_nodes": 1, - "master.AddUndo": 1, - "c4d.EventAdd": 1, - "True": 25, - "class": 19, - "XPAT_Options": 3, - "defaults": 1, - "__init__": 7, - "self": 113, - "filename": 12, - "None": 92, - "super": 4, - ".__init__": 3, - "self.load": 1, - "load": 1, - "is": 31, - "settings.options_filename": 2, - "os.path.isfile": 1, - "self.dict_": 2, - "self.defaults.copy": 2, - "with": 2, - "open": 2, - "fp": 4, - "self.dict_.update": 1, - "json.load": 1, - "self.save": 1, - "save": 2, - "values": 15, - "dict": 4, - "k": 7, - "self.dict_.iteritems": 1, - "self.defaults": 1, - "json.dump": 1, - "XPAT_OptionsDialog": 2, - "c4d.gui.GeDialog": 1, - "CreateLayout": 1, - "self.LoadDialogResource": 1, - "res.DLG_OPTIONS": 1, - "InitValues": 1, - "self.SetLong": 2, - "res.EDT_HSPACE": 2, - "options.hspace": 3, - "res.EDT_VSPACE": 2, - "options.vspace": 3, - "Command": 1, - "id": 2, - "msg": 1, - "res.BTN_SAVE": 1, - "self.GetLong": 2, - "options.save": 1, - "self.Close": 1, - "XPAT_Command_OpenOptionsDialog": 2, - "c4dtools.plugins.Command": 3, - "self._dialog": 4, - "@property": 2, - "dialog": 1, - "PLUGIN_ID": 3, - "PLUGIN_NAME": 3, - "res.string.XPAT_COMMAND_OPENOPTIONSDIALOG": 1, - "PLUGIN_HELP": 3, - "res.string.XPAT_COMMAND_OPENOPTIONSDIALOG_HELP": 1, - "Execute": 3, - "doc": 3, - "self.dialog.Open": 1, - "c4d.DLG_TYPE_MODAL": 1, - "XPAT_Command_AlignHorizontal": 1, - "res.string.XPAT_COMMAND_ALIGNHORIZONTAL": 1, - "PLUGIN_ICON": 2, - "res.string.XPAT_COMMAND_ALIGNHORIZONTAL_HELP": 1, - "XPAT_Command_AlignVertical": 1, - "res.string.XPAT_COMMAND_ALIGNVERTICAL": 1, - "res.string.XPAT_COMMAND_ALIGNVERTICAL_HELP": 1, - "options": 4, - "__name__": 3, - "c4dtools.plugins.main": 1, - "__future__": 2, - "unicode_literals": 1, - "copy": 1, - "functools": 1, - "update_wrapper": 2, - "future_builtins": 1, - "zip": 8, - "django.db.models.manager": 1, - "Imported": 1, - "register": 1, - "signal": 1, - "handler.": 1, - "django.conf": 1, - "django.core.exceptions": 1, - "ObjectDoesNotExist": 2, - "MultipleObjectsReturned": 2, - "FieldError": 4, - "ValidationError": 8, - "NON_FIELD_ERRORS": 3, - "django.core": 1, - "validators": 1, - "django.db.models.fields": 1, - "AutoField": 2, - "FieldDoesNotExist": 2, - "django.db.models.fields.related": 1, - "ManyToOneRel": 3, - "OneToOneField": 3, - "add_lazy_relation": 2, - "django.db": 1, - "router": 1, - "transaction": 1, - "DatabaseError": 3, - "DEFAULT_DB_ALIAS": 2, - "django.db.models.query": 1, - "Q": 3, - "django.db.models.query_utils": 2, - "DeferredAttribute": 3, - "django.db.models.deletion": 1, - "Collector": 2, - "django.db.models.options": 1, - "Options": 2, - "django.db.models": 1, - "signals": 1, - "django.db.models.loading": 1, - "register_models": 2, - "get_model": 3, - "django.utils.translation": 1, - "ugettext_lazy": 1, - "django.utils.functional": 1, - "curry": 6, - "django.utils.encoding": 1, - "smart_str": 3, - "force_unicode": 3, - "django.utils.text": 1, - "get_text_list": 2, - "capfirst": 6, - "ModelBase": 4, - "type": 6, - "__new__": 2, - "cls": 32, - "name": 39, - "bases": 6, - "attrs": 7, - "super_new": 3, - ".__new__": 1, - "parents": 8, - "b": 11, - "isinstance": 11, - "module": 6, - "attrs.pop": 2, - "new_class": 9, - "attr_meta": 5, - "abstract": 3, - "getattr": 30, - "False": 28, - "meta": 12, - "base_meta": 2, - "model_module": 1, - "sys.modules": 1, - "new_class.__module__": 1, - "kwargs": 9, - "model_module.__name__.split": 1, - "new_class.add_to_class": 7, - "**kwargs": 9, - "subclass_exception": 3, - "tuple": 3, - "x.DoesNotExist": 1, - "hasattr": 11, - "and": 35, - "x._meta.abstract": 2, - "or": 27, - "x.MultipleObjectsReturned": 1, - "base_meta.abstract": 1, - "new_class._meta.ordering": 1, - "base_meta.ordering": 1, - "new_class._meta.get_latest_by": 1, - "base_meta.get_latest_by": 1, - "is_proxy": 5, - "new_class._meta.proxy": 1, - "new_class._default_manager": 2, - "new_class._base_manager": 2, - "new_class._default_manager._copy_to_model": 1, - "new_class._base_manager._copy_to_model": 1, - "m": 3, - "new_class._meta.app_label": 3, - "seed_cache": 2, - "only_installed": 2, - "obj_name": 2, - "obj": 4, - "attrs.items": 1, - "new_fields": 2, - "new_class._meta.local_fields": 3, - "new_class._meta.local_many_to_many": 2, - "new_class._meta.virtual_fields": 1, - "field_names": 5, - "set": 3, - "f.name": 5, - "f": 19, - "base": 13, - "parent": 5, - "parent._meta.abstract": 1, - "parent._meta.fields": 1, - "TypeError": 4, - "continue": 10, - "new_class._meta.setup_proxy": 1, - "new_class._meta.concrete_model": 2, - "base._meta.concrete_model": 2, - "o2o_map": 3, - "f.rel.to": 1, - "original_base": 1, - "parent_fields": 3, - "base._meta.local_fields": 1, - "base._meta.local_many_to_many": 1, - "field": 32, - "field.name": 14, - "base.__name__": 2, - "base._meta.abstract": 2, - "elif": 4, - "attr_name": 3, - "base._meta.module_name": 1, - "auto_created": 1, - "parent_link": 1, - "new_class._meta.parents": 1, - "copy.deepcopy": 2, - "new_class._meta.parents.update": 1, - "base._meta.parents": 1, - "new_class.copy_managers": 2, - "base._meta.abstract_managers": 1, - "original_base._meta.concrete_managers": 1, - "base._meta.virtual_fields": 1, - "attr_meta.abstract": 1, - "new_class.Meta": 1, - "new_class._prepare": 1, - "copy_managers": 1, - "base_managers": 2, - "base_managers.sort": 1, - "mgr_name": 3, - "manager": 3, - "val": 14, - "new_manager": 2, - "manager._copy_to_model": 1, - "cls.add_to_class": 1, - "add_to_class": 1, - "value": 9, - "value.contribute_to_class": 1, - "_prepare": 1, - "opts": 5, - "cls._meta": 3, - "opts._prepare": 1, - "opts.order_with_respect_to": 2, - "cls.get_next_in_order": 1, - "cls._get_next_or_previous_in_order": 2, - "is_next": 9, - "cls.get_previous_in_order": 1, - "make_foreign_order_accessors": 2, - "model": 8, - "field.rel.to": 2, - "cls.__name__.lower": 2, - "method_get_order": 2, - "method_set_order": 2, - "opts.order_with_respect_to.rel.to": 1, - "cls.__doc__": 3, - "cls.__name__": 1, - "f.attname": 5, - "opts.fields": 1, - "cls.get_absolute_url": 3, - "get_absolute_url": 2, - "signals.class_prepared.send": 1, - "sender": 5, - "ModelState": 2, - "object": 6, - "db": 2, - "self.db": 1, - "self.adding": 1, - "Model": 2, - "__metaclass__": 3, - "_deferred": 1, - "*args": 4, - "signals.pre_init.send": 1, - "self.__class__": 10, - "args": 8, - "self._state": 1, - "args_len": 2, - "self._meta.fields": 5, - "IndexError": 2, - "fields_iter": 4, - "iter": 1, - "field.attname": 17, - "kwargs.pop": 6, - "field.rel": 2, - "is_related_object": 3, - "self.__class__.__dict__.get": 2, - "try": 17, - "rel_obj": 3, - "except": 17, - "KeyError": 3, - "field.get_default": 3, - "field.null": 1, - "prop": 5, - "kwargs.keys": 2, - "property": 2, - "AttributeError": 1, - "pass": 4, - "signals.post_init.send": 1, - "instance": 5, - "__repr__": 2, - "u": 9, - "unicode": 8, - "UnicodeEncodeError": 1, - "UnicodeDecodeError": 1, - "self.__class__.__name__": 3, - "__str__": 1, - ".encode": 1, - "__eq__": 1, - "other": 4, - "self._get_pk_val": 6, - "other._get_pk_val": 1, - "__ne__": 1, - "self.__eq__": 1, - "__hash__": 1, - "hash": 1, - "__reduce__": 1, - "data": 22, - "self.__dict__": 1, - "defers": 2, - "self._deferred": 1, - "deferred_class_factory": 2, - "factory": 5, - "defers.append": 1, - "self._meta.proxy_for_model": 1, - "simple_class_factory": 2, - "model_unpickle": 2, - "_get_pk_val": 2, - "self._meta": 2, - "meta.pk.attname": 2, - "_set_pk_val": 2, - "self._meta.pk.attname": 2, - "pk": 5, - "serializable_value": 1, - "field_name": 8, - "self._meta.get_field_by_name": 1, - "force_insert": 7, - "force_update": 10, - "using": 30, - "update_fields": 23, - "frozenset": 2, - "field.primary_key": 1, - "non_model_fields": 2, - "update_fields.difference": 1, - "self.save_base": 2, - "save.alters_data": 1, - "save_base": 1, - "raw": 9, - "origin": 7, - "router.db_for_write": 2, - "assert": 7, - "meta.proxy": 5, - "meta.auto_created": 2, - "signals.pre_save.send": 1, - "org": 3, - "meta.parents.items": 1, - "parent._meta.pk.attname": 2, - "parent._meta": 1, - "non_pks": 5, - "meta.local_fields": 2, - "f.primary_key": 2, - "pk_val": 4, - "pk_set": 5, - "record_exists": 5, - "cls._base_manager": 1, - "manager.using": 3, - ".filter": 7, - ".exists": 1, - "f.pre_save": 1, - "rows": 3, - "._update": 1, - "meta.order_with_respect_to": 2, - "order_value": 2, - ".count": 1, - "self._order": 1, - "fields": 12, - "update_pk": 3, - "bool": 2, - "meta.has_auto_field": 1, - "result": 2, - "manager._insert": 1, - "return_id": 1, - "transaction.commit_unless_managed": 2, - "self._state.db": 2, - "self._state.adding": 4, - "signals.post_save.send": 1, - "created": 1, - "save_base.alters_data": 1, - "delete": 1, - "self._meta.object_name": 1, - "collector": 1, - "collector.collect": 1, - "collector.delete": 1, - "delete.alters_data": 1, - "_get_FIELD_display": 1, - "field.flatchoices": 1, - ".get": 2, - "strings_only": 1, - "_get_next_or_previous_by_FIELD": 1, - "self.pk": 6, - "op": 6, - "order": 5, - "param": 3, - "q": 4, - "|": 1, - "qs": 6, - "self.__class__._default_manager.using": 1, - "*kwargs": 1, - ".order_by": 2, - "self.DoesNotExist": 1, - "self.__class__._meta.object_name": 1, - "_get_next_or_previous_in_order": 1, - "cachename": 4, - "order_field": 1, - "self._meta.order_with_respect_to": 1, - "self._default_manager.filter": 1, - "order_field.name": 1, - "order_field.attname": 1, - "self._default_manager.values": 1, - "self._meta.pk.name": 1, - "prepare_database_save": 1, - "unused": 1, - "clean": 1, - "validate_unique": 1, - "exclude": 23, - "unique_checks": 6, - "date_checks": 6, - "self._get_unique_checks": 1, - "errors": 20, - "self._perform_unique_checks": 1, - "date_errors": 1, - "self._perform_date_checks": 1, - "date_errors.items": 1, - "errors.setdefault": 3, - ".extend": 2, - "_get_unique_checks": 1, - "unique_togethers": 2, - "self._meta.unique_together": 1, - "parent_class": 4, - "self._meta.parents.keys": 2, - "parent_class._meta.unique_together": 2, - "unique_togethers.append": 1, - "model_class": 11, - "unique_together": 2, - "check": 4, - "break": 2, - "unique_checks.append": 2, - "fields_with_class": 2, - "self._meta.local_fields": 1, - "fields_with_class.append": 1, - "parent_class._meta.local_fields": 1, - "f.unique": 1, - "f.unique_for_date": 3, - "date_checks.append": 3, - "f.unique_for_year": 3, - "f.unique_for_month": 3, - "_perform_unique_checks": 1, - "unique_check": 10, - "lookup_kwargs": 8, - "self._meta.get_field": 1, - "lookup_value": 3, - "str": 2, - "lookup_kwargs.keys": 1, - "model_class._default_manager.filter": 2, - "*lookup_kwargs": 2, - "model_class_pk": 3, - "model_class._meta": 2, - "qs.exclude": 2, - "qs.exists": 2, - ".append": 2, - "self.unique_error_message": 1, - "_perform_date_checks": 1, - "lookup_type": 7, - "unique_for": 9, - "date": 3, - "date.day": 1, - "date.month": 1, - "date.year": 1, - "self.date_error_message": 1, - "date_error_message": 1, - "opts.get_field": 4, - ".verbose_name": 3, - "unique_error_message": 1, - "model_name": 3, - "opts.verbose_name": 1, - "field_label": 2, - "field.verbose_name": 1, - "field.error_messages": 1, - "field_labels": 4, - "map": 1, - "full_clean": 1, - "self.clean_fields": 1, - "e": 13, - "e.update_error_dict": 3, - "self.clean": 1, - "errors.keys": 1, - "exclude.append": 1, - "self.validate_unique": 1, - "clean_fields": 1, - "raw_value": 3, - "f.blank": 1, - "validators.EMPTY_VALUES": 1, - "f.clean": 1, - "e.messages": 1, - "############################################": 2, - "ordered_obj": 2, - "id_list": 2, - "rel_val": 4, - "ordered_obj._meta.order_with_respect_to.rel.field_name": 2, - "order_name": 4, - "ordered_obj._meta.order_with_respect_to.name": 2, - "ordered_obj.objects.filter": 2, - ".update": 1, - "_order": 1, - "pk_name": 3, - "ordered_obj._meta.pk.name": 1, - ".values": 1, - "##############################################": 2, - "func": 2, - "settings.ABSOLUTE_URL_OVERRIDES.get": 1, - "opts.app_label": 1, - "opts.module_name": 1, - "########": 2, - "Empty": 1, - "cls.__new__": 1, - "model_unpickle.__safe_for_unpickle__": 1, - ".globals": 1, - "request": 1, - "http_method_funcs": 2, - "View": 2, - "A": 1, - "which": 1, - "methods": 5, - "this": 2, - "pluggable": 1, - "view": 2, - "can": 1, - "handle.": 1, - "The": 1, - "canonical": 1, - "way": 1, - "decorate": 2, - "based": 1, - "views": 1, - "as_view": 1, - ".": 1, - "However": 1, - "since": 1, - "moves": 1, - "parts": 1, - "logic": 1, - "declaration": 1, - "place": 1, - "where": 1, - "it": 1, - "s": 1, - "also": 1, - "used": 1, - "instantiating": 1, - "view.view_class": 1, - "view.__name__": 1, - "view.__doc__": 1, - "view.__module__": 1, - "cls.__module__": 1, - "view.methods": 1, - "cls.methods": 1, - "MethodViewType": 2, - "d": 5, - "rv": 2, - "type.__new__": 1, - "rv.methods": 2, - "methods.add": 1, - "key.upper": 1, - "sorted": 1, - "MethodView": 1, - "dispatch_request": 1, - "meth": 5, - "request.method.lower": 1, - "request.method": 2, - "P3D": 1, - "lights": 1, - "camera": 1, - "mouseY": 1, - "eyeX": 1, - "eyeY": 1, - "eyeZ": 1, - "centerX": 1, - "centerY": 1, - "centerZ": 1, - "upX": 1, - "upY": 1, - "upZ": 1, - "box": 1, - "stroke": 1, - "line": 3, - "google.protobuf": 4, - "descriptor": 1, - "_descriptor": 1, - "message": 1, - "_message": 1, - "reflection": 1, - "_reflection": 1, - "descriptor_pb2": 1, - "DESCRIPTOR": 3, - "_descriptor.FileDescriptor": 1, - "package": 1, - "serialized_pb": 1, - "_PERSON": 3, - "_descriptor.Descriptor": 1, - "full_name": 2, - "file": 1, - "containing_type": 2, - "_descriptor.FieldDescriptor": 1, - "index": 1, - "number": 1, - "cpp_type": 1, - "label": 18, - "has_default_value": 1, - "default_value": 1, - "message_type": 1, - "enum_type": 1, - "is_extension": 1, - "extension_scope": 1, - "extensions": 1, - "nested_types": 1, - "enum_types": 1, - "is_extendable": 1, - "extension_ranges": 1, - "serialized_start": 1, - "serialized_end": 1, - "DESCRIPTOR.message_types_by_name": 1, - "Person": 1, - "_message.Message": 1, - "_reflection.GeneratedProtocolMessageType": 1, - "SHEBANG#!python": 4, - "print": 39, - "main": 4, - "usage": 3, - "string": 1, - "command": 4, - "sys.argv": 2, - "sys.exit": 1, - "printDelimiter": 4, - "get": 1, - "a": 2, - "list": 1, - "git": 1, - "directories": 1, - "specified": 1, - "gitDirectories": 2, - "getSubdirectories": 2, - "isGitDirectory": 2, - "gitDirectory": 2, - "os.chdir": 1, - "os.getcwd": 1, - "os.system": 1, - "directory": 9, - "filter": 3, - "os.path.abspath": 1, - "subdirectories": 3, - "os.walk": 1, - ".next": 1, - "os.path.isdir": 1, - "argparse": 1, - "matplotlib.pyplot": 1, - "pl": 1, - "numpy": 1, - "np": 1, - "scipy.optimize": 1, - "prettytable": 1, - "PrettyTable": 6, - "__docformat__": 1, - "S": 4, - "phif": 7, - "U": 10, - "_parse_args": 2, - "V": 12, - "np.genfromtxt": 8, - "delimiter": 8, - "t": 8, - "U_err": 7, - "offset": 13, - "np.mean": 1, - "np.linspace": 9, - "min": 10, - "max": 11, - "y": 10, - "np.ones": 11, - "x.size": 2, - "pl.plot": 9, - "**6": 6, - ".format": 11, - "pl.errorbar": 8, - "yerr": 8, - "linestyle": 8, - "marker": 4, - "pl.grid": 5, - "pl.legend": 5, - "loc": 5, - "pl.title": 5, - "pl.xlabel": 5, - "ur": 11, - "pl.ylabel": 5, - "pl.savefig": 5, - "pl.clf": 5, - "glanz": 13, - "matt": 13, - "schwarz": 13, - "weiss": 13, - "T0": 1, - "T0_err": 2, - "glanz_phi": 4, - "matt_phi": 4, - "schwarz_phi": 4, - "weiss_phi": 4, - "T_err": 7, - "sigma": 4, - "boltzmann": 12, - "T": 6, - "epsilon": 7, - "T**4": 1, - "glanz_popt": 3, - "glanz_pconv": 1, - "op.curve_fit": 6, - "matt_popt": 3, - "matt_pconv": 1, - "schwarz_popt": 3, - "schwarz_pconv": 1, - "weiss_popt": 3, - "weiss_pconv": 1, - "glanz_x": 3, - "glanz_y": 2, - "*glanz_popt": 1, - "color": 8, - "matt_x": 3, - "matt_y": 2, - "*matt_popt": 1, - "schwarz_x": 3, - "schwarz_y": 2, - "*schwarz_popt": 1, - "weiss_x": 3, - "weiss_y": 2, - "*weiss_popt": 1, - "np.sqrt": 17, - "glanz_pconv.diagonal": 2, - "matt_pconv.diagonal": 2, - "schwarz_pconv.diagonal": 2, - "weiss_pconv.diagonal": 2, - "xerr": 6, - "U_err/S": 4, - "header": 5, - "glanz_table": 2, - "row": 10, - ".size": 4, - "*T_err": 4, - "glanz_phi.size": 1, - "*U_err/S": 4, - "glanz_table.add_row": 1, - "matt_table": 2, - "matt_phi.size": 1, - "matt_table.add_row": 1, - "schwarz_table": 2, - "schwarz_phi.size": 1, - "schwarz_table.add_row": 1, - "weiss_table": 2, - "weiss_phi.size": 1, - "weiss_table.add_row": 1, - "T0**4": 1, - "phi": 5, - "c": 3, - "a*x": 1, - "d**": 2, - "dy": 4, - "dx_err": 3, - "np.abs": 1, - "dy_err": 2, - "popt": 5, - "pconv": 2, - "*popt": 2, - "pconv.diagonal": 3, - "table": 2, - "table.align": 1, - "dy.size": 1, - "*dy_err": 1, - "table.add_row": 1, - "U1": 3, - "I1": 3, - "U2": 2, - "I_err": 2, - "p": 1, - "R": 1, - "R_err": 2, - "/I1": 1, - "**2": 2, - "U1/I1**2": 1, - "phi_err": 3, - "alpha": 2, - "beta": 1, - "R0": 6, - "R0_err": 2, - "alpha*R0": 2, - "*np.sqrt": 6, - "*beta*R": 5, - "alpha**2*R0": 5, - "*beta*R0": 7, - "*beta*R0*T0": 2, - "epsilon_err": 2, - "f1": 1, - "f2": 1, - "f3": 1, - "alpha**2": 1, - "*beta": 1, - "*beta*T0": 1, - "*beta*R0**2": 1, - "f1**2": 1, - "f2**2": 1, - "f3**2": 1, - "parser": 1, - "argparse.ArgumentParser": 1, - "description": 1, - "#parser.add_argument": 3, - "metavar": 1, - "nargs": 1, - "help": 2, - "dest": 1, - "default": 1, - "action": 1, - "version": 6, - "parser.parse_args": 1, - "absolute_import": 1, - "division": 1, - "with_statement": 1, - "Cookie": 1, - "logging": 1, - "socket": 1, - "time": 1, - "tornado.escape": 1, - "utf8": 2, - "native_str": 4, - "parse_qs_bytes": 3, - "tornado": 3, - "httputil": 1, - "iostream": 1, - "tornado.netutil": 1, - "TCPServer": 2, - "stack_context": 1, - "tornado.util": 1, - "bytes_type": 2, - "ssl": 2, - "Python": 1, - "ImportError": 1, - "HTTPServer": 1, - "request_callback": 4, - "no_keep_alive": 4, - "io_loop": 3, - "xheaders": 4, - "ssl_options": 3, - "self.request_callback": 5, - "self.no_keep_alive": 4, - "self.xheaders": 3, - "TCPServer.__init__": 1, - "handle_stream": 1, - "stream": 4, - "address": 4, - "HTTPConnection": 2, - "_BadRequestException": 5, - "Exception": 2, - "self.stream": 1, - "self.address": 3, - "self._request": 7, - "self._request_finished": 4, - "self._header_callback": 3, - "stack_context.wrap": 2, - "self._on_headers": 1, - "self.stream.read_until": 2, - "self._write_callback": 5, - "write": 2, - "chunk": 5, - "callback": 7, - "self.stream.closed": 1, - "self.stream.write": 2, - "self._on_write_complete": 1, - "finish": 2, - "self.stream.writing": 2, - "self._finish_request": 2, - "_on_write_complete": 1, - "_finish_request": 1, - "disconnect": 5, - "connection_header": 5, - "self._request.headers.get": 2, - "connection_header.lower": 1, - "self._request.supports_http_1_1": 1, - "self._request.headers": 1, - "self._request.method": 2, - "self.stream.close": 2, - "_on_headers": 1, - "data.decode": 1, - "eol": 3, - "data.find": 1, - "start_line": 1, - "method": 5, - "uri": 5, - "start_line.split": 1, - "version.startswith": 1, - "headers": 5, - "httputil.HTTPHeaders.parse": 1, - "self.stream.socket": 1, - "socket.AF_INET": 2, - "socket.AF_INET6": 1, - "remote_ip": 8, - "HTTPRequest": 2, - "connection": 5, - "content_length": 6, - "headers.get": 2, - "int": 1, - "self.stream.max_buffer_size": 1, - "self.stream.read_bytes": 1, - "self._on_request_body": 1, - "logging.info": 1, - "_on_request_body": 1, - "self._request.body": 2, - "content_type": 1, - "content_type.startswith": 2, - "arguments": 2, - "arguments.iteritems": 2, - "self._request.arguments.setdefault": 1, - "content_type.split": 1, - "sep": 2, - "field.strip": 1, - ".partition": 1, - "httputil.parse_multipart_form_data": 1, - "self._request.arguments": 1, - "self._request.files": 1, - "logging.warning": 1, - "body": 2, - "protocol": 4, - "host": 2, - "files": 2, - "self.method": 1, - "self.uri": 2, - "self.version": 2, - "self.headers": 4, - "httputil.HTTPHeaders": 1, - "self.body": 1, - "connection.xheaders": 1, - "self.remote_ip": 4, - "self.headers.get": 5, - "self._valid_ip": 1, - "self.protocol": 7, - "connection.stream": 1, - "iostream.SSLIOStream": 1, - "self.host": 2, - "self.files": 1, - "self.connection": 1, - "self._start_time": 3, - "time.time": 3, - "self._finish_time": 4, - "self.path": 1, - "self.query": 2, - "uri.partition": 1, - "self.arguments": 2, - "supports_http_1_1": 1, - "cookies": 1, - "self._cookies": 3, - "Cookie.SimpleCookie": 1, - "self._cookies.load": 1, - "self.connection.write": 1, - "self.connection.finish": 1, - "full_url": 1, - "request_time": 1, - "get_ssl_certificate": 1, - "self.connection.stream.socket.getpeercert": 1, - "ssl.SSLError": 1, - "_valid_ip": 1, - "ip": 2, - "socket.getaddrinfo": 1, - "socket.AF_UNSPEC": 1, - "socket.SOCK_STREAM": 1, - "socket.AI_NUMERICHOST": 1, - "socket.gaierror": 1, - "e.args": 1, - "socket.EAI_NONAME": 1 - }, - "QMake": { - "QT": 4, - "+": 13, - "core": 2, - "gui": 2, - "greaterThan": 1, - "(": 8, - "QT_MAJOR_VERSION": 1, - ")": 8, - "widgets": 1, - "contains": 2, - "QT_CONFIG": 2, - "opengl": 2, - "|": 1, - "opengles2": 1, - "{": 6, - "}": 6, - "else": 2, - "DEFINES": 1, - "QT_NO_OPENGL": 1, - "TEMPLATE": 2, - "app": 2, - "win32": 2, - "TARGET": 3, - "BlahApp": 1, - "RC_FILE": 1, - "Resources/winres.rc": 1, - "blahapp": 1, - "include": 1, - "functions.pri": 1, - "SOURCES": 2, - "file.cpp": 2, - "HEADERS": 2, - "file.h": 2, - "FORMS": 2, - "file.ui": 1, - "RESOURCES": 1, - "res.qrc": 1, - "exists": 1, - ".git/HEAD": 1, - "system": 2, - "git": 1, - "rev": 1, - "-": 1, - "parse": 1, - "HEAD": 1, - "rev.txt": 2, - "echo": 1, - "ThisIsNotAGitRepo": 1, - "SHEBANG#!qmake": 1, - "message": 1, - "This": 1, - "is": 1, - "QMake.": 1, - "CONFIG": 1, - "qt": 1, - "simpleapp": 1, - "file2.c": 1, - "This/Is/Folder/file3.cpp": 1, - "file2.h": 1, - "This/Is/Folder/file3.h": 1, - "This/Is/Folder/file3.ui": 1, - "Test.ui": 1 - }, - "R": { - "df.residual.mira": 1, - "<": 46, - "-": 53, - "function": 18, - "(": 219, - "object": 12, - "...": 4, - ")": 220, - "{": 58, - "fit": 2, - "analyses": 1, - "[": 23, - "]": 24, - "return": 8, - "df.residual": 2, - "}": 58, - "df.residual.lme": 1, - "fixDF": 1, - "df.residual.mer": 1, - "sum": 1, - "object@dims": 1, - "*": 2, - "c": 11, - "+": 4, - "df.residual.default": 1, - "q": 3, - "df": 3, - "if": 19, - "is.null": 8, - "mk": 2, - "try": 3, - "coef": 1, - "silent": 3, - "TRUE": 14, - "mn": 2, - "f": 9, - "fitted": 1, - "inherits": 6, - "|": 3, - "NULL": 2, - "n": 3, - "ifelse": 1, - "is.data.frame": 1, - "is.matrix": 1, - "nrow": 1, - "length": 3, - "k": 3, - "max": 1, - "SHEBANG#!Rscript": 2, - "#": 45, - "MedianNorm": 2, - "data": 13, - "geomeans": 3, - "<->": 1, - "exp": 1, - "rowMeans": 1, - "log": 5, - "apply": 2, - "2": 1, - "cnts": 2, - "median": 1, - "library": 1, - "print_usage": 2, - "file": 4, - "stderr": 1, - "cat": 1, - "spec": 2, - "matrix": 3, - "byrow": 3, - "ncol": 3, - "opt": 23, - "getopt": 1, - "help": 1, - "stdout": 1, - "status": 1, - "height": 7, - "out": 4, - "res": 6, - "width": 7, - "ylim": 7, - "read.table": 1, - "header": 1, - "sep": 4, - "quote": 1, - "nsamp": 8, - "dim": 1, - "outfile": 4, - "sprintf": 2, - "png": 2, - "h": 13, - "hist": 4, - "plot": 7, - "FALSE": 9, - "mids": 4, - "density": 4, - "type": 3, - "col": 4, - "rainbow": 4, - "main": 2, - "xlab": 2, - "ylab": 2, - "for": 4, - "i": 6, - "in": 8, - "lines": 6, - "devnum": 2, - "dev.off": 2, - "size.factors": 2, - "data.matrix": 1, - "data.norm": 3, - "t": 1, - "x": 3, - "/": 1, - "ParseDates": 2, - "dates": 3, - "unlist": 2, - "strsplit": 3, - "days": 2, - "times": 2, - "hours": 2, - "all.days": 2, - "all.hours": 2, - "data.frame": 1, - "Day": 2, - "factor": 2, - "levels": 2, - "Hour": 2, - "Main": 2, - "system": 1, - "intern": 1, - "punchcard": 4, - "as.data.frame": 1, - "table": 1, - "ggplot2": 6, - "ggplot": 1, - "aes": 2, - "y": 1, - "geom_point": 1, - "size": 1, - "Freq": 1, - "scale_size": 1, - "range": 1, - "ggsave": 1, - "filename": 1, - "hello": 2, - "print": 1, - "module": 25, - "code": 21, - "available": 1, - "via": 1, - "the": 16, - "environment": 4, - "like": 1, - "it": 3, - "returns.": 1, - "@param": 2, - "an": 1, - "identifier": 1, - "specifying": 1, - "full": 1, - "path": 9, - "search": 5, - "see": 1, - "Details": 1, - "even": 1, - "attach": 11, - "is": 7, - "optionally": 1, - "attached": 2, - "to": 9, - "of": 2, - "current": 2, - "scope": 1, - "defaults": 1, - ".": 7, - "However": 1, - "interactive": 2, - "invoked": 1, - "directly": 1, - "from": 5, - "terminal": 1, - "only": 1, - "i.e.": 1, - "not": 4, - "within": 1, - "modules": 4, - "import.attach": 1, - "can": 3, - "be": 8, - "set": 2, - "or": 1, - "depending": 1, - "on": 2, - "user": 1, - "s": 2, - "preference.": 1, - "attach_operators": 3, - "causes": 1, - "emph": 3, - "operators": 3, - "by": 2, - "default": 1, - "path.": 1, - "Not": 1, - "attaching": 1, - "them": 1, - "therefore": 1, - "drastically": 1, - "limits": 1, - "a": 6, - "usefulness.": 1, - "Modules": 1, - "are": 4, - "searched": 1, - "options": 1, - "priority.": 1, - "The": 5, - "directory": 1, - "always": 1, - "considered": 1, - "first.": 1, - "That": 1, - "local": 3, - "./a.r": 1, - "will": 2, - "loaded.": 1, - "Module": 1, - "names": 2, - "fully": 1, - "qualified": 1, - "refer": 1, - "nested": 1, - "paths.": 1, - "See": 1, - "import": 5, - "executed": 1, - "global": 1, - "effect": 1, - "same.": 1, - "When": 1, - "used": 2, - "globally": 1, - "inside": 1, - "newly": 2, - "outside": 1, - "nor": 1, - "other": 2, - "which": 3, - "might": 1, - "loaded": 4, - "@examples": 1, - "@seealso": 3, - "reload": 3, - "@export": 2, - "substitute": 2, - "stopifnot": 3, - "missing": 1, - "&&": 2, - "module_name": 7, - "getOption": 1, - "else": 4, - "class": 4, - "module_path": 15, - "find_module": 1, - "stop": 1, - "attr": 2, - "message": 1, - "containing_modules": 3, - "module_init_files": 1, - "mapply": 1, - "do_import": 4, - "mod_ns": 5, - "as.character": 3, - "module_parent": 8, - "parent.frame": 2, - "mod_env": 7, - "exhibit_namespace": 3, - "identical": 2, - ".GlobalEnv": 2, - "name": 10, - "environmentName": 2, - "parent.env": 4, - "export_operators": 2, - "invisible": 1, - "is_module_loaded": 1, - "get_loaded_module": 1, - "namespace": 13, - "structure": 3, - "new.env": 1, - "parent": 9, - ".BaseNamespaceEnv": 1, - "paste": 3, - "source": 3, - "chdir": 1, - "envir": 5, - "cache_module": 1, - "exported_functions": 2, - "lsf.str": 2, - "list2env": 2, - "sapply": 2, - "get": 2, - "ops": 2, - "is_predefined": 2, - "%": 2, - "is_op": 2, - "prefix": 3, - "||": 1, - "grepl": 1, - "Filter": 1, - "op_env": 4, - "cache.": 1, - "@note": 1, - "Any": 1, - "references": 1, - "remain": 1, - "unchanged": 1, - "and": 5, - "files": 1, - "would": 1, - "have": 1, - "happened": 1, - "without": 1, - "unload": 2, - "should": 2, - "production": 1, - "code.": 1, - "does": 1, - "currently": 1, - "detach": 1, - "environments.": 1, - "Reload": 1, - "given": 1, - "Remove": 1, - "cache": 1, - "forcing": 1, - "reload.": 1, - "reloaded": 1, - "reference": 1, - "unloaded": 1, - "still": 1, - "work.": 1, - "Reloading": 1, - "primarily": 1, - "useful": 1, - "testing": 1, - "during": 1, - "module_ref": 3, - "rm": 1, - "list": 1, - ".loaded_modules": 1, - "whatnot.": 1, - "assign": 1, - "##polyg": 1, - "vector": 2, - "##numpoints": 1, - "number": 1, - "##output": 1, - "output": 1, - "##": 1, - "Example": 1, - "scripts": 1, - "group": 1, - "pts": 1, - "spsample": 1, - "polyg": 1, - "numpoints": 1, - "docType": 1, - "package": 5, - "scholar": 6, - "alias": 2, - "title": 1, - "reads": 1, - "url": 2, - "http": 2, - "//scholar.google.com": 1, - "Dates": 1, - "citation": 2, - "counts": 1, - "estimated": 1, - "determined": 1, - "automatically": 1, - "computer": 1, - "program.": 1, - "Use": 1, - "at": 2, - "your": 1, - "own": 1, - "risk.": 1, - "description": 1, - "provides": 1, - "functions": 3, - "extract": 1, - "Google": 2, - "Scholar.": 1, - "There": 1, - "also": 1, - "convenience": 1, - "comparing": 1, - "multiple": 1, - "scholars": 1, - "predicting": 1, - "index": 1, - "scores": 1, - "based": 1, - "past": 1, - "publication": 1, - "records.": 1, - "note": 1, - "A": 1, - "complementary": 1, - "Scholar": 1, - "found": 1, - "//biostat.jhsph.edu/": 1, - "jleek/code/googleCite.r": 1, - "was": 1, - "developed": 1, - "independently.": 1 - }, - "Racket": { - ";": 3, - "Clean": 1, - "simple": 1, - "and": 1, - "efficient": 1, - "code": 1, - "-": 94, - "that": 2, - "s": 1, - "the": 3, - "power": 1, - "of": 4, - "Racket": 2, - "http": 1, - "//racket": 1, - "lang.org/": 1, - "(": 23, - "define": 1, - "bottles": 4, - "n": 8, - "more": 2, - ")": 23, - "printf": 2, - "case": 1, - "[": 16, - "]": 16, - "else": 1, - "if": 1, - "for": 2, - "in": 3, - "range": 1, - "sub1": 1, - "displayln": 2, - "#lang": 1, - "scribble/manual": 1, - "@": 3, - "require": 1, - "scribble/bnf": 1, - "@title": 1, - "{": 2, - "Scribble": 3, - "The": 1, - "Documentation": 1, - "Tool": 1, - "}": 2, - "@author": 1, - "is": 3, - "a": 1, - "collection": 1, - "tools": 1, - "creating": 1, - "prose": 2, - "documents": 1, - "papers": 1, - "books": 1, - "library": 1, - "documentation": 1, - "etc.": 1, - "HTML": 1, - "or": 2, - "PDF": 1, - "via": 1, - "Latex": 1, - "form.": 1, - "More": 1, - "generally": 1, - "helps": 1, - "you": 1, - "write": 1, - "programs": 1, - "are": 1, - "rich": 1, - "textual": 1, - "content": 2, - "whether": 1, - "to": 2, - "be": 2, - "typeset": 1, - "any": 1, - "other": 1, - "form": 1, - "text": 1, - "generated": 1, - "programmatically.": 1, - "This": 1, - "document": 1, - "itself": 1, - "written": 1, - "using": 1, - "Scribble.": 1, - "You": 1, - "can": 1, - "see": 1, - "its": 1, - "source": 1, - "at": 1, - "let": 1, - "url": 3, - "link": 1, - "starting": 1, - "with": 1, - "@filepath": 1, - "scribble.scrbl": 1, - "file.": 1, - "@table": 1, - "contents": 1, - "@include": 8, - "section": 9, - "@index": 1 - }, - "Ragel in Ruby Host": { - "begin": 3, - "%": 34, - "{": 19, - "machine": 3, - "ephemeris_parser": 1, - ";": 38, - "action": 9, - "mark": 6, - "p": 8, - "}": 19, - "parse_start_time": 2, - "parser.start_time": 1, - "data": 15, - "[": 20, - "mark..p": 4, - "]": 20, - ".pack": 6, - "(": 33, - ")": 33, - "parse_stop_time": 2, - "parser.stop_time": 1, - "parse_step_size": 2, - "parser.step_size": 1, - "parse_ephemeris_table": 2, - "fhold": 1, - "parser.ephemeris_table": 1, - "ws": 2, - "t": 1, - "r": 1, - "n": 1, - "adbc": 2, - "|": 11, - "year": 2, - "digit": 7, - "month": 2, - "upper": 1, - "lower": 1, - "date": 2, - "hours": 2, - "minutes": 2, - "seconds": 2, - "tz": 2, - "datetime": 3, - "time_unit": 2, - "s": 4, - "soe": 2, - "eoe": 2, - "ephemeris_table": 3, - "alnum": 1, - "*": 9, - "-": 5, - "./": 1, - "start_time": 4, - "space*": 2, - "stop_time": 4, - "step_size": 3, - "+": 7, - "ephemeris": 2, - "main": 3, - "any*": 3, - "end": 23, - "require": 1, - "module": 1, - "Tengai": 1, - "EPHEMERIS_DATA": 2, - "Struct.new": 1, - ".freeze": 1, - "class": 3, - "EphemerisParser": 1, - "<": 1, - "def": 10, - "self.parse": 1, - "parser": 2, - "new": 1, - "data.unpack": 1, - "if": 4, - "data.is_a": 1, - "String": 1, - "eof": 3, - "data.length": 3, - "write": 9, - "init": 3, - "exec": 3, - "time": 6, - "super": 2, - "parse_time": 3, - "private": 1, - "DateTime.parse": 1, - "simple_scanner": 1, - "Emit": 4, - "emit": 4, - "ts": 4, - "..": 1, - "te": 1, - "foo": 8, - "any": 4, - "#": 4, - "SimpleScanner": 1, - "attr_reader": 2, - "path": 8, - "initialize": 2, - "@path": 2, - "stdout.puts": 2, - "perform": 2, - "pe": 4, - "ignored": 4, - "leftover": 8, - "File.open": 2, - "do": 2, - "f": 2, - "while": 2, - "chunk": 2, - "f.read": 2, - "ENV": 2, - ".to_i": 2, - "chunk.unpack": 2, - "||": 1, - "ts..pe": 1, - "else": 2, - "SimpleScanner.new": 1, - "ARGV": 2, - "s.perform": 2, - "simple_tokenizer": 1, - "MyTs": 2, - "my_ts": 6, - "MyTe": 2, - "my_te": 6, - "my_ts...my_te": 1, - "nil": 4, - "SimpleTokenizer": 1, - "my_ts..": 1, - "SimpleTokenizer.new": 1 - }, - "RDoc": { - "RDoc": 7, - "-": 9, - "Ruby": 4, - "Documentation": 2, - "System": 1, - "home": 1, - "https": 3, - "//github.com/rdoc/rdoc": 1, - "rdoc": 7, - "http": 1, - "//docs.seattlerb.org/rdoc": 1, - "bugs": 1, - "//github.com/rdoc/rdoc/issues": 1, - "code": 1, - "quality": 1, - "{": 1, - "": 1, - "src=": 1, - "alt=": 1, - "}": 1, - "[": 3, - "//codeclimate.com/github/rdoc/rdoc": 1, - "]": 3, - "Description": 1, - "produces": 1, - "HTML": 1, - "and": 9, - "command": 4, - "line": 1, - "documentation": 8, - "for": 9, - "projects.": 1, - "includes": 1, - "the": 12, - "+": 8, - "ri": 1, - "tools": 1, - "generating": 1, - "displaying": 1, - "from": 1, - "line.": 1, - "Generating": 1, - "Once": 1, - "installed": 1, - "you": 3, - "can": 2, - "create": 1, - "using": 1, - "options": 1, - "names...": 1, - "For": 1, - "an": 1, - "up": 1, - "to": 4, - "date": 1, - "option": 1, - "summary": 1, - "type": 2, - "help": 1, - "A": 1, - "typical": 1, - "use": 1, - "might": 1, - "be": 3, - "generate": 1, - "a": 5, - "package": 1, - "of": 2, - "source": 2, - "(": 3, - "such": 1, - "as": 1, - "itself": 1, - ")": 3, - ".": 2, - "This": 2, - "generates": 1, - "all": 1, - "C": 1, - "files": 2, - "in": 4, - "below": 1, - "current": 1, - "directory.": 1, - "These": 1, - "will": 1, - "stored": 1, - "tree": 1, - "starting": 1, - "subdirectory": 1, - "doc": 1, - "You": 2, - "make": 2, - "this": 1, - "slightly": 1, - "more": 1, - "useful": 1, - "your": 1, - "readers": 1, - "by": 1, - "having": 1, - "index": 1, - "page": 1, - "contain": 1, - "primary": 1, - "file.": 1, - "In": 1, - "our": 1, - "case": 1, - "we": 1, - "could": 1, + "of": 84, + "DataBallet.": 4, + "Copyright": 12, + "(": 2144, + "C": 9, + ")": 2152, + "Laurent": 2, + "Parenteau": 2, + "": 2, + "DataBallet": 4, + "free": 15, + "software": 12, + "you": 17, + "can": 20, + "redistribute": 11, + "it": 45, + "and/or": 11, + "modify": 11, + "under": 14, + "the": 223, + "terms": 11, + "GNU": 33, + "Affero": 33, + "General": 33, + "Public": 33, + "License": 48, + "as": 23, + "published": 11, + "by": 35, + "Free": 11, + "Software": 11, + "Foundation": 11, + "either": 13, + "version": 16, + "or": 50, + "at": 21, + "your": 16, + "option": 12, + "any": 16, + "later": 11, + "version.": 11, + "distributed": 13, + "in": 80, + "hope": 11, + "that": 19, + "will": 23, + "be": 35, + "useful": 11, + "but": 19, + "WITHOUT": 12, + "ANY": 12, + "WARRANTY": 11, + "without": 11, + "even": 12, + "implied": 11, + "warranty": 11, + "MERCHANTABILITY": 11, + "FITNESS": 11, + "FOR": 15, + "A": 12, + "PARTICULAR": 11, + "PURPOSE.": 11, + "See": 15, + "for": 77, + "more": 13, + "details.": 12, + "You": 13, + "should": 16, + "have": 21, + "received": 11, + "a": 130, + "copy": 13, + "along": 11, + "with": 45, + "If": 14, + "not": 39, + "see": 26, + "": 11, + ".": 815, + "encode": 1, + "message": 8, + "Return": 1, + "base64": 6, + "URL": 2, + "and": 59, + "Filename": 1, + "safe": 3, + "alphabet": 2, + "RFC": 1, + "new": 15, + "todrop": 2, + "i": 465, + "Populate": 1, + "values": 4, + "on": 17, + "first": 10, + "use": 5, + "only.": 1, + "if": 44, + "zextract": 3, + "zlength": 3, + "-": 1605, + "quit": 30, + "zmwire": 53, + "M/Wire": 4, + "Protocol": 2, + "M": 24, + "Systems": 1, + "eg": 3, + "GT.M": 30, + "Cache": 3, + "|": 171, + "c": 113, + "M/Gateway": 4, + "Developments": 4, + "Ltd": 4, + "Reigate": 4, + "Surrey": 4, + "UK.": 4, + "All": 4, + "rights": 4, + "reserved.": 4, + "http": 13, + "//www.mgateway.com": 4, + "Email": 4, + "rtweed@mgateway.com": 4, + "program": 19, + "this": 39, + "program.": 9, + "QUIT": 251, + "By": 1, + "default": 6, + "server": 1, + "code": 29, + "runs": 2, + "port": 4, + "For": 3, + "systems": 3, + "invoked": 2, + "via": 2, + "xinetd": 2, + "Edit": 1, + "/etc/services": 1, + "add": 5, + "line": 14, + "mwire": 2, + "/tcp": 1, "#": 1, - "rdoc/rdoc": 1, - "s": 1, - "OK": 1, - "file": 1, - "bug": 1, - "report": 1, - "anything": 1, - "t": 1, - "figure": 1, - "out": 1, - "how": 1, - "produce": 1, - "output": 1, - "like": 1, - "that": 1, - "is": 4, - "probably": 1, - "bug.": 1, - "License": 1, - "Copyright": 1, - "c": 2, - "Dave": 1, - "Thomas": 1, - "The": 1, - "Pragmatic": 1, - "Programmers.": 1, - "Portions": 2, - "Eric": 1, - "Hodel.": 1, - "copyright": 1, - "others": 1, - "see": 1, - "individual": 1, - "LEGAL.rdoc": 1, - "details.": 1, - "free": 1, - "software": 2, - "may": 1, - "redistributed": 1, - "under": 1, - "terms": 1, - "specified": 1, - "LICENSE.rdoc.": 1, - "Warranty": 1, - "provided": 1, - "without": 2, - "any": 1, - "express": 1, - "or": 1, - "implied": 2, - "warranties": 2, - "including": 1, - "limitation": 1, - "merchantability": 1, - "fitness": 1, - "particular": 1, - "purpose.": 1 - }, - "Rebol": { - "REBOL": 5, + "Service": 1, + "Copy": 2, + "to": 74, + "/etc/xinetd.d/mwire": 1, + "/usr/local/gtm/zmwire": 1, + "change": 6, + "its": 1, + "permissions": 2, + "executable": 1, + "These": 2, + "files": 4, + "may": 3, + "edited": 1, + "paths": 2, + "number": 5, + "Restart": 1, + "using": 4, + "sudo": 1, + "/etc/init.d/xinetd": 1, + "restart": 3, + "On": 1, + "must": 8, + "also": 4, + "installed": 1, + "MGWSI": 1, + "m_apache": 3, + "order": 11, + "provide": 1, + "MD5": 6, + "hashing": 1, + "function": 6, + "passwords": 1, + "Alternatively": 1, + "substitute": 1, + "callout": 1, + "choice": 1, + "Daemon": 2, + "routine": 6, + "which": 4, + "running": 1, + "jobbed": 1, + "process": 3, + "job": 1, + "start": 26, + "zmwireDaemon": 2, + "simply": 1, + "editing": 2, + "+": 189, + "Stop": 1, + "RESJOB": 1, + "it.": 2, + "mwireVersion": 4, + "Build": 6, + "mwireDate": 2, + "July": 1, + "s": 775, + "output": 49, + "_": 127, + "p": 84, + "t": 12, + "_crlf": 22, + "w": 127, + "build": 2, + "n": 197, + "crlf": 6, + "response": 29, + "g": 228, + "zewd": 17, + "d": 381, + "trace": 24, + "_response_": 4, + "l": 84, + "_crlf_response_crlf": 4, + "zv": 6, + "command": 11, + "authNeeded": 6, + "input": 41, + "cleardown": 2, "[": 54, - "System": 1, - "Title": 2, - "Rights": 1, - "{": 8, - "Copyright": 1, - "Technologies": 2, - "is": 4, - "a": 2, - "trademark": 1, - "of": 1, - "}": 8, - "License": 2, + "zint": 1, + "j": 67, + "role": 3, + "loop": 7, + "e": 210, + "log": 1, + "halt": 3, + "auth": 2, + "k": 122, + "ignore": 12, + "pid": 36, + "f": 93, + "o": 51, + "q": 244, + "monitor": 1, + "input_crlf": 1, + "lineNo": 19, + "zsy": 2, + "_pid_": 1, + "_pid": 1, + "monitoroutput": 1, + "logger": 17, + "initialise": 3, + "tot": 2, + "count": 18, + "mwireLogger": 3, + "increment": 11, + "info": 1, + "response_": 1, + "_count": 1, + "pass": 24, + "setpassword": 1, + "SETPASSWORD": 2, + "secret": 2, + "OK": 6, + "": 1, + "role=": 1, + "admin": 1, + "newrole": 4, + "getGloRef": 3, + "gloName": 1, + "gloRef": 15, + "nb": 2, + "subs": 8, + "len": 8, + "nsp": 1, + "subs_": 2, + "quot": 2, + "_data_": 3, + "subscripts": 8, + "_value_": 1, + "_error_": 1, + "ok": 14, + "kill": 3, + "xx": 16, + "yy": 19, + "No": 17, + "access": 21, + "allowed": 18, + "global": 26, + "data": 43, + "method": 2, + "Missing": 5, + "JSON": 7, + "transaction": 6, + "document": 6, + "step": 8, + "setJSON": 4, + "json": 9, + "globalName": 7, + "GlobalName": 3, + "Global": 8, + "name": 121, + "m": 37, + "setGlobal": 1, + "value": 72, + "zmwire_null_value": 1, + "]": 15, + "Invalid": 1, + "props": 1, + "arr": 2, + "getJSON": 2, + "incr": 1, + "incrbr": 1, + "class": 1, + "##": 2, + "decr": 1, + "decrby": 1, + "subscript": 7, + "direction": 1, + "{": 5, + "subscriptValue": 1, + "dataStatus": 1, + "dataValue": 1, + "}": 5, + "nextsubscript": 2, + "reverseorder": 1, + "query": 4, + "x": 96, + "p2": 10, + "*2": 1, + "queryget": 1, + "xxyy": 2, + "zz": 2, + "null": 6, + "numeric": 8, + "exists": 6, + "getallsubscripts": 1, + "*": 6, + "orderall": 1, + "": 3, + "note": 2, + "escaping": 1, + "world": 4, + "foo": 2, + "CacheTempEWD": 16, + "_gloRef": 1, + "zt": 20, + "@x": 4, + "i*2": 3, + "_crlf_": 1, + "j_": 1, + "params": 10, + "resp": 5, + "_crlf_resp_crlf": 2, + "_crlf_data_crlf": 2, + "mergeto": 1, + "dataLength": 4, + "error": 62, + "key": 22, + "keyLength": 6, + "noOfRecs": 6, + "MERGETO": 1, + "myglobal": 1, + "*6": 1, + "hello": 1, + "": 2, + "length": 7, + "means": 2, + "no": 54, + "put": 1, + "top": 1, + "level": 5, + "r": 88, + "N.N": 12, + "noOfRecs#2": 1, + "noOfRecs/2": 1, + "_i_": 5, + "gloRef1": 2, + "gloRef1_": 2, + "_gloRef1_key_": 1, + "sub": 2, + "literal": 2, + "true": 2, + "false": 5, + "boolean": 2, + "variable": 8, + "valquot_value_valquot": 1, + "json_value_": 1, + "subscripts1": 2, + "dd": 4, + "subx": 3, + "subNo": 1, + "numsub": 1, + "json_": 2, + "removeControlChars": 2, + "zobj1": 1, + "buff": 10, + "parseJSONObject": 2, + ".buff": 2, + "subs2": 6, + "stop": 20, + "_name_": 1, + "subs2_": 2, + "value_c": 1, + "lc": 3, + "N.N1": 4, + "string": 50, + "newString": 4, + "<": 20, + "newString_c": 1, + "utfConvert": 1, + "Unescape": 1, + "UTF": 17, + "characters": 8, + "buf": 4, + "c1": 4, + "buf_c1_": 1, + "tr": 13, + "compute": 2, + "miles": 4, + "gallons": 4, + "miles/gallons": 1, + "computepesimist": 1, + "miles/": 1, + "computeoptimist": 1, + "/gallons": 1, + "PCRE": 23, + "Extension": 9, + "Piotr": 7, + "Koper": 7, + "": 7, + "Examples": 4, + "pcre.m": 1, + "comments": 5, + "routines": 6, + "parameters": 1, + "all": 8, + "possible": 5, + "options": 45, + "pcreexamples": 32, + "Initial": 2, + "release": 2, + "pkoper": 2, + "API": 7, + "The": 11, + "shining": 1, + "examples": 4, + "test": 6, + "Test": 1, + "subject": 24, + "match": 41, + "pcre": 59, + "Simple": 2, + ".n": 20, + "zwr": 17, + "Match": 4, + "named": 12, + "groups": 5, + "group": 4, + "limit": 14, + "only": 9, + "patterns": 3, + "grouped": 2, + "captured": 6, + "replace": 27, + "Just": 1, + "Change": 2, + "word": 3, + "Escape": 1, + "sequence": 1, + "More": 1, + "chars": 3, + "Low": 1, + "api": 1, + "pattern": 21, + "offset": 6, + "ref": 41, + "begin": 18, + "end": 33, + "Setup": 1, + "exception": 12, + "trap": 10, + "myexception2": 2, + "st_": 1, + "zl_": 2, + "are": 14, + "case": 7, + "insensitive": 7, + "well": 2, + "stringified": 2, + "names": 3, + "functions": 4, + "extension": 3, + "Compile": 2, + "compile": 14, + ".pattern": 3, + ".options": 1, + "reference": 2, + "Run": 1, + "exec": 4, + ".ref": 13, + ".subject": 3, + ".offset": 1, + "To": 2, + "ovector": 25, + "array": 22, + "ovecsize": 5, + "used.": 2, + "size": 3, + "always": 2, + "where": 6, + "capture": 10, + "strings": 1, + "submitted": 1, + "exact": 1, + "usable": 1, + "pairs": 2, + "integers": 1, + "Get": 2, + "an": 14, + "old": 3, + "way": 1, + "ze": 8, + "what": 2, + "aa": 9, + "print": 8, + "while": 4, + "/": 3, + "b*": 7, + "/mg": 2, + "s/": 6, + "/Xy/g": 6, + "aaa": 1, + "nbb": 1, + ".*": 1, + "stack": 8, + "usage": 3, + "discover": 1, + "procedure": 2, + "stackusage": 3, + "Locale": 5, + "Support": 1, + "Polish": 1, + "language": 6, + "has": 7, + "been": 4, + "used": 6, + "example": 5, + "I18N": 2, + "support": 3, + "PCRE.": 1, + "encoded": 8, + "here": 4, + "Polish.": 1, + "second": 1, + "letter": 1, + "": 1, + "ISO8859": 1, + "//en.wikipedia.org/wiki/Polish_code_pages": 1, + "complete": 1, + "listing": 1, + "Note": 2, + "CHAR": 1, + "different": 3, + "character": 5, + "modes": 1, + "In": 1, + "mode": 12, + "return": 7, + "two": 2, + "octet": 4, + "char": 9, + "probably": 1, + "expected": 1, + "result": 3, + "when": 11, + "working": 1, + "single": 2, + "ISO": 3, + "chars.": 1, + "Use": 1, + "zch": 7, + "create": 6, + "prepared": 1, + "%": 207, + "GTM": 8, + "E": 12, + "BADCHAR": 1, + "errors.": 1, + "Also": 1, + "others": 1, + "might": 1, + "expected.": 1, + "POSIX": 1, + "i.e.": 3, + "localization": 1, + "nolocale": 2, + "zchset": 2, + "isolocale": 2, + "utflocale": 2, + "environment": 7, + "LANG": 4, + "LC_CTYPE": 1, + "Set": 2, + "obtain": 2, + "results.": 1, + "envlocale": 2, + "ztrnlnm": 2, + "Notes": 1, + "Enabling": 1, + "native": 1, + "requires": 1, + "libicu": 2, + "gtm_chset": 1, + "gtm_icu_version": 1, + "recompiled": 1, + "object": 4, + "Instructions": 1, + "Debian": 2, + "Install": 1, + "libicu48": 2, + "apt": 1, + "get": 2, + "install": 1, + "append": 1, + "setup": 3, + "user": 27, + "write": 59, + "chown": 1, + "gtm": 1, + "/opt/gtm": 1, + "Startup": 1, + "errors": 6, + "INVOBJ": 1, + "Cannot": 1, + "ZLINK": 1, + "due": 1, + "unexpected": 1, + "format": 2, + "I": 43, + "TEXT": 5, + "Object": 1, + "compiled": 1, + "CHSET": 1, + "from": 16, + "ZCHSET": 2, + "above": 3, + "written": 3, + "startup": 1, + "correct": 1, + "like": 4, + "above.": 1, + "Limits": 1, + "built": 1, + "limits": 6, + "internal": 3, + "matching": 4, + "recursion.": 1, + "Those": 1, + "prevent": 1, + "engine": 1, + "very": 2, + "long": 2, + "especially": 1, + "there": 2, + "would": 2, + "matches": 10, + "tree": 1, + "checked.": 1, + "Functions": 1, + "itself": 1, + "allows": 1, + "setting": 3, + "MATCH_LIMIT": 1, + "MATCH_LIMIT_RECURSION": 1, + "optional": 16, + "arguments": 1, + "mlimit": 20, + "reclimit": 19, + "locale": 24, + "subst": 3, + "last": 4, + "specified": 4, + "library": 1, + "compilation": 2, + "time": 9, + "defaults": 3, + "config": 3, + "Example": 1, + "run": 2, + "longrun": 3, + "Equal": 1, + "corrected": 1, + "shortrun": 2, + "Enforced": 1, + "enforcedlimit": 2, + "Exception": 2, + "Handling": 1, + "Error": 1, + "conditions": 1, + "handled": 1, + "zc": 1, + "codes": 1, + "labels": 1, + "file.": 1, + "When": 2, + "neither": 1, + "nor": 1, + "et": 4, + "set": 98, + "handler": 9, + "within": 1, + "mechanism.": 1, + "out": 2, + "details": 5, + "depending": 1, + "caller": 1, + "type": 2, + "re": 2, + "raise": 3, + "exception.": 1, + "lead": 1, + "writing": 4, + "called": 8, + "prompt": 1, + "b": 64, + "place": 9, + "was": 5, + "terminating": 1, + "image.": 1, + "define": 2, + "own": 2, + "pcreexamples.m": 2, + "handlers.": 1, + "Handler": 1, + "nohandler": 4, + "ec": 10, + "COMPILE": 2, + "Pattern": 1, + "failed": 1, + "unmatched": 1, + "parentheses": 1, + "<-->": 1, + "HERE": 1, + "RTSLOC": 2, + "At": 2, + "source": 3, + "location": 5, + "2": 14, + "SETECODE": 1, + "Non": 1, + "empty": 7, + "assigned": 1, + "ECODE": 1, + "defined": 2, + "32": 1, + "GT": 1, + "image": 1, + "terminated": 1, + "myexception1": 3, + "zt=": 1, + "mytrap1": 2, + "x=": 5, + "never": 4, + "ec=": 7, + "zg": 2, + "mytrap3": 1, + "U16392": 2, + "DETAILS": 1, + "executed": 1, + "frame": 1, + "called.": 1, + "deeper": 1, + "frames": 1, + "already": 1, + "dropped": 1, + "so": 4, + "err": 4, + "local": 1, + "available": 1, + "context.": 1, + "Thats": 1, + "why": 1, + "doesn": 1, + "st": 6, + "unless": 1, + "cleared.": 1, + "Always": 1, + "clear": 6, + "handling": 2, + "done.": 2, + "Execute": 1, + "p5global": 1, + "p5replace": 1, + "p5lf": 1, + "p5nl": 1, + "newline": 1, + "utf8support": 1, + "myexception3": 1, + "MDB": 60, + "M/DB": 2, + "Mumps": 1, + "Emulation": 1, + "Amazon": 1, + "SimpleDB": 1, + "buildDate": 1, + "indexLength": 10, + "keyId": 108, + "tested": 1, + "valid": 2, + "these": 1, + "methods": 2, + "Initialise": 2, + "service": 1, + "//192.168.1.xxx/mdb/test.mgwsi": 1, + "Action": 2, + "addUser": 2, + "userKeyId": 6, + "userSecretKey": 6, + "requestId": 17, + "boxUsage": 11, + "startTime": 21, + "init": 6, + ".startTime": 5, + "MDBUAF": 2, + ".boxUsage": 22, + "createDomain": 1, + "domainName": 38, + "dn": 4, + "dnx": 3, + "id": 33, + "noOfDomains": 12, + "token": 21, + "MDBConfig": 1, + "getDomainId": 3, + "found": 7, + "namex": 8, + "buildItemNameIndex": 2, + "domainId": 53, + "itemId": 41, + "itemValue": 7, + "itemValuex": 3, + "countDomains": 2, + "deleteDomain": 2, + "listDomains": 1, + "maxNoOfDomains": 2, + "nextToken": 7, + "domainList": 3, + "fullName": 3, + "decodeBase64": 1, + "encodeBase64": 1, + "itemExists": 1, + "getItemId": 2, + "getAttributeValueId": 3, + "attribId": 36, + "valuex": 13, + "putAttributes": 2, + "itemName": 16, + "attributes": 32, + "valueId": 16, + "xvalue": 4, + "Item": 1, + "Domain": 1, + "itemNamex": 4, + "parseJSON": 1, + "attributesJSON": 1, + ".attributes": 5, + "attribute": 14, + "getAttributeId": 2, + "domain": 1, + "Not": 1, + "than": 4, + "one": 5, + "same": 2, + "remove": 6, + "existing": 2, + "now": 1, + "name/value": 2, + "pair": 1, + "getAttributes": 2, + "suppressBoxUsage": 1, + "attrNo": 9, + "valueNo": 6, + "delete": 2, + "item": 2, + "associated": 1, + "queryIndex": 1, + "records": 2, + "vno": 2, + "left": 5, + "completely": 3, + "references": 1, + "pos": 33, + "maxNoOfItems": 3, + "itemList": 12, + "session": 1, + "identifier": 1, + "stored": 1, + "queryExpression": 16, + "relink": 1, + "zewdGTMRuntime": 1, + "CGIEVAR": 1, + "cgi": 1, + "unescName": 5, + "urlDecode": 2, + "KEY": 36, + "WebLink": 1, + "entry": 5, + "point": 2, + "action": 15, + "AWSAcessKeyId": 1, + "db": 9, + "hash": 1, + "itemsAndAttrs": 2, + "secretKey": 1, + "signatureMethod": 2, + "signatureVersion": 3, + "stringToSign": 2, + "rltKey": 2, + "_action_": 2, + "h_": 3, + "mdbKey": 2, + "errorResponse": 9, + ".requestId": 7, + "createResponse": 4, + "installMDBM": 1, + "authenticate": 1, + "MDBSession": 1, + "createResponseStringToSign": 1, + "Security": 1, + "_db": 1, + "MDBAPI": 1, + "_db_": 1, + "db_": 1, + "_action": 1, + "metaData": 1, + "domainMetadata": 1, + ".metaData": 1, + "paramName": 8, + "paramValue": 5, + "Query": 1, + "DomainName": 2, + "QueryExpression": 2, + "MaxNumberOfItems": 2, + "NextToken": 3, + "QueryWithAttributes": 1, + "AttributeName.": 2, + "Select": 2, + "SelectExpression": 1, + "entering": 1, + "runSelect.": 1, + "selectExpression": 3, + "finished": 1, + "runSelect": 3, + "select": 3, + "asc": 1, + "inValue": 6, + "str": 15, + "expr": 18, + "rel": 2, + "itemStack": 3, + "between": 2, + "<=\">": 1, + "lastWord=": 7, + "inAttr=": 5, + "expr=": 10, + "thisWord=": 7, + "inAttr": 2, + "c=": 28, + "1": 74, + "queryExpression=": 4, + "_queryExpression": 2, + "4": 5, + "3": 6, + "isNull": 1, + "5": 1, + "8": 1, + "isNotNull": 1, + "9": 1, + "np": 17, + "prevName": 1, + "term": 10, + "np=": 1, + "diffNames": 6, + "_term": 3, + "expr_": 1, + "_orderBy": 1, + "runQuery": 2, + ".itemList": 4, + "escVals": 1, + "str_c": 2, + "invalid": 4, + "_x_": 1, + "orderBy": 1, + "_query": 1, + "parseSelect": 1, + ".domainName": 2, + ".queryExpression": 1, + ".orderBy": 1, + ".limit": 1, + "replaceAll": 11, + "executeSelect": 1, + ".itemStack": 1, + "***": 2, + "listCopy": 3, + "escape": 7, + "externalSelect": 2, + "_keyId_": 1, + "_selectExpression": 1, + "FromStr": 6, + "S": 99, + "ToStr": 4, + "InText": 4, + "p1": 5, + "stripTrailingSpaces": 2, + "spaces": 3, + "makeString": 3, + "string_spaces": 1, + "zewdDemo": 1, + "Tutorial": 1, + "page": 12, + "Product": 2, + "Enterprise": 5, + "Web": 5, + "Developer": 5, + "Date": 2, + "Wed": 1, + "Apr": 1, + "getLanguage": 1, + "sessid": 146, + "getRequestValue": 1, + "zewdAPI": 52, + "setSessionValue": 6, + "login": 1, + "username": 8, + "password": 8, + "getTextValue": 4, + "getPasswordValue": 2, + "_username_": 1, + "_password": 1, + "logine": 1, + "textid": 1, + "errorMessage": 1, + "ewdDemo": 8, + "clearList": 2, + "appendToList": 4, + "addUsername": 1, + "newUsername": 5, + "newUsername_": 1, + "setTextValue": 4, + "testValue": 1, + "getSelectValue": 3, + "_user": 1, + "getPassword": 1, + "setPassword": 1, + "getObjDetails": 1, + "_user_": 1, + "_data": 2, + "setRadioOn": 2, + "initialiseCheckbox": 2, + "setCheckboxOn": 3, + "createLanguageList": 1, + "setMultipleSelectOn": 2, + "clearTextArea": 2, + "textarea": 2, + "createTextArea": 1, + ".textarea": 1, + "userType": 4, + "selected": 4, + "setMultipleSelectValues": 1, + ".selected": 1, + "testField3": 3, + ".value": 1, + "testField2": 1, + "field3": 1, + "dateTime": 1, + "start1": 2, + "label": 5, + "ax": 2, + "bx": 2, + "cx": 2, + "ay": 2, + "cy": 2, + "sumx": 3, + "sqrx": 3, + "sumxy": 5, + "do": 15, + "x*x": 1, + "y": 33, + "..": 28, + "x*y": 1, + "...": 6, + "computes": 1, + "factorial": 3, + "f*n": 1, + "main": 1, + "Digest": 2, + "trademark": 2, + "Fidelity": 2, + "Information": 2, + "Services": 2, + "Inc.": 2, + "//sourceforge.net/projects/fis": 2, + "gtm/": 2, + "simple": 2, + "OpenSSL": 3, + "based": 1, + "digest": 19, + "rewrite": 1, + "EVP_DigestInit": 1, + "additional": 5, + "wrapper.": 1, + "//www.openssl.org/docs/crypto/EVP_DigestInit.html": 1, + "&": 28, + "digest.init": 3, + "usually": 1, + "algorithm": 1, + "specification.": 1, + "Anyway": 1, + "properly": 1, + "fail.": 1, + "Please": 2, + "feel": 2, + "contact": 2, + "me": 2, + "questions": 2, + "returns": 7, + "ASCII": 2, + "HEX": 1, + "digest.update": 2, + ".c": 2, + ".m": 11, + "digest.final": 2, + ".d": 1, + "alg": 3, + "context": 1, + "try": 1, + "etc": 1, + "returned": 1, + "occurs": 1, + "e.g.": 2, + "unknown": 1, + "update": 1, + "ctx": 4, + "msg": 6, + "updates": 1, + ".ctx": 2, + ".msg": 1, + "final": 1, + "hex": 1, + "frees": 1, + "memory": 1, + "allocated": 1, + ".digest": 1, + "algorithms": 1, + "availability": 1, + "depends": 1, + "libcrypto": 1, + "configuration": 1, + "md4": 1, + "md5": 2, + "sha": 1, + "sha1": 1, + "sha224": 1, + "sha256": 1, + "sha512": 1, + "dss1": 1, + "ripemd160": 1, + "Keith": 1, + "Lynch": 1, + "p#f": 1, + "*8": 2, + "sum": 15, + "start2": 1, + "PXAI": 1, + "ISL/JVS": 1, + "ISA/KWP": 1, + "ESW": 1, + "PCE": 2, + "DRIVING": 1, + "RTN": 1, + "/20/03": 1, + "am": 1, + "PATIENT": 5, + "CARE": 1, + "ENCOUNTER": 2, + "**15": 1, + "**": 4, + "Aug": 1, + "Q": 58, + "DATA2PCE": 1, + "PXADATA": 7, + "PXAPKG": 9, + "PXASOURC": 10, + "PXAVISIT": 8, + "PXAUSER": 6, + "PXANOT": 3, + "ERRRET": 2, + "PXAPREDT": 2, + "PXAPROB": 15, + "PXACCNT": 2, + "add/edit/delete": 1, + "PCE.": 1, + "required": 4, + "pointer": 4, + "visit": 3, + "related.": 1, + "known": 2, + "then": 2, + "nodes": 1, + "needed": 1, + "lookup/create": 1, + "visit.": 1, + "adding": 1, + "data.": 1, + "displayed": 1, + "screen": 1, + "debugging": 1, + "initial": 1, + "code.": 1, + "passed": 4, + "reference.": 2, + "present": 1, + "PXKERROR": 2, + "elements": 3, + "caller.": 1, + "want": 1, + "edit": 1, + "Primary": 3, + "Provider": 1, + "moment": 1, + "being": 1, + "dangerous": 1, + "dotted": 1, + "name.": 1, + "warnings": 1, + "occur": 1, + "They": 1, + "back": 4, + "form": 1, + "general": 1, + "description": 1, + "problem.": 1, + "IF": 9, + "ERROR1": 1, + "GENERAL": 2, + "ERRORS": 4, + "J": 38, + "SUBSCRIPT": 5, + "PASSED": 4, + "IN": 4, + "FIELD": 2, + "FROM": 5, + "WARNING2": 1, + "WARNINGS": 2, + "WARNING3": 1, + "SERVICE": 1, + "CONNECTION": 1, + "REASON": 9, + "ERROR4": 1, + "PROBLEM": 1, + "LIST": 1, + "Returns": 2, + "PFSS": 2, + "Account": 2, + "Reference": 2, + "known.": 1, + "Returned": 1, + "located": 1, + "Order": 1, + "#100": 1, + "occurred": 2, + "processed": 1, + "could": 1, + "incorrectly": 1, + "NEW": 3, + "VARIABLES": 1, + "N": 19, + "NOVSIT": 1, + "PXAK": 20, + "DFN": 1, + "PXAERRF": 3, + "PXADEC": 1, + "PXELAP": 1, + "PXASUB": 2, + "VALQUIET": 2, + "PRIMFND": 7, + "K": 5, + "PXAERROR": 1, + "PXAERR": 7, + "PRVDR": 1, + "needs": 1, + "look": 1, + "up": 1, + "passed.": 1, + "D": 64, + "@PXADATA@": 8, + "G": 40, + "DUZ": 3, + "TMP": 26, + "SOR": 1, + "SOURCE": 2, + "PKG2IEN": 1, + "VSIT": 1, + "PXAPIUTL": 2, + "TMPSOURC": 1, + "SAVES": 1, + "CREATES": 1, + "VST": 2, + "VISIT": 3, + "KILL": 1, + "VPTR": 1, + "PXAIVSTV": 1, + "ERR": 2, + "PXAIVST": 1, + "PRV": 1, + "PROVIDER": 1, + "P": 68, + "AUPNVSIT": 1, + "F": 10, + "O": 24, + ".I": 4, + "..S": 7, + "status": 2, + "Secondary": 2, + ".S": 6, + "..I": 2, + "PXADI": 4, + "NODE": 5, + "SCREEN": 2, + "VA": 1, + "EXTERNAL": 2, + "INTERNAL": 2, + "ARRAY": 2, + "PXAICPTV": 1, + "SEND": 1, + "TO": 6, + "W": 4, + "BLD": 2, + "DIALOG": 4, + ".PXAERR": 3, + "MSG": 2, + "SET": 3, + "GLOBAL": 1, + "NA": 1, + "PROVDRST": 1, + "Check": 1, + "provider": 1, + "PRVIEN": 14, + "DETS": 7, + "DIC": 6, + "DR": 4, + "DA": 4, + "DIQ": 3, + "PRI": 3, + "PRVPRIM": 2, + "AUPNVPRV": 2, + "U": 14, + ".04": 1, + "EN": 2, + "DIQ1": 1, + "POVPRM": 1, + "POVARR": 1, + "STOP": 1, + "LPXAK": 4, + "ORDX": 14, + "NDX": 7, + "ORDXP": 3, + "DX": 2, + "ICD9": 2, + "AUPNVPOV": 2, + "@POVARR@": 6, + "force": 1, + "originally": 1, + "primary": 1, + "diagnosis": 1, + "flag": 1, + ".F": 2, + "..E": 1, + "...S": 5, + "tries": 1, + "deliver": 1, + "best": 2, + "interface": 1, + "providing": 1, + "arrays": 1, + "parameter": 1, + "simplified": 1, + "locales": 2, + "exceptions": 1, + "Perl5": 1, + "Match.": 1, + "comprehensive": 1, + "beginner": 1, + "tips": 1, + "GT.M.": 1, + "Try": 2, + "book": 1, + "regular": 1, + "expressions": 1, + "//regex.info/": 1, + "information": 1, + "//pcre.org/": 1, + "pcre.version": 1, + "protect": 11, + "erropt": 6, + "isstring": 5, + "pcre.config": 1, + ".name": 1, + ".erropt": 3, + ".isstring": 1, + ".s": 5, + "joined": 3, + "Unix": 1, + "pcre_maketables": 2, + "cases": 1, + "undefined": 1, + "variables": 3, + "LC_*": 1, + "tip": 1, + "dpkg": 1, + "reconfigure": 1, + "enable": 1, + "system": 1, + "wide": 1, + "calls": 1, + "pcre_exec": 4, + "execution": 2, + "manual": 2, + "depth": 1, + "recursion": 1, + "calling": 2, + "erroffset": 3, + "pcre.compile": 1, + ".err": 1, + ".erroffset": 1, + "startoffset": 3, + "octets": 2, + "starts": 1, + "pcre.exec": 2, + "zl": 7, + "<0>": 2, + "element": 1, + "code=": 4, + "fullinfo": 3, + "OPTIONS": 2, + "SIZE": 1, + "CAPTURECOUNT": 1, + "BACKREFMAX": 1, + "FIRSTBYTE": 1, + "FIRSTTABLE": 1, + "LASTLITERAL": 1, + "NAMEENTRYSIZE": 1, + "NAMECOUNT": 1, + "STUDYSIZE": 1, + "OKPARTIAL": 1, + "JCHANGED": 1, + "HASCRORLF": 1, + "MINLENGTH": 1, + "JIT": 1, + "JITSIZE": 1, + "NAME": 3, + "nametable": 4, + "index": 1, + "0": 23, + "indexed": 4, + "substring": 1, + "begin=": 3, + "end=": 4, + "contains": 2, + "UNICODE": 1, + "begin_": 1, + "_end": 1, + "store": 6, + "stores": 1, + "key=": 2, + "gstore": 3, + "round": 12, + "byref": 5, + "ref=": 3, + "l=": 2, + "indexes": 1, + "extended": 1, + "NAMED_ONLY": 2, + "OVECTOR": 2, + "namedonly": 9, + "options=": 4, + "i=": 14, + "o=": 12, + "u": 6, + "namedonly=": 2, + "ovector=": 2, + "NO_AUTO_CAPTURE": 2, + "_capture_": 2, + "s=": 4, + "_s_": 1, + "GROUPED": 1, + "pcredemo": 1, + "pcreccp": 1, + "cc": 1, + "Perl": 1, + "utf8": 2, + "skip": 6, + "determine": 1, + "them": 1, + "before": 2, + "byref=": 2, + "check": 2, + "UTF8": 2, + "double": 1, + "utf8=": 1, + "crlf=": 3, + "NL_CRLF": 1, + "NL_ANY": 1, + "NL_ANYCRLF": 1, + "none": 1, + "NEWLINE": 1, + ".start": 1, + "unwind": 1, + "call": 1, + "optimize": 1, + "leave": 1, + "advance": 1, + "LF": 1, + "CR": 1, + "CRLF": 1, + "middle": 1, + ".i": 2, + ".match": 2, + ".round": 2, + ".byref": 2, + ".ovector": 2, + "occurrences": 1, + "matched": 1, + "th": 3, + "replaced": 1, + "substitution": 2, + "begins": 1, + "substituted": 2, + "ends": 1, + "backref": 1, + "boffset": 1, + "prepare": 1, + ".subst": 1, + ".backref": 1, + "silently": 1, + "zco": 1, + "": 1, + "direct": 3, + "take": 1, + "argument": 1, + "@ref": 2, + "@": 8, + "meaning": 1, + "zs": 2, + "XC": 1, + "specific": 3, + "U16384": 1, + "U16385": 1, + "U16386": 1, + "U16387": 1, + "U16388": 2, + "U16389": 1, + "U16390": 1, + "U16391": 1, + "U16393": 1, + "NOTES": 1, + "U16401": 2, + "raised": 2, + "NOMATCH": 2, + "ever": 1, + "uncommon": 1, + "situation": 1, + "too": 1, + "small": 1, + "considering": 1, + "controlled": 1, + "U16402": 1, + "U16403": 1, + "U16404": 1, + "U16405": 1, + "U16406": 1, + "U16407": 1, + "U16408": 1, + "U16409": 1, + "U16410": 1, + "U16411": 1, + "U16412": 1, + "U16414": 1, + "U16415": 1, + "U16416": 1, + "U16417": 1, + "U16418": 1, + "U16419": 1, + "U16420": 1, + "U16421": 1, + "U16423": 1, + "U16424": 1, + "U16425": 1, + "U16426": 1, + "U16427": 1, + "Fibonacci": 1, + "series": 2, + "ZDIOUT1": 1, + "Experimental": 1, + "FileMan": 1, + "host": 2, + "Open": 1, + "Source": 1, + "Electronic": 1, + "Health": 1, + "Record": 1, + "Agent": 1, "Licensed": 1, - "under": 1, - "the": 3, "Apache": 1, "Version": 1, - "See": 1, - "http": 1, + "except": 1, + "compliance": 1, + "License.": 2, "//www.apache.org/licenses/LICENSE": 1, - "-": 26, - "Purpose": 1, - "These": 1, - "are": 2, - "used": 3, - "to": 2, - "define": 1, - "natives": 1, - "and": 2, - "actions.": 1, - "Bind": 1, - "attributes": 1, - "for": 4, - "this": 1, - "block": 5, - "BIND_SET": 1, - "SHALLOW": 1, - "]": 61, - ";": 19, - "Special": 1, - "as": 1, - "spec": 3, - "datatype": 2, - "test": 1, - "functions": 1, - "(": 30, - "e.g.": 1, - "time": 2, - ")": 33, - "value": 1, - "any": 1, - "type": 1, - "The": 1, - "native": 5, - "function": 3, - "must": 1, - "be": 1, - "defined": 1, - "first.": 1, - "This": 1, - "special": 1, - "boot": 1, - "created": 1, - "manually": 1, - "within": 1, - "C": 1, - "code.": 1, - "Creates": 2, - "internal": 2, - "usage": 2, - "only": 2, - ".": 4, - "no": 3, - "check": 2, - "required": 2, - "we": 2, - "know": 2, - "it": 2, - "correct": 2, - "action": 2, - "Rebol": 4, - "re": 20, - "func": 5, - "s": 5, - "/i": 1, - "rejoin": 1, - "compose": 1, - "either": 1, - "i": 1, - "little": 1, - "helper": 1, - "standard": 1, - "grammar": 1, - "regex": 2, - "date": 6, - "naive": 1, - "string": 1, - "|": 22, - "S": 3, - "*": 7, - "<(?:[^^\\>": 1, - "d": 3, - "+": 6, - "/": 5, - "@": 1, - "%": 2, - "A": 3, - "F": 1, - "url": 1, - "PR_LITERAL": 10, - "string_url": 1, - "email": 1, - "string_email": 1, - "binary": 1, - "binary_base_two": 1, - "binary_base_sixty_four": 1, - "binary_base_sixteen": 1, - "re/i": 2, - "issue": 1, - "string_issue": 1, - "values": 1, - "value_date": 1, - "value_time": 1, - "tuple": 1, - "value_tuple": 1, - "pair": 1, - "value_pair": 1, - "number": 2, - "PR": 1, - "Za": 2, - "z0": 2, - "<[=>": 1, - "rebol": 1, - "red": 1, - "/system": 1, - "world": 1, - "topaz": 1, - "true": 1, - "false": 1, - "yes": 1, - "on": 1, - "off": 1, - "none": 1, - "#": 1, - "hello": 8, - "print": 4, - "author": 1 - }, - "Red": { - "Red": 3, - "[": 111, - "Title": 2, - "Author": 1, - "]": 114, - "File": 1, - "%": 2, - "console.red": 1, - "Tabs": 1, - "Rights": 1, - "License": 2, - "{": 11, - "Distributed": 1, - "under": 1, - "the": 3, - "Boost": 1, - "Software": 1, - "Version": 1, - "See": 1, - "https": 1, - "//github.com/dockimbel/Red/blob/master/BSL": 1, - "-": 74, - "License.txt": 1, - "}": 11, - "Purpose": 2, - "Language": 2, - "http": 2, - "//www.red": 2, - "lang.org/": 2, - "#system": 1, - "global": 1, - "#either": 3, - "OS": 3, - "MacOSX": 2, - "History": 1, - "library": 1, - "cdecl": 3, - "add": 2, - "history": 2, - ";": 31, - "Add": 1, - "line": 9, - "to": 2, - "history.": 1, - "c": 7, - "string": 10, - "rl": 4, - "insert": 3, - "wrapper": 2, - "func": 1, - "count": 3, - "integer": 16, - "key": 3, - "return": 10, - "Windows": 2, - "system/platform": 1, - "ret": 5, - "AttachConsole": 1, - "if": 2, - "zero": 3, - "print": 5, - "halt": 2, - "SetConsoleTitle": 1, - "as": 4, - "string/rs": 1, - "head": 1, - "str": 4, - "bind": 1, - "tab": 3, - "input": 2, - "routine": 1, - "prompt": 3, - "/local": 1, - "len": 1, - "buffer": 4, - "string/load": 1, - "+": 1, - "length": 1, - "free": 1, - "byte": 3, - "ptr": 14, - "SET_RETURN": 1, - "(": 6, - ")": 4, - "delimiters": 1, - "function": 6, - "block": 3, - "list": 1, - "copy": 2, - "none": 1, - "foreach": 1, - "case": 2, - "escaped": 2, - "no": 2, - "in": 2, - "comment": 2, - "switch": 3, - "#": 8, - "mono": 3, - "mode": 3, - "cnt/1": 1, - "red": 1, - "eval": 1, - "code": 3, - "load/all": 1, - "unless": 1, - "tail": 1, - "set/any": 1, - "not": 1, - "script/2": 1, - "do": 2, - "skip": 1, - "script": 1, - "quit": 2, - "init": 1, - "console": 2, - "Console": 1, - "alpha": 1, - "version": 3, - "only": 1, - "ASCII": 1, - "supported": 1, - "Red/System": 1, - "#include": 1, - "../common/FPU": 1, - "configuration.reds": 1, - "C": 1, - "types": 1, - "#define": 2, - "time": 2, - "long": 2, - "clock": 1, - "date": 1, - "alias": 2, - "struct": 5, - "second": 1, - "minute": 1, - "hour": 1, - "day": 1, - "month": 1, - "year": 1, - "Since": 1, - "weekday": 1, - "since": 1, - "Sunday": 1, - "yearday": 1, - "daylight": 1, - "saving": 1, - "Negative": 1, - "unknown": 1, - "#import": 1, - "LIBC": 1, - "file": 1, - "Error": 1, - "handling": 1, - "form": 1, - "error": 5, - "Return": 1, - "description.": 1, - "Print": 1, - "standard": 1, - "output.": 1, - "Memory": 1, - "management": 1, - "make": 1, - "Allocate": 1, - "filled": 1, - "memory.": 1, - "chunks": 1, - "size": 5, - "binary": 4, - "resize": 1, - "Resize": 1, - "memory": 2, - "allocation.": 1, - "JVM": 6, - "reserved0": 1, - "int": 6, - "reserved1": 1, - "reserved2": 1, - "DestroyJavaVM": 1, - "JNICALL": 5, - "vm": 5, - "jint": 5, - "AttachCurrentThread": 1, - "penv": 3, - "p": 3, - "args": 2, - "DetachCurrentThread": 1, - "GetEnv": 1, - "AttachCurrentThreadAsDaemon": 1, - "just": 2, - "some": 2, - "datatypes": 1, - "for": 1, - "testing": 1, - "#some": 1, - "hash": 1, - "FF0000": 3, - "FF000000": 2, - "with": 4, - "instead": 1, - "of": 1, - "space": 2, - "/wAAAA": 1, - "/wAAA": 2, - "A": 2, - "inside": 2, - "char": 1, - "bla": 2, - "ff": 1, - "foo": 3, - "numbers": 1, - "which": 1, - "interpreter": 1, - "path": 1, - "h": 1, - "#if": 1, - "type": 1, - "exe": 1, - "push": 3, - "system/stack/frame": 2, - "save": 1, - "previous": 1, - "frame": 2, - "pointer": 2, - "system/stack/top": 1, - "@@": 1, - "reposition": 1, - "after": 1, - "catch": 1, - "flag": 1, - "CATCH_ALL": 1, - "exceptions": 1, - "root": 1, - "barrier": 1, - "keep": 1, - "stack": 1, - "aligned": 1, - "on": 1, - "bit": 1 - }, - "RMarkdown": { - "Some": 1, - "text.": 1, - "##": 1, - "A": 1, - "graphic": 1, - "in": 1, - "R": 1, - "{": 1, - "r": 1, - "}": 1, - "plot": 1, - "(": 3, - ")": 3, - "hist": 1, - "rnorm": 1 - }, - "RobotFramework": { - "***": 16, - "Settings": 3, - "Documentation": 3, - "Example": 3, - "test": 6, - "cases": 2, - "using": 4, - "the": 9, - "data": 2, - "-": 16, - "driven": 4, - "testing": 2, - "approach.": 2, - "...": 28, - "Tests": 1, - "use": 2, - "Calculate": 3, - "keyword": 5, - "created": 1, - "in": 5, - "this": 1, - "file": 1, - "that": 5, - "turn": 1, - "uses": 1, - "keywords": 3, - "CalculatorLibrary": 5, - ".": 4, - "An": 1, - "exception": 1, - "is": 6, - "last": 1, - "has": 5, - "a": 4, - "custom": 1, - "_template": 1, - "keyword_.": 1, - "The": 2, - "style": 3, - "works": 3, - "well": 3, - "when": 2, - "you": 1, - "need": 3, - "to": 5, - "repeat": 1, - "same": 1, - "workflow": 3, - "multiple": 2, - "times.": 1, - "Notice": 1, - "one": 1, - "of": 3, - "these": 1, - "tests": 5, - "fails": 1, - "on": 1, - "purpose": 1, - "show": 1, - "how": 1, - "failures": 1, - "look": 1, - "like.": 1, - "Test": 4, - "Template": 2, - "Library": 3, - "Cases": 3, - "Expression": 1, - "Expected": 1, - "Addition": 2, - "+": 6, - "Subtraction": 1, - "Multiplication": 1, - "*": 4, - "Division": 2, - "/": 5, - "Failing": 1, - "Calculation": 3, - "error": 4, - "[": 4, - "]": 4, - "should": 9, - "fail": 2, - "kekkonen": 1, - "Invalid": 2, - "button": 13, - "{": 15, - "EMPTY": 3, - "}": 15, - "expression.": 1, - "by": 3, - "zero.": 1, - "Keywords": 2, - "Arguments": 2, - "expression": 5, - "expected": 4, - "Push": 16, - "buttons": 4, - "C": 4, - "Result": 8, - "be": 9, - "Should": 2, - "cause": 1, - "equal": 1, - "#": 2, - "Using": 1, - "BuiltIn": 1, - "case": 1, - "gherkin": 1, - "syntax.": 1, - "This": 3, - "similar": 1, - "examples.": 1, - "difference": 1, - "higher": 1, - "abstraction": 1, - "level": 1, - "and": 2, - "their": 1, - "arguments": 1, - "are": 1, - "embedded": 1, - "into": 1, - "names.": 1, - "kind": 2, - "_gherkin_": 2, - "syntax": 1, - "been": 3, - "made": 1, - "popular": 1, - "http": 1, - "//cukes.info": 1, - "|": 1, - "Cucumber": 1, - "It": 1, - "especially": 1, - "act": 1, - "as": 1, - "examples": 1, - "easily": 1, - "understood": 1, - "also": 2, - "business": 2, - "people.": 1, - "Given": 1, - "calculator": 1, - "cleared": 2, - "When": 1, - "user": 2, - "types": 2, - "pushes": 2, - "equals": 2, - "Then": 1, - "result": 2, - "Calculator": 1, - "User": 2, - "All": 1, - "contain": 1, - "constructed": 1, - "from": 1, - "Creating": 1, - "new": 1, - "or": 1, - "editing": 1, - "existing": 1, - "easy": 1, - "even": 1, - "for": 2, - "people": 2, - "without": 1, - "programming": 1, - "skills.": 1, - "normal": 1, - "automation.": 1, - "If": 1, - "understand": 1, - "may": 1, - "work": 1, - "better.": 1, - "Simple": 1, - "calculation": 2, - "Longer": 1, - "Clear": 1, - "built": 1, - "variable": 1 - }, - "Ruby": { - "Pry.config.commands.import": 1, - "Pry": 1, - "ExtendedCommands": 1, - "Experimental": 1, - "Pry.config.pager": 1, - "false": 29, - "Pry.config.color": 1, - "Pry.config.commands.alias_command": 1, - "Pry.config.commands.command": 1, - "do": 38, - "|": 93, - "*args": 17, - "output.puts": 1, - "end": 239, - "Pry.config.history.should_save": 1, - "Pry.config.prompt": 1, - "[": 58, - "proc": 2, - "{": 70, - "}": 70, - "]": 58, - "Pry.plugins": 1, - ".disable": 1, - "appraise": 2, - "gem": 3, - "load": 3, - "Dir": 4, - ".each": 4, - "plugin": 3, - "(": 244, - ")": 256, - "task": 2, - "default": 2, - "puts": 12, - "module": 8, - "Foo": 1, - "require": 58, - "class": 7, - "Formula": 2, - "include": 3, - "FileUtils": 1, - "attr_reader": 5, - "name": 51, - "path": 16, - "url": 12, - "version": 10, - "homepage": 2, - "specs": 14, - "downloader": 6, - "standard": 2, - "unstable": 2, - "head": 3, - "bottle_version": 2, - "bottle_url": 3, - "bottle_sha1": 2, - "buildpath": 1, - "def": 143, - "initialize": 2, - "nil": 21, - "set_instance_variable": 12, - "if": 72, - "@head": 4, - "and": 6, - "not": 3, - "@url": 8, - "or": 7, - "ARGV.build_head": 2, - "@version": 10, - "@spec_to_use": 4, - "@unstable": 2, - "else": 25, - "@standard.nil": 1, - "SoftwareSpecification.new": 3, - "@specs": 3, - "@standard": 3, - "raise": 17, - "@url.nil": 1, - "@name": 3, - "validate_variable": 7, - "@path": 1, - "path.nil": 1, - "self.class.path": 1, - "Pathname.new": 3, - "||": 22, - "@spec_to_use.detect_version": 1, - "CHECKSUM_TYPES.each": 1, - "type": 10, - "@downloader": 2, - "download_strategy.new": 2, - "@spec_to_use.url": 1, - "@spec_to_use.specs": 1, - "@bottle_url": 2, - "bottle_base_url": 1, - "+": 47, - "bottle_filename": 1, - "self": 11, - "@bottle_sha1": 2, - "installed": 2, - "return": 25, - "installed_prefix.children.length": 1, - "rescue": 13, - "explicitly_requested": 1, - "ARGV.named.empty": 1, - "ARGV.formulae.include": 1, - "linked_keg": 1, - "HOMEBREW_REPOSITORY/": 2, - "/@name": 1, - "installed_prefix": 1, - "head_prefix": 2, - "HOMEBREW_CELLAR": 2, - "head_prefix.directory": 1, - "prefix": 14, - "rack": 1, - ";": 41, - "prefix.parent": 1, - "bin": 1, - "doc": 1, - "info": 2, - "lib": 1, - "libexec": 1, - "man": 9, - "man1": 1, - "man2": 1, - "man3": 1, - "man4": 1, - "man5": 1, - "man6": 1, - "man7": 1, - "man8": 1, - "sbin": 1, - "share": 1, - "etc": 1, - "HOMEBREW_PREFIX": 2, - "var": 1, - "plist_name": 2, - "plist_path": 1, - "download_strategy": 1, - "@spec_to_use.download_strategy": 1, - "cached_download": 1, - "@downloader.cached_location": 1, - "caveats": 1, - "options": 3, - "patches": 2, - "keg_only": 2, - "self.class.keg_only_reason": 1, - "fails_with": 2, - "cc": 3, - "self.class.cc_failures.nil": 1, - "Compiler.new": 1, - "unless": 15, - "cc.is_a": 1, - "Compiler": 1, - "self.class.cc_failures.find": 1, - "failure": 1, - "next": 1, - "failure.compiler": 1, - "cc.name": 1, - "failure.build.zero": 1, - "failure.build": 1, - "cc.build": 1, - "skip_clean": 2, - "true": 15, - "self.class.skip_clean_all": 1, - "to_check": 2, - "path.relative_path_from": 1, - ".to_s": 3, - "self.class.skip_clean_paths.include": 1, - "brew": 2, - "stage": 2, - "begin": 9, - "patch": 3, - "yield": 5, - "Interrupt": 2, - "RuntimeError": 1, - "SystemCallError": 1, - "e": 8, - "#": 100, - "don": 1, - "config.log": 2, - "t": 3, - "a": 10, - "std_autotools": 1, - "variant": 1, - "because": 1, - "autotools": 1, - "is": 3, - "lot": 1, - "std_cmake_args": 1, - "%": 10, - "W": 1, - "-": 34, - "DCMAKE_INSTALL_PREFIX": 1, - "DCMAKE_BUILD_TYPE": 1, - "None": 1, - "DCMAKE_FIND_FRAMEWORK": 1, - "LAST": 1, - "Wno": 1, - "dev": 1, - "self.class_s": 2, - "#remove": 1, - "invalid": 1, - "characters": 1, - "then": 4, - "camelcase": 1, - "it": 1, - "name.capitalize.gsub": 1, - "/": 34, - "_.": 1, - "s": 2, - "zA": 1, - "Z0": 1, - "upcase": 1, - ".gsub": 5, - "self.names": 1, - ".map": 6, - "f": 11, - "File.basename": 2, - ".sort": 2, - "self.all": 1, - "map": 1, - "self.map": 1, - "rv": 3, - "each": 1, - "<<": 15, - "self.each": 1, - "names.each": 1, - "n": 4, - "Formula.factory": 2, - "onoe": 2, - "inspect": 2, - "self.aliases": 1, - "self.canonical_name": 1, - "name.to_s": 3, - "name.kind_of": 2, - "Pathname": 2, - "formula_with_that_name": 1, - "HOMEBREW_REPOSITORY": 4, - "possible_alias": 1, - "possible_cached_formula": 1, - "HOMEBREW_CACHE_FORMULA": 2, - "name.include": 2, - "r": 3, - ".": 3, - "tapd": 1, - ".downcase": 2, - "tapd.find_formula": 1, - "relative_pathname": 1, - "relative_pathname.stem.to_s": 1, - "tapd.directory": 1, - "elsif": 7, - "formula_with_that_name.file": 1, - "formula_with_that_name.readable": 1, - "possible_alias.file": 1, - "possible_alias.realpath.basename": 1, - "possible_cached_formula.file": 1, - "possible_cached_formula.to_s": 1, - "self.factory": 1, - "https": 1, - "ftp": 1, - "//": 3, - ".basename": 1, - "target_file": 6, - "name.basename": 1, - "HOMEBREW_CACHE_FORMULA.mkpath": 1, - "FileUtils.rm": 1, - "force": 1, - "curl": 1, - "install_type": 4, - "from_url": 1, - "Formula.canonical_name": 1, - ".rb": 1, - "path.stem": 1, - "from_path": 1, - "path.to_s": 3, - "Formula.path": 1, - "from_name": 2, - "klass_name": 2, - "klass": 16, - "Object.const_get": 1, - "NameError": 2, - "LoadError": 3, - "klass.new": 2, - "FormulaUnavailableError.new": 1, - "tap": 1, - "path.realpath.to_s": 1, - "/Library/Taps/": 1, - "w": 6, - "self.path": 1, - "mirrors": 4, - "self.class.mirrors": 1, - "deps": 1, - "self.class.dependencies.deps": 1, - "external_deps": 1, - "self.class.dependencies.external_deps": 1, - "recursive_deps": 1, - "Formula.expand_deps": 1, - ".flatten.uniq": 1, - "self.expand_deps": 1, - "f.deps.map": 1, - "dep": 3, - "f_dep": 3, - "dep.to_s": 1, - "expand_deps": 1, - "protected": 1, - "system": 1, - "cmd": 6, - "pretty_args": 1, - "args.dup": 1, - "pretty_args.delete": 1, - "ARGV.verbose": 2, - "ohai": 3, - ".strip": 1, - "removed_ENV_variables": 2, - "case": 5, - "args.empty": 1, - "cmd.split": 1, - ".first": 1, - "when": 11, - "ENV.remove_cc_etc": 1, - "safe_system": 4, - "rd": 1, - "wr": 3, - "IO.pipe": 1, - "pid": 1, - "fork": 1, - "rd.close": 1, - "stdout.reopen": 1, - "stderr.reopen": 1, - "args.collect": 1, - "arg": 1, - "arg.to_s": 1, - "exec": 2, - "exit": 2, - "never": 1, - "gets": 1, - "here": 1, - "threw": 1, - "failed": 3, - "wr.close": 1, - "out": 4, - "rd.read": 1, - "until": 1, - "rd.eof": 1, - "Process.wait": 1, - ".success": 1, - "removed_ENV_variables.each": 1, - "key": 8, - "value": 4, - "ENV": 4, - "ENV.kind_of": 1, - "Hash": 3, - "BuildError.new": 1, - "args": 5, - "public": 2, - "fetch": 2, - "install_bottle": 1, - "CurlBottleDownloadStrategy.new": 1, - "mirror_list": 2, - "HOMEBREW_CACHE.mkpath": 1, - "fetched": 4, - "downloader.fetch": 1, - "CurlDownloadStrategyError": 1, - "mirror_list.empty": 1, - "mirror_list.shift.values_at": 1, - "retry": 2, - "checksum_type": 2, - "CHECKSUM_TYPES.detect": 1, - "instance_variable_defined": 2, - "verify_download_integrity": 2, - "fn": 2, - "args.length": 1, - "md5": 2, - "supplied": 4, - "instance_variable_get": 2, - "type.to_s.upcase": 1, - "hasher": 2, - "Digest.const_get": 1, - "hash": 2, - "fn.incremental_hash": 1, - "supplied.empty": 1, - "message": 2, - "EOF": 2, - "mismatch": 1, - "Expected": 1, - "Got": 1, - "Archive": 1, - "To": 1, - "an": 1, - "incomplete": 1, - "download": 1, - "remove": 1, - "the": 8, - "file": 1, - "above.": 1, - "supplied.upcase": 1, - "hash.upcase": 1, - "opoo": 1, - "private": 3, - "CHECKSUM_TYPES": 2, - "sha1": 4, - "sha256": 1, - ".freeze": 1, - "fetched.kind_of": 1, - "mktemp": 1, - "downloader.stage": 1, - "@buildpath": 2, - "Pathname.pwd": 1, - "patch_list": 1, - "Patches.new": 1, - "patch_list.empty": 1, - "patch_list.external_patches": 1, - "patch_list.download": 1, - "patch_list.each": 1, - "p": 2, - "p.compression": 1, - "gzip": 1, - "p.compressed_filename": 2, - "bzip2": 1, - "*": 3, - "p.patch_args": 1, - "v": 2, - "v.to_s.empty": 1, - "s/": 1, - "class_value": 3, - "self.class.send": 1, - "instance_variable_set": 1, - "self.method_added": 1, - "method": 4, - "self.attr_rw": 1, - "attrs": 1, - "attrs.each": 1, - "attr": 4, - "class_eval": 1, - "Q": 1, - "val": 10, - "val.nil": 3, - "@#": 2, - "attr_rw": 4, - "keg_only_reason": 1, - "skip_clean_all": 2, - "cc_failures": 1, - "stable": 2, - "&": 31, - "block": 30, - "block_given": 5, - "instance_eval": 2, - "ARGV.build_devel": 2, - "devel": 1, - "@mirrors": 3, - "clear": 1, - "from": 1, - "release": 1, - "bottle": 1, - "bottle_block": 1, - "Class.new": 2, - "self.version": 1, - "self.url": 1, - "self.sha1": 1, - "sha1.shift": 1, - "@sha1": 6, - "MacOS.cat": 1, - "String": 2, - "MacOS.lion": 1, - "self.data": 1, - "&&": 8, - "bottle_block.instance_eval": 1, - "@bottle_version": 1, - "bottle_block.data": 1, - "mirror": 1, - "@mirrors.uniq": 1, - "dependencies": 1, - "@dependencies": 1, - "DependencyCollector.new": 1, - "depends_on": 1, - "dependencies.add": 1, - "paths": 3, - "all": 1, - "@skip_clean_all": 2, - "@skip_clean_paths": 3, - ".flatten.each": 1, - "p.to_s": 2, - "@skip_clean_paths.include": 1, - "skip_clean_paths": 1, - "reason": 2, - "explanation": 1, - "@keg_only_reason": 1, - "KegOnlyReason.new": 1, - "explanation.to_s.chomp": 1, - "compiler": 3, - "@cc_failures": 2, - "CompilerFailures.new": 1, - "CompilerFailure.new": 2, - "Grit": 1, - "ActiveSupport": 1, - "Inflector": 1, - "extend": 2, - "pluralize": 3, - "word": 10, - "apply_inflections": 3, - "inflections.plurals": 1, - "singularize": 2, - "inflections.singulars": 1, - "camelize": 2, - "term": 1, - "uppercase_first_letter": 2, - "string": 4, - "term.to_s": 1, - "string.sub": 2, - "z": 7, - "d": 6, - "*/": 1, - "inflections.acronyms": 1, - ".capitalize": 1, - "inflections.acronym_regex": 2, - "b": 4, - "A": 5, - "Z_": 1, - "string.gsub": 1, - "_": 2, - "/i": 2, - "underscore": 3, - "camel_cased_word": 6, - "camel_cased_word.to_s.dup": 1, - "word.gsub": 4, - "Za": 1, - "Z": 3, - "word.tr": 1, - "word.downcase": 1, - "humanize": 2, - "lower_case_and_underscored_word": 1, - "result": 8, - "lower_case_and_underscored_word.to_s.dup": 1, - "inflections.humans.each": 1, - "rule": 4, - "replacement": 4, - "break": 4, - "result.sub": 2, - "result.gsub": 2, - "/_id": 1, - "result.tr": 1, - "match": 6, - "w/": 1, - ".upcase": 1, - "titleize": 1, - "": 1, - "capitalize": 1, - "Create": 1, - "of": 1, - "table": 2, - "like": 1, - "Rails": 1, - "does": 1, - "for": 1, - "models": 1, - "to": 1, - "names": 2, - "This": 1, - "uses": 1, - "on": 2, - "last": 4, - "in": 3, - "RawScaledScorer": 1, - "tableize": 2, - "class_name": 2, - "classify": 1, - "table_name": 1, - "table_name.to_s.sub": 1, - "/.*": 1, - "./": 1, - "dasherize": 1, - "underscored_word": 1, - "underscored_word.tr": 1, - "demodulize": 1, - "i": 2, - "path.rindex": 2, - "..": 1, - "deconstantize": 1, - "implementation": 1, - "based": 1, - "one": 1, - "facets": 1, - "id": 1, - "outside": 2, - "inside": 2, - "owned": 1, - "constant": 4, - "constant.ancestors.inject": 1, - "const": 3, - "ancestor": 3, - "Object": 1, - "ancestor.const_defined": 1, - "constant.const_get": 1, - "safe_constantize": 1, - "constantize": 1, - "e.message": 2, - "uninitialized": 1, - "wrong": 1, - "const_regexp": 3, - "e.name.to_s": 1, - "camel_cased_word.to_s": 1, - "ArgumentError": 1, - "/not": 1, - "missing": 1, - "ordinal": 1, - "number": 2, - ".include": 1, - "number.to_i.abs": 2, - "ordinalize": 1, - "nodoc": 3, - "parts": 1, - "camel_cased_word.split": 1, - "parts.pop": 1, - "parts.reverse.inject": 1, - "acc": 2, - "part": 1, - "part.empty": 1, - "rules": 1, - "word.to_s.dup": 1, - "word.empty": 1, - "inflections.uncountables.include": 1, - "result.downcase": 1, - "Z/": 1, - "rules.each": 1, - ".unshift": 1, - "File.dirname": 4, - "__FILE__": 3, - "For": 1, - "use/testing": 1, - "no": 1, - "require_all": 4, - "glob": 2, - "File.join": 6, - "Jekyll": 3, - "VERSION": 1, - "DEFAULTS": 2, - "Dir.pwd": 3, - "self.configuration": 1, - "override": 3, - "source": 2, - "config_file": 2, - "config": 3, - "YAML.load_file": 1, - "config.is_a": 1, - "stdout.puts": 1, - "err": 1, - "stderr.puts": 2, - "err.to_s": 1, - "DEFAULTS.deep_merge": 1, - ".deep_merge": 1, - "Jenkins": 1, - "Plugin": 1, - "Specification.new": 1, - "plugin.name": 1, - "plugin.display_name": 1, - "plugin.version": 1, - "plugin.description": 1, - "plugin.url": 1, - "plugin.developed_by": 1, - "plugin.uses_repository": 1, - "github": 1, - "plugin.depends_on": 1, - "#plugin.depends_on": 1, - "SHEBANG#!macruby": 1, - "object": 2, - "@user": 1, - "person": 1, - "attributes": 2, - "username": 1, - "email": 1, - "location": 1, - "created_at": 1, - "registered_at": 1, - "node": 2, - "role": 1, - "user": 1, - "user.is_admin": 1, - "child": 1, - "phone_numbers": 1, - "pnumbers": 1, - "extends": 1, - "node_numbers": 1, - "u": 1, - "partial": 1, - "u.phone_numbers": 1, - "Resque": 3, - "Helpers": 1, - "redis": 7, - "server": 11, - "/redis": 1, - "Redis.connect": 2, - "thread_safe": 2, - "namespace": 3, - "server.split": 2, - "host": 3, - "port": 4, - "db": 3, - "Redis.new": 1, - "resque": 2, - "@redis": 6, - "Redis": 3, - "Namespace.new": 2, - "Namespace": 1, - "@queues": 2, - "Hash.new": 1, - "h": 2, - "Queue.new": 1, - "coder": 3, - "@coder": 1, - "MultiJsonCoder.new": 1, - "attr_writer": 4, - "self.redis": 2, - "Redis.respond_to": 1, - "connect": 1, - "redis_id": 2, - "redis.respond_to": 2, - "redis.server": 1, - "nodes": 1, - "distributed": 1, - "redis.nodes.map": 1, - "n.id": 1, - ".join": 1, - "redis.client.id": 1, - "before_first_fork": 2, - "@before_first_fork": 2, - "before_fork": 2, - "@before_fork": 2, - "after_fork": 2, - "@after_fork": 2, - "to_s": 1, - "attr_accessor": 2, - "inline": 3, - "alias": 1, - "push": 1, - "queue": 24, - "item": 4, - "pop": 1, - ".pop": 1, - "ThreadError": 1, - "size": 3, - ".size": 1, - "peek": 1, - "start": 7, - "count": 5, - ".slice": 1, - "list_range": 1, - "decode": 2, - "redis.lindex": 1, - "Array": 2, - "redis.lrange": 1, - "queues": 3, - "redis.smembers": 1, - "remove_queue": 1, - ".destroy": 1, - "@queues.delete": 1, - "queue.to_s": 1, - "enqueue": 1, - "enqueue_to": 2, - "queue_from_class": 4, - "before_hooks": 2, - "Plugin.before_enqueue_hooks": 1, - ".collect": 2, - "hook": 9, - "klass.send": 4, - "before_hooks.any": 2, - "Job.create": 1, - "Plugin.after_enqueue_hooks": 1, - "dequeue": 1, - "Plugin.before_dequeue_hooks": 1, - "Job.destroy": 1, - "Plugin.after_dequeue_hooks": 1, - "klass.instance_variable_get": 1, - "@queue": 1, - "klass.respond_to": 1, - "klass.queue": 1, - "reserve": 1, - "Job.reserve": 1, - "validate": 1, - "NoQueueError.new": 1, - "klass.to_s.empty": 1, - "NoClassError.new": 1, - "workers": 2, - "Worker.all": 1, - "working": 2, - "Worker.working": 1, - "remove_worker": 1, - "worker_id": 2, - "worker": 1, - "Worker.find": 1, - "worker.unregister_worker": 1, - "pending": 1, - "queues.inject": 1, - "m": 3, - "k": 2, - "processed": 2, - "Stat": 2, - "queues.size": 1, - "workers.size.to_i": 1, - "working.size": 1, - "servers": 1, - "environment": 2, - "keys": 6, - "redis.keys": 1, - "key.sub": 1, - "SHEBANG#!ruby": 2, - "SHEBANG#!rake": 1, - "Sinatra": 2, - "Request": 2, - "<": 2, - "Rack": 1, - "accept": 1, - "@env": 2, - "entries": 1, - ".to_s.split": 1, - "entries.map": 1, - "accept_entry": 1, - ".sort_by": 1, - "first": 1, - "preferred_type": 1, - "self.defer": 1, - "pattern": 1, - "path.respond_to": 5, - "path.keys": 1, - "path.names": 1, - "TypeError": 1, - "URI": 3, - "URI.const_defined": 1, - "Parser": 1, - "Parser.new": 1, - "encoded": 1, - "char": 4, - "enc": 5, - "URI.escape": 1, - "helpers": 3, - "data": 1, - "reset": 1, - "set": 36, - "development": 6, - ".to_sym": 1, - "raise_errors": 1, - "Proc.new": 11, - "test": 5, - "dump_errors": 1, - "show_exceptions": 1, - "sessions": 1, - "logging": 2, - "protection": 1, - "method_override": 4, - "use_code": 1, - "default_encoding": 1, - "add_charset": 1, - "javascript": 1, - "xml": 2, - "xhtml": 1, - "json": 1, - "settings.add_charset": 1, - "text": 3, - "session_secret": 3, - "SecureRandom.hex": 1, - "NotImplementedError": 1, - "Kernel.rand": 1, - "**256": 1, - "alias_method": 2, - "methodoverride": 2, - "run": 2, - "via": 1, - "at": 1, - "running": 2, - "built": 1, - "now": 1, - "http": 1, - "webrick": 1, - "bind": 1, - "ruby_engine": 6, - "defined": 1, - "RUBY_ENGINE": 2, - "server.unshift": 6, - "ruby_engine.nil": 1, - "absolute_redirects": 1, - "prefixed_redirects": 1, - "empty_path_info": 1, - "app_file": 4, - "root": 5, - "File.expand_path": 1, - "views": 1, - "reload_templates": 1, - "lock": 1, - "threaded": 1, - "public_folder": 3, - "static": 1, - "File.exist": 1, - "static_cache_control": 1, - "error": 3, - "Exception": 1, - "response.status": 1, - "content_type": 3, - "configure": 2, - "get": 2, - "filename": 2, - "png": 1, - "send_file": 1, - "NotFound": 1, - "HTML": 2, - "": 1, - "html": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "

": 1, - "doesn": 1, - "rsquo": 1, - "know": 1, - "this": 2, - "ditty.": 1, - "

": 1, - "": 1, - "src=": 1, - "
": 1, - "id=": 1, - "Try": 1, - "
": 1,
-      "request.request_method.downcase": 1,
-      "nend": 1,
-      "
": 1, - "
": 1, - "": 1, - "": 1, - "Application": 2, - "Base": 2, - "super": 3, - "self.register": 2, - "extensions": 6, - "added_methods": 2, - "extensions.map": 1, - "m.public_instance_methods": 1, - ".flatten": 1, - "Delegator.delegate": 1, - "Delegator": 1, - "self.delegate": 1, - "methods": 1, - "methods.each": 1, - "method_name": 5, - "define_method": 1, - "respond_to": 1, - "Delegator.target.send": 1, - "delegate": 1, - "put": 1, - "post": 1, - "delete": 1, - "template": 1, - "layout": 1, - "before": 1, - "after": 1, - "not_found": 1, - "mime_type": 1, - "enable": 1, - "disable": 1, - "use": 1, - "production": 1, - "settings": 2, - "target": 1, - "self.target": 1, - "Wrapper": 1, - "stack": 2, - "instance": 2, - "@stack": 1, - "@instance": 2, - "@instance.settings": 1, - "call": 1, - "env": 2, - "@stack.call": 1, - "self.new": 1, - "base": 4, - "base.class_eval": 1, - "Delegator.target.register": 1, - "self.helpers": 1, - "Delegator.target.helpers": 1, - "self.use": 1, - "Delegator.target.use": 1, - "SHEBANG#!python": 1 - }, - "Rust": { - "//": 20, - "use": 10, - "cell": 1, - "Cell": 2, - ";": 218, - "cmp": 1, - "Eq": 2, - "option": 4, - "result": 18, - "Result": 3, - "comm": 5, - "{": 213, - "stream": 21, - "Chan": 4, - "GenericChan": 1, - "GenericPort": 1, - "Port": 3, - "SharedChan": 4, - "}": 210, - "prelude": 1, - "*": 1, - "task": 39, - "rt": 29, - "task_id": 2, - "sched_id": 2, - "rust_task": 1, - "util": 4, - "replace": 8, - "mod": 5, - "local_data_priv": 1, - "pub": 26, - "local_data": 1, - "spawn": 15, - "///": 13, - "A": 6, - "handle": 3, - "to": 6, - "a": 9, - "scheduler": 6, - "#": 61, - "[": 61, - "deriving_eq": 3, - "]": 61, - "enum": 4, - "Scheduler": 4, - "SchedulerHandle": 2, - "(": 429, - ")": 434, - "Task": 2, - "TaskHandle": 2, - "TaskResult": 4, - "Success": 6, - "Failure": 6, - "impl": 3, - "for": 10, - "pure": 2, - "fn": 89, - "eq": 1, - "&": 30, - "self": 15, - "other": 4, - "-": 33, - "bool": 6, - "match": 4, - "|": 20, - "true": 9, - "_": 4, - "false": 7, - "ne": 1, - ".eq": 1, - "modes": 1, - "SchedMode": 4, - "Run": 3, - "on": 5, - "the": 10, - "default": 1, - "DefaultScheduler": 2, - "current": 1, - "CurrentScheduler": 2, - "specific": 1, - "ExistingScheduler": 1, - "PlatformThread": 2, - "All": 1, - "tasks": 1, - "run": 1, - "in": 3, - "same": 1, - "OS": 3, - "thread": 2, - "SingleThreaded": 4, - "Tasks": 2, - "are": 2, - "distributed": 2, - "among": 2, - "available": 1, - "CPUs": 1, - "ThreadPerCore": 2, - "Each": 1, - "runs": 1, - "its": 1, - "own": 1, - "ThreadPerTask": 1, - "fixed": 1, - "number": 1, - "of": 3, - "threads": 1, - "ManualThreads": 3, - "uint": 7, - "struct": 7, - "SchedOpts": 4, - "mode": 9, - "foreign_stack_size": 3, - "Option": 4, - "": 2, - "TaskOpts": 12, - "linked": 15, - "supervised": 11, - "mut": 16, - "notify_chan": 24, - "<": 3, - "": 3, - "sched": 10, - "TaskBuilder": 21, - "opts": 21, - "gen_body": 4, - "@fn": 2, - "v": 6, - "can_not_copy": 11, - "": 1, - "consumed": 4, - "default_task_opts": 4, - "body": 6, - "Identity": 1, - "function": 1, - "None": 23, - "doc": 1, - "hidden": 1, - "FIXME": 1, - "#3538": 1, - "priv": 1, - "consume": 1, - "if": 7, - "self.consumed": 2, - "fail": 17, - "Fake": 1, - "move": 1, - "let": 84, - "self.opts.notify_chan": 7, - "self.opts.linked": 4, - "self.opts.supervised": 5, - "self.opts.sched": 6, - "self.gen_body": 2, - "unlinked": 1, - "..": 8, - "self.consume": 7, - "future_result": 1, - "blk": 2, - "self.opts.notify_chan.is_some": 1, - "notify_pipe_po": 2, - "notify_pipe_ch": 2, - "Some": 8, - "Configure": 1, - "custom": 1, - "task.": 1, - "sched_mode": 1, - "add_wrapper": 1, - "wrapper": 2, - "prev_gen_body": 2, - "f": 38, - "x": 7, - "x.opts.linked": 1, - "x.opts.supervised": 1, - "x.opts.sched": 1, - "spawn_raw": 1, - "x.gen_body": 1, - "Runs": 1, - "while": 2, - "transfering": 1, - "ownership": 1, - "one": 1, - "argument": 1, - "child.": 1, - "spawn_with": 2, - "": 2, - "arg": 5, - "do": 49, - "self.spawn": 1, - "arg.take": 1, - "try": 5, - "": 2, - "T": 2, - "": 2, - "po": 11, - "ch": 26, - "": 1, - "fr_task_builder": 1, - "self.future_result": 1, - "+": 4, - "r": 6, - "fr_task_builder.spawn": 1, - "||": 11, - "ch.send": 11, - "unwrap": 3, - ".recv": 3, - "Ok": 3, - "po.recv": 10, - "Err": 2, - ".spawn": 9, - "spawn_unlinked": 6, - ".unlinked": 3, - "spawn_supervised": 5, - ".supervised": 2, - ".spawn_with": 1, - "spawn_sched": 8, - ".sched_mode": 2, - ".try": 1, - "yield": 16, - "Yield": 1, - "control": 1, - "unsafe": 31, - "task_": 2, - "rust_get_task": 5, - "killed": 3, - "rust_task_yield": 1, - "&&": 1, - "failing": 2, - "True": 1, - "running": 2, - "has": 1, - "failed": 1, - "rust_task_is_unwinding": 1, - "get_task": 1, - "Get": 1, - "get_task_id": 1, - "get_scheduler": 1, - "rust_get_sched_id": 6, - "unkillable": 5, - "": 3, - "U": 6, - "AllowFailure": 5, - "t": 24, - "*rust_task": 6, - "drop": 3, - "rust_task_allow_kill": 3, - "self.t": 4, - "_allow_failure": 2, - "rust_task_inhibit_kill": 3, - "The": 1, - "inverse": 1, - "unkillable.": 1, - "Only": 1, - "ever": 1, - "be": 2, - "used": 1, - "nested": 1, - ".": 1, - "rekillable": 1, - "DisallowFailure": 5, - "atomically": 3, - "DeferInterrupts": 5, - "rust_task_allow_yield": 1, - "_interrupts": 1, - "rust_task_inhibit_yield": 1, - "test": 31, - "should_fail": 11, - "ignore": 16, - "cfg": 16, - "windows": 14, - "test_cant_dup_task_builder": 1, - "b": 2, - "b.spawn": 2, - "should": 2, - "have": 1, - "been": 1, - "by": 1, - "previous": 1, - "call": 1, - "test_spawn_unlinked_unsup_no_fail_down": 1, - "grandchild": 1, - "sends": 1, - "port": 3, - "ch.clone": 2, - "iter": 8, - "repeat": 8, - "If": 1, - "first": 1, - "grandparent": 1, - "hangs.": 1, - "Shouldn": 1, - "leave": 1, - "child": 3, - "hanging": 1, - "around.": 1, - "test_spawn_linked_sup_fail_up": 1, - "fails": 4, - "parent": 2, - "_ch": 1, - "<()>": 6, - "opts.linked": 2, - "opts.supervised": 2, - "b0": 5, - "b1": 3, - "b1.spawn": 3, - "We": 1, - "get": 1, - "punted": 1, - "awake": 1, - "test_spawn_linked_sup_fail_down": 1, - "loop": 5, - "*both*": 1, - "mechanisms": 1, - "would": 1, - "wrong": 1, - "this": 1, - "didn": 1, - "s": 1, - "failure": 1, - "propagate": 1, - "across": 1, - "gap": 1, - "test_spawn_failure_propagate_secondborn": 1, - "test_spawn_failure_propagate_nephew_or_niece": 1, - "test_spawn_linked_sup_propagate_sibling": 1, - "test_run_basic": 1, - "Wrapper": 5, - "test_add_wrapper": 1, - "b0.add_wrapper": 1, - "ch.f.swap_unwrap": 4, - "test_future_result": 1, - ".future_result": 4, - "assert": 10, - "test_back_to_the_future_result": 1, - "test_try_success": 1, - "test_try_fail": 1, - "test_spawn_sched_no_threads": 1, - "u": 2, - "test_spawn_sched": 1, - "i": 3, - "int": 5, - "parent_sched_id": 4, - "child_sched_id": 5, - "else": 1, - "test_spawn_sched_childs_on_default_sched": 1, - "default_id": 2, - "nolink": 1, - "extern": 1, - "testrt": 9, - "rust_dbg_lock_create": 2, - "*libc": 6, - "c_void": 6, - "rust_dbg_lock_destroy": 2, - "lock": 13, - "rust_dbg_lock_lock": 3, - "rust_dbg_lock_unlock": 3, - "rust_dbg_lock_wait": 2, - "rust_dbg_lock_signal": 2, - "test_spawn_sched_blocking": 1, - "start_po": 1, - "start_ch": 1, - "fin_po": 1, - "fin_ch": 1, - "start_ch.send": 1, - "fin_ch.send": 1, - "start_po.recv": 1, - "pingpong": 3, - "": 2, - "val": 4, - "setup_po": 1, - "setup_ch": 1, - "parent_po": 2, - "parent_ch": 2, - "child_po": 2, - "child_ch": 4, - "setup_ch.send": 1, - "setup_po.recv": 1, - "child_ch.send": 1, - "fin_po.recv": 1, - "avoid_copying_the_body": 5, - "spawnfn": 2, - "p": 3, - "x_in_parent": 2, - "ptr": 2, - "addr_of": 2, - "as": 7, - "x_in_child": 4, - "p.recv": 1, - "test_avoid_copying_the_body_spawn": 1, - "test_avoid_copying_the_body_task_spawn": 1, - "test_avoid_copying_the_body_try": 1, - "test_avoid_copying_the_body_unlinked": 1, - "test_platform_thread": 1, - "test_unkillable": 1, - "pp": 2, - "*uint": 1, - "cast": 2, - "transmute": 2, - "_p": 1, - "test_unkillable_nested": 1, - "Here": 1, - "test_atomically_nested": 1, - "test_child_doesnt_ref_parent": 1, - "const": 1, - "generations": 2, - "child_no": 3, - "return": 1, - "test_sched_thread_per_core": 1, - "chan": 2, - "cores": 2, - "rust_num_threads": 1, - "reported_threads": 2, - "rust_sched_threads": 2, - "chan.send": 2, - "port.recv": 2, - "test_spawn_thread_on_demand": 1, - "max_threads": 2, - "running_threads": 2, - "rust_sched_current_nonlazy_threads": 2, - "port2": 1, - "chan2": 1, - "chan2.send": 1, - "running_threads2": 2, - "port2.recv": 1 - }, - "SAS": { - "libname": 1, - "source": 1, - "data": 6, - "work.working_copy": 5, - ";": 22, - "set": 3, - "source.original_file.sas7bdat": 1, - "run": 6, - "if": 2, - "Purge": 1, - "then": 2, - "delete": 1, - "ImportantVariable": 1, - ".": 1, - "MissingFlag": 1, - "proc": 2, - "surveyselect": 1, - "work.data": 1, - "out": 2, - "work.boot": 2, - "method": 1, - "urs": 1, - "reps": 1, - "seed": 2, - "sampsize": 1, - "outhits": 1, - "samplingunit": 1, - "Site": 1, - "PROC": 1, - "MI": 1, - "work.bootmi": 2, - "nimpute": 1, - "round": 1, - "By": 2, - "Replicate": 2, - "VAR": 1, - "Variable1": 2, - "Variable2": 2, - "logistic": 1, - "descending": 1, - "_Imputation_": 1, - "model": 1, - "Outcome": 1, - "/": 1, - "risklimits": 1 - }, - "Sass": { - "blue": 7, - "#3bbfce": 2, - ";": 6, - "margin": 8, - "px": 3, - ".content_navigation": 1, - "{": 2, - "color": 4, - "}": 2, - ".border": 2, - "padding": 2, - "/": 4, - "border": 3, - "solid": 1, - ".content": 1, - "-": 3, - "navigation": 1, - "darken": 1, - "(": 1, - "%": 1, - ")": 1 - }, - "Scala": { - "SHEBANG#!sh": 2, - "exec": 2, - "scala": 2, - "#": 2, - "object": 3, - "Beers": 1, - "extends": 1, - "Application": 1, - "{": 21, - "def": 10, - "bottles": 3, - "(": 67, - "qty": 12, - "Int": 11, - "f": 4, - "String": 5, - ")": 67, - "//": 29, - "higher": 1, - "-": 5, - "order": 1, - "functions": 2, - "match": 2, - "case": 8, - "+": 49, - "x": 3, - "}": 22, - "beers": 3, - "sing": 3, - "implicit": 3, - "song": 3, - "takeOne": 2, - "nextQty": 2, - "nested": 1, - "if": 2, - "else": 2, - "refrain": 2, - ".capitalize": 1, - "tail": 1, - "recursion": 1, - "val": 6, - "headOfSong": 1, - "println": 8, - "parameter": 1, - "name": 4, - "version": 1, - "organization": 1, - "libraryDependencies": 3, - "%": 12, - "Seq": 3, - "libosmVersion": 4, - "from": 1, - "maxErrors": 1, - "pollInterval": 1, - "javacOptions": 1, - "scalacOptions": 1, - "scalaVersion": 1, - "initialCommands": 2, - "in": 12, - "console": 1, - "mainClass": 2, - "Compile": 4, - "packageBin": 1, - "Some": 6, - "run": 1, - "watchSources": 1, - "<+=>": 1, - "baseDirectory": 1, - "map": 1, - "_": 2, - "input": 1, - "add": 2, - "a": 4, - "maven": 2, - "style": 2, - "repository": 2, - "resolvers": 2, - "at": 4, - "url": 3, - "sequence": 1, - "of": 1, - "repositories": 1, - "define": 1, - "the": 5, - "to": 7, - "publish": 1, - "publishTo": 1, - "set": 2, - "Ivy": 1, - "logging": 1, - "be": 1, - "highest": 1, - "level": 1, - "ivyLoggingLevel": 1, - "UpdateLogging": 1, - "Full": 1, - "disable": 1, - "updating": 1, - "dynamic": 1, - "revisions": 1, - "including": 1, - "SNAPSHOT": 1, - "versions": 1, - "offline": 1, - "true": 5, - "prompt": 1, - "for": 1, - "this": 1, - "build": 1, - "include": 1, - "project": 1, - "id": 1, - "shellPrompt": 2, - "ThisBuild": 1, - "state": 3, - "Project.extract": 1, - ".currentRef.project": 1, - "System.getProperty": 1, - "showTiming": 1, - "false": 7, - "showSuccess": 1, - "timingFormat": 1, - "import": 9, - "java.text.DateFormat": 1, - "DateFormat.getDateTimeInstance": 1, - "DateFormat.SHORT": 2, - "crossPaths": 1, - "fork": 2, - "Test": 3, - "javaOptions": 1, - "parallelExecution": 2, - "javaHome": 1, - "file": 3, - "scalaHome": 1, - "aggregate": 1, - "clean": 1, - "logLevel": 2, - "compile": 1, - "Level.Warn": 2, - "persistLogLevel": 1, - "Level.Debug": 1, - "traceLevel": 2, - "unmanagedJars": 1, - "publishArtifact": 2, - "packageDoc": 2, - "artifactClassifier": 1, - "retrieveManaged": 1, - "credentials": 2, - "Credentials": 2, - "Path.userHome": 1, - "/": 2, - "math.random": 1, - "scala.language.postfixOps": 1, - "scala.util._": 1, - "scala.util.": 1, - "Try": 1, - "Success": 2, - "Failure": 2, - "scala.concurrent._": 1, - "duration._": 1, - "ExecutionContext.Implicits.global": 1, - "scala.concurrent.": 1, - "ExecutionContext": 1, - "CanAwait": 1, - "OnCompleteRunnable": 1, - "TimeoutException": 1, - "ExecutionException": 1, - "blocking": 3, - "node11": 1, - "Welcome": 1, - "Scala": 1, - "worksheet": 1, - "retry": 3, - "[": 11, - "T": 8, - "]": 11, - "n": 3, - "block": 8, - "Future": 5, - "ns": 1, - "Iterator": 2, - ".iterator": 1, - "attempts": 1, - "ns.map": 1, - "failed": 2, - "Future.failed": 1, - "new": 1, - "Exception": 2, - "attempts.foldLeft": 1, - "fallbackTo": 1, - "scala.concurrent.Future": 1, - "scala.concurrent.Fut": 1, - "|": 19, - "ure": 1, - "rb": 3, - "i": 9, - "Thread.sleep": 2, - "*random.toInt": 1, - "i.toString": 5, - "ri": 2, - "onComplete": 1, - "s": 1, - "s.toString": 1, - "t": 1, - "t.toString": 1, - "r": 1, - "r.toString": 1, - "Unit": 1, - "toList": 1, - ".foreach": 1, - "Iteration": 5, - "java.lang.Exception": 1, - "Hi": 10, - "HelloWorld": 1, - "main": 1, - "args": 1, - "Array": 1 - }, - "Scaml": { - "%": 1, - "p": 1, - "Hello": 1, - "World": 1 - }, - "Scheme": { - "(": 366, - "import": 1, - "rnrs": 1, - ")": 380, - "only": 1, - "surfage": 4, - "s1": 1, - "lists": 1, - "filter": 4, - "-": 192, - "map": 4, - "gl": 12, - "glut": 2, - "dharmalab": 2, - "records": 1, - "define": 30, - "record": 5, - "type": 5, - "math": 1, - "basic": 2, - "agave": 4, - "glu": 1, - "compat": 1, - "geometry": 1, - "pt": 49, - "glamour": 2, - "window": 2, - "misc": 1, - "s19": 1, - "time": 24, - "s27": 1, - "random": 27, - "bits": 1, - "s42": 1, - "eager": 1, - "comprehensions": 1, - ";": 1684, - "utilities": 1, - "say": 9, - ".": 2, - "args": 2, - "for": 7, - "each": 7, - "display": 4, - "newline": 2, - "translate": 6, - "p": 6, - "glTranslated": 1, - "x": 10, - "y": 3, - "radians": 8, - "/": 7, - "pi": 2, - "degrees": 2, - "angle": 6, - "a": 19, - "cos": 1, - "sin": 1, - "current": 15, - "in": 14, - "nanoseconds": 2, - "let": 2, - "val": 3, - "+": 28, - "second": 1, - "nanosecond": 1, - "seconds": 12, - "micro": 1, - "milli": 1, - "base": 2, - "step": 1, - "score": 5, - "level": 5, - "ships": 1, - "spaceship": 5, - "fields": 4, - "mutable": 14, - "pos": 16, - "vel": 4, - "theta": 1, - "force": 1, - "particle": 8, - "birth": 2, - "lifetime": 1, - "color": 2, - "particles": 11, - "asteroid": 14, - "radius": 6, - "number": 3, - "of": 3, - "starting": 3, - "asteroids": 15, - "#f": 5, - "bullet": 16, - "pack": 12, - "is": 8, - "initialize": 1, - "size": 1, - "title": 1, - "reshape": 1, - "width": 8, - "height": 8, - "source": 2, - "randomize": 1, - "default": 1, - "wrap": 4, - "mod": 2, - "ship": 8, - "make": 11, - "ammo": 9, - "set": 19, - "list": 6, - "ec": 6, - "i": 6, - "inexact": 16, - "integer": 25, - "buffered": 1, - "procedure": 1, - "lambda": 12, - "background": 1, - "glColor3f": 5, - "matrix": 5, - "excursion": 5, - "ship.pos": 5, - "glRotated": 2, - "ship.theta": 10, - "glutWireCone": 1, - "par": 6, - "c": 4, - "vector": 6, - "ref": 3, - "glutWireSphere": 3, - "bullets": 7, - "pack.pos": 3, - "glutWireCube": 1, - "last": 3, - "dt": 7, - "update": 2, - "system": 2, - "pt*n": 8, - "ship.vel": 5, - "pack.vel": 1, - "cond": 2, - "par.birth": 1, - "par.lifetime": 1, - "else": 2, - "par.pos": 2, - "par.vel": 1, - "bullet.birth": 1, - "bullet.pos": 2, - "bullet.vel": 1, - "a.pos": 2, - "a.vel": 1, - "if": 1, - "<": 1, - "a.radius": 1, - "contact": 2, - "b": 4, - "when": 5, - "<=>": 3, - "distance": 3, - "begin": 2, - "1": 2, - "f": 1, - "append": 4, - "4": 1, - "50": 4, - "0": 7, - "100": 6, - "2": 1, - "n": 2, - "null": 1, - "10": 1, - "5": 1, - "glutIdleFunc": 1, - "glutPostRedisplay": 1, - "glutKeyboardFunc": 1, - "key": 2, - "case": 1, - "char": 1, - "#": 6, - "w": 1, - "d": 1, - "s": 1, - "space": 1, - "cons": 1, - "glutMainLoop": 1, - "library": 1, - "libs": 1, - "export": 1, - "list2": 2, - "objs": 2, - "should": 1, - "not": 1, - "be": 1, - "exported": 1 - }, - "Scilab": { - "function": 1, - "[": 1, - "a": 4, - "b": 4, - "]": 1, - "myfunction": 1, - "(": 7, - "d": 2, - "e": 4, - "f": 2, - ")": 7, - "+": 5, - "%": 4, - "pi": 3, - ";": 7, - "cos": 1, - "cosh": 1, - "if": 1, - "then": 1, - "-": 2, - "e.field": 1, - "else": 1, - "home": 1, - "return": 1, - "end": 1, - "myvar": 1, - "endfunction": 1, - "disp": 1, - "assert_checkequal": 1, - "assert_checkfalse": 1 - }, - "SCSS": { - "blue": 4, - "#3bbfce": 1, - ";": 7, - "margin": 4, - "px": 1, - ".content": 1, - "-": 3, - "navigation": 1, - "{": 2, - "border": 2, - "color": 3, - "darken": 1, - "(": 1, - "%": 1, - ")": 1, - "}": 2, - ".border": 1, - "padding": 1, - "/": 2 - }, - "Shell": { - "SHEBANG#!bash": 8, - "typeset": 5, - "-": 391, - "i": 2, - "n": 22, - "bottles": 6, - "no": 16, - "while": 3, - "[": 85, - "]": 85, - "do": 8, - "echo": 71, - "case": 9, - "{": 63, - "}": 61, - "in": 25, - ")": 154, - "%": 5, - "s": 14, - ";": 138, - "esac": 7, - "done": 8, - "exit": 10, - "/usr/bin/clear": 2, - "##": 28, - "if": 39, - "z": 12, - "then": 41, - "export": 25, - "SCREENDIR": 2, - "fi": 34, - "PATH": 14, - "/usr/local/bin": 6, - "/usr/local/sbin": 6, - "/usr/xpg4/bin": 4, - "/usr/sbin": 6, - "/usr/bin": 8, - "/usr/sfw/bin": 4, - "/usr/ccs/bin": 4, - "/usr/openwin/bin": 4, - "/opt/mysql/current/bin": 4, - "MANPATH": 2, - "/usr/local/man": 2, - "/usr/share/man": 2, - "Random": 2, - "ENV...": 2, - "TERM": 4, - "COLORTERM": 2, - "CLICOLOR": 2, - "#": 53, - "can": 3, - "be": 3, - "set": 21, - "to": 33, - "anything": 2, - "actually": 2, - "DISPLAY": 2, - "r": 17, - "&&": 65, - ".": 5, - "function": 6, - "ls": 6, - "command": 5, - "Fh": 2, - "l": 8, - "list": 3, - "long": 2, - "format...": 2, - "ll": 2, - "|": 17, - "less": 2, - "XF": 2, - "pipe": 2, - "into": 3, - "#CDPATH": 2, - "HISTIGNORE": 2, - "HISTCONTROL": 2, - "ignoreboth": 2, - "shopt": 13, - "cdspell": 2, - "extglob": 2, - "progcomp": 2, - "complete": 82, - "f": 68, - "X": 54, - "bunzip2": 2, - "bzcat": 2, - "bzcmp": 2, - "bzdiff": 2, - "bzegrep": 2, - "bzfgrep": 2, - "bzgrep": 2, - "unzip": 2, - "zipinfo": 2, - "compress": 2, - "znew": 2, - "gunzip": 2, - "zcmp": 2, - "zdiff": 2, - "zcat": 2, - "zegrep": 2, - "zfgrep": 2, - "zgrep": 2, - "zless": 2, - "zmore": 2, - "uncompress": 2, - "ee": 2, - "display": 2, - "xv": 2, - "qiv": 2, - "gv": 2, - "ggv": 2, - "xdvi": 2, - "dvips": 2, - "dviselect": 2, - "dvitype": 2, - "acroread": 2, - "xpdf": 2, - "makeinfo": 2, - "texi2html": 2, - "tex": 2, - "latex": 2, - "slitex": 2, - "jadetex": 2, - "pdfjadetex": 2, - "pdftex": 2, - "pdflatex": 2, - "texi2dvi": 2, - "mpg123": 2, - "mpg321": 2, - "xine": 2, - "aviplay": 2, - "realplay": 2, - "xanim": 2, - "ogg123": 2, - "gqmpeg": 2, - "freeamp": 2, - "xmms": 2, - "xfig": 2, - "timidity": 2, - "playmidi": 2, - "vi": 2, - "vim": 2, - "gvim": 2, - "rvim": 2, - "view": 2, - "rview": 2, - "rgvim": 2, - "rgview": 2, - "gview": 2, - "emacs": 2, - "wine": 2, - "bzme": 2, - "netscape": 2, - "mozilla": 2, - "lynx": 2, - "opera": 2, - "w3m": 2, - "galeon": 2, - "curl": 8, - "dillo": 2, - "elinks": 2, - "links": 2, - "u": 2, - "su": 2, - "passwd": 2, - "groups": 2, - "user": 2, - "commands": 8, - "see": 4, - "only": 6, - "users": 2, - "A": 10, - "stopped": 4, - "P": 4, - "bg": 4, - "completes": 10, - "with": 12, - "jobs": 4, - "j": 2, - "fg": 2, - "disown": 2, - "other": 2, - "job": 3, - "v": 11, - "readonly": 4, - "unset": 10, - "and": 5, - "shell": 4, - "variables": 2, - "setopt": 8, - "options": 8, - "helptopic": 2, - "help": 5, - "helptopics": 2, - "a": 12, - "unalias": 4, - "aliases": 2, - "binding": 2, - "bind": 4, - "readline": 2, - "bindings": 2, - "(": 107, - "make": 6, - "this": 6, - "more": 3, - "intelligent": 2, - "c": 2, - "type": 5, - "which": 10, - "man": 6, - "#sudo": 2, - "on": 4, - "d": 9, - "pushd": 2, - "cd": 11, - "rmdir": 2, - "Make": 2, - "directory": 5, - "directories": 2, - "W": 2, - "alias": 42, - "filenames": 2, - "for": 7, - "PS1": 2, - "..": 2, - "cd..": 2, - "t": 3, - "csh": 2, - "is": 11, - "same": 2, - "as": 2, - "bash...": 2, - "quit": 2, - "q": 8, - "even": 3, - "shorter": 2, - "D": 2, - "rehash": 2, - "source": 7, - "/.bashrc": 3, - "after": 2, - "I": 2, - "edit": 2, - "it": 2, - "pg": 2, - "patch": 2, - "sed": 2, - "awk": 2, - "diff": 2, - "grep": 8, - "find": 2, - "ps": 2, - "whoami": 2, - "ping": 2, - "histappend": 2, - "PROMPT_COMMAND": 2, - "umask": 2, - "path": 13, - "/opt/local/bin": 2, - "/opt/local/sbin": 2, - "/bin": 4, - "prompt": 2, - "history": 18, - "endif": 2, - "stty": 2, - "istrip": 2, - "dirpersiststore": 2, - "##############################################################################": 16, - "#Import": 2, - "the": 17, - "agnostic": 2, - "Bash": 3, - "or": 3, - "Zsh": 2, - "environment": 2, - "config": 4, - "/.profile": 2, - "HISTSIZE": 2, - "#How": 2, - "many": 2, - "lines": 2, - "of": 6, - "keep": 3, - "memory": 3, - "HISTFILE": 2, - "/.zsh_history": 2, - "#Where": 2, - "save": 4, - "disk": 5, - "SAVEHIST": 2, - "#Number": 2, - "entries": 2, - "HISTDUP": 2, - "erase": 2, - "#Erase": 2, - "duplicates": 2, - "file": 9, - "appendhistory": 2, - "#Append": 2, - "overwriting": 2, - "sharehistory": 2, - "#Share": 2, - "across": 2, - "terminals": 2, - "incappendhistory": 2, - "#Immediately": 2, - "append": 2, - "not": 2, - "just": 2, - "when": 2, - "term": 2, - "killed": 2, - "#.": 2, - "/.dotfiles/z": 4, - "zsh/z.sh": 2, - "#function": 2, - "precmd": 2, - "rupa/z.sh": 2, - "fpath": 6, - "HOME/.zsh/func": 2, - "U": 2, - "docker": 1, - "version": 12, - "from": 1, - "ubuntu": 1, - "maintainer": 1, - "Solomon": 1, - "Hykes": 1, - "": 1, - "run": 13, - "apt": 6, - "get": 6, - "install": 8, - "y": 5, - "git": 16, - "https": 2, - "//go.googlecode.com/files/go1.1.1.linux": 1, - "amd64.tar.gz": 1, - "tar": 1, - "C": 1, - "/usr/local": 1, - "xz": 1, - "env": 4, - "/usr/local/go/bin": 2, - "/sbin": 2, - "GOPATH": 1, - "/go": 1, - "CGO_ENABLED": 1, - "/tmp": 1, - "t.go": 1, - "go": 2, - "test": 1, - "PKG": 12, - "github.com/kr/pty": 1, - "REV": 6, - "c699": 1, - "clone": 5, - "http": 3, - "//": 3, - "/go/src/": 6, - "checkout": 3, - "github.com/gorilla/context/": 1, - "d61e5": 1, - "github.com/gorilla/mux/": 1, - "b36453141c": 1, - "iptables": 1, - "/etc/apt/sources.list": 1, - "update": 2, - "lxc": 1, - "aufs": 1, - "tools": 1, - "add": 1, - "/go/src/github.com/dotcloud/docker": 1, - "/go/src/github.com/dotcloud/docker/docker": 1, - "ldflags": 1, - "/go/bin": 1, - "cmd": 1, - "pkgname": 1, - "stud": 4, - "pkgver": 1, - "pkgrel": 1, - "pkgdesc": 1, - "arch": 1, - "i686": 1, - "x86_64": 1, - "url": 4, - "license": 1, - "depends": 1, - "libev": 1, - "openssl": 1, - "makedepends": 1, - "provides": 1, - "conflicts": 1, - "_gitroot": 1, - "//github.com/bumptech/stud.git": 1, - "_gitname": 1, - "build": 2, - "msg": 4, - "pull": 3, - "origin": 1, - "else": 10, - "rm": 2, - "rf": 1, - "package": 1, - "PREFIX": 1, - "/usr": 1, - "DESTDIR": 1, - "Dm755": 1, - "init.stud": 1, - "mkdir": 2, - "p": 2, - "script": 1, - "dotfile": 1, - "repository": 3, - "does": 1, - "lot": 1, - "fun": 2, - "stuff": 3, - "like": 1, - "turning": 1, - "normal": 1, - "dotfiles": 1, - "eg": 1, - ".bashrc": 1, - "symlinks": 1, - "away": 1, - "optionally": 1, - "moving": 1, - "old": 4, - "files": 1, - "so": 1, - "that": 1, - "they": 1, - "preserved": 1, - "setting": 2, - "up": 1, - "cron": 1, - "automate": 1, - "aforementioned": 1, - "maybe": 1, - "some": 1, - "nocasematch": 1, - "This": 1, - "makes": 1, - "pattern": 1, - "matching": 1, - "insensitive": 1, - "POSTFIX": 1, - "URL": 1, - "PUSHURL": 1, - "overwrite": 3, - "true": 2, - "print_help": 2, - "e": 4, - "opt": 3, - "@": 3, - "k": 1, - "local": 22, - "false": 2, - "h": 3, - ".*": 2, - "o": 3, - "continue": 1, - "mv": 1, - "ln": 1, - "remote.origin.url": 1, - "remote.origin.pushurl": 1, - "crontab": 1, - ".jobs.cron": 1, - "x": 1, - "system": 1, - "exec": 3, - "rbenv": 2, - "versions": 1, - "bare": 1, - "&": 5, - "prefix": 1, - "/dev/null": 6, - "rvm_ignore_rvmrc": 1, - "declare": 22, - "rvmrc": 3, - "rvm_rvmrc_files": 3, - "ef": 1, - "+": 1, - "GREP_OPTIONS": 1, - "printf": 4, - "rvm_path": 4, - "UID": 1, - "elif": 4, - "rvm_is_not_a_shell_function": 2, - "rvm_path/scripts": 1, - "rvm": 1, - "sbt_release_version": 2, - "sbt_snapshot_version": 2, - "SNAPSHOT": 3, - "sbt_jar": 3, - "sbt_dir": 2, - "sbt_create": 2, - "sbt_snapshot": 1, - "sbt_launch_dir": 3, - "scala_version": 3, - "java_home": 1, - "sbt_explicit_version": 7, - "verbose": 6, - "debug": 11, - "quiet": 6, - "build_props_sbt": 3, - "project/build.properties": 9, - "versionLine": 2, - "sbt.version": 3, - "versionString": 3, - "versionLine##sbt.version": 1, - "update_build_props_sbt": 2, - "ver": 5, - "return": 3, - "perl": 3, - "pi": 1, - "||": 12, - "Updated": 1, - "Previous": 1, - "value": 1, - "was": 1, - "sbt_version": 8, - "echoerr": 3, - "vlog": 1, - "dlog": 8, - "get_script_path": 2, + "Unless": 1, + "applicable": 1, + "law": 1, + "agreed": 1, + "BASIS": 1, + "WARRANTIES": 1, + "OR": 2, + "CONDITIONS": 1, + "OF": 2, + "KIND": 1, + "express": 1, + "implied.": 1, + "governing": 1, + "limitations": 1, + "ASKFILE": 1, + "FILE": 5, + "ASKDIR": 1, + "DIR": 3, + "SAVEFILE": 2, + "Save": 1, + "given": 1, + "directory": 1, + "CHECK": 1, + "FGR": 4, + "_FILE": 1, + "IO": 4, + "DIR_": 1, "L": 1, - "target": 1, - "readlink": 1, - "get_mem_opts": 3, - "mem": 4, - "perm": 6, - "/": 2, - "<": 2, - "codecache": 1, - "die": 2, - "make_url": 3, - "groupid": 1, - "category": 1, - "default_jvm_opts": 1, - "default_sbt_opts": 1, - "default_sbt_mem": 2, - "noshare_opts": 1, - "sbt_opts_file": 1, - "jvm_opts_file": 1, - "latest_28": 1, - "latest_29": 1, - "latest_210": 1, - "script_path": 1, - "script_dir": 1, - "script_name": 2, - "java_cmd": 2, - "java": 2, - "sbt_mem": 5, - "residual_args": 4, - "java_args": 3, - "scalac_args": 4, - "sbt_commands": 2, - "build_props_scala": 1, - "build.scala.versions": 1, - "versionLine##build.scala.versions": 1, - "execRunner": 2, - "arg": 3, - "sbt_groupid": 3, - "*": 11, - "org.scala": 4, - "tools.sbt": 3, - "sbt": 18, - "sbt_artifactory_list": 2, - "version0": 2, - "F": 1, - "pe": 1, - "make_release_url": 2, - "releases": 1, - "make_snapshot_url": 2, - "snapshots": 1, - "head": 1, - "jar_url": 1, - "jar_file": 1, - "download_url": 2, - "jar": 3, - "dirname": 1, - "fail": 1, - "silent": 1, - "output": 1, - "wget": 2, - "O": 1, - "acquire_sbt_jar": 1, - "sbt_url": 1, - "usage": 2, - "cat": 3, - "<<": 2, - "EOM": 3, - "Usage": 1, - "print": 1, - "message": 1, - "runner": 1, - "chattier": 1, - "log": 2, - "level": 2, - "Debug": 1, - "Error": 1, - "colors": 2, - "disable": 1, - "ANSI": 1, - "color": 1, - "codes": 1, - "create": 2, - "start": 1, - "current": 1, - "contains": 2, - "project": 1, - "dir": 3, - "": 3, - "global": 1, - "settings/plugins": 1, - "default": 4, - "/.sbt/": 1, - "": 1, - "boot": 3, - "shared": 1, - "/.sbt/boot": 1, - "series": 1, - "ivy": 2, - "Ivy": 1, - "/.ivy2": 1, - "": 1, - "share": 2, - "use": 1, - "all": 1, - "caches": 1, - "sharing": 1, - "offline": 3, - "put": 1, - "mode": 2, - "jvm": 2, - "": 1, - "Turn": 1, - "JVM": 1, - "debugging": 1, - "open": 1, - "at": 1, - "given": 2, - "port.": 1, - "batch": 2, - "Disable": 1, - "interactive": 1, - "The": 1, - "way": 1, - "accomplish": 1, - "pre": 1, - "there": 2, - "build.properties": 1, - "an": 1, - "property": 1, - "disk.": 1, - "That": 1, - "scalacOptions": 3, - "S": 2, - "stripped": 1, - "In": 1, - "duplicated": 1, - "conflicting": 1, - "order": 1, - "above": 1, - "shows": 1, - "precedence": 1, - "JAVA_OPTS": 1, - "lowest": 1, - "line": 1, - "highest.": 1, - "addJava": 9, - "addSbt": 12, - "addScalac": 2, - "addResidual": 2, - "addResolver": 1, - "addDebugger": 2, - "get_jvm_opts": 2, - "process_args": 2, - "require_arg": 12, - "gt": 1, - "shift": 28, + "FILENAME": 1, + "_IO_": 1, + "_P_": 1, + "NM": 1, + "non": 1, + "printing": 1, + "escaped": 1, + "evaluation": 1, + "RHS": 1, + "SET.": 1, + "TODO": 1, + "Caller": 1, + "indentation": 1, + "comment": 4, + "tab": 1, + "space.": 1, + "V": 2, + "WVBRNOT": 1, + "HCIOFO/FT": 1, + "JR": 1, + "IHS/ANMC/MWR": 1, + "BROWSE": 1, + "NOTIFICATIONS": 1, + "/30/98": 1, + "WOMEN": 1, + "WVDATE": 8, + "WVENDDT1": 2, + "WVIEN": 13, + "..F": 2, + "WV": 8, + "WVXREF": 1, + "Y": 26, + "WVDFN": 6, + "SELECTING": 1, + "ONE": 2, + "CASE": 1, + "MANAGER": 1, + "AND": 3, + "THIS": 3, + "DOESN": 1, + "WVE": 2, + "": 2, + "STORE": 3, + "WVA": 2, + "WVBEGDT1": 1, + "NOTIFICATION": 1, + "IS": 3, + "NOT": 2, + "QUEUED.": 1, + "WVB": 4, + "OPEN": 1, + "ONLY": 1, + "ENTRY": 2, + "CLOSED.": 1, + ".Q": 1, + "EP": 4, + "ALREADY": 1, + "LL": 1, + "SORT": 3, + "ABOVE.": 1, + "DATE": 1, + "WVCHRT": 1, + "SSN": 1, + "WVUTL1": 2, + "SSN#": 1, + "WVNAME": 4, + "WVACC": 4, + "ACCESSION#": 1, + "WVSTAT": 1, + "STATUS": 2, + "WVUTL4": 1, + "WVPRIO": 5, + "PRIORITY": 1, + "X": 19, + "WVCHRT_U_WVNAME_U_WVDATE_U_WVACC_U_WVSTAT_U_WVPRIO_U_WVIEN": 1, + "WVC": 4, + "COPYGBL": 3, + "COPY": 1, + "MAKE": 1, + "IT": 1, + "FLAT.": 1, + "...F": 1, + "....S": 1, + "DEQUEUE": 1, + "TASKMAN": 1, + "QUEUE": 1, + "PRINTOUT.": 1, + "SETVARS": 2, + "WVUTL5": 2, + "WVBRNOT1": 2, + "EXIT": 1, + "FOLLOW": 1, + "CALLED": 1, + "PROCEDURE": 1, + "FOLLOWUP": 1, + "MENU.": 1, + "WVBEGDT": 1, + "DT": 2, + "WVENDDT": 1, + "DEVICE": 1, + "WVBRNOT2": 1, + "WVPOP": 1, + "WVLOOP": 1, + "GMRGPNB0": 1, + "CISC/JH/RM": 1, + "NARRATIVE": 1, + "BUILDER": 1, + "GENERATOR": 1, + "cont.": 1, + "/20/91": 1, + "Text": 1, + "Generator": 1, + "Jan": 1, + "WITH": 1, + "GMRGA": 1, + "POINT": 1, + "AT": 1, + "WHICH": 1, + "WANT": 1, + "START": 1, + "BUILDING": 1, + "GMRGE0": 11, + "GMRGADD": 4, + "GMR": 6, + "GMRGA0": 11, + "GMRGPDA": 9, + "GMRGCSW": 2, + "NOW": 1, + "DTC": 1, + "GMRGB0": 9, + "GMRGST": 6, + "GMRGPDT": 2, + "STAT": 8, + "GMRGRUT0": 3, + "GMRGF0": 3, + "GMRGSTAT": 8, + "_GMRGB0_": 2, + "GMRD": 6, + "GMRGSSW": 3, + "SNT": 1, + "GMRGPNB1": 1, + "GMRGNAR": 8, + "GMRGPAR_": 2, + "_GMRGSPC_": 3, + "_GMRGRM": 2, + "_GMRGE0": 1, + "STORETXT": 1, + "GMRGRUT1": 1, + "GMRGSPC": 3, + "GMRGD0": 7, + "ALIST": 1, + "GMRGPLVL": 6, + "GMRGA0_": 1, + "_GMRGD0_": 1, + "_GMRGSSW_": 1, + "_GMRGADD": 1, + "GMRGI0": 6, + "PRCAAPR": 1, + "WASH": 1, + "ISC@ALTOONA": 1, + "PA/RGY": 1, + "ACCOUNT": 1, + "PROFILE": 1, + "CONT": 1, + "/9/94": 1, + "AM": 1, + "Accounts": 1, + "Receivable": 1, + "**198": 1, + "Mar": 1, + "Per": 1, + "VHA": 1, + "Directive": 1, + "modified.": 1, + "PRCATY": 2, + "DEBT": 10, + "PRCADB": 5, + "PRCA": 14, + "COUNT": 2, + "OUT": 2, + "SEL": 1, + "BILL": 11, + "BAT": 8, + "TRAN": 5, + "DXS": 1, + "DTOUT": 2, + "DIROUT": 1, + "DIRUT": 1, + "DUOUT": 1, + "ASK": 3, + "DPTNOFZY": 2, + "DPTNOFZK": 2, + "R": 2, + "DTIME": 1, + "UPPER": 1, + "VALM1": 1, + "RCD": 1, + "DISV": 2, + "NAM": 1, + "RCFN01": 1, + "COMP": 2, + "EN1": 1, + "PRCAATR": 1, + "Y_": 3, + "PRCADB_": 1, + "HDR": 1, + "PRCAAPR1": 3, + "HDR2": 1, + "DIS": 1, + "STAT1": 2, + "_PRCATY_": 1, + "COMP1": 2, + "RCY": 5, + "COMP2": 2, + "_STAT_": 1, + "_STAT": 1, + "payments": 1, + "_TRAN": 1, + "if1": 2, + "statement": 3, + "if2": 2, + "statements": 1, + "contrasted": 1, + "": 3, + "a=": 3, + "smaller": 3, + "b=": 4, + "if3": 1, + "else": 7, + "clause": 2, + "if4": 1, + "bodies": 1, + "decode": 1, + "val": 5, + "Decoded": 1, + "Encoded": 1, + "decoded": 3, + "decoded_": 1, + "safechar": 3, + "zchar": 1, + "encoded_c": 1, + "encoded_": 2, + "FUNC": 1, + "DH": 1, + "zascii": 1, + "contrasting": 1, + "postconditionals": 1, + "commands": 1, + "post1": 1, + "postconditional": 3, + "purposely": 4, + "TEST": 16, + "post2": 1, + "special": 2, + "after": 3, + "post": 1, + "condition": 1, + "Implementation": 1, + "It": 2, + "works": 1, + "please": 1, + "don": 1, + "joke.": 1, + "Serves": 1, + "reverse": 1, + "engineering": 1, + "obtaining": 1, "integer": 1, - "inc": 1, - "port": 1, - "snapshot": 1, - "launch": 1, - "scala": 3, - "home": 2, - "D*": 1, - "J*": 1, - "S*": 1, - "sbtargs": 3, - "IFS": 1, - "read": 1, - "<\"$sbt_opts_file\">": 1, - "process": 1, - "combined": 1, - "args": 2, - "reset": 1, - "residuals": 1, - "argumentCount=": 1, - "we": 1, - "were": 1, - "any": 1, - "opts": 1, - "eq": 1, - "0": 1, - "ThisBuild": 1, - "Update": 1, - "properties": 1, - "explicit": 1, - "gives": 1, - "us": 1, - "choice": 1, - "Detected": 1, - "Overriding": 1, - "alert": 1, - "them": 1, - "here": 1, - "argumentCount": 1, - "./build.sbt": 1, - "./project": 1, - "pwd": 1, - "doesn": 1, - "understand": 1, - "iflast": 1, - "#residual_args": 1, - "SHEBANG#!sh": 2, - "SHEBANG#!zsh": 2, - "name": 1, - "foodforthought.jpg": 1, - "name##*fo": 1 - }, - "ShellSession": { - "echo": 2, - "FOOBAR": 2, - "Hello": 2, - "World": 2, - "gem": 4, - "install": 4, - "nokogiri": 6, - "...": 4, - "Building": 2, - "native": 2, - "extensions.": 2, - "This": 4, - "could": 2, - "take": 2, - "a": 4, - "while...": 2, - "checking": 1, - "for": 4, - "libxml/parser.h...": 1, - "***": 2, - "extconf.rb": 1, - "failed": 1, - "Could": 2, - "not": 2, - "create": 1, - "Makefile": 1, - "due": 1, - "to": 3, + "addition": 1, + "modulo": 1, + "division.": 1, + "//en.wikipedia.org/wiki/MD5": 1, + "h": 39, + "#64": 1, + "msg_": 1, + "_m_": 1, + "n64": 2, + "read": 2, + ".p": 1, + "*i": 3, + "#16": 3, + "xor": 4, + "rotate": 5, + "#4294967296": 6, + "n32h": 5, + "bit": 5, + "#2": 1, + "*2147483648": 2, + "a#2": 1, + "b#2": 1, + ".a": 1, + ".b": 1, + "rol": 1, + "a*": 1, + "**n": 1, + "c#4294967296": 1, + "*n": 1, + "n#256": 1, + "n#16": 2, + "Mumtris": 3, + "tetris": 1, + "game": 1, + "MUMPS": 1, + "fun.": 1, + "Resize": 1, + "terminal": 2, + "maximize": 1, + "PuTTY": 1, + "window": 1, + "report": 1, + "mumtris.": 1, + "ansi": 2, + "compatible": 1, + "cursor": 1, + "positioning.": 1, + "NOTICE": 1, + "uses": 1, + "making": 1, + "delays": 1, + "lower": 1, + "s.": 1, + "That": 1, + "CPU": 1, + "fall": 5, + "lock": 2, + "preview": 3, + "over": 2, + "exit": 3, + "short": 1, + "circuit": 1, + "redraw": 3, + "timeout": 1, + "harddrop": 1, + "other": 1, + "ex": 5, + "hd": 3, + "*c": 1, + "<0&'d>": 1, + "t10m": 1, + "q=": 6, + "d=": 1, + "zb": 2, + "right": 3, + "fl=": 1, + "gr=": 1, + "hl": 2, + "help": 2, + "drop": 2, + "hd=": 1, + "matrix": 2, + "draw": 3, + "ticks": 2, + "h=": 2, + "1000000000": 1, + "e=": 1, + "t10m=": 1, + "100": 2, + "n=": 1, + "ne=": 1, + "y=": 3, + "r=": 3, + "collision": 6, + "score": 5, + "k=": 1, + "j=": 4, + "<1))))>": 1, + "800": 1, + "200": 1, + "lv": 5, + "lc=": 1, + "10": 1, + "mt_": 2, + "cls": 6, + "dh/2": 6, + "dw/2": 6, + "*s": 4, + "echo": 1, + "intro": 1, + "workaround": 1, + "ANSI": 1, + "driver": 1, + "NL": 1, "some": 1, - "reason": 2, - "probably": 1, - "lack": 1, - "of": 2, - "necessary": 1, - "libraries": 1, - "and/or": 1, - "headers.": 1, - "Check": 1, - "the": 2, - "mkmf.log": 1, - "file": 1, - "more": 1, - "details.": 1, - "You": 1, - "may": 1, - "need": 1, - "configuration": 1, - "options.": 1, - "brew": 2, - "tap": 2, - "homebrew/dupes": 1, - "Cloning": 1, - "into": 1, - "remote": 3, - "Counting": 1, - "objects": 3, - "done.": 4, - "Compressing": 1, - "%": 5, - "(": 6, - "/591": 1, - ")": 6, + "clearscreen": 1, + "h/2": 3, + "*w/2": 3, + "fill": 3, + "fl": 2, + "*x": 1, + "mx": 4, + "my": 5, + "**lv*sb": 1, + "*lv": 1, + "sc": 3, + "ne": 2, + "gr": 1, + "w*3": 1, + "dev": 1, + "zsh": 1, + "dw": 1, + "dh": 1, + "elemId": 3, + "rotateVersions": 1, + "rotateVersion": 2, + "bottom": 1, + "coordinate": 1, + "____": 1, + "__": 2, + "||": 1, + "illustrate": 1, + "dynamic": 1, + "scope": 1, + "triangle1": 1, + "main2": 1, + "triangle2": 1, + "label1": 1, + "student": 14, + "zwrite": 1, + "exercise": 1, + "car": 14, + "Comment": 1, + "block": 1, + "semicolon": 1, + "next": 1, + "legal": 1, + "blank": 1, + "whitespace": 2, + "alone": 1, + "Comments": 1, + "graphic": 3, + "such": 1, + "@#": 1, + "space": 1, + "considered": 1, + "though": 1, + "whose": 1, + "below": 1, + "routine.": 1, + "multiple": 1, + "semicolons": 1, + "okay": 1, + "tag": 2, + "bug": 2, + "does": 1, + "Tag1": 1, + "Tags": 2, + "uppercase": 2, + "lowercase": 1, + "alphabetic": 2, + "HELO": 1, + "most": 1, + "common": 1, + "LABEL": 1, + "followed": 1, + "directly": 1, + "open": 1, + "parenthesis": 2, + "formal": 1, + "list": 1, + "close": 1, + "ANOTHER": 1, + "Normally": 1, + "subroutine": 1, + "ended": 1, + "we": 1, + "taking": 1, + "advantage": 1, + "rule": 1, + "END": 1, + "implicit": 1, + "APIs": 1, + "Fri": 1, + "Nov": 1, + "getVersion": 1, + "zewdCompiler": 6, + "date": 1, + "getDate": 1, + "compilePage": 2, + "app": 13, + "technology": 9, + "outputPath": 4, + "multilingual": 4, + "maxLines": 4, + "compileAll": 2, + "templatePageName": 2, + "autoTranslate": 2, + "verbose": 2, + "zewdMgr": 1, + "startSession": 2, + "requestArray": 2, + "serverArray": 1, + "sessionArray": 5, + "filesArray": 1, + "zewdPHP": 8, + ".requestArray": 2, + ".serverArray": 1, + ".sessionArray": 3, + ".filesArray": 1, + "closeSession": 2, + "saveSession": 2, + "endOfPage": 2, + "prePageScript": 2, + "releaseLock": 2, + "tokeniseURL": 2, + "url": 2, + "zewdCompiler16": 5, + "getSessid": 1, + "isTokenExpired": 2, + "zewdSession": 39, + "initialiseSession": 1, + "deleteSession": 2, + "changeApp": 1, + "appName": 4, + "setRedirect": 1, + "toPage": 1, + "path": 4, + "getRootURL": 1, + "_sessid_": 3, + "_token_": 1, + "_nextPage": 1, + "zcvt": 11, + "nextPage": 1, + "isNextPageTokenValid": 2, + "zewdCompiler13": 10, + "isCSP": 1, + "normaliseTextValue": 1, + "text": 6, + "writeLine": 2, + "CacheTempBuffer": 2, + "displayOptions": 2, + "fieldName": 5, + "listName": 6, + "codeValue": 7, + "nnvp": 1, + "nvp": 1, + "textValue": 6, + "getSessionValue": 3, + "codeValueEsc": 7, + "textValueEsc": 7, + "htmlOutputEncode": 2, + "zewdAPI2": 5, + "_codeValueEsc_": 1, + "translationMode": 1, + "_appName": 1, + "typex": 1, + "avoid": 1, + "getPhraseIndex": 1, + "zewdCompiler5": 1, + "licensed": 1, + "setWarning": 2, + "isTemp": 11, + "setWLDSymbol": 1, + "Duplicate": 1, + "performance": 1, + "wldAppName": 1, + "wldName": 1, + "wldSessid": 1, + "zzname": 1, + "extcErr": 1, + "mess": 3, + "namespace": 1, + "valueErr": 1, + "exportCustomTags": 2, + "tagList": 1, + "filepath": 10, + ".tagList": 1, + "exportAllCustomTags": 2, + "importCustomTags": 2, + "filePath": 2, + "zewdForm": 1, + "stripSpaces": 6, + "obj": 6, + "prop": 6, + "setSessionObject": 3, + "allowJSONAccess": 1, + "sessionName": 30, + "disallowJSONAccess": 1, + "JSONAccess": 1, + "existsInSession": 2, + "existsInSessionArray": 2, + "p3": 3, + "p4": 2, + "p5": 2, + "p6": 2, + "p7": 2, + "p8": 2, + "p9": 2, + "p10": 2, + "p11": 2, + "clearSessionArray": 1, + "arrayName": 35, + "setSessionArray": 1, + "getSessionArray": 1, + "clearArray": 2, + "getSessionArrayErr": 1, + "Come": 1, + "addToSession": 2, + "@name": 4, + "mergeToSession": 1, + "mergeGlobalToSession": 2, + "mergeGlobalFromSession": 2, + "mergeArrayToSession": 1, + "mergeArrayToSessionObject": 2, + ".array": 1, + "mergeArrayFromSession": 1, + "mergeFromSession": 1, + "deleteFromSession": 1, + "deleteFromSessionObject": 1, + "sessionNameExists": 1, + "getSessionArrayValue": 2, + ".exists": 1, + "sessionArrayValueExists": 2, + "deleteSessionArrayValue": 2, + "Objects": 1, + "objectName": 13, + "propertyName": 3, + "propertyValue": 5, + "comma": 3, + "objectName_": 2, + "_propertyName": 2, + "_propertyName_": 2, + "_propertyValue_": 1, + "_p": 1, + "quoted": 1, + "removeDocument": 1, + "zewdDOM": 3, + "instanceName": 2, + "clearXMLIndex": 1, + "zewdSchemaForm": 1, + "closeDOM": 1, + "makeTokenString": 1, + "token_": 1, + "convertDateToSeconds": 1, + "hdate": 7, + "hdate*86400": 1, + "convertSecondsToDate": 1, + "secs": 2, + "secs#86400": 1, + "getTokenExpiry": 2, + "h*86400": 1, + "randChar": 1, + "lowerCase": 2, + "stripLeadingSpaces": 2, + "d1": 7, + "zd": 1, + "<10>": 1, + "dd=": 2, + "mm=": 3, + "d1=": 1, + "p1=": 1, + "mm": 7, + "p2=": 1, + "yy=": 1, + "dd_": 1, + "mm_": 1, + "inetTime": 1, + "Decode": 1, + "Internet": 1, + "Format": 1, + "Time": 1, + "H": 1, + "Offset": 1, + "relative": 1, + "GMT": 1, + "hh": 4, + "ss": 4, + "_hh": 1, + "time#3600": 1, + "_mm": 1, + "time#60": 1, + "_ss": 2, + "hh_": 1, + "_mm_": 1, + "openNewFile": 2, + "openFile": 2, + "openDOM": 2, + "#39": 1, + "<\",\"<\")>": 1, + "string=": 1, + "gt": 1, + "amp": 1, + "HTML": 1, + "no2": 1, + "p1_c_p2": 1, + "getIP": 2, + "IP": 1, + "address": 1, + "ajaxErrorRedirect": 2, + "classExport": 2, + "className": 2, + ".methods": 1, + "strx": 2, + "disableEwdMgr": 1, + "enableEwdMgr": 1, + "enableWLDAccess": 1, + "disableWLDAccess": 1, + "isSSOValid": 2, + "sso": 2, + "zewdMgrAjax2": 1, + "uniqueId": 1, + "nodeOID": 2, + "filename": 2, + "linkToParentSession": 2, + "zewdCompiler20": 1, + "exportToGTM": 1 + }, + "C++": { + "#ifndef": 29, + "PROTOBUF_protocol_2dbuffer_2eproto__INCLUDED": 3, + "#define": 343, + "#include": 129, + "": 4, + "": 2, + "#if": 63, + "GOOGLE_PROTOBUF_VERSION": 1, + "<": 255, + "#error": 9, + "This": 19, + "file": 31, + "was": 6, + "generated": 2, + "by": 53, + "a": 157, + "newer": 2, + "version": 38, + "of": 215, + "protoc": 2, + "which": 14, + "is": 102, + "incompatible": 2, + "with": 33, + "your": 12, + "Protocol": 2, + "Buffer": 10, + "headers.": 3, + "Please": 4, + "update": 1, + "#endif": 110, + "GOOGLE_PROTOBUF_MIN_PROTOC_VERSION": 1, + "an": 23, + "older": 1, + "regenerate": 1, + "this": 57, + "protoc.": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "namespace": 38, + "persons": 4, + "{": 726, + "void": 241, + "protobuf_AddDesc_protocol_2dbuffer_2eproto": 6, + "(": 3102, + ")": 3105, + ";": 2783, + "protobuf_AssignDesc_protocol_2dbuffer_2eproto": 4, + "protobuf_ShutdownFile_protocol_2dbuffer_2eproto": 4, + "class": 40, + "Person": 65, + "public": 33, + "google": 72, + "protobuf": 72, + "Message": 7, + "virtual": 10, + "const": 172, + "&": 203, + "from": 91, + "inline": 39, + "operator": 10, + "CopyFrom": 5, + "return": 240, + "*this": 1, + "}": 726, + "UnknownFieldSet": 2, + "unknown_fields": 7, + "_unknown_fields_": 5, + "UnknownFieldSet*": 1, + "mutable_unknown_fields": 4, + "static": 263, + "Descriptor*": 3, + "descriptor": 15, + "default_instance": 3, + "Swap": 2, + "Person*": 7, + "other": 17, + "New": 6, + "MergeFrom": 9, + "Clear": 18, + "bool": 111, + "IsInitialized": 3, + "int": 218, + "ByteSize": 2, + "MergePartialFromCodedStream": 2, + "io": 4, + "CodedInputStream*": 2, + "input": 12, + "SerializeWithCachedSizes": 2, + "CodedOutputStream*": 2, + "output": 21, + "uint8*": 4, + "SerializeWithCachedSizesToArray": 2, + "GetCachedSize": 1, + "_cached_size_": 7, + "private": 16, + "SharedCtor": 4, + "SharedDtor": 3, + "SetCachedSize": 2, + "size": 13, + "Metadata": 3, + "GetMetadata": 2, + "has_name": 6, + "clear_name": 2, + "kNameFieldNumber": 2, + "std": 53, + "string": 24, + "name": 25, + "set_name": 7, + "value": 50, + "char*": 24, + "size_t": 6, + "string*": 11, + "mutable_name": 3, + "release_name": 2, + "set_allocated_name": 2, + "set_has_name": 7, + "clear_has_name": 5, + "name_": 30, + "mutable": 1, + "uint32": 2, + "_has_bits_": 14, + "[": 293, + "+": 80, + "/": 16, + "]": 292, + "friend": 10, + "InitAsDefaultInstance": 3, + "default_instance_": 8, + "u": 9, + "|": 40, + "if": 359, + "internal": 47, + "kEmptyString": 12, + "-": 438, + "clear": 3, + "*name_": 1, + "new": 13, + "assign": 3, + "reinterpret_cast": 8, + "": 12, + "char": 127, + "NULL": 109, + "else": 58, + "temp": 2, + "const_cast": 3, + "delete": 6, + "//": 315, + "SWIG": 2, + "NINJA_METRICS_H_": 3, + "": 4, + "using": 11, + "For": 6, + "int64_t.": 1, + "///": 843, + "The": 50, + "Metrics": 2, + "module": 1, + "used": 17, + "for": 105, + "the": 541, + "debug": 6, + "mode": 24, + "that": 36, + "dumps": 1, + "timing": 3, + "stats": 2, + "various": 4, + "actions.": 1, + "To": 1, + "use": 37, + "see": 14, + "METRIC_RECORD": 4, + "below.": 1, + "A": 7, + "single": 2, + "metrics": 2, + "we": 10, + "ve": 4, + "hit": 1, + "code": 12, + "path.": 2, + "count": 1, "Total": 1, - "delta": 2, - "reused": 1, - "Receiving": 1, - "/1034": 1, - "KiB": 1, - "|": 1, - "bytes/s": 1, - "Resolving": 1, - "deltas": 1, - "/560": 1, - "Checking": 1, - "connectivity...": 1, - "done": 1, - "Warning": 1, - "homebrew/dupes/lsof": 1, - "over": 1, - "mxcl/master/lsof": 1, - "Tapped": 1, - "formula": 4, - "apple": 1, - "-": 12, - "gcc42": 1, - "Downloading": 1, - "http": 2, - "//r.research.att.com/tools/gcc": 1, - "darwin11.pkg": 1, - "########################################################################": 1, - "Caveats": 1, - "NOTE": 1, - "provides": 1, - "components": 1, - "that": 1, - "were": 1, - "removed": 1, - "from": 3, - "XCode": 2, - "in": 2, - "release.": 1, - "There": 1, - "is": 2, - "no": 1, - "this": 1, - "if": 1, - "you": 1, - "are": 1, - "using": 1, - "version": 1, - "prior": 1, - "contains": 1, - "compilers": 2, - "built": 2, - "Apple": 1, - "s": 1, - "GCC": 1, - "sources": 1, - "build": 1, - "available": 1, - "//opensource.apple.com/tarballs/gcc": 1, - "All": 1, - "have": 1, - "suffix.": 1, - "A": 1, - "GFortran": 1, - "compiler": 1, - "also": 1, - "included.": 1, - "Summary": 1, - "/usr/local/Cellar/apple": 1, - "gcc42/4.2.1": 1, - "files": 1, - "M": 1, + "time": 10, + "in": 165, + "micros": 5, + "spent": 1, + "on": 55, + "int64_t": 3, + "sum": 1, + "scoped": 1, + "object": 3, + "recording": 1, + "metric": 2, + "across": 1, + "body": 1, + "function.": 3, + "Used": 2, + "macro.": 1, + "struct": 13, + "ScopedMetric": 4, + "explicit": 5, + "Metric*": 4, + "metric_": 1, + "Timestamp": 1, + "when": 22, + "measurement": 2, + "started.": 1, + "Value": 24, + "platform": 2, + "dependent.": 1, + "start_": 1, + "singleton": 2, + "stores": 3, + "and": 118, + "prints": 1, + "report.": 1, + "NewMetric": 2, + "Print": 2, + "summary": 1, + "report": 3, + "to": 254, + "stdout.": 1, + "Report": 1, + "vector": 16, + "": 1, + "metrics_": 1, + "Get": 1, + "current": 26, + "as": 28, + "relative": 2, + "some": 4, + "epoch.": 1, + "Epoch": 1, + "varies": 1, + "between": 1, + "platforms": 1, + "only": 6, + "useful": 1, + "measuring": 1, + "elapsed": 1, + "time.": 1, + "GetTimeMillis": 1, + "simple": 1, + "stopwatch": 1, + "returns": 4, "seconds": 1, - "v": 1, - "Fetching": 1, - "Successfully": 1, - "installed": 2, - "Installing": 2, - "ri": 1, - "documentation": 2, - "RDoc": 1 + "since": 3, + "Restart": 3, + "called.": 1, + "Stopwatch": 2, + "started_": 4, + "Seconds": 1, + "call.": 1, + "double": 25, + "Elapsed": 1, + "e": 15, + "*": 183, + "static_cast": 14, + "": 1, + "Now": 4, + "uint64_t": 8, + "primary": 1, + "interface": 9, + "metrics.": 1, + "Use": 8, + "at": 20, + "top": 1, + "function": 19, + "get": 5, + "recorded": 1, + "each": 7, + "call": 4, + "metrics_h_metric": 2, + "g_metrics": 3, + "metrics_h_scoped": 1, + "extern": 72, + "Metrics*": 1, + "Bar": 2, + "protected": 4, + "*name": 6, + "hello": 2, + "": 2, + "main": 2, + "cout": 2, + "<<": 29, + "endl": 1, + "": 1, + "": 1, + "": 2, + "Env": 13, + "*env_instance": 1, + "*Env": 1, + "instance": 4, + "env_instance": 3, + "QObject": 2, + "QCoreApplication": 1, + "parse": 3, + "**envp": 1, + "**env": 1, + "**": 2, + "QString": 20, + "envvar": 2, + "indexOfEquals": 5, + "env": 3, + "envp": 4, + "*env": 1, + "envvar.indexOf": 1, + "continue": 2, + "envvar.left": 1, + "envvar.mid": 1, + "m_map.insert": 1, + "QVariantMap": 3, + "asVariantMap": 2, + "m_map": 2, + "#pragma": 3, + "once": 5, + "enum": 17, + "Field": 2, + "Free": 1, + "Black": 1, + "White": 1, + "Illegal": 1, + "typedef": 50, + "Player": 1, + "UTILS_H": 3, + "": 1, + "": 1, + "": 1, + "QTemporaryFile": 1, + "Utils": 4, + "showUsage": 1, + "messageHandler": 2, + "QtMsgType": 1, + "type": 7, + "*msg": 2, + "exceptionHandler": 2, + "dump_path": 1, + "minidump_id": 1, + "void*": 2, + "context": 8, + "succeeded": 2, + "QVariant": 1, + "coffee2js": 1, + "script": 1, + "injectJsInFrame": 2, + "jsFilePath": 5, + "libraryPath": 5, + "QWebFrame": 4, + "*targetFrame": 4, + "startingScript": 2, + "false": 48, + "Encoding": 3, + "jsFileEnc": 2, + "readResourceFileUtf8": 1, + "resourceFilePath": 1, + "loadJSForDebug": 2, + "autorun": 2, + "cleanupFromDebug": 1, + "findScript": 1, + "jsFromScriptFile": 1, + "scriptPath": 1, + "enc": 1, + "shouldn": 1, + "t": 15, + "be": 35, + "instantiated": 1, + "QTemporaryFile*": 2, + "m_tempHarness": 1, + "We": 1, + "want": 5, + "make": 6, + "sure": 6, + "clean": 2, + "up": 18, + "after": 18, + "ourselves": 1, + "m_tempWrapper": 1, + "QSCIPRINTER_H": 2, + "#ifdef": 19, + "__APPLE__": 4, + "": 1, + "": 2, + "": 1, + "QT_BEGIN_NAMESPACE": 1, + "QRect": 2, + "QPainter": 2, + "QT_END_NAMESPACE": 1, + "QsciScintillaBase": 100, + "brief": 12, + "QsciPrinter": 9, + "sub": 2, + "Qt": 1, + "QPrinter": 3, + "able": 2, + "print": 5, + "text": 5, + "Scintilla": 2, + "document.": 8, + "can": 21, + "further": 1, + "classed": 1, + "alter": 2, + "layout": 1, + "adding": 2, + "headers": 3, + "footers": 2, + "example.": 1, + "QSCINTILLA_EXPORT": 2, + "Constructs": 1, + "printer": 1, + "paint": 1, + "device": 7, + "mode.": 4, + "PrinterMode": 1, + "ScreenResolution": 1, + "Destroys": 1, + "instance.": 2, + "Format": 1, + "page": 5, + "example": 3, + "before": 7, + "document": 16, + "drawn": 2, + "it.": 3, + "painter": 4, + "add": 3, + "customised": 2, + "graphics.": 2, + "drawing": 4, + "true": 49, + "actually": 1, + "being": 4, + "rather": 2, + "than": 6, + "sized.": 1, + "methods": 2, + "must": 6, + "called": 13, + "true.": 2, + "area": 5, + "will": 15, + "draw": 1, + "text.": 3, + "should": 10, + "modified": 3, + "it": 19, + "necessary": 1, + "reserve": 1, + "space": 2, + "any": 23, + "or": 44, + "By": 1, + "default": 14, + "printable": 1, + "page.": 13, + "setFullPage": 1, + "because": 2, + "calling": 9, + "printRange": 2, + "you": 29, + "try": 1, + "over": 1, + "whole": 2, + "pagenr": 2, + "number": 52, + "first": 13, + "numbered": 1, + "formatPage": 1, + "Return": 3, + "points": 2, + "font": 2, + "printing.": 2, + "sa": 30, + "setMagnification": 2, + "magnification": 3, + "mag": 2, + "Sets": 24, + "printing": 2, + "magnification.": 1, + "range": 3, + "lines": 3, + "qsb.": 1, + "line": 11, + "negative": 2, + "signifies": 2, + "last": 6, + "returned": 5, + "there": 4, + "no": 7, + "error.": 1, + "*qsb": 1, + "wrap": 4, + "QsciScintilla": 7, + "WrapWord.": 1, + "setWrapMode": 2, + "WrapMode": 3, + "wrapMode": 2, + "wmode.": 1, + "wmode": 1, + "PY_SSIZE_T_CLEAN": 1, + "Py_PYTHON_H": 1, + "Python": 1, + "needed": 3, + "compile": 1, + "C": 6, + "extensions": 1, + "please": 2, + "install": 3, + "development": 1, + "Python.": 1, + "#else": 35, + "": 1, + "offsetof": 2, + "member": 2, + "type*": 1, + "defined": 49, + "WIN32": 2, + "&&": 29, + "MS_WINDOWS": 2, + "__stdcall": 2, + "__cdecl": 2, + "__fastcall": 2, + "DL_IMPORT": 2, + "DL_EXPORT": 2, + "PY_LONG_LONG": 5, + "LONG_LONG": 1, + "PY_VERSION_HEX": 9, + "METH_COEXIST": 1, + "PyDict_CheckExact": 1, + "op": 28, + "Py_TYPE": 4, + "PyDict_Type": 1, + "PyDict_Contains": 1, + "d": 8, + "o": 20, + "PySequence_Contains": 1, + "Py_ssize_t": 17, + "PY_SSIZE_T_MAX": 1, + "INT_MAX": 1, + "PY_SSIZE_T_MIN": 1, + "INT_MIN": 1, + "PY_FORMAT_SIZE_T": 1, + "PyInt_FromSsize_t": 2, + "z": 46, + "PyInt_FromLong": 13, + "PyInt_AsSsize_t": 2, + "PyInt_AsLong": 2, + "PyNumber_Index": 1, + "PyNumber_Int": 1, + "PyIndex_Check": 1, + "PyNumber_Check": 1, + "PyErr_WarnEx": 1, + "category": 2, + "message": 2, + "stacklevel": 1, + "PyErr_Warn": 1, + "Py_REFCNT": 1, + "ob": 6, + "PyObject*": 16, + "ob_refcnt": 1, + "ob_type": 7, + "Py_SIZE": 1, + "PyVarObject*": 1, + "ob_size": 1, + "PyVarObject_HEAD_INIT": 1, + "PyObject_HEAD_INIT": 1, + "PyType_Modified": 1, + "*buf": 1, + "PyObject": 221, + "*obj": 2, + "len": 15, + "itemsize": 2, + "readonly": 3, + "ndim": 2, + "*format": 1, + "*shape": 1, + "*strides": 1, + "*suboffsets": 1, + "*internal": 1, + "Py_buffer": 5, + "PyBUF_SIMPLE": 1, + "PyBUF_WRITABLE": 1, + "PyBUF_FORMAT": 1, + "PyBUF_ND": 2, + "PyBUF_STRIDES": 5, + "PyBUF_C_CONTIGUOUS": 3, + "PyBUF_F_CONTIGUOUS": 3, + "PyBUF_ANY_CONTIGUOUS": 1, + "PyBUF_INDIRECT": 1, + "PY_MAJOR_VERSION": 10, + "__Pyx_BUILTIN_MODULE_NAME": 2, + "Py_TPFLAGS_CHECKTYPES": 1, + "Py_TPFLAGS_HAVE_INDEX": 1, + "||": 19, + "Py_TPFLAGS_HAVE_NEWBUFFER": 1, + "PyBaseString_Type": 1, + "PyUnicode_Type": 2, + "PyStringObject": 2, + "PyUnicodeObject": 1, + "PyString_Type": 2, + "PyString_Check": 2, + "PyUnicode_Check": 1, + "PyString_CheckExact": 2, + "PyUnicode_CheckExact": 1, + "PyBytesObject": 1, + "PyBytes_Type": 1, + "PyBytes_Check": 1, + "PyBytes_CheckExact": 1, + "PyBytes_FromString": 2, + "PyString_FromString": 1, + "PyBytes_FromStringAndSize": 1, + "PyString_FromStringAndSize": 1, + "PyBytes_FromFormat": 1, + "PyString_FromFormat": 1, + "PyBytes_DecodeEscape": 1, + "PyString_DecodeEscape": 1, + "PyBytes_AsString": 2, + "PyString_AsString": 1, + "PyBytes_AsStringAndSize": 1, + "PyString_AsStringAndSize": 1, + "PyBytes_Size": 1, + "PyString_Size": 1, + "PyBytes_AS_STRING": 1, + "PyString_AS_STRING": 1, + "PyBytes_GET_SIZE": 1, + "PyString_GET_SIZE": 1, + "PyBytes_Repr": 1, + "PyString_Repr": 1, + "PyBytes_Concat": 1, + "PyString_Concat": 1, + "PyBytes_ConcatAndDel": 1, + "PyString_ConcatAndDel": 1, + "PySet_Check": 1, + "obj": 42, + "PyObject_TypeCheck": 3, + "PySet_Type": 2, + "PyFrozenSet_Check": 1, + "PyFrozenSet_Type": 1, + "PySet_CheckExact": 2, + "__Pyx_TypeCheck": 1, + "PyTypeObject": 2, + "PyIntObject": 1, + "PyLongObject": 2, + "PyInt_Type": 1, + "PyLong_Type": 1, + "PyInt_Check": 1, + "PyLong_Check": 1, + "PyInt_CheckExact": 1, + "PyLong_CheckExact": 1, + "PyInt_FromString": 1, + "PyLong_FromString": 1, + "PyInt_FromUnicode": 1, + "PyLong_FromUnicode": 1, + "PyLong_FromLong": 1, + "PyInt_FromSize_t": 1, + "PyLong_FromSize_t": 1, + "PyLong_FromSsize_t": 1, + "PyLong_AsLong": 1, + "PyInt_AS_LONG": 1, + "PyLong_AS_LONG": 1, + "PyLong_AsSsize_t": 1, + "PyInt_AsUnsignedLongMask": 1, + "PyLong_AsUnsignedLongMask": 1, + "PyInt_AsUnsignedLongLongMask": 1, + "PyLong_AsUnsignedLongLongMask": 1, + "PyBoolObject": 1, + "__Pyx_PyNumber_Divide": 2, + "x": 86, + "y": 16, + "PyNumber_TrueDivide": 1, + "__Pyx_PyNumber_InPlaceDivide": 2, + "PyNumber_InPlaceTrueDivide": 1, + "PyNumber_Divide": 1, + "PyNumber_InPlaceDivide": 1, + "__Pyx_PySequence_GetSlice": 2, + "b": 57, + "PySequence_GetSlice": 2, + "__Pyx_PySequence_SetSlice": 2, + "PySequence_SetSlice": 2, + "__Pyx_PySequence_DelSlice": 2, + "PySequence_DelSlice": 2, + "unlikely": 69, + "PyErr_SetString": 4, + "PyExc_SystemError": 3, + "likely": 15, + "tp_as_mapping": 3, + "PyErr_Format": 4, + "PyExc_TypeError": 5, + "tp_name": 4, + "PyMethod_New": 2, + "func": 3, + "self": 5, + "klass": 1, + "PyInstanceMethod_New": 1, + "__Pyx_GetAttrString": 2, + "n": 28, + "PyObject_GetAttrString": 3, + "__Pyx_SetAttrString": 2, + "PyObject_SetAttrString": 2, + "__Pyx_DelAttrString": 2, + "PyObject_DelAttrString": 2, + "__Pyx_NAMESTR": 3, + "__Pyx_DOCSTR": 3, + "__cplusplus": 12, + "__PYX_EXTERN_C": 2, + "_USE_MATH_DEFINES": 1, + "": 1, + "__PYX_HAVE_API__wrapper_inner": 1, + "PYREX_WITHOUT_ASSERTIONS": 1, + "CYTHON_WITHOUT_ASSERTIONS": 1, + "CYTHON_INLINE": 68, + "__GNUC__": 5, + "__inline__": 1, + "#elif": 7, + "_MSC_VER": 7, + "__inline": 1, + "__STDC_VERSION__": 2, + "L": 1, + "CYTHON_UNUSED": 7, + "**p": 1, + "*s": 1, + "long": 15, + "encoding": 1, + "is_unicode": 1, + "is_str": 1, + "intern": 1, + "__Pyx_StringTabEntry": 1, + "__Pyx_PyBytes_FromUString": 1, + "s": 26, + "__Pyx_PyBytes_AsUString": 1, + "unsigned": 22, + "__Pyx_PyBool_FromLong": 1, + "Py_INCREF": 3, + "Py_True": 2, + "Py_False": 2, + "__Pyx_PyObject_IsTrue": 8, + "__Pyx_PyNumber_Int": 1, + "__Pyx_PyIndex_AsSsize_t": 1, + "__Pyx_PyInt_FromSize_t": 1, + "__Pyx_PyInt_AsSize_t": 1, + "__pyx_PyFloat_AsDouble": 3, + "PyFloat_CheckExact": 1, + "PyFloat_AS_DOUBLE": 1, + "PyFloat_AsDouble": 1, + "__GNUC_MINOR__": 1, + "__builtin_expect": 2, + "*__pyx_m": 1, + "*__pyx_b": 1, + "*__pyx_empty_tuple": 1, + "*__pyx_empty_bytes": 1, + "__pyx_lineno": 80, + "__pyx_clineno": 80, + "__pyx_cfilenm": 1, + "__FILE__": 2, + "*__pyx_filename": 1, + "CYTHON_CCOMPLEX": 12, + "_Complex_I": 3, + "": 1, + "": 1, + "__sun__": 1, + "#undef": 3, + "fj": 1, + "*__pyx_f": 1, + "npy_int8": 1, + "__pyx_t_5numpy_int8_t": 1, + "npy_int16": 1, + "__pyx_t_5numpy_int16_t": 1, + "npy_int32": 1, + "__pyx_t_5numpy_int32_t": 1, + "npy_int64": 1, + "__pyx_t_5numpy_int64_t": 1, + "npy_uint8": 1, + "__pyx_t_5numpy_uint8_t": 1, + "npy_uint16": 1, + "__pyx_t_5numpy_uint16_t": 1, + "npy_uint32": 1, + "__pyx_t_5numpy_uint32_t": 1, + "npy_uint64": 1, + "__pyx_t_5numpy_uint64_t": 1, + "npy_float32": 1, + "__pyx_t_5numpy_float32_t": 1, + "npy_float64": 1, + "__pyx_t_5numpy_float64_t": 1, + "npy_long": 1, + "__pyx_t_5numpy_int_t": 1, + "npy_longlong": 1, + "__pyx_t_5numpy_long_t": 1, + "npy_intp": 10, + "__pyx_t_5numpy_intp_t": 1, + "npy_uintp": 1, + "__pyx_t_5numpy_uintp_t": 1, + "npy_ulong": 1, + "__pyx_t_5numpy_uint_t": 1, + "npy_ulonglong": 1, + "__pyx_t_5numpy_ulong_t": 1, + "npy_double": 2, + "__pyx_t_5numpy_float_t": 1, + "__pyx_t_5numpy_double_t": 1, + "npy_longdouble": 1, + "__pyx_t_5numpy_longdouble_t": 1, + "complex": 2, + "float": 74, + "__pyx_t_float_complex": 27, + "_Complex": 2, + "real": 4, + "imag": 2, + "__pyx_t_double_complex": 27, + "npy_cfloat": 1, + "__pyx_t_5numpy_cfloat_t": 1, + "npy_cdouble": 2, + "__pyx_t_5numpy_cdouble_t": 1, + "npy_clongdouble": 1, + "__pyx_t_5numpy_clongdouble_t": 1, + "__pyx_t_5numpy_complex_t": 1, + "CYTHON_REFNANNY": 3, + "__Pyx_RefNannyAPIStruct": 4, + "*__Pyx_RefNanny": 1, + "__Pyx_RefNannyImportAPI": 1, + "*modname": 1, + "*m": 1, + "*p": 1, + "*r": 1, + "m": 4, + "PyImport_ImportModule": 1, + "modname": 1, + "goto": 156, + "end": 23, + "p": 6, + "r": 38, + "PyLong_AsVoidPtr": 1, + "Py_XDECREF": 3, + "__Pyx_RefNannySetupContext": 13, + "*__pyx_refnanny": 1, + "__Pyx_RefNanny": 6, + "SetupContext": 1, + "__LINE__": 84, + "__Pyx_RefNannyFinishContext": 12, + "FinishContext": 1, + "__pyx_refnanny": 5, + "__Pyx_INCREF": 36, + "INCREF": 1, + "__Pyx_DECREF": 66, + "DECREF": 1, + "__Pyx_GOTREF": 60, + "GOTREF": 1, + "__Pyx_GIVEREF": 10, + "GIVEREF": 1, + "__Pyx_XDECREF": 26, + "do": 13, + "while": 17, + "Py_DECREF": 1, + "__Pyx_XGIVEREF": 7, + "__Pyx_XGOTREF": 1, + "__Pyx_TypeTest": 4, + "*type": 3, + "*__Pyx_GetName": 1, + "*dict": 1, + "__Pyx_ErrRestore": 1, + "*value": 2, + "*tb": 2, + "__Pyx_ErrFetch": 1, + "**type": 1, + "**value": 1, + "**tb": 1, + "__Pyx_Raise": 8, + "__Pyx_RaiseNoneNotIterableError": 1, + "__Pyx_RaiseNeedMoreValuesError": 1, + "index": 2, + "__Pyx_RaiseTooManyValuesError": 1, + "expected": 1, + "__Pyx_UnpackTupleError": 2, + "*__Pyx_Import": 1, + "*from_list": 1, + "__Pyx_Print": 1, + "__pyx_print": 1, + "__pyx_print_kwargs": 1, + "__Pyx_PrintOne": 4, + "stream": 6, + "*o": 1, + "*__Pyx_PyInt_to_py_Py_intptr_t": 1, + "Py_intptr_t": 1, + "__Pyx_CREAL": 4, + ".real": 3, + "__Pyx_CIMAG": 4, + ".imag": 3, + "__real__": 1, + "__imag__": 1, + "_WIN32": 1, + "__Pyx_SET_CREAL": 2, + "__Pyx_SET_CIMAG": 2, + "__pyx_t_float_complex_from_parts": 1, + "__Pyx_c_eqf": 2, + "__Pyx_c_sumf": 2, + "__Pyx_c_difff": 2, + "__Pyx_c_prodf": 2, + "__Pyx_c_quotf": 2, + "__Pyx_c_negf": 2, + "__Pyx_c_is_zerof": 3, + "__Pyx_c_conjf": 3, + "conj": 3, + "__Pyx_c_absf": 3, + "abs": 2, + "__Pyx_c_powf": 3, + "pow": 2, + "conjf": 1, + "cabsf": 1, + "cpowf": 1, + "__pyx_t_double_complex_from_parts": 1, + "__Pyx_c_eq": 2, + "__Pyx_c_sum": 2, + "__Pyx_c_diff": 2, + "__Pyx_c_prod": 2, + "__Pyx_c_quot": 2, + "__Pyx_c_neg": 2, + "__Pyx_c_is_zero": 3, + "__Pyx_c_conj": 3, + "__Pyx_c_abs": 3, + "__Pyx_c_pow": 3, + "cabs": 1, + "cpow": 1, + "__Pyx_PyInt_AsUnsignedChar": 1, + "short": 5, + "__Pyx_PyInt_AsUnsignedShort": 1, + "__Pyx_PyInt_AsUnsignedInt": 1, + "__Pyx_PyInt_AsChar": 1, + "__Pyx_PyInt_AsShort": 1, + "__Pyx_PyInt_AsInt": 1, + "signed": 5, + "__Pyx_PyInt_AsSignedChar": 1, + "__Pyx_PyInt_AsSignedShort": 1, + "__Pyx_PyInt_AsSignedInt": 1, + "__Pyx_PyInt_AsLongDouble": 1, + "__Pyx_PyInt_AsUnsignedLong": 1, + "__Pyx_PyInt_AsUnsignedLongLong": 1, + "__Pyx_PyInt_AsLong": 1, + "__Pyx_PyInt_AsLongLong": 1, + "__Pyx_PyInt_AsSignedLong": 1, + "__Pyx_PyInt_AsSignedLongLong": 1, + "__Pyx_WriteUnraisable": 3, + "__Pyx_ExportFunction": 1, + "*__pyx_f_5numpy_PyArray_MultiIterNew2": 2, + "*__pyx_f_5numpy_PyArray_MultiIterNew3": 2, + "*__pyx_f_5numpy_PyArray_MultiIterNew4": 2, + "*__pyx_f_5numpy_PyArray_MultiIterNew5": 2, + "*__pyx_f_5numpy__util_dtypestring": 2, + "PyArray_Descr": 6, + "__pyx_f_5numpy_set_array_base": 1, + "PyArrayObject": 19, + "*__pyx_f_5numpy_get_array_base": 1, + "inner_work_1d": 2, + "inner_work_2d": 2, + "__Pyx_MODULE_NAME": 1, + "__pyx_module_is_main_wrapper_inner": 1, + "*__pyx_builtin_ValueError": 1, + "*__pyx_builtin_range": 1, + "*__pyx_builtin_RuntimeError": 1, + "__pyx_k_1": 1, + "__pyx_k_2": 1, + "__pyx_k_3": 1, + "__pyx_k_5": 1, + "__pyx_k_7": 1, + "__pyx_k_9": 1, + "__pyx_k_11": 1, + "__pyx_k_12": 1, + "__pyx_k_15": 1, + "__pyx_k__B": 2, + "__pyx_k__H": 2, + "__pyx_k__I": 2, + "__pyx_k__L": 2, + "__pyx_k__O": 2, + "__pyx_k__Q": 2, + "__pyx_k__b": 2, + "__pyx_k__d": 2, + "__pyx_k__f": 2, + "__pyx_k__g": 2, + "__pyx_k__h": 2, + "__pyx_k__i": 2, + "__pyx_k__l": 2, + "__pyx_k__q": 2, + "__pyx_k__Zd": 2, + "__pyx_k__Zf": 2, + "__pyx_k__Zg": 2, + "__pyx_k__np": 1, + "__pyx_k__buf": 1, + "__pyx_k__obj": 1, + "__pyx_k__base": 1, + "__pyx_k__ndim": 1, + "__pyx_k__ones": 1, + "__pyx_k__descr": 1, + "__pyx_k__names": 1, + "__pyx_k__numpy": 1, + "__pyx_k__range": 1, + "__pyx_k__shape": 1, + "__pyx_k__fields": 1, + "__pyx_k__format": 1, + "__pyx_k__strides": 1, + "__pyx_k____main__": 1, + "__pyx_k____test__": 1, + "__pyx_k__itemsize": 1, + "__pyx_k__readonly": 1, + "__pyx_k__type_num": 1, + "__pyx_k__byteorder": 1, + "__pyx_k__ValueError": 1, + "__pyx_k__suboffsets": 1, + "__pyx_k__work_module": 1, + "__pyx_k__RuntimeError": 1, + "__pyx_k__pure_py_test": 1, + "__pyx_k__wrapper_inner": 1, + "__pyx_k__do_awesome_work": 1, + "*__pyx_kp_s_1": 1, + "*__pyx_kp_u_11": 1, + "*__pyx_kp_u_12": 1, + "*__pyx_kp_u_15": 1, + "*__pyx_kp_s_2": 1, + "*__pyx_kp_s_3": 1, + "*__pyx_kp_u_5": 1, + "*__pyx_kp_u_7": 1, + "*__pyx_kp_u_9": 1, + "*__pyx_n_s__RuntimeError": 1, + "*__pyx_n_s__ValueError": 1, + "*__pyx_n_s____main__": 1, + "*__pyx_n_s____test__": 1, + "*__pyx_n_s__base": 1, + "*__pyx_n_s__buf": 1, + "*__pyx_n_s__byteorder": 1, + "*__pyx_n_s__descr": 1, + "*__pyx_n_s__do_awesome_work": 1, + "*__pyx_n_s__fields": 1, + "*__pyx_n_s__format": 1, + "*__pyx_n_s__itemsize": 1, + "*__pyx_n_s__names": 1, + "*__pyx_n_s__ndim": 1, + "*__pyx_n_s__np": 1, + "*__pyx_n_s__numpy": 1, + "*__pyx_n_s__obj": 1, + "*__pyx_n_s__ones": 1, + "*__pyx_n_s__pure_py_test": 1, + "*__pyx_n_s__range": 1, + "*__pyx_n_s__readonly": 1, + "*__pyx_n_s__shape": 1, + "*__pyx_n_s__strides": 1, + "*__pyx_n_s__suboffsets": 1, + "*__pyx_n_s__type_num": 1, + "*__pyx_n_s__work_module": 1, + "*__pyx_n_s__wrapper_inner": 1, + "*__pyx_int_5": 1, + "*__pyx_int_15": 1, + "*__pyx_k_tuple_4": 1, + "*__pyx_k_tuple_6": 1, + "*__pyx_k_tuple_8": 1, + "*__pyx_k_tuple_10": 1, + "*__pyx_k_tuple_13": 1, + "*__pyx_k_tuple_14": 1, + "*__pyx_k_tuple_16": 1, + "__pyx_v_num_x": 4, + "*__pyx_v_data_ptr": 2, + "*__pyx_v_answer_ptr": 2, + "__pyx_v_nd": 6, + "*__pyx_v_dims": 2, + "__pyx_v_typenum": 6, + "*__pyx_v_data_np": 2, + "__pyx_v_sum": 6, + "__pyx_t_1": 154, + "*__pyx_t_2": 4, + "*__pyx_t_3": 4, + "*__pyx_t_4": 3, + "__pyx_t_5": 75, + "__pyx_kp_s_1": 1, + "__pyx_filename": 79, + "__pyx_f": 79, + "__pyx_L1_error": 88, + "__pyx_v_dims": 4, + "NPY_DOUBLE": 3, + "__pyx_t_2": 120, + "PyArray_SimpleNewFromData": 2, + "__pyx_v_data_ptr": 2, + "Py_None": 38, + "__pyx_ptype_5numpy_ndarray": 2, + "__pyx_v_data_np": 10, + "__Pyx_GetName": 4, + "__pyx_m": 4, + "__pyx_n_s__work_module": 3, + "__pyx_t_3": 113, + "PyObject_GetAttr": 4, + "__pyx_n_s__do_awesome_work": 3, + "PyTuple_New": 4, + "PyTuple_SET_ITEM": 4, + "__pyx_t_4": 35, + "PyObject_Call": 11, + "PyErr_Occurred": 2, + "__pyx_v_answer_ptr": 2, + "__pyx_L0": 24, + "__pyx_v_num_y": 2, + "__pyx_kp_s_2": 1, + "*__pyx_pf_13wrapper_inner_pure_py_test": 2, + "*__pyx_self": 2, + "*unused": 2, + "PyMethodDef": 1, + "__pyx_mdef_13wrapper_inner_pure_py_test": 1, + "PyCFunction": 1, + "__pyx_pf_13wrapper_inner_pure_py_test": 1, + "METH_NOARGS": 1, + "*__pyx_v_data": 1, + "*__pyx_r": 7, + "*__pyx_t_1": 8, + "__pyx_self": 2, + "__pyx_v_data": 7, + "__pyx_kp_s_3": 1, + "__pyx_n_s__np": 1, + "__pyx_n_s__ones": 1, + "__pyx_k_tuple_4": 1, + "__pyx_r": 39, + "__Pyx_AddTraceback": 7, + "__pyx_pf_5numpy_7ndarray___getbuffer__": 2, + "*__pyx_v_self": 4, + "*__pyx_v_info": 4, + "__pyx_v_flags": 4, + "__pyx_v_copy_shape": 5, + "__pyx_v_i": 6, + "__pyx_v_ndim": 6, + "__pyx_v_endian_detector": 6, + "__pyx_v_little_endian": 8, + "__pyx_v_t": 29, + "*__pyx_v_f": 2, + "*__pyx_v_descr": 2, + "__pyx_v_offset": 9, + "__pyx_v_hasfields": 4, + "__pyx_t_6": 40, + "__pyx_t_7": 9, + "*__pyx_t_8": 1, + "*__pyx_t_9": 1, + "__pyx_v_info": 33, + "__pyx_v_self": 16, + "PyArray_NDIM": 1, + "sizeof": 15, + "__pyx_L5": 6, + "PyArray_CHKFLAGS": 2, + "NPY_C_CONTIGUOUS": 1, + "__pyx_builtin_ValueError": 5, + "__pyx_k_tuple_6": 1, + "__pyx_L6": 6, + "NPY_F_CONTIGUOUS": 1, + "__pyx_k_tuple_8": 1, + "__pyx_L7": 2, + "buf": 14, + "PyArray_DATA": 1, + "strides": 5, + "malloc": 2, + "shape": 3, + "PyArray_STRIDES": 2, + "PyArray_DIMS": 2, + "__pyx_L8": 2, + "suboffsets": 1, + "PyArray_ITEMSIZE": 1, + "PyArray_ISWRITEABLE": 1, + "__pyx_v_f": 31, + "descr": 2, + "__pyx_v_descr": 10, + "PyDataType_HASFIELDS": 2, + "__pyx_L11": 7, + "type_num": 2, + "byteorder": 4, + "__pyx_k_tuple_10": 1, + "__pyx_L13": 2, + "NPY_BYTE": 2, + "__pyx_L14": 18, + "NPY_UBYTE": 2, + "NPY_SHORT": 2, + "NPY_USHORT": 2, + "NPY_INT": 2, + "NPY_UINT": 2, + "NPY_LONG": 1, + "NPY_ULONG": 1, + "NPY_LONGLONG": 1, + "NPY_ULONGLONG": 1, + "NPY_FLOAT": 1, + "NPY_LONGDOUBLE": 1, + "NPY_CFLOAT": 1, + "NPY_CDOUBLE": 1, + "NPY_CLONGDOUBLE": 1, + "NPY_OBJECT": 1, + "__pyx_t_8": 16, + "PyNumber_Remainder": 1, + "__pyx_kp_u_11": 1, + "format": 6, + "__pyx_L12": 2, + "__pyx_t_9": 7, + "__pyx_f_5numpy__util_dtypestring": 1, + "__pyx_L2": 2, + "__pyx_pf_5numpy_7ndarray_1__releasebuffer__": 2, + "PyArray_HASFIELDS": 1, + "free": 4, + "*__pyx_f_5numpy_PyArray_MultiIterNew1": 1, + "*__pyx_v_a": 5, + "PyArray_MultiIterNew": 5, + "__pyx_v_a": 5, + "*__pyx_v_b": 4, + "__pyx_v_b": 4, + "*__pyx_v_c": 3, + "__pyx_v_c": 3, + "*__pyx_v_d": 2, + "__pyx_v_d": 2, + "*__pyx_v_e": 1, + "__pyx_v_e": 1, + "*__pyx_v_end": 1, + "*__pyx_v_offset": 1, + "*__pyx_v_child": 1, + "*__pyx_v_fields": 1, + "*__pyx_v_childname": 1, + "*__pyx_v_new_offset": 1, + "*__pyx_v_t": 1, + "*__pyx_t_5": 1, + "__pyx_t_10": 7, + "*__pyx_t_11": 1, + "__pyx_v_child": 8, + "__pyx_v_fields": 7, + "__pyx_v_childname": 4, + "__pyx_v_new_offset": 5, + "names": 3, + "PyTuple_GET_SIZE": 2, + "break": 35, + "PyTuple_GET_ITEM": 3, + "PyObject_GetItem": 1, + "fields": 4, + "PyTuple_CheckExact": 1, + "tuple": 3, + "__pyx_ptype_5numpy_dtype": 1, + "__pyx_v_end": 2, + "PyNumber_Subtract": 2, + "PyObject_RichCompare": 8, + "__pyx_int_15": 1, + "Py_LT": 2, + "__pyx_builtin_RuntimeError": 2, + "__pyx_k_tuple_13": 1, + "__pyx_k_tuple_14": 1, + "elsize": 1, + "__pyx_k_tuple_16": 1, + "__pyx_L10": 2, + "Py_EQ": 6, + "BOOST_ASIO_DETAIL_IMPL_EPOLL_REACTOR_IPP": 3, + "": 1, + "BOOST_ASIO_HAS_EPOLL": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "BOOST_ASIO_HAS_TIMERFD": 19, + "": 1, + "boost": 18, + "asio": 14, + "detail": 5, + "epoll_reactor": 40, + "io_service": 6, + "service_base": 1, + "": 1, + "io_service_": 1, + "use_service": 1, + "": 1, + "mutex_": 13, + "interrupter_": 5, + "epoll_fd_": 20, + "do_epoll_create": 3, + "timer_fd_": 21, + "do_timerfd_create": 3, + "shutdown_": 10, + "epoll_event": 10, + "ev": 21, + "ev.events": 13, + "EPOLLIN": 8, + "EPOLLERR": 8, + "EPOLLET": 5, + "ev.data.ptr": 10, + "epoll_ctl": 12, + "EPOLL_CTL_ADD": 7, + "interrupter_.read_descriptor": 3, + "interrupter_.interrupt": 2, + "close": 7, + "shutdown_service": 1, + "mutex": 16, + "scoped_lock": 16, + "lock": 5, + "lock.unlock": 1, + "op_queue": 6, + "": 6, + "ops": 10, + "descriptor_state*": 6, + "state": 33, + "registered_descriptors_.first": 2, + "i": 106, + "max_ops": 6, + "ops.push": 5, + "op_queue_": 12, + "registered_descriptors_.free": 2, + "timer_queues_.get_all_timers": 1, + "io_service_.abandon_operations": 1, + "fork_service": 1, + "fork_event": 1, + "fork_ev": 2, + "fork_child": 1, + "interrupter_.recreate": 1, + "update_timeout": 2, + "descriptors_lock": 3, + "registered_descriptors_mutex_": 3, + "next_": 3, + "registered_events_": 8, + "result": 8, + "descriptor_": 5, + "system": 13, + "error_code": 4, + "ec": 6, + "errno": 10, + "error": 8, + "get_system_category": 3, + "throw_error": 2, + "init_task": 1, + "io_service_.init_task": 1, + "register_descriptor": 1, + "socket_type": 7, + "per_descriptor_data": 8, + "descriptor_data": 60, + "allocate_descriptor_state": 3, + "descriptor_lock": 7, + "reactor_": 7, + "EPOLLHUP": 3, + "EPOLLPRI": 3, + "register_internal_descriptor": 1, + "op_type": 8, + "reactor_op*": 5, + ".push": 2, + "move_descriptor": 1, + "target_descriptor_data": 2, + "source_descriptor_data": 3, + "start_op": 1, + "is_continuation": 5, + "allow_speculative": 2, + "ec_": 4, + "bad_descriptor": 1, + "post_immediate_completion": 2, + ".empty": 5, + "read_op": 1, + "except_op": 1, + "perform": 2, + "descriptor_lock.unlock": 4, + "io_service_.post_immediate_completion": 2, + "write_op": 2, + "EPOLLOUT": 4, + "EPOLL_CTL_MOD": 3, + "io_service_.work_started": 2, + "cancel_ops": 1, + ".front": 3, + "operation_aborted": 2, + ".pop": 3, + "io_service_.post_deferred_completions": 3, + "deregister_descriptor": 1, + "closing": 3, + "EPOLL_CTL_DEL": 2, + "free_descriptor_state": 3, + "deregister_internal_descriptor": 1, + "run": 2, + "block": 7, + "timeout": 5, + "get_timeout": 5, + "events": 8, + "num_events": 2, + "epoll_wait": 1, + "check_timers": 6, + "ptr": 6, + ".data.ptr": 1, + "": 2, + "set_ready_events": 1, + ".events": 1, + "common_lock": 1, + "timer_queues_.get_ready_timers": 1, + "itimerspec": 5, + "new_timeout": 6, + "old_timeout": 4, + "flags": 4, + "timerfd_settime": 2, + "interrupt": 3, + "EPOLL_CLOEXEC": 4, + "fd": 15, + "epoll_create1": 1, + "EINVAL": 4, + "ENOSYS": 1, + "epoll_create": 1, + "epoll_size": 1, + "fcntl": 2, + "F_SETFD": 2, + "FD_CLOEXEC": 2, + "timerfd_create": 2, + "CLOCK_MONOTONIC": 3, + "TFD_CLOEXEC": 1, + "registered_descriptors_.alloc": 1, + "do_add_timer_queue": 1, + "timer_queue_base": 2, + "queue": 4, + "timer_queues_.insert": 1, + "do_remove_timer_queue": 1, + "timer_queues_.erase": 1, + "timer_queues_.wait_duration_msec": 1, + "ts": 1, + "ts.it_interval.tv_sec": 1, + "ts.it_interval.tv_nsec": 1, + "usec": 5, + "timer_queues_.wait_duration_usec": 1, + "ts.it_value.tv_sec": 1, + "ts.it_value.tv_nsec": 1, + "%": 7, + "TFD_TIMER_ABSTIME": 1, + "perform_io_cleanup_on_block_exit": 4, + "epoll_reactor*": 2, + "first_op_": 3, + "ops_.empty": 1, + "ops_": 2, + "operation*": 4, + "descriptor_state": 5, + "operation": 2, + "do_complete": 2, + "perform_io": 2, + "uint32_t": 39, + "mutex_.lock": 1, + "io_cleanup": 1, + "adopt_lock": 1, + "flag": 3, + "j": 10, + "io_cleanup.ops_.push": 1, + "io_cleanup.first_op_": 2, + "io_cleanup.ops_.front": 1, + "io_cleanup.ops_.pop": 1, + "io_service_impl*": 1, + "owner": 3, + "base": 8, + "bytes_transferred": 2, + "": 1, + "complete": 3, + "": 1, + "__OG_MATH_INL__": 2, + "og": 1, + "OG_INLINE": 41, + "Math": 41, + "Abs": 1, + "MASK_SIGNED": 2, + "Fabs": 1, + "f": 104, + "uInt": 1, + "*pf": 1, + "": 1, + "pf": 1, + "fabsf": 1, + "Round": 1, + "floorf": 2, + "Floor": 1, + "Ceil": 1, + "ceilf": 1, + "Ftoi": 1, + "@todo": 1, + "needs": 4, + "testing": 2, + "note": 1, + "sse": 1, + "cvttss2si": 2, + "OG_ASM_MSVC": 4, + "OG_FTOI_USE_SSE": 2, + "SysInfo": 2, + "cpu.general.SSE": 2, + "__asm": 8, + "eax": 5, + "mov": 6, + "fld": 4, + "fistp": 3, + "//__asm": 3, + "need": 6, + "O_o": 3, + "OG_ASM_GNU": 4, + "__asm__": 4, + "__volatile__": 4, + "c": 72, + "cast": 7, + "instead": 4, + "not": 29, + "why": 3, + "id": 4, + "did": 3, + "": 3, + "FtoiFast": 2, + "Ftol": 1, + "": 1, + "Sign": 2, + "Fmod": 1, + "numerator": 2, + "denominator": 2, + "fmodf": 1, + "Modf": 2, + "modff": 2, + "Sqrt": 2, + "sqrtf": 2, + "InvSqrt": 1, + "OG_ASSERT": 4, + "RSqrt": 1, + "g": 2, + "*reinterpret_cast": 3, + "guess": 1, + "f375a86": 1, + "": 1, + "Newtons": 1, + "calculation": 1, + "Log": 1, + "logf": 3, + "Log2": 1, + "INV_LN_2": 1, + "Log10": 1, + "INV_LN_10": 1, + "Pow": 1, + "exp": 2, + "powf": 1, + "Exp": 1, + "expf": 1, + "IsPowerOfTwo": 4, + "faster": 3, + "two": 2, + "known": 1, + "check": 4, + "moved": 1, + "beginning": 1, + "HigherPowerOfTwo": 4, + "LowerPowerOfTwo": 2, + "FloorPowerOfTwo": 1, + "CeilPowerOfTwo": 1, + "ClosestPowerOfTwo": 1, + "high": 5, + "low": 5, + "Digits": 1, + "digits": 6, + "step": 3, + "Sin": 2, + "sinf": 1, + "ASin": 1, + "<=>": 2, + "1": 4, + "0f": 2, + "HALF_PI": 2, + "asinf": 1, + "Cos": 2, + "cosf": 1, + "ACos": 1, + "PI": 1, + "acosf": 1, + "Tan": 1, + "tanf": 1, + "ATan": 2, + "atanf": 1, + "f1": 2, + "f2": 2, + "atan2f": 1, + "SinCos": 1, + "sometimes": 1, + "assembler": 1, + "just": 2, + "waaayy": 1, + "_asm": 1, + "fsincos": 1, + "ecx": 2, + "edx": 2, + "fstp": 2, + "dword": 2, + "asm": 1, + "Deg2Rad": 1, + "DEG_TO_RAD": 1, + "Rad2Deg": 1, + "RAD_TO_DEG": 1, + "Square": 1, + "v": 10, + "Cube": 1, + "Sec2Ms": 1, + "sec": 2, + "Ms2Sec": 1, + "ms": 2, + "BITCOIN_KEY_H": 2, + "": 1, + "": 1, + "EC_KEY": 3, + "definition": 3, + "key_error": 6, + "runtime_error": 2, + "str": 2, + "CKeyID": 5, + "uint160": 8, + "CScriptID": 3, + "CPubKey": 11, + "": 19, + "vchPubKey": 6, + "CKey": 26, + "vchPubKeyIn": 2, + "a.vchPubKey": 3, + "b.vchPubKey": 3, + "IMPLEMENT_SERIALIZE": 1, + "READWRITE": 1, + "GetID": 1, + "Hash160": 1, + "uint256": 10, + "GetHash": 1, + "Hash": 1, + "vchPubKey.begin": 1, + "vchPubKey.end": 1, + "IsValid": 4, + "vchPubKey.size": 3, + "IsCompressed": 2, + "Raw": 1, + "secure_allocator": 2, + "CPrivKey": 3, + "CSecret": 4, + "EC_KEY*": 1, + "pkey": 14, + "fSet": 7, + "fCompressedPubKey": 5, + "SetCompressedPubKey": 4, + "Reset": 5, + "IsNull": 1, + "MakeNewKey": 1, + "fCompressed": 3, + "SetPrivKey": 1, + "vchPrivKey": 1, + "SetSecret": 1, + "vchSecret": 1, + "GetSecret": 2, + "GetPrivKey": 1, + "SetPubKey": 1, + "GetPubKey": 5, + "hash": 20, + "vchSig": 18, + "SignCompact": 2, + "SetCompactSignature": 2, + "Verify": 2, + "VerifyCompact": 2, + "QSCICOMMAND_H": 2, + "": 1, + "": 1, + "QsciCommand": 7, + "represents": 1, + "editor": 1, + "command": 9, + "may": 9, + "have": 4, + "one": 73, + "keys": 3, + "bound": 4, + "Methods": 1, + "are": 36, + "provided": 1, + "change": 3, + "remove": 2, + "key": 23, + "binding.": 1, + "Each": 1, + "has": 29, + "user": 3, + "friendly": 2, + "description": 3, + "mapping": 3, + "dialogs.": 1, + "defines": 3, + "different": 5, + "commands": 1, + "assigned": 1, + "key.": 1, + "Command": 4, + "Move": 26, + "down": 12, + "line.": 33, + "LineDown": 1, + "SCI_LINEDOWN": 1, + "Extend": 33, + "selection": 39, + "LineDownExtend": 1, + "SCI_LINEDOWNEXTEND": 1, + "rectangular": 9, + "LineDownRectExtend": 1, + "SCI_LINEDOWNRECTEXTEND": 1, + "Scroll": 5, + "view": 2, + "LineScrollDown": 1, + "SCI_LINESCROLLDOWN": 1, + "LineUp": 1, + "SCI_LINEUP": 1, + "LineUpExtend": 1, + "SCI_LINEUPEXTEND": 1, + "LineUpRectExtend": 1, + "SCI_LINEUPRECTEXTEND": 1, + "LineScrollUp": 1, + "SCI_LINESCROLLUP": 1, + "start": 12, + "ScrollToStart": 1, + "SCI_SCROLLTOSTART": 1, + "ScrollToEnd": 1, + "SCI_SCROLLTOEND": 1, + "vertically": 1, + "centre": 1, + "VerticalCentreCaret": 1, + "SCI_VERTICALCENTRECARET": 1, + "paragraph.": 4, + "ParaDown": 1, + "SCI_PARADOWN": 1, + "ParaDownExtend": 1, + "SCI_PARADOWNEXTEND": 1, + "ParaUp": 1, + "SCI_PARAUP": 1, + "ParaUpExtend": 1, + "SCI_PARAUPEXTEND": 1, + "left": 7, + "character.": 9, + "CharLeft": 1, + "SCI_CHARLEFT": 1, + "CharLeftExtend": 1, + "SCI_CHARLEFTEXTEND": 1, + "CharLeftRectExtend": 1, + "SCI_CHARLEFTRECTEXTEND": 1, + "right": 9, + "CharRight": 1, + "SCI_CHARRIGHT": 1, + "CharRightExtend": 1, + "SCI_CHARRIGHTEXTEND": 1, + "CharRightRectExtend": 1, + "SCI_CHARRIGHTRECTEXTEND": 1, + "word.": 9, + "WordLeft": 1, + "SCI_WORDLEFT": 1, + "WordLeftExtend": 1, + "SCI_WORDLEFTEXTEND": 1, + "WordRight": 1, + "SCI_WORDRIGHT": 1, + "WordRightExtend": 1, + "SCI_WORDRIGHTEXTEND": 1, + "previous": 6, + "WordLeftEnd": 1, + "SCI_WORDLEFTEND": 1, + "WordLeftEndExtend": 1, + "SCI_WORDLEFTENDEXTEND": 1, + "next": 9, + "WordRightEnd": 1, + "SCI_WORDRIGHTEND": 1, + "WordRightEndExtend": 1, + "SCI_WORDRIGHTENDEXTEND": 1, + "word": 7, + "part.": 4, + "WordPartLeft": 1, + "SCI_WORDPARTLEFT": 1, + "WordPartLeftExtend": 1, + "SCI_WORDPARTLEFTEXTEND": 1, + "WordPartRight": 1, + "SCI_WORDPARTRIGHT": 1, + "WordPartRightExtend": 1, + "SCI_WORDPARTRIGHTEXTEND": 1, + "Home": 1, + "SCI_HOME": 1, + "HomeExtend": 1, + "SCI_HOMEEXTEND": 1, + "HomeRectExtend": 1, + "SCI_HOMERECTEXTEND": 1, + "displayed": 10, + "HomeDisplay": 1, + "SCI_HOMEDISPLAY": 1, + "HomeDisplayExtend": 1, + "SCI_HOMEDISPLAYEXTEND": 1, + "HomeWrap": 1, + "SCI_HOMEWRAP": 1, + "HomeWrapExtend": 1, + "SCI_HOMEWRAPEXTEND": 1, + "visible": 6, + "character": 10, + "VCHome": 1, + "SCI_VCHOME": 1, + "VCHomeExtend": 1, + "SCI_VCHOMEEXTEND": 1, + "VCHomeRectExtend": 1, + "SCI_VCHOMERECTEXTEND": 1, + "VCHomeWrap": 1, + "SCI_VCHOMEWRAP": 1, + "VCHomeWrapExtend": 1, + "SCI_VCHOMEWRAPEXTEND": 1, + "LineEnd": 1, + "SCI_LINEEND": 1, + "LineEndExtend": 1, + "SCI_LINEENDEXTEND": 1, + "LineEndRectExtend": 1, + "SCI_LINEENDRECTEXTEND": 1, + "LineEndDisplay": 1, + "SCI_LINEENDDISPLAY": 1, + "LineEndDisplayExtend": 1, + "SCI_LINEENDDISPLAYEXTEND": 1, + "LineEndWrap": 1, + "SCI_LINEENDWRAP": 1, + "LineEndWrapExtend": 1, + "SCI_LINEENDWRAPEXTEND": 1, + "DocumentStart": 1, + "SCI_DOCUMENTSTART": 1, + "DocumentStartExtend": 1, + "SCI_DOCUMENTSTARTEXTEND": 1, + "DocumentEnd": 1, + "SCI_DOCUMENTEND": 1, + "DocumentEndExtend": 1, + "SCI_DOCUMENTENDEXTEND": 1, + "PageUp": 1, + "SCI_PAGEUP": 1, + "PageUpExtend": 1, + "SCI_PAGEUPEXTEND": 1, + "PageUpRectExtend": 1, + "SCI_PAGEUPRECTEXTEND": 1, + "PageDown": 1, + "SCI_PAGEDOWN": 1, + "PageDownExtend": 1, + "SCI_PAGEDOWNEXTEND": 1, + "PageDownRectExtend": 1, + "SCI_PAGEDOWNRECTEXTEND": 1, + "Stuttered": 4, + "move": 2, + "StutteredPageUp": 1, + "SCI_STUTTEREDPAGEUP": 1, + "extend": 2, + "StutteredPageUpExtend": 1, + "SCI_STUTTEREDPAGEUPEXTEND": 1, + "StutteredPageDown": 1, + "SCI_STUTTEREDPAGEDOWN": 1, + "StutteredPageDownExtend": 1, + "SCI_STUTTEREDPAGEDOWNEXTEND": 1, + "Delete": 10, + "SCI_CLEAR": 1, + "DeleteBack": 1, + "SCI_DELETEBACK": 1, + "DeleteBackNotLine": 1, + "SCI_DELETEBACKNOTLINE": 1, + "left.": 2, + "DeleteWordLeft": 1, + "SCI_DELWORDLEFT": 1, + "right.": 2, + "DeleteWordRight": 1, + "SCI_DELWORDRIGHT": 1, + "DeleteWordRightEnd": 1, + "SCI_DELWORDRIGHTEND": 1, + "DeleteLineLeft": 1, + "SCI_DELLINELEFT": 1, + "DeleteLineRight": 1, + "SCI_DELLINERIGHT": 1, + "LineDelete": 1, + "SCI_LINEDELETE": 1, + "Cut": 2, + "clipboard.": 5, + "LineCut": 1, + "SCI_LINECUT": 1, + "Copy": 2, + "LineCopy": 1, + "SCI_LINECOPY": 1, + "Transpose": 1, + "lines.": 1, + "LineTranspose": 1, + "SCI_LINETRANSPOSE": 1, + "Duplicate": 2, + "LineDuplicate": 1, + "SCI_LINEDUPLICATE": 1, + "Select": 49, + "SelectAll": 1, + "SCI_SELECTALL": 1, + "selected": 13, + "MoveSelectedLinesUp": 1, + "SCI_MOVESELECTEDLINESUP": 1, + "MoveSelectedLinesDown": 1, + "SCI_MOVESELECTEDLINESDOWN": 1, + "selection.": 1, + "SelectionDuplicate": 1, + "SCI_SELECTIONDUPLICATE": 1, + "Convert": 2, + "lower": 1, + "case.": 2, + "SelectionLowerCase": 1, + "SCI_LOWERCASE": 1, + "upper": 1, + "SelectionUpperCase": 1, + "SCI_UPPERCASE": 1, + "SelectionCut": 1, + "SCI_CUT": 1, + "SelectionCopy": 1, + "SCI_COPY": 1, + "Paste": 2, + "SCI_PASTE": 1, + "Toggle": 1, + "insert/overtype.": 1, + "EditToggleOvertype": 1, + "SCI_EDITTOGGLEOVERTYPE": 1, + "Insert": 2, + "dependent": 1, + "newline.": 1, + "Newline": 1, + "SCI_NEWLINE": 1, + "formfeed.": 1, + "Formfeed": 1, + "SCI_FORMFEED": 1, + "Indent": 1, + "level.": 3, + "Tab": 1, + "SCI_TAB": 1, + "De": 1, + "indent": 1, + "Backtab": 1, + "SCI_BACKTAB": 1, + "Cancel": 2, + "operation.": 2, + "SCI_CANCEL": 1, + "Undo": 2, + "command.": 5, + "SCI_UNDO": 1, + "Redo": 2, + "SCI_REDO": 1, + "Zoom": 2, + "in.": 1, + "ZoomIn": 1, + "SCI_ZOOMIN": 1, + "out.": 1, + "ZoomOut": 1, + "SCI_ZOOMOUT": 1, + "executed": 1, + "scicmd": 2, + "Execute": 1, + "execute": 3, + "Binds": 2, + "If": 11, + "then": 15, + "binding": 3, + "removed.": 2, + "invalid": 5, + "unchanged.": 1, + "Valid": 1, + "control": 17, + "Key_Down": 1, + "Key_Up": 1, + "Key_Left": 1, + "Key_Right": 1, + "Key_Home": 1, + "Key_End": 1, + "Key_PageUp": 1, + "Key_PageDown": 1, + "Key_Delete": 1, + "Key_Insert": 1, + "Key_Escape": 1, + "Key_Backspace": 1, + "Key_Tab": 1, + "Key_Return.": 1, + "Keys": 1, + "combination": 2, + "SHIFT": 1, + "CTRL": 1, + "ALT": 1, + "META.": 1, + "setAlternateKey": 3, + "validKey": 3, + "setKey": 3, + "alternate": 7, + "altkey": 3, + "alternateKey": 3, + "currently": 12, + "returned.": 4, + "qkey": 2, + "qaltkey": 2, + "valid": 2, + "QsciCommandSet": 1, + "*qs": 1, + "cmd": 1, + "*desc": 1, + "bindKey": 1, + "qk": 1, + "scik": 1, + "*qsCmd": 1, + "scikey": 1, + "scialtkey": 1, + "*descCmd": 1, + "V8_SCANNER_H_": 3, + "v8": 9, + "ParsingFlags": 1, + "kNoParsingFlags": 1, + "kLanguageModeMask": 4, + "kAllowLazy": 1, + "kAllowNativesSyntax": 1, + "kAllowModules": 1, + "STATIC_ASSERT": 5, + "CLASSIC_MODE": 2, + "STRICT_MODE": 2, + "EXTENDED_MODE": 2, + "HexValue": 2, + "uc32": 19, + "detect": 3, + "x16": 1, + "x36.": 1, + "Utf16CharacterStream": 3, + "pos_": 6, + "Advance": 44, + "buffer_cursor_": 5, + "buffer_end_": 3, + "ReadBlock": 2, + "": 1, + "kEndOfInput": 2, + "pos": 12, + "SeekForward": 4, + "code_unit_count": 7, + "buffered_chars": 2, + "SlowSeekForward": 2, + "PushBack": 8, + "int32_t": 1, + "code_unit": 6, + "uc16*": 3, + "UnicodeCache": 3, + "unibrow": 11, + "Utf8InputBuffer": 2, + "<1024>": 2, + "Utf8Decoder": 2, + "StaticResource": 2, + "": 2, + "utf8_decoder": 1, + "utf8_decoder_": 2, + "IsIdentifierStart": 2, + "uchar": 4, + "kIsIdentifierStart.get": 1, + "IsIdentifierPart": 1, + "kIsIdentifierPart.get": 1, + "IsLineTerminator": 6, + "kIsLineTerminator.get": 1, + "IsWhiteSpace": 2, + "kIsWhiteSpace.get": 1, + "Predicate": 4, + "": 1, + "128": 4, + "kIsIdentifierStart": 1, + "": 1, + "kIsIdentifierPart": 1, + "": 1, + "kIsLineTerminator": 1, + "": 1, + "kIsWhiteSpace": 1, + "DISALLOW_COPY_AND_ASSIGN": 2, + "LiteralBuffer": 6, + "is_ascii_": 10, + "position_": 17, + "backing_store_": 7, + "backing_store_.length": 4, + "backing_store_.Dispose": 3, + "INLINE": 2, + "AddChar": 2, + "ExpandBuffer": 2, + "kMaxAsciiCharCodeU": 1, + "": 6, + "kASCIISize": 1, + "ConvertToUtf16": 2, + "ASSERT": 17, + "": 2, + "kUC16Size": 2, + "is_ascii": 3, + "Vector": 13, + "uc16": 5, + "utf16_literal": 3, + "backing_store_.start": 5, + "ascii_literal": 3, + "length": 10, + "kInitialCapacity": 2, + "kGrowthFactory": 2, + "kMinConversionSlack": 1, + "kMaxGrowth": 2, + "MB": 1, + "NewCapacity": 3, + "min_capacity": 2, + "capacity": 3, + "Max": 1, + "new_capacity": 2, + "Min": 1, + "new_store": 6, + "memcpy": 1, + "new_store.start": 3, + "new_content_size": 4, + "src": 2, + "": 1, + "dst": 2, + "Scanner": 16, + "LiteralScope": 4, + "Scanner*": 2, + "scanner_": 5, + "complete_": 4, + "StartLiteral": 2, + "DropLiteral": 2, + "Complete": 1, + "TerminateLiteral": 2, + "Location": 14, + "beg_pos": 5, + "end_pos": 4, + "kNoOctalLocation": 1, + "UnicodeCache*": 4, + "scanner_contants": 1, + "Initialize": 4, + "Utf16CharacterStream*": 3, + "source": 12, + "Token": 212, + "Next": 3, + "current_token": 1, + "current_.token": 4, + "location": 6, + "current_.location": 2, + "literal_ascii_string": 1, + "ASSERT_NOT_NULL": 9, + "current_.literal_chars": 11, + "literal_utf16_string": 1, + "is_literal_ascii": 1, + "literal_length": 1, + "literal_contains_escapes": 1, + "source_length": 3, + "location.end_pos": 1, + "location.beg_pos": 1, + "STRING": 1, + "peek": 1, + "next_.token": 3, + "peek_location": 1, + "next_.location": 1, + "next_literal_ascii_string": 1, + "next_.literal_chars": 13, + "next_literal_utf16_string": 1, + "is_next_literal_ascii": 1, + "next_literal_length": 1, + "unicode_cache": 3, + "unicode_cache_": 10, + "kCharacterLookaheadBufferSize": 3, + "ScanOctalEscape": 1, + "octal_position": 1, + "octal_pos_": 5, + "clear_octal_position": 1, + "HarmonyScoping": 1, + "harmony_scoping_": 4, + "SetHarmonyScoping": 1, + "scoping": 2, + "HarmonyModules": 1, + "harmony_modules_": 4, + "SetHarmonyModules": 1, + "modules": 2, + "HasAnyLineTerminatorBeforeNext": 1, + "has_line_terminator_before_next_": 9, + "has_multiline_comment_before_next_": 5, + "ScanRegExpPattern": 1, + "seen_equal": 1, + "ScanRegExpFlags": 1, + "IsIdentifier": 1, + "CharacterStream*": 1, + "buffer": 9, + "TokenDesc": 3, + "token": 64, + "LiteralBuffer*": 2, + "literal_chars": 1, + "Init": 3, + "free_buffer": 3, + "literal_buffer1_": 3, + "literal_buffer2_": 2, + "AddLiteralChar": 2, + "AddLiteralCharAdvance": 3, + "c0_": 64, + "source_": 7, + "ch": 5, + "tok": 2, + "else_": 2, + "ScanHexNumber": 2, + "expected_length": 4, + "Scan": 5, + "SkipWhiteSpace": 4, + "SkipSingleLineComment": 6, + "SkipMultiLineComment": 3, + "ScanHtmlComment": 3, + "ScanDecimalDigits": 1, + "ScanNumber": 3, + "seen_period": 1, + "ScanIdentifierOrKeyword": 2, + "ScanIdentifierSuffix": 1, + "LiteralScope*": 1, + "literal": 2, + "ScanString": 3, + "ScanEscape": 2, + "ScanIdentifierUnicodeEscape": 1, + "ScanLiteralUnicodeEscape": 3, + "source_pos": 10, + "current_": 2, + "desc": 2, + "look": 1, + "ahead": 1, + "LIBCANIH": 2, + "": 2, + "": 1, + "": 1, + "int64": 1, + "//#define": 1, + "DEBUG": 5, + "dout": 2, + "cerr": 1, + "libcanister": 2, + "//the": 8, + "canmem": 22, + "generic": 1, + "memory": 14, + "container": 2, + "commonly": 1, + "//throughout": 1, + "canister": 14, + "framework": 1, + "hold": 1, + "uncertain": 1, + "//length": 1, + "contain": 1, + "null": 3, + "bytes.": 1, + "data": 26, + "raw": 2, + "absolute": 1, + "//creates": 3, + "unallocated": 1, + "allocsize": 1, + "allocated": 2, + "blank": 1, + "strdata": 1, + "//automates": 1, + "creation": 1, + "zero": 5, + "limited": 2, + "canmems": 1, + "//cleans": 1, + "zeromem": 1, + "//overwrites": 2, + "fragmem": 1, + "fragment": 2, + "notation": 1, + "countlen": 1, + "//counts": 1, + "strings": 1, + "trim": 2, + "//removes": 1, + "nulls": 1, + "//returns": 2, + "//contains": 2, + "information": 3, + "about": 6, + "caninfo": 2, + "path": 8, + "//physical": 1, + "internalname": 1, + "//a": 1, + "numfiles": 1, + "files": 6, + "//necessary": 1, + "canfile": 7, + "//this": 1, + "holds": 2, + "within": 4, + "//canister": 1, + "canister*": 1, + "parent": 1, + "//internal": 1, + "//use": 1, + "their": 6, + "own.": 1, + "newline": 2, + "delimited": 2, + "list": 3, + "container.": 1, + "TOC": 1, + "info": 2, + "general": 1, + "canfiles": 1, + "recommended": 1, + "programs": 4, + "modify": 1, + "//these": 1, + "directly": 2, + "but": 5, + "enforced.": 1, + "canfile*": 1, + "//if": 1, + "write": 8, + "routines": 1, + "anything": 1, + "//maximum": 1, + "given": 16, + "//time": 1, + "whatever": 1, + "suits": 1, + "application.": 1, + "cachemax": 2, + "cachecnt": 1, + "//number": 1, + "cache": 2, + "//both": 1, + "initialize": 1, + "physical": 4, + "fspath": 3, + "//destroys": 1, + "flushing": 1, + "modded": 1, + "buffers": 3, + "course": 2, + "//open": 1, + "//does": 1, + "exist": 2, + "open": 6, + "//close": 1, + "flush": 1, + "all": 11, + "//deletes": 1, + "inside": 1, + "delFile": 1, + "//pulls": 1, + "contents": 3, + "disk": 2, + "getFile": 1, + "does": 4, + "otherwise": 1, + "overwrites": 1, + "whether": 4, + "writeFile": 2, + "//get": 1, + "containing": 2, + "//list": 1, + "paths": 1, + "getTOC": 1, + "//brings": 1, + "back": 1, + "limit": 1, + "//important": 1, + "sCFID": 2, + "safe": 4, + "CFID": 2, + "avoid": 1, + "uncaching": 1, + "//really": 1, + "internally": 1, + "harm.": 1, + "cacheclean": 1, + "dFlush": 1, + "V8_V8_H_": 3, + "GOOGLE3": 2, + "NDEBUG": 4, + "both": 1, + "set": 18, + "Deserializer": 1, + "V8": 21, + "AllStatic": 1, + "Deserializer*": 2, + "des": 3, + "TearDown": 5, + "IsRunning": 1, + "is_running_": 6, + "UseCrankshaft": 1, + "use_crankshaft_": 6, + "IsDead": 2, + "has_fatal_error_": 5, + "has_been_disposed_": 6, + "SetFatalError": 2, + "FatalProcessOutOfMemory": 1, + "take_snapshot": 1, + "SetEntropySource": 2, + "EntropySource": 3, + "SetReturnAddressLocationResolver": 3, + "ReturnAddressLocationResolver": 2, + "resolver": 3, + "Random": 3, + "Context*": 4, + "RandomPrivate": 2, + "Isolate*": 6, + "isolate": 15, + "Object*": 4, + "FillHeapNumberWithRandom": 2, + "heap_number": 4, + "IdleNotification": 3, + "hint": 3, + "AddCallCompletedCallback": 2, + "CallCompletedCallback": 4, + "callback": 7, + "RemoveCallCompletedCallback": 2, + "FireCallCompletedCallback": 2, + "InitializeOncePerProcessImpl": 3, + "InitializeOncePerProcess": 4, + "has_been_set_up_": 4, + "List": 3, + "": 3, + "call_completed_callbacks_": 16, + "NilValue": 1, + "kNullValue": 1, + "kUndefinedValue": 1, + "EqualityKind": 1, + "kStrictEquality": 1, + "kNonStrictEquality": 1, + "mainpage": 1, + "library": 14, + "Broadcom": 3, + "BCM": 14, + "Raspberry": 6, + "Pi": 5, + "RPi": 17, + ".": 16, + "It": 7, + "provides": 3, + "access": 17, + "GPIO": 87, + "IO": 2, + "functions": 19, + "chip": 9, + "allowing": 3, + "pins": 40, + "pin": 90, + "IDE": 4, + "plug": 3, + "board": 2, + "so": 2, + "external": 3, + "devices.": 1, + "reading": 3, + "digital": 2, + "inputs": 2, + "setting": 2, + "outputs": 1, + "SPI": 44, + "I2C": 29, + "accessing": 2, + "timers.": 1, + "Pin": 65, + "event": 3, + "detection": 2, + "supported": 3, + "polling": 1, + "interrupts": 1, + "compatible": 1, + "installs": 1, + "header": 7, + "non": 2, + "shared": 2, + "Linux": 2, + "based": 4, + "distro": 1, + "clearly": 1, + "except": 2, + "another": 1, + "package": 1, + "documentation": 3, + "refers": 1, + "downloaded": 1, + "http": 11, + "//www.airspayce.com/mikem/bcm2835/bcm2835": 1, + "tar.gz": 1, + "You": 9, + "find": 2, + "latest": 2, + "//www.airspayce.com/mikem/bcm2835": 1, + "Several": 1, + "provided.": 1, + "Based": 1, + "//elinux.org/RPi_Low": 1, + "level_peripherals": 1, + "//www.raspberrypi.org/wp": 1, + "content/uploads/2012/02/BCM2835": 1, + "ARM": 5, + "Peripherals.pdf": 1, + "//www.scribd.com/doc/101830961/GPIO": 2, + "Pads": 3, + "Control2": 2, + "also": 3, + "online": 1, + "help": 1, + "discussion": 1, + "//groups.google.com/group/bcm2835": 1, + "group": 23, + "questions": 1, + "discussions": 1, + "topic.": 1, + "Do": 1, + "contact": 1, + "author": 3, + "unless": 1, + "discuss": 1, + "commercial": 1, + "licensing.": 1, + "Tested": 1, + "debian6": 1, + "wheezy": 3, + "raspbian": 3, + "Occidentalisv01": 2, + "CAUTION": 1, + "been": 14, + "observed": 1, + "enables": 3, + "such": 4, + "bcm2835_gpio_len": 5, + "pulled": 1, + "LOW": 8, + "cause": 1, + "temporary": 1, + "hangs": 1, + "Occidentalisv01.": 1, + "Reason": 1, + "yet": 1, + "determined": 1, + "suspect": 1, + "handler": 1, + "hitting": 1, + "hard": 1, + "loop": 2, + "those": 3, + "OSs.": 1, + "friends": 2, + "disable": 2, + "bcm2835_gpio_cler_len": 1, + "use.": 1, + "par": 9, + "Installation": 1, + "consists": 1, + "installed": 1, + "usual": 3, + "places": 1, + "#": 1, + "download": 2, + "say": 1, + "bcm2835": 7, + "xx.tar.gz": 2, + "tar": 1, + "zxvf": 1, + "cd": 1, + "xx": 2, + "./configure": 1, + "sudo": 2, + "endcode": 2, + "Physical": 21, + "Addresses": 6, + "bcm2835_peri_read": 3, + "bcm2835_peri_write": 3, + "bcm2835_peri_set_bits": 2, + "level": 10, + "peripheral": 14, + "register": 17, + "functions.": 4, + "They": 1, + "designed": 3, + "addresses": 4, + "described": 1, + "section": 6, + "BCM2835": 2, + "Peripherals": 1, + "manual.": 1, + "FFFFFF": 1, + "peripherals.": 1, + "bus": 4, + "peripherals": 2, + "map": 3, + "onto": 1, + "address": 13, + "starting": 1, + "E000000.": 1, + "Thus": 1, + "advertised": 1, + "manual": 8, + "Ennnnnn": 1, + "available": 6, + "nnnnnn.": 1, + "registers": 12, + "following": 2, + "externals": 1, + "bcm2835_gpio": 2, + "bcm2835_pwm": 2, + "bcm2835_clk": 2, + "bcm2835_pads": 2, + "bcm2835_spio0": 1, + "bcm2835_st": 1, + "bcm2835_bsc0": 1, + "bcm2835_bsc1": 1, + "Numbering": 1, + "numbering": 1, + "inconsistent": 1, + "underlying": 4, + "numbering.": 1, + "//elinux.org/RPi_BCM2835_GPIOs": 1, + "well": 1, + "power": 1, + "ground": 1, + "pins.": 1, + "Not": 4, + "header.": 1, + "Version": 40, + "P5": 6, + "connector": 1, + "V": 2, + "Gnd.": 1, + "passed": 4, + "_not_": 1, + "number.": 1, + "There": 1, + "symbolic": 1, + "definitions": 3, + "convenience.": 1, + "See": 7, + "ref": 32, + "RPiGPIOPin.": 22, + "Pins": 2, + "bcm2835_spi_*": 1, + "allow": 5, + "SPI0": 17, + "send": 3, + "received": 3, + "Serial": 3, + "Peripheral": 6, + "Interface": 2, + "more": 4, + "//en.wikipedia.org/wiki/Serial_Peripheral_Interface_Bus": 1, + "When": 12, + "bcm2835_spi_begin": 3, + "changes": 2, + "bahaviour": 1, + "behaviour": 1, + "order": 14, + "support": 4, + "SPI.": 1, + "While": 1, + "through": 4, + "bcm2835_spi_gpio_write": 1, + "bcm2835_spi_end": 4, + "revert": 1, + "configured": 1, + "controled": 1, + "bcm2835_gpio_*": 1, + "calls.": 1, + "P1": 56, + "MOSI": 8, + "MISO": 6, + "CLK": 6, + "CE0": 5, + "CE1": 6, + "bcm2835_i2c_*": 2, + "BSC": 10, + "generically": 1, + "referred": 1, + "I": 4, + "//en.wikipedia.org/wiki/I": 1, + "C2": 1, + "B2C": 1, + "V2": 2, + "SDA": 3, + "SLC": 1, + "Real": 1, + "Time": 1, + "performance": 2, + "constraints": 2, + "i.e.": 1, + "they": 2, + "Such": 1, + "part": 1, + "kernel": 4, + "usually": 2, + "subject": 1, + "paging": 1, + "swapping": 2, + "things": 1, + "besides": 1, + "running": 1, + "program.": 1, + "means": 8, + "expect": 2, + "programs.": 1, + "In": 2, + "particular": 1, + "guarantee": 1, + "bcm2835_delay": 5, + "bcm2835_delayMicroseconds": 6, + "exactly": 2, + "requested.": 1, + "fact": 2, + "depending": 1, + "activity": 1, + "host": 1, + "etc": 1, + "might": 1, + "significantly": 1, + "longer": 1, + "delay": 9, + "times": 2, + "asked": 1, + "for.": 1, + "So": 1, + "dont": 1, + "request.": 1, + "Arjan": 2, + "reports": 1, + "prevent": 4, + "sched_param": 1, + "sp": 4, + "memset": 3, + "sp.sched_priority": 1, + "sched_get_priority_max": 1, + "SCHED_FIFO": 2, + "sched_setscheduler": 1, + "mlockall": 1, + "MCL_CURRENT": 1, + "MCL_FUTURE": 1, + "Open": 2, + "Source": 2, + "Licensing": 2, + "GPL": 2, + "appropriate": 7, + "option": 1, + "share": 2, + "application": 2, + "everyone": 1, + "distribute": 1, + "give": 2, + "them": 1, + "who": 1, + "uses": 4, + "wish": 2, + "software": 1, + "under": 2, + "contribute": 1, + "community": 1, + "accordance": 1, + "distributed.": 1, + "//www.gnu.org/copyleft/gpl.html": 1, + "COPYING": 1, + "Acknowledgements": 1, + "Some": 1, + "inspired": 2, + "Dom": 1, + "Gert.": 1, + "Alan": 1, + "Barr.": 1, + "Revision": 1, + "History": 1, + "Initial": 1, + "release": 1, + "Minor": 1, + "bug": 1, + "fixes": 1, + "Added": 11, + "bcm2835_spi_transfern": 3, + "Fixed": 4, + "problem": 2, + "prevented": 1, + "used.": 2, + "Reported": 5, + "David": 1, + "Robinson.": 1, + "bcm2835_close": 4, + "deinit": 1, + "library.": 3, + "Suggested": 1, + "sar": 1, + "Ortiz": 1, + "Document": 1, + "Functions": 1, + "bcm2835_gpio_ren": 3, + "bcm2835_gpio_fen": 3, + "bcm2835_gpio_hen": 3, + "bcm2835_gpio_aren": 3, + "bcm2835_gpio_afen": 3, + "now": 4, + "specified.": 1, + "Other": 1, + "were": 1, + "already": 1, + "previously": 10, + "enabled": 4, + "stay": 1, + "enabled.": 1, + "bcm2835_gpio_clr_ren": 2, + "bcm2835_gpio_clr_fen": 2, + "bcm2835_gpio_clr_hen": 2, + "bcm2835_gpio_clr_len": 2, + "bcm2835_gpio_clr_aren": 2, + "bcm2835_gpio_clr_afen": 2, + "enable": 3, + "individual": 1, + "suggested": 3, + "Andreas": 1, + "Sundstrom.": 1, + "bcm2835_spi_transfernb": 2, + "read": 21, + "write.": 1, + "Improvements": 3, + "barrier": 3, + "maddin.": 1, + "contributed": 1, + "mikew": 1, + "noticed": 1, + "mallocing": 1, + "mmaps": 1, + "/dev/mem.": 1, + "removed": 1, + "mallocs": 1, + "frees": 1, + "found": 1, + "nanosleep": 7, + "takes": 1, + "least": 2, + "us.": 1, + "link": 3, + "version.": 1, + "doc": 1, + "Also": 1, + "added": 2, + "define": 2, + "passwrd": 1, + "Gert": 1, + "says": 1, + "pad": 4, + "settings.": 1, + "Changed": 1, + "collisions": 1, + "wiringPi.": 1, + "Macros": 2, + "delayMicroseconds": 3, + "disabled": 2, + "defining": 1, + "BCM2835_NO_DELAY_COMPATIBILITY": 2, + "incorrect": 2, + "Hardware": 1, + "pointers": 2, + "initialisation": 2, + "externally": 1, + "bcm2835_spi0.": 1, + "compiles": 1, + "even": 2, + "CLOCK_MONOTONIC_RAW": 1, + "instead.": 1, + "errors": 1, + "divider": 15, + "frequencies": 2, + "MHz": 14, + "clock.": 6, + "Ben": 1, + "Simpson.": 1, + "examples": 1, + "Mark": 5, + "Wolfe.": 1, + "bcm2835_gpio_set_multi": 2, + "bcm2835_gpio_clr_multi": 2, + "bcm2835_gpio_write_multi": 4, + "mask": 20, + "once.": 1, + "Requested": 2, + "Sebastian": 2, + "Loncar.": 2, + "bcm2835_gpio_write_mask.": 1, + "Changes": 1, + "timer": 2, + "counter": 1, + "clock_gettime": 1, + "improved": 1, + "accuracy.": 1, + "No": 2, + "lrt": 1, + "now.": 1, + "Contributed": 1, + "van": 1, + "Vught.": 1, + "Removed": 1, + "inlines": 1, + "patch": 1, + "don": 1, + "seem": 1, + "work": 1, + "everywhere.": 1, + "olly.": 1, + "Patch": 2, + "Dootson": 2, + "/dev/mem": 4, + "granted.": 1, + "susceptible": 1, + "bit": 19, + "overruns.": 1, + "courtesy": 1, + "Jeremy": 1, + "Mortis.": 1, + "BCM2835_GPFEN0": 2, + "broke": 1, + "ability": 1, + "falling": 4, + "edge": 8, + "events.": 1, + "Dootson.": 2, + "bcm2835_i2c_set_baudrate": 2, + "bcm2835_i2c_read_register_rs.": 1, + "bcm2835_i2c_read": 4, + "bcm2835_i2c_write": 4, + "fix": 1, + "ocasional": 1, + "reads": 2, + "completing.": 1, + "Patched": 1, + "atched": 1, + "his": 1, + "submitted": 1, + "load": 1, + "processes.": 1, + "Updated": 1, + "distribution": 1, + "details": 1, + "airspayce.com": 1, + "missing": 1, + "unmapmem": 1, + "pads": 7, + "leak.": 1, + "Hartmut": 1, + "Henkel.": 1, + "Mike": 1, + "McCauley": 1, + "mikem@airspayce.com": 1, + "DO": 1, + "NOT": 3, + "CONTACT": 1, + "THE": 2, + "AUTHOR": 1, + "DIRECTLY": 1, + "USE": 1, + "LISTS": 1, + "BCM2835_H": 3, + "": 2, + "defgroup": 7, + "constants": 1, + "Constants": 1, + "passing": 1, + "values": 3, + "here": 1, + "@": 14, + "HIGH": 12, + "volts": 2, + "pin.": 21, + "Speed": 1, + "core": 1, + "clock": 21, + "core_clk": 1, + "BCM2835_CORE_CLK_HZ": 1, + "Base": 17, + "Address": 10, + "BCM2835_PERI_BASE": 9, + "System": 10, + "Timer": 9, + "BCM2835_ST_BASE": 1, + "BCM2835_GPIO_PADS": 2, + "Clock/timer": 1, + "BCM2835_CLOCK_BASE": 1, + "BCM2835_GPIO_BASE": 6, + "BCM2835_SPI0_BASE": 1, + "BSC0": 2, + "BCM2835_BSC0_BASE": 1, + "PWM": 2, + "BCM2835_GPIO_PWM": 1, + "C000": 1, + "BSC1": 2, + "BCM2835_BSC1_BASE": 1, + "ST": 1, + "registers.": 10, + "Available": 8, + "bcm2835_init": 11, + "volatile": 13, + "*bcm2835_st": 1, + "*bcm2835_gpio": 1, + "*bcm2835_pwm": 1, + "*bcm2835_clk": 1, + "PADS": 1, + "*bcm2835_pads": 1, + "*bcm2835_spi0": 1, + "*bcm2835_bsc0": 1, + "*bcm2835_bsc1": 1, + "Size": 2, + "BCM2835_PAGE_SIZE": 1, + "*1024": 2, + "BCM2835_BLOCK_SIZE": 1, + "offsets": 2, + "BCM2835_GPIO_BASE.": 1, + "Offsets": 1, + "into": 6, + "bytes": 29, + "per": 3, + "Register": 1, + "View": 1, + "BCM2835_GPFSEL0": 1, + "Function": 8, + "BCM2835_GPFSEL1": 1, + "BCM2835_GPFSEL2": 1, + "BCM2835_GPFSEL3": 1, + "BCM2835_GPFSEL4": 1, + "BCM2835_GPFSEL5": 1, + "BCM2835_GPSET0": 1, + "Output": 6, + "Set": 2, + "BCM2835_GPSET1": 1, + "BCM2835_GPCLR0": 1, + "BCM2835_GPCLR1": 1, + "BCM2835_GPLEV0": 1, + "Level": 2, + "BCM2835_GPLEV1": 1, + "BCM2835_GPEDS0": 1, + "Event": 11, + "Detect": 35, + "Status": 6, + "BCM2835_GPEDS1": 1, + "BCM2835_GPREN0": 1, + "Rising": 8, + "Edge": 16, + "Enable": 38, + "BCM2835_GPREN1": 1, + "Falling": 8, + "BCM2835_GPFEN1": 1, + "BCM2835_GPHEN0": 1, + "High": 4, + "BCM2835_GPHEN1": 1, + "BCM2835_GPLEN0": 1, + "Low": 5, + "BCM2835_GPLEN1": 1, + "BCM2835_GPAREN0": 1, + "Async.": 4, + "BCM2835_GPAREN1": 1, + "BCM2835_GPAFEN0": 1, + "BCM2835_GPAFEN1": 1, + "BCM2835_GPPUD": 1, + "Pull": 11, + "up/down": 10, + "BCM2835_GPPUDCLK0": 1, + "Clock": 11, + "BCM2835_GPPUDCLK1": 1, + "bcm2835PortFunction": 1, + "Port": 1, + "select": 9, + "modes": 1, + "bcm2835_gpio_fsel": 2, + "BCM2835_GPIO_FSEL_INPT": 1, + "b000": 1, + "Input": 2, + "BCM2835_GPIO_FSEL_OUTP": 1, + "b001": 1, + "BCM2835_GPIO_FSEL_ALT0": 1, + "b100": 1, + "Alternate": 6, + "BCM2835_GPIO_FSEL_ALT1": 1, + "b101": 1, + "BCM2835_GPIO_FSEL_ALT2": 1, + "b110": 1, + "BCM2835_GPIO_FSEL_ALT3": 1, + "b111": 2, + "BCM2835_GPIO_FSEL_ALT4": 1, + "b011": 1, + "BCM2835_GPIO_FSEL_ALT5": 1, + "b010": 1, + "BCM2835_GPIO_FSEL_MASK": 1, + "bits": 11, + "bcm2835FunctionSelect": 2, + "bcm2835PUDControl": 4, + "Pullup/Pulldown": 1, + "bcm2835_gpio_pud": 5, + "BCM2835_GPIO_PUD_OFF": 1, + "b00": 1, + "Off": 3, + "pull": 1, + "BCM2835_GPIO_PUD_DOWN": 1, + "b01": 1, + "Down": 1, + "BCM2835_GPIO_PUD_UP": 1, + "b10": 1, + "Up": 1, + "Pad": 11, + "BCM2835_PADS_GPIO_0_27": 1, + "BCM2835_PADS_GPIO_28_45": 1, + "BCM2835_PADS_GPIO_46_53": 1, + "Control": 6, + "masks": 1, + "BCM2835_PAD_PASSWRD": 1, + "Password": 1, + "BCM2835_PAD_SLEW_RATE_UNLIMITED": 1, + "Slew": 1, + "rate": 3, + "unlimited": 1, + "BCM2835_PAD_HYSTERESIS_ENABLED": 1, + "Hysteresis": 1, + "BCM2835_PAD_DRIVE_2mA": 1, + "mA": 8, + "drive": 8, + "BCM2835_PAD_DRIVE_4mA": 1, + "BCM2835_PAD_DRIVE_6mA": 1, + "BCM2835_PAD_DRIVE_8mA": 1, + "BCM2835_PAD_DRIVE_10mA": 1, + "BCM2835_PAD_DRIVE_12mA": 1, + "BCM2835_PAD_DRIVE_14mA": 1, + "BCM2835_PAD_DRIVE_16mA": 1, + "bcm2835PadGroup": 4, + "specification": 1, + "bcm2835_gpio_pad": 2, + "BCM2835_PAD_GROUP_GPIO_0_27": 1, + "BCM2835_PAD_GROUP_GPIO_28_45": 1, + "BCM2835_PAD_GROUP_GPIO_46_53": 1, + "Numbers": 1, + "Here": 1, + "terms": 4, + "numbers.": 1, + "These": 6, + "requiring": 1, + "bin": 1, + "connected": 1, + "adopt": 1, + "slightly": 1, + "pinouts": 1, + "these": 1, + "RPI_V2_*.": 1, + "At": 1, + "bootup": 1, + "UART0_TXD": 3, + "UART0_RXD": 3, + "ie": 3, + "alt0": 1, + "respectively": 1, + "dedicated": 1, + "cant": 1, + "controlled": 1, + "independently": 1, + "RPI_GPIO_P1_03": 6, + "RPI_GPIO_P1_05": 6, + "RPI_GPIO_P1_07": 1, + "RPI_GPIO_P1_08": 1, + "defaults": 4, + "alt": 4, + "RPI_GPIO_P1_10": 1, + "RPI_GPIO_P1_11": 1, + "RPI_GPIO_P1_12": 1, + "RPI_GPIO_P1_13": 1, + "RPI_GPIO_P1_15": 1, + "RPI_GPIO_P1_16": 1, + "RPI_GPIO_P1_18": 1, + "RPI_GPIO_P1_19": 1, + "RPI_GPIO_P1_21": 1, + "RPI_GPIO_P1_22": 1, + "RPI_GPIO_P1_23": 1, + "RPI_GPIO_P1_24": 1, + "RPI_GPIO_P1_26": 1, + "RPI_V2_GPIO_P1_03": 1, + "RPI_V2_GPIO_P1_05": 1, + "RPI_V2_GPIO_P1_07": 1, + "RPI_V2_GPIO_P1_08": 1, + "RPI_V2_GPIO_P1_10": 1, + "RPI_V2_GPIO_P1_11": 1, + "RPI_V2_GPIO_P1_12": 1, + "RPI_V2_GPIO_P1_13": 1, + "RPI_V2_GPIO_P1_15": 1, + "RPI_V2_GPIO_P1_16": 1, + "RPI_V2_GPIO_P1_18": 1, + "RPI_V2_GPIO_P1_19": 1, + "RPI_V2_GPIO_P1_21": 1, + "RPI_V2_GPIO_P1_22": 1, + "RPI_V2_GPIO_P1_23": 1, + "RPI_V2_GPIO_P1_24": 1, + "RPI_V2_GPIO_P1_26": 1, + "RPI_V2_GPIO_P5_03": 1, + "RPI_V2_GPIO_P5_04": 1, + "RPI_V2_GPIO_P5_05": 1, + "RPI_V2_GPIO_P5_06": 1, + "RPiGPIOPin": 1, + "BCM2835_SPI0_CS": 1, + "Master": 12, + "BCM2835_SPI0_FIFO": 1, + "TX": 5, + "RX": 7, + "FIFOs": 1, + "BCM2835_SPI0_CLK": 1, + "Divider": 2, + "BCM2835_SPI0_DLEN": 1, + "Data": 9, + "Length": 2, + "BCM2835_SPI0_LTOH": 1, + "LOSSI": 1, + "TOH": 1, + "BCM2835_SPI0_DC": 1, + "DMA": 3, + "DREQ": 1, + "Controls": 1, + "BCM2835_SPI0_CS_LEN_LONG": 1, + "Long": 1, + "Lossi": 2, + "DMA_LEN": 1, + "BCM2835_SPI0_CS_DMA_LEN": 1, + "BCM2835_SPI0_CS_CSPOL2": 1, + "Chip": 9, + "Polarity": 5, + "BCM2835_SPI0_CS_CSPOL1": 1, + "BCM2835_SPI0_CS_CSPOL0": 1, + "BCM2835_SPI0_CS_RXF": 1, + "RXF": 2, + "FIFO": 25, + "Full": 1, + "BCM2835_SPI0_CS_RXR": 1, + "RXR": 3, + "Reading": 1, + "full": 9, + "BCM2835_SPI0_CS_TXD": 1, + "TXD": 2, + "accept": 2, + "BCM2835_SPI0_CS_RXD": 1, + "RXD": 2, + "contains": 2, + "BCM2835_SPI0_CS_DONE": 1, + "Done": 3, + "transfer": 8, + "BCM2835_SPI0_CS_TE_EN": 1, + "Unused": 2, + "BCM2835_SPI0_CS_LMONO": 1, + "BCM2835_SPI0_CS_LEN": 1, + "LEN": 1, + "LoSSI": 1, + "BCM2835_SPI0_CS_REN": 1, + "REN": 1, + "Read": 3, + "BCM2835_SPI0_CS_ADCS": 1, + "ADCS": 1, + "Automatically": 1, + "Deassert": 1, + "BCM2835_SPI0_CS_INTR": 1, + "INTR": 1, + "Interrupt": 5, + "BCM2835_SPI0_CS_INTD": 1, + "INTD": 1, + "BCM2835_SPI0_CS_DMAEN": 1, + "DMAEN": 1, + "BCM2835_SPI0_CS_TA": 1, + "Transfer": 3, + "Active": 2, + "BCM2835_SPI0_CS_CSPOL": 1, + "BCM2835_SPI0_CS_CLEAR": 1, + "BCM2835_SPI0_CS_CLEAR_RX": 1, + "BCM2835_SPI0_CS_CLEAR_TX": 1, + "BCM2835_SPI0_CS_CPOL": 1, + "BCM2835_SPI0_CS_CPHA": 1, + "Phase": 1, + "BCM2835_SPI0_CS_CS": 1, + "bcm2835SPIBitOrder": 3, + "Bit": 1, + "Specifies": 5, + "ordering": 4, + "bcm2835_spi_setBitOrder": 2, + "BCM2835_SPI_BIT_ORDER_LSBFIRST": 1, + "LSB": 1, + "First": 2, + "BCM2835_SPI_BIT_ORDER_MSBFIRST": 1, + "MSB": 1, + "Specify": 2, + "bcm2835_spi_setDataMode": 2, + "BCM2835_SPI_MODE0": 1, + "CPOL": 4, + "CPHA": 4, + "BCM2835_SPI_MODE1": 1, + "BCM2835_SPI_MODE2": 1, + "BCM2835_SPI_MODE3": 1, + "bcm2835SPIMode": 2, + "bcm2835SPIChipSelect": 3, + "BCM2835_SPI_CS0": 1, + "BCM2835_SPI_CS1": 1, + "BCM2835_SPI_CS2": 1, + "CS1": 1, + "CS2": 1, + "asserted": 3, + "BCM2835_SPI_CS_NONE": 1, + "CS": 5, + "yourself": 1, + "bcm2835SPIClockDivider": 3, + "generate": 2, + "Figures": 1, + "below": 1, + "period": 1, + "frequency.": 1, + "divided": 2, + "nominal": 2, + "reported": 2, + "contrary": 1, + "shown": 1, + "confirmed": 1, + "BCM2835_SPI_CLOCK_DIVIDER_65536": 1, + "us": 12, + "kHz": 10, + "BCM2835_SPI_CLOCK_DIVIDER_32768": 1, + "BCM2835_SPI_CLOCK_DIVIDER_16384": 1, + "BCM2835_SPI_CLOCK_DIVIDER_8192": 1, + "/51757813kHz": 1, + "BCM2835_SPI_CLOCK_DIVIDER_4096": 1, + "BCM2835_SPI_CLOCK_DIVIDER_2048": 1, + "BCM2835_SPI_CLOCK_DIVIDER_1024": 1, + "BCM2835_SPI_CLOCK_DIVIDER_512": 1, + "BCM2835_SPI_CLOCK_DIVIDER_256": 1, + "BCM2835_SPI_CLOCK_DIVIDER_128": 1, + "ns": 9, + "BCM2835_SPI_CLOCK_DIVIDER_64": 1, + "BCM2835_SPI_CLOCK_DIVIDER_32": 1, + "BCM2835_SPI_CLOCK_DIVIDER_16": 1, + "BCM2835_SPI_CLOCK_DIVIDER_8": 1, + "BCM2835_SPI_CLOCK_DIVIDER_4": 1, + "BCM2835_SPI_CLOCK_DIVIDER_2": 1, + "fastest": 1, + "BCM2835_SPI_CLOCK_DIVIDER_1": 1, + "same": 3, + "/65536": 1, + "BCM2835_BSC_C": 1, + "BCM2835_BSC_S": 1, + "BCM2835_BSC_DLEN": 1, + "BCM2835_BSC_A": 1, + "Slave": 1, + "BCM2835_BSC_FIFO": 1, + "BCM2835_BSC_DIV": 1, + "BCM2835_BSC_DEL": 1, + "Delay": 4, + "BCM2835_BSC_CLKT": 1, + "Stretch": 2, + "Timeout": 2, + "BCM2835_BSC_C_I2CEN": 1, + "BCM2835_BSC_C_INTR": 1, + "BCM2835_BSC_C_INTT": 1, + "BCM2835_BSC_C_INTD": 1, + "DONE": 2, + "BCM2835_BSC_C_ST": 1, + "Start": 4, + "BCM2835_BSC_C_CLEAR_1": 1, + "BCM2835_BSC_C_CLEAR_2": 1, + "BCM2835_BSC_C_READ": 1, + "BCM2835_BSC_S_CLKT": 1, + "stretch": 1, + "BCM2835_BSC_S_ERR": 1, + "ACK": 1, + "BCM2835_BSC_S_RXF": 1, + "BCM2835_BSC_S_TXE": 1, + "TXE": 1, + "BCM2835_BSC_S_RXD": 1, + "BCM2835_BSC_S_TXD": 1, + "BCM2835_BSC_S_RXR": 1, + "BCM2835_BSC_S_TXW": 1, + "TXW": 1, + "writing": 2, + "BCM2835_BSC_S_DONE": 1, + "BCM2835_BSC_S_TA": 1, + "BCM2835_BSC_FIFO_SIZE": 1, + "bcm2835I2CClockDivider": 3, + "BCM2835_I2C_CLOCK_DIVIDER_2500": 1, + "BCM2835_I2C_CLOCK_DIVIDER_626": 1, + "BCM2835_I2C_CLOCK_DIVIDER_150": 1, + "reset": 1, + "BCM2835_I2C_CLOCK_DIVIDER_148": 1, + "bcm2835I2CReasonCodes": 5, + "reason": 4, + "codes": 1, + "BCM2835_I2C_REASON_OK": 1, + "Success": 1, + "BCM2835_I2C_REASON_ERROR_NACK": 1, + "Received": 4, + "NACK": 1, + "BCM2835_I2C_REASON_ERROR_CLKT": 1, + "BCM2835_I2C_REASON_ERROR_DATA": 1, + "sent": 1, + "BCM2835_ST_CS": 1, + "Control/Status": 1, + "BCM2835_ST_CLO": 1, + "Counter": 4, + "Lower": 2, + "BCM2835_ST_CHI": 1, + "Upper": 1, + "BCM2835_PWM_CONTROL": 1, + "BCM2835_PWM_STATUS": 1, + "BCM2835_PWM0_RANGE": 1, + "BCM2835_PWM0_DATA": 1, + "BCM2835_PWM1_RANGE": 1, + "BCM2835_PWM1_DATA": 1, + "BCM2835_PWMCLK_CNTL": 1, + "BCM2835_PWMCLK_DIV": 1, + "BCM2835_PWM1_MS_MODE": 1, + "Run": 4, + "MS": 2, + "BCM2835_PWM1_USEFIFO": 1, + "BCM2835_PWM1_REVPOLAR": 1, + "Reverse": 2, + "polarity": 3, + "BCM2835_PWM1_OFFSTATE": 1, + "Ouput": 2, + "BCM2835_PWM1_REPEATFF": 1, + "Repeat": 2, + "empty": 2, + "BCM2835_PWM1_SERIAL": 1, + "serial": 2, + "BCM2835_PWM1_ENABLE": 1, + "Channel": 2, + "BCM2835_PWM0_MS_MODE": 1, + "BCM2835_PWM0_USEFIFO": 1, + "BCM2835_PWM0_REVPOLAR": 1, + "BCM2835_PWM0_OFFSTATE": 1, + "BCM2835_PWM0_REPEATFF": 1, + "BCM2835_PWM0_SERIAL": 1, + "BCM2835_PWM0_ENABLE": 1, + "init": 2, + "Library": 1, + "management": 1, + "intialise": 1, + "Initialise": 1, + "opening": 1, + "getting": 1, + "successfully": 1, + "bcm2835_set_debug": 2, + "fails": 1, + "returning": 1, + "crashes": 1, + "failures.": 1, + "Prints": 1, + "messages": 1, + "stderr": 1, + "case": 34, + "errors.": 1, + "successful": 2, + "Close": 1, + "deallocating": 1, + "prevents": 1, + "makes": 1, + "out": 5, + "what": 2, + "would": 2, + "causes": 1, + "normal": 1, + "Call": 2, + "param": 72, + "uint8_t": 43, + "lowlevel": 2, + "provide": 1, + "generally": 1, + "Reads": 5, + "done": 3, + "twice": 3, + "therefore": 6, + "always": 3, + "precautions": 3, + "correct": 3, + "paddr": 10, + "from.": 6, + "etc.": 5, + "uint32_t*": 7, + "without": 3, + "occurred": 2, + "since.": 2, + "bcm2835_peri_read_nb": 1, + "Writes": 2, + "bcm2835_peri_write_nb": 1, + "Alters": 1, + "regsiter.": 1, + "valu": 1, + "alters": 1, + "deines": 1, + "according": 1, + "value.": 2, + "All": 1, + "unaffected.": 1, + "subset": 1, + "register.": 3, + "masked": 2, + "mask.": 1, + "Bitmask": 1, + "altered": 1, + "gpio": 1, + "interface.": 3, + "state.": 1, + "configures": 1, + "RPI_GPIO_P1_*": 21, + "Mode": 1, + "BCM2835_GPIO_FSEL_*": 1, + "specified": 27, + "HIGH.": 2, + "bcm2835_gpio_write": 3, + "bcm2835_gpio_set": 1, + "LOW.": 5, + "bcm2835_gpio_clr": 1, + "Mask": 6, + "affect.": 4, + "eg": 5, + "either": 4, + "Works": 1, + "output.": 1, + "bcm2835_gpio_lev": 1, + "Status.": 7, + "Tests": 1, + "detected": 7, + "requested": 1, + "bcm2835_gpio_set_eds": 2, + "status": 1, + "th": 1, + "bcm2835_gpio_eds": 1, + "effect": 3, + "clearing": 1, + "flag.": 1, + "afer": 1, + "seeing": 1, + "rising": 3, + "sets": 8, + "GPRENn": 2, + "synchronous": 2, + "detection.": 2, + "signal": 4, + "sampled": 6, + "looking": 2, + "pattern": 2, + "signal.": 2, + "suppressing": 2, + "glitches.": 2, + "Disable": 6, + "Asynchronous": 6, + "incoming": 2, + "As": 2, + "edges": 2, + "very": 2, + "duration": 2, + "detected.": 2, + "bcm2835_gpio_pudclk": 3, + "resistor": 1, + "However": 3, + "convenient": 2, + "bcm2835_gpio_set_pud": 4, + "pud": 4, + "desired": 7, + "One": 3, + "BCM2835_GPIO_PUD_*": 2, + "Clocks": 3, + "earlier": 1, + "group.": 2, + "BCM2835_PAD_GROUP_GPIO_*": 2, + "BCM2835_PAD_*": 2, + "bcm2835_gpio_set_pad": 1, + "Delays": 3, + "milliseconds.": 1, + "Uses": 4, + "CPU": 5, + "until": 1, + "up.": 1, + "mercy": 2, + "From": 2, + "interval": 4, + "req": 2, + "exact": 2, + "multiple": 2, + "granularity": 2, + "rounded": 2, + "multiple.": 2, + "Furthermore": 2, + "sleep": 2, + "completes": 2, + "still": 3, + "becomes": 2, + "again": 2, + "thread.": 2, + "millis": 2, + "milliseconds": 1, + "microseconds.": 2, + "busy": 2, + "wait": 2, + "timers": 1, + "less": 1, + "microseconds": 6, + "Timer.": 1, + "RaspberryPi": 1, + "Your": 1, + "mileage": 1, + "vary.": 1, + "required": 2, + "bcm2835_gpio_write_mask": 1, + "clocking": 1, + "spi": 1, + "let": 2, + "device.": 2, + "operations.": 4, + "Forces": 2, + "ALT0": 2, + "funcitons": 1, + "End": 2, + "INPUT": 2, + "behaviour.": 2, + "NOTE": 1, + "effect.": 1, + "SPI0.": 1, + "Defaults": 1, + "BCM2835_SPI_BIT_ORDER_*": 1, + "speed.": 2, + "BCM2835_SPI_CLOCK_DIVIDER_*": 1, + "bcm2835_spi_setClockDivider": 1, + "uint16_t": 2, + "polariy": 1, + "phase": 1, + "BCM2835_SPI_MODE*": 1, + "bcm2835_spi_transfer": 5, + "made": 1, + "during": 4, + "transfer.": 4, + "cs": 4, + "activate": 1, + "slave.": 7, + "BCM2835_SPI_CS*": 1, + "bcm2835_spi_chipSelect": 4, + "occurs": 1, + "active.": 1, + "transfers": 1, + "happening": 1, + "complement": 1, + "inactive": 1, + "affect": 1, + "active": 3, + "Whether": 1, + "bcm2835_spi_setChipSelectPolarity": 1, + "Transfers": 6, + "byte": 6, + "Asserts": 3, + "simultaneously": 3, + "clocks": 2, + "MISO.": 2, + "Returns": 2, + "polled": 2, + "Peripherls": 2, + "slave": 8, + "placed": 1, + "rbuf.": 1, + "rbuf": 3, + "tbuf": 4, + "send.": 5, + "put": 1, + "Number": 8, + "send/received": 2, + "bcm2835_spi_transfernb.": 1, + "replaces": 1, + "transmitted": 1, + "buffer.": 1, + "replace": 1, + "eh": 2, + "bcm2835_spi_writenb": 1, + "i2c": 1, + "Philips": 1, + "bus/interface": 1, + "January": 1, + "SCL": 2, + "bcm2835_i2c_end": 3, + "bcm2835_i2c_begin": 1, + "address.": 2, + "addr": 2, + "bcm2835_i2c_setSlaveAddress": 4, + "BCM2835_I2C_CLOCK_DIVIDER_*": 1, + "bcm2835_i2c_setClockDivider": 2, + "converting": 1, + "baudrate": 4, + "parameter": 1, + "equivalent": 1, + "divider.": 1, + "standard": 2, + "khz": 1, + "corresponds": 1, + "its": 1, + "driver.": 1, + "Of": 1, + "nothing": 1, + "driver": 1, + "receive.": 2, + "received.": 2, + "Allows": 2, + "slaves": 1, + "require": 3, + "repeated": 1, + "prior": 1, + "stop": 1, + "set.": 1, + "popular": 1, + "MPL3115A2": 1, + "pressure": 1, + "temperature": 1, + "sensor.": 1, + "Note": 1, + "combined": 1, + "better": 1, + "choice.": 1, + "Will": 1, + "regaddr": 2, + "bcm2835_i2c_read_register_rs": 1, + "st": 1, + "delays": 1, + "Counter.": 1, + "bcm2835_st_read": 1, + "offset.": 1, + "offset_micros": 2, + "Offset": 1, + "bcm2835_st_delay": 1, + "@example": 5, + "blink.c": 1, + "Blinks": 1, + "off": 1, + "input.c": 1, + "event.c": 1, + "Shows": 3, + "how": 3, + "spi.c": 1, + "spin.c": 1, + "rpc_init": 1, + "rpc_server_loop": 1, + "ENV_H": 3, + "": 1, + "Q_OBJECT": 1, + "*instance": 1, + "DEFAULT_DELIMITER": 1, + "CsvStreamer": 5, + "ofstream": 1, + "File": 1, + "row_buffer": 1, + "row": 12, + "flushed/written": 1, + "columns": 2, + "rows": 3, + "records": 2, + "including": 2, + "delimiter": 2, + "Delimiter": 1, + "comma": 2, + "sanitize": 1, + "ready": 1, + "Empty": 1, + "CSV": 4, + "streamer...": 1, + "Same": 1, + "...": 1, + "Opens": 3, + "path/name": 3, + "Ensures": 1, + "closed": 1, + "saved": 1, + "delimiting": 1, + "add_field": 1, + "adds": 1, + "field": 5, + "save_fields": 1, + "save": 1, + "writes": 2, + "append": 8, + "Appends": 5, + "quoted": 1, + "leading/trailing": 1, + "spaces": 3, + "trimmed": 1, + "Like": 1, + "specify": 1, + "keep": 1, + "writeln": 1, + "Flushes": 1, + "Saves": 1, + "closes": 1, + "field_count": 1, + "Gets": 2, + "row_count": 1, + "": 2, + "Gui": 1, + "": 1, + "": 1, + "": 1, + "EC_KEY_regenerate_key": 1, + "*eckey": 2, + "BIGNUM": 9, + "*priv_key": 1, + "ok": 3, + "BN_CTX": 2, + "*ctx": 2, + "EC_POINT": 4, + "*pub_key": 1, + "eckey": 7, + "EC_GROUP": 2, + "*group": 2, + "EC_KEY_get0_group": 2, + "ctx": 26, + "BN_CTX_new": 2, + "err": 26, + "pub_key": 6, + "EC_POINT_new": 4, + "EC_POINT_mul": 3, + "priv_key": 2, + "EC_KEY_set_private_key": 1, + "EC_KEY_set_public_key": 2, + "EC_POINT_free": 4, + "BN_CTX_free": 2, + "ECDSA_SIG_recover_key_GFp": 3, + "ECDSA_SIG": 3, + "*ecsig": 1, + "msglen": 2, + "recid": 3, + "ret": 24, + "*x": 1, + "*e": 1, + "*order": 1, + "*sor": 1, + "*eor": 1, + "*field": 1, + "*R": 1, + "*O": 1, + "*Q": 1, + "*rr": 1, + "*zero": 1, + "BN_CTX_start": 1, + "BN_CTX_get": 8, + "EC_GROUP_get_order": 1, + "BN_copy": 1, + "BN_mul_word": 1, + "BN_add": 1, + "ecsig": 3, + "EC_GROUP_get_curve_GFp": 1, + "BN_cmp": 1, + "R": 6, + "EC_POINT_set_compressed_coordinates_GFp": 1, + "O": 5, + "EC_POINT_is_at_infinity": 1, + "Q": 5, + "EC_GROUP_get_degree": 1, + "BN_bin2bn": 3, + "msg": 1, + "*msglen": 1, + "BN_rshift": 1, + "BN_zero": 1, + "BN_mod_sub": 1, + "rr": 4, + "BN_mod_inverse": 1, + "sor": 3, + "BN_mod_mul": 2, + "eor": 3, + "BN_CTX_end": 1, + "EC_KEY_set_conv_form": 1, + "POINT_CONVERSION_COMPRESSED": 1, + "EC_KEY_new_by_curve_name": 2, + "NID_secp256k1": 2, + "throw": 4, + "EC_KEY_dup": 1, + "b.pkey": 2, + "b.fSet": 2, + "EC_KEY_copy": 1, + "nSize": 2, + "vchSig.clear": 2, + "vchSig.resize": 2, + "Shrink": 1, + "fit": 1, + "actual": 1, + "fOk": 3, + "*sig": 2, + "ECDSA_do_sign": 1, + "sig": 11, + "nBitsR": 3, + "BN_num_bits": 2, + "nBitsS": 3, + "nRecId": 4, + "<4;>": 1, + "keyRec": 5, + "BN_bn2bin": 2, + "/8": 2, + "ECDSA_SIG_free": 2, + "vchSig.size": 2, + "nV": 6, + "<27>": 1, + "ECDSA_SIG_new": 1, + "EC_KEY_free": 1, + "ECDSA_verify": 1, + "key.SetCompactSignature": 1, + "key.GetPubKey": 1, + "fCompr": 3, + "secret": 2, + "key2": 1, + "key2.SetSecret": 1, + "key2.GetPubKey": 1, + "smallPrime_t": 1, + "V8_DECLARE_ONCE": 1, + "init_once": 2, + "LazyMutex": 1, + "entropy_mutex": 1, + "LAZY_MUTEX_INITIALIZER": 1, + "entropy_source": 4, + "FlagList": 1, + "EnforceFlagImplications": 1, + "Isolate": 9, + "CurrentPerIsolateThreadData": 4, + "EnterDefaultIsolate": 1, + "thread_id": 1, + ".Equals": 1, + "ThreadId": 1, + "Current": 5, + "IsDefaultIsolate": 1, + "ElementsAccessor": 2, + "LOperand": 2, + "TearDownCaches": 1, + "RegisteredExtension": 1, + "UnregisterAll": 1, + "OS": 3, + "seed_random": 2, + "FLAG_random_seed": 2, + "val": 3, + "ScopedLock": 1, + "entropy_mutex.Pointer": 1, + "random": 1, + "random_base": 3, + "xFFFF": 2, + "FFFF": 1, + "StackFrame": 1, + "IsGlobalContext": 1, + "ByteArray*": 1, + "seed": 2, + "random_seed": 1, + "": 1, + "GetDataStartAddress": 1, + "private_random_seed": 1, + "FLAG_use_idle_notification": 1, + "HEAP": 1, + "Lazy": 1, + "init.": 1, + "Add": 1, + "Remove": 1, + "HandleScopeImplementer*": 1, + "handle_scope_implementer": 5, + "CallDepthIsZero": 1, + "IncrementCallDepth": 1, + "DecrementCallDepth": 1, + "union": 1, + "double_value": 1, + "uint64_t_value": 1, + "double_int_union": 2, + "random_bits": 2, + "binary_million": 3, + "r.double_value": 3, + "r.uint64_t_value": 1, + "HeapNumber": 1, + "set_value": 1, + "SetUp": 4, + "FLAG_crankshaft": 1, + "Serializer": 1, + "SupportsCrankshaft": 1, + "PostSetUp": 1, + "RuntimeProfiler": 1, + "GlobalSetUp": 1, + "FLAG_stress_compaction": 1, + "FLAG_force_marking_deque_overflows": 1, + "FLAG_gc_global": 1, + "FLAG_max_new_space_size": 1, + "kPageSizeBits": 1, + "SetUpCaches": 1, + "SetUpJSCallerSavedCodeData": 1, + "SamplerRegistry": 1, + "ExternalReference": 1, + "CallOnce": 1, + "overflow": 1, + "NUM_TOKENS": 1, + "one_char_tokens": 2, + "ILLEGAL": 120, + "LPAREN": 2, + "RPAREN": 2, + "COMMA": 2, + "COLON": 2, + "SEMICOLON": 2, + "CONDITIONAL": 2, + "LBRACK": 2, + "RBRACK": 2, + "LBRACE": 2, + "RBRACE": 2, + "BIT_NOT": 2, + "": 1, + "next_.location.beg_pos": 3, + "next_.location.end_pos": 4, + "IsByteOrderMark": 2, + "xFEFF": 1, + "xFFFE": 1, + "start_position": 2, + "undo": 4, + "WHITESPACE": 6, + "LT": 2, + "switch": 3, + "LTE": 1, + "ASSIGN_SHL": 1, + "SHL": 1, + "GTE": 1, + "ASSIGN_SAR": 1, + "ASSIGN_SHR": 1, + "SHR": 1, + "SAR": 1, + "GT": 1, + "EQ_STRICT": 1, + "EQ": 1, + "ASSIGN": 1, + "NE_STRICT": 1, + "NE": 1, + "INC": 1, + "ASSIGN_ADD": 1, + "ADD": 1, + "DEC": 1, + "ASSIGN_SUB": 1, + "SUB": 1, + "ASSIGN_MUL": 1, + "MUL": 1, + "ASSIGN_MOD": 1, + "MOD": 1, + "ASSIGN_DIV": 1, + "DIV": 1, + "AND": 1, + "ASSIGN_BIT_AND": 1, + "BIT_AND": 1, + "OR": 1, + "ASSIGN_BIT_OR": 1, + "BIT_OR": 1, + "ASSIGN_BIT_XOR": 1, + "BIT_XOR": 1, + "IsDecimalDigit": 2, + "PERIOD": 1, + "EOS": 1, + "current_pos": 4, + "ASSERT_EQ": 1, + "IsCarriageReturn": 2, + "IsLineFeed": 2, + "fall": 2, + "xxx": 1, + "immediately": 1, + "octal": 1, + "escape": 1, + "quote": 3, + "consume": 2, + "X": 2, + "E": 3, + "l": 1, + "w": 1, + "keyword": 1, + "Unescaped": 1, + "in_character_class": 2, + "literal.Complete": 2, + "Q_OS_LINUX": 2, + "": 1, + "QT_VERSION": 1, + "QT_VERSION_CHECK": 1, + "Something": 1, + "wrong": 1, + "setup.": 1, + "mailing": 1, + "argc": 2, + "char**": 2, + "argv": 2, + "google_breakpad": 1, + "ExceptionHandler": 1, + "qInstallMsgHandler": 1, + "QApplication": 1, + "app": 1, + "STATIC_BUILD": 1, + "Q_INIT_RESOURCE": 2, + "WebKit": 1, + "InspectorBackendStub": 1, + "app.setWindowIcon": 1, + "QIcon": 1, + "app.setApplicationName": 1, + "app.setOrganizationName": 1, + "app.setOrganizationDomain": 1, + "app.setApplicationVersion": 1, + "PHANTOMJS_VERSION_STRING": 1, + "Phantom": 1, + "phantom": 1, + "phantom.execute": 1, + "app.exec": 1, + "phantom.returnValue": 1, + "GDSDBREADER_H": 3, + "": 1, + "GDS_DIR": 1, + "LEVEL_ONE": 1, + "LEVEL_TWO": 1, + "LEVEL_THREE": 1, + "dbDataStructure": 2, + "label": 1, + "quint32": 3, + "depth": 1, + "userIndex": 1, + "QByteArray": 1, + "COMPRESSED": 1, + "optimize": 1, + "ram": 1, + "decompressed": 1, + "quint64": 1, + "uniqueID": 1, + "QVector": 2, + "": 1, + "nextItems": 1, + "": 1, + "nextItemsIndices": 1, + "dbDataStructure*": 1, + "father": 1, + "fatherIndex": 1, + "noFatherRoot": 1, + "tell": 1, + "node": 1, + "root": 1, + "hasn": 1, + "argument": 1, + "overload.": 1, + "myclass.label": 2, + "myclass.depth": 2, + "myclass.userIndex": 2, + "qCompress": 2, + "myclass.data": 4, + "myclass.uniqueID": 2, + "myclass.nextItemsIndices": 2, + "myclass.fatherIndex": 2, + "myclass.noFatherRoot": 2, + "myclass.fileName": 2, + "myclass.firstLineData": 4, + "myclass.linesNumbers": 2, + "QDataStream": 2, + "myclass": 1, + "//Don": 1, + "qUncompress": 2, + "INTERNAL_SUPPRESS_PROTOBUF_FIELD_DEPRECATION": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "Person_descriptor_": 6, + "GeneratedMessageReflection*": 1, + "Person_reflection_": 4, + "FileDescriptor*": 1, + "DescriptorPool": 3, + "generated_pool": 2, + "FindFileByName": 1, + "GOOGLE_CHECK": 1, + "message_type": 1, + "Person_offsets_": 2, + "GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET": 3, + "GeneratedMessageReflection": 1, + "MessageFactory": 3, + "generated_factory": 1, + "GOOGLE_PROTOBUF_DECLARE_ONCE": 1, + "protobuf_AssignDescriptors_once_": 2, + "protobuf_AssignDescriptorsOnce": 4, + "GoogleOnceInit": 1, + "protobuf_RegisterTypes": 2, + "InternalRegisterGeneratedMessage": 1, + "already_here": 3, + "GOOGLE_PROTOBUF_VERIFY_VERSION": 1, + "InternalAddGeneratedFile": 1, + "InternalRegisterGeneratedFile": 1, + "OnShutdown": 1, + "StaticDescriptorInitializer_protocol_2dbuffer_2eproto": 2, + "static_descriptor_initializer_protocol_2dbuffer_2eproto_": 1, + "GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN": 2, + "GOOGLE_SAFE_CONCURRENT_WRITES_END": 2, + "*default_instance_": 1, + "xffu": 3, + "DO_": 4, + "EXPRESSION": 2, + "tag": 6, + "ReadTag": 1, + "WireFormatLite": 9, + "GetTagFieldNumber": 1, + "GetTagWireType": 2, + "WIRETYPE_LENGTH_DELIMITED": 1, + "ReadString": 1, + "WireFormat": 10, + "VerifyUTF8String": 3, + ".data": 3, + ".length": 3, + "PARSE": 1, + "handle_uninterpreted": 2, + "ExpectAtEnd": 1, + "WIRETYPE_END_GROUP": 1, + "SkipField": 1, + "SERIALIZE": 2, + "WriteString": 1, + "SerializeUnknownFields": 1, + "target": 6, + "WriteStringToArray": 1, + "SerializeUnknownFieldsToArray": 1, + "total_size": 5, + "StringSize": 1, + "ComputeUnknownFieldsSize": 1, + "GOOGLE_CHECK_NE": 2, + "dynamic_cast_if_available": 1, + "ReflectionOps": 1, + "Merge": 1, + "from._has_bits_": 1, + "from.has_name": 1, + "from.name": 1, + "from.unknown_fields": 1, + "swap": 3, + "_unknown_fields_.Swap": 1, + "metadata": 2, + "metadata.descriptor": 1, + "metadata.reflection": 1 }, "Shen": { "*": 47, @@ -62469,4722 +52724,1292 @@ "CharList": 2, "explode": 1 }, - "Slash": { - "<%>": 1, - "class": 11, - "Env": 1, - "def": 18, - "init": 4, - "memory": 3, - "ptr": 9, - "0": 3, - "ptr=": 1, - "current_value": 5, - "current_value=": 1, - "value": 1, - "AST": 4, - "Next": 1, - "eval": 10, - "env": 16, - "Prev": 1, - "Inc": 1, - "Dec": 1, - "Output": 1, - "print": 1, - "char": 5, - "Input": 1, - "Sequence": 2, - "nodes": 6, - "for": 2, - "node": 2, - "in": 2, - "Loop": 1, - "seq": 4, - "while": 1, - "Parser": 1, - "str": 2, - "chars": 2, - "split": 1, - "parse": 1, - "stack": 3, - "_parse_char": 2, - "if": 1, - "length": 1, - "1": 1, - "throw": 1, - "SyntaxError": 1, - "new": 2, - "unexpected": 2, - "end": 1, - "of": 1, - "input": 1, - "last": 1, - "switch": 1, - "<": 1, - "+": 1, - "-": 1, - ".": 1, - "[": 1, - "]": 1, - ")": 7, - ";": 6, - "}": 3, - "@stack.pop": 1, - "_add": 1, - "(": 6, - "Loop.new": 1, - "Sequence.new": 1, - "src": 2, - "File.read": 1, - "ARGV.first": 1, - "ast": 1, - "Parser.new": 1, - ".parse": 1, - "ast.eval": 1, - "Env.new": 1 - }, - "Slim": { - "doctype": 1, - "html": 2, - "head": 1, - "title": 1, - "Slim": 2, - "Examples": 1, - "meta": 2, - "name": 2, - "content": 2, - "author": 2, - "javascript": 1, - "alert": 1, - "(": 1, - ")": 1, - "body": 1, - "h1": 1, - "Markup": 1, - "examples": 1, - "#content": 1, - "p": 2, - "This": 1, - "example": 1, - "shows": 1, - "you": 2, - "how": 1, - "a": 1, - "basic": 1, - "file": 1, - "looks": 1, - "like.": 1, - "yield": 1, - "-": 3, - "unless": 1, - "items.empty": 1, - "table": 1, - "for": 1, - "item": 1, - "in": 1, - "items": 2, - "do": 1, - "tr": 1, - "td.name": 1, - "item.name": 1, - "td.price": 1, - "item.price": 1, - "else": 1, - "|": 2, - "No": 1, - "found.": 1, - "Please": 1, - "add": 1, - "some": 1, - "inventory.": 1, - "Thank": 1, - "div": 1, - "id": 1, - "render": 1, - "Copyright": 1, - "#": 2, - "{": 2, - "year": 1, - "}": 2 - }, - "Smalltalk": { - "Object": 1, - "subclass": 2, - "#Philosophers": 1, - "instanceVariableNames": 1, - "classVariableNames": 1, - "poolDictionaries": 1, - "category": 1, - "Philosophers": 3, - "class": 1, - "methodsFor": 2, - "new": 4, - "self": 25, - "shouldNotImplement": 1, - "quantity": 2, - "super": 1, - "initialize": 3, - "dine": 4, - "seconds": 2, - "(": 19, - "Delay": 3, - "forSeconds": 1, - ")": 19, - "wait.": 5, - "philosophers": 2, - "do": 1, - "[": 18, - "each": 5, - "|": 18, - "terminate": 1, - "]": 18, - ".": 16, - "size": 4, - "leftFork": 6, - "n": 11, - "forks": 5, - "at": 3, - "rightFork": 6, - "ifTrue": 1, - "ifFalse": 1, - "+": 1, - "eating": 3, - "Semaphore": 2, - "new.": 2, - "-": 1, - "timesRepeat": 1, - "signal": 1, - "randy": 3, - "Random": 1, - "to": 2, - "collect": 2, - "forMutualExclusion": 1, - "philosopher": 2, - "philosopherCode": 3, - "status": 8, - "n.": 2, - "printString": 1, - "true": 2, - "whileTrue": 1, - "Transcript": 5, - "nextPutAll": 5, - ";": 8, - "nl.": 5, - "forMilliseconds": 2, - "next": 2, + "Cuda": { + "#include": 2, + "": 1, + "": 1, + "__global__": 2, + "void": 3, + "vectorAdd": 2, + "(": 20, + "const": 2, + "float": 8, + "*A": 1, + "*B": 1, + "*C": 1, + "int": 14, + "numElements": 4, + ")": 20, + "{": 8, + "i": 5, + "blockDim.x": 3, "*": 2, - "critical": 1, - "signal.": 2, - "newProcess": 1, - "priority": 1, - "Processor": 1, - "userBackgroundPriority": 1, - "name": 1, - "resume": 1, - "yourself": 1, - "Koan": 1, - "TestBasic": 1, - "": 1, - "A": 1, - "collection": 1, - "of": 1, - "introductory": 1, - "tests": 2, - "testDeclarationAndAssignment": 1, - "declaration": 2, - "anotherDeclaration": 2, - "_": 1, - "expect": 10, - "fillMeIn": 10, - "toEqual": 10, - "declaration.": 1, - "anotherDeclaration.": 1, - "testEqualSignIsNotAnAssignmentOperator": 1, - "variableA": 6, - "variableB": 5, - "value": 2, - "variableB.": 2, - "testMultipleStatementsInASingleLine": 1, - "variableC": 2, - "variableA.": 1, - "variableC.": 1, - "testInequality": 1, - "testLogicalOr": 1, - "expression": 4, - "<": 2, - "expression.": 2, - "testLogicalAnd": 1, - "&": 1, - "testNot": 1, - "not.": 1, - "testSimpleChainMatches": 1, - "e": 11, - "eCtrl": 3, - "eventKey": 3, - "e.": 1, - "ctrl": 5, - "true.": 1, - "assert": 2, - "matches": 4, - "{": 4, - "}": 4, - "eCtrl.": 2, - "deny": 2, - "a": 1 - }, - "SourcePawn": { - "//#define": 1, - "DEBUG": 2, - "#if": 1, - "defined": 1, - "#define": 7, - "assert": 2, - "(": 233, - "%": 18, - ")": 234, - "if": 44, - "ThrowError": 2, - ";": 213, - "assert_msg": 2, - "#else": 1, - "#endif": 1, - "#pragma": 1, - "semicolon": 1, - "#include": 3, - "": 1, - "": 1, - "": 1, - "public": 21, - "Plugin": 1, - "myinfo": 1, - "{": 73, - "name": 7, - "author": 1, - "description": 1, - "version": 1, - "SOURCEMOD_VERSION": 1, - "url": 1, - "}": 71, - "new": 62, - "Handle": 51, - "g_Cvar_Winlimit": 5, - "INVALID_HANDLE": 56, - "g_Cvar_Maxrounds": 5, - "g_Cvar_Fraglimit": 6, - "g_Cvar_Bonusroundtime": 6, - "g_Cvar_StartTime": 3, - "g_Cvar_StartRounds": 5, - "g_Cvar_StartFrags": 3, - "g_Cvar_ExtendTimeStep": 2, - "g_Cvar_ExtendRoundStep": 2, - "g_Cvar_ExtendFragStep": 2, - "g_Cvar_ExcludeMaps": 3, - "g_Cvar_IncludeMaps": 2, - "g_Cvar_NoVoteMode": 2, - "g_Cvar_Extend": 2, - "g_Cvar_DontChange": 2, - "g_Cvar_EndOfMapVote": 8, - "g_Cvar_VoteDuration": 3, - "g_Cvar_RunOff": 2, - "g_Cvar_RunOffPercent": 2, - "g_VoteTimer": 7, - "g_RetryTimer": 4, - "g_MapList": 8, - "g_NominateList": 7, - "g_NominateOwners": 7, - "g_OldMapList": 7, - "g_NextMapList": 2, - "g_VoteMenu": 1, - "g_Extends": 2, - "g_TotalRounds": 7, - "bool": 10, - "g_HasVoteStarted": 7, - "g_WaitingForVote": 4, - "g_MapVoteCompleted": 9, - "g_ChangeMapAtRoundEnd": 6, - "g_ChangeMapInProgress": 4, - "g_mapFileSerial": 3, - "-": 12, - "g_NominateCount": 3, - "MapChange": 4, - "g_ChangeTime": 1, - "g_NominationsResetForward": 3, - "g_MapVoteStartedForward": 2, - "MAXTEAMS": 4, - "g_winCount": 4, - "[": 19, - "]": 19, - "VOTE_EXTEND": 1, - "VOTE_DONTCHANGE": 1, - "OnPluginStart": 1, - "LoadTranslations": 2, - "arraySize": 5, - "ByteCountToCells": 1, - "PLATFORM_MAX_PATH": 6, - "CreateArray": 5, - "CreateConVar": 15, - "_": 18, - "true": 26, - "RegAdminCmd": 2, - "Command_Mapvote": 2, - "ADMFLAG_CHANGEMAP": 2, - "Command_SetNextmap": 2, - "FindConVar": 4, - "||": 15, - "decl": 5, - "String": 11, - "folder": 5, - "GetGameFolderName": 1, - "sizeof": 6, - "strcmp": 3, - "HookEvent": 6, - "Event_TeamPlayWinPanel": 3, - "Event_TFRestartRound": 2, - "else": 5, - "Event_RoundEnd": 3, - "Event_PlayerDeath": 2, - "AutoExecConfig": 1, - "//Change": 1, - "the": 5, - "mp_bonusroundtime": 1, - "max": 1, - "so": 1, - "that": 2, - "we": 2, - "have": 2, - "time": 9, - "to": 4, - "display": 2, - "vote": 6, - "//If": 1, - "you": 1, - "a": 1, - "during": 2, - "bonus": 2, - "good": 1, - "defaults": 1, - "are": 1, - "duration": 1, - "and": 1, - "mp_bonustime": 1, - "SetConVarBounds": 1, - "ConVarBound_Upper": 1, - "CreateGlobalForward": 2, - "ET_Ignore": 2, - "Param_String": 1, - "Param_Cell": 1, - "APLRes": 1, - "AskPluginLoad2": 1, - "myself": 1, - "late": 1, - "error": 1, - "err_max": 1, - "RegPluginLibrary": 1, - "CreateNative": 9, - "Native_NominateMap": 1, - "Native_RemoveNominationByMap": 1, - "Native_RemoveNominationByOwner": 1, - "Native_InitiateVote": 1, - "Native_CanVoteStart": 2, - "Native_CheckVoteDone": 2, - "Native_GetExcludeMapList": 2, - "Native_GetNominatedMapList": 2, - "Native_EndOfMapVoteEnabled": 2, - "return": 23, - "APLRes_Success": 1, - "OnConfigsExecuted": 1, - "ReadMapList": 1, - "MAPLIST_FLAG_CLEARARRAY": 1, - "|": 1, - "MAPLIST_FLAG_MAPSFOLDER": 1, - "LogError": 2, - "CreateNextVote": 1, - "SetupTimeleftTimer": 3, - "false": 8, - "ClearArray": 2, - "for": 9, - "i": 13, - "<": 5, + "blockIdx.x": 2, "+": 12, - "&&": 5, - "GetConVarInt": 10, - "GetConVarFloat": 2, - "<=>": 1, - "Warning": 1, - "Bonus": 1, - "Round": 1, - "Time": 2, - "shorter": 1, - "than": 1, - "Vote": 4, - "Votes": 1, - "round": 1, - "may": 1, - "not": 1, - "complete": 1, - "OnMapEnd": 1, - "map": 27, - "GetCurrentMap": 1, - "PushArrayString": 3, - "GetArraySize": 8, - "RemoveFromArray": 3, - "OnClientDisconnect": 1, - "client": 9, - "index": 8, - "FindValueInArray": 1, - "oldmap": 4, - "GetArrayString": 3, - "Call_StartForward": 1, - "Call_PushString": 1, - "Call_PushCell": 1, - "GetArrayCell": 2, - "Call_Finish": 1, - "Action": 3, - "args": 3, - "ReplyToCommand": 2, - "Plugin_Handled": 4, - "GetCmdArg": 1, - "IsMapValid": 1, - "ShowActivity": 1, - "LogAction": 1, - "SetNextMap": 1, - "OnMapTimeLeftChanged": 1, - "GetMapTimeLeft": 1, - "startTime": 4, - "*": 1, - "GetConVarBool": 6, - "InitiateVote": 8, - "MapChange_MapEnd": 6, - "KillTimer": 1, - "//g_VoteTimer": 1, - "CreateTimer": 3, - "float": 2, - "Timer_StartMapVote": 3, - "TIMER_FLAG_NO_MAPCHANGE": 4, - "data": 8, - "CreateDataTimer": 1, - "WritePackCell": 2, - "ResetPack": 1, - "timer": 2, - "Plugin_Stop": 2, - "mapChange": 2, - "ReadPackCell": 2, - "hndl": 2, - "event": 11, - "const": 4, - "dontBroadcast": 4, - "Timer_ChangeMap": 2, - "bluescore": 2, - "GetEventInt": 7, - "redscore": 2, - "StrEqual": 1, - "CheckMaxRounds": 3, - "switch": 1, - "case": 2, - "CheckWinLimit": 4, - "//We": 1, - "need": 2, - "do": 1, - "nothing": 1, - "on": 1, - "winning_team": 1, - "this": 1, - "indicates": 1, - "stalemate.": 1, - "default": 1, - "winner": 9, - "//": 3, - "Nuclear": 1, - "Dawn": 1, - "SetFailState": 1, - "winner_score": 2, - "winlimit": 3, - "roundcount": 2, - "maxrounds": 3, - "fragger": 3, - "GetClientOfUserId": 1, - "GetClientFrags": 1, - "when": 2, - "inputlist": 1, - "IsVoteInProgress": 1, - "Can": 1, - "t": 7, - "be": 1, - "excluded": 1, - "from": 1, - "as": 2, - "they": 1, - "weren": 1, - "nominationsToAdd": 1, - "Change": 2, - "Extend": 2, - "Map": 5, - "Voting": 7, - "next": 5, - "has": 5, - "started.": 1, - "SM": 5, - "Nextmap": 5, - "Started": 1, - "Current": 2, - "Extended": 1, - "finished.": 3, - "The": 1, - "current": 1, - "been": 1, - "extended.": 1, - "Stays": 1, - "was": 3, - "Finished": 1, - "s.": 1, - "Runoff": 2, - "Starting": 2, - "indecisive": 1, - "beginning": 1, - "runoff": 1, - "T": 3, - "Dont": 1, - "because": 1, - "outside": 1, - "request": 1, - "inputarray": 1, - "plugin": 5, - "numParams": 5, - "CanVoteStart": 1, - "array": 3, - "GetNativeCell": 3, - "size": 2, - "maparray": 3, - "ownerarray": 3, - "If": 1, - "optional": 1, - "parameter": 1, - "an": 1, - "owner": 1, - "list": 1, - "passed": 1, - "then": 1, - "fill": 1, - "out": 1, - "well": 1, - "PushArrayCell": 1 - }, - "SQL": { - "IF": 13, - "EXISTS": 12, - "(": 131, - "SELECT": 4, - "*": 3, - "FROM": 1, - "DBO.SYSOBJECTS": 1, - "WHERE": 1, - "ID": 2, - "OBJECT_ID": 1, - "N": 7, - ")": 131, - "AND": 1, - "OBJECTPROPERTY": 1, - "id": 22, - "DROP": 3, - "PROCEDURE": 1, - "dbo.AvailableInSearchSel": 2, - "GO": 4, - "CREATE": 10, - "Procedure": 1, - "AvailableInSearchSel": 1, - "AS": 1, - "UNION": 2, - "ALL": 2, - "DB_NAME": 1, - "BEGIN": 1, - "GRANT": 1, - "EXECUTE": 1, - "ON": 1, - "TO": 1, - "[": 1, - "rv": 1, - "]": 1, - "END": 1, - "SHOW": 2, - "WARNINGS": 2, - ";": 31, - "-": 496, - "Table": 9, - "structure": 9, - "for": 15, - "table": 17, - "articles": 4, - "TABLE": 10, - "NOT": 46, - "int": 28, - "NULL": 91, - "AUTO_INCREMENT": 9, - "title": 4, - "varchar": 22, - "DEFAULT": 22, - "content": 2, - "longtext": 1, - "date_posted": 4, - "datetime": 10, - "created_by": 2, - "last_modified": 2, - "last_modified_by": 2, - "ordering": 2, - "is_published": 2, - "PRIMARY": 9, - "KEY": 13, - "Dumping": 6, - "data": 6, - "INSERT": 6, - "INTO": 6, - "VALUES": 6, - "challenges": 4, - "pkg_name": 2, - "description": 2, - "text": 1, - "author": 2, - "category": 2, - "visibility": 2, - "publish": 2, - "abstract": 2, - "level": 2, - "duration": 2, - "goal": 2, - "solution": 2, - "availability": 2, - "default_points": 2, - "default_duration": 2, - "challenge_attempts": 2, - "user_id": 8, - "challenge_id": 7, - "time": 1, - "status": 1, - "challenge_attempt_count": 2, - "tries": 1, - "UNIQUE": 4, - "classes": 4, - "name": 3, - "date_created": 6, - "archive": 2, - "class_challenges": 4, - "class_id": 5, - "class_memberships": 4, - "users": 4, - "username": 3, - "full_name": 2, - "email": 2, - "password": 2, - "joined": 2, - "last_visit": 2, - "is_activated": 2, - "type": 3, - "token": 3, - "user_has_challenge_token": 3, - "create": 2, - "FILIAL": 10, - "NUMBER": 1, - "not": 5, - "null": 4, - "title_ua": 1, - "VARCHAR2": 4, - "title_ru": 1, - "title_eng": 1, - "remove_date": 1, - "DATE": 2, - "modify_date": 1, - "modify_user": 1, - "alter": 1, - "add": 1, - "constraint": 1, - "PK_ID": 1, - "primary": 1, - "key": 1, - "grant": 8, - "select": 10, - "on": 8, - "to": 8, - "ATOLL": 1, - "CRAMER2GIS": 1, - "DMS": 1, - "HPSM2GIS": 1, - "PLANMONITOR": 1, - "SIEBEL": 1, - "VBIS": 1, - "VPORTAL": 1, - "if": 1, - "exists": 1, - "from": 2, - "sysobjects": 1, - "where": 2, - "and": 1, - "in": 1, - "exec": 1, - "%": 2, - "object_ddl": 1, - "go": 1, - "use": 1, - "translog": 1, - "VIEW": 1, - "suspendedtoday": 2, - "view": 1, - "as": 1, - "suspended": 1, - "datediff": 1, - "now": 1 - }, - "Squirrel": { - "//example": 1, - "from": 1, - "http": 1, - "//www.squirrel": 1, - "-": 1, - "lang.org/#documentation": 1, - "local": 3, - "table": 1, - "{": 10, - "a": 2, - "subtable": 1, - "array": 3, - "[": 3, - "]": 3, - "}": 10, - "+": 2, - "b": 1, - ";": 15, - "foreach": 1, - "(": 10, - "i": 1, - "val": 2, - "in": 1, - ")": 10, - "print": 2, - "typeof": 1, - "/////////////////////////////////////////////": 1, - "class": 2, - "Entity": 3, - "constructor": 2, - "etype": 2, - "entityname": 4, - "name": 2, - "type": 2, - "x": 2, - "y": 2, - "z": 2, - "null": 2, - "function": 2, - "MoveTo": 1, - "newx": 2, - "newy": 2, - "newz": 2, - "Player": 2, - "extends": 1, - "base.constructor": 1, - "DoDomething": 1, - "newplayer": 1, - "newplayer.MoveTo": 1 - }, - "Standard ML": { - "structure": 15, - "LazyBase": 4, - "LAZY_BASE": 5, - "struct": 13, - "type": 6, - "a": 78, - "exception": 2, - "Undefined": 6, - "fun": 60, - "delay": 6, - "f": 46, - "force": 18, - "(": 840, - ")": 845, - "val": 147, - "undefined": 2, - "fn": 127, - "raise": 6, - "end": 55, - "LazyMemoBase": 4, - "datatype": 29, - "|": 226, - "Done": 2, - "of": 91, - "lazy": 13, - "unit": 7, - "-": 20, - "let": 44, - "open": 9, - "B": 2, - "inject": 5, - "x": 74, - "isUndefined": 4, - "ignore": 3, - ";": 21, - "false": 32, - "handle": 4, - "true": 36, - "toString": 4, - "if": 51, - "then": 51, - "else": 51, - "eqBy": 5, - "p": 10, - "y": 50, - "eq": 3, - "op": 2, - "compare": 8, - "Ops": 3, - "map": 3, - "Lazy": 2, - "LazyFn": 4, - "LazyMemo": 2, - "signature": 2, - "sig": 2, - "LAZY": 1, - "bool": 9, - "string": 14, - "*": 9, - "order": 2, - "b": 58, - "functor": 2, - "Main": 1, - "S": 2, - "MAIN_STRUCTS": 1, - "MAIN": 1, - "Compile": 3, - "Place": 1, - "t": 23, - "Files": 3, - "Generated": 4, - "MLB": 4, - "O": 4, - "OUT": 3, - "SML": 6, - "TypeCheck": 3, - "toInt": 1, - "int": 1, - "OptPred": 1, - "Target": 1, - "Yes": 1, - "Show": 1, - "Anns": 1, - "PathMap": 1, - "gcc": 5, - "ref": 45, - "arScript": 3, - "asOpts": 6, - "{": 79, - "opt": 34, - "pred": 15, - "OptPred.t": 3, - "}": 79, - "list": 10, - "[": 104, - "]": 108, - "ccOpts": 6, - "linkOpts": 6, - "buildConstants": 2, - "debugRuntime": 3, - "debugFormat": 5, - "Dwarf": 3, - "DwarfPlus": 3, - "Dwarf2": 3, - "Stabs": 3, - "StabsPlus": 3, - "option": 6, - "NONE": 47, - "expert": 3, - "explicitAlign": 3, - "Control.align": 1, - "explicitChunk": 2, - "Control.chunk": 1, - "explicitCodegen": 5, - "Native": 5, - "Explicit": 5, - "Control.codegen": 3, - "keepGenerated": 3, - "keepO": 3, - "output": 16, - "profileSet": 3, - "profileTimeSet": 3, - "runtimeArgs": 3, - "show": 2, - "Show.t": 1, - "stop": 10, - "Place.OUT": 1, - "parseMlbPathVar": 3, - "line": 9, - "String.t": 1, - "case": 83, - "String.tokens": 7, - "Char.isSpace": 8, - "var": 3, - "path": 7, - "SOME": 68, - "_": 83, - "readMlbPathMap": 2, - "file": 14, - "File.t": 12, - "not": 1, - "File.canRead": 1, - "Error.bug": 14, - "concat": 52, - "List.keepAllMap": 4, - "File.lines": 2, - "String.forall": 4, - "v": 4, - "targetMap": 5, - "arch": 11, - "MLton.Platform.Arch.t": 3, - "os": 13, - "MLton.Platform.OS.t": 3, - "target": 28, - "Promise.lazy": 1, - "targetsDir": 5, - "OS.Path.mkAbsolute": 4, - "relativeTo": 4, - "Control.libDir": 1, - "potentialTargets": 2, - "Dir.lsDirs": 1, - "targetDir": 5, - "osFile": 2, - "OS.Path.joinDirFile": 3, - "dir": 4, - "archFile": 2, - "File.contents": 2, - "List.first": 2, - "MLton.Platform.OS.fromString": 1, - "MLton.Platform.Arch.fromString": 1, - "in": 40, - "setTargetType": 3, - "usage": 48, - "List.peek": 7, - "...": 23, - "Control": 3, - "Target.arch": 2, - "Target.os": 2, - "hasCodegen": 8, - "cg": 21, - "z": 73, - "Control.Target.arch": 4, - "Control.Target.os": 2, - "Control.Format.t": 1, - "AMD64": 2, - "x86Codegen": 9, - "X86": 3, - "amd64Codegen": 8, - "<": 3, - "Darwin": 6, - "orelse": 7, - "Control.format": 3, - "Executable": 5, - "Archive": 4, - "hasNativeCodegen": 2, - "defaultAlignIs8": 3, - "Alpha": 1, - "ARM": 1, - "HPPA": 1, - "IA64": 1, - "MIPS": 1, - "Sparc": 1, - "S390": 1, - "makeOptions": 3, - "s": 168, - "Fail": 2, - "reportAnnotation": 4, - "flag": 12, - "e": 18, - "Control.Elaborate.Bad": 1, - "Control.Elaborate.Deprecated": 1, - "ids": 2, - "Control.warnDeprecated": 1, - "Out.output": 2, - "Out.error": 3, - "List.toString": 1, - "Control.Elaborate.Id.name": 1, - "Control.Elaborate.Good": 1, - "Control.Elaborate.Other": 1, - "Popt": 1, - "tokenizeOpt": 4, - "opts": 4, - "List.foreach": 5, - "tokenizeTargetOpt": 4, - "List.map": 3, - "Normal": 29, - "SpaceString": 48, - "Align4": 2, - "Align8": 2, - "Expert": 72, - "o": 8, - "List.push": 22, - "OptPred.Yes": 6, - "boolRef": 20, - "ChunkPerFunc": 1, - "OneChunk": 1, - "String.hasPrefix": 2, - "prefix": 3, - "String.dropPrefix": 1, - "Char.isDigit": 3, - "Int.fromString": 4, - "n": 4, - "Coalesce": 1, - "limit": 1, - "Bool": 10, - "closureConvertGlobalize": 1, - "closureConvertShrink": 1, - "String.concatWith": 2, - "Control.Codegen.all": 2, - "Control.Codegen.toString": 2, - "name": 7, - "value": 4, - "Compile.setCommandLineConstant": 2, - "contifyIntoMain": 1, - "debug": 4, - "Control.Elaborate.processDefault": 1, - "Control.defaultChar": 1, - "Control.defaultInt": 5, - "Control.defaultReal": 2, - "Control.defaultWideChar": 2, - "Control.defaultWord": 4, - "Regexp.fromString": 7, - "re": 34, - "Regexp.compileDFA": 4, - "diagPasses": 1, - "Control.Elaborate.processEnabled": 2, - "dropPasses": 1, - "intRef": 8, - "errorThreshhold": 1, - "emitMain": 1, - "exportHeader": 3, - "Control.Format.all": 2, - "Control.Format.toString": 2, - "gcCheck": 1, - "Limit": 1, - "First": 1, - "Every": 1, - "Native.IEEEFP": 1, - "indentation": 1, - "Int": 8, - "i": 8, - "inlineNonRec": 6, - "small": 19, - "product": 19, - "#product": 1, - "inlineIntoMain": 1, - "loops": 18, - "inlineLeafA": 6, - "repeat": 18, - "size": 19, - "inlineLeafB": 6, - "keepCoreML": 1, - "keepDot": 1, - "keepMachine": 1, - "keepRSSA": 1, - "keepSSA": 1, - "keepSSA2": 1, - "keepSXML": 1, - "keepXML": 1, - "keepPasses": 1, - "libname": 9, - "loopPasses": 1, - "Int.toString": 3, - "markCards": 1, - "maxFunctionSize": 1, - "mlbPathVars": 4, - "@": 3, - "Native.commented": 1, - "Native.copyProp": 1, - "Native.cutoff": 1, - "Native.liveTransfer": 1, - "Native.liveStack": 1, - "Native.moveHoist": 1, - "Native.optimize": 1, - "Native.split": 1, - "Native.shuffle": 1, - "err": 1, - "optimizationPasses": 1, - "il": 10, - "set": 10, - "Result.Yes": 6, - "Result.No": 5, - "polyvariance": 9, - "hofo": 12, - "rounds": 12, - "preferAbsPaths": 1, - "profPasses": 1, - "profile": 6, - "ProfileNone": 2, - "ProfileAlloc": 1, - "ProfileCallStack": 3, - "ProfileCount": 1, - "ProfileDrop": 1, - "ProfileLabel": 1, - "ProfileTimeLabel": 4, - "ProfileTimeField": 2, - "profileBranch": 1, - "Regexp": 3, - "seq": 3, - "anys": 6, - "compileDFA": 3, - "profileC": 1, - "profileInclExcl": 2, - "profileIL": 3, - "ProfileSource": 1, - "ProfileSSA": 1, - "ProfileSSA2": 1, - "profileRaise": 2, - "profileStack": 1, - "profileVal": 1, - "Show.Anns": 1, - "Show.PathMap": 1, - "showBasis": 1, - "showDefUse": 1, - "showTypes": 1, - "Control.optimizationPasses": 4, - "String.equals": 4, - "Place.Files": 2, - "Place.Generated": 2, - "Place.O": 3, - "Place.TypeCheck": 1, - "#target": 2, - "Self": 2, - "Cross": 2, - "SpaceString2": 6, - "OptPred.Target": 6, - "#1": 1, - "trace": 4, - "#2": 2, - "typeCheck": 1, - "verbosity": 4, - "Silent": 3, - "Top": 5, - "Pass": 1, - "Detail": 1, - "warnAnn": 1, - "warnDeprecated": 1, - "zoneCutDepth": 1, - "style": 6, - "arg": 3, - "desc": 3, - "mainUsage": 3, - "parse": 2, - "Popt.makeUsage": 1, - "showExpert": 1, - "commandLine": 5, - "args": 8, - "lib": 2, - "libDir": 2, - "OS.Path.mkCanonical": 1, - "result": 1, - "targetStr": 3, - "libTargetDir": 1, - "targetArch": 4, - "archStr": 1, - "String.toLower": 2, - "MLton.Platform.Arch.toString": 2, - "targetOS": 5, - "OSStr": 2, - "MLton.Platform.OS.toString": 1, - "positionIndependent": 3, - "format": 7, - "MinGW": 4, - "Cygwin": 4, - "Library": 6, - "LibArchive": 3, - "Control.positionIndependent": 1, - "align": 1, - "codegen": 4, - "CCodegen": 1, - "MLton.Rusage.measureGC": 1, - "exnHistory": 1, - "Bool.toString": 1, - "Control.profile": 1, - "Control.ProfileCallStack": 1, - "sizeMap": 1, - "Control.libTargetDir": 1, - "ty": 4, - "Bytes.toBits": 1, - "Bytes.fromInt": 1, - "lookup": 4, - "use": 2, - "on": 1, - "must": 1, - "x86": 1, - "with": 1, - "ieee": 1, - "fp": 1, - "can": 1, - "No": 1, - "Out.standard": 1, - "input": 22, - "rest": 3, - "inputFile": 1, - "File.base": 5, - "File.fileOf": 1, - "start": 6, - "base": 3, - "rec": 1, - "loop": 3, - "suf": 14, - "hasNum": 2, - "sufs": 2, - "String.hasSuffix": 2, - "suffix": 8, - "Place.t": 1, - "List.exists": 1, - "File.withIn": 1, - "csoFiles": 1, - "Place.compare": 1, - "GREATER": 5, - "Place.toString": 2, - "EQUAL": 5, - "LESS": 5, - "printVersion": 1, - "tempFiles": 3, - "tmpDir": 2, - "tmpVar": 2, - "default": 2, - "MLton.Platform.OS.host": 2, - "Process.getEnv": 1, - "d": 32, - "temp": 3, - "out": 9, - "File.temp": 1, - "OS.Path.concat": 1, - "Out.close": 2, - "maybeOut": 10, - "maybeOutBase": 4, - "File.extension": 3, - "outputBase": 2, - "ext": 1, - "OS.Path.splitBaseExt": 1, - "defLibname": 6, - "OS.Path.splitDirFile": 1, - "String.extract": 1, - "toAlNum": 2, - "c": 42, - "Char.isAlphaNum": 1, - "#": 3, - "CharVector.map": 1, - "atMLtons": 1, - "Vector.fromList": 1, - "tokenize": 1, - "rev": 2, - "gccDebug": 3, - "asDebug": 2, - "compileO": 3, - "inputs": 7, - "libOpts": 2, - "System.system": 4, - "List.concat": 4, - "linkArchives": 1, - "String.contains": 1, - "File.move": 1, - "from": 1, - "to": 1, - "mkOutputO": 3, - "Counter.t": 3, - "File.dirOf": 2, - "Counter.next": 1, - "compileC": 2, - "debugSwitches": 2, - "compileS": 2, - "compileCSO": 1, - "List.forall": 1, - "Counter.new": 1, - "oFiles": 2, - "List.fold": 1, - "ac": 4, - "extension": 6, - "Option.toString": 1, - "mkCompileSrc": 1, - "listFiles": 2, - "elaborate": 1, - "compile": 2, - "outputs": 2, - "r": 3, - "make": 1, - "Int.inc": 1, - "Out.openOut": 1, - "print": 4, - "outputHeader": 2, - "done": 3, - "Control.No": 1, - "l": 2, - "Layout.output": 1, - "Out.newline": 1, - "Vector.foreach": 1, - "String.translate": 1, - "/": 1, - "Type": 1, - "Check": 1, - ".c": 1, - ".s": 1, - "invalid": 1, - "MLton": 1, - "Exn.finally": 1, - "File.remove": 1, - "doit": 1, - "Process.makeCommandLine": 1, - "main": 1, - "mainWrapped": 1, - "OS.Process.exit": 1, - "CommandLine.arguments": 1, - "RedBlackTree": 1, - "key": 16, - "entry": 12, - "dict": 17, - "Empty": 15, - "Red": 41, - "local": 1, - "lk": 4, - "tree": 4, - "and": 2, - "zipper": 3, - "TOP": 5, - "LEFTB": 10, - "RIGHTB": 10, - "delete": 3, - "zip": 19, - "Black": 40, - "LEFTR": 8, - "RIGHTR": 9, - "bbZip": 28, - "w": 17, - "delMin": 8, - "Match": 1, - "joinRed": 3, - "needB": 2, - "del": 8, - "NotFound": 2, - "entry1": 16, - "as": 7, - "key1": 8, - "datum1": 4, - "joinBlack": 1, - "insertShadow": 3, - "datum": 1, - "oldEntry": 7, - "ins": 8, - "left": 10, - "right": 10, - "restore_left": 1, - "restore_right": 1, - "app": 3, - "ap": 7, - "new": 1, - "insert": 2, - "table": 14, - "clear": 1 - }, - "Stata": { - "local": 6, - "inname": 1, - "outname": 1, - "program": 2, - "hello": 1, - "vers": 1, - "display": 1, - "end": 4, - "{": 441, - "*": 25, - "version": 2, - "mar2014": 1, - "}": 440, - "...": 30, - "Hello": 1, - "world": 1, - "p_end": 47, - "MAXDIM": 1, - "smcl": 1, - "Matthew": 2, - "White": 2, - "jan2014": 1, - "title": 7, - "Title": 1, - "phang": 4, - "cmd": 111, - "odkmeta": 17, - "hline": 1, - "Create": 4, - "a": 30, - "do": 22, - "-": 42, - "file": 18, - "to": 23, - "import": 9, - "ODK": 6, - "data": 4, - "marker": 10, - "syntax": 1, - "Syntax": 1, - "p": 2, - "using": 10, - "it": 61, - "help": 27, - "filename": 3, - "opt": 25, - "csv": 9, - "(": 60, - "csvfile": 3, - ")": 61, - "Using": 7, - "histogram": 2, - "as": 29, - "template.": 8, - "notwithstanding": 1, - "is": 31, - "rarely": 1, - "preceded": 3, - "by": 7, - "an": 6, - "underscore.": 1, - "cmdab": 5, - "s": 10, - "urvey": 2, - "surveyfile": 5, - "odkmeta##surveyopts": 2, - "surveyopts": 4, - "cho": 2, - "ices": 2, - "choicesfile": 4, - "odkmeta##choicesopts": 2, - "choicesopts": 5, - "[": 6, - "options": 1, - "]": 6, - "odbc": 2, - "the": 67, - "position": 1, - "of": 36, - "last": 1, - "character": 1, - "in": 24, - "first": 2, - "column": 18, - "+": 2, - "synoptset": 5, - "tabbed": 4, - "synopthdr": 4, - "synoptline": 8, - "syntab": 6, - "Main": 3, - "heckman": 2, - "p2coldent": 3, - "name": 20, - ".csv": 2, - "that": 21, - "contains": 3, - "metadata": 5, - "from": 6, - "survey": 14, - "worksheet": 5, - "choices": 10, - "Fields": 2, - "synopt": 16, - "drop": 1, - "attrib": 2, - "headers": 8, - "not": 8, - "field": 25, - "attributes": 10, - "with": 10, - "keep": 1, - "only": 3, - "rel": 1, - "ax": 1, - "ignore": 1, - "fields": 7, - "exist": 1, - "Lists": 1, - "ca": 1, - "oth": 1, - "er": 1, - "odkmeta##other": 1, - "other": 14, - "Stata": 5, - "value": 14, - "values": 3, - "select": 6, - "or_other": 5, - ";": 15, - "default": 8, - "max": 2, - "one": 5, - "line": 4, - "write": 1, - "each": 7, - "list": 13, - "on": 7, - "single": 1, - "Options": 1, - "replace": 7, - "overwrite": 1, - "existing": 1, - "p2colreset": 4, - "and": 18, - "are": 13, - "required.": 1, - "Change": 1, - "t": 2, - "ype": 1, - "header": 15, - "type": 7, - "attribute": 10, - "la": 2, - "bel": 2, - "label": 9, - "d": 1, - "isabled": 1, - "disabled": 4, - "li": 1, - "stname": 1, - "list_name": 6, - "maximum": 3, - "plus": 2, - "min": 2, - "minimum": 2, - "minus": 1, - "#": 6, - "constant": 2, - "for": 13, - "all": 3, - "labels": 8, - "description": 1, - "Description": 1, - "pstd": 20, - "creates": 1, - "worksheets": 1, - "XLSForm.": 1, - "The": 9, - "saved": 1, - "completes": 2, - "following": 1, - "tasks": 3, - "order": 1, - "anova": 1, - "phang2": 23, - "o": 12, - "Import": 2, - "lists": 2, - "Add": 1, - "char": 4, - "characteristics": 4, - "Split": 1, - "select_multiple": 6, - "variables": 8, - "Drop": 1, - "note": 1, - "format": 1, - "Format": 1, - "date": 1, - "time": 1, - "datetime": 1, - "Attach": 2, - "variable": 14, - "notes": 1, - "merge": 3, - "Merge": 1, - "repeat": 6, - "groups": 4, - "After": 1, - "have": 2, - "been": 1, - "split": 4, - "can": 1, - "be": 12, - "removed": 1, - "without": 2, - "affecting": 1, - "tasks.": 1, - "User": 1, - "written": 2, - "supplements": 1, - "may": 2, - "make": 1, - "use": 3, - "any": 3, - "which": 6, - "imported": 4, - "characteristics.": 1, - "remarks": 1, - "Remarks": 1, - "uses": 3, - "helpb": 7, - "insheet": 4, - "data.": 1, - "long": 7, - "strings": 1, - "digits": 1, - "such": 2, - "simserial": 1, - "will": 9, - "numeric": 4, - "even": 1, - "if": 10, - "they": 2, - "more": 1, - "than": 3, - "digits.": 1, - "As": 1, - "result": 6, - "lose": 1, - "precision": 1, - ".": 22, - "makes": 1, - "limited": 1, - "mata": 1, - "Mata": 1, - "manage": 1, - "contain": 1, - "difficult": 1, - "characters.": 2, - "starts": 1, - "definitions": 1, - "several": 1, - "macros": 1, - "these": 4, - "constants": 1, - "uses.": 1, - "For": 4, - "instance": 1, - "macro": 1, - "datemask": 1, - "varname": 1, - "constraints": 1, - "names": 16, - "Further": 1, - "files": 1, - "often": 1, - "much": 1, - "longer": 1, - "length": 3, - "limit": 1, - "These": 2, - "differences": 1, - "convention": 1, - "lead": 1, - "three": 1, - "kinds": 1, - "problematic": 1, - "Long": 3, - "involve": 1, - "invalid": 1, - "combination": 1, - "characters": 3, - "example": 2, - "begins": 1, - "colon": 1, - "followed": 1, - "number.": 1, - "convert": 2, - "instead": 1, - "naming": 1, - "v": 6, - "concatenated": 1, - "positive": 1, - "integer": 1, - "v1": 1, - "unique": 1, - "but": 4, - "when": 1, - "converted": 3, - "truncated": 1, - "become": 3, - "duplicates.": 1, - "again": 1, - "names.": 6, - "form": 1, - "duplicates": 1, - "cannot": 2, - "chooses": 1, - "different": 1, - "Because": 1, - "problem": 2, - "recommended": 1, - "you": 1, - "If": 2, - "its": 3, - "characteristic": 2, - "odkmeta##Odk_bad_name": 1, - "Odk_bad_name": 3, - "otherwise": 1, - "Most": 1, - "depend": 1, - "There": 1, - "two": 2, - "exceptions": 1, - "variables.": 1, - "error": 4, - "has": 6, - "or": 7, - "splitting": 2, - "would": 1, - "duplicate": 4, - "reshape": 2, - "groups.": 1, - "there": 2, - "merging": 2, - "code": 1, - "datasets.": 1, - "Where": 1, - "renaming": 2, - "left": 1, - "user.": 1, - "section": 2, - "designated": 2, - "area": 2, - "renaming.": 3, - "In": 3, - "reshaping": 1, - "group": 4, - "own": 2, - "Many": 1, - "forms": 2, - "require": 1, - "others": 1, - "few": 1, - "need": 1, - "renamed": 1, - "should": 1, - "go": 1, - "areas.": 1, - "However": 1, - "some": 1, - "usually": 1, - "because": 1, - "many": 2, - "nested": 2, - "above": 1, - "this": 1, - "case": 1, - "work": 1, - "best": 1, - "Odk_group": 1, - "Odk_name": 1, - "Odk_is_other": 2, - "Odk_geopoint": 2, - "r": 2, - "varlist": 2, - "Odk_list_name": 2, - "foreach": 1, - "var": 5, - "*search": 1, - "n/a": 1, - "know": 1, - "don": 1, - "worksheet.": 1, - "requires": 1, - "comma": 1, - "separated": 2, - "text": 1, - "file.": 1, - "Strings": 1, - "embedded": 2, - "commas": 1, - "double": 3, - "quotes": 3, - "must": 2, - "enclosed": 1, - "another": 1, - "quote.": 1, - "pmore": 5, - "Each": 1, - "header.": 1, - "Use": 1, - "suboptions": 1, - "specify": 1, - "alternative": 1, - "respectively.": 1, - "All": 1, - "used.": 1, - "standardized": 1, - "follows": 1, - "replaced": 9, - "select_one": 3, - "begin_group": 1, - "begin": 2, - "end_group": 1, - "begin_repeat": 1, - "end_repeat": 1, - "addition": 1, - "specified": 1, - "attaches": 1, - "pmore2": 3, - "formed": 1, - "concatenating": 1, - "elements": 1, - "Odk_repeat": 1, - "nested.": 1, - "geopoint": 2, - "component": 1, - "Latitude": 1, - "Longitude": 1, - "Altitude": 1, - "Accuracy": 1, - "blank.": 1, - "imports": 4, - "XLSForm": 1, - "list.": 1, - "one.": 1, - "specifies": 4, - "vary": 1, - "definition": 1, - "rather": 1, - "multiple": 1, - "delimit": 1, - "#delimit": 1, - "dlgtab": 1, - "Other": 1, - "already": 2, - "exists.": 1, - "examples": 1, - "Examples": 1, - "named": 1, - "import.do": 7, - "including": 1, - "survey.csv": 1, - "choices.csv": 1, - "txt": 6, - "Same": 3, - "previous": 3, - "command": 3, - "appears": 2, - "fieldname": 3, - "survey_fieldname.csv": 1, - "valuename": 2, - "choices_valuename.csv": 1, - "except": 1, - "hint": 2, - "dropattrib": 2, - "does": 1, - "_all": 1, - "acknowledgements": 1, - "Acknowledgements": 1, - "Lindsey": 1, - "Shaughnessy": 1, - "Innovations": 2, - "Poverty": 2, - "Action": 2, - "assisted": 1, - "almost": 1, - "aspects": 1, - "development.": 1, - "She": 1, - "collaborated": 1, - "structure": 1, - "was": 1, - "very": 1, - "helpful": 1, - "tester": 1, - "contributed": 1, - "information": 1, - "about": 1, - "ODK.": 1, - "author": 1, - "Author": 1, - "mwhite@poverty": 1, - "action.org": 1, - "Setup": 1, - "sysuse": 1, - "auto": 1, - "Fit": 2, - "linear": 2, - "regression": 2, - "regress": 5, - "mpg": 1, - "weight": 4, - "foreign": 2, - "better": 1, - "physics": 1, - "standpoint": 1, - "gen": 1, - "gp100m": 2, - "/mpg": 1, - "Obtain": 1, - "beta": 2, - "coefficients": 1, - "refitting": 1, - "model": 1, - "Suppress": 1, - "intercept": 1, - "term": 1, - "noconstant": 1, - "Model": 1, - "bn.foreign": 1, - "hascons": 1, - "matrix": 3, - "tanh": 1, - "u": 3, - "eu": 4, - "emu": 4, - "exp": 2, - "return": 1, - "/": 1 - }, - "STON": { + "threadIdx.x": 4, + ";": 30, + "if": 3, + "<": 5, + "C": 1, "[": 11, "]": 11, - "{": 15, - "#a": 1, - "#b": 1, - "}": 15, - "Rectangle": 1, - "#origin": 1, - "Point": 2, - "-": 2, - "#corner": 1, - "TestDomainObject": 1, - "#created": 1, - "DateAndTime": 2, - "#modified": 1, - "#integer": 1, - "#float": 1, - "#description": 1, - "#color": 1, - "#green": 1, - "#tags": 1, - "#two": 1, - "#beta": 1, - "#medium": 1, - "#bytes": 1, - "ByteArray": 1, - "#boolean": 1, - "false": 1, - "ZnResponse": 1, - "#headers": 2, - "ZnHeaders": 1, - "ZnMultiValueDictionary": 1, - "#entity": 1, - "ZnStringEntity": 1, - "#contentType": 1, - "ZnMimeType": 1, - "#main": 1, - "#sub": 1, - "#parameters": 1, - "#contentLength": 1, - "#string": 1, - "#encoder": 1, - "ZnUTF8Encoder": 1, - "#statusLine": 1, - "ZnStatusLine": 1, - "#version": 1, - "#code": 1, - "#reason": 1 - }, - "Stylus": { - "border": 6, - "-": 10, - "radius": 5, - "(": 1, - ")": 1, - "webkit": 1, - "arguments": 3, - "moz": 1, - "a.button": 1, - "px": 5, - "fonts": 2, - "helvetica": 1, - "arial": 1, - "sans": 1, - "serif": 1, - "body": 1, - "{": 1, - "padding": 3, - ";": 2, - "font": 1, - "px/1.4": 1, - "}": 1, - "form": 2, - "input": 2, - "[": 2, - "type": 2, - "text": 2, - "]": 2, - "solid": 1, - "#eee": 1, - "color": 2, - "#ddd": 1, - "textarea": 1, - "@extends": 2, - "foo": 2, - "#FFF": 1, - ".bar": 1, - "background": 1, - "#000": 1 - }, - "SuperCollider": { - "//boot": 1, - "server": 1, - "s.boot": 1, - ";": 18, - "(": 22, - "SynthDef": 1, - "{": 5, - "var": 1, - "sig": 7, - "resfreq": 3, - "Saw.ar": 1, - ")": 22, - "SinOsc.kr": 1, - "*": 3, - "+": 1, - "RLPF.ar": 1, - "Out.ar": 1, - "}": 5, - ".play": 2, - "do": 2, - "arg": 1, - "i": 1, - "Pan2.ar": 1, - "SinOsc.ar": 1, - "exprand": 1, - "LFNoise2.kr": 2, - "rrand": 2, - ".range": 2, - "**": 1, - "rand2": 1, - "a": 2, - "Env.perc": 1, - "-": 1, - "b": 1, - "a.delay": 2, - "a.test.plot": 1, - "b.test.plot": 1, - "Env": 1, - "[": 2, - "]": 2, - ".plot": 2, - "e": 1, - "Env.sine.asStream": 1, - "e.next.postln": 1, - "wait": 1, - ".fork": 1 - }, - "Swift": { - "let": 43, - "apples": 1, - "oranges": 1, - "appleSummary": 1, - "fruitSummary": 1, - "var": 42, - "shoppingList": 3, - "[": 18, - "]": 18, - "occupations": 2, - "emptyArray": 1, - "String": 27, - "(": 89, - ")": 89, - "emptyDictionary": 1, - "Dictionary": 1, - "": 1, - "Float": 1, - "//": 1, - "Went": 1, - "shopping": 1, - "and": 1, - "bought": 1, - "everything.": 1, - "individualScores": 2, - "teamScore": 4, - "for": 10, - "score": 2, - "in": 11, - "{": 77, - "if": 6, - "+": 15, - "}": 77, - "else": 1, - "optionalString": 2, - "nil": 1, - "optionalName": 2, - "greeting": 2, - "name": 21, - "vegetable": 2, - "switch": 4, - "case": 21, - "vegetableComment": 4, - "x": 1, - "where": 2, - "x.hasSuffix": 1, - "default": 2, - "interestingNumbers": 2, - "largest": 4, - "kind": 1, - "numbers": 6, - "number": 13, - "n": 5, - "while": 2, - "<": 4, - "*": 7, - "m": 5, - "do": 1, - "firstForLoop": 3, - "i": 6, - "secondForLoop": 3, - ";": 2, - "println": 1, - "func": 24, - "greet": 2, - "day": 1, - "-": 21, - "return": 30, - "getGasPrices": 2, - "Double": 11, - "sumOf": 3, - "Int...": 1, - "Int": 19, - "sum": 3, - "returnFifteen": 2, - "y": 3, - "add": 2, - "makeIncrementer": 2, - "addOne": 2, - "increment": 2, - "hasAnyMatches": 2, - "list": 2, - "condition": 2, - "Bool": 4, - "item": 4, - "true": 2, - "false": 2, - "lessThanTen": 2, - "numbers.map": 2, - "result": 5, - "sort": 1, - "class": 7, - "Shape": 2, - "numberOfSides": 4, - "simpleDescription": 14, - "myVariable": 2, - "myConstant": 1, - "shape": 1, - "shape.numberOfSides": 1, - "shapeDescription": 1, - "shape.simpleDescription": 1, - "NamedShape": 3, - "init": 4, - "self.name": 1, - "Square": 7, - "sideLength": 17, - "self.sideLength": 2, - "super.init": 2, - "area": 1, - "override": 2, - "test": 1, - "test.area": 1, - "test.simpleDescription": 1, - "EquilateralTriangle": 4, - "perimeter": 1, - "get": 2, - "set": 1, - "newValue": 1, - "/": 1, - "triangle": 3, - "triangle.perimeter": 2, - "triangle.sideLength": 2, - "TriangleAndSquare": 2, - "willSet": 2, - "square.sideLength": 1, - "newValue.sideLength": 2, - "square": 2, - "size": 4, - "triangleAndSquare": 1, - "triangleAndSquare.square.sideLength": 1, - "triangleAndSquare.triangle.sideLength": 2, - "triangleAndSquare.square": 1, - "Counter": 2, - "count": 2, - "incrementBy": 1, - "amount": 2, - "numberOfTimes": 2, - "times": 4, - "counter": 1, - "counter.incrementBy": 1, - "optionalSquare": 2, - ".sideLength": 1, - "enum": 4, - "Rank": 2, - "Ace": 1, - "Two": 1, - "Three": 1, - "Four": 1, - "Five": 1, - "Six": 1, - "Seven": 1, - "Eight": 1, - "Nine": 1, - "Ten": 1, - "Jack": 1, - "Queen": 1, - "King": 1, - "self": 3, - ".Ace": 1, - ".Jack": 1, - ".Queen": 1, - ".King": 1, - "self.toRaw": 1, - "ace": 1, - "Rank.Ace": 1, - "aceRawValue": 1, - "ace.toRaw": 1, - "convertedRank": 1, - "Rank.fromRaw": 1, - "threeDescription": 1, - "convertedRank.simpleDescription": 1, - "Suit": 2, - "Spades": 1, - "Hearts": 1, - "Diamonds": 1, - "Clubs": 1, - ".Spades": 2, - ".Hearts": 1, - ".Diamonds": 1, - ".Clubs": 1, - "hearts": 1, - "Suit.Hearts": 1, - "heartsDescription": 1, - "hearts.simpleDescription": 1, - "implicitInteger": 1, - "implicitDouble": 1, - "explicitDouble": 1, - "struct": 2, - "Card": 2, - "rank": 2, - "suit": 2, - "threeOfSpades": 1, - ".Three": 1, - "threeOfSpadesDescription": 1, - "threeOfSpades.simpleDescription": 1, - "ServerResponse": 1, - "Result": 1, - "Error": 1, - "success": 2, - "ServerResponse.Result": 1, - "failure": 1, - "ServerResponse.Error": 1, - ".Result": 1, - "sunrise": 1, - "sunset": 1, - "serverResponse": 2, - ".Error": 1, - "error": 1, - "protocol": 1, - "ExampleProtocol": 5, - "mutating": 3, - "adjust": 4, - "SimpleClass": 2, - "anotherProperty": 1, - "a": 2, - "a.adjust": 1, - "aDescription": 1, - "a.simpleDescription": 1, - "SimpleStructure": 2, - "b": 1, - "b.adjust": 1, - "bDescription": 1, - "b.simpleDescription": 1, - "extension": 1, - "protocolValue": 1, - "protocolValue.simpleDescription": 1, - "repeat": 2, - "": 1, - "ItemType": 3, - "OptionalValue": 2, - "": 1, - "None": 1, - "Some": 1, - "T": 5, - "possibleInteger": 2, - "": 1, - ".None": 1, - ".Some": 1, - "anyCommonElements": 2, - "": 1, - "U": 4, - "Sequence": 2, - "GeneratorType": 3, - "Element": 3, - "Equatable": 1, - "lhs": 2, - "rhs": 2, - "lhsItem": 2, - "rhsItem": 2, - "label": 2, - "width": 2, - "widthLabel": 1 - }, - "SystemVerilog": { - "module": 3, - "endpoint_phy_wrapper": 2, - "(": 92, - "input": 12, - "clk_sys_i": 2, - "clk_ref_i": 6, - "clk_rx_i": 3, - "rst_n_i": 3, - "IWishboneMaster.master": 2, - "src": 1, - "IWishboneSlave.slave": 1, - "snk": 1, - "sys": 1, - "output": 6, - "[": 17, - "]": 17, - "td_o": 2, - "rd_i": 2, - "txn_o": 2, - "txp_o": 2, - "rxn_i": 2, - "rxp_i": 2, - ")": 92, - ";": 32, - "wire": 12, - "rx_clock": 3, - "parameter": 2, - "g_phy_type": 6, - "gtx_data": 3, - "gtx_k": 3, - "gtx_disparity": 3, - "gtx_enc_error": 3, - "grx_data": 3, - "grx_clk": 1, - "grx_k": 3, - "grx_enc_error": 3, - "grx_bitslide": 2, - "gtp_rst": 2, - "tx_clock": 3, - "generate": 1, - "if": 5, - "begin": 4, - "assign": 2, - "wr_tbi_phy": 1, - "U_Phy": 1, - ".serdes_rst_i": 1, - ".serdes_loopen_i": 1, - "b0": 5, - ".serdes_enable_i": 1, - "b1": 2, - ".serdes_tx_data_i": 1, - ".serdes_tx_k_i": 1, - ".serdes_tx_disparity_o": 1, - ".serdes_tx_enc_err_o": 1, - ".serdes_rx_data_o": 1, - ".serdes_rx_k_o": 1, - ".serdes_rx_enc_err_o": 1, - ".serdes_rx_bitslide_o": 1, - ".tbi_refclk_i": 1, - ".tbi_rbclk_i": 1, - ".tbi_td_o": 1, - ".tbi_rd_i": 1, - ".tbi_syncen_o": 1, - ".tbi_loopen_o": 1, - ".tbi_prbsen_o": 1, - ".tbi_enable_o": 1, - "end": 4, - "else": 2, - "//": 3, - "wr_gtx_phy_virtex6": 1, - "#": 3, - ".g_simulation": 2, - "U_PHY": 1, - ".clk_ref_i": 2, - ".tx_clk_o": 1, - ".tx_data_i": 1, - ".tx_k_i": 1, - ".tx_disparity_o": 1, - ".tx_enc_err_o": 1, - ".rx_rbclk_o": 1, - ".rx_data_o": 1, - ".rx_k_o": 1, - ".rx_enc_err_o": 1, - ".rx_bitslide_o": 1, - ".rst_i": 1, - ".loopen_i": 1, - ".pad_txn0_o": 1, - ".pad_txp0_o": 1, - ".pad_rxn0_i": 1, - ".pad_rxp0_i": 1, - "endgenerate": 1, - "wr_endpoint": 1, - ".g_pcs_16bit": 1, - ".g_rx_buffer_size": 1, - ".g_with_rx_buffer": 1, - ".g_with_timestamper": 1, - ".g_with_dmtd": 1, - ".g_with_dpi_classifier": 1, - ".g_with_vlans": 1, - ".g_with_rtu": 1, - "DUT": 1, - ".clk_sys_i": 1, - ".clk_dmtd_i": 1, - ".rst_n_i": 1, - ".pps_csync_p1_i": 1, - ".src_dat_o": 1, - "snk.dat_i": 1, - ".src_adr_o": 1, - "snk.adr": 1, - ".src_sel_o": 1, - "snk.sel": 1, - ".src_cyc_o": 1, - "snk.cyc": 1, - ".src_stb_o": 1, - "snk.stb": 1, - ".src_we_o": 1, - "snk.we": 1, - ".src_stall_i": 1, - "snk.stall": 1, - ".src_ack_i": 1, - "snk.ack": 1, - ".src_err_i": 1, - ".rtu_full_i": 1, - ".rtu_rq_strobe_p1_o": 1, - ".rtu_rq_smac_o": 1, - ".rtu_rq_dmac_o": 1, - ".rtu_rq_vid_o": 1, - ".rtu_rq_has_vid_o": 1, - ".rtu_rq_prio_o": 1, - ".rtu_rq_has_prio_o": 1, - ".wb_cyc_i": 1, - "sys.cyc": 1, - ".wb_stb_i": 1, - "sys.stb": 1, - ".wb_we_i": 1, - "sys.we": 1, - ".wb_sel_i": 1, - "sys.sel": 1, - ".wb_adr_i": 1, - "sys.adr": 1, - ".wb_dat_i": 1, - "sys.dat_o": 1, - ".wb_dat_o": 1, - "sys.dat_i": 1, - ".wb_ack_o": 1, - "sys.ack": 1, - "endmodule": 2, - "fifo": 1, - "clk_50": 1, - "clk_2": 1, - "reset_n": 1, - "data_out": 1, - "empty": 1, - "priority_encoder": 1, - "INPUT_WIDTH": 3, - "OUTPUT_WIDTH": 3, - "logic": 2, - "-": 4, - "input_data": 2, - "output_data": 3, - "int": 1, - "ii": 6, - "always_comb": 1, - "for": 2, - "<": 1, - "+": 3, - "function": 1, - "integer": 2, - "log2": 4, - "x": 6, - "endfunction": 1 - }, - "Tcl": { - "#": 7, - "package": 2, - "require": 2, - "Tcl": 2, - "namespace": 6, - "eval": 2, - "stream": 61, - "{": 148, - "export": 3, - "[": 76, - "a": 1, - "-": 5, - "z": 1, - "]": 76, - "*": 19, - "}": 148, - "ensemble": 1, - "create": 7, - "proc": 28, - "first": 24, - "restCmdPrefix": 2, - "return": 22, - "list": 18, - "lassign": 11, - "foldl": 1, - "cmdPrefix": 19, - "initialValue": 7, - "args": 13, - "set": 34, - "numStreams": 3, - "llength": 5, - "if": 14, - "FoldlSingleStream": 2, - "lindex": 5, - "elseif": 3, - "FoldlMultiStream": 2, - "else": 5, - "Usage": 4, - "foreach": 5, - "numArgs": 7, - "varName": 7, - "body": 8, - "ForeachSingleStream": 2, - "(": 11, - ")": 11, - "&&": 2, - "%": 1, - "end": 2, - "items": 5, - "lrange": 1, - "ForeachMultiStream": 2, - "fromList": 2, - "_list": 4, - "index": 4, - "expr": 4, - "+": 1, - "isEmpty": 10, - "map": 1, - "MapSingleStream": 3, - "MapMultiStream": 3, - "rest": 22, - "select": 2, - "while": 6, - "take": 2, - "num": 3, - "||": 1, - "<": 1, - "toList": 1, - "res": 10, - "lappend": 8, - "#################################": 2, - "acc": 9, - "streams": 5, - "firsts": 6, - "restStreams": 6, - "uplevel": 4, - "nextItems": 4, - "msg": 1, - "code": 1, - "error": 1, - "level": 1, - "XDG": 11, - "variable": 4, - "DEFAULTS": 8, - "DATA_HOME": 4, - "CONFIG_HOME": 4, - "CACHE_HOME": 4, - "RUNTIME_DIR": 3, - "DATA_DIRS": 4, - "CONFIG_DIRS": 4, - "SetDefaults": 3, - "ne": 2, - "file": 9, - "join": 9, - "env": 8, - "HOME": 3, - ".local": 1, - "share": 3, - ".config": 1, - ".cache": 1, - "/usr": 2, - "local": 1, - "/etc": 1, - "xdg": 1, - "XDGVarSet": 4, - "var": 11, - "info": 1, - "exists": 1, - "XDG_": 4, - "Dir": 4, - "subdir": 16, - "dir": 5, - "dict": 2, - "get": 2, - "Dirs": 3, - "rawDirs": 3, - "split": 1, - "outDirs": 3, - "XDG_RUNTIME_DIR": 1 - }, - "Tea": { - "<%>": 1, - "template": 1, - "foo": 1 - }, - "TeX": { - "%": 135, - "ProvidesClass": 2, - "{": 463, - "problemset": 1, - "}": 469, - "DeclareOption*": 2, - "PassOptionsToClass": 2, - "final": 2, - "article": 2, - "DeclareOption": 2, - "worksheet": 1, - "providecommand": 45, - "@solutionvis": 3, - "expand": 1, - "@expand": 3, - "ProcessOptions": 2, - "relax": 3, - "LoadClass": 2, - "[": 81, - "pt": 5, - "letterpaper": 1, - "]": 80, - "RequirePackage": 20, - "top": 1, - "in": 20, - "bottom": 1, - "left": 15, - "right": 16, - "geometry": 1, - "pgfkeys": 1, - "For": 13, - "mathtable": 2, - "environment.": 3, - "tabularx": 1, - "pset": 1, - "heading": 2, - "float": 1, - "Used": 6, - "for": 21, - "floats": 1, - "(": 12, - "tables": 1, - "figures": 1, - "etc.": 1, - ")": 12, - "graphicx": 1, - "inserting": 3, - "images.": 1, - "enumerate": 2, - "the": 19, - "mathtools": 2, - "Required.": 7, - "Loads": 1, - "amsmath.": 1, - "amsthm": 1, - "theorem": 1, - "environments.": 1, - "amssymb": 1, - "booktabs": 1, - "esdiff": 1, - "derivatives": 4, - "and": 5, - "partial": 2, - "Optional.": 1, - "shortintertext.": 1, - "fancyhdr": 2, - "customizing": 1, - "headers/footers.": 1, - "lastpage": 1, - "page": 4, - "count": 1, - "header/footer.": 1, - "xcolor": 1, - "setting": 3, - "color": 3, - "of": 14, - "hyperlinks": 2, - "obeyFinal": 1, - "Disable": 1, - "todos": 1, - "by": 1, - "option": 1, - "class": 1, - "@todoclr": 2, - "linecolor": 1, - "red": 1, - "todonotes": 1, - "keeping": 1, - "track": 1, - "to": 16, - "-": 9, - "dos.": 1, - "colorlinks": 1, - "true": 1, - "linkcolor": 1, - "navy": 2, - "urlcolor": 1, - "black": 2, - "hyperref": 1, - "following": 2, - "urls": 2, - "references": 1, - "a": 2, - "document.": 1, - "url": 2, - "Enables": 1, - "with": 5, - "tag": 1, - "all": 2, - "hypcap": 1, - "definecolor": 2, - "gray": 1, - "To": 1, - "Dos.": 1, - "brightness": 1, - "RGB": 1, - "coloring": 1, - "setlength": 12, - "parskip": 1, - "ex": 2, - "Sets": 1, - "space": 8, - "between": 1, - "paragraphs.": 2, - "parindent": 2, - "Indent": 1, - "first": 1, - "line": 2, - "new": 1, - "let": 11, - "VERBATIM": 2, - "verbatim": 2, - "def": 18, - "verbatim@font": 1, - "small": 8, - "ttfamily": 1, - "usepackage": 2, - "caption": 1, - "footnotesize": 2, - "subcaption": 1, - "captionsetup": 4, - "table": 2, - "labelformat": 4, - "simple": 3, - "labelsep": 4, - "period": 3, - "labelfont": 4, - "bf": 4, - "figure": 2, - "subtable": 1, - "parens": 1, - "subfigure": 1, - "TRUE": 1, - "FALSE": 1, - "SHOW": 3, - "HIDE": 2, - "thispagestyle": 5, - "empty": 6, - "listoftodos": 1, - "clearpage": 4, - "pagenumbering": 1, - "arabic": 2, - "shortname": 2, - "#1": 40, - "authorname": 2, - "#2": 17, - "coursename": 3, - "#3": 8, - "assignment": 3, - "#4": 4, - "duedate": 2, - "#5": 2, - "begin": 11, - "minipage": 4, - "textwidth": 4, - "flushleft": 2, - "hypertarget": 1, - "@assignment": 2, - "textbf": 5, - "end": 12, - "flushright": 2, - "renewcommand": 10, - "headrulewidth": 1, - "footrulewidth": 1, - "pagestyle": 3, - "fancyplain": 4, - "fancyhf": 2, - "lfoot": 1, - "hyperlink": 1, - "cfoot": 1, - "rfoot": 1, - "thepage": 2, - "pageref": 1, - "LastPage": 1, - "newcounter": 1, - "theproblem": 3, - "Problem": 2, - "counter": 1, - "environment": 1, - "problem": 1, - "addtocounter": 2, - "setcounter": 5, - "equation": 1, - "noindent": 2, - ".": 3, - "textit": 1, - "Default": 2, - "is": 2, - "omit": 1, - "pagebreaks": 1, - "after": 1, - "solution": 2, - "qqed": 2, - "hfill": 3, - "rule": 1, - "mm": 2, - "ifnum": 3, - "pagebreak": 2, - "fi": 15, - "show": 1, - "solutions.": 1, - "vspace": 2, - "em": 8, - "Solution.": 1, - "ifnum#1": 2, - "else": 9, - "chap": 1, - "section": 2, - "Sum": 3, - "n": 4, - "ensuremath": 15, - "sum_": 2, - "from": 5, - "infsum": 2, - "infty": 2, - "Infinite": 1, - "sum": 1, - "Int": 1, - "x": 4, - "int_": 1, - "mathrm": 1, - "d": 1, - "Integrate": 1, - "respect": 1, - "Lim": 2, - "displaystyle": 2, - "lim_": 1, - "Take": 1, - "limit": 1, - "infinity": 1, - "f": 1, - "Frac": 1, - "/": 1, - "_": 1, - "Slanted": 1, - "fraction": 1, - "proper": 1, - "spacing.": 1, - "Usefule": 1, - "display": 2, - "fractions.": 1, - "eval": 1, - "vert_": 1, - "L": 1, - "hand": 2, - "sizing": 2, - "R": 1, - "D": 1, - "diff": 1, - "writing": 2, - "PD": 1, - "diffp": 1, - "full": 1, - "Forces": 1, - "style": 1, - "math": 4, - "mode": 4, - "Deg": 1, - "circ": 1, - "adding": 1, - "degree": 1, - "symbol": 4, - "even": 1, - "if": 1, - "not": 2, - "abs": 1, - "vert": 3, - "Absolute": 1, - "Value": 1, - "norm": 1, - "Vert": 2, - "Norm": 1, - "vector": 1, - "magnitude": 1, - "e": 1, - "times": 3, - "Scientific": 2, - "Notation": 2, - "E": 2, - "u": 1, - "text": 7, - "units": 1, - "Roman": 1, - "mc": 1, - "hspace": 3, - "comma": 1, - "into": 2, - "mtxt": 1, - "insterting": 1, - "on": 2, - "either": 1, - "side.": 1, - "Option": 1, - "preceding": 1, - "punctuation.": 1, - "prob": 1, - "P": 2, - "cndprb": 1, - "right.": 1, - "cov": 1, - "Cov": 1, - "twovector": 1, - "r": 3, - "array": 6, - "threevector": 1, - "fourvector": 1, - "vecs": 4, - "vec": 2, - "bm": 2, - "bolded": 2, - "arrow": 2, - "vect": 3, - "unitvecs": 1, - "hat": 2, - "unitvect": 1, - "Div": 1, - "del": 3, - "cdot": 1, - "Curl": 1, - "Grad": 1, - "NeedsTeXFormat": 1, - "LaTeX2e": 1, - "reedthesis": 1, - "/01/27": 1, - "The": 4, - "Reed": 5, - "College": 5, - "Thesis": 5, - "Class": 4, - "CurrentOption": 1, - "book": 2, - "AtBeginDocument": 1, - "fancyhead": 5, - "LE": 1, - "RO": 1, - "above": 1, - "makes": 2, - "your": 1, - "headers": 6, - "caps.": 2, - "If": 1, - "you": 1, - "would": 1, - "like": 1, - "different": 1, - "choose": 1, - "one": 1, - "options": 1, - "be": 3, - "sure": 1, - "remove": 1, - "both": 1, - "RE": 2, - "slshape": 2, - "nouppercase": 2, - "leftmark": 2, - "This": 2, - "RIGHT": 2, - "side": 2, - "pages": 2, - "italic": 1, - "use": 1, - "lowercase": 1, - "With": 1, - "Capitals": 1, - "When": 1, - "Specified.": 1, - "LO": 2, - "rightmark": 2, - "does": 1, - "same": 1, - "thing": 1, - "LEFT": 2, - "or": 1, - "scshape": 2, - "will": 2, - "And": 1, - "so": 1, - "fancy": 1, - "oldthebibliography": 2, - "thebibliography": 2, - "endoldthebibliography": 2, - "endthebibliography": 1, - "renewenvironment": 2, - "addcontentsline": 5, - "toc": 5, - "chapter": 9, - "bibname": 2, - "things": 1, - "psych": 1, - "majors": 1, - "comment": 1, - "out": 1, - "oldtheindex": 2, - "theindex": 2, - "endoldtheindex": 2, - "endtheindex": 1, - "indexname": 1, - "RToldchapter": 1, - "if@openright": 1, - "RTcleardoublepage": 3, - "global": 2, - "@topnum": 1, - "z@": 2, - "@afterindentfalse": 1, - "secdef": 1, - "@chapter": 2, - "@schapter": 1, - "c@secnumdepth": 1, - "m@ne": 2, - "if@mainmatter": 1, - "refstepcounter": 1, - "typeout": 1, - "@chapapp": 2, - "thechapter.": 1, - "thechapter": 1, - "space#1": 1, - "chaptermark": 1, - "addtocontents": 2, - "lof": 1, - "protect": 2, - "addvspace": 2, - "p@": 3, - "lot": 1, - "if@twocolumn": 3, - "@topnewpage": 1, - "@makechapterhead": 2, - "@afterheading": 1, - "newcommand": 2, - "if@twoside": 1, - "ifodd": 1, - "c@page": 1, - "hbox": 15, - "newpage": 3, - "RToldcleardoublepage": 1, - "cleardoublepage": 4, - "oddsidemargin": 2, - ".5in": 3, - "evensidemargin": 2, - "textheight": 4, - "topmargin": 6, - "addtolength": 8, - "headheight": 4, - "headsep": 3, - ".6in": 1, - "division#1": 1, - "gdef": 6, - "@division": 3, - "@latex@warning@no@line": 3, - "No": 3, - "noexpand": 3, - "division": 2, - "given": 3, - "department#1": 1, - "@department": 3, - "department": 1, - "thedivisionof#1": 1, - "@thedivisionof": 3, - "Division": 2, - "approvedforthe#1": 1, - "@approvedforthe": 3, - "advisor#1": 1, - "@advisor": 3, - "advisor": 1, - "altadvisor#1": 1, - "@altadvisor": 3, - "@altadvisortrue": 1, - "@empty": 1, - "newif": 1, - "if@altadvisor": 3, - "@altadvisorfalse": 1, - "contentsname": 1, - "Table": 1, - "Contents": 1, - "References": 1, - "l@chapter": 1, - "c@tocdepth": 1, - "addpenalty": 1, - "@highpenalty": 2, - "vskip": 4, - "@plus": 1, - "@tempdima": 2, - "begingroup": 1, - "rightskip": 1, - "@pnumwidth": 3, - "parfillskip": 1, - "leavevmode": 1, - "bfseries": 3, - "advance": 1, - "leftskip": 2, - "hskip": 1, - "nobreak": 2, - "normalfont": 1, - "leaders": 1, - "m@th": 1, - "mkern": 2, - "@dotsep": 2, - "mu": 2, - "hb@xt@": 1, - "hss": 1, - "par": 6, - "penalty": 1, - "endgroup": 1, - "newenvironment": 1, - "abstract": 1, - "@restonecoltrue": 1, - "onecolumn": 1, - "@restonecolfalse": 1, - "Abstract": 2, - "center": 7, - "fontsize": 7, - "selectfont": 6, - "if@restonecol": 1, - "twocolumn": 1, - "ifx": 1, - "@pdfoutput": 1, - "@undefined": 1, - "RTpercent": 3, - "@percentchar": 1, - "AtBeginDvi": 2, - "special": 2, - "LaTeX": 3, - "/12/04": 3, - "SN": 3, - "rawpostscript": 1, - "AtEndDocument": 1, - "pdfinfo": 1, - "/Creator": 1, - "maketitle": 1, - "titlepage": 2, - "footnoterule": 1, - "footnote": 1, - "thanks": 1, - "baselineskip": 2, - "setbox0": 2, - "Requirements": 2, - "Degree": 2, - "null": 3, - "vfil": 8, - "@title": 1, - "centerline": 8, - "wd0": 7, - "hrulefill": 5, "A": 1, - "Presented": 1, - "In": 1, - "Partial": 1, - "Fulfillment": 1, - "Bachelor": 1, - "Arts": 1, - "bigskip": 2, - "lineskip": 1, - ".75em": 1, - "tabular": 2, - "t": 1, - "c": 5, - "@author": 1, - "@date": 1, - "Approved": 2, - "just": 1, - "below": 2, - "cm": 2, - "copy0": 1, - "approved": 1, - "major": 1, - "sign": 1, - "makebox": 6 - }, - "Turing": { - "function": 1, - "factorial": 4, - "(": 3, - "n": 9, - "int": 2, - ")": 3, - "real": 1, - "if": 2, - "then": 1, - "result": 2, - "else": 1, - "*": 1, - "-": 1, - "end": 3, - "var": 1, - "loop": 2, - "put": 3, - "..": 1, - "get": 1, - "exit": 1, - "when": 1 - }, - "TXL": { - "define": 12, - "program": 1, - "[": 38, - "expression": 9, - "]": 38, - "end": 12, - "term": 6, - "|": 3, - "addop": 2, - "primary": 4, - "mulop": 2, - "number": 10, - "(": 2, - ")": 2, - "-": 3, - "/": 3, - "rule": 12, + "B": 1, + "}": 8, "main": 1, - "replace": 6, - "E": 3, - "construct": 1, - "NewE": 3, - "resolveAddition": 2, - "resolveSubtraction": 2, - "resolveMultiplication": 2, - "resolveDivision": 2, - "resolveParentheses": 2, - "where": 1, - "not": 1, - "by": 6, - "N1": 8, - "+": 2, - "N2": 8, - "*": 2, - "N": 2 - }, - "TypeScript": { - "class": 3, - "Animal": 4, - "{": 9, - "constructor": 3, - "(": 18, - "public": 1, - "name": 5, - ")": 18, - "}": 9, - "move": 3, - "meters": 2, - "alert": 3, - "this.name": 1, - "+": 3, - ";": 8, - "Snake": 2, - "extends": 2, - "super": 2, - "super.move": 2, - "Horse": 2, - "var": 2, - "sam": 1, - "new": 2, - "tom": 1, - "sam.move": 1, - "tom.move": 1, - "console.log": 1 - }, - "UnrealScript": { - "//": 5, - "-": 220, - "class": 18, - "MutU2Weapons": 1, - "extends": 2, - "Mutator": 1, - "config": 18, - "(": 189, - "U2Weapons": 1, - ")": 189, - ";": 295, - "var": 30, - "string": 25, - "ReplacedWeaponClassNames0": 1, - "ReplacedWeaponClassNames1": 1, - "ReplacedWeaponClassNames2": 1, - "ReplacedWeaponClassNames3": 1, - "ReplacedWeaponClassNames4": 1, - "ReplacedWeaponClassNames5": 1, - "ReplacedWeaponClassNames6": 1, - "ReplacedWeaponClassNames7": 1, - "ReplacedWeaponClassNames8": 1, - "ReplacedWeaponClassNames9": 1, - "ReplacedWeaponClassNames10": 1, - "ReplacedWeaponClassNames11": 1, - "ReplacedWeaponClassNames12": 1, - "bool": 18, - "bConfigUseU2Weapon0": 1, - "bConfigUseU2Weapon1": 1, - "bConfigUseU2Weapon2": 1, - "bConfigUseU2Weapon3": 1, - "bConfigUseU2Weapon4": 1, - "bConfigUseU2Weapon5": 1, - "bConfigUseU2Weapon6": 1, - "bConfigUseU2Weapon7": 1, - "bConfigUseU2Weapon8": 1, - "bConfigUseU2Weapon9": 1, - "bConfigUseU2Weapon10": 1, - "bConfigUseU2Weapon11": 1, - "bConfigUseU2Weapon12": 1, - "//var": 8, - "byte": 4, - "bUseU2Weapon": 1, - "[": 125, - "]": 125, - "": 7, - "ReplacedWeaponClasses": 3, - "": 2, - "ReplacedWeaponPickupClasses": 1, - "": 3, - "ReplacedAmmoPickupClasses": 1, - "U2WeaponClasses": 2, - "//GE": 17, - "For": 3, - "default": 12, - "properties": 3, - "ONLY": 3, - "U2WeaponPickupClassNames": 1, - "U2AmmoPickupClassNames": 2, - "bIsVehicle": 4, - "bNotVehicle": 3, - "localized": 2, - "U2WeaponDisplayText": 1, - "U2WeaponDescText": 1, - "GUISelectOptions": 1, - "int": 10, - "FirePowerMode": 1, - "bExperimental": 3, - "bUseFieldGenerator": 2, - "bUseProximitySensor": 2, - "bIntegrateShieldReward": 2, - "IterationNum": 8, - "Weapons.Length": 1, - "const": 1, - "DamageMultiplier": 28, - "DamagePercentage": 3, - "bUseXMPFeel": 4, - "FlashbangModeString": 1, - "struct": 1, - "WeaponInfo": 2, - "{": 28, - "ReplacedWeaponClass": 1, - "Generated": 4, - "from": 6, - "ReplacedWeaponClassName.": 2, - "This": 3, - "is": 6, - "what": 1, - "we": 3, - "replace.": 1, - "ReplacedWeaponPickupClass": 1, - "UNUSED": 1, - "ReplacedAmmoPickupClass": 1, - "WeaponClass": 1, - "the": 31, - "weapon": 10, - "are": 1, - "going": 1, - "to": 4, - "put": 1, - "inside": 1, - "world.": 1, - "WeaponPickupClassName": 1, - "WeponClass.": 1, - "AmmoPickupClassName": 1, - "WeaponClass.": 1, - "bEnabled": 1, - "Structs": 1, - "can": 2, - "d": 1, - "thus": 1, - "still": 1, - "require": 1, - "bConfigUseU2WeaponX": 1, - "indicates": 1, - "that": 3, - "spawns": 1, - "a": 2, - "vehicle": 3, - "deployable": 1, - "turrets": 1, - ".": 2, - "These": 1, - "only": 2, - "work": 1, - "in": 4, - "gametypes": 1, - "duh.": 1, - "Opposite": 1, - "of": 1, - "works": 1, - "non": 1, - "gametypes.": 2, - "Think": 1, - "shotgun.": 1, - "}": 27, - "Weapons": 31, - "function": 5, - "PostBeginPlay": 1, - "local": 8, - "FireMode": 8, - "x": 65, - "//local": 3, - "ReplacedWeaponPickupClassName": 1, - "//IterationNum": 1, - "ArrayCount": 2, - "Level.Game.bAllowVehicles": 4, - "He": 1, - "he": 1, - "neat": 1, - "way": 1, - "get": 1, - "required": 1, - "number.": 1, - "for": 11, - "<": 9, - "+": 18, - ".bEnabled": 3, - "GetPropertyText": 5, - "needed": 1, - "use": 1, - "variables": 1, - "an": 1, - "array": 2, - "like": 1, - "fashion.": 1, - "//bUseU2Weapon": 1, - ".ReplacedWeaponClass": 5, - "DynamicLoadObject": 2, - "//ReplacedWeaponClasses": 1, - "//ReplacedWeaponPickupClassName": 1, - ".default.PickupClass": 1, - "if": 55, - ".ReplacedWeaponClass.default.FireModeClass": 4, - "None": 10, - "&&": 15, - ".default.AmmoClass": 1, - ".default.AmmoClass.default.PickupClass": 2, - ".ReplacedAmmoPickupClass": 2, - "break": 1, - ".WeaponClass": 7, - ".WeaponPickupClassName": 1, - ".WeaponClass.default.PickupClass": 1, - ".AmmoPickupClassName": 2, - ".bIsVehicle": 2, - ".bNotVehicle": 2, - "Super.PostBeginPlay": 1, - "ValidReplacement": 6, - "return": 47, - "CheckReplacement": 1, - "Actor": 1, - "Other": 23, - "out": 2, - "bSuperRelevant": 3, - "i": 12, - "WeaponLocker": 3, - "L": 2, - "xWeaponBase": 3, - ".WeaponType": 2, - "false": 3, - "true": 5, - "Weapon": 1, - "Other.IsA": 2, - "Other.Class": 2, - "Ammo": 1, - "ReplaceWith": 1, - "L.Weapons.Length": 1, - "L.Weapons": 2, - "//STARTING": 1, - "WEAPON": 1, - "xPawn": 6, - ".RequiredEquipment": 3, - "True": 2, - "Special": 1, - "handling": 1, - "Shield": 2, - "Reward": 2, - "integration": 1, - "ShieldPack": 7, - ".SetStaticMesh": 1, - "StaticMesh": 1, - ".Skins": 1, - "Shader": 2, - ".RepSkin": 1, - ".SetDrawScale": 1, - ".SetCollisionSize": 1, - ".PickupMessage": 1, - ".PickupSound": 1, - "Sound": 1, - "Super.CheckReplacement": 1, - "GetInventoryClassOverride": 1, - "InventoryClassName": 3, - "Super.GetInventoryClassOverride": 1, - "static": 2, - "FillPlayInfo": 1, - "PlayInfo": 3, - "": 1, - "Recs": 4, - "WeaponOptions": 17, - "Super.FillPlayInfo": 1, - ".static.GetWeaponList": 1, - "Recs.Length": 1, - ".ClassName": 1, - ".FriendlyName": 1, - "PlayInfo.AddSetting": 33, - "default.RulesGroup": 33, - "default.U2WeaponDisplayText": 33, - "event": 3, - "GetDescriptionText": 1, - "PropName": 35, - "default.U2WeaponDescText": 33, - "Super.GetDescriptionText": 1, - "PreBeginPlay": 1, - "float": 3, - "k": 29, - "Multiplier.": 1, - "Super.PreBeginPlay": 1, - "/100.0": 1, - "//log": 1, - "@k": 1, - "//Sets": 1, - "various": 1, - "settings": 1, - "match": 1, - "different": 1, - "games": 1, - ".default.DamagePercentage": 1, - "//Original": 1, - "U2": 3, - "compensate": 1, - "division": 1, - "errors": 1, - "Class": 105, - ".default.DamageMin": 12, - "*": 54, - ".default.DamageMax": 12, - ".default.Damage": 27, - ".default.myDamage": 4, - "//Dampened": 1, - "already": 1, - "no": 2, - "need": 1, - "rewrite": 1, - "else": 1, - "//General": 2, - "XMP": 4, - ".default.Spread": 1, - ".default.MaxAmmo": 7, - ".default.Speed": 8, - ".default.MomentumTransfer": 4, - ".default.ClipSize": 4, - ".default.FireLastReloadTime": 3, - ".default.DamageRadius": 4, - ".default.LifeSpan": 4, - ".default.ShakeRadius": 1, - ".default.ShakeMagnitude": 1, - ".default.MaxSpeed": 5, - ".default.FireRate": 3, - ".default.ReloadTime": 3, - "//3200": 1, - "too": 1, - "much": 1, - ".default.VehicleDamageScaling": 2, - "*k": 28, - "//Experimental": 1, - "options": 1, - "lets": 1, - "you": 2, - "Unuse": 1, - "EMPimp": 1, - "projectile": 1, - "and": 3, - "fire": 1, - "two": 1, - "CAR": 1, - "barrels": 1, - "//CAR": 1, - "nothing": 1, - "U2Weapons.U2AssaultRifleFire": 1, - "U2Weapons.U2AssaultRifleAltFire": 1, - "U2ProjectileConcussionGrenade": 1, - "U2Weapons.U2AssaultRifleInv": 1, - "U2Weapons.U2WeaponEnergyRifle": 1, - "U2Weapons.U2WeaponFlameThrower": 1, - "U2Weapons.U2WeaponPistol": 1, - "U2Weapons.U2AutoTurretDeploy": 1, - "U2Weapons.U2WeaponRocketLauncher": 1, - "U2Weapons.U2WeaponGrenadeLauncher": 1, - "U2Weapons.U2WeaponSniper": 2, - "U2Weapons.U2WeaponRocketTurret": 1, - "U2Weapons.U2WeaponLandMine": 1, - "U2Weapons.U2WeaponLaserTripMine": 1, - "U2Weapons.U2WeaponShotgun": 1, - "s": 7, - "Minigun.": 1, - "Enable": 5, - "Shock": 1, - "Lance": 1, - "Energy": 2, - "Rifle": 3, - "What": 7, - "should": 7, - "be": 8, - "replaced": 8, - "with": 9, - "Rifle.": 3, - "By": 7, - "it": 7, - "Bio": 1, - "Magnum": 2, - "Pistol": 1, - "Pistol.": 1, - "Onslaught": 1, - "Grenade": 1, - "Launcher.": 2, - "Shark": 2, - "Rocket": 4, - "Launcher": 1, - "Flak": 1, - "Cannon.": 1, - "Should": 1, - "Lightning": 1, - "Gun": 2, - "Widowmaker": 2, - "Sniper": 3, - "Classic": 1, - "here.": 1, - "Turret": 2, - "delpoyable": 1, - "deployable.": 1, - "Redeemer.": 1, - "Laser": 2, - "Trip": 2, - "Mine": 1, - "Mine.": 1, - "t": 2, - "replace": 1, - "Link": 1, - "matches": 1, - "vehicles.": 1, - "Crowd": 1, - "Pleaser": 1, - "Shotgun.": 1, - "have": 1, - "shields": 1, - "or": 2, - "damage": 1, - "filtering.": 1, - "If": 1, - "checked": 1, - "mutator": 1, - "produces": 1, - "Unreal": 4, - "II": 4, - "shield": 1, - "pickups.": 1, - "Choose": 1, - "between": 2, - "white": 1, - "overlay": 3, - "depending": 2, - "on": 2, - "player": 2, - "view": 1, - "style": 1, - "distance": 1, - "foolproof": 1, - "FM_DistanceBased": 1, - "Arena": 1, - "Add": 1, - "weapons": 1, - "other": 1, - "Fully": 1, - "customisable": 1, - "choose": 1, - "behaviour.": 1, - "US3HelloWorld": 1, - "GameInfo": 1, - "InitGame": 1, - "Options": 1, - "Error": 1, - "log": 1, - "defaultproperties": 1 - }, - "VCL": { - "sub": 23, - "vcl_recv": 2, - "{": 50, - "if": 14, - "(": 50, - "req.request": 18, - "&&": 14, - ")": 50, - "return": 33, - "pipe": 4, - ";": 48, - "}": 50, - "pass": 9, - "req.http.Authorization": 2, - "||": 4, - "req.http.Cookie": 2, - "lookup": 2, - "vcl_pipe": 2, - "vcl_pass": 2, - "vcl_hash": 2, - "set": 10, - "req.hash": 3, - "+": 17, - "req.url": 2, - "req.http.host": 4, - "else": 3, - "server.ip": 2, - "hash": 2, - "vcl_hit": 2, - "obj.cacheable": 2, - "deliver": 8, - "vcl_miss": 2, - "fetch": 3, - "vcl_fetch": 2, - "obj.http.Set": 1, - "-": 21, - "Cookie": 2, - "obj.prefetch": 1, - "s": 3, - "vcl_deliver": 2, - "vcl_discard": 1, - "discard": 2, - "vcl_prefetch": 1, - "vcl_timeout": 1, - "vcl_error": 2, - "obj.http.Content": 2, - "Type": 2, - "synthetic": 2, - "utf": 2, - "//W3C//DTD": 2, - "XHTML": 2, - "Strict//EN": 2, - "http": 3, - "//www.w3.org/TR/xhtml1/DTD/xhtml1": 2, - "strict.dtd": 2, - "obj.status": 4, - "obj.response": 6, - "req.xid": 2, - "//www.varnish": 1, - "cache.org/": 1, - "req.restarts": 1, - "req.http.x": 1, - "forwarded": 1, - "for": 1, - "req.http.X": 3, - "Forwarded": 3, - "For": 3, - "client.ip": 2, - "hash_data": 3, - "beresp.ttl": 2, - "<": 1, - "beresp.http.Set": 1, - "beresp.http.Vary": 1, - "hit_for_pass": 1, - "obj.http.Retry": 1, - "After": 1, - "vcl_init": 1, - "ok": 2, - "vcl_fini": 1 - }, - "Verilog": { - "////////////////////////////////////////////////////////////////////////////////": 14, - "//": 117, - "timescale": 10, - "ns": 8, - "/": 11, - "ps": 8, - "module": 18, - "button_debounce": 3, - "(": 378, - "input": 68, - "clk": 40, - "clock": 3, - "reset_n": 32, - "asynchronous": 2, - "reset": 13, - "button": 25, - "bouncy": 1, - "output": 42, - "reg": 26, - "debounce": 6, - "debounced": 1, - "-": 73, - "cycle": 1, - "signal": 3, - ")": 378, - ";": 287, - "parameter": 7, - "CLK_FREQUENCY": 4, - "DEBOUNCE_HZ": 4, - "localparam": 4, - "COUNT_VALUE": 2, - "WAIT": 6, - "FIRE": 4, - "COUNT": 4, - "[": 179, - "]": 179, - "state": 6, - "next_state": 6, - "count": 6, - "always": 23, - "@": 16, - "posedge": 11, - "or": 14, - "negedge": 8, - "<": 47, - "begin": 46, - "if": 23, - "end": 48, - "else": 22, - "case": 3, - "<=>": 4, - "1": 7, - "endcase": 3, - "default": 2, - "endmodule": 18, - "control": 1, - "en": 13, - "dsp_sel": 9, - "an": 6, - "wire": 67, - "a": 5, - "b": 3, - "c": 3, - "d": 3, - "e": 3, - "f": 2, - "g": 2, - "h": 2, - "i": 62, - "j": 2, - "k": 2, - "l": 2, - "assign": 23, - "FDRSE": 6, - "#": 10, - ".INIT": 6, - "b0": 27, - "Synchronous": 12, - ".S": 6, - "b1": 19, - "Initial": 6, - "value": 6, - "of": 8, - "register": 6, - "DFF2": 1, - ".Q": 6, - "Data": 13, - ".C": 6, - "Clock": 14, - ".CE": 6, - "enable": 6, - ".D": 6, - ".R": 6, - "set": 6, - "DFF0": 1, - "DFF6": 1, - "DFF4": 1, - "DFF10": 1, - "DFF8": 1, - "hex_display": 1, - "num": 5, - "hex0": 2, - "hex1": 2, - "hex2": 2, - "hex3": 2, - "seg_7": 4, - "hex_group0": 1, - ".num": 4, - ".en": 4, - ".seg": 4, - "hex_group1": 1, - "hex_group2": 1, - "hex_group3": 1, - "mux": 1, - "opA": 4, - "opB": 3, - "sum": 5, - "out": 5, - "cout": 4, - "b0000": 1, - "b01": 1, - "b11": 1, - "pipeline_registers": 1, - "BIT_WIDTH": 5, - "pipe_in": 4, - "pipe_out": 5, - "NUMBER_OF_STAGES": 7, - "generate": 3, - "genvar": 3, - "*": 4, - "BIT_WIDTH*": 5, - "pipe_gen": 6, - "for": 4, - "+": 36, - "pipeline": 2, - "BIT_WIDTH*i": 2, - "endgenerate": 3, - "ps2_mouse": 1, - "Input": 2, - "Reset": 1, - "inout": 2, - "ps2_clk": 3, - "PS2": 2, - "Bidirectional": 2, - "ps2_dat": 3, - "the_command": 2, - "Command": 1, - "to": 3, - "send": 2, - "mouse": 1, - "send_command": 2, - "Signal": 2, - "command_was_sent": 2, - "command": 1, - "finished": 1, - "sending": 1, - "error_communication_timed_out": 3, - "received_data": 2, - "Received": 1, - "data": 4, - "received_data_en": 4, - "If": 1, - "new": 1, - "has": 1, - "been": 1, - "received": 1, - "start_receiving_data": 3, - "wait_for_incoming_data": 3, - "ps2_clk_posedge": 3, - "Internal": 2, - "Wires": 1, - "ps2_clk_negedge": 3, - "idle_counter": 4, - "Registers": 2, - "ps2_clk_reg": 4, - "ps2_data_reg": 5, - "last_ps2_clk": 4, - "ns_ps2_transceiver": 13, - "State": 1, - "Machine": 1, - "s_ps2_transceiver": 8, - "PS2_STATE_0_IDLE": 10, - "h1": 1, - "PS2_STATE_2_COMMAND_OUT": 2, - "h3": 1, - "PS2_STATE_4_END_DELAYED": 4, - "Defaults": 1, - "PS2_STATE_1_DATA_IN": 3, - "||": 1, - "PS2_STATE_3_END_TRANSFER": 3, - "h00": 1, - "&&": 3, - "h01": 1, - "ps2_mouse_cmdout": 1, - "mouse_cmdout": 1, - ".clk": 6, - "Inputs": 2, - ".reset": 2, - ".the_command": 1, - ".send_command": 1, - ".ps2_clk_posedge": 2, - ".ps2_clk_negedge": 2, - ".ps2_clk": 1, - "Bidirectionals": 1, - ".ps2_dat": 1, - ".command_was_sent": 1, - "Outputs": 2, - ".error_communication_timed_out": 1, - "ps2_mouse_datain": 1, - "mouse_datain": 1, - ".wait_for_incoming_data": 1, - ".start_receiving_data": 1, - ".ps2_data": 1, - ".received_data": 1, - ".received_data_en": 1, - "ns/1ps": 2, - "e0": 1, - "x": 41, - "y": 21, - "{": 11, - "}": 11, - "e1": 1, - "ch": 1, - "z": 7, - "o": 6, - "&": 6, - "maj": 1, - "|": 2, - "s0": 1, - "s1": 1, - "sign_extender": 1, - "INPUT_WIDTH": 5, - "OUTPUT_WIDTH": 4, - "original": 3, - "sign_extended_original": 2, - "sign_extend": 3, - "gen_sign_extend": 1, - "sqrt_pipelined": 3, - "start": 12, - "optional": 2, - "INPUT_BITS": 28, - "radicand": 12, - "unsigned": 2, - "data_valid": 7, - "valid": 2, - "OUTPUT_BITS": 14, - "root": 8, - "number": 2, - "bits": 2, - "any": 1, - "integer": 1, - "%": 3, - "start_gen": 7, - "propagation": 1, - "OUTPUT_BITS*INPUT_BITS": 9, - "root_gen": 15, - "values": 3, - "radicand_gen": 10, - "mask_gen": 9, - "mask": 3, - "mask_4": 1, - "is": 4, - "odd": 1, - "this": 2, - "INPUT_BITS*": 27, - "<<": 2, - "i/2": 2, - "even": 1, - "pipeline_stage": 1, - "INPUT_BITS*i": 5, - "t_button_debounce": 1, - ".CLK_FREQUENCY": 1, - ".DEBOUNCE_HZ": 1, - ".reset_n": 3, - ".button": 1, - ".debounce": 1, - "initial": 3, - "bx": 4, - "#10": 10, - "#5": 3, - "#100": 1, - "#0.1": 8, - "t_div_pipelined": 1, - "dividend": 3, - "divisor": 5, - "div_by_zero": 2, - "quotient": 2, - "quotient_correct": 1, - "BITS": 2, - "div_pipelined": 2, - ".BITS": 1, - ".dividend": 1, - ".divisor": 1, - ".quotient": 1, - ".div_by_zero": 1, - ".start": 2, - ".data_valid": 2, - "#50": 2, - "#1": 1, - "#1000": 1, - "finish": 2, - "t_sqrt_pipelined": 1, - ".INPUT_BITS": 1, - ".radicand": 1, - ".root": 1, - "#10000": 1, - "vga": 1, - "wb_clk_i": 6, - "Mhz": 1, - "VDU": 1, - "wb_rst_i": 6, - "wb_dat_i": 3, - "wb_dat_o": 2, - "wb_adr_i": 3, - "wb_we_i": 3, - "wb_tga_i": 5, - "wb_sel_i": 3, - "wb_stb_i": 2, - "wb_cyc_i": 2, - "wb_ack_o": 2, - "vga_red_o": 2, - "vga_green_o": 2, - "vga_blue_o": 2, - "horiz_sync": 2, - "vert_sync": 2, - "csrm_adr_o": 2, - "csrm_sel_o": 2, - "csrm_we_o": 2, - "csrm_dat_o": 2, - "csrm_dat_i": 2, - "csr_adr_i": 3, - "csr_stb_i": 2, - "conf_wb_dat_o": 3, - "conf_wb_ack_o": 3, - "mem_wb_dat_o": 3, - "mem_wb_ack_o": 3, - "csr_adr_o": 2, - "csr_dat_i": 3, - "csr_stb_o": 3, - "v_retrace": 3, - "vh_retrace": 3, - "w_vert_sync": 3, - "shift_reg1": 3, - "graphics_alpha": 4, - "memory_mapping1": 3, - "write_mode": 3, - "raster_op": 3, - "read_mode": 3, - "bitmask": 3, - "set_reset": 3, - "enable_set_reset": 3, - "map_mask": 3, - "x_dotclockdiv2": 3, - "chain_four": 3, - "read_map_select": 3, - "color_compare": 3, - "color_dont_care": 3, - "wbm_adr_o": 3, - "wbm_sel_o": 3, - "wbm_we_o": 3, - "wbm_dat_o": 3, - "wbm_dat_i": 3, - "wbm_stb_o": 3, - "wbm_ack_i": 3, - "stb": 4, - "cur_start": 3, - "cur_end": 3, - "start_addr": 2, - "vcursor": 3, - "hcursor": 3, - "horiz_total": 3, - "end_horiz": 3, - "st_hor_retr": 3, - "end_hor_retr": 3, - "vert_total": 3, - "end_vert": 3, - "st_ver_retr": 3, - "end_ver_retr": 3, - "pal_addr": 3, - "pal_we": 3, - "pal_read": 3, - "pal_write": 3, - "dac_we": 3, - "dac_read_data_cycle": 3, - "dac_read_data_register": 3, - "dac_read_data": 3, - "dac_write_data_cycle": 3, - "dac_write_data_register": 3, - "dac_write_data": 3, - "vga_config_iface": 1, - "config_iface": 1, - ".wb_clk_i": 2, - ".wb_rst_i": 2, - ".wb_dat_i": 2, - ".wb_dat_o": 2, - ".wb_adr_i": 2, - ".wb_we_i": 2, - ".wb_sel_i": 2, - ".wb_stb_i": 2, - ".wb_ack_o": 2, - ".shift_reg1": 2, - ".graphics_alpha": 2, - ".memory_mapping1": 2, - ".write_mode": 2, - ".raster_op": 2, - ".read_mode": 2, - ".bitmask": 2, - ".set_reset": 2, - ".enable_set_reset": 2, - ".map_mask": 2, - ".x_dotclockdiv2": 2, - ".chain_four": 2, - ".read_map_select": 2, - ".color_compare": 2, - ".color_dont_care": 2, - ".pal_addr": 2, - ".pal_we": 2, - ".pal_read": 2, - ".pal_write": 2, - ".dac_we": 2, - ".dac_read_data_cycle": 2, - ".dac_read_data_register": 2, - ".dac_read_data": 2, - ".dac_write_data_cycle": 2, - ".dac_write_data_register": 2, - ".dac_write_data": 2, - ".cur_start": 2, - ".cur_end": 2, - ".start_addr": 1, - ".vcursor": 2, - ".hcursor": 2, - ".horiz_total": 2, - ".end_horiz": 2, - ".st_hor_retr": 2, - ".end_hor_retr": 2, - ".vert_total": 2, - ".end_vert": 2, - ".st_ver_retr": 2, - ".end_ver_retr": 2, - ".v_retrace": 2, - ".vh_retrace": 2, - "vga_lcd": 1, - "lcd": 1, - ".rst": 1, - ".csr_adr_o": 1, - ".csr_dat_i": 1, - ".csr_stb_o": 1, - ".vga_red_o": 1, - ".vga_green_o": 1, - ".vga_blue_o": 1, - ".horiz_sync": 1, - ".vert_sync": 1, - "vga_cpu_mem_iface": 1, - "cpu_mem_iface": 1, - ".wbs_adr_i": 1, - ".wbs_sel_i": 1, - ".wbs_we_i": 1, - ".wbs_dat_i": 1, - ".wbs_dat_o": 1, - ".wbs_stb_i": 1, - ".wbs_ack_o": 1, - ".wbm_adr_o": 1, - ".wbm_sel_o": 1, - ".wbm_we_o": 1, - ".wbm_dat_o": 1, - ".wbm_dat_i": 1, - ".wbm_stb_o": 1, - ".wbm_ack_i": 1, - "vga_mem_arbitrer": 1, - "mem_arbitrer": 1, - ".clk_i": 1, - ".rst_i": 1, - ".csr_adr_i": 1, - ".csr_dat_o": 1, - ".csr_stb_i": 1, - ".csrm_adr_o": 1, - ".csrm_sel_o": 1, - ".csrm_we_o": 1, - ".csrm_dat_o": 1, - ".csrm_dat_i": 1 - }, - "VHDL": { - "-": 2, - "VHDL": 1, - "example": 1, - "file": 1, - "library": 1, - "ieee": 1, - ";": 7, - "use": 1, - "ieee.std_logic_1164.all": 1, - "entity": 2, - "inverter": 2, - "is": 2, - "port": 1, - "(": 1, - "a": 2, - "in": 1, - "std_logic": 2, - "b": 2, - "out": 1, - ")": 1, - "end": 2, - "architecture": 2, - "rtl": 1, - "of": 1, - "begin": 1, - "<": 1, - "not": 1 - }, - "VimL": { - "no": 1, - "toolbar": 1, - "set": 7, - "guioptions": 1, + "cudaError_t": 1, + "err": 5, + "cudaSuccess": 2, + "threadsPerBlock": 4, + "blocksPerGrid": 1, "-": 1, - "T": 1, - "nocompatible": 1, - "ignorecase": 1, - "incsearch": 1, - "smartcase": 1, - "showmatch": 1, - "showcmd": 1, - "syntax": 1, - "on": 1 + "/": 2, + "<<": 1, + "": 1, + "d_A": 2, + "d_B": 2, + "d_C": 2, + "cudaGetLastError": 1, + "fprintf": 1, + "stderr": 1, + "cudaGetErrorString": 1, + "exit": 1, + "EXIT_FAILURE": 1, + "cudaDeviceReset": 1, + "return": 1, + "scalarProdGPU": 1, + "*d_C": 1, + "*d_A": 1, + "*d_B": 1, + "vectorN": 2, + "elementN": 3, + "//Accumulators": 1, + "cache": 1, + "__shared__": 1, + "accumResult": 5, + "ACCUM_N": 4, + "////////////////////////////////////////////////////////////////////////////": 2, + "for": 5, + "vec": 5, + "gridDim.x": 1, + "vectorBase": 3, + "IMUL": 1, + "vectorEnd": 2, + "////////////////////////////////////////////////////////////////////////": 4, + "iAccum": 10, + "sum": 3, + "pos": 5, + "stride": 5, + "__syncthreads": 1 }, - "Visual Basic": { - "VERSION": 1, - "CLASS": 1, - "BEGIN": 1, - "MultiUse": 1, - "-": 9, - "NotPersistable": 1, - "DataBindingBehavior": 1, - "vbNone": 1, - "MTSTransactionMode": 1, - "*************************************************************************************************************************************************************************************************************************************************": 2, - "Copyright": 1, - "(": 20, - "c": 1, - ")": 20, - "David": 1, - "Briant": 1, - "All": 1, - "rights": 1, - "reserved": 1, - "Option": 1, - "Explicit": 1, - "Private": 25, - "Declare": 3, - "Function": 5, - "apiSetProp": 4, - "Lib": 3, - "Alias": 3, - "ByVal": 6, - "hwnd": 2, - "As": 34, - "Long": 10, - "lpString": 2, - "String": 13, - "hData": 1, - "apiGlobalAddAtom": 3, - "apiSetForegroundWindow": 1, - "myMouseEventsForm": 5, - "fMouseEventsForm": 2, - "WithEvents": 3, - "myAST": 3, - "cTP_AdvSysTray": 2, - "Attribute": 3, - "myAST.VB_VarHelpID": 1, - "myClassName": 2, - "myWindowName": 2, - "Const": 9, - "TEN_MILLION": 1, - "Single": 1, - "myListener": 1, - "VLMessaging.VLMMMFileListener": 1, - "myListener.VB_VarHelpID": 1, - "myMMFileTransports": 2, - "VLMessaging.VLMMMFileTransports": 1, - "myMMFileTransports.VB_VarHelpID": 1, - "myMachineID": 1, - "myRouterSeed": 1, - "myRouterIDsByMMTransportID": 1, - "New": 6, - "Dictionary": 3, - "myMMTransportIDsByRouterID": 2, - "myDirectoryEntriesByIDString": 1, - "GET_ROUTER_ID": 1, - "GET_ROUTER_ID_REPLY": 1, - "REGISTER_SERVICE": 1, - "REGISTER_SERVICE_REPLY": 1, - "UNREGISTER_SERVICE": 1, - "UNREGISTER_SERVICE_REPLY": 1, - "GET_SERVICES": 1, - "GET_SERVICES_REPLY": 1, - "Initialize": 1, - "/": 1, - "Release": 1, - "hide": 1, - "us": 1, - "from": 2, - "the": 7, - "Applications": 1, - "list": 1, - "in": 1, - "Windows": 1, - "Task": 1, - "Manager": 1, - "App.TaskVisible": 1, - "False": 1, - "create": 1, - "tray": 1, - "icon": 1, - "Set": 5, - "myAST.create": 1, - "myMouseEventsForm.icon": 1, - "make": 1, - "myself": 1, - "easily": 2, - "found": 1, - "myMouseEventsForm.hwnd": 3, - "End": 11, - "Sub": 9, - "shutdown": 1, - "myAST.destroy": 1, - "Nothing": 2, - "Unload": 1, - "myAST_RButtonUp": 1, - "Dim": 1, - "epm": 1, - "cTP_EasyPopupMenu": 1, - "menuItemSelected": 1, - "epm.addMenuItem": 3, - "MF_STRING": 3, - "epm.addSubmenuItem": 2, - "MF_SEPARATOR": 1, - "MF_CHECKED": 1, - "route": 2, - "to": 4, - "a": 4, - "remote": 1, - "machine": 1, - "Else": 1, - "for": 4, - "moment": 1, - "just": 1, - "between": 1, - "MMFileTransports": 1, - "If": 4, - "myMMTransportIDsByRouterID.Exists": 1, - "message.toAddress.RouterID": 2, - "Then": 1, - "transport": 1, - "transport.send": 1, - "messageToBytes": 1, - "message": 1, - "directoryEntryIDString": 2, - "serviceType": 2, - "address": 1, - "VLMAddress": 1, - "&": 7, - "address.MachineID": 1, - "address.RouterID": 1, - "address.AgentID": 1, - "myMMFileTransports_disconnecting": 1, - "id": 1, - "oReceived": 2, - "Boolean": 1, - "True": 1, - "@Code": 1, - "ViewData": 1, - "Code": 1, - "@section": 1, - "featured": 1, - "": 1, - "Section": 1, - "

": 1, - "We": 1, - "suggest": 1, - "following": 1, - "

": 1, - "
    ": 1, - "
  1. ": 3, - "
    ": 3, - "Getting": 1, - "Started": 1, - "
    ": 3, - "gives": 2, - "powerful": 1, - "patterns": 1, - "based": 1, - "way": 1, - "build": 1, - "dynamic": 1, - "websites": 1, - "that": 5, - "enables": 1, - "clean": 1, - "separation": 1, - "of": 2, - "concerns": 1, - "full": 1, - "control": 1, - "over": 1, - "markup": 1, - "enjoyable": 1, - "agile": 1, - "development.": 1, - "includes": 1, - "many": 1, - "enable": 1, - "fast": 1, - "TDD": 1, - "friendly": 1, - "development": 1, - "creating": 1, - "sophisticated": 1, - "applications": 1, - "use": 1, - "latest": 1, - "web": 2, - "standards.": 1, - "Learn": 3, - "
  2. ": 3, - "Add": 1, - "NuGet": 2, - "packages": 1, - "jump": 1, - "start": 1, - "your": 2, - "coding": 1, - "makes": 1, - "it": 1, - "easy": 1, - "install": 1, - "update": 1, - "free": 1, - "libraries": 1, - "tools.": 1, - "Find": 1, - "Web": 1, - "Hosting": 1, - "You": 1, - "can": 1, - "find": 1, - "hosting": 1, - "company": 1, - "offers": 1, - "right": 1, - "mix": 1, - "price": 1, - "applications.": 1, - "
": 1, - "Module": 2, - "Module1": 1, - "Main": 1, - "Console.Out.WriteLine": 2 - }, - "Volt": { - "module": 1, - "main": 2, - ";": 53, - "import": 7, - "core.stdc.stdio": 1, - "core.stdc.stdlib": 1, - "watt.process": 1, - "watt.path": 1, - "results": 1, - "list": 1, - "cmd": 1, - "int": 8, - "(": 37, - ")": 37, - "{": 12, - "auto": 6, - "cmdGroup": 2, - "new": 3, - "CmdGroup": 1, - "bool": 4, - "printOk": 2, - "true": 4, - "printImprovments": 2, - "printFailing": 2, - "printRegressions": 2, - "string": 1, - "compiler": 3, - "getEnv": 1, - "if": 7, - "is": 2, - "null": 3, - "printf": 6, - ".ptr": 14, - "return": 2, + "Less": { + "@blue": 4, + "#3bbfce": 1, + ";": 7, + "@margin": 3, + "px": 1, + ".content": 1, "-": 3, - "}": 12, - "///": 1, - "@todo": 1, - "Scan": 1, - "for": 4, + "navigation": 1, + "{": 2, + "border": 2, + "color": 3, + "darken": 1, + "(": 1, + "%": 1, + ")": 1, + "}": 2, + ".border": 1, + "padding": 1, + "/": 2, + "margin": 1 + }, + "ATS": { + "//": 211, + "absvtype": 2, + "set_vtype": 3, + "(": 562, + "a": 200, + "t@ype": 2, + "+": 20, + ")": 567, + "ptr": 2, + "vtypedef": 2, + "set": 34, + "t0p": 31, + "fun": 56, + "{": 142, + "}": 141, + "compare_elt_elt": 4, + "x1": 1, + "x2": 1, + "<": 14, + "int": 2, + "linset_nil": 2, + "linset_make_nil": 2, + "linset_sing": 2, + "x": 48, + "": 16, + "linset_make_sing": 2, + "linset_make_list": 1, + "xs": 82, + "List": 1, + "INV": 24, + "linset_is_nil": 2, + "bool": 27, + "linset_isnot_nil": 2, + "linset_size": 2, + "size_t": 1, + "linset_is_member": 3, + "x0": 22, + "linset_isnot_member": 1, + "linset_copy": 2, + "linset_free": 2, + "void": 14, + "linset_insert": 3, + "&": 17, + "_": 25, + "linset_takeout": 1, + "res": 9, + "opt": 6, + "b": 26, + "#": 7, + "[": 49, + "]": 48, + "endfun": 1, + "linset_takeout_opt": 1, + "Option_vt": 4, + "linset_remove": 2, + "linset_choose": 3, + "linset_choose_opt": 1, + "linset_takeoutmax": 1, + "linset_takeoutmax_opt": 1, + "linset_takeoutmin": 1, + "linset_takeoutmin_opt": 1, + "fprint_linset": 3, + "sep": 1, + "FILEref": 2, + "out": 8, + "overload": 1, + "fprint": 3, + "with": 1, + "env": 11, + "vt0p": 2, + "linset_foreach": 3, + "fwork": 3, + "linset_foreach_env": 3, + "linset_listize": 2, + "List0_vt": 5, + "linset_listize1": 2, + "#include": 16, + "staload": 25, + "sortdef": 2, + "ftype": 13, + "type": 30, + "-": 49, + "infixr": 2, + "typedef": 10, + "": 2, + "functor": 12, + "F": 34, + "list0": 9, + "extern": 13, + "val": 95, + "functor_list0": 7, + "implement": 55, + "f": 22, + "lam": 20, + "list0_map": 2, + "": 14, + "": 3, + "datatype": 4, + "CoYoneda": 7, + "r": 25, + "of": 59, + "CoYoneda_phi": 2, + "CoYoneda_psi": 3, + "ftor": 9, + "fx": 8, + "int0": 4, + "I": 8, + "True": 7, + "|": 22, + "False": 8, + "boxed": 2, + "boolean": 2, + "bool2string": 4, + "string": 2, + "case": 9, + "fprint_val": 2, + "": 2, + "int2bool": 2, + "i": 6, + "let": 34, + "in": 48, + "if": 7, + "then": 11, + "else": 7, + "end": 73, + "myintlist0": 2, + "g0ofg1": 1, + "list": 1, + "myboolist0": 9, + "fprintln": 3, + "stdout_ref": 4, + "main0": 3, + "UN": 3, + "phil_left": 3, + "n": 51, + "phil_right": 3, + "nmod": 1, + "NPHIL": 6, + "randsleep": 6, + "intGte": 1, + "ignoret": 2, + "sleep": 2, + "UN.cast": 2, + "uInt": 1, + "rand": 1, + "mod": 1, + "phil_think": 3, + "println": 9, + "phil_dine": 3, + "lf": 5, + "rf": 5, + "phil_loop": 10, + "nl": 2, + "nr": 2, + "ch_lfork": 2, + "fork_changet": 5, + "ch_rfork": 2, + "channel_takeout": 4, + "HX": 1, + "try": 1, + "to": 16, + "actively": 1, + "induce": 1, + "deadlock": 2, + "ch_forktray": 3, + "forktray_changet": 4, + "channel_insert": 5, + "cleaner_wash": 3, + "fork_get_num": 4, + "cleaner_return": 4, + "ch": 7, + "cleaner_loop": 6, + "f0": 3, + "dynload": 3, + "local": 10, + "mythread_create_cloptr": 6, + "llam": 6, + "while": 1, + "true": 5, + "option0": 3, + "functor_option0": 2, + "option0_map": 1, + "functor_homres": 2, + "c": 3, + "Yoneda_phi": 3, + "Yoneda_psi": 3, + "m": 4, + "mf": 4, + "natrans": 3, + "G": 2, + "Yoneda_phi_nat": 2, + "Yoneda_psi_nat": 2, + "*": 2, + "list_t": 1, + "g0ofg1_list": 1, + "Yoneda_bool_list0": 3, + "myboolist1": 2, + "%": 7, + "": 1, + "html": 1, + "PUBLIC": 1, + "W3C": 1, + "DTD": 2, + "XHTML": 1, + "1": 3, + "EN": 1, + "http": 2, + "www": 1, + "w3": 1, + "org": 1, + "TR": 1, + "xhtml11": 2, + "dtd": 1, + "": 1, + "xmlns=": 1, + "": 1, + "": 1, + "equiv=": 1, + "content=": 1, + "": 1, + "EFFECTIVATS": 1, + "DiningPhil2": 1, + "": 1, + "#patscode_style": 1, + "": 1, + "": 1, + "

": 1, + "Effective": 1, + "ATS": 2, + "Dining": 2, + "Philosophers": 2, + "

": 1, + "In": 2, + "this": 2, + "article": 2, + "present": 1, + "an": 6, + "implementation": 3, + "slight": 1, + "variant": 1, + "the": 30, + "famous": 1, + "problem": 1, + "by": 4, + "Dijkstra": 1, + "that": 8, + "makes": 1, + "simple": 1, + "but": 1, + "convincing": 1, + "use": 1, + "linear": 2, + "types.": 1, + "

": 8, + "The": 8, + "Original": 2, + "Problem": 2, + "

": 8, + "There": 3, + "are": 7, + "five": 1, + "philosophers": 1, + "sitting": 1, + "around": 1, + "table": 3, + "and": 10, + "there": 3, + "also": 3, + "forks": 7, + "placed": 1, + "on": 8, + "such": 1, + "each": 2, + "fork": 16, + "is": 26, + "located": 2, + "between": 1, + "left": 3, + "hand": 6, + "philosopher": 5, + "right": 3, + "another": 1, + "philosopher.": 1, + "Each": 4, + "does": 1, + "following": 6, + "routine": 1, + "repeatedly": 1, + "thinking": 1, + "dining.": 1, + "order": 1, + "dine": 1, + "needs": 2, + "first": 2, + "acquire": 1, + "two": 3, + "one": 3, + "his": 4, + "side": 2, + "other": 2, + "side.": 2, + "After": 2, + "finishing": 1, + "dining": 1, + "puts": 2, + "acquired": 1, + "onto": 1, + "A": 6, + "Variant": 1, + "twist": 1, + "added": 1, + "original": 1, + "version": 1, + "

": 1, + "used": 1, + "it": 2, + "becomes": 1, + "be": 9, + "put": 1, + "tray": 2, + "for": 15, + "dirty": 2, + "forks.": 1, + "cleaner": 2, + "who": 1, + "cleans": 1, + "them": 2, + "back": 1, + "table.": 1, + "Channels": 1, + "Communication": 1, + "channel": 11, + "just": 1, + "shared": 1, + "queue": 1, + "fixed": 1, + "capacity.": 1, + "functions": 1, + "inserting": 1, + "element": 5, + "into": 3, + "taking": 1, + "given": 4, + "

": 7,
+      "class=": 6,
+      "#pats2xhtml_sats": 3,
+      "
": 7, + "If": 2, + "called": 2, + "full": 4, + "caller": 2, + "blocked": 3, + "until": 2, + "taken": 1, + "channel.": 2, + "empty": 1, + "inserted": 1, + "Channel": 2, + "Fork": 3, + "Forks": 1, + "resources": 1, + "type.": 1, + "initially": 1, + "stored": 2, + "which": 2, + "can": 4, + "obtained": 2, + "calling": 2, + "function": 3, + "where": 6, + "nphil": 13, + "defined": 1, + "natLt": 2, + "natural": 1, + "numbers": 1, + "less": 1, + "than": 1, + ".": 14, + "channels": 4, + "storing": 3, + "chosen": 3, + "capacity": 3, + "reason": 1, + "store": 1, + "at": 2, + "most": 1, + "guarantee": 1, + "these": 1, + "never": 2, + "so": 2, + "no": 2, + "attempt": 1, + "made": 1, + "send": 1, + "signals": 1, + "awake": 1, + "callers": 1, + "supposedly": 1, + "being": 2, + "due": 1, + "Tray": 1, + "instead": 1, + "become": 1, + "as": 4, + "only": 1, + "total": 1, + "Philosopher": 1, + "Loop": 2, + "implemented": 2, + "loop": 2, + "#pats2xhtml_dats": 3, + "It": 2, + "should": 3, + "straighforward": 2, + "follow": 2, + "code": 6, + "Cleaner": 1, + "finds": 1, + "number": 2, + "uses": 1, + "locate": 1, + "fork.": 1, + "Its": 1, + "actual": 1, + "follows": 1, + "now": 1, + "Testing": 1, + "entire": 1, "files": 1, - "tests": 2, - "testList": 1, - "total": 5, - "passed": 5, - "failed": 5, - "improved": 3, - "regressed": 6, - "rets": 5, - "Result": 2, - "[": 6, - "]": 6, - "tests.length": 3, - "size_t": 3, - "i": 14, + "DiningPhil2.sats": 1, + "DiningPhil2.dats": 1, + "DiningPhil2_fork.dats": 1, + "DiningPhil2_thread.dats": 1, + "Makefile": 1, + "available": 1, + "compiling": 1, + "source": 1, + "excutable": 1, + "testing.": 1, + "One": 1, + "able": 1, + "encounter": 1, + "after": 1, + "running": 1, + "simulation": 1, + "while.": 1, + "
": 1, + "size=": 1, + "This": 1, + "written": 1, + "href=": 1, + "Hongwei": 1, + "Xi": 1, + "
": 1, + "": 1, + "": 1, + "main": 1, + "fprint_filsub": 1, + "#define": 4, + "fork_vtype": 3, + "datavtype": 1, + "FORK": 3, + "assume": 2, + "the_forkarray": 2, + "t": 1, + "array_tabulate": 1, + "fopr": 1, + "": 2, + "channel_create_exn": 2, + "": 2, + "i2sz": 4, + "arrayref_tabulate": 1, + "the_forktray": 2, + "ATS_PACKNAME": 1, + "ATS_STALOADFLAG": 1, + "static": 1, + "loading": 1, + "run": 1, + "time": 1, + "castfn": 1, + "linset2list": 1, + "reuse": 2, + "elt": 2, + "list_vt_nil": 16, + "list_vt_cons": 17, + "list_vt_is_nil": 1, + "list_vt_is_cons": 1, + "list_vt_length": 1, + "aux": 4, + "nat": 4, + "": 3, + "list_vt": 7, + "sgn": 9, + "false": 6, + "list_vt_copy": 2, + "list_vt_free": 1, + "mynode_cons": 4, + "nx": 22, + "mynode1": 6, + "xs1": 15, + "UN.castvwtp0": 8, + "List1_vt": 5, + "@list_vt_cons": 5, + "xs2": 3, + "prval": 20, + "UN.cast2void": 5, + ";": 4, + "fold@": 8, + "ins": 3, + "tail": 1, + "recursive": 1, + "n1": 4, + "<=>": 1, + "mynode_make_elt": 4, + "ans": 2, + "found": 1, + "effmask_all": 3, + "free@": 1, + "xs1_": 3, + "rem": 1, + "opt_some": 1, + "opt_none": 1, + "list_vt_foreach": 1, + "": 3, + "list_vt_foreach_env": 1, + "mynode_null": 5, + "mynode": 3, + "null": 1, + "the_null_ptr": 1, + "mynode_free": 1, + "nx2": 4, + "mynode_get_elt": 1, + "nx1": 7, + "UN.castvwtp1": 2, + "mynode_set_elt": 1, + "l": 3, + "__assert": 2, + "praxi": 1, + "mynode_getfree_elt": 1, + "linset_takeout_ngc": 2, + "takeout": 3, + "mynode0": 1, + "pf_x": 6, + "view@x": 3, + "pf_xs1": 6, + "view@xs1": 3, + "linset_takeoutmax_ngc": 2, + "xs_": 4, + "@list_vt_nil": 1, + "linset_takeoutmin_ngc": 2, + "unsnoc": 4, + "pos": 1, + "fold@xs": 1 + }, + "PAWN": { + "//": 22, + "-": 1551, + "#include": 5, + "": 1, + "": 1, + "": 1, + "#pragma": 1, + "tabsize": 1, + "#define": 5, + "COLOR_WHITE": 2, + "xFFFFFFFF": 2, + "COLOR_NORMAL_PLAYER": 3, + "xFFBB7777": 1, + "CITY_LOS_SANTOS": 7, + "CITY_SAN_FIERRO": 4, + "CITY_LAS_VENTURAS": 6, + "new": 13, + "total_vehicles_from_files": 19, + ";": 257, + "gPlayerCitySelection": 21, + "[": 56, + "MAX_PLAYERS": 3, + "]": 56, + "gPlayerHasCitySelected": 6, + "gPlayerLastCitySelectionTick": 5, + "Text": 5, + "txtClassSelHelper": 14, + "txtLosSantos": 7, + "txtSanFierro": 7, + "txtLasVenturas": 7, + "thisanimid": 1, + "lastanimid": 1, + "main": 1, + "(": 273, + ")": 273, + "{": 39, + "print": 3, + "}": 39, + "public": 6, + "OnPlayerConnect": 1, + "playerid": 132, + "GameTextForPlayer": 1, + "SendClientMessage": 1, + "GetTickCount": 4, + "//SetPlayerColor": 2, + "//Kick": 1, + "return": 17, + "OnPlayerSpawn": 1, + "if": 28, + "IsPlayerNPC": 3, + "randSpawn": 16, + "SetPlayerInterior": 7, + "TogglePlayerClock": 2, + "ResetPlayerMoney": 3, + "GivePlayerMoney": 2, + "random": 3, + "sizeof": 3, + "gRandomSpawns_LosSantos": 5, + "SetPlayerPos": 6, + "SetPlayerFacingAngle": 6, + "else": 9, + "gRandomSpawns_SanFierro": 5, + "gRandomSpawns_LasVenturas": 5, + "SetPlayerSkillLevel": 11, + "WEAPONSKILL_PISTOL": 1, + "WEAPONSKILL_PISTOL_SILENCED": 1, + "WEAPONSKILL_DESERT_EAGLE": 1, + "WEAPONSKILL_SHOTGUN": 1, + "WEAPONSKILL_SAWNOFF_SHOTGUN": 1, + "WEAPONSKILL_SPAS12_SHOTGUN": 1, + "WEAPONSKILL_MICRO_UZI": 1, + "WEAPONSKILL_MP5": 1, + "WEAPONSKILL_AK47": 1, + "WEAPONSKILL_M4": 1, + "WEAPONSKILL_SNIPERRIFLE": 1, + "GivePlayerWeapon": 1, + "WEAPON_COLT45": 1, + "//GivePlayerWeapon": 1, + "WEAPON_MP5": 1, + "OnPlayerDeath": 1, + "killerid": 3, + "reason": 1, + "playercash": 4, + "INVALID_PLAYER_ID": 1, + "GetPlayerMoney": 1, + "ClassSel_SetupCharSelection": 2, + "SetPlayerCameraPos": 6, + "SetPlayerCameraLookAt": 6, + "ClassSel_InitCityNameText": 4, + "txtInit": 7, + "TextDrawUseBox": 2, + "TextDrawLetterSize": 2, + "TextDrawFont": 2, + "TextDrawSetShadow": 2, + "TextDrawSetOutline": 2, + "TextDrawColor": 2, + "xEEEEEEFF": 1, + "TextDrawBackgroundColor": 2, + "FF": 2, + "ClassSel_InitTextDraws": 2, + "TextDrawCreate": 4, + "TextDrawBoxColor": 1, + "BB": 1, + "TextDrawTextSize": 1, + "ClassSel_SetupSelectedCity": 3, + "TextDrawShowForPlayer": 4, + "TextDrawHideForPlayer": 10, + "ClassSel_SwitchToNextCity": 3, + "+": 19, + "PlayerPlaySound": 2, + "ClassSel_SwitchToPreviousCity": 2, "<": 3, - "+": 14, - ".runTest": 1, - "cmdGroup.waitAll": 1, - "ret": 1, - "ret.ok": 1, - "cast": 5, - "ret.hasPassed": 4, + "ClassSel_HandleCitySelection": 2, + "Keys": 3, + "ud": 2, + "lr": 4, + "GetPlayerKeys": 1, + "&": 1, + "KEY_FIRE": 1, + "TogglePlayerSpectating": 2, + "OnPlayerRequestClass": 1, + "classid": 1, + "GetPlayerState": 2, + "PLAYER_STATE_SPECTATING": 2, + "OnGameModeInit": 1, + "SetGameModeText": 1, + "ShowPlayerMarkers": 1, + "PLAYER_MARKERS_MODE_GLOBAL": 1, + "ShowNameTags": 1, + "SetNameTagDrawDistance": 1, + "EnableStuntBonusForAll": 1, + "DisableInteriorEnterExits": 1, + "SetWeather": 1, + "SetWorldTime": 1, + "//UsePlayerPedAnims": 1, + "//ManualVehicleEngineAndLights": 1, + "//LimitGlobalChatRadius": 1, + "AddPlayerClass": 69, + "//AddPlayerClass": 1, + "LoadStaticVehiclesFromFile": 17, + "printf": 1, + "OnPlayerUpdate": 1, + "IsPlayerConnected": 1, "&&": 2, - "ret.test.ptr": 4, - "ret.msg.ptr": 4, - "else": 3, - "fflush": 2, - "stdout": 1, - "xml": 8, - "fopen": 1, - "fprintf": 2, - "rets.length": 1, - ".xmlLog": 1, - "fclose": 1, - "rate": 2, - "float": 2, - "/": 1, - "*": 1, + "GetPlayerInterior": 1, + "GetPlayerWeapon": 2, + "SetPlayerArmedWeapon": 1, + "fists": 1, + "no": 1, + "syncing": 1, + "until": 1, + "they": 1, + "change": 1, + "their": 1, + "weapon": 1, + "WEAPON_MINIGUN": 1, + "Kick": 1 + }, + "Makefile": { + "all": 1, + "hello": 4, + "main.o": 3, + "factorial.o": 3, + "hello.o": 3, + "g": 4, + "+": 8, + "-": 6, + "o": 1, + "main.cpp": 2, + "c": 3, + "factorial.cpp": 2, + "hello.cpp": 2, + "clean": 1, + "rm": 1, + "rf": 1, + "*o": 1, + "SHEBANG#!make": 1, + "%": 1, + "ls": 1, + "l": 1 + }, + "Forth": { + "KataDiversion": 1, + "in": 4, + "Forth": 1, + "-": 473, + "utils": 1, + "empty": 2, + "the": 7, + "stack": 3, + "EMPTY": 1, + "DEPTH": 2, + "<": 14, + "IF": 10, + "BEGIN": 3, + "DROP": 5, + "UNTIL": 3, + "THEN": 10, + ";": 61, + "power": 2, + "**": 2, + "(": 88, + "n1": 2, + "n2": 2, + "n1_pow_n2": 1, + ")": 87, + "SWAP": 8, + "DUP": 14, + "DO": 2, + "OVER": 2, + "*": 9, + "LOOP": 2, + "NIP": 4, + "compute": 1, + "highest": 1, + "of": 3, + "below": 1, + "N.": 1, + "e.g.": 2, + "MAXPOW2": 2, + "n": 22, + "log2_n": 1, + "ABORT": 1, + "ELSE": 7, + "R": 13, + "|": 4, + "i": 5, + "I": 5, + "[": 16, + "]": 15, + "i*2": 1, + "/": 3, + "kata": 1, + "test": 1, + "if": 9, + "given": 3, + "N": 6, + "has": 1, + "two": 2, + "adjacent": 2, + "bits": 3, + "NOT": 3, + "TWO": 3, + "ADJACENT": 3, + "BITS": 3, + "bool": 1, + "word": 9, + "uses": 1, + "following": 1, + "algorithm": 1, + "return": 5, + "A": 5, + "X": 5, + "LOG2": 1, + "loop": 4, + "then": 5, + "+": 17, + "else": 6, + "end": 1, + "and": 3, + "OR": 1, + "INVERT": 1, + "maximum": 1, + "number": 4, + "which": 3, + "can": 2, + "be": 2, + "made": 2, + "with": 2, + "MAX": 2, + "NB": 3, + "m": 2, + "**n": 1, + "numbers": 1, + "or": 1, + "less": 1, + "have": 1, + "not": 1, + "bits.": 1, + "see": 1, + "http": 1, + "//www.codekata.com/2007/01/code_kata_fifte.html": 1, + "HOW": 1, + "MANY": 1, + "HELLO": 4, + ".": 5, + "forth": 2, + "Copyright": 3, + "Lars": 3, + "Brinkhoff": 3, + "Tools": 2, + "words.": 6, + ".s": 1, + "char": 10, + "emit": 2, + "depth": 1, + "type": 3, + "traverse": 1, + "dictionary": 1, + "cr": 3, + "extension": 4, + "code": 3, + "assembler": 1, + "kernel": 1, + "bye": 1, + "cs": 2, + "pick": 1, + "roll": 1, + "editor": 1, + "forget": 1, + "here": 9, + "reveal": 1, + "Kernel": 4, + "state": 2, + "Forth2012": 2, + "tools": 1, + "TODO": 12, + "r": 18, + "nr": 1, + "synonym": 1, + "undefined": 2, + "bl": 4, + "find": 2, + "nip": 2, + "immediate": 19, + "defined": 1, + "postpone": 14, + "invert": 1, + "@": 13, + "addr": 11, + "/cell": 2, + "x": 10, + "dup": 10, + "cell": 2, + "swap": 12, + "tuck": 2, + "rot": 2, + "Block": 2, + "variable": 3, + "blk": 3, + "current": 5, + "block": 8, + "buffer": 2, + "evaluate": 1, + "extended": 3, + "semantics": 3, + "flush": 1, + "load": 2, + "...": 4, + "save": 2, + "input": 2, + "source": 5, + "#source": 2, + "interpret": 1, + "restore": 1, + "buffers": 2, + "update": 1, + "scr": 2, + "list": 1, + "bounds": 1, + "do": 2, + "refill": 2, + "thru": 1, + "y": 5, + "lastxt": 4, + "c@": 2, + "negate": 1, + "c": 3, + "ahead": 2, + "resolve": 4, + "literal": 4, + "nonimmediate": 1, + "caddr": 1, + "drop": 4, + "C": 9, + "cells": 1, + "postponers": 1, + "execute": 1, + "unresolved": 4, + "orig": 5, + "chars": 1, + "orig1": 1, + "orig2": 1, + "branch": 5, + "flag": 4, + "does": 5, + "dodoes_code": 1, + "over": 5, + "begin": 2, + "dest": 5, + "while": 2, + "repeat": 2, + "until": 1, + "recurse": 1, + "compile": 2, + "pad": 3, + "parse": 5, + "r@": 2, + "If": 1, + "necessary": 1, + "keep": 1, + "parsing.": 1, + "string": 3, + "allot": 2, + "align": 2, + "cmove": 1, + "s": 4, + "abort": 3, + "": 1, + "Undefined": 1, + "ok": 1, + "#tib": 2, + ".r": 1, + "x1": 5, + "x2": 5, + "noname": 1, + "SP": 1, + "query": 1, + "tib": 1, + "body": 1, + "true": 1, + "u.r": 1, + "u": 3, + "false": 1, + "unused": 1, + "value": 1, + "create": 2, + "within": 1, + "core": 1, + "action": 1, + "defer": 2, + "name": 1 + }, + "Scheme": { + "(": 366, + "import": 1, + "rnrs": 1, + ")": 380, + "only": 1, + "surfage": 4, + "s1": 1, + "lists": 1, + "filter": 4, + "-": 192, + "map": 4, + "gl": 12, + "glut": 2, + "dharmalab": 2, + "records": 1, + "define": 30, + "record": 5, + "type": 5, + "math": 1, + "basic": 2, + "agave": 4, + "glu": 1, + "compat": 1, + "geometry": 1, + "pt": 49, + "glamour": 2, + "window": 2, + "misc": 1, + "s19": 1, + "time": 24, + "s27": 1, + "random": 27, + "bits": 1, + "s42": 1, + "eager": 1, + "comprehensions": 1, + ";": 1684, + "utilities": 1, + "say": 9, + ".": 2, + "args": 2, + "for": 7, + "each": 7, + "display": 4, + "newline": 2, + "translate": 6, + "p": 6, + "glTranslated": 1, + "x": 10, + "y": 3, + "radians": 8, + "/": 7, + "pi": 2, + "degrees": 2, + "angle": 6, + "a": 19, + "cos": 1, + "sin": 1, + "current": 15, + "in": 14, + "nanoseconds": 2, + "let": 2, + "val": 3, + "+": 28, + "second": 1, + "nanosecond": 1, + "seconds": 12, + "micro": 1, + "milli": 1, + "base": 2, + "step": 1, + "score": 5, + "level": 5, + "ships": 1, + "spaceship": 5, + "fields": 4, + "mutable": 14, + "pos": 16, + "vel": 4, + "theta": 1, + "force": 1, + "particle": 8, + "birth": 2, + "lifetime": 1, + "color": 2, + "particles": 11, + "asteroid": 14, + "radius": 6, + "number": 3, + "of": 3, + "starting": 3, + "asteroids": 15, + "#f": 5, + "bullet": 16, + "pack": 12, + "is": 8, + "initialize": 1, + "size": 1, + "title": 1, + "reshape": 1, + "width": 8, + "height": 8, + "source": 2, + "randomize": 1, + "default": 1, + "wrap": 4, + "mod": 2, + "ship": 8, + "make": 11, + "ammo": 9, + "set": 19, + "list": 6, + "ec": 6, + "i": 6, + "inexact": 16, + "integer": 25, + "buffered": 1, + "procedure": 1, + "lambda": 12, + "background": 1, + "glColor3f": 5, + "matrix": 5, + "excursion": 5, + "ship.pos": 5, + "glRotated": 2, + "ship.theta": 10, + "glutWireCone": 1, + "par": 6, + "c": 4, + "vector": 6, + "ref": 3, + "glutWireSphere": 3, + "bullets": 7, + "pack.pos": 3, + "glutWireCube": 1, + "last": 3, + "dt": 7, + "update": 2, + "system": 2, + "pt*n": 8, + "ship.vel": 5, + "pack.vel": 1, + "cond": 2, + "par.birth": 1, + "par.lifetime": 1, + "else": 2, + "par.pos": 2, + "par.vel": 1, + "bullet.birth": 1, + "bullet.pos": 2, + "bullet.vel": 1, + "a.pos": 2, + "a.vel": 1, + "if": 1, + "<": 1, + "a.radius": 1, + "contact": 2, + "b": 4, + "when": 5, + "<=>": 3, + "distance": 3, + "begin": 2, + "1": 2, "f": 1, - "double": 1 + "append": 4, + "4": 1, + "50": 4, + "0": 7, + "100": 6, + "2": 1, + "n": 2, + "null": 1, + "10": 1, + "5": 1, + "glutIdleFunc": 1, + "glutPostRedisplay": 1, + "glutKeyboardFunc": 1, + "key": 2, + "case": 1, + "char": 1, + "#": 6, + "w": 1, + "d": 1, + "s": 1, + "space": 1, + "cons": 1, + "glutMainLoop": 1, + "library": 1, + "libs": 1, + "export": 1, + "list2": 2, + "objs": 2, + "should": 1, + "not": 1, + "be": 1, + "exported": 1 }, "wisp": { ";": 199, @@ -67613,225 +54438,10015 @@ "input": 1, "text": 1 }, - "XC": { - "int": 2, + "SuperCollider": { + "//boot": 1, + "server": 1, + "s.boot": 1, + ";": 18, + "(": 22, + "SynthDef": 1, + "{": 5, + "var": 1, + "sig": 7, + "resfreq": 3, + "Saw.ar": 1, + ")": 22, + "SinOsc.kr": 1, + "*": 3, + "+": 1, + "RLPF.ar": 1, + "Out.ar": 1, + "}": 5, + ".play": 2, + "do": 2, + "arg": 1, + "i": 1, + "Pan2.ar": 1, + "SinOsc.ar": 1, + "exprand": 1, + "LFNoise2.kr": 2, + "rrand": 2, + ".range": 2, + "**": 1, + "rand2": 1, + "a": 2, + "Env.perc": 1, + "-": 1, + "b": 1, + "a.delay": 2, + "a.test.plot": 1, + "b.test.plot": 1, + "Env": 1, + "[": 2, + "]": 2, + ".plot": 2, + "e": 1, + "Env.sine.asStream": 1, + "e.next.postln": 1, + "wait": 1, + ".fork": 1 + }, + "RMarkdown": { + "Some": 1, + "text.": 1, + "##": 1, + "A": 1, + "graphic": 1, + "in": 1, + "R": 1, + "{": 1, + "r": 1, + "}": 1, + "plot": 1, + "(": 3, + ")": 3, + "hist": 1, + "rnorm": 1 + }, + "ABAP": { + "*/**": 1, + "*": 56, + "The": 2, + "MIT": 2, + "License": 1, + "(": 8, + ")": 8, + "Copyright": 1, + "c": 3, + "Ren": 1, + "van": 1, + "Mil": 1, + "Permission": 1, + "is": 2, + "hereby": 1, + "granted": 1, + "free": 1, + "of": 6, + "charge": 1, + "to": 10, + "any": 1, + "person": 1, + "obtaining": 1, + "a": 1, + "copy": 2, + "this": 2, + "software": 1, + "and": 3, + "associated": 1, + "documentation": 1, + "files": 4, + "the": 10, + "deal": 1, + "in": 3, + "Software": 3, + "without": 2, + "restriction": 1, + "including": 1, + "limitation": 1, + "rights": 1, + "use": 1, + "modify": 1, + "merge": 1, + "publish": 1, + "distribute": 1, + "sublicense": 1, + "and/or": 1, + "sell": 1, + "copies": 2, + "permit": 1, + "persons": 1, + "whom": 1, + "furnished": 1, + "do": 4, + "so": 1, + "subject": 1, + "following": 1, + "conditions": 1, + "above": 1, + "copyright": 1, + "notice": 2, + "permission": 1, + "shall": 1, + "be": 1, + "included": 1, + "all": 1, + "or": 1, + "substantial": 1, + "portions": 1, + "Software.": 1, + "THE": 6, + "SOFTWARE": 2, + "IS": 1, + "PROVIDED": 1, + "WITHOUT": 1, + "WARRANTY": 1, + "OF": 4, + "ANY": 2, + "KIND": 1, + "EXPRESS": 1, + "OR": 7, + "IMPLIED": 1, + "INCLUDING": 1, + "BUT": 1, + "NOT": 1, + "LIMITED": 1, + "TO": 2, + "WARRANTIES": 1, + "MERCHANTABILITY": 1, + "FITNESS": 1, + "FOR": 2, + "A": 1, + "PARTICULAR": 1, + "PURPOSE": 1, + "AND": 1, + "NONINFRINGEMENT.": 1, + "IN": 4, + "NO": 1, + "EVENT": 1, + "SHALL": 1, + "AUTHORS": 1, + "COPYRIGHT": 1, + "HOLDERS": 1, + "BE": 1, + "LIABLE": 1, + "CLAIM": 1, + "DAMAGES": 1, + "OTHER": 2, + "LIABILITY": 1, + "WHETHER": 1, + "AN": 1, + "ACTION": 1, + "CONTRACT": 1, + "TORT": 1, + "OTHERWISE": 1, + "ARISING": 1, + "FROM": 1, + "OUT": 1, + "CONNECTION": 1, + "WITH": 1, + "USE": 1, + "DEALINGS": 1, + "SOFTWARE.": 1, + "*/": 1, + "-": 978, + "CLASS": 2, + "CL_CSV_PARSER": 6, + "DEFINITION": 2, + "class": 2, + "cl_csv_parser": 2, + "definition": 1, + "public": 3, + "inheriting": 1, + "from": 1, + "cl_object": 1, + "final": 1, + "create": 1, + ".": 9, + "section.": 3, + "not": 3, + "include": 3, + "other": 3, + "source": 3, + "here": 3, + "type": 11, + "pools": 1, + "abap": 1, + "methods": 2, + "constructor": 2, + "importing": 1, + "delegate": 1, + "ref": 1, + "if_csv_parser_delegate": 1, + "csvstring": 1, + "string": 1, + "separator": 1, + "skip_first_line": 1, + "abap_bool": 2, + "parse": 2, + "raising": 1, + "cx_csv_parse_error": 2, + "protected": 1, + "private": 1, + "constants": 1, + "_textindicator": 1, + "value": 2, + "IMPLEMENTATION": 2, + "implementation.": 1, + "": 2, + "+": 9, + "|": 7, + "Instance": 2, + "Public": 1, + "Method": 2, + "CONSTRUCTOR": 1, + "[": 5, + "]": 5, + "DELEGATE": 1, + "TYPE": 5, + "REF": 1, + "IF_CSV_PARSER_DELEGATE": 1, + "CSVSTRING": 1, + "STRING": 1, + "SEPARATOR": 1, + "C": 1, + "SKIP_FIRST_LINE": 1, + "ABAP_BOOL": 1, + "": 2, + "method": 2, + "constructor.": 1, + "super": 1, + "_delegate": 1, + "delegate.": 1, + "_csvstring": 2, + "csvstring.": 1, + "_separator": 1, + "separator.": 1, + "_skip_first_line": 1, + "skip_first_line.": 1, + "endmethod.": 2, + "Get": 1, + "lines": 4, + "data": 3, + "is_first_line": 1, + "abap_true.": 2, + "standard": 2, + "table": 3, + "string.": 3, + "_lines": 1, + "field": 1, + "symbols": 1, + "": 3, + "loop": 1, + "at": 2, + "assigning": 1, + "Parse": 1, + "line": 1, + "values": 2, + "_parse_line": 2, + "Private": 1, + "_LINES": 1, + "<": 1, + "RETURNING": 1, + "STRINGTAB": 1, + "_lines.": 1, + "split": 1, + "cl_abap_char_utilities": 1, + "cr_lf": 1, + "into": 6, + "returning.": 1, + "Space": 2, + "concatenate": 4, + "csvvalue": 6, + "csvvalue.": 5, + "else.": 4, + "char": 2, + "endif.": 6, + "This": 1, + "indicates": 1, + "an": 1, + "error": 1, + "CSV": 1, + "formatting": 1, + "text_ended": 1, + "message": 2, + "e003": 1, + "csv": 1, + "msg.": 2, + "raise": 1, + "exception": 1, + "exporting": 1, + "endwhile.": 2, + "append": 2, + "csvvalues.": 2, + "clear": 1, + "pos": 2, + "endclass.": 1 + }, + "fish": { + "#": 18, + "set": 49, + "-": 102, + "g": 1, + "IFS": 4, + "n": 5, + "t": 2, + "l": 15, + "configdir": 2, + "/.config": 1, + "if": 21, + "q": 9, + "XDG_CONFIG_HOME": 2, + "end": 33, + "not": 8, + "fish_function_path": 4, + "configdir/fish/functions": 1, + "__fish_sysconfdir/functions": 1, + "__fish_datadir/functions": 3, + "contains": 4, + "[": 13, + "]": 13, + "fish_complete_path": 4, + "configdir/fish/completions": 1, + "__fish_sysconfdir/completions": 1, + "__fish_datadir/completions": 3, + "test": 7, + "d": 3, + "/usr/xpg4/bin": 3, + "PATH": 6, + "path_list": 4, + "/bin": 1, + "/usr/bin": 1, + "/usr/X11R6/bin": 1, + "/usr/local/bin": 1, + "__fish_bin_dir": 1, + "switch": 3, + "USER": 1, + "case": 9, + "root": 1, + "/sbin": 1, + "/usr/sbin": 1, + "/usr/local/sbin": 1, + "for": 1, + "i": 5, + "in": 2, + "function": 6, + "fish_sigtrap_handler": 1, + "on": 2, + "signal": 1, + "TRAP": 1, + "no": 2, + "scope": 1, + "shadowing": 1, + "description": 2, + "breakpoint": 1, + "__fish_on_interactive": 2, + "event": 1, + "fish_prompt": 1, + "__fish_config_interactive": 1, + "functions": 5, + "e": 6, + "funced": 3, + "editor": 7, + "EDITOR": 1, + "interactive": 8, + "funcname": 14, + "while": 2, + "argv": 9, + "h": 1, + "help": 1, + "__fish_print_help": 1, + "return": 6, + "set_color": 4, + "red": 2, + "printf": 3, + "(": 7, + "_": 3, + ")": 7, + "normal": 2, + "begin": 2, + ";": 7, + "or": 3, + "init": 5, + "nend": 2, + "editor_cmd": 2, + "eval": 5, + "type": 1, + "f": 3, + "/dev/null": 2, + "fish": 3, + "z": 1, + "|": 3, + "fish_indent": 2, + "indent": 1, + "prompt": 2, + "read": 1, + "p": 1, + "c": 1, + "s": 1, + "cmd": 2, + "echo": 3, + "TMPDIR": 2, + "/tmp": 1, + "tmpname": 8, + "%": 2, + "self": 2, + "random": 2, + "else": 3, + ".": 2, + "stat": 2, + "status": 7, + "rm": 1, + "S": 1, + "If": 2, + "we": 2, + "are": 1, + "an": 1, + "shell": 1, + "should": 2, + "enable": 1, + "full": 4, + "job": 5, + "control": 5, + "since": 1, + "it": 1, + "behave": 1, + "like": 2, + "the": 1, + "real": 1, + "code": 1, + "was": 1, + "executed.": 1, + "don": 1, + "do": 1, + "this": 1, + "commands": 1, + "that": 1, + "expect": 1, + "to": 1, + "be": 1, + "used": 1, + "interactively": 1, + "less": 1, + "wont": 1, + "work": 1, + "using": 1, + "eval.": 1, + "mode": 5, + "is": 3, + "none": 1, + "<": 1, + "&": 1, + "res": 2 + }, + "Protocol Buffer": { + "package": 1, + "tutorial": 1, + ";": 13, + "option": 2, + "java_package": 1, + "java_outer_classname": 1, + "message": 3, + "Person": 2, + "{": 4, + "required": 3, + "string": 3, + "name": 1, + "int32": 1, + "id": 1, + "optional": 2, + "email": 1, + "enum": 1, + "PhoneType": 2, + "MOBILE": 1, + "HOME": 2, + "WORK": 1, + "}": 4, + "PhoneNumber": 2, + "number": 1, + "type": 1, + "[": 1, + "default": 1, + "]": 1, + "repeated": 2, + "phone": 1, + "AddressBook": 1, + "person": 1 + }, + "UnrealScript": { + "class": 18, + "US3HelloWorld": 1, + "extends": 2, + "GameInfo": 1, + ";": 295, + "event": 3, + "InitGame": 1, + "(": 189, + "string": 25, + "Options": 1, + "out": 2, + "Error": 1, + ")": 189, + "{": 28, + "log": 1, + "}": 27, + "defaultproperties": 1, + "//": 5, + "-": 220, + "MutU2Weapons": 1, + "Mutator": 1, + "config": 18, + "U2Weapons": 1, + "var": 30, + "ReplacedWeaponClassNames0": 1, + "ReplacedWeaponClassNames1": 1, + "ReplacedWeaponClassNames2": 1, + "ReplacedWeaponClassNames3": 1, + "ReplacedWeaponClassNames4": 1, + "ReplacedWeaponClassNames5": 1, + "ReplacedWeaponClassNames6": 1, + "ReplacedWeaponClassNames7": 1, + "ReplacedWeaponClassNames8": 1, + "ReplacedWeaponClassNames9": 1, + "ReplacedWeaponClassNames10": 1, + "ReplacedWeaponClassNames11": 1, + "ReplacedWeaponClassNames12": 1, + "bool": 18, + "bConfigUseU2Weapon0": 1, + "bConfigUseU2Weapon1": 1, + "bConfigUseU2Weapon2": 1, + "bConfigUseU2Weapon3": 1, + "bConfigUseU2Weapon4": 1, + "bConfigUseU2Weapon5": 1, + "bConfigUseU2Weapon6": 1, + "bConfigUseU2Weapon7": 1, + "bConfigUseU2Weapon8": 1, + "bConfigUseU2Weapon9": 1, + "bConfigUseU2Weapon10": 1, + "bConfigUseU2Weapon11": 1, + "bConfigUseU2Weapon12": 1, + "//var": 8, + "byte": 4, + "bUseU2Weapon": 1, + "[": 125, + "]": 125, + "": 7, + "ReplacedWeaponClasses": 3, + "": 2, + "ReplacedWeaponPickupClasses": 1, + "": 3, + "ReplacedAmmoPickupClasses": 1, + "U2WeaponClasses": 2, + "//GE": 17, + "For": 3, + "default": 12, + "properties": 3, + "ONLY": 3, + "U2WeaponPickupClassNames": 1, + "U2AmmoPickupClassNames": 2, + "bIsVehicle": 4, + "bNotVehicle": 3, + "localized": 2, + "U2WeaponDisplayText": 1, + "U2WeaponDescText": 1, + "GUISelectOptions": 1, + "int": 10, + "FirePowerMode": 1, + "bExperimental": 3, + "bUseFieldGenerator": 2, + "bUseProximitySensor": 2, + "bIntegrateShieldReward": 2, + "IterationNum": 8, + "Weapons.Length": 1, + "const": 1, + "DamageMultiplier": 28, + "DamagePercentage": 3, + "bUseXMPFeel": 4, + "FlashbangModeString": 1, + "struct": 1, + "WeaponInfo": 2, + "ReplacedWeaponClass": 1, + "Generated": 4, + "from": 6, + "ReplacedWeaponClassName.": 2, + "This": 3, + "is": 6, + "what": 1, + "we": 3, + "replace.": 1, + "ReplacedWeaponPickupClass": 1, + "UNUSED": 1, + "ReplacedAmmoPickupClass": 1, + "WeaponClass": 1, + "the": 31, + "weapon": 10, + "are": 1, + "going": 1, + "to": 4, + "put": 1, + "inside": 1, + "world.": 1, + "WeaponPickupClassName": 1, + "WeponClass.": 1, + "AmmoPickupClassName": 1, + "WeaponClass.": 1, + "bEnabled": 1, + "Structs": 1, + "can": 2, + "d": 1, + "thus": 1, + "still": 1, + "require": 1, + "bConfigUseU2WeaponX": 1, + "indicates": 1, + "that": 3, + "spawns": 1, + "a": 2, + "vehicle": 3, + "deployable": 1, + "turrets": 1, + ".": 2, + "These": 1, + "only": 2, + "work": 1, + "in": 4, + "gametypes": 1, + "duh.": 1, + "Opposite": 1, + "of": 1, + "works": 1, + "non": 1, + "gametypes.": 2, + "Think": 1, + "shotgun.": 1, + "Weapons": 31, + "function": 5, + "PostBeginPlay": 1, + "local": 8, + "FireMode": 8, + "x": 65, + "//local": 3, + "ReplacedWeaponPickupClassName": 1, + "//IterationNum": 1, + "ArrayCount": 2, + "Level.Game.bAllowVehicles": 4, + "He": 1, + "he": 1, + "neat": 1, + "way": 1, + "get": 1, + "required": 1, + "number.": 1, + "for": 11, + "<": 9, + "+": 18, + ".bEnabled": 3, + "GetPropertyText": 5, + "needed": 1, + "use": 1, + "variables": 1, + "an": 1, + "array": 2, + "like": 1, + "fashion.": 1, + "//bUseU2Weapon": 1, + ".ReplacedWeaponClass": 5, + "DynamicLoadObject": 2, + "//ReplacedWeaponClasses": 1, + "//ReplacedWeaponPickupClassName": 1, + ".default.PickupClass": 1, + "if": 55, + ".ReplacedWeaponClass.default.FireModeClass": 4, + "None": 10, + "&&": 15, + ".default.AmmoClass": 1, + ".default.AmmoClass.default.PickupClass": 2, + ".ReplacedAmmoPickupClass": 2, + "break": 1, + ".WeaponClass": 7, + ".WeaponPickupClassName": 1, + ".WeaponClass.default.PickupClass": 1, + ".AmmoPickupClassName": 2, + ".bIsVehicle": 2, + ".bNotVehicle": 2, + "Super.PostBeginPlay": 1, + "ValidReplacement": 6, + "return": 47, + "CheckReplacement": 1, + "Actor": 1, + "Other": 23, + "bSuperRelevant": 3, + "i": 12, + "WeaponLocker": 3, + "L": 2, + "xWeaponBase": 3, + ".WeaponType": 2, + "false": 3, + "true": 5, + "Weapon": 1, + "Other.IsA": 2, + "Other.Class": 2, + "Ammo": 1, + "ReplaceWith": 1, + "L.Weapons.Length": 1, + "L.Weapons": 2, + "//STARTING": 1, + "WEAPON": 1, + "xPawn": 6, + ".RequiredEquipment": 3, + "True": 2, + "Special": 1, + "handling": 1, + "Shield": 2, + "Reward": 2, + "integration": 1, + "ShieldPack": 7, + ".SetStaticMesh": 1, + "StaticMesh": 1, + ".Skins": 1, + "Shader": 2, + ".RepSkin": 1, + ".SetDrawScale": 1, + ".SetCollisionSize": 1, + ".PickupMessage": 1, + ".PickupSound": 1, + "Sound": 1, + "Super.CheckReplacement": 1, + "GetInventoryClassOverride": 1, + "InventoryClassName": 3, + "Super.GetInventoryClassOverride": 1, + "static": 2, + "FillPlayInfo": 1, + "PlayInfo": 3, + "": 1, + "Recs": 4, + "WeaponOptions": 17, + "Super.FillPlayInfo": 1, + ".static.GetWeaponList": 1, + "Recs.Length": 1, + ".ClassName": 1, + ".FriendlyName": 1, + "PlayInfo.AddSetting": 33, + "default.RulesGroup": 33, + "default.U2WeaponDisplayText": 33, + "GetDescriptionText": 1, + "PropName": 35, + "default.U2WeaponDescText": 33, + "Super.GetDescriptionText": 1, + "PreBeginPlay": 1, + "float": 3, + "k": 29, + "Multiplier.": 1, + "Super.PreBeginPlay": 1, + "/100.0": 1, + "//log": 1, + "@k": 1, + "//Sets": 1, + "various": 1, + "settings": 1, + "match": 1, + "different": 1, + "games": 1, + ".default.DamagePercentage": 1, + "//Original": 1, + "U2": 3, + "compensate": 1, + "division": 1, + "errors": 1, + "Class": 105, + ".default.DamageMin": 12, + "*": 54, + ".default.DamageMax": 12, + ".default.Damage": 27, + ".default.myDamage": 4, + "//Dampened": 1, + "already": 1, + "no": 2, + "need": 1, + "rewrite": 1, + "else": 1, + "//General": 2, + "XMP": 4, + ".default.Spread": 1, + ".default.MaxAmmo": 7, + ".default.Speed": 8, + ".default.MomentumTransfer": 4, + ".default.ClipSize": 4, + ".default.FireLastReloadTime": 3, + ".default.DamageRadius": 4, + ".default.LifeSpan": 4, + ".default.ShakeRadius": 1, + ".default.ShakeMagnitude": 1, + ".default.MaxSpeed": 5, + ".default.FireRate": 3, + ".default.ReloadTime": 3, + "//3200": 1, + "too": 1, + "much": 1, + ".default.VehicleDamageScaling": 2, + "*k": 28, + "//Experimental": 1, + "options": 1, + "lets": 1, + "you": 2, + "Unuse": 1, + "EMPimp": 1, + "projectile": 1, + "and": 3, + "fire": 1, + "two": 1, + "CAR": 1, + "barrels": 1, + "//CAR": 1, + "nothing": 1, + "U2Weapons.U2AssaultRifleFire": 1, + "U2Weapons.U2AssaultRifleAltFire": 1, + "U2ProjectileConcussionGrenade": 1, + "U2Weapons.U2AssaultRifleInv": 1, + "U2Weapons.U2WeaponEnergyRifle": 1, + "U2Weapons.U2WeaponFlameThrower": 1, + "U2Weapons.U2WeaponPistol": 1, + "U2Weapons.U2AutoTurretDeploy": 1, + "U2Weapons.U2WeaponRocketLauncher": 1, + "U2Weapons.U2WeaponGrenadeLauncher": 1, + "U2Weapons.U2WeaponSniper": 2, + "U2Weapons.U2WeaponRocketTurret": 1, + "U2Weapons.U2WeaponLandMine": 1, + "U2Weapons.U2WeaponLaserTripMine": 1, + "U2Weapons.U2WeaponShotgun": 1, + "s": 7, + "Minigun.": 1, + "Enable": 5, + "Shock": 1, + "Lance": 1, + "Energy": 2, + "Rifle": 3, + "What": 7, + "should": 7, + "be": 8, + "replaced": 8, + "with": 9, + "Rifle.": 3, + "By": 7, + "it": 7, + "Bio": 1, + "Magnum": 2, + "Pistol": 1, + "Pistol.": 1, + "Onslaught": 1, + "Grenade": 1, + "Launcher.": 2, + "Shark": 2, + "Rocket": 4, + "Launcher": 1, + "Flak": 1, + "Cannon.": 1, + "Should": 1, + "Lightning": 1, + "Gun": 2, + "Widowmaker": 2, + "Sniper": 3, + "Classic": 1, + "here.": 1, + "Turret": 2, + "delpoyable": 1, + "deployable.": 1, + "Redeemer.": 1, + "Laser": 2, + "Trip": 2, + "Mine": 1, + "Mine.": 1, + "t": 2, + "replace": 1, + "Link": 1, + "matches": 1, + "vehicles.": 1, + "Crowd": 1, + "Pleaser": 1, + "Shotgun.": 1, + "have": 1, + "shields": 1, + "or": 2, + "damage": 1, + "filtering.": 1, + "If": 1, + "checked": 1, + "mutator": 1, + "produces": 1, + "Unreal": 4, + "II": 4, + "shield": 1, + "pickups.": 1, + "Choose": 1, + "between": 2, + "white": 1, + "overlay": 3, + "depending": 2, + "on": 2, + "player": 2, + "view": 1, + "style": 1, + "distance": 1, + "foolproof": 1, + "FM_DistanceBased": 1, + "Arena": 1, + "Add": 1, + "weapons": 1, + "other": 1, + "Fully": 1, + "customisable": 1, + "choose": 1, + "behaviour.": 1 + }, + "Processing": { + "void": 2, + "setup": 1, + "(": 17, + ")": 17, + "{": 2, + "size": 1, + ";": 15, + "background": 1, + "noStroke": 1, + "}": 2, + "draw": 1, + "fill": 6, + "triangle": 2, + "rect": 1, + "quad": 1, + "ellipse": 1, + "arc": 1, + "PI": 1, + "TWO_PI": 1 + }, + "Scaml": { + "%": 1, + "p": 1, + "Hello": 1, + "World": 1 + }, + "TXL": { + "define": 12, + "program": 1, + "[": 38, + "expression": 9, + "]": 38, + "end": 12, + "term": 6, + "|": 3, + "addop": 2, + "primary": 4, + "mulop": 2, + "number": 10, + "(": 2, + ")": 2, + "-": 3, + "/": 3, + "rule": 12, "main": 1, + "replace": 6, + "E": 3, + "construct": 1, + "NewE": 3, + "resolveAddition": 2, + "resolveSubtraction": 2, + "resolveMultiplication": 2, + "resolveDivision": 2, + "resolveParentheses": 2, + "where": 1, + "not": 1, + "by": 6, + "N1": 8, + "+": 2, + "N2": 8, + "*": 2, + "N": 2 + }, + "Julia": { + "##": 5, + "Test": 1, + "case": 1, + "from": 1, + "Issue": 1, + "#445": 1, + "#STOCKCORR": 1, + "-": 11, + "The": 1, + "original": 1, + "unoptimised": 1, + "code": 1, + "that": 1, + "simulates": 1, + "two": 2, + "correlated": 1, + "assets": 1, + "function": 1, + "stockcorr": 1, + "(": 13, + ")": 13, + "Correlated": 1, + "asset": 1, + "information": 1, + "CurrentPrice": 3, + "[": 20, + "]": 20, + "#": 11, + "Initial": 1, + "Prices": 1, + "of": 6, + "the": 2, + "stocks": 1, + "Corr": 2, + ";": 1, + "Correlation": 1, + "Matrix": 2, + "T": 5, + "Number": 2, + "days": 3, + "to": 1, + "simulate": 1, + "years": 1, + "n": 4, + "simulations": 1, + "dt": 3, + "/250": 1, + "Time": 1, + "step": 1, + "year": 1, + "Div": 3, + "Dividend": 1, + "Vol": 5, + "Volatility": 1, + "Market": 1, + "Information": 1, + "r": 3, + "Risk": 1, + "free": 1, + "rate": 1, + "Define": 1, + "storages": 1, + "SimulPriceA": 5, + "zeros": 2, + "Simulated": 2, + "Price": 2, + "Asset": 2, + "A": 1, + "SimulPriceB": 5, + "B": 1, + "Generating": 1, + "paths": 1, + "stock": 1, + "prices": 1, + "by": 2, + "Geometric": 1, + "Brownian": 1, + "Motion": 1, + "UpperTriangle": 2, + "chol": 1, + "Cholesky": 1, + "decomposition": 1, + "for": 2, + "i": 5, + "Wiener": 1, + "randn": 1, + "CorrWiener": 1, + "Wiener*UpperTriangle": 1, + "j": 7, + "*exp": 2, + "/2": 2, + "*dt": 2, + "+": 2, + "*sqrt": 2, + "*CorrWiener": 2, + "end": 3, + "return": 1 + }, + "Diff": { + "diff": 1, + "-": 5, + "git": 1, + "a/lib/linguist.rb": 2, + "b/lib/linguist.rb": 2, + "index": 1, + "d472341..8ad9ffb": 1, + "+": 3 + }, + "SCSS": { + "blue": 4, + "#3bbfce": 1, + ";": 7, + "margin": 4, + "px": 1, + ".content": 1, + "-": 3, + "navigation": 1, + "{": 2, + "border": 2, + "color": 3, + "darken": 1, + "(": 1, + "%": 1, + ")": 1, + "}": 2, + ".border": 1, + "padding": 1, + "/": 2 + }, + "Omgrofl": { + "lol": 14, + "iz": 11, + "wtf": 1, + "liek": 1, + "lmao": 1, + "brb": 1, + "w00t": 1, + "Hello": 1, + "World": 1, + "rofl": 13, + "lool": 5, + "loool": 6, + "stfu": 1 + }, + "Tcl": { + "#": 7, + "package": 2, + "require": 2, + "Tcl": 2, + "namespace": 6, + "eval": 2, + "XDG": 11, + "{": 148, + "variable": 4, + "DEFAULTS": 8, + "export": 3, + "DATA_HOME": 4, + "CONFIG_HOME": 4, + "CACHE_HOME": 4, + "RUNTIME_DIR": 3, + "DATA_DIRS": 4, + "CONFIG_DIRS": 4, + "}": 148, + "proc": 28, + "SetDefaults": 3, + "if": 14, + "ne": 2, + "return": 22, + "set": 34, + "[": 76, + "list": 18, + "file": 9, + "join": 9, + "env": 8, + "(": 11, + "HOME": 3, + ")": 11, + ".local": 1, + "share": 3, + "]": 76, + ".config": 1, + ".cache": 1, + "/usr": 2, + "local": 1, + "/etc": 1, + "xdg": 1, + "XDGVarSet": 4, + "var": 11, + "expr": 4, + "info": 1, + "exists": 1, + "XDG_": 4, + "&&": 2, + "Dir": 4, + "subdir": 16, + "dir": 5, + "dict": 2, + "get": 2, + "Dirs": 3, + "rawDirs": 3, + "split": 1, + "outDirs": 3, + "foreach": 5, + "lappend": 8, + "XDG_RUNTIME_DIR": 1, + "stream": 61, + "a": 1, + "-": 5, + "z": 1, + "*": 19, + "ensemble": 1, + "create": 7, + "first": 24, + "restCmdPrefix": 2, + "lassign": 11, + "foldl": 1, + "cmdPrefix": 19, + "initialValue": 7, + "args": 13, + "numStreams": 3, + "llength": 5, + "FoldlSingleStream": 2, + "lindex": 5, + "elseif": 3, + "FoldlMultiStream": 2, + "else": 5, + "Usage": 4, + "numArgs": 7, + "varName": 7, + "body": 8, + "ForeachSingleStream": 2, + "%": 1, + "end": 2, + "items": 5, + "lrange": 1, + "ForeachMultiStream": 2, + "fromList": 2, + "_list": 4, + "index": 4, + "+": 1, + "isEmpty": 10, + "map": 1, + "MapSingleStream": 3, + "MapMultiStream": 3, + "rest": 22, + "select": 2, + "while": 6, + "take": 2, + "num": 3, + "||": 1, + "<": 1, + "toList": 1, + "res": 10, + "#################################": 2, + "acc": 9, + "streams": 5, + "firsts": 6, + "restStreams": 6, + "uplevel": 4, + "nextItems": 4, + "msg": 1, + "code": 1, + "error": 1, + "level": 1 + }, + "Emacs Lisp": { + "(": 156, + "print": 1, + ")": 144, + ";": 333, + "ess": 48, + "-": 294, + "julia.el": 2, + "ESS": 5, + "julia": 39, + "mode": 12, + "and": 3, + "inferior": 13, + "interaction": 1, + "Copyright": 1, + "C": 2, + "Vitalie": 3, + "Spinu.": 1, + "Filename": 1, + "Author": 1, + "Spinu": 2, + "based": 1, + "on": 2, + "mode.el": 1, + "from": 3, + "lang": 1, + "project": 1, + "Maintainer": 1, + "Created": 1, + "Keywords": 1, + "This": 4, + "file": 10, + "is": 5, + "*NOT*": 1, + "part": 2, + "of": 8, + "GNU": 4, + "Emacs.": 1, + "program": 6, + "free": 1, + "software": 1, + "you": 1, + "can": 1, + "redistribute": 1, + "it": 3, + "and/or": 1, + "modify": 5, + "under": 1, + "the": 10, + "terms": 1, + "General": 3, + "Public": 3, + "License": 3, + "as": 1, + "published": 1, + "by": 1, + "Free": 2, + "Software": 2, + "Foundation": 2, + "either": 1, + "version": 2, + "any": 1, + "later": 1, + "version.": 1, + "distributed": 1, + "in": 3, + "hope": 1, + "that": 2, + "will": 1, + "be": 2, + "useful": 1, + "but": 2, + "WITHOUT": 1, + "ANY": 1, + "WARRANTY": 1, + "without": 1, + "even": 1, + "implied": 1, + "warranty": 1, + "MERCHANTABILITY": 1, + "or": 3, + "FITNESS": 1, + "FOR": 1, + "A": 1, + "PARTICULAR": 1, + "PURPOSE.": 1, + "See": 1, + "for": 8, + "more": 1, + "details.": 1, + "You": 1, + "should": 2, + "have": 1, + "received": 1, + "a": 4, + "copy": 2, + "along": 1, + "with": 4, + "this": 1, + "see": 2, + "COPYING.": 1, + "If": 1, + "not": 1, + "write": 2, + "to": 4, + "Inc.": 1, + "Franklin": 1, + "Street": 1, + "Fifth": 1, + "Floor": 1, + "Boston": 1, + "MA": 1, + "USA.": 1, + "Commentary": 1, + "customise": 1, + "name": 8, + "point": 6, + "your": 1, + "release": 1, + "basic": 1, + "start": 13, + "M": 2, + "x": 2, + "julia.": 2, + "require": 2, + "auto": 1, + "alist": 9, + "table": 9, + "character": 1, + "quote": 2, + "transpose": 1, + "syntax": 7, + "entry": 4, + ".": 40, + "Syntax": 3, + "inside": 1, + "char": 6, + "defvar": 5, + "let": 3, + "make": 4, + "defconst": 5, + "regex": 5, + "unquote": 1, + "forloop": 1, + "subset": 2, + "regexp": 6, + "font": 6, + "lock": 6, + "defaults": 2, + "list": 3, + "identity": 1, + "keyword": 2, + "face": 4, + "constant": 1, + "cons": 1, + "function": 7, + "keep": 2, + "string": 8, + "paragraph": 3, + "concat": 7, + "page": 2, + "delimiter": 2, + "separate": 1, + "ignore": 2, + "fill": 1, + "prefix": 2, + "t": 6, + "final": 1, + "newline": 1, + "comment": 6, + "add": 4, + "skip": 1, + "column": 1, + "indent": 8, + "S": 2, + "line": 5, + "calculate": 1, + "parse": 1, + "sexp": 1, + "comments": 1, + "style": 2, + "default": 1, + "ignored": 1, + "local": 6, + "process": 5, + "nil": 12, + "dump": 2, + "files": 1, + "_": 1, + "autoload": 1, + "defun": 5, + "send": 3, + "visibly": 1, + "temporary": 1, + "directory": 2, + "temp": 2, + "insert": 1, + "format": 3, + "load": 1, + "command": 5, + "get": 3, + "help": 3, + "topics": 1, + "&": 3, + "optional": 3, + "proc": 3, + "words": 1, + "vector": 1, + "com": 1, + "error": 6, + "s": 5, + "*in": 1, + "[": 3, + "n": 1, + "]": 3, + "*": 1, + "at": 5, + ".*": 2, + "+": 5, + "w*": 1, + "http": 1, + "//docs.julialang.org/en/latest/search/": 1, + "q": 1, + "%": 1, + "include": 1, + "funargs": 1, + "re": 2, + "args": 10, + "language": 1, + "STERM": 1, + "editor": 2, + "R": 2, + "pager": 2, + "versions": 1, + "Julia": 1, + "made": 1, + "available.": 1, + "String": 1, + "arguments": 2, + "used": 1, + "when": 2, + "starting": 1, + "group": 1, + "###autoload": 2, + "interactive": 2, + "setq": 2, + "customize": 5, + "emacs": 1, + "<": 1, + "hook": 4, + "complete": 1, + "object": 2, + "completion": 4, + "functions": 2, + "first": 1, + "if": 4, + "fboundp": 1, + "end": 1, + "workaround": 1, + "set": 3, + "variable": 3, + "post": 1, + "run": 2, + "settings": 1, + "notably": 1, + "null": 1, + "dribble": 1, + "buffer": 3, + "debugging": 1, + "only": 1, + "dialect": 1, + "current": 2, + "arg": 1, + "let*": 2, + "jl": 2, + "space": 1, + "just": 1, + "case": 1, + "read": 1, + "..": 3, + "multi": 1, + "...": 1, + "tb": 1, + "logo": 1, + "goto": 2, + "min": 1, + "while": 1, + "search": 1, + "forward": 1, + "replace": 1, + "match": 1, + "max": 1, + "inject": 1, + "code": 1, + "etc": 1, + "hooks": 1, + "busy": 1, + "funname": 5, + "eldoc": 1, + "show": 1, + "symbol": 2, + "aggressive": 1, + "car": 1, + "funname.start": 1, + "sequence": 1, + "nth": 1, + "W": 1, + "window": 2, + "width": 1, + "minibuffer": 1, + "length": 1, + "doc": 1, + "propertize": 1, + "use": 1, + "classes": 1, + "screws": 1, + "egrep": 1 + }, + "Squirrel": { + "//example": 1, + "from": 1, + "http": 1, + "//www.squirrel": 1, + "-": 1, + "lang.org/#documentation": 1, + "local": 3, + "table": 1, + "{": 10, + "a": 2, + "subtable": 1, + "array": 3, + "[": 3, + "]": 3, + "}": 10, + "+": 2, + "b": 1, + ";": 15, + "foreach": 1, + "(": 10, + "i": 1, + "val": 2, + "in": 1, + ")": 10, + "print": 2, + "typeof": 1, + "/////////////////////////////////////////////": 1, + "class": 2, + "Entity": 3, + "constructor": 2, + "etype": 2, + "entityname": 4, + "name": 2, + "type": 2, + "x": 2, + "y": 2, + "z": 2, + "null": 2, + "function": 2, + "MoveTo": 1, + "newx": 2, + "newy": 2, + "newz": 2, + "Player": 2, + "extends": 1, + "base.constructor": 1, + "DoDomething": 1, + "newplayer": 1, + "newplayer.MoveTo": 1 + }, + "PureScript": { + "module": 4, + "Control.Arrow": 1, + "where": 20, + "import": 32, + "Data.Tuple": 3, + "class": 4, + "Arrow": 5, + "a": 46, + "arr": 10, + "forall": 26, + "b": 49, + "c.": 3, + "(": 111, + "-": 88, + "c": 17, + ")": 115, + "first": 4, + "d.": 2, + "Tuple": 21, + "d": 6, + "instance": 12, + "arrowFunction": 1, + "f": 28, + "second": 3, + "Category": 3, + "swap": 4, + "b.": 1, + "x": 26, + "y": 2, + "infixr": 3, + "***": 2, + "&&": 3, + "&": 3, + ".": 2, + "g": 4, + "ArrowZero": 1, + "zeroArrow": 1, + "<+>": 2, + "ArrowPlus": 1, + "Data.Foreign": 2, + "Foreign": 12, + "..": 1, + "ForeignParser": 29, + "parseForeign": 6, + "parseJSON": 3, + "ReadForeign": 11, + "read": 10, + "prop": 3, + "Prelude": 3, + "Data.Array": 3, + "Data.Either": 1, + "Data.Maybe": 3, + "Data.Traversable": 2, + "foreign": 6, + "data": 3, + "*": 1, + "fromString": 2, + "String": 13, + "Either": 6, + "readPrimType": 5, + "a.": 6, + "readMaybeImpl": 2, + "Maybe": 5, + "readPropImpl": 2, + "showForeignImpl": 2, + "showForeign": 1, + "Prelude.Show": 1, + "show": 5, + "p": 11, + "json": 2, + "monadForeignParser": 1, + "Prelude.Monad": 1, + "return": 6, + "_": 7, + "Right": 9, + "case": 9, + "of": 9, + "Left": 8, + "err": 8, + "applicativeForeignParser": 1, + "Prelude.Applicative": 1, + "pure": 1, + "<*>": 2, + "<$>": 8, + "functorForeignParser": 1, + "Prelude.Functor": 1, + "readString": 1, + "readNumber": 1, + "Number": 1, + "readBoolean": 1, + "Boolean": 1, + "readArray": 1, + "[": 5, + "]": 5, + "let": 4, + "arrayItem": 2, + "i": 2, + "result": 4, + "+": 30, + "in": 2, + "xs": 3, + "traverse": 2, + "zip": 1, + "range": 1, + "length": 3, + "readMaybe": 1, + "<<": 4, + "<": 13, + "Just": 7, + "Nothing": 7, + "Data.Map": 1, + "Map": 26, + "empty": 6, + "singleton": 5, + "insert": 10, + "lookup": 8, + "delete": 9, + "alter": 8, + "toList": 10, + "fromList": 3, + "union": 3, + "map": 8, + "qualified": 1, + "as": 1, + "P": 1, + "concat": 3, + "Data.Foldable": 2, + "foldl": 4, + "k": 108, + "v": 57, + "Leaf": 15, + "|": 9, + "Branch": 27, + "{": 25, + "key": 13, + "value": 8, + "left": 15, + "right": 14, + "}": 26, + "eqMap": 1, + "P.Eq": 11, + "m1": 6, + "m2": 6, + "P.": 11, + "/": 1, + "P.not": 1, + "showMap": 1, + "P.Show": 3, + "m": 6, + "P.show": 1, + "v.": 11, + "P.Ord": 9, + "b@": 6, + "k1": 16, + "b.left": 9, + "b.right": 8, + "findMinKey": 5, + "glue": 4, + "minKey": 3, + "root": 2, + "b.key": 1, + "b.value": 2, + "v1": 3, + "v2.": 1, + "v2": 2, + "ReactiveJQueryTest": 1, + "flip": 2, + "Control.Monad": 1, + "Control.Monad.Eff": 1, + "Control.Monad.JQuery": 1, + "Control.Reactive": 1, + "Control.Reactive.JQuery": 1, + "head": 2, + "Data.Monoid": 1, + "Debug.Trace": 1, + "Global": 1, + "parseInt": 1, + "main": 1, + "do": 4, + "personDemo": 2, + "todoListDemo": 1, + "greet": 1, + "firstName": 2, + "lastName": 2, + "Create": 3, + "new": 1, + "reactive": 1, + "variables": 1, + "to": 3, + "hold": 1, + "the": 3, + "user": 1, + "readRArray": 1, + "insertRArray": 1, + "text": 5, + "completed": 2, + "paragraph": 2, + "display": 2, + "next": 1, + "task": 4, + "nextTaskLabel": 3, + "create": 2, + "append": 2, + "nextTask": 2, + "toComputedArray": 2, + "toComputed": 2, + "bindTextOneWay": 2, + "counter": 3, + "counterLabel": 3, + "rs": 2, + "cs": 2, + "<->": 1, + "if": 1, + "then": 1, + "else": 1, + "entry": 1, + "entry.completed": 1 + }, + "VCL": { + "sub": 23, + "vcl_recv": 2, + "{": 50, + "if": 14, + "(": 50, + "req.restarts": 1, + ")": 50, + "req.http.x": 1, + "-": 21, + "forwarded": 1, + "for": 1, + "set": 10, + "req.http.X": 3, + "Forwarded": 3, + "For": 3, + "+": 17, + "client.ip": 2, + ";": 48, + "}": 50, + "else": 3, + "req.request": 18, + "&&": 14, + "return": 33, + "pipe": 4, + "pass": 9, + "req.http.Authorization": 2, + "||": 4, + "req.http.Cookie": 2, + "lookup": 2, + "vcl_pipe": 2, + "vcl_pass": 2, + "vcl_hash": 2, + "hash_data": 3, + "req.url": 2, + "req.http.host": 4, + "server.ip": 2, + "hash": 2, + "vcl_hit": 2, + "deliver": 8, + "vcl_miss": 2, + "fetch": 3, + "vcl_fetch": 2, + "beresp.ttl": 2, + "<": 1, + "s": 3, + "beresp.http.Set": 1, + "Cookie": 2, + "beresp.http.Vary": 1, + "hit_for_pass": 1, + "vcl_deliver": 2, + "vcl_error": 2, + "obj.http.Content": 2, + "Type": 2, + "obj.http.Retry": 1, + "After": 1, + "synthetic": 2, + "utf": 2, + "//W3C//DTD": 2, + "XHTML": 2, + "Strict//EN": 2, + "http": 3, + "//www.w3.org/TR/xhtml1/DTD/xhtml1": 2, + "strict.dtd": 2, + "obj.status": 4, + "obj.response": 6, + "req.xid": 2, + "vcl_init": 1, + "ok": 2, + "vcl_fini": 1, + "req.hash": 3, + "obj.cacheable": 2, + "obj.http.Set": 1, + "obj.prefetch": 1, + "vcl_discard": 1, + "discard": 2, + "vcl_prefetch": 1, + "vcl_timeout": 1, + "//www.varnish": 1, + "cache.org/": 1 + }, + "Standard ML": { + "functor": 2, + "RedBlackTree": 1, + "(": 840, + "type": 6, + "key": 16, + "*": 9, + "struct": 13, + "a": 78, + "entry": 12, + "dict": 17, + "Empty": 15, + "|": 226, + "Red": 41, + "of": 91, + "ref": 45, + "local": 1, + "fun": 60, + "lookup": 4, + "let": 44, + "lk": 4, + ")": 845, + "NONE": 47, + "tree": 4, + "and": 2, + "-": 20, + "zipper": 3, + "TOP": 5, + "LEFTB": 10, + "RIGHTB": 10, + "in": 40, + "delete": 3, + "t": 23, + "zip": 19, + "x": 74, + "b": 58, + "z": 73, + "Black": 40, + "LEFTR": 8, + "RIGHTR": 9, + "bbZip": 28, + "true": 36, + "y": 50, + "c": 42, + "d": 32, + "w": 17, + "e": 18, + "false": 32, + "delMin": 8, + "_": 83, + "raise": 6, + "Match": 1, + "joinRed": 3, + "val": 147, + "needB": 2, + "else": 51, + "if": 51, + "then": 51, + "#2": 2, + "end": 55, + "del": 8, + "NotFound": 2, + "entry1": 16, + "as": 7, + "key1": 8, + "datum1": 4, + "case": 83, + "compare": 8, + "EQUAL": 5, + "joinBlack": 1, + "LESS": 5, + "GREATER": 5, + ";": 21, + "handle": 4, + "insertShadow": 3, + "datum": 1, + "oldEntry": 7, + "ins": 8, + "left": 10, + "right": 10, + "SOME": 68, + "restore_left": 1, + "restore_right": 1, + "app": 3, + "f": 46, + "ap": 7, + "new": 1, + "n": 4, + "insert": 2, + "fn": 127, + "table": 14, + "clear": 1, + "structure": 15, + "LazyBase": 4, + "LAZY_BASE": 5, + "exception": 2, + "Undefined": 6, + "delay": 6, + "force": 18, + "undefined": 2, + "LazyMemoBase": 4, + "datatype": 29, + "Done": 2, + "lazy": 13, + "unit": 7, + "open": 9, + "B": 2, + "inject": 5, + "isUndefined": 4, + "ignore": 3, + "toString": 4, + "eqBy": 5, + "p": 10, + "eq": 3, + "op": 2, + "Ops": 3, + "map": 3, + "Lazy": 2, + "LazyFn": 4, + "LazyMemo": 2, + "signature": 2, + "sig": 2, + "LAZY": 1, + "bool": 9, + "string": 14, + "order": 2, + "Main": 1, + "S": 2, + "MAIN_STRUCTS": 1, + "MAIN": 1, + "Compile": 3, + "Place": 1, + "Files": 3, + "Generated": 4, + "MLB": 4, + "O": 4, + "OUT": 3, + "SML": 6, + "TypeCheck": 3, + "toInt": 1, + "int": 1, + "OptPred": 1, + "Target": 1, + "Yes": 1, + "Show": 1, + "Anns": 1, + "PathMap": 1, + "gcc": 5, + "arScript": 3, + "asOpts": 6, + "{": 79, + "opt": 34, + "pred": 15, + "OptPred.t": 3, + "}": 79, + "list": 10, + "[": 104, + "]": 108, + "ccOpts": 6, + "linkOpts": 6, + "buildConstants": 2, + "debugRuntime": 3, + "debugFormat": 5, + "Dwarf": 3, + "DwarfPlus": 3, + "Dwarf2": 3, + "Stabs": 3, + "StabsPlus": 3, + "option": 6, + "expert": 3, + "explicitAlign": 3, + "Control.align": 1, + "explicitChunk": 2, + "Control.chunk": 1, + "explicitCodegen": 5, + "Native": 5, + "Explicit": 5, + "Control.codegen": 3, + "keepGenerated": 3, + "keepO": 3, + "output": 16, + "profileSet": 3, + "profileTimeSet": 3, + "runtimeArgs": 3, + "show": 2, + "Show.t": 1, + "stop": 10, + "Place.OUT": 1, + "parseMlbPathVar": 3, + "line": 9, + "String.t": 1, + "String.tokens": 7, + "Char.isSpace": 8, + "var": 3, + "path": 7, + "readMlbPathMap": 2, + "file": 14, + "File.t": 12, + "not": 1, + "File.canRead": 1, + "Error.bug": 14, + "concat": 52, + "List.keepAllMap": 4, + "File.lines": 2, + "String.forall": 4, + "v": 4, + "targetMap": 5, + "arch": 11, + "MLton.Platform.Arch.t": 3, + "os": 13, + "MLton.Platform.OS.t": 3, + "target": 28, + "Promise.lazy": 1, + "targetsDir": 5, + "OS.Path.mkAbsolute": 4, + "relativeTo": 4, + "Control.libDir": 1, + "potentialTargets": 2, + "Dir.lsDirs": 1, + "targetDir": 5, + "osFile": 2, + "OS.Path.joinDirFile": 3, + "dir": 4, + "archFile": 2, + "File.contents": 2, + "List.first": 2, + "MLton.Platform.OS.fromString": 1, + "MLton.Platform.Arch.fromString": 1, + "setTargetType": 3, + "usage": 48, + "List.peek": 7, + "...": 23, + "Control": 3, + "Target.arch": 2, + "Target.os": 2, + "hasCodegen": 8, + "cg": 21, + "Control.Target.arch": 4, + "Control.Target.os": 2, + "Control.Format.t": 1, + "AMD64": 2, + "x86Codegen": 9, + "X86": 3, + "amd64Codegen": 8, + "<": 3, + "Darwin": 6, + "orelse": 7, + "Control.format": 3, + "Executable": 5, + "Archive": 4, + "hasNativeCodegen": 2, + "defaultAlignIs8": 3, + "Alpha": 1, + "ARM": 1, + "HPPA": 1, + "IA64": 1, + "MIPS": 1, + "Sparc": 1, + "S390": 1, + "makeOptions": 3, + "s": 168, + "Fail": 2, + "reportAnnotation": 4, + "flag": 12, + "Control.Elaborate.Bad": 1, + "Control.Elaborate.Deprecated": 1, + "ids": 2, + "Control.warnDeprecated": 1, + "Out.output": 2, + "Out.error": 3, + "List.toString": 1, + "Control.Elaborate.Id.name": 1, + "Control.Elaborate.Good": 1, + "Control.Elaborate.Other": 1, + "Popt": 1, + "tokenizeOpt": 4, + "opts": 4, + "List.foreach": 5, + "tokenizeTargetOpt": 4, + "List.map": 3, + "Normal": 29, + "SpaceString": 48, + "Align4": 2, + "Align8": 2, + "Expert": 72, + "o": 8, + "List.push": 22, + "OptPred.Yes": 6, + "boolRef": 20, + "ChunkPerFunc": 1, + "OneChunk": 1, + "String.hasPrefix": 2, + "prefix": 3, + "String.dropPrefix": 1, + "Char.isDigit": 3, + "Int.fromString": 4, + "Coalesce": 1, + "limit": 1, + "Bool": 10, + "closureConvertGlobalize": 1, + "closureConvertShrink": 1, + "String.concatWith": 2, + "Control.Codegen.all": 2, + "Control.Codegen.toString": 2, + "name": 7, + "value": 4, + "Compile.setCommandLineConstant": 2, + "contifyIntoMain": 1, + "debug": 4, + "Control.Elaborate.processDefault": 1, + "Control.defaultChar": 1, + "Control.defaultInt": 5, + "Control.defaultReal": 2, + "Control.defaultWideChar": 2, + "Control.defaultWord": 4, + "Regexp.fromString": 7, + "re": 34, + "Regexp.compileDFA": 4, + "diagPasses": 1, + "Control.Elaborate.processEnabled": 2, + "dropPasses": 1, + "intRef": 8, + "errorThreshhold": 1, + "emitMain": 1, + "exportHeader": 3, + "Control.Format.all": 2, + "Control.Format.toString": 2, + "gcCheck": 1, + "Limit": 1, + "First": 1, + "Every": 1, + "Native.IEEEFP": 1, + "indentation": 1, + "Int": 8, + "i": 8, + "inlineNonRec": 6, + "small": 19, + "product": 19, + "#product": 1, + "inlineIntoMain": 1, + "loops": 18, + "inlineLeafA": 6, + "repeat": 18, + "size": 19, + "inlineLeafB": 6, + "keepCoreML": 1, + "keepDot": 1, + "keepMachine": 1, + "keepRSSA": 1, + "keepSSA": 1, + "keepSSA2": 1, + "keepSXML": 1, + "keepXML": 1, + "keepPasses": 1, + "libname": 9, + "loopPasses": 1, + "Int.toString": 3, + "markCards": 1, + "maxFunctionSize": 1, + "mlbPathVars": 4, + "@": 3, + "Native.commented": 1, + "Native.copyProp": 1, + "Native.cutoff": 1, + "Native.liveTransfer": 1, + "Native.liveStack": 1, + "Native.moveHoist": 1, + "Native.optimize": 1, + "Native.split": 1, + "Native.shuffle": 1, + "err": 1, + "optimizationPasses": 1, + "il": 10, + "set": 10, + "Result.Yes": 6, + "Result.No": 5, + "polyvariance": 9, + "hofo": 12, + "rounds": 12, + "preferAbsPaths": 1, + "profPasses": 1, + "profile": 6, + "ProfileNone": 2, + "ProfileAlloc": 1, + "ProfileCallStack": 3, + "ProfileCount": 1, + "ProfileDrop": 1, + "ProfileLabel": 1, + "ProfileTimeLabel": 4, + "ProfileTimeField": 2, + "profileBranch": 1, + "Regexp": 3, + "seq": 3, + "anys": 6, + "compileDFA": 3, + "profileC": 1, + "profileInclExcl": 2, + "profileIL": 3, + "ProfileSource": 1, + "ProfileSSA": 1, + "ProfileSSA2": 1, + "profileRaise": 2, + "profileStack": 1, + "profileVal": 1, + "Show.Anns": 1, + "Show.PathMap": 1, + "showBasis": 1, + "showDefUse": 1, + "showTypes": 1, + "Control.optimizationPasses": 4, + "String.equals": 4, + "Place.Files": 2, + "Place.Generated": 2, + "Place.O": 3, + "Place.TypeCheck": 1, + "#target": 2, + "Self": 2, + "Cross": 2, + "SpaceString2": 6, + "OptPred.Target": 6, + "#1": 1, + "trace": 4, + "typeCheck": 1, + "verbosity": 4, + "Silent": 3, + "Top": 5, + "Pass": 1, + "Detail": 1, + "warnAnn": 1, + "warnDeprecated": 1, + "zoneCutDepth": 1, + "style": 6, + "arg": 3, + "desc": 3, + "mainUsage": 3, + "parse": 2, + "Popt.makeUsage": 1, + "showExpert": 1, + "commandLine": 5, + "args": 8, + "lib": 2, + "libDir": 2, + "OS.Path.mkCanonical": 1, + "result": 1, + "targetStr": 3, + "libTargetDir": 1, + "targetArch": 4, + "archStr": 1, + "String.toLower": 2, + "MLton.Platform.Arch.toString": 2, + "targetOS": 5, + "OSStr": 2, + "MLton.Platform.OS.toString": 1, + "positionIndependent": 3, + "format": 7, + "MinGW": 4, + "Cygwin": 4, + "Library": 6, + "LibArchive": 3, + "Control.positionIndependent": 1, + "align": 1, + "codegen": 4, + "CCodegen": 1, + "MLton.Rusage.measureGC": 1, + "exnHistory": 1, + "Bool.toString": 1, + "Control.profile": 1, + "Control.ProfileCallStack": 1, + "sizeMap": 1, + "Control.libTargetDir": 1, + "ty": 4, + "Bytes.toBits": 1, + "Bytes.fromInt": 1, + "use": 2, + "on": 1, + "must": 1, + "x86": 1, + "with": 1, + "ieee": 1, + "fp": 1, + "can": 1, + "No": 1, + "Out.standard": 1, + "input": 22, + "rest": 3, + "inputFile": 1, + "File.base": 5, + "File.fileOf": 1, + "start": 6, + "base": 3, + "rec": 1, + "loop": 3, + "suf": 14, + "hasNum": 2, + "sufs": 2, + "String.hasSuffix": 2, + "suffix": 8, + "Place.t": 1, + "List.exists": 1, + "File.withIn": 1, + "csoFiles": 1, + "Place.compare": 1, + "Place.toString": 2, + "printVersion": 1, + "tempFiles": 3, + "tmpDir": 2, + "tmpVar": 2, + "default": 2, + "MLton.Platform.OS.host": 2, + "Process.getEnv": 1, + "temp": 3, + "out": 9, + "File.temp": 1, + "OS.Path.concat": 1, + "Out.close": 2, + "maybeOut": 10, + "maybeOutBase": 4, + "File.extension": 3, + "outputBase": 2, + "ext": 1, + "OS.Path.splitBaseExt": 1, + "defLibname": 6, + "OS.Path.splitDirFile": 1, + "String.extract": 1, + "toAlNum": 2, + "Char.isAlphaNum": 1, + "#": 3, + "CharVector.map": 1, + "atMLtons": 1, + "Vector.fromList": 1, + "tokenize": 1, + "rev": 2, + "gccDebug": 3, + "asDebug": 2, + "compileO": 3, + "inputs": 7, + "libOpts": 2, + "System.system": 4, + "List.concat": 4, + "linkArchives": 1, + "String.contains": 1, + "File.move": 1, + "from": 1, + "to": 1, + "mkOutputO": 3, + "Counter.t": 3, + "File.dirOf": 2, + "Counter.next": 1, + "compileC": 2, + "debugSwitches": 2, + "compileS": 2, + "compileCSO": 1, + "List.forall": 1, + "Counter.new": 1, + "oFiles": 2, + "List.fold": 1, + "ac": 4, + "extension": 6, + "Option.toString": 1, + "mkCompileSrc": 1, + "listFiles": 2, + "elaborate": 1, + "compile": 2, + "outputs": 2, + "r": 3, + "make": 1, + "Int.inc": 1, + "Out.openOut": 1, + "print": 4, + "outputHeader": 2, + "done": 3, + "Control.No": 1, + "l": 2, + "Layout.output": 1, + "Out.newline": 1, + "Vector.foreach": 1, + "String.translate": 1, + "/": 1, + "Type": 1, + "Check": 1, + ".c": 1, + ".s": 1, + "invalid": 1, + "MLton": 1, + "Exn.finally": 1, + "File.remove": 1, + "doit": 1, + "Process.makeCommandLine": 1, + "main": 1, + "mainWrapped": 1, + "OS.Process.exit": 1, + "CommandLine.arguments": 1 + }, + "IDL": { + ";": 59, + "docformat": 3, + "+": 8, + "Find": 1, + "the": 7, + "greatest": 1, + "common": 1, + "denominator": 1, + "(": 26, + "GCD": 1, + ")": 26, + "for": 2, + "two": 1, + "positive": 2, + "integers.": 1, + "Returns": 3, + "integer": 5, + "Params": 3, + "a": 4, + "in": 4, + "required": 4, + "type": 5, + "first": 1, + "b": 4, + "second": 1, + "-": 14, + "function": 4, + "mg_gcd": 2, + "compile_opt": 3, + "strictarr": 3, + "on_error": 1, + "if": 5, + "n_params": 1, + "ne": 1, + "then": 5, + "message": 2, + "mg_isinteger": 2, + "||": 1, + "begin": 2, + "endif": 2, + "_a": 3, + "abs": 2, + "_b": 3, + "minArg": 5, + "<": 1, + "maxArg": 3, + "eq": 2, + "return": 5, + "remainder": 3, + "mod": 1, + "end": 5, + "Truncate": 1, + "argument": 2, + "towards": 1, + "i.e.": 1, + "takes": 1, + "FLOOR": 1, + "of": 4, + "values": 2, + "and": 1, + "CEIL": 1, + "negative": 1, + "values.": 1, + "Examples": 2, + "Try": 1, + "main": 2, + "level": 2, + "program": 2, + "at": 1, + "this": 1, + "file.": 1, + "It": 1, + "does": 1, + "IDL": 5, + "print": 4, + "mg_trunc": 3, + "[": 6, + "]": 6, + "floor": 2, + "ceil": 2, + "array": 2, + "same": 1, + "as": 1, + "x": 8, + "float/double": 1, + "containing": 1, + "to": 1, + "truncate": 1, + "result": 3, + "posInd": 3, + "where": 1, + "gt": 2, + "nposInd": 2, + "L": 1, + "example": 1, + "MODULE": 1, + "mg_analysis": 1, + "DESCRIPTION": 1, + "Tools": 1, + "analysis": 1, + "VERSION": 1, + "SOURCE": 1, + "mgalloy": 1, + "BUILD_DATE": 1, + "January": 1, + "FUNCTION": 2, + "MG_ARRAY_EQUAL": 1, + "KEYWORDS": 1, + "MG_TOTAL": 1, + "Inverse": 1, + "hyperbolic": 2, + "cosine.": 1, + "Uses": 1, + "formula": 1, + "text": 1, + "{": 3, + "acosh": 1, + "}": 3, + "z": 9, + "ln": 1, + "sqrt": 4, + "The": 1, + "arc": 1, + "sine": 1, + "looks": 1, + "like": 2, + "*": 2, + "findgen": 1, + "/": 1, + "plot": 1, + "mg_acosh": 2, + "xstyle": 1, + "This": 1, + "should": 1, + "look": 1, + "..": 1, + "image": 1, + "acosh.png": 1, + "float": 1, + "double": 2, + "complex": 2, + "or": 1, + "depending": 1, + "on": 1, + "input": 2, + "numeric": 1, + "alog": 1 + }, + "Red": { + "Red/System": 1, + "[": 111, + "Title": 2, + "Purpose": 2, + "Language": 2, + "http": 2, + "//www.red": 2, + "-": 74, + "lang.org/": 2, + "]": 114, + "#include": 1, + "%": 2, + "../common/FPU": 1, + "configuration.reds": 1, + ";": 31, + "C": 1, + "types": 1, + "#define": 2, + "time": 2, + "long": 2, + "clock": 1, + "date": 1, + "alias": 2, + "struct": 5, + "second": 1, + "integer": 16, + "(": 6, + ")": 4, + "minute": 1, + "hour": 1, + "day": 1, + "month": 1, + "year": 1, + "Since": 1, + "weekday": 1, + "since": 1, + "Sunday": 1, + "yearday": 1, + "daylight": 1, + "saving": 1, + "Negative": 1, + "unknown": 1, + "#either": 3, + "OS": 3, + "#import": 1, + "LIBC": 1, + "file": 1, + "cdecl": 3, + "Error": 1, + "handling": 1, + "form": 1, + "error": 5, + "Return": 1, + "description.": 1, + "code": 3, + "return": 10, + "c": 7, + "string": 10, + "print": 5, + "Print": 1, + "to": 2, + "standard": 1, + "output.": 1, + "Memory": 1, + "management": 1, + "make": 1, + "Allocate": 1, + "zero": 3, + "filled": 1, + "memory.": 1, + "chunks": 1, + "size": 5, + "binary": 4, + "resize": 1, + "Resize": 1, + "memory": 2, + "allocation.": 1, + "JVM": 6, + "reserved0": 1, + "int": 6, + "ptr": 14, + "reserved1": 1, + "reserved2": 1, + "DestroyJavaVM": 1, + "function": 6, + "JNICALL": 5, + "vm": 5, + "jint": 5, + "AttachCurrentThread": 1, + "penv": 3, + "p": 3, + "args": 2, + "byte": 3, + "DetachCurrentThread": 1, + "GetEnv": 1, + "version": 3, + "AttachCurrentThreadAsDaemon": 1, + "just": 2, + "some": 2, + "datatypes": 1, + "for": 1, + "testing": 1, + "#some": 1, + "hash": 1, + "quit": 2, + "#": 8, + "{": 11, + "FF0000": 3, + "}": 11, + "FF000000": 2, + "with": 4, + "tab": 3, + "instead": 1, + "of": 1, + "space": 2, + "/wAAAA": 1, + "/wAAA": 2, + "A": 2, + "inside": 2, + "char": 1, + "bla": 2, + "ff": 1, + "foo": 3, + "numbers": 1, + "which": 1, + "interpreter": 1, + "path": 1, + "copy": 2, + "h": 1, + "#if": 1, + "type": 1, + "exe": 1, + "push": 3, + "system/stack/frame": 2, + "save": 1, + "previous": 1, + "frame": 2, + "pointer": 2, + "system/stack/top": 1, + "@@": 1, + "reposition": 1, + "after": 1, + "the": 3, + "catch": 1, + "flag": 1, + "CATCH_ALL": 1, + "exceptions": 1, + "root": 1, + "barrier": 1, + "keep": 1, + "stack": 1, + "aligned": 1, + "on": 1, + "bit": 1, + "Red": 3, + "Author": 1, + "File": 1, + "console.red": 1, + "Tabs": 1, + "Rights": 1, + "License": 2, + "Distributed": 1, + "under": 1, + "Boost": 1, + "Software": 1, + "Version": 1, + "See": 1, + "https": 1, + "//github.com/dockimbel/Red/blob/master/BSL": 1, + "License.txt": 1, + "#system": 1, + "global": 1, + "MacOSX": 2, + "History": 1, + "library": 1, + "add": 2, + "history": 2, + "Add": 1, + "line": 9, + "history.": 1, + "rl": 4, + "insert": 3, + "wrapper": 2, + "func": 1, + "count": 3, + "key": 3, + "Windows": 2, + "system/platform": 1, + "ret": 5, + "AttachConsole": 1, + "if": 2, + "halt": 2, + "SetConsoleTitle": 1, + "as": 4, + "string/rs": 1, + "head": 1, + "str": 4, + "bind": 1, + "input": 2, + "routine": 1, + "prompt": 3, + "/local": 1, + "len": 1, + "buffer": 4, + "string/load": 1, + "+": 1, + "length": 1, + "free": 1, + "SET_RETURN": 1, + "delimiters": 1, + "block": 3, + "list": 1, + "none": 1, + "foreach": 1, + "case": 2, + "escaped": 2, + "no": 2, + "in": 2, + "comment": 2, + "switch": 3, + "mono": 3, + "mode": 3, + "cnt/1": 1, + "red": 1, + "eval": 1, + "load/all": 1, + "unless": 1, + "tail": 1, + "set/any": 1, + "not": 1, + "script/2": 1, + "do": 2, + "skip": 1, + "script": 1, + "init": 1, + "console": 2, + "Console": 1, + "alpha": 1, + "only": 1, + "ASCII": 1, + "supported": 1 + }, + "Latte": { + "{": 54, + "var": 3, + "title": 4, + "}": 54, + "define": 1, + "author": 7, + "": 2, + "n": 8, + "href=": 4, + "Author": 2, + "authorId": 2, + "-": 71, + "id": 3, + "black": 2, + "avatar": 2, + "img": 2, + "rounded": 2, + "class": 2, + "tooltip": 4, + "Total": 1, + "time": 4, + "shortName": 1, + "translated": 4, + "on": 5, + "all": 1, + "videos.": 1, + "amaraCallbackLink": 1, + "row": 2, + "col": 3, + "md": 2, + "outOf": 5, + "done": 7, + "+": 3, + "threshold": 4, + "alert": 2, + "warning": 2, + "<=>": 2, + "class=": 12, + "Seems": 1, + "complete": 1, + "|": 6, + "out": 1, + "of": 3, + "

": 2, + "elseif": 2, + "<": 1, + "p": 1, + "if": 7, + "Although": 1, + "is": 1, + "there": 1, + "are": 1, + "no": 1, + "English": 1, + "subtitles": 1, + "for": 1, + "comparison.": 1, + "/if": 8, + "/cache": 1, + "editor": 1, + "ksid": 2, + "new": 5, + "video": 2, + "siteId": 1, + "Video": 1, + "khanovaskola.cz": 1, + "revision": 18, + "rev": 4, + "(": 18, + "this": 3, + ")": 18, + "older": 1, + "#": 2, + "else": 2, + "newer": 1, + "
": 1, + "

": 1, + "diffs": 3, + "noescape": 2, + "

": 1, + "
": 6, + "description": 1, + "
": 7, + "foreach=": 3, + "text": 4, + "as": 2, + "line": 3, + "context": 1, + "splitter": 1, + "template": 1, + "bottom": 1, + "Expand": 1, + "fa": 16, + "sort": 1, + "ellipsis": 1, + "h": 1, + "success": 1, + "amaraEdit": 1, + "amaraId": 2, + "editButton": 1, + "btn": 17, + "default": 6, + "edit": 1, + "khanAcademy": 1, + "kaButton": 1, + "link": 1, + "info": 1, + "group": 4, + "approve": 1, + "thumbs": 3, + "o": 7, + "up": 1, + "markIncomplete": 2, + "down": 2, + "redirectToAdd": 1, + "plus": 1, + "square": 1, + "table": 2, + "condensed": 1, + "revisions": 1, + "revId": 1, + "secondary": 2, + "Percent": 1, + "lines": 1, + "&": 1, + "thinsp": 1, + ";": 9, + "%": 1, + "
": 1, - "class=": 7, - "
": 1, - "
": 1, - "

": 1, - "@ViewData": 2, - ".": 3, - "

": 1, - "

": 1, - "

": 1, - "
": 1, - "

": 1, - "To": 1, - "learn": 1, - "more": 4, - "about": 2, - "ASP.NET": 5, - "MVC": 4, - "visit": 2, - "": 5, - "href=": 5, - "title=": 2, - "http": 1, - "//asp.net/mvc": 1, - "": 5, - "The": 1, - "page": 1, - "features": 3, - "": 1, - "videos": 1, - "tutorials": 1, - "and": 6, - "samples": 1, - "": 1, - "help": 1, - "you": 4, - "get": 1, - "most": 1, - "MVC.": 1, - "have": 1, - "any": 1, - "questions": 1, - "our": 1, - "forums": 1, - "

": 1, - "
": 1, - "
": 3, + "": 3, + "": 2, + "incomplete": 3, + "||": 3, + "approved": 2, + "i": 9, + "": 1, + "user": 1, + "loggedIn": 1, + "&&": 1, + "comments": 2, + "count": 1, + "": 2, + "": 2, + "colspan=": 1, + "": 1, + "comment": 4, + "left": 1, + "createdAt": 1, + "timeAgo": 1, + "noborder": 1, + "input": 3, + "form": 1, + "control": 1, + "Comment": 1, + "only": 1, + "visible": 1, + "to": 2, + "other": 1, + "editors": 1, + "save": 1, + "share": 1, + "": 1, + "": 1, + "/form": 1, + "/foreach": 1, + "
": 1, + "**": 1, + "*": 4, + "@param": 3, + "string": 2, + "basePath": 1, + "web": 1, + "base": 1, + "path": 1, + "robots": 2, + "tell": 1, + "how": 1, + "index": 1, + "the": 1, + "content": 1, + "a": 4, + "page": 1, + "optional": 1, + "array": 1, + "flashes": 1, + "flash": 3, + "messages": 1, + "": 1, + "html": 1, + "": 1, + "": 1, + "": 6, + "charset=": 1, + "name=": 4, + "content=": 5, + "ifset=": 1, + "http": 1, + "equiv=": 1, + "": 1, + "ifset": 1, + "/ifset": 1, + "Translation": 1, + "report": 1, + "": 1, + "": 2, + "rel=": 2, + "media=": 1, + "": 3, + "block": 3, + "#head": 1, + "/block": 3, + "": 1, + "": 1, + "document.documentElement.className": 1, + "#navbar": 1, + "include": 3, + "_navbar.latte": 1, + "inner": 1, + "_flash.latte": 1, + "#content": 1, + "
": 1, + "
": 1, + "src=": 1, + "#scripts": 1, + "": 1, + "": 1 + }, + "Matlab": { + "%": 554, + "data": 27, + "load_data": 4, + "(": 1379, + ")": 1380, + ";": 909, + "filename": 21, + "guess.plantOne": 3, + "[": 311, + "]": 311, + "guess.plantTwo": 2, + "plantNum.plantOne": 2, + "plantNum.plantTwo": 2, + "t": 32, + "sections": 13, + "{": 157, + "}": 157, + "for": 78, + "i": 338, + "length": 49, + "secData.": 1, + "/": 59, + "data.Ts": 6, + "+": 169, + "end": 150, + "kP1": 4, + "gainSlopeOffset": 6, + "*": 46, + "eye": 9, + "kP2": 3, + "m": 44, + "b": 12, + "if": 52, + "strcmp": 24, + "||": 3, + "display": 10, + "else": 23, + "guess.": 2, + "result.": 2, + "-": 673, + ".fit.par": 1, + "currentGuess": 2, + ".*": 2, + "warning": 1, + "randomGuess": 1, + "The": 6, + "self": 2, + "validation": 2, + "VAF": 2, + "is": 7, + "f.": 2, + "data/": 1, + "results.mat": 1, + "guess": 1, + "plantNum": 1, + "result": 5, + "plots/": 1, + ".png": 1, + "task": 1, + "plant": 4, + "order": 11, + "of": 35, + "the": 14, + "closed": 1, + "loop": 1, + "system": 2, + "u.": 1, + "gain": 1, + "guesses": 1, + "k1": 4, + "f": 13, + "k2": 3, + "k3": 3, + "k4": 4, + "identified": 1, + "gains": 12, + "...": 162, + ".vaf": 1, + "function": 34, + "write_gains": 1, + "pathToFile": 11, + "speeds": 21, + "contents": 1, + "importdata": 1, + "speedsInFile": 5, + "contents.data": 2, + "gainsInFile": 3, + "sameSpeedIndices": 5, + "j": 242, + "abs": 12, + "<": 9, + "e": 14, + "allGains": 4, + "allSpeeds": 4, + "sort": 1, + "all": 15, + "fid": 7, + "fopen": 2, + "h": 19, + "contents.colheaders": 1, + "fprintf": 18, + "fclose": 2, + "d": 12, + "d_mean": 3, + "d_std": 3, + "normalize": 1, + "mean": 2, + "repmat": 2, + "size": 11, + "std": 1, + "d./": 1, + "options": 14, + "varargin_to_structure": 2, + "arguments": 7, + "error": 16, + "mod": 3, + "ischar": 1, + "options.": 1, + "classdef": 1, + "matlab_class": 2, + "properties": 1, + "R": 1, + "G": 1, + "B": 9, + "methods": 1, + "obj": 2, + "r": 2, + "g": 5, + "obj.R": 2, + "obj.G": 2, + "obj.B": 2, + "disp": 8, + "num2str": 10, + "enumeration": 1, + "red": 1, + "green": 1, + "blue": 1, + "cyan": 1, + "magenta": 1, + "yellow": 1, + "black": 1, + "white": 1, + "Yc": 5, + "varargin": 25, + "&": 4, + "parallel": 2, + "choose_plant": 4, + "p": 7, + "num": 24, + "tf": 18, + "elseif": 14, + "t0": 6, + "t1": 6, + "t2": 6, + "t3": 1, + "dataPlantOne": 3, + "dataAdapting": 3, + "dataPlantTwo": 3, + "guessPlantOne": 4, + "resultPlantOne": 1, + "find_structural_gains": 2, + "yh": 2, + "fit": 6, + "x0": 4, + "compare": 3, + "resultPlantOne.fit": 1, + "sprintf": 11, + "guessPlantTwo": 3, + "resultPlantTwo": 1, + "resultPlantTwo.fit": 1, + "resultPlantOne.fit.par": 1, + "resultPlantTwo.fit.par": 1, + "aux.pars": 3, + "this": 2, + "only": 7, + "uses": 1, + "tau": 1, + "through": 1, + "wfs": 1, + "aux.timeDelay": 2, + "true": 2, + "aux.plantFirst": 2, + "s": 13, + "aux.plantSecond": 2, + "plantOneSlopeOffset": 3, + "plantTwoSlopeOffset": 3, + "aux.m": 3, + "aux.b": 3, + "dx": 6, + "y": 25, + "adapting_structural_model": 2, + "ones": 6, + "aux": 3, + "idnlgrey": 1, + "zeros": 61, + "pem": 1, + "x": 46, + "RK4": 3, + "fun": 5, + "tspan": 7, + "ci": 9, + "mu": 73, + "th": 1, + "Runge": 1, + "Kutta": 1, + "integrator": 2, + "T": 22, + "dim": 2, + "l": 64, + "while": 1, + "h/2": 2, + "k1*h/2": 1, + "k2*h/2": 1, + "h*k3": 1, + "h/6*": 1, + "*k2": 1, + "*k3": 1, + "cross_validation": 1, + "hyper_parameter": 3, + "num_data": 2, + "K": 4, + "indices": 2, + "crossvalind": 1, + "errors": 4, + "test_idx": 4, + "train_idx": 3, + "x_train": 2, + "y_train": 2, + "w": 6, + "train": 1, + "x_test": 3, + "y_test": 3, + "calc_cost": 1, + "calc_error": 2, + "clear": 13, + "tic": 7, + "x_min": 3, + "x_max": 3, + "y_min": 3, + "y_max": 3, + "n": 102, + "how": 1, + "many": 1, + "points": 11, + "per": 5, + "one": 3, + "measure": 1, + "unit": 1, + "both": 1, + "in": 8, + "and": 7, + "ds": 1, + "x_res": 7, + "*n": 2, + "y_res": 7, + "grid_x": 3, + "linspace": 14, + "grid_y": 3, + "advected_x": 12, + "advected_y": 12, + "parfor": 5, + "X": 6, + "ode45": 6, + "@dg": 1, + "store": 4, + "advected": 2, + "positions": 2, + "as": 4, + "they": 2, + "would": 2, + "appear": 2, + "coords": 2, + "Compute": 3, + "FTLE": 14, + "sigma": 6, + "compute": 2, + "Jacobian": 3, + "phi": 13, + "*ds": 4, + "find": 24, + "max": 9, + "eigenvalue": 2, + "*phi": 2, + "log": 2, + "lambda_max": 2, + "/abs": 3, + "*T": 3, + "toc": 5, + "plot": 26, + "field": 2, + "figure": 17, + "contourf": 2, + "location": 1, + "EastOutside": 1, + "axis": 5, + "equal": 2, + "shading": 3, + "flat": 3, + "Earth": 2, + "Moon": 2, + "xl1": 13, + "yl1": 12, + "xl2": 9, + "yl2": 8, + "xl3": 8, + "yl3": 8, + "xl4": 10, + "yl4": 9, + "xl5": 8, + "yl5": 8, + "Lagr": 6, + "C": 13, + "*Potential": 5, + "x_0": 45, + "y_0": 29, + "vx_0": 37, + "vy_0": 22, + "sqrt": 14, + "C_star": 1, + "*Omega": 5, + "E": 8, + "C/2": 1, + "odeset": 4, + "Integrate": 6, + "first": 3, + "orbit": 1, + "Y0": 6, + "ode113": 2, + "@f": 6, + "y0": 2, + "vx0": 2, + "vy0": 2, + "l0": 1, + "delta_E0": 1, + "Energy": 4, + "Hill": 1, + "Edgecolor": 1, + "none": 1, + ".2f": 5, + "ok": 2, + "sg": 1, + "sr": 1, + "load_bikes": 2, + "bikes": 24, + "input": 14, + "speedNames": 12, + "gains.Benchmark.Slow": 1, + "place": 2, + "holder": 2, + "gains.Browserins.Slow": 1, + "gains.Browser.Slow": 1, + "gains.Pista.Slow": 1, + "gains.Fisher.Slow": 1, + "gains.Yellow.Slow": 1, + "gains.Yellowrev.Slow": 1, + "gains.Benchmark.Medium": 1, + "gains.Browserins.Medium": 1, + "gains.Browser.Medium": 1, + "gains.Pista.Medium": 1, + "gains.Fisher.Medium": 1, + "gains.Yellow.Medium": 1, + "gains.Yellowrev.Medium": 1, + "gains.Benchmark.Fast": 1, + "gains.Browserins.Fast": 1, + "gains.Browser.Fast": 1, + "gains.Pista.Fast": 1, + "gains.Fisher.Fast": 1, + "gains.Yellow.Fast": 1, + "gains.Yellowrev.Fast": 1, + "data.": 6, + ".": 13, + "generate_data": 5, + "gains.": 1, + "parser": 1, + "inputParser": 1, + "parser.addRequired": 1, + "parser.addParamValue": 3, + "parser.parse": 1, + "args": 1, + "parser.Results": 1, + "raw": 1, + "load": 1, + "args.directory": 1, + "filesep": 14, + "iddata": 1, + "raw.theta": 1, + "raw.theta_c": 1, + "args.sampleTime": 1, + "args.detrend": 1, + "detrend": 1, + "Call": 2, + "matlab_function": 5, + "which": 2, + "resides": 2, + "same": 2, + "directory": 2, + "value1": 4, + "semicolon": 2, + "at": 3, + "line": 15, + "not": 3, + "mandatory": 2, + "suppresses": 2, + "output": 7, + "to": 9, + "command": 2, + "line.": 2, + "value2": 4, + "arg1": 1, + "arg": 2, + "arrayfun": 2, + "RK4_par": 1, + "Y": 19, + "par": 7, + "par_text_to_struct": 4, + "textscan": 1, + "names": 6, + "strtrim": 2, + "vals": 2, + "regexp": 1, + "v": 12, + "par.": 1, + "str2num": 1, + "wnm": 11, + "zetanm": 5, + "bicycle": 7, + "ss": 3, + "data.modelPar.A": 1, + "data.modelPar.B": 1, + "data.modelPar.C": 1, + "data.modelPar.D": 1, + "bicycle.StateName": 2, + "bicycle.OutputName": 4, + "bicycle.InputName": 2, + "inputs": 14, + "outputs": 10, + "analytic": 3, + "system_state_space": 2, + "numeric": 2, + "data.system.A": 1, + "data.system.B": 1, + "data.system.C": 1, + "data.system.D": 1, + "numeric.StateName": 1, + "data.bicycle.states": 1, + "numeric.InputName": 1, + "data.bicycle.inputs": 1, + "numeric.OutputName": 1, + "data.bicycle.outputs": 1, + "pzplot": 1, + "hold": 23, + "den": 15, + "ss2tf": 2, + "analytic.A": 3, + "analytic.B": 1, + "analytic.C": 1, + "analytic.D": 1, + "mine": 1, + "bode": 5, + "data.forceTF.PhiDot.num": 1, + "data.forceTF.PhiDot.den": 1, + "numeric.A": 2, + "numeric.B": 1, + "numeric.C": 1, + "numeric.D": 1, + "eig": 6, + "A": 11, + "D": 7, + "whipple_pull_force_ABCD": 1, + "bottomRow": 1, + "prod": 3, + "ret": 3, + "bicycle_state_space": 1, + "speed": 20, + "S": 5, + "dbstack": 1, + "CURRENT_DIRECTORY": 2, + "fileparts": 1, + ".file": 1, + "whipple_pull_force_abcd": 2, + "states": 7, + "defaultSettings.states": 1, + "defaultSettings.inputs": 1, + "defaultSettings.outputs": 1, + "userSettings": 3, + "struct": 1, + "settings": 3, + "overwrite_settings": 2, + "defaultSettings": 3, + "minStates": 2, + "sum": 2, + "ismember": 15, + "settings.states": 3, + "keepStates": 2, + "removeStates": 1, + "row": 6, + "col": 5, + "removeInputs": 2, + "settings.inputs": 1, + "keepOutputs": 2, + "settings.outputs": 1, + "It": 1, + "possible": 1, + "keep": 1, + "because": 1, + "it": 1, + "depends": 1, + "on": 13, + "StateName": 1, + "OutputName": 1, + "InputName": 1, + "overrideSettings": 3, + "overrideNames": 2, + "fieldnames": 5, + "defaultNames": 2, + "notGiven": 5, + "setxor": 1, + "settings.": 1, + "defaultSettings.": 1, + "create_ieee_paper_plots": 2, + "rollData": 8, + "global": 6, + "goldenRatio": 12, + "exist": 1, + "mkdir": 1, + "linestyles": 15, + "colors": 13, + "loop_shape_example": 3, + "data.Benchmark.Medium": 2, + "plot_io_roll": 3, + "open_loop_all_bikes": 1, + "handling_all_bikes": 1, + "path_plots": 1, + "var": 3, + "io": 7, + "typ": 3, + "plot_io": 1, + "phase_portraits": 2, + "eigenvalues": 2, + "bikeData": 2, + "figWidth": 24, + "figHeight": 19, + "set": 43, + "gcf": 17, + "freq": 12, + "closedLoops": 1, + "bikeData.closedLoops": 1, + "bops": 7, + "bodeoptions": 1, + "bops.FreqUnits": 1, + "gray": 7, + "deltaNum": 2, + "closedLoops.Delta.num": 1, + "deltaDen": 2, + "closedLoops.Delta.den": 1, + "bodeplot": 6, + "neuroNum": 2, + "neuroDen": 2, + "whichLines": 3, + "phiDotNum": 2, + "closedLoops.PhiDot.num": 1, + "phiDotDen": 2, + "closedLoops.PhiDot.den": 1, + "closedBode": 3, + "off": 10, + "opts": 4, + "getoptions": 2, + "opts.YLim": 3, + "opts.PhaseMatching": 2, + "opts.PhaseMatchingValue": 2, + "opts.Title.String": 2, + "setoptions": 2, + "lines": 17, + "findobj": 5, + "raise": 19, + "plotAxes": 22, + "curPos1": 4, + "get": 11, + "curPos2": 4, + "xLab": 8, + "legWords": 3, + "closeLeg": 2, + "legend": 7, + "axes": 9, + "db1": 4, + "text": 11, + "db2": 2, + "dArrow1": 2, + "annotation": 13, + "dArrow2": 2, + "dArrow": 2, + "print": 6, + "fix_ps_linestyle": 6, + "openLoops": 1, + "bikeData.openLoops": 1, + "openLoops.Phi.num": 1, + "openLoops.Phi.den": 1, + "openLoops.Psi.num": 1, + "openLoops.Psi.den": 1, + "openLoops.Y.num": 1, + "openLoops.Y.den": 1, + "openBode": 3, + "wc": 14, + "wShift": 5, + "bikeData.handlingMetric.num": 1, + "bikeData.handlingMetric.den": 1, + "mag": 4, + "phase": 2, + "metricLine": 1, + "k": 75, + "Linewidth": 7, + "Color": 13, + "Linestyle": 6, + "Handling": 2, + "Quality": 2, + "Metric": 2, + "Frequency": 2, + "rad/s": 4, + "Level": 6, + "benchmark": 1, + "Handling.eps": 1, + "plots": 4, + "deps2": 1, + "loose": 4, + "PaperOrientation": 3, + "portrait": 3, + "PaperUnits": 3, + "inches": 3, + "PaperPositionMode": 3, + "manual": 3, + "PaperPosition": 3, + "PaperSize": 3, + "rad/sec": 1, + "Open": 1, + "Loop": 1, + "Bode": 1, + "Diagrams": 1, + "m/s": 6, + "Latex": 1, + "type": 4, + "LineStyle": 2, + "LineWidth": 2, + "Location": 2, + "Southwest": 1, + "Fontsize": 4, + "YColor": 2, + "XColor": 1, + "Position": 6, + "Xlabel": 1, + "Units": 1, + "normalized": 1, + "openBode.eps": 1, + "deps2c": 3, + "maxMag": 2, + "magnitudes": 1, + "area": 1, + "fillColors": 1, + "gca": 8, + "metricLines": 2, + ".handlingMetric.num": 1, + ".handlingMetric.den": 1, + "chil": 2, + "legLines": 1, + "Hands": 1, + "free": 1, + "@": 1, + "handling.eps": 1, + "YTick": 1, + "YTickLabel": 1, + "Path": 1, + "Southeast": 1, + "Distance": 1, + "Lateral": 1, + "Deviation": 1, + "paths.eps": 1, + "like": 1, + "plot.": 1, + "prettyNames": 3, + "units": 3, + "index": 6, + "variable": 10, + "data.Browser": 1, + "maxValue": 4, + "oneSpeed": 3, + "history": 7, + "oneSpeed.": 3, + "round": 1, + "pad": 10, + "yShift": 16, + "xShift": 3, + "time": 21, + "oneSpeed.time": 2, + "oneSpeed.speed": 2, + "distance": 6, + "xAxis": 12, + "xData": 3, + "textX": 3, + "ylim": 2, + "ticks": 4, + "xlabel": 8, + "xLimits": 6, + "xlim": 8, + "loc": 3, + "l1": 2, + "l2": 2, + "ylabel": 4, + "box": 4, + "&&": 13, + "x_r": 6, + "y_r": 6, + "w_r": 5, + "h_r": 5, + "rectangle": 2, + "w_r/2": 4, + "h_r/2": 4, + "x_a": 10, + "y_a": 10, + "w_a": 7, + "h_a": 5, + "ax": 15, + "rollData.speed": 1, + "rollData.time": 1, + "path": 3, + "rollData.path": 1, + "frontWheel": 3, + "rollData.outputs": 3, + "rollAngle": 4, + "steerAngle": 4, + "rollTorque": 4, + "rollData.inputs": 1, + "subplot": 3, + "h1": 5, + "h2": 5, + "plotyy": 3, + "inset": 3, + "gainChanges": 2, + "loopNames": 4, + "xy": 7, + "xySource": 7, + "xlabels": 2, + "ylabels": 2, + "legends": 3, + "floatSpec": 3, + "twentyPercent": 1, + "nominalData": 1, + "nominalData.": 2, + "bikeData.": 2, + "twentyPercent.": 2, + "leg1": 2, + "bikeData.modelPar.": 1, + "leg2": 2, + "twentyPercent.modelPar.": 1, + "eVals": 5, + "pathToParFile": 2, + "str": 2, + "eigenValues": 1, + "real": 3, + "zeroIndices": 3, + "maxEvals": 4, + "maxLine": 7, + "minLine": 4, + "min": 1, + "speedInd": 12, + "u": 3, + "Yp": 2, + "human": 1, + "c1": 5, + "c2": 5, + "Ys": 1, + "feedback": 1, + "tf2ss": 1, + "Ys.num": 1, + "Ys.den": 1, + "z": 3, + "*vx_0": 1, + "pcolor": 2, + "value": 2, + "isterminal": 2, + "direction": 2, + "FIXME": 1, + "from": 2, + "largest": 1, + "primary": 1, + "f_x_t": 2, + "inline": 1, + "grid_min": 3, + "grid_max": 3, + "grid_width": 1, + "grid_spacing": 5, + "grid_width/": 1, + "*grid_width/": 4, + "colorbar": 1, + "lane_change": 1, + "start": 4, + "width": 3, + "slope": 3, + "pathLength": 3, + "single": 1, + "double": 1, + "Double": 1, + "lane": 4, + "change": 1, + "needs": 1, + "lane.": 1, + "laneLength": 4, + "startOfSlope": 3, + "endOfSlope": 1, + "<=>": 1, + "1": 1, + "downSlope": 3, + "clc": 1, + "close": 4, + "Choice": 2, + "mass": 2, + "parameter": 2, + "Computation": 9, + "Lagrangian": 3, + "Points": 2, + "initial": 5, + "total": 6, + "energy": 8, + "E_L1": 4, + "Omega": 7, + "Offset": 2, + "Initial": 3, + "conditions": 3, + "range": 2, + "x_0_min": 8, + "x_0_max": 8, + "vx_0_min": 8, + "vx_0_max": 8, + "ndgrid": 2, + "*E": 2, + "vx_0.": 2, + "E_cin": 4, + "Transforming": 1, + "into": 1, + "Hamiltonian": 1, + "variables": 2, + "px_0": 2, + "py_0": 2, + "x_T": 25, + "y_T": 17, + "px_T": 4, + "py_T": 4, + "filtro": 15, + "E_T": 11, + "a": 17, + "matrix": 3, + "numbers": 2, + "integration": 9, + "steps": 2, + "each": 2, + "np": 8, + "number": 2, + "integrated": 5, + "tolerance": 2, + "setting": 4, + "energy_tol": 6, + "inf": 1, + "@cr3bp_jac": 1, + "Parallel": 2, + "equations": 2, + "motion": 2, + "isreal": 8, + "Check": 6, + "velocity": 2, + "positive": 2, + "Kinetic": 2, + "@fH": 1, + "Saving": 4, + "solutions": 2, + "final": 2, + "difference": 2, + "with": 2, + "EnergyH": 1, + "delta_E": 7, + "conservation": 2, + "position": 2, + "point": 14, + "interesting": 4, + "non": 2, + "sense": 2, + "bad": 4, + "t_integrazione": 3, + "t_integr": 1, + "Back": 1, + "vx_T": 22, + "vy_T": 12, + "dphi": 12, + "ftle": 10, + "Manual": 2, + "visualize": 2, + "Inf": 1, + "*log": 2, + "tempo": 4, + "integrare": 2, + "calcolare": 2, + "var_": 2, + "_": 2, + "var_xvx_": 2, + "ode00": 2, + "_n": 2, + "_e": 1, + "_H": 1, + "save": 2, + "nome": 2, + "/2": 3, + "roots": 3, + "*mu": 6, + "c3": 3, + "Elements": 1, + "grid": 1, + "definition": 2, + "Dimensionless": 1, + "integrating": 1, + "C_L1": 3, + "*E_L1": 1, + "Szebehely": 1, + "Setting": 1, + "RelTol": 2, + "AbsTol": 2, + "From": 1, + "Short": 1, + "waitbar": 6, + "r1": 3, + "r2": 3, + "i/n": 1, + "y_0.": 2, + "./": 1, + "mu./": 1, + "@f_reg": 1, + "filtro_1": 12, + "ftle_norm": 1, + "ds_x": 1, + "ds_vx": 1, + "La": 1, + "direzione": 1, + "dello": 1, + "spostamento": 1, + "la": 2, + "decide": 1, + "il": 1, + "denominatore": 1, + "TODO": 1, + "spiegarsi": 1, + "teoricamente": 1, + "come": 1, + "mai": 1, + "matrice": 1, + "pu": 1, + "essere": 1, + "ridotta": 1, + "x2": 1, + "*ds_x": 2, + "*ds_vx": 2, + "dphi*dphi": 1, + "name": 4, + "convert_variable": 1, + "coordinates": 6, + "get_variables": 2, + "columns": 4, + "Range": 1, + "E_0": 4, + "C_L1/2": 1, + "Y_0": 4, + "nx": 32, + "nvx": 32, + "dvx": 3, + "ny": 29, + "dy": 5, + "ne": 29, + "de": 4, + "e_0": 7, + "Definition": 1, + "arrays": 1, + "In": 1, + "approach": 1, + "useful": 9, + "pints": 1, + "are": 1, + "stored": 1, + "filter": 14, + "v_y": 3, + "*e_0": 3, + "vx": 2, + "vy": 2, + "Selection": 1, + "Data": 2, + "transfer": 1, + "GPU": 3, + "x_gpu": 3, + "gpuArray": 4, + "y_gpu": 3, + "vx_gpu": 3, + "vy_gpu": 3, + "Integration": 2, + "N": 9, + "x_f": 3, + "y_f": 3, + "vx_f": 3, + "vy_f": 3, + "@RKF45_FILE_gpu": 1, + "back": 1, + "CPU": 1, + "memory": 1, + "cleaning": 1, + "gather": 4, + "Construction": 1, + "computation": 2, + "X_T": 4, + "Y_T": 4, + "VX_T": 4, + "VY_T": 3, + "filter_ftle": 11, + "Compute_FILE_gpu": 1, + "Plot": 1, + "results": 1, + "squeeze": 1, + "Conditions": 1, + "@cross_y": 1, + "te": 2, + "ye": 9, + "ie": 2, + "e_T": 7, + "delta_e": 3, + "Integrate_FTLE_Gawlick_ell": 1, + "ecc": 2, + "nu": 2, + "Look": 2, + "phisically": 2, + "meaningful": 6, + "meaningless": 2, + "i/nx": 2, + "ecc*cos": 1, + "@f_ell": 1, + "Consider": 1, + "also": 1, + "negative": 1, + "goodness": 1, + "Integrate_FILE": 1, + "Potential": 1, + "average": 1, + "|": 2, + "/length": 1, + "filtfcn": 2, + "statefcn": 2, + "makeFilter": 1, + "@iirFilter": 1, + "@getState": 1, + "yn": 2, + "iirFilter": 1, + "xn": 4, + "vOut": 2, + "getState": 1 + }, + "JSON": { + "{": 73, + "[": 17, + "]": 17, + "}": 73, + "true": 3 + }, + "Haml": { + "%": 1, + "p": 1, + "Hello": 1, + "World": 1 + }, + "Groovy": { + "SHEBANG#!groovy": 2, + "println": 3, + "html": 3, + "{": 9, + "head": 2, + "title": 2, + "}": 9, + "body": 1, + "p": 1, + "component": 1, + "task": 1, + "echoDirListViaAntBuilder": 1, + "(": 7, + ")": 7, + "description": 1, + "//Docs": 1, + "http": 1, + "//ant.apache.org/manual/Types/fileset.html": 1, + "//Echo": 1, + "the": 3, + "Gradle": 1, + "project": 1, + "name": 1, + "via": 1, + "ant": 1, + "echo": 1, + "plugin": 1, + "ant.echo": 3, + "message": 1, + "project.name": 1, + "path": 2, + "//Gather": 1, + "list": 1, + "of": 1, + "files": 1, + "in": 1, + "a": 1, + "subdirectory": 1, + "ant.fileScanner": 1, + "fileset": 1, + "dir": 1, + ".each": 1, + "//Print": 1, + "each": 1, + "file": 1, + "to": 1, + "screen": 1, + "with": 1, + "CWD": 1, + "projectDir": 1, + "removed.": 1, + "it.toString": 1, + "-": 1 + }, + "Coq": { + "Require": 17, + "Export": 10, + "Sorted.": 1, + "Mergesort.": 1, + "Lists.": 1, + "Basics.": 2, + "Import": 11, + "Playground1.": 5, + "Inductive": 41, + "list": 78, + "(": 1248, + "X": 191, + "Type": 86, + ")": 1249, + "|": 457, + "nil": 46, + "cons": 26, + "-": 508, + "X.": 4, + "Fixpoint": 36, + "length": 21, + "l": 379, + "nat": 108, + "match": 70, + "with": 223, + "O": 98, + "h": 14, + "t": 93, + "S": 186, + "end.": 52, + "app": 5, + "l1": 89, + "l2": 73, + "snoc": 9, + "v": 28, + "rev": 7, + "Implicit": 15, + "Arguments": 11, + "[": 170, + "]": 173, + ".": 433, + "Definition": 46, + "list123": 1, + "Notation": 39, + "x": 266, + "y": 116, + "at": 17, + "level": 11, + "right": 2, + "associativity": 7, + "nil.": 2, + "..": 4, + "repeat": 11, + "n": 369, + "count": 7, + "Example": 37, + "test_repeat1": 1, + "bool": 38, + "true": 68, + "Proof.": 208, + "reflexivity.": 199, + "Qed.": 194, + "Theorem": 115, + "nil_app": 1, + "forall": 248, + "l.": 26, + "rev_snoc": 1, + "s": 13, + "intros": 258, + "s.": 4, + "induction": 81, + "simpl.": 70, + "rewrite": 241, + "IHs.": 2, + "snoc_with_append": 1, + "+": 227, + "v.": 1, + "l1.": 5, + "IHl1.": 1, + "prod": 3, + "Y": 38, + "pair": 7, + "Y.": 1, + "type_scope.": 1, + "fst": 3, + "p": 81, + "*": 59, + "snd": 3, + "combine": 3, + "lx": 4, + "ly": 4, + "_": 67, + "tx": 2, + "ty": 7, + "split": 14, + "{": 39, + "}": 35, + "tp": 2, + "end": 16, + "option": 6, + "Some": 21, + "None": 9, + "index": 3, + "xs": 7, + "hd_opt": 8, + "test_hd_opt1": 2, + "test_hd_opt2": 2, + "plus3": 2, + "plus": 10, + "prod_curry": 3, + "Z": 11, + "f": 108, + "prod_uncurry": 3, + "uncurry_uncurry": 1, + "y.": 15, + "curry_uncurry": 1, + "p.": 9, + "destruct": 94, + "filter": 3, + "test": 4, + "if": 10, + "then": 9, + "else": 9, + "countoddmembers": 1, + "beq_nat": 24, + "k": 7, + "fmostlytrue": 5, + "override": 5, + "ftrue": 1, + "false": 48, + "false.": 12, + "override_example1": 1, + "true.": 16, + "override_example2": 1, + "override_example3": 1, + "override_example4": 1, + "override_example": 1, + "b": 89, + "constfun": 1, + "b.": 14, + "unfold_example_bad": 1, + "m": 201, + "m.": 21, + "H.": 100, + "unfold": 58, + "plus3.": 1, + "override_eq": 1, + "x.": 3, + "f.": 1, + "override.": 2, + "<->": 31, + "beq_nat_refl": 3, + "reflexivity": 16, + "Qed": 23, + "override_neq": 1, + "x1": 11, + "x2": 3, + "k1": 5, + "k2": 4, + "x1.": 3, + "eq1": 6, + "eq2.": 9, + "eq1.": 5, + "eq_add_S": 2, + "eq.": 11, + "inversion": 104, + "silly4": 1, + "o": 25, + "silly5": 1, + "sillyex1": 1, + "z": 14, + "j": 6, + "j.": 1, + "symmetry.": 2, + "H0.": 24, + "silly6": 1, + "contra.": 19, + "silly7": 1, + "sillyex2": 1, + "z.": 6, + "beq_nat_eq": 2, + "n.": 44, + "as": 77, + "SCase": 24, + "Case": 51, + "Proof": 12, + "of": 4, + "assertion": 3, + "Hl.": 1, + "apply": 340, + "IHm": 2, + "eq": 4, + "simpl": 116, + "0": 5, + "assert": 68, + "SSCase": 3, + "IHl": 8, + "beq_nat_O_l": 1, + "beq_nat_O_r": 1, + "double_injective": 1, + "double": 2, + "IHl.": 7, + "fold_map": 2, + "fold": 1, + "fun": 17, + "total": 2, + "fold_map_correct": 1, + "map": 4, + "fold_map.": 1, + "forallb": 4, + "andb": 8, + "existsb": 3, + "orb": 8, + "existsb2": 2, + "negb": 10, + "existsb_correct": 1, + "existsb2.": 1, + "x0": 14, + "index_okx": 1, + "None.": 2, + "mumble": 5, + "a": 207, + "c": 70, + "mumble.": 1, + "grumble": 3, + "d": 6, + "e": 53, + "SfLib.": 2, + "Module": 11, + "STLC.": 1, + "ty_Bool": 10, + "ty_arrow": 7, + "ty.": 2, + "tm": 43, + "tm_var": 6, + "id": 7, + "tm_app": 7, + "tm_abs": 9, + "tm_true": 8, + "tm_false": 5, + "tm_if": 10, + "tm.": 3, + "Tactic": 9, + "tactic": 9, + "first": 18, + "ident": 9, + ";": 375, + "Case_aux": 38, + "Id": 7, + "idB": 2, + "idBB": 2, + "idBBBB": 2, + "value": 25, + "Prop": 17, + "v_abs": 1, + "T": 49, + "t_true": 1, + "t_false": 1, + "tm_false.": 3, + "Hint": 9, + "Constructors": 3, + "value.": 1, + "subst": 7, + "beq_id": 14, + "t2": 51, + "t1": 48, + "ST_App2": 1, + "v1": 7, + "t3": 6, + "where": 6, + "step": 9, + "stepmany": 4, + "refl_step_closure": 11, + "step.": 3, + "Lemma": 51, + "step_example3": 1, + "idB.": 1, + "eapply": 8, + "rsc_step.": 2, + "ST_App1.": 2, + "ST_AppAbs.": 3, + "v_abs.": 2, + "rsc_refl.": 4, + "context": 1, + "partial_map": 4, + "Context.": 1, + "A": 113, + "A.": 6, + "empty": 3, + "extend": 1, + "Gamma": 10, + "has_type": 4, + "appears_free_in": 1, + "S.": 1, + "auto.": 47, + "intros.": 27, + "generalize": 13, + "dependent": 6, + "HT": 1, + "T_Var.": 1, + "extend_neq": 1, + "in": 221, + "H2.": 20, + "assumption.": 61, + "Heqe.": 3, + "rename": 2, + "i": 11, + "into": 2, + "T_Abs.": 1, + "remember": 12, + "e.": 15, + "context_invariance...": 2, + "beq_id_eq": 4, + "subst.": 43, + "Hafi.": 2, + "extend.": 2, + "IHt.": 1, + "Coiso1.": 2, + "Coiso2.": 3, + "eauto": 10, + "HeqCoiso1.": 1, + "HeqCoiso2.": 1, + "<": 76, + "beq_id_false_not_eq.": 1, + "ex_falso_quodlibet.": 1, + "preservation": 1, + "HT.": 1, + "H1.": 31, + "substitution_preserves_typing": 1, + "T11.": 4, + "HT1.": 1, + "T_App": 2, + "IHHT1.": 1, + "IHHT2.": 1, + "/": 41, + "exists": 60, + "t.": 4, + "tm_cases": 1, + "Ht": 1, + "Ht.": 3, + "right.": 9, + "IHt1": 2, + "T11": 2, + "IHt2": 3, + "H3.": 5, + "T0": 2, + "ST_App2.": 1, + "ty_Bool.": 1, + "T.": 9, + "IHt3": 1, + "t2.": 4, + "ST_IfTrue.": 1, + "t3.": 2, + "ST_IfFalse.": 1, + "ST_If.": 2, + "types_unique": 1, + "T1": 25, + "T12": 2, + "IHhas_type.": 1, + "IHhas_type1.": 1, + "IHhas_type2.": 1, + "Omega": 1, + "Relations": 2, + "Multiset": 2, + "SetoidList.": 1, + "Set": 4, + "Arguments.": 2, + "Local": 7, + "Section": 4, + "Permut.": 1, + "Variable": 7, + "Type.": 3, + "eqA": 29, + "relation": 19, + "Hypothesis": 7, + "eqA_equiv": 1, + "Equivalence": 2, + "eqA.": 1, + "eqA_dec": 26, + "Let": 8, + "emptyBag": 4, + "EmptyBag": 2, + "singletonBag": 10, + "SingletonBag": 2, + "eqA_dec.": 2, + "list_contents": 30, + "multiset": 2, + "munion": 18, + "list_contents_app": 5, + "meq": 15, + "simple": 7, + "auto": 73, + "datatypes.": 47, + "meq_trans": 10, + "l0": 7, + "permutation": 43, + "permut_refl": 1, + "permut_sym": 4, + "symmetry": 4, + "trivial.": 14, + "permut_trans": 5, + "permut_cons_eq": 3, + "meq_left": 1, + "meq_singleton": 1, + "permut_cons": 5, + "permut_app": 1, + "using": 18, + "l3": 12, + "l4": 3, + "specialize": 6, + "H0": 16, + "a0.": 1, + "*.": 110, + "a0": 15, + "Ha": 6, + "H": 76, + "decide": 1, + "replace": 4, + "trivial": 15, + "permut_add_inside_eq": 1, + "permut_add_cons_inside": 3, + "permut_add_inside": 1, + "permut_middle": 1, + "permut_refl.": 5, + "permut_sym_app": 1, + "intro": 27, + "do": 4, + "arith.": 8, + "permut_rev": 1, + "permut_add_cons_inside.": 1, + "app_nil_end": 1, + "results": 1, + "permut_conv_inv": 1, + "l2.": 8, + "plus_reg_l.": 1, + "permut_app_inv1": 1, + "clear": 7, + "list_contents_app.": 1, + "plus_reg_l": 1, + "multiplicity": 6, + "plus_comm": 3, + "plus_comm.": 3, + "Fact": 3, + "if_eqA_then": 1, + "B": 6, + "if_eqA_refl": 3, + "decide_left": 1, + "Global": 5, + "Instance": 7, + "if_eqA": 1, + "contradict": 3, + "transitivity": 4, + "a2": 62, + "a1": 56, + "A1": 2, + "if_eqA_rewrite_r": 1, + "A2": 4, + "Hxx": 1, + "multiplicity_InA": 4, + "InA": 8, + "a.": 6, + "multiplicity_InA_O": 2, + "multiplicity_InA_S": 1, + "multiplicity_NoDupA": 1, + "NoDupA": 3, + "inversion_clear": 6, + "EQ": 8, + "NEQ": 1, + "constructor": 6, + "omega": 7, + "Permutation": 38, + "is": 4, + "compatible": 1, + "permut_InA_InA": 3, + "multiplicity_InA.": 1, + "meq.": 2, + "permut_cons_InA": 3, + "permut_nil": 3, + "by": 7, + "Abs": 2, + "permut_length_1": 1, + "P": 32, + "discriminate.": 2, + "permut_length_2": 1, + "b1": 35, + "b2": 23, + "P.": 5, + "left": 6, + "permut_length_1.": 2, + "red": 6, + "@if_eqA_rewrite_l": 2, + "omega.": 7, + "permut_length": 1, + "InA_split": 1, + "h2": 1, + "H1": 18, + "H2": 12, + "app_length.": 2, + "plus_n_Sm": 1, + "f_equal.": 1, + "app_length": 1, + "IHl1": 1, + "permut_remove_hd": 1, + "revert": 5, + "f_equal": 1, + "if_eqA_rewrite_l": 1, + "NoDupA_equivlistA_permut": 1, + "Equivalence_Reflexive.": 1, + "change": 1, + "Equivalence_Reflexive": 1, + "Forall2": 2, + "permutation_Permutation": 1, + "Forall2.": 1, + "pose": 2, + "proof": 1, + "&": 21, + "IHP": 2, + "IHA": 2, + "Forall2_app_inv_r": 1, + "Hl1": 1, + "Hl2": 1, + "split.": 17, + "Permutation_cons_app": 3, + "Forall2_app": 1, + "Forall2_cons": 1, + "Heq": 8, + "Permutation_impl_permutation": 1, + "permut_eqA": 1, + "End": 15, + "Permut_permut.": 1, + "permut_right": 1, + "only": 3, + "parsing": 3, + "permut_tran": 1, + "NatList.": 2, + "natprod": 5, + "natprod.": 1, + "swap_pair": 1, + "surjective_pairing": 1, + "r": 11, + "remove_one": 3, + "test_remove_one1": 1, + "O.": 5, + "remove_all": 2, + "bag": 3, + "app_ass": 1, + "natlist": 7, + "l3.": 1, + "remove_decreases_count": 1, + "ble_nat": 6, + "ble_n_Sn.": 1, + "natoption": 5, + "natoption.": 1, + "option_elim": 2, + "option_elim_hd": 1, + "head": 1, + "beq_natlist": 5, + "r1": 2, + "v2": 2, + "r2": 2, + "test_beq_natlist1": 1, + "test_beq_natlist2": 1, + "beq_natlist_refl": 1, + "silly1": 1, + "eq2": 1, + "silly2a": 1, + "q": 15, + "silly_ex": 1, + "evenb": 5, + "oddb": 5, + "silly3": 1, + "rev_exercise": 1, + "rev_involutive.": 1, + "beq_nat_sym": 2, + "IHn": 12, + "AExp.": 2, + "aexp": 30, + "ANum": 18, + "APlus": 14, + "AMinus": 9, + "AMult": 9, + "aexp.": 1, + "bexp": 22, + "BTrue": 10, + "BFalse": 11, + "BEq": 9, + "BLe": 9, + "BNot": 9, + "BAnd": 10, + "bexp.": 1, + "aeval": 46, + "test_aeval1": 1, + "beval": 16, + "optimize_0plus": 15, + "e2": 54, + "e1": 58, + "test_optimize_0plus": 1, + "optimize_0plus_sound": 4, + "e1.": 1, + "IHe2.": 10, + "IHe1.": 11, + "aexp_cases": 3, + "try": 17, + "IHe1": 6, + "IHe2": 6, + "optimize_0plus_all": 2, + "optimize_0plus_all_sound": 1, + "bexp_cases": 4, + "optimize_and": 5, + "optimize_and_sound": 1, + "IHe": 2, + "aevalR_first_try.": 2, + "aevalR": 18, + "E_Anum": 1, + "E_APlus": 2, + "n1": 45, + "n2": 41, + "E_AMinus": 2, + "E_AMult": 2, + "Reserved": 4, + "E_ANum": 1, + "bevalR": 11, + "E_BTrue": 1, + "E_BFalse": 1, + "E_BEq": 1, + "E_BLe": 1, + "E_BNot": 1, + "E_BAnd": 1, + "aeval_iff_aevalR": 9, + "IHa1": 1, + "IHa2": 1, + "beval_iff_bevalR": 1, + "IHbevalR": 1, + "IHbevalR1": 1, + "IHbevalR2": 1, + "constructor.": 16, + "IHa.": 1, + "IHa1.": 1, + "IHa2.": 1, + "silly_presburger_formula": 1, + "<=>": 12, + "3": 2, + "id.": 1, + "id1": 2, + "id2": 2, + "beq_id_refl": 1, + "i.": 2, + "beq_nat_refl.": 1, + "i1": 15, + "i2": 10, + "i2.": 8, + "i1.": 3, + "beq_id_false_not_eq": 1, + "C.": 3, + "n0": 5, + "beq_false_not_eq": 1, + "not_eq_beq_id_false": 1, + "not_eq_beq_false.": 1, + "AId": 4, + "com_cases": 1, + "SKIP": 5, + "IFB": 4, + "WHILE": 5, + "c1": 14, + "c2": 9, + "e3": 1, + "cl": 1, + "st": 113, + "E_IfTrue": 2, + "THEN": 3, + "ELSE": 3, + "FI": 3, + "E_WhileEnd": 2, + "DO": 4, + "END": 4, + "E_WhileLoop": 2, + "ceval_cases": 1, + "E_Skip": 1, + "E_Ass": 1, + "E_Seq": 1, + "E_IfFalse": 1, + "assignment": 1, + "command": 2, + "st1": 2, + "o.": 4, + "IHi1": 3, + "Heqst1": 1, + "Hceval.": 4, + "Hceval": 2, + "bval": 2, + "ceval_step": 3, + "ceval_step_more": 7, + "x2.": 2, + "IHHce.": 2, + "%": 3, + "nat.": 4, + "IHHce1.": 1, + "IHHce2.": 1, + "plus2": 1, + "nx": 3, + "ny": 2, + "XtimesYinZ": 1, + "ny.": 1, + "loop": 2, + "loopdef.": 1, + "Heqloopdef.": 8, + "contra1.": 1, + "IHcontra2.": 1, + "no_whiles": 15, + "com": 5, + "ct": 2, + "cf": 2, + "no_Whiles": 10, + "noWhilesSKIP": 1, + "noWhilesAss": 1, + "noWhilesSeq": 1, + "noWhilesIf": 1, + "no_whiles_eqv": 1, + "c.": 5, + "noWhilesSKIP.": 1, + "noWhilesAss.": 1, + "noWhilesSeq.": 1, + "IHc1.": 2, + "andb_true_elim1": 4, + "IHc2.": 2, + "andb_true_elim2": 4, + "noWhilesIf.": 1, + "andb_true_intro.": 2, + "no_whiles_terminate": 1, + "state": 6, + "st.": 7, + "update": 2, + "IHc1": 2, + "IHc2": 2, + "H5.": 1, + "r.": 3, + "Heqr.": 1, + "H4.": 2, + "Heqr": 3, + "H4": 7, + "H8.": 1, + "H10": 1, + "assumption": 10, + "H3": 4, + "beval_short_circuit": 5, + "beval_short_circuit_eqv": 1, + "sinstr": 8, + "SPush": 8, + "SLoad": 6, + "SPlus": 10, + "SMinus": 11, + "SMult": 11, + "sinstr.": 1, + "s_execute": 21, + "stack": 7, + "prog": 2, + "al": 3, + "bl": 3, + "s_execute1": 1, + "empty_state": 2, + "s_execute2": 1, + "s_compile": 36, + "s_compile1": 1, + "execute_theorem": 1, + "s1": 20, + "other": 20, + "other.": 4, + "app_ass.": 6, + "mult_comm": 2, + "s_compile_correct": 1, + "app_nil_end.": 1, + "execute_theorem.": 1, + "Imp.": 1, + "Relations.": 1, + "tm_const": 45, + "tm_plus": 30, + "SimpleArith0.": 2, + "eval": 8, + "SimpleArith1.": 2, + "E_Const": 2, + "E_Plus": 2, + "test_step_1": 1, + "ST_Plus1.": 2, + "ST_PlusConstConst.": 3, + "test_step_2": 1, + "ST_Plus2.": 2, + "step_deterministic": 1, + "partial_function": 6, + "partial_function.": 5, + "y1": 6, + "y2": 5, + "Hy1": 2, + "Hy2.": 2, + "y2.": 3, + "step_cases": 4, + "Hy2": 3, + "SCase.": 3, + "Hy1.": 5, + "IHHy1": 2, + "SimpleArith2.": 1, + "v_const": 4, + "ST_PlusConstConst": 3, + "ST_Plus1": 2, + "strong_progress": 2, + "R": 54, + "value_not_same_as_normal_form": 2, + "normal_form": 3, + "normal_form.": 2, + "v_funny.": 1, + "not.": 3, + "Temp1.": 1, + "Temp2.": 1, + "ST_Funny": 1, + "Temp3.": 1, + "Temp4.": 2, + "v_true": 1, + "v_false": 1, + "ST_IfTrue": 1, + "ST_IfFalse": 1, + "ST_If": 1, + "bool_step_prop4": 1, + "bool_step_prop4_holds": 1, + "bool_step_prop4.": 2, + "ST_ShortCut.": 1, + "left.": 3, + "IHt1.": 1, + "Temp5.": 1, + "normalizing": 1, + "H11": 2, + "H12": 2, + "H21": 3, + "H22": 2, + "nf_same_as_value": 3, + "H12.": 1, + "H22.": 1, + "H11.": 1, + "rsc_trans": 4, + "stepmany_congr_1": 1, + "stepmany_congr2": 1, + "rsc_R": 2, + "eval__value": 1, + "HE.": 1, + "eval_cases": 1, + "HE": 1, + "v_const.": 1, + "Logic.": 1, + "Prop.": 1, + "next_nat_partial_function": 1, + "next_nat.": 1, + "Q.": 2, + "le_not_a_partial_function": 1, + "le": 1, + "Nonsense.": 4, + "le_n.": 6, + "le_S.": 4, + "total_relation_not_partial_function": 1, + "total_relation": 1, + "total_relation1.": 2, + "empty_relation_not_partial_funcion": 1, + "empty_relation.": 1, + "reflexive": 5, + "le_reflexive": 1, + "le.": 4, + "reflexive.": 1, + "transitive": 8, + "le_trans": 4, + "Hnm": 3, + "Hmo.": 4, + "Hnm.": 3, + "IHHmo.": 1, + "lt_trans": 4, + "lt.": 2, + "transitive.": 1, + "le_S": 6, + "Hm": 1, + "le_Sn_le": 2, + "le_S_n": 2, + "Sn_le_Sm__n_le_m.": 1, + "le_Sn_n": 5, + "not": 1, + "TODO": 1, + "lt": 3, + "Hmo": 1, + "symmetric": 2, + "antisymmetric": 3, + "le_antisymmetric": 1, + "Sn_le_Sm__n_le_m": 2, + "IHb": 1, + "equivalence": 1, + "order": 2, + "preorder": 1, + "le_order": 1, + "order.": 1, + "le_reflexive.": 1, + "le_antisymmetric.": 1, + "le_trans.": 1, + "clos_refl_trans": 8, + "rt_step": 1, + "rt_refl": 1, + "rt_trans": 3, + "next_nat_closure_is_le": 1, + "next_nat": 1, + "rt_refl.": 2, + "IHle.": 1, + "rt_step.": 2, + "nn.": 1, + "IHclos_refl_trans1.": 2, + "IHclos_refl_trans2.": 2, + "rsc_refl": 1, + "rsc_step": 4, + "IHrefl_step_closure": 1, + "rtc_rsc_coincide": 1, + "IHrefl_step_closure.": 1, + "Eqdep_dec.": 1, + "Arith.": 2, + "eq_rect_eq_nat": 2, + "Q": 3, + "eq_rect": 3, + "h.": 1, + "K_dec_set": 1, + "eq_nat_dec.": 1, + "Scheme": 1, + "le_ind": 1, + "q.": 2, + "le_n": 4, + "refl_equal": 4, + "pattern": 2, + "case": 2, + "contradiction": 8, + "m0": 1, + "HeqS": 3, + "injection": 4, + "HeqS.": 2, + "eq_rect_eq_nat.": 1, + "IHp": 2, + "dep_pair_intro": 2, + "Hx": 20, + "Hy": 14, + "<=n),>": 1, + "x=": 1, + "exist": 7, + "Hy.": 3, + "Heq.": 6, + "le_uniqueness_proof": 1, + "Hy0": 1, + "card": 2, + "card_interval": 1, + "<=n}>": 1, + "proj1_sig": 1, + "proj2_sig": 1, + "Hp": 5, + "Hq": 3, + "Hpq.": 1, + "Hmn.": 1, + "Hmn": 1, + "interval_dec": 1, + "dep_pair_intro.": 3, + "discriminate": 3, + "eq_S.": 1, + "Hneq.": 2, + "card_inj_aux": 1, + "g": 6, + "False.": 1, + "Hfbound": 1, + "Hfinj": 1, + "Hgsurj.": 1, + "Hgsurj": 3, + "Hfx": 2, + "le_n_O_eq.": 2, + "Hfbound.": 2, + "Hx.": 5, + "le_lt_dec": 9, + "xSn": 21, + "pred": 3, + "bounded": 1, + "injective": 6, + "Hlefx": 1, + "Hgefx": 1, + "Hlefy": 1, + "Hgefy": 1, + "Hfinj.": 3, + "sym_not_eq.": 2, + "Heqf.": 2, + "Hneqy.": 2, + "le_lt_trans": 2, + "le_O_n.": 2, + "le_neq_lt": 2, + "Hneqx.": 2, + "pred_inj.": 1, + "lt_O_neq": 2, + "neq_dep_intro": 2, + "inj_restrict": 1, + "Heqf": 1, + "surjective": 1, + "Hlep.": 3, + "Hle": 1, + "Hlt": 3, + "Hfsurj": 2, + "le_n_S": 1, + "Hlep": 4, + "Hneq": 7, + "Heqx.": 2, + "Heqx": 4, + "Hle.": 1, + "le_not_lt": 1, + "lt_n_Sn.": 1, + "Hlt.": 1, + "lt_irrefl": 2, + "lt_le_trans": 1, + "let": 3, + "Hneqx": 1, + "Hneqy": 1, + "Heqg": 1, + "Hdec": 3, + "Heqy": 1, + "Hginj": 1, + "HSnx.": 1, + "HSnx": 1, + "interval_discr": 1, + "<=m}>": 1, + "card_inj": 1, + "interval_dec.": 1, + "card_interval.": 2, + "List": 2, + "PermutSetoid": 1, + "Sorting.": 1, + "defs.": 2, + "leA": 25, + "gtA": 1, + "leA_dec": 4, + "leA_refl": 1, + "leA_trans": 2, + "leA_antisym": 1, + "Resolve": 5, + "leA_refl.": 1, + "Immediate": 1, + "leA_antisym.": 1, + "Tree": 24, + "Tree_Leaf": 9, + "Tree_Node": 11, + "Tree.": 1, + "leA_Tree": 16, + "True": 1, + "T2": 20, + "leA_Tree_Leaf": 5, + "Tree_Leaf.": 1, + "leA_Tree_Node": 1, + "G": 6, + "D": 9, + "is_heap": 18, + "nil_is_heap": 5, + "node_is_heap": 7, + "invert_heap": 3, + "T2.": 1, + "is_heap_rect": 1, + "PG": 2, + "PD": 2, + "PN.": 2, + "elim": 21, + "X0": 2, + "is_heap_rec": 1, + "low_trans": 3, + "merge_lem": 3, + "merge_exist": 5, + "Sorted": 5, + "HdRel": 4, + "Morphisms.": 2, + "@meq": 4, + "red.": 1, + "meq_trans.": 1, + "Defined.": 1, + "Proper": 5, + "@munion": 1, + "now": 24, + "meq_congr.": 1, + "merge": 5, + "fix": 2, + "Sorted_inv": 2, + "merge0.": 2, + "cons_sort": 2, + "cons_leA": 2, + "munion_ass.": 2, + "cons_leA.": 2, + "@HdRel_inv": 2, + "merge0": 1, + "setoid_rewrite": 2, + "munion_ass": 1, + "munion_comm.": 2, + "munion_comm": 1, + "contents": 12, + "equiv_Tree": 1, + "insert_spec": 3, + "insert_exist": 4, + "insert": 2, + "treesort_twist1": 1, + "T3": 2, + "HeapT3": 1, + "ConT3": 1, + "LeA.": 1, + "LeA": 1, + "treesort_twist2": 1, + "build_heap": 3, + "heap_exist": 3, + "list_to_heap": 2, + "exact": 4, + "nil_is_heap.": 1, + "meq_right": 2, + "meq_sym": 2, + "flat_spec": 3, + "flat_exist": 3, + "heap_to_list": 2, + "m1": 1, + "s2": 2, + "m2.": 1, + "meq_congr": 1, + "munion_rotate.": 1, + "treesort": 1, + "permutation.": 1, + "day": 9, + "monday": 5, + "tuesday": 3, + "wednesday": 3, + "thursday": 3, + "friday": 3, + "saturday": 3, + "sunday": 2, + "day.": 1, + "next_weekday": 3, + "test_next_weekday": 1, + "tuesday.": 1, + "bool.": 1, + "test_orb1": 1, + "test_orb2": 1, + "test_orb3": 1, + "test_orb4": 1, + "nandb": 5, + "test_nandb1": 1, + "test_nandb2": 1, + "test_nandb3": 1, + "test_nandb4": 1, + "andb3": 5, + "b3": 2, + "test_andb31": 1, + "test_andb32": 1, + "test_andb33": 1, + "test_andb34": 1, + "minustwo": 1, + "test_oddb1": 1, + "test_oddb2": 1, + "mult": 3, + "minus": 3, + "exp": 2, + "base": 3, + "power": 2, + "factorial": 2, + "test_factorial1": 1, + "nat_scope.": 3, + "plus_O_n": 1, + "plus_1_1": 1, + "mult_0_1": 1, + "plus_id_example": 1, + "plus_id_exercise": 1, + "mult_0_plus": 1, + "plus_O_n.": 1, + "mult_1_plus": 1, + "plus_1_1.": 1, + "mult_1": 1, + "plus_1_neq_0": 1, + "plus_distr.": 1, + "plus_rearrange": 1, + "plus_swap": 2, + "plus_assoc.": 4, + "plus_swap.": 2, + "mult_0_r.": 4, + "mult_distr": 1, + "mult_1_distr.": 1, + "mult_1.": 1, + "bad": 1, + "zero_nbeq_S": 1, + "andb_false_r": 1, + "plus_ble_compat_1": 1, + "IHp.": 2, + "S_nbeq_0": 1, + "mult_1_1": 1, + "plus_0_r.": 1, + "all3_spec": 1, + "mult_plus_1": 1, + "IHm.": 1, + "mult_mult": 1, + "IHn.": 3, + "mult_plus_1.": 1, + "mult_plus_distr_r": 1, + "mult_mult.": 3, + "plus_assoc": 1, + "mult_assoc": 1, + "mult_plus_distr_r.": 1, + "bin": 9, + "BO": 4, + "M": 4, + "bin.": 1, + "incbin": 2, + "bin2un": 3, + "bin_comm": 1, + "Setoid": 1, + "Compare_dec": 1, + "ListNotations.": 1, + "Permutation.": 2, + "perm_nil": 1, + "perm_skip": 1, + "Permutation_nil": 2, + "HF.": 3, + "@nil": 1, + "HF": 2, + "||": 1, + "Permutation_nil_cons": 1, + "Permutation_refl": 1, + "Permutation_sym": 1, + "Hperm": 7, + "perm_trans": 1, + "Permutation_trans": 4, + "Logic.eq": 2, + "@Permutation": 5, + "iff": 1, + "@In": 1, + "Permutation_in.": 2, + "Permutation_app_tail": 2, + "tl": 8, + "Permutation_app_head": 2, + "app_comm_cons": 5, + "Permutation_app": 3, + "Hpermmm": 1, + "idtac": 1, + "@app": 1, + "Permutation_app.": 1, + "Permutation_add_inside": 1, + "Permutation_cons_append": 1, + "Permutation_cons_append.": 3, + "Permutation_app_comm": 3, + "app_nil_r": 1, + "app_assoc": 2, + "Permutation_middle": 2, + "Permutation_rev": 3, + "1": 1, + "@rev": 1, + "2": 1, + "Permutation_length": 2, + "@length": 1, + "Permutation_length.": 1, + "Permutation_ind_bis": 2, + "Hnil": 1, + "Hskip": 3, + "Hswap": 2, + "Htrans.": 1, + "Htrans": 1, + "eauto.": 7, + "Ltac": 1, + "break_list": 5, + "Permutation_nil_app_cons": 1, + "IH": 3, + "Permutation_middle.": 3, + "perm_swap.": 2, + "perm_swap": 1, + "eq_refl": 2, + "In_split": 1, + "Permutation_app_inv": 1, + "NoDup": 4, + "incl": 3, + "N.": 1, + "E": 7, + "In": 6, + "N": 1, + "Hal": 1, + "Hl": 1, + "exfalso.": 1, + "NoDup_Permutation_bis": 2, + "intuition.": 2, + "Permutation_NoDup": 1, + "Permutation_map": 1, + "Hf": 15, + "injective_bounded_surjective": 1, + "set": 1, + "seq": 2, + "in_map_iff.": 2, + "in_seq": 4, + "arith": 4, + "NoDup_cardinal_incl": 1, + "injective_map_NoDup": 2, + "seq_NoDup": 1, + "map_length": 1, + "in_map_iff": 1, + "nat_bijection_Permutation": 1, + "BD.": 1, + "seq_NoDup.": 1, + "map_length.": 1, + "Injection": 1, + "Permutation_alt": 1, + "Alternative": 1, + "characterization": 1, + "via": 1, + "nth_error": 7, + "and": 1, + "nth": 2, + "adapt": 4, + "adapt_injective": 1, + "adapt.": 2, + "EQ.": 2, + "LE": 11, + "LT": 14, + "Hf.": 1, + "Lt.le_lt_or_eq": 3, + "LE.": 3, + "LT.": 5, + "Lt.S_pred": 3, + "Lt.lt_not_le": 2, + "adapt_ok": 2, + "nth_error_app1": 1, + "nth_error_app2": 1, + "Minus.minus_Sn_m": 1, + "Permutation_nth_error": 2, + "IHP2": 1, + "Hg": 2, + "E.": 2, + "L12": 2, + "plus_n_Sm.": 1, + "adapt_injective.": 1, + "nth_error_None": 4, + "Hn": 1, + "Hf2": 1, + "Hf3": 2, + "Lt.le_or_lt": 1, + "Lt.lt_irrefl": 2, + "Lt.lt_le_trans": 2, + "Hf1": 1, + "congruence.": 1, + "Permutation_alt.": 1, + "Permutation_app_swap": 1 + }, + "Stata": { + "{": 441, + "smcl": 1, + "}": 440, + "*": 25, + "version": 2, + "Matthew": 2, + "White": 2, + "jan2014": 1, + "...": 30, + "title": 7, + "Title": 1, + "phang": 4, + "cmd": 111, + "odkmeta": 17, + "hline": 1, + "Create": 4, + "a": 30, + "do": 22, + "-": 42, + "file": 18, + "to": 23, + "import": 9, + "ODK": 6, + "data": 4, + "marker": 10, + "syntax": 1, + "Syntax": 1, + "p": 2, + "using": 10, + "it": 61, + "help": 27, + "filename": 3, + "opt": 25, + "csv": 9, + "(": 60, + "csvfile": 3, + ")": 61, + "Using": 7, + "histogram": 2, + "as": 29, + "template.": 8, + "notwithstanding": 1, + "is": 31, + "rarely": 1, + "preceded": 3, + "by": 7, + "an": 6, + "underscore.": 1, + "cmdab": 5, + "s": 10, + "urvey": 2, + "surveyfile": 5, + "odkmeta##surveyopts": 2, + "surveyopts": 4, + "cho": 2, + "ices": 2, + "choicesfile": 4, + "odkmeta##choicesopts": 2, + "choicesopts": 5, + "[": 6, + "options": 1, + "]": 6, + "odbc": 2, + "the": 67, + "position": 1, + "of": 36, + "last": 1, + "character": 1, + "in": 24, + "first": 2, + "column": 18, + "+": 2, + "synoptset": 5, + "tabbed": 4, + "synopthdr": 4, + "synoptline": 8, + "syntab": 6, + "Main": 3, + "heckman": 2, + "p2coldent": 3, + "name": 20, + ".csv": 2, + "that": 21, + "contains": 3, + "p_end": 47, + "metadata": 5, + "from": 6, + "survey": 14, + "worksheet": 5, + "choices": 10, + "Fields": 2, + "synopt": 16, + "drop": 1, + "attrib": 2, + "headers": 8, + "not": 8, + "field": 25, + "attributes": 10, + "with": 10, + "keep": 1, + "only": 3, + "rel": 1, + "ax": 1, + "ignore": 1, + "fields": 7, + "exist": 1, + "Lists": 1, + "ca": 1, + "oth": 1, + "er": 1, + "odkmeta##other": 1, + "other": 14, + "Stata": 5, + "value": 14, + "values": 3, + "select": 6, + "or_other": 5, + ";": 15, + "default": 8, + "max": 2, + "one": 5, + "line": 4, + "write": 1, + "each": 7, + "list": 13, + "on": 7, + "single": 1, + "Options": 1, + "replace": 7, + "overwrite": 1, + "existing": 1, + "p2colreset": 4, + "and": 18, + "are": 13, + "required.": 1, + "Change": 1, + "t": 2, + "ype": 1, + "header": 15, + "type": 7, + "attribute": 10, + "la": 2, + "bel": 2, + "label": 9, + "d": 1, + "isabled": 1, + "disabled": 4, + "li": 1, + "stname": 1, + "list_name": 6, + "maximum": 3, + "plus": 2, + "min": 2, + "minimum": 2, + "minus": 1, + "#": 6, + "constant": 2, + "for": 13, + "all": 3, + "labels": 8, + "description": 1, + "Description": 1, + "pstd": 20, + "creates": 1, + "worksheets": 1, + "XLSForm.": 1, + "The": 9, + "saved": 1, + "completes": 2, + "following": 1, + "tasks": 3, + "order": 1, + "anova": 1, + "phang2": 23, + "o": 12, + "Import": 2, + "lists": 2, + "Add": 1, + "char": 4, + "characteristics": 4, + "Split": 1, + "select_multiple": 6, + "variables": 8, + "Drop": 1, + "note": 1, + "format": 1, + "Format": 1, + "date": 1, + "time": 1, + "datetime": 1, + "Attach": 2, + "variable": 14, + "notes": 1, + "merge": 3, + "Merge": 1, + "repeat": 6, + "groups": 4, + "After": 1, + "have": 2, + "been": 1, + "split": 4, + "can": 1, + "be": 12, + "removed": 1, + "without": 2, + "affecting": 1, + "tasks.": 1, + "User": 1, + "written": 2, + "supplements": 1, + "may": 2, + "make": 1, + "use": 3, + "any": 3, + "which": 6, + "imported": 4, + "characteristics.": 1, + "remarks": 1, + "Remarks": 1, + "uses": 3, + "helpb": 7, + "insheet": 4, + "data.": 1, + "long": 7, + "strings": 1, + "digits": 1, + "such": 2, + "simserial": 1, + "will": 9, + "numeric": 4, + "even": 1, + "if": 10, + "they": 2, + "more": 1, + "than": 3, + "digits.": 1, + "As": 1, + "result": 6, + "lose": 1, + "precision": 1, + ".": 22, + "makes": 1, + "limited": 1, + "mata": 1, + "Mata": 1, + "manage": 1, + "contain": 1, + "difficult": 1, + "characters.": 2, + "starts": 1, + "definitions": 1, + "several": 1, + "local": 6, + "macros": 1, + "these": 4, + "constants": 1, + "uses.": 1, + "For": 4, + "instance": 1, + "macro": 1, + "datemask": 1, + "varname": 1, + "constraints": 1, + "names": 16, + "Further": 1, + "files": 1, + "often": 1, + "much": 1, + "longer": 1, + "length": 3, + "limit": 1, + "These": 2, + "differences": 1, + "convention": 1, + "lead": 1, + "three": 1, + "kinds": 1, + "problematic": 1, + "Long": 3, + "involve": 1, + "invalid": 1, + "combination": 1, + "characters": 3, + "example": 2, + "begins": 1, + "colon": 1, + "followed": 1, + "number.": 1, + "convert": 2, + "instead": 1, + "naming": 1, + "v": 6, + "concatenated": 1, + "positive": 1, + "integer": 1, + "v1": 1, + "unique": 1, + "but": 4, + "when": 1, + "converted": 3, + "truncated": 1, + "become": 3, + "duplicates.": 1, + "again": 1, + "names.": 6, + "form": 1, + "duplicates": 1, + "cannot": 2, + "chooses": 1, + "different": 1, + "Because": 1, + "problem": 2, + "recommended": 1, + "you": 1, + "If": 2, + "its": 3, + "characteristic": 2, + "odkmeta##Odk_bad_name": 1, + "Odk_bad_name": 3, + "otherwise": 1, + "Most": 1, + "depend": 1, + "There": 1, + "two": 2, + "exceptions": 1, + "variables.": 1, + "error": 4, + "has": 6, + "or": 7, + "splitting": 2, + "would": 1, + "duplicate": 4, + "reshape": 2, + "groups.": 1, + "there": 2, + "merging": 2, + "code": 1, + "datasets.": 1, + "Where": 1, + "renaming": 2, + "left": 1, + "user.": 1, + "section": 2, + "designated": 2, + "area": 2, + "renaming.": 3, + "In": 3, + "reshaping": 1, + "group": 4, + "own": 2, + "Many": 1, + "forms": 2, + "require": 1, + "others": 1, + "few": 1, + "need": 1, + "renamed": 1, + "should": 1, + "go": 1, + "areas.": 1, + "However": 1, + "some": 1, + "usually": 1, + "because": 1, + "many": 2, + "nested": 2, + "above": 1, + "this": 1, + "case": 1, + "work": 1, + "best": 1, + "Odk_group": 1, + "Odk_name": 1, + "Odk_is_other": 2, + "Odk_geopoint": 2, + "r": 2, + "varlist": 2, + "Odk_list_name": 2, + "foreach": 1, + "var": 5, + "*search": 1, + "n/a": 1, + "know": 1, + "don": 1, + "worksheet.": 1, + "requires": 1, + "comma": 1, + "separated": 2, + "text": 1, + "file.": 1, + "Strings": 1, + "embedded": 2, + "commas": 1, + "double": 3, + "quotes": 3, + "end": 4, + "must": 2, + "enclosed": 1, + "another": 1, + "quote.": 1, + "pmore": 5, + "Each": 1, + "header.": 1, + "Use": 1, + "suboptions": 1, + "specify": 1, + "alternative": 1, + "respectively.": 1, + "All": 1, + "used.": 1, + "standardized": 1, + "follows": 1, + "replaced": 9, + "select_one": 3, + "begin_group": 1, + "begin": 2, + "end_group": 1, + "begin_repeat": 1, + "end_repeat": 1, + "addition": 1, + "specified": 1, + "attaches": 1, + "pmore2": 3, + "formed": 1, + "concatenating": 1, + "elements": 1, + "Odk_repeat": 1, + "nested.": 1, + "geopoint": 2, + "component": 1, + "Latitude": 1, + "Longitude": 1, + "Altitude": 1, + "Accuracy": 1, + "blank.": 1, + "imports": 4, + "XLSForm": 1, + "list.": 1, + "one.": 1, + "specifies": 4, + "vary": 1, + "definition": 1, + "rather": 1, + "multiple": 1, + "delimit": 1, + "#delimit": 1, + "dlgtab": 1, + "Other": 1, + "already": 2, + "exists.": 1, + "examples": 1, + "Examples": 1, + "named": 1, + "import.do": 7, + "including": 1, + "survey.csv": 1, + "choices.csv": 1, + "txt": 6, + "Same": 3, + "previous": 3, + "command": 3, + "appears": 2, + "fieldname": 3, + "survey_fieldname.csv": 1, + "valuename": 2, + "choices_valuename.csv": 1, + "except": 1, + "hint": 2, + "dropattrib": 2, + "does": 1, + "_all": 1, + "acknowledgements": 1, + "Acknowledgements": 1, + "Lindsey": 1, + "Shaughnessy": 1, + "Innovations": 2, + "Poverty": 2, + "Action": 2, + "assisted": 1, + "almost": 1, + "aspects": 1, + "development.": 1, + "She": 1, + "collaborated": 1, + "structure": 1, + "program": 2, + "was": 1, + "very": 1, + "helpful": 1, + "tester": 1, + "contributed": 1, + "information": 1, + "about": 1, + "ODK.": 1, + "author": 1, + "Author": 1, + "mwhite@poverty": 1, + "action.org": 1, + "mar2014": 1, + "Hello": 1, + "world": 1, + "hello": 1, + "vers": 1, + "display": 1, + "matrix": 3, + "tanh": 1, + "u": 3, + "eu": 4, + "emu": 4, + "exp": 2, + "return": 1, + "/": 1, + "Setup": 1, + "sysuse": 1, + "auto": 1, + "Fit": 2, + "linear": 2, + "regression": 2, + "regress": 5, + "mpg": 1, + "weight": 4, + "foreign": 2, + "better": 1, + "physics": 1, + "standpoint": 1, + "gen": 1, + "gp100m": 2, + "/mpg": 1, + "Obtain": 1, + "beta": 2, + "coefficients": 1, + "refitting": 1, + "model": 1, + "Suppress": 1, + "intercept": 1, + "term": 1, + "noconstant": 1, + "Model": 1, + "bn.foreign": 1, + "hascons": 1, + "inname": 1, + "outname": 1, + "MAXDIM": 1 + }, + "Ceylon": { + "doc": 2, + "by": 1, + "shared": 5, + "void": 1, + "test": 1, + "(": 4, + ")": 4, + "{": 3, + "print": 1, + ";": 4, + "}": 3, + "class": 1, + "Test": 2, + "name": 4, + "satisfies": 1, + "Comparable": 1, + "": 1, + "String": 2, + "actual": 2, + "string": 1, + "Comparison": 1, + "compare": 1, + "other": 1, + "return": 1, + "<=>": 1, + "other.name": 1 + }, + "MoonScript": { + "types": 2, + "require": 5, + "util": 2, + "data": 1, + "import": 5, + "reversed": 2, + "unpack": 22, + "from": 4, + "ntype": 16, + "mtype": 3, + "build": 7, + "smart_node": 7, + "is_slice": 2, + "value_is_singular": 3, + "insert": 18, + "table": 2, + "NameProxy": 14, + "LocalName": 2, + "destructure": 1, + "local": 1, + "implicitly_return": 2, + "class": 4, + "Run": 8, + "new": 2, + "(": 54, + "@fn": 1, + ")": 54, + "self": 2, + "[": 79, + "]": 79, + "call": 3, + "state": 2, + "self.fn": 1, + "-": 51, + "transform": 2, + "the": 4, + "last": 6, + "stm": 16, + "is": 2, + "a": 4, + "list": 6, + "of": 1, + "stms": 4, + "will": 1, + "puke": 1, + "on": 1, + "group": 1, + "apply_to_last": 6, + "fn": 3, + "find": 2, + "real": 1, + "exp": 17, + "last_exp_id": 3, + "for": 20, + "i": 15, + "#stms": 1, + "if": 43, + "and": 8, + "break": 1, + "return": 11, + "in": 18, + "ipairs": 3, + "else": 22, + "body": 26, + "sindle": 1, + "expression/statement": 1, + "is_singular": 2, + "false": 2, + "#body": 1, + "true": 4, + "find_assigns": 2, + "out": 9, + "{": 135, + "}": 136, + "thing": 4, + "*body": 2, + "switch": 7, + "when": 12, + "table.insert": 3, + "extract": 1, + "names": 16, + "hoist_declarations": 1, + "assigns": 5, + "hoist": 1, + "plain": 1, + "old": 1, + "*find_assigns": 1, + "name": 31, + "*names": 3, + "type": 5, + "after": 1, + "runs": 1, + "idx": 4, + "while": 3, + "do": 2, + "+": 2, + "expand_elseif_assign": 2, + "ifstm": 5, + "#ifstm": 1, + "case": 13, + "split": 4, + "constructor_name": 2, + "with_continue_listener": 4, + "continue_name": 13, + "nil": 8, + "@listen": 1, + "unless": 6, + "@put_name": 2, + "build.group": 14, + "@splice": 1, + "lines": 2, + "Transformer": 2, + "@transformers": 3, + "@seen_nodes": 3, + "setmetatable": 1, + "__mode": 1, + "scope": 4, + "node": 68, + "...": 10, + "transformer": 3, + "res": 3, + "or": 6, + "bind": 1, + "@transform": 2, + "__call": 1, + "can_transform": 1, + "construct_comprehension": 2, + "inner": 2, + "clauses": 4, + "current_stms": 7, + "_": 10, + "clause": 4, + "t": 10, + "iter": 2, + "elseif": 1, + "cond": 11, + "error": 4, + "..t": 1, + "Statement": 2, + "root_stms": 1, + "@": 1, + "assign": 9, + "values": 10, + "bubble": 1, + "cascading": 2, + "transformed": 2, + "#values": 1, + "value": 7, + "@transform.statement": 2, + "types.cascading": 1, + "ret": 16, + "types.is_value": 1, + "destructure.has_destructure": 2, + "destructure.split_assign": 1, + "continue": 1, + "@send": 1, + "build.assign_one": 11, + "export": 1, + "they": 1, + "are": 1, + "included": 1, + "#node": 3, + "cls": 5, + "cls.name": 1, + "build.assign": 3, + "update": 1, + "op": 2, + "op_final": 3, + "match": 1, + "..op": 1, + "not": 2, + "source": 7, + "stubs": 1, + "real_names": 4, + "build.chain": 7, + "base": 8, + "stub": 4, + "*stubs": 2, + "source_name": 3, + "comprehension": 1, + "action": 4, + "decorated": 1, + "dec": 6, + "wrapped": 4, + "fail": 5, + "..": 1, + "build.declare": 1, + "*stm": 1, + "expand": 1, + "destructure.build_assign": 2, + "build.do": 2, + "apply": 1, + "decorator": 1, + "mutate": 1, + "all": 1, + "bodies": 1, + "body_idx": 3, + "with": 3, + "block": 2, + "scope_name": 5, + "named_assign": 2, + "assign_name": 1, + "@set": 1, + "foreach": 1, + "node.iter": 1, + "destructures": 5, + "node.names": 3, + "proxy": 2, + "next": 1, + "node.body": 9, + "index_name": 3, + "list_name": 6, + "slice_var": 3, + "bounds": 3, + "slice": 7, + "#list": 1, + "table.remove": 2, + "max_tmp_name": 5, + "index": 2, + "conds": 3, + "exp_name": 3, + "convert": 1, + "into": 1, + "statment": 1, + "convert_cond": 2, + "case_exps": 3, + "cond_exp": 5, + "first": 3, + "if_stm": 5, + "*conds": 1, + "if_cond": 4, + "parent_assign": 3, + "parent_val": 1, + "apart": 1, + "properties": 4, + "statements": 4, + "item": 3, + "tuple": 8, + "*item": 1, + "constructor": 7, + "*properties": 1, + "key": 3, + "parent_cls_name": 5, + "base_name": 4, + "self_name": 4, + "cls_name": 1, + "build.fndef": 3, + "args": 3, + "arrow": 1, + "then": 2, + "constructor.arrow": 1, + "real_name": 6, + "#real_name": 1, + "build.table": 2, + "look": 1, + "up": 1, + "object": 1, + "class_lookup": 3, + "cls_mt": 2, + "out_body": 1, + "make": 1, + "sure": 1, + "we": 1, + "don": 1, + "string": 1, + "parens": 2, + "colon_stub": 1, + "super": 1, + "dot": 1, + "varargs": 2, + "arg_list": 1, + "Value": 1 + }, + "Perl": { + "SHEBANG#!#! perl": 4, + "use": 83, + "strict": 18, + ";": 1193, + "warnings": 18, + "for": 83, + "my": 404, + "i": 26, + "(": 925, + "..": 7, + ")": 923, + "{": 1121, + "o": 17, + "new": 55, + "Foo": 11, + "}": 1134, + "print": 35, + "-": 868, + "[": 159, + "]": 155, + "package": 14, + "sub": 225, + "self": 141, + "ref": 33, + "_": 101, + "shift": 165, + "return": 157, + "bless": 7, + "pod": 1, + "head1": 36, + "NAME": 6, + "Catalyst": 10, + "PSGI": 10, + "How": 1, + "and": 85, + "work": 3, + "together": 2, + "SYNOPSIS": 6, + "The": 22, + "L": 34, + "": 3, + "specification": 3, + "defines": 2, + "an": 16, + "interface": 1, + "between": 4, + "web": 8, + "servers": 2, + "Perl": 9, + "based": 2, + "applications": 2, + "frameworks.": 1, + "It": 3, + "supports": 1, + "the": 143, + "writing": 1, + "of": 64, + "portable": 1, + "that": 33, + "can": 30, + "be": 36, + "run": 1, + "using": 5, + "various": 2, + "methods": 4, + "as": 37, + "a": 85, + "standalone": 1, + "server": 2, + "or": 49, + "mod_perl": 3, + "FastCGI": 2, + "etc.": 3, + ".": 125, + "": 3, + "is": 69, + "implementation": 1, + "running": 1, + "applications.": 1, + "used": 12, + "to": 95, + "contain": 3, + "entire": 3, + "set": 12, + "C": 56, + "<<": 10, + "Engine": 1, + "XXXX": 1, + "classes": 2, + "handle": 3, + "environments": 1, + "e.g.": 2, + "CGI": 6, + "This": 27, + "has": 3, + "been": 1, + "changed": 1, + "in": 36, + "so": 4, + "all": 23, + "done": 2, + "by": 16, + "implementing": 1, + "s": 35, + "possible": 2, + "do": 12, + "it": 28, + "manually": 2, + "creating": 3, + "": 1, + "file": 49, + "root": 1, + "your": 20, + "application.": 1, + "head2": 34, + "Why": 3, + "would": 5, + "I": 68, + "want": 7, + "write": 2, + "own": 4, + ".psgi": 7, + "Writing": 2, + "allows": 4, + "you": 44, + "alternate": 1, + "": 1, + "command": 14, + "start": 7, + "application": 15, + "add": 9, + "extensions": 1, + "implement": 2, + "": 1, + "such": 6, + "": 1, + "": 1, + "simplest": 1, + "<.psgi>": 1, + "called": 4, + "": 1, + "TestApp": 5, + "app": 2, + "psgi_app": 3, + "@_": 43, + "Note": 5, + "will": 9, + "apply": 3, + "number": 4, + "middleware": 2, + "components": 2, + "automatically": 2, + "these": 4, + "B": 76, + "": 1, + "not": 54, + "applied": 1, + "if": 276, + "create": 3, + "psgi": 2, + "yourself.": 2, + "Details": 1, + "found": 11, + "below.": 1, + "Additional": 1, + "information": 2, + "about": 4, + "files": 42, + "at": 4, + "": 1, + "What": 1, + "generates": 2, + "default": 19, + "which": 7, + "": 1, + "setting": 2, + "on": 25, + "wrapped": 1, + "": 1, + "contains": 2, + "some": 1, + "engine": 1, + "specific": 2, + "fixes": 1, + "uniform": 1, + "behaviour": 2, + "contained": 1, + "over": 2, + "item": 44, + "": 1, + "": 1, + "back": 4, + "If": 15, + "override": 1, + "providing": 2, + "then": 4, + "none": 1, + "things": 2, + "returned": 3, + "when": 18, + "call": 2, + "MyApp": 1, + "Thus": 1, + "need": 5, + "any": 4, + "this": 22, + "functionality": 1, + "ll": 1, + "An": 1, + "apply_default_middlewares": 2, + "method": 8, + "supplied": 1, + "wrap": 1, + "middlewares": 1, + "are": 25, + "file.": 3, + "means": 3, + "auto": 1, + "generated": 1, + "no": 22, + "code": 8, + "looks": 2, + "something": 3, + "like": 13, + "SEE": 4, + "ALSO": 4, + "": 1, + "": 1, + "AUTHORS": 2, + "Contributors": 1, + "see": 5, + "Catalyst.pm": 1, + "COPYRIGHT": 7, + "library": 2, + "free": 4, + "software.": 1, + "You": 4, + "redistribute": 4, + "and/or": 4, + "modify": 4, + "under": 5, + "same": 2, + "terms": 4, + "itself.": 3, + "cut": 28, + "examples/benchmarks/fib.pl": 1, + "Fibonacci": 2, + "Benchmark": 1, + "DESCRIPTION": 4, + "Calculates": 1, + "Number": 1, + "": 1, + "defaults": 16, + "unspecified": 1, + "fib": 4, + "n": 19, + "<": 15, + "+": 120, + "N": 2, + "||": 49, + "F": 24, + "": 1, + "Bar": 1, + "name": 44, + "@array": 1, + "%": 78, + "hash": 11, + "Plack": 25, + "Response": 16, + "our": 34, + "VERSION": 15, + "eval": 8, + "Util": 3, + "Accessor": 1, + "qw": 35, + "body": 30, + "status": 17, + "Carp": 11, + "Scalar": 2, + "HTTP": 16, + "Headers": 8, + "URI": 11, + "Escape": 6, + "content": 8, + "class": 8, + "rc": 11, + "headers": 56, + "defined": 54, + "eq": 31, + "carp": 2, + "@": 38, + "elsif": 10, + "else": 53, + "cookies": 9, + "header": 17, + "#": 99, + "shortcut": 2, + "content_length": 4, + "content_type": 5, + "content_encoding": 5, + "location": 4, + "redirect": 1, + "url": 2, + "finalize": 5, + "croak": 3, + "unless": 39, + "clone": 1, + "_finalize_cookies": 2, + "map": 10, + "k": 6, + "v": 19, + "s/": 22, + "|": 28, + "/chr": 1, + "/ge": 1, + "replace": 3, + "LWS": 1, + "with": 26, + "single": 1, + "SP": 1, + "//g": 1, + "remove": 2, + "CR": 1, + "LF": 1, + "since": 1, + "char": 1, + "invalid": 1, + "here": 2, + "header_field_names": 1, + "_body": 2, + "blessed": 1, + "&&": 83, + "overload": 1, + "Method": 1, + "q": 5, + "while": 31, + "val": 26, + "each": 14, + "cookie": 6, + "_bake_cookie": 2, + "push_header": 1, + "value": 12, + "@cookie": 7, + "uri_escape": 3, + "push": 30, + "domain": 3, + "path": 28, + "_date": 2, + "expires": 7, + "secure": 2, + "httponly": 1, + "join": 5, + "@MON": 1, + "Jan": 1, + "Feb": 1, + "Mar": 1, + "Apr": 1, + "May": 2, + "Jun": 1, + "Jul": 1, + "Aug": 1, + "Sep": 1, + "Oct": 1, + "Nov": 1, + "Dec": 1, + "@WDAY": 1, + "Sun": 1, + "Mon": 1, + "Tue": 1, + "Wed": 1, + "Thu": 1, + "Fri": 1, + "Sat": 1, + "/": 69, + "d": 9, + "sec": 2, + "min": 3, + "hour": 2, + "mday": 2, + "mon": 2, + "year": 3, + "wday": 2, + "gmtime": 1, + "sprintf": 1, + "WDAY": 1, + "MON": 1, + "__END__": 2, + "Portable": 2, + "object": 6, + "response": 5, + "psgi_handler": 1, + "env": 76, + "res": 59, + "way": 2, + "array": 7, + "through": 6, + "simple": 2, + "API.": 1, + "METHODS": 2, + "Creates": 2, + "object.": 4, + "Sets": 2, + "gets": 2, + "code.": 2, + "": 1, + "alias.": 2, + "response.": 1, + "Setter": 2, + "take": 5, + "either": 2, + "": 2, + "containing": 5, + "list": 10, + "headers.": 1, + "body_str": 1, + "io": 1, + "Gets": 3, + "sets": 4, + "body.": 1, + "string": 5, + "IO": 1, + "Handle": 1, + "": 1, + "doesn": 8, + "X": 2, + "bar": 3, + "text/plain": 1, + "gzip": 1, + "t": 18, + "normalize": 1, + "given": 10, + "string.": 1, + "Users": 1, + "module": 2, + "have": 2, + "responsible": 1, + "properly": 1, + "encoding": 2, + "paths": 3, + "parameters.": 3, + "": 1, + "header.": 2, + "names": 1, + "their": 1, + "corresponding": 1, + "values": 5, + "plain": 2, + "": 2, + "everything": 1, + "reference": 8, + "keys": 15, + "": 1, + "": 2, + "": 1, + "": 1, + "": 1, + "integer": 1, + "epoch": 1, + "time": 3, + "": 1, + "convert": 1, + "formats": 1, + "<+3M>": 1, + "foo": 6, + "*": 8, + "Returns": 10, + "reference.": 1, + "AUTHOR": 1, + "Tokuhiro": 2, + "Matsuno": 2, + "Tatsuhiko": 2, + "Miyagawa": 2, + "": 2, + "SHEBANG#!perl": 5, + "App": 131, + "Ack": 136, + "File": 54, + "Next": 27, + "Plugin": 2, + "Basic": 10, + "A": 2, + "container": 1, + "functions": 2, + "ack": 38, + "program": 6, + "Version": 1, + "BEGIN": 7, + "fh": 28, + "*STDOUT": 6, + "types": 26, + "type_wanted": 20, + "mappings": 29, + "ignore_dirs": 12, + "input_from_pipe": 8, + "output_to_pipe": 12, + "dir_sep_chars": 10, + "is_cygwin": 6, + "is_windows": 12, + "Spec": 13, + "Glob": 4, + "Getopt": 6, + "Long": 6, + "_MTN": 2, + "blib": 2, + "CVS": 5, + "RCS": 2, + "SCCS": 2, + "_darcs": 2, + "_sgbak": 2, + "_build": 2, + "actionscript": 2, + "mxml": 2, + "ada": 4, + "adb": 2, + "ads": 2, + "asm": 4, + "batch": 2, + "bat": 2, + "cmd": 2, + "binary": 3, + "Binary": 2, + "T": 2, + "op": 2, + "off": 4, + "tt": 4, + "tt2": 2, + "ttml": 2, + "vb": 4, + "bas": 2, + "cls": 2, + "frm": 2, + "ctl": 2, + "resx": 2, + "verilog": 2, + "vh": 2, + "sv": 2, + "vhdl": 4, + "vhd": 2, + "vim": 4, + "yaml": 4, + "yml": 2, + "xml": 6, + "dtd": 2, + "xsl": 2, + "xslt": 2, + "ent": 2, + "type": 69, + "exts": 6, + "ext": 14, + "mk": 2, + "mak": 2, + "p": 9, + "STDIN": 2, + "O": 4, + "/MSWin32/": 2, + "quotemeta": 5, + "catfile": 4, + "know": 4, + "": 13, + "No": 4, + "user": 4, + "serviceable": 1, + "parts": 1, + "inside.": 1, + "should": 6, + "this.": 1, + "FUNCTIONS": 1, + "read_ackrc": 4, + "Reads": 1, + "contents": 2, + ".ackrc": 1, + "returns": 4, + "arguments.": 1, + "@files": 12, + "ENV": 40, + "ACKRC": 2, + "@dirs": 4, + "HOME": 4, + "USERPROFILE": 2, + "dir": 27, + "grep": 17, + "bsd_glob": 4, + "GLOB_TILDE": 2, + "filename": 68, + "e": 20, + "open": 7, + "die": 38, + "@lines": 21, + "/./": 2, + "s*#/": 2, + "<$fh>": 4, + "chomp": 3, + "close": 19, + "//": 9, + "get_command_line_options": 4, + "line": 20, + "arguments": 2, + "does": 10, + "tweaking.": 1, + "opt": 291, + "pager": 19, + "ACK_PAGER_COLOR": 7, + "ACK_PAGER": 5, + "getopt_specs": 6, + "m": 17, + "after_context": 16, + "before_context": 18, + "break": 14, + "c": 5, + "count": 23, + "color": 38, + "ACK_COLOR_MATCH": 5, + "ACK_COLOR_FILENAME": 5, + "ACK_COLOR_LINENO": 4, + "column": 4, + "ignore": 7, + "option": 7, + "handled": 2, + "beforehand": 2, + "f": 25, + "flush": 8, + "follow": 7, + "G": 11, + "heading": 18, + "h": 6, + "H": 6, + "invert_file_match": 8, + "lines": 19, + "l": 17, + "regex": 28, + "output": 36, + "undef": 17, + "passthru": 9, + "print0": 7, + "Q": 7, + "show_types": 4, + "smart_case": 3, + "sort_files": 11, + "u": 10, + "w": 4, + "remove_dir_sep": 7, + "delete": 10, + "print_version_statement": 2, + "exit": 16, + "show_help": 3, + "show_help_types": 2, + "require": 12, + "Pod": 4, + "Usage": 4, + "pod2usage": 2, + "verbose": 2, + "exitval": 2, + "dummy": 2, + "wanted": 4, + "no//": 2, + "must": 5, + "later": 2, + "exists": 19, + "qq": 18, + "Unknown": 2, + "unshift": 4, + "@ARGV": 12, + "split": 13, + "ACK_OPTIONS": 5, + "def_types_from_ARGV": 5, + "filetypes_supported": 5, + "parser": 12, + "Parser": 4, + "configure": 4, + "getoptions": 4, + "to_screen": 10, + "Win32": 9, + "Console": 2, + "ANSI": 3, + "key": 20, + "@ret": 10, + "from": 19, + "warn": 22, + "uniq": 4, + "@uniq": 2, + "sort": 8, + "<=>": 2, + "b": 6, + "numerical": 2, + "occurs": 2, + "only": 11, + "once": 4, + "Go": 1, + "look": 2, + "<--type-set>": 1, + "foo=": 1, + "<--type-add>": 1, + "xml=": 1, + "Remove": 1, + "them": 5, + "supported": 1, + "filetypes": 8, + "i.e.": 2, + "into": 6, + "@typedef": 8, + "td": 6, + "Builtin": 4, + "cannot": 4, + "changed.": 4, + "ne": 9, + "delete_type": 5, + "Type": 2, + "exist": 4, + "...": 2, + "@exts": 8, + ".//": 2, + "Cannot": 4, + "append": 2, + "Removes": 1, + "internal": 1, + "structures": 1, + "type_wanted.": 1, + "Internal": 2, + "error": 4, + "builtin": 2, + "ignoredir_filter": 5, + "Standard": 1, + "filter": 12, + "pass": 1, + "": 1, + "descend_filter.": 1, + "true": 3, + "directory": 8, + "ones": 1, + "we": 7, + "ignore.": 1, + "removes": 1, + "trailing": 1, + "separator": 4, + "there": 6, + "one": 9, + "its": 2, + "argument": 1, + "<$filename>": 1, + "could": 2, + "be.": 1, + "For": 5, + "example": 5, + "": 1, + "filetype": 1, + "": 1, + "skipped": 2, + "avoid": 1, + "searching": 6, + "even": 4, + "a.": 1, + "constant": 2, + "TEXT": 16, + "basename": 9, + ".*": 2, + "is_searchable": 8, + "lc_basename": 8, + "lc": 5, + "r": 14, + "SHEBANG#!#!": 2, + "ruby": 3, + "lua": 2, + "erl": 2, + "hp": 2, + "ython": 2, + "d.": 2, + "b/": 4, + "ba": 2, + "z": 2, + "sh": 2, + "/i": 2, + "search": 11, + "false": 1, + "regular": 3, + "expression": 9, + "found.": 4, + "www": 2, + "U": 2, + "y": 8, + "tr/": 2, + "x": 7, + "w/": 3, + "nOo_/": 2, + "_thpppt": 3, + "_get_thpppt": 3, + "_bar": 3, + "&": 22, + "*I": 2, + "g": 7, + "#.": 6, + ".#": 4, + "I#": 2, + "#I": 6, + "#7": 4, + "results.": 2, + "interactively": 6, + "Print": 6, + "results": 8, + "different": 2, + "files.": 6, + "group": 2, + "Same": 8, + "nogroup": 2, + "noheading": 2, + "nobreak": 2, + "Highlight": 2, + "matching": 15, + "text": 6, + "redirected": 2, + "Windows": 4, + "colour": 2, + "COLOR": 6, + "match": 21, + "lineno": 2, + "Set": 3, + "filenames": 7, + "matches": 7, + "numbers.": 2, + "Flush": 2, + "immediately": 2, + "non": 2, + "goes": 2, + "pipe": 4, + "finding": 2, + "Only": 7, + "without": 3, + "searching.": 2, + "PATTERN": 8, + "specified.": 4, + "REGEX": 2, + "but": 4, + "REGEX.": 2, + "Sort": 2, + "lexically.": 3, + "invert": 2, + "Print/search": 2, + "g/": 2, + "G.": 2, + "show": 3, + "Show": 2, + "has.": 2, + "inclusion/exclusion": 2, + "All": 4, + "searched": 5, + "Ignores": 2, + ".svn": 3, + "other": 5, + "ignored": 6, + "directories": 9, + "unrestricted": 2, + "Add/Remove": 2, + "dirs": 2, + "R": 2, + "recurse": 2, + "Recurse": 3, + "subdirectories": 2, + "END_OF_HELP": 2, + "VMS": 2, + "vd": 2, + "Term": 6, + "ANSIColor": 8, + "black": 3, + "on_yellow": 3, + "bold": 5, + "green": 3, + "yellow": 3, + "printing": 2, + "qr/": 13, + "last_output_line": 6, + "any_output": 10, + "keep_context": 8, + "@before": 16, + "before_starts_at_line": 10, + "after": 18, + "still": 4, + "next_text": 8, + "has_lines": 4, + "scalar": 2, + "m/": 4, + "regex/": 9, + "next": 9, + "print_match_or_context": 13, + "last": 17, + "max": 12, + "nmatches": 61, + "show_filename": 35, + "context_overall_output_count": 6, + "print_blank_line": 2, + "is_binary": 4, + "search_resource": 7, + "is_match": 7, + "starting_line_no": 1, + "match_start": 5, + "match_end": 3, + "Prints": 4, + "out": 2, + "context": 1, + "around": 5, + "match.": 3, + "opts": 2, + "line_no": 12, + "show_column": 4, + "display_filename": 8, + "colored": 6, + "print_first_filename": 2, + "sep": 8, + "output_func": 8, + "print_separator": 2, + "print_filename": 2, + "display_line_no": 4, + "print_line_no": 2, + "regex/go": 2, + "regex/Term": 2, + "substr": 2, + "/eg": 2, + "z/": 2, + "K/": 2, + "z//": 2, + "print_column_no": 2, + "scope": 4, + "TOTAL_COUNT_SCOPE": 2, + "total_count": 10, + "get_total_count": 4, + "reset_total_count": 4, + "search_and_list": 8, + "Optimized": 1, + "version": 2, + "lines.": 3, + "ors": 11, + "record": 3, + "show_total": 6, + "print_count": 4, + "print_count0": 2, + "filetypes_supported_set": 9, + "True/False": 1, + "print_files": 4, + "iter": 23, + "iterator": 3, + "<$regex>": 1, + "<$one>": 1, + "stop": 1, + "first.": 1, + "<$ors>": 1, + "<\"\\n\">": 1, + "what": 14, + "filename.": 1, + "print_files_with_matches": 4, + "where": 3, + "was": 2, + "repo": 18, + "Repository": 11, + "next_resource": 6, + "print_matches": 4, + "tarballs_work": 4, + ".tar": 2, + ".gz": 2, + "Tar": 4, + "XXX": 4, + "Error": 2, + "checking": 2, + "needs_line_scan": 14, + "reset": 5, + "filetype_setup": 4, + "Minor": 1, + "housekeeping": 1, + "before": 1, + "go": 1, + "expand_filenames": 7, + "expanded": 3, + "globs": 1, + "EXPAND_FILENAMES_SCOPE": 4, + "argv": 12, + "attr": 6, + "foreach": 4, + "pattern": 10, + "@results": 14, + "didn": 2, + "ve": 2, + "tried": 2, + "load": 2, + "GetAttributes": 2, + "end": 9, + "attributes": 4, + "got": 2, + "get_starting_points": 4, + "starting": 2, + "@what": 14, + "reslash": 4, + "Assume": 2, + "current": 5, + "start_point": 4, + "_match": 8, + "target": 6, + "invert_flag": 4, + "get_iterator": 4, + "Return": 2, + "starting_point": 10, + "g_regex": 4, + "file_filter": 12, + "g_regex/": 6, + "Maybe": 2, + "is_interesting": 4, + "descend_filter": 11, + "error_handler": 5, + "msg": 4, + "follow_symlinks": 6, + "set_up_pager": 3, + "Unable": 2, + "going": 1, + "pipe.": 1, + "exit_from_ack": 5, + "Exit": 1, + "correct": 1, + "otherwise": 2, + "handed": 1, + "argument.": 1, + "LICENSE": 3, + "Copyright": 2, + "Andy": 2, + "Lester.": 2, + "software": 3, + "Artistic": 2, + "License": 2, + "v2.0.": 2, + "End": 3, + "Fast": 3, + "XML": 2, + "Hash": 11, + "XS": 2, + "FindBin": 1, + "Bin": 3, + "#use": 1, + "lib": 2, + "catdir": 3, + "_stop": 4, + "request": 11, + "SIG": 3, + "nginx": 2, + "external": 2, + "fcgi": 2, + "Ext_Request": 1, + "FCGI": 1, + "Request": 11, + "*STDIN": 2, + "*STDERR": 1, + "int": 2, + "ARGV": 2, + "conv": 2, + "use_attr": 1, + "indent": 1, + "xml_decl": 1, + "tmpl_path": 2, + "tmpl": 5, + "data": 3, + "nick": 1, + "tree": 2, + "parent": 5, + "id": 6, + "third_party": 1, + "artist_name": 2, + "venue": 2, + "event": 2, + "date": 2, + "zA": 1, + "Z0": 1, + "Content": 2, + "application/xml": 1, + "charset": 2, + "utf": 2, + "hash2xml": 1, + "text/html": 1, + "nError": 1, + "M": 1, + "system": 1, + "_001": 1, + "MultiValue": 9, + "Body": 2, + "Upload": 2, + "TempBuffer": 2, + "_deprecated": 8, + "alt": 1, + "caller": 2, + "required": 2, + "address": 2, + "REMOTE_ADDR": 1, + "remote_host": 2, + "REMOTE_HOST": 1, + "protocol": 1, + "SERVER_PROTOCOL": 1, + "REQUEST_METHOD": 1, + "port": 1, + "SERVER_PORT": 2, + "REMOTE_USER": 1, + "request_uri": 1, + "REQUEST_URI": 2, + "path_info": 4, + "PATH_INFO": 3, + "script_name": 1, + "SCRIPT_NAME": 2, + "scheme": 3, + "input": 9, + "CONTENT_LENGTH": 3, + "CONTENT_TYPE": 2, + "session": 1, + "session_options": 1, + "logger": 1, + "HTTP_COOKIE": 3, + "@pairs": 2, + "pair": 4, + "uri_unescape": 1, + "query_parameters": 3, + "uri": 11, + "query_form": 2, + "_parse_request_body": 4, + "cl": 10, + "read": 6, + "seek": 4, + "raw_body": 1, + "field": 2, + "HTTPS": 1, + "_//": 1, + "CONTENT": 1, + "COOKIE": 1, + "referer": 3, + "user_agent": 3, + "body_parameters": 3, + "parameters": 8, + "query": 4, + "flatten": 3, + "uploads": 5, + "hostname": 1, + "url_scheme": 1, + "params": 1, + "query_params": 1, + "body_params": 1, + "param": 8, + "wantarray": 3, + "get_all": 2, + "upload": 13, + "raw_uri": 1, + "base": 10, + "path_query": 1, + "_uri_base": 3, + "path_escape_class": 2, + "QUERY_STRING": 3, + "canonical": 2, + "HTTP_HOST": 1, + "SERVER_NAME": 1, + "new_response": 4, + "ct": 3, + "cleanup": 1, + "buffer": 9, + "spin": 2, + "chunk": 4, + "length": 1, + "rewind": 1, + "from_mixed": 2, + "@uploads": 3, + "@obj": 3, + "splice": 2, + "_make_upload": 2, + "copy": 4, + "app_or_middleware": 1, + "req": 28, + "provides": 1, + "consistent": 1, + "API": 2, + "objects": 2, + "across": 1, + "environments.": 1, + "CAVEAT": 1, + "intended": 1, + "developers": 3, + "framework": 2, + "rather": 2, + "than": 5, + "users": 4, + "directly": 1, + "certainly": 2, + "recommended": 1, + "Apache": 2, + "yet": 1, + "too": 1, + "low": 1, + "level.": 1, + "re": 3, + "encouraged": 1, + "frameworks": 2, + "support": 2, + "": 1, + "modules": 1, + "": 1, + "provide": 1, + "higher": 1, + "level": 1, + "top": 1, + "PSGI.": 1, + "Some": 1, + "earlier": 1, + "versions": 1, + "deprecated": 1, + "Take": 1, + "": 1, + "Unless": 1, + "noted": 1, + "": 1, + "passing": 1, + "accessor": 1, + "debug": 1, + "set.": 1, + "request.": 1, + "uploads.": 2, + "": 2, + "": 1, + "objects.": 1, + "Shortcut": 6, + "content_encoding.": 1, + "content_length.": 1, + "content_type.": 1, + "referer.": 1, + "user_agent.": 1, + "GET": 1, + "POST": 1, + "CGI.pm": 2, + "compatible": 1, + "method.": 1, + "alternative": 1, + "accessing": 1, + "Unlike": 1, + "": 1, + "allow": 1, + "modifying": 1, + "@values": 1, + "@params": 1, + "convenient": 1, + "access": 2, + "@fields": 1, + "": 3, + "Handy": 1, + "dependency": 1, + "easy": 1, + "subclassing": 1, + "duck": 1, + "typing": 1, + "well": 2, + "overriding": 1, + "generation": 1, + "middlewares.": 1, + "Parameters": 1, + "multiple": 5, + "": 1, + "": 1, + "": 1, + "": 1, + "store": 1, + "": 1, + "scalars": 1, + "": 2, + "references": 1, + "don": 2, + "ARRAY": 1, + "parse": 1, + "more": 2, + "twice": 1, + "efficiency.": 1, + "DISPATCHING": 1, + "wants": 1, + "dispatch": 1, + "route": 1, + "actions": 1, + "sure": 1, + "because": 3, + "": 1, + "gives": 2, + "virtual": 1, + "regardless": 1, + "how": 1, + "mounted.": 1, + "hosted": 1, + "scripts": 1, + "multiplexed": 1, + "tools": 1, + "": 1, + "good": 2, + "idea": 1, + "subclass": 1, + "define": 1, + "uri_for": 2, + "args": 3, + "So": 1, + "say": 1, + "link": 1, + "signoff": 1, + "": 1, + "empty.": 1, + "older": 1, + "behavior": 3, + "just": 2, + "instead.": 1, + "Cookie": 2, + "handling": 1, + "simplified": 1, + "always": 5, + "decoding": 1, + "totally": 1, + "up": 1, + "framework.": 1, + "Also": 1, + "": 1, + "now": 1, + "": 1, + "Simple": 1, + "longer": 1, + "wacky": 1, + "instead": 4, + "simply": 1, + "Kazuhiro": 1, + "Osawa": 1, + "": 1, + "": 1, + "MAIN": 1, + "main": 3, + "env_is_usable": 3, + "th": 1, + "pt": 1, + "@keys": 2, + "ACK_/": 1, + "@ENV": 1, + "load_colors": 1, + "ACK_SWITCHES": 1, + "Unbuffer": 1, + "mode": 1, + "build_regex": 3, + "nargs": 2, + "Resource": 5, + "file_matching": 2, + "check_regex": 2, + "finder": 1, + "options": 7, + "FILE...": 1, + "DIRECTORY...": 1, + "designed": 1, + "replacement": 1, + "uses": 2, + "": 5, + "searches": 1, + "named": 3, + "FILEs": 1, + "standard": 1, + "PATTERN.": 1, + "By": 2, + "prints": 2, + "also": 7, + "actually": 1, + "let": 1, + "advantage": 1, + ".wango": 1, + "won": 1, + "throw": 1, + "away": 1, + "times": 2, + "symlinks": 1, + "whatever": 1, + "were": 1, + "specified": 3, + "line.": 4, + "default.": 2, + "": 11, + "included": 1, + "search.": 1, + "matched": 1, + "against": 1, + "shell": 4, + "glob.": 1, + "<-i>": 5, + "<-w>": 2, + "<-v>": 3, + "<-Q>": 4, + "relative": 1, + "convenience": 1, + "<-f>": 6, + "<--group>": 2, + "<--nogroup>": 2, + "groups": 1, + "with.": 1, + "interactively.": 1, + "result": 1, + "per": 1, + "grep.": 2, + "redirected.": 1, + "<-H>": 1, + "<--with-filename>": 1, + "<-h>": 1, + "<--no-filename>": 1, + "Suppress": 1, + "prefixing": 1, + "searched.": 1, + "<--help>": 1, + "short": 1, + "help": 2, + "statement.": 1, + "<--ignore-case>": 1, + "Ignore": 3, + "case": 3, + "strings.": 1, + "applies": 3, + "regexes": 3, + "<-g>": 5, + "<-G>": 3, + "options.": 4, + "": 2, + "etc": 2, + "directories.": 2, + "mason": 1, + "may": 3, + "wish": 1, + "include": 1, + "<--ignore-dir=data>": 1, + "<--noignore-dir>": 1, + "normally": 1, + "perhaps": 1, + "research": 1, + "<.svn/props>": 1, + "name.": 1, + "Nested": 1, + "": 1, + "NOT": 1, + "supported.": 1, + "specify": 1, + "<--ignore-dir=foo>": 1, + "taken": 1, + "account": 1, + "explicitly": 1, + "": 2, + "Multiple": 1, + "<--line>": 1, + "comma": 1, + "separated": 2, + "<--line=3,5,7>": 1, + "<--line=4-7>": 1, + "works.": 1, + "ascending": 1, + "order": 2, + "matter": 1, + "<-l>": 2, + "<--files-with-matches>": 1, + "text.": 1, + "<-L>": 1, + "<--files-without-matches>": 1, + "equivalent": 2, + "specifying": 1, + "Specify": 1, + "explicitly.": 1, + "helpful": 2, + "": 1, + "via": 1, + "": 4, + "": 4, + "environment": 2, + "variables.": 1, + "Using": 3, + "suppress": 3, + "grouping": 3, + "coloring": 3, + "piping": 3, + "does.": 2, + "<--passthru>": 1, + "whether": 1, + "they": 1, + "expression.": 1, + "Highlighting": 1, + "though": 1, + "highlight": 1, + "seeing": 1, + "tail": 1, + "/access.log": 1, + "<--print0>": 1, + "works": 1, + "conjunction": 1, + "null": 1, + "byte": 1, + "usual": 1, + "newline.": 1, + "dealing": 1, + "whitespace": 1, + "html": 1, + "xargs": 2, + "rm": 1, + "<--literal>": 1, + "Quote": 1, + "metacharacters": 2, + "treated": 1, + "literal.": 1, + "<-r>": 1, + "<-R>": 1, + "<--recurse>": 1, + "compatibility": 2, + "turning": 1, + "<--no-recurse>": 1, + "off.": 1, + "<--smart-case>": 1, + "<--no-smart-case>": 1, + "strings": 1, + "uppercase": 1, + "characters.": 1, + "similar": 1, + "": 1, + "vim.": 1, + "overrides": 2, + "option.": 1, + "<--sort-files>": 1, + "Sorts": 1, + "Use": 6, + "listings": 1, + "deterministic": 1, + "runs": 1, + "<--show-types>": 1, + "Outputs": 1, + "associates": 1, + "Works": 1, + "<--thpppt>": 1, + "Display": 1, + "important": 1, + "Bill": 1, + "Cat": 1, + "logo.": 1, + "exact": 1, + "spelling": 1, + "<--thpppppt>": 1, + "important.": 1, + "make": 3, + "perl": 8, + "php": 2, + "python": 1, + "location.": 1, + "variable": 1, + "specifies": 1, + "placed": 1, + "front": 1, + "explicit": 1, + "Specifies": 4, + "recognized": 1, + "clear": 2, + "dark": 1, + "underline": 1, + "underscore": 2, + "blink": 1, + "reverse": 1, + "concealed": 1, + "red": 1, + "blue": 1, + "magenta": 1, + "on_black": 1, + "on_red": 1, + "on_green": 1, + "on_blue": 1, + "on_magenta": 1, + "on_cyan": 1, + "on_white.": 1, + "Case": 1, + "significant.": 1, + "Underline": 1, + "reset.": 1, + "alone": 1, + "foreground": 1, + "on_color": 1, + "background": 1, + "color.": 2, + "<--color-filename>": 1, + "printed": 1, + "<--color>": 1, + "mode.": 1, + "<--color-lineno>": 1, + "See": 1, + "": 1, + "specifications.": 1, + "": 1, + "": 1, + "": 1, + "send": 1, + "output.": 1, + "except": 1, + "assume": 1, + "both": 1, + "understands": 1, + "sequences.": 1, + "never": 1, + "ACK": 2, + "OTHER": 1, + "TOOLS": 1, + "Vim": 3, + "integration": 3, + "integrates": 1, + "easily": 2, + "editor.": 1, + "<.vimrc>": 1, + "grepprg": 1, + "That": 3, + "examples": 1, + "<-a>": 1, + "flags.": 1, + "Now": 1, + "step": 1, + "Dumper": 1, + "perllib": 1, + "Emacs": 1, + "Phil": 1, + "Jackson": 1, + "put": 1, + "": 1, + "extension": 1, + "": 1, + "TextMate": 2, + "Pedro": 1, + "Melo": 1, + "who": 1, + "writes": 1, + "Shell": 2, + "Code": 1, + "greater": 1, + "normal": 1, + "<$?=256>": 1, + "": 1, + "backticks.": 1, + "errors": 1, + "used.": 1, + "least": 1, + "returned.": 1, + "DEBUGGING": 1, + "PROBLEMS": 1, + "expecting": 1, + "forgotten": 1, + "<--noenv>": 1, + "<.ackrc>": 1, + "remember.": 1, + "Put": 1, + "definitions": 1, + "it.": 1, + "smart": 1, + "too.": 1, + "there.": 1, + "working": 1, + "big": 1, + "codesets": 1, + "ideal": 1, + "sending": 1, + "": 1, + "prefer": 1, + "doubt": 1, + "day": 1, + "find": 1, + "trouble": 1, + "spots": 1, + "website": 1, + "visitor.": 1, + "had": 1, + "problem": 1, + "loading": 1, + "": 1, + "took": 1, + "log": 3, + "scanned": 1, + "twice.": 1, + "aa.bb.cc.dd": 1, + "/path/to/access.log": 1, + "B5": 1, + "troublesome.gif": 1, + "first": 1, + "finds": 2, + "IP.": 1, + "second": 1, + "troublesome": 1, + "GIF": 1, + "shows": 1, + "previous": 1, + "five": 1, + "case.": 1, + "Share": 1, + "knowledge": 1, + "Join": 1, + "mailing": 1, + "list.": 1, + "Send": 1, + "me": 1, + "tips": 1, + "here.": 1, + "FAQ": 1, + "isn": 1, + "driven": 1, + "filetype.": 1, + "": 1, + "kind": 1, + "ignores": 1, + "switch": 1, + "you.": 1, + "source": 2, + "compiled": 1, + "control": 1, + "metadata": 1, + "wastes": 1, + "lot": 1, + "those": 2, + "returning": 1, + "great": 1, + "did": 1, + "only.": 1, + "perfectly": 1, + "<-p>": 1, + "<-n>": 1, + "switches.": 1, + "select": 1, + "update.": 1, + "change": 1, + "PHP": 1, + "Unix": 1, + "Can": 1, + "recognize": 1, + "<.xyz>": 1, + "already": 2, + "program/package": 1, + "ack.": 2, + "Yes": 1, + "know.": 1, + "nothing": 1, + "suggest": 1, + "symlink": 1, + "points": 1, + "": 1, + "crucial": 1, + "benefits": 1, + "having": 1, + "Regan": 1, + "Slaven": 1, + "ReziE": 1, + "<0x107>": 1, + "Mark": 1, + "Stosberg": 1, + "David": 1, + "Alan": 1, + "Pisoni": 1, + "Adriano": 1, + "Ferreira": 1, + "James": 1, + "Keenan": 1, + "Leland": 1, + "Johnson": 1, + "Ricardo": 1, + "Signes": 1, + "Pete": 1, + "Krawczyk.": 1, + "files_defaults": 3, + "skip_dirs": 3, + "CORE": 3, + "curdir": 1, + "updir": 1, + "__PACKAGE__": 1, + "parms": 15, + "@queue": 8, + "_setup": 2, + "fullpath": 12, + "local": 5, + "_candidate_files": 2, + "sort_standard": 2, + "cmp": 2, + "sort_reverse": 1, + "@parts": 3, + "passed_parms": 6, + "parm": 1, + "badkey": 1, + "dh": 4, + "opendir": 1, + "@newfiles": 5, + "sort_sub": 4, + "readdir": 1, + "has_stat": 3, + "closedir": 1, + "": 1, + "updated": 1, + "update": 1, + "message": 1, + "bak": 1, + "core": 1, + "swp": 1, + "js": 1, + "1": 1, + "str": 12, + "regex_is_lc": 2, + "S": 1, + ".*//": 1, + "_my_program": 3, + "Basename": 2, + "FAIL": 12, + "confess": 2, + "@ISA": 2, + "could_be_binary": 4, + "opened": 1, + "size": 5, + "_000": 1, + "sysread": 1, + "regex/m": 1, + "readline": 1, + "nexted": 3 + }, + "TypeScript": { + "class": 3, + "Animal": 4, + "{": 9, + "constructor": 3, + "(": 18, + "public": 1, + "name": 5, + ")": 18, + "}": 9, + "move": 3, + "meters": 2, + "alert": 3, + "this.name": 1, + "+": 3, + ";": 8, + "Snake": 2, + "extends": 2, + "super": 2, + "super.move": 2, + "Horse": 2, + "var": 2, + "sam": 1, + "new": 2, + "tom": 1, + "sam.move": 1, + "tom.move": 1, + "console.log": 1 + }, + "Verilog": { + "timescale": 10, + "ns": 8, + "/": 11, + "ps": 8, + "//": 117, + "module": 18, + "control": 1, + "(": 378, + "clk": 40, + "en": 13, + "dsp_sel": 9, + "an": 6, + ")": 378, + ";": 287, + "input": 68, + "output": 42, + "[": 179, + "]": 179, + "wire": 67, + "a": 5, + "b": 3, + "c": 3, + "d": 3, + "e": 3, + "f": 2, + "g": 2, + "h": 2, + "i": 62, + "j": 2, + "k": 2, + "l": 2, + "assign": 23, + "FDRSE": 6, + "#": 10, + ".INIT": 6, + "b0": 27, + "or": 14, + "Synchronous": 12, + "reset": 13, + ".S": 6, + "b1": 19, + "Initial": 6, + "value": 6, + "of": 8, + "register": 6, + "DFF2": 1, + ".Q": 6, + "Data": 13, + ".C": 6, + "Clock": 14, + ".CE": 6, + "enable": 6, + ".D": 6, + ".R": 6, + "set": 6, + "DFF0": 1, + "DFF6": 1, + "DFF4": 1, + "DFF10": 1, + "DFF8": 1, + "endmodule": 18, + "ps2_mouse": 1, + "Input": 2, + "Reset": 1, + "inout": 2, + "ps2_clk": 3, + "PS2": 2, + "Bidirectional": 2, + "ps2_dat": 3, + "the_command": 2, + "Command": 1, + "to": 3, + "send": 2, + "mouse": 1, + "send_command": 2, + "Signal": 2, + "command_was_sent": 2, + "command": 1, + "finished": 1, + "sending": 1, + "error_communication_timed_out": 3, + "received_data": 2, + "Received": 1, + "data": 4, + "received_data_en": 4, + "If": 1, + "-": 73, + "new": 1, + "has": 1, + "been": 1, + "received": 1, + "start_receiving_data": 3, + "wait_for_incoming_data": 3, + "ps2_clk_posedge": 3, + "Internal": 2, + "Wires": 1, + "ps2_clk_negedge": 3, + "reg": 26, + "idle_counter": 4, + "Registers": 2, + "ps2_clk_reg": 4, + "ps2_data_reg": 5, + "last_ps2_clk": 4, + "ns_ps2_transceiver": 13, + "State": 1, + "Machine": 1, + "s_ps2_transceiver": 8, + "localparam": 4, + "PS2_STATE_0_IDLE": 10, + "h1": 1, + "PS2_STATE_2_COMMAND_OUT": 2, + "h3": 1, + "PS2_STATE_4_END_DELAYED": 4, + "<": 47, + "else": 22, + "end": 48, + "always": 23, + "@": 16, + "begin": 46, + "Defaults": 1, + "case": 3, + "if": 23, + "PS2_STATE_1_DATA_IN": 3, + "||": 1, + "PS2_STATE_3_END_TRANSFER": 3, + "default": 2, + "endcase": 3, + "posedge": 11, + "h00": 1, + "&&": 3, + "h01": 1, + "ps2_mouse_cmdout": 1, + "mouse_cmdout": 1, + ".clk": 6, + "Inputs": 2, + ".reset": 2, + ".the_command": 1, + ".send_command": 1, + ".ps2_clk_posedge": 2, + ".ps2_clk_negedge": 2, + ".ps2_clk": 1, + "Bidirectionals": 1, + ".ps2_dat": 1, + ".command_was_sent": 1, + "Outputs": 2, + ".error_communication_timed_out": 1, + "ps2_mouse_datain": 1, + "mouse_datain": 1, + ".wait_for_incoming_data": 1, + ".start_receiving_data": 1, + ".ps2_data": 1, + ".received_data": 1, + ".received_data_en": 1, + "hex_display": 1, + "num": 5, + "hex0": 2, + "hex1": 2, + "hex2": 2, + "hex3": 2, + "seg_7": 4, + "hex_group0": 1, + ".num": 4, + ".en": 4, + ".seg": 4, + "hex_group1": 1, + "hex_group2": 1, + "hex_group3": 1, + "mux": 1, + "opA": 4, + "opB": 3, + "sum": 5, + "out": 5, + "cout": 4, + "b0000": 1, + "b01": 1, + "b11": 1, + "////////////////////////////////////////////////////////////////////////////////": 14, + "t_sqrt_pipelined": 1, + "parameter": 7, + "INPUT_BITS": 28, + "OUTPUT_BITS": 14, + "+": 36, + "%": 3, + "radicand": 12, + "start": 12, + "reset_n": 32, + "root": 8, + "data_valid": 7, + "sqrt_pipelined": 3, + ".INPUT_BITS": 1, + ".reset_n": 3, + ".start": 2, + ".radicand": 1, + ".data_valid": 2, + ".root": 1, + "initial": 3, + "bx": 4, + "#10": 10, + "#50": 2, + "#10000": 1, + "finish": 2, + "#5": 3, + "clock": 3, + "asynchronous": 2, + "optional": 2, + "signal": 3, + "unsigned": 2, + "valid": 2, + "number": 2, + "bits": 2, + "any": 1, + "integer": 1, + "start_gen": 7, + "propagation": 1, + "OUTPUT_BITS*INPUT_BITS": 9, + "root_gen": 15, + "values": 3, + "radicand_gen": 10, + "mask_gen": 9, + "mask": 3, + "negedge": 8, + "generate": 3, + "genvar": 3, + "for": 4, + "mask_4": 1, + "is": 4, + "odd": 1, + "this": 2, + "INPUT_BITS*": 27, + "<<": 2, + "*": 4, + "i/2": 2, + "even": 1, + "pipeline": 2, + "pipeline_stage": 1, + "INPUT_BITS*i": 5, + "<=>": 4, + "1": 7, + "endgenerate": 3, + "t_div_pipelined": 1, + "dividend": 3, + "divisor": 5, + "div_by_zero": 2, + "quotient": 2, + "quotient_correct": 1, + "BITS": 2, + "div_pipelined": 2, + ".BITS": 1, + ".dividend": 1, + ".divisor": 1, + ".quotient": 1, + ".div_by_zero": 1, + "#1": 1, + "#1000": 1, + "button_debounce": 3, + "button": 25, + "bouncy": 1, + "debounce": 6, + "debounced": 1, + "cycle": 1, + "CLK_FREQUENCY": 4, + "DEBOUNCE_HZ": 4, + "COUNT_VALUE": 2, + "WAIT": 6, + "FIRE": 4, + "COUNT": 4, + "state": 6, + "next_state": 6, + "count": 6, + "t_button_debounce": 1, + ".CLK_FREQUENCY": 1, + ".DEBOUNCE_HZ": 1, + ".button": 1, + ".debounce": 1, + "#100": 1, + "#0.1": 8, + "pipeline_registers": 1, + "BIT_WIDTH": 5, + "pipe_in": 4, + "pipe_out": 5, + "NUMBER_OF_STAGES": 7, + "BIT_WIDTH*": 5, + "pipe_gen": 6, + "BIT_WIDTH*i": 2, + "ns/1ps": 2, + "sign_extender": 1, + "INPUT_WIDTH": 5, + "OUTPUT_WIDTH": 4, + "original": 3, + "sign_extended_original": 2, + "sign_extend": 3, + "gen_sign_extend": 1, + "{": 11, + "}": 11, + "e0": 1, + "x": 41, + "y": 21, + "e1": 1, + "ch": 1, + "z": 7, + "o": 6, + "&": 6, + "maj": 1, + "|": 2, + "s0": 1, + "s1": 1, + "vga": 1, + "wb_clk_i": 6, + "Mhz": 1, + "VDU": 1, + "wb_rst_i": 6, + "wb_dat_i": 3, + "wb_dat_o": 2, + "wb_adr_i": 3, + "wb_we_i": 3, + "wb_tga_i": 5, + "wb_sel_i": 3, + "wb_stb_i": 2, + "wb_cyc_i": 2, + "wb_ack_o": 2, + "vga_red_o": 2, + "vga_green_o": 2, + "vga_blue_o": 2, + "horiz_sync": 2, + "vert_sync": 2, + "csrm_adr_o": 2, + "csrm_sel_o": 2, + "csrm_we_o": 2, + "csrm_dat_o": 2, + "csrm_dat_i": 2, + "csr_adr_i": 3, + "csr_stb_i": 2, + "conf_wb_dat_o": 3, + "conf_wb_ack_o": 3, + "mem_wb_dat_o": 3, + "mem_wb_ack_o": 3, + "csr_adr_o": 2, + "csr_dat_i": 3, + "csr_stb_o": 3, + "v_retrace": 3, + "vh_retrace": 3, + "w_vert_sync": 3, + "shift_reg1": 3, + "graphics_alpha": 4, + "memory_mapping1": 3, + "write_mode": 3, + "raster_op": 3, + "read_mode": 3, + "bitmask": 3, + "set_reset": 3, + "enable_set_reset": 3, + "map_mask": 3, + "x_dotclockdiv2": 3, + "chain_four": 3, + "read_map_select": 3, + "color_compare": 3, + "color_dont_care": 3, + "wbm_adr_o": 3, + "wbm_sel_o": 3, + "wbm_we_o": 3, + "wbm_dat_o": 3, + "wbm_dat_i": 3, + "wbm_stb_o": 3, + "wbm_ack_i": 3, + "stb": 4, + "cur_start": 3, + "cur_end": 3, + "start_addr": 2, + "vcursor": 3, + "hcursor": 3, + "horiz_total": 3, + "end_horiz": 3, + "st_hor_retr": 3, + "end_hor_retr": 3, + "vert_total": 3, + "end_vert": 3, + "st_ver_retr": 3, + "end_ver_retr": 3, + "pal_addr": 3, + "pal_we": 3, + "pal_read": 3, + "pal_write": 3, + "dac_we": 3, + "dac_read_data_cycle": 3, + "dac_read_data_register": 3, + "dac_read_data": 3, + "dac_write_data_cycle": 3, + "dac_write_data_register": 3, + "dac_write_data": 3, + "vga_config_iface": 1, + "config_iface": 1, + ".wb_clk_i": 2, + ".wb_rst_i": 2, + ".wb_dat_i": 2, + ".wb_dat_o": 2, + ".wb_adr_i": 2, + ".wb_we_i": 2, + ".wb_sel_i": 2, + ".wb_stb_i": 2, + ".wb_ack_o": 2, + ".shift_reg1": 2, + ".graphics_alpha": 2, + ".memory_mapping1": 2, + ".write_mode": 2, + ".raster_op": 2, + ".read_mode": 2, + ".bitmask": 2, + ".set_reset": 2, + ".enable_set_reset": 2, + ".map_mask": 2, + ".x_dotclockdiv2": 2, + ".chain_four": 2, + ".read_map_select": 2, + ".color_compare": 2, + ".color_dont_care": 2, + ".pal_addr": 2, + ".pal_we": 2, + ".pal_read": 2, + ".pal_write": 2, + ".dac_we": 2, + ".dac_read_data_cycle": 2, + ".dac_read_data_register": 2, + ".dac_read_data": 2, + ".dac_write_data_cycle": 2, + ".dac_write_data_register": 2, + ".dac_write_data": 2, + ".cur_start": 2, + ".cur_end": 2, + ".start_addr": 1, + ".vcursor": 2, + ".hcursor": 2, + ".horiz_total": 2, + ".end_horiz": 2, + ".st_hor_retr": 2, + ".end_hor_retr": 2, + ".vert_total": 2, + ".end_vert": 2, + ".st_ver_retr": 2, + ".end_ver_retr": 2, + ".v_retrace": 2, + ".vh_retrace": 2, + "vga_lcd": 1, + "lcd": 1, + ".rst": 1, + ".csr_adr_o": 1, + ".csr_dat_i": 1, + ".csr_stb_o": 1, + ".vga_red_o": 1, + ".vga_green_o": 1, + ".vga_blue_o": 1, + ".horiz_sync": 1, + ".vert_sync": 1, + "vga_cpu_mem_iface": 1, + "cpu_mem_iface": 1, + ".wbs_adr_i": 1, + ".wbs_sel_i": 1, + ".wbs_we_i": 1, + ".wbs_dat_i": 1, + ".wbs_dat_o": 1, + ".wbs_stb_i": 1, + ".wbs_ack_o": 1, + ".wbm_adr_o": 1, + ".wbm_sel_o": 1, + ".wbm_we_o": 1, + ".wbm_dat_o": 1, + ".wbm_dat_i": 1, + ".wbm_stb_o": 1, + ".wbm_ack_i": 1, + "vga_mem_arbitrer": 1, + "mem_arbitrer": 1, + ".clk_i": 1, + ".rst_i": 1, + ".csr_adr_i": 1, + ".csr_dat_o": 1, + ".csr_stb_i": 1, + ".csrm_adr_o": 1, + ".csrm_sel_o": 1, + ".csrm_we_o": 1, + ".csrm_dat_o": 1, + ".csrm_dat_i": 1 + }, + "KRL": { + "ruleset": 1, + "sample": 1, + "{": 3, + "meta": 1, + "name": 1, + "description": 1, + "<<": 1, + "Hello": 1, + "world": 1, + "author": 1, + "}": 3, + "rule": 1, + "hello": 1, + "select": 1, + "when": 1, + "web": 1, + "pageview": 1, + "notify": 1, "(": 1, ")": 1, - "{": 2, - "x": 3, - ";": 4, - "chan": 1, - "c": 3, - "par": 1, - "<:>": 1, - "0": 1, - "}": 2, - "return": 1 + ";": 1 + }, + "ECL": { + "#option": 1, + "(": 32, + "true": 1, + ")": 32, + ";": 23, + "namesRecord": 4, + "RECORD": 1, + "string20": 1, + "surname": 1, + "string10": 2, + "forename": 1, + "integer2": 5, + "age": 2, + "dadAge": 1, + "mumAge": 1, + "END": 1, + "namesRecord2": 3, + "record": 1, + "extra": 1, + "end": 1, + "namesTable": 11, + "dataset": 2, + "FLAT": 2, + "namesTable2": 9, + "aveAgeL": 3, + "l": 1, + "l.dadAge": 1, + "+": 16, + "l.mumAge": 1, + "/2": 2, + "aveAgeR": 4, + "r": 1, + "r.dadAge": 1, + "r.mumAge": 1, + "output": 9, + "join": 11, + "left": 2, + "right": 3, + "//Several": 1, + "simple": 1, + "examples": 1, + "of": 1, + "sliding": 2, + "syntax": 1, + "left.age": 8, + "right.age": 12, + "-": 5, + "and": 10, + "<": 1, + "between": 7, + "//Same": 1, + "but": 1, + "on": 1, + "strings.": 1, + "Also": 1, + "includes": 1, + "to": 1, + "ensure": 1, + "sort": 1, + "is": 1, + "done": 1, + "by": 1, + "non": 1, + "before": 1, + "sliding.": 1, + "left.surname": 2, + "right.surname": 4, + "[": 4, + "]": 4, + "all": 1, + "//This": 1, + "should": 1, + "not": 1, + "generate": 1, + "a": 1, + "self": 1 + }, + "LFE": { + ";": 213, + "Copyright": 4, + "(": 217, + "c": 4, + ")": 231, + "Duncan": 4, + "McGreggor": 4, + "": 2, + "Licensed": 3, + "under": 9, + "the": 36, + "Apache": 3, + "License": 12, + "Version": 3, + "you": 3, + "may": 6, + "not": 5, + "use": 6, + "this": 3, + "file": 6, + "except": 3, + "in": 10, + "compliance": 3, + "with": 8, + "License.": 6, + "You": 3, + "obtain": 3, + "a": 8, + "copy": 3, + "of": 10, + "at": 4, + "http": 4, + "//www.apache.org/licenses/LICENSE": 3, + "-": 98, + "Unless": 3, + "required": 3, + "by": 4, + "applicable": 3, + "law": 3, + "or": 6, + "agreed": 3, + "to": 10, + "writing": 3, + "software": 3, + "distributed": 6, + "is": 5, + "on": 4, + "an": 5, + "BASIS": 3, + "WITHOUT": 3, + "WARRANTIES": 3, + "OR": 3, + "CONDITIONS": 3, + "OF": 3, + "ANY": 3, + "KIND": 3, + "either": 3, + "express": 3, + "implied.": 3, + "See": 3, + "for": 5, + "specific": 3, + "language": 3, + "governing": 3, + "permissions": 3, + "and": 7, + "limitations": 3, + "File": 4, + "object.lfe": 1, + "Author": 3, + "Purpose": 3, + "Demonstrating": 2, + "simple": 4, + "OOP": 1, + "closures": 1, + "The": 4, + "object": 16, + "system": 1, + "demonstrated": 1, + "below": 3, + "shows": 2, + "how": 2, + "do": 2, + "following": 2, + "*": 6, + "create": 4, + "objects": 2, + "call": 2, + "methods": 5, + "those": 1, + "have": 3, + "which": 1, + "can": 1, + "other": 1, + "update": 1, + "state": 4, + "instance": 2, + "variable": 2, + "Note": 1, + "however": 1, + "that": 1, + "his": 1, + "example": 2, + "does": 1, + "demonstrate": 1, + "inheritance.": 1, + "To": 1, + "code": 2, + "LFE": 4, + "cd": 1, + "examples": 1, + "../bin/lfe": 1, + "pa": 1, + "../ebin": 1, + "Load": 1, + "fish": 6, + "class": 3, + "slurp": 2, + "#Fun": 1, + "": 1, + "Execute": 1, + "some": 2, + "basic": 1, + "get": 21, + "species": 7, + "mommy": 3, + "move": 4, + "Carp": 1, + "swam": 1, + "feet": 1, + "ok": 1, + "id": 9, + "Now": 1, + "let": 6, + "s": 19, + "strictly": 1, + "necessary.": 1, + "When": 1, + "isn": 1, + "list": 13, + "children": 10, + "formatted": 1, + "defun": 20, + "verb": 2, + "lambda": 18, + "self": 6, + "distance": 2, + "count": 7, + "erlang": 1, + "length": 1, + "method": 7, + "name": 8, + "funcall": 23, + "define": 1, + "info": 1, + "reproduce": 1, + "church.lfe": 1, + "church": 20, + "numerals": 1, + "from": 2, + "calculus": 1, + "was": 1, + "used": 1, + "section": 1, + "user": 1, + "guide": 1, + "here": 1, + "//lfe.github.io/user": 1, + "guide/recursion/5.html": 1, + "Here": 1, + "usage": 1, + "five/0": 2, + "int2": 1, + "defmodule": 2, + "export": 2, + "all": 1, + "zero": 2, + "x": 12, + "one": 1, + "two": 1, + "three": 1, + "four": 1, + "five": 1, + "int": 2, + "successor": 3, + "n": 4, + "+": 2, + "int1": 1, + "numeral": 8, + "#": 3, + "successor/1": 1, + "limit": 4, + "cond": 1, + "/": 1, + "integer": 2, + "Mode": 1, + "Code": 1, + "Paradigms": 1, + "Artificial": 1, + "Intelligence": 1, + "Programming": 1, + "Peter": 1, + "Norvig": 1, + "gps1.lisp": 1, + "First": 1, + "version": 1, + "GPS": 1, + "General": 1, + "Problem": 1, + "Solver": 1, + "Converted": 1, + "Robert": 3, + "Virding": 3, + "Define": 1, + "macros": 1, + "global": 2, + "access.": 1, + "This": 2, + "hack": 1, + "very": 1, + "naughty": 1, + "defsyntax": 2, + "defvar": 2, + "[": 3, + "val": 2, + "]": 3, + "v": 3, + "put": 1, + "getvar": 3, + "solved": 1, + "gps": 1, + "goals": 2, + "Set": 1, + "variables": 1, + "but": 1, + "existing": 1, + "*ops*": 1, + "*state*": 5, + "current": 1, + "conditions.": 1, + "if": 1, + "every": 1, + "fun": 1, + "achieve": 1, + "op": 8, + "action": 3, + "setvar": 2, + "set": 1, + "difference": 1, + "del": 5, + "union": 1, + "add": 3, + "drive": 1, + "son": 2, + "school": 2, + "preconds": 4, + "shop": 6, + "installs": 1, + "battery": 1, + "car": 1, + "works": 1, + "make": 2, + "communication": 2, + "telephone": 1, + "phone": 1, + "book": 1, + "give": 1, + "money": 3, + "has": 1, + "mnesia_demo.lfe": 1, + "A": 1, + "Mnesia": 2, + "demo": 2, + "LFE.": 1, + "contains": 1, + "using": 1, + "access": 1, + "tables.": 1, + "It": 1, + "emp": 1, + "XXXX": 1, + "macro": 1, + "ETS": 1, + "match": 5, + "pattern": 1, + "together": 1, + "mnesia": 8, + "match_object": 1, + "specifications": 1, + "select": 1, + "Query": 2, + "List": 2, + "Comprehensions.": 1, + "mnesia_demo": 1, + "new": 2, + "by_place": 1, + "by_place_ms": 1, + "by_place_qlc": 2, + "defrecord": 1, + "person": 8, + "place": 7, + "job": 3, + "Start": 1, + "table": 2, + "we": 1, + "will": 1, + "memory": 1, + "only": 1, + "schema.": 1, + "start": 1, + "create_table": 1, + "attributes": 1, + "Initialise": 1, + "table.": 1, + "people": 1, + "spec": 1, + "p": 2, + "j": 2, + "when": 1, + "tuple": 1, + "transaction": 2, + "f": 3, + "Use": 1, + "Comprehensions": 1, + "records": 1, + "q": 2, + "qlc": 2, + "lc": 1, + "<": 1, + "e": 1 + }, + "MTML": { + "<$mt:Var>": 15, + "name=": 19, + "value=": 9, + "": 1, + "op=": 8, + "setvar=": 9, + "": 1, + "<": 2, + "a": 1, + "href": 1, + "<$mt:CategoryLabel>": 1, + "remove_html=": 1, + "": 1, + "": 1, + "": 1, + "function=": 1, + "": 1, + "gt=": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 2, + "from=": 2, + "to=": 2, + "div": 1, + "class": 1, + "col_num": 1, + "": 2, + "": 1 + }, + "Slash": { + "<%>": 1, + "class": 11, + "Env": 1, + "def": 18, + "init": 4, + "memory": 3, + "ptr": 9, + "0": 3, + "ptr=": 1, + "current_value": 5, + "current_value=": 1, + "value": 1, + "AST": 4, + "Next": 1, + "eval": 10, + "env": 16, + "Prev": 1, + "Inc": 1, + "Dec": 1, + "Output": 1, + "print": 1, + "char": 5, + "Input": 1, + "Sequence": 2, + "nodes": 6, + "for": 2, + "node": 2, + "in": 2, + "Loop": 1, + "seq": 4, + "while": 1, + "Parser": 1, + "str": 2, + "chars": 2, + "split": 1, + "parse": 1, + "stack": 3, + "_parse_char": 2, + "if": 1, + "length": 1, + "1": 1, + "throw": 1, + "SyntaxError": 1, + "new": 2, + "unexpected": 2, + "end": 1, + "of": 1, + "input": 1, + "last": 1, + "switch": 1, + "<": 1, + "+": 1, + "-": 1, + ".": 1, + "[": 1, + "]": 1, + ")": 7, + ";": 6, + "}": 3, + "@stack.pop": 1, + "_add": 1, + "(": 6, + "Loop.new": 1, + "Sequence.new": 1, + "src": 2, + "File.read": 1, + "ARGV.first": 1, + "ast": 1, + "Parser.new": 1, + ".parse": 1, + "ast.eval": 1, + "Env.new": 1 + }, + "Awk": { + "SHEBANG#!awk": 1, + "BEGIN": 1, + "{": 17, + "n": 13, + ";": 55, + "printf": 1, + "network_max_bandwidth_in_byte": 3, + "network_max_packet_per_second": 3, + "last3": 3, + "last4": 3, + "last5": 3, + "last6": 3, + "}": 17, + "if": 14, + "(": 14, + "/Average/": 1, + ")": 14, + "#": 48, + "Skip": 1, + "the": 12, + "Average": 1, + "values": 1, + "next": 1, + "/all/": 1, + "This": 8, + "is": 7, + "cpu": 1, + "info": 7, + "print": 35, + "FILENAME": 35, + "-": 2, + "/eth0/": 1, + "eth0": 1, + "network": 1, + "Total": 9, + "number": 9, + "of": 22, + "packets": 4, + "received": 4, + "per": 14, + "second.": 8, + "else": 4, + "transmitted": 4, + "bytes": 4, + "/proc": 1, + "|": 4, + "cswch": 1, + "tps": 1, + "kbmemfree": 1, + "totsck/": 1, + "/": 2, + "[": 1, + "]": 1, + "proc/s": 1, + "context": 1, + "switches": 1, + "second": 6, + "disk": 1, + "total": 1, + "transfers": 1, + "read": 1, + "requests": 2, + "write": 1, + "block": 2, + "reads": 1, + "writes": 1, + "mem": 1, + "Amount": 7, + "free": 2, + "memory": 6, + "available": 1, + "in": 11, + "kilobytes.": 7, + "used": 8, + "does": 1, + "not": 1, + "take": 1, + "into": 1, + "account": 1, + "by": 4, + "kernel": 3, + "itself.": 1, + "Percentage": 2, + "memory.": 1, + "X": 1, + "shared": 1, + "system": 1, + "Always": 1, + "zero": 1, + "with": 1, + "kernels.": 1, + "as": 1, + "buffers": 1, + "to": 1, + "cache": 1, + "data": 1, + "swap": 3, + "space": 2, + "space.": 1, + "socket": 1, + "sockets.": 1, + "Number": 4, + "TCP": 1, + "sockets": 3, + "currently": 4, + "use.": 4, + "UDP": 1, + "RAW": 1, + "IP": 1, + "fragments": 1, + "END": 1 + }, + "Ioke": { + "SHEBANG#!ioke": 1, + "println": 1 + }, + "Org": { + "#": 13, + "+": 13, + "OPTIONS": 1, + "H": 1, + "num": 1, + "nil": 4, + "toc": 2, + "n": 1, + "@": 1, + "t": 10, + "|": 4, + "-": 30, + "f": 2, + "*": 3, + "TeX": 1, + "LaTeX": 1, + "skip": 1, + "d": 2, + "(": 11, + "HIDE": 1, + ")": 11, + "tags": 2, + "not": 1, + "in": 2, + "STARTUP": 1, + "align": 1, + "fold": 1, + "nodlcheck": 1, + "hidestars": 1, + "oddeven": 1, + "lognotestate": 1, + "SEQ_TODO": 1, + "TODO": 1, + "INPROGRESS": 1, + "i": 1, + "WAITING": 1, + "w@": 1, + "DONE": 1, + "CANCELED": 1, + "c@": 1, + "TAGS": 1, + "Write": 1, + "w": 1, + "Update": 1, + "u": 1, + "Fix": 1, + "Check": 1, + "c": 1, + "TITLE": 1, + "org": 10, + "ruby": 6, + "AUTHOR": 1, + "Brian": 1, + "Dewey": 1, + "EMAIL": 1, + "bdewey@gmail.com": 1, + "LANGUAGE": 1, + "en": 1, + "PRIORITIES": 1, + "A": 1, + "C": 1, + "B": 1, + "CATEGORY": 1, + "worg": 1, + "{": 1, + "Back": 1, + "to": 8, + "Worg": 1, + "rubygems": 2, + "ve": 1, + "already": 1, + "created": 1, + "a": 4, + "site.": 1, + "Make": 1, + "sure": 1, + "you": 2, + "have": 1, + "installed": 1, + "sudo": 1, + "gem": 1, + "install": 1, + ".": 1, + "You": 1, + "need": 1, + "register": 1, + "new": 2, + "Webby": 3, + "filter": 3, + "handle": 1, + "mode": 2, + "content.": 2, + "makes": 1, + "this": 2, + "easy.": 1, + "In": 1, + "the": 6, + "lib/": 1, + "folder": 1, + "of": 2, + "your": 2, + "site": 1, + "create": 1, + "file": 1, + "orgmode.rb": 1, + "BEGIN_EXAMPLE": 2, + "require": 1, + "Filters.register": 1, + "do": 2, + "input": 3, + "Orgmode": 2, + "Parser.new": 1, + ".to_html": 1, + "end": 1, + "END_EXAMPLE": 1, + "This": 2, + "code": 1, + "creates": 1, + "that": 1, + "will": 1, + "use": 1, + "parser": 1, + "translate": 1, + "into": 1, + "HTML.": 1, + "Create": 1, + "For": 1, + "example": 1, + "title": 2, + "Parser": 1, + "created_at": 1, + "status": 2, + "Under": 1, + "development": 1, + "erb": 1, + "orgmode": 3, + "<%=>": 2, + "page": 2, + "Status": 1, + "Description": 1, + "Helpful": 1, + "Ruby": 1, + "routines": 1, + "for": 3, + "parsing": 1, + "files.": 1, + "The": 3, + "most": 1, + "significant": 1, + "thing": 2, + "library": 1, + "does": 1, + "today": 1, + "is": 5, + "convert": 1, + "files": 1, + "textile.": 1, + "Currently": 1, + "cannot": 1, + "much": 1, + "customize": 1, + "conversion.": 1, + "supplied": 1, + "textile": 1, + "conversion": 1, + "optimized": 1, + "extracting": 1, + "from": 1, + "orgfile": 1, + "as": 1, + "opposed": 1, + "History": 1, + "**": 1, + "Version": 1, + "first": 1, + "output": 2, + "HTML": 2, + "gets": 1, + "class": 1, + "now": 1, + "indented": 1, + "Proper": 1, + "support": 1, + "multi": 1, + "paragraph": 2, + "list": 1, + "items.": 1, + "See": 1, + "part": 1, + "last": 1, + "bullet.": 1, + "Fixed": 1, + "bugs": 1, + "wouldn": 1, + "s": 1, + "all": 1, + "there": 1, + "it": 1 + }, + "Perl6": { + "role": 10, + "q": 5, + "{": 29, + "token": 6, + "stopper": 2, + "MAIN": 1, + "quote": 1, + ")": 19, + "}": 27, + "backslash": 3, + "sym": 3, + "<\\\\>": 1, + "": 1, + "": 1, + "": 1, + "": 1, + ".": 1, + "method": 2, + "tweak_q": 1, + "(": 16, + "v": 2, + "self.panic": 2, + "tweak_qq": 1, + "qq": 5, + "does": 7, + "b1": 1, + "c1": 1, + "s1": 1, + "a1": 1, + "h1": 1, + "f1": 1, + "Too": 2, + "late": 2, + "for": 2, + "pod_formatting_code": 1, + "": 1, + "<[A..Z]>": 1, + "*POD_IN_FORMATTINGCODE": 1, + "": 1, + "[": 1, + "": 1, + "#": 13, + "N*": 1, + "SHEBANG#!perl": 1, + "use": 1, + "v6": 1, + ";": 19, + "my": 10, + "string": 7, + "if": 1, + "eq": 1, + "say": 10, + "regex": 2, + "http": 1, + "-": 3, + "verb": 1, + "|": 9, + "multi": 2, + "line": 5, + "comment": 2, + "I": 1, + "there": 1, + "m": 2, + "even": 1, + "specialer": 1, + "nesting": 1, + "work": 1, + "<": 3, + "trying": 1, + "mixed": 1, + "delimiters": 1, + "": 1, + "arbitrary": 2, + "delimiter": 2, + "Hooray": 1, + "": 1, + "with": 9, + "whitespace": 1, + "<<": 1, + "more": 1, + "strings": 1, + "%": 1, + "hash": 1, + "Hash.new": 1, + "begin": 1, + "pod": 1, + "Here": 1, + "t": 2, + "highlighted": 1, + "table": 1, + "Of": 1, + "things": 1, + "A": 3, + "single": 3, + "declarator": 7, + "a": 8, + "keyword": 7, + "like": 7, + "Another": 2, + "block": 2, + "brace": 1, + "More": 2, + "blocks": 2, + "don": 2, + "x": 2, + "foo": 3, + "Rob": 1, + "food": 1, + "match": 1, + "sub": 1, + "something": 1, + "Str": 1, + "D": 1, + "value": 1, + "...": 1, + "s": 1, + "some": 2, + "stuff": 1, + "chars": 1, + "/": 1, + "": 1, + "": 1, + "roleq": 1 + }, + "Smalltalk": { + "Koan": 1, + "subclass": 2, + "TestBasic": 1, + "[": 18, + "": 1, + "A": 1, + "collection": 1, + "of": 1, + "introductory": 1, + "tests": 2, + "testDeclarationAndAssignment": 1, + "|": 18, + "declaration": 2, + "anotherDeclaration": 2, + "_": 1, + ".": 16, + "self": 25, + "expect": 10, + "fillMeIn": 10, + "toEqual": 10, + "declaration.": 1, + "anotherDeclaration.": 1, + "]": 18, + "testEqualSignIsNotAnAssignmentOperator": 1, + "variableA": 6, + "variableB": 5, + "value": 2, + "variableB.": 2, + "(": 19, + ")": 19, + "testMultipleStatementsInASingleLine": 1, + "variableC": 2, + "variableA.": 1, + "variableC.": 1, + "testInequality": 1, + "testLogicalOr": 1, + "expression": 4, + "<": 2, + "expression.": 2, + "testLogicalAnd": 1, + "&": 1, + "testNot": 1, + "true": 2, + "not.": 1, + "Object": 1, + "#Philosophers": 1, + "instanceVariableNames": 1, + "classVariableNames": 1, + "poolDictionaries": 1, + "category": 1, + "Philosophers": 3, + "class": 1, + "methodsFor": 2, + "new": 4, + "shouldNotImplement": 1, + "quantity": 2, + "super": 1, + "initialize": 3, + "dine": 4, + "seconds": 2, + "Delay": 3, + "forSeconds": 1, + "wait.": 5, + "philosophers": 2, + "do": 1, + "each": 5, + "terminate": 1, + "size": 4, + "leftFork": 6, + "n": 11, + "forks": 5, + "at": 3, + "rightFork": 6, + "ifTrue": 1, + "ifFalse": 1, + "+": 1, + "eating": 3, + "Semaphore": 2, + "new.": 2, + "-": 1, + "timesRepeat": 1, + "signal": 1, + "randy": 3, + "Random": 1, + "to": 2, + "collect": 2, + "forMutualExclusion": 1, + "philosopher": 2, + "philosopherCode": 3, + "status": 8, + "n.": 2, + "printString": 1, + "whileTrue": 1, + "Transcript": 5, + "nextPutAll": 5, + ";": 8, + "nl.": 5, + "forMilliseconds": 2, + "next": 2, + "*": 2, + "critical": 1, + "signal.": 2, + "newProcess": 1, + "priority": 1, + "Processor": 1, + "userBackgroundPriority": 1, + "name": 1, + "resume": 1, + "yourself": 1, + "testSimpleChainMatches": 1, + "e": 11, + "eCtrl": 3, + "eventKey": 3, + "e.": 1, + "ctrl": 5, + "true.": 1, + "assert": 2, + "matches": 4, + "{": 4, + "}": 4, + "eCtrl.": 2, + "deny": 2, + "a": 1 }, "XML": { "": 11, "version=": 17, "encoding=": 7, "": 7, - "ToolsVersion=": 6, "DefaultTargets=": 5, + "ToolsVersion=": 6, "xmlns=": 8, - "": 21, - "Project=": 12, - "Condition=": 37, - "": 26, + "": 26, + "Label=": 11, + "": 2, + "Include=": 78, "": 6, "Debug": 10, "": 6, "": 6, - "AnyCPU": 10, + "Win32": 2, "": 6, + "": 2, + "Release": 6, + "": 26, + "": 26, "": 5, "{": 6, - "D9BF15": 1, + "BF6EED48": 1, "-": 90, - "D10": 1, - "ABAD688E8B": 1, + "BF18": 1, + "C54": 1, + "F": 1, + "BBF19EEDC7C": 1, "}": 6, "": 5, - "": 4, - "Exe": 4, - "": 4, - "": 2, - "Properties": 3, - "": 2, - "": 5, - "csproj_sample": 1, - "": 5, - "": 4, - "csproj": 1, - "sample": 6, - "": 4, "": 5, "v4.5.1": 5, "": 5, - "": 3, - "": 3, - "": 3, - "true": 24, - "": 3, + "": 1, + "ManagedCProj": 1, + "": 1, + "": 5, + "vcxprojsample": 1, + "": 5, "": 25, - "": 6, - "": 6, - "": 5, - "": 5, - "": 6, - "full": 4, - "": 6, - "": 7, + "": 21, + "Project=": 12, + "Condition=": 37, + "": 2, + "Application": 2, + "": 2, + "": 2, + "true": 24, + "": 2, + "": 2, + "v120": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "Unicode": 2, + "": 2, "false": 11, - "": 7, - "": 8, - "bin": 11, - "": 8, - "": 6, - "DEBUG": 3, - ";": 52, - "TRACE": 6, - "": 6, - "": 4, - "prompt": 4, - "": 4, + "": 4, + "": 4, + "": 2, + "": 2, + "": 2, + "": 8, "": 8, + "Level3": 2, "": 8, - "pdbonly": 3, - "Release": 6, - "": 26, - "": 30, - "Include=": 78, - "": 26, - "": 10, - "": 5, - "": 7, - "": 2, - "": 2, - "cfa7a11": 1, - "a5cd": 1, - "bd7b": 1, - "b210d4d51a29": 1, - "fsproj_sample": 2, - "": 1, - "": 1, - "": 3, - "fsproj": 1, - "": 3, - "": 2, - "": 2, - "": 5, - "fsproj_sample.XML": 2, - "": 5, - "": 2, - "": 2, - "": 2, - "True": 13, - "": 2, - "": 5, - "": 1, - "": 1, - "": 1, - "": 1, - "": 2, + "": 1, + "Disabled": 1, + "": 1, + "": 2, + "WIN32": 2, + ";": 52, + "_DEBUG": 1, + "%": 2, "(": 65, - "MSBuildExtensionsPath32": 2, + "PreprocessorDefinitions": 2, ")": 58, - "..": 1, - "Microsoft": 2, - "SDKs": 1, - "F#": 1, - "Framework": 1, - "v4.0": 1, - "Microsoft.FSharp.Targets": 2, - "": 2, - "": 1, - "": 1, - "VisualStudio": 1, - "v": 1, - "VisualStudioVersion": 1, - "FSharp": 1, - "": 1, - "": 1, - "": 1, - "name=": 227, - "xmlns": 2, - "ea=": 2, - "": 4, - "This": 21, - "easyant": 3, - "module.ant": 1, - "file": 3, - "is": 123, - "optionnal": 1, - "and": 44, - "designed": 1, - "to": 164, - "customize": 1, - "your": 8, - "build": 1, - "with": 23, - "own": 2, - "specific": 8, - "target.": 1, - "": 4, - "": 2, - "": 2, - "my": 2, - "awesome": 1, - "additionnal": 1, - "target": 6, - "": 2, - "": 2, - "extensionOf=": 1, - "i": 2, - "would": 2, - "love": 1, - "could": 1, - "easily": 1, - "plug": 1, - "pre": 1, - "compile": 1, - "step": 1, - "": 1, - "": 1, - "": 1, - "organisation=": 3, - "module=": 3, - "revision=": 3, - "status=": 1, - "this": 77, - "a": 128, - "module.ivy": 1, - "for": 60, - "java": 1, - "standard": 1, - "application": 2, - "": 1, - "": 1, - "value=": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 2, - "visibility=": 2, - "description=": 2, - "": 1, - "": 1, - "": 4, - "org=": 1, - "rev=": 1, - "conf=": 1, - "default": 9, - "junit": 2, - "test": 7, - "/": 6, - "": 1, - "": 1, + "": 2, + "": 4, + "Use": 15, + "": 4, + "": 6, + "": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "Console": 3, + "": 2, + "": 2, + "": 2, + "NDEBUG": 1, + "": 30, + "": 2, + "": 4, + "": 2, + "Create": 2, + "": 2, + "": 7, "": 1, "": 1, "": 2, @@ -67840,8 +64455,11 @@ "": 1, "": 1, "": 120, + "name=": 227, "": 121, "IObservedChange": 5, + "is": 123, + "a": 128, "generic": 3, "interface": 4, "that": 94, @@ -67852,13 +64470,16 @@ "Note": 7, "it": 16, "used": 19, + "for": 60, "both": 2, "Changing": 5, "i.e.": 23, + "and": 44, "Changed": 4, "Observables.": 2, "In": 6, "future": 2, + "this": 77, "will": 65, "be": 57, "Covariant": 1, @@ -67867,6 +64488,7 @@ "simpler": 1, "casting": 1, "between": 15, + "specific": 8, "changes.": 2, "": 122, "": 120, @@ -67885,6 +64507,7 @@ "changed.": 9, "IMPORTANT": 1, "NOTE": 1, + "This": 21, "often": 3, "not": 9, "set": 41, @@ -67918,6 +64541,7 @@ "IEnableLogger": 1, "dummy": 1, "attaching": 1, + "to": 164, "any": 11, "class": 11, "give": 1, @@ -68030,6 +64654,7 @@ "other": 9, "objects": 4, "communicate": 2, + "with": 23, "each": 7, "loosely": 2, "coupled": 2, @@ -68073,6 +64698,7 @@ "particular": 2, "registered.": 2, "message.": 1, + "True": 13, "posted": 3, "Type.": 2, "Registers": 3, @@ -68148,6 +64774,7 @@ "evicted": 2, "because": 2, "Invalidate": 2, + "full": 4, "Evaluates": 1, "returning": 1, "cached": 2, @@ -68213,6 +64840,7 @@ "normally": 6, "Dispatcher": 3, "based": 9, + "default": 9, "last": 1, "Exception": 1, "steps": 1, @@ -68232,6 +64860,7 @@ "initialized": 2, "backing": 9, "field": 10, + "your": 8, "ReactiveObject": 11, "ObservableAsyncMRUCache": 2, "memoization": 2, @@ -68296,9 +64925,11 @@ "server.": 2, "clean": 1, "up": 25, + "/": 6, "manage": 1, "disk": 1, "download": 1, + "file": 3, "save": 2, "temporary": 1, "folder": 1, @@ -68344,6 +64975,7 @@ "hundreds": 2, "requests.": 2, "similar": 3, + "would": 2, "passed": 1, "SelectMany.": 1, "similarly": 1, @@ -68379,6 +65011,7 @@ "This.GetValue": 1, "observed": 1, "onto": 1, + "target": 6, "convert": 2, "stream.": 3, "ValueIfNotDefault": 1, @@ -68454,7 +65087,6 @@ "private": 1, "field.": 1, "Reference": 1, - "Use": 15, "custom": 4, "raiseAndSetIfChanged": 1, "doesn": 1, @@ -68462,6 +65094,7 @@ "x.SomeProperty": 1, "suffice.": 1, "RaisePropertyChanging": 2, + "test": 7, "mock": 4, "scenarios": 4, "manually": 4, @@ -68484,6 +65117,7 @@ "attempts": 1, "determine": 1, "heuristically": 1, + "application": 2, "unit": 3, "framework.": 1, "we": 1, @@ -68530,142 +65164,81 @@ "setup.": 12, "": 1, "": 1, - "": 1, - "": 1, - "c67af951": 1, - "d8d6376993e7": 1, - "nproj_sample": 2, - "": 1, - "": 1, - "": 1, - "Net": 1, - "": 1, - "": 1, - "ProgramFiles": 1, - "Nemerle": 3, - "": 1, - "": 1, - "NemerleBinPathRoot": 1, - "NemerleVersion": 1, - "": 1, - "nproj": 1, - "OutputPath": 1, - "AssemblyName": 1, - ".xml": 1, - "": 3, - "": 3, - "": 1, - "False": 1, - "": 1, - "": 2, - "Nemerle.dll": 1, - "": 2, - "": 1, - "Nemerle.Linq.dll": 1, - "": 1, - "": 1, - "": 1, - "TS": 1, - "": 1, - "language=": 1, - "": 1, - "MainWindow": 1, - "": 8, - "": 8, - "filename=": 8, - "line=": 8, - "": 8, - "United": 1, - "Kingdom": 1, - "": 8, - "": 8, - "Reino": 1, - "Unido": 1, - "": 8, - "": 8, - "God": 1, - "Queen": 1, - "Deus": 1, - "salve": 1, - "Rainha": 1, - "England": 1, - "Inglaterra": 1, - "Wales": 1, - "Gales": 1, - "Scotland": 1, - "Esc": 1, - "cia": 1, - "Northern": 1, - "Ireland": 1, - "Irlanda": 1, - "Norte": 1, - "Portuguese": 1, - "Portugu": 1, - "English": 1, - "Ingl": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "Sample": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "Hugh": 2, - "Bot": 2, - "": 1, - "": 1, - "": 1, - "package": 1, - "nuget": 1, - "just": 1, - "works": 1, - "": 1, - "http": 2, - "//hubot.github.com": 1, - "": 1, - "": 1, - "": 1, - "https": 1, - "//github.com/github/hubot/LICENSEmd": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "src=": 1, - "target=": 1, - "": 1, - "": 1, - "MyCommon": 1, - "": 1, - "Name=": 1, - "": 1, - "Text=": 1, - "": 1, + "": 1, + "xmlns": 2, + "ea=": 2, + "": 1, + "organisation=": 3, + "module=": 3, + "revision=": 3, + "status=": 1, + "": 4, + "easyant": 3, + "module.ivy": 1, + "sample": 6, + "java": 1, + "standard": 1, + "": 4, + "": 1, + "": 1, + "value=": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 2, + "visibility=": 2, + "description=": 2, + "": 1, + "": 1, + "": 4, + "org=": 1, + "rev=": 1, + "conf=": 1, + "junit": 2, + "": 1, + "": 1, + "AnyCPU": 10, "D377F": 1, "A798": 1, "B3FD04C": 1, + "": 4, + "Exe": 4, + "": 4, "": 1, "vbproj_sample.Module1": 1, "": 1, "vbproj_sample": 1, + "": 4, "vbproj": 3, + "": 4, + "": 3, + "": 3, "": 1, - "Console": 3, "": 1, + "": 3, + "": 3, + "": 6, + "": 6, + "": 5, + "": 5, + "": 6, + "": 6, "": 2, "": 2, "": 2, "": 2, + "": 8, + "bin": 11, + "": 8, + "": 5, "sample.xml": 2, + "": 5, "": 2, "": 2, + "pdbonly": 3, + "": 7, + "": 7, "": 1, "On": 2, "": 1, @@ -68677,6 +65250,7 @@ "": 1, "": 1, "": 1, + "": 10, "": 3, "": 3, "": 3, @@ -68703,71 +65277,13 @@ "Designer": 1, "": 1, "": 1, + "": 5, "MyApplicationCodeGenerator": 1, "Application.Designer.vb": 1, "": 2, "SettingsSingleFileGenerator": 1, "My": 1, "Settings.Designer.vb": 1, - "Label=": 11, - "": 2, - "Win32": 2, - "": 2, - "BF6EED48": 1, - "BF18": 1, - "C54": 1, - "F": 1, - "BBF19EEDC7C": 1, - "": 1, - "ManagedCProj": 1, - "": 1, - "vcxprojsample": 1, - "": 2, - "Application": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "v120": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "Unicode": 2, - "": 2, - "": 4, - "": 4, - "": 2, - "": 2, - "": 2, - "": 8, - "Level3": 2, - "": 1, - "Disabled": 1, - "": 1, - "": 2, - "WIN32": 2, - "_DEBUG": 1, - "%": 2, - "PreprocessorDefinitions": 2, - "": 2, - "": 4, - "": 4, - "": 6, - "": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "NDEBUG": 1, - "": 2, - "": 4, - "": 2, - "Create": 2, - "": 2, "": 10, "": 3, "FC737F1": 1, @@ -68832,6 +65348,57 @@ "": 1, "Source": 3, "": 1, + "": 1, + "": 1, + "": 2, + "": 2, + "c67af951": 1, + "d8d6376993e7": 1, + "": 2, + "Properties": 3, + "": 2, + "nproj_sample": 2, + "": 1, + "": 1, + "": 1, + "Net": 1, + "": 1, + "": 1, + "ProgramFiles": 1, + "Nemerle": 3, + "": 1, + "": 1, + "NemerleBinPathRoot": 1, + "NemerleVersion": 1, + "": 1, + "": 3, + "nproj": 1, + "": 3, + "": 6, + "DEBUG": 3, + "TRACE": 6, + "": 6, + "": 4, + "prompt": 4, + "": 4, + "OutputPath": 1, + "AssemblyName": 1, + ".xml": 1, + "": 3, + "": 3, + "": 5, + "": 1, + "False": 1, + "": 1, + "": 2, + "Nemerle.dll": 1, + "": 2, + "": 2, + "": 2, + "": 1, + "Nemerle.Linq.dll": 1, + "": 1, + "": 1, "": 1, "compatVersion=": 1, "": 1, @@ -68854,1155 +65421,5495 @@ "loader/saver": 1, "FreeMedForms.": 1, "": 1, + "http": 2, "//www.freemedforms.com/": 1, "": 1, "": 1, "": 1, - "": 1 - }, - "Xojo": { - "#tag": 88, - "Class": 3, - "Protected": 1, - "App": 1, - "Inherits": 1, - "Application": 1, - "Constant": 3, - "Name": 31, - "kEditClear": 1, - "Type": 34, - "String": 3, - "Dynamic": 3, - "False": 14, - "Default": 9, - "Scope": 4, - "Public": 3, - "#Tag": 5, - "Instance": 5, - "Platform": 5, - "Windows": 2, - "Language": 5, - "Definition": 5, - "Linux": 2, - "EndConstant": 3, - "kFileQuit": 1, - "kFileQuitShortcut": 1, - "Mac": 1, - "OS": 1, - "ViewBehavior": 2, - "EndViewBehavior": 2, - "End": 27, - "EndClass": 1, - "Report": 2, - "Begin": 23, - "BillingReport": 1, - "Compatibility": 2, - "Units": 1, - "Width": 3, - "PageHeader": 1, - "Height": 5, - "Body": 1, - "PageFooter": 1, - "EndReport": 1, - "ReportCode": 1, - "EndReportCode": 1, - "Dim": 3, - "dbFile": 3, - "As": 4, - "FolderItem": 1, - "db": 1, - "New": 1, - "SQLiteDatabase": 1, - "GetFolderItem": 1, - "(": 7, - ")": 7, - "db.DatabaseFile": 1, - "If": 4, - "db.Connect": 1, - "Then": 1, - "db.SQLExecute": 2, - "_": 1, - "+": 5, - "db.Error": 1, - "then": 1, - "MsgBox": 3, - "db.ErrorMessage": 2, - "db.Rollback": 1, - "Else": 2, - "db.Commit": 1, - "Menu": 2, - "MainMenuBar": 1, - "MenuItem": 11, - "FileMenu": 1, - "SpecialMenu": 13, - "Text": 13, - "Index": 14, - "-": 14, - "AutoEnable": 13, - "True": 46, - "Visible": 41, - "QuitMenuItem": 1, - "FileQuit": 1, - "ShortcutKey": 6, - "Shortcut": 6, - "EditMenu": 1, - "EditUndo": 1, - "MenuModifier": 5, - "EditSeparator1": 1, - "EditCut": 1, - "EditCopy": 1, - "EditPaste": 1, - "EditClear": 1, - "EditSeparator2": 1, - "EditSelectAll": 1, - "UntitledSeparator": 1, - "AppleMenuItem": 1, - "AboutItem": 1, - "EndMenu": 1, - "Toolbar": 2, - "MyToolbar": 1, - "ToolButton": 2, - "FirstItem": 1, - "Caption": 3, - "HelpTag": 3, - "Style": 2, - "SecondItem": 1, - "EndToolbar": 1, - "Window": 2, - "Window1": 1, - "BackColor": 1, - "&": 1, - "cFFFFFF00": 1, - "Backdrop": 1, - "CloseButton": 1, - "Composite": 1, - "Frame": 1, - "FullScreen": 1, - "FullScreenButton": 1, - "HasBackColor": 1, - "ImplicitInstance": 1, - "LiveResize": 1, - "MacProcID": 1, - "MaxHeight": 1, - "MaximizeButton": 1, - "MaxWidth": 1, - "MenuBar": 1, - "MenuBarVisible": 1, - "MinHeight": 1, - "MinimizeButton": 1, - "MinWidth": 1, - "Placement": 1, - "Resizeable": 1, - "Title": 1, - "PushButton": 1, - "HelloWorldButton": 2, - "AutoDeactivate": 1, - "Bold": 1, - "ButtonStyle": 1, - "Cancel": 1, - "Enabled": 1, - "InitialParent": 1, - "Italic": 1, - "Left": 1, - "LockBottom": 1, - "LockedInPosition": 1, - "LockLeft": 1, - "LockRight": 1, - "LockTop": 1, - "TabIndex": 1, - "TabPanelIndex": 1, - "TabStop": 1, - "TextFont": 1, - "TextSize": 1, - "TextUnit": 1, - "Top": 1, - "Underline": 1, - "EndWindow": 1, - "WindowCode": 1, - "EndWindowCode": 1, - "Events": 1, - "Event": 1, - "Sub": 2, - "Action": 1, - "total": 4, - "Integer": 2, - "For": 1, + "": 1, + "": 1, + "module.ant": 1, + "optionnal": 1, + "designed": 1, + "customize": 1, + "build": 1, + "own": 2, + "target.": 1, + "": 2, + "": 2, + "my": 2, + "awesome": 1, + "additionnal": 1, + "": 2, + "": 2, + "extensionOf=": 1, "i": 2, - "To": 1, - "Next": 1, - "Str": 1, - "EndEvent": 1, - "EndEvents": 1, - "ViewProperty": 28, - "true": 26, - "Group": 28, - "InitialValue": 23, - "EndViewProperty": 28, - "EditorType": 14, - "EnumValues": 2, - "EndEnumValues": 2 - }, - "XProc": { - "": 1, - "version=": 2, - "encoding=": 1, - "": 1, - "xmlns": 2, - "p=": 1, - "c=": 1, - "": 1, - "port=": 2, - "": 1, - "": 1, - "Hello": 1, - "world": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1 - }, - "XQuery": { - "(": 38, - "-": 486, - "xproc.xqm": 1, - "core": 1, - "xqm": 1, - "contains": 1, - "entry": 2, - "points": 1, - "primary": 1, - "eval": 3, - "step": 5, - "function": 3, - "and": 3, - "control": 1, - "functions.": 1, - ")": 38, - "xquery": 1, - "version": 1, - "encoding": 1, - ";": 25, - "module": 6, - "namespace": 8, - "xproc": 17, - "declare": 24, - "namespaces": 5, - "p": 2, - "c": 1, - "err": 1, - "imports": 1, - "import": 4, - "util": 1, - "at": 4, - "const": 1, - "parse": 8, - "u": 2, - "options": 2, - "boundary": 1, - "space": 1, - "preserve": 1, - "option": 1, - "saxon": 1, - "output": 1, - "functions": 1, - "variable": 13, - "run": 2, - "run#6": 1, - "choose": 1, - "try": 1, - "catch": 1, - "group": 1, - "for": 1, - "each": 1, - "viewport": 1, - "library": 1, - "pipeline": 8, - "list": 1, - "all": 1, - "declared": 1, - "enum": 3, - "{": 5, - "": 1, - "name=": 1, - "ns": 1, - "": 1, - "}": 5, - "": 1, - "": 1, - "point": 1, - "stdin": 1, - "dflag": 1, - "tflag": 1, - "bindings": 2, - "STEP": 3, - "I": 1, - "preprocess": 1, - "let": 6, - "validate": 1, - "explicit": 3, - "AST": 2, - "name": 1, - "type": 1, - "ast": 1, - "element": 1, - "parse/@*": 1, - "sort": 1, - "parse/*": 1, - "II": 1, - "eval_result": 1, - "III": 1, - "serialize": 1, - "return": 2, - "results": 1, - "serialized_result": 2 - }, - "XSLT": { - "": 1, - "version=": 2, - "": 1, - "xmlns": 1, - "xsl=": 1, - "": 1, - "match=": 1, - "": 1, - "": 1, - "

": 1, - "My": 1, - "CD": 1, - "Collection": 1, - "

": 1, - "": 1, - "border=": 1, - "": 2, - "bgcolor=": 1, - "": 2, - "Artist": 1, - "": 2, - "": 1, - "select=": 3, - "": 2, - "": 1, - "
": 2, - "Title": 1, - "
": 2, - "": 2, - "
": 1, - "": 1, - "": 1, - "
": 1, - "
": 1 - }, - "Xtend": { - "package": 2, - "example2": 1, - "import": 7, - "org.junit.Test": 2, - "static": 4, - "org.junit.Assert.*": 2, - "class": 4, - "BasicExpressions": 2, - "{": 14, - "@Test": 7, - "def": 7, - "void": 7, - "literals": 5, - "(": 42, - ")": 42, - "//": 11, - "string": 1, - "work": 1, - "with": 2, - "single": 1, - "or": 1, - "double": 2, - "quotes": 1, - "assertEquals": 14, - "number": 1, - "big": 1, - "decimals": 1, - "in": 2, - "this": 1, - "case": 1, - "+": 6, - "*": 1, - "bd": 3, - "boolean": 1, - "true": 1, - "false": 1, - "getClass": 1, - "typeof": 1, - "}": 13, - "collections": 2, - "There": 1, - "are": 1, - "various": 1, - "methods": 2, - "to": 1, - "create": 1, - "and": 1, - "numerous": 1, - "extension": 2, - "which": 1, - "make": 1, - "working": 1, - "them": 1, - "convenient.": 1, - "val": 9, - "list": 1, - "newArrayList": 2, - "list.map": 1, - "[": 9, - "toUpperCase": 1, - "]": 9, - ".head": 1, - "set": 1, - "newHashSet": 1, - "set.filter": 1, - "it": 2, - ".size": 2, - "map": 1, - "newHashMap": 1, - "-": 5, - "map.get": 1, - "controlStructures": 1, - "looks": 1, - "like": 1, - "Java": 1, - "if": 1, - ".length": 1, - "but": 1, - "foo": 1, - "bar": 1, - "Never": 2, - "happens": 3, - "text": 2, - "never": 1, - "s": 1, - "cascades.": 1, - "Object": 1, - "someValue": 2, - "switch": 1, - "Number": 1, - "String": 2, - "loops": 1, - "for": 2, - "loop": 2, - "var": 1, - "counter": 8, - "i": 4, + "love": 1, + "could": 1, + "easily": 1, + "plug": 1, + "pre": 1, + "compile": 1, + "step": 1, + "
": 1, + "D9BF15": 1, + "D10": 1, + "ABAD688E8B": 1, + "csproj_sample": 1, + "csproj": 1, + "": 1, + "": 1, + "": 1, + "Sample": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "Hugh": 2, + "Bot": 2, + "": 1, + "": 1, + "": 1, + "package": 1, + "nuget": 1, + "just": 1, + "works": 1, + "": 1, + "//hubot.github.com": 1, + "": 1, + "": 1, + "": 1, + "https": 1, + "//github.com/github/hubot/LICENSEmd": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "src=": 1, + "target=": 1, + "": 1, + "": 1, + "MyCommon": 1, + "": 1, + "Name=": 1, + "": 1, + "Text=": 1, + "": 1, + "cfa7a11": 1, + "a5cd": 1, + "bd7b": 1, + "b210d4d51a29": 1, + "fsproj_sample": 2, + "": 1, + "": 1, + "fsproj": 1, + "": 2, + "": 2, + "fsproj_sample.XML": 2, + "": 2, + "": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "": 2, + "MSBuildExtensionsPath32": 2, "..": 1, - "while": 2, - "iterator": 1, - ".iterator": 2, - "iterator.hasNext": 1, - "iterator.next": 1, - "example6": 1, - "java.io.FileReader": 1, - "java.util.Set": 1, - "com.google.common.io.CharStreams.*": 1, - "Movies": 1, - "numberOfActionMovies": 1, - "movies.filter": 2, - "categories.contains": 1, - "yearOfBestMovieFrom80ies": 1, - ".contains": 1, - "year": 2, - ".sortBy": 1, - "rating": 3, - ".last.year": 1, - "sumOfVotesOfTop2": 1, - "long": 2, - "movies": 3, - "movies.sortBy": 1, - ".take": 1, - ".map": 1, - "numberOfVotes": 2, - ".reduce": 1, - "a": 2, - "b": 2, - "|": 2, - "_229": 1, - "new": 2, - "FileReader": 1, - ".readLines.map": 1, - "line": 1, - "segments": 1, - "line.split": 1, - "return": 1, - "Movie": 2, - "segments.next": 4, - "Integer": 1, - "parseInt": 1, - "Double": 1, - "parseDouble": 1, - "Long": 1, - "parseLong": 1, - "segments.toSet": 1, - "@Data": 1, - "title": 1, - "int": 1, - "Set": 1, - "": 1, - "categories": 1 + "Microsoft": 2, + "SDKs": 1, + "F#": 1, + "Framework": 1, + "v4.0": 1, + "Microsoft.FSharp.Targets": 2, + "": 2, + "": 1, + "": 1, + "VisualStudio": 1, + "v": 1, + "VisualStudioVersion": 1, + "FSharp": 1, + "": 1, + "": 1, + "": 1, + "TS": 1, + "": 1, + "language=": 1, + "": 1, + "MainWindow": 1, + "": 8, + "": 8, + "filename=": 8, + "line=": 8, + "": 8, + "United": 1, + "Kingdom": 1, + "": 8, + "": 8, + "Reino": 1, + "Unido": 1, + "": 8, + "": 8, + "God": 1, + "Queen": 1, + "Deus": 1, + "salve": 1, + "Rainha": 1, + "England": 1, + "Inglaterra": 1, + "Wales": 1, + "Gales": 1, + "Scotland": 1, + "Esc": 1, + "cia": 1, + "Northern": 1, + "Ireland": 1, + "Irlanda": 1, + "Norte": 1, + "Portuguese": 1, + "Portugu": 1, + "English": 1, + "Ingl": 1, + "": 1, + "": 1 }, - "YAML": { - "gem": 1, - "-": 25, - "local": 1, - "gen": 1, - "rdoc": 2, - "run": 1, - "tests": 1, - "inline": 1, - "source": 1, - "line": 1, - "numbers": 1, - "gempath": 1, - "/usr/local/rubygems": 1, - "/home/gavin/.rubygems": 1, - "http_interactions": 1, + "Alloy": { + "module": 3, + "examples/systems/marksweepgc": 1, + "sig": 20, + "Node": 10, + "{": 54, + "}": 60, + "HeapState": 5, + "left": 3, + "right": 1, + "-": 41, + "lone": 6, + "marked": 1, + "set": 10, + "freeList": 1, + "pred": 16, + "clearMarks": 1, + "[": 82, + "hs": 16, + ".marked": 3, + ".right": 4, + "hs.right": 3, + "fun": 1, + "reachable": 1, + "n": 5, + "]": 80, + "+": 14, + "n.": 1, + "(": 12, + "hs.left": 2, + ")": 9, + "mark": 1, + "from": 2, + "hs.reachable": 1, + "setFreeList": 1, + ".freeList.*": 3, + ".left": 5, + "hs.marked": 1, + "GC": 1, + "root": 5, + "assert": 3, + "Soundness1": 2, + "all": 16, + "h": 9, + "live": 3, + "h.reachable": 1, + "|": 19, + "h.right": 1, + "Soundness2": 2, + "no": 8, + ".reachable": 2, + "h.GC": 1, + "in": 19, + ".freeList": 1, + "check": 6, + "for": 7, + "expect": 6, + "Completeness": 1, + "examples/systems/views": 1, + "open": 2, + "util/ordering": 1, + "State": 16, + "as": 2, + "so": 1, + "util/relation": 1, + "rel": 1, + "Ref": 19, + "Object": 10, + "t": 16, + "b": 13, + "v": 25, + "views": 2, + "when": 1, + "is": 1, + "view": 2, + "of": 3, + "type": 1, + "backing": 1, + "dirty": 3, + "contains": 1, + "refs": 7, + "that": 1, + "have": 1, + "been": 1, + "invalidated": 1, + "obj": 1, + "one": 8, + "ViewType": 8, + "anyviews": 2, + "visualization": 1, + "ViewType.views": 1, + "Map": 2, + "extends": 10, + "keys": 3, + "map": 2, + "s": 6, + "Ref.map": 1, + "s.refs": 3, + "MapRef": 4, + "fact": 4, + "State.obj": 3, + "Iterator": 2, + "done": 3, + "lastRef": 2, + "IteratorRef": 5, + "Set": 2, + "elts": 2, + "SetRef": 5, + "abstract": 2, + "KeySetView": 6, + "State.views": 1, + "IteratorView": 3, + "s.views": 2, + "handle": 1, + "possibility": 1, + "modifying": 1, + "an": 1, + "object": 1, + "and": 1, + "its": 1, + "at": 1, + "once": 1, + "*": 1, + "should": 1, + "we": 1, + "limit": 1, + "frame": 1, + "conds": 1, + "to": 1, + "non": 1, + "*/": 1, + "modifies": 5, + "pre": 15, + "post": 14, + "rs": 4, + "let": 5, + "vr": 1, + "pre.views": 8, + "mods": 3, + "rs.*vr": 1, + "r": 3, + "pre.refs": 6, + "pre.obj": 10, + "post.obj": 7, + "viewFrame": 4, + "post.dirty": 1, + "pre.dirty": 1, + "some": 3, + "&&": 2, + "allocates": 5, + "&": 3, + "post.refs": 1, + ".map": 3, + ".elts": 3, + "dom": 1, + "<:>": 1, + "setRefs": 1, + "this": 14, + "MapRef.put": 1, + "k": 5, + "none": 4, + "post.views": 4, + "SetRef.iterator": 1, + "iterRef": 4, + "i": 7, + "i.left": 3, + "i.done": 1, + "i.lastRef": 1, + "IteratorRef.remove": 1, + ".lastRef": 2, + "IteratorRef.next": 1, + "ref": 3, + "IteratorRef.hasNext": 1, + "s.obj": 1, + "zippishOK": 2, + "ks": 6, + "vs": 6, + "m": 4, + "ki": 2, + "vi": 2, + "s0": 4, + "so/first": 1, + "s1": 4, + "so/next": 7, + "s2": 6, + "s3": 4, + "s4": 4, + "s5": 4, + "s6": 4, + "s7": 2, + "precondition": 2, + "s0.dirty": 1, + "ks.iterator": 1, + "vs.iterator": 1, + "ki.hasNext": 1, + "vi.hasNext": 1, + "ki.this/next": 1, + "vi.this/next": 1, + "m.put": 1, + "ki.remove": 1, + "vi.remove": 1, + "State.dirty": 1, + "ViewType.pre.views": 2, + "but": 1, + "#s.obj": 1, + "<": 1, + "examples/systems/file_system": 1, + "Name": 2, + "File": 1, + "d": 3, + "Dir": 8, + "d.entries.contents": 1, + "entries": 3, + "DirEntry": 2, + "parent": 3, + "this.": 4, + "@contents.": 1, + "@entries": 1, + "e1": 2, + "e2": 2, + "e1.name": 1, + "e2.name": 1, + "@parent": 2, + "Root": 5, + "Cur": 1, + "name": 1, + "contents": 2, + "OneParent_buggyVersion": 2, + "d.parent": 2, + "OneParent_correctVersion": 2, + "contents.d": 1, + "NoDirAliases": 3, + "o": 1, + "o.": 1 + }, + "Nit": { + "#": 196, + "import": 18, + "gtk": 1, + "class": 20, + "CalculatorContext": 7, + "var": 157, + "result": 16, + "nullable": 11, + "Float": 3, + "null": 39, + "last_op": 4, + "Char": 7, + "current": 26, + "after_point": 12, + "Int": 47, + "fun": 57, + "push_op": 2, + "(": 448, + "op": 11, + ")": 448, + "do": 83, + "apply_last_op_if_any": 2, + "if": 89, + "then": 81, + "self.result": 2, + "else": 63, + "store": 1, + "for": 27, + "next": 9, + "end": 117, + "prepare": 1, + "push_digit": 1, + "digit": 1, + "*": 14, + "+": 39, + "digit.to_f": 2, + "pow": 1, + "after_point.to_f": 1, + "self.after_point": 1, + "-": 70, + "self.current": 3, + "switch_to_decimals": 1, + "return": 54, + "/": 4, + "CalculatorGui": 2, + "super": 10, + "GtkCallable": 1, + "win": 2, + "GtkWindow": 2, + "container": 3, + "GtkGrid": 2, + "lbl_disp": 3, + "GtkLabel": 2, + "but_eq": 3, + "GtkButton": 2, + "but_dot": 3, + "context": 9, + "new": 164, + "redef": 30, + "signal": 1, + "sender": 3, + "user_data": 5, + "context.after_point": 1, + "after_point.abs": 1, + "isa": 12, + "is": 25, + "an": 4, + "operation": 1, + "c": 17, + "but_dot.sensitive": 2, + "false": 8, + "context.switch_to_decimals": 4, + "lbl_disp.text": 3, + "true": 6, + "context.push_op": 15, + "s": 68, + "context.result.to_precision_native": 1, + "index": 7, + "i": 20, + "in": 39, + "s.length.times": 1, + "chiffre": 3, + "s.chars": 2, + "[": 106, + "]": 80, + "and": 10, + "s.substring": 2, + "s.length": 2, + "a": 40, + "number": 7, + "n": 16, + "context.push_digit": 25, + "context.current.to_precision_native": 1, + "init": 6, + "init_gtk": 1, + "win.add": 1, + "container.attach": 7, + "digits": 1, + "but": 6, + "GtkButton.with_label": 5, + "n.to_s": 1, + "but.request_size": 2, + "but.signal_connect": 2, + "self": 41, + "%": 3, + "/3": 1, + "operators": 2, + "r": 21, + "op.to_s": 1, + "but_eq.request_size": 1, + "but_eq.signal_connect": 1, + ".": 6, + "but_dot.request_size": 1, + "but_dot.signal_connect": 1, + "#C": 1, + "but_c": 2, + "but_c.request_size": 1, + "but_c.signal_connect": 1, + "win.show_all": 1, + "context.result.to_precision": 6, + "assert": 24, + "print": 135, + "#test": 2, + "multiple": 1, + "decimals": 1, + "button": 1, + ".environ": 3, + "app": 1, + "run_gtk": 1, + "module": 18, + "circular_list": 1, + "CircularList": 6, + "E": 15, + "Like": 1, + "standard": 1, + "Array": 12, + "or": 9, + "LinkedList": 1, + "Sequence.": 1, + "Sequence": 1, + "The": 11, + "first": 7, + "node": 10, + "of": 31, + "the": 57, + "list": 10, + "any": 1, + "special": 1, + "case": 1, + "empty": 1, + "handled": 1, + "by": 5, + "private": 5, + "CLNode": 6, + "iterator": 1, + "CircularListIterator": 2, + "self.node.item": 2, + "push": 3, + "e": 4, + "new_node": 4, + "self.node": 13, + "not": 12, + "one": 3, + "so": 4, + "attach": 1, + "nodes": 3, + "correctly.": 2, + "old_last_node": 2, + "n.prev": 4, + "new_node.next": 1, + "new_node.prev": 1, + "old_last_node.next": 1, + "pop": 2, + "prev": 3, + "only": 6, + "n.item": 1, + "detach": 1, + "prev_prev": 2, + "prev.prev": 1, + "prev_prev.next": 1, + "prev.item": 1, + "unshift": 1, + "Circularity": 2, + "has": 3, + "benefits.": 2, + "self.node.prev": 1, + "shift": 1, + "self.node.next": 2, + "self.pop": 1, + "Move": 1, + "at": 2, + "last": 2, + "position": 2, + "second": 1, + "etc.": 1, + "rotate": 1, + "n.next": 1, + "Sort": 1, + "using": 1, + "Josephus": 1, + "algorithm.": 1, + "josephus": 1, + "step": 2, + "res": 1, + "while": 4, + "self.is_empty": 1, + "count": 2, + "self.rotate": 1, + "kill": 1, + "x": 16, + "self.shift": 1, + "res.add": 1, + "res.node": 1, + "item": 5, + "circular": 3, + "list.": 4, + "Because": 2, + "circularity": 1, + "there": 2, + "always": 1, + ";": 34, + "default": 2, + "let": 1, + "it": 1, + "be": 9, + "previous": 4, + "Coherence": 1, + "between": 1, + "to": 18, + "maintained": 1, + "IndexedIterator": 1, + "pointed.": 1, + "Is": 1, + "empty.": 4, + "iterated.": 1, + "is_ok": 1, + "Empty": 1, + "lists": 2, + "are": 4, + "OK.": 2, + "Pointing": 1, + "again": 1, + "self.index": 3, + "self.list.node": 1, + "list.node": 1, + "self.list": 1, + "i.add_all": 1, + "i.first": 1, + "i.join": 3, + "i.push": 1, + "i.shift": 1, + "i.pop": 1, + "i.unshift": 1, + "i.josephus": 1, + "curl_http": 1, + "curl": 11, + "MyHttpFetcher": 2, + "CurlCallbacks": 1, + "Curl": 4, + "our_body": 1, + "String": 14, + "self.curl": 1, + "Release": 1, + "object": 2, + "destroy": 1, + "self.curl.destroy": 1, + "Header": 1, + "callback": 11, + "header_callback": 1, + "line": 3, + "We": 1, + "keep": 2, + "this": 2, + "silent": 1, + "testing": 1, + "purposes": 2, + "#if": 1, + "line.has_prefix": 1, + "Body": 1, + "body_callback": 1, + "self.our_body": 1, + "Stream": 1, + "Cf": 1, + "No": 1, + "registered": 1, + "stream_callback": 1, + "buffer": 1, + "size": 8, + "args.length": 3, + "<": 11, + "url": 2, + "args": 9, "request": 1, - "method": 1, + "CurlHTTPRequest": 1, + "HTTP": 3, + "Get": 2, + "Request": 3, + "request.verbose": 3, + "getResponse": 3, + "request.execute": 2, + "CurlResponseSuccess": 2, + "CurlResponseFailed": 5, + "Post": 1, + "myHttpFetcher": 2, + "request.delegate": 1, + "postDatas": 5, + "HeaderMap": 3, + "request.datas": 1, + "postResponse": 3, + "file": 1, + "headers": 3, + "request.headers": 1, + "downloadResponse": 3, + "request.download_to_file": 1, + "CurlFileResponseSuccess": 1, + "Program": 1, + "logic": 1, + "callback_monkey": 2, + "{": 14, + "#include": 2, + "": 1, + "": 1, + "typedef": 2, + "struct": 2, + "int": 4, + "id": 2, + "age": 2, + "}": 14, + "CMonkey": 6, + "MonkeyActionCallable": 7, + "toCall": 6, + "Object": 7, + "message": 9, + "MonkeyAction": 5, + "//": 13, + "Method": 1, + "which": 4, + "reproduce": 3, + "answer": 1, + "Please": 1, + "note": 1, + "that": 2, + "function": 2, + "pointer": 2, + "used": 1, + "void": 3, + "cbMonkey": 2, + "*mkey": 2, + "callbackFunc": 2, + "CMonkey*": 1, + "MonkeyAction*": 1, + "*data": 3, + "sleep": 5, + "mkey": 2, + "data": 6, + "Back": 2, + "background": 1, + "treatment": 1, + "will": 8, + "redirected": 1, + "nit_monkey_callback_func": 2, + "To": 1, + "call": 3, + "your": 1, + "method": 17, + "signature": 1, + "must": 1, + "written": 2, + "like": 1, + "": 1, + "Name": 1, + "_": 1, + "": 1, + "...": 1, + "MonkeyActionCallable_wokeUp": 1, + "interface": 3, + "wokeUp": 4, + "Monkey": 4, + "abstract": 2, + "extern": 2, + "*monkey": 1, + "malloc": 2, + "sizeof": 2, + "monkey": 4, "get": 1, - "uri": 1, - "http": 1, - "//example.com/": 1, - "body": 3, - "headers": 2, - "{": 1, - "}": 1, - "response": 2, - "status": 1, - "code": 1, - "message": 1, - "OK": 1, - "Content": 2, - "Type": 1, - "text/html": 1, + "defined": 4, + "Must": 1, + "as": 1, + "Nit/C": 1, + "because": 4, + "C": 4, + "inside": 1, + "wokeUpAction": 2, + "MonkeyActionCallable.wokeUp": 1, + "Allocating": 1, + "memory": 1, + "reference": 2, + "received": 1, + "parameters": 1, + "receiver": 1, + "Message": 1, + "Incrementing": 1, + "counter": 1, + "prevent": 1, + "from": 8, + "releasing": 1, + "MonkeyActionCallable_incr_ref": 1, + "Object_incr_ref": 1, + "Calling": 1, + "passing": 1, + "Receiver": 1, + "Function": 1, + "Datas": 1, + "recv": 12, + "&": 1, + "procedural_array": 1, + "array_sum": 2, + "sum": 12, + "array_sum_alt": 2, + "a.length": 1, + "html": 1, + "NitHomepage": 2, + "HTMLPage": 1, + "head": 5, + "add": 35, + ".attr": 17, + ".text": 27, + "body": 1, + "open": 14, + ".add_class": 4, + "add_html": 7, + "close": 14, + "page": 1, + "page.write_to": 1, + "stdout": 2, + "page.write_to_file": 1, + "print_arguments": 1, + "callback_chimpanze": 1, + "Chimpanze": 2, + "create": 1, + "Invoking": 1, + "take": 1, + "some": 1, + "time": 1, + "compute": 1, + "back": 1, + "with": 2, + "information.": 1, + "Callback": 1, + "Interface": 1, + "monkey.wokeUpAction": 1, + "Inherit": 1, + "m": 5, + "m.create": 1, + "socket_client": 1, + "socket": 6, + "Socket.client": 1, + ".to_i": 2, + "s.connected": 1, + "s.write": 1, + "s.close": 1, + "draw_operation": 1, + "enum": 3, + "n_chars": 1, + "abs": 2, + "log10f": 1, + "float": 1, + "as_operator": 1, + "b": 10, + "abort": 2, + "override_dispc": 1, + "Bool": 2, + "lines": 7, + "Line": 53, + "P": 51, + "s/2": 23, + "y": 9, + "lines.add": 1, + "q4": 4, + "s/4": 1, + "l": 4, + "lines.append": 1, + "tl": 2, + "tr": 2, + "hack": 3, + "support": 1, + "bug": 1, + "evaluation": 1, + "software": 1, + "draw": 1, + "dispc": 2, + "gap": 1, + "w": 3, + "length": 2, + "*gap": 1, + "h": 7, + "map": 8, + ".filled_with": 1, + "ci": 2, + "self.chars": 1, + "local_dispc": 4, + "c.override_dispc": 1, + "c.lines": 1, + "line.o.x": 1, + "ci*size": 1, + "ci*gap": 1, + "line.o.y": 1, + "line.len": 1, + "map.length": 3, + ".length": 1, + "line.step_x": 1, + "line.step_y": 1, + "printn": 10, + "o": 5, + "step_x": 1, + "step_y": 1, + "len": 1, + "op_char": 3, + "disp_char": 6, + "disp_size": 6, + "disp_gap": 6, + "gets.to_i": 4, + "gets.chars": 2, + "op_char.as_operator": 1, + "len_a": 2, + "a.n_chars": 1, + "len_b": 2, + "b.n_chars": 1, + "len_res": 3, + "result.n_chars": 1, + "max_len": 5, + "len_a.max": 1, + "len_b.max": 1, + "d": 6, + "line_a": 3, + "a.to_s": 1, + "line_a.draw": 1, + "line_b": 3, + "op_char.to_s": 1, + "b.to_s": 1, + "line_b.draw": 1, + "disp_size*max_len": 1, + "*disp_gap": 1, + "line_res": 3, + "result.to_s": 1, + "line_res.draw": 1, + "extern_methods": 1, + "Returns": 1, + "th": 2, + "fibonnaci": 1, + "implemented": 1, + "here": 1, + "optimization": 1, + "fib": 5, + "Int_fib": 3, + "System": 1, + "seconds": 1, + "Return": 4, + "atan2l": 1, + "libmath": 1, + "atan_with": 2, + "atan2": 1, + "This": 1, + "Nit": 2, + "methods": 2, + "code": 3, + "It": 1, + "use": 1, + "local": 1, + "operator": 1, + "to_s": 3, + "all": 3, + "objects": 1, + "String.to_cstring": 2, + "equivalent": 1, + "char*": 1, + "foo": 3, + "long": 2, + "recv_fib": 2, + "recv_plus_fib": 2, + "Int__plus": 1, + "nit_string": 2, + "Int_to_s": 1, + "char": 1, + "*c_string": 1, + "String_to_cstring": 1, + "printf": 1, + "c_string": 1, + "Equivalent": 1, + "pure": 1, + "bar": 2, + "clock": 4, + "Clock": 10, + "total": 1, + "minutes": 12, + "total_minutes": 2, + "Note": 7, + "read": 1, + "acces": 1, + "public": 1, + "write": 1, + "access": 1, + "private.": 1, + "hour": 3, + "self.total_minutes": 8, + "set": 2, + "hour.": 1, + "changed": 1, + "accordinlgy": 1, + "self.hours": 1, + "hours": 9, + "updated": 1, + "arrow": 2, + "interval": 1, + "hour_pos": 2, + "replace": 1, + "updated.": 1, + "reset": 1, + "hours*60": 1, + "self.reset": 1, + "type": 2, + "test": 1, + "required": 1, + "Thanks": 1, + "adaptive": 1, + "typing": 1, + "no": 1, + "downcast": 1, + "i.e.": 1, + "safe": 4, + "o.total_minutes": 2, + "c.minutes": 1, + "c.hours": 1, + "c2": 2, + "c2.minutes": 1, + "template": 1, + "###": 2, + "Here": 2, + "definition": 1, + "specific": 1, + "templates": 2, + "TmplComposers": 2, + "Template": 3, + "Short": 2, + "composers": 4, + "TmplComposer": 3, + "Detailled": 1, + "composer_details": 2, + "TmplComposerDetail": 3, + "Add": 2, + "composer": 1, + "both": 1, + "add_composer": 1, + "firstname": 5, + "lastname": 6, + "birth": 5, + "death": 5, + "composers.add": 1, + "composer_details.add": 1, + "rendering": 3, + "add_all": 2, + "name": 4, + "self.name": 1, + "self.firstname": 1, + "self.lastname": 1, + "self.birth": 1, + "self.death": 1, + "simple": 1, + "usage": 3, + "f": 1, + "f.add_composer": 3, + "f.write_to": 1, + "drop_privileges": 1, + "privileges": 1, + "opts": 1, + "OptionContext": 1, + "opt_ug": 2, + "OptionUserAndGroup.for_dropping_privileges": 1, + "opt_ug.mandatory": 1, + "opts.add_option": 1, + "opts.parse": 1, + "opts.errors.is_empty": 1, + "opts.errors": 1, + "opts.usage": 1, + "exit": 3, + "user_group": 2, + "opt_ug.value": 1, + "user_group.drop_privileges": 1, + "int_stack": 1, + "IntStack": 2, + "Null": 1, + "means": 1, + "stack": 3, + "ISNode": 4, + "integer": 2, + "stack.": 2, + "val": 5, + "self.head": 5, + "Remove": 1, + "pushed": 1, + "integer.": 1, + "followings": 2, + "statically": 3, + "head.val": 1, + "head.next": 1, + "integers": 1, + "sumall": 1, + "cur": 3, + "condition": 1, + "cur.val": 1, + "cur.next": 1, + "attributes": 1, + "have": 1, + "value": 2, + "free": 2, + "constructor": 2, + "implicitly": 2, + "defined.": 2, + "stored": 1, + "node.": 1, + "any.": 1, + "A": 1, + "l.push": 4, + "l.sumall": 1, + "loop": 2, + "l.pop": 5, + "break": 2, + "following": 1, + "gives": 2, + "alternative": 1, + "clock_more": 1, + "now": 1, + "comparable": 1, + "Comparable": 1, + "Comparaison": 1, + "make": 1, + "sense": 1, + "other": 2, + "OTHER": 1, + "Comparable.": 1, + "All": 1, + "rely": 1, + "on": 1, + "c1": 1, + "c3": 1, + "c1.minutes": 1, + "fibonacci": 3, + "Calculate": 1, + "element": 1, + "sequence.": 1, + ".fibonacci": 2, + "args.first.to_i.fibonacci": 1, + "websocket_server": 1, + "websocket": 1, + "sock": 1, + "WebSocket": 1, + "msg": 8, + "sock.listener.eof": 2, + "sys.errno.strerror": 1, + "sock.accept": 2, + "sock.connected": 1, + "sys.stdin.poll_in": 1, + "gets": 1, + "sock.close": 1, + "sock.disconnect_client": 1, + "sock.write": 1, + "sock.can_read": 1, + "sock.read_line": 1, + "opengles2_hello_triangle": 1, + "glesv2": 1, + "egl": 1, + "mnit_linux": 1, + "sdl": 1, + "x11": 1, + "window_width": 2, + "window_height": 2, + "##": 6, + "SDL": 2, + "sdl_display": 1, + "SDLDisplay": 1, + "sdl_wm_info": 1, + "SDLSystemWindowManagerInfo": 1, + "x11_window_handle": 2, + "sdl_wm_info.x11_window_handle": 1, + "X11": 1, + "x_display": 3, + "x_open_default_display": 1, + "EGL": 2, + "egl_display": 6, + "EGLDisplay": 1, + "egl_display.is_valid": 2, + "egl_display.initialize": 1, + "egl_display.error": 3, + "config_chooser": 1, + "EGLConfigChooser": 1, + "#config_chooser.surface_type_egl": 1, + "config_chooser.blue_size": 1, + "config_chooser.green_size": 1, + "config_chooser.red_size": 1, + "#config_chooser.alpha_size": 1, + "#config_chooser.depth_size": 1, + "#config_chooser.stencil_size": 1, + "#config_chooser.sample_buffers": 1, + "config_chooser.close": 1, + "configs": 3, + "config_chooser.choose": 1, + "configs.is_empty": 1, + "config": 4, + "attribs": 1, + "config.attribs": 2, + "configs.first": 1, + "format": 1, + ".native_visual_id": 1, + "surface": 5, + "egl_display.create_window_surface": 1, + "surface.is_ok": 1, + "egl_display.create_context": 1, + "context.is_ok": 1, + "make_current_res": 2, + "egl_display.make_current": 2, + "width": 2, + "surface.attribs": 2, + ".width": 1, + "height": 2, + ".height": 1, + "egl_bind_opengl_es_api": 1, + "GLESv2": 1, + "assert_no_gl_error": 6, + "gl_shader_compiler": 1, + "gl_error.to_s": 1, + "program": 1, + "GLProgram": 1, + "program.is_ok": 1, + "program.info_log": 1, + "vertex_shader": 2, + "GLVertexShader": 1, + "vertex_shader.is_ok": 1, + "vertex_shader.source": 1, + "vertex_shader.compile": 1, + "vertex_shader.is_compiled": 1, + "fragment_shader": 2, + "GLFragmentShader": 1, + "fragment_shader.is_ok": 1, + "fragment_shader.source": 1, + "fragment_shader.compile": 1, + "fragment_shader.is_compiled": 1, + "program.attach_shader": 2, + "program.bind_attrib_location": 1, + "program.link": 1, + "program.is_linked": 1, + "vertices": 2, + "vertex_array": 1, + "VertexArray": 1, + "vertex_array.attrib_pointer": 1, + "gl_clear_color": 1, + "gl_viewport": 1, + "gl_clear_color_buffer": 1, + "program.use": 1, + "vertex_array.enable": 1, + "vertex_array.draw_arrays_triangles": 1, + "egl_display.swap_buffers": 1, + "program.delete": 1, + "vertex_shader.delete": 1, + "fragment_shader.delete": 1, + "EGLSurface.none": 2, + "EGLContext.none": 1, + "egl_display.destroy_context": 1, + "egl_display.destroy_surface": 1, + "sdl_display.destroy": 1, + "socket_server": 1, + "args.is_empty": 1, + "Socket.server": 1, + "clients": 2, + "Socket": 1, + "max": 2, + "fs": 1, + "SocketObserver": 1, + "fs.readset.set": 2, + "fs.select": 1, + "fs.readset.is_set": 1, + "ns": 1, + "socket.accept": 1, + "ns.write": 1, + "ns.close": 1, + "curl_mail": 1, + "mail_request": 1, + "CurlMailRequest": 1, + "response": 5, + "mail_request.set_outgoing_server": 1, + "mail_request.from": 1, + "mail_request.to": 1, + "mail_request.cc": 1, + "mail_request.bcc": 1, + "headers_body": 4, + "mail_request.headers_body": 1, + "mail_request.body": 1, + "mail_request.subject": 1, + "mail_request.verbose": 1, + "mail_request.execute": 1, + "CurlMailResponseSuccess": 1 + }, + "COBOL": { + "IDENTIFICATION": 2, + "DIVISION.": 4, + "PROGRAM": 2, + "-": 19, + "ID.": 2, + "hello.": 3, + "PROCEDURE": 2, + "DISPLAY": 2, + ".": 3, + "STOP": 2, + "RUN.": 2, + "COBOL": 7, + "TEST": 2, + "RECORD.": 1, + "USAGES.": 1, + "COMP": 5, + "PIC": 5, + "S9": 4, + "(": 5, + ")": 5, + "COMP.": 3, + "COMP2": 2, + "program": 1, + "id.": 1, + "procedure": 1, + "division.": 1, + "display": 1, + "stop": 1, + "run.": 1 + }, + "INI": { + "[": 2, + "user": 1, + "]": 2, + "name": 1, + "Josh": 1, + "Peek": 1, + "email": 1, + "josh@github.com": 1, ";": 1, + "editorconfig.org": 1, + "root": 1, + "true": 3, + "*": 1, + "indent_style": 1, + "space": 1, + "indent_size": 1, + "end_of_line": 1, + "lf": 1, "charset": 1, "utf": 1, - "Length": 1, - "This": 1, - "is": 1, - "the": 1, - "http_version": 1, - "recorded_at": 1, - "Tue": 1, - "Nov": 1, - "GMT": 1, - "recorded_with": 1, - "VCR": 1 + "-": 1, + "trim_trailing_whitespace": 1, + "insert_final_newline": 1 }, - "Zephir": { - "%": 10, - "{": 58, - "#define": 1, - "MAX_FACTOR": 3, - "}": 52, - "namespace": 4, - "Test": 4, - ";": 91, - "#include": 9, - "static": 1, - "long": 3, - "fibonacci": 4, - "(": 59, - "n": 5, - ")": 57, - "if": 39, - "<": 2, - "return": 26, - "else": 11, - "-": 25, - "+": 5, - "class": 3, - "Cblock": 1, - "public": 22, - "function": 22, - "testCblock1": 1, - "int": 3, - "a": 6, - "testCblock2": 1, - "#ifdef": 1, - "HAVE_CONFIG_H": 1, - "#endif": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "ZEPHIR_INIT_CLASS": 2, - "Test_Router_Exception": 2, - "ZEPHIR_REGISTER_CLASS_EX": 1, - "Router": 3, - "Exception": 4, - "test": 1, - "router_exception": 1, - "zend_exception_get_default": 1, - "TSRMLS_C": 1, - "NULL": 1, - "SUCCESS": 1, - "extern": 1, - "zend_class_entry": 1, - "*test_router_exception_ce": 1, - "php": 1, - "extends": 1, - "Route": 1, - "protected": 9, - "_pattern": 3, - "_compiledPattern": 3, - "_paths": 3, - "_methods": 5, - "_hostname": 3, - "_converters": 3, - "_id": 2, - "_name": 3, - "_beforeMatch": 3, - "__construct": 1, - "pattern": 37, - "paths": 7, - "null": 11, - "httpMethods": 6, - "this": 28, - "reConfigure": 2, - "let": 51, - "compilePattern": 2, - "var": 4, - "idPattern": 6, - "memstr": 10, - "str_replace": 6, - ".": 5, - "via": 1, - "extractNamedParams": 2, - "string": 6, - "char": 1, - "ch": 27, - "tmp": 4, - "matches": 5, - "boolean": 1, - "notValid": 5, - "false": 3, - "cursor": 4, - "cursorVar": 5, - "marker": 4, - "bracketCount": 7, - "parenthesesCount": 5, - "foundPattern": 6, - "intermediate": 4, - "numberMatches": 4, - "route": 12, - "item": 7, - "variable": 5, - "regexp": 7, - "strlen": 1, - "<=>": 5, - "0": 9, - "for": 4, - "in": 4, - "1": 3, - "substr": 3, - "break": 9, + "Java": { + "package": 6, + "nokogiri.internals": 1, + ";": 891, + "import": 66, + "static": 141, + "nokogiri.internals.NokogiriHelpers.getNokogiriClass": 1, + "nokogiri.internals.NokogiriHelpers.isNamespace": 1, + "nokogiri.internals.NokogiriHelpers.stringOrNil": 1, + "nokogiri.HtmlDocument": 1, + "nokogiri.NokogiriService": 1, + "nokogiri.XmlDocument": 1, + "org.apache.xerces.parsers.DOMParser": 1, + "org.apache.xerces.xni.Augmentations": 1, + "org.apache.xerces.xni.QName": 1, + "org.apache.xerces.xni.XMLAttributes": 1, + "org.apache.xerces.xni.XNIException": 1, + "org.apache.xerces.xni.parser.XMLDocumentFilter": 1, + "org.apache.xerces.xni.parser.XMLParserConfiguration": 1, + "org.cyberneko.html.HTMLConfiguration": 1, + "org.cyberneko.html.filters.DefaultFilter": 1, + "org.jruby.Ruby": 2, + "org.jruby.RubyClass": 2, + "org.jruby.runtime.ThreadContext": 1, + "org.jruby.runtime.builtin.IRubyObject": 2, + "org.w3c.dom.Document": 1, + "org.w3c.dom.NamedNodeMap": 1, + "org.w3c.dom.NodeList": 1, + "public": 214, + "class": 12, + "HtmlDomParserContext": 3, + "extends": 10, + "XmlDomParserContext": 1, + "{": 434, + "(": 1097, + "Ruby": 43, + "runtime": 88, + "IRubyObject": 35, + "options": 4, + ")": 1097, + "super": 7, + "}": 434, + "encoding": 2, + "@Override": 6, + "protected": 8, + "void": 25, + "initErrorHandler": 1, + "if": 116, + "options.strict": 1, + "errorHandler": 6, + "new": 131, + "NokogiriStrictErrorHandler": 1, + "options.noError": 2, + "options.noWarning": 2, + "else": 33, + "NokogiriNonStrictErrorHandler4NekoHtml": 1, + "initParser": 1, + "XMLParserConfiguration": 1, + "config": 2, + "HTMLConfiguration": 1, + "XMLDocumentFilter": 3, + "removeNSAttrsFilter": 2, + "RemoveNSAttrsFilter": 2, + "elementValidityCheckFilter": 3, + "ElementValidityCheckFilter": 3, + "//XMLDocumentFilter": 1, + "[": 54, + "]": 54, + "filters": 3, + "config.setErrorHandler": 1, + "this.errorHandler": 2, + "parser": 1, + "DOMParser": 1, + "setProperty": 4, + "java_encoding": 2, + "setFeature": 4, + "true": 21, + "false": 12, + "enableDocumentFragment": 1, + "XmlDocument": 8, + "getNewEmptyDocument": 1, + "ThreadContext": 2, + "context": 8, + "args": 6, + "return": 267, + "XmlDocument.rbNew": 1, + "getNokogiriClass": 1, + "context.getRuntime": 3, + "wrapDocument": 1, + "RubyClass": 92, + "klazz": 107, + "Document": 2, + "document": 5, + "HtmlDocument": 7, + "htmlDocument": 6, + "NokogiriService.HTML_DOCUMENT_ALLOCATOR.allocate": 1, + "htmlDocument.setDocumentNode": 1, + "ruby_encoding.isNil": 1, + "detected_encoding": 2, + "null": 80, "&&": 6, - "z": 2, - "Z": 2, - "true": 2, - "<='9')>": 1, - "_": 1, - "2": 2, - "continue": 1, - "[": 14, - "]": 14, - "moduleName": 5, - "controllerName": 7, - "actionName": 4, - "parts": 9, - "routePaths": 5, - "realClassName": 1, - "namespaceName": 1, - "pcrePattern": 4, - "compiledPattern": 4, - "extracted": 4, - "typeof": 2, - "throw": 1, - "new": 1, - "explode": 1, - "switch": 1, - "count": 1, - "case": 3, - "controller": 1, - "action": 1, - "array": 1, - "The": 1, - "contains": 1, - "invalid": 1, - "#": 1, - "array_merge": 1, - "//Update": 1, - "the": 1, - "s": 1, - "name": 5, - "*": 2, - "@return": 1, - "*/": 1, - "getName": 1, + "detected_encoding.isNil": 1, + "ruby_encoding": 3, + "String": 33, + "charset": 2, + "tryGetCharsetFromHtml5MetaTag": 2, + "stringOrNil": 1, + "htmlDocument.setEncoding": 1, + "htmlDocument.setParsedEncoding": 1, + "private": 77, + ".equalsIgnoreCase": 5, + "document.getDocumentElement": 2, + ".getNodeName": 4, + "NodeList": 2, + "list": 1, + ".getChildNodes": 2, + "for": 16, + "int": 62, + "i": 54, + "<": 13, + "list.getLength": 1, + "+": 83, + "list.item": 2, + "headers": 1, + "j": 9, + "headers.getLength": 1, + "headers.item": 2, + "NamedNodeMap": 1, + "nodeMap": 1, + ".getAttributes": 1, + "k": 5, + "nodeMap.getLength": 1, + "nodeMap.item": 2, + ".getNodeValue": 1, + "DefaultFilter": 2, + "startElement": 2, + "QName": 2, + "element": 3, + "XMLAttributes": 2, + "attrs": 4, + "Augmentations": 2, + "augs": 4, + "throws": 26, + "XNIException": 2, + "attrs.getLength": 1, + "isNamespace": 1, + "attrs.getQName": 1, + "attrs.removeAttributeAt": 1, + "-": 15, + "element.uri": 1, + "super.startElement": 2, + "NokogiriErrorHandler": 2, + "element_names": 3, + "//": 16, + "g": 1, + "r": 1, + "w": 1, + "x": 8, + "y": 1, + "z": 1, + "boolean": 36, + "isValid": 2, + "testee": 1, + "char": 13, + "c": 21, + "testee.toCharArray": 1, + "index": 4, + "Integer": 2, + ".length": 1, + "testee.equals": 1, + "name": 10, + "name.rawname": 2, + "errorHandler.getErrors": 1, + ".add": 1, + "Exception": 1, + "hudson.model": 1, + "hudson.ExtensionListView": 1, + "hudson.Functions": 1, + "hudson.Platform": 1, + "hudson.PluginManager": 1, + "hudson.cli.declarative.CLIResolver": 1, + "hudson.model.listeners.ItemListener": 1, + "hudson.slaves.ComputerListener": 1, + "hudson.util.CopyOnWriteList": 1, + "hudson.util.FormValidation": 1, + "jenkins.model.Jenkins": 1, + "org.jvnet.hudson.reactor.ReactorException": 1, + "org.kohsuke.stapler.QueryParameter": 1, + "org.kohsuke.stapler.Stapler": 1, + "org.kohsuke.stapler.StaplerRequest": 1, + "org.kohsuke.stapler.StaplerResponse": 1, + "javax.servlet.ServletContext": 1, + "javax.servlet.ServletException": 1, + "java.io.File": 1, + "java.io.IOException": 10, + "java.text.NumberFormat": 1, + "java.text.ParseException": 1, + "java.util.Collections": 2, + "java.util.List": 1, + "java.util.Map": 3, + "hudson.Util.fixEmpty": 1, + "Hudson": 5, + "Jenkins": 2, + "transient": 2, + "final": 78, + "CopyOnWriteList": 4, + "": 2, + "itemListeners": 2, + "ExtensionListView.createCopyOnWriteList": 2, + "ItemListener.class": 1, + "": 2, + "computerListeners": 2, + "ComputerListener.class": 1, + "@CLIResolver": 1, + "getInstance": 2, + "Jenkins.getInstance": 2, + "File": 2, + "root": 6, + "ServletContext": 2, + "IOException": 8, + "InterruptedException": 2, + "ReactorException": 2, + "this": 16, + "PluginManager": 1, + "pluginManager": 2, + "getJobListeners": 1, + "getComputerListeners": 1, + "Slave": 3, + "getSlave": 1, + "Node": 1, + "n": 3, + "getNode": 1, + "instanceof": 19, + "List": 3, + "": 2, + "getSlaves": 1, + "slaves": 3, + "setSlaves": 1, + "setNodes": 1, + "TopLevelItem": 3, + "getJob": 1, + "getItem": 1, + "getJobCaseInsensitive": 1, + "match": 2, + "Functions.toEmailSafeString": 2, + "item": 2, + "getItems": 1, + "item.getName": 1, + "synchronized": 1, + "doQuietDown": 2, + "StaplerResponse": 4, + "rsp": 6, + "ServletException": 3, + ".generateResponse": 2, + "doLogRss": 1, + "StaplerRequest": 4, + "req": 6, + "qs": 3, + "req.getQueryString": 1, + "rsp.sendRedirect2": 1, + "doFieldCheck": 3, + "fixEmpty": 8, + "req.getParameter": 4, + "FormValidation": 2, + "@QueryParameter": 4, + "value": 11, + "type": 3, + "errorText": 3, + "warningText": 3, + "FormValidation.error": 4, + "FormValidation.warning": 1, + "try": 26, + "type.equalsIgnoreCase": 2, + "NumberFormat.getInstance": 2, + ".parse": 2, + ".floatValue": 1, + "<=>": 1, + "0": 1, + "error": 1, + "Messages": 1, + "Hudson_NotAPositiveNumber": 1, + "equalsIgnoreCase": 1, + "number": 1, + "negative": 1, + "NumberFormat": 1, + "parse": 1, + "floatValue": 1, + "Messages.Hudson_NotANegativeNumber": 1, + "catch": 27, + "ParseException": 1, + "e": 31, + "Messages.Hudson_NotANumber": 1, + "FormValidation.ok": 1, + "isWindows": 1, + "File.pathSeparatorChar": 1, + "isDarwin": 1, + "Platform.isDarwin": 1, + "adminCheck": 3, + "Stapler.getCurrentRequest": 1, + "Stapler.getCurrentResponse": 1, + "isAdmin": 4, + "rsp.sendError": 1, + "StaplerResponse.SC_FORBIDDEN": 1, + ".getACL": 1, + ".hasPermission": 1, + "ADMINISTER": 1, + "XSTREAM.alias": 1, + "Hudson.class": 1, + "MasterComputer": 1, + "Jenkins.MasterComputer": 1, + "CloudList": 3, + "Jenkins.CloudList": 1, + "h": 2, + "needed": 1, + "XStream": 1, + "deserialization": 1, + "persons": 1, + "ProtocolBuffer": 2, + "registerAllExtensions": 1, + "com.google.protobuf.ExtensionRegistry": 2, + "registry": 1, + "interface": 1, + "PersonOrBuilder": 2, + "com.google.protobuf.MessageOrBuilder": 1, + "hasName": 5, + "java.lang.String": 15, + "getName": 3, + "com.google.protobuf.ByteString": 13, + "getNameBytes": 5, + "Person": 10, + "com.google.protobuf.GeneratedMessage": 1, + "implements": 3, + "com.google.protobuf.GeneratedMessage.Builder": 2, + "": 1, + "builder": 4, + "this.unknownFields": 4, + "builder.getUnknownFields": 1, + "noInit": 1, + "com.google.protobuf.UnknownFieldSet.getDefaultInstance": 1, + "defaultInstance": 4, + "getDefaultInstance": 2, + "getDefaultInstanceForType": 2, + "com.google.protobuf.UnknownFieldSet": 2, + "unknownFields": 3, + "@java.lang.Override": 4, + "getUnknownFields": 3, + "com.google.protobuf.CodedInputStream": 5, + "input": 18, + "com.google.protobuf.ExtensionRegistryLite": 8, + "extensionRegistry": 16, + "com.google.protobuf.InvalidProtocolBufferException": 9, + "initFields": 2, + "mutable_bitField0_": 1, + "com.google.protobuf.UnknownFieldSet.Builder": 1, + "com.google.protobuf.UnknownFieldSet.newBuilder": 1, + "done": 4, + "while": 10, + "tag": 3, + "input.readTag": 1, + "switch": 6, + "case": 56, + "break": 4, + "default": 6, + "parseUnknownField": 1, + "bitField0_": 15, + "|": 5, + "name_": 18, + "input.readBytes": 1, + "throw": 9, + "e.setUnfinishedMessage": 1, + "e.getMessage": 1, + ".setUnfinishedMessage": 1, + "finally": 2, + "unknownFields.build": 1, + "makeExtensionsImmutable": 1, + "com.google.protobuf.Descriptors.Descriptor": 4, + "getDescriptor": 15, + "persons.ProtocolBuffer.internal_static_persons_Person_descriptor": 3, + "com.google.protobuf.GeneratedMessage.FieldAccessorTable": 4, + "internalGetFieldAccessorTable": 2, + "persons.ProtocolBuffer.internal_static_persons_Person_fieldAccessorTable": 2, + ".ensureFieldAccessorsInitialized": 2, + "persons.ProtocolBuffer.Person.class": 2, + "persons.ProtocolBuffer.Person.Builder.class": 2, + "com.google.protobuf.Parser": 2, + "": 3, + "PARSER": 2, + "com.google.protobuf.AbstractParser": 1, + "parsePartialFrom": 1, + "getParserForType": 1, + "NAME_FIELD_NUMBER": 1, + "java.lang.Object": 7, + "&": 7, + "ref": 16, + "bs": 1, + "s": 10, + "bs.toStringUtf8": 1, + "bs.isValidUtf8": 1, + "b": 7, + "com.google.protobuf.ByteString.copyFromUtf8": 2, + "byte": 4, + "memoizedIsInitialized": 4, + "isInitialized": 5, + "writeTo": 1, + "com.google.protobuf.CodedOutputStream": 2, + "output": 2, + "getSerializedSize": 2, + "output.writeBytes": 1, + ".writeTo": 1, + "memoizedSerializedSize": 3, + "size": 16, + ".computeBytesSize": 1, + ".getSerializedSize": 1, + "long": 5, + "serialVersionUID": 1, + "L": 1, + "writeReplace": 1, + "java.io.ObjectStreamException": 1, + "super.writeReplace": 1, + "persons.ProtocolBuffer.Person": 22, + "parseFrom": 8, + "data": 8, + "PARSER.parseFrom": 8, + "java.io.InputStream": 4, + "parseDelimitedFrom": 2, + "PARSER.parseDelimitedFrom": 2, + "Builder": 20, + "newBuilder": 5, + "Builder.create": 1, + "newBuilderForType": 2, + "prototype": 2, + ".mergeFrom": 2, + "toBuilder": 1, + "com.google.protobuf.GeneratedMessage.BuilderParent": 2, + "parent": 4, + "": 1, + "persons.ProtocolBuffer.PersonOrBuilder": 1, + "maybeForceBuilderInitialization": 3, + "com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders": 1, + "create": 2, + "clear": 1, + "super.clear": 1, + "clone": 47, + "buildPartial": 3, + "getDescriptorForType": 1, + "persons.ProtocolBuffer.Person.getDefaultInstance": 2, + "build": 1, + "result": 5, + "result.isInitialized": 1, + "newUninitializedMessageException": 1, + "from_bitField0_": 2, + "to_bitField0_": 3, + "result.name_": 1, + "result.bitField0_": 1, + "onBuilt": 1, + "mergeFrom": 5, + "com.google.protobuf.Message": 1, + "other": 6, + "super.mergeFrom": 1, + "other.hasName": 1, + "other.name_": 1, + "onChanged": 4, + "this.mergeUnknownFields": 1, + "other.getUnknownFields": 1, + "parsedMessage": 5, + "PARSER.parsePartialFrom": 1, + "e.getUnfinishedMessage": 1, + ".toStringUtf8": 1, "setName": 1, - "beforeMatch": 1, - "callback": 2, - "getBeforeMatch": 1, - "getRouteId": 1, - "getPattern": 1, - "getCompiledPattern": 1, - "getPaths": 1, - "getReversedPaths": 1, - "reversed": 4, - "path": 3, - "position": 3, - "setHttpMethods": 1, - "getHttpMethods": 1, - "setHostname": 1, - "hostname": 2, - "getHostname": 1, - "convert": 1, - "converter": 2, - "getConverters": 1 - }, - "Zimpl": { - "#": 2, - "param": 1, - "columns": 2, - ";": 7, - "set": 3, - "I": 3, - "{": 2, - "..": 1, - "}": 2, - "IxI": 6, + "NullPointerException": 3, + "clearName": 1, + ".getName": 1, + "setNameBytes": 1, + "defaultInstance.initFields": 1, + "internal_static_persons_Person_descriptor": 3, + "internal_static_persons_Person_fieldAccessorTable": 2, + "com.google.protobuf.Descriptors.FileDescriptor": 5, + "descriptor": 3, + "descriptorData": 2, + "com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner": 2, + "assigner": 2, + "assignDescriptors": 1, + ".getMessageTypes": 1, + ".get": 1, + ".internalBuildGeneratedFileFrom": 1, + "clojure.lang": 1, + "java.lang.ref.Reference": 1, + "java.math.BigInteger": 1, + "java.util.concurrent.ConcurrentHashMap": 1, + "java.lang.ref.SoftReference": 1, + "java.lang.ref.ReferenceQueue": 1, + "Util": 1, + "equiv": 17, + "Object": 31, + "k1": 40, + "k2": 38, + "Number": 9, + "Numbers.equal": 1, + "IPersistentCollection": 5, + "||": 8, + "pcequiv": 2, + "k1.equals": 2, + "double": 4, + "c1": 2, + "c2": 2, + ".equiv": 2, + "equals": 2, + "identical": 1, + "Class": 10, + "classOf": 1, + "x.getClass": 1, + "compare": 1, + "Numbers.compare": 1, + "Comparable": 1, + ".compareTo": 1, + "hash": 3, + "o": 12, + "o.hashCode": 2, + "hasheq": 1, + "Numbers.hasheq": 1, + "IHashEq": 2, + ".hasheq": 1, + "hashCombine": 1, + "seed": 5, + "//a": 1, + "la": 1, + "boost": 1, + "e3779b9": 1, + "<<": 1, + "isPrimitive": 1, + "c.isPrimitive": 2, + "Void.TYPE": 3, + "isInteger": 1, + "Long": 1, + "BigInt": 1, + "BigInteger": 1, + "ret1": 2, + "ret": 4, + "nil": 2, + "ISeq": 2, + "": 1, + "clearCache": 1, + "ReferenceQueue": 1, + "rq": 1, + "ConcurrentHashMap": 1, + "K": 2, + "Reference": 3, + "": 3, + "cache": 1, + "//cleanup": 1, + "any": 1, + "dead": 1, + "entries": 1, + "rq.poll": 2, + "Map.Entry": 1, + "cache.entrySet": 1, + "val": 3, + "e.getValue": 1, + "val.get": 1, + "cache.remove": 1, + "e.getKey": 1, + "RuntimeException": 5, + "runtimeException": 2, + "Throwable": 4, + "sneakyThrow": 1, + "t": 6, + "Util.": 1, + "": 1, + "sneakyThrow0": 2, + "@SuppressWarnings": 1, + "": 1, + "T": 2, + "nokogiri": 6, + "java.util.HashMap": 1, + "org.jruby.RubyArray": 1, + "org.jruby.RubyFixnum": 1, + "org.jruby.RubyModule": 1, + "org.jruby.runtime.ObjectAllocator": 1, + "org.jruby.runtime.load.BasicLibraryService": 1, + "NokogiriService": 1, + "BasicLibraryService": 1, + "nokogiriClassCacheGvarName": 1, + "Map": 1, + "": 2, + "nokogiriClassCache": 2, + "basicLoad": 1, + "ruby": 25, + "init": 2, + "createNokogiriClassCahce": 2, + "Collections.synchronizedMap": 1, + "HashMap": 1, + "nokogiriClassCache.put": 26, + "ruby.getClassFromPath": 26, + "RubyModule": 18, + "ruby.defineModule": 1, + "xmlModule": 7, + "nokogiri.defineModuleUnder": 3, + "xmlSaxModule": 3, + "xmlModule.defineModuleUnder": 1, + "htmlModule": 5, + "htmlSaxModule": 3, + "htmlModule.defineModuleUnder": 1, + "xsltModule": 3, + "createNokogiriModule": 2, + "createSyntaxErrors": 2, + "xmlNode": 5, + "createXmlModule": 2, + "createHtmlModule": 2, + "createDocuments": 2, + "createSaxModule": 2, + "createXsltModule": 2, + "encHandler": 1, + "nokogiri.defineClassUnder": 2, + "ruby.getObject": 13, + "ENCODING_HANDLER_ALLOCATOR": 2, + "encHandler.defineAnnotatedMethods": 1, + "EncodingHandler.class": 1, + "syntaxError": 2, + "ruby.getStandardError": 2, + ".getAllocator": 1, + "xmlSyntaxError": 4, + "xmlModule.defineClassUnder": 23, + "XML_SYNTAXERROR_ALLOCATOR": 2, + "xmlSyntaxError.defineAnnotatedMethods": 1, + "XmlSyntaxError.class": 1, + "node": 14, + "XML_NODE_ALLOCATOR": 2, + "node.defineAnnotatedMethods": 1, + "XmlNode.class": 1, + "attr": 1, + "XML_ATTR_ALLOCATOR": 2, + "attr.defineAnnotatedMethods": 1, + "XmlAttr.class": 1, + "attrDecl": 1, + "XML_ATTRIBUTE_DECL_ALLOCATOR": 2, + "attrDecl.defineAnnotatedMethods": 1, + "XmlAttributeDecl.class": 1, + "characterData": 3, + "comment": 1, + "XML_COMMENT_ALLOCATOR": 2, + "comment.defineAnnotatedMethods": 1, + "XmlComment.class": 1, + "text": 2, + "XML_TEXT_ALLOCATOR": 2, + "text.defineAnnotatedMethods": 1, + "XmlText.class": 1, + "cdata": 1, + "XML_CDATA_ALLOCATOR": 2, + "cdata.defineAnnotatedMethods": 1, + "XmlCdata.class": 1, + "dtd": 1, + "XML_DTD_ALLOCATOR": 2, + "dtd.defineAnnotatedMethods": 1, + "XmlDtd.class": 1, + "documentFragment": 1, + "XML_DOCUMENT_FRAGMENT_ALLOCATOR": 2, + "documentFragment.defineAnnotatedMethods": 1, + "XmlDocumentFragment.class": 1, + "XML_ELEMENT_ALLOCATOR": 2, + "element.defineAnnotatedMethods": 1, + "XmlElement.class": 1, + "elementContent": 1, + "XML_ELEMENT_CONTENT_ALLOCATOR": 2, + "elementContent.defineAnnotatedMethods": 1, + "XmlElementContent.class": 1, + "elementDecl": 1, + "XML_ELEMENT_DECL_ALLOCATOR": 2, + "elementDecl.defineAnnotatedMethods": 1, + "XmlElementDecl.class": 1, + "entityDecl": 1, + "XML_ENTITY_DECL_ALLOCATOR": 2, + "entityDecl.defineAnnotatedMethods": 1, + "XmlEntityDecl.class": 1, + "entityDecl.defineConstant": 6, + "RubyFixnum.newFixnum": 6, + "XmlEntityDecl.INTERNAL_GENERAL": 1, + "XmlEntityDecl.EXTERNAL_GENERAL_PARSED": 1, + "XmlEntityDecl.EXTERNAL_GENERAL_UNPARSED": 1, + "XmlEntityDecl.INTERNAL_PARAMETER": 1, + "XmlEntityDecl.EXTERNAL_PARAMETER": 1, + "XmlEntityDecl.INTERNAL_PREDEFINED": 1, + "entref": 1, + "XML_ENTITY_REFERENCE_ALLOCATOR": 2, + "entref.defineAnnotatedMethods": 1, + "XmlEntityReference.class": 1, + "namespace": 1, + "XML_NAMESPACE_ALLOCATOR": 2, + "namespace.defineAnnotatedMethods": 1, + "XmlNamespace.class": 1, + "nodeSet": 1, + "XML_NODESET_ALLOCATOR": 2, + "nodeSet.defineAnnotatedMethods": 1, + "XmlNodeSet.class": 1, + "pi": 1, + "XML_PROCESSING_INSTRUCTION_ALLOCATOR": 2, + "pi.defineAnnotatedMethods": 1, + "XmlProcessingInstruction.class": 1, + "reader": 1, + "XML_READER_ALLOCATOR": 2, + "reader.defineAnnotatedMethods": 1, + "XmlReader.class": 1, + "schema": 2, + "XML_SCHEMA_ALLOCATOR": 2, + "schema.defineAnnotatedMethods": 1, + "XmlSchema.class": 1, + "relaxng": 1, + "XML_RELAXNG_ALLOCATOR": 2, + "relaxng.defineAnnotatedMethods": 1, + "XmlRelaxng.class": 1, + "xpathContext": 1, + "XML_XPATHCONTEXT_ALLOCATOR": 2, + "xpathContext.defineAnnotatedMethods": 1, + "XmlXpathContext.class": 1, + "htmlElemDesc": 1, + "htmlModule.defineClassUnder": 3, + "HTML_ELEMENT_DESCRIPTION_ALLOCATOR": 2, + "htmlElemDesc.defineAnnotatedMethods": 1, + "HtmlElementDescription.class": 1, + "htmlEntityLookup": 1, + "HTML_ENTITY_LOOKUP_ALLOCATOR": 2, + "htmlEntityLookup.defineAnnotatedMethods": 1, + "HtmlEntityLookup.class": 1, + "xmlDocument": 5, + "XML_DOCUMENT_ALLOCATOR": 2, + "xmlDocument.defineAnnotatedMethods": 1, + "XmlDocument.class": 1, + "//RubyModule": 1, + "htmlDoc": 1, + "html.defineOrGetClassUnder": 1, + "HTML_DOCUMENT_ALLOCATOR": 2, + "htmlDocument.defineAnnotatedMethods": 1, + "HtmlDocument.class": 1, + "xmlSaxParserContext": 5, + "xmlSaxModule.defineClassUnder": 2, + "XML_SAXPARSER_CONTEXT_ALLOCATOR": 2, + "xmlSaxParserContext.defineAnnotatedMethods": 1, + "XmlSaxParserContext.class": 1, + "xmlSaxPushParser": 1, + "XML_SAXPUSHPARSER_ALLOCATOR": 2, + "xmlSaxPushParser.defineAnnotatedMethods": 1, + "XmlSaxPushParser.class": 1, + "htmlSaxParserContext": 4, + "htmlSaxModule.defineClassUnder": 1, + "HTML_SAXPARSER_CONTEXT_ALLOCATOR": 2, + "htmlSaxParserContext.defineAnnotatedMethods": 1, + "HtmlSaxParserContext.class": 1, + "stylesheet": 1, + "xsltModule.defineClassUnder": 1, + "XSLT_STYLESHEET_ALLOCATOR": 2, + "stylesheet.defineAnnotatedMethods": 1, + "XsltStylesheet.class": 2, + "xsltModule.defineAnnotatedMethod": 1, + "ObjectAllocator": 60, + "allocate": 30, + "EncodingHandler": 1, + "htmlDocument.clone": 1, + "clone.setMetaClass": 23, + "CloneNotSupportedException": 23, + "HtmlSaxParserContext": 5, + "htmlSaxParserContext.clone": 1, + "HtmlElementDescription": 1, + "HtmlEntityLookup": 1, + "XmlAttr": 5, + "xmlAttr": 3, + "xmlAttr.clone": 1, + "XmlCdata": 5, + "xmlCdata": 3, + "xmlCdata.clone": 1, + "XmlComment": 5, + "xmlComment": 3, + "xmlComment.clone": 1, + "xmlDocument.clone": 1, + "XmlDocumentFragment": 5, + "xmlDocumentFragment": 3, + "xmlDocumentFragment.clone": 1, + "XmlDtd": 5, + "xmlDtd": 3, + "xmlDtd.clone": 1, + "XmlElement": 5, + "xmlElement": 3, + "xmlElement.clone": 1, + "XmlElementDecl": 5, + "xmlElementDecl": 3, + "xmlElementDecl.clone": 1, + "XmlEntityReference": 5, + "xmlEntityRef": 3, + "xmlEntityRef.clone": 1, + "XmlNamespace": 5, + "xmlNamespace": 3, + "xmlNamespace.clone": 1, + "XmlNode": 5, + "xmlNode.clone": 1, + "XmlNodeSet": 5, + "xmlNodeSet": 5, + "xmlNodeSet.clone": 1, + "xmlNodeSet.setNodes": 1, + "RubyArray.newEmptyArray": 1, + "XmlProcessingInstruction": 5, + "xmlProcessingInstruction": 3, + "xmlProcessingInstruction.clone": 1, + "XmlReader": 5, + "xmlReader": 5, + "xmlReader.clone": 1, + "XmlAttributeDecl": 1, + "XmlEntityDecl": 1, + "runtime.newNotImplementedError": 1, + "XmlRelaxng": 5, + "xmlRelaxng": 3, + "xmlRelaxng.clone": 1, + "XmlSaxParserContext": 5, + "xmlSaxParserContext.clone": 1, + "XmlSaxPushParser": 1, + "XmlSchema": 5, + "xmlSchema": 3, + "xmlSchema.clone": 1, + "XmlSyntaxError": 5, + "xmlSyntaxError.clone": 1, + "XmlText": 6, + "xmlText": 3, + "xmlText.clone": 1, + "XmlXpathContext": 5, + "xmlXpathContext": 3, + "xmlXpathContext.clone": 1, + "XsltStylesheet": 4, + "xsltStylesheet": 3, + "xsltStylesheet.clone": 1, + "clojure.asm": 1, + "java.lang.reflect.Constructor": 1, + "java.lang.reflect.Method": 1, + "Type": 42, + "VOID": 5, + "BOOLEAN": 6, + "CHAR": 6, + "BYTE": 6, + "SHORT": 6, + "INT": 6, + "FLOAT": 6, + "LONG": 7, + "DOUBLE": 7, + "ARRAY": 6, + "OBJECT": 7, + "VOID_TYPE": 3, + "BOOLEAN_TYPE": 3, + "CHAR_TYPE": 3, + "BYTE_TYPE": 3, + "SHORT_TYPE": 3, + "INT_TYPE": 3, + "FLOAT_TYPE": 3, + "LONG_TYPE": 3, + "DOUBLE_TYPE": 3, + "sort": 18, + "buf": 43, + "off": 25, + "len": 24, + "this.sort": 2, + "this.len": 2, + "this.buf": 2, + "this.off": 1, + "getType": 10, + "typeDescriptor": 1, + "typeDescriptor.toCharArray": 1, + "Integer.TYPE": 2, + "Boolean.TYPE": 2, + "Byte.TYPE": 2, + "Character.TYPE": 2, + "Short.TYPE": 2, + "Double.TYPE": 2, + "Float.TYPE": 2, + "getObjectType": 1, + "l": 5, + "name.length": 2, + "name.getChars": 1, + "getArgumentTypes": 2, + "methodDescriptor": 2, + "methodDescriptor.toCharArray": 2, + "car": 18, + ".len": 1, + "Method": 3, + "method": 2, + "classes": 2, + "method.getParameterTypes": 1, + "types": 3, + "classes.length": 2, + "getReturnType": 2, + "methodDescriptor.indexOf": 1, + "method.getReturnType": 1, + "getSort": 1, + "getDimensions": 3, + "getElementType": 2, + "getClassName": 1, + "StringBuffer": 14, + ".getClassName": 1, + "b.append": 1, + "b.toString": 1, + ".replace": 2, + "getInternalName": 2, + "buf.toString": 4, + "getMethodDescriptor": 2, + "returnType": 1, + "argumentTypes": 2, + "buf.append": 21, + "argumentTypes.length": 1, + ".getDescriptor": 1, + "returnType.getDescriptor": 1, + "c.getName": 1, + "getConstructorDescriptor": 1, + "Constructor": 1, + "parameters": 4, + "c.getParameterTypes": 1, + "parameters.length": 2, + ".toString": 1, + "m": 1, + "m.getParameterTypes": 1, + "m.getReturnType": 1, + "d": 10, + "d.isPrimitive": 1, + "d.isArray": 1, + "d.getComponentType": 1, + "d.getName": 1, + "name.charAt": 1, + "getSize": 1, + "getOpcode": 1, + "opcode": 17, + "Opcodes.IALOAD": 1, + "Opcodes.IASTORE": 1, + "t.sort": 1, + "Type.OBJECT": 2, + "Type.ARRAY": 2, + "t.len": 1, + "t.off": 1, + "end": 4, + "t.buf": 1, + "hashCode": 1, + "hc": 4, "*": 2, - "TABU": 4, - "[": 8, - "": 3, - "in": 5, - "]": 8, - "": 2, - "with": 1, - "(": 6, - "m": 4, - "i": 8, - "or": 3, - "n": 4, - "j": 8, - ")": 6, - "and": 1, - "abs": 2, + "toString": 1 + }, + "Logos": { + "%": 15, + "hook": 2, + "ABC": 2, "-": 3, + "(": 8, + "id": 2, + ")": 8, + "a": 1, + "B": 1, + "b": 1, + "{": 4, + "log": 1, + ";": 8, + "return": 2, + "orig": 2, + "nil": 2, + "}": 4, + "end": 4, + "subclass": 1, + "DEF": 1, + "NSObject": 1, + "init": 3, + "[": 2, + "c": 1, + "RuntimeAccessibleClass": 1, + "alloc": 1, + "]": 2, + "group": 1, + "OptionalHooks": 2, + "void": 1, + "release": 1, + "self": 1, + "retain": 1, + "ctor": 1, + "if": 1, + "OptionalCondition": 1 + }, + "Shell": { + "echo": 71, + "SHEBANG#!bash": 8, + "set": 21, + "-": 391, + "e": 4, + "[": 85, + "n": 22, + "]": 85, + "&&": 65, + "x": 1, + "if": 39, + ";": 138, + "then": 41, + "unset": 10, + "system": 1, + "exec": 3, + "rbenv": 2, + "versions": 1, + "bare": 1, + "fi": 34, + "version": 12, + "z": 12, + "&": 5, + "exit": 10, + "else": 10, + "prefix": 1, + "/dev/null": 6, + "typeset": 5, + "i": 2, + "bottles": 6, + "no": 16, + "while": 3, + "do": 8, + "case": 9, + "{": 63, + "}": 61, + "in": 25, + ")": 154, + "%": 5, + "s": 14, + "esac": 7, + "done": 8, + "SHEBANG#!sh": 2, + "(": 107, + "rvm_ignore_rvmrc": 1, + "declare": 22, + "rvmrc": 3, + "rvm_rvmrc_files": 3, + "ef": 1, + "+": 1, + "for": 7, + "f": 68, + "GREP_OPTIONS": 1, + "grep": 8, + "printf": 4, + "source": 7, + "export": 25, + "rvm_path": 4, + "UID": 1, + "d": 9, + "elif": 4, + "rvm_is_not_a_shell_function": 2, + "rvm_path/scripts": 1, + "rvm": 1, + "#": 53, + "Bash": 3, + "script": 1, + "to": 33, + "the": 17, + "dotfile": 1, + "repository": 3, + "does": 1, + "a": 12, + "lot": 1, + "of": 6, + "fun": 2, + "stuff": 3, + "like": 1, + "turning": 1, + "normal": 1, + "dotfiles": 1, + "eg": 1, + ".bashrc": 1, + "into": 3, + "symlinks": 1, + "this": 6, + "git": 16, + "pull": 3, + "away": 1, + "optionally": 1, + "moving": 1, + "old": 4, + "files": 1, + "so": 1, + "that": 1, + "they": 1, + "can": 3, + "be": 3, + "preserved": 1, + "setting": 2, + "up": 1, + "cron": 1, + "job": 3, + "automate": 1, + "aforementioned": 1, + "and": 5, + "maybe": 1, + "some": 1, + "more": 3, + "shopt": 13, + "nocasematch": 1, + "This": 1, + "makes": 1, + "pattern": 1, + "matching": 1, + "insensitive": 1, + "POSTFIX": 1, + "URL": 1, + "PUSHURL": 1, + "overwrite": 3, + "true": 2, + "print_help": 2, + "opt": 3, + "@": 3, + "k": 1, + "|": 17, + "keep": 3, + "local": 22, + "false": 2, + "h": 3, + "help": 5, + ".*": 2, + "o": 3, + "continue": 1, + "mv": 1, + "rm": 2, + "ln": 1, + "config": 4, + "remote.origin.url": 1, + "remote.origin.pushurl": 1, + "crontab": 1, + ".jobs.cron": 1, + "/.bashrc": 3, + "SHEBANG#!zsh": 2, + "name": 1, + "foodforthought.jpg": 1, + "name##*fo": 1, + "PATH": 14, + "##": 28, + "SCREENDIR": 2, + "/usr/local/bin": 6, + "/usr/local/sbin": 6, + "/usr/xpg4/bin": 4, + "/usr/sbin": 6, + "/usr/bin": 8, + "/usr/sfw/bin": 4, + "/usr/ccs/bin": 4, + "/usr/openwin/bin": 4, + "/opt/mysql/current/bin": 4, + "MANPATH": 2, + "/usr/local/man": 2, + "/usr/share/man": 2, + "Random": 2, + "ENV...": 2, + "TERM": 4, + "COLORTERM": 2, + "CLICOLOR": 2, + "anything": 2, + "actually": 2, + "DISPLAY": 2, + "r": 17, + ".": 5, + "##############################################################################": 16, + "#Import": 2, + "shell": 4, + "agnostic": 2, + "or": 3, + "Zsh": 2, + "environment": 2, + "/.profile": 2, + "HISTSIZE": 2, + "#How": 2, + "many": 2, + "lines": 2, + "history": 18, + "memory": 3, + "HISTFILE": 2, + "/.zsh_history": 2, + "#Where": 2, + "save": 4, + "disk": 5, + "SAVEHIST": 2, + "#Number": 2, + "entries": 2, + "HISTDUP": 2, + "erase": 2, + "#Erase": 2, + "duplicates": 2, + "file": 9, + "setopt": 8, + "appendhistory": 2, + "#Append": 2, + "overwriting": 2, + "sharehistory": 2, + "#Share": 2, + "across": 2, + "terminals": 2, + "incappendhistory": 2, + "#Immediately": 2, + "append": 2, + "not": 2, + "just": 2, + "when": 2, + "term": 2, + "is": 11, + "killed": 2, + "#.": 2, + "/.dotfiles/z": 4, + "zsh/z.sh": 2, + "#function": 2, + "precmd": 2, + "rupa/z.sh": 2, + "dirpersiststore": 2, + "umask": 2, + "path": 13, + "/opt/local/bin": 2, + "/opt/local/sbin": 2, + "/bin": 4, + "prompt": 2, + "endif": 2, + "function": 6, + "ls": 6, + "command": 5, + "Fh": 2, + "l": 8, + "list": 3, + "long": 2, + "format...": 2, + "ll": 2, + "less": 2, + "XF": 2, + "pipe": 2, + "#CDPATH": 2, + "HISTIGNORE": 2, + "HISTCONTROL": 2, + "ignoreboth": 2, + "cdspell": 2, + "extglob": 2, + "progcomp": 2, + "complete": 82, + "X": 54, + "bunzip2": 2, + "bzcat": 2, + "bzcmp": 2, + "bzdiff": 2, + "bzegrep": 2, + "bzfgrep": 2, + "bzgrep": 2, + "unzip": 2, + "zipinfo": 2, + "compress": 2, + "znew": 2, + "gunzip": 2, + "zcmp": 2, + "zdiff": 2, + "zcat": 2, + "zegrep": 2, + "zfgrep": 2, + "zgrep": 2, + "zless": 2, + "zmore": 2, + "uncompress": 2, + "ee": 2, + "display": 2, + "xv": 2, + "qiv": 2, + "gv": 2, + "ggv": 2, + "xdvi": 2, + "dvips": 2, + "dviselect": 2, + "dvitype": 2, + "acroread": 2, + "xpdf": 2, + "makeinfo": 2, + "texi2html": 2, + "tex": 2, + "latex": 2, + "slitex": 2, + "jadetex": 2, + "pdfjadetex": 2, + "pdftex": 2, + "pdflatex": 2, + "texi2dvi": 2, + "mpg123": 2, + "mpg321": 2, + "xine": 2, + "aviplay": 2, + "realplay": 2, + "xanim": 2, + "ogg123": 2, + "gqmpeg": 2, + "freeamp": 2, + "xmms": 2, + "xfig": 2, + "timidity": 2, + "playmidi": 2, + "vi": 2, + "vim": 2, + "gvim": 2, + "rvim": 2, + "view": 2, + "rview": 2, + "rgvim": 2, + "rgview": 2, + "gview": 2, + "emacs": 2, + "wine": 2, + "bzme": 2, + "netscape": 2, + "mozilla": 2, + "lynx": 2, + "opera": 2, + "w3m": 2, + "galeon": 2, + "curl": 8, + "dillo": 2, + "elinks": 2, + "links": 2, + "u": 2, + "su": 2, + "passwd": 2, + "groups": 2, + "user": 2, + "commands": 8, + "see": 4, + "only": 6, + "users": 2, + "A": 10, + "stopped": 4, + "P": 4, + "bg": 4, + "completes": 10, + "with": 12, + "jobs": 4, + "j": 2, + "fg": 2, + "disown": 2, + "other": 2, + "v": 11, + "readonly": 4, + "variables": 2, + "options": 8, + "helptopic": 2, + "helptopics": 2, + "unalias": 4, + "aliases": 2, + "binding": 2, + "bind": 4, + "readline": 2, + "bindings": 2, + "make": 6, + "intelligent": 2, + "c": 2, + "type": 5, + "which": 10, + "man": 6, + "#sudo": 2, + "on": 4, + "pushd": 2, + "cd": 11, + "rmdir": 2, + "Make": 2, + "directory": 5, + "directories": 2, + "W": 2, + "alias": 42, + "filenames": 2, + "PS1": 2, + "..": 2, + "cd..": 2, + "t": 3, + "csh": 2, + "same": 2, + "as": 2, + "bash...": 2, + "quit": 2, + "q": 8, + "even": 3, + "shorter": 2, + "D": 2, + "rehash": 2, + "after": 2, + "I": 2, + "edit": 2, + "it": 2, + "pg": 2, + "patch": 2, + "sed": 2, + "awk": 2, + "diff": 2, + "find": 2, + "ps": 2, + "whoami": 2, + "ping": 2, + "histappend": 2, + "PROMPT_COMMAND": 2, + "/usr/bin/clear": 2, + "docker": 1, + "from": 1, + "ubuntu": 1, + "maintainer": 1, + "Solomon": 1, + "Hykes": 1, + "": 1, + "run": 13, + "apt": 6, + "get": 6, + "install": 8, + "y": 5, + "https": 2, + "//go.googlecode.com/files/go1.1.1.linux": 1, + "amd64.tar.gz": 1, + "tar": 1, + "C": 1, + "/usr/local": 1, + "xz": 1, + "env": 4, + "/usr/local/go/bin": 2, + "/sbin": 2, + "GOPATH": 1, + "/go": 1, + "CGO_ENABLED": 1, + "/tmp": 1, + "t.go": 1, + "go": 2, + "test": 1, + "PKG": 12, + "github.com/kr/pty": 1, + "REV": 6, + "c699": 1, + "clone": 5, + "http": 3, + "//": 3, + "/go/src/": 6, + "checkout": 3, + "github.com/gorilla/context/": 1, + "d61e5": 1, + "github.com/gorilla/mux/": 1, + "b36453141c": 1, + "iptables": 1, + "/etc/apt/sources.list": 1, + "update": 2, + "lxc": 1, + "aufs": 1, + "tools": 1, + "add": 1, + "/go/src/github.com/dotcloud/docker": 1, + "/go/src/github.com/dotcloud/docker/docker": 1, + "ldflags": 1, + "/go/bin": 1, + "cmd": 1, + "fpath": 6, + "HOME/.zsh/func": 2, + "U": 2, + "pkgname": 1, + "stud": 4, + "pkgver": 1, + "pkgrel": 1, + "pkgdesc": 1, + "arch": 1, + "i686": 1, + "x86_64": 1, + "url": 4, + "license": 1, + "depends": 1, + "libev": 1, + "openssl": 1, + "makedepends": 1, + "provides": 1, + "conflicts": 1, + "_gitroot": 1, + "//github.com/bumptech/stud.git": 1, + "_gitname": 1, + "build": 2, + "msg": 4, + "origin": 1, + "rf": 1, + "package": 1, + "PREFIX": 1, + "/usr": 1, + "DESTDIR": 1, + "Dm755": 1, + "init.stud": 1, + "mkdir": 2, + "p": 2, + "stty": 2, + "istrip": 2, + "sbt_release_version": 2, + "sbt_snapshot_version": 2, + "SNAPSHOT": 3, + "sbt_jar": 3, + "sbt_dir": 2, + "sbt_create": 2, + "sbt_snapshot": 1, + "sbt_launch_dir": 3, + "scala_version": 3, + "java_home": 1, + "sbt_explicit_version": 7, + "verbose": 6, + "debug": 11, + "quiet": 6, + "build_props_sbt": 3, + "project/build.properties": 9, + "versionLine": 2, + "sbt.version": 3, + "versionString": 3, + "versionLine##sbt.version": 1, + "update_build_props_sbt": 2, + "ver": 5, + "return": 3, + "perl": 3, + "pi": 1, + "||": 12, + "Updated": 1, + "Previous": 1, + "value": 1, + "was": 1, + "sbt_version": 8, + "echoerr": 3, + "vlog": 1, + "dlog": 8, + "get_script_path": 2, + "L": 1, + "target": 1, + "readlink": 1, + "get_mem_opts": 3, + "mem": 4, + "perm": 6, + "/": 2, + "<": 2, + "codecache": 1, + "die": 2, + "make_url": 3, + "groupid": 1, + "category": 1, + "default_jvm_opts": 1, + "default_sbt_opts": 1, + "default_sbt_mem": 2, + "noshare_opts": 1, + "sbt_opts_file": 1, + "jvm_opts_file": 1, + "latest_28": 1, + "latest_29": 1, + "latest_210": 1, + "script_path": 1, + "script_dir": 1, + "script_name": 2, + "java_cmd": 2, + "java": 2, + "sbt_mem": 5, + "residual_args": 4, + "java_args": 3, + "scalac_args": 4, + "sbt_commands": 2, + "build_props_scala": 1, + "build.scala.versions": 1, + "versionLine##build.scala.versions": 1, + "execRunner": 2, + "arg": 3, + "sbt_groupid": 3, + "*": 11, + "org.scala": 4, + "tools.sbt": 3, + "sbt": 18, + "sbt_artifactory_list": 2, + "version0": 2, + "F": 1, + "pe": 1, + "make_release_url": 2, + "releases": 1, + "make_snapshot_url": 2, + "snapshots": 1, + "head": 1, + "jar_url": 1, + "jar_file": 1, + "download_url": 2, + "jar": 3, + "dirname": 1, + "fail": 1, + "silent": 1, + "output": 1, + "wget": 2, + "O": 1, + "acquire_sbt_jar": 1, + "sbt_url": 1, + "usage": 2, + "cat": 3, + "<<": 2, + "EOM": 3, + "Usage": 1, + "print": 1, + "message": 1, + "runner": 1, + "chattier": 1, + "log": 2, + "level": 2, + "Debug": 1, + "Error": 1, + "colors": 2, + "disable": 1, + "ANSI": 1, + "color": 1, + "codes": 1, + "create": 2, + "start": 1, + "current": 1, + "contains": 2, + "project": 1, + "dir": 3, + "": 3, + "global": 1, + "settings/plugins": 1, + "default": 4, + "/.sbt/": 1, + "": 1, + "boot": 3, + "shared": 1, + "/.sbt/boot": 1, + "series": 1, + "ivy": 2, + "Ivy": 1, + "/.ivy2": 1, + "": 1, + "share": 2, + "use": 1, + "all": 1, + "caches": 1, + "sharing": 1, + "offline": 3, + "put": 1, + "mode": 2, + "jvm": 2, + "": 1, + "Turn": 1, + "JVM": 1, + "debugging": 1, + "open": 1, + "at": 1, + "given": 2, + "port.": 1, + "batch": 2, + "Disable": 1, + "interactive": 1, + "The": 1, + "way": 1, + "accomplish": 1, + "pre": 1, + "there": 2, + "build.properties": 1, + "an": 1, + "property": 1, + "disk.": 1, + "That": 1, + "scalacOptions": 3, + "S": 2, + "stripped": 1, + "In": 1, + "duplicated": 1, + "conflicting": 1, + "order": 1, + "above": 1, + "shows": 1, + "precedence": 1, + "JAVA_OPTS": 1, + "lowest": 1, + "line": 1, + "highest.": 1, + "addJava": 9, + "addSbt": 12, + "addScalac": 2, + "addResidual": 2, + "addResolver": 1, + "addDebugger": 2, + "get_jvm_opts": 2, + "process_args": 2, + "require_arg": 12, + "gt": 1, + "shift": 28, + "integer": 1, + "inc": 1, + "port": 1, + "snapshot": 1, + "launch": 1, + "scala": 3, + "home": 2, + "D*": 1, + "J*": 1, + "S*": 1, + "sbtargs": 3, + "IFS": 1, + "read": 1, + "<\"$sbt_opts_file\">": 1, + "process": 1, + "combined": 1, + "args": 2, + "reset": 1, + "residuals": 1, + "argumentCount=": 1, + "we": 1, + "were": 1, + "any": 1, + "opts": 1, + "eq": 1, + "0": 1, + "ThisBuild": 1, + "Update": 1, + "properties": 1, + "explicit": 1, + "gives": 1, + "us": 1, + "choice": 1, + "Detected": 1, + "Overriding": 1, + "alert": 1, + "them": 1, + "here": 1, + "argumentCount": 1, + "./build.sbt": 1, + "./project": 1, + "pwd": 1, + "doesn": 1, + "understand": 1, + "iflast": 1, + "#residual_args": 1 + }, + "LiveScript": { + "a": 8, + "-": 25, + "const": 1, + "b": 3, "var": 1, + "c": 3, + "d": 3, + "_000_000km": 1, + "*": 1, + "ms": 1, + "e": 2, + "(": 9, + ")": 10, + "dashes": 1, + "identifiers": 1, + "underscores_i": 1, + "/regexp1/": 1, + "and": 3, + "//regexp2//g": 1, + "strings": 1, + "[": 2, + "til": 1, + "]": 2, + "or": 2, + "to": 2, + "|": 3, + "map": 1, + "filter": 1, + "fold": 1, + "+": 1, + "class": 1, + "Class": 1, + "extends": 1, + "Anc": 1, + "est": 1, + "args": 1, + "copy": 1, + "from": 1, + "callback": 4, + "error": 6, + "data": 2, + "<": 1, + "read": 1, + "file": 2, + "return": 2, + "if": 2, + "<~>": 1, + "write": 1 + }, + "Apex": { + "global": 70, + "class": 7, + "BooleanUtils": 1, + "{": 219, + "static": 83, + "Boolean": 38, + "isFalse": 1, + "(": 481, + "bool": 32, + ")": 481, + "if": 91, + "null": 92, + "return": 106, + "false": 13, + ";": 308, + "else": 25, + "}": 219, + "isNotFalse": 1, + "true": 12, + "isNotTrue": 1, + "isTrue": 1, + "negate": 1, + "toBooleanDefaultIfNull": 1, + "defaultVal": 2, + "toBoolean": 2, + "Integer": 34, + "value": 10, + "strToBoolean": 1, + "String": 60, + "StringUtils.equalsIgnoreCase": 1, + "//Converts": 1, + "an": 4, + "int": 1, + "to": 4, + "a": 6, + "boolean": 1, + "specifying": 1, + "//the": 2, + "conversion": 1, + "values.": 1, + "//Returns": 1, + "//Throws": 1, + "trueValue": 2, + "falseValue": 2, + "throw": 6, + "new": 60, + "IllegalArgumentException": 5, + "toInteger": 1, + "toStringYesNo": 1, + "toStringYN": 1, + "toString": 3, + "trueString": 2, + "falseString": 2, + "xor": 1, + "[": 102, + "]": 102, + "boolArray": 4, + "||": 12, + "boolArray.size": 1, + "firstItem": 2, + "for": 24, + "TwilioAPI": 2, + "private": 10, + "MissingTwilioConfigCustomSettingsException": 2, + "extends": 1, + "Exception": 1, + "TwilioRestClient": 5, + "client": 2, + "public": 10, + "getDefaultClient": 2, + "TwilioConfig__c": 5, + "twilioCfg": 7, + "getTwilioConfig": 3, + "TwilioAPI.client": 2, + "twilioCfg.AccountSid__c": 3, + "twilioCfg.AuthToken__c": 3, + "TwilioAccount": 1, + "getDefaultAccount": 1, + ".getAccount": 2, + "TwilioCapability": 2, + "createCapability": 1, + "createClient": 1, + "accountSid": 2, + "authToken": 2, + "Test.isRunningTest": 1, + "//": 11, + "dummy": 2, + "sid": 1, + "token": 7, + "TwilioConfig__c.getOrgDefaults": 1, + "@isTest": 1, + "void": 9, + "test_TwilioAPI": 1, + "System.assertEquals": 5, + "TwilioAPI.getTwilioConfig": 2, + ".AccountSid__c": 1, + ".AuthToken__c": 1, + "TwilioAPI.getDefaultClient": 2, + ".getAccountSid": 1, + ".getSid": 2, + "TwilioAPI.getDefaultAccount": 1, + "EmailUtils": 1, + "sendEmailWithStandardAttachments": 3, + "List": 71, + "": 30, + "recipients": 11, + "emailSubject": 10, + "body": 8, + "useHTML": 6, + "": 1, + "attachmentIDs": 2, + "": 2, + "stdAttachments": 4, + "SELECT": 1, + "id": 1, + "name": 2, + "FROM": 1, + "Attachment": 2, + "WHERE": 1, + "Id": 1, + "IN": 1, + "": 3, + "fileAttachments": 5, + "attachment": 1, + "Messaging.EmailFileAttachment": 2, + "fileAttachment": 2, + "fileAttachment.setFileName": 1, + "attachment.Name": 1, + "fileAttachment.setBody": 1, + "attachment.Body": 1, + "fileAttachments.add": 1, + "sendEmail": 4, + "sendTextEmail": 1, + "textBody": 2, + "sendHTMLEmail": 1, + "htmlBody": 2, + "recipients.size": 1, + "Messaging.SingleEmailMessage": 3, + "mail": 2, + "email": 1, + "is": 5, + "not": 3, + "saved": 1, + "as": 1, + "activity.": 1, + "mail.setSaveAsActivity": 1, + "mail.setToAddresses": 1, + "mail.setSubject": 1, + "mail.setBccSender": 1, + "mail.setUseSignature": 1, + "mail.setHtmlBody": 1, + "mail.setPlainTextBody": 1, + "&&": 46, + "fileAttachments.size": 1, + "mail.setFileAttachments": 1, + "Messaging.sendEmail": 1, + "isValidEmailAddress": 2, + "str": 10, + "str.trim": 3, + ".length": 2, + "split": 5, + "str.split": 1, + "split.size": 2, + ".split": 1, + "isNotValidEmailAddress": 1, + "GeoUtils": 1, + "generate": 1, + "KML": 1, + "string": 7, + "given": 2, + "page": 1, + "reference": 1, + "call": 1, + "getContent": 1, + "then": 1, + "cleanup": 1, + "the": 4, + "output.": 1, + "generateFromContent": 1, + "PageReference": 2, + "pr": 1, + "ret": 7, + "try": 1, + "pr.getContent": 1, + ".toString": 1, + "ret.replaceAll": 4, + "get": 4, + "content": 1, + "produces": 1, + "quote": 1, + "chars": 1, + "we": 1, + "need": 1, + "escape": 1, + "these": 2, + "in": 1, + "node": 1, + "catch": 1, + "exception": 1, + "e": 2, + "system.debug": 2, + "+": 75, + "must": 1, + "use": 1, + "ALL": 1, + "since": 1, + "many": 1, + "line": 1, + "may": 1, + "also": 1, + "Map": 33, + "": 2, + "geo_response": 1, + "accountAddressString": 2, + "account": 2, + "acct": 1, + "form": 1, + "address": 1, + "object": 1, + "adr": 9, + "acct.billingstreet": 1, + "acct.billingcity": 1, + "acct.billingstate": 1, + "acct.billingpostalcode": 2, + "acct.billingcountry": 2, + "adr.replaceAll": 4, + "testmethod": 1, + "t1": 1, + "pageRef": 3, + "Page.kmlPreviewTemplate": 1, + "Test.setCurrentPage": 1, + "system.assert": 1, + "GeoUtils.generateFromContent": 1, + "Account": 2, + "billingstreet": 1, + "billingcity": 1, + "billingstate": 1, + "billingpostalcode": 1, + "billingcountry": 1, + "insert": 1, + "system.assertEquals": 1, + "LanguageUtils": 1, + "final": 6, + "HTTP_LANGUAGE_CODE_PARAMETER_KEY": 2, + "DEFAULT_LANGUAGE_CODE": 3, + "Set": 6, + "SUPPORTED_LANGUAGE_CODES": 2, + "//Chinese": 2, + "Simplified": 1, + "Traditional": 1, + "//Dutch": 1, + "//English": 1, + "//Finnish": 1, + "//French": 1, + "//German": 1, + "//Italian": 1, + "//Japanese": 1, + "//Korean": 1, + "//Polish": 1, + "//Portuguese": 1, + "Brazilian": 1, + "//Russian": 1, + "//Spanish": 1, + "//Swedish": 1, + "//Thai": 1, + "//Czech": 1, + "//Danish": 1, + "//Hungarian": 1, + "//Indonesian": 1, + "//Turkish": 1, + "": 29, + "DEFAULTS": 1, + "getLangCodeByHttpParam": 4, + "returnValue": 22, + "LANGUAGE_CODE_SET": 1, + "getSuppLangCodeSet": 2, + "ApexPages.currentPage": 4, + ".getParameters": 2, + "LANGUAGE_HTTP_PARAMETER": 7, + "StringUtils.lowerCase": 3, + "StringUtils.replaceChars": 2, + ".get": 4, + "//underscore": 1, + "//dash": 1, + "DEFAULTS.containsKey": 3, + "DEFAULTS.get": 3, + "StringUtils.isNotBlank": 1, + "SUPPORTED_LANGUAGE_CODES.contains": 2, + "getLangCodeByBrowser": 4, + "LANGUAGES_FROM_BROWSER_AS_STRING": 2, + ".getHeaders": 1, + "LANGUAGES_FROM_BROWSER_AS_LIST": 3, + "splitAndFilterAcceptLanguageHeader": 2, + "LANGUAGES_FROM_BROWSER_AS_LIST.size": 1, + "languageFromBrowser": 6, + "getLangCodeByUser": 3, + "UserInfo.getLanguage": 1, + "getLangCodeByHttpParamOrIfNullThenBrowser": 1, + "StringUtils.defaultString": 4, + "getLangCodeByHttpParamOrIfNullThenUser": 1, + "getLangCodeByBrowserOrIfNullThenHttpParam": 1, + "getLangCodeByBrowserOrIfNullThenUser": 1, + "header": 2, + "returnList": 11, + "tokens": 3, + "StringUtils.split": 1, + "token.contains": 1, + "token.substring": 1, + "token.indexOf": 1, + "returnList.add": 8, + "StringUtils.length": 1, + "StringUtils.substring": 1, + "langCodes": 2, + "langCode": 3, + "langCodes.add": 1, + "getLanguageName": 1, + "displayLanguageCode": 13, + "languageCode": 2, + "translatedLanguageNames.get": 2, + "filterLanguageCode": 4, + "getAllLanguages": 3, + "translatedLanguageNames.containsKey": 1, + "<": 32, + "translatedLanguageNames": 1, + "ArrayUtils": 1, + "EMPTY_STRING_ARRAY": 1, + "MAX_NUMBER_OF_ELEMENTS_IN_LIST": 5, + "objectToString": 1, + "": 22, + "objects": 3, + "strings": 3, + "objects.size": 1, + "Object": 23, + "obj": 3, + "instanceof": 1, + "strings.add": 1, + "reverse": 2, + "anArray": 14, + "i": 55, + "j": 10, + "anArray.size": 2, + "-": 18, + "tmp": 6, + "while": 8, + "SObject": 19, + "lowerCase": 1, + "strs": 9, + "strs.size": 3, + "returnValue.add": 3, + "str.toLowerCase": 1, + "upperCase": 1, + "str.toUpperCase": 1, + "trim": 1, + "mergex": 2, + "array1": 8, + "array2": 9, + "merged": 6, + "array1.size": 4, + "array2.size": 2, + "": 19, + "sObj": 4, + "merged.add": 2, + "isEmpty": 7, + "objectArray": 17, + "objectArray.size": 6, + "isNotEmpty": 4, + "pluck": 1, + "fieldName": 3, + "fieldName.trim": 2, + "plucked": 3, + "assertArraysAreEqual": 2, + "expected": 16, + "actual": 16, + "//check": 2, + "see": 2, + "one": 2, + "param": 2, + "but": 2, + "other": 2, + "System.assert": 6, + "ArrayUtils.toString": 12, + "expected.size": 4, + "actual.size": 2, + "merg": 2, + "list1": 15, + "list2": 9, + "list1.size": 6, + "list2.size": 2, + "elmt": 8, + "subset": 6, + "aList": 4, + "count": 10, + "startIndex": 9, + "<=>": 2, + "size": 2, + "1": 2, + "list1.get": 2, + "//LIST/ARRAY": 1, + "SORTING": 1, + "//FOR": 2, + "FORCE.COM": 1, + "PRIMITIVES": 1, + "Double": 1, + "ID": 1, + "etc.": 1, + "qsort": 18, + "theList": 72, + "PrimitiveComparator": 2, + "sortAsc": 24, + "ObjectComparator": 3, + "comparator": 14, + "theList.size": 2, + "SALESFORCE": 1, + "OBJECTS": 1, + "sObjects": 1, + "ISObjectComparator": 3, + "lo0": 6, + "hi0": 8, + "lo": 42, + "hi": 50, + "comparator.compare": 12, + "prs": 8, + "pivot": 14, + "/": 4 + }, + "GAMS": { + "*Basic": 1, + "example": 2, + "of": 7, + "transport": 5, + "model": 6, + "from": 2, + "GAMS": 5, + "library": 3, + "Title": 1, + "A": 3, + "Transportation": 1, + "Problem": 1, + "(": 22, + "TRNSPORT": 1, + "SEQ": 1, + ")": 22, + "Ontext": 1, + "This": 2, + "problem": 1, + "finds": 1, + "a": 3, + "least": 1, + "cost": 4, + "shipping": 1, + "schedule": 1, + "that": 1, + "meets": 1, + "requirements": 1, + "at": 5, + "markets": 2, + "and": 2, + "supplies": 1, + "factories.": 1, + "Dantzig": 1, + "G": 1, + "B": 1, + "Chapter": 2, + "In": 2, + "Linear": 1, + "Programming": 1, + "Extensions.": 1, + "Princeton": 2, + "University": 1, + "Press": 2, + "New": 1, + "Jersey": 1, + "formulation": 1, + "is": 1, + "described": 1, + "in": 10, + "detail": 1, + "Rosenthal": 1, + "R": 1, + "E": 1, + "Tutorial.": 1, + "User": 1, + "s": 1, + "Guide.": 1, + "The": 2, + "Scientific": 1, + "Redwood": 1, + "City": 1, + "California": 1, + "line": 1, + "numbers": 1, + "will": 1, + "not": 1, + "match": 1, + "those": 1, + "the": 1, + "book": 1, + "because": 1, + "these": 1, + "comments.": 1, + "Offtext": 1, + "Sets": 1, + "i": 18, + "canning": 1, + "plants": 1, + "/": 9, + "seattle": 3, + "san": 3, + "-": 6, + "diego": 3, + "j": 18, + "new": 3, + "york": 3, + "chicago": 3, + "topeka": 3, + ";": 15, + "Parameters": 1, + "capacity": 1, + "plant": 2, + "cases": 3, + "b": 2, + "demand": 4, + "market": 2, + "Table": 1, + "d": 2, + "distance": 1, + "thousands": 3, + "miles": 2, + "Scalar": 1, + "f": 2, + "freight": 1, + "dollars": 3, + "per": 3, + "case": 2, + "thousand": 1, + "/90/": 1, + "Parameter": 1, + "c": 3, + "*": 1, + "Variables": 1, "x": 4, - "binary": 1, - "maximize": 1, - "queens": 1, - "sum": 2, - "subto": 1, - "c1": 1, - "forall": 1, + "shipment": 1, + "quantities": 1, + "z": 3, + "total": 1, + "transportation": 1, + "costs": 1, + "Positive": 1, + "Variable": 1, + "Equations": 1, + "define": 1, + "objective": 1, + "function": 1, + "supply": 3, + "observe": 1, + "limit": 1, + "satisfy": 1, + "..": 3, + "e": 1, + "sum": 3, + "*x": 1, + "l": 1, + "g": 1, + "Model": 1, + "/all/": 1, + "Solve": 1, + "using": 1, + "lp": 1, + "minimizing": 1, + "Display": 1, + "x.l": 1, + "x.m": 1, + "ontext": 1, + "#user": 1, + "stuff": 1, + "Main": 1, + "topic": 1, + "Basic": 2, + "Featured": 4, + "item": 4, + "Trnsport": 1, + "Description": 1, + "offtext": 1 + }, + "Slim": { + "doctype": 1, + "html": 2, + "head": 1, + "title": 1, + "Slim": 2, + "Examples": 1, + "meta": 2, + "name": 2, + "content": 2, + "author": 2, + "javascript": 1, + "alert": 1, + "(": 1, + ")": 1, + "body": 1, + "h1": 1, + "Markup": 1, + "examples": 1, + "#content": 1, + "p": 2, + "This": 1, + "example": 1, + "shows": 1, + "you": 2, + "how": 1, + "a": 1, + "basic": 1, + "file": 1, + "looks": 1, + "like.": 1, + "yield": 1, + "-": 3, + "unless": 1, + "items.empty": 1, + "table": 1, + "for": 1, + "item": 1, + "in": 1, + "items": 2, "do": 1, - "card": 2 + "tr": 1, + "td.name": 1, + "item.name": 1, + "td.price": 1, + "item.price": 1, + "else": 1, + "|": 2, + "No": 1, + "found.": 1, + "Please": 1, + "add": 1, + "some": 1, + "inventory.": 1, + "Thank": 1, + "div": 1, + "id": 1, + "render": 1, + "Copyright": 1, + "#": 2, + "{": 2, + "year": 1, + "}": 2 + }, + "Elm": { + "main": 3, + "asText": 1, + "(": 119, + "qsort": 4, + "[": 31, + "]": 31, + ")": 116, + "lst": 6, + "case": 5, + "of": 7, + "x": 13, + "xs": 9, + "-": 11, + "filter": 2, + "+": 14, + "<)x)>": 1, + "import": 3, + "List": 1, + "intercalate": 2, + "intersperse": 3, + "Website.Skeleton": 1, + "Website.ColorScheme": 1, + "addFolder": 4, + "folder": 2, + "let": 2, + "add": 2, + "y": 7, + "in": 2, + "f": 8, + "n": 2, + "map": 11, + "elements": 2, + "functional": 2, + "reactive": 2, + "example": 3, + "name": 6, + "loc": 2, + "Text.link": 1, + "toText": 6, + "toLinks": 2, + "title": 2, + "links": 2, + "flow": 4, + "right": 8, + "width": 3, + "text": 4, + "italic": 1, + "bold": 2, + ".": 9, + "Text.color": 1, + "accent4": 1, + "insertSpace": 2, + "{": 1, + "spacer": 2, + ";": 1, + "}": 1, + "subsection": 2, + "w": 7, + "info": 2, + "down": 3, + "words": 2, + "markdown": 1, + "|": 3, + "###": 1, + "Basic": 1, + "Examples": 1, + "Each": 1, + "listed": 1, + "below": 1, + "focuses": 1, + "on": 1, + "a": 5, + "single": 1, + "function": 1, + "or": 1, + "concept.": 1, + "These": 1, + "examples": 1, + "demonstrate": 1, + "all": 1, + "the": 1, + "basic": 1, + "building": 1, + "blocks": 1, + "Elm.": 1, + "content": 2, + "exampleSets": 2, + "plainText": 1, + "lift": 1, + "skeleton": 1, + "Window.width": 1, + "data": 1, + "Tree": 3, + "Node": 8, + "Empty": 8, + "empty": 2, + "singleton": 2, + "v": 8, + "insert": 4, + "tree": 7, + "left": 7, + "if": 2, + "then": 2, + "else": 2, + "<": 1, + "fromList": 3, + "foldl": 1, + "depth": 5, + "max": 1, + "t1": 2, + "t2": 3, + "display": 4, + "monospace": 1, + "concat": 1, + "show": 2 + }, + "C#": { + "using": 5, + "System": 1, + ";": 8, + "System.Collections.Generic": 1, + "System.Linq": 1, + "System.Text": 1, + "System.Threading.Tasks": 1, + "namespace": 1, + "LittleSampleApp": 1, + "{": 5, + "///": 4, + "": 1, + "Just": 1, + "what": 1, + "it": 2, + "says": 1, + "on": 1, + "the": 5, + "tin.": 1, + "A": 1, + "little": 1, + "sample": 1, + "application": 1, + "for": 4, + "Linguist": 1, + "to": 4, + "try": 1, + "out.": 1, + "": 1, + "class": 1, + "Program": 1, + "static": 1, + "void": 1, + "Main": 1, + "(": 3, + "string": 1, + "[": 1, + "]": 1, + "args": 1, + ")": 3, + "Console.WriteLine": 2, + "}": 5, + "@": 1, + "ViewBag.Title": 1, + "@section": 1, + "featured": 1, + "
": 1, + "class=": 7, + "
": 1, + "
": 1, + "

": 1, + "@ViewBag.Title.": 1, + "

": 1, + "

": 1, + "@ViewBag.Message": 1, + "

": 1, + "
": 1, + "

": 1, + "To": 1, + "learn": 1, + "more": 4, + "about": 2, + "ASP.NET": 5, + "MVC": 4, + "visit": 2, + "": 5, + "href=": 5, + "title=": 2, + "http": 1, + "//asp.net/mvc": 1, + "": 5, + ".": 2, + "The": 1, + "page": 1, + "features": 3, + "": 1, + "videos": 1, + "tutorials": 1, + "and": 6, + "samples": 1, + "": 1, + "help": 1, + "you": 4, + "get": 1, + "most": 1, + "from": 1, + "MVC.": 1, + "If": 1, + "have": 1, + "any": 1, + "questions": 1, + "our": 1, + "forums": 1, + "

": 1, + "
": 1, + "
": 1, + "

": 1, + "We": 1, + "suggest": 1, + "following": 1, + "

": 1, + "
    ": 1, + "
  1. ": 3, + "
    ": 3, + "Getting": 1, + "Started": 1, + "
    ": 3, + "gives": 2, + "a": 3, + "powerful": 1, + "patterns": 1, + "-": 3, + "based": 1, + "way": 1, + "build": 1, + "dynamic": 1, + "websites": 1, + "that": 5, + "enables": 1, + "clean": 1, + "separation": 1, + "of": 2, + "concerns": 1, + "full": 1, + "control": 1, + "over": 1, + "markup": 1, + "enjoyable": 1, + "agile": 1, + "development.": 1, + "includes": 1, + "many": 1, + "enable": 1, + "fast": 1, + "TDD": 1, + "friendly": 1, + "development": 1, + "creating": 1, + "sophisticated": 1, + "applications": 1, + "use": 1, + "latest": 1, + "web": 2, + "standards.": 1, + "Learn": 3, + "
  2. ": 3, + "Add": 1, + "NuGet": 2, + "packages": 1, + "jump": 1, + "start": 1, + "your": 2, + "coding": 1, + "makes": 1, + "easy": 1, + "install": 1, + "update": 1, + "free": 1, + "libraries": 1, + "tools.": 1, + "Find": 1, + "Web": 1, + "Hosting": 1, + "You": 1, + "can": 1, + "easily": 1, + "find": 1, + "hosting": 1, + "company": 1, + "offers": 1, + "right": 1, + "mix": 1, + "price": 1, + "applications.": 1, + "
": 1 + }, + "AutoHotkey": { + "MsgBox": 1, + "Hello": 1, + "World": 1 + }, + "Rust": { + "//": 20, + "use": 10, + "cell": 1, + "Cell": 2, + ";": 218, + "cmp": 1, + "Eq": 2, + "option": 4, + "result": 18, + "Result": 3, + "comm": 5, + "{": 213, + "stream": 21, + "Chan": 4, + "GenericChan": 1, + "GenericPort": 1, + "Port": 3, + "SharedChan": 4, + "}": 210, + "prelude": 1, + "*": 1, + "task": 39, + "rt": 29, + "task_id": 2, + "sched_id": 2, + "rust_task": 1, + "util": 4, + "replace": 8, + "mod": 5, + "local_data_priv": 1, + "pub": 26, + "local_data": 1, + "spawn": 15, + "///": 13, + "A": 6, + "handle": 3, + "to": 6, + "a": 9, + "scheduler": 6, + "#": 61, + "[": 61, + "deriving_eq": 3, + "]": 61, + "enum": 4, + "Scheduler": 4, + "SchedulerHandle": 2, + "(": 429, + ")": 434, + "Task": 2, + "TaskHandle": 2, + "TaskResult": 4, + "Success": 6, + "Failure": 6, + "impl": 3, + "for": 10, + "pure": 2, + "fn": 89, + "eq": 1, + "&": 30, + "self": 15, + "other": 4, + "-": 33, + "bool": 6, + "match": 4, + "|": 20, + "true": 9, + "_": 4, + "false": 7, + "ne": 1, + ".eq": 1, + "modes": 1, + "SchedMode": 4, + "Run": 3, + "on": 5, + "the": 10, + "default": 1, + "DefaultScheduler": 2, + "current": 1, + "CurrentScheduler": 2, + "specific": 1, + "ExistingScheduler": 1, + "PlatformThread": 2, + "All": 1, + "tasks": 1, + "run": 1, + "in": 3, + "same": 1, + "OS": 3, + "thread": 2, + "SingleThreaded": 4, + "Tasks": 2, + "are": 2, + "distributed": 2, + "among": 2, + "available": 1, + "CPUs": 1, + "ThreadPerCore": 2, + "Each": 1, + "runs": 1, + "its": 1, + "own": 1, + "ThreadPerTask": 1, + "fixed": 1, + "number": 1, + "of": 3, + "threads": 1, + "ManualThreads": 3, + "uint": 7, + "struct": 7, + "SchedOpts": 4, + "mode": 9, + "foreign_stack_size": 3, + "Option": 4, + "": 2, + "TaskOpts": 12, + "linked": 15, + "supervised": 11, + "mut": 16, + "notify_chan": 24, + "<": 3, + "": 3, + "sched": 10, + "TaskBuilder": 21, + "opts": 21, + "gen_body": 4, + "@fn": 2, + "v": 6, + "can_not_copy": 11, + "": 1, + "consumed": 4, + "default_task_opts": 4, + "body": 6, + "Identity": 1, + "function": 1, + "None": 23, + "doc": 1, + "hidden": 1, + "FIXME": 1, + "#3538": 1, + "priv": 1, + "consume": 1, + "if": 7, + "self.consumed": 2, + "fail": 17, + "Fake": 1, + "move": 1, + "let": 84, + "self.opts.notify_chan": 7, + "self.opts.linked": 4, + "self.opts.supervised": 5, + "self.opts.sched": 6, + "self.gen_body": 2, + "unlinked": 1, + "..": 8, + "self.consume": 7, + "future_result": 1, + "blk": 2, + "self.opts.notify_chan.is_some": 1, + "notify_pipe_po": 2, + "notify_pipe_ch": 2, + "Some": 8, + "Configure": 1, + "custom": 1, + "task.": 1, + "sched_mode": 1, + "add_wrapper": 1, + "wrapper": 2, + "prev_gen_body": 2, + "f": 38, + "x": 7, + "x.opts.linked": 1, + "x.opts.supervised": 1, + "x.opts.sched": 1, + "spawn_raw": 1, + "x.gen_body": 1, + "Runs": 1, + "while": 2, + "transfering": 1, + "ownership": 1, + "one": 1, + "argument": 1, + "child.": 1, + "spawn_with": 2, + "": 2, + "arg": 5, + "do": 49, + "self.spawn": 1, + "arg.take": 1, + "try": 5, + "": 2, + "T": 2, + "": 2, + "po": 11, + "ch": 26, + "": 1, + "fr_task_builder": 1, + "self.future_result": 1, + "+": 4, + "r": 6, + "fr_task_builder.spawn": 1, + "||": 11, + "ch.send": 11, + "unwrap": 3, + ".recv": 3, + "Ok": 3, + "po.recv": 10, + "Err": 2, + ".spawn": 9, + "spawn_unlinked": 6, + ".unlinked": 3, + "spawn_supervised": 5, + ".supervised": 2, + ".spawn_with": 1, + "spawn_sched": 8, + ".sched_mode": 2, + ".try": 1, + "yield": 16, + "Yield": 1, + "control": 1, + "unsafe": 31, + "task_": 2, + "rust_get_task": 5, + "killed": 3, + "rust_task_yield": 1, + "&&": 1, + "failing": 2, + "True": 1, + "running": 2, + "has": 1, + "failed": 1, + "rust_task_is_unwinding": 1, + "get_task": 1, + "Get": 1, + "get_task_id": 1, + "get_scheduler": 1, + "rust_get_sched_id": 6, + "unkillable": 5, + "": 3, + "U": 6, + "AllowFailure": 5, + "t": 24, + "*rust_task": 6, + "drop": 3, + "rust_task_allow_kill": 3, + "self.t": 4, + "_allow_failure": 2, + "rust_task_inhibit_kill": 3, + "The": 1, + "inverse": 1, + "unkillable.": 1, + "Only": 1, + "ever": 1, + "be": 2, + "used": 1, + "nested": 1, + ".": 1, + "rekillable": 1, + "DisallowFailure": 5, + "atomically": 3, + "DeferInterrupts": 5, + "rust_task_allow_yield": 1, + "_interrupts": 1, + "rust_task_inhibit_yield": 1, + "test": 31, + "should_fail": 11, + "ignore": 16, + "cfg": 16, + "windows": 14, + "test_cant_dup_task_builder": 1, + "b": 2, + "b.spawn": 2, + "should": 2, + "have": 1, + "been": 1, + "by": 1, + "previous": 1, + "call": 1, + "test_spawn_unlinked_unsup_no_fail_down": 1, + "grandchild": 1, + "sends": 1, + "port": 3, + "ch.clone": 2, + "iter": 8, + "repeat": 8, + "If": 1, + "first": 1, + "grandparent": 1, + "hangs.": 1, + "Shouldn": 1, + "leave": 1, + "child": 3, + "hanging": 1, + "around.": 1, + "test_spawn_linked_sup_fail_up": 1, + "fails": 4, + "parent": 2, + "_ch": 1, + "<()>": 6, + "opts.linked": 2, + "opts.supervised": 2, + "b0": 5, + "b1": 3, + "b1.spawn": 3, + "We": 1, + "get": 1, + "punted": 1, + "awake": 1, + "test_spawn_linked_sup_fail_down": 1, + "loop": 5, + "*both*": 1, + "mechanisms": 1, + "would": 1, + "wrong": 1, + "this": 1, + "didn": 1, + "s": 1, + "failure": 1, + "propagate": 1, + "across": 1, + "gap": 1, + "test_spawn_failure_propagate_secondborn": 1, + "test_spawn_failure_propagate_nephew_or_niece": 1, + "test_spawn_linked_sup_propagate_sibling": 1, + "test_run_basic": 1, + "Wrapper": 5, + "test_add_wrapper": 1, + "b0.add_wrapper": 1, + "ch.f.swap_unwrap": 4, + "test_future_result": 1, + ".future_result": 4, + "assert": 10, + "test_back_to_the_future_result": 1, + "test_try_success": 1, + "test_try_fail": 1, + "test_spawn_sched_no_threads": 1, + "u": 2, + "test_spawn_sched": 1, + "i": 3, + "int": 5, + "parent_sched_id": 4, + "child_sched_id": 5, + "else": 1, + "test_spawn_sched_childs_on_default_sched": 1, + "default_id": 2, + "nolink": 1, + "extern": 1, + "testrt": 9, + "rust_dbg_lock_create": 2, + "*libc": 6, + "c_void": 6, + "rust_dbg_lock_destroy": 2, + "lock": 13, + "rust_dbg_lock_lock": 3, + "rust_dbg_lock_unlock": 3, + "rust_dbg_lock_wait": 2, + "rust_dbg_lock_signal": 2, + "test_spawn_sched_blocking": 1, + "start_po": 1, + "start_ch": 1, + "fin_po": 1, + "fin_ch": 1, + "start_ch.send": 1, + "fin_ch.send": 1, + "start_po.recv": 1, + "pingpong": 3, + "": 2, + "val": 4, + "setup_po": 1, + "setup_ch": 1, + "parent_po": 2, + "parent_ch": 2, + "child_po": 2, + "child_ch": 4, + "setup_ch.send": 1, + "setup_po.recv": 1, + "child_ch.send": 1, + "fin_po.recv": 1, + "avoid_copying_the_body": 5, + "spawnfn": 2, + "p": 3, + "x_in_parent": 2, + "ptr": 2, + "addr_of": 2, + "as": 7, + "x_in_child": 4, + "p.recv": 1, + "test_avoid_copying_the_body_spawn": 1, + "test_avoid_copying_the_body_task_spawn": 1, + "test_avoid_copying_the_body_try": 1, + "test_avoid_copying_the_body_unlinked": 1, + "test_platform_thread": 1, + "test_unkillable": 1, + "pp": 2, + "*uint": 1, + "cast": 2, + "transmute": 2, + "_p": 1, + "test_unkillable_nested": 1, + "Here": 1, + "test_atomically_nested": 1, + "test_child_doesnt_ref_parent": 1, + "const": 1, + "generations": 2, + "child_no": 3, + "return": 1, + "test_sched_thread_per_core": 1, + "chan": 2, + "cores": 2, + "rust_num_threads": 1, + "reported_threads": 2, + "rust_sched_threads": 2, + "chan.send": 2, + "port.recv": 2, + "test_spawn_thread_on_demand": 1, + "max_threads": 2, + "running_threads": 2, + "rust_sched_current_nonlazy_threads": 2, + "port2": 1, + "chan2": 1, + "chan2.send": 1, + "running_threads2": 2, + "port2.recv": 1 + }, + "Liquid": { + "": 1, + "html": 1, + "PUBLIC": 1, + "W3C": 1, + "DTD": 2, + "XHTML": 1, + "1": 1, + "0": 1, + "Transitional": 1, + "EN": 1, + "http": 2, + "www": 1, + "w3": 1, + "org": 1, + "TR": 1, + "xhtml1": 2, + "transitional": 1, + "dtd": 1, + "": 1, + "xmlns=": 1, + "xml": 1, + "lang=": 2, + "": 1, + "": 1, + "equiv=": 1, + "content=": 1, + "": 1, + "{": 89, + "shop.name": 2, + "}": 89, + "-": 4, + "page_title": 1, + "": 1, + "|": 31, + "global_asset_url": 5, + "stylesheet_tag": 3, + "script_tag": 5, + "shopify_asset_url": 1, + "asset_url": 2, + "content_for_header": 1, + "": 1, + "": 1, + "id=": 28, + "

": 1, + "class=": 14, + "": 9, + "href=": 9, + "Skip": 1, + "to": 1, + "navigation.": 1, + "": 9, + "

": 1, + "%": 46, + "if": 5, + "cart.item_count": 7, + "
": 23, + "style=": 5, + "

": 3, + "There": 1, + "pluralize": 3, + "in": 8, + "title=": 3, + "your": 1, + "cart": 1, + "

": 3, + "

": 1, + "Your": 1, + "subtotal": 1, + "is": 1, + "cart.total_price": 2, + "money": 5, + ".": 3, + "

": 1, + "for": 6, + "item": 1, + "cart.items": 1, + "onMouseover=": 2, + "onMouseout=": 2, + "": 4, + "src=": 5, + "
": 23, + "endfor": 6, + "
": 2, + "endif": 5, + "

": 1, + "

": 1, + "onclick=": 1, + "View": 1, + "Mini": 1, + "Cart": 1, + "(": 1, + ")": 1, + "
": 3, + "content_for_layout": 1, + "
    ": 5, + "link": 2, + "linklists.main": 1, + "menu.links": 1, + "
  • ": 5, + "link.title": 2, + "link_to": 2, + "link.url": 2, + "
  • ": 5, + "
": 5, + "tags": 1, + "tag": 4, + "collection.tags": 1, + "": 1, + "link_to_add_tag": 1, + "": 1, + "highlight_active_tag": 1, + "link_to_tag": 1, + "linklists.footer.links": 1, + "All": 1, + "prices": 1, + "are": 1, + "shop.currency": 1, + "Powered": 1, + "by": 1, + "Shopify": 1, + "": 1, + "": 1, + "

": 1, + "We": 1, + "have": 1, + "wonderful": 1, + "products": 1, + "

": 1, + "image": 1, + "product.images": 1, + "forloop.first": 1, + "rel=": 2, + "alt=": 2, + "else": 1, + "product.title": 1, + "Vendor": 1, + "product.vendor": 1, + "link_to_vendor": 1, + "Type": 1, + "product.type": 1, + "link_to_type": 1, + "": 1, + "product.price_min": 1, + "product.price_varies": 1, + "product.price_max": 1, + "": 1, + "
": 1, + "action=": 1, + "method=": 1, + "": 1, + "": 1, + "type=": 2, + "
": 1, + "product.description": 1, + "": 1 + }, + "Erlang": { + "SHEBANG#!escript": 3, + "-": 262, + "export": 2, + "(": 236, + "[": 66, + "main/1": 1, + "]": 61, + ")": 230, + ".": 37, + "main": 4, + "io": 5, + "format": 7, + "%": 134, + "*": 9, + "Mode": 1, + "erlang": 5, + ";": 56, + "coding": 1, + "utf": 1, + "tab": 1, + "width": 1, + "c": 2, + "basic": 1, + "offset": 1, + "indent": 1, + "tabs": 1, + "mode": 2, + "BSD": 1, + "LICENSE": 1, + "Copyright": 1, + "Michael": 2, + "Truog": 2, + "": 1, + "at": 1, + "gmail": 1, + "dot": 1, + "com": 1, + "All": 2, + "rights": 1, + "reserved.": 1, + "Redistribution": 1, + "and": 8, + "use": 2, + "in": 3, + "source": 2, + "binary": 2, + "forms": 1, + "with": 2, + "or": 3, + "without": 2, + "modification": 1, + "are": 3, + "permitted": 1, + "provided": 2, + "that": 1, + "the": 9, + "following": 4, + "conditions": 3, + "met": 1, + "Redistributions": 2, + "of": 9, + "code": 2, + "must": 3, + "retain": 1, + "above": 2, + "copyright": 2, + "notice": 2, + "this": 4, + "list": 2, + "disclaimer.": 1, + "form": 1, + "reproduce": 1, + "disclaimer": 1, + "documentation": 1, + "and/or": 1, + "other": 1, + "materials": 2, + "distribution.": 1, + "advertising": 1, + "mentioning": 1, + "features": 1, + "software": 3, + "display": 1, + "acknowledgment": 1, + "This": 2, + "product": 1, + "includes": 1, + "developed": 1, + "by": 1, + "The": 1, + "name": 1, + "author": 2, + "may": 1, + "not": 1, + "be": 1, + "used": 1, + "to": 2, + "endorse": 1, + "promote": 1, + "products": 1, + "derived": 1, + "from": 1, + "specific": 1, + "prior": 1, + "written": 1, + "permission": 1, + "THIS": 2, + "SOFTWARE": 2, + "IS": 1, + "PROVIDED": 1, + "BY": 1, + "THE": 5, + "COPYRIGHT": 2, + "HOLDERS": 1, + "AND": 4, + "CONTRIBUTORS": 2, + "ANY": 4, + "EXPRESS": 1, + "OR": 8, + "IMPLIED": 2, + "WARRANTIES": 2, + "INCLUDING": 3, + "BUT": 2, + "NOT": 2, + "LIMITED": 2, + "TO": 2, + "OF": 8, + "MERCHANTABILITY": 1, + "FITNESS": 1, + "FOR": 2, + "A": 5, + "PARTICULAR": 1, + "PURPOSE": 1, + "ARE": 1, + "DISCLAIMED.": 1, + "IN": 3, + "NO": 1, + "EVENT": 1, + "SHALL": 1, + "OWNER": 1, + "BE": 1, + "LIABLE": 1, + "DIRECT": 1, + "INDIRECT": 1, + "INCIDENTAL": 1, + "SPECIAL": 1, + "EXEMPLARY": 1, + "CONSEQUENTIAL": 1, + "DAMAGES": 1, + "PROCUREMENT": 1, + "SUBSTITUTE": 1, + "GOODS": 1, + "SERVICES": 1, + "LOSS": 1, + "USE": 2, + "DATA": 1, + "PROFITS": 1, + "BUSINESS": 1, + "INTERRUPTION": 1, + "HOWEVER": 1, + "CAUSED": 1, + "ON": 1, + "THEORY": 1, + "LIABILITY": 2, + "WHETHER": 1, + "CONTRACT": 1, + "STRICT": 1, + "TORT": 1, + "NEGLIGENCE": 1, + "OTHERWISE": 1, + "ARISING": 1, + "WAY": 1, + "OUT": 1, + "EVEN": 1, + "IF": 1, + "ADVISED": 1, + "POSSIBILITY": 1, + "SUCH": 1, + "DAMAGE.": 1, + "compile": 2, + "_": 52, + "{": 109, + "ok": 34, + "sys": 2, + "}": 109, + "RelToolConfig": 5, + "target_dir": 2, + "TargetDir": 14, + "overlay": 2, + "OverlayConfig": 4, + "file": 6, + "consult": 1, + "Spec": 2, + "reltool": 2, + "get_target_spec": 1, + "case": 3, + "make_dir": 1, + "error": 4, + "eexist": 1, + "exit_code": 3, + "end": 3, + "eval_target_spec": 1, + "root_dir": 1, + "process_overlay": 2, + "shell": 3, + "Command": 3, + "Arguments": 3, + "CommandSuffix": 2, + "lists": 11, + "reverse": 4, + "os": 1, + "cmd": 1, + "flatten": 6, + "io_lib": 2, + "+": 214, + "|": 25, + "end.": 3, + "boot_rel_vsn": 2, + "Config": 2, + "_RelToolConfig": 1, + "rel": 2, + "_Name": 1, + "Ver": 1, + "proplists": 1, + "lookup": 1, + "Ver.": 1, + "minimal": 2, + "parsing": 1, + "for": 1, + "handling": 1, + "mustache": 11, + "syntax": 1, + "Body": 2, + "Context": 11, + "Result": 10, + "_Context": 1, + "KeyStr": 6, + "mustache_key": 4, + "C": 4, + "Rest": 10, + "Key": 2, + "list_to_existing_atom": 1, + "Value": 35, + "dict": 2, + "find": 1, + "support": 1, + "based": 1, + "on": 1, + "rebar": 1, + "overlays": 1, + "BootRelVsn": 2, + "OverlayVars": 2, + "from_list": 1, + "erts_vsn": 1, + "system_info": 1, + "version": 1, + "rel_vsn": 1, + "hostname": 1, + "net_adm": 1, + "localhost": 1, + "BaseDir": 7, + "get_cwd": 1, + "execute_overlay": 6, + "_Vars": 1, + "_BaseDir": 1, + "_TargetDir": 1, + "mkdir": 1, + "Out": 4, + "Vars": 7, + "OutDir": 4, + "filename": 3, + "join": 3, + "copy": 1, + "In": 2, + "InFile": 3, + "OutFile": 2, + "true": 3, + "filelib": 1, + "is_file": 1, + "ExitCode": 2, + "halt": 2, + "flush": 1, + "smp": 1, + "enable": 1, + "sname": 1, + "factorial": 1, + "mnesia": 1, + "debug": 1, + "verbose": 1, + "String": 2, + "try": 2, + "N": 6, + "list_to_integer": 1, + "F": 16, + "fac": 4, + "catch": 2, + "usage": 3, + "is": 1, + "auto": 1, + "generated": 1, + "file.": 1, + "Please": 1, + "don": 1, + "t": 1, + "edit": 1, + "it": 2, + "module": 2, + "record_utils": 1, + "export_all": 1, + "include": 1, + "fields": 4, + "abstract_message": 21, + "async_message": 12, + "fields_atom": 4, + "clientId": 5, + "destination": 5, + "messageId": 5, + "timestamp": 5, + "timeToLive": 5, + "headers": 5, + "body": 5, + "correlationId": 5, + "correlationIdBytes": 5, + "get": 12, + "Obj": 49, + "when": 29, + "is_record": 25, + "Obj#abstract_message.body": 1, + "Obj#abstract_message.clientId": 1, + "Obj#abstract_message.destination": 1, + "Obj#abstract_message.headers": 1, + "Obj#abstract_message.messageId": 1, + "Obj#abstract_message.timeToLive": 1, + "Obj#abstract_message.timestamp": 1, + "Obj#async_message.correlationId": 1, + "Obj#async_message.correlationIdBytes": 1, + "parent": 5, + "Obj#async_message.parent": 3, + "ParentProperty": 6, + "is_atom": 2, + "set": 13, + "NewObj": 20, + "Obj#abstract_message": 7, + "Obj#async_message": 3, + "NewParentObject": 2, + "type": 6, + "undefined.": 1, + "For": 1, + "each": 1, + "header": 1, + "scans": 1, + "thru": 1, + "all": 1, + "records": 1, + "create": 1, + "helper": 1, + "functions": 2, + "Helper": 1, + "setters": 1, + "getters": 1, + "record_helper": 1, + "make/1": 1, + "make/2": 1, + "make": 3, + "HeaderFiles": 5, + "atom_to_list": 18, + "X": 12, + "||": 6, + "<->": 5, + "hrl": 1, + "relative": 1, + "current": 1, + "dir": 1, + "ModuleName": 3, + "HeaderComment": 2, + "ModuleDeclaration": 2, + "<": 1, + "Src": 10, + "format_src": 8, + "sort": 1, + "read": 2, + "generate_type_default_function": 2, + "write_file": 1, + "erl": 1, + "list_to_binary": 1, + "HeaderFile": 4, + "epp": 1, + "parse_file": 1, + "Tree": 4, + "parse": 2, + "Error": 4, + "catched_error": 1, + "T": 24, + "length": 6, + "Type": 3, + "B": 4, + "NSrc": 4, + "_Type": 1, + "Type1": 2, + "parse_record": 3, + "attribute": 1, + "record": 4, + "RecordInfo": 2, + "RecordName": 41, + "RecordFields": 10, + "if": 1, + "generate_setter_getter_function": 5, + "generate_type_function": 3, + "generate_fields_function": 2, + "generate_fields_atom_function": 2, + "parse_field_name": 5, + "record_field": 9, + "atom": 9, + "FieldName": 26, + "field": 4, + "_FieldName": 2, + "ParentRecordName": 8, + "parent_field": 2, + "parse_field_name_atom": 5, + "concat": 5, + "_S": 3, + "S": 6, + "concat_ext": 4, + "parse_field": 6, + "AccFields": 6, + "AccParentFields": 6, + "Field": 2, + "PField": 2, + "parse_field_atom": 4, + "zzz": 1, + "Fields": 4, + "field_atom": 1, + "to_setter_getter_function": 5, + "setter": 2, + "getter": 2 + }, + "Parrot Assembly": { + "SHEBANG#!parrot": 1, + ".pcc_sub": 1, + "main": 2, + "say": 1, + "end": 1 } }, "language_tokens": { - "ABAP": 1500, + "Mercury": 31096, + "Gosu": 410, + "JSON5": 57, + "PHP": 20724, + "Moocode": 5234, "Agda": 376, - "Alloy": 1143, - "ApacheConf": 1449, - "Apex": 4408, - "AppleScript": 1862, - "Arduino": 20, - "AsciiDoc": 103, - "AspectJ": 324, - "Assembly": 21750, - "ATS": 4558, - "AutoHotkey": 3, - "Awk": 544, - "BlitzBasic": 2065, - "Bluespec": 1298, - "Brightscript": 579, - "C": 59053, - "C#": 278, - "C++": 34739, - "Ceylon": 50, - "Cirru": 244, - "Clojure": 510, - "COBOL": 90, + "Tea": 3, + "Scala": 750, + "Rebol": 533, "CoffeeScript": 2951, - "Common Lisp": 2186, + "Scilab": 69, + "Ragel in Ruby Host": 593, + "JSONLD": 18, + "Pascal": 30, + "Arduino": 20, + "Game Maker Language": 13310, + "NSIS": 725, + "SystemVerilog": 541, + "Inform 7": 75, + "XProc": 22, + "Nu": 116, + "edn": 227, + "Zephir": 1085, "Component Pascal": 825, - "Coq": 18259, + "RDoc": 279, + "Gnuplot": 1023, + "Mask": 74, + "Brightscript": 579, + "Kotlin": 155, + "XC": 24, + "QMake": 119, + "Nix": 188, + "Turing": 44, + "Xojo": 807, + "Xtend": 399, + "Ruby": 3893, + "Frege": 5564, + "Literate Agda": 478, + "Clojure": 510, + "Pan": 130, + "Common Lisp": 2186, + "Logtalk": 36, + "Swift": 1128, + "Pod": 658, + "TeX": 2701, + "ApacheConf": 1449, + "VimL": 20, + "Cirru": 244, + "Ox": 1006, + "OpenCL": 144, + "PostScript": 107, + "Pike": 1835, + "Bluespec": 1298, + "GAS": 133, + "JSONiq": 151, + "Lua": 724, + "AppleScript": 1862, + "Python": 6587, + "SQL": 1485, + "Markdown": 1, + "PowerShell": 12, + "RobotFramework": 483, + "HTML": 413, + "Eagle": 30089, + "Lasso": 9849, + "Parrot Internal Representation": 5, + "Kit": 6, + "Stylus": 76, + "C": 59053, + "Jade": 3, + "Zimpl": 123, + "AsciiDoc": 103, + "NetLogo": 243, + "Hy": 155, + "Racket": 331, + "Haskell": 302, + "ShellSession": 233, + "Volt": 388, + "Literate CoffeeScript": 275, + "Sass": 56, + "Objective-C": 26518, + "E": 601, + "YAML": 77, + "Visual Basic": 581, + "Propeller Spin": 13519, + "Monkey": 207, + "Groovy Server Pages": 91, + "Opa": 28, + "XSLT": 44, + "Dogescript": 30, "Creole": 134, "Crystal": 1506, - "CSS": 43867, - "Cuda": 290, - "Dart": 74, - "Diff": 16, - "DM": 169, - "Dogescript": 30, - "E": 601, - "Eagle": 30089, - "ECL": 281, - "edn": 227, - "Elm": 628, - "Emacs Lisp": 1756, - "Erlang": 2928, - "fish": 636, - "Forth": 1516, - "Frege": 5564, - "Game Maker Language": 13310, - "GAMS": 363, - "GAP": 9944, - "GAS": 133, - "GLSL": 4033, - "Gnuplot": 1023, - "Gosu": 410, - "Grammatical Framework": 10607, - "Groovy": 93, - "Groovy Server Pages": 91, - "Haml": 4, - "Handlebars": 69, - "Haskell": 302, - "HTML": 413, - "Hy": 155, - "IDL": 418, - "Idris": 148, - "Inform 7": 75, - "INI": 27, - "Ioke": 2, - "Isabelle": 136, - "Jade": 3, - "Java": 8987, - "JavaScript": 77056, - "JSON": 183, - "JSON5": 57, - "JSONiq": 151, - "JSONLD": 18, - "Julia": 247, - "Kit": 6, - "Kotlin": 155, - "KRL": 25, - "Lasso": 9849, - "Latte": 759, - "Less": 39, - "LFE": 1711, - "Liquid": 633, - "Literate Agda": 478, - "Literate CoffeeScript": 275, - "LiveScript": 123, - "Logos": 93, - "Logtalk": 36, - "Lua": 724, - "M": 23615, - "Makefile": 50, - "Markdown": 1, - "Mask": 74, - "Mathematica": 1857, - "Matlab": 11942, - "Max": 714, - "MediaWiki": 766, - "Mercury": 31096, - "Monkey": 207, - "Moocode": 5234, - "MoonScript": 1718, - "MTML": 93, "Nemerle": 17, - "NetLogo": 243, - "Nginx": 179, - "Nimrod": 1, - "Nix": 188, - "NSIS": 725, - "Nu": 116, - "Objective-C": 26518, - "Objective-C++": 6021, - "OCaml": 382, - "Omgrofl": 57, - "Opa": 28, - "OpenCL": 144, - "OpenEdge ABL": 762, - "Org": 358, - "Ox": 1006, - "Oxygene": 157, - "Pan": 130, - "Parrot Assembly": 6, - "Parrot Internal Representation": 5, - "Pascal": 30, - "PAWN": 3263, - "Perl": 17979, - "Perl6": 372, - "PHP": 20724, - "Pike": 1835, - "Pod": 658, - "PogoScript": 250, - "PostScript": 107, - "PowerShell": 12, - "Processing": 74, - "Prolog": 2420, - "Propeller Spin": 13519, - "Protocol Buffer": 63, - "PureScript": 1652, - "Python": 6587, - "QMake": 119, - "R": 1790, - "Racket": 331, - "Ragel in Ruby Host": 593, - "RDoc": 279, - "Rebol": 533, - "Red": 816, - "RMarkdown": 19, - "RobotFramework": 483, - "Ruby": 3893, - "Rust": 3566, - "SAS": 93, - "Sass": 56, - "Scala": 750, - "Scaml": 4, - "Scheme": 3515, - "Scilab": 69, - "SCSS": 39, - "Shell": 3744, - "ShellSession": 233, - "Shen": 3472, - "Slash": 187, - "Slim": 77, - "Smalltalk": 423, - "SourcePawn": 2080, - "SQL": 1485, - "Squirrel": 130, - "Standard ML": 6567, - "Stata": 3133, - "STON": 100, - "Stylus": 76, - "SuperCollider": 133, - "Swift": 1128, - "SystemVerilog": 541, - "Tcl": 1133, - "Tea": 3, - "TeX": 2701, - "Turing": 44, - "TXL": 213, - "TypeScript": 109, - "UnrealScript": 2873, - "VCL": 545, - "Verilog": 3778, - "VHDL": 42, - "VimL": 20, - "Visual Basic": 581, - "Volt": 388, - "wisp": 1363, - "XC": 24, - "XML": 7057, - "Xojo": 807, - "XProc": 22, + "Assembly": 21750, + "Isabelle": 136, + "DM": 169, + "GLSL": 4033, + "GAP": 9944, "XQuery": 801, - "XSLT": 44, - "Xtend": 399, - "YAML": 77, - "Zephir": 1085, - "Zimpl": 123 + "Max": 714, + "PogoScript": 250, + "SAS": 93, + "MediaWiki": 766, + "Mathematica": 1857, + "Idris": 148, + "Prolog": 2420, + "Oxygene": 157, + "R": 1790, + "JavaScript": 77056, + "STON": 100, + "AspectJ": 324, + "OCaml": 382, + "Nimrod": 1, + "Grammatical Framework": 10607, + "CSS": 43867, + "SourcePawn": 2080, + "BlitzBasic": 2065, + "Dart": 74, + "Nginx": 179, + "OpenEdge ABL": 762, + "Handlebars": 69, + "VHDL": 42, + "Objective-C++": 6021, + "M": 23615, + "C++": 34739, + "Shen": 3472, + "Cuda": 290, + "Less": 39, + "ATS": 4558, + "PAWN": 3263, + "Makefile": 50, + "Forth": 1516, + "Scheme": 3515, + "wisp": 1363, + "SuperCollider": 133, + "RMarkdown": 19, + "ABAP": 1500, + "fish": 636, + "Protocol Buffer": 63, + "UnrealScript": 2873, + "Processing": 74, + "Scaml": 4, + "TXL": 213, + "Julia": 247, + "Diff": 16, + "SCSS": 39, + "Omgrofl": 57, + "Tcl": 1133, + "Emacs Lisp": 1756, + "Squirrel": 130, + "PureScript": 1652, + "VCL": 545, + "Standard ML": 6567, + "IDL": 418, + "Red": 816, + "Latte": 759, + "Matlab": 11942, + "JSON": 183, + "Haml": 4, + "Groovy": 93, + "Coq": 18259, + "Stata": 3133, + "Ceylon": 50, + "MoonScript": 1718, + "Perl": 17979, + "TypeScript": 109, + "Verilog": 3778, + "KRL": 25, + "ECL": 281, + "LFE": 1711, + "MTML": 93, + "Slash": 187, + "Awk": 544, + "Ioke": 2, + "Org": 358, + "Perl6": 372, + "Smalltalk": 423, + "XML": 7057, + "Alloy": 1143, + "Nit": 5282, + "COBOL": 90, + "INI": 27, + "Java": 8987, + "Logos": 93, + "Shell": 3744, + "LiveScript": 123, + "Apex": 4408, + "GAMS": 363, + "Slim": 77, + "Elm": 628, + "C#": 278, + "AutoHotkey": 3, + "Rust": 3566, + "Liquid": 633, + "Erlang": 2928, + "Parrot Assembly": 6 }, "languages": { - "ABAP": 1, + "Mercury": 9, + "Gosu": 4, + "JSON5": 2, + "PHP": 9, + "Moocode": 3, "Agda": 1, - "Alloy": 3, - "ApacheConf": 3, - "Apex": 6, - "AppleScript": 7, - "Arduino": 1, - "AsciiDoc": 3, - "AspectJ": 2, - "Assembly": 4, - "ATS": 10, - "AutoHotkey": 1, - "Awk": 1, - "BlitzBasic": 3, - "Bluespec": 2, - "Brightscript": 1, - "C": 29, - "C#": 2, - "C++": 29, - "Ceylon": 1, - "Cirru": 9, - "Clojure": 7, - "COBOL": 4, + "Tea": 1, + "Scala": 4, + "Rebol": 6, "CoffeeScript": 9, - "Common Lisp": 3, + "Scilab": 3, + "Ragel in Ruby Host": 3, + "JSONLD": 1, + "Pascal": 1, + "Arduino": 1, + "Game Maker Language": 13, + "NSIS": 2, + "SystemVerilog": 4, + "Inform 7": 2, + "XProc": 1, + "Nu": 2, + "edn": 1, + "Zephir": 5, "Component Pascal": 2, - "Coq": 12, + "RDoc": 1, + "Gnuplot": 6, + "Mask": 1, + "Brightscript": 1, + "Kotlin": 1, + "XC": 1, + "QMake": 4, + "Nix": 1, + "Turing": 1, + "Xojo": 6, + "Xtend": 2, + "Ruby": 18, + "Frege": 4, + "Literate Agda": 1, + "Clojure": 7, + "Pan": 1, + "Common Lisp": 3, + "Logtalk": 1, + "Swift": 43, + "Pod": 1, + "TeX": 2, + "ApacheConf": 3, + "VimL": 2, + "Cirru": 9, + "Ox": 3, + "OpenCL": 2, + "PostScript": 1, + "Pike": 2, + "Bluespec": 2, + "GAS": 1, + "JSONiq": 2, + "Lua": 3, + "AppleScript": 7, + "Python": 10, + "SQL": 5, + "Markdown": 1, + "PowerShell": 2, + "RobotFramework": 3, + "HTML": 2, + "Eagle": 2, + "Lasso": 4, + "Parrot Internal Representation": 1, + "Kit": 1, + "Stylus": 1, + "C": 29, + "Jade": 1, + "Zimpl": 1, + "AsciiDoc": 3, + "NetLogo": 1, + "Hy": 2, + "Racket": 2, + "Haskell": 3, + "ShellSession": 3, + "Volt": 1, + "Literate CoffeeScript": 1, + "Sass": 2, + "Objective-C": 19, + "E": 6, + "YAML": 2, + "Visual Basic": 3, + "Propeller Spin": 10, + "Monkey": 1, + "Groovy Server Pages": 4, + "Opa": 2, + "XSLT": 1, + "Dogescript": 1, "Creole": 1, "Crystal": 3, - "CSS": 2, - "Cuda": 2, - "Dart": 1, - "Diff": 1, - "DM": 1, - "Dogescript": 1, - "E": 6, - "Eagle": 2, - "ECL": 1, - "edn": 1, - "Elm": 3, - "Emacs Lisp": 2, - "Erlang": 5, - "fish": 3, - "Forth": 7, - "Frege": 4, - "Game Maker Language": 13, - "GAMS": 1, - "GAP": 7, - "GAS": 1, - "GLSL": 5, - "Gnuplot": 6, - "Gosu": 4, - "Grammatical Framework": 41, - "Groovy": 5, - "Groovy Server Pages": 4, - "Haml": 1, - "Handlebars": 2, - "Haskell": 3, - "HTML": 2, - "Hy": 2, - "IDL": 4, - "Idris": 1, - "Inform 7": 2, - "INI": 2, - "Ioke": 1, - "Isabelle": 1, - "Jade": 1, - "Java": 6, - "JavaScript": 24, - "JSON": 4, - "JSON5": 2, - "JSONiq": 2, - "JSONLD": 1, - "Julia": 1, - "Kit": 1, - "Kotlin": 1, - "KRL": 1, - "Lasso": 4, - "Latte": 2, - "Less": 1, - "LFE": 4, - "Liquid": 2, - "Literate Agda": 1, - "Literate CoffeeScript": 1, - "LiveScript": 1, - "Logos": 1, - "Logtalk": 1, - "Lua": 3, - "M": 29, - "Makefile": 2, - "Markdown": 1, - "Mask": 1, - "Mathematica": 6, - "Matlab": 39, - "Max": 3, - "MediaWiki": 1, - "Mercury": 9, - "Monkey": 1, - "Moocode": 3, - "MoonScript": 1, - "MTML": 1, "Nemerle": 1, - "NetLogo": 1, - "Nginx": 1, - "Nimrod": 1, - "Nix": 1, - "NSIS": 2, - "Nu": 2, - "Objective-C": 19, - "Objective-C++": 2, - "OCaml": 2, - "Omgrofl": 1, - "Opa": 2, - "OpenCL": 2, - "OpenEdge ABL": 5, - "Org": 1, - "Ox": 3, - "Oxygene": 1, - "Pan": 1, - "Parrot Assembly": 1, - "Parrot Internal Representation": 1, - "Pascal": 1, - "PAWN": 1, - "Perl": 15, - "Perl6": 3, - "PHP": 9, - "Pike": 2, - "Pod": 1, - "PogoScript": 1, - "PostScript": 1, - "PowerShell": 2, - "Processing": 1, - "Prolog": 5, - "Propeller Spin": 10, - "Protocol Buffer": 1, - "PureScript": 4, - "Python": 10, - "QMake": 4, - "R": 7, - "Racket": 2, - "Ragel in Ruby Host": 3, - "RDoc": 1, - "Rebol": 6, - "Red": 2, - "RMarkdown": 1, - "RobotFramework": 3, - "Ruby": 18, - "Rust": 1, - "SAS": 2, - "Sass": 2, - "Scala": 4, - "Scaml": 1, - "Scheme": 2, - "Scilab": 3, - "SCSS": 1, - "Shell": 37, - "ShellSession": 3, - "Shen": 3, - "Slash": 1, - "Slim": 1, - "Smalltalk": 3, - "SourcePawn": 1, - "SQL": 5, - "Squirrel": 1, - "Standard ML": 5, - "Stata": 7, - "STON": 7, - "Stylus": 1, - "SuperCollider": 1, - "Swift": 43, - "SystemVerilog": 4, - "Tcl": 2, - "Tea": 1, - "TeX": 2, - "Turing": 1, - "TXL": 1, - "TypeScript": 3, - "UnrealScript": 2, - "VCL": 2, - "Verilog": 13, - "VHDL": 1, - "VimL": 2, - "Visual Basic": 3, - "Volt": 1, - "wisp": 1, - "XC": 1, - "XML": 13, - "Xojo": 6, - "XProc": 1, + "Assembly": 4, + "Isabelle": 1, + "DM": 1, + "GLSL": 5, + "GAP": 7, "XQuery": 1, - "XSLT": 1, - "Xtend": 2, - "YAML": 2, - "Zephir": 5, - "Zimpl": 1 + "Max": 3, + "PogoScript": 1, + "SAS": 2, + "MediaWiki": 1, + "Mathematica": 6, + "Idris": 1, + "Prolog": 5, + "Oxygene": 1, + "R": 7, + "JavaScript": 24, + "STON": 7, + "AspectJ": 2, + "OCaml": 2, + "Nimrod": 1, + "Grammatical Framework": 41, + "CSS": 2, + "SourcePawn": 1, + "BlitzBasic": 3, + "Dart": 1, + "Nginx": 1, + "OpenEdge ABL": 5, + "Handlebars": 2, + "VHDL": 1, + "Objective-C++": 2, + "M": 29, + "C++": 29, + "Shen": 3, + "Cuda": 2, + "Less": 1, + "ATS": 10, + "PAWN": 1, + "Makefile": 2, + "Forth": 7, + "Scheme": 2, + "wisp": 1, + "SuperCollider": 1, + "RMarkdown": 1, + "ABAP": 1, + "fish": 3, + "Protocol Buffer": 1, + "UnrealScript": 2, + "Processing": 1, + "Scaml": 1, + "TXL": 1, + "Julia": 1, + "Diff": 1, + "SCSS": 1, + "Omgrofl": 1, + "Tcl": 2, + "Emacs Lisp": 2, + "Squirrel": 1, + "PureScript": 4, + "VCL": 2, + "Standard ML": 5, + "IDL": 4, + "Red": 2, + "Latte": 2, + "Matlab": 39, + "JSON": 4, + "Haml": 1, + "Groovy": 5, + "Coq": 12, + "Stata": 7, + "Ceylon": 1, + "MoonScript": 1, + "Perl": 15, + "TypeScript": 3, + "Verilog": 13, + "KRL": 1, + "ECL": 1, + "LFE": 4, + "MTML": 1, + "Slash": 1, + "Awk": 1, + "Ioke": 1, + "Org": 1, + "Perl6": 3, + "Smalltalk": 3, + "XML": 13, + "Alloy": 3, + "Nit": 22, + "COBOL": 4, + "INI": 2, + "Java": 6, + "Logos": 1, + "Shell": 37, + "LiveScript": 1, + "Apex": 6, + "GAMS": 1, + "Slim": 1, + "Elm": 3, + "C#": 2, + "AutoHotkey": 1, + "Rust": 1, + "Liquid": 2, + "Erlang": 5, + "Parrot Assembly": 1 }, - "md5": "59afe9ab875947c5df3590aef023152d" + "md5": "1c99b3188350845f3edec71e65a5c478" } \ No newline at end of file From df09a746a0d76cbe2ebe8858b69cd0e3b61141c4 Mon Sep 17 00:00:00 2001 From: Vicent Marti Date: Fri, 27 Jun 2014 16:57:58 +0200 Subject: [PATCH 087/268] b3 --- lib/linguist/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/version.rb b/lib/linguist/version.rb index eb7bbeb7..ab1a401e 100644 --- a/lib/linguist/version.rb +++ b/lib/linguist/version.rb @@ -1,3 +1,3 @@ module Linguist - VERSION = "3.0.0b2" + VERSION = "3.0.0b3" end From 85dbcb5444f54cc5b61070760668c192212740ae Mon Sep 17 00:00:00 2001 From: Aloke Desai Date: Fri, 27 Jun 2014 19:58:53 -0700 Subject: [PATCH 088/268] added grace support --- lib/linguist/languages.yml | 6 + lib/linguist/samples.json | 234 ++++++++++- samples/Grace/ackerman_function.grace | 6 + samples/Grace/grace_IDE.grace | 554 ++++++++++++++++++++++++++ 4 files changed, 797 insertions(+), 3 deletions(-) create mode 100644 samples/Grace/ackerman_function.grace create mode 100644 samples/Grace/grace_IDE.grace diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 47a04fef..3d2b02b5 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -800,6 +800,12 @@ Gosu: extensions: - .gs +Grace: + type: programming + lexer: Text only + extensions: + - .grace + Grammatical Framework: type: programming lexer: Haskell diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index 8ce707c0..0dd99948 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -187,6 +187,9 @@ ".gsx", ".vark" ], + "Grace": [ + ".grace" + ], "Grammatical Framework": [ ".gf" ], @@ -783,8 +786,8 @@ "exception.zep.php" ] }, - "tokens_total": 643530, - "languages_total": 845, + "tokens_total": 644911, + "languages_total": 847, "tokens": { "ABAP": { "*/**": 1, @@ -25921,6 +25924,229 @@ "PersonCSVTemplate.renderToString": 1, "PersonCSVTemplate.render": 1 }, + "Grace": { + "method": 10, + "ack": 4, + "(": 215, + "m": 5, + "Number": 4, + "n": 4, + ")": 215, + "-": 16, + "{": 61, + "print": 2, + "if": 23, + "<": 5, + "then": 24, + "+": 29, + "}": 61, + "elseif": 1, + "else": 7, + "import": 7, + "as": 7, + "gtk": 1, + "io": 1, + "collections": 1, + "button_factory": 1, + "dialog_factory": 1, + "highlighter": 1, + "aComp": 1, + "//TODO": 1, + "def": 56, + "window": 2, + "gtk.window": 3, + "gtk.GTK_WINDOW_TOPLEVEL": 3, + "window.title": 1, + "window.set_default_size": 1, + "var": 33, + "popped": 3, + "mBox": 2, + "gtk.box": 6, + "gtk.GTK_ORIENTATION_VERTICAL": 4, + "buttonBox": 2, + "gtk.GTK_ORIENTATION_HORIZONTAL": 5, + "consoleButtons": 2, + "consoleBox": 2, + "editorBox": 2, + "splitPane": 4, + "gtk.paned": 1, + "menuBox": 2, + "runButton": 2, + "button_factory.make": 10, + "clearButton": 2, + "outButton": 2, + "errorButton": 2, + "popButton": 2, + "newButton": 2, + "openButton": 2, + "saveButton": 2, + "saveAsButton": 2, + "closeButton": 2, + "tEdit": 3, + "gtk.text_view": 5, + "tEdit.set_size_request": 1, + "scrolled_main": 4, + "gtk.scrolled_window": 5, + "scrolled_main.set_size_request": 1, + "scrolled_main.add": 1, + "notebook": 8, + "gtk.notebook": 1, + "notebook.scrollable": 1, + "true": 8, + "editor_map": 8, + "collections.map.new": 4, + "editor_map.put": 1, + "scrolled_map": 6, + "scrolled_map.put": 1, + "lighter": 3, + "highlighter.Syntax_Highlighter.new": 1, + "tEdit.buffer.on": 1, + "do": 14, + "lighter.highlightLine": 1, + "completer": 1, + "aComp.Auto_Completer.new": 1, + "deleteCompileFiles": 3, + "page_num": 7, + "cur_scrolled": 9, + "scrolled_map.get": 8, + "filename": 6, + "notebook.get_tab_label_text": 3, + "filename.substringFrom": 1, + "to": 1, + "filename.size": 1, + "//Removes": 1, + ".grace": 1, + "extension": 1, + "io.system": 13, + "currentConsole": 17, + "//": 3, + "Which": 1, + "console": 1, + "is": 1, + "being": 1, + "shown": 1, + "out": 9, + "false": 9, + "outText": 4, + "errorText": 4, + "runButton.on": 1, + "clearConsoles": 4, + "cur_page_num": 15, + "notebook.current_page": 6, + "cur_page": 5, + "editor_map.get": 7, + "cur_page_label": 6, + "sIter": 9, + "gtk.text_iter": 6, + "eIter": 9, + "cur_page.buffer.get_iter_at_offset": 4, + "text": 4, + "cur_page.buffer.get_text": 2, + "file": 2, + "io.open": 4, + "file.write": 2, + "file.close": 2, + "outputFile": 1, + "errorFile": 1, + "outputFile.read": 1, + "errorFile.read": 1, + "switched": 4, + "outText.size": 2, + "&&": 4, + "switch_to_output": 3, + "errorText.size": 2, + "switch_to_errors": 3, + "populateConsoles": 4, + "clearButton.on": 1, + "outButton.on": 1, + "errorButton.on": 1, + "popButton.on": 1, + "popIn": 2, + "popOut": 2, + "newButton.on": 1, + "new_window_class": 1, + "dialog_factory.new.new": 1, + "new_window": 1, + "new_window_class.window": 1, + "new_window.show_all": 1, + "openButton.on": 1, + "open_window_class": 1, + "dialog_factory.open.new": 1, + "open_window": 1, + "open_window_class.window": 1, + "open_window.show_all": 1, + "saveButton.on": 1, + "saveAs_window_class": 2, + "dialog_factory.save.new": 2, + "saveAs_window": 2, + "saveAs_window_class.window": 2, + "saveAs_window.show_all": 2, + "saveAsButton.on": 1, + "closeButton.on": 1, + "num_pages": 3, + "notebook.n_pages": 2, + "e_map": 2, + "s_map": 2, + "x": 21, + "while": 3, + "eValue": 4, + "sValue": 4, + "e_map.put": 2, + "s_map.put": 2, + "notebook.remove_page": 1, + "notebook.show_all": 1, + "outConsole": 4, + "outScroll": 5, + "errorConsole": 4, + "errorScroll": 4, + "errorTag": 3, + "errorConsole.buffer.create_tag": 2, + "createOut": 3, + "outScroll.add": 1, + "outConsole.set_size_request": 5, + "outScroll.set_size_request": 5, + "outConsole.editable": 1, + "outConsole.buffer.set_text": 3, + "createError": 3, + "errorScroll.add": 1, + "errorConsole.set_size_request": 5, + "errorScroll.set_size_request": 5, + "errorConsole.editable": 1, + "errorConsole.buffer.set_text": 3, + "consoleBox.remove": 2, + "This": 2, + "destroys": 2, + "the": 2, + "consoleBox.add": 5, + "popped.show_all": 3, + "window.show_all": 3, + "errorConsole.buffer.get_iter_at_offset": 2, + "errorConsole.buffer.apply_tag": 1, + "popInBlock": 2, + "consoleBox.reparent": 3, + "popButton.label": 3, + "cur_page.set_size_request": 3, + "cur_scrolled.set_size_request": 3, + "popped.visible": 3, + "popped.connect": 1, + "hSeparator1": 2, + "gtk.separator": 2, + "hSeparator2": 2, + "menuBox.add": 4, + "buttonBox.add": 2, + "consoleButtons.add": 4, + "editorBox.add": 2, + "notebook.add": 1, + "notebook.set_tab_label_text": 1, + "splitPane.add1": 1, + "splitPane.add2": 1, + "mBox.add": 3, + "window.add": 1, + "exit": 2, + "gtk.main_quit": 1, + "window.connect": 1, + "gtk.main": 1 + }, "Grammatical Framework": { "-": 594, "(": 256, @@ -69670,6 +69896,7 @@ "Game Maker Language": 13310, "Gnuplot": 1023, "Gosu": 410, + "Grace": 1381, "Grammatical Framework": 10607, "Groovy": 93, "Groovy Server Pages": 91, @@ -69867,6 +70094,7 @@ "Game Maker Language": 13, "Gnuplot": 6, "Gosu": 4, + "Grace": 2, "Grammatical Framework": 41, "Groovy": 5, "Groovy Server Pages": 4, @@ -70013,5 +70241,5 @@ "fish": 3, "wisp": 1 }, - "md5": "bb637c5d1f457edff3f8c2676d10807a" + "md5": "627951bf1580561b8c69f27efcbe50ed" } \ No newline at end of file diff --git a/samples/Grace/ackerman_function.grace b/samples/Grace/ackerman_function.grace new file mode 100644 index 00000000..a79d3c17 --- /dev/null +++ b/samples/Grace/ackerman_function.grace @@ -0,0 +1,6 @@ +method ack (m : Number, n : Number) -> Number { + print "ack {m} {n}" + if (m < = 0) then {n + 1} + elseif {n <= 0} then {ack((m -1), 1)} + else {ack(m -1, ack(m, n-1))} +} \ No newline at end of file diff --git a/samples/Grace/grace_IDE.grace b/samples/Grace/grace_IDE.grace new file mode 100644 index 00000000..f64d898a --- /dev/null +++ b/samples/Grace/grace_IDE.grace @@ -0,0 +1,554 @@ +import "gtk" as gtk +import "io" as io +import "mgcollections" as collections +import "button_factory" as button_factory +import "dialog_factory" as dialog_factory +import "syntax_highlighter" as highlighter +import "auto_completer" as aComp + +//TODO + +// Autocomplete typing + +// FileChooser +// Themes + +// Details for the Top Level Window +def window = gtk.window(gtk.GTK_WINDOW_TOPLEVEL) +window.title := "Grace" +window.set_default_size(700, 700) +// ------------- + +// Placeholder for the console window that can be popped out +// of the main window +var popped := gtk.window(gtk.GTK_WINDOW_TOPLEVEL) + +// Initialise the Boxes +def mBox = gtk.box(gtk.GTK_ORIENTATION_VERTICAL, 2) +def buttonBox = gtk.box(gtk.GTK_ORIENTATION_HORIZONTAL, 2) +var consoleButtons := gtk.box(gtk.GTK_ORIENTATION_HORIZONTAL, 3) +var consoleBox := gtk.box(gtk.GTK_ORIENTATION_VERTICAL, 2) +var editorBox := gtk.box(gtk.GTK_ORIENTATION_VERTICAL, 2) +var splitPane := gtk.paned(gtk.GTK_ORIENTATION_VERTICAL, 2) +def menuBox = gtk.box(gtk.GTK_ORIENTATION_HORIZONTAL, 4) +// ------------- + +// Initialise the buttons +def runButton = button_factory.make("run") +var clearButton := button_factory.make("clear") +var outButton := button_factory.make("out") +var errorButton := button_factory.make("error") +var popButton := button_factory.make("pop") +def newButton = button_factory.make("new") +def openButton = button_factory.make("open") +def saveButton = button_factory.make("save") +def saveAsButton = button_factory.make("saveAs") +def closeButton = button_factory.make("close") +// ------------- + +// Details for the default text editor and scrolled window +var tEdit := gtk.text_view +tEdit.set_size_request(700, 400) + +var scrolled_main := gtk.scrolled_window +scrolled_main.set_size_request(700, 400) +scrolled_main.add(tEdit) +// ------------- + +// Widget that allows multiple files to be edited (tabs) +var notebook := gtk.notebook +notebook.scrollable := true +// ------------- + +// Maps for holding the text_views and scrolled_windows +var editor_map := collections.map.new +editor_map.put(0, tEdit) +var scrolled_map := collections.map.new +scrolled_map.put(0, scrolled_main) + +// ------------- + +// Class that manages the syntax highlighting (This needs to be passed around otherwise +// the text_tag table gets confused, ie there can only be one) +def lighter = highlighter.Syntax_Highlighter.new(notebook, editor_map) +tEdit.buffer.on "changed" do { + lighter.highlightLine +} + +// Class that manages any auto completion that is required +def completer = aComp.Auto_Completer.new(window, notebook, editor_map) + +// Utility methods +// ------------- + +method deleteCompileFiles(page_num : Number) { + def cur_scrolled = scrolled_map.get(page_num) + var filename := notebook.get_tab_label_text(cur_scrolled) + filename := filename.substringFrom(0)to(filename.size - 7) //Removes .grace extension + + io.system("rm -f files/" ++ filename) + io.system("rm -f files/" ++ filename ++ ".c") + io.system("rm -f files/" ++ filename ++ ".gcn") + io.system("rm -f files/" ++ filename ++ ".gct") +} + +// ------------- + + + +var currentConsole := "output" // Which console is being shown +var out := false + + +var outText := "" +var errorText := "" + + + +// Give actions to the buttons +// ------------- + +runButton.on "clicked" do { + clearConsoles() + + // Get the details for the current page selected + def cur_page_num = notebook.current_page + def cur_page = editor_map.get(cur_page_num) + def cur_scrolled = scrolled_map.get(cur_page_num) + def cur_page_label = notebook.get_tab_label_text(cur_scrolled) + + // Initialise text iterators + def sIter = gtk.text_iter + def eIter = gtk.text_iter + + // Set one at the beggining and one at the end of the text + cur_page.buffer.get_iter_at_offset(sIter, 0) + cur_page.buffer.get_iter_at_offset(eIter, -1) + + // Get the text between the text iterators + def text = cur_page.buffer.get_text(sIter, eIter, true) + + // Save the text to the file (in case the user hasn't already saved it) + def file = io.open("files/" ++ cur_page_label, "w") + file.write(text) + file.close + + // Run the program and pipe the output and errors into files to be read + io.system("../minigrace/minigrace " ++ "files/" ++ cur_page_label ++ " > output.txt 2> error.txt") + def outputFile = io.open("output.txt", "r") + def errorFile = io.open("error.txt", "r") + outText := outputFile.read + errorText := errorFile.read + + io.system("rm -f output.txt error.txt") + + var switched := false + + // Change the console to output if there is output text + if((outText.size > 0) && (currentConsole != "output")) then { + switch_to_output() + switched := true + } + // Change the console to errors if there were errors + if((errorText.size > 0) && (currentConsole != "errors")) then { + switch_to_errors() + switched := true + } + + // Remember to populate the console if it wasn't switched + if(!switched) then { + populateConsoles + } +} + +clearButton.on "clicked" do { + clearConsoles() +} + +outButton.on "clicked" do { + switch_to_output() +} + +errorButton.on "clicked" do { + switch_to_errors() +} + +popButton.on "clicked" do { + if(out) then { + popIn() + } else { + popOut() + } +} + +// Gives a dialog to let the user create a new file to edit +newButton.on "clicked" do { + def new_window_class = dialog_factory.new.new(notebook, editor_map, scrolled_map, lighter) + + def new_window = new_window_class.window() + new_window.show_all +} + +// Gives a dialog that lets the user open a file to edit +openButton.on "clicked" do { + def open_window_class = dialog_factory.open.new(notebook, editor_map, scrolled_map, lighter) + + def open_window = open_window_class.window() + open_window.show_all +} + +// Saves the current file (if the name is Untitled.grace it will ask for a new name) +saveButton.on "clicked" do { + def cur_page_num = notebook.current_page + def cur_page = editor_map.get(cur_page_num) + def cur_scrolled = scrolled_map.get(cur_page_num) + def cur_page_label = notebook.get_tab_label_text(cur_scrolled) + + if(cur_page_label == "Untitled.grace") then { + def saveAs_window_class = dialog_factory.save.new(notebook, editor_map, scrolled_map, true) + + def saveAs_window = saveAs_window_class.window() + saveAs_window.show_all + } else { + // Initialise text iterators + def sIter = gtk.text_iter + def eIter = gtk.text_iter + + // Set one at the beggining and one at the end of the text + cur_page.buffer.get_iter_at_offset(sIter, 0) + cur_page.buffer.get_iter_at_offset(eIter, -1) + + // Get the text between the text iterators + def text = cur_page.buffer.get_text(sIter, eIter, true) + + // Save the file + def file = io.open("files/" ++ cur_page_label, "w") + file.write(text) + file.close + } + +} + +// Gives a dialog that lets the user save the file with a new name +saveAsButton.on "clicked" do { + def saveAs_window_class = dialog_factory.save.new(notebook, editor_map, scrolled_map, false) + + def saveAs_window = saveAs_window_class.window() + saveAs_window.show_all +} + +// This will close a tab on the notebook +// It also "removes" the page from the map, +// by creating a new temporary map and putting all but +// the removed page in. +closeButton.on "clicked" do { + def page_num = notebook.current_page + def num_pages = notebook.n_pages + + if(num_pages > 1) then { + deleteCompileFiles(page_num) + + def e_map = collections.map.new + def s_map = collections.map.new + + // Copy every page up to the current page into the new maps + var x := 0 + while {x < page_num} do { + var eValue := editor_map.get(x) + var sValue := scrolled_map.get(x) + e_map.put(x, eValue) + s_map.put(x, sValue) + + x := x + 1 + } + + // Copy every page after the current page into the new map (shifted one down) + x := page_num + 1 + while {x < num_pages} do { + var eValue := editor_map.get(x) + var sValue := scrolled_map.get(x) + e_map.put((x - 1), eValue) + s_map.put((x - 1), sValue) + + x := x + 1 + } + + editor_map := e_map + scrolled_map := s_map + notebook.remove_page(page_num) + + notebook.show_all + } + +} +// ------------- + + + + + + +// Consoles: +// ------------- + +var outConsole := gtk.text_view +var outScroll := gtk.scrolled_window +var errorConsole := gtk.text_view +var errorScroll := gtk.scrolled_window +var errorTag := errorConsole.buffer.create_tag("fixed", "foreground", "red") + + +// Creates a new output console +method createOut { + outConsole := gtk.text_view + outScroll := gtk.scrolled_window + outScroll.add(outConsole) + if(out) then { + outConsole.set_size_request(400, 400) + outScroll.set_size_request(400, 400) + } else { + outConsole.set_size_request(700, 200) + outScroll.set_size_request(700, 200) + } + outConsole.editable := false + outConsole.buffer.set_text("[Output]:", -1) +} +createOut() + +// Creates a new error console +method createError { + errorConsole := gtk.text_view + errorScroll := gtk.scrolled_window + errorScroll.add(errorConsole) + if(out) then { + errorConsole.set_size_request(400, 400) + errorScroll.set_size_request(400, 400) + } else { + errorConsole.set_size_request(700, 200) + errorScroll.set_size_request(700, 200) + } + errorConsole.editable := false + errorConsole.buffer.set_text("[Errors]:", -1) + errorTag := errorConsole.buffer.create_tag("fixed", "foreground", "red") +} +createError() + +// Switches the console being shown to be output. This requires +// the output console to be remade as it would have been destroyed when +// it was switched previously +method switch_to_output { + if(currentConsole != "output") then { + currentConsole := "output" + consoleBox.remove(errorScroll) // This destroys the errorConsole + + createOut() + + consoleBox.add(outScroll) + + populateConsoles() + if(out) then { + popped.show_all + } else { + window.show_all + } + } +} + +// Switches the console being shown to be errors. This requires +// the error console to be remade as it would have been destroyed when +// it was switched previously +method switch_to_errors { + if(currentConsole != "errors") then { + currentConsole := "errors" + consoleBox.remove(outScroll) // This destroys the outConsole + + createError() + + consoleBox.add(errorScroll) + + populateConsoles() + if(out) then { + popped.show_all + } else { + window.show_all + } + } +} + +// If there is text to be put into the consoles this will add it +method populateConsoles { + if((outText.size > 0) && (currentConsole == "output")) then { + outConsole.buffer.set_text(outText, -1) + } + if((errorText.size > 0) && (currentConsole == "errors")) then { + def sIter = gtk.text_iter + def eIter = gtk.text_iter + + errorConsole.buffer.set_text(errorText, -1) + errorConsole.buffer.get_iter_at_offset(sIter, 0) + errorConsole.buffer.get_iter_at_offset(eIter, -1) + errorConsole.buffer.apply_tag(errorTag, sIter, eIter) + } +} + +method clearConsoles { + if(currentConsole == "output") then { + outConsole.buffer.set_text("[Output]:", -1) + outText := "" + } + if(currentConsole == "errors") then { + errorConsole.buffer.set_text("[Errors]:", -1) + errorText := "" + } +} + + +// Identical as the popIn method, but can be connected to the window's destroy button +def popInBlock = { + consoleBox.reparent(splitPane) + popButton.label := "Pop Out" + + if(currentConsole == "output") then { + outConsole.set_size_request(700, 200) + outScroll.set_size_request(700, 200) + } + if(currentConsole == "errors") then { + errorConsole.set_size_request(700, 200) + errorScroll.set_size_request(700, 200) + } + + def cur_page_num = notebook.current_page + def cur_scrolled = scrolled_map.get(cur_page_num) + def cur_page = editor_map.get(cur_page_num) + + cur_page.set_size_request(700, 400) + cur_scrolled.set_size_request(700, 400) + + out := false + popped.visible := false +} + + +// This pops the console out into a separate window +method popOut { + popped := gtk.window(gtk.GTK_WINDOW_TOPLEVEL) + + consoleBox.reparent(popped) + popButton.label := "Pop In" + + if(currentConsole == "output") then { + outConsole.set_size_request(400, 400) + outScroll.set_size_request(400, 400) + } + if(currentConsole == "errors") then { + errorConsole.set_size_request(400, 400) + errorScroll.set_size_request(400, 400) + } + + def cur_page_num = notebook.current_page + def cur_scrolled = scrolled_map.get(cur_page_num) + def cur_page = editor_map.get(cur_page_num) + + cur_page.set_size_request(700, 580) + cur_scrolled.set_size_request(700, 580) + + out := true + popped.visible := true + popped.connect("destroy", popInBlock) + popped.show_all + +} + +// Puts the console back into the main window +method popIn { + consoleBox.reparent(splitPane) + popButton.label := "Pop Out" + + if(currentConsole == "output") then { + outConsole.set_size_request(700, 200) + outScroll.set_size_request(700, 200) + } + if(currentConsole == "errors") then { + errorConsole.set_size_request(700, 200) + errorScroll.set_size_request(700, 200) + } + + def cur_page_num = notebook.current_page + def cur_scrolled = scrolled_map.get(cur_page_num) + def cur_page = editor_map.get(cur_page_num) + + cur_page.set_size_request(700, 400) + cur_scrolled.set_size_request(700, 400) + + out := false + popped.visible := false +} + +clearConsoles() +// ------------- + + + + + + +// Patch everything together + +var hSeparator1 := gtk.separator(gtk.GTK_ORIENTATION_HORIZONTAL) +var hSeparator2 := gtk.separator(gtk.GTK_ORIENTATION_HORIZONTAL) + +menuBox.add(newButton) +menuBox.add(openButton) +menuBox.add(saveButton) +menuBox.add(saveAsButton) +buttonBox.add(runButton) +buttonBox.add(closeButton) + +consoleButtons.add(outButton) +consoleButtons.add(errorButton) +consoleButtons.add(clearButton) +consoleButtons.add(popButton) + +consoleBox.add(hSeparator1) +consoleBox.add(consoleButtons) +consoleBox.add(outScroll) + +editorBox.add(hSeparator2) +notebook.add(scrolled_main) +notebook.set_tab_label_text(scrolled_main, "Untitled.grace") +editorBox.add(notebook) + +splitPane.add1(editorBox) +splitPane.add2(consoleBox) + +mBox.add(menuBox) +mBox.add(buttonBox) +mBox.add(splitPane) + +window.add(mBox) + +def exit = { + var x := 0 + while {x < notebook.n_pages} do { + deleteCompileFiles(x) + + x := x + 1 + } + + // Delete the compile files of the IDE + io.system("rm -f Grace_IDE.gct Grace_IDE.c Grace_IDE.gcn") + io.system("rm -f scanner.gct scanner.c scanner.gcn") + io.system("rm -f syntax_highlighter.gct syntax_highlighter.c syntax_highlighter.gcn") + io.system("rm -f syntax_colors.gct syntax_colors.c syntax_colors.gcn") + io.system("rm -f button_factory.gct button_factory.c button_factory.gcn") + io.system("rm -f dialog_factory.gct dialog_factory.c dialog_factory.gcn") + io.system("rm -f auto_completer.gct auto_completer.c auto_completer.gcn") + + print "Grace IDE Closed Successfully" + gtk.main_quit +} + +window.connect("destroy", exit) +window.show_all + +gtk.main \ No newline at end of file From 152205a146cdc9e680b0934983c65b6b5e741911 Mon Sep 17 00:00:00 2001 From: Aloke Desai Date: Fri, 27 Jun 2014 21:12:41 -0700 Subject: [PATCH 089/268] fixed whitespace --- lib/linguist/languages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 3d2b02b5..fe5e30cd 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -804,7 +804,7 @@ Grace: type: programming lexer: Text only extensions: - - .grace + - .grace Grammatical Framework: type: programming From 819bb7caabcd0977011bd6c15cae4ee9414296df Mon Sep 17 00:00:00 2001 From: Paul Chaignon Date: Sat, 28 Jun 2014 12:35:26 +0200 Subject: [PATCH 090/268] Interpreter for PHP --- lib/linguist/languages.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 4871c0f4..08742f7f 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1536,6 +1536,8 @@ PHP: - .phpt filenames: - Phakefile + interpreters: + - php Pan: type: programming From a12520763caeeda2994bd05ff58fc441fed2ddd8 Mon Sep 17 00:00:00 2001 From: Ronny Otto Date: Tue, 1 Jul 2014 09:56:11 +0200 Subject: [PATCH 091/268] Fixed support for "BlitzMax" - language was already defined but missed "type: programming", so detection of "BlitzMax"-files did not work. Fixed that. - added "BlitzMax"-example to samples (and recreated samples.json) --- lib/linguist/languages.yml | 2 + lib/linguist/samples.json | 53253 +++++++++++++++++----------------- samples/BlitzMax/sample.bmx | 25 + 3 files changed, 26669 insertions(+), 26611 deletions(-) create mode 100644 samples/BlitzMax/sample.bmx diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 47a04fef..4b2c8282 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -222,6 +222,8 @@ BlitzBasic: - .decls BlitzMax: + type: programming + color: "#cd6400" extensions: - .bmx diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index 8ce707c0..e34ae17d 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -45,6 +45,9 @@ "BlitzBasic": [ ".bb" ], + "BlitzMax": [ + ".bmx" + ], "Bluespec": [ ".bsv" ], @@ -783,8 +786,8 @@ "exception.zep.php" ] }, - "tokens_total": 643530, - "languages_total": 845, + "tokens_total": 643570, + "languages_total": 846, "tokens": { "ABAP": { "*/**": 1, @@ -1049,28 +1052,63 @@ "//": 211, "#include": 16, "staload": 25, + "UN": 3, "_": 25, + "datavtype": 1, + "fork": 16, + "FORK": 3, + "of": 59, + "(": 562, + "nphil": 13, + ")": 567, + "assume": 2, + "fork_vtype": 3, + "implement": 55, + "fork_get_num": 4, + "f": 22, + "let": 34, + "val": 95, + "n": 51, + "in": 48, + "end": 73, + "local": 10, + "the_forkarray": 2, + "typedef": 10, + "t": 1, + "channel": 11, + "array_tabulate": 1, + "fopr": 1, + "": 2, + "ch": 7, + "where": 6, + "{": 142, + "UN.cast": 2, + "}": 141, + "channel_create_exn": 2, + "": 2, + "i2sz": 4, + "channel_insert": 5, + "arrayref_tabulate": 1, + "NPHIL": 6, + "[": 49, + "]": 48, + "fork_changet": 5, + "the_forktray": 2, + "+": 20, + "forktray_changet": 4, "sortdef": 2, "ftype": 13, "type": 30, "-": 49, "infixr": 2, - "(": 562, - ")": 567, - "typedef": 10, "a": 200, "b": 26, "": 2, "functor": 12, "F": 34, - "{": 142, - "}": 141, "list0": 9, "extern": 13, - "val": 95, "functor_list0": 7, - "implement": 55, - "f": 22, "lam": 20, "xs": 82, "list0_map": 2, @@ -1079,7 +1117,6 @@ "datatype": 4, "CoYoneda": 7, "r": 25, - "of": 59, "fun": 56, "CoYoneda_phi": 2, "CoYoneda_psi": 3, @@ -1098,19 +1135,15 @@ "bool2string": 4, "string": 2, "case": 9, - "+": 20, "fprint_val": 2, "": 2, "out": 8, "fprint": 3, "int2bool": 2, "i": 6, - "let": 34, - "in": 48, "if": 7, "then": 11, "else": 7, - "end": 73, "myintlist0": 2, "g0ofg1": 1, "list": 1, @@ -1118,228 +1151,31 @@ "fprintln": 3, "stdout_ref": 4, "main0": 3, - "UN": 3, - "phil_left": 3, - "n": 51, - "phil_right": 3, - "nmod": 1, - "NPHIL": 6, - "randsleep": 6, - "intGte": 1, - "void": 14, - "ignoret": 2, - "sleep": 2, - "UN.cast": 2, - "uInt": 1, - "rand": 1, - "mod": 1, - "phil_think": 3, - "println": 9, - "phil_dine": 3, - "lf": 5, - "rf": 5, - "phil_loop": 10, - "nl": 2, - "nr": 2, - "ch_lfork": 2, - "fork_changet": 5, - "ch_rfork": 2, - "channel_takeout": 4, - "HX": 1, - "try": 1, - "to": 16, - "actively": 1, - "induce": 1, - "deadlock": 2, - "ch_forktray": 3, - "forktray_changet": 4, - "channel_insert": 5, - "[": 49, - "]": 48, - "cleaner_wash": 3, - "fork_get_num": 4, - "cleaner_return": 4, - "ch": 7, - "cleaner_loop": 6, - "f0": 3, - "dynload": 3, - "local": 10, - "mythread_create_cloptr": 6, - "llam": 6, - "while": 1, - "true": 5, "%": 7, "#": 7, "#define": 4, - "nphil": 13, "natLt": 2, + "phil_left": 3, + "phil_right": 3, + "phil_loop": 10, + "void": 14, + "cleaner_loop": 6, "absvtype": 2, - "fork_vtype": 3, "ptr": 2, "vtypedef": 2, - "fork": 16, - "channel": 11, - "datavtype": 1, - "FORK": 3, - "assume": 2, - "the_forkarray": 2, - "t": 1, - "array_tabulate": 1, - "fopr": 1, - "": 2, - "where": 6, - "channel_create_exn": 2, - "": 2, - "i2sz": 4, - "arrayref_tabulate": 1, - "the_forktray": 2, - "set_vtype": 3, - "t@ype": 2, - "set": 34, - "t0p": 31, - "compare_elt_elt": 4, - "x1": 1, - "x2": 1, - "<": 14, - "linset_nil": 2, - "linset_make_nil": 2, - "linset_sing": 2, - "": 16, - "linset_make_sing": 2, - "linset_make_list": 1, - "List": 1, - "INV": 24, - "linset_is_nil": 2, - "linset_isnot_nil": 2, - "linset_size": 2, - "size_t": 1, - "linset_is_member": 3, - "x0": 22, - "linset_isnot_member": 1, - "linset_copy": 2, - "linset_free": 2, - "linset_insert": 3, - "&": 17, - "linset_takeout": 1, - "res": 9, - "opt": 6, - "endfun": 1, - "linset_takeout_opt": 1, - "Option_vt": 4, - "linset_remove": 2, - "linset_choose": 3, - "linset_choose_opt": 1, - "linset_takeoutmax": 1, - "linset_takeoutmax_opt": 1, - "linset_takeoutmin": 1, - "linset_takeoutmin_opt": 1, - "fprint_linset": 3, - "sep": 1, - "FILEref": 2, - "overload": 1, - "with": 1, - "env": 11, - "vt0p": 2, - "linset_foreach": 3, - "fwork": 3, - "linset_foreach_env": 3, - "linset_listize": 2, - "List0_vt": 5, - "linset_listize1": 2, - "code": 6, - "reuse": 2, - "elt": 2, - "list_vt_nil": 16, - "list_vt_cons": 17, - "list_vt_is_nil": 1, - "list_vt_is_cons": 1, - "list_vt_length": 1, - "aux": 4, - "nat": 4, - ".": 14, - "": 3, - "list_vt": 7, - "sgn": 9, - "false": 6, - "list_vt_copy": 2, - "list_vt_free": 1, - "mynode_cons": 4, - "nx": 22, - "mynode1": 6, - "xs1": 15, - "UN.castvwtp0": 8, - "List1_vt": 5, - "@list_vt_cons": 5, - "xs2": 3, - "prval": 20, - "UN.cast2void": 5, - ";": 4, - "fold@": 8, - "ins": 3, - "tail": 1, - "recursive": 1, - "n1": 4, - "<=>": 1, - "1": 3, - "mynode_make_elt": 4, - "ans": 2, - "is": 26, - "found": 1, - "effmask_all": 3, - "free@": 1, - "xs1_": 3, - "rem": 1, - "*": 2, - "opt_some": 1, - "opt_none": 1, - "list_vt_foreach": 1, - "": 3, - "list_vt_foreach_env": 1, - "mynode_null": 5, - "mynode": 3, - "null": 1, - "the_null_ptr": 1, - "mynode_free": 1, - "nx2": 4, - "mynode_get_elt": 1, - "nx1": 7, - "UN.castvwtp1": 2, - "mynode_set_elt": 1, - "l": 3, - "__assert": 2, - "praxi": 1, - "mynode_getfree_elt": 1, - "linset_takeout_ngc": 2, - "takeout": 3, - "mynode0": 1, - "pf_x": 6, - "view@x": 3, - "pf_xs1": 6, - "view@xs1": 3, - "linset_takeoutmax_ngc": 2, - "xs_": 4, - "@list_vt_nil": 1, - "linset_takeoutmin_ngc": 2, - "unsnoc": 4, - "pos": 1, - "and": 10, - "fold@xs": 1, - "ATS_PACKNAME": 1, - "ATS_STALOADFLAG": 1, - "no": 2, - "static": 1, - "loading": 1, - "at": 2, - "run": 1, - "time": 1, - "castfn": 1, - "linset2list": 1, + "phil_dine": 3, + "lf": 5, + "rf": 5, + "phil_think": 3, + "cleaner_wash": 3, + "cleaner_return": 4, "": 1, "html": 1, "PUBLIC": 1, "W3C": 1, "DTD": 2, "XHTML": 1, + "1": 3, "EN": 1, "http": 2, "www": 1, @@ -1400,6 +1236,7 @@ "sitting": 1, "around": 1, "table": 3, + "and": 10, "there": 3, "also": 3, "forks": 7, @@ -1407,6 +1244,7 @@ "on": 8, "such": 1, "each": 2, + "is": 26, "located": 2, "between": 1, "left": 3, @@ -1423,6 +1261,7 @@ "thinking": 1, "dining.": 1, "order": 1, + "to": 16, "dine": 1, "needs": 2, "first": 2, @@ -1486,6 +1325,7 @@ "until": 2, "taken": 1, "channel.": 2, + "channel_takeout": 4, "empty": 1, "inserted": 1, "Channel": 2, @@ -1505,17 +1345,20 @@ "numbers": 1, "less": 1, "than": 1, + ".": 14, "channels": 4, "storing": 3, "chosen": 3, "capacity": 3, "reason": 1, "store": 1, + "at": 2, "most": 1, "guarantee": 1, "these": 1, "never": 2, "so": 2, + "no": 2, "attempt": 1, "made": 1, "send": 1, @@ -1540,6 +1383,7 @@ "should": 3, "straighforward": 2, "follow": 2, + "code": 6, "Cleaner": 1, "finds": 1, "number": 2, @@ -1566,6 +1410,7 @@ "One": 1, "able": 1, "encounter": 1, + "deadlock": 2, "after": 1, "running": 1, "simulation": 1, @@ -1582,6 +1427,156 @@ "": 1, "main": 1, "fprint_filsub": 1, + "reuse": 2, + "set_vtype": 3, + "elt": 2, + "t@ype": 2, + "List0_vt": 5, + "linset_nil": 2, + "list_vt_nil": 16, + "linset_make_nil": 2, + "linset_sing": 2, + "list_vt_cons": 17, + "linset_make_sing": 2, + "linset_is_nil": 2, + "list_vt_is_nil": 1, + "linset_isnot_nil": 2, + "list_vt_is_cons": 1, + "linset_size": 2, + "list_vt_length": 1, + "linset_is_member": 3, + "x0": 22, + "aux": 4, + "nat": 4, + "": 3, + "list_vt": 7, + "<": 14, + "sgn": 9, + "compare_elt_elt": 4, + "false": 6, + "true": 5, + "linset_copy": 2, + "list_vt_copy": 2, + "linset_free": 2, + "list_vt_free": 1, + "linset_insert": 3, + "mynode_cons": 4, + "nx": 22, + "mynode1": 6, + "xs1": 15, + "UN.castvwtp0": 8, + "List1_vt": 5, + "@list_vt_cons": 5, + "xs2": 3, + "prval": 20, + "UN.cast2void": 5, + ";": 4, + "fold@": 8, + "ins": 3, + "tail": 1, + "recursive": 1, + "&": 17, + "n1": 4, + "<=>": 1, + "mynode_make_elt": 4, + "ans": 2, + "found": 1, + "effmask_all": 3, + "free@": 1, + "xs1_": 3, + "rem": 1, + "linset_remove": 2, + "*": 2, + "linset_choose": 3, + "opt_some": 1, + "opt_none": 1, + "env": 11, + "linset_foreach_env": 3, + "list_vt_foreach": 1, + "fwork": 3, + "": 3, + "linset_foreach": 3, + "list_vt_foreach_env": 1, + "linset_listize": 2, + "linset_listize1": 2, + "mynode_null": 5, + "mynode": 3, + "null": 1, + "the_null_ptr": 1, + "mynode_free": 1, + "nx2": 4, + "mynode_get_elt": 1, + "nx1": 7, + "UN.castvwtp1": 2, + "mynode_set_elt": 1, + "l": 3, + "__assert": 2, + "praxi": 1, + "mynode_getfree_elt": 1, + "linset_takeout_ngc": 2, + "set": 34, + "takeout": 3, + "mynode0": 1, + "pf_x": 6, + "view@x": 3, + "pf_xs1": 6, + "view@xs1": 3, + "res": 9, + "linset_takeoutmax_ngc": 2, + "xs_": 4, + "@list_vt_nil": 1, + "linset_takeoutmin_ngc": 2, + "unsnoc": 4, + "pos": 1, + "": 16, + "fold@xs": 1, + "nmod": 1, + "randsleep": 6, + "intGte": 1, + "ignoret": 2, + "sleep": 2, + "uInt": 1, + "rand": 1, + "mod": 1, + "println": 9, + "nl": 2, + "nr": 2, + "ch_lfork": 2, + "ch_rfork": 2, + "HX": 1, + "try": 1, + "actively": 1, + "induce": 1, + "ch_forktray": 3, + "f0": 3, + "dynload": 3, + "mythread_create_cloptr": 6, + "llam": 6, + "while": 1, + "t0p": 31, + "x1": 1, + "x2": 1, + "linset_make_list": 1, + "List": 1, + "INV": 24, + "size_t": 1, + "linset_isnot_member": 1, + "linset_takeout": 1, + "opt": 6, + "endfun": 1, + "linset_takeout_opt": 1, + "Option_vt": 4, + "linset_choose_opt": 1, + "linset_takeoutmax": 1, + "linset_takeoutmax_opt": 1, + "linset_takeoutmin": 1, + "linset_takeoutmin_opt": 1, + "fprint_linset": 3, + "sep": 1, + "FILEref": 2, + "overload": 1, + "with": 1, + "vt0p": 2, "option0": 3, "functor_option0": 2, "option0_map": 1, @@ -1598,7 +1593,15 @@ "list_t": 1, "g0ofg1_list": 1, "Yoneda_bool_list0": 3, - "myboolist1": 2 + "myboolist1": 2, + "ATS_PACKNAME": 1, + "ATS_STALOADFLAG": 1, + "static": 1, + "loading": 1, + "run": 1, + "time": 1, + "castfn": 1, + "linset2list": 1 }, "Agda": { "module": 3, @@ -1660,64 +1663,20 @@ }, "Alloy": { "module": 3, - "examples/systems/file_system": 1, - "abstract": 2, + "examples/systems/marksweepgc": 1, "sig": 20, - "Object": 10, + "Node": 10, "{": 54, "}": 60, - "Name": 2, - "File": 1, - "extends": 10, - "some": 3, - "d": 3, - "Dir": 8, - "|": 19, - "this": 14, - "in": 19, - "d.entries.contents": 1, - "entries": 3, - "set": 10, - "DirEntry": 2, - "parent": 3, - "lone": 6, - "this.": 4, - "@contents.": 1, - "@entries": 1, - "all": 16, - "e1": 2, - "e2": 2, - "e1.name": 1, - "e2.name": 1, - "@parent": 2, - "Root": 5, - "one": 8, - "no": 8, - "Cur": 1, - "name": 1, - "contents": 2, - "pred": 16, - "OneParent_buggyVersion": 2, - "-": 41, - "d.parent": 2, - "OneParent_correctVersion": 2, - "(": 12, - "&&": 2, - "contents.d": 1, - ")": 9, - "NoDirAliases": 3, - "o": 1, - "o.": 1, - "check": 6, - "for": 7, - "expect": 6, - "examples/systems/marksweepgc": 1, - "Node": 10, "HeapState": 5, "left": 3, "right": 1, + "-": 41, + "lone": 6, "marked": 1, + "set": 10, "freeList": 1, + "pred": 16, "clearMarks": 1, "[": 82, "hs": 16, @@ -1730,7 +1689,9 @@ "]": 80, "+": 14, "n.": 1, + "(": 12, "hs.left": 2, + ")": 9, "mark": 1, "from": 2, "hs.reachable": 1, @@ -1742,15 +1703,57 @@ "root": 5, "assert": 3, "Soundness1": 2, + "all": 16, "h": 9, "live": 3, "h.reachable": 1, + "|": 19, "h.right": 1, "Soundness2": 2, + "no": 8, ".reachable": 2, "h.GC": 1, + "in": 19, ".freeList": 1, + "check": 6, + "for": 7, + "expect": 6, "Completeness": 1, + "examples/systems/file_system": 1, + "abstract": 2, + "Object": 10, + "Name": 2, + "File": 1, + "extends": 10, + "some": 3, + "d": 3, + "Dir": 8, + "this": 14, + "d.entries.contents": 1, + "entries": 3, + "DirEntry": 2, + "parent": 3, + "this.": 4, + "@contents.": 1, + "@entries": 1, + "e1": 2, + "e2": 2, + "e1.name": 1, + "e2.name": 1, + "@parent": 2, + "Root": 5, + "one": 8, + "Cur": 1, + "name": 1, + "contents": 2, + "OneParent_buggyVersion": 2, + "d.parent": 2, + "OneParent_correctVersion": 2, + "&&": 2, + "contents.d": 1, + "NoDirAliases": 3, + "o": 1, + "o.": 1, "examples/systems/views": 1, "open": 2, "util/ordering": 1, @@ -2323,34 +2326,240 @@ "/private/etc/apache2/other/*.conf": 1 }, "Apex": { - "global": 70, + "public": 10, "class": 7, - "ArrayUtils": 1, + "GeoUtils": 1, "{": 219, + "//": 11, + "generate": 1, + "a": 6, + "KML": 1, + "string": 7, + "given": 2, + "page": 1, + "reference": 1, + "call": 1, + "getContent": 1, + "(": 481, + ")": 481, + "then": 1, + "cleanup": 1, + "the": 4, + "output.": 1, "static": 83, + "generateFromContent": 1, + "PageReference": 2, + "pr": 1, + "ret": 7, + ";": 308, + "try": 1, + "pr.getContent": 1, + ".toString": 1, + "ret.replaceAll": 4, + "get": 4, + "content": 1, + "produces": 1, + "quote": 1, + "chars": 1, + "we": 1, + "need": 1, + "to": 4, + "escape": 1, + "these": 2, + "in": 1, + "node": 1, + "value": 10, + "}": 219, + "catch": 1, + "exception": 1, + "e": 2, + "system.debug": 2, + "+": 75, + "must": 1, + "use": 1, + "ALL": 1, + "since": 1, + "many": 1, + "new": 60, + "line": 1, + "may": 1, + "also": 1, + "return": 106, + "Map": 33, + "": 2, "String": 60, + "geo_response": 1, + "accountAddressString": 2, + "account": 2, + "acct": 1, + "form": 1, + "an": 4, + "address": 1, + "object": 1, + "adr": 9, + "acct.billingstreet": 1, + "acct.billingcity": 1, + "acct.billingstate": 1, + "if": 91, + "acct.billingpostalcode": 2, + "null": 92, + "acct.billingcountry": 2, + "adr.replaceAll": 4, + "testmethod": 1, + "void": 9, + "t1": 1, + "pageRef": 3, + "Page.kmlPreviewTemplate": 1, + "Test.setCurrentPage": 1, + "system.assert": 1, + "GeoUtils.generateFromContent": 1, + "Account": 2, + "name": 2, + "billingstreet": 1, + "billingcity": 1, + "billingstate": 1, + "billingpostalcode": 1, + "billingcountry": 1, + "insert": 1, + "system.assertEquals": 1, + "global": 70, + "LanguageUtils": 1, + "final": 6, + "HTTP_LANGUAGE_CODE_PARAMETER_KEY": 2, + "DEFAULT_LANGUAGE_CODE": 3, + "Set": 6, + "": 30, + "SUPPORTED_LANGUAGE_CODES": 2, + "//Chinese": 2, + "Simplified": 1, + "Traditional": 1, + "//Dutch": 1, + "//English": 1, + "//Finnish": 1, + "//French": 1, + "//German": 1, + "//Italian": 1, + "//Japanese": 1, + "//Korean": 1, + "//Polish": 1, + "//Portuguese": 1, + "Brazilian": 1, + "//Russian": 1, + "//Spanish": 1, + "//Swedish": 1, + "//Thai": 1, + "//Czech": 1, + "//Danish": 1, + "//Hungarian": 1, + "//Indonesian": 1, + "//Turkish": 1, + "private": 10, + "": 29, + "DEFAULTS": 1, + "getLangCodeByHttpParam": 4, + "returnValue": 22, + "LANGUAGE_CODE_SET": 1, + "getSuppLangCodeSet": 2, + "ApexPages.currentPage": 4, + "&&": 46, + ".getParameters": 2, + "LANGUAGE_HTTP_PARAMETER": 7, + "StringUtils.lowerCase": 3, + "StringUtils.replaceChars": 2, + ".get": 4, + "//underscore": 1, + "//dash": 1, + "DEFAULTS.containsKey": 3, + "DEFAULTS.get": 3, + "StringUtils.isNotBlank": 1, + "SUPPORTED_LANGUAGE_CODES.contains": 2, + "getLangCodeByBrowser": 4, + "LANGUAGES_FROM_BROWSER_AS_STRING": 2, + ".getHeaders": 1, + "List": 71, + "LANGUAGES_FROM_BROWSER_AS_LIST": 3, + "splitAndFilterAcceptLanguageHeader": 2, + "LANGUAGES_FROM_BROWSER_AS_LIST.size": 1, + "for": 24, + "languageFromBrowser": 6, + "getLangCodeByUser": 3, + "UserInfo.getLanguage": 1, + "getLangCodeByHttpParamOrIfNullThenBrowser": 1, + "StringUtils.defaultString": 4, + "getLangCodeByHttpParamOrIfNullThenUser": 1, + "getLangCodeByBrowserOrIfNullThenHttpParam": 1, + "getLangCodeByBrowserOrIfNullThenUser": 1, + "header": 2, + "returnList": 11, "[": 102, "]": 102, + "tokens": 3, + "StringUtils.split": 1, + "token": 7, + "token.contains": 1, + "token.substring": 1, + "token.indexOf": 1, + "returnList.add": 8, + "StringUtils.length": 1, + "StringUtils.substring": 1, + "langCodes": 2, + "langCode": 3, + "langCodes.add": 1, + "getLanguageName": 1, + "displayLanguageCode": 13, + "languageCode": 2, + "translatedLanguageNames.get": 2, + "filterLanguageCode": 4, + "getAllLanguages": 3, + "translatedLanguageNames.containsKey": 1, + "<": 32, + "translatedLanguageNames": 1, + "TwilioAPI": 2, + "MissingTwilioConfigCustomSettingsException": 2, + "extends": 1, + "Exception": 1, + "TwilioRestClient": 5, + "client": 2, + "getDefaultClient": 2, + "TwilioConfig__c": 5, + "twilioCfg": 7, + "getTwilioConfig": 3, + "TwilioAPI.client": 2, + "twilioCfg.AccountSid__c": 3, + "twilioCfg.AuthToken__c": 3, + "TwilioAccount": 1, + "getDefaultAccount": 1, + ".getAccount": 2, + "TwilioCapability": 2, + "createCapability": 1, + "createClient": 1, + "accountSid": 2, + "authToken": 2, + "Test.isRunningTest": 1, + "dummy": 2, + "sid": 1, + "else": 25, + "TwilioConfig__c.getOrgDefaults": 1, + "throw": 6, + "@isTest": 1, + "test_TwilioAPI": 1, + "System.assertEquals": 5, + "TwilioAPI.getTwilioConfig": 2, + ".AccountSid__c": 1, + ".AuthToken__c": 1, + "TwilioAPI.getDefaultClient": 2, + ".getAccountSid": 1, + ".getSid": 2, + "TwilioAPI.getDefaultAccount": 1, + "ArrayUtils": 1, "EMPTY_STRING_ARRAY": 1, - "new": 60, - "}": 219, - ";": 308, "Integer": 34, "MAX_NUMBER_OF_ELEMENTS_IN_LIST": 5, - "get": 4, - "return": 106, - "List": 71, - "": 30, "objectToString": 1, - "(": 481, "": 22, "objects": 3, - ")": 481, "strings": 3, - "null": 92, - "if": 91, "objects.size": 1, - "for": 24, "Object": 23, "obj": 3, "instanceof": 1, @@ -2363,11 +2572,9 @@ "-": 18, "tmp": 6, "while": 8, - "+": 75, "SObject": 19, "lowerCase": 1, "strs": 9, - "returnValue": 22, "strs.size": 3, "str": 10, "returnValue.add": 3, @@ -2382,7 +2589,6 @@ "merged": 6, "array1.size": 4, "array2.size": 2, - "<": 32, "": 19, "sObj": 4, "merged.add": 2, @@ -2398,37 +2604,29 @@ "fieldName.trim": 2, ".length": 2, "plucked": 3, - ".get": 4, "toString": 3, - "void": 9, "assertArraysAreEqual": 2, "expected": 16, "actual": 16, "//check": 2, - "to": 4, "see": 2, "one": 2, "param": 2, "is": 5, "but": 2, - "the": 4, "other": 2, "not": 3, "System.assert": 6, - "&&": 46, "ArrayUtils.toString": 12, "expected.size": 4, "actual.size": 2, "merg": 2, "list1": 15, "list2": 9, - "returnList": 11, "list1.size": 6, "list2.size": 2, - "throw": 6, "IllegalArgumentException": 5, "elmt": 8, - "returnList.add": 8, "subset": 6, "aList": 4, "count": 10, @@ -2437,7 +2635,6 @@ "size": 2, "1": 2, "list1.get": 2, - "//": 11, "//LIST/ARRAY": 1, "SORTING": 1, "//FOR": 2, @@ -2457,12 +2654,10 @@ "OBJECTS": 1, "sObjects": 1, "ISObjectComparator": 3, - "private": 10, "lo0": 6, "hi0": 8, "lo": 42, "hi": 50, - "else": 25, "comparator.compare": 12, "prs": 8, "pivot": 14, @@ -2478,13 +2673,10 @@ "toBooleanDefaultIfNull": 1, "defaultVal": 2, "toBoolean": 2, - "value": 10, "strToBoolean": 1, "StringUtils.equalsIgnoreCase": 1, "//Converts": 1, - "an": 4, "int": 1, - "a": 6, "boolean": 1, "specifying": 1, "//the": 2, @@ -2515,7 +2707,6 @@ "stdAttachments": 4, "SELECT": 1, "id": 1, - "name": 2, "FROM": 1, "Attachment": 2, "WHERE": 1, @@ -2558,249 +2749,77 @@ "str.split": 1, "split.size": 2, ".split": 1, - "isNotValidEmailAddress": 1, - "public": 10, - "GeoUtils": 1, - "generate": 1, - "KML": 1, - "string": 7, - "given": 2, - "page": 1, - "reference": 1, - "call": 1, - "getContent": 1, - "then": 1, - "cleanup": 1, - "output.": 1, - "generateFromContent": 1, - "PageReference": 2, - "pr": 1, - "ret": 7, - "try": 1, - "pr.getContent": 1, - ".toString": 1, - "ret.replaceAll": 4, - "content": 1, - "produces": 1, - "quote": 1, - "chars": 1, - "we": 1, - "need": 1, - "escape": 1, - "these": 2, - "in": 1, - "node": 1, - "catch": 1, - "exception": 1, - "e": 2, - "system.debug": 2, - "must": 1, - "use": 1, - "ALL": 1, - "since": 1, - "many": 1, - "line": 1, - "may": 1, - "also": 1, - "Map": 33, - "": 2, - "geo_response": 1, - "accountAddressString": 2, - "account": 2, - "acct": 1, - "form": 1, - "address": 1, - "object": 1, - "adr": 9, - "acct.billingstreet": 1, - "acct.billingcity": 1, - "acct.billingstate": 1, - "acct.billingpostalcode": 2, - "acct.billingcountry": 2, - "adr.replaceAll": 4, - "testmethod": 1, - "t1": 1, - "pageRef": 3, - "Page.kmlPreviewTemplate": 1, - "Test.setCurrentPage": 1, - "system.assert": 1, - "GeoUtils.generateFromContent": 1, - "Account": 2, - "billingstreet": 1, - "billingcity": 1, - "billingstate": 1, - "billingpostalcode": 1, - "billingcountry": 1, - "insert": 1, - "system.assertEquals": 1, - "LanguageUtils": 1, - "final": 6, - "HTTP_LANGUAGE_CODE_PARAMETER_KEY": 2, - "DEFAULT_LANGUAGE_CODE": 3, - "Set": 6, - "SUPPORTED_LANGUAGE_CODES": 2, - "//Chinese": 2, - "Simplified": 1, - "Traditional": 1, - "//Dutch": 1, - "//English": 1, - "//Finnish": 1, - "//French": 1, - "//German": 1, - "//Italian": 1, - "//Japanese": 1, - "//Korean": 1, - "//Polish": 1, - "//Portuguese": 1, - "Brazilian": 1, - "//Russian": 1, - "//Spanish": 1, - "//Swedish": 1, - "//Thai": 1, - "//Czech": 1, - "//Danish": 1, - "//Hungarian": 1, - "//Indonesian": 1, - "//Turkish": 1, - "": 29, - "DEFAULTS": 1, - "getLangCodeByHttpParam": 4, - "LANGUAGE_CODE_SET": 1, - "getSuppLangCodeSet": 2, - "ApexPages.currentPage": 4, - ".getParameters": 2, - "LANGUAGE_HTTP_PARAMETER": 7, - "StringUtils.lowerCase": 3, - "StringUtils.replaceChars": 2, - "//underscore": 1, - "//dash": 1, - "DEFAULTS.containsKey": 3, - "DEFAULTS.get": 3, - "StringUtils.isNotBlank": 1, - "SUPPORTED_LANGUAGE_CODES.contains": 2, - "getLangCodeByBrowser": 4, - "LANGUAGES_FROM_BROWSER_AS_STRING": 2, - ".getHeaders": 1, - "LANGUAGES_FROM_BROWSER_AS_LIST": 3, - "splitAndFilterAcceptLanguageHeader": 2, - "LANGUAGES_FROM_BROWSER_AS_LIST.size": 1, - "languageFromBrowser": 6, - "getLangCodeByUser": 3, - "UserInfo.getLanguage": 1, - "getLangCodeByHttpParamOrIfNullThenBrowser": 1, - "StringUtils.defaultString": 4, - "getLangCodeByHttpParamOrIfNullThenUser": 1, - "getLangCodeByBrowserOrIfNullThenHttpParam": 1, - "getLangCodeByBrowserOrIfNullThenUser": 1, - "header": 2, - "tokens": 3, - "StringUtils.split": 1, - "token": 7, - "token.contains": 1, - "token.substring": 1, - "token.indexOf": 1, - "StringUtils.length": 1, - "StringUtils.substring": 1, - "langCodes": 2, - "langCode": 3, - "langCodes.add": 1, - "getLanguageName": 1, - "displayLanguageCode": 13, - "languageCode": 2, - "translatedLanguageNames.get": 2, - "filterLanguageCode": 4, - "getAllLanguages": 3, - "translatedLanguageNames.containsKey": 1, - "translatedLanguageNames": 1, - "TwilioAPI": 2, - "MissingTwilioConfigCustomSettingsException": 2, - "extends": 1, - "Exception": 1, - "TwilioRestClient": 5, - "client": 2, - "getDefaultClient": 2, - "TwilioConfig__c": 5, - "twilioCfg": 7, - "getTwilioConfig": 3, - "TwilioAPI.client": 2, - "twilioCfg.AccountSid__c": 3, - "twilioCfg.AuthToken__c": 3, - "TwilioAccount": 1, - "getDefaultAccount": 1, - ".getAccount": 2, - "TwilioCapability": 2, - "createCapability": 1, - "createClient": 1, - "accountSid": 2, - "authToken": 2, - "Test.isRunningTest": 1, - "dummy": 2, - "sid": 1, - "TwilioConfig__c.getOrgDefaults": 1, - "@isTest": 1, - "test_TwilioAPI": 1, - "System.assertEquals": 5, - "TwilioAPI.getTwilioConfig": 2, - ".AccountSid__c": 1, - ".AuthToken__c": 1, - "TwilioAPI.getDefaultClient": 2, - ".getAccountSid": 1, - ".getSid": 2, - "TwilioAPI.getDefaultAccount": 1 + "isNotValidEmailAddress": 1 }, "AppleScript": { + "on": 18, + "isVoiceOverRunning": 3, + "(": 89, + ")": 88, "set": 108, - "windowWidth": 3, + "isRunning": 3, "to": 128, - "windowHeight": 3, - "delay": 3, - "AppleScript": 2, - "s": 3, - "text": 13, - "item": 13, - "delimiters": 1, + "false": 9, "tell": 40, "application": 16, - "screen_width": 2, - "(": 89, - "do": 4, - "JavaScript": 2, - "in": 13, - "document": 2, - ")": 88, - "screen_height": 2, - "end": 67, - "myFrontMost": 3, "name": 8, "of": 72, - "first": 1, "processes": 2, - "whose": 1, - "frontmost": 1, - "is": 40, + "contains": 1, + "end": 67, + "return": 16, + "isVoiceOverRunningWithAppleScript": 3, + "if": 50, + "then": 28, + "isRunningWithAppleScript": 3, "true": 8, - "{": 32, - "desktopTop": 2, - "desktopLeft": 1, - "desktopRight": 1, - "desktopBottom": 1, - "}": 32, - "bounds": 2, - "desktop": 1, - "try": 10, - "process": 5, - "w": 5, - "h": 4, - "size": 5, - "drawer": 2, - "window": 5, - "on": 18, - "error": 3, - "position": 1, "-": 57, - "/": 2, + "is": 40, + "AppleScript": 2, + "enabled": 2, + "VoiceOver": 1, + "try": 10, + "x": 1, + "bounds": 2, + "vo": 1, + "cursor": 1, + "error": 3, + "currentDate": 3, + "current": 3, + "date": 1, + "amPM": 4, + "currentHour": 9, + "s": 3, + "minutes": 2, + "and": 7, + "<": 2, + "else": 14, + "make": 3, + "below": 1, + "sound": 1, + "nice": 1, + "currentMinutes": 4, + "&": 63, + "as": 27, + "text": 13, + "ensure": 1, + "nn": 2, + "gets": 1, + "AM": 1, + "equal": 3, + "readjust": 1, + "for": 5, + "hour": 1, + "time": 1, + "currentTime": 3, + "day": 1, + "output": 1, + "say": 1, + "delay": 3, "property": 7, "type_list": 6, + "{": 32, + "}": 32, "extension_list": 6, "html": 2, "not": 5, @@ -2810,7 +2829,6 @@ "FinderSelection": 4, "the": 56, "selection": 2, - "as": 27, "alias": 8, "list": 9, "FS": 10, @@ -2824,13 +2842,11 @@ "SelectionCount": 6, "number": 6, "count": 10, - "if": 50, - "then": 28, "userPicksFolder": 6, - "else": 14, "MyPath": 4, "path": 6, "me": 2, + "item": 13, "If": 2, "I": 2, "m": 2, @@ -2851,11 +2867,9 @@ "from": 9, "this_item": 14, "info": 4, - "for": 5, "folder": 10, "processFolder": 8, - "false": 9, - "and": 7, + "in": 13, "or": 6, "extension": 4, "theFilePath": 8, @@ -2863,28 +2877,28 @@ "thePOSIXFilePath": 8, "POSIX": 4, "processFile": 8, + "process": 5, "folders": 2, "theFolder": 6, "without": 2, "invisibles": 2, - "&": 63, - "thePOSIXFileName": 6, - "terminalCommand": 6, - "convertCommand": 4, - "newFileName": 4, - "shell": 2, - "script": 2, "need": 1, "pass": 1, "URL": 1, "Terminal": 1, + "thePOSIXFileName": 6, + "terminalCommand": 6, + "convertCommand": 4, + "newFileName": 4, + "do": 4, + "shell": 2, + "script": 2, "localMailboxes": 3, "every": 3, "mailbox": 2, "greater": 5, "than": 6, "messageCountDisplay": 5, - "return": 16, "my": 3, "getMessageCountsForMailboxes": 4, "everyAccount": 2, @@ -2892,7 +2906,6 @@ "eachAccount": 3, "accountMailboxes": 3, "outputMessage": 2, - "make": 3, "new": 2, "outgoing": 2, "message": 2, @@ -2901,6 +2914,7 @@ "subject": 1, "visible": 2, "font": 2, + "size": 5, "theMailboxes": 2, "mailboxes": 1, "returns": 2, @@ -2920,20 +2934,52 @@ "paddedString": 5, "character": 2, "less": 1, - "equal": 3, "paddingLength": 2, "times": 1, "space": 1, + "activate": 3, + "pane": 4, + "UI": 1, + "elements": 1, + "tab": 1, + "group": 1, + "window": 5, + "click": 1, + "radio": 1, + "button": 4, + "get": 1, + "value": 1, + "field": 1, + "display": 4, + "dialog": 4, + "windowWidth": 3, + "windowHeight": 3, + "delimiters": 1, + "screen_width": 2, + "JavaScript": 2, + "document": 2, + "screen_height": 2, + "myFrontMost": 3, + "first": 1, + "whose": 1, + "frontmost": 1, + "desktopTop": 2, + "desktopLeft": 1, + "desktopRight": 1, + "desktopBottom": 1, + "desktop": 1, + "w": 5, + "h": 4, + "drawer": 2, + "position": 1, + "/": 2, "lowFontSize": 9, "highFontSize": 6, "messageText": 4, "userInput": 4, - "display": 4, - "dialog": 4, "default": 4, "answer": 3, "buttons": 3, - "button": 4, "returned": 5, "minimumFontSize": 4, "newFontSize": 6, @@ -2941,55 +2987,12 @@ "theText": 3, "exit": 1, "fontList": 2, - "activate": 3, "crazyTextMessage": 2, "eachCharacter": 4, "characters": 1, "some": 1, "random": 4, - "color": 1, - "current": 3, - "pane": 4, - "UI": 1, - "elements": 1, - "enabled": 2, - "tab": 1, - "group": 1, - "click": 1, - "radio": 1, - "get": 1, - "value": 1, - "field": 1, - "isVoiceOverRunning": 3, - "isRunning": 3, - "contains": 1, - "isVoiceOverRunningWithAppleScript": 3, - "isRunningWithAppleScript": 3, - "VoiceOver": 1, - "x": 1, - "vo": 1, - "cursor": 1, - "currentDate": 3, - "date": 1, - "amPM": 4, - "currentHour": 9, - "minutes": 2, - "<": 2, - "below": 1, - "sound": 1, - "nice": 1, - "currentMinutes": 4, - "ensure": 1, - "nn": 2, - "gets": 1, - "AM": 1, - "readjust": 1, - "hour": 1, - "time": 1, - "currentTime": 3, - "day": 1, - "output": 1, - "say": 1 + "color": 1 }, "Arduino": { "void": 2, @@ -3004,45 +3007,12 @@ "Serial.print": 1 }, "AsciiDoc": { - "Gregory": 2, - "Rom": 2, - "has": 2, - "written": 2, - "an": 2, "AsciiDoc": 3, - "plugin": 2, - "for": 2, - "the": 2, - "Redmine": 2, - "project": 2, - "management": 2, - "application.": 2, - "https": 1, - "//github.com/foo": 1, - "-": 4, - "users/foo": 1, - "vicmd": 1, - "gif": 1, - "tag": 1, - "rom": 2, - "[": 2, - "]": 2, - "end": 1, - "berschrift": 1, - "*": 4, - "Codierungen": 1, - "sind": 1, - "verr": 1, - "ckt": 1, - "auf": 1, - "lteren": 1, - "Versionen": 1, - "von": 1, - "Ruby": 1, "Home": 1, "Page": 1, "Example": 1, "Articles": 1, + "-": 4, "Item": 6, "Document": 1, "Title": 1, @@ -3068,49 +3038,103 @@ "B": 2, "B*": 1, ".Section": 1, - "list": 1 + "list": 1, + "*": 4, + "Gregory": 2, + "Rom": 2, + "has": 2, + "written": 2, + "an": 2, + "plugin": 2, + "for": 2, + "the": 2, + "Redmine": 2, + "project": 2, + "management": 2, + "application.": 2, + "https": 1, + "//github.com/foo": 1, + "users/foo": 1, + "vicmd": 1, + "gif": 1, + "tag": 1, + "rom": 2, + "[": 2, + "]": 2, + "end": 1, + "berschrift": 1, + "Codierungen": 1, + "sind": 1, + "verr": 1, + "ckt": 1, + "auf": 1, + "lteren": 1, + "Versionen": 1, + "von": 1, + "Ruby": 1 }, "AspectJ": { "package": 2, - "com.blogspot.miguelinlas3.aspectj.cache": 1, + "aspects.caching": 1, ";": 29, "import": 5, "java.util.Map": 2, + "public": 6, + "abstract": 3, + "aspect": 2, + "OptimizeRecursionCache": 2, + "{": 11, + "@SuppressWarnings": 3, + "(": 46, + ")": 46, + "private": 1, + "Map": 3, + "_cache": 2, + "getCache": 2, + "}": 11, + "pointcut": 3, + "operation": 4, + "Object": 15, + "o": 16, + "topLevelOperation": 4, + "&&": 2, + "cflowbelow": 1, + "before": 1, + "System.out.println": 5, + "+": 7, + "around": 2, + "cachedValue": 4, + "_cache.get": 1, + "if": 2, + "null": 1, + "return": 5, + "proceed": 2, + "after": 2, + "returning": 2, + "result": 3, + "_cache.put": 1, + "_cache.size": 1, + "com.blogspot.miguelinlas3.aspectj.cache": 1, "java.util.WeakHashMap": 1, "org.aspectj.lang.JoinPoint": 1, "com.blogspot.miguelinlas3.aspectj.cache.marker.Cachable": 1, - "public": 6, - "aspect": 2, "CacheAspect": 1, - "{": 11, - "pointcut": 3, "cache": 3, - "(": 46, "Cachable": 2, "cachable": 5, - ")": 46, "execution": 1, "@Cachable": 2, "*": 2, "..": 1, - "&&": 2, "@annotation": 1, - "Object": 15, - "around": 2, "String": 3, "evaluatedKey": 6, "this.evaluateKey": 1, "cachable.scriptKey": 1, "thisJoinPoint": 1, - "if": 2, "cache.containsKey": 1, - "System.out.println": 5, - "+": 7, - "return": 5, "this.cache.get": 1, - "}": 11, "value": 3, - "proceed": 2, "cache.put": 1, "protected": 2, "evaluateKey": 1, @@ -3129,30 +3153,9 @@ "scripting": 1, "in": 1, "annotation": 1, - "Map": 3, "": 2, "new": 1, - "WeakHashMap": 1, - "aspects.caching": 1, - "abstract": 3, - "OptimizeRecursionCache": 2, - "@SuppressWarnings": 3, - "private": 1, - "_cache": 2, - "getCache": 2, - "operation": 4, - "o": 16, - "topLevelOperation": 4, - "cflowbelow": 1, - "before": 1, - "cachedValue": 4, - "_cache.get": 1, - "null": 1, - "after": 2, - "returning": 2, - "result": 3, - "_cache.put": 1, - "_cache.size": 1 + "WeakHashMap": 1 }, "Assembly": { ";": 20, @@ -3169,606 +3172,78 @@ "All": 4, "rights": 4, "reserved.": 4, - "xor": 52, - "eax": 510, - "mov": 1253, - "[": 2026, - "stub_size": 1, - "]": 2026, - "current_pass": 16, - "ax": 87, - "resolver_flags": 1, - "number_of_sections": 1, - "actual_fixups_size": 1, - "assembler_loop": 2, - "labels_list": 3, - "tagged_blocks": 23, - "additional_memory": 6, - "free_additional_memory": 2, - "additional_memory_end": 9, - "structures_buffer": 9, - "esi": 619, - "source_start": 1, - "edi": 250, - "code_start": 2, - "dword": 87, - "adjustment": 4, - "+": 232, - "addressing_space": 17, - "error_line": 16, - "counter": 13, - "format_flags": 2, - "number_of_relocations": 1, - "undefined_data_end": 4, - "file_extension": 1, - "next_pass_needed": 16, - "al": 1174, - "output_format": 3, - "adjustment_sign": 2, - "code_type": 106, - "call": 845, - "init_addressing_space": 6, - "pass_loop": 2, - "assemble_line": 3, - "jnc": 11, - "cmp": 1088, - "je": 485, - "pass_done": 2, - "sub": 64, - "h": 376, - "current_line": 24, - "jmp": 450, - "missing_end_directive": 7, - "close_pass": 1, - "check_symbols": 2, - "memory_end": 7, - "jae": 34, - "symbols_checked": 2, - "test": 95, - "byte": 549, - "jz": 107, - "symbol_defined_ok": 5, - "cx": 42, - "jne": 485, - "and": 50, - "not": 42, - "or": 194, - "use_prediction_ok": 5, - "jnz": 125, - "check_use_prediction": 2, - "use_misprediction": 3, - "check_next_symbol": 5, - "define_misprediction": 4, - "check_define_prediction": 2, - "add": 76, - "LABEL_STRUCTURE_SIZE": 1, - "next_pass": 3, - "assemble_ok": 2, - "error": 7, - "undefined_symbol": 2, - "error_confirmed": 3, - "error_info": 2, - "error_handler": 3, - "esp": 14, - "ret": 70, - "inc": 87, - "passes_limit": 3, - "code_cannot_be_generated": 1, - "create_addressing_space": 1, - "ebx": 336, - "Ah": 25, - "illegal_instruction": 48, - "Ch": 11, - "jbe": 11, - "out_of_memory": 19, - "ja": 28, - "lods": 366, - "assemble_instruction": 2, - "jb": 34, - "source_end": 2, - "define_label": 2, - "define_constant": 2, - "label_addressing_space": 2, - "Fh": 73, - "new_line": 2, - "code_type_setting": 2, - "segment_prefix": 2, - "instruction_assembled": 138, - "prefixed_instruction": 11, - "symbols_file": 4, - "continue_line": 8, - "line_assembled": 3, - "invalid_use_of_symbol": 17, - "reserved_word_used_as_symbol": 6, - "label_size": 5, - "make_label": 3, - "edx": 219, - "cl": 42, - "ebp": 49, - "ds": 21, - "sbb": 9, - "jp": 2, - "label_value_ok": 2, - "recoverable_overflow": 4, - "address_sign": 4, - "make_virtual_label": 2, - "xchg": 31, - "ch": 55, - "shr": 30, - "neg": 4, - "setnz": 5, - "ah": 229, - "finish_label": 2, - "setne": 14, - "finish_label_symbol": 2, - "b": 30, - "label_symbol_ok": 2, - "new_label": 2, - "symbol_already_defined": 3, - "btr": 2, - "jc": 28, - "requalified_label": 2, - "label_made": 4, - "push": 150, - "get_constant_value": 4, - "dl": 58, - "size_override": 7, - "get_value": 2, - "pop": 99, - "bl": 124, - "ecx": 153, - "constant_referencing_mode_ok": 2, - "value_type": 42, - "make_constant": 2, - "value_sign": 3, - "constant_symbol_ok": 2, - "symbol_identifier": 4, - "new_constant": 2, - "redeclare_constant": 2, - "requalified_constant": 2, - "make_addressing_space_label": 3, - "dx": 27, - "operand_size": 121, - "operand_prefix": 9, - "opcode_prefix": 30, - "rex_prefix": 9, - "vex_required": 2, - "vex_register": 1, - "immediate_size": 9, - "instruction_handler": 32, - "movzx": 13, - "word": 79, - "extra_characters_on_line": 8, - "clc": 11, - "dec": 30, - "stc": 9, - "org_directive": 1, - "invalid_argument": 28, - "invalid_value": 21, - "get_qword_value": 5, - "in_virtual": 2, - "org_space_ok": 2, - "close_virtual_addressing_space": 3, - "org_value_ok": 2, - "bts": 1, - "label_directive": 1, - "get_label_size": 2, - "label_size_ok": 2, - "get_free_label_value": 2, - "get_address_value": 3, - "bh": 34, - "bp": 2, - "shl": 17, - "bx": 8, - "make_free_label": 1, - "address_symbol": 2, - "load_directive": 1, - "load_size_ok": 2, - "value": 38, - "get_data_point": 3, - "value_loaded": 2, - "rep": 7, - "movs": 8, - "get_data_address": 5, - "addressing_space_unavailable": 3, - "symbol_out_of_scope": 1, - "get_addressing_space": 3, - "store_label_reference": 1, - "calculate_relative_offset": 2, - "data_address_type_ok": 2, - "adc": 9, - "bad_data_address": 3, - "store_directive": 1, - "sized_store": 2, - "get_byte_value": 23, - "store_value_ok": 2, - "undefined_data_start": 3, - "display_directive": 2, - "display_byte": 2, - "stos": 107, - "display_next": 2, - "show_display_buffer": 2, - "display_done": 3, - "display_messages": 2, - "skip_block": 2, - "display_block": 4, - "times_directive": 1, - "get_count_value": 6, - "zero_times": 3, - "times_argument_ok": 2, - "counter_limit": 7, - "times_loop": 2, - "stack_overflow": 2, - "stack_limit": 2, - "times_done": 2, - "skip_symbol": 5, - "virtual_directive": 3, - "virtual_at_current": 2, - "set_virtual": 2, - "allocate_structure_data": 5, - "find_structure_data": 6, - "scan_structures": 2, - "no_such_structure": 2, - "structure_data_found": 2, - "end_virtual": 2, - "unexpected_instruction": 18, - "remove_structure_data": 7, - "lea": 8, - "std": 2, - "cld": 2, - "addressing_space_closed": 2, - "virtual_byte_ok": 2, - "virtual_word_ok": 2, - "repeat_directive": 7, - "zero_repeat": 2, - "end_repeat": 2, - "continue_repeating": 2, - "stop_repeat": 2, - "find_end_repeat": 4, - "find_structure_end": 5, - "while_directive": 7, - "do_while": 2, - "calculate_logical_expression": 3, - "while_true": 2, - "stop_while": 2, - "find_end_while": 3, - "end_while": 2, - "too_many_repeats": 1, - "if_directive": 13, - "if_true": 2, - "find_else": 4, - "else_true": 3, - "make_if_structure": 2, - "else_directive": 3, - "found_else": 2, - "skip_else": 3, - "find_end_if": 3, - "end_if": 2, - "else_found": 2, - "find_end_directive": 10, - "no_end_directive": 2, - "skip_labels": 2, - "labels_ok": 2, - "prefix_instruction": 2, - "skip_repeat": 2, - "skip_while": 2, - "skip_if": 2, - "structure_end": 4, - "end_directive": 2, - "skip_if_block": 4, - "if_block_skipped": 2, - "skip_after_else": 3, - "data_directive": 1, - "end_data": 1, - "break_directive": 1, - "find_breakable_structure": 4, - "break_repeat": 2, - "break_while": 2, - "break_if": 2, - "data_bytes": 1, - "define_data": 8, - "get_byte": 2, - "undefined_data": 7, - "get_string": 2, - "mark_undefined_data": 2, - "undefined_data_ok": 2, - "simple_data_value": 3, - "skip_expression": 1, - "duplicate_zero_times": 2, - "duplicate_single_data_value": 3, - "duplicate_data": 2, - "duplicated_values": 2, - "near": 3, - "data_defined": 5, - "skip_single_data_value": 2, - "skip_data_value": 2, - "data_unicode": 1, - "base_code": 195, - "define_words": 2, - "data_words": 1, - "get_word": 2, - "scas": 10, - "word_data_value": 2, - "word_string": 2, - "get_word_value": 19, - "mark_relocation": 26, - "jecxz": 1, - "word_string_ok": 2, - "ecx*2": 1, - "copy_word_string": 2, - "loop": 2, - "data_dwords": 1, - "get_dword": 2, - "get_dword_value": 13, - "complex_dword": 2, - "invalid_operand": 239, - "data_pwords": 1, - "get_pword": 2, - "get_pword_value": 1, - "complex_pword": 2, - "data_qwords": 1, - "get_qword": 2, - "data_twords": 1, - "get_tword": 2, - "complex_tword": 2, - "fp_zero_tword": 2, - "FFFh": 3, - "jo": 2, - "value_out_of_range": 10, - "jge": 5, - "jg": 1, - "tword_exp_ok": 3, - "large_shift": 2, - "shrd": 1, - "tword_mantissa_shift_done": 2, - "store_shifted_mantissa": 2, - "data_file": 2, - "open_binary_file": 2, - "lseek": 5, - "position_ok": 2, - "size_ok": 2, - "read": 3, - "error_reading_file": 1, - "close": 3, - "find_current_source_path": 2, - "get_current_path": 3, - "lodsb": 12, - "stosb": 6, - "cut_current_path": 1, - "current_path_ok": 1, - "/": 1, - ".": 7, - "invalid_align_value": 3, - "section_not_aligned_enough": 4, - "make_alignment": 3, - "pe_alignment": 2, - "nops": 2, - "reserved_data": 2, - "nops_stosb_ok": 2, - "nops_stosw_ok": 2, - "err_directive": 1, - "invoked_error": 2, - "assert_directive": 1, - "assertion_failed": 1, - "interface": 2, - "for": 2, - "Win32": 2, - "format": 1, - "PE": 1, - "console": 1, - "section": 4, - "code": 1, - "readable": 4, - "executable": 1, - "start": 1, - "con_handle": 8, - "STD_OUTPUT_HANDLE": 2, - "_logo": 2, - "display_string": 19, - "get_params": 2, - "information": 2, - "init_memory": 2, - "_memory_prefix": 2, - "memory_start": 4, - "display_number": 8, - "_memory_suffix": 2, - "GetTickCount": 3, - "start_time": 3, - "preprocessor": 1, - "parser": 1, - "formatter": 1, - "display_user_messages": 3, - "_passes_suffix": 2, - "div": 8, - "display_bytes_count": 2, - "display_character": 6, - "_seconds_suffix": 2, - "written_size": 1, - "_bytes_suffix": 2, - "exit_program": 5, - "_usage": 2, - "input_file": 4, - "output_file": 3, - "memory_setting": 4, - "GetCommandLine": 2, - "params": 2, - "find_command_start": 2, - "skip_quoted_name": 3, - "skip_name": 2, - "find_param": 7, - "all_params": 5, - "option_param": 2, - "Dh": 19, - "get_output_file": 2, - "process_param": 3, - "bad_params": 11, - "string_param": 3, - "copy_param": 2, - "param_end": 6, - "string_param_end": 2, - "memory_option": 4, - "passes_option": 4, - "symbols_option": 3, - "get_option_value": 3, - "get_option_digit": 2, - "option_value_ok": 4, - "invalid_option_value": 5, - "imul": 1, - "find_symbols_file_name": 2, - "include": 15, - "data": 3, - "writeable": 2, - "_copyright": 1, - "db": 35, - "VERSION_STRING": 1, - "align": 1, - "dd": 22, - "bytes_count": 8, - "displayed_count": 4, - "character": 3, - "last_displayed": 5, - "rb": 4, - "options": 1, - "buffer": 14, - "stack": 1, - "import": 1, - "rva": 16, - "kernel_name": 2, - "kernel_table": 2, - "ExitProcess": 2, - "_ExitProcess": 2, - "CreateFile": 3, - "_CreateFileA": 2, - "ReadFile": 2, - "_ReadFile": 2, - "WriteFile": 6, - "_WriteFile": 2, - "CloseHandle": 2, - "_CloseHandle": 2, - "SetFilePointer": 2, - "_SetFilePointer": 2, - "_GetCommandLineA": 2, - "GetEnvironmentVariable": 2, - "_GetEnvironmentVariable": 2, - "GetStdHandle": 5, - "_GetStdHandle": 2, - "VirtualAlloc": 2, - "_VirtualAlloc": 2, - "VirtualFree": 2, - "_VirtualFree": 2, - "_GetTickCount": 2, - "GetSystemTime": 2, - "_GetSystemTime": 2, - "GlobalMemoryStatus": 2, - "_GlobalMemoryStatus": 2, - "dw": 14, - "fixups": 1, - "discardable": 1, - "CREATE_NEW": 1, - "CREATE_ALWAYS": 2, - "OPEN_EXISTING": 2, - "OPEN_ALWAYS": 1, - "TRUNCATE_EXISTING": 1, - "FILE_SHARE_READ": 3, - "FILE_SHARE_WRITE": 1, - "FILE_SHARE_DELETE": 1, - "GENERIC_READ": 2, - "GENERIC_WRITE": 2, - "STD_INPUT_HANDLE": 1, - "FFFFFFF6h": 1, - "FFFFFFF5h": 1, - "STD_ERROR_HANDLE": 3, - "FFFFFFF4h": 1, - "MEM_COMMIT": 2, - "MEM_RESERVE": 1, - "MEM_DECOMMIT": 1, - "MEM_RELEASE": 2, - "MEM_FREE": 1, - "MEM_PRIVATE": 1, - "MEM_MAPPED": 1, - "MEM_RESET": 1, - "MEM_TOP_DOWN": 1, - "PAGE_NOACCESS": 1, - "PAGE_READONLY": 1, - "PAGE_READWRITE": 2, - "PAGE_WRITECOPY": 1, - "PAGE_EXECUTE": 1, - "PAGE_EXECUTE_READ": 1, - "PAGE_EXECUTE_READWRITE": 1, - "PAGE_EXECUTE_WRITECOPY": 1, - "PAGE_GUARD": 1, - "PAGE_NOCACHE": 1, - "allocate_memory": 4, - "jl": 13, - "large_memory": 3, - "not_enough_memory": 2, - "do_exit": 2, - "get_environment_variable": 1, - "buffer_for_variable_ok": 2, - "open": 2, - "file_error": 6, - "create": 1, - "write": 1, - "repne": 1, - "scasb": 1, - "display_loop": 2, - "display_digit": 3, - "digit_ok": 2, - "line_break_ok": 4, - "make_line_break": 2, - "A0Dh": 2, - "D0Ah": 1, - "take_last_two_characters": 2, - "block_displayed": 2, - "block_ok": 2, - "fatal_error": 1, - "error_prefix": 3, - "error_suffix": 3, - "FFh": 4, - "assembler_error": 1, - "get_error_lines": 2, - "get_next_error_line": 2, - "display_error_line": 3, - "find_definition_origin": 2, - "line_number_start": 3, - "FFFFFFFh": 2, - "line_number_ok": 2, - "line_data_start": 2, - "line_data_displayed": 2, - "get_line_data": 2, - "display_line_data": 5, - "cr_lf": 2, - "make_timestamp": 1, - "mul": 5, - "months_correction": 2, - "day_correction_ok": 4, - "day_correction": 2, "simple_instruction_except64": 1, + "cmp": 1088, + "[": 2026, + "code_type": 106, + "]": 2026, + "je": 485, + "illegal_instruction": 48, "simple_instruction": 6, + "stos": 107, + "byte": 549, + "edi": 250, + "jmp": 450, + "instruction_assembled": 138, "simple_instruction_only64": 1, + "jne": 485, "simple_instruction_16bit_except64": 1, "simple_instruction_16bit": 2, "size_prefix": 3, + "mov": 1253, + "ah": 229, + "al": 1174, + "h": 376, + "word": 79, "simple_instruction_32bit_except64": 1, "simple_instruction_32bit": 6, "iret_instruction": 1, "simple_instruction_64bit": 2, "simple_extended_instruction_64bit": 1, + "inc": 87, "simple_extended_instruction": 1, + "Fh": 73, + "prefix_instruction": 2, + "or": 194, + "prefixed_instruction": 11, + "continue_line": 8, + "segment_prefix": 2, + "shr": 30, + "and": 50, + "b": 30, "segment_register": 7, + "call": 845, "store_segment_prefix": 1, "int_instruction": 1, + "lods": 366, + "esi": 619, "get_size_operator": 137, + "ja": 28, "invalid_operand_size": 131, + "invalid_operand": 239, + "get_byte_value": 23, + "test": 95, + "eax": 510, "jns": 1, "int_imm_ok": 2, + "recoverable_overflow": 4, "CDh": 1, "aa_instruction": 1, + "push": 150, + "bl": 124, "aa_store": 2, + "xor": 52, + "xchg": 31, + "operand_size": 121, + "pop": 99, "basic_instruction": 1, + "base_code": 195, "basic_reg": 2, "basic_mem": 1, "get_address": 62, + "edx": 219, + "ebx": 336, + "ecx": 153, "basic_mem_imm": 2, "basic_mem_reg": 1, "convert_register": 60, @@ -3776,6 +3251,7 @@ "instruction_ready": 72, "operand_autodetect": 47, "store_instruction": 3, + "jb": 34, "basic_mem_imm_nosize": 2, "basic_mem_imm_8bit": 2, "basic_mem_imm_16bit": 2, @@ -3785,22 +3261,33 @@ "long_immediate_not_encodable": 14, "operand_64bit": 18, "get_simm32": 10, + "value_type": 42, + "jae": 34, "basic_mem_imm_32bit_ok": 2, "recoverable_unknown_size": 19, + "value": 38, "store_instruction_with_imm8": 11, "operand_16bit": 25, + "get_word_value": 19, + "ax": 87, "basic_mem_imm_16bit_store": 3, "basic_mem_simm_8bit": 5, "store_instruction_with_imm16": 4, "operand_32bit": 27, + "get_dword_value": 13, + "dword": 87, "basic_mem_imm_32bit_store": 3, "store_instruction_with_imm32": 4, + "get_qword_value": 5, "cdq": 11, + "value_out_of_range": 10, "get_simm32_ok": 2, + "ret": 70, "basic_reg_reg": 2, "basic_reg_imm": 2, "basic_reg_mem": 1, "basic_reg_mem_8bit": 2, + "add": 76, "nomem_instruction_ready": 53, "store_nomem_instruction": 19, "basic_reg_imm_8bit": 2, @@ -3808,16 +3295,23 @@ "basic_reg_imm_32bit": 2, "basic_reg_imm_64bit": 1, "basic_reg_imm_32bit_ok": 2, + "dl": 58, + "jz": 107, "basic_al_imm": 2, + "dx": 27, "basic_reg_imm_16bit_store": 3, "basic_reg_simm_8bit": 5, "basic_ax_imm": 2, "basic_store_imm_16bit": 2, + "mark_relocation": 26, "store_instruction_code": 26, "basic_reg_imm_32bit_store": 3, "basic_eax_imm": 2, "basic_store_imm_32bit": 2, + "error_line": 16, "ignore_unknown_size": 2, + "current_line": 24, + "error": 7, "operand_size_not_specified": 1, "single_operand_instruction": 1, "F6h": 4, @@ -3834,8 +3328,11 @@ "mov_mem_general_reg": 2, "mov_mem_sreg": 2, "mov_mem_reg_8bit": 2, + "bh": 34, "mov_mem_ax": 2, + "jnz": 125, "mov_mem_al": 1, + "ch": 55, "mov_mem_address16_al": 3, "mov_mem_address32_al": 3, "mov_mem_address64_al": 3, @@ -3848,13 +3345,16 @@ "address_16bit_prefix": 11, "store_mov_address16": 4, "invalid_address": 32, + "jge": 5, "store_mov_address64": 4, "store_address_64bit_value": 1, "mov_mem_address16_ax": 3, "mov_mem_address32_ax": 3, "mov_mem_address64_ax": 3, "A3h": 3, + "sub": 64, "mov_mem_sreg_store": 2, + "Ch": 11, "mov_mem_imm_nosize": 2, "mov_mem_imm_8bit": 2, "mov_mem_imm_16bit": 2, @@ -3873,6 +3373,7 @@ "mov_reg_creg": 2, "mov_reg_dreg": 2, "mov_reg_treg": 2, + "dec": 30, "mov_reg_sreg64": 2, "mov_reg_sreg32": 2, "mov_reg_sreg_store": 3, @@ -3902,6 +3403,7 @@ "B0h": 5, "mov_store_imm_32bit": 2, "mov_reg_imm_prefix_ok": 2, + "rex_prefix": 9, "mov_creg": 2, "mov_dreg": 2, "mov_treg": 2, @@ -3960,6 +3462,8 @@ "push_mem_32bit": 3, "push_mem_64bit": 3, "push_mem_store": 4, + "not": 42, + "FFh": 4, "push_done": 5, "push_sreg": 2, "push_reg_ok": 2, @@ -3972,7 +3476,9 @@ "push_sreg32": 3, "push_sreg64": 3, "push_sreg_store": 4, + "jc": 28, "push_sreg_386": 2, + "shl": 17, "push_imm_size_ok": 3, "push_imm_16bit": 2, "push_imm_32bit": 2, @@ -3981,8 +3487,12 @@ "push_imm_optimized_32bit": 3, "push_imm_optimized_64bit": 2, "push_imm_32bit_store": 8, + "jl": 13, "push_imm_8bit": 3, "push_imm_16bit_store": 4, + "Ah": 25, + "size_override": 7, + "operand_prefix": 9, "pop_instruction": 1, "pop_next": 2, "pop_reg": 2, @@ -4022,11 +3532,14 @@ "bound_store": 2, "enter_instruction": 1, "enter_imm16_size_ok": 2, + "next_pass_needed": 16, "enter_imm16_ok": 2, + "invalid_use_of_symbol": 17, "js": 3, "enter_imm8_size_ok": 2, "enter_imm8_ok": 2, "C8h": 2, + "bx": 8, "ret_instruction_only64": 1, "ret_instruction": 5, "ret_instruction_32bit_except64": 1, @@ -4039,6 +3552,7 @@ "ret_imm_ok": 2, "ret_imm_store": 2, "lea_instruction": 1, + "Dh": 19, "ls_instruction": 1, "les_instruction": 2, "lds_instruction": 2, @@ -4094,6 +3608,7 @@ "bt_reg": 2, "bt_mem_imm": 3, "bt_mem_reg": 2, + "+": 232, "bt_mem_imm_size_ok": 2, "bt_mem_imm_nosize": 2, "bt_mem_imm_store": 2, @@ -4106,6 +3621,9 @@ "get_reg_mem": 2, "bs_reg_reg": 2, "get_reg_reg": 2, + "invalid_argument": 28, + "clc": 11, + "stc": 9, "imul_instruction": 1, "imul_reg": 2, "imul_mem": 1, @@ -4183,6 +3701,8 @@ "jmp_reg_16bit": 2, "jmp_reg_32bit": 2, "jmp_reg_64bit": 1, + "invalid_value": 21, + "skip_symbol": 5, "jmp_far": 2, "jmp_near": 1, "jmp_imm_16bit": 3, @@ -4198,15 +3718,20 @@ "jmp_imm_32bit_ok": 2, "relative_jump_out_of_range": 6, "get_address_qword_value": 3, + "jnc": 11, "EBh": 1, "get_address_word_value": 3, "jmp_imm_16bit_prefix_ok": 2, "cwde": 3, + "ebp": 49, + "addressing_space": 17, + "calculate_relative_offset": 2, "forced_short": 2, "no_short_jump": 4, "short_jump": 4, "jmp_short_value_type_ok": 2, "jump_out_of_range": 3, + "symbol_identifier": 4, "jmp_far_16bit": 2, "jmp_far_32bit": 3, "jmp_far_segment": 2, @@ -4229,6 +3754,7 @@ "loop_jump_32bit_prefix_ok": 2, "loop_counter_size": 4, "make_loop_jump": 3, + "scas": 10, "loop_counter_size_ok": 2, "loop_jump_16bit_prefix_ok": 2, "movs_instruction": 1, @@ -4266,6 +3792,7 @@ "xlat_address_32bit": 2, "xlat_store": 3, "D7h": 1, + "jbe": 11, "pm_word_instruction": 1, "pm_reg": 2, "pm_mem": 2, @@ -4382,11 +3909,14 @@ "pmovmskb_reg_size_ok": 2, "mmx_nomem_imm8": 7, "mmx_imm8": 6, + "cl": 42, "append_imm8": 2, + "stosb": 6, "pinsrw_instruction": 1, "pinsrw_mmreg_reg": 2, "pshufw_instruction": 1, "mmx_size": 30, + "opcode_prefix": 30, "pshuf_instruction": 2, "pshufd_instruction": 1, "pshuf_mmreg_mmreg": 2, @@ -4394,6 +3924,7 @@ "movd_reg": 2, "movd_mmreg": 2, "movd_mmreg_reg": 2, + "vex_required": 2, "mmx_prefix_for_vex": 2, "no_mmx_prefix": 2, "movq_instruction": 1, @@ -4416,6 +3947,7 @@ "movq2dq_": 2, "movq2dq_instruction": 1, "sse_ps_instruction_imm8": 1, + "immediate_size": 9, "sse_ps_instruction": 1, "sse_instruction": 11, "sse_pd_instruction_imm8": 1, @@ -4469,7 +4001,478 @@ "movmskps_instruction": 1, "movmskps_reg_ok": 2, "cvtpi2pd_instruction": 1, - "cvtpi2ps_instruction": 1 + "cvtpi2ps_instruction": 1, + "stub_size": 1, + "current_pass": 16, + "resolver_flags": 1, + "number_of_sections": 1, + "actual_fixups_size": 1, + "assembler_loop": 2, + "labels_list": 3, + "tagged_blocks": 23, + "additional_memory": 6, + "free_additional_memory": 2, + "additional_memory_end": 9, + "structures_buffer": 9, + "source_start": 1, + "code_start": 2, + "adjustment": 4, + "counter": 13, + "format_flags": 2, + "number_of_relocations": 1, + "undefined_data_end": 4, + "file_extension": 1, + "output_format": 3, + "adjustment_sign": 2, + "init_addressing_space": 6, + "pass_loop": 2, + "assemble_line": 3, + "pass_done": 2, + "missing_end_directive": 7, + "close_pass": 1, + "check_symbols": 2, + "memory_end": 7, + "symbols_checked": 2, + "symbol_defined_ok": 5, + "cx": 42, + "use_prediction_ok": 5, + "check_use_prediction": 2, + "use_misprediction": 3, + "check_next_symbol": 5, + "define_misprediction": 4, + "check_define_prediction": 2, + "LABEL_STRUCTURE_SIZE": 1, + "next_pass": 3, + "assemble_ok": 2, + "undefined_symbol": 2, + "error_confirmed": 3, + "error_info": 2, + "error_handler": 3, + "esp": 14, + "passes_limit": 3, + "code_cannot_be_generated": 1, + "create_addressing_space": 1, + "out_of_memory": 19, + "assemble_instruction": 2, + "source_end": 2, + "define_label": 2, + "define_constant": 2, + "label_addressing_space": 2, + "new_line": 2, + "code_type_setting": 2, + "symbols_file": 4, + "line_assembled": 3, + "reserved_word_used_as_symbol": 6, + "label_size": 5, + "make_label": 3, + "ds": 21, + "sbb": 9, + "jp": 2, + "label_value_ok": 2, + "address_sign": 4, + "make_virtual_label": 2, + "neg": 4, + "setnz": 5, + "finish_label": 2, + "setne": 14, + "finish_label_symbol": 2, + "label_symbol_ok": 2, + "new_label": 2, + "symbol_already_defined": 3, + "btr": 2, + "requalified_label": 2, + "label_made": 4, + "get_constant_value": 4, + "get_value": 2, + "constant_referencing_mode_ok": 2, + "make_constant": 2, + "value_sign": 3, + "constant_symbol_ok": 2, + "new_constant": 2, + "redeclare_constant": 2, + "requalified_constant": 2, + "make_addressing_space_label": 3, + "vex_register": 1, + "instruction_handler": 32, + "movzx": 13, + "extra_characters_on_line": 8, + "org_directive": 1, + "in_virtual": 2, + "org_space_ok": 2, + "close_virtual_addressing_space": 3, + "org_value_ok": 2, + "bts": 1, + "label_directive": 1, + "get_label_size": 2, + "label_size_ok": 2, + "get_free_label_value": 2, + "get_address_value": 3, + "bp": 2, + "make_free_label": 1, + "address_symbol": 2, + "load_directive": 1, + "load_size_ok": 2, + "get_data_point": 3, + "value_loaded": 2, + "rep": 7, + "movs": 8, + "get_data_address": 5, + "addressing_space_unavailable": 3, + "symbol_out_of_scope": 1, + "get_addressing_space": 3, + "store_label_reference": 1, + "data_address_type_ok": 2, + "adc": 9, + "bad_data_address": 3, + "store_directive": 1, + "sized_store": 2, + "store_value_ok": 2, + "undefined_data_start": 3, + "display_directive": 2, + "display_byte": 2, + "display_next": 2, + "show_display_buffer": 2, + "display_done": 3, + "display_messages": 2, + "skip_block": 2, + "display_block": 4, + "times_directive": 1, + "get_count_value": 6, + "zero_times": 3, + "times_argument_ok": 2, + "counter_limit": 7, + "times_loop": 2, + "stack_overflow": 2, + "stack_limit": 2, + "times_done": 2, + "virtual_directive": 3, + "virtual_at_current": 2, + "set_virtual": 2, + "allocate_structure_data": 5, + "find_structure_data": 6, + "scan_structures": 2, + "no_such_structure": 2, + "structure_data_found": 2, + "end_virtual": 2, + "unexpected_instruction": 18, + "remove_structure_data": 7, + "lea": 8, + "std": 2, + "cld": 2, + "addressing_space_closed": 2, + "virtual_byte_ok": 2, + "virtual_word_ok": 2, + "repeat_directive": 7, + "zero_repeat": 2, + "end_repeat": 2, + "continue_repeating": 2, + "stop_repeat": 2, + "find_end_repeat": 4, + "find_structure_end": 5, + "while_directive": 7, + "do_while": 2, + "calculate_logical_expression": 3, + "while_true": 2, + "stop_while": 2, + "find_end_while": 3, + "end_while": 2, + "too_many_repeats": 1, + "if_directive": 13, + "if_true": 2, + "find_else": 4, + "else_true": 3, + "make_if_structure": 2, + "else_directive": 3, + "found_else": 2, + "skip_else": 3, + "find_end_if": 3, + "end_if": 2, + "else_found": 2, + "find_end_directive": 10, + "no_end_directive": 2, + "skip_labels": 2, + "labels_ok": 2, + "skip_repeat": 2, + "skip_while": 2, + "skip_if": 2, + "structure_end": 4, + "end_directive": 2, + "skip_if_block": 4, + "if_block_skipped": 2, + "skip_after_else": 3, + "data_directive": 1, + "end_data": 1, + "break_directive": 1, + "find_breakable_structure": 4, + "break_repeat": 2, + "break_while": 2, + "break_if": 2, + "data_bytes": 1, + "define_data": 8, + "get_byte": 2, + "undefined_data": 7, + "get_string": 2, + "mark_undefined_data": 2, + "undefined_data_ok": 2, + "simple_data_value": 3, + "skip_expression": 1, + "duplicate_zero_times": 2, + "duplicate_single_data_value": 3, + "duplicate_data": 2, + "duplicated_values": 2, + "near": 3, + "data_defined": 5, + "skip_single_data_value": 2, + "skip_data_value": 2, + "data_unicode": 1, + "define_words": 2, + "data_words": 1, + "get_word": 2, + "word_data_value": 2, + "word_string": 2, + "jecxz": 1, + "word_string_ok": 2, + "ecx*2": 1, + "copy_word_string": 2, + "loop": 2, + "data_dwords": 1, + "get_dword": 2, + "complex_dword": 2, + "data_pwords": 1, + "get_pword": 2, + "get_pword_value": 1, + "complex_pword": 2, + "data_qwords": 1, + "get_qword": 2, + "data_twords": 1, + "get_tword": 2, + "complex_tword": 2, + "fp_zero_tword": 2, + "FFFh": 3, + "jo": 2, + "jg": 1, + "tword_exp_ok": 3, + "large_shift": 2, + "shrd": 1, + "tword_mantissa_shift_done": 2, + "store_shifted_mantissa": 2, + "data_file": 2, + "open_binary_file": 2, + "lseek": 5, + "position_ok": 2, + "size_ok": 2, + "read": 3, + "error_reading_file": 1, + "close": 3, + "find_current_source_path": 2, + "get_current_path": 3, + "lodsb": 12, + "cut_current_path": 1, + "current_path_ok": 1, + "/": 1, + ".": 7, + "invalid_align_value": 3, + "section_not_aligned_enough": 4, + "make_alignment": 3, + "pe_alignment": 2, + "nops": 2, + "reserved_data": 2, + "nops_stosb_ok": 2, + "nops_stosw_ok": 2, + "err_directive": 1, + "invoked_error": 2, + "assert_directive": 1, + "assertion_failed": 1, + "interface": 2, + "for": 2, + "Win32": 2, + "format": 1, + "PE": 1, + "console": 1, + "section": 4, + "code": 1, + "readable": 4, + "executable": 1, + "start": 1, + "con_handle": 8, + "STD_OUTPUT_HANDLE": 2, + "_logo": 2, + "display_string": 19, + "get_params": 2, + "information": 2, + "init_memory": 2, + "_memory_prefix": 2, + "memory_start": 4, + "display_number": 8, + "_memory_suffix": 2, + "GetTickCount": 3, + "start_time": 3, + "preprocessor": 1, + "parser": 1, + "formatter": 1, + "display_user_messages": 3, + "_passes_suffix": 2, + "div": 8, + "display_bytes_count": 2, + "display_character": 6, + "_seconds_suffix": 2, + "written_size": 1, + "_bytes_suffix": 2, + "exit_program": 5, + "_usage": 2, + "input_file": 4, + "output_file": 3, + "memory_setting": 4, + "GetCommandLine": 2, + "params": 2, + "find_command_start": 2, + "skip_quoted_name": 3, + "skip_name": 2, + "find_param": 7, + "all_params": 5, + "option_param": 2, + "get_output_file": 2, + "process_param": 3, + "bad_params": 11, + "string_param": 3, + "copy_param": 2, + "param_end": 6, + "string_param_end": 2, + "memory_option": 4, + "passes_option": 4, + "symbols_option": 3, + "get_option_value": 3, + "get_option_digit": 2, + "option_value_ok": 4, + "invalid_option_value": 5, + "imul": 1, + "find_symbols_file_name": 2, + "include": 15, + "data": 3, + "writeable": 2, + "_copyright": 1, + "db": 35, + "VERSION_STRING": 1, + "align": 1, + "dd": 22, + "bytes_count": 8, + "displayed_count": 4, + "character": 3, + "last_displayed": 5, + "rb": 4, + "options": 1, + "buffer": 14, + "stack": 1, + "import": 1, + "rva": 16, + "kernel_name": 2, + "kernel_table": 2, + "ExitProcess": 2, + "_ExitProcess": 2, + "CreateFile": 3, + "_CreateFileA": 2, + "ReadFile": 2, + "_ReadFile": 2, + "WriteFile": 6, + "_WriteFile": 2, + "CloseHandle": 2, + "_CloseHandle": 2, + "SetFilePointer": 2, + "_SetFilePointer": 2, + "_GetCommandLineA": 2, + "GetEnvironmentVariable": 2, + "_GetEnvironmentVariable": 2, + "GetStdHandle": 5, + "_GetStdHandle": 2, + "VirtualAlloc": 2, + "_VirtualAlloc": 2, + "VirtualFree": 2, + "_VirtualFree": 2, + "_GetTickCount": 2, + "GetSystemTime": 2, + "_GetSystemTime": 2, + "GlobalMemoryStatus": 2, + "_GlobalMemoryStatus": 2, + "dw": 14, + "fixups": 1, + "discardable": 1, + "CREATE_NEW": 1, + "CREATE_ALWAYS": 2, + "OPEN_EXISTING": 2, + "OPEN_ALWAYS": 1, + "TRUNCATE_EXISTING": 1, + "FILE_SHARE_READ": 3, + "FILE_SHARE_WRITE": 1, + "FILE_SHARE_DELETE": 1, + "GENERIC_READ": 2, + "GENERIC_WRITE": 2, + "STD_INPUT_HANDLE": 1, + "FFFFFFF6h": 1, + "FFFFFFF5h": 1, + "STD_ERROR_HANDLE": 3, + "FFFFFFF4h": 1, + "MEM_COMMIT": 2, + "MEM_RESERVE": 1, + "MEM_DECOMMIT": 1, + "MEM_RELEASE": 2, + "MEM_FREE": 1, + "MEM_PRIVATE": 1, + "MEM_MAPPED": 1, + "MEM_RESET": 1, + "MEM_TOP_DOWN": 1, + "PAGE_NOACCESS": 1, + "PAGE_READONLY": 1, + "PAGE_READWRITE": 2, + "PAGE_WRITECOPY": 1, + "PAGE_EXECUTE": 1, + "PAGE_EXECUTE_READ": 1, + "PAGE_EXECUTE_READWRITE": 1, + "PAGE_EXECUTE_WRITECOPY": 1, + "PAGE_GUARD": 1, + "PAGE_NOCACHE": 1, + "allocate_memory": 4, + "large_memory": 3, + "not_enough_memory": 2, + "do_exit": 2, + "get_environment_variable": 1, + "buffer_for_variable_ok": 2, + "open": 2, + "file_error": 6, + "create": 1, + "write": 1, + "repne": 1, + "scasb": 1, + "display_loop": 2, + "display_digit": 3, + "digit_ok": 2, + "line_break_ok": 4, + "make_line_break": 2, + "A0Dh": 2, + "D0Ah": 1, + "take_last_two_characters": 2, + "block_displayed": 2, + "block_ok": 2, + "fatal_error": 1, + "error_prefix": 3, + "error_suffix": 3, + "assembler_error": 1, + "get_error_lines": 2, + "get_next_error_line": 2, + "display_error_line": 3, + "find_definition_origin": 2, + "line_number_start": 3, + "FFFFFFFh": 2, + "line_number_ok": 2, + "line_data_start": 2, + "line_data_displayed": 2, + "get_line_data": 2, + "display_line_data": 5, + "cr_lf": 2, + "make_timestamp": 1, + "mul": 5, + "months_correction": 2, + "day_correction_ok": 4, + "day_correction": 2 }, "AutoHotkey": { "MsgBox": 1, @@ -4590,94 +4593,9 @@ "END": 1 }, "BlitzBasic": { - "Local": 34, - "bk": 3, - "CreateBank": 5, - "(": 125, - ")": 126, - "PokeFloat": 3, - "-": 24, - "Print": 13, - "Bin": 4, - "PeekInt": 4, - "%": 6, - "Shl": 7, - "f": 5, - "ff": 1, - "+": 11, - "Hex": 2, - "FloatToHalf": 3, - "HalfToFloat": 1, - "FToI": 2, - "WaitKey": 2, - "End": 58, ";": 57, - "Half": 1, - "precision": 2, - "bit": 2, - "arithmetic": 2, - "library": 2, - "Global": 2, - "Half_CBank_": 13, - "Function": 101, - "f#": 3, - "If": 25, - "Then": 18, - "Return": 36, - "HalfToFloat#": 1, - "h": 4, - "signBit": 6, - "exponent": 22, - "fraction": 9, - "fBits": 8, - "And": 8, - "<": 18, - "Shr": 3, - "F": 3, - "FF": 2, - "ElseIf": 1, - "Or": 4, - "PokeInt": 2, - "PeekFloat": 1, - "F800000": 1, - "FFFFF": 1, - "Abs": 1, - "*": 2, - "Sgn": 1, - "Else": 7, - "EndIf": 7, - "HalfAdd": 1, - "l": 84, - "r": 12, - "HalfSub": 1, - "HalfMul": 1, - "HalfDiv": 1, - "HalfLT": 1, - "HalfGT": 1, "Double": 2, - "DoubleOut": 1, - "[": 2, - "]": 2, - "Double_CBank_": 1, - "DoubleToFloat#": 1, - "d": 1, - "FloatToDouble": 1, - "IntToDouble": 1, - "i": 49, - "SefToDouble": 1, - "s": 12, - "e": 4, - "DoubleAdd": 1, - "DoubleSub": 1, - "DoubleMul": 1, - "DoubleDiv": 1, - "DoubleLT": 1, - "DoubleGT": 1, - "IDEal": 3, - "Editor": 3, - "Parameters": 3, - "F#1A#20#2F": 1, - "C#Blitz3D": 3, + "-": 24, "linked": 2, "list": 32, "container": 1, @@ -4696,6 +4614,7 @@ "Field": 10, "head_.ListNode": 1, "tail_.ListNode": 1, + "End": 58, "ListNode": 8, "pv_.ListNode": 1, "nx_.ListNode": 1, @@ -4708,9 +4627,14 @@ "a": 46, "new": 4, "object": 2, + "Function": 101, "CreateList.LList": 1, + "(": 125, + ")": 126, + "Local": 34, "l.LList": 20, "New": 11, + "l": 84, "head_": 35, "tail_": 34, "nx_": 33, @@ -4725,6 +4649,7 @@ "safe": 1, "iterate": 2, "freely": 1, + "Return": 36, "Free": 1, "all": 3, "elements": 4, @@ -4742,6 +4667,7 @@ "n.ListNode": 12, "While": 7, "n": 54, + "<": 18, "nx.ListNode": 1, "nx": 1, "Wend": 6, @@ -4755,6 +4681,8 @@ "GetIterator": 3, "elems": 4, "EachIn": 5, + "i": 49, + "+": 11, "True": 4, "if": 2, "contains": 1, @@ -4774,9 +4702,13 @@ "To": 6, "Step": 2, "ListAddLast": 2, + "PeekInt": 4, "Next": 7, "containing": 3, "ListToBank": 1, + "*": 2, + "CreateBank": 5, + "PokeInt": 2, "Swap": 1, "contents": 1, "two": 1, @@ -4811,6 +4743,8 @@ "retrieve": 1, "node": 8, "ListFindNode.ListNode": 1, + "If": 25, + "Then": 18, "Append": 1, "end": 5, "fast": 2, @@ -4830,14 +4764,17 @@ "index": 13, "ValueAtIndex": 1, "ListNodeAtIndex": 3, + "Else": 7, "invalid": 1, "ListNodeAtIndex.ListNode": 1, + "e": 4, "Beyond": 1, "valid": 2, "Negative": 1, "count": 1, "backward": 1, "Before": 3, + "EndIf": 7, "Replace": 1, "added": 2, "by": 3, @@ -4876,6 +4813,7 @@ "most": 1, "programs": 1, "won": 1, + "s": 12, "available": 1, "moment": 1, "l_": 7, @@ -4909,6 +4847,7 @@ "currently": 1, "pointed": 1, "IteratorRemove": 1, + "And": 8, "temp.ListNode": 1, "temp": 1, "Call": 1, @@ -4916,8 +4855,72 @@ "out": 1, "disconnect": 1, "IteratorBreak": 1, + "IDEal": 3, + "Editor": 3, + "Parameters": 3, "F#5#A#10#18#2A#32#3E#47#4C#58#66#6F#78#8F#9B#A9#B7#BD#C5#CC": 1, "F#E3#E9#EF#F4#F9#103#10D#11B#12B#13F#152#163": 1, + "C#Blitz3D": 3, + "bk": 3, + "PokeFloat": 3, + "Print": 13, + "Bin": 4, + "%": 6, + "Shl": 7, + "f": 5, + "ff": 1, + "Hex": 2, + "FloatToHalf": 3, + "HalfToFloat": 1, + "FToI": 2, + "WaitKey": 2, + "Half": 1, + "precision": 2, + "bit": 2, + "arithmetic": 2, + "library": 2, + "Global": 2, + "Half_CBank_": 13, + "f#": 3, + "HalfToFloat#": 1, + "h": 4, + "signBit": 6, + "exponent": 22, + "fraction": 9, + "fBits": 8, + "Shr": 3, + "F": 3, + "FF": 2, + "ElseIf": 1, + "Or": 4, + "PeekFloat": 1, + "F800000": 1, + "FFFFF": 1, + "Abs": 1, + "Sgn": 1, + "HalfAdd": 1, + "r": 12, + "HalfSub": 1, + "HalfMul": 1, + "HalfDiv": 1, + "HalfLT": 1, + "HalfGT": 1, + "DoubleOut": 1, + "[": 2, + "]": 2, + "Double_CBank_": 1, + "DoubleToFloat#": 1, + "d": 1, + "FloatToDouble": 1, + "IntToDouble": 1, + "SefToDouble": 1, + "DoubleAdd": 1, + "DoubleSub": 1, + "DoubleMul": 1, + "DoubleDiv": 1, + "DoubleLT": 1, + "DoubleGT": 1, + "F#1A#20#2F": 1, "result": 4, "s.Sum3Obj": 2, "Sum3Obj": 6, @@ -4942,110 +4945,44 @@ "return_": 2, "First": 1 }, + "BlitzMax": { + "SuperStrict": 1, + "Framework": 1, + "Brl.StandardIO": 1, + "Type": 2, + "TMyType": 3, + "Field": 1, + "property": 1, + "int": 3, + "Function": 1, + "A": 1, + "(": 5, + "param": 1, + ")": 5, + "do": 1, + "nothing": 1, + "End": 2, + "Method": 1, + "Global": 1, + "my": 1, + "new": 1, + "Win32": 1, + "my.A": 2, + "my.B": 2, + "Linux": 1 + }, "Bluespec": { "package": 2, - "TbTL": 1, - ";": 156, - "import": 1, "TL": 6, - "*": 1, + ";": 156, "interface": 2, - "Lamp": 3, "method": 42, - "Bool": 32, - "changed": 2, "Action": 17, - "show_offs": 2, - "show_ons": 2, - "reset": 2, - "endinterface": 2, - "module": 3, - "mkLamp#": 1, - "(": 158, - "String": 1, - "name": 3, - "lamp": 5, - ")": 163, - "Reg#": 15, - "prev": 5, - "<": 44, - "-": 29, - "mkReg": 15, - "False": 9, - "if": 9, - "&&": 3, - "write": 2, - "+": 7, - "endmethod": 8, - "endmodule": 3, - "mkTest": 1, - "let": 1, - "dut": 2, - "sysTL": 3, - "Bit#": 1, - "ctr": 8, - "carN": 4, - "carS": 2, - "carE": 2, - "carW": 2, - "lamps": 15, - "[": 17, - "]": 17, - "mkLamp": 12, - "dut.lampRedNS": 1, - "dut.lampAmberNS": 1, - "dut.lampGreenNS": 1, - "dut.lampRedE": 1, - "dut.lampAmberE": 1, - "dut.lampGreenE": 1, - "dut.lampRedW": 1, - "dut.lampAmberW": 1, - "dut.lampGreenW": 1, - "dut.lampRedPed": 1, - "dut.lampAmberPed": 1, - "dut.lampGreenPed": 1, - "rule": 10, - "start": 1, - "dumpvars": 1, - "endrule": 10, - "detect_cars": 1, - "dut.set_car_state_N": 1, - "dut.set_car_state_S": 1, - "dut.set_car_state_E": 1, - "dut.set_car_state_W": 1, - "go": 1, - "True": 6, - "<=>": 3, - "12_000": 1, "ped_button_push": 4, - "stop": 1, - "display": 2, - "finish": 1, - "function": 10, - "do_offs": 2, - "l": 3, - "l.show_offs": 1, - "do_ons": 2, - "l.show_ons": 1, - "do_reset": 2, - "l.reset": 1, - "do_it": 4, - "f": 2, - "action": 3, - "for": 3, - "Integer": 3, - "i": 15, - "endaction": 3, - "endfunction": 7, - "any_changes": 2, - "b": 12, - "||": 7, - ".changed": 1, - "return": 9, - "show": 1, - "time": 1, - "endpackage": 2, + "(": 158, + ")": 163, "set_car_state_N": 2, + "Bool": 32, "x": 8, "set_car_state_S": 2, "set_car_state_E": 2, @@ -5062,6 +4999,7 @@ "lampRedPed": 2, "lampAmberPed": 2, "lampGreenPed": 2, + "endinterface": 2, "typedef": 3, "enum": 1, "{": 1, @@ -5082,6 +5020,8 @@ "UInt#": 2, "Time32": 9, "CtrSize": 3, + "module": 3, + "sysTL": 3, "allRedDelay": 2, "amberDelay": 2, "nsGreenDelay": 2, @@ -5089,27 +5029,43 @@ "pedGreenDelay": 1, "pedAmberDelay": 1, "clocks_per_sec": 2, + "Reg#": 15, "state": 21, + "<": 44, + "-": 29, + "mkReg": 15, "next_green": 8, "secs": 7, "ped_button_pushed": 4, + "False": 9, "car_present_N": 3, + "True": 6, "car_present_S": 3, "car_present_E": 4, "car_present_W": 4, "car_present_NS": 3, + "||": 7, "cycle_ctr": 6, + "rule": 10, "dec_cycle_ctr": 1, + "endrule": 10, "Rules": 5, "low_priority_rule": 2, "rules": 4, "inc_sec": 1, + "+": 7, "endrules": 4, + "function": 10, "next_state": 8, "ns": 4, + "action": 3, + "<=>": 3, "0": 2, + "endaction": 3, + "endfunction": 7, "green_seq": 7, "case": 2, + "return": 9, "endcase": 2, "car_present": 4, "make_from_green_rule": 5, @@ -5121,6 +5077,7 @@ "amber_state": 2, "ng": 2, "from_amber": 1, + "&&": 3, "hprs": 10, "7": 1, "1": 1, @@ -5130,12 +5087,84 @@ "5": 1, "6": 1, "fromAllRed": 2, + "if": 9, "else": 4, "noAction": 1, "high_priority_rules": 4, + "[": 17, + "]": 17, + "for": 3, + "Integer": 3, + "i": 15, "rJoin": 1, "addRules": 1, - "preempts": 1 + "preempts": 1, + "endmethod": 8, + "b": 12, + "endmodule": 3, + "endpackage": 2, + "TbTL": 1, + "import": 1, + "*": 1, + "Lamp": 3, + "changed": 2, + "show_offs": 2, + "show_ons": 2, + "reset": 2, + "mkLamp#": 1, + "String": 1, + "name": 3, + "lamp": 5, + "prev": 5, + "write": 2, + "mkTest": 1, + "let": 1, + "dut": 2, + "Bit#": 1, + "ctr": 8, + "carN": 4, + "carS": 2, + "carE": 2, + "carW": 2, + "lamps": 15, + "mkLamp": 12, + "dut.lampRedNS": 1, + "dut.lampAmberNS": 1, + "dut.lampGreenNS": 1, + "dut.lampRedE": 1, + "dut.lampAmberE": 1, + "dut.lampGreenE": 1, + "dut.lampRedW": 1, + "dut.lampAmberW": 1, + "dut.lampGreenW": 1, + "dut.lampRedPed": 1, + "dut.lampAmberPed": 1, + "dut.lampGreenPed": 1, + "start": 1, + "dumpvars": 1, + "detect_cars": 1, + "dut.set_car_state_N": 1, + "dut.set_car_state_S": 1, + "dut.set_car_state_E": 1, + "dut.set_car_state_W": 1, + "go": 1, + "12_000": 1, + "stop": 1, + "display": 2, + "finish": 1, + "do_offs": 2, + "l": 3, + "l.show_offs": 1, + "do_ons": 2, + "l.show_ons": 1, + "do_reset": 2, + "l.reset": 1, + "do_it": 4, + "f": 2, + "any_changes": 2, + ".changed": 1, + "show": 1, + "time": 1 }, "Brightscript": { "**": 17, @@ -5401,973 +5430,136 @@ }, "C": { "#include": 154, - "const": 358, - "char": 530, - "*blob_type": 2, + "": 8, + "static": 455, + "VALUE": 13, + "rb_cRDiscount": 4, ";": 5465, - "struct": 360, - "blob": 6, - "*lookup_blob": 2, + "rb_rdiscount_to_html": 2, "(": 6243, - "unsigned": 140, - "*sha1": 16, + "int": 446, + "argc": 26, + "*argv": 6, + "self": 9, ")": 6245, "{": 1531, - "object": 41, - "*obj": 9, - "lookup_object": 2, - "sha1": 20, + "char": 530, + "*res": 2, + "szres": 8, + "encoding": 14, + "text": 22, + "rb_funcall": 14, + "rb_intern": 15, + "buf": 57, + "rb_str_buf_new": 2, + "Check_Type": 2, + "T_STRING": 2, + "flags": 89, + "rb_rdiscount__get_flags": 3, + "MMIOT": 2, + "*doc": 2, + "mkd_string": 2, + "RSTRING_PTR": 2, + "RSTRING_LEN": 2, "if": 1015, - "obj": 48, - "return": 529, - "create_object": 2, - "OBJ_BLOB": 3, - "alloc_blob_node": 1, - "-": 1803, - "type": 36, - "error": 96, - "sha1_to_hex": 8, - "typename": 2, - "NULL": 330, - "}": 1547, - "*": 261, - "int": 446, - "parse_blob_buffer": 2, - "*item": 10, - "void": 288, - "*buffer": 6, - "long": 105, - "size": 120, - "item": 24, - "object.parsed": 4, - "#ifndef": 89, - "BLOB_H": 2, - "#define": 920, - "extern": 38, - "#endif": 243, - "BOOTSTRAP_H": 2, - "": 8, - "__GNUC__": 8, - "typedef": 191, - "*true": 1, - "*false": 1, - "*eof": 1, - "*empty_list": 1, - "*global_enviroment": 1, - "enum": 30, - "obj_type": 1, - "scm_bool": 1, - "scm_empty_list": 1, - "scm_eof": 1, - "scm_char": 1, - "scm_int": 1, - "scm_pair": 1, - "scm_symbol": 1, - "scm_prim_fun": 1, - "scm_lambda": 1, - "scm_str": 1, - "scm_file": 1, - "*eval_proc": 1, - "*maybe_add_begin": 1, - "*code": 2, - "init_enviroment": 1, - "*env": 4, - "eval_err": 1, - "*msg": 7, - "__attribute__": 1, - "noreturn": 1, - "define_var": 1, - "*var": 4, - "*val": 6, - "set_var": 1, - "*get_var": 1, - "*cond2nested_if": 1, - "*cond": 1, - "*let2lambda": 1, - "*let": 1, - "*and2nested_if": 1, - "*and": 1, - "*or2nested_if": 1, - "*or": 1, - "git_cache_init": 1, - "git_cache": 4, - "*cache": 4, - "size_t": 52, - "git_cached_obj_freeptr": 1, - "free_ptr": 2, - "<": 219, - "git__size_t_powerof2": 1, - "cache": 26, - "size_mask": 6, - "lru_count": 1, - "free_obj": 4, - "git_mutex_init": 1, + "mkd_compile": 2, + "doc": 6, + "mkd_document": 1, "&": 442, - "lock": 6, - "nodes": 10, - "git__malloc": 3, - "sizeof": 71, - "git_cached_obj": 5, - "GITERR_CHECK_ALLOC": 3, - "memset": 4, - "git_cache_free": 1, - "i": 410, - "for": 88, - "+": 551, + "res": 4, + "EOF": 26, + "rb_str_cat": 4, + "}": 1547, + "mkd_cleanup": 2, + "rb_respond_to": 1, + "return": 529, + "rb_rdiscount_toc_content": 2, + "mkd_toc": 1, + "ruby_obj": 11, + "MKD_TABSTOP": 1, + "|": 132, + "MKD_NOHEADER": 1, + "Qtrue": 10, + "MKD_NOPANTS": 1, + "MKD_NOHTML": 1, + "MKD_TOC": 1, + "MKD_NOIMAGE": 1, + "MKD_NOLINKS": 1, + "MKD_NOTABLES": 1, + "MKD_STRICT": 1, + "MKD_AUTOLINK": 1, + "MKD_SAFELINK": 1, + "MKD_NO_EXT": 1, + "void": 288, + "Init_rdiscount": 1, + "rb_define_class": 1, + "rb_cObject": 1, + "rb_define_method": 2, + "-": 1803, + "const": 358, + "git_usage_string": 2, "[": 601, "]": 601, - "git_cached_obj_decref": 3, - "git__free": 15, - "*git_cache_get": 1, - "git_oid": 7, - "*oid": 2, - "uint32_t": 144, - "hash": 12, - "*node": 2, - "*result": 1, - "memcpy": 35, - "oid": 17, - "id": 13, - "git_mutex_lock": 2, - "node": 9, - "&&": 248, - "git_oid_cmp": 6, - "git_cached_obj_incref": 3, - "result": 48, - "git_mutex_unlock": 2, - "*git_cache_try_store": 1, - "*_entry": 1, - "*entry": 2, - "_entry": 1, - "entry": 17, - "else": 190, - "save_commit_buffer": 3, - "*commit_type": 2, - "static": 455, - "commit": 59, - "*check_commit": 1, - "quiet": 5, - "OBJ_COMMIT": 5, - "*lookup_commit_reference_gently": 2, - "deref_tag": 1, - "parse_object": 1, - "check_commit": 2, - "*lookup_commit_reference": 2, - "lookup_commit_reference_gently": 1, - "*lookup_commit_or_die": 2, - "*ref_name": 2, - "*c": 69, - "lookup_commit_reference": 2, - "c": 252, - "die": 5, - "_": 3, - "ref_name": 2, - "hashcmp": 2, - "object.sha1": 8, - "warning": 1, - "*lookup_commit": 2, - "alloc_commit_node": 1, - "*lookup_commit_reference_by_name": 2, - "*name": 12, - "*commit": 10, - "get_sha1": 1, - "name": 28, - "||": 141, - "parse_commit": 3, - "parse_commit_date": 2, - "*buf": 10, - "*tail": 2, - "*dateptr": 1, - "buf": 57, - "tail": 12, - "memcmp": 6, - "while": 70, - "dateptr": 2, - "strtoul": 2, - "commit_graft": 13, - "**commit_graft": 1, - "commit_graft_alloc": 4, - "commit_graft_nr": 5, - "commit_graft_pos": 2, - "lo": 6, - "hi": 5, - "mi": 5, - "/": 9, - "*graft": 3, - "cmp": 9, - "graft": 10, - "register_commit_graft": 2, - "ignore_dups": 2, - "pos": 7, - "free": 62, - "alloc_nr": 1, - "xrealloc": 2, - "parse_commit_buffer": 3, - "buffer": 10, - "*bufptr": 1, - "parent": 7, - "commit_list": 35, - "**pptr": 1, - "<=>": 16, - "bufptr": 12, - "46": 1, - "tree": 3, - "5": 1, - "45": 1, - "n": 70, - "bogus": 1, - "s": 154, - "get_sha1_hex": 2, - "lookup_tree": 1, - "pptr": 5, - "parents": 4, - "lookup_commit_graft": 1, - "*new_parent": 2, - "48": 1, - "7": 1, - "47": 1, - "bad": 1, - "in": 11, - "nr_parent": 3, - "grafts_replace_parents": 1, - "continue": 20, - "new_parent": 6, - "lookup_commit": 2, - "commit_list_insert": 2, - "next": 8, - "date": 5, - "object_type": 1, - "ret": 142, - "read_sha1_file": 1, - "find_commit_subject": 2, - "*commit_buffer": 2, - "**subject": 2, - "*eol": 1, - "*p": 9, - "commit_buffer": 1, - "a": 80, - "b_date": 3, - "b": 66, - "a_date": 2, - "*commit_list_get_next": 1, - "*a": 9, - "commit_list_set_next": 1, - "*next": 6, - "commit_list_sort_by_date": 2, - "**list": 5, - "*list": 2, - "llist_mergesort": 1, - "peel_to_type": 1, - "util": 3, - "merge_remote_desc": 3, - "*desc": 1, - "desc": 5, - "xmalloc": 2, - "strdup": 1, - "**commit_list_append": 2, - "**next": 2, - "*new": 1, - "new": 4, - "COMMIT_H": 2, - "*util": 1, - "indegree": 1, - "*parents": 4, - "*tree": 3, - "decoration": 1, - "name_decoration": 3, - "*commit_list_insert": 1, - "commit_list_count": 1, - "*l": 1, - "*commit_list_insert_by_date": 1, - "free_commit_list": 1, - "cmit_fmt": 3, - "CMIT_FMT_RAW": 1, - "CMIT_FMT_MEDIUM": 2, - "CMIT_FMT_DEFAULT": 1, - "CMIT_FMT_SHORT": 1, - "CMIT_FMT_FULL": 1, - "CMIT_FMT_FULLER": 1, - "CMIT_FMT_ONELINE": 1, - "CMIT_FMT_EMAIL": 1, - "CMIT_FMT_USERFORMAT": 1, - "CMIT_FMT_UNSPECIFIED": 1, - "pretty_print_context": 6, - "fmt": 4, - "abbrev": 1, - "*subject": 1, - "*after_subject": 1, - "preserve_subject": 1, - "date_mode": 2, - "date_mode_explicit": 1, - "need_8bit_cte": 2, - "show_notes": 1, - "reflog_walk_info": 1, - "*reflog_info": 1, - "*output_encoding": 2, - "userformat_want": 2, - "notes": 1, - "has_non_ascii": 1, - "*text": 1, - "rev_info": 2, - "*logmsg_reencode": 1, - "*reencode_commit_message": 1, - "**encoding_p": 1, - "get_commit_format": 1, - "*arg": 1, - "*format_subject": 1, - "strbuf": 12, - "*sb": 7, - "*line_separator": 1, - "userformat_find_requirements": 1, - "*fmt": 2, - "*w": 2, - "format_commit_message": 1, - "*format": 2, - "*context": 1, - "pretty_print_commit": 1, - "*pp": 4, - "pp_commit_easy": 1, - "pp_user_info": 1, - "*what": 1, - "*line": 1, - "*encoding": 2, - "pp_title_line": 1, - "**msg_p": 2, - "pp_remainder": 1, - "indent": 1, - "*pop_most_recent_commit": 1, - "mark": 3, - "*pop_commit": 1, - "**stack": 1, - "clear_commit_marks": 1, - "clear_commit_marks_for_object_array": 1, - "object_array": 2, - "sort_in_topological_order": 1, - "**": 6, - "list": 1, - "lifo": 1, - "FLEX_ARRAY": 1, - "*read_graft_line": 1, - "len": 30, - "*lookup_commit_graft": 1, - "*get_merge_bases": 1, - "*rev1": 1, - "*rev2": 1, - "cleanup": 12, - "*get_merge_bases_many": 1, - "*one": 1, - "**twos": 1, - "*get_octopus_merge_bases": 1, - "*in": 1, - "register_shallow": 1, - "unregister_shallow": 1, - "for_each_commit_graft": 1, - "each_commit_graft_fn": 1, - "is_repository_shallow": 1, - "*get_shallow_commits": 1, - "*heads": 2, - "depth": 2, - "shallow_flag": 1, - "not_shallow_flag": 1, - "is_descendant_of": 1, - "in_merge_bases": 1, - "interactive_add": 1, - "argc": 26, - "**argv": 6, - "*prefix": 7, - "patch": 1, - "run_add_interactive": 1, - "*revision": 1, - "*patch_mode": 1, - "**pathspec": 1, - "inline": 3, - "single_parent": 1, - "*reduce_heads": 1, - "commit_extra_header": 7, - "*key": 5, - "*value": 5, - "append_merge_tag_headers": 1, - "***tail": 1, - "commit_tree": 1, - "*ret": 20, - "*author": 2, - "*sign_commit": 2, - "commit_tree_extended": 1, - "*read_commit_extra_headers": 1, - "*read_commit_extra_header_lines": 1, - "free_commit_extra_headers": 1, - "*extra": 1, - "merge_remote_util": 1, - "*get_merge_parent": 1, - "parse_signed_commit": 1, - "*message": 1, - "*signature": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "#ifdef": 66, - "CONFIG_SMP": 1, - "DEFINE_MUTEX": 1, - "cpu_add_remove_lock": 3, - "cpu_maps_update_begin": 9, - "mutex_lock": 5, - "cpu_maps_update_done": 9, - "mutex_unlock": 6, - "RAW_NOTIFIER_HEAD": 1, - "cpu_chain": 4, - "cpu_hotplug_disabled": 7, - "CONFIG_HOTPLUG_CPU": 2, - "task_struct": 5, - "*active_writer": 1, - "mutex": 1, - "refcount": 2, - "cpu_hotplug": 1, - ".active_writer": 1, - ".lock": 1, - "__MUTEX_INITIALIZER": 1, - "cpu_hotplug.lock": 8, - ".refcount": 1, - "get_online_cpus": 2, - "might_sleep": 1, - "cpu_hotplug.active_writer": 6, - "current": 5, - "cpu_hotplug.refcount": 3, - "EXPORT_SYMBOL_GPL": 4, - "put_online_cpus": 2, - "unlikely": 54, - "wake_up_process": 1, - "cpu_hotplug_begin": 4, - "likely": 22, - "break": 244, - "__set_current_state": 1, - "TASK_UNINTERRUPTIBLE": 1, - "schedule": 1, - "cpu_hotplug_done": 4, - "#else": 94, - "__ref": 6, - "register_cpu_notifier": 2, - "notifier_block": 3, - "*nb": 3, - "raw_notifier_chain_register": 1, - "nb": 2, - "__cpu_notify": 6, - "val": 20, - "*v": 3, - "nr_to_call": 2, - "*nr_calls": 1, - "__raw_notifier_call_chain": 1, - "v": 11, - "nr_calls": 9, - "notifier_to_errno": 1, - "cpu_notify": 5, - "cpu_notify_nofail": 4, - "BUG_ON": 4, - "EXPORT_SYMBOL": 8, - "unregister_cpu_notifier": 2, - "raw_notifier_chain_unregister": 1, - "clear_tasks_mm_cpumask": 1, - "cpu": 57, - "WARN_ON": 1, - "cpu_online": 5, - "rcu_read_lock": 1, - "for_each_process": 2, - "p": 60, - "*t": 2, - "t": 32, - "find_lock_task_mm": 1, - "cpumask_clear_cpu": 5, - "mm_cpumask": 1, - "mm": 1, - "task_unlock": 1, - "rcu_read_unlock": 1, - "check_for_tasks": 2, - "write_lock_irq": 1, - "tasklist_lock": 2, - "task_cpu": 1, - "state": 104, - "TASK_RUNNING": 1, - "utime": 1, - "stime": 1, - "printk": 12, - "KERN_WARNING": 3, - "comm": 1, - "task_pid_nr": 1, - "flags": 89, - "write_unlock_irq": 1, - "take_cpu_down_param": 3, - "mod": 13, - "*hcpu": 3, - "take_cpu_down": 2, - "*_param": 1, - "*param": 1, - "_param": 1, - "err": 38, - "__cpu_disable": 1, - "CPU_DYING": 1, - "|": 132, - "param": 2, - "hcpu": 10, - "_cpu_down": 3, - "tasks_frozen": 4, - "CPU_TASKS_FROZEN": 2, - "tcd_param": 2, - ".mod": 1, - ".hcpu": 1, - "num_online_cpus": 2, - "EBUSY": 3, - "EINVAL": 6, - "CPU_DOWN_PREPARE": 1, - "CPU_DOWN_FAILED": 2, - "__func__": 2, - "goto": 159, - "out_release": 3, - "__stop_machine": 1, - "cpumask_of": 1, - "idle_cpu": 1, - "cpu_relax": 1, - "__cpu_die": 1, - "CPU_DEAD": 1, - "CPU_POST_DEAD": 1, - "cpu_down": 2, - "out": 18, - "__cpuinit": 3, - "_cpu_up": 3, - "*idle": 1, - "cpu_present": 1, - "idle": 4, - "idle_thread_get": 1, - "IS_ERR": 1, - "PTR_ERR": 1, - "CPU_UP_PREPARE": 1, - "out_notify": 3, - "__cpu_up": 1, - "CPU_ONLINE": 1, - "CPU_UP_CANCELED": 1, - "cpu_up": 2, - "CONFIG_MEMORY_HOTPLUG": 2, - "nid": 5, - "pg_data_t": 1, - "*pgdat": 1, - "cpu_possible": 1, - "KERN_ERR": 5, - "#if": 92, - "defined": 42, - "CONFIG_IA64": 1, - "cpu_to_node": 1, - "node_online": 1, - "mem_online_node": 1, - "pgdat": 3, - "NODE_DATA": 1, - "ENOMEM": 4, - "node_zonelists": 1, - "_zonerefs": 1, - "zone": 1, - "zonelists_mutex": 2, - "build_all_zonelists": 1, - "CONFIG_PM_SLEEP_SMP": 2, - "cpumask_var_t": 1, - "frozen_cpus": 9, - "__weak": 4, - "arch_disable_nonboot_cpus_begin": 2, - "arch_disable_nonboot_cpus_end": 2, - "disable_nonboot_cpus": 1, - "first_cpu": 3, - "cpumask_first": 1, - "cpu_online_mask": 3, - "cpumask_clear": 2, - "for_each_online_cpu": 1, - "cpumask_set_cpu": 5, - "arch_enable_nonboot_cpus_begin": 2, - "arch_enable_nonboot_cpus_end": 2, - "enable_nonboot_cpus": 1, - "cpumask_empty": 1, - "KERN_INFO": 2, - "for_each_cpu": 1, - "__init": 2, - "alloc_frozen_cpus": 2, - "alloc_cpumask_var": 1, - "GFP_KERNEL": 1, - "__GFP_ZERO": 1, - "core_initcall": 2, - "cpu_hotplug_disable_before_freeze": 2, - "cpu_hotplug_enable_after_thaw": 2, - "cpu_hotplug_pm_callback": 2, - "action": 2, - "*ptr": 1, - "switch": 46, - "case": 273, - "PM_SUSPEND_PREPARE": 1, - "PM_HIBERNATION_PREPARE": 1, - "PM_POST_SUSPEND": 1, - "PM_POST_HIBERNATION": 1, - "default": 33, - "NOTIFY_DONE": 1, - "NOTIFY_OK": 1, - "cpu_hotplug_pm_sync_init": 2, - "pm_notifier": 1, - "notify_cpu_starting": 1, - "CPU_STARTING": 1, - "cpumask_test_cpu": 1, - "CPU_STARTING_FROZEN": 1, - "MASK_DECLARE_1": 3, - "x": 57, - "UL": 1, - "<<": 56, - "MASK_DECLARE_2": 3, - "MASK_DECLARE_4": 3, - "MASK_DECLARE_8": 9, - "cpu_bit_bitmap": 2, - "BITS_PER_LONG": 2, - "BITS_TO_LONGS": 1, - "NR_CPUS": 2, - "DECLARE_BITMAP": 6, - "cpu_all_bits": 2, - "CPU_BITS_ALL": 2, - "CONFIG_INIT_ALL_POSSIBLE": 1, - "cpu_possible_bits": 6, - "CONFIG_NR_CPUS": 5, - "__read_mostly": 5, - "cpumask": 7, - "*const": 4, - "cpu_possible_mask": 2, - "to_cpumask": 15, - "cpu_online_bits": 5, - "cpu_present_bits": 5, - "cpu_present_mask": 2, - "cpu_active_bits": 4, - "cpu_active_mask": 2, - "set_cpu_possible": 1, - "bool": 6, - "possible": 2, - "set_cpu_present": 1, - "present": 2, - "set_cpu_online": 1, - "online": 2, - "set_cpu_active": 1, - "active": 2, - "init_cpu_present": 1, - "*src": 3, - "cpumask_copy": 3, - "src": 16, - "init_cpu_possible": 1, - "init_cpu_online": 1, - "*diff_prefix_from_pathspec": 1, - "git_strarray": 2, - "*pathspec": 2, - "git_buf": 3, - "prefix": 34, - "GIT_BUF_INIT": 3, - "*scan": 2, - "git_buf_common_prefix": 1, - "pathspec": 15, - "scan": 4, - "prefix.ptr": 2, - "git__iswildcard": 1, - "git_buf_truncate": 1, - "prefix.size": 1, - "git_buf_detach": 1, - "git_buf_free": 4, - "diff_pathspec_is_interesting": 2, - "*str": 1, - "count": 17, - "false": 77, - "true": 73, - "str": 162, - "strings": 5, - "diff_path_matches_pathspec": 3, - "git_diff_list": 17, - "*diff": 8, - "*path": 2, - "git_attr_fnmatch": 4, - "*match": 3, - "diff": 93, - "pathspec.length": 1, - "git_vector_foreach": 4, - "match": 16, - "p_fnmatch": 1, - "pattern": 3, - "path": 20, - "FNM_NOMATCH": 1, - "GIT_ATTR_FNMATCH_HASWILD": 1, - "strncmp": 1, - "length": 58, - "GIT_ATTR_FNMATCH_NEGATIVE": 1, - "git_diff_delta": 19, - "*diff_delta__alloc": 1, - "git_delta_t": 5, - "status": 57, - "*delta": 6, - "git__calloc": 3, - "delta": 54, - "old_file.path": 12, - "git_pool_strdup": 3, - "pool": 12, - "new_file.path": 6, - "opts.flags": 8, - "GIT_DIFF_REVERSE": 3, - "GIT_DELTA_ADDED": 4, - "GIT_DELTA_DELETED": 7, - "*diff_delta__dup": 1, - "*d": 1, - "git_pool": 4, - "*pool": 3, - "d": 16, - "fail": 19, - "*diff_delta__merge_like_cgit": 1, - "*b": 6, - "*dup": 1, - "diff_delta__dup": 3, - "dup": 15, - "new_file.oid": 7, - "git_oid_cpy": 5, - "new_file.mode": 4, - "new_file.size": 3, - "new_file.flags": 4, - "old_file.oid": 3, - "GIT_DELTA_UNTRACKED": 5, - "GIT_DELTA_IGNORED": 5, - "GIT_DELTA_UNMODIFIED": 11, - "diff_delta__from_one": 5, - "git_index_entry": 8, - "GIT_DIFF_INCLUDE_IGNORED": 1, - "GIT_DIFF_INCLUDE_UNTRACKED": 1, - "diff_delta__alloc": 2, - "assert": 41, - "GIT_DELTA_MODIFIED": 3, - "old_file.mode": 2, - "mode": 11, - "old_file.size": 1, - "file_size": 6, - "old_file.flags": 2, - "GIT_DIFF_FILE_VALID_OID": 4, - "git_vector_insert": 4, - "deltas": 8, - "diff_delta__from_two": 2, - "*old_entry": 1, - "*new_entry": 1, - "*new_oid": 1, - "GIT_DIFF_INCLUDE_UNMODIFIED": 1, - "*temp": 1, - "old_entry": 5, - "new_entry": 5, - "temp": 11, - "new_oid": 3, - "git_oid_iszero": 2, - "*diff_strdup_prefix": 1, - "strlen": 17, - "git_pool_strcat": 1, - "git_pool_strndup": 1, - "diff_delta__cmp": 3, - "*da": 1, - "*db": 3, - "strcmp": 20, - "da": 2, - "db": 10, - "config_bool": 5, - "git_config": 3, - "*cfg": 2, - "defvalue": 2, - "git_config_get_bool": 1, - "cfg": 6, - "giterr_clear": 1, - "*git_diff_list_alloc": 1, - "git_repository": 7, - "*repo": 7, - "git_diff_options": 7, - "*opts": 6, - "repo": 23, - "git_vector_init": 3, - "git_pool_init": 2, - "git_repository_config__weakptr": 1, - "diffcaps": 13, - "GIT_DIFFCAPS_HAS_SYMLINKS": 2, - "GIT_DIFFCAPS_ASSUME_UNCHANGED": 2, - "GIT_DIFFCAPS_TRUST_EXEC_BIT": 2, - "GIT_DIFFCAPS_TRUST_CTIME": 2, - "opts": 24, - "opts.pathspec": 2, - "opts.old_prefix": 4, - "diff_strdup_prefix": 2, - "old_prefix": 2, - "DIFF_OLD_PREFIX_DEFAULT": 1, - "opts.new_prefix": 4, - "new_prefix": 2, - "DIFF_NEW_PREFIX_DEFAULT": 1, - "*swap": 1, - "swap": 9, - "pathspec.count": 2, - "*pattern": 1, - "pathspec.strings": 1, - "GIT_ATTR_FNMATCH_ALLOWSPACE": 1, - "git_attr_fnmatch__parse": 1, - "GIT_ENOTFOUND": 1, - "git_diff_list_free": 3, - "deltas.contents": 1, - "git_vector_free": 3, - "pathspec.contents": 1, - "git_pool_clear": 2, - "oid_for_workdir_item": 2, - "full_path": 3, - "git_buf_joinpath": 1, - "git_repository_workdir": 1, - "S_ISLNK": 2, - "git_odb__hashlink": 1, - "full_path.ptr": 2, - "git__is_sizet": 1, - "giterr_set": 1, - "GITERR_OS": 1, - "fd": 34, - "git_futils_open_ro": 1, - "git_odb__hashfd": 1, - "GIT_OBJ_BLOB": 1, - "p_close": 1, - "EXEC_BIT_MASK": 3, - "maybe_modified": 2, - "git_iterator": 8, - "*old_iter": 2, - "*oitem": 2, - "*new_iter": 2, - "*nitem": 2, - "noid": 4, - "*use_noid": 1, - "omode": 8, - "oitem": 29, - "nmode": 10, - "nitem": 32, - "GIT_UNUSED": 1, - "old_iter": 8, - "S_ISREG": 1, - "GIT_MODE_TYPE": 3, - "GIT_MODE_PERMS_MASK": 1, - "flags_extended": 2, - "GIT_IDXENTRY_INTENT_TO_ADD": 1, - "GIT_IDXENTRY_SKIP_WORKTREE": 1, - "new_iter": 13, - "GIT_ITERATOR_WORKDIR": 2, - "ctime.seconds": 2, - "mtime.seconds": 2, - "GIT_DIFFCAPS_USE_DEV": 1, - "dev": 2, - "ino": 2, - "uid": 2, - "gid": 2, - "S_ISGITLINK": 1, - "git_submodule": 1, - "*sub": 1, - "GIT_DIFF_IGNORE_SUBMODULES": 1, - "git_submodule_lookup": 1, - "sub": 12, - "ignore": 1, - "GIT_SUBMODULE_IGNORE_ALL": 1, - "use_noid": 2, - "diff_from_iterators": 5, - "**diff_ptr": 1, - "ignore_prefix": 6, - "git_diff_list_alloc": 1, - "old_src": 1, - "new_src": 3, - "git_iterator_current": 2, - "git_iterator_advance": 5, - "delta_type": 8, - "git_buf_len": 1, - "git__prefixcmp": 2, - "git_buf_cstr": 1, - "S_ISDIR": 1, - "GIT_DIFF_RECURSE_UNTRACKED_DIRS": 1, - "git_iterator_current_is_ignored": 2, - "git_buf_sets": 1, - "git_iterator_advance_into_directory": 1, - "git_iterator_free": 4, - "*diff_ptr": 2, - "git_diff_tree_to_tree": 1, - "git_tree": 4, - "*old_tree": 3, - "*new_tree": 1, - "**diff": 4, - "diff_prefix_from_pathspec": 4, - "old_tree": 5, - "new_tree": 2, - "git_iterator_for_tree_range": 4, - "git_diff_index_to_tree": 1, - "git_iterator_for_index_range": 2, - "git_diff_workdir_to_index": 1, - "git_iterator_for_workdir_range": 2, - "git_diff_workdir_to_tree": 1, - "git_diff_merge": 1, - "*onto": 1, - "*from": 1, - "onto_pool": 7, - "git_vector": 1, - "onto_new": 6, - "j": 206, - "onto": 7, - "from": 16, - "deltas.length": 4, - "*o": 8, - "GIT_VECTOR_GET": 2, - "*f": 2, - "f": 184, - "o": 80, - "diff_delta__merge_like_cgit": 1, - "git_vector_swap": 1, - "git_pool_swap": 1, - "ATSHOME_LIBATS_DYNARRAY_CATS": 3, - "": 5, - "atslib_dynarray_memcpy": 1, - "atslib_dynarray_memmove": 1, - "memmove": 2, - "//": 262, - "ifndef": 2, - "git_usage_string": 2, "git_more_info_string": 2, "N_": 1, + "struct": 360, "startup_info": 3, "git_startup_info": 2, "use_pager": 8, "pager_config": 3, "*cmd": 5, "want": 3, + "*value": 5, "pager_command_config": 2, + "*var": 4, "*data": 12, + "*c": 69, "data": 69, "prefixcmp": 3, "var": 7, + "&&": 248, + "strcmp": 20, + "+": 551, + "c": 252, "cmd": 46, + "b": 66, "git_config_maybe_bool": 1, "value": 9, + "else": 190, "xstrdup": 2, "check_pager_config": 3, "c.cmd": 1, "c.want": 2, "c.value": 3, + "NULL": 330, + "git_config": 3, "pager_program": 1, "commit_pager_choice": 4, + "switch": 46, + "case": 273, "setenv": 1, + "break": 244, "setup_pager": 1, + "default": 33, "handle_options": 2, "***argv": 2, "*argc": 1, "*envchanged": 1, "**orig_argv": 1, - "*argv": 6, + "while": 70, "new_argv": 7, "option_count": 1, + "count": 17, + "<": 219, + "die": 5, "alias_command": 4, "trace_argv_printf": 3, + "xrealloc": 2, + "sizeof": 71, + "*": 261, "*argcp": 4, + "memcpy": 35, + "ret": 142, "subdir": 3, "chdir": 2, "die_errno": 3, @@ -6375,17 +5567,25 @@ "saved_errno": 1, "git_version_string": 1, "GIT_VERSION": 1, + "#define": 920, "RUN_SETUP": 81, + "<<": 56, "RUN_SETUP_GENTLY": 16, "USE_PAGER": 3, "NEED_WORK_TREE": 18, "cmd_struct": 4, "option": 9, "run_builtin": 2, + "*p": 9, + "**argv": 6, + "status": 57, "help": 4, "stat": 3, "st": 2, + "*prefix": 7, + "prefix": 34, "argv": 54, + "p": 60, "setup_git_directory": 1, "nongit_ok": 2, "setup_git_directory_gently": 1, @@ -6398,6 +5598,7 @@ "stdout": 5, "S_ISFIFO": 1, "st.st_mode": 2, + "||": 141, "S_ISSOCK": 1, "fflush": 2, "ferror": 2, @@ -6507,13 +5708,18 @@ "cmd_version": 1, "cmd_whatchanged": 1, "cmd_write_tree": 1, + "i": 410, "ext": 4, "STRIP_EXTENSION": 1, + "strlen": 17, "*argv0": 1, "argv0": 2, + "for": 88, "ARRAY_SIZE": 1, + "continue": 20, "exit": 20, "execv_dashed_external": 2, + "strbuf": 12, "STRBUF_INIT": 1, "*tmp": 1, "strbuf_addf": 1, @@ -6540,745 +5746,209 @@ "stderr": 15, "help_unknown_cmd": 1, "strerror": 4, - "PPC_SHA1": 1, - "git_hash_ctx": 7, - "SHA_CTX": 3, - "*git_hash_new_ctx": 1, - "*ctx": 5, - "ctx": 16, - "SHA1_Init": 4, - "git_hash_free_ctx": 1, - "git_hash_init": 1, - "git_hash_update": 1, - "SHA1_Update": 3, - "git_hash_final": 1, - "*out": 3, - "SHA1_Final": 3, - "git_hash_buf": 1, - "git_hash_vec": 1, - "git_buf_vec": 1, - "*vec": 1, - "vec": 2, - ".data": 1, - ".len": 3, - "HELLO_H": 2, - "hello": 1, - "": 5, - "": 2, - "": 3, - "": 3, - "": 2, - "ULLONG_MAX": 10, - "MIN": 3, - "HTTP_PARSER_DEBUG": 4, - "SET_ERRNO": 47, - "e": 4, - "do": 21, - "parser": 334, - "http_errno": 11, - "error_lineno": 3, - "__LINE__": 50, - "CALLBACK_NOTIFY_": 3, - "FOR": 11, - "ER": 4, - "HTTP_PARSER_ERRNO": 10, - "HPE_OK": 10, - "settings": 6, - "on_##FOR": 4, - "HPE_CB_##FOR": 2, - "CALLBACK_NOTIFY": 10, - "CALLBACK_NOTIFY_NOADVANCE": 2, - "CALLBACK_DATA_": 4, - "LEN": 2, - "FOR##_mark": 7, - "CALLBACK_DATA": 10, - "CALLBACK_DATA_NOADVANCE": 6, - "MARK": 7, - "PROXY_CONNECTION": 4, - "CONNECTION": 4, - "CONTENT_LENGTH": 4, - "TRANSFER_ENCODING": 4, - "UPGRADE": 4, - "CHUNKED": 4, - "KEEP_ALIVE": 4, - "CLOSE": 4, - "*method_strings": 1, - "XX": 63, - "num": 24, - "string": 18, - "#string": 1, - "HTTP_METHOD_MAP": 3, - "#undef": 7, - "tokens": 5, - "int8_t": 3, - "unhex": 3, - "HTTP_PARSER_STRICT": 5, - "uint8_t": 6, - "normal_url_char": 3, - "T": 3, - "s_dead": 10, - "s_start_req_or_res": 4, - "s_res_or_resp_H": 3, - "s_start_res": 5, - "s_res_H": 3, - "s_res_HT": 4, - "s_res_HTT": 3, - "s_res_HTTP": 3, - "s_res_first_http_major": 3, - "s_res_http_major": 3, - "s_res_first_http_minor": 3, - "s_res_http_minor": 3, - "s_res_first_status_code": 3, - "s_res_status_code": 3, - "s_res_status": 3, - "s_res_line_almost_done": 4, - "s_start_req": 6, - "s_req_method": 4, - "s_req_spaces_before_url": 5, - "s_req_schema": 6, - "s_req_schema_slash": 6, - "s_req_schema_slash_slash": 6, - "s_req_host_start": 8, - "s_req_host_v6_start": 7, - "s_req_host_v6": 7, - "s_req_host_v6_end": 7, - "s_req_host": 8, - "s_req_port_start": 7, - "s_req_port": 6, - "s_req_path": 8, - "s_req_query_string_start": 8, - "s_req_query_string": 7, - "s_req_fragment_start": 7, - "s_req_fragment": 7, - "s_req_http_start": 3, - "s_req_http_H": 3, - "s_req_http_HT": 3, - "s_req_http_HTT": 3, - "s_req_http_HTTP": 3, - "s_req_first_http_major": 3, - "s_req_http_major": 3, - "s_req_first_http_minor": 3, - "s_req_http_minor": 3, - "s_req_line_almost_done": 4, - "s_header_field_start": 12, - "s_header_field": 4, - "s_header_value_start": 4, - "s_header_value": 5, - "s_header_value_lws": 3, - "s_header_almost_done": 6, - "s_chunk_size_start": 4, - "s_chunk_size": 3, - "s_chunk_parameters": 3, - "s_chunk_size_almost_done": 4, - "s_headers_almost_done": 4, - "s_headers_done": 4, - "s_chunk_data": 3, - "s_chunk_data_almost_done": 3, - "s_chunk_data_done": 3, - "s_body_identity": 3, - "s_body_identity_eof": 4, - "s_message_done": 3, - "PARSING_HEADER": 2, - "header_states": 1, - "h_general": 23, - "0": 11, - "h_C": 3, - "h_CO": 3, - "h_CON": 3, - "h_matching_connection": 3, - "h_matching_proxy_connection": 3, - "h_matching_content_length": 3, - "h_matching_transfer_encoding": 3, - "h_matching_upgrade": 3, - "h_connection": 6, - "h_content_length": 5, - "h_transfer_encoding": 5, - "h_upgrade": 4, - "h_matching_transfer_encoding_chunked": 3, - "h_matching_connection_keep_alive": 3, - "h_matching_connection_close": 3, - "h_transfer_encoding_chunked": 4, - "h_connection_keep_alive": 4, - "h_connection_close": 4, - "Macros": 1, - "character": 11, - "classes": 1, - "depends": 1, - "on": 4, - "strict": 2, - "define": 14, - "CR": 18, - "r": 58, - "LF": 21, - "LOWER": 7, - "0x20": 1, - "IS_ALPHA": 5, - "z": 47, - "IS_NUM": 14, - "9": 1, - "IS_ALPHANUM": 3, - "IS_HEX": 2, - "TOKEN": 4, - "IS_URL_CHAR": 6, - "IS_HOST_CHAR": 4, - "0x80": 1, - "endif": 6, - "start_state": 1, - "HTTP_REQUEST": 7, - "cond": 1, - "HPE_STRICT": 1, - "HTTP_STRERROR_GEN": 3, - "#n": 1, - "*description": 1, - "http_strerror_tab": 7, - "HTTP_ERRNO_MAP": 3, - "http_message_needs_eof": 4, - "http_parser": 13, - "*parser": 9, - "parse_url_char": 5, - "ch": 145, - "http_parser_execute": 2, - "http_parser_settings": 5, - "*settings": 2, - "unhex_val": 7, - "*header_field_mark": 1, - "*header_value_mark": 1, - "*url_mark": 1, - "*body_mark": 1, - "message_complete": 7, - "HPE_INVALID_EOF_STATE": 1, - "header_field_mark": 2, - "header_value_mark": 2, - "url_mark": 2, - "nread": 7, - "HTTP_MAX_HEADER_SIZE": 2, - "HPE_HEADER_OVERFLOW": 1, - "reexecute_byte": 7, - "HPE_CLOSED_CONNECTION": 1, - "content_length": 27, - "message_begin": 3, - "HTTP_RESPONSE": 3, - "HPE_INVALID_CONSTANT": 3, - "method": 39, - "HTTP_HEAD": 2, - "index": 58, - "STRICT_CHECK": 15, - "HPE_INVALID_VERSION": 12, - "http_major": 11, - "http_minor": 11, - "HPE_INVALID_STATUS": 3, - "status_code": 8, - "HPE_INVALID_METHOD": 4, - "http_method": 4, - "HTTP_CONNECT": 4, - "HTTP_DELETE": 1, - "HTTP_GET": 1, - "HTTP_LOCK": 1, - "HTTP_MKCOL": 2, - "HTTP_NOTIFY": 1, - "HTTP_OPTIONS": 1, - "HTTP_POST": 2, - "HTTP_REPORT": 1, - "HTTP_SUBSCRIBE": 2, - "HTTP_TRACE": 1, - "HTTP_UNLOCK": 2, - "*matcher": 1, - "matcher": 3, - "method_strings": 2, - "HTTP_CHECKOUT": 1, - "HTTP_COPY": 1, - "HTTP_MOVE": 1, - "HTTP_MERGE": 1, - "HTTP_MSEARCH": 1, - "HTTP_MKACTIVITY": 1, - "HTTP_SEARCH": 1, - "HTTP_PROPFIND": 2, - "HTTP_PUT": 2, - "HTTP_PATCH": 1, - "HTTP_PURGE": 1, - "HTTP_UNSUBSCRIBE": 1, - "HTTP_PROPPATCH": 1, - "url": 4, - "HPE_INVALID_URL": 4, - "HPE_LF_EXPECTED": 1, - "HPE_INVALID_HEADER_TOKEN": 2, - "header_field": 5, - "header_state": 42, - "header_value": 6, - "F_UPGRADE": 3, - "HPE_INVALID_CONTENT_LENGTH": 4, - "uint64_t": 8, - "F_CONNECTION_KEEP_ALIVE": 3, - "F_CONNECTION_CLOSE": 3, - "F_CHUNKED": 11, - "F_TRAILING": 3, - "NEW_MESSAGE": 6, - "upgrade": 3, - "on_headers_complete": 3, - "F_SKIPBODY": 4, - "HPE_CB_headers_complete": 1, - "to_read": 6, - "body": 6, - "body_mark": 2, - "HPE_INVALID_CHUNK_SIZE": 2, - "HPE_INVALID_INTERNAL_STATE": 1, - "1": 2, - "HPE_UNKNOWN": 1, - "Does": 1, - "the": 91, - "need": 5, - "to": 37, - "see": 2, - "an": 2, - "EOF": 26, - "find": 1, - "end": 48, - "of": 44, - "message": 3, - "http_should_keep_alive": 2, - "http_method_str": 1, - "m": 8, - "http_parser_init": 2, - "http_parser_type": 3, - "http_errno_name": 1, - "/sizeof": 4, - ".name": 1, - "http_errno_description": 1, - ".description": 1, - "http_parser_parse_url": 2, - "buflen": 3, - "is_connect": 4, - "http_parser_url": 3, - "*u": 2, - "http_parser_url_fields": 2, - "uf": 14, - "old_uf": 4, - "u": 18, - "port": 7, - "field_set": 5, - "UF_MAX": 3, - "UF_SCHEMA": 2, - "UF_HOST": 3, - "UF_PORT": 5, - "UF_PATH": 2, - "UF_QUERY": 2, - "UF_FRAGMENT": 2, - "field_data": 5, - ".off": 2, - "xffff": 1, - "uint16_t": 12, - "http_parser_pause": 2, - "paused": 3, - "HPE_PAUSED": 2, - "http_parser_h": 2, - "__cplusplus": 20, - "HTTP_PARSER_VERSION_MAJOR": 1, - "HTTP_PARSER_VERSION_MINOR": 1, - "": 2, - "_WIN32": 3, - "__MINGW32__": 1, - "_MSC_VER": 5, - "__int8": 2, - "__int16": 2, - "int16_t": 1, - "__int32": 2, - "int32_t": 112, - "__int64": 3, - "int64_t": 2, - "ssize_t": 1, - "": 1, - "*1024": 4, - "DELETE": 2, - "GET": 2, - "HEAD": 2, - "POST": 2, - "PUT": 2, - "CONNECT": 2, - "OPTIONS": 2, - "TRACE": 2, - "COPY": 2, - "LOCK": 2, - "MKCOL": 2, - "MOVE": 2, - "PROPFIND": 2, - "PROPPATCH": 2, - "SEARCH": 3, - "UNLOCK": 2, - "REPORT": 2, - "MKACTIVITY": 2, - "CHECKOUT": 2, - "MERGE": 2, - "MSEARCH": 1, - "M": 1, - "NOTIFY": 2, - "SUBSCRIBE": 2, - "UNSUBSCRIBE": 2, - "PATCH": 2, - "PURGE": 2, - "HTTP_##name": 1, - "HTTP_BOTH": 1, - "OK": 1, - "CB_message_begin": 1, - "CB_url": 1, - "CB_header_field": 1, - "CB_header_value": 1, - "CB_headers_complete": 1, - "CB_body": 1, - "CB_message_complete": 1, - "INVALID_EOF_STATE": 1, - "HEADER_OVERFLOW": 1, - "CLOSED_CONNECTION": 1, - "INVALID_VERSION": 1, - "INVALID_STATUS": 1, - "INVALID_METHOD": 1, - "INVALID_URL": 1, - "INVALID_HOST": 1, - "INVALID_PORT": 1, - "INVALID_PATH": 1, - "INVALID_QUERY_STRING": 1, - "INVALID_FRAGMENT": 1, - "LF_EXPECTED": 1, - "INVALID_HEADER_TOKEN": 1, - "INVALID_CONTENT_LENGTH": 1, - "INVALID_CHUNK_SIZE": 1, - "INVALID_CONSTANT": 1, - "INVALID_INTERNAL_STATE": 1, - "STRICT": 1, - "PAUSED": 1, - "UNKNOWN": 1, - "HTTP_ERRNO_GEN": 3, - "HPE_##n": 1, - "HTTP_PARSER_ERRNO_LINE": 2, - "short": 6, - "http_cb": 3, - "on_message_begin": 1, - "http_data_cb": 4, - "on_url": 1, - "on_header_field": 1, - "on_header_value": 1, - "on_body": 1, - "on_message_complete": 1, - "off": 8, - "*http_method_str": 1, - "*http_errno_name": 1, - "*http_errno_description": 1, - "": 1, - "_Included_jni_JniLayer": 2, - "JNIEXPORT": 6, - "jlong": 6, - "JNICALL": 6, - "Java_jni_JniLayer_jni_1layer_1initialize": 1, - "JNIEnv": 6, - "jobject": 6, - "jintArray": 1, - "jint": 7, - "Java_jni_JniLayer_jni_1layer_1mainloop": 1, - "Java_jni_JniLayer_jni_1layer_1set_1button": 1, - "Java_jni_JniLayer_jni_1layer_1set_1analog": 1, - "jfloat": 1, - "Java_jni_JniLayer_jni_1layer_1report_1analog_1chg": 1, - "Java_jni_JniLayer_jni_1layer_1kill": 1, - "strncasecmp": 2, - "_strnicmp": 1, - "REF_TABLE_SIZE": 1, - "BUFFER_BLOCK": 5, - "BUFFER_SPAN": 9, - "MKD_LI_END": 1, - "gperf_case_strncmp": 1, - "s1": 6, - "s2": 6, - "GPERF_DOWNCASE": 1, - "GPERF_CASE_STRNCMP": 1, - "link_ref": 2, - "*link": 1, - "*title": 1, - "sd_markdown": 6, - "tag": 1, - "tag_len": 3, - "w": 6, - "is_empty": 4, - "htmlblock_end": 3, - "*curtag": 2, - "*rndr": 4, - "start_of_line": 2, - "tag_size": 3, - "curtag": 8, - "end_tag": 4, - "block_lines": 3, - "htmlblock_end_tag": 1, - "rndr": 25, - "parse_htmlblock": 1, - "*ob": 3, - "do_render": 4, - "tag_end": 7, - "work": 4, - "find_block_tag": 1, - "work.size": 5, - "cb.blockhtml": 6, - "ob": 14, - "opaque": 8, - "parse_table_row": 1, - "columns": 3, - "*col_data": 1, - "header_flag": 3, - "col": 9, - "*row_work": 1, - "cb.table_cell": 3, - "cb.table_row": 2, - "row_work": 4, - "rndr_newbuf": 2, - "cell_start": 5, - "cell_end": 6, - "*cell_work": 1, - "cell_work": 3, - "_isspace": 3, - "parse_inline": 1, - "col_data": 2, - "rndr_popbuf": 2, - "empty_cell": 2, - "parse_table_header": 1, - "*columns": 2, - "**column_data": 1, - "pipes": 23, - "header_end": 7, - "under_end": 1, - "*column_data": 1, - "calloc": 1, - "beg": 10, - "doc_size": 6, - "document": 9, - "UTF8_BOM": 1, - "is_ref": 1, - "md": 18, - "refs": 2, - "expand_tabs": 1, - "text": 22, - "bufputc": 2, - "bufgrow": 1, - "MARKDOWN_GROW": 1, - "cb.doc_header": 2, - "parse_block": 1, - "cb.doc_footer": 2, - "bufrelease": 3, - "free_link_refs": 1, - "work_bufs": 8, - ".size": 2, - "sd_markdown_free": 1, - "*md": 1, - ".asize": 2, - ".item": 2, - "stack_free": 2, - "sd_version": 1, - "*ver_major": 2, - "*ver_minor": 2, - "*ver_revision": 2, - "SUNDOWN_VER_MAJOR": 1, - "SUNDOWN_VER_MINOR": 1, - "SUNDOWN_VER_REVISION": 1, - "": 4, - "": 2, - "": 1, - "": 1, - "": 2, - "__APPLE__": 2, - "TARGET_OS_IPHONE": 1, - "**environ": 1, - "uv__chld": 2, - "EV_P_": 1, - "ev_child*": 1, - "watcher": 4, - "revents": 2, - "rstatus": 1, - "exit_status": 3, - "term_signal": 3, - "uv_process_t": 1, - "*process": 1, - "process": 19, - "child_watcher": 5, - "EV_CHILD": 1, - "ev_child_stop": 2, - "EV_A_": 1, - "WIFEXITED": 1, - "WEXITSTATUS": 2, - "WIFSIGNALED": 2, - "WTERMSIG": 2, - "exit_cb": 3, - "uv__make_socketpair": 2, - "fds": 20, - "SOCK_NONBLOCK": 2, - "fl": 8, - "SOCK_CLOEXEC": 1, - "UV__F_NONBLOCK": 5, - "socketpair": 2, - "AF_UNIX": 2, - "SOCK_STREAM": 2, - "uv__cloexec": 4, - "uv__nonblock": 5, - "uv__make_pipe": 2, - "__linux__": 3, - "UV__O_CLOEXEC": 1, - "UV__O_NONBLOCK": 1, - "uv__pipe2": 1, - "ENOSYS": 1, - "pipe": 1, - "uv__process_init_stdio": 2, - "uv_stdio_container_t*": 4, - "container": 17, - "writable": 8, - "UV_IGNORE": 2, - "UV_CREATE_PIPE": 4, - "UV_INHERIT_FD": 3, - "UV_INHERIT_STREAM": 2, - "data.stream": 7, - "UV_NAMED_PIPE": 2, - "data.fd": 1, - "uv__process_stdio_flags": 2, - "uv_pipe_t*": 1, - "ipc": 1, - "UV_STREAM_READABLE": 2, - "UV_STREAM_WRITABLE": 2, - "uv__process_open_stream": 2, - "child_fd": 3, - "close": 13, - "uv__stream_open": 1, - "uv_stream_t*": 2, - "uv__process_close_stream": 2, - "uv__stream_close": 1, - "uv__process_child_init": 2, - "uv_process_options_t": 2, - "options": 62, - "stdio_count": 7, - "int*": 22, - "options.flags": 4, - "UV_PROCESS_DETACHED": 2, - "setsid": 2, - "close_fd": 2, - "use_fd": 7, - "open": 4, - "O_RDONLY": 1, - "O_RDWR": 2, - "perror": 5, - "_exit": 6, - "dup2": 4, - "options.cwd": 2, - "UV_PROCESS_SETGID": 2, - "setgid": 1, - "options.gid": 1, - "UV_PROCESS_SETUID": 2, - "setuid": 1, - "options.uid": 1, - "environ": 4, - "options.env": 1, - "execvp": 1, - "options.file": 2, - "options.args": 1, - "SPAWN_WAIT_EXEC": 5, - "uv_spawn": 1, - "uv_loop_t*": 1, - "loop": 9, - "uv_process_t*": 3, - "char**": 7, - "save_our_env": 3, - "options.stdio_count": 4, - "malloc": 3, - "signal_pipe": 7, - "pollfd": 1, - "pfd": 2, - "pid_t": 2, - "pid": 13, - "UV_PROCESS_WINDOWS_VERBATIM_ARGUMENTS": 1, - "uv__handle_init": 1, - "uv_handle_t*": 1, - "UV_PROCESS": 1, - "counters.process_init": 1, - "uv__handle_start": 1, - "options.exit_cb": 1, - "options.stdio": 3, - "fork": 2, - "pfd.fd": 1, - "pfd.events": 1, - "POLLIN": 1, - "POLLHUP": 1, - "pfd.revents": 1, - "poll": 1, - "EINTR": 1, - "ev_child_init": 1, - "ev_child_start": 1, - "ev": 2, - "child_watcher.data": 1, - "uv__set_sys_error": 2, - "uv_process_kill": 1, - "signum": 4, - "kill": 4, - "uv_err_t": 1, - "uv_kill": 1, - "uv__new_sys_error": 1, - "uv_ok_": 1, - "uv__process_close": 1, - "handle": 10, - "uv__handle_stop": 1, - "VALUE": 13, - "rb_cRDiscount": 4, - "rb_rdiscount_to_html": 2, - "self": 9, - "*res": 2, - "szres": 8, - "encoding": 14, - "rb_funcall": 14, - "rb_intern": 15, - "rb_str_buf_new": 2, - "Check_Type": 2, - "T_STRING": 2, - "rb_rdiscount__get_flags": 3, - "MMIOT": 2, - "*doc": 2, - "mkd_string": 2, - "RSTRING_PTR": 2, - "RSTRING_LEN": 2, - "mkd_compile": 2, - "doc": 6, - "mkd_document": 1, - "res": 4, - "rb_str_cat": 4, - "mkd_cleanup": 2, - "rb_respond_to": 1, - "rb_rdiscount_toc_content": 2, - "mkd_toc": 1, - "ruby_obj": 11, - "MKD_TABSTOP": 1, - "MKD_NOHEADER": 1, - "Qtrue": 10, - "MKD_NOPANTS": 1, - "MKD_NOHTML": 1, - "MKD_TOC": 1, - "MKD_NOIMAGE": 1, - "MKD_NOLINKS": 1, - "MKD_NOTABLES": 1, - "MKD_STRICT": 1, - "MKD_AUTOLINK": 1, - "MKD_SAFELINK": 1, - "MKD_NO_EXT": 1, - "Init_rdiscount": 1, - "rb_define_class": 1, - "rb_cObject": 1, - "rb_define_method": 2, - "READLINE_READLINE_CATS": 3, - "": 1, - "atscntrb_readline_rl_library_version": 1, - "char*": 167, - "rl_library_version": 1, - "atscntrb_readline_rl_readline_version": 1, - "rl_readline_version": 1, - "atscntrb_readline_readline": 1, - "readline": 1, + "#ifndef": 89, + "BLOB_H": 2, + "extern": 38, + "*blob_type": 2, + "blob": 6, + "object": 41, + "*lookup_blob": 2, + "unsigned": 140, + "*sha1": 16, + "parse_blob_buffer": 2, + "*item": 10, + "*buffer": 6, + "long": 105, + "size": 120, + "#endif": 243, + "COMMIT_H": 2, + "commit_list": 35, + "commit": 59, + "*next": 6, + "*util": 1, + "indegree": 1, + "date": 5, + "*parents": 4, + "tree": 3, + "*tree": 3, + "save_commit_buffer": 3, + "*commit_type": 2, + "decoration": 1, + "name_decoration": 3, + "type": 36, + "name": 28, + "*lookup_commit": 2, + "*lookup_commit_reference": 2, + "*lookup_commit_reference_gently": 2, + "quiet": 5, + "*lookup_commit_reference_by_name": 2, + "*name": 12, + "*lookup_commit_or_die": 2, + "*ref_name": 2, + "parse_commit_buffer": 3, + "parse_commit": 3, + "find_commit_subject": 2, + "*commit_buffer": 2, + "**subject": 2, + "*commit_list_insert": 1, + "**list": 5, + "**commit_list_append": 2, + "*commit": 10, + "**next": 2, + "commit_list_count": 1, + "*l": 1, + "*commit_list_insert_by_date": 1, + "commit_list_sort_by_date": 2, + "free_commit_list": 1, + "*list": 2, + "enum": 30, + "cmit_fmt": 3, + "CMIT_FMT_RAW": 1, + "CMIT_FMT_MEDIUM": 2, + "CMIT_FMT_DEFAULT": 1, + "CMIT_FMT_SHORT": 1, + "CMIT_FMT_FULL": 1, + "CMIT_FMT_FULLER": 1, + "CMIT_FMT_ONELINE": 1, + "CMIT_FMT_EMAIL": 1, + "CMIT_FMT_USERFORMAT": 1, + "CMIT_FMT_UNSPECIFIED": 1, + "pretty_print_context": 6, + "fmt": 4, + "abbrev": 1, + "*subject": 1, + "*after_subject": 1, + "preserve_subject": 1, + "date_mode": 2, + "date_mode_explicit": 1, + "need_8bit_cte": 2, + "show_notes": 1, + "reflog_walk_info": 1, + "*reflog_info": 1, + "*output_encoding": 2, + "userformat_want": 2, + "notes": 1, + "has_non_ascii": 1, + "*text": 1, + "rev_info": 2, + "*logmsg_reencode": 1, + "*reencode_commit_message": 1, + "**encoding_p": 1, + "get_commit_format": 1, + "*arg": 1, + "*format_subject": 1, + "*sb": 7, + "*msg": 7, + "*line_separator": 1, + "userformat_find_requirements": 1, + "*fmt": 2, + "*w": 2, + "format_commit_message": 1, + "*format": 2, + "*context": 1, + "pretty_print_commit": 1, + "*pp": 4, + "pp_commit_easy": 1, + "pp_user_info": 1, + "*what": 1, + "*line": 1, + "*encoding": 2, + "pp_title_line": 1, + "**msg_p": 2, + "pp_remainder": 1, + "indent": 1, + "*pop_most_recent_commit": 1, + "mark": 3, + "*pop_commit": 1, + "**stack": 1, + "clear_commit_marks": 1, + "clear_commit_marks_for_object_array": 1, + "object_array": 2, + "*a": 9, + "sort_in_topological_order": 1, + "**": 6, + "list": 1, + "lifo": 1, + "commit_graft": 13, + "sha1": 20, + "nr_parent": 3, + "parent": 7, + "FLEX_ARRAY": 1, + "typedef": 191, + "*read_graft_line": 1, + "*buf": 10, + "len": 30, + "register_commit_graft": 2, + "*lookup_commit_graft": 1, + "*get_merge_bases": 1, + "*rev1": 1, + "*rev2": 1, + "cleanup": 12, + "*get_merge_bases_many": 1, + "*one": 1, + "n": 70, + "**twos": 1, + "*get_octopus_merge_bases": 1, + "*in": 1, + "register_shallow": 1, + "unregister_shallow": 1, + "for_each_commit_graft": 1, + "each_commit_graft_fn": 1, + "is_repository_shallow": 1, + "*get_shallow_commits": 1, + "*heads": 2, + "depth": 2, + "shallow_flag": 1, + "not_shallow_flag": 1, + "is_descendant_of": 1, + "in_merge_bases": 1, + "interactive_add": 1, + "patch": 1, + "run_add_interactive": 1, + "*revision": 1, + "*patch_mode": 1, + "**pathspec": 1, + "inline": 3, + "single_parent": 1, + "parents": 4, + "next": 8, + "*reduce_heads": 1, + "commit_extra_header": 7, + "*key": 5, + "size_t": 52, + "append_merge_tag_headers": 1, + "***tail": 1, + "commit_tree": 1, + "*ret": 20, + "*author": 2, + "*sign_commit": 2, + "commit_tree_extended": 1, + "*read_commit_extra_headers": 1, + "*read_commit_extra_header_lines": 1, + "free_commit_extra_headers": 1, + "*extra": 1, + "merge_remote_desc": 3, + "*obj": 9, + "merge_remote_util": 1, + "util": 3, + "*get_merge_parent": 1, + "parse_signed_commit": 1, + "*message": 1, + "*signature": 1, "": 1, "": 1, + "": 2, + "": 4, + "": 5, + "": 3, "": 1, "": 1, "": 1, + "": 2, "": 1, "": 2, "": 1, + "": 2, "": 1, "": 3, "": 1, @@ -7451,6 +6121,7 @@ "server.logfile": 8, "fopen": 3, "msg": 10, + "off": 8, "timeval": 4, "tv": 8, "gettimeofday": 4, @@ -7471,14 +6142,19 @@ "vsnprintf": 1, "va_end": 3, "redisLogFromHandler": 2, + "fd": 34, "server.daemonize": 5, + "open": 4, "O_APPEND": 2, "O_CREAT": 2, "O_WRONLY": 2, "STDOUT_FILENO": 2, "ll2string": 3, "write": 7, + "goto": 159, + "err": 38, "time": 10, + "close": 13, "oom": 3, "REDIS_WARNING": 19, "sleep": 1, @@ -7491,12 +6167,17 @@ "/1000": 1, "exitFromChild": 1, "retcode": 3, + "#ifdef": 66, "COVERAGE_TEST": 1, + "#else": 94, + "_exit": 6, "dictVanillaFree": 1, "*privdata": 8, + "*val": 6, "DICT_NOTUSED": 6, "privdata": 8, "zfree": 2, + "val": 20, "dictListDestructor": 2, "listRelease": 1, "list*": 1, @@ -7509,6 +6190,7 @@ "sds": 13, "key1": 5, "key2": 5, + "memcmp": 6, "dictSdsKeyCaseCompare": 2, "strcasecmp": 13, "dictRedisObjectDestructor": 7, @@ -7523,17 +6205,22 @@ "ptr": 18, "o2": 7, "dictObjHash": 2, + "*o": 8, "key": 9, "dictGenHashFunction": 5, + "o": 80, "dictSdsHash": 4, + "char*": 167, "dictSdsCaseHash": 2, "dictGenCaseHashFunction": 1, "dictEncObjKeyCompare": 4, "robj*": 3, + "cmp": 9, "REDIS_ENCODING_INT": 4, "getDecodedObject": 3, "dictEncObjHash": 4, "REDIS_ENCODING_RAW": 1, + "hash": 12, "dictType": 8, "setDictType": 1, "zsetDictType": 1, @@ -7553,6 +6240,7 @@ "used*100/size": 1, "REDIS_HT_MINFILL": 1, "tryResizeHashTables": 2, + "j": 206, "server.dbnum": 8, "server.db": 23, ".dict": 9, @@ -7573,6 +6261,10 @@ "*REDIS_EXPIRELOOKUPS_TIME_PERC/REDIS_HZ/100": 1, "expired": 4, "redisDb": 3, + "*db": 3, + "do": 21, + "num": 24, + "db": 10, "expires": 3, "slots": 2, "now": 5, @@ -7580,6 +6272,7 @@ "REDIS_EXPIRELOOKUPS_PER_CRON": 2, "dictEntry": 2, "*de": 2, + "t": 32, "de": 12, "dictGetRandomKey": 4, "dictGetSignedIntegerVal": 1, @@ -7609,6 +6302,7 @@ "REDIS_OPS_SEC_SAMPLES": 3, "getOperationsPerSecond": 2, "sum": 3, + "/": 9, "clientsCronHandleTimeout": 2, "redisClient": 12, "time_t": 4, @@ -7656,6 +6350,7 @@ "serverCron": 2, "aeEventLoop": 2, "*eventLoop": 2, + "id": 13, "*clientData": 1, "server.cronloops": 3, "REDIS_NOTUSED": 5, @@ -7674,10 +6369,15 @@ "server.aof_rewrite_scheduled": 4, "rewriteAppendOnlyFileBackground": 2, "statloc": 5, + "pid_t": 2, + "pid": 13, "wait3": 1, "WNOHANG": 1, "exitcode": 3, + "WEXITSTATUS": 2, "bysignal": 4, + "WIFSIGNALED": 2, + "WTERMSIG": 2, "backgroundSaveDoneHandler": 1, "backgroundRewriteDoneHandler": 1, "server.saveparamslen": 3, @@ -7884,6 +6584,7 @@ "RLIMIT_NOFILE": 2, "oldlimit": 5, "limit.rlim_cur": 2, + "f": 184, "limit.rlim_max": 1, "setrlimit": 1, "initServer": 2, @@ -7928,6 +6629,7 @@ "server.stat_keyspace_hits": 2, "server.stat_fork_time": 2, "server.stat_rejected_conn": 2, + "memset": 4, "server.lastbgsave_status": 3, "server.stop_writes_on_bgsave_err": 2, "aeCreateTimeEvent": 1, @@ -7938,12 +6640,15 @@ "acceptUnixHandler": 1, "REDIS_AOF_ON": 2, "LL*": 1, + "*1024": 4, "REDIS_MAXMEMORY_NO_EVICTION": 2, "clusterInit": 1, "scriptingInit": 1, "slowlogInit": 1, "bioInit": 1, "numcommands": 5, + "/sizeof": 4, + "*f": 2, "sflags": 1, "retval": 3, "arity": 3, @@ -7963,6 +6668,7 @@ "server.cluster.myself": 1, "addReplySds": 3, "ip": 4, + "port": 7, "freeMemoryIfNeeded": 2, "REDIS_CMD_DENYOOM": 1, "REDIS_ERR": 5, @@ -7977,6 +6683,7 @@ "REDIS_SHUTDOWN_SAVE": 1, "nosave": 2, "REDIS_SHUTDOWN_NOSAVE": 1, + "kill": 4, "SIGKILL": 2, "rdbRemoveTempFile": 1, "aof_fsync": 1, @@ -7986,7 +6693,9 @@ "addReplyBulkLongLong": 2, "bytesToHuman": 3, "*s": 3, + "d": 16, "sprintf": 10, + "s": 154, "n/": 3, "LL*1024*1024": 2, "LL*1024*1024*1024": 1, @@ -8018,6 +6727,7 @@ "name.release": 1, "name.machine": 1, "aeGetApiName": 1, + "__GNUC__": 8, "__GNUC_MINOR__": 2, "__GNUC_PATCHLEVEL__": 1, "uptime/": 1, @@ -8059,6 +6769,7 @@ "replstate": 1, "REDIS_REPL_WAIT_BGSAVE_START": 1, "REDIS_REPL_WAIT_BGSAVE_END": 1, + "state": 104, "REDIS_REPL_SEND_BULK": 1, "REDIS_REPL_ONLINE": 1, "float": 26, @@ -8096,13 +6807,19 @@ "dictGetVal": 2, "estimateObjectIdleTime": 1, "REDIS_MAXMEMORY_VOLATILE_TTL": 1, + "delta": 54, "flushSlavesOutputBuffers": 1, + "__linux__": 3, "linuxOvercommitMemoryValue": 2, "fgets": 1, "atoi": 3, "linuxOvercommitMemoryWarning": 2, "createPidFile": 2, "daemonize": 2, + "fork": 2, + "setsid": 2, + "O_RDWR": 2, + "dup2": 4, "STDIN_FILENO": 1, "STDERR_FILENO": 2, "version": 4, @@ -8135,6 +6852,7 @@ "zmalloc_enable_thread_safeness": 1, "srand": 1, "dictSetHashFunctionSeed": 1, + "options": 62, "*configfile": 1, "configfile": 2, "sdscatrepr": 1, @@ -8145,1893 +6863,20 @@ "aeSetBeforeSleepProc": 1, "aeMain": 1, "aeDeleteEventLoop": 1, - "": 1, - "": 2, - "": 2, - "rfUTF8_IsContinuationbyte": 1, - "e.t.c.": 1, - "rfFReadLine_UTF8": 5, - "FILE*": 64, - "utf8": 36, - "uint32_t*": 34, - "byteLength": 197, - "bufferSize": 6, - "eof": 53, - "bytesN": 98, - "bIndex": 5, - "RF_NEWLINE_CRLF": 1, - "newLineFound": 1, - "*bufferSize": 1, - "RF_OPTION_FGETS_READBYTESN": 5, - "RF_MALLOC": 47, - "tempBuff": 6, - "RF_LF": 10, - "buff": 95, - "RF_SUCCESS": 14, - "RE_FILE_EOF": 22, - "found": 20, - "*eofReached": 14, - "LOG_ERROR": 64, - "RF_HEXEQ_UI": 7, - "rfFgetc_UTF32BE": 3, - "else//": 14, - "undo": 5, - "peek": 5, - "ahead": 5, - "file": 6, - "pointer": 5, - "fseek": 19, - "SEEK_CUR": 19, - "rfFgets_UTF32LE": 2, - "eofReached": 4, - "rfFgetc_UTF32LE": 4, - "rfFgets_UTF16BE": 2, - "rfFgetc_UTF16BE": 4, - "rfFgets_UTF16LE": 2, - "rfFgetc_UTF16LE": 4, - "rfFgets_UTF8": 2, - "rfFgetc_UTF8": 3, - "RF_HEXEQ_C": 9, - "fgetc": 9, - "check": 8, - "RE_FILE_READ": 2, - "cp": 12, - "c2": 13, - "c3": 9, - "c4": 5, - "i_READ_CHECK": 20, - "///": 4, - "success": 4, - "cc": 24, - "we": 10, - "more": 2, - "bytes": 225, - "xC0": 3, - "xC1": 1, - "RE_UTF8_INVALID_SEQUENCE_INVALID_BYTE": 6, - "RE_UTF8_INVALID_SEQUENCE_END": 6, - "rfUTF8_IsContinuationByte": 12, - "RE_UTF8_INVALID_SEQUENCE_CONBYTE": 6, - "decoded": 3, - "codepoint": 47, - "F": 38, - "xE0": 2, - "xF": 5, - "decode": 6, - "xF0": 2, - "RF_HEXGE_C": 1, - "xBF": 2, - "//invalid": 1, - "byte": 6, - "are": 6, - "xFF": 1, - "//if": 1, - "needing": 1, - "than": 5, - "swapE": 21, - "v1": 38, - "v2": 26, - "rfUTILS_Endianess": 24, - "RF_LITTLE_ENDIAN": 23, - "fread": 12, - "endianess": 40, - "needed": 10, - "rfUTILS_SwapEndianUS": 10, - "RF_HEXGE_US": 4, - "xD800": 8, - "RF_HEXLE_US": 4, - "xDFFF": 8, - "RF_HEXL_US": 8, - "RF_HEXG_US": 8, - "xDBFF": 4, - "RE_UTF16_INVALID_SEQUENCE": 20, - "RE_UTF16_NO_SURRPAIR": 2, - "xDC00": 4, - "user": 2, - "wants": 2, - "ff": 10, - "uint16_t*": 11, - "surrogate": 4, - "pair": 4, - "existence": 2, - "RF_BIG_ENDIAN": 10, - "rfUTILS_SwapEndianUI": 11, - "rfFback_UTF32BE": 2, - "i_FSEEK_CHECK": 14, - "rfFback_UTF32LE": 2, - "rfFback_UTF16BE": 2, - "rfFback_UTF16LE": 2, - "rfFback_UTF8": 2, - "depending": 1, - "number": 19, - "read": 1, - "backwards": 1, - "RE_UTF8_INVALID_SEQUENCE": 2, - "REFU_IO_H": 2, - "": 2, - "opening": 2, - "bracket": 4, - "calling": 4, - "C": 14, - "xA": 1, - "RF_CR": 1, - "xD": 1, - "REFU_WIN32_VERSION": 1, - "i_PLUSB_WIN32": 2, - "foff_rft": 2, - "off64_t": 1, - "///Fseek": 1, - "and": 15, - "Ftelll": 1, - "definitions": 1, - "rfFseek": 2, - "i_FILE_": 16, - "i_OFFSET_": 4, - "i_WHENCE_": 4, - "_fseeki64": 1, - "rfFtell": 2, - "_ftelli64": 1, - "fseeko64": 1, - "ftello64": 1, - "i_DECLIMEX_": 121, - "rfFReadLine_UTF16BE": 6, - "rfFReadLine_UTF16LE": 4, - "rfFReadLine_UTF32BE": 1, - "rfFReadLine_UTF32LE": 4, - "rfFgets_UTF32BE": 1, - "RF_IAMHERE_FOR_DOXYGEN": 22, - "rfPopen": 2, - "command": 2, - "i_rfPopen": 2, - "i_CMD_": 2, - "i_MODE_": 2, - "i_rfLMS_WRAP2": 5, - "rfPclose": 1, - "stream": 3, - "///closing": 1, - "#endif//include": 1, - "guards": 2, - "": 1, - "": 2, - "local": 5, - "stack": 6, - "memory": 4, - "RF_OPTION_DEFAULT_ARGUMENTS": 24, - "RF_String*": 222, - "rfString_Create": 4, - "i_rfString_Create": 3, - "READ_VSNPRINTF_ARGS": 5, - "rfUTF8_VerifySequence": 7, - "RF_FAILURE": 24, - "RE_STRING_INIT_FAILURE": 8, - "buffAllocated": 11, - "RF_String": 27, - "i_NVrfString_Create": 3, - "i_rfString_CreateLocal1": 3, - "RF_OPTION_SOURCE_ENCODING": 30, - "RF_UTF8": 8, - "characterLength": 16, - "*codepoints": 2, - "rfLMS_MacroEvalPtr": 2, - "RF_LMS": 6, - "RF_UTF16_LE": 9, - "RF_UTF16_BE": 7, - "codepoints": 44, - "i/2": 2, - "#elif": 14, - "RF_UTF32_LE": 3, - "RF_UTF32_BE": 3, - "UTF16": 4, - "rfUTF16_Decode": 5, - "rfUTF16_Decode_swap": 5, - "RF_UTF16_BE//": 2, - "RF_UTF32_LE//": 2, - "copy": 4, - "UTF32": 4, - "into": 8, - "RF_UTF32_BE//": 2, - "": 2, - "any": 3, - "other": 16, - "UTF": 17, - "8": 15, - "encode": 2, - "them": 3, - "rfUTF8_Encode": 4, - "While": 2, - "attempting": 2, - "create": 2, - "temporary": 4, - "given": 5, - "sequence": 6, - "could": 2, - "not": 6, - "be": 6, - "properly": 2, - "encoded": 2, - "RE_UTF8_ENCODING": 2, - "End": 2, - "Non": 2, - "code=": 2, - "normally": 1, - "since": 5, - "here": 5, - "have": 2, - "validity": 2, - "get": 4, - "Error": 2, - "at": 3, - "String": 11, - "Allocation": 2, - "due": 2, - "invalid": 2, - "rfLMS_Push": 4, - "Memory": 4, - "allocation": 3, - "Local": 2, - "Stack": 2, - "failed": 2, - "Insufficient": 2, - "space": 4, - "Consider": 2, - "compiling": 2, - "library": 3, - "with": 9, - "bigger": 3, - "Quitting": 2, - "proccess": 2, - "RE_LOCALMEMSTACK_INSUFFICIENT": 8, - "i_NVrfString_CreateLocal": 3, - "during": 1, - "rfString_Init": 3, - "i_rfString_Init": 3, - "i_NVrfString_Init": 3, - "rfString_Create_cp": 2, - "rfString_Init_cp": 3, - "RF_HEXLE_UI": 8, - "RF_HEXGE_UI": 6, - "C0": 3, - "ffff": 4, - "xFC0": 4, - "xF000": 2, - "xE": 2, - "F000": 2, - "C0000": 2, - "E": 11, - "RE_UTF8_INVALID_CODE_POINT": 2, - "rfString_Create_i": 2, - "numLen": 8, - "max": 4, - "is": 17, - "most": 3, - "environment": 3, - "so": 4, - "chars": 3, - "will": 3, - "certainly": 3, - "fit": 3, - "it": 12, - "strcpy": 4, - "rfString_Init_i": 2, - "rfString_Create_f": 2, - "rfString_Init_f": 2, - "rfString_Create_UTF16": 2, - "rfString_Init_UTF16": 3, - "utf8ByteLength": 34, - "last": 1, - "utf": 1, - "null": 4, - "termination": 3, - "byteLength*2": 1, - "allocate": 1, - "same": 1, - "as": 4, - "different": 1, - "RE_INPUT": 1, - "ends": 3, - "rfString_Create_UTF32": 2, - "rfString_Init_UTF32": 3, - "codeBuffer": 9, - "xFEFF": 1, - "big": 14, - "endian": 20, - "xFFFE0000": 1, - "little": 7, - "according": 1, - "standard": 1, - "no": 4, - "BOM": 1, - "means": 1, - "rfUTF32_Length": 1, - "i_rfString_Assign": 3, - "dest": 7, - "sourceP": 2, - "source": 8, - "RF_REALLOC": 9, - "rfString_Assign_char": 2, - "<5)>": 1, - "rfString_Create_nc": 3, - "i_rfString_Create_nc": 3, - "bytesWritten": 2, - "i_NVrfString_Create_nc": 3, - "rfString_Init_nc": 4, - "i_rfString_Init_nc": 3, - "i_NVrfString_Init_nc": 3, - "rfString_Destroy": 2, - "rfString_Deinit": 3, - "rfString_ToUTF16": 4, - "charsN": 5, - "rfUTF8_Decode": 2, - "rfUTF16_Encode": 1, - "rfString_ToUTF32": 4, - "rfString_Length": 5, - "RF_STRING_ITERATE_START": 9, - "RF_STRING_ITERATE_END": 9, - "rfString_GetChar": 2, - "thisstr": 210, - "codePoint": 18, - "RF_STRING_INDEX_OUT_OF_BOUNDS": 2, - "rfString_BytePosToCodePoint": 7, - "rfString_BytePosToCharPos": 4, - "thisstrP": 32, - "bytepos": 12, - "before": 4, - "charPos": 8, - "byteI": 7, - "i_rfString_Equal": 3, - "s1P": 2, - "s2P": 2, - "i_rfString_Find": 5, - "sstrP": 6, - "optionsP": 11, - "sstr": 39, - "*optionsP": 8, - "RF_BITFLAG_ON": 5, - "RF_CASE_IGNORE": 2, - "strstr": 2, - "RF_MATCH_WORD": 5, - "exact": 6, - "": 1, - "0x5a": 1, - "0x7a": 1, - "substring": 5, - "search": 1, - "zero": 2, - "equals": 1, - "then": 1, - "okay": 1, - "rfString_Equal": 4, - "RFS_": 8, - "ERANGE": 1, - "RE_STRING_TOFLOAT_UNDERFLOW": 1, - "RE_STRING_TOFLOAT": 1, - "rfString_Copy_OUT": 2, - "srcP": 6, - "rfString_Copy_IN": 2, - "dst": 15, - "rfString_Copy_chars": 2, - "bytePos": 23, - "terminate": 1, - "i_rfString_ScanfAfter": 3, - "afterstrP": 2, - "format": 4, - "afterstr": 5, - "sscanf": 1, - "<=0)>": 1, - "Counts": 1, - "how": 1, - "many": 1, - "times": 1, - "occurs": 1, - "inside": 2, - "i_rfString_Count": 5, - "sstr2": 2, - "move": 12, - "rfString_FindBytePos": 10, - "rfString_Tokenize": 2, - "sep": 3, - "tokensN": 2, - "RF_String**": 2, - "*tokensN": 1, - "rfString_Count": 4, - "lstr": 6, - "lstrP": 1, - "rstr": 24, - "rstrP": 5, - "rfString_After": 4, - "rfString_Beforev": 4, - "parNP": 6, - "i_rfString_Beforev": 16, - "parN": 10, - "*parNP": 2, - "minPos": 17, - "thisPos": 8, - "argList": 8, - "va_arg": 2, - "i_rfString_Before": 5, - "i_rfString_After": 5, - "afterP": 2, - "after": 6, - "rfString_Afterv": 4, - "i_rfString_Afterv": 16, - "minPosLength": 3, - "go": 8, - "i_rfString_Append": 3, - "otherP": 4, - "strncat": 1, - "rfString_Append_i": 2, - "rfString_Append_f": 2, - "i_rfString_Prepend": 3, - "goes": 1, - "i_rfString_Remove": 6, - "numberP": 1, - "*numberP": 1, - "occurences": 5, - "done": 1, - "<=thisstr->": 1, - "i_rfString_KeepOnly": 3, - "keepstrP": 2, - "keepLength": 2, - "charValue": 12, - "*keepChars": 1, - "keepstr": 5, - "exists": 6, - "charBLength": 5, - "keepChars": 4, - "*keepLength": 1, - "rfString_Iterate_Start": 6, - "rfString_Iterate_End": 4, - "": 1, - "does": 1, - "exist": 2, - "back": 1, - "cover": 1, - "that": 9, - "effectively": 1, - "gets": 1, - "deleted": 1, - "rfUTF8_FromCodepoint": 1, - "this": 5, - "kind": 1, - "non": 1, - "clean": 1, - "way": 1, - "macro": 2, - "internally": 1, - "uses": 1, - "byteIndex_": 12, - "variable": 1, - "use": 1, - "determine": 1, - "backs": 1, - "by": 1, - "contiuing": 1, - "make": 3, - "sure": 2, - "position": 1, - "won": 1, - "array": 1, - "rfString_PruneStart": 2, - "nBytePos": 23, - "rfString_PruneEnd": 2, - "RF_STRING_ITERATEB_START": 2, - "RF_STRING_ITERATEB_END": 2, - "rfString_PruneMiddleB": 2, - "pBytePos": 15, - "indexing": 1, - "works": 1, - "pbytePos": 2, - "pth": 2, - "include": 6, - "rfString_PruneMiddleF": 2, - "got": 1, - "all": 2, - "i_rfString_Replace": 6, - "numP": 1, - "*numP": 1, - "RF_StringX": 2, - "just": 1, - "finding": 1, - "foundN": 10, - "bSize": 4, - "bytePositions": 17, - "bSize*sizeof": 1, - "rfStringX_FromString_IN": 1, - "temp.bIndex": 2, - "temp.bytes": 1, - "temp.byteLength": 1, - "rfStringX_Deinit": 1, - "replace": 3, - "removed": 2, - "one": 2, - "orSize": 5, - "nSize": 4, - "number*diff": 1, - "strncpy": 3, - "smaller": 1, - "diff*number": 1, - "remove": 1, - "equal": 1, - "i_rfString_StripStart": 3, - "subP": 7, - "RF_String*sub": 2, - "noMatch": 8, - "*subValues": 2, - "subLength": 6, - "subValues": 8, - "*subLength": 2, - "i_rfString_StripEnd": 3, - "lastBytePos": 4, - "testity": 2, - "i_rfString_Strip": 3, - "res1": 2, - "rfString_StripStart": 3, - "res2": 2, - "rfString_StripEnd": 3, - "rfString_Create_fUTF8": 2, - "rfString_Init_fUTF8": 3, - "unused": 3, - "rfString_Assign_fUTF8": 2, - "FILE*f": 2, - "utf8BufferSize": 4, - "function": 6, - "rfString_Append_fUTF8": 2, - "rfString_Append": 5, - "rfString_Create_fUTF16": 2, - "rfString_Init_fUTF16": 3, - "rfString_Assign_fUTF16": 2, - "rfString_Append_fUTF16": 2, - "char*utf8": 3, - "rfString_Create_fUTF32": 2, - "rfString_Init_fUTF32": 3, - "<0)>": 1, - "Failure": 1, - "initialize": 1, - "reading": 1, - "Little": 1, - "Endian": 1, - "32": 1, - "bytesN=": 1, - "rfString_Assign_fUTF32": 2, - "rfString_Append_fUTF32": 2, - "i_rfString_Fwrite": 5, - "sP": 2, - "encodingP": 1, - "*utf32": 1, - "utf16": 11, - "*encodingP": 1, - "fwrite": 5, - "logging": 5, - "utf32": 10, - "i_WRITE_CHECK": 1, - "RE_FILE_WRITE": 1, - "REFU_USTRING_H": 2, - "": 1, - "RF_MODULE_STRINGS//": 1, - "included": 2, - "module": 3, - "": 1, - "argument": 1, - "wrapping": 1, - "functionality": 1, - "": 1, - "unicode": 2, - "xFF0FFFF": 1, - "rfUTF8_IsContinuationByte2": 1, - "b__": 3, - "0xBF": 1, - "pragma": 1, - "pack": 2, - "push": 1, - "internal": 4, - "author": 1, - "Lefteris": 1, - "09": 1, - "12": 1, - "2010": 1, - "endinternal": 1, - "brief": 1, - "A": 11, - "representation": 2, - "The": 1, - "Refu": 2, - "Unicode": 1, - "has": 2, - "two": 1, - "versions": 1, - "One": 1, - "ref": 1, - "what": 1, - "operations": 1, - "can": 2, - "performed": 1, - "extended": 3, - "Strings": 2, - "Functions": 1, - "convert": 1, - "but": 1, - "always": 2, - "Once": 1, - "been": 1, - "created": 1, - "assumed": 1, - "valid": 1, - "every": 1, - "performs": 1, - "unless": 1, - "otherwise": 1, - "specified": 1, - "All": 1, - "functions": 2, - "which": 1, - "isinherited": 1, - "StringX": 2, - "their": 1, - "description": 1, - "safely": 1, - "specific": 1, - "or": 1, - "needs": 1, - "manipulate": 1, - "Extended": 1, - "To": 1, - "documentation": 1, - "even": 1, - "clearer": 1, - "should": 2, - "marked": 1, - "notinherited": 1, - "cppcode": 1, - "constructor": 1, - "i_StringCHandle": 1, - "@endcpp": 1, - "@endinternal": 1, - "*/": 1, - "#pragma": 1, - "pop": 1, - "i_rfString_CreateLocal": 2, - "__VA_ARGS__": 66, - "RP_SELECT_FUNC_IF_NARGIS": 5, - "i_SELECT_RF_STRING_CREATE": 1, - "i_SELECT_RF_STRING_CREATE1": 1, - "i_SELECT_RF_STRING_CREATE0": 1, - "///Internal": 1, - "creates": 1, - "i_SELECT_RF_STRING_CREATELOCAL": 1, - "i_SELECT_RF_STRING_CREATELOCAL1": 1, - "i_SELECT_RF_STRING_CREATELOCAL0": 1, - "i_SELECT_RF_STRING_INIT": 1, - "i_SELECT_RF_STRING_INIT1": 1, - "i_SELECT_RF_STRING_INIT0": 1, - "code": 6, - "i_SELECT_RF_STRING_CREATE_NC": 1, - "i_SELECT_RF_STRING_CREATE_NC1": 1, - "i_SELECT_RF_STRING_CREATE_NC0": 1, - "i_SELECT_RF_STRING_INIT_NC": 1, - "i_SELECT_RF_STRING_INIT_NC1": 1, - "i_SELECT_RF_STRING_INIT_NC0": 1, - "//@": 1, - "rfString_Assign": 2, - "i_DESTINATION_": 2, - "i_SOURCE_": 2, - "rfString_ToUTF8": 2, - "i_STRING_": 2, - "rfString_ToCstr": 2, - "uint32_t*length": 1, - "string_": 9, - "startCharacterPos_": 4, - "characterUnicodeValue_": 4, - "j_": 6, - "//Two": 1, - "macros": 1, - "accomplish": 1, - "going": 1, - "backwards.": 1, - "This": 1, - "its": 1, - "pair.": 1, - "rfString_IterateB_Start": 1, - "characterPos_": 5, - "b_index_": 6, - "c_index_": 3, - "rfString_IterateB_End": 1, - "i_STRING1_": 2, - "i_STRING2_": 2, - "i_rfLMSX_WRAP2": 4, - "rfString_Find": 3, - "i_THISSTR_": 60, - "i_SEARCHSTR_": 26, - "i_OPTIONS_": 28, - "i_rfLMS_WRAP3": 4, - "i_RFI8_": 54, - "RF_SELECT_FUNC_IF_NARGGT": 10, - "i_NPSELECT_RF_STRING_FIND": 1, - "i_NPSELECT_RF_STRING_FIND1": 1, - "RF_COMPILE_ERROR": 33, - "i_NPSELECT_RF_STRING_FIND0": 1, - "RF_SELECT_FUNC": 10, - "i_SELECT_RF_STRING_FIND": 1, - "i_SELECT_RF_STRING_FIND2": 1, - "i_SELECT_RF_STRING_FIND3": 1, - "i_SELECT_RF_STRING_FIND1": 1, - "i_SELECT_RF_STRING_FIND0": 1, - "rfString_ToInt": 1, - "int32_t*": 1, - "rfString_ToDouble": 1, - "double*": 1, - "rfString_ScanfAfter": 2, - "i_AFTERSTR_": 8, - "i_FORMAT_": 2, - "i_VAR_": 2, - "i_rfLMSX_WRAP4": 11, - "i_NPSELECT_RF_STRING_COUNT": 1, - "i_NPSELECT_RF_STRING_COUNT1": 1, - "i_NPSELECT_RF_STRING_COUNT0": 1, - "i_SELECT_RF_STRING_COUNT": 1, - "i_SELECT_RF_STRING_COUNT2": 1, - "i_rfLMSX_WRAP3": 5, - "i_SELECT_RF_STRING_COUNT3": 1, - "i_SELECT_RF_STRING_COUNT1": 1, - "i_SELECT_RF_STRING_COUNT0": 1, - "rfString_Between": 3, - "i_rfString_Between": 4, - "i_NPSELECT_RF_STRING_BETWEEN": 1, - "i_NPSELECT_RF_STRING_BETWEEN1": 1, - "i_NPSELECT_RF_STRING_BETWEEN0": 1, - "i_SELECT_RF_STRING_BETWEEN": 1, - "i_SELECT_RF_STRING_BETWEEN4": 1, - "i_LEFTSTR_": 6, - "i_RIGHTSTR_": 6, - "i_RESULT_": 12, - "i_rfLMSX_WRAP5": 9, - "i_SELECT_RF_STRING_BETWEEN5": 1, - "i_SELECT_RF_STRING_BETWEEN3": 1, - "i_SELECT_RF_STRING_BETWEEN2": 1, - "i_SELECT_RF_STRING_BETWEEN1": 1, - "i_SELECT_RF_STRING_BETWEEN0": 1, - "i_NPSELECT_RF_STRING_BEFOREV": 1, - "i_NPSELECT_RF_STRING_BEFOREV1": 1, - "RF_SELECT_FUNC_IF_NARGGT2": 2, - "i_LIMSELECT_RF_STRING_BEFOREV": 1, - "i_NPSELECT_RF_STRING_BEFOREV0": 1, - "i_LIMSELECT_RF_STRING_BEFOREV1": 1, - "i_LIMSELECT_RF_STRING_BEFOREV0": 1, - "i_SELECT_RF_STRING_BEFOREV": 1, - "i_SELECT_RF_STRING_BEFOREV5": 1, - "i_ARG1_": 56, - "i_ARG2_": 56, - "i_ARG3_": 56, - "i_ARG4_": 56, - "i_RFUI8_": 28, - "i_SELECT_RF_STRING_BEFOREV6": 1, - "i_rfLMSX_WRAP6": 2, - "i_SELECT_RF_STRING_BEFOREV7": 1, - "i_rfLMSX_WRAP7": 2, - "i_SELECT_RF_STRING_BEFOREV8": 1, - "i_rfLMSX_WRAP8": 2, - "i_SELECT_RF_STRING_BEFOREV9": 1, - "i_rfLMSX_WRAP9": 2, - "i_SELECT_RF_STRING_BEFOREV10": 1, - "i_rfLMSX_WRAP10": 2, - "i_SELECT_RF_STRING_BEFOREV11": 1, - "i_rfLMSX_WRAP11": 2, - "i_SELECT_RF_STRING_BEFOREV12": 1, - "i_rfLMSX_WRAP12": 2, - "i_SELECT_RF_STRING_BEFOREV13": 1, - "i_rfLMSX_WRAP13": 2, - "i_SELECT_RF_STRING_BEFOREV14": 1, - "i_rfLMSX_WRAP14": 2, - "i_SELECT_RF_STRING_BEFOREV15": 1, - "i_rfLMSX_WRAP15": 2, - "i_SELECT_RF_STRING_BEFOREV16": 1, - "i_rfLMSX_WRAP16": 2, - "i_SELECT_RF_STRING_BEFOREV17": 1, - "i_rfLMSX_WRAP17": 2, - "i_SELECT_RF_STRING_BEFOREV18": 1, - "i_rfLMSX_WRAP18": 2, - "rfString_Before": 3, - "i_NPSELECT_RF_STRING_BEFORE": 1, - "i_NPSELECT_RF_STRING_BEFORE1": 1, - "i_NPSELECT_RF_STRING_BEFORE0": 1, - "i_SELECT_RF_STRING_BEFORE": 1, - "i_SELECT_RF_STRING_BEFORE3": 1, - "i_SELECT_RF_STRING_BEFORE4": 1, - "i_SELECT_RF_STRING_BEFORE2": 1, - "i_SELECT_RF_STRING_BEFORE1": 1, - "i_SELECT_RF_STRING_BEFORE0": 1, - "i_NPSELECT_RF_STRING_AFTER": 1, - "i_NPSELECT_RF_STRING_AFTER1": 1, - "i_NPSELECT_RF_STRING_AFTER0": 1, - "i_SELECT_RF_STRING_AFTER": 1, - "i_SELECT_RF_STRING_AFTER3": 1, - "i_OUTSTR_": 6, - "i_SELECT_RF_STRING_AFTER4": 1, - "i_SELECT_RF_STRING_AFTER2": 1, - "i_SELECT_RF_STRING_AFTER1": 1, - "i_SELECT_RF_STRING_AFTER0": 1, - "i_NPSELECT_RF_STRING_AFTERV": 1, - "i_NPSELECT_RF_STRING_AFTERV1": 1, - "i_LIMSELECT_RF_STRING_AFTERV": 1, - "i_NPSELECT_RF_STRING_AFTERV0": 1, - "i_LIMSELECT_RF_STRING_AFTERV1": 1, - "i_LIMSELECT_RF_STRING_AFTERV0": 1, - "i_SELECT_RF_STRING_AFTERV": 1, - "i_SELECT_RF_STRING_AFTERV5": 1, - "i_SELECT_RF_STRING_AFTERV6": 1, - "i_SELECT_RF_STRING_AFTERV7": 1, - "i_SELECT_RF_STRING_AFTERV8": 1, - "i_SELECT_RF_STRING_AFTERV9": 1, - "i_SELECT_RF_STRING_AFTERV10": 1, - "i_SELECT_RF_STRING_AFTERV11": 1, - "i_SELECT_RF_STRING_AFTERV12": 1, - "i_SELECT_RF_STRING_AFTERV13": 1, - "i_SELECT_RF_STRING_AFTERV14": 1, - "i_SELECT_RF_STRING_AFTERV15": 1, - "i_SELECT_RF_STRING_AFTERV16": 1, - "i_SELECT_RF_STRING_AFTERV17": 1, - "i_SELECT_RF_STRING_AFTERV18": 1, - "i_OTHERSTR_": 4, - "rfString_Prepend": 2, - "rfString_Remove": 3, - "i_NPSELECT_RF_STRING_REMOVE": 1, - "i_NPSELECT_RF_STRING_REMOVE1": 1, - "i_NPSELECT_RF_STRING_REMOVE0": 1, - "i_SELECT_RF_STRING_REMOVE": 1, - "i_SELECT_RF_STRING_REMOVE2": 1, - "i_REPSTR_": 16, - "i_RFUI32_": 8, - "i_SELECT_RF_STRING_REMOVE3": 1, - "i_NUMBER_": 12, - "i_SELECT_RF_STRING_REMOVE4": 1, - "i_SELECT_RF_STRING_REMOVE1": 1, - "i_SELECT_RF_STRING_REMOVE0": 1, - "rfString_KeepOnly": 2, - "I_KEEPSTR_": 2, - "rfString_Replace": 3, - "i_NPSELECT_RF_STRING_REPLACE": 1, - "i_NPSELECT_RF_STRING_REPLACE1": 1, - "i_NPSELECT_RF_STRING_REPLACE0": 1, - "i_SELECT_RF_STRING_REPLACE": 1, - "i_SELECT_RF_STRING_REPLACE3": 1, - "i_SELECT_RF_STRING_REPLACE4": 1, - "i_SELECT_RF_STRING_REPLACE5": 1, - "i_SELECT_RF_STRING_REPLACE2": 1, - "i_SELECT_RF_STRING_REPLACE1": 1, - "i_SELECT_RF_STRING_REPLACE0": 1, - "i_SUBSTR_": 6, - "rfString_Strip": 2, - "rfString_Fwrite": 2, - "i_NPSELECT_RF_STRING_FWRITE": 1, - "i_NPSELECT_RF_STRING_FWRITE1": 1, - "i_NPSELECT_RF_STRING_FWRITE0": 1, - "i_SELECT_RF_STRING_FWRITE": 1, - "i_SELECT_RF_STRING_FWRITE3": 1, - "i_STR_": 8, - "i_ENCODING_": 4, - "i_SELECT_RF_STRING_FWRITE2": 1, - "i_SELECT_RF_STRING_FWRITE1": 1, - "i_SELECT_RF_STRING_FWRITE0": 1, - "rfString_Fwrite_fUTF8": 1, - "closing": 1, - "#error": 4, - "Attempted": 1, - "manipulation": 1, - "flag": 1, - "off.": 1, - "Rebuild": 1, - "added": 1, - "you": 1, - "#endif//": 1, - "PY_SSIZE_T_CLEAN": 1, - "Py_PYTHON_H": 1, - "Python": 2, - "headers": 1, - "compile": 1, - "extensions": 1, - "please": 1, - "install": 1, - "development": 1, - "Python.": 1, - "PY_VERSION_HEX": 11, - "Cython": 1, - "requires": 1, - ".": 1, - "offsetof": 2, - "member": 2, - "type*": 1, - "WIN32": 2, - "MS_WINDOWS": 2, - "__stdcall": 2, - "__cdecl": 2, - "__fastcall": 2, - "DL_IMPORT": 2, - "DL_EXPORT": 2, - "PY_LONG_LONG": 5, - "LONG_LONG": 1, - "Py_HUGE_VAL": 2, - "HUGE_VAL": 1, - "PYPY_VERSION": 1, - "CYTHON_COMPILING_IN_PYPY": 3, - "CYTHON_COMPILING_IN_CPYTHON": 6, - "Py_ssize_t": 35, - "PY_SSIZE_T_MAX": 1, - "INT_MAX": 1, - "PY_SSIZE_T_MIN": 1, - "INT_MIN": 1, - "PY_FORMAT_SIZE_T": 1, - "CYTHON_FORMAT_SSIZE_T": 2, - "PyInt_FromSsize_t": 6, - "PyInt_FromLong": 3, - "PyInt_AsSsize_t": 3, - "__Pyx_PyInt_AsInt": 2, - "PyNumber_Index": 1, - "PyNumber_Check": 2, - "PyFloat_Check": 2, - "PyNumber_Int": 1, - "PyErr_Format": 4, - "PyExc_TypeError": 4, - "Py_TYPE": 7, - "tp_name": 4, - "PyObject*": 24, - "__Pyx_PyIndex_Check": 3, - "PyComplex_Check": 1, - "PyIndex_Check": 2, - "PyErr_WarnEx": 1, - "category": 2, - "stacklevel": 1, - "PyErr_Warn": 1, - "__PYX_BUILD_PY_SSIZE_T": 2, - "Py_REFCNT": 1, - "ob_refcnt": 1, - "ob_type": 7, - "Py_SIZE": 1, - "PyVarObject*": 1, - "ob_size": 1, - "PyVarObject_HEAD_INIT": 1, - "PyObject_HEAD_INIT": 1, - "PyType_Modified": 1, - "PyObject": 276, - "itemsize": 1, - "readonly": 1, - "ndim": 2, - "*shape": 1, - "*strides": 1, - "*suboffsets": 1, - "*internal": 1, - "Py_buffer": 6, - "PyBUF_SIMPLE": 1, - "PyBUF_WRITABLE": 3, - "PyBUF_FORMAT": 3, - "PyBUF_ND": 2, - "PyBUF_STRIDES": 6, - "PyBUF_C_CONTIGUOUS": 1, - "PyBUF_F_CONTIGUOUS": 1, - "PyBUF_ANY_CONTIGUOUS": 1, - "PyBUF_INDIRECT": 2, - "PyBUF_RECORDS": 1, - "PyBUF_FULL": 1, - "PY_MAJOR_VERSION": 13, - "__Pyx_BUILTIN_MODULE_NAME": 2, - "__Pyx_PyCode_New": 2, - "l": 7, - "fv": 4, - "cell": 4, - "fline": 4, - "lnos": 4, - "PyCode_New": 2, - "PY_MINOR_VERSION": 1, - "PyUnicode_FromString": 2, - "PyUnicode_Decode": 1, - "Py_TPFLAGS_CHECKTYPES": 1, - "Py_TPFLAGS_HAVE_INDEX": 1, - "Py_TPFLAGS_HAVE_NEWBUFFER": 1, - "PyUnicode_KIND": 1, - "CYTHON_PEP393_ENABLED": 2, - "__Pyx_PyUnicode_READY": 2, - "op": 8, - "PyUnicode_IS_READY": 1, - "_PyUnicode_Ready": 1, - "__Pyx_PyUnicode_GET_LENGTH": 2, - "PyUnicode_GET_LENGTH": 1, - "__Pyx_PyUnicode_READ_CHAR": 2, - "PyUnicode_READ_CHAR": 1, - "__Pyx_PyUnicode_READ": 2, - "PyUnicode_READ": 1, - "PyUnicode_GET_SIZE": 1, - "Py_UCS4": 2, - "PyUnicode_AS_UNICODE": 1, - "Py_UNICODE*": 1, - "PyBaseString_Type": 1, - "PyUnicode_Type": 2, - "PyStringObject": 2, - "PyUnicodeObject": 1, - "PyString_Type": 2, - "PyString_Check": 2, - "PyUnicode_Check": 1, - "PyString_CheckExact": 2, - "PyUnicode_CheckExact": 1, - "PyBytesObject": 1, - "PyBytes_Type": 1, - "PyBytes_Check": 1, - "PyBytes_CheckExact": 1, - "PyBytes_FromString": 2, - "PyString_FromString": 2, - "PyBytes_FromStringAndSize": 1, - "PyString_FromStringAndSize": 1, - "PyBytes_FromFormat": 1, - "PyString_FromFormat": 1, - "PyBytes_DecodeEscape": 1, - "PyString_DecodeEscape": 1, - "PyBytes_AsString": 2, - "PyString_AsString": 1, - "PyBytes_AsStringAndSize": 1, - "PyString_AsStringAndSize": 1, - "PyBytes_Size": 1, - "PyString_Size": 1, - "PyBytes_AS_STRING": 1, - "PyString_AS_STRING": 1, - "PyBytes_GET_SIZE": 1, - "PyString_GET_SIZE": 1, - "PyBytes_Repr": 1, - "PyString_Repr": 1, - "PyBytes_Concat": 1, - "PyString_Concat": 1, - "PyBytes_ConcatAndDel": 1, - "PyString_ConcatAndDel": 1, - "PySet_Check": 1, - "PyObject_TypeCheck": 3, - "PySet_Type": 2, - "PyFrozenSet_Check": 1, - "PyFrozenSet_Type": 1, - "PySet_CheckExact": 2, - "__Pyx_TypeCheck": 1, - "PyTypeObject": 25, - "PyIntObject": 1, - "PyLongObject": 2, - "PyInt_Type": 1, - "PyLong_Type": 1, - "PyInt_Check": 1, - "PyLong_Check": 1, - "PyInt_CheckExact": 1, - "PyLong_CheckExact": 1, - "PyInt_FromString": 1, - "PyLong_FromString": 1, - "PyInt_FromUnicode": 1, - "PyLong_FromUnicode": 1, - "PyLong_FromLong": 1, - "PyInt_FromSize_t": 1, - "PyLong_FromSize_t": 1, - "PyLong_FromSsize_t": 1, - "PyInt_AsLong": 2, - "PyLong_AsLong": 1, - "PyInt_AS_LONG": 1, - "PyLong_AS_LONG": 1, - "PyLong_AsSsize_t": 1, - "PyInt_AsUnsignedLongMask": 1, - "PyLong_AsUnsignedLongMask": 1, - "PyInt_AsUnsignedLongLongMask": 1, - "PyLong_AsUnsignedLongLongMask": 1, - "PyBoolObject": 1, - "Py_hash_t": 1, - "__Pyx_PyInt_FromHash_t": 2, - "__Pyx_PyInt_AsHash_t": 2, - "__Pyx_PySequence_GetSlice": 2, - "PySequence_GetSlice": 2, - "__Pyx_PySequence_SetSlice": 2, - "PySequence_SetSlice": 2, - "__Pyx_PySequence_DelSlice": 2, - "PySequence_DelSlice": 2, - "PyErr_SetString": 3, - "PyExc_SystemError": 3, - "tp_as_mapping": 3, - "PyMethod_New": 2, - "func": 3, - "klass": 1, - "PyInstanceMethod_New": 1, - "__Pyx_GetAttrString": 2, - "PyObject_GetAttrString": 2, - "__Pyx_SetAttrString": 2, - "PyObject_SetAttrString": 2, - "__Pyx_DelAttrString": 2, - "PyObject_DelAttrString": 2, - "__Pyx_NAMESTR": 2, - "__Pyx_DOCSTR": 2, - "__Pyx_PyNumber_Divide": 2, - "y": 14, - "PyNumber_TrueDivide": 1, - "__Pyx_PyNumber_InPlaceDivide": 2, - "PyNumber_InPlaceTrueDivide": 1, - "PyNumber_Divide": 1, - "PyNumber_InPlaceDivide": 1, - "__PYX_EXTERN_C": 3, - "_USE_MATH_DEFINES": 1, - "__PYX_HAVE__sklearn__linear_model__sgd_fast": 1, - "__PYX_HAVE_API__sklearn__linear_model__sgd_fast": 1, - "_OPENMP": 1, - "": 1, - "PYREX_WITHOUT_ASSERTIONS": 1, - "CYTHON_WITHOUT_ASSERTIONS": 1, - "CYTHON_INLINE": 65, - "__inline__": 1, - "__inline": 1, - "__STDC_VERSION__": 2, - "L": 1, - "CYTHON_UNUSED": 14, - "**p": 1, - "is_unicode": 1, - "is_str": 1, - "intern": 1, - "__Pyx_StringTabEntry": 2, - "__Pyx_PyBytes_FromUString": 1, - "__Pyx_PyBytes_AsUString": 1, - "__Pyx_Owned_Py_None": 1, - "Py_INCREF": 10, - "Py_None": 8, - "__Pyx_PyBool_FromLong": 1, - "Py_True": 2, - "Py_False": 2, - "__Pyx_PyObject_IsTrue": 1, - "__Pyx_PyNumber_Int": 1, - "__Pyx_PyIndex_AsSsize_t": 1, - "__Pyx_PyInt_FromSize_t": 1, - "__Pyx_PyInt_AsSize_t": 1, - "__pyx_PyFloat_AsDouble": 12, - "PyFloat_CheckExact": 1, - "PyFloat_AS_DOUBLE": 1, - "PyFloat_AsDouble": 2, - "__pyx_PyFloat_AsFloat": 1, - "__builtin_expect": 2, - "*__pyx_m": 1, - "*__pyx_b": 1, - "*__pyx_empty_tuple": 1, - "*__pyx_empty_bytes": 1, - "__pyx_lineno": 58, - "__pyx_clineno": 58, - "__pyx_cfilenm": 1, - "__FILE__": 4, - "*__pyx_filename": 7, - "CYTHON_CCOMPLEX": 12, - "_Complex_I": 3, - "": 1, - "": 1, - "__sun__": 1, - "fj": 1, - "*__pyx_f": 1, - "IS_UNSIGNED": 1, - "__Pyx_StructField_": 2, - "__PYX_BUF_FLAGS_PACKED_STRUCT": 1, - "__Pyx_StructField_*": 1, - "fields": 1, - "arraysize": 1, - "typegroup": 1, - "is_unsigned": 1, - "__Pyx_TypeInfo": 2, - "__Pyx_TypeInfo*": 2, - "offset": 1, - "__Pyx_StructField": 2, - "__Pyx_StructField*": 1, - "field": 1, - "parent_offset": 1, - "__Pyx_BufFmt_StackElem": 1, - "root": 1, - "__Pyx_BufFmt_StackElem*": 2, - "fmt_offset": 1, - "new_count": 1, - "enc_count": 1, - "struct_alignment": 1, - "is_complex": 1, - "enc_type": 1, - "new_packmode": 1, - "enc_packmode": 1, - "is_valid_array": 1, - "__Pyx_BufFmt_Context": 1, - "npy_int8": 1, - "__pyx_t_5numpy_int8_t": 1, - "npy_int16": 1, - "__pyx_t_5numpy_int16_t": 1, - "npy_int32": 1, - "__pyx_t_5numpy_int32_t": 4, - "npy_int64": 1, - "__pyx_t_5numpy_int64_t": 1, - "npy_uint8": 1, - "__pyx_t_5numpy_uint8_t": 1, - "npy_uint16": 1, - "__pyx_t_5numpy_uint16_t": 1, - "npy_uint32": 1, - "__pyx_t_5numpy_uint32_t": 1, - "npy_uint64": 1, - "__pyx_t_5numpy_uint64_t": 1, - "npy_float32": 1, - "__pyx_t_5numpy_float32_t": 1, - "npy_float64": 1, - "__pyx_t_5numpy_float64_t": 4, - "npy_long": 1, - "__pyx_t_5numpy_int_t": 1, - "npy_longlong": 2, - "__pyx_t_5numpy_long_t": 1, - "__pyx_t_5numpy_longlong_t": 1, - "npy_ulong": 1, - "__pyx_t_5numpy_uint_t": 1, - "npy_ulonglong": 2, - "__pyx_t_5numpy_ulong_t": 1, - "__pyx_t_5numpy_ulonglong_t": 1, - "npy_intp": 1, - "__pyx_t_5numpy_intp_t": 1, - "npy_uintp": 1, - "__pyx_t_5numpy_uintp_t": 1, - "npy_double": 2, - "__pyx_t_5numpy_float_t": 1, - "__pyx_t_5numpy_double_t": 1, - "npy_longdouble": 1, - "__pyx_t_5numpy_longdouble_t": 1, - "__pyx_t_7sklearn_5utils_13weight_vector_DOUBLE": 2, - "__pyx_t_7sklearn_5utils_13weight_vector_INTEGER": 1, - "__pyx_t_7sklearn_5utils_11seq_dataset_DOUBLE": 7, - "__pyx_t_7sklearn_5utils_11seq_dataset_INTEGER": 7, - "__pyx_t_7sklearn_12linear_model_8sgd_fast_DOUBLE": 4, - "__pyx_t_7sklearn_12linear_model_8sgd_fast_INTEGER": 3, - "std": 8, - "complex": 2, - "__pyx_t_float_complex": 27, - "_Complex": 2, - "real": 2, - "imag": 2, - "__pyx_t_double_complex": 27, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_LossFunction": 15, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Regression": 11, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Huber": 6, - "__pyx_obj_7sklearn_5utils_11seq_dataset_SequentialDataset": 5, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 6, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Classification": 7, - "__pyx_obj_7sklearn_5utils_11seq_dataset_CSRDataset": 2, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Log": 5, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Hinge": 6, - "__pyx_obj_7sklearn_5utils_11seq_dataset_ArrayDataset": 2, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 6, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_ModifiedHuber": 5, - "__pyx_obj_7sklearn_5utils_13weight_vector_WeightVector": 3, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredLoss": 5, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredEpsilonInsensitive": 6, - "npy_cfloat": 1, - "__pyx_t_5numpy_cfloat_t": 1, - "npy_cdouble": 2, - "__pyx_t_5numpy_cdouble_t": 1, - "npy_clongdouble": 1, - "__pyx_t_5numpy_clongdouble_t": 1, - "__pyx_t_5numpy_complex_t": 1, - "PyObject_HEAD": 3, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_LossFunction": 5, - "*__pyx_vtab": 3, - "__pyx_base": 18, - "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_SequentialDataset": 4, - "n_samples": 1, - "epsilon": 2, - "current_index": 2, - "stride": 2, - "*X_data_ptr": 2, - "*X_indptr_ptr": 1, - "*X_indices_ptr": 1, - "*Y_data_ptr": 2, - "PyArrayObject": 8, - "*feature_indices": 2, - "*feature_indices_ptr": 2, - "*index": 2, - "*index_data_ptr": 2, - "*sample_weight_data": 2, - "threshold": 2, - "n_features": 2, - "__pyx_vtabstruct_7sklearn_5utils_13weight_vector_WeightVector": 3, - "*w_data_ptr": 1, - "wscale": 1, - "sq_norm": 1, - "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_SequentialDataset": 1, - "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_ArrayDataset": 2, - "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_ArrayDataset": 1, - "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_CSRDataset": 2, - "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_CSRDataset": 1, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 2, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Regression": 3, - "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 1, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 2, - "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 1, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Huber": 2, - "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_Huber": 1, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Hinge": 2, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Classification": 1, - "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_Hinge": 1, - "*__pyx_vtabptr_7sklearn_5utils_13weight_vector_WeightVector": 1, - "CYTHON_REFNANNY": 3, - "__Pyx_RefNannyAPIStruct": 3, - "*__Pyx_RefNanny": 1, - "*__Pyx_RefNannyImportAPI": 1, - "*modname": 1, - "__Pyx_RefNannyDeclarations": 11, - "*__pyx_refnanny": 1, - "WITH_THREAD": 1, - "__Pyx_RefNannySetupContext": 12, - "acquire_gil": 4, - "PyGILState_STATE": 1, - "__pyx_gilstate_save": 2, - "PyGILState_Ensure": 1, - "__pyx_refnanny": 8, - "__Pyx_RefNanny": 8, - "SetupContext": 3, - "PyGILState_Release": 1, - "__Pyx_RefNannyFinishContext": 14, - "FinishContext": 1, - "__Pyx_INCREF": 6, - "INCREF": 1, - "__Pyx_DECREF": 20, - "DECREF": 1, - "__Pyx_GOTREF": 24, - "GOTREF": 1, - "__Pyx_GIVEREF": 9, - "GIVEREF": 1, - "__Pyx_XINCREF": 2, - "__Pyx_XDECREF": 20, - "__Pyx_XGOTREF": 2, - "__Pyx_XGIVEREF": 5, - "Py_DECREF": 2, - "Py_XINCREF": 1, - "Py_XDECREF": 1, - "__Pyx_CLEAR": 1, - "__Pyx_XCLEAR": 1, - "*__Pyx_GetName": 1, - "__Pyx_ErrRestore": 1, - "*type": 4, - "*tb": 2, - "__Pyx_ErrFetch": 1, - "**type": 1, - "**value": 1, - "**tb": 1, - "__Pyx_Raise": 4, - "*cause": 1, - "__Pyx_RaiseArgtupleInvalid": 7, - "func_name": 2, - "num_min": 1, - "num_max": 1, - "num_found": 1, - "__Pyx_RaiseDoubleKeywordsError": 1, - "kw_name": 1, - "__Pyx_ParseOptionalKeywords": 4, - "*kwds": 1, - "**argnames": 1, - "*kwds2": 1, - "*values": 1, - "num_pos_args": 1, - "function_name": 1, - "__Pyx_ArgTypeTest": 1, - "none_allowed": 1, - "__Pyx_GetBufferAndValidate": 1, - "Py_buffer*": 2, - "dtype": 1, - "nd": 1, - "cast": 1, - "__Pyx_SafeReleaseBuffer": 1, - "__Pyx_TypeTest": 1, - "__Pyx_RaiseBufferFallbackError": 1, - "*__Pyx_GetItemInt_Generic": 1, - "*r": 7, - "PyObject_GetItem": 1, - "__Pyx_GetItemInt_List": 1, - "to_py_func": 6, - "__Pyx_GetItemInt_List_Fast": 1, - "__Pyx_GetItemInt_Generic": 6, - "*__Pyx_GetItemInt_List_Fast": 1, - "PyList_GET_SIZE": 5, - "PyList_GET_ITEM": 3, - "PySequence_GetItem": 3, - "__Pyx_GetItemInt_Tuple": 1, - "__Pyx_GetItemInt_Tuple_Fast": 1, - "*__Pyx_GetItemInt_Tuple_Fast": 1, - "PyTuple_GET_SIZE": 14, - "PyTuple_GET_ITEM": 15, - "__Pyx_GetItemInt": 1, - "__Pyx_GetItemInt_Fast": 2, - "PyList_CheckExact": 1, - "PyTuple_CheckExact": 1, - "PySequenceMethods": 1, - "*m": 1, - "tp_as_sequence": 1, - "sq_item": 2, - "sq_length": 2, - "PySequence_Check": 1, - "__Pyx_RaiseTooManyValuesError": 1, - "expected": 2, - "__Pyx_RaiseNeedMoreValuesError": 1, - "__Pyx_RaiseNoneNotIterableError": 1, - "__Pyx_IterFinish": 1, - "__Pyx_IternextUnpackEndCheck": 1, - "*retval": 1, - "shape": 1, - "strides": 1, - "suboffsets": 1, - "__Pyx_Buf_DimInfo": 2, - "pybuffer": 1, - "__Pyx_Buffer": 2, - "*rcbuffer": 1, - "diminfo": 1, - "__Pyx_LocalBuf_ND": 1, - "__Pyx_GetBuffer": 2, - "*view": 2, - "__Pyx_ReleaseBuffer": 2, - "PyObject_GetBuffer": 1, - "PyBuffer_Release": 1, - "__Pyx_zeros": 1, - "__Pyx_minusones": 1, - "*__Pyx_Import": 1, - "*from_list": 1, - "__Pyx_RaiseImportError": 1, - "__Pyx_Print": 1, - "__pyx_print": 1, - "__pyx_print_kwargs": 1, - "__Pyx_PrintOne": 1, - "__Pyx_CREAL": 4, - ".real": 3, - "__Pyx_CIMAG": 4, - ".imag": 3, - "__real__": 1, - "__imag__": 1, - "__Pyx_SET_CREAL": 2, - "__Pyx_SET_CIMAG": 2, - "__pyx_t_float_complex_from_parts": 1, - "__Pyx_c_eqf": 2, - "__Pyx_c_sumf": 2, - "__Pyx_c_difff": 2, - "__Pyx_c_prodf": 2, - "__Pyx_c_quotf": 2, - "__Pyx_c_negf": 2, - "__Pyx_c_is_zerof": 3, - "__Pyx_c_conjf": 3, - "conj": 3, - "__Pyx_c_absf": 3, - "abs": 2, - "__Pyx_c_powf": 3, - "pow": 2, - "conjf": 1, - "cabsf": 1, - "cpowf": 1, - "__pyx_t_double_complex_from_parts": 1, - "__Pyx_c_eq": 2, - "__Pyx_c_sum": 2, - "__Pyx_c_diff": 2, - "__Pyx_c_prod": 2, - "__Pyx_c_quot": 2, - "__Pyx_c_neg": 2, - "__Pyx_c_is_zero": 3, - "__Pyx_c_conj": 3, - "__Pyx_c_abs": 3, - "__Pyx_c_pow": 3, - "cabs": 1, - "cpow": 1, - "__Pyx_PyInt_AsUnsignedChar": 1, - "__Pyx_PyInt_AsUnsignedShort": 1, - "__Pyx_PyInt_AsUnsignedInt": 1, - "__Pyx_PyInt_AsChar": 1, - "__Pyx_PyInt_AsShort": 1, - "signed": 5, - "__Pyx_PyInt_AsSignedChar": 1, - "__Pyx_PyInt_AsSignedShort": 1, - "__Pyx_PyInt_AsSignedInt": 1, - "__Pyx_PyInt_AsLongDouble": 1, - "__Pyx_PyInt_AsUnsignedLong": 1, - "__Pyx_PyInt_AsUnsignedLongLong": 1, - "__Pyx_PyInt_AsLong": 1, - "__Pyx_PyInt_AsLongLong": 1, - "__Pyx_PyInt_AsSignedLong": 1, - "__Pyx_PyInt_AsSignedLongLong": 1, - "__Pyx_WriteUnraisable": 4, - "clineno": 1, - "lineno": 1, - "*filename": 2, - "__Pyx_check_binary_version": 1, - "__Pyx_SetVtable": 1, - "*vtable": 1, - "__Pyx_PyIdentifier_FromString": 3, - "*__Pyx_ImportModule": 1, - "*__Pyx_ImportType": 1, - "*module_name": 1, - "*class_name": 1, - "__Pyx_GetVtable": 1, - "code_line": 4, - "PyCodeObject*": 2, - "code_object": 2, - "__Pyx_CodeObjectCacheEntry": 1, - "__Pyx_CodeObjectCache": 2, - "max_count": 1, - "__Pyx_CodeObjectCacheEntry*": 2, - "entries": 2, - "__pyx_code_cache": 1, - "__pyx_bisect_code_objects": 1, - "PyCodeObject": 1, - "*__pyx_find_code_object": 1, - "__pyx_insert_code_object": 1, - "__Pyx_AddTraceback": 7, - "*funcname": 1, - "c_line": 1, - "py_line": 1, - "__Pyx_InitStrings": 1, - "*__pyx_ptype_7cpython_4type_type": 1, - "*__pyx_ptype_5numpy_dtype": 1, - "*__pyx_ptype_5numpy_flatiter": 1, - "*__pyx_ptype_5numpy_broadcast": 1, - "*__pyx_ptype_5numpy_ndarray": 1, - "*__pyx_ptype_5numpy_ufunc": 1, - "*__pyx_f_5numpy__util_dtypestring": 1, - "PyArray_Descr": 1, - "*__pyx_ptype_7sklearn_5utils_13weight_vector_WeightVector": 1, - "*__pyx_ptype_7sklearn_5utils_11seq_dataset_SequentialDataset": 1, - "*__pyx_ptype_7sklearn_5utils_11seq_dataset_ArrayDataset": 1, - "*__pyx_ptype_7sklearn_5utils_11seq_dataset_CSRDataset": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_LossFunction": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Regression": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Classification": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_ModifiedHuber": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Hinge": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Log": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredLoss": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Huber": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredEpsilonInsensitive": 1, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_max": 1, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_min": 1, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_sqnorm": 1, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_l1penalty": 1, - "__Pyx_TypeInfo_nn___pyx_t_7sklearn_12linear_model_8sgd_fast_DOUBLE": 1, - "__Pyx_MODULE_NAME": 1, - "__pyx_module_is_main_sklearn__linear_model__sgd_fast": 1, - "*__pyx_builtin_NotImplementedError": 1, - "*__pyx_builtin_range": 1, - "*__pyx_builtin_ValueError": 1, - "*__pyx_builtin_RuntimeError": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 2, - "*__pyx_v_self": 52, - "__pyx_v_p": 46, - "__pyx_v_y": 46, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 2, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 2, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_2dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_14Classification_loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_14Classification_2dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_2dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_4__reduce__": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge___init__": 1, - "__pyx_v_threshold": 2, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_2loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_4dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_6__reduce__": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge___init__": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_2loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_4dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_6__reduce__": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_2dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_4__reduce__": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_2dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_4__reduce__": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber___init__": 1, - "__pyx_v_c": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_2loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_4dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_6__reduce__": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive___init__": 1, - "__pyx_v_epsilon": 2, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_2loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_4dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_6__reduce__": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive___init__": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_2loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_4dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_6__reduce__": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_plain_sgd": 1, - "*__pyx_self": 1, - "*__pyx_v_weights": 1, - "__pyx_v_intercept": 1, - "*__pyx_v_loss": 1, - "__pyx_v_penalty_type": 1, - "__pyx_v_alpha": 1, - "__pyx_v_C": 1, - "__pyx_v_rho": 1, - "*__pyx_v_dataset": 1, - "__pyx_v_n_iter": 1, - "__pyx_v_fit_intercept": 1, - "__pyx_v_verbose": 1, - "__pyx_v_shuffle": 1, - "*__pyx_v_seed": 1, - "__pyx_v_weight_pos": 1, - "__pyx_v_weight_neg": 1, - "__pyx_v_learning_rate": 1, - "__pyx_v_eta0": 1, - "__pyx_v_power_t": 1, - "__pyx_v_t": 1, - "__pyx_v_intercept_decay": 1, - "__pyx_pf_5numpy_7ndarray___getbuffer__": 1, - "*__pyx_v_info": 2, - "__pyx_v_flags": 1, - "__pyx_pf_5numpy_7ndarray_2__releasebuffer__": 1, - "__pyx_k_1": 1, - "__pyx_k_2": 1, - "__pyx_k_3": 1, - "__pyx_k_4": 1, - "__pyx_k_6": 1, - "__pyx_k_8": 1, - "__pyx_k_10": 1, - "__pyx_k_12": 1, - "__pyx_k_13": 1, - "__pyx_k_16": 1, - "__pyx_k_20": 1, - "__pyx_k_21": 1, - "__pyx_k__B": 1, - "__pyx_k__C": 1, - "__pyx_k__H": 1, - "__pyx_k__I": 1, - "__pyx_k__L": 1, - "__pyx_k__O": 1, - "__pyx_k__Q": 1, - "__pyx_k__b": 1, - "__pyx_k__c": 1, - "__pyx_k__d": 1, - "__pyx_k__f": 1, - "__pyx_k__g": 1, - "__pyx_k__h": 1, - "__pyx_k__i": 1, - "__pyx_k__l": 1, - "__pyx_k__p": 1, - "__pyx_k__q": 1, - "__pyx_k__t": 1, - "__pyx_k__u": 1, - "__pyx_k__w": 1, - "__pyx_k__y": 1, - "__pyx_k__Zd": 1, - "__pyx_k__Zf": 1, - "__pyx_k__Zg": 1, - "__pyx_k__np": 1, - "__pyx_k__any": 1, - "__pyx_k__eta": 1, - "__pyx_k__rho": 1, - "__pyx_k__sys": 1, - "__pyx_k__eta0": 1, - "__pyx_k__loss": 1, - "__pyx_k__seed": 1, - "__pyx_k__time": 1, - "__pyx_k__xnnz": 1, - "__pyx_k__alpha": 1, - "__pyx_k__count": 1, - "__pyx_k__dloss": 1, - "__pyx_k__dtype": 1, - "__pyx_k__epoch": 1, - "__pyx_k__isinf": 1, - "__pyx_k__isnan": 1, - "__pyx_k__numpy": 1, - "__pyx_k__order": 1, - "__pyx_k__range": 1, - "__pyx_k__shape": 1, - "__pyx_k__zeros": 1, - "__pyx_k__n_iter": 1, - "__pyx_k__update": 1, - "__pyx_k__dataset": 1, - "__pyx_k__epsilon": 1, - "__pyx_k__float64": 1, - "__pyx_k__nonzero": 1, - "__pyx_k__power_t": 1, - "__pyx_k__shuffle": 1, - "__pyx_k__sumloss": 1, - "__pyx_k__t_start": 1, - "__pyx_k__verbose": 1, - "__pyx_k__weights": 1, - "__pyx_k____main__": 1, - "__pyx_k____test__": 1, - "__pyx_k__is_hinge": 1, - "__pyx_k__intercept": 1, - "__pyx_k__n_samples": 1, - "__pyx_k__plain_sgd": 1, - "__pyx_k__threshold": 1, - "__pyx_k__x_ind_ptr": 1, - "__pyx_k__ValueError": 1, - "__pyx_k__n_features": 1, - "__pyx_k__q_data_ptr": 1, - "__pyx_k__weight_neg": 1, - "__pyx_k__weight_pos": 1, - "__pyx_k__x_data_ptr": 1, - "__pyx_k__RuntimeError": 1, - "__pyx_k__class_weight": 1, - "__pyx_k__penalty_type": 1, - "__pyx_k__fit_intercept": 1, - "__pyx_k__learning_rate": 1, - "__pyx_k__sample_weight": 1, - "__pyx_k__intercept_decay": 1, - "__pyx_k__NotImplementedError": 1, - "*__pyx_kp_s_1": 1, - "*__pyx_kp_u_10": 1, - "*__pyx_kp_u_12": 1, - "*__pyx_kp_u_13": 1, - "*__pyx_kp_u_16": 1, - "*__pyx_kp_s_2": 1, - "*__pyx_kp_s_20": 1, - "*__pyx_n_s_21": 1, - "*__pyx_kp_s_3": 1, - "*__pyx_kp_s_4": 1, - "*__pyx_kp_u_6": 1, - "*__pyx_kp_u_8": 1, - "*__pyx_n_s__C": 1, - "*__pyx_n_s__NotImplementedError": 1, - "*__pyx_n_s__RuntimeError": 1, - "*__pyx_n_s__ValueError": 1, - "*__pyx_n_s____main__": 1, - "*__pyx_n_s____test__": 1, - "*__pyx_n_s__alpha": 1, - "*__pyx_n_s__any": 1, - "*__pyx_n_s__c": 1, - "*__pyx_n_s__class_weight": 1, - "*__pyx_n_s__count": 1, - "*__pyx_n_s__dataset": 1, - "*__pyx_n_s__dloss": 1, - "*__pyx_n_s__dtype": 1, - "*__pyx_n_s__epoch": 1, - "*__pyx_n_s__epsilon": 1, - "*__pyx_n_s__eta": 1, - "*__pyx_n_s__eta0": 1, - "*__pyx_n_s__fit_intercept": 1, - "*__pyx_n_s__float64": 1, - "*__pyx_n_s__i": 1, - "*__pyx_n_s__intercept": 1, - "*__pyx_n_s__intercept_decay": 1, - "*__pyx_n_s__is_hinge": 1, - "*__pyx_n_s__isinf": 1, - "*__pyx_n_s__isnan": 1, - "*__pyx_n_s__learning_rate": 1, - "*__pyx_n_s__loss": 1, - "*__pyx_n_s__n_features": 1, - "*__pyx_n_s__n_iter": 1, - "*__pyx_n_s__n_samples": 1, - "*__pyx_n_s__nonzero": 1, - "*__pyx_n_s__np": 1, - "*__pyx_n_s__numpy": 1, - "*__pyx_n_s__order": 1, - "*__pyx_n_s__p": 1, - "*__pyx_n_s__penalty_type": 1, - "*__pyx_n_s__plain_sgd": 1, - "*__pyx_n_s__power_t": 1, - "*__pyx_n_s__q": 1, - "*__pyx_n_s__q_data_ptr": 1, - "*__pyx_n_s__range": 1, - "*__pyx_n_s__rho": 1, - "*__pyx_n_s__sample_weight": 1, - "*__pyx_n_s__seed": 1, - "*__pyx_n_s__shape": 1, - "*__pyx_n_s__shuffle": 1, - "*__pyx_n_s__sumloss": 1, - "*__pyx_n_s__sys": 1, - "*__pyx_n_s__t": 1, - "*__pyx_n_s__t_start": 1, - "*__pyx_n_s__threshold": 1, - "*__pyx_n_s__time": 1, - "*__pyx_n_s__u": 1, - "*__pyx_n_s__update": 1, - "*__pyx_n_s__verbose": 1, - "*__pyx_n_s__w": 1, - "*__pyx_n_s__weight_neg": 1, - "*__pyx_n_s__weight_pos": 1, - "*__pyx_n_s__weights": 1, - "*__pyx_n_s__x_data_ptr": 1, - "*__pyx_n_s__x_ind_ptr": 1, - "*__pyx_n_s__xnnz": 1, - "*__pyx_n_s__y": 1, - "*__pyx_n_s__zeros": 1, - "*__pyx_int_15": 1, - "*__pyx_k_tuple_5": 1, - "*__pyx_k_tuple_7": 1, - "*__pyx_k_tuple_9": 1, - "*__pyx_k_tuple_11": 1, - "*__pyx_k_tuple_14": 1, - "*__pyx_k_tuple_15": 1, - "*__pyx_k_tuple_17": 1, - "*__pyx_k_tuple_18": 1, - "*__pyx_k_codeobj_19": 1, - "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_1loss": 3, - "*__pyx_args": 9, - "*__pyx_kwds": 9, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, - "__pyx_skip_dispatch": 6, - "__pyx_r": 39, - "*__pyx_t_1": 6, - "*__pyx_t_2": 3, - "*__pyx_t_3": 3, - "*__pyx_t_4": 3, - "__pyx_t_5": 12, - "__pyx_v_self": 15, - "tp_dictoffset": 3, - "__pyx_t_1": 69, - "PyObject_GetAttr": 3, - "__pyx_n_s__loss": 2, - "__pyx_filename": 51, - "__pyx_f": 42, - "__pyx_L1_error": 33, - "PyCFunction_Check": 3, - "PyCFunction_GET_FUNCTION": 3, - "PyCFunction": 3, - "__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_1loss": 1, - "__pyx_t_2": 21, - "PyFloat_FromDouble": 9, - "__pyx_t_3": 39, - "__pyx_t_4": 27, - "PyTuple_New": 3, - "PyTuple_SET_ITEM": 6, - "PyObject_Call": 6, - "PyErr_Occurred": 9, - "__pyx_L0": 18, - "__pyx_builtin_NotImplementedError": 3, - "__pyx_empty_tuple": 3, - "__pyx_doc_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, - "*__pyx_r": 6, - "**__pyx_pyargnames": 3, - "__pyx_n_s__p": 6, - "__pyx_n_s__y": 6, - "values": 30, - "__pyx_kwds": 15, - "kw_args": 15, - "pos_args": 12, - "__pyx_args": 21, - "__pyx_L5_argtuple_error": 12, - "PyDict_Size": 3, - "PyDict_GetItem": 6, - "__pyx_L3_error": 18, - "__pyx_pyargnames": 3, - "__pyx_L4_argument_unpacking_done": 6, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, - "__pyx_vtab": 2, - "loss": 1, - "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_3dloss": 3, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_12LossFunction_dloss": 1, - "__pyx_n_s__dloss": 1, - "__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_3dloss": 1, - "__pyx_doc_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 1, - "dloss": 1, - "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_10Regression_1loss": 3, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 1, - "__pyx_pw_7sklearn_12linear_model_8sgd_fast_10Regression_1loss": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 1, - "__pyx_base.__pyx_vtab": 1, - "__pyx_base.loss": 1, - "syscalldef": 1, - "syscalldefs": 1, - "SYSCALL_OR_NUM": 3, - "SYS_restart_syscall": 1, - "MAKE_UINT16": 3, - "SYS_exit": 1, - "SYS_fork": 1, "__wglew_h__": 2, "__WGLEW_H__": 1, "__wglext_h_": 2, + "#error": 4, "wglext.h": 1, + "included": 2, + "before": 4, "wglew.h": 1, + "#if": 92, + "defined": 42, "WINAPI": 119, "": 1, "GLEW_STATIC": 1, + "__cplusplus": 20, "WGL_3DFX_multisample": 2, "WGL_SAMPLE_BUFFERS_3DFX": 1, "WGL_SAMPLES_3DFX": 1, @@ -10095,6 +6940,7 @@ "PFNWGLCREATEASSOCIATEDCONTEXTAMDPROC": 2, "PFNWGLCREATEASSOCIATEDCONTEXTATTRIBSAMDPROC": 2, "hShareContext": 2, + "int*": 22, "attribList": 2, "PFNWGLDELETEASSOCIATEDCONTEXTAMDPROC": 2, "hglrc": 5, @@ -10141,6 +6987,8 @@ "PFNWGLDELETEBUFFERREGIONARBPROC": 2, "hRegion": 3, "PFNWGLRESTOREBUFFERREGIONARBPROC": 2, + "x": 57, + "y": 14, "width": 3, "height": 3, "xSrc": 1, @@ -10217,7 +7065,9 @@ "WGL_DRAW_TO_PBUFFER_ARB": 1, "D": 8, "WGL_MAX_PBUFFER_PIXELS_ARB": 1, + "E": 11, "WGL_MAX_PBUFFER_WIDTH_ARB": 1, + "F": 38, "WGL_MAX_PBUFFER_HEIGHT_ARB": 1, "WGL_PBUFFER_LARGEST_ARB": 1, "WGL_PBUFFER_WIDTH_ARB": 1, @@ -10261,7 +7111,9 @@ "WGL_NUMBER_OVERLAYS_ARB": 1, "WGL_NUMBER_UNDERLAYS_ARB": 1, "WGL_TRANSPARENT_ARB": 1, + "A": 11, "WGL_SHARE_DEPTH_ARB": 1, + "C": 14, "WGL_SHARE_STENCIL_ARB": 1, "WGL_SHARE_ACCUM_ARB": 1, "WGL_SUPPORT_GDI_ARB": 1, @@ -10400,6 +7252,7 @@ "GLushort*": 1, "table": 1, "GLuint": 9, + "length": 58, "wglBindDisplayColorTableEXT": 1, "__wglewBindDisplayColorTableEXT": 2, "wglCreateDisplayColorTableEXT": 1, @@ -10918,6 +7771,7 @@ "__WGLEW_NV_video_capture": 2, "WGL_NV_video_output": 2, "WGL_BIND_TO_VIDEO_RGB_NV": 1, + "C0": 3, "WGL_BIND_TO_VIDEO_RGBA_NV": 1, "C1": 1, "WGL_BIND_TO_VIDEO_RGB_AND_DEPTH_NV": 1, @@ -11014,11 +7868,3161 @@ "WGLEWContext": 1, "wglewContextInit": 2, "WGLEWContext*": 2, + "ctx": 16, "wglewContextIsSupported": 2, "wglewInit": 1, "wglewGetContext": 4, "wglewIsSupported": 2, "wglewGetExtension": 1, + "#undef": 7, + "": 1, + "": 2, + "": 2, + "//": 262, + "rfUTF8_IsContinuationbyte": 1, + "": 3, + "malloc": 3, + "": 5, + "e.t.c.": 1, + "int32_t": 112, + "rfFReadLine_UTF8": 5, + "FILE*": 64, + "char**": 7, + "utf8": 36, + "uint32_t*": 34, + "byteLength": 197, + "bufferSize": 6, + "eof": 53, + "bytesN": 98, + "uint32_t": 144, + "bIndex": 5, + "RF_NEWLINE_CRLF": 1, + "newLineFound": 1, + "false": 77, + "*bufferSize": 1, + "RF_OPTION_FGETS_READBYTESN": 5, + "RF_MALLOC": 47, + "tempBuff": 6, + "uint16_t": 12, + "RF_LF": 10, + "buff": 95, + "RF_SUCCESS": 14, + "error": 96, + "RE_FILE_EOF": 22, + "found": 20, + "*eofReached": 14, + "true": 73, + "LOG_ERROR": 64, + "RF_HEXEQ_UI": 7, + "rfFgetc_UTF32BE": 3, + "else//": 14, + "undo": 5, + "the": 91, + "peek": 5, + "ahead": 5, + "of": 44, + "file": 6, + "pointer": 5, + "fseek": 19, + "SEEK_CUR": 19, + "rfFgets_UTF32LE": 2, + "eofReached": 4, + "rfFgetc_UTF32LE": 4, + "rfFgets_UTF16BE": 2, + "rfFgetc_UTF16BE": 4, + "rfFgets_UTF16LE": 2, + "rfFgetc_UTF16LE": 4, + "rfFgets_UTF8": 2, + "rfFgetc_UTF8": 3, + "RF_HEXEQ_C": 9, + "fgetc": 9, + "check": 8, + "RE_FILE_READ": 2, + "cp": 12, + "c2": 13, + "c3": 9, + "c4": 5, + "i_READ_CHECK": 20, + "///": 4, + "success": 4, + "cc": 24, + "we": 10, + "need": 5, + "more": 2, + "bytes": 225, + "xC0": 3, + "xC1": 1, + "RE_UTF8_INVALID_SEQUENCE_INVALID_BYTE": 6, + "RE_UTF8_INVALID_SEQUENCE_END": 6, + "rfUTF8_IsContinuationByte": 12, + "RE_UTF8_INVALID_SEQUENCE_CONBYTE": 6, + "decoded": 3, + "codepoint": 47, + "end": 48, + "xE0": 2, + "xF": 5, + "to": 37, + "decode": 6, + "xF0": 2, + "RF_HEXGE_C": 1, + "xBF": 2, + "//invalid": 1, + "byte": 6, + "are": 6, + "from": 16, + "xFF": 1, + "//if": 1, + "needing": 1, + "than": 5, + "swapE": 21, + "v1": 38, + "v2": 26, + "rfUTILS_Endianess": 24, + "RF_LITTLE_ENDIAN": 23, + "fread": 12, + "swap": 9, + "endianess": 40, + "needed": 10, + "rfUTILS_SwapEndianUS": 10, + "RF_HEXGE_US": 4, + "xD800": 8, + "RF_HEXLE_US": 4, + "xDFFF": 8, + "RF_HEXL_US": 8, + "RF_HEXG_US": 8, + "xDBFF": 4, + "RE_UTF16_INVALID_SEQUENCE": 20, + "RE_UTF16_NO_SURRPAIR": 2, + "xDC00": 4, + "user": 2, + "wants": 2, + "ff": 10, + "uint16_t*": 11, + "surrogate": 4, + "pair": 4, + "existence": 2, + "RF_BIG_ENDIAN": 10, + "rfUTILS_SwapEndianUI": 11, + "rfFback_UTF32BE": 2, + "i_FSEEK_CHECK": 14, + "rfFback_UTF32LE": 2, + "rfFback_UTF16BE": 2, + "rfFback_UTF16LE": 2, + "rfFback_UTF8": 2, + "depending": 1, + "on": 4, + "number": 19, + "read": 1, + "backwards": 1, + "RE_UTF8_INVALID_SEQUENCE": 2, + "BOOTSTRAP_H": 2, + "*true": 1, + "*false": 1, + "*eof": 1, + "*empty_list": 1, + "*global_enviroment": 1, + "obj_type": 1, + "scm_bool": 1, + "scm_empty_list": 1, + "scm_eof": 1, + "scm_char": 1, + "scm_int": 1, + "scm_pair": 1, + "scm_symbol": 1, + "scm_prim_fun": 1, + "scm_lambda": 1, + "scm_str": 1, + "scm_file": 1, + "*eval_proc": 1, + "*maybe_add_begin": 1, + "*code": 2, + "init_enviroment": 1, + "*env": 4, + "eval_err": 1, + "__attribute__": 1, + "noreturn": 1, + "define_var": 1, + "set_var": 1, + "*get_var": 1, + "*cond2nested_if": 1, + "*cond": 1, + "*let2lambda": 1, + "*let": 1, + "*and2nested_if": 1, + "*and": 1, + "*or2nested_if": 1, + "*or": 1, + "lookup_object": 2, + "obj": 48, + "create_object": 2, + "OBJ_BLOB": 3, + "alloc_blob_node": 1, + "sha1_to_hex": 8, + "typename": 2, + "item": 24, + "object.parsed": 4, + "": 1, + "_Included_jni_JniLayer": 2, + "JNIEXPORT": 6, + "jlong": 6, + "JNICALL": 6, + "Java_jni_JniLayer_jni_1layer_1initialize": 1, + "JNIEnv": 6, + "jobject": 6, + "jintArray": 1, + "jint": 7, + "Java_jni_JniLayer_jni_1layer_1mainloop": 1, + "Java_jni_JniLayer_jni_1layer_1set_1button": 1, + "Java_jni_JniLayer_jni_1layer_1set_1analog": 1, + "jfloat": 1, + "Java_jni_JniLayer_jni_1layer_1report_1analog_1chg": 1, + "Java_jni_JniLayer_jni_1layer_1kill": 1, + "": 1, + "": 1, + "__APPLE__": 2, + "TARGET_OS_IPHONE": 1, + "**environ": 1, + "uv__chld": 2, + "EV_P_": 1, + "ev_child*": 1, + "watcher": 4, + "revents": 2, + "rstatus": 1, + "exit_status": 3, + "term_signal": 3, + "uv_process_t": 1, + "*process": 1, + "assert": 41, + "process": 19, + "child_watcher": 5, + "EV_CHILD": 1, + "ev_child_stop": 2, + "EV_A_": 1, + "WIFEXITED": 1, + "exit_cb": 3, + "uv__make_socketpair": 2, + "fds": 20, + "SOCK_NONBLOCK": 2, + "fl": 8, + "SOCK_CLOEXEC": 1, + "UV__F_NONBLOCK": 5, + "socketpair": 2, + "AF_UNIX": 2, + "SOCK_STREAM": 2, + "EINVAL": 6, + "uv__cloexec": 4, + "uv__nonblock": 5, + "uv__make_pipe": 2, + "UV__O_CLOEXEC": 1, + "UV__O_NONBLOCK": 1, + "uv__pipe2": 1, + "ENOSYS": 1, + "pipe": 1, + "uv__process_init_stdio": 2, + "uv_stdio_container_t*": 4, + "container": 17, + "writable": 8, + "UV_IGNORE": 2, + "UV_CREATE_PIPE": 4, + "UV_INHERIT_FD": 3, + "UV_INHERIT_STREAM": 2, + "data.stream": 7, + "UV_NAMED_PIPE": 2, + "data.fd": 1, + "uv__process_stdio_flags": 2, + "uv_pipe_t*": 1, + "ipc": 1, + "UV_STREAM_READABLE": 2, + "UV_STREAM_WRITABLE": 2, + "uv__process_open_stream": 2, + "child_fd": 3, + "uv__stream_open": 1, + "uv_stream_t*": 2, + "uv__process_close_stream": 2, + "uv__stream_close": 1, + "uv__process_child_init": 2, + "uv_process_options_t": 2, + "stdio_count": 7, + "pipes": 23, + "options.flags": 4, + "UV_PROCESS_DETACHED": 2, + "close_fd": 2, + "use_fd": 7, + "O_RDONLY": 1, + "perror": 5, + "options.cwd": 2, + "UV_PROCESS_SETGID": 2, + "setgid": 1, + "options.gid": 1, + "UV_PROCESS_SETUID": 2, + "setuid": 1, + "options.uid": 1, + "environ": 4, + "options.env": 1, + "execvp": 1, + "options.file": 2, + "options.args": 1, + "SPAWN_WAIT_EXEC": 5, + "uv_spawn": 1, + "uv_loop_t*": 1, + "loop": 9, + "uv_process_t*": 3, + "save_our_env": 3, + "options.stdio_count": 4, + "signal_pipe": 7, + "pollfd": 1, + "pfd": 2, + "ENOMEM": 4, + "UV_PROCESS_WINDOWS_VERBATIM_ARGUMENTS": 1, + "uv__handle_init": 1, + "uv_handle_t*": 1, + "UV_PROCESS": 1, + "counters.process_init": 1, + "uv__handle_start": 1, + "options.exit_cb": 1, + "options.stdio": 3, + "pfd.fd": 1, + "pfd.events": 1, + "POLLIN": 1, + "POLLHUP": 1, + "pfd.revents": 1, + "poll": 1, + "EINTR": 1, + "ev_child_init": 1, + "ev_child_start": 1, + "ev": 2, + "child_watcher.data": 1, + "free": 62, + "uv__set_sys_error": 2, + "uv_process_kill": 1, + "signum": 4, + "r": 58, + "uv_err_t": 1, + "uv_kill": 1, + "uv__new_sys_error": 1, + "uv_ok_": 1, + "uv__process_close": 1, + "handle": 10, + "uv__handle_stop": 1, + "*diff_prefix_from_pathspec": 1, + "git_strarray": 2, + "*pathspec": 2, + "git_buf": 3, + "GIT_BUF_INIT": 3, + "*scan": 2, + "git_buf_common_prefix": 1, + "pathspec": 15, + "scan": 4, + "prefix.ptr": 2, + "git__iswildcard": 1, + "git_buf_truncate": 1, + "prefix.size": 1, + "git_buf_detach": 1, + "git_buf_free": 4, + "bool": 6, + "diff_pathspec_is_interesting": 2, + "*str": 1, + "str": 162, + "strings": 5, + "diff_path_matches_pathspec": 3, + "git_diff_list": 17, + "*diff": 8, + "*path": 2, + "git_attr_fnmatch": 4, + "*match": 3, + "diff": 93, + "pathspec.length": 1, + "git_vector_foreach": 4, + "match": 16, + "result": 48, + "p_fnmatch": 1, + "pattern": 3, + "path": 20, + "FNM_NOMATCH": 1, + "GIT_ATTR_FNMATCH_HASWILD": 1, + "strncmp": 1, + "GIT_ATTR_FNMATCH_NEGATIVE": 1, + "git_diff_delta": 19, + "*diff_delta__alloc": 1, + "git_delta_t": 5, + "*delta": 6, + "git__calloc": 3, + "old_file.path": 12, + "git_pool_strdup": 3, + "pool": 12, + "git__free": 15, + "new_file.path": 6, + "opts.flags": 8, + "GIT_DIFF_REVERSE": 3, + "GIT_DELTA_ADDED": 4, + "GIT_DELTA_DELETED": 7, + "*diff_delta__dup": 1, + "*d": 1, + "git_pool": 4, + "*pool": 3, + "git__malloc": 3, + "fail": 19, + "*diff_delta__merge_like_cgit": 1, + "*b": 6, + "*dup": 1, + "diff_delta__dup": 3, + "a": 80, + "dup": 15, + "git_oid_cmp": 6, + "new_file.oid": 7, + "git_oid_cpy": 5, + "new_file.mode": 4, + "new_file.size": 3, + "new_file.flags": 4, + "old_file.oid": 3, + "GIT_DELTA_UNTRACKED": 5, + "GIT_DELTA_IGNORED": 5, + "GIT_DELTA_UNMODIFIED": 11, + "diff_delta__from_one": 5, + "git_index_entry": 8, + "*entry": 2, + "GIT_DIFF_INCLUDE_IGNORED": 1, + "GIT_DIFF_INCLUDE_UNTRACKED": 1, + "entry": 17, + "diff_delta__alloc": 2, + "GITERR_CHECK_ALLOC": 3, + "GIT_DELTA_MODIFIED": 3, + "old_file.mode": 2, + "mode": 11, + "old_file.size": 1, + "file_size": 6, + "oid": 17, + "old_file.flags": 2, + "GIT_DIFF_FILE_VALID_OID": 4, + "git_vector_insert": 4, + "deltas": 8, + "diff_delta__from_two": 2, + "*old_entry": 1, + "*new_entry": 1, + "git_oid": 7, + "*new_oid": 1, + "GIT_DIFF_INCLUDE_UNMODIFIED": 1, + "*temp": 1, + "old_entry": 5, + "new_entry": 5, + "temp": 11, + "new_oid": 3, + "git_oid_iszero": 2, + "*diff_strdup_prefix": 1, + "git_pool_strcat": 1, + "git_pool_strndup": 1, + "diff_delta__cmp": 3, + "*da": 1, + "da": 2, + "config_bool": 5, + "*cfg": 2, + "defvalue": 2, + "git_config_get_bool": 1, + "cfg": 6, + "giterr_clear": 1, + "*git_diff_list_alloc": 1, + "git_repository": 7, + "*repo": 7, + "git_diff_options": 7, + "*opts": 6, + "repo": 23, + "git_vector_init": 3, + "git_pool_init": 2, + "git_repository_config__weakptr": 1, + "diffcaps": 13, + "GIT_DIFFCAPS_HAS_SYMLINKS": 2, + "GIT_DIFFCAPS_ASSUME_UNCHANGED": 2, + "GIT_DIFFCAPS_TRUST_EXEC_BIT": 2, + "GIT_DIFFCAPS_TRUST_CTIME": 2, + "opts": 24, + "opts.pathspec": 2, + "opts.old_prefix": 4, + "diff_strdup_prefix": 2, + "old_prefix": 2, + "DIFF_OLD_PREFIX_DEFAULT": 1, + "opts.new_prefix": 4, + "new_prefix": 2, + "DIFF_NEW_PREFIX_DEFAULT": 1, + "*swap": 1, + "pathspec.count": 2, + "*pattern": 1, + "pathspec.strings": 1, + "GIT_ATTR_FNMATCH_ALLOWSPACE": 1, + "git_attr_fnmatch__parse": 1, + "GIT_ENOTFOUND": 1, + "git_diff_list_free": 3, + "deltas.contents": 1, + "git_vector_free": 3, + "pathspec.contents": 1, + "git_pool_clear": 2, + "oid_for_workdir_item": 2, + "*oid": 2, + "full_path": 3, + "git_buf_joinpath": 1, + "git_repository_workdir": 1, + "S_ISLNK": 2, + "git_odb__hashlink": 1, + "full_path.ptr": 2, + "git__is_sizet": 1, + "giterr_set": 1, + "GITERR_OS": 1, + "git_futils_open_ro": 1, + "git_odb__hashfd": 1, + "GIT_OBJ_BLOB": 1, + "p_close": 1, + "EXEC_BIT_MASK": 3, + "maybe_modified": 2, + "git_iterator": 8, + "*old_iter": 2, + "*oitem": 2, + "*new_iter": 2, + "*nitem": 2, + "noid": 4, + "*use_noid": 1, + "omode": 8, + "oitem": 29, + "nmode": 10, + "nitem": 32, + "GIT_UNUSED": 1, + "old_iter": 8, + "S_ISREG": 1, + "GIT_MODE_TYPE": 3, + "GIT_MODE_PERMS_MASK": 1, + "flags_extended": 2, + "GIT_IDXENTRY_INTENT_TO_ADD": 1, + "GIT_IDXENTRY_SKIP_WORKTREE": 1, + "new_iter": 13, + "GIT_ITERATOR_WORKDIR": 2, + "ctime.seconds": 2, + "mtime.seconds": 2, + "GIT_DIFFCAPS_USE_DEV": 1, + "dev": 2, + "ino": 2, + "uid": 2, + "gid": 2, + "S_ISGITLINK": 1, + "git_submodule": 1, + "*sub": 1, + "GIT_DIFF_IGNORE_SUBMODULES": 1, + "git_submodule_lookup": 1, + "sub": 12, + "ignore": 1, + "GIT_SUBMODULE_IGNORE_ALL": 1, + "use_noid": 2, + "diff_from_iterators": 5, + "**diff_ptr": 1, + "ignore_prefix": 6, + "git_diff_list_alloc": 1, + "old_src": 1, + "new_src": 3, + "git_iterator_current": 2, + "git_iterator_advance": 5, + "delta_type": 8, + "git_buf_len": 1, + "git__prefixcmp": 2, + "git_buf_cstr": 1, + "S_ISDIR": 1, + "GIT_DIFF_RECURSE_UNTRACKED_DIRS": 1, + "git_iterator_current_is_ignored": 2, + "git_buf_sets": 1, + "git_iterator_advance_into_directory": 1, + "git_iterator_free": 4, + "*diff_ptr": 2, + "git_diff_tree_to_tree": 1, + "git_tree": 4, + "*old_tree": 3, + "*new_tree": 1, + "**diff": 4, + "diff_prefix_from_pathspec": 4, + "old_tree": 5, + "new_tree": 2, + "git_iterator_for_tree_range": 4, + "git_diff_index_to_tree": 1, + "git_iterator_for_index_range": 2, + "git_diff_workdir_to_index": 1, + "git_iterator_for_workdir_range": 2, + "git_diff_workdir_to_tree": 1, + "git_diff_merge": 1, + "*onto": 1, + "*from": 1, + "onto_pool": 7, + "git_vector": 1, + "onto_new": 6, + "onto": 7, + "deltas.length": 4, + "GIT_VECTOR_GET": 2, + "diff_delta__merge_like_cgit": 1, + "git_vector_swap": 1, + "git_pool_swap": 1, + "PPC_SHA1": 1, + "git_hash_ctx": 7, + "SHA_CTX": 3, + "*git_hash_new_ctx": 1, + "*ctx": 5, + "SHA1_Init": 4, + "git_hash_free_ctx": 1, + "git_hash_init": 1, + "git_hash_update": 1, + "SHA1_Update": 3, + "git_hash_final": 1, + "*out": 3, + "SHA1_Final": 3, + "out": 18, + "git_hash_buf": 1, + "git_hash_vec": 1, + "git_buf_vec": 1, + "*vec": 1, + "vec": 2, + ".data": 1, + ".len": 3, + "REFU_IO_H": 2, + "": 2, + "opening": 2, + "bracket": 4, + "calling": 4, + "xA": 1, + "RF_CR": 1, + "xD": 1, + "REFU_WIN32_VERSION": 1, + "i_PLUSB_WIN32": 2, + "_MSC_VER": 5, + "__int64": 3, + "foff_rft": 2, + "": 2, + "off64_t": 1, + "///Fseek": 1, + "and": 15, + "Ftelll": 1, + "definitions": 1, + "rfFseek": 2, + "i_FILE_": 16, + "i_OFFSET_": 4, + "i_WHENCE_": 4, + "_fseeki64": 1, + "rfFtell": 2, + "_ftelli64": 1, + "fseeko64": 1, + "ftello64": 1, + "i_DECLIMEX_": 121, + "rfFReadLine_UTF16BE": 6, + "rfFReadLine_UTF16LE": 4, + "rfFReadLine_UTF32BE": 1, + "rfFReadLine_UTF32LE": 4, + "rfFgets_UTF32BE": 1, + "RF_IAMHERE_FOR_DOXYGEN": 22, + "rfPopen": 2, + "command": 2, + "i_rfPopen": 2, + "i_CMD_": 2, + "i_MODE_": 2, + "i_rfLMS_WRAP2": 5, + "rfPclose": 1, + "stream": 3, + "///closing": 1, + "#endif//include": 1, + "guards": 2, + "http_parser_h": 2, + "HTTP_PARSER_VERSION_MAJOR": 1, + "HTTP_PARSER_VERSION_MINOR": 1, + "_WIN32": 3, + "__MINGW32__": 1, + "__int8": 2, + "int8_t": 3, + "uint8_t": 6, + "__int16": 2, + "int16_t": 1, + "__int32": 2, + "int64_t": 2, + "uint64_t": 8, + "ssize_t": 1, + "": 1, + "HTTP_PARSER_STRICT": 5, + "HTTP_PARSER_DEBUG": 4, + "HTTP_MAX_HEADER_SIZE": 2, + "http_parser": 13, + "http_parser_settings": 5, + "HTTP_METHOD_MAP": 3, + "XX": 63, + "DELETE": 2, + "GET": 2, + "HEAD": 2, + "POST": 2, + "PUT": 2, + "CONNECT": 2, + "OPTIONS": 2, + "TRACE": 2, + "COPY": 2, + "LOCK": 2, + "MKCOL": 2, + "MOVE": 2, + "PROPFIND": 2, + "PROPPATCH": 2, + "SEARCH": 3, + "UNLOCK": 2, + "REPORT": 2, + "MKACTIVITY": 2, + "CHECKOUT": 2, + "MERGE": 2, + "MSEARCH": 1, + "M": 1, + "NOTIFY": 2, + "SUBSCRIBE": 2, + "UNSUBSCRIBE": 2, + "PATCH": 2, + "PURGE": 2, + "http_method": 4, + "string": 18, + "HTTP_##name": 1, + "http_parser_type": 3, + "HTTP_REQUEST": 7, + "HTTP_RESPONSE": 3, + "HTTP_BOTH": 1, + "F_CHUNKED": 11, + "F_CONNECTION_KEEP_ALIVE": 3, + "F_CONNECTION_CLOSE": 3, + "F_TRAILING": 3, + "F_UPGRADE": 3, + "F_SKIPBODY": 4, + "HTTP_ERRNO_MAP": 3, + "OK": 1, + "CB_message_begin": 1, + "CB_url": 1, + "CB_header_field": 1, + "CB_header_value": 1, + "CB_headers_complete": 1, + "CB_body": 1, + "CB_message_complete": 1, + "INVALID_EOF_STATE": 1, + "HEADER_OVERFLOW": 1, + "CLOSED_CONNECTION": 1, + "INVALID_VERSION": 1, + "INVALID_STATUS": 1, + "INVALID_METHOD": 1, + "INVALID_URL": 1, + "INVALID_HOST": 1, + "INVALID_PORT": 1, + "INVALID_PATH": 1, + "INVALID_QUERY_STRING": 1, + "INVALID_FRAGMENT": 1, + "LF_EXPECTED": 1, + "INVALID_HEADER_TOKEN": 1, + "INVALID_CONTENT_LENGTH": 1, + "INVALID_CHUNK_SIZE": 1, + "INVALID_CONSTANT": 1, + "INVALID_INTERNAL_STATE": 1, + "STRICT": 1, + "PAUSED": 1, + "UNKNOWN": 1, + "HTTP_ERRNO_GEN": 3, + "HPE_##n": 1, + "http_errno": 11, + "HTTP_PARSER_ERRNO": 10, + "HTTP_PARSER_ERRNO_LINE": 2, + "error_lineno": 3, + "header_state": 42, + "index": 58, + "nread": 7, + "content_length": 27, + "short": 6, + "http_major": 11, + "http_minor": 11, + "status_code": 8, + "method": 39, + "upgrade": 3, + "http_cb": 3, + "on_message_begin": 1, + "http_data_cb": 4, + "on_url": 1, + "on_header_field": 1, + "on_header_value": 1, + "on_headers_complete": 3, + "on_body": 1, + "on_message_complete": 1, + "http_parser_url_fields": 2, + "UF_SCHEMA": 2, + "UF_HOST": 3, + "UF_PORT": 5, + "UF_PATH": 2, + "UF_QUERY": 2, + "UF_FRAGMENT": 2, + "UF_MAX": 3, + "http_parser_url": 3, + "field_set": 5, + "field_data": 5, + "http_parser_init": 2, + "*parser": 9, + "http_parser_execute": 2, + "*settings": 2, + "http_should_keep_alive": 2, + "*http_method_str": 1, + "m": 8, + "*http_errno_name": 1, + "*http_errno_description": 1, + "http_parser_parse_url": 2, + "buflen": 3, + "is_connect": 4, + "*u": 2, + "http_parser_pause": 2, + "paused": 3, + "REFU_USTRING_H": 2, + "": 1, + "RF_MODULE_STRINGS//": 1, + "as": 4, + "module": 3, + "": 1, + "argument": 1, + "": 2, + "local": 5, + "memory": 4, + "function": 6, + "wrapping": 1, + "functionality": 1, + "": 1, + "unicode": 2, + "RF_CASE_IGNORE": 2, + "RF_MATCH_WORD": 5, + "RF_STRING_INDEX_OUT_OF_BOUNDS": 2, + "xFF0FFFF": 1, + "rfUTF8_IsContinuationByte2": 1, + "b__": 3, + "<=>": 16, + "0xBF": 1, + "pragma": 1, + "pack": 2, + "push": 1, + "1": 2, + "internal": 4, + "author": 1, + "Lefteris": 1, + "09": 1, + "12": 1, + "2010": 1, + "endinternal": 1, + "brief": 1, + "String": 11, + "with": 9, + "UTF": 17, + "8": 15, + "representation": 2, + "The": 1, + "Refu": 2, + "is": 17, + "Unicode": 1, + "that": 9, + "has": 2, + "two": 1, + "versions": 1, + "One": 1, + "this": 5, + "other": 16, + "ref": 1, + "RF_StringX": 2, + "see": 2, + "what": 1, + "operations": 1, + "can": 2, + "be": 6, + "performed": 1, + "extended": 3, + "Strings": 2, + "Functions": 1, + "convert": 1, + "all": 2, + "exists": 6, + "but": 1, + "always": 2, + "at": 3, + "Once": 1, + "been": 1, + "created": 1, + "it": 12, + "assumed": 1, + "inside": 2, + "valid": 1, + "since": 5, + "every": 1, + "performs": 1, + "unless": 1, + "otherwise": 1, + "specified": 1, + "All": 1, + "functions": 2, + "which": 1, + "have": 2, + "isinherited": 1, + "StringX": 2, + "their": 1, + "description": 1, + "safely": 1, + "no": 4, + "specific": 1, + "or": 1, + "needs": 1, + "exist": 2, + "manipulate": 1, + "Extended": 1, + "To": 1, + "make": 3, + "documentation": 1, + "even": 1, + "clearer": 1, + "should": 2, + "not": 6, + "marked": 1, + "notinherited": 1, + "cppcode": 1, + "constructor": 1, + "i_StringCHandle": 1, + "rfString_Create": 4, + "@endcpp": 1, + "@endinternal": 1, + "*/": 1, + "RF_String": 27, + "#pragma": 1, + "pop": 1, + "RF_String*": 222, + "RFS_": 8, + "i_rfString_CreateLocal": 2, + "__VA_ARGS__": 66, + "RF_OPTION_DEFAULT_ARGUMENTS": 24, + "i_rfString_Create": 3, + "i_NVrfString_Create": 3, + "RP_SELECT_FUNC_IF_NARGIS": 5, + "i_SELECT_RF_STRING_CREATE": 1, + "i_SELECT_RF_STRING_CREATE1": 1, + "i_SELECT_RF_STRING_CREATE0": 1, + "///Internal": 1, + "creates": 1, + "temporary": 4, + "i_rfString_CreateLocal1": 3, + "i_NVrfString_CreateLocal": 3, + "i_SELECT_RF_STRING_CREATELOCAL": 1, + "i_SELECT_RF_STRING_CREATELOCAL1": 1, + "i_SELECT_RF_STRING_CREATELOCAL0": 1, + "rfString_Init": 3, + "i_rfString_Init": 3, + "i_NVrfString_Init": 3, + "i_SELECT_RF_STRING_INIT": 1, + "i_SELECT_RF_STRING_INIT1": 1, + "i_SELECT_RF_STRING_INIT0": 1, + "rfString_Create_cp": 2, + "code": 6, + "rfString_Init_cp": 3, + "rfString_Create_nc": 3, + "i_rfString_Create_nc": 3, + "i_NVrfString_Create_nc": 3, + "i_SELECT_RF_STRING_CREATE_NC": 1, + "i_SELECT_RF_STRING_CREATE_NC1": 1, + "i_SELECT_RF_STRING_CREATE_NC0": 1, + "rfString_Init_nc": 4, + "i_rfString_Init_nc": 3, + "i_NVrfString_Init_nc": 3, + "i_SELECT_RF_STRING_INIT_NC": 1, + "i_SELECT_RF_STRING_INIT_NC1": 1, + "i_SELECT_RF_STRING_INIT_NC0": 1, + "rfString_Create_i": 2, + "rfString_Init_i": 2, + "rfString_Create_f": 2, + "rfString_Init_f": 2, + "rfString_Create_UTF16": 2, + "rfString_Init_UTF16": 3, + "rfString_Create_UTF32": 2, + "rfString_Init_UTF32": 3, + "//@": 1, + "rfString_Assign": 2, + "dest": 7, + "source": 8, + "i_rfString_Assign": 3, + "i_DESTINATION_": 2, + "i_SOURCE_": 2, + "rfString_Assign_char": 2, + "thisstr": 210, + "character": 11, + "rfString_Destroy": 2, + "rfString_Deinit": 3, + "rfString_ToUTF8": 2, + "i_STRING_": 2, + "rfString_ToCstr": 2, + "rfString_ToUTF16": 4, + "rfString_ToUTF32": 4, + "uint32_t*length": 1, + "rfString_Iterate_Start": 6, + "string_": 9, + "startCharacterPos_": 4, + "characterUnicodeValue_": 4, + "byteIndex_": 12, + "j_": 6, + "rfString_BytePosToCodePoint": 7, + "rfString_Iterate_End": 4, + "//Two": 1, + "macros": 1, + "accomplish": 1, + "an": 2, + "any": 3, + "given": 5, + "going": 1, + "backwards.": 1, + "This": 1, + "macro": 2, + "its": 1, + "pair.": 1, + "rfString_IterateB_Start": 1, + "characterPos_": 5, + "b_index_": 6, + "c_index_": 3, + "rfString_IterateB_End": 1, + "rfString_Length": 5, + "rfString_GetChar": 2, + "bytepos": 12, + "rfString_BytePosToCharPos": 4, + "rfString_Equal": 4, + "s1": 6, + "s2": 6, + "i_rfString_Equal": 3, + "i_STRING1_": 2, + "i_STRING2_": 2, + "i_rfLMSX_WRAP2": 4, + "rfString_Find": 3, + "sstr": 39, + "i_rfString_Find": 5, + "i_THISSTR_": 60, + "i_SEARCHSTR_": 26, + "i_OPTIONS_": 28, + "i_rfLMS_WRAP3": 4, + "i_RFI8_": 54, + "RF_SELECT_FUNC_IF_NARGGT": 10, + "i_NPSELECT_RF_STRING_FIND": 1, + "i_NPSELECT_RF_STRING_FIND1": 1, + "RF_COMPILE_ERROR": 33, + "i_NPSELECT_RF_STRING_FIND0": 1, + "RF_SELECT_FUNC": 10, + "i_SELECT_RF_STRING_FIND": 1, + "i_SELECT_RF_STRING_FIND2": 1, + "i_SELECT_RF_STRING_FIND3": 1, + "i_SELECT_RF_STRING_FIND1": 1, + "i_SELECT_RF_STRING_FIND0": 1, + "rfString_ToInt": 1, + "int32_t*": 1, + "v": 11, + "rfString_ToDouble": 1, + "double*": 1, + "rfString_Copy_OUT": 2, + "src": 16, + "rfString_Copy_IN": 2, + "dst": 15, + "rfString_Copy_chars": 2, + "rfString_ScanfAfter": 2, + "afterstr": 5, + "format": 4, + "i_rfString_ScanfAfter": 3, + "i_AFTERSTR_": 8, + "i_FORMAT_": 2, + "i_VAR_": 2, + "i_rfLMSX_WRAP4": 11, + "rfString_Count": 4, + "i_rfString_Count": 5, + "i_NPSELECT_RF_STRING_COUNT": 1, + "i_NPSELECT_RF_STRING_COUNT1": 1, + "i_NPSELECT_RF_STRING_COUNT0": 1, + "i_SELECT_RF_STRING_COUNT": 1, + "i_SELECT_RF_STRING_COUNT2": 1, + "i_rfLMSX_WRAP3": 5, + "i_SELECT_RF_STRING_COUNT3": 1, + "i_SELECT_RF_STRING_COUNT1": 1, + "i_SELECT_RF_STRING_COUNT0": 1, + "rfString_Tokenize": 2, + "sep": 3, + "tokensN": 2, + "RF_String**": 2, + "tokens": 5, + "rfString_Between": 3, + "lstr": 6, + "rstr": 24, + "i_rfString_Between": 4, + "i_NPSELECT_RF_STRING_BETWEEN": 1, + "i_NPSELECT_RF_STRING_BETWEEN1": 1, + "i_NPSELECT_RF_STRING_BETWEEN0": 1, + "i_SELECT_RF_STRING_BETWEEN": 1, + "i_SELECT_RF_STRING_BETWEEN4": 1, + "i_LEFTSTR_": 6, + "i_RIGHTSTR_": 6, + "i_RESULT_": 12, + "i_rfLMSX_WRAP5": 9, + "i_SELECT_RF_STRING_BETWEEN5": 1, + "i_SELECT_RF_STRING_BETWEEN3": 1, + "i_SELECT_RF_STRING_BETWEEN2": 1, + "i_SELECT_RF_STRING_BETWEEN1": 1, + "i_SELECT_RF_STRING_BETWEEN0": 1, + "rfString_Beforev": 4, + "parN": 10, + "i_rfString_Beforev": 16, + "i_NPSELECT_RF_STRING_BEFOREV": 1, + "i_NPSELECT_RF_STRING_BEFOREV1": 1, + "RF_SELECT_FUNC_IF_NARGGT2": 2, + "i_LIMSELECT_RF_STRING_BEFOREV": 1, + "i_NPSELECT_RF_STRING_BEFOREV0": 1, + "i_LIMSELECT_RF_STRING_BEFOREV1": 1, + "i_LIMSELECT_RF_STRING_BEFOREV0": 1, + "i_SELECT_RF_STRING_BEFOREV": 1, + "i_SELECT_RF_STRING_BEFOREV5": 1, + "i_ARG1_": 56, + "i_ARG2_": 56, + "i_ARG3_": 56, + "i_ARG4_": 56, + "i_RFUI8_": 28, + "i_SELECT_RF_STRING_BEFOREV6": 1, + "i_rfLMSX_WRAP6": 2, + "i_SELECT_RF_STRING_BEFOREV7": 1, + "i_rfLMSX_WRAP7": 2, + "i_SELECT_RF_STRING_BEFOREV8": 1, + "i_rfLMSX_WRAP8": 2, + "i_SELECT_RF_STRING_BEFOREV9": 1, + "i_rfLMSX_WRAP9": 2, + "i_SELECT_RF_STRING_BEFOREV10": 1, + "i_rfLMSX_WRAP10": 2, + "i_SELECT_RF_STRING_BEFOREV11": 1, + "i_rfLMSX_WRAP11": 2, + "i_SELECT_RF_STRING_BEFOREV12": 1, + "i_rfLMSX_WRAP12": 2, + "i_SELECT_RF_STRING_BEFOREV13": 1, + "i_rfLMSX_WRAP13": 2, + "i_SELECT_RF_STRING_BEFOREV14": 1, + "i_rfLMSX_WRAP14": 2, + "i_SELECT_RF_STRING_BEFOREV15": 1, + "i_rfLMSX_WRAP15": 2, + "i_SELECT_RF_STRING_BEFOREV16": 1, + "i_rfLMSX_WRAP16": 2, + "i_SELECT_RF_STRING_BEFOREV17": 1, + "i_rfLMSX_WRAP17": 2, + "i_SELECT_RF_STRING_BEFOREV18": 1, + "i_rfLMSX_WRAP18": 2, + "rfString_Before": 3, + "i_rfString_Before": 5, + "i_NPSELECT_RF_STRING_BEFORE": 1, + "i_NPSELECT_RF_STRING_BEFORE1": 1, + "i_NPSELECT_RF_STRING_BEFORE0": 1, + "i_SELECT_RF_STRING_BEFORE": 1, + "i_SELECT_RF_STRING_BEFORE3": 1, + "i_SELECT_RF_STRING_BEFORE4": 1, + "i_SELECT_RF_STRING_BEFORE2": 1, + "i_SELECT_RF_STRING_BEFORE1": 1, + "i_SELECT_RF_STRING_BEFORE0": 1, + "rfString_After": 4, + "after": 6, + "i_rfString_After": 5, + "i_NPSELECT_RF_STRING_AFTER": 1, + "i_NPSELECT_RF_STRING_AFTER1": 1, + "i_NPSELECT_RF_STRING_AFTER0": 1, + "i_SELECT_RF_STRING_AFTER": 1, + "i_SELECT_RF_STRING_AFTER3": 1, + "i_OUTSTR_": 6, + "i_SELECT_RF_STRING_AFTER4": 1, + "i_SELECT_RF_STRING_AFTER2": 1, + "i_SELECT_RF_STRING_AFTER1": 1, + "i_SELECT_RF_STRING_AFTER0": 1, + "rfString_Afterv": 4, + "i_rfString_Afterv": 16, + "i_NPSELECT_RF_STRING_AFTERV": 1, + "i_NPSELECT_RF_STRING_AFTERV1": 1, + "i_LIMSELECT_RF_STRING_AFTERV": 1, + "i_NPSELECT_RF_STRING_AFTERV0": 1, + "i_LIMSELECT_RF_STRING_AFTERV1": 1, + "i_LIMSELECT_RF_STRING_AFTERV0": 1, + "i_SELECT_RF_STRING_AFTERV": 1, + "i_SELECT_RF_STRING_AFTERV5": 1, + "i_SELECT_RF_STRING_AFTERV6": 1, + "i_SELECT_RF_STRING_AFTERV7": 1, + "i_SELECT_RF_STRING_AFTERV8": 1, + "i_SELECT_RF_STRING_AFTERV9": 1, + "i_SELECT_RF_STRING_AFTERV10": 1, + "i_SELECT_RF_STRING_AFTERV11": 1, + "i_SELECT_RF_STRING_AFTERV12": 1, + "i_SELECT_RF_STRING_AFTERV13": 1, + "i_SELECT_RF_STRING_AFTERV14": 1, + "i_SELECT_RF_STRING_AFTERV15": 1, + "i_SELECT_RF_STRING_AFTERV16": 1, + "i_SELECT_RF_STRING_AFTERV17": 1, + "i_SELECT_RF_STRING_AFTERV18": 1, + "rfString_Append": 5, + "i_rfString_Append": 3, + "i_OTHERSTR_": 4, + "rfString_Append_i": 2, + "rfString_Append_f": 2, + "rfString_Prepend": 2, + "i_rfString_Prepend": 3, + "rfString_Remove": 3, + "i_rfString_Remove": 6, + "i_NPSELECT_RF_STRING_REMOVE": 1, + "i_NPSELECT_RF_STRING_REMOVE1": 1, + "i_NPSELECT_RF_STRING_REMOVE0": 1, + "i_SELECT_RF_STRING_REMOVE": 1, + "i_SELECT_RF_STRING_REMOVE2": 1, + "i_REPSTR_": 16, + "i_RFUI32_": 8, + "i_SELECT_RF_STRING_REMOVE3": 1, + "i_NUMBER_": 12, + "i_SELECT_RF_STRING_REMOVE4": 1, + "i_SELECT_RF_STRING_REMOVE1": 1, + "i_SELECT_RF_STRING_REMOVE0": 1, + "rfString_KeepOnly": 2, + "keepstr": 5, + "i_rfString_KeepOnly": 3, + "I_KEEPSTR_": 2, + "rfString_PruneStart": 2, + "rfString_PruneEnd": 2, + "rfString_PruneMiddleB": 2, + "rfString_PruneMiddleF": 2, + "rfString_Replace": 3, + "i_rfString_Replace": 6, + "i_NPSELECT_RF_STRING_REPLACE": 1, + "i_NPSELECT_RF_STRING_REPLACE1": 1, + "i_NPSELECT_RF_STRING_REPLACE0": 1, + "i_SELECT_RF_STRING_REPLACE": 1, + "i_SELECT_RF_STRING_REPLACE3": 1, + "i_SELECT_RF_STRING_REPLACE4": 1, + "i_SELECT_RF_STRING_REPLACE5": 1, + "i_SELECT_RF_STRING_REPLACE2": 1, + "i_SELECT_RF_STRING_REPLACE1": 1, + "i_SELECT_RF_STRING_REPLACE0": 1, + "rfString_StripStart": 3, + "i_rfString_StripStart": 3, + "i_SUBSTR_": 6, + "rfString_StripEnd": 3, + "i_rfString_StripEnd": 3, + "rfString_Strip": 2, + "i_rfString_Strip": 3, + "rfString_Create_fUTF8": 2, + "rfString_Init_fUTF8": 3, + "rfString_Assign_fUTF8": 2, + "rfString_Append_fUTF8": 2, + "rfString_Create_fUTF16": 2, + "rfString_Init_fUTF16": 3, + "rfString_Append_fUTF16": 2, + "rfString_Assign_fUTF16": 2, + "rfString_Create_fUTF32": 2, + "rfString_Init_fUTF32": 3, + "rfString_Assign_fUTF32": 2, + "rfString_Append_fUTF32": 2, + "rfString_Fwrite": 2, + "i_rfString_Fwrite": 5, + "i_NPSELECT_RF_STRING_FWRITE": 1, + "i_NPSELECT_RF_STRING_FWRITE1": 1, + "i_NPSELECT_RF_STRING_FWRITE0": 1, + "i_SELECT_RF_STRING_FWRITE": 1, + "i_SELECT_RF_STRING_FWRITE3": 1, + "i_STR_": 8, + "i_ENCODING_": 4, + "i_SELECT_RF_STRING_FWRITE2": 1, + "RF_UTF8": 8, + "i_SELECT_RF_STRING_FWRITE1": 1, + "i_SELECT_RF_STRING_FWRITE0": 1, + "rfString_Fwrite_fUTF8": 1, + "closing": 1, + "include": 6, + "Attempted": 1, + "manipulation": 1, + "flag": 1, + "off.": 1, + "Rebuild": 1, + "library": 3, + "added": 1, + "you": 1, + "them": 3, + "#endif//": 1, + "READLINE_READLINE_CATS": 3, + "": 1, + "atscntrb_readline_rl_library_version": 1, + "rl_library_version": 1, + "atscntrb_readline_rl_readline_version": 1, + "rl_readline_version": 1, + "atscntrb_readline_readline": 1, + "readline": 1, + "ifndef": 2, + "PY_SSIZE_T_CLEAN": 1, + "Py_PYTHON_H": 1, + "Python": 2, + "headers": 1, + "compile": 1, + "extensions": 1, + "please": 1, + "install": 1, + "development": 1, + "Python.": 1, + "#elif": 14, + "PY_VERSION_HEX": 11, + "Cython": 1, + "requires": 1, + ".": 1, + "": 2, + "offsetof": 2, + "member": 2, + "type*": 1, + "WIN32": 2, + "MS_WINDOWS": 2, + "__stdcall": 2, + "__cdecl": 2, + "__fastcall": 2, + "DL_IMPORT": 2, + "DL_EXPORT": 2, + "PY_LONG_LONG": 5, + "LONG_LONG": 1, + "Py_HUGE_VAL": 2, + "HUGE_VAL": 1, + "PYPY_VERSION": 1, + "CYTHON_COMPILING_IN_PYPY": 3, + "CYTHON_COMPILING_IN_CPYTHON": 6, + "Py_ssize_t": 35, + "PY_SSIZE_T_MAX": 1, + "INT_MAX": 1, + "PY_SSIZE_T_MIN": 1, + "INT_MIN": 1, + "PY_FORMAT_SIZE_T": 1, + "CYTHON_FORMAT_SSIZE_T": 2, + "PyInt_FromSsize_t": 6, + "z": 47, + "PyInt_FromLong": 3, + "PyInt_AsSsize_t": 3, + "__Pyx_PyInt_AsInt": 2, + "PyNumber_Index": 1, + "PyNumber_Check": 2, + "PyFloat_Check": 2, + "PyNumber_Int": 1, + "PyErr_Format": 4, + "PyExc_TypeError": 4, + "Py_TYPE": 7, + "tp_name": 4, + "PyObject*": 24, + "__Pyx_PyIndex_Check": 3, + "PyComplex_Check": 1, + "PyIndex_Check": 2, + "PyErr_WarnEx": 1, + "category": 2, + "message": 3, + "stacklevel": 1, + "PyErr_Warn": 1, + "__PYX_BUILD_PY_SSIZE_T": 2, + "Py_REFCNT": 1, + "ob": 14, + "ob_refcnt": 1, + "ob_type": 7, + "Py_SIZE": 1, + "PyVarObject*": 1, + "ob_size": 1, + "PyVarObject_HEAD_INIT": 1, + "PyObject_HEAD_INIT": 1, + "PyType_Modified": 1, + "PyObject": 276, + "itemsize": 1, + "readonly": 1, + "ndim": 2, + "*shape": 1, + "*strides": 1, + "*suboffsets": 1, + "*internal": 1, + "Py_buffer": 6, + "PyBUF_SIMPLE": 1, + "PyBUF_WRITABLE": 3, + "PyBUF_FORMAT": 3, + "PyBUF_ND": 2, + "PyBUF_STRIDES": 6, + "PyBUF_C_CONTIGUOUS": 1, + "PyBUF_F_CONTIGUOUS": 1, + "PyBUF_ANY_CONTIGUOUS": 1, + "PyBUF_INDIRECT": 2, + "PyBUF_RECORDS": 1, + "PyBUF_FULL": 1, + "PY_MAJOR_VERSION": 13, + "__Pyx_BUILTIN_MODULE_NAME": 2, + "__Pyx_PyCode_New": 2, + "l": 7, + "fv": 4, + "cell": 4, + "fline": 4, + "lnos": 4, + "PyCode_New": 2, + "PY_MINOR_VERSION": 1, + "PyUnicode_FromString": 2, + "PyUnicode_Decode": 1, + "Py_TPFLAGS_CHECKTYPES": 1, + "Py_TPFLAGS_HAVE_INDEX": 1, + "Py_TPFLAGS_HAVE_NEWBUFFER": 1, + "PyUnicode_KIND": 1, + "CYTHON_PEP393_ENABLED": 2, + "__Pyx_PyUnicode_READY": 2, + "op": 8, + "likely": 22, + "PyUnicode_IS_READY": 1, + "_PyUnicode_Ready": 1, + "__Pyx_PyUnicode_GET_LENGTH": 2, + "u": 18, + "PyUnicode_GET_LENGTH": 1, + "__Pyx_PyUnicode_READ_CHAR": 2, + "PyUnicode_READ_CHAR": 1, + "__Pyx_PyUnicode_READ": 2, + "PyUnicode_READ": 1, + "PyUnicode_GET_SIZE": 1, + "Py_UCS4": 2, + "PyUnicode_AS_UNICODE": 1, + "Py_UNICODE*": 1, + "PyBaseString_Type": 1, + "PyUnicode_Type": 2, + "PyStringObject": 2, + "PyUnicodeObject": 1, + "PyString_Type": 2, + "PyString_Check": 2, + "PyUnicode_Check": 1, + "PyString_CheckExact": 2, + "PyUnicode_CheckExact": 1, + "PyBytesObject": 1, + "PyBytes_Type": 1, + "PyBytes_Check": 1, + "PyBytes_CheckExact": 1, + "PyBytes_FromString": 2, + "PyString_FromString": 2, + "PyBytes_FromStringAndSize": 1, + "PyString_FromStringAndSize": 1, + "PyBytes_FromFormat": 1, + "PyString_FromFormat": 1, + "PyBytes_DecodeEscape": 1, + "PyString_DecodeEscape": 1, + "PyBytes_AsString": 2, + "PyString_AsString": 1, + "PyBytes_AsStringAndSize": 1, + "PyString_AsStringAndSize": 1, + "PyBytes_Size": 1, + "PyString_Size": 1, + "PyBytes_AS_STRING": 1, + "PyString_AS_STRING": 1, + "PyBytes_GET_SIZE": 1, + "PyString_GET_SIZE": 1, + "PyBytes_Repr": 1, + "PyString_Repr": 1, + "PyBytes_Concat": 1, + "PyString_Concat": 1, + "PyBytes_ConcatAndDel": 1, + "PyString_ConcatAndDel": 1, + "PySet_Check": 1, + "PyObject_TypeCheck": 3, + "PySet_Type": 2, + "PyFrozenSet_Check": 1, + "PyFrozenSet_Type": 1, + "PySet_CheckExact": 2, + "__Pyx_TypeCheck": 1, + "PyTypeObject": 25, + "PyIntObject": 1, + "PyLongObject": 2, + "PyInt_Type": 1, + "PyLong_Type": 1, + "PyInt_Check": 1, + "PyLong_Check": 1, + "PyInt_CheckExact": 1, + "PyLong_CheckExact": 1, + "PyInt_FromString": 1, + "PyLong_FromString": 1, + "PyInt_FromUnicode": 1, + "PyLong_FromUnicode": 1, + "PyLong_FromLong": 1, + "PyInt_FromSize_t": 1, + "PyLong_FromSize_t": 1, + "PyLong_FromSsize_t": 1, + "PyInt_AsLong": 2, + "PyLong_AsLong": 1, + "PyInt_AS_LONG": 1, + "PyLong_AS_LONG": 1, + "PyLong_AsSsize_t": 1, + "PyInt_AsUnsignedLongMask": 1, + "PyLong_AsUnsignedLongMask": 1, + "PyInt_AsUnsignedLongLongMask": 1, + "PyLong_AsUnsignedLongLongMask": 1, + "PyBoolObject": 1, + "Py_hash_t": 1, + "__Pyx_PyInt_FromHash_t": 2, + "__Pyx_PyInt_AsHash_t": 2, + "__Pyx_PySequence_GetSlice": 2, + "PySequence_GetSlice": 2, + "__Pyx_PySequence_SetSlice": 2, + "PySequence_SetSlice": 2, + "__Pyx_PySequence_DelSlice": 2, + "PySequence_DelSlice": 2, + "unlikely": 54, + "PyErr_SetString": 3, + "PyExc_SystemError": 3, + "tp_as_mapping": 3, + "PyMethod_New": 2, + "func": 3, + "klass": 1, + "PyInstanceMethod_New": 1, + "__Pyx_GetAttrString": 2, + "PyObject_GetAttrString": 2, + "__Pyx_SetAttrString": 2, + "PyObject_SetAttrString": 2, + "__Pyx_DelAttrString": 2, + "PyObject_DelAttrString": 2, + "__Pyx_NAMESTR": 2, + "__Pyx_DOCSTR": 2, + "__Pyx_PyNumber_Divide": 2, + "PyNumber_TrueDivide": 1, + "__Pyx_PyNumber_InPlaceDivide": 2, + "PyNumber_InPlaceTrueDivide": 1, + "PyNumber_Divide": 1, + "PyNumber_InPlaceDivide": 1, + "__PYX_EXTERN_C": 3, + "_USE_MATH_DEFINES": 1, + "__PYX_HAVE__sklearn__linear_model__sgd_fast": 1, + "__PYX_HAVE_API__sklearn__linear_model__sgd_fast": 1, + "_OPENMP": 1, + "": 1, + "PYREX_WITHOUT_ASSERTIONS": 1, + "CYTHON_WITHOUT_ASSERTIONS": 1, + "CYTHON_INLINE": 65, + "__inline__": 1, + "__inline": 1, + "__STDC_VERSION__": 2, + "L": 1, + "CYTHON_UNUSED": 14, + "**p": 1, + "is_unicode": 1, + "is_str": 1, + "intern": 1, + "__Pyx_StringTabEntry": 2, + "__Pyx_PyBytes_FromUString": 1, + "__Pyx_PyBytes_AsUString": 1, + "__Pyx_Owned_Py_None": 1, + "Py_INCREF": 10, + "Py_None": 8, + "__Pyx_PyBool_FromLong": 1, + "Py_True": 2, + "Py_False": 2, + "__Pyx_PyObject_IsTrue": 1, + "__Pyx_PyNumber_Int": 1, + "__Pyx_PyIndex_AsSsize_t": 1, + "__Pyx_PyInt_FromSize_t": 1, + "__Pyx_PyInt_AsSize_t": 1, + "__pyx_PyFloat_AsDouble": 12, + "PyFloat_CheckExact": 1, + "PyFloat_AS_DOUBLE": 1, + "PyFloat_AsDouble": 2, + "__pyx_PyFloat_AsFloat": 1, + "__builtin_expect": 2, + "*__pyx_m": 1, + "*__pyx_b": 1, + "*__pyx_empty_tuple": 1, + "*__pyx_empty_bytes": 1, + "__pyx_lineno": 58, + "__pyx_clineno": 58, + "__pyx_cfilenm": 1, + "__FILE__": 4, + "*__pyx_filename": 7, + "CYTHON_CCOMPLEX": 12, + "_Complex_I": 3, + "": 1, + "": 1, + "__sun__": 1, + "fj": 1, + "*__pyx_f": 1, + "IS_UNSIGNED": 1, + "__Pyx_StructField_": 2, + "__PYX_BUF_FLAGS_PACKED_STRUCT": 1, + "__Pyx_StructField_*": 1, + "fields": 1, + "arraysize": 1, + "typegroup": 1, + "is_unsigned": 1, + "__Pyx_TypeInfo": 2, + "__Pyx_TypeInfo*": 2, + "offset": 1, + "__Pyx_StructField": 2, + "__Pyx_StructField*": 1, + "field": 1, + "parent_offset": 1, + "__Pyx_BufFmt_StackElem": 1, + "root": 1, + "__Pyx_BufFmt_StackElem*": 2, + "fmt_offset": 1, + "new_count": 1, + "enc_count": 1, + "struct_alignment": 1, + "is_complex": 1, + "enc_type": 1, + "new_packmode": 1, + "enc_packmode": 1, + "is_valid_array": 1, + "__Pyx_BufFmt_Context": 1, + "npy_int8": 1, + "__pyx_t_5numpy_int8_t": 1, + "npy_int16": 1, + "__pyx_t_5numpy_int16_t": 1, + "npy_int32": 1, + "__pyx_t_5numpy_int32_t": 4, + "npy_int64": 1, + "__pyx_t_5numpy_int64_t": 1, + "npy_uint8": 1, + "__pyx_t_5numpy_uint8_t": 1, + "npy_uint16": 1, + "__pyx_t_5numpy_uint16_t": 1, + "npy_uint32": 1, + "__pyx_t_5numpy_uint32_t": 1, + "npy_uint64": 1, + "__pyx_t_5numpy_uint64_t": 1, + "npy_float32": 1, + "__pyx_t_5numpy_float32_t": 1, + "npy_float64": 1, + "__pyx_t_5numpy_float64_t": 4, + "npy_long": 1, + "__pyx_t_5numpy_int_t": 1, + "npy_longlong": 2, + "__pyx_t_5numpy_long_t": 1, + "__pyx_t_5numpy_longlong_t": 1, + "npy_ulong": 1, + "__pyx_t_5numpy_uint_t": 1, + "npy_ulonglong": 2, + "__pyx_t_5numpy_ulong_t": 1, + "__pyx_t_5numpy_ulonglong_t": 1, + "npy_intp": 1, + "__pyx_t_5numpy_intp_t": 1, + "npy_uintp": 1, + "__pyx_t_5numpy_uintp_t": 1, + "npy_double": 2, + "__pyx_t_5numpy_float_t": 1, + "__pyx_t_5numpy_double_t": 1, + "npy_longdouble": 1, + "__pyx_t_5numpy_longdouble_t": 1, + "__pyx_t_7sklearn_5utils_13weight_vector_DOUBLE": 2, + "__pyx_t_7sklearn_5utils_13weight_vector_INTEGER": 1, + "__pyx_t_7sklearn_5utils_11seq_dataset_DOUBLE": 7, + "__pyx_t_7sklearn_5utils_11seq_dataset_INTEGER": 7, + "__pyx_t_7sklearn_12linear_model_8sgd_fast_DOUBLE": 4, + "__pyx_t_7sklearn_12linear_model_8sgd_fast_INTEGER": 3, + "std": 8, + "complex": 2, + "__pyx_t_float_complex": 27, + "_Complex": 2, + "real": 2, + "imag": 2, + "__pyx_t_double_complex": 27, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_LossFunction": 15, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Regression": 11, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Huber": 6, + "__pyx_obj_7sklearn_5utils_11seq_dataset_SequentialDataset": 5, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 6, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Classification": 7, + "__pyx_obj_7sklearn_5utils_11seq_dataset_CSRDataset": 2, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Log": 5, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Hinge": 6, + "__pyx_obj_7sklearn_5utils_11seq_dataset_ArrayDataset": 2, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 6, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_ModifiedHuber": 5, + "__pyx_obj_7sklearn_5utils_13weight_vector_WeightVector": 3, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredLoss": 5, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredEpsilonInsensitive": 6, + "npy_cfloat": 1, + "__pyx_t_5numpy_cfloat_t": 1, + "npy_cdouble": 2, + "__pyx_t_5numpy_cdouble_t": 1, + "npy_clongdouble": 1, + "__pyx_t_5numpy_clongdouble_t": 1, + "__pyx_t_5numpy_complex_t": 1, + "PyObject_HEAD": 3, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_LossFunction": 5, + "*__pyx_vtab": 3, + "__pyx_base": 18, + "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_SequentialDataset": 4, + "n_samples": 1, + "epsilon": 2, + "current_index": 2, + "stride": 2, + "*X_data_ptr": 2, + "*X_indptr_ptr": 1, + "*X_indices_ptr": 1, + "*Y_data_ptr": 2, + "PyArrayObject": 8, + "*feature_indices": 2, + "*feature_indices_ptr": 2, + "*index": 2, + "*index_data_ptr": 2, + "*sample_weight_data": 2, + "threshold": 2, + "n_features": 2, + "__pyx_vtabstruct_7sklearn_5utils_13weight_vector_WeightVector": 3, + "*w_data_ptr": 1, + "wscale": 1, + "sq_norm": 1, + "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_SequentialDataset": 1, + "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_ArrayDataset": 2, + "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_ArrayDataset": 1, + "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_CSRDataset": 2, + "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_CSRDataset": 1, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 2, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Regression": 3, + "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 1, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 2, + "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 1, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Huber": 2, + "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_Huber": 1, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Hinge": 2, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Classification": 1, + "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_Hinge": 1, + "*__pyx_vtabptr_7sklearn_5utils_13weight_vector_WeightVector": 1, + "CYTHON_REFNANNY": 3, + "__Pyx_RefNannyAPIStruct": 3, + "*__Pyx_RefNanny": 1, + "*__Pyx_RefNannyImportAPI": 1, + "*modname": 1, + "__Pyx_RefNannyDeclarations": 11, + "*__pyx_refnanny": 1, + "WITH_THREAD": 1, + "__Pyx_RefNannySetupContext": 12, + "acquire_gil": 4, + "PyGILState_STATE": 1, + "__pyx_gilstate_save": 2, + "PyGILState_Ensure": 1, + "__pyx_refnanny": 8, + "__Pyx_RefNanny": 8, + "SetupContext": 3, + "__LINE__": 50, + "PyGILState_Release": 1, + "__Pyx_RefNannyFinishContext": 14, + "FinishContext": 1, + "__Pyx_INCREF": 6, + "INCREF": 1, + "__Pyx_DECREF": 20, + "DECREF": 1, + "__Pyx_GOTREF": 24, + "GOTREF": 1, + "__Pyx_GIVEREF": 9, + "GIVEREF": 1, + "__Pyx_XINCREF": 2, + "__Pyx_XDECREF": 20, + "__Pyx_XGOTREF": 2, + "__Pyx_XGIVEREF": 5, + "Py_DECREF": 2, + "Py_XINCREF": 1, + "Py_XDECREF": 1, + "__Pyx_CLEAR": 1, + "__Pyx_XCLEAR": 1, + "*__Pyx_GetName": 1, + "__Pyx_ErrRestore": 1, + "*type": 4, + "*tb": 2, + "__Pyx_ErrFetch": 1, + "**type": 1, + "**value": 1, + "**tb": 1, + "__Pyx_Raise": 4, + "*cause": 1, + "__Pyx_RaiseArgtupleInvalid": 7, + "func_name": 2, + "exact": 6, + "num_min": 1, + "num_max": 1, + "num_found": 1, + "__Pyx_RaiseDoubleKeywordsError": 1, + "kw_name": 1, + "__Pyx_ParseOptionalKeywords": 4, + "*kwds": 1, + "**argnames": 1, + "*kwds2": 1, + "*values": 1, + "num_pos_args": 1, + "function_name": 1, + "__Pyx_ArgTypeTest": 1, + "none_allowed": 1, + "__Pyx_GetBufferAndValidate": 1, + "Py_buffer*": 2, + "dtype": 1, + "nd": 1, + "cast": 1, + "stack": 6, + "__Pyx_SafeReleaseBuffer": 1, + "__Pyx_TypeTest": 1, + "__Pyx_RaiseBufferFallbackError": 1, + "*__Pyx_GetItemInt_Generic": 1, + "*r": 7, + "PyObject_GetItem": 1, + "__Pyx_GetItemInt_List": 1, + "to_py_func": 6, + "__Pyx_GetItemInt_List_Fast": 1, + "__Pyx_GetItemInt_Generic": 6, + "*__Pyx_GetItemInt_List_Fast": 1, + "PyList_GET_SIZE": 5, + "PyList_GET_ITEM": 3, + "PySequence_GetItem": 3, + "__Pyx_GetItemInt_Tuple": 1, + "__Pyx_GetItemInt_Tuple_Fast": 1, + "*__Pyx_GetItemInt_Tuple_Fast": 1, + "PyTuple_GET_SIZE": 14, + "PyTuple_GET_ITEM": 15, + "__Pyx_GetItemInt": 1, + "__Pyx_GetItemInt_Fast": 2, + "PyList_CheckExact": 1, + "PyTuple_CheckExact": 1, + "PySequenceMethods": 1, + "*m": 1, + "tp_as_sequence": 1, + "sq_item": 2, + "sq_length": 2, + "PySequence_Check": 1, + "__Pyx_RaiseTooManyValuesError": 1, + "expected": 2, + "__Pyx_RaiseNeedMoreValuesError": 1, + "__Pyx_RaiseNoneNotIterableError": 1, + "__Pyx_IterFinish": 1, + "__Pyx_IternextUnpackEndCheck": 1, + "*retval": 1, + "shape": 1, + "strides": 1, + "suboffsets": 1, + "__Pyx_Buf_DimInfo": 2, + "refcount": 2, + "pybuffer": 1, + "__Pyx_Buffer": 2, + "*rcbuffer": 1, + "diminfo": 1, + "__Pyx_LocalBuf_ND": 1, + "__Pyx_GetBuffer": 2, + "*view": 2, + "__Pyx_ReleaseBuffer": 2, + "PyObject_GetBuffer": 1, + "PyBuffer_Release": 1, + "__Pyx_zeros": 1, + "__Pyx_minusones": 1, + "*__Pyx_Import": 1, + "*from_list": 1, + "__Pyx_RaiseImportError": 1, + "__Pyx_Print": 1, + "__pyx_print": 1, + "__pyx_print_kwargs": 1, + "__Pyx_PrintOne": 1, + "__Pyx_CREAL": 4, + ".real": 3, + "__Pyx_CIMAG": 4, + ".imag": 3, + "__real__": 1, + "__imag__": 1, + "__Pyx_SET_CREAL": 2, + "__Pyx_SET_CIMAG": 2, + "__pyx_t_float_complex_from_parts": 1, + "__Pyx_c_eqf": 2, + "__Pyx_c_sumf": 2, + "__Pyx_c_difff": 2, + "__Pyx_c_prodf": 2, + "__Pyx_c_quotf": 2, + "__Pyx_c_negf": 2, + "__Pyx_c_is_zerof": 3, + "__Pyx_c_conjf": 3, + "conj": 3, + "__Pyx_c_absf": 3, + "abs": 2, + "__Pyx_c_powf": 3, + "pow": 2, + "conjf": 1, + "cabsf": 1, + "cpowf": 1, + "__pyx_t_double_complex_from_parts": 1, + "__Pyx_c_eq": 2, + "__Pyx_c_sum": 2, + "__Pyx_c_diff": 2, + "__Pyx_c_prod": 2, + "__Pyx_c_quot": 2, + "__Pyx_c_neg": 2, + "__Pyx_c_is_zero": 3, + "__Pyx_c_conj": 3, + "__Pyx_c_abs": 3, + "__Pyx_c_pow": 3, + "cabs": 1, + "cpow": 1, + "__Pyx_PyInt_AsUnsignedChar": 1, + "__Pyx_PyInt_AsUnsignedShort": 1, + "__Pyx_PyInt_AsUnsignedInt": 1, + "__Pyx_PyInt_AsChar": 1, + "__Pyx_PyInt_AsShort": 1, + "signed": 5, + "__Pyx_PyInt_AsSignedChar": 1, + "__Pyx_PyInt_AsSignedShort": 1, + "__Pyx_PyInt_AsSignedInt": 1, + "__Pyx_PyInt_AsLongDouble": 1, + "__Pyx_PyInt_AsUnsignedLong": 1, + "__Pyx_PyInt_AsUnsignedLongLong": 1, + "__Pyx_PyInt_AsLong": 1, + "__Pyx_PyInt_AsLongLong": 1, + "__Pyx_PyInt_AsSignedLong": 1, + "__Pyx_PyInt_AsSignedLongLong": 1, + "__Pyx_WriteUnraisable": 4, + "clineno": 1, + "lineno": 1, + "*filename": 2, + "__Pyx_check_binary_version": 1, + "__Pyx_SetVtable": 1, + "*vtable": 1, + "__Pyx_PyIdentifier_FromString": 3, + "*__Pyx_ImportModule": 1, + "*__Pyx_ImportType": 1, + "*module_name": 1, + "*class_name": 1, + "strict": 2, + "__Pyx_GetVtable": 1, + "code_line": 4, + "PyCodeObject*": 2, + "code_object": 2, + "__Pyx_CodeObjectCacheEntry": 1, + "__Pyx_CodeObjectCache": 2, + "max_count": 1, + "__Pyx_CodeObjectCacheEntry*": 2, + "entries": 2, + "__pyx_code_cache": 1, + "__pyx_bisect_code_objects": 1, + "PyCodeObject": 1, + "*__pyx_find_code_object": 1, + "__pyx_insert_code_object": 1, + "__Pyx_AddTraceback": 7, + "*funcname": 1, + "c_line": 1, + "py_line": 1, + "__Pyx_InitStrings": 1, + "*t": 2, + "*__pyx_ptype_7cpython_4type_type": 1, + "*__pyx_ptype_5numpy_dtype": 1, + "*__pyx_ptype_5numpy_flatiter": 1, + "*__pyx_ptype_5numpy_broadcast": 1, + "*__pyx_ptype_5numpy_ndarray": 1, + "*__pyx_ptype_5numpy_ufunc": 1, + "*__pyx_f_5numpy__util_dtypestring": 1, + "PyArray_Descr": 1, + "*__pyx_ptype_7sklearn_5utils_13weight_vector_WeightVector": 1, + "*__pyx_ptype_7sklearn_5utils_11seq_dataset_SequentialDataset": 1, + "*__pyx_ptype_7sklearn_5utils_11seq_dataset_ArrayDataset": 1, + "*__pyx_ptype_7sklearn_5utils_11seq_dataset_CSRDataset": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_LossFunction": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Regression": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Classification": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_ModifiedHuber": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Hinge": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Log": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredLoss": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Huber": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredEpsilonInsensitive": 1, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_max": 1, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_min": 1, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_sqnorm": 1, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_l1penalty": 1, + "__Pyx_TypeInfo_nn___pyx_t_7sklearn_12linear_model_8sgd_fast_DOUBLE": 1, + "__Pyx_MODULE_NAME": 1, + "__pyx_module_is_main_sklearn__linear_model__sgd_fast": 1, + "*__pyx_builtin_NotImplementedError": 1, + "*__pyx_builtin_range": 1, + "*__pyx_builtin_ValueError": 1, + "*__pyx_builtin_RuntimeError": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 2, + "*__pyx_v_self": 52, + "__pyx_v_p": 46, + "__pyx_v_y": 46, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 2, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 2, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_2dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_14Classification_loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_14Classification_2dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_2dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_4__reduce__": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge___init__": 1, + "__pyx_v_threshold": 2, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_2loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_4dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_6__reduce__": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge___init__": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_2loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_4dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_6__reduce__": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_2dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_4__reduce__": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_2dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_4__reduce__": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber___init__": 1, + "__pyx_v_c": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_2loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_4dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_6__reduce__": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive___init__": 1, + "__pyx_v_epsilon": 2, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_2loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_4dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_6__reduce__": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive___init__": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_2loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_4dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_6__reduce__": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_plain_sgd": 1, + "*__pyx_self": 1, + "*__pyx_v_weights": 1, + "__pyx_v_intercept": 1, + "*__pyx_v_loss": 1, + "__pyx_v_penalty_type": 1, + "__pyx_v_alpha": 1, + "__pyx_v_C": 1, + "__pyx_v_rho": 1, + "*__pyx_v_dataset": 1, + "__pyx_v_n_iter": 1, + "__pyx_v_fit_intercept": 1, + "__pyx_v_verbose": 1, + "__pyx_v_shuffle": 1, + "*__pyx_v_seed": 1, + "__pyx_v_weight_pos": 1, + "__pyx_v_weight_neg": 1, + "__pyx_v_learning_rate": 1, + "__pyx_v_eta0": 1, + "__pyx_v_power_t": 1, + "__pyx_v_t": 1, + "__pyx_v_intercept_decay": 1, + "__pyx_pf_5numpy_7ndarray___getbuffer__": 1, + "*__pyx_v_info": 2, + "__pyx_v_flags": 1, + "__pyx_pf_5numpy_7ndarray_2__releasebuffer__": 1, + "__pyx_k_1": 1, + "__pyx_k_2": 1, + "__pyx_k_3": 1, + "__pyx_k_4": 1, + "__pyx_k_6": 1, + "__pyx_k_8": 1, + "__pyx_k_10": 1, + "__pyx_k_12": 1, + "__pyx_k_13": 1, + "__pyx_k_16": 1, + "__pyx_k_20": 1, + "__pyx_k_21": 1, + "__pyx_k__B": 1, + "__pyx_k__C": 1, + "__pyx_k__H": 1, + "__pyx_k__I": 1, + "__pyx_k__L": 1, + "__pyx_k__O": 1, + "__pyx_k__Q": 1, + "__pyx_k__b": 1, + "__pyx_k__c": 1, + "__pyx_k__d": 1, + "__pyx_k__f": 1, + "__pyx_k__g": 1, + "__pyx_k__h": 1, + "__pyx_k__i": 1, + "__pyx_k__l": 1, + "__pyx_k__p": 1, + "__pyx_k__q": 1, + "__pyx_k__t": 1, + "__pyx_k__u": 1, + "__pyx_k__w": 1, + "__pyx_k__y": 1, + "__pyx_k__Zd": 1, + "__pyx_k__Zf": 1, + "__pyx_k__Zg": 1, + "__pyx_k__np": 1, + "__pyx_k__any": 1, + "__pyx_k__eta": 1, + "__pyx_k__rho": 1, + "__pyx_k__sys": 1, + "__pyx_k__eta0": 1, + "__pyx_k__loss": 1, + "__pyx_k__seed": 1, + "__pyx_k__time": 1, + "__pyx_k__xnnz": 1, + "__pyx_k__alpha": 1, + "__pyx_k__count": 1, + "__pyx_k__dloss": 1, + "__pyx_k__dtype": 1, + "__pyx_k__epoch": 1, + "__pyx_k__isinf": 1, + "__pyx_k__isnan": 1, + "__pyx_k__numpy": 1, + "__pyx_k__order": 1, + "__pyx_k__range": 1, + "__pyx_k__shape": 1, + "__pyx_k__zeros": 1, + "__pyx_k__n_iter": 1, + "__pyx_k__update": 1, + "__pyx_k__dataset": 1, + "__pyx_k__epsilon": 1, + "__pyx_k__float64": 1, + "__pyx_k__nonzero": 1, + "__pyx_k__power_t": 1, + "__pyx_k__shuffle": 1, + "__pyx_k__sumloss": 1, + "__pyx_k__t_start": 1, + "__pyx_k__verbose": 1, + "__pyx_k__weights": 1, + "__pyx_k____main__": 1, + "__pyx_k____test__": 1, + "__pyx_k__is_hinge": 1, + "__pyx_k__intercept": 1, + "__pyx_k__n_samples": 1, + "__pyx_k__plain_sgd": 1, + "__pyx_k__threshold": 1, + "__pyx_k__x_ind_ptr": 1, + "__pyx_k__ValueError": 1, + "__pyx_k__n_features": 1, + "__pyx_k__q_data_ptr": 1, + "__pyx_k__weight_neg": 1, + "__pyx_k__weight_pos": 1, + "__pyx_k__x_data_ptr": 1, + "__pyx_k__RuntimeError": 1, + "__pyx_k__class_weight": 1, + "__pyx_k__penalty_type": 1, + "__pyx_k__fit_intercept": 1, + "__pyx_k__learning_rate": 1, + "__pyx_k__sample_weight": 1, + "__pyx_k__intercept_decay": 1, + "__pyx_k__NotImplementedError": 1, + "*__pyx_kp_s_1": 1, + "*__pyx_kp_u_10": 1, + "*__pyx_kp_u_12": 1, + "*__pyx_kp_u_13": 1, + "*__pyx_kp_u_16": 1, + "*__pyx_kp_s_2": 1, + "*__pyx_kp_s_20": 1, + "*__pyx_n_s_21": 1, + "*__pyx_kp_s_3": 1, + "*__pyx_kp_s_4": 1, + "*__pyx_kp_u_6": 1, + "*__pyx_kp_u_8": 1, + "*__pyx_n_s__C": 1, + "*__pyx_n_s__NotImplementedError": 1, + "*__pyx_n_s__RuntimeError": 1, + "*__pyx_n_s__ValueError": 1, + "*__pyx_n_s____main__": 1, + "*__pyx_n_s____test__": 1, + "*__pyx_n_s__alpha": 1, + "*__pyx_n_s__any": 1, + "*__pyx_n_s__c": 1, + "*__pyx_n_s__class_weight": 1, + "*__pyx_n_s__count": 1, + "*__pyx_n_s__dataset": 1, + "*__pyx_n_s__dloss": 1, + "*__pyx_n_s__dtype": 1, + "*__pyx_n_s__epoch": 1, + "*__pyx_n_s__epsilon": 1, + "*__pyx_n_s__eta": 1, + "*__pyx_n_s__eta0": 1, + "*__pyx_n_s__fit_intercept": 1, + "*__pyx_n_s__float64": 1, + "*__pyx_n_s__i": 1, + "*__pyx_n_s__intercept": 1, + "*__pyx_n_s__intercept_decay": 1, + "*__pyx_n_s__is_hinge": 1, + "*__pyx_n_s__isinf": 1, + "*__pyx_n_s__isnan": 1, + "*__pyx_n_s__learning_rate": 1, + "*__pyx_n_s__loss": 1, + "*__pyx_n_s__n_features": 1, + "*__pyx_n_s__n_iter": 1, + "*__pyx_n_s__n_samples": 1, + "*__pyx_n_s__nonzero": 1, + "*__pyx_n_s__np": 1, + "*__pyx_n_s__numpy": 1, + "*__pyx_n_s__order": 1, + "*__pyx_n_s__p": 1, + "*__pyx_n_s__penalty_type": 1, + "*__pyx_n_s__plain_sgd": 1, + "*__pyx_n_s__power_t": 1, + "*__pyx_n_s__q": 1, + "*__pyx_n_s__q_data_ptr": 1, + "*__pyx_n_s__range": 1, + "*__pyx_n_s__rho": 1, + "*__pyx_n_s__sample_weight": 1, + "*__pyx_n_s__seed": 1, + "*__pyx_n_s__shape": 1, + "*__pyx_n_s__shuffle": 1, + "*__pyx_n_s__sumloss": 1, + "*__pyx_n_s__sys": 1, + "*__pyx_n_s__t": 1, + "*__pyx_n_s__t_start": 1, + "*__pyx_n_s__threshold": 1, + "*__pyx_n_s__time": 1, + "*__pyx_n_s__u": 1, + "*__pyx_n_s__update": 1, + "*__pyx_n_s__verbose": 1, + "*__pyx_n_s__w": 1, + "*__pyx_n_s__weight_neg": 1, + "*__pyx_n_s__weight_pos": 1, + "*__pyx_n_s__weights": 1, + "*__pyx_n_s__x_data_ptr": 1, + "*__pyx_n_s__x_ind_ptr": 1, + "*__pyx_n_s__xnnz": 1, + "*__pyx_n_s__y": 1, + "*__pyx_n_s__zeros": 1, + "*__pyx_int_15": 1, + "*__pyx_k_tuple_5": 1, + "*__pyx_k_tuple_7": 1, + "*__pyx_k_tuple_9": 1, + "*__pyx_k_tuple_11": 1, + "*__pyx_k_tuple_14": 1, + "*__pyx_k_tuple_15": 1, + "*__pyx_k_tuple_17": 1, + "*__pyx_k_tuple_18": 1, + "*__pyx_k_codeobj_19": 1, + "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_1loss": 3, + "*__pyx_args": 9, + "*__pyx_kwds": 9, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, + "__pyx_skip_dispatch": 6, + "__pyx_r": 39, + "*__pyx_t_1": 6, + "*__pyx_t_2": 3, + "*__pyx_t_3": 3, + "*__pyx_t_4": 3, + "__pyx_t_5": 12, + "__pyx_v_self": 15, + "tp_dictoffset": 3, + "__pyx_t_1": 69, + "PyObject_GetAttr": 3, + "__pyx_n_s__loss": 2, + "__pyx_filename": 51, + "__pyx_f": 42, + "__pyx_L1_error": 33, + "PyCFunction_Check": 3, + "PyCFunction_GET_FUNCTION": 3, + "PyCFunction": 3, + "__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_1loss": 1, + "__pyx_t_2": 21, + "PyFloat_FromDouble": 9, + "__pyx_t_3": 39, + "__pyx_t_4": 27, + "PyTuple_New": 3, + "PyTuple_SET_ITEM": 6, + "PyObject_Call": 6, + "PyErr_Occurred": 9, + "__pyx_L0": 18, + "__pyx_builtin_NotImplementedError": 3, + "__pyx_empty_tuple": 3, + "__pyx_doc_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, + "*__pyx_r": 6, + "**__pyx_pyargnames": 3, + "__pyx_n_s__p": 6, + "__pyx_n_s__y": 6, + "values": 30, + "__pyx_kwds": 15, + "kw_args": 15, + "pos_args": 12, + "__pyx_args": 21, + "__pyx_L5_argtuple_error": 12, + "PyDict_Size": 3, + "PyDict_GetItem": 6, + "__pyx_L3_error": 18, + "__pyx_pyargnames": 3, + "__pyx_L4_argument_unpacking_done": 6, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, + "__pyx_vtab": 2, + "loss": 1, + "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_3dloss": 3, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_12LossFunction_dloss": 1, + "__pyx_n_s__dloss": 1, + "__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_3dloss": 1, + "__pyx_doc_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 1, + "dloss": 1, + "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_10Regression_1loss": 3, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 1, + "__pyx_pw_7sklearn_12linear_model_8sgd_fast_10Regression_1loss": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 1, + "__pyx_base.__pyx_vtab": 1, + "__pyx_base.loss": 1, + "ULLONG_MAX": 10, + "MIN": 3, + "SET_ERRNO": 47, + "e": 4, + "parser": 334, + "CALLBACK_NOTIFY_": 3, + "FOR": 11, + "ER": 4, + "HPE_OK": 10, + "settings": 6, + "on_##FOR": 4, + "HPE_CB_##FOR": 2, + "CALLBACK_NOTIFY": 10, + "CALLBACK_NOTIFY_NOADVANCE": 2, + "CALLBACK_DATA_": 4, + "LEN": 2, + "FOR##_mark": 7, + "CALLBACK_DATA": 10, + "CALLBACK_DATA_NOADVANCE": 6, + "MARK": 7, + "PROXY_CONNECTION": 4, + "CONNECTION": 4, + "CONTENT_LENGTH": 4, + "TRANSFER_ENCODING": 4, + "UPGRADE": 4, + "CHUNKED": 4, + "KEEP_ALIVE": 4, + "CLOSE": 4, + "*method_strings": 1, + "#string": 1, + "unhex": 3, + "normal_url_char": 3, + "T": 3, + "s_dead": 10, + "s_start_req_or_res": 4, + "s_res_or_resp_H": 3, + "s_start_res": 5, + "s_res_H": 3, + "s_res_HT": 4, + "s_res_HTT": 3, + "s_res_HTTP": 3, + "s_res_first_http_major": 3, + "s_res_http_major": 3, + "s_res_first_http_minor": 3, + "s_res_http_minor": 3, + "s_res_first_status_code": 3, + "s_res_status_code": 3, + "s_res_status": 3, + "s_res_line_almost_done": 4, + "s_start_req": 6, + "s_req_method": 4, + "s_req_spaces_before_url": 5, + "s_req_schema": 6, + "s_req_schema_slash": 6, + "s_req_schema_slash_slash": 6, + "s_req_host_start": 8, + "s_req_host_v6_start": 7, + "s_req_host_v6": 7, + "s_req_host_v6_end": 7, + "s_req_host": 8, + "s_req_port_start": 7, + "s_req_port": 6, + "s_req_path": 8, + "s_req_query_string_start": 8, + "s_req_query_string": 7, + "s_req_fragment_start": 7, + "s_req_fragment": 7, + "s_req_http_start": 3, + "s_req_http_H": 3, + "s_req_http_HT": 3, + "s_req_http_HTT": 3, + "s_req_http_HTTP": 3, + "s_req_first_http_major": 3, + "s_req_http_major": 3, + "s_req_first_http_minor": 3, + "s_req_http_minor": 3, + "s_req_line_almost_done": 4, + "s_header_field_start": 12, + "s_header_field": 4, + "s_header_value_start": 4, + "s_header_value": 5, + "s_header_value_lws": 3, + "s_header_almost_done": 6, + "s_chunk_size_start": 4, + "s_chunk_size": 3, + "s_chunk_parameters": 3, + "s_chunk_size_almost_done": 4, + "s_headers_almost_done": 4, + "s_headers_done": 4, + "s_chunk_data": 3, + "s_chunk_data_almost_done": 3, + "s_chunk_data_done": 3, + "s_body_identity": 3, + "s_body_identity_eof": 4, + "s_message_done": 3, + "PARSING_HEADER": 2, + "header_states": 1, + "h_general": 23, + "0": 11, + "h_C": 3, + "h_CO": 3, + "h_CON": 3, + "h_matching_connection": 3, + "h_matching_proxy_connection": 3, + "h_matching_content_length": 3, + "h_matching_transfer_encoding": 3, + "h_matching_upgrade": 3, + "h_connection": 6, + "h_content_length": 5, + "h_transfer_encoding": 5, + "h_upgrade": 4, + "h_matching_transfer_encoding_chunked": 3, + "h_matching_connection_keep_alive": 3, + "h_matching_connection_close": 3, + "h_transfer_encoding_chunked": 4, + "h_connection_keep_alive": 4, + "h_connection_close": 4, + "Macros": 1, + "classes": 1, + "depends": 1, + "define": 14, + "CR": 18, + "LF": 21, + "LOWER": 7, + "0x20": 1, + "IS_ALPHA": 5, + "IS_NUM": 14, + "9": 1, + "IS_ALPHANUM": 3, + "IS_HEX": 2, + "TOKEN": 4, + "IS_URL_CHAR": 6, + "IS_HOST_CHAR": 4, + "0x80": 1, + "_": 3, + "endif": 6, + "start_state": 1, + "cond": 1, + "HPE_STRICT": 1, + "HTTP_STRERROR_GEN": 3, + "#n": 1, + "*description": 1, + "http_strerror_tab": 7, + "http_message_needs_eof": 4, + "parse_url_char": 5, + "ch": 145, + "unhex_val": 7, + "*header_field_mark": 1, + "*header_value_mark": 1, + "*url_mark": 1, + "*body_mark": 1, + "message_complete": 7, + "HPE_INVALID_EOF_STATE": 1, + "header_field_mark": 2, + "header_value_mark": 2, + "url_mark": 2, + "HPE_HEADER_OVERFLOW": 1, + "reexecute_byte": 7, + "HPE_CLOSED_CONNECTION": 1, + "message_begin": 3, + "HPE_INVALID_CONSTANT": 3, + "HTTP_HEAD": 2, + "STRICT_CHECK": 15, + "HPE_INVALID_VERSION": 12, + "HPE_INVALID_STATUS": 3, + "HPE_INVALID_METHOD": 4, + "HTTP_CONNECT": 4, + "HTTP_DELETE": 1, + "HTTP_GET": 1, + "HTTP_LOCK": 1, + "HTTP_MKCOL": 2, + "HTTP_NOTIFY": 1, + "HTTP_OPTIONS": 1, + "HTTP_POST": 2, + "HTTP_REPORT": 1, + "HTTP_SUBSCRIBE": 2, + "HTTP_TRACE": 1, + "HTTP_UNLOCK": 2, + "*matcher": 1, + "matcher": 3, + "method_strings": 2, + "HTTP_CHECKOUT": 1, + "HTTP_COPY": 1, + "HTTP_MOVE": 1, + "HTTP_MERGE": 1, + "HTTP_MSEARCH": 1, + "HTTP_MKACTIVITY": 1, + "HTTP_SEARCH": 1, + "HTTP_PROPFIND": 2, + "HTTP_PUT": 2, + "HTTP_PATCH": 1, + "HTTP_PURGE": 1, + "HTTP_UNSUBSCRIBE": 1, + "HTTP_PROPPATCH": 1, + "url": 4, + "HPE_INVALID_URL": 4, + "HPE_LF_EXPECTED": 1, + "HPE_INVALID_HEADER_TOKEN": 2, + "header_field": 5, + "header_value": 6, + "HPE_INVALID_CONTENT_LENGTH": 4, + "NEW_MESSAGE": 6, + "HPE_CB_headers_complete": 1, + "to_read": 6, + "body": 6, + "body_mark": 2, + "HPE_INVALID_CHUNK_SIZE": 2, + "HPE_INVALID_INTERNAL_STATE": 1, + "HPE_UNKNOWN": 1, + "Does": 1, + "find": 1, + "http_method_str": 1, + "http_errno_name": 1, + ".name": 1, + "http_errno_description": 1, + ".description": 1, + "uf": 14, + "old_uf": 4, + ".off": 2, + "strtoul": 2, + "xffff": 1, + "HPE_PAUSED": 2, + "": 1, + "READ_VSNPRINTF_ARGS": 5, + "rfUTF8_VerifySequence": 7, + "RF_FAILURE": 24, + "RE_STRING_INIT_FAILURE": 8, + "buffAllocated": 11, + "RF_OPTION_SOURCE_ENCODING": 30, + "characterLength": 16, + "*codepoints": 2, + "rfLMS_MacroEvalPtr": 2, + "RF_LMS": 6, + "RF_UTF16_LE": 9, + "RF_UTF16_BE": 7, + "codepoints": 44, + "i/2": 2, + "RF_UTF32_LE": 3, + "RF_UTF32_BE": 3, + "UTF16": 4, + "rfUTF16_Decode": 5, + "rfUTF16_Decode_swap": 5, + "RF_UTF16_BE//": 2, + "RF_UTF32_LE//": 2, + "copy": 4, + "UTF32": 4, + "into": 8, + "RF_UTF32_BE//": 2, + "": 2, + "in": 11, + "encode": 2, + "rfUTF8_Encode": 4, + "While": 2, + "attempting": 2, + "create": 2, + "sequence": 6, + "could": 2, + "properly": 2, + "encoded": 2, + "RE_UTF8_ENCODING": 2, + "End": 2, + "Non": 2, + "code=": 2, + "normally": 1, + "here": 5, + "buffer": 10, + "validity": 2, + "get": 4, + "Error": 2, + "Allocation": 2, + "due": 2, + "invalid": 2, + "rfLMS_Push": 4, + "Memory": 4, + "allocation": 3, + "Local": 2, + "Stack": 2, + "failed": 2, + "Insufficient": 2, + "space": 4, + "Consider": 2, + "compiling": 2, + "bigger": 3, + "Quitting": 2, + "proccess": 2, + "RE_LOCALMEMSTACK_INSUFFICIENT": 8, + "during": 1, + "RF_HEXLE_UI": 8, + "RF_HEXGE_UI": 6, + "ffff": 4, + "xFC0": 4, + "xF000": 2, + "xE": 2, + "F000": 2, + "C0000": 2, + "RE_UTF8_INVALID_CODE_POINT": 2, + "numLen": 8, + "max": 4, + "most": 3, + "environment": 3, + "so": 4, + "chars": 3, + "will": 3, + "certainly": 3, + "fit": 3, + "strcpy": 4, + "utf8ByteLength": 34, + "last": 1, + "utf": 1, + "null": 4, + "termination": 3, + "byteLength*2": 1, + "allocate": 1, + "same": 1, + "different": 1, + "RE_INPUT": 1, + "ends": 3, + "codeBuffer": 9, + "xFEFF": 1, + "big": 14, + "endian": 20, + "xFFFE0000": 1, + "little": 7, + "according": 1, + "standard": 1, + "BOM": 1, + "means": 1, + "rfUTF32_Length": 1, + "sourceP": 2, + "RF_REALLOC": 9, + "<5)>": 1, + "bytesWritten": 2, + "charsN": 5, + "rfUTF8_Decode": 2, + "rfUTF16_Encode": 1, + "RF_STRING_ITERATE_START": 9, + "RF_STRING_ITERATE_END": 9, + "codePoint": 18, + "thisstrP": 32, + "charPos": 8, + "byteI": 7, + "s1P": 2, + "s2P": 2, + "sstrP": 6, + "optionsP": 11, + "*optionsP": 8, + "RF_BITFLAG_ON": 5, + "strstr": 2, + "": 1, + "0x5a": 1, + "0x7a": 1, + "substring": 5, + "search": 1, + "zero": 2, + "equals": 1, + "then": 1, + "okay": 1, + "ERANGE": 1, + "RE_STRING_TOFLOAT_UNDERFLOW": 1, + "RE_STRING_TOFLOAT": 1, + "srcP": 6, + "bytePos": 23, + "terminate": 1, + "afterstrP": 2, + "sscanf": 1, + "<=0)>": 1, + "Counts": 1, + "how": 1, + "many": 1, + "times": 1, + "occurs": 1, + "sstr2": 2, + "move": 12, + "rfString_FindBytePos": 10, + "*tokensN": 1, + "lstrP": 1, + "rstrP": 5, + "parNP": 6, + "*parNP": 2, + "minPos": 17, + "thisPos": 8, + "argList": 8, + "va_arg": 2, + "afterP": 2, + "minPosLength": 3, + "go": 8, + "otherP": 4, + "strncat": 1, + "goes": 1, + "numberP": 1, + "*numberP": 1, + "occurences": 5, + "done": 1, + "<=thisstr->": 1, + "keepstrP": 2, + "keepLength": 2, + "charValue": 12, + "*keepChars": 1, + "charBLength": 5, + "keepChars": 4, + "*keepLength": 1, + "": 1, + "does": 1, + "back": 1, + "cover": 1, + "effectively": 1, + "gets": 1, + "deleted": 1, + "rfUTF8_FromCodepoint": 1, + "kind": 1, + "non": 1, + "clean": 1, + "way": 1, + "internally": 1, + "uses": 1, + "variable": 1, + "use": 1, + "determine": 1, + "current": 5, + "backs": 1, + "memmove": 2, + "by": 1, + "contiuing": 1, + "sure": 2, + "position": 1, + "won": 1, + "array": 1, + "nBytePos": 23, + "RF_STRING_ITERATEB_START": 2, + "RF_STRING_ITERATEB_END": 2, + "pBytePos": 15, + "indexing": 1, + "works": 1, + "pbytePos": 2, + "pth": 2, + "got": 1, + "numP": 1, + "*numP": 1, + "just": 1, + "finding": 1, + "foundN": 10, + "bSize": 4, + "bytePositions": 17, + "bSize*sizeof": 1, + "rfStringX_FromString_IN": 1, + "temp.bIndex": 2, + "temp.bytes": 1, + "temp.byteLength": 1, + "rfStringX_Deinit": 1, + "replace": 3, + "removed": 2, + "one": 2, + "orSize": 5, + "nSize": 4, + "number*diff": 1, + "strncpy": 3, + "smaller": 1, + "diff*number": 1, + "remove": 1, + "equal": 1, + "subP": 7, + "RF_String*sub": 2, + "noMatch": 8, + "*subValues": 2, + "subLength": 6, + "subValues": 8, + "*subLength": 2, + "lastBytePos": 4, + "testity": 2, + "res1": 2, + "res2": 2, + "unused": 3, + "FILE*f": 2, + "utf8BufferSize": 4, + "char*utf8": 3, + "<0)>": 1, + "Failure": 1, + "initialize": 1, + "reading": 1, + "Little": 1, + "Endian": 1, + "32": 1, + "bytesN=": 1, + "sP": 2, + "encodingP": 1, + "*utf32": 1, + "utf16": 11, + "*encodingP": 1, + "fwrite": 5, + "logging": 5, + "utf32": 10, + "i_WRITE_CHECK": 1, + "RE_FILE_WRITE": 1, + "strncasecmp": 2, + "_strnicmp": 1, + "REF_TABLE_SIZE": 1, + "BUFFER_BLOCK": 5, + "BUFFER_SPAN": 9, + "MKD_LI_END": 1, + "gperf_case_strncmp": 1, + "GPERF_DOWNCASE": 1, + "GPERF_CASE_STRNCMP": 1, + "link_ref": 2, + "*link": 1, + "*title": 1, + "sd_markdown": 6, + "tag": 1, + "tag_len": 3, + "w": 6, + "is_empty": 4, + "htmlblock_end": 3, + "*curtag": 2, + "*rndr": 4, + "start_of_line": 2, + "tag_size": 3, + "curtag": 8, + "end_tag": 4, + "block_lines": 3, + "htmlblock_end_tag": 1, + "rndr": 25, + "parse_htmlblock": 1, + "*ob": 3, + "do_render": 4, + "tag_end": 7, + "work": 4, + "find_block_tag": 1, + "work.size": 5, + "cb.blockhtml": 6, + "opaque": 8, + "parse_table_row": 1, + "columns": 3, + "*col_data": 1, + "header_flag": 3, + "col": 9, + "*row_work": 1, + "cb.table_cell": 3, + "cb.table_row": 2, + "row_work": 4, + "rndr_newbuf": 2, + "cell_start": 5, + "cell_end": 6, + "*cell_work": 1, + "cell_work": 3, + "_isspace": 3, + "parse_inline": 1, + "col_data": 2, + "rndr_popbuf": 2, + "empty_cell": 2, + "parse_table_header": 1, + "*columns": 2, + "**column_data": 1, + "header_end": 7, + "under_end": 1, + "*column_data": 1, + "calloc": 1, + "beg": 10, + "doc_size": 6, + "document": 9, + "UTF8_BOM": 1, + "is_ref": 1, + "md": 18, + "refs": 2, + "expand_tabs": 1, + "bufputc": 2, + "bufgrow": 1, + "MARKDOWN_GROW": 1, + "cb.doc_header": 2, + "parse_block": 1, + "cb.doc_footer": 2, + "bufrelease": 3, + "free_link_refs": 1, + "work_bufs": 8, + ".size": 2, + "sd_markdown_free": 1, + "*md": 1, + ".asize": 2, + ".item": 2, + "stack_free": 2, + "sd_version": 1, + "*ver_major": 2, + "*ver_minor": 2, + "*ver_revision": 2, + "SUNDOWN_VER_MAJOR": 1, + "SUNDOWN_VER_MINOR": 1, + "SUNDOWN_VER_REVISION": 1, + "ATSHOME_LIBATS_DYNARRAY_CATS": 3, + "atslib_dynarray_memcpy": 1, + "atslib_dynarray_memmove": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "CONFIG_SMP": 1, + "DEFINE_MUTEX": 1, + "cpu_add_remove_lock": 3, + "cpu_maps_update_begin": 9, + "mutex_lock": 5, + "cpu_maps_update_done": 9, + "mutex_unlock": 6, + "RAW_NOTIFIER_HEAD": 1, + "cpu_chain": 4, + "cpu_hotplug_disabled": 7, + "CONFIG_HOTPLUG_CPU": 2, + "task_struct": 5, + "*active_writer": 1, + "mutex": 1, + "lock": 6, + "cpu_hotplug": 1, + ".active_writer": 1, + ".lock": 1, + "__MUTEX_INITIALIZER": 1, + "cpu_hotplug.lock": 8, + ".refcount": 1, + "get_online_cpus": 2, + "might_sleep": 1, + "cpu_hotplug.active_writer": 6, + "cpu_hotplug.refcount": 3, + "EXPORT_SYMBOL_GPL": 4, + "put_online_cpus": 2, + "wake_up_process": 1, + "cpu_hotplug_begin": 4, + "__set_current_state": 1, + "TASK_UNINTERRUPTIBLE": 1, + "schedule": 1, + "cpu_hotplug_done": 4, + "__ref": 6, + "register_cpu_notifier": 2, + "notifier_block": 3, + "*nb": 3, + "raw_notifier_chain_register": 1, + "nb": 2, + "__cpu_notify": 6, + "*v": 3, + "nr_to_call": 2, + "*nr_calls": 1, + "__raw_notifier_call_chain": 1, + "nr_calls": 9, + "notifier_to_errno": 1, + "cpu_notify": 5, + "cpu_notify_nofail": 4, + "BUG_ON": 4, + "EXPORT_SYMBOL": 8, + "unregister_cpu_notifier": 2, + "raw_notifier_chain_unregister": 1, + "clear_tasks_mm_cpumask": 1, + "cpu": 57, + "WARN_ON": 1, + "cpu_online": 5, + "rcu_read_lock": 1, + "for_each_process": 2, + "find_lock_task_mm": 1, + "cpumask_clear_cpu": 5, + "mm_cpumask": 1, + "mm": 1, + "task_unlock": 1, + "rcu_read_unlock": 1, + "check_for_tasks": 2, + "write_lock_irq": 1, + "tasklist_lock": 2, + "task_cpu": 1, + "TASK_RUNNING": 1, + "utime": 1, + "stime": 1, + "printk": 12, + "KERN_WARNING": 3, + "comm": 1, + "task_pid_nr": 1, + "write_unlock_irq": 1, + "take_cpu_down_param": 3, + "mod": 13, + "*hcpu": 3, + "take_cpu_down": 2, + "*_param": 1, + "*param": 1, + "_param": 1, + "__cpu_disable": 1, + "CPU_DYING": 1, + "param": 2, + "hcpu": 10, + "_cpu_down": 3, + "tasks_frozen": 4, + "CPU_TASKS_FROZEN": 2, + "tcd_param": 2, + ".mod": 1, + ".hcpu": 1, + "num_online_cpus": 2, + "EBUSY": 3, + "CPU_DOWN_PREPARE": 1, + "CPU_DOWN_FAILED": 2, + "__func__": 2, + "out_release": 3, + "__stop_machine": 1, + "cpumask_of": 1, + "idle_cpu": 1, + "cpu_relax": 1, + "__cpu_die": 1, + "CPU_DEAD": 1, + "CPU_POST_DEAD": 1, + "cpu_down": 2, + "__cpuinit": 3, + "_cpu_up": 3, + "*idle": 1, + "cpu_present": 1, + "idle": 4, + "idle_thread_get": 1, + "IS_ERR": 1, + "PTR_ERR": 1, + "CPU_UP_PREPARE": 1, + "out_notify": 3, + "__cpu_up": 1, + "CPU_ONLINE": 1, + "CPU_UP_CANCELED": 1, + "cpu_up": 2, + "CONFIG_MEMORY_HOTPLUG": 2, + "nid": 5, + "pg_data_t": 1, + "*pgdat": 1, + "cpu_possible": 1, + "KERN_ERR": 5, + "CONFIG_IA64": 1, + "cpu_to_node": 1, + "node_online": 1, + "mem_online_node": 1, + "pgdat": 3, + "NODE_DATA": 1, + "node_zonelists": 1, + "_zonerefs": 1, + "zone": 1, + "zonelists_mutex": 2, + "build_all_zonelists": 1, + "CONFIG_PM_SLEEP_SMP": 2, + "cpumask_var_t": 1, + "frozen_cpus": 9, + "__weak": 4, + "arch_disable_nonboot_cpus_begin": 2, + "arch_disable_nonboot_cpus_end": 2, + "disable_nonboot_cpus": 1, + "first_cpu": 3, + "cpumask_first": 1, + "cpu_online_mask": 3, + "cpumask_clear": 2, + "for_each_online_cpu": 1, + "cpumask_set_cpu": 5, + "arch_enable_nonboot_cpus_begin": 2, + "arch_enable_nonboot_cpus_end": 2, + "enable_nonboot_cpus": 1, + "cpumask_empty": 1, + "KERN_INFO": 2, + "for_each_cpu": 1, + "__init": 2, + "alloc_frozen_cpus": 2, + "alloc_cpumask_var": 1, + "GFP_KERNEL": 1, + "__GFP_ZERO": 1, + "core_initcall": 2, + "cpu_hotplug_disable_before_freeze": 2, + "cpu_hotplug_enable_after_thaw": 2, + "cpu_hotplug_pm_callback": 2, + "action": 2, + "*ptr": 1, + "PM_SUSPEND_PREPARE": 1, + "PM_HIBERNATION_PREPARE": 1, + "PM_POST_SUSPEND": 1, + "PM_POST_HIBERNATION": 1, + "NOTIFY_DONE": 1, + "NOTIFY_OK": 1, + "cpu_hotplug_pm_sync_init": 2, + "pm_notifier": 1, + "notify_cpu_starting": 1, + "CPU_STARTING": 1, + "cpumask_test_cpu": 1, + "CPU_STARTING_FROZEN": 1, + "MASK_DECLARE_1": 3, + "UL": 1, + "MASK_DECLARE_2": 3, + "MASK_DECLARE_4": 3, + "MASK_DECLARE_8": 9, + "cpu_bit_bitmap": 2, + "BITS_PER_LONG": 2, + "BITS_TO_LONGS": 1, + "NR_CPUS": 2, + "DECLARE_BITMAP": 6, + "cpu_all_bits": 2, + "CPU_BITS_ALL": 2, + "CONFIG_INIT_ALL_POSSIBLE": 1, + "cpu_possible_bits": 6, + "CONFIG_NR_CPUS": 5, + "__read_mostly": 5, + "cpumask": 7, + "*const": 4, + "cpu_possible_mask": 2, + "to_cpumask": 15, + "cpu_online_bits": 5, + "cpu_present_bits": 5, + "cpu_present_mask": 2, + "cpu_active_bits": 4, + "cpu_active_mask": 2, + "set_cpu_possible": 1, + "possible": 2, + "set_cpu_present": 1, + "present": 2, + "set_cpu_online": 1, + "online": 2, + "set_cpu_active": 1, + "active": 2, + "init_cpu_present": 1, + "*src": 3, + "cpumask_copy": 3, + "init_cpu_possible": 1, + "init_cpu_online": 1, + "HELLO_H": 2, + "hello": 1, + "*check_commit": 1, + "OBJ_COMMIT": 5, + "deref_tag": 1, + "parse_object": 1, + "check_commit": 2, + "lookup_commit_reference_gently": 1, + "lookup_commit_reference": 2, + "ref_name": 2, + "hashcmp": 2, + "object.sha1": 8, + "warning": 1, + "alloc_commit_node": 1, + "get_sha1": 1, + "parse_commit_date": 2, + "*tail": 2, + "*dateptr": 1, + "tail": 12, + "dateptr": 2, + "**commit_graft": 1, + "commit_graft_alloc": 4, + "commit_graft_nr": 5, + "commit_graft_pos": 2, + "lo": 6, + "hi": 5, + "mi": 5, + "*graft": 3, + "graft": 10, + "ignore_dups": 2, + "pos": 7, + "alloc_nr": 1, + "*bufptr": 1, + "**pptr": 1, + "bufptr": 12, + "46": 1, + "5": 1, + "45": 1, + "bogus": 1, + "get_sha1_hex": 2, + "lookup_tree": 1, + "pptr": 5, + "lookup_commit_graft": 1, + "*new_parent": 2, + "48": 1, + "7": 1, + "47": 1, + "bad": 1, + "grafts_replace_parents": 1, + "new_parent": 6, + "lookup_commit": 2, + "commit_list_insert": 2, + "object_type": 1, + "read_sha1_file": 1, + "*eol": 1, + "commit_buffer": 1, + "b_date": 3, + "a_date": 2, + "*commit_list_get_next": 1, + "commit_list_set_next": 1, + "llist_mergesort": 1, + "peel_to_type": 1, + "*desc": 1, + "desc": 5, + "xmalloc": 2, + "strdup": 1, + "*new": 1, + "new": 4, + "syscalldef": 1, + "syscalldefs": 1, + "SYSCALL_OR_NUM": 3, + "SYS_restart_syscall": 1, + "MAKE_UINT16": 3, + "SYS_exit": 1, + "SYS_fork": 1, "yajl_status_to_string": 1, "yajl_status": 4, "statStr": 6, @@ -11069,7 +11073,32 @@ "verbose": 2, "yajl_render_error_string": 1, "yajl_get_bytes_consumed": 1, - "yajl_free_error": 1 + "yajl_free_error": 1, + "git_cache_init": 1, + "git_cache": 4, + "*cache": 4, + "git_cached_obj_freeptr": 1, + "free_ptr": 2, + "git__size_t_powerof2": 1, + "cache": 26, + "size_mask": 6, + "lru_count": 1, + "free_obj": 4, + "git_mutex_init": 1, + "nodes": 10, + "git_cached_obj": 5, + "git_cache_free": 1, + "git_cached_obj_decref": 3, + "*git_cache_get": 1, + "*node": 2, + "*result": 1, + "git_mutex_lock": 2, + "node": 9, + "git_cached_obj_incref": 3, + "git_mutex_unlock": 2, + "*git_cache_try_store": 1, + "*_entry": 1, + "_entry": 1 }, "C#": { "@": 1, @@ -11249,1652 +11278,389 @@ "Console.WriteLine": 2 }, "C++": { - "class": 40, - "Bar": 2, - "{": 726, - "protected": 4, - "char": 127, - "*name": 6, - ";": 2783, - "public": 33, - "void": 241, - "hello": 2, - "(": 3102, - ")": 3105, - "}": 726, "//": 315, - "///": 843, - "mainpage": 1, - "C": 6, - "library": 14, - "for": 105, - "Broadcom": 3, - "BCM": 14, - "as": 28, - "used": 17, - "in": 165, - "Raspberry": 6, - "Pi": 5, - "This": 19, - "is": 102, - "a": 157, - "RPi": 17, - ".": 16, - "It": 7, - "provides": 3, - "access": 17, - "to": 254, - "GPIO": 87, - "and": 118, - "other": 17, - "IO": 2, - "functions": 19, - "on": 55, - "the": 541, - "chip": 9, - "allowing": 3, - "pins": 40, - "pin": 90, - "IDE": 4, - "plug": 3, - "board": 2, - "so": 2, - "you": 29, - "can": 21, - "control": 17, - "interface": 9, - "with": 33, - "various": 4, - "external": 3, - "devices.": 1, - "reading": 3, - "digital": 2, - "inputs": 2, - "setting": 2, - "outputs": 1, - "using": 11, - "SPI": 44, - "I2C": 29, - "accessing": 2, - "system": 13, - "timers.": 1, - "Pin": 65, - "event": 3, - "detection": 2, - "supported": 3, - "by": 53, - "polling": 1, - "interrupts": 1, - "are": 36, - "not": 29, - "+": 80, - "compatible": 1, - "installs": 1, - "header": 7, - "file": 31, - "non": 2, - "-": 438, - "shared": 2, - "any": 23, - "Linux": 2, - "based": 4, - "distro": 1, - "but": 5, - "clearly": 1, - "no": 7, - "use": 37, - "except": 2, - "or": 44, - "another": 1, - "The": 50, - "version": 38, - "of": 215, - "package": 1, - "that": 36, - "this": 57, - "documentation": 3, - "refers": 1, - "be": 35, - "downloaded": 1, - "from": 91, - "http": 11, - "//www.airspayce.com/mikem/bcm2835/bcm2835": 1, - "tar.gz": 1, - "You": 9, - "find": 2, - "latest": 2, - "at": 20, - "//www.airspayce.com/mikem/bcm2835": 1, - "Several": 1, - "example": 3, - "programs": 4, - "provided.": 1, - "Based": 1, - "data": 26, - "//elinux.org/RPi_Low": 1, - "level_peripherals": 1, - "//www.raspberrypi.org/wp": 1, - "content/uploads/2012/02/BCM2835": 1, - "ARM": 5, - "Peripherals.pdf": 1, - "//www.scribd.com/doc/101830961/GPIO": 2, - "Pads": 3, - "Control2": 2, - "also": 3, - "online": 1, - "help": 1, - "discussion": 1, - "//groups.google.com/group/bcm2835": 1, - "Please": 4, - "group": 23, - "all": 11, - "questions": 1, - "discussions": 1, - "topic.": 1, - "Do": 1, - "contact": 1, - "author": 3, - "directly": 2, - "unless": 1, - "it": 19, - "discuss": 1, - "commercial": 1, - "licensing.": 1, - "Tested": 1, - "debian6": 1, - "wheezy": 3, - "raspbian": 3, - "Occidentalisv01": 2, - "CAUTION": 1, - "has": 29, - "been": 14, - "observed": 1, - "when": 22, - "detect": 3, - "enables": 3, - "such": 4, - "bcm2835_gpio_len": 5, - "pulled": 1, - "LOW": 8, - "cause": 1, - "temporary": 1, - "hangs": 1, - "Occidentalisv01.": 1, - "Reason": 1, - "yet": 1, - "determined": 1, - "suspect": 1, - "an": 23, - "interrupt": 3, - "handler": 1, - "hitting": 1, - "hard": 1, - "loop": 2, - "those": 3, - "OSs.": 1, - "If": 11, - "must": 6, - "friends": 2, - "make": 6, - "sure": 6, - "disable": 2, - "bcm2835_gpio_cler_len": 1, - "after": 18, - "use.": 1, - "par": 9, - "Installation": 1, - "consists": 1, - "single": 2, - "which": 14, - "will": 15, - "installed": 1, - "usual": 3, - "places": 1, - "install": 3, - "code": 12, - "#": 1, - "download": 2, - "say": 1, - "bcm2835": 7, - "xx.tar.gz": 2, - "then": 15, - "tar": 1, - "zxvf": 1, - "cd": 1, - "xx": 2, - "./configure": 1, - "sudo": 2, - "check": 4, - "endcode": 2, - "Physical": 21, - "Addresses": 6, - "bcm2835_peri_read": 3, - "bcm2835_peri_write": 3, - "bcm2835_peri_set_bits": 2, - "low": 5, - "level": 10, - "peripheral": 14, - "register": 17, - "functions.": 4, - "They": 1, - "designed": 3, - "physical": 4, - "addresses": 4, - "described": 1, - "section": 6, - "BCM2835": 2, - "Peripherals": 1, - "manual.": 1, - "range": 3, - "FFFFFF": 1, - "peripherals.": 1, - "bus": 4, - "peripherals": 2, - "set": 18, - "up": 18, - "map": 3, - "onto": 1, - "address": 13, - "starting": 1, - "E000000.": 1, - "Thus": 1, - "advertised": 1, - "manual": 8, - "Ennnnnn": 1, - "available": 6, - "nnnnnn.": 1, - "base": 8, - "registers": 12, - "following": 2, - "externals": 1, - "bcm2835_gpio": 2, - "bcm2835_pwm": 2, - "bcm2835_clk": 2, - "bcm2835_pads": 2, - "bcm2835_spio0": 1, - "bcm2835_st": 1, - "bcm2835_bsc0": 1, - "bcm2835_bsc1": 1, - "Numbering": 1, - "numbering": 1, - "different": 5, - "inconsistent": 1, - "underlying": 4, - "numbering.": 1, - "//elinux.org/RPi_BCM2835_GPIOs": 1, - "some": 4, - "well": 1, - "power": 1, - "ground": 1, - "pins.": 1, - "Not": 4, - "header.": 1, - "Version": 40, - "P5": 6, - "connector": 1, - "V": 2, - "Gnd.": 1, - "passed": 4, - "number": 52, - "_not_": 1, - "number.": 1, - "There": 1, - "symbolic": 1, - "definitions": 3, - "each": 7, - "should": 10, - "convenience.": 1, - "See": 7, - "ref": 32, - "RPiGPIOPin.": 22, - "Pins": 2, - "bcm2835_spi_*": 1, - "allow": 5, - "SPI0": 17, - "send": 3, - "received": 3, - "Serial": 3, - "Peripheral": 6, - "Interface": 2, - "For": 6, - "more": 4, - "information": 3, - "about": 6, - "see": 14, - "//en.wikipedia.org/wiki/Serial_Peripheral_Interface_Bus": 1, - "When": 12, - "bcm2835_spi_begin": 3, - "called": 13, - "changes": 2, - "bahaviour": 1, - "their": 6, - "default": 14, - "behaviour": 1, - "order": 14, - "support": 4, - "SPI.": 1, - "While": 1, - "able": 2, - "state": 33, - "through": 4, - "bcm2835_spi_gpio_write": 1, - "bcm2835_spi_end": 4, - "revert": 1, - "configured": 1, - "controled": 1, - "bcm2835_gpio_*": 1, - "calls.": 1, - "P1": 56, - "MOSI": 8, - "MISO": 6, - "CLK": 6, - "CE0": 5, - "CE1": 6, - "bcm2835_i2c_*": 2, - "BSC": 10, - "generically": 1, - "referred": 1, - "I": 4, - "//en.wikipedia.org/wiki/I": 1, - "%": 7, - "C2": 1, - "B2C": 1, - "V2": 2, - "SDA": 3, - "SLC": 1, - "Real": 1, - "Time": 1, - "performance": 2, - "constraints": 2, - "user": 3, - "i.e.": 1, - "they": 2, - "run": 2, - "Such": 1, - "part": 1, - "kernel": 4, - "usually": 2, - "subject": 1, - "paging": 1, - "swapping": 2, - "while": 17, - "does": 4, - "things": 1, - "besides": 1, - "running": 1, - "your": 12, - "program.": 1, - "means": 8, - "expect": 2, - "get": 5, - "real": 4, - "time": 10, - "timing": 3, - "programs.": 1, - "In": 2, - "particular": 1, - "there": 4, - "guarantee": 1, - "bcm2835_delay": 5, - "bcm2835_delayMicroseconds": 6, - "return": 240, - "exactly": 2, - "requested.": 1, - "fact": 2, - "depending": 1, - "activity": 1, - "host": 1, - "etc": 1, - "might": 1, - "significantly": 1, - "longer": 1, - "delay": 9, - "times": 2, - "than": 6, - "one": 73, - "asked": 1, - "for.": 1, - "So": 1, - "please": 2, - "dont": 1, - "request.": 1, - "Arjan": 2, - "reports": 1, - "prevent": 4, - "fragment": 2, - "struct": 13, - "sched_param": 1, - "sp": 4, - "memset": 3, - "&": 203, - "sizeof": 15, - "sp.sched_priority": 1, - "sched_get_priority_max": 1, - "SCHED_FIFO": 2, - "sched_setscheduler": 1, - "mlockall": 1, - "MCL_CURRENT": 1, - "|": 40, - "MCL_FUTURE": 1, - "Open": 2, - "Source": 2, - "Licensing": 2, - "GPL": 2, - "appropriate": 7, - "option": 1, - "if": 359, - "want": 5, - "share": 2, - "source": 12, - "application": 2, - "everyone": 1, - "distribute": 1, - "give": 2, - "them": 1, - "right": 9, - "who": 1, - "uses": 4, - "it.": 3, - "wish": 2, - "software": 1, - "under": 2, - "contribute": 1, - "open": 6, - "community": 1, - "accordance": 1, - "distributed.": 1, - "//www.gnu.org/copyleft/gpl.html": 1, - "COPYING": 1, - "Acknowledgements": 1, - "Some": 1, - "inspired": 2, - "Dom": 1, - "Gert.": 1, - "Alan": 1, - "Barr.": 1, - "Revision": 1, - "History": 1, - "Initial": 1, - "release": 1, - "Minor": 1, - "bug": 1, - "fixes": 1, - "Added": 11, - "bcm2835_spi_transfern": 3, - "Fixed": 4, - "problem": 2, - "prevented": 1, - "being": 4, - "used.": 2, - "Reported": 5, - "David": 1, - "Robinson.": 1, - "bcm2835_close": 4, - "deinit": 1, - "library.": 3, - "Suggested": 1, - "sar": 1, - "Ortiz": 1, - "Document": 1, - "testing": 2, - "Functions": 1, - "bcm2835_gpio_ren": 3, - "bcm2835_gpio_fen": 3, - "bcm2835_gpio_hen": 3, - "bcm2835_gpio_aren": 3, - "bcm2835_gpio_afen": 3, - "now": 4, - "only": 6, - "specified.": 1, - "Other": 1, - "were": 1, - "already": 1, - "previously": 10, - "enabled": 4, - "stay": 1, - "enabled.": 1, - "bcm2835_gpio_clr_ren": 2, - "bcm2835_gpio_clr_fen": 2, - "bcm2835_gpio_clr_hen": 2, - "bcm2835_gpio_clr_len": 2, - "bcm2835_gpio_clr_aren": 2, - "bcm2835_gpio_clr_afen": 2, - "clear": 3, - "enable": 3, - "individual": 1, - "suggested": 3, - "Andreas": 1, - "Sundstrom.": 1, - "bcm2835_spi_transfernb": 2, - "buffers": 3, - "read": 21, - "write.": 1, - "Improvements": 3, - "barrier": 3, - "maddin.": 1, - "contributed": 1, - "mikew": 1, - "noticed": 1, - "was": 6, - "mallocing": 1, - "memory": 14, - "mmaps": 1, - "/dev/mem.": 1, - "ve": 4, - "removed": 1, - "mallocs": 1, - "frees": 1, - "found": 1, - "calling": 9, - "nanosleep": 7, - "takes": 1, - "least": 2, - "us.": 1, - "need": 6, - "link": 3, - "version.": 1, - "s": 26, - "doc": 1, - "Also": 1, - "added": 2, - "define": 2, - "passwrd": 1, - "value": 50, - "Gert": 1, - "says": 1, - "needed": 3, - "change": 3, - "pad": 4, - "settings.": 1, - "Changed": 1, - "names": 3, - "collisions": 1, - "wiringPi.": 1, - "Macros": 2, - "delayMicroseconds": 3, - "disabled": 2, - "defining": 1, - "BCM2835_NO_DELAY_COMPATIBILITY": 2, - "incorrect": 2, - "New": 6, - "mapping": 3, - "Hardware": 1, - "pointers": 2, - "initialisation": 2, - "externally": 1, - "bcm2835_spi0.": 1, - "Now": 4, - "compiles": 1, - "even": 2, - "CLOCK_MONOTONIC_RAW": 1, - "CLOCK_MONOTONIC": 3, - "instead.": 1, - "errors": 1, - "divider": 15, - "frequencies": 2, - "MHz": 14, - "clock.": 6, - "Ben": 1, - "Simpson.": 1, - "end": 23, - "examples": 1, - "Mark": 5, - "Wolfe.": 1, - "bcm2835_gpio_set_multi": 2, - "bcm2835_gpio_clr_multi": 2, - "bcm2835_gpio_write_multi": 4, - "mask": 20, - "once.": 1, - "Requested": 2, - "Sebastian": 2, - "Loncar.": 2, - "bcm2835_gpio_write_mask.": 1, - "Changes": 1, - "timer": 2, - "counter": 1, - "instead": 4, - "clock_gettime": 1, - "improved": 1, - "accuracy.": 1, - "No": 2, - "lrt": 1, - "now.": 1, - "Contributed": 1, - "van": 1, - "Vught.": 1, - "Removed": 1, - "inlines": 1, - "previous": 6, - "patch": 1, - "since": 3, - "don": 1, - "t": 15, - "seem": 1, - "work": 1, - "everywhere.": 1, - "olly.": 1, - "Patch": 2, - "Dootson": 2, - "close": 7, - "/dev/mem": 4, - "granted.": 1, - "susceptible": 1, - "bit": 19, - "overruns.": 1, - "courtesy": 1, - "Jeremy": 1, - "Mortis.": 1, - "definition": 3, - "BCM2835_GPFEN0": 2, - "broke": 1, - "ability": 1, - "falling": 4, - "edge": 8, - "events.": 1, - "Dootson.": 2, - "bcm2835_i2c_set_baudrate": 2, - "bcm2835_i2c_read_register_rs.": 1, - "bcm2835_i2c_read": 4, - "bcm2835_i2c_write": 4, - "fix": 1, - "ocasional": 1, - "reads": 2, - "completing.": 1, - "Patched": 1, - "p": 6, - "[": 293, - "atched": 1, - "his": 1, - "submitted": 1, - "high": 5, - "load": 1, - "processes.": 1, - "Updated": 1, - "distribution": 1, - "location": 6, - "details": 1, - "airspayce.com": 1, - "missing": 1, - "unmapmem": 1, - "pads": 7, - "leak.": 1, - "Hartmut": 1, - "Henkel.": 1, - "Mike": 1, - "McCauley": 1, - "mikem@airspayce.com": 1, - "DO": 1, - "NOT": 3, - "CONTACT": 1, - "THE": 2, - "AUTHOR": 1, - "DIRECTLY": 1, - "USE": 1, - "LISTS": 1, "#ifndef": 29, - "BCM2835_H": 3, + "NINJA_METRICS_H_": 3, "#define": 343, "#include": 129, - "": 2, - "defgroup": 7, - "constants": 1, - "Constants": 1, - "passing": 1, - "values": 3, - "here": 1, - "@": 14, - "HIGH": 12, - "true": 49, - "volts": 2, - "pin.": 21, - "false": 48, - "Speed": 1, - "core": 1, - "clock": 21, - "core_clk": 1, - "BCM2835_CORE_CLK_HZ": 1, - "<": 255, - "Base": 17, - "Address": 10, - "BCM2835_PERI_BASE": 9, - "System": 10, - "Timer": 9, - "BCM2835_ST_BASE": 1, - "BCM2835_GPIO_PADS": 2, - "Clock/timer": 1, - "BCM2835_CLOCK_BASE": 1, - "BCM2835_GPIO_BASE": 6, - "BCM2835_SPI0_BASE": 1, - "BSC0": 2, - "BCM2835_BSC0_BASE": 1, - "PWM": 2, - "BCM2835_GPIO_PWM": 1, - "C000": 1, - "BSC1": 2, - "BCM2835_BSC1_BASE": 1, - "ST": 1, - "registers.": 10, - "Available": 8, - "bcm2835_init": 11, - "extern": 72, - "volatile": 13, - "uint32_t": 39, - "*bcm2835_st": 1, - "*bcm2835_gpio": 1, - "*bcm2835_pwm": 1, - "*bcm2835_clk": 1, - "PADS": 1, - "*bcm2835_pads": 1, - "*bcm2835_spi0": 1, - "*bcm2835_bsc0": 1, - "*bcm2835_bsc1": 1, - "Size": 2, - "page": 5, - "BCM2835_PAGE_SIZE": 1, - "*1024": 2, - "block": 7, - "BCM2835_BLOCK_SIZE": 1, - "offsets": 2, - "BCM2835_GPIO_BASE.": 1, - "Offsets": 1, - "into": 6, - "bytes": 29, - "per": 3, - "Register": 1, - "View": 1, - "BCM2835_GPFSEL0": 1, - "Function": 8, - "Select": 49, - "BCM2835_GPFSEL1": 1, - "BCM2835_GPFSEL2": 1, - "BCM2835_GPFSEL3": 1, - "c": 72, - "BCM2835_GPFSEL4": 1, - "BCM2835_GPFSEL5": 1, - "BCM2835_GPSET0": 1, - "Output": 6, - "Set": 2, - "BCM2835_GPSET1": 1, - "BCM2835_GPCLR0": 1, - "Clear": 18, - "BCM2835_GPCLR1": 1, - "BCM2835_GPLEV0": 1, - "Level": 2, - "BCM2835_GPLEV1": 1, - "BCM2835_GPEDS0": 1, - "Event": 11, - "Detect": 35, - "Status": 6, - "BCM2835_GPEDS1": 1, - "BCM2835_GPREN0": 1, - "Rising": 8, - "Edge": 16, - "Enable": 38, - "BCM2835_GPREN1": 1, - "Falling": 8, - "BCM2835_GPFEN1": 1, - "BCM2835_GPHEN0": 1, - "High": 4, - "BCM2835_GPHEN1": 1, - "BCM2835_GPLEN0": 1, - "Low": 5, - "BCM2835_GPLEN1": 1, - "BCM2835_GPAREN0": 1, - "Async.": 4, - "BCM2835_GPAREN1": 1, - "BCM2835_GPAFEN0": 1, - "BCM2835_GPAFEN1": 1, - "BCM2835_GPPUD": 1, - "Pull": 11, - "up/down": 10, - "BCM2835_GPPUDCLK0": 1, - "Clock": 11, - "BCM2835_GPPUDCLK1": 1, - "brief": 12, - "bcm2835PortFunction": 1, - "Port": 1, - "function": 19, - "select": 9, - "modes": 1, - "bcm2835_gpio_fsel": 2, - "typedef": 50, - "enum": 17, - "BCM2835_GPIO_FSEL_INPT": 1, - "b000": 1, - "Input": 2, - "BCM2835_GPIO_FSEL_OUTP": 1, - "b001": 1, - "BCM2835_GPIO_FSEL_ALT0": 1, - "b100": 1, - "Alternate": 6, - "BCM2835_GPIO_FSEL_ALT1": 1, - "b101": 1, - "BCM2835_GPIO_FSEL_ALT2": 1, - "b110": 1, - "BCM2835_GPIO_FSEL_ALT3": 1, - "b111": 2, - "BCM2835_GPIO_FSEL_ALT4": 1, - "b011": 1, - "BCM2835_GPIO_FSEL_ALT5": 1, - "b010": 1, - "BCM2835_GPIO_FSEL_MASK": 1, - "bits": 11, - "bcm2835FunctionSelect": 2, - "bcm2835PUDControl": 4, - "Pullup/Pulldown": 1, - "defines": 3, - "bcm2835_gpio_pud": 5, - "BCM2835_GPIO_PUD_OFF": 1, - "b00": 1, - "Off": 3, - "pull": 1, - "BCM2835_GPIO_PUD_DOWN": 1, - "b01": 1, - "Down": 1, - "BCM2835_GPIO_PUD_UP": 1, - "b10": 1, - "Up": 1, - "Pad": 11, - "BCM2835_PADS_GPIO_0_27": 1, - "BCM2835_PADS_GPIO_28_45": 1, - "BCM2835_PADS_GPIO_46_53": 1, - "Control": 6, - "masks": 1, - "BCM2835_PAD_PASSWRD": 1, - "A": 7, - "<<": 29, - "Password": 1, - "BCM2835_PAD_SLEW_RATE_UNLIMITED": 1, - "Slew": 1, - "rate": 3, - "unlimited": 1, - "BCM2835_PAD_HYSTERESIS_ENABLED": 1, - "Hysteresis": 1, - "BCM2835_PAD_DRIVE_2mA": 1, - "mA": 8, - "drive": 8, - "current": 26, - "BCM2835_PAD_DRIVE_4mA": 1, - "BCM2835_PAD_DRIVE_6mA": 1, - "BCM2835_PAD_DRIVE_8mA": 1, - "BCM2835_PAD_DRIVE_10mA": 1, - "BCM2835_PAD_DRIVE_12mA": 1, - "BCM2835_PAD_DRIVE_14mA": 1, - "BCM2835_PAD_DRIVE_16mA": 1, - "bcm2835PadGroup": 4, - "specification": 1, - "bcm2835_gpio_pad": 2, - "BCM2835_PAD_GROUP_GPIO_0_27": 1, - "BCM2835_PAD_GROUP_GPIO_28_45": 1, - "BCM2835_PAD_GROUP_GPIO_46_53": 1, - "Numbers": 1, - "Here": 1, - "we": 10, - "terms": 4, - "numbers.": 1, - "These": 6, - "requiring": 1, - "bin": 1, - "connected": 1, - "adopt": 1, - "alternate": 7, - "function.": 3, - "slightly": 1, - "pinouts": 1, - "these": 1, - "RPI_V2_*.": 1, - "At": 1, - "bootup": 1, - "UART0_TXD": 3, - "UART0_RXD": 3, - "ie": 3, - "alt0": 1, - "respectively": 1, - "dedicated": 1, - "cant": 1, - "controlled": 1, - "independently": 1, - "RPI_GPIO_P1_03": 6, - "RPI_GPIO_P1_05": 6, - "RPI_GPIO_P1_07": 1, - "RPI_GPIO_P1_08": 1, - "defaults": 4, - "alt": 4, - "RPI_GPIO_P1_10": 1, - "RPI_GPIO_P1_11": 1, - "RPI_GPIO_P1_12": 1, - "RPI_GPIO_P1_13": 1, - "RPI_GPIO_P1_15": 1, - "RPI_GPIO_P1_16": 1, - "RPI_GPIO_P1_18": 1, - "RPI_GPIO_P1_19": 1, - "RPI_GPIO_P1_21": 1, - "RPI_GPIO_P1_22": 1, - "RPI_GPIO_P1_23": 1, - "RPI_GPIO_P1_24": 1, - "RPI_GPIO_P1_26": 1, - "RPI_V2_GPIO_P1_03": 1, - "RPI_V2_GPIO_P1_05": 1, - "RPI_V2_GPIO_P1_07": 1, - "RPI_V2_GPIO_P1_08": 1, - "RPI_V2_GPIO_P1_10": 1, - "RPI_V2_GPIO_P1_11": 1, - "RPI_V2_GPIO_P1_12": 1, - "RPI_V2_GPIO_P1_13": 1, - "RPI_V2_GPIO_P1_15": 1, - "RPI_V2_GPIO_P1_16": 1, - "RPI_V2_GPIO_P1_18": 1, - "RPI_V2_GPIO_P1_19": 1, - "RPI_V2_GPIO_P1_21": 1, - "RPI_V2_GPIO_P1_22": 1, - "RPI_V2_GPIO_P1_23": 1, - "RPI_V2_GPIO_P1_24": 1, - "RPI_V2_GPIO_P1_26": 1, - "RPI_V2_GPIO_P5_03": 1, - "RPI_V2_GPIO_P5_04": 1, - "RPI_V2_GPIO_P5_05": 1, - "RPI_V2_GPIO_P5_06": 1, - "RPiGPIOPin": 1, - "BCM2835_SPI0_CS": 1, - "Master": 12, - "BCM2835_SPI0_FIFO": 1, - "TX": 5, - "RX": 7, - "FIFOs": 1, - "BCM2835_SPI0_CLK": 1, - "Divider": 2, - "BCM2835_SPI0_DLEN": 1, - "Data": 9, - "Length": 2, - "BCM2835_SPI0_LTOH": 1, - "LOSSI": 1, - "mode": 24, - "TOH": 1, - "BCM2835_SPI0_DC": 1, - "DMA": 3, - "DREQ": 1, - "Controls": 1, - "BCM2835_SPI0_CS_LEN_LONG": 1, - "Long": 1, - "word": 7, - "Lossi": 2, - "DMA_LEN": 1, - "BCM2835_SPI0_CS_DMA_LEN": 1, - "BCM2835_SPI0_CS_CSPOL2": 1, - "Chip": 9, - "Polarity": 5, - "BCM2835_SPI0_CS_CSPOL1": 1, - "BCM2835_SPI0_CS_CSPOL0": 1, - "BCM2835_SPI0_CS_RXF": 1, - "RXF": 2, - "FIFO": 25, - "Full": 1, - "BCM2835_SPI0_CS_RXR": 1, - "RXR": 3, - "needs": 4, - "Reading": 1, - "full": 9, - "BCM2835_SPI0_CS_TXD": 1, - "TXD": 2, - "accept": 2, - "BCM2835_SPI0_CS_RXD": 1, - "RXD": 2, - "contains": 2, - "BCM2835_SPI0_CS_DONE": 1, - "Done": 3, - "transfer": 8, - "BCM2835_SPI0_CS_TE_EN": 1, - "Unused": 2, - "BCM2835_SPI0_CS_LMONO": 1, - "BCM2835_SPI0_CS_LEN": 1, - "LEN": 1, - "LoSSI": 1, - "BCM2835_SPI0_CS_REN": 1, - "REN": 1, - "Read": 3, - "BCM2835_SPI0_CS_ADCS": 1, - "ADCS": 1, - "Automatically": 1, - "Deassert": 1, - "BCM2835_SPI0_CS_INTR": 1, - "INTR": 1, - "Interrupt": 5, - "BCM2835_SPI0_CS_INTD": 1, - "INTD": 1, - "BCM2835_SPI0_CS_DMAEN": 1, - "DMAEN": 1, - "BCM2835_SPI0_CS_TA": 1, - "Transfer": 3, - "Active": 2, - "BCM2835_SPI0_CS_CSPOL": 1, - "BCM2835_SPI0_CS_CLEAR": 1, - "BCM2835_SPI0_CS_CLEAR_RX": 1, - "BCM2835_SPI0_CS_CLEAR_TX": 1, - "BCM2835_SPI0_CS_CPOL": 1, - "BCM2835_SPI0_CS_CPHA": 1, - "Phase": 1, - "BCM2835_SPI0_CS_CS": 1, - "bcm2835SPIBitOrder": 3, - "Bit": 1, - "Specifies": 5, - "ordering": 4, - "bcm2835_spi_setBitOrder": 2, - "BCM2835_SPI_BIT_ORDER_LSBFIRST": 1, - "LSB": 1, - "First": 2, - "BCM2835_SPI_BIT_ORDER_MSBFIRST": 1, - "MSB": 1, - "Specify": 2, - "bcm2835_spi_setDataMode": 2, - "BCM2835_SPI_MODE0": 1, - "CPOL": 4, - "CPHA": 4, - "BCM2835_SPI_MODE1": 1, - "BCM2835_SPI_MODE2": 1, - "BCM2835_SPI_MODE3": 1, - "bcm2835SPIMode": 2, - "bcm2835SPIChipSelect": 3, - "BCM2835_SPI_CS0": 1, - "BCM2835_SPI_CS1": 1, - "BCM2835_SPI_CS2": 1, - "CS1": 1, - "CS2": 1, - "asserted": 3, - "BCM2835_SPI_CS_NONE": 1, - "CS": 5, - "yourself": 1, - "bcm2835SPIClockDivider": 3, - "generate": 2, - "Figures": 1, - "below": 1, - "period": 1, - "frequency.": 1, - "divided": 2, - "nominal": 2, - "reported": 2, - "contrary": 1, - "may": 9, - "shown": 1, - "have": 4, - "confirmed": 1, - "measurement": 2, - "BCM2835_SPI_CLOCK_DIVIDER_65536": 1, - "us": 12, - "kHz": 10, - "BCM2835_SPI_CLOCK_DIVIDER_32768": 1, - "BCM2835_SPI_CLOCK_DIVIDER_16384": 1, - "BCM2835_SPI_CLOCK_DIVIDER_8192": 1, - "/51757813kHz": 1, - "BCM2835_SPI_CLOCK_DIVIDER_4096": 1, - "BCM2835_SPI_CLOCK_DIVIDER_2048": 1, - "BCM2835_SPI_CLOCK_DIVIDER_1024": 1, - "BCM2835_SPI_CLOCK_DIVIDER_512": 1, - "BCM2835_SPI_CLOCK_DIVIDER_256": 1, - "BCM2835_SPI_CLOCK_DIVIDER_128": 1, - "ns": 9, - "BCM2835_SPI_CLOCK_DIVIDER_64": 1, - "BCM2835_SPI_CLOCK_DIVIDER_32": 1, - "BCM2835_SPI_CLOCK_DIVIDER_16": 1, - "BCM2835_SPI_CLOCK_DIVIDER_8": 1, - "BCM2835_SPI_CLOCK_DIVIDER_4": 1, - "BCM2835_SPI_CLOCK_DIVIDER_2": 1, - "fastest": 1, - "BCM2835_SPI_CLOCK_DIVIDER_1": 1, - "same": 3, - "/65536": 1, - "BCM2835_BSC_C": 1, - "BCM2835_BSC_S": 1, - "BCM2835_BSC_DLEN": 1, - "BCM2835_BSC_A": 1, - "Slave": 1, - "BCM2835_BSC_FIFO": 1, - "BCM2835_BSC_DIV": 1, - "BCM2835_BSC_DEL": 1, - "Delay": 4, - "BCM2835_BSC_CLKT": 1, - "Stretch": 2, - "Timeout": 2, - "BCM2835_BSC_C_I2CEN": 1, - "BCM2835_BSC_C_INTR": 1, - "BCM2835_BSC_C_INTT": 1, - "BCM2835_BSC_C_INTD": 1, - "DONE": 2, - "BCM2835_BSC_C_ST": 1, - "Start": 4, - "new": 13, - "BCM2835_BSC_C_CLEAR_1": 1, - "BCM2835_BSC_C_CLEAR_2": 1, - "BCM2835_BSC_C_READ": 1, - "BCM2835_BSC_S_CLKT": 1, - "stretch": 1, - "timeout": 5, - "BCM2835_BSC_S_ERR": 1, - "ACK": 1, - "error": 8, - "BCM2835_BSC_S_RXF": 1, - "BCM2835_BSC_S_TXE": 1, - "TXE": 1, - "BCM2835_BSC_S_RXD": 1, - "BCM2835_BSC_S_TXD": 1, - "BCM2835_BSC_S_RXR": 1, - "BCM2835_BSC_S_TXW": 1, - "TXW": 1, - "writing": 2, - "BCM2835_BSC_S_DONE": 1, - "BCM2835_BSC_S_TA": 1, - "BCM2835_BSC_FIFO_SIZE": 1, - "size": 13, - "bcm2835I2CClockDivider": 3, - "BCM2835_I2C_CLOCK_DIVIDER_2500": 1, - "BCM2835_I2C_CLOCK_DIVIDER_626": 1, - "BCM2835_I2C_CLOCK_DIVIDER_150": 1, - "reset": 1, - "BCM2835_I2C_CLOCK_DIVIDER_148": 1, - "bcm2835I2CReasonCodes": 5, - "reason": 4, - "codes": 1, - "BCM2835_I2C_REASON_OK": 1, - "Success": 1, - "BCM2835_I2C_REASON_ERROR_NACK": 1, - "Received": 4, - "NACK": 1, - "BCM2835_I2C_REASON_ERROR_CLKT": 1, - "BCM2835_I2C_REASON_ERROR_DATA": 1, - "sent": 1, - "/": 16, - "BCM2835_ST_CS": 1, - "Control/Status": 1, - "BCM2835_ST_CLO": 1, - "Counter": 4, - "Lower": 2, - "BCM2835_ST_CHI": 1, - "Upper": 1, - "BCM2835_PWM_CONTROL": 1, - "BCM2835_PWM_STATUS": 1, - "BCM2835_PWM0_RANGE": 1, - "BCM2835_PWM0_DATA": 1, - "BCM2835_PWM1_RANGE": 1, - "BCM2835_PWM1_DATA": 1, - "BCM2835_PWMCLK_CNTL": 1, - "BCM2835_PWMCLK_DIV": 1, - "BCM2835_PWM1_MS_MODE": 1, - "Run": 4, - "MS": 2, - "BCM2835_PWM1_USEFIFO": 1, - "BCM2835_PWM1_REVPOLAR": 1, - "Reverse": 2, - "polarity": 3, - "BCM2835_PWM1_OFFSTATE": 1, - "Ouput": 2, - "BCM2835_PWM1_REPEATFF": 1, - "Repeat": 2, - "last": 6, - "empty": 2, - "BCM2835_PWM1_SERIAL": 1, - "serial": 2, - "BCM2835_PWM1_ENABLE": 1, - "Channel": 2, - "BCM2835_PWM0_MS_MODE": 1, - "BCM2835_PWM0_USEFIFO": 1, - "BCM2835_PWM0_REVPOLAR": 1, - "BCM2835_PWM0_OFFSTATE": 1, - "BCM2835_PWM0_REPEATFF": 1, - "BCM2835_PWM0_SERIAL": 1, - "BCM2835_PWM0_ENABLE": 1, - "x": 86, - "#endif": 110, - "#ifdef": 19, - "__cplusplus": 12, - "init": 2, - "Library": 1, - "management": 1, - "intialise": 1, - "Initialise": 1, - "opening": 1, - "getting": 1, - "internal": 47, - "device": 7, - "call": 4, - "successfully": 1, - "before": 7, - "bcm2835_set_debug": 2, - "fails": 1, - "returning": 1, - "result": 8, - "crashes": 1, - "failures.": 1, - "Prints": 1, - "messages": 1, - "stderr": 1, - "case": 34, - "errors.": 1, - "successful": 2, - "else": 58, - "int": 218, - "Close": 1, - "deallocating": 1, - "allocated": 2, - "closing": 3, - "Sets": 24, - "debug": 6, - "prevents": 1, - "makes": 1, - "print": 5, - "out": 5, - "what": 2, - "would": 2, - "do": 13, - "rather": 2, - "causes": 1, - "normal": 1, - "operation.": 2, - "Call": 2, - "param": 72, - "]": 292, - "level.": 3, - "uint8_t": 43, - "lowlevel": 2, - "provide": 1, - "generally": 1, - "Reads": 5, - "done": 3, - "twice": 3, - "therefore": 6, - "always": 3, - "safe": 4, - "precautions": 3, - "correct": 3, - "paddr": 10, - "from.": 6, - "etc.": 5, - "sa": 30, - "uint32_t*": 7, - "without": 3, - "within": 4, - "occurred": 2, - "since.": 2, - "bcm2835_peri_read_nb": 1, - "Writes": 2, - "write": 8, - "bcm2835_peri_write_nb": 1, - "Alters": 1, - "regsiter.": 1, - "valu": 1, - "alters": 1, - "deines": 1, - "according": 1, - "value.": 2, - "All": 1, - "unaffected.": 1, - "Use": 8, - "alter": 2, - "subset": 1, - "register.": 3, - "masked": 2, - "mask.": 1, - "Bitmask": 1, - "altered": 1, - "gpio": 1, - "interface.": 3, - "input": 12, - "output": 21, - "state.": 1, - "given": 16, - "configures": 1, - "RPI_GPIO_P1_*": 21, - "Mode": 1, - "BCM2835_GPIO_FSEL_*": 1, - "specified": 27, - "HIGH.": 2, - "bcm2835_gpio_write": 3, - "bcm2835_gpio_set": 1, - "LOW.": 5, - "bcm2835_gpio_clr": 1, - "first": 13, - "Mask": 6, - "affect.": 4, - "eg": 5, - "returns": 4, - "either": 4, - "Works": 1, - "whether": 4, - "output.": 1, - "bcm2835_gpio_lev": 1, - "Status.": 7, - "Tests": 1, - "detected": 7, - "requested": 1, - "flag": 3, - "bcm2835_gpio_set_eds": 2, - "status": 1, - "th": 1, - "true.": 2, - "bcm2835_gpio_eds": 1, - "effect": 3, - "clearing": 1, - "flag.": 1, - "afer": 1, - "seeing": 1, - "rising": 3, - "sets": 8, - "GPRENn": 2, - "synchronous": 2, - "detection.": 2, - "signal": 4, - "sampled": 6, - "looking": 2, - "pattern": 2, - "signal.": 2, - "suppressing": 2, - "glitches.": 2, - "Disable": 6, - "Asynchronous": 6, - "incoming": 2, - "As": 2, - "edges": 2, - "very": 2, - "short": 5, - "duration": 2, - "detected.": 2, - "bcm2835_gpio_pudclk": 3, - "resistor": 1, - "However": 3, - "convenient": 2, - "bcm2835_gpio_set_pud": 4, - "pud": 4, - "desired": 7, - "mode.": 4, - "One": 3, - "BCM2835_GPIO_PUD_*": 2, - "Clocks": 3, - "earlier": 1, - "remove": 2, - "group.": 2, - "BCM2835_PAD_GROUP_GPIO_*": 2, - "BCM2835_PAD_*": 2, - "bcm2835_gpio_set_pad": 1, - "Delays": 3, - "milliseconds.": 1, - "Uses": 4, - "CPU": 5, - "until": 1, - "up.": 1, - "mercy": 2, - "From": 2, - "interval": 4, - "req": 2, - "exact": 2, - "multiple": 2, - "granularity": 2, - "rounded": 2, - "next": 9, - "multiple.": 2, - "Furthermore": 2, - "sleep": 2, - "completes": 2, - "still": 3, - "becomes": 2, - "free": 4, - "once": 5, - "again": 2, - "execute": 3, - "thread.": 2, - "millis": 2, - "milliseconds": 1, - "unsigned": 22, - "microseconds.": 2, - "combination": 2, - "busy": 2, - "wait": 2, - "timers": 1, - "less": 1, - "microseconds": 6, - "Timer.": 1, - "RaspberryPi": 1, - "Your": 1, - "mileage": 1, - "vary.": 1, - "micros": 5, - "uint64_t": 8, - "required": 2, - "bcm2835_gpio_write_mask": 1, - "clocking": 1, - "spi": 1, - "let": 2, - "device.": 2, - "operations.": 4, - "Forces": 2, - "ALT0": 2, - "funcitons": 1, - "complete": 3, - "End": 2, - "returned": 5, - "INPUT": 2, - "behaviour.": 2, - "NOTE": 1, - "effect.": 1, - "SPI0.": 1, - "Defaults": 1, - "BCM2835_SPI_BIT_ORDER_*": 1, - "speed.": 2, - "BCM2835_SPI_CLOCK_DIVIDER_*": 1, - "bcm2835_spi_setClockDivider": 1, - "uint16_t": 2, - "polariy": 1, - "phase": 1, - "BCM2835_SPI_MODE*": 1, - "bcm2835_spi_transfer": 5, - "made": 1, - "selected": 13, - "during": 4, - "transfer.": 4, - "cs": 4, - "activate": 1, - "slave.": 7, - "BCM2835_SPI_CS*": 1, - "bcm2835_spi_chipSelect": 4, - "occurs": 1, - "currently": 12, - "active.": 1, - "transfers": 1, - "happening": 1, - "complement": 1, - "inactive": 1, - "affect": 1, - "active": 3, - "Whether": 1, - "bcm2835_spi_setChipSelectPolarity": 1, - "Transfers": 6, - "byte": 6, - "Asserts": 3, - "simultaneously": 3, - "clocks": 2, - "MISO.": 2, - "Returns": 2, - "polled": 2, - "Peripherls": 2, - "len": 15, - "slave": 8, - "placed": 1, - "rbuf.": 1, - "rbuf": 3, - "long": 15, - "tbuf": 4, - "Buffer": 10, - "send.": 5, - "put": 1, - "buffer": 9, - "Number": 8, - "send/received": 2, - "char*": 24, - "bcm2835_spi_transfernb.": 1, - "replaces": 1, - "transmitted": 1, - "buffer.": 1, - "buf": 14, - "replace": 1, - "contents": 3, - "eh": 2, - "bcm2835_spi_writenb": 1, - "i2c": 1, - "Philips": 1, - "bus/interface": 1, - "January": 1, - "SCL": 2, - "bcm2835_i2c_end": 3, - "bcm2835_i2c_begin": 1, - "address.": 2, - "addr": 2, - "bcm2835_i2c_setSlaveAddress": 4, - "BCM2835_I2C_CLOCK_DIVIDER_*": 1, - "bcm2835_i2c_setClockDivider": 2, - "converting": 1, - "baudrate": 4, - "parameter": 1, - "equivalent": 1, - "divider.": 1, - "standard": 2, - "khz": 1, - "corresponds": 1, - "its": 1, - "driver.": 1, - "Of": 1, - "course": 2, - "nothing": 1, - "driver": 1, - "const": 172, - "*": 183, - "receive.": 2, - "received.": 2, - "Allows": 2, - "slaves": 1, - "require": 3, - "repeated": 1, - "start": 12, - "prior": 1, - "stop": 1, - "set.": 1, - "popular": 1, - "MPL3115A2": 1, - "pressure": 1, - "temperature": 1, - "sensor.": 1, - "Note": 1, - "combined": 1, - "better": 1, - "choice.": 1, - "Will": 1, - "regaddr": 2, - "containing": 2, - "bcm2835_i2c_read_register_rs": 1, - "st": 1, - "delays": 1, - "Counter.": 1, - "bcm2835_st_read": 1, - "offset.": 1, - "offset_micros": 2, - "Offset": 1, - "bcm2835_st_delay": 1, - "@example": 5, - "blink.c": 1, - "Blinks": 1, - "off": 1, - "input.c": 1, - "event.c": 1, - "Shows": 3, - "how": 3, - "spi.c": 1, - "spin.c": 1, - "#pragma": 3, "": 4, "": 4, - "": 2, + "using": 11, "namespace": 38, "std": 53, - "DEFAULT_DELIMITER": 1, - "CsvStreamer": 5, + ";": 2783, + "For": 6, + "int64_t.": 1, + "///": 843, + "The": 50, + "Metrics": 2, + "module": 1, + "is": 102, + "used": 17, + "for": 105, + "the": 541, + "debug": 6, + "mode": 24, + "that": 36, + "dumps": 1, + "timing": 3, + "stats": 2, + "of": 215, + "various": 4, + "actions.": 1, + "To": 1, + "use": 37, + "see": 14, + "METRIC_RECORD": 4, + "below.": 1, + "A": 7, + "single": 2, + "metrics": 2, + "we": 10, + "ve": 4, + "hit": 1, + "code": 12, + "path.": 2, + "int": 218, + "count": 1, + "Total": 1, + "time": 10, + "(": 3102, + "in": 165, + "micros": 5, + ")": 3105, + "spent": 1, + "on": 55, + "int64_t": 3, + "sum": 1, + "}": 726, + "scoped": 1, + "object": 3, + "recording": 1, + "a": 157, + "metric": 2, + "across": 1, + "body": 1, + "function.": 3, + "Used": 2, + "by": 53, + "macro.": 1, + "struct": 13, + "ScopedMetric": 4, + "{": 726, + "explicit": 5, + "Metric*": 4, "private": 16, - "ofstream": 1, - "File": 1, - "stream": 6, - "vector": 16, - "row_buffer": 1, + "metric_": 1, + "Timestamp": 1, + "when": 22, + "measurement": 2, + "started.": 1, + "Value": 24, + "platform": 2, + "-": 438, + "dependent.": 1, + "start_": 1, + "singleton": 2, "stores": 3, - "row": 12, - "flushed/written": 1, - "fields": 4, - "columns": 2, - "rows": 3, - "records": 2, - "including": 2, - "delimiter": 2, - "Delimiter": 1, - "character": 10, - "comma": 2, + "and": 118, + "prints": 1, + "report.": 1, + "NewMetric": 2, + "const": 172, "string": 24, - "sanitize": 1, - "ready": 1, - "Empty": 1, - "CSV": 4, - "streamer...": 1, - "Same": 1, - "...": 1, - "Opens": 3, - "path/name": 3, - "Ensures": 1, - "closed": 1, - "saved": 1, - "delimiting": 1, - "add_field": 1, - "line": 11, - "adds": 1, - "field": 5, - "save_fields": 1, - "save": 1, - "writes": 2, - "append": 8, - "Appends": 5, - "quoted": 1, - "leading/trailing": 1, - "spaces": 3, - "trimmed": 1, - "bool": 111, - "Like": 1, - "specify": 1, - "trim": 2, - "keep": 1, - "float": 74, + "&": 203, + "name": 25, + "Print": 2, + "summary": 1, + "report": 3, + "to": 254, + "stdout.": 1, + "void": 241, + "Report": 1, + "vector": 16, + "": 1, + "metrics_": 1, + "Get": 1, + "current": 26, + "as": 28, + "relative": 2, + "some": 4, + "epoch.": 1, + "Epoch": 1, + "varies": 1, + "between": 1, + "platforms": 1, + "only": 6, + "useful": 1, + "measuring": 1, + "elapsed": 1, + "time.": 1, + "GetTimeMillis": 1, + "simple": 1, + "stopwatch": 1, + "which": 14, + "returns": 4, + "seconds": 1, + "since": 3, + "Restart": 3, + "was": 6, + "called.": 1, + "Stopwatch": 2, + "public": 33, + "started_": 4, + "Seconds": 1, + "call.": 1, "double": 25, - "writeln": 1, - "Flushes": 1, - "Saves": 1, - "closes": 1, - "field_count": 1, - "Gets": 2, - "row_count": 1, + "Elapsed": 1, + "return": 240, + "e": 15, + "*": 183, + "static_cast": 14, + "": 1, + "Now": 4, + "uint64_t": 8, + "primary": 1, + "interface": 9, + "metrics.": 1, + "Use": 8, + "at": 20, + "top": 1, + "function": 19, + "get": 5, + "recorded": 1, + "each": 7, + "call": 4, + "static": 263, + "metrics_h_metric": 2, + "g_metrics": 3, + "NULL": 109, + "metrics_h_scoped": 1, + "extern": 72, + "Metrics*": 1, + "#endif": 110, + "": 2, + "rpc_init": 1, + "rpc_server_loop": 1, + "UTILS_H": 3, + "": 1, + "": 1, + "": 1, + "class": 40, + "QTemporaryFile": 1, + "Utils": 4, + "showUsage": 1, + "messageHandler": 2, + "QtMsgType": 1, + "type": 7, + "char": 127, + "*msg": 2, + "bool": 111, + "exceptionHandler": 2, + "char*": 24, + "dump_path": 1, + "minidump_id": 1, + "void*": 2, + "context": 8, + "succeeded": 2, + "QVariant": 1, + "coffee2js": 1, + "QString": 20, + "script": 1, + "injectJsInFrame": 2, + "jsFilePath": 5, + "libraryPath": 5, + "QWebFrame": 4, + "*targetFrame": 4, + "startingScript": 2, + "false": 48, + "Encoding": 3, + "jsFileEnc": 2, + "readResourceFileUtf8": 1, + "resourceFilePath": 1, + "loadJSForDebug": 2, + "autorun": 2, + "cleanupFromDebug": 1, + "findScript": 1, + "jsFromScriptFile": 1, + "scriptPath": 1, + "enc": 1, + "<": 255, + "This": 19, + "shouldn": 1, + "t": 15, + "be": 35, + "instantiated": 1, + "QTemporaryFile*": 2, + "m_tempHarness": 1, + "We": 1, + "want": 5, + "make": 6, + "sure": 6, + "clean": 2, + "up": 18, + "after": 18, + "ourselves": 1, + "m_tempWrapper": 1, + "QSCIPRINTER_H": 2, + "#ifdef": 19, + "__APPLE__": 4, + "": 1, + "": 2, + "": 1, + "QT_BEGIN_NAMESPACE": 1, + "QRect": 2, + "QPainter": 2, + "QT_END_NAMESPACE": 1, + "QsciScintillaBase": 100, + "brief": 12, + "QsciPrinter": 9, + "sub": 2, + "Qt": 1, + "QPrinter": 3, + "able": 2, + "print": 5, + "text": 5, + "Scintilla": 2, + "document.": 8, + "can": 21, + "further": 1, + "classed": 1, + "alter": 2, + "layout": 1, + "adding": 2, + "headers": 3, + "footers": 2, + "example.": 1, + "QSCINTILLA_EXPORT": 2, + "Constructs": 1, + "printer": 1, + "paint": 1, + "device": 7, + "with": 33, + "mode.": 4, + "PrinterMode": 1, + "ScreenResolution": 1, + "Destroys": 1, + "instance.": 2, + "virtual": 10, + "Format": 1, + "page": 5, + "example": 3, + "before": 7, + "document": 16, + "drawn": 2, + "it.": 3, + "painter": 4, + "add": 3, + "customised": 2, + "graphics.": 2, + "drawing": 4, + "true": 49, + "if": 359, + "actually": 1, + "being": 4, + "rather": 2, + "than": 6, + "sized.": 1, + "methods": 2, + "must": 6, + "called": 13, + "true.": 2, + "area": 5, + "will": 15, + "draw": 1, + "text.": 3, + "should": 10, + "modified": 3, + "it": 19, + "necessary": 1, + "reserve": 1, + "space": 2, + "any": 23, + "or": 44, + "By": 1, + "default": 14, + "printable": 1, + "page.": 13, + "setFullPage": 1, + "because": 2, + "calling": 9, + "printRange": 2, + "you": 29, + "try": 1, + "over": 1, + "whole": 2, + "pagenr": 2, + "number": 52, + "first": 13, + "numbered": 1, + "formatPage": 1, + "Return": 3, + "points": 2, + "font": 2, + "printing.": 2, + "sa": 30, + "setMagnification": 2, + "magnification": 3, + "mag": 2, + "Sets": 24, + "printing": 2, + "magnification.": 1, + "range": 3, + "lines": 3, + "from": 91, + "instance": 4, + "qsb.": 1, + "line": 11, + "negative": 2, + "value": 50, + "signifies": 2, + "last": 6, + "returned": 5, + "there": 4, + "no": 7, + "error.": 1, + "*qsb": 1, + "wrap": 4, + "QsciScintilla": 7, + "WrapWord.": 1, + "setWrapMode": 2, + "WrapMode": 3, + "wrapMode": 2, + "wmode.": 1, + "wmode": 1, + "operator": 10, + "#pragma": 3, + "once": 5, + "enum": 17, + "Field": 2, + "Free": 1, + "Black": 1, + "White": 1, + "Illegal": 1, + "typedef": 50, + "Player": 1, "": 1, "": 1, "": 2, - "static": 263, "Env": 13, "*env_instance": 1, - "NULL": 109, "*Env": 1, - "instance": 4, "env_instance": 3, + "new": 13, "QObject": 2, "QCoreApplication": 1, "parse": 3, "**envp": 1, "**env": 1, "**": 2, - "QString": 20, "envvar": 2, - "name": 25, "indexOfEquals": 5, "env": 3, "envp": 4, "*env": 1, + "+": 80, "envvar.indexOf": 1, "continue": 2, "envvar.left": 1, @@ -12903,10 +11669,357 @@ "QVariantMap": 3, "asVariantMap": 2, "m_map": 2, - "ENV_H": 3, - "": 1, - "Q_OBJECT": 1, - "*instance": 1, + "Bar": 2, + "protected": 4, + "*name": 6, + "hello": 2, + "QSCICOMMAND_H": 2, + "": 1, + "": 1, + "QsciCommand": 7, + "represents": 1, + "an": 23, + "internal": 47, + "editor": 1, + "command": 9, + "may": 9, + "have": 4, + "one": 73, + "two": 2, + "keys": 3, + "bound": 4, + "Methods": 1, + "are": 36, + "provided": 1, + "change": 3, + "remove": 2, + "key": 23, + "binding.": 1, + "Each": 1, + "has": 29, + "user": 3, + "friendly": 2, + "description": 3, + "mapping": 3, + "dialogs.": 1, + "defines": 3, + "different": 5, + "commands": 1, + "assigned": 1, + "key.": 1, + "Command": 4, + "Move": 26, + "down": 12, + "line.": 33, + "LineDown": 1, + "SCI_LINEDOWN": 1, + "Extend": 33, + "selection": 39, + "LineDownExtend": 1, + "SCI_LINEDOWNEXTEND": 1, + "rectangular": 9, + "LineDownRectExtend": 1, + "SCI_LINEDOWNRECTEXTEND": 1, + "Scroll": 5, + "view": 2, + "LineScrollDown": 1, + "SCI_LINESCROLLDOWN": 1, + "LineUp": 1, + "SCI_LINEUP": 1, + "LineUpExtend": 1, + "SCI_LINEUPEXTEND": 1, + "LineUpRectExtend": 1, + "SCI_LINEUPRECTEXTEND": 1, + "LineScrollUp": 1, + "SCI_LINESCROLLUP": 1, + "start": 12, + "ScrollToStart": 1, + "SCI_SCROLLTOSTART": 1, + "end": 23, + "ScrollToEnd": 1, + "SCI_SCROLLTOEND": 1, + "vertically": 1, + "centre": 1, + "VerticalCentreCaret": 1, + "SCI_VERTICALCENTRECARET": 1, + "paragraph.": 4, + "ParaDown": 1, + "SCI_PARADOWN": 1, + "ParaDownExtend": 1, + "SCI_PARADOWNEXTEND": 1, + "ParaUp": 1, + "SCI_PARAUP": 1, + "ParaUpExtend": 1, + "SCI_PARAUPEXTEND": 1, + "left": 7, + "character.": 9, + "CharLeft": 1, + "SCI_CHARLEFT": 1, + "CharLeftExtend": 1, + "SCI_CHARLEFTEXTEND": 1, + "CharLeftRectExtend": 1, + "SCI_CHARLEFTRECTEXTEND": 1, + "right": 9, + "CharRight": 1, + "SCI_CHARRIGHT": 1, + "CharRightExtend": 1, + "SCI_CHARRIGHTEXTEND": 1, + "CharRightRectExtend": 1, + "SCI_CHARRIGHTRECTEXTEND": 1, + "word.": 9, + "WordLeft": 1, + "SCI_WORDLEFT": 1, + "WordLeftExtend": 1, + "SCI_WORDLEFTEXTEND": 1, + "WordRight": 1, + "SCI_WORDRIGHT": 1, + "WordRightExtend": 1, + "SCI_WORDRIGHTEXTEND": 1, + "previous": 6, + "WordLeftEnd": 1, + "SCI_WORDLEFTEND": 1, + "WordLeftEndExtend": 1, + "SCI_WORDLEFTENDEXTEND": 1, + "next": 9, + "WordRightEnd": 1, + "SCI_WORDRIGHTEND": 1, + "WordRightEndExtend": 1, + "SCI_WORDRIGHTENDEXTEND": 1, + "word": 7, + "part.": 4, + "WordPartLeft": 1, + "SCI_WORDPARTLEFT": 1, + "WordPartLeftExtend": 1, + "SCI_WORDPARTLEFTEXTEND": 1, + "WordPartRight": 1, + "SCI_WORDPARTRIGHT": 1, + "WordPartRightExtend": 1, + "SCI_WORDPARTRIGHTEXTEND": 1, + "Home": 1, + "SCI_HOME": 1, + "HomeExtend": 1, + "SCI_HOMEEXTEND": 1, + "HomeRectExtend": 1, + "SCI_HOMERECTEXTEND": 1, + "displayed": 10, + "HomeDisplay": 1, + "SCI_HOMEDISPLAY": 1, + "HomeDisplayExtend": 1, + "SCI_HOMEDISPLAYEXTEND": 1, + "HomeWrap": 1, + "SCI_HOMEWRAP": 1, + "HomeWrapExtend": 1, + "SCI_HOMEWRAPEXTEND": 1, + "visible": 6, + "character": 10, + "VCHome": 1, + "SCI_VCHOME": 1, + "VCHomeExtend": 1, + "SCI_VCHOMEEXTEND": 1, + "VCHomeRectExtend": 1, + "SCI_VCHOMERECTEXTEND": 1, + "VCHomeWrap": 1, + "SCI_VCHOMEWRAP": 1, + "VCHomeWrapExtend": 1, + "SCI_VCHOMEWRAPEXTEND": 1, + "LineEnd": 1, + "SCI_LINEEND": 1, + "LineEndExtend": 1, + "SCI_LINEENDEXTEND": 1, + "LineEndRectExtend": 1, + "SCI_LINEENDRECTEXTEND": 1, + "LineEndDisplay": 1, + "SCI_LINEENDDISPLAY": 1, + "LineEndDisplayExtend": 1, + "SCI_LINEENDDISPLAYEXTEND": 1, + "LineEndWrap": 1, + "SCI_LINEENDWRAP": 1, + "LineEndWrapExtend": 1, + "SCI_LINEENDWRAPEXTEND": 1, + "DocumentStart": 1, + "SCI_DOCUMENTSTART": 1, + "DocumentStartExtend": 1, + "SCI_DOCUMENTSTARTEXTEND": 1, + "DocumentEnd": 1, + "SCI_DOCUMENTEND": 1, + "DocumentEndExtend": 1, + "SCI_DOCUMENTENDEXTEND": 1, + "PageUp": 1, + "SCI_PAGEUP": 1, + "PageUpExtend": 1, + "SCI_PAGEUPEXTEND": 1, + "PageUpRectExtend": 1, + "SCI_PAGEUPRECTEXTEND": 1, + "PageDown": 1, + "SCI_PAGEDOWN": 1, + "PageDownExtend": 1, + "SCI_PAGEDOWNEXTEND": 1, + "PageDownRectExtend": 1, + "SCI_PAGEDOWNRECTEXTEND": 1, + "Stuttered": 4, + "move": 2, + "StutteredPageUp": 1, + "SCI_STUTTEREDPAGEUP": 1, + "extend": 2, + "StutteredPageUpExtend": 1, + "SCI_STUTTEREDPAGEUPEXTEND": 1, + "StutteredPageDown": 1, + "SCI_STUTTEREDPAGEDOWN": 1, + "StutteredPageDownExtend": 1, + "SCI_STUTTEREDPAGEDOWNEXTEND": 1, + "Delete": 10, + "SCI_CLEAR": 1, + "DeleteBack": 1, + "SCI_DELETEBACK": 1, + "not": 29, + "DeleteBackNotLine": 1, + "SCI_DELETEBACKNOTLINE": 1, + "left.": 2, + "DeleteWordLeft": 1, + "SCI_DELWORDLEFT": 1, + "right.": 2, + "DeleteWordRight": 1, + "SCI_DELWORDRIGHT": 1, + "DeleteWordRightEnd": 1, + "SCI_DELWORDRIGHTEND": 1, + "DeleteLineLeft": 1, + "SCI_DELLINELEFT": 1, + "DeleteLineRight": 1, + "SCI_DELLINERIGHT": 1, + "LineDelete": 1, + "SCI_LINEDELETE": 1, + "Cut": 2, + "clipboard.": 5, + "LineCut": 1, + "SCI_LINECUT": 1, + "Copy": 2, + "LineCopy": 1, + "SCI_LINECOPY": 1, + "Transpose": 1, + "lines.": 1, + "LineTranspose": 1, + "SCI_LINETRANSPOSE": 1, + "Duplicate": 2, + "LineDuplicate": 1, + "SCI_LINEDUPLICATE": 1, + "Select": 49, + "SelectAll": 1, + "SCI_SELECTALL": 1, + "selected": 13, + "MoveSelectedLinesUp": 1, + "SCI_MOVESELECTEDLINESUP": 1, + "MoveSelectedLinesDown": 1, + "SCI_MOVESELECTEDLINESDOWN": 1, + "selection.": 1, + "SelectionDuplicate": 1, + "SCI_SELECTIONDUPLICATE": 1, + "Convert": 2, + "lower": 1, + "case.": 2, + "SelectionLowerCase": 1, + "SCI_LOWERCASE": 1, + "upper": 1, + "SelectionUpperCase": 1, + "SCI_UPPERCASE": 1, + "SelectionCut": 1, + "SCI_CUT": 1, + "SelectionCopy": 1, + "SCI_COPY": 1, + "Paste": 2, + "SCI_PASTE": 1, + "Toggle": 1, + "insert/overtype.": 1, + "EditToggleOvertype": 1, + "SCI_EDITTOGGLEOVERTYPE": 1, + "Insert": 2, + "dependent": 1, + "newline.": 1, + "Newline": 1, + "SCI_NEWLINE": 1, + "formfeed.": 1, + "Formfeed": 1, + "SCI_FORMFEED": 1, + "Indent": 1, + "level.": 3, + "Tab": 1, + "SCI_TAB": 1, + "De": 1, + "indent": 1, + "Backtab": 1, + "SCI_BACKTAB": 1, + "Cancel": 2, + "operation.": 2, + "SCI_CANCEL": 1, + "Undo": 2, + "command.": 5, + "SCI_UNDO": 1, + "Redo": 2, + "SCI_REDO": 1, + "Zoom": 2, + "in.": 1, + "ZoomIn": 1, + "SCI_ZOOMIN": 1, + "out.": 1, + "ZoomOut": 1, + "SCI_ZOOMOUT": 1, + "executed": 1, + "this": 57, + "scicmd": 2, + "Execute": 1, + "execute": 3, + "Binds": 2, + "If": 11, + "then": 15, + "binding": 3, + "removed.": 2, + "invalid": 5, + "unchanged.": 1, + "Valid": 1, + "control": 17, + "c": 72, + "Key_Down": 1, + "Key_Up": 1, + "Key_Left": 1, + "Key_Right": 1, + "Key_Home": 1, + "Key_End": 1, + "Key_PageUp": 1, + "Key_PageDown": 1, + "Key_Delete": 1, + "Key_Insert": 1, + "Key_Escape": 1, + "Key_Backspace": 1, + "Key_Tab": 1, + "Key_Return.": 1, + "Keys": 1, + "combination": 2, + "SHIFT": 1, + "CTRL": 1, + "ALT": 1, + "META.": 1, + "setAlternateKey": 3, + "validKey": 3, + "setKey": 3, + "alternate": 7, + "altkey": 3, + "alternateKey": 3, + "currently": 12, + "returned.": 4, + "qkey": 2, + "qaltkey": 2, + "valid": 2, + "friend": 10, + "QsciCommandSet": 1, + "*qs": 1, + "cmd": 1, + "*desc": 1, + "bindKey": 1, + "qk": 1, + "scik": 1, + "*qsCmd": 1, + "scikey": 1, + "scialtkey": 1, + "*descCmd": 1, "BOOST_ASIO_DETAIL_IMPL_EPOLL_REACTOR_IPP": 3, "#if": 63, "defined": 49, @@ -12942,6 +12055,7 @@ "ev": 21, "ev.events": 13, "EPOLLIN": 8, + "|": 40, "EPOLLERR": 8, "EPOLLET": 5, "ev.data.ptr": 10, @@ -12949,6 +12063,7 @@ "EPOLL_CTL_ADD": 7, "interrupter_.read_descriptor": 3, "interrupter_.interrupt": 2, + "close": 7, "shutdown_service": 1, "mutex": 16, "scoped_lock": 16, @@ -12957,12 +12072,16 @@ "op_queue": 6, "": 6, "ops": 10, + "while": 17, "descriptor_state*": 6, + "state": 33, "registered_descriptors_.first": 2, "i": 106, "max_ops": 6, "ops.push": 5, "op_queue_": 12, + "[": 293, + "]": 292, "registered_descriptors_.free": 2, "timer_queues_.get_all_timers": 1, "io_service_.abandon_operations": 1, @@ -12976,10 +12095,13 @@ "registered_descriptors_mutex_": 3, "next_": 3, "registered_events_": 8, + "result": 8, "descriptor_": 5, + "system": 13, "error_code": 4, "ec": 6, "errno": 10, + "error": 8, "get_system_category": 3, "throw_error": 2, "init_task": 1, @@ -13018,6 +12140,7 @@ "write_op": 2, "EPOLLOUT": 4, "EPOLL_CTL_MOD": 3, + "else": 58, "io_service_.work_started": 2, "cancel_ops": 1, ".front": 3, @@ -13025,19 +12148,21 @@ ".pop": 3, "io_service_.post_deferred_completions": 3, "deregister_descriptor": 1, + "closing": 3, "EPOLL_CTL_DEL": 2, "free_descriptor_state": 3, "deregister_internal_descriptor": 1, + "run": 2, + "block": 7, + "timeout": 5, "get_timeout": 5, "events": 8, "num_events": 2, "epoll_wait": 1, "check_timers": 6, "#else": 35, - "void*": 2, "ptr": 6, ".data.ptr": 1, - "static_cast": 14, "": 2, "set_ready_events": 1, ".events": 1, @@ -13048,6 +12173,7 @@ "old_timeout": 4, "flags": 4, "timerfd_settime": 2, + "interrupt": 3, "EPOLL_CLOEXEC": 4, "fd": 15, "epoll_create1": 1, @@ -13059,8 +12185,10 @@ "F_SETFD": 2, "FD_CLOEXEC": 2, "timerfd_create": 2, + "CLOCK_MONOTONIC": 3, "TFD_CLOEXEC": 1, "registered_descriptors_.alloc": 1, + "s": 26, "do_add_timer_queue": 1, "timer_queue_base": 2, "queue": 4, @@ -13071,13 +12199,15 @@ "ts": 1, "ts.it_interval.tv_sec": 1, "ts.it_interval.tv_nsec": 1, + "long": 15, "usec": 5, "timer_queues_.wait_duration_usec": 1, "ts.it_value.tv_sec": 1, + "/": 16, "ts.it_value.tv_nsec": 1, + "%": 7, "TFD_TIMER_ABSTIME": 1, "perform_io_cleanup_on_block_exit": 4, - "explicit": 5, "epoll_reactor*": 2, "r": 38, "first_op_": 3, @@ -13088,9 +12218,11 @@ "operation": 2, "do_complete": 2, "perform_io": 2, + "uint32_t": 39, "mutex_.lock": 1, "io_cleanup": 1, "adopt_lock": 1, + "flag": 3, "j": 10, "io_cleanup.ops_.push": 1, "break": 35, @@ -13099,422 +12231,12 @@ "io_cleanup.ops_.pop": 1, "io_service_impl*": 1, "owner": 3, + "base": 8, "size_t": 6, "bytes_transferred": 2, "": 1, + "complete": 3, "": 1, - "Field": 2, - "Free": 1, - "Black": 1, - "White": 1, - "Illegal": 1, - "Player": 1, - "GDSDBREADER_H": 3, - "": 1, - "GDS_DIR": 1, - "LEVEL_ONE": 1, - "LEVEL_TWO": 1, - "LEVEL_THREE": 1, - "dbDataStructure": 2, - "label": 1, - "quint32": 3, - "depth": 1, - "userIndex": 1, - "QByteArray": 1, - "COMPRESSED": 1, - "optimize": 1, - "ram": 1, - "disk": 2, - "space": 2, - "decompressed": 1, - "quint64": 1, - "uniqueID": 1, - "QVector": 2, - "": 1, - "nextItems": 1, - "": 1, - "nextItemsIndices": 1, - "dbDataStructure*": 1, - "father": 1, - "fatherIndex": 1, - "noFatherRoot": 1, - "Used": 2, - "tell": 1, - "node": 1, - "root": 1, - "hasn": 1, - "argument": 1, - "list": 3, - "operator": 10, - "overload.": 1, - "friend": 10, - "myclass.label": 2, - "myclass.depth": 2, - "myclass.userIndex": 2, - "qCompress": 2, - "myclass.data": 4, - "myclass.uniqueID": 2, - "myclass.nextItemsIndices": 2, - "myclass.fatherIndex": 2, - "myclass.noFatherRoot": 2, - "myclass.fileName": 2, - "myclass.firstLineData": 4, - "myclass.linesNumbers": 2, - "QDataStream": 2, - "myclass": 1, - "//Don": 1, - "qUncompress": 2, - "": 2, - "main": 2, - "cout": 2, - "endl": 1, - "": 1, - "": 1, - "": 1, - "EC_KEY_regenerate_key": 1, - "EC_KEY": 3, - "*eckey": 2, - "BIGNUM": 9, - "*priv_key": 1, - "ok": 3, - "BN_CTX": 2, - "*ctx": 2, - "EC_POINT": 4, - "*pub_key": 1, - "eckey": 7, - "EC_GROUP": 2, - "*group": 2, - "EC_KEY_get0_group": 2, - "ctx": 26, - "BN_CTX_new": 2, - "goto": 156, - "err": 26, - "pub_key": 6, - "EC_POINT_new": 4, - "EC_POINT_mul": 3, - "priv_key": 2, - "EC_KEY_set_private_key": 1, - "EC_KEY_set_public_key": 2, - "EC_POINT_free": 4, - "BN_CTX_free": 2, - "ECDSA_SIG_recover_key_GFp": 3, - "ECDSA_SIG": 3, - "*ecsig": 1, - "*msg": 2, - "msglen": 2, - "recid": 3, - "ret": 24, - "*x": 1, - "*e": 1, - "*order": 1, - "*sor": 1, - "*eor": 1, - "*field": 1, - "*R": 1, - "*O": 1, - "*Q": 1, - "*rr": 1, - "*zero": 1, - "n": 28, - "BN_CTX_start": 1, - "BN_CTX_get": 8, - "EC_GROUP_get_order": 1, - "BN_copy": 1, - "BN_mul_word": 1, - "BN_add": 1, - "ecsig": 3, - "EC_GROUP_get_curve_GFp": 1, - "BN_cmp": 1, - "R": 6, - "EC_POINT_set_compressed_coordinates_GFp": 1, - "O": 5, - "EC_POINT_is_at_infinity": 1, - "Q": 5, - "EC_GROUP_get_degree": 1, - "e": 15, - "BN_bin2bn": 3, - "msg": 1, - "*msglen": 1, - "BN_rshift": 1, - "zero": 5, - "BN_zero": 1, - "BN_mod_sub": 1, - "rr": 4, - "BN_mod_inverse": 1, - "sor": 3, - "BN_mod_mul": 2, - "eor": 3, - "BN_CTX_end": 1, - "CKey": 26, - "SetCompressedPubKey": 4, - "EC_KEY_set_conv_form": 1, - "pkey": 14, - "POINT_CONVERSION_COMPRESSED": 1, - "fCompressedPubKey": 5, - "Reset": 5, - "EC_KEY_new_by_curve_name": 2, - "NID_secp256k1": 2, - "throw": 4, - "key_error": 6, - "fSet": 7, - "b": 57, - "EC_KEY_dup": 1, - "b.pkey": 2, - "b.fSet": 2, - "EC_KEY_copy": 1, - "hash": 20, - "vchSig": 18, - "nSize": 2, - "vchSig.clear": 2, - "vchSig.resize": 2, - "Shrink": 1, - "fit": 1, - "actual": 1, - "SignCompact": 2, - "uint256": 10, - "": 19, - "fOk": 3, - "*sig": 2, - "ECDSA_do_sign": 1, - "sig": 11, - "nBitsR": 3, - "BN_num_bits": 2, - "nBitsS": 3, - "nRecId": 4, - "<4;>": 1, - "keyRec": 5, - "1": 4, - "GetPubKey": 5, - "BN_bn2bin": 2, - "/8": 2, - "ECDSA_SIG_free": 2, - "SetCompactSignature": 2, - "vchSig.size": 2, - "nV": 6, - "<27>": 1, - "ECDSA_SIG_new": 1, - "EC_KEY_free": 1, - "Verify": 2, - "ECDSA_verify": 1, - "VerifyCompact": 2, - "key": 23, - "key.SetCompactSignature": 1, - "key.GetPubKey": 1, - "IsValid": 4, - "fCompr": 3, - "CSecret": 4, - "secret": 2, - "GetSecret": 2, - "key2": 1, - "key2.SetSecret": 1, - "key2.GetPubKey": 1, - "BITCOIN_KEY_H": 2, - "": 1, - "": 1, - "runtime_error": 2, - "str": 2, - "CKeyID": 5, - "uint160": 8, - "CScriptID": 3, - "CPubKey": 11, - "vchPubKey": 6, - "vchPubKeyIn": 2, - "a.vchPubKey": 3, - "b.vchPubKey": 3, - "IMPLEMENT_SERIALIZE": 1, - "READWRITE": 1, - "GetID": 1, - "Hash160": 1, - "GetHash": 1, - "Hash": 1, - "vchPubKey.begin": 1, - "vchPubKey.end": 1, - "vchPubKey.size": 3, - "IsCompressed": 2, - "Raw": 1, - "secure_allocator": 2, - "CPrivKey": 3, - "EC_KEY*": 1, - "IsNull": 1, - "MakeNewKey": 1, - "fCompressed": 3, - "SetPrivKey": 1, - "vchPrivKey": 1, - "SetSecret": 1, - "vchSecret": 1, - "GetPrivKey": 1, - "SetPubKey": 1, - "Sign": 2, - "LIBCANIH": 2, - "": 1, - "": 1, - "int64": 1, - "//#define": 1, - "DEBUG": 5, - "dout": 2, - "cerr": 1, - "libcanister": 2, - "//the": 8, - "canmem": 22, - "object": 3, - "generic": 1, - "container": 2, - "commonly": 1, - "//throughout": 1, - "canister": 14, - "framework": 1, - "hold": 1, - "uncertain": 1, - "//length": 1, - "contain": 1, - "null": 3, - "bytes.": 1, - "raw": 2, - "absolute": 1, - "length": 10, - "//creates": 3, - "unallocated": 1, - "allocsize": 1, - "blank": 1, - "strdata": 1, - "//automates": 1, - "creation": 1, - "limited": 2, - "canmems": 1, - "//cleans": 1, - "zeromem": 1, - "//overwrites": 2, - "fragmem": 1, - "notation": 1, - "countlen": 1, - "//counts": 1, - "strings": 1, - "//removes": 1, - "nulls": 1, - "//returns": 2, - "singleton": 2, - "//contains": 2, - "caninfo": 2, - "path": 8, - "//physical": 1, - "internalname": 1, - "//a": 1, - "numfiles": 1, - "files": 6, - "//necessary": 1, - "type": 7, - "canfile": 7, - "//this": 1, - "holds": 2, - "//canister": 1, - "canister*": 1, - "parent": 1, - "//internal": 1, - "id": 4, - "//use": 1, - "own.": 1, - "newline": 2, - "delimited": 2, - "container.": 1, - "TOC": 1, - "info": 2, - "general": 1, - "canfiles": 1, - "recommended": 1, - "modify": 1, - "//these": 1, - "enforced.": 1, - "canfile*": 1, - "readonly": 3, - "//if": 1, - "routines": 1, - "anything": 1, - "//maximum": 1, - "//time": 1, - "whatever": 1, - "suits": 1, - "application.": 1, - "cachemax": 2, - "cachecnt": 1, - "//number": 1, - "cache": 2, - "modified": 3, - "//both": 1, - "initialize": 1, - "fspath": 3, - "//destroys": 1, - "flushing": 1, - "modded": 1, - "//open": 1, - "//does": 1, - "exist": 2, - "//close": 1, - "flush": 1, - "clean": 2, - "//deletes": 1, - "inside": 1, - "delFile": 1, - "//pulls": 1, - "getFile": 1, - "otherwise": 1, - "overwrites": 1, - "succeeded": 2, - "writeFile": 2, - "//get": 1, - "//list": 1, - "paths": 1, - "getTOC": 1, - "//brings": 1, - "back": 1, - "limit": 1, - "//important": 1, - "sCFID": 2, - "CFID": 2, - "avoid": 1, - "uncaching": 1, - "//really": 1, - "just": 2, - "internally": 1, - "harm.": 1, - "cacheclean": 1, - "dFlush": 1, - "Q_OS_LINUX": 2, - "": 1, - "QT_VERSION": 1, - "QT_VERSION_CHECK": 1, - "#error": 9, - "Something": 1, - "wrong": 1, - "setup.": 1, - "report": 3, - "mailing": 1, - "argc": 2, - "char**": 2, - "argv": 2, - "google_breakpad": 1, - "ExceptionHandler": 1, - "Utils": 4, - "exceptionHandler": 2, - "qInstallMsgHandler": 1, - "messageHandler": 2, - "QApplication": 1, - "app": 1, - "STATIC_BUILD": 1, - "Q_INIT_RESOURCE": 2, - "WebKit": 1, - "InspectorBackendStub": 1, - "app.setWindowIcon": 1, - "QIcon": 1, - "app.setApplicationName": 1, - "app.setOrganizationName": 1, - "app.setOrganizationDomain": 1, - "app.setApplicationVersion": 1, - "PHANTOMJS_VERSION_STRING": 1, - "Phantom": 1, - "phantom": 1, - "phantom.execute": 1, - "app.exec": 1, - "phantom.returnValue": 1, "__OG_MATH_INL__": 2, "og": 1, "OG_INLINE": 41, @@ -13522,6 +12244,8 @@ "Abs": 1, "MASK_SIGNED": 2, "y": 16, + "x": 86, + "float": 74, "Fabs": 1, "f": 104, "uInt": 1, @@ -13537,6 +12261,8 @@ "ceilf": 1, "Ftoi": 1, "@todo": 1, + "needs": 4, + "testing": 2, "note": 1, "sse": 1, "cvttss2si": 2, @@ -13550,18 +12276,23 @@ "fld": 4, "fistp": 3, "//__asm": 3, + "do": 13, + "need": 6, "O_o": 3, "#elif": 7, "OG_ASM_GNU": 4, "__asm__": 4, "__volatile__": 4, "cast": 7, + "instead": 4, "why": 3, + "id": 4, "did": 3, "": 3, "FtoiFast": 2, "Ftol": 1, "": 1, + "Sign": 2, "Fmod": 1, "numerator": 2, "denominator": 2, @@ -13593,9 +12324,8 @@ "expf": 1, "IsPowerOfTwo": 4, "faster": 3, - "two": 2, "known": 1, - "methods": 2, + "check": 4, "moved": 1, "beginning": 1, "HigherPowerOfTwo": 4, @@ -13603,6 +12333,8 @@ "FloorPowerOfTwo": 1, "CeilPowerOfTwo": 1, "ClosestPowerOfTwo": 1, + "high": 5, + "low": 5, "Digits": 1, "digits": 6, "step": 3, @@ -13610,6 +12342,7 @@ "sinf": 1, "ASin": 1, "<=>": 2, + "1": 4, "0f": 2, "HALF_PI": 2, "asinf": 1, @@ -13628,6 +12361,7 @@ "SinCos": 1, "sometimes": 1, "assembler": 1, + "just": 2, "waaayy": 1, "_asm": 1, "fsincos": 1, @@ -13647,79 +12381,65 @@ "sec": 2, "Ms2Sec": 1, "ms": 2, - "NINJA_METRICS_H_": 3, - "int64_t.": 1, - "Metrics": 2, - "module": 1, - "dumps": 1, - "stats": 2, - "actions.": 1, - "To": 1, - "METRIC_RECORD": 4, - "below.": 1, - "metrics": 2, - "hit": 1, - "path.": 2, - "count": 1, - "Total": 1, - "spent": 1, - "int64_t": 3, - "sum": 1, - "scoped": 1, - "recording": 1, - "metric": 2, - "across": 1, - "body": 1, - "macro.": 1, - "ScopedMetric": 4, - "Metric*": 4, - "metric_": 1, - "Timestamp": 1, - "started.": 1, - "Value": 24, - "platform": 2, - "dependent.": 1, - "start_": 1, - "prints": 1, - "report.": 1, - "NewMetric": 2, - "Print": 2, - "summary": 1, - "stdout.": 1, - "Report": 1, - "": 1, - "metrics_": 1, - "Get": 1, - "relative": 2, - "epoch.": 1, - "Epoch": 1, - "varies": 1, - "between": 1, - "platforms": 1, - "useful": 1, - "measuring": 1, - "elapsed": 1, - "time.": 1, - "GetTimeMillis": 1, - "simple": 1, - "stopwatch": 1, - "seconds": 1, - "Restart": 3, - "called.": 1, - "Stopwatch": 2, - "started_": 4, - "Seconds": 1, - "call.": 1, - "Elapsed": 1, - "": 1, - "primary": 1, - "metrics.": 1, - "top": 1, - "recorded": 1, - "metrics_h_metric": 2, - "g_metrics": 3, - "metrics_h_scoped": 1, - "Metrics*": 1, + "BITCOIN_KEY_H": 2, + "": 1, + "": 1, + "EC_KEY": 3, + "definition": 3, + "key_error": 6, + "runtime_error": 2, + "str": 2, + "CKeyID": 5, + "uint160": 8, + "CScriptID": 3, + "CPubKey": 11, + "": 19, + "vchPubKey": 6, + "CKey": 26, + "vchPubKeyIn": 2, + "b": 57, + "a.vchPubKey": 3, + "b.vchPubKey": 3, + "IMPLEMENT_SERIALIZE": 1, + "READWRITE": 1, + "GetID": 1, + "Hash160": 1, + "uint256": 10, + "GetHash": 1, + "Hash": 1, + "vchPubKey.begin": 1, + "vchPubKey.end": 1, + "IsValid": 4, + "vchPubKey.size": 3, + "IsCompressed": 2, + "Raw": 1, + "unsigned": 22, + "secure_allocator": 2, + "CPrivKey": 3, + "CSecret": 4, + "EC_KEY*": 1, + "pkey": 14, + "fSet": 7, + "fCompressedPubKey": 5, + "SetCompressedPubKey": 4, + "Reset": 5, + "IsNull": 1, + "MakeNewKey": 1, + "fCompressed": 3, + "SetPrivKey": 1, + "vchPrivKey": 1, + "SetSecret": 1, + "vchSecret": 1, + "GetSecret": 2, + "GetPrivKey": 1, + "SetPubKey": 1, + "GetPubKey": 5, + "hash": 20, + "vchSig": 18, + "SignCompact": 2, + "SetCompactSignature": 2, + "Verify": 2, + "VerifyCompact": 2, "INTERNAL_SUPPRESS_PROTOBUF_FIELD_DEPRECATION": 1, "": 1, "": 2, @@ -13740,6 +12460,7 @@ "protobuf_AssignDesc_protocol_2dbuffer_2eproto": 4, "protobuf_AddDesc_protocol_2dbuffer_2eproto": 6, "FileDescriptor*": 1, + "file": 31, "DescriptorPool": 3, "generated_pool": 2, "FindFileByName": 1, @@ -13755,6 +12476,7 @@ "_unknown_fields_": 5, "MessageFactory": 3, "generated_factory": 1, + "sizeof": 15, "GOOGLE_PROTOBUF_DECLARE_ONCE": 1, "protobuf_AssignDescriptors_once_": 2, "inline": 39, @@ -13781,18 +12503,25 @@ "const_cast": 3, "string*": 11, "kEmptyString": 12, + "memset": 3, "SharedDtor": 3, "SetCachedSize": 2, + "size": 13, "GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN": 2, "GOOGLE_SAFE_CONCURRENT_WRITES_END": 2, "*default_instance_": 1, "Person*": 7, + "New": 6, + "Clear": 18, "xffu": 3, + "<<": 29, "has_name": 6, + "clear": 3, "mutable_unknown_fields": 4, "MergePartialFromCodedStream": 2, "io": 4, "CodedInputStream*": 2, + "input": 12, "DO_": 4, "EXPRESSION": 2, "uint32": 2, @@ -13801,6 +12530,7 @@ "switch": 3, "WireFormatLite": 9, "GetTagFieldNumber": 1, + "case": 34, "GetTagWireType": 2, "WIRETYPE_LENGTH_DELIMITED": 1, "ReadString": 1, @@ -13810,6 +12540,7 @@ ".data": 3, ".length": 3, "PARSE": 1, + "goto": 156, "handle_uninterpreted": 2, "ExpectAtEnd": 1, "WIRETYPE_END_GROUP": 1, @@ -13817,6 +12548,7 @@ "#undef": 3, "SerializeWithCachedSizes": 2, "CodedOutputStream*": 2, + "output": 21, "SERIALIZE": 2, "WriteString": 1, "unknown_fields": 7, @@ -13831,6 +12563,7 @@ "StringSize": 1, "ComputeUnknownFieldsSize": 1, "GOOGLE_CHECK_NE": 2, + "source": 12, "dynamic_cast_if_available": 1, "": 12, "ReflectionOps": 1, @@ -13843,6 +12576,7 @@ "CopyFrom": 5, "IsInitialized": 3, "Swap": 2, + "other": 17, "swap": 3, "_unknown_fields_.Swap": 1, "Metadata": 3, @@ -13850,436 +12584,6 @@ "metadata": 2, "metadata.descriptor": 1, "metadata.reflection": 1, - "PROTOBUF_protocol_2dbuffer_2eproto__INCLUDED": 3, - "GOOGLE_PROTOBUF_VERSION": 1, - "generated": 2, - "newer": 2, - "protoc": 2, - "incompatible": 2, - "Protocol": 2, - "headers.": 3, - "update": 1, - "GOOGLE_PROTOBUF_MIN_PROTOC_VERSION": 1, - "older": 1, - "regenerate": 1, - "protoc.": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "virtual": 10, - "*this": 1, - "UnknownFieldSet": 2, - "UnknownFieldSet*": 1, - "GetCachedSize": 1, - "clear_name": 2, - "release_name": 2, - "set_allocated_name": 2, - "set_has_name": 7, - "clear_has_name": 5, - "mutable": 1, - "u": 9, - "*name_": 1, - "assign": 3, - "temp": 2, - "SWIG": 2, - "QSCICOMMAND_H": 2, - "__APPLE__": 4, - "": 1, - "": 2, - "": 1, - "QsciScintilla": 7, - "QsciCommand": 7, - "represents": 1, - "editor": 1, - "command": 9, - "keys": 3, - "bound": 4, - "Methods": 1, - "provided": 1, - "binding.": 1, - "Each": 1, - "friendly": 2, - "description": 3, - "dialogs.": 1, - "QSCINTILLA_EXPORT": 2, - "commands": 1, - "assigned": 1, - "key.": 1, - "Command": 4, - "Move": 26, - "down": 12, - "line.": 33, - "LineDown": 1, - "QsciScintillaBase": 100, - "SCI_LINEDOWN": 1, - "Extend": 33, - "selection": 39, - "LineDownExtend": 1, - "SCI_LINEDOWNEXTEND": 1, - "rectangular": 9, - "LineDownRectExtend": 1, - "SCI_LINEDOWNRECTEXTEND": 1, - "Scroll": 5, - "view": 2, - "LineScrollDown": 1, - "SCI_LINESCROLLDOWN": 1, - "LineUp": 1, - "SCI_LINEUP": 1, - "LineUpExtend": 1, - "SCI_LINEUPEXTEND": 1, - "LineUpRectExtend": 1, - "SCI_LINEUPRECTEXTEND": 1, - "LineScrollUp": 1, - "SCI_LINESCROLLUP": 1, - "document.": 8, - "ScrollToStart": 1, - "SCI_SCROLLTOSTART": 1, - "ScrollToEnd": 1, - "SCI_SCROLLTOEND": 1, - "vertically": 1, - "centre": 1, - "VerticalCentreCaret": 1, - "SCI_VERTICALCENTRECARET": 1, - "paragraph.": 4, - "ParaDown": 1, - "SCI_PARADOWN": 1, - "ParaDownExtend": 1, - "SCI_PARADOWNEXTEND": 1, - "ParaUp": 1, - "SCI_PARAUP": 1, - "ParaUpExtend": 1, - "SCI_PARAUPEXTEND": 1, - "left": 7, - "character.": 9, - "CharLeft": 1, - "SCI_CHARLEFT": 1, - "CharLeftExtend": 1, - "SCI_CHARLEFTEXTEND": 1, - "CharLeftRectExtend": 1, - "SCI_CHARLEFTRECTEXTEND": 1, - "CharRight": 1, - "SCI_CHARRIGHT": 1, - "CharRightExtend": 1, - "SCI_CHARRIGHTEXTEND": 1, - "CharRightRectExtend": 1, - "SCI_CHARRIGHTRECTEXTEND": 1, - "word.": 9, - "WordLeft": 1, - "SCI_WORDLEFT": 1, - "WordLeftExtend": 1, - "SCI_WORDLEFTEXTEND": 1, - "WordRight": 1, - "SCI_WORDRIGHT": 1, - "WordRightExtend": 1, - "SCI_WORDRIGHTEXTEND": 1, - "WordLeftEnd": 1, - "SCI_WORDLEFTEND": 1, - "WordLeftEndExtend": 1, - "SCI_WORDLEFTENDEXTEND": 1, - "WordRightEnd": 1, - "SCI_WORDRIGHTEND": 1, - "WordRightEndExtend": 1, - "SCI_WORDRIGHTENDEXTEND": 1, - "part.": 4, - "WordPartLeft": 1, - "SCI_WORDPARTLEFT": 1, - "WordPartLeftExtend": 1, - "SCI_WORDPARTLEFTEXTEND": 1, - "WordPartRight": 1, - "SCI_WORDPARTRIGHT": 1, - "WordPartRightExtend": 1, - "SCI_WORDPARTRIGHTEXTEND": 1, - "document": 16, - "Home": 1, - "SCI_HOME": 1, - "HomeExtend": 1, - "SCI_HOMEEXTEND": 1, - "HomeRectExtend": 1, - "SCI_HOMERECTEXTEND": 1, - "displayed": 10, - "HomeDisplay": 1, - "SCI_HOMEDISPLAY": 1, - "HomeDisplayExtend": 1, - "SCI_HOMEDISPLAYEXTEND": 1, - "HomeWrap": 1, - "SCI_HOMEWRAP": 1, - "HomeWrapExtend": 1, - "SCI_HOMEWRAPEXTEND": 1, - "visible": 6, - "VCHome": 1, - "SCI_VCHOME": 1, - "VCHomeExtend": 1, - "SCI_VCHOMEEXTEND": 1, - "VCHomeRectExtend": 1, - "SCI_VCHOMERECTEXTEND": 1, - "VCHomeWrap": 1, - "SCI_VCHOMEWRAP": 1, - "VCHomeWrapExtend": 1, - "SCI_VCHOMEWRAPEXTEND": 1, - "LineEnd": 1, - "SCI_LINEEND": 1, - "LineEndExtend": 1, - "SCI_LINEENDEXTEND": 1, - "LineEndRectExtend": 1, - "SCI_LINEENDRECTEXTEND": 1, - "LineEndDisplay": 1, - "SCI_LINEENDDISPLAY": 1, - "LineEndDisplayExtend": 1, - "SCI_LINEENDDISPLAYEXTEND": 1, - "LineEndWrap": 1, - "SCI_LINEENDWRAP": 1, - "LineEndWrapExtend": 1, - "SCI_LINEENDWRAPEXTEND": 1, - "DocumentStart": 1, - "SCI_DOCUMENTSTART": 1, - "DocumentStartExtend": 1, - "SCI_DOCUMENTSTARTEXTEND": 1, - "DocumentEnd": 1, - "SCI_DOCUMENTEND": 1, - "DocumentEndExtend": 1, - "SCI_DOCUMENTENDEXTEND": 1, - "page.": 13, - "PageUp": 1, - "SCI_PAGEUP": 1, - "PageUpExtend": 1, - "SCI_PAGEUPEXTEND": 1, - "PageUpRectExtend": 1, - "SCI_PAGEUPRECTEXTEND": 1, - "PageDown": 1, - "SCI_PAGEDOWN": 1, - "PageDownExtend": 1, - "SCI_PAGEDOWNEXTEND": 1, - "PageDownRectExtend": 1, - "SCI_PAGEDOWNRECTEXTEND": 1, - "Stuttered": 4, - "move": 2, - "StutteredPageUp": 1, - "SCI_STUTTEREDPAGEUP": 1, - "extend": 2, - "StutteredPageUpExtend": 1, - "SCI_STUTTEREDPAGEUPEXTEND": 1, - "StutteredPageDown": 1, - "SCI_STUTTEREDPAGEDOWN": 1, - "StutteredPageDownExtend": 1, - "SCI_STUTTEREDPAGEDOWNEXTEND": 1, - "Delete": 10, - "SCI_CLEAR": 1, - "DeleteBack": 1, - "SCI_DELETEBACK": 1, - "DeleteBackNotLine": 1, - "SCI_DELETEBACKNOTLINE": 1, - "left.": 2, - "DeleteWordLeft": 1, - "SCI_DELWORDLEFT": 1, - "right.": 2, - "DeleteWordRight": 1, - "SCI_DELWORDRIGHT": 1, - "DeleteWordRightEnd": 1, - "SCI_DELWORDRIGHTEND": 1, - "DeleteLineLeft": 1, - "SCI_DELLINELEFT": 1, - "DeleteLineRight": 1, - "SCI_DELLINERIGHT": 1, - "LineDelete": 1, - "SCI_LINEDELETE": 1, - "Cut": 2, - "clipboard.": 5, - "LineCut": 1, - "SCI_LINECUT": 1, - "Copy": 2, - "LineCopy": 1, - "SCI_LINECOPY": 1, - "Transpose": 1, - "lines.": 1, - "LineTranspose": 1, - "SCI_LINETRANSPOSE": 1, - "Duplicate": 2, - "LineDuplicate": 1, - "SCI_LINEDUPLICATE": 1, - "whole": 2, - "SelectAll": 1, - "SCI_SELECTALL": 1, - "lines": 3, - "MoveSelectedLinesUp": 1, - "SCI_MOVESELECTEDLINESUP": 1, - "MoveSelectedLinesDown": 1, - "SCI_MOVESELECTEDLINESDOWN": 1, - "selection.": 1, - "SelectionDuplicate": 1, - "SCI_SELECTIONDUPLICATE": 1, - "Convert": 2, - "lower": 1, - "case.": 2, - "SelectionLowerCase": 1, - "SCI_LOWERCASE": 1, - "upper": 1, - "SelectionUpperCase": 1, - "SCI_UPPERCASE": 1, - "SelectionCut": 1, - "SCI_CUT": 1, - "SelectionCopy": 1, - "SCI_COPY": 1, - "Paste": 2, - "SCI_PASTE": 1, - "Toggle": 1, - "insert/overtype.": 1, - "EditToggleOvertype": 1, - "SCI_EDITTOGGLEOVERTYPE": 1, - "Insert": 2, - "dependent": 1, - "newline.": 1, - "Newline": 1, - "SCI_NEWLINE": 1, - "formfeed.": 1, - "Formfeed": 1, - "SCI_FORMFEED": 1, - "Indent": 1, - "Tab": 1, - "SCI_TAB": 1, - "De": 1, - "indent": 1, - "Backtab": 1, - "SCI_BACKTAB": 1, - "Cancel": 2, - "SCI_CANCEL": 1, - "Undo": 2, - "command.": 5, - "SCI_UNDO": 1, - "Redo": 2, - "SCI_REDO": 1, - "Zoom": 2, - "in.": 1, - "ZoomIn": 1, - "SCI_ZOOMIN": 1, - "out.": 1, - "ZoomOut": 1, - "SCI_ZOOMOUT": 1, - "Return": 3, - "executed": 1, - "instance.": 2, - "scicmd": 2, - "Execute": 1, - "Binds": 2, - "binding": 3, - "removed.": 2, - "invalid": 5, - "unchanged.": 1, - "Valid": 1, - "Key_Down": 1, - "Key_Up": 1, - "Key_Left": 1, - "Key_Right": 1, - "Key_Home": 1, - "Key_End": 1, - "Key_PageUp": 1, - "Key_PageDown": 1, - "Key_Delete": 1, - "Key_Insert": 1, - "Key_Escape": 1, - "Key_Backspace": 1, - "Key_Tab": 1, - "Key_Return.": 1, - "Keys": 1, - "SHIFT": 1, - "CTRL": 1, - "ALT": 1, - "META.": 1, - "setAlternateKey": 3, - "validKey": 3, - "setKey": 3, - "altkey": 3, - "alternateKey": 3, - "returned.": 4, - "qkey": 2, - "qaltkey": 2, - "valid": 2, - "QsciCommandSet": 1, - "*qs": 1, - "cmd": 1, - "*desc": 1, - "bindKey": 1, - "qk": 1, - "scik": 1, - "*qsCmd": 1, - "scikey": 1, - "scialtkey": 1, - "*descCmd": 1, - "QSCIPRINTER_H": 2, - "": 1, - "": 1, - "QT_BEGIN_NAMESPACE": 1, - "QRect": 2, - "QPainter": 2, - "QT_END_NAMESPACE": 1, - "QsciPrinter": 9, - "sub": 2, - "Qt": 1, - "QPrinter": 3, - "text": 5, - "Scintilla": 2, - "further": 1, - "classed": 1, - "layout": 1, - "adding": 2, - "headers": 3, - "footers": 2, - "example.": 1, - "Constructs": 1, - "printer": 1, - "paint": 1, - "PrinterMode": 1, - "ScreenResolution": 1, - "Destroys": 1, - "Format": 1, - "drawn": 2, - "painter": 4, - "add": 3, - "customised": 2, - "graphics.": 2, - "drawing": 4, - "actually": 1, - "sized.": 1, - "area": 5, - "draw": 1, - "text.": 3, - "necessary": 1, - "reserve": 1, - "By": 1, - "printable": 1, - "setFullPage": 1, - "because": 2, - "printRange": 2, - "try": 1, - "over": 1, - "pagenr": 2, - "numbered": 1, - "formatPage": 1, - "points": 2, - "font": 2, - "printing.": 2, - "setMagnification": 2, - "magnification": 3, - "mag": 2, - "printing": 2, - "magnification.": 1, - "qsb.": 1, - "negative": 2, - "signifies": 2, - "error.": 1, - "*qsb": 1, - "wrap": 4, - "WrapWord.": 1, - "setWrapMode": 2, - "WrapMode": 3, - "wrapMode": 2, - "wmode.": 1, - "wmode": 1, - "": 2, - "Gui": 1, - "rpc_init": 1, - "rpc_server_loop": 1, "v8": 9, "Scanner": 16, "UnicodeCache*": 4, @@ -14300,6 +12604,7 @@ "ScanHexNumber": 2, "expected_length": 4, "ASSERT": 17, + "prevent": 4, "overflow": 1, "c0_": 64, "d": 8, @@ -14309,6 +12614,7 @@ "STATIC_ASSERT": 5, "Token": 212, "NUM_TOKENS": 1, + "byte": 6, "one_char_tokens": 2, "ILLEGAL": 120, "LPAREN": 2, @@ -14362,6 +12668,7 @@ "ASSIGN": 1, "NE_STRICT": 1, "NE": 1, + "NOT": 3, "INC": 1, "ASSIGN_ADD": 1, "ADD": 1, @@ -14395,6 +12702,10 @@ "IsCarriageReturn": 2, "IsLineFeed": 2, "fall": 2, + "through": 4, + "n": 28, + "u": 9, + "xx": 2, "xxx": 1, "immediately": 1, "octal": 1, @@ -14403,9 +12714,11 @@ "consume": 2, "LiteralScope": 4, "literal": 2, + ".": 16, "X": 2, "E": 3, "l": 1, + "p": 6, "w": 1, "keyword": 1, "Unescaped": 1, @@ -14413,6 +12726,10 @@ "AddLiteralCharAdvance": 3, "literal.Complete": 2, "ScanLiteralUnicodeEscape": 3, + "ENV_H": 3, + "": 1, + "Q_OBJECT": 1, + "*instance": 1, "V8_SCANNER_H_": 3, "ParsingFlags": 1, "kNoParsingFlags": 1, @@ -14423,6 +12740,7 @@ "CLASSIC_MODE": 2, "STRICT_MODE": 2, "EXTENDED_MODE": 2, + "detect": 3, "x16": 1, "x36.": 1, "Utf16CharacterStream": 3, @@ -14485,6 +12803,7 @@ "utf16_literal": 3, "backing_store_.start": 5, "ascii_literal": 3, + "length": 10, "kInitialCapacity": 2, "kGrowthFactory": 2, "kMinConversionSlack": 1, @@ -14516,6 +12835,7 @@ "kNoOctalLocation": 1, "scanner_contants": 1, "current_token": 1, + "location": 6, "current_.location": 2, "literal_ascii_string": 1, "ASSERT_NOT_NULL": 9, @@ -14551,6 +12871,7 @@ "ScanRegExpFlags": 1, "IsIdentifier": 1, "CharacterStream*": 1, + "buffer": 9, "TokenDesc": 3, "LiteralBuffer*": 2, "literal_chars": 1, @@ -14568,179 +12889,89 @@ "desc": 2, "look": 1, "ahead": 1, + "": 2, "smallPrime_t": 1, - "UTILS_H": 3, - "": 1, - "": 1, - "": 1, - "QTemporaryFile": 1, - "showUsage": 1, - "QtMsgType": 1, - "dump_path": 1, - "minidump_id": 1, - "context": 8, - "QVariant": 1, - "coffee2js": 1, - "script": 1, - "injectJsInFrame": 2, - "jsFilePath": 5, - "libraryPath": 5, - "QWebFrame": 4, - "*targetFrame": 4, - "startingScript": 2, - "Encoding": 3, - "jsFileEnc": 2, - "readResourceFileUtf8": 1, - "resourceFilePath": 1, - "loadJSForDebug": 2, - "autorun": 2, - "cleanupFromDebug": 1, - "findScript": 1, - "jsFromScriptFile": 1, - "scriptPath": 1, - "enc": 1, - "shouldn": 1, - "instantiated": 1, - "QTemporaryFile*": 2, - "m_tempHarness": 1, - "We": 1, - "ourselves": 1, - "m_tempWrapper": 1, - "V8_DECLARE_ONCE": 1, - "init_once": 2, - "V8": 21, - "is_running_": 6, - "has_been_set_up_": 4, - "has_been_disposed_": 6, - "has_fatal_error_": 5, - "use_crankshaft_": 6, - "List": 3, - "": 3, - "call_completed_callbacks_": 16, - "LazyMutex": 1, - "entropy_mutex": 1, - "LAZY_MUTEX_INITIALIZER": 1, - "EntropySource": 3, - "entropy_source": 4, - "Deserializer*": 2, - "des": 3, - "FlagList": 1, - "EnforceFlagImplications": 1, - "InitializeOncePerProcess": 4, - "Isolate": 9, - "CurrentPerIsolateThreadData": 4, - "EnterDefaultIsolate": 1, - "thread_id": 1, - ".Equals": 1, - "ThreadId": 1, - "Current": 5, - "isolate": 15, - "IsDead": 2, - "Isolate*": 6, - "SetFatalError": 2, - "TearDown": 5, - "IsDefaultIsolate": 1, - "ElementsAccessor": 2, - "LOperand": 2, - "TearDownCaches": 1, - "RegisteredExtension": 1, - "UnregisterAll": 1, - "OS": 3, - "seed_random": 2, - "FLAG_random_seed": 2, - "val": 3, - "ScopedLock": 1, - "entropy_mutex.Pointer": 1, - "random": 1, - "random_base": 3, - "xFFFF": 2, - "FFFF": 1, - "SetEntropySource": 2, - "SetReturnAddressLocationResolver": 3, - "ReturnAddressLocationResolver": 2, - "resolver": 3, - "StackFrame": 1, - "Random": 3, - "Context*": 4, - "IsGlobalContext": 1, - "ByteArray*": 1, - "seed": 2, - "random_seed": 1, - "": 1, - "GetDataStartAddress": 1, - "RandomPrivate": 2, - "private_random_seed": 1, - "IdleNotification": 3, - "hint": 3, - "FLAG_use_idle_notification": 1, - "HEAP": 1, - "AddCallCompletedCallback": 2, - "CallCompletedCallback": 4, - "callback": 7, - "Lazy": 1, - "init.": 1, - "Add": 1, - "RemoveCallCompletedCallback": 2, - "Remove": 1, - "FireCallCompletedCallback": 2, - "HandleScopeImplementer*": 1, - "handle_scope_implementer": 5, - "CallDepthIsZero": 1, - "IncrementCallDepth": 1, - "DecrementCallDepth": 1, - "union": 1, - "double_value": 1, - "uint64_t_value": 1, - "double_int_union": 2, - "Object*": 4, - "FillHeapNumberWithRandom": 2, - "heap_number": 4, - "random_bits": 2, - "binary_million": 3, - "r.double_value": 3, - "r.uint64_t_value": 1, - "HeapNumber": 1, - "set_value": 1, - "InitializeOncePerProcessImpl": 3, - "SetUp": 4, - "FLAG_crankshaft": 1, - "Serializer": 1, - "SupportsCrankshaft": 1, - "PostSetUp": 1, - "RuntimeProfiler": 1, - "GlobalSetUp": 1, - "FLAG_stress_compaction": 1, - "FLAG_force_marking_deque_overflows": 1, - "FLAG_gc_global": 1, - "FLAG_max_new_space_size": 1, - "kPageSizeBits": 1, - "SetUpCaches": 1, - "SetUpJSCallerSavedCodeData": 1, - "SamplerRegistry": 1, - "ExternalReference": 1, - "CallOnce": 1, - "V8_V8_H_": 3, - "GOOGLE3": 2, - "NDEBUG": 4, - "both": 1, - "Deserializer": 1, - "AllStatic": 1, - "IsRunning": 1, - "UseCrankshaft": 1, - "FatalProcessOutOfMemory": 1, - "take_snapshot": 1, - "NilValue": 1, - "kNullValue": 1, - "kUndefinedValue": 1, - "EqualityKind": 1, - "kStrictEquality": 1, - "kNonStrictEquality": 1, + "": 2, + "DEFAULT_DELIMITER": 1, + "CsvStreamer": 5, + "ofstream": 1, + "File": 1, + "stream": 6, + "row_buffer": 1, + "Buffer": 10, + "row": 12, + "data": 26, + "flushed/written": 1, + "fields": 4, + "Number": 8, + "columns": 2, + "rows": 3, + "records": 2, + "including": 2, + "header": 7, + "delimiter": 2, + "Delimiter": 1, + "comma": 2, + "sanitize": 1, + "Returns": 2, + "ready": 1, + "into": 6, + "Empty": 1, + "CSV": 4, + "streamer...": 1, + "open": 6, + "writing": 2, + "Same": 1, + "...": 1, + "Opens": 3, + "given": 16, + "path/name": 3, + "Ensures": 1, + "closed": 1, + "saved": 1, + "delimiting": 1, + "add_field": 1, + "still": 3, + "adds": 1, + "field": 5, + "save_fields": 1, + "Call": 2, + "save": 1, + "all": 11, + "writes": 2, + "append": 8, + "Appends": 5, + "quoted": 1, + "needed": 3, + "leading/trailing": 1, + "spaces": 3, + "trimmed": 1, + "Like": 1, + "but": 5, + "specify": 1, + "whether": 4, + "trim": 2, + "either": 4, + "keep": 1, + "writeln": 1, + "Flushes": 1, + "what": 2, + "Saves": 1, + "closes": 1, + "field_count": 1, + "Gets": 2, + "row_count": 1, "PY_SSIZE_T_CLEAN": 1, "Py_PYTHON_H": 1, + "#error": 9, "Python": 1, "compile": 1, + "C": 6, "extensions": 1, + "please": 2, + "install": 3, "development": 1, + "version": 38, "Python.": 1, "": 1, "offsetof": 2, @@ -14797,7 +13028,9 @@ "*buf": 1, "PyObject": 221, "*obj": 2, + "len": 15, "itemsize": 2, + "readonly": 3, "ndim": 2, "*format": 1, "*shape": 1, @@ -14922,6 +13155,7 @@ "PyObject_DelAttrString": 2, "__Pyx_NAMESTR": 3, "__Pyx_DOCSTR": 3, + "__cplusplus": 12, "__PYX_EXTERN_C": 2, "_USE_MATH_DEFINES": 1, "": 1, @@ -15015,6 +13249,7 @@ "complex": 2, "__pyx_t_float_complex": 27, "_Complex": 2, + "real": 4, "imag": 2, "__pyx_t_double_complex": 27, "npy_cfloat": 1, @@ -15124,6 +13359,7 @@ "cabs": 1, "cpow": 1, "__Pyx_PyInt_AsUnsignedChar": 1, + "short": 5, "__Pyx_PyInt_AsUnsignedShort": 1, "__Pyx_PyInt_AsUnsignedInt": 1, "__Pyx_PyInt_AsChar": 1, @@ -15345,6 +13581,7 @@ "NPY_F_CONTIGUOUS": 1, "__pyx_k_tuple_8": 1, "__pyx_L7": 2, + "buf": 14, "PyArray_DATA": 1, "strides": 5, "malloc": 2, @@ -15391,6 +13628,7 @@ "__pyx_L2": 2, "__pyx_pf_5numpy_7ndarray_1__releasebuffer__": 2, "PyArray_HASFIELDS": 1, + "free": 4, "*__pyx_f_5numpy_PyArray_MultiIterNew1": 1, "*__pyx_v_a": 5, "PyArray_MultiIterNew": 5, @@ -15417,6 +13655,7 @@ "__pyx_v_fields": 7, "__pyx_v_childname": 4, "__pyx_v_new_offset": 5, + "names": 3, "PyTuple_GET_SIZE": 2, "PyTuple_GET_ITEM": 3, "PyObject_GetItem": 1, @@ -15434,27 +13673,1817 @@ "elsize": 1, "__pyx_k_tuple_16": 1, "__pyx_L10": 2, - "Py_EQ": 6 + "Py_EQ": 6, + "": 2, + "main": 2, + "cout": 2, + "endl": 1, + "V8_DECLARE_ONCE": 1, + "init_once": 2, + "V8": 21, + "is_running_": 6, + "has_been_set_up_": 4, + "has_been_disposed_": 6, + "has_fatal_error_": 5, + "use_crankshaft_": 6, + "List": 3, + "": 3, + "call_completed_callbacks_": 16, + "LazyMutex": 1, + "entropy_mutex": 1, + "LAZY_MUTEX_INITIALIZER": 1, + "EntropySource": 3, + "entropy_source": 4, + "Deserializer*": 2, + "des": 3, + "FlagList": 1, + "EnforceFlagImplications": 1, + "InitializeOncePerProcess": 4, + "Isolate": 9, + "CurrentPerIsolateThreadData": 4, + "EnterDefaultIsolate": 1, + "thread_id": 1, + ".Equals": 1, + "ThreadId": 1, + "Current": 5, + "isolate": 15, + "IsDead": 2, + "Isolate*": 6, + "SetFatalError": 2, + "TearDown": 5, + "IsDefaultIsolate": 1, + "ElementsAccessor": 2, + "LOperand": 2, + "TearDownCaches": 1, + "RegisteredExtension": 1, + "UnregisterAll": 1, + "OS": 3, + "seed_random": 2, + "uint32_t*": 7, + "FLAG_random_seed": 2, + "val": 3, + "ScopedLock": 1, + "entropy_mutex.Pointer": 1, + "random": 1, + "random_base": 3, + "xFFFF": 2, + "FFFF": 1, + "SetEntropySource": 2, + "SetReturnAddressLocationResolver": 3, + "ReturnAddressLocationResolver": 2, + "resolver": 3, + "StackFrame": 1, + "Random": 3, + "Context*": 4, + "IsGlobalContext": 1, + "ByteArray*": 1, + "seed": 2, + "random_seed": 1, + "": 1, + "GetDataStartAddress": 1, + "RandomPrivate": 2, + "private_random_seed": 1, + "IdleNotification": 3, + "hint": 3, + "FLAG_use_idle_notification": 1, + "HEAP": 1, + "AddCallCompletedCallback": 2, + "CallCompletedCallback": 4, + "callback": 7, + "Lazy": 1, + "init.": 1, + "Add": 1, + "RemoveCallCompletedCallback": 2, + "Remove": 1, + "FireCallCompletedCallback": 2, + "HandleScopeImplementer*": 1, + "handle_scope_implementer": 5, + "CallDepthIsZero": 1, + "IncrementCallDepth": 1, + "DecrementCallDepth": 1, + "union": 1, + "double_value": 1, + "uint64_t_value": 1, + "double_int_union": 2, + "Object*": 4, + "FillHeapNumberWithRandom": 2, + "heap_number": 4, + "random_bits": 2, + "binary_million": 3, + "r.double_value": 3, + "r.uint64_t_value": 1, + "HeapNumber": 1, + "set_value": 1, + "InitializeOncePerProcessImpl": 3, + "SetUp": 4, + "FLAG_crankshaft": 1, + "Serializer": 1, + "enabled": 4, + "CPU": 5, + "SupportsCrankshaft": 1, + "PostSetUp": 1, + "RuntimeProfiler": 1, + "GlobalSetUp": 1, + "FLAG_stress_compaction": 1, + "FLAG_force_marking_deque_overflows": 1, + "FLAG_gc_global": 1, + "FLAG_max_new_space_size": 1, + "kPageSizeBits": 1, + "SetUpCaches": 1, + "SetUpJSCallerSavedCodeData": 1, + "SamplerRegistry": 1, + "ExternalReference": 1, + "CallOnce": 1, + "LIBCANIH": 2, + "": 1, + "": 1, + "int64": 1, + "//#define": 1, + "DEBUG": 5, + "dout": 2, + "cerr": 1, + "libcanister": 2, + "//the": 8, + "canmem": 22, + "generic": 1, + "memory": 14, + "container": 2, + "commonly": 1, + "//throughout": 1, + "canister": 14, + "framework": 1, + "hold": 1, + "uncertain": 1, + "//length": 1, + "contain": 1, + "null": 3, + "bytes.": 1, + "raw": 2, + "absolute": 1, + "//creates": 3, + "unallocated": 1, + "allocsize": 1, + "allocated": 2, + "blank": 1, + "strdata": 1, + "//automates": 1, + "creation": 1, + "zero": 5, + "limited": 2, + "canmems": 1, + "//cleans": 1, + "zeromem": 1, + "//overwrites": 2, + "fragmem": 1, + "fragment": 2, + "notation": 1, + "countlen": 1, + "//counts": 1, + "strings": 1, + "//removes": 1, + "nulls": 1, + "//returns": 2, + "//contains": 2, + "information": 3, + "about": 6, + "caninfo": 2, + "path": 8, + "//physical": 1, + "internalname": 1, + "//a": 1, + "numfiles": 1, + "files": 6, + "//necessary": 1, + "canfile": 7, + "//this": 1, + "holds": 2, + "within": 4, + "//canister": 1, + "canister*": 1, + "parent": 1, + "//internal": 1, + "//use": 1, + "their": 6, + "own.": 1, + "newline": 2, + "delimited": 2, + "list": 3, + "container.": 1, + "TOC": 1, + "info": 2, + "general": 1, + "canfiles": 1, + "recommended": 1, + "programs": 4, + "modify": 1, + "//these": 1, + "directly": 2, + "enforced.": 1, + "canfile*": 1, + "//if": 1, + "write": 8, + "routines": 1, + "anything": 1, + "//maximum": 1, + "//time": 1, + "whatever": 1, + "suits": 1, + "your": 12, + "application.": 1, + "cachemax": 2, + "cachecnt": 1, + "//number": 1, + "cache": 2, + "//both": 1, + "initialize": 1, + "physical": 4, + "fspath": 3, + "//destroys": 1, + "flushing": 1, + "modded": 1, + "buffers": 3, + "course": 2, + "//open": 1, + "//does": 1, + "exist": 2, + "//close": 1, + "flush": 1, + "//deletes": 1, + "inside": 1, + "delFile": 1, + "//pulls": 1, + "contents": 3, + "disk": 2, + "getFile": 1, + "does": 4, + "otherwise": 1, + "overwrites": 1, + "writeFile": 2, + "//get": 1, + "containing": 2, + "//list": 1, + "paths": 1, + "getTOC": 1, + "//brings": 1, + "back": 1, + "limit": 1, + "//important": 1, + "sCFID": 2, + "safe": 4, + "CFID": 2, + "avoid": 1, + "uncaching": 1, + "//really": 1, + "internally": 1, + "harm.": 1, + "cacheclean": 1, + "dFlush": 1, + "Gui": 1, + "Q_OS_LINUX": 2, + "": 1, + "QT_VERSION": 1, + "QT_VERSION_CHECK": 1, + "Something": 1, + "wrong": 1, + "setup.": 1, + "Please": 4, + "mailing": 1, + "argc": 2, + "char**": 2, + "argv": 2, + "google_breakpad": 1, + "ExceptionHandler": 1, + "eh": 2, + "qInstallMsgHandler": 1, + "QApplication": 1, + "app": 1, + "STATIC_BUILD": 1, + "Q_INIT_RESOURCE": 2, + "WebKit": 1, + "InspectorBackendStub": 1, + "app.setWindowIcon": 1, + "QIcon": 1, + "app.setApplicationName": 1, + "app.setOrganizationName": 1, + "app.setOrganizationDomain": 1, + "app.setApplicationVersion": 1, + "PHANTOMJS_VERSION_STRING": 1, + "Phantom": 1, + "phantom": 1, + "phantom.execute": 1, + "app.exec": 1, + "phantom.returnValue": 1, + "GDSDBREADER_H": 3, + "": 1, + "GDS_DIR": 1, + "level": 10, + "LEVEL_ONE": 1, + "LEVEL_TWO": 1, + "LEVEL_THREE": 1, + "dbDataStructure": 2, + "label": 1, + "quint32": 3, + "depth": 1, + "userIndex": 1, + "QByteArray": 1, + "COMPRESSED": 1, + "optimize": 1, + "ram": 1, + "decompressed": 1, + "quint64": 1, + "uniqueID": 1, + "QVector": 2, + "": 1, + "nextItems": 1, + "": 1, + "nextItemsIndices": 1, + "dbDataStructure*": 1, + "father": 1, + "fatherIndex": 1, + "noFatherRoot": 1, + "tell": 1, + "node": 1, + "root": 1, + "so": 2, + "hasn": 1, + "argument": 1, + "overload.": 1, + "myclass.label": 2, + "myclass.depth": 2, + "myclass.userIndex": 2, + "qCompress": 2, + "myclass.data": 4, + "myclass.uniqueID": 2, + "myclass.nextItemsIndices": 2, + "myclass.fatherIndex": 2, + "myclass.noFatherRoot": 2, + "myclass.fileName": 2, + "myclass.firstLineData": 4, + "myclass.linesNumbers": 2, + "QDataStream": 2, + "myclass": 1, + "//Don": 1, + "read": 21, + "qUncompress": 2, + "mainpage": 1, + "library": 14, + "Broadcom": 3, + "BCM": 14, + "Raspberry": 6, + "Pi": 5, + "RPi": 17, + "It": 7, + "provides": 3, + "access": 17, + "GPIO": 87, + "IO": 2, + "functions": 19, + "chip": 9, + "allowing": 3, + "pins": 40, + "pin": 90, + "IDE": 4, + "plug": 3, + "board": 2, + "external": 3, + "devices.": 1, + "reading": 3, + "digital": 2, + "inputs": 2, + "setting": 2, + "outputs": 1, + "SPI": 44, + "I2C": 29, + "accessing": 2, + "timers.": 1, + "Pin": 65, + "event": 3, + "detection": 2, + "supported": 3, + "polling": 1, + "interrupts": 1, + "compatible": 1, + "installs": 1, + "non": 2, + "shared": 2, + "Linux": 2, + "based": 4, + "distro": 1, + "clearly": 1, + "except": 2, + "another": 1, + "package": 1, + "documentation": 3, + "refers": 1, + "downloaded": 1, + "http": 11, + "//www.airspayce.com/mikem/bcm2835/bcm2835": 1, + "tar.gz": 1, + "You": 9, + "find": 2, + "latest": 2, + "//www.airspayce.com/mikem/bcm2835": 1, + "Several": 1, + "provided.": 1, + "Based": 1, + "//elinux.org/RPi_Low": 1, + "level_peripherals": 1, + "//www.raspberrypi.org/wp": 1, + "content/uploads/2012/02/BCM2835": 1, + "ARM": 5, + "Peripherals.pdf": 1, + "//www.scribd.com/doc/101830961/GPIO": 2, + "Pads": 3, + "Control2": 2, + "also": 3, + "online": 1, + "help": 1, + "discussion": 1, + "//groups.google.com/group/bcm2835": 1, + "group": 23, + "questions": 1, + "discussions": 1, + "topic.": 1, + "Do": 1, + "contact": 1, + "author": 3, + "unless": 1, + "discuss": 1, + "commercial": 1, + "licensing.": 1, + "Tested": 1, + "debian6": 1, + "wheezy": 3, + "raspbian": 3, + "Occidentalisv01": 2, + "CAUTION": 1, + "been": 14, + "observed": 1, + "enables": 3, + "such": 4, + "bcm2835_gpio_len": 5, + "pulled": 1, + "LOW": 8, + "cause": 1, + "temporary": 1, + "hangs": 1, + "Occidentalisv01.": 1, + "Reason": 1, + "yet": 1, + "determined": 1, + "suspect": 1, + "handler": 1, + "hitting": 1, + "hard": 1, + "loop": 2, + "those": 3, + "OSs.": 1, + "friends": 2, + "disable": 2, + "bcm2835_gpio_cler_len": 1, + "use.": 1, + "par": 9, + "Installation": 1, + "consists": 1, + "installed": 1, + "usual": 3, + "places": 1, + "#": 1, + "download": 2, + "say": 1, + "bcm2835": 7, + "xx.tar.gz": 2, + "tar": 1, + "zxvf": 1, + "cd": 1, + "./configure": 1, + "sudo": 2, + "endcode": 2, + "Physical": 21, + "Addresses": 6, + "bcm2835_peri_read": 3, + "bcm2835_peri_write": 3, + "bcm2835_peri_set_bits": 2, + "peripheral": 14, + "register": 17, + "functions.": 4, + "They": 1, + "designed": 3, + "addresses": 4, + "described": 1, + "section": 6, + "BCM2835": 2, + "Peripherals": 1, + "manual.": 1, + "FFFFFF": 1, + "peripherals.": 1, + "bus": 4, + "peripherals": 2, + "set": 18, + "map": 3, + "onto": 1, + "address": 13, + "starting": 1, + "E000000.": 1, + "Thus": 1, + "advertised": 1, + "manual": 8, + "Ennnnnn": 1, + "available": 6, + "nnnnnn.": 1, + "registers": 12, + "following": 2, + "externals": 1, + "bcm2835_gpio": 2, + "bcm2835_pwm": 2, + "bcm2835_clk": 2, + "bcm2835_pads": 2, + "bcm2835_spio0": 1, + "bcm2835_st": 1, + "bcm2835_bsc0": 1, + "bcm2835_bsc1": 1, + "Numbering": 1, + "numbering": 1, + "inconsistent": 1, + "underlying": 4, + "numbering.": 1, + "//elinux.org/RPi_BCM2835_GPIOs": 1, + "well": 1, + "power": 1, + "ground": 1, + "pins.": 1, + "Not": 4, + "header.": 1, + "Version": 40, + "P5": 6, + "connector": 1, + "V": 2, + "Gnd.": 1, + "passed": 4, + "_not_": 1, + "number.": 1, + "There": 1, + "symbolic": 1, + "definitions": 3, + "convenience.": 1, + "See": 7, + "ref": 32, + "RPiGPIOPin.": 22, + "Pins": 2, + "bcm2835_spi_*": 1, + "allow": 5, + "SPI0": 17, + "send": 3, + "received": 3, + "Serial": 3, + "Peripheral": 6, + "Interface": 2, + "more": 4, + "//en.wikipedia.org/wiki/Serial_Peripheral_Interface_Bus": 1, + "When": 12, + "bcm2835_spi_begin": 3, + "changes": 2, + "bahaviour": 1, + "behaviour": 1, + "order": 14, + "support": 4, + "SPI.": 1, + "While": 1, + "bcm2835_spi_gpio_write": 1, + "bcm2835_spi_end": 4, + "revert": 1, + "configured": 1, + "controled": 1, + "bcm2835_gpio_*": 1, + "calls.": 1, + "P1": 56, + "MOSI": 8, + "MISO": 6, + "CLK": 6, + "CE0": 5, + "CE1": 6, + "bcm2835_i2c_*": 2, + "BSC": 10, + "generically": 1, + "referred": 1, + "I": 4, + "//en.wikipedia.org/wiki/I": 1, + "C2": 1, + "B2C": 1, + "V2": 2, + "SDA": 3, + "SLC": 1, + "Real": 1, + "Time": 1, + "performance": 2, + "constraints": 2, + "i.e.": 1, + "they": 2, + "Such": 1, + "part": 1, + "kernel": 4, + "usually": 2, + "subject": 1, + "paging": 1, + "swapping": 2, + "things": 1, + "besides": 1, + "running": 1, + "program.": 1, + "means": 8, + "expect": 2, + "programs.": 1, + "In": 2, + "particular": 1, + "guarantee": 1, + "bcm2835_delay": 5, + "bcm2835_delayMicroseconds": 6, + "exactly": 2, + "requested.": 1, + "fact": 2, + "depending": 1, + "activity": 1, + "host": 1, + "etc": 1, + "might": 1, + "significantly": 1, + "longer": 1, + "delay": 9, + "times": 2, + "asked": 1, + "for.": 1, + "So": 1, + "dont": 1, + "request.": 1, + "Arjan": 2, + "reports": 1, + "sched_param": 1, + "sp": 4, + "sp.sched_priority": 1, + "sched_get_priority_max": 1, + "SCHED_FIFO": 2, + "sched_setscheduler": 1, + "mlockall": 1, + "MCL_CURRENT": 1, + "MCL_FUTURE": 1, + "Open": 2, + "Source": 2, + "Licensing": 2, + "GPL": 2, + "appropriate": 7, + "option": 1, + "share": 2, + "application": 2, + "everyone": 1, + "distribute": 1, + "give": 2, + "them": 1, + "who": 1, + "uses": 4, + "wish": 2, + "software": 1, + "under": 2, + "contribute": 1, + "community": 1, + "accordance": 1, + "distributed.": 1, + "//www.gnu.org/copyleft/gpl.html": 1, + "COPYING": 1, + "Acknowledgements": 1, + "Some": 1, + "inspired": 2, + "Dom": 1, + "Gert.": 1, + "Alan": 1, + "Barr.": 1, + "Revision": 1, + "History": 1, + "Initial": 1, + "release": 1, + "Minor": 1, + "bug": 1, + "fixes": 1, + "Added": 11, + "bcm2835_spi_transfern": 3, + "Fixed": 4, + "problem": 2, + "prevented": 1, + "used.": 2, + "Reported": 5, + "David": 1, + "Robinson.": 1, + "bcm2835_close": 4, + "deinit": 1, + "library.": 3, + "Suggested": 1, + "sar": 1, + "Ortiz": 1, + "Document": 1, + "Functions": 1, + "bcm2835_gpio_ren": 3, + "bcm2835_gpio_fen": 3, + "bcm2835_gpio_hen": 3, + "bcm2835_gpio_aren": 3, + "bcm2835_gpio_afen": 3, + "now": 4, + "specified.": 1, + "Other": 1, + "were": 1, + "already": 1, + "previously": 10, + "stay": 1, + "enabled.": 1, + "bcm2835_gpio_clr_ren": 2, + "bcm2835_gpio_clr_fen": 2, + "bcm2835_gpio_clr_hen": 2, + "bcm2835_gpio_clr_len": 2, + "bcm2835_gpio_clr_aren": 2, + "bcm2835_gpio_clr_afen": 2, + "enable": 3, + "individual": 1, + "suggested": 3, + "Andreas": 1, + "Sundstrom.": 1, + "bcm2835_spi_transfernb": 2, + "write.": 1, + "Improvements": 3, + "barrier": 3, + "maddin.": 1, + "contributed": 1, + "mikew": 1, + "noticed": 1, + "mallocing": 1, + "mmaps": 1, + "/dev/mem.": 1, + "removed": 1, + "mallocs": 1, + "frees": 1, + "found": 1, + "nanosleep": 7, + "takes": 1, + "least": 2, + "us.": 1, + "link": 3, + "version.": 1, + "doc": 1, + "Also": 1, + "added": 2, + "define": 2, + "passwrd": 1, + "Gert": 1, + "says": 1, + "pad": 4, + "settings.": 1, + "Changed": 1, + "collisions": 1, + "wiringPi.": 1, + "Macros": 2, + "delayMicroseconds": 3, + "disabled": 2, + "defining": 1, + "BCM2835_NO_DELAY_COMPATIBILITY": 2, + "incorrect": 2, + "Hardware": 1, + "pointers": 2, + "initialisation": 2, + "externally": 1, + "bcm2835_spi0.": 1, + "compiles": 1, + "even": 2, + "CLOCK_MONOTONIC_RAW": 1, + "instead.": 1, + "errors": 1, + "divider": 15, + "frequencies": 2, + "MHz": 14, + "clock.": 6, + "Ben": 1, + "Simpson.": 1, + "examples": 1, + "Mark": 5, + "Wolfe.": 1, + "bcm2835_gpio_set_multi": 2, + "bcm2835_gpio_clr_multi": 2, + "bcm2835_gpio_write_multi": 4, + "mask": 20, + "once.": 1, + "Requested": 2, + "Sebastian": 2, + "Loncar.": 2, + "bcm2835_gpio_write_mask.": 1, + "Changes": 1, + "timer": 2, + "counter": 1, + "clock_gettime": 1, + "improved": 1, + "accuracy.": 1, + "No": 2, + "lrt": 1, + "now.": 1, + "Contributed": 1, + "van": 1, + "Vught.": 1, + "Removed": 1, + "inlines": 1, + "patch": 1, + "don": 1, + "seem": 1, + "work": 1, + "everywhere.": 1, + "olly.": 1, + "Patch": 2, + "Dootson": 2, + "/dev/mem": 4, + "granted.": 1, + "susceptible": 1, + "bit": 19, + "overruns.": 1, + "courtesy": 1, + "Jeremy": 1, + "Mortis.": 1, + "BCM2835_GPFEN0": 2, + "broke": 1, + "ability": 1, + "falling": 4, + "edge": 8, + "events.": 1, + "Dootson.": 2, + "bcm2835_i2c_set_baudrate": 2, + "bcm2835_i2c_read_register_rs.": 1, + "bcm2835_i2c_read": 4, + "bcm2835_i2c_write": 4, + "fix": 1, + "ocasional": 1, + "reads": 2, + "completing.": 1, + "Patched": 1, + "atched": 1, + "his": 1, + "submitted": 1, + "load": 1, + "processes.": 1, + "Updated": 1, + "distribution": 1, + "details": 1, + "airspayce.com": 1, + "missing": 1, + "unmapmem": 1, + "pads": 7, + "leak.": 1, + "Hartmut": 1, + "Henkel.": 1, + "Mike": 1, + "McCauley": 1, + "mikem@airspayce.com": 1, + "DO": 1, + "CONTACT": 1, + "THE": 2, + "AUTHOR": 1, + "DIRECTLY": 1, + "USE": 1, + "LISTS": 1, + "BCM2835_H": 3, + "defgroup": 7, + "constants": 1, + "Constants": 1, + "passing": 1, + "values": 3, + "here": 1, + "@": 14, + "HIGH": 12, + "volts": 2, + "pin.": 21, + "Speed": 1, + "core": 1, + "clock": 21, + "core_clk": 1, + "BCM2835_CORE_CLK_HZ": 1, + "Base": 17, + "Address": 10, + "BCM2835_PERI_BASE": 9, + "System": 10, + "Timer": 9, + "BCM2835_ST_BASE": 1, + "BCM2835_GPIO_PADS": 2, + "Clock/timer": 1, + "BCM2835_CLOCK_BASE": 1, + "BCM2835_GPIO_BASE": 6, + "BCM2835_SPI0_BASE": 1, + "BSC0": 2, + "BCM2835_BSC0_BASE": 1, + "PWM": 2, + "BCM2835_GPIO_PWM": 1, + "C000": 1, + "BSC1": 2, + "BCM2835_BSC1_BASE": 1, + "ST": 1, + "registers.": 10, + "Available": 8, + "bcm2835_init": 11, + "volatile": 13, + "*bcm2835_st": 1, + "*bcm2835_gpio": 1, + "*bcm2835_pwm": 1, + "*bcm2835_clk": 1, + "PADS": 1, + "*bcm2835_pads": 1, + "*bcm2835_spi0": 1, + "*bcm2835_bsc0": 1, + "*bcm2835_bsc1": 1, + "Size": 2, + "BCM2835_PAGE_SIZE": 1, + "*1024": 2, + "BCM2835_BLOCK_SIZE": 1, + "offsets": 2, + "BCM2835_GPIO_BASE.": 1, + "Offsets": 1, + "bytes": 29, + "per": 3, + "Register": 1, + "View": 1, + "BCM2835_GPFSEL0": 1, + "Function": 8, + "BCM2835_GPFSEL1": 1, + "BCM2835_GPFSEL2": 1, + "BCM2835_GPFSEL3": 1, + "BCM2835_GPFSEL4": 1, + "BCM2835_GPFSEL5": 1, + "BCM2835_GPSET0": 1, + "Output": 6, + "Set": 2, + "BCM2835_GPSET1": 1, + "BCM2835_GPCLR0": 1, + "BCM2835_GPCLR1": 1, + "BCM2835_GPLEV0": 1, + "Level": 2, + "BCM2835_GPLEV1": 1, + "BCM2835_GPEDS0": 1, + "Event": 11, + "Detect": 35, + "Status": 6, + "BCM2835_GPEDS1": 1, + "BCM2835_GPREN0": 1, + "Rising": 8, + "Edge": 16, + "Enable": 38, + "BCM2835_GPREN1": 1, + "Falling": 8, + "BCM2835_GPFEN1": 1, + "BCM2835_GPHEN0": 1, + "High": 4, + "BCM2835_GPHEN1": 1, + "BCM2835_GPLEN0": 1, + "Low": 5, + "BCM2835_GPLEN1": 1, + "BCM2835_GPAREN0": 1, + "Async.": 4, + "BCM2835_GPAREN1": 1, + "BCM2835_GPAFEN0": 1, + "BCM2835_GPAFEN1": 1, + "BCM2835_GPPUD": 1, + "Pull": 11, + "up/down": 10, + "BCM2835_GPPUDCLK0": 1, + "Clock": 11, + "BCM2835_GPPUDCLK1": 1, + "bcm2835PortFunction": 1, + "Port": 1, + "select": 9, + "modes": 1, + "bcm2835_gpio_fsel": 2, + "BCM2835_GPIO_FSEL_INPT": 1, + "b000": 1, + "Input": 2, + "BCM2835_GPIO_FSEL_OUTP": 1, + "b001": 1, + "BCM2835_GPIO_FSEL_ALT0": 1, + "b100": 1, + "Alternate": 6, + "BCM2835_GPIO_FSEL_ALT1": 1, + "b101": 1, + "BCM2835_GPIO_FSEL_ALT2": 1, + "b110": 1, + "BCM2835_GPIO_FSEL_ALT3": 1, + "b111": 2, + "BCM2835_GPIO_FSEL_ALT4": 1, + "b011": 1, + "BCM2835_GPIO_FSEL_ALT5": 1, + "b010": 1, + "BCM2835_GPIO_FSEL_MASK": 1, + "bits": 11, + "bcm2835FunctionSelect": 2, + "bcm2835PUDControl": 4, + "Pullup/Pulldown": 1, + "bcm2835_gpio_pud": 5, + "BCM2835_GPIO_PUD_OFF": 1, + "b00": 1, + "Off": 3, + "pull": 1, + "BCM2835_GPIO_PUD_DOWN": 1, + "b01": 1, + "Down": 1, + "BCM2835_GPIO_PUD_UP": 1, + "b10": 1, + "Up": 1, + "Pad": 11, + "BCM2835_PADS_GPIO_0_27": 1, + "BCM2835_PADS_GPIO_28_45": 1, + "BCM2835_PADS_GPIO_46_53": 1, + "Control": 6, + "masks": 1, + "BCM2835_PAD_PASSWRD": 1, + "Password": 1, + "BCM2835_PAD_SLEW_RATE_UNLIMITED": 1, + "Slew": 1, + "rate": 3, + "unlimited": 1, + "BCM2835_PAD_HYSTERESIS_ENABLED": 1, + "Hysteresis": 1, + "BCM2835_PAD_DRIVE_2mA": 1, + "mA": 8, + "drive": 8, + "BCM2835_PAD_DRIVE_4mA": 1, + "BCM2835_PAD_DRIVE_6mA": 1, + "BCM2835_PAD_DRIVE_8mA": 1, + "BCM2835_PAD_DRIVE_10mA": 1, + "BCM2835_PAD_DRIVE_12mA": 1, + "BCM2835_PAD_DRIVE_14mA": 1, + "BCM2835_PAD_DRIVE_16mA": 1, + "bcm2835PadGroup": 4, + "specification": 1, + "bcm2835_gpio_pad": 2, + "BCM2835_PAD_GROUP_GPIO_0_27": 1, + "BCM2835_PAD_GROUP_GPIO_28_45": 1, + "BCM2835_PAD_GROUP_GPIO_46_53": 1, + "Numbers": 1, + "Here": 1, + "terms": 4, + "numbers.": 1, + "These": 6, + "requiring": 1, + "bin": 1, + "connected": 1, + "adopt": 1, + "slightly": 1, + "pinouts": 1, + "these": 1, + "RPI_V2_*.": 1, + "At": 1, + "bootup": 1, + "UART0_TXD": 3, + "UART0_RXD": 3, + "ie": 3, + "alt0": 1, + "respectively": 1, + "dedicated": 1, + "cant": 1, + "controlled": 1, + "independently": 1, + "RPI_GPIO_P1_03": 6, + "RPI_GPIO_P1_05": 6, + "RPI_GPIO_P1_07": 1, + "RPI_GPIO_P1_08": 1, + "defaults": 4, + "alt": 4, + "RPI_GPIO_P1_10": 1, + "RPI_GPIO_P1_11": 1, + "RPI_GPIO_P1_12": 1, + "RPI_GPIO_P1_13": 1, + "RPI_GPIO_P1_15": 1, + "RPI_GPIO_P1_16": 1, + "RPI_GPIO_P1_18": 1, + "RPI_GPIO_P1_19": 1, + "RPI_GPIO_P1_21": 1, + "RPI_GPIO_P1_22": 1, + "RPI_GPIO_P1_23": 1, + "RPI_GPIO_P1_24": 1, + "RPI_GPIO_P1_26": 1, + "RPI_V2_GPIO_P1_03": 1, + "RPI_V2_GPIO_P1_05": 1, + "RPI_V2_GPIO_P1_07": 1, + "RPI_V2_GPIO_P1_08": 1, + "RPI_V2_GPIO_P1_10": 1, + "RPI_V2_GPIO_P1_11": 1, + "RPI_V2_GPIO_P1_12": 1, + "RPI_V2_GPIO_P1_13": 1, + "RPI_V2_GPIO_P1_15": 1, + "RPI_V2_GPIO_P1_16": 1, + "RPI_V2_GPIO_P1_18": 1, + "RPI_V2_GPIO_P1_19": 1, + "RPI_V2_GPIO_P1_21": 1, + "RPI_V2_GPIO_P1_22": 1, + "RPI_V2_GPIO_P1_23": 1, + "RPI_V2_GPIO_P1_24": 1, + "RPI_V2_GPIO_P1_26": 1, + "RPI_V2_GPIO_P5_03": 1, + "RPI_V2_GPIO_P5_04": 1, + "RPI_V2_GPIO_P5_05": 1, + "RPI_V2_GPIO_P5_06": 1, + "RPiGPIOPin": 1, + "BCM2835_SPI0_CS": 1, + "Master": 12, + "BCM2835_SPI0_FIFO": 1, + "TX": 5, + "RX": 7, + "FIFOs": 1, + "BCM2835_SPI0_CLK": 1, + "Divider": 2, + "BCM2835_SPI0_DLEN": 1, + "Data": 9, + "Length": 2, + "BCM2835_SPI0_LTOH": 1, + "LOSSI": 1, + "TOH": 1, + "BCM2835_SPI0_DC": 1, + "DMA": 3, + "DREQ": 1, + "Controls": 1, + "BCM2835_SPI0_CS_LEN_LONG": 1, + "Long": 1, + "Lossi": 2, + "DMA_LEN": 1, + "BCM2835_SPI0_CS_DMA_LEN": 1, + "BCM2835_SPI0_CS_CSPOL2": 1, + "Chip": 9, + "Polarity": 5, + "BCM2835_SPI0_CS_CSPOL1": 1, + "BCM2835_SPI0_CS_CSPOL0": 1, + "BCM2835_SPI0_CS_RXF": 1, + "RXF": 2, + "FIFO": 25, + "Full": 1, + "BCM2835_SPI0_CS_RXR": 1, + "RXR": 3, + "Reading": 1, + "full": 9, + "BCM2835_SPI0_CS_TXD": 1, + "TXD": 2, + "accept": 2, + "BCM2835_SPI0_CS_RXD": 1, + "RXD": 2, + "contains": 2, + "BCM2835_SPI0_CS_DONE": 1, + "Done": 3, + "transfer": 8, + "BCM2835_SPI0_CS_TE_EN": 1, + "Unused": 2, + "BCM2835_SPI0_CS_LMONO": 1, + "BCM2835_SPI0_CS_LEN": 1, + "LEN": 1, + "LoSSI": 1, + "BCM2835_SPI0_CS_REN": 1, + "REN": 1, + "Read": 3, + "BCM2835_SPI0_CS_ADCS": 1, + "ADCS": 1, + "Automatically": 1, + "Deassert": 1, + "BCM2835_SPI0_CS_INTR": 1, + "INTR": 1, + "Interrupt": 5, + "BCM2835_SPI0_CS_INTD": 1, + "INTD": 1, + "BCM2835_SPI0_CS_DMAEN": 1, + "DMAEN": 1, + "BCM2835_SPI0_CS_TA": 1, + "Transfer": 3, + "Active": 2, + "BCM2835_SPI0_CS_CSPOL": 1, + "BCM2835_SPI0_CS_CLEAR": 1, + "BCM2835_SPI0_CS_CLEAR_RX": 1, + "BCM2835_SPI0_CS_CLEAR_TX": 1, + "BCM2835_SPI0_CS_CPOL": 1, + "BCM2835_SPI0_CS_CPHA": 1, + "Phase": 1, + "BCM2835_SPI0_CS_CS": 1, + "bcm2835SPIBitOrder": 3, + "Bit": 1, + "Specifies": 5, + "ordering": 4, + "bcm2835_spi_setBitOrder": 2, + "BCM2835_SPI_BIT_ORDER_LSBFIRST": 1, + "LSB": 1, + "First": 2, + "BCM2835_SPI_BIT_ORDER_MSBFIRST": 1, + "MSB": 1, + "Specify": 2, + "bcm2835_spi_setDataMode": 2, + "BCM2835_SPI_MODE0": 1, + "CPOL": 4, + "CPHA": 4, + "BCM2835_SPI_MODE1": 1, + "BCM2835_SPI_MODE2": 1, + "BCM2835_SPI_MODE3": 1, + "bcm2835SPIMode": 2, + "bcm2835SPIChipSelect": 3, + "BCM2835_SPI_CS0": 1, + "BCM2835_SPI_CS1": 1, + "BCM2835_SPI_CS2": 1, + "CS1": 1, + "CS2": 1, + "asserted": 3, + "BCM2835_SPI_CS_NONE": 1, + "CS": 5, + "yourself": 1, + "bcm2835SPIClockDivider": 3, + "generate": 2, + "Figures": 1, + "below": 1, + "period": 1, + "frequency.": 1, + "divided": 2, + "nominal": 2, + "reported": 2, + "contrary": 1, + "shown": 1, + "confirmed": 1, + "BCM2835_SPI_CLOCK_DIVIDER_65536": 1, + "us": 12, + "kHz": 10, + "BCM2835_SPI_CLOCK_DIVIDER_32768": 1, + "BCM2835_SPI_CLOCK_DIVIDER_16384": 1, + "BCM2835_SPI_CLOCK_DIVIDER_8192": 1, + "/51757813kHz": 1, + "BCM2835_SPI_CLOCK_DIVIDER_4096": 1, + "BCM2835_SPI_CLOCK_DIVIDER_2048": 1, + "BCM2835_SPI_CLOCK_DIVIDER_1024": 1, + "BCM2835_SPI_CLOCK_DIVIDER_512": 1, + "BCM2835_SPI_CLOCK_DIVIDER_256": 1, + "BCM2835_SPI_CLOCK_DIVIDER_128": 1, + "ns": 9, + "BCM2835_SPI_CLOCK_DIVIDER_64": 1, + "BCM2835_SPI_CLOCK_DIVIDER_32": 1, + "BCM2835_SPI_CLOCK_DIVIDER_16": 1, + "BCM2835_SPI_CLOCK_DIVIDER_8": 1, + "BCM2835_SPI_CLOCK_DIVIDER_4": 1, + "BCM2835_SPI_CLOCK_DIVIDER_2": 1, + "fastest": 1, + "BCM2835_SPI_CLOCK_DIVIDER_1": 1, + "same": 3, + "/65536": 1, + "BCM2835_BSC_C": 1, + "BCM2835_BSC_S": 1, + "BCM2835_BSC_DLEN": 1, + "BCM2835_BSC_A": 1, + "Slave": 1, + "BCM2835_BSC_FIFO": 1, + "BCM2835_BSC_DIV": 1, + "BCM2835_BSC_DEL": 1, + "Delay": 4, + "BCM2835_BSC_CLKT": 1, + "Stretch": 2, + "Timeout": 2, + "BCM2835_BSC_C_I2CEN": 1, + "BCM2835_BSC_C_INTR": 1, + "BCM2835_BSC_C_INTT": 1, + "BCM2835_BSC_C_INTD": 1, + "DONE": 2, + "BCM2835_BSC_C_ST": 1, + "Start": 4, + "BCM2835_BSC_C_CLEAR_1": 1, + "BCM2835_BSC_C_CLEAR_2": 1, + "BCM2835_BSC_C_READ": 1, + "BCM2835_BSC_S_CLKT": 1, + "stretch": 1, + "BCM2835_BSC_S_ERR": 1, + "ACK": 1, + "BCM2835_BSC_S_RXF": 1, + "BCM2835_BSC_S_TXE": 1, + "TXE": 1, + "BCM2835_BSC_S_RXD": 1, + "BCM2835_BSC_S_TXD": 1, + "BCM2835_BSC_S_RXR": 1, + "BCM2835_BSC_S_TXW": 1, + "TXW": 1, + "BCM2835_BSC_S_DONE": 1, + "BCM2835_BSC_S_TA": 1, + "BCM2835_BSC_FIFO_SIZE": 1, + "bcm2835I2CClockDivider": 3, + "BCM2835_I2C_CLOCK_DIVIDER_2500": 1, + "BCM2835_I2C_CLOCK_DIVIDER_626": 1, + "BCM2835_I2C_CLOCK_DIVIDER_150": 1, + "reset": 1, + "BCM2835_I2C_CLOCK_DIVIDER_148": 1, + "bcm2835I2CReasonCodes": 5, + "reason": 4, + "codes": 1, + "BCM2835_I2C_REASON_OK": 1, + "Success": 1, + "BCM2835_I2C_REASON_ERROR_NACK": 1, + "Received": 4, + "NACK": 1, + "BCM2835_I2C_REASON_ERROR_CLKT": 1, + "BCM2835_I2C_REASON_ERROR_DATA": 1, + "sent": 1, + "BCM2835_ST_CS": 1, + "Control/Status": 1, + "BCM2835_ST_CLO": 1, + "Counter": 4, + "Lower": 2, + "BCM2835_ST_CHI": 1, + "Upper": 1, + "BCM2835_PWM_CONTROL": 1, + "BCM2835_PWM_STATUS": 1, + "BCM2835_PWM0_RANGE": 1, + "BCM2835_PWM0_DATA": 1, + "BCM2835_PWM1_RANGE": 1, + "BCM2835_PWM1_DATA": 1, + "BCM2835_PWMCLK_CNTL": 1, + "BCM2835_PWMCLK_DIV": 1, + "BCM2835_PWM1_MS_MODE": 1, + "Run": 4, + "MS": 2, + "BCM2835_PWM1_USEFIFO": 1, + "BCM2835_PWM1_REVPOLAR": 1, + "Reverse": 2, + "polarity": 3, + "BCM2835_PWM1_OFFSTATE": 1, + "Ouput": 2, + "BCM2835_PWM1_REPEATFF": 1, + "Repeat": 2, + "empty": 2, + "BCM2835_PWM1_SERIAL": 1, + "serial": 2, + "BCM2835_PWM1_ENABLE": 1, + "Channel": 2, + "BCM2835_PWM0_MS_MODE": 1, + "BCM2835_PWM0_USEFIFO": 1, + "BCM2835_PWM0_REVPOLAR": 1, + "BCM2835_PWM0_OFFSTATE": 1, + "BCM2835_PWM0_REPEATFF": 1, + "BCM2835_PWM0_SERIAL": 1, + "BCM2835_PWM0_ENABLE": 1, + "init": 2, + "Library": 1, + "management": 1, + "intialise": 1, + "Initialise": 1, + "opening": 1, + "getting": 1, + "successfully": 1, + "bcm2835_set_debug": 2, + "fails": 1, + "returning": 1, + "crashes": 1, + "failures.": 1, + "Prints": 1, + "messages": 1, + "stderr": 1, + "errors.": 1, + "successful": 2, + "Close": 1, + "deallocating": 1, + "prevents": 1, + "makes": 1, + "out": 5, + "would": 2, + "causes": 1, + "normal": 1, + "param": 72, + "uint8_t": 43, + "lowlevel": 2, + "provide": 1, + "generally": 1, + "Reads": 5, + "done": 3, + "twice": 3, + "therefore": 6, + "always": 3, + "precautions": 3, + "correct": 3, + "paddr": 10, + "from.": 6, + "etc.": 5, + "without": 3, + "occurred": 2, + "since.": 2, + "bcm2835_peri_read_nb": 1, + "Writes": 2, + "bcm2835_peri_write_nb": 1, + "Alters": 1, + "regsiter.": 1, + "valu": 1, + "alters": 1, + "deines": 1, + "according": 1, + "value.": 2, + "All": 1, + "unaffected.": 1, + "subset": 1, + "register.": 3, + "masked": 2, + "mask.": 1, + "Bitmask": 1, + "altered": 1, + "gpio": 1, + "interface.": 3, + "state.": 1, + "configures": 1, + "RPI_GPIO_P1_*": 21, + "Mode": 1, + "BCM2835_GPIO_FSEL_*": 1, + "specified": 27, + "HIGH.": 2, + "bcm2835_gpio_write": 3, + "bcm2835_gpio_set": 1, + "LOW.": 5, + "bcm2835_gpio_clr": 1, + "Mask": 6, + "affect.": 4, + "eg": 5, + "Works": 1, + "output.": 1, + "bcm2835_gpio_lev": 1, + "Status.": 7, + "Tests": 1, + "detected": 7, + "requested": 1, + "bcm2835_gpio_set_eds": 2, + "status": 1, + "th": 1, + "bcm2835_gpio_eds": 1, + "effect": 3, + "clearing": 1, + "flag.": 1, + "afer": 1, + "seeing": 1, + "rising": 3, + "sets": 8, + "GPRENn": 2, + "synchronous": 2, + "detection.": 2, + "signal": 4, + "sampled": 6, + "looking": 2, + "pattern": 2, + "signal.": 2, + "suppressing": 2, + "glitches.": 2, + "Disable": 6, + "Asynchronous": 6, + "incoming": 2, + "As": 2, + "edges": 2, + "very": 2, + "duration": 2, + "detected.": 2, + "bcm2835_gpio_pudclk": 3, + "resistor": 1, + "However": 3, + "convenient": 2, + "bcm2835_gpio_set_pud": 4, + "pud": 4, + "desired": 7, + "One": 3, + "BCM2835_GPIO_PUD_*": 2, + "Clocks": 3, + "earlier": 1, + "group.": 2, + "BCM2835_PAD_GROUP_GPIO_*": 2, + "BCM2835_PAD_*": 2, + "bcm2835_gpio_set_pad": 1, + "Delays": 3, + "milliseconds.": 1, + "Uses": 4, + "until": 1, + "up.": 1, + "mercy": 2, + "From": 2, + "interval": 4, + "req": 2, + "exact": 2, + "multiple": 2, + "granularity": 2, + "rounded": 2, + "multiple.": 2, + "Furthermore": 2, + "sleep": 2, + "completes": 2, + "becomes": 2, + "again": 2, + "thread.": 2, + "millis": 2, + "milliseconds": 1, + "microseconds.": 2, + "busy": 2, + "wait": 2, + "timers": 1, + "less": 1, + "microseconds": 6, + "Timer.": 1, + "RaspberryPi": 1, + "Your": 1, + "mileage": 1, + "vary.": 1, + "required": 2, + "bcm2835_gpio_write_mask": 1, + "clocking": 1, + "spi": 1, + "let": 2, + "device.": 2, + "operations.": 4, + "Forces": 2, + "ALT0": 2, + "funcitons": 1, + "End": 2, + "INPUT": 2, + "behaviour.": 2, + "NOTE": 1, + "effect.": 1, + "SPI0.": 1, + "Defaults": 1, + "BCM2835_SPI_BIT_ORDER_*": 1, + "speed.": 2, + "BCM2835_SPI_CLOCK_DIVIDER_*": 1, + "bcm2835_spi_setClockDivider": 1, + "uint16_t": 2, + "polariy": 1, + "phase": 1, + "BCM2835_SPI_MODE*": 1, + "bcm2835_spi_transfer": 5, + "made": 1, + "during": 4, + "transfer.": 4, + "cs": 4, + "activate": 1, + "slave.": 7, + "BCM2835_SPI_CS*": 1, + "bcm2835_spi_chipSelect": 4, + "occurs": 1, + "active.": 1, + "transfers": 1, + "happening": 1, + "complement": 1, + "inactive": 1, + "affect": 1, + "active": 3, + "Whether": 1, + "bcm2835_spi_setChipSelectPolarity": 1, + "Transfers": 6, + "Asserts": 3, + "simultaneously": 3, + "clocks": 2, + "MISO.": 2, + "polled": 2, + "Peripherls": 2, + "slave": 8, + "placed": 1, + "rbuf.": 1, + "rbuf": 3, + "tbuf": 4, + "send.": 5, + "put": 1, + "send/received": 2, + "bcm2835_spi_transfernb.": 1, + "replaces": 1, + "transmitted": 1, + "buffer.": 1, + "replace": 1, + "bcm2835_spi_writenb": 1, + "i2c": 1, + "Philips": 1, + "bus/interface": 1, + "January": 1, + "SCL": 2, + "bcm2835_i2c_end": 3, + "bcm2835_i2c_begin": 1, + "address.": 2, + "addr": 2, + "bcm2835_i2c_setSlaveAddress": 4, + "BCM2835_I2C_CLOCK_DIVIDER_*": 1, + "bcm2835_i2c_setClockDivider": 2, + "converting": 1, + "baudrate": 4, + "parameter": 1, + "equivalent": 1, + "divider.": 1, + "standard": 2, + "khz": 1, + "corresponds": 1, + "its": 1, + "driver.": 1, + "Of": 1, + "nothing": 1, + "driver": 1, + "receive.": 2, + "received.": 2, + "Allows": 2, + "slaves": 1, + "require": 3, + "repeated": 1, + "prior": 1, + "stop": 1, + "set.": 1, + "popular": 1, + "MPL3115A2": 1, + "pressure": 1, + "temperature": 1, + "sensor.": 1, + "Note": 1, + "combined": 1, + "better": 1, + "choice.": 1, + "Will": 1, + "regaddr": 2, + "bcm2835_i2c_read_register_rs": 1, + "st": 1, + "delays": 1, + "Counter.": 1, + "bcm2835_st_read": 1, + "offset.": 1, + "offset_micros": 2, + "Offset": 1, + "bcm2835_st_delay": 1, + "@example": 5, + "blink.c": 1, + "Blinks": 1, + "off": 1, + "input.c": 1, + "event.c": 1, + "Shows": 3, + "how": 3, + "spi.c": 1, + "spin.c": 1, + "PROTOBUF_protocol_2dbuffer_2eproto__INCLUDED": 3, + "GOOGLE_PROTOBUF_VERSION": 1, + "generated": 2, + "newer": 2, + "protoc": 2, + "incompatible": 2, + "Protocol": 2, + "headers.": 3, + "update": 1, + "GOOGLE_PROTOBUF_MIN_PROTOC_VERSION": 1, + "older": 1, + "regenerate": 1, + "protoc.": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "*this": 1, + "UnknownFieldSet": 2, + "UnknownFieldSet*": 1, + "GetCachedSize": 1, + "clear_name": 2, + "release_name": 2, + "set_allocated_name": 2, + "set_has_name": 7, + "clear_has_name": 5, + "mutable": 1, + "*name_": 1, + "assign": 3, + "temp": 2, + "SWIG": 2, + "V8_V8_H_": 3, + "GOOGLE3": 2, + "NDEBUG": 4, + "both": 1, + "Deserializer": 1, + "AllStatic": 1, + "IsRunning": 1, + "UseCrankshaft": 1, + "FatalProcessOutOfMemory": 1, + "take_snapshot": 1, + "NilValue": 1, + "kNullValue": 1, + "kUndefinedValue": 1, + "EqualityKind": 1, + "kStrictEquality": 1, + "kNonStrictEquality": 1, + "": 1, + "": 1, + "": 1, + "EC_KEY_regenerate_key": 1, + "*eckey": 2, + "BIGNUM": 9, + "*priv_key": 1, + "ok": 3, + "BN_CTX": 2, + "*ctx": 2, + "EC_POINT": 4, + "*pub_key": 1, + "eckey": 7, + "EC_GROUP": 2, + "*group": 2, + "EC_KEY_get0_group": 2, + "ctx": 26, + "BN_CTX_new": 2, + "err": 26, + "pub_key": 6, + "EC_POINT_new": 4, + "EC_POINT_mul": 3, + "priv_key": 2, + "EC_KEY_set_private_key": 1, + "EC_KEY_set_public_key": 2, + "EC_POINT_free": 4, + "BN_CTX_free": 2, + "ECDSA_SIG_recover_key_GFp": 3, + "ECDSA_SIG": 3, + "*ecsig": 1, + "msglen": 2, + "recid": 3, + "ret": 24, + "*x": 1, + "*e": 1, + "*order": 1, + "*sor": 1, + "*eor": 1, + "*field": 1, + "*R": 1, + "*O": 1, + "*Q": 1, + "*rr": 1, + "*zero": 1, + "BN_CTX_start": 1, + "BN_CTX_get": 8, + "EC_GROUP_get_order": 1, + "BN_copy": 1, + "BN_mul_word": 1, + "BN_add": 1, + "ecsig": 3, + "EC_GROUP_get_curve_GFp": 1, + "BN_cmp": 1, + "R": 6, + "EC_POINT_set_compressed_coordinates_GFp": 1, + "O": 5, + "EC_POINT_is_at_infinity": 1, + "Q": 5, + "EC_GROUP_get_degree": 1, + "BN_bin2bn": 3, + "msg": 1, + "*msglen": 1, + "BN_rshift": 1, + "BN_zero": 1, + "BN_mod_sub": 1, + "rr": 4, + "BN_mod_inverse": 1, + "sor": 3, + "BN_mod_mul": 2, + "eor": 3, + "BN_CTX_end": 1, + "EC_KEY_set_conv_form": 1, + "POINT_CONVERSION_COMPRESSED": 1, + "EC_KEY_new_by_curve_name": 2, + "NID_secp256k1": 2, + "throw": 4, + "EC_KEY_dup": 1, + "b.pkey": 2, + "b.fSet": 2, + "EC_KEY_copy": 1, + "nSize": 2, + "vchSig.clear": 2, + "vchSig.resize": 2, + "Shrink": 1, + "fit": 1, + "actual": 1, + "fOk": 3, + "*sig": 2, + "ECDSA_do_sign": 1, + "sig": 11, + "nBitsR": 3, + "BN_num_bits": 2, + "nBitsS": 3, + "nRecId": 4, + "<4;>": 1, + "keyRec": 5, + "BN_bn2bin": 2, + "/8": 2, + "ECDSA_SIG_free": 2, + "vchSig.size": 2, + "nV": 6, + "<27>": 1, + "ECDSA_SIG_new": 1, + "EC_KEY_free": 1, + "ECDSA_verify": 1, + "key.SetCompactSignature": 1, + "key.GetPubKey": 1, + "fCompr": 3, + "secret": 2, + "key2": 1, + "key2.SetSecret": 1, + "key2.GetPubKey": 1 }, "COBOL": { - "program": 1, - "-": 19, - "id.": 1, - "hello.": 3, - "procedure": 1, - "division.": 1, - "display": 1, - ".": 3, - "stop": 1, - "run.": 1, "IDENTIFICATION": 2, "DIVISION.": 4, "PROGRAM": 2, + "-": 19, "ID.": 2, + "hello.": 3, "PROCEDURE": 2, "DISPLAY": 2, + ".": 3, "STOP": 2, "RUN.": 2, + "program": 1, + "id.": 1, + "procedure": 1, + "division.": 1, + "display": 1, + "stop": 1, + "run.": 1, "COBOL": 7, "TEST": 2, "RECORD.": 1, @@ -16248,25 +16277,19 @@ "array": 14, "int": 36, "string": 7, - "set": 12, - "f": 3, - "block": 1, - "(": 20, + "map": 8, "a": 22, "b": 7, - "c": 9, + "(": 20, ")": 20, - "call": 1, + "c": 9, + "set": 12, + "m": 3, "bool": 6, "true": 1, "false": 1, "yes": 1, "no": 1, - "map": 8, - "m": 3, - "float": 1, - "require": 1, - "./stdio.cr": 1, "self": 2, "child": 1, "under": 2, @@ -16277,25 +16300,50 @@ "-": 4, "code": 4, "eval": 2, + "float": 1, + "f": 3, + "block": 1, + "call": 1, + "require": 1, + "./stdio.cr": 1, "nothing": 1, "container": 3 }, "Clojure": { "(": 83, + "deftest": 1, + "function": 1, + "-": 14, + "tests": 1, + "is": 7, + "count": 3, + "[": 41, + "]": 41, + ")": 84, + "false": 2, + "not": 3, + "true": 2, + "contains": 1, + "{": 8, + "foo": 6, + "bar": 4, + "}": 8, + "select": 1, + "keys": 2, + "baz": 4, + "vals": 1, + "filter": 1, + "fn": 2, + "x": 6, + "rem": 2, "defn": 4, "prime": 2, - "[": 41, "n": 9, - "]": 41, - "not": 3, - "-": 14, "any": 1, "zero": 1, "map": 2, "#": 1, - "rem": 2, "%": 1, - ")": 84, "range": 3, ";": 8, "while": 3, @@ -16308,17 +16356,13 @@ "that": 1, "evaluates": 1, "to": 1, - "false": 2, "like": 1, "take": 1, "for": 2, - "x": 6, "html": 1, "head": 1, "meta": 1, - "{": 8, "charset": 1, - "}": 8, "link": 1, "rel": 1, "href": 1, @@ -16327,38 +16371,6 @@ "body": 1, "div.nav": 1, "p": 1, - "into": 2, - "array": 3, - "aseq": 8, - "nil": 1, - "type": 2, - "let": 1, - "count": 3, - "a": 3, - "make": 1, - "loop": 1, - "seq": 1, - "i": 4, - "if": 1, - "<": 1, - "do": 1, - "aset": 1, - "recur": 1, - "next": 1, - "inc": 1, - "defprotocol": 1, - "ISound": 4, - "sound": 5, - "deftype": 2, - "Cat": 1, - "_": 3, - "Dog": 1, - "extend": 1, - "default": 1, - "rand": 2, - "scm*": 1, - "random": 1, - "real": 1, "clj": 1, "ns": 2, "c2.svg": 2, @@ -16382,7 +16394,6 @@ "dom": 1, "Stub": 1, "float": 2, - "fn": 2, "which": 1, "does": 1, "exist": 1, @@ -16396,214 +16407,53 @@ "and": 1, "vector": 1, "y": 1, - "deftest": 1, - "function": 1, - "tests": 1, - "is": 7, - "true": 2, - "contains": 1, - "foo": 6, - "bar": 4, - "select": 1, - "keys": 2, - "baz": 4, - "vals": 1, - "filter": 1 + "rand": 2, + "scm*": 1, + "random": 1, + "real": 1, + "into": 2, + "array": 3, + "aseq": 8, + "nil": 1, + "type": 2, + "let": 1, + "a": 3, + "make": 1, + "loop": 1, + "seq": 1, + "i": 4, + "if": 1, + "<": 1, + "do": 1, + "aset": 1, + "recur": 1, + "next": 1, + "inc": 1, + "defprotocol": 1, + "ISound": 4, + "sound": 5, + "deftype": 2, + "Cat": 1, + "_": 3, + "Dog": 1, + "extend": 1, + "default": 1 }, "CoffeeScript": { - "CoffeeScript": 1, - "require": 21, - "CoffeeScript.require": 1, - "CoffeeScript.eval": 1, - "(": 193, - "code": 20, - "options": 16, - "{": 31, - "}": 34, - ")": 196, - "-": 107, - "options.bare": 2, - "on": 3, - "eval": 2, - "CoffeeScript.compile": 2, - "CoffeeScript.run": 3, - "Function": 1, - "return": 29, - "unless": 19, - "window": 1, - "CoffeeScript.load": 2, - "url": 2, - "callback": 35, - "xhr": 2, - "new": 12, - "window.ActiveXObject": 1, - "or": 22, - "XMLHttpRequest": 1, - "xhr.open": 1, - "true": 8, - "xhr.overrideMimeType": 1, - "if": 102, - "of": 7, - "xhr.onreadystatechange": 1, - "xhr.readyState": 1, - "is": 36, - "xhr.status": 1, - "in": 32, - "[": 134, - "]": 134, - "xhr.responseText": 1, - "else": 53, - "throw": 3, - "Error": 1, - "xhr.send": 1, - "null": 15, - "runScripts": 3, - "scripts": 2, - "document.getElementsByTagName": 1, - "coffees": 2, - "s": 10, - "for": 14, - "when": 16, - "s.type": 1, - "index": 4, - "length": 4, - "coffees.length": 1, - "do": 2, - "execute": 3, - "script": 7, - "+": 31, - ".type": 1, - "script.src": 2, - "script.innerHTML": 1, - "window.addEventListener": 1, - "addEventListener": 1, - "no": 3, - "attachEvent": 1, - "class": 11, - "Animal": 3, - "constructor": 6, - "@name": 2, - "move": 3, - "meters": 2, - "alert": 4, - "Snake": 2, - "extends": 6, - "super": 4, - "Horse": 2, - "sam": 1, - "tom": 1, - "sam.move": 1, - "tom.move": 1, - "#": 35, - "fs": 2, - "path": 3, - "Lexer": 3, - "RESERVED": 3, - "parser": 1, - "vm": 1, - "require.extensions": 3, - "module": 1, - "filename": 6, - "content": 4, - "compile": 5, - "fs.readFileSync": 1, - "module._compile": 1, - "require.registerExtension": 2, - "exports.VERSION": 1, - "exports.RESERVED": 1, - "exports.helpers": 2, - "exports.compile": 1, - "merge": 1, - "try": 3, - "js": 5, - "parser.parse": 3, - "lexer.tokenize": 3, - ".compile": 1, - "options.header": 1, - "catch": 2, - "err": 20, - "err.message": 2, - "options.filename": 5, - "header": 1, - "exports.tokens": 1, - "exports.nodes": 1, - "source": 5, - "typeof": 2, - "exports.run": 1, - "mainModule": 1, - "require.main": 1, - "mainModule.filename": 4, - "process.argv": 1, - "then": 24, - "fs.realpathSync": 2, - "mainModule.moduleCache": 1, - "and": 20, - "mainModule.paths": 1, - "._nodeModulePaths": 1, - "path.dirname": 2, - "path.extname": 1, - "isnt": 7, - "mainModule._compile": 2, - "exports.eval": 1, - "code.trim": 1, - "Script": 2, - "vm.Script": 1, - "options.sandbox": 4, - "instanceof": 2, - "Script.createContext": 2, - ".constructor": 1, - "sandbox": 8, - "k": 4, - "v": 4, - "own": 2, - "sandbox.global": 1, - "sandbox.root": 1, - "sandbox.GLOBAL": 1, - "global": 3, - "sandbox.__filename": 3, - "||": 3, - "sandbox.__dirname": 1, - "sandbox.module": 2, - "sandbox.require": 2, - "Module": 2, - "_module": 3, - "options.modulename": 1, - "_require": 2, - "Module._load": 1, - "_module.filename": 1, - "r": 4, - "Object.getOwnPropertyNames": 1, - "_require.paths": 1, - "_module.paths": 1, - "Module._nodeModulePaths": 1, - "process.cwd": 1, - "_require.resolve": 1, - "request": 2, - "Module._resolveFilename": 1, - "o": 4, - "o.bare": 1, - "ensure": 1, - "value": 25, - "vm.runInThisContext": 1, - "vm.runInContext": 1, - "lexer": 1, - "parser.lexer": 1, - "lex": 1, - "tag": 33, - "@yytext": 1, - "@yylineno": 1, - "@tokens": 7, - "@pos": 2, - "setInput": 1, - "upcomingInput": 1, - "parser.yy": 1, "console.log": 1, "number": 13, "opposite": 2, + "true": 8, + "-": 107, + "if": 102, "square": 4, + "(": 193, "x": 6, + ")": 196, "*": 21, "list": 2, + "[": 134, + "]": 134, "math": 1, "root": 1, "Math.sqrt": 1, @@ -16613,10 +16463,139 @@ "runners...": 1, "print": 1, "runners": 1, + "alert": 4, "elvis": 1, "cubes": 1, "math.cube": 1, "num": 2, + "for": 14, + "in": 32, + "#": 35, + "async": 1, + "require": 21, + "fs": 2, + "nack": 1, + "{": 31, + "bufferLines": 3, + "pause": 2, + "sourceScriptEnv": 3, + "}": 34, + "join": 8, + "exists": 5, + "basename": 2, + "resolve": 2, + "module.exports": 1, + "class": 11, + "RackApplication": 1, + "constructor": 6, + "@configuration": 1, + "@root": 8, + "@firstHost": 1, + "@logger": 1, + "@configuration.getLogger": 1, + "@readyCallbacks": 3, + "@quitCallbacks": 3, + "@statCallbacks": 3, + "ready": 1, + "callback": 35, + "@state": 11, + "is": 36, + "else": 53, + "@readyCallbacks.push": 1, + "@initialize": 2, + "quit": 1, + "@quitCallbacks.push": 1, + "@terminate": 2, + "queryRestartFile": 1, + "fs.stat": 1, + "err": 20, + "stats": 1, + "@mtime": 5, + "null": 15, + "false": 4, + "lastMtime": 2, + "stats.mtime.getTime": 1, + "isnt": 7, + "setPoolRunOnceFlag": 1, + "unless": 19, + "@statCallbacks.length": 1, + "alwaysRestart": 2, + "@pool.runOnce": 1, + "statCallback": 2, + "@statCallbacks.push": 1, + "loadScriptEnvironment": 1, + "env": 18, + "async.reduce": 1, + "filename": 6, + "script": 7, + "scriptExists": 2, + "loadRvmEnvironment": 1, + "rvmrcExists": 2, + "rvm": 1, + "@configuration.rvmPath": 1, + "rvmExists": 2, + "libexecPath": 1, + "before": 2, + ".trim": 1, + "loadEnvironment": 1, + "@queryRestartFile": 2, + "@loadScriptEnvironment": 1, + "@configuration.env": 1, + "then": 24, + "@loadRvmEnvironment": 1, + "initialize": 1, + "@quit": 3, + "return": 29, + "@loadEnvironment": 1, + "@logger.error": 3, + "err.message": 2, + "@pool": 2, + "nack.createPool": 1, + "size": 1, + ".POW_WORKERS": 1, + "@configuration.workers": 1, + "idle": 1, + ".POW_TIMEOUT": 1, + "@configuration.timeout": 1, + "@pool.stdout": 1, + "line": 6, + "@logger.info": 1, + "@pool.stderr": 1, + "@logger.warning": 1, + "@pool.on": 2, + "process": 2, + "@logger.debug": 2, + "readyCallback": 2, + "terminate": 1, + "@ready": 3, + "@pool.quit": 1, + "quitCallback": 2, + "handle": 1, + "req": 4, + "res": 3, + "next": 3, + "resume": 2, + "@setPoolRunOnceFlag": 1, + "@restartIfNecessary": 1, + "req.proxyMetaVariables": 1, + "SERVER_PORT": 1, + "@configuration.dstPort.toString": 1, + "try": 3, + "@pool.proxy": 1, + "finally": 2, + "restart": 1, + "restartIfNecessary": 1, + "mtimeChanged": 2, + "@restart": 1, + "writeRvmBoilerplate": 1, + "powrc": 3, + "boilerplate": 2, + "@constructor.rvmBoilerplate": 1, + "fs.readFile": 1, + "contents": 2, + "contents.indexOf": 1, + "fs.writeFile": 1, + "@rvmBoilerplate": 1, "Rewriter": 2, "INVERSES": 2, "count": 5, @@ -16624,7 +16603,9 @@ "compact": 1, "last": 3, "exports.Lexer": 1, + "Lexer": 3, "tokenize": 1, + "code": 20, "opts": 1, "WHITESPACE.test": 1, "code.replace": 1, @@ -16635,10 +16616,13 @@ "@code": 1, "The": 7, "remainder": 1, + "of": 7, "the": 4, + "source": 5, "code.": 1, "@line": 4, "opts.line": 1, + "or": 22, "current": 5, "line.": 1, "@indent": 3, @@ -16658,16 +16642,18 @@ "pairing": 1, "up": 1, "tokens.": 1, + "@tokens": 7, "Stream": 1, "parsed": 1, "tokens": 5, "form": 1, - "line": 6, + "value": 25, ".": 13, "i": 8, "while": 4, "@chunk": 9, "i..": 1, + "+": 31, "@identifierToken": 1, "@commentToken": 1, "@whitespaceToken": 1, @@ -16680,9 +16666,11 @@ "@literalToken": 1, "@closeIndentation": 1, "@error": 10, + "tag": 33, "@ends.pop": 1, "opts.rewrite": 1, "off": 1, + "new": 12, ".rewrite": 1, "identifierToken": 1, "match": 23, @@ -16690,6 +16678,7 @@ "input": 1, "id": 16, "colon": 3, + "and": 20, "@tag": 3, "@token": 12, "id.length": 1, @@ -16705,14 +16694,17 @@ "yes": 5, "UNARY": 4, "RELATION": 3, + "no": 3, "@value": 1, "@tokens.pop": 1, "JS_FORBIDDEN": 1, "String": 1, "id.reserved": 1, + "RESERVED": 3, "COFFEE_ALIAS_MAP": 1, "COFFEE_ALIASES": 1, "switch": 7, + "when": 16, "input.length": 1, "numberToken": 1, "NUMBER.exec": 1, @@ -16725,6 +16717,7 @@ "lexedLength": 2, "number.length": 1, "octalLiteral": 2, + "o": 4, "/.exec": 2, "parseInt": 5, ".toString": 3, @@ -16758,6 +16751,7 @@ "STRING": 2, "makeString": 1, "n": 16, + "length": 4, "Matches": 1, "consumes": 1, "comments": 1, @@ -16815,6 +16809,7 @@ "@ends.push": 1, "@pair": 1, "sanitizeHeredoc": 1, + "options": 16, "HEREDOC_ILLEGAL.test": 1, "doc.indexOf": 1, "HEREDOC_INDENT.exec": 1, @@ -16849,16 +16844,22 @@ "THROW": 1, "EXTENDS": 1, "&": 4, - "false": 4, "delete": 1, + "typeof": 2, + "instanceof": 2, + "throw": 3, "break": 1, "debugger": 1, - "finally": 2, + "do": 2, + "catch": 2, + "extends": 6, + "super": 4, "undefined": 1, "until": 1, "loop": 1, "by": 1, "&&": 1, + "||": 3, "case": 1, "default": 1, "function": 2, @@ -16885,6 +16886,8 @@ "static": 1, "yield": 1, "arguments": 1, + "eval": 2, + "s": 10, "S": 10, "OPERATOR": 1, "%": 1, @@ -16935,109 +16938,52 @@ "BOOL": 1, "NOT_REGEX.concat": 1, "CALLABLE.concat": 1, - "async": 1, - "nack": 1, - "bufferLines": 3, - "pause": 2, - "sourceScriptEnv": 3, - "join": 8, - "exists": 5, - "basename": 2, - "resolve": 2, - "module.exports": 1, - "RackApplication": 1, - "@configuration": 1, - "@root": 8, - "@firstHost": 1, - "@logger": 1, - "@configuration.getLogger": 1, - "@readyCallbacks": 3, - "@quitCallbacks": 3, - "@statCallbacks": 3, - "ready": 1, - "@state": 11, - "@readyCallbacks.push": 1, - "@initialize": 2, - "quit": 1, - "@quitCallbacks.push": 1, - "@terminate": 2, - "queryRestartFile": 1, - "fs.stat": 1, - "stats": 1, - "@mtime": 5, - "lastMtime": 2, - "stats.mtime.getTime": 1, - "setPoolRunOnceFlag": 1, - "@statCallbacks.length": 1, - "alwaysRestart": 2, - "@pool.runOnce": 1, - "statCallback": 2, - "@statCallbacks.push": 1, - "loadScriptEnvironment": 1, - "env": 18, - "async.reduce": 1, - "scriptExists": 2, - "loadRvmEnvironment": 1, - "rvmrcExists": 2, - "rvm": 1, - "@configuration.rvmPath": 1, - "rvmExists": 2, - "libexecPath": 1, - "before": 2, - ".trim": 1, - "loadEnvironment": 1, - "@queryRestartFile": 2, - "@loadScriptEnvironment": 1, - "@configuration.env": 1, - "@loadRvmEnvironment": 1, - "initialize": 1, - "@quit": 3, - "@loadEnvironment": 1, - "@logger.error": 3, - "@pool": 2, - "nack.createPool": 1, - "size": 1, - ".POW_WORKERS": 1, - "@configuration.workers": 1, - "idle": 1, - ".POW_TIMEOUT": 1, - "@configuration.timeout": 1, - "@pool.stdout": 1, - "@logger.info": 1, - "@pool.stderr": 1, - "@logger.warning": 1, - "@pool.on": 2, - "process": 2, - "@logger.debug": 2, - "readyCallback": 2, - "terminate": 1, - "@ready": 3, - "@pool.quit": 1, - "quitCallback": 2, - "handle": 1, - "req": 4, - "res": 3, - "next": 3, - "resume": 2, - "@setPoolRunOnceFlag": 1, - "@restartIfNecessary": 1, - "req.proxyMetaVariables": 1, - "SERVER_PORT": 1, - "@configuration.dstPort.toString": 1, - "@pool.proxy": 1, - "restart": 1, - "restartIfNecessary": 1, - "mtimeChanged": 2, - "@restart": 1, - "writeRvmBoilerplate": 1, - "powrc": 3, - "boilerplate": 2, - "@constructor.rvmBoilerplate": 1, - "fs.readFile": 1, - "contents": 2, - "contents.indexOf": 1, - "fs.writeFile": 1, - "@rvmBoilerplate": 1, + "CoffeeScript": 1, + "CoffeeScript.require": 1, + "CoffeeScript.eval": 1, + "options.bare": 2, + "on": 3, + "CoffeeScript.compile": 2, + "CoffeeScript.run": 3, + "Function": 1, + "window": 1, + "CoffeeScript.load": 2, + "url": 2, + "xhr": 2, + "window.ActiveXObject": 1, + "XMLHttpRequest": 1, + "xhr.open": 1, + "xhr.overrideMimeType": 1, + "xhr.onreadystatechange": 1, + "xhr.readyState": 1, + "xhr.status": 1, + "xhr.responseText": 1, + "Error": 1, + "xhr.send": 1, + "runScripts": 3, + "scripts": 2, + "document.getElementsByTagName": 1, + "coffees": 2, + "s.type": 1, + "index": 4, + "coffees.length": 1, + "execute": 3, + ".type": 1, + "script.src": 2, + "script.innerHTML": 1, + "window.addEventListener": 1, + "addEventListener": 1, + "attachEvent": 1, + "Animal": 3, + "@name": 2, + "move": 3, + "meters": 2, + "Snake": 2, + "Horse": 2, + "sam": 1, + "tom": 1, + "sam.move": 1, + "tom.move": 1, "dnsserver": 1, "exports.Server": 1, "Server": 2, @@ -17123,7 +17069,90 @@ "PATTERN.test": 1, "ip.push": 1, "xFF": 1, - "ip.join": 1 + "ip.join": 1, + "path": 3, + "parser": 1, + "vm": 1, + "require.extensions": 3, + "module": 1, + "content": 4, + "compile": 5, + "fs.readFileSync": 1, + "module._compile": 1, + "require.registerExtension": 2, + "exports.VERSION": 1, + "exports.RESERVED": 1, + "exports.helpers": 2, + "exports.compile": 1, + "merge": 1, + "js": 5, + "parser.parse": 3, + "lexer.tokenize": 3, + ".compile": 1, + "options.header": 1, + "options.filename": 5, + "header": 1, + "exports.tokens": 1, + "exports.nodes": 1, + "exports.run": 1, + "mainModule": 1, + "require.main": 1, + "mainModule.filename": 4, + "process.argv": 1, + "fs.realpathSync": 2, + "mainModule.moduleCache": 1, + "mainModule.paths": 1, + "._nodeModulePaths": 1, + "path.dirname": 2, + "path.extname": 1, + "mainModule._compile": 2, + "exports.eval": 1, + "code.trim": 1, + "Script": 2, + "vm.Script": 1, + "options.sandbox": 4, + "Script.createContext": 2, + ".constructor": 1, + "sandbox": 8, + "k": 4, + "v": 4, + "own": 2, + "sandbox.global": 1, + "sandbox.root": 1, + "sandbox.GLOBAL": 1, + "global": 3, + "sandbox.__filename": 3, + "sandbox.__dirname": 1, + "sandbox.module": 2, + "sandbox.require": 2, + "Module": 2, + "_module": 3, + "options.modulename": 1, + "_require": 2, + "Module._load": 1, + "_module.filename": 1, + "r": 4, + "Object.getOwnPropertyNames": 1, + "_require.paths": 1, + "_module.paths": 1, + "Module._nodeModulePaths": 1, + "process.cwd": 1, + "_require.resolve": 1, + "request": 2, + "Module._resolveFilename": 1, + "o.bare": 1, + "ensure": 1, + "vm.runInThisContext": 1, + "vm.runInContext": 1, + "lexer": 1, + "parser.lexer": 1, + "lex": 1, + "@yytext": 1, + "@yylineno": 1, + "@pos": 2, + "setInput": 1, + "upcomingInput": 1, + "parser.yy": 1 }, "Common Lisp": { ";": 152, @@ -17818,147 +17847,670 @@ "End": 15, "Require": 17, "Import": 11, - "List": 2, - "Multiset": 2, - "PermutSetoid": 1, + "Omega": 1, "Relations": 2, - "Sorting.": 1, + "Multiset": 2, + "SetoidList.": 1, + "Set": 4, + "Implicit": 15, + "Arguments.": 2, + "Local": 7, + "nil.": 2, + "a": 207, + "..": 4, "Section": 4, - "defs.": 2, + "Permut.": 1, "Variable": 7, "A": 113, "Type.": 3, - "leA": 25, + "eqA": 29, "relation": 19, "A.": 6, - "eqA": 29, - "Let": 8, - "gtA": 1, - "y.": 15, "Hypothesis": 7, - "leA_dec": 4, + "eqA_equiv": 1, + "Equivalence": 2, + "eqA.": 1, + "eqA_dec": 26, "{": 39, "}": 35, - "eqA_dec": 26, - "leA_refl": 1, - "leA_trans": 2, - "z": 14, - "z.": 6, - "leA_antisym": 1, - "Hint": 9, - "Resolve": 5, - "leA_refl.": 1, - "Immediate": 1, - "leA_antisym.": 1, + "Let": 8, "emptyBag": 4, "EmptyBag": 2, "singletonBag": 10, "SingletonBag": 2, "eqA_dec.": 2, + "list_contents": 30, + "l": 379, + "list": 78, + "multiset": 2, + "munion": 18, + "list_contents_app": 5, + "meq": 15, + "simple": 7, + ";": 375, + "auto": 73, + "datatypes.": 47, + "intros.": 27, + "apply": 340, + "meq_trans": 10, + "l0": 7, + "permutation": 43, + "permut_refl": 1, + "l.": 26, + "unfold": 58, + "permut_sym": 4, + "l1": 89, + "l2": 73, + "l1.": 5, + "symmetry": 4, + "trivial.": 14, + "permut_trans": 5, + "permut_cons_eq": 3, + "meq_left": 1, + "meq_singleton": 1, + "auto.": 47, + "permut_cons": 5, + "permut_app": 1, + "using": 18, + "l3": 12, + "l4": 3, + "in": 221, + "specialize": 6, + "H0": 16, + "a0.": 1, + "repeat": 11, + "*.": 110, + "a0": 15, + "Ha": 6, + "decide": 1, + "replace": 4, + "trivial": 15, + "permut_add_inside_eq": 1, + "permut_add_cons_inside": 3, + "permut_add_inside": 1, + "permut_middle": 1, + "permut_refl.": 5, + "permut_sym_app": 1, + "intro": 27, + "do": 4, + "arith.": 8, + "permut_rev": 1, + "rev": 7, + "permut_add_cons_inside.": 1, + "app_nil_end": 1, + "Some": 21, + "inversion": 104, + "results": 1, + "permut_conv_inv": 1, + "e": 53, + "l2.": 8, + "generalize": 13, + "plus_reg_l.": 1, + "permut_app_inv1": 1, + "clear": 7, + "list_contents_app.": 1, + "plus_reg_l": 1, + "multiplicity": 6, + "Fact": 3, + "if_eqA_then": 1, + "B": 6, + "then": 9, + "else": 9, + "if": 10, + "if_eqA_refl": 3, + "decide_left": 1, + "Global": 5, + "Instance": 7, + "if_eqA": 1, + "contradict": 3, + "transitivity": 4, + "a2": 62, + "a1": 56, + "A1": 2, + "eauto": 10, + "if_eqA_rewrite_r": 1, + "A2": 4, + "Hxx": 1, + "multiplicity_InA": 4, + "InA": 8, + "<": 76, + "a.": 6, + "split": 14, + "right.": 9, + "IHl": 8, + "multiplicity_InA_O": 2, + "multiplicity_InA_S": 1, + "multiplicity_NoDupA": 1, + "NoDupA": 3, + "inversion_clear": 6, + "EQ": 8, + "NEQ": 1, + "constructor": 6, + "omega": 7, + "Permutation": 38, + "is": 4, + "compatible": 1, + "permut_InA_InA": 3, + "e.": 15, + "multiplicity_InA.": 1, + "meq.": 2, + "permut_cons_InA": 3, + "permut_nil": 3, + "by": 7, + "Abs": 2, + "permut_length_1": 1, + "P": 32, + "discriminate.": 2, + "permut_length_2": 1, + "/": 41, + "P.": 5, + "permut_length_1.": 2, + "red": 6, + "@if_eqA_rewrite_l": 2, + "omega.": 7, + "permut_length": 1, + "length": 21, + "InA_split": 1, + "h2": 1, + "t2": 51, + "subst": 7, + "app_length.": 2, + "plus_n_Sm": 1, + "f_equal.": 1, + "app_length": 1, + "IHl1": 1, + "permut_remove_hd": 1, + "revert": 5, + "f_equal": 1, + "if_eqA_rewrite_l": 1, + "NoDupA_equivlistA_permut": 1, + "Equivalence_Reflexive.": 1, + "change": 1, + "Equivalence_Reflexive": 1, + "Forall2": 2, + "permutation_Permutation": 1, + "exists": 60, + "Forall2.": 1, + "pose": 2, + "proof": 1, + "&": 21, + "IHP": 2, + "IHA": 2, + "Forall2_app_inv_r": 1, + "Hl1": 1, + "Hl2": 1, + "split.": 17, + "Permutation_cons_app": 3, + "Forall2_app": 1, + "Forall2_cons": 1, + "Heq": 8, + "Permutation_impl_permutation": 1, + "permut_eqA": 1, + "Permut_permut.": 1, + "permut_right": 1, + "only": 3, + "parsing": 3, + "permut_tran": 1, + "Export": 10, + "SfLib.": 2, + "STLC.": 1, + "ty": 7, + "ty_Bool": 10, + "ty_arrow": 7, + "ty.": 2, + "tm": 43, + "tm_var": 6, + "id": 7, + "tm_app": 7, + "tm_abs": 9, + "tm_true": 8, + "tm_false": 5, + "tm_if": 10, + "tm.": 3, + "Tactic": 9, + "tactic": 9, + "first": 18, + "ident": 9, + "Case_aux": 38, + "Id": 7, + "idB": 2, + "idBB": 2, + "idBBBB": 2, + "k": 7, + "value": 25, + "Prop": 17, + "v_abs": 1, + "T": 49, + "t": 93, + "t_true": 1, + "t_false": 1, + "tm_false.": 3, + "Hint": 9, + "Constructors": 3, + "value.": 1, + "s": 13, + "beq_id": 14, + "t1": 48, + "ST_App2": 1, + "v1": 7, + "t3": 6, + "where": 6, + "step": 9, + "stepmany": 4, + "refl_step_closure": 11, + "step.": 3, + "step_example3": 1, + "idB.": 1, + "eapply": 8, + "rsc_step.": 2, + "ST_App1.": 2, + "ST_AppAbs.": 3, + "v_abs.": 2, + "rsc_refl.": 4, + "context": 1, + "partial_map": 4, + "Context.": 1, + "option": 6, + "empty": 3, + "fun": 17, + "None": 9, + "extend": 1, + "Gamma": 10, + "has_type": 4, + "appears_free_in": 1, + "S.": 1, + "dependent": 6, + "HT": 1, + "T_Var.": 1, + "extend_neq": 1, + "assumption.": 61, + "Heqe.": 3, + "rename": 2, + "i": 11, + "into": 2, + "y.": 15, + "T_Abs.": 1, + "remember": 12, + "context_invariance...": 2, + "beq_id_eq": 4, + "subst.": 43, + "Hafi.": 2, + "extend.": 2, + "IHt.": 1, + "x0": 14, + "Coiso1.": 2, + "Coiso2.": 3, + "HeqCoiso1.": 1, + "HeqCoiso2.": 1, + "beq_id_false_not_eq.": 1, + "ex_falso_quodlibet.": 1, + "H0.": 24, + "preservation": 1, + "HT.": 1, + "substitution_preserves_typing": 1, + "T11.": 4, + "HT1.": 1, + "T_App": 2, + "IHHT1.": 1, + "IHHT2.": 1, + "t.": 4, + "tm_cases": 1, + "Ht": 1, + "Ht.": 3, + "IHt1": 2, + "T11": 2, + "IHt2": 3, + "T0": 2, + "ST_App2.": 1, + "ty_Bool.": 1, + "T.": 9, + "IHt3": 1, + "t2.": 4, + "ST_IfTrue.": 1, + "t3.": 2, + "ST_IfFalse.": 1, + "ST_If.": 2, + "types_unique": 1, + "T1": 25, + "T12": 2, + "IHhas_type.": 1, + "IHhas_type1.": 1, + "IHhas_type2.": 1, + "List": 2, + "Setoid": 1, + "Compare_dec": 1, + "Morphisms.": 2, + "ListNotations.": 1, + "Permutation.": 2, + "perm_nil": 1, + "perm_skip": 1, + "Permutation_nil": 2, + "HF.": 3, + "@nil": 1, + "HF": 2, + "discriminate": 3, + "||": 1, + "Permutation_nil_cons": 1, + "nil": 46, + "Permutation_refl": 1, + "constructor.": 16, + "exact": 4, + "IHl.": 7, + "Permutation_sym": 1, + "Hperm": 7, + "perm_trans": 1, + "Permutation_trans": 4, + "Proper": 5, + "Logic.eq": 2, + "@Permutation": 5, + "iff": 1, + "@In": 1, + "Permutation_in.": 2, + "Permutation_app_tail": 2, + "tl": 8, + "Permutation_app_head": 2, + "app_comm_cons": 5, + "assumption": 10, + "Permutation_app": 3, + "Hpermmm": 1, + "idtac": 1, + "try": 17, + "@app": 1, + "now": 24, + "Permutation_app.": 1, + "Permutation_add_inside": 1, + "Permutation_cons_append": 1, + "Resolve": 5, + "Permutation_cons_append.": 3, + "Permutation_app_comm": 3, + "app_nil_r": 1, + "app_assoc": 2, + "Permutation_middle": 2, + "Permutation_rev": 3, + "1": 1, + "@rev": 1, + "2": 1, + "Permutation_length": 2, + "@length": 1, + "Permutation_length.": 1, + "Permutation_ind_bis": 2, + "Hnil": 1, + "Hskip": 3, + "Hswap": 2, + "Htrans.": 1, + "Htrans": 1, + "eauto.": 7, + "Ltac": 1, + "break_list": 5, + "injection": 4, + "Permutation_nil_app_cons": 1, + "Hp": 5, + "IH": 3, + "Permutation_middle.": 3, + "perm_swap.": 2, + "perm_swap": 1, + "eq_refl": 2, + "In_split": 1, + "Permutation_app_inv": 1, + "NoDup": 4, + "incl": 3, + "N.": 1, + "E": 7, + "Hx.": 5, + "In": 6, + "Hy": 14, + "N": 1, + "Hal": 1, + "Hl": 1, + "exfalso.": 1, + "Hx": 20, + "NoDup_Permutation_bis": 2, + "intuition.": 2, + "Permutation_NoDup": 1, + "Permutation_map": 1, + "Hf": 15, + "Hy.": 3, + "injective_bounded_surjective": 1, + "f": 108, + "injective": 6, + "set": 1, + "seq": 2, + "map": 4, + "x.": 3, + "in_map_iff.": 2, + "in_seq": 4, + "arith": 4, + "NoDup_cardinal_incl": 1, + "injective_map_NoDup": 2, + "seq_NoDup": 1, + "map_length": 1, + "in_map_iff": 1, + "nat_bijection_Permutation": 1, + "let": 3, + "BD.": 1, + "seq_NoDup.": 1, + "map_length.": 1, + "Injection": 1, + "Permutation_alt": 1, + "Alternative": 1, + "characterization": 1, + "of": 4, + "via": 1, + "nth_error": 7, + "and": 1, + "nth": 2, + "adapt": 4, + "le_lt_dec": 9, + "adapt_injective": 1, + "adapt.": 2, + "EQ.": 2, + "LE": 11, + "LT": 14, + "eq_add_S": 2, + "Hf.": 1, + "Lt.le_lt_or_eq": 3, + "LE.": 3, + "lt": 3, + "LT.": 5, + "Lt.S_pred": 3, + "elim": 21, + "Lt.lt_not_le": 2, + "adapt_ok": 2, + "nth_error_app1": 1, + "nth_error_app2": 1, + "Minus.minus_Sn_m": 1, + "Permutation_nth_error": 2, + "IHP2": 1, + "g": 6, + "Hg": 2, + "E.": 2, + "L12": 2, + "plus_n_Sm.": 1, + "adapt_injective.": 1, + "nth_error_None": 4, + "Hn": 1, + "Hf2": 1, + "Hf3": 2, + "Lt.le_or_lt": 1, + "Lt.lt_irrefl": 2, + "Lt.lt_le_trans": 2, + "Hf1": 1, + "congruence.": 1, + "Permutation_alt.": 1, + "Permutation_app_swap": 1, + "Lists.": 1, + "Basics.": 2, + "X": 191, + "cons": 26, + "X.": 4, + "h": 14, + "app": 5, + "snoc": 9, + "v": 28, + "Arguments": 11, + "list123": 1, + "right": 2, + "count": 7, + "test_repeat1": 1, + "nil_app": 1, + "rev_snoc": 1, + "s.": 4, + "IHs.": 2, + "snoc_with_append": 1, + "v.": 1, + "IHl1.": 1, + "prod": 3, + "Y": 38, + "pair": 7, + "Y.": 1, + "type_scope.": 1, + "fst": 3, + "snd": 3, + "combine": 3, + "lx": 4, + "ly": 4, + "tx": 2, + "tp": 2, + "index": 3, + "xs": 7, + "hd_opt": 8, + "test_hd_opt1": 2, + "test_hd_opt2": 2, + "plus3": 2, + "prod_curry": 3, + "Z": 11, + "prod_uncurry": 3, + "uncurry_uncurry": 1, + "curry_uncurry": 1, + "filter": 3, + "test": 4, + "countoddmembers": 1, + "fmostlytrue": 5, + "override": 5, + "ftrue": 1, + "override_example1": 1, + "override_example2": 1, + "override_example3": 1, + "override_example4": 1, + "override_example": 1, + "constfun": 1, + "unfold_example_bad": 1, + "plus3.": 1, + "override_eq": 1, + "f.": 1, + "override.": 2, + "override_neq": 1, + "x1": 11, + "x2": 3, + "k1": 5, + "k2": 4, + "x1.": 3, + "eq1": 6, + "eq2.": 9, + "eq1.": 5, + "eq.": 11, + "silly4": 1, + "silly5": 1, + "sillyex1": 1, + "z": 14, + "j": 6, + "j.": 1, + "symmetry.": 2, + "silly6": 1, + "contra.": 19, + "silly7": 1, + "sillyex2": 1, + "z.": 6, + "beq_nat_eq": 2, + "SCase": 24, + "assertion": 3, + "Hl.": 1, + "eq": 4, + "SSCase": 3, + "beq_nat_O_l": 1, + "beq_nat_O_r": 1, + "double_injective": 1, + "double": 2, + "fold_map": 2, + "fold": 1, + "total": 2, + "fold_map_correct": 1, + "fold_map.": 1, + "forallb": 4, + "existsb": 3, + "existsb2": 2, + "existsb_correct": 1, + "existsb2.": 1, + "index_okx": 1, + "None.": 2, + "mumble": 5, + "mumble.": 1, + "grumble": 3, + "PermutSetoid": 1, + "Sorting.": 1, + "defs.": 2, + "leA": 25, + "gtA": 1, + "leA_dec": 4, + "leA_refl": 1, + "leA_trans": 2, + "leA_antisym": 1, + "leA_refl.": 1, + "Immediate": 1, + "leA_antisym.": 1, "Tree": 24, "Tree_Leaf": 9, "Tree_Node": 11, "Tree.": 1, "leA_Tree": 16, - "a": 207, - "t": 93, "True": 1, - "T1": 25, "T2": 20, "leA_Tree_Leaf": 5, "Tree_Leaf.": 1, - ";": 375, - "auto": 73, - "datatypes.": 47, "leA_Tree_Node": 1, "G": 6, "is_heap": 18, - "Prop": 17, "nil_is_heap": 5, "node_is_heap": 7, "invert_heap": 3, - "/": 41, "T2.": 1, - "inversion": 104, "is_heap_rect": 1, - "P": 32, - "T": 49, - "T.": 9, - "simple": 7, "PG": 2, "PD": 2, "PN.": 2, - "elim": 21, "H4": 7, - "intros.": 27, - "apply": 340, "X0": 2, "is_heap_rec": 1, - "Set": 4, - "X": 191, "low_trans": 3, "merge_lem": 3, - "l1": 89, - "l2": 73, - "list": 78, "merge_exist": 5, - "l": 379, "Sorted": 5, - "meq": 15, - "list_contents": 30, - "munion": 18, "HdRel": 4, - "l2.": 8, - "Morphisms.": 2, - "Instance": 7, - "Equivalence": 2, "@meq": 4, - "constructor": 6, "red.": 1, "meq_trans.": 1, "Defined.": 1, - "Proper": 5, "@munion": 1, - "now": 24, "meq_congr.": 1, "merge": 5, "fix": 2, - "l1.": 5, - "rename": 2, - "into": 2, - "l.": 26, - "revert": 5, - "H0.": 24, - "a0": 15, - "l0": 7, "Sorted_inv": 2, - "in": 221, - "H0": 16, - "clear": 7, "merge0.": 2, - "using": 18, "cons_sort": 2, "cons_leA": 2, "munion_ass.": 2, "cons_leA.": 2, "@HdRel_inv": 2, - "trivial": 15, "merge0": 1, "setoid_rewrite": 2, "munion_ass": 1, "munion_comm.": 2, - "repeat": 11, "munion_comm": 1, "contents": 12, - "multiset": 2, - "t1": 48, - "t2": 51, "equiv_Tree": 1, "insert_spec": 3, "insert_exist": 4, "insert": 2, - "unfold": 58, - "T0": 2, "treesort_twist1": 1, "T3": 2, "HeapT3": 1, @@ -17969,17 +18521,12 @@ "build_heap": 3, "heap_exist": 3, "list_to_heap": 2, - "nil": 46, - "exact": 4, "nil_is_heap.": 1, - "i": 11, - "meq_trans": 10, "meq_right": 2, "meq_sym": 2, "flat_spec": 3, "flat_exist": 3, "heap_to_list": 2, - "h": 14, "s1": 20, "i1": 15, "m1": 1, @@ -17989,13 +18536,7 @@ "meq_congr": 1, "munion_rotate.": 1, "treesort": 1, - "&": 21, - "permutation": 43, - "intro": 27, "permutation.": 1, - "exists": 60, - "Export": 10, - "SfLib.": 2, "AExp.": 2, "aexp": 30, "ANum": 18, @@ -18012,9 +18553,6 @@ "BAnd": 10, "bexp.": 1, "aeval": 46, - "e": 53, - "a1": 56, - "a2": 62, "test_aeval1": 1, "beval": 16, "optimize_0plus": 15, @@ -18022,22 +18560,13 @@ "e1": 58, "test_optimize_0plus": 1, "optimize_0plus_sound": 4, - "e.": 15, "e1.": 1, - "SCase": 24, - "SSCase": 3, "IHe2.": 10, "IHe1.": 11, "aexp_cases": 3, - "try": 17, "IHe1": 6, "IHe2": 6, "optimize_0plus_all": 2, - "Tactic": 9, - "tactic": 9, - "first": 18, - "ident": 9, - "Case_aux": 38, "optimize_0plus_all_sound": 1, "bexp_cases": 4, "optimize_and": 5, @@ -18053,7 +18582,6 @@ "E_AMult": 2, "Reserved": 4, "E_ANum": 1, - "where": 6, "bevalR": 11, "E_BTrue": 1, "E_BFalse": 1, @@ -18062,42 +18590,26 @@ "E_BNot": 1, "E_BAnd": 1, "aeval_iff_aevalR": 9, - "split.": 17, - "subst": 7, - "generalize": 13, - "dependent": 6, "IHa1": 1, "IHa2": 1, "beval_iff_bevalR": 1, - "*.": 110, - "subst.": 43, "IHbevalR": 1, "IHbevalR1": 1, "IHbevalR2": 1, - "a.": 6, - "constructor.": 16, - "<": 76, - "remember": 12, "IHa.": 1, "IHa1.": 1, "IHa2.": 1, "silly_presburger_formula": 1, "<=>": 12, "3": 2, - "omega": 7, - "Id": 7, - "id": 7, "id.": 1, - "beq_id": 14, "id1": 2, "id2": 2, "beq_id_refl": 1, "i.": 2, "beq_nat_refl.": 1, - "beq_id_eq": 4, "i2.": 8, "i1.": 3, - "beq_nat_eq": 2, "beq_id_false_not_eq": 1, "C.": 3, "n0": 5, @@ -18130,34 +18642,25 @@ "E_IfFalse": 1, "assignment": 1, "command": 2, - "if": 10, "st1": 2, "IHi1": 3, "Heqst1": 1, "Hceval.": 4, "Hceval": 2, - "assumption.": 61, "bval": 2, "ceval_step": 3, - "Some": 21, "ceval_step_more": 7, - "x1.": 3, - "omega.": 7, "x2.": 2, "IHHce.": 2, "%": 3, "IHHce1.": 1, "IHHce2.": 1, - "x0": 14, "plus2": 1, "nx": 3, - "Y": 38, "ny": 2, "XtimesYinZ": 1, - "Z": 11, "ny.": 1, "loop": 2, - "contra.": 19, "loopdef.": 1, "Heqloopdef.": 8, "contra1.": 1, @@ -18176,8 +18679,6 @@ "noWhilesAss.": 1, "noWhilesSeq.": 1, "IHc1.": 2, - "auto.": 47, - "eauto": 10, "andb_true_elim1": 4, "IHc2.": 2, "andb_true_elim2": 4, @@ -18190,17 +18691,13 @@ "IHc1": 2, "IHc2": 2, "H5.": 1, - "x1": 11, "r": 11, "r.": 3, - "symmetry": 4, "Heqr.": 1, "H4.": 2, - "s": 13, "Heqr": 3, "H8.": 1, "H10": 1, - "assumption": 10, "beval_short_circuit": 5, "beval_short_circuit_eqv": 1, "sinstr": 8, @@ -18213,14 +18710,12 @@ "s_execute": 21, "stack": 7, "prog": 2, - "cons": 26, "al": 3, "bl": 3, "s_execute1": 1, "empty_state": 2, "s_execute2": 1, "s_compile": 36, - "v": 28, "s_compile1": 1, "execute_theorem": 1, "other": 20, @@ -18229,6 +18724,181 @@ "s_compile_correct": 1, "app_nil_end.": 1, "execute_theorem.": 1, + "Imp.": 1, + "Relations.": 1, + "tm_const": 45, + "tm_plus": 30, + "SimpleArith0.": 2, + "eval": 8, + "SimpleArith1.": 2, + "E_Const": 2, + "E_Plus": 2, + "test_step_1": 1, + "ST_Plus1.": 2, + "ST_PlusConstConst.": 3, + "test_step_2": 1, + "ST_Plus2.": 2, + "step_deterministic": 1, + "partial_function": 6, + "partial_function.": 5, + "y1": 6, + "y2": 5, + "Hy1": 2, + "Hy2.": 2, + "y2.": 3, + "step_cases": 4, + "Hy2": 3, + "SCase.": 3, + "Hy1.": 5, + "IHHy1": 2, + "SimpleArith2.": 1, + "v_const": 4, + "ST_PlusConstConst": 3, + "ST_Plus1": 2, + "strong_progress": 2, + "R": 54, + "value_not_same_as_normal_form": 2, + "normal_form": 3, + "normal_form.": 2, + "v_funny.": 1, + "not.": 3, + "Temp1.": 1, + "Temp2.": 1, + "ST_Funny": 1, + "Temp3.": 1, + "Temp4.": 2, + "v_true": 1, + "v_false": 1, + "ST_IfTrue": 1, + "ST_IfFalse": 1, + "ST_If": 1, + "bool_step_prop4": 1, + "bool_step_prop4_holds": 1, + "bool_step_prop4.": 2, + "ST_ShortCut.": 1, + "left.": 3, + "IHt1.": 1, + "Temp5.": 1, + "normalizing": 1, + "H11": 2, + "H12": 2, + "H21": 3, + "H22": 2, + "nf_same_as_value": 3, + "H12.": 1, + "H22.": 1, + "H11.": 1, + "rsc_trans": 4, + "stepmany_congr_1": 1, + "stepmany_congr2": 1, + "rsc_R": 2, + "eval__value": 1, + "HE.": 1, + "eval_cases": 1, + "HE": 1, + "v_const.": 1, + "Sorted.": 1, + "Mergesort.": 1, + "NatList.": 2, + "natprod": 5, + "natprod.": 1, + "swap_pair": 1, + "surjective_pairing": 1, + "remove_one": 3, + "test_remove_one1": 1, + "remove_all": 2, + "bag": 3, + "app_ass": 1, + "natlist": 7, + "l3.": 1, + "remove_decreases_count": 1, + "ble_n_Sn.": 1, + "natoption": 5, + "natoption.": 1, + "option_elim": 2, + "option_elim_hd": 1, + "head": 1, + "beq_natlist": 5, + "r1": 2, + "v2": 2, + "r2": 2, + "test_beq_natlist1": 1, + "test_beq_natlist2": 1, + "beq_natlist_refl": 1, + "silly1": 1, + "eq2": 1, + "silly2a": 1, + "silly_ex": 1, + "silly3": 1, + "rev_exercise": 1, + "rev_involutive.": 1, + "Logic.": 1, + "Prop.": 1, + "next_nat_partial_function": 1, + "next_nat.": 1, + "Q.": 2, + "le_not_a_partial_function": 1, + "le": 1, + "Nonsense.": 4, + "le_n.": 6, + "le_S.": 4, + "total_relation_not_partial_function": 1, + "total_relation": 1, + "total_relation1.": 2, + "empty_relation_not_partial_funcion": 1, + "empty_relation.": 1, + "reflexive": 5, + "le_reflexive": 1, + "le.": 4, + "reflexive.": 1, + "transitive": 8, + "le_trans": 4, + "Hnm": 3, + "Hmo.": 4, + "Hnm.": 3, + "IHHmo.": 1, + "lt_trans": 4, + "lt.": 2, + "transitive.": 1, + "le_S": 6, + "Hm": 1, + "le_Sn_le": 2, + "le_S_n": 2, + "Sn_le_Sm__n_le_m.": 1, + "le_Sn_n": 5, + "not": 1, + "TODO": 1, + "Hmo": 1, + "symmetric": 2, + "antisymmetric": 3, + "le_antisymmetric": 1, + "Sn_le_Sm__n_le_m": 2, + "IHb": 1, + "equivalence": 1, + "order": 2, + "preorder": 1, + "le_order": 1, + "order.": 1, + "le_reflexive.": 1, + "le_antisymmetric.": 1, + "le_trans.": 1, + "clos_refl_trans": 8, + "rt_step": 1, + "rt_refl": 1, + "rt_trans": 3, + "next_nat_closure_is_le": 1, + "next_nat": 1, + "rt_refl.": 2, + "IHle.": 1, + "rt_step.": 2, + "nn.": 1, + "IHclos_refl_trans1.": 2, + "IHclos_refl_trans2.": 2, + "rsc_refl": 1, + "rsc_step": 4, + "IHrefl_step_closure": 1, + "rtc_rsc_coincide": 1, + "IHrefl_step_closure.": 1, "Eqdep_dec.": 1, "Arith.": 2, "eq_rect_eq_nat": 2, @@ -18239,54 +18909,37 @@ "eq_nat_dec.": 1, "Scheme": 1, "le_ind": 1, - "replace": 4, "le_n": 4, - "fun": 17, "refl_equal": 4, "pattern": 2, "case": 2, - "trivial.": 14, "contradiction": 8, - "le_Sn_n": 5, - "le_S": 6, - "Heq": 8, "m0": 1, "HeqS": 3, - "injection": 4, "HeqS.": 2, "eq_rect_eq_nat.": 1, "IHp": 2, "dep_pair_intro": 2, - "Hx": 20, - "Hy": 14, "<=n),>": 1, "x=": 1, "exist": 7, - "Hy.": 3, "Heq.": 6, "le_uniqueness_proof": 1, "Hy0": 1, "card": 2, - "f": 108, "card_interval": 1, "<=n}>": 1, "proj1_sig": 1, "proj2_sig": 1, - "Hp": 5, "Hq": 3, "Hpq.": 1, "Hmn.": 1, "Hmn": 1, "interval_dec": 1, - "left.": 3, "dep_pair_intro.": 3, - "right.": 9, - "discriminate": 3, - "le_Sn_le": 2, "eq_S.": 1, "Hneq.": 2, "card_inj_aux": 1, - "g": 6, "False.": 1, "Hfbound": 1, "Hfinj": 1, @@ -18295,14 +18948,8 @@ "Hfx": 2, "le_n_O_eq.": 2, "Hfbound.": 2, - "Hx.": 5, - "le_lt_dec": 9, "xSn": 21, - "then": 9, - "else": 9, - "is": 4, "bounded": 1, - "injective": 6, "Hlefx": 1, "Hgefx": 1, "Hlefy": 1, @@ -18332,13 +18979,10 @@ "Heqx": 4, "Hle.": 1, "le_not_lt": 1, - "lt_trans": 4, "lt_n_Sn.": 1, "Hlt.": 1, "lt_irrefl": 2, "lt_le_trans": 1, - "pose": 2, - "let": 3, "Hneqx": 1, "Hneqy": 1, "Heqg": 1, @@ -18351,622 +18995,7 @@ "<=m}>": 1, "card_inj": 1, "interval_dec.": 1, - "card_interval.": 2, - "Basics.": 2, - "NatList.": 2, - "natprod": 5, - "pair": 7, - "natprod.": 1, - "fst": 3, - "snd": 3, - "swap_pair": 1, - "surjective_pairing": 1, - "count": 7, - "remove_one": 3, - "test_remove_one1": 1, - "remove_all": 2, - "bag": 3, - "app_ass": 1, - "l3": 12, - "natlist": 7, - "l3.": 1, - "remove_decreases_count": 1, - "s.": 4, - "ble_n_Sn.": 1, - "IHs.": 2, - "natoption": 5, - "None": 9, - "natoption.": 1, - "index": 3, - "option_elim": 2, - "hd_opt": 8, - "test_hd_opt1": 2, - "None.": 2, - "test_hd_opt2": 2, - "option_elim_hd": 1, - "head": 1, - "beq_natlist": 5, - "v1": 7, - "r1": 2, - "v2": 2, - "r2": 2, - "test_beq_natlist1": 1, - "test_beq_natlist2": 1, - "beq_natlist_refl": 1, - "IHl.": 7, - "silly1": 1, - "eq1": 6, - "eq2.": 9, - "eq2": 1, - "silly2a": 1, - "eq1.": 5, - "silly_ex": 1, - "silly3": 1, - "symmetry.": 2, - "rev_exercise": 1, - "rev_involutive.": 1, - "Setoid": 1, - "Compare_dec": 1, - "ListNotations.": 1, - "Implicit": 15, - "Arguments.": 2, - "Permutation.": 2, - "Permutation": 38, - "perm_nil": 1, - "perm_skip": 1, - "Local": 7, - "Constructors": 3, - "Permutation_nil": 2, - "HF.": 3, - "@nil": 1, - "HF": 2, - "||": 1, - "Permutation_nil_cons": 1, - "discriminate.": 2, - "Permutation_refl": 1, - "Permutation_sym": 1, - "Hperm": 7, - "perm_trans": 1, - "Permutation_trans": 4, - "Logic.eq": 2, - "@Permutation": 5, - "iff": 1, - "@In": 1, - "red": 6, - "Permutation_in.": 2, - "Permutation_app_tail": 2, - "tl": 8, - "eapply": 8, - "Permutation_app_head": 2, - "app_comm_cons": 5, - "Permutation_app": 3, - "Hpermmm": 1, - "idtac": 1, - "Global": 5, - "@app": 1, - "Permutation_app.": 1, - "Permutation_add_inside": 1, - "Permutation_cons_append": 1, - "IHl": 8, - "Permutation_cons_append.": 3, - "Permutation_app_comm": 3, - "app_nil_r": 1, - "app_assoc": 2, - "Permutation_cons_app": 3, - "Permutation_middle": 2, - "Permutation_rev": 3, - "rev": 7, - "1": 1, - "@rev": 1, - "2": 1, - "Permutation_length": 2, - "length": 21, - "transitivity": 4, - "@length": 1, - "Permutation_length.": 1, - "Permutation_ind_bis": 2, - "Hnil": 1, - "Hskip": 3, - "Hswap": 2, - "Htrans.": 1, - "Htrans": 1, - "eauto.": 7, - "Ltac": 1, - "break_list": 5, - "Permutation_nil_app_cons": 1, - "l4": 3, - "P.": 5, - "IH": 3, - "Permutation_middle.": 3, - "perm_swap.": 2, - "perm_swap": 1, - "eq_refl": 2, - "In_split": 1, - "Permutation_app_inv": 1, - "NoDup": 4, - "incl": 3, - "N.": 1, - "E": 7, - "Ha": 6, - "In": 6, - "N": 1, - "Hal": 1, - "Hl": 1, - "exfalso.": 1, - "NoDup_Permutation_bis": 2, - "inversion_clear": 6, - "intuition.": 2, - "Permutation_NoDup": 1, - "Permutation_map": 1, - "Hf": 15, - "injective_bounded_surjective": 1, - "set": 1, - "seq": 2, - "map": 4, - "x.": 3, - "in_map_iff.": 2, - "in_seq": 4, - "arith": 4, - "NoDup_cardinal_incl": 1, - "injective_map_NoDup": 2, - "seq_NoDup": 1, - "map_length": 1, - "by": 7, - "in_map_iff": 1, - "split": 14, - "nat_bijection_Permutation": 1, - "BD.": 1, - "seq_NoDup.": 1, - "map_length.": 1, - "Injection": 1, - "Permutation_alt": 1, - "Alternative": 1, - "characterization": 1, - "of": 4, - "via": 1, - "nth_error": 7, - "and": 1, - "nth": 2, - "adapt": 4, - "adapt_injective": 1, - "adapt.": 2, - "EQ.": 2, - "LE": 11, - "LT": 14, - "eq_add_S": 2, - "Hf.": 1, - "Lt.le_lt_or_eq": 3, - "LE.": 3, - "EQ": 8, - "lt": 3, - "LT.": 5, - "Lt.S_pred": 3, - "Lt.lt_not_le": 2, - "adapt_ok": 2, - "nth_error_app1": 1, - "nth_error_app2": 1, - "arith.": 8, - "Minus.minus_Sn_m": 1, - "Permutation_nth_error": 2, - "IHP": 2, - "IHP2": 1, - "Hg": 2, - "E.": 2, - "L12": 2, - "app_length.": 2, - "plus_n_Sm.": 1, - "adapt_injective.": 1, - "nth_error_None": 4, - "Hn": 1, - "Hf2": 1, - "Hf3": 2, - "Lt.le_or_lt": 1, - "Lt.lt_irrefl": 2, - "Lt.lt_le_trans": 2, - "Hf1": 1, - "do": 4, - "congruence.": 1, - "Permutation_alt.": 1, - "Permutation_app_swap": 1, - "only": 3, - "parsing": 3, - "Omega": 1, - "SetoidList.": 1, - "nil.": 2, - "..": 4, - "Permut.": 1, - "eqA_equiv": 1, - "eqA.": 1, - "list_contents_app": 5, - "permut_refl": 1, - "permut_sym": 4, - "permut_trans": 5, - "permut_cons_eq": 3, - "meq_left": 1, - "meq_singleton": 1, - "permut_cons": 5, - "permut_app": 1, - "specialize": 6, - "a0.": 1, - "decide": 1, - "permut_add_inside_eq": 1, - "permut_add_cons_inside": 3, - "permut_add_inside": 1, - "permut_middle": 1, - "permut_refl.": 5, - "permut_sym_app": 1, - "permut_rev": 1, - "permut_add_cons_inside.": 1, - "app_nil_end": 1, - "results": 1, - "permut_conv_inv": 1, - "plus_reg_l.": 1, - "permut_app_inv1": 1, - "list_contents_app.": 1, - "plus_reg_l": 1, - "multiplicity": 6, - "Fact": 3, - "if_eqA_then": 1, - "B": 6, - "if_eqA_refl": 3, - "decide_left": 1, - "if_eqA": 1, - "contradict": 3, - "A1": 2, - "if_eqA_rewrite_r": 1, - "A2": 4, - "Hxx": 1, - "multiplicity_InA": 4, - "InA": 8, - "multiplicity_InA_O": 2, - "multiplicity_InA_S": 1, - "multiplicity_NoDupA": 1, - "NoDupA": 3, - "NEQ": 1, - "compatible": 1, - "permut_InA_InA": 3, - "multiplicity_InA.": 1, - "meq.": 2, - "permut_cons_InA": 3, - "permut_nil": 3, - "Abs": 2, - "permut_length_1": 1, - "permut_length_2": 1, - "permut_length_1.": 2, - "@if_eqA_rewrite_l": 2, - "permut_length": 1, - "InA_split": 1, - "h2": 1, - "plus_n_Sm": 1, - "f_equal.": 1, - "app_length": 1, - "IHl1": 1, - "permut_remove_hd": 1, - "f_equal": 1, - "if_eqA_rewrite_l": 1, - "NoDupA_equivlistA_permut": 1, - "Equivalence_Reflexive.": 1, - "change": 1, - "Equivalence_Reflexive": 1, - "Forall2": 2, - "permutation_Permutation": 1, - "Forall2.": 1, - "proof": 1, - "IHA": 2, - "Forall2_app_inv_r": 1, - "Hl1": 1, - "Hl2": 1, - "Forall2_app": 1, - "Forall2_cons": 1, - "Permutation_impl_permutation": 1, - "permut_eqA": 1, - "Permut_permut.": 1, - "permut_right": 1, - "permut_tran": 1, - "Lists.": 1, - "X.": 4, - "app": 5, - "snoc": 9, - "Arguments": 11, - "list123": 1, - "right": 2, - "test_repeat1": 1, - "nil_app": 1, - "rev_snoc": 1, - "snoc_with_append": 1, - "v.": 1, - "IHl1.": 1, - "prod": 3, - "Y.": 1, - "type_scope.": 1, - "combine": 3, - "lx": 4, - "ly": 4, - "tx": 2, - "ty": 7, - "tp": 2, - "option": 6, - "xs": 7, - "plus3": 2, - "prod_curry": 3, - "prod_uncurry": 3, - "uncurry_uncurry": 1, - "curry_uncurry": 1, - "filter": 3, - "test": 4, - "countoddmembers": 1, - "k": 7, - "fmostlytrue": 5, - "override": 5, - "ftrue": 1, - "override_example1": 1, - "override_example2": 1, - "override_example3": 1, - "override_example4": 1, - "override_example": 1, - "constfun": 1, - "unfold_example_bad": 1, - "plus3.": 1, - "override_eq": 1, - "f.": 1, - "override.": 2, - "override_neq": 1, - "x2": 3, - "k1": 5, - "k2": 4, - "eq.": 11, - "silly4": 1, - "silly5": 1, - "sillyex1": 1, - "j": 6, - "j.": 1, - "silly6": 1, - "silly7": 1, - "sillyex2": 1, - "assertion": 3, - "Hl.": 1, - "eq": 4, - "beq_nat_O_l": 1, - "beq_nat_O_r": 1, - "double_injective": 1, - "double": 2, - "fold_map": 2, - "fold": 1, - "total": 2, - "fold_map_correct": 1, - "fold_map.": 1, - "forallb": 4, - "existsb": 3, - "existsb2": 2, - "existsb_correct": 1, - "existsb2.": 1, - "index_okx": 1, - "mumble": 5, - "mumble.": 1, - "grumble": 3, - "Logic.": 1, - "Prop.": 1, - "partial_function": 6, - "R": 54, - "y1": 6, - "y2": 5, - "y2.": 3, - "next_nat_partial_function": 1, - "next_nat.": 1, - "partial_function.": 5, - "Q.": 2, - "le_not_a_partial_function": 1, - "le": 1, - "not.": 3, - "Nonsense.": 4, - "le_n.": 6, - "le_S.": 4, - "total_relation_not_partial_function": 1, - "total_relation": 1, - "total_relation1.": 2, - "empty_relation_not_partial_funcion": 1, - "empty_relation.": 1, - "reflexive": 5, - "le_reflexive": 1, - "le.": 4, - "reflexive.": 1, - "transitive": 8, - "le_trans": 4, - "Hnm": 3, - "Hmo.": 4, - "Hnm.": 3, - "IHHmo.": 1, - "lt.": 2, - "transitive.": 1, - "Hm": 1, - "le_S_n": 2, - "Sn_le_Sm__n_le_m.": 1, - "not": 1, - "TODO": 1, - "Hmo": 1, - "symmetric": 2, - "antisymmetric": 3, - "le_antisymmetric": 1, - "Sn_le_Sm__n_le_m": 2, - "IHb": 1, - "equivalence": 1, - "order": 2, - "preorder": 1, - "le_order": 1, - "order.": 1, - "le_reflexive.": 1, - "le_antisymmetric.": 1, - "le_trans.": 1, - "clos_refl_trans": 8, - "rt_step": 1, - "rt_refl": 1, - "rt_trans": 3, - "next_nat_closure_is_le": 1, - "next_nat": 1, - "rt_refl.": 2, - "IHle.": 1, - "rt_step.": 2, - "nn.": 1, - "IHclos_refl_trans1.": 2, - "IHclos_refl_trans2.": 2, - "refl_step_closure": 11, - "rsc_refl": 1, - "rsc_step": 4, - "rsc_R": 2, - "rsc_refl.": 4, - "rsc_trans": 4, - "IHrefl_step_closure": 1, - "rtc_rsc_coincide": 1, - "IHrefl_step_closure.": 1, - "Imp.": 1, - "Relations.": 1, - "tm": 43, - "tm_const": 45, - "tm_plus": 30, - "tm.": 3, - "SimpleArith0.": 2, - "eval": 8, - "SimpleArith1.": 2, - "E_Const": 2, - "E_Plus": 2, - "test_step_1": 1, - "ST_Plus1.": 2, - "ST_PlusConstConst.": 3, - "test_step_2": 1, - "ST_Plus2.": 2, - "step_deterministic": 1, - "step.": 3, - "Hy1": 2, - "Hy2.": 2, - "step_cases": 4, - "Hy2": 3, - "SCase.": 3, - "Hy1.": 5, - "IHHy1": 2, - "SimpleArith2.": 1, - "value": 25, - "v_const": 4, - "step": 9, - "ST_PlusConstConst": 3, - "ST_Plus1": 2, - "strong_progress": 2, - "value_not_same_as_normal_form": 2, - "normal_form": 3, - "t.": 4, - "normal_form.": 2, - "v_funny.": 1, - "Temp1.": 1, - "Temp2.": 1, - "ST_Funny": 1, - "Temp3.": 1, - "Temp4.": 2, - "tm_true": 8, - "tm_false": 5, - "tm_if": 10, - "v_true": 1, - "v_false": 1, - "tm_false.": 3, - "ST_IfTrue": 1, - "ST_IfFalse": 1, - "ST_If": 1, - "t3": 6, - "bool_step_prop4": 1, - "bool_step_prop4_holds": 1, - "bool_step_prop4.": 2, - "ST_ShortCut.": 1, - "IHt1.": 1, - "t2.": 4, - "t3.": 2, - "ST_If.": 2, - "Temp5.": 1, - "stepmany": 4, - "normalizing": 1, - "IHt2": 3, - "H11": 2, - "H12": 2, - "H21": 3, - "H22": 2, - "nf_same_as_value": 3, - "H12.": 1, - "H22.": 1, - "H11.": 1, - "stepmany_congr_1": 1, - "stepmany_congr2": 1, - "eval__value": 1, - "HE.": 1, - "eval_cases": 1, - "HE": 1, - "v_const.": 1, - "Sorted.": 1, - "Mergesort.": 1, - "STLC.": 1, - "ty_Bool": 10, - "ty_arrow": 7, - "ty.": 2, - "tm_var": 6, - "tm_app": 7, - "tm_abs": 9, - "idB": 2, - "idBB": 2, - "idBBBB": 2, - "v_abs": 1, - "t_true": 1, - "t_false": 1, - "value.": 1, - "ST_App2": 1, - "step_example3": 1, - "idB.": 1, - "rsc_step.": 2, - "ST_App1.": 2, - "ST_AppAbs.": 3, - "v_abs.": 2, - "context": 1, - "partial_map": 4, - "Context.": 1, - "empty": 3, - "extend": 1, - "Gamma": 10, - "has_type": 4, - "appears_free_in": 1, - "S.": 1, - "HT": 1, - "T_Var.": 1, - "extend_neq": 1, - "Heqe.": 3, - "T_Abs.": 1, - "context_invariance...": 2, - "Hafi.": 2, - "extend.": 2, - "IHt.": 1, - "Coiso1.": 2, - "Coiso2.": 3, - "HeqCoiso1.": 1, - "HeqCoiso2.": 1, - "beq_id_false_not_eq.": 1, - "ex_falso_quodlibet.": 1, - "preservation": 1, - "HT.": 1, - "substitution_preserves_typing": 1, - "T11.": 4, - "HT1.": 1, - "T_App": 2, - "IHHT1.": 1, - "IHHT2.": 1, - "tm_cases": 1, - "Ht": 1, - "Ht.": 3, - "IHt1": 2, - "T11": 2, - "ST_App2.": 1, - "ty_Bool.": 1, - "IHt3": 1, - "ST_IfTrue.": 1, - "ST_IfFalse.": 1, - "types_unique": 1, - "T12": 2, - "IHhas_type.": 1, - "IHhas_type1.": 1, - "IHhas_type2.": 1 + "card_interval.": 2 }, "Creole": { "Creole": 6, @@ -19063,19 +19092,13 @@ "describe": 2, "do": 26, "it": 21, - "run": 14, + "assert_type": 7, "(": 201, ")": 201, - ".to_i.should": 11, - "eq": 16, - "end": 135, - ".to_f32.should": 2, - ".to_b.should": 1, - "be_true": 1, - "assert_type": 7, "{": 7, "int32": 8, "}": 7, + "end": 135, "union_of": 1, "char": 1, "result": 3, @@ -19090,6 +19113,7 @@ "NonGenericClassType": 1, "foo.instance_vars": 1, ".type.should": 3, + "eq": 16, "mod.int32": 1, "GenericClassType": 2, "foo_i32": 4, @@ -19099,6 +19123,11 @@ "|": 8, "ASTNode": 4, "foo_i32.lookup_instance_var": 2, + "run": 14, + ".to_i.should": 11, + ".to_f32.should": 2, + ".to_b.should": 1, + "be_true": 1, "module": 1, "Crystal": 1, "class": 2, @@ -19570,75 +19599,9 @@ "go": 1, "car.milesTillEmpty": 1, "miles.": 1, - "name": 4, - "x": 3, - "y": 3, - "moveTo": 1, - "newX": 2, - "newY": 2, - "getX": 1, - "getY": 1, - "setName": 1, - "newName": 2, - "getName": 1, - "sportsCar": 1, - "sportsCar.moveTo": 1, - "sportsCar.getName": 1, - "is": 1, - "at": 1, - "X": 1, - "location": 1, - "sportsCar.getX": 1, - "makeVOCPair": 1, - "brandName": 3, - "String": 1, - "near": 6, - "myTempContents": 6, - "none": 2, - "brand": 5, - "__printOn": 4, - "out": 4, - "TextWriter": 4, - "void": 5, - "out.print": 4, - "ProveAuth": 2, - "<$brandName>": 3, - "prover": 1, - "getBrand": 4, - "coerce": 2, - "specimen": 2, - "optEjector": 3, - "sealedBox": 2, - "offerContent": 1, - "CheckAuth": 2, - "checker": 3, - "template": 1, - "match": 4, - "[": 10, - "get": 2, - "authList": 2, - "any": 2, - "]": 10, - "specimenBox": 2, - "null": 1, - "if": 2, - "specimenBox.__respondsTo": 1, - "specimenBox.offerContent": 1, - "else": 1, - "for": 3, - "auth": 3, - "in": 1, - "throw.eject": 1, - "Unmatched": 1, - "authorization": 1, - "__respondsTo": 2, - "_": 3, - "true": 1, - "false": 1, - "__getAllegedType": 1, - "null.__getAllegedType": 1, "#File": 1, "objects": 1, + "for": 3, "hardwired": 1, "files": 1, "file1": 1, @@ -19649,9 +19612,12 @@ "a": 4, "variable": 1, "file": 3, + "name": 4, "filePath": 2, "file3": 1, "": 1, + "[": 10, + "]": 10, "single": 1, "character": 1, "specify": 1, @@ -19685,6 +19651,69 @@ "file.getText": 1, "<": 1, "-": 2, + "makeVOCPair": 1, + "brandName": 3, + "String": 1, + "near": 6, + "myTempContents": 6, + "none": 2, + "brand": 5, + "__printOn": 4, + "out": 4, + "TextWriter": 4, + "void": 5, + "out.print": 4, + "ProveAuth": 2, + "<$brandName>": 3, + "prover": 1, + "getBrand": 4, + "coerce": 2, + "specimen": 2, + "optEjector": 3, + "sealedBox": 2, + "offerContent": 1, + "CheckAuth": 2, + "checker": 3, + "template": 1, + "match": 4, + "get": 2, + "authList": 2, + "any": 2, + "specimenBox": 2, + "null": 1, + "if": 2, + "specimenBox.__respondsTo": 1, + "specimenBox.offerContent": 1, + "else": 1, + "auth": 3, + "in": 1, + "throw.eject": 1, + "Unmatched": 1, + "authorization": 1, + "__respondsTo": 2, + "_": 3, + "true": 1, + "false": 1, + "__getAllegedType": 1, + "null.__getAllegedType": 1, + "x": 3, + "y": 3, + "moveTo": 1, + "newX": 2, + "newY": 2, + "getX": 1, + "getY": 1, + "setName": 1, + "newName": 2, + "getName": 1, + "sportsCar": 1, + "sportsCar.moveTo": 1, + "sportsCar.getName": 1, + "is": 1, + "at": 1, + "X": 1, + "location": 1, + "sportsCar.getX": 1, "tempVow": 2, "#...use": 1, "#....": 1, @@ -19806,16 +19835,9 @@ "visible=": 118, "active=": 125, "": 2, - "": 1, - "": 1, - "": 497, - "x1=": 630, - "y1=": 630, - "x2=": 630, - "y2=": 630, - "width=": 512, - "layer=": 822, - "": 1, + "": 1, + "xreflabel=": 1, + "xrefpart=": 1, "": 2, "": 4, "": 60, @@ -19824,11 +19846,68 @@ ";": 5567, "b": 64, "gt": 2770, + "Frames": 1, + "for": 5, + "Sheet": 2, + "and": 5, + "Layout": 1, + "/b": 64, + "": 60, + "": 4, + "": 3, + "": 1, + "": 1, + "": 497, + "x1=": 630, + "y1=": 630, + "x2=": 630, + "y2=": 630, + "width=": 512, + "layer=": 822, + "": 108, + "x=": 240, + "y=": 242, + "size=": 114, + "font=": 4, + "DRAWING_NAME": 1, + "": 108, + "LAST_DATE_TIME": 1, + "SHEET": 1, + "": 1, + "columns=": 1, + "rows=": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "prefix=": 1, + "uservalue=": 1, + "FRAME": 1, + "p": 65, + "DIN": 1, + "A4": 1, + "landscape": 1, + "with": 1, + "location": 1, + "doc.": 1, + "field": 1, + "": 1, + "": 1, + "symbol=": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 3, "Resistors": 2, "Capacitors": 4, "Inductors": 2, - "/b": 64, - "p": 65, "Based": 2, "on": 2, "the": 5, @@ -19855,14 +19934,12 @@ "to": 3, "IPC": 2, "specifications": 2, - "and": 5, "CECC": 2, "author": 3, "Created": 3, "by": 3, "librarian@cadsoft.de": 3, "/author": 3, - "for": 5, "Electrolyt": 2, "see": 4, "also": 2, @@ -20085,33 +20162,38 @@ "ALTERNATE": 2, "/tr": 2, "/table": 2, - "": 60, - "": 4, "": 53, "RESISTOR": 52, "": 64, - "x=": 240, - "y=": 242, "dx=": 64, "dy=": 64, - "": 108, - "size=": 114, "NAME": 52, - "": 108, "VALUE": 52, "": 132, "": 52, - "": 3, - "": 3, + "wave": 10, + "soldering": 10, + "Source": 2, + "//download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf": 2, + "MELF": 8, + "type": 20, + "grid": 20, + "mm": 20, + "curve=": 56, + "": 39, + "drill=": 41, + "shape=": 39, + "ratio=": 41, + "": 12, + "radius=": 12, + "": 1, + "": 1, + "": 1, "Pin": 1, "Header": 1, "Connectors": 1, "PIN": 1, "HEADER": 1, - "": 39, - "drill=": 41, - "shape=": 39, - "ratio=": 41, "": 1, "": 1, "": 1, @@ -20220,109 +20302,88 @@ "": 1, "": 1, "": 1, - "": 1, - "": 1, - "xreflabel=": 1, - "xrefpart=": 1, - "Frames": 1, - "Sheet": 2, - "Layout": 1, - "": 1, - "": 1, - "font=": 4, - "DRAWING_NAME": 1, - "LAST_DATE_TIME": 1, - "SHEET": 1, - "": 1, - "columns=": 1, - "rows=": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "prefix=": 1, - "uservalue=": 1, - "FRAME": 1, - "DIN": 1, - "A4": 1, - "landscape": 1, - "with": 1, - "location": 1, - "doc.": 1, - "field": 1, - "": 1, - "": 1, - "symbol=": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "wave": 10, - "soldering": 10, - "Source": 2, - "//download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf": 2, - "MELF": 8, - "type": 20, - "grid": 20, - "mm": 20, - "curve=": 56, - "": 12, - "radius=": 12 + "": 1 }, "Elm": { + "main": 3, + "asText": 1, + "(": 119, + "qsort": 4, + "[": 31, + "]": 31, + ")": 116, + "lst": 6, + "case": 5, + "of": 7, + "x": 13, + "xs": 9, + "-": 11, + "filter": 2, + "+": 14, + "<)x)>": 1, + "data": 1, + "Tree": 3, + "a": 5, + "Node": 8, + "|": 3, + "Empty": 8, + "empty": 2, + "singleton": 2, + "v": 8, + "insert": 4, + "tree": 7, + "y": 7, + "left": 7, + "right": 8, + "if": 2, + "then": 2, + "else": 2, + "<": 1, + "fromList": 3, + "foldl": 1, + "depth": 5, + "max": 1, + "map": 11, + "f": 8, + "t1": 2, + "t2": 3, + "flow": 4, + "down": 3, + "display": 4, + "name": 6, + "text": 4, + ".": 9, + "monospace": 1, + "toText": 6, + "concat": 1, + "show": 2, "import": 3, "List": 1, - "(": 119, "intercalate": 2, "intersperse": 3, - ")": 116, "Website.Skeleton": 1, "Website.ColorScheme": 1, "addFolder": 4, "folder": 2, - "lst": 6, "let": 2, "add": 2, - "x": 13, - "y": 7, - "+": 14, "in": 2, - "f": 8, "n": 2, - "xs": 9, - "map": 11, "elements": 2, - "[": 31, - "]": 31, "functional": 2, "reactive": 2, - "-": 11, "example": 3, - "name": 6, "loc": 2, "Text.link": 1, - "toText": 6, "toLinks": 2, "title": 2, "links": 2, - "flow": 4, - "right": 8, "width": 3, - "text": 4, "italic": 1, "bold": 2, - ".": 9, "Text.color": 1, "accent4": 1, "insertSpace": 2, - "case": 5, - "of": 7, "{": 1, "spacer": 2, ";": 1, @@ -20330,10 +20391,8 @@ "subsection": 2, "w": 7, "info": 2, - "down": 3, "words": 2, "markdown": 1, - "|": 3, "###": 1, "Basic": 1, "Examples": 1, @@ -20342,7 +20401,6 @@ "below": 1, "focuses": 1, "on": 1, - "a": 5, "single": 1, "function": 1, "or": 1, @@ -20359,43 +20417,11 @@ "content": 2, "exampleSets": 2, "plainText": 1, - "main": 3, "lift": 1, "skeleton": 1, - "Window.width": 1, - "asText": 1, - "qsort": 4, - "filter": 2, - "<)x)>": 1, - "data": 1, - "Tree": 3, - "Node": 8, - "Empty": 8, - "empty": 2, - "singleton": 2, - "v": 8, - "insert": 4, - "tree": 7, - "left": 7, - "if": 2, - "then": 2, - "else": 2, - "<": 1, - "fromList": 3, - "foldl": 1, - "depth": 5, - "max": 1, - "t1": 2, - "t2": 3, - "display": 4, - "monospace": 1, - "concat": 1, - "show": 2 + "Window.width": 1 }, "Emacs Lisp": { - "(": 156, - "print": 1, - ")": 144, ";": 333, "ess": 48, "-": 294, @@ -20407,7 +20433,9 @@ "inferior": 13, "interaction": 1, "Copyright": 1, + "(": 156, "C": 2, + ")": 144, "Vitalie": 3, "Spinu.": 1, "Filename": 1, @@ -20708,43 +20736,11 @@ "use": 1, "classes": 1, "screws": 1, - "egrep": 1 + "egrep": 1, + "print": 1 }, "Erlang": { - "SHEBANG#!escript": 3, "%": 134, - "-": 262, - "*": 9, - "erlang": 5, - "smp": 1, - "enable": 1, - "sname": 1, - "factorial": 1, - "mnesia": 1, - "debug": 1, - "verbose": 1, - "main": 4, - "(": 236, - "[": 66, - "String": 2, - "]": 61, - ")": 230, - "try": 2, - "N": 6, - "list_to_integer": 1, - "F": 16, - "fac": 4, - "io": 5, - "format": 7, - "catch": 2, - "_": 52, - "usage": 3, - "end": 3, - ";": 56, - ".": 37, - "halt": 2, - "export": 2, - "main/1": 1, "For": 1, "each": 1, "header": 1, @@ -20765,10 +20761,17 @@ "fields": 4, "fields_atom": 4, "type": 6, + "-": 262, "module": 2, + "(": 236, "record_helper": 1, + ")": 230, + ".": 37, + "export": 2, + "[": 66, "make/1": 1, "make/2": 1, + "]": 61, "make": 3, "HeaderFiles": 5, "atom_to_list": 18, @@ -20797,6 +20800,7 @@ "erl": 1, "list_to_binary": 1, "HeaderFile": 4, + "try": 2, "epp": 1, "parse_file": 1, "of": 9, @@ -20805,8 +20809,11 @@ "Tree": 4, "}": 109, "parse": 2, + ";": 56, "error": 4, "Error": 4, + "catch": 2, + "_": 52, "catched_error": 1, "end.": 3, "|": 25, @@ -20831,6 +20838,7 @@ "true": 3, "generate_fields_function": 2, "generate_fields_atom_function": 2, + "end": 3, "parse_field_name": 5, "record_field": 9, "atom": 9, @@ -20842,6 +20850,7 @@ "parse_field_name_atom": 5, "concat": 5, "_S": 3, + "F": 16, "S": 6, "concat_ext": 4, "parse_field": 6, @@ -20857,54 +20866,14 @@ "to_setter_getter_function": 5, "setter": 2, "getter": 2, - "This": 2, - "is": 1, - "auto": 1, - "generated": 1, - "file.": 1, - "Please": 1, - "don": 1, - "t": 1, - "edit": 1, - "record_utils": 1, - "compile": 2, - "export_all": 1, - "include": 1, - "abstract_message": 21, - "async_message": 12, - "clientId": 5, - "destination": 5, - "messageId": 5, - "timestamp": 5, - "timeToLive": 5, - "headers": 5, - "body": 5, - "correlationId": 5, - "correlationIdBytes": 5, - "get": 12, - "Obj": 49, - "is_record": 25, - "Obj#abstract_message.body": 1, - "Obj#abstract_message.clientId": 1, - "Obj#abstract_message.destination": 1, - "Obj#abstract_message.headers": 1, - "Obj#abstract_message.messageId": 1, - "Obj#abstract_message.timeToLive": 1, - "Obj#abstract_message.timestamp": 1, - "Obj#async_message.correlationId": 1, - "Obj#async_message.correlationIdBytes": 1, - "parent": 5, - "Obj#async_message.parent": 3, - "ParentProperty": 6, - "is_atom": 2, - "set": 13, - "Value": 35, - "NewObj": 20, - "Obj#abstract_message": 7, - "Obj#async_message": 3, - "NewParentObject": 2, - "undefined.": 1, + "SHEBANG#!escript": 3, + "main/1": 1, + "main": 4, + "io": 5, + "format": 7, + "*": 9, "Mode": 1, + "erlang": 5, "coding": 1, "utf": 1, "tab": 1, @@ -20969,6 +20938,7 @@ "software": 3, "display": 1, "acknowledgment": 1, + "This": 2, "product": 1, "includes": 1, "developed": 1, @@ -21061,6 +21031,7 @@ "POSSIBILITY": 1, "SUCH": 1, "DAMAGE.": 1, + "compile": 2, "sys": 2, "RelToolConfig": 5, "target_dir": 2, @@ -21110,6 +21081,7 @@ "Rest": 10, "Key": 2, "list_to_existing_atom": 1, + "Value": 35, "dict": 2, "find": 1, "support": 1, @@ -21145,54 +21117,72 @@ "filelib": 1, "is_file": 1, "ExitCode": 2, - "flush": 1 + "halt": 2, + "flush": 1, + "smp": 1, + "enable": 1, + "sname": 1, + "factorial": 1, + "mnesia": 1, + "debug": 1, + "verbose": 1, + "String": 2, + "N": 6, + "list_to_integer": 1, + "fac": 4, + "usage": 3, + "is": 1, + "auto": 1, + "generated": 1, + "file.": 1, + "Please": 1, + "don": 1, + "t": 1, + "edit": 1, + "record_utils": 1, + "export_all": 1, + "include": 1, + "abstract_message": 21, + "async_message": 12, + "clientId": 5, + "destination": 5, + "messageId": 5, + "timestamp": 5, + "timeToLive": 5, + "headers": 5, + "body": 5, + "correlationId": 5, + "correlationIdBytes": 5, + "get": 12, + "Obj": 49, + "is_record": 25, + "Obj#abstract_message.body": 1, + "Obj#abstract_message.clientId": 1, + "Obj#abstract_message.destination": 1, + "Obj#abstract_message.headers": 1, + "Obj#abstract_message.messageId": 1, + "Obj#abstract_message.timeToLive": 1, + "Obj#abstract_message.timestamp": 1, + "Obj#async_message.correlationId": 1, + "Obj#async_message.correlationIdBytes": 1, + "parent": 5, + "Obj#async_message.parent": 3, + "ParentProperty": 6, + "is_atom": 2, + "set": 13, + "NewObj": 20, + "Obj#abstract_message": 7, + "Obj#async_message": 3, + "NewParentObject": 2, + "undefined.": 1 }, "Forth": { + "HELLO": 4, "(": 88, - "Block": 2, - "words.": 6, - ")": 87, - "variable": 3, - "blk": 3, - "current": 5, "-": 473, - "block": 8, - "n": 22, - "addr": 11, + ")": 87, + ".": 5, ";": 61, - "buffer": 2, - "evaluate": 1, - "extended": 3, - "semantics": 3, - "flush": 1, - "load": 2, - "...": 4, - "dup": 10, - "save": 2, - "input": 2, - "in": 4, - "@": 13, - "source": 5, - "#source": 2, - "interpret": 1, - "restore": 1, - "buffers": 2, - "update": 1, - "extension": 4, - "empty": 2, - "scr": 2, - "list": 1, - "bounds": 1, - "do": 2, - "i": 5, - "emit": 2, - "loop": 4, - "refill": 2, - "thru": 1, - "x": 10, - "y": 5, - "+": 17, - "swap": 12, "*": 9, "forth": 2, "Copyright": 3, @@ -21202,7 +21192,6 @@ "#tib": 2, "TODO": 12, ".r": 1, - ".": 5, "[": 16, "char": 10, "]": 15, @@ -21210,25 +21199,34 @@ "type": 3, "immediate": 19, "<": 14, + "n": 22, "flag": 4, "r": 18, "x1": 5, "x2": 5, "R": 13, "rot": 2, + "swap": 12, "r@": 2, + "dup": 10, "noname": 1, "align": 2, "here": 9, "c": 3, "allot": 2, "lastxt": 4, + "@": 13, "SP": 1, + "+": 17, "query": 1, "tib": 1, + "source": 5, + "#source": 2, "body": 1, "true": 1, "tuck": 2, + "x": 10, + "y": 5, "over": 5, "u.r": 1, "u": 3, @@ -21245,14 +21243,18 @@ "compile": 2, "Forth2012": 2, "core": 1, + "extension": 4, + "words.": 6, "action": 1, "of": 3, + "buffer": 2, "defer": 2, "name": 1, "s": 4, "c@": 2, "negate": 1, "nip": 2, + "in": 4, "bl": 4, "word": 9, "ahead": 2, @@ -21283,23 +21285,26 @@ "until": 1, "recurse": 1, "pad": 3, + "addr": 11, "If": 1, "necessary": 1, + "refill": 2, "and": 3, "keep": 1, "parsing.": 1, "string": 3, "cmove": 1, "state": 2, + "...": 4, "cr": 3, "abort": 3, "": 1, "Undefined": 1, "ok": 1, - "HELLO": 4, "KataDiversion": 1, "Forth": 1, "utils": 1, + "empty": 2, "the": 7, "stack": 3, "EMPTY": 1, @@ -21328,6 +21333,7 @@ "ABORT": 1, "ELSE": 7, "|": 4, + "i": 5, "I": 5, "i*2": 1, "/": 3, @@ -21351,6 +21357,7 @@ "A": 5, "X": 5, "LOG2": 1, + "loop": 4, "end": 1, "OR": 1, "INVERT": 1, @@ -21378,6 +21385,7 @@ "MANY": 1, "Tools": 2, ".s": 1, + "emit": 2, "depth": 1, "traverse": 1, "dictionary": 1, @@ -21397,250 +21405,82 @@ "defined": 1, "invert": 1, "/cell": 2, - "cell": 2 + "cell": 2, + "Block": 2, + "variable": 3, + "blk": 3, + "current": 5, + "block": 8, + "evaluate": 1, + "extended": 3, + "semantics": 3, + "flush": 1, + "load": 2, + "save": 2, + "input": 2, + "interpret": 1, + "restore": 1, + "buffers": 2, + "update": 1, + "scr": 2, + "list": 1, + "bounds": 1, + "do": 2, + "thru": 1 }, "Frege": { - "module": 2, - "examples.CommandLineClock": 1, - "where": 39, - "data": 3, - "Date": 5, - "native": 4, - "java.util.Date": 1, - "new": 9, - "(": 339, - ")": 345, - "-": 730, - "IO": 13, - "MutableIO": 1, - "toString": 2, - "Mutable": 1, - "s": 21, - "ST": 1, - "String": 9, - "d.toString": 1, - "action": 2, - "to": 13, - "give": 2, - "us": 1, - "the": 20, - "current": 4, - "time": 1, - "as": 33, - "do": 38, - "d": 3, - "<->": 35, - "java": 5, - "lang": 2, - "Thread": 2, - "sleep": 4, - "takes": 1, - "a": 99, - "long": 4, - "and": 14, - "returns": 2, - "nothing": 2, - "but": 2, - "may": 1, - "throw": 1, - "an": 6, - "InterruptedException": 4, - "This": 2, - "is": 24, - "without": 1, - "doubt": 1, - "public": 1, - "static": 1, - "void": 2, - "millis": 1, - "throws": 4, - "Encoded": 1, - "in": 22, - "Frege": 1, - "argument": 1, - "type": 8, - "Long": 3, - "result": 11, - "does": 2, - "defined": 1, - "frege": 1, - "Lang": 1, - "main": 11, - "args": 2, - "forever": 1, - "print": 25, - "stdout.flush": 1, - "Thread.sleep": 4, - "examples.Concurrent": 1, - "import": 7, - "System.Random": 1, - "Java.Net": 1, - "URL": 2, - "Control.Concurrent": 1, - "C": 6, - "main2": 1, - "m": 2, - "<": 84, - "newEmptyMVar": 1, - "forkIO": 11, - "m.put": 3, - "replicateM_": 3, - "c": 33, - "m.take": 1, - "println": 25, - "example1": 1, - "putChar": 2, - "example2": 2, - "getLine": 2, - "case": 6, - "of": 32, - "Right": 6, - "n": 38, - "setReminder": 3, - "Left": 5, - "_": 60, - "+": 200, - "show": 24, - "L*n": 1, - "table": 1, - "mainPhil": 2, - "[": 120, - "fork1": 3, - "fork2": 3, - "fork3": 3, - "fork4": 3, - "fork5": 3, - "]": 116, - "mapM": 3, - "MVar": 3, - "1": 2, - "5": 1, - "philosopher": 7, - "Kant": 1, - "Locke": 1, - "Wittgenstein": 1, - "Nozick": 1, - "Mises": 1, - "return": 17, - "Int": 6, - "me": 13, - "left": 4, - "right": 4, - "g": 4, - "Random.newStdGen": 1, - "let": 8, - "phil": 4, - "tT": 2, - "g1": 2, - "Random.randomR": 2, - "L": 6, - "eT": 2, - "g2": 3, - "thinkTime": 3, - "*": 5, - "eatTime": 3, - "fl": 4, - "left.take": 1, - "rFork": 2, - "poll": 1, - "Just": 2, - "fr": 3, - "right.put": 1, - "left.put": 2, - "table.notifyAll": 2, - "Nothing": 2, - "table.wait": 1, - "inter": 3, - "catch": 2, - "getURL": 4, - "xx": 2, - "url": 1, - "URL.new": 1, - "con": 3, - "url.openConnection": 1, - "con.connect": 1, - "con.getInputStream": 1, - "typ": 5, - "con.getContentType": 1, - "stderr.println": 3, - "ir": 2, - "InputStreamReader.new": 2, - "fromMaybe": 1, - "charset": 2, - "unsupportedEncoding": 3, - "br": 4, - "BufferedReader": 1, - "getLines": 1, - "InputStream": 1, - "UnsupportedEncodingException": 1, - "InputStreamReader": 1, - "x": 45, - "x.catched": 1, - "ctyp": 2, - "charset=": 1, - "m.group": 1, - "SomeException": 2, - "Throwable": 1, - "m1": 1, - "MVar.newEmpty": 3, - "m2": 1, - "m3": 2, - "r": 7, - "catchAll": 3, - ".": 41, - "m1.put": 1, - "m2.put": 1, - "m3.put": 1, - "r1": 2, - "m1.take": 1, - "r2": 3, - "m2.take": 1, - "r3": 3, - "take": 13, - "ss": 8, - "mapM_": 5, - "putStrLn": 2, - "|": 62, - "x.getClass.getName": 1, - "y": 15, - "sum": 2, - "map": 49, - "length": 20, "package": 2, "examples.Sudoku": 1, + "where": 39, + "import": 7, "Data.TreeMap": 1, + "(": 339, "Tree": 4, "keys": 2, + ")": 345, "Data.List": 1, + "as": 33, "DL": 1, "hiding": 1, "find": 20, "union": 10, + "type": 8, "Element": 6, + "Int": 6, + "-": 730, "Zelle": 8, + "[": 120, + "]": 116, "set": 4, + "of": 32, "candidates": 18, "Position": 22, "Feld": 3, "Brett": 13, + "data": 3, "for": 25, "assumptions": 10, + "and": 14, "conclusions": 2, "Assumption": 21, "ISNOT": 14, + "|": 62, "IS": 16, "derive": 2, "Eq": 1, "Ord": 1, "instance": 1, "Show": 1, + "show": 24, "p": 72, "e": 15, "pname": 10, + "+": 200, "e.show": 2, "showcs": 5, "cs": 27, "joined": 4, + "map": 49, "Assumption.show": 1, "elements": 12, "all": 22, @@ -21648,7 +21488,9 @@ "..": 1, "positions": 16, "rowstarts": 4, + "a": 99, "row": 20, + "is": 24, "starting": 3, "colstarts": 3, "column": 2, @@ -21659,8 +21501,10 @@ "by": 3, "adding": 1, "upper": 2, + "left": 4, "position": 9, "results": 1, + "in": 22, "real": 1, "extract": 2, "field": 9, @@ -21674,15 +21518,19 @@ "b": 113, "snd": 20, "compute": 5, + "the": 20, "list": 7, "that": 18, "belong": 3, + "to": 13, "same": 8, "given": 3, "z..": 1, "z": 12, "quot": 1, + "*": 5, "col": 17, + "c": 33, "mod": 3, "ri": 2, "div": 3, @@ -21692,6 +21540,7 @@ "ci": 3, "index": 3, "middle": 2, + "right": 4, "check": 2, "if": 5, "candidate": 10, @@ -21704,6 +21553,7 @@ "solved": 1, "single": 9, "Bool": 2, + "_": 60, "true": 16, "false": 13, "unsolved": 10, @@ -21717,6 +21567,7 @@ "zip": 7, "repeat": 3, "containers": 6, + "String": 9, "PRINTING": 1, "printable": 1, "coordinate": 1, @@ -21726,18 +21577,27 @@ "packed": 1, "chr": 2, "ord": 6, + "print": 25, "board": 41, "printb": 4, + "mapM_": 5, "p1line": 2, + "println": 25, + "do": 38, "pfld": 4, "line": 2, "brief": 1, "no": 4, + ".": 41, "some": 2, + "x": 45, "zs": 1, "initial/final": 1, + "result": 11, "msg": 6, + "return": 17, "res012": 2, + "case": 6, "concatMap": 1, "a*100": 1, "b*10": 1, @@ -21748,7 +21608,9 @@ "about": 1, "what": 1, "done": 1, + "new": 9, "turnoff1": 3, + "IO": 13, "i": 16, "off": 11, "nc": 7, @@ -21756,14 +21618,17 @@ "newb": 7, "filter": 26, "notElem": 7, + "<->": 35, "turnoff": 11, "turnoffh": 1, "ps": 8, "foldM": 2, "toh": 2, "setto": 3, + "n": 38, "cname": 4, "nf": 2, + "<": 84, "SOLVING": 1, "STRATEGIES": 1, "reduce": 3, @@ -21771,6 +21636,7 @@ "contains": 1, "numbers": 1, "already": 1, + "This": 2, "finds": 1, "logs": 1, "NAKED": 5, @@ -21783,6 +21649,7 @@ "than": 2, "fields": 6, "are": 6, + "s": 21, "rcb": 16, "elem": 16, "collect": 1, @@ -21805,6 +21672,7 @@ "FOR": 11, "IN": 9, "occurs": 5, + "length": 20, "PAIRS": 8, "TRIPLES": 8, "QUADS": 2, @@ -21816,6 +21684,7 @@ "tuple": 2, "name": 2, "//": 8, + "let": 8, "u": 6, "fold": 7, "non": 2, @@ -21829,6 +21698,7 @@ "uniq": 4, "sort": 4, "common": 4, + "1": 2, "bs": 7, "undefined": 1, "cannot": 1, @@ -21847,6 +21717,8 @@ "intersection": 1, "we": 5, "occurences": 1, + "but": 2, + "an": 6, "XY": 2, "Wing": 2, "there": 6, @@ -21857,6 +21729,7 @@ "B": 5, "Z": 6, "shares": 2, + "C": 6, "reasoning": 1, "will": 4, "be": 9, @@ -21865,6 +21738,7 @@ "thus": 1, "see": 1, "xyWing": 2, + "y": 15, "rcba": 4, "share": 1, "b1": 11, @@ -21891,6 +21765,7 @@ "fish": 7, "fishname": 5, "rset": 4, + "take": 13, "certain": 1, "rflds": 2, "rowset": 1, @@ -21943,6 +21818,7 @@ "conclusion": 4, "THE": 1, "FIRST": 1, + "con": 3, "implication": 2, "ai": 2, "so": 1, @@ -21972,6 +21848,7 @@ "Liste": 1, "aller": 1, "Annahmen": 1, + "r": 7, "ein": 1, "bestimmtes": 1, "acstree": 3, @@ -21980,6 +21857,7 @@ "maybe": 1, "tree": 1, "lookup": 2, + "Just": 2, "error": 1, "performance": 1, "resons": 1, @@ -22009,18 +21887,22 @@ "available": 1, "strategies": 1, "until": 1, + "nothing": 2, "changes": 1, "anymore": 1, "Strategy": 1, "functions": 2, "supposed": 1, "applied": 1, + "give": 2, "changed": 1, "board.": 1, "strategy": 2, + "does": 2, "anything": 1, "alter": 1, "it": 2, + "returns": 2, "next": 1, "tried.": 1, "solve": 19, @@ -22060,9 +21942,11 @@ "<=>": 1, "0": 2, "ignored": 1, + "main": 11, "h": 1, "help": 1, "usage": 1, + "java": 5, "Sudoku": 2, "file": 4, "81": 3, @@ -22077,12 +21961,15 @@ "sudokuoftheday": 1, "pages": 1, "o": 1, + "d": 3, "php": 1, + "Right": 6, "click": 1, "puzzle": 1, "open": 1, "tab": 1, "Copy": 1, + "URL": 2, "address": 1, "your": 1, "browser": 1, @@ -22099,14 +21986,122 @@ "files": 2, "forM_": 1, "sudoku": 2, + "br": 4, "openReader": 1, "lines": 2, "BufferedReader.getLines": 1, "process": 5, + "ss": 8, + "mapM": 3, + "sum": 2, "candi": 2, "consider": 3, "acht": 4, + "stderr.println": 3, "neun": 2, + "module": 2, + "examples.Concurrent": 1, + "System.Random": 1, + "Java.Net": 1, + "Control.Concurrent": 1, + "main2": 1, + "args": 2, + "m": 2, + "newEmptyMVar": 1, + "forkIO": 11, + "m.put": 3, + "replicateM_": 3, + "m.take": 1, + "example1": 1, + "putChar": 2, + "example2": 2, + "getLine": 2, + "long": 4, + "setReminder": 3, + "Left": 5, + "Long": 3, + "Thread.sleep": 4, + "L*n": 1, + "table": 1, + "mainPhil": 2, + "fork1": 3, + "fork2": 3, + "fork3": 3, + "fork4": 3, + "fork5": 3, + "MVar": 3, + "5": 1, + "philosopher": 7, + "Kant": 1, + "Locke": 1, + "Wittgenstein": 1, + "Nozick": 1, + "Mises": 1, + "me": 13, + "g": 4, + "Random.newStdGen": 1, + "phil": 4, + "tT": 2, + "g1": 2, + "Random.randomR": 2, + "L": 6, + "eT": 2, + "g2": 3, + "thinkTime": 3, + "eatTime": 3, + "fl": 4, + "left.take": 1, + "rFork": 2, + "poll": 1, + "fr": 3, + "right.put": 1, + "left.put": 2, + "table.notifyAll": 2, + "Nothing": 2, + "table.wait": 1, + "inter": 3, + "InterruptedException": 4, + "catch": 2, + "getURL": 4, + "xx": 2, + "url": 1, + "URL.new": 1, + "url.openConnection": 1, + "con.connect": 1, + "con.getInputStream": 1, + "typ": 5, + "con.getContentType": 1, + "ir": 2, + "InputStreamReader.new": 2, + "fromMaybe": 1, + "charset": 2, + "unsupportedEncoding": 3, + "BufferedReader": 1, + "getLines": 1, + "InputStream": 1, + "UnsupportedEncodingException": 1, + "InputStreamReader": 1, + "x.catched": 1, + "ctyp": 2, + "charset=": 1, + "m.group": 1, + "SomeException": 2, + "Throwable": 1, + "m1": 1, + "MVar.newEmpty": 3, + "m2": 1, + "m3": 2, + "catchAll": 3, + "m1.put": 1, + "m2.put": 1, + "m3.put": 1, + "r1": 2, + "m1.take": 1, + "r2": 3, + "m2.take": 1, + "r3": 3, + "putStrLn": 2, + "x.getClass.getName": 1, "examples.SwingExamples": 1, "Java.Awt": 1, "ActionListener": 2, @@ -22178,7 +22173,41 @@ "b3.addActionListener": 1, "newContentPane.add": 3, "newContentPane.setOpaque": 1, - "frame.setContentPane": 1 + "frame.setContentPane": 1, + "examples.CommandLineClock": 1, + "Date": 5, + "native": 4, + "java.util.Date": 1, + "MutableIO": 1, + "toString": 2, + "Mutable": 1, + "ST": 1, + "d.toString": 1, + "action": 2, + "us": 1, + "current": 4, + "time": 1, + "lang": 2, + "Thread": 2, + "sleep": 4, + "takes": 1, + "may": 1, + "throw": 1, + "without": 1, + "doubt": 1, + "public": 1, + "static": 1, + "void": 2, + "millis": 1, + "throws": 4, + "Encoded": 1, + "Frege": 1, + "argument": 1, + "defined": 1, + "frege": 1, + "Lang": 1, + "forever": 1, + "stdout.flush": 1 }, "GAMS": { "*Basic": 1, @@ -22343,24 +22372,57 @@ "#############################################################################": 63, "##": 766, "#W": 4, - "example.gd": 2, + "vspc.gd": 1, + "GAP": 15, + "library": 2, + "Thomas": 2, + "Breuer": 2, + "#Y": 6, + "Copyright": 6, + "(": 721, + "C": 11, + ")": 722, + "Lehrstuhl": 2, + "D": 36, + "f": 11, + "r": 2, + "Mathematik": 2, + "RWTH": 2, + "Aachen": 2, + "Germany": 2, + "School": 2, + "Math": 2, + "and": 102, + "Comp.": 2, + "Sci.": 2, + "University": 4, + "of": 114, + "St": 2, + "Andrews": 2, + "Scotland": 2, + "The": 21, + "Group": 3, "This": 10, "file": 7, - "contains": 7, - "a": 113, - "sample": 2, - "of": 114, - "GAP": 15, - "declaration": 1, - "file.": 3, - "DeclareProperty": 2, - "(": 721, - "IsLeftModule": 6, - ")": 722, - ";": 569, - "DeclareGlobalFunction": 5, + "declares": 1, + "the": 136, + "operations": 2, + "for": 53, + "vector": 67, + "spaces.": 4, + "bases": 5, + "free": 3, + "left": 15, + "modules": 1, + "can": 12, + "be": 24, + "found": 1, + "in": 64, + "": 10, + "lib/basis.gd": 1, + ".": 257, "#C": 7, - "IsQuuxFrobnicator": 1, + "IsLeftOperatorRing": 1, "": 3, "": 28, "": 7, @@ -22368,89 +22430,629 @@ "Arg=": 33, "Type=": 7, "": 28, - "Tests": 1, - "whether": 5, - "R": 5, - "is": 72, - "quux": 1, - "frobnicator.": 1, "": 28, "": 28, "DeclareSynonym": 17, - "IsField": 1, - "and": 102, - "IsGroup": 1, - "implementation": 1, - "#M": 20, - "SomeOperation": 1, - "": 2, - "performs": 1, - "some": 2, - "operation": 1, + "IsLeftOperatorAdditiveGroup": 2, + "IsRing": 1, + "IsAssociativeLOpDProd": 2, + ";": 569, + "#T": 6, + "really": 4, + "IsLeftOperatorRingWithOne": 2, + "IsRingWithOne": 1, + "IsLeftVectorSpace": 3, + "": 38, + "IsVectorSpace": 26, + "<#GAPDoc>": 17, + "Label=": 19, + "A": 9, + "": 12, + "space": 74, + "": 12, + "&": 37, + "is": 72, + "a": 113, + "module": 2, + "see": 30, + "nbsp": 30, + "": 71, + "Func=": 40, + "over": 24, + "division": 15, + "ring": 14, + "Chapter": 3, + "Chap=": 3, + "

": 23, + "Whenever": 1, + "we": 3, + "talk": 1, + "about": 3, + "an": 17, + "": 42, + "F": 61, + "": 41, + "-": 67, + "": 117, + "V": 152, + "": 117, + "then": 128, + "additive": 1, + "group": 2, "on": 5, - "InstallMethod": 18, - "SomeProperty": 1, + "which": 8, + "acts": 1, + "via": 6, + "multiplication": 1, + "from": 5, + "such": 4, + "that": 39, + "this": 15, + "action": 4, + "addition": 1, + "are": 14, + "right": 2, + "distributive.": 1, + "accessed": 1, + "as": 23, + "value": 9, + "attribute": 2, + "Vector": 1, + "spaces": 15, + "always": 1, + "Filt=": 4, + "synonyms.": 1, + "<#/GAPDoc>": 17, + "IsLeftModule": 6, + "IsLeftActedOnByDivisionRing": 4, + "InstallTrueMethod": 4, + "IsFreeLeftModule": 3, + "#F": 17, + "IsGaussianSpace": 10, + "": 14, + "filter": 3, + "Sect=": 6, + "row": 17, + "or": 13, + "matrix": 5, + "field": 12, + "say": 1, + "indicates": 3, + "entries": 8, + "all": 18, + "vectors": 16, + "matrices": 5, + "respectively": 1, + "contained": 4, + "In": 3, + "case": 2, + "called": 1, + "Gaussian": 19, + "space.": 5, + "Bases": 1, + "computed": 2, + "using": 2, + "elimination": 5, + "given": 4, + "list": 16, + "generators.": 1, + "": 12, + "": 12, + "gap": 41, + "mats": 5, "[": 145, "]": 169, - "function": 37, - "M": 7, - "if": 103, - "IsFreeLeftModule": 3, - "not": 49, - "IsTrivial": 1, - "then": 128, - "return": 41, + "VectorSpace": 13, + "Rationals": 13, "true": 21, - "fi": 91, - "TryNextMethod": 7, - "end": 34, - "#F": 17, - "SomeGlobalFunction": 2, - "A": 9, - "global": 1, - "variadic": 1, - "funfion.": 1, - "InstallGlobalFunction": 5, - "arg": 16, - "Length": 14, - "+": 9, - "*": 12, - "elif": 21, - "-": 67, - "else": 25, - "Error": 7, + "E": 2, "#": 73, - "SomeFunc": 1, - "x": 14, - "y": 8, - "local": 16, - "z": 3, - "func": 3, - "tmp": 20, - "j": 3, - "mod": 2, - "List": 6, - "while": 5, + "element": 2, + "extension": 3, + "false": 7, + "Field": 1, + "": 12, + "DeclareFilter": 1, + "IsFullMatrixModule": 1, + "IsFullRowModule": 1, + "IsDivisionRing": 5, + "": 12, + "nontrivial": 1, + "associative": 1, + "algebra": 2, + "with": 24, + "multiplicative": 1, + "inverse": 1, + "each": 2, + "nonzero": 3, + "element.": 1, + "every": 1, + "possibly": 1, + "itself": 1, + "Note": 3, + "being": 2, + "thus": 1, + "not": 49, + "property": 2, + "get": 1, + "because": 2, + "usually": 1, + "represented": 1, + "coefficients": 3, + "stored": 1, + "DeclareSynonymAttr": 4, + "IsMagmaWithInversesIfNonzero": 1, + "IsNonTrivial": 1, + "IsAssociative": 1, + "IsEuclideanRing": 1, + "#A": 7, + "GeneratorsOfLeftVectorSpace": 1, + "GeneratorsOfVectorSpace": 2, + "": 7, + "For": 10, + "Attr=": 10, + "returns": 14, + "generate": 1, + "FullRowSpace": 5, + "GeneratorsOfLeftOperatorAdditiveGroup": 2, + "CanonicalBasis": 3, + "If": 11, + "supports": 1, + "canonical": 6, + "basis": 14, + "otherwise": 2, + "": 3, + "fail": 18, + "": 3, + "returned.": 4, + "defining": 1, + "its": 2, + "uniquely": 1, + "determined": 1, + "by": 14, + "exist": 1, + "two": 13, + "same": 6, + "acting": 8, + "domain": 17, + "equality": 1, + "these": 5, + "decided": 1, + "comparing": 1, + "bases.": 1, + "exact": 1, + "meaning": 1, + "depends": 1, + "type": 2, + "Canonical": 1, + "defined": 3, + "example": 3, + "one": 11, + "designs": 1, + "new": 2, + "kind": 1, + "defines": 1, + "method": 4, + "installs": 1, + "must": 6, + "call": 1, + "On": 1, + "other": 4, + "hand": 1, + "probably": 2, + "should": 2, + "install": 1, + "simply": 2, + "calls": 1, + "": 10, + "CANONICAL_BASIS_FLAGS": 1, + "": 9, + "vecs": 4, + "B": 16, + "": 8, + "3": 5, + "generators": 16, + "BasisVectors": 4, + "DeclareAttribute": 4, + "IsRowSpace": 2, + "consists": 7, + "IsRowModule": 1, + "IsGaussianRowSpace": 1, + "if": 103, + "contains": 7, + "scalars": 2, + "occur": 2, + "vectors.": 2, + "Thus": 3, + "use": 5, + "calculations.": 2, + "Otherwise": 3, + "non": 4, + "Gaussian.": 2, + "We": 4, + "will": 5, + "need": 3, + "flag": 2, + "to": 37, + "write": 3, + "down": 2, + "methods": 4, + "delegate": 2, + "ones.": 2, + "IsNonGaussianRowSpace": 1, + "expresses": 2, + "so": 3, + "cannot": 2, + "used": 10, + "compute": 3, + "handled": 3, + "mechanism": 4, + "nice": 4, + "following": 4, + "way.": 2, + "Let": 4, + "K": 4, + "spanned": 4, + "Then": 1, + "/": 12, + "cap": 1, + "v": 5, + "replacing": 1, + "entry": 2, + "forming": 1, + "concatenation.": 1, + "So": 2, + "associated": 3, + "DeclareHandlingByNiceBasis": 2, + "IsMatrixSpace": 2, + "IsMatrixModule": 1, + "IsGaussianMatrixSpace": 1, + "IsNonGaussianMatrixSpace": 1, + "irrelevant": 1, + "concatenation": 1, + "rows": 1, + "necessarily": 1, + "NormedRowVectors": 2, + "normed": 1, + "finite": 5, + "those": 1, + "have": 3, + "first": 1, + "component.": 1, + "result": 9, + "yields": 1, + "natural": 1, + "dimensional": 5, + "subspaces": 17, + "also": 3, + "GF": 22, + "*Z": 5, + "Z": 6, + "Action": 1, + "GL": 1, + "OnLines": 1, + "TrivialSubspace": 2, + "subspace": 7, + "zero": 4, + "triv": 2, + "0": 2, + "AsSet": 1, + "TrivialSubmodule": 1, + "": 5, + "": 2, + "collection": 3, + "gens": 16, + "elements": 7, + "optional": 3, + "argument": 1, + "specify": 3, + "empty.": 1, + "string": 6, + "known": 5, + "linearly": 3, + "independent": 3, + "particular": 1, + "dimension": 9, + "immediately": 2, + "set": 6, + "note": 2, + "return": 41, + "formed": 1, + "argument.": 1, + "2": 1, + "DeclareGlobalFunction": 5, + "Subspace": 4, + "generated": 1, + "SubspaceNC": 2, + "subset": 4, + "empty": 1, + "trivial": 1, + "parent": 3, + "returned": 3, + "does": 1, + "except": 1, + "it": 8, + "omits": 1, + "check": 5, + "whether": 5, + "both": 2, "do": 18, - "for": 53, - "in": 64, - "Print": 24, - "od": 15, - "repeat": 1, - "until": 1, - "<": 17, - "Magic.gd": 1, + "W": 32, + "1": 3, + "Submodule": 1, + "SubmoduleNC": 1, + "#O": 2, + "AsVectorSpace": 4, + "view": 4, + "": 2, + "domain.": 1, + "form": 2, + "Oper=": 6, + "smaller": 1, + "larger": 1, + "ring.": 3, + "Dimension": 6, + "LeftActingDomain": 29, + "9": 1, + "AsLeftModule": 6, + "AsSubspace": 5, + "": 6, + "U": 12, + "collection.": 1, + "/2": 4, + "Parent": 4, + "DeclareOperation": 2, + "IsCollection": 3, + "Intersection2Spaces": 4, + "": 2, + "": 2, + "": 2, + "function": 37, + "takes": 1, + "arguments": 1, + "intersection": 5, + "domains": 3, + "different": 2, + "let": 1, + "their": 1, + "intersection.": 1, + "AsStruct": 2, + "equal": 1, + "either": 2, + "Substruct": 1, + "common": 1, + "Struct": 1, + "cases": 2, + "basis.": 1, + "handle": 1, + "intersections": 1, + "algebras": 2, + "ideals": 2, + "sided": 1, + "ideals.": 1, + "": 2, + "": 2, + "nonnegative": 2, + "integer": 2, + "n": 31, + "length": 1, + "An": 2, + "alternative": 2, + "construct": 2, + "above": 2, + "FullRowModule": 2, + "FullMatrixSpace": 2, + "": 1, + "positive": 1, + "integers": 1, + "m": 8, + "fact": 1, + "FullMatrixModule": 3, + "IsSubspacesVectorSpace": 9, + "fixed": 1, + "lies": 1, + "category": 1, + "Subspaces": 8, + "Size": 5, + "iter": 17, + "Iterator": 5, + "NextIterator": 5, + "DeclareCategory": 1, + "IsDomain": 1, + "#M": 20, + "IsFinite": 4, + "Returns": 1, + "only": 5, + "": 1, + "Called": 2, + "k": 17, + "Special": 1, + "provided": 1, + "domains.": 1, + "IsInt": 3, + "IsSubspace": 3, + "OrthogonalSpaceInFullRowSpace": 1, + "complement": 1, + "full": 2, + "#P": 1, + "IsVectorSpaceHomomorphism": 3, + "": 2, + "": 1, + "mapping": 2, + "homomorphism": 1, + "linear": 1, + "source": 2, + "range": 1, + "+": 9, + "b": 8, + "s": 4, + "*": 12, + "hold": 1, + "DeclareProperty": 2, + "IsGeneralMapping": 2, + "#E": 2, + "Magic.gi": 1, "AutoDoc": 4, "package": 10, - "Copyright": 6, "Max": 2, "Horn": 2, "JLU": 2, "Giessen": 2, "Sebastian": 2, "Gutsche": 2, - "University": 4, "Kaiserslautern": 2, + "BindGlobal": 7, + "str": 8, + "suffix": 3, + "local": 16, + "Length": 14, + "{": 21, + "}": 21, + "end": 34, + "i": 25, + "while": 5, + "<": 17, + "od": 15, + "fi": 91, + "d": 16, + "tmp": 20, + "IsDirectoryPath": 1, + "CreateDir": 2, + "currently": 1, + "undocumented": 1, + "Error": 7, + "LastSystemError": 1, + ".message": 1, + "pkg": 32, + "subdirs": 2, + "extensions": 1, + "d_rel": 6, + "files": 4, + "DirectoriesPackageLibrary": 2, + "IsEmpty": 6, + "continue": 3, + "Directory": 5, + "DirectoryContents": 1, + "Sort": 1, + "AUTODOC_GetSuffix": 2, + "IsReadableFile": 2, + "Filename": 8, + "Add": 4, + "Make": 1, + "callable": 1, + "package_name": 1, + "AutoDocWorksheet.": 1, + "Which": 1, + "create": 1, + "worksheet": 1, + "InstallGlobalFunction": 5, + "arg": 16, + "package_info": 3, + "opt": 3, + "scaffold": 12, + "gapdoc": 7, + "maketest": 12, + "autodoc": 8, + "pkg_dir": 5, + "doc_dir": 18, + "doc_dir_rel": 3, + "title_page": 7, + "tree": 8, + "is_worksheet": 13, + "position_document_class": 7, + "gapdoc_latex_option_record": 4, + "LowercaseString": 3, + "rec": 20, + "DirectoryCurrent": 1, + "else": 25, + "PackageInfo": 1, + "key": 3, + "val": 4, + "ValueOption": 1, + "opt.": 1, + "IsBound": 39, + "opt.dir": 4, + "elif": 21, + "IsString": 7, + "IsDirectory": 1, + "AUTODOC_CreateDirIfMissing": 1, + "Print": 24, + "opt.scaffold": 5, + "package_info.AutoDoc": 3, + "IsRecord": 7, + "IsBool": 4, + "AUTODOC_APPEND_RECORD_WRITEONCE": 3, + "AUTODOC_WriteOnce": 10, + "opt.autodoc": 5, + "Concatenation": 15, + "package_info.Dependencies.NeededOtherPackages": 1, + "package_info.Dependencies.SuggestedOtherPackages": 1, + "ForAny": 1, + "x": 14, + "autodoc.files": 7, + "autodoc.scan_dirs": 5, + "autodoc.level": 3, + "PushOptions": 1, + "level_value": 1, + "Append": 2, + "AUTODOC_FindMatchingFiles": 2, + "opt.gapdoc": 5, + "opt.maketest": 4, + "gapdoc.main": 8, + "package_info.PackageDoc": 3, + ".BookName": 2, + "gapdoc.bookname": 4, + "#Print": 1, + "gapdoc.files": 9, + "gapdoc.scan_dirs": 3, + "Set": 1, + "Number": 1, + "ListWithIdenticalEntries": 1, + "List": 6, + "DocumentationTree": 1, + "autodoc.section_intros": 2, + "AUTODOC_PROCESS_INTRO_STRINGS": 1, + "Tree": 2, + "AutoDocScanFiles": 1, + "PackageName": 2, + "scaffold.TitlePage": 4, + "scaffold.TitlePage.Title": 2, + ".TitlePage.Title": 2, + "Position": 2, + "Remove": 2, + "JoinStringsWithSeparator": 1, + "ReplacedString": 2, + "Syntax": 1, + "scaffold.document_class": 7, + "PositionSublist": 5, + "GAPDoc2LaTeXProcs.Head": 14, + "..": 6, + "scaffold.latex_header_file": 2, + "StringFile": 2, + "scaffold.gapdoc_latex_options": 4, + "RecNames": 1, + "scaffold.gapdoc_latex_options.": 5, + "IsList": 1, + "scaffold.includes": 4, + "scaffold.bib": 7, + "Unbind": 1, + "scaffold.main_xml_file": 2, + ".TitlePage": 1, + "ExtractTitleInfoFromPackageInfo": 1, + "CreateTitlePage": 1, + "scaffold.MainPage": 2, + "scaffold.dir": 1, + "scaffold.book_name": 1, + "CreateMainPage": 1, + "WriteDocumentation": 1, + "SetGapDocLaTeXOptions": 1, + "MakeGAPDocDoc": 1, + "CopyHTMLStyleFiles": 1, + "GAPDocManualLab": 1, + "maketest.folder": 3, + "maketest.scan_dir": 3, + "CreateMakeTest": 1, + "Magic.gd": 1, "SHEBANG#!#! @Description": 1, "SHEBANG#!#! This": 1, "SHEBANG#!#! any": 1, @@ -22505,7 +23107,6 @@ "TODO": 3, "mention": 1, "merging": 1, - "with": 24, "PackageInfo.AutoDoc": 1, "SHEBANG#!#! ": 3, "SHEBANG#!#! ": 13, @@ -22520,60 +23121,36 @@ "SHEBANG#!#! i.e.": 1, "SHEBANG#!#! The": 2, "SHEBANG#!#! then": 1, - "The": 21, "param": 1, "bit": 2, "strange.": 1, - "We": 4, - "should": 2, - "probably": 2, "change": 1, - "it": 8, - "to": 37, - "be": 24, "more": 3, "general": 1, - "as": 23, - "one": 11, "might": 1, "want": 1, "define": 2, - "other": 4, "entities...": 1, - "For": 10, "now": 1, - "we": 3, "document": 1, "leave": 1, "us": 1, - "the": 136, "choice": 1, "revising": 1, "how": 1, "works.": 1, "": 2, - "": 117, "entities": 2, - "": 117, "": 2, "": 2, - "list": 16, "names": 1, - "or": 13, - "which": 8, - "are": 14, - "used": 10, "corresponding": 1, "XML": 4, "entities.": 1, - "example": 3, - "set": 6, "containing": 1, - "string": 6, "": 2, "SomePackage": 3, "": 2, - "following": 4, "added": 1, "preamble": 1, "

": 2, @@ -22582,30 +23159,18 @@ "": 2, "allows": 1, "you": 3, - "write": 3, - "&": 37, "amp": 1, "your": 1, "documentation": 2, "reference": 1, - "that": 39, "package.": 2, - "If": 11, "another": 1, - "type": 2, "entity": 1, "desired": 1, - "can": 12, - "simply": 2, "add": 2, "instead": 1, - "two": 13, - "entry": 2, "list.": 2, "It": 1, - "will": 5, - "handled": 3, - "so": 3, "please": 1, "careful.": 1, "": 2, @@ -22640,45 +23205,32 @@ "later": 1, "on.": 1, "However": 2, - "note": 2, "thanks": 1, - "new": 2, "comment": 1, "syntax": 1, - "only": 5, "remaining": 1, - "use": 5, - "this": 15, "seems": 1, "ability": 1, - "specify": 3, "order": 1, "chapters": 1, "sections.": 1, "TODO.": 1, "SHEBANG#!#! files": 1, - "Note": 3, "strictly": 1, "speaking": 1, - "also": 3, "scaffold.": 1, "uses": 2, "scaffolding": 2, - "mechanism": 4, - "really": 4, "necessary": 2, "custom": 1, "name": 2, "main": 1, - "Thus": 3, + "file.": 3, "purpose": 1, "parameter": 1, "cater": 1, "packages": 5, - "have": 3, "existing": 1, - "using": 2, - "different": 2, "wish": 1, "scaffolding.": 1, "explain": 1, @@ -22693,7 +23245,6 @@ "just": 1, "case.": 1, "SHEBANG#!#! In": 1, - "maketest": 12, "part.": 1, "Still": 1, "under": 1, @@ -22711,150 +23262,18 @@ "SHEBANG#!#! @Returns": 1, "SHEBANG#!#! @Arguments": 1, "SHEBANG#!#! @ChapterInfo": 1, - "Magic.gi": 1, - "BindGlobal": 7, - "str": 8, - "suffix": 3, - "n": 31, - "m": 8, - "{": 21, - "}": 21, - "i": 25, - "d": 16, - "IsDirectoryPath": 1, - "CreateDir": 2, - "currently": 1, - "undocumented": 1, - "fail": 18, - "LastSystemError": 1, - ".message": 1, - "false": 7, - "pkg": 32, - "subdirs": 2, - "extensions": 1, - "d_rel": 6, - "files": 4, - "result": 9, - "DirectoriesPackageLibrary": 2, - "IsEmpty": 6, - "continue": 3, - "Directory": 5, - "DirectoryContents": 1, - "Sort": 1, - "AUTODOC_GetSuffix": 2, - "IsReadableFile": 2, - "Filename": 8, - "Add": 4, - "Make": 1, - "callable": 1, - "package_name": 1, - "AutoDocWorksheet.": 1, - "Which": 1, - "create": 1, - "worksheet": 1, - "package_info": 3, - "opt": 3, - "scaffold": 12, - "gapdoc": 7, - "autodoc": 8, - "pkg_dir": 5, - "doc_dir": 18, - "doc_dir_rel": 3, - "title_page": 7, - "tree": 8, - "is_worksheet": 13, - "position_document_class": 7, - "gapdoc_latex_option_record": 4, - "LowercaseString": 3, - "rec": 20, - "DirectoryCurrent": 1, - "PackageInfo": 1, - "key": 3, - "val": 4, - "ValueOption": 1, - "opt.": 1, - "IsBound": 39, - "opt.dir": 4, - "IsString": 7, - "IsDirectory": 1, - "AUTODOC_CreateDirIfMissing": 1, - "opt.scaffold": 5, - "package_info.AutoDoc": 3, - "IsRecord": 7, - "IsBool": 4, - "AUTODOC_APPEND_RECORD_WRITEONCE": 3, - "AUTODOC_WriteOnce": 10, - "opt.autodoc": 5, - "Concatenation": 15, - "package_info.Dependencies.NeededOtherPackages": 1, - "package_info.Dependencies.SuggestedOtherPackages": 1, - "ForAny": 1, - "autodoc.files": 7, - "autodoc.scan_dirs": 5, - "autodoc.level": 3, - "PushOptions": 1, - "level_value": 1, - "Append": 2, - "AUTODOC_FindMatchingFiles": 2, - "opt.gapdoc": 5, - "opt.maketest": 4, - "gapdoc.main": 8, - "package_info.PackageDoc": 3, - ".BookName": 2, - "gapdoc.bookname": 4, - "#Print": 1, - "gapdoc.files": 9, - "gapdoc.scan_dirs": 3, - "Set": 1, - "Number": 1, - "ListWithIdenticalEntries": 1, - "f": 11, - "DocumentationTree": 1, - "autodoc.section_intros": 2, - "AUTODOC_PROCESS_INTRO_STRINGS": 1, - "Tree": 2, - "AutoDocScanFiles": 1, - "PackageName": 2, - "scaffold.TitlePage": 4, - "scaffold.TitlePage.Title": 2, - ".TitlePage.Title": 2, - "Position": 2, - "Remove": 2, - "JoinStringsWithSeparator": 1, - "ReplacedString": 2, - "Syntax": 1, - "scaffold.document_class": 7, - "PositionSublist": 5, - "GAPDoc2LaTeXProcs.Head": 14, - "..": 6, - "scaffold.latex_header_file": 2, - "StringFile": 2, - "scaffold.gapdoc_latex_options": 4, - "RecNames": 1, - "scaffold.gapdoc_latex_options.": 5, - "IsList": 1, - "scaffold.includes": 4, - "scaffold.bib": 7, - "Unbind": 1, - "scaffold.main_xml_file": 2, - ".TitlePage": 1, - "ExtractTitleInfoFromPackageInfo": 1, - "CreateTitlePage": 1, - "scaffold.MainPage": 2, - "scaffold.dir": 1, - "scaffold.book_name": 1, - "CreateMainPage": 1, - "WriteDocumentation": 1, - "SetGapDocLaTeXOptions": 1, - "MakeGAPDocDoc": 1, - "CopyHTMLStyleFiles": 1, - "GAPDocManualLab": 1, - "maketest.folder": 3, - "maketest.scan_dir": 3, - "CreateMakeTest": 1, + "example.gd": 2, + "sample": 2, + "declaration": 1, + "IsQuuxFrobnicator": 1, + "Tests": 1, + "R": 5, + "quux": 1, + "frobnicator.": 1, + "IsField": 1, + "IsGroup": 1, "PackageInfo.g": 2, "cvec": 1, - "s": 4, "template": 1, "SetPackageInfo": 1, "Subtitle": 1, @@ -22863,7 +23282,6 @@ "dd/mm/yyyy": 1, "format": 2, "Information": 1, - "about": 3, "authors": 1, "maintainers.": 1, "Persons": 1, @@ -22879,7 +23297,6 @@ "Status": 2, "information.": 1, "Currently": 1, - "cases": 2, "recognized": 1, "successfully": 2, "refereed": 2, @@ -22891,14 +23308,10 @@ "system": 1, "development": 1, "versions": 1, - "all": 18, "You": 1, - "must": 6, "provide": 2, "next": 6, - "entries": 8, "status": 1, - "because": 2, "was": 1, "#CommunicatedBy": 1, "#AcceptDate": 1, @@ -22918,7 +23331,6 @@ "overview": 1, "Web": 1, "page": 1, - "an": 17, "URL": 1, "Webpage": 1, "detailed": 1, @@ -22959,416 +23371,33 @@ "functionality": 1, "sensible.": 1, "#TestFile": 1, + "some": 2, "keyword": 1, "related": 1, "topic": 1, "Keywords": 1, - "vspc.gd": 1, - "library": 2, - "Thomas": 2, - "Breuer": 2, - "#Y": 6, - "C": 11, - "Lehrstuhl": 2, - "D": 36, - "r": 2, - "Mathematik": 2, - "RWTH": 2, - "Aachen": 2, - "Germany": 2, - "School": 2, - "Math": 2, - "Comp.": 2, - "Sci.": 2, - "St": 2, - "Andrews": 2, - "Scotland": 2, - "Group": 3, - "declares": 1, - "operations": 2, - "vector": 67, - "spaces.": 4, - "bases": 5, - "free": 3, - "left": 15, - "modules": 1, - "found": 1, - "": 10, - "lib/basis.gd": 1, - ".": 257, - "IsLeftOperatorRing": 1, - "IsLeftOperatorAdditiveGroup": 2, - "IsRing": 1, - "IsAssociativeLOpDProd": 2, - "#T": 6, - "IsLeftOperatorRingWithOne": 2, - "IsRingWithOne": 1, - "IsLeftVectorSpace": 3, - "": 38, - "IsVectorSpace": 26, - "<#GAPDoc>": 17, - "Label=": 19, - "": 12, - "space": 74, - "": 12, - "module": 2, - "see": 30, - "nbsp": 30, - "": 71, - "Func=": 40, - "over": 24, - "division": 15, - "ring": 14, - "Chapter": 3, - "Chap=": 3, - "

": 23, - "Whenever": 1, - "talk": 1, - "": 42, - "F": 61, - "": 41, - "V": 152, - "additive": 1, - "group": 2, - "acts": 1, - "via": 6, - "multiplication": 1, - "from": 5, - "such": 4, - "action": 4, - "addition": 1, - "right": 2, - "distributive.": 1, - "accessed": 1, - "value": 9, - "attribute": 2, - "Vector": 1, - "spaces": 15, - "always": 1, - "Filt=": 4, - "synonyms.": 1, - "<#/GAPDoc>": 17, - "IsLeftActedOnByDivisionRing": 4, - "InstallTrueMethod": 4, - "IsGaussianSpace": 10, - "": 14, - "filter": 3, - "Sect=": 6, - "row": 17, - "matrix": 5, - "field": 12, - "say": 1, - "indicates": 3, - "vectors": 16, - "matrices": 5, - "respectively": 1, - "contained": 4, - "In": 3, - "case": 2, - "called": 1, - "Gaussian": 19, - "space.": 5, - "Bases": 1, - "computed": 2, - "elimination": 5, - "given": 4, - "generators.": 1, - "": 12, - "": 12, - "gap": 41, - "mats": 5, - "VectorSpace": 13, - "Rationals": 13, - "E": 2, - "element": 2, - "extension": 3, - "Field": 1, - "": 12, - "DeclareFilter": 1, - "IsFullMatrixModule": 1, - "IsFullRowModule": 1, - "IsDivisionRing": 5, - "": 12, - "nontrivial": 1, - "associative": 1, - "algebra": 2, - "multiplicative": 1, - "inverse": 1, - "each": 2, - "nonzero": 3, - "element.": 1, - "every": 1, - "possibly": 1, - "itself": 1, - "being": 2, - "thus": 1, - "property": 2, - "get": 1, - "usually": 1, - "represented": 1, - "coefficients": 3, - "stored": 1, - "DeclareSynonymAttr": 4, - "IsMagmaWithInversesIfNonzero": 1, - "IsNonTrivial": 1, - "IsAssociative": 1, - "IsEuclideanRing": 1, - "#A": 7, - "GeneratorsOfLeftVectorSpace": 1, - "GeneratorsOfVectorSpace": 2, - "": 7, - "Attr=": 10, - "returns": 14, - "generate": 1, - "FullRowSpace": 5, - "GeneratorsOfLeftOperatorAdditiveGroup": 2, - "CanonicalBasis": 3, - "supports": 1, - "canonical": 6, - "basis": 14, - "otherwise": 2, - "": 3, - "": 3, - "returned.": 4, - "defining": 1, - "its": 2, - "uniquely": 1, - "determined": 1, - "by": 14, - "exist": 1, - "same": 6, - "acting": 8, - "domain": 17, - "equality": 1, - "these": 5, - "decided": 1, - "comparing": 1, - "bases.": 1, - "exact": 1, - "meaning": 1, - "depends": 1, - "Canonical": 1, - "defined": 3, - "designs": 1, - "kind": 1, - "defines": 1, - "method": 4, - "installs": 1, - "call": 1, - "On": 1, - "hand": 1, - "install": 1, - "calls": 1, - "": 10, - "CANONICAL_BASIS_FLAGS": 1, - "": 9, - "vecs": 4, - "B": 16, - "": 8, - "3": 5, - "generators": 16, - "BasisVectors": 4, - "DeclareAttribute": 4, - "IsRowSpace": 2, - "consists": 7, - "IsRowModule": 1, - "IsGaussianRowSpace": 1, - "scalars": 2, - "occur": 2, - "vectors.": 2, - "calculations.": 2, - "Otherwise": 3, - "non": 4, - "Gaussian.": 2, - "need": 3, - "flag": 2, - "down": 2, - "methods": 4, - "delegate": 2, - "ones.": 2, - "IsNonGaussianRowSpace": 1, - "expresses": 2, - "cannot": 2, - "compute": 3, - "nice": 4, - "way.": 2, - "Let": 4, - "K": 4, - "spanned": 4, - "Then": 1, - "/": 12, - "cap": 1, - "v": 5, - "replacing": 1, - "forming": 1, - "concatenation.": 1, - "So": 2, - "associated": 3, - "DeclareHandlingByNiceBasis": 2, - "IsMatrixSpace": 2, - "IsMatrixModule": 1, - "IsGaussianMatrixSpace": 1, - "IsNonGaussianMatrixSpace": 1, - "irrelevant": 1, - "concatenation": 1, - "rows": 1, - "necessarily": 1, - "NormedRowVectors": 2, - "normed": 1, - "finite": 5, - "those": 1, - "first": 1, - "component.": 1, - "yields": 1, - "natural": 1, - "dimensional": 5, - "subspaces": 17, - "GF": 22, - "*Z": 5, - "Z": 6, - "Action": 1, - "GL": 1, - "OnLines": 1, - "TrivialSubspace": 2, - "subspace": 7, - "zero": 4, - "triv": 2, - "0": 2, - "AsSet": 1, - "TrivialSubmodule": 1, - "": 5, - "": 2, - "collection": 3, - "gens": 16, - "elements": 7, - "optional": 3, - "argument": 1, - "empty.": 1, - "known": 5, - "linearly": 3, - "independent": 3, - "particular": 1, - "dimension": 9, - "immediately": 2, - "formed": 1, - "argument.": 1, - "2": 1, - "Subspace": 4, - "generated": 1, - "SubspaceNC": 2, - "subset": 4, - "empty": 1, - "trivial": 1, - "parent": 3, - "returned": 3, - "does": 1, - "except": 1, - "omits": 1, - "check": 5, - "both": 2, - "W": 32, - "1": 3, - "Submodule": 1, - "SubmoduleNC": 1, - "#O": 2, - "AsVectorSpace": 4, - "view": 4, - "": 2, - "domain.": 1, - "form": 2, - "Oper=": 6, - "smaller": 1, - "larger": 1, - "ring.": 3, - "Dimension": 6, - "LeftActingDomain": 29, - "9": 1, - "AsLeftModule": 6, - "AsSubspace": 5, - "": 6, - "U": 12, - "collection.": 1, - "/2": 4, - "Parent": 4, - "DeclareOperation": 2, - "IsCollection": 3, - "Intersection2Spaces": 4, - "": 2, - "": 2, - "": 2, - "takes": 1, - "arguments": 1, - "intersection": 5, - "domains": 3, - "let": 1, - "their": 1, - "intersection.": 1, - "AsStruct": 2, - "equal": 1, - "either": 2, - "Substruct": 1, - "common": 1, - "Struct": 1, - "basis.": 1, - "handle": 1, - "intersections": 1, - "algebras": 2, - "ideals": 2, - "sided": 1, - "ideals.": 1, - "": 2, - "": 2, - "nonnegative": 2, - "integer": 2, - "length": 1, - "An": 2, - "alternative": 2, - "construct": 2, - "above": 2, - "FullRowModule": 2, - "FullMatrixSpace": 2, - "": 1, - "positive": 1, - "integers": 1, - "fact": 1, - "FullMatrixModule": 3, - "IsSubspacesVectorSpace": 9, - "fixed": 1, - "lies": 1, - "category": 1, - "Subspaces": 8, - "Size": 5, - "iter": 17, - "Iterator": 5, - "NextIterator": 5, - "DeclareCategory": 1, - "IsDomain": 1, - "IsFinite": 4, - "Returns": 1, - "": 1, - "Called": 2, - "k": 17, - "Special": 1, - "provided": 1, - "domains.": 1, - "IsInt": 3, - "IsSubspace": 3, - "OrthogonalSpaceInFullRowSpace": 1, - "complement": 1, - "full": 2, - "#P": 1, - "IsVectorSpaceHomomorphism": 3, - "": 2, - "": 1, - "mapping": 2, - "homomorphism": 1, - "linear": 1, - "source": 2, - "range": 1, - "b": 8, - "hold": 1, - "IsGeneralMapping": 2, - "#E": 2, + "implementation": 1, + "SomeOperation": 1, + "": 2, + "performs": 1, + "operation": 1, + "InstallMethod": 18, + "SomeProperty": 1, + "M": 7, + "IsTrivial": 1, + "TryNextMethod": 7, + "SomeGlobalFunction": 2, + "global": 1, + "variadic": 1, + "funfion.": 1, + "SomeFunc": 1, + "y": 8, + "z": 3, + "func": 3, + "j": 3, + "mod": 2, + "repeat": 1, + "until": 1, "vspc.gi": 1, "generic": 1, "SetLeftActingDomain": 2, @@ -23949,6 +23978,11 @@ "gl_FragColor": 4, "varying": 6, "v_color": 4, + "static": 1, + "char*": 1, + "SimpleFragmentShader": 1, + "STRINGIFY": 1, + "FrontColor": 2, "uniform": 8, "mat4": 1, "u_MVPMatrix": 2, @@ -23956,37 +23990,6 @@ "a_position": 1, "a_color": 2, "gl_Position": 1, - "#version": 2, - "core": 1, - "cbar": 2, - "cfoo": 1, - "CB": 2, - "CD": 2, - "CA": 1, - "CC": 1, - "CBT": 5, - "CDT": 3, - "CAT": 1, - "CCT": 1, - "norA": 4, - "norB": 3, - "norC": 1, - "norD": 1, - "norE": 4, - "norF": 1, - "norG": 1, - "norH": 1, - "norI": 1, - "norcA": 2, - "norcB": 3, - "norcC": 2, - "norcD": 2, - "head": 1, - "of": 1, - "cycle": 2, - "norcE": 1, - "lead": 1, - "into": 1, "NUM_LIGHTS": 4, "AMBIENT": 2, "MAX_DIST": 3, @@ -24021,11 +24024,37 @@ "specularDot": 2, "sample.rgb": 1, "sample.a": 1, - "static": 1, - "char*": 1, - "SimpleFragmentShader": 1, - "STRINGIFY": 1, - "FrontColor": 2, + "#version": 2, + "core": 1, + "cbar": 2, + "cfoo": 1, + "CB": 2, + "CD": 2, + "CA": 1, + "CC": 1, + "CBT": 5, + "CDT": 3, + "CAT": 1, + "CCT": 1, + "norA": 4, + "norB": 3, + "norC": 1, + "norD": 1, + "norE": 4, + "norF": 1, + "norG": 1, + "norH": 1, + "norI": 1, + "norcA": 2, + "norcB": 3, + "norcC": 2, + "norcD": 2, + "head": 1, + "of": 1, + "cycle": 2, + "norcE": 1, + "lead": 1, + "into": 1, "kCoeff": 2, "kCube": 2, "uShift": 3, @@ -24386,6 +24415,158 @@ "always": 1, "looks": 1, "good": 1, + "#define": 26, + "assert_true": 1, + "argument0": 28, + "_assert_error_popup": 2, + "argument1": 10, + "string_repeat": 2, + "_assert_newline": 2, + "assert_false": 1, + "assert_equal": 1, + "//Safe": 1, + "equality": 1, + "check": 1, + "won": 1, + "support": 1, + "show_error": 2, + "show_message": 7, + "instead": 1, + "_assert_debug_value": 1, + "//String": 1, + "is_string": 2, + "os_browser": 1, + "browser_not_a_browser": 1, + "return": 56, + "string_replace_all": 1, + "//Numeric": 1, + "GMTuple": 1, + "jso_encode_string": 1, + "failed": 56, + "encode": 8, + "escape": 2, + "string": 13, + "jso_encode_map": 4, + "empty": 13, + "map": 47, + "key": 17, + "value": 13, + "one": 42, + "element": 8, + "key1": 3, + "key2": 3, + "multi": 7, + "jso_encode_list": 3, + "list": 36, + "nested": 27, + "three": 36, + "_jso_decode_string": 5, + "decode": 36, + "an": 24, + "small": 1, + "The": 6, + "quick": 2, + "brown": 2, + "fox": 2, + "over": 2, + "lazy": 2, + "dog.": 2, + "simple": 1, + "with": 47, + "characters": 3, + "Waahoo": 1, + "negg": 1, + "mixed": 1, + "_jso_decode_boolean": 2, + "_jso_decode_real": 11, + "standard": 1, + "zero": 4, + "signed": 2, + "decimal": 1, + "digits": 1, + "positive": 7, + "real": 14, + "number": 7, + "negative": 7, + "exponent": 4, + "integer": 6, + "_jso_decode_integer": 3, + "_jso_decode_map": 14, + "didn": 14, + "include": 14, + "right": 14, + "prefix": 14, + "#1": 14, + "#2": 14, + "entry": 29, + "pi": 2, + "bool": 2, + "waahoo": 10, + "woohah": 8, + "lists": 6, + "mix": 4, + "up": 6, + "_jso_decode_list": 14, + "woo": 2, + "maps": 37, + "Empty": 4, + "equal": 20, + "each": 18, + "other.": 12, + "junk": 2, + "info": 1, + "taxi": 1, + "An": 4, + "filled": 4, + "map.": 2, + "A": 24, + "B": 18, + "C": 8, + "Maps": 9, + "same": 6, + "content": 4, + "entered": 4, + "in": 21, + "different": 12, + "orders": 4, + "D": 1, + "keys": 2, + "values": 4, + "six": 1, + "corresponding": 4, + "types": 4, + "other": 4, + "crash.": 4, + "list.": 2, + "Lists": 4, + "two": 16, + "entries": 2, + "also": 2, + "jso_map_check": 9, + "find": 10, + "existing": 9, + "single": 11, + "argument": 10, + "jso_map_lookup": 3, + "found": 21, + "wrong": 10, + "trap": 2, + "jso_map_lookup_type": 3, + "type": 8, + "four": 21, + "inexistent": 11, + "multiple": 20, + "arguments": 26, + "overflow": 4, + "jso_list_check": 8, + "jso_list_lookup": 3, + "jso_list_lookup_type": 3, + "inner": 1, + "indexing": 1, + "bad": 1, + "boolean": 3, + "jso_cleanup_map": 1, + "one_map": 1, "var": 79, "i": 95, "playerObject": 1, @@ -24401,7 +24582,6 @@ "tcp_eof": 3, "global.serverSocket": 10, "gotServerHello": 2, - "show_message": 7, "instance_destroy": 7, "exit": 10, "room": 1, @@ -24434,7 +24614,6 @@ "Server": 3, "sent": 7, "illegal": 2, - "map": 47, "This": 2, "server": 10, "requires": 1, @@ -24449,7 +24628,6 @@ "plugins.": 1, "Maps/": 2, ".png": 2, - "The": 6, "version": 4, "Enter": 1, "Password": 1, @@ -24492,178 +24670,21 @@ "unexpected": 1, "data.": 1, "until": 1, - "downloadHandle": 3, - "url": 62, - "tmpfile": 3, - "window_oldshowborder": 2, - "window_oldfullscreen": 2, - "timeLeft": 1, - "counter": 1, - "AudioControlPlaySong": 1, - "window_get_showborder": 1, - "window_get_fullscreen": 1, - "window_set_fullscreen": 2, - "window_set_showborder": 1, - "global.updaterBetaChannel": 3, - "UPDATE_SOURCE_BETA": 1, - "UPDATE_SOURCE": 1, - "temp_directory": 1, - "httpGet": 1, - "httpRequestStatus": 1, - "download": 1, - "isn": 1, - "extract": 1, - "downloaded": 1, - "file": 2, - "now.": 1, - "extractzip": 1, - "working_directory": 6, - "execute_program": 1, - "game_end": 1, - "victim": 10, - "killer": 11, - "assistant": 16, - "damageSource": 18, - "argument0": 28, - "argument1": 10, - "argument2": 3, - "argument3": 1, - "//*************************************": 6, - "//*": 3, - "Scoring": 1, - "Kill": 1, - "log": 1, - "recordKillInLog": 1, - "victim.stats": 1, - "DEATHS": 1, - "WEAPON_KNIFE": 1, - "||": 16, - "WEAPON_BACKSTAB": 1, - "killer.stats": 8, - "STABS": 2, - "killer.roundStats": 8, - "POINTS": 10, - "victim.object.currentWeapon.object_index": 1, - "Medigun": 2, - "victim.object.currentWeapon.uberReady": 1, - "BONUS": 2, - "KILLS": 2, - "victim.object.intel": 1, - "DEFENSES": 2, - "recordEventInLog": 1, - "killer.team": 1, - "killer.name": 2, - "global.myself": 4, - "assistant.stats": 2, - "ASSISTS": 2, - "assistant.roundStats": 2, - ".5": 2, - "//SPEC": 1, - "instance_create": 20, - "victim.object.x": 3, - "victim.object.y": 3, - "Spectator": 1, - "Gibbing": 2, "xoffset": 5, - "yoffset": 5, - "xsize": 3, - "ysize": 3, "view_xview": 3, + "yoffset": 5, "view_yview": 3, + "xsize": 3, "view_wview": 2, + "ysize": 3, "view_hview": 2, - "randomize": 1, - "with": 47, - "victim.object": 2, - "WEAPON_ROCKETLAUNCHER": 1, - "WEAPON_MINEGUN": 1, - "FRAG_BOX": 2, - "WEAPON_REFLECTED_STICKY": 1, - "WEAPON_REFLECTED_ROCKET": 1, - "FINISHED_OFF_GIB": 2, - "GENERATOR_EXPLOSION": 2, - "player.class": 15, - "CLASS_QUOTE": 3, - "global.gibLevel": 14, "distance_to_point": 3, "xsize/2": 2, "ysize/2": 2, - "hasReward": 4, - "repeat": 7, - "createGib": 14, - "PumpkinGib": 1, - "hspeed": 14, - "vspeed": 13, - "random": 21, - "choose": 8, - "Gib": 1, - "player.team": 8, - "TEAM_BLUE": 6, - "BlueClump": 1, - "TEAM_RED": 8, - "RedClump": 1, - "blood": 2, - "BloodDrop": 1, - "blood.hspeed": 1, - "blood.vspeed": 1, - "blood.sprite_index": 1, - "PumpkinJuiceS": 1, - "//All": 1, - "Classes": 1, - "gib": 1, - "head": 1, - "hands": 2, - "feet": 1, - "Headgib": 1, - "//Medic": 1, - "has": 2, - "specially": 1, - "colored": 1, - "CLASS_MEDIC": 2, - "Hand": 3, - "Feet": 1, - "//Class": 1, - "specific": 1, - "gibs": 1, - "CLASS_PYRO": 2, - "Accesory": 5, - "CLASS_SOLDIER": 2, - "CLASS_ENGINEER": 3, - "CLASS_SNIPER": 3, - "playsound": 2, - "deadbody": 2, - "DeathSnd1": 1, - "DeathSnd2": 1, - "DeadGuy": 1, - "deadbody.sprite_index": 2, - "haxxyStatue": 1, - "deadbody.image_index": 2, - "CHARACTER_ANIMATION_DEAD": 1, - "deadbody.hspeed": 1, - "deadbody.vspeed": 1, - "deadbody.image_xscale": 1, - "global.gg_birthday": 1, - "myHat": 2, - "PartyHat": 1, - "myHat.image_index": 2, - "victim.team": 2, - "global.xmas": 1, - "XmasHat": 1, - "Deathcam": 1, - "global.killCam": 3, - "KILL_BOX": 1, - "FINISHED_OFF": 5, - "DeathCam": 1, - "DeathCam.killedby": 1, - "DeathCam.name": 1, - "DeathCam.oldxview": 1, - "DeathCam.oldyview": 1, - "DeathCam.lastDamageSource": 1, - "DeathCam.team": 1, - "global.myself.team": 3, "xr": 19, "yr": 19, "cloakAlpha": 1, + "global.myself.team": 3, "team": 13, "canCloak": 1, "cloakAlpha/2": 1, @@ -24672,6 +24693,8 @@ "power": 1, "currentWeapon.stab.alpha": 1, "&&": 6, + "global.myself": 4, + "||": 16, "global.showHealthBar": 3, "draw_set_alpha": 3, "draw_healthbar": 1, @@ -24696,9 +24719,9 @@ "35": 1, "showTeammateStats": 1, "weapons": 3, + "Medigun": 2, "50": 3, "Superburst": 1, - "string": 13, "currentWeapon": 2, "uberCharge": 1, "20": 1, @@ -24711,7 +24734,9 @@ "Lobbed": 1, "Mines": 1, "lobbed": 1, + "TEAM_RED": 8, "ubercolour": 6, + "TEAM_BLUE": 6, "overlaySprite": 6, "zoomed": 1, "SniperCrouchRedS": 1, @@ -24740,6 +24765,7 @@ "numFlames": 1, "maxIntensity": 1, "FlameS": 1, + "random": 21, "flameArray_x": 1, "flameArray_y": 1, "maxDuration": 1, @@ -24754,7 +24780,45 @@ "sprite_get_number": 1, "*player.team": 2, "dir*1": 2, - "#define": 26, + "__jso_gmt_tuple": 1, + "//Position": 1, + "address": 1, + "table": 1, + "data": 4, + "pos": 2, + "addr_table": 2, + "*argument_count": 1, + "//Build": 1, + "tuple": 1, + "by": 5, + "ca": 1, + "isstr": 1, + "datastr": 1, + "argument_count": 1, + "//Check": 1, + "Unexpected": 18, + "position": 16, + "f": 5, + "end": 11, + "JSON": 5, + "string.": 5, + "Cannot": 5, + "parse": 3, + "expecting": 9, + "digit.": 9, + "e": 4, + "E": 4, + "dot": 1, + "Expected": 6, + "least": 6, + "got": 6, + "lookup.": 4, + "indices": 1, + "Index": 1, + "Recursive": 1, + "abcdef": 1, + "hex": 2, + "num": 1, "__http_init": 3, "global.__HttpClient": 4, "object_add": 1, @@ -24762,20 +24826,19 @@ "__http_split": 3, "text": 19, "delimeter": 7, - "list": 36, + "argument2": 3, "count": 4, "ds_list_create": 5, "ds_list_add": 23, "string_copy": 32, "string_length": 25, - "return": 56, "__http_parse_url": 4, + "url": 62, "ds_map_create": 4, "ds_map_add": 15, "colonPos": 22, "string_char_at": 13, "slashPos": 13, - "real": 14, "queryPos": 12, "ds_map_destroy": 6, "__http_resolve_url": 2, @@ -24813,7 +24876,6 @@ "client": 33, "headers": 11, "parsed": 18, - "show_error": 2, "destroyed": 3, "CR": 10, "chr": 3, @@ -24835,9 +24897,7 @@ "requestUrl": 2, "requestHeaders": 2, "write_string": 9, - "key": 17, "ds_map_find_first": 1, - "is_string": 2, "ds_map_find_next": 1, "socket_send": 1, "__http_parse_header": 3, @@ -24855,7 +24915,6 @@ "c": 20, "read_string": 9, "Reached": 2, - "end": 11, "HTTP": 1, "defines": 1, "sequence": 2, @@ -24883,20 +24942,15 @@ "Line": 1, "consisting": 1, "followed": 1, - "by": 5, "numeric": 1, "its": 1, "associated": 1, "textual": 1, "phrase": 1, - "each": 18, - "element": 8, "separated": 1, "SP": 1, - "characters": 3, "No": 3, "allowed": 1, - "in": 21, "final": 1, "httpVer": 2, "spacePos": 11, @@ -24915,7 +24969,6 @@ "chunked": 4, "Chunked": 1, "let": 1, - "decode": 36, "actualResponseBody": 8, "actualResponseSize": 1, "actualResponseBodySize": 3, @@ -24924,14 +24977,12 @@ "chunk": 12, "size": 7, "extension": 3, - "data": 4, "HEX": 1, "buffer_bytes_left": 6, "chunkSize": 11, "Read": 1, "byte": 2, "We": 1, - "found": 21, "semicolon": 1, "beginning": 1, "skip": 1, @@ -24939,12 +24990,8 @@ "header": 2, "Doesn": 1, "did": 1, - "empty": 13, "something": 1, - "up": 6, "Parsing": 1, - "failed": 56, - "hex": 2, "was": 1, "hexadecimal": 1, "Is": 1, @@ -24958,6 +25005,7 @@ "socket_destroy": 4, "http_new_get": 1, "variable_global_exists": 2, + "instance_create": 20, "http_new_get_ex": 1, "http_step": 1, "client.errored": 3, @@ -24976,9 +25024,47 @@ "http_response_headers": 1, "client.responseHeaders": 1, "http_destroy": 1, + "hashList": 5, + "pluginname": 9, + "pluginhash": 4, + "realhash": 1, + "handle": 1, + "filesize": 1, + "progress": 1, + "tempfile": 1, + "tempdir": 1, + "lastContact": 2, + "isCached": 2, + "isDebug": 2, + "split": 1, + "checkpluginname": 1, + "ds_list_find_index": 1, + "file_exists": 5, + "working_directory": 6, + ".zip": 3, + "ServerPluginsCache": 6, + "@": 5, + ".zip.tmp": 1, + ".tmp": 2, + "ServerPluginsDebug": 1, + "Warning": 2, + "being": 2, + "loaded": 2, + "ServerPluginsDebug.": 2, + "Make": 2, + "sure": 2, + "clients": 1, + "they": 1, + "may": 2, + "unable": 2, + "connect.": 2, + "has": 2, + "you": 1, + "Downloading": 1, + "last_plugin.log": 2, + "plugin.gml": 1, "RoomChangeObserver": 1, "set_little_endian_global": 1, - "file_exists": 5, "file_delete": 3, "backupFilename": 5, "file_find_first": 1, @@ -24992,6 +25078,7 @@ "music": 1, "global.MenuMusic": 3, "sound_add": 3, + "choose": 8, "global.IngameMusic": 3, "global.FaucetMusic": 3, "sound_volume": 3, @@ -25021,6 +25108,8 @@ "global.multiClientLimit": 2, "global.particles": 2, "PARTICLES_NORMAL": 1, + "global.gibLevel": 14, + "global.killCam": 3, "global.monitorSync": 3, "set_synchronization": 2, "global.medicRadar": 2, @@ -25051,6 +25140,7 @@ "unhex": 1, "global.rewardId": 1, "global.mapdownloadLimitBps": 2, + "global.updaterBetaChannel": 3, "isBetaVersion": 1, "global.attemptPortForward": 2, "global.serverPluginList": 3, @@ -25073,14 +25163,19 @@ "ini_key_delete": 1, "global.classlimits": 10, "CLASS_SCOUT": 1, + "CLASS_PYRO": 2, + "CLASS_SOLDIER": 2, "CLASS_HEAVY": 2, "CLASS_DEMOMAN": 1, + "CLASS_MEDIC": 2, + "CLASS_ENGINEER": 3, "CLASS_SPY": 1, + "CLASS_SNIPER": 3, + "CLASS_QUOTE": 3, "//screw": 1, "will": 1, "start": 1, "//map_truefort": 1, - "maps": 37, "//map_2dfort": 1, "//map_conflict": 1, "//map_classicwell": 1, @@ -25140,7 +25235,7 @@ "file_text_close": 1, "load": 1, "ini": 1, - "Maps": 9, + "file": 2, "section": 1, "//Set": 1, "rotation": 1, @@ -25148,6 +25243,7 @@ "*maps": 1, "ds_list_sort": 1, "mod": 1, + "window_set_fullscreen": 2, "global.gg2Font": 2, "font_add_sprite": 2, "gg2FontS": 1, @@ -25203,204 +25299,6 @@ "AudioControlToggleMute": 1, "room_goto_fix": 2, "Menu": 2, - "__jso_gmt_tuple": 1, - "//Position": 1, - "address": 1, - "table": 1, - "pos": 2, - "addr_table": 2, - "*argument_count": 1, - "//Build": 1, - "tuple": 1, - "ca": 1, - "isstr": 1, - "datastr": 1, - "argument_count": 1, - "//Check": 1, - "argument": 10, - "Unexpected": 18, - "position": 16, - "f": 5, - "JSON": 5, - "string.": 5, - "Cannot": 5, - "parse": 3, - "boolean": 3, - "value": 13, - "expecting": 9, - "digit.": 9, - "e": 4, - "E": 4, - "dot": 1, - "an": 24, - "integer": 6, - "Expected": 6, - "least": 6, - "arguments": 26, - "got": 6, - "find": 10, - "lookup.": 4, - "indices": 1, - "nested": 27, - "lists": 6, - "Index": 1, - "overflow": 4, - "Recursive": 1, - "abcdef": 1, - "number": 7, - "num": 1, - "assert_true": 1, - "_assert_error_popup": 2, - "string_repeat": 2, - "_assert_newline": 2, - "assert_false": 1, - "assert_equal": 1, - "//Safe": 1, - "equality": 1, - "check": 1, - "won": 1, - "support": 1, - "instead": 1, - "_assert_debug_value": 1, - "//String": 1, - "os_browser": 1, - "browser_not_a_browser": 1, - "string_replace_all": 1, - "//Numeric": 1, - "GMTuple": 1, - "jso_encode_string": 1, - "encode": 8, - "escape": 2, - "jso_encode_map": 4, - "one": 42, - "key1": 3, - "key2": 3, - "multi": 7, - "jso_encode_list": 3, - "three": 36, - "_jso_decode_string": 5, - "small": 1, - "quick": 2, - "brown": 2, - "fox": 2, - "over": 2, - "lazy": 2, - "dog.": 2, - "simple": 1, - "Waahoo": 1, - "negg": 1, - "mixed": 1, - "_jso_decode_boolean": 2, - "_jso_decode_real": 11, - "standard": 1, - "zero": 4, - "signed": 2, - "decimal": 1, - "digits": 1, - "positive": 7, - "negative": 7, - "exponent": 4, - "_jso_decode_integer": 3, - "_jso_decode_map": 14, - "didn": 14, - "include": 14, - "right": 14, - "prefix": 14, - "#1": 14, - "#2": 14, - "entry": 29, - "pi": 2, - "bool": 2, - "waahoo": 10, - "woohah": 8, - "mix": 4, - "_jso_decode_list": 14, - "woo": 2, - "Empty": 4, - "equal": 20, - "other.": 12, - "junk": 2, - "info": 1, - "taxi": 1, - "An": 4, - "filled": 4, - "map.": 2, - "A": 24, - "B": 18, - "C": 8, - "same": 6, - "content": 4, - "entered": 4, - "different": 12, - "orders": 4, - "D": 1, - "keys": 2, - "values": 4, - "six": 1, - "corresponding": 4, - "types": 4, - "other": 4, - "crash.": 4, - "list.": 2, - "Lists": 4, - "two": 16, - "entries": 2, - "also": 2, - "jso_map_check": 9, - "existing": 9, - "single": 11, - "jso_map_lookup": 3, - "wrong": 10, - "trap": 2, - "jso_map_lookup_type": 3, - "type": 8, - "four": 21, - "inexistent": 11, - "multiple": 20, - "jso_list_check": 8, - "jso_list_lookup": 3, - "jso_list_lookup_type": 3, - "inner": 1, - "indexing": 1, - "bad": 1, - "jso_cleanup_map": 1, - "one_map": 1, - "hashList": 5, - "pluginname": 9, - "pluginhash": 4, - "realhash": 1, - "handle": 1, - "filesize": 1, - "progress": 1, - "tempfile": 1, - "tempdir": 1, - "lastContact": 2, - "isCached": 2, - "isDebug": 2, - "split": 1, - "checkpluginname": 1, - "ds_list_find_index": 1, - ".zip": 3, - "ServerPluginsCache": 6, - "@": 5, - ".zip.tmp": 1, - ".tmp": 2, - "ServerPluginsDebug": 1, - "Warning": 2, - "being": 2, - "loaded": 2, - "ServerPluginsDebug.": 2, - "Make": 2, - "sure": 2, - "clients": 1, - "they": 1, - "may": 2, - "unable": 2, - "connect.": 2, - "you": 1, - "Downloading": 1, - "last_plugin.log": 2, - "plugin.gml": 1, "playerId": 11, "commandLimitRemaining": 4, "variable_local_exists": 4, @@ -25421,15 +25319,18 @@ "PLAYER_CHANGECLASS": 1, "class": 8, "getCharacterObject": 2, + "player.team": 8, "player.object": 12, "SpawnRoom": 2, "lastDamageDealer": 8, "sendEventPlayerDeath": 4, "BID_FAREWELL": 4, "doEventPlayerDeath": 4, + "assistant": 16, "secondToLastDamageDealer": 2, "lastDamageDealer.object": 2, "lastDamageDealer.object.healer": 4, + "FINISHED_OFF": 5, "player.alarm": 4, "<=0)>": 1, "checkClasslimits": 2, @@ -25442,6 +25343,7 @@ "calculate": 1, "which": 1, "Player": 1, + "player.class": 15, "TEAM_SPECTATOR": 1, "newClass": 4, "ServerPlayerChangeteam": 1, @@ -25515,6 +25417,133 @@ "CLIENT_SETTINGS": 2, "mirror": 4, "player.queueJump": 1, + "downloadHandle": 3, + "tmpfile": 3, + "window_oldshowborder": 2, + "window_oldfullscreen": 2, + "timeLeft": 1, + "counter": 1, + "AudioControlPlaySong": 1, + "window_get_showborder": 1, + "window_get_fullscreen": 1, + "window_set_showborder": 1, + "UPDATE_SOURCE_BETA": 1, + "UPDATE_SOURCE": 1, + "temp_directory": 1, + "httpGet": 1, + "httpRequestStatus": 1, + "download": 1, + "isn": 1, + "extract": 1, + "downloaded": 1, + "now.": 1, + "extractzip": 1, + "execute_program": 1, + "game_end": 1, + "victim": 10, + "killer": 11, + "damageSource": 18, + "argument3": 1, + "//*************************************": 6, + "//*": 3, + "Scoring": 1, + "Kill": 1, + "log": 1, + "recordKillInLog": 1, + "victim.stats": 1, + "DEATHS": 1, + "WEAPON_KNIFE": 1, + "WEAPON_BACKSTAB": 1, + "killer.stats": 8, + "STABS": 2, + "killer.roundStats": 8, + "POINTS": 10, + "victim.object.currentWeapon.object_index": 1, + "victim.object.currentWeapon.uberReady": 1, + "BONUS": 2, + "KILLS": 2, + "victim.object.intel": 1, + "DEFENSES": 2, + "recordEventInLog": 1, + "killer.team": 1, + "killer.name": 2, + "assistant.stats": 2, + "ASSISTS": 2, + "assistant.roundStats": 2, + ".5": 2, + "//SPEC": 1, + "victim.object.x": 3, + "victim.object.y": 3, + "Spectator": 1, + "Gibbing": 2, + "randomize": 1, + "victim.object": 2, + "WEAPON_ROCKETLAUNCHER": 1, + "WEAPON_MINEGUN": 1, + "FRAG_BOX": 2, + "WEAPON_REFLECTED_STICKY": 1, + "WEAPON_REFLECTED_ROCKET": 1, + "FINISHED_OFF_GIB": 2, + "GENERATOR_EXPLOSION": 2, + "hasReward": 4, + "repeat": 7, + "createGib": 14, + "PumpkinGib": 1, + "hspeed": 14, + "vspeed": 13, + "Gib": 1, + "BlueClump": 1, + "RedClump": 1, + "blood": 2, + "BloodDrop": 1, + "blood.hspeed": 1, + "blood.vspeed": 1, + "blood.sprite_index": 1, + "PumpkinJuiceS": 1, + "//All": 1, + "Classes": 1, + "gib": 1, + "head": 1, + "hands": 2, + "feet": 1, + "Headgib": 1, + "//Medic": 1, + "specially": 1, + "colored": 1, + "Hand": 3, + "Feet": 1, + "//Class": 1, + "specific": 1, + "gibs": 1, + "Accesory": 5, + "playsound": 2, + "deadbody": 2, + "DeathSnd1": 1, + "DeathSnd2": 1, + "DeadGuy": 1, + "deadbody.sprite_index": 2, + "haxxyStatue": 1, + "deadbody.image_index": 2, + "CHARACTER_ANIMATION_DEAD": 1, + "deadbody.hspeed": 1, + "deadbody.vspeed": 1, + "deadbody.image_xscale": 1, + "global.gg_birthday": 1, + "myHat": 2, + "PartyHat": 1, + "myHat.image_index": 2, + "victim.team": 2, + "global.xmas": 1, + "XmasHat": 1, + "Deathcam": 1, + "KILL_BOX": 1, + "DeathCam": 1, + "DeathCam.killedby": 1, + "DeathCam.name": 1, + "DeathCam.oldxview": 1, + "DeathCam.oldyview": 1, + "DeathCam.lastDamageSource": 1, + "DeathCam.team": 1, "global.levelType": 22, "//global.currLevel": 1, "global.currLevel": 22, @@ -25615,105 +25644,25 @@ }, "Gnuplot": { "set": 98, + "dummy": 3, + "u": 25, + "v": 31, "label": 14, "at": 14, "-": 102, "left": 15, "norotate": 18, "back": 23, - "textcolor": 13, - "rgb": 8, "nopoint": 14, "offset": 25, "character": 22, - "lt": 15, - "style": 7, - "line": 4, - "linetype": 11, - "linecolor": 4, - "linewidth": 11, - "pointtype": 4, - "pointsize": 4, - "default": 4, - "pointinterval": 4, - "noxtics": 2, - "noytics": 2, - "title": 13, - "xlabel": 6, - "xrange": 3, - "[": 18, - "]": 18, - "noreverse": 13, - "nowriteback": 12, - "yrange": 4, - "bmargin": 1, - "unset": 2, - "colorbox": 3, - "plot": 3, - "cos": 9, - "(": 52, - "x": 7, - ")": 52, - "ls": 4, - ".2": 1, - ".4": 1, - ".6": 1, - ".8": 1, - "lc": 3, - "boxwidth": 1, - "absolute": 1, - "fill": 1, - "solid": 1, - "border": 3, - "key": 1, - "inside": 1, - "right": 1, - "top": 1, - "vertical": 2, - "Right": 1, - "noenhanced": 1, - "autotitles": 1, - "nobox": 1, - "histogram": 1, - "clustered": 1, - "gap": 1, - "datafile": 1, - "missing": 1, - "data": 1, - "histograms": 1, - "xtics": 3, - "in": 1, - "scale": 1, - "nomirror": 1, - "rotate": 3, - "by": 3, - "autojustify": 1, - "norangelimit": 3, - "font": 8, - "i": 1, - "using": 2, - "xtic": 1, - "ti": 4, - "col": 4, - "u": 25, - "SHEBANG#!gnuplot": 1, - "reset": 1, - "terminal": 1, - "png": 1, - "output": 1, - "ylabel": 5, - "#set": 2, - "xr": 1, - "yr": 1, - "pt": 2, - "notitle": 15, - "dummy": 3, - "v": 31, "arrow": 7, "from": 7, "to": 7, "head": 7, "nofilled": 7, + "linetype": 11, + "linewidth": 11, "parametric": 3, "view": 3, "samples": 3, @@ -25724,9 +25673,26 @@ "altdiagonal": 2, "bentover": 2, "ztics": 2, + "norangelimit": 3, + "title": 13, + "xlabel": 6, + "font": 8, + "textcolor": 13, + "lt": 15, + "xrange": 3, + "[": 18, + "]": 18, + "noreverse": 13, + "nowriteback": 12, + "ylabel": 5, + "rotate": 3, + "by": 3, + "yrange": 4, "zlabel": 4, "zrange": 2, "sinc": 13, + "(": 52, + ")": 52, "sin": 3, "sqrt": 4, "u**2": 4, @@ -25746,12 +25712,11 @@ "x7": 4, "x8": 4, "x9": 4, - "splot": 3, - "<": 10, "xmin": 3, "xmax": 1, "n": 1, "zbase": 2, + "splot": 3, ".5": 2, "*n": 1, "floor": 3, @@ -25760,31 +25725,95 @@ "%": 2, "u/3.*dx": 1, "/0": 1, + "notitle": 15, + "unset": 2, + "border": 3, "angles": 1, "degrees": 1, "mapping": 1, "spherical": 1, + "noxtics": 2, + "noytics": 2, "noztics": 1, "urange": 1, "vrange": 1, "cblabel": 1, "cbrange": 1, + "colorbox": 3, "user": 1, + "vertical": 2, "origin": 1, "screen": 2, "size": 1, "front": 1, "bdefault": 1, + "cos": 9, "*cos": 1, "*sin": 1, "with": 3, "lines": 2, + "using": 2, "labels": 1, "point": 1, + "pt": 2, "lw": 1, ".1": 1, "tc": 1, - "pal": 1 + "pal": 1, + "SHEBANG#!gnuplot": 1, + "reset": 1, + "terminal": 1, + "png": 1, + "output": 1, + "#set": 2, + "xr": 1, + "yr": 1, + "plot": 3, + "rgb": 8, + "style": 7, + "line": 4, + "linecolor": 4, + "pointtype": 4, + "pointsize": 4, + "default": 4, + "pointinterval": 4, + "bmargin": 1, + "x": 7, + "ls": 4, + ".2": 1, + ".4": 1, + ".6": 1, + ".8": 1, + "lc": 3, + "<": 10, + "boxwidth": 1, + "absolute": 1, + "fill": 1, + "solid": 1, + "key": 1, + "inside": 1, + "right": 1, + "top": 1, + "Right": 1, + "noenhanced": 1, + "autotitles": 1, + "nobox": 1, + "histogram": 1, + "clustered": 1, + "gap": 1, + "datafile": 1, + "missing": 1, + "data": 1, + "histograms": 1, + "xtics": 3, + "in": 1, + "scale": 1, + "nomirror": 1, + "autojustify": 1, + "i": 1, + "xtic": 1, + "ti": 4, + "col": 4 }, "Gosu": { "<%!-->": 1, @@ -25811,34 +25840,21 @@ "user.Department": 1, "package": 2, "example": 2, - "enhancement": 1, - "String": 6, - "function": 11, - "toPerson": 1, - "Person": 7, - "var": 10, - "vals": 4, - "this.split": 1, - "return": 4, - "new": 6, - "[": 4, - "]": 4, - "as": 3, - "int": 2, - "Relationship.valueOf": 2, - "hello": 1, - "print": 3, "uses": 2, "java.util.*": 1, "java.io.File": 1, "class": 1, + "Person": 7, "extends": 1, "Contact": 1, "implements": 1, "IEmailable": 2, + "var": 10, "_name": 4, + "String": 6, "_age": 3, "Integer": 3, + "as": 3, "Age": 1, "_relationship": 2, "Relationship": 3, @@ -25853,6 +25869,7 @@ "BUSINESS_CONTACT": 1, "static": 7, "ALL_PEOPLE": 2, + "new": 6, "HashMap": 1, "": 1, "construct": 1, @@ -25864,13 +25881,16 @@ "property": 2, "get": 1, "Name": 3, + "return": 4, "set": 1, "override": 1, + "function": 11, "getEmailName": 1, "incrementAge": 1, "+": 2, "@Deprecated": 1, "printPersonInfo": 1, + "print": 3, "addPerson": 4, "p": 5, "if": 4, @@ -25878,7 +25898,9 @@ ".Name": 1, "throw": 1, "IllegalArgumentException": 1, + "[": 4, "p.Name": 2, + "]": 4, "addAllPeople": 1, "contacts": 2, "List": 1, @@ -25889,6 +25911,7 @@ "not": 1, "contact.Name": 1, "getAllPeopleOlderThanNOrderedByName": 1, + "int": 2, "allPeople": 1, "ALL_PEOPLE.Values": 3, "allPeople.where": 1, @@ -25908,6 +25931,7 @@ "result.next": 1, "result.getString": 2, "result.getInt": 1, + "Relationship.valueOf": 2, "loadFromFile": 1, "file": 3, "File": 2, @@ -25919,289 +25943,151 @@ "writer": 2, "FileWriter": 1, "PersonCSVTemplate.renderToString": 1, - "PersonCSVTemplate.render": 1 + "PersonCSVTemplate.render": 1, + "enhancement": 1, + "toPerson": 1, + "vals": 4, + "this.split": 1, + "hello": 1 }, "Grammatical Framework": { "-": 594, "(": 256, "c": 73, ")": 256, - "Aarne": 13, - "Ranta": 13, + "Katerina": 2, + "Bohmova": 2, "under": 33, "LGPL": 33, - "abstract": 1, - "Foods": 34, + "resource": 1, + "ResCze": 2, + "open": 23, + "Prelude": 11, + "in": 32, "{": 579, "flags": 32, - "startcat": 1, - "Comment": 31, + "coding": 29, + "utf8": 29, ";": 1399, - "cat": 1, - "Item": 31, - "Kind": 33, + "param": 22, + "Number": 207, + "Sg": 184, + "|": 122, + "Pl": 182, + "Gender": 94, + "Masc": 67, + "Fem": 65, + "Neutr": 21, + "oper": 29, + "NounPhrase": 3, + "Type": 9, + "s": 365, + "Str": 394, + "g": 132, + "n": 206, + "}": 580, + "Noun": 9, + "Adjective": 9, + "det": 86, + "m": 9, + "f": 16, + "ne": 2, + "cn": 11, + "table": 148, + "cn.g": 10, + "+": 480, + "cn.s": 8, + "noun": 51, + "muz": 2, + "muzi": 2, + "adjective": 22, + "msg": 3, + "fsg": 3, + "nsg": 3, + "mpl": 3, + "fpl": 3, + "npl": 3, + "regAdj": 61, + "mlad": 7, + "regnfAdj": 2, + "vynikajici": 7, + "copula": 33, + "#": 14, + "path": 14, + ".": 13, + "prelude": 2, + "Inese": 1, + "Bernsone": 1, + "concrete": 33, + "FoodsLav": 1, + "of": 89, + "Foods": 34, + "lincat": 28, + "Comment": 31, + "SS": 6, "Quality": 34, - "fun": 1, + "Q": 5, + "Defin": 9, + "Kind": 33, + "Item": 31, + "lin": 28, "Pred": 30, + "item": 36, + "quality": 90, + "ss": 13, + "item.s": 24, + "quality.s": 50, + "Q1": 5, + "item.g": 12, + "item.n": 29, + "Ind": 14, "This": 29, "That": 29, "These": 28, "Those": 28, "Mod": 29, + "kind": 115, + "kind.g": 38, + "Def": 21, + "kind.s": 46, "Wine": 29, "Cheese": 29, "Fish": 29, "Pizza": 28, "Very": 29, + "qual": 8, + "q": 10, + "spec": 2, + "qual.s": 8, + "Q2": 3, "Fresh": 29, "Warm": 29, "Italian": 29, + "specAdj": 2, "Expensive": 29, "Delicious": 29, "Boring": 29, - "}": 580, - "Laurette": 2, - "Pretorius": 2, - "Sr": 2, - "&": 2, - "Jr": 2, - "and": 4, - "Ansu": 2, - "Berg": 2, - "concrete": 33, - "FoodsAfr": 1, - "of": 89, - "open": 23, - "Prelude": 11, - "Predef": 3, - "in": 32, - "coding": 29, - "utf8": 29, - "lincat": 28, - "s": 365, - "Str": 394, - "Number": 207, - "n": 206, - "AdjAP": 10, - "lin": 28, - "item": 36, - "quality": 90, - "item.s": 24, - "+": 480, - "quality.s": 50, - "Predic": 3, - "kind": 115, - "kind.s": 46, - "Sg": 184, - "Pl": 182, - "table": 148, - "Attr": 9, - "declNoun_e": 2, - "declNoun_aa": 2, - "declNoun_ss": 2, - "declNoun_s": 2, - "veryAdj": 2, - "regAdj": 61, - "smartAdj_e": 4, - "param": 22, - "|": 122, - "oper": 29, - "Noun": 9, - "operations": 2, - "wyn": 1, - "kaas": 1, - "vis": 1, - "pizza": 1, - "x": 74, - "let": 8, - "v": 6, - "tk": 1, - "last": 3, - "Adjective": 9, - "mkAdj": 27, - "y": 3, - "declAdj_e": 2, - "declAdj_g": 2, - "w": 15, - "init": 4, - "declAdj_oog": 2, - "i": 2, - "a": 57, - "x.s": 8, "case": 44, - "_": 68, - "FoodsAmh": 1, - "Krasimir": 1, - "Angelov": 1, - "FoodsBul": 1, - "Gender": 94, - "Masc": 67, - "Fem": 65, - "Neutr": 21, - "Agr": 3, - "ASg": 23, - "APl": 11, - "g": 132, - "qual": 8, - "item.a": 2, - "qual.s": 8, - "kind.g": 38, - "#": 14, - "path": 14, - ".": 13, - "present": 7, - "Jordi": 2, - "Saludes": 2, - "FoodsCat": 1, - "FoodsI": 6, - "with": 5, - "Syntax": 7, - "SyntaxCat": 2, - "LexFoods": 12, - "LexFoodsCat": 2, - "FoodsChi": 1, - "p": 11, - "quality.p": 2, - "kind.c": 11, - "geKind": 5, - "longQuality": 8, - "mkKind": 2, - "Katerina": 2, - "Bohmova": 2, - "FoodsCze": 1, - "ResCze": 2, - "NounPhrase": 3, - "copula": 33, - "item.n": 29, - "item.g": 12, - "det": 86, - "noun": 51, - "regnfAdj": 2, - "Femke": 1, - "Johansson": 1, - "FoodsDut": 1, - "AForm": 4, - "APred": 8, - "AAttr": 3, - "regNoun": 38, - "f": 16, - "a.s": 8, - "regadj": 6, - "adj": 38, - "noun.s": 7, "man": 10, "men": 10, - "wijn": 3, - "koud": 3, - "duur": 2, - "dure": 2, - "FoodsEng": 1, - "language": 2, - "en_US": 1, - "car": 6, - "cold": 4, - "Julia": 1, - "Hammar": 1, - "FoodsEpo": 1, - "SS": 6, - "ss": 13, - "d": 6, - "cn": 11, - "cn.s": 8, - "vino": 3, - "nova": 3, - "FoodsFin": 1, - "SyntaxFin": 2, - "LexFoodsFin": 2, - "../foods": 1, - "FoodsFre": 1, - "SyntaxFre": 1, - "ParadigmsFre": 1, - "Utt": 4, - "NP": 4, - "CN": 4, - "AP": 4, - "mkUtt": 4, - "mkCl": 4, - "mkNP": 16, - "this_QuantSg": 2, - "that_QuantSg": 2, - "these_QuantPl": 2, - "those_QuantPl": 2, - "mkCN": 20, - "mkAP": 28, - "very_AdA": 4, - "mkN": 46, - "masculine": 4, - "feminine": 2, - "mkA": 47, - "FoodsGer": 1, - "SyntaxGer": 2, - "LexFoodsGer": 2, - "alltenses": 3, - "Dana": 1, - "Dannells": 1, - "Licensed": 1, - "FoodsHeb": 2, - "Species": 8, - "mod": 7, - "Modified": 5, - "sp": 11, - "Indef": 6, - "Def": 21, - "T": 2, - "regAdj2": 3, - "F": 2, - "Type": 9, - "Adj": 4, - "m": 9, - "cn.mod": 2, - "cn.g": 10, - "gvina": 6, - "hagvina": 3, - "gvinot": 6, - "hagvinot": 3, - "defH": 7, - "replaceLastLetter": 7, - "adjective": 22, - "tov": 6, - "tova": 3, - "tovim": 3, - "tovot": 3, - "to": 6, - "c@": 3, - "italki": 3, - "italk": 4, - "Vikash": 1, - "Rauniyar": 1, - "FoodsHin": 2, - "regN": 15, - "lark": 8, - "ms": 4, - "mp": 4, - "acch": 6, - "incomplete": 1, - "this_Det": 2, - "that_Det": 2, - "these_Det": 2, - "those_Det": 2, - "wine_N": 7, - "pizza_N": 7, - "cheese_N": 7, - "fish_N": 8, - "fresh_A": 7, - "warm_A": 8, - "italian_A": 7, - "expensive_A": 7, - "delicious_A": 7, - "boring_A": 7, - "prelude": 2, + "_": 68, + "skaists": 5, + "skaista": 2, + "skaisti": 2, + "skaistas": 2, + "skaistais": 2, + "skaistaa": 2, + "skaistie": 2, + "skaistaas": 2, + "let": 8, + "skaist": 8, + "init": 4, + "a": 57, + "a.s": 8, "Martha": 1, "Dis": 1, "Brandt": 1, "FoodsIce": 1, - "Defin": 9, - "Ind": 14, "the": 7, "word": 3, "is": 6, @@ -26216,6 +26102,7 @@ "defOrInd": 2, "order": 1, "given": 1, + "adj": 38, "forms": 2, "mSg": 1, "fSg": 1, @@ -26244,56 +26131,37 @@ "": 1, "<": 10, "Predef.tk": 2, - "FoodsIta": 1, - "SyntaxIta": 2, - "LexFoodsIta": 2, - "../lib/src/prelude": 1, - "Zofia": 1, - "Stankiewicz": 1, - "FoodsJpn": 1, - "Style": 3, - "AdjUse": 4, - "AdjType": 4, - "quality.t": 3, - "IAdj": 4, - "Plain": 3, - "Polite": 4, - "NaAdj": 4, - "na": 1, - "adjectives": 2, - "have": 2, - "different": 1, - "as": 2, - "attributes": 1, - "predicates": 2, - "phrase": 1, - "types": 1, - "can": 1, - "form": 4, - "without": 1, - "cannot": 1, - "sakana": 6, - "chosenna": 2, - "chosen": 2, - "akai": 2, - "Inese": 1, - "Bernsone": 1, - "FoodsLav": 1, - "Q": 5, - "Q1": 5, - "q": 10, - "spec": 2, - "Q2": 3, - "specAdj": 2, - "skaists": 5, - "skaista": 2, - "skaisti": 2, - "skaistas": 2, - "skaistais": 2, - "skaistaa": 2, - "skaistie": 2, - "skaistaas": 2, - "skaist": 8, + "FoodsOri": 1, + "Aarne": 13, + "Ranta": 13, + "incomplete": 1, + "FoodsI": 6, + "Syntax": 7, + "LexFoods": 12, + "Utt": 4, + "NP": 4, + "CN": 4, + "AP": 4, + "mkUtt": 4, + "mkCl": 4, + "mkNP": 16, + "this_Det": 2, + "that_Det": 2, + "these_Det": 2, + "those_Det": 2, + "mkCN": 20, + "mkAP": 28, + "very_AdA": 4, + "wine_N": 7, + "pizza_N": 7, + "cheese_N": 7, + "fish_N": 8, + "fresh_A": 7, + "warm_A": 8, + "italian_A": 7, + "expensive_A": 7, + "delicious_A": 7, + "boring_A": 7, "John": 1, "J.": 1, "Camilleri": 1, @@ -26337,50 +26205,22 @@ "Sg/Pl": 1, "string": 1, "default": 1, + "to": 6, "gender": 2, "number": 2, - "/GF/lib/src/prelude": 1, - "Nyamsuren": 1, - "Erdenebadrakh": 1, - "FoodsMon": 1, - "prefixSS": 1, - "Dinesh": 1, - "Simkhada": 1, - "FoodsNep": 1, - "adjPl": 2, - "bor": 2, - "FoodsOri": 1, - "FoodsPes": 1, - "optimize": 1, - "noexpand": 1, - "Add": 8, - "prep": 11, - "Indep": 4, - "kind.prep": 1, - "quality.prep": 1, - "at": 3, - "a.prep": 1, - "must": 1, - "be": 1, - "written": 1, - "x4": 2, - "pytzA": 3, - "pytzAy": 1, - "pytzAhA": 3, - "pr": 4, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "mrd": 8, - "tAzh": 8, - "tAzhy": 2, + "Julia": 1, + "Hammar": 1, + "FoodsEpo": 1, + "regNoun": 38, + "d": 6, + "vino": 3, + "nova": 3, "Rami": 1, "Shashati": 1, "FoodsPor": 1, "mkAdjReg": 7, "QualityT": 5, + "mkAdj": 27, "bonito": 2, "bonita": 2, "bonitos": 2, @@ -26390,69 +26230,93 @@ "sozinho": 3, "sozinh": 4, "independent": 1, + "adjectives": 2, "adjUtil": 2, "util": 3, "uteis": 3, "smart": 1, "paradigm": 1, "adjcetives": 1, + "last": 3, "ItemT": 2, "KindT": 4, "num": 6, "noun.g": 3, + "noun.s": 7, "animal": 2, "animais": 2, "gen": 4, "carro": 3, - "Ramona": 1, - "Enache": 1, - "FoodsRon": 1, - "NGender": 6, - "NMasc": 2, - "NFem": 3, - "NNeut": 2, - "mkTab": 5, - "mkNoun": 5, - "getAgrGender": 3, - "acesta": 2, - "aceasta": 2, - "gg": 3, - "det.s": 1, - "peste": 2, - "pesti": 2, - "scump": 2, - "scumpa": 2, - "scumpi": 2, - "scumpe": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "ng": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "FoodsSpa": 1, - "SyntaxSpa": 1, - "StructuralSpa": 1, - "ParadigmsSpa": 1, - "FoodsSwe": 1, - "SyntaxSwe": 2, - "LexFoodsSwe": 2, - "**": 1, - "sv_SE": 1, - "FoodsTha": 1, - "SyntaxTha": 1, - "LexiconTha": 1, - "ParadigmsTha": 1, - "R": 4, - "ResTha": 1, - "R.thword": 4, + "Jordi": 2, + "Saludes": 2, + "instance": 5, + "LexFoodsCat": 2, + "SyntaxCat": 2, + "ParadigmsCat": 1, + "M": 1, + "MorphoCat": 1, + "mkN": 46, + "M.Masc": 2, + "mkA": 47, + "../lib/src/prelude": 1, + "Zofia": 1, + "Stankiewicz": 1, + "FoodsJpn": 1, + "Style": 3, + "AdjUse": 4, + "AdjType": 4, + "quality.t": 3, + "IAdj": 4, + "Plain": 3, + "APred": 8, + "Polite": 4, + "NaAdj": 4, + "p": 11, + "Attr": 9, + "na": 1, + "have": 2, + "different": 1, + "as": 2, + "attributes": 1, + "and": 4, + "predicates": 2, + "phrase": 1, + "types": 1, + "can": 1, + "form": 4, + "without": 1, + "cannot": 1, + "sakana": 6, + "chosenna": 2, + "chosen": 2, + "akai": 2, + "LexFoodsFin": 2, + "SyntaxFin": 2, + "ParadigmsFin": 1, + "Krasimir": 1, + "Angelov": 1, + "FoodsBul": 1, + "Agr": 3, + "ASg": 23, + "APl": 11, + "item.a": 2, + "present": 7, + "FoodsIta": 1, + "with": 5, + "SyntaxIta": 2, + "LexFoodsIta": 2, + "alltenses": 3, + "Laurette": 2, + "Pretorius": 2, + "Sr": 2, + "&": 2, + "Jr": 2, + "Ansu": 2, + "Berg": 2, "FoodsTsn": 1, + "Predef": 3, "NounClass": 28, + "w": 15, "r": 9, "b": 9, "Bool": 5, @@ -26463,6 +26327,7 @@ "quality.p_form": 1, "kind.w": 4, "mkDemPron1": 3, + "kind.c": 11, "kind.q": 4, "mkDemPron2": 3, "mkMod": 2, @@ -26479,6 +26344,9 @@ "P": 4, "V": 4, "ModV": 4, + "R": 4, + "x": 74, + "y": 3, "y.b": 1, "True": 3, "y.w": 2, @@ -26488,6 +26356,7 @@ "smartQualRelPart": 5, "x.t": 10, "smartDescrCop": 5, + "x.s": 8, "False": 3, "mkVeryAdj": 2, "x.p_form": 2, @@ -26496,6 +26365,89 @@ "mkQualRelPart": 2, "mkDescrCop_PName": 2, "mkDescrCop": 2, + "LexFoodsSwe": 2, + "SyntaxSwe": 2, + "ParadigmsSwe": 1, + "FoodsAmh": 1, + "../foods": 1, + "FoodsFre": 1, + "SyntaxFre": 1, + "ParadigmsFre": 1, + "this_QuantSg": 2, + "that_QuantSg": 2, + "these_QuantPl": 2, + "those_QuantPl": 2, + "masculine": 4, + "feminine": 2, + "Ramona": 1, + "Enache": 1, + "FoodsRon": 1, + "NGender": 6, + "NMasc": 2, + "NFem": 3, + "NNeut": 2, + "mkTab": 5, + "mkNoun": 5, + "getAgrGender": 3, + "acesta": 2, + "aceasta": 2, + "gg": 3, + "det.s": 1, + "peste": 2, + "pesti": 2, + "x4": 2, + "scump": 2, + "scumpa": 2, + "scumpi": 2, + "scumpe": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "ng": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "FoodsChi": 1, + "quality.p": 2, + "geKind": 5, + "longQuality": 8, + "mkKind": 2, + "FoodsAfr": 1, + "AdjAP": 10, + "Predic": 3, + "declNoun_e": 2, + "declNoun_aa": 2, + "declNoun_ss": 2, + "declNoun_s": 2, + "veryAdj": 2, + "smartAdj_e": 4, + "operations": 2, + "wyn": 1, + "kaas": 1, + "vis": 1, + "pizza": 1, + "v": 6, + "tk": 1, + "declAdj_e": 2, + "declAdj_g": 2, + "declAdj_oog": 2, + "i": 2, + "Shafqat": 1, + "Virk": 1, + "FoodsUrd": 1, + "coupla": 2, + "FoodsCat": 1, + "Dinesh": 1, + "Simkhada": 1, + "FoodsNep": 1, + "adjPl": 2, + "car": 6, + "bor": 2, + "cold": 4, "FoodsTur": 1, "Case": 10, "softness": 4, @@ -26557,41 +26509,120 @@ "getHarmony": 2, "See": 1, "comment": 1, + "at": 3, "lines": 1, "excluded": 1, "copula.": 1, "base": 4, + "c@": 3, "*": 1, - "Shafqat": 1, - "Virk": 1, - "FoodsUrd": 1, - "coupla": 2, "interface": 1, "N": 4, "A": 6, - "instance": 5, - "ParadigmsCat": 1, - "M": 1, - "MorphoCat": 1, - "M.Masc": 2, - "ParadigmsFin": 1, - "ParadigmsGer": 1, + "FoodsPes": 1, + "optimize": 1, + "noexpand": 1, + "Add": 8, + "prep": 11, + "Indep": 4, + "kind.prep": 1, + "quality.prep": 1, + "regN": 15, + "a.prep": 1, + "must": 1, + "be": 1, + "written": 1, + "pytzA": 3, + "pytzAy": 1, + "pytzAhA": 3, + "pr": 4, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "mrd": 8, + "tAzh": 8, + "tAzhy": 2, "ParadigmsIta": 1, - "ParadigmsSwe": 1, - "resource": 1, - "ne": 2, - "muz": 2, - "muzi": 2, - "msg": 3, - "fsg": 3, - "nsg": 3, - "mpl": 3, - "fpl": 3, - "npl": 3, - "mlad": 7, - "vynikajici": 7 + "Vikash": 1, + "Rauniyar": 1, + "FoodsHin": 2, + "lark": 8, + "ms": 4, + "mp": 4, + "acch": 6, + "FoodsSwe": 1, + "**": 1, + "language": 2, + "sv_SE": 1, + "FoodsCze": 1, + "abstract": 1, + "startcat": 1, + "cat": 1, + "fun": 1, + "FoodsFin": 1, + "Femke": 1, + "Johansson": 1, + "FoodsDut": 1, + "AForm": 4, + "AAttr": 3, + "regadj": 6, + "wijn": 3, + "koud": 3, + "duur": 2, + "dure": 2, + "/GF/lib/src/prelude": 1, + "Nyamsuren": 1, + "Erdenebadrakh": 1, + "FoodsMon": 1, + "prefixSS": 1, + "Dana": 1, + "Dannells": 1, + "Licensed": 1, + "FoodsHeb": 2, + "Species": 8, + "mod": 7, + "Modified": 5, + "sp": 11, + "Indef": 6, + "T": 2, + "regAdj2": 3, + "F": 2, + "Adj": 4, + "cn.mod": 2, + "gvina": 6, + "hagvina": 3, + "gvinot": 6, + "hagvinot": 3, + "defH": 7, + "replaceLastLetter": 7, + "tov": 6, + "tova": 3, + "tovim": 3, + "tovot": 3, + "italki": 3, + "italk": 4, + "FoodsTha": 1, + "SyntaxTha": 1, + "LexiconTha": 1, + "ParadigmsTha": 1, + "ResTha": 1, + "R.thword": 4, + "FoodsGer": 1, + "SyntaxGer": 2, + "LexFoodsGer": 2, + "FoodsSpa": 1, + "SyntaxSpa": 1, + "StructuralSpa": 1, + "ParadigmsSpa": 1, + "ParadigmsGer": 1, + "FoodsEng": 1, + "en_US": 1 }, "Groovy": { + "SHEBANG#!groovy": 2, + "println": 3, "task": 1, "echoDirListViaAntBuilder": 1, "(": 7, @@ -26635,10 +26666,8 @@ "CWD": 1, "projectDir": 1, "removed.": 1, - "println": 3, "it.toString": 1, "-": 1, - "SHEBANG#!groovy": 2, "html": 3, "head": 2, "component": 1, @@ -26647,32 +26676,18 @@ "p": 1 }, "Groovy Server Pages": { - "": 4, - "": 4, - "": 4, - "http": 3, - "equiv=": 3, - "content=": 4, - "": 4, - "Testing": 3, - "with": 3, - "SiteMesh": 2, - "and": 2, - "Resources": 2, - "": 4, - "name=": 1, - "": 2, - "module=": 2, - "": 4, - "": 4, - "": 4, - "": 4, "<%@>": 1, "page": 2, "contentType=": 1, + "": 4, + "": 4, + "": 4, "Using": 1, "directive": 1, "tag": 1, + "": 4, + "": 4, + "": 4, "

": 2, "class=": 2, "": 2, @@ -26683,43 +26698,118 @@ "": 2, "
": 2, "Print": 1, + "": 4, + "": 4, + "": 4, + "http": 3, + "equiv=": 3, + "content=": 4, + "Testing": 3, + "with": 3, + "SiteMesh": 2, + "and": 2, "{": 1, "example": 1, - "}": 1 + "}": 1, + "Resources": 2, + "": 2, + "module=": 2, + "name=": 1 }, "HTML": { "": 2, - "HTML": 2, + "html": 1, "PUBLIC": 2, "W3C": 2, "DTD": 3, - "4": 1, + "XHTML": 1, + "1": 1, "0": 2, - "Frameset": 1, + "Transitional": 1, "EN": 2, "http": 3, "www": 2, "w3": 2, "org": 2, "TR": 2, + "xhtml1": 2, + "transitional": 1, + "dtd": 2, + "": 2, + "xmlns=": 1, + "": 2, + "": 1, + "equiv=": 1, + "content=": 1, + "": 2, + "Related": 2, + "Pages": 2, + "": 2, + "": 1, + "href=": 9, + "rel=": 1, + "type=": 1, + "": 1, + "": 2, + "
": 10, + "class=": 22, + "": 8, + "Main": 1, + "Page": 1, + "": 8, + "&": 3, + "middot": 3, + ";": 3, + "Class": 2, + "Overview": 2, + "Hierarchy": 1, + "All": 1, + "Classes": 1, + "
": 11, + "Here": 1, + "is": 1, + "a": 4, + "list": 1, + "of": 5, + "all": 1, + "related": 1, + "documentation": 1, + "pages": 1, + "": 1, + "": 2, + "id=": 2, + "": 4, + "": 2, + "16": 1, + "The": 2, + "Layout": 1, + "System": 1, + "
": 4, + "": 2, + "src=": 2, + "alt=": 2, + "width=": 1, + "height=": 2, + "target=": 3, + "
": 1, + "Generated": 1, + "with": 1, + "Doxygen": 1, + "": 2, + "": 2, + "HTML": 2, + "4": 1, + "Frameset": 1, "REC": 1, "html40": 1, "frameset": 1, - "dtd": 2, - "": 2, - "": 2, "Common_meta": 1, "(": 14, ")": 14, - "": 2, "Android": 5, "API": 7, "Differences": 2, "Report": 2, - "": 2, - "": 2, - "
": 10, - "class=": 22, "Header": 1, "

": 1, "

": 1, @@ -26749,17 +26839,14 @@ "an": 3, "change": 2, "includes": 1, - "a": 4, "brief": 1, "description": 1, - "of": 5, "explanation": 1, "suggested": 1, "workaround": 1, "where": 1, "available.": 1, "

": 3, - "The": 2, "differences": 2, "described": 1, "this": 2, @@ -26795,12 +26882,8 @@ "about": 1, "SDK": 1, "see": 1, - "": 8, - "href=": 9, - "target=": 3, "product": 1, "site": 1, - "": 8, ".": 1, "if": 4, "no_delta": 1, @@ -26829,61 +26912,7 @@ "PackageAddedLink": 1, "SimpleTableRow": 2, "changed_packages": 2, - "PackageChangedLink": 1, - "
": 11, - "": 2, - "": 2, - "html": 1, - "XHTML": 1, - "1": 1, - "Transitional": 1, - "xhtml1": 2, - "transitional": 1, - "xmlns=": 1, - "": 1, - "equiv=": 1, - "content=": 1, - "Related": 2, - "Pages": 2, - "": 1, - "rel=": 1, - "type=": 1, - "": 1, - "Main": 1, - "Page": 1, - "&": 3, - "middot": 3, - ";": 3, - "Class": 2, - "Overview": 2, - "Hierarchy": 1, - "All": 1, - "Classes": 1, - "Here": 1, - "is": 1, - "list": 1, - "all": 1, - "related": 1, - "documentation": 1, - "pages": 1, - "": 1, - "": 2, - "id=": 2, - "": 4, - "": 2, - "16": 1, - "Layout": 1, - "System": 1, - "
": 4, - "": 2, - "src=": 2, - "alt=": 2, - "width=": 1, - "height=": 2, - "
": 1, - "Generated": 1, - "with": 1, - "Doxygen": 1 + "PackageChangedLink": 1 }, "Haml": { "%": 1, @@ -26895,21 +26924,21 @@ "
": 5, "class=": 5, "

": 3, + "By": 2, "{": 16, - "title": 1, + "fullName": 2, + "author": 2, "}": 16, "

": 3, "body": 3, "
": 5, - "By": 2, - "fullName": 2, - "author": 2, "Comments": 1, "#each": 1, "comments": 1, "

": 1, "

": 1, - "/each": 1 + "/each": 1, + "title": 1 }, "Haskell": { "import": 6, @@ -26925,24 +26954,21 @@ "map": 13, "toUpper": 1, "module": 2, - "Main": 1, - "where": 4, "Sudoku": 9, - "Data.Maybe": 2, - "sudoku": 36, - "[": 4, - "]": 3, - "pPrint": 5, - "+": 2, - "fromMaybe": 1, "solve": 5, "isSolved": 4, + "pPrint": 5, + "where": 4, + "Data.Maybe": 2, "Data.List": 1, "Data.List.Split": 1, "type": 1, + "[": 4, "Int": 1, + "]": 3, "-": 3, "Maybe": 1, + "sudoku": 36, "|": 8, "Just": 1, "otherwise": 2, @@ -26988,7 +27014,10 @@ "True": 1, "String": 1, "intercalate": 2, - "show": 1 + "show": 1, + "Main": 1, + "+": 2, + "fromMaybe": 1 }, "Hy": { ";": 4, @@ -27094,26 +27123,12 @@ "return": 5, "alog": 1, "end": 5, - "MODULE": 1, - "mg_analysis": 1, - "DESCRIPTION": 1, - "Tools": 1, - "for": 2, - "analysis": 1, - "VERSION": 1, - "SOURCE": 1, - "mgalloy": 1, - "BUILD_DATE": 1, - "January": 1, - "FUNCTION": 2, - "MG_ARRAY_EQUAL": 1, - "KEYWORDS": 1, - "MG_TOTAL": 1, "Find": 1, "greatest": 1, "common": 1, "denominator": 1, "GCD": 1, + "for": 2, "two": 1, "positive": 2, "integers.": 1, @@ -27182,16 +27197,36 @@ "gt": 2, "nposInd": 2, "L": 1, - "example": 1 + "example": 1, + "MODULE": 1, + "mg_analysis": 1, + "DESCRIPTION": 1, + "Tools": 1, + "analysis": 1, + "VERSION": 1, + "SOURCE": 1, + "mgalloy": 1, + "BUILD_DATE": 1, + "January": 1, + "FUNCTION": 2, + "MG_ARRAY_EQUAL": 1, + "KEYWORDS": 1, + "MG_TOTAL": 1 }, "INI": { + "[": 2, + "user": 1, + "]": 2, + "name": 1, + "Josh": 1, + "Peek": 1, + "email": 1, + "josh@github.com": 1, ";": 1, "editorconfig.org": 1, "root": 1, "true": 3, - "[": 2, "*": 1, - "]": 2, "indent_style": 1, "space": 1, "indent_size": 1, @@ -27201,13 +27236,7 @@ "utf": 1, "-": 1, "trim_trailing_whitespace": 1, - "insert_final_newline": 1, - "user": 1, - "name": 1, - "Josh": 1, - "Peek": 1, - "email": 1, - "josh@github.com": 1 + "insert_final_newline": 1 }, "Idris": { "module": 1, @@ -27387,13 +27416,34 @@ }, "JSON": { "{": 73, + "}": 73, "[": 17, "]": 17, - "}": 73, "true": 3 }, "JSON5": { "{": 6, + "name": 1, + "version": 1, + "description": 1, + "keywords": 1, + "[": 3, + "]": 3, + "author": 1, + "contributors": 1, + "main": 1, + "bin": 1, + "dependencies": 1, + "}": 6, + "devDependencies": 1, + "mocha": 1, + "scripts": 1, + "build": 1, + "test": 1, + "homepage": 1, + "repository": 1, + "type": 1, + "url": 1, "foo": 1, "while": 1, "true": 1, @@ -27413,28 +27463,7 @@ "and": 1, "beyond": 1, "finally": 1, - "oh": 1, - "[": 3, - "]": 3, - "}": 6, - "name": 1, - "version": 1, - "description": 1, - "keywords": 1, - "author": 1, - "contributors": 1, - "main": 1, - "bin": 1, - "dependencies": 1, - "devDependencies": 1, - "mocha": 1, - "scripts": 1, - "build": 1, - "test": 1, - "homepage": 1, - "repository": 1, - "type": 1, - "url": 1 + "oh": 1 }, "JSONLD": { "{": 7, @@ -27501,548 +27530,49 @@ }, "Java": { "package": 6, - "clojure.asm": 1, + "nokogiri": 6, ";": 891, "import": 66, - "java.lang.reflect.Constructor": 1, - "java.lang.reflect.Method": 1, - "public": 214, - "class": 12, - "Type": 42, - "{": 434, - "final": 78, - "static": 141, - "int": 62, - "VOID": 5, - "BOOLEAN": 6, - "CHAR": 6, - "BYTE": 6, - "SHORT": 6, - "INT": 6, - "FLOAT": 6, - "LONG": 7, - "DOUBLE": 7, - "ARRAY": 6, - "OBJECT": 7, - "VOID_TYPE": 3, - "new": 131, - "(": 1097, - ")": 1097, - "BOOLEAN_TYPE": 3, - "CHAR_TYPE": 3, - "BYTE_TYPE": 3, - "SHORT_TYPE": 3, - "INT_TYPE": 3, - "FLOAT_TYPE": 3, - "LONG_TYPE": 3, - "DOUBLE_TYPE": 3, - "private": 77, - "sort": 18, - "char": 13, - "[": 54, - "]": 54, - "buf": 43, - "off": 25, - "len": 24, - "this.sort": 2, - "this.len": 2, - "}": 434, - "this.buf": 2, - "this.off": 1, - "getType": 10, - "String": 33, - "typeDescriptor": 1, - "return": 267, - "typeDescriptor.toCharArray": 1, - "Class": 10, - "c": 21, - "if": 116, - "c.isPrimitive": 2, - "Integer.TYPE": 2, - "else": 33, - "Void.TYPE": 3, - "Boolean.TYPE": 2, - "Byte.TYPE": 2, - "Character.TYPE": 2, - "Short.TYPE": 2, - "Double.TYPE": 2, - "Float.TYPE": 2, - "getDescriptor": 15, - "getObjectType": 1, - "name": 10, - "l": 5, - "name.length": 2, - "+": 83, - "name.getChars": 1, - "getArgumentTypes": 2, - "methodDescriptor": 2, - "methodDescriptor.toCharArray": 2, - "size": 16, - "while": 10, - "true": 21, - "car": 18, - "break": 4, - "args": 6, - ".len": 1, - "Method": 3, - "method": 2, - "classes": 2, - "method.getParameterTypes": 1, - "types": 3, - "classes.length": 2, - "for": 16, - "i": 54, - "-": 15, - "getReturnType": 2, - "methodDescriptor.indexOf": 1, - "method.getReturnType": 1, - "switch": 6, - "case": 56, - "//": 16, - "default": 6, - "getSort": 1, - "getDimensions": 3, - "getElementType": 2, - "getClassName": 1, - "StringBuffer": 14, - "b": 7, - ".getClassName": 1, - "b.append": 1, - "b.toString": 1, - ".replace": 2, - "getInternalName": 2, - "buf.toString": 4, - "getMethodDescriptor": 2, - "returnType": 1, - "argumentTypes": 2, - "buf.append": 21, - "<": 13, - "argumentTypes.length": 1, - ".getDescriptor": 1, - "returnType.getDescriptor": 1, - "void": 25, - "c.getName": 1, - "getConstructorDescriptor": 1, - "Constructor": 1, - "parameters": 4, - "c.getParameterTypes": 1, - "parameters.length": 2, - ".toString": 1, - "m": 1, - "m.getParameterTypes": 1, - "m.getReturnType": 1, - "d": 10, - "d.isPrimitive": 1, - "d.isArray": 1, - "d.getComponentType": 1, - "d.getName": 1, - "name.charAt": 1, - "getSize": 1, - "||": 8, - "getOpcode": 1, - "opcode": 17, - "Opcodes.IALOAD": 1, - "Opcodes.IASTORE": 1, - "boolean": 36, - "equals": 2, - "Object": 31, - "o": 12, - "this": 16, - "instanceof": 19, - "false": 12, - "t": 6, - "t.sort": 1, - "Type.OBJECT": 2, - "Type.ARRAY": 2, - "t.len": 1, - "j": 9, - "t.off": 1, - "end": 4, - "t.buf": 1, - "hashCode": 1, - "hc": 4, - "*": 2, - "toString": 1, - "clojure.lang": 1, - "java.lang.ref.Reference": 1, - "java.math.BigInteger": 1, - "java.util.Map": 3, - "java.util.concurrent.ConcurrentHashMap": 1, - "java.lang.ref.SoftReference": 1, - "java.lang.ref.ReferenceQueue": 1, - "Util": 1, - "equiv": 17, - "k1": 40, - "k2": 38, - "null": 80, - "Number": 9, - "&&": 6, - "Numbers.equal": 1, - "IPersistentCollection": 5, - "pcequiv": 2, - "k1.equals": 2, - "long": 5, - "double": 4, - "c1": 2, - "c2": 2, - ".equiv": 2, - "identical": 1, - "classOf": 1, - "x": 8, - "x.getClass": 1, - "compare": 1, - "Numbers.compare": 1, - "Comparable": 1, - ".compareTo": 1, - "hash": 3, - "o.hashCode": 2, - "hasheq": 1, - "Numbers.hasheq": 1, - "IHashEq": 2, - ".hasheq": 1, - "hashCombine": 1, - "seed": 5, - "//a": 1, - "la": 1, - "boost": 1, - "e3779b9": 1, - "<<": 1, - "isPrimitive": 1, - "isInteger": 1, - "Integer": 2, - "Long": 1, - "BigInt": 1, - "BigInteger": 1, - "ret1": 2, - "ret": 4, - "nil": 2, - "ISeq": 2, - "": 1, - "clearCache": 1, - "ReferenceQueue": 1, - "rq": 1, - "ConcurrentHashMap": 1, - "K": 2, - "Reference": 3, - "": 3, - "cache": 1, - "//cleanup": 1, - "any": 1, - "dead": 1, - "entries": 1, - "rq.poll": 2, - "Map.Entry": 1, - "e": 31, - "cache.entrySet": 1, - "val": 3, - "e.getValue": 1, - "val.get": 1, - "cache.remove": 1, - "e.getKey": 1, - "RuntimeException": 5, - "runtimeException": 2, - "s": 10, - "Throwable": 4, - "sneakyThrow": 1, - "throw": 9, - "NullPointerException": 3, - "Util.": 1, - "": 1, - "sneakyThrow0": 2, - "@SuppressWarnings": 1, - "": 1, - "extends": 10, - "throws": 26, - "T": 2, - "nokogiri.internals": 1, - "nokogiri.internals.NokogiriHelpers.getNokogiriClass": 1, - "nokogiri.internals.NokogiriHelpers.isNamespace": 1, - "nokogiri.internals.NokogiriHelpers.stringOrNil": 1, - "nokogiri.HtmlDocument": 1, - "nokogiri.NokogiriService": 1, - "nokogiri.XmlDocument": 1, - "org.apache.xerces.parsers.DOMParser": 1, - "org.apache.xerces.xni.Augmentations": 1, - "org.apache.xerces.xni.QName": 1, - "org.apache.xerces.xni.XMLAttributes": 1, - "org.apache.xerces.xni.XNIException": 1, - "org.apache.xerces.xni.parser.XMLDocumentFilter": 1, - "org.apache.xerces.xni.parser.XMLParserConfiguration": 1, - "org.cyberneko.html.HTMLConfiguration": 1, - "org.cyberneko.html.filters.DefaultFilter": 1, - "org.jruby.Ruby": 2, - "org.jruby.RubyClass": 2, - "org.jruby.runtime.ThreadContext": 1, - "org.jruby.runtime.builtin.IRubyObject": 2, - "org.w3c.dom.Document": 1, - "org.w3c.dom.NamedNodeMap": 1, - "org.w3c.dom.NodeList": 1, - "HtmlDomParserContext": 3, - "XmlDomParserContext": 1, - "Ruby": 43, - "runtime": 88, - "IRubyObject": 35, - "options": 4, - "super": 7, - "encoding": 2, - "@Override": 6, - "protected": 8, - "initErrorHandler": 1, - "options.strict": 1, - "errorHandler": 6, - "NokogiriStrictErrorHandler": 1, - "options.noError": 2, - "options.noWarning": 2, - "NokogiriNonStrictErrorHandler4NekoHtml": 1, - "initParser": 1, - "XMLParserConfiguration": 1, - "config": 2, - "HTMLConfiguration": 1, - "XMLDocumentFilter": 3, - "removeNSAttrsFilter": 2, - "RemoveNSAttrsFilter": 2, - "elementValidityCheckFilter": 3, - "ElementValidityCheckFilter": 3, - "//XMLDocumentFilter": 1, - "filters": 3, - "config.setErrorHandler": 1, - "this.errorHandler": 2, - "parser": 1, - "DOMParser": 1, - "setProperty": 4, - "java_encoding": 2, - "setFeature": 4, - "enableDocumentFragment": 1, - "XmlDocument": 8, - "getNewEmptyDocument": 1, - "ThreadContext": 2, - "context": 8, - "XmlDocument.rbNew": 1, - "getNokogiriClass": 1, - "context.getRuntime": 3, - "wrapDocument": 1, - "RubyClass": 92, - "klazz": 107, - "Document": 2, - "document": 5, - "HtmlDocument": 7, - "htmlDocument": 6, - "NokogiriService.HTML_DOCUMENT_ALLOCATOR.allocate": 1, - "htmlDocument.setDocumentNode": 1, - "ruby_encoding.isNil": 1, - "detected_encoding": 2, - "detected_encoding.isNil": 1, - "ruby_encoding": 3, - "charset": 2, - "tryGetCharsetFromHtml5MetaTag": 2, - "stringOrNil": 1, - "htmlDocument.setEncoding": 1, - "htmlDocument.setParsedEncoding": 1, - ".equalsIgnoreCase": 5, - "document.getDocumentElement": 2, - ".getNodeName": 4, - "NodeList": 2, - "list": 1, - ".getChildNodes": 2, - "list.getLength": 1, - "list.item": 2, - "headers": 1, - "headers.getLength": 1, - "headers.item": 2, - "NamedNodeMap": 1, - "nodeMap": 1, - ".getAttributes": 1, - "k": 5, - "nodeMap.getLength": 1, - "nodeMap.item": 2, - ".getNodeValue": 1, - "DefaultFilter": 2, - "startElement": 2, - "QName": 2, - "element": 3, - "XMLAttributes": 2, - "attrs": 4, - "Augmentations": 2, - "augs": 4, - "XNIException": 2, - "attrs.getLength": 1, - "isNamespace": 1, - "attrs.getQName": 1, - "attrs.removeAttributeAt": 1, - "element.uri": 1, - "super.startElement": 2, - "NokogiriErrorHandler": 2, - "element_names": 3, - "g": 1, - "r": 1, - "w": 1, - "y": 1, - "z": 1, - "isValid": 2, - "testee": 1, - "testee.toCharArray": 1, - "index": 4, - ".length": 1, - "testee.equals": 1, - "name.rawname": 2, - "errorHandler.getErrors": 1, - ".add": 1, - "Exception": 1, - "hudson.model": 1, - "hudson.ExtensionListView": 1, - "hudson.Functions": 1, - "hudson.Platform": 1, - "hudson.PluginManager": 1, - "hudson.cli.declarative.CLIResolver": 1, - "hudson.model.listeners.ItemListener": 1, - "hudson.slaves.ComputerListener": 1, - "hudson.util.CopyOnWriteList": 1, - "hudson.util.FormValidation": 1, - "jenkins.model.Jenkins": 1, - "org.jvnet.hudson.reactor.ReactorException": 1, - "org.kohsuke.stapler.QueryParameter": 1, - "org.kohsuke.stapler.Stapler": 1, - "org.kohsuke.stapler.StaplerRequest": 1, - "org.kohsuke.stapler.StaplerResponse": 1, - "javax.servlet.ServletContext": 1, - "javax.servlet.ServletException": 1, - "java.io.File": 1, - "java.io.IOException": 10, - "java.text.NumberFormat": 1, - "java.text.ParseException": 1, "java.util.Collections": 2, - "java.util.List": 1, - "hudson.Util.fixEmpty": 1, - "Hudson": 5, - "Jenkins": 2, - "transient": 2, - "CopyOnWriteList": 4, - "": 2, - "itemListeners": 2, - "ExtensionListView.createCopyOnWriteList": 2, - "ItemListener.class": 1, - "": 2, - "computerListeners": 2, - "ComputerListener.class": 1, - "@CLIResolver": 1, - "getInstance": 2, - "Jenkins.getInstance": 2, - "File": 2, - "root": 6, - "ServletContext": 2, - "IOException": 8, - "InterruptedException": 2, - "ReactorException": 2, - "PluginManager": 1, - "pluginManager": 2, - "getJobListeners": 1, - "getComputerListeners": 1, - "Slave": 3, - "getSlave": 1, - "Node": 1, - "n": 3, - "getNode": 1, - "List": 3, - "": 2, - "getSlaves": 1, - "slaves": 3, - "setSlaves": 1, - "setNodes": 1, - "TopLevelItem": 3, - "getJob": 1, - "getItem": 1, - "getJobCaseInsensitive": 1, - "match": 2, - "Functions.toEmailSafeString": 2, - "item": 2, - "getItems": 1, - "item.getName": 1, - "synchronized": 1, - "doQuietDown": 2, - "StaplerResponse": 4, - "rsp": 6, - "ServletException": 3, - ".generateResponse": 2, - "doLogRss": 1, - "StaplerRequest": 4, - "req": 6, - "qs": 3, - "req.getQueryString": 1, - "rsp.sendRedirect2": 1, - "doFieldCheck": 3, - "fixEmpty": 8, - "req.getParameter": 4, - "FormValidation": 2, - "@QueryParameter": 4, - "value": 11, - "type": 3, - "errorText": 3, - "warningText": 3, - "FormValidation.error": 4, - "FormValidation.warning": 1, - "try": 26, - "type.equalsIgnoreCase": 2, - "NumberFormat.getInstance": 2, - ".parse": 2, - ".floatValue": 1, - "<=>": 1, - "0": 1, - "error": 1, - "Messages": 1, - "Hudson_NotAPositiveNumber": 1, - "equalsIgnoreCase": 1, - "number": 1, - "negative": 1, - "NumberFormat": 1, - "parse": 1, - "floatValue": 1, - "Messages.Hudson_NotANegativeNumber": 1, - "catch": 27, - "ParseException": 1, - "Messages.Hudson_NotANumber": 1, - "FormValidation.ok": 1, - "isWindows": 1, - "File.pathSeparatorChar": 1, - "isDarwin": 1, - "Platform.isDarwin": 1, - "adminCheck": 3, - "Stapler.getCurrentRequest": 1, - "Stapler.getCurrentResponse": 1, - "isAdmin": 4, - "rsp.sendError": 1, - "StaplerResponse.SC_FORBIDDEN": 1, - ".getACL": 1, - ".hasPermission": 1, - "ADMINISTER": 1, - "XSTREAM.alias": 1, - "Hudson.class": 1, - "MasterComputer": 1, - "Jenkins.MasterComputer": 1, - "CloudList": 3, - "Jenkins.CloudList": 1, - "h": 2, - "needed": 1, - "XStream": 1, - "deserialization": 1, - "nokogiri": 6, "java.util.HashMap": 1, + "java.util.Map": 3, + "org.jruby.Ruby": 2, "org.jruby.RubyArray": 1, + "org.jruby.RubyClass": 2, "org.jruby.RubyFixnum": 1, "org.jruby.RubyModule": 1, "org.jruby.runtime.ObjectAllocator": 1, + "org.jruby.runtime.builtin.IRubyObject": 2, "org.jruby.runtime.load.BasicLibraryService": 1, + "public": 214, + "class": 12, "NokogiriService": 1, "implements": 3, "BasicLibraryService": 1, + "{": 434, + "static": 141, + "final": 78, + "String": 33, "nokogiriClassCacheGvarName": 1, "Map": 1, "": 2, + "RubyClass": 92, "nokogiriClassCache": 2, + "boolean": 36, "basicLoad": 1, + "(": 1097, + "Ruby": 43, "ruby": 25, + ")": 1097, "init": 2, "createNokogiriClassCahce": 2, + "return": 267, + "true": 21, + "}": 434, + "private": 77, + "void": 25, "Collections.synchronizedMap": 1, + "new": 131, "HashMap": 1, "nokogiriClassCache.put": 26, "ruby.getClassFromPath": 26, @@ -28091,6 +27621,7 @@ "attrDecl.defineAnnotatedMethods": 1, "XmlAttributeDecl.class": 1, "characterData": 3, + "null": 80, "comment": 1, "XML_COMMENT_ALLOCATOR": 2, "comment.defineAnnotatedMethods": 1, @@ -28111,6 +27642,7 @@ "XML_DOCUMENT_FRAGMENT_ALLOCATOR": 2, "documentFragment.defineAnnotatedMethods": 1, "XmlDocumentFragment.class": 1, + "element": 3, "XML_ELEMENT_ALLOCATOR": 2, "element.defineAnnotatedMethods": 1, "XmlElement.class": 1, @@ -28182,6 +27714,8 @@ "//RubyModule": 1, "htmlDoc": 1, "html.defineOrGetClassUnder": 1, + "document": 5, + "htmlDocument": 6, "HTML_DOCUMENT_ALLOCATOR": 2, "htmlDocument.defineAnnotatedMethods": 1, "HtmlDocument.class": 1, @@ -28206,12 +27740,20 @@ "XsltStylesheet.class": 2, "xsltModule.defineAnnotatedMethod": 1, "ObjectAllocator": 60, + "IRubyObject": 35, "allocate": 30, + "runtime": 88, + "klazz": 107, "EncodingHandler": 1, + "HtmlDocument": 7, + "if": 116, + "try": 26, "clone": 47, "htmlDocument.clone": 1, "clone.setMetaClass": 23, + "catch": 27, "CloneNotSupportedException": 23, + "e": 31, "HtmlSaxParserContext": 5, "htmlSaxParserContext.clone": 1, "HtmlElementDescription": 1, @@ -28225,6 +27767,7 @@ "XmlComment": 5, "xmlComment": 3, "xmlComment.clone": 1, + "XmlDocument": 8, "xmlDocument.clone": 1, "XmlDocumentFragment": 5, "xmlDocumentFragment": 3, @@ -28259,6 +27802,7 @@ "xmlReader.clone": 1, "XmlAttributeDecl": 1, "XmlEntityDecl": 1, + "throw": 9, "runtime.newNotImplementedError": 1, "XmlRelaxng": 5, "xmlRelaxng": 3, @@ -28280,6 +27824,491 @@ "XsltStylesheet": 4, "xsltStylesheet": 3, "xsltStylesheet.clone": 1, + "clojure.asm": 1, + "java.lang.reflect.Constructor": 1, + "java.lang.reflect.Method": 1, + "Type": 42, + "int": 62, + "VOID": 5, + "BOOLEAN": 6, + "CHAR": 6, + "BYTE": 6, + "SHORT": 6, + "INT": 6, + "FLOAT": 6, + "LONG": 7, + "DOUBLE": 7, + "ARRAY": 6, + "OBJECT": 7, + "VOID_TYPE": 3, + "BOOLEAN_TYPE": 3, + "CHAR_TYPE": 3, + "BYTE_TYPE": 3, + "SHORT_TYPE": 3, + "INT_TYPE": 3, + "FLOAT_TYPE": 3, + "LONG_TYPE": 3, + "DOUBLE_TYPE": 3, + "sort": 18, + "char": 13, + "[": 54, + "]": 54, + "buf": 43, + "off": 25, + "len": 24, + "this.sort": 2, + "this.len": 2, + "this.buf": 2, + "this.off": 1, + "getType": 10, + "typeDescriptor": 1, + "typeDescriptor.toCharArray": 1, + "Class": 10, + "c": 21, + "c.isPrimitive": 2, + "Integer.TYPE": 2, + "else": 33, + "Void.TYPE": 3, + "Boolean.TYPE": 2, + "Byte.TYPE": 2, + "Character.TYPE": 2, + "Short.TYPE": 2, + "Double.TYPE": 2, + "Float.TYPE": 2, + "getDescriptor": 15, + "getObjectType": 1, + "name": 10, + "l": 5, + "name.length": 2, + "+": 83, + "name.getChars": 1, + "getArgumentTypes": 2, + "methodDescriptor": 2, + "methodDescriptor.toCharArray": 2, + "size": 16, + "while": 10, + "car": 18, + "break": 4, + "args": 6, + ".len": 1, + "Method": 3, + "method": 2, + "classes": 2, + "method.getParameterTypes": 1, + "types": 3, + "classes.length": 2, + "for": 16, + "i": 54, + "-": 15, + "getReturnType": 2, + "methodDescriptor.indexOf": 1, + "method.getReturnType": 1, + "switch": 6, + "case": 56, + "//": 16, + "default": 6, + "getSort": 1, + "getDimensions": 3, + "getElementType": 2, + "getClassName": 1, + "StringBuffer": 14, + "b": 7, + ".getClassName": 1, + "b.append": 1, + "b.toString": 1, + ".replace": 2, + "getInternalName": 2, + "buf.toString": 4, + "getMethodDescriptor": 2, + "returnType": 1, + "argumentTypes": 2, + "buf.append": 21, + "<": 13, + "argumentTypes.length": 1, + ".getDescriptor": 1, + "returnType.getDescriptor": 1, + "c.getName": 1, + "getConstructorDescriptor": 1, + "Constructor": 1, + "parameters": 4, + "c.getParameterTypes": 1, + "parameters.length": 2, + ".toString": 1, + "m": 1, + "m.getParameterTypes": 1, + "m.getReturnType": 1, + "d": 10, + "d.isPrimitive": 1, + "d.isArray": 1, + "d.getComponentType": 1, + "d.getName": 1, + "name.charAt": 1, + "getSize": 1, + "||": 8, + "getOpcode": 1, + "opcode": 17, + "Opcodes.IALOAD": 1, + "Opcodes.IASTORE": 1, + "equals": 2, + "Object": 31, + "o": 12, + "this": 16, + "instanceof": 19, + "false": 12, + "t": 6, + "t.sort": 1, + "Type.OBJECT": 2, + "Type.ARRAY": 2, + "t.len": 1, + "j": 9, + "t.off": 1, + "end": 4, + "t.buf": 1, + "hashCode": 1, + "hc": 4, + "*": 2, + "toString": 1, + "hudson.model": 1, + "hudson.ExtensionListView": 1, + "hudson.Functions": 1, + "hudson.Platform": 1, + "hudson.PluginManager": 1, + "hudson.cli.declarative.CLIResolver": 1, + "hudson.model.listeners.ItemListener": 1, + "hudson.slaves.ComputerListener": 1, + "hudson.util.CopyOnWriteList": 1, + "hudson.util.FormValidation": 1, + "jenkins.model.Jenkins": 1, + "org.jvnet.hudson.reactor.ReactorException": 1, + "org.kohsuke.stapler.QueryParameter": 1, + "org.kohsuke.stapler.Stapler": 1, + "org.kohsuke.stapler.StaplerRequest": 1, + "org.kohsuke.stapler.StaplerResponse": 1, + "javax.servlet.ServletContext": 1, + "javax.servlet.ServletException": 1, + "java.io.File": 1, + "java.io.IOException": 10, + "java.text.NumberFormat": 1, + "java.text.ParseException": 1, + "java.util.List": 1, + "hudson.Util.fixEmpty": 1, + "Hudson": 5, + "extends": 10, + "Jenkins": 2, + "transient": 2, + "CopyOnWriteList": 4, + "": 2, + "itemListeners": 2, + "ExtensionListView.createCopyOnWriteList": 2, + "ItemListener.class": 1, + "": 2, + "computerListeners": 2, + "ComputerListener.class": 1, + "@CLIResolver": 1, + "getInstance": 2, + "Jenkins.getInstance": 2, + "File": 2, + "root": 6, + "ServletContext": 2, + "context": 8, + "throws": 26, + "IOException": 8, + "InterruptedException": 2, + "ReactorException": 2, + "PluginManager": 1, + "pluginManager": 2, + "super": 7, + "getJobListeners": 1, + "getComputerListeners": 1, + "Slave": 3, + "getSlave": 1, + "Node": 1, + "n": 3, + "getNode": 1, + "List": 3, + "": 2, + "getSlaves": 1, + "slaves": 3, + "setSlaves": 1, + "setNodes": 1, + "TopLevelItem": 3, + "getJob": 1, + "getItem": 1, + "getJobCaseInsensitive": 1, + "match": 2, + "Functions.toEmailSafeString": 2, + "item": 2, + "getItems": 1, + "item.getName": 1, + ".equalsIgnoreCase": 5, + "synchronized": 1, + "doQuietDown": 2, + "StaplerResponse": 4, + "rsp": 6, + "ServletException": 3, + ".generateResponse": 2, + "doLogRss": 1, + "StaplerRequest": 4, + "req": 6, + "qs": 3, + "req.getQueryString": 1, + "rsp.sendRedirect2": 1, + "doFieldCheck": 3, + "fixEmpty": 8, + "req.getParameter": 4, + "FormValidation": 2, + "@QueryParameter": 4, + "value": 11, + "type": 3, + "errorText": 3, + "warningText": 3, + "FormValidation.error": 4, + "FormValidation.warning": 1, + "type.equalsIgnoreCase": 2, + "NumberFormat.getInstance": 2, + ".parse": 2, + ".floatValue": 1, + "<=>": 1, + "0": 1, + "error": 1, + "Messages": 1, + "Hudson_NotAPositiveNumber": 1, + "equalsIgnoreCase": 1, + "number": 1, + "negative": 1, + "NumberFormat": 1, + "parse": 1, + "floatValue": 1, + "Messages.Hudson_NotANegativeNumber": 1, + "ParseException": 1, + "Messages.Hudson_NotANumber": 1, + "FormValidation.ok": 1, + "isWindows": 1, + "File.pathSeparatorChar": 1, + "isDarwin": 1, + "Platform.isDarwin": 1, + "adminCheck": 3, + "Stapler.getCurrentRequest": 1, + "Stapler.getCurrentResponse": 1, + "isAdmin": 4, + "rsp.sendError": 1, + "StaplerResponse.SC_FORBIDDEN": 1, + ".getACL": 1, + ".hasPermission": 1, + "ADMINISTER": 1, + "XSTREAM.alias": 1, + "Hudson.class": 1, + "MasterComputer": 1, + "Jenkins.MasterComputer": 1, + "CloudList": 3, + "Jenkins.CloudList": 1, + "h": 2, + "needed": 1, + "XStream": 1, + "deserialization": 1, + "clojure.lang": 1, + "java.lang.ref.Reference": 1, + "java.math.BigInteger": 1, + "java.util.concurrent.ConcurrentHashMap": 1, + "java.lang.ref.SoftReference": 1, + "java.lang.ref.ReferenceQueue": 1, + "Util": 1, + "equiv": 17, + "k1": 40, + "k2": 38, + "Number": 9, + "&&": 6, + "Numbers.equal": 1, + "IPersistentCollection": 5, + "pcequiv": 2, + "k1.equals": 2, + "long": 5, + "double": 4, + "c1": 2, + "c2": 2, + ".equiv": 2, + "identical": 1, + "classOf": 1, + "x": 8, + "x.getClass": 1, + "compare": 1, + "Numbers.compare": 1, + "Comparable": 1, + ".compareTo": 1, + "hash": 3, + "o.hashCode": 2, + "hasheq": 1, + "Numbers.hasheq": 1, + "IHashEq": 2, + ".hasheq": 1, + "hashCombine": 1, + "seed": 5, + "//a": 1, + "la": 1, + "boost": 1, + "e3779b9": 1, + "<<": 1, + "isPrimitive": 1, + "isInteger": 1, + "Integer": 2, + "Long": 1, + "BigInt": 1, + "BigInteger": 1, + "ret1": 2, + "ret": 4, + "nil": 2, + "ISeq": 2, + "": 1, + "clearCache": 1, + "ReferenceQueue": 1, + "rq": 1, + "ConcurrentHashMap": 1, + "K": 2, + "Reference": 3, + "": 3, + "cache": 1, + "//cleanup": 1, + "any": 1, + "dead": 1, + "entries": 1, + "rq.poll": 2, + "Map.Entry": 1, + "cache.entrySet": 1, + "val": 3, + "e.getValue": 1, + "val.get": 1, + "cache.remove": 1, + "e.getKey": 1, + "RuntimeException": 5, + "runtimeException": 2, + "s": 10, + "Throwable": 4, + "sneakyThrow": 1, + "NullPointerException": 3, + "Util.": 1, + "": 1, + "sneakyThrow0": 2, + "@SuppressWarnings": 1, + "": 1, + "T": 2, + "nokogiri.internals": 1, + "nokogiri.internals.NokogiriHelpers.getNokogiriClass": 1, + "nokogiri.internals.NokogiriHelpers.isNamespace": 1, + "nokogiri.internals.NokogiriHelpers.stringOrNil": 1, + "nokogiri.HtmlDocument": 1, + "nokogiri.NokogiriService": 1, + "nokogiri.XmlDocument": 1, + "org.apache.xerces.parsers.DOMParser": 1, + "org.apache.xerces.xni.Augmentations": 1, + "org.apache.xerces.xni.QName": 1, + "org.apache.xerces.xni.XMLAttributes": 1, + "org.apache.xerces.xni.XNIException": 1, + "org.apache.xerces.xni.parser.XMLDocumentFilter": 1, + "org.apache.xerces.xni.parser.XMLParserConfiguration": 1, + "org.cyberneko.html.HTMLConfiguration": 1, + "org.cyberneko.html.filters.DefaultFilter": 1, + "org.jruby.runtime.ThreadContext": 1, + "org.w3c.dom.Document": 1, + "org.w3c.dom.NamedNodeMap": 1, + "org.w3c.dom.NodeList": 1, + "HtmlDomParserContext": 3, + "XmlDomParserContext": 1, + "options": 4, + "encoding": 2, + "@Override": 6, + "protected": 8, + "initErrorHandler": 1, + "options.strict": 1, + "errorHandler": 6, + "NokogiriStrictErrorHandler": 1, + "options.noError": 2, + "options.noWarning": 2, + "NokogiriNonStrictErrorHandler4NekoHtml": 1, + "initParser": 1, + "XMLParserConfiguration": 1, + "config": 2, + "HTMLConfiguration": 1, + "XMLDocumentFilter": 3, + "removeNSAttrsFilter": 2, + "RemoveNSAttrsFilter": 2, + "elementValidityCheckFilter": 3, + "ElementValidityCheckFilter": 3, + "//XMLDocumentFilter": 1, + "filters": 3, + "config.setErrorHandler": 1, + "this.errorHandler": 2, + "parser": 1, + "DOMParser": 1, + "setProperty": 4, + "java_encoding": 2, + "setFeature": 4, + "enableDocumentFragment": 1, + "getNewEmptyDocument": 1, + "ThreadContext": 2, + "XmlDocument.rbNew": 1, + "getNokogiriClass": 1, + "context.getRuntime": 3, + "wrapDocument": 1, + "Document": 2, + "NokogiriService.HTML_DOCUMENT_ALLOCATOR.allocate": 1, + "htmlDocument.setDocumentNode": 1, + "ruby_encoding.isNil": 1, + "detected_encoding": 2, + "detected_encoding.isNil": 1, + "ruby_encoding": 3, + "charset": 2, + "tryGetCharsetFromHtml5MetaTag": 2, + "stringOrNil": 1, + "htmlDocument.setEncoding": 1, + "htmlDocument.setParsedEncoding": 1, + "document.getDocumentElement": 2, + ".getNodeName": 4, + "NodeList": 2, + "list": 1, + ".getChildNodes": 2, + "list.getLength": 1, + "list.item": 2, + "headers": 1, + "headers.getLength": 1, + "headers.item": 2, + "NamedNodeMap": 1, + "nodeMap": 1, + ".getAttributes": 1, + "k": 5, + "nodeMap.getLength": 1, + "nodeMap.item": 2, + ".getNodeValue": 1, + "DefaultFilter": 2, + "startElement": 2, + "QName": 2, + "XMLAttributes": 2, + "attrs": 4, + "Augmentations": 2, + "augs": 4, + "XNIException": 2, + "attrs.getLength": 1, + "isNamespace": 1, + "attrs.getQName": 1, + "attrs.removeAttributeAt": 1, + "element.uri": 1, + "super.startElement": 2, + "NokogiriErrorHandler": 2, + "element_names": 3, + "g": 1, + "r": 1, + "w": 1, + "y": 1, + "z": 1, + "isValid": 2, + "testee": 1, + "testee.toCharArray": 1, + "index": 4, + ".length": 1, + "testee.equals": 1, + "name.rawname": 2, + "errorHandler.getErrors": 1, + ".add": 1, + "Exception": 1, "persons": 1, "ProtocolBuffer": 2, "registerAllExtensions": 1, @@ -28437,124 +28466,25 @@ ".internalBuildGeneratedFileFrom": 1 }, "JavaScript": { - "function": 1214, "(": 8528, + "function": 1214, + "window": 18, + "angular": 1, ")": 8536, "{": 2742, - ";": 4066, - "//": 410, - "jshint": 1, - "_": 9, - "var": 916, - "Modal": 2, - "content": 5, - "options": 56, - "this.options": 6, - "this.": 2, - "element": 19, - ".delegate": 2, - ".proxy": 1, - "this.hide": 1, - "this": 578, - "}": 2718, - "Modal.prototype": 1, - "constructor": 8, - "toggle": 10, + "Array.prototype.last": 1, "return": 947, + "this": 578, "[": 1461, - "this.isShown": 3, - "]": 1458, - "show": 10, - "that": 33, - "e": 663, - ".Event": 1, - "element.trigger": 1, - "if": 1230, - "||": 648, - "e.isDefaultPrevented": 2, - ".addClass": 1, - "true": 147, - "escape.call": 1, - "backdrop.call": 1, - "transition": 1, - ".support.transition": 1, - "&&": 1017, - "that.": 3, - "element.hasClass": 1, - "element.parent": 1, - ".length": 24, - "element.appendTo": 1, - "document.body": 8, - "//don": 1, - "in": 170, - "shown": 2, - "hide": 8, - "body": 22, - "modal": 4, + "this.length": 41, "-": 706, - "open": 2, - "fade": 4, - "hidden": 12, - "
": 4, - "class=": 5, - "static": 2, - "keyup.dismiss.modal": 2, - "object": 59, - "string": 41, - "click.modal.data": 1, - "api": 1, - "data": 145, - "target": 44, - "href": 9, - ".extend": 1, - "target.data": 1, - "this.data": 5, - "e.preventDefault": 1, - "target.modal": 1, - "option": 12, - "window.jQuery": 7, - "Animal": 12, - "Horse": 12, - "Snake": 12, - "sam": 4, - "tom": 4, - "__hasProp": 2, - "Object.prototype.hasOwnProperty": 6, - "__extends": 6, - "child": 17, - "parent": 15, - "for": 262, - "key": 85, - "__hasProp.call": 2, - "ctor": 6, - "this.constructor": 5, - "ctor.prototype": 3, - "parent.prototype": 6, - "child.prototype": 4, - "new": 86, - "child.__super__": 3, - "name": 161, - "this.name": 7, - "Animal.prototype.move": 2, - "meters": 4, + "]": 1458, + ";": 4066, + "}": 2718, + "var": 916, + "app": 3, + "angular.module": 1, "alert": 11, - "+": 1136, - "Snake.__super__.constructor.apply": 2, - "arguments": 83, - "Snake.prototype.move": 2, - "Snake.__super__.move.call": 2, - "Horse.__super__.constructor.apply": 2, - "Horse.prototype.move": 2, - "Horse.__super__.move.call": 2, - "sam.move": 2, - "tom.move": 2, - ".call": 10, - ".hasOwnProperty": 2, - "Animal.name": 1, - "_super": 4, - "Snake.name": 1, - "Horse.name": 1, - "console.log": 3, "hanaMath": 1, ".import": 1, "x": 41, @@ -28571,9 +28501,1336 @@ ".net.http.OK": 1, ".response.setBody": 1, "JSON.stringify": 5, - "multiply": 1, + "Animal": 12, + "Horse": 12, + "Snake": 12, + "sam": 4, + "tom": 4, + "__hasProp": 2, + ".hasOwnProperty": 2, + "__extends": 6, + "child": 17, + "parent": 15, + "for": 262, + "key": 85, + "in": 170, + "if": 1230, + "__hasProp.call": 2, + "ctor": 6, + "this.constructor": 5, + "ctor.prototype": 3, + "parent.prototype": 6, + "child.prototype": 4, + "new": 86, + "child.__super__": 3, + "Animal.name": 1, + "name": 161, + "this.name": 7, + "Animal.prototype.move": 2, + "meters": 4, + "+": 1136, + "_super": 4, + "Snake.name": 1, + "Snake.__super__.constructor.apply": 2, + "arguments": 83, + "Snake.prototype.move": 2, + "Snake.__super__.move.call": 2, + "Horse.name": 1, + "Horse.__super__.constructor.apply": 2, + "Horse.prototype.move": 2, + "Horse.__super__.move.call": 2, + "sam.move": 2, + "tom.move": 2, + ".call": 10, + "KEYWORDS": 2, + "array_to_hash": 11, + "RESERVED_WORDS": 2, + "KEYWORDS_BEFORE_EXPRESSION": 2, + "KEYWORDS_ATOM": 2, + "OPERATOR_CHARS": 1, + "characters": 6, + "RE_HEX_NUMBER": 1, + "/": 290, + "a": 1489, + "f": 666, + "/i": 22, + "RE_OCT_NUMBER": 1, + "RE_DEC_NUMBER": 1, + "d*": 8, + ".": 91, + "e": 663, + "d": 771, + "|": 206, + "OPERATORS": 2, + "WHITESPACE_CHARS": 2, + "PUNC_BEFORE_EXPRESSION": 2, + "PUNC_CHARS": 1, + "REGEXP_MODIFIERS": 1, + "UNICODE": 1, + "letter": 3, + "RegExp": 12, + "non_spacing_mark": 1, + "space_combining_mark": 1, + "connector_punctuation": 1, + "is_letter": 3, + "ch": 58, + "UNICODE.letter.test": 1, + "is_digit": 3, + "ch.charCodeAt": 1, + "&&": 1017, + "<": 209, + "//XXX": 1, + "find": 7, + "out": 1, + "means": 1, + "something": 3, + "else": 307, + "than": 3, + "is_alphanumeric_char": 3, + "||": 648, + "is_unicode_combining_mark": 2, + "UNICODE.non_spacing_mark.test": 1, + "UNICODE.space_combining_mark.test": 1, + "is_unicode_connector_punctuation": 2, + "UNICODE.connector_punctuation.test": 1, + "is_identifier_start": 2, + "is_identifier_char": 1, + "//": 410, + "zero": 2, + "width": 32, + "non": 8, + "joiner": 2, + "": 1, + "": 1, + "my": 1, + "ECMA": 1, + "PDF": 1, + "is": 67, + "also": 5, + "c": 775, + "parse_js_number": 2, + "num": 23, + "RE_HEX_NUMBER.test": 1, + "parseInt": 12, + "num.substr": 2, + "RE_OCT_NUMBER.test": 1, + "RE_DEC_NUMBER.test": 1, + "JS_Parse_Error": 2, + "message": 5, + "line": 14, + "col": 7, + "pos": 197, + "this.message": 3, + "this.line": 3, + "this.col": 2, + "this.pos": 4, + "try": 44, + "ex": 3, + "Error": 16, + "ex.name": 1, + "throw": 27, + "catch": 38, + "this.stack": 2, + "ex.stack": 1, + "JS_Parse_Error.prototype.toString": 1, + "js_error": 2, + "is_token": 1, + "token": 5, + "type": 49, + "val": 13, + "token.type": 1, + "null": 427, + "token.value": 1, + "EX_EOF": 3, + "tokenizer": 2, + "TEXT": 1, + "S": 8, + "text": 14, + "TEXT.replace": 1, + "r": 261, + "n": 874, + "u2028": 3, + "u2029": 2, + "/g": 37, + ".replace": 38, + "uFEFF/": 1, + "tokpos": 1, + "tokline": 1, + "tokcol": 1, + "newline_before": 1, + "false": 142, + "regex_allowed": 1, + "comments_before": 1, + "peek": 5, + "S.text.charAt": 2, + "S.pos": 4, + "next": 9, + "signal_eof": 4, + "S.newline_before": 3, + "true": 147, + "S.line": 2, + "S.col": 3, + "eof": 6, + "S.peek": 1, + "what": 2, + "S.text.indexOf": 1, + "start_token": 1, + "S.tokline": 3, + "S.tokcol": 3, + "S.tokpos": 3, + "value": 98, + "is_comment": 2, + "S.regex_allowed": 1, + "HOP": 5, + "UNARY_POSTFIX": 1, + "ret": 62, + "nlb": 1, + "ret.comments_before": 1, + "S.comments_before": 2, + "skip_whitespace": 1, + "while": 53, + "read_while": 2, + "pred": 2, + "i": 853, + "parse_error": 3, + "err": 5, + "read_num": 1, + "prefix": 6, + "has_e": 3, + "after_e": 5, + "has_x": 5, + "has_dot": 3, + "valid": 4, + "isNaN": 6, + "read_escaped_char": 1, + "switch": 30, + "case": 136, + "String.fromCharCode": 4, + "hex_bytes": 3, + "default": 21, + "digit": 3, + "<<": 4, + "read_string": 1, + "with_eof_error": 1, + "quote": 3, + "string": 41, + "comment1": 1, + "Unterminated": 2, + "multiline": 1, + "comment": 3, + "*/": 2, + "comment2": 1, + "WARNING": 1, + "at": 58, + "***": 1, + "Found": 1, + "warn": 3, + "tok": 1, + "read_name": 1, + "backslash": 2, + "u": 304, + "Expecting": 1, + "UnicodeEscapeSequence": 1, + "uXXXX": 1, + "Unicode": 1, + "char": 2, + "not": 26, + "identifier": 1, + "regular": 1, + "expression": 4, + "regexp": 5, + "operator": 14, "*": 71, + "punc": 27, + "atom": 5, + "keyword": 11, + "Unexpected": 3, + "character": 3, + "typeof": 132, + "void": 1, + "delete": 39, + "%": 26, + "&": 13, + "<\",>": 1, + "<=\",>": 1, + "instanceof": 19, + "do": 15, + "expected": 12, + "block": 4, + "break": 111, + "continue": 18, + "debugger": 2, + "outside": 2, + "of": 28, + "const": 2, + "with": 18, + "label": 2, + "stat": 1, + "Label": 1, + "without": 1, + "matching": 3, + "loop": 7, + "or": 38, + "statement": 1, + "inside": 3, + "defun": 1, + "Name": 1, + "finally": 3, + "Missing": 1, + "catch/finally": 1, + "blocks": 1, + "unary": 2, + "undefined": 328, + "array": 7, + "get": 24, + "set": 22, + "object": 59, + "dot": 2, + "sub": 4, + "call": 9, + "postfix": 1, + "Invalid": 2, + "use": 10, + "binary": 1, + "conditional": 1, + "assign": 1, + "assignment": 1, + "seq": 1, + "toplevel": 7, + "member": 2, + "array.length": 1, + "obj": 40, + "prop": 24, + "Object.prototype.hasOwnProperty.call": 1, + "exports.tokenizer": 1, + "exports.parse": 1, + "parse": 1, + "exports.slice": 1, + "slice": 10, + "exports.curry": 1, + "curry": 1, + "exports.member": 1, + "exports.array_to_hash": 1, + "exports.PRECEDENCE": 1, + "PRECEDENCE": 1, + "exports.KEYWORDS_ATOM": 1, + "exports.RESERVED_WORDS": 1, + "exports.KEYWORDS": 1, + "exports.ATOMIC_START_TOKEN": 1, + "ATOMIC_START_TOKEN": 1, + "exports.OPERATORS": 1, + "exports.is_alphanumeric_char": 1, + "exports.set_logger": 1, + "logger": 2, + "jshint": 1, + "_": 9, + "Modal": 2, + "content": 5, + "options": 56, + "this.options": 6, + "this.": 2, + "element": 19, + ".delegate": 2, + ".proxy": 1, + "this.hide": 1, + "Modal.prototype": 1, + "constructor": 8, + "toggle": 10, + "this.isShown": 3, + "show": 10, + "that": 33, + ".Event": 1, + "element.trigger": 1, + "e.isDefaultPrevented": 2, + ".addClass": 1, + "escape.call": 1, + "backdrop.call": 1, + "transition": 1, + ".support.transition": 1, + "that.": 3, + "element.hasClass": 1, + "element.parent": 1, + ".length": 24, + "element.appendTo": 1, + "document.body": 8, + "//don": 1, + "shown": 2, + "hide": 8, + "body": 22, + "modal": 4, + "open": 2, + "fade": 4, + "hidden": 12, + "
": 4, + "class=": 5, + "static": 2, + "keyup.dismiss.modal": 2, + "click.modal.data": 1, + "api": 1, + "data": 145, + "target": 44, + "href": 9, + ".extend": 1, + "target.data": 1, + "this.data": 5, + "e.preventDefault": 1, + "target.modal": 1, + "option": 12, + "window.jQuery": 7, + "document": 26, + "window.document": 2, + "navigator": 3, + "window.navigator": 2, + "location": 2, + "window.location": 5, + "jQuery": 48, + "selector": 40, + "context": 48, + "The": 9, + "actually": 2, + "just": 2, + "the": 107, + "init": 7, + "jQuery.fn.init": 2, + "rootjQuery": 8, + "Map": 4, + "over": 7, + "overwrite": 4, + "_jQuery": 4, + "window.": 6, + "A": 24, + "central": 2, + "reference": 5, + "to": 92, + "root": 5, + "simple": 3, + "way": 2, + "check": 8, + "HTML": 9, + "strings": 8, + "ID": 8, + "Prioritize": 1, + "#id": 3, + "": 1, + "avoid": 5, + "XSS": 1, + "via": 2, + "location.hash": 1, + "#9521": 1, + "quickExpr": 2, + "#": 13, + "<[\\w\\W]+>": 4, + "w": 110, + "Check": 10, + "has": 9, + "whitespace": 7, + "it": 112, + "rnotwhite": 2, + "S/": 4, + "Used": 3, + "trimming": 2, + "trimLeft": 4, + "s": 290, + "trimRight": 4, + "Match": 3, + "standalone": 2, + "tag": 2, + "rsingleTag": 2, + "<(\\w+)\\s*\\/?>": 4, + "<\\/\\1>": 4, + "JSON": 5, + "rvalidchars": 2, + "rvalidescape": 2, + "eE": 4, + "rvalidbraces": 2, + "s*": 15, + "Useragent": 2, + "rwebkit": 2, + "webkit": 6, + "w.": 17, + "ropera": 2, + "opera": 4, + ".*version": 4, + "rmsie": 2, + "msie": 4, + "rmozilla": 2, + "mozilla": 4, + ".*": 20, + "rv": 4, + "Matches": 1, + "dashed": 1, + "camelizing": 1, + "rdashAlpha": 1, + "z": 21, + "/ig": 3, + "rmsPrefix": 1, + "ms": 2, + "by": 12, + "jQuery.camelCase": 6, + "as": 11, + "callback": 23, + "replace": 8, + "fcamelCase": 1, + "all": 16, + ".toUpperCase": 3, + "Keep": 2, + "UserAgent": 2, + "jQuery.browser": 4, + "userAgent": 3, + "navigator.userAgent": 3, + "For": 5, + "engine": 2, + "and": 42, + "version": 10, + "browser": 11, + "browserMatch": 3, + "deferred": 25, + "used": 13, + "on": 37, + "DOM": 21, + "ready": 31, + "readyList": 6, + "event": 31, + "handler": 14, + "DOMContentLoaded": 14, + "Save": 2, + "some": 2, + "core": 2, + "methods": 8, + "toString": 4, + "Object.prototype.toString": 7, + "hasOwn": 2, + "Object.prototype.hasOwnProperty": 6, + "push": 11, + "Array.prototype.push": 4, + "Array.prototype.slice": 6, + "trim": 5, + "String.prototype.trim": 3, + "indexOf": 5, + "Array.prototype.indexOf": 4, + "Class": 2, + "pairs": 2, + "class2type": 3, + "jQuery.fn": 4, + "jQuery.prototype": 2, + "match": 30, + "elem": 101, + "doc": 4, + "Handle": 14, + "DOMElement": 2, + "selector.nodeType": 2, + "this.context": 17, + "only": 10, + "exists": 9, + "once": 4, + "optimize": 3, + "finding": 2, + "this.selector": 16, + "Are": 2, + "we": 25, + "dealing": 2, + "an": 12, + "selector.charAt": 4, + "selector.length": 4, + "Assume": 2, + "start": 20, + "end": 14, + "are": 18, + "skip": 5, + "regex": 3, + "quickExpr.exec": 2, + "Verify": 3, + "no": 19, + "was": 6, + "specified": 4, + "HANDLE": 2, + "html": 10, + "context.ownerDocument": 2, + "If": 21, + "single": 2, + "passed": 5, + "clean": 3, + "method": 30, + "like": 5, + "method.": 3, + "sort": 4, + ".sort": 9, + "splice": 5, + ".splice": 5, + "jQuery.fn.init.prototype": 2, + "jQuery.extend": 11, + "jQuery.fn.extend": 4, + "src": 7, + "copy": 16, + "copyIsArray": 2, + "clone": 5, + "length": 48, + "arguments.length": 18, + "deep": 12, + "situation": 2, + "boolean": 8, + "when": 20, + "possible": 3, + "jQuery.isFunction": 6, + "extend": 13, + "itself": 4, + "one": 15, + "argument": 2, + "Only": 5, + "deal": 2, + "null/undefined": 2, + "values": 10, + "Extend": 2, + "base": 2, + "Prevent": 2, + "never": 2, + "ending": 2, + "Recurse": 2, + "t": 436, + "bring": 2, + "Return": 2, + "modified": 3, + "noConflict": 4, + "Is": 2, + "be": 12, + "Set": 4, + "occurs.": 2, + "isReady": 5, + "counter": 2, + "track": 2, + "how": 2, + "many": 3, + "items": 2, + "wait": 12, + "before": 8, + "fires.": 2, + "See": 9, + "#6781": 2, + "readyWait": 6, + "Hold": 2, + "release": 2, + "holdReady": 3, + "hold": 6, + "jQuery.readyWait": 6, + "jQuery.ready": 16, + "Either": 2, + "released": 2, + "DOMready/load": 2, + "yet": 2, + "jQuery.isReady": 6, + "Make": 17, + "sure": 18, + "least": 4, + "IE": 28, + "gets": 6, + "little": 4, + "overzealous": 4, + "ticket": 4, + "#5443": 4, + "setTimeout": 19, + "Remember": 2, + "normal": 2, + "Ready": 2, + "fired": 12, + "decrement": 2, + "need": 10, + "there": 6, + "functions": 6, + "bound": 8, + "execute": 4, + "readyList.fireWith": 1, + "Trigger": 2, + "any": 12, + "events": 18, + "jQuery.fn.trigger": 2, + ".trigger": 3, + ".off": 1, + "bindReady": 5, + "jQuery.Callbacks": 2, + "Catch": 2, + "cases": 4, + "where": 2, + ".ready": 2, + "called": 2, + "after": 7, + "already": 6, + "occurred.": 2, + "document.readyState": 4, + "asynchronously": 2, + "allow": 6, + "scripts": 2, + "opportunity": 2, + "delay": 4, + "Mozilla": 2, + "Opera": 2, + "nightlies": 3, + "currently": 4, + "support": 13, + "document.addEventListener": 6, + "Use": 7, + "handy": 2, + "fallback": 4, + "window.onload": 4, + "will": 7, + "always": 6, + "work": 6, + "window.addEventListener": 2, + "model": 14, + "document.attachEvent": 6, + "ensure": 2, + "firing": 16, + "onload": 2, + "maybe": 2, + "late": 2, + "but": 4, + "safe": 3, + "iframes": 2, + "window.attachEvent": 2, + "frame": 23, + "continually": 2, + "see": 6, + "window.frameElement": 2, + "document.documentElement.doScroll": 4, + "doScrollCheck": 6, + "test/unit/core.js": 2, + "details": 3, + "concerning": 2, + "isFunction.": 2, + "Since": 3, + "aren": 5, + "pass": 7, + "through": 3, + "well": 2, + "jQuery.type": 4, + "obj.nodeType": 2, + "jQuery.isWindow": 2, + "Not": 4, + "own": 4, + "property": 15, + "must": 4, + "Object": 4, + "obj.constructor": 2, + "hasOwn.call": 6, + "obj.constructor.prototype": 2, + "IE8": 2, + "Will": 2, + "exceptions": 2, + "certain": 2, + "host": 29, + "objects": 7, + "#9897": 1, + "Own": 2, + "properties": 7, + "enumerated": 2, + "firstly": 2, + "so": 8, + "speed": 4, + "up": 4, + "last": 6, + "then": 8, + "own.": 2, + "isEmptyObject": 7, + "error": 20, + "msg": 4, + "parseJSON": 4, + "leading/trailing": 2, + "removed": 3, + "can": 10, + "access": 2, + "elems": 9, + "fn": 14, + "chainable": 4, + "emptyGet": 3, + "exec": 8, + "bulk": 3, + "elems.length": 1, + "Sets": 3, + "jQuery.access": 2, + "Optionally": 1, + "executed": 1, + "Bulk": 1, + "operations": 1, + "iterate": 1, + "executing": 1, + "exec.call": 1, + "Otherwise": 2, + "they": 2, + "run": 1, + "against": 1, + "entire": 1, + "fn.call": 2, + "value.call": 1, + "Gets": 2, + "now": 5, + "Date": 4, + ".getTime": 3, + "frowned": 1, + "upon.": 1, + "More": 1, + "http": 6, + "//docs.jquery.com/Utilities/jQuery.browser": 1, + "uaMatch": 3, + "ua": 6, + "ua.toLowerCase": 1, + "rwebkit.exec": 1, + "ropera.exec": 1, + "rmsie.exec": 1, + "ua.indexOf": 1, + "rmozilla.exec": 1, + "jQuerySub": 7, + "jQuerySub.fn.init": 2, + "jQuerySub.superclass": 1, + "jQuerySub.fn": 2, + "jQuerySub.prototype": 1, + "jQuerySub.fn.constructor": 1, + "jQuerySub.sub": 1, + "this.sub": 2, + "jQuery.fn.init.call": 1, + "rootjQuerySub": 2, + "jQuerySub.fn.init.prototype": 1, + "jQuery.each": 2, + ".split": 19, + "name.toLowerCase": 6, + "jQuery.uaMatch": 1, + "browserMatch.browser": 2, + "jQuery.browser.version": 1, + "browserMatch.version": 1, + "jQuery.browser.webkit": 1, + "jQuery.browser.safari": 1, + "rnotwhite.test": 2, + "xA0": 7, + "document.removeEventListener": 2, + "document.detachEvent": 2, + "trick": 2, + "Diego": 2, + "Perini": 2, + "//javascript.nwbox.com/IEContentLoaded/": 2, + "waiting": 2, + "flagsCache": 3, + "createFlags": 2, + "flags": 13, + "flags.split": 1, + "flags.length": 1, + "Convert": 1, + "from": 7, + "String": 2, + "formatted": 2, + "cache": 45, + "first": 10, + "Actual": 2, + "list": 21, + "Stack": 1, + "fire": 4, + "calls": 1, + "repeatable": 1, + "lists": 2, + "stack": 2, + "Last": 2, + "forgettable": 1, + "memory": 8, + "Flag": 2, + "know": 3, + "First": 3, + "internally": 5, "add": 16, + "fireWith": 1, + "firingStart": 3, + "End": 1, + "firingLength": 4, + "Index": 1, + "remove": 9, + "needed": 2, + "firingIndex": 5, + "Add": 4, + "several": 1, + "callbacks": 10, + "args": 31, + "actual": 1, + "args.length": 3, + "Inspect": 1, + "recursively": 1, + "unique": 2, + "mode": 1, + "flags.unique": 1, + "self.has": 1, + "list.push": 1, + "Fire": 1, + "flags.memory": 1, + "list.length": 5, + ".apply": 7, + "flags.stopOnFalse": 1, + "Mark": 1, + "halted": 1, + "flags.once": 1, + "stack.length": 1, + "stack.shift": 1, + "self.fireWith": 1, + "self.disable": 1, + "Callbacks": 1, + "self": 17, + "collection": 3, + "Do": 2, + "current": 7, + "batch": 2, + "With": 1, + "/a": 1, + "top": 12, + "px": 31, + "float": 3, + "left": 14, + "opacity": 13, + ".55": 1, + "checkbox": 14, + "basic": 1, + "test": 21, + "all.length": 1, + "supports": 2, + "tests": 48, + "select": 20, + "document.createElement": 26, + "opt": 2, + "select.appendChild": 1, + "div.getElementsByTagName": 6, + "strips": 1, + "leading": 1, + ".innerHTML": 3, + "leadingWhitespace": 3, + "div.firstChild.nodeType": 1, + "tbody": 7, + "elements": 9, + "manipulated": 1, + "normalizes": 1, + "hrefNormalized": 3, + "a.getAttribute": 11, + "uses": 3, + "filter": 10, + "instead": 6, + "around": 1, + "WebKit": 9, + "issue.": 1, + "#5145": 1, + "/.test": 19, + "a.style.opacity": 2, + "style": 30, + "existence": 1, + "styleFloat": 1, + "cssFloat": 4, + "a.style.cssFloat": 1, + "defaults": 3, + "checkOn": 4, + "input.value": 5, + "selected": 5, + "working": 1, + "property.": 1, + "too": 1, + "marked": 1, + "disabled": 11, + "marks": 1, + "them": 3, + "select.disabled": 1, + "support.optDisabled": 1, + "opt.disabled": 1, + "Test": 3, + "handlers": 1, + "does": 9, + "support.noCloneEvent": 1, + "div.cloneNode": 1, + ".fireEvent": 3, + "radio": 17, + "maintains": 1, + "its": 2, + "being": 2, + "appended": 2, + "input.setAttribute": 5, + "support.radioValue": 2, + "#11217": 1, + "loses": 1, + "checked": 4, + "attribute": 5, + "div.appendChild": 4, + "fragment": 27, + "document.createDocumentFragment": 3, + "fragment.appendChild": 2, + "div.lastChild": 1, + "doesn": 2, + "have": 6, + "conMarginTop": 3, + "paddingMarginBorder": 5, + "positionTopLeftWidthHeight": 3, + "paddingMarginBorderVisibility": 3, + "container": 4, + "container.style.cssText": 1, + "body.insertBefore": 1, + "body.firstChild": 1, + "Construct": 1, + "div": 28, + "container.appendChild": 1, + "table": 6, + "cells": 3, + "still": 4, + "offsetWidth/Height": 3, + "display": 7, + "none": 4, + "other": 3, + "visible": 1, + "row": 1, + "reliable": 1, + "determining": 3, + "been": 5, + "directly": 2, + "using": 5, + "offsets": 1, + "don": 5, + "safety": 1, + "goggles": 1, + "bug": 3, + "#4512": 1, + "more": 6, + "information": 5, + "fails": 2, + "div.innerHTML": 7, + "tds": 6, + "isSupported": 7, + ".offsetHeight": 4, + ".style.display": 5, + "empty": 3, + "fail": 10, + "support.reliableHiddenOffsets": 1, + "explicit": 1, + "margin": 8, + "right": 3, + "incorrectly": 1, + "computed": 1, + "based": 1, + "container.": 1, + "info": 2, + "#3333": 1, + "Fails": 2, + "Feb": 1, + "Bug": 1, + "getComputedStyle": 3, + "returns": 1, + "wrong": 1, + "window.getComputedStyle": 6, + "marginDiv": 5, + "marginDiv.style.width": 1, + "marginDiv.style.marginRight": 1, + "div.style.width": 2, + "support.reliableMarginRight": 1, + "marginRight": 2, + ".marginRight": 2, + "div.style.zoom": 2, + "natively": 1, + "level": 3, + "act": 1, + "inline": 3, + "setting": 2, + "their": 3, + "giving": 1, + "layout": 2, + "div.style.padding": 1, + "div.style.border": 1, + "div.style.overflow": 2, + "div.style.display": 2, + "support.inlineBlockNeedsLayout": 1, + "div.offsetWidth": 2, + "shrink": 1, + "wrap": 2, + "children": 3, + "support.shrinkWrapBlocks": 1, + "div.style.cssText": 1, + "outer": 2, + "div.firstChild": 3, + "inner": 2, + "outer.firstChild": 1, + "td": 3, + "outer.nextSibling.firstChild.firstChild": 1, + "offsetSupport": 2, + "doesNotAddBorder": 1, + "inner.offsetTop": 4, + "doesAddBorderForTableAndCells": 1, + "td.offsetTop": 1, + "inner.style.position": 2, + "inner.style.top": 2, + "safari": 1, + "subtracts": 1, + "border": 7, + "here": 1, + "which": 8, + "offsetSupport.fixedPosition": 1, + "outer.style.overflow": 1, + "outer.style.position": 1, + "offsetSupport.subtractsBorderForOverflowNotVisible": 1, + "offsetSupport.doesNotIncludeMarginInBodyOffset": 1, + "body.offsetTop": 1, + "div.style.marginTop": 1, + "support.pixelMargin": 1, + "marginTop": 3, + ".marginTop": 1, + "container.style.zoom": 2, + "body.removeChild": 1, + "rbrace": 1, + "rmultiDash": 3, + "Z": 6, + "Please": 1, + "caution": 1, + "uuid": 2, + "Unique": 1, + "each": 17, + "page": 1, + "Non": 3, + "digits": 3, + "rinlinejQuery": 1, + "expando": 14, + "jQuery.fn.jquery": 1, + "Math.random": 2, + "D/g": 2, + "following": 1, + "uncatchable": 1, + "you": 1, + "attempt": 2, + "them.": 1, + "noData": 3, + "Ban": 1, + "except": 1, + "Flash": 1, + "handle": 15, + "expandos": 2, + "hasData": 2, + "elem.nodeType": 8, + "jQuery.cache": 3, + "jQuery.expando": 12, + "isEmptyDataObject": 3, + "pvt": 8, + "jQuery.acceptData": 2, + "privateCache": 1, + "thisCache": 15, + "internalKey": 12, + "getByName": 3, + "We": 6, + "nodes": 14, + "JS": 7, + "differently": 1, + "because": 1, + "IE6": 1, + "internal": 8, + "order": 1, + "collisions": 1, + "between": 1, + "user": 1, + "defined": 3, + "data.": 1, + "thisCache.data": 3, + "Users": 1, + "should": 1, + "inspect": 1, + "jQuery.data": 15, + "undocumented": 1, + "subject": 1, + "change.": 1, + "But": 1, + "anyone": 1, + "listen": 1, + "No.": 1, + "isEvents": 1, + "privateCache.events": 1, + "both": 2, + "converted": 2, + "camel": 2, + "names": 2, + "Try": 4, + "camelCased": 1, + "removeData": 8, + "l": 312, + "Reference": 1, + "isNode": 11, + "id": 38, + "entry": 1, + "purpose": 1, + "continuing": 1, + ".data": 3, + "Support": 1, + "space": 1, + "separated": 1, + "keys": 11, + "jQuery.isArray": 1, + "manipulation": 1, + "split": 4, + "cased": 1, + "spaces": 3, + "unless": 2, + "name.split": 1, + "name.length": 1, + "want": 1, + "let": 1, + "destroyed": 2, + "jQuery.isEmptyObject": 1, + "Don": 1, + "care": 1, + "Ensure": 1, + "#10080": 1, + "jQuery.support.deleteExpando": 3, + "cache.setInterval": 1, + "eliminate": 2, + "node": 23, + "lookups": 2, + "entries": 2, + "longer": 2, + "exist": 2, + "us": 2, + "nor": 2, + "removeAttribute": 3, + "Document": 2, + "these": 2, + "elem.removeAttribute": 6, + "only.": 2, + "_data": 3, + "acceptData": 3, + "elem.nodeName": 2, + "jQuery.noData": 2, + "elem.nodeName.toLowerCase": 2, + "elem.getAttribute": 7, + "parts": 28, + "part": 8, + "attr": 13, + "jQuery._data": 2, + "elem.attributes": 1, + "attr.length": 2, + ".name": 3, + "name.indexOf": 2, + "name.substring": 2, + "dataAttr": 6, + "multiple": 7, + "this.each": 42, + "key.split": 2, + "this.triggerHandler": 6, + "fetch": 4, + "stored": 4, + "self.triggerHandler": 2, + "jQuery.removeData": 2, + "nothing": 2, + "found": 10, + "HTML5": 3, + "key.replace": 2, + ".toLowerCase": 7, + "jQuery.isNumeric": 1, + "rbrace.test": 2, + "jQuery.parseJSON": 2, + "isn": 2, + "optgroup": 5, + "option.selected": 2, + "jQuery.support.optDisabled": 2, + "option.disabled": 2, + "option.getAttribute": 2, + "option.parentNode.disabled": 2, + "jQuery.nodeName": 3, + "option.parentNode": 2, + "Get": 4, + "specific": 2, + ".val": 5, + "get/set": 2, + "attributes": 14, + "nType": 8, + "jQuery.attrFn": 2, + "Fallback": 2, + "supported": 2, + "jQuery.prop": 2, + "notxml": 8, + "jQuery.isXMLDoc": 2, + "All": 1, + "lowercase": 1, + "Grab": 1, + "necessary": 1, + "hook": 1, + "hooks": 14, + "jQuery.attrHooks": 2, + "rboolean.test": 4, + "boolHook": 3, + "nodeHook": 1, + "jQuery.removeAttr": 2, + "hooks.set": 2, + "elem.setAttribute": 2, + "hooks.get": 2, + "existent": 2, + "normalize": 2, + "removeAttr": 5, + "propName": 8, + "attrNames": 3, + "isBool": 4, + "value.toLowerCase": 2, + "rspace": 1, + "attrNames.length": 1, + "jQuery.propFix": 2, + "#9699": 1, + "explanation": 1, + "approach": 1, + "removal": 1, + "#10870": 1, + "jQuery.attr": 2, + "getSetAttribute": 3, + "corresponding": 2, + "attrHooks": 3, + "changed": 3, + "button": 24, + "tabIndex": 4, + "readOnly": 2, + "htmlFor": 2, + "class": 5, + "className": 4, + "maxLength": 2, + "cellSpacing": 2, + "cellPadding": 2, + "rowSpan": 2, + "colSpan": 2, + "useMap": 2, + "frameBorder": 2, + "contentEditable": 2, + "tabindex": 4, + "height": 25, + "auto": 3, + "encoding": 26, + "mouseenter": 9, + "mouseleave": 9, + "mouseover": 12, + "mouseout": 12, + "**": 1, + "getData": 3, + "setData": 3, + "changeData": 3, + "click": 11, + "focus": 7, + "blur": 8, + "attrChange": 4, + "attrName": 4, + "relatedNode": 4, + "srcElement": 5, + "altKey": 4, + "bubbles": 4, + "cancelable": 4, + "ctrlKey": 6, + "currentTarget": 4, + "eventPhase": 4, + "metaKey": 5, + "relatedTarget": 6, + "shiftKey": 4, + "timeStamp": 1, + "view": 4, + "charCode": 7, + "keyCode": 6, + "buttons": 1, + "clientX": 6, + "clientY": 5, + "fromElement": 6, + "offsetX": 4, + "offsetY": 4, + "pageX": 4, + "pageY": 4, + "screenX": 4, + "screenY": 4, + "toElement": 5, + "focusin": 9, + "focusout": 11, + "form": 12, "util": 1, "require": 9, "net": 1, @@ -28593,17 +29850,14 @@ "process.env.NODE_DEBUG": 2, "/http/.test": 1, "console.error": 3, - "else": 307, "parserOnHeaders": 2, "headers": 41, "this.maxHeaderPairs": 2, - "<": 209, "this._headers.length": 1, "this._headers": 13, "this._headers.concat": 1, "this._url": 1, "parserOnHeadersComplete": 2, - "info": 2, "parser": 27, "info.headers": 1, "info.url": 1, @@ -28618,11 +29872,9 @@ "info.versionMinor": 2, "parser.incoming.httpVersion": 1, "parser.incoming.url": 1, - "n": 874, "headers.length": 2, "parser.maxHeaderPairs": 4, "Math.min": 5, - "i": 853, "k": 302, "v": 135, "parser.incoming._addHeaderLine": 2, @@ -28633,19 +29885,14 @@ "parser.incoming.upgrade": 4, "info.upgrade": 2, "skipBody": 3, - "false": 142, "response": 3, - "to": 92, "HEAD": 3, - "or": 38, "CONNECT": 1, "parser.onIncoming": 3, "info.shouldKeepAlive": 1, "parserOnBody": 2, "b": 961, - "start": 20, "len": 11, - "slice": 10, "b.slice": 1, "parser.incoming._paused": 2, "parser.incoming._pendings.length": 2, @@ -28669,7 +29916,6 @@ "exports.STATUS_CODES": 1, "RFC": 16, "obsoleted": 1, - "by": 12, "connectionExpression": 1, "/Connection/i": 1, "transferEncodingExpression": 1, @@ -28691,18 +29937,13 @@ "continue/i": 1, "dateCache": 5, "utcDate": 2, - "d": 771, - "Date": 4, "d.toUTCString": 1, - "setTimeout": 19, - "undefined": 328, "d.getMilliseconds": 1, "socket": 26, "stream.Stream.call": 2, "this.socket": 10, "this.connection": 8, "this.httpVersion": 1, - "null": 427, "this.complete": 2, "this.headers": 2, "this.trailers": 2, @@ -28718,10 +29959,8 @@ "stream.Stream": 2, "exports.IncomingMessage": 1, "IncomingMessage.prototype.destroy": 1, - "error": 20, "this.socket.destroy": 3, "IncomingMessage.prototype.setEncoding": 1, - "encoding": 26, "StringDecoder": 2, ".StringDecoder": 1, "lazy": 1, @@ -28733,11 +29972,8 @@ "this.socket.resume": 1, "this._emitPending": 1, "IncomingMessage.prototype._emitPending": 1, - "callback": 23, "this._pendings.length": 1, - "self": 17, "process.nextTick": 1, - "while": 53, "self._paused": 1, "self._pendings.length": 2, "chunk": 14, @@ -28753,14 +29989,9 @@ "IncomingMessage.prototype._emitEnd": 1, "IncomingMessage.prototype._addHeaderLine": 1, "field": 36, - "value": 98, "dest": 12, "field.toLowerCase": 1, - "switch": 30, - "case": 136, ".push": 3, - "break": 111, - "default": 21, "field.slice": 1, "OutgoingMessage": 5, "this.output": 3, @@ -28778,7 +30009,6 @@ "OutgoingMessage.prototype.destroy": 1, "OutgoingMessage.prototype._send": 1, "this._headerSent": 5, - "typeof": 132, "this._header": 10, "this.output.unshift": 1, "this.outputEncodings.unshift": 1, @@ -28789,12 +30019,10 @@ "this.connection.writable": 3, "this.output.length": 5, "this._buffer": 2, - "c": 775, "this.output.shift": 2, "this.outputEncodings.shift": 2, "this.connection.write": 4, "OutgoingMessage.prototype._buffer": 1, - "length": 48, "this.output.push": 2, "this.outputEncodings.push": 2, "lastEncoding": 2, @@ -28820,11 +30048,9 @@ "contentLengthExpression.test": 1, "dateExpression.test": 1, "expectExpression.test": 1, - "keys": 11, "Object.keys": 5, "isArray": 10, "Array.isArray": 7, - "l": 312, "keys.length": 5, "j": 265, "value.length": 1, @@ -28832,20 +30058,14 @@ "this.agent": 2, "this._send": 8, "OutgoingMessage.prototype.setHeader": 1, - "arguments.length": 18, - "throw": 27, - "Error": 16, - "name.toLowerCase": 6, "this._headerNames": 5, "OutgoingMessage.prototype.getHeader": 1, "OutgoingMessage.prototype.removeHeader": 1, - "delete": 39, "OutgoingMessage.prototype._renderHeaders": 1, "OutgoingMessage.prototype.write": 1, "this._implicitHeader": 2, "TypeError": 2, "chunk.length": 2, - "ret": 62, "Buffer.byteLength": 2, "len.toString": 2, "OutgoingMessage.prototype.addTrailers": 1, @@ -28853,11 +30073,9 @@ "hot": 3, ".toString": 3, "this.write": 1, - "Last": 2, "chunk.": 1, "this._finish": 2, "OutgoingMessage.prototype._finish": 1, - "instanceof": 19, "ServerResponse": 5, "DTRACE_HTTP_SERVER_RESPONSE": 1, "ClientRequest": 6, @@ -28890,7 +30108,6 @@ "statusCode": 7, "reasonPhrase": 4, "headerIndex": 4, - "obj": 40, "this._renderHeaders": 3, "obj.length": 1, "obj.push": 1, @@ -28908,7 +30125,6 @@ "self.options.maxSockets": 1, "Agent.defaultMaxSockets": 2, "self.on": 1, - "host": 29, "port": 29, "localAddress": 15, ".shift": 1, @@ -28929,19 +30145,16 @@ "options.port": 4, "options.host": 4, "options.localAddress": 3, - "s": 290, "onFree": 3, "self.emit": 9, "s.on": 4, "onClose": 3, - "err": 5, "self.removeSocket": 2, "onRemove": 3, "s.removeListener": 3, "Agent.prototype.removeSocket": 1, "index": 5, ".indexOf": 2, - ".splice": 5, ".emit": 1, "globalAgent": 3, "exports.globalAgent": 1, @@ -28955,10 +30168,8 @@ "setHost": 2, "self.socketPath": 4, "options.socketPath": 1, - "method": 30, "self.method": 3, "options.method": 2, - ".toUpperCase": 3, "self.path": 3, "options.path": 2, "self.once": 2, @@ -29013,7 +30224,6 @@ "this._httpMessage": 3, "this.parser": 2, "socketOnData": 1, - "end": 14, "parser.execute": 2, "bytesParsed": 4, "socket.ondata": 3, @@ -29027,20 +30237,12 @@ "parserOnIncomingClient": 1, "shouldKeepAlive": 4, "res.upgrade": 1, - "skip": 5, "isHeadResponse": 2, "res.statusCode": 1, "Clear": 1, - "so": 8, - "we": 25, - "don": 5, - "continue": 18, "ve": 3, - "been": 5, "upgraded": 1, - "via": 2, "WebSockets": 1, - "also": 5, "shouldn": 2, "AGENT": 2, "socket.destroySoon": 2, @@ -29049,16 +30251,12 @@ "close": 2, "free": 1, "number": 13, - "an": 12, "important": 1, "promisy": 1, "thing": 2, - "all": 16, - "the": 107, "onSocket": 3, "self.socket.writable": 1, "self.socket": 5, - ".apply": 7, "arguments_": 2, "self.socket.once": 1, "ClientRequest.prototype.setTimeout": 1, @@ -29102,7 +30300,6 @@ "parsers.alloc": 1, "parser.reinitialize": 1, "this.maxHeadersCount": 2, - "<<": 4, "socket.addListener": 2, "self.listeners": 2, "req.socket": 1, @@ -29127,8 +30324,6 @@ "continueExpression.test": 1, "res._expect_continue": 1, "res.writeContinue": 1, - "Not": 4, - "a": 1489, "response.": 1, "even": 3, "exports._connectionListener": 1, @@ -29144,3668 +30339,8 @@ "exports.Client": 1, "module.deprecate": 2, "exports.createClient": 1, - "cubes": 4, - "list": 21, - "math": 4, - "num": 23, - "opposite": 6, - "race": 4, - "square": 10, - "__slice": 2, - "Array.prototype.slice": 6, - "root": 5, - "Math.sqrt": 2, - "cube": 2, - "runners": 6, - "winner": 6, - "__slice.call": 2, - "print": 2, - "elvis": 4, - "_i": 10, - "_len": 6, - "_results": 6, - "list.length": 5, - "_results.push": 2, - "math.cube": 2, - ".slice": 6, - "window": 18, - "angular": 1, - "Array.prototype.last": 1, - "this.length": 41, - "app": 3, - "angular.module": 1, - "A": 24, - "w": 110, - "ma": 3, - "c.isReady": 4, - "try": 44, - "s.documentElement.doScroll": 2, - "catch": 38, - "c.ready": 7, - "Qa": 1, - "b.src": 4, - "c.ajax": 1, - "async": 5, - "dataType": 6, - "c.globalEval": 1, - "b.text": 3, - "b.textContent": 2, - "b.innerHTML": 3, - "b.parentNode": 4, - "b.parentNode.removeChild": 2, - "X": 6, - "f": 666, - "a.length": 23, - "o": 322, - "c.isFunction": 9, - "d.call": 3, - "J": 5, - ".getTime": 3, - "Y": 3, - "Z": 6, - "na": 1, - ".type": 2, - "c.event.handle.apply": 1, - "oa": 1, - "r": 261, - "c.data": 12, - "a.liveFired": 4, - "i.live": 1, - "a.button": 2, - "a.type": 14, - "u": 304, - "i.live.slice": 1, - "u.length": 3, - "i.origType.replace": 1, - "O": 6, - "f.push": 5, - "i.selector": 3, - "u.splice": 1, - "a.target": 5, - ".closest": 4, - "a.currentTarget": 4, - "j.length": 2, - ".selector": 1, - ".elem": 1, - "i.preType": 2, - "a.relatedTarget": 2, - "d.push": 1, - "elem": 101, - "handleObj": 2, - "d.length": 8, - "j.elem": 2, - "a.data": 2, - "j.handleObj.data": 1, - "a.handleObj": 2, - "j.handleObj": 1, - "j.handleObj.origHandler.apply": 1, - "pa": 1, - "b.replace": 3, - "/": 290, - "./g": 2, - ".replace": 38, - "/g": 37, - "qa": 1, - "a.parentNode": 6, - "a.parentNode.nodeType": 2, - "ra": 1, - "b.each": 1, - "this.nodeName": 4, - ".nodeName": 2, - "f.events": 1, - "e.handle": 2, - "e.events": 2, - "c.event.add": 1, - ".data": 3, - "sa": 2, - ".ownerDocument": 5, - "ta.test": 1, - "c.support.checkClone": 2, - "ua.test": 1, - "c.fragments": 2, - "b.createDocumentFragment": 1, - "c.clean": 1, - "fragment": 27, - "cacheable": 2, - "K": 4, - "c.each": 2, - "va.concat.apply": 1, - "va.slice": 1, - "wa": 1, - "a.document": 3, - "a.nodeType": 27, - "a.defaultView": 2, - "a.parentWindow": 2, - "c.fn.init": 1, - "Ra": 2, - "A.jQuery": 3, - "Sa": 2, - "A.": 3, - "A.document": 1, - "T": 4, - "Ta": 1, - "<[\\w\\W]+>": 4, - "|": 206, - "#": 13, - "Ua": 1, - ".": 91, - "Va": 1, - "S/": 4, - "Wa": 2, - "u00A0": 2, - "Xa": 1, - "<(\\w+)\\s*\\/?>": 4, - "<\\/\\1>": 4, - "P": 4, - "navigator.userAgent": 3, - "xa": 3, - "Q": 6, - "L": 10, - "Object.prototype.toString": 7, - "aa": 1, - "ba": 3, - "Array.prototype.push": 4, - "R": 2, - "ya": 2, - "Array.prototype.indexOf": 4, - "c.fn": 2, - "c.prototype": 1, - "init": 7, - "this.context": 17, - "s.body": 2, - "this.selector": 16, - "Ta.exec": 1, - "b.ownerDocument": 6, - "Xa.exec": 1, - "c.isPlainObject": 3, - "s.createElement": 10, - "c.fn.attr.call": 1, - "f.createElement": 1, - "a.cacheable": 1, - "a.fragment.cloneNode": 1, - "a.fragment": 1, - ".childNodes": 2, - "c.merge": 4, - "s.getElementById": 1, - "b.id": 1, - "T.find": 1, - "/.test": 19, - "s.getElementsByTagName": 2, - "b.jquery": 1, - ".find": 5, - "T.ready": 1, - "a.selector": 4, - "a.context": 2, - "c.makeArray": 3, - "selector": 40, - "jquery": 3, - "size": 6, - "toArray": 2, - "R.call": 2, - "get": 24, - "this.toArray": 3, - "this.slice": 5, - "pushStack": 4, - "c.isArray": 5, - "ba.apply": 1, - "f.prevObject": 1, - "f.context": 1, - "f.selector": 2, - "each": 17, - "ready": 31, - "c.bindReady": 1, - "a.call": 17, - "Q.push": 1, - "eq": 2, - "first": 10, - "this.eq": 4, - "last": 6, - "this.pushStack": 12, - "R.apply": 1, - ".join": 14, - "map": 7, - "c.map": 1, - "this.prevObject": 3, - "push": 11, - "sort": 4, - ".sort": 9, - "splice": 5, - "c.fn.init.prototype": 1, - "c.extend": 7, - "c.fn.extend": 4, - "noConflict": 4, - "isReady": 5, - "c.fn.triggerHandler": 1, - ".triggerHandler": 1, - "bindReady": 5, - "s.readyState": 2, - "s.addEventListener": 3, - "A.addEventListener": 1, - "s.attachEvent": 3, - "A.attachEvent": 1, - "A.frameElement": 1, - "isFunction": 12, - "isPlainObject": 4, - "a.setInterval": 2, - "a.constructor": 2, - "aa.call": 3, - "a.constructor.prototype": 2, - "isEmptyObject": 7, - "parseJSON": 4, - "c.trim": 3, - "a.replace": 7, - "@": 1, - "d*": 8, - "eE": 4, - "s*": 15, - "A.JSON": 1, - "A.JSON.parse": 2, - "Function": 3, - "c.error": 2, - "noop": 3, - "globalEval": 2, - "Va.test": 1, - "s.documentElement": 2, - "d.type": 2, - "c.support.scriptEval": 2, - "d.appendChild": 3, - "s.createTextNode": 2, - "d.text": 1, - "b.insertBefore": 3, - "b.firstChild": 5, - "b.removeChild": 3, - "nodeName": 20, - "a.nodeName": 12, - "a.nodeName.toUpperCase": 2, - "b.toUpperCase": 3, - "b.apply": 2, - "b.call": 4, - "trim": 5, - "makeArray": 3, - "ba.call": 1, - "inArray": 5, - "b.indexOf": 2, - "b.length": 12, - "merge": 2, - "grep": 6, - "f.length": 5, - "f.concat.apply": 1, - "guid": 5, - "proxy": 4, - "a.apply": 2, - "b.guid": 2, - "a.guid": 7, - "c.guid": 1, - "uaMatch": 3, - "a.toLowerCase": 4, - "webkit": 6, - "w.": 17, - "/.exec": 4, - "opera": 4, - ".*version": 4, - "msie": 4, - "/compatible/.test": 1, - "mozilla": 4, - ".*": 20, - "rv": 4, - "browser": 11, - "version": 10, - "c.uaMatch": 1, - "P.browser": 2, - "c.browser": 1, - "c.browser.version": 1, - "P.version": 1, - "c.browser.webkit": 1, - "c.browser.safari": 1, - "c.inArray": 2, - "ya.call": 1, - "s.removeEventListener": 1, - "s.detachEvent": 1, - "c.support": 2, - "d.style.display": 5, - "d.innerHTML": 2, - "d.getElementsByTagName": 6, - "e.length": 9, - "leadingWhitespace": 3, - "d.firstChild.nodeType": 1, - "tbody": 7, - "htmlSerialize": 3, - "style": 30, - "/red/.test": 1, - "j.getAttribute": 2, - "hrefNormalized": 3, - "opacity": 13, - "j.style.opacity": 1, - "cssFloat": 4, - "j.style.cssFloat": 1, - "checkOn": 4, - ".value": 1, - "optSelected": 3, - ".appendChild": 1, - ".selected": 1, - "parentNode": 10, - "d.removeChild": 1, - ".parentNode": 7, - "deleteExpando": 3, - "checkClone": 1, - "scriptEval": 1, - "noCloneEvent": 3, - "boxModel": 1, - "b.type": 4, - "b.appendChild": 1, - "a.insertBefore": 2, - "a.firstChild": 6, - "b.test": 1, - "c.support.deleteExpando": 2, - "a.removeChild": 2, - "d.attachEvent": 2, - "d.fireEvent": 1, - "c.support.noCloneEvent": 1, - "d.detachEvent": 1, - "d.cloneNode": 1, - ".fireEvent": 3, - "s.createDocumentFragment": 1, - "a.appendChild": 3, - "d.firstChild": 2, - "a.cloneNode": 3, - ".cloneNode": 4, - ".lastChild.checked": 2, - "k.style.width": 1, - "k.style.paddingLeft": 1, - "s.body.appendChild": 1, - "c.boxModel": 1, - "c.support.boxModel": 1, - "k.offsetWidth": 1, - "s.body.removeChild": 1, - ".style.display": 5, - "n.setAttribute": 1, - "c.support.submitBubbles": 1, - "c.support.changeBubbles": 1, - "c.props": 2, - "readonly": 3, - "maxlength": 2, - "cellspacing": 2, - "rowspan": 2, - "colspan": 2, - "tabindex": 4, - "usemap": 2, - "frameborder": 2, - "G": 11, - "Ya": 2, - "za": 3, - "cache": 45, - "expando": 14, - "noData": 3, - "embed": 3, - "applet": 2, - "c.noData": 2, - "a.nodeName.toLowerCase": 3, - "c.cache": 2, - "removeData": 8, - "c.isEmptyObject": 1, - "c.removeData": 2, - "c.expando": 2, - "a.removeAttribute": 3, - "this.each": 42, - "a.split": 4, - "this.triggerHandler": 6, - "this.trigger": 2, - ".each": 3, - "queue": 7, - "dequeue": 6, - "c.queue": 3, - "d.shift": 2, - "d.unshift": 2, - "f.call": 1, - "c.dequeue": 4, - "delay": 4, - "c.fx": 1, - "c.fx.speeds": 1, - "this.queue": 4, - "clearQueue": 2, - "Aa": 3, - "t": 436, - "ca": 6, - "Za": 2, - "r/g": 2, - "/href": 1, - "src": 7, - "style/": 1, - "ab": 1, - "button": 24, - "/i": 22, - "bb": 2, - "select": 20, - "textarea": 8, - "area": 2, - "Ba": 3, - "/radio": 1, - "checkbox/": 1, - "attr": 13, - "c.attr": 4, - "removeAttr": 5, - "this.nodeType": 4, - "this.removeAttribute": 1, - "addClass": 2, - "r.addClass": 1, - "r.attr": 1, - ".split": 19, - "e.nodeType": 7, - "e.className": 14, - "j.indexOf": 1, - "removeClass": 2, - "n.removeClass": 1, - "n.attr": 1, - "j.replace": 2, - "toggleClass": 2, - "j.toggleClass": 1, - "j.attr": 1, - "i.hasClass": 1, - "this.className": 10, - "hasClass": 2, - "": 1, - "className": 4, - "replace": 8, - "indexOf": 5, - "val": 13, - "c.nodeName": 4, - "b.attributes.value": 1, - ".specified": 1, - "b.value": 4, - "b.selectedIndex": 2, - "b.options": 1, - "": 1, - "i=": 31, - "selected": 5, - "a=": 23, - "test": 21, - "type": 49, - "support": 13, - "getAttribute": 3, - "on": 37, - "o=": 13, - "n=": 10, - "r=": 18, - "nodeType=": 6, - "call": 9, - "checked=": 1, - "this.selected": 1, - ".val": 5, - "this.selectedIndex": 1, - "this.value": 4, - "attrFn": 2, - "css": 7, - "html": 10, - "text": 14, - "width": 32, - "height": 25, - "offset": 21, - "c.attrFn": 1, - "c.isXMLDoc": 1, - "a.test": 2, - "ab.test": 1, - "a.getAttributeNode": 7, - ".nodeValue": 1, - "b.specified": 2, - "bb.test": 2, - "cb.test": 1, - "a.href": 2, - "c.support.style": 1, - "a.style.cssText": 3, - "a.setAttribute": 7, - "c.support.hrefNormalized": 1, - "a.getAttribute": 11, - "c.style": 1, - "db": 1, - "handle": 15, - "click": 11, - "events": 18, - "altKey": 4, - "attrChange": 4, - "attrName": 4, - "bubbles": 4, - "cancelable": 4, - "charCode": 7, - "clientX": 6, - "clientY": 5, - "ctrlKey": 6, - "currentTarget": 4, - "detail": 3, - "eventPhase": 4, - "fromElement": 6, - "handler": 14, - "keyCode": 6, - "layerX": 3, - "layerY": 3, - "metaKey": 5, - "newValue": 3, - "offsetX": 4, - "offsetY": 4, - "originalTarget": 1, - "pageX": 4, - "pageY": 4, - "prevValue": 3, - "relatedNode": 4, - "relatedTarget": 6, - "screenX": 4, - "screenY": 4, - "shiftKey": 4, - "srcElement": 5, - "toElement": 5, - "view": 4, - "wheelDelta": 3, - "which": 8, - "mouseover": 12, - "mouseout": 12, - "form": 12, - "click.specialSubmit": 2, - "submit": 14, - "image": 5, - "keypress.specialSubmit": 2, - "password": 5, - ".specialSubmit": 2, - "radio": 17, - "checkbox": 14, - "multiple": 7, - "_change_data": 6, - "focusout": 11, - "change": 16, - "file": 5, - ".specialChange": 4, - "focusin": 9, - "bind": 3, - "one": 15, - "unload": 5, - "live": 8, - "lastToggle": 4, - "die": 3, - "hover": 3, - "mouseenter": 9, - "mouseleave": 9, - "focus": 7, - "blur": 8, - "resize": 3, - "scroll": 6, - "dblclick": 3, - "mousedown": 3, - "mouseup": 3, - "mousemove": 3, - "keydown": 4, - "keypress": 4, - "keyup": 3, - "onunload": 1, - "g": 441, - "h": 499, - "q": 34, - "h.nodeType": 4, - "p": 110, - "S": 8, - "H": 8, - "M": 9, - "I": 7, - "f.exec": 2, - "p.push": 2, - "p.length": 10, - "r.exec": 1, - "n.relative": 5, - "ga": 2, - "p.shift": 4, - "n.match.ID.test": 2, - "k.find": 6, - "v.expr": 4, - "k.filter": 5, - "v.set": 5, - "expr": 2, - "p.pop": 4, - "set": 22, - "z": 21, - "h.parentNode": 3, - "D": 9, - "k.error": 2, - "j.call": 2, - ".nodeType": 9, - "E": 11, - "l.push": 2, - "l.push.apply": 1, - "k.uniqueSort": 5, - "B": 5, - "g.sort": 1, - "g.length": 2, - "g.splice": 2, - "k.matches": 1, - "n.order.length": 1, - "n.order": 1, - "n.leftMatch": 1, - ".exec": 2, - "q.splice": 1, - "y.substr": 1, - "y.length": 1, - "Syntax": 3, - "unrecognized": 3, - "expression": 4, - "ID": 8, - "NAME": 2, - "TAG": 2, - "u00c0": 2, - "uFFFF": 2, - "leftMatch": 2, - "attrMap": 2, - "attrHandle": 2, - "g.getAttribute": 1, - "relative": 4, - "W/.test": 1, - "h.toLowerCase": 2, - "": 1, - "previousSibling": 5, - "nth": 5, - "odd": 2, - "not": 26, - "reset": 2, - "contains": 8, - "only": 10, - "id": 38, - "class": 5, - "Array": 3, - "sourceIndex": 1, - "div": 28, - "script": 7, - "": 4, - "name=": 2, - "href=": 2, - "": 2, - "

": 2, - "

": 2, - ".TEST": 2, - "
": 3, - "CLASS": 1, - "HTML": 9, - "find": 7, - "filter": 10, - "nextSibling": 3, - "iframe": 3, - "": 1, - "": 1, - "
": 1, - "
": 1, - "": 4, - "
": 5, - "": 3, - "": 3, - "": 2, - "": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "before": 8, - "after": 7, - "position": 7, - "absolute": 2, - "top": 12, - "left": 14, - "margin": 8, - "border": 7, - "px": 31, - "solid": 2, - "#000": 2, - "padding": 4, - "": 1, - "": 1, - "fixed": 1, - "marginTop": 3, - "marginLeft": 2, - "using": 5, - "borderTopWidth": 1, - "borderLeftWidth": 1, - "Left": 1, - "Top": 1, - "pageXOffset": 2, - "pageYOffset": 1, - "Height": 1, - "Width": 1, - "inner": 2, - "outer": 2, - "scrollTo": 1, - "CSS1Compat": 1, - "client": 3, - "document": 26, - "window.document": 2, - "navigator": 3, - "window.navigator": 2, - "location": 2, - "window.location": 5, - "jQuery": 48, - "context": 48, - "The": 9, - "is": 67, - "actually": 2, - "just": 2, - "jQuery.fn.init": 2, - "rootjQuery": 8, - "Map": 4, - "over": 7, - "of": 28, - "overwrite": 4, - "_jQuery": 4, - "window.": 6, - "central": 2, - "reference": 5, - "simple": 3, - "way": 2, - "check": 8, - "strings": 8, - "both": 2, - "optimize": 3, - "quickExpr": 2, - "Check": 10, - "has": 9, - "non": 8, - "whitespace": 7, - "character": 3, - "it": 112, - "rnotwhite": 2, - "Used": 3, - "trimming": 2, - "trimLeft": 4, - "trimRight": 4, - "digits": 3, - "rdigit": 1, - "d/": 3, - "Match": 3, - "standalone": 2, - "tag": 2, - "rsingleTag": 2, - "JSON": 5, - "RegExp": 12, - "rvalidchars": 2, - "rvalidescape": 2, - "rvalidbraces": 2, - "Useragent": 2, - "rwebkit": 2, - "ropera": 2, - "rmsie": 2, - "rmozilla": 2, - "Keep": 2, - "UserAgent": 2, - "use": 10, - "with": 18, - "jQuery.browser": 4, - "userAgent": 3, - "For": 5, - "matching": 3, - "engine": 2, - "and": 42, - "browserMatch": 3, - "deferred": 25, - "used": 13, - "DOM": 21, - "readyList": 6, - "event": 31, - "DOMContentLoaded": 14, - "Save": 2, - "some": 2, - "core": 2, - "methods": 8, - "toString": 4, - "hasOwn": 2, - "String.prototype.trim": 3, - "Class": 2, - "pairs": 2, - "class2type": 3, - "jQuery.fn": 4, - "jQuery.prototype": 2, - "match": 30, - "doc": 4, - "Handle": 14, - "DOMElement": 2, - "selector.nodeType": 2, - "exists": 9, - "once": 4, - "finding": 2, - "Are": 2, - "dealing": 2, - "selector.charAt": 4, - "selector.length": 4, - "Assume": 2, - "are": 18, - "regex": 3, - "quickExpr.exec": 2, - "Verify": 3, - "no": 19, - "was": 6, - "specified": 4, - "#id": 3, - "HANDLE": 2, - "array": 7, - "context.ownerDocument": 2, - "If": 21, - "single": 2, - "passed": 5, - "clean": 3, - "like": 5, - "method.": 3, - "jQuery.fn.init.prototype": 2, - "jQuery.extend": 11, - "jQuery.fn.extend": 4, - "copy": 16, - "copyIsArray": 2, - "clone": 5, - "deep": 12, - "situation": 2, - "boolean": 8, - "when": 20, - "something": 3, - "possible": 3, - "jQuery.isFunction": 6, - "extend": 13, - "itself": 4, - "argument": 2, - "Only": 5, - "deal": 2, - "null/undefined": 2, - "values": 10, - "Extend": 2, - "base": 2, - "Prevent": 2, - "never": 2, - "ending": 2, - "loop": 7, - "Recurse": 2, - "bring": 2, - "Return": 2, - "modified": 3, - "Is": 2, - "be": 12, - "Set": 4, - "occurs.": 2, - "counter": 2, - "track": 2, - "how": 2, - "many": 3, - "items": 2, - "wait": 12, - "fires.": 2, - "See": 9, - "#6781": 2, - "readyWait": 6, - "Hold": 2, - "release": 2, - "holdReady": 3, - "hold": 6, - "jQuery.readyWait": 6, - "jQuery.ready": 16, - "Either": 2, - "released": 2, - "DOMready/load": 2, - "yet": 2, - "jQuery.isReady": 6, - "Make": 17, - "sure": 18, - "at": 58, - "least": 4, - "IE": 28, - "gets": 6, - "little": 4, - "overzealous": 4, - "ticket": 4, - "#5443": 4, - "Remember": 2, - "normal": 2, - "Ready": 2, - "fired": 12, - "decrement": 2, - "need": 10, - "there": 6, - "functions": 6, - "bound": 8, - "execute": 4, - "readyList.resolveWith": 1, - "Trigger": 2, - "any": 12, - "jQuery.fn.trigger": 2, - ".trigger": 3, - ".unbind": 4, - "jQuery._Deferred": 3, - "Catch": 2, - "cases": 4, - "where": 2, - ".ready": 2, - "called": 2, - "already": 6, - "occurred.": 2, - "document.readyState": 4, - "asynchronously": 2, - "allow": 6, - "scripts": 2, - "opportunity": 2, - "Mozilla": 2, - "Opera": 2, - "nightlies": 3, - "currently": 4, - "document.addEventListener": 6, - "Use": 7, - "handy": 2, - "fallback": 4, - "window.onload": 4, - "will": 7, - "always": 6, - "work": 6, - "window.addEventListener": 2, - "model": 14, - "document.attachEvent": 6, - "ensure": 2, - "firing": 16, - "onload": 2, - "maybe": 2, - "late": 2, - "but": 4, - "safe": 3, - "iframes": 2, - "window.attachEvent": 2, - "frame": 23, - "continually": 2, - "see": 6, - "toplevel": 7, - "window.frameElement": 2, - "document.documentElement.doScroll": 4, - "doScrollCheck": 6, - "test/unit/core.js": 2, - "details": 3, - "concerning": 2, - "isFunction.": 2, - "Since": 3, - "aren": 5, - "pass": 7, - "through": 3, - "as": 11, - "well": 2, - "jQuery.type": 4, - "obj.nodeType": 2, - "jQuery.isWindow": 2, - "own": 4, - "property": 15, - "must": 4, - "Object": 4, - "obj.constructor": 2, - "hasOwn.call": 6, - "obj.constructor.prototype": 2, - "Own": 2, - "properties": 7, - "enumerated": 2, - "firstly": 2, - "speed": 4, - "up": 4, - "then": 8, - "own.": 2, - "msg": 4, - "leading/trailing": 2, - "removed": 3, - "can": 10, - "breaking": 1, - "spaces": 3, - "rnotwhite.test": 2, - "xA0": 7, - "document.removeEventListener": 2, - "document.detachEvent": 2, - "trick": 2, - "Diego": 2, - "Perini": 2, - "http": 6, - "//javascript.nwbox.com/IEContentLoaded/": 2, - "waiting": 2, - "Promise": 1, - "promiseMethods": 3, - "Static": 1, - "sliceDeferred": 1, - "Create": 1, - "callbacks": 10, - "_Deferred": 4, - "stored": 4, - "args": 31, - "avoid": 5, - "doing": 3, - "flag": 1, - "know": 3, - "cancelled": 5, - "done": 10, - "f1": 1, - "f2": 1, - "...": 1, - "_fired": 5, - "args.length": 3, - "deferred.done.apply": 2, - "callbacks.push": 1, - "deferred.resolveWith": 5, - "resolve": 7, - "given": 3, - "resolveWith": 4, - "make": 2, - "available": 1, - "#8421": 1, - "callbacks.shift": 1, - "finally": 3, - "Has": 1, - "resolved": 1, - "isResolved": 3, - "Cancel": 1, - "cancel": 6, - "Full": 1, - "fledged": 1, - "two": 1, - "Deferred": 5, - "func": 3, - "failDeferred": 1, - "promise": 14, - "Add": 4, - "errorDeferred": 1, - "doneCallbacks": 2, - "failCallbacks": 2, - "deferred.done": 2, - ".fail": 2, - ".fail.apply": 1, - "fail": 10, - "failDeferred.done": 1, - "rejectWith": 2, - "failDeferred.resolveWith": 1, - "reject": 4, - "failDeferred.resolve": 1, - "isRejected": 2, - "failDeferred.isResolved": 1, - "pipe": 2, - "fnDone": 2, - "fnFail": 2, - "jQuery.Deferred": 1, - "newDefer": 3, - "jQuery.each": 2, - "fn": 14, - "action": 3, - "returned": 4, - "fn.apply": 1, - "returned.promise": 2, - ".then": 3, - "newDefer.resolve": 1, - "newDefer.reject": 1, - ".promise": 5, - "Get": 4, - "provided": 1, - "aspect": 1, - "added": 1, - "promiseMethods.length": 1, - "failDeferred.cancel": 1, - "deferred.cancel": 2, - "Unexpose": 1, - "Call": 1, - "func.call": 1, - "helper": 1, - "firstParam": 6, - "count": 4, - "<=>": 1, - "1": 97, - "resolveFunc": 2, - "sliceDeferred.call": 2, - "Strange": 1, - "bug": 3, - "FF4": 1, - "Values": 1, - "changed": 3, - "onto": 2, - "sometimes": 1, - "outside": 2, - ".when": 1, - "Cloning": 2, - "into": 2, - "fresh": 1, - "solves": 1, - "issue": 1, - "deferred.reject": 1, - "deferred.promise": 1, - "jQuery.support": 1, - "document.createElement": 26, - "documentElement": 2, - "document.documentElement": 2, - "opt": 2, - "marginDiv": 5, - "bodyStyle": 1, - "tds": 6, - "isSupported": 7, - "Preliminary": 1, - "tests": 48, - "div.setAttribute": 1, - "div.innerHTML": 7, - "div.getElementsByTagName": 6, - "Can": 2, - "automatically": 2, - "inserted": 1, - "insert": 1, - "them": 3, - "empty": 3, - "tables": 1, - "link": 2, - "elements": 9, - "serialized": 3, - "correctly": 1, - "innerHTML": 1, - "This": 3, - "requires": 1, - "wrapper": 1, - "information": 5, - "from": 7, - "uses": 3, - ".cssText": 2, - "instead": 6, - "/top/.test": 2, - "URLs": 1, - "optgroup": 5, - "opt.selected": 1, - "Test": 3, - "setAttribute": 1, - "camelCase": 3, - "class.": 1, - "works": 1, - "attrFixes": 1, - "get/setAttribute": 1, - "ie6/7": 1, - "getSetAttribute": 3, - "div.className": 1, - "Will": 2, - "defined": 3, - "later": 1, - "submitBubbles": 3, - "changeBubbles": 3, - "focusinBubbles": 2, - "inlineBlockNeedsLayout": 3, - "shrinkWrapBlocks": 2, - "reliableMarginRight": 2, - "checked": 4, - "status": 3, - "properly": 2, - "cloned": 1, - "input.checked": 1, - "support.noCloneChecked": 1, - "input.cloneNode": 1, - ".checked": 2, - "inside": 3, - "disabled": 11, - "selects": 1, - "Fails": 2, - "Internet": 1, - "Explorer": 1, - "div.test": 1, - "support.deleteExpando": 1, - "div.addEventListener": 1, - "div.attachEvent": 2, - "div.fireEvent": 1, - "node": 23, - "being": 2, - "appended": 2, - "input.value": 5, - "input.setAttribute": 5, - "support.radioValue": 2, - "div.appendChild": 4, - "document.createDocumentFragment": 3, - "fragment.appendChild": 2, - "div.firstChild": 3, - "WebKit": 9, - "doesn": 2, - "inline": 3, - "display": 7, - "none": 4, - "GC": 2, - "references": 1, - "across": 1, - "JS": 7, - "boundary": 1, - "isNode": 11, - "elem.nodeType": 8, - "nodes": 14, - "global": 5, - "attached": 1, - "directly": 2, - "occur": 1, - "jQuery.cache": 3, - "defining": 1, - "objects": 7, - "its": 2, - "allows": 1, - "code": 2, - "shortcut": 1, - "same": 1, - "jQuery.expando": 12, - "Avoid": 1, - "more": 6, - "than": 3, - "trying": 1, - "pvt": 8, - "internalKey": 12, - "getByName": 3, - "unique": 2, - "since": 1, - "their": 3, - "ends": 1, - "jQuery.uuid": 1, - "TODO": 2, - "hack": 2, - "ONLY.": 2, - "Avoids": 2, - "exposing": 2, - "metadata": 2, - "plain": 2, - ".toJSON": 4, - "jQuery.noop": 2, - "An": 1, - "jQuery.data": 15, - "key/value": 1, - "pair": 1, - "shallow": 1, - "copied": 1, - "existing": 1, - "thisCache": 15, - "Internal": 1, - "separate": 1, - "destroy": 1, - "unless": 2, - "internal": 8, - "had": 1, - "isEmptyDataObject": 3, - "internalCache": 3, - "Browsers": 1, - "deletion": 1, - "refuse": 1, - "expandos": 2, - "other": 3, - "browsers": 2, - "faster": 1, - "iterating": 1, - "persist": 1, - "existed": 1, - "Otherwise": 2, - "eliminate": 2, - "lookups": 2, - "entries": 2, - "longer": 2, - "exist": 2, - "does": 9, - "us": 2, - "nor": 2, - "have": 6, - "removeAttribute": 3, - "Document": 2, - "these": 2, - "jQuery.support.deleteExpando": 3, - "elem.removeAttribute": 6, - "only.": 2, - "_data": 3, - "determining": 3, - "acceptData": 3, - "elem.nodeName": 2, - "jQuery.noData": 2, - "elem.nodeName.toLowerCase": 2, - "elem.getAttribute": 7, - ".attributes": 2, - "attr.length": 2, - ".name": 3, - "name.indexOf": 2, - "jQuery.camelCase": 6, - "name.substring": 2, - "dataAttr": 6, - "parts": 28, - "key.split": 2, - "Try": 4, - "fetch": 4, - "internally": 5, - "jQuery.removeData": 2, - "nothing": 2, - "found": 10, - "HTML5": 3, - "attribute": 5, - "key.replace": 2, - "rmultiDash": 3, - ".toLowerCase": 7, - "jQuery.isNaN": 1, - "rbrace.test": 2, - "jQuery.parseJSON": 2, - "isn": 2, - "option.selected": 2, - "jQuery.support.optDisabled": 2, - "option.disabled": 2, - "option.getAttribute": 2, - "option.parentNode.disabled": 2, - "jQuery.nodeName": 3, - "option.parentNode": 2, - "specific": 2, - "We": 6, - "get/set": 2, - "attributes": 14, - "comment": 3, - "nType": 8, - "jQuery.attrFn": 2, - "Fallback": 2, - "prop": 24, - "supported": 2, - "jQuery.prop": 2, - "hooks": 14, - "notxml": 8, - "jQuery.isXMLDoc": 2, - "Normalize": 1, - "needed": 2, - "jQuery.attrFix": 2, - "jQuery.attrHooks": 2, - "boolHook": 3, - "rboolean.test": 4, - "value.toLowerCase": 2, - "formHook": 3, - "forms": 1, - "certain": 2, - "characters": 6, - "rinvalidChar.test": 1, - "jQuery.removeAttr": 2, - "hooks.set": 2, - "elem.setAttribute": 2, - "hooks.get": 2, - "Non": 3, - "existent": 2, - "normalize": 2, - "propName": 8, - "jQuery.support.getSetAttribute": 1, - "jQuery.attr": 2, - "elem.removeAttributeNode": 1, - "elem.getAttributeNode": 1, - "corresponding": 2, - "jQuery.propFix": 2, - "attrHooks": 3, - "tabIndex": 4, - "readOnly": 2, - "htmlFor": 2, - "maxLength": 2, - "cellSpacing": 2, - "cellPadding": 2, - "rowSpan": 2, - "colSpan": 2, - "useMap": 2, - "frameBorder": 2, - "contentEditable": 2, - "auto": 3, - "&": 13, - "getData": 3, - "setData": 3, - "changeData": 3, - "bubbling": 1, - "live.": 2, - "hasDuplicate": 1, - "baseHasDuplicate": 2, - "rBackslash": 1, - "rNonWord": 1, - "W/": 2, - "Sizzle": 1, - "results": 4, - "seed": 1, - "origContext": 1, - "context.nodeType": 2, - "checkSet": 1, - "extra": 1, - "cur": 6, - "pop": 1, - "prune": 1, - "contextXML": 1, - "Sizzle.isXML": 1, - "soFar": 1, - "Reset": 1, - "cy": 4, - "f.isWindow": 2, - "cv": 2, - "cj": 4, - ".appendTo": 2, - "b.css": 1, - "b.remove": 1, - "ck": 5, - "c.createElement": 12, - "ck.frameBorder": 1, - "ck.width": 1, - "ck.height": 1, - "c.body.appendChild": 1, - "cl": 3, - "ck.createElement": 1, - "ck.contentWindow": 1, - "ck.contentDocument": 1, - ".document": 1, - "cl.write": 1, - "cl.createElement": 1, - "cl.body.appendChild": 1, - "f.css": 24, - "c.body.removeChild": 1, - "cu": 18, - "f.each": 21, - "cp.concat.apply": 1, - "cp.slice": 1, - "ct": 34, - "cq": 3, - "cs": 3, - "f.now": 2, - "ci": 29, - "a.ActiveXObject": 3, - "ch": 58, - "a.XMLHttpRequest": 1, - "a.dataFilter": 2, - "a.dataType": 1, - "a.dataTypes": 2, - "a.converters": 3, - "o.split": 1, - "f.error": 4, - "m.replace": 1, - "a.contents": 1, - "a.responseFields": 1, - "f.shift": 1, - "a.mimeType": 1, - "c.getResponseHeader": 1, - ".test": 1, - "f.unshift": 2, - "b_": 4, - "f.isArray": 8, - "bF.test": 1, - "c.dataTypes": 1, - "h.length": 3, - "bU": 4, - "c.dataTypes.unshift": 1, - "bZ": 3, - "f.isFunction": 21, - "b.toLowerCase": 3, - "bQ": 3, - "h.substr": 1, - "bD": 3, - "bx": 2, - "a.offsetWidth": 6, - "a.offsetHeight": 2, - "bn": 2, - "f.ajax": 3, - "f.globalEval": 2, - "bf": 6, - "bm": 3, - "f.nodeName": 16, - "bl": 3, - "a.getElementsByTagName": 9, - "f.grep": 3, - "a.defaultChecked": 1, - "a.checked": 4, - "bk": 5, - "a.querySelectorAll": 1, - "bj": 3, - "b.nodeType": 6, - "b.clearAttributes": 2, - "b.mergeAttributes": 2, - "b.nodeName.toLowerCase": 1, - "b.outerHTML": 1, - "a.outerHTML": 1, - "b.selected": 1, - "a.defaultSelected": 1, - "b.defaultValue": 1, - "a.defaultValue": 1, - "b.defaultChecked": 1, - "b.checked": 1, - "a.value": 8, - "b.removeAttribute": 3, - "f.expando": 23, - "bi": 27, - "f.hasData": 2, - "f.data": 25, - "d.events": 1, - "f.extend": 23, - "": 1, - "bh": 1, - "table": 6, - "getElementsByTagName": 1, - "0": 220, - "appendChild": 1, - "ownerDocument": 9, - "createElement": 3, - "b=": 25, - "e=": 21, - "nodeType": 1, - "d=": 15, - "W": 3, - "N": 2, - "f._data": 15, - "r.live": 1, - "a.target.disabled": 1, - "a.namespace": 1, - "a.namespace.split": 1, - "r.live.slice": 1, - "s.length": 2, - "g.origType.replace": 1, - "q.push": 1, - "g.selector": 3, - "s.splice": 1, - "m.selector": 1, - "n.test": 2, - "g.namespace": 1, - "m.elem.disabled": 1, - "m.elem": 1, - "g.preType": 3, - "f.contains": 5, - "level": 3, - "m.level": 1, - "": 1, - "e.elem": 2, - "e.handleObj.data": 1, - "e.handleObj": 1, - "e.handleObj.origHandler.apply": 1, - "a.isPropagationStopped": 1, - "e.level": 1, - "a.isImmediatePropagationStopped": 1, - "e.type": 6, - "e.originalEvent": 1, - "e.liveFired": 1, - "f.event.handle.call": 1, - ".preventDefault": 1, - "F": 8, - "f.removeData": 4, - "i.resolve": 1, - "c.replace": 4, - "f.isNaN": 3, - "i.test": 1, - "f.parseJSON": 2, - "a.navigator": 1, - "a.location": 1, - "e.isReady": 1, - "c.documentElement.doScroll": 2, - "e.ready": 6, - "e.fn.init": 1, - "a.jQuery": 2, - "a.": 2, - "d.userAgent": 1, - "C": 4, - "e.fn": 2, - "e.prototype": 1, - "c.body": 4, - "a.charAt": 2, - "i.exec": 1, - "d.ownerDocument": 1, - "n.exec": 1, - "e.isPlainObject": 1, - "e.fn.attr.call": 1, - "k.createElement": 1, - "e.buildFragment": 1, - "j.cacheable": 1, - "e.clone": 1, - "j.fragment": 2, - "e.merge": 3, - "c.getElementById": 1, - "h.id": 1, - "f.find": 2, - "d.jquery": 1, - "e.isFunction": 5, - "f.ready": 1, - "e.makeArray": 1, - "D.call": 4, - "e.isArray": 2, - "C.apply": 1, - "d.prevObject": 1, - "d.context": 2, - "d.selector": 2, - "e.each": 2, - "e.bindReady": 1, - "y.done": 1, - "D.apply": 1, - "e.map": 1, - "e.fn.init.prototype": 1, - "e.extend": 2, - "e.fn.extend": 1, - "": 1, - "f=": 13, - "g=": 15, - "h=": 19, - "jQuery=": 2, - "isReady=": 1, - "y.resolveWith": 1, - "e.fn.trigger": 1, - "e._Deferred": 1, - "c.readyState": 2, - "c.addEventListener": 4, - "a.addEventListener": 4, - "c.attachEvent": 3, - "a.attachEvent": 6, - "a.frameElement": 1, - "isWindow": 2, - "isNaN": 6, - "m.test": 1, - "String": 2, - "A.call": 1, - "e.isWindow": 2, - "B.call": 3, - "e.trim": 1, - "a.JSON": 1, - "a.JSON.parse": 2, - "o.test": 1, - "e.error": 2, - "parseXML": 1, - "a.DOMParser": 1, - "DOMParser": 1, - "d.parseFromString": 1, - "ActiveXObject": 1, - "c.async": 4, - "c.loadXML": 1, - "c.documentElement": 4, - "d.nodeName": 4, - "j.test": 3, - "a.execScript": 1, - "a.eval.call": 1, - "c.apply": 2, - "c.call": 3, - "E.call": 1, - "C.call": 1, - "F.call": 1, - "c.length": 8, - "": 1, - "j=": 14, - "k=": 11, - "h.concat.apply": 1, - "f.concat": 1, - "g.guid": 3, - "e.guid": 3, - "access": 2, - "e.access": 1, - "now": 5, - "s.exec": 1, - "t.exec": 1, - "u.exec": 1, - "a.indexOf": 2, - "v.exec": 1, - "sub": 4, - "a.fn.init": 2, - "a.superclass": 1, - "a.fn": 2, - "a.prototype": 1, - "a.fn.constructor": 1, - "a.sub": 1, - "this.sub": 2, - "e.fn.init.call": 1, - "a.fn.init.prototype": 1, - "e.uaMatch": 1, - "x.browser": 2, - "e.browser": 1, - "e.browser.version": 1, - "x.version": 1, - "e.browser.webkit": 1, - "e.browser.safari": 1, - "c.removeEventListener": 2, - "c.detachEvent": 1, - "": 1, - "c=": 24, - "shift": 1, - "apply": 8, - "h.call": 2, - "g.resolveWith": 3, - "<=1&&a&&f.isFunction(a.promise)?a:f.Deferred();if(d>": 1, - "g.reject": 1, - "g.promise": 1, - "f.support": 2, - "a.innerHTML": 7, - "f.appendChild": 1, - "a.firstChild.nodeType": 2, - "e.getAttribute": 2, - "e.style.opacity": 1, - "e.style.cssFloat": 1, - "h.value": 3, - "g.selected": 1, - "a.className": 1, - "h.checked": 2, - "j.noCloneChecked": 1, - "h.cloneNode": 1, - "f.disabled": 1, - "j.optDisabled": 1, - "g.disabled": 1, - "j.deleteExpando": 1, - "a.fireEvent": 1, - "j.noCloneEvent": 1, - "a.detachEvent": 1, - "h.setAttribute": 2, - "j.radioValue": 1, - "c.createDocumentFragment": 1, - "k.appendChild": 1, - "j.checkClone": 1, - "k.cloneNode": 1, - "a.style.width": 1, - "a.style.paddingLeft": 1, - "visibility": 3, - "background": 56, - "l.style": 1, - "l.appendChild": 1, - "j.appendChecked": 1, - "j.boxModel": 1, - "a.style": 8, - "a.style.display": 3, - "a.style.zoom": 1, - "j.inlineBlockNeedsLayout": 1, - "j.shrinkWrapBlocks": 1, - ".offsetHeight": 4, - "j.reliableHiddenOffsets": 1, - "c.defaultView": 2, - "c.defaultView.getComputedStyle": 3, - "i.style.width": 1, - "i.style.marginRight": 1, - "j.reliableMarginRight": 1, - "parseInt": 12, - "marginRight": 2, - ".marginRight": 2, - "l.innerHTML": 1, - "f.boxModel": 1, - "f.support.boxModel": 4, - "uuid": 2, - "f.fn.jquery": 1, - "Math.random": 2, - "D/g": 2, - "hasData": 2, - "f.cache": 5, - "f.acceptData": 4, - "f.uuid": 1, - "f.noop": 4, - "f.camelCase": 5, - ".events": 1, - "f.support.deleteExpando": 3, - "f.noData": 2, - "f.fn.extend": 9, - "g.indexOf": 2, - "g.substring": 1, - "b.triggerHandler": 2, - "_mark": 2, - "_unmark": 3, - "f.makeArray": 5, - "e.push": 3, - "f.queue": 3, - "c.shift": 2, - "c.unshift": 1, - "f.dequeue": 4, - "f.fx": 2, - "f.fx.speeds": 1, - "d.resolveWith": 1, - "f.Deferred": 2, - "f._Deferred": 2, - "l.done": 1, - "d.promise": 1, - "rea": 1, - "autofocus": 1, - "autoplay": 1, - "controls": 1, - "defer": 1, - "required": 1, - "scoped": 1, - "f.access": 3, - "f.attr": 2, - "f.removeAttr": 3, - "f.prop": 2, - "removeProp": 1, - "f.propFix": 6, - "c.addClass": 1, - "f.trim": 2, - "c.removeClass": 1, - "g.nodeType": 6, - "g.className": 4, - "h.replace": 2, - "d.toggleClass": 1, - "d.attr": 1, - "h.hasClass": 1, - "": 1, - "f.valHooks": 7, - "e.nodeName.toLowerCase": 1, - "c.get": 1, - "e.value": 1, - "e.val": 1, - "f.map": 5, - "this.nodeName.toLowerCase": 1, - "this.type": 3, - "c.set": 1, - "valHooks": 1, - "a.attributes.value": 1, - "a.text": 1, - "a.selectedIndex": 3, - "a.options": 2, - "": 3, - "optDisabled": 1, - "selected=": 1, - "attrFix": 1, - "f.attrFn": 3, - "f.isXMLDoc": 4, - "f.attrFix": 3, - "f.attrHooks": 5, - "t.test": 2, - "d.toLowerCase": 1, - "c.toLowerCase": 4, - "u.test": 1, - "i.set": 1, - "i.get": 1, - "f.support.getSetAttribute": 2, - "a.removeAttributeNode": 1, - "q.test": 1, - "f.support.radioValue": 1, - "c.specified": 1, - "c.value": 1, - "r.test": 1, - "s.test": 1, - "propFix": 1, - "cellpadding": 1, - "contenteditable": 1, - "f.propHooks": 1, - "h.set": 1, - "h.get": 1, - "propHooks": 1, - "f.attrHooks.value": 1, - "v.get": 1, - "f.attrHooks.name": 1, - "f.valHooks.button": 1, - "d.nodeValue": 3, - "f.support.hrefNormalized": 1, - "f.support.style": 1, - "f.attrHooks.style": 1, - "a.style.cssText.toLowerCase": 1, - "f.support.optSelected": 1, - "f.propHooks.selected": 2, - "b.parentNode.selectedIndex": 1, - "f.support.checkOn": 1, - "f.inArray": 4, - "s.": 1, - "f.event": 2, - "d.handler": 1, - "g.handler": 1, - "d.guid": 4, - "f.guid": 3, - "i.events": 2, - "i.handle": 2, - "f.event.triggered": 3, - "f.event.handle.apply": 1, - "k.elem": 2, - "c.split": 2, - "l.indexOf": 1, - "l.split": 1, - "n.shift": 1, - "h.namespace": 2, - "n.slice": 1, - "h.type": 1, - "h.guid": 2, - "f.event.special": 5, - "p.setup": 1, - "p.setup.call": 1, - "p.add": 1, - "p.add.call": 1, - "h.handler.guid": 2, - "o.push": 1, - "f.event.global": 2, - "remove": 9, - "s.events": 1, - "c.type": 9, - "c.handler": 1, - "c.charAt": 1, - "f.event.remove": 5, - "h.indexOf": 3, - "h.split": 2, - "m.shift": 1, - "m.slice": 1, - "q.namespace": 1, - "q.handler": 1, - "p.splice": 1, - "": 1, - "u=": 12, - "elem=": 4, - "customEvent": 1, - "trigger": 4, - "h.slice": 1, - "i.shift": 1, - "i.sort": 1, - "f.event.customEvent": 1, - "f.Event": 2, - "c.exclusive": 2, - "c.namespace": 2, - "i.join": 2, - "c.namespace_re": 1, - "c.preventDefault": 3, - "c.stopPropagation": 1, - "b.events": 4, - "f.event.trigger": 6, - "b.handle.elem": 2, - "c.result": 3, - "c.target": 3, - "do": 15, - "c.currentTarget": 2, - "m.apply": 1, - "k.parentNode": 1, - "k.ownerDocument": 1, - "c.target.ownerDocument": 1, - "c.isPropagationStopped": 1, - "c.isDefaultPrevented": 2, - "o._default": 1, - "o._default.call": 1, - "e.ownerDocument": 1, - "f.event.fix": 2, - "a.event": 1, - "Array.prototype.slice.call": 1, - "namespace_re": 1, - "namespace": 1, - "handler=": 1, - "data=": 2, - "handleObj=": 1, - "result=": 1, - "preventDefault": 4, - "stopPropagation": 5, - "isImmediatePropagationStopped": 2, - "props": 21, - "split": 4, - "fix": 1, - "Event": 3, - "target=": 2, - "relatedTarget=": 1, - "fromElement=": 1, - "pageX=": 2, - "scrollLeft": 2, - "clientLeft": 2, - "pageY=": 1, - "scrollTop": 2, - "clientTop": 2, - "which=": 3, - "metaKey=": 1, - "2": 66, - "3": 13, - "4": 4, - "1e8": 1, - "special": 3, - "setup": 5, - "teardown": 6, - "origType": 2, - "beforeunload": 1, - "onbeforeunload=": 3, - "removeEvent=": 1, - "removeEventListener": 3, - "detachEvent": 2, - "Event=": 1, - "originalEvent=": 1, - "type=": 5, - "isDefaultPrevented=": 2, - "defaultPrevented": 1, - "returnValue=": 2, - "getPreventDefault": 2, - "timeStamp=": 1, - "prototype=": 2, - "originalEvent": 2, - "isPropagationStopped=": 1, - "cancelBubble=": 1, - "stopImmediatePropagation": 1, - "isImmediatePropagationStopped=": 1, - "isDefaultPrevented": 1, - "isPropagationStopped": 1, - "G=": 1, - "H=": 1, - "submit=": 1, - "specialSubmit": 3, - "closest": 3, - "keyCode=": 1, - "J=": 1, - "selectedIndex": 1, - "a.selected": 1, - "z.test": 3, - "d.readOnly": 1, - "c.liveFired": 1, - "f.event.special.change": 1, - "filters": 1, - "beforedeactivate": 1, - "K.call": 2, - "a.keyCode": 2, - "beforeactivate": 1, - "f.event.add": 2, - "f.event.special.change.filters": 1, - "I.focus": 1, - "I.beforeactivate": 1, - "f.support.focusinBubbles": 1, - "c.originalEvent": 1, - "a.preventDefault": 3, - "f.fn": 9, - "e.apply": 1, - "this.one": 1, - "unbind": 2, - "this.unbind": 2, - "delegate": 1, - "this.live": 1, - "undelegate": 1, - "this.die": 1, - "triggerHandler": 1, - "%": 26, - ".guid": 1, - "this.click": 1, - "this.mouseenter": 1, - ".mouseleave": 1, - "g.charAt": 1, - "n.unbind": 1, - "y.exec": 1, - "a.push": 2, - "n.length": 1, - "": 1, - "this.bind": 2, - "": 2, - "sizcache=": 4, - "sizset": 2, - "sizset=": 2, - "toLowerCase": 3, - "d.nodeType": 5, - "k.isXML": 4, - "a.exec": 2, - "x.push": 1, - "x.length": 8, - "m.exec": 1, - "l.relative": 6, - "x.shift": 4, - "l.match.ID.test": 2, - "q.expr": 4, - "q.set": 4, - "x.pop": 4, - "d.parentNode": 4, - "e.call": 1, - "f.push.apply": 1, - "k.contains": 5, - "a.sort": 1, - "": 1, - "matches=": 1, - "matchesSelector=": 1, - "l.order.length": 1, - "l.order": 1, - "l.leftMatch": 1, - "j.substr": 1, - "": 1, - "__sizzle__": 1, - "sizzle": 1, - "l.match.PSEUDO.test": 1, - "a.document.nodeType": 1, - "a.getElementsByClassName": 3, - "a.lastChild.className": 1, - "l.order.splice": 1, - "l.find.CLASS": 1, - "b.getElementsByClassName": 2, - "c.documentElement.contains": 1, - "a.contains": 2, - "c.documentElement.compareDocumentPosition": 1, - "a.compareDocumentPosition": 1, - "a.ownerDocument": 1, - ".documentElement": 1, - "b.nodeName": 2, - "l.match.PSEUDO.exec": 1, - "l.match.PSEUDO": 1, - "f.expr": 4, - "k.selectors": 1, - "f.expr.filters": 3, - "f.unique": 4, - "f.text": 2, - "k.getText": 1, - "/Until": 1, - "parents": 2, - "prevUntil": 2, - "prevAll": 2, - "U": 1, - "f.expr.match.POS": 1, - "V": 2, - "children": 3, - "contents": 4, - "next": 9, - "prev": 2, - ".filter": 2, - "": 1, - "e.splice": 1, - "this.filter": 2, - "": 1, - "": 1, - ".is": 2, - "c.push": 3, - "g.parentNode": 2, - "U.test": 1, - "": 1, - "f.find.matchesSelector": 2, - "g.ownerDocument": 1, - "this.parent": 2, - ".children": 1, - "a.jquery": 2, - "f.merge": 2, - "this.get": 1, - "andSelf": 1, - "this.add": 1, - "f.dir": 6, - "parentsUntil": 1, - "f.nth": 2, - "nextAll": 1, - "nextUntil": 1, - "siblings": 1, - "f.sibling": 2, - "a.parentNode.firstChild": 1, - "a.contentDocument": 1, - "a.contentWindow.document": 1, - "a.childNodes": 1, - "T.call": 1, - "P.test": 1, - "f.filter": 2, - "R.test": 1, - "Q.test": 1, - "e.reverse": 1, - "g.join": 1, - "f.find.matches": 1, - "dir": 1, - "sibling": 1, - "a.nextSibling": 1, - "<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:]+)[^>": 1, - "/ig": 3, - "tbody/i": 1, - "bc": 1, - "bd": 1, - "/checked": 1, - "s*.checked.": 1, - "java": 1, - "ecma": 1, - "script/i": 1, - "CDATA": 1, - "bg": 3, - "legend": 1, - "thead": 2, - "tr": 23, - "td": 3, - "col": 7, - "_default": 5, - "bg.optgroup": 1, - "bg.option": 1, - "bg.tbody": 1, - "bg.tfoot": 1, - "bg.colgroup": 1, - "bg.caption": 1, - "bg.thead": 1, - "bg.th": 1, - "bg.td": 1, - "f.support.htmlSerialize": 1, - "bg._default": 2, - "c.text": 2, - "this.empty": 3, - ".append": 6, - ".createTextNode": 1, - "wrapAll": 1, - ".wrapAll": 2, - ".eq": 1, - ".clone": 1, - "b.map": 1, - "wrapInner": 1, - ".wrapInner": 1, - "b.contents": 1, - "c.wrapAll": 1, - "b.append": 1, - "wrap": 2, - "unwrap": 1, - ".replaceWith": 1, - "this.childNodes": 1, - ".end": 1, - "append": 1, - "this.domManip": 4, - "this.appendChild": 1, - "prepend": 1, - "this.insertBefore": 1, - "this.firstChild": 1, - "this.parentNode.insertBefore": 2, - "a.push.apply": 2, - "this.nextSibling": 2, - ".toArray": 1, - "f.cleanData": 4, - "d.parentNode.removeChild": 1, - "b.getElementsByTagName": 1, - "this.map": 3, - "f.clone": 2, - ".innerHTML.replace": 1, - "bc.test": 2, - "f.support.leadingWhitespace": 2, - "Z.test": 2, - "_.exec": 2, - ".getElementsByTagName": 2, - ".innerHTML": 3, - "c.html": 3, - "replaceWith": 1, - "c.replaceWith": 1, - ".detach": 1, - "this.parentNode": 1, - ".remove": 2, - ".before": 1, - "detach": 1, - "this.remove": 1, - "domManip": 1, - "f.support.checkClone": 2, - "bd.test": 2, - ".domManip": 1, - "g.html": 1, - "g.domManip": 1, - "j.parentNode": 1, - "f.support.parentNode": 1, - "i.nodeType": 1, - "i.childNodes.length": 1, - "f.buildFragment": 2, - "e.fragment": 1, - "h.childNodes.length": 1, - "h.firstChild": 2, - "": 1, - "k.length": 2, - ".charAt": 1, - "f.fragments": 3, - "i.createDocumentFragment": 1, - "f.clean": 1, - "appendTo": 1, - "prependTo": 1, - "insertBefore": 1, - "insertAfter": 1, - "replaceAll": 1, - "g.childNodes.length": 1, - "this.clone": 1, - ".get": 3, - "d.concat": 1, - "e.selector": 1, - "f.support.noCloneEvent": 1, - "f.support.noCloneChecked": 1, - "b.createElement": 2, - "b.createTextNode": 2, - "k.replace": 2, - "o.innerHTML": 1, - "o.lastChild": 1, - "f.support.tbody": 1, - "ba.test": 1, - "o.firstChild": 2, - "o.firstChild.childNodes": 1, - "o.childNodes": 2, - "q.length": 1, - ".childNodes.length": 1, - ".parentNode.removeChild": 2, - "o.insertBefore": 1, - "Z.exec": 1, - "f.support.appendChecked": 1, - "k.nodeType": 1, - "h.push": 1, - "be.test": 1, - ".type.toLowerCase": 1, - "h.splice.apply": 1, - ".concat": 3, - "cleanData": 1, - "j.nodeName": 1, - "j.nodeName.toLowerCase": 1, - "f.removeEvent": 1, - "b.handle": 2, - "j.removeAttribute": 2, - "bo": 2, - "/alpha": 1, - "bp": 1, - "/opacity": 1, - "bq": 2, - "br": 19, - "ms": 2, - "bs": 2, - "bt": 42, - "bu": 11, - "bv": 2, - "de": 1, - "bw": 2, - "bz": 7, - "bA": 3, - "bB": 5, - "bC": 2, - "f.fn.css": 1, - "f.style": 4, - "cssHooks": 1, - "a.style.opacity": 2, - "cssNumber": 3, - "zIndex": 1, - "fontWeight": 1, - "zoom": 1, - "lineHeight": 1, - "widows": 1, - "orphans": 1, - "cssProps": 1, - "f.support.cssFloat": 1, - "f.cssHooks": 3, - "f.cssProps": 2, - "k.get": 1, - "bu.test": 1, - "d.replace": 1, - "f.cssNumber": 1, - "k.set": 1, - "g.get": 1, - "swap": 1, - "f.curCSS": 1, - "f.swap": 2, - "<0||e==null){e=a.style[b];return>": 1, - "0px": 1, - "f.support.opacity": 1, - "f.cssHooks.opacity": 1, - "bp.test": 1, - "a.currentStyle": 4, - "a.currentStyle.filter": 1, - "a.style.filter": 1, - "RegExp.": 1, - "c.zoom": 1, - "b*100": 1, - "d.filter": 1, - "c.filter": 2, - "bo.test": 1, - "g.replace": 1, - "f.support.reliableMarginRight": 1, - "f.cssHooks.marginRight": 1, - "a.style.marginRight": 1, - "a.ownerDocument.defaultView": 1, - "e.getComputedStyle": 1, - "g.getPropertyValue": 1, - "a.ownerDocument.documentElement": 1, - "c.documentElement.currentStyle": 1, - "a.runtimeStyle": 2, - "bs.test": 1, - "bt.test": 1, - "f.left": 3, - "a.runtimeStyle.left": 2, - "a.currentStyle.left": 1, - "f.pixelLeft": 1, - "f.expr.filters.hidden": 2, - "f.support.reliableHiddenOffsets": 1, - "f.expr.filters.visible": 1, - "bE": 2, - "bF": 1, - "bG": 3, - "n/g": 1, - "bH": 2, - "/#.*": 1, - "bI": 1, - "/mg": 1, - "bJ": 1, - "color": 4, - "date": 1, - "datetime": 1, - "email": 2, - "month": 1, - "range": 2, - "search": 5, - "tel": 2, - "time": 1, - "week": 1, - "bK": 1, - "about": 1, - "storage": 1, - "extension": 1, - "widget": 1, - "bL": 1, - "GET": 1, - "bM": 2, - "bN": 2, - "bO": 2, - "<\\/script>": 2, - "/gi": 2, - "bP": 1, - "bR": 2, - "*/": 2, - "bS": 1, - "bT": 2, - "f.fn.load": 1, - "bV": 3, - "bW": 5, - "bX": 8, - "e.href": 1, - "bY": 1, - "bW.href": 2, - "bS.exec": 1, - "bW.toLowerCase": 1, - "bT.apply": 1, - "a.slice": 2, - "f.param": 2, - "f.ajaxSettings.traditional": 2, - "complete": 6, - "a.responseText": 1, - "a.isResolved": 1, - "a.done": 1, - "i.html": 1, - "i.each": 1, - "serialize": 1, - "this.serializeArray": 1, - "serializeArray": 1, - "this.elements": 2, - "this.disabled": 1, - "this.checked": 1, - "bP.test": 1, - "bJ.test": 1, - ".map": 1, - "b.name": 2, - "success": 2, - "getScript": 1, - "f.get": 2, - "getJSON": 1, - "ajaxSetup": 1, - "f.ajaxSettings": 4, - "ajaxSettings": 1, - "isLocal": 1, - "bK.test": 1, - "contentType": 4, - "processData": 3, - "accepts": 5, - "xml": 3, - "json": 2, - "/xml/": 1, - "/html/": 1, - "/json/": 1, - "responseFields": 1, - "converters": 2, - "a.String": 1, - "f.parseXML": 1, - "ajaxPrefilter": 1, - "ajaxTransport": 1, - "ajax": 2, - "clearTimeout": 2, - "v.readyState": 1, - "d.ifModified": 1, - "v.getResponseHeader": 2, - "f.lastModified": 1, - "f.etag": 1, - "v.status": 1, - "v.statusText": 1, - "h.resolveWith": 1, - "h.rejectWith": 1, - "v.statusCode": 2, - "g.trigger": 2, - "i.resolveWith": 1, - "f.active": 1, - "f.ajaxSetup": 3, - "d.statusCode": 1, - "readyState": 1, - "setRequestHeader": 6, - "getAllResponseHeaders": 1, - "getResponseHeader": 1, - "bI.exec": 1, - "overrideMimeType": 1, - "d.mimeType": 1, - "abort": 4, - "p.abort": 1, - "h.promise": 1, - "v.success": 1, - "v.done": 1, - "v.error": 1, - "v.fail": 1, - "v.complete": 1, - "i.done": 1, - "<2)for(b>": 1, - "url=": 1, - "dataTypes=": 1, - "crossDomain=": 2, - "exec": 8, - "80": 2, - "443": 2, - "param": 3, - "traditional": 1, - "s=": 12, - "t=": 19, - "toUpperCase": 1, - "hasContent=": 1, - "active": 2, - "ajaxStart": 1, - "hasContent": 2, - "cache=": 1, - "x=": 1, - "y=": 5, - "1_=": 1, - "_=": 1, - "Content": 1, - "Type": 1, - "ifModified": 1, - "lastModified": 3, - "Modified": 1, - "etag": 3, - "None": 1, - "Accept": 1, - "dataTypes": 4, - "q=": 1, - "01": 1, - "beforeSend": 2, - "p=": 5, - "No": 1, - "Transport": 1, - "readyState=": 1, - "ajaxSend": 1, - "v.abort": 1, - "d.timeout": 1, - "p.send": 1, - "encodeURIComponent": 2, - "f.isPlainObject": 1, - "d.join": 1, - "cc": 2, - "cd": 3, - "jsonp": 1, - "jsonpCallback": 1, - "f.ajaxPrefilter": 2, - "b.contentType": 1, - "b.data": 5, - "b.dataTypes": 2, - "b.jsonp": 3, - "cd.test": 2, - "b.url": 4, - "b.jsonpCallback": 4, - "d.always": 1, - "b.converters": 1, - "/javascript": 1, - "ecmascript/": 1, - "a.cache": 2, - "a.crossDomain": 2, - "a.global": 1, - "f.ajaxTransport": 2, - "c.head": 1, - "c.getElementsByTagName": 1, - "send": 2, - "d.async": 1, - "a.scriptCharset": 2, - "d.charset": 1, - "d.src": 1, - "a.url": 1, - "d.onload": 3, - "d.onreadystatechange": 2, - "d.readyState": 2, - "/loaded": 1, - "complete/.test": 1, - "e.removeChild": 1, - "e.insertBefore": 1, - "e.firstChild": 1, - "ce": 6, - "cg": 7, - "cf": 7, - "f.ajaxSettings.xhr": 2, - "this.isLocal": 1, - "cors": 1, - "f.support.ajax": 1, - "c.crossDomain": 3, - "f.support.cors": 1, - "c.xhr": 1, - "c.username": 2, - "h.open": 2, - "c.url": 2, - "c.password": 1, - "c.xhrFields": 3, - "c.mimeType": 2, - "h.overrideMimeType": 2, - "h.setRequestHeader": 1, - "h.send": 1, - "c.hasContent": 1, - "h.readyState": 3, - "h.onreadystatechange": 2, - "h.abort": 1, - "h.status": 1, - "h.getAllResponseHeaders": 1, - "h.responseXML": 1, - "n.documentElement": 1, - "m.xml": 1, - "m.text": 2, - "h.responseText": 1, - "h.statusText": 1, - "c.isLocal": 1, - ".unload": 1, - "cm": 2, - "cn": 1, - "co": 5, - "cp": 1, - "cr": 20, - "a.webkitRequestAnimationFrame": 1, - "a.mozRequestAnimationFrame": 1, - "a.oRequestAnimationFrame": 1, - "this.animate": 2, - "d.style": 3, - ".style": 1, - "": 1, - "_toggle": 2, - "animate": 4, - "fadeTo": 1, - "queue=": 2, - "animatedProperties=": 1, - "animatedProperties": 2, - "specialEasing": 2, - "easing": 3, - "swing": 2, - "overflow=": 2, - "overflow": 2, - "overflowX": 1, - "overflowY": 1, - "float": 3, - "display=": 3, - "zoom=": 1, - "fx": 10, - "l=": 10, - "m=": 2, - "custom": 5, - "stop": 7, - "timers": 3, - "slideDown": 1, - "slideUp": 1, - "slideToggle": 1, - "fadeIn": 1, - "fadeOut": 1, - "fadeToggle": 1, - "duration": 4, - "duration=": 2, - "off": 1, - "speeds": 4, - "old=": 1, - "complete=": 1, - "old": 2, - "linear": 1, - "Math": 51, - "cos": 1, - "PI": 54, - "5": 23, - "options=": 1, - "prop=": 3, - "orig=": 1, - "orig": 3, - "step": 7, - "startTime=": 1, - "start=": 1, - "end=": 1, - "unit=": 1, - "unit": 1, - "now=": 1, - "pos=": 1, - "state=": 1, - "co=": 2, - "tick": 3, - "interval": 3, - "show=": 1, - "hide=": 1, - "e.duration": 3, - "this.startTime": 2, - "this.now": 3, - "this.end": 2, - "this.pos": 4, - "this.state": 3, - "this.update": 2, - "e.animatedProperties": 5, - "this.prop": 2, - "e.overflow": 2, - "f.support.shrinkWrapBlocks": 1, - "e.hide": 2, - ".hide": 2, - "e.show": 1, - "e.orig": 1, - "e.complete.call": 1, - "Infinity": 1, - "h/e.duration": 1, - "f.easing": 1, - "this.start": 2, - "*this.pos": 1, - "f.timers": 2, - "a.splice": 1, - "f.fx.stop": 1, - "clearInterval": 6, - "slow": 1, - "fast": 1, - "a.elem": 2, - "a.now": 4, - "a.elem.style": 3, - "a.prop": 5, - "Math.max": 10, - "a.unit": 1, - "f.expr.filters.animated": 1, - "b.elem": 1, - "cw": 1, - "able": 1, - "cx": 2, - "f.fn.offset": 2, - "f.offset.setOffset": 2, - "b.ownerDocument.body": 2, - "f.offset.bodyOffset": 2, - "b.getBoundingClientRect": 1, - "e.documentElement": 4, - "c.top": 4, - "c.left": 4, - "e.body": 3, - "g.clientTop": 1, - "h.clientTop": 1, - "g.clientLeft": 1, - "h.clientLeft": 1, - "i.pageYOffset": 1, - "g.scrollTop": 1, - "h.scrollTop": 2, - "i.pageXOffset": 1, - "g.scrollLeft": 1, - "h.scrollLeft": 2, - "f.offset.initialize": 3, - "b.offsetParent": 2, - "g.documentElement": 1, - "g.body": 1, - "g.defaultView": 1, - "j.getComputedStyle": 2, - "b.currentStyle": 2, - "b.offsetTop": 2, - "b.offsetLeft": 2, - "f.offset.supportsFixedPosition": 2, - "k.position": 4, - "b.scrollTop": 1, - "b.scrollLeft": 1, - "f.offset.doesNotAddBorder": 1, - "f.offset.doesAddBorderForTableAndCells": 1, - "cw.test": 1, - "c.borderTopWidth": 2, - "c.borderLeftWidth": 2, - "f.offset.subtractsBorderForOverflowNotVisible": 1, - "c.overflow": 1, - "i.offsetTop": 1, - "i.offsetLeft": 1, - "i.scrollTop": 1, - "i.scrollLeft": 1, - "f.offset": 1, - "initialize": 3, - "b.style": 1, - "d.nextSibling.firstChild.firstChild": 1, - "this.doesNotAddBorder": 1, - "e.offsetTop": 4, - "this.doesAddBorderForTableAndCells": 1, - "h.offsetTop": 1, - "e.style.position": 2, - "e.style.top": 2, - "this.supportsFixedPosition": 1, - "d.style.overflow": 1, - "d.style.position": 1, - "this.subtractsBorderForOverflowNotVisible": 1, - "this.doesNotIncludeMarginInBodyOffset": 1, - "a.offsetTop": 2, - "bodyOffset": 1, - "a.offsetLeft": 1, - "f.offset.doesNotIncludeMarginInBodyOffset": 1, - "setOffset": 1, - "a.style.position": 1, - "e.offset": 1, - "e.position": 1, - "l.top": 1, - "l.left": 1, - "b.top": 2, - "k.top": 1, - "g.top": 1, - "b.left": 2, - "k.left": 1, - "g.left": 1, - "b.using.call": 1, - "e.css": 1, - "this.offsetParent": 2, - "this.offset": 2, - "cx.test": 2, - "b.offset": 1, - "d.top": 2, - "d.left": 2, - "offsetParent": 1, - "a.offsetParent": 1, - "g.document.documentElement": 1, - "g.document.body": 1, - "g.scrollTo": 1, - ".scrollLeft": 1, - ".scrollTop": 1, - "e.document.documentElement": 1, - "e.document.compatMode": 1, - "e.document.body": 1, - "this.css": 1, - "Prioritize": 1, - "": 1, - "XSS": 1, - "location.hash": 1, - "#9521": 1, - "Matches": 1, - "dashed": 1, - "camelizing": 1, - "rdashAlpha": 1, - "rmsPrefix": 1, - "fcamelCase": 1, - "letter": 3, - "readyList.fireWith": 1, - ".off": 1, - "jQuery.Callbacks": 2, - "IE8": 2, - "exceptions": 2, - "#9897": 1, - "elems": 9, - "chainable": 4, - "emptyGet": 3, - "bulk": 3, - "elems.length": 1, - "Sets": 3, - "jQuery.access": 2, - "Optionally": 1, - "executed": 1, - "Bulk": 1, - "operations": 1, - "iterate": 1, - "executing": 1, - "exec.call": 1, - "they": 2, - "run": 1, - "against": 1, - "entire": 1, - "fn.call": 2, - "value.call": 1, - "Gets": 2, - "frowned": 1, - "upon.": 1, - "More": 1, - "//docs.jquery.com/Utilities/jQuery.browser": 1, - "ua": 6, - "ua.toLowerCase": 1, - "rwebkit.exec": 1, - "ropera.exec": 1, - "rmsie.exec": 1, - "ua.indexOf": 1, - "rmozilla.exec": 1, - "jQuerySub": 7, - "jQuerySub.fn.init": 2, - "jQuerySub.superclass": 1, - "jQuerySub.fn": 2, - "jQuerySub.prototype": 1, - "jQuerySub.fn.constructor": 1, - "jQuerySub.sub": 1, - "jQuery.fn.init.call": 1, - "rootjQuerySub": 2, - "jQuerySub.fn.init.prototype": 1, - "jQuery.uaMatch": 1, - "browserMatch.browser": 2, - "jQuery.browser.version": 1, - "browserMatch.version": 1, - "jQuery.browser.webkit": 1, - "jQuery.browser.safari": 1, - "flagsCache": 3, - "createFlags": 2, - "flags": 13, - "flags.split": 1, - "flags.length": 1, - "Convert": 1, - "formatted": 2, - "Actual": 2, - "Stack": 1, - "fire": 4, - "calls": 1, - "repeatable": 1, - "lists": 2, - "stack": 2, - "forgettable": 1, - "memory": 8, - "Flag": 2, - "First": 3, - "fireWith": 1, - "firingStart": 3, - "End": 1, - "firingLength": 4, - "Index": 1, - "firingIndex": 5, - "several": 1, - "actual": 1, - "Inspect": 1, - "recursively": 1, - "mode": 1, - "flags.unique": 1, - "self.has": 1, - "list.push": 1, - "Fire": 1, - "flags.memory": 1, - "flags.stopOnFalse": 1, - "Mark": 1, - "halted": 1, - "flags.once": 1, - "stack.length": 1, - "stack.shift": 1, - "self.fireWith": 1, - "self.disable": 1, - "Callbacks": 1, - "collection": 3, - "Do": 2, - "current": 7, - "batch": 2, - "With": 1, - "/a": 1, - ".55": 1, - "basic": 1, - "all.length": 1, - "supports": 2, - "select.appendChild": 1, - "strips": 1, - "leading": 1, - "div.firstChild.nodeType": 1, - "manipulated": 1, - "normalizes": 1, - "around": 1, - "issue.": 1, - "#5145": 1, - "existence": 1, - "styleFloat": 1, - "a.style.cssFloat": 1, - "defaults": 3, - "working": 1, - "property.": 1, - "too": 1, - "marked": 1, - "marks": 1, - "select.disabled": 1, - "support.optDisabled": 1, - "opt.disabled": 1, - "handlers": 1, - "support.noCloneEvent": 1, - "div.cloneNode": 1, - "maintains": 1, - "#11217": 1, - "loses": 1, - "div.lastChild": 1, - "conMarginTop": 3, - "paddingMarginBorder": 5, - "positionTopLeftWidthHeight": 3, - "paddingMarginBorderVisibility": 3, - "container": 4, - "container.style.cssText": 1, - "body.insertBefore": 1, - "body.firstChild": 1, - "Construct": 1, - "container.appendChild": 1, - "cells": 3, - "still": 4, - "offsetWidth/Height": 3, - "visible": 1, - "row": 1, - "reliable": 1, - "offsets": 1, - "safety": 1, - "goggles": 1, - "#4512": 1, - "fails": 2, - "support.reliableHiddenOffsets": 1, - "explicit": 1, - "right": 3, - "incorrectly": 1, - "computed": 1, - "based": 1, - "container.": 1, - "#3333": 1, - "Feb": 1, - "Bug": 1, - "getComputedStyle": 3, - "returns": 1, - "wrong": 1, - "window.getComputedStyle": 6, - "marginDiv.style.width": 1, - "marginDiv.style.marginRight": 1, - "div.style.width": 2, - "support.reliableMarginRight": 1, - "div.style.zoom": 2, - "natively": 1, - "block": 4, - "act": 1, - "setting": 2, - "giving": 1, - "layout": 2, - "div.style.padding": 1, - "div.style.border": 1, - "div.style.overflow": 2, - "div.style.display": 2, - "support.inlineBlockNeedsLayout": 1, - "div.offsetWidth": 2, - "shrink": 1, - "support.shrinkWrapBlocks": 1, - "div.style.cssText": 1, - "outer.firstChild": 1, - "outer.nextSibling.firstChild.firstChild": 1, - "offsetSupport": 2, - "doesNotAddBorder": 1, - "inner.offsetTop": 4, - "doesAddBorderForTableAndCells": 1, - "td.offsetTop": 1, - "inner.style.position": 2, - "inner.style.top": 2, - "safari": 1, - "subtracts": 1, - "here": 1, - "offsetSupport.fixedPosition": 1, - "outer.style.overflow": 1, - "outer.style.position": 1, - "offsetSupport.subtractsBorderForOverflowNotVisible": 1, - "offsetSupport.doesNotIncludeMarginInBodyOffset": 1, - "body.offsetTop": 1, - "div.style.marginTop": 1, - "support.pixelMargin": 1, - ".marginTop": 1, - "container.style.zoom": 2, - "body.removeChild": 1, - "rbrace": 1, - "Please": 1, - "caution": 1, - "Unique": 1, - "page": 1, - "rinlinejQuery": 1, - "jQuery.fn.jquery": 1, - "following": 1, - "uncatchable": 1, - "you": 1, - "attempt": 2, - "them.": 1, - "Ban": 1, - "except": 1, - "Flash": 1, - "jQuery.acceptData": 2, - "privateCache": 1, - "differently": 1, - "because": 1, - "IE6": 1, - "order": 1, - "collisions": 1, - "between": 1, - "user": 1, - "data.": 1, - "thisCache.data": 3, - "Users": 1, - "should": 1, - "inspect": 1, - "undocumented": 1, - "subject": 1, - "change.": 1, - "But": 1, - "anyone": 1, - "listen": 1, - "No.": 1, - "isEvents": 1, - "privateCache.events": 1, - "converted": 2, - "camel": 2, - "names": 2, - "camelCased": 1, - "Reference": 1, - "entry": 1, - "purpose": 1, - "continuing": 1, - "Support": 1, - "space": 1, - "separated": 1, - "jQuery.isArray": 1, - "manipulation": 1, - "cased": 1, - "name.split": 1, - "name.length": 1, - "want": 1, - "let": 1, - "destroyed": 2, - "jQuery.isEmptyObject": 1, - "Don": 1, - "care": 1, - "Ensure": 1, - "#10080": 1, - "cache.setInterval": 1, - "part": 8, - "jQuery._data": 2, - "elem.attributes": 1, - "self.triggerHandler": 2, - "jQuery.isNumeric": 1, - "All": 1, - "lowercase": 1, - "Grab": 1, - "necessary": 1, - "hook": 1, - "nodeHook": 1, - "attrNames": 3, - "isBool": 4, - "rspace": 1, - "attrNames.length": 1, - "#9699": 1, - "explanation": 1, - "approach": 1, - "removal": 1, - "#10870": 1, - "**": 1, - "timeStamp": 1, - "char": 2, - "buttons": 1, "SHEBANG#!node": 2, - "http.createServer": 1, - "res.writeHead": 1, - "res.end": 1, - ".listen": 1, - "Date.prototype.toJSON": 2, - "isFinite": 1, - "this.valueOf": 2, - "this.getUTCFullYear": 1, - "this.getUTCMonth": 1, - "this.getUTCDate": 1, - "this.getUTCHours": 1, - "this.getUTCMinutes": 1, - "this.getUTCSeconds": 1, - "String.prototype.toJSON": 1, - "Number.prototype.toJSON": 1, - "Boolean.prototype.toJSON": 1, - "u0000": 1, - "u00ad": 1, - "u0600": 1, - "u0604": 1, - "u070f": 1, - "u17b4": 1, - "u17b5": 1, - "u200c": 1, - "u200f": 1, - "u2028": 3, - "u202f": 1, - "u2060": 1, - "u206f": 1, - "ufeff": 1, - "ufff0": 1, - "uffff": 1, - "escapable": 1, - "/bfnrt": 1, - "fA": 2, - "JSON.parse": 1, - "PUT": 1, - "DELETE": 1, - "_id": 1, - "ties": 1, - "collection.": 1, - "_removeReference": 1, - "model.collection": 2, - "model.unbind": 1, - "this._onModelEvent": 1, - "_onModelEvent": 1, - "ev": 5, - "this._remove": 1, - "model.idAttribute": 2, - "this._byId": 2, - "model.previous": 1, - "model.id": 1, - "this.trigger.apply": 2, - "_.each": 1, - "Backbone.Collection.prototype": 1, - "this.models": 1, - "_.toArray": 1, - "Backbone.Router": 1, - "options.routes": 2, - "this.routes": 4, - "this._bindRoutes": 1, - "this.initialize.apply": 2, - "namedParam": 2, - "splatParam": 2, - "escapeRegExp": 2, - "_.extend": 9, - "Backbone.Router.prototype": 1, - "Backbone.Events": 2, - "route": 18, - "Backbone.history": 2, - "Backbone.History": 2, - "_.isRegExp": 1, - "this._routeToRegExp": 1, - "Backbone.history.route": 1, - "_.bind": 2, - "this._extractParameters": 1, - "callback.apply": 1, - "navigate": 2, - "triggerRoute": 4, - "Backbone.history.navigate": 1, - "_bindRoutes": 1, - "routes": 4, - "routes.unshift": 1, - "routes.length": 1, - "this.route": 1, - "_routeToRegExp": 1, - "route.replace": 1, - "_extractParameters": 1, - "route.exec": 1, - "this.handlers": 2, - "_.bindAll": 1, - "hashStrip": 4, - "#*": 1, - "isExplorer": 1, - "/msie": 1, - "historyStarted": 3, - "Backbone.History.prototype": 1, - "getFragment": 1, - "forcePushState": 2, - "this._hasPushState": 6, - "window.location.pathname": 1, - "window.location.search": 1, - "fragment.indexOf": 1, - "this.options.root": 6, - "fragment.substr": 1, - "this.options.root.length": 1, - "window.location.hash": 3, - "fragment.replace": 1, - "this._wantsPushState": 3, - "this.options.pushState": 2, - "window.history": 2, - "window.history.pushState": 2, - "this.getFragment": 6, - "docMode": 3, - "document.documentMode": 3, - "oldIE": 3, - "isExplorer.exec": 1, - "navigator.userAgent.toLowerCase": 1, - "this.iframe": 4, - ".contentWindow": 1, - "this.navigate": 2, - ".bind": 3, - "this.checkUrl": 3, - "setInterval": 6, - "this.interval": 1, - "this.fragment": 13, - "loc": 2, - "atRoot": 3, - "loc.pathname": 1, - "loc.hash": 1, - "loc.hash.replace": 1, - "window.history.replaceState": 1, - "document.title": 2, - "loc.protocol": 2, - "loc.host": 2, - "this.loadUrl": 4, - "this.handlers.unshift": 1, - "checkUrl": 1, - "this.iframe.location.hash": 3, - "decodeURIComponent": 2, - "loadUrl": 1, - "fragmentOverride": 2, - "matched": 2, - "_.any": 1, - "handler.route.test": 1, - "handler.callback": 1, - "frag": 13, - "frag.indexOf": 1, - "this.iframe.document.open": 1, - ".close": 1, - "Backbone.View": 1, - "this.cid": 3, - "_.uniqueId": 1, - "this._configure": 1, - "this._ensureElement": 1, - "this.delegateEvents": 1, - "selectorDelegate": 2, - "this.el": 10, - "eventSplitter": 2, - "viewOptions": 2, - "Backbone.View.prototype": 1, - "tagName": 3, - "render": 1, - "el": 4, - ".attr": 1, - ".html": 1, - "delegateEvents": 1, - "this.events": 1, - "key.match": 1, - "_configure": 1, - "viewOptions.length": 1, - "_ensureElement": 1, - "attrs": 6, - "this.attributes": 1, - "this.id": 2, - "attrs.id": 1, - "this.make": 1, - "this.tagName": 1, - "_.isString": 1, - "protoProps": 6, - "classProps": 2, - "inherits": 2, - "child.extend": 1, - "this.extend": 1, - "Backbone.Model.extend": 1, - "Backbone.Collection.extend": 1, - "Backbone.Router.extend": 1, - "Backbone.View.extend": 1, - "methodMap": 2, - "Backbone.sync": 1, - "params": 2, - "params.url": 2, - "getUrl": 2, - "urlError": 2, - "params.data": 5, - "params.contentType": 2, - "model.toJSON": 1, - "Backbone.emulateJSON": 2, - "params.processData": 1, - "Backbone.emulateHTTP": 1, - "params.data._method": 1, - "params.type": 1, - "params.beforeSend": 1, - "xhr": 1, - "xhr.setRequestHeader": 1, - ".ajax": 1, - "staticProps": 3, - "protoProps.hasOwnProperty": 1, - "protoProps.constructor": 1, - "parent.apply": 1, - "child.prototype.constructor": 1, - "object.url": 4, - "_.isFunction": 1, - "wrapError": 1, - "onError": 3, - "resp": 3, - "model.trigger": 1, - "escapeHTML": 1, - "string.replace": 1, - "#x": 1, - "da": 1, - "": 1, - "lt": 55, - "#x27": 1, - "#x2F": 1, - "window.Modernizr": 1, - "Modernizr": 12, - "enableClasses": 3, - "docElement": 1, - "mod": 12, - "modElem": 2, - "mStyle": 2, - "modElem.style": 1, - "inputElem": 6, - "smile": 4, - "prefixes": 2, - "omPrefixes": 1, - "cssomPrefixes": 2, - "omPrefixes.split": 1, - "domPrefixes": 3, - "omPrefixes.toLowerCase": 1, - "ns": 1, - "inputs": 3, - "classes": 1, - "classes.slice": 1, - "featureName": 5, - "testing": 1, - "injectElementWithStyles": 9, - "rule": 5, - "testnames": 3, - "fakeBody": 4, - "node.id": 1, - "div.id": 1, - "fakeBody.appendChild": 1, - "//avoid": 1, - "crashing": 1, - "fakeBody.style.background": 1, - "docElement.appendChild": 2, - "fakeBody.parentNode.removeChild": 1, - "div.parentNode.removeChild": 1, - "testMediaQuery": 2, - "mq": 3, - "matchMedia": 3, - "window.matchMedia": 1, - "window.msMatchMedia": 1, - ".matches": 1, - "bool": 30, - "node.currentStyle": 2, - "isEventSupported": 5, - "TAGNAMES": 2, - "element.setAttribute": 3, - "element.removeAttribute": 2, - "_hasOwnProperty": 2, - "hasOwnProperty": 5, - "_hasOwnProperty.call": 2, - "object.constructor.prototype": 1, - "Function.prototype.bind": 2, - "slice.call": 3, - "F.prototype": 1, - "target.prototype": 1, - "target.apply": 2, - "args.concat": 2, - "setCss": 7, - "str": 4, - "mStyle.cssText": 1, - "setCssAll": 2, - "str1": 6, - "str2": 4, - "prefixes.join": 3, - "substr": 2, - "testProps": 3, - "prefixed": 7, - "testDOMProps": 2, - "item": 4, - "item.bind": 1, - "testPropsAll": 17, - "ucProp": 5, - "prop.charAt": 1, - "prop.substr": 1, - "cssomPrefixes.join": 1, - "elem.getContext": 2, - ".getContext": 8, - ".fillText": 1, - "window.WebGLRenderingContext": 1, - "window.DocumentTouch": 1, - "DocumentTouch": 1, - "node.offsetTop": 1, - "window.postMessage": 1, - "window.openDatabase": 1, - "history.pushState": 1, - "mStyle.backgroundColor": 3, - "mStyle.background": 1, - ".style.textShadow": 1, - "mStyle.opacity": 1, - "str3": 2, - "str1.length": 1, - "mStyle.backgroundImage": 1, - "docElement.style": 1, - "node.offsetLeft": 1, - "node.offsetHeight": 2, - "document.styleSheets": 1, - "document.styleSheets.length": 1, - "cssText": 4, - "style.cssRules": 3, - "style.cssText": 1, - "/src/i.test": 1, - "cssText.indexOf": 1, - "rule.split": 1, - "elem.canPlayType": 10, - "Boolean": 2, - "bool.ogg": 2, - "bool.h264": 1, - "bool.webm": 1, - "bool.mp3": 1, - "bool.wav": 1, - "bool.m4a": 1, - "localStorage.setItem": 1, - "localStorage.removeItem": 1, - "sessionStorage.setItem": 1, - "sessionStorage.removeItem": 1, - "window.Worker": 1, - "window.applicationCache": 1, - "document.createElementNS": 6, - "ns.svg": 4, - ".createSVGRect": 1, - "div.firstChild.namespaceURI": 1, - "/SVGAnimate/.test": 1, - "toString.call": 2, - "/SVGClipPath/.test": 1, - "webforms": 2, - "props.length": 2, - "attrs.list": 2, - "window.HTMLDataListElement": 1, - "inputElemType": 5, - "defaultView": 2, - "inputElem.setAttribute": 1, - "inputElem.type": 1, - "inputElem.value": 2, - "inputElem.style.cssText": 1, - "inputElem.style.WebkitAppearance": 1, - "document.defaultView": 1, - "defaultView.getComputedStyle": 2, - ".WebkitAppearance": 1, - "inputElem.offsetHeight": 1, - "docElement.removeChild": 1, - "inputElem.checkValidity": 2, - "feature": 12, - "feature.toLowerCase": 2, - "classes.push": 1, - "Modernizr.input": 1, - "Modernizr.addTest": 2, - "docElement.className": 2, - "chaining.": 1, - "window.html5": 2, - "reSkip": 1, - "saveClones": 1, - "fieldset": 1, - "h1": 5, - "h2": 5, - "h3": 3, - "h4": 3, - "h5": 1, - "h6": 1, - "img": 1, - "label": 2, - "li": 19, - "ol": 1, - "span": 1, - "strong": 1, - "tfoot": 1, - "th": 1, - "ul": 1, - "supportsHtml5Styles": 5, - "supportsUnknownElements": 3, - "//if": 2, - "implemented": 1, - "assume": 1, - "Styles": 1, - "Chrome": 2, - "additional": 1, - "solve": 1, - "node.hidden": 1, - ".display": 1, - "a.childNodes.length": 1, - "frag.cloneNode": 1, - "frag.createDocumentFragment": 1, - "frag.createElement": 2, - "addStyleSheet": 2, - "ownerDocument.createElement": 3, - "ownerDocument.getElementsByTagName": 1, - "ownerDocument.documentElement": 1, - "p.innerHTML": 1, - "parent.insertBefore": 1, - "p.lastChild": 1, - "parent.firstChild": 1, - "getElements": 2, - "html5.elements": 1, - "elements.split": 1, - "shivMethods": 2, - "docCreateElement": 5, - "docCreateFragment": 2, - "ownerDocument.createDocumentFragment": 2, - "//abort": 1, - "shiv": 1, - "html5.shivMethods": 1, - "saveClones.test": 1, - "node.canHaveChildren": 1, - "reSkip.test": 1, - "frag.appendChild": 1, - "html5": 3, - "shivDocument": 3, - "shived": 5, - "ownerDocument.documentShived": 2, - "html5.shivCSS": 1, - "options.elements": 1, - "options.shivCSS": 1, - "options.shivMethods": 1, - "Modernizr._version": 1, - "Modernizr._prefixes": 1, - "Modernizr._domPrefixes": 1, - "Modernizr._cssomPrefixes": 1, - "Modernizr.mq": 1, - "Modernizr.hasEvent": 1, - "Modernizr.testProp": 1, - "Modernizr.testAllProps": 1, - "Modernizr.testStyles": 1, - "Modernizr.prefixed": 1, - "docElement.className.replace": 1, - "js": 1, - "classes.join": 1, - "this.document": 1, - "window.angular": 1, - "PEG.parser": 1, - "quote": 3, - "result0": 264, - "result1": 81, - "result2": 77, - "parse_singleQuotedCharacter": 3, - "result1.push": 3, - "input.charCodeAt": 18, - "pos": 197, - "reportFailures": 64, - "matchFailed": 40, - "pos1": 63, - "chars": 1, - "chars.join": 1, - "pos0": 51, - "parse_simpleSingleQuotedCharacter": 2, - "parse_simpleEscapeSequence": 3, - "parse_zeroEscapeSequence": 3, - "parse_hexEscapeSequence": 3, - "parse_unicodeEscapeSequence": 3, - "parse_eolEscapeSequence": 3, - "pos2": 22, - "parse_eolChar": 6, - "input.length": 9, - "input.charAt": 21, - "char_": 9, - "parse_class": 1, - "result3": 35, - "result4": 12, - "result5": 4, - "parse_classCharacterRange": 3, - "parse_classCharacter": 5, - "result2.push": 1, - "parse___": 2, - "inverted": 4, - "partsConverted": 2, - "part.data": 1, - "rawText": 5, - "part.rawText": 1, - "ignoreCase": 1, - "begin": 1, - "begin.data.charCodeAt": 1, - "end.data.charCodeAt": 1, - "this.SyntaxError": 2, - "begin.rawText": 2, - "end.rawText": 2, - "begin.data": 1, - "end.data": 1, - "parse_bracketDelimitedCharacter": 2, - "quoteForRegexpClass": 1, - "parse_simpleBracketDelimitedCharacter": 2, - "parse_digit": 3, - "recognize": 1, - "input.substr": 9, - "parse_hexDigit": 7, - "String.fromCharCode": 4, - "parse_eol": 4, - "eol": 2, - "parse_letter": 1, - "parse_lowerCaseLetter": 2, - "parse_upperCaseLetter": 2, - "parse_whitespace": 3, - "parse_comment": 3, - "result0.push": 1, - "parse_singleLineComment": 2, - "parse_multiLineComment": 2, - "u2029": 2, - "x0B": 1, - "uFEFF": 1, - "u1680": 1, - "u180E": 1, - "u2000": 1, - "u200A": 1, - "u202F": 1, - "u205F": 1, - "u3000": 1, - "cleanupExpected": 2, - "expected": 12, - "expected.sort": 1, - "lastExpected": 3, - "cleanExpected": 2, - "expected.length": 4, - "cleanExpected.push": 1, - "computeErrorPosition": 2, - "line": 14, - "column": 8, - "seenCR": 5, - "rightmostFailuresPos": 2, - "parseFunctions": 1, - "startRule": 1, - "errorPosition": 1, - "rightmostFailuresExpected": 1, - "errorPosition.line": 1, - "errorPosition.column": 1, - "toSource": 1, - "this._source": 1, - "result.SyntaxError": 1, - "buildMessage": 2, - "expectedHumanized": 5, - "foundHumanized": 3, - "expected.slice": 1, - "this.expected": 1, - "this.found": 1, - "this.message": 3, - "this.line": 3, - "this.column": 1, - "result.SyntaxError.prototype": 1, - "Error.prototype": 1, + "console.log": 3, "steelseries": 10, "n.charAt": 1, "n.substring": 1, @@ -32818,13 +30353,16 @@ "t.getBlue": 4, "t.getAlpha": 4, "i.getRed": 1, + "p": 110, "i.getGreen": 1, "i.getBlue": 1, + "o": 322, "i.getAlpha": 1, "*f": 2, "w/r": 1, "p/r": 1, "s/r": 1, + "h": 499, "o/r": 1, "e*u": 1, ".toFixed": 3, @@ -32832,31 +30370,46 @@ "c*u": 1, "h*u": 1, "vr": 20, + "stop": 7, + "color": 4, "Math.floor": 26, "Math.log10": 1, "n/Math.pow": 1, "": 1, + "e=": 21, + "o=": 13, "beginPath": 12, "moveTo": 10, "lineTo": 22, "quadraticCurveTo": 4, "closePath": 8, "stroke": 7, + "i=": 31, + "createElement": 3, "canvas": 22, "width=": 17, "height=": 17, "ii": 29, + "u=": 12, "getContext": 26, "2d": 26, "ft": 70, + "1": 97, "fillStyle=": 13, "rect": 3, + "0": 220, "fill": 10, + "t=": 19, "getImageData": 1, + "2": 66, + "3": 13, "wt": 26, + "r=": 18, "32": 1, "62": 1, + "f=": 13, "84": 1, + "s=": 12, "94": 1, "ar": 20, "255": 3, @@ -32878,6 +30431,7 @@ "n/255": 1, "t/255": 1, "i/255": 1, + "Math.max": 10, "f/r": 1, "/f": 3, "<0?0:n>": 1, @@ -32895,6 +30449,7 @@ "i.size": 6, "i.minValue": 10, "i.maxValue": 10, + "bf": 6, "i.niceScale": 10, "i.threshold": 10, "/2": 25, @@ -32909,8 +30464,10 @@ "steelseries.FrameDesign.METAL": 7, "wu": 9, "i.frameVisible": 10, + "bt": 42, "i.backgroundColor": 10, "steelseries.BackgroundColor.DARK_GRAY": 7, + "bu": 11, "i.backgroundVisible": 10, "pt": 48, "i.pointerType": 4, @@ -32932,6 +30489,7 @@ "i.digitalFont": 8, "pe": 2, "i.fractionalScaleDecimals": 4, + "br": 19, "i.ledColor": 10, "steelseries.LedColor.RED_LED": 7, "ru": 14, @@ -32942,6 +30500,7 @@ "i.minMeasuredValueVisible": 8, "dr": 16, "i.maxMeasuredValueVisible": 8, + "cf": 7, "i.foregroundType": 6, "steelseries.ForegroundType.TYPE1": 5, "af": 5, @@ -32981,18 +30540,23 @@ "steelseries.TrendState.OFF": 4, "lr": 19, "f*.06": 1, + "cr": 20, "f*.29": 19, "er": 19, "f*.36": 4, + "ci": 29, "et": 45, "gi": 26, + "lt": 55, "rr": 21, "*lt": 9, "r.getElementById": 7, + ".getContext": 8, "u.save": 7, "u.clearRect": 5, "u.canvas.width": 7, "u.canvas.height": 7, + "g": 441, "s/2": 2, "k/2": 1, "pf": 4, @@ -33001,9 +30565,11 @@ ".4*k": 1, "pr": 16, "s/10": 1, + "ce": 6, "ae": 2, "hf": 4, "k*.13": 2, + "bi": 27, "s*.4": 1, "sf": 5, "rf": 5, @@ -33064,12 +30630,15 @@ "pi": 24, "kt": 24, "pi.getContext": 2, + "li": 19, "pu": 9, "li.getContext": 6, "gu": 9, "du": 10, "ku": 9, "yu": 10, + "cu": 18, + "tr": 23, "su": 12, "tr.getContext": 1, "kf": 3, @@ -33181,6 +30750,7 @@ ".stop": 11, ".color": 13, "ui.length": 2, + "ct": 34, "ut.save": 1, "ut.translate": 3, "ut.rotate": 1, @@ -33230,7 +30800,9 @@ "gf": 2, "yf.repaint": 1, "ur": 20, + "setInterval": 6, "e3": 5, + "clearInterval": 6, "this.setValue": 7, "": 5, "ki.pause": 1, @@ -33256,6 +30828,7 @@ "this.setMaxMeasuredValue": 3, "this.setMinMeasuredValue": 3, "this.setTitleString": 4, + "background": 56, "this.setUnitString": 4, "this.setMinValue": 4, "this.getMinValue": 3, @@ -33883,6 +31456,7 @@ "bargraphled": 3, "v.drawImage": 2, "": 1, + "n=": 10, "856796": 4, "728155": 2, "34": 2, @@ -33894,7 +31468,9 @@ "restore": 14, "repaint": 23, "dr=": 1, + "b=": 25, "128": 2, + "y=": 5, "48": 1, "w=": 4, "lcdColor": 4, @@ -33910,14 +31486,19 @@ "digitalFont": 4, "bt=": 3, "valuesNumeric": 4, + "a=": 23, "ct=": 5, "autoScroll": 2, "section": 2, + "c=": 24, "wt=": 3, "getElementById": 4, "clearRect": 8, + "h=": 19, + "l=": 10, "v=": 5, "floor": 13, + "5": 23, "ot=": 4, "sans": 12, "serif": 13, @@ -33927,6 +31508,7 @@ "kt=": 4, "textAlign=": 7, "strokeStyle=": 8, + "4": 4, "clip": 1, "font=": 28, "measureText": 4, @@ -33934,7 +31516,9 @@ "fillText": 23, "38": 5, "o*.2": 1, + "clearTimeout": 2, "<=o-4&&(e=0,c=!1),u.fillText(n,o-2-e,h*.5+v*.38)),u.restore()},dt=function(n,i,r,u){var>": 1, + "d=": 15, "rt=": 3, "095": 1, "createLinearGradient": 6, @@ -33944,6 +31528,7 @@ "666666": 2, "92": 1, "e6e6e6": 1, + "g=": 15, "gradientStartColor": 1, "tt=": 3, "gradientFraction1Color": 1, @@ -33952,6 +31537,8 @@ "gradientStopColor": 1, "yt=": 4, "31": 26, + "k=": 11, + "p=": 5, "ut=": 6, "rgb": 6, "03": 1, @@ -33959,6 +31546,7 @@ "57": 1, "83": 1, "wt.repaint": 1, + "f.length": 5, "resetBuffers": 1, "this.setScrolling": 1, "w.textColor": 1, @@ -33981,6 +31569,7 @@ "setLcdColor=": 2, "repaint=": 2, "br=": 1, + "size": 6, "200": 2, "st=": 3, "decimalsVisible": 2, @@ -34002,6 +31591,7 @@ "ForegroundType": 2, "TYPE1": 2, "foregroundVisible": 4, + "PI": 54, "180": 26, "ni=": 1, "labelColor": 6, @@ -34013,6 +31603,7 @@ "f*.37": 3, "": 1, "rotate": 31, + "Math": 51, "u00b0": 8, "41": 3, "45": 5, @@ -34118,6 +31709,7 @@ "u.customLayer": 4, "u.degreeScale": 4, "u.roseVisible": 4, + "this.value": 4, "ft.getContext": 2, "ut.getContext": 2, "it.getContext": 2, @@ -34288,181 +31880,2618 @@ "7fd5f0": 2, "3c4439": 2, "72": 1, - "KEYWORDS": 2, - "array_to_hash": 11, - "RESERVED_WORDS": 2, - "KEYWORDS_BEFORE_EXPRESSION": 2, - "KEYWORDS_ATOM": 2, - "OPERATOR_CHARS": 1, - "RE_HEX_NUMBER": 1, - "RE_OCT_NUMBER": 1, - "RE_DEC_NUMBER": 1, - "OPERATORS": 2, - "WHITESPACE_CHARS": 2, - "PUNC_BEFORE_EXPRESSION": 2, - "PUNC_CHARS": 1, - "REGEXP_MODIFIERS": 1, - "UNICODE": 1, - "non_spacing_mark": 1, - "space_combining_mark": 1, - "connector_punctuation": 1, - "is_letter": 3, - "UNICODE.letter.test": 1, - "is_digit": 3, - "ch.charCodeAt": 1, - "//XXX": 1, - "out": 1, - "means": 1, - "is_alphanumeric_char": 3, - "is_unicode_combining_mark": 2, - "UNICODE.non_spacing_mark.test": 1, - "UNICODE.space_combining_mark.test": 1, - "is_unicode_connector_punctuation": 2, - "UNICODE.connector_punctuation.test": 1, - "is_identifier_start": 2, - "is_identifier_char": 1, - "zero": 2, - "joiner": 2, - "": 1, - "": 1, - "my": 1, - "ECMA": 1, - "PDF": 1, - "parse_js_number": 2, - "RE_HEX_NUMBER.test": 1, - "num.substr": 2, - "RE_OCT_NUMBER.test": 1, - "RE_DEC_NUMBER.test": 1, - "JS_Parse_Error": 2, - "message": 5, - "this.col": 2, - "ex": 3, - "ex.name": 1, - "this.stack": 2, - "ex.stack": 1, - "JS_Parse_Error.prototype.toString": 1, - "js_error": 2, - "is_token": 1, - "token": 5, - "token.type": 1, - "token.value": 1, - "EX_EOF": 3, - "tokenizer": 2, - "TEXT": 1, - "TEXT.replace": 1, - "uFEFF/": 1, - "tokpos": 1, - "tokline": 1, - "tokcol": 1, - "newline_before": 1, - "regex_allowed": 1, - "comments_before": 1, - "peek": 5, - "S.text.charAt": 2, - "S.pos": 4, - "signal_eof": 4, - "S.newline_before": 3, - "S.line": 2, - "S.col": 3, - "eof": 6, - "S.peek": 1, - "what": 2, - "S.text.indexOf": 1, - "start_token": 1, - "S.tokline": 3, - "S.tokcol": 3, - "S.tokpos": 3, - "is_comment": 2, - "S.regex_allowed": 1, - "HOP": 5, - "UNARY_POSTFIX": 1, - "nlb": 1, - "ret.comments_before": 1, - "S.comments_before": 2, - "skip_whitespace": 1, - "read_while": 2, - "pred": 2, - "parse_error": 3, - "read_num": 1, - "prefix": 6, - "has_e": 3, - "after_e": 5, - "has_x": 5, - "has_dot": 3, - "valid": 4, - "read_escaped_char": 1, - "hex_bytes": 3, - "digit": 3, - "read_string": 1, - "with_eof_error": 1, - "comment1": 1, - "Unterminated": 2, - "multiline": 1, - "comment2": 1, - "WARNING": 1, - "***": 1, - "Found": 1, - "warn": 3, - "tok": 1, - "read_name": 1, - "backslash": 2, - "Expecting": 1, - "UnicodeEscapeSequence": 1, - "uXXXX": 1, - "Unicode": 1, - "identifier": 1, - "regular": 1, - "regexp": 5, - "operator": 14, - "punc": 27, - "atom": 5, - "keyword": 11, - "Unexpected": 3, - "void": 1, - "<\",>": 1, - "<=\",>": 1, - "debugger": 2, - "const": 2, - "stat": 1, - "Label": 1, - "without": 1, - "statement": 1, - "defun": 1, - "Name": 1, - "Missing": 1, - "catch/finally": 1, - "blocks": 1, - "unary": 2, - "dot": 2, - "postfix": 1, - "Invalid": 2, - "binary": 1, - "conditional": 1, - "assign": 1, - "assignment": 1, - "seq": 1, - "member": 2, - "array.length": 1, - "Object.prototype.hasOwnProperty.call": 1, - "exports.tokenizer": 1, - "exports.parse": 1, - "parse": 1, - "exports.slice": 1, - "exports.curry": 1, - "curry": 1, - "exports.member": 1, - "exports.array_to_hash": 1, - "exports.PRECEDENCE": 1, - "PRECEDENCE": 1, - "exports.KEYWORDS_ATOM": 1, - "exports.RESERVED_WORDS": 1, - "exports.KEYWORDS": 1, - "exports.ATOMIC_START_TOKEN": 1, - "ATOMIC_START_TOKEN": 1, - "exports.OPERATORS": 1, - "exports.is_alphanumeric_char": 1, - "exports.set_logger": 1, - "logger": 2 + "rdigit": 1, + "d/": 3, + "readyList.resolveWith": 1, + ".unbind": 4, + "jQuery._Deferred": 3, + "breaking": 1, + "Promise": 1, + "promiseMethods": 3, + "Static": 1, + "sliceDeferred": 1, + ".slice": 6, + "Create": 1, + "_Deferred": 4, + "doing": 3, + "flag": 1, + "cancelled": 5, + "done": 10, + "f1": 1, + "f2": 1, + "...": 1, + "_fired": 5, + "deferred.done.apply": 2, + "callbacks.push": 1, + "deferred.resolveWith": 5, + "resolve": 7, + "given": 3, + "resolveWith": 4, + "make": 2, + "available": 1, + "#8421": 1, + "callbacks.shift": 1, + "Has": 1, + "resolved": 1, + "isResolved": 3, + "Cancel": 1, + "cancel": 6, + "Full": 1, + "fledged": 1, + "two": 1, + "Deferred": 5, + "func": 3, + "failDeferred": 1, + "promise": 14, + "errorDeferred": 1, + "doneCallbacks": 2, + "failCallbacks": 2, + "deferred.done": 2, + ".fail": 2, + ".fail.apply": 1, + "failDeferred.done": 1, + "rejectWith": 2, + "failDeferred.resolveWith": 1, + "reject": 4, + "failDeferred.resolve": 1, + "isRejected": 2, + "failDeferred.isResolved": 1, + "pipe": 2, + "fnDone": 2, + "fnFail": 2, + "jQuery.Deferred": 1, + "newDefer": 3, + "action": 3, + "returned": 4, + "fn.apply": 1, + "returned.promise": 2, + ".then": 3, + "newDefer.resolve": 1, + "newDefer.reject": 1, + ".promise": 5, + "provided": 1, + "aspect": 1, + "added": 1, + "promiseMethods.length": 1, + "failDeferred.cancel": 1, + "deferred.cancel": 2, + "Unexpose": 1, + "Call": 1, + "func.call": 1, + "helper": 1, + "firstParam": 6, + "count": 4, + "<=>": 1, + "isFunction": 12, + "resolveFunc": 2, + "sliceDeferred.call": 2, + "Strange": 1, + "FF4": 1, + "Values": 1, + "onto": 2, + "sometimes": 1, + ".when": 1, + "Cloning": 2, + "into": 2, + "fresh": 1, + "solves": 1, + "issue": 1, + "deferred.reject": 1, + "deferred.promise": 1, + "jQuery.support": 1, + "documentElement": 2, + "document.documentElement": 2, + "bodyStyle": 1, + "Preliminary": 1, + "div.setAttribute": 1, + "Can": 2, + "automatically": 2, + "inserted": 1, + "insert": 1, + "tables": 1, + "link": 2, + "serialized": 3, + "correctly": 1, + "innerHTML": 1, + "This": 3, + "requires": 1, + "wrapper": 1, + "htmlSerialize": 3, + "getAttribute": 3, + ".cssText": 2, + "/top/.test": 2, + "URLs": 1, + "optSelected": 3, + "opt.selected": 1, + "setAttribute": 1, + "camelCase": 3, + "class.": 1, + "works": 1, + "attrFixes": 1, + "get/setAttribute": 1, + "ie6/7": 1, + "div.className": 1, + "later": 1, + "submitBubbles": 3, + "changeBubbles": 3, + "focusinBubbles": 2, + "deleteExpando": 3, + "noCloneEvent": 3, + "inlineBlockNeedsLayout": 3, + "shrinkWrapBlocks": 2, + "reliableMarginRight": 2, + "status": 3, + "properly": 2, + "cloned": 1, + "input.checked": 1, + "support.noCloneChecked": 1, + "input.cloneNode": 1, + ".checked": 2, + "selects": 1, + "Internet": 1, + "Explorer": 1, + "div.test": 1, + "support.deleteExpando": 1, + "div.addEventListener": 1, + "div.attachEvent": 2, + "div.fireEvent": 1, + "padding": 4, + "GC": 2, + "references": 1, + "across": 1, + "boundary": 1, + "global": 5, + "attached": 1, + "occur": 1, + "defining": 1, + "allows": 1, + "code": 2, + "shortcut": 1, + "same": 1, + "Avoid": 1, + "trying": 1, + "since": 1, + "ends": 1, + "jQuery.uuid": 1, + "TODO": 2, + "hack": 2, + "ONLY.": 2, + "Avoids": 2, + "exposing": 2, + "metadata": 2, + "plain": 2, + ".toJSON": 4, + "jQuery.noop": 2, + "An": 1, + "key/value": 1, + "pair": 1, + "shallow": 1, + "copied": 1, + "existing": 1, + "Internal": 1, + "separate": 1, + "destroy": 1, + "had": 1, + "internalCache": 3, + "Browsers": 1, + "deletion": 1, + "refuse": 1, + "browsers": 2, + "faster": 1, + "iterating": 1, + "persist": 1, + "existed": 1, + ".nodeType": 9, + ".attributes": 2, + "jQuery.isNaN": 1, + "Normalize": 1, + "jQuery.attrFix": 2, + "formHook": 3, + "forms": 1, + "contains": 8, + "rinvalidChar.test": 1, + "jQuery.support.getSetAttribute": 1, + "elem.removeAttributeNode": 1, + "elem.getAttributeNode": 1, + "detail": 3, + "layerX": 3, + "layerY": 3, + "newValue": 3, + "prevValue": 3, + "wheelDelta": 3, + "click.specialSubmit": 2, + "submit": 14, + "image": 5, + "keypress.specialSubmit": 2, + "password": 5, + ".specialSubmit": 2, + "_change_data": 6, + "change": 16, + "textarea": 8, + "file": 5, + ".specialChange": 4, + "bubbling": 1, + "bind": 3, + "unload": 5, + "live": 8, + "lastToggle": 4, + "die": 3, + "hover": 3, + "live.": 2, + "resize": 3, + "scroll": 6, + "dblclick": 3, + "mousedown": 3, + "mouseup": 3, + "mousemove": 3, + "keydown": 4, + "keypress": 4, + "keyup": 3, + "hasDuplicate": 1, + "baseHasDuplicate": 2, + "rBackslash": 1, + "rNonWord": 1, + "W/": 2, + "Sizzle": 1, + "results": 4, + "seed": 1, + "origContext": 1, + "context.nodeType": 2, + "checkSet": 1, + "extra": 1, + "cur": 6, + "pop": 1, + "prune": 1, + "contextXML": 1, + "Sizzle.isXML": 1, + "soFar": 1, + "Reset": 1, + "window.Modernizr": 1, + "Modernizr": 12, + "enableClasses": 3, + "docElement": 1, + "mod": 12, + "modElem": 2, + "mStyle": 2, + "modElem.style": 1, + "inputElem": 6, + "smile": 4, + "prefixes": 2, + "omPrefixes": 1, + "cssomPrefixes": 2, + "omPrefixes.split": 1, + "domPrefixes": 3, + "omPrefixes.toLowerCase": 1, + "ns": 1, + "inputs": 3, + "attrs": 6, + "classes": 1, + "classes.slice": 1, + "featureName": 5, + "testing": 1, + "injectElementWithStyles": 9, + "rule": 5, + "testnames": 3, + "fakeBody": 4, + "node.id": 1, + ".join": 14, + "div.id": 1, + "fakeBody.appendChild": 1, + "//avoid": 1, + "crashing": 1, + "fakeBody.style.background": 1, + "docElement.appendChild": 2, + "fakeBody.parentNode.removeChild": 1, + "div.parentNode.removeChild": 1, + "testMediaQuery": 2, + "mq": 3, + "matchMedia": 3, + "window.matchMedia": 1, + "window.msMatchMedia": 1, + ".matches": 1, + "bool": 30, + "node.currentStyle": 2, + "isEventSupported": 5, + "TAGNAMES": 2, + "element.setAttribute": 3, + "element.removeAttribute": 2, + "_hasOwnProperty": 2, + "hasOwnProperty": 5, + "_hasOwnProperty.call": 2, + "object.constructor.prototype": 1, + "Function.prototype.bind": 2, + "slice.call": 3, + "F": 8, + "F.prototype": 1, + "target.prototype": 1, + "target.apply": 2, + "args.concat": 2, + "setCss": 7, + "str": 4, + "mStyle.cssText": 1, + "setCssAll": 2, + "str1": 6, + "str2": 4, + "prefixes.join": 3, + "substr": 2, + "testProps": 3, + "props": 21, + "prefixed": 7, + "testDOMProps": 2, + "item": 4, + "item.bind": 1, + "testPropsAll": 17, + "ucProp": 5, + "prop.charAt": 1, + "prop.substr": 1, + "cssomPrefixes.join": 1, + "elem.getContext": 2, + ".fillText": 1, + "window.WebGLRenderingContext": 1, + "window.DocumentTouch": 1, + "DocumentTouch": 1, + "node.offsetTop": 1, + "window.postMessage": 1, + "window.openDatabase": 1, + "document.documentMode": 3, + "window.history": 2, + "history.pushState": 1, + "mStyle.backgroundColor": 3, + "mStyle.background": 1, + ".style.textShadow": 1, + "mStyle.opacity": 1, + "str3": 2, + "str1.length": 1, + "mStyle.backgroundImage": 1, + "docElement.style": 1, + "node.offsetLeft": 1, + "node.offsetHeight": 2, + "document.styleSheets": 1, + "document.styleSheets.length": 1, + "cssText": 4, + "style.cssRules": 3, + "style.cssText": 1, + "/src/i.test": 1, + "cssText.indexOf": 1, + "rule.split": 1, + "elem.canPlayType": 10, + "Boolean": 2, + "bool.ogg": 2, + "bool.h264": 1, + "bool.webm": 1, + "bool.mp3": 1, + "bool.wav": 1, + "bool.m4a": 1, + "localStorage.setItem": 1, + "localStorage.removeItem": 1, + "sessionStorage.setItem": 1, + "sessionStorage.removeItem": 1, + "window.Worker": 1, + "window.applicationCache": 1, + "document.createElementNS": 6, + "ns.svg": 4, + ".createSVGRect": 1, + "div.firstChild.namespaceURI": 1, + "/SVGAnimate/.test": 1, + "toString.call": 2, + "/SVGClipPath/.test": 1, + "webforms": 2, + "props.length": 2, + "attrs.list": 2, + "window.HTMLDataListElement": 1, + "inputElemType": 5, + "defaultView": 2, + "inputElem.setAttribute": 1, + "inputElem.type": 1, + "inputElem.value": 2, + "inputElem.style.cssText": 1, + "range": 2, + "inputElem.style.WebkitAppearance": 1, + "document.defaultView": 1, + "defaultView.getComputedStyle": 2, + ".WebkitAppearance": 1, + "inputElem.offsetHeight": 1, + "docElement.removeChild": 1, + "search": 5, + "tel": 2, + "email": 2, + "inputElem.checkValidity": 2, + "feature": 12, + "feature.toLowerCase": 2, + "classes.push": 1, + "Modernizr.input": 1, + "Modernizr.addTest": 2, + "docElement.className": 2, + "chaining.": 1, + "window.html5": 2, + "reSkip": 1, + "map": 7, + "iframe": 3, + "saveClones": 1, + "fieldset": 1, + "h1": 5, + "h2": 5, + "h3": 3, + "h4": 3, + "h5": 1, + "h6": 1, + "img": 1, + "ol": 1, + "param": 3, + "q": 34, + "script": 7, + "span": 1, + "strong": 1, + "tfoot": 1, + "th": 1, + "thead": 2, + "ul": 1, + "supportsHtml5Styles": 5, + "supportsUnknownElements": 3, + "a.innerHTML": 7, + "//if": 2, + "implemented": 1, + "assume": 1, + "Styles": 1, + "Chrome": 2, + "additional": 1, + "solve": 1, + "node.hidden": 1, + ".display": 1, + "a.childNodes.length": 1, + "frag": 13, + "frag.cloneNode": 1, + "frag.createDocumentFragment": 1, + "frag.createElement": 2, + "addStyleSheet": 2, + "ownerDocument": 9, + "ownerDocument.createElement": 3, + "ownerDocument.getElementsByTagName": 1, + "ownerDocument.documentElement": 1, + "p.innerHTML": 1, + "parent.insertBefore": 1, + "p.lastChild": 1, + "parent.firstChild": 1, + "getElements": 2, + "html5.elements": 1, + "elements.split": 1, + "shivMethods": 2, + "docCreateElement": 5, + "docCreateFragment": 2, + "ownerDocument.createDocumentFragment": 2, + "nodeName": 20, + "//abort": 1, + "shiv": 1, + "html5.shivMethods": 1, + ".cloneNode": 4, + "saveClones.test": 1, + "node.canHaveChildren": 1, + "reSkip.test": 1, + "frag.appendChild": 1, + "Function": 3, + "html5": 3, + "shivDocument": 3, + "shived": 5, + "ownerDocument.documentShived": 2, + "html5.shivCSS": 1, + "options.elements": 1, + "options.shivCSS": 1, + "options.shivMethods": 1, + "Modernizr._version": 1, + "Modernizr._prefixes": 1, + "Modernizr._domPrefixes": 1, + "Modernizr._cssomPrefixes": 1, + "Modernizr.mq": 1, + "Modernizr.hasEvent": 1, + "Modernizr.testProp": 1, + "Modernizr.testAllProps": 1, + "Modernizr.testStyles": 1, + "Modernizr.prefixed": 1, + "docElement.className.replace": 1, + "js": 1, + "classes.join": 1, + "this.document": 1, + "PEG.parser": 1, + "result0": 264, + "result1": 81, + "result2": 77, + "parse_singleQuotedCharacter": 3, + "result1.push": 3, + "input.charCodeAt": 18, + "reportFailures": 64, + "matchFailed": 40, + "pos1": 63, + "offset": 21, + "chars": 1, + "chars.join": 1, + "pos0": 51, + "parse_simpleSingleQuotedCharacter": 2, + "parse_simpleEscapeSequence": 3, + "parse_zeroEscapeSequence": 3, + "parse_hexEscapeSequence": 3, + "parse_unicodeEscapeSequence": 3, + "parse_eolEscapeSequence": 3, + "pos2": 22, + "parse_eolChar": 6, + "input.length": 9, + "input.charAt": 21, + "char_": 9, + "parse_class": 1, + "result3": 35, + "result4": 12, + "result5": 4, + "parse_classCharacterRange": 3, + "parse_classCharacter": 5, + "result2.push": 1, + "parse___": 2, + "inverted": 4, + "partsConverted": 2, + "part.data": 1, + "rawText": 5, + "part.rawText": 1, + "ignoreCase": 1, + "begin": 1, + "begin.data.charCodeAt": 1, + "end.data.charCodeAt": 1, + "this.SyntaxError": 2, + "begin.rawText": 2, + "end.rawText": 2, + "begin.data": 1, + "end.data": 1, + "parse_bracketDelimitedCharacter": 2, + "quoteForRegexpClass": 1, + "parse_simpleBracketDelimitedCharacter": 2, + "parse_digit": 3, + "recognize": 1, + "input.substr": 9, + "parse_hexDigit": 7, + "parse_eol": 4, + "eol": 2, + "fA": 2, + "parse_letter": 1, + "parse_lowerCaseLetter": 2, + "parse_upperCaseLetter": 2, + "parse_whitespace": 3, + "parse_comment": 3, + "result0.push": 1, + "parse_singleLineComment": 2, + "parse_multiLineComment": 2, + "x0B": 1, + "uFEFF": 1, + "u1680": 1, + "u180E": 1, + "u2000": 1, + "u200A": 1, + "u202F": 1, + "u205F": 1, + "u3000": 1, + "cleanupExpected": 2, + "expected.sort": 1, + "lastExpected": 3, + "cleanExpected": 2, + "expected.length": 4, + "cleanExpected.push": 1, + "computeErrorPosition": 2, + "column": 8, + "seenCR": 5, + "rightmostFailuresPos": 2, + "parseFunctions": 1, + "startRule": 1, + "errorPosition": 1, + "rightmostFailuresExpected": 1, + "errorPosition.line": 1, + "errorPosition.column": 1, + "toSource": 1, + "this._source": 1, + "result.SyntaxError": 1, + "buildMessage": 2, + "expectedHumanized": 5, + "foundHumanized": 3, + "expected.slice": 1, + "this.expected": 1, + "this.found": 1, + "this.offset": 2, + "this.column": 1, + "result.SyntaxError.prototype": 1, + "Error.prototype": 1, + "cubes": 4, + "math": 4, + "opposite": 6, + "race": 4, + "square": 10, + "__slice": 2, + "Math.sqrt": 2, + "cube": 2, + "runners": 6, + "winner": 6, + "__slice.call": 2, + "print": 2, + "elvis": 4, + "_i": 10, + "_len": 6, + "_results": 6, + "_results.push": 2, + "math.cube": 2, + "multiply": 1, + "window.angular": 1, + "ma": 3, + "c.isReady": 4, + "s.documentElement.doScroll": 2, + "c.ready": 7, + "Qa": 1, + "b.src": 4, + "c.ajax": 1, + "async": 5, + "dataType": 6, + "c.globalEval": 1, + "b.text": 3, + "b.textContent": 2, + "b.innerHTML": 3, + "b.parentNode": 4, + "b.parentNode.removeChild": 2, + "X": 6, + "a.length": 23, + "c.isFunction": 9, + "d.call": 3, + "J": 5, + "Y": 3, + "na": 1, + ".type": 2, + "c.event.handle.apply": 1, + "oa": 1, + "c.data": 12, + "a.liveFired": 4, + "i.live": 1, + "a.button": 2, + "a.type": 14, + "i.live.slice": 1, + "u.length": 3, + "i.origType.replace": 1, + "O": 6, + "f.push": 5, + "i.selector": 3, + "u.splice": 1, + "a.target": 5, + ".closest": 4, + "a.currentTarget": 4, + "j.length": 2, + ".selector": 1, + ".elem": 1, + "i.preType": 2, + "a.relatedTarget": 2, + "d.push": 1, + "handleObj": 2, + "d.length": 8, + "j.elem": 2, + "a.data": 2, + "j.handleObj.data": 1, + "a.handleObj": 2, + "j.handleObj": 1, + "j.handleObj.origHandler.apply": 1, + "pa": 1, + "b.replace": 3, + "./g": 2, + "qa": 1, + "a.parentNode": 6, + "a.parentNode.nodeType": 2, + "ra": 1, + "b.each": 1, + "this.nodeName": 4, + ".nodeName": 2, + "f.events": 1, + "e.handle": 2, + "e.events": 2, + "c.event.add": 1, + "sa": 2, + ".ownerDocument": 5, + "ta.test": 1, + "c.support.checkClone": 2, + "ua.test": 1, + "c.fragments": 2, + "b.createDocumentFragment": 1, + "c.clean": 1, + "cacheable": 2, + "K": 4, + "c.each": 2, + "va.concat.apply": 1, + "va.slice": 1, + "wa": 1, + "a.document": 3, + "a.nodeType": 27, + "a.defaultView": 2, + "a.parentWindow": 2, + "c.fn.init": 1, + "Ra": 2, + "A.jQuery": 3, + "Sa": 2, + "A.": 3, + "A.document": 1, + "T": 4, + "Ta": 1, + "Ua": 1, + "Va": 1, + "Wa": 2, + "u00A0": 2, + "Xa": 1, + "P": 4, + "xa": 3, + "Q": 6, + "L": 10, + "aa": 1, + "ba": 3, + "R": 2, + "ya": 2, + "c.fn": 2, + "c.prototype": 1, + "s.body": 2, + "Ta.exec": 1, + "b.ownerDocument": 6, + "Xa.exec": 1, + "c.isPlainObject": 3, + "s.createElement": 10, + "c.fn.attr.call": 1, + "f.createElement": 1, + "a.cacheable": 1, + "a.fragment.cloneNode": 1, + "a.fragment": 1, + ".childNodes": 2, + "c.merge": 4, + "s.getElementById": 1, + "b.id": 1, + "T.find": 1, + "s.getElementsByTagName": 2, + "b.jquery": 1, + ".find": 5, + "T.ready": 1, + "a.selector": 4, + "a.context": 2, + "c.makeArray": 3, + "jquery": 3, + "toArray": 2, + "R.call": 2, + "this.toArray": 3, + "this.slice": 5, + "pushStack": 4, + "c.isArray": 5, + "ba.apply": 1, + "f.prevObject": 1, + "f.context": 1, + "f.selector": 2, + "c.bindReady": 1, + "a.call": 17, + "Q.push": 1, + "eq": 2, + "this.eq": 4, + "this.pushStack": 12, + "R.apply": 1, + "c.map": 1, + "this.prevObject": 3, + "c.fn.init.prototype": 1, + "c.extend": 7, + "c.fn.extend": 4, + "c.fn.triggerHandler": 1, + ".triggerHandler": 1, + "s.readyState": 2, + "s.addEventListener": 3, + "A.addEventListener": 1, + "s.attachEvent": 3, + "A.attachEvent": 1, + "A.frameElement": 1, + "isPlainObject": 4, + "a.setInterval": 2, + "a.constructor": 2, + "aa.call": 3, + "a.constructor.prototype": 2, + "c.trim": 3, + "a.replace": 7, + "@": 1, + "A.JSON": 1, + "A.JSON.parse": 2, + "c.error": 2, + "noop": 3, + "globalEval": 2, + "Va.test": 1, + "s.documentElement": 2, + "d.type": 2, + "c.support.scriptEval": 2, + "d.appendChild": 3, + "s.createTextNode": 2, + "d.text": 1, + "b.insertBefore": 3, + "b.firstChild": 5, + "b.removeChild": 3, + "a.nodeName": 12, + "a.nodeName.toUpperCase": 2, + "b.toUpperCase": 3, + "b.apply": 2, + "b.call": 4, + "makeArray": 3, + "ba.call": 1, + "inArray": 5, + "b.indexOf": 2, + "b.length": 12, + "merge": 2, + "grep": 6, + "f.concat.apply": 1, + "guid": 5, + "proxy": 4, + "a.apply": 2, + "b.guid": 2, + "a.guid": 7, + "c.guid": 1, + "a.toLowerCase": 4, + "/.exec": 4, + "/compatible/.test": 1, + "c.uaMatch": 1, + "P.browser": 2, + "c.browser": 1, + "c.browser.version": 1, + "P.version": 1, + "c.browser.webkit": 1, + "c.browser.safari": 1, + "c.inArray": 2, + "ya.call": 1, + "s.removeEventListener": 1, + "s.detachEvent": 1, + "c.support": 2, + "d.style.display": 5, + "d.innerHTML": 2, + "d.getElementsByTagName": 6, + "e.length": 9, + "d.firstChild.nodeType": 1, + "/red/.test": 1, + "j.getAttribute": 2, + "j.style.opacity": 1, + "j.style.cssFloat": 1, + ".value": 1, + ".appendChild": 1, + ".selected": 1, + "parentNode": 10, + "d.removeChild": 1, + ".parentNode": 7, + "checkClone": 1, + "scriptEval": 1, + "boxModel": 1, + "b.type": 4, + "b.appendChild": 1, + "a.insertBefore": 2, + "a.firstChild": 6, + "b.test": 1, + "c.support.deleteExpando": 2, + "a.removeChild": 2, + "d.attachEvent": 2, + "d.fireEvent": 1, + "c.support.noCloneEvent": 1, + "d.detachEvent": 1, + "d.cloneNode": 1, + "s.createDocumentFragment": 1, + "a.appendChild": 3, + "d.firstChild": 2, + "a.cloneNode": 3, + ".lastChild.checked": 2, + "k.style.width": 1, + "k.style.paddingLeft": 1, + "s.body.appendChild": 1, + "c.boxModel": 1, + "c.support.boxModel": 1, + "k.offsetWidth": 1, + "s.body.removeChild": 1, + "n.setAttribute": 1, + "c.support.submitBubbles": 1, + "c.support.changeBubbles": 1, + "c.props": 2, + "readonly": 3, + "maxlength": 2, + "cellspacing": 2, + "rowspan": 2, + "colspan": 2, + "usemap": 2, + "frameborder": 2, + "G": 11, + "Ya": 2, + "za": 3, + "embed": 3, + "applet": 2, + "c.noData": 2, + "a.nodeName.toLowerCase": 3, + "c.cache": 2, + "c.isEmptyObject": 1, + "c.removeData": 2, + "c.expando": 2, + "a.removeAttribute": 3, + "a.split": 4, + "this.trigger": 2, + ".each": 3, + "queue": 7, + "dequeue": 6, + "c.queue": 3, + "d.shift": 2, + "d.unshift": 2, + "f.call": 1, + "c.dequeue": 4, + "c.fx": 1, + "c.fx.speeds": 1, + "this.queue": 4, + "clearQueue": 2, + "Aa": 3, + "ca": 6, + "Za": 2, + "r/g": 2, + "/href": 1, + "style/": 1, + "ab": 1, + "bb": 2, + "area": 2, + "Ba": 3, + "/radio": 1, + "checkbox/": 1, + "c.attr": 4, + "this.nodeType": 4, + "this.removeAttribute": 1, + "addClass": 2, + "r.addClass": 1, + "r.attr": 1, + "e.nodeType": 7, + "e.className": 14, + "j.indexOf": 1, + "removeClass": 2, + "n.removeClass": 1, + "n.attr": 1, + "j.replace": 2, + "toggleClass": 2, + "j.toggleClass": 1, + "j.attr": 1, + "i.hasClass": 1, + "this.className": 10, + "hasClass": 2, + "": 1, + "c.nodeName": 4, + "b.attributes.value": 1, + ".specified": 1, + "b.value": 4, + "b.selectedIndex": 2, + "b.options": 1, + "": 1, + "nodeType=": 6, + "checked=": 1, + "this.selected": 1, + "this.selectedIndex": 1, + "attrFn": 2, + "css": 7, + "c.attrFn": 1, + "c.isXMLDoc": 1, + "a.test": 2, + "ab.test": 1, + "a.getAttributeNode": 7, + ".nodeValue": 1, + "b.specified": 2, + "bb.test": 2, + "cb.test": 1, + "a.href": 2, + "c.support.style": 1, + "a.style.cssText": 3, + "a.setAttribute": 7, + "c.support.hrefNormalized": 1, + "c.style": 1, + "db": 1, + "originalTarget": 1, + "onunload": 1, + "h.nodeType": 4, + "H": 8, + "M": 9, + "I": 7, + "f.exec": 2, + "p.push": 2, + "p.length": 10, + "r.exec": 1, + "n.relative": 5, + "ga": 2, + "p.shift": 4, + "n.match.ID.test": 2, + "k.find": 6, + "v.expr": 4, + "k.filter": 5, + "v.set": 5, + "expr": 2, + "p.pop": 4, + "h.parentNode": 3, + "D": 9, + "k.error": 2, + "j.call": 2, + "E": 11, + "l.push": 2, + "l.push.apply": 1, + "k.uniqueSort": 5, + "B": 5, + "g.sort": 1, + "g.length": 2, + "g.splice": 2, + "k.matches": 1, + "n.order.length": 1, + "n.order": 1, + "n.leftMatch": 1, + ".exec": 2, + "q.splice": 1, + "y.substr": 1, + "y.length": 1, + "Syntax": 3, + "unrecognized": 3, + "NAME": 2, + "TAG": 2, + "u00c0": 2, + "uFFFF": 2, + "leftMatch": 2, + "attrMap": 2, + "attrHandle": 2, + "g.getAttribute": 1, + "relative": 4, + "W/.test": 1, + "h.toLowerCase": 2, + "": 1, + "previousSibling": 5, + "nth": 5, + "odd": 2, + "reset": 2, + "Array": 3, + "sourceIndex": 1, + "": 4, + "name=": 2, + "href=": 2, + "": 2, + "

": 2, + "

": 2, + ".TEST": 2, + "
": 3, + "CLASS": 1, + "nextSibling": 3, + "": 1, + "": 1, + "
": 1, + "
": 1, + "": 4, + "
": 5, + "": 3, + "": 3, + "": 2, + "": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "position": 7, + "absolute": 2, + "solid": 2, + "#000": 2, + "": 1, + "": 1, + "fixed": 1, + "marginLeft": 2, + "borderTopWidth": 1, + "borderLeftWidth": 1, + "Left": 1, + "Top": 1, + "pageXOffset": 2, + "pageYOffset": 1, + "Height": 1, + "Width": 1, + "scrollTo": 1, + "CSS1Compat": 1, + "client": 3, + "cy": 4, + "f.isWindow": 2, + "cv": 2, + "cj": 4, + ".appendTo": 2, + "b.css": 1, + "b.remove": 1, + "ck": 5, + "c.createElement": 12, + "ck.frameBorder": 1, + "ck.width": 1, + "ck.height": 1, + "c.body.appendChild": 1, + "cl": 3, + "ck.createElement": 1, + "ck.contentWindow": 1, + "ck.contentDocument": 1, + ".document": 1, + "cl.write": 1, + "cl.createElement": 1, + "cl.body.appendChild": 1, + "f.css": 24, + "c.body.removeChild": 1, + "f.each": 21, + "cp.concat.apply": 1, + "cp.slice": 1, + "cq": 3, + "cs": 3, + "f.now": 2, + "a.ActiveXObject": 3, + "a.XMLHttpRequest": 1, + "a.dataFilter": 2, + "a.dataType": 1, + "a.dataTypes": 2, + "a.converters": 3, + "o.split": 1, + "f.error": 4, + "m.replace": 1, + "a.contents": 1, + "a.responseFields": 1, + "f.shift": 1, + "a.mimeType": 1, + "c.getResponseHeader": 1, + ".test": 1, + "f.unshift": 2, + "b_": 4, + "f.isArray": 8, + "bF.test": 1, + "c.dataTypes": 1, + "h.length": 3, + "bU": 4, + "c.dataTypes.unshift": 1, + "bZ": 3, + "f.isFunction": 21, + "b.toLowerCase": 3, + "bQ": 3, + "h.substr": 1, + "bD": 3, + "bx": 2, + "a.offsetWidth": 6, + "a.offsetHeight": 2, + "bn": 2, + "f.ajax": 3, + "f.globalEval": 2, + "bm": 3, + "f.nodeName": 16, + "bl": 3, + "a.getElementsByTagName": 9, + "f.grep": 3, + "a.defaultChecked": 1, + "a.checked": 4, + "bk": 5, + "a.querySelectorAll": 1, + "bj": 3, + "b.nodeType": 6, + "b.clearAttributes": 2, + "b.mergeAttributes": 2, + "b.nodeName.toLowerCase": 1, + "b.outerHTML": 1, + "a.outerHTML": 1, + "b.selected": 1, + "a.defaultSelected": 1, + "b.defaultValue": 1, + "a.defaultValue": 1, + "b.defaultChecked": 1, + "b.checked": 1, + "a.value": 8, + "b.removeAttribute": 3, + "f.expando": 23, + "f.hasData": 2, + "f.data": 25, + "d.events": 1, + "f.extend": 23, + "": 1, + "bh": 1, + "getElementsByTagName": 1, + "appendChild": 1, + "nodeType": 1, + "W": 3, + "N": 2, + "f._data": 15, + "r.live": 1, + "a.target.disabled": 1, + "a.namespace": 1, + "a.namespace.split": 1, + "r.live.slice": 1, + "s.length": 2, + "g.origType.replace": 1, + "q.push": 1, + "g.selector": 3, + "s.splice": 1, + "m.selector": 1, + "n.test": 2, + "g.namespace": 1, + "m.elem.disabled": 1, + "m.elem": 1, + "g.preType": 3, + "f.contains": 5, + "m.level": 1, + "": 1, + "e.elem": 2, + "e.handleObj.data": 1, + "e.handleObj": 1, + "e.handleObj.origHandler.apply": 1, + "a.isPropagationStopped": 1, + "e.level": 1, + "a.isImmediatePropagationStopped": 1, + "e.type": 6, + "e.originalEvent": 1, + "e.liveFired": 1, + "f.event.handle.call": 1, + ".preventDefault": 1, + "f.removeData": 4, + "i.resolve": 1, + "c.replace": 4, + "f.isNaN": 3, + "i.test": 1, + "f.parseJSON": 2, + "a.navigator": 1, + "a.location": 1, + "e.isReady": 1, + "c.documentElement.doScroll": 2, + "e.ready": 6, + "e.fn.init": 1, + "a.jQuery": 2, + "a.": 2, + "d.userAgent": 1, + "C": 4, + "e.fn": 2, + "e.prototype": 1, + "c.body": 4, + "a.charAt": 2, + "i.exec": 1, + "d.ownerDocument": 1, + "n.exec": 1, + "e.isPlainObject": 1, + "e.fn.attr.call": 1, + "k.createElement": 1, + "e.buildFragment": 1, + "j.cacheable": 1, + "e.clone": 1, + "j.fragment": 2, + "e.merge": 3, + "c.getElementById": 1, + "h.id": 1, + "f.find": 2, + "d.jquery": 1, + "e.isFunction": 5, + "f.ready": 1, + "e.makeArray": 1, + "D.call": 4, + "e.isArray": 2, + "C.apply": 1, + "d.prevObject": 1, + "d.context": 2, + "d.selector": 2, + "e.each": 2, + "e.bindReady": 1, + "y.done": 1, + "D.apply": 1, + "e.map": 1, + "e.fn.init.prototype": 1, + "e.extend": 2, + "e.fn.extend": 1, + "": 1, + "jQuery=": 2, + "isReady=": 1, + "y.resolveWith": 1, + "e.fn.trigger": 1, + "e._Deferred": 1, + "c.readyState": 2, + "c.addEventListener": 4, + "a.addEventListener": 4, + "c.attachEvent": 3, + "a.attachEvent": 6, + "a.frameElement": 1, + "isWindow": 2, + "m.test": 1, + "A.call": 1, + "e.isWindow": 2, + "B.call": 3, + "e.trim": 1, + "a.JSON": 1, + "a.JSON.parse": 2, + "o.test": 1, + "e.error": 2, + "parseXML": 1, + "a.DOMParser": 1, + "DOMParser": 1, + "d.parseFromString": 1, + "ActiveXObject": 1, + "c.async": 4, + "c.loadXML": 1, + "c.documentElement": 4, + "d.nodeName": 4, + "j.test": 3, + "a.execScript": 1, + "a.eval.call": 1, + "c.apply": 2, + "c.call": 3, + "E.call": 1, + "C.call": 1, + "F.call": 1, + "c.length": 8, + "": 1, + "j=": 14, + "h.concat.apply": 1, + "f.concat": 1, + "g.guid": 3, + "e.guid": 3, + "e.access": 1, + "s.exec": 1, + "t.exec": 1, + "u.exec": 1, + "a.indexOf": 2, + "v.exec": 1, + "a.fn.init": 2, + "a.superclass": 1, + "a.fn": 2, + "a.prototype": 1, + "a.fn.constructor": 1, + "a.sub": 1, + "e.fn.init.call": 1, + "a.fn.init.prototype": 1, + "e.uaMatch": 1, + "x.browser": 2, + "e.browser": 1, + "e.browser.version": 1, + "x.version": 1, + "e.browser.webkit": 1, + "e.browser.safari": 1, + "c.removeEventListener": 2, + "c.detachEvent": 1, + "": 1, + "shift": 1, + "apply": 8, + "h.call": 2, + "g.resolveWith": 3, + "<=1&&a&&f.isFunction(a.promise)?a:f.Deferred();if(d>": 1, + "g.reject": 1, + "g.promise": 1, + "f.support": 2, + "f.appendChild": 1, + "a.firstChild.nodeType": 2, + "e.getAttribute": 2, + "e.style.opacity": 1, + "e.style.cssFloat": 1, + "h.value": 3, + "g.selected": 1, + "a.className": 1, + "h.checked": 2, + "j.noCloneChecked": 1, + "h.cloneNode": 1, + "f.disabled": 1, + "j.optDisabled": 1, + "g.disabled": 1, + "j.deleteExpando": 1, + "a.fireEvent": 1, + "j.noCloneEvent": 1, + "a.detachEvent": 1, + "h.setAttribute": 2, + "j.radioValue": 1, + "c.createDocumentFragment": 1, + "k.appendChild": 1, + "j.checkClone": 1, + "k.cloneNode": 1, + "a.style.width": 1, + "a.style.paddingLeft": 1, + "visibility": 3, + "l.style": 1, + "l.appendChild": 1, + "j.appendChecked": 1, + "j.boxModel": 1, + "a.style": 8, + "a.style.display": 3, + "a.style.zoom": 1, + "j.inlineBlockNeedsLayout": 1, + "j.shrinkWrapBlocks": 1, + "j.reliableHiddenOffsets": 1, + "c.defaultView": 2, + "c.defaultView.getComputedStyle": 3, + "i.style.width": 1, + "i.style.marginRight": 1, + "j.reliableMarginRight": 1, + "l.innerHTML": 1, + "f.boxModel": 1, + "f.support.boxModel": 4, + "f.fn.jquery": 1, + "f.cache": 5, + "f.acceptData": 4, + "f.uuid": 1, + "f.noop": 4, + "f.camelCase": 5, + ".events": 1, + "f.support.deleteExpando": 3, + "f.noData": 2, + "f.fn.extend": 9, + "g.indexOf": 2, + "g.substring": 1, + "b.triggerHandler": 2, + "_mark": 2, + "_unmark": 3, + "f.makeArray": 5, + "e.push": 3, + "f.queue": 3, + "c.shift": 2, + "c.unshift": 1, + "f.dequeue": 4, + "f.fx": 2, + "f.fx.speeds": 1, + "d.resolveWith": 1, + "f.Deferred": 2, + "f._Deferred": 2, + "l.done": 1, + "d.promise": 1, + "rea": 1, + "autofocus": 1, + "autoplay": 1, + "controls": 1, + "defer": 1, + "required": 1, + "scoped": 1, + "f.access": 3, + "f.attr": 2, + "f.removeAttr": 3, + "f.prop": 2, + "removeProp": 1, + "f.propFix": 6, + "c.addClass": 1, + "f.trim": 2, + "c.removeClass": 1, + "g.nodeType": 6, + "g.className": 4, + "h.replace": 2, + "d.toggleClass": 1, + "d.attr": 1, + "h.hasClass": 1, + "": 1, + "f.valHooks": 7, + "e.nodeName.toLowerCase": 1, + "c.get": 1, + "e.value": 1, + "e.val": 1, + "f.map": 5, + "this.nodeName.toLowerCase": 1, + "this.type": 3, + "c.set": 1, + "valHooks": 1, + "a.attributes.value": 1, + "a.text": 1, + "a.selectedIndex": 3, + "a.options": 2, + "": 3, + "optDisabled": 1, + "selected=": 1, + "attrFix": 1, + "f.attrFn": 3, + "f.isXMLDoc": 4, + "f.attrFix": 3, + "f.attrHooks": 5, + "t.test": 2, + "d.toLowerCase": 1, + "c.toLowerCase": 4, + "u.test": 1, + "i.set": 1, + "i.get": 1, + "f.support.getSetAttribute": 2, + "a.removeAttributeNode": 1, + "q.test": 1, + "f.support.radioValue": 1, + "c.specified": 1, + "c.value": 1, + "r.test": 1, + "s.test": 1, + "propFix": 1, + "cellpadding": 1, + "contenteditable": 1, + "f.propHooks": 1, + "h.set": 1, + "h.get": 1, + "propHooks": 1, + "f.attrHooks.value": 1, + "v.get": 1, + "f.attrHooks.name": 1, + "f.valHooks.button": 1, + "d.nodeValue": 3, + "f.support.hrefNormalized": 1, + "f.support.style": 1, + "f.attrHooks.style": 1, + "a.style.cssText.toLowerCase": 1, + "f.support.optSelected": 1, + "f.propHooks.selected": 2, + "b.parentNode.selectedIndex": 1, + "f.support.checkOn": 1, + "f.inArray": 4, + "s.": 1, + "f.event": 2, + "d.handler": 1, + "g.handler": 1, + "d.guid": 4, + "f.guid": 3, + "i.events": 2, + "i.handle": 2, + "f.event.triggered": 3, + "f.event.handle.apply": 1, + "k.elem": 2, + "c.split": 2, + "l.indexOf": 1, + "l.split": 1, + "n.shift": 1, + "h.namespace": 2, + "n.slice": 1, + "h.type": 1, + "h.guid": 2, + "f.event.special": 5, + "p.setup": 1, + "p.setup.call": 1, + "p.add": 1, + "p.add.call": 1, + "h.handler.guid": 2, + "o.push": 1, + "f.event.global": 2, + "s.events": 1, + "c.type": 9, + "c.handler": 1, + "c.charAt": 1, + "f.event.remove": 5, + "h.indexOf": 3, + "h.split": 2, + "m.shift": 1, + "m.slice": 1, + "q.namespace": 1, + "q.handler": 1, + "p.splice": 1, + "": 1, + "elem=": 4, + "customEvent": 1, + "trigger": 4, + "h.slice": 1, + "i.shift": 1, + "i.sort": 1, + "f.event.customEvent": 1, + "f.Event": 2, + "c.exclusive": 2, + "c.namespace": 2, + "i.join": 2, + "c.namespace_re": 1, + "c.preventDefault": 3, + "c.stopPropagation": 1, + "b.events": 4, + "f.event.trigger": 6, + "b.handle.elem": 2, + "c.result": 3, + "c.target": 3, + "c.currentTarget": 2, + "m.apply": 1, + "k.parentNode": 1, + "k.ownerDocument": 1, + "c.target.ownerDocument": 1, + "c.isPropagationStopped": 1, + "c.isDefaultPrevented": 2, + "o._default": 1, + "o._default.call": 1, + "e.ownerDocument": 1, + "f.event.fix": 2, + "a.event": 1, + "Array.prototype.slice.call": 1, + "namespace_re": 1, + "namespace": 1, + "handler=": 1, + "data=": 2, + "handleObj=": 1, + "result=": 1, + "preventDefault": 4, + "stopPropagation": 5, + "isImmediatePropagationStopped": 2, + "fix": 1, + "Event": 3, + "target=": 2, + "relatedTarget=": 1, + "fromElement=": 1, + "pageX=": 2, + "scrollLeft": 2, + "clientLeft": 2, + "pageY=": 1, + "scrollTop": 2, + "clientTop": 2, + "which=": 3, + "metaKey=": 1, + "1e8": 1, + "special": 3, + "setup": 5, + "teardown": 6, + "origType": 2, + "beforeunload": 1, + "onbeforeunload=": 3, + "removeEvent=": 1, + "removeEventListener": 3, + "detachEvent": 2, + "Event=": 1, + "originalEvent=": 1, + "type=": 5, + "isDefaultPrevented=": 2, + "defaultPrevented": 1, + "returnValue=": 2, + "getPreventDefault": 2, + "timeStamp=": 1, + "prototype=": 2, + "originalEvent": 2, + "isPropagationStopped=": 1, + "cancelBubble=": 1, + "stopImmediatePropagation": 1, + "isImmediatePropagationStopped=": 1, + "isDefaultPrevented": 1, + "isPropagationStopped": 1, + "G=": 1, + "H=": 1, + "submit=": 1, + "specialSubmit": 3, + "closest": 3, + "keyCode=": 1, + "J=": 1, + "selectedIndex": 1, + "a.selected": 1, + "z.test": 3, + "d.readOnly": 1, + "c.liveFired": 1, + "f.event.special.change": 1, + "filters": 1, + "beforedeactivate": 1, + "K.call": 2, + "a.keyCode": 2, + "beforeactivate": 1, + "f.event.add": 2, + "f.event.special.change.filters": 1, + "I.focus": 1, + "I.beforeactivate": 1, + "f.support.focusinBubbles": 1, + "c.originalEvent": 1, + "a.preventDefault": 3, + "f.fn": 9, + "e.apply": 1, + "this.one": 1, + "unbind": 2, + "this.unbind": 2, + "delegate": 1, + "this.live": 1, + "undelegate": 1, + "this.die": 1, + "triggerHandler": 1, + ".guid": 1, + "this.click": 1, + "this.mouseenter": 1, + ".mouseleave": 1, + "g.charAt": 1, + "n.unbind": 1, + "y.exec": 1, + "a.push": 2, + "n.length": 1, + "": 1, + "this.bind": 2, + "": 2, + "sizcache=": 4, + "sizset": 2, + "sizset=": 2, + "toLowerCase": 3, + "d.nodeType": 5, + "k.isXML": 4, + "a.exec": 2, + "x.push": 1, + "x.length": 8, + "m.exec": 1, + "l.relative": 6, + "x.shift": 4, + "l.match.ID.test": 2, + "q.expr": 4, + "q.set": 4, + "x.pop": 4, + "d.parentNode": 4, + "e.call": 1, + "f.push.apply": 1, + "k.contains": 5, + "a.sort": 1, + "": 1, + "matches=": 1, + "matchesSelector=": 1, + "l.order.length": 1, + "l.order": 1, + "l.leftMatch": 1, + "j.substr": 1, + "": 1, + "__sizzle__": 1, + "sizzle": 1, + "l.match.PSEUDO.test": 1, + "a.document.nodeType": 1, + "a.getElementsByClassName": 3, + "a.lastChild.className": 1, + "l.order.splice": 1, + "l.find.CLASS": 1, + "b.getElementsByClassName": 2, + "c.documentElement.contains": 1, + "a.contains": 2, + "c.documentElement.compareDocumentPosition": 1, + "a.compareDocumentPosition": 1, + "a.ownerDocument": 1, + ".documentElement": 1, + "b.nodeName": 2, + "l.match.PSEUDO.exec": 1, + "l.match.PSEUDO": 1, + "f.expr": 4, + "k.selectors": 1, + "f.expr.filters": 3, + "f.unique": 4, + "f.text": 2, + "k.getText": 1, + "/Until": 1, + "parents": 2, + "prevUntil": 2, + "prevAll": 2, + "U": 1, + "f.expr.match.POS": 1, + "V": 2, + "contents": 4, + "prev": 2, + ".filter": 2, + "": 1, + "e.splice": 1, + "this.filter": 2, + "": 1, + "": 1, + ".is": 2, + "c.push": 3, + "g.parentNode": 2, + "U.test": 1, + "": 1, + "f.find.matchesSelector": 2, + "g.ownerDocument": 1, + "this.parent": 2, + ".children": 1, + "a.jquery": 2, + "f.merge": 2, + "this.get": 1, + "andSelf": 1, + "this.add": 1, + "f.dir": 6, + "parentsUntil": 1, + "f.nth": 2, + "nextAll": 1, + "nextUntil": 1, + "siblings": 1, + "f.sibling": 2, + "a.parentNode.firstChild": 1, + "a.contentDocument": 1, + "a.contentWindow.document": 1, + "a.childNodes": 1, + "T.call": 1, + "P.test": 1, + "f.filter": 2, + "R.test": 1, + "Q.test": 1, + "e.reverse": 1, + "g.join": 1, + "f.find.matches": 1, + "dir": 1, + "sibling": 1, + "a.nextSibling": 1, + "<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:]+)[^>": 1, + "tbody/i": 1, + "bc": 1, + "bd": 1, + "/checked": 1, + "s*.checked.": 1, + "java": 1, + "ecma": 1, + "script/i": 1, + "CDATA": 1, + "bg": 3, + "legend": 1, + "_default": 5, + "bg.optgroup": 1, + "bg.option": 1, + "bg.tbody": 1, + "bg.tfoot": 1, + "bg.colgroup": 1, + "bg.caption": 1, + "bg.thead": 1, + "bg.th": 1, + "bg.td": 1, + "f.support.htmlSerialize": 1, + "bg._default": 2, + "c.text": 2, + "this.empty": 3, + ".append": 6, + ".createTextNode": 1, + "wrapAll": 1, + ".wrapAll": 2, + ".eq": 1, + ".clone": 1, + "b.map": 1, + "wrapInner": 1, + ".wrapInner": 1, + "b.contents": 1, + "c.wrapAll": 1, + "b.append": 1, + "unwrap": 1, + ".replaceWith": 1, + "this.childNodes": 1, + ".end": 1, + "append": 1, + "this.domManip": 4, + "this.appendChild": 1, + "prepend": 1, + "this.insertBefore": 1, + "this.firstChild": 1, + "this.parentNode.insertBefore": 2, + "a.push.apply": 2, + "this.nextSibling": 2, + ".toArray": 1, + "f.cleanData": 4, + "d.parentNode.removeChild": 1, + "b.getElementsByTagName": 1, + "this.map": 3, + "f.clone": 2, + ".innerHTML.replace": 1, + "bc.test": 2, + "f.support.leadingWhitespace": 2, + "Z.test": 2, + "_.exec": 2, + ".getElementsByTagName": 2, + "c.html": 3, + "replaceWith": 1, + "c.replaceWith": 1, + ".detach": 1, + "this.parentNode": 1, + ".remove": 2, + ".before": 1, + "detach": 1, + "this.remove": 1, + "domManip": 1, + "f.support.checkClone": 2, + "bd.test": 2, + ".domManip": 1, + "g.html": 1, + "g.domManip": 1, + "j.parentNode": 1, + "f.support.parentNode": 1, + "i.nodeType": 1, + "i.childNodes.length": 1, + "f.buildFragment": 2, + "e.fragment": 1, + "h.childNodes.length": 1, + "h.firstChild": 2, + "": 1, + "k.length": 2, + ".charAt": 1, + "f.fragments": 3, + "i.createDocumentFragment": 1, + "f.clean": 1, + "appendTo": 1, + "prependTo": 1, + "insertBefore": 1, + "insertAfter": 1, + "replaceAll": 1, + "g.childNodes.length": 1, + "this.clone": 1, + ".get": 3, + "d.concat": 1, + "e.selector": 1, + "f.support.noCloneEvent": 1, + "f.support.noCloneChecked": 1, + "b.createElement": 2, + "b.createTextNode": 2, + "k.replace": 2, + "o.innerHTML": 1, + "o.lastChild": 1, + "f.support.tbody": 1, + "ba.test": 1, + "o.firstChild": 2, + "o.firstChild.childNodes": 1, + "o.childNodes": 2, + "q.length": 1, + ".childNodes.length": 1, + ".parentNode.removeChild": 2, + "o.insertBefore": 1, + "Z.exec": 1, + "f.support.appendChecked": 1, + "k.nodeType": 1, + "h.push": 1, + "be.test": 1, + ".type.toLowerCase": 1, + "h.splice.apply": 1, + ".concat": 3, + "cleanData": 1, + "j.nodeName": 1, + "j.nodeName.toLowerCase": 1, + "f.removeEvent": 1, + "b.handle": 2, + "j.removeAttribute": 2, + "bo": 2, + "/alpha": 1, + "bp": 1, + "/opacity": 1, + "bq": 2, + "bs": 2, + "bv": 2, + "de": 1, + "bw": 2, + "bz": 7, + "bA": 3, + "bB": 5, + "bC": 2, + "f.fn.css": 1, + "f.style": 4, + "cssHooks": 1, + "cssNumber": 3, + "zIndex": 1, + "fontWeight": 1, + "zoom": 1, + "lineHeight": 1, + "widows": 1, + "orphans": 1, + "cssProps": 1, + "f.support.cssFloat": 1, + "f.cssHooks": 3, + "f.cssProps": 2, + "k.get": 1, + "bu.test": 1, + "d.replace": 1, + "f.cssNumber": 1, + "k.set": 1, + "g.get": 1, + "swap": 1, + "f.curCSS": 1, + "f.swap": 2, + "<0||e==null){e=a.style[b];return>": 1, + "0px": 1, + "f.support.opacity": 1, + "f.cssHooks.opacity": 1, + "bp.test": 1, + "a.currentStyle": 4, + "a.currentStyle.filter": 1, + "a.style.filter": 1, + "RegExp.": 1, + "c.zoom": 1, + "b*100": 1, + "d.filter": 1, + "c.filter": 2, + "bo.test": 1, + "g.replace": 1, + "f.support.reliableMarginRight": 1, + "f.cssHooks.marginRight": 1, + "a.style.marginRight": 1, + "a.ownerDocument.defaultView": 1, + "e.getComputedStyle": 1, + "g.getPropertyValue": 1, + "a.ownerDocument.documentElement": 1, + "c.documentElement.currentStyle": 1, + "a.runtimeStyle": 2, + "bs.test": 1, + "bt.test": 1, + "f.left": 3, + "a.runtimeStyle.left": 2, + "a.currentStyle.left": 1, + "f.pixelLeft": 1, + "f.expr.filters.hidden": 2, + "f.support.reliableHiddenOffsets": 1, + "f.expr.filters.visible": 1, + "bE": 2, + "bF": 1, + "bG": 3, + "n/g": 1, + "bH": 2, + "/#.*": 1, + "bI": 1, + "/mg": 1, + "bJ": 1, + "date": 1, + "datetime": 1, + "month": 1, + "time": 1, + "week": 1, + "bK": 1, + "about": 1, + "storage": 1, + "extension": 1, + "widget": 1, + "bL": 1, + "GET": 1, + "bM": 2, + "bN": 2, + "bO": 2, + "<\\/script>": 2, + "/gi": 2, + "bP": 1, + "bR": 2, + "bS": 1, + "bT": 2, + "f.fn.load": 1, + "bV": 3, + "bW": 5, + "bX": 8, + "e.href": 1, + "bY": 1, + "bW.href": 2, + "bS.exec": 1, + "bW.toLowerCase": 1, + "bT.apply": 1, + "a.slice": 2, + "f.param": 2, + "f.ajaxSettings.traditional": 2, + "complete": 6, + "a.responseText": 1, + "a.isResolved": 1, + "a.done": 1, + "i.html": 1, + "i.each": 1, + "serialize": 1, + "this.serializeArray": 1, + "serializeArray": 1, + "this.elements": 2, + "this.disabled": 1, + "this.checked": 1, + "bP.test": 1, + "bJ.test": 1, + ".map": 1, + "b.name": 2, + "success": 2, + "getScript": 1, + "f.get": 2, + "getJSON": 1, + "ajaxSetup": 1, + "f.ajaxSettings": 4, + "ajaxSettings": 1, + "isLocal": 1, + "bK.test": 1, + "contentType": 4, + "processData": 3, + "accepts": 5, + "xml": 3, + "json": 2, + "/xml/": 1, + "/html/": 1, + "/json/": 1, + "responseFields": 1, + "converters": 2, + "a.String": 1, + "f.parseXML": 1, + "ajaxPrefilter": 1, + "ajaxTransport": 1, + "ajax": 2, + "v.readyState": 1, + "d.ifModified": 1, + "v.getResponseHeader": 2, + "f.lastModified": 1, + "f.etag": 1, + "v.status": 1, + "v.statusText": 1, + "h.resolveWith": 1, + "h.rejectWith": 1, + "v.statusCode": 2, + "g.trigger": 2, + "i.resolveWith": 1, + "f.active": 1, + "f.ajaxSetup": 3, + "d.statusCode": 1, + "readyState": 1, + "setRequestHeader": 6, + "getAllResponseHeaders": 1, + "getResponseHeader": 1, + "bI.exec": 1, + "overrideMimeType": 1, + "d.mimeType": 1, + "abort": 4, + "p.abort": 1, + "h.promise": 1, + "v.success": 1, + "v.done": 1, + "v.error": 1, + "v.fail": 1, + "v.complete": 1, + "i.done": 1, + "<2)for(b>": 1, + "url=": 1, + "dataTypes=": 1, + "crossDomain=": 2, + "80": 2, + "443": 2, + "traditional": 1, + "toUpperCase": 1, + "hasContent=": 1, + "active": 2, + "ajaxStart": 1, + "hasContent": 2, + "cache=": 1, + "x=": 1, + "1_=": 1, + "_=": 1, + "Content": 1, + "Type": 1, + "ifModified": 1, + "lastModified": 3, + "Modified": 1, + "etag": 3, + "None": 1, + "Accept": 1, + "dataTypes": 4, + "q=": 1, + "01": 1, + "beforeSend": 2, + "No": 1, + "Transport": 1, + "readyState=": 1, + "ajaxSend": 1, + "v.abort": 1, + "d.timeout": 1, + "p.send": 1, + "encodeURIComponent": 2, + "f.isPlainObject": 1, + "d.join": 1, + "cc": 2, + "cd": 3, + "jsonp": 1, + "jsonpCallback": 1, + "f.ajaxPrefilter": 2, + "b.contentType": 1, + "b.data": 5, + "b.dataTypes": 2, + "b.jsonp": 3, + "cd.test": 2, + "b.url": 4, + "b.jsonpCallback": 4, + "d.always": 1, + "b.converters": 1, + "/javascript": 1, + "ecmascript/": 1, + "a.cache": 2, + "a.crossDomain": 2, + "a.global": 1, + "f.ajaxTransport": 2, + "c.head": 1, + "c.getElementsByTagName": 1, + "send": 2, + "d.async": 1, + "a.scriptCharset": 2, + "d.charset": 1, + "d.src": 1, + "a.url": 1, + "d.onload": 3, + "d.onreadystatechange": 2, + "d.readyState": 2, + "/loaded": 1, + "complete/.test": 1, + "e.removeChild": 1, + "e.insertBefore": 1, + "e.firstChild": 1, + "cg": 7, + "f.ajaxSettings.xhr": 2, + "this.isLocal": 1, + "cors": 1, + "f.support.ajax": 1, + "c.crossDomain": 3, + "f.support.cors": 1, + "c.xhr": 1, + "c.username": 2, + "h.open": 2, + "c.url": 2, + "c.password": 1, + "c.xhrFields": 3, + "c.mimeType": 2, + "h.overrideMimeType": 2, + "h.setRequestHeader": 1, + "h.send": 1, + "c.hasContent": 1, + "h.readyState": 3, + "h.onreadystatechange": 2, + "h.abort": 1, + "h.status": 1, + "h.getAllResponseHeaders": 1, + "h.responseXML": 1, + "n.documentElement": 1, + "m.xml": 1, + "m.text": 2, + "h.responseText": 1, + "h.statusText": 1, + "c.isLocal": 1, + ".unload": 1, + "cm": 2, + "cn": 1, + "co": 5, + "cp": 1, + "a.webkitRequestAnimationFrame": 1, + "a.mozRequestAnimationFrame": 1, + "a.oRequestAnimationFrame": 1, + "this.animate": 2, + "d.style": 3, + ".style": 1, + "": 1, + "_toggle": 2, + "animate": 4, + "fadeTo": 1, + "queue=": 2, + "animatedProperties=": 1, + "animatedProperties": 2, + "specialEasing": 2, + "easing": 3, + "swing": 2, + "overflow=": 2, + "overflow": 2, + "overflowX": 1, + "overflowY": 1, + "display=": 3, + "zoom=": 1, + "fx": 10, + "m=": 2, + "custom": 5, + "timers": 3, + "slideDown": 1, + "slideUp": 1, + "slideToggle": 1, + "fadeIn": 1, + "fadeOut": 1, + "fadeToggle": 1, + "duration": 4, + "duration=": 2, + "off": 1, + "speeds": 4, + "old=": 1, + "complete=": 1, + "old": 2, + "linear": 1, + "cos": 1, + "options=": 1, + "prop=": 3, + "orig=": 1, + "orig": 3, + "step": 7, + "startTime=": 1, + "start=": 1, + "end=": 1, + "unit=": 1, + "unit": 1, + "now=": 1, + "pos=": 1, + "state=": 1, + "co=": 2, + "tick": 3, + "interval": 3, + "show=": 1, + "hide=": 1, + "e.duration": 3, + "this.startTime": 2, + "this.now": 3, + "this.end": 2, + "this.state": 3, + "this.update": 2, + "e.animatedProperties": 5, + "this.prop": 2, + "e.overflow": 2, + "f.support.shrinkWrapBlocks": 1, + "e.hide": 2, + ".hide": 2, + "e.show": 1, + "e.orig": 1, + "e.complete.call": 1, + "Infinity": 1, + "h/e.duration": 1, + "f.easing": 1, + "this.start": 2, + "*this.pos": 1, + "f.timers": 2, + "a.splice": 1, + "f.fx.stop": 1, + "slow": 1, + "fast": 1, + "a.elem": 2, + "a.now": 4, + "a.elem.style": 3, + "a.prop": 5, + "a.unit": 1, + "f.expr.filters.animated": 1, + "b.elem": 1, + "cw": 1, + "able": 1, + "cx": 2, + "f.fn.offset": 2, + "f.offset.setOffset": 2, + "b.ownerDocument.body": 2, + "f.offset.bodyOffset": 2, + "b.getBoundingClientRect": 1, + "e.documentElement": 4, + "c.top": 4, + "c.left": 4, + "e.body": 3, + "g.clientTop": 1, + "h.clientTop": 1, + "g.clientLeft": 1, + "h.clientLeft": 1, + "i.pageYOffset": 1, + "g.scrollTop": 1, + "h.scrollTop": 2, + "i.pageXOffset": 1, + "g.scrollLeft": 1, + "h.scrollLeft": 2, + "f.offset.initialize": 3, + "b.offsetParent": 2, + "g.documentElement": 1, + "g.body": 1, + "g.defaultView": 1, + "j.getComputedStyle": 2, + "b.currentStyle": 2, + "b.offsetTop": 2, + "b.offsetLeft": 2, + "f.offset.supportsFixedPosition": 2, + "k.position": 4, + "b.scrollTop": 1, + "b.scrollLeft": 1, + "f.offset.doesNotAddBorder": 1, + "f.offset.doesAddBorderForTableAndCells": 1, + "cw.test": 1, + "c.borderTopWidth": 2, + "c.borderLeftWidth": 2, + "f.offset.subtractsBorderForOverflowNotVisible": 1, + "c.overflow": 1, + "i.offsetTop": 1, + "i.offsetLeft": 1, + "i.scrollTop": 1, + "i.scrollLeft": 1, + "f.offset": 1, + "initialize": 3, + "b.style": 1, + "d.nextSibling.firstChild.firstChild": 1, + "this.doesNotAddBorder": 1, + "e.offsetTop": 4, + "this.doesAddBorderForTableAndCells": 1, + "h.offsetTop": 1, + "e.style.position": 2, + "e.style.top": 2, + "this.supportsFixedPosition": 1, + "d.style.overflow": 1, + "d.style.position": 1, + "this.subtractsBorderForOverflowNotVisible": 1, + "this.doesNotIncludeMarginInBodyOffset": 1, + "a.offsetTop": 2, + "bodyOffset": 1, + "a.offsetLeft": 1, + "f.offset.doesNotIncludeMarginInBodyOffset": 1, + "setOffset": 1, + "a.style.position": 1, + "e.offset": 1, + "e.position": 1, + "l.top": 1, + "l.left": 1, + "b.top": 2, + "k.top": 1, + "g.top": 1, + "b.left": 2, + "k.left": 1, + "g.left": 1, + "b.using.call": 1, + "e.css": 1, + "this.offsetParent": 2, + "cx.test": 2, + "b.offset": 1, + "d.top": 2, + "d.left": 2, + "offsetParent": 1, + "a.offsetParent": 1, + "g.document.documentElement": 1, + "g.document.body": 1, + "g.scrollTo": 1, + ".scrollLeft": 1, + ".scrollTop": 1, + "e.document.documentElement": 1, + "e.document.compatMode": 1, + "e.document.body": 1, + "this.css": 1, + "http.createServer": 1, + "res.writeHead": 1, + "res.end": 1, + ".listen": 1, + "Date.prototype.toJSON": 2, + "isFinite": 1, + "this.valueOf": 2, + "this.getUTCFullYear": 1, + "this.getUTCMonth": 1, + "this.getUTCDate": 1, + "this.getUTCHours": 1, + "this.getUTCMinutes": 1, + "this.getUTCSeconds": 1, + "String.prototype.toJSON": 1, + "Number.prototype.toJSON": 1, + "Boolean.prototype.toJSON": 1, + "u0000": 1, + "u00ad": 1, + "u0600": 1, + "u0604": 1, + "u070f": 1, + "u17b4": 1, + "u17b5": 1, + "u200c": 1, + "u200f": 1, + "u202f": 1, + "u2060": 1, + "u206f": 1, + "ufeff": 1, + "ufff0": 1, + "uffff": 1, + "escapable": 1, + "/bfnrt": 1, + "JSON.parse": 1, + "PUT": 1, + "DELETE": 1, + "_id": 1, + "ties": 1, + "collection.": 1, + "_removeReference": 1, + "model.collection": 2, + "model.unbind": 1, + "this._onModelEvent": 1, + "_onModelEvent": 1, + "ev": 5, + "this._remove": 1, + "model.idAttribute": 2, + "this._byId": 2, + "model.previous": 1, + "model.id": 1, + "this.trigger.apply": 2, + "_.each": 1, + "Backbone.Collection.prototype": 1, + "this.models": 1, + "_.toArray": 1, + "Backbone.Router": 1, + "options.routes": 2, + "this.routes": 4, + "this._bindRoutes": 1, + "this.initialize.apply": 2, + "namedParam": 2, + "splatParam": 2, + "escapeRegExp": 2, + "_.extend": 9, + "Backbone.Router.prototype": 1, + "Backbone.Events": 2, + "route": 18, + "Backbone.history": 2, + "Backbone.History": 2, + "_.isRegExp": 1, + "this._routeToRegExp": 1, + "Backbone.history.route": 1, + "_.bind": 2, + "this._extractParameters": 1, + "callback.apply": 1, + "navigate": 2, + "triggerRoute": 4, + "Backbone.history.navigate": 1, + "_bindRoutes": 1, + "routes": 4, + "routes.unshift": 1, + "routes.length": 1, + "this.route": 1, + "_routeToRegExp": 1, + "route.replace": 1, + "_extractParameters": 1, + "route.exec": 1, + "this.handlers": 2, + "_.bindAll": 1, + "hashStrip": 4, + "#*": 1, + "isExplorer": 1, + "/msie": 1, + "historyStarted": 3, + "Backbone.History.prototype": 1, + "getFragment": 1, + "forcePushState": 2, + "this._hasPushState": 6, + "window.location.pathname": 1, + "window.location.search": 1, + "fragment.indexOf": 1, + "this.options.root": 6, + "fragment.substr": 1, + "this.options.root.length": 1, + "window.location.hash": 3, + "fragment.replace": 1, + "this._wantsPushState": 3, + "this.options.pushState": 2, + "window.history.pushState": 2, + "this.getFragment": 6, + "docMode": 3, + "oldIE": 3, + "isExplorer.exec": 1, + "navigator.userAgent.toLowerCase": 1, + "this.iframe": 4, + ".contentWindow": 1, + "this.navigate": 2, + ".bind": 3, + "this.checkUrl": 3, + "this.interval": 1, + "this.fragment": 13, + "loc": 2, + "atRoot": 3, + "loc.pathname": 1, + "loc.hash": 1, + "loc.hash.replace": 1, + "window.history.replaceState": 1, + "document.title": 2, + "loc.protocol": 2, + "loc.host": 2, + "this.loadUrl": 4, + "this.handlers.unshift": 1, + "checkUrl": 1, + "this.iframe.location.hash": 3, + "decodeURIComponent": 2, + "loadUrl": 1, + "fragmentOverride": 2, + "matched": 2, + "_.any": 1, + "handler.route.test": 1, + "handler.callback": 1, + "frag.indexOf": 1, + "this.iframe.document.open": 1, + ".close": 1, + "Backbone.View": 1, + "this.cid": 3, + "_.uniqueId": 1, + "this._configure": 1, + "this._ensureElement": 1, + "this.delegateEvents": 1, + "selectorDelegate": 2, + "this.el": 10, + "eventSplitter": 2, + "viewOptions": 2, + "Backbone.View.prototype": 1, + "tagName": 3, + "render": 1, + "el": 4, + ".attr": 1, + ".html": 1, + "delegateEvents": 1, + "this.events": 1, + "key.match": 1, + "_configure": 1, + "viewOptions.length": 1, + "_ensureElement": 1, + "this.attributes": 1, + "this.id": 2, + "attrs.id": 1, + "this.make": 1, + "this.tagName": 1, + "_.isString": 1, + "protoProps": 6, + "classProps": 2, + "inherits": 2, + "child.extend": 1, + "this.extend": 1, + "Backbone.Model.extend": 1, + "Backbone.Collection.extend": 1, + "Backbone.Router.extend": 1, + "Backbone.View.extend": 1, + "methodMap": 2, + "Backbone.sync": 1, + "params": 2, + "params.url": 2, + "getUrl": 2, + "urlError": 2, + "params.data": 5, + "params.contentType": 2, + "model.toJSON": 1, + "Backbone.emulateJSON": 2, + "params.processData": 1, + "Backbone.emulateHTTP": 1, + "params.data._method": 1, + "params.type": 1, + "params.beforeSend": 1, + "xhr": 1, + "xhr.setRequestHeader": 1, + ".ajax": 1, + "staticProps": 3, + "protoProps.hasOwnProperty": 1, + "protoProps.constructor": 1, + "parent.apply": 1, + "child.prototype.constructor": 1, + "object.url": 4, + "_.isFunction": 1, + "wrapError": 1, + "onError": 3, + "resp": 3, + "model.trigger": 1, + "escapeHTML": 1, + "string.replace": 1, + "#x": 1, + "da": 1, + "": 1, + "#x27": 1, + "#x2F": 1 }, "Julia": { "##": 5, @@ -34781,9 +34810,80 @@ "cond": 1, "/": 1, "integer": 2, + "Robert": 3, + "Virding": 3, + "mnesia_demo.lfe": 1, + "A": 1, + "simple": 4, + "Mnesia": 2, + "demo": 2, + "LFE.": 1, + "This": 2, + "contains": 1, + "using": 1, + "LFE": 4, + "access": 1, + "tables.": 1, + "It": 1, + "shows": 2, + "how": 2, + "emp": 1, + "XXXX": 1, + "macro": 1, + "ETS": 1, + "match": 5, + "pattern": 1, + "together": 1, + "mnesia": 8, + "match_object": 1, + "specifications": 1, + "select": 1, + "Query": 2, + "List": 2, + "Comprehensions.": 1, + "mnesia_demo": 1, + "new": 2, + "by_place": 1, + "by_place_ms": 1, + "by_place_qlc": 2, + "defrecord": 1, + "person": 8, + "name": 8, + "place": 7, + "job": 3, + "Start": 1, + "table": 2, + "we": 1, + "will": 1, + "memory": 1, + "only": 1, + "schema.": 1, + "start": 1, + "create_table": 1, + "attributes": 1, + "Initialise": 1, + "table.": 1, + "let": 6, + "people": 1, + "spec": 1, + "[": 3, + "p": 2, + "j": 2, + "]": 3, + "when": 1, + "tuple": 1, + "transaction": 2, + "f": 3, + "Use": 1, + "Comprehensions": 1, + "records": 1, + "q": 2, + "qlc": 2, + "lc": 1, + "<": 1, + "e": 1, "*": 6, "Mode": 1, - "LFE": 4, "Code": 1, "Paradigms": 1, "Artificial": 1, @@ -34799,24 +34899,17 @@ "Problem": 1, "Solver": 1, "Converted": 1, - "Robert": 3, - "Virding": 3, "Define": 1, "macros": 1, "global": 2, "variable": 2, "access.": 1, - "This": 2, "hack": 1, "very": 1, "naughty": 1, "defsyntax": 2, "defvar": 2, - "[": 3, - "name": 8, "val": 2, - "]": 3, - "let": 6, "v": 3, "put": 1, "getvar": 3, @@ -34863,70 +34956,6 @@ "give": 1, "money": 3, "has": 1, - "mnesia_demo.lfe": 1, - "A": 1, - "simple": 4, - "Mnesia": 2, - "demo": 2, - "LFE.": 1, - "contains": 1, - "using": 1, - "access": 1, - "tables.": 1, - "It": 1, - "shows": 2, - "how": 2, - "emp": 1, - "XXXX": 1, - "macro": 1, - "ETS": 1, - "match": 5, - "pattern": 1, - "together": 1, - "mnesia": 8, - "match_object": 1, - "specifications": 1, - "select": 1, - "Query": 2, - "List": 2, - "Comprehensions.": 1, - "mnesia_demo": 1, - "new": 2, - "by_place": 1, - "by_place_ms": 1, - "by_place_qlc": 2, - "defrecord": 1, - "person": 8, - "place": 7, - "job": 3, - "Start": 1, - "table": 2, - "we": 1, - "will": 1, - "memory": 1, - "only": 1, - "schema.": 1, - "start": 1, - "create_table": 1, - "attributes": 1, - "Initialise": 1, - "table.": 1, - "people": 1, - "spec": 1, - "p": 2, - "j": 2, - "when": 1, - "tuple": 1, - "transaction": 2, - "f": 3, - "Use": 1, - "Comprehensions": 1, - "records": 1, - "q": 2, - "qlc": 2, - "lc": 1, - "<": 1, - "e": 1, "object.lfe": 1, "OOP": 1, "closures": 1, @@ -34990,15 +35019,168 @@ "reproduce": 1 }, "Lasso": { + "define": 20, + "trait_json_serialize": 2, + "trait": 1, + "{": 18, + "require": 1, + "asString": 3, + "(": 640, + ")": 639, + "}": 18, + "json_serialize": 18, + "e": 13, + "bytes": 8, + "string": 59, + "+": 146, + "#e": 13, + "-": 2248, + "Replace": 19, + "&": 21, + "json_literal": 1, + "asstring": 4, + "integer": 30, + "decimal": 5, + "boolean": 4, + "null": 26, + "date": 23, + "format": 7, + "gmt": 1, + "|": 13, + "trait_forEach": 1, + "local": 116, + "output": 30, + ";": 573, + "delimit": 7, + "foreach": 1, + "#output": 50, + "#delimit": 7, + "#1": 3, + "return": 75, + "map": 23, + "with": 25, + "pr": 1, + "in": 46, + "eachPair": 1, + "select": 1, + "#pr": 2, + "first": 12, + "second": 8, + "join": 5, + "json_object": 2, + "foreachpair": 1, + "any": 14, + "serialize": 1, + "json_consume_string": 3, + "ibytes": 9, + "obytes": 3, + "temp": 12, + "while": 9, + "#temp": 19, + "#ibytes": 17, + "export8bits": 6, + "#obytes": 5, + "import8bits": 4, + "//": 169, + "Escape": 1, + "/while": 7, + "unescape": 1, + "//Replace": 1, + "if": 76, + "BeginsWith": 1, + "&&": 30, + "EndsWith": 1, + "Protect": 1, + "serialization_reader": 1, + "xml": 1, + "read": 1, + "/Protect": 1, + "else": 32, + "size": 24, + "or": 6, + "and": 52, + "regexp": 1, + "d": 2, + "T": 3, + "Z": 1, + "matches": 1, + "Format": 1, + "yyyyMMdd": 2, + "HHmmssZ": 1, + "HHmmss": 1, + "/if": 53, + "json_consume_token": 2, + "array": 20, + "t": 8, + "r": 8, + "n": 30, + "]": 23, + "marker": 4, + "Is": 1, + "also": 5, + "end": 2, + "of": 24, + "token": 1, + "[": 22, + "//............................................................................": 2, + "true": 12, + "false": 8, + "string_IsNumeric": 1, + "json_consume_array": 3, + "Local": 7, + "While": 1, + "If": 4, + "Discard": 1, + "whitespace": 3, + "Else": 7, + "insert": 18, + "#key": 12, + "json_consume_object": 2, + "Loop_Abort": 1, + "/If": 3, + "/While": 1, + "Find": 3, + "isa": 25, + "First": 4, + "Return": 7, + "find": 57, + "Second": 1, + "json_deserialize": 1, + "removeLeading": 1, + "bom_utf8": 1, + "Reset": 1, + "on": 1, + "provided": 1, + "value": 14, + "**/": 1, + "type": 63, + "parent": 5, + "public": 1, + "onCreate": 1, + "...": 3, + "..onCreate": 1, + "#rest": 1, + "json_rpccall": 1, + "method": 7, + "params": 11, + "id": 7, + "host": 6, + "#id": 2, + "#host": 4, + "Lasso_UniqueID": 1, + "Decode_JSON": 2, + "Include_URL": 1, + "PostParams": 1, + "Encode_JSON": 1, + "Map": 3, + "#method": 1, + "#params": 5, "<": 7, "LassoScript": 1, - "//": 169, "JSON": 2, "Encoding": 1, - "and": 52, "Decoding": 1, "Copyright": 1, - "-": 2248, "LassoSoft": 1, "Inc.": 1, "": 1, @@ -35009,72 +35191,40 @@ "is": 35, "now": 23, "incorporated": 1, - "in": 46, "Lasso": 15, - "If": 4, - "(": 640, "Lasso_TagExists": 1, - ")": 639, "False": 1, - ";": 573, "Define_Tag": 1, "Namespace": 1, "Required": 1, "Optional": 1, - "Local": 7, - "Map": 3, - "r": 8, - "n": 30, - "t": 8, "f": 2, "b": 2, - "output": 30, "newoptions": 1, "options": 2, - "array": 20, "set": 10, "list": 4, "queue": 2, "priorityqueue": 2, "stack": 2, "pair": 1, - "map": 23, - "[": 22, - "]": 23, "literal": 3, - "string": 59, - "integer": 30, - "decimal": 5, - "boolean": 4, - "null": 26, - "date": 23, - "temp": 12, "object": 7, - "{": 18, - "}": 18, "client_ip": 1, "client_address": 1, "__jsonclass__": 6, "deserialize": 2, "": 3, "": 3, - "Decode_JSON": 2, "Decode_": 1, - "value": 14, "consume_string": 1, - "ibytes": 9, "unescapes": 1, "u": 1, "UTF": 4, "%": 14, "QT": 4, "TZ": 2, - "T": 3, "consume_token": 1, - "obytes": 3, - "delimit": 7, - "true": 12, - "false": 8, ".": 5, "consume_array": 1, "consume_object": 1, @@ -35091,10 +35241,6 @@ "JSON_RPCCall": 1, "RPCCall": 1, "JSON_": 1, - "method": 7, - "params": 11, - "id": 7, - "host": 6, "//localhost/lassoapps.8/rpc/rpc.lasso": 1, "request": 2, "result": 6, @@ -35126,125 +35272,8 @@ "found_count": 11, "rows": 1, "#_records": 1, - "Return": 7, "@#_output": 1, "/Define_Tag": 1, - "/If": 3, - "define": 20, - "trait_json_serialize": 2, - "trait": 1, - "require": 1, - "asString": 3, - "json_serialize": 18, - "e": 13, - "bytes": 8, - "+": 146, - "#e": 13, - "Replace": 19, - "&": 21, - "json_literal": 1, - "asstring": 4, - "format": 7, - "gmt": 1, - "|": 13, - "trait_forEach": 1, - "local": 116, - "foreach": 1, - "#output": 50, - "#delimit": 7, - "#1": 3, - "return": 75, - "with": 25, - "pr": 1, - "eachPair": 1, - "select": 1, - "#pr": 2, - "first": 12, - "second": 8, - "join": 5, - "json_object": 2, - "foreachpair": 1, - "any": 14, - "serialize": 1, - "json_consume_string": 3, - "while": 9, - "#temp": 19, - "#ibytes": 17, - "export8bits": 6, - "#obytes": 5, - "import8bits": 4, - "Escape": 1, - "/while": 7, - "unescape": 1, - "//Replace": 1, - "if": 76, - "BeginsWith": 1, - "&&": 30, - "EndsWith": 1, - "Protect": 1, - "serialization_reader": 1, - "xml": 1, - "read": 1, - "/Protect": 1, - "else": 32, - "size": 24, - "or": 6, - "regexp": 1, - "d": 2, - "Z": 1, - "matches": 1, - "Format": 1, - "yyyyMMdd": 2, - "HHmmssZ": 1, - "HHmmss": 1, - "/if": 53, - "json_consume_token": 2, - "marker": 4, - "Is": 1, - "also": 5, - "end": 2, - "of": 24, - "token": 1, - "//............................................................................": 2, - "string_IsNumeric": 1, - "json_consume_array": 3, - "While": 1, - "Discard": 1, - "whitespace": 3, - "Else": 7, - "insert": 18, - "#key": 12, - "json_consume_object": 2, - "Loop_Abort": 1, - "/While": 1, - "Find": 3, - "isa": 25, - "First": 4, - "find": 57, - "Second": 1, - "json_deserialize": 1, - "removeLeading": 1, - "bom_utf8": 1, - "Reset": 1, - "on": 1, - "provided": 1, - "**/": 1, - "type": 63, - "parent": 5, - "public": 1, - "onCreate": 1, - "...": 3, - "..onCreate": 1, - "#rest": 1, - "json_rpccall": 1, - "#id": 2, - "#host": 4, - "Lasso_UniqueID": 1, - "Include_URL": 1, - "PostParams": 1, - "Encode_JSON": 1, - "#method": 1, - "#params": 5, "": 6, "2009": 14, "09": 10, @@ -35855,110 +35884,14 @@ }, "Latte": { "{": 54, - "**": 1, - "*": 4, - "@param": 3, - "string": 2, - "basePath": 1, - "web": 1, - "base": 1, - "path": 1, - "robots": 2, - "tell": 1, - "how": 1, - "to": 2, - "index": 1, - "the": 1, - "content": 1, - "of": 3, - "a": 4, - "page": 1, - "(": 18, - "optional": 1, - ")": 18, - "array": 1, - "flashes": 1, - "flash": 3, - "messages": 1, - "}": 54, - "": 1, - "html": 1, - "": 1, - "": 1, - "": 6, - "charset=": 1, - "name=": 4, - "content=": 5, - "n": 8, - "ifset=": 1, - "http": 1, - "equiv=": 1, - "": 1, - "ifset": 1, - "title": 4, - "/ifset": 1, - "Translation": 1, - "report": 1, - "": 1, - "": 2, - "rel=": 2, - "media=": 1, - "href=": 4, - "": 3, - "block": 3, - "#head": 1, - "/block": 3, - "": 1, - "": 1, - "class=": 12, - "document.documentElement.className": 1, - "+": 3, - "#navbar": 1, - "include": 3, - "_navbar.latte": 1, - "
": 6, - "inner": 1, - "foreach=": 3, - "_flash.latte": 1, - "
": 7, - "#content": 1, - "
": 1, - "
": 1, - "src=": 1, - "#scripts": 1, - "": 1, - "": 1, "var": 3, + "title": 4, + "}": 54, "define": 1, "author": 7, "": 2, + "n": 8, + "href=": 4, "Author": 2, "authorId": 2, "-": 71, @@ -35982,14 +35915,17 @@ "md": 2, "outOf": 5, "done": 7, + "+": 3, "threshold": 4, "alert": 2, "warning": 2, "<=>": 2, + "class=": 12, "Seems": 1, "complete": 1, "|": 6, "out": 1, + "of": 3, "

": 2, "elseif": 2, "<": 1, @@ -36015,7 +35951,9 @@ "khanovaskola.cz": 1, "revision": 18, "rev": 4, + "(": 18, "this": 3, + ")": 18, "older": 1, "#": 2, "else": 2, @@ -36025,7 +35963,10 @@ "diffs": 3, "noescape": 2, "": 1, + "
": 6, "description": 1, + "
": 7, + "foreach=": 3, "text": 4, "as": 2, "line": 3, @@ -36052,6 +35993,7 @@ "group": 4, "approve": 1, "thumbs": 3, + "o": 7, "up": 1, "markIncomplete": 2, "down": 2, @@ -36067,12 +36009,15 @@ "lines": 1, "&": 1, "thinsp": 1, + ";": 9, "%": 1, "": 3, "": 3, "": 2, "incomplete": 3, + "||": 3, "approved": 2, + "i": 9, "": 1, "user": 1, "loggedIn": 1, @@ -36094,6 +36039,7 @@ "Comment": 1, "only": 1, "visible": 1, + "to": 2, "other": 1, "editors": 1, "save": 1, @@ -36102,7 +36048,90 @@ "": 1, "/form": 1, "/foreach": 1, - "": 1 + "": 1, + "**": 1, + "*": 4, + "@param": 3, + "string": 2, + "basePath": 1, + "web": 1, + "base": 1, + "path": 1, + "robots": 2, + "tell": 1, + "how": 1, + "index": 1, + "the": 1, + "content": 1, + "a": 4, + "page": 1, + "optional": 1, + "array": 1, + "flashes": 1, + "flash": 3, + "messages": 1, + "": 1, + "html": 1, + "": 1, + "": 1, + "": 6, + "charset=": 1, + "name=": 4, + "content=": 5, + "ifset=": 1, + "http": 1, + "equiv=": 1, + "": 1, + "ifset": 1, + "/ifset": 1, + "Translation": 1, + "report": 1, + "": 1, + "": 2, + "rel=": 2, + "media=": 1, + "": 3, + "block": 3, + "#head": 1, + "/block": 3, + "": 1, + "": 1, + "document.documentElement.className": 1, + "#navbar": 1, + "include": 3, + "_navbar.latte": 1, + "inner": 1, + "_flash.latte": 1, + "#content": 1, + "
": 1, + "
": 1, + "src=": 1, + "#scripts": 1, + "": 1, + "": 1 }, "Less": { "@blue": 4, @@ -36649,7 +36678,60 @@ "end_object.": 1 }, "Lua": { + "local": 11, + "FileListParser": 5, + "pd.Class": 3, + "new": 3, + "(": 56, + ")": 56, + "register": 3, + "function": 16, + "initialize": 3, + "sel": 3, + "atoms": 3, "-": 60, + "Base": 1, + "filename": 2, + "File": 2, + "extension": 2, + "Number": 4, + "of": 9, + "files": 1, + "in": 7, + "batch": 2, + "self.inlets": 3, + "To": 3, + "[": 17, + "list": 1, + "trim": 1, + "]": 17, + "binfile": 3, + "vidya": 1, + "file": 8, + "modder": 1, + "s": 5, + "mechanisms": 1, + "self.outlets": 3, + "self.extension": 3, + "the": 7, + "last": 1, + "self.batchlimit": 3, + "return": 3, + "true": 3, + "end": 26, + "in_1_symbol": 1, + "for": 9, + "i": 10, + "do": 8, + "self": 10, + "outlet": 10, + "{": 16, + "}": 16, + "..": 7, + "in_2_list": 1, + "d": 9, + "in_3_float": 1, + "f": 12, "A": 1, "simple": 1, "counting": 1, @@ -36675,64 +36757,11 @@ "number": 3, "second": 1, "inlet.": 1, - "local": 11, "HelloCounter": 4, - "pd.Class": 3, - "new": 3, - "(": 56, - ")": 56, - "register": 3, - "function": 16, - "initialize": 3, - "sel": 3, - "atoms": 3, - "self.inlets": 3, - "self.outlets": 3, "self.num": 5, - "return": 3, - "true": 3, - "end": 26, "in_1_bang": 2, - "self": 10, - "outlet": 10, - "{": 16, - "}": 16, "+": 3, "in_2_float": 2, - "f": 12, - "FileListParser": 5, - "Base": 1, - "filename": 2, - "File": 2, - "extension": 2, - "Number": 4, - "of": 9, - "files": 1, - "in": 7, - "batch": 2, - "To": 3, - "[": 17, - "list": 1, - "trim": 1, - "]": 17, - "binfile": 3, - "vidya": 1, - "file": 8, - "modder": 1, - "s": 5, - "mechanisms": 1, - "self.extension": 3, - "the": 7, - "last": 1, - "self.batchlimit": 3, - "in_1_symbol": 1, - "for": 9, - "i": 10, - "do": 8, - "..": 7, - "in_2_list": 1, - "d": 9, - "in_3_float": 1, "FileModder": 10, "Object": 1, "triggering": 1, @@ -36827,74 +36856,347 @@ "in_8_list": 1 }, "M": { - "%": 207, - "zewdAPI": 52, + "PXAI": 1, ";": 1309, - "Enterprise": 5, - "Web": 5, - "Developer": 5, - "run": 2, + "ISL/JVS": 1, + "ISA/KWP": 1, + "ESW": 1, "-": 1605, - "time": 9, - "functions": 4, - "and": 59, - "user": 27, - "APIs": 1, - "Product": 2, - "(": 2144, + "PCE": 2, + "DRIVING": 1, + "RTN": 1, + "FOR": 15, + "API": 7, + "/20/03": 1, + "am": 1, + "PATIENT": 5, + "CARE": 1, + "ENCOUNTER": 2, + "**15": 1, + "**": 4, + "Aug": 1, "Build": 6, + "Q": 58, + "+": 189, + "DATA2PCE": 1, + "(": 2144, + "PXADATA": 7, + "PXAPKG": 9, + "PXASOURC": 10, + "PXAVISIT": 8, + "PXAUSER": 6, + "PXANOT": 3, + "ERRRET": 2, + "PXAPREDT": 2, + "PXAPROB": 15, + "PXACCNT": 2, ")": 2152, - "Date": 2, - "Fri": 1, - "Nov": 1, - "|": 171, + "to": 74, + "pass": 24, + "data": 43, "for": 77, + "add/edit/delete": 1, + "PCE.": 1, + "required": 4, + "optional": 16, + "is": 88, + "pointer": 4, + "a": 130, + "visit": 3, + "which": 4, + "the": 223, + "be": 35, + "related.": 1, + "If": 14, + "not": 39, + "known": 2, + "then": 2, + "there": 2, + "must": 8, + "nodes": 1, + "needed": 1, + "lookup/create": 1, + "visit.": 1, + "this": 39, + "user": 27, + "adding": 1, + "data.": 1, + "set": 98, + "if": 44, + "errors": 6, + "are": 14, + "displayed": 1, + "screen": 1, + "should": 16, + "only": 9, + "while": 4, + "writing": 4, + "and": 59, + "debugging": 1, + "initial": 1, + "code.": 1, + "passed": 4, + "by": 35, + "reference.": 2, + "present": 1, + "will": 23, + "return": 7, + "PXKERROR": 2, + "array": 22, + "elements": 3, + "caller.": 1, + "Set": 2, + "you": 17, + "want": 1, + "edit": 1, + "Primary": 3, + "Provider": 1, + "use": 5, + "moment": 1, + "that": 19, + "editing": 2, + "being": 1, + "done.": 2, + "dangerous": 1, + "A": 12, + "dotted": 1, + "variable": 8, + "name.": 1, + "When": 2, + "warnings": 1, + "occur": 1, + "They": 1, + "back": 4, + "in": 80, + "form": 1, + "of": 84, + "an": 14, + "with": 45, + "general": 1, + "description": 1, + "problem.": 1, + "IF": 9, + "ERROR1": 1, + "GENERAL": 2, + "ERRORS": 4, + "J": 38, + "SUBSCRIPT": 5, + "PASSED": 4, + "IN": 4, + "FIELD": 2, + "FROM": 5, + "WARNING2": 1, + "WARNINGS": 2, + "WARNING3": 1, + "SERVICE": 1, + "CONNECTION": 1, + "REASON": 9, + "ERROR4": 1, + "PROBLEM": 1, + "LIST": 1, + "Returns": 2, + "PFSS": 2, + "Account": 2, + "Reference": 2, + "known.": 1, + "Returned": 1, + "as": 23, + "null": 6, + "located": 1, + "Order": 1, + "file": 10, + "#100": 1, + "no": 54, + "process": 3, + "completely": 3, + "occurred": 2, + "but": 19, + "processed": 1, + "possible": 5, + "could": 1, + "get": 2, + "called": 8, + "incorrectly": 1, + "NEW": 3, + "VARIABLES": 1, + "N": 19, + "NOVSIT": 1, + "PXAK": 20, + "DFN": 1, + "PXAERRF": 3, + "PXADEC": 1, + "PXELAP": 1, + "PXASUB": 2, + "VALQUIET": 2, + "PRIMFND": 7, + "K": 5, + "PXAERROR": 1, + "PXAERR": 7, + "PRVDR": 1, + "S": 99, + "needs": 1, + "look": 1, + "up": 1, + "passed.": 1, + "I": 43, + "D": 64, + "@PXADATA@": 8, + "G": 40, + "<": 20, + "DUZ": 3, + "TMP": 26, + "SOR": 1, + "SOURCE": 2, + "E": 12, + "PKG2IEN": 1, + "VSIT": 1, + "PXAPIUTL": 2, + "TMPSOURC": 1, + "SAVES": 1, + "&": 28, + "CREATES": 1, + "VST": 2, + "VISIT": 3, + "KILL": 1, + "VPTR": 1, + "PXAIVSTV": 1, + "ERR": 2, + "PXAIVST": 1, + "PRV": 1, + "PROVIDER": 1, + "P": 68, + "AUPNVSIT": 1, + "F": 10, + "O": 24, + ".I": 4, + "..S": 7, + "s": 775, + "status": 2, + "or": 50, + "Secondary": 2, + ".S": 6, + "..I": 2, + "PXADI": 4, + "NODE": 5, + "SCREEN": 2, + "_": 127, + "VA": 1, + "EXTERNAL": 2, + "INTERNAL": 2, + "ARRAY": 2, + "PXAICPTV": 1, + "SEND": 1, + "TO": 6, + "W": 4, + "BLD": 2, + "DIALOG": 4, + ".PXAERR": 3, + "MSG": 2, + "SET": 3, + "GLOBAL": 1, + "NA": 1, + "PROVDRST": 1, + "Check": 1, + "provider": 1, + "PRVIEN": 14, + "DETS": 7, + "DIC": 6, + "DR": 4, + "DA": 4, + "DIQ": 3, + "PRI": 3, + "PRVPRIM": 2, + "QUIT": 251, + "AUPNVPRV": 2, + "U": 14, + ".04": 1, + "EN": 2, + "DIQ1": 1, + "POVPRM": 1, + "POVARR": 1, + "STOP": 1, + "LPXAK": 4, + "ORDX": 14, + "NDX": 7, + "ORDXP": 3, + "create": 6, + "existing": 2, + "DX": 2, + "ICD9": 2, + "AUPNVPOV": 2, + "@POVARR@": 6, + "force": 1, + "entry": 5, + "originally": 1, + "primary": 1, + "diagnosis": 1, + "flag": 1, + ".F": 2, + "..E": 1, + "...S": 5, + "start1": 2, + "label": 5, + "ax": 2, + "bx": 2, + "cx": 2, + "ay": 2, + "cy": 2, + "sumx": 3, + "sqrx": 3, + "sumxy": 5, + "x": 96, + "do": 15, + ".": 815, + "x*x": 1, + "y": 33, + "..": 28, + "x*y": 1, + "...": 6, + "write": 59, + "These": 2, + "first": 10, + "two": 2, + "routines": 6, + "illustrate": 1, + "dynamic": 1, + "scope": 1, + "variables": 3, + "M": 24, + "triangle1": 1, + "sum": 15, + "quit": 30, + "main2": 1, + "triangle2": 1, "GT.M": 30, - "m_apache": 3, + "PCRE": 23, + "Extension": 9, "Copyright": 12, - "c": 113, - "M/Gateway": 4, - "Developments": 4, - "Ltd": 4, - "Reigate": 4, - "Surrey": 4, - "UK.": 4, - "All": 4, - "rights": 4, - "reserved.": 4, - "http": 13, - "//www.mgateway.com": 4, - "Email": 4, - "rtweed@mgateway.com": 4, + "C": 9, + "Piotr": 7, + "Koper": 7, + "": 7, "This": 26, "program": 19, - "is": 88, "free": 15, "software": 12, - "you": 17, "can": 20, "redistribute": 11, "it": 45, "and/or": 11, "modify": 11, "under": 14, - "the": 223, "terms": 11, - "of": 84, "GNU": 33, "Affero": 33, "General": 33, "Public": 33, "License": 48, - "as": 23, "published": 11, - "by": 35, "Free": 11, "Software": 11, "Foundation": 11, "either": 13, "version": 16, - "or": 50, "at": 21, "your": 16, "option": 12, @@ -36902,13 +37204,8 @@ "later": 11, "version.": 11, "distributed": 13, - "in": 80, "hope": 11, - "that": 19, - "will": 23, - "be": 35, "useful": 11, - "but": 19, "WITHOUT": 12, "ANY": 12, "WARRANTY": 11, @@ -36918,1143 +37215,31 @@ "warranty": 11, "MERCHANTABILITY": 11, "FITNESS": 11, - "FOR": 15, - "A": 12, "PARTICULAR": 11, "PURPOSE.": 11, "See": 15, "more": 13, "details.": 12, "You": 13, - "should": 16, "have": 21, "received": 11, - "a": 130, "copy": 13, "along": 11, - "with": 45, - "this": 39, "program.": 9, - "If": 14, - "not": 39, "see": 26, "": 11, - ".": 815, - "QUIT": 251, - "_": 127, - "getVersion": 1, - "zewdCompiler": 6, - "date": 1, - "getDate": 1, - "compilePage": 2, - "app": 13, - "page": 12, - "mode": 12, - "technology": 9, - "outputPath": 4, - "multilingual": 4, - "maxLines": 4, - "d": 381, - "g": 228, - "compileAll": 2, - "templatePageName": 2, - "autoTranslate": 2, - "language": 6, - "verbose": 2, - "zewdMgr": 1, - "startSession": 2, - "requestArray": 2, - "serverArray": 1, - "sessionArray": 5, - "filesArray": 1, - "zewdPHP": 8, - ".requestArray": 2, - ".serverArray": 1, - ".sessionArray": 3, - ".filesArray": 1, - "closeSession": 2, - "saveSession": 2, - "endOfPage": 2, - "prePageScript": 2, - "sessid": 146, - "releaseLock": 2, - "tokeniseURL": 2, - "url": 2, - "zewdCompiler16": 5, - "getSessid": 1, - "token": 21, - "i": 465, - "isTokenExpired": 2, - "p": 84, - "zewdSession": 39, - "initialiseSession": 1, - "k": 122, - "deleteSession": 2, - "changeApp": 1, - "appName": 4, - "setSessionValue": 6, - "setRedirect": 1, - "toPage": 1, - "e": 210, - "n": 197, - "path": 4, - "s": 775, - "getRootURL": 1, - "l": 84, - "zewd": 17, - "trace": 24, - "_sessid_": 3, - "_token_": 1, - "_nextPage": 1, - "zcvt": 11, - "nextPage": 1, - "isNextPageTokenValid": 2, - "zewdCompiler13": 10, - "isCSP": 1, - "normaliseTextValue": 1, - "text": 6, - "replaceAll": 11, - "writeLine": 2, - "line": 14, - "CacheTempBuffer": 2, - "j": 67, - "increment": 11, - "w": 127, - "displayOptions": 2, - "fieldName": 5, - "listName": 6, - "escape": 7, - "codeValue": 7, - "name": 121, - "nnvp": 1, - "nvp": 1, - "pos": 33, - "textValue": 6, - "value": 72, - "getSessionValue": 3, - "tr": 13, - "+": 189, - "f": 93, - "o": 51, - "q": 244, - "codeValueEsc": 7, - "textValueEsc": 7, - "htmlOutputEncode": 2, - "zewdAPI2": 5, - "_codeValueEsc_": 1, - "selected": 4, - "translationMode": 1, - "_appName": 1, - "typex": 1, - "type": 2, - "avoid": 1, - "Cache": 3, - "bug": 2, - "getPhraseIndex": 1, - "zewdCompiler5": 1, - "licensed": 1, - "setWarning": 2, - "isTemp": 11, - "setWLDSymbol": 1, - "Duplicate": 1, - "performance": 1, - "also": 4, - "wldAppName": 1, - "wldName": 1, - "wldSessid": 1, - "zzname": 1, - "zv": 6, - "[": 54, - "extcErr": 1, - "mess": 3, - "namespace": 1, - "zt": 20, - "valueErr": 1, - "exportCustomTags": 2, - "tagList": 1, - "filepath": 10, - ".tagList": 1, - "exportAllCustomTags": 2, - "importCustomTags": 2, - "filePath": 2, - "zewdForm": 1, - "stripSpaces": 6, - "np": 17, - "obj": 6, - "prop": 6, - "setSessionObject": 3, - "allowJSONAccess": 1, - "sessionName": 30, - "access": 21, - "disallowJSONAccess": 1, - "JSONAccess": 1, - "existsInSession": 2, - "existsInSessionArray": 2, - "p1": 5, - "p2": 10, - "p3": 3, - "p4": 2, - "p5": 2, - "p6": 2, - "p7": 2, - "p8": 2, - "p9": 2, - "p10": 2, - "p11": 2, - "clearSessionArray": 1, - "arrayName": 35, - "setSessionArray": 1, - "itemName": 16, - "itemValue": 7, - "getSessionArray": 1, - "array": 22, - "clearArray": 2, - "set": 98, - "m": 37, - "getSessionArrayErr": 1, - "Come": 1, - "here": 4, - "if": 44, - "error": 62, - "occurred": 2, - "addToSession": 2, - "@name": 4, - "mergeToSession": 1, - "mergeGlobalToSession": 2, - "globalName": 7, - "mergeGlobalFromSession": 2, - "mergeArrayToSession": 1, - "mergeArrayToSessionObject": 2, - ".array": 1, - "mergeArrayFromSession": 1, - "mergeFromSession": 1, - "deleteFromSession": 1, - "deleteFromSessionObject": 1, - "sessionNameExists": 1, - "getSessionArrayValue": 2, - "subscript": 7, - "exists": 6, - ".exists": 1, - "sessionArrayValueExists": 2, - "deleteSessionArrayValue": 2, - "Objects": 1, - "objectName": 13, - "propertyName": 3, - "propertyValue": 5, - "comma": 3, - "x": 96, - "replace": 27, - "objectName_": 2, - "_propertyName": 2, - "_propertyName_": 2, - "_propertyValue_": 1, - "_p": 1, - "quoted": 1, - "string": 50, - "FromStr": 6, - "S": 99, - "ToStr": 4, - "InText": 4, - "old": 3, - "new": 15, - "ok": 14, - "removeDocument": 1, - "zewdDOM": 3, - "instanceName": 2, - "clearXMLIndex": 1, - "zewdSchemaForm": 1, - "closeDOM": 1, - "makeTokenString": 1, - "length": 7, - "token_": 1, - "r": 88, - "makeString": 3, - "char": 9, - "len": 8, - "create": 6, - "characters": 8, - "str": 15, - "convertDateToSeconds": 1, - "hdate": 7, - "Q": 58, - "hdate*86400": 1, - "convertSecondsToDate": 1, - "secs": 2, - "secs#86400": 1, - "getTokenExpiry": 2, - "h*86400": 1, - "h": 39, - "randChar": 1, - "R": 2, - "lowerCase": 2, - "stripLeadingSpaces": 2, - "stripTrailingSpaces": 2, - "d1": 7, - "zd": 1, - "yy": 19, - "dd": 4, - "I": 43, - "<10>": 1, - "dd=": 2, - "mm=": 3, - "1": 74, - "d1=": 1, - "2": 14, - "p1=": 1, - "mm": 7, - "p2=": 1, - "yy=": 1, - "3": 6, - "dd_": 1, - "mm_": 1, - "inetTime": 1, - "Decode": 1, - "Internet": 1, - "Format": 1, - "Time": 1, - "from": 16, - "H": 1, - "format": 2, - "Offset": 1, - "relative": 1, - "to": 74, - "GMT": 1, - "eg": 3, - "hh": 4, - "ss": 4, - "<": 20, - "_hh": 1, - "time#3600": 1, - "_mm": 1, - "time#60": 1, - "_ss": 2, - "hh_": 1, - "_mm_": 1, - "openNewFile": 2, - "openFile": 2, - "openDOM": 2, - "&": 28, - "#39": 1, - "<\",\"<\")>": 1, - "string=": 1, - "gt": 1, - "amp": 1, - "HTML": 1, - "quot": 2, - "stop": 20, - "no": 54, - "no2": 1, - "p1_c_p2": 1, - "getIP": 2, - "Get": 2, - "own": 2, - "IP": 1, - "address": 1, - "ajaxErrorRedirect": 2, - "classExport": 2, - "className": 2, - "methods": 2, - ".methods": 1, - "strx": 2, - "disableEwdMgr": 1, - "enableEwdMgr": 1, - "enableWLDAccess": 1, - "disableWLDAccess": 1, - "isSSOValid": 2, - "sso": 2, - "username": 8, - "password": 8, - "zewdMgrAjax2": 1, - "uniqueId": 1, - "nodeOID": 2, - "filename": 2, - "linkToParentSession": 2, - "zewdCompiler20": 1, - "exportToGTM": 1, - "routine": 6, - "zewdDemo": 1, - "Tutorial": 1, - "Wed": 1, - "Apr": 1, - "getLanguage": 1, - "getRequestValue": 1, - "login": 1, - "getTextValue": 4, - "getPasswordValue": 2, - "_username_": 1, - "_password": 1, - "logine": 1, - "message": 8, - "textid": 1, - "errorMessage": 1, - "ewdDemo": 8, - "clearList": 2, - "appendToList": 4, - "addUsername": 1, - "newUsername": 5, - "newUsername_": 1, - "setTextValue": 4, - "testValue": 1, - "pass": 24, - "getSelectValue": 3, - "_user": 1, - "getPassword": 1, - "setPassword": 1, - "getObjDetails": 1, - "data": 43, - "_user_": 1, - "_data": 2, - "setRadioOn": 2, - "initialiseCheckbox": 2, - "setCheckboxOn": 3, - "createLanguageList": 1, - "setMultipleSelectOn": 2, - "clearTextArea": 2, - "textarea": 2, - "createTextArea": 1, - ".textarea": 1, - "userType": 4, - "setMultipleSelectValues": 1, - ".selected": 1, - "testField3": 3, - ".value": 1, - "testField2": 1, - "field3": 1, - "must": 8, - "null": 6, - "dateTime": 1, - "start": 26, - "student": 14, - "zwrite": 1, - "write": 59, - "order": 11, - "do": 15, - "quit": 30, - "file": 10, - "part": 3, - "DataBallet.": 4, - "C": 9, - "Laurent": 2, - "Parenteau": 2, - "": 2, - "DataBallet": 4, - "encode": 1, - "Return": 1, - "base64": 6, - "URL": 2, - "Filename": 1, - "safe": 3, - "alphabet": 2, - "RFC": 1, - "todrop": 2, - "Populate": 1, - "values": 4, - "on": 17, - "first": 10, - "use": 5, - "only.": 1, - "zextract": 3, - "zlength": 3, - "Comment": 1, - "comment": 4, - "block": 1, - "comments": 5, - "always": 2, - "semicolon": 1, - "next": 1, - "while": 4, - "legal": 1, - "blank": 1, - "whitespace": 2, - "alone": 1, - "valid": 2, - "**": 4, - "Comments": 1, - "graphic": 3, - "character": 5, - "such": 1, - "@#": 1, - "*": 6, - "{": 5, - "}": 5, - "]": 15, - "/": 3, - "space": 1, - "considered": 1, - "though": 1, - "t": 12, - "it.": 2, - "ASCII": 2, - "whose": 1, - "numeric": 8, - "code": 29, - "above": 3, - "below": 1, - "are": 14, - "NOT": 2, - "allowed": 18, - "routine.": 1, - "multiple": 1, - "semicolons": 1, - "okay": 1, - "has": 7, - "tag": 2, - "after": 3, - "does": 1, - "command": 11, - "Tag1": 1, - "Tags": 2, - "an": 14, - "uppercase": 2, - "lowercase": 1, - "alphabetic": 2, - "series": 2, - "HELO": 1, - "most": 1, - "common": 1, - "label": 5, - "LABEL": 1, - "followed": 1, - "directly": 1, - "open": 1, - "parenthesis": 2, - "formal": 1, - "list": 1, - "variables": 3, - "close": 1, - "ANOTHER": 1, - "X": 19, - "Normally": 1, - "subroutine": 1, - "would": 2, - "ended": 1, - "we": 1, - "taking": 1, - "advantage": 1, - "rule": 1, - "END": 1, - "implicit": 1, - "Digest": 2, - "Extension": 9, - "Piotr": 7, - "Koper": 7, - "": 7, "trademark": 2, "Fidelity": 2, "Information": 2, "Services": 2, "Inc.": 2, + "http": 13, "//sourceforge.net/projects/fis": 2, "gtm/": 2, - "simple": 2, - "OpenSSL": 3, - "based": 1, - "digest": 19, "extension": 3, - "rewrite": 1, - "EVP_DigestInit": 1, - "usage": 3, - "example": 5, - "additional": 5, - "M": 24, - "wrapper.": 1, - "//www.openssl.org/docs/crypto/EVP_DigestInit.html": 1, - "The": 11, - "return": 7, - "digest.init": 3, - "usually": 1, - "when": 11, - "invalid": 4, - "algorithm": 1, - "was": 5, - "specification.": 1, - "Anyway": 1, - "properly": 1, - "used": 6, - "never": 4, - "fail.": 1, - "Please": 2, - "feel": 2, - "contact": 2, - "me": 2, - "questions": 2, - "returns": 7, - "HEX": 1, - "all": 8, - "one": 5, - "digest.update": 2, - ".c": 2, - ".m": 11, - "digest.final": 2, - ".d": 1, - "init": 6, - "alg": 3, - "context": 1, - "handler": 9, - "try": 1, - "etc": 1, - "returned": 1, - "occurs": 1, - "e.g.": 2, - "unknown": 1, - "update": 1, - "ctx": 4, - "msg": 6, - "updates": 1, - ".ctx": 2, - ".msg": 1, - "final": 1, - "hex": 1, - "encoded": 8, - "frees": 1, - "memory": 1, - "allocated": 1, - ".digest": 1, - "algorithms": 1, - "availability": 1, - "depends": 1, - "libcrypto": 1, - "configuration": 1, - "md4": 1, - "md5": 2, - "sha": 1, - "sha1": 1, - "sha224": 1, - "sha256": 1, - "sha512": 1, - "dss1": 1, - "ripemd160": 1, - "These": 2, - "two": 2, - "routines": 6, - "illustrate": 1, - "dynamic": 1, - "scope": 1, - "triangle1": 1, - "sum": 15, - "main2": 1, - "y": 33, - "triangle2": 1, - "compute": 2, - "Fibonacci": 1, - "b": 64, - "term": 10, - "start1": 2, - "entry": 5, - "start2": 1, - "function": 6, - "computes": 1, - "factorial": 3, - "f*n": 1, - "main": 1, - "GMRGPNB0": 1, - "CISC/JH/RM": 1, - "NARRATIVE": 1, - "BUILDER": 1, - "TEXT": 5, - "GENERATOR": 1, - "cont.": 1, - "/20/91": 1, - "Text": 1, - "Generator": 1, - "Jan": 1, - "ENTRY": 2, - "WITH": 1, - "GMRGA": 1, - "SET": 3, - "TO": 6, - "POINT": 1, - "AT": 1, - "WHICH": 1, - "WANT": 1, - "START": 1, - "BUILDING": 1, - "GMRGE0": 11, - "GMRGADD": 4, - "D": 64, - "GMR": 6, - "GMRGA0": 11, - "GMRGPDA": 9, - "GMRGCSW": 2, - "NOW": 1, - "DTC": 1, - "GMRGB0": 9, - "O": 24, - "GMRGST": 6, - "GMRGPDT": 2, - "STAT": 8, - "GMRGRUT0": 3, - "GMRGF0": 3, - "GMRGSTAT": 8, - "P": 68, - "_GMRGB0_": 2, - "GMRD": 6, - "GMRGSSW": 3, - "SNT": 1, - "GMRGPNB1": 1, - "GMRGNAR": 8, - "GMRGPAR_": 2, - "_GMRGSPC_": 3, - "_GMRGRM": 2, - "_GMRGE0": 1, - "STORETXT": 1, - "GMRGRUT1": 1, - "GMRGSPC": 3, - "F": 10, - "GMRGD0": 7, - "ALIST": 1, - "G": 40, - "TMP": 26, - "J": 38, - "GMRGPLVL": 6, - "GMRGA0_": 1, - "_GMRGD0_": 1, - "_GMRGSSW_": 1, - "_GMRGADD": 1, - "GMRGI0": 6, - "label1": 1, - "if1": 2, - "statement": 3, - "if2": 2, - "statements": 1, - "contrasted": 1, - "": 3, - "variable": 8, - "a=": 3, - "smaller": 3, - "than": 4, - "b=": 4, - "if3": 1, - "else": 7, - "clause": 2, - "if4": 1, - "bodies": 1, - "exercise": 1, - "car": 14, - "@": 8, - "MD5": 6, - "Implementation": 1, - "It": 2, - "works": 1, - "ZCHSET": 2, - "please": 1, - "don": 1, - "only": 9, - "joke.": 1, - "Serves": 1, - "well": 2, - "reverse": 1, - "engineering": 1, - "obtaining": 1, - "boolean": 2, - "integer": 1, - "addition": 1, - "modulo": 1, - "division.": 1, - "//en.wikipedia.org/wiki/MD5": 1, - "#64": 1, - "msg_": 1, - "_m_": 1, - "n64": 2, - "*8": 2, - "read": 2, - ".p": 1, - "..": 28, - "...": 6, - "*i": 3, - "#16": 3, - "xor": 4, - "rotate": 5, - "#4294967296": 6, - "n32h": 5, - "bit": 5, - "#2": 1, - "*2147483648": 2, - "a#2": 1, - "b#2": 1, - ".a": 1, - ".b": 1, - "rol": 1, - "a*": 1, - "**n": 1, - "c#4294967296": 1, - "*n": 1, - "n#256": 1, - "n#16": 2, - "MDB": 60, - "M/DB": 2, - "Mumps": 1, - "Emulation": 1, - "Amazon": 1, - "SimpleDB": 1, - "buildDate": 1, - "indexLength": 10, - "Note": 2, - "keyId": 108, - "been": 4, - "tested": 1, - "these": 1, - "called": 8, - "To": 2, - "Initialise": 2, - "service": 1, - "//192.168.1.xxx/mdb/test.mgwsi": 1, - "Action": 2, - "addUser": 2, - "userKeyId": 6, - "userSecretKey": 6, - "requestId": 17, - "boxUsage": 11, - "startTime": 21, - ".startTime": 5, - "MDBUAF": 2, - "end": 33, - ".boxUsage": 22, - "createDomain": 1, - "domainName": 38, - "dn": 4, - "dnx": 3, - "id": 33, - "noOfDomains": 12, - "MDBConfig": 1, - "getDomainId": 3, - "found": 7, - "namex": 8, - "buildItemNameIndex": 2, - "domainId": 53, - "itemId": 41, - "itemValuex": 3, - "countDomains": 2, - "key": 22, - "deleteDomain": 2, - "listDomains": 1, - "maxNoOfDomains": 2, - "nextToken": 7, - "domainList": 3, - "fullName": 3, - "decodeBase64": 1, - "encodeBase64": 1, - "itemExists": 1, - "getItemId": 2, - "getAttributeValueId": 3, - "attribId": 36, - "valuex": 13, - "putAttributes": 2, - "attributes": 32, - "valueId": 16, - "xvalue": 4, - "add": 5, - "Item": 1, - "Domain": 1, - "itemNamex": 4, - "parseJSON": 1, - "zmwire": 53, - "attributesJSON": 1, - ".attributes": 5, - "attribute": 14, - "getAttributeId": 2, - "domain": 1, - "Not": 1, - "same": 2, - "remove": 6, - "existing": 2, - "now": 1, - "name/value": 2, - "pair": 1, - "getAttributes": 2, - "suppressBoxUsage": 1, - "attrNo": 9, - "valueNo": 6, - "delete": 2, - "item": 2, - "associated": 1, - "queryIndex": 1, - "records": 2, - "specified": 4, - "pairs": 2, - "vno": 2, - "left": 5, - "completely": 3, - "references": 1, - "maxNoOfItems": 3, - "itemList": 12, - "session": 1, - "identifier": 1, - "stored": 1, - "queryExpression": 16, - "relink": 1, - "zewdGTMRuntime": 1, - "CGIEVAR": 1, - "cgi": 1, - "unescName": 5, - "urlDecode": 2, - "KEY": 36, - "response": 29, - "WebLink": 1, - "point": 2, - "action": 15, - "AWSAcessKeyId": 1, - "db": 9, - "hash": 1, - "itemsAndAttrs": 2, - "secretKey": 1, - "signatureMethod": 2, - "signatureVersion": 3, - "stringToSign": 2, - "rltKey": 2, - "_action_": 2, - "h_": 3, - "mdbKey": 2, - "errorResponse": 9, - "initialise": 3, - ".requestId": 7, - "createResponse": 4, - "installMDBM": 1, - "authenticate": 1, - "MDBSession": 1, - "createResponseStringToSign": 1, - "Security": 1, - "OK": 6, - "_db": 1, - "MDBAPI": 1, - "lineNo": 19, - "CacheTempEWD": 16, - "_db_": 1, - "db_": 1, - "_action": 1, - "resp": 5, - "metaData": 1, - "domainMetadata": 1, - ".metaData": 1, - "paramName": 8, - "paramValue": 5, - "_i_": 5, - "Query": 1, - "DomainName": 2, - "QueryExpression": 2, - "MaxNumberOfItems": 2, - "NextToken": 3, - "QueryWithAttributes": 1, - "AttributeName.": 2, - "Select": 2, - "SelectExpression": 1, - "entering": 1, - "runSelect.": 1, - "selectExpression": 3, - "finished": 1, - "runSelect": 3, - "count": 18, - "select": 3, - "where": 6, - "limit": 14, - "asc": 1, - "inValue": 6, - "expr": 18, - "rel": 2, - "itemStack": 3, - "between": 2, - "<=\">": 1, - "lastWord=": 7, - "inAttr=": 5, - "expr=": 10, - "thisWord=": 7, - "inAttr": 2, - "c=": 28, - "queryExpression=": 4, - "_queryExpression": 2, - "4": 5, - "isNull": 1, - "5": 1, - "8": 1, - "isNotNull": 1, - "9": 1, - "offset": 6, - "prevName": 1, - "np=": 1, - "diffNames": 6, - "_term": 3, - "expr_": 1, - "_orderBy": 1, - "runQuery": 2, - ".itemList": 4, - "escVals": 1, - "str_c": 2, - "_x_": 1, - "query": 4, - "orderBy": 1, - "_query": 1, - "parseSelect": 1, - ".domainName": 2, - ".queryExpression": 1, - ".orderBy": 1, - ".limit": 1, - "executeSelect": 1, - ".itemStack": 1, - "***": 2, - "listCopy": 3, - "N.N": 12, - "N.N1": 4, - "externalSelect": 2, - "json": 9, - "_keyId_": 1, - "_selectExpression": 1, - "spaces": 3, - "string_spaces": 1, - "test": 6, - "miles": 4, - "gallons": 4, - "miles/gallons": 1, - "computepesimist": 1, - "miles/": 1, - "computeoptimist": 1, - "/gallons": 1, - "Mumtris": 3, - "tetris": 1, - "game": 1, - "MUMPS": 1, - "fun.": 1, - "Resize": 1, - "terminal": 2, - "maximize": 1, - "PuTTY": 1, - "window": 1, - "restart": 3, - "so": 4, - "report": 1, - "true": 2, - "size": 3, - "mumtris.": 1, - "Try": 2, - "setting": 3, - "ansi": 2, - "compatible": 1, - "cursor": 1, - "positioning.": 1, - "NOTICE": 1, - "uses": 1, - "making": 1, - "delays": 1, - "lower": 1, - "s.": 1, - "That": 1, - "means": 2, - "CPU": 1, - "fall": 5, - "lock": 2, - "clear": 6, - "change": 6, - "preview": 3, - "over": 2, - "exit": 3, - "short": 1, - "circuit": 1, - "redraw": 3, - "timeout": 1, - "harddrop": 1, - "other": 1, - "ex": 5, - "hd": 3, - "*c": 1, - "<0&'d>": 1, - "i=": 14, - "st": 6, - "t10m": 1, - "0": 23, - "<0>": 2, - "q=": 6, - "d=": 1, - "zb": 2, - "right": 3, - "fl=": 1, - "gr=": 1, - "hl": 2, - "help": 2, - "drop": 2, - "hd=": 1, - "matrix": 2, - "stack": 8, - "draw": 3, - "ticks": 2, - "h=": 2, - "1000000000": 1, - "e=": 1, - "t10m=": 1, - "100": 2, - "n=": 1, - "ne=": 1, - "x=": 5, - "y=": 3, - "r=": 3, - "collision": 6, - "score": 5, - "k=": 1, - "j=": 4, - "<1))))>": 1, - "800": 1, - "200": 1, - "lv": 5, - "lc=": 1, - "10": 1, - "lc": 3, - "mt_": 2, - "cls": 6, - ".s": 5, - "dh/2": 6, - "dw/2": 6, - "*s": 4, - "u": 6, - "echo": 1, - "intro": 1, - "workaround": 1, - "ANSI": 1, - "driver": 1, - "NL": 1, - "some": 1, - "place": 9, - "clearscreen": 1, - "N": 19, - "h/2": 3, - "*w/2": 3, - "fill": 3, - "fl": 2, - "*x": 1, - "mx": 4, - "my": 5, - "step": 8, - "**lv*sb": 1, - "*lv": 1, - "sc": 3, - "ne": 2, - "gr": 1, - "w*3": 1, - "dev": 1, - "zsh": 1, - "dw": 1, - "dh": 1, - "elements": 3, - "elemId": 3, - "rotateVersions": 1, - "rotateVersion": 2, - "bottom": 1, - "coordinate": 1, - "____": 1, - "__": 2, - "||": 1, - "ax": 2, - "bx": 2, - "cx": 2, - "ay": 2, - "cy": 2, - "sumx": 3, - "sqrx": 3, - "sumxy": 5, - "x*x": 1, - "x*y": 1, - "PCRE": 23, "tries": 1, "deliver": 1, "best": 2, - "possible": 5, "interface": 1, "world": 4, "providing": 1, @@ -38064,7 +37249,6 @@ "parameter": 1, "names": 3, "simplified": 1, - "API": 7, "locales": 2, "exceptions": 1, "Perl5": 1, @@ -38073,7 +37257,9 @@ "pcreexamples.m": 2, "comprehensive": 1, "examples": 4, + "on": 17, "pcre": 59, + "usage": 3, "beginner": 1, "level": 5, "tips": 1, @@ -38083,8 +37269,8 @@ "handling": 2, "UTF": 17, "GT.M.": 1, + "Try": 2, "out": 2, - "known": 2, "book": 1, "regular": 1, "expressions": 1, @@ -38092,20 +37278,33 @@ "For": 3, "information": 1, "//pcre.org/": 1, + "Please": 2, + "feel": 2, + "contact": 2, + "me": 2, + "questions": 2, + "comments": 5, "Initial": 2, "release": 2, "pkoper": 2, + "q": 244, "pcre.version": 1, "config": 3, + "name": 121, + "one": 5, "case": 7, "insensitive": 7, + "d": 381, "protect": 11, + "n": 197, "erropt": 6, "isstring": 5, + "code": 29, "pcre.config": 1, ".name": 1, ".erropt": 3, ".isstring": 1, + ".s": 5, ".n": 20, "ec": 10, "compile": 14, @@ -38114,9 +37313,10 @@ "locale": 24, "mlimit": 20, "reclimit": 19, - "optional": 16, + "string": 50, "joined": 3, "Unix": 1, + "used": 6, "pcre_maketables": 2, "cases": 1, "undefined": 1, @@ -38124,7 +37324,9 @@ "defined": 2, "LANG": 4, "LC_*": 1, + "specified": 4, "output": 49, + "command": 11, "Debian": 2, "tip": 1, "dpkg": 1, @@ -38135,35 +37337,44 @@ "number": 5, "internal": 3, "matching": 4, + "function": 6, "calls": 1, "pcre_exec": 4, "execution": 2, "manual": 2, "details": 5, + "limit": 14, "depth": 1, "recursion": 1, + "when": 11, "calling": 2, "ref": 41, "err": 4, "erroffset": 3, "pcre.compile": 1, ".pattern": 3, + "g": 228, ".ref": 13, ".err": 1, ".erroffset": 1, "exec": 4, "subject": 24, "startoffset": 3, + "length": 7, "octets": 2, "starts": 1, "like": 4, "chars": 3, + "start": 26, "pcre.exec": 2, ".subject": 3, "zl": 7, + "<0>": 2, "ec=": 7, "ovector": 25, + "i": 465, "element": 1, + "from": 16, "code=": 4, "ovecsize": 5, "fullinfo": 3, @@ -38184,20 +37395,32 @@ "JIT": 1, "JITSIZE": 1, "NAME": 3, + "also": 4, "nametable": 4, + "1": 74, + "returns": 7, "index": 1, + "0": 23, + "invalid": 4, "indexed": 4, "substring": 1, "begin": 18, + "end": 33, "begin=": 3, + "2": 14, "end=": 4, "contains": 2, "octet": 4, "UNICODE": 1, + "so": 4, "ze": 8, + "o": 51, "begin_": 1, "_end": 1, "store": 6, + "key": 22, + "same": 2, + "above": 3, "stores": 1, "captured": 6, "key=": 2, @@ -38205,6 +37428,9 @@ "round": 12, "byref": 5, "global": 26, + "e": 210, + "test": 6, + "l": 84, "ref=": 3, "l=": 2, "capture": 10, @@ -38214,13 +37440,23 @@ "named": 12, "groups": 5, "OVECTOR": 2, + "additional": 5, "namedonly": 9, + "j": 67, + "c": 113, "options=": 4, + "f": 93, + "i=": 14, "o=": 12, + "p": 84, + "u": 6, "namedonly=": 2, "ovector=": 2, "NO_AUTO_CAPTURE": 2, + "k": 122, + "c=": 28, "_capture_": 2, + "_i_": 5, "matches": 10, "s=": 4, "_s_": 1, @@ -38238,12 +37474,16 @@ "empty": 7, "skip": 6, "determine": 1, + "remove": 6, "them": 1, "before": 2, "byref=": 2, "check": 2, "UTF8": 2, "double": 1, + "char": 9, + "new": 15, + "line": 14, "utf8=": 1, "crlf=": 3, "NL_CRLF": 1, @@ -38258,31 +37498,41 @@ "optimize": 1, "leave": 1, "advance": 1, + "clear": 6, "LF": 1, "CR": 1, + "was": 5, "CRLF": 1, + "mode": 12, "middle": 1, ".i": 2, ".match": 2, ".round": 2, ".byref": 2, ".ovector": 2, + "replace": 27, "subst": 3, "last": 4, + "all": 8, "occurrences": 1, "matched": 1, - "back": 4, "th": 3, + "{": 5, + "}": 5, "replaced": 1, + "where": 6, "substitution": 2, "begins": 1, "substituted": 2, "defaults": 3, "ends": 1, + "offset": 6, "backref": 1, "boffset": 1, + "value": 72, "prepare": 1, "reference": 2, + "stack": 8, ".subst": 1, ".backref": 1, "silently": 1, @@ -38290,21 +37540,33 @@ "": 1, "s/": 6, "b*": 7, + "|": 171, "/Xy/g": 6, "print": 8, "aa": 9, "et": 4, + "zt": 20, + "t": 12, "direct": 3, + "msg": 6, + "place": 9, "take": 1, "default": 6, + "handler": 9, "setup": 3, "trap": 10, "source": 3, "location": 5, "argument": 1, + "st": 6, + "[": 54, "@ref": 2, - "E": 12, + "w": 127, + "@": 8, + "%": 207, "COMPILE": 2, + "message": 8, + "has": 7, "meaning": 1, "zs": 2, "re": 2, @@ -38323,6 +37585,7 @@ "U16393": 1, "NOTES": 1, "U16401": 2, + "never": 4, "raised": 2, "i.e.": 3, "NOMATCH": 2, @@ -38332,7 +37595,9 @@ "too": 1, "small": 1, "considering": 1, + "size": 3, "controlled": 1, + "here": 4, "U16402": 1, "U16403": 1, "U16404": 1, @@ -38357,9 +37622,104 @@ "U16425": 1, "U16426": 1, "U16427": 1, + "part": 3, + "DataBallet.": 4, + "Laurent": 2, + "Parenteau": 2, + "": 2, + "DataBallet": 4, + "decode": 1, + "val": 5, + "Decoded": 1, + "URL": 2, + "Encoded": 1, + "decoded": 3, + "zlength": 3, + "zextract": 3, + "decoded_": 1, + "else": 7, + "safechar": 3, + "zchar": 1, + "encoded": 8, + "encoded_c": 1, + "encoded_": 2, + "FUNC": 1, + "DH": 1, + "zascii": 1, + "ZDIOUT1": 1, + "Experimental": 1, + "FileMan": 1, + "host": 2, + "The": 11, + "Open": 1, + "Source": 1, + "Electronic": 1, + "Health": 1, + "Record": 1, + "Agent": 1, + "Licensed": 1, + "Apache": 1, + "Version": 1, + "may": 3, + "except": 1, + "compliance": 1, + "License.": 2, + "obtain": 2, + "//www.apache.org/licenses/LICENSE": 1, + "Unless": 1, + "applicable": 1, + "law": 1, + "agreed": 1, + "BASIS": 1, + "WARRANTIES": 1, + "OR": 2, + "CONDITIONS": 1, + "OF": 2, + "KIND": 1, + "express": 1, + "implied.": 1, + "language": 6, + "governing": 1, + "permissions": 2, + "limitations": 1, + "ASKFILE": 1, + "FILE": 5, + "ASKDIR": 1, + "DIR": 3, + "SAVEFILE": 2, + "Save": 1, + "given": 1, + "directory": 1, + "CHECK": 1, + "FGR": 4, + "_FILE": 1, + "IO": 4, + "DIR_": 1, + "L": 1, + "FILENAME": 1, + "_IO_": 1, + "_P_": 1, + "NM": 1, + "non": 1, + "printing": 1, + "characters": 8, + "escaped": 1, + "evaluation": 1, + "RHS": 1, + "SET.": 1, + "TODO": 1, + "Caller": 1, + "define": 2, + "indentation": 1, + "comment": 4, + "character": 5, + "tab": 1, + "space.": 1, + "V": 2, "Examples": 4, "pcre.m": 1, "parameters": 1, + "values": 4, "pcreexamples": 32, "shining": 1, "Test": 1, @@ -38370,28 +37730,40 @@ "Just": 1, "Change": 2, "word": 3, + "order": 11, "Escape": 1, "sequence": 1, "More": 1, "Low": 1, "api": 1, + "count": 18, "Setup": 1, "myexception2": 2, "st_": 1, "zl_": 2, + "well": 2, + "functions": 4, "Compile": 2, ".options": 1, "Run": 1, ".offset": 1, + "To": 2, + "access": 21, "used.": 2, + "always": 2, + "*": 6, "strings": 1, "submitted": 1, "exact": 1, "usable": 1, + "pairs": 2, "integers": 1, + "Get": 2, + "old": 3, "way": 1, "i*2": 3, "what": 2, + "/": 3, "/mg": 2, "aaa": 1, "nbb": 1, @@ -38401,17 +37773,19 @@ "Locale": 5, "Support": 1, "Polish": 1, + "been": 4, + "example": 5, "I18N": 2, "PCRE.": 1, "Polish.": 1, "second": 1, "letter": 1, "": 1, - "which": 4, "ISO8859": 1, "//en.wikipedia.org/wiki/Polish_code_pages": 1, "complete": 1, "listing": 1, + "Note": 2, "CHAR": 1, "different": 3, "modes": 1, @@ -38439,8 +37813,6 @@ "isolocale": 2, "utflocale": 2, "LC_CTYPE": 1, - "Set": 2, - "obtain": 2, "results.": 1, "envlocale": 2, "ztrnlnm": 2, @@ -38458,25 +37830,27 @@ "Install": 1, "libicu48": 2, "apt": 1, - "get": 2, "install": 1, "append": 1, "chown": 1, "gtm": 1, "/opt/gtm": 1, "Startup": 1, - "errors": 6, "INVOBJ": 1, "Cannot": 1, "ZLINK": 1, "due": 1, "unexpected": 1, + "format": 2, + "TEXT": 5, "Object": 1, "compiled": 1, "CHSET": 1, + "ZCHSET": 2, "written": 3, "startup": 1, "correct": 1, + "step": 8, "above.": 1, "Limits": 1, "built": 1, @@ -38488,7 +37862,7 @@ "long": 2, "runs": 2, "especially": 1, - "there": 2, + "would": 2, "paths": 2, "tree": 1, "checked.": 1, @@ -38496,12 +37870,15 @@ "using": 4, "itself": 1, "allows": 1, + "setting": 3, "MATCH_LIMIT": 1, "MATCH_LIMIT_RECURSION": 1, "arguments": 1, "library": 1, "compilation": 2, + "time": 9, "Example": 1, + "run": 2, "longrun": 3, "Equal": 1, "corrected": 1, @@ -38517,20 +37894,21 @@ "codes": 1, "labels": 1, "file.": 1, - "When": 2, "neither": 1, "nor": 1, "within": 1, "mechanism.": 1, "depending": 1, "caller": 1, + "type": 2, "exception.": 1, "lead": 1, - "writing": 4, "prompt": 1, + "b": 64, + "routine": 6, "terminating": 1, "image.": 1, - "define": 2, + "own": 2, "handlers.": 1, "Handler": 1, "No": 17, @@ -38547,6 +37925,7 @@ "Non": 1, "assigned": 1, "ECODE": 1, + "error": 62, "32": 1, "GT": 1, "image": 1, @@ -38554,6 +37933,7 @@ "myexception1": 3, "zt=": 1, "mytrap1": 2, + "x=": 5, "zg": 2, "mytrap3": 1, "DETAILS": 1, @@ -38570,10 +37950,10 @@ "Thats": 1, "why": 1, "doesn": 1, + "change": 6, "unless": 1, "cleared.": 1, "Always": 1, - "done.": 2, "Execute": 1, "p5global": 1, "p5replace": 1, @@ -38582,288 +37962,1018 @@ "newline": 1, "utf8support": 1, "myexception3": 1, + "compute": 2, + "Fibonacci": 1, + "series": 2, + "term": 10, + "exercise": 1, + "car": 14, + "Comment": 1, + "block": 1, + "semicolon": 1, + "next": 1, + "legal": 1, + "blank": 1, + "whitespace": 2, + "alone": 1, + "valid": 2, + "Comments": 1, + "graphic": 3, + "such": 1, + "@#": 1, + "]": 15, + "space": 1, + "considered": 1, + "though": 1, + "it.": 2, + "ASCII": 2, + "whose": 1, + "numeric": 8, + "below": 1, + "NOT": 2, + "allowed": 18, + "routine.": 1, + "multiple": 1, + "semicolons": 1, + "okay": 1, + "tag": 2, + "after": 3, + "bug": 2, + "does": 1, + "Tag1": 1, + "Tags": 2, + "uppercase": 2, + "lowercase": 1, + "alphabetic": 2, + "HELO": 1, + "most": 1, + "common": 1, + "LABEL": 1, + "followed": 1, + "directly": 1, + "open": 1, + "parenthesis": 2, + "formal": 1, + "list": 1, + "close": 1, + "ANOTHER": 1, + "X": 19, + "Normally": 1, + "subroutine": 1, + "ended": 1, + "we": 1, + "taking": 1, + "advantage": 1, + "rule": 1, + "END": 1, + "implicit": 1, + "start2": 1, + "miles": 4, + "gallons": 4, + "miles/gallons": 1, + "computepesimist": 1, + "miles/": 1, + "computeoptimist": 1, + "/gallons": 1, + "encode": 1, + "Return": 1, + "base64": 6, + "Filename": 1, + "safe": 3, + "alphabet": 2, + "RFC": 1, + "todrop": 2, + "Populate": 1, + "only.": 1, + "Digest": 2, + "simple": 2, + "OpenSSL": 3, + "based": 1, + "digest": 19, + "rewrite": 1, + "EVP_DigestInit": 1, + "wrapper.": 1, + "//www.openssl.org/docs/crypto/EVP_DigestInit.html": 1, + "digest.init": 3, + "usually": 1, + "algorithm": 1, + "specification.": 1, + "Anyway": 1, + "properly": 1, + "fail.": 1, + "m": 37, + "HEX": 1, + "digest.update": 2, + ".c": 2, + ".m": 11, + "digest.final": 2, + ".d": 1, + "init": 6, + "alg": 3, + "context": 1, + "try": 1, + "etc": 1, + "returned": 1, + "occurs": 1, + "e.g.": 2, + "unknown": 1, + "update": 1, + "ctx": 4, + "updates": 1, + ".ctx": 2, + ".msg": 1, + "final": 1, + "hex": 1, + "frees": 1, + "memory": 1, + "allocated": 1, + ".digest": 1, + "algorithms": 1, + "availability": 1, + "depends": 1, + "libcrypto": 1, + "configuration": 1, + "md4": 1, + "md5": 2, + "sha": 1, + "sha1": 1, + "sha224": 1, + "sha256": 1, + "sha512": 1, + "dss1": 1, + "ripemd160": 1, + "Mumtris": 3, + "tetris": 1, + "game": 1, + "MUMPS": 1, + "fun.": 1, + "Resize": 1, + "terminal": 2, + "maximize": 1, + "PuTTY": 1, + "window": 1, + "restart": 3, + "report": 1, + "true": 2, + "mumtris.": 1, + "ansi": 2, + "compatible": 1, + "cursor": 1, + "positioning.": 1, + "NOTICE": 1, + "uses": 1, + "making": 1, + "delays": 1, + "lower": 1, + "s.": 1, + "That": 1, + "means": 2, + "CPU": 1, + "It": 2, + "fall": 5, + "lock": 2, + "preview": 3, + "over": 2, + "exit": 3, + "short": 1, + "circuit": 1, + "redraw": 3, + "timeout": 1, + "harddrop": 1, + "other": 1, + "ex": 5, + "hd": 3, + "r": 88, + "*c": 1, + "<0&'d>": 1, + "t10m": 1, + "h": 39, + "q=": 6, + "d=": 1, + "zb": 2, + "3": 6, + "rotate": 5, + "right": 3, + "left": 5, + "fl=": 1, + "gr=": 1, + "hl": 2, + "help": 2, + "drop": 2, + "hd=": 1, + "matrix": 2, + "draw": 3, + "ticks": 2, + "h=": 2, + "1000000000": 1, + "b=": 4, + "e=": 1, + "t10m=": 1, + "100": 2, + "n=": 1, + "ne=": 1, + "y=": 3, + "r=": 3, + "collision": 6, + "score": 5, + "k=": 1, + "4": 5, + "j=": 4, + "<1))))>": 1, + "800": 1, + "200": 1, + "lv": 5, + "lc=": 1, + "10": 1, + "lc": 3, + "mt_": 2, + "cls": 6, + "dh/2": 6, + "dw/2": 6, + "*s": 4, + "echo": 1, + "intro": 1, + "pos": 33, + "workaround": 1, + "ANSI": 1, + "driver": 1, + "NL": 1, + "some": 1, + "clearscreen": 1, + "h/2": 3, + "*w/2": 3, + "fill": 3, + "fl": 2, + "*x": 1, + "mx": 4, + "my": 5, + "**lv*sb": 1, + "*lv": 1, + "sc": 3, + "ne": 2, + "gr": 1, + "w*3": 1, + "dev": 1, + "zsh": 1, + "dw": 1, + "dh": 1, + "elemId": 3, + "rotateVersions": 1, + "rotateVersion": 2, + "bottom": 1, + "coordinate": 1, + "point": 2, + "____": 1, + "__": 2, + "||": 1, + "zmwire": 53, + "M/Wire": 4, + "Protocol": 2, + "Systems": 1, + "eg": 3, + "Cache": 3, + "M/Gateway": 4, + "Developments": 4, + "Ltd": 4, + "Reigate": 4, + "Surrey": 4, + "UK.": 4, + "All": 4, + "rights": 4, + "reserved.": 4, + "//www.mgateway.com": 4, + "Email": 4, + "rtweed@mgateway.com": 4, + "By": 1, + "server": 1, + "port": 4, + "systems": 3, + "invoked": 2, + "via": 2, + "xinetd": 2, + "Edit": 1, + "/etc/services": 1, + "add": 5, + "mwire": 2, + "/tcp": 1, + "#": 1, + "Service": 1, + "Copy": 2, + "/etc/xinetd.d/mwire": 1, + "/usr/local/gtm/zmwire": 1, + "its": 1, + "executable": 1, + "edited": 1, + "Restart": 1, + "sudo": 1, + "/etc/init.d/xinetd": 1, + "On": 1, + "installed": 1, + "MGWSI": 1, + "m_apache": 3, + "provide": 1, + "MD5": 6, + "hashing": 1, + "passwords": 1, + "Alternatively": 1, + "substitute": 1, + "callout": 1, + "choice": 1, + "Daemon": 2, + "running": 1, + "jobbed": 1, + "job": 1, + "zmwireDaemon": 2, + "simply": 1, + "Stop": 1, + "RESJOB": 1, + "mwireVersion": 4, + "mwireDate": 2, + "July": 1, + "_crlf": 22, + "response": 29, + "zewd": 17, + "trace": 24, + "_response_": 4, + "_crlf_response_crlf": 4, + "zv": 6, + "authNeeded": 6, + "input": 41, + "cleardown": 2, + "zint": 1, + "role": 3, + "loop": 7, + "log": 1, + "halt": 3, + "auth": 2, + "ignore": 12, + "pid": 36, + "monitor": 1, + "input_crlf": 1, + "lineNo": 19, + "zsy": 2, + "_pid_": 1, + "_pid": 1, + "monitoroutput": 1, + "logger": 17, + "initialise": 3, + "tot": 2, + "mwireLogger": 3, + "increment": 11, + "info": 1, + "response_": 1, + "_count": 1, + "setpassword": 1, + "SETPASSWORD": 2, + "secret": 2, + "OK": 6, + "": 1, + "role=": 1, + "admin": 1, + "newrole": 4, + "getGloRef": 3, + "gloName": 1, + "gloRef": 15, + "nb": 2, + "subs": 8, + "len": 8, + "nsp": 1, + "subs_": 2, + "quot": 2, + "_data_": 3, + "subscripts": 8, + "_value_": 1, + "_error_": 1, + "ok": 14, + "kill": 3, + "xx": 16, + "yy": 19, + "method": 2, + "Missing": 5, + "JSON": 7, + "transaction": 6, + "document": 6, + "setJSON": 4, + "json": 9, + "globalName": 7, + "GlobalName": 3, + "setGlobal": 1, + "zmwire_null_value": 1, + "Invalid": 1, + "props": 1, + "arr": 2, + "getJSON": 2, + "incr": 1, + "incrbr": 1, + "class": 1, + "##": 2, + "decr": 1, + "decrby": 1, + "subscript": 7, + "direction": 1, + "subscriptValue": 1, + "dataStatus": 1, + "dataValue": 1, + "nextsubscript": 2, + "reverseorder": 1, + "query": 4, + "p2": 10, + "*2": 1, + "queryget": 1, + "xxyy": 2, + "zz": 2, + "exists": 6, + "getallsubscripts": 1, + "orderall": 1, + "": 3, + "note": 2, + "escaping": 1, + "foo": 2, + "CacheTempEWD": 16, + "_gloRef": 1, + "@x": 4, + "_crlf_": 1, + "j_": 1, + "params": 10, + "resp": 5, + "_crlf_resp_crlf": 2, + "_crlf_data_crlf": 2, + "mergeto": 1, + "dataLength": 4, + "keyLength": 6, + "noOfRecs": 6, + "MERGETO": 1, + "myglobal": 1, + "*6": 1, + "hello": 1, + "": 2, + "put": 1, + "top": 1, + "N.N": 12, + "noOfRecs#2": 1, + "noOfRecs/2": 1, + "gloRef1": 2, + "gloRef1_": 2, + "_gloRef1_key_": 1, + "sub": 2, + "literal": 2, + "false": 5, + "boolean": 2, + "valquot_value_valquot": 1, + "json_value_": 1, + "subscripts1": 2, + "dd": 4, + "subx": 3, + "subNo": 1, + "numsub": 1, + "json_": 2, + "removeControlChars": 2, + "zobj1": 1, + "buff": 10, + "parseJSONObject": 2, + ".buff": 2, + "subs2": 6, + "stop": 20, + "_name_": 1, + "subs2_": 2, + "value_c": 1, + "N.N1": 4, + "newString": 4, + "newString_c": 1, + "utfConvert": 1, + "Unescape": 1, + "buf": 4, + "c1": 4, + "buf_c1_": 1, + "tr": 13, + "Keith": 1, + "Lynch": 1, + "p#f": 1, + "*8": 2, "contrasting": 1, "postconditionals": 1, - "IF": 9, "commands": 1, "post1": 1, "postconditional": 3, "purposely": 4, "TEST": 16, - "false": 5, "post2": 1, + "": 3, + "a=": 3, + "smaller": 3, + "than": 4, "special": 2, "post": 1, "condition": 1, - "PRCAAPR": 1, - "WASH": 1, - "ISC@ALTOONA": 1, - "PA/RGY": 1, - "PATIENT": 5, - "ACCOUNT": 1, - "PROFILE": 1, - "CONT": 1, - "/9/94": 1, - "AM": 1, - "V": 2, - "Accounts": 1, - "Receivable": 1, - "**198": 1, - "Mar": 1, - "Per": 1, - "VHA": 1, - "Directive": 1, - "modified.": 1, - "EN": 2, - "PRCATY": 2, - "NEW": 3, - "DIC": 6, - "Y": 26, - "DEBT": 10, - "PRCADB": 5, - "DA": 4, - "PRCA": 14, - "COUNT": 2, - "OUT": 2, - "SEL": 1, - "BILL": 11, - "BAT": 8, - "TRAN": 5, - "DR": 4, - "DXS": 1, - "DTOUT": 2, - "DIROUT": 1, - "DIRUT": 1, - "DUOUT": 1, - "ASK": 3, - "DPTNOFZY": 2, - "DPTNOFZK": 2, - "K": 5, - "DTIME": 1, - "UPPER": 1, - "VALM1": 1, - "RCD": 1, - "DISV": 2, - "DUZ": 3, - "NAM": 1, - "RCFN01": 1, - "COMP": 2, - "EN1": 1, - "PRCAATR": 1, - "Y_": 3, - "PRCADB_": 1, - "HDR": 1, - "PRCAAPR1": 3, - "HDR2": 1, - "DIS": 1, - "STAT1": 2, - "_PRCATY_": 1, - "COMP1": 2, - "RCY": 5, - "COMP2": 2, - "_STAT_": 1, - "_STAT": 1, - "payments": 1, - "_TRAN": 1, - "Keith": 1, - "Lynch": 1, - "p#f": 1, - "PXAI": 1, - "ISL/JVS": 1, - "ISA/KWP": 1, - "ESW": 1, - "PCE": 2, - "DRIVING": 1, - "RTN": 1, - "/20/03": 1, - "am": 1, - "CARE": 1, - "ENCOUNTER": 2, - "**15": 1, - "Aug": 1, - "DATA2PCE": 1, - "PXADATA": 7, - "PXAPKG": 9, - "PXASOURC": 10, - "PXAVISIT": 8, - "PXAUSER": 6, - "PXANOT": 3, - "ERRRET": 2, - "PXAPREDT": 2, - "PXAPROB": 15, - "PXACCNT": 2, - "add/edit/delete": 1, - "PCE.": 1, - "required": 4, - "pointer": 4, - "visit": 3, - "related.": 1, - "then": 2, - "nodes": 1, - "needed": 1, - "lookup/create": 1, - "visit.": 1, - "adding": 1, - "data.": 1, - "displayed": 1, - "screen": 1, - "debugging": 1, - "initial": 1, - "code.": 1, - "passed": 4, - "reference.": 2, - "present": 1, - "PXKERROR": 2, - "caller.": 1, - "want": 1, - "edit": 1, - "Primary": 3, - "Provider": 1, - "moment": 1, - "editing": 2, - "being": 1, - "dangerous": 1, - "dotted": 1, - "name.": 1, - "warnings": 1, - "occur": 1, - "They": 1, - "form": 1, - "general": 1, - "description": 1, - "problem.": 1, - "ERROR1": 1, - "GENERAL": 2, - "ERRORS": 4, - "SUBSCRIPT": 5, - "PASSED": 4, - "IN": 4, - "FIELD": 2, - "FROM": 5, - "WARNING2": 1, - "WARNINGS": 2, - "WARNING3": 1, - "SERVICE": 1, - "CONNECTION": 1, - "REASON": 9, - "ERROR4": 1, - "PROBLEM": 1, - "LIST": 1, - "Returns": 2, - "PFSS": 2, - "Account": 2, - "Reference": 2, - "known.": 1, - "Returned": 1, - "located": 1, - "Order": 1, - "#100": 1, - "process": 3, - "processed": 1, - "could": 1, - "incorrectly": 1, - "VARIABLES": 1, - "NOVSIT": 1, - "PXAK": 20, - "DFN": 1, - "PXAERRF": 3, - "PXADEC": 1, - "PXELAP": 1, - "PXASUB": 2, - "VALQUIET": 2, - "PRIMFND": 7, - "PXAERROR": 1, - "PXAERR": 7, - "PRVDR": 1, - "needs": 1, - "look": 1, - "up": 1, - "passed.": 1, - "@PXADATA@": 8, - "SOR": 1, - "SOURCE": 2, - "PKG2IEN": 1, - "VSIT": 1, - "PXAPIUTL": 2, - "TMPSOURC": 1, - "SAVES": 1, - "CREATES": 1, - "VST": 2, - "VISIT": 3, - "KILL": 1, - "VPTR": 1, - "PXAIVSTV": 1, - "ERR": 2, - "PXAIVST": 1, - "PRV": 1, - "PROVIDER": 1, - "AUPNVSIT": 1, - ".I": 4, - "..S": 7, - "status": 2, - "Secondary": 2, - ".S": 6, - "..I": 2, - "PXADI": 4, - "NODE": 5, - "SCREEN": 2, - "VA": 1, - "EXTERNAL": 2, - "INTERNAL": 2, - "ARRAY": 2, - "PXAICPTV": 1, - "SEND": 1, - "W": 4, - "BLD": 2, - "DIALOG": 4, - ".PXAERR": 3, - "MSG": 2, - "GLOBAL": 1, - "NA": 1, - "PROVDRST": 1, - "Check": 1, - "provider": 1, - "PRVIEN": 14, - "DETS": 7, - "DIQ": 3, - "PRI": 3, - "PRVPRIM": 2, - "AUPNVPRV": 2, - "U": 14, - ".04": 1, - "DIQ1": 1, - "POVPRM": 1, - "POVARR": 1, - "STOP": 1, - "LPXAK": 4, - "ORDX": 14, - "NDX": 7, - "ORDXP": 3, - "DX": 2, - "ICD9": 2, - "AUPNVPOV": 2, - "@POVARR@": 6, - "force": 1, - "originally": 1, - "primary": 1, - "diagnosis": 1, - "flag": 1, - ".F": 2, - "..E": 1, - "...S": 5, - "decode": 1, - "val": 5, - "Decoded": 1, - "Encoded": 1, - "decoded": 3, - "decoded_": 1, - "safechar": 3, - "zchar": 1, - "encoded_c": 1, - "encoded_": 2, - "FUNC": 1, - "DH": 1, - "zascii": 1, + "if1": 2, + "if2": 2, + "zewdAPI": 52, + "Enterprise": 5, + "Web": 5, + "Developer": 5, + "APIs": 1, + "Product": 2, + "Date": 2, + "Fri": 1, + "Nov": 1, + "getVersion": 1, + "zewdCompiler": 6, + "date": 1, + "getDate": 1, + "compilePage": 2, + "app": 13, + "page": 12, + "technology": 9, + "outputPath": 4, + "multilingual": 4, + "maxLines": 4, + "compileAll": 2, + "templatePageName": 2, + "autoTranslate": 2, + "verbose": 2, + "zewdMgr": 1, + "startSession": 2, + "requestArray": 2, + "serverArray": 1, + "sessionArray": 5, + "filesArray": 1, + "zewdPHP": 8, + ".requestArray": 2, + ".serverArray": 1, + ".sessionArray": 3, + ".filesArray": 1, + "closeSession": 2, + "saveSession": 2, + "endOfPage": 2, + "prePageScript": 2, + "sessid": 146, + "releaseLock": 2, + "tokeniseURL": 2, + "url": 2, + "zewdCompiler16": 5, + "getSessid": 1, + "token": 21, + "isTokenExpired": 2, + "zewdSession": 39, + "initialiseSession": 1, + "deleteSession": 2, + "changeApp": 1, + "appName": 4, + "setSessionValue": 6, + "setRedirect": 1, + "toPage": 1, + "path": 4, + "getRootURL": 1, + "_sessid_": 3, + "_token_": 1, + "_nextPage": 1, + "zcvt": 11, + "nextPage": 1, + "isNextPageTokenValid": 2, + "zewdCompiler13": 10, + "isCSP": 1, + "normaliseTextValue": 1, + "text": 6, + "replaceAll": 11, + "writeLine": 2, + "CacheTempBuffer": 2, + "displayOptions": 2, + "fieldName": 5, + "listName": 6, + "escape": 7, + "codeValue": 7, + "nnvp": 1, + "nvp": 1, + "textValue": 6, + "getSessionValue": 3, + "codeValueEsc": 7, + "textValueEsc": 7, + "htmlOutputEncode": 2, + "zewdAPI2": 5, + "_codeValueEsc_": 1, + "selected": 4, + "translationMode": 1, + "_appName": 1, + "typex": 1, + "avoid": 1, + "getPhraseIndex": 1, + "zewdCompiler5": 1, + "licensed": 1, + "setWarning": 2, + "isTemp": 11, + "setWLDSymbol": 1, + "Duplicate": 1, + "performance": 1, + "wldAppName": 1, + "wldName": 1, + "wldSessid": 1, + "zzname": 1, + "extcErr": 1, + "mess": 3, + "namespace": 1, + "valueErr": 1, + "exportCustomTags": 2, + "tagList": 1, + "filepath": 10, + ".tagList": 1, + "exportAllCustomTags": 2, + "importCustomTags": 2, + "filePath": 2, + "zewdForm": 1, + "stripSpaces": 6, + "np": 17, + "obj": 6, + "prop": 6, + "setSessionObject": 3, + "allowJSONAccess": 1, + "sessionName": 30, + "disallowJSONAccess": 1, + "JSONAccess": 1, + "existsInSession": 2, + "existsInSessionArray": 2, + "p1": 5, + "p3": 3, + "p4": 2, + "p5": 2, + "p6": 2, + "p7": 2, + "p8": 2, + "p9": 2, + "p10": 2, + "p11": 2, + "clearSessionArray": 1, + "arrayName": 35, + "setSessionArray": 1, + "itemName": 16, + "itemValue": 7, + "getSessionArray": 1, + "clearArray": 2, + "getSessionArrayErr": 1, + "Come": 1, + "addToSession": 2, + "@name": 4, + "mergeToSession": 1, + "mergeGlobalToSession": 2, + "mergeGlobalFromSession": 2, + "mergeArrayToSession": 1, + "mergeArrayToSessionObject": 2, + ".array": 1, + "mergeArrayFromSession": 1, + "mergeFromSession": 1, + "deleteFromSession": 1, + "deleteFromSessionObject": 1, + "sessionNameExists": 1, + "getSessionArrayValue": 2, + ".exists": 1, + "sessionArrayValueExists": 2, + "deleteSessionArrayValue": 2, + "Objects": 1, + "objectName": 13, + "propertyName": 3, + "propertyValue": 5, + "comma": 3, + "objectName_": 2, + "_propertyName": 2, + "_propertyName_": 2, + "_propertyValue_": 1, + "_p": 1, + "quoted": 1, + "FromStr": 6, + "ToStr": 4, + "InText": 4, + "removeDocument": 1, + "zewdDOM": 3, + "instanceName": 2, + "clearXMLIndex": 1, + "zewdSchemaForm": 1, + "closeDOM": 1, + "makeTokenString": 1, + "token_": 1, + "makeString": 3, + "str": 15, + "convertDateToSeconds": 1, + "hdate": 7, + "hdate*86400": 1, + "convertSecondsToDate": 1, + "secs": 2, + "secs#86400": 1, + "getTokenExpiry": 2, + "h*86400": 1, + "randChar": 1, + "R": 2, + "lowerCase": 2, + "stripLeadingSpaces": 2, + "stripTrailingSpaces": 2, + "d1": 7, + "zd": 1, + "<10>": 1, + "dd=": 2, + "mm=": 3, + "d1=": 1, + "p1=": 1, + "mm": 7, + "p2=": 1, + "yy=": 1, + "dd_": 1, + "mm_": 1, + "inetTime": 1, + "Decode": 1, + "Internet": 1, + "Format": 1, + "Time": 1, + "H": 1, + "Offset": 1, + "relative": 1, + "GMT": 1, + "hh": 4, + "ss": 4, + "_hh": 1, + "time#3600": 1, + "_mm": 1, + "time#60": 1, + "_ss": 2, + "hh_": 1, + "_mm_": 1, + "openNewFile": 2, + "openFile": 2, + "openDOM": 2, + "#39": 1, + "<\",\"<\")>": 1, + "string=": 1, + "gt": 1, + "amp": 1, + "HTML": 1, + "no2": 1, + "p1_c_p2": 1, + "getIP": 2, + "IP": 1, + "address": 1, + "ajaxErrorRedirect": 2, + "classExport": 2, + "className": 2, + "methods": 2, + ".methods": 1, + "strx": 2, + "disableEwdMgr": 1, + "enableEwdMgr": 1, + "enableWLDAccess": 1, + "disableWLDAccess": 1, + "isSSOValid": 2, + "sso": 2, + "username": 8, + "password": 8, + "zewdMgrAjax2": 1, + "uniqueId": 1, + "nodeOID": 2, + "filename": 2, + "linkToParentSession": 2, + "zewdCompiler20": 1, + "exportToGTM": 1, + "MDB": 60, + "M/DB": 2, + "Mumps": 1, + "Emulation": 1, + "Amazon": 1, + "SimpleDB": 1, + "buildDate": 1, + "indexLength": 10, + "keyId": 108, + "tested": 1, + "these": 1, + "Initialise": 2, + "service": 1, + "//192.168.1.xxx/mdb/test.mgwsi": 1, + "Action": 2, + "addUser": 2, + "userKeyId": 6, + "userSecretKey": 6, + "requestId": 17, + "boxUsage": 11, + "startTime": 21, + ".startTime": 5, + "MDBUAF": 2, + ".boxUsage": 22, + "createDomain": 1, + "domainName": 38, + "dn": 4, + "dnx": 3, + "id": 33, + "noOfDomains": 12, + "MDBConfig": 1, + "getDomainId": 3, + "found": 7, + "namex": 8, + "buildItemNameIndex": 2, + "domainId": 53, + "itemId": 41, + "itemValuex": 3, + "countDomains": 2, + "deleteDomain": 2, + "listDomains": 1, + "maxNoOfDomains": 2, + "nextToken": 7, + "domainList": 3, + "fullName": 3, + "decodeBase64": 1, + "encodeBase64": 1, + "itemExists": 1, + "getItemId": 2, + "getAttributeValueId": 3, + "attribId": 36, + "valuex": 13, + "putAttributes": 2, + "attributes": 32, + "valueId": 16, + "xvalue": 4, + "Item": 1, + "Domain": 1, + "itemNamex": 4, + "parseJSON": 1, + "attributesJSON": 1, + ".attributes": 5, + "attribute": 14, + "getAttributeId": 2, + "domain": 1, + "Not": 1, + "now": 1, + "name/value": 2, + "pair": 1, + "getAttributes": 2, + "suppressBoxUsage": 1, + "attrNo": 9, + "valueNo": 6, + "delete": 2, + "item": 2, + "associated": 1, + "queryIndex": 1, + "records": 2, + "vno": 2, + "references": 1, + "maxNoOfItems": 3, + "itemList": 12, + "session": 1, + "identifier": 1, + "stored": 1, + "queryExpression": 16, + "relink": 1, + "zewdGTMRuntime": 1, + "CGIEVAR": 1, + "cgi": 1, + "unescName": 5, + "urlDecode": 2, + "KEY": 36, + "WebLink": 1, + "action": 15, + "AWSAcessKeyId": 1, + "db": 9, + "hash": 1, + "itemsAndAttrs": 2, + "secretKey": 1, + "signatureMethod": 2, + "signatureVersion": 3, + "stringToSign": 2, + "rltKey": 2, + "_action_": 2, + "h_": 3, + "mdbKey": 2, + "errorResponse": 9, + ".requestId": 7, + "createResponse": 4, + "installMDBM": 1, + "authenticate": 1, + "MDBSession": 1, + "createResponseStringToSign": 1, + "Security": 1, + "_db": 1, + "MDBAPI": 1, + "_db_": 1, + "db_": 1, + "_action": 1, + "metaData": 1, + "domainMetadata": 1, + ".metaData": 1, + "paramName": 8, + "paramValue": 5, + "Query": 1, + "DomainName": 2, + "QueryExpression": 2, + "MaxNumberOfItems": 2, + "NextToken": 3, + "QueryWithAttributes": 1, + "AttributeName.": 2, + "Select": 2, + "SelectExpression": 1, + "entering": 1, + "runSelect.": 1, + "selectExpression": 3, + "finished": 1, + "runSelect": 3, + "select": 3, + "asc": 1, + "inValue": 6, + "expr": 18, + "rel": 2, + "itemStack": 3, + "between": 2, + "<=\">": 1, + "lastWord=": 7, + "inAttr=": 5, + "expr=": 10, + "thisWord=": 7, + "inAttr": 2, + "queryExpression=": 4, + "_queryExpression": 2, + "isNull": 1, + "5": 1, + "8": 1, + "isNotNull": 1, + "9": 1, + "prevName": 1, + "np=": 1, + "diffNames": 6, + "_term": 3, + "expr_": 1, + "_orderBy": 1, + "runQuery": 2, + ".itemList": 4, + "escVals": 1, + "str_c": 2, + "_x_": 1, + "orderBy": 1, + "_query": 1, + "parseSelect": 1, + ".domainName": 2, + ".queryExpression": 1, + ".orderBy": 1, + ".limit": 1, + "executeSelect": 1, + ".itemStack": 1, + "***": 2, + "listCopy": 3, + "externalSelect": 2, + "_keyId_": 1, + "_selectExpression": 1, + "spaces": 3, + "string_spaces": 1, + "GMRGPNB0": 1, + "CISC/JH/RM": 1, + "NARRATIVE": 1, + "BUILDER": 1, + "GENERATOR": 1, + "cont.": 1, + "/20/91": 1, + "Text": 1, + "Generator": 1, + "Jan": 1, + "ENTRY": 2, + "WITH": 1, + "GMRGA": 1, + "POINT": 1, + "AT": 1, + "WHICH": 1, + "WANT": 1, + "START": 1, + "BUILDING": 1, + "GMRGE0": 11, + "GMRGADD": 4, + "GMR": 6, + "GMRGA0": 11, + "GMRGPDA": 9, + "GMRGCSW": 2, + "NOW": 1, + "DTC": 1, + "GMRGB0": 9, + "GMRGST": 6, + "GMRGPDT": 2, + "STAT": 8, + "GMRGRUT0": 3, + "GMRGF0": 3, + "GMRGSTAT": 8, + "_GMRGB0_": 2, + "GMRD": 6, + "GMRGSSW": 3, + "SNT": 1, + "GMRGPNB1": 1, + "GMRGNAR": 8, + "GMRGPAR_": 2, + "_GMRGSPC_": 3, + "_GMRGRM": 2, + "_GMRGE0": 1, + "STORETXT": 1, + "GMRGRUT1": 1, + "GMRGSPC": 3, + "GMRGD0": 7, + "ALIST": 1, + "GMRGPLVL": 6, + "GMRGA0_": 1, + "_GMRGD0_": 1, + "_GMRGSSW_": 1, + "_GMRGADD": 1, + "GMRGI0": 6, + "computes": 1, + "factorial": 3, + "f*n": 1, + "main": 1, "WVBRNOT": 1, "HCIOFO/FT": 1, "JR": 1, @@ -38878,6 +38988,7 @@ "..F": 2, "WV": 8, "WVXREF": 1, + "Y": 26, "WVDFN": 6, "SELECTING": 1, "ONE": 2, @@ -38895,7 +39006,6 @@ "IS": 3, "QUEUED.": 1, "WVB": 4, - "OR": 2, "OPEN": 1, "ONLY": 1, "CLOSED.": 1, @@ -38930,7 +39040,6 @@ "DEQUEUE": 1, "TASKMAN": 1, "QUEUE": 1, - "OF": 2, "PRINTOUT.": 1, "SETVARS": 2, "WVUTL5": 2, @@ -38948,241 +39057,161 @@ "WVBRNOT2": 1, "WVPOP": 1, "WVLOOP": 1, - "ZDIOUT1": 1, - "Experimental": 1, - "FileMan": 1, - "host": 2, - "Open": 1, - "Source": 1, - "Electronic": 1, - "Health": 1, - "Record": 1, - "Agent": 1, - "Licensed": 1, - "Apache": 1, - "Version": 1, - "may": 3, - "except": 1, - "compliance": 1, - "License.": 2, - "//www.apache.org/licenses/LICENSE": 1, - "Unless": 1, - "applicable": 1, - "law": 1, - "agreed": 1, - "BASIS": 1, - "WARRANTIES": 1, - "CONDITIONS": 1, - "KIND": 1, - "express": 1, - "implied.": 1, - "governing": 1, - "permissions": 2, - "limitations": 1, - "ASKFILE": 1, - "FILE": 5, - "ASKDIR": 1, - "DIR": 3, - "SAVEFILE": 2, - "Save": 1, - "given": 1, - "directory": 1, - "CHECK": 1, - "FGR": 4, - "_FILE": 1, - "IO": 4, - "DIR_": 1, - "L": 1, - "FILENAME": 1, - "_IO_": 1, - "_P_": 1, - "NM": 1, - "non": 1, - "printing": 1, - "escaped": 1, - "evaluation": 1, - "RHS": 1, - "SET.": 1, - "TODO": 1, - "Caller": 1, - "indentation": 1, - "tab": 1, - "space.": 1, - "M/Wire": 4, - "Protocol": 2, - "Systems": 1, - "By": 1, - "server": 1, - "port": 4, - "systems": 3, - "invoked": 2, - "via": 2, - "xinetd": 2, - "Edit": 1, - "/etc/services": 1, - "mwire": 2, - "/tcp": 1, - "#": 1, - "Service": 1, - "Copy": 2, - "/etc/xinetd.d/mwire": 1, - "/usr/local/gtm/zmwire": 1, - "its": 1, - "executable": 1, - "edited": 1, - "Restart": 1, - "sudo": 1, - "/etc/init.d/xinetd": 1, - "On": 1, - "installed": 1, - "MGWSI": 1, - "provide": 1, - "hashing": 1, - "passwords": 1, - "Alternatively": 1, - "substitute": 1, - "callout": 1, - "choice": 1, - "Daemon": 2, - "running": 1, - "jobbed": 1, - "job": 1, - "zmwireDaemon": 2, - "simply": 1, - "Stop": 1, - "RESJOB": 1, - "mwireVersion": 4, - "mwireDate": 2, - "July": 1, - "_crlf": 22, - "_response_": 4, - "_crlf_response_crlf": 4, - "authNeeded": 6, - "input": 41, - "cleardown": 2, - "zint": 1, - "role": 3, - "loop": 7, - "log": 1, - "halt": 3, - "auth": 2, - "ignore": 12, - "pid": 36, - "monitor": 1, - "input_crlf": 1, - "zsy": 2, - "_pid_": 1, - "_pid": 1, - "monitoroutput": 1, - "logger": 17, - "tot": 2, - "mwireLogger": 3, - "info": 1, - "response_": 1, - "_count": 1, - "setpassword": 1, - "SETPASSWORD": 2, - "secret": 2, - "": 1, - "role=": 1, - "admin": 1, - "newrole": 4, - "getGloRef": 3, - "gloName": 1, - "gloRef": 15, - "nb": 2, - "subs": 8, - "nsp": 1, - "subs_": 2, - "_data_": 3, - "subscripts": 8, - "_value_": 1, - "_error_": 1, - "kill": 3, - "xx": 16, - "method": 2, - "Missing": 5, - "JSON": 7, - "transaction": 6, - "document": 6, - "setJSON": 4, - "GlobalName": 3, - "setGlobal": 1, - "zmwire_null_value": 1, - "Invalid": 1, - "props": 1, - "arr": 2, - "getJSON": 2, - "incr": 1, - "incrbr": 1, - "class": 1, - "##": 2, - "decr": 1, - "decrby": 1, - "direction": 1, - "subscriptValue": 1, - "dataStatus": 1, - "dataValue": 1, - "nextsubscript": 2, - "reverseorder": 1, - "*2": 1, - "queryget": 1, - "xxyy": 2, - "zz": 2, - "getallsubscripts": 1, - "orderall": 1, - "": 3, - "note": 2, - "escaping": 1, - "foo": 2, - "_gloRef": 1, - "@x": 4, - "_crlf_": 1, - "j_": 1, - "params": 10, - "_crlf_resp_crlf": 2, - "_crlf_data_crlf": 2, - "mergeto": 1, - "dataLength": 4, - "keyLength": 6, - "noOfRecs": 6, - "MERGETO": 1, - "myglobal": 1, - "*6": 1, - "hello": 1, - "": 2, - "put": 1, - "top": 1, - "noOfRecs#2": 1, - "noOfRecs/2": 1, - "gloRef1": 2, - "gloRef1_": 2, - "_gloRef1_key_": 1, - "sub": 2, - "literal": 2, - "valquot_value_valquot": 1, - "json_value_": 1, - "subscripts1": 2, - "subx": 3, - "subNo": 1, - "numsub": 1, - "json_": 2, - "removeControlChars": 2, - "zobj1": 1, - "buff": 10, - "parseJSONObject": 2, - ".buff": 2, - "subs2": 6, - "_name_": 1, - "subs2_": 2, - "value_c": 1, - "newString": 4, - "newString_c": 1, - "utfConvert": 1, - "Unescape": 1, - "buf": 4, - "c1": 4, - "buf_c1_": 1 + "zewdDemo": 1, + "Tutorial": 1, + "Wed": 1, + "Apr": 1, + "getLanguage": 1, + "getRequestValue": 1, + "login": 1, + "getTextValue": 4, + "getPasswordValue": 2, + "_username_": 1, + "_password": 1, + "logine": 1, + "textid": 1, + "errorMessage": 1, + "ewdDemo": 8, + "clearList": 2, + "appendToList": 4, + "addUsername": 1, + "newUsername": 5, + "newUsername_": 1, + "setTextValue": 4, + "testValue": 1, + "getSelectValue": 3, + "_user": 1, + "getPassword": 1, + "setPassword": 1, + "getObjDetails": 1, + "_user_": 1, + "_data": 2, + "setRadioOn": 2, + "initialiseCheckbox": 2, + "setCheckboxOn": 3, + "createLanguageList": 1, + "setMultipleSelectOn": 2, + "clearTextArea": 2, + "textarea": 2, + "createTextArea": 1, + ".textarea": 1, + "userType": 4, + "setMultipleSelectValues": 1, + ".selected": 1, + "testField3": 3, + ".value": 1, + "testField2": 1, + "field3": 1, + "dateTime": 1, + "label1": 1, + "statement": 3, + "statements": 1, + "contrasted": 1, + "if3": 1, + "clause": 2, + "if4": 1, + "bodies": 1, + "PRCAAPR": 1, + "WASH": 1, + "ISC@ALTOONA": 1, + "PA/RGY": 1, + "ACCOUNT": 1, + "PROFILE": 1, + "CONT": 1, + "/9/94": 1, + "AM": 1, + "Accounts": 1, + "Receivable": 1, + "**198": 1, + "Mar": 1, + "Per": 1, + "VHA": 1, + "Directive": 1, + "modified.": 1, + "PRCATY": 2, + "DEBT": 10, + "PRCADB": 5, + "PRCA": 14, + "COUNT": 2, + "OUT": 2, + "SEL": 1, + "BILL": 11, + "BAT": 8, + "TRAN": 5, + "DXS": 1, + "DTOUT": 2, + "DIROUT": 1, + "DIRUT": 1, + "DUOUT": 1, + "ASK": 3, + "DPTNOFZY": 2, + "DPTNOFZK": 2, + "DTIME": 1, + "UPPER": 1, + "VALM1": 1, + "RCD": 1, + "DISV": 2, + "NAM": 1, + "RCFN01": 1, + "COMP": 2, + "EN1": 1, + "PRCAATR": 1, + "Y_": 3, + "PRCADB_": 1, + "HDR": 1, + "PRCAAPR1": 3, + "HDR2": 1, + "DIS": 1, + "STAT1": 2, + "_PRCATY_": 1, + "COMP1": 2, + "RCY": 5, + "COMP2": 2, + "_STAT_": 1, + "_STAT": 1, + "payments": 1, + "_TRAN": 1, + "Implementation": 1, + "works": 1, + "please": 1, + "don": 1, + "joke.": 1, + "Serves": 1, + "reverse": 1, + "engineering": 1, + "obtaining": 1, + "integer": 1, + "addition": 1, + "modulo": 1, + "division.": 1, + "//en.wikipedia.org/wiki/MD5": 1, + "#64": 1, + "msg_": 1, + "_m_": 1, + "n64": 2, + "read": 2, + ".p": 1, + "*i": 3, + "#16": 3, + "xor": 4, + "#4294967296": 6, + "n32h": 5, + "bit": 5, + "#2": 1, + "*2147483648": 2, + "a#2": 1, + "b#2": 1, + ".a": 1, + ".b": 1, + "rol": 1, + "a*": 1, + "**n": 1, + "c#4294967296": 1, + "*n": 1, + "n#256": 1, + "n#16": 2, + "student": 14, + "zwrite": 1 }, "MTML": { "<$mt:Var>": 15, @@ -39294,48 +39323,36 @@ "bazCompo": 1 }, "Mathematica": { - "Get": 1, + "Do": 1, "[": 307, + "If": 1, + "Length": 1, + "Divisors": 1, + "Binomial": 2, + "i": 3, + "+": 2, "]": 286, - "Notebook": 2, + "Print": 1, + ";": 42, + "Break": 1, "{": 227, + "}": 222, + "Paclet": 1, + "Name": 1, + "-": 134, + "Version": 1, + "MathematicaVersion": 1, + "Description": 1, + "Creator": 1, + "Extensions": 1, + "Language": 1, + "MainPage": 1, + "Notebook": 2, "Cell": 28, "CellGroupData": 8, - "BoxData": 19, - "RowBox": 34, - "}": 222, "CellChangeTimes": 13, - "-": 134, "*": 19, - "SuperscriptBox": 1, - "MultilineFunction": 1, - "None": 8, - "Open": 7, - "NumberMarks": 3, - "False": 19, - "GraphicsBox": 2, - "Hue": 5, - "LineBox": 5, - "CompressedData": 9, - "AspectRatio": 1, - "NCache": 1, - "GoldenRatio": 1, - "(": 2, - ")": 1, - "Axes": 1, - "True": 7, - "AxesLabel": 1, - "AxesOrigin": 1, - "Method": 2, - "PlotRange": 1, - "PlotRangeClipping": 1, - "PlotRangePadding": 1, - "Scaled": 10, - "WindowSize": 1, - "WindowMargins": 1, - "Automatic": 9, - "FrontEndVersion": 1, - "StyleDefinitions": 1, + "BoxData": 19, "NamespaceBox": 1, "DynamicModuleBox": 1, "Typeset": 7, @@ -39345,9 +39362,13 @@ "Asynchronous": 1, "All": 1, "TimeConstraint": 1, + "Automatic": 9, + "Method": 2, "elements": 1, "pod1": 1, "XMLElement": 13, + "False": 19, + "True": 7, "FormBox": 4, "TagBox": 9, "GridBox": 2, @@ -39361,6 +39382,7 @@ "LineSpacing": 2, "GridBoxBackground": 1, "GrayLevel": 17, + "None": 8, "GridBoxItemSize": 2, "ColumnsEqual": 2, "RowsEqual": 2, @@ -39379,6 +39401,7 @@ "TraditionalOrder": 1, "&": 2, "pod2": 1, + "RowBox": 34, "LinebreakAdjustments": 2, "FontFamily": 1, "UnitFontFamily": 1, @@ -39390,13 +39413,17 @@ "ZeroWidthTimes": 1, "pod3": 1, "TemplateBox": 1, + "GraphicsBox": 2, "GraphicsComplexBox": 1, + "CompressedData": 9, "EdgeForm": 2, "Directive": 5, "Opacity": 2, + "Hue": 5, "GraphicsGroupBox": 2, "PolygonBox": 3, "RGBColor": 3, + "LineBox": 5, "Dashing": 1, "Small": 1, "GridLines": 1, @@ -39415,22 +39442,14 @@ "Epilog": 1, "CapForm": 1, "Offset": 8, + "Scaled": 10, "DynamicBox": 1, "ToBoxes": 1, "DynamicModule": 1, "pt": 1, + "(": 2, "NearestFunction": 1, - "Paclet": 1, - "Name": 1, - "Version": 1, - "MathematicaVersion": 1, - "Description": 1, - "Creator": 1, - "Extensions": 1, - "Language": 1, - "MainPage": 1, "BeginPackage": 1, - ";": 42, "PossiblyTrueQ": 3, "usage": 22, "PossiblyFalseQ": 2, @@ -39488,164 +39507,51 @@ "Symbol": 2, "NumericQ": 1, "EndPackage": 1, - "Do": 1, - "If": 1, - "Length": 1, - "Divisors": 1, - "Binomial": 2, - "i": 3, - "+": 2, - "Print": 1, - "Break": 1 + "SuperscriptBox": 1, + "MultilineFunction": 1, + "Open": 7, + "NumberMarks": 3, + "AspectRatio": 1, + "NCache": 1, + "GoldenRatio": 1, + ")": 1, + "Axes": 1, + "AxesLabel": 1, + "AxesOrigin": 1, + "PlotRange": 1, + "PlotRangeClipping": 1, + "PlotRangePadding": 1, + "WindowSize": 1, + "WindowMargins": 1, + "FrontEndVersion": 1, + "StyleDefinitions": 1, + "Get": 1 }, "Matlab": { "function": 34, - "[": 311, - "dx": 6, - "y": 25, - "]": 311, - "adapting_structural_model": 2, - "(": 1379, - "t": 32, - "x": 46, - "u": 3, - "varargin": 25, - ")": 1380, - "%": 554, - "size": 11, - "aux": 3, - "{": 157, - "end": 150, - "}": 157, - ";": 909, - "m": 44, - "zeros": 61, - "b": 12, - "for": 78, - "i": 338, - "if": 52, - "+": 169, - "elseif": 14, - "else": 23, - "display": 10, - "aux.pars": 3, - ".*": 2, - "Yp": 2, - "human": 1, - "aux.timeDelay": 2, - "c1": 5, - "aux.m": 3, - "*": 46, - "aux.b": 3, - "e": 14, - "-": 673, - "c2": 5, - "Yc": 5, - "parallel": 2, - "plant": 4, - "aux.plantFirst": 2, - "aux.plantSecond": 2, - "Ys": 1, - "feedback": 1, - "A": 11, - "B": 9, - "C": 13, - "D": 7, - "tf2ss": 1, - "Ys.num": 1, - "Ys.den": 1, - "average": 1, - "n": 102, - "|": 2, - "&": 4, - "error": 16, - "sum": 2, - "/length": 1, - "bicycle": 7, - "bicycle_state_space": 1, - "speed": 20, - "S": 5, - "dbstack": 1, - "CURRENT_DIRECTORY": 2, - "fileparts": 1, - ".file": 1, - "par": 7, - "par_text_to_struct": 4, - "filesep": 14, - "...": 162, - "whipple_pull_force_abcd": 2, - "states": 7, - "outputs": 10, - "inputs": 14, - "defaultSettings.states": 1, - "defaultSettings.inputs": 1, - "defaultSettings.outputs": 1, - "userSettings": 3, - "varargin_to_structure": 2, - "struct": 1, - "settings": 3, - "overwrite_settings": 2, - "defaultSettings": 3, - "minStates": 2, - "ismember": 15, - "settings.states": 3, - "<": 9, - "keepStates": 2, - "find": 24, - "removeStates": 1, - "row": 6, - "abs": 12, - "col": 5, - "s": 13, - "sprintf": 11, - "removeInputs": 2, - "settings.inputs": 1, - "keepOutputs": 2, - "settings.outputs": 1, - "It": 1, - "is": 7, - "not": 3, - "possible": 1, - "to": 9, - "keep": 1, - "output": 7, - "because": 1, - "it": 1, - "depends": 1, - "on": 13, - "input": 14, - "StateName": 1, - "OutputName": 1, - "InputName": 1, - "x_0": 45, - "linspace": 14, - "vx_0": 37, - "z": 3, - "j": 242, - "*vx_0": 1, - "figure": 17, - "pcolor": 2, - "shading": 3, - "flat": 3, - "name": 4, - "order": 11, - "convert_variable": 1, - "variable": 10, - "coordinates": 6, - "speeds": 21, - "get_variables": 2, - "columns": 4, "create_ieee_paper_plots": 2, + "(": 1379, "data": 27, "rollData": 8, + ")": 1380, + "%": 554, "global": 6, "goldenRatio": 12, + "+": 169, "sqrt": 14, "/": 59, + ";": 909, + "if": 52, "exist": 1, "mkdir": 1, + "end": 150, "linestyles": 15, + "{": 157, + "...": 162, + "}": 157, "colors": 13, + "[": 311, + "]": 311, "loop_shape_example": 3, "data.Benchmark.Medium": 2, "plot_io_roll": 3, @@ -39655,15 +39561,21 @@ "var": 3, "io": 7, "typ": 3, + "for": 78, + "i": 338, "length": 49, + "j": 242, "plot_io": 1, "phase_portraits": 2, "eigenvalues": 2, "bikeData": 2, + "input": 14, + "figure": 17, "figWidth": 24, "figHeight": 19, "set": 43, "gcf": 17, + "-": 673, "freq": 12, "hold": 23, "all": 15, @@ -39683,6 +39595,9 @@ "neuroNum": 2, "neuroDen": 2, "whichLines": 3, + "elseif": 14, + "else": 23, + "error": 16, "phiDotNum": 2, "closedLoops.PhiDot.num": 1, "phiDotDen": 2, @@ -39717,6 +39632,7 @@ "dArrow": 2, "filename": 21, "pathToFile": 11, + "filesep": 14, "print": 6, "fix_ps_linestyle": 6, "openLoops": 1, @@ -39733,10 +39649,12 @@ "line": 15, "wc": 14, "wShift": 5, + "on": 13, "num2str": 10, "bikeData.handlingMetric.num": 1, "bikeData.handlingMetric.den": 1, "w": 6, + "linspace": 14, "mag": 4, "phase": 2, "bode": 5, @@ -39796,6 +39714,7 @@ "gca": 8, "speedNames": 12, "metricLines": 2, + "zeros": 61, "bikes": 24, "data.": 6, ".": 13, @@ -39813,16 +39732,21 @@ "Path": 1, "Southeast": 1, "Distance": 1, + "m": 44, "Lateral": 1, "Deviation": 1, "paths.eps": 1, "d": 12, "like": 1, + "to": 9, "plot.": 1, "names": 6, "prettyNames": 3, "units": 3, "index": 6, + "find": 24, + "ismember": 15, + "variable": 10, "fieldnames": 5, "data.Browser": 1, "maxValue": 4, @@ -39830,11 +39754,13 @@ "history": 7, "oneSpeed.": 3, "round": 1, + "*": 46, "pad": 10, "yShift": 16, "xShift": 3, "time": 21, "oneSpeed.time": 2, + "speed": 20, "oneSpeed.speed": 2, "distance": 6, "xAxis": 12, @@ -39888,10 +39814,14 @@ "ylabels": 2, "legends": 3, "floatSpec": 3, + "display": 10, + "sprintf": 11, "twentyPercent": 1, "generate_data": 5, "nominalData": 1, + "x": 46, "nominalData.": 2, + "y": 25, "bikeData.": 2, "twentyPercent.": 2, "equal": 2, @@ -39899,197 +39829,120 @@ "bikeData.modelPar.": 1, "leg2": 2, "twentyPercent.modelPar.": 1, + "speeds": 21, "eVals": 5, "pathToParFile": 2, + "par": 7, + "par_text_to_struct": 4, "str": 2, + "A": 11, + "B": 9, + "C": 13, + "D": 7, + "whipple_pull_force_abcd": 2, "eigenValues": 1, "eig": 6, "real": 3, "zeroIndices": 3, + "abs": 12, + "<": 9, "ones": 6, + "size": 11, "maxEvals": 4, "maxLine": 7, "minLine": 4, "min": 1, "speedInd": 12, - "cross_validation": 1, - "hyper_parameter": 3, - "num_data": 2, - "K": 4, - "indices": 2, - "crossvalind": 1, - "errors": 4, - "test_idx": 4, - "train_idx": 3, - "x_train": 2, - "y_train": 2, - "train": 1, - "x_test": 3, - "y_test": 3, - "calc_cost": 1, - "calc_error": 2, - "mean": 2, + "x_T": 25, + "y_T": 17, + "vx_T": 22, + "e_T": 7, + "filter": 14, + "delta_e": 3, + "Integrate_FTLE_Gawlick_ell": 1, + "x_0": 45, + "y_0": 29, + "vx_0": 37, + "e_0": 7, + "T": 22, + "mu": 73, + "ecc": 2, + "nu": 2, + "options": 14, + "Integrate": 6, + "nx": 32, + "ny": 29, + "nvx": 32, + "ne": 29, + "vy_0": 22, + "vy_T": 12, + "Look": 2, + "phisically": 2, + "meaningful": 6, + "points": 11, + "meaningless": 2, + "point": 14, + "useful": 9, + "only": 7, + "h": 19, + "waitbar": 6, + "i/nx": 2, + "parfor": 5, + "l": 64, + "Omega": 7, + "ecc*cos": 1, + "*e_0": 3, + "isreal": 8, + "ci": 9, + "t": 32, + "Y": 19, + "ode45": 6, + "@f_ell": 1, + "Consider": 1, + "also": 1, + "negative": 1, + "Compute": 3, + "the": 14, + "goodness": 1, + "of": 35, + "integration": 9, + "close": 4, + "dx": 6, + "adapting_structural_model": 2, + "u": 3, + "varargin": 25, + "aux": 3, + "b": 12, + "aux.pars": 3, + ".*": 2, + "Yp": 2, + "human": 1, + "aux.timeDelay": 2, + "c1": 5, + "aux.m": 3, + "aux.b": 3, + "e": 14, + "c2": 5, + "Yc": 5, + "parallel": 2, + "plant": 4, + "aux.plantFirst": 2, + "aux.plantSecond": 2, + "Ys": 1, + "feedback": 1, + "tf2ss": 1, + "Ys.num": 1, + "Ys.den": 1, "value": 2, "isterminal": 2, "direction": 2, - "mu": 73, "FIXME": 1, "from": 2, - "the": 14, "largest": 1, "primary": 1, "clear": 13, - "tic": 7, - "T": 22, - "x_min": 3, - "x_max": 3, - "y_min": 3, - "y_max": 3, - "how": 1, - "many": 1, - "points": 11, - "per": 5, - "one": 3, - "measure": 1, - "unit": 1, - "both": 1, - "in": 8, - "and": 7, - "ds": 1, - "x_res": 7, - "*n": 2, - "y_res": 7, - "grid_x": 3, - "grid_y": 3, - "advected_x": 12, - "advected_y": 12, - "parfor": 5, - "X": 6, - "ode45": 6, - "@dg": 1, - "store": 4, - "advected": 2, - "positions": 2, - "as": 4, - "they": 2, - "would": 2, - "appear": 2, - "coords": 2, - "Compute": 3, - "FTLE": 14, - "sigma": 6, - "compute": 2, - "Jacobian": 3, - "*ds": 4, - "eigenvalue": 2, - "of": 35, - "*phi": 2, - "log": 2, - "lambda_max": 2, - "/abs": 3, - "*T": 3, - "toc": 5, - "field": 2, - "contourf": 2, - "location": 1, - "EastOutside": 1, - "f_x_t": 2, - "inline": 1, - "grid_min": 3, - "grid_max": 3, - "grid_width": 1, - "grid_spacing": 5, - "grid_width/": 1, - "*grid_width/": 4, - "colorbar": 1, - "load_data": 4, - "t0": 6, - "t1": 6, - "t2": 6, - "t3": 1, - "dataPlantOne": 3, - "data.Ts": 6, - "dataAdapting": 3, - "dataPlantTwo": 3, - "guessPlantOne": 4, - "resultPlantOne": 1, - "find_structural_gains": 2, - "yh": 2, - "fit": 6, - "x0": 4, - "compare": 3, - "resultPlantOne.fit": 1, - "guessPlantTwo": 3, - "resultPlantTwo": 1, - "resultPlantTwo.fit": 1, - "kP1": 4, - "resultPlantOne.fit.par": 1, - "kP2": 3, - "resultPlantTwo.fit.par": 1, - "gainSlopeOffset": 6, - "eye": 9, - "this": 2, - "only": 7, - "uses": 1, - "tau": 1, - "through": 1, - "wfs": 1, - "true": 2, - "plantOneSlopeOffset": 3, - "plantTwoSlopeOffset": 3, - "mod": 3, - "idnlgrey": 1, - "pem": 1, - "guess.plantOne": 3, - "guess.plantTwo": 2, - "plantNum.plantOne": 2, - "plantNum.plantTwo": 2, - "sections": 13, - "secData.": 1, - "||": 3, - "guess.": 2, - "result.": 2, - ".fit.par": 1, - "currentGuess": 2, - "warning": 1, - "randomGuess": 1, - "The": 6, - "self": 2, - "validation": 2, - "VAF": 2, - "f.": 2, - "data/": 1, - "results.mat": 1, - "guess": 1, - "plantNum": 1, - "result": 5, - "plots/": 1, - ".png": 1, - "task": 1, - "closed": 1, - "loop": 1, - "system": 2, - "u.": 1, - "gain": 1, - "guesses": 1, - "k1": 4, - "k2": 3, - "k3": 3, - "k4": 4, - "identified": 1, - "gains": 12, - ".vaf": 1, - "Elements": 1, - "grid": 1, - "definition": 2, - "Dimensionless": 1, - "integrating": 1, - "Choice": 2, - "mass": 2, - "parameter": 2, - "Computation": 9, - "Lagrangian": 3, - "Points": 2, + "Earth": 2, + "Moon": 2, "xl1": 13, "yl1": 12, "xl2": 9, @@ -40101,258 +39954,68 @@ "xl5": 8, "yl5": 8, "Lagr": 6, - "initial": 5, - "total": 6, - "energy": 8, - "E_L1": 4, - "Omega": 7, - "C_L1": 3, - "*E_L1": 1, - "Szebehely": 1, - "E": 8, - "Offset": 2, - "Initial": 3, - "conditions": 3, - "range": 2, - "x_0_min": 8, - "x_0_max": 8, - "vx_0_min": 8, - "vx_0_max": 8, - "y_0": 29, - "ndgrid": 2, - "vy_0": 22, - "*E": 2, - "*Omega": 5, - "vx_0.": 2, - "E_cin": 4, - "x_T": 25, - "y_T": 17, - "vx_T": 22, - "vy_T": 12, - "filtro": 15, - "E_T": 11, - "delta_E": 7, - "a": 17, - "matrix": 3, - "numbers": 2, - "integration": 9, - "steps": 2, - "each": 2, - "np": 8, - "number": 2, - "integrated": 5, - "fprintf": 18, - "Energy": 4, - "tolerance": 2, - "setting": 4, - "energy_tol": 6, - "Setting": 1, - "options": 14, - "integrator": 2, - "RelTol": 2, - "AbsTol": 2, - "From": 1, - "Short": 1, - "odeset": 4, - "Parallel": 2, - "equations": 2, - "motion": 2, - "h": 19, - "waitbar": 6, - "r1": 3, - "r2": 3, - "g": 5, - "i/n": 1, - "y_0.": 2, - "./": 1, - "mu./": 1, - "isreal": 8, - "Check": 6, - "velocity": 2, - "positive": 2, - "Kinetic": 2, - "Y": 19, - "@f_reg": 1, - "Saving": 4, - "solutions": 2, - "final": 2, - "difference": 2, - "with": 2, - "conservation": 2, - "position": 2, - "point": 14, - "interesting": 4, - "non": 2, - "sense": 2, - "bad": 4, - "close": 4, - "t_integrazione": 3, - "filtro_1": 12, - "dphi": 12, - "ftle": 10, - "ftle_norm": 1, - "ds_x": 1, - "ds_vx": 1, - "La": 1, - "direzione": 1, - "dello": 1, - "spostamento": 1, - "la": 2, - "decide": 1, - "il": 1, - "denominatore": 1, - "TODO": 1, - "spiegarsi": 1, - "teoricamente": 1, - "come": 1, - "mai": 1, - "matrice": 1, - "pu": 1, - "essere": 1, - "ridotta": 1, - "x2": 1, - "*ds_x": 2, - "*ds_vx": 2, - "Manual": 2, - "visualize": 2, - "*log": 2, - "dphi*dphi": 1, - "tempo": 4, - "integrare": 2, - ".2f": 5, - "calcolare": 2, - "var_": 2, - "_": 2, - "var_xvx_": 2, - "ode00": 2, - "_n": 2, - "save": 2, - "nome": 2, - "Transforming": 1, - "into": 1, - "Hamiltonian": 1, - "variables": 2, - "px_0": 2, - "py_0": 2, - "px_T": 4, - "py_T": 4, - "inf": 1, - "@cr3bp_jac": 1, - "@fH": 1, - "EnergyH": 1, - "t_integr": 1, - "Back": 1, - "Inf": 1, - "_e": 1, - "_H": 1, - "Range": 1, - "E_0": 4, - "C_L1/2": 1, - "Y_0": 4, - "nx": 32, - "nvx": 32, - "dvx": 3, - "ny": 29, - "dy": 5, - "/2": 3, - "ne": 29, - "de": 4, - "e_0": 7, - "Definition": 1, - "arrays": 1, - "In": 1, - "approach": 1, - "useful": 9, - "pints": 1, - "are": 1, - "stored": 1, - "filter": 14, - "l": 64, - "v_y": 3, - "*e_0": 3, - "vx": 2, - "vy": 2, - "Selection": 1, - "Data": 2, - "transfer": 1, - "GPU": 3, - "x_gpu": 3, - "gpuArray": 4, - "y_gpu": 3, - "vx_gpu": 3, - "vy_gpu": 3, - "Integration": 2, - "N": 9, - "x_f": 3, - "y_f": 3, - "vx_f": 3, - "vy_f": 3, - "arrayfun": 2, - "@RKF45_FILE_gpu": 1, - "back": 1, - "CPU": 1, - "memory": 1, - "cleaning": 1, - "gather": 4, - "Construction": 1, - "computation": 2, - "X_T": 4, - "Y_T": 4, - "VX_T": 4, - "VY_T": 3, - "filter_ftle": 11, - "Compute_FILE_gpu": 1, - "Plot": 1, - "results": 1, - "squeeze": 1, - "clc": 1, - "load_bikes": 2, - "e_T": 7, - "Integrate_FILE": 1, - "Integrate": 6, - "Look": 2, - "phisically": 2, - "meaningful": 6, - "meaningless": 2, - "i/nx": 2, "*Potential": 5, - "ci": 9, - "te": 2, - "ye": 9, - "ie": 2, + "C_star": 1, + "*Omega": 5, + "E": 8, + "C/2": 1, + "odeset": 4, + "orbit": 1, + "t0": 6, + "Y0": 6, + "ode113": 2, "@f": 6, - "Potential": 1, - "delta_e": 3, - "Integrate_FTLE_Gawlick_ell": 1, - "ecc": 2, - "nu": 2, - "ecc*cos": 1, - "@f_ell": 1, - "Consider": 1, - "also": 1, - "negative": 1, - "goodness": 1, - "roots": 3, - "*mu": 6, - "c3": 3, - "lane_change": 1, - "start": 4, - "width": 3, - "slope": 3, - "pathLength": 3, - "single": 1, - "double": 1, - "Double": 1, - "lane": 4, - "change": 1, - "needs": 1, - "lane.": 1, - "laneLength": 4, - "startOfSlope": 3, - "endOfSlope": 1, - "<=>": 1, - "1": 1, - "downSlope": 3, + "x0": 4, + "y0": 2, + "vx0": 2, + "vy0": 2, + "l0": 1, + "delta_E0": 1, + "Energy": 4, + "Hill": 1, + "Edgecolor": 1, + "none": 1, + ".2f": 5, + "ok": 2, + "sg": 1, + "sr": 1, + "tspan": 7, + "arg1": 1, + "arg": 2, + "X": 6, + "arrayfun": 2, + "RK4_par": 1, + "RK4": 3, + "fun": 5, + "th": 1, + "order": 11, + "Runge": 1, + "Kutta": 1, + "integrator": 2, + "dim": 2, + "while": 1, + "k1": 4, + "k2": 3, + "h/2": 2, + "k1*h/2": 1, + "k3": 3, + "k2*h/2": 1, + "k4": 4, + "h*k3": 1, + "h/6*": 1, + "*k2": 1, + "*k3": 1, + "settings": 3, + "overwrite_settings": 2, + "defaultSettings": 3, + "overrideSettings": 3, + "overrideNames": 2, + "defaultNames": 2, + "notGiven": 5, + "setxor": 1, + "settings.": 1, + "defaultSettings.": 1, + "load_bikes": 2, "gains.Benchmark.Slow": 1, "place": 2, "holder": 2, @@ -40377,33 +40040,13 @@ "gains.Yellow.Fast": 1, "gains.Yellowrev.Fast": 1, "gains.": 1, - "parser": 1, - "inputParser": 1, - "parser.addRequired": 1, - "parser.addParamValue": 3, - "parser.parse": 1, - "args": 1, - "parser.Results": 1, - "raw": 1, - "load": 1, - "args.directory": 1, - "iddata": 1, - "raw.theta": 1, - "raw.theta_c": 1, - "args.sampleTime": 1, - "args.detrend": 1, - "detrend": 1, - "filtfcn": 2, - "statefcn": 2, - "makeFilter": 1, - "v": 12, - "@iirFilter": 1, - "@getState": 1, - "yn": 2, - "iirFilter": 1, - "xn": 4, - "vOut": 2, - "getState": 1, + "clc": 1, + "average": 1, + "n": 102, + "|": 2, + "&": 4, + "sum": 2, + "/length": 1, "classdef": 1, "matlab_class": 2, "properties": 1, @@ -40412,6 +40055,7 @@ "methods": 1, "obj": 2, "r": 2, + "g": 5, "obj.R": 2, "obj.G": 2, "obj.B": 2, @@ -40425,67 +40069,10 @@ "yellow": 1, "black": 1, "white": 1, - "ret": 3, - "matlab_function": 5, - "Call": 2, - "which": 2, - "resides": 2, - "same": 2, - "directory": 2, - "value1": 4, - "semicolon": 2, - "mandatory": 2, - "suppresses": 2, - "command": 2, - "line.": 2, - "value2": 4, - "d_mean": 3, - "d_std": 3, - "normalize": 1, - "repmat": 2, - "std": 1, - "d./": 1, - "overrideSettings": 3, - "overrideNames": 2, - "defaultNames": 2, - "notGiven": 5, - "setxor": 1, - "settings.": 1, - "defaultSettings.": 1, - "fid": 7, - "fopen": 2, - "textscan": 1, - "fclose": 2, - "strtrim": 2, - "vals": 2, - "regexp": 1, - "par.": 1, - "str2num": 1, - "choose_plant": 4, - "p": 7, - "Conditions": 1, - "@cross_y": 1, - "ode113": 2, - "RK4": 3, - "fun": 5, - "tspan": 7, - "th": 1, - "Runge": 1, - "Kutta": 1, - "dim": 2, - "while": 1, - "h/2": 2, - "k1*h/2": 1, - "k2*h/2": 1, - "h*k3": 1, - "h/6*": 1, - "*k2": 1, - "*k3": 1, - "arg1": 1, - "arg": 2, - "RK4_par": 1, + "gains": 12, "wnm": 11, "zetanm": 5, + "bicycle": 7, "ss": 3, "data.modelPar.A": 1, "data.modelPar.B": 1, @@ -40494,6 +40081,8 @@ "bicycle.StateName": 2, "bicycle.OutputName": 4, "bicycle.InputName": 2, + "inputs": 14, + "outputs": 10, "analytic": 3, "system_state_space": 2, "numeric": 2, @@ -40521,28 +40110,9 @@ "numeric.C": 1, "numeric.D": 1, "whipple_pull_force_ABCD": 1, + "eye": 9, "bottomRow": 1, "prod": 3, - "Earth": 2, - "Moon": 2, - "C_star": 1, - "C/2": 1, - "orbit": 1, - "Y0": 6, - "y0": 2, - "vx0": 2, - "vy0": 2, - "l0": 1, - "delta_E0": 1, - "Hill": 1, - "Edgecolor": 1, - "none": 1, - "ok": 2, - "sg": 1, - "sr": 1, - "arguments": 7, - "ischar": 1, - "options.": 1, "write_gains": 1, "contents": 1, "importdata": 1, @@ -40553,13 +40123,468 @@ "allGains": 4, "allSpeeds": 4, "sort": 1, - "contents.colheaders": 1 + "fid": 7, + "fopen": 2, + "contents.colheaders": 1, + "fprintf": 18, + "fclose": 2, + "load_data": 4, + "t1": 6, + "t2": 6, + "t3": 1, + "dataPlantOne": 3, + "data.Ts": 6, + "dataAdapting": 3, + "dataPlantTwo": 3, + "guessPlantOne": 4, + "resultPlantOne": 1, + "find_structural_gains": 2, + "yh": 2, + "fit": 6, + "compare": 3, + "resultPlantOne.fit": 1, + "guessPlantTwo": 3, + "resultPlantTwo": 1, + "resultPlantTwo.fit": 1, + "kP1": 4, + "resultPlantOne.fit.par": 1, + "kP2": 3, + "resultPlantTwo.fit.par": 1, + "gainSlopeOffset": 6, + "this": 2, + "uses": 1, + "tau": 1, + "through": 1, + "wfs": 1, + "true": 2, + "s": 13, + "plantOneSlopeOffset": 3, + "plantTwoSlopeOffset": 3, + "mod": 3, + "idnlgrey": 1, + "pem": 1, + "guess.plantOne": 3, + "guess.plantTwo": 2, + "plantNum.plantOne": 2, + "plantNum.plantTwo": 2, + "sections": 13, + "secData.": 1, + "||": 3, + "guess.": 2, + "result.": 2, + ".fit.par": 1, + "currentGuess": 2, + "warning": 1, + "randomGuess": 1, + "The": 6, + "self": 2, + "validation": 2, + "VAF": 2, + "is": 7, + "f.": 2, + "data/": 1, + "results.mat": 1, + "guess": 1, + "plantNum": 1, + "result": 5, + "plots/": 1, + ".png": 1, + "task": 1, + "closed": 1, + "loop": 1, + "system": 2, + "u.": 1, + "gain": 1, + "guesses": 1, + "identified": 1, + ".vaf": 1, + "name": 4, + "convert_variable": 1, + "output": 7, + "coordinates": 6, + "get_variables": 2, + "columns": 4, + "tic": 7, + "Choice": 2, + "mass": 2, + "parameter": 2, + "Computation": 9, + "Lagrangian": 3, + "Points": 2, + "initial": 5, + "total": 6, + "energy": 8, + "E_L1": 4, + "Offset": 2, + "as": 4, + "in": 8, + "Initial": 3, + "conditions": 3, + "range": 2, + "x_0_min": 8, + "x_0_max": 8, + "vx_0_min": 8, + "vx_0_max": 8, + "ndgrid": 2, + "*E": 2, + "vx_0.": 2, + "E_cin": 4, + "Transforming": 1, + "into": 1, + "Hamiltonian": 1, + "variables": 2, + "px_0": 2, + "py_0": 2, + "px_T": 4, + "py_T": 4, + "filtro": 15, + "E_T": 11, + "a": 17, + "matrix": 3, + "numbers": 2, + "steps": 2, + "each": 2, + "np": 8, + "number": 2, + "integrated": 5, + "tolerance": 2, + "setting": 4, + "energy_tol": 6, + "inf": 1, + "Jacobian": 3, + "@cr3bp_jac": 1, + "Parallel": 2, + "equations": 2, + "motion": 2, + "Check": 6, + "velocity": 2, + "and": 7, + "positive": 2, + "Kinetic": 2, + "@fH": 1, + "Saving": 4, + "solutions": 2, + "final": 2, + "difference": 2, + "with": 2, + "one": 3, + "EnergyH": 1, + "delta_E": 7, + "conservation": 2, + "position": 2, + "interesting": 4, + "non": 2, + "sense": 2, + "bad": 4, + "t_integrazione": 3, + "toc": 5, + "t_integr": 1, + "Back": 1, + "FTLE": 14, + "dphi": 12, + "ftle": 10, + "Manual": 2, + "visualize": 2, + "Inf": 1, + "*T": 3, + "*log": 2, + "tempo": 4, + "per": 5, + "integrare": 2, + "calcolare": 2, + "var_": 2, + "_": 2, + "var_xvx_": 2, + "ode00": 2, + "_n": 2, + "_e": 1, + "_H": 1, + "save": 2, + "nome": 2, + "lane_change": 1, + "start": 4, + "width": 3, + "slope": 3, + "pathLength": 3, + "single": 1, + "double": 1, + "Double": 1, + "lane": 4, + "change": 1, + "needs": 1, + "lane.": 1, + "laneLength": 4, + "startOfSlope": 3, + "endOfSlope": 1, + "<=>": 1, + "1": 1, + "downSlope": 3, + "varargin_to_structure": 2, + "arguments": 7, + "ischar": 1, + "options.": 1, + "/2": 3, + "roots": 3, + "*mu": 6, + "c3": 3, + "filtfcn": 2, + "statefcn": 2, + "makeFilter": 1, + "v": 12, + "@iirFilter": 1, + "@getState": 1, + "yn": 2, + "iirFilter": 1, + "xn": 4, + "vOut": 2, + "getState": 1, + "Call": 2, + "matlab_function": 5, + "which": 2, + "resides": 2, + "same": 2, + "directory": 2, + "value1": 4, + "semicolon": 2, + "not": 3, + "mandatory": 2, + "suppresses": 2, + "command": 2, + "line.": 2, + "value2": 4, + "choose_plant": 4, + "p": 7, + "ret": 3, + "textscan": 1, + "strtrim": 2, + "vals": 2, + "regexp": 1, + "par.": 1, + "str2num": 1, + "f_x_t": 2, + "inline": 1, + "grid_min": 3, + "grid_max": 3, + "grid_width": 1, + "grid_spacing": 5, + "grid_width/": 1, + "advected_x": 12, + "advected_y": 12, + "store": 4, + "advected": 2, + "positions": 2, + "they": 2, + "would": 2, + "appear": 2, + "coords": 2, + "sigma": 6, + "compute": 2, + "*grid_width/": 4, + "eigenvalue": 2, + "*phi": 2, + "log": 2, + "lambda_max": 2, + "/abs": 3, + "field": 2, + "contourf": 2, + "colorbar": 1, + "Elements": 1, + "grid": 1, + "definition": 2, + "Dimensionless": 1, + "integrating": 1, + "C_L1": 3, + "*E_L1": 1, + "Szebehely": 1, + "Setting": 1, + "RelTol": 2, + "AbsTol": 2, + "From": 1, + "Short": 1, + "S": 5, + "r1": 3, + "r2": 3, + "i/n": 1, + "y_0.": 2, + "./": 1, + "mu./": 1, + "@f_reg": 1, + "filtro_1": 12, + "ftle_norm": 1, + "ds_x": 1, + "ds_vx": 1, + "La": 1, + "direzione": 1, + "dello": 1, + "spostamento": 1, + "la": 2, + "decide": 1, + "il": 1, + "denominatore": 1, + "TODO": 1, + "spiegarsi": 1, + "teoricamente": 1, + "come": 1, + "mai": 1, + "matrice": 1, + "pu": 1, + "essere": 1, + "ridotta": 1, + "x2": 1, + "*ds_x": 2, + "*ds_vx": 2, + "dphi*dphi": 1, + "Integrate_FILE": 1, + "N": 9, + "te": 2, + "ye": 9, + "ie": 2, + "Potential": 1, + "parser": 1, + "inputParser": 1, + "parser.addRequired": 1, + "parser.addParamValue": 3, + "parser.parse": 1, + "args": 1, + "parser.Results": 1, + "raw": 1, + "load": 1, + "args.directory": 1, + "iddata": 1, + "raw.theta": 1, + "raw.theta_c": 1, + "args.sampleTime": 1, + "args.detrend": 1, + "detrend": 1, + "d_mean": 3, + "d_std": 3, + "normalize": 1, + "mean": 2, + "repmat": 2, + "std": 1, + "d./": 1, + "bicycle_state_space": 1, + "dbstack": 1, + "CURRENT_DIRECTORY": 2, + "fileparts": 1, + ".file": 1, + "states": 7, + "defaultSettings.states": 1, + "defaultSettings.inputs": 1, + "defaultSettings.outputs": 1, + "userSettings": 3, + "struct": 1, + "minStates": 2, + "settings.states": 3, + "keepStates": 2, + "removeStates": 1, + "row": 6, + "col": 5, + "removeInputs": 2, + "settings.inputs": 1, + "keepOutputs": 2, + "settings.outputs": 1, + "It": 1, + "possible": 1, + "keep": 1, + "because": 1, + "it": 1, + "depends": 1, + "StateName": 1, + "OutputName": 1, + "InputName": 1, + "z": 3, + "*vx_0": 1, + "pcolor": 2, + "shading": 3, + "flat": 3, + "cross_validation": 1, + "hyper_parameter": 3, + "num_data": 2, + "K": 4, + "indices": 2, + "crossvalind": 1, + "errors": 4, + "test_idx": 4, + "train_idx": 3, + "x_train": 2, + "y_train": 2, + "train": 1, + "x_test": 3, + "y_test": 3, + "calc_cost": 1, + "calc_error": 2, + "x_min": 3, + "x_max": 3, + "y_min": 3, + "y_max": 3, + "how": 1, + "many": 1, + "measure": 1, + "unit": 1, + "both": 1, + "ds": 1, + "x_res": 7, + "*n": 2, + "y_res": 7, + "grid_x": 3, + "grid_y": 3, + "@dg": 1, + "*ds": 4, + "location": 1, + "EastOutside": 1, + "Conditions": 1, + "Integration": 2, + "@cross_y": 1, + "Range": 1, + "E_0": 4, + "C_L1/2": 1, + "Y_0": 4, + "dvx": 3, + "dy": 5, + "de": 4, + "Definition": 1, + "arrays": 1, + "In": 1, + "approach": 1, + "pints": 1, + "are": 1, + "stored": 1, + "v_y": 3, + "vx": 2, + "vy": 2, + "Selection": 1, + "Data": 2, + "transfer": 1, + "GPU": 3, + "x_gpu": 3, + "gpuArray": 4, + "y_gpu": 3, + "vx_gpu": 3, + "vy_gpu": 3, + "x_f": 3, + "y_f": 3, + "vx_f": 3, + "vy_f": 3, + "@RKF45_FILE_gpu": 1, + "back": 1, + "CPU": 1, + "memory": 1, + "cleaning": 1, + "gather": 4, + "Construction": 1, + "computation": 2, + "X_T": 4, + "Y_T": 4, + "VX_T": 4, + "VY_T": 3, + "filter_ftle": 11, + "Compute_FILE_gpu": 1, + "Plot": 1, + "results": 1, + "squeeze": 1 }, "Max": { - "{": 126, - "}": 126, - "[": 163, - "]": 163, "max": 1, "v2": 1, ";": 39, @@ -40594,7 +40619,11 @@ "Hello": 1, "connect": 13, "fasten": 1, - "pop": 1 + "pop": 1, + "{": 126, + "}": 126, + "[": 163, + "]": 163 }, "MediaWiki": { "Overview": 1, @@ -40877,947 +40906,391 @@ "%": 416, "-": 6967, "module": 46, - "ll_backend.code_info.": 1, + "store.": 1, "interface.": 13, "import_module": 126, - "check_hlds.type_util.": 2, - "hlds.code_model.": 1, - "hlds.hlds_data.": 2, - "hlds.hlds_goal.": 2, - "hlds.hlds_llds.": 1, - "hlds.hlds_module.": 2, - "hlds.hlds_pred.": 2, - "hlds.instmap.": 2, - "libs.globals.": 2, - "ll_backend.continuation_info.": 1, - "ll_backend.global_data.": 1, - "ll_backend.layout.": 1, - "ll_backend.llds.": 1, - "ll_backend.trace_gen.": 1, - "mdbcomp.prim_data.": 3, - "mdbcomp.goal_path.": 2, - "parse_tree.prog_data.": 2, - "parse_tree.set_of_var.": 2, - "assoc_list.": 3, - "bool.": 4, - "counter.": 1, "io.": 8, - "list.": 4, - "map.": 3, - "maybe.": 3, - "set.": 4, - "set_tree234.": 1, - "term.": 3, - "implementation.": 12, - "backend_libs.builtin_ops.": 1, - "backend_libs.proc_label.": 1, - "hlds.arg_info.": 1, - "hlds.hlds_desc.": 1, - "hlds.hlds_rtti.": 2, - "libs.options.": 3, - "libs.trace_params.": 1, - "ll_backend.code_util.": 1, - "ll_backend.opt_debug.": 1, - "ll_backend.var_locn.": 1, - "parse_tree.builtin_lib_types.": 2, - "parse_tree.prog_type.": 2, - "parse_tree.mercury_to_mercury.": 1, - "cord.": 1, - "int.": 4, - "pair.": 3, - "require.": 6, - "stack.": 1, - "string.": 7, - "varset.": 2, - "type": 57, - "code_info.": 1, - "pred": 255, - "code_info_init": 2, + "typeclass": 1, + "store": 52, "(": 3351, - "bool": 406, - "in": 510, - "globals": 5, - "pred_id": 15, - "proc_id": 12, - "pred_info": 20, - "proc_info": 11, - "abs_follow_vars": 3, - "module_info": 26, - "static_cell_info": 4, - "const_struct_map": 3, - "resume_point_info": 11, - "out": 337, - "trace_slot_info": 3, - "maybe": 20, - "containing_goal_map": 4, + "T": 52, ")": 3351, - "list": 82, - "string": 115, - "int": 129, - "code_info": 208, - "is": 246, - "det.": 184, - "get_globals": 5, - "get_exprn_opts": 2, - "exprn_opts": 3, - "get_module_info": 7, - "get_pred_id": 6, - "get_proc_id": 5, - "get_pred_info": 2, - "get_proc_info": 4, - "get_varset": 3, - "prog_varset": 14, - "func": 24, - "get_var_types": 3, - "vartypes.": 1, - "get_maybe_trace_info": 2, - "trace_info": 3, - "get_emit_trail_ops": 2, - "add_trail_ops": 5, - "get_emit_region_ops": 2, - "add_region_ops": 6, - "get_forward_live_vars": 2, - "set_of_progvar": 10, - "set_forward_live_vars": 2, - "get_instmap": 4, - "instmap": 3, - "set_instmap": 3, - "get_par_conj_depth": 2, - "set_par_conj_depth": 2, - "get_label_counter": 3, - "counter": 6, - "get_succip_used": 2, - "get_layout_info": 4, - "proc_label_layout_info": 3, - "get_proc_trace_events": 2, - "set_proc_trace_events": 2, - "get_closure_layouts": 3, - "closure_proc_id_data": 4, - "get_max_reg_in_use_at_trace": 2, - "set_max_reg_in_use_at_trace": 2, - "get_created_temp_frame": 2, - "get_static_cell_info": 5, - "set_static_cell_info": 5, - "get_alloc_sites": 3, - "set_tree234": 3, - "alloc_site_info": 4, - "set_alloc_sites": 3, - "get_used_env_vars": 2, - "set": 16, - "set_used_env_vars": 2, - "get_opt_trail_ops": 2, - "get_opt_region_ops": 2, - "get_auto_comments": 2, - "get_lcmc_null": 2, - "get_containing_goal_map": 3, - "get_containing_goal_map_det": 2, - "get_const_struct_map": 2, - "add_out_of_line_code": 2, - "llds_code": 21, - "get_out_of_line_code": 2, - "get_var_slot_count": 2, - "set_maybe_trace_info": 3, - "get_opt_no_return_calls": 2, - "get_zombies": 2, - "set_zombies": 2, - "get_var_locn_info": 7, - "var_locn_info": 3, - "set_var_locn_info": 4, - "get_temps_in_use": 6, - "lval": 114, - "set_temps_in_use": 4, - "get_fail_info": 13, - "fail_info": 24, - "set_fail_info": 9, - "set_label_counter": 3, - "set_succip_used": 3, - "set_layout_info": 4, - "get_max_temp_slot_count": 2, - "set_max_temp_slot_count": 2, - "get_temp_content_map": 3, - "map": 7, - "slot_contents": 4, - "set_temp_content_map": 2, - "get_persistent_temps": 3, - "set_persistent_temps": 2, - "set_closure_layouts": 3, - "get_closure_seq_counter": 3, - "set_closure_seq_counter": 3, - "set_created_temp_frame": 2, - "code_info_static": 26, - "code_info_loc_dep": 22, - "code_info_persistent": 44, - ".": 610, - "cis_globals": 2, - "cis_exprn_opts": 2, - "cis_module_info": 2, - "cis_pred_id": 2, - "cis_proc_id": 2, - "cis_pred_info": 2, - "cis_proc_info": 2, - "cis_proc_label": 1, - "proc_label": 2, - "cis_varset": 2, - "cis_var_slot_count": 2, - "cis_maybe_trace_info": 3, - "cis_opt_no_resume_calls": 2, - "cis_emit_trail_ops": 2, - "cis_opt_trail_ops": 2, - "cis_emit_region_ops": 2, - "cis_opt_region_ops": 2, - "cis_auto_comments": 2, - "cis_lcmc_null": 2, - "cis_containing_goal_map": 2, - "cis_const_struct_map": 2, - "cild_forward_live_vars": 3, - "cild_instmap": 3, - "cild_zombies": 3, - "cild_var_locn_info": 3, - "cild_temps_in_use": 3, - "cild_fail_info": 3, - "cild_par_conj_depth": 3, - "cip_label_num_src": 3, - "cip_store_succip": 3, - "cip_label_info": 3, - "cip_proc_trace_events": 3, - "cip_stackslot_max": 3, - "cip_temp_contents": 3, - "cip_persistent_temps": 3, - "cip_closure_layout_seq": 3, - "cip_closure_layouts": 3, - "cip_max_reg_r_used": 3, - "cip_max_reg_f_used": 2, - "cip_created_temp_frame": 3, - "cip_static_cell_info": 3, - "cip_alloc_sites": 3, - "cip_used_env_vars": 3, - "cip_ts_string_table_size": 3, - "cip_ts_rev_string_table": 4, - "cip_out_of_line_code": 4, - "SaveSuccip": 2, - "Globals": 32, - "PredId": 50, - "ProcId": 31, - "PredInfo": 64, - "ProcInfo": 43, - "FollowVars": 6, - "ModuleInfo": 49, - "StaticCellInfo": 8, - "ConstStructMap": 2, - "ResumePoint": 13, - "TraceSlotInfo": 5, - "MaybeContainingGoalMap": 5, - "TSRevStringTable": 2, - "TSStringTableSize": 2, - "CodeInfo": 2, - "ProcLabel": 8, - "make_proc_label": 1, - "proc_info_get_initial_instmap": 1, - "InstMap": 6, - "proc_info_get_liveness_info": 1, - "Liveness": 4, - "CodeModel": 8, - "proc_info_interface_code_model": 2, - "build_input_arg_list": 1, - "ArgList": 2, - "proc_info_get_varset": 1, - "VarSet": 15, - "proc_info_get_vartypes": 2, - "VarTypes": 22, - "proc_info_get_stack_slots": 1, - "StackSlots": 5, - "ExprnOpts": 4, - "init_exprn_opts": 3, - "globals.lookup_bool_option": 18, - "use_float_registers": 5, - "UseFloatRegs": 6, - "yes": 144, - "FloatRegType": 3, - "reg_f": 1, - ";": 913, - "no": 365, - "reg_r": 2, - "globals.get_trace_level": 1, - "TraceLevel": 5, - "eff_trace_level_is_none": 2, - "trace_fail_vars": 1, - "FailVars": 3, - "MaybeFailVars": 3, - "set_of_var.union": 3, - "EffLiveness": 3, - "init_var_locn_state": 1, - "VarLocnInfo": 12, - "stack.init": 1, - "ResumePoints": 14, - "allow_hijacks": 3, - "AllowHijack": 3, - "Hijack": 6, - "allowed": 6, - "not_allowed": 5, - "DummyFailInfo": 2, - "resume_point_unknown": 9, - "may_be_different": 7, - "not_inside_non_condition": 2, - "map.init": 7, - "TempContentMap": 4, - "set.init": 7, - "PersistentTemps": 4, - "TempsInUse": 8, - "Zombies": 2, - "set_of_var.init": 1, - "LayoutMap": 2, - "max_var_slot": 1, - "VarSlotMax": 2, - "trace_reserved_slots": 1, - "FixedSlots": 2, - "_": 149, - "int.max": 1, - "SlotMax": 2, - "opt_no_return_calls": 3, - "OptNoReturnCalls": 2, - "use_trail": 3, - "UseTrail": 2, - "disable_trail_ops": 3, - "DisableTrailOps": 2, - "EmitTrailOps": 3, - "do_not_add_trail_ops": 1, - "optimize_trail_usage": 3, - "OptTrailOps": 2, - "optimize_region_ops": 3, - "OptRegionOps": 2, - "region_analysis": 3, - "UseRegions": 3, - "EmitRegionOps": 3, - "do_not_add_region_ops": 1, - "auto_comments": 4, - "AutoComments": 2, - "optimize_constructor_last_call_null": 3, - "LCMCNull": 2, - "CodeInfo0": 2, - "init_fail_info": 2, - "will": 1, - "override": 1, - "this": 4, - "dummy": 2, - "value": 16, - "nested": 1, - "parallel": 3, - "conjunction": 1, - "depth": 1, - "counter.init": 2, + "where": 8, "[": 203, "]": 203, - "set_tree234.init": 1, - "cord.empty": 1, - "init_maybe_trace_info": 3, - "CodeInfo1": 2, - "exprn_opts.": 1, - "gcc_non_local_gotos": 3, - "OptNLG": 3, - "NLG": 3, - "have_non_local_gotos": 1, - "do_not_have_non_local_gotos": 1, - "asm_labels": 3, - "OptASM": 3, - "ASM": 3, - "have_asm_labels": 1, - "do_not_have_asm_labels": 1, - "static_ground_cells": 3, - "OptSGCell": 3, - "SGCell": 3, - "have_static_ground_cells": 1, - "do_not_have_static_ground_cells": 1, - "unboxed_float": 3, - "OptUBF": 3, - "UBF": 3, - "have_unboxed_floats": 1, - "do_not_have_unboxed_floats": 1, - "OptFloatRegs": 3, - "do_not_use_float_registers": 1, - "static_ground_floats": 3, - "OptSGFloat": 3, - "SGFloat": 3, - "have_static_ground_floats": 1, - "do_not_have_static_ground_floats": 1, - "static_code_addresses": 3, - "OptStaticCodeAddr": 3, - "StaticCodeAddrs": 3, - "have_static_code_addresses": 1, - "do_not_have_static_code_addresses": 1, - "trace_level": 4, - "CI": 294, - "proc_info_get_has_tail_call_events": 1, - "HasTailCallEvents": 3, - "tail_call_events": 1, - "get_next_label": 5, - "TailRecLabel": 2, - "MaybeTailRecLabel": 3, - "no_tail_call_events": 1, - "trace_setup": 1, - "TraceInfo": 2, - "MaxRegR": 4, - "MaxRegF": 4, - "cip_max_reg_f_used.": 1, - "TI": 4, - "LV": 2, - "IM": 2, - "Zs": 2, - "EI": 2, - "FI": 2, - "N": 6, - "LC": 2, - "SU": 2, - "LI": 2, - "PTE": 2, - "TM": 2, - "CM": 2, - "PT": 2, - "CLS": 2, - "CG": 2, - "MR": 4, - "MF": 1, - "MF.": 1, - "SCI": 2, - "ASI": 2, - "UEV": 2, - "ContainingGoalMap": 2, - "unexpected": 21, - "NewCode": 2, - "Code0": 2, - ".CI": 29, - "Code": 36, - "+": 127, - "Code.": 1, - "get_stack_slots": 2, - "stack_slots": 1, - "get_follow_var_map": 2, - "abs_follow_vars_map": 1, - "get_next_non_reserved": 2, - "reg_type": 1, - "set_follow_vars": 4, - "pre_goal_update": 3, - "hlds_goal_info": 22, - "has_subgoals": 2, - "post_goal_update": 3, - "body_typeinfo_liveness": 4, - "variable_type": 3, - "prog_var": 58, - "mer_type.": 1, - "variable_is_of_dummy_type": 2, - "is_dummy_type.": 1, - "search_type_defn": 4, - "mer_type": 21, - "hlds_type_defn": 1, - "semidet.": 10, - "lookup_type_defn": 2, - "hlds_type_defn.": 1, - "lookup_cheaper_tag_test": 2, - "maybe_cheaper_tag_test.": 1, - "filter_region_vars": 2, - "set_of_progvar.": 2, - "get_proc_model": 2, - "code_model.": 1, - "get_headvars": 2, - "get_arginfo": 2, - "arg_info": 2, - "get_pred_proc_arginfo": 3, - "current_resume_point_vars": 2, - "variable_name": 2, - "make_proc_entry_label": 2, - "code_addr.": 1, - "label": 5, - "succip_is_used": 2, - "add_trace_layout_for_label": 2, - "term.context": 3, - "trace_port": 1, - "forward_goal_path": 1, - "user_event_info": 1, - "layout_label_info": 2, - "get_cur_proc_label": 4, - "get_next_closure_seq_no": 2, - "add_closure_layout": 2, - "add_threadscope_string": 2, - "get_threadscope_rev_string_table": 2, - "add_scalar_static_cell": 2, - "typed_rval": 1, - "data_id": 3, - "add_scalar_static_cell_natural_types": 2, - "rval": 3, - "add_vector_static_cell": 2, - "llds_type": 1, - "add_alloc_site_info": 2, - "prog_context": 1, - "alloc_site_id": 2, - "add_resume_layout_for_label": 2, - "var_locn_get_stack_slots": 1, - "FollowVarMap": 2, - "var_locn_get_follow_var_map": 1, - "RegType": 2, - "NextNonReserved": 2, - "var_locn_get_next_non_reserved": 1, - "VarLocnInfo0": 4, - "var_locn_set_follow_vars": 1, - "GoalInfo": 44, - "HasSubGoals": 3, - "goal_info_get_resume_point": 1, - "no_resume_point": 1, - "resume_point": 1, - "goal_info_get_follow_vars": 1, - "MaybeFollowVars": 3, - "goal_info_get_pre_deaths": 1, - "PreDeaths": 3, - "rem_forward_live_vars": 3, - "maybe_make_vars_forward_dead": 2, - "goal_info_get_pre_births": 1, - "PreBirths": 2, - "add_forward_live_vars": 2, - "does_not_have_subgoals": 2, - "goal_info_get_post_deaths": 2, - "PostDeaths": 5, - "goal_info_get_post_births": 1, - "PostBirths": 3, - "make_vars_forward_live": 1, - "InstMapDelta": 2, - "goal_info_get_instmap_delta": 1, - "InstMap0": 2, - "instmap.apply_instmap_delta": 1, - "TypeInfoLiveness": 2, - "module_info_pred_info": 6, - "body_should_use_typeinfo_liveness": 1, - "Var": 13, - "Type": 18, - "lookup_var_type": 3, - "IsDummy": 2, - "VarType": 2, - "check_dummy_type": 1, - "TypeDefn": 6, - "type_to_ctor_det": 1, - "TypeCtor": 2, - "module_info_get_type_table": 1, - "TypeTable": 2, - "search_type_ctor_defn": 1, - "TypeDefnPrime": 2, - "CheaperTagTest": 3, - "get_type_defn_body": 1, - "TypeBody": 2, - "hlds_du_type": 1, - "CheaperTagTestPrime": 2, - "no_cheaper_tag_test": 1, - "ForwardLiveVarsBeforeGoal": 6, - "RegionVars": 2, - "code_info.get_var_types": 1, - "set_of_var.filter": 1, - "is_region_var": 1, - "HeadVars": 20, - "module_info_pred_proc_info": 4, - "proc_info_get_headvars": 2, - "ArgInfo": 4, - "proc_info_arg_info": 1, - "ResumeVars": 4, - "FailInfo": 19, - "ResumePointStack": 2, - "stack.det_top": 5, - "ResumePointInfo": 2, - "pick_first_resume_point": 1, - "ResumeMap": 8, - "map.keys": 3, - "ResumeMapVarList": 2, - "set_of_var.list_to_set": 3, - "Name": 4, - "Varset": 2, - "varset.lookup_name": 2, - "Immed0": 3, - "CodeAddr": 2, - "Immed": 3, - "globals.lookup_int_option": 1, - "procs_per_c_function": 3, - "ProcsPerFunc": 2, - "CurPredId": 2, - "CurProcId": 2, - "proc": 2, - "make_entry_label": 1, - "Label": 8, - "C0": 4, - "counter.allocate": 2, + ".": 610, + "type": 57, + "S": 133, + "instance": 4, + "io.state": 3, + "some": 4, + "pred": 255, + "store.init": 2, + "uo": 58, + "is": 246, + "det.": 184, + "generic_mutvar": 15, + "io_mutvar": 1, + "store_mutvar": 1, + "store.new_mutvar": 1, + "in": 510, + "out": 337, + "di": 54, + "det": 21, + "<": 14, + "store.copy_mutvar": 1, + "store.get_mutvar": 1, + "store.set_mutvar": 1, + "<=>": 5, + "new_cyclic_mutvar": 2, + "Func": 4, + "Mutvar": 23, + "Create": 1, + "a": 10, + "new": 25, + "mutable": 3, + "variable": 1, + "whose": 2, + "value": 16, + "initialized": 2, + "with": 5, + "the": 27, + "returned": 1, + "from": 1, + "specified": 1, + "function": 3, + "The": 2, + "argument": 6, + "passed": 2, + "to": 16, + "mutvar": 6, + "itself": 4, + "has": 4, + "not": 7, + "yet": 1, + "been": 1, + "this": 4, + "safe": 2, + "because": 1, + "does": 3, + "get": 2, + "so": 3, + "it": 1, + "can": 1, + "t": 5, + "examine": 1, + "uninitialized": 1, + "This": 2, + "predicate": 1, + "useful": 1, + "for": 8, + "creating": 1, + "self": 1, + "referential": 1, + "values": 1, + "such": 2, + "as": 5, + "circular": 1, + "linked": 1, + "lists": 1, + "For": 1, + "example": 1, + "clist": 2, + "node": 1, + "store.new_cyclic_mutvar": 1, + "func": 24, + "generic_ref": 20, + "io_ref": 1, + "store_ref": 1, + "store.new_ref": 1, + "store.ref_functor": 1, + "string": 115, + "int": 129, + "store.arg_ref": 1, + "ArgT": 4, + "store.new_arg_ref": 3, + "store.set_ref": 1, + "store.set_ref_value": 1, + "store.copy_ref_value": 1, + "store.extract_ref_value": 1, + "Nasty": 1, + "performance": 2, + "hacks": 1, + "WARNING": 1, + "use": 1, + "of": 10, + "these": 1, + "procedures": 2, + "dangerous": 1, + "Use": 1, + "them": 1, + "only": 4, + "last": 1, + "resort": 1, + "if": 15, + "critical": 1, + "and": 6, + "profiling": 5, + "shows": 1, + "that": 2, + "using": 1, + "versions": 1, + "bottleneck": 1, + "These": 1, + "may": 1, + "vanish": 1, + "future": 1, + "version": 3, + "Mercury": 1, + "unsafe_arg_ref": 1, + "same": 2, + "arg_ref": 12, + "unsafe_new_arg_ref": 1, + "new_arg_ref": 1, + "except": 1, + "they": 4, + "doesn": 1, + "check": 1, + "errors": 1, + "don": 3, + "work": 3, + "no_tag": 1, + "types": 3, + "exactly": 2, + "one": 2, + "functor": 2, + "which": 2, + "arguments": 2, + "occupy": 1, + "word": 2, + "other": 1, + "functors.": 1, + "store.unsafe_arg_ref": 1, + "store.unsafe_new_arg_ref": 1, + "implementation": 1, + "deconstruct": 2, + "require": 1, + "io": 6, + "state": 3, + "just": 1, + "dummy": 2, + "no": 365, + "real": 1, + "representation": 1, + "pragma": 41, + "foreign_type": 10, "C": 34, - "internal_label": 3, - "Context": 20, - "Port": 2, - "IsHidden": 2, - "GoalPath": 2, - "MaybeSolverEventInfo": 2, - "Layout": 2, - "Internals0": 8, - "Exec": 5, - "trace_port_layout_info": 1, - "LabelNum": 8, - "entry_label": 2, - "map.search": 2, - "Internal0": 4, - "internal_layout_info": 6, - "Exec0": 3, - "Resume": 5, - "Return": 6, - "Internal": 8, - "map.det_update": 4, - "Internals": 6, - "map.det_insert": 3, - "LayoutInfo": 2, - "Resume0": 3, - "get_active_temps_data": 2, - "assoc_list": 1, - "Temps": 2, - "map.select": 1, - "TempsInUseContentMap": 2, - "map.to_assoc_list": 3, - "cis_proc_label.": 1, - "SeqNo": 2, - "ClosureLayout": 2, - "ClosureLayouts": 2, - "|": 38, - "String": 2, - "SlotNum": 2, - "Size0": 3, - "RevTable0": 2, - "Size": 4, - "RevTable": 3, - "RevTable.": 1, - "TableSize": 2, - "cip_ts_string_table_size.": 1, - "RvalsTypes": 2, - "DataAddr": 6, - "StaticCellInfo0": 6, - "global_data.add_scalar_static_cell": 1, - "Rvals": 2, - "global_data.add_scalar_static_cell_natural_types": 1, - "Types": 6, - "Vector": 2, - "global_data.add_vector_static_cell": 1, - "AllocId": 2, - "AllocSite": 3, - "AllocSites0": 2, - "set_tree234.insert": 1, - "AllocSites": 2, - "position_info.": 1, - "branch_end_info.": 1, - "branch_end": 4, - "branch_end_info": 7, - "remember_position": 3, - "position_info": 14, - "reset_to_position": 4, - "reset_resume_known": 2, - "generate_branch_end": 2, - "abs_store_map": 3, - "after_all_branches": 2, - "save_hp_in_branch": 2, - "pos_get_fail_info": 3, - "fail_info.": 2, - "LocDep": 6, - "cild_fail_info.": 1, - "CurCI": 2, - "NextCI": 2, - "Static": 2, - "Persistent": 2, - "NextCI0": 4, - "TempsInUse0": 4, - "set.union": 2, - "BranchStart": 2, - "BranchStartFailInfo": 2, - "BSResumeKnown": 2, - "CurFailInfo": 2, - "CurFailStack": 2, - "CurCurfMaxfr": 2, - "CurCondEnv": 2, - "CurHijack": 2, - "NewFailInfo": 2, - "StoreMap": 8, - "MaybeEnd0": 3, - "MaybeEnd": 6, - "AbsVarLocs": 3, - "assoc_list.values": 1, - "AbsLocs": 2, - "code_util.max_mentioned_abs_regs": 1, - "instmap_is_reachable": 1, - "VarLocs": 2, - "assoc_list.map_values_only": 2, - "abs_locn_to_lval": 2, - "place_vars": 1, - "remake_with_store_map": 4, - "empty": 9, - "EndCodeInfo1": 5, - "EndCodeInfo0": 3, - "FailInfo0": 13, - "FailInfo1": 2, - "ResumeKnown0": 5, - "CurfrMaxfr0": 2, - "CondEnv0": 3, - "Hijack0": 2, - "R": 2, - "ResumeKnown1": 2, - "CurfrMaxfr1": 2, - "CondEnv1": 2, - "Hijack1": 2, - "resume_point_known": 15, - "Redoip0": 3, - "Redoip1": 2, - "ResumeKnown": 21, - "expect": 15, + "MR_Word": 24, + "can_pass_as_mercury_type": 5, + "equality": 5, + "store_equal": 7, + "comparison": 5, + "store_compare": 7, + "IL": 2, + "int32": 1, + "Java": 12, + "Erlang": 3, + "semidet": 2, + "_": 149, + "error": 7, + "attempt": 2, "unify": 21, - "must_be_equal": 11, - "CurfrMaxfr": 24, - "EndCodeInfoA": 2, - "TempsInUse1": 2, - "EndCodeInfo": 2, - "BranchEnd": 2, - "BranchEndCodeInfo": 2, - "BranchEndLocDep": 2, - "VarLocns": 2, - "VarLvals": 2, - "reinit_var_locn_state": 1, - "Slot": 2, - "Pos0": 2, - "Pos": 2, - "CI0": 2, - "CIStatic0": 2, - "CILocDep0": 2, - "CIPersistent0": 2, - "LocDep0": 2, - "CI1": 2, - "save_hp": 1, - "CI2": 2, - "CIStatic": 2, - "CIPersistent": 2, - "resume_map.": 1, - "resume_point_info.": 1, - "disj_hijack_info.": 1, - "prepare_for_disj_hijack": 2, - "code_model": 3, - "disj_hijack_info": 3, - "undo_disj_hijack": 2, - "ite_hijack_info.": 1, - "prepare_for_ite_hijack": 2, - "embedded_stack_frame_id": 3, - "ite_hijack_info": 3, - "ite_enter_then": 2, - "simple_neg_info.": 1, - "enter_simple_neg": 2, - "simple_neg_info": 3, - "leave_simple_neg": 2, - "det_commit_info.": 1, - "prepare_for_det_commit": 2, - "det_commit_info": 6, - "generate_det_commit": 2, - "semi_commit_info.": 1, - "prepare_for_semi_commit": 2, - "semi_commit_info": 6, - "generate_semi_commit": 2, - "effect_resume_point": 2, - "pop_resume_point": 1, - "top_resume_point": 1, - "set_resume_point_to_unknown": 1, - "set_resume_point_and_frame_to_unknown": 1, - "generate_failure": 2, - "fail_if_rval_is_false": 1, - "failure_is_direct_branch": 1, - "code_addr": 8, - "may_use_nondet_tailcall": 1, - "nondet_tail_call": 1, - "produce_vars": 1, - "resume_map": 9, - "flush_resume_vars_to_stack": 1, - "make_resume_point": 1, - "resume_locs": 1, - "generate_resume_point": 2, - "resume_point_vars": 1, - "resume_point_stack_addr": 2, - "stack": 1, - "curfr_vs_maxfr": 2, - "condition_env": 3, - "hijack_allowed": 2, - "orig_only": 2, - "stack_only": 2, - "orig_and_stack": 1, - "stack_and_orig": 1, - "redoip_update": 2, - "has_been_done": 5, - "wont_be_done.": 1, - "resume_point_unknown.": 1, - "may_be_different.": 1, - "inside_non_condition": 6, - "not_inside_non_condition.": 1, - "not_allowed.": 1, - "disj_no_hijack": 4, - "disj_temp_frame": 4, - "disj_quarter_hijack": 4, - "disj_half_hijack": 3, - "disj_full_hijack": 3, - "HijackInfo": 29, - "CondEnv": 12, - "Allow": 12, - "model_det": 2, - "model_semi": 3, - "singleton": 28, - "llds_instr": 64, - "comment": 5, - "model_non": 2, - "create_temp_frame": 4, - "do_fail": 6, - "stack.pop": 1, - "TopResumePoint": 6, - "RestResumePoints": 2, - "stack.is_empty": 1, - "wont_be_done": 2, - "acquire_temp_slot": 15, - "slot_lval": 14, - "redoip_slot": 30, - "curfr": 18, - "non_persistent_temp_slot": 15, - "RedoipSlot": 33, - "assign": 46, - "maxfr": 42, - "redofr_slot": 14, - "RedofrSlot": 17, - "from_list": 13, - "prevfr_slot": 3, - "pick_stack_resume_point": 3, - "StackLabel": 9, - "LabelConst": 4, + "two": 2, + "stores": 2, + "comparison_result": 1, + "compare": 1, + "Mutvars": 1, + "references": 1, + "are": 1, + "each": 1, + "represented": 1, + "pointer": 1, + "single": 1, + "on": 1, + "heap": 1, + "private_builtin.ref": 2, + "ref": 2, + "store.do_init": 6, + "foreign_proc": 28, + "_S0": 16, + "will_not_call_mercury": 28, + "promise_pure": 30, + "will_not_modify_trail": 7, + "new_mutvar": 5, + "Val": 45, + "S0": 23, + "get_mutvar": 5, + "set_mutvar": 5, + "_S": 12, + "copy_mutvar": 1, + "Copy": 2, + "Value": 4, + "store.unsafe_new_uninitialized_mutvar": 1, + "unsafe_new_uninitialized_mutvar": 4, + "MR_offset_incr_hp_msg": 5, + "MR_SIZE_SLOT_SIZE": 10, + "1": 5, + "MR_ALLOC_ID": 5, + "2": 2, + "MR_define_size_slot": 5, + "0": 2, + "object": 21, + "MutVar": 4, + "Store": 5, + "apply": 1, + "Ref": 41, + "foreign_code": 2, + "public": 17, + "class": 4, + "Object": 9, + "referenced": 4, + "obj": 7, + "Specific": 2, + "field": 20, + "or": 2, + "null": 8, + "specify": 2, + "XXX": 3, + "GetFields": 2, + "return": 6, + "fields": 3, + "any": 2, + "particular": 2, + "order": 2, + "really": 2, + "usable": 2, + "System": 1, + "Reflection": 1, + "FieldInfo": 1, + "Constructors": 2, + "init": 8, + "num": 11, + "setField": 4, + "Set": 2, + "according": 2, + "given": 2, + "index": 2, + "void": 4, + "GetType": 1, + "Return": 6, + "reference": 4, + "getValue": 4, + "else": 8, + "GetValue": 1, + "Update": 2, + "setValue": 2, + "SetValue": 1, + "java": 35, + "static": 1, + "lang": 28, + "getDeclaredFields": 2, + "reflect": 1, + "Field": 5, + "try": 3, + "getClass": 1, + "catch": 11, + "SecurityException": 1, + "se": 1, + "throw": 11, + "RuntimeException": 11, + "Security": 1, + "manager": 1, + "denied": 1, + "access": 3, + "ArrayIndexOutOfBoundsException": 1, + "e": 13, + "No": 1, + "Exception": 3, + "Unable": 3, + "set": 16, + "getMessage": 3, + "IllegalAccessException": 2, + "inaccessible": 2, + "IllegalArgumentException": 2, + "mismatch": 2, + "NullPointerException": 2, + "new_ref": 4, + "ets": 3, + "insert": 1, + "copy_ref_value": 1, + "unsafe_ref_value": 6, + "store.unsafe_ref_value": 1, + "lookup": 1, + "ref_functor": 1, + "Functor": 6, + "Arity": 5, + "canonicalize": 1, + "foreign_decl": 1, + "include": 4, + "mercury_type_info": 1, + "h": 4, + "mercury_heap": 1, + "mercury_misc": 1, + "MR_fatal_error": 5, + "mercury_deconstruct": 1, + "MR_arg": 3, + "ArgNum": 7, + "ArgRef": 22, + "may_not_duplicate": 1, + "MR_TypeInfo": 10, + "type_info": 8, + "arg_type_info": 6, + "exp_arg_type_info": 6, "const": 10, - "llconst_code_addr": 6, - "true": 3, - "ite_region_info": 5, - "ite_info": 3, - "ite_hijack_type": 2, - "ite_no_hijack": 3, - "ite_temp_frame": 3, - "ite_quarter_hijack": 3, - "ite_half_hijack": 3, - "ite_full_hijack": 3, - "CondCodeModel": 4, - "MaybeEmbeddedFrameId": 5, - "HijackType": 12, - "MaybeRegionInfo": 12, - "MaxfrSlot": 30, - "TempFrameCode": 4, - "MaxfrCode": 7, - "EmbeddedFrameId": 2, - "slot_success_record": 1, - "persistent_temp_slot": 1, - "SuccessRecordSlot": 6, - "InitSuccessCode": 3, - "llconst_false": 1, - "ITEResumePoint": 2, - "ThenCode": 10, - "ElseCode": 7, - "ResumePoints0": 5, - "stack.det_pop": 1, - "HijackResumeKnown": 2, - "OldCondEnv": 2, - "RegionInfo": 2, - "EmbeddedStackFrameId": 2, - "ITEStackResumeCodeAddr": 2, - "llconst_true": 1, - "AfterRegionOp": 3, - "if_val": 1, - "unop": 1, - "logical_not": 1, - "code_label": 2, - "use_and_maybe_pop_region_frame": 1, - "region_ite_nondet_cond_fail": 1, - "goto": 2, - "maybe_pick_stack_resume_point": 1, - "ResumeMap0": 2, - "make_fake_resume_map": 5, - "do_redo": 1, - "is_empty": 1, - "Vars": 10, - "Locns": 2, - "set.make_singleton_set": 1, - "reg": 1, - "pair": 7, - "region_commit_stack_frame": 5, - "AddTrailOps": 4, - "AddRegionOps": 5, - "CommitGoalInfo": 4, - "DetCommitInfo": 4, - "SaveMaxfrCode": 3, - "save_maxfr": 3, - "MaybeMaxfrSlot": 6, - "maybe_save_trail_info": 2, - "MaybeTrailSlots": 8, - "SaveTrailCode": 4, - "maybe_save_region_commit_frame": 4, - "MaybeRegionCommitFrameInfo": 8, - "SaveRegionCommitFrameCode": 2, - "SaveRegionCommitFrameCode.": 2, - "RestoreMaxfrCode": 3, - "restore_maxfr": 3, - "release_temp_slot": 1, - "maybe_restore_trail_info": 2, - "CommitTrailCode": 4, - "maybe_restore_region_commit_frame": 2, - "SuccessRegionCode": 3, - "_FailureRegionCode": 1, - "SuccessRegionCode.": 1, - "commit_hijack_info": 2, - "commit_temp_frame": 3, - "commit_quarter_hijack": 3, - "commit_half_hijack": 3, - "commit_full_hijack": 3, - "SemiCommitInfo": 4, - "clone_resume_point": 1, - "NewResumePoint": 4, - "stack.push": 1, - "StackLabelConst": 7, - "use_minimal_model_stack_copy_cut": 3, - "UseMinimalModelStackCopyCut": 4, - "Components": 4, - "foreign_proc_raw_code": 4, - "cannot_branch_away": 4, - "proc_affects_liveness": 2, - "live_lvals_info": 4, - "proc_does_not_affect_liveness": 2, - "MD": 4, - "proc_may_duplicate": 2, - "MarkCode": 3, - "foreign_proc_code": 2, - "proc_will_not_call_mercury": 2, - "HijackCode": 5, - "UseMinimalModel": 3, - "CutCode": 4, - "SuccessUndoCode": 5, - "FailureUndoCode": 5, - "AfterCommit": 2, - "ResumePointCode": 2, - "FailCode": 2, - "RestoreTrailCode": 2, - "FailureRegionCode": 2, - "SuccLabel": 3, - "GotoSuccLabel": 2, - "SuccLabelCode": 1, - "SuccessCode": 2, - "FailureCode": 2, - "SuccLabelCode.": 1, - "_ForwardLiveVarsBeforeGoal": 1, + "MR_DuArgLocn": 2, + "arg_locn": 9, + "TypeInfo_for_T": 2, + "TypeInfo_for_ArgT": 2, + "MR_save_transient_registers": 2, + "MR_NONCANON_ABORT": 2, + "number": 2, + "range": 2, + "MR_compare_type_info": 2, + "MR_COMPARE_EQUAL": 2, + "wrong": 2, + "MR_restore_transient_registers": 2, + "NULL": 2, + "MR_arg_bits": 2, + "{": 27, + "+": 127, + "store.ref/2": 3, + ";": 913, + "*": 20, + "MR_arg_value": 2, + "}": 28, + "C#": 6, + "store.Ref": 8, + "Ref.getValue": 6, + "*arg_ref": 1, + "*arg_locn": 1, + "&": 7, + "&&": 1, + "ValRef": 1, + "Ref.setValue": 3, + "ValRef.getValue": 2, + "*Ptr": 2, + "Ptr": 4, + "MR_strip_tag": 2, + "Arg": 6, "expr.": 1, "char": 10, + "list.": 4, "token": 5, - "num": 11, "eof": 6, "parse": 1, "exprn/1": 1, "xx": 1, "scan": 16, + "list": 82, "mode": 8, + "implementation.": 12, + "require.": 6, "rule": 3, "exprn": 7, "Num": 18, "A": 14, "term": 10, "B": 8, - "{": 27, - "}": 28, - "*": 20, "factor": 6, "/": 1, "//": 2, @@ -41825,6 +41298,7 @@ "Toks": 13, "Toks0": 11, "list__reverse": 1, + "|": 38, "Cs": 9, "char__is_whitespace": 1, "char__is_digit": 2, @@ -41834,18 +41308,13 @@ "string__from_char_list": 1, "NumStr": 2, "string__det_to_int": 1, - "error": 7, - "hello.": 1, - "main": 15, - "io": 6, - "di": 54, - "uo": 58, - "IO": 4, - "io.write_string": 1, + "libs.options.": 3, "char.": 1, "getopt_io.": 1, + "set.": 4, "short_option": 36, "option": 9, + "semidet.": 10, "long_option": 241, "option_defaults": 2, "option_data": 2, @@ -41860,6 +41329,7 @@ "option_table.": 2, "option_table_add_search_library_files_directory": 1, "quote_arg": 1, + "string.": 7, "inhibit_warnings": 4, "inhibit_accumulator_warnings": 3, "halt_at_warn": 3, @@ -41939,7 +41409,6 @@ "deduction/deforestation": 1, "debug_il_asm": 3, "il_asm": 1, - "IL": 2, "generation": 1, "via": 1, "asm": 1, @@ -41986,6 +41455,7 @@ "generate_item_version_numbers": 2, "generate_mmc_make_module_dependencies": 4, "assume_gmake": 3, + "trace_level": 4, "trace_optimized": 4, "trace_prof": 3, "trace_table_io": 3, @@ -42004,6 +41474,7 @@ "force_disable_ssdebug": 3, "generate_bytecode": 3, "line_numbers": 4, + "auto_comments": 4, "frameopt_comments": 3, "max_error_line_width": 3, "show_dependency_graph": 3, @@ -42044,7 +41515,6 @@ "il_only": 4, "compile_to_c": 4, "c": 1, - "java": 35, "java_only": 4, "csharp": 6, "csharp_only": 4, @@ -42054,7 +41524,6 @@ "erlang_only": 4, "exec_trace": 3, "decl_debug": 3, - "profiling": 5, "profile_time": 5, "profile_calls": 6, "time_profiling": 3, @@ -42083,7 +41552,9 @@ "record_term_sizes_as_cells": 2, "experimental_complexity": 2, "gc": 2, + "parallel": 3, "threadscope": 2, + "use_trail": 3, "trail_segments": 2, "use_minimal_model_stack_copy": 2, "use_minimal_model_own_stacks": 2, @@ -42107,12 +41578,16 @@ "bits_per_word": 2, "bytes_per_word": 2, "conf_low_tag_bits": 2, + "unboxed_float": 3, "unboxed_enums": 2, "unboxed_no_tag_types": 2, "sync_term_size": 2, "words": 1, + "gcc_non_local_gotos": 3, "gcc_global_registers": 2, + "asm_labels": 3, "pic_reg": 2, + "use_float_registers": 5, "highlevel_code": 3, "highlevel_data": 2, "gcc_nested_functions": 2, @@ -42130,6 +41605,7 @@ "agc_stack_layout": 2, "procid_stack_layout": 2, "trace_stack_layout": 2, + "body_typeinfo_liveness": 4, "can_compare_constants_as_ints": 2, "pretest_equality_cast_pointers": 2, "can_compare_compound_values": 2, @@ -42146,6 +41622,8 @@ "disable_minimal_model_stack_copy_pneg": 2, "disable_minimal_model_stack_copy_cut": 2, "use_minimal_model_stack_copy_pneg": 2, + "use_minimal_model_stack_copy_cut": 3, + "disable_trail_ops": 3, "size_region_ite_fixed": 2, "size_region_disj_fixed": 2, "size_region_semi_disj_fixed": 1, @@ -42182,11 +41660,11 @@ "fact_table_hash_percent_full": 2, "gcc_local_labels": 2, "prefer_switch": 2, + "opt_no_return_calls": 3, "opt_level": 3, "opt_level_number": 2, "opt_space": 2, "Default": 3, - "to": 16, "optimize": 3, "time.": 1, "intermodule_optimization": 2, @@ -42227,6 +41705,7 @@ "user_guided_type_specialization": 2, "introduce_accumulators": 2, "optimize_constructor_last_call_accumulator": 2, + "optimize_constructor_last_call_null": 3, "optimize_constructor_last_call": 2, "optimize_duplicate_calls": 2, "constant_propagation": 2, @@ -42257,6 +41736,8 @@ "deforestation_vars_threshold": 2, "deforestation_size_threshold": 2, "analyse_trail_usage": 2, + "optimize_trail_usage": 3, + "optimize_region_ops": 3, "analyse_mm_tabling": 2, "untuple": 2, "tuple": 2, @@ -42266,6 +41747,7 @@ "inline_par_builtins": 2, "always_specialize_in_dep_par_conjs": 2, "allow_some_paths_only_waits": 2, + "region_analysis": 3, "structure_sharing_analysis": 2, "structure_sharing_widening": 2, "structure_reuse_analysis": 2, @@ -42302,9 +41784,13 @@ "binary_switch_size": 2, "switch_single_rec_base_first": 2, "switch_multi_rec_base_first": 2, + "static_ground_cells": 3, + "static_ground_floats": 3, + "static_code_addresses": 3, "use_atomic_cells": 2, "middle_rec": 2, "simple_neg": 2, + "allow_hijacks": 3, "optimize_tailcalls": 2, "optimize_initializations": 2, "eliminate_local_vars": 2, @@ -42313,7 +41799,6 @@ "common_layout_data": 2, "Also": 1, "used": 2, - "for": 8, "MLDS": 2, "optimizations.": 1, "optimize_peep": 2, @@ -42335,6 +41820,7 @@ "layout_compression_limit": 2, "use_macro_for_redo_fail": 2, "emit_c_loops": 2, + "procs_per_c_function": 3, "everything_in_one_c_function": 2, "local_thread_engine_base": 2, "erlang_switch_on_strings_as_atoms": 2, @@ -42416,6 +41902,7 @@ "mercury_linkage_special": 2, "strip": 2, "demangle": 2, + "main": 15, "allow_undefined": 2, "use_readline": 2, "runtime_flags": 2, @@ -42506,7 +41993,6 @@ "typecheck_ambiguity_warn_limit": 2, "typecheck_ambiguity_error_limit": 2, "help": 4, - "version": 3, "fullarch": 2, "cross_compiling": 2, "local_module_id": 2, @@ -42521,7 +42007,13 @@ "par_loop_control": 2, "par_loop_control_preserve_tail_recursion.": 1, "libs.handle_options.": 1, + "assoc_list.": 3, + "bool.": 4, "dir.": 1, + "int.": 4, + "map.": 3, + "maybe.": 3, + "pair.": 3, "option_category": 2, "warning_option": 2, "verbosity_option": 2, @@ -42542,9 +42034,11 @@ "_Category": 1, "OptionsList": 2, "list.member": 2, + "pair": 7, "multi.": 1, "bool_special": 7, - "XXX": 3, + "bool": 406, + "yes": 144, "should": 1, "be": 1, "accumulating": 49, @@ -42556,22 +42050,56 @@ "file_special": 1, "miscellaneous_option": 1, "par_loop_control_preserve_tail_recursion": 1, + "hello.": 1, + "IO": 4, + "io.write_string": 1, + "rot13_ralph.": 1, + "io__state": 4, + "io__read_byte": 1, + "Result": 4, + "ok": 3, + "X": 9, + "io__write_byte": 1, + "rot13": 11, + "ErrNo": 2, + "io__error_message": 2, + "z": 1, + "then": 3, + "Rot13": 2, + "rem": 1, "check_hlds.polymorphism.": 1, "hlds.": 1, + "hlds.hlds_goal.": 2, + "hlds.hlds_module.": 2, + "hlds.hlds_pred.": 2, + "hlds.hlds_rtti.": 2, "mdbcomp.": 1, + "mdbcomp.prim_data.": 3, "parse_tree.": 1, + "parse_tree.prog_data.": 2, + "term.": 3, "polymorphism_process_module": 2, + "module_info": 26, "polymorphism_process_generated_pred": 2, + "pred_id": 15, "unification_typeinfos_rtti_varmaps": 2, + "mer_type": 21, "rtti_varmaps": 9, "unification": 8, + "hlds_goal_info": 22, "polymorphism_process_new_call": 2, + "pred_info": 20, + "proc_info": 11, + "proc_id": 12, + "prog_var": 58, "builtin_state": 1, + "maybe": 20, "call_unify_context": 2, "sym_name": 3, "hlds_goal": 45, "poly_info": 45, "polymorphism_make_type_info_vars": 1, + "term.context": 3, "polymorphism_make_type_info_var": 1, "int_or_var": 2, "iov_int": 1, @@ -42579,6 +42107,7 @@ "gen_extract_type_info": 1, "tvar": 10, "kind": 1, + "prog_varset": 14, "vartypes": 12, "poly_info.": 1, "create_poly_info": 1, @@ -42604,29 +42133,39 @@ "type_ctor": 1, "cons_id": 2, "type_info_kind": 2, - "type_info": 8, "type_ctor_info.": 1, "new_type_info_var_raw": 1, "check_hlds.clause_to_proc.": 1, "check_hlds.mode_util.": 1, + "check_hlds.type_util.": 2, "hlds.from_ground_term_util.": 1, "hlds.const_struct.": 1, "hlds.goal_util.": 1, "hlds.hlds_args.": 1, "hlds.hlds_clauses.": 1, "hlds.hlds_code_util.": 1, + "hlds.hlds_data.": 2, + "hlds.instmap.": 2, "hlds.passes_aux.": 1, "hlds.pred_table.": 1, "hlds.quantification.": 1, "hlds.special_pred.": 1, "libs.": 1, + "libs.globals.": 2, + "mdbcomp.goal_path.": 2, "mdbcomp.program_representation.": 1, + "parse_tree.builtin_lib_types.": 2, "parse_tree.prog_mode.": 1, + "parse_tree.prog_type.": 2, "parse_tree.prog_type_subst.": 1, + "parse_tree.set_of_var.": 2, "solutions.": 1, + "varset.": 2, + "ModuleInfo": 49, "module_info_get_preds": 3, ".ModuleInfo": 8, "Preds0": 2, + "map.keys": 3, "PredIds0": 2, "list.foldl": 6, "maybe_polymorphism_process_pred": 3, @@ -42634,6 +42173,9 @@ "PredIds1": 2, "fixup_pred_polymorphism": 4, "expand_class_method_bodies": 1, + "PredId": 50, + "module_info_pred_info": 6, + "PredInfo": 64, "PredModule": 8, "pred_info_module": 4, "PredName": 8, @@ -42651,6 +42193,7 @@ "clauses_info_get_vartypes": 2, "VarTypes0": 12, "clauses_info_get_headvars": 2, + "HeadVars": 20, "pred_info_get_arg_types": 7, "TypeVarSet": 15, "ExistQVars": 13, @@ -42670,6 +42213,7 @@ "pred_info_set_existq_tvar_binding": 1, "PredInfo2": 7, "polymorphism_introduce_exists_casts_pred": 3, + "map.det_update": 4, "PredTable": 2, "module_info_set_preds": 1, "pred_info_get_procedures": 2, @@ -42677,7 +42221,7 @@ "Procs0": 4, "map.map_values_only": 1, ".ProcInfo": 2, - "det": 21, + "ProcInfo": 43, "introduce_exists_casts_proc": 1, "Procs": 4, "pred_info_set_procedures": 2, @@ -42686,15 +42230,14 @@ "flag": 4, "write_pred_progress_message": 1, "polymorphism_process_pred": 4, - "mutable": 3, "selected_pred": 1, "ground": 9, "untrailed": 2, "level": 1, - "promise_pure": 30, "pred_id_to_int": 1, "impure": 2, "set_selected_pred": 2, + "true": 3, "polymorphism_process_clause_info": 3, "ClausesInfo": 13, "Info": 134, @@ -42736,17 +42279,17 @@ "Clauses": 2, "poly_info_get_varset": 4, ".Info": 25, + "VarSet": 15, "poly_info_get_var_types": 6, + "VarTypes": 22, "poly_info_get_rtti_varmaps": 4, "RttiVarMaps": 16, "set_clause_list": 1, "ClausesRep": 2, + "map.init": 7, "TVarNameMap": 2, - "This": 2, - "only": 4, "while": 1, "adding": 1, - "the": 27, "clauses.": 1, "proc_arg_vector": 9, "clause": 2, @@ -42767,6 +42310,7 @@ "fixup_quantification": 1, "Goal": 40, "proc_table": 2, + "ProcId": 31, "ProcTable": 2, ".ProcTable": 1, "ProcInfo0": 2, @@ -42887,7 +42431,6 @@ "poly_arg_vector_set_exist_type_infos": 1, "poly_arg_vector_set_univ_typeclass_infos": 1, "poly_arg_vector_set_exist_typeclass_infos": 1, - "some": 4, "ToLocn": 4, "TheVar": 2, "TheLocn": 2, @@ -42905,6 +42448,8 @@ "PredExistConstraints": 2, "exist_constraints": 1, "ExistQVarsForCall": 2, + "GoalInfo": 44, + "Context": 20, "goal_info_get_context": 4, "make_typeclass_info_vars": 3, "ExistTypeClassVarsMCAs": 2, @@ -42926,6 +42471,7 @@ "ExtraTypeInfoUnifyGoals": 2, "GoalList": 8, "conj_list_to_goal": 6, + "unexpected": 21, "Var1": 5, "Vars1": 2, "Var2": 5, @@ -42977,6 +42523,7 @@ "polymorphism_process_disj": 6, "set_cache_maps_snapshot": 15, "if_then_else": 2, + "Vars": 10, "Cond0": 2, "Then0": 2, "Else0": 2, @@ -42987,6 +42534,7 @@ "SubGoal0": 14, "SubGoal": 16, "switch": 2, + "Var": 13, "CanFail": 4, "Cases0": 4, "polymorphism_process_cases": 5, @@ -43070,6 +42618,7 @@ "VarSetAfter": 2, "MaxVarAfter": 2, "NumReusesAfter": 2, + "expect": 15, "MarkedGoal": 3, "fgt_kept_goal": 1, "fgt_broken_goal": 1, @@ -43077,6 +42626,8 @@ "unify_mode": 2, "Unification0": 8, "_YVar": 1, + "lookup_var_type": 3, + "Type": 18, "unification_typeinfos": 5, "_Changed": 3, "Args": 11, @@ -43097,6 +42648,7 @@ "Y1": 2, "NonLocals0": 10, "goal_info_get_nonlocals": 6, + "set_of_var.union": 3, "NonLocals": 12, "goal_info_set_nonlocals": 6, "type_vars": 2, @@ -43113,15 +42665,15 @@ ".Unification": 5, "complicated_unify": 2, "construct": 1, - "deconstruct": 2, + "assign": 46, "simple_test": 1, "X0": 8, "ConsId0": 5, "Mode0": 4, "TypeOfX": 6, - "Arity": 5, "closure_cons": 1, "ShroudedPredProcId": 2, + "proc": 2, "ProcId0": 3, "unshroud_pred_proc_id": 1, "type_is_higher_order_details": 1, @@ -43145,8 +42697,8 @@ "UnifyExpr": 2, "Unify": 2, "PredArgTypes": 10, - "Functor": 6, "create_fresh_vars": 5, + "module_info_pred_proc_info": 4, "QualifiedPName": 5, "qualified": 1, "cons_id_dummy_type_ctor": 1, @@ -43155,6 +42707,7 @@ "LambdaGoalExpr": 2, "not_builtin": 3, "OutsideVars": 2, + "set_of_var.list_to_set": 3, "InsideVars": 2, "set_of_var.intersect": 1, "LambdaNonLocals": 2, @@ -43202,6 +42755,7 @@ "proc_info_get_declared_determinism": 1, "MaybeDet": 3, "sorry": 1, + "Types": 6, "varset.new_var": 1, "add_var_type": 1, "ctor_defn": 2, @@ -43272,8 +42826,6 @@ "UnivTypeClassArgInfos": 2, "TypeClassArgInfos": 2, "list.filter": 1, - "X": 9, - "semidet": 2, "ExistUnconstrainedVars": 2, "UnivUnconstrainedVars": 2, "foreign_proc_add_typeinfo": 4, @@ -43293,6 +42845,7 @@ "MaybeArgName": 7, "native_if_possible": 2, "SymName": 4, + "Name": 4, "sym_name_to_string_sep": 1, "TypeVarNames": 2, "underscore_and_tvar_name": 3, @@ -43306,6 +42859,7 @@ "VarName": 2, "foreign_code_uses_variable": 1, "TVarName": 2, + "varset.lookup_name": 2, "TVarName0": 1, "TVarName0.": 1, "cache_maps": 3, @@ -43356,6 +42910,7 @@ "ActualArgTypes0": 3, "PredTVarSet": 2, "_PredExistQVars": 1, + "proc_info_get_headvars": 2, "CalleeHeadVars": 2, "proc_info_get_rtti_varmaps": 1, "CalleeRttiVarMaps": 2, @@ -43390,26 +42945,21 @@ "CallGoalExpr": 2, "CallGoal": 2, "rot13_concise.": 1, - "state": 3, "alphabet": 3, "cycle": 4, "rot_n": 2, + "N": 6, "Char": 12, "RotChar": 8, "char_to_string": 1, "CharString": 2, - "if": 15, "sub_string_search": 1, "Index": 3, - "then": 3, "NewIndex": 2, "mod": 1, "index_det": 1, - "else": 8, - "rot13": 11, "read_char": 1, "Res": 8, - "ok": 3, "print": 3, "ErrorCode": 4, "error_message": 1, @@ -43417,17 +42967,802 @@ "stderr_stream": 1, "StdErr": 8, "nl": 1, - "rot13_ralph.": 1, - "io__state": 4, - "io__read_byte": 1, - "Result": 4, - "io__write_byte": 1, - "ErrNo": 2, - "io__error_message": 2, - "z": 1, - "Rot13": 2, - "<": 14, - "rem": 1, + "ll_backend.code_info.": 1, + "hlds.code_model.": 1, + "hlds.hlds_llds.": 1, + "ll_backend.continuation_info.": 1, + "ll_backend.global_data.": 1, + "ll_backend.layout.": 1, + "ll_backend.llds.": 1, + "ll_backend.trace_gen.": 1, + "counter.": 1, + "set_tree234.": 1, + "backend_libs.builtin_ops.": 1, + "backend_libs.proc_label.": 1, + "hlds.arg_info.": 1, + "hlds.hlds_desc.": 1, + "libs.trace_params.": 1, + "ll_backend.code_util.": 1, + "ll_backend.opt_debug.": 1, + "ll_backend.var_locn.": 1, + "parse_tree.mercury_to_mercury.": 1, + "cord.": 1, + "stack.": 1, + "code_info.": 1, + "code_info_init": 2, + "globals": 5, + "abs_follow_vars": 3, + "static_cell_info": 4, + "const_struct_map": 3, + "resume_point_info": 11, + "trace_slot_info": 3, + "containing_goal_map": 4, + "code_info": 208, + "get_globals": 5, + "get_exprn_opts": 2, + "exprn_opts": 3, + "get_module_info": 7, + "get_pred_id": 6, + "get_proc_id": 5, + "get_pred_info": 2, + "get_proc_info": 4, + "get_varset": 3, + "get_var_types": 3, + "vartypes.": 1, + "get_maybe_trace_info": 2, + "trace_info": 3, + "get_emit_trail_ops": 2, + "add_trail_ops": 5, + "get_emit_region_ops": 2, + "add_region_ops": 6, + "get_forward_live_vars": 2, + "set_of_progvar": 10, + "set_forward_live_vars": 2, + "get_instmap": 4, + "instmap": 3, + "set_instmap": 3, + "get_par_conj_depth": 2, + "set_par_conj_depth": 2, + "get_label_counter": 3, + "counter": 6, + "get_succip_used": 2, + "get_layout_info": 4, + "proc_label_layout_info": 3, + "get_proc_trace_events": 2, + "set_proc_trace_events": 2, + "get_closure_layouts": 3, + "closure_proc_id_data": 4, + "get_max_reg_in_use_at_trace": 2, + "set_max_reg_in_use_at_trace": 2, + "get_created_temp_frame": 2, + "get_static_cell_info": 5, + "set_static_cell_info": 5, + "get_alloc_sites": 3, + "set_tree234": 3, + "alloc_site_info": 4, + "set_alloc_sites": 3, + "get_used_env_vars": 2, + "set_used_env_vars": 2, + "get_opt_trail_ops": 2, + "get_opt_region_ops": 2, + "get_auto_comments": 2, + "get_lcmc_null": 2, + "get_containing_goal_map": 3, + "get_containing_goal_map_det": 2, + "get_const_struct_map": 2, + "add_out_of_line_code": 2, + "llds_code": 21, + "get_out_of_line_code": 2, + "get_var_slot_count": 2, + "set_maybe_trace_info": 3, + "get_opt_no_return_calls": 2, + "get_zombies": 2, + "set_zombies": 2, + "get_var_locn_info": 7, + "var_locn_info": 3, + "set_var_locn_info": 4, + "get_temps_in_use": 6, + "lval": 114, + "set_temps_in_use": 4, + "get_fail_info": 13, + "fail_info": 24, + "set_fail_info": 9, + "set_label_counter": 3, + "set_succip_used": 3, + "set_layout_info": 4, + "get_max_temp_slot_count": 2, + "set_max_temp_slot_count": 2, + "get_temp_content_map": 3, + "map": 7, + "slot_contents": 4, + "set_temp_content_map": 2, + "get_persistent_temps": 3, + "set_persistent_temps": 2, + "set_closure_layouts": 3, + "get_closure_seq_counter": 3, + "set_closure_seq_counter": 3, + "set_created_temp_frame": 2, + "code_info_static": 26, + "code_info_loc_dep": 22, + "code_info_persistent": 44, + "cis_globals": 2, + "cis_exprn_opts": 2, + "cis_module_info": 2, + "cis_pred_id": 2, + "cis_proc_id": 2, + "cis_pred_info": 2, + "cis_proc_info": 2, + "cis_proc_label": 1, + "proc_label": 2, + "cis_varset": 2, + "cis_var_slot_count": 2, + "cis_maybe_trace_info": 3, + "cis_opt_no_resume_calls": 2, + "cis_emit_trail_ops": 2, + "cis_opt_trail_ops": 2, + "cis_emit_region_ops": 2, + "cis_opt_region_ops": 2, + "cis_auto_comments": 2, + "cis_lcmc_null": 2, + "cis_containing_goal_map": 2, + "cis_const_struct_map": 2, + "cild_forward_live_vars": 3, + "cild_instmap": 3, + "cild_zombies": 3, + "cild_var_locn_info": 3, + "cild_temps_in_use": 3, + "cild_fail_info": 3, + "cild_par_conj_depth": 3, + "cip_label_num_src": 3, + "cip_store_succip": 3, + "cip_label_info": 3, + "cip_proc_trace_events": 3, + "cip_stackslot_max": 3, + "cip_temp_contents": 3, + "cip_persistent_temps": 3, + "cip_closure_layout_seq": 3, + "cip_closure_layouts": 3, + "cip_max_reg_r_used": 3, + "cip_max_reg_f_used": 2, + "cip_created_temp_frame": 3, + "cip_static_cell_info": 3, + "cip_alloc_sites": 3, + "cip_used_env_vars": 3, + "cip_ts_string_table_size": 3, + "cip_ts_rev_string_table": 4, + "cip_out_of_line_code": 4, + "SaveSuccip": 2, + "Globals": 32, + "FollowVars": 6, + "StaticCellInfo": 8, + "ConstStructMap": 2, + "ResumePoint": 13, + "TraceSlotInfo": 5, + "MaybeContainingGoalMap": 5, + "TSRevStringTable": 2, + "TSStringTableSize": 2, + "CodeInfo": 2, + "ProcLabel": 8, + "make_proc_label": 1, + "proc_info_get_initial_instmap": 1, + "InstMap": 6, + "proc_info_get_liveness_info": 1, + "Liveness": 4, + "CodeModel": 8, + "proc_info_interface_code_model": 2, + "build_input_arg_list": 1, + "ArgList": 2, + "proc_info_get_varset": 1, + "proc_info_get_vartypes": 2, + "proc_info_get_stack_slots": 1, + "StackSlots": 5, + "ExprnOpts": 4, + "init_exprn_opts": 3, + "globals.lookup_bool_option": 18, + "UseFloatRegs": 6, + "FloatRegType": 3, + "reg_f": 1, + "reg_r": 2, + "globals.get_trace_level": 1, + "TraceLevel": 5, + "eff_trace_level_is_none": 2, + "trace_fail_vars": 1, + "FailVars": 3, + "MaybeFailVars": 3, + "EffLiveness": 3, + "init_var_locn_state": 1, + "VarLocnInfo": 12, + "stack.init": 1, + "ResumePoints": 14, + "AllowHijack": 3, + "Hijack": 6, + "allowed": 6, + "not_allowed": 5, + "DummyFailInfo": 2, + "resume_point_unknown": 9, + "may_be_different": 7, + "not_inside_non_condition": 2, + "TempContentMap": 4, + "set.init": 7, + "PersistentTemps": 4, + "TempsInUse": 8, + "Zombies": 2, + "set_of_var.init": 1, + "LayoutMap": 2, + "max_var_slot": 1, + "VarSlotMax": 2, + "trace_reserved_slots": 1, + "FixedSlots": 2, + "int.max": 1, + "SlotMax": 2, + "OptNoReturnCalls": 2, + "UseTrail": 2, + "DisableTrailOps": 2, + "EmitTrailOps": 3, + "do_not_add_trail_ops": 1, + "OptTrailOps": 2, + "OptRegionOps": 2, + "UseRegions": 3, + "EmitRegionOps": 3, + "do_not_add_region_ops": 1, + "AutoComments": 2, + "LCMCNull": 2, + "CodeInfo0": 2, + "init_fail_info": 2, + "will": 1, + "override": 1, + "nested": 1, + "conjunction": 1, + "depth": 1, + "counter.init": 2, + "set_tree234.init": 1, + "cord.empty": 1, + "init_maybe_trace_info": 3, + "CodeInfo1": 2, + "exprn_opts.": 1, + "OptNLG": 3, + "NLG": 3, + "have_non_local_gotos": 1, + "do_not_have_non_local_gotos": 1, + "OptASM": 3, + "ASM": 3, + "have_asm_labels": 1, + "do_not_have_asm_labels": 1, + "OptSGCell": 3, + "SGCell": 3, + "have_static_ground_cells": 1, + "do_not_have_static_ground_cells": 1, + "OptUBF": 3, + "UBF": 3, + "have_unboxed_floats": 1, + "do_not_have_unboxed_floats": 1, + "OptFloatRegs": 3, + "do_not_use_float_registers": 1, + "OptSGFloat": 3, + "SGFloat": 3, + "have_static_ground_floats": 1, + "do_not_have_static_ground_floats": 1, + "OptStaticCodeAddr": 3, + "StaticCodeAddrs": 3, + "have_static_code_addresses": 1, + "do_not_have_static_code_addresses": 1, + "CI": 294, + "proc_info_get_has_tail_call_events": 1, + "HasTailCallEvents": 3, + "tail_call_events": 1, + "get_next_label": 5, + "TailRecLabel": 2, + "MaybeTailRecLabel": 3, + "no_tail_call_events": 1, + "trace_setup": 1, + "TraceInfo": 2, + "MaxRegR": 4, + "MaxRegF": 4, + "cip_max_reg_f_used.": 1, + "TI": 4, + "LV": 2, + "IM": 2, + "Zs": 2, + "EI": 2, + "FI": 2, + "LC": 2, + "SU": 2, + "LI": 2, + "PTE": 2, + "TM": 2, + "CM": 2, + "PT": 2, + "CLS": 2, + "CG": 2, + "MR": 4, + "MF": 1, + "MF.": 1, + "SCI": 2, + "ASI": 2, + "UEV": 2, + "ContainingGoalMap": 2, + "NewCode": 2, + "Code0": 2, + ".CI": 29, + "Code": 36, + "Code.": 1, + "get_stack_slots": 2, + "stack_slots": 1, + "get_follow_var_map": 2, + "abs_follow_vars_map": 1, + "get_next_non_reserved": 2, + "reg_type": 1, + "set_follow_vars": 4, + "pre_goal_update": 3, + "has_subgoals": 2, + "post_goal_update": 3, + "variable_type": 3, + "mer_type.": 1, + "variable_is_of_dummy_type": 2, + "is_dummy_type.": 1, + "search_type_defn": 4, + "hlds_type_defn": 1, + "lookup_type_defn": 2, + "hlds_type_defn.": 1, + "lookup_cheaper_tag_test": 2, + "maybe_cheaper_tag_test.": 1, + "filter_region_vars": 2, + "set_of_progvar.": 2, + "get_proc_model": 2, + "code_model.": 1, + "get_headvars": 2, + "get_arginfo": 2, + "arg_info": 2, + "get_pred_proc_arginfo": 3, + "current_resume_point_vars": 2, + "variable_name": 2, + "make_proc_entry_label": 2, + "code_addr.": 1, + "label": 5, + "succip_is_used": 2, + "add_trace_layout_for_label": 2, + "trace_port": 1, + "forward_goal_path": 1, + "user_event_info": 1, + "layout_label_info": 2, + "get_cur_proc_label": 4, + "get_next_closure_seq_no": 2, + "add_closure_layout": 2, + "add_threadscope_string": 2, + "get_threadscope_rev_string_table": 2, + "add_scalar_static_cell": 2, + "typed_rval": 1, + "data_id": 3, + "add_scalar_static_cell_natural_types": 2, + "rval": 3, + "add_vector_static_cell": 2, + "llds_type": 1, + "add_alloc_site_info": 2, + "prog_context": 1, + "alloc_site_id": 2, + "add_resume_layout_for_label": 2, + "var_locn_get_stack_slots": 1, + "FollowVarMap": 2, + "var_locn_get_follow_var_map": 1, + "RegType": 2, + "NextNonReserved": 2, + "var_locn_get_next_non_reserved": 1, + "VarLocnInfo0": 4, + "var_locn_set_follow_vars": 1, + "HasSubGoals": 3, + "goal_info_get_resume_point": 1, + "no_resume_point": 1, + "resume_point": 1, + "goal_info_get_follow_vars": 1, + "MaybeFollowVars": 3, + "goal_info_get_pre_deaths": 1, + "PreDeaths": 3, + "rem_forward_live_vars": 3, + "maybe_make_vars_forward_dead": 2, + "goal_info_get_pre_births": 1, + "PreBirths": 2, + "add_forward_live_vars": 2, + "does_not_have_subgoals": 2, + "goal_info_get_post_deaths": 2, + "PostDeaths": 5, + "goal_info_get_post_births": 1, + "PostBirths": 3, + "make_vars_forward_live": 1, + "InstMapDelta": 2, + "goal_info_get_instmap_delta": 1, + "InstMap0": 2, + "instmap.apply_instmap_delta": 1, + "TypeInfoLiveness": 2, + "body_should_use_typeinfo_liveness": 1, + "IsDummy": 2, + "VarType": 2, + "check_dummy_type": 1, + "TypeDefn": 6, + "type_to_ctor_det": 1, + "TypeCtor": 2, + "module_info_get_type_table": 1, + "TypeTable": 2, + "search_type_ctor_defn": 1, + "TypeDefnPrime": 2, + "CheaperTagTest": 3, + "get_type_defn_body": 1, + "TypeBody": 2, + "hlds_du_type": 1, + "CheaperTagTestPrime": 2, + "no_cheaper_tag_test": 1, + "ForwardLiveVarsBeforeGoal": 6, + "RegionVars": 2, + "code_info.get_var_types": 1, + "set_of_var.filter": 1, + "is_region_var": 1, + "ArgInfo": 4, + "proc_info_arg_info": 1, + "ResumeVars": 4, + "FailInfo": 19, + "ResumePointStack": 2, + "stack.det_top": 5, + "ResumePointInfo": 2, + "pick_first_resume_point": 1, + "ResumeMap": 8, + "ResumeMapVarList": 2, + "Varset": 2, + "Immed0": 3, + "CodeAddr": 2, + "Immed": 3, + "globals.lookup_int_option": 1, + "ProcsPerFunc": 2, + "CurPredId": 2, + "CurProcId": 2, + "make_entry_label": 1, + "Label": 8, + "C0": 4, + "counter.allocate": 2, + "internal_label": 3, + "Port": 2, + "IsHidden": 2, + "GoalPath": 2, + "MaybeSolverEventInfo": 2, + "Layout": 2, + "Internals0": 8, + "Exec": 5, + "trace_port_layout_info": 1, + "LabelNum": 8, + "entry_label": 2, + "map.search": 2, + "Internal0": 4, + "internal_layout_info": 6, + "Exec0": 3, + "Resume": 5, + "Internal": 8, + "Internals": 6, + "map.det_insert": 3, + "LayoutInfo": 2, + "Resume0": 3, + "get_active_temps_data": 2, + "assoc_list": 1, + "Temps": 2, + "map.select": 1, + "TempsInUseContentMap": 2, + "map.to_assoc_list": 3, + "cis_proc_label.": 1, + "SeqNo": 2, + "ClosureLayout": 2, + "ClosureLayouts": 2, + "String": 2, + "SlotNum": 2, + "Size0": 3, + "RevTable0": 2, + "Size": 4, + "RevTable": 3, + "RevTable.": 1, + "TableSize": 2, + "cip_ts_string_table_size.": 1, + "RvalsTypes": 2, + "DataAddr": 6, + "StaticCellInfo0": 6, + "global_data.add_scalar_static_cell": 1, + "Rvals": 2, + "global_data.add_scalar_static_cell_natural_types": 1, + "Vector": 2, + "global_data.add_vector_static_cell": 1, + "AllocId": 2, + "AllocSite": 3, + "AllocSites0": 2, + "set_tree234.insert": 1, + "AllocSites": 2, + "position_info.": 1, + "branch_end_info.": 1, + "branch_end": 4, + "branch_end_info": 7, + "remember_position": 3, + "position_info": 14, + "reset_to_position": 4, + "reset_resume_known": 2, + "generate_branch_end": 2, + "abs_store_map": 3, + "after_all_branches": 2, + "save_hp_in_branch": 2, + "pos_get_fail_info": 3, + "fail_info.": 2, + "LocDep": 6, + "cild_fail_info.": 1, + "CurCI": 2, + "NextCI": 2, + "Static": 2, + "Persistent": 2, + "NextCI0": 4, + "TempsInUse0": 4, + "set.union": 2, + "BranchStart": 2, + "BranchStartFailInfo": 2, + "BSResumeKnown": 2, + "CurFailInfo": 2, + "CurFailStack": 2, + "CurCurfMaxfr": 2, + "CurCondEnv": 2, + "CurHijack": 2, + "NewFailInfo": 2, + "StoreMap": 8, + "MaybeEnd0": 3, + "MaybeEnd": 6, + "AbsVarLocs": 3, + "assoc_list.values": 1, + "AbsLocs": 2, + "code_util.max_mentioned_abs_regs": 1, + "instmap_is_reachable": 1, + "VarLocs": 2, + "assoc_list.map_values_only": 2, + "abs_locn_to_lval": 2, + "place_vars": 1, + "remake_with_store_map": 4, + "empty": 9, + "EndCodeInfo1": 5, + "EndCodeInfo0": 3, + "FailInfo0": 13, + "FailInfo1": 2, + "ResumeKnown0": 5, + "CurfrMaxfr0": 2, + "CondEnv0": 3, + "Hijack0": 2, + "R": 2, + "ResumeKnown1": 2, + "CurfrMaxfr1": 2, + "CondEnv1": 2, + "Hijack1": 2, + "resume_point_known": 15, + "Redoip0": 3, + "Redoip1": 2, + "ResumeKnown": 21, + "must_be_equal": 11, + "CurfrMaxfr": 24, + "EndCodeInfoA": 2, + "TempsInUse1": 2, + "EndCodeInfo": 2, + "BranchEnd": 2, + "BranchEndCodeInfo": 2, + "BranchEndLocDep": 2, + "VarLocns": 2, + "VarLvals": 2, + "reinit_var_locn_state": 1, + "Slot": 2, + "Pos0": 2, + "Pos": 2, + "CI0": 2, + "CIStatic0": 2, + "CILocDep0": 2, + "CIPersistent0": 2, + "LocDep0": 2, + "CI1": 2, + "save_hp": 1, + "CI2": 2, + "CIStatic": 2, + "CIPersistent": 2, + "resume_map.": 1, + "resume_point_info.": 1, + "disj_hijack_info.": 1, + "prepare_for_disj_hijack": 2, + "code_model": 3, + "disj_hijack_info": 3, + "undo_disj_hijack": 2, + "ite_hijack_info.": 1, + "prepare_for_ite_hijack": 2, + "embedded_stack_frame_id": 3, + "ite_hijack_info": 3, + "ite_enter_then": 2, + "simple_neg_info.": 1, + "enter_simple_neg": 2, + "simple_neg_info": 3, + "leave_simple_neg": 2, + "det_commit_info.": 1, + "prepare_for_det_commit": 2, + "det_commit_info": 6, + "generate_det_commit": 2, + "semi_commit_info.": 1, + "prepare_for_semi_commit": 2, + "semi_commit_info": 6, + "generate_semi_commit": 2, + "effect_resume_point": 2, + "pop_resume_point": 1, + "top_resume_point": 1, + "set_resume_point_to_unknown": 1, + "set_resume_point_and_frame_to_unknown": 1, + "generate_failure": 2, + "fail_if_rval_is_false": 1, + "failure_is_direct_branch": 1, + "code_addr": 8, + "may_use_nondet_tailcall": 1, + "nondet_tail_call": 1, + "produce_vars": 1, + "resume_map": 9, + "flush_resume_vars_to_stack": 1, + "make_resume_point": 1, + "resume_locs": 1, + "generate_resume_point": 2, + "resume_point_vars": 1, + "resume_point_stack_addr": 2, + "stack": 1, + "curfr_vs_maxfr": 2, + "condition_env": 3, + "hijack_allowed": 2, + "orig_only": 2, + "stack_only": 2, + "orig_and_stack": 1, + "stack_and_orig": 1, + "redoip_update": 2, + "has_been_done": 5, + "wont_be_done.": 1, + "resume_point_unknown.": 1, + "may_be_different.": 1, + "inside_non_condition": 6, + "not_inside_non_condition.": 1, + "not_allowed.": 1, + "disj_no_hijack": 4, + "disj_temp_frame": 4, + "disj_quarter_hijack": 4, + "disj_half_hijack": 3, + "disj_full_hijack": 3, + "HijackInfo": 29, + "CondEnv": 12, + "Allow": 12, + "model_det": 2, + "model_semi": 3, + "singleton": 28, + "llds_instr": 64, + "comment": 5, + "model_non": 2, + "create_temp_frame": 4, + "do_fail": 6, + "stack.pop": 1, + "TopResumePoint": 6, + "RestResumePoints": 2, + "stack.is_empty": 1, + "wont_be_done": 2, + "acquire_temp_slot": 15, + "slot_lval": 14, + "redoip_slot": 30, + "curfr": 18, + "non_persistent_temp_slot": 15, + "RedoipSlot": 33, + "maxfr": 42, + "redofr_slot": 14, + "RedofrSlot": 17, + "from_list": 13, + "prevfr_slot": 3, + "pick_stack_resume_point": 3, + "StackLabel": 9, + "LabelConst": 4, + "llconst_code_addr": 6, + "ite_region_info": 5, + "ite_info": 3, + "ite_hijack_type": 2, + "ite_no_hijack": 3, + "ite_temp_frame": 3, + "ite_quarter_hijack": 3, + "ite_half_hijack": 3, + "ite_full_hijack": 3, + "CondCodeModel": 4, + "MaybeEmbeddedFrameId": 5, + "HijackType": 12, + "MaybeRegionInfo": 12, + "MaxfrSlot": 30, + "TempFrameCode": 4, + "MaxfrCode": 7, + "EmbeddedFrameId": 2, + "slot_success_record": 1, + "persistent_temp_slot": 1, + "SuccessRecordSlot": 6, + "InitSuccessCode": 3, + "llconst_false": 1, + "ITEResumePoint": 2, + "ThenCode": 10, + "ElseCode": 7, + "ResumePoints0": 5, + "stack.det_pop": 1, + "HijackResumeKnown": 2, + "OldCondEnv": 2, + "RegionInfo": 2, + "EmbeddedStackFrameId": 2, + "ITEStackResumeCodeAddr": 2, + "llconst_true": 1, + "AfterRegionOp": 3, + "if_val": 1, + "unop": 1, + "logical_not": 1, + "code_label": 2, + "use_and_maybe_pop_region_frame": 1, + "region_ite_nondet_cond_fail": 1, + "goto": 2, + "maybe_pick_stack_resume_point": 1, + "ResumeMap0": 2, + "make_fake_resume_map": 5, + "do_redo": 1, + "is_empty": 1, + "Locns": 2, + "set.make_singleton_set": 1, + "reg": 1, + "region_commit_stack_frame": 5, + "AddTrailOps": 4, + "AddRegionOps": 5, + "CommitGoalInfo": 4, + "DetCommitInfo": 4, + "SaveMaxfrCode": 3, + "save_maxfr": 3, + "MaybeMaxfrSlot": 6, + "maybe_save_trail_info": 2, + "MaybeTrailSlots": 8, + "SaveTrailCode": 4, + "maybe_save_region_commit_frame": 4, + "MaybeRegionCommitFrameInfo": 8, + "SaveRegionCommitFrameCode": 2, + "SaveRegionCommitFrameCode.": 2, + "RestoreMaxfrCode": 3, + "restore_maxfr": 3, + "release_temp_slot": 1, + "maybe_restore_trail_info": 2, + "CommitTrailCode": 4, + "maybe_restore_region_commit_frame": 2, + "SuccessRegionCode": 3, + "_FailureRegionCode": 1, + "SuccessRegionCode.": 1, + "commit_hijack_info": 2, + "commit_temp_frame": 3, + "commit_quarter_hijack": 3, + "commit_half_hijack": 3, + "commit_full_hijack": 3, + "SemiCommitInfo": 4, + "clone_resume_point": 1, + "NewResumePoint": 4, + "stack.push": 1, + "StackLabelConst": 7, + "UseMinimalModelStackCopyCut": 4, + "Components": 4, + "foreign_proc_raw_code": 4, + "cannot_branch_away": 4, + "proc_affects_liveness": 2, + "live_lvals_info": 4, + "proc_does_not_affect_liveness": 2, + "MD": 4, + "proc_may_duplicate": 2, + "MarkCode": 3, + "foreign_proc_code": 2, + "proc_will_not_call_mercury": 2, + "HijackCode": 5, + "UseMinimalModel": 3, + "CutCode": 4, + "SuccessUndoCode": 5, + "FailureUndoCode": 5, + "AfterCommit": 2, + "ResumePointCode": 2, + "FailCode": 2, + "RestoreTrailCode": 2, + "FailureRegionCode": 2, + "SuccLabel": 3, + "GotoSuccLabel": 2, + "SuccLabelCode": 1, + "SuccessCode": 2, + "FailureCode": 2, + "SuccLabelCode.": 1, + "_ForwardLiveVarsBeforeGoal": 1, "rot13_verbose.": 1, "rot13a/2": 1, "table": 1, @@ -43437,323 +43772,17 @@ "equivalents": 1, "fails": 1, "input": 1, - "not": 7, "rot13a": 55, "rot13/2": 1, "Applies": 1, "algorithm": 1, - "a": 10, "character.": 1, "TmpChar": 2, "io__read_char": 1, "io__write_char": 1, "io__stderr_stream": 1, "io__write_string": 2, - "io__nl": 1, - "store.": 1, - "typeclass": 1, - "store": 52, - "T": 52, - "where": 8, - "S": 133, - "instance": 4, - "io.state": 3, - "store.init": 2, - "generic_mutvar": 15, - "io_mutvar": 1, - "store_mutvar": 1, - "store.new_mutvar": 1, - "store.copy_mutvar": 1, - "store.get_mutvar": 1, - "store.set_mutvar": 1, - "<=>": 5, - "new_cyclic_mutvar": 2, - "Func": 4, - "Mutvar": 23, - "Create": 1, - "new": 25, - "variable": 1, - "whose": 2, - "initialized": 2, - "with": 5, - "returned": 1, - "from": 1, - "specified": 1, - "function": 3, - "The": 2, - "argument": 6, - "passed": 2, - "mutvar": 6, - "itself": 4, - "has": 4, - "yet": 1, - "been": 1, - "safe": 2, - "because": 1, - "does": 3, - "get": 2, - "so": 3, - "it": 1, - "can": 1, - "t": 5, - "examine": 1, - "uninitialized": 1, - "predicate": 1, - "useful": 1, - "creating": 1, - "self": 1, - "referential": 1, - "values": 1, - "such": 2, - "as": 5, - "circular": 1, - "linked": 1, - "lists": 1, - "For": 1, - "example": 1, - "clist": 2, - "node": 1, - "store.new_cyclic_mutvar": 1, - "generic_ref": 20, - "io_ref": 1, - "store_ref": 1, - "store.new_ref": 1, - "store.ref_functor": 1, - "store.arg_ref": 1, - "ArgT": 4, - "store.new_arg_ref": 3, - "store.set_ref": 1, - "store.set_ref_value": 1, - "store.copy_ref_value": 1, - "store.extract_ref_value": 1, - "Nasty": 1, - "performance": 2, - "hacks": 1, - "WARNING": 1, - "use": 1, - "of": 10, - "these": 1, - "procedures": 2, - "dangerous": 1, - "Use": 1, - "them": 1, - "last": 1, - "resort": 1, - "critical": 1, - "and": 6, - "shows": 1, - "that": 2, - "using": 1, - "versions": 1, - "bottleneck": 1, - "These": 1, - "may": 1, - "vanish": 1, - "future": 1, - "Mercury": 1, - "unsafe_arg_ref": 1, - "same": 2, - "arg_ref": 12, - "unsafe_new_arg_ref": 1, - "new_arg_ref": 1, - "except": 1, - "they": 4, - "doesn": 1, - "check": 1, - "errors": 1, - "don": 3, - "work": 3, - "no_tag": 1, - "types": 3, - "exactly": 2, - "one": 2, - "functor": 2, - "which": 2, - "arguments": 2, - "occupy": 1, - "word": 2, - "other": 1, - "functors.": 1, - "store.unsafe_arg_ref": 1, - "store.unsafe_new_arg_ref": 1, - "implementation": 1, - "require": 1, - "just": 1, - "real": 1, - "representation": 1, - "pragma": 41, - "foreign_type": 10, - "MR_Word": 24, - "can_pass_as_mercury_type": 5, - "equality": 5, - "store_equal": 7, - "comparison": 5, - "store_compare": 7, - "int32": 1, - "Java": 12, - "Erlang": 3, - "attempt": 2, - "two": 2, - "stores": 2, - "comparison_result": 1, - "compare": 1, - "Mutvars": 1, - "references": 1, - "are": 1, - "each": 1, - "represented": 1, - "pointer": 1, - "single": 1, - "on": 1, - "heap": 1, - "private_builtin.ref": 2, - "ref": 2, - "store.do_init": 6, - "foreign_proc": 28, - "_S0": 16, - "will_not_call_mercury": 28, - "will_not_modify_trail": 7, - "new_mutvar": 5, - "Val": 45, - "S0": 23, - "get_mutvar": 5, - "set_mutvar": 5, - "_S": 12, - "copy_mutvar": 1, - "Copy": 2, - "Value": 4, - "store.unsafe_new_uninitialized_mutvar": 1, - "unsafe_new_uninitialized_mutvar": 4, - "MR_offset_incr_hp_msg": 5, - "MR_SIZE_SLOT_SIZE": 10, - "1": 5, - "MR_ALLOC_ID": 5, - "2": 2, - "MR_define_size_slot": 5, - "0": 2, - "object": 21, - "MutVar": 4, - "Store": 5, - "apply": 1, - "Ref": 41, - "foreign_code": 2, - "public": 17, - "class": 4, - "Object": 9, - "referenced": 4, - "obj": 7, - "Specific": 2, - "field": 20, - "or": 2, - "null": 8, - "specify": 2, - "GetFields": 2, - "return": 6, - "fields": 3, - "any": 2, - "particular": 2, - "order": 2, - "really": 2, - "usable": 2, - "System": 1, - "Reflection": 1, - "FieldInfo": 1, - "Constructors": 2, - "init": 8, - "setField": 4, - "Set": 2, - "according": 2, - "given": 2, - "index": 2, - "void": 4, - "GetType": 1, - "reference": 4, - "getValue": 4, - "GetValue": 1, - "Update": 2, - "setValue": 2, - "SetValue": 1, - "static": 1, - "lang": 28, - "getDeclaredFields": 2, - "reflect": 1, - "Field": 5, - "try": 3, - "getClass": 1, - "catch": 11, - "SecurityException": 1, - "se": 1, - "throw": 11, - "RuntimeException": 11, - "Security": 1, - "manager": 1, - "denied": 1, - "access": 3, - "ArrayIndexOutOfBoundsException": 1, - "e": 13, - "No": 1, - "Exception": 3, - "Unable": 3, - "getMessage": 3, - "IllegalAccessException": 2, - "inaccessible": 2, - "IllegalArgumentException": 2, - "mismatch": 2, - "NullPointerException": 2, - "new_ref": 4, - "ets": 3, - "insert": 1, - "copy_ref_value": 1, - "unsafe_ref_value": 6, - "store.unsafe_ref_value": 1, - "lookup": 1, - "ref_functor": 1, - "canonicalize": 1, - "foreign_decl": 1, - "include": 4, - "mercury_type_info": 1, - "h": 4, - "mercury_heap": 1, - "mercury_misc": 1, - "MR_fatal_error": 5, - "mercury_deconstruct": 1, - "MR_arg": 3, - "ArgNum": 7, - "ArgRef": 22, - "may_not_duplicate": 1, - "MR_TypeInfo": 10, - "arg_type_info": 6, - "exp_arg_type_info": 6, - "MR_DuArgLocn": 2, - "arg_locn": 9, - "TypeInfo_for_T": 2, - "TypeInfo_for_ArgT": 2, - "MR_save_transient_registers": 2, - "MR_NONCANON_ABORT": 2, - "number": 2, - "range": 2, - "MR_compare_type_info": 2, - "MR_COMPARE_EQUAL": 2, - "wrong": 2, - "MR_restore_transient_registers": 2, - "NULL": 2, - "MR_arg_bits": 2, - "store.ref/2": 3, - "MR_arg_value": 2, - "C#": 6, - "store.Ref": 8, - "Ref.getValue": 6, - "*arg_ref": 1, - "*arg_locn": 1, - "&": 7, - "&&": 1, - "ValRef": 1, - "Ref.setValue": 3, - "ValRef.getValue": 2, - "*Ptr": 2, - "Ptr": 4, - "MR_strip_tag": 2, - "Arg": 6 + "io__nl": 1 }, "Monkey": { "Strict": 1, @@ -43870,23 +43899,35 @@ "c": 1 }, "Moocode": { - "@program": 29, + "@verb": 1, "toy": 3, - "wind": 1, - "this.wound": 8, - "+": 39, - ";": 505, - "player": 2, - "tell": 1, + "do_the_work": 3, + "this": 114, + "none": 1, + "@program": 29, + "if": 90, "(": 600, - "this.name": 4, + "this.wound": 8, ")": 593, - "player.location": 1, - "announce": 1, - "player.name": 1, + "object_utils": 1, + "isa": 21, + "this.location": 3, + "room": 1, + "announce_all": 2, + "this.name": 4, + "continue_msg": 1, + ";": 505, + "-": 98, + "fork": 1, + "endfork": 1, + "else": 45, + "wind_down_msg": 1, + "endif": 93, + "<": 13, ".": 30, "while": 15, "read": 1, + "player": 2, "endwhile": 14, "I": 1, "M": 1, @@ -43919,7 +43960,6 @@ "server/core.": 1, "most": 1, "straight": 1, - "-": 98, "forward": 1, "target": 7, "other": 1, @@ -44024,7 +44064,6 @@ "application/x": 27, "moocode": 27, "typeof": 11, - "this": 114, "OBJ": 3, "||": 19, "raise": 23, @@ -44038,18 +44077,15 @@ "name": 9, "}": 112, "args": 26, - "if": 90, "value": 73, "this.variable_map": 3, "[": 99, "]": 102, "E_RANGE": 17, "return": 61, - "else": 45, "tostr": 51, "random": 3, "this.reserved_names": 1, - "endif": 93, "compile": 1, "source": 32, "options": 3, @@ -44074,14 +44110,12 @@ "@compiler": 1, "endfor": 31, "ticks_left": 4, - "<": 13, "seconds_left": 4, "&&": 39, "suspend": 4, "statement.value": 20, "elseif": 41, "_generate": 1, - "isa": 21, "this.plastic.sign_operator_proto": 1, "|": 9, "statement.first": 18, @@ -44094,6 +44128,7 @@ "respond_to": 9, "@code": 28, "@this": 13, + "+": 39, "i": 29, "length": 11, "LIST": 6, @@ -44360,17 +44395,11 @@ "result.type": 1, "result.first": 1, "result.second": 1, - "@verb": 1, - "do_the_work": 3, - "none": 1, - "object_utils": 1, - "this.location": 3, - "room": 1, - "announce_all": 2, - "continue_msg": 1, - "fork": 1, - "endfork": 1, - "wind_down_msg": 1 + "wind": 1, + "tell": 1, + "player.location": 1, + "announce": 1, + "player.name": 1 }, "MoonScript": { "types": 2, @@ -45170,10 +45199,6 @@ "inherit": 1 }, "Nu": { - "SHEBANG#!nush": 1, - "(": 14, - "puts": 1, - ")": 14, ";": 22, "main.nu": 1, "Entry": 1, @@ -45183,7 +45208,9 @@ "Nu": 1, "program.": 1, "Copyright": 1, + "(": 14, "c": 1, + ")": 14, "Tim": 1, "Burks": 1, "Neon": 1, @@ -45231,69 +45258,39 @@ "event": 1, "loop": 1, "NSApplicationMain": 1, - "nil": 1 + "nil": 1, + "SHEBANG#!nush": 1, + "puts": 1 }, "OCaml": { - "{": 11, - "shared": 1, - "open": 4, - "Eliom_content": 1, - "Html5.D": 1, - "Eliom_parameter": 1, - "}": 13, - "server": 2, + "type": 2, + "a": 4, + "-": 22, + "unit": 5, + ")": 23, "module": 5, - "Example": 1, - "Eliom_registration.App": 1, - "(": 21, + "Ops": 2, "struct": 5, "let": 13, - "application_name": 1, - "end": 5, - ")": 23, - "main": 2, - "Eliom_service.service": 1, - "path": 1, - "[": 13, - "]": 13, - "get_params": 1, - "unit": 5, - "client": 1, - "hello_popup": 2, - "Dom_html.window##alert": 1, - "Js.string": 1, - "_": 2, - "Example.register": 1, - "service": 1, - "fun": 9, - "-": 22, - "Lwt.return": 1, - "html": 1, - "head": 1, - "title": 1, - "pcdata": 4, - "body": 1, - "h1": 1, - ";": 14, - "p": 1, - "h2": 1, - "a": 4, - "a_onclick": 1, - "type": 2, - "Ops": 2, + "(": 21, "@": 6, "f": 10, "k": 21, "|": 15, "x": 14, + "end": 5, + "open": 4, "List": 1, "rec": 3, "map": 3, "l": 8, "match": 4, "with": 4, + "[": 13, + "]": 13, "hd": 6, "tl": 6, + "fun": 9, "fold": 2, "acc": 5, "Option": 1, @@ -45302,11 +45299,14 @@ "Some": 5, "Lazy": 1, "option": 1, + ";": 14, "mutable": 1, "waiters": 5, + "}": 13, "make": 1, "push": 4, "cps": 7, + "{": 11, "value": 3, "force": 1, "l.value": 2, @@ -45318,7 +45318,36 @@ "l.push": 1, "<": 1, "get_state": 1, - "lazy_from_val": 1 + "lazy_from_val": 1, + "_": 2, + "shared": 1, + "Eliom_content": 1, + "Html5.D": 1, + "Eliom_parameter": 1, + "server": 2, + "Example": 1, + "Eliom_registration.App": 1, + "application_name": 1, + "main": 2, + "Eliom_service.service": 1, + "path": 1, + "get_params": 1, + "client": 1, + "hello_popup": 2, + "Dom_html.window##alert": 1, + "Js.string": 1, + "Example.register": 1, + "service": 1, + "Lwt.return": 1, + "html": 1, + "head": 1, + "title": 1, + "pcdata": 4, + "body": 1, + "h1": 1, + "p": 1, + "h2": 1, + "a_onclick": 1 }, "Objective-C": { "//": 317, @@ -46277,17 +46306,725 @@ "retryCount": 3, "shouldAttemptPersistentConnection": 2, "@end": 37, - "": 1, - "#else": 8, - "": 1, + "kTextStyleType": 2, "@": 258, + "kViewStyleType": 2, + "kImageStyleType": 2, + "///////////////////////////////////////////////////////////////////////////////////////////////////": 24, + "@implementation": 13, + "StyleViewController": 2, + "initWithStyleName": 1, + "name": 7, + "styleType": 3, + "super": 25, + "initWithNibName": 3, + "bundle": 3, + "self.title": 2, + "_style": 8, + "TTStyleSheet": 4, + "globalStyleSheet": 4, + "styleWithSelector": 4, + "_styleHighlight": 6, + "forState": 4, + "UIControlStateHighlighted": 1, + "_styleDisabled": 6, + "UIControlStateDisabled": 1, + "_styleSelected": 6, + "UIControlStateSelected": 1, + "_styleType": 6, + "copy": 4, + "return": 165, + "TT_RELEASE_SAFELY": 12, + "UIViewController": 2, + "addTextView": 5, + "title": 2, + "frame": 38, + "CGRect": 41, + "style": 29, + "TTStyle*": 7, + "textFrame": 3, + "TTRectInset": 3, + "UIEdgeInsetsMake": 3, + "StyleView*": 2, + "StyleView": 2, + "alloc": 47, + "initWithFrame": 12, + "text.text": 1, + "TTStyleContext*": 1, + "context": 4, + "TTStyleContext": 1, + "context.frame": 1, + "context.delegate": 1, + "context.font": 1, + "UIFont": 3, + "systemFontOfSize": 2, + "systemFontSize": 1, + "CGSize": 5, + "addToSize": 1, + "CGSizeZero": 1, + "size.width": 1, + "size.height": 1, + "textFrame.size": 1, + "text.frame": 1, + "text.style": 1, + "text.backgroundColor": 1, + "UIColor": 3, + "colorWithRed": 3, + "green": 3, + "blue": 3, + "alpha": 3, + "text.autoresizingMask": 1, + "UIViewAutoresizingFlexibleWidth": 4, + "|": 13, + "UIViewAutoresizingFlexibleBottomMargin": 3, + "self.view": 4, + "addSubview": 8, + "addView": 5, + "viewFrame": 4, + "view": 11, + "view.style": 2, + "view.backgroundColor": 2, + "view.autoresizingMask": 2, + "addImageView": 5, + "TTImageView*": 1, + "TTImageView": 1, + "view.urlPath": 1, + "imageFrame": 2, + "view.frame": 2, + "imageFrame.size": 1, + "view.image.size": 1, + "loadView": 4, + "self.view.bounds": 2, + "frame.size.height": 15, + "isEqualToString": 13, + "frame.origin.y": 16, + "else": 35, + "PlaygroundViewController": 2, + "UIScrollView*": 1, + "_scrollView": 9, + "TUITableViewStylePlain": 2, + "regular": 1, + "table": 7, + "TUITableViewStyleGrouped": 1, + "grouped": 1, + "stick": 1, + "top": 8, + "scroll": 3, + "TUITableViewStyle": 4, + "TUITableViewScrollPositionNone": 2, + "TUITableViewScrollPositionTop": 2, + "TUITableViewScrollPositionMiddle": 1, + "TUITableViewScrollPositionBottom": 1, + "TUITableViewScrollPositionToVisible": 3, + "supported": 1, + "arg": 11, + "TUITableViewScrollPosition": 5, + "TUITableViewInsertionMethodBeforeIndex": 1, + "NSOrderedAscending": 4, + "TUITableViewInsertionMethodAtIndex": 1, + "NSOrderedSame": 1, + "TUITableViewInsertionMethodAfterIndex": 1, + "NSOrderedDescending": 4, + "TUITableViewInsertionMethod": 3, + "TUITableViewCell": 23, + "@protocol": 3, + "TUITableViewDataSource": 2, + "TUITableView": 25, + "TUITableViewDelegate": 1, + "": 1, + "TUIScrollViewDelegate": 1, + "CGFloat": 44, + "tableView": 45, + "heightForRowAtIndexPath": 2, + "TUIFastIndexPath": 89, + "indexPath": 47, + "@optional": 2, + "willDisplayCell": 2, + "cell": 21, + "forRowAtIndexPath": 2, + "added": 5, + "subview": 1, + "didSelectRowAtIndexPath": 3, + "happens": 4, + "left/right": 2, + "mouse": 2, + "down": 1, + "key": 32, + "up/down": 1, + "didDeselectRowAtIndexPath": 3, + "didClickRowAtIndexPath": 1, + "withEvent": 2, + "NSEvent": 3, + "event": 8, + "look": 1, + "clickCount": 1, + "TUITableView*": 1, + "shouldSelectRowAtIndexPath": 3, + "TUIFastIndexPath*": 1, + "forEvent": 3, + "NSEvent*": 1, + "NSMenu": 1, + "menuForRowAtIndexPath": 1, + "tableViewWillReloadData": 3, + "tableViewDidReloadData": 3, + "targetIndexPathForMoveFromRowAtIndexPath": 1, + "fromPath": 1, + "toProposedIndexPath": 1, + "proposedPath": 1, + "TUIScrollView": 1, + "__unsafe_unretained": 2, + "": 4, + "_dataSource": 6, + "weak": 2, + "_sectionInfo": 27, + "TUIView": 17, + "_pullDownView": 4, + "_headerView": 8, + "_lastSize": 1, + "_contentHeight": 7, + "NSMutableIndexSet": 6, + "_visibleSectionHeaders": 6, + "_visibleItems": 14, + "_reusableTableCells": 5, + "_selectedIndexPath": 9, + "_indexPathShouldBeFirstResponder": 2, + "_futureMakeFirstResponderToken": 2, + "_keepVisibleIndexPathForReload": 2, + "_relativeOffsetForReload": 2, + "drag": 1, + "reorder": 1, + "_dragToReorderCell": 5, + "CGPoint": 7, + "_currentDragToReorderLocation": 1, + "_currentDragToReorderMouseOffset": 1, + "_currentDragToReorderIndexPath": 1, + "_currentDragToReorderInsertionMethod": 1, + "_previousDragToReorderIndexPath": 1, + "_previousDragToReorderInsertionMethod": 1, + "struct": 20, + "animateSelectionChanges": 3, + "forceSaveScrollPosition": 1, + "derepeaterEnabled": 1, + "layoutSubviewsReentrancyGuard": 1, + "didFirstLayout": 1, + "dataSourceNumberOfSectionsInTableView": 1, + "delegateTableViewWillDisplayCellForRowAtIndexPath": 1, + "maintainContentOffsetAfterReload": 3, + "_tableFlags": 1, + "creation.": 1, + "calls": 1, + "UITableViewStylePlain": 1, + "unsafe_unretained": 2, + "dataSource": 2, + "": 4, + "readwrite": 1, + "reloadData": 3, + "reloadDataMaintainingVisibleIndexPath": 2, + "relativeOffset": 5, + "reloadLayout": 2, + "numberOfSections": 10, + "numberOfRowsInSection": 9, + "section": 60, + "rectForHeaderOfSection": 4, + "rectForSection": 3, + "rectForRowAtIndexPath": 7, + "NSIndexSet": 4, + "indexesOfSectionsInRect": 2, + "rect": 10, + "indexesOfSectionHeadersInRect": 2, + "indexPathForCell": 2, + "returns": 4, + "visible": 16, + "indexPathsForRowsInRect": 3, + "indexPathForRowAtPoint": 2, + "point": 11, + "indexPathForRowAtVerticalOffset": 2, + "offset": 23, + "indexOfSectionWithHeaderAtPoint": 2, + "indexOfSectionWithHeaderAtVerticalOffset": 2, + "enumerateIndexPathsUsingBlock": 2, + "*indexPath": 11, + "*stop": 7, + "block": 18, + "enumerateIndexPathsWithOptions": 2, + "NSEnumerationOptions": 4, + "options": 6, + "usingBlock": 6, + "enumerateIndexPathsFromIndexPath": 4, + "fromIndexPath": 6, + "toIndexPath": 12, + "withOptions": 4, + "headerViewForSection": 6, + "cellForRowAtIndexPath": 9, + "index": 11, + "range": 8, + "visibleCells": 3, + "order": 1, + "sortedVisibleCells": 2, + "bottom": 6, + "indexPathsForVisibleRows": 2, + "scrollToRowAtIndexPath": 3, + "atScrollPosition": 3, + "scrollPosition": 9, + "animated": 27, + "indexPathForSelectedRow": 4, + "representing": 1, + "row": 36, + "selection.": 1, + "indexPathForFirstRow": 2, + "indexPathForLastRow": 2, + "selectRowAtIndexPath": 3, + "deselectRowAtIndexPath": 3, + "strong": 4, + "*pullDownView": 1, + "pullDownViewIsVisible": 3, + "*headerView": 6, + "dequeueReusableCellWithIdentifier": 2, + "identifier": 7, + "": 1, + "@required": 1, + "canMoveRowAtIndexPath": 2, + "moveRowAtIndexPath": 2, + "numberOfSectionsInTableView": 3, + "NSIndexPath": 5, + "indexPathForRow": 11, + "NSUInteger": 93, + "inSection": 11, + "TTViewController": 1, + "@private": 2, + "": 2, + "argc": 1, + "char": 19, + "*argv": 1, + "NSLog": 4, + "HEADER_Z_POSITION": 2, + "beginning": 1, + "height": 19, + "TUITableViewRowInfo": 3, + "TUITableViewSection": 16, + "NSObject": 5, + "*_tableView": 1, + "*_headerView": 1, + "reusable": 1, + "similar": 1, + "UITableView": 1, + "sectionIndex": 23, + "numberOfRows": 13, + "sectionHeight": 9, + "sectionOffset": 8, + "*rowInfo": 1, + "@synthesize": 7, + "initWithNumberOfRows": 2, + "n": 7, + "_tableView": 3, + "rowInfo": 7, + "calloc": 5, + "sizeof": 13, + "free": 4, + "_setupRowHeights": 2, + "*header": 1, + "self.headerView": 2, + "roundf": 2, + "header.frame.size.height": 1, + "i": 41, + "<": 56, + "h": 3, + "_tableView.delegate": 1, + ".offset": 2, + ".height": 4, + "rowHeight": 2, + "sectionRowOffset": 2, + "tableRowOffset": 2, + "headerHeight": 4, + "self.headerView.frame.size.height": 1, + "headerView": 14, + "_tableView.dataSource": 3, + "respondsToSelector": 8, + "@selector": 28, + "_headerView.autoresizingMask": 1, + "TUIViewAutoresizingFlexibleWidth": 1, + "_headerView.layer.zPosition": 1, + "Private": 1, + "_updateSectionInfo": 2, + "_updateDerepeaterViews": 2, + "pullDownView": 1, + "_tableFlags.animateSelectionChanges": 3, + "setDelegate": 4, + "d": 11, + "_tableFlags.delegateTableViewWillDisplayCellForRowAtIndexPath": 1, + "call": 8, + "setDataSource": 1, + "_tableFlags.dataSourceNumberOfSectionsInTableView": 2, + "setAnimateSelectionChanges": 1, + "count": 99, + "objectAtIndex": 8, + "*s": 3, + "y": 12, + "CGRectMake": 8, + "self.bounds.size.width": 4, + "CGRectZero": 5, + "indexPath.section": 3, + "indexPath.row": 1, + "*section": 8, + "removeFromSuperview": 4, + "removeAllIndexes": 2, + "*sections": 1, + "initWithCapacity": 2, + "bounds": 2, + ".size.height": 1, + "self.contentInset.top*2": 1, + "section.sectionOffset": 1, + "sections": 4, + "addObject": 16, + "self.contentInset.bottom": 1, + "_enqueueReusableCell": 2, + "*identifier": 1, + "cell.reuseIdentifier": 1, + "*array": 9, + "array": 84, + "setObject": 9, + "forKey": 9, + "*c": 1, + "lastObject": 1, + "c": 7, + "removeLastObject": 1, + "prepareForReuse": 1, + "allValues": 1, "static": 102, + "SortCells": 1, + "*a": 2, + "*b": 2, + "*ctx": 1, + "a.frame.origin.y": 2, + "b.frame.origin.y": 2, + "*v": 2, + "v": 4, + "sortedArrayUsingComparator": 1, + "NSComparator": 1, + "NSComparisonResult": 1, + "INDEX_PATHS_FOR_VISIBLE_ROWS": 4, + "allKeys": 1, + "*i": 4, + "*cell": 7, + "*indexes": 2, + "CGRectIntersectsRect": 5, + "indexes": 4, + "addIndex": 3, + "*indexPaths": 1, + "arrayWithCapacity": 2, + "cellRect": 7, + "indexPaths": 2, + "CGRectContainsPoint": 1, + "cellRect.origin.y": 1, + "<=>": 15, + "origin": 1, + "brief": 1, + "Obtain": 1, + "whose": 2, + "specified": 1, + "exists": 1, + "negative": 1, + "returned": 1, + "param": 1, + "p": 3, + "0": 2, + "width": 1, + "point.y": 1, + "section.headerView": 9, + "sectionLowerBound": 2, + "fromIndexPath.section": 1, + "sectionUpperBound": 3, + "toIndexPath.section": 1, + "rowLowerBound": 2, + "fromIndexPath.row": 1, + "rowUpperBound": 3, + "toIndexPath.row": 1, + "irow": 3, + "start": 3, + "lower": 1, + "bound": 1, + "iteration...": 1, + "rowCount": 3, + "j": 5, + "||": 42, + "FALSE": 2, + "&": 36, + "...then": 1, + "zero": 1, + "iterations": 1, + "_topVisibleIndexPath": 1, + "*topVisibleIndex": 1, + "sortedArrayUsingSelector": 1, + "topVisibleIndex": 2, + "setFrame": 2, + "f": 8, + "_tableFlags.forceSaveScrollPosition": 1, + "setContentOffset": 2, + "_tableFlags.didFirstLayout": 1, + "prevent": 2, + "auto": 2, + "layout": 3, + "pinned": 5, + "isKindOfClass": 2, + "TUITableViewSectionHeader": 5, + "class": 30, + ".pinnedToViewport": 2, + "TRUE": 1, + "pinnedHeader": 1, + "CGRectGetMaxY": 2, + "headerFrame": 4, + "pinnedHeader.frame.origin.y": 1, + "intersecting": 1, + "push": 1, + "upwards.": 1, + "pinnedHeaderFrame": 2, + "pinnedHeader.frame": 2, + "pinnedHeaderFrame.origin.y": 1, + "notify": 3, + "section.headerView.frame": 1, + "setNeedsLayout": 3, + "section.headerView.superview": 1, + "remove": 4, + "offscreen": 2, + "toRemove": 1, + "enumerateIndexesUsingBlock": 1, + "removeIndex": 1, + "_layoutCells": 3, + "visibleCellsNeedRelayout": 5, + "remaining": 1, + "cells": 7, + "cell.frame": 1, + "cell.layer.zPosition": 1, + "visibleRect": 3, + "Example": 1, + "old": 5, + "add": 5, + "*oldVisibleIndexPaths": 1, + "*newVisibleIndexPaths": 1, + "*indexPathsToRemove": 1, + "oldVisibleIndexPaths": 2, + "mutableCopy": 2, + "indexPathsToRemove": 2, + "removeObjectsInArray": 2, + "newVisibleIndexPaths": 2, + "*indexPathsToAdd": 1, + "indexPathsToAdd": 2, + "newly": 1, + "superview": 1, + "bringSubviewToFront": 1, + "self.contentSize": 3, + "headerViewRect": 3, + "s.height": 3, + "_headerView.frame.size.height": 2, + "visible.size.width": 3, + "_headerView.frame": 1, + "_headerView.hidden": 4, + "show": 2, + "pullDownRect": 4, + "_pullDownView.frame.size.height": 2, + "_pullDownView.hidden": 4, + "_pullDownView.frame": 1, + "self.delegate": 10, + "recycle": 1, + "regenerated": 3, + "layoutSubviews": 5, + "because": 1, + "might": 4, + "dragged": 1, + "clear": 3, + "removeAllObjects": 1, + "any": 3, + "re": 9, + "laid": 1, + "next": 2, + "_tableFlags.layoutSubviewsReentrancyGuard": 3, + "setAnimationsEnabled": 1, + "CATransaction": 3, + "begin": 1, + "setDisableActions": 1, + "_preLayoutCells": 2, + "munge": 2, + "contentOffset": 2, + "_layoutSectionHeaders": 2, + "_tableFlags.derepeaterEnabled": 1, + "commit": 1, + "r": 6, + "its": 9, + "our": 6, + "selected": 2, + "overlapped": 1, + "r.size.height": 4, + "headerFrame.size.height": 1, + "switch": 3, + "case": 8, + "nothing": 2, + "break": 13, + "r.origin.y": 1, + "v.size.height": 2, + "scrollRectToVisible": 2, + "sec": 3, + "_makeRowAtIndexPathFirstResponder": 2, + "responder": 2, + "made": 1, + "acceptsFirstResponder": 1, + "self.nsWindow": 3, + "makeFirstResponderIfNotAlreadyInResponderChain": 1, + "futureMakeFirstResponderRequestToken": 1, + "*oldIndexPath": 1, + "isEqual": 4, + "oldIndexPath": 2, + "just": 4, + "setSelected": 2, + "already": 4, + "setNeedsDisplay": 2, + "selection": 3, + "actually": 2, + "NSResponder": 1, + "*firstResponder": 1, + "firstResponder": 3, + "indexPathForFirstVisibleRow": 2, + "*firstIndexPath": 1, + "firstIndexPath": 4, + "indexPathForLastVisibleRow": 2, + "*lastIndexPath": 5, + "lastIndexPath": 8, + "performKeyAction": 2, + "repeative": 1, + "press": 1, + "noCurrentSelection": 2, + "isARepeat": 1, + "TUITableViewCalculateNextIndexPathBlock": 3, + "selectValidIndexPath": 3, + "*startForNoSelection": 2, + "calculateNextIndexPath": 4, + "NSParameterAssert": 15, + "foundValidNextRow": 4, + "*newIndexPath": 1, + "newIndexPath": 6, + "startForNoSelection": 1, + "_delegate": 2, + "self.animateSelectionChanges": 1, + "charactersIgnoringModifiers": 1, + "characterAtIndex": 1, + "NSUpArrowFunctionKey": 1, + "lastIndexPath.section": 2, + "lastIndexPath.row": 2, + "rowsInSection": 7, + "NSDownArrowFunctionKey": 1, + "_tableFlags.maintainContentOffsetAfterReload": 2, + "setMaintainContentOffsetAfterReload": 1, + "newValue": 2, + "indexPathWithIndexes": 1, + "indexAtPosition": 2, + "#include": 18, + "": 1, + "": 2, + "": 2, + "": 1, + "": 1, + "#ifdef": 10, + "__OBJC__": 4, + "": 2, + "": 2, + "": 2, + "": 1, + "": 2, + "": 1, + "__cplusplus": 2, + "NSINTEGER_DEFINED": 3, + "defined": 16, + "__LP64__": 4, + "NS_BUILD_32_LIKE_64": 3, + "NSIntegerMin": 3, + "LONG_MIN": 3, + "NSIntegerMax": 4, + "LONG_MAX": 3, + "NSUIntegerMax": 7, + "ULONG_MAX": 3, + "#else": 8, + "INT_MIN": 3, + "INT_MAX": 2, + "UINT_MAX": 3, + "_JSONKIT_H_": 3, + "__GNUC__": 14, + "__APPLE_CC__": 2, + "JK_DEPRECATED_ATTRIBUTE": 6, + "__attribute__": 3, + "deprecated": 1, + "JSONKIT_VERSION_MAJOR": 1, + "JSONKIT_VERSION_MINOR": 1, + "JKFlags": 5, + "JKParseOptionNone": 1, + "JKParseOptionStrict": 1, + "JKParseOptionComments": 2, + "<<": 16, + "JKParseOptionUnicodeNewlines": 2, + "JKParseOptionLooseUnicode": 2, + "JKParseOptionPermitTextAfterValidJSON": 2, + "JKParseOptionValidFlags": 1, + "JKParseOptionFlags": 12, + "JKSerializeOptionNone": 3, + "JKSerializeOptionPretty": 2, + "JKSerializeOptionEscapeUnicode": 2, + "JKSerializeOptionEscapeForwardSlashes": 2, + "JKSerializeOptionValidFlags": 1, + "JKSerializeOptionFlags": 16, + "JKParseState": 18, + "Opaque": 1, + "private": 1, + "type.": 3, + "JSONDecoder": 2, + "*parseState": 16, + "decoder": 1, + "decoderWithParseOptions": 1, + "parseOptionFlags": 11, + "initWithParseOptions": 1, + "clearCache": 1, + "parseUTF8String": 2, + "size_t": 23, + "Deprecated": 4, + "JSONKit": 11, + "v1.4.": 4, + "objectWithUTF8String": 4, + "instead.": 4, + "parseJSONData": 2, + "jsonData": 6, + "objectWithData": 7, + "mutableObjectWithUTF8String": 2, + "mutableObjectWithData": 2, + "////////////": 4, + "Deserializing": 1, + "methods": 2, + "JSONKitDeserializing": 2, + "objectFromJSONString": 1, + "objectFromJSONStringWithParseOptions": 2, + "mutableObjectFromJSONString": 1, + "mutableObjectFromJSONStringWithParseOptions": 2, + "objectFromJSONData": 1, + "objectFromJSONDataWithParseOptions": 2, + "mutableObjectFromJSONData": 1, + "mutableObjectFromJSONDataWithParseOptions": 2, + "Serializing": 1, + "JSONKitSerializing": 3, + "JSONData": 3, + "Invokes": 2, + "JSONDataWithOptions": 8, + "includeQuotes": 6, + "serializeOptions": 14, + "JSONString": 3, + "JSONStringWithOptions": 8, + "serializeUnsupportedClassesUsingDelegate": 4, + "__BLOCKS__": 1, + "JSONKitSerializingBlockAdditions": 2, + "serializeUnsupportedClassesUsingBlock": 4, + "Foo": 2, + "": 1, + "": 1, "*defaultUserAgent": 1, "*ASIHTTPRequestRunLoopMode": 1, "CFOptionFlags": 1, "kNetworkEvents": 1, "kCFStreamEventHasBytesAvailable": 1, - "|": 13, "kCFStreamEventEndEncountered": 1, "kCFStreamEventErrorOccurred": 1, "*sessionCredentialsStore": 1, @@ -46367,7 +47104,6 @@ "NSNotification": 2, "note": 1, "performBlockOnMainThread": 2, - "block": 18, "releaseBlocksOnMainThread": 4, "releaseBlocks": 3, "blocks": 16, @@ -46380,11 +47116,8 @@ "*readStream": 1, "readStreamIsScheduled": 1, "setSynchronous": 2, - "@implementation": 13, "initialize": 1, - "class": 30, "persistentConnectionsPool": 3, - "alloc": 47, "connectionsLock": 3, "progressLock": 1, "bandwidthThrottlingLock": 1, @@ -46392,7 +47125,6 @@ "sessionCredentialsLock": 1, "delegateAuthenticationLock": 1, "bandwidthUsageTracker": 1, - "initWithCapacity": 2, "ASIRequestTimedOutError": 1, "initWithDomain": 5, "dictionaryWithObjectsAndKeys": 10, @@ -46422,7 +47154,6 @@ "setRequestCookies": 2, "autorelease": 21, "setDidStartSelector": 1, - "@selector": 28, "setDidReceiveResponseHeadersSelector": 1, "setWillRedirectSelector": 1, "willRedirectToURL": 1, @@ -46431,7 +47162,6 @@ "setDidReceiveDataSelector": 1, "setCancelledLock": 1, "setDownloadCache": 3, - "return": 165, "ASIUseDefaultCachePolicy": 1, "*request": 1, "setCachePolicy": 1, @@ -46477,10 +47207,7 @@ "requestID": 2, "dataDecompressor": 1, "userAgentString": 1, - "super": 25, "*blocks": 1, - "array": 84, - "addObject": 16, "performSelectorOnMainThread": 2, "waitUntilDone": 4, "isMainThread": 2, @@ -46488,8 +47215,6 @@ "exits": 1, "setRequestHeaders": 2, "dictionaryWithCapacity": 2, - "setObject": 9, - "forKey": 9, "Are": 1, "submitting": 1, "disk": 1, @@ -46507,8 +47232,6 @@ "ASIDataCompressor": 2, "compressDataFromFile": 1, "toFile": 1, - "&": 36, - "else": 35, "setPostLength": 3, "NSFileManager": 1, "attributesOfItemAtPath": 1, @@ -46520,8 +47243,6 @@ "compressData": 1, "setCompressedPostBody": 1, "compressedBody": 1, - "isEqualToString": 13, - "||": 42, "setHaveBuiltPostBody": 1, "setupPostBody": 3, "setPostBodyFilePath": 1, @@ -46534,13 +47255,9 @@ "appendData": 2, "*stream": 1, "initWithFileAtPath": 1, - "NSUInteger": 93, "bytesRead": 5, "hasBytesAvailable": 1, - "char": 19, "*256": 1, - "sizeof": 13, - "break": 13, "dataWithBytes": 1, "*m": 1, "unlock": 20, @@ -46548,11 +47265,8 @@ "newRequestMethod": 3, "*u": 1, "u": 4, - "isEqual": 4, "NULL": 152, "setRedirectURL": 2, - "d": 11, - "setDelegate": 4, "newDelegate": 6, "q": 2, "setQueue": 2, @@ -46583,7 +47297,6 @@ "runLoopMode": 2, "beforeDate": 1, "distantFuture": 1, - "start": 3, "addOperation": 1, "concurrency": 1, "isConcurrent": 1, @@ -46604,12 +47317,10 @@ "proceed.": 1, "setDidUseCachedResponse": 1, "Must": 1, - "call": 8, "create": 1, "needs": 1, "mainRequest": 9, "ll": 6, - "already": 4, "CFHTTPMessageRef": 3, "Create": 1, "request.": 1, @@ -46622,10 +47333,8 @@ "//If": 2, "let": 8, "generate": 1, - "its": 9, "Even": 1, "chance": 2, - "add": 5, "ASIS3Request": 1, "does": 3, "process": 1, @@ -46634,7 +47343,6 @@ "*exception": 1, "*underlyingError": 1, "exception": 3, - "name": 7, "reason": 1, "NSLocalizedFailureReasonErrorKey": 1, "underlyingError": 1, @@ -46644,20 +47352,15 @@ "*credentials": 1, "auth": 2, "basic": 3, - "any": 3, "cached": 2, - "key": 32, "challenge": 1, "apply": 2, "like": 1, "CFHTTPMessageApplyCredentialDictionary": 2, "CFDictionaryRef": 1, "setAuthenticationScheme": 1, - "happens": 4, "%": 30, - "re": 9, "retrying": 1, - "our": 6, "measure": 1, "throttled": 1, "setPostBodyReadStream": 2, @@ -46681,8 +47384,6 @@ "CFTypeRef": 1, "sslProperties": 2, "*certificates": 1, - "arrayWithCapacity": 2, - "count": 99, "*oldStream": 1, "redirecting": 2, "connecting": 2, @@ -46691,7 +47392,6 @@ "Check": 1, "expired": 1, "timeIntervalSinceNow": 1, - "<": 56, "DEBUG_PERSISTENT_CONNECTIONS": 3, "removeObject": 2, "//Some": 1, @@ -46699,15 +47399,12 @@ "there": 1, "one": 1, "We": 7, - "just": 4, - "old": 5, "//lists.apple.com/archives/Macnetworkprog/2006/Mar/msg00119.html": 1, "oldStream": 4, "streamSuccessfullyOpened": 1, "setConnectionCanBeReused": 2, "Record": 1, "started": 1, - "nothing": 2, "setLastActivityTime": 1, "setStatusTimer": 2, "timerWithTimeInterval": 1, @@ -46722,7 +47419,6 @@ "reliable": 1, "way": 1, "track": 1, - "strong": 4, "slow.": 1, "secondsSinceLastActivity": 1, "*1.5": 1, @@ -46730,7 +47426,6 @@ "checking": 1, "told": 1, "us": 2, - "auto": 2, "resuming": 1, "Range": 1, "take": 1, @@ -46742,7 +47437,6 @@ "unsignedLongLongValue": 1, "middle": 1, "said": 1, - "might": 4, "MaxValue": 2, "UIProgressView": 2, "double": 3, @@ -46823,7 +47517,6 @@ "setNeedsRedirect": 1, "means": 1, "manually": 1, - "added": 5, "those": 1, "global": 1, "But": 1, @@ -46869,123 +47562,85 @@ "properties": 1, "ASIAuthenticationDialog": 2, "had": 1, - "Foo": 2, - "NSObject": 5, - "": 2, + "SBJsonParser": 2, + "maxDepth": 2, + "NSData*": 1, + "objectWithString": 5, + "repr": 5, + "jsonText": 1, + "NSError**": 2, + "": 1, + "kFramePadding": 7, + "kElementSpacing": 3, + "kGroupSpacing": 5, + "addHeader": 5, + "yOffset": 42, + "UILabel*": 2, + "label": 6, + "UILabel": 2, + "label.text": 2, + "label.font": 3, + "label.numberOfLines": 2, + "label.frame": 4, + "frame.origin.x": 3, + "frame.size.width": 4, + "sizeWithFont": 2, + "constrainedToSize": 2, + "CGSizeMake": 3, + "label.frame.size.height": 2, + "addText": 5, + "UIScrollView": 1, + "_scrollView.autoresizingMask": 1, + "UIViewAutoresizingFlexibleHeight": 1, + "NSLocalizedString": 9, + "UIButton*": 1, + "button": 5, + "UIButton": 1, + "buttonWithType": 1, + "UIButtonTypeRoundedRect": 1, + "setTitle": 1, + "UIControlStateNormal": 1, + "addTarget": 1, + "action": 1, + "debugTestAction": 2, + "forControlEvents": 1, + "UIControlEventTouchUpInside": 1, + "sizeToFit": 1, + "button.frame": 2, + "TTCurrentLocale": 2, + "displayNameForKey": 1, + "NSLocaleIdentifier": 1, + "localeIdentifier": 1, + "TTPathForBundleResource": 1, + "TTPathForDocumentsResource": 1, + "dataUsingEncoding": 2, + "NSUTF8StringEncoding": 2, + "md5Hash": 1, + "setContentSize": 1, + "viewDidUnload": 2, + "viewDidAppear": 2, + "flashScrollIndicators": 1, + "DEBUG": 1, + "TTDPRINTMETHODNAME": 1, + "TTDPRINT": 9, + "TTMAXLOGLEVEL": 1, + "TTDERROR": 1, + "TTLOGLEVEL_ERROR": 1, + "TTDWARNING": 1, + "TTLOGLEVEL_WARNING": 1, + "TTDINFO": 1, + "TTLOGLEVEL_INFO": 1, + "TTDCONDITIONLOG": 3, + "rand": 1, + "TTDASSERT": 2, "FooAppDelegate": 2, - "": 1, - "@private": 2, - "NSWindow": 2, - "*window": 2, - "IBOutlet": 1, - "@synthesize": 7, "window": 1, "applicationDidFinishLaunching": 1, "aNotification": 1, - "argc": 1, - "*argv": 1, - "NSLog": 4, - "#include": 18, - "": 1, - "": 2, - "": 2, - "": 1, - "": 1, - "#ifdef": 10, - "__OBJC__": 4, - "": 2, - "": 2, - "": 2, - "": 1, - "": 2, - "": 1, - "__cplusplus": 2, - "NSINTEGER_DEFINED": 3, - "defined": 16, - "__LP64__": 4, - "NS_BUILD_32_LIKE_64": 3, - "NSIntegerMin": 3, - "LONG_MIN": 3, - "NSIntegerMax": 4, - "LONG_MAX": 3, - "NSUIntegerMax": 7, - "ULONG_MAX": 3, - "INT_MIN": 3, - "INT_MAX": 2, - "UINT_MAX": 3, - "_JSONKIT_H_": 3, - "__GNUC__": 14, - "__APPLE_CC__": 2, - "JK_DEPRECATED_ATTRIBUTE": 6, - "__attribute__": 3, - "deprecated": 1, - "JSONKIT_VERSION_MAJOR": 1, - "JSONKIT_VERSION_MINOR": 1, - "JKFlags": 5, - "JKParseOptionNone": 1, - "JKParseOptionStrict": 1, - "JKParseOptionComments": 2, - "<<": 16, - "JKParseOptionUnicodeNewlines": 2, - "JKParseOptionLooseUnicode": 2, - "JKParseOptionPermitTextAfterValidJSON": 2, - "JKParseOptionValidFlags": 1, - "JKParseOptionFlags": 12, - "JKSerializeOptionNone": 3, - "JKSerializeOptionPretty": 2, - "JKSerializeOptionEscapeUnicode": 2, - "JKSerializeOptionEscapeForwardSlashes": 2, - "JKSerializeOptionValidFlags": 1, - "JKSerializeOptionFlags": 16, - "struct": 20, - "JKParseState": 18, - "Opaque": 1, - "private": 1, - "type.": 3, - "JSONDecoder": 2, - "*parseState": 16, - "decoder": 1, - "decoderWithParseOptions": 1, - "parseOptionFlags": 11, - "initWithParseOptions": 1, - "clearCache": 1, - "parseUTF8String": 2, - "size_t": 23, - "Deprecated": 4, - "JSONKit": 11, - "v1.4.": 4, - "objectWithUTF8String": 4, - "instead.": 4, - "parseJSONData": 2, - "jsonData": 6, - "objectWithData": 7, - "mutableObjectWithUTF8String": 2, - "mutableObjectWithData": 2, - "////////////": 4, - "Deserializing": 1, - "methods": 2, - "JSONKitDeserializing": 2, - "objectFromJSONString": 1, - "objectFromJSONStringWithParseOptions": 2, - "mutableObjectFromJSONString": 1, - "mutableObjectFromJSONStringWithParseOptions": 2, - "objectFromJSONData": 1, - "objectFromJSONDataWithParseOptions": 2, - "mutableObjectFromJSONData": 1, - "mutableObjectFromJSONDataWithParseOptions": 2, - "Serializing": 1, - "JSONKitSerializing": 3, - "JSONData": 3, - "Invokes": 2, - "JSONDataWithOptions": 8, - "includeQuotes": 6, - "serializeOptions": 14, - "JSONString": 3, - "JSONStringWithOptions": 8, - "serializeUnsupportedClassesUsingDelegate": 4, - "__BLOCKS__": 1, - "JSONKitSerializingBlockAdditions": 2, - "serializeUnsupportedClassesUsingBlock": 4, + "": 1, + "NSWindow": 2, + "*window": 2, + "IBOutlet": 1, "": 1, "": 1, "": 1, @@ -47068,7 +47723,6 @@ "__inline__": 1, "always_inline": 1, "JK_ALIGNED": 1, - "arg": 11, "aligned": 1, "JK_UNUSED_ARG": 2, "unused": 3, @@ -47187,7 +47841,6 @@ "JKObjCImpCache": 2, "JKHashTableEntry": 21, "serializeObject": 1, - "options": 6, "optionFlags": 1, "encodeOption": 2, "JKSERIALIZER_BLOCKS_PROTO": 1, @@ -47239,7 +47892,6 @@ "*objects": 5, "mutableCollection": 7, "_JKArrayInsertObjectAtIndex": 3, - "*array": 9, "newObject": 12, "objectIndex": 48, "_JKArrayReplaceObjectAtIndexWithObject": 3, @@ -47318,14 +47970,12 @@ "jk_encode_write1": 1, "es": 3, "dc": 3, - "f": 8, "_jk_encode_prettyPrint": 1, "jk_min": 1, "b": 4, "jk_max": 3, "jk_calculateHash": 1, "currentHash": 1, - "c": 7, "Class": 3, "_JKArrayClass": 5, "_JKArrayInstanceSize": 4, @@ -47370,7 +48020,6 @@ "_cmd": 16, "NSCParameterAssert": 19, "objects": 58, - "calloc": 5, "Directly": 2, "allocate": 2, "instance": 2, @@ -47378,7 +48027,6 @@ "isa": 2, "malloc": 1, "memcpy": 2, - "<=>": 15, "*newObjects": 1, "newObjects": 2, "realloc": 1, @@ -47386,17 +48034,13 @@ "memset": 1, "memmove": 2, "atObject": 12, - "free": 4, - "NSParameterAssert": 15, "getObjects": 2, "objectsPtr": 3, - "range": 8, "NSRange": 1, "NSMaxRange": 4, "NSRangeException": 6, "range.location": 2, "range.length": 1, - "objectAtIndex": 8, "countByEnumeratingWithState": 2, "NSFastEnumerationState": 2, "stackbuf": 8, @@ -47430,8 +48074,6 @@ "entry": 41, ".key": 11, "jk_dictionaryCapacities": 4, - "bottom": 6, - "top": 8, "mid": 5, "tableSize": 2, "lround": 1, @@ -47459,7 +48101,6 @@ "keyEntry": 4, "CFEqual": 2, "CFHash": 1, - "table": 7, "would": 2, "now.": 1, "entryForKey": 3, @@ -47467,7 +48108,6 @@ "andKeys": 1, "arrayIdx": 5, "keyEnumerator": 1, - "copy": 4, "Why": 1, "earth": 1, "complain": 1, @@ -47482,8 +48122,6 @@ "Invalid": 1, "character": 1, "x.": 1, - "n": 7, - "r": 6, "F": 1, ".": 2, "e": 1, @@ -47491,117 +48129,6 @@ "token": 1, "wanted": 1, "Expected": 3, - "MainMenuViewController": 2, - "TTTableViewController": 1, - "///////////////////////////////////////////////////////////////////////////////////////////////////": 24, - "initWithNibName": 3, - "nibNameOrNil": 1, - "bundle": 3, - "NSBundle": 1, - "nibBundleOrNil": 1, - "self.title": 2, - "//self.variableHeightRows": 1, - "self.tableViewStyle": 1, - "UITableViewStyleGrouped": 1, - "self.dataSource": 1, - "TTSectionedDataSource": 1, - "dataSourceWithObjects": 1, - "TTTableTextItem": 48, - "itemWithText": 48, - "URL": 48, - "PlaygroundViewController": 2, - "UIViewController": 2, - "UIScrollView*": 1, - "_scrollView": 9, - "": 1, - "CGFloat": 44, - "kFramePadding": 7, - "kElementSpacing": 3, - "kGroupSpacing": 5, - "addHeader": 5, - "yOffset": 42, - "UILabel*": 2, - "label": 6, - "UILabel": 2, - "initWithFrame": 12, - "CGRectZero": 5, - "label.text": 2, - "label.font": 3, - "UIFont": 3, - "systemFontOfSize": 2, - "label.numberOfLines": 2, - "CGRect": 41, - "frame": 38, - "label.frame": 4, - "frame.origin.x": 3, - "frame.origin.y": 16, - "frame.size.width": 4, - "frame.size.height": 15, - "sizeWithFont": 2, - "constrainedToSize": 2, - "CGSizeMake": 3, - ".height": 4, - "addSubview": 8, - "label.frame.size.height": 2, - "TT_RELEASE_SAFELY": 12, - "addText": 5, - "loadView": 4, - "UIScrollView": 1, - "self.view.bounds": 2, - "_scrollView.autoresizingMask": 1, - "UIViewAutoresizingFlexibleWidth": 4, - "UIViewAutoresizingFlexibleHeight": 1, - "self.view": 4, - "NSLocalizedString": 9, - "UIButton*": 1, - "button": 5, - "UIButton": 1, - "buttonWithType": 1, - "UIButtonTypeRoundedRect": 1, - "setTitle": 1, - "forState": 4, - "UIControlStateNormal": 1, - "addTarget": 1, - "action": 1, - "debugTestAction": 2, - "forControlEvents": 1, - "UIControlEventTouchUpInside": 1, - "sizeToFit": 1, - "button.frame": 2, - "TTCurrentLocale": 2, - "displayNameForKey": 1, - "NSLocaleIdentifier": 1, - "localeIdentifier": 1, - "TTPathForBundleResource": 1, - "TTPathForDocumentsResource": 1, - "dataUsingEncoding": 2, - "NSUTF8StringEncoding": 2, - "md5Hash": 1, - "setContentSize": 1, - "viewDidUnload": 2, - "viewDidAppear": 2, - "animated": 27, - "flashScrollIndicators": 1, - "DEBUG": 1, - "TTDPRINTMETHODNAME": 1, - "TTDPRINT": 9, - "TTMAXLOGLEVEL": 1, - "TTDERROR": 1, - "TTLOGLEVEL_ERROR": 1, - "TTDWARNING": 1, - "TTLOGLEVEL_WARNING": 1, - "TTDINFO": 1, - "TTLOGLEVEL_INFO": 1, - "TTDCONDITIONLOG": 3, - "rand": 1, - "TTDASSERT": 2, - "SBJsonParser": 2, - "maxDepth": 2, - "NSData*": 1, - "objectWithString": 5, - "repr": 5, - "jsonText": 1, - "NSError**": 2, "self.maxDepth": 2, "Methods": 1, "self.error": 3, @@ -47616,9 +48143,7 @@ "parser.maxDepth": 1, "parser.delegate": 1, "adapter": 1, - "switch": 3, "parse": 1, - "case": 8, "SBJsonStreamParserComplete": 1, "accumulator.value": 1, "SBJsonStreamParserWaitingForData": 1, @@ -47629,516 +48154,20 @@ "*ui": 1, "*error_": 1, "ui": 1, - "StyleViewController": 2, - "TTViewController": 1, - "TTStyle*": 7, - "_style": 8, - "_styleHighlight": 6, - "_styleDisabled": 6, - "_styleSelected": 6, - "_styleType": 6, - "kTextStyleType": 2, - "kViewStyleType": 2, - "kImageStyleType": 2, - "initWithStyleName": 1, - "styleType": 3, - "TTStyleSheet": 4, - "globalStyleSheet": 4, - "styleWithSelector": 4, - "UIControlStateHighlighted": 1, - "UIControlStateDisabled": 1, - "UIControlStateSelected": 1, - "addTextView": 5, - "title": 2, - "style": 29, - "textFrame": 3, - "TTRectInset": 3, - "UIEdgeInsetsMake": 3, - "StyleView*": 2, - "StyleView": 2, - "text.text": 1, - "TTStyleContext*": 1, - "context": 4, - "TTStyleContext": 1, - "context.frame": 1, - "context.delegate": 1, - "context.font": 1, - "systemFontSize": 1, - "CGSize": 5, - "addToSize": 1, - "CGSizeZero": 1, - "size.width": 1, - "size.height": 1, - "textFrame.size": 1, - "text.frame": 1, - "text.style": 1, - "text.backgroundColor": 1, - "UIColor": 3, - "colorWithRed": 3, - "green": 3, - "blue": 3, - "alpha": 3, - "text.autoresizingMask": 1, - "UIViewAutoresizingFlexibleBottomMargin": 3, - "addView": 5, - "viewFrame": 4, - "view": 11, - "view.style": 2, - "view.backgroundColor": 2, - "view.autoresizingMask": 2, - "addImageView": 5, - "TTImageView*": 1, - "TTImageView": 1, - "view.urlPath": 1, - "imageFrame": 2, - "view.frame": 2, - "imageFrame.size": 1, - "view.image.size": 1, - "TUITableViewStylePlain": 2, - "regular": 1, - "TUITableViewStyleGrouped": 1, - "grouped": 1, - "stick": 1, - "scroll": 3, - "TUITableViewStyle": 4, - "TUITableViewScrollPositionNone": 2, - "TUITableViewScrollPositionTop": 2, - "TUITableViewScrollPositionMiddle": 1, - "TUITableViewScrollPositionBottom": 1, - "TUITableViewScrollPositionToVisible": 3, - "supported": 1, - "TUITableViewScrollPosition": 5, - "TUITableViewInsertionMethodBeforeIndex": 1, - "NSOrderedAscending": 4, - "TUITableViewInsertionMethodAtIndex": 1, - "NSOrderedSame": 1, - "TUITableViewInsertionMethodAfterIndex": 1, - "NSOrderedDescending": 4, - "TUITableViewInsertionMethod": 3, - "TUITableViewCell": 23, - "@protocol": 3, - "TUITableViewDataSource": 2, - "TUITableView": 25, - "TUITableViewDelegate": 1, - "": 1, - "TUIScrollViewDelegate": 1, - "tableView": 45, - "heightForRowAtIndexPath": 2, - "TUIFastIndexPath": 89, - "indexPath": 47, - "@optional": 2, - "willDisplayCell": 2, - "cell": 21, - "forRowAtIndexPath": 2, - "subview": 1, - "didSelectRowAtIndexPath": 3, - "left/right": 2, - "mouse": 2, - "down": 1, - "up/down": 1, - "didDeselectRowAtIndexPath": 3, - "didClickRowAtIndexPath": 1, - "withEvent": 2, - "NSEvent": 3, - "event": 8, - "look": 1, - "clickCount": 1, - "TUITableView*": 1, - "shouldSelectRowAtIndexPath": 3, - "TUIFastIndexPath*": 1, - "forEvent": 3, - "NSEvent*": 1, - "NSMenu": 1, - "menuForRowAtIndexPath": 1, - "tableViewWillReloadData": 3, - "tableViewDidReloadData": 3, - "targetIndexPathForMoveFromRowAtIndexPath": 1, - "fromPath": 1, - "toProposedIndexPath": 1, - "proposedPath": 1, - "TUIScrollView": 1, - "__unsafe_unretained": 2, - "": 4, - "_dataSource": 6, - "weak": 2, - "_sectionInfo": 27, - "TUIView": 17, - "_pullDownView": 4, - "_headerView": 8, - "_lastSize": 1, - "_contentHeight": 7, - "NSMutableIndexSet": 6, - "_visibleSectionHeaders": 6, - "_visibleItems": 14, - "_reusableTableCells": 5, - "_selectedIndexPath": 9, - "_indexPathShouldBeFirstResponder": 2, - "_futureMakeFirstResponderToken": 2, - "_keepVisibleIndexPathForReload": 2, - "_relativeOffsetForReload": 2, - "drag": 1, - "reorder": 1, - "_dragToReorderCell": 5, - "CGPoint": 7, - "_currentDragToReorderLocation": 1, - "_currentDragToReorderMouseOffset": 1, - "_currentDragToReorderIndexPath": 1, - "_currentDragToReorderInsertionMethod": 1, - "_previousDragToReorderIndexPath": 1, - "_previousDragToReorderInsertionMethod": 1, - "animateSelectionChanges": 3, - "forceSaveScrollPosition": 1, - "derepeaterEnabled": 1, - "layoutSubviewsReentrancyGuard": 1, - "didFirstLayout": 1, - "dataSourceNumberOfSectionsInTableView": 1, - "delegateTableViewWillDisplayCellForRowAtIndexPath": 1, - "maintainContentOffsetAfterReload": 3, - "_tableFlags": 1, - "creation.": 1, - "calls": 1, - "UITableViewStylePlain": 1, - "unsafe_unretained": 2, - "dataSource": 2, - "": 4, - "readwrite": 1, - "reloadData": 3, - "reloadDataMaintainingVisibleIndexPath": 2, - "relativeOffset": 5, - "reloadLayout": 2, - "numberOfSections": 10, - "numberOfRowsInSection": 9, - "section": 60, - "rectForHeaderOfSection": 4, - "rectForSection": 3, - "rectForRowAtIndexPath": 7, - "NSIndexSet": 4, - "indexesOfSectionsInRect": 2, - "rect": 10, - "indexesOfSectionHeadersInRect": 2, - "indexPathForCell": 2, - "returns": 4, - "visible": 16, - "indexPathsForRowsInRect": 3, - "indexPathForRowAtPoint": 2, - "point": 11, - "indexPathForRowAtVerticalOffset": 2, - "offset": 23, - "indexOfSectionWithHeaderAtPoint": 2, - "indexOfSectionWithHeaderAtVerticalOffset": 2, - "enumerateIndexPathsUsingBlock": 2, - "*indexPath": 11, - "*stop": 7, - "enumerateIndexPathsWithOptions": 2, - "NSEnumerationOptions": 4, - "usingBlock": 6, - "enumerateIndexPathsFromIndexPath": 4, - "fromIndexPath": 6, - "toIndexPath": 12, - "withOptions": 4, - "headerViewForSection": 6, - "cellForRowAtIndexPath": 9, - "index": 11, - "visibleCells": 3, - "order": 1, - "sortedVisibleCells": 2, - "indexPathsForVisibleRows": 2, - "scrollToRowAtIndexPath": 3, - "atScrollPosition": 3, - "scrollPosition": 9, - "indexPathForSelectedRow": 4, - "representing": 1, - "row": 36, - "selection.": 1, - "indexPathForFirstRow": 2, - "indexPathForLastRow": 2, - "selectRowAtIndexPath": 3, - "deselectRowAtIndexPath": 3, - "*pullDownView": 1, - "pullDownViewIsVisible": 3, - "*headerView": 6, - "dequeueReusableCellWithIdentifier": 2, - "identifier": 7, - "": 1, - "@required": 1, - "canMoveRowAtIndexPath": 2, - "moveRowAtIndexPath": 2, - "numberOfSectionsInTableView": 3, - "NSIndexPath": 5, - "indexPathForRow": 11, - "inSection": 11, - "HEADER_Z_POSITION": 2, - "beginning": 1, - "height": 19, - "TUITableViewRowInfo": 3, - "TUITableViewSection": 16, - "*_tableView": 1, - "*_headerView": 1, - "reusable": 1, - "similar": 1, - "UITableView": 1, - "sectionIndex": 23, - "numberOfRows": 13, - "sectionHeight": 9, - "sectionOffset": 8, - "*rowInfo": 1, - "initWithNumberOfRows": 2, - "_tableView": 3, - "rowInfo": 7, - "_setupRowHeights": 2, - "*header": 1, - "self.headerView": 2, - "roundf": 2, - "header.frame.size.height": 1, - "i": 41, - "h": 3, - "_tableView.delegate": 1, - ".offset": 2, - "rowHeight": 2, - "sectionRowOffset": 2, - "tableRowOffset": 2, - "headerHeight": 4, - "self.headerView.frame.size.height": 1, - "headerView": 14, - "_tableView.dataSource": 3, - "respondsToSelector": 8, - "_headerView.autoresizingMask": 1, - "TUIViewAutoresizingFlexibleWidth": 1, - "_headerView.layer.zPosition": 1, - "Private": 1, - "_updateSectionInfo": 2, - "_updateDerepeaterViews": 2, - "pullDownView": 1, - "_tableFlags.animateSelectionChanges": 3, - "_tableFlags.delegateTableViewWillDisplayCellForRowAtIndexPath": 1, - "setDataSource": 1, - "_tableFlags.dataSourceNumberOfSectionsInTableView": 2, - "setAnimateSelectionChanges": 1, - "*s": 3, - "y": 12, - "CGRectMake": 8, - "self.bounds.size.width": 4, - "indexPath.section": 3, - "indexPath.row": 1, - "*section": 8, - "removeFromSuperview": 4, - "removeAllIndexes": 2, - "*sections": 1, - "bounds": 2, - ".size.height": 1, - "self.contentInset.top*2": 1, - "section.sectionOffset": 1, - "sections": 4, - "self.contentInset.bottom": 1, - "_enqueueReusableCell": 2, - "*identifier": 1, - "cell.reuseIdentifier": 1, - "*c": 1, - "lastObject": 1, - "removeLastObject": 1, - "prepareForReuse": 1, - "allValues": 1, - "SortCells": 1, - "*a": 2, - "*b": 2, - "*ctx": 1, - "a.frame.origin.y": 2, - "b.frame.origin.y": 2, - "*v": 2, - "v": 4, - "sortedArrayUsingComparator": 1, - "NSComparator": 1, - "NSComparisonResult": 1, - "INDEX_PATHS_FOR_VISIBLE_ROWS": 4, - "allKeys": 1, - "*i": 4, - "*cell": 7, - "*indexes": 2, - "CGRectIntersectsRect": 5, - "indexes": 4, - "addIndex": 3, - "*indexPaths": 1, - "cellRect": 7, - "indexPaths": 2, - "CGRectContainsPoint": 1, - "cellRect.origin.y": 1, - "origin": 1, - "brief": 1, - "Obtain": 1, - "whose": 2, - "specified": 1, - "exists": 1, - "negative": 1, - "returned": 1, - "param": 1, - "p": 3, - "0": 2, - "width": 1, - "point.y": 1, - "section.headerView": 9, - "sectionLowerBound": 2, - "fromIndexPath.section": 1, - "sectionUpperBound": 3, - "toIndexPath.section": 1, - "rowLowerBound": 2, - "fromIndexPath.row": 1, - "rowUpperBound": 3, - "toIndexPath.row": 1, - "irow": 3, - "lower": 1, - "bound": 1, - "iteration...": 1, - "rowCount": 3, - "j": 5, - "FALSE": 2, - "...then": 1, - "zero": 1, - "iterations": 1, - "_topVisibleIndexPath": 1, - "*topVisibleIndex": 1, - "sortedArrayUsingSelector": 1, - "topVisibleIndex": 2, - "setFrame": 2, - "_tableFlags.forceSaveScrollPosition": 1, - "setContentOffset": 2, - "_tableFlags.didFirstLayout": 1, - "prevent": 2, - "layout": 3, - "pinned": 5, - "isKindOfClass": 2, - "TUITableViewSectionHeader": 5, - ".pinnedToViewport": 2, - "TRUE": 1, - "pinnedHeader": 1, - "CGRectGetMaxY": 2, - "headerFrame": 4, - "pinnedHeader.frame.origin.y": 1, - "intersecting": 1, - "push": 1, - "upwards.": 1, - "pinnedHeaderFrame": 2, - "pinnedHeader.frame": 2, - "pinnedHeaderFrame.origin.y": 1, - "notify": 3, - "section.headerView.frame": 1, - "setNeedsLayout": 3, - "section.headerView.superview": 1, - "remove": 4, - "offscreen": 2, - "toRemove": 1, - "enumerateIndexesUsingBlock": 1, - "removeIndex": 1, - "_layoutCells": 3, - "visibleCellsNeedRelayout": 5, - "remaining": 1, - "cells": 7, - "cell.frame": 1, - "cell.layer.zPosition": 1, - "visibleRect": 3, - "Example": 1, - "*oldVisibleIndexPaths": 1, - "*newVisibleIndexPaths": 1, - "*indexPathsToRemove": 1, - "oldVisibleIndexPaths": 2, - "mutableCopy": 2, - "indexPathsToRemove": 2, - "removeObjectsInArray": 2, - "newVisibleIndexPaths": 2, - "*indexPathsToAdd": 1, - "indexPathsToAdd": 2, - "newly": 1, - "superview": 1, - "bringSubviewToFront": 1, - "self.contentSize": 3, - "headerViewRect": 3, - "s.height": 3, - "_headerView.frame.size.height": 2, - "visible.size.width": 3, - "_headerView.frame": 1, - "_headerView.hidden": 4, - "show": 2, - "pullDownRect": 4, - "_pullDownView.frame.size.height": 2, - "_pullDownView.hidden": 4, - "_pullDownView.frame": 1, - "self.delegate": 10, - "recycle": 1, - "regenerated": 3, - "layoutSubviews": 5, - "because": 1, - "dragged": 1, - "clear": 3, - "removeAllObjects": 1, - "laid": 1, - "next": 2, - "_tableFlags.layoutSubviewsReentrancyGuard": 3, - "setAnimationsEnabled": 1, - "CATransaction": 3, - "begin": 1, - "setDisableActions": 1, - "_preLayoutCells": 2, - "munge": 2, - "contentOffset": 2, - "_layoutSectionHeaders": 2, - "_tableFlags.derepeaterEnabled": 1, - "commit": 1, - "selected": 2, - "overlapped": 1, - "r.size.height": 4, - "headerFrame.size.height": 1, - "r.origin.y": 1, - "v.size.height": 2, - "scrollRectToVisible": 2, - "sec": 3, - "_makeRowAtIndexPathFirstResponder": 2, - "responder": 2, - "made": 1, - "acceptsFirstResponder": 1, - "self.nsWindow": 3, - "makeFirstResponderIfNotAlreadyInResponderChain": 1, - "futureMakeFirstResponderRequestToken": 1, - "*oldIndexPath": 1, - "oldIndexPath": 2, - "setSelected": 2, - "setNeedsDisplay": 2, - "selection": 3, - "actually": 2, - "NSResponder": 1, - "*firstResponder": 1, - "firstResponder": 3, - "indexPathForFirstVisibleRow": 2, - "*firstIndexPath": 1, - "firstIndexPath": 4, - "indexPathForLastVisibleRow": 2, - "*lastIndexPath": 5, - "lastIndexPath": 8, - "performKeyAction": 2, - "repeative": 1, - "press": 1, - "noCurrentSelection": 2, - "isARepeat": 1, - "TUITableViewCalculateNextIndexPathBlock": 3, - "selectValidIndexPath": 3, - "*startForNoSelection": 2, - "calculateNextIndexPath": 4, - "foundValidNextRow": 4, - "*newIndexPath": 1, - "newIndexPath": 6, - "startForNoSelection": 1, - "_delegate": 2, - "self.animateSelectionChanges": 1, - "charactersIgnoringModifiers": 1, - "characterAtIndex": 1, - "NSUpArrowFunctionKey": 1, - "lastIndexPath.section": 2, - "lastIndexPath.row": 2, - "rowsInSection": 7, - "NSDownArrowFunctionKey": 1, - "_tableFlags.maintainContentOffsetAfterReload": 2, - "setMaintainContentOffsetAfterReload": 1, - "newValue": 2, - "indexPathWithIndexes": 1, - "indexAtPosition": 2 + "MainMenuViewController": 2, + "TTTableViewController": 1, + "nibNameOrNil": 1, + "NSBundle": 1, + "nibBundleOrNil": 1, + "//self.variableHeightRows": 1, + "self.tableViewStyle": 1, + "UITableViewStyleGrouped": 1, + "self.dataSource": 1, + "TTSectionedDataSource": 1, + "dataSourceWithObjects": 1, + "TTTableTextItem": 48, + "itemWithText": 48, + "URL": 48 }, "Objective-C++": { "#include": 26, @@ -48906,43 +48935,62 @@ "stfu": 1 }, "Opa": { - "server": 1, - "Server.one_page_server": 1, - "(": 4, - "-": 1, - "

": 2, - "Hello": 2, - "world": 2, - "

": 2, - ")": 4, "Server.start": 1, + "(": 4, "Server.http": 1, "{": 2, "page": 1, "function": 1, + ")": 4, + "

": 2, + "Hello": 2, + "world": 2, + "

": 2, "}": 2, - "title": 1 + "title": 1, + "server": 1, + "Server.one_page_server": 1, + "-": 1 }, "OpenCL": { + "typedef": 1, + "float": 3, + "foo_t": 3, + ";": 12, + "#ifndef": 1, + "ZERO": 3, + "#define": 2, + "(": 18, + ")": 18, + "#endif": 1, + "FOO": 1, + "x": 5, + "+": 4, + "__kernel": 1, + "void": 1, + "foo": 1, + "__global": 1, + "const": 4, + "*": 5, + "__local": 1, + "y": 4, + "uint": 1, + "n": 4, + "{": 4, + "barrier": 1, + "CLK_LOCAL_MEM_FENCE": 1, + "if": 1, + "*x": 1, + "}": 4, "double": 3, "run_fftw": 1, - "(": 18, "int": 3, - "n": 4, - "const": 4, - "float": 3, - "*": 5, - "x": 5, - "y": 4, - ")": 18, - "{": 4, "fftwf_plan": 1, "p1": 3, "fftwf_plan_dft_1d": 1, "fftwf_complex": 2, "FFTW_FORWARD": 1, "FFTW_ESTIMATE": 1, - ";": 12, "nops": 3, "t": 4, "cl": 2, @@ -48950,30 +48998,11 @@ "for": 1, "op": 3, "<": 1, - "+": 4, "fftwf_execute": 1, - "}": 4, "-": 1, "/": 1, "fftwf_destroy_plan": 1, - "return": 1, - "typedef": 1, - "foo_t": 3, - "#ifndef": 1, - "ZERO": 3, - "#define": 2, - "#endif": 1, - "FOO": 1, - "__kernel": 1, - "void": 1, - "foo": 1, - "__global": 1, - "__local": 1, - "uint": 1, - "barrier": 1, - "CLK_LOCAL_MEM_FENCE": 1, - "if": 1, - "*x": 1 + "return": 1 }, "OpenEdge ABL": { "USING": 3, @@ -49086,25 +49115,69 @@ "OBJECT": 2, ".": 14, "CLASS.": 2, - "MESSAGE": 2, - "INTERFACE": 1, - "email.SendEmailAlgorithm": 1, - "ipobjEmail": 1, + "email.Util": 1, + "FINAL": 1, + "PRIVATE": 1, + "STATIC": 5, + "VARIABLE": 12, + "cMonthMap": 2, "AS": 21, - "INTERFACE.": 1, + "EXTENT": 1, + "INITIAL": 1, + "[": 2, + "]": 2, + "ABLDateTimeToEmail": 3, + "ipdttzDateTime": 6, + "DATETIME": 3, + "TZ": 2, + "STRING": 7, + "DAY": 1, + "MONTH": 1, + "YEAR": 1, + "INTEGER": 6, + "TRUNCATE": 2, + "MTIME": 1, + "/": 2, + "ABLTimeZoneToString": 2, + "TIMEZONE": 1, + "ipdtDateTime": 2, + "ipiTimeZone": 3, + "ABSOLUTE": 1, + "MODULO": 1, + "LONGCHAR": 4, + "ConvertDataToBase64": 1, + "iplcNonEncodedData": 2, + "lcPreBase64Data": 4, + "NO": 13, + "UNDO.": 12, + "lcPostBase64Data": 3, + "mptrPostBase64Data": 3, + "MEMPTR": 2, + "i": 3, + "COPY": 1, + "LOB": 1, + "FROM": 1, + "TO": 2, + "mptrPostBase64Data.": 1, + "BASE64": 1, + "ENCODE": 1, + "SET": 5, + "SIZE": 5, + "DO": 2, + "LENGTH": 3, + "BY": 1, + "ASSIGN": 2, + "SUBSTRING": 1, + "CHR": 2, + "END.": 2, + "lcPostBase64Data.": 1, "PARAMETER": 3, "objSendEmailAlg": 2, "email.SendEmailSocket": 1, - "NO": 13, - "UNDO.": 12, - "VARIABLE": 12, "vbuffer": 9, - "MEMPTR": 2, "vstatus": 1, "LOGICAL": 1, "vState": 2, - "INTEGER": 6, - "ASSIGN": 2, "vstate": 1, "FUNCTION": 1, "getHostname": 1, @@ -49127,11 +49200,7 @@ "IF": 2, "THEN": 2, "RETURN.": 1, - "SET": 5, - "SIZE": 5, - "LENGTH": 3, "PUT": 1, - "STRING": 7, "pstring.": 1, "SELF": 4, "WRITE": 1, @@ -49140,59 +49209,19 @@ "vlength": 5, "str": 3, "v": 1, + "MESSAGE": 2, "GET": 3, "BYTES": 2, "AVAILABLE": 2, "VIEW": 1, "ALERT": 1, "BOX.": 1, - "DO": 2, "READ": 1, "handleResponse": 1, - "END.": 2, - "email.Util": 1, - "FINAL": 1, - "PRIVATE": 1, - "STATIC": 5, - "cMonthMap": 2, - "EXTENT": 1, - "INITIAL": 1, - "[": 2, - "]": 2, - "ABLDateTimeToEmail": 3, - "ipdttzDateTime": 6, - "DATETIME": 3, - "TZ": 2, - "DAY": 1, - "MONTH": 1, - "YEAR": 1, - "TRUNCATE": 2, - "MTIME": 1, - "/": 2, - "ABLTimeZoneToString": 2, - "TIMEZONE": 1, - "ipdtDateTime": 2, - "ipiTimeZone": 3, - "ABSOLUTE": 1, - "MODULO": 1, - "LONGCHAR": 4, - "ConvertDataToBase64": 1, - "iplcNonEncodedData": 2, - "lcPreBase64Data": 4, - "lcPostBase64Data": 3, - "mptrPostBase64Data": 3, - "i": 3, - "COPY": 1, - "LOB": 1, - "FROM": 1, - "TO": 2, - "mptrPostBase64Data.": 1, - "BASE64": 1, - "ENCODE": 1, - "BY": 1, - "SUBSTRING": 1, - "CHR": 2, - "lcPostBase64Data.": 1 + "INTERFACE": 1, + "email.SendEmailAlgorithm": 1, + "ipobjEmail": 1, + "INTERFACE.": 1 }, "Org": { "#": 13, @@ -49918,361 +49947,6 @@ "Kick": 1 }, "PHP": { - "<": 11, - "php": 12, - "namespace": 28, - "Symfony": 24, - "Component": 24, - "Console": 17, - ";": 1383, - "use": 23, - "Input": 6, - "InputInterface": 4, - "ArgvInput": 2, - "ArrayInput": 3, - "InputDefinition": 2, - "InputOption": 15, - "InputArgument": 3, - "Output": 5, - "OutputInterface": 6, - "ConsoleOutput": 2, - "ConsoleOutputInterface": 2, - "Command": 6, - "HelpCommand": 2, - "ListCommand": 2, - "Helper": 3, - "HelperSet": 3, - "FormatterHelper": 2, - "DialogHelper": 2, - "class": 21, - "Application": 3, - "{": 974, - "private": 24, - "commands": 39, - "wantHelps": 4, - "false": 154, - "runningCommand": 5, - "name": 181, - "version": 8, - "catchExceptions": 4, - "autoExit": 4, - "definition": 3, - "helperSet": 6, - "public": 202, - "function": 205, - "__construct": 8, - "(": 2416, - ")": 2417, - "this": 928, - "-": 1271, - "true": 133, - "array": 296, - "getDefaultHelperSet": 2, - "getDefaultInputDefinition": 2, - "foreach": 94, - "getDefaultCommands": 2, - "as": 96, - "command": 41, - "add": 7, - "}": 972, - "run": 4, - "input": 20, - "null": 164, - "output": 60, - "if": 450, - "new": 74, - "try": 3, - "statusCode": 14, - "doRun": 2, - "catch": 3, - "Exception": 1, - "e": 18, - "throw": 19, - "instanceof": 8, - "renderException": 3, - "getErrorOutput": 2, - "else": 70, - "getCode": 1, - "is_numeric": 7, - "&&": 119, - "exit": 7, - "return": 305, - "getCommandName": 2, - "hasParameterOption": 7, - "setDecorated": 2, - "elseif": 31, - "setInteractive": 2, - "function_exists": 4, - "getHelperSet": 3, - "has": 7, - "inputStream": 2, - "get": 12, - "getInputStream": 1, - "posix_isatty": 1, - "setVerbosity": 2, - "VERBOSITY_QUIET": 1, - "VERBOSITY_VERBOSE": 2, - "writeln": 13, - "getLongVersion": 3, - "find": 17, - "setHelperSet": 1, - "getDefinition": 2, - "getHelp": 2, - "messages": 16, - "sprintf": 27, - "getOptions": 1, - "option": 5, - "[": 672, - "]": 672, - ".": 169, - "getName": 14, - "getShortcut": 2, - "getDescription": 3, - "implode": 8, - "PHP_EOL": 3, - "setCatchExceptions": 1, - "boolean": 4, - "Boolean": 4, - "setAutoExit": 1, - "setName": 1, - "getVersion": 3, - "setVersion": 1, - "register": 1, - "addCommands": 1, - "setApplication": 2, - "isEnabled": 1, - "getAliases": 3, - "alias": 87, - "isset": 101, - "InvalidArgumentException": 9, - "helpCommand": 3, - "setCommand": 1, - "getNamespaces": 3, - "namespaces": 4, - "extractNamespace": 7, - "array_values": 5, - "array_unique": 4, - "array_filter": 2, - "findNamespace": 4, - "allNamespaces": 3, - "n": 12, - "explode": 9, - "found": 4, - "i": 36, - "part": 10, - "abbrevs": 31, - "static": 6, - "getAbbreviations": 4, - "array_map": 2, - "p": 3, - "message": 12, - "<=>": 3, - "alternatives": 10, - "findAlternativeNamespace": 2, - "count": 32, - "getAbbreviationSuggestions": 4, - "searchName": 13, - "pos": 3, - "strrpos": 2, - "substr": 6, - "namespace.substr": 1, - "suggestions": 2, - "aliases": 8, - "findAlternativeCommands": 2, - "all": 11, - "substr_count": 1, - "+": 12, - "names": 3, - "for": 8, - "len": 11, - "strlen": 14, - "abbrev": 4, - "asText": 1, - "raw": 2, - "width": 7, - "sortCommands": 4, - "space": 5, - "space.": 1, - "asXml": 2, - "asDom": 2, - "dom": 12, - "DOMDocument": 2, - "formatOutput": 1, - "appendChild": 10, - "xml": 5, - "createElement": 6, - "commandsXML": 3, - "setAttribute": 2, - "namespacesXML": 3, - "namespaceArrayXML": 4, - "continue": 7, - "commandXML": 3, - "createTextNode": 1, - "node": 42, - "getElementsByTagName": 1, - "item": 9, - "importNode": 3, - "saveXml": 1, - "string": 5, - "encoding": 2, - "mb_detect_encoding": 1, - "mb_strlen": 1, - "do": 2, - "title": 3, - "get_class": 4, - "getTerminalWidth": 3, - "PHP_INT_MAX": 1, - "lines": 3, - "preg_split": 1, - "getMessage": 1, - "line": 10, - "str_split": 1, - "max": 2, - "str_repeat": 2, - "title.str_repeat": 1, - "line.str_repeat": 1, - "message.": 1, - "getVerbosity": 1, - "trace": 12, - "getTrace": 1, - "array_unshift": 2, - "getFile": 2, - "getLine": 2, - "type": 62, - "file": 3, - "while": 6, - "getPrevious": 1, - "getSynopsis": 1, - "protected": 59, - "defined": 5, - "ansicon": 4, - "getenv": 2, - "preg_replace": 4, - "preg_match": 6, - "getSttyColumns": 3, - "match": 4, - "getTerminalHeight": 1, - "trim": 3, - "getFirstArgument": 1, - "REQUIRED": 1, - "VALUE_NONE": 7, - "descriptorspec": 2, - "process": 10, - "proc_open": 1, - "pipes": 4, - "is_resource": 1, - "info": 5, - "stream_get_contents": 1, - "fclose": 2, - "proc_close": 1, - "namespacedCommands": 5, - "key": 64, - "ksort": 2, - "&": 19, - "limit": 3, - "parts": 4, - "array_pop": 1, - "array_slice": 1, - "callback": 5, - "findAlternatives": 3, - "collection": 3, - "call_user_func": 2, - "lev": 6, - "levenshtein": 2, - "3": 1, - "strpos": 15, - "values": 53, - "/": 1, - "||": 52, - "value": 53, - "asort": 1, - "array_keys": 7, - "BrowserKit": 1, - "DomCrawler": 5, - "Crawler": 2, - "Link": 3, - "Form": 4, - "Process": 1, - "PhpProcess": 2, - "abstract": 2, - "Client": 1, - "history": 15, - "cookieJar": 9, - "server": 20, - "request": 76, - "response": 33, - "crawler": 7, - "insulated": 7, - "redirect": 6, - "followRedirects": 5, - "History": 2, - "CookieJar": 2, - "setServerParameters": 2, - "followRedirect": 4, - "insulate": 1, - "class_exists": 2, - "RuntimeException": 2, - "array_merge": 32, - "setServerParameter": 1, - "getServerParameter": 1, - "default": 9, - "getHistory": 1, - "getCookieJar": 1, - "getCrawler": 1, - "getResponse": 1, - "getRequest": 1, - "click": 1, - "link": 10, - "submit": 2, - "getMethod": 6, - "getUri": 8, - "form": 7, - "setValues": 2, - "getPhpValues": 2, - "getPhpFiles": 2, - "method": 31, - "uri": 23, - "parameters": 4, - "files": 7, - "content": 4, - "changeHistory": 4, - "getAbsoluteUri": 2, - "isEmpty": 2, - "current": 4, - "parse_url": 3, - "PHP_URL_HOST": 1, - "PHP_URL_SCHEME": 1, - "Request": 3, - "allValues": 1, - "filterRequest": 2, - "doRequestInProcess": 2, - "doRequest": 2, - "filterResponse": 2, - "updateFromResponse": 1, - "getHeader": 2, - "createCrawlerFromContent": 2, - "getContent": 2, - "getScript": 2, - "sys_get_temp_dir": 2, - "isSuccessful": 1, - "getOutput": 3, - "unserialize": 1, - "LogicException": 4, - "addContent": 1, - "back": 2, - "requestFromRequest": 4, - "forward": 2, - "reload": 1, - "empty": 96, - "restart": 1, - "clear": 2, - "currentUri": 7, - "path": 20, - "PHP_URL_PATH": 1, - "path.": 1, - "getParameters": 1, - "getFiles": 3, - "getServer": 1, "": 3, "CakePHP": 6, "tm": 6, @@ -50297,12 +49971,14 @@ "License": 4, "Redistributions": 2, "of": 10, + "files": 7, "must": 2, "retain": 2, "the": 11, "above": 2, "copyright": 5, "notice": 2, + "link": 10, "Project": 2, "package": 2, "Controller": 4, @@ -50316,6 +49992,7 @@ "opensource": 2, "licenses": 2, "mit": 2, + "php": 12, "App": 20, "uses": 46, "CakeResponse": 2, @@ -50328,7 +50005,10 @@ "Event": 6, "CakeEventListener": 4, "CakeEventManager": 5, + "Application": 3, "controller": 3, + "class": 21, + "for": 8, "organization": 1, "business": 1, "logic": 1, @@ -50336,6 +50016,7 @@ "basic": 1, "functionality": 1, "such": 1, + "as": 96, "rendering": 1, "views": 1, "inside": 1, @@ -50356,12 +50037,14 @@ "methods": 5, "These": 1, "are": 5, + "public": 202, "on": 4, "that": 2, "not": 2, "prefixed": 1, "with": 5, "_": 1, + "part": 10, "Each": 1, "serves": 1, "an": 1, @@ -50370,11 +50053,13 @@ "specific": 1, "resource": 1, "or": 9, + "collection": 3, "resources": 1, "For": 2, "example": 2, "adding": 1, "editing": 1, + "new": 74, "object": 14, "listing": 1, "set": 26, @@ -50382,8 +50067,13 @@ "You": 2, "can": 2, "access": 1, + "request": 76, + "parameters": 4, "using": 2, + "this": 928, + ".": 169, "contains": 1, + "all": 11, "POST": 1, "GET": 1, "FILES": 1, @@ -50400,6 +50090,7 @@ "This": 1, "usually": 1, "takes": 1, + "form": 7, "generated": 1, "possibly": 1, "to": 6, @@ -50408,6 +50099,8 @@ "In": 1, "either": 1, "case": 31, + "-": 1271, + "response": 33, "allows": 1, "you": 1, "manipulate": 1, @@ -50418,12 +50111,16 @@ "based": 2, "routing.": 1, "By": 1, + "default": 9, + "use": 23, "conventional": 1, "names.": 1, "/posts/index": 1, "maps": 1, "PostsController": 1, "index": 5, + "(": 2416, + ")": 2417, "re": 1, "map": 1, "urls": 1, @@ -50454,7 +50151,14 @@ "extends": 3, "Object": 4, "implements": 3, + "{": 974, + "name": 181, + "null": 164, + ";": 1383, + "true": 133, "helpers": 1, + "array": 296, + "protected": 59, "_responseClass": 1, "viewPath": 3, "layoutPath": 1, @@ -50469,6 +50173,7 @@ "ext": 1, "plugin": 31, "cacheAction": 1, + "false": 154, "passedArgs": 2, "scaffold": 2, "modelClass": 25, @@ -50476,6 +50181,12 @@ "validationErrors": 50, "_mergeParent": 4, "_eventManager": 12, + "function": 205, + "__construct": 8, + "if": 450, + "substr": 6, + "get_class": 4, + "}": 972, "Inflector": 12, "singularize": 4, "underscore": 3, @@ -50483,35 +50194,53 @@ "get_class_methods": 2, "parentMethods": 2, "array_diff": 3, + "instanceof": 8, "CakeRequest": 5, "setRequest": 2, "parent": 14, "__isset": 2, "switch": 6, + "return": 305, "is_array": 37, + "foreach": 94, "list": 29, "pluginSplit": 12, "loadModel": 3, "__get": 2, + "isset": 101, "params": 34, + "[": 672, + "]": 672, "load": 3, "settings": 2, "__set": 1, + "value": 53, "camelize": 3, + "&&": 119, + "array_merge": 32, "array_key_exists": 11, + "empty": 96, "invokeAction": 1, + "try": 3, + "method": 31, "ReflectionMethod": 2, "_isPrivateAction": 2, + "throw": 19, "PrivateActionException": 1, "invokeArgs": 1, + "catch": 3, "ReflectionException": 1, + "e": 18, "_getScaffold": 2, "MissingActionException": 1, "privateAction": 4, + "||": 52, "isPublic": 1, "in_array": 26, "prefixes": 4, + "strpos": 15, "prefix": 2, + "explode": 9, "Scaffold": 1, "_mergeControllerVars": 2, "pluginController": 9, @@ -50523,10 +50252,13 @@ "merge": 12, "_mergeVars": 5, "get_class_vars": 2, + "array_unshift": 2, "_mergeUses": 3, + "else": 70, "implementedEvents": 2, "constructClasses": 1, "init": 4, + "current": 4, "getEventManager": 13, "attach": 4, "startupProcess": 1, @@ -50536,14 +50268,17 @@ "code": 4, "id": 82, "MissingModelException": 1, + "redirect": 6, "url": 18, "status": 15, + "exit": 7, "extract": 9, "EXTR_OVERWRITE": 3, "event": 35, "//TODO": 1, "Remove": 1, "following": 1, + "line": 10, "when": 1, "events": 1, "fully": 1, @@ -50554,27 +50289,34 @@ "isStopped": 4, "result": 21, "_parseBeforeRedirect": 2, + "function_exists": 4, "session_write_close": 1, "header": 3, "is_string": 7, "codes": 3, "array_flip": 1, + "statusCode": 14, "send": 1, "_stop": 1, "resp": 6, + "elseif": 31, "compact": 8, "one": 19, "two": 6, "data": 187, "array_combine": 2, + "+": 12, "setAction": 1, "args": 5, "func_get_args": 5, "unset": 22, "call_user_func_array": 3, + "&": 19, "validate": 9, "errors": 9, + "count": 32, "validateErrors": 1, + "alias": 87, "invalidFields": 2, "render": 3, "className": 27, @@ -50590,6 +50332,7 @@ "local": 2, "disableCache": 2, "flash": 1, + "message": 12, "pause": 2, "postConditions": 1, "op": 9, @@ -50599,8 +50342,11 @@ "arrayOp": 2, "fields": 60, "field": 88, + "key": 64, "fieldOp": 11, + "continue": 7, "strtoupper": 3, + "trim": 3, "paginate": 3, "scope": 2, "whitelist": 14, @@ -50616,84 +50362,6 @@ "_afterScaffoldSaveError": 1, "scaffoldError": 2, "_scaffoldError": 1, - "php_help": 1, - "arg": 1, - "t": 26, - "php_permission": 1, - "TRUE": 1, - "php_eval": 1, - "global": 2, - "theme_path": 5, - "theme_info": 3, - "conf": 2, - "old_theme_path": 2, - "drupal_get_path": 1, - "dirname": 1, - "filename": 1, - "ob_start": 1, - "print": 1, - "eval": 1, - "ob_get_contents": 1, - "ob_end_clean": 1, - "_php_filter_tips": 1, - "filter": 1, - "format": 3, - "long": 2, - "FALSE": 2, - "base_url": 1, - "php_filter_info": 1, - "filters": 2, - "Field": 9, - "FormField": 3, - "ArrayAccess": 1, - "button": 6, - "DOMNode": 3, - "initialize": 2, - "getFormNode": 1, - "getValues": 3, - "isDisabled": 2, - "FileFormField": 3, - "hasValue": 1, - "getValue": 2, - "qs": 4, - "http_build_query": 3, - "parse_str": 2, - "queryString": 2, - "sep": 1, - "sep.": 1, - "getRawUri": 1, - "getAttribute": 10, - "remove": 4, - "offsetExists": 1, - "offsetGet": 1, - "offsetSet": 1, - "offsetUnset": 1, - "setNode": 1, - "nodeName": 13, - "parentNode": 1, - "FormFieldRegistry": 2, - "document": 6, - "root": 4, - "xpath": 2, - "DOMXPath": 1, - "query": 102, - "hasAttribute": 1, - "InputFormField": 2, - "ChoiceFormField": 2, - "addChoice": 1, - "TextareaFormField": 1, - "base": 8, - "segments": 13, - "getSegments": 4, - "target": 20, - "array_shift": 5, - "self": 1, - "create": 13, - "k": 7, - "setValue": 1, - "walk": 3, - "registry": 4, - "m": 5, "relational": 2, "mapper": 2, "DBO": 2, @@ -50718,6 +50386,7 @@ "table": 21, "pluralized": 1, "lowercase": 1, + "i": 36, "User": 1, "is": 1, "have": 2, @@ -50766,6 +50435,9 @@ "__call": 1, "dispatchMethod": 1, "getDataSource": 15, + "query": 102, + "type": 62, + "k": 7, "relation": 7, "assocKey": 13, "dynamic": 2, @@ -50773,6 +50445,7 @@ "AppModel": 1, "_constructLinkedModel": 2, "schema": 11, + "<=>": 3, "hasField": 7, "setDataSource": 2, "property_exists": 3, @@ -50780,6 +50453,7 @@ "reset": 6, "assoc": 75, "assocName": 6, + "is_numeric": 7, "unbindModel": 1, "_generateAssociation": 2, "dynamicWith": 3, @@ -50791,9 +50465,11 @@ "sources": 3, "listSources": 1, "strtolower": 1, + "array_map": 2, "MissingTableException": 1, "is_object": 2, "SimpleXMLElement": 1, + "DOMNode": 3, "_normalizeXmlData": 3, "toArray": 1, "reverse": 1, @@ -50803,33 +50479,43 @@ "fieldName": 6, "fieldValue": 7, "deconstruct": 2, + "array_keys": 7, "getAssociated": 4, + "xml": 5, "getColumnType": 4, "useNewDate": 2, "dateFields": 5, "timeFields": 2, "date": 9, "val": 27, + "sprintf": 27, + "format": 3, "columns": 5, "str_replace": 3, + "array_values": 5, "describe": 1, "getColumnTypes": 1, "trigger_error": 1, "__d": 1, "E_USER_WARNING": 1, "cols": 7, + "values": 53, "column": 10, "startQuote": 4, "endQuote": 4, "checkVirtual": 3, + "n": 12, "isVirtualField": 3, "hasMethod": 2, "getVirtualField": 1, + "create": 13, "filterKey": 2, "defaults": 6, "properties": 4, "read": 2, + "find": 17, "conditions": 41, + "array_shift": 5, "saveField": 1, "options": 85, "save": 9, @@ -50842,6 +50528,7 @@ "colType": 4, "time": 3, "strtotime": 1, + "call_user_func": 2, "joined": 5, "x": 4, "y": 2, @@ -50869,6 +50556,7 @@ "primaryAdded": 3, "idField": 3, "row": 17, + "strlen": 14, "keepExisting": 3, "associationForeignKey": 5, "links": 4, @@ -50882,6 +50570,7 @@ "intval": 4, "updateAll": 3, "foreignKeys": 3, + "info": 5, "included": 3, "array_intersect": 1, "old": 2, @@ -50919,11 +50608,13 @@ "resetAssociations": 3, "_filterResults": 2, "ucfirst": 2, + "<": 11, "modParams": 2, "_findFirst": 1, "state": 15, "_findCount": 1, "calculate": 2, + "preg_match": 6, "expression": 1, "_findList": 1, "tokenize": 1, @@ -50937,8 +50628,346 @@ "isUnique": 1, "is_bool": 1, "sql": 1, + "namespace": 28, + "Symfony": 24, + "Component": 24, + "DomCrawler": 5, + "Field": 9, + "FormField": 3, + "Form": 4, + "Link": 3, + "ArrayAccess": 1, + "private": 24, + "button": 6, + "node": 42, + "currentUri": 7, + "initialize": 2, + "getFormNode": 1, + "setValues": 2, + "getValues": 3, + "isDisabled": 2, + "FileFormField": 3, + "hasValue": 1, + "getValue": 2, + "getFiles": 3, + "getMethod": 6, + "getPhpValues": 2, + "qs": 4, + "http_build_query": 3, + "parse_str": 2, + "getPhpFiles": 2, + "getUri": 8, + "uri": 23, + "queryString": 2, + "sep": 1, + "sep.": 1, + "getRawUri": 1, + "getAttribute": 10, + "has": 7, + "remove": 4, + "get": 12, + "add": 7, + "offsetExists": 1, + "offsetGet": 1, + "offsetSet": 1, + "offsetUnset": 1, + "setNode": 1, + "nodeName": 13, + "do": 2, + "parentNode": 1, + "LogicException": 4, + "while": 6, + "FormFieldRegistry": 2, + "document": 6, + "DOMDocument": 2, + "importNode": 3, + "root": 4, + "appendChild": 10, + "createElement": 6, + "xpath": 2, + "DOMXPath": 1, + "hasAttribute": 1, + "InputFormField": 2, + "ChoiceFormField": 2, + "addChoice": 1, + "TextareaFormField": 1, + "base": 8, + "segments": 13, + "getSegments": 4, + "getName": 14, + "target": 20, + "path": 20, + "InvalidArgumentException": 9, + "self": 1, + "setValue": 1, + "walk": 3, + "static": 6, + "registry": 4, + "output": 60, + "m": 5, "SHEBANG#!php": 3, "echo": 2, + "BrowserKit": 1, + "Crawler": 2, + "Process": 1, + "PhpProcess": 2, + "abstract": 2, + "Client": 1, + "history": 15, + "cookieJar": 9, + "server": 20, + "crawler": 7, + "insulated": 7, + "followRedirects": 5, + "History": 2, + "CookieJar": 2, + "setServerParameters": 2, + "followRedirect": 4, + "Boolean": 4, + "insulate": 1, + "class_exists": 2, + "RuntimeException": 2, + "setServerParameter": 1, + "getServerParameter": 1, + "getHistory": 1, + "getCookieJar": 1, + "getCrawler": 1, + "getResponse": 1, + "getRequest": 1, + "click": 1, + "submit": 2, + "content": 4, + "changeHistory": 4, + "getAbsoluteUri": 2, + "isEmpty": 2, + "parse_url": 3, + "PHP_URL_HOST": 1, + "PHP_URL_SCHEME": 1, + "Request": 3, + "allValues": 1, + "filterRequest": 2, + "doRequestInProcess": 2, + "doRequest": 2, + "filterResponse": 2, + "updateFromResponse": 1, + "getHeader": 2, + "createCrawlerFromContent": 2, + "getContent": 2, + "process": 10, + "getScript": 2, + "sys_get_temp_dir": 2, + "run": 4, + "isSuccessful": 1, + "getOutput": 3, + "getErrorOutput": 2, + "unserialize": 1, + "addContent": 1, + "back": 2, + "requestFromRequest": 4, + "forward": 2, + "reload": 1, + "restart": 1, + "clear": 2, + "preg_replace": 4, + "PHP_URL_PATH": 1, + "strrpos": 2, + "path.": 1, + "getParameters": 1, + "getServer": 1, + "php_help": 1, + "arg": 1, + "t": 26, + "php_permission": 1, + "TRUE": 1, + "php_eval": 1, + "global": 2, + "theme_path": 5, + "theme_info": 3, + "conf": 2, + "old_theme_path": 2, + "drupal_get_path": 1, + "dirname": 1, + "filename": 1, + "ob_start": 1, + "print": 1, + "eval": 1, + "ob_get_contents": 1, + "ob_end_clean": 1, + "_php_filter_tips": 1, + "filter": 1, + "long": 2, + "FALSE": 2, + "base_url": 1, + "php_filter_info": 1, + "filters": 2, + "Console": 17, + "Input": 6, + "InputInterface": 4, + "ArgvInput": 2, + "ArrayInput": 3, + "InputDefinition": 2, + "InputOption": 15, + "InputArgument": 3, + "Output": 5, + "OutputInterface": 6, + "ConsoleOutput": 2, + "ConsoleOutputInterface": 2, + "Command": 6, + "HelpCommand": 2, + "ListCommand": 2, + "Helper": 3, + "HelperSet": 3, + "FormatterHelper": 2, + "DialogHelper": 2, + "commands": 39, + "wantHelps": 4, + "runningCommand": 5, + "version": 8, + "catchExceptions": 4, + "autoExit": 4, + "definition": 3, + "helperSet": 6, + "getDefaultHelperSet": 2, + "getDefaultInputDefinition": 2, + "getDefaultCommands": 2, + "command": 41, + "input": 20, + "doRun": 2, + "Exception": 1, + "renderException": 3, + "getCode": 1, + "getCommandName": 2, + "hasParameterOption": 7, + "setDecorated": 2, + "setInteractive": 2, + "getHelperSet": 3, + "inputStream": 2, + "getInputStream": 1, + "posix_isatty": 1, + "setVerbosity": 2, + "VERBOSITY_QUIET": 1, + "VERBOSITY_VERBOSE": 2, + "writeln": 13, + "getLongVersion": 3, + "setHelperSet": 1, + "getDefinition": 2, + "getHelp": 2, + "messages": 16, + "getOptions": 1, + "option": 5, + "getShortcut": 2, + "getDescription": 3, + "implode": 8, + "PHP_EOL": 3, + "setCatchExceptions": 1, + "boolean": 4, + "setAutoExit": 1, + "setName": 1, + "getVersion": 3, + "setVersion": 1, + "register": 1, + "addCommands": 1, + "setApplication": 2, + "isEnabled": 1, + "getAliases": 3, + "helpCommand": 3, + "setCommand": 1, + "getNamespaces": 3, + "namespaces": 4, + "extractNamespace": 7, + "array_unique": 4, + "array_filter": 2, + "findNamespace": 4, + "allNamespaces": 3, + "found": 4, + "abbrevs": 31, + "getAbbreviations": 4, + "p": 3, + "alternatives": 10, + "findAlternativeNamespace": 2, + "getAbbreviationSuggestions": 4, + "searchName": 13, + "pos": 3, + "namespace.substr": 1, + "suggestions": 2, + "aliases": 8, + "findAlternativeCommands": 2, + "substr_count": 1, + "names": 3, + "len": 11, + "abbrev": 4, + "asText": 1, + "raw": 2, + "width": 7, + "sortCommands": 4, + "space": 5, + "space.": 1, + "asXml": 2, + "asDom": 2, + "dom": 12, + "formatOutput": 1, + "commandsXML": 3, + "setAttribute": 2, + "namespacesXML": 3, + "namespaceArrayXML": 4, + "commandXML": 3, + "createTextNode": 1, + "getElementsByTagName": 1, + "item": 9, + "saveXml": 1, + "string": 5, + "encoding": 2, + "mb_detect_encoding": 1, + "mb_strlen": 1, + "title": 3, + "getTerminalWidth": 3, + "PHP_INT_MAX": 1, + "lines": 3, + "preg_split": 1, + "getMessage": 1, + "str_split": 1, + "max": 2, + "str_repeat": 2, + "title.str_repeat": 1, + "line.str_repeat": 1, + "message.": 1, + "getVerbosity": 1, + "trace": 12, + "getTrace": 1, + "getFile": 2, + "getLine": 2, + "file": 3, + "getPrevious": 1, + "getSynopsis": 1, + "defined": 5, + "ansicon": 4, + "getenv": 2, + "getSttyColumns": 3, + "match": 4, + "getTerminalHeight": 1, + "getFirstArgument": 1, + "REQUIRED": 1, + "VALUE_NONE": 7, + "descriptorspec": 2, + "proc_open": 1, + "pipes": 4, + "is_resource": 1, + "stream_get_contents": 1, + "fclose": 2, + "proc_close": 1, + "namespacedCommands": 5, + "ksort": 2, + "limit": 3, + "parts": 4, + "array_pop": 1, + "array_slice": 1, + "callback": 5, + "findAlternatives": 3, + "lev": 6, + "levenshtein": 2, + "3": 1, + "/": 1, + "asort": 1, "Yii": 3, "console": 3, "bootstrap": 1, @@ -51067,793 +51096,228 @@ "end.": 1 }, "Perl": { - "package": 14, - "App": 131, - "Ack": 136, - ";": 1193, + "SHEBANG#!perl": 5, + "#": 99, "use": 83, "warnings": 18, + ";": 1193, "strict": 18, - "File": 54, - "Next": 27, - "Plugin": 2, - "Basic": 10, - "head1": 36, - "NAME": 6, - "-": 868, - "A": 2, - "container": 1, - "for": 83, - "functions": 2, - "the": 143, - "ack": 38, - "program": 6, - "VERSION": 15, - "Version": 1, - "cut": 28, "our": 34, - "COPYRIGHT": 7, - "BEGIN": 7, - "{": 1121, - "}": 1134, - "fh": 28, - "*STDOUT": 6, - "%": 78, - "types": 26, - "type_wanted": 20, - "mappings": 29, - "ignore_dirs": 12, - "input_from_pipe": 8, - "output_to_pipe": 12, - "dir_sep_chars": 10, - "is_cygwin": 6, - "is_windows": 12, - "Spec": 13, - "(": 925, - ")": 923, - "Glob": 4, - "Getopt": 6, - "Long": 6, - "_MTN": 2, - "blib": 2, - "CVS": 5, - "RCS": 2, - "SCCS": 2, - "_darcs": 2, - "_sgbak": 2, - "_build": 2, - "actionscript": 2, - "[": 159, - "qw": 35, - "as": 37, - "mxml": 2, - "]": 155, - "ada": 4, - "adb": 2, - "ads": 2, - "asm": 4, - "s": 35, - "batch": 2, - "bat": 2, - "cmd": 2, - "binary": 3, - "q": 5, - "Binary": 2, - "files": 42, - "defined": 54, - "by": 16, - "Perl": 9, - "T": 2, - "op": 2, - "default": 19, - "off": 4, - "tt": 4, - "tt2": 2, - "ttml": 2, - "vb": 4, - "bas": 2, - "cls": 2, - "frm": 2, - "ctl": 2, - "resx": 2, - "verilog": 2, - "v": 19, - "vh": 2, - "sv": 2, - "vhdl": 4, - "vhd": 2, - "vim": 4, - "yaml": 4, - "yml": 2, - "xml": 6, - "dtd": 2, - "xsl": 2, - "xslt": 2, - "ent": 2, - "while": 31, - "my": 404, - "type": 69, - "exts": 6, - "each": 14, - "if": 276, - "ref": 33, - "ext": 14, - "@": 38, - "push": 30, - "_": 101, - "mk": 2, - "mak": 2, - "not": 54, - "t": 18, - "p": 9, - "STDIN": 2, - "O": 4, - "eq": 31, - "/MSWin32/": 2, - "quotemeta": 5, - "catfile": 4, - "SYNOPSIS": 6, - "If": 15, - "you": 44, - "want": 7, - "to": 95, - "know": 4, - "about": 4, - "F": 24, - "": 13, - "see": 5, - "file": 49, - "itself.": 3, - "No": 4, - "user": 4, - "serviceable": 1, - "parts": 1, - "inside.": 1, - "is": 69, - "all": 23, - "that": 33, - "should": 6, - "this.": 1, - "FUNCTIONS": 1, - "head2": 34, - "read_ackrc": 4, - "Reads": 1, - "contents": 2, - "of": 64, - ".ackrc": 1, - "and": 85, - "returns": 4, - "arguments.": 1, - "sub": 225, - "@files": 12, - "ENV": 40, - "ACKRC": 2, - "@dirs": 4, - "HOME": 4, - "USERPROFILE": 2, - "dir": 27, - "grep": 17, - "bsd_glob": 4, - "GLOB_TILDE": 2, - "filename": 68, - "&&": 83, - "e": 20, - "open": 7, - "or": 49, - "die": 38, - "@lines": 21, - "/./": 2, - "/": 69, - "s*#/": 2, - "<$fh>": 4, - "chomp": 3, - "close": 19, - "s/": 22, - "+": 120, - "//": 9, - "return": 157, - "get_command_line_options": 4, - "Gets": 3, - "command": 14, - "line": 20, - "arguments": 2, - "does": 10, - "specific": 2, - "tweaking.": 1, - "opt": 291, - "pager": 19, - "ACK_PAGER_COLOR": 7, - "||": 49, - "ACK_PAGER": 5, - "getopt_specs": 6, - "m": 17, - "after_context": 16, - "before_context": 18, - "shift": 165, - "val": 26, - "break": 14, - "c": 5, - "count": 23, - "color": 38, - "ACK_COLOR_MATCH": 5, - "ACK_COLOR_FILENAME": 5, - "ACK_COLOR_LINENO": 4, - "column": 4, - "#": 99, - "ignore": 7, - "this": 22, - "option": 7, - "it": 28, - "handled": 2, - "beforehand": 2, - "f": 25, - "flush": 8, - "follow": 7, - "G": 11, - "heading": 18, - "h": 6, - "H": 6, - "i": 26, - "invert_file_match": 8, - "lines": 19, - "l": 17, - "regex": 28, - "n": 19, - "o": 17, - "output": 36, - "undef": 17, - "passthru": 9, - "print0": 7, - "Q": 7, - "show_types": 4, - "smart_case": 3, - "sort_files": 11, - "u": 10, - "w": 4, - "remove_dir_sep": 7, - "delete": 10, - "print_version_statement": 2, - "exit": 16, - "show_help": 3, - "@_": 43, - "show_help_types": 2, - "require": 12, - "Pod": 4, - "Usage": 4, - "pod2usage": 2, - "verbose": 2, - "exitval": 2, - "dummy": 2, - "wanted": 4, - "no//": 2, - "must": 5, - "be": 36, - "later": 2, - "exists": 19, - "else": 53, - "qq": 18, - "Unknown": 2, - "unshift": 4, - "@ARGV": 12, - "split": 13, - "ACK_OPTIONS": 5, - "def_types_from_ARGV": 5, - "filetypes_supported": 5, - "parser": 12, - "Parser": 4, - "new": 55, - "configure": 4, - "getoptions": 4, - "to_screen": 10, - "defaults": 16, - "eval": 8, - "Win32": 9, - "Console": 2, - "ANSI": 3, - "key": 20, - "value": 12, - "<": 15, - "join": 5, - "map": 10, - "@ret": 10, - "from": 19, - "warn": 22, - "..": 7, - "uniq": 4, - "@uniq": 2, - "sort": 8, - "a": 85, - "<=>": 2, - "b": 6, - "keys": 15, - "numerical": 2, - "occurs": 2, - "only": 11, - "once": 4, - "Go": 1, - "through": 6, - "look": 2, - "I": 68, - "<--type-set>": 1, - "foo=": 1, - "bar": 3, - "<--type-add>": 1, - "xml=": 1, - ".": 125, - "Remove": 1, - "them": 5, - "add": 9, - "supported": 1, - "filetypes": 8, - "i.e.": 2, - "into": 6, - "etc.": 3, - "@typedef": 8, - "td": 6, - "set": 12, - "Builtin": 4, - "cannot": 4, - "changed.": 4, - "ne": 9, - "delete_type": 5, - "Type": 2, - "exist": 4, - "creating": 3, - "with": 26, - "...": 2, - "unless": 39, - "@exts": 8, - ".//": 2, - "Cannot": 4, - "append": 2, - "Removes": 1, - "internal": 1, - "structures": 1, - "containing": 5, - "information": 2, - "type_wanted.": 1, - "Internal": 2, - "error": 4, - "builtin": 2, - "ignoredir_filter": 5, - "Standard": 1, - "filter": 12, - "pass": 1, - "L": 34, - "": 1, - "descend_filter.": 1, - "It": 3, - "true": 3, - "directory": 8, - "any": 4, - "ones": 1, - "we": 7, - "ignore.": 1, - "path": 28, - "This": 27, - "removes": 1, - "trailing": 1, - "separator": 4, - "there": 6, - "one": 9, - "its": 2, - "argument": 1, - "Returns": 10, - "list": 10, - "<$filename>": 1, - "could": 2, - "be.": 1, - "For": 5, - "example": 5, - "": 1, - "The": 22, - "filetype": 1, - "will": 9, - "C": 56, - "": 1, - "can": 30, - "skipped": 2, - "something": 3, - "avoid": 1, - "searching": 6, - "even": 4, - "under": 5, - "a.": 1, - "constant": 2, - "TEXT": 16, - "basename": 9, - ".*": 2, - "is_searchable": 8, - "lc_basename": 8, - "lc": 5, - "r": 14, - "B": 76, - "header": 17, - "SHEBANG#!#!": 2, - "ruby": 3, - "|": 28, - "lua": 2, - "erl": 2, - "hp": 2, - "ython": 2, - "d": 9, - "d.": 2, - "*": 8, - "b/": 4, - "ba": 2, - "k": 6, - "z": 2, - "sh": 2, - "/i": 2, - "search": 11, - "false": 1, - "regular": 3, - "expression": 9, - "found.": 4, - "www": 2, - "U": 2, - "y": 8, - "tr/": 2, - "x": 7, - "w/": 3, - "nOo_/": 2, - "_thpppt": 3, - "_get_thpppt": 3, - "print": 35, - "_bar": 3, - "<<": 10, - "&": 22, - "*I": 2, - "g": 7, - "#.": 6, - ".#": 4, - "I#": 2, - "#I": 6, - "#7": 4, - "results.": 2, - "on": 25, - "when": 18, - "used": 12, - "interactively": 6, - "no": 22, - "Print": 6, - "between": 4, - "results": 8, - "different": 2, - "files.": 6, - "group": 2, - "Same": 8, - "nogroup": 2, - "noheading": 2, - "nobreak": 2, - "Highlight": 2, - "matching": 15, - "text": 6, - "redirected": 2, - "Windows": 4, - "colour": 2, - "COLOR": 6, - "match": 21, - "lineno": 2, - "Set": 3, - "filenames": 7, - "matches": 7, - "numbers.": 2, - "Flush": 2, - "immediately": 2, - "non": 2, - "goes": 2, - "pipe": 4, - "finding": 2, - "Only": 7, - "found": 11, - "without": 3, - "searching.": 2, - "PATTERN": 8, - "specified.": 4, - "REGEX": 2, - "but": 4, - "REGEX.": 2, - "Sort": 2, - "lexically.": 3, - "invert": 2, - "Print/search": 2, - "handle": 3, - "do": 12, - "g/": 2, - "G.": 2, - "show": 3, - "Show": 2, - "which": 7, - "has.": 2, - "inclusion/exclusion": 2, - "All": 4, - "searched": 5, - "Ignores": 2, - ".svn": 3, - "other": 5, - "ignored": 6, - "directories": 9, - "unrestricted": 2, - "name": 44, - "Add/Remove": 2, - "dirs": 2, - "R": 2, - "recurse": 2, - "Recurse": 3, - "subdirectories": 2, - "END_OF_HELP": 2, - "VMS": 2, - "vd": 2, - "Term": 6, - "ANSIColor": 8, - "black": 3, - "on_yellow": 3, - "bold": 5, - "green": 3, - "yellow": 3, - "printing": 2, - "qr/": 13, - "last_output_line": 6, - "any_output": 10, - "keep_context": 8, - "@before": 16, - "before_starts_at_line": 10, - "after": 18, - "number": 4, - "still": 4, - "res": 59, - "next_text": 8, - "has_lines": 4, - "scalar": 2, - "m/": 4, - "regex/": 9, - "next": 9, - "print_match_or_context": 13, - "elsif": 10, - "last": 17, - "max": 12, - "nmatches": 61, - "show_filename": 35, - "context_overall_output_count": 6, - "print_blank_line": 2, - "is_binary": 4, - "search_resource": 7, - "is_match": 7, - "starting_line_no": 1, - "match_start": 5, - "match_end": 3, - "Prints": 4, - "out": 2, - "context": 1, - "around": 5, - "match.": 3, - "opts": 2, - "array": 7, - "line_no": 12, - "show_column": 4, - "display_filename": 8, - "colored": 6, - "print_first_filename": 2, - "sep": 8, - "output_func": 8, - "print_separator": 2, - "print_filename": 2, - "display_line_no": 4, - "print_line_no": 2, - "regex/go": 2, - "regex/Term": 2, - "substr": 2, - "/eg": 2, - "z/": 2, - "K/": 2, - "z//": 2, - "print_column_no": 2, - "scope": 4, - "TOTAL_COUNT_SCOPE": 2, - "total_count": 10, - "get_total_count": 4, - "reset_total_count": 4, - "search_and_list": 8, - "Optimized": 1, - "version": 2, - "lines.": 3, - "ors": 11, - "record": 3, - "show_total": 6, - "print_count": 4, - "print_count0": 2, - "filetypes_supported_set": 9, - "True/False": 1, - "are": 25, - "print_files": 4, - "iter": 23, - "returned": 3, - "iterator": 3, - "<$regex>": 1, - "<$one>": 1, - "stop": 1, - "first.": 1, - "<$ors>": 1, - "<\"\\n\">": 1, - "defines": 2, - "what": 14, - "filename.": 1, - "print_files_with_matches": 4, - "where": 3, - "was": 2, - "repo": 18, - "Repository": 11, - "next_resource": 6, - "print_matches": 4, - "tarballs_work": 4, - ".tar": 2, - ".gz": 2, - "Tar": 4, - "XXX": 4, - "Error": 2, - "checking": 2, - "needs_line_scan": 14, - "reset": 5, - "filetype_setup": 4, - "Minor": 1, - "housekeeping": 1, - "before": 1, - "go": 1, - "expand_filenames": 7, - "reference": 8, - "expanded": 3, - "globs": 1, - "EXPAND_FILENAMES_SCOPE": 4, - "argv": 12, - "attr": 6, - "foreach": 4, - "pattern": 10, - "@results": 14, - "didn": 2, - "ve": 2, - "tried": 2, - "load": 2, - "GetAttributes": 2, - "end": 9, - "attributes": 4, - "got": 2, - "get_starting_points": 4, - "starting": 2, - "@what": 14, - "reslash": 4, - "Assume": 2, - "current": 5, - "start_point": 4, - "_match": 8, - "target": 6, - "invert_flag": 4, - "get_iterator": 4, - "Return": 2, - "starting_point": 10, - "g_regex": 4, - "file_filter": 12, - "g_regex/": 6, - "Maybe": 2, - "is_interesting": 4, - "descend_filter": 11, - "error_handler": 5, - "msg": 4, - "follow_symlinks": 6, - "set_up_pager": 3, - "Unable": 2, - "going": 1, - "pipe.": 1, - "exit_from_ack": 5, - "Exit": 1, - "application": 15, - "correct": 1, - "code.": 2, - "otherwise": 2, - "handed": 1, - "in": 36, - "argument.": 1, - "rc": 11, - "LICENSE": 3, - "Copyright": 2, - "Andy": 2, - "Lester.": 2, - "free": 4, - "software": 3, - "redistribute": 4, - "and/or": 4, - "modify": 4, - "terms": 4, - "Artistic": 2, - "License": 2, - "v2.0.": 2, - "End": 3, - "SHEBANG#!#! perl": 4, - "examples/benchmarks/fib.pl": 1, - "Fibonacci": 2, - "Benchmark": 1, - "DESCRIPTION": 4, - "Calculates": 1, - "Number": 1, - "": 1, - "unspecified": 1, - "fib": 4, - "N": 2, - "SEE": 4, - "ALSO": 4, - "": 1, - "SHEBANG#!perl": 5, + "VERSION": 15, "MAIN": 1, + "{": 1121, + "if": 276, + "(": 925, + "App": 131, + "Ack": 136, + "ne": 9, "main": 3, + ")": 923, + "die": 38, + "}": 1134, + "my": 404, "env_is_usable": 3, + "for": 83, + "@ARGV": 12, + "last": 17, + "_": 101, + "eq": 31, + "/": 69, + "-": 868, "th": 1, + "[": 159, "pt": 1, + "]": 155, + "+": 120, + "t": 18, + "&&": 83, + "_thpppt": 3, + "bar": 3, + "_bar": 3, + "no": 22, "env": 76, + "defined": 54, + "unshift": 4, + "read_ackrc": 4, + "else": 53, "@keys": 2, + "grep": 17, "ACK_/": 1, + "keys": 15, + "%": 78, + "ENV": 40, + "delete": 10, "@ENV": 1, "load_colors": 1, + "exists": 19, "ACK_SWITCHES": 1, + "warn": 22, + "show_help": 3, + "exit": 16, + "sub": 225, + "opt": 291, + "get_command_line_options": 4, + "|": 28, + "flush": 8, "Unbuffer": 1, + "the": 143, + "output": 36, "mode": 1, + "input_from_pipe": 8, + "qw": 35, + "f": 25, + "g": 7, + "l": 17, + "and": 85, + "show_filename": 35, + "regex": 28, "build_regex": 3, + "shift": 165, "nargs": 2, + "s": 35, + "res": 59, "Resource": 5, + "Basic": 10, + "new": 55, + "nmatches": 61, + "count": 23, + "search_and_list": 8, + "search_resource": 7, + "close": 19, + "exit_from_ack": 5, "file_matching": 2, + "||": 49, + "lines": 19, "check_regex": 2, + "G": 11, + "what": 14, + "get_starting_points": 4, + "iter": 23, + "get_iterator": 4, + "filetype_setup": 4, + "set_up_pager": 3, + "pager": 19, + "print_files": 4, + "elsif": 10, + "print_files_with_matches": 4, + "print_matches": 4, + "fh": 28, + "head1": 36, + "NAME": 6, + "ack": 38, "like": 13, + "text": 6, "finder": 1, + "SYNOPSIS": 6, "options": 7, + "PATTERN": 8, "FILE...": 1, "DIRECTORY...": 1, + "DESCRIPTION": 4, + "is": 69, "designed": 1, + "as": 37, + "a": 85, "replacement": 1, + "of": 64, "uses": 2, + "F": 24, "": 5, + ".": 125, "searches": 1, "named": 3, "input": 9, "FILEs": 1, + "or": 49, "standard": 1, + "files": 42, + "are": 25, + "file": 49, + "name": 44, "given": 10, + "containing": 5, + "match": 21, + "to": 95, "PATTERN.": 1, "By": 2, + "default": 19, "prints": 2, + "matching": 15, + "lines.": 3, + "can": 30, "also": 7, + "list": 10, + "that": 33, "would": 5, + "be": 36, + "searched": 5, + "without": 3, "actually": 1, + "searching": 6, + "them": 5, "let": 1, + "you": 44, "take": 5, "advantage": 1, + "know": 4, ".wango": 1, + "I": 68, + "": 13, "won": 1, "throw": 1, "away": 1, "because": 3, + "there": 6, "times": 2, + "follow": 7, "symlinks": 1, + "other": 5, "than": 5, "whatever": 1, + "starting": 2, + "directories": 9, "were": 1, "specified": 3, + "on": 25, + "command": 14, "line.": 4, + "This": 27, + "off": 4, + "by": 16, "default.": 2, "item": 44, + "B": 76, + "<": 15, "": 11, + "Only": 7, "paths": 3, "included": 1, + "in": 36, "search.": 1, + "The": 22, "entire": 3, + "path": 28, + "filename": 68, "matched": 1, "against": 1, + "Perl": 9, + "regular": 3, + "expression": 9, + "not": 54, "shell": 4, "glob.": 1, "<-i>": 5, "<-w>": 2, "<-v>": 3, "<-Q>": 4, + "do": 12, "apply": 3, + "this": 22, + "Print": 6, + "where": 3, "relative": 1, + "matches": 7, + "option": 7, "convenience": 1, "shortcut": 2, "<-f>": 6, @@ -51861,17 +51325,24 @@ "<--nogroup>": 2, "groups": 1, "with.": 1, + "when": 18, + "used": 12, "interactively.": 1, + "one": 9, "result": 1, "per": 1, + "line": 20, "grep.": 2, "redirected.": 1, "<-H>": 1, "<--with-filename>": 1, + "each": 14, + "match.": 3, "<-h>": 1, "<--no-filename>": 1, "Suppress": 1, "prefixing": 1, + "filenames": 7, "multiple": 5, "searched.": 1, "<--help>": 1, @@ -51881,16 +51352,26 @@ "<--ignore-case>": 1, "Ignore": 3, "case": 3, + "search": 11, "strings.": 1, "applies": 3, + "only": 11, "regexes": 3, "<-g>": 5, "<-G>": 3, "options.": 4, + "ignore": 7, + "dir": 27, "": 2, + "directory": 8, + "CVS": 5, + ".svn": 3, "etc": 2, + "ignored": 6, "May": 2, "directories.": 2, + "For": 5, + "example": 5, "mason": 1, "users": 4, "may": 3, @@ -51899,10 +51380,13 @@ "<--ignore-dir=data>": 1, "<--noignore-dir>": 1, "allows": 4, + "which": 7, "normally": 1, "perhaps": 1, "research": 1, + "contents": 2, "<.svn/props>": 1, + "must": 5, "always": 5, "simple": 2, "name.": 1, @@ -51915,13 +51399,19 @@ "specify": 1, "<--ignore-dir=foo>": 1, "then": 4, + "from": 19, + "any": 4, "foo": 6, "taken": 1, + "into": 6, "account": 1, + "unless": 39, "explicitly": 1, "": 2, + "print": 35, "file.": 3, "Multiple": 1, + "with": 26, "<--line>": 1, "comma": 1, "separated": 2, @@ -51944,33 +51434,44 @@ "explicitly.": 1, "helpful": 2, "don": 2, + "through": 6, "": 1, "via": 1, + "C": 56, "": 4, "": 4, "environment": 2, "variables.": 1, "Using": 3, + "does": 10, "suppress": 3, "grouping": 3, "coloring": 3, "piping": 3, "does.": 2, "<--passthru>": 1, + "Prints": 4, + "all": 23, "whether": 1, "they": 1, "expression.": 1, "Highlighting": 1, + "will": 9, + "still": 4, "work": 3, "though": 1, "so": 4, + "it": 28, "highlight": 1, + "while": 31, "seeing": 1, "tail": 1, "/access.log": 1, + "passthru": 9, "<--print0>": 1, "works": 1, "conjunction": 1, + "c": 5, "null": 1, "byte": 1, "usual": 1, @@ -51980,6 +51481,7 @@ "whitespace": 1, "e.g.": 2, "html": 1, + "print0": 7, "xargs": 2, "rm": 1, "<--literal>": 1, @@ -51990,6 +51492,7 @@ "<-r>": 1, "<-R>": 1, "<--recurse>": 1, + "Recurse": 3, "just": 2, "here": 2, "compatibility": 2, @@ -52009,13 +51512,18 @@ "option.": 1, "<--sort-files>": 1, "Sorts": 1, + "found": 11, + "lexically.": 3, "Use": 6, + "want": 7, "your": 20, "listings": 1, "deterministic": 1, + "between": 4, "runs": 1, "<--show-types>": 1, "Outputs": 1, + "filetypes": 8, "associates": 1, "Works": 1, "<--thpppt>": 1, @@ -52029,32 +51537,48 @@ "spelling": 1, "<--thpppppt>": 1, "important.": 1, + "It": 3, + "skipped": 2, "make": 3, + "binary": 3, "perl": 8, + "ruby": 3, "php": 2, "python": 1, + "xml": 6, + "exist": 4, "looks": 2, "location.": 1, + "ACK_OPTIONS": 5, "variable": 1, "specifies": 1, "placed": 1, "front": 1, "explicit": 1, + "ACK_COLOR_FILENAME": 5, "Specifies": 4, + "color": 38, "recognized": 1, + "attributes": 4, "clear": 2, + "reset": 5, "dark": 1, + "bold": 5, "underline": 1, "underscore": 2, "blink": 1, "reverse": 1, "concealed": 1, + "black": 3, "red": 1, + "green": 3, + "yellow": 3, "blue": 1, "magenta": 1, "on_black": 1, "on_red": 1, "on_green": 1, + "on_yellow": 3, "on_blue": 1, "on_magenta": 1, "on_cyan": 1, @@ -52069,7 +51593,9 @@ "on_color": 1, "background": 1, "color.": 2, + "set": 12, "<--color-filename>": 1, + "ACK_COLOR_MATCH": 5, "printed": 1, "<--color>": 1, "mode.": 1, @@ -52077,36 +51603,49 @@ "See": 1, "": 1, "specifications.": 1, + "ACK_PAGER": 5, + "program": 6, "such": 6, "": 1, "": 1, "": 1, "send": 1, + "its": 2, "output.": 1, "except": 1, + "Windows": 4, "assume": 1, "support": 2, "both": 1, + "specified.": 4, + "ACK_PAGER_COLOR": 7, "understands": 1, + "ANSI": 3, "sequences.": 1, + "If": 15, "never": 1, "back": 4, "ACK": 2, + "&": 22, "OTHER": 1, "TOOLS": 1, + "head2": 34, "Vim": 3, "integration": 3, "integrates": 1, "easily": 2, "editor.": 1, + "Set": 3, "<.vimrc>": 1, "grepprg": 1, "That": 3, "examples": 1, "<-a>": 1, + "but": 4, "flags.": 1, "Now": 1, "step": 1, + "results": 8, "Dumper": 1, "perllib": 1, "Emacs": 1, @@ -52117,25 +51656,34 @@ "an": 16, "": 1, "extension": 1, + "L": 34, "": 1, "TextMate": 2, "Pedro": 1, "Melo": 1, + "user": 4, "who": 1, "writes": 1, "Shell": 2, + "Return": 2, "Code": 1, "greater": 1, "normal": 1, + "returns": 4, + "return": 157, "code": 8, + "something": 3, + "found.": 4, "<$?=256>": 1, "": 1, "backticks.": 1, "errors": 1, "used.": 1, + "returned": 3, "at": 4, "least": 1, "returned.": 1, + "cut": 28, "DEBUGGING": 1, "PROBLEMS": 1, "gives": 2, @@ -52144,24 +51692,33 @@ "forgotten": 1, "<--noenv>": 1, "<.ackrc>": 1, + "see": 5, "remember.": 1, "Put": 1, + "type": 69, + "add": 9, "definitions": 1, "it.": 1, "smart": 1, "too.": 1, + "sort": 8, "there.": 1, "working": 1, "big": 1, "codesets": 1, "more": 2, + "files.": 6, "create": 3, "tree": 2, "ideal": 1, "sending": 1, "": 1, + "p": 9, + "i": 26, + "e": 20, "prefer": 1, "doubt": 1, + "about": 4, "day": 1, "find": 1, "trouble": 1, @@ -52177,6 +51734,7 @@ "log": 3, "scanned": 1, "twice.": 1, + "Q": 7, "aa.bb.cc.dd": 1, "/path/to/access.log": 1, "B5": 1, @@ -52228,6 +51786,7 @@ "great": 1, "did": 1, "replace": 3, + "No": 4, "read": 6, "only.": 1, "has": 3, @@ -52253,6 +51812,8 @@ "ack.": 2, "Yes": 1, "know.": 1, + "package": 14, + "out": 2, "nothing": 1, "suggest": 1, "symlink": 1, @@ -52280,31 +51841,71 @@ "Signes": 1, "Pete": 1, "Krawczyk.": 1, + "COPYRIGHT": 7, + "LICENSE": 3, + "Copyright": 2, + "Andy": 2, + "Lester.": 2, + "free": 4, + "software": 3, + "redistribute": 4, + "and/or": 4, + "modify": 4, + "under": 5, + "terms": 4, + "Artistic": 2, + "License": 2, + "v2.0.": 2, + "File": 54, + "Next": 27, + "Spec": 13, + "current": 5, "files_defaults": 3, "skip_dirs": 3, + "BEGIN": 7, + "file_filter": 12, + "undef": 17, + "descend_filter": 11, + "error_handler": 5, "CORE": 3, + "@_": 43, + "sort_files": 11, + "follow_symlinks": 6, + "map": 10, "curdir": 1, "updir": 1, "__PACKAGE__": 1, "parms": 15, "@queue": 8, "_setup": 2, + "filter": 12, "fullpath": 12, "splice": 2, "local": 5, + "next": 9, "wantarray": 3, + "d": 9, "_candidate_files": 2, + "iterator": 3, "sort_standard": 2, "cmp": 2, "sort_reverse": 1, + "reslash": 4, "@parts": 3, + "split": 13, + "//": 9, + "catfile": 4, + "defaults": 16, "passed_parms": 6, + "ref": 33, "copy": 4, "parm": 1, "hash": 11, + "key": 20, "badkey": 1, "caller": 2, "start": 7, + "push": 30, "dh": 4, "opendir": 1, "@newfiles": 5, @@ -52313,6 +51914,178 @@ "has_stat": 3, "catdir": 3, "closedir": 1, + "@": 38, + "End": 3, + "*STDOUT": 6, + "types": 26, + "type_wanted": 20, + "mappings": 29, + "ignore_dirs": 12, + "output_to_pipe": 12, + "dir_sep_chars": 10, + "is_cygwin": 6, + "is_windows": 12, + "Glob": 4, + "Getopt": 6, + "Long": 6, + "_MTN": 2, + "blib": 2, + "RCS": 2, + "SCCS": 2, + "_darcs": 2, + "_sgbak": 2, + "_build": 2, + "actionscript": 2, + "mxml": 2, + "ada": 4, + "adb": 2, + "ads": 2, + "asm": 4, + "batch": 2, + "bat": 2, + "cmd": 2, + "q": 5, + "Binary": 2, + "T": 2, + "op": 2, + "tt": 4, + "tt2": 2, + "ttml": 2, + "vb": 4, + "bas": 2, + "cls": 2, + "frm": 2, + "ctl": 2, + "resx": 2, + "verilog": 2, + "v": 19, + "vh": 2, + "sv": 2, + "vhdl": 4, + "vhd": 2, + "vim": 4, + "yaml": 4, + "yml": 2, + "dtd": 2, + "xsl": 2, + "xslt": 2, + "ent": 2, + "exts": 6, + "ext": 14, + "mk": 2, + "mak": 2, + "STDIN": 2, + "O": 4, + "/MSWin32/": 2, + "quotemeta": 5, + "@files": 12, + "ACKRC": 2, + "@dirs": 4, + "HOME": 4, + "USERPROFILE": 2, + "bsd_glob": 4, + "GLOB_TILDE": 2, + "open": 7, + "@lines": 21, + "/./": 2, + "s*#/": 2, + "<$fh>": 4, + "chomp": 3, + "s/": 22, + "getopt_specs": 6, + "m": 17, + "after_context": 16, + "before_context": 18, + "val": 26, + "break": 14, + "ACK_COLOR_LINENO": 4, + "column": 4, + "handled": 2, + "beforehand": 2, + "heading": 18, + "h": 6, + "H": 6, + "invert_file_match": 8, + "n": 19, + "o": 17, + "show_types": 4, + "smart_case": 3, + "u": 10, + "w": 4, + "remove_dir_sep": 7, + "print_version_statement": 2, + "show_help_types": 2, + "require": 12, + "Pod": 4, + "Usage": 4, + "pod2usage": 2, + "verbose": 2, + "exitval": 2, + "dummy": 2, + "wanted": 4, + "no//": 2, + "later": 2, + "qq": 18, + "Unknown": 2, + "def_types_from_ARGV": 5, + "filetypes_supported": 5, + "parser": 12, + "Parser": 4, + "configure": 4, + "getoptions": 4, + "to_screen": 10, + "eval": 8, + "Win32": 9, + "Console": 2, + "value": 12, + "join": 5, + "@ret": 10, + "..": 7, + "uniq": 4, + "@uniq": 2, + "<=>": 2, + "b": 6, + "numerical": 2, + "occurs": 2, + "once": 4, + "@typedef": 8, + "td": 6, + "Builtin": 4, + "cannot": 4, + "changed.": 4, + "delete_type": 5, + "Type": 2, + "creating": 3, + "...": 2, + "@exts": 8, + ".//": 2, + "Cannot": 4, + "append": 2, + "Internal": 2, + "error": 4, + "builtin": 2, + "ignoredir_filter": 5, + "constant": 2, + "TEXT": 16, + "basename": 9, + ".*": 2, + "is_searchable": 8, + "lc_basename": 8, + "lc": 5, + "r": 14, + "header": 17, + "SHEBANG#!#!": 2, + "lua": 2, + "erl": 2, + "hp": 2, + "ython": 2, + "d.": 2, + "*": 8, + "b/": 4, + "ba": 2, + "k": 6, + "z": 2, + "sh": 2, "": 1, "these": 4, "updated": 1, @@ -52325,14 +52098,175 @@ "js": 1, "1": 1, "str": 12, + "w/": 3, "regex_is_lc": 2, + "qr/": 13, + "regex/": 9, "S": 1, ".*//": 1, "_my_program": 3, "Basename": 2, + "_get_thpppt": 3, + "y": 8, + "www": 2, + "U": 2, + "tr/": 2, + "x": 7, + "nOo_/": 2, + "<<": 10, + "*I": 2, + "#.": 6, + ".#": 4, + "I#": 2, + "#I": 6, + "#7": 4, + "results.": 2, + "interactively": 6, + "different": 2, + "group": 2, + "Same": 8, + "nogroup": 2, + "noheading": 2, + "nobreak": 2, + "Highlight": 2, + "redirected": 2, + "colour": 2, + "COLOR": 6, + "lineno": 2, + "numbers.": 2, + "Flush": 2, + "immediately": 2, + "even": 4, + "non": 2, + "goes": 2, + "pipe": 4, + "finding": 2, + "searching.": 2, + "REGEX": 2, + "REGEX.": 2, + "Sort": 2, + "invert": 2, + "Print/search": 2, + "handle": 3, + "g/": 2, + "G.": 2, + "show": 3, + "Show": 2, + "has.": 2, + "inclusion/exclusion": 2, + "All": 4, + "Ignores": 2, + "unrestricted": 2, + "Add/Remove": 2, + "dirs": 2, + "R": 2, + "recurse": 2, + "subdirectories": 2, + "END_OF_HELP": 2, + "VMS": 2, + "vd": 2, + "Term": 6, + "ANSIColor": 8, + "printing": 2, + "last_output_line": 6, + "any_output": 10, + "keep_context": 8, + "@before": 16, + "before_starts_at_line": 10, + "after": 18, + "number": 4, + "next_text": 8, + "has_lines": 4, + "should": 6, + "scalar": 2, + "m/": 4, + "print_match_or_context": 13, + "max": 12, + "context_overall_output_count": 6, + "print_blank_line": 2, + "is_binary": 4, + "opts": 2, + "array": 7, + "is_match": 7, + "line_no": 12, + "match_start": 5, + "match_end": 3, + "show_column": 4, + "display_filename": 8, + "colored": 6, + "print_first_filename": 2, + "sep": 8, + "output_func": 8, + "print_separator": 2, + "print_filename": 2, + "display_line_no": 4, + "print_line_no": 2, + "regex/go": 2, + "regex/Term": 2, + "substr": 2, + "/eg": 2, + "z/": 2, + "K/": 2, + "z//": 2, + "print_column_no": 2, + "scope": 4, + "around": 5, + "TOTAL_COUNT_SCOPE": 2, + "total_count": 10, + "get_total_count": 4, + "reset_total_count": 4, + "ors": 11, + "record": 3, + "separator": 4, + "show_total": 6, + "print_count": 4, + "print_count0": 2, + "filetypes_supported_set": 9, + "repo": 18, + "Repository": 11, + "next_resource": 6, + "tarballs_work": 4, + ".tar": 2, + ".gz": 2, + "Tar": 4, + "XXX": 4, + "Error": 2, + "checking": 2, + "needs_line_scan": 14, + "EXPAND_FILENAMES_SCOPE": 4, + "expand_filenames": 7, + "argv": 12, + "attr": 6, + "foreach": 4, + "pattern": 10, + "@results": 14, + "didn": 2, + "ve": 2, + "tried": 2, + "load": 2, + "GetAttributes": 2, + "end": 9, + "we": 7, + "got": 2, + "expanded": 3, + "@what": 14, + "Assume": 2, + "start_point": 4, + "_match": 8, + "target": 6, + "invert_flag": 4, + "starting_point": 10, + "g_regex": 4, + "g_regex/": 6, + "Maybe": 2, + "is_interesting": 4, + "msg": 4, + "Unable": 2, + "rc": 11, "FAIL": 12, "Carp": 11, "confess": 2, + "Plugin": 2, "@ISA": 2, "class": 8, "self": 141, @@ -52349,61 +52283,178 @@ "seek": 4, "readline": 1, "nexted": 3, - "CGI": 6, - "Fast": 3, - "XML": 2, - "Hash": 11, - "XS": 2, - "FindBin": 1, - "Bin": 3, - "#use": 1, - "lib": 2, - "_stop": 4, - "request": 11, - "SIG": 3, - "nginx": 2, - "external": 2, - "fcgi": 2, - "Ext_Request": 1, - "FCGI": 1, - "Request": 11, - "*STDERR": 1, - "int": 2, - "ARGV": 2, - "conv": 2, - "use_attr": 1, - "indent": 1, - "xml_decl": 1, - "tmpl_path": 2, - "tmpl": 5, - "data": 3, - "nick": 1, - "parent": 5, - "third_party": 1, - "artist_name": 2, - "venue": 2, - "event": 2, - "date": 2, - "zA": 1, - "Z0": 1, - "Content": 2, - "application/xml": 1, - "charset": 2, - "utf": 2, - "hash2xml": 1, - "text/html": 1, - "nError": 1, - "M": 1, - "system": 1, + "SHEBANG#!#! perl": 4, + "examples/benchmarks/fib.pl": 1, + "Fibonacci": 2, + "Benchmark": 1, + "Calculates": 1, + "Number": 1, + "": 1, + "unspecified": 1, + "fib": 4, + "N": 2, + "SEE": 4, + "ALSO": 4, + "": 1, + "Plack": 25, + "Response": 16, + "Util": 3, + "Accessor": 1, + "body": 30, + "status": 17, + "Scalar": 2, + "HTTP": 16, + "Headers": 8, + "URI": 11, + "Escape": 6, + "content": 8, + "headers": 56, + "carp": 2, + "cookies": 9, + "content_length": 4, + "content_type": 5, + "content_encoding": 5, + "location": 4, + "redirect": 1, + "url": 2, + "finalize": 5, + "croak": 3, + "clone": 1, + "_finalize_cookies": 2, + "/chr": 1, + "/ge": 1, + "LWS": 1, + "single": 1, + "SP": 1, + "//g": 1, + "remove": 2, + "CR": 1, + "LF": 1, + "since": 1, + "char": 1, + "invalid": 1, + "header_field_names": 1, + "_body": 2, + "blessed": 1, + "overload": 1, + "Method": 1, + "cookie": 6, + "_bake_cookie": 2, + "push_header": 1, + "@cookie": 7, + "uri_escape": 3, + "domain": 3, + "_date": 2, + "expires": 7, + "secure": 2, + "httponly": 1, + "@MON": 1, + "Jan": 1, + "Feb": 1, + "Mar": 1, + "Apr": 1, + "Jun": 1, + "Jul": 1, + "Aug": 1, + "Sep": 1, + "Oct": 1, + "Nov": 1, + "Dec": 1, + "@WDAY": 1, + "Sun": 1, + "Mon": 1, + "Tue": 1, + "Wed": 1, + "Thu": 1, + "Fri": 1, + "Sat": 1, + "sec": 2, + "hour": 2, + "mday": 2, + "mon": 2, + "year": 3, + "wday": 2, + "gmtime": 1, + "sprintf": 1, + "WDAY": 1, + "MON": 1, + "__END__": 2, + "Portable": 2, + "PSGI": 10, + "response": 5, + "psgi_handler": 1, + "API.": 1, + "METHODS": 2, + "over": 2, + "Creates": 2, + "object.": 4, + "Sets": 2, + "gets": 2, + "code.": 2, + "": 1, + "alias.": 2, + "response.": 1, + "Setter": 2, + "either": 2, + "": 2, + "headers.": 1, + "body_str": 1, + "io": 1, + "Gets": 3, + "body.": 1, + "string": 5, + "IO": 1, + "Handle": 1, + "": 1, + "method": 8, + "X": 2, "Foo": 11, - "Bar": 1, - "@array": 1, + "text/plain": 1, + "gzip": 1, + "normalize": 1, + "string.": 1, + "Users": 1, + "module": 2, + "have": 2, + "responsible": 1, + "properly": 1, + "encoding": 2, + "parameters.": 3, + "": 1, + "header.": 2, + "names": 1, + "their": 1, + "corresponding": 1, + "values": 5, + "plain": 2, + "": 2, + "everything": 1, + "reference": 8, + "": 1, + "": 2, + "": 1, + "": 1, + "": 1, + "integer": 1, + "epoch": 1, + "": 1, + "convert": 1, + "formats": 1, + "<+3M>": 1, + "Returns": 10, + "reference.": 1, + "AUTHOR": 1, + "Tokuhiro": 2, + "Matsuno": 2, + "Tatsuhiko": 2, + "Miyagawa": 2, + "": 2, "pod": 1, "Catalyst": 10, - "PSGI": 10, "How": 1, "": 3, "specification": 3, + "defines": 2, "interface": 1, "web": 8, "servers": 2, @@ -52420,6 +52471,7 @@ "server": 2, "mod_perl": 3, "FastCGI": 2, + "etc.": 3, "": 3, "implementation": 1, "running": 1, @@ -52428,6 +52480,7 @@ "XXXX": 1, "classes": 2, "environments": 1, + "CGI": 6, "been": 1, "changed": 1, "done": 2, @@ -52443,6 +52496,7 @@ "Writing": 2, "alternate": 1, "": 1, + "application": 15, "extensions": 1, "implement": 2, "": 1, @@ -52464,6 +52518,7 @@ "Details": 1, "below.": 1, "Additional": 1, + "information": 2, "": 1, "What": 1, "generates": 2, @@ -52473,11 +52528,11 @@ "": 1, "some": 1, "engine": 1, + "specific": 2, "fixes": 1, "uniform": 1, "behaviour": 2, "contained": 1, - "over": 2, "": 1, "": 1, "override": 1, @@ -52490,7 +52545,6 @@ "ll": 1, "An": 1, "apply_default_middlewares": 2, - "method": 8, "supplied": 1, "wrap": 1, "middlewares": 1, @@ -52505,20 +52559,16 @@ "library": 2, "software.": 1, "same": 2, - "Plack": 25, + "itself.": 3, + "Request": 11, "_001": 1, - "HTTP": 16, - "Headers": 8, + "Hash": 11, "MultiValue": 9, "Body": 2, "Upload": 2, "TempBuffer": 2, - "URI": 11, - "Escape": 6, "_deprecated": 8, "alt": 1, - "carp": 2, - "croak": 3, "required": 2, "address": 2, "REMOTE_ADDR": 1, @@ -52537,16 +52587,11 @@ "script_name": 1, "SCRIPT_NAME": 2, "scheme": 3, - "secure": 2, - "body": 30, - "content_length": 4, "CONTENT_LENGTH": 3, - "content_type": 5, "CONTENT_TYPE": 2, "session": 1, "session_options": 1, "logger": 1, - "cookies": 9, "HTTP_COOKIE": 3, "@pairs": 2, "pair": 4, @@ -52554,17 +52599,15 @@ "query_parameters": 3, "uri": 11, "query_form": 2, - "content": 8, "_parse_request_body": 4, "cl": 10, "raw_body": 1, - "headers": 56, "field": 2, "HTTPS": 1, "_//": 1, "CONTENT": 1, "COOKIE": 1, - "content_encoding": 5, + "/i": 2, "referer": 3, "user_agent": 3, "body_parameters": 3, @@ -52577,7 +52620,6 @@ "params": 1, "query_params": 1, "body_params": 1, - "cookie": 6, "param": 8, "get_all": 2, "upload": 13, @@ -52586,13 +52628,11 @@ "path_query": 1, "_uri_base": 3, "path_escape_class": 2, - "uri_escape": 3, "QUERY_STRING": 3, "canonical": 2, "HTTP_HOST": 1, "SERVER_NAME": 1, "new_response": 4, - "Response": 16, "ct": 3, "cleanup": 1, "spin": 2, @@ -52603,12 +52643,9 @@ "@uploads": 3, "@obj": 3, "_make_upload": 2, - "__END__": 2, - "Portable": 2, + "request": 11, "app_or_middleware": 1, "req": 28, - "finalize": 5, - "": 2, "provides": 1, "consistent": 1, "API": 2, @@ -52616,7 +52653,6 @@ "across": 1, "environments.": 1, "CAVEAT": 1, - "module": 2, "intended": 1, "developers": 3, "framework": 2, @@ -52637,22 +52673,22 @@ "level": 1, "top": 1, "PSGI.": 1, - "METHODS": 2, "Some": 1, "earlier": 1, "versions": 1, "deprecated": 1, + "version": 2, "Take": 1, + "look": 2, "": 1, "Unless": 1, + "otherwise": 2, "noted": 1, "": 1, "passing": 1, - "values": 5, "accessor": 1, "debug": 1, "set.": 1, - "": 2, "request.": 1, "uploads.": 2, "": 2, @@ -52662,7 +52698,6 @@ "content_encoding.": 1, "content_length.": 1, "content_type.": 1, - "header.": 2, "referer.": 1, "user_agent.": 1, "GET": 1, @@ -52672,20 +52707,17 @@ "method.": 1, "alternative": 1, "accessing": 1, - "parameters.": 3, "Unlike": 1, "": 1, "allow": 1, "modifying": 1, "@values": 1, "@params": 1, + "A": 2, "convenient": 1, "@fields": 1, - "Creates": 2, "": 3, - "object.": 4, "Handy": 1, - "remove": 2, "dependency": 1, "easy": 1, "subclassing": 1, @@ -52695,12 +52727,12 @@ "generation": 1, "middlewares.": 1, "Parameters": 1, + "i.e.": 2, "": 1, "": 1, "": 1, "": 1, "store": 1, - "plain": 2, "": 1, "scalars": 1, "references": 1, @@ -52740,8 +52772,6 @@ "Cookie": 2, "handling": 1, "simplified": 1, - "string": 5, - "encoding": 2, "decoding": 1, "totally": 1, "up": 1, @@ -52752,123 +52782,122 @@ "": 1, "Simple": 1, "longer": 1, - "have": 2, "wacky": 1, "simply": 1, - "Tatsuhiko": 2, - "Miyagawa": 2, "Kazuhiro": 1, "Osawa": 1, - "Tokuhiro": 2, - "Matsuno": 2, "": 1, "": 1, - "Util": 3, - "Accessor": 1, - "status": 17, - "Scalar": 2, - "location": 4, - "redirect": 1, - "url": 2, - "clone": 1, - "_finalize_cookies": 2, - "/chr": 1, - "/ge": 1, - "LWS": 1, - "single": 1, - "SP": 1, - "//g": 1, - "CR": 1, - "LF": 1, - "since": 1, - "char": 1, - "invalid": 1, - "header_field_names": 1, - "_body": 2, - "blessed": 1, - "overload": 1, - "Method": 1, - "_bake_cookie": 2, - "push_header": 1, - "@cookie": 7, - "domain": 3, - "_date": 2, - "expires": 7, - "httponly": 1, - "@MON": 1, - "Jan": 1, - "Feb": 1, - "Mar": 1, - "Apr": 1, - "Jun": 1, - "Jul": 1, - "Aug": 1, - "Sep": 1, - "Oct": 1, - "Nov": 1, - "Dec": 1, - "@WDAY": 1, - "Sun": 1, - "Mon": 1, - "Tue": 1, - "Wed": 1, - "Thu": 1, - "Fri": 1, - "Sat": 1, - "sec": 2, - "hour": 2, - "mday": 2, - "mon": 2, - "year": 3, - "wday": 2, - "gmtime": 1, - "sprintf": 1, - "WDAY": 1, - "MON": 1, - "response": 5, - "psgi_handler": 1, - "API.": 1, - "Sets": 2, - "gets": 2, - "": 1, - "alias.": 2, - "response.": 1, - "Setter": 2, - "either": 2, - "headers.": 1, - "body_str": 1, - "io": 1, - "body.": 1, - "IO": 1, - "Handle": 1, - "": 1, - "X": 2, - "text/plain": 1, - "gzip": 1, - "normalize": 1, - "string.": 1, - "Users": 1, - "responsible": 1, - "properly": 1, - "": 1, - "names": 1, - "their": 1, - "corresponding": 1, - "": 2, - "everything": 1, - "": 1, - "": 2, - "": 1, - "": 1, - "": 1, - "integer": 1, - "epoch": 1, - "": 1, - "convert": 1, - "formats": 1, - "<+3M>": 1, - "reference.": 1, - "AUTHOR": 1 + "Fast": 3, + "XML": 2, + "XS": 2, + "FindBin": 1, + "Bin": 3, + "#use": 1, + "lib": 2, + "_stop": 4, + "SIG": 3, + "nginx": 2, + "external": 2, + "fcgi": 2, + "Ext_Request": 1, + "FCGI": 1, + "*STDERR": 1, + "int": 2, + "ARGV": 2, + "conv": 2, + "use_attr": 1, + "indent": 1, + "xml_decl": 1, + "tmpl_path": 2, + "tmpl": 5, + "data": 3, + "nick": 1, + "parent": 5, + "third_party": 1, + "artist_name": 2, + "venue": 2, + "event": 2, + "date": 2, + "zA": 1, + "Z0": 1, + "Content": 2, + "application/xml": 1, + "charset": 2, + "utf": 2, + "hash2xml": 1, + "text/html": 1, + "nError": 1, + "M": 1, + "system": 1, + "Bar": 1, + "@array": 1, + "container": 1, + "functions": 2, + "Version": 1, + "serviceable": 1, + "parts": 1, + "inside.": 1, + "this.": 1, + "FUNCTIONS": 1, + "Reads": 1, + ".ackrc": 1, + "arguments.": 1, + "arguments": 2, + "tweaking.": 1, + "Go": 1, + "<--type-set>": 1, + "foo=": 1, + "<--type-add>": 1, + "xml=": 1, + "Remove": 1, + "supported": 1, + "Removes": 1, + "internal": 1, + "structures": 1, + "type_wanted.": 1, + "Standard": 1, + "pass": 1, + "": 1, + "descend_filter.": 1, + "true": 3, + "ones": 1, + "ignore.": 1, + "removes": 1, + "trailing": 1, + "argument": 1, + "<$filename>": 1, + "could": 2, + "be.": 1, + "": 1, + "filetype": 1, + "": 1, + "avoid": 1, + "a.": 1, + "false": 1, + "starting_line_no": 1, + "context": 1, + "Optimized": 1, + "True/False": 1, + "<$regex>": 1, + "<$one>": 1, + "stop": 1, + "first.": 1, + "<$ors>": 1, + "<\"\\n\">": 1, + "filename.": 1, + "was": 2, + "Minor": 1, + "housekeeping": 1, + "before": 1, + "go": 1, + "globs": 1, + "going": 1, + "pipe.": 1, + "Exit": 1, + "correct": 1, + "handed": 1, + "argument.": 1 }, "Perl6": { "token": 6, @@ -52883,37 +52912,6 @@ "": 1, "#": 13, "N*": 1, - "role": 10, - "q": 5, - "stopper": 2, - "MAIN": 1, - "quote": 1, - ")": 19, - "backslash": 3, - "sym": 3, - "<\\\\>": 1, - "": 1, - "": 1, - "": 1, - "": 1, - ".": 1, - "method": 2, - "tweak_q": 1, - "(": 16, - "v": 2, - "self.panic": 2, - "tweak_qq": 1, - "qq": 5, - "does": 7, - "b1": 1, - "c1": 1, - "s1": 1, - "a1": 1, - "h1": 1, - "f1": 1, - "Too": 2, - "late": 2, - "for": 2, "SHEBANG#!perl": 1, "use": 1, "v6": 1, @@ -52931,21 +52929,26 @@ "multi": 2, "line": 5, "comment": 2, + "(": 16, + ")": 19, "I": 1, "there": 1, "m": 2, "even": 1, "specialer": 1, + "does": 7, "nesting": 1, "work": 1, "<": 3, "trying": 1, "mixed": 1, "delimiters": 1, + "qq": 5, "": 1, "arbitrary": 2, "delimiter": 2, "Hooray": 1, + "q": 5, "": 1, "with": 9, "whitespace": 1, @@ -52962,6 +52965,7 @@ "highlighted": 1, "table": 1, "Of": 1, + "role": 10, "things": 1, "A": 3, "single": 3, @@ -52993,72 +52997,37 @@ "/": 1, "": 1, "": 1, - "roleq": 1 + "roleq": 1, + "stopper": 2, + "MAIN": 1, + "quote": 1, + "backslash": 3, + "sym": 3, + "<\\\\>": 1, + "": 1, + "": 1, + "": 1, + "": 1, + ".": 1, + "method": 2, + "tweak_q": 1, + "v": 2, + "self.panic": 2, + "tweak_qq": 1, + "b1": 1, + "c1": 1, + "s1": 1, + "a1": 1, + "h1": 1, + "f1": 1, + "Too": 2, + "late": 2, + "for": 2 }, "Pike": { "#pike": 2, "__REAL_VERSION__": 2, - "constant": 13, - "Generic": 1, - "__builtin.GenericError": 1, - ";": 149, - "Index": 1, - "__builtin.IndexError": 1, - "BadArgument": 1, - "__builtin.BadArgumentError": 1, - "Math": 1, - "__builtin.MathError": 1, - "Resource": 1, - "__builtin.ResourceError": 1, - "Permission": 1, - "__builtin.PermissionError": 1, - "Decode": 1, - "__builtin.DecodeError": 1, - "Cpp": 1, - "__builtin.CppError": 1, - "Compilation": 1, - "__builtin.CompilationError": 1, - "MasterLoad": 1, - "__builtin.MasterLoadError": 1, - "ModuleLoad": 1, - "__builtin.ModuleLoadError": 1, "//": 85, - "Returns": 2, - "an": 2, - "Error": 2, - "object": 5, - "for": 1, - "any": 1, - "argument": 2, - "it": 2, - "receives.": 1, - "If": 1, - "the": 4, - "already": 1, - "is": 2, - "or": 1, - "empty": 1, - "does": 1, - "nothing.": 1, - "mkerror": 1, - "(": 218, - "mixed": 8, - "error": 14, - ")": 218, - "{": 51, - "if": 35, - "UNDEFINED": 1, - "return": 41, - "objectp": 1, - "&&": 2, - "-": 50, - "is_generic_error": 1, - "arrayp": 2, - "Error.Generic": 3, - "@error": 1, - "stringp": 1, - "sprintf": 3, - "}": 51, "A": 2, "string": 20, "wrapper": 1, @@ -53071,6 +53040,7 @@ "[": 45, "Stdio.File": 32, "]": 45, + "object": 5, "in": 1, "addition": 1, "some": 1, @@ -53079,6 +53049,7 @@ "Stdio.FILE": 4, "object.": 2, "This": 1, + "constant": 13, "can": 2, "used": 1, "distinguish": 1, @@ -53086,10 +53057,13 @@ "from": 1, "real": 1, "is_fake_file": 1, + ";": 149, "protected": 12, "data": 34, "int": 31, "ptr": 27, + "(": 218, + ")": 218, "r": 10, "w": 6, "mtime": 4, @@ -53100,21 +53074,27 @@ "write_oob_cb": 5, "close_cb": 5, "@seealso": 33, + "-": 50, "close": 2, "void": 25, "|": 14, "direction": 5, + "{": 51, "lower_case": 2, "||": 2, "cr": 2, "has_value": 4, "cw": 2, + "if": 35, + "}": 51, + "return": 41, "@decl": 1, "create": 3, "type": 11, "pointer": 1, "_data": 3, "_ptr": 2, + "error": 14, "time": 3, "else": 5, "make_type_str": 3, @@ -53124,8 +53104,10 @@ "Always": 3, "returns": 4, "errno": 2, + "Returns": 2, "size": 3, "and": 1, + "the": 4, "creation": 1, "string.": 2, "Stdio.Stat": 3, @@ -53137,6 +53119,7 @@ "line_iterator": 2, "String.SplitIterator": 3, "trim": 2, + "mixed": 8, "id": 3, "query_id": 2, "set_id": 2, @@ -53182,7 +53165,9 @@ "str": 12, "...": 2, "extra": 2, + "arrayp": 2, "str*": 1, + "sprintf": 3, "@extra": 1, "..": 1, "set_blocking": 3, @@ -53207,6 +53192,7 @@ "query_write_oob_callback": 2, "_sprintf": 1, "t": 2, + "&&": 2, "casted": 1, "cast": 1, "switch": 1, @@ -53245,7 +53231,50 @@ "set_keepalive": 1, "trylock": 1, "write_oob": 1, - "@endignore": 1 + "@endignore": 1, + "Generic": 1, + "__builtin.GenericError": 1, + "Index": 1, + "__builtin.IndexError": 1, + "BadArgument": 1, + "__builtin.BadArgumentError": 1, + "Math": 1, + "__builtin.MathError": 1, + "Resource": 1, + "__builtin.ResourceError": 1, + "Permission": 1, + "__builtin.PermissionError": 1, + "Decode": 1, + "__builtin.DecodeError": 1, + "Cpp": 1, + "__builtin.CppError": 1, + "Compilation": 1, + "__builtin.CompilationError": 1, + "MasterLoad": 1, + "__builtin.MasterLoadError": 1, + "ModuleLoad": 1, + "__builtin.ModuleLoadError": 1, + "an": 2, + "Error": 2, + "for": 1, + "any": 1, + "argument": 2, + "it": 2, + "receives.": 1, + "If": 1, + "already": 1, + "is": 2, + "or": 1, + "empty": 1, + "does": 1, + "nothing.": 1, + "mkerror": 1, + "UNDEFINED": 1, + "objectp": 1, + "is_generic_error": 1, + "Error.Generic": 3, + "@error": 1, + "stringp": 1 }, "Pod": { "Id": 1, @@ -53664,18 +53693,60 @@ }, "Prolog": { "-": 161, - "module": 3, + "lib": 1, "(": 327, - "format_spec": 12, + "ic": 1, + ")": 326, + ".": 107, + "vabs": 2, + "Val": 8, + "AbsVal": 10, + "#": 9, + ";": 12, + "labeling": 2, "[": 87, + "]": 87, + "vabsIC": 1, + "or": 1, + "faitListe": 3, + "_": 30, + "First": 2, + "|": 25, + "Rest": 12, + "Taille": 2, + "Min": 2, + "Max": 2, + "Min..Max": 1, + "Taille1": 2, + "suite": 3, + "Xi": 5, + "Xi1": 7, + "Xi2": 7, + "checkRelation": 3, + "VabsXi1": 2, + "Xi.": 1, + "checkPeriode": 3, + "ListVar": 2, + "length": 4, + "Length": 2, + "<": 1, + "X1": 2, + "X2": 2, + "X3": 2, + "X4": 2, + "X5": 2, + "X6": 2, + "X7": 2, + "X8": 2, + "X9": 2, + "X10": 3, + "module": 3, + "format_spec": 12, "format_error/2": 1, "format_spec/2": 1, "format_spec//1": 1, "spec_arity/2": 1, "spec_types/2": 1, - "]": 87, - ")": 326, - ".": 107, "use_module": 8, "library": 8, "dcg/basics": 1, @@ -53698,19 +53769,16 @@ "Format": 23, "Args": 19, "format_error_": 5, - "_": 30, "debug": 4, "Spec": 10, "is_list": 1, "spec_types": 8, "Types": 16, "types_error": 3, - "length": 4, "TypesLen": 3, "ArgsLen": 3, "types_error_": 4, "Arg": 6, - "|": 25, "Type": 3, "ground": 5, "is_of_type": 2, @@ -53780,13 +53848,11 @@ "Numeric": 4, "Modifier": 2, "Action": 15, - "Rest": 12, "numeric_argument": 5, "modifier_argument": 3, "action": 6, "text": 4, "String": 6, - ";": 12, "Codes": 21, "string_codes": 4, "string_without": 1, @@ -53838,6 +53904,32 @@ "s": 2, "t": 1, "W": 1, + "turing": 1, + "Tape0": 2, + "Tape": 2, + "perform": 4, + "q0": 1, + "Ls": 12, + "Rs": 16, + "reverse": 4, + "Ls1": 4, + "append": 2, + "qf": 1, + "Q0": 2, + "Ls0": 6, + "Rs0": 6, + "symbol": 3, + "Sym": 6, + "RsRest": 2, + "rule": 1, + "Q1": 2, + "NewSym": 2, + "Rs1": 2, + "b": 4, + "left": 4, + "stay": 1, + "right": 1, + "L": 2, "func": 13, "op": 2, "xfy": 2, @@ -53912,10 +54004,8 @@ "can": 3, "chained.": 2, "Reversed": 2, - "reverse": 4, "sort": 2, "c": 2, - "b": 4, "meta_predicate": 2, "throw": 1, "permission_error": 1, @@ -53958,7 +54048,6 @@ "Goals": 2, "Tmp": 3, "instantiation_error": 1, - "append": 2, "NewArgs": 2, "variant_sha1": 1, "Sha": 2, @@ -53976,43 +54065,6 @@ "Name": 2, "Args0": 2, "nth1": 2, - "lib": 1, - "ic": 1, - "vabs": 2, - "Val": 8, - "AbsVal": 10, - "#": 9, - "labeling": 2, - "vabsIC": 1, - "or": 1, - "faitListe": 3, - "First": 2, - "Taille": 2, - "Min": 2, - "Max": 2, - "Min..Max": 1, - "Taille1": 2, - "suite": 3, - "Xi": 5, - "Xi1": 7, - "Xi2": 7, - "checkRelation": 3, - "VabsXi1": 2, - "Xi.": 1, - "checkPeriode": 3, - "ListVar": 2, - "Length": 2, - "<": 1, - "X1": 2, - "X2": 2, - "X3": 2, - "X4": 2, - "X5": 2, - "X6": 2, - "X7": 2, - "X8": 2, - "X9": 2, - "X10": 3, "male": 3, "john": 2, "peter": 3, @@ -54021,30 +54073,7 @@ "christie": 3, "parents": 4, "brother": 1, - "M": 2, - "turing": 1, - "Tape0": 2, - "Tape": 2, - "perform": 4, - "q0": 1, - "Ls": 12, - "Rs": 16, - "Ls1": 4, - "qf": 1, - "Q0": 2, - "Ls0": 6, - "Rs0": 6, - "symbol": 3, - "Sym": 6, - "RsRest": 2, - "rule": 1, - "Q1": 2, - "NewSym": 2, - "Rs1": 2, - "left": 4, - "stay": 1, - "right": 1, - "L": 2 + "M": 2 }, "Propeller Spin": { "{": 26, @@ -54320,6 +54349,962 @@ "WITH": 10, "DEALINGS": 10, "SOFTWARE.": 10, + "***************************************": 12, + "VGA": 8, + "Driver": 4, + "v1.1": 8, + "Chip": 7, + "Gracey": 7, + "Inc.": 8, + "-": 486, + "May": 2, + "pixel": 40, + "tile": 41, + "size": 5, + "x": 112, + "enable": 5, + "more": 90, + "efficient": 2, + "vga_mode": 3, + "start": 16, + "colortable": 7, + "inside": 2, + "cog": 39, + "VAR": 10, + "long": 122, + "PUB": 63, + "vgaptr": 3, + "okay": 11, + "Start": 6, + "driver": 17, + "starts": 4, + "false": 7, + "if": 53, + "available": 4, + "pointer": 14, + "parameters": 19, + "stop": 9, + "cognew": 4, + "@entry": 3, + "Stop": 6, + "frees": 6, + "cogstop": 3, + "Assembly": 2, + "language": 2, + "Entry": 2, + "reset": 14, + "tasks": 6, + "mov": 154, + "#8": 14, + "Superfield": 2, + "hv": 5, + "interlace": 20, + "#0": 20, + "get": 30, + "nz": 3, + "field": 4, + "wrlong": 6, + "visible": 7, + "par": 20, + "back": 8, + "porch": 9, + "lines": 24, + "vb": 2, + "movd": 10, + "bcolor": 3, + "#colortable": 2, + "call": 44, + "#blank_line": 3, + "nobl": 1, + "screen": 13, + "_screen": 3, + "vertical": 29, + "tiles": 19, + "line": 33, + "vx": 2, + "_vx": 1, + "skip": 5, + "if_nz": 18, + "tjz": 8, + "hb": 2, + "nobp": 1, + "horizontal": 21, + "vscl": 12, + "hx": 5, + "add": 92, + "pixels": 14, + "rdlong": 16, + "colors": 18, + "color": 39, + "#2": 15, + "pass": 5, + "video": 7, + "djnz": 24, + "repoint": 2, + "first": 9, + "same": 7, + "hf": 2, + "nofp": 1, + "hsync": 5, + "#blank_hsync": 1, + "expand": 3, + "ror": 4, + "linerot": 5, + "next": 16, + "y": 80, + "wc": 57, + "front": 4, + "vf": 1, + "nofl": 1, + "xor": 8, + "#1": 47, + "wz": 21, + "unless": 2, + "field1": 4, + "status": 15, + "invisible": 8, + "taskptr": 3, + "#tasks": 1, + "before": 1, + "after": 2, + "_vs": 2, + "except": 1, + "last": 6, + "#blank_vsync": 1, + "jmp": 24, + "#field": 1, + "else": 3, + "new": 6, + "superfield": 1, + "blank_vsync": 1, + "cmp": 16, + "blank": 2, + "vsync": 4, + "if_nc": 15, + "h2": 2, + "if_c_and_nz": 1, + "%": 162, + "if_c": 37, + "waitvid": 3, + "task": 2, + "section": 4, + "z": 4, + "undisturbed": 2, + "blank_hsync": 1, + "_hf": 1, + "invisble": 1, + "sync": 10, + "_hb": 1, + "#hv": 1, + "blank_hsync_ret": 1, + "blank_line_ret": 1, + "blank_vsync_ret": 1, + "ret": 17, + "t1": 139, + "_status": 1, + "t2": 90, + "#paramcount": 1, + "load": 3, + "#4": 8, + "d0": 11, + "directions": 1, + "shl": 21, + "_pins": 4, + "_enable": 2, + "#disabled": 2, + "break": 6, + "return": 15, + "later": 6, + "min": 4, + "_rate": 3, + "pllmin": 1, + "_011": 1, + "adjust": 4, + "rate": 6, + "within": 5, + "MHz": 16, + "shr": 24, + "hvbase": 5, + "frqa": 3, + "muxnc": 5, + "vmask": 1, + "test": 38, + "_mode": 7, + "hmask": 1, + "_hx": 4, + "_vt": 3, + "consider": 2, + "muxc": 5, + "lineadd": 4, + "lineinc": 3, + "movi": 3, + "vcfg": 2, + "_000": 5, + "/160": 2, + "#13": 3, + "times": 3, + "loaded": 3, + "#9": 2, + "FC": 2, + "_colors": 2, + "colormask": 1, + "andn": 7, + "d6": 3, + "loop": 14, + "keep": 2, + "loading": 2, + "multiply": 8, + "multiply_ret": 2, + "Disabled": 2, + "nap": 5, + "ms": 4, + "try": 2, + "again": 2, + "ctra": 5, + "disabled": 3, + "#3": 7, + "cnt": 2, + "waitcnt": 3, + "#entry": 1, + "Initialized": 1, + "data": 47, + "pll": 5, + "lowest": 1, + "output": 11, + "frequency": 18, + "pllmax": 1, + "_000_000": 6, + "*16": 1, + "vco": 3, + "max": 6, + "m4": 1, + "Uninitialized": 3, + "taskret": 4, + "res": 89, + "Parameter": 4, + "buffer": 4, + "/non": 4, + "tihv": 1, + "@long": 2, + "_ht": 2, + "_ho": 2, + "_hd": 1, + "_hs": 1, + "_vd": 1, + "fit": 2, + "underneath": 1, + "BF": 1, + "___": 1, + "/1/2": 1, + "off/visible/invisible": 1, + "vga_enable": 3, + "pppttt": 1, + "write": 36, + "words": 5, + "vga_colors": 2, + "vga_vt": 6, + "expansion": 8, + "vga_vx": 4, + "offset": 14, + "vga_vo": 4, + "display": 23, + "ticks": 11, + "vga_hf": 2, + "vga_hb": 2, + "vga_vf": 2, + "vga_vb": 2, + "tick": 2, + "Hz": 5, + "preceding": 2, + "may": 6, + "copied": 2, + "your": 2, + "code.": 2, + "After": 2, + "setting": 2, + "variables": 3, + "@vga_status": 1, + "driver.": 3, + "All": 2, + "reloaded": 2, + "each": 11, + "superframe": 2, + "allowing": 2, + "you": 5, + "live": 2, + "changes.": 2, + "minimize": 2, + "flicker": 5, + "correlate": 2, + "changes": 3, + "vga_status.": 1, + "Experimentation": 2, + "required": 4, + "optimize": 2, + "some": 3, + "parameters.": 2, + "descriptions": 2, + "__________": 4, + "vga_status": 1, + "sets": 3, + "indicate": 2, + "CLKFREQ": 10, + "<": 14, + "currently": 4, + "outputting": 4, + "disable": 7, + "driven": 2, + "low": 5, + "reduces": 2, + "power": 3, + "________": 3, + "vga_pins": 1, + "bits": 29, + "select": 9, + "group": 7, + "top": 10, + "bit": 35, + "selects": 4, + "between": 4, + "x16": 7, + "x32": 6, + "tileheight": 4, + "controls": 4, + "progressive": 2, + "scan": 7, + "less": 5, + "good": 5, + "motion": 2, + "LCD": 4, + "monitors": 1, + "interlaced": 5, + "allows": 1, + "double": 2, + "text": 9, + "polarity": 1, + "respectively": 1, + "active": 3, + "high": 7, + "vga_screen": 1, + "define": 10, + "contents": 3, + "right": 9, + "bottom": 5, + "number": 27, + "must": 18, + "vga_ht": 3, + "word": 212, + "has": 4, + "bitfields": 2, + "colorset": 2, + "ptr": 5, + "pixelgroup": 2, + "colorset*": 2, + "pixelgroup**": 2, + "address": 16, + "ppppppppppcccc00": 2, + "p": 8, + "colorsets": 4, + "longs": 15, + "four": 8, + "**": 2, + "pixelgroups": 2, + "": 5, + "up": 4, + "fields": 2, + "t": 10, + "care": 1, + "used": 9, + "it": 8, + "suggested": 1, + "bits/pins": 3, + "red": 2, + "green": 1, + "blue": 3, + "bit/pin": 1, + "sum": 7, + "ohm": 10, + "form": 7, + "V": 7, + "signals": 1, + "connect": 3, + "signal": 8, + "RED": 1, + "GREEN": 2, + "BLUE": 1, + "connector": 3, + "always": 2, + "HSYNC": 1, + "via": 5, + "resistor": 4, + "VSYNC": 1, + "______": 14, + "least": 14, + "vga_hx": 3, + "factor": 4, + "sure": 4, + "||": 5, + "vga_ho": 2, + "equal": 1, + "than": 5, + "vga_hd": 2, + "does": 2, + "not": 6, + "exceed": 1, + "vga_vd": 2, + "/": 27, + "pos/neg": 4, + "recommended": 2, + "shifts": 4, + "right/left": 2, + "up/down": 2, + "vga_hs": 1, + "vga_vs": 1, + "vga_rate": 2, + "limit": 4, + "KHz": 3, + "should": 1, + "PS/2": 1, + "Keyboard": 1, + "v1.0.1": 2, + "REVISION": 2, + "HISTORY": 2, + "Updated": 4, + "/15/2006": 2, + "work": 2, + "Propeller": 3, + "Tool": 1, + "par_tail": 1, + "key": 4, + "head": 1, + "par_present": 1, + "states": 1, + "par_keys": 1, + "******************************************": 2, + "org": 2, + "entry": 1, + "#_dpin": 1, + "masks": 1, + "dmask": 4, + "_dpin": 3, + "cmask": 2, + "_cpin": 2, + "parameter": 14, + "_head": 6, + "_present/_states": 1, + "dlsb": 2, + "stat": 6, + "Update": 1, + "update": 7, + "_head/_present/_states": 1, + "#1*4": 1, + "Get": 2, + "scancode": 2, + "state": 2, + "#receive": 1, + "AA": 1, + "extended": 1, + "if_nc_and_z": 2, + "F0": 3, + "unknown": 2, + "ignore": 2, + "if_z": 11, + "#newcode": 1, + "_states": 2, + "set/clear": 1, + "#5": 2, + "#_states": 1, + "reg": 5, + "cmpsub": 4, + "shift/ctrl/alt/win": 1, + "pairs": 1, + "#16": 6, + "E0": 1, + "handle": 1, + "scrlock/capslock/numlock": 1, + "_locks": 5, + "#29": 1, + "change": 3, + "configure": 3, + "flag": 5, + "leds": 3, + "check": 5, + "shift1": 1, + "if_nz_and_c": 4, + "B": 15, + "#@shift1": 1, + "@table": 1, + "#look": 1, + "D": 18, + "shift": 7, + "alpha": 1, + "considering": 1, + "capslock": 1, + "if_nz_and_nc": 1, + "flags": 1, + "alt": 1, + "room": 1, + "valid": 2, + "enter": 1, + "sub": 12, + "F": 18, + "FF": 3, + "#11*4": 1, + "wrword": 1, + "F3": 1, + "keyboard": 3, + "lock": 1, + "#transmit": 2, + "rev": 1, + "&": 21, + "rcl": 2, + "_present": 2, + "#update": 1, + "Lookup": 2, + "byte": 27, + "table": 9, + "perform": 2, + "lookup": 1, + "movs": 9, + "#table": 1, + "#27": 1, + "#rand": 1, + "Transmit": 1, + "pull": 2, + "clock": 4, + "napshr": 3, + "#18": 2, + "release": 1, + "ready": 10, + "transmit_bit": 1, + "#wait_c0": 2, + "_d2": 1, + "wcond": 3, + "c1": 2, + "another": 7, + "c0d0": 2, + "wait": 6, + "until": 3, + "#wait": 2, + "#receive_ack": 1, + "ack": 1, + "error": 1, + "#reset": 2, + "transmit_ret": 1, + "receive": 1, + "receive_bit": 1, + "pause": 1, + "us": 1, + "#nap": 1, + "_d3": 1, + "#receive_bit": 1, + "align": 1, + "isolate": 1, + "look_ret": 1, + "receive_ack_ret": 1, + "receive_ret": 1, + "wait_c0": 1, + "c0": 1, + "timeout": 1, + "wloop": 1, + "_d4": 1, + "replaced": 1, + "c0/c1/c0d0/c1d1": 1, + "if_never": 1, + "replacements": 1, + "#wloop": 3, + "if_c_or_nz": 1, + "c1d1": 1, + "if_nc_or_z": 1, + "scales": 1, + "time": 7, + "snag": 1, + "elapses": 1, + "nap_ret": 1, + "F9": 1, + "F5": 1, + "D2": 1, + "F1": 2, + "D1": 1, + "F12": 1, + "F10": 1, + "D7": 1, + "F6": 1, + "D3": 1, + "Tab": 2, + "Alt": 2, + "R": 3, + "L": 5, + "F3F2": 1, + "q": 1, + "w": 8, + "Win": 2, + "d": 2, + "Space": 2, + "f": 2, + "r": 4, + "Apps": 1, + "h": 2, + "Power": 1, + "j": 2, + "Sleep": 1, + "i": 24, + ".": 2, + "EF2F": 1, + "l": 2, + "CapsLock": 1, + "Enter": 3, + "C": 11, + "E": 7, + "WakeUp": 1, + "BackSpace": 1, + "C5E1": 1, + "C0E4": 1, + "Home": 1, + "Insert": 1, + "C9EA": 1, + "Down": 1, + "E5": 1, + "Right": 1, + "C2E8": 1, + "Esc": 1, + "DF": 2, + "F11": 1, + "EC": 1, + "PageDn": 1, + "ED": 1, + "PrScr": 1, + "C6E9": 1, + "ScrLock": 1, + "D6": 1, + "_________": 5, + "Key": 1, + "Codes": 1, + "keypress": 1, + "keystate": 2, + "E0..FF": 1, + "AS": 1, + "Vocal": 2, + "Tract": 2, + "October": 1, + "synthesizes": 1, + "human": 1, + "vocal": 10, + "tract": 12, + "real": 2, + "It": 1, + "MHz.": 1, + "controlled": 1, + "reside": 1, + "parent": 1, + "aa": 2, + "ga": 5, + "gp": 2, + "vp": 3, + "vr": 1, + "f1": 4, + "f2": 1, + "f3": 3, + "f4": 2, + "na": 2, + "nf": 2, + "fa": 2, + "ff": 2, + "values.": 2, + "Before": 1, + "were": 1, + "interpolation": 1, + "shy": 1, + "frame": 12, + "makes": 1, + "behave": 1, + "sensibly": 1, + "during": 2, + "gaps.": 1, + "CON": 4, + "frame_buffers": 2, + "bytes": 2, + "per": 4, + "frame_longs": 3, + "frame_bytes": 1, + "...must": 1, + "dira_": 3, + "dirb_": 1, + "ctra_": 1, + "ctrb_": 3, + "frqa_": 3, + "cnt_": 1, + "many": 1, + "...contiguous": 1, + "tract_ptr": 3, + "pos_pin": 7, + "neg_pin": 6, + "fm_offset": 5, + "positive": 1, + "delta": 10, + "modulation": 4, + "negative": 2, + "also": 1, + "enabled": 2, + "fm": 6, + "aural": 13, + "subcarrier": 3, + "generation": 2, + "_500_000": 1, + "NTSC": 11, + "Remember": 1, + "ctrb": 4, + "duty": 2, + "mode": 7, + "|": 22, + "<<": 70, + "Ready": 1, + "repeat": 18, + "clkfreq": 2, + "Launch": 1, + "@attenuation": 1, + "Reset": 1, + "buffers": 1, + "longfill": 2, + "@index": 1, + "constant": 3, + "frame_buffer_longs": 2, + "set_attenuation": 1, + "level": 5, + "Set": 5, + "master": 2, + "attenuation": 3, + "initially": 2, + "set_pace": 2, + "percentage": 3, + "pace": 3, + "go": 1, + "Queue": 1, + "current": 3, + "transition": 1, + "over": 2, + "actual": 4, + "integer": 2, + "see": 2, + "Load": 1, + "bytemove": 1, + "@frames": 1, + "index": 5, + "Increment": 1, + "full": 3, + "Returns": 4, + "true": 6, + "queue": 2, + "useful": 2, + "checking": 1, + "would": 1, + "have": 1, + "frames": 2, + "empty": 2, + "detecting": 1, + "finished": 1, + "sample_ptr": 1, + "receives": 1, + "audio": 1, + "samples": 1, + "signed": 4, + "values": 2, + "updated": 1, + "@sample": 1, + "aural_id": 1, + "id": 2, + "executing": 1, + "algorithm": 1, + "connecting": 1, + "broadcast": 19, + "tv": 2, + "Initialization": 1, + "zero": 10, + "reserved": 3, + "clear_cnt": 1, + "#2*15": 1, + "saves": 2, + "hub": 1, + "memory": 2, + "minst": 3, + "d0s0": 3, + "mult_ret": 1, + "antilog_ret": 1, + "assemble": 1, + "cordic": 4, + "steps": 9, + "reserves": 2, + "cstep": 1, + "instruction": 2, + "center": 10, + "prepare": 1, + "initial": 6, + "cnt_value": 3, + "cnt_ticks": 3, + "Loop": 1, + "Wait": 2, + "sample": 2, + "period": 1, + "sar": 8, + "cycle": 1, + "driving": 1, + "h80000000": 2, + "frqb": 2, + "White": 1, + "noise": 3, + "source": 2, + "lfsr": 1, + "lfsr_taps": 2, + "Aspiration": 1, + "vibrato": 3, + "#10": 2, + "vphase": 2, + "glottal": 2, + "pitch": 5, + "divide": 3, + "final": 3, + "mesh": 1, + "tune": 2, + "convert": 1, + "log": 2, + "phase": 2, + "gphase": 3, + "formant2": 2, + "rotate": 2, + "f2x": 3, + "f2y": 3, + "#cordic": 2, + "formant4": 2, + "f4x": 3, + "f4y": 3, + "subtract": 1, + "nx": 4, + "negated": 1, + "nasal": 2, + "amplitude": 3, + "#mult": 1, + "negate": 2, + "fphase": 4, + "frication": 2, + "#sine": 1, + "Handle": 1, + "cycles": 4, + "frame_ptr": 6, + "past": 1, + "miscellaneous": 2, + "frame_index": 3, + "stepsize": 2, + "step_size": 5, + "h00FFFFFF": 2, + "final1": 2, + "finali": 2, + "iterate": 3, + "aa..ff": 4, + "jmpret": 5, + "#loop": 9, + "insure": 2, + "accurate": 1, + "accumulation": 1, + "step_acc": 3, + "set2": 3, + "#par_curr": 1, + "set3": 2, + "#par_next": 1, + "set4": 3, + "#par_step": 1, + "#24": 1, + "par_curr": 3, + "absolute": 1, + "msb": 2, + "nr": 1, + "step": 9, + "mult": 2, + "negnz": 3, + "par_step": 1, + "pointers": 2, + "frame_cnt": 2, + "step1": 2, + "stepi": 1, + "done": 3, + "stepframe": 1, + "#frame_bytes": 1, + "par_next": 2, + "Math": 1, + "Subroutines": 1, + "Antilog": 1, + "whole": 2, + "fraction": 1, + "out": 24, + "antilog": 2, + "FFEA0000": 1, + "position": 9, + "h00000FFE": 2, + "base": 6, + "rdword": 10, + "insert": 2, + "leading": 1, + "Scaled": 1, + "sine": 7, + "unsigned": 3, + "scale": 7, + "angle": 23, + "h00001000": 2, + "quadrant": 3, + "negc": 1, + "justify": 4, + "result": 6, + "Multiply": 1, + "multiplier": 3, + "#15": 1, + "mult_step": 1, + "Cordic": 1, + "rotation": 3, + "degree": 1, + "#cordic_steps": 1, + "gets": 1, + "assembled": 1, + "x13": 2, + "cordic_dx": 1, + "incremented": 1, + "sumnc": 7, + "sumc": 4, + "cordic_a": 1, + "cordic_delta": 2, + "linear": 1, + "feedback": 2, + "register": 1, + "B901476": 1, + "constants": 2, + "greater": 1, + "h40000000": 1, + "h01000000": 1, + "FFFFFF": 1, + "h00010000": 1, + "h0000D000": 1, + "D000": 1, + "h00007000": 1, + "FFE": 1, + "h00000800": 1, + "registers": 2, + "clear": 5, + "startup": 2, + "Undefined": 2, + "Data": 1, + "zeroed": 1, + "initialization": 2, + "code": 3, + "cleared": 1, + "f1x": 1, + "f1y": 1, + "f3x": 1, + "f3y": 1, + "aspiration": 1, + "***": 1, + "mult_steps": 1, + "assembly": 1, + "area": 1, + "w/ret": 1, + "cordic_ret": 1, "****************************************": 4, "Debug_Lcd": 1, "v1.2": 2, @@ -54328,56 +55313,38 @@ "Williams": 2, "Jeff": 2, "Martin": 2, - "Inc.": 8, "Debugging": 1, "wrapper": 1, "Serial_Lcd": 1, - "-": 486, "March": 1, - "Updated": 4, "conform": 1, - "Propeller": 3, - "initialization": 2, "standards.": 1, - "v1.1": 8, "April": 1, "consistency.": 1, "OBJ": 2, "lcd": 2, - "number": 27, "string": 8, "conversion": 1, - "PUB": 63, "init": 2, "baud": 2, - "lines": 24, - "okay": 11, "Initializes": 1, "serial": 1, - "LCD": 4, - "true": 6, - "if": 53, - "parameters": 19, "lcd.init": 1, "finalize": 1, "Finalizes": 1, - "frees": 6, "floats": 1, "lcd.finalize": 1, "putc": 1, "txbyte": 2, "Send": 1, - "byte": 27, "terminal": 4, "lcd.putc": 1, "str": 3, "strAddr": 2, "Print": 15, - "zero": 10, "terminated": 4, "lcd.str": 8, "dec": 3, - "signed": 4, "decimal": 5, "num.dec": 1, "decf": 1, @@ -54386,11 +55353,9 @@ "space": 1, "padded": 2, "fixed": 1, - "field": 4, "num.decf": 1, "decx": 1, "digits": 23, - "negative": 2, "num.decx": 1, "hex": 3, "hexadecimal": 4, @@ -54402,20 +55367,17 @@ "binary": 4, "num.bin": 1, "ibin": 1, - "%": 162, "num.ibin": 1, "cls": 1, "Clears": 2, "moves": 1, "cursor": 9, "home": 4, - "position": 9, "lcd.cls": 1, "Moves": 2, "lcd.home": 1, "gotoxy": 1, "col": 9, - "line": 33, "col/line": 1, "lcd.gotoxy": 1, "clrln": 1, @@ -54425,16 +55387,11 @@ "off": 8, "blink": 4, "lcd.cursor": 1, - "display": 23, - "status": 15, "Controls": 1, "visibility": 1, - "false": 7, "hide": 1, - "contents": 3, "clearing": 1, "lcd.displayOn": 1, - "else": 3, "lcd.displayOff": 1, "custom": 2, "char": 2, @@ -54442,39 +55399,246 @@ "Installs": 1, "character": 6, "map": 1, - "address": 16, "definition": 9, "array": 1, "lcd.custom": 1, "backLight": 1, "Enable": 1, - "disable": 7, "backlight": 1, "affects": 1, "backlit": 1, "models": 1, "lcd.backLight": 1, - "***************************************": 12, + "TV": 9, + "Text": 1, + "cols": 5, + "rows": 4, + "screensize": 4, + "lastrow": 2, + "tv_count": 2, + "row": 4, + "tv_status": 4, + "off/on": 3, + "tv_pins": 5, + "tccip": 3, + "chroma": 19, + "ntsc/pal": 3, + "tv_screen": 5, + "tv_ht": 5, + "tv_hx": 5, + "tv_ho": 5, + "tv_broadcast": 4, + "basepin": 3, + "setcolors": 2, + "@palette": 1, + "longmove": 2, + "@tv_status": 3, + "@tv_params": 1, + "@screen": 3, + "tv_colors": 2, + "@colors": 2, + "tv.start": 1, + "tv.stop": 2, + "stringptr": 3, + "strsize": 2, + "_000_000_000": 2, + "//": 4, + "elseif": 2, + "lookupz": 2, + "..": 4, + "k": 1, + "Output": 1, + "backspace": 1, + "tab": 3, + "spaces": 1, + "X": 4, + "follows": 4, + "Y": 2, + "others": 1, + "printable": 1, + "characters": 1, + "case": 5, + "wordfill": 2, + "print": 2, + "while": 5, + "A..": 1, + "newline": 3, + "other": 1, + "colorptr": 2, + "fore": 3, + "Override": 1, + "default": 1, + "palette": 2, + "list": 1, + "arranged": 3, + "scroll": 1, + "hc": 1, + "ho": 1, + "white": 2, + "dark": 2, + "BB": 1, + "yellow": 1, + "brown": 1, + "cyan": 3, + "pink": 1, + "tv_mode": 2, + "lntsc": 3, + "fpal": 2, + "_433_618": 2, + "PAL": 10, + "spal": 3, + "tvptr": 3, + "vinv": 2, + "burst": 2, + "sync_high2": 2, + "black": 2, + "upper": 2, + "leftmost": 1, + "vert": 1, + "if_z_eq_c": 1, + "#hsync": 1, + "pulses": 2, + "vsync1": 2, + "#sync_low1": 1, + "hhalf": 2, + "field2": 1, + "#superfield": 1, + "Blank": 1, + "Horizontal": 1, + "pal": 2, + "toggle": 1, + "phaseflip": 4, + "phasemask": 2, + "sync_scale1": 1, + "setup": 3, + "hsync_ret": 1, + "vsync_high": 1, + "#sync_high1": 1, + "Tasks": 1, + "performed": 1, + "sections": 1, + "#_enable": 1, + "rd": 1, + "#wtab": 1, + "ltab": 1, + "#ltab": 1, + "cancel": 1, + "_broadcast": 4, + "m8": 3, + "fcolor": 4, + "#divide": 2, + "_111": 1, + "m128": 2, + "_100": 1, + "_001": 1, + "swap": 2, + "broadcast/baseband": 1, + "strip": 3, + "baseband": 18, + "_auralcog": 1, + "colorreg": 3, + "colorloop": 1, + "m1": 4, + "reload": 1, + "d0s1": 1, + "F0F0F0F0": 1, + "pins0": 1, + "_01110000_00001111_00000111": 1, + "pins1": 1, + "_11110111_01111111_01110111": 1, + "sync_high1": 1, + "_101010_0101": 1, + "NTSC/PAL": 2, + "metrics": 1, + "tables": 1, + "wtab": 1, + "sntsc": 3, + "lpal": 3, + "hrest": 2, + "vvis": 2, + "vrep": 2, + "_8A": 1, + "_AA": 1, + "sync_scale2": 1, + "_00000000_01_10101010101010_0101": 1, + "m2": 1, + "contiguous": 1, + "tv_status.": 1, + "tv_enable": 2, + "requirement": 2, + "_______": 2, + "_0111": 6, + "_1111": 6, + "_0000": 4, + "nibble": 4, + "attach": 1, + "/560/1100": 2, + "network": 1, + "below": 4, + "visual": 1, + "carrier": 1, + "mixing": 2, + "mix": 2, + "black/white": 2, + "composite": 1, + "doubles": 1, + "format": 1, + "_318_180": 1, + "_579_545": 1, + "_734_472": 1, + "itself": 1, + "tv_vt": 3, + "luminance": 2, + "range": 2, + "adds/subtracts": 1, + "beware": 1, + "modulated": 1, + "produce": 1, + "saturated": 1, + "toggling": 1, + "levels": 1, + "because": 1, + "look": 2, + "abruptly": 1, + "rather": 1, + "against": 1, + "background": 1, + "best": 1, + "appearance": 1, + "_____": 6, + "practical": 2, + "/30": 1, + "tv_vx": 2, + "tv_vo": 2, + "centered": 2, + "image": 2, + "____________": 1, + "expressed": 1, + "ie": 1, + "channel": 1, + "_250_000": 2, + "modulator": 2, + "turned": 2, + "broadcasting": 1, + "___________": 1, + "tv_auralcog": 1, + "supply": 1, + "selected": 1, + "bandwidth": 2, + "vary": 1, "Graphics": 3, - "Driver": 4, - "Chip": 7, - "Gracey": 7, "Theory": 1, - "cog": 39, "launched": 1, "processes": 1, "commands": 1, - "via": 5, "routines.": 1, "Points": 1, "arcs": 1, "sprites": 1, - "text": 9, "polygons": 1, "rasterized": 1, "specified": 1, "stretch": 1, - "memory": 2, "serves": 1, "generic": 1, "bitmap": 15, @@ -54482,12 +55646,9 @@ "displayed": 1, "TV.SRC": 1, "VGA.SRC": 1, - "driver.": 3, "GRAPHICS_DEMO.SRC": 1, "usage": 1, "example.": 1, - "CON": 4, - "#1": 47, "_setup": 1, "_color": 2, "_width": 2, @@ -54503,85 +55664,40 @@ "_textmode": 2, "_fill": 1, "_loop": 5, - "VAR": 10, - "long": 122, "command": 7, "bitmap_base": 7, - "pixel": 40, - "data": 47, "slices": 3, "text_xs": 1, "text_ys": 1, "text_sp": 1, "text_just": 1, "font": 3, - "pointer": 14, - "same": 7, "instances": 1, - "stop": 9, - "cognew": 4, "@loop": 1, "@command": 1, - "Stop": 6, "graphics": 4, - "driver": 17, - "cogstop": 3, - "setup": 3, "x_tiles": 9, "y_tiles": 9, "x_origin": 2, "y_origin": 2, "base_ptr": 3, - "|": 22, "bases_ptr": 3, "slices_ptr": 1, - "Set": 5, - "x": 112, - "tiles": 19, - "x16": 7, - "pixels": 14, - "each": 11, - "y": 80, "relative": 2, - "center": 10, - "base": 6, "setcommand": 13, - "write": 36, "bases": 2, - "<<": 70, "retain": 2, - "high": 7, - "level": 5, "bitmap_longs": 1, - "clear": 5, "dest_ptr": 2, "Copy": 1, - "double": 2, "buffered": 1, - "flicker": 5, "destination": 1, - "color": 39, - "bit": 35, "pattern": 2, - "code": 3, - "bits": 29, - "@colors": 2, - "&": 21, "determine": 2, "shape/width": 2, - "w": 8, - "F": 18, "pixel_width": 1, "pixel_passes": 2, "@w": 1, - "update": 7, - "new": 6, - "repeat": 18, - "i": 24, - "p": 8, - "E": 7, - "r": 4, - "<": 14, "colorwidth": 1, "plot": 17, "Plot": 3, @@ -54591,17 +55707,12 @@ "arc": 21, "xr": 7, "yr": 7, - "angle": 23, "anglestep": 2, - "steps": 9, "arcmode": 2, "radii": 3, - "initial": 6, "FFF": 3, "..359.956": 3, - "step": 9, "leaves": 1, - "between": 4, "points": 2, "vec": 1, "vecscale": 5, @@ -54609,10 +55720,7 @@ "vecdef_ptr": 5, "vector": 12, "sprite": 14, - "scale": 7, - "rotation": 3, "Vector": 2, - "word": 212, "length": 4, "vecarc": 2, "pix": 3, @@ -54620,16 +55728,12 @@ "pixdef_ptr": 3, "mirror": 1, "Pixel": 1, - "justify": 4, "draw": 5, "textarc": 1, "string_ptr": 6, "justx": 2, "justy": 3, - "it": 8, - "may": 6, "necessary": 1, - "call": 44, ".finish": 1, "immediately": 1, "afterwards": 1, @@ -54639,10 +55743,7 @@ "drawn": 1, "@justx": 1, "@x_scale": 1, - "get": 30, "half": 2, - "min": 4, - "max": 6, "pmin": 1, "round/square": 1, "corners": 1, @@ -54661,18 +55762,12 @@ "y1": 7, "xy": 1, "solid": 1, - "/": 27, "finish": 2, - "Wait": 2, - "current": 3, - "insure": 2, "safe": 1, "manually": 1, "manipulate": 1, - "while": 5, "primitives": 1, "xa0": 53, - "start": 16, "ya1": 3, "ya2": 1, "ya3": 2, @@ -54712,18 +55807,14 @@ "a0": 8, "a2": 1, "farc": 41, - "another": 7, "arc/line": 1, "Round": 1, "recipes": 1, - "C": 11, - "D": 18, "fline": 88, "xa2": 48, "xb2": 26, "xa1": 8, "xb1": 2, - "more": 90, "xa3": 8, "xb3": 6, "xb4": 35, @@ -54733,7 +55824,6 @@ "a7": 2, "aE": 1, "aC": 2, - ".": 2, "aF": 4, "aD": 3, "aB": 2, @@ -54741,54 +55831,25 @@ "a8": 8, "@": 1, "a4": 3, - "B": 15, "H": 1, "J": 1, - "L": 5, "N": 1, "P": 6, - "R": 3, "T": 5, "aA": 5, - "V": 7, - "X": 4, "Z": 1, "b": 1, - "d": 2, - "f": 2, - "h": 2, - "j": 2, - "l": 2, - "t": 10, "v": 1, - "z": 4, - "delta": 10, "bullet": 1, "fx": 1, "*************************************": 2, - "org": 2, - "loop": 14, - "rdlong": 16, - "t1": 139, - "par": 20, - "wz": 21, "arguments": 1, - "mov": 154, - "t2": 90, "t3": 10, - "#8": 14, "arg": 3, "arg0": 12, - "add": 92, - "d0": 11, - "#4": 8, - "djnz": 24, - "wrlong": 6, "dx": 20, "dy": 15, "arg1": 3, - "ror": 4, - "#16": 6, "jump": 1, "jumps": 6, "color_": 1, @@ -54805,8 +55866,6 @@ "arg3": 12, "basesptr": 4, "arg5": 6, - "jmp": 24, - "#loop": 9, "width_": 1, "pwidth": 3, "passes": 3, @@ -54814,59 +55873,37 @@ "line_": 1, "#linepd": 2, "arg7": 6, - "#3": 7, - "cmp": 16, "exit": 5, "px": 14, "py": 11, - "mode": 7, - "if_z": 11, "#plotp": 3, - "test": 38, "arg4": 5, "iterations": 1, "vecdef": 1, - "rdword": 10, "t7": 8, "add/sub": 1, "to/from": 1, "t6": 7, - "sumc": 4, "#multiply": 2, "round": 1, - "up": 4, "/2": 1, "lsb": 1, - "shr": 24, "t4": 7, - "if_nc": 15, "h8000": 5, - "wc": 57, - "if_c": 37, "xwords": 1, "ywords": 1, "xxxxxxxx": 2, "save": 1, - "actual": 4, "sy": 5, "rdbyte": 3, "origin": 1, - "adjust": 4, "neg": 2, - "sub": 12, "arg2": 7, - "sumnc": 7, - "if_nz": 18, "yline": 1, "sx": 4, - "#0": 20, - "next": 16, - "#2": 15, - "shl": 21, "t5": 4, "xpixel": 2, "rol": 1, - "muxc": 5, "pcolor": 5, "color1": 2, "color2": 2, @@ -54874,9 +55911,6 @@ "#arcmod": 1, "text_": 1, "chr": 4, - "done": 3, - "scan": 7, - "tjz": 8, "def": 2, "extract": 4, "_0001_1": 1, @@ -54892,9 +55926,7 @@ "_0111_0": 1, "setd_ret": 1, "fontxy_ret": 1, - "ret": 17, "fontb": 1, - "multiply": 8, "fontb_ret": 1, "textmode_": 1, "textsp": 2, @@ -54903,7 +55935,6 @@ "db2": 1, "linechange": 1, "lines_minus_1": 1, - "right": 9, "fractions": 1, "pre": 1, "increment": 1, @@ -54912,25 +55943,15 @@ "integers": 1, "base0": 17, "base1": 10, - "sar": 8, "cmps": 3, - "out": 24, - "range": 2, "ylongs": 6, - "skip": 5, "mins": 1, "mask": 3, "mask0": 8, - "#5": 2, - "ready": 10, "count": 4, "mask1": 6, "bits0": 6, "bits1": 5, - "pass": 5, - "not": 6, - "full": 3, - "longs": 15, "deltas": 1, "linepd": 1, "wr": 2, @@ -54938,7 +55959,6 @@ "abs": 1, "dominant": 2, "axis": 1, - "last": 6, "ratio": 1, "xloop": 1, "linepd_ret": 1, @@ -54952,20 +55972,14 @@ "pair": 1, "account": 1, "special": 1, - "case": 5, - "andn": 7, "slice": 7, "shift0": 1, "colorize": 1, - "upper": 2, "subx": 1, "#wslice": 1, - "offset": 14, - "Get": 2, "args": 5, "move": 2, "using": 1, - "first": 9, "arg6": 1, "arcmod_ret": 1, "arg2/t4": 1, @@ -54977,695 +55991,19 @@ "cartesian": 1, "polarx": 1, "sine_90": 2, - "sine": 7, - "quadrant": 3, - "nz": 3, - "negate": 2, - "table": 9, "sine_table": 1, - "shift": 7, - "final": 3, "sine/cosine": 1, - "integer": 2, - "negnz": 3, "sine_180": 1, "shifted": 1, - "multiplier": 3, "product": 1, "Defined": 1, - "constants": 2, "hFFFFFFFF": 1, "FFFFFFFF": 1, "fontptr": 1, - "Undefined": 2, "temps": 1, - "res": 89, - "pointers": 2, "slicesptr": 1, "line/plot": 1, "coordinates": 1, - "Inductive": 1, - "Sensor": 1, - "Demo": 1, - "Test": 2, - "Circuit": 1, - "pF": 1, - "K": 4, - "M": 1, - "FPin": 2, - "SDF": 1, - "sigma": 3, - "feedback": 2, - "SDI": 1, - "GND": 4, - "Coils": 1, - "Wire": 1, - "used": 9, - "was": 2, - "GREEN": 2, - "about": 4, - "gauge": 1, - "Coke": 3, - "Can": 3, - "form": 7, - "MHz": 16, - "BIC": 1, - "pen": 1, - "How": 1, - "does": 2, - "work": 2, - "Note": 1, - "reported": 2, - "resonate": 5, - "frequency": 18, - "LC": 8, - "frequency.": 2, - "Instead": 1, - "voltage": 5, - "produced": 1, - "circuit": 5, - "clipped.": 1, - "In": 2, - "below": 4, - "When": 1, - "you": 5, - "apply": 1, - "small": 1, - "specific": 1, - "near": 1, - "uncommon": 1, - "measure": 1, - "times": 3, - "amount": 1, - "applying": 1, - "circuit.": 1, - "through": 1, - "diode": 2, - "basically": 1, - "feeds": 1, - "divide": 3, - "divider": 1, - "...So": 1, - "order": 1, - "see": 2, - "ADC": 2, - "sweep": 2, - "result": 6, - "output": 11, - "needs": 1, - "generate": 1, - "Volts": 1, - "ground.": 1, - "drop": 1, - "across": 1, - "since": 1, - "sensitive": 1, - "works": 1, - "after": 2, - "divider.": 1, - "typical": 1, - "magnitude": 1, - "applied": 2, - "might": 1, - "look": 2, - "something": 1, - "*****": 4, - "...With": 1, - "looks": 1, - "X****": 1, - "...The": 1, - "denotes": 1, - "location": 1, - "reason": 1, - "slightly": 1, - "reasons": 1, - "really.": 1, - "lazy": 1, - "I": 1, - "didn": 1, - "acts": 1, - "dead": 1, - "short.": 1, - "situation": 1, - "exactly": 1, - "great": 1, - "gr.start": 2, - "gr.setup": 2, - "FindResonateFrequency": 1, - "DisplayInductorValue": 2, - "Freq.Synth": 1, - "FValue": 1, - "ADC.SigmaDelta": 1, - "@FTemp": 1, - "gr.clear": 1, - "gr.copy": 2, - "display_base": 2, - "Option": 2, - "Start": 6, - "*********************************************": 2, - "Frequency": 1, - "LowerFrequency": 2, - "*100/": 1, - "UpperFrequency": 1, - "gr.colorwidth": 4, - "gr.plot": 3, - "gr.line": 3, - "FTemp/1024": 1, - "Finish": 1, - "PS/2": 1, - "Keyboard": 1, - "v1.0.1": 2, - "REVISION": 2, - "HISTORY": 2, - "/15/2006": 2, - "Tool": 1, - "par_tail": 1, - "key": 4, - "buffer": 4, - "head": 1, - "par_present": 1, - "states": 1, - "par_keys": 1, - "******************************************": 2, - "entry": 1, - "movd": 10, - "#_dpin": 1, - "masks": 1, - "dmask": 4, - "_dpin": 3, - "cmask": 2, - "_cpin": 2, - "reset": 14, - "parameter": 14, - "_head": 6, - "_present/_states": 1, - "dlsb": 2, - "stat": 6, - "Update": 1, - "_head/_present/_states": 1, - "#1*4": 1, - "scancode": 2, - "state": 2, - "#receive": 1, - "AA": 1, - "extended": 1, - "if_nc_and_z": 2, - "F0": 3, - "unknown": 2, - "ignore": 2, - "#newcode": 1, - "_states": 2, - "set/clear": 1, - "#_states": 1, - "reg": 5, - "muxnc": 5, - "cmpsub": 4, - "shift/ctrl/alt/win": 1, - "pairs": 1, - "E0": 1, - "handle": 1, - "scrlock/capslock/numlock": 1, - "_000": 5, - "_locks": 5, - "#29": 1, - "change": 3, - "configure": 3, - "flag": 5, - "leds": 3, - "check": 5, - "shift1": 1, - "if_nz_and_c": 4, - "#@shift1": 1, - "@table": 1, - "#look": 1, - "alpha": 1, - "considering": 1, - "capslock": 1, - "if_nz_and_nc": 1, - "xor": 8, - "flags": 1, - "alt": 1, - "room": 1, - "valid": 2, - "enter": 1, - "FF": 3, - "#11*4": 1, - "wrword": 1, - "F3": 1, - "keyboard": 3, - "lock": 1, - "#transmit": 2, - "rev": 1, - "rcl": 2, - "_present": 2, - "#update": 1, - "Lookup": 2, - "perform": 2, - "lookup": 1, - "movs": 9, - "#table": 1, - "#27": 1, - "#rand": 1, - "Transmit": 1, - "pull": 2, - "clock": 4, - "low": 5, - "napshr": 3, - "#13": 3, - "#18": 2, - "release": 1, - "transmit_bit": 1, - "#wait_c0": 2, - "_d2": 1, - "wcond": 3, - "c1": 2, - "c0d0": 2, - "wait": 6, - "until": 3, - "#wait": 2, - "#receive_ack": 1, - "ack": 1, - "error": 1, - "#reset": 2, - "transmit_ret": 1, - "receive": 1, - "receive_bit": 1, - "pause": 1, - "us": 1, - "#nap": 1, - "_d3": 1, - "#receive_bit": 1, - "align": 1, - "isolate": 1, - "look_ret": 1, - "receive_ack_ret": 1, - "receive_ret": 1, - "wait_c0": 1, - "c0": 1, - "timeout": 1, - "ms": 4, - "wloop": 1, - "required": 4, - "_d4": 1, - "replaced": 1, - "c0/c1/c0d0/c1d1": 1, - "if_never": 1, - "replacements": 1, - "#wloop": 3, - "if_c_or_nz": 1, - "c1d1": 1, - "if_nc_or_z": 1, - "nap": 5, - "scales": 1, - "time": 7, - "snag": 1, - "cnt": 2, - "elapses": 1, - "nap_ret": 1, - "F9": 1, - "F5": 1, - "D2": 1, - "F1": 2, - "D1": 1, - "F12": 1, - "F10": 1, - "D7": 1, - "F6": 1, - "D3": 1, - "Tab": 2, - "Alt": 2, - "F3F2": 1, - "q": 1, - "Win": 2, - "Space": 2, - "Apps": 1, - "Power": 1, - "Sleep": 1, - "EF2F": 1, - "CapsLock": 1, - "Enter": 3, - "WakeUp": 1, - "BackSpace": 1, - "C5E1": 1, - "C0E4": 1, - "Home": 1, - "Insert": 1, - "C9EA": 1, - "Down": 1, - "E5": 1, - "Right": 1, - "C2E8": 1, - "Esc": 1, - "DF": 2, - "F11": 1, - "EC": 1, - "PageDn": 1, - "ED": 1, - "PrScr": 1, - "C6E9": 1, - "ScrLock": 1, - "D6": 1, - "Uninitialized": 3, - "_________": 5, - "Key": 1, - "Codes": 1, - "keypress": 1, - "keystate": 2, - "E0..FF": 1, - "AS": 1, - "TV": 9, - "May": 2, - "tile": 41, - "size": 5, - "enable": 5, - "efficient": 2, - "tv_mode": 2, - "NTSC": 11, - "lntsc": 3, - "cycles": 4, - "per": 4, - "sync": 10, - "fpal": 2, - "_433_618": 2, - "PAL": 10, - "spal": 3, - "colortable": 7, - "inside": 2, - "tvptr": 3, - "starts": 4, - "available": 4, - "@entry": 3, - "Assembly": 2, - "language": 2, - "Entry": 2, - "tasks": 6, - "#10": 2, - "Superfield": 2, - "_mode": 7, - "interlace": 20, - "vinv": 2, - "hsync": 5, - "waitvid": 3, - "burst": 2, - "sync_high2": 2, - "task": 2, - "section": 4, - "undisturbed": 2, - "black": 2, - "visible": 7, - "vb": 2, - "leftmost": 1, - "_vt": 3, - "vertical": 29, - "expand": 3, - "vert": 1, - "vscl": 12, - "hb": 2, - "horizontal": 21, - "hx": 5, - "colors": 18, - "screen": 13, - "video": 7, - "repoint": 2, - "hf": 2, - "linerot": 5, - "field1": 4, - "unless": 2, - "invisible": 8, - "if_z_eq_c": 1, - "#hsync": 1, - "vsync": 4, - "pulses": 2, - "vsync1": 2, - "#sync_low1": 1, - "hhalf": 2, - "field2": 1, - "#superfield": 1, - "Blank": 1, - "Horizontal": 1, - "pal": 2, - "toggle": 1, - "phaseflip": 4, - "phasemask": 2, - "sync_scale1": 1, - "blank": 2, - "hsync_ret": 1, - "vsync_high": 1, - "#sync_high1": 1, - "Tasks": 1, - "performed": 1, - "sections": 1, - "during": 2, - "back": 8, - "porch": 9, - "load": 3, - "#_enable": 1, - "_pins": 4, - "_enable": 2, - "#disabled": 2, - "break": 6, - "return": 15, - "later": 6, - "rd": 1, - "#wtab": 1, - "ltab": 1, - "#ltab": 1, - "CLKFREQ": 10, - "cancel": 1, - "_broadcast": 4, - "m8": 3, - "jmpret": 5, - "taskptr": 3, - "taskret": 4, - "ctra": 5, - "pll": 5, - "fcolor": 4, - "#divide": 2, - "vco": 3, - "movi": 3, - "_111": 1, - "ctrb": 4, - "limit": 4, - "m128": 2, - "_100": 1, - "within": 5, - "_001": 1, - "frqb": 2, - "swap": 2, - "broadcast/baseband": 1, - "strip": 3, - "chroma": 19, - "baseband": 18, - "_auralcog": 1, - "_hx": 4, - "consider": 2, - "lineadd": 4, - "lineinc": 3, - "/160": 2, - "loaded": 3, - "#9": 2, - "FC": 2, - "_colors": 2, - "colorreg": 3, - "d6": 3, - "colorloop": 1, - "keep": 2, - "loading": 2, - "m1": 4, - "multiply_ret": 2, - "Disabled": 2, - "try": 2, - "again": 2, - "reload": 1, - "_000_000": 6, - "d0s1": 1, - "F0F0F0F0": 1, - "pins0": 1, - "_01110000_00001111_00000111": 1, - "pins1": 1, - "_11110111_01111111_01110111": 1, - "sync_high1": 1, - "_101010_0101": 1, - "NTSC/PAL": 2, - "metrics": 1, - "tables": 1, - "wtab": 1, - "sntsc": 3, - "lpal": 3, - "hrest": 2, - "vvis": 2, - "vrep": 2, - "_8A": 1, - "_AA": 1, - "sync_scale2": 1, - "_00000000_01_10101010101010_0101": 1, - "m2": 1, - "Parameter": 4, - "/non": 4, - "tccip": 3, - "_screen": 3, - "@long": 2, - "_ht": 2, - "_ho": 2, - "fit": 2, - "contiguous": 1, - "tv_status": 4, - "off/on": 3, - "tv_pins": 5, - "ntsc/pal": 3, - "tv_screen": 5, - "tv_ht": 5, - "tv_hx": 5, - "expansion": 8, - "tv_ho": 5, - "tv_broadcast": 4, - "aural": 13, - "fm": 6, - "preceding": 2, - "copied": 2, - "your": 2, - "code.": 2, - "After": 2, - "setting": 2, - "variables": 3, - "@tv_status": 3, - "All": 2, - "reloaded": 2, - "superframe": 2, - "allowing": 2, - "live": 2, - "changes.": 2, - "minimize": 2, - "correlate": 2, - "changes": 3, - "tv_status.": 1, - "Experimentation": 2, - "optimize": 2, - "some": 3, - "parameters.": 2, - "descriptions": 2, - "sets": 3, - "indicate": 2, - "disabled": 3, - "tv_enable": 2, - "requirement": 2, - "currently": 4, - "outputting": 4, - "driven": 2, - "reduces": 2, - "power": 3, - "_______": 2, - "select": 9, - "group": 7, - "_0111": 6, - "broadcast": 19, - "_1111": 6, - "_0000": 4, - "active": 3, - "top": 10, - "nibble": 4, - "bottom": 5, - "signal": 8, - "arranged": 3, - "attach": 1, - "ohm": 10, - "resistor": 4, - "sum": 7, - "/560/1100": 2, - "subcarrier": 3, - "network": 1, - "visual": 1, - "carrier": 1, - "selects": 4, - "x32": 6, - "tileheight": 4, - "controls": 4, - "mixing": 2, - "mix": 2, - "black/white": 2, - "composite": 1, - "progressive": 2, - "less": 5, - "good": 5, - "motion": 2, - "interlaced": 5, - "doubles": 1, - "format": 1, - "ticks": 11, - "must": 18, - "least": 14, - "_318_180": 1, - "_579_545": 1, - "Hz": 5, - "_734_472": 1, - "itself": 1, - "words": 5, - "define": 10, - "tv_vt": 3, - "has": 4, - "bitfields": 2, - "colorset": 2, - "ptr": 5, - "pixelgroup": 2, - "colorset*": 2, - "pixelgroup**": 2, - "ppppppppppcccc00": 2, - "colorsets": 4, - "four": 8, - "**": 2, - "pixelgroups": 2, - "": 5, - "tv_colors": 2, - "fields": 2, - "values": 2, - "luminance": 2, - "modulation": 4, - "adds/subtracts": 1, - "beware": 1, - "modulated": 1, - "produce": 1, - "saturated": 1, - "toggling": 1, - "levels": 1, - "because": 1, - "abruptly": 1, - "rather": 1, - "against": 1, - "white": 2, - "background": 1, - "best": 1, - "appearance": 1, - "_____": 6, - "practical": 2, - "/30": 1, - "factor": 4, - "sure": 4, - "||": 5, - "than": 5, - "tv_vx": 2, - "tv_vo": 2, - "pos/neg": 4, - "centered": 2, - "image": 2, - "shifts": 4, - "right/left": 2, - "up/down": 2, - "____________": 1, - "expressed": 1, - "ie": 1, - "channel": 1, - "_250_000": 2, - "modulator": 2, - "turned": 2, - "saves": 2, - "broadcasting": 1, - "___________": 1, - "tv_auralcog": 1, - "supply": 1, - "selected": 1, - "bandwidth": 2, - "KHz": 3, - "vary": 1, "Terminal": 1, "instead": 1, "minimum": 2, @@ -55694,31 +56032,21 @@ "cell": 1, "@bitmap": 1, "FC0": 1, + "gr.start": 2, + "gr.setup": 2, "gr.textmode": 1, "gr.width": 1, - "tv.stop": 2, "gr.stop": 1, "schemes": 1, - "tab": 3, "gr.color": 1, "gr.text": 1, "@c": 1, "gr.finish": 2, - "newline": 3, - "strsize": 2, - "_000_000_000": 2, - "//": 4, - "elseif": 2, - "lookupz": 2, - "..": 4, "PRI": 1, - "longmove": 2, - "longfill": 2, "tvparams": 1, "tvparams_pins": 1, "_0101": 1, "vc": 1, - "vx": 2, "vo": 1, "auralcog": 1, "color_schemes": 1, @@ -55726,413 +56054,114 @@ "E_0D_0C_0A": 1, "E_6D_6C_6A": 1, "BE_BD_BC_BA": 1, - "Text": 1, - "x13": 2, - "cols": 5, - "rows": 4, - "screensize": 4, - "lastrow": 2, - "tv_count": 2, - "row": 4, - "tv": 2, - "basepin": 3, - "setcolors": 2, - "@palette": 1, - "@tv_params": 1, - "@screen": 3, - "tv.start": 1, - "stringptr": 3, - "k": 1, - "Output": 1, - "backspace": 1, - "spaces": 1, - "follows": 4, - "Y": 2, - "others": 1, - "printable": 1, - "characters": 1, - "wordfill": 2, - "print": 2, - "A..": 1, - "other": 1, - "colorptr": 2, - "fore": 3, - "Override": 1, - "default": 1, - "palette": 2, - "list": 1, - "scroll": 1, - "hc": 1, - "ho": 1, - "dark": 2, - "blue": 3, - "BB": 1, - "yellow": 1, - "brown": 1, - "cyan": 3, - "red": 2, - "pink": 1, - "VGA": 8, - "vga_mode": 3, - "vgaptr": 3, - "hv": 5, - "bcolor": 3, - "#colortable": 2, - "#blank_line": 3, - "nobl": 1, - "_vx": 1, - "nobp": 1, - "nofp": 1, - "#blank_hsync": 1, - "front": 4, - "vf": 1, - "nofl": 1, - "#tasks": 1, - "before": 1, - "_vs": 2, - "except": 1, - "#blank_vsync": 1, - "#field": 1, - "superfield": 1, - "blank_vsync": 1, - "h2": 2, - "if_c_and_nz": 1, - "blank_hsync": 1, - "_hf": 1, - "invisble": 1, - "_hb": 1, - "#hv": 1, - "blank_hsync_ret": 1, - "blank_line_ret": 1, - "blank_vsync_ret": 1, - "_status": 1, - "#paramcount": 1, - "directions": 1, - "_rate": 3, - "pllmin": 1, - "_011": 1, - "rate": 6, - "hvbase": 5, - "frqa": 3, - "vmask": 1, - "hmask": 1, - "vcfg": 2, - "colormask": 1, - "waitcnt": 3, - "#entry": 1, - "Initialized": 1, - "lowest": 1, - "pllmax": 1, - "*16": 1, - "m4": 1, - "tihv": 1, - "_hd": 1, - "_hs": 1, - "_vd": 1, - "underneath": 1, - "BF": 1, - "___": 1, - "/1/2": 1, - "off/visible/invisible": 1, - "vga_enable": 3, - "pppttt": 1, - "vga_colors": 2, - "vga_vt": 6, - "vga_vx": 4, - "vga_vo": 4, - "vga_hf": 2, - "vga_hb": 2, - "vga_vf": 2, - "vga_vb": 2, - "tick": 2, - "@vga_status": 1, - "vga_status.": 1, - "__________": 4, - "vga_status": 1, - "________": 3, - "vga_pins": 1, - "monitors": 1, - "allows": 1, - "polarity": 1, - "respectively": 1, - "vga_screen": 1, - "vga_ht": 3, - "care": 1, - "suggested": 1, - "bits/pins": 3, - "green": 1, - "bit/pin": 1, - "signals": 1, - "connect": 3, - "RED": 1, - "BLUE": 1, - "connector": 3, - "always": 2, - "HSYNC": 1, - "VSYNC": 1, - "______": 14, - "vga_hx": 3, - "vga_ho": 2, - "equal": 1, - "vga_hd": 2, - "exceed": 1, - "vga_vd": 2, - "recommended": 2, - "vga_hs": 1, - "vga_vs": 1, - "vga_rate": 2, - "should": 1, - "Vocal": 2, - "Tract": 2, - "October": 1, - "synthesizes": 1, - "human": 1, - "vocal": 10, - "tract": 12, - "real": 2, - "It": 1, - "MHz.": 1, - "controlled": 1, - "reside": 1, - "parent": 1, - "aa": 2, - "ga": 5, - "gp": 2, - "vp": 3, - "vr": 1, - "f1": 4, - "f2": 1, - "f3": 3, - "f4": 2, - "na": 2, - "nf": 2, - "fa": 2, - "ff": 2, - "values.": 2, - "Before": 1, - "were": 1, - "interpolation": 1, - "shy": 1, - "frame": 12, - "makes": 1, - "behave": 1, - "sensibly": 1, - "gaps.": 1, - "frame_buffers": 2, - "bytes": 2, - "frame_longs": 3, - "frame_bytes": 1, - "...must": 1, - "dira_": 3, - "dirb_": 1, - "ctra_": 1, - "ctrb_": 3, - "frqa_": 3, - "cnt_": 1, - "many": 1, - "...contiguous": 1, - "tract_ptr": 3, - "pos_pin": 7, - "neg_pin": 6, - "fm_offset": 5, - "positive": 1, - "also": 1, - "enabled": 2, - "generation": 2, - "_500_000": 1, - "Remember": 1, - "duty": 2, - "Ready": 1, - "clkfreq": 2, - "Launch": 1, - "@attenuation": 1, - "Reset": 1, - "buffers": 1, - "@index": 1, - "constant": 3, - "frame_buffer_longs": 2, - "set_attenuation": 1, - "master": 2, - "attenuation": 3, - "initially": 2, - "set_pace": 2, - "percentage": 3, - "pace": 3, - "go": 1, - "Queue": 1, - "transition": 1, - "over": 2, - "Load": 1, - "bytemove": 1, - "@frames": 1, - "index": 5, - "Increment": 1, - "Returns": 4, - "queue": 2, - "useful": 2, - "checking": 1, - "would": 1, - "have": 1, - "frames": 2, - "empty": 2, - "detecting": 1, - "finished": 1, - "sample_ptr": 1, - "receives": 1, - "audio": 1, - "samples": 1, - "updated": 1, - "@sample": 1, - "aural_id": 1, - "id": 2, - "executing": 1, - "algorithm": 1, - "connecting": 1, - "Initialization": 1, - "reserved": 3, - "clear_cnt": 1, - "#2*15": 1, - "hub": 1, - "minst": 3, - "d0s0": 3, - "mult_ret": 1, - "antilog_ret": 1, - "assemble": 1, - "cordic": 4, - "reserves": 2, - "cstep": 1, - "instruction": 2, - "prepare": 1, - "cnt_value": 3, - "cnt_ticks": 3, - "Loop": 1, - "sample": 2, - "period": 1, - "cycle": 1, - "driving": 1, - "h80000000": 2, - "White": 1, - "noise": 3, - "source": 2, - "lfsr": 1, - "lfsr_taps": 2, - "Aspiration": 1, - "vibrato": 3, - "vphase": 2, - "glottal": 2, - "pitch": 5, - "mesh": 1, - "tune": 2, - "convert": 1, - "log": 2, - "phase": 2, - "gphase": 3, - "formant2": 2, - "rotate": 2, - "f2x": 3, - "f2y": 3, - "#cordic": 2, - "formant4": 2, - "f4x": 3, - "f4y": 3, - "subtract": 1, - "nx": 4, - "negated": 1, - "nasal": 2, - "amplitude": 3, - "#mult": 1, - "fphase": 4, - "frication": 2, - "#sine": 1, - "Handle": 1, - "frame_ptr": 6, - "past": 1, - "miscellaneous": 2, - "frame_index": 3, - "stepsize": 2, - "step_size": 5, - "h00FFFFFF": 2, - "final1": 2, - "finali": 2, - "iterate": 3, - "aa..ff": 4, - "accurate": 1, - "accumulation": 1, - "step_acc": 3, - "set2": 3, - "#par_curr": 1, - "set3": 2, - "#par_next": 1, - "set4": 3, - "#par_step": 1, - "#24": 1, - "par_curr": 3, - "absolute": 1, - "msb": 2, - "nr": 1, - "mult": 2, - "par_step": 1, - "frame_cnt": 2, - "step1": 2, - "stepi": 1, - "stepframe": 1, - "#frame_bytes": 1, - "par_next": 2, - "Math": 1, - "Subroutines": 1, - "Antilog": 1, - "whole": 2, - "fraction": 1, - "antilog": 2, - "FFEA0000": 1, - "h00000FFE": 2, - "insert": 2, - "leading": 1, - "Scaled": 1, - "unsigned": 3, - "h00001000": 2, - "negc": 1, - "Multiply": 1, - "#15": 1, - "mult_step": 1, - "Cordic": 1, - "degree": 1, - "#cordic_steps": 1, - "gets": 1, - "assembled": 1, - "cordic_dx": 1, - "incremented": 1, - "cordic_a": 1, - "cordic_delta": 2, - "linear": 1, - "register": 1, - "B901476": 1, - "greater": 1, - "h40000000": 1, - "h01000000": 1, - "FFFFFF": 1, - "h00010000": 1, - "h0000D000": 1, - "D000": 1, - "h00007000": 1, - "FFE": 1, - "h00000800": 1, - "registers": 2, - "startup": 2, - "Data": 1, - "zeroed": 1, - "cleared": 1, - "f1x": 1, - "f1y": 1, - "f3x": 1, - "f3y": 1, - "aspiration": 1, - "***": 1, - "mult_steps": 1, - "assembly": 1, - "area": 1, - "w/ret": 1, - "cordic_ret": 1 + "Inductive": 1, + "Sensor": 1, + "Demo": 1, + "Test": 2, + "Circuit": 1, + "pF": 1, + "K": 4, + "M": 1, + "FPin": 2, + "SDF": 1, + "sigma": 3, + "SDI": 1, + "GND": 4, + "Coils": 1, + "Wire": 1, + "was": 2, + "about": 4, + "gauge": 1, + "Coke": 3, + "Can": 3, + "BIC": 1, + "pen": 1, + "How": 1, + "Note": 1, + "reported": 2, + "resonate": 5, + "LC": 8, + "frequency.": 2, + "Instead": 1, + "voltage": 5, + "produced": 1, + "circuit": 5, + "clipped.": 1, + "In": 2, + "When": 1, + "apply": 1, + "small": 1, + "specific": 1, + "near": 1, + "uncommon": 1, + "measure": 1, + "amount": 1, + "applying": 1, + "circuit.": 1, + "through": 1, + "diode": 2, + "basically": 1, + "feeds": 1, + "divider": 1, + "...So": 1, + "order": 1, + "ADC": 2, + "sweep": 2, + "needs": 1, + "generate": 1, + "Volts": 1, + "ground.": 1, + "drop": 1, + "across": 1, + "since": 1, + "sensitive": 1, + "works": 1, + "divider.": 1, + "typical": 1, + "magnitude": 1, + "applied": 2, + "might": 1, + "something": 1, + "*****": 4, + "...With": 1, + "looks": 1, + "X****": 1, + "...The": 1, + "denotes": 1, + "location": 1, + "reason": 1, + "slightly": 1, + "reasons": 1, + "really.": 1, + "lazy": 1, + "I": 1, + "didn": 1, + "acts": 1, + "dead": 1, + "short.": 1, + "situation": 1, + "exactly": 1, + "great": 1, + "FindResonateFrequency": 1, + "DisplayInductorValue": 2, + "Freq.Synth": 1, + "FValue": 1, + "ADC.SigmaDelta": 1, + "@FTemp": 1, + "gr.clear": 1, + "gr.copy": 2, + "display_base": 2, + "Option": 2, + "*********************************************": 2, + "Frequency": 1, + "LowerFrequency": 2, + "*100/": 1, + "UpperFrequency": 1, + "gr.colorwidth": 4, + "gr.plot": 3, + "gr.line": 3, + "FTemp/1024": 1, + "Finish": 1 }, "Protocol Buffer": { "package": 1, @@ -56170,80 +56199,53 @@ }, "PureScript": { "module": 4, - "Control.Arrow": 1, - "where": 20, - "import": 32, - "Data.Tuple": 3, - "class": 4, - "Arrow": 5, - "a": 46, - "arr": 10, - "forall": 26, - "b": 49, - "c.": 3, - "(": 111, - "-": 88, - "c": 17, - ")": 115, - "first": 4, - "d.": 2, - "Tuple": 21, - "d": 6, - "instance": 12, - "arrowFunction": 1, - "f": 28, - "second": 3, - "Category": 3, - "swap": 4, - "b.": 1, - "x": 26, - "y": 2, - "infixr": 3, - "***": 2, - "&&": 3, - "&": 3, - ".": 2, - "g": 4, - "ArrowZero": 1, - "zeroArrow": 1, - "<+>": 2, - "ArrowPlus": 1, "Data.Foreign": 2, + "(": 111, "Foreign": 12, "..": 1, + ")": 115, "ForeignParser": 29, "parseForeign": 6, "parseJSON": 3, "ReadForeign": 11, "read": 10, "prop": 3, + "where": 20, + "import": 32, "Prelude": 3, "Data.Array": 3, "Data.Either": 1, "Data.Maybe": 3, + "Data.Tuple": 3, "Data.Traversable": 2, "foreign": 6, "data": 3, "*": 1, "fromString": 2, "String": 13, + "-": 88, "Either": 6, "readPrimType": 5, + "forall": 26, "a.": 6, + "a": 46, "readMaybeImpl": 2, "Maybe": 5, "readPropImpl": 2, "showForeignImpl": 2, + "instance": 12, "showForeign": 1, "Prelude.Show": 1, "show": 5, "p": 11, + "x": 26, "json": 2, "monadForeignParser": 1, "Prelude.Monad": 1, "return": 6, "_": 7, "Right": 9, + "f": 28, "case": 9, "of": 9, "Left": 8, @@ -56255,6 +56257,7 @@ "<$>": 8, "functorForeignParser": 1, "Prelude.Functor": 1, + "class": 4, "readString": 1, "readNumber": 1, "Number": 1, @@ -56265,6 +56268,7 @@ "]": 5, "let": 4, "arrayItem": 2, + "Tuple": 21, "i": 2, "result": 4, "+": 30, @@ -56279,6 +56283,66 @@ "<": 13, "Just": 7, "Nothing": 7, + "ReactiveJQueryTest": 1, + "flip": 2, + "Control.Monad": 1, + "Control.Monad.Eff": 1, + "Control.Monad.JQuery": 1, + "Control.Reactive": 1, + "Control.Reactive.JQuery": 1, + "map": 8, + "head": 2, + "Data.Foldable": 2, + "Data.Monoid": 1, + "Debug.Trace": 1, + "Global": 1, + "parseInt": 1, + "main": 1, + "do": 4, + "personDemo": 2, + "todoListDemo": 1, + "greet": 1, + "firstName": 2, + "lastName": 2, + "Create": 3, + "new": 1, + "reactive": 1, + "variables": 1, + "to": 3, + "hold": 1, + "the": 3, + "user": 1, + "readRArray": 1, + "arr": 10, + "insertRArray": 1, + "{": 25, + "text": 5, + "completed": 2, + "}": 26, + "paragraph": 2, + "display": 2, + "next": 1, + "task": 4, + "nextTaskLabel": 3, + "create": 2, + "append": 2, + "b": 49, + "nextTask": 2, + "toComputedArray": 2, + "toComputed": 2, + "bindTextOneWay": 2, + "counter": 3, + "counterLabel": 3, + "rs": 2, + "cs": 2, + "<->": 1, + "c": 17, + "if": 1, + "then": 1, + "else": 1, + "entry": 1, + "entry.completed": 1, + "foldl": 4, "Data.Map": 1, "Map": 26, "empty": 6, @@ -56290,24 +56354,19 @@ "toList": 10, "fromList": 3, "union": 3, - "map": 8, "qualified": 1, "as": 1, "P": 1, "concat": 3, - "Data.Foldable": 2, - "foldl": 4, "k": 108, "v": 57, "Leaf": 15, "|": 9, "Branch": 27, - "{": 25, "key": 13, "value": 8, "left": 15, "right": 14, - "}": 26, "eqMap": 1, "P.Eq": 11, "m1": 6, @@ -56334,279 +56393,110 @@ "v1": 3, "v2.": 1, "v2": 2, - "ReactiveJQueryTest": 1, - "flip": 2, - "Control.Monad": 1, - "Control.Monad.Eff": 1, - "Control.Monad.JQuery": 1, - "Control.Reactive": 1, - "Control.Reactive.JQuery": 1, - "head": 2, - "Data.Monoid": 1, - "Debug.Trace": 1, - "Global": 1, - "parseInt": 1, - "main": 1, - "do": 4, - "personDemo": 2, - "todoListDemo": 1, - "greet": 1, - "firstName": 2, - "lastName": 2, - "Create": 3, - "new": 1, - "reactive": 1, - "variables": 1, - "to": 3, - "hold": 1, - "the": 3, - "user": 1, - "readRArray": 1, - "insertRArray": 1, - "text": 5, - "completed": 2, - "paragraph": 2, - "display": 2, - "next": 1, - "task": 4, - "nextTaskLabel": 3, - "create": 2, - "append": 2, - "nextTask": 2, - "toComputedArray": 2, - "toComputed": 2, - "bindTextOneWay": 2, - "counter": 3, - "counterLabel": 3, - "rs": 2, - "cs": 2, - "<->": 1, - "if": 1, - "then": 1, - "else": 1, - "entry": 1, - "entry.completed": 1 + "Control.Arrow": 1, + "Arrow": 5, + "c.": 3, + "first": 4, + "d.": 2, + "d": 6, + "arrowFunction": 1, + "second": 3, + "Category": 3, + "swap": 4, + "b.": 1, + "y": 2, + "infixr": 3, + "***": 2, + "&&": 3, + "&": 3, + ".": 2, + "g": 4, + "ArrowZero": 1, + "zeroArrow": 1, + "<+>": 2, + "ArrowPlus": 1 }, "Python": { - "xspacing": 4, - "#": 28, - "How": 2, - "far": 1, - "apart": 1, - "should": 1, - "each": 1, - "horizontal": 1, - "location": 1, - "be": 1, - "spaced": 1, - "maxwaves": 3, - "total": 1, - "of": 5, - "waves": 1, - "to": 5, - "add": 1, - "together": 1, - "theta": 3, - "amplitude": 3, - "[": 165, - "]": 165, - "Height": 1, - "wave": 2, - "dx": 8, - "yvalues": 7, "def": 87, "setup": 2, "(": 850, ")": 861, "size": 5, - "frameRate": 1, - "colorMode": 1, - "RGB": 1, - "w": 2, - "width": 1, - "+": 51, - "for": 69, - "i": 13, - "in": 91, - "range": 5, - "amplitude.append": 1, - "random": 2, - "period": 2, - "many": 1, - "pixels": 1, - "before": 1, - "the": 6, - "repeats": 1, - "dx.append": 1, - "TWO_PI": 1, - "/": 26, - "*": 38, - "_": 6, - "yvalues.append": 1, - "draw": 2, - "background": 2, - "calcWave": 2, - "renderWave": 2, - "len": 11, - "j": 7, - "x": 34, - "if": 160, - "%": 33, - "sin": 1, - "else": 33, - "cos": 1, - "noStroke": 2, + "P3D": 1, "fill": 2, - "ellipseMode": 1, - "CENTER": 1, - "v": 19, - "enumerate": 2, - "ellipse": 1, - "height": 1, + "draw": 2, + "lights": 1, + "background": 2, + "camera": 1, + "mouseY": 1, + "#": 28, + "eyeX": 1, + "eyeY": 1, + "eyeZ": 1, + "centerX": 1, + "centerY": 1, + "centerZ": 1, + "upX": 1, + "upY": 1, + "upZ": 1, + "noStroke": 2, + "box": 1, + "stroke": 1, + "line": 3, + "-": 36, + "SHEBANG#!python": 4, "import": 55, "os": 2, "sys": 3, - "json": 1, - "c4d": 1, - "c4dtools": 1, - "itertools": 1, - "from": 36, - "c4d.modules": 1, - "graphview": 1, - "as": 14, - "gv": 1, - "c4dtools.misc": 1, - "graphnode": 1, - "res": 3, - "importer": 1, - "c4dtools.prepare": 1, - "__file__": 1, - "__res__": 1, - "settings": 2, - "c4dtools.helpers.Attributor": 2, - "{": 27, - "res.file": 3, - "}": 27, - "align_nodes": 2, - "nodes": 11, - "mode": 5, - "spacing": 7, - "r": 9, - "modes": 3, - "not": 69, - "return": 68, - "raise": 23, - "ValueError": 6, - ".join": 4, - "get_0": 12, - "lambda": 6, - "x.x": 1, - "get_1": 4, - "x.y": 1, - "set_0": 6, - "setattr": 16, - "set_1": 4, - "graphnode.GraphNode": 1, - "n": 6, - "nodes.sort": 1, - "key": 6, - "n.position": 1, - "midpoint": 3, - "graphnode.find_nodes_mid": 1, - "first_position": 2, - ".position": 1, - "new_positions": 2, - "prev_offset": 6, - "node": 2, - "position": 12, - "node.position": 2, - "-": 36, - "node.size": 1, + "main": 4, + "usage": 3, + "string": 1, + "command": 4, + "check": 4, + "if": 160, + "len": 11, + "sys.argv": 2, "<": 2, - "new_positions.append": 1, - "bbox_size": 2, - "bbox_size_2": 2, - "itertools.izip": 1, - "align_nodes_shortcut": 3, - "master": 2, - "gv.GetMaster": 1, - "root": 3, - "master.GetRoot": 1, - "graphnode.find_selected_nodes": 1, - "master.AddUndo": 1, - "c4d.EventAdd": 1, - "True": 25, - "class": 19, - "XPAT_Options": 3, - "defaults": 1, - "__init__": 7, - "self": 113, - "filename": 12, + "sys.exit": 1, + "+": 51, + ".join": 4, + "[": 165, + "]": 165, + "printDelimiter": 4, + "print": 39, + "get": 1, + "a": 2, + "list": 1, + "of": 5, + "git": 1, + "directories": 1, + "in": 91, + "the": 6, + "specified": 1, + "parent": 5, + "gitDirectories": 2, + "getSubdirectories": 2, + "isGitDirectory": 2, + "for": 69, + "gitDirectory": 2, + "os.chdir": 1, + "os.getcwd": 1, + "os.system": 1, + "directory": 9, + "filter": 3, "None": 92, - "super": 4, - ".__init__": 3, - "self.load": 1, - "load": 1, + "os.path.abspath": 1, + "subdirectories": 3, + "os.walk": 1, + ".next": 1, "is": 31, - "settings.options_filename": 2, - "os.path.isfile": 1, - "self.dict_": 2, - "self.defaults.copy": 2, - "with": 2, - "open": 2, - "fp": 4, - "self.dict_.update": 1, - "json.load": 1, - "self.save": 1, - "save": 2, - "values": 15, - "dict": 4, - "k": 7, - "self.dict_.iteritems": 1, - "self.defaults": 1, - "json.dump": 1, - "XPAT_OptionsDialog": 2, - "c4d.gui.GeDialog": 1, - "CreateLayout": 1, - "self.LoadDialogResource": 1, - "res.DLG_OPTIONS": 1, - "InitValues": 1, - "self.SetLong": 2, - "res.EDT_HSPACE": 2, - "options.hspace": 3, - "res.EDT_VSPACE": 2, - "options.vspace": 3, - "Command": 1, - "id": 2, - "msg": 1, - "res.BTN_SAVE": 1, - "self.GetLong": 2, - "options.save": 1, - "self.Close": 1, - "XPAT_Command_OpenOptionsDialog": 2, - "c4dtools.plugins.Command": 3, - "self._dialog": 4, - "@property": 2, - "dialog": 1, - "PLUGIN_ID": 3, - "PLUGIN_NAME": 3, - "res.string.XPAT_COMMAND_OPENOPTIONSDIALOG": 1, - "PLUGIN_HELP": 3, - "res.string.XPAT_COMMAND_OPENOPTIONSDIALOG_HELP": 1, - "Execute": 3, - "doc": 3, - "self.dialog.Open": 1, - "c4d.DLG_TYPE_MODAL": 1, - "XPAT_Command_AlignHorizontal": 1, - "res.string.XPAT_COMMAND_ALIGNHORIZONTAL": 1, - "PLUGIN_ICON": 2, - "res.string.XPAT_COMMAND_ALIGNHORIZONTAL_HELP": 1, - "XPAT_Command_AlignVertical": 1, - "res.string.XPAT_COMMAND_ALIGNVERTICAL": 1, - "res.string.XPAT_COMMAND_ALIGNVERTICAL_HELP": 1, - "options": 4, + "return": 68, + "i": 13, + "else": 33, + "os.path.isdir": 1, + "*": 38, "__name__": 3, - "c4dtools.plugins.main": 1, + "from": 36, "__future__": 2, "unicode_literals": 1, "copy": 1, @@ -56616,10 +56506,12 @@ "zip": 8, "django.db.models.manager": 1, "Imported": 1, + "to": 5, "register": 1, "signal": 1, "handler.": 1, "django.conf": 1, + "settings": 2, "django.core.exceptions": 1, "ObjectDoesNotExist": 2, "MultipleObjectsReturned": 2, @@ -56655,6 +56547,8 @@ "get_model": 3, "django.utils.translation": 1, "ugettext_lazy": 1, + "as": 14, + "_": 6, "django.utils.functional": 1, "curry": 6, "django.utils.encoding": 1, @@ -56663,6 +56557,7 @@ "django.utils.text": 1, "get_text_list": 2, "capfirst": 6, + "class": 19, "ModelBase": 4, "type": 6, "__new__": 2, @@ -56671,13 +56566,17 @@ "bases": 6, "attrs": 7, "super_new": 3, + "super": 4, ".__new__": 1, "parents": 8, "b": 11, "isinstance": 11, + "not": 69, "module": 6, "attrs.pop": 2, "new_class": 9, + "{": 27, + "}": 27, "attr_meta": 5, "abstract": 3, "getattr": 30, @@ -56694,6 +56593,7 @@ "subclass_exception": 3, "tuple": 3, "x.DoesNotExist": 1, + "x": 34, "hasattr": 11, "and": 35, "x._meta.abstract": 2, @@ -56726,15 +56626,17 @@ "f.name": 5, "f": 19, "base": 13, - "parent": 5, "parent._meta.abstract": 1, "parent._meta.fields": 1, + "raise": 23, "TypeError": 4, + "%": 33, "continue": 10, "new_class._meta.setup_proxy": 1, "new_class._meta.concrete_model": 2, "base._meta.concrete_model": 2, "o2o_map": 3, + "dict": 4, "f.rel.to": 1, "original_base": 1, "parent_fields": 3, @@ -56748,6 +56650,7 @@ "attr_name": 3, "base._meta.module_name": 1, "auto_created": 1, + "True": 25, "parent_link": 1, "new_class._meta.parents": 1, "copy.deepcopy": 2, @@ -56772,6 +56675,7 @@ "add_to_class": 1, "value": 9, "value.contribute_to_class": 1, + "setattr": 16, "_prepare": 1, "opts": 5, "cls._meta": 3, @@ -56798,6 +56702,8 @@ "sender": 5, "ModelState": 2, "object": 6, + "__init__": 7, + "self": 113, "db": 2, "self.db": 1, "self.adding": 1, @@ -56830,6 +56736,7 @@ "property": 2, "AttributeError": 1, "pass": 4, + ".__init__": 3, "signals.post_init.send": 1, "instance": 5, "__repr__": 2, @@ -56868,10 +56775,12 @@ "serializable_value": 1, "field_name": 8, "self._meta.get_field_by_name": 1, + "save": 2, "force_insert": 7, "force_update": 10, "using": 30, "update_fields": 23, + "ValueError": 6, "frozenset": 2, "field.primary_key": 1, "non_model_fields": 2, @@ -56900,6 +56809,7 @@ "manager.using": 3, ".filter": 7, ".exists": 1, + "values": 15, "f.pre_save": 1, "rows": 3, "._update": 1, @@ -56964,6 +56874,8 @@ "self._perform_unique_checks": 1, "date_errors": 1, "self._perform_date_checks": 1, + "k": 7, + "v": 19, "date_errors.items": 1, "errors.setdefault": 3, ".extend": 2, @@ -56976,7 +56888,6 @@ "unique_togethers.append": 1, "model_class": 11, "unique_together": 2, - "check": 4, "break": 2, "unique_checks.append": 2, "fields_with_class": 2, @@ -57001,6 +56912,7 @@ "model_class._meta": 2, "qs.exclude": 2, "qs.exists": 2, + "key": 6, ".append": 2, "self.unique_error_message": 1, "_perform_date_checks": 1, @@ -57022,6 +56934,7 @@ "field.error_messages": 1, "field_labels": 4, "map": 1, + "lambda": 6, "full_clean": 1, "self.clean_fields": 1, "e": 13, @@ -57043,11 +56956,14 @@ "ordered_obj._meta.order_with_respect_to.rel.field_name": 2, "order_name": 4, "ordered_obj._meta.order_with_respect_to.name": 2, + "j": 7, + "enumerate": 2, "ordered_obj.objects.filter": 2, ".update": 1, "_order": 1, "pk_name": 3, "ordered_obj._meta.pk.name": 1, + "r": 9, ".values": 1, "##############################################": 2, "func": 2, @@ -57111,22 +57027,164 @@ "meth": 5, "request.method.lower": 1, "request.method": 2, - "P3D": 1, - "lights": 1, - "camera": 1, - "mouseY": 1, - "eyeX": 1, - "eyeY": 1, - "eyeZ": 1, - "centerX": 1, - "centerY": 1, - "centerZ": 1, - "upX": 1, - "upY": 1, - "upZ": 1, - "box": 1, - "stroke": 1, - "line": 3, + "xspacing": 4, + "How": 2, + "far": 1, + "apart": 1, + "should": 1, + "each": 1, + "horizontal": 1, + "location": 1, + "be": 1, + "spaced": 1, + "maxwaves": 3, + "total": 1, + "waves": 1, + "add": 1, + "together": 1, + "theta": 3, + "amplitude": 3, + "Height": 1, + "wave": 2, + "dx": 8, + "yvalues": 7, + "frameRate": 1, + "colorMode": 1, + "RGB": 1, + "w": 2, + "width": 1, + "range": 5, + "amplitude.append": 1, + "random": 2, + "period": 2, + "many": 1, + "pixels": 1, + "before": 1, + "repeats": 1, + "dx.append": 1, + "TWO_PI": 1, + "/": 26, + "yvalues.append": 1, + "calcWave": 2, + "renderWave": 2, + "sin": 1, + "cos": 1, + "ellipseMode": 1, + "CENTER": 1, + "ellipse": 1, + "height": 1, + "json": 1, + "c4d": 1, + "c4dtools": 1, + "itertools": 1, + "c4d.modules": 1, + "graphview": 1, + "gv": 1, + "c4dtools.misc": 1, + "graphnode": 1, + "res": 3, + "importer": 1, + "c4dtools.prepare": 1, + "__file__": 1, + "__res__": 1, + "c4dtools.helpers.Attributor": 2, + "res.file": 3, + "align_nodes": 2, + "nodes": 11, + "mode": 5, + "spacing": 7, + "modes": 3, + "get_0": 12, + "x.x": 1, + "get_1": 4, + "x.y": 1, + "set_0": 6, + "set_1": 4, + "graphnode.GraphNode": 1, + "n": 6, + "nodes.sort": 1, + "n.position": 1, + "midpoint": 3, + "graphnode.find_nodes_mid": 1, + "first_position": 2, + ".position": 1, + "new_positions": 2, + "prev_offset": 6, + "node": 2, + "position": 12, + "node.position": 2, + "node.size": 1, + "new_positions.append": 1, + "bbox_size": 2, + "bbox_size_2": 2, + "itertools.izip": 1, + "align_nodes_shortcut": 3, + "master": 2, + "gv.GetMaster": 1, + "root": 3, + "master.GetRoot": 1, + "graphnode.find_selected_nodes": 1, + "master.AddUndo": 1, + "c4d.EventAdd": 1, + "XPAT_Options": 3, + "defaults": 1, + "filename": 12, + "self.load": 1, + "load": 1, + "settings.options_filename": 2, + "os.path.isfile": 1, + "self.dict_": 2, + "self.defaults.copy": 2, + "with": 2, + "open": 2, + "fp": 4, + "self.dict_.update": 1, + "json.load": 1, + "self.save": 1, + "self.dict_.iteritems": 1, + "self.defaults": 1, + "json.dump": 1, + "XPAT_OptionsDialog": 2, + "c4d.gui.GeDialog": 1, + "CreateLayout": 1, + "self.LoadDialogResource": 1, + "res.DLG_OPTIONS": 1, + "InitValues": 1, + "self.SetLong": 2, + "res.EDT_HSPACE": 2, + "options.hspace": 3, + "res.EDT_VSPACE": 2, + "options.vspace": 3, + "Command": 1, + "id": 2, + "msg": 1, + "res.BTN_SAVE": 1, + "self.GetLong": 2, + "options.save": 1, + "self.Close": 1, + "XPAT_Command_OpenOptionsDialog": 2, + "c4dtools.plugins.Command": 3, + "self._dialog": 4, + "@property": 2, + "dialog": 1, + "PLUGIN_ID": 3, + "PLUGIN_NAME": 3, + "res.string.XPAT_COMMAND_OPENOPTIONSDIALOG": 1, + "PLUGIN_HELP": 3, + "res.string.XPAT_COMMAND_OPENOPTIONSDIALOG_HELP": 1, + "Execute": 3, + "doc": 3, + "self.dialog.Open": 1, + "c4d.DLG_TYPE_MODAL": 1, + "XPAT_Command_AlignHorizontal": 1, + "res.string.XPAT_COMMAND_ALIGNHORIZONTAL": 1, + "PLUGIN_ICON": 2, + "res.string.XPAT_COMMAND_ALIGNHORIZONTAL_HELP": 1, + "XPAT_Command_AlignVertical": 1, + "res.string.XPAT_COMMAND_ALIGNVERTICAL": 1, + "res.string.XPAT_COMMAND_ALIGNVERTICAL_HELP": 1, + "options": 4, + "c4dtools.plugins.main": 1, "google.protobuf": 4, "descriptor": 1, "_descriptor": 1, @@ -57166,35 +57224,160 @@ "Person": 1, "_message.Message": 1, "_reflection.GeneratedProtocolMessageType": 1, - "SHEBANG#!python": 4, - "print": 39, - "main": 4, - "usage": 3, - "string": 1, - "command": 4, - "sys.argv": 2, - "sys.exit": 1, - "printDelimiter": 4, - "get": 1, - "a": 2, - "list": 1, - "git": 1, - "directories": 1, - "specified": 1, - "gitDirectories": 2, - "getSubdirectories": 2, - "isGitDirectory": 2, - "gitDirectory": 2, - "os.chdir": 1, - "os.getcwd": 1, - "os.system": 1, - "directory": 9, - "filter": 3, - "os.path.abspath": 1, - "subdirectories": 3, - "os.walk": 1, - ".next": 1, - "os.path.isdir": 1, + "absolute_import": 1, + "division": 1, + "with_statement": 1, + "Cookie": 1, + "logging": 1, + "socket": 1, + "time": 1, + "tornado.escape": 1, + "utf8": 2, + "native_str": 4, + "parse_qs_bytes": 3, + "tornado": 3, + "httputil": 1, + "iostream": 1, + "tornado.netutil": 1, + "TCPServer": 2, + "stack_context": 1, + "tornado.util": 1, + "bytes_type": 2, + "ssl": 2, + "Python": 1, + "ImportError": 1, + "HTTPServer": 1, + "request_callback": 4, + "no_keep_alive": 4, + "io_loop": 3, + "xheaders": 4, + "ssl_options": 3, + "self.request_callback": 5, + "self.no_keep_alive": 4, + "self.xheaders": 3, + "TCPServer.__init__": 1, + "handle_stream": 1, + "stream": 4, + "address": 4, + "HTTPConnection": 2, + "_BadRequestException": 5, + "Exception": 2, + "self.stream": 1, + "self.address": 3, + "self._request": 7, + "self._request_finished": 4, + "self._header_callback": 3, + "stack_context.wrap": 2, + "self._on_headers": 1, + "self.stream.read_until": 2, + "self._write_callback": 5, + "write": 2, + "chunk": 5, + "callback": 7, + "self.stream.closed": 1, + "self.stream.write": 2, + "self._on_write_complete": 1, + "finish": 2, + "self.stream.writing": 2, + "self._finish_request": 2, + "_on_write_complete": 1, + "_finish_request": 1, + "disconnect": 5, + "connection_header": 5, + "self._request.headers.get": 2, + "connection_header.lower": 1, + "self._request.supports_http_1_1": 1, + "self._request.headers": 1, + "self._request.method": 2, + "self.stream.close": 2, + "_on_headers": 1, + "data.decode": 1, + "eol": 3, + "data.find": 1, + "start_line": 1, + "method": 5, + "uri": 5, + "version": 6, + "start_line.split": 1, + "version.startswith": 1, + "headers": 5, + "httputil.HTTPHeaders.parse": 1, + "self.stream.socket": 1, + "socket.AF_INET": 2, + "socket.AF_INET6": 1, + "remote_ip": 8, + "HTTPRequest": 2, + "connection": 5, + "content_length": 6, + "headers.get": 2, + "int": 1, + "self.stream.max_buffer_size": 1, + "self.stream.read_bytes": 1, + "self._on_request_body": 1, + "logging.info": 1, + "_on_request_body": 1, + "self._request.body": 2, + "content_type": 1, + "content_type.startswith": 2, + "arguments": 2, + "arguments.iteritems": 2, + "self._request.arguments.setdefault": 1, + "content_type.split": 1, + "sep": 2, + "field.strip": 1, + ".partition": 1, + "httputil.parse_multipart_form_data": 1, + "self._request.arguments": 1, + "self._request.files": 1, + "logging.warning": 1, + "body": 2, + "protocol": 4, + "host": 2, + "files": 2, + "self.method": 1, + "self.uri": 2, + "self.version": 2, + "self.headers": 4, + "httputil.HTTPHeaders": 1, + "self.body": 1, + "connection.xheaders": 1, + "self.remote_ip": 4, + "self.headers.get": 5, + "self._valid_ip": 1, + "self.protocol": 7, + "connection.stream": 1, + "iostream.SSLIOStream": 1, + "self.host": 2, + "self.files": 1, + "self.connection": 1, + "self._start_time": 3, + "time.time": 3, + "self._finish_time": 4, + "self.path": 1, + "self.query": 2, + "uri.partition": 1, + "self.arguments": 2, + "supports_http_1_1": 1, + "cookies": 1, + "self._cookies": 3, + "Cookie.SimpleCookie": 1, + "self._cookies.load": 1, + "self.connection.write": 1, + "self.connection.finish": 1, + "full_url": 1, + "request_time": 1, + "get_ssl_certificate": 1, + "self.connection.stream.socket.getpeercert": 1, + "ssl.SSLError": 1, + "_valid_ip": 1, + "ip": 2, + "socket.getaddrinfo": 1, + "socket.AF_UNSPEC": 1, + "socket.SOCK_STREAM": 1, + "socket.AI_NUMERICHOST": 1, + "socket.gaierror": 1, + "e.args": 1, + "socket.EAI_NONAME": 1, "argparse": 1, "matplotlib.pyplot": 1, "pl": 1, @@ -57359,161 +57542,7 @@ "dest": 1, "default": 1, "action": 1, - "version": 6, - "parser.parse_args": 1, - "absolute_import": 1, - "division": 1, - "with_statement": 1, - "Cookie": 1, - "logging": 1, - "socket": 1, - "time": 1, - "tornado.escape": 1, - "utf8": 2, - "native_str": 4, - "parse_qs_bytes": 3, - "tornado": 3, - "httputil": 1, - "iostream": 1, - "tornado.netutil": 1, - "TCPServer": 2, - "stack_context": 1, - "tornado.util": 1, - "bytes_type": 2, - "ssl": 2, - "Python": 1, - "ImportError": 1, - "HTTPServer": 1, - "request_callback": 4, - "no_keep_alive": 4, - "io_loop": 3, - "xheaders": 4, - "ssl_options": 3, - "self.request_callback": 5, - "self.no_keep_alive": 4, - "self.xheaders": 3, - "TCPServer.__init__": 1, - "handle_stream": 1, - "stream": 4, - "address": 4, - "HTTPConnection": 2, - "_BadRequestException": 5, - "Exception": 2, - "self.stream": 1, - "self.address": 3, - "self._request": 7, - "self._request_finished": 4, - "self._header_callback": 3, - "stack_context.wrap": 2, - "self._on_headers": 1, - "self.stream.read_until": 2, - "self._write_callback": 5, - "write": 2, - "chunk": 5, - "callback": 7, - "self.stream.closed": 1, - "self.stream.write": 2, - "self._on_write_complete": 1, - "finish": 2, - "self.stream.writing": 2, - "self._finish_request": 2, - "_on_write_complete": 1, - "_finish_request": 1, - "disconnect": 5, - "connection_header": 5, - "self._request.headers.get": 2, - "connection_header.lower": 1, - "self._request.supports_http_1_1": 1, - "self._request.headers": 1, - "self._request.method": 2, - "self.stream.close": 2, - "_on_headers": 1, - "data.decode": 1, - "eol": 3, - "data.find": 1, - "start_line": 1, - "method": 5, - "uri": 5, - "start_line.split": 1, - "version.startswith": 1, - "headers": 5, - "httputil.HTTPHeaders.parse": 1, - "self.stream.socket": 1, - "socket.AF_INET": 2, - "socket.AF_INET6": 1, - "remote_ip": 8, - "HTTPRequest": 2, - "connection": 5, - "content_length": 6, - "headers.get": 2, - "int": 1, - "self.stream.max_buffer_size": 1, - "self.stream.read_bytes": 1, - "self._on_request_body": 1, - "logging.info": 1, - "_on_request_body": 1, - "self._request.body": 2, - "content_type": 1, - "content_type.startswith": 2, - "arguments": 2, - "arguments.iteritems": 2, - "self._request.arguments.setdefault": 1, - "content_type.split": 1, - "sep": 2, - "field.strip": 1, - ".partition": 1, - "httputil.parse_multipart_form_data": 1, - "self._request.arguments": 1, - "self._request.files": 1, - "logging.warning": 1, - "body": 2, - "protocol": 4, - "host": 2, - "files": 2, - "self.method": 1, - "self.uri": 2, - "self.version": 2, - "self.headers": 4, - "httputil.HTTPHeaders": 1, - "self.body": 1, - "connection.xheaders": 1, - "self.remote_ip": 4, - "self.headers.get": 5, - "self._valid_ip": 1, - "self.protocol": 7, - "connection.stream": 1, - "iostream.SSLIOStream": 1, - "self.host": 2, - "self.files": 1, - "self.connection": 1, - "self._start_time": 3, - "time.time": 3, - "self._finish_time": 4, - "self.path": 1, - "self.query": 2, - "uri.partition": 1, - "self.arguments": 2, - "supports_http_1_1": 1, - "cookies": 1, - "self._cookies": 3, - "Cookie.SimpleCookie": 1, - "self._cookies.load": 1, - "self.connection.write": 1, - "self.connection.finish": 1, - "full_url": 1, - "request_time": 1, - "get_ssl_certificate": 1, - "self.connection.stream.socket.getpeercert": 1, - "ssl.SSLError": 1, - "_valid_ip": 1, - "ip": 2, - "socket.getaddrinfo": 1, - "socket.AF_UNSPEC": 1, - "socket.SOCK_STREAM": 1, - "socket.AI_NUMERICHOST": 1, - "socket.gaierror": 1, - "e.args": 1, - "socket.EAI_NONAME": 1 + "parser.parse_args": 1 }, "QMake": { "QT": 4, @@ -57564,11 +57593,6 @@ "rev.txt": 2, "echo": 1, "ThisIsNotAGitRepo": 1, - "SHEBANG#!qmake": 1, - "message": 1, - "This": 1, - "is": 1, - "QMake.": 1, "CONFIG": 1, "qt": 1, "simpleapp": 1, @@ -57577,61 +57601,24 @@ "file2.h": 1, "This/Is/Folder/file3.h": 1, "This/Is/Folder/file3.ui": 1, - "Test.ui": 1 + "Test.ui": 1, + "SHEBANG#!qmake": 1, + "message": 1, + "This": 1, + "is": 1, + "QMake.": 1 }, "R": { - "df.residual.mira": 1, + "SHEBANG#!Rscript": 2, + "#": 45, + "MedianNorm": 2, "<": 46, "-": 53, "function": 18, "(": 219, - "object": 12, - "...": 4, + "data": 13, ")": 220, "{": 58, - "fit": 2, - "analyses": 1, - "[": 23, - "]": 24, - "return": 8, - "df.residual": 2, - "}": 58, - "df.residual.lme": 1, - "fixDF": 1, - "df.residual.mer": 1, - "sum": 1, - "object@dims": 1, - "*": 2, - "c": 11, - "+": 4, - "df.residual.default": 1, - "q": 3, - "df": 3, - "if": 19, - "is.null": 8, - "mk": 2, - "try": 3, - "coef": 1, - "silent": 3, - "TRUE": 14, - "mn": 2, - "f": 9, - "fitted": 1, - "inherits": 6, - "|": 3, - "NULL": 2, - "n": 3, - "ifelse": 1, - "is.data.frame": 1, - "is.matrix": 1, - "nrow": 1, - "length": 3, - "k": 3, - "max": 1, - "SHEBANG#!Rscript": 2, - "#": 45, - "MedianNorm": 2, - "data": 13, "geomeans": 3, "<->": 1, "exp": 1, @@ -57641,6 +57628,8 @@ "2": 1, "cnts": 2, "median": 1, + "]": 24, + "}": 58, "library": 1, "print_usage": 2, "file": 4, @@ -57648,12 +57637,17 @@ "cat": 1, "spec": 2, "matrix": 3, + "c": 11, "byrow": 3, + "TRUE": 14, "ncol": 3, "opt": 23, "getopt": 1, + "if": 19, + "is.null": 8, "help": 1, "stdout": 1, + "q": 3, "status": 1, "height": 7, "out": 4, @@ -57666,6 +57660,8 @@ "quote": 1, "nsamp": 8, "dim": 1, + "[": 23, + "+": 4, "outfile": 4, "sprintf": 2, "png": 2, @@ -57693,41 +57689,107 @@ "t": 1, "x": 3, "/": 1, - "ParseDates": 2, - "dates": 3, - "unlist": 2, - "strsplit": 3, - "days": 2, - "times": 2, - "hours": 2, - "all.days": 2, - "all.hours": 2, - "data.frame": 1, - "Day": 2, - "factor": 2, - "levels": 2, - "Hour": 2, - "Main": 2, - "system": 1, - "intern": 1, - "punchcard": 4, - "as.data.frame": 1, - "table": 1, - "ggplot2": 6, - "ggplot": 1, - "aes": 2, - "y": 1, - "geom_point": 1, - "size": 1, - "Freq": 1, - "scale_size": 1, - "range": 1, - "ggsave": 1, - "filename": 1, - "hello": 2, - "print": 1, - "module": 25, + "docType": 1, + "package": 5, + "name": 10, + "scholar": 6, + "alias": 2, + "title": 1, + "source": 3, + "The": 5, + "reads": 1, + "from": 5, + "url": 2, + "http": 2, + "//scholar.google.com": 1, + ".": 7, + "Dates": 1, + "and": 5, + "citation": 2, + "counts": 1, + "are": 4, + "estimated": 1, + "determined": 1, + "automatically": 1, + "by": 2, + "a": 6, + "computer": 1, + "program.": 1, + "Use": 1, + "at": 2, + "your": 1, + "own": 1, + "risk.": 1, + "description": 1, "code": 21, + "provides": 1, + "functions": 3, + "to": 9, + "extract": 1, + "Google": 2, + "Scholar.": 1, + "There": 1, + "also": 1, + "convenience": 1, + "comparing": 1, + "multiple": 1, + "scholars": 1, + "predicting": 1, + "index": 1, + "scores": 1, + "based": 1, + "on": 2, + "past": 1, + "publication": 1, + "records.": 1, + "note": 1, + "A": 1, + "complementary": 1, + "set": 2, + "of": 2, + "Scholar": 1, + "can": 3, + "be": 8, + "found": 1, + "//biostat.jhsph.edu/": 1, + "jleek/code/googleCite.r": 1, + "was": 1, + "developed": 1, + "independently.": 1, + "df.residual.mira": 1, + "object": 12, + "...": 4, + "fit": 2, + "analyses": 1, + "return": 8, + "df.residual": 2, + "df.residual.lme": 1, + "fixDF": 1, + "df.residual.mer": 1, + "sum": 1, + "object@dims": 1, + "*": 2, + "df.residual.default": 1, + "df": 3, + "mk": 2, + "try": 3, + "coef": 1, + "silent": 3, + "mn": 2, + "f": 9, + "fitted": 1, + "inherits": 6, + "|": 3, + "NULL": 2, + "n": 3, + "ifelse": 1, + "is.data.frame": 1, + "is.matrix": 1, + "nrow": 1, + "length": 3, + "k": 3, + "max": 1, + "module": 25, "available": 1, "via": 1, "the": 16, @@ -57749,17 +57811,13 @@ "is": 7, "optionally": 1, "attached": 2, - "to": 9, - "of": 2, "current": 2, "scope": 1, "defaults": 1, - ".": 7, "However": 1, "interactive": 2, "invoked": 1, "directly": 1, - "from": 5, "terminal": 1, "only": 1, "i.e.": 1, @@ -57767,12 +57825,8 @@ "within": 1, "modules": 4, "import.attach": 1, - "can": 3, - "be": 8, - "set": 2, "or": 1, "depending": 1, - "on": 2, "user": 1, "s": 2, "preference.": 1, @@ -57780,7 +57834,6 @@ "causes": 1, "emph": 3, "operators": 3, - "by": 2, "default": 1, "path.": 1, "Not": 1, @@ -57789,14 +57842,11 @@ "therefore": 1, "drastically": 1, "limits": 1, - "a": 6, "usefulness.": 1, "Modules": 1, - "are": 4, "searched": 1, "options": 1, "priority.": 1, - "The": 5, "directory": 1, "always": 1, "considered": 1, @@ -57859,7 +57909,6 @@ "exhibit_namespace": 3, "identical": 2, ".GlobalEnv": 2, - "name": 10, "environmentName": 2, "parent.env": 4, "export_operators": 2, @@ -57872,7 +57921,6 @@ "parent": 9, ".BaseNamespaceEnv": 1, "paste": 3, - "source": 3, "chdir": 1, "envir": 5, "cache_module": 1, @@ -57886,6 +57934,7 @@ "%": 2, "is_op": 2, "prefix": 3, + "strsplit": 3, "||": 1, "grepl": 1, "Filter": 1, @@ -57896,7 +57945,6 @@ "references": 1, "remain": 1, "unchanged": 1, - "and": 5, "files": 1, "would": 1, "have": 1, @@ -57932,6 +57980,8 @@ ".loaded_modules": 1, "whatnot.": 1, "assign": 1, + "hello": 2, + "print": 1, "##polyg": 1, "vector": 2, "##numpoints": 1, @@ -57946,57 +57996,36 @@ "spsample": 1, "polyg": 1, "numpoints": 1, - "docType": 1, - "package": 5, - "scholar": 6, - "alias": 2, - "title": 1, - "reads": 1, - "url": 2, - "http": 2, - "//scholar.google.com": 1, - "Dates": 1, - "citation": 2, - "counts": 1, - "estimated": 1, - "determined": 1, - "automatically": 1, - "computer": 1, - "program.": 1, - "Use": 1, - "at": 2, - "your": 1, - "own": 1, - "risk.": 1, - "description": 1, - "provides": 1, - "functions": 3, - "extract": 1, - "Google": 2, - "Scholar.": 1, - "There": 1, - "also": 1, - "convenience": 1, - "comparing": 1, - "multiple": 1, - "scholars": 1, - "predicting": 1, - "index": 1, - "scores": 1, - "based": 1, - "past": 1, - "publication": 1, - "records.": 1, - "note": 1, - "A": 1, - "complementary": 1, - "Scholar": 1, - "found": 1, - "//biostat.jhsph.edu/": 1, - "jleek/code/googleCite.r": 1, - "was": 1, - "developed": 1, - "independently.": 1 + "ParseDates": 2, + "dates": 3, + "unlist": 2, + "days": 2, + "times": 2, + "hours": 2, + "all.days": 2, + "all.hours": 2, + "data.frame": 1, + "Day": 2, + "factor": 2, + "levels": 2, + "Hour": 2, + "Main": 2, + "system": 1, + "intern": 1, + "punchcard": 4, + "as.data.frame": 1, + "table": 1, + "ggplot2": 6, + "ggplot": 1, + "aes": 2, + "y": 1, + "geom_point": 1, + "size": 1, + "Freq": 1, + "scale_size": 1, + "range": 1, + "ggsave": 1, + "filename": 1 }, "RDoc": { "RDoc": 7, @@ -58187,64 +58216,40 @@ "rnorm": 1 }, "Racket": { - ";": 3, - "Clean": 1, - "simple": 1, - "and": 1, - "efficient": 1, - "code": 1, - "-": 94, - "that": 2, - "s": 1, - "the": 3, - "power": 1, - "of": 4, - "Racket": 2, - "http": 1, - "//racket": 1, - "lang.org/": 1, - "(": 23, - "define": 1, - "bottles": 4, - "n": 8, - "more": 2, - ")": 23, - "printf": 2, - "case": 1, - "[": 16, - "]": 16, - "else": 1, - "if": 1, - "for": 2, - "in": 3, - "range": 1, - "sub1": 1, - "displayln": 2, "#lang": 1, "scribble/manual": 1, "@": 3, + "(": 23, "require": 1, "scribble/bnf": 1, + ")": 23, "@title": 1, "{": 2, "Scribble": 3, "The": 1, + "Racket": 2, "Documentation": 1, "Tool": 1, "}": 2, "@author": 1, + "[": 16, + "]": 16, "is": 3, "a": 1, "collection": 1, + "of": 4, "tools": 1, + "for": 2, "creating": 1, "prose": 2, "documents": 1, + "-": 94, "papers": 1, "books": 1, "library": 1, "documentation": 1, "etc.": 1, + "in": 3, "HTML": 1, "or": 2, "PDF": 1, @@ -58257,11 +58262,13 @@ "you": 1, "write": 1, "programs": 1, + "that": 2, "are": 1, "rich": 1, "textual": 1, "content": 2, "whether": 1, + "the": 3, "to": 2, "be": 2, "typeset": 1, @@ -58293,30 +58300,103 @@ "file.": 1, "@table": 1, "contents": 1, + ";": 3, "@include": 8, "section": 9, - "@index": 1 + "@index": 1, + "Clean": 1, + "simple": 1, + "and": 1, + "efficient": 1, + "code": 1, + "s": 1, + "power": 1, + "http": 1, + "//racket": 1, + "lang.org/": 1, + "define": 1, + "bottles": 4, + "n": 8, + "more": 2, + "printf": 2, + "case": 1, + "else": 1, + "if": 1, + "range": 1, + "sub1": 1, + "displayln": 2 }, "Ragel in Ruby Host": { "begin": 3, "%": 34, "{": 19, "machine": 3, - "ephemeris_parser": 1, + "simple_tokenizer": 1, ";": 38, "action": 9, - "mark": 6, + "MyTs": 2, + "my_ts": 6, "p": 8, "}": 19, - "parse_start_time": 2, - "parser.start_time": 1, + "MyTe": 2, + "my_te": 6, + "Emit": 4, + "emit": 4, "data": 15, "[": 20, - "mark..p": 4, + "my_ts...my_te": 1, "]": 20, ".pack": 6, "(": 33, ")": 33, + "nil": 4, + "foo": 8, + "any": 4, + "+": 7, + "main": 3, + "|": 11, + "*": 9, + "end": 23, + "#": 4, + "class": 3, + "SimpleTokenizer": 1, + "attr_reader": 2, + "path": 8, + "def": 10, + "initialize": 2, + "@path": 2, + "write": 9, + "stdout.puts": 2, + "perform": 2, + "pe": 4, + "ignored": 4, + "eof": 3, + "init": 3, + "leftover": 8, + "File.open": 2, + "do": 2, + "f": 2, + "while": 2, + "chunk": 2, + "f.read": 2, + "ENV": 2, + ".to_i": 2, + "chunk.unpack": 2, + "data.length": 3, + "exec": 3, + "if": 4, + "my_ts..": 1, + "-": 5, + "else": 2, + "s": 4, + "SimpleTokenizer.new": 1, + "ARGV": 2, + "s.perform": 2, + "ephemeris_parser": 1, + "mark": 6, + "parse_start_time": 2, + "parser.start_time": 1, + "mark..p": 4, "parse_stop_time": 2, "parser.stop_time": 1, "parse_step_size": 2, @@ -58329,7 +58409,6 @@ "r": 1, "n": 1, "adbc": 2, - "|": 11, "year": 2, "digit": 7, "month": 2, @@ -58342,109 +58421,136 @@ "tz": 2, "datetime": 3, "time_unit": 2, - "s": 4, "soe": 2, "eoe": 2, "ephemeris_table": 3, "alnum": 1, - "*": 9, - "-": 5, "./": 1, "start_time": 4, "space*": 2, "stop_time": 4, "step_size": 3, - "+": 7, "ephemeris": 2, - "main": 3, "any*": 3, - "end": 23, "require": 1, "module": 1, "Tengai": 1, "EPHEMERIS_DATA": 2, "Struct.new": 1, ".freeze": 1, - "class": 3, "EphemerisParser": 1, "<": 1, - "def": 10, "self.parse": 1, "parser": 2, "new": 1, "data.unpack": 1, - "if": 4, "data.is_a": 1, "String": 1, - "eof": 3, - "data.length": 3, - "write": 9, - "init": 3, - "exec": 3, "time": 6, "super": 2, "parse_time": 3, "private": 1, "DateTime.parse": 1, "simple_scanner": 1, - "Emit": 4, - "emit": 4, "ts": 4, "..": 1, "te": 1, - "foo": 8, - "any": 4, - "#": 4, "SimpleScanner": 1, - "attr_reader": 2, - "path": 8, - "initialize": 2, - "@path": 2, - "stdout.puts": 2, - "perform": 2, - "pe": 4, - "ignored": 4, - "leftover": 8, - "File.open": 2, - "do": 2, - "f": 2, - "while": 2, - "chunk": 2, - "f.read": 2, - "ENV": 2, - ".to_i": 2, - "chunk.unpack": 2, "||": 1, "ts..pe": 1, - "else": 2, - "SimpleScanner.new": 1, - "ARGV": 2, - "s.perform": 2, - "simple_tokenizer": 1, - "MyTs": 2, - "my_ts": 6, - "MyTe": 2, - "my_te": 6, - "my_ts...my_te": 1, - "nil": 4, - "SimpleTokenizer": 1, - "my_ts..": 1, - "SimpleTokenizer.new": 1 + "SimpleScanner.new": 1 }, "Rebol": { - "REBOL": 5, + "Rebol": 4, "[": 54, - "System": 1, + "]": 61, + "hello": 8, + "func": 5, + "print": 4, "Title": 2, - "Rights": 1, + "re": 20, + "s": 5, + "/i": 1, + "rejoin": 1, + "compose": 1, + "(": 30, + ")": 33, + "either": 1, + "i": 1, + ";": 19, + "little": 1, + "helper": 1, + "for": 4, + "standard": 1, + "grammar": 1, + "regex": 2, + "used": 3, + "date": 6, + "-": 26, + "naive": 1, + "string": 1, "{": 8, + "}": 8, + "|": 22, + "S": 3, + "*": 7, + "<(?:[^^\\>": 1, + ".": 4, + "d": 3, + "+": 6, + "/": 5, + "@": 1, + "%": 2, + "A": 3, + "F": 1, + "url": 1, + "PR_LITERAL": 10, + "string_url": 1, + "email": 1, + "string_email": 1, + "binary": 1, + "binary_base_two": 1, + "binary_base_sixty_four": 1, + "binary_base_sixteen": 1, + "re/i": 2, + "issue": 1, + "string_issue": 1, + "values": 1, + "value_date": 1, + "time": 2, + "value_time": 1, + "tuple": 1, + "value_tuple": 1, + "pair": 1, + "value_pair": 1, + "number": 2, + "PR": 1, + "Za": 2, + "z0": 2, + "<[=>": 1, + "rebol": 1, + "red": 1, + "/system": 1, + "world": 1, + "topaz": 1, + "true": 1, + "false": 1, + "yes": 1, + "no": 3, + "on": 1, + "off": 1, + "none": 1, + "#": 1, + "block": 5, + "REBOL": 5, + "System": 1, + "Rights": 1, "Copyright": 1, "Technologies": 2, "is": 4, "a": 2, "trademark": 1, "of": 1, - "}": 8, "License": 2, "Licensed": 1, "under": 1, @@ -58454,11 +58560,9 @@ "See": 1, "http": 1, "//www.apache.org/licenses/LICENSE": 1, - "-": 26, "Purpose": 1, "These": 1, "are": 2, - "used": 3, "to": 2, "define": 1, "natives": 1, @@ -58466,23 +58570,16 @@ "actions.": 1, "Bind": 1, "attributes": 1, - "for": 4, "this": 1, - "block": 5, "BIND_SET": 1, "SHALLOW": 1, - "]": 61, - ";": 19, "Special": 1, "as": 1, "spec": 3, "datatype": 2, "test": 1, "functions": 1, - "(": 30, "e.g.": 1, - "time": 2, - ")": 33, "value": 1, "any": 1, "type": 1, @@ -58505,8 +58602,6 @@ "internal": 2, "usage": 2, "only": 2, - ".": 4, - "no": 3, "check": 2, "required": 2, "we": 2, @@ -58514,201 +58609,24 @@ "it": 2, "correct": 2, "action": 2, - "Rebol": 4, - "re": 20, - "func": 5, - "s": 5, - "/i": 1, - "rejoin": 1, - "compose": 1, - "either": 1, - "i": 1, - "little": 1, - "helper": 1, - "standard": 1, - "grammar": 1, - "regex": 2, - "date": 6, - "naive": 1, - "string": 1, - "|": 22, - "S": 3, - "*": 7, - "<(?:[^^\\>": 1, - "d": 3, - "+": 6, - "/": 5, - "@": 1, - "%": 2, - "A": 3, - "F": 1, - "url": 1, - "PR_LITERAL": 10, - "string_url": 1, - "email": 1, - "string_email": 1, - "binary": 1, - "binary_base_two": 1, - "binary_base_sixty_four": 1, - "binary_base_sixteen": 1, - "re/i": 2, - "issue": 1, - "string_issue": 1, - "values": 1, - "value_date": 1, - "value_time": 1, - "tuple": 1, - "value_tuple": 1, - "pair": 1, - "value_pair": 1, - "number": 2, - "PR": 1, - "Za": 2, - "z0": 2, - "<[=>": 1, - "rebol": 1, - "red": 1, - "/system": 1, - "world": 1, - "topaz": 1, - "true": 1, - "false": 1, - "yes": 1, - "on": 1, - "off": 1, - "none": 1, - "#": 1, - "hello": 8, - "print": 4, "author": 1 }, "Red": { - "Red": 3, + "Red/System": 1, "[": 111, "Title": 2, - "Author": 1, - "]": 114, - "File": 1, - "%": 2, - "console.red": 1, - "Tabs": 1, - "Rights": 1, - "License": 2, - "{": 11, - "Distributed": 1, - "under": 1, - "the": 3, - "Boost": 1, - "Software": 1, - "Version": 1, - "See": 1, - "https": 1, - "//github.com/dockimbel/Red/blob/master/BSL": 1, - "-": 74, - "License.txt": 1, - "}": 11, "Purpose": 2, "Language": 2, "http": 2, "//www.red": 2, + "-": 74, "lang.org/": 2, - "#system": 1, - "global": 1, - "#either": 3, - "OS": 3, - "MacOSX": 2, - "History": 1, - "library": 1, - "cdecl": 3, - "add": 2, - "history": 2, - ";": 31, - "Add": 1, - "line": 9, - "to": 2, - "history.": 1, - "c": 7, - "string": 10, - "rl": 4, - "insert": 3, - "wrapper": 2, - "func": 1, - "count": 3, - "integer": 16, - "key": 3, - "return": 10, - "Windows": 2, - "system/platform": 1, - "ret": 5, - "AttachConsole": 1, - "if": 2, - "zero": 3, - "print": 5, - "halt": 2, - "SetConsoleTitle": 1, - "as": 4, - "string/rs": 1, - "head": 1, - "str": 4, - "bind": 1, - "tab": 3, - "input": 2, - "routine": 1, - "prompt": 3, - "/local": 1, - "len": 1, - "buffer": 4, - "string/load": 1, - "+": 1, - "length": 1, - "free": 1, - "byte": 3, - "ptr": 14, - "SET_RETURN": 1, - "(": 6, - ")": 4, - "delimiters": 1, - "function": 6, - "block": 3, - "list": 1, - "copy": 2, - "none": 1, - "foreach": 1, - "case": 2, - "escaped": 2, - "no": 2, - "in": 2, - "comment": 2, - "switch": 3, - "#": 8, - "mono": 3, - "mode": 3, - "cnt/1": 1, - "red": 1, - "eval": 1, - "code": 3, - "load/all": 1, - "unless": 1, - "tail": 1, - "set/any": 1, - "not": 1, - "script/2": 1, - "do": 2, - "skip": 1, - "script": 1, - "quit": 2, - "init": 1, - "console": 2, - "Console": 1, - "alpha": 1, - "version": 3, - "only": 1, - "ASCII": 1, - "supported": 1, - "Red/System": 1, + "]": 114, "#include": 1, + "%": 2, "../common/FPU": 1, "configuration.reds": 1, + ";": 31, "C": 1, "types": 1, "#define": 2, @@ -58719,6 +58637,9 @@ "alias": 2, "struct": 5, "second": 1, + "integer": 16, + "(": 6, + ")": 4, "minute": 1, "hour": 1, "day": 1, @@ -58733,22 +58654,32 @@ "saving": 1, "Negative": 1, "unknown": 1, + "#either": 3, + "OS": 3, "#import": 1, "LIBC": 1, "file": 1, + "cdecl": 3, "Error": 1, "handling": 1, "form": 1, "error": 5, "Return": 1, "description.": 1, + "code": 3, + "return": 10, + "c": 7, + "string": 10, + "print": 5, "Print": 1, + "to": 2, "standard": 1, "output.": 1, "Memory": 1, "management": 1, "make": 1, "Allocate": 1, + "zero": 3, "filled": 1, "memory.": 1, "chunks": 1, @@ -58761,9 +58692,11 @@ "JVM": 6, "reserved0": 1, "int": 6, + "ptr": 14, "reserved1": 1, "reserved2": 1, "DestroyJavaVM": 1, + "function": 6, "JNICALL": 5, "vm": 5, "jint": 5, @@ -58771,8 +58704,10 @@ "penv": 3, "p": 3, "args": 2, + "byte": 3, "DetachCurrentThread": 1, "GetEnv": 1, + "version": 3, "AttachCurrentThreadAsDaemon": 1, "just": 2, "some": 2, @@ -58781,9 +58716,14 @@ "testing": 1, "#some": 1, "hash": 1, + "quit": 2, + "#": 8, + "{": 11, "FF0000": 3, + "}": 11, "FF000000": 2, "with": 4, + "tab": 3, "instead": 1, "of": 1, "space": 2, @@ -58799,6 +58739,7 @@ "which": 1, "interpreter": 1, "path": 1, + "copy": 2, "h": 1, "#if": 1, "type": 1, @@ -58813,6 +58754,7 @@ "@@": 1, "reposition": 1, "after": 1, + "the": 3, "catch": 1, "flag": 1, "CATCH_ALL": 1, @@ -58823,7 +58765,94 @@ "stack": 1, "aligned": 1, "on": 1, - "bit": 1 + "bit": 1, + "Red": 3, + "Author": 1, + "File": 1, + "console.red": 1, + "Tabs": 1, + "Rights": 1, + "License": 2, + "Distributed": 1, + "under": 1, + "Boost": 1, + "Software": 1, + "Version": 1, + "See": 1, + "https": 1, + "//github.com/dockimbel/Red/blob/master/BSL": 1, + "License.txt": 1, + "#system": 1, + "global": 1, + "MacOSX": 2, + "History": 1, + "library": 1, + "add": 2, + "history": 2, + "Add": 1, + "line": 9, + "history.": 1, + "rl": 4, + "insert": 3, + "wrapper": 2, + "func": 1, + "count": 3, + "key": 3, + "Windows": 2, + "system/platform": 1, + "ret": 5, + "AttachConsole": 1, + "if": 2, + "halt": 2, + "SetConsoleTitle": 1, + "as": 4, + "string/rs": 1, + "head": 1, + "str": 4, + "bind": 1, + "input": 2, + "routine": 1, + "prompt": 3, + "/local": 1, + "len": 1, + "buffer": 4, + "string/load": 1, + "+": 1, + "length": 1, + "free": 1, + "SET_RETURN": 1, + "delimiters": 1, + "block": 3, + "list": 1, + "none": 1, + "foreach": 1, + "case": 2, + "escaped": 2, + "no": 2, + "in": 2, + "comment": 2, + "switch": 3, + "mono": 3, + "mode": 3, + "cnt/1": 1, + "red": 1, + "eval": 1, + "load/all": 1, + "unless": 1, + "tail": 1, + "set/any": 1, + "not": 1, + "script/2": 1, + "do": 2, + "skip": 1, + "script": 1, + "init": 1, + "console": 2, + "Console": 1, + "alpha": 1, + "only": 1, + "ASCII": 1, + "supported": 1 }, "RobotFramework": { "***": 16, @@ -58834,53 +58863,104 @@ "cases": 2, "using": 4, "the": 9, - "data": 2, + "keyword": 5, "-": 16, "driven": 4, "testing": 2, "approach.": 2, "...": 28, + "All": 1, + "tests": 5, + "contain": 1, + "a": 4, + "workflow": 3, + "constructed": 1, + "from": 1, + "keywords": 3, + "in": 5, + "CalculatorLibrary": 5, + ".": 4, + "Creating": 1, + "new": 1, + "or": 1, + "editing": 1, + "existing": 1, + "is": 6, + "easy": 1, + "even": 1, + "for": 2, + "people": 2, + "without": 1, + "programming": 1, + "skills.": 1, + "This": 3, + "kind": 2, + "of": 3, + "style": 3, + "works": 3, + "well": 3, + "normal": 1, + "automation.": 1, + "If": 1, + "also": 2, + "business": 2, + "need": 3, + "to": 5, + "understand": 1, + "_gherkin_": 2, + "may": 1, + "work": 1, + "better.": 1, + "Library": 3, + "Test": 4, + "Cases": 3, + "Push": 16, + "button": 13, + "Result": 8, + "should": 9, + "be": 9, + "multiple": 2, + "buttons": 4, + "Simple": 1, + "calculation": 2, + "+": 6, + "Longer": 1, + "*": 4, + "/": 5, + "Clear": 1, + "C": 4, + "{": 15, + "EMPTY": 3, + "}": 15, + "#": 2, + "built": 1, + "variable": 1, + "data": 2, "Tests": 1, "use": 2, "Calculate": 3, - "keyword": 5, "created": 1, - "in": 5, "this": 1, "file": 1, "that": 5, "turn": 1, "uses": 1, - "keywords": 3, - "CalculatorLibrary": 5, - ".": 4, "An": 1, "exception": 1, - "is": 6, "last": 1, "has": 5, - "a": 4, "custom": 1, "_template": 1, "keyword_.": 1, "The": 2, - "style": 3, - "works": 3, - "well": 3, "when": 2, "you": 1, - "need": 3, - "to": 5, "repeat": 1, "same": 1, - "workflow": 3, - "multiple": 2, "times.": 1, "Notice": 1, "one": 1, - "of": 3, "these": 1, - "tests": 5, "fails": 1, "on": 1, "purpose": 1, @@ -58889,32 +58969,21 @@ "failures": 1, "look": 1, "like.": 1, - "Test": 4, "Template": 2, - "Library": 3, - "Cases": 3, "Expression": 1, "Expected": 1, "Addition": 2, - "+": 6, "Subtraction": 1, "Multiplication": 1, - "*": 4, "Division": 2, - "/": 5, "Failing": 1, "Calculation": 3, "error": 4, "[": 4, "]": 4, - "should": 9, "fail": 2, "kekkonen": 1, "Invalid": 2, - "button": 13, - "{": 15, - "EMPTY": 3, - "}": 15, "expression.": 1, "by": 3, "zero.": 1, @@ -58922,21 +58991,14 @@ "Arguments": 2, "expression": 5, "expected": 4, - "Push": 16, - "buttons": 4, - "C": 4, - "Result": 8, - "be": 9, "Should": 2, "cause": 1, "equal": 1, - "#": 2, "Using": 1, "BuiltIn": 1, "case": 1, "gherkin": 1, "syntax.": 1, - "This": 3, "similar": 1, "examples.": 1, "difference": 1, @@ -58950,8 +59012,6 @@ "embedded": 1, "into": 1, "names.": 1, - "kind": 2, - "_gherkin_": 2, "syntax": 1, "been": 3, "made": 1, @@ -58967,8 +59027,6 @@ "examples": 1, "easily": 1, "understood": 1, - "also": 2, - "business": 2, "people.": 1, "Given": 1, "calculator": 1, @@ -58981,38 +59039,59 @@ "Then": 1, "result": 2, "Calculator": 1, - "User": 2, - "All": 1, - "contain": 1, - "constructed": 1, - "from": 1, - "Creating": 1, - "new": 1, - "or": 1, - "editing": 1, - "existing": 1, - "easy": 1, - "even": 1, - "for": 2, - "people": 2, - "without": 1, - "programming": 1, - "skills.": 1, - "normal": 1, - "automation.": 1, - "If": 1, - "understand": 1, - "may": 1, - "work": 1, - "better.": 1, - "Simple": 1, - "calculation": 2, - "Longer": 1, - "Clear": 1, - "built": 1, - "variable": 1 + "User": 2 }, "Ruby": { + "object": 2, + "@user": 1, + "person": 1, + "attributes": 2, + "username": 1, + "email": 1, + "location": 1, + "created_at": 1, + "registered_at": 1, + "node": 2, + "role": 1, + "do": 38, + "|": 93, + "user": 1, + "user.is_admin": 1, + "end": 239, + "child": 1, + "phone_numbers": 1, + "pnumbers": 1, + "extends": 1, + "node_numbers": 1, + "u": 1, + "partial": 1, + "(": 244, + "u.phone_numbers": 1, + ")": 256, + "Jenkins": 1, + "Plugin": 1, + "Specification.new": 1, + "plugin": 3, + "plugin.name": 1, + "plugin.display_name": 1, + "plugin.version": 1, + "plugin.description": 1, + "plugin.url": 1, + "plugin.developed_by": 1, + "plugin.uses_repository": 1, + "github": 1, + "plugin.depends_on": 1, + "#plugin.depends_on": 1, + "task": 2, + "default": 2, + "puts": 12, + "load": 3, + "Dir": 4, + "[": 58, + "]": 58, + ".each": 4, + "{": 70, + "}": 70, "Pry.config.commands.import": 1, "Pry": 1, "ExtendedCommands": 1, @@ -59022,41 +59101,416 @@ "Pry.config.color": 1, "Pry.config.commands.alias_command": 1, "Pry.config.commands.command": 1, - "do": 38, - "|": 93, "*args": 17, "output.puts": 1, - "end": 239, "Pry.config.history.should_save": 1, "Pry.config.prompt": 1, - "[": 58, "proc": 2, - "{": 70, - "}": 70, - "]": 58, "Pry.plugins": 1, ".disable": 1, "appraise": 2, "gem": 3, - "load": 3, - "Dir": 4, - ".each": 4, - "plugin": 3, - "(": 244, - ")": 256, - "task": 2, - "default": 2, - "puts": 12, - "module": 8, - "Foo": 1, + "SHEBANG#!python": 1, "require": 58, + "module": 8, + "Sinatra": 2, "class": 7, + "Request": 2, + "<": 2, + "Rack": 1, + "def": 143, + "accept": 1, + "@env": 2, + "||": 22, + "begin": 9, + "entries": 1, + ".to_s.split": 1, + "entries.map": 1, + "e": 8, + "accept_entry": 1, + ".sort_by": 1, + "&": 31, + "last": 4, + ".map": 6, + "first": 1, + "preferred_type": 1, + "yield": 5, + "self.defer": 1, + "/": 34, + "match": 6, + "if": 72, + "keys": 6, + "<<": 15, + "else": 25, + "-": 34, + "#": 100, + "pattern": 1, + "elsif": 7, + "path.respond_to": 5, + "&&": 8, + "path": 16, + "path.keys": 1, + "names": 2, + "path.names": 1, + "raise": 17, + "TypeError": 1, + "URI": 3, + "URI.const_defined": 1, + "Parser": 1, + "Parser.new": 1, + "encoded": 1, + "char": 4, + "enc": 5, + "URI.escape": 1, + "public": 2, + "helpers": 3, + "data": 1, + "reset": 1, + "set": 36, + "environment": 2, + "ENV": 4, + "development": 6, + ".to_sym": 1, + "raise_errors": 1, + "Proc.new": 11, + "test": 5, + "dump_errors": 1, + "show_exceptions": 1, + "sessions": 1, + "logging": 2, + "protection": 1, + "true": 15, + "method_override": 4, + "use_code": 1, + "default_encoding": 1, + "add_charset": 1, + "%": 10, + "w": 6, + "javascript": 1, + "xml": 2, + "xhtml": 1, + "+": 47, + "json": 1, + "t": 3, + "settings.add_charset": 1, + "text": 3, + "//": 3, + "session_secret": 3, + "SecureRandom.hex": 1, + "rescue": 13, + "LoadError": 3, + "NotImplementedError": 1, + "Kernel.rand": 1, + "**256": 1, + "self": 11, + "alias_method": 2, + "methodoverride": 2, + "run": 2, + "start": 7, + "server": 11, + "via": 1, + "at": 1, + "exit": 2, + "hook": 9, + "running": 2, + "is": 3, + "the": 8, + "built": 1, + "in": 3, + "now": 1, + "http": 1, + "webrick": 1, + "bind": 1, + "port": 4, + "ruby_engine": 6, + "defined": 1, + "RUBY_ENGINE": 2, + "server.unshift": 6, + "ruby_engine.nil": 1, + "absolute_redirects": 1, + "prefixed_redirects": 1, + "empty_path_info": 1, + "nil": 21, + "app_file": 4, + "root": 5, + "File.expand_path": 1, + "File.dirname": 4, + "views": 1, + "File.join": 6, + "reload_templates": 1, + "lock": 1, + "threaded": 1, + "public_folder": 3, + "static": 1, + "File.exist": 1, + "static_cache_control": 1, + "error": 3, + "Exception": 1, + "response.status": 1, + "content_type": 3, + "configure": 2, + "get": 2, + "filename": 2, + "__FILE__": 3, + "png": 1, + "send_file": 1, + "NotFound": 1, + "HTML": 2, + ".gsub": 5, + "": 1, + "html": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "

": 1, + "doesn": 1, + "rsquo": 1, + "know": 1, + "this": 2, + "ditty.": 1, + "

": 1, + "": 1, + "src=": 1, + "
": 1, + "id=": 1, + "Try": 1, + "
": 1,
+      "request.request_method.downcase": 1,
+      "n": 4,
+      "nend": 1,
+      "
": 1, + "
": 1, + "": 1, + "": 1, + "Application": 2, + "Base": 2, + "super": 3, + "unless": 15, + "self.register": 2, + "extensions": 6, + "block": 30, + "nodoc": 3, + "added_methods": 2, + "extensions.map": 1, + "m": 3, + "m.public_instance_methods": 1, + ".flatten": 1, + "Delegator.delegate": 1, + "Delegator": 1, + "self.delegate": 1, + "methods": 1, + "methods.each": 1, + "method_name": 5, + "define_method": 1, + "return": 25, + "args": 5, + "respond_to": 1, + "Delegator.target.send": 1, + "private": 3, + "delegate": 1, + "patch": 3, + "put": 1, + "post": 1, + "delete": 1, + "head": 3, + "options": 3, + "template": 1, + "layout": 1, + "before": 1, + "after": 1, + "not_found": 1, + "mime_type": 1, + "enable": 1, + "disable": 1, + "use": 1, + "production": 1, + "settings": 2, + "attr_accessor": 2, + "target": 1, + "self.target": 1, + "Wrapper": 1, + "initialize": 2, + "stack": 2, + "instance": 2, + "@stack": 1, + "@instance": 2, + "@instance.settings": 1, + "call": 1, + "env": 2, + "@stack.call": 1, + "inspect": 2, + "self.new": 1, + "base": 4, + "Class.new": 2, + "base.class_eval": 1, + "block_given": 5, + "Delegator.target.register": 1, + "self.helpers": 1, + "Delegator.target.helpers": 1, + "self.use": 1, + "Delegator.target.use": 1, + "ActiveSupport": 1, + "Inflector": 1, + "extend": 2, + "pluralize": 3, + "word": 10, + "apply_inflections": 3, + "inflections.plurals": 1, + "singularize": 2, + "inflections.singulars": 1, + "camelize": 2, + "term": 1, + "uppercase_first_letter": 2, + "string": 4, + "term.to_s": 1, + "string.sub": 2, + "a": 10, + "z": 7, + "d": 6, + "*/": 1, + "inflections.acronyms": 1, + ".capitalize": 1, + "inflections.acronym_regex": 2, + "b": 4, + "A": 5, + "Z_": 1, + ".downcase": 2, + "string.gsub": 1, + "_": 2, + "*": 3, + "/i": 2, + "underscore": 3, + "camel_cased_word": 6, + "camel_cased_word.to_s.dup": 1, + "word.gsub": 4, + "Za": 1, + "Z": 3, + "word.tr": 1, + "word.downcase": 1, + "humanize": 2, + "lower_case_and_underscored_word": 1, + "result": 8, + "lower_case_and_underscored_word.to_s.dup": 1, + "inflections.humans.each": 1, + "rule": 4, + "replacement": 4, + "break": 4, + "result.sub": 2, + "result.gsub": 2, + "/_id": 1, + "result.tr": 1, + "w/": 1, + ".upcase": 1, + "titleize": 1, + "": 1, + "capitalize": 1, + "Create": 1, + "name": 51, + "of": 1, + "table": 2, + "like": 1, + "Rails": 1, + "does": 1, + "for": 1, + "models": 1, + "to": 1, + "This": 1, + "method": 4, + "uses": 1, + "on": 2, + "RawScaledScorer": 1, + "tableize": 2, + "class_name": 2, + "classify": 1, + "table_name": 1, + "table_name.to_s.sub": 1, + "/.*": 1, + "./": 1, + "dasherize": 1, + "underscored_word": 1, + "underscored_word.tr": 1, + "demodulize": 1, + "path.to_s": 3, + "i": 2, + "path.rindex": 2, + "..": 1, + "deconstantize": 1, + "implementation": 1, + "based": 1, + "one": 1, + "facets": 1, + "id": 1, + "outside": 2, + "inside": 2, + "s": 2, + "owned": 1, + "constant": 4, + "constant.ancestors.inject": 1, + "const": 3, + "ancestor": 3, + "Object": 1, + "ancestor.const_defined": 1, + "constant.const_get": 1, + "safe_constantize": 1, + "constantize": 1, + "NameError": 2, + "e.message": 2, + "uninitialized": 1, + "wrong": 1, + "const_regexp": 3, + "e.name.to_s": 1, + "camel_cased_word.to_s": 1, + "ArgumentError": 1, + "/not": 1, + "missing": 1, + "ordinal": 1, + "number": 2, + ".include": 1, + "number.to_i.abs": 2, + "case": 5, + "when": 11, + "ordinalize": 1, + "parts": 1, + "camel_cased_word.split": 1, + "parts.pop": 1, + "parts.reverse.inject": 1, + "acc": 2, + "part": 1, + "part.empty": 1, + "rules": 1, + "word.to_s.dup": 1, + "word.empty": 1, + "inflections.uncountables.include": 1, + "result.downcase": 1, + "Z/": 1, + "rules.each": 1, + "SHEBANG#!macruby": 1, + "Grit": 1, "Formula": 2, "include": 3, "FileUtils": 1, "attr_reader": 5, - "name": 51, - "path": 16, "url": 12, "version": 10, "homepage": 2, @@ -59064,16 +59518,11 @@ "downloader": 6, "standard": 2, "unstable": 2, - "head": 3, "bottle_version": 2, "bottle_url": 3, "bottle_sha1": 2, "buildpath": 1, - "def": 143, - "initialize": 2, - "nil": 21, "set_instance_variable": 12, - "if": 72, "@head": 4, "and": 6, "not": 3, @@ -59083,12 +59532,10 @@ "@version": 10, "@spec_to_use": 4, "@unstable": 2, - "else": 25, "@standard.nil": 1, "SoftwareSpecification.new": 3, "@specs": 3, "@standard": 3, - "raise": 17, "@url.nil": 1, "@name": 3, "validate_variable": 7, @@ -59096,7 +59543,6 @@ "path.nil": 1, "self.class.path": 1, "Pathname.new": 3, - "||": 22, "@spec_to_use.detect_version": 1, "CHECKSUM_TYPES.each": 1, "type": 10, @@ -59106,14 +59552,10 @@ "@spec_to_use.specs": 1, "@bottle_url": 2, "bottle_base_url": 1, - "+": 47, "bottle_filename": 1, - "self": 11, "@bottle_sha1": 2, "installed": 2, - "return": 25, "installed_prefix.children.length": 1, - "rescue": 13, "explicitly_requested": 1, "ARGV.named.empty": 1, "ARGV.formulae.include": 1, @@ -59126,7 +59568,6 @@ "head_prefix.directory": 1, "prefix": 14, "rack": 1, - ";": 41, "prefix.parent": 1, "bin": 1, "doc": 1, @@ -59154,7 +59595,6 @@ "cached_download": 1, "@downloader.cached_location": 1, "caveats": 1, - "options": 3, "patches": 2, "keg_only": 2, "self.class.keg_only_reason": 1, @@ -59162,7 +59602,6 @@ "cc": 3, "self.class.cc_failures.nil": 1, "Compiler.new": 1, - "unless": 15, "cc.is_a": 1, "Compiler": 1, "self.class.cc_failures.find": 1, @@ -59174,7 +59613,6 @@ "failure.build": 1, "cc.build": 1, "skip_clean": 2, - "true": 15, "self.class.skip_clean_all": 1, "to_check": 2, "path.relative_path_from": 1, @@ -59182,28 +59620,18 @@ "self.class.skip_clean_paths.include": 1, "brew": 2, "stage": 2, - "begin": 9, - "patch": 3, - "yield": 5, "Interrupt": 2, "RuntimeError": 1, "SystemCallError": 1, - "e": 8, - "#": 100, "don": 1, "config.log": 2, - "t": 3, - "a": 10, "std_autotools": 1, "variant": 1, "because": 1, "autotools": 1, - "is": 3, "lot": 1, "std_cmake_args": 1, - "%": 10, "W": 1, - "-": 34, "DCMAKE_INSTALL_PREFIX": 1, "DCMAKE_BUILD_TYPE": 1, "None": 1, @@ -59219,15 +59647,11 @@ "camelcase": 1, "it": 1, "name.capitalize.gsub": 1, - "/": 34, "_.": 1, - "s": 2, "zA": 1, "Z0": 1, "upcase": 1, - ".gsub": 5, "self.names": 1, - ".map": 6, "f": 11, "File.basename": 2, ".sort": 2, @@ -59236,13 +59660,10 @@ "self.map": 1, "rv": 3, "each": 1, - "<<": 15, "self.each": 1, "names.each": 1, - "n": 4, "Formula.factory": 2, "onoe": 2, - "inspect": 2, "self.aliases": 1, "self.canonical_name": 1, "name.to_s": 3, @@ -59257,12 +59678,10 @@ "r": 3, ".": 3, "tapd": 1, - ".downcase": 2, "tapd.find_formula": 1, "relative_pathname": 1, "relative_pathname.stem.to_s": 1, "tapd.directory": 1, - "elsif": 7, "formula_with_that_name.file": 1, "formula_with_that_name.readable": 1, "possible_alias.file": 1, @@ -59272,7 +59691,6 @@ "self.factory": 1, "https": 1, "ftp": 1, - "//": 3, ".basename": 1, "target_file": 6, "name.basename": 1, @@ -59286,20 +59704,16 @@ ".rb": 1, "path.stem": 1, "from_path": 1, - "path.to_s": 3, "Formula.path": 1, "from_name": 2, "klass_name": 2, "klass": 16, "Object.const_get": 1, - "NameError": 2, - "LoadError": 3, "klass.new": 2, "FormulaUnavailableError.new": 1, "tap": 1, "path.realpath.to_s": 1, "/Library/Taps/": 1, - "w": 6, "self.path": 1, "mirrors": 4, "self.class.mirrors": 1, @@ -59326,11 +59740,9 @@ "ohai": 3, ".strip": 1, "removed_ENV_variables": 2, - "case": 5, "args.empty": 1, "cmd.split": 1, ".first": 1, - "when": 11, "ENV.remove_cc_etc": 1, "safe_system": 4, "rd": 1, @@ -59345,7 +59757,6 @@ "arg": 1, "arg.to_s": 1, "exec": 2, - "exit": 2, "never": 1, "gets": 1, "here": 1, @@ -59361,12 +59772,9 @@ "removed_ENV_variables.each": 1, "key": 8, "value": 4, - "ENV": 4, "ENV.kind_of": 1, "Hash": 3, "BuildError.new": 1, - "args": 5, - "public": 2, "fetch": 2, "install_bottle": 1, "CurlBottleDownloadStrategy.new": 1, @@ -59404,13 +59812,11 @@ "incomplete": 1, "download": 1, "remove": 1, - "the": 8, "file": 1, "above.": 1, "supplied.upcase": 1, "hash.upcase": 1, "opoo": 1, - "private": 3, "CHECKSUM_TYPES": 2, "sha1": 4, "sha256": 1, @@ -59431,7 +59837,6 @@ "gzip": 1, "p.compressed_filename": 2, "bzip2": 1, - "*": 3, "p.patch_args": 1, "v": 2, "v.to_s.empty": 1, @@ -59440,7 +59845,6 @@ "self.class.send": 1, "instance_variable_set": 1, "self.method_added": 1, - "method": 4, "self.attr_rw": 1, "attrs": 1, "attrs.each": 1, @@ -59455,9 +59859,6 @@ "skip_clean_all": 2, "cc_failures": 1, "stable": 2, - "&": 31, - "block": 30, - "block_given": 5, "instance_eval": 2, "ARGV.build_devel": 2, "devel": 1, @@ -59467,7 +59868,6 @@ "release": 1, "bottle": 1, "bottle_block": 1, - "Class.new": 2, "self.version": 1, "self.url": 1, "self.sha1": 1, @@ -59477,7 +59877,6 @@ "String": 2, "MacOS.lion": 1, "self.data": 1, - "&&": 8, "bottle_block.instance_eval": 1, "@bottle_version": 1, "bottle_block.data": 1, @@ -59505,209 +59904,15 @@ "@cc_failures": 2, "CompilerFailures.new": 1, "CompilerFailure.new": 2, - "Grit": 1, - "ActiveSupport": 1, - "Inflector": 1, - "extend": 2, - "pluralize": 3, - "word": 10, - "apply_inflections": 3, - "inflections.plurals": 1, - "singularize": 2, - "inflections.singulars": 1, - "camelize": 2, - "term": 1, - "uppercase_first_letter": 2, - "string": 4, - "term.to_s": 1, - "string.sub": 2, - "z": 7, - "d": 6, - "*/": 1, - "inflections.acronyms": 1, - ".capitalize": 1, - "inflections.acronym_regex": 2, - "b": 4, - "A": 5, - "Z_": 1, - "string.gsub": 1, - "_": 2, - "/i": 2, - "underscore": 3, - "camel_cased_word": 6, - "camel_cased_word.to_s.dup": 1, - "word.gsub": 4, - "Za": 1, - "Z": 3, - "word.tr": 1, - "word.downcase": 1, - "humanize": 2, - "lower_case_and_underscored_word": 1, - "result": 8, - "lower_case_and_underscored_word.to_s.dup": 1, - "inflections.humans.each": 1, - "rule": 4, - "replacement": 4, - "break": 4, - "result.sub": 2, - "result.gsub": 2, - "/_id": 1, - "result.tr": 1, - "match": 6, - "w/": 1, - ".upcase": 1, - "titleize": 1, - "": 1, - "capitalize": 1, - "Create": 1, - "of": 1, - "table": 2, - "like": 1, - "Rails": 1, - "does": 1, - "for": 1, - "models": 1, - "to": 1, - "names": 2, - "This": 1, - "uses": 1, - "on": 2, - "last": 4, - "in": 3, - "RawScaledScorer": 1, - "tableize": 2, - "class_name": 2, - "classify": 1, - "table_name": 1, - "table_name.to_s.sub": 1, - "/.*": 1, - "./": 1, - "dasherize": 1, - "underscored_word": 1, - "underscored_word.tr": 1, - "demodulize": 1, - "i": 2, - "path.rindex": 2, - "..": 1, - "deconstantize": 1, - "implementation": 1, - "based": 1, - "one": 1, - "facets": 1, - "id": 1, - "outside": 2, - "inside": 2, - "owned": 1, - "constant": 4, - "constant.ancestors.inject": 1, - "const": 3, - "ancestor": 3, - "Object": 1, - "ancestor.const_defined": 1, - "constant.const_get": 1, - "safe_constantize": 1, - "constantize": 1, - "e.message": 2, - "uninitialized": 1, - "wrong": 1, - "const_regexp": 3, - "e.name.to_s": 1, - "camel_cased_word.to_s": 1, - "ArgumentError": 1, - "/not": 1, - "missing": 1, - "ordinal": 1, - "number": 2, - ".include": 1, - "number.to_i.abs": 2, - "ordinalize": 1, - "nodoc": 3, - "parts": 1, - "camel_cased_word.split": 1, - "parts.pop": 1, - "parts.reverse.inject": 1, - "acc": 2, - "part": 1, - "part.empty": 1, - "rules": 1, - "word.to_s.dup": 1, - "word.empty": 1, - "inflections.uncountables.include": 1, - "result.downcase": 1, - "Z/": 1, - "rules.each": 1, - ".unshift": 1, - "File.dirname": 4, - "__FILE__": 3, - "For": 1, - "use/testing": 1, - "no": 1, - "require_all": 4, - "glob": 2, - "File.join": 6, - "Jekyll": 3, - "VERSION": 1, - "DEFAULTS": 2, - "Dir.pwd": 3, - "self.configuration": 1, - "override": 3, - "source": 2, - "config_file": 2, - "config": 3, - "YAML.load_file": 1, - "config.is_a": 1, - "stdout.puts": 1, - "err": 1, - "stderr.puts": 2, - "err.to_s": 1, - "DEFAULTS.deep_merge": 1, - ".deep_merge": 1, - "Jenkins": 1, - "Plugin": 1, - "Specification.new": 1, - "plugin.name": 1, - "plugin.display_name": 1, - "plugin.version": 1, - "plugin.description": 1, - "plugin.url": 1, - "plugin.developed_by": 1, - "plugin.uses_repository": 1, - "github": 1, - "plugin.depends_on": 1, - "#plugin.depends_on": 1, - "SHEBANG#!macruby": 1, - "object": 2, - "@user": 1, - "person": 1, - "attributes": 2, - "username": 1, - "email": 1, - "location": 1, - "created_at": 1, - "registered_at": 1, - "node": 2, - "role": 1, - "user": 1, - "user.is_admin": 1, - "child": 1, - "phone_numbers": 1, - "pnumbers": 1, - "extends": 1, - "node_numbers": 1, - "u": 1, - "partial": 1, - "u.phone_numbers": 1, "Resque": 3, "Helpers": 1, "redis": 7, - "server": 11, "/redis": 1, "Redis.connect": 2, "thread_safe": 2, "namespace": 3, "server.split": 2, "host": 3, - "port": 4, "db": 3, "Redis.new": 1, "resque": 2, @@ -59742,7 +59947,6 @@ "after_fork": 2, "@after_fork": 2, "to_s": 1, - "attr_accessor": 2, "inline": 3, "alias": 1, "push": 1, @@ -59751,10 +59955,8 @@ "pop": 1, ".pop": 1, "ThreadError": 1, - "size": 3, ".size": 1, "peek": 1, - "start": 7, "count": 5, ".slice": 1, "list_range": 1, @@ -59774,7 +59976,6 @@ "before_hooks": 2, "Plugin.before_enqueue_hooks": 1, ".collect": 2, - "hook": 9, "klass.send": 4, "before_hooks.any": 2, "Job.create": 1, @@ -59804,7 +60005,6 @@ "worker.unregister_worker": 1, "pending": 1, "queues.inject": 1, - "m": 3, "k": 2, "processed": 2, "Stat": 2, @@ -59812,205 +60012,34 @@ "workers.size.to_i": 1, "working.size": 1, "servers": 1, - "environment": 2, - "keys": 6, "redis.keys": 1, "key.sub": 1, "SHEBANG#!ruby": 2, + ".unshift": 1, + "For": 1, + "use/testing": 1, + "no": 1, + "require_all": 4, + "glob": 2, + "Jekyll": 3, + "VERSION": 1, + "DEFAULTS": 2, + "Dir.pwd": 3, + "self.configuration": 1, + "override": 3, + "source": 2, + "config_file": 2, + "config": 3, + "YAML.load_file": 1, + "config.is_a": 1, + "stdout.puts": 1, + "err": 1, + "stderr.puts": 2, + "err.to_s": 1, + "DEFAULTS.deep_merge": 1, + ".deep_merge": 1, "SHEBANG#!rake": 1, - "Sinatra": 2, - "Request": 2, - "<": 2, - "Rack": 1, - "accept": 1, - "@env": 2, - "entries": 1, - ".to_s.split": 1, - "entries.map": 1, - "accept_entry": 1, - ".sort_by": 1, - "first": 1, - "preferred_type": 1, - "self.defer": 1, - "pattern": 1, - "path.respond_to": 5, - "path.keys": 1, - "path.names": 1, - "TypeError": 1, - "URI": 3, - "URI.const_defined": 1, - "Parser": 1, - "Parser.new": 1, - "encoded": 1, - "char": 4, - "enc": 5, - "URI.escape": 1, - "helpers": 3, - "data": 1, - "reset": 1, - "set": 36, - "development": 6, - ".to_sym": 1, - "raise_errors": 1, - "Proc.new": 11, - "test": 5, - "dump_errors": 1, - "show_exceptions": 1, - "sessions": 1, - "logging": 2, - "protection": 1, - "method_override": 4, - "use_code": 1, - "default_encoding": 1, - "add_charset": 1, - "javascript": 1, - "xml": 2, - "xhtml": 1, - "json": 1, - "settings.add_charset": 1, - "text": 3, - "session_secret": 3, - "SecureRandom.hex": 1, - "NotImplementedError": 1, - "Kernel.rand": 1, - "**256": 1, - "alias_method": 2, - "methodoverride": 2, - "run": 2, - "via": 1, - "at": 1, - "running": 2, - "built": 1, - "now": 1, - "http": 1, - "webrick": 1, - "bind": 1, - "ruby_engine": 6, - "defined": 1, - "RUBY_ENGINE": 2, - "server.unshift": 6, - "ruby_engine.nil": 1, - "absolute_redirects": 1, - "prefixed_redirects": 1, - "empty_path_info": 1, - "app_file": 4, - "root": 5, - "File.expand_path": 1, - "views": 1, - "reload_templates": 1, - "lock": 1, - "threaded": 1, - "public_folder": 3, - "static": 1, - "File.exist": 1, - "static_cache_control": 1, - "error": 3, - "Exception": 1, - "response.status": 1, - "content_type": 3, - "configure": 2, - "get": 2, - "filename": 2, - "png": 1, - "send_file": 1, - "NotFound": 1, - "HTML": 2, - "": 1, - "html": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "

": 1, - "doesn": 1, - "rsquo": 1, - "know": 1, - "this": 2, - "ditty.": 1, - "

": 1, - "": 1, - "src=": 1, - "
": 1, - "id=": 1, - "Try": 1, - "
": 1,
-      "request.request_method.downcase": 1,
-      "nend": 1,
-      "
": 1, - "
": 1, - "": 1, - "": 1, - "Application": 2, - "Base": 2, - "super": 3, - "self.register": 2, - "extensions": 6, - "added_methods": 2, - "extensions.map": 1, - "m.public_instance_methods": 1, - ".flatten": 1, - "Delegator.delegate": 1, - "Delegator": 1, - "self.delegate": 1, - "methods": 1, - "methods.each": 1, - "method_name": 5, - "define_method": 1, - "respond_to": 1, - "Delegator.target.send": 1, - "delegate": 1, - "put": 1, - "post": 1, - "delete": 1, - "template": 1, - "layout": 1, - "before": 1, - "after": 1, - "not_found": 1, - "mime_type": 1, - "enable": 1, - "disable": 1, - "use": 1, - "production": 1, - "settings": 2, - "target": 1, - "self.target": 1, - "Wrapper": 1, - "stack": 2, - "instance": 2, - "@stack": 1, - "@instance": 2, - "@instance.settings": 1, - "call": 1, - "env": 2, - "@stack.call": 1, - "self.new": 1, - "base": 4, - "base.class_eval": 1, - "Delegator.target.register": 1, - "self.helpers": 1, - "Delegator.target.helpers": 1, - "self.use": 1, - "Delegator.target.use": 1, - "SHEBANG#!python": 1 + "Foo": 1 }, "Rust": { "//": 20, @@ -60437,23 +60466,9 @@ "port2.recv": 1 }, "SAS": { - "libname": 1, - "source": 1, - "data": 6, - "work.working_copy": 5, - ";": 22, - "set": 3, - "source.original_file.sas7bdat": 1, - "run": 6, - "if": 2, - "Purge": 1, - "then": 2, - "delete": 1, - "ImportantVariable": 1, - ".": 1, - "MissingFlag": 1, "proc": 2, "surveyselect": 1, + "data": 6, "work.data": 1, "out": 2, "work.boot": 2, @@ -60463,8 +60478,10 @@ "seed": 2, "sampsize": 1, "outhits": 1, + ";": 22, "samplingunit": 1, "Site": 1, + "run": 6, "PROC": 1, "MI": 1, "work.bootmi": 2, @@ -60481,7 +60498,19 @@ "model": 1, "Outcome": 1, "/": 1, - "risklimits": 1 + "risklimits": 1, + "libname": 1, + "source": 1, + "work.working_copy": 5, + "set": 3, + "source.original_file.sas7bdat": 1, + "if": 2, + "Purge": 1, + "then": 2, + "delete": 1, + "ImportantVariable": 1, + ".": 1, + "MissingFlag": 1 }, "SCSS": { "blue": 4, @@ -60540,14 +60569,58 @@ "rv": 1, "]": 1, "END": 1, + "if": 1, + "not": 5, + "exists": 1, + "select": 10, + "from": 2, + "sysobjects": 1, + "where": 2, + "name": 3, + "and": 1, + "type": 3, + "in": 1, + "exec": 1, + "%": 2, + "object_ddl": 1, + "go": 1, + "create": 2, + "table": 17, + "FILIAL": 10, + "NUMBER": 1, + "null": 4, + "title_ua": 1, + "VARCHAR2": 4, + "title_ru": 1, + "title_eng": 1, + "remove_date": 1, + "DATE": 2, + "modify_date": 1, + "modify_user": 1, + ";": 31, + "alter": 1, + "add": 1, + "constraint": 1, + "PK_ID": 1, + "primary": 1, + "key": 1, + "grant": 8, + "on": 8, + "to": 8, + "ATOLL": 1, + "CRAMER2GIS": 1, + "DMS": 1, + "HPSM2GIS": 1, + "PLANMONITOR": 1, + "SIEBEL": 1, + "VBIS": 1, + "VPORTAL": 1, "SHOW": 2, "WARNINGS": 2, - ";": 31, "-": 496, "Table": 9, "structure": 9, "for": 15, - "table": 17, "articles": 4, "TABLE": 10, "NOT": 46, @@ -60598,7 +60671,6 @@ "tries": 1, "UNIQUE": 4, "classes": 4, - "name": 3, "date_created": 6, "archive": 2, "class_challenges": 4, @@ -60612,51 +60684,8 @@ "joined": 2, "last_visit": 2, "is_activated": 2, - "type": 3, "token": 3, "user_has_challenge_token": 3, - "create": 2, - "FILIAL": 10, - "NUMBER": 1, - "not": 5, - "null": 4, - "title_ua": 1, - "VARCHAR2": 4, - "title_ru": 1, - "title_eng": 1, - "remove_date": 1, - "DATE": 2, - "modify_date": 1, - "modify_user": 1, - "alter": 1, - "add": 1, - "constraint": 1, - "PK_ID": 1, - "primary": 1, - "key": 1, - "grant": 8, - "select": 10, - "on": 8, - "to": 8, - "ATOLL": 1, - "CRAMER2GIS": 1, - "DMS": 1, - "HPSM2GIS": 1, - "PLANMONITOR": 1, - "SIEBEL": 1, - "VBIS": 1, - "VPORTAL": 1, - "if": 1, - "exists": 1, - "from": 2, - "sysobjects": 1, - "where": 2, - "and": 1, - "in": 1, - "exec": 1, - "%": 2, - "object_ddl": 1, - "go": 1, "use": 1, "translog": 1, "VIEW": 1, @@ -60668,20 +60697,12 @@ "now": 1 }, "STON": { - "[": 11, - "]": 11, - "{": 15, - "#a": 1, - "#b": 1, - "}": 15, - "Rectangle": 1, - "#origin": 1, - "Point": 2, - "-": 2, - "#corner": 1, "TestDomainObject": 1, + "{": 15, "#created": 1, "DateAndTime": 2, + "[": 11, + "]": 11, "#modified": 1, "#integer": 1, "#float": 1, @@ -60696,6 +60717,12 @@ "ByteArray": 1, "#boolean": 1, "false": 1, + "}": 15, + "Rectangle": 1, + "#origin": 1, + "Point": 2, + "-": 2, + "#corner": 1, "ZnResponse": 1, "#headers": 2, "ZnHeaders": 1, @@ -60715,7 +60742,9 @@ "ZnStatusLine": 1, "#version": 1, "#code": 1, - "#reason": 1 + "#reason": 1, + "#a": 1, + "#b": 1 }, "Sass": { "blue": 7, @@ -60741,58 +60770,20 @@ ")": 1 }, "Scala": { - "SHEBANG#!sh": 2, - "exec": 2, - "scala": 2, - "#": 2, - "object": 3, - "Beers": 1, - "extends": 1, - "Application": 1, - "{": 21, - "def": 10, - "bottles": 3, - "(": 67, - "qty": 12, - "Int": 11, - "f": 4, - "String": 5, - ")": 67, - "//": 29, - "higher": 1, - "-": 5, - "order": 1, - "functions": 2, - "match": 2, - "case": 8, - "+": 49, - "x": 3, - "}": 22, - "beers": 3, - "sing": 3, - "implicit": 3, - "song": 3, - "takeOne": 2, - "nextQty": 2, - "nested": 1, - "if": 2, - "else": 2, - "refrain": 2, - ".capitalize": 1, - "tail": 1, - "recursion": 1, - "val": 6, - "headOfSong": 1, - "println": 8, - "parameter": 1, "name": 4, "version": 1, "organization": 1, "libraryDependencies": 3, + "+": 49, "%": 12, "Seq": 3, + "(": 67, + ")": 67, + "{": 21, + "val": 6, "libosmVersion": 4, "from": 1, + "}": 22, "maxErrors": 1, "pollInterval": 1, "javacOptions": 1, @@ -60892,6 +60883,20 @@ "Credentials": 2, "Path.userHome": 1, "/": 2, + "SHEBANG#!sh": 2, + "exec": 2, + "scala": 2, + "#": 2, + "object": 3, + "HelloWorld": 1, + "def": 10, + "main": 1, + "args": 1, + "Array": 1, + "[": 11, + "String": 5, + "]": 11, + "println": 8, "math.random": 1, "scala.language.postfixOps": 1, "scala.util._": 1, @@ -60910,14 +60915,14 @@ "ExecutionException": 1, "blocking": 3, "node11": 1, + "//": 29, "Welcome": 1, "Scala": 1, "worksheet": 1, "retry": 3, - "[": 11, "T": 8, - "]": 11, "n": 3, + "Int": 11, "block": 8, "Future": 5, "ns": 1, @@ -60942,6 +60947,7 @@ "i.toString": 5, "ri": 2, "onComplete": 1, + "case": 8, "s": 1, "s.toString": 1, "t": 1, @@ -60954,10 +60960,33 @@ "Iteration": 5, "java.lang.Exception": 1, "Hi": 10, - "HelloWorld": 1, - "main": 1, - "args": 1, - "Array": 1 + "-": 5, + "Beers": 1, + "extends": 1, + "Application": 1, + "bottles": 3, + "qty": 12, + "f": 4, + "higher": 1, + "order": 1, + "functions": 2, + "match": 2, + "x": 3, + "beers": 3, + "sing": 3, + "implicit": 3, + "song": 3, + "takeOne": 2, + "nextQty": 2, + "nested": 1, + "if": 2, + "else": 2, + "refrain": 2, + ".capitalize": 1, + "tail": 1, + "recursion": 1, + "headOfSong": 1, + "parameter": 1 }, "Scaml": { "%": 1, @@ -60967,25 +60996,37 @@ }, "Scheme": { "(": 366, + "define": 30, + "-": 192, + "library": 1, + "libs": 1, + "basic": 2, + ")": 380, + "export": 1, + "list2": 2, + "x": 10, + "begin": 2, + ".": 2, + "objs": 2, + "should": 1, + "not": 1, + "be": 1, + "exported": 1, "import": 1, "rnrs": 1, - ")": 380, "only": 1, "surfage": 4, "s1": 1, "lists": 1, "filter": 4, - "-": 192, "map": 4, "gl": 12, "glut": 2, "dharmalab": 2, "records": 1, - "define": 30, "record": 5, "type": 5, "math": 1, - "basic": 2, "agave": 4, "glu": 1, "compat": 1, @@ -61005,7 +61046,6 @@ ";": 1684, "utilities": 1, "say": 9, - ".": 2, "args": 2, "for": 7, "each": 7, @@ -61014,7 +61054,6 @@ "translate": 6, "p": 6, "glTranslated": 1, - "x": 10, "y": 3, "radians": 8, "/": 7, @@ -61127,7 +61166,6 @@ "when": 5, "<=>": 3, "distance": 3, - "begin": 2, "1": 2, "f": 1, "append": 4, @@ -61152,33 +61190,25 @@ "s": 1, "space": 1, "cons": 1, - "glutMainLoop": 1, - "library": 1, - "libs": 1, - "export": 1, - "list2": 2, - "objs": 2, - "should": 1, - "not": 1, - "be": 1, - "exported": 1 + "glutMainLoop": 1 }, "Scilab": { + "disp": 1, + "(": 7, + "%": 4, + "pi": 3, + ")": 7, + ";": 7, "function": 1, "[": 1, "a": 4, "b": 4, "]": 1, "myfunction": 1, - "(": 7, "d": 2, "e": 4, "f": 2, - ")": 7, "+": 5, - "%": 4, - "pi": 3, - ";": 7, "cos": 1, "cosh": 1, "if": 1, @@ -61191,39 +61221,21 @@ "end": 1, "myvar": 1, "endfunction": 1, - "disp": 1, "assert_checkequal": 1, "assert_checkfalse": 1 }, "Shell": { - "SHEBANG#!bash": 8, - "typeset": 5, - "-": 391, - "i": 2, - "n": 22, - "bottles": 6, - "no": 16, - "while": 3, - "[": 85, - "]": 85, - "do": 8, + "SHEBANG#!sh": 2, "echo": 71, - "case": 9, - "{": 63, - "}": 61, - "in": 25, - ")": 154, - "%": 5, - "s": 14, - ";": 138, - "esac": 7, - "done": 8, - "exit": 10, - "/usr/bin/clear": 2, "##": 28, "if": 39, + "[": 85, + "-": 391, "z": 12, + "]": 85, + ";": 138, "then": 41, + "n": 22, "export": 25, "SCREENDIR": 2, "fi": 34, @@ -61242,7 +61254,9 @@ "/usr/share/man": 2, "Random": 2, "ENV...": 2, + "{": 63, "TERM": 4, + "}": 61, "COLORTERM": 2, "CLICOLOR": 2, "#": 53, @@ -61256,6 +61270,80 @@ "r": 17, "&&": 65, ".": 5, + "fpath": 6, + "(": 107, + "HOME/.zsh/func": 2, + ")": 154, + "typeset": 5, + "U": 2, + "dirpersiststore": 2, + "##############################################################################": 16, + "#Import": 2, + "the": 17, + "shell": 4, + "agnostic": 2, + "Bash": 3, + "or": 3, + "Zsh": 2, + "environment": 2, + "config": 4, + "source": 7, + "/.profile": 2, + "HISTSIZE": 2, + "#How": 2, + "many": 2, + "lines": 2, + "of": 6, + "history": 18, + "keep": 3, + "in": 25, + "memory": 3, + "HISTFILE": 2, + "/.zsh_history": 2, + "#Where": 2, + "save": 4, + "disk": 5, + "SAVEHIST": 2, + "#Number": 2, + "entries": 2, + "HISTDUP": 2, + "erase": 2, + "#Erase": 2, + "duplicates": 2, + "file": 9, + "setopt": 8, + "appendhistory": 2, + "#Append": 2, + "no": 16, + "overwriting": 2, + "sharehistory": 2, + "#Share": 2, + "across": 2, + "terminals": 2, + "incappendhistory": 2, + "#Immediately": 2, + "append": 2, + "not": 2, + "just": 2, + "when": 2, + "a": 12, + "term": 2, + "is": 11, + "killed": 2, + "#.": 2, + "/.dotfiles/z": 4, + "zsh/z.sh": 2, + "#function": 2, + "precmd": 2, + "rupa/z.sh": 2, + "/usr/bin/clear": 2, + "umask": 2, + "path": 13, + "/opt/local/bin": 2, + "/opt/local/sbin": 2, + "/bin": 4, + "prompt": 2, + "endif": 2, "function": 6, "ls": 6, "command": 5, @@ -61275,6 +61363,7 @@ "HISTCONTROL": 2, "ignoreboth": 2, "shopt": 13, + "s": 14, "cdspell": 2, "extglob": 2, "progcomp": 2, @@ -61384,21 +61473,17 @@ "readonly": 4, "unset": 10, "and": 5, - "shell": 4, "variables": 2, - "setopt": 8, "options": 8, "helptopic": 2, "help": 5, "helptopics": 2, - "a": 12, "unalias": 4, "aliases": 2, "binding": 2, "bind": 4, "readline": 2, "bindings": 2, - "(": 107, "make": 6, "this": 6, "more": 3, @@ -61425,7 +61510,6 @@ "cd..": 2, "t": 3, "csh": 2, - "is": 11, "same": 2, "as": 2, "bash...": 2, @@ -61435,7 +61519,6 @@ "shorter": 2, "D": 2, "rehash": 2, - "source": 7, "/.bashrc": 3, "after": 2, "I": 2, @@ -61453,71 +61536,44 @@ "ping": 2, "histappend": 2, "PROMPT_COMMAND": 2, - "umask": 2, - "path": 13, - "/opt/local/bin": 2, - "/opt/local/sbin": 2, - "/bin": 4, - "prompt": 2, - "history": 18, - "endif": 2, - "stty": 2, - "istrip": 2, - "dirpersiststore": 2, - "##############################################################################": 16, - "#Import": 2, - "the": 17, - "agnostic": 2, - "Bash": 3, - "or": 3, - "Zsh": 2, - "environment": 2, - "config": 4, - "/.profile": 2, - "HISTSIZE": 2, - "#How": 2, - "many": 2, - "lines": 2, - "of": 6, - "keep": 3, - "memory": 3, - "HISTFILE": 2, - "/.zsh_history": 2, - "#Where": 2, - "save": 4, - "disk": 5, - "SAVEHIST": 2, - "#Number": 2, - "entries": 2, - "HISTDUP": 2, - "erase": 2, - "#Erase": 2, - "duplicates": 2, - "file": 9, - "appendhistory": 2, - "#Append": 2, - "overwriting": 2, - "sharehistory": 2, - "#Share": 2, - "across": 2, - "terminals": 2, - "incappendhistory": 2, - "#Immediately": 2, - "append": 2, - "not": 2, - "just": 2, - "when": 2, - "term": 2, - "killed": 2, - "#.": 2, - "/.dotfiles/z": 4, - "zsh/z.sh": 2, - "#function": 2, - "precmd": 2, - "rupa/z.sh": 2, - "fpath": 6, - "HOME/.zsh/func": 2, - "U": 2, + "pkgname": 1, + "stud": 4, + "git": 16, + "pkgver": 1, + "pkgrel": 1, + "pkgdesc": 1, + "arch": 1, + "i686": 1, + "x86_64": 1, + "url": 4, + "license": 1, + "depends": 1, + "libev": 1, + "openssl": 1, + "makedepends": 1, + "provides": 1, + "conflicts": 1, + "_gitroot": 1, + "https": 2, + "//github.com/bumptech/stud.git": 1, + "_gitname": 1, + "build": 2, + "msg": 4, + "pull": 3, + "origin": 1, + "else": 10, + "clone": 5, + "rm": 2, + "rf": 1, + "package": 1, + "PREFIX": 1, + "/usr": 1, + "DESTDIR": 1, + "install": 8, + "Dm755": 1, + "init.stud": 1, + "mkdir": 2, + "p": 2, "docker": 1, "version": 12, "from": 1, @@ -61529,10 +61585,7 @@ "run": 13, "apt": 6, "get": 6, - "install": 8, "y": 5, - "git": 16, - "https": 2, "//go.googlecode.com/files/go1.1.1.linux": 1, "amd64.tar.gz": 1, "tar": 1, @@ -61549,11 +61602,11 @@ "t.go": 1, "go": 2, "test": 1, + "i": 2, "PKG": 12, "github.com/kr/pty": 1, "REV": 6, "c699": 1, - "clone": 5, "http": 3, "//": 3, "/go/src/": 6, @@ -61574,40 +61627,10 @@ "ldflags": 1, "/go/bin": 1, "cmd": 1, - "pkgname": 1, - "stud": 4, - "pkgver": 1, - "pkgrel": 1, - "pkgdesc": 1, - "arch": 1, - "i686": 1, - "x86_64": 1, - "url": 4, - "license": 1, - "depends": 1, - "libev": 1, - "openssl": 1, - "makedepends": 1, - "provides": 1, - "conflicts": 1, - "_gitroot": 1, - "//github.com/bumptech/stud.git": 1, - "_gitname": 1, - "build": 2, - "msg": 4, - "pull": 3, - "origin": 1, - "else": 10, - "rm": 2, - "rf": 1, - "package": 1, - "PREFIX": 1, - "/usr": 1, - "DESTDIR": 1, - "Dm755": 1, - "init.stud": 1, - "mkdir": 2, - "p": 2, + "stty": 2, + "istrip": 2, + "SHEBANG#!zsh": 2, + "SHEBANG#!bash": 8, "script": 1, "dotfile": 1, "repository": 3, @@ -61643,6 +61666,7 @@ "makes": 1, "pattern": 1, "matching": 1, + "case": 9, "insensitive": 1, "POSTFIX": 1, "URL": 1, @@ -61651,12 +61675,16 @@ "true": 2, "print_help": 2, "e": 4, + "exit": 10, "opt": 3, "@": 3, + "do": 8, "k": 1, "local": 22, "false": 2, "h": 3, + "esac": 7, + "done": 8, ".*": 2, "o": 3, "continue": 1, @@ -61666,15 +61694,6 @@ "remote.origin.pushurl": 1, "crontab": 1, ".jobs.cron": 1, - "x": 1, - "system": 1, - "exec": 3, - "rbenv": 2, - "versions": 1, - "bare": 1, - "&": 5, - "prefix": 1, - "/dev/null": 6, "rvm_ignore_rvmrc": 1, "declare": 22, "rvmrc": 3, @@ -61682,6 +61701,8 @@ "ef": 1, "+": 1, "GREP_OPTIONS": 1, + "/dev/null": 6, + "&": 5, "printf": 4, "rvm_path": 4, "UID": 1, @@ -61759,8 +61780,10 @@ "build_props_scala": 1, "build.scala.versions": 1, "versionLine##build.scala.versions": 1, + "%": 5, "execRunner": 2, "arg": 3, + "exec": 3, "sbt_groupid": 3, "*": 11, "org.scala": 4, @@ -61878,6 +61901,7 @@ "get_jvm_opts": 2, "process_args": 2, "require_arg": 12, + "while": 3, "gt": 1, "shift": 28, "integer": 1, @@ -61926,11 +61950,16 @@ "understand": 1, "iflast": 1, "#residual_args": 1, - "SHEBANG#!sh": 2, - "SHEBANG#!zsh": 2, "name": 1, "foodforthought.jpg": 1, - "name##*fo": 1 + "name##*fo": 1, + "x": 1, + "system": 1, + "rbenv": 2, + "versions": 1, + "bare": 1, + "prefix": 1, + "bottles": 6 }, "ShellSession": { "echo": 2, @@ -62078,10 +62107,72 @@ "RDoc": 1 }, "Shen": { + "(": 267, + "load": 1, + ")": 250, "*": 47, - "graph.shen": 1, - "-": 747, + "JSON": 1, + "Lexer": 1, + "Read": 1, "a": 30, + "stream": 1, + "of": 20, + "characters": 4, + "Whitespace": 4, + "not": 1, + "in": 13, + "strings": 2, + "should": 2, + "be": 2, + "discarded.": 1, + "preserved": 1, + "Strings": 1, + "can": 1, + "contain": 2, + "escaped": 1, + "double": 1, + "quotes.": 1, + "e.g.": 2, + "define": 34, + "whitespacep": 2, + "ASCII": 2, + "#": 4, + "Space.": 1, + "All": 1, + "the": 29, + "others": 1, + "are": 7, + "whitespace": 7, + "from": 3, + "an": 3, + "table.": 1, + "Char": 4, + "-": 747, + "member": 1, + "[": 93, + "]": 91, + "replace": 3, + "@s": 4, + "Suffix": 4, + "where": 2, + "Prefix": 2, + "fetch": 1, + "until": 1, + "unescaped": 1, + "doublequote": 1, + "c#34": 5, + ";": 12, + "|": 103, + "WhitespaceChar": 2, + "Chars": 4, + "strip": 2, + "chars": 2, + "tokenise": 1, + "JSONString": 2, + "let": 9, + "CharList": 2, + "explode": 1, + "graph.shen": 1, "library": 3, "for": 12, "graph": 52, @@ -62089,16 +62180,13 @@ "and": 16, "manipulation": 1, "Copyright": 2, - "(": 267, "C": 6, - ")": 250, "Eric": 2, "Schulte": 2, "***": 5, "License": 2, "Redistribution": 2, "use": 2, - "in": 13, "source": 4, "binary": 4, "forms": 2, @@ -62106,16 +62194,13 @@ "or": 2, "without": 2, "modification": 2, - "are": 7, "permitted": 2, "provided": 4, "that": 3, - "the": 29, "following": 6, "conditions": 6, "met": 2, "Redistributions": 4, - "of": 20, "code": 2, "must": 4, "retain": 2, @@ -62180,7 +62265,6 @@ "SUBSTITUTE": 2, "GOODS": 2, "SERVICES": 2, - ";": 12, "LOSS": 2, "USE": 4, "DATA": 2, @@ -62241,7 +62325,6 @@ "each": 1, "edge": 32, "may": 1, - "contain": 2, "any": 1, "number": 12, ".": 1, @@ -62259,14 +62342,11 @@ "+": 33, "Graph": 65, "hash": 8, - "|": 103, "key": 9, "value": 17, "b": 13, "c": 11, "g": 19, - "[": 93, - "]": 91, "d": 12, "e": 14, "f": 10, @@ -62278,7 +62358,6 @@ "edge/vertex": 1, "@p": 17, "V": 48, - "#": 4, "E": 20, "edges": 17, "M": 4, @@ -62314,7 +62393,6 @@ "partition": 7, "bipartite": 3, "included": 2, - "from": 3, "take": 2, "drop": 2, "while": 2, @@ -62342,7 +62420,6 @@ "keys": 3, "vals": 1, "make": 10, - "define": 34, "X": 4, "<-address>": 5, "0": 1, @@ -62352,7 +62429,6 @@ "}": 22, "Vertsize": 2, "Edgesize": 2, - "let": 9, "absvector": 1, "do": 8, "address": 5, @@ -62391,7 +62467,6 @@ "w/o": 5, "D": 4, "update": 5, - "an": 3, "s": 1, "Vs": 4, "Store": 6, @@ -62463,53 +62538,7 @@ "todo1": 1, "today": 1, "attributes": 1, - "AS": 1, - "load": 1, - "JSON": 1, - "Lexer": 1, - "Read": 1, - "stream": 1, - "characters": 4, - "Whitespace": 4, - "not": 1, - "strings": 2, - "should": 2, - "be": 2, - "discarded.": 1, - "preserved": 1, - "Strings": 1, - "can": 1, - "escaped": 1, - "double": 1, - "quotes.": 1, - "e.g.": 2, - "whitespacep": 2, - "ASCII": 2, - "Space.": 1, - "All": 1, - "others": 1, - "whitespace": 7, - "table.": 1, - "Char": 4, - "member": 1, - "replace": 3, - "@s": 4, - "Suffix": 4, - "where": 2, - "Prefix": 2, - "fetch": 1, - "until": 1, - "unescaped": 1, - "doublequote": 1, - "c#34": 5, - "WhitespaceChar": 2, - "Chars": 4, - "strip": 2, - "chars": 2, - "tokenise": 1, - "JSONString": 2, - "CharList": 2, - "explode": 1 + "AS": 1 }, "Slash": { "<%>": 1, @@ -62650,8 +62679,65 @@ "}": 2 }, "Smalltalk": { - "Object": 1, + "Koan": 1, "subclass": 2, + "TestBasic": 1, + "[": 18, + "": 1, + "A": 1, + "collection": 1, + "of": 1, + "introductory": 1, + "tests": 2, + "testDeclarationAndAssignment": 1, + "|": 18, + "declaration": 2, + "anotherDeclaration": 2, + "_": 1, + ".": 16, + "self": 25, + "expect": 10, + "fillMeIn": 10, + "toEqual": 10, + "declaration.": 1, + "anotherDeclaration.": 1, + "]": 18, + "testEqualSignIsNotAnAssignmentOperator": 1, + "variableA": 6, + "variableB": 5, + "value": 2, + "variableB.": 2, + "(": 19, + ")": 19, + "testMultipleStatementsInASingleLine": 1, + "variableC": 2, + "variableA.": 1, + "variableC.": 1, + "testInequality": 1, + "testLogicalOr": 1, + "expression": 4, + "<": 2, + "expression.": 2, + "testLogicalAnd": 1, + "&": 1, + "testNot": 1, + "true": 2, + "not.": 1, + "testSimpleChainMatches": 1, + "e": 11, + "eCtrl": 3, + "eventKey": 3, + "e.": 1, + "ctrl": 5, + "true.": 1, + "assert": 2, + "matches": 4, + "{": 4, + "}": 4, + "eCtrl.": 2, + "deny": 2, + "a": 1, + "Object": 1, "#Philosophers": 1, "instanceVariableNames": 1, "classVariableNames": 1, @@ -62661,26 +62747,19 @@ "class": 1, "methodsFor": 2, "new": 4, - "self": 25, "shouldNotImplement": 1, "quantity": 2, "super": 1, "initialize": 3, "dine": 4, "seconds": 2, - "(": 19, "Delay": 3, "forSeconds": 1, - ")": 19, "wait.": 5, "philosophers": 2, "do": 1, - "[": 18, "each": 5, - "|": 18, "terminate": 1, - "]": 18, - ".": 16, "size": 4, "leftFork": 6, "n": 11, @@ -62706,7 +62785,6 @@ "status": 8, "n.": 2, "printString": 1, - "true": 2, "whileTrue": 1, "Transcript": 5, "nextPutAll": 5, @@ -62723,56 +62801,7 @@ "userBackgroundPriority": 1, "name": 1, "resume": 1, - "yourself": 1, - "Koan": 1, - "TestBasic": 1, - "": 1, - "A": 1, - "collection": 1, - "of": 1, - "introductory": 1, - "tests": 2, - "testDeclarationAndAssignment": 1, - "declaration": 2, - "anotherDeclaration": 2, - "_": 1, - "expect": 10, - "fillMeIn": 10, - "toEqual": 10, - "declaration.": 1, - "anotherDeclaration.": 1, - "testEqualSignIsNotAnAssignmentOperator": 1, - "variableA": 6, - "variableB": 5, - "value": 2, - "variableB.": 2, - "testMultipleStatementsInASingleLine": 1, - "variableC": 2, - "variableA.": 1, - "variableC.": 1, - "testInequality": 1, - "testLogicalOr": 1, - "expression": 4, - "<": 2, - "expression.": 2, - "testLogicalAnd": 1, - "&": 1, - "testNot": 1, - "not.": 1, - "testSimpleChainMatches": 1, - "e": 11, - "eCtrl": 3, - "eventKey": 3, - "e.": 1, - "ctrl": 5, - "true.": 1, - "assert": 2, - "matches": 4, - "{": 4, - "}": 4, - "eCtrl.": 2, - "deny": 2, - "a": 1 + "yourself": 1 }, "SourcePawn": { "//#define": 1, @@ -63216,22 +63245,78 @@ "Lazy": 2, "LazyFn": 4, "LazyMemo": 2, - "signature": 2, - "sig": 2, - "LAZY": 1, - "bool": 9, - "string": 14, - "*": 9, - "order": 2, - "b": 58, "functor": 2, + "RedBlackTree": 1, + "key": 16, + "*": 9, + "entry": 12, + "dict": 17, + "Empty": 15, + "Red": 41, + "ref": 45, + "local": 1, + "lookup": 4, + "lk": 4, + "NONE": 47, + "tree": 4, + "and": 2, + "zipper": 3, + "TOP": 5, + "LEFTB": 10, + "RIGHTB": 10, + "in": 40, + "delete": 3, + "t": 23, + "zip": 19, + "b": 58, + "z": 73, + "Black": 40, + "LEFTR": 8, + "RIGHTR": 9, + "bbZip": 28, + "c": 42, + "d": 32, + "w": 17, + "e": 18, + "delMin": 8, + "_": 83, + "Match": 1, + "joinRed": 3, + "needB": 2, + "#2": 2, + "del": 8, + "NotFound": 2, + "entry1": 16, + "as": 7, + "key1": 8, + "datum1": 4, + "case": 83, + "EQUAL": 5, + "joinBlack": 1, + "LESS": 5, + "GREATER": 5, + "insertShadow": 3, + "datum": 1, + "oldEntry": 7, + "ins": 8, + "left": 10, + "right": 10, + "SOME": 68, + "restore_left": 1, + "restore_right": 1, + "app": 3, + "ap": 7, + "new": 1, + "n": 4, + "insert": 2, + "table": 14, + "clear": 1, "Main": 1, "S": 2, "MAIN_STRUCTS": 1, "MAIN": 1, "Compile": 3, "Place": 1, - "t": 23, "Files": 3, "Generated": 4, "MLB": 4, @@ -63243,12 +63328,12 @@ "int": 1, "OptPred": 1, "Target": 1, + "string": 14, "Yes": 1, "Show": 1, "Anns": 1, "PathMap": 1, "gcc": 5, - "ref": 45, "arScript": 3, "asOpts": 6, "{": 79, @@ -63262,6 +63347,7 @@ "ccOpts": 6, "linkOpts": 6, "buildConstants": 2, + "bool": 9, "debugRuntime": 3, "debugFormat": 5, "Dwarf": 3, @@ -63270,7 +63356,6 @@ "Stabs": 3, "StabsPlus": 3, "option": 6, - "NONE": 47, "expert": 3, "explicitAlign": 3, "Control.align": 1, @@ -63293,13 +63378,10 @@ "parseMlbPathVar": 3, "line": 9, "String.t": 1, - "case": 83, "String.tokens": 7, "Char.isSpace": 8, "var": 3, "path": 7, - "SOME": 68, - "_": 83, "readMlbPathMap": 2, "file": 14, "File.t": 12, @@ -63333,7 +63415,6 @@ "List.first": 2, "MLton.Platform.OS.fromString": 1, "MLton.Platform.Arch.fromString": 1, - "in": 40, "setTargetType": 3, "usage": 48, "List.peek": 7, @@ -63343,7 +63424,6 @@ "Target.os": 2, "hasCodegen": 8, "cg": 21, - "z": 73, "Control.Target.arch": 4, "Control.Target.os": 2, "Control.Format.t": 1, @@ -63371,7 +63451,6 @@ "Fail": 2, "reportAnnotation": 4, "flag": 12, - "e": 18, "Control.Elaborate.Bad": 1, "Control.Elaborate.Deprecated": 1, "ids": 2, @@ -63404,7 +63483,6 @@ "String.dropPrefix": 1, "Char.isDigit": 3, "Int.fromString": 4, - "n": 4, "Coalesce": 1, "limit": 1, "Bool": 10, @@ -63531,7 +63609,6 @@ "OptPred.Target": 6, "#1": 1, "trace": 4, - "#2": 2, "typeCheck": 1, "verbosity": 4, "Silent": 3, @@ -63583,7 +63660,6 @@ "ty": 4, "Bytes.toBits": 1, "Bytes.fromInt": 1, - "lookup": 4, "use": 2, "on": 1, "must": 1, @@ -63613,10 +63689,7 @@ "File.withIn": 1, "csoFiles": 1, "Place.compare": 1, - "GREATER": 5, "Place.toString": 2, - "EQUAL": 5, - "LESS": 5, "printVersion": 1, "tempFiles": 3, "tmpDir": 2, @@ -63624,7 +63697,6 @@ "default": 2, "MLton.Platform.OS.host": 2, "Process.getEnv": 1, - "d": 32, "temp": 3, "out": 9, "File.temp": 1, @@ -63640,7 +63712,6 @@ "OS.Path.splitDirFile": 1, "String.extract": 1, "toAlNum": 2, - "c": 42, "Char.isAlphaNum": 1, "#": 3, "CharVector.map": 1, @@ -63708,62 +63779,15 @@ "mainWrapped": 1, "OS.Process.exit": 1, "CommandLine.arguments": 1, - "RedBlackTree": 1, - "key": 16, - "entry": 12, - "dict": 17, - "Empty": 15, - "Red": 41, - "local": 1, - "lk": 4, - "tree": 4, - "and": 2, - "zipper": 3, - "TOP": 5, - "LEFTB": 10, - "RIGHTB": 10, - "delete": 3, - "zip": 19, - "Black": 40, - "LEFTR": 8, - "RIGHTR": 9, - "bbZip": 28, - "w": 17, - "delMin": 8, - "Match": 1, - "joinRed": 3, - "needB": 2, - "del": 8, - "NotFound": 2, - "entry1": 16, - "as": 7, - "key1": 8, - "datum1": 4, - "joinBlack": 1, - "insertShadow": 3, - "datum": 1, - "oldEntry": 7, - "ins": 8, - "left": 10, - "right": 10, - "restore_left": 1, - "restore_right": 1, - "app": 3, - "ap": 7, - "new": 1, - "insert": 2, - "table": 14, - "clear": 1 + "signature": 2, + "sig": 2, + "LAZY": 1, + "order": 2 }, "Stata": { "local": 6, "inname": 1, "outname": 1, - "program": 2, - "hello": 1, - "vers": 1, - "display": 1, - "end": 4, "{": 441, "*": 25, "version": 2, @@ -63774,6 +63798,24 @@ "world": 1, "p_end": 47, "MAXDIM": 1, + "program": 2, + "hello": 1, + "vers": 1, + "display": 1, + "end": 4, + "numeric": 4, + "matrix": 3, + "tanh": 1, + "(": 60, + "u": 3, + ")": 61, + "eu": 4, + "emu": 4, + "exp": 2, + "-": 42, + "return": 1, + "/": 1, + "+": 2, "smcl": 1, "Matthew": 2, "White": 2, @@ -63787,7 +63829,6 @@ "Create": 4, "a": 30, "do": 22, - "-": 42, "file": 18, "to": 23, "import": 9, @@ -63803,9 +63844,7 @@ "filename": 3, "opt": 25, "csv": 9, - "(": 60, "csvfile": 3, - ")": 61, "Using": 7, "histogram": 2, "as": 29, @@ -63840,7 +63879,6 @@ "in": 24, "first": 2, "column": 18, - "+": 2, "synoptset": 5, "tabbed": 4, "synopthdr": 4, @@ -63997,7 +64035,6 @@ "such": 2, "simserial": 1, "will": 9, - "numeric": 4, "even": 1, "if": 10, "they": 2, @@ -64290,15 +64327,7 @@ "noconstant": 1, "Model": 1, "bn.foreign": 1, - "hascons": 1, - "matrix": 3, - "tanh": 1, - "u": 3, - "eu": 4, - "emu": 4, - "exp": 2, - "return": 1, - "/": 1 + "hascons": 1 }, "Stylus": { "border": 6, @@ -64395,81 +64424,133 @@ "oranges": 1, "appleSummary": 1, "fruitSummary": 1, + "func": 24, + "sumOf": 3, + "(": 89, + "numbers": 6, + "Int...": 1, + ")": 89, + "-": 21, + "Int": 19, + "{": 77, "var": 42, - "shoppingList": 3, + "sum": 3, + "for": 10, + "number": 13, + "in": 11, + "+": 15, + "}": 77, + "return": 30, + "myVariable": 2, + "myConstant": 1, + "interestingNumbers": 2, "[": 18, "]": 18, - "occupations": 2, + "largest": 4, + "kind": 1, + "if": 6, "emptyArray": 1, "String": 27, - "(": 89, - ")": 89, "emptyDictionary": 1, "Dictionary": 1, "": 1, "Float": 1, - "//": 1, - "Went": 1, - "shopping": 1, - "and": 1, - "bought": 1, - "everything.": 1, - "individualScores": 2, - "teamScore": 4, - "for": 10, - "score": 2, - "in": 11, - "{": 77, - "if": 6, - "+": 15, - "}": 77, - "else": 1, + "optionalSquare": 2, + "Square": 7, + "sideLength": 17, + "name": 21, + ".sideLength": 1, + "class": 7, + "Counter": 2, + "count": 2, + "incrementBy": 1, + "amount": 2, + "numberOfTimes": 2, + "times": 4, + "*": 7, + "counter": 1, + "counter.incrementBy": 1, + "numbers.map": 2, + "shape": 1, + "Shape": 2, + "shape.numberOfSides": 1, + "shapeDescription": 1, + "shape.simpleDescription": 1, + "extension": 1, + "ExampleProtocol": 5, + "simpleDescription": 14, + "mutating": 3, + "adjust": 4, + "self": 3, + "protocol": 1, + "get": 2, + "enum": 4, + "OptionalValue": 2, + "": 1, + "case": 21, + "None": 1, + "Some": 1, + "T": 5, + "possibleInteger": 2, + "": 1, + ".None": 1, + ".Some": 1, + "label": 2, + "width": 2, + "widthLabel": 1, + "n": 5, + "while": 2, + "<": 4, + "m": 5, + "do": 1, + "SimpleClass": 2, + "anotherProperty": 1, + "a": 2, + "a.adjust": 1, + "aDescription": 1, + "a.simpleDescription": 1, + "struct": 2, + "SimpleStructure": 2, + "b": 1, + "b.adjust": 1, + "bDescription": 1, + "b.simpleDescription": 1, + "NamedShape": 3, + "numberOfSides": 4, + "init": 4, + "self.name": 1, "optionalString": 2, "nil": 1, "optionalName": 2, "greeting": 2, - "name": 21, - "vegetable": 2, + "implicitInteger": 1, + "implicitDouble": 1, + "explicitDouble": 1, + "Double": 11, + "ServerResponse": 1, + "Result": 1, + "Error": 1, + "success": 2, + "ServerResponse.Result": 1, + "failure": 1, + "ServerResponse.Error": 1, "switch": 4, - "case": 21, + ".Result": 1, + "sunrise": 1, + "sunset": 1, + "serverResponse": 2, + ".Error": 1, + "error": 1, + "vegetable": 2, "vegetableComment": 4, "x": 1, "where": 2, "x.hasSuffix": 1, "default": 2, - "interestingNumbers": 2, - "largest": 4, - "kind": 1, - "numbers": 6, - "number": 13, - "n": 5, - "while": 2, - "<": 4, - "*": 7, - "m": 5, - "do": 1, - "firstForLoop": 3, - "i": 6, - "secondForLoop": 3, - ";": 2, "println": 1, - "func": 24, - "greet": 2, - "day": 1, - "-": 21, - "return": 30, - "getGasPrices": 2, - "Double": 11, - "sumOf": 3, - "Int...": 1, - "Int": 19, - "sum": 3, "returnFifteen": 2, "y": 3, "add": 2, - "makeIncrementer": 2, - "addOne": 2, - "increment": 2, "hasAnyMatches": 2, "list": 2, "condition": 2, @@ -64478,62 +64559,33 @@ "true": 2, "false": 2, "lessThanTen": 2, - "numbers.map": 2, - "result": 5, - "sort": 1, - "class": 7, - "Shape": 2, - "numberOfSides": 4, - "simpleDescription": 14, - "myVariable": 2, - "myConstant": 1, - "shape": 1, - "shape.numberOfSides": 1, - "shapeDescription": 1, - "shape.simpleDescription": 1, - "NamedShape": 3, - "init": 4, - "self.name": 1, - "Square": 7, - "sideLength": 17, - "self.sideLength": 2, - "super.init": 2, - "area": 1, - "override": 2, - "test": 1, - "test.area": 1, - "test.simpleDescription": 1, - "EquilateralTriangle": 4, - "perimeter": 1, - "get": 2, - "set": 1, - "newValue": 1, - "/": 1, - "triangle": 3, - "triangle.perimeter": 2, - "triangle.sideLength": 2, + "convertedRank": 1, + "Rank.fromRaw": 1, + "threeDescription": 1, + "convertedRank.simpleDescription": 1, "TriangleAndSquare": 2, + "triangle": 3, + "EquilateralTriangle": 4, "willSet": 2, "square.sideLength": 1, "newValue.sideLength": 2, "square": 2, + "triangle.sideLength": 2, "size": 4, "triangleAndSquare": 1, "triangleAndSquare.square.sideLength": 1, "triangleAndSquare.triangle.sideLength": 2, "triangleAndSquare.square": 1, - "Counter": 2, - "count": 2, - "incrementBy": 1, - "amount": 2, - "numberOfTimes": 2, - "times": 4, - "counter": 1, - "counter.incrementBy": 1, - "optionalSquare": 2, - ".sideLength": 1, - "enum": 4, + "Card": 2, + "rank": 2, "Rank": 2, + "suit": 2, + "Suit": 2, + "threeOfSpades": 1, + ".Three": 1, + ".Spades": 2, + "threeOfSpadesDescription": 1, + "threeOfSpades.simpleDescription": 1, "Ace": 1, "Two": 1, "Three": 1, @@ -64547,7 +64599,6 @@ "Jack": 1, "Queen": 1, "King": 1, - "self": 3, ".Ace": 1, ".Jack": 1, ".Queen": 1, @@ -64557,77 +64608,17 @@ "Rank.Ace": 1, "aceRawValue": 1, "ace.toRaw": 1, - "convertedRank": 1, - "Rank.fromRaw": 1, - "threeDescription": 1, - "convertedRank.simpleDescription": 1, - "Suit": 2, - "Spades": 1, - "Hearts": 1, - "Diamonds": 1, - "Clubs": 1, - ".Spades": 2, - ".Hearts": 1, - ".Diamonds": 1, - ".Clubs": 1, - "hearts": 1, - "Suit.Hearts": 1, - "heartsDescription": 1, - "hearts.simpleDescription": 1, - "implicitInteger": 1, - "implicitDouble": 1, - "explicitDouble": 1, - "struct": 2, - "Card": 2, - "rank": 2, - "suit": 2, - "threeOfSpades": 1, - ".Three": 1, - "threeOfSpadesDescription": 1, - "threeOfSpades.simpleDescription": 1, - "ServerResponse": 1, - "Result": 1, - "Error": 1, - "success": 2, - "ServerResponse.Result": 1, - "failure": 1, - "ServerResponse.Error": 1, - ".Result": 1, - "sunrise": 1, - "sunset": 1, - "serverResponse": 2, - ".Error": 1, - "error": 1, - "protocol": 1, - "ExampleProtocol": 5, - "mutating": 3, - "adjust": 4, - "SimpleClass": 2, - "anotherProperty": 1, - "a": 2, - "a.adjust": 1, - "aDescription": 1, - "a.simpleDescription": 1, - "SimpleStructure": 2, - "b": 1, - "b.adjust": 1, - "bDescription": 1, - "b.simpleDescription": 1, - "extension": 1, - "protocolValue": 1, - "protocolValue.simpleDescription": 1, + "individualScores": 2, + "teamScore": 4, + "score": 2, + "else": 1, "repeat": 2, "": 1, "ItemType": 3, - "OptionalValue": 2, - "": 1, - "None": 1, - "Some": 1, - "T": 5, - "possibleInteger": 2, - "": 1, - ".None": 1, - ".Some": 1, + "result": 5, + "i": 6, + "protocolValue": 1, + "protocolValue.simpleDescription": 1, "anyCommonElements": 2, "": 1, "U": 4, @@ -64639,15 +64630,74 @@ "rhs": 2, "lhsItem": 2, "rhsItem": 2, - "label": 2, - "width": 2, - "widthLabel": 1 + "makeIncrementer": 2, + "addOne": 2, + "increment": 2, + "self.sideLength": 2, + "super.init": 2, + "area": 1, + "override": 2, + "test": 1, + "test.area": 1, + "test.simpleDescription": 1, + "Spades": 1, + "Hearts": 1, + "Diamonds": 1, + "Clubs": 1, + ".Hearts": 1, + ".Diamonds": 1, + ".Clubs": 1, + "hearts": 1, + "Suit.Hearts": 1, + "heartsDescription": 1, + "hearts.simpleDescription": 1, + "shoppingList": 3, + "//": 1, + "Went": 1, + "shopping": 1, + "and": 1, + "bought": 1, + "everything.": 1, + "occupations": 2, + "getGasPrices": 2, + "perimeter": 1, + "set": 1, + "newValue": 1, + "/": 1, + "triangle.perimeter": 2, + "greet": 2, + "day": 1, + "firstForLoop": 3, + "secondForLoop": 3, + ";": 2, + "sort": 1 }, "SystemVerilog": { "module": 3, - "endpoint_phy_wrapper": 2, + "fifo": 1, "(": 92, "input": 12, + "clk_50": 1, + "clk_2": 1, + "reset_n": 1, + "output": 6, + "[": 17, + "]": 17, + "data_out": 1, + "empty": 1, + ")": 92, + ";": 32, + "function": 1, + "integer": 2, + "log2": 4, + "x": 6, + "begin": 4, + "-": 4, + "for": 2, + "+": 3, + "end": 4, + "endfunction": 1, + "endpoint_phy_wrapper": 2, "clk_sys_i": 2, "clk_ref_i": 6, "clk_rx_i": 3, @@ -64657,17 +64707,12 @@ "IWishboneSlave.slave": 1, "snk": 1, "sys": 1, - "output": 6, - "[": 17, - "]": 17, "td_o": 2, "rd_i": 2, "txn_o": 2, "txp_o": 2, "rxn_i": 2, "rxp_i": 2, - ")": 92, - ";": 32, "wire": 12, "rx_clock": 3, "parameter": 2, @@ -64685,7 +64730,6 @@ "tx_clock": 3, "generate": 1, "if": 5, - "begin": 4, "assign": 2, "wr_tbi_phy": 1, "U_Phy": 1, @@ -64710,7 +64754,6 @@ ".tbi_loopen_o": 1, ".tbi_prbsen_o": 1, ".tbi_enable_o": 1, - "end": 4, "else": 2, "//": 3, "wr_gtx_phy_virtex6": 1, @@ -64791,30 +64834,16 @@ ".wb_ack_o": 1, "sys.ack": 1, "endmodule": 2, - "fifo": 1, - "clk_50": 1, - "clk_2": 1, - "reset_n": 1, - "data_out": 1, - "empty": 1, "priority_encoder": 1, "INPUT_WIDTH": 3, "OUTPUT_WIDTH": 3, "logic": 2, - "-": 4, "input_data": 2, "output_data": 3, "int": 1, "ii": 6, "always_comb": 1, - "for": 2, - "<": 1, - "+": 3, - "function": 1, - "integer": 2, - "log2": 4, - "x": 6, - "endfunction": 1 + "<": 1 }, "TXL": { "define": 12, @@ -65592,21 +65621,22 @@ "when": 1 }, "TypeScript": { + "console.log": 1, + "(": 18, + ")": 18, + ";": 8, "class": 3, "Animal": 4, "{": 9, "constructor": 3, - "(": 18, "public": 1, "name": 5, - ")": 18, "}": 9, "move": 3, "meters": 2, "alert": 3, "this.name": 1, "+": 3, - ";": 8, "Snake": 2, "extends": 2, "super": 2, @@ -65617,23 +65647,33 @@ "new": 2, "tom": 1, "sam.move": 1, - "tom.move": 1, - "console.log": 1 + "tom.move": 1 }, "UnrealScript": { + "class": 18, + "US3HelloWorld": 1, + "extends": 2, + "GameInfo": 1, + ";": 295, + "event": 3, + "InitGame": 1, + "(": 189, + "string": 25, + "Options": 1, + "out": 2, + "Error": 1, + ")": 189, + "{": 28, + "log": 1, + "}": 27, + "defaultproperties": 1, "//": 5, "-": 220, - "class": 18, "MutU2Weapons": 1, - "extends": 2, "Mutator": 1, "config": 18, - "(": 189, "U2Weapons": 1, - ")": 189, - ";": 295, "var": 30, - "string": 25, "ReplacedWeaponClassNames0": 1, "ReplacedWeaponClassNames1": 1, "ReplacedWeaponClassNames2": 1, @@ -65701,7 +65741,6 @@ "FlashbangModeString": 1, "struct": 1, "WeaponInfo": 2, - "{": 28, "ReplacedWeaponClass": 1, "Generated": 4, "from": 6, @@ -65756,7 +65795,6 @@ "gametypes.": 2, "Think": 1, "shotgun.": 1, - "}": 27, "Weapons": 31, "function": 5, "PostBeginPlay": 1, @@ -65813,7 +65851,6 @@ "CheckReplacement": 1, "Actor": 1, "Other": 23, - "out": 2, "bSuperRelevant": 3, "i": 12, "WeaponLocker": 3, @@ -65868,7 +65905,6 @@ "PlayInfo.AddSetting": 33, "default.RulesGroup": 33, "default.U2WeaponDisplayText": 33, - "event": 3, "GetDescriptionText": 1, "PropName": 35, "default.U2WeaponDescText": 33, @@ -66036,14 +66072,7 @@ "Fully": 1, "customisable": 1, "choose": 1, - "behaviour.": 1, - "US3HelloWorld": 1, - "GameInfo": 1, - "InitGame": 1, - "Options": 1, - "Error": 1, - "log": 1, - "defaultproperties": 1 + "behaviour.": 1 }, "VCL": { "sub": 23, @@ -66051,13 +66080,25 @@ "{": 50, "if": 14, "(": 50, - "req.request": 18, - "&&": 14, + "req.restarts": 1, ")": 50, - "return": 33, - "pipe": 4, + "req.http.x": 1, + "-": 21, + "forwarded": 1, + "for": 1, + "set": 10, + "req.http.X": 3, + "Forwarded": 3, + "For": 3, + "+": 17, + "client.ip": 2, ";": 48, "}": 50, + "else": 3, + "req.request": 18, + "&&": 14, + "return": 33, + "pipe": 4, "pass": 9, "req.http.Authorization": 2, "||": 4, @@ -66066,33 +66107,29 @@ "vcl_pipe": 2, "vcl_pass": 2, "vcl_hash": 2, - "set": 10, - "req.hash": 3, - "+": 17, + "hash_data": 3, "req.url": 2, "req.http.host": 4, - "else": 3, "server.ip": 2, "hash": 2, "vcl_hit": 2, - "obj.cacheable": 2, "deliver": 8, "vcl_miss": 2, "fetch": 3, "vcl_fetch": 2, - "obj.http.Set": 1, - "-": 21, - "Cookie": 2, - "obj.prefetch": 1, + "beresp.ttl": 2, + "<": 1, "s": 3, + "beresp.http.Set": 1, + "Cookie": 2, + "beresp.http.Vary": 1, + "hit_for_pass": 1, "vcl_deliver": 2, - "vcl_discard": 1, - "discard": 2, - "vcl_prefetch": 1, - "vcl_timeout": 1, "vcl_error": 2, "obj.http.Content": 2, "Type": 2, + "obj.http.Retry": 1, + "After": 1, "synthetic": 2, "utf": 2, "//W3C//DTD": 2, @@ -66104,27 +66141,19 @@ "obj.status": 4, "obj.response": 6, "req.xid": 2, - "//www.varnish": 1, - "cache.org/": 1, - "req.restarts": 1, - "req.http.x": 1, - "forwarded": 1, - "for": 1, - "req.http.X": 3, - "Forwarded": 3, - "For": 3, - "client.ip": 2, - "hash_data": 3, - "beresp.ttl": 2, - "<": 1, - "beresp.http.Set": 1, - "beresp.http.Vary": 1, - "hit_for_pass": 1, - "obj.http.Retry": 1, - "After": 1, "vcl_init": 1, "ok": 2, - "vcl_fini": 1 + "vcl_fini": 1, + "req.hash": 3, + "obj.cacheable": 2, + "obj.http.Set": 1, + "obj.prefetch": 1, + "vcl_discard": 1, + "discard": 2, + "vcl_prefetch": 1, + "vcl_timeout": 1, + "//www.varnish": 1, + "cache.org/": 1 }, "VHDL": { "-": 2, @@ -66211,257 +66240,6 @@ "endcase": 3, "default": 2, "endmodule": 18, - "control": 1, - "en": 13, - "dsp_sel": 9, - "an": 6, - "wire": 67, - "a": 5, - "b": 3, - "c": 3, - "d": 3, - "e": 3, - "f": 2, - "g": 2, - "h": 2, - "i": 62, - "j": 2, - "k": 2, - "l": 2, - "assign": 23, - "FDRSE": 6, - "#": 10, - ".INIT": 6, - "b0": 27, - "Synchronous": 12, - ".S": 6, - "b1": 19, - "Initial": 6, - "value": 6, - "of": 8, - "register": 6, - "DFF2": 1, - ".Q": 6, - "Data": 13, - ".C": 6, - "Clock": 14, - ".CE": 6, - "enable": 6, - ".D": 6, - ".R": 6, - "set": 6, - "DFF0": 1, - "DFF6": 1, - "DFF4": 1, - "DFF10": 1, - "DFF8": 1, - "hex_display": 1, - "num": 5, - "hex0": 2, - "hex1": 2, - "hex2": 2, - "hex3": 2, - "seg_7": 4, - "hex_group0": 1, - ".num": 4, - ".en": 4, - ".seg": 4, - "hex_group1": 1, - "hex_group2": 1, - "hex_group3": 1, - "mux": 1, - "opA": 4, - "opB": 3, - "sum": 5, - "out": 5, - "cout": 4, - "b0000": 1, - "b01": 1, - "b11": 1, - "pipeline_registers": 1, - "BIT_WIDTH": 5, - "pipe_in": 4, - "pipe_out": 5, - "NUMBER_OF_STAGES": 7, - "generate": 3, - "genvar": 3, - "*": 4, - "BIT_WIDTH*": 5, - "pipe_gen": 6, - "for": 4, - "+": 36, - "pipeline": 2, - "BIT_WIDTH*i": 2, - "endgenerate": 3, - "ps2_mouse": 1, - "Input": 2, - "Reset": 1, - "inout": 2, - "ps2_clk": 3, - "PS2": 2, - "Bidirectional": 2, - "ps2_dat": 3, - "the_command": 2, - "Command": 1, - "to": 3, - "send": 2, - "mouse": 1, - "send_command": 2, - "Signal": 2, - "command_was_sent": 2, - "command": 1, - "finished": 1, - "sending": 1, - "error_communication_timed_out": 3, - "received_data": 2, - "Received": 1, - "data": 4, - "received_data_en": 4, - "If": 1, - "new": 1, - "has": 1, - "been": 1, - "received": 1, - "start_receiving_data": 3, - "wait_for_incoming_data": 3, - "ps2_clk_posedge": 3, - "Internal": 2, - "Wires": 1, - "ps2_clk_negedge": 3, - "idle_counter": 4, - "Registers": 2, - "ps2_clk_reg": 4, - "ps2_data_reg": 5, - "last_ps2_clk": 4, - "ns_ps2_transceiver": 13, - "State": 1, - "Machine": 1, - "s_ps2_transceiver": 8, - "PS2_STATE_0_IDLE": 10, - "h1": 1, - "PS2_STATE_2_COMMAND_OUT": 2, - "h3": 1, - "PS2_STATE_4_END_DELAYED": 4, - "Defaults": 1, - "PS2_STATE_1_DATA_IN": 3, - "||": 1, - "PS2_STATE_3_END_TRANSFER": 3, - "h00": 1, - "&&": 3, - "h01": 1, - "ps2_mouse_cmdout": 1, - "mouse_cmdout": 1, - ".clk": 6, - "Inputs": 2, - ".reset": 2, - ".the_command": 1, - ".send_command": 1, - ".ps2_clk_posedge": 2, - ".ps2_clk_negedge": 2, - ".ps2_clk": 1, - "Bidirectionals": 1, - ".ps2_dat": 1, - ".command_was_sent": 1, - "Outputs": 2, - ".error_communication_timed_out": 1, - "ps2_mouse_datain": 1, - "mouse_datain": 1, - ".wait_for_incoming_data": 1, - ".start_receiving_data": 1, - ".ps2_data": 1, - ".received_data": 1, - ".received_data_en": 1, - "ns/1ps": 2, - "e0": 1, - "x": 41, - "y": 21, - "{": 11, - "}": 11, - "e1": 1, - "ch": 1, - "z": 7, - "o": 6, - "&": 6, - "maj": 1, - "|": 2, - "s0": 1, - "s1": 1, - "sign_extender": 1, - "INPUT_WIDTH": 5, - "OUTPUT_WIDTH": 4, - "original": 3, - "sign_extended_original": 2, - "sign_extend": 3, - "gen_sign_extend": 1, - "sqrt_pipelined": 3, - "start": 12, - "optional": 2, - "INPUT_BITS": 28, - "radicand": 12, - "unsigned": 2, - "data_valid": 7, - "valid": 2, - "OUTPUT_BITS": 14, - "root": 8, - "number": 2, - "bits": 2, - "any": 1, - "integer": 1, - "%": 3, - "start_gen": 7, - "propagation": 1, - "OUTPUT_BITS*INPUT_BITS": 9, - "root_gen": 15, - "values": 3, - "radicand_gen": 10, - "mask_gen": 9, - "mask": 3, - "mask_4": 1, - "is": 4, - "odd": 1, - "this": 2, - "INPUT_BITS*": 27, - "<<": 2, - "i/2": 2, - "even": 1, - "pipeline_stage": 1, - "INPUT_BITS*i": 5, - "t_button_debounce": 1, - ".CLK_FREQUENCY": 1, - ".DEBOUNCE_HZ": 1, - ".reset_n": 3, - ".button": 1, - ".debounce": 1, - "initial": 3, - "bx": 4, - "#10": 10, - "#5": 3, - "#100": 1, - "#0.1": 8, - "t_div_pipelined": 1, - "dividend": 3, - "divisor": 5, - "div_by_zero": 2, - "quotient": 2, - "quotient_correct": 1, - "BITS": 2, - "div_pipelined": 2, - ".BITS": 1, - ".dividend": 1, - ".divisor": 1, - ".quotient": 1, - ".div_by_zero": 1, - ".start": 2, - ".data_valid": 2, - "#50": 2, - "#1": 1, - "#1000": 1, - "finish": 2, - "t_sqrt_pipelined": 1, - ".INPUT_BITS": 1, - ".radicand": 1, - ".root": 1, - "#10000": 1, "vga": 1, "wb_clk_i": 6, "Mhz": 1, @@ -66488,6 +66266,7 @@ "csrm_dat_i": 2, "csr_adr_i": 3, "csr_stb_i": 2, + "wire": 67, "conf_wb_dat_o": 3, "conf_wb_ack_o": 3, "mem_wb_dat_o": 3, @@ -66555,6 +66334,7 @@ ".wb_we_i": 2, ".wb_sel_i": 2, ".wb_stb_i": 2, + "&": 6, ".wb_ack_o": 2, ".shift_reg1": 2, ".graphics_alpha": 2, @@ -66599,6 +66379,7 @@ ".vh_retrace": 2, "vga_lcd": 1, "lcd": 1, + ".clk": 6, ".rst": 1, ".csr_adr_o": 1, ".csr_dat_i": 1, @@ -66635,15 +66416,258 @@ ".csrm_sel_o": 1, ".csrm_we_o": 1, ".csrm_dat_o": 1, - ".csrm_dat_i": 1 + ".csrm_dat_i": 1, + "assign": 23, + "b0": 27, + "t_div_pipelined": 1, + "start": 12, + "dividend": 3, + "divisor": 5, + "data_valid": 7, + "div_by_zero": 2, + "quotient": 2, + "quotient_correct": 1, + "BITS": 2, + "div_pipelined": 2, + "#": 10, + ".BITS": 1, + ".reset_n": 3, + ".dividend": 1, + ".divisor": 1, + ".quotient": 1, + ".div_by_zero": 1, + ".start": 2, + ".data_valid": 2, + "initial": 3, + "#10": 10, + "#50": 2, + "#1": 1, + "#1000": 1, + "finish": 2, + "#5": 3, + "ps2_mouse": 1, + "Clock": 14, + "Input": 2, + "Reset": 1, + "inout": 2, + "ps2_clk": 3, + "PS2": 2, + "Bidirectional": 2, + "ps2_dat": 3, + "Data": 13, + "the_command": 2, + "Command": 1, + "to": 3, + "send": 2, + "mouse": 1, + "send_command": 2, + "Signal": 2, + "command_was_sent": 2, + "command": 1, + "finished": 1, + "sending": 1, + "error_communication_timed_out": 3, + "received_data": 2, + "Received": 1, + "data": 4, + "received_data_en": 4, + "If": 1, + "new": 1, + "has": 1, + "been": 1, + "received": 1, + "start_receiving_data": 3, + "wait_for_incoming_data": 3, + "ps2_clk_posedge": 3, + "Internal": 2, + "Wires": 1, + "ps2_clk_negedge": 3, + "idle_counter": 4, + "Registers": 2, + "ps2_clk_reg": 4, + "ps2_data_reg": 5, + "last_ps2_clk": 4, + "ns_ps2_transceiver": 13, + "State": 1, + "Machine": 1, + "s_ps2_transceiver": 8, + "PS2_STATE_0_IDLE": 10, + "h1": 1, + "PS2_STATE_2_COMMAND_OUT": 2, + "h3": 1, + "PS2_STATE_4_END_DELAYED": 4, + "b1": 19, + "Defaults": 1, + "PS2_STATE_1_DATA_IN": 3, + "||": 1, + "PS2_STATE_3_END_TRANSFER": 3, + "h00": 1, + "&&": 3, + "h01": 1, + "ps2_mouse_cmdout": 1, + "mouse_cmdout": 1, + "Inputs": 2, + ".reset": 2, + ".the_command": 1, + ".send_command": 1, + ".ps2_clk_posedge": 2, + ".ps2_clk_negedge": 2, + ".ps2_clk": 1, + "Bidirectionals": 1, + ".ps2_dat": 1, + ".command_was_sent": 1, + "Outputs": 2, + ".error_communication_timed_out": 1, + "ps2_mouse_datain": 1, + "mouse_datain": 1, + ".wait_for_incoming_data": 1, + ".start_receiving_data": 1, + ".ps2_data": 1, + ".received_data": 1, + ".received_data_en": 1, + "mux": 1, + "opA": 4, + "opB": 3, + "sum": 5, + "dsp_sel": 9, + "out": 5, + "cout": 4, + "b0000": 1, + "b01": 1, + "b11": 1, + "ns/1ps": 2, + "sign_extender": 1, + "INPUT_WIDTH": 5, + "OUTPUT_WIDTH": 4, + "original": 3, + "sign_extended_original": 2, + "sign_extend": 3, + "generate": 3, + "genvar": 3, + "i": 62, + "for": 4, + "+": 36, + "gen_sign_extend": 1, + "endgenerate": 3, + "*": 4, + "{": 11, + "}": 11, + "e0": 1, + "x": 41, + "y": 21, + "e1": 1, + "ch": 1, + "z": 7, + "o": 6, + "maj": 1, + "|": 2, + "s0": 1, + "s1": 1, + "t_button_debounce": 1, + ".CLK_FREQUENCY": 1, + ".DEBOUNCE_HZ": 1, + ".button": 1, + ".debounce": 1, + "bx": 4, + "#100": 1, + "#0.1": 8, + "hex_display": 1, + "num": 5, + "en": 13, + "hex0": 2, + "hex1": 2, + "hex2": 2, + "hex3": 2, + "seg_7": 4, + "hex_group0": 1, + ".num": 4, + ".en": 4, + ".seg": 4, + "hex_group1": 1, + "hex_group2": 1, + "hex_group3": 1, + "sqrt_pipelined": 3, + "optional": 2, + "INPUT_BITS": 28, + "radicand": 12, + "unsigned": 2, + "valid": 2, + "OUTPUT_BITS": 14, + "root": 8, + "number": 2, + "of": 8, + "bits": 2, + "any": 1, + "integer": 1, + "%": 3, + "start_gen": 7, + "propagation": 1, + "OUTPUT_BITS*INPUT_BITS": 9, + "root_gen": 15, + "values": 3, + "radicand_gen": 10, + "mask_gen": 9, + "mask": 3, + "mask_4": 1, + "is": 4, + "odd": 1, + "this": 2, + "a": 5, + "INPUT_BITS*": 27, + "<<": 2, + "i/2": 2, + "even": 1, + "pipeline": 2, + "pipeline_stage": 1, + "INPUT_BITS*i": 5, + "t_sqrt_pipelined": 1, + ".INPUT_BITS": 1, + ".radicand": 1, + ".root": 1, + "#10000": 1, + "control": 1, + "an": 6, + "b": 3, + "c": 3, + "d": 3, + "e": 3, + "f": 2, + "g": 2, + "h": 2, + "j": 2, + "k": 2, + "l": 2, + "FDRSE": 6, + ".INIT": 6, + "Synchronous": 12, + ".S": 6, + "Initial": 6, + "value": 6, + "register": 6, + "DFF2": 1, + ".Q": 6, + ".C": 6, + ".CE": 6, + "enable": 6, + ".D": 6, + ".R": 6, + "set": 6, + "DFF0": 1, + "DFF6": 1, + "DFF4": 1, + "DFF10": 1, + "DFF8": 1, + "pipeline_registers": 1, + "BIT_WIDTH": 5, + "pipe_in": 4, + "pipe_out": 5, + "NUMBER_OF_STAGES": 7, + "BIT_WIDTH*": 5, + "pipe_gen": 6, + "BIT_WIDTH*i": 2 }, "VimL": { - "no": 1, - "toolbar": 1, "set": 7, - "guioptions": 1, - "-": 1, - "T": 1, "nocompatible": 1, "ignorecase": 1, "incsearch": 1, @@ -66651,7 +66675,12 @@ "showmatch": 1, "showcmd": 1, "syntax": 1, - "on": 1 + "on": 1, + "no": 1, + "toolbar": 1, + "guioptions": 1, + "-": 1, + "T": 1 }, "Visual Basic": { "VERSION": 1, @@ -67032,30 +67061,201 @@ "return": 1 }, "XML": { - "": 11, + "": 1, + "name=": 227, "version=": 17, - "encoding=": 7, + "compatVersion=": 1, + "": 1, + "FreeMedForms": 1, + "": 1, + "": 1, + "(": 65, + "C": 1, + ")": 58, + "-": 90, + "by": 14, + "Eric": 1, + "MAEKER": 1, + "MD": 1, + "": 1, + "": 1, + "GPLv3": 1, + "": 1, + "": 1, + "Patient": 1, + "data": 2, + "": 1, + "": 4, + "The": 75, + "XML": 1, + "form": 1, + "loader/saver": 1, + "for": 60, + "FreeMedForms.": 1, + "": 4, + "": 1, + "http": 2, + "//www.freemedforms.com/": 1, + "": 1, + "": 1, + "": 4, + "": 1, + "": 1, "": 7, - "ToolsVersion=": 6, - "DefaultTargets=": 5, "xmlns=": 8, - "": 21, - "Project=": 12, - "Condition=": 37, "": 26, + "": 3, + "MyCommon": 1, + "": 3, + "": 25, + "": 1, + "Name=": 1, + "": 1, + "Text=": 1, + "": 1, + "": 7, + "": 11, + "encoding=": 7, + "": 1, + "TS": 1, + "": 1, + "language=": 1, + "": 1, + "": 2, + "MainWindow": 1, + "": 2, + "": 8, + "": 8, + "filename=": 8, + "line=": 8, + "": 8, + "United": 1, + "Kingdom": 1, + "": 8, + "": 8, + "Reino": 1, + "Unido": 1, + "": 8, + "": 8, + "God": 1, + "save": 2, + "the": 261, + "Queen": 1, + "Deus": 1, + "salve": 1, + "a": 128, + "Rainha": 1, + "England": 1, + "Inglaterra": 1, + "Wales": 1, + "Gales": 1, + "Scotland": 1, + "Esc": 1, + "cia": 1, + "Northern": 1, + "Ireland": 1, + "Irlanda": 1, + "Norte": 1, + "Portuguese": 1, + "Portugu": 1, + "s": 3, + "English": 1, + "Ingl": 1, + "": 1, + "": 1, + "ToolsVersion=": 6, + "": 26, + "": 10, + "Include=": 78, + "": 3, + "{": 6, + "FC737F1": 1, + "C7A5": 1, + "A066": 1, + "A32D752A2FF": 1, + "}": 6, + "": 3, + "": 3, + "cpp": 1, + ";": 52, + "c": 1, + "cc": 1, + "cxx": 1, + "def": 1, + "odl": 1, + "idl": 1, + "hpj": 1, + "bat": 1, + "asm": 1, + "asmx": 1, + "": 3, + "": 10, + "BD": 1, + "b04": 1, + "EB": 1, + "FBE52EBFB": 1, + "h": 1, + "hh": 1, + "hpp": 1, + "hxx": 1, + "hm": 1, + "inl": 1, + "inc": 1, + "xsd": 1, + "DA6AB6": 1, + "F800": 1, + "c08": 1, + "B7A": 1, + "BB121AAD01": 1, + "rc": 1, + "ico": 1, + "cur": 1, + "bmp": 1, + "dlg": 1, + "rc2": 1, + "rct": 1, + "bin": 11, + "rgs": 1, + "gif": 1, + "jpg": 1, + "jpeg": 1, + "jpe": 1, + "resx": 1, + "tiff": 1, + "tif": 1, + "png": 1, + "wav": 1, + "mfcribbon": 1, + "ms": 1, + "": 26, + "": 2, + "": 4, + "Header": 2, + "Files": 7, + "": 2, + "": 2, + "Resource": 2, + "": 1, + "": 8, + "Source": 3, + "": 6, + "": 2, + "": 1, + "DefaultTargets=": 5, "": 6, + "Condition=": 37, "Debug": 10, "": 6, "": 6, "AnyCPU": 10, "": 6, + "": 1, + "": 1, + "": 2, + "": 2, "": 5, - "{": 6, - "D9BF15": 1, - "-": 90, - "D10": 1, - "ABAD688E8B": 1, - "}": 6, + "c67af951": 1, + "d8d6376993e7": 1, "": 5, "": 4, "Exe": 4, @@ -67064,37 +67264,40 @@ "Properties": 3, "": 2, "": 5, - "csproj_sample": 1, + "nproj_sample": 2, "": 5, "": 4, - "csproj": 1, - "sample": 6, "": 4, "": 5, "v4.5.1": 5, "": 5, "": 3, "": 3, - "": 3, + "": 1, "true": 24, - "": 3, - "": 25, - "": 6, - "": 6, + "": 1, + "": 1, + "Net": 1, + "": 1, + "": 1, + "ProgramFiles": 1, + "Nemerle": 3, + "": 1, + "": 1, + "NemerleBinPathRoot": 1, + "NemerleVersion": 1, + "": 1, + "nproj": 1, + "sample": 6, "": 5, "": 5, - "": 6, - "full": 4, - "": 6, "": 7, "false": 11, "": 7, "": 8, - "bin": 11, "": 8, "": 6, "DEBUG": 3, - ";": 52, "TRACE": 6, "": 6, "": 4, @@ -67102,67 +67305,76 @@ "": 4, "": 8, "": 8, - "pdbonly": 3, "Release": 6, - "": 26, - "": 30, - "Include=": 78, - "": 26, - "": 10, - "": 5, - "": 7, - "": 2, - "": 2, - "cfa7a11": 1, - "a5cd": 1, - "bd7b": 1, - "b210d4d51a29": 1, - "fsproj_sample": 2, - "": 1, - "": 1, - "": 3, - "fsproj": 1, - "": 3, - "": 2, - "": 2, "": 5, - "fsproj_sample.XML": 2, + "OutputPath": 1, + "AssemblyName": 1, + ".xml": 1, "": 5, - "": 2, - "": 2, + "": 30, + "": 3, + "": 3, + "": 5, + "": 1, + "False": 1, + "": 1, + "": 2, + "Nemerle.dll": 1, + "": 2, "": 2, "True": 13, "": 2, - "": 5, - "": 1, - "": 1, - "": 1, - "": 1, - "": 2, - "(": 65, - "MSBuildExtensionsPath32": 2, - ")": 58, - "..": 1, - "Microsoft": 2, - "SDKs": 1, - "F#": 1, - "Framework": 1, - "v4.0": 1, - "Microsoft.FSharp.Targets": 2, - "": 2, - "": 1, - "": 1, - "VisualStudio": 1, - "v": 1, - "VisualStudioVersion": 1, - "FSharp": 1, - "": 1, - "": 1, + "": 1, + "Nemerle.Linq.dll": 1, + "": 1, + "": 10, + "": 1, + "": 21, + "Project=": 12, + "": 1, + "": 1, + "": 1, + "Sample": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "Hugh": 2, + "Bot": 2, + "": 1, + "": 1, + "": 1, + "": 121, + "A": 21, + "package": 1, + "of": 76, + "nuget": 1, + "": 122, + "It": 2, + "just": 1, + "works": 1, + "": 1, + "//hubot.github.com": 1, + "": 1, + "": 1, + "": 1, + "https": 1, + "//github.com/github/hubot/LICENSEmd": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "src=": 1, + "target=": 1, + "": 1, + "": 1, "": 1, - "name=": 227, "xmlns": 2, "ea=": 2, - "": 4, "This": 21, "easyant": 3, "module.ant": 1, @@ -67179,7 +67391,6 @@ "own": 2, "specific": 8, "target.": 1, - "": 4, "": 2, "": 2, "my": 2, @@ -67199,6 +67410,130 @@ "compile": 1, "step": 1, "": 1, + "D377F": 1, + "A798": 1, + "B3FD04C": 1, + "": 1, + "vbproj_sample.Module1": 1, + "": 1, + "vbproj_sample": 1, + "vbproj": 3, + "": 1, + "Console": 3, + "": 1, + "": 3, + "": 3, + "": 6, + "": 6, + "": 6, + "full": 4, + "": 6, + "": 2, + "": 2, + "": 2, + "": 2, + "sample.xml": 2, + "": 2, + "": 2, + "pdbonly": 3, + "": 1, + "On": 2, + "": 1, + "": 1, + "Binary": 1, + "": 1, + "": 1, + "Off": 1, + "": 1, + "": 1, + "": 1, + "": 3, + "": 3, + "": 3, + "Application.myapp": 1, + "": 3, + "": 3, + "": 1, + "": 1, + "Resources.resx": 1, + "Settings.settings": 1, + "": 1, + "": 1, + "": 1, + "": 3, + "VbMyResourcesResXFileCodeGenerator": 1, + "": 3, + "": 3, + "Resources.Designer.vb": 1, + "": 3, + "": 2, + "My.Resources": 1, + "": 2, + "": 1, + "Designer": 1, + "": 1, + "": 1, + "": 5, + "MyApplicationCodeGenerator": 1, + "Application.Designer.vb": 1, + "": 2, + "SettingsSingleFileGenerator": 1, + "My": 1, + "Settings.Designer.vb": 1, + "Label=": 11, + "": 2, + "Win32": 2, + "": 2, + "BF6EED48": 1, + "BF18": 1, + "C54": 1, + "F": 1, + "BBF19EEDC7C": 1, + "": 1, + "ManagedCProj": 1, + "": 1, + "vcxprojsample": 1, + "": 2, + "Application": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "v120": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "Unicode": 2, + "": 2, + "": 4, + "": 4, + "": 2, + "": 2, + "": 2, + "Level3": 2, + "": 1, + "Disabled": 1, + "": 1, + "": 2, + "WIN32": 2, + "_DEBUG": 1, + "%": 2, + "PreprocessorDefinitions": 2, + "": 2, + "": 4, + "Use": 15, + "": 4, + "": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "NDEBUG": 1, + "Create": 2, "": 1, "": 1, "organisation=": 3, @@ -67206,9 +67541,7 @@ "revision=": 3, "status=": 1, "this": 77, - "a": 128, "module.ivy": 1, - "for": 60, "java": 1, "standard": 1, "application": 2, @@ -67224,7 +67557,6 @@ "description=": 2, "": 1, "": 1, - "": 4, "org=": 1, "rev=": 1, "conf=": 1, @@ -67234,21 +67566,57 @@ "/": 6, "": 1, "": 1, + "D9BF15": 1, + "D10": 1, + "ABAD688E8B": 1, + "csproj_sample": 1, + "csproj": 1, + "cfa7a11": 1, + "a5cd": 1, + "bd7b": 1, + "b210d4d51a29": 1, + "fsproj_sample": 2, + "": 1, + "": 1, + "fsproj": 1, + "": 2, + "": 2, + "fsproj_sample.XML": 2, + "": 2, + "": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "": 2, + "MSBuildExtensionsPath32": 2, + "..": 1, + "Microsoft": 2, + "SDKs": 1, + "F#": 1, + "Framework": 1, + "v4.0": 1, + "Microsoft.FSharp.Targets": 2, + "": 2, + "": 1, + "": 1, + "VisualStudio": 1, + "v": 1, + "VisualStudioVersion": 1, + "FSharp": 1, + "": 1, + "": 1, "": 1, "": 1, - "": 2, "ReactiveUI": 2, - "": 2, "": 1, "": 1, "": 120, - "": 121, "IObservedChange": 5, "generic": 3, "interface": 4, "that": 94, "replaces": 1, - "the": 261, "non": 1, "PropertyChangedEventArgs.": 1, "Note": 7, @@ -67270,15 +67638,12 @@ "casting": 1, "between": 15, "changes.": 2, - "": 122, "": 120, - "The": 75, "object": 42, "has": 16, "raised": 1, "change.": 12, "name": 7, - "of": 76, "property": 74, "changed": 18, "on": 35, @@ -67374,7 +67739,6 @@ "itself": 2, "changes": 13, ".": 20, - "It": 2, "important": 6, "implement": 5, "Changing/Changed": 1, @@ -67451,7 +67815,6 @@ "string": 13, "distinguish": 12, "arbitrarily": 2, - "by": 14, "client.": 2, "Listen": 4, "provides": 6, @@ -67463,7 +67826,6 @@ "to.": 7, "": 12, "": 84, - "A": 21, "identical": 11, "types": 10, "one": 27, @@ -67508,7 +67870,6 @@ "allows": 15, "log": 2, "attached.": 1, - "data": 2, "structure": 1, "representation": 1, "memoizing": 2, @@ -67578,7 +67939,6 @@ "object.": 3, "ViewModel": 8, "another": 3, - "s": 3, "Return": 1, "instance": 2, "type.": 3, @@ -67701,7 +68061,6 @@ "manage": 1, "disk": 1, "download": 1, - "save": 2, "temporary": 1, "folder": 1, "onRelease": 1, @@ -67856,7 +68215,6 @@ "private": 1, "field.": 1, "Reference": 1, - "Use": 15, "custom": 4, "raiseAndSetIfChanged": 1, "doesn": 1, @@ -67931,336 +68289,7 @@ "need": 12, "setup.": 12, "": 1, - "": 1, - "": 1, - "": 1, - "c67af951": 1, - "d8d6376993e7": 1, - "nproj_sample": 2, - "": 1, - "": 1, - "": 1, - "Net": 1, - "": 1, - "": 1, - "ProgramFiles": 1, - "Nemerle": 3, - "": 1, - "": 1, - "NemerleBinPathRoot": 1, - "NemerleVersion": 1, - "": 1, - "nproj": 1, - "OutputPath": 1, - "AssemblyName": 1, - ".xml": 1, - "": 3, - "": 3, - "": 1, - "False": 1, - "": 1, - "": 2, - "Nemerle.dll": 1, - "": 2, - "": 1, - "Nemerle.Linq.dll": 1, - "": 1, - "": 1, - "": 1, - "TS": 1, - "": 1, - "language=": 1, - "": 1, - "MainWindow": 1, - "": 8, - "": 8, - "filename=": 8, - "line=": 8, - "": 8, - "United": 1, - "Kingdom": 1, - "": 8, - "": 8, - "Reino": 1, - "Unido": 1, - "": 8, - "": 8, - "God": 1, - "Queen": 1, - "Deus": 1, - "salve": 1, - "Rainha": 1, - "England": 1, - "Inglaterra": 1, - "Wales": 1, - "Gales": 1, - "Scotland": 1, - "Esc": 1, - "cia": 1, - "Northern": 1, - "Ireland": 1, - "Irlanda": 1, - "Norte": 1, - "Portuguese": 1, - "Portugu": 1, - "English": 1, - "Ingl": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "Sample": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "Hugh": 2, - "Bot": 2, - "": 1, - "": 1, - "": 1, - "package": 1, - "nuget": 1, - "just": 1, - "works": 1, - "": 1, - "http": 2, - "//hubot.github.com": 1, - "": 1, - "": 1, - "": 1, - "https": 1, - "//github.com/github/hubot/LICENSEmd": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "src=": 1, - "target=": 1, - "": 1, - "": 1, - "MyCommon": 1, - "": 1, - "Name=": 1, - "": 1, - "Text=": 1, - "": 1, - "D377F": 1, - "A798": 1, - "B3FD04C": 1, - "": 1, - "vbproj_sample.Module1": 1, - "": 1, - "vbproj_sample": 1, - "vbproj": 3, - "": 1, - "Console": 3, - "": 1, - "": 2, - "": 2, - "": 2, - "": 2, - "sample.xml": 2, - "": 2, - "": 2, - "": 1, - "On": 2, - "": 1, - "": 1, - "Binary": 1, - "": 1, - "": 1, - "Off": 1, - "": 1, - "": 1, - "": 1, - "": 3, - "": 3, - "": 3, - "Application.myapp": 1, - "": 3, - "": 3, - "": 1, - "": 1, - "Resources.resx": 1, - "Settings.settings": 1, - "": 1, - "": 1, - "": 1, - "": 3, - "VbMyResourcesResXFileCodeGenerator": 1, - "": 3, - "": 3, - "Resources.Designer.vb": 1, - "": 3, - "": 2, - "My.Resources": 1, - "": 2, - "": 1, - "Designer": 1, - "": 1, - "": 1, - "MyApplicationCodeGenerator": 1, - "Application.Designer.vb": 1, - "": 2, - "SettingsSingleFileGenerator": 1, - "My": 1, - "Settings.Designer.vb": 1, - "Label=": 11, - "": 2, - "Win32": 2, - "": 2, - "BF6EED48": 1, - "BF18": 1, - "C54": 1, - "F": 1, - "BBF19EEDC7C": 1, - "": 1, - "ManagedCProj": 1, - "": 1, - "vcxprojsample": 1, - "": 2, - "Application": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "v120": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "Unicode": 2, - "": 2, - "": 4, - "": 4, - "": 2, - "": 2, - "": 2, - "": 8, - "Level3": 2, - "": 1, - "Disabled": 1, - "": 1, - "": 2, - "WIN32": 2, - "_DEBUG": 1, - "%": 2, - "PreprocessorDefinitions": 2, - "": 2, - "": 4, - "": 4, - "": 6, - "": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "NDEBUG": 1, - "": 2, - "": 4, - "": 2, - "Create": 2, - "": 2, - "": 10, - "": 3, - "FC737F1": 1, - "C7A5": 1, - "A066": 1, - "A32D752A2FF": 1, - "": 3, - "": 3, - "cpp": 1, - "c": 1, - "cc": 1, - "cxx": 1, - "def": 1, - "odl": 1, - "idl": 1, - "hpj": 1, - "bat": 1, - "asm": 1, - "asmx": 1, - "": 3, - "": 10, - "BD": 1, - "b04": 1, - "EB": 1, - "FBE52EBFB": 1, - "h": 1, - "hh": 1, - "hpp": 1, - "hxx": 1, - "hm": 1, - "inl": 1, - "inc": 1, - "xsd": 1, - "DA6AB6": 1, - "F800": 1, - "c08": 1, - "B7A": 1, - "BB121AAD01": 1, - "rc": 1, - "ico": 1, - "cur": 1, - "bmp": 1, - "dlg": 1, - "rc2": 1, - "rct": 1, - "rgs": 1, - "gif": 1, - "jpg": 1, - "jpeg": 1, - "jpe": 1, - "resx": 1, - "tiff": 1, - "tif": 1, - "png": 1, - "wav": 1, - "mfcribbon": 1, - "ms": 1, - "Header": 2, - "Files": 7, - "": 2, - "Resource": 2, - "": 1, - "Source": 3, - "": 1, - "": 1, - "compatVersion=": 1, - "": 1, - "FreeMedForms": 1, - "": 1, - "": 1, - "C": 1, - "Eric": 1, - "MAEKER": 1, - "MD": 1, - "": 1, - "": 1, - "GPLv3": 1, - "": 1, - "": 1, - "Patient": 1, - "": 1, - "XML": 1, - "form": 1, - "loader/saver": 1, - "FreeMedForms.": 1, - "": 1, - "//www.freemedforms.com/": 1, - "": 1, - "": 1, - "": 1, - "": 1 + "": 1 }, "XProc": { "": 1, @@ -68416,6 +68445,21 @@ }, "Xojo": { "#tag": 88, + "Report": 2, + "Begin": 23, + "BillingReport": 1, + "Compatibility": 2, + "Units": 1, + "Width": 3, + "PageHeader": 1, + "Type": 34, + "Height": 5, + "End": 27, + "Body": 1, + "PageFooter": 1, + "EndReport": 1, + "ReportCode": 1, + "EndReportCode": 1, "Class": 3, "Protected": 1, "App": 1, @@ -68424,7 +68468,6 @@ "Constant": 3, "Name": 31, "kEditClear": 1, - "Type": 34, "String": 3, "Dynamic": 3, "False": 14, @@ -68445,21 +68488,7 @@ "OS": 1, "ViewBehavior": 2, "EndViewBehavior": 2, - "End": 27, "EndClass": 1, - "Report": 2, - "Begin": 23, - "BillingReport": 1, - "Compatibility": 2, - "Units": 1, - "Width": 3, - "PageHeader": 1, - "Height": 5, - "Body": 1, - "PageFooter": 1, - "EndReport": 1, - "ReportCode": 1, - "EndReportCode": 1, "Dim": 3, "dbFile": 3, "As": 4, @@ -68484,35 +68513,6 @@ "db.Rollback": 1, "Else": 2, "db.Commit": 1, - "Menu": 2, - "MainMenuBar": 1, - "MenuItem": 11, - "FileMenu": 1, - "SpecialMenu": 13, - "Text": 13, - "Index": 14, - "-": 14, - "AutoEnable": 13, - "True": 46, - "Visible": 41, - "QuitMenuItem": 1, - "FileQuit": 1, - "ShortcutKey": 6, - "Shortcut": 6, - "EditMenu": 1, - "EditUndo": 1, - "MenuModifier": 5, - "EditSeparator1": 1, - "EditCut": 1, - "EditCopy": 1, - "EditPaste": 1, - "EditClear": 1, - "EditSeparator2": 1, - "EditSelectAll": 1, - "UntitledSeparator": 1, - "AppleMenuItem": 1, - "AboutItem": 1, - "EndMenu": 1, "Toolbar": 2, "MyToolbar": 1, "ToolButton": 2, @@ -68529,6 +68529,7 @@ "cFFFFFF00": 1, "Backdrop": 1, "CloseButton": 1, + "True": 46, "Composite": 1, "Frame": 1, "FullScreen": 1, @@ -68548,6 +68549,7 @@ "Placement": 1, "Resizeable": 1, "Title": 1, + "Visible": 41, "PushButton": 1, "HelloWorldButton": 2, "AutoDeactivate": 1, @@ -68555,6 +68557,8 @@ "ButtonStyle": 1, "Cancel": 1, "Enabled": 1, + "Index": 14, + "-": 14, "InitialParent": 1, "Italic": 1, "Left": 1, @@ -68594,7 +68598,32 @@ "EndViewProperty": 28, "EditorType": 14, "EnumValues": 2, - "EndEnumValues": 2 + "EndEnumValues": 2, + "Menu": 2, + "MainMenuBar": 1, + "MenuItem": 11, + "FileMenu": 1, + "SpecialMenu": 13, + "Text": 13, + "AutoEnable": 13, + "QuitMenuItem": 1, + "FileQuit": 1, + "ShortcutKey": 6, + "Shortcut": 6, + "EditMenu": 1, + "EditUndo": 1, + "MenuModifier": 5, + "EditSeparator1": 1, + "EditCut": 1, + "EditCopy": 1, + "EditPaste": 1, + "EditClear": 1, + "EditSeparator2": 1, + "EditSelectAll": 1, + "UntitledSeparator": 1, + "AppleMenuItem": 1, + "AboutItem": 1, + "EndMenu": 1 }, "Xtend": { "package": 2, @@ -68750,20 +68779,7 @@ "categories": 1 }, "YAML": { - "gem": 1, "-": 25, - "local": 1, - "gen": 1, - "rdoc": 2, - "run": 1, - "tests": 1, - "inline": 1, - "source": 1, - "line": 1, - "numbers": 1, - "gempath": 1, - "/usr/local/rubygems": 1, - "/home/gavin/.rubygems": 1, "http_interactions": 1, "request": 1, "method": 1, @@ -68796,48 +68812,41 @@ "Nov": 1, "GMT": 1, "recorded_with": 1, - "VCR": 1 + "VCR": 1, + "gem": 1, + "local": 1, + "gen": 1, + "rdoc": 2, + "run": 1, + "tests": 1, + "inline": 1, + "source": 1, + "line": 1, + "numbers": 1, + "gempath": 1, + "/usr/local/rubygems": 1, + "/home/gavin/.rubygems": 1 }, "Zephir": { - "%": 10, - "{": 58, - "#define": 1, - "MAX_FACTOR": 3, - "}": 52, - "namespace": 4, - "Test": 4, + "extern": 1, + "zend_class_entry": 1, + "*test_router_exception_ce": 1, ";": 91, - "#include": 9, - "static": 1, - "long": 3, - "fibonacci": 4, + "ZEPHIR_INIT_CLASS": 2, "(": 59, - "n": 5, + "Test_Router_Exception": 2, ")": 57, - "if": 39, - "<": 2, - "return": 26, - "else": 11, - "-": 25, - "+": 5, - "class": 3, - "Cblock": 1, - "public": 22, - "function": 22, - "testCblock1": 1, - "int": 3, - "a": 6, - "testCblock2": 1, "#ifdef": 1, "HAVE_CONFIG_H": 1, + "#include": 9, "#endif": 1, "": 1, "": 1, "": 1, "": 1, - "ZEPHIR_INIT_CLASS": 2, - "Test_Router_Exception": 2, + "{": 58, "ZEPHIR_REGISTER_CLASS_EX": 1, + "Test": 4, "Router": 3, "Exception": 4, "test": 1, @@ -68845,11 +68854,13 @@ "zend_exception_get_default": 1, "TSRMLS_C": 1, "NULL": 1, + "return": 26, "SUCCESS": 1, - "extern": 1, - "zend_class_entry": 1, - "*test_router_exception_ce": 1, + "}": 52, + "<": 2, "php": 1, + "namespace": 4, + "class": 3, "extends": 1, "Route": 1, "protected": 9, @@ -68862,17 +68873,21 @@ "_id": 2, "_name": 3, "_beforeMatch": 3, + "public": 22, + "function": 22, "__construct": 1, "pattern": 37, "paths": 7, "null": 11, "httpMethods": 6, "this": 28, + "-": 25, "reConfigure": 2, "let": 51, "compilePattern": 2, "var": 4, "idPattern": 6, + "if": 39, "memstr": 10, "str_replace": 6, ".": 5, @@ -68886,6 +68901,7 @@ "boolean": 1, "notValid": 5, "false": 3, + "int": 3, "cursor": 4, "cursorVar": 5, "marker": 4, @@ -68904,6 +68920,8 @@ "for": 4, "in": 4, "1": 3, + "else": 11, + "+": 5, "substr": 3, "break": 9, "&&": 6, @@ -68968,7 +68986,18 @@ "getHostname": 1, "convert": 1, "converter": 2, - "getConverters": 1 + "getConverters": 1, + "%": 10, + "#define": 1, + "MAX_FACTOR": 3, + "static": 1, + "long": 3, + "fibonacci": 4, + "n": 5, + "Cblock": 1, + "testCblock1": 1, + "a": 6, + "testCblock2": 1 }, "Zimpl": { "#": 2, @@ -69036,75 +69065,85 @@ "db.part/user": 17 }, "fish": { - "#": 18, - "set": 49, + "function": 6, + "funced": 3, "-": 102, - "g": 1, - "IFS": 4, - "n": 5, - "t": 2, + "description": 2, + "set": 49, "l": 15, - "configdir": 2, - "/.config": 1, - "if": 21, + "editor": 7, + "EDITOR": 1, + "interactive": 8, + "funcname": 14, + "while": 2, "q": 9, - "XDG_CONFIG_HOME": 2, - "end": 33, - "not": 8, - "fish_function_path": 4, - "configdir/fish/functions": 1, - "__fish_sysconfdir/functions": 1, - "__fish_datadir/functions": 3, - "contains": 4, + "argv": 9, "[": 13, "]": 13, - "fish_complete_path": 4, - "configdir/fish/completions": 1, - "__fish_sysconfdir/completions": 1, - "__fish_datadir/completions": 3, - "test": 7, - "d": 3, - "/usr/xpg4/bin": 3, - "PATH": 6, - "path_list": 4, - "/bin": 1, - "/usr/bin": 1, - "/usr/X11R6/bin": 1, - "/usr/local/bin": 1, - "__fish_bin_dir": 1, "switch": 3, - "USER": 1, "case": 9, - "root": 1, - "/sbin": 1, - "/usr/sbin": 1, - "/usr/local/sbin": 1, - "for": 1, - "i": 5, - "in": 2, - "function": 6, - "fish_sigtrap_handler": 1, - "on": 2, - "signal": 1, - "TRAP": 1, - "no": 2, - "scope": 1, - "shadowing": 1, - "description": 2, - "breakpoint": 1, - "__fish_on_interactive": 2, - "event": 1, - "fish_prompt": 1, - "__fish_config_interactive": 1, - "functions": 5, + "h": 1, + "help": 1, + "__fish_print_help": 1, + "return": 6, "e": 6, + "i": 5, + "set_color": 4, + "red": 2, + "printf": 3, + "(": 7, + "_": 3, + ")": 7, + "normal": 2, + "end": 33, + "if": 21, + "begin": 2, + ";": 7, + "or": 3, + "not": 8, + "test": 7, + "init": 5, + "n": 5, + "nend": 2, + "editor_cmd": 2, "eval": 5, + "type": 1, + "f": 3, + "/dev/null": 2, + "fish": 3, + "z": 1, + "IFS": 4, + "functions": 5, + "|": 3, + "fish_indent": 2, + "no": 2, + "indent": 1, + "prompt": 2, + "read": 1, + "p": 1, + "c": 1, + "s": 1, + "cmd": 2, + "echo": 3, + "TMPDIR": 2, + "/tmp": 1, + "tmpname": 8, + "%": 2, + "self": 2, + "random": 2, + "else": 3, + ".": 2, + "stat": 2, + "status": 7, + "rm": 1, "S": 1, + "d": 3, + "#": 18, "If": 2, "we": 2, "are": 1, + "in": 2, "an": 1, - "interactive": 8, "shell": 1, "should": 2, "enable": 1, @@ -69121,6 +69160,7 @@ "was": 1, "executed.": 1, "don": 1, + "t": 2, "do": 1, "this": 1, "commands": 1, @@ -69136,60 +69176,49 @@ "using": 1, "eval.": 1, "mode": 5, - "status": 7, "is": 3, - "else": 3, "none": 1, - "echo": 3, - "|": 3, - ".": 2, "<": 1, "&": 1, "res": 2, - "return": 6, - "funced": 3, - "editor": 7, - "EDITOR": 1, - "funcname": 14, - "while": 2, - "argv": 9, - "h": 1, - "help": 1, - "__fish_print_help": 1, - "set_color": 4, - "red": 2, - "printf": 3, - "(": 7, - "_": 3, - ")": 7, - "normal": 2, - "begin": 2, - ";": 7, - "or": 3, - "init": 5, - "nend": 2, - "editor_cmd": 2, - "type": 1, - "f": 3, - "/dev/null": 2, - "fish": 3, - "z": 1, - "fish_indent": 2, - "indent": 1, - "prompt": 2, - "read": 1, - "p": 1, - "c": 1, - "s": 1, - "cmd": 2, - "TMPDIR": 2, - "/tmp": 1, - "tmpname": 8, - "%": 2, - "self": 2, - "random": 2, - "stat": 2, - "rm": 1 + "g": 1, + "configdir": 2, + "/.config": 1, + "XDG_CONFIG_HOME": 2, + "fish_function_path": 4, + "configdir/fish/functions": 1, + "__fish_sysconfdir/functions": 1, + "__fish_datadir/functions": 3, + "contains": 4, + "fish_complete_path": 4, + "configdir/fish/completions": 1, + "__fish_sysconfdir/completions": 1, + "__fish_datadir/completions": 3, + "/usr/xpg4/bin": 3, + "PATH": 6, + "path_list": 4, + "/bin": 1, + "/usr/bin": 1, + "/usr/X11R6/bin": 1, + "/usr/local/bin": 1, + "__fish_bin_dir": 1, + "USER": 1, + "root": 1, + "/sbin": 1, + "/usr/sbin": 1, + "/usr/local/sbin": 1, + "for": 1, + "fish_sigtrap_handler": 1, + "on": 2, + "signal": 1, + "TRAP": 1, + "scope": 1, + "shadowing": 1, + "breakpoint": 1, + "__fish_on_interactive": 2, + "event": 1, + "fish_prompt": 1, + "__fish_config_interactive": 1 }, "wisp": { ";": 199, @@ -69634,6 +69663,7 @@ "AutoHotkey": 3, "Awk": 544, "BlitzBasic": 2065, + "BlitzMax": 40, "Bluespec": 1298, "Brightscript": 579, "C": 59053, @@ -69831,6 +69861,7 @@ "AutoHotkey": 1, "Awk": 1, "BlitzBasic": 3, + "BlitzMax": 1, "Bluespec": 2, "Brightscript": 1, "C": 29, @@ -70013,5 +70044,5 @@ "fish": 3, "wisp": 1 }, - "md5": "bb637c5d1f457edff3f8c2676d10807a" + "md5": "72cb4bd21588a8efb84968759aaec2c1" } \ No newline at end of file diff --git a/samples/BlitzMax/sample.bmx b/samples/BlitzMax/sample.bmx new file mode 100644 index 00000000..e57e5f58 --- /dev/null +++ b/samples/BlitzMax/sample.bmx @@ -0,0 +1,25 @@ +SuperStrict + +Framework Brl.StandardIO + +Type TMyType + Field property:int + + Function A:int(param:int) + 'do nothing + End Function + + Method B:int(param:int) + 'do nothing + End Method +End Type + + +Global my:TMyType = new TMyType +?Win32 + my.A() + my.B() +?Linux + my.B() + my.A() +? \ No newline at end of file From 76b896a66d668c3373bfda6a9d1e333d62df2677 Mon Sep 17 00:00:00 2001 From: Santiago Perez De Rosso Date: Tue, 1 Jul 2014 11:18:42 -0400 Subject: [PATCH 092/268] use Alloy lexer --- lib/linguist/languages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 47a04fef..b165d86d 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -89,7 +89,7 @@ Agda: Alloy: type: programming # 'modeling' would be more appropiate - lexer: Text only + lexer: Alloy color: "#cc5c24" extensions: - .als From 9281bd043aec088e656fece3bc5b689fd1af5dc7 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Tue, 1 Jul 2014 11:19:05 -0500 Subject: [PATCH 093/268] Version --- lib/linguist/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/version.rb b/lib/linguist/version.rb index ab1a401e..c77f7734 100644 --- a/lib/linguist/version.rb +++ b/lib/linguist/version.rb @@ -1,3 +1,3 @@ module Linguist - VERSION = "3.0.0b3" + VERSION = "3.0.0" end From c29bea19ef8cf2696b798ed00d5b48af79ac26e6 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Tue, 1 Jul 2014 12:08:42 -0500 Subject: [PATCH 094/268] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 660ac00c..d497e8c2 100644 --- a/README.md +++ b/README.md @@ -152,4 +152,4 @@ If you are the current maintainer of this gem: 0. Test behavior locally, branch deploy, whatever needs to happen 0. Merge github/linguist PR 0. Tag and push: `git tag vx.xx.xx; git push --tags` - 0. Push to rubygems.org -- `gem push github-linguist-2.10.12.gem` + 0. Push to rubygems.org -- `gem push github-linguist-3.0.0.gem` From 2fd2cdf68ad4c6f08bc933dcc89517a24dd66e3a Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Tue, 1 Jul 2014 15:57:20 -0500 Subject: [PATCH 095/268] Samples --- lib/linguist/samples.json | 53288 ++++++++++++++++++------------------ 1 file changed, 26644 insertions(+), 26644 deletions(-) diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index e34ae17d..de788e11 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -1052,63 +1052,28 @@ "//": 211, "#include": 16, "staload": 25, - "UN": 3, "_": 25, - "datavtype": 1, - "fork": 16, - "FORK": 3, - "of": 59, - "(": 562, - "nphil": 13, - ")": 567, - "assume": 2, - "fork_vtype": 3, - "implement": 55, - "fork_get_num": 4, - "f": 22, - "let": 34, - "val": 95, - "n": 51, - "in": 48, - "end": 73, - "local": 10, - "the_forkarray": 2, - "typedef": 10, - "t": 1, - "channel": 11, - "array_tabulate": 1, - "fopr": 1, - "": 2, - "ch": 7, - "where": 6, - "{": 142, - "UN.cast": 2, - "}": 141, - "channel_create_exn": 2, - "": 2, - "i2sz": 4, - "channel_insert": 5, - "arrayref_tabulate": 1, - "NPHIL": 6, - "[": 49, - "]": 48, - "fork_changet": 5, - "the_forktray": 2, - "+": 20, - "forktray_changet": 4, "sortdef": 2, "ftype": 13, "type": 30, "-": 49, "infixr": 2, + "(": 562, + ")": 567, + "typedef": 10, "a": 200, "b": 26, "": 2, "functor": 12, "F": 34, + "{": 142, + "}": 141, "list0": 9, "extern": 13, + "val": 95, "functor_list0": 7, + "implement": 55, + "f": 22, "lam": 20, "xs": 82, "list0_map": 2, @@ -1117,6 +1082,7 @@ "datatype": 4, "CoYoneda": 7, "r": 25, + "of": 59, "fun": 56, "CoYoneda_phi": 2, "CoYoneda_psi": 3, @@ -1135,15 +1101,19 @@ "bool2string": 4, "string": 2, "case": 9, + "+": 20, "fprint_val": 2, "": 2, "out": 8, "fprint": 3, "int2bool": 2, "i": 6, + "let": 34, + "in": 48, "if": 7, "then": 11, "else": 7, + "end": 73, "myintlist0": 2, "g0ofg1": 1, "list": 1, @@ -1151,31 +1121,228 @@ "fprintln": 3, "stdout_ref": 4, "main0": 3, - "%": 7, - "#": 7, - "#define": 4, - "natLt": 2, + "UN": 3, "phil_left": 3, + "n": 51, "phil_right": 3, - "phil_loop": 10, + "nmod": 1, + "NPHIL": 6, + "randsleep": 6, + "intGte": 1, "void": 14, - "cleaner_loop": 6, - "absvtype": 2, - "ptr": 2, - "vtypedef": 2, + "ignoret": 2, + "sleep": 2, + "UN.cast": 2, + "uInt": 1, + "rand": 1, + "mod": 1, + "phil_think": 3, + "println": 9, "phil_dine": 3, "lf": 5, "rf": 5, - "phil_think": 3, + "phil_loop": 10, + "nl": 2, + "nr": 2, + "ch_lfork": 2, + "fork_changet": 5, + "ch_rfork": 2, + "channel_takeout": 4, + "HX": 1, + "try": 1, + "to": 16, + "actively": 1, + "induce": 1, + "deadlock": 2, + "ch_forktray": 3, + "forktray_changet": 4, + "channel_insert": 5, + "[": 49, + "]": 48, "cleaner_wash": 3, + "fork_get_num": 4, "cleaner_return": 4, + "ch": 7, + "cleaner_loop": 6, + "f0": 3, + "dynload": 3, + "local": 10, + "mythread_create_cloptr": 6, + "llam": 6, + "while": 1, + "true": 5, + "%": 7, + "#": 7, + "#define": 4, + "nphil": 13, + "natLt": 2, + "absvtype": 2, + "fork_vtype": 3, + "ptr": 2, + "vtypedef": 2, + "fork": 16, + "channel": 11, + "datavtype": 1, + "FORK": 3, + "assume": 2, + "the_forkarray": 2, + "t": 1, + "array_tabulate": 1, + "fopr": 1, + "": 2, + "where": 6, + "channel_create_exn": 2, + "": 2, + "i2sz": 4, + "arrayref_tabulate": 1, + "the_forktray": 2, + "set_vtype": 3, + "t@ype": 2, + "set": 34, + "t0p": 31, + "compare_elt_elt": 4, + "x1": 1, + "x2": 1, + "<": 14, + "linset_nil": 2, + "linset_make_nil": 2, + "linset_sing": 2, + "": 16, + "linset_make_sing": 2, + "linset_make_list": 1, + "List": 1, + "INV": 24, + "linset_is_nil": 2, + "linset_isnot_nil": 2, + "linset_size": 2, + "size_t": 1, + "linset_is_member": 3, + "x0": 22, + "linset_isnot_member": 1, + "linset_copy": 2, + "linset_free": 2, + "linset_insert": 3, + "&": 17, + "linset_takeout": 1, + "res": 9, + "opt": 6, + "endfun": 1, + "linset_takeout_opt": 1, + "Option_vt": 4, + "linset_remove": 2, + "linset_choose": 3, + "linset_choose_opt": 1, + "linset_takeoutmax": 1, + "linset_takeoutmax_opt": 1, + "linset_takeoutmin": 1, + "linset_takeoutmin_opt": 1, + "fprint_linset": 3, + "sep": 1, + "FILEref": 2, + "overload": 1, + "with": 1, + "env": 11, + "vt0p": 2, + "linset_foreach": 3, + "fwork": 3, + "linset_foreach_env": 3, + "linset_listize": 2, + "List0_vt": 5, + "linset_listize1": 2, + "code": 6, + "reuse": 2, + "elt": 2, + "list_vt_nil": 16, + "list_vt_cons": 17, + "list_vt_is_nil": 1, + "list_vt_is_cons": 1, + "list_vt_length": 1, + "aux": 4, + "nat": 4, + ".": 14, + "": 3, + "list_vt": 7, + "sgn": 9, + "false": 6, + "list_vt_copy": 2, + "list_vt_free": 1, + "mynode_cons": 4, + "nx": 22, + "mynode1": 6, + "xs1": 15, + "UN.castvwtp0": 8, + "List1_vt": 5, + "@list_vt_cons": 5, + "xs2": 3, + "prval": 20, + "UN.cast2void": 5, + ";": 4, + "fold@": 8, + "ins": 3, + "tail": 1, + "recursive": 1, + "n1": 4, + "<=>": 1, + "1": 3, + "mynode_make_elt": 4, + "ans": 2, + "is": 26, + "found": 1, + "effmask_all": 3, + "free@": 1, + "xs1_": 3, + "rem": 1, + "*": 2, + "opt_some": 1, + "opt_none": 1, + "list_vt_foreach": 1, + "": 3, + "list_vt_foreach_env": 1, + "mynode_null": 5, + "mynode": 3, + "null": 1, + "the_null_ptr": 1, + "mynode_free": 1, + "nx2": 4, + "mynode_get_elt": 1, + "nx1": 7, + "UN.castvwtp1": 2, + "mynode_set_elt": 1, + "l": 3, + "__assert": 2, + "praxi": 1, + "mynode_getfree_elt": 1, + "linset_takeout_ngc": 2, + "takeout": 3, + "mynode0": 1, + "pf_x": 6, + "view@x": 3, + "pf_xs1": 6, + "view@xs1": 3, + "linset_takeoutmax_ngc": 2, + "xs_": 4, + "@list_vt_nil": 1, + "linset_takeoutmin_ngc": 2, + "unsnoc": 4, + "pos": 1, + "and": 10, + "fold@xs": 1, + "ATS_PACKNAME": 1, + "ATS_STALOADFLAG": 1, + "no": 2, + "static": 1, + "loading": 1, + "at": 2, + "run": 1, + "time": 1, + "castfn": 1, + "linset2list": 1, "": 1, "html": 1, "PUBLIC": 1, "W3C": 1, "DTD": 2, "XHTML": 1, - "1": 3, "EN": 1, "http": 2, "www": 1, @@ -1236,7 +1403,6 @@ "sitting": 1, "around": 1, "table": 3, - "and": 10, "there": 3, "also": 3, "forks": 7, @@ -1244,7 +1410,6 @@ "on": 8, "such": 1, "each": 2, - "is": 26, "located": 2, "between": 1, "left": 3, @@ -1261,7 +1426,6 @@ "thinking": 1, "dining.": 1, "order": 1, - "to": 16, "dine": 1, "needs": 2, "first": 2, @@ -1325,7 +1489,6 @@ "until": 2, "taken": 1, "channel.": 2, - "channel_takeout": 4, "empty": 1, "inserted": 1, "Channel": 2, @@ -1345,20 +1508,17 @@ "numbers": 1, "less": 1, "than": 1, - ".": 14, "channels": 4, "storing": 3, "chosen": 3, "capacity": 3, "reason": 1, "store": 1, - "at": 2, "most": 1, "guarantee": 1, "these": 1, "never": 2, "so": 2, - "no": 2, "attempt": 1, "made": 1, "send": 1, @@ -1383,7 +1543,6 @@ "should": 3, "straighforward": 2, "follow": 2, - "code": 6, "Cleaner": 1, "finds": 1, "number": 2, @@ -1410,7 +1569,6 @@ "One": 1, "able": 1, "encounter": 1, - "deadlock": 2, "after": 1, "running": 1, "simulation": 1, @@ -1427,156 +1585,6 @@ "": 1, "main": 1, "fprint_filsub": 1, - "reuse": 2, - "set_vtype": 3, - "elt": 2, - "t@ype": 2, - "List0_vt": 5, - "linset_nil": 2, - "list_vt_nil": 16, - "linset_make_nil": 2, - "linset_sing": 2, - "list_vt_cons": 17, - "linset_make_sing": 2, - "linset_is_nil": 2, - "list_vt_is_nil": 1, - "linset_isnot_nil": 2, - "list_vt_is_cons": 1, - "linset_size": 2, - "list_vt_length": 1, - "linset_is_member": 3, - "x0": 22, - "aux": 4, - "nat": 4, - "": 3, - "list_vt": 7, - "<": 14, - "sgn": 9, - "compare_elt_elt": 4, - "false": 6, - "true": 5, - "linset_copy": 2, - "list_vt_copy": 2, - "linset_free": 2, - "list_vt_free": 1, - "linset_insert": 3, - "mynode_cons": 4, - "nx": 22, - "mynode1": 6, - "xs1": 15, - "UN.castvwtp0": 8, - "List1_vt": 5, - "@list_vt_cons": 5, - "xs2": 3, - "prval": 20, - "UN.cast2void": 5, - ";": 4, - "fold@": 8, - "ins": 3, - "tail": 1, - "recursive": 1, - "&": 17, - "n1": 4, - "<=>": 1, - "mynode_make_elt": 4, - "ans": 2, - "found": 1, - "effmask_all": 3, - "free@": 1, - "xs1_": 3, - "rem": 1, - "linset_remove": 2, - "*": 2, - "linset_choose": 3, - "opt_some": 1, - "opt_none": 1, - "env": 11, - "linset_foreach_env": 3, - "list_vt_foreach": 1, - "fwork": 3, - "": 3, - "linset_foreach": 3, - "list_vt_foreach_env": 1, - "linset_listize": 2, - "linset_listize1": 2, - "mynode_null": 5, - "mynode": 3, - "null": 1, - "the_null_ptr": 1, - "mynode_free": 1, - "nx2": 4, - "mynode_get_elt": 1, - "nx1": 7, - "UN.castvwtp1": 2, - "mynode_set_elt": 1, - "l": 3, - "__assert": 2, - "praxi": 1, - "mynode_getfree_elt": 1, - "linset_takeout_ngc": 2, - "set": 34, - "takeout": 3, - "mynode0": 1, - "pf_x": 6, - "view@x": 3, - "pf_xs1": 6, - "view@xs1": 3, - "res": 9, - "linset_takeoutmax_ngc": 2, - "xs_": 4, - "@list_vt_nil": 1, - "linset_takeoutmin_ngc": 2, - "unsnoc": 4, - "pos": 1, - "": 16, - "fold@xs": 1, - "nmod": 1, - "randsleep": 6, - "intGte": 1, - "ignoret": 2, - "sleep": 2, - "uInt": 1, - "rand": 1, - "mod": 1, - "println": 9, - "nl": 2, - "nr": 2, - "ch_lfork": 2, - "ch_rfork": 2, - "HX": 1, - "try": 1, - "actively": 1, - "induce": 1, - "ch_forktray": 3, - "f0": 3, - "dynload": 3, - "mythread_create_cloptr": 6, - "llam": 6, - "while": 1, - "t0p": 31, - "x1": 1, - "x2": 1, - "linset_make_list": 1, - "List": 1, - "INV": 24, - "size_t": 1, - "linset_isnot_member": 1, - "linset_takeout": 1, - "opt": 6, - "endfun": 1, - "linset_takeout_opt": 1, - "Option_vt": 4, - "linset_choose_opt": 1, - "linset_takeoutmax": 1, - "linset_takeoutmax_opt": 1, - "linset_takeoutmin": 1, - "linset_takeoutmin_opt": 1, - "fprint_linset": 3, - "sep": 1, - "FILEref": 2, - "overload": 1, - "with": 1, - "vt0p": 2, "option0": 3, "functor_option0": 2, "option0_map": 1, @@ -1593,15 +1601,7 @@ "list_t": 1, "g0ofg1_list": 1, "Yoneda_bool_list0": 3, - "myboolist1": 2, - "ATS_PACKNAME": 1, - "ATS_STALOADFLAG": 1, - "static": 1, - "loading": 1, - "run": 1, - "time": 1, - "castfn": 1, - "linset2list": 1 + "myboolist1": 2 }, "Agda": { "module": 3, @@ -1663,20 +1663,64 @@ }, "Alloy": { "module": 3, - "examples/systems/marksweepgc": 1, + "examples/systems/file_system": 1, + "abstract": 2, "sig": 20, - "Node": 10, + "Object": 10, "{": 54, "}": 60, + "Name": 2, + "File": 1, + "extends": 10, + "some": 3, + "d": 3, + "Dir": 8, + "|": 19, + "this": 14, + "in": 19, + "d.entries.contents": 1, + "entries": 3, + "set": 10, + "DirEntry": 2, + "parent": 3, + "lone": 6, + "this.": 4, + "@contents.": 1, + "@entries": 1, + "all": 16, + "e1": 2, + "e2": 2, + "e1.name": 1, + "e2.name": 1, + "@parent": 2, + "Root": 5, + "one": 8, + "no": 8, + "Cur": 1, + "name": 1, + "contents": 2, + "pred": 16, + "OneParent_buggyVersion": 2, + "-": 41, + "d.parent": 2, + "OneParent_correctVersion": 2, + "(": 12, + "&&": 2, + "contents.d": 1, + ")": 9, + "NoDirAliases": 3, + "o": 1, + "o.": 1, + "check": 6, + "for": 7, + "expect": 6, + "examples/systems/marksweepgc": 1, + "Node": 10, "HeapState": 5, "left": 3, "right": 1, - "-": 41, - "lone": 6, "marked": 1, - "set": 10, "freeList": 1, - "pred": 16, "clearMarks": 1, "[": 82, "hs": 16, @@ -1689,9 +1733,7 @@ "]": 80, "+": 14, "n.": 1, - "(": 12, "hs.left": 2, - ")": 9, "mark": 1, "from": 2, "hs.reachable": 1, @@ -1703,57 +1745,15 @@ "root": 5, "assert": 3, "Soundness1": 2, - "all": 16, "h": 9, "live": 3, "h.reachable": 1, - "|": 19, "h.right": 1, "Soundness2": 2, - "no": 8, ".reachable": 2, "h.GC": 1, - "in": 19, ".freeList": 1, - "check": 6, - "for": 7, - "expect": 6, "Completeness": 1, - "examples/systems/file_system": 1, - "abstract": 2, - "Object": 10, - "Name": 2, - "File": 1, - "extends": 10, - "some": 3, - "d": 3, - "Dir": 8, - "this": 14, - "d.entries.contents": 1, - "entries": 3, - "DirEntry": 2, - "parent": 3, - "this.": 4, - "@contents.": 1, - "@entries": 1, - "e1": 2, - "e2": 2, - "e1.name": 1, - "e2.name": 1, - "@parent": 2, - "Root": 5, - "one": 8, - "Cur": 1, - "name": 1, - "contents": 2, - "OneParent_buggyVersion": 2, - "d.parent": 2, - "OneParent_correctVersion": 2, - "&&": 2, - "contents.d": 1, - "NoDirAliases": 3, - "o": 1, - "o.": 1, "examples/systems/views": 1, "open": 2, "util/ordering": 1, @@ -2326,240 +2326,34 @@ "/private/etc/apache2/other/*.conf": 1 }, "Apex": { - "public": 10, - "class": 7, - "GeoUtils": 1, - "{": 219, - "//": 11, - "generate": 1, - "a": 6, - "KML": 1, - "string": 7, - "given": 2, - "page": 1, - "reference": 1, - "call": 1, - "getContent": 1, - "(": 481, - ")": 481, - "then": 1, - "cleanup": 1, - "the": 4, - "output.": 1, - "static": 83, - "generateFromContent": 1, - "PageReference": 2, - "pr": 1, - "ret": 7, - ";": 308, - "try": 1, - "pr.getContent": 1, - ".toString": 1, - "ret.replaceAll": 4, - "get": 4, - "content": 1, - "produces": 1, - "quote": 1, - "chars": 1, - "we": 1, - "need": 1, - "to": 4, - "escape": 1, - "these": 2, - "in": 1, - "node": 1, - "value": 10, - "}": 219, - "catch": 1, - "exception": 1, - "e": 2, - "system.debug": 2, - "+": 75, - "must": 1, - "use": 1, - "ALL": 1, - "since": 1, - "many": 1, - "new": 60, - "line": 1, - "may": 1, - "also": 1, - "return": 106, - "Map": 33, - "": 2, - "String": 60, - "geo_response": 1, - "accountAddressString": 2, - "account": 2, - "acct": 1, - "form": 1, - "an": 4, - "address": 1, - "object": 1, - "adr": 9, - "acct.billingstreet": 1, - "acct.billingcity": 1, - "acct.billingstate": 1, - "if": 91, - "acct.billingpostalcode": 2, - "null": 92, - "acct.billingcountry": 2, - "adr.replaceAll": 4, - "testmethod": 1, - "void": 9, - "t1": 1, - "pageRef": 3, - "Page.kmlPreviewTemplate": 1, - "Test.setCurrentPage": 1, - "system.assert": 1, - "GeoUtils.generateFromContent": 1, - "Account": 2, - "name": 2, - "billingstreet": 1, - "billingcity": 1, - "billingstate": 1, - "billingpostalcode": 1, - "billingcountry": 1, - "insert": 1, - "system.assertEquals": 1, "global": 70, - "LanguageUtils": 1, - "final": 6, - "HTTP_LANGUAGE_CODE_PARAMETER_KEY": 2, - "DEFAULT_LANGUAGE_CODE": 3, - "Set": 6, - "": 30, - "SUPPORTED_LANGUAGE_CODES": 2, - "//Chinese": 2, - "Simplified": 1, - "Traditional": 1, - "//Dutch": 1, - "//English": 1, - "//Finnish": 1, - "//French": 1, - "//German": 1, - "//Italian": 1, - "//Japanese": 1, - "//Korean": 1, - "//Polish": 1, - "//Portuguese": 1, - "Brazilian": 1, - "//Russian": 1, - "//Spanish": 1, - "//Swedish": 1, - "//Thai": 1, - "//Czech": 1, - "//Danish": 1, - "//Hungarian": 1, - "//Indonesian": 1, - "//Turkish": 1, - "private": 10, - "": 29, - "DEFAULTS": 1, - "getLangCodeByHttpParam": 4, - "returnValue": 22, - "LANGUAGE_CODE_SET": 1, - "getSuppLangCodeSet": 2, - "ApexPages.currentPage": 4, - "&&": 46, - ".getParameters": 2, - "LANGUAGE_HTTP_PARAMETER": 7, - "StringUtils.lowerCase": 3, - "StringUtils.replaceChars": 2, - ".get": 4, - "//underscore": 1, - "//dash": 1, - "DEFAULTS.containsKey": 3, - "DEFAULTS.get": 3, - "StringUtils.isNotBlank": 1, - "SUPPORTED_LANGUAGE_CODES.contains": 2, - "getLangCodeByBrowser": 4, - "LANGUAGES_FROM_BROWSER_AS_STRING": 2, - ".getHeaders": 1, - "List": 71, - "LANGUAGES_FROM_BROWSER_AS_LIST": 3, - "splitAndFilterAcceptLanguageHeader": 2, - "LANGUAGES_FROM_BROWSER_AS_LIST.size": 1, - "for": 24, - "languageFromBrowser": 6, - "getLangCodeByUser": 3, - "UserInfo.getLanguage": 1, - "getLangCodeByHttpParamOrIfNullThenBrowser": 1, - "StringUtils.defaultString": 4, - "getLangCodeByHttpParamOrIfNullThenUser": 1, - "getLangCodeByBrowserOrIfNullThenHttpParam": 1, - "getLangCodeByBrowserOrIfNullThenUser": 1, - "header": 2, - "returnList": 11, + "class": 7, + "ArrayUtils": 1, + "{": 219, + "static": 83, + "String": 60, "[": 102, "]": 102, - "tokens": 3, - "StringUtils.split": 1, - "token": 7, - "token.contains": 1, - "token.substring": 1, - "token.indexOf": 1, - "returnList.add": 8, - "StringUtils.length": 1, - "StringUtils.substring": 1, - "langCodes": 2, - "langCode": 3, - "langCodes.add": 1, - "getLanguageName": 1, - "displayLanguageCode": 13, - "languageCode": 2, - "translatedLanguageNames.get": 2, - "filterLanguageCode": 4, - "getAllLanguages": 3, - "translatedLanguageNames.containsKey": 1, - "<": 32, - "translatedLanguageNames": 1, - "TwilioAPI": 2, - "MissingTwilioConfigCustomSettingsException": 2, - "extends": 1, - "Exception": 1, - "TwilioRestClient": 5, - "client": 2, - "getDefaultClient": 2, - "TwilioConfig__c": 5, - "twilioCfg": 7, - "getTwilioConfig": 3, - "TwilioAPI.client": 2, - "twilioCfg.AccountSid__c": 3, - "twilioCfg.AuthToken__c": 3, - "TwilioAccount": 1, - "getDefaultAccount": 1, - ".getAccount": 2, - "TwilioCapability": 2, - "createCapability": 1, - "createClient": 1, - "accountSid": 2, - "authToken": 2, - "Test.isRunningTest": 1, - "dummy": 2, - "sid": 1, - "else": 25, - "TwilioConfig__c.getOrgDefaults": 1, - "throw": 6, - "@isTest": 1, - "test_TwilioAPI": 1, - "System.assertEquals": 5, - "TwilioAPI.getTwilioConfig": 2, - ".AccountSid__c": 1, - ".AuthToken__c": 1, - "TwilioAPI.getDefaultClient": 2, - ".getAccountSid": 1, - ".getSid": 2, - "TwilioAPI.getDefaultAccount": 1, - "ArrayUtils": 1, "EMPTY_STRING_ARRAY": 1, + "new": 60, + "}": 219, + ";": 308, "Integer": 34, "MAX_NUMBER_OF_ELEMENTS_IN_LIST": 5, + "get": 4, + "return": 106, + "List": 71, + "": 30, "objectToString": 1, + "(": 481, "": 22, "objects": 3, + ")": 481, "strings": 3, + "null": 92, + "if": 91, "objects.size": 1, + "for": 24, "Object": 23, "obj": 3, "instanceof": 1, @@ -2572,9 +2366,11 @@ "-": 18, "tmp": 6, "while": 8, + "+": 75, "SObject": 19, "lowerCase": 1, "strs": 9, + "returnValue": 22, "strs.size": 3, "str": 10, "returnValue.add": 3, @@ -2589,6 +2385,7 @@ "merged": 6, "array1.size": 4, "array2.size": 2, + "<": 32, "": 19, "sObj": 4, "merged.add": 2, @@ -2604,29 +2401,37 @@ "fieldName.trim": 2, ".length": 2, "plucked": 3, + ".get": 4, "toString": 3, + "void": 9, "assertArraysAreEqual": 2, "expected": 16, "actual": 16, "//check": 2, + "to": 4, "see": 2, "one": 2, "param": 2, "is": 5, "but": 2, + "the": 4, "other": 2, "not": 3, "System.assert": 6, + "&&": 46, "ArrayUtils.toString": 12, "expected.size": 4, "actual.size": 2, "merg": 2, "list1": 15, "list2": 9, + "returnList": 11, "list1.size": 6, "list2.size": 2, + "throw": 6, "IllegalArgumentException": 5, "elmt": 8, + "returnList.add": 8, "subset": 6, "aList": 4, "count": 10, @@ -2635,6 +2440,7 @@ "size": 2, "1": 2, "list1.get": 2, + "//": 11, "//LIST/ARRAY": 1, "SORTING": 1, "//FOR": 2, @@ -2654,10 +2460,12 @@ "OBJECTS": 1, "sObjects": 1, "ISObjectComparator": 3, + "private": 10, "lo0": 6, "hi0": 8, "lo": 42, "hi": 50, + "else": 25, "comparator.compare": 12, "prs": 8, "pivot": 14, @@ -2673,10 +2481,13 @@ "toBooleanDefaultIfNull": 1, "defaultVal": 2, "toBoolean": 2, + "value": 10, "strToBoolean": 1, "StringUtils.equalsIgnoreCase": 1, "//Converts": 1, + "an": 4, "int": 1, + "a": 6, "boolean": 1, "specifying": 1, "//the": 2, @@ -2707,6 +2518,7 @@ "stdAttachments": 4, "SELECT": 1, "id": 1, + "name": 2, "FROM": 1, "Attachment": 2, "WHERE": 1, @@ -2749,77 +2561,249 @@ "str.split": 1, "split.size": 2, ".split": 1, - "isNotValidEmailAddress": 1 + "isNotValidEmailAddress": 1, + "public": 10, + "GeoUtils": 1, + "generate": 1, + "KML": 1, + "string": 7, + "given": 2, + "page": 1, + "reference": 1, + "call": 1, + "getContent": 1, + "then": 1, + "cleanup": 1, + "output.": 1, + "generateFromContent": 1, + "PageReference": 2, + "pr": 1, + "ret": 7, + "try": 1, + "pr.getContent": 1, + ".toString": 1, + "ret.replaceAll": 4, + "content": 1, + "produces": 1, + "quote": 1, + "chars": 1, + "we": 1, + "need": 1, + "escape": 1, + "these": 2, + "in": 1, + "node": 1, + "catch": 1, + "exception": 1, + "e": 2, + "system.debug": 2, + "must": 1, + "use": 1, + "ALL": 1, + "since": 1, + "many": 1, + "line": 1, + "may": 1, + "also": 1, + "Map": 33, + "": 2, + "geo_response": 1, + "accountAddressString": 2, + "account": 2, + "acct": 1, + "form": 1, + "address": 1, + "object": 1, + "adr": 9, + "acct.billingstreet": 1, + "acct.billingcity": 1, + "acct.billingstate": 1, + "acct.billingpostalcode": 2, + "acct.billingcountry": 2, + "adr.replaceAll": 4, + "testmethod": 1, + "t1": 1, + "pageRef": 3, + "Page.kmlPreviewTemplate": 1, + "Test.setCurrentPage": 1, + "system.assert": 1, + "GeoUtils.generateFromContent": 1, + "Account": 2, + "billingstreet": 1, + "billingcity": 1, + "billingstate": 1, + "billingpostalcode": 1, + "billingcountry": 1, + "insert": 1, + "system.assertEquals": 1, + "LanguageUtils": 1, + "final": 6, + "HTTP_LANGUAGE_CODE_PARAMETER_KEY": 2, + "DEFAULT_LANGUAGE_CODE": 3, + "Set": 6, + "SUPPORTED_LANGUAGE_CODES": 2, + "//Chinese": 2, + "Simplified": 1, + "Traditional": 1, + "//Dutch": 1, + "//English": 1, + "//Finnish": 1, + "//French": 1, + "//German": 1, + "//Italian": 1, + "//Japanese": 1, + "//Korean": 1, + "//Polish": 1, + "//Portuguese": 1, + "Brazilian": 1, + "//Russian": 1, + "//Spanish": 1, + "//Swedish": 1, + "//Thai": 1, + "//Czech": 1, + "//Danish": 1, + "//Hungarian": 1, + "//Indonesian": 1, + "//Turkish": 1, + "": 29, + "DEFAULTS": 1, + "getLangCodeByHttpParam": 4, + "LANGUAGE_CODE_SET": 1, + "getSuppLangCodeSet": 2, + "ApexPages.currentPage": 4, + ".getParameters": 2, + "LANGUAGE_HTTP_PARAMETER": 7, + "StringUtils.lowerCase": 3, + "StringUtils.replaceChars": 2, + "//underscore": 1, + "//dash": 1, + "DEFAULTS.containsKey": 3, + "DEFAULTS.get": 3, + "StringUtils.isNotBlank": 1, + "SUPPORTED_LANGUAGE_CODES.contains": 2, + "getLangCodeByBrowser": 4, + "LANGUAGES_FROM_BROWSER_AS_STRING": 2, + ".getHeaders": 1, + "LANGUAGES_FROM_BROWSER_AS_LIST": 3, + "splitAndFilterAcceptLanguageHeader": 2, + "LANGUAGES_FROM_BROWSER_AS_LIST.size": 1, + "languageFromBrowser": 6, + "getLangCodeByUser": 3, + "UserInfo.getLanguage": 1, + "getLangCodeByHttpParamOrIfNullThenBrowser": 1, + "StringUtils.defaultString": 4, + "getLangCodeByHttpParamOrIfNullThenUser": 1, + "getLangCodeByBrowserOrIfNullThenHttpParam": 1, + "getLangCodeByBrowserOrIfNullThenUser": 1, + "header": 2, + "tokens": 3, + "StringUtils.split": 1, + "token": 7, + "token.contains": 1, + "token.substring": 1, + "token.indexOf": 1, + "StringUtils.length": 1, + "StringUtils.substring": 1, + "langCodes": 2, + "langCode": 3, + "langCodes.add": 1, + "getLanguageName": 1, + "displayLanguageCode": 13, + "languageCode": 2, + "translatedLanguageNames.get": 2, + "filterLanguageCode": 4, + "getAllLanguages": 3, + "translatedLanguageNames.containsKey": 1, + "translatedLanguageNames": 1, + "TwilioAPI": 2, + "MissingTwilioConfigCustomSettingsException": 2, + "extends": 1, + "Exception": 1, + "TwilioRestClient": 5, + "client": 2, + "getDefaultClient": 2, + "TwilioConfig__c": 5, + "twilioCfg": 7, + "getTwilioConfig": 3, + "TwilioAPI.client": 2, + "twilioCfg.AccountSid__c": 3, + "twilioCfg.AuthToken__c": 3, + "TwilioAccount": 1, + "getDefaultAccount": 1, + ".getAccount": 2, + "TwilioCapability": 2, + "createCapability": 1, + "createClient": 1, + "accountSid": 2, + "authToken": 2, + "Test.isRunningTest": 1, + "dummy": 2, + "sid": 1, + "TwilioConfig__c.getOrgDefaults": 1, + "@isTest": 1, + "test_TwilioAPI": 1, + "System.assertEquals": 5, + "TwilioAPI.getTwilioConfig": 2, + ".AccountSid__c": 1, + ".AuthToken__c": 1, + "TwilioAPI.getDefaultClient": 2, + ".getAccountSid": 1, + ".getSid": 2, + "TwilioAPI.getDefaultAccount": 1 }, "AppleScript": { - "on": 18, - "isVoiceOverRunning": 3, - "(": 89, - ")": 88, "set": 108, - "isRunning": 3, + "windowWidth": 3, "to": 128, - "false": 9, + "windowHeight": 3, + "delay": 3, + "AppleScript": 2, + "s": 3, + "text": 13, + "item": 13, + "delimiters": 1, "tell": 40, "application": 16, + "screen_width": 2, + "(": 89, + "do": 4, + "JavaScript": 2, + "in": 13, + "document": 2, + ")": 88, + "screen_height": 2, + "end": 67, + "myFrontMost": 3, "name": 8, "of": 72, + "first": 1, "processes": 2, - "contains": 1, - "end": 67, - "return": 16, - "isVoiceOverRunningWithAppleScript": 3, - "if": 50, - "then": 28, - "isRunningWithAppleScript": 3, - "true": 8, - "-": 57, + "whose": 1, + "frontmost": 1, "is": 40, - "AppleScript": 2, - "enabled": 2, - "VoiceOver": 1, - "try": 10, - "x": 1, + "true": 8, + "{": 32, + "desktopTop": 2, + "desktopLeft": 1, + "desktopRight": 1, + "desktopBottom": 1, + "}": 32, "bounds": 2, - "vo": 1, - "cursor": 1, + "desktop": 1, + "try": 10, + "process": 5, + "w": 5, + "h": 4, + "size": 5, + "drawer": 2, + "window": 5, + "on": 18, "error": 3, - "currentDate": 3, - "current": 3, - "date": 1, - "amPM": 4, - "currentHour": 9, - "s": 3, - "minutes": 2, - "and": 7, - "<": 2, - "else": 14, - "make": 3, - "below": 1, - "sound": 1, - "nice": 1, - "currentMinutes": 4, - "&": 63, - "as": 27, - "text": 13, - "ensure": 1, - "nn": 2, - "gets": 1, - "AM": 1, - "equal": 3, - "readjust": 1, - "for": 5, - "hour": 1, - "time": 1, - "currentTime": 3, - "day": 1, - "output": 1, - "say": 1, - "delay": 3, + "position": 1, + "-": 57, + "/": 2, "property": 7, "type_list": 6, - "{": 32, - "}": 32, "extension_list": 6, "html": 2, "not": 5, @@ -2829,6 +2813,7 @@ "FinderSelection": 4, "the": 56, "selection": 2, + "as": 27, "alias": 8, "list": 9, "FS": 10, @@ -2842,11 +2827,13 @@ "SelectionCount": 6, "number": 6, "count": 10, + "if": 50, + "then": 28, "userPicksFolder": 6, + "else": 14, "MyPath": 4, "path": 6, "me": 2, - "item": 13, "If": 2, "I": 2, "m": 2, @@ -2867,9 +2854,11 @@ "from": 9, "this_item": 14, "info": 4, + "for": 5, "folder": 10, "processFolder": 8, - "in": 13, + "false": 9, + "and": 7, "or": 6, "extension": 4, "theFilePath": 8, @@ -2877,28 +2866,28 @@ "thePOSIXFilePath": 8, "POSIX": 4, "processFile": 8, - "process": 5, "folders": 2, "theFolder": 6, "without": 2, "invisibles": 2, - "need": 1, - "pass": 1, - "URL": 1, - "Terminal": 1, + "&": 63, "thePOSIXFileName": 6, "terminalCommand": 6, "convertCommand": 4, "newFileName": 4, - "do": 4, "shell": 2, "script": 2, + "need": 1, + "pass": 1, + "URL": 1, + "Terminal": 1, "localMailboxes": 3, "every": 3, "mailbox": 2, "greater": 5, "than": 6, "messageCountDisplay": 5, + "return": 16, "my": 3, "getMessageCountsForMailboxes": 4, "everyAccount": 2, @@ -2906,6 +2895,7 @@ "eachAccount": 3, "accountMailboxes": 3, "outputMessage": 2, + "make": 3, "new": 2, "outgoing": 2, "message": 2, @@ -2914,7 +2904,6 @@ "subject": 1, "visible": 2, "font": 2, - "size": 5, "theMailboxes": 2, "mailboxes": 1, "returns": 2, @@ -2934,52 +2923,20 @@ "paddedString": 5, "character": 2, "less": 1, + "equal": 3, "paddingLength": 2, "times": 1, "space": 1, - "activate": 3, - "pane": 4, - "UI": 1, - "elements": 1, - "tab": 1, - "group": 1, - "window": 5, - "click": 1, - "radio": 1, - "button": 4, - "get": 1, - "value": 1, - "field": 1, - "display": 4, - "dialog": 4, - "windowWidth": 3, - "windowHeight": 3, - "delimiters": 1, - "screen_width": 2, - "JavaScript": 2, - "document": 2, - "screen_height": 2, - "myFrontMost": 3, - "first": 1, - "whose": 1, - "frontmost": 1, - "desktopTop": 2, - "desktopLeft": 1, - "desktopRight": 1, - "desktopBottom": 1, - "desktop": 1, - "w": 5, - "h": 4, - "drawer": 2, - "position": 1, - "/": 2, "lowFontSize": 9, "highFontSize": 6, "messageText": 4, "userInput": 4, + "display": 4, + "dialog": 4, "default": 4, "answer": 3, "buttons": 3, + "button": 4, "returned": 5, "minimumFontSize": 4, "newFontSize": 6, @@ -2987,12 +2944,55 @@ "theText": 3, "exit": 1, "fontList": 2, + "activate": 3, "crazyTextMessage": 2, "eachCharacter": 4, "characters": 1, "some": 1, "random": 4, - "color": 1 + "color": 1, + "current": 3, + "pane": 4, + "UI": 1, + "elements": 1, + "enabled": 2, + "tab": 1, + "group": 1, + "click": 1, + "radio": 1, + "get": 1, + "value": 1, + "field": 1, + "isVoiceOverRunning": 3, + "isRunning": 3, + "contains": 1, + "isVoiceOverRunningWithAppleScript": 3, + "isRunningWithAppleScript": 3, + "VoiceOver": 1, + "x": 1, + "vo": 1, + "cursor": 1, + "currentDate": 3, + "date": 1, + "amPM": 4, + "currentHour": 9, + "minutes": 2, + "<": 2, + "below": 1, + "sound": 1, + "nice": 1, + "currentMinutes": 4, + "ensure": 1, + "nn": 2, + "gets": 1, + "AM": 1, + "readjust": 1, + "hour": 1, + "time": 1, + "currentTime": 3, + "day": 1, + "output": 1, + "say": 1 }, "Arduino": { "void": 2, @@ -3007,12 +3007,45 @@ "Serial.print": 1 }, "AsciiDoc": { + "Gregory": 2, + "Rom": 2, + "has": 2, + "written": 2, + "an": 2, "AsciiDoc": 3, + "plugin": 2, + "for": 2, + "the": 2, + "Redmine": 2, + "project": 2, + "management": 2, + "application.": 2, + "https": 1, + "//github.com/foo": 1, + "-": 4, + "users/foo": 1, + "vicmd": 1, + "gif": 1, + "tag": 1, + "rom": 2, + "[": 2, + "]": 2, + "end": 1, + "berschrift": 1, + "*": 4, + "Codierungen": 1, + "sind": 1, + "verr": 1, + "ckt": 1, + "auf": 1, + "lteren": 1, + "Versionen": 1, + "von": 1, + "Ruby": 1, "Home": 1, "Page": 1, "Example": 1, "Articles": 1, - "-": 4, "Item": 6, "Document": 1, "Title": 1, @@ -3038,103 +3071,49 @@ "B": 2, "B*": 1, ".Section": 1, - "list": 1, - "*": 4, - "Gregory": 2, - "Rom": 2, - "has": 2, - "written": 2, - "an": 2, - "plugin": 2, - "for": 2, - "the": 2, - "Redmine": 2, - "project": 2, - "management": 2, - "application.": 2, - "https": 1, - "//github.com/foo": 1, - "users/foo": 1, - "vicmd": 1, - "gif": 1, - "tag": 1, - "rom": 2, - "[": 2, - "]": 2, - "end": 1, - "berschrift": 1, - "Codierungen": 1, - "sind": 1, - "verr": 1, - "ckt": 1, - "auf": 1, - "lteren": 1, - "Versionen": 1, - "von": 1, - "Ruby": 1 + "list": 1 }, "AspectJ": { "package": 2, - "aspects.caching": 1, + "com.blogspot.miguelinlas3.aspectj.cache": 1, ";": 29, "import": 5, "java.util.Map": 2, - "public": 6, - "abstract": 3, - "aspect": 2, - "OptimizeRecursionCache": 2, - "{": 11, - "@SuppressWarnings": 3, - "(": 46, - ")": 46, - "private": 1, - "Map": 3, - "_cache": 2, - "getCache": 2, - "}": 11, - "pointcut": 3, - "operation": 4, - "Object": 15, - "o": 16, - "topLevelOperation": 4, - "&&": 2, - "cflowbelow": 1, - "before": 1, - "System.out.println": 5, - "+": 7, - "around": 2, - "cachedValue": 4, - "_cache.get": 1, - "if": 2, - "null": 1, - "return": 5, - "proceed": 2, - "after": 2, - "returning": 2, - "result": 3, - "_cache.put": 1, - "_cache.size": 1, - "com.blogspot.miguelinlas3.aspectj.cache": 1, "java.util.WeakHashMap": 1, "org.aspectj.lang.JoinPoint": 1, "com.blogspot.miguelinlas3.aspectj.cache.marker.Cachable": 1, + "public": 6, + "aspect": 2, "CacheAspect": 1, + "{": 11, + "pointcut": 3, "cache": 3, + "(": 46, "Cachable": 2, "cachable": 5, + ")": 46, "execution": 1, "@Cachable": 2, "*": 2, "..": 1, + "&&": 2, "@annotation": 1, + "Object": 15, + "around": 2, "String": 3, "evaluatedKey": 6, "this.evaluateKey": 1, "cachable.scriptKey": 1, "thisJoinPoint": 1, + "if": 2, "cache.containsKey": 1, + "System.out.println": 5, + "+": 7, + "return": 5, "this.cache.get": 1, + "}": 11, "value": 3, + "proceed": 2, "cache.put": 1, "protected": 2, "evaluateKey": 1, @@ -3153,9 +3132,30 @@ "scripting": 1, "in": 1, "annotation": 1, + "Map": 3, "": 2, "new": 1, - "WeakHashMap": 1 + "WeakHashMap": 1, + "aspects.caching": 1, + "abstract": 3, + "OptimizeRecursionCache": 2, + "@SuppressWarnings": 3, + "private": 1, + "_cache": 2, + "getCache": 2, + "operation": 4, + "o": 16, + "topLevelOperation": 4, + "cflowbelow": 1, + "before": 1, + "cachedValue": 4, + "_cache.get": 1, + "null": 1, + "after": 2, + "returning": 2, + "result": 3, + "_cache.put": 1, + "_cache.size": 1 }, "Assembly": { ";": 20, @@ -3172,78 +3172,606 @@ "All": 4, "rights": 4, "reserved.": 4, - "simple_instruction_except64": 1, - "cmp": 1088, + "xor": 52, + "eax": 510, + "mov": 1253, "[": 2026, - "code_type": 106, + "stub_size": 1, "]": 2026, - "je": 485, - "illegal_instruction": 48, - "simple_instruction": 6, - "stos": 107, - "byte": 549, + "current_pass": 16, + "ax": 87, + "resolver_flags": 1, + "number_of_sections": 1, + "actual_fixups_size": 1, + "assembler_loop": 2, + "labels_list": 3, + "tagged_blocks": 23, + "additional_memory": 6, + "free_additional_memory": 2, + "additional_memory_end": 9, + "structures_buffer": 9, + "esi": 619, + "source_start": 1, "edi": 250, + "code_start": 2, + "dword": 87, + "adjustment": 4, + "+": 232, + "addressing_space": 17, + "error_line": 16, + "counter": 13, + "format_flags": 2, + "number_of_relocations": 1, + "undefined_data_end": 4, + "file_extension": 1, + "next_pass_needed": 16, + "al": 1174, + "output_format": 3, + "adjustment_sign": 2, + "code_type": 106, + "call": 845, + "init_addressing_space": 6, + "pass_loop": 2, + "assemble_line": 3, + "jnc": 11, + "cmp": 1088, + "je": 485, + "pass_done": 2, + "sub": 64, + "h": 376, + "current_line": 24, "jmp": 450, - "instruction_assembled": 138, - "simple_instruction_only64": 1, + "missing_end_directive": 7, + "close_pass": 1, + "check_symbols": 2, + "memory_end": 7, + "jae": 34, + "symbols_checked": 2, + "test": 95, + "byte": 549, + "jz": 107, + "symbol_defined_ok": 5, + "cx": 42, "jne": 485, + "and": 50, + "not": 42, + "or": 194, + "use_prediction_ok": 5, + "jnz": 125, + "check_use_prediction": 2, + "use_misprediction": 3, + "check_next_symbol": 5, + "define_misprediction": 4, + "check_define_prediction": 2, + "add": 76, + "LABEL_STRUCTURE_SIZE": 1, + "next_pass": 3, + "assemble_ok": 2, + "error": 7, + "undefined_symbol": 2, + "error_confirmed": 3, + "error_info": 2, + "error_handler": 3, + "esp": 14, + "ret": 70, + "inc": 87, + "passes_limit": 3, + "code_cannot_be_generated": 1, + "create_addressing_space": 1, + "ebx": 336, + "Ah": 25, + "illegal_instruction": 48, + "Ch": 11, + "jbe": 11, + "out_of_memory": 19, + "ja": 28, + "lods": 366, + "assemble_instruction": 2, + "jb": 34, + "source_end": 2, + "define_label": 2, + "define_constant": 2, + "label_addressing_space": 2, + "Fh": 73, + "new_line": 2, + "code_type_setting": 2, + "segment_prefix": 2, + "instruction_assembled": 138, + "prefixed_instruction": 11, + "symbols_file": 4, + "continue_line": 8, + "line_assembled": 3, + "invalid_use_of_symbol": 17, + "reserved_word_used_as_symbol": 6, + "label_size": 5, + "make_label": 3, + "edx": 219, + "cl": 42, + "ebp": 49, + "ds": 21, + "sbb": 9, + "jp": 2, + "label_value_ok": 2, + "recoverable_overflow": 4, + "address_sign": 4, + "make_virtual_label": 2, + "xchg": 31, + "ch": 55, + "shr": 30, + "neg": 4, + "setnz": 5, + "ah": 229, + "finish_label": 2, + "setne": 14, + "finish_label_symbol": 2, + "b": 30, + "label_symbol_ok": 2, + "new_label": 2, + "symbol_already_defined": 3, + "btr": 2, + "jc": 28, + "requalified_label": 2, + "label_made": 4, + "push": 150, + "get_constant_value": 4, + "dl": 58, + "size_override": 7, + "get_value": 2, + "pop": 99, + "bl": 124, + "ecx": 153, + "constant_referencing_mode_ok": 2, + "value_type": 42, + "make_constant": 2, + "value_sign": 3, + "constant_symbol_ok": 2, + "symbol_identifier": 4, + "new_constant": 2, + "redeclare_constant": 2, + "requalified_constant": 2, + "make_addressing_space_label": 3, + "dx": 27, + "operand_size": 121, + "operand_prefix": 9, + "opcode_prefix": 30, + "rex_prefix": 9, + "vex_required": 2, + "vex_register": 1, + "immediate_size": 9, + "instruction_handler": 32, + "movzx": 13, + "word": 79, + "extra_characters_on_line": 8, + "clc": 11, + "dec": 30, + "stc": 9, + "org_directive": 1, + "invalid_argument": 28, + "invalid_value": 21, + "get_qword_value": 5, + "in_virtual": 2, + "org_space_ok": 2, + "close_virtual_addressing_space": 3, + "org_value_ok": 2, + "bts": 1, + "label_directive": 1, + "get_label_size": 2, + "label_size_ok": 2, + "get_free_label_value": 2, + "get_address_value": 3, + "bh": 34, + "bp": 2, + "shl": 17, + "bx": 8, + "make_free_label": 1, + "address_symbol": 2, + "load_directive": 1, + "load_size_ok": 2, + "value": 38, + "get_data_point": 3, + "value_loaded": 2, + "rep": 7, + "movs": 8, + "get_data_address": 5, + "addressing_space_unavailable": 3, + "symbol_out_of_scope": 1, + "get_addressing_space": 3, + "store_label_reference": 1, + "calculate_relative_offset": 2, + "data_address_type_ok": 2, + "adc": 9, + "bad_data_address": 3, + "store_directive": 1, + "sized_store": 2, + "get_byte_value": 23, + "store_value_ok": 2, + "undefined_data_start": 3, + "display_directive": 2, + "display_byte": 2, + "stos": 107, + "display_next": 2, + "show_display_buffer": 2, + "display_done": 3, + "display_messages": 2, + "skip_block": 2, + "display_block": 4, + "times_directive": 1, + "get_count_value": 6, + "zero_times": 3, + "times_argument_ok": 2, + "counter_limit": 7, + "times_loop": 2, + "stack_overflow": 2, + "stack_limit": 2, + "times_done": 2, + "skip_symbol": 5, + "virtual_directive": 3, + "virtual_at_current": 2, + "set_virtual": 2, + "allocate_structure_data": 5, + "find_structure_data": 6, + "scan_structures": 2, + "no_such_structure": 2, + "structure_data_found": 2, + "end_virtual": 2, + "unexpected_instruction": 18, + "remove_structure_data": 7, + "lea": 8, + "std": 2, + "cld": 2, + "addressing_space_closed": 2, + "virtual_byte_ok": 2, + "virtual_word_ok": 2, + "repeat_directive": 7, + "zero_repeat": 2, + "end_repeat": 2, + "continue_repeating": 2, + "stop_repeat": 2, + "find_end_repeat": 4, + "find_structure_end": 5, + "while_directive": 7, + "do_while": 2, + "calculate_logical_expression": 3, + "while_true": 2, + "stop_while": 2, + "find_end_while": 3, + "end_while": 2, + "too_many_repeats": 1, + "if_directive": 13, + "if_true": 2, + "find_else": 4, + "else_true": 3, + "make_if_structure": 2, + "else_directive": 3, + "found_else": 2, + "skip_else": 3, + "find_end_if": 3, + "end_if": 2, + "else_found": 2, + "find_end_directive": 10, + "no_end_directive": 2, + "skip_labels": 2, + "labels_ok": 2, + "prefix_instruction": 2, + "skip_repeat": 2, + "skip_while": 2, + "skip_if": 2, + "structure_end": 4, + "end_directive": 2, + "skip_if_block": 4, + "if_block_skipped": 2, + "skip_after_else": 3, + "data_directive": 1, + "end_data": 1, + "break_directive": 1, + "find_breakable_structure": 4, + "break_repeat": 2, + "break_while": 2, + "break_if": 2, + "data_bytes": 1, + "define_data": 8, + "get_byte": 2, + "undefined_data": 7, + "get_string": 2, + "mark_undefined_data": 2, + "undefined_data_ok": 2, + "simple_data_value": 3, + "skip_expression": 1, + "duplicate_zero_times": 2, + "duplicate_single_data_value": 3, + "duplicate_data": 2, + "duplicated_values": 2, + "near": 3, + "data_defined": 5, + "skip_single_data_value": 2, + "skip_data_value": 2, + "data_unicode": 1, + "base_code": 195, + "define_words": 2, + "data_words": 1, + "get_word": 2, + "scas": 10, + "word_data_value": 2, + "word_string": 2, + "get_word_value": 19, + "mark_relocation": 26, + "jecxz": 1, + "word_string_ok": 2, + "ecx*2": 1, + "copy_word_string": 2, + "loop": 2, + "data_dwords": 1, + "get_dword": 2, + "get_dword_value": 13, + "complex_dword": 2, + "invalid_operand": 239, + "data_pwords": 1, + "get_pword": 2, + "get_pword_value": 1, + "complex_pword": 2, + "data_qwords": 1, + "get_qword": 2, + "data_twords": 1, + "get_tword": 2, + "complex_tword": 2, + "fp_zero_tword": 2, + "FFFh": 3, + "jo": 2, + "value_out_of_range": 10, + "jge": 5, + "jg": 1, + "tword_exp_ok": 3, + "large_shift": 2, + "shrd": 1, + "tword_mantissa_shift_done": 2, + "store_shifted_mantissa": 2, + "data_file": 2, + "open_binary_file": 2, + "lseek": 5, + "position_ok": 2, + "size_ok": 2, + "read": 3, + "error_reading_file": 1, + "close": 3, + "find_current_source_path": 2, + "get_current_path": 3, + "lodsb": 12, + "stosb": 6, + "cut_current_path": 1, + "current_path_ok": 1, + "/": 1, + ".": 7, + "invalid_align_value": 3, + "section_not_aligned_enough": 4, + "make_alignment": 3, + "pe_alignment": 2, + "nops": 2, + "reserved_data": 2, + "nops_stosb_ok": 2, + "nops_stosw_ok": 2, + "err_directive": 1, + "invoked_error": 2, + "assert_directive": 1, + "assertion_failed": 1, + "interface": 2, + "for": 2, + "Win32": 2, + "format": 1, + "PE": 1, + "console": 1, + "section": 4, + "code": 1, + "readable": 4, + "executable": 1, + "start": 1, + "con_handle": 8, + "STD_OUTPUT_HANDLE": 2, + "_logo": 2, + "display_string": 19, + "get_params": 2, + "information": 2, + "init_memory": 2, + "_memory_prefix": 2, + "memory_start": 4, + "display_number": 8, + "_memory_suffix": 2, + "GetTickCount": 3, + "start_time": 3, + "preprocessor": 1, + "parser": 1, + "formatter": 1, + "display_user_messages": 3, + "_passes_suffix": 2, + "div": 8, + "display_bytes_count": 2, + "display_character": 6, + "_seconds_suffix": 2, + "written_size": 1, + "_bytes_suffix": 2, + "exit_program": 5, + "_usage": 2, + "input_file": 4, + "output_file": 3, + "memory_setting": 4, + "GetCommandLine": 2, + "params": 2, + "find_command_start": 2, + "skip_quoted_name": 3, + "skip_name": 2, + "find_param": 7, + "all_params": 5, + "option_param": 2, + "Dh": 19, + "get_output_file": 2, + "process_param": 3, + "bad_params": 11, + "string_param": 3, + "copy_param": 2, + "param_end": 6, + "string_param_end": 2, + "memory_option": 4, + "passes_option": 4, + "symbols_option": 3, + "get_option_value": 3, + "get_option_digit": 2, + "option_value_ok": 4, + "invalid_option_value": 5, + "imul": 1, + "find_symbols_file_name": 2, + "include": 15, + "data": 3, + "writeable": 2, + "_copyright": 1, + "db": 35, + "VERSION_STRING": 1, + "align": 1, + "dd": 22, + "bytes_count": 8, + "displayed_count": 4, + "character": 3, + "last_displayed": 5, + "rb": 4, + "options": 1, + "buffer": 14, + "stack": 1, + "import": 1, + "rva": 16, + "kernel_name": 2, + "kernel_table": 2, + "ExitProcess": 2, + "_ExitProcess": 2, + "CreateFile": 3, + "_CreateFileA": 2, + "ReadFile": 2, + "_ReadFile": 2, + "WriteFile": 6, + "_WriteFile": 2, + "CloseHandle": 2, + "_CloseHandle": 2, + "SetFilePointer": 2, + "_SetFilePointer": 2, + "_GetCommandLineA": 2, + "GetEnvironmentVariable": 2, + "_GetEnvironmentVariable": 2, + "GetStdHandle": 5, + "_GetStdHandle": 2, + "VirtualAlloc": 2, + "_VirtualAlloc": 2, + "VirtualFree": 2, + "_VirtualFree": 2, + "_GetTickCount": 2, + "GetSystemTime": 2, + "_GetSystemTime": 2, + "GlobalMemoryStatus": 2, + "_GlobalMemoryStatus": 2, + "dw": 14, + "fixups": 1, + "discardable": 1, + "CREATE_NEW": 1, + "CREATE_ALWAYS": 2, + "OPEN_EXISTING": 2, + "OPEN_ALWAYS": 1, + "TRUNCATE_EXISTING": 1, + "FILE_SHARE_READ": 3, + "FILE_SHARE_WRITE": 1, + "FILE_SHARE_DELETE": 1, + "GENERIC_READ": 2, + "GENERIC_WRITE": 2, + "STD_INPUT_HANDLE": 1, + "FFFFFFF6h": 1, + "FFFFFFF5h": 1, + "STD_ERROR_HANDLE": 3, + "FFFFFFF4h": 1, + "MEM_COMMIT": 2, + "MEM_RESERVE": 1, + "MEM_DECOMMIT": 1, + "MEM_RELEASE": 2, + "MEM_FREE": 1, + "MEM_PRIVATE": 1, + "MEM_MAPPED": 1, + "MEM_RESET": 1, + "MEM_TOP_DOWN": 1, + "PAGE_NOACCESS": 1, + "PAGE_READONLY": 1, + "PAGE_READWRITE": 2, + "PAGE_WRITECOPY": 1, + "PAGE_EXECUTE": 1, + "PAGE_EXECUTE_READ": 1, + "PAGE_EXECUTE_READWRITE": 1, + "PAGE_EXECUTE_WRITECOPY": 1, + "PAGE_GUARD": 1, + "PAGE_NOCACHE": 1, + "allocate_memory": 4, + "jl": 13, + "large_memory": 3, + "not_enough_memory": 2, + "do_exit": 2, + "get_environment_variable": 1, + "buffer_for_variable_ok": 2, + "open": 2, + "file_error": 6, + "create": 1, + "write": 1, + "repne": 1, + "scasb": 1, + "display_loop": 2, + "display_digit": 3, + "digit_ok": 2, + "line_break_ok": 4, + "make_line_break": 2, + "A0Dh": 2, + "D0Ah": 1, + "take_last_two_characters": 2, + "block_displayed": 2, + "block_ok": 2, + "fatal_error": 1, + "error_prefix": 3, + "error_suffix": 3, + "FFh": 4, + "assembler_error": 1, + "get_error_lines": 2, + "get_next_error_line": 2, + "display_error_line": 3, + "find_definition_origin": 2, + "line_number_start": 3, + "FFFFFFFh": 2, + "line_number_ok": 2, + "line_data_start": 2, + "line_data_displayed": 2, + "get_line_data": 2, + "display_line_data": 5, + "cr_lf": 2, + "make_timestamp": 1, + "mul": 5, + "months_correction": 2, + "day_correction_ok": 4, + "day_correction": 2, + "simple_instruction_except64": 1, + "simple_instruction": 6, + "simple_instruction_only64": 1, "simple_instruction_16bit_except64": 1, "simple_instruction_16bit": 2, "size_prefix": 3, - "mov": 1253, - "ah": 229, - "al": 1174, - "h": 376, - "word": 79, "simple_instruction_32bit_except64": 1, "simple_instruction_32bit": 6, "iret_instruction": 1, "simple_instruction_64bit": 2, "simple_extended_instruction_64bit": 1, - "inc": 87, "simple_extended_instruction": 1, - "Fh": 73, - "prefix_instruction": 2, - "or": 194, - "prefixed_instruction": 11, - "continue_line": 8, - "segment_prefix": 2, - "shr": 30, - "and": 50, - "b": 30, "segment_register": 7, - "call": 845, "store_segment_prefix": 1, "int_instruction": 1, - "lods": 366, - "esi": 619, "get_size_operator": 137, - "ja": 28, "invalid_operand_size": 131, - "invalid_operand": 239, - "get_byte_value": 23, - "test": 95, - "eax": 510, "jns": 1, "int_imm_ok": 2, - "recoverable_overflow": 4, "CDh": 1, "aa_instruction": 1, - "push": 150, - "bl": 124, "aa_store": 2, - "xor": 52, - "xchg": 31, - "operand_size": 121, - "pop": 99, "basic_instruction": 1, - "base_code": 195, "basic_reg": 2, "basic_mem": 1, "get_address": 62, - "edx": 219, - "ebx": 336, - "ecx": 153, "basic_mem_imm": 2, "basic_mem_reg": 1, "convert_register": 60, @@ -3251,7 +3779,6 @@ "instruction_ready": 72, "operand_autodetect": 47, "store_instruction": 3, - "jb": 34, "basic_mem_imm_nosize": 2, "basic_mem_imm_8bit": 2, "basic_mem_imm_16bit": 2, @@ -3261,33 +3788,22 @@ "long_immediate_not_encodable": 14, "operand_64bit": 18, "get_simm32": 10, - "value_type": 42, - "jae": 34, "basic_mem_imm_32bit_ok": 2, "recoverable_unknown_size": 19, - "value": 38, "store_instruction_with_imm8": 11, "operand_16bit": 25, - "get_word_value": 19, - "ax": 87, "basic_mem_imm_16bit_store": 3, "basic_mem_simm_8bit": 5, "store_instruction_with_imm16": 4, "operand_32bit": 27, - "get_dword_value": 13, - "dword": 87, "basic_mem_imm_32bit_store": 3, "store_instruction_with_imm32": 4, - "get_qword_value": 5, "cdq": 11, - "value_out_of_range": 10, "get_simm32_ok": 2, - "ret": 70, "basic_reg_reg": 2, "basic_reg_imm": 2, "basic_reg_mem": 1, "basic_reg_mem_8bit": 2, - "add": 76, "nomem_instruction_ready": 53, "store_nomem_instruction": 19, "basic_reg_imm_8bit": 2, @@ -3295,23 +3811,16 @@ "basic_reg_imm_32bit": 2, "basic_reg_imm_64bit": 1, "basic_reg_imm_32bit_ok": 2, - "dl": 58, - "jz": 107, "basic_al_imm": 2, - "dx": 27, "basic_reg_imm_16bit_store": 3, "basic_reg_simm_8bit": 5, "basic_ax_imm": 2, "basic_store_imm_16bit": 2, - "mark_relocation": 26, "store_instruction_code": 26, "basic_reg_imm_32bit_store": 3, "basic_eax_imm": 2, "basic_store_imm_32bit": 2, - "error_line": 16, "ignore_unknown_size": 2, - "current_line": 24, - "error": 7, "operand_size_not_specified": 1, "single_operand_instruction": 1, "F6h": 4, @@ -3328,11 +3837,8 @@ "mov_mem_general_reg": 2, "mov_mem_sreg": 2, "mov_mem_reg_8bit": 2, - "bh": 34, "mov_mem_ax": 2, - "jnz": 125, "mov_mem_al": 1, - "ch": 55, "mov_mem_address16_al": 3, "mov_mem_address32_al": 3, "mov_mem_address64_al": 3, @@ -3345,16 +3851,13 @@ "address_16bit_prefix": 11, "store_mov_address16": 4, "invalid_address": 32, - "jge": 5, "store_mov_address64": 4, "store_address_64bit_value": 1, "mov_mem_address16_ax": 3, "mov_mem_address32_ax": 3, "mov_mem_address64_ax": 3, "A3h": 3, - "sub": 64, "mov_mem_sreg_store": 2, - "Ch": 11, "mov_mem_imm_nosize": 2, "mov_mem_imm_8bit": 2, "mov_mem_imm_16bit": 2, @@ -3373,7 +3876,6 @@ "mov_reg_creg": 2, "mov_reg_dreg": 2, "mov_reg_treg": 2, - "dec": 30, "mov_reg_sreg64": 2, "mov_reg_sreg32": 2, "mov_reg_sreg_store": 3, @@ -3403,7 +3905,6 @@ "B0h": 5, "mov_store_imm_32bit": 2, "mov_reg_imm_prefix_ok": 2, - "rex_prefix": 9, "mov_creg": 2, "mov_dreg": 2, "mov_treg": 2, @@ -3462,8 +3963,6 @@ "push_mem_32bit": 3, "push_mem_64bit": 3, "push_mem_store": 4, - "not": 42, - "FFh": 4, "push_done": 5, "push_sreg": 2, "push_reg_ok": 2, @@ -3476,9 +3975,7 @@ "push_sreg32": 3, "push_sreg64": 3, "push_sreg_store": 4, - "jc": 28, "push_sreg_386": 2, - "shl": 17, "push_imm_size_ok": 3, "push_imm_16bit": 2, "push_imm_32bit": 2, @@ -3487,12 +3984,8 @@ "push_imm_optimized_32bit": 3, "push_imm_optimized_64bit": 2, "push_imm_32bit_store": 8, - "jl": 13, "push_imm_8bit": 3, "push_imm_16bit_store": 4, - "Ah": 25, - "size_override": 7, - "operand_prefix": 9, "pop_instruction": 1, "pop_next": 2, "pop_reg": 2, @@ -3532,14 +4025,11 @@ "bound_store": 2, "enter_instruction": 1, "enter_imm16_size_ok": 2, - "next_pass_needed": 16, "enter_imm16_ok": 2, - "invalid_use_of_symbol": 17, "js": 3, "enter_imm8_size_ok": 2, "enter_imm8_ok": 2, "C8h": 2, - "bx": 8, "ret_instruction_only64": 1, "ret_instruction": 5, "ret_instruction_32bit_except64": 1, @@ -3552,7 +4042,6 @@ "ret_imm_ok": 2, "ret_imm_store": 2, "lea_instruction": 1, - "Dh": 19, "ls_instruction": 1, "les_instruction": 2, "lds_instruction": 2, @@ -3608,7 +4097,6 @@ "bt_reg": 2, "bt_mem_imm": 3, "bt_mem_reg": 2, - "+": 232, "bt_mem_imm_size_ok": 2, "bt_mem_imm_nosize": 2, "bt_mem_imm_store": 2, @@ -3621,9 +4109,6 @@ "get_reg_mem": 2, "bs_reg_reg": 2, "get_reg_reg": 2, - "invalid_argument": 28, - "clc": 11, - "stc": 9, "imul_instruction": 1, "imul_reg": 2, "imul_mem": 1, @@ -3701,8 +4186,6 @@ "jmp_reg_16bit": 2, "jmp_reg_32bit": 2, "jmp_reg_64bit": 1, - "invalid_value": 21, - "skip_symbol": 5, "jmp_far": 2, "jmp_near": 1, "jmp_imm_16bit": 3, @@ -3718,20 +4201,15 @@ "jmp_imm_32bit_ok": 2, "relative_jump_out_of_range": 6, "get_address_qword_value": 3, - "jnc": 11, "EBh": 1, "get_address_word_value": 3, "jmp_imm_16bit_prefix_ok": 2, "cwde": 3, - "ebp": 49, - "addressing_space": 17, - "calculate_relative_offset": 2, "forced_short": 2, "no_short_jump": 4, "short_jump": 4, "jmp_short_value_type_ok": 2, "jump_out_of_range": 3, - "symbol_identifier": 4, "jmp_far_16bit": 2, "jmp_far_32bit": 3, "jmp_far_segment": 2, @@ -3754,7 +4232,6 @@ "loop_jump_32bit_prefix_ok": 2, "loop_counter_size": 4, "make_loop_jump": 3, - "scas": 10, "loop_counter_size_ok": 2, "loop_jump_16bit_prefix_ok": 2, "movs_instruction": 1, @@ -3792,7 +4269,6 @@ "xlat_address_32bit": 2, "xlat_store": 3, "D7h": 1, - "jbe": 11, "pm_word_instruction": 1, "pm_reg": 2, "pm_mem": 2, @@ -3909,14 +4385,11 @@ "pmovmskb_reg_size_ok": 2, "mmx_nomem_imm8": 7, "mmx_imm8": 6, - "cl": 42, "append_imm8": 2, - "stosb": 6, "pinsrw_instruction": 1, "pinsrw_mmreg_reg": 2, "pshufw_instruction": 1, "mmx_size": 30, - "opcode_prefix": 30, "pshuf_instruction": 2, "pshufd_instruction": 1, "pshuf_mmreg_mmreg": 2, @@ -3924,7 +4397,6 @@ "movd_reg": 2, "movd_mmreg": 2, "movd_mmreg_reg": 2, - "vex_required": 2, "mmx_prefix_for_vex": 2, "no_mmx_prefix": 2, "movq_instruction": 1, @@ -3947,7 +4419,6 @@ "movq2dq_": 2, "movq2dq_instruction": 1, "sse_ps_instruction_imm8": 1, - "immediate_size": 9, "sse_ps_instruction": 1, "sse_instruction": 11, "sse_pd_instruction_imm8": 1, @@ -4001,478 +4472,7 @@ "movmskps_instruction": 1, "movmskps_reg_ok": 2, "cvtpi2pd_instruction": 1, - "cvtpi2ps_instruction": 1, - "stub_size": 1, - "current_pass": 16, - "resolver_flags": 1, - "number_of_sections": 1, - "actual_fixups_size": 1, - "assembler_loop": 2, - "labels_list": 3, - "tagged_blocks": 23, - "additional_memory": 6, - "free_additional_memory": 2, - "additional_memory_end": 9, - "structures_buffer": 9, - "source_start": 1, - "code_start": 2, - "adjustment": 4, - "counter": 13, - "format_flags": 2, - "number_of_relocations": 1, - "undefined_data_end": 4, - "file_extension": 1, - "output_format": 3, - "adjustment_sign": 2, - "init_addressing_space": 6, - "pass_loop": 2, - "assemble_line": 3, - "pass_done": 2, - "missing_end_directive": 7, - "close_pass": 1, - "check_symbols": 2, - "memory_end": 7, - "symbols_checked": 2, - "symbol_defined_ok": 5, - "cx": 42, - "use_prediction_ok": 5, - "check_use_prediction": 2, - "use_misprediction": 3, - "check_next_symbol": 5, - "define_misprediction": 4, - "check_define_prediction": 2, - "LABEL_STRUCTURE_SIZE": 1, - "next_pass": 3, - "assemble_ok": 2, - "undefined_symbol": 2, - "error_confirmed": 3, - "error_info": 2, - "error_handler": 3, - "esp": 14, - "passes_limit": 3, - "code_cannot_be_generated": 1, - "create_addressing_space": 1, - "out_of_memory": 19, - "assemble_instruction": 2, - "source_end": 2, - "define_label": 2, - "define_constant": 2, - "label_addressing_space": 2, - "new_line": 2, - "code_type_setting": 2, - "symbols_file": 4, - "line_assembled": 3, - "reserved_word_used_as_symbol": 6, - "label_size": 5, - "make_label": 3, - "ds": 21, - "sbb": 9, - "jp": 2, - "label_value_ok": 2, - "address_sign": 4, - "make_virtual_label": 2, - "neg": 4, - "setnz": 5, - "finish_label": 2, - "setne": 14, - "finish_label_symbol": 2, - "label_symbol_ok": 2, - "new_label": 2, - "symbol_already_defined": 3, - "btr": 2, - "requalified_label": 2, - "label_made": 4, - "get_constant_value": 4, - "get_value": 2, - "constant_referencing_mode_ok": 2, - "make_constant": 2, - "value_sign": 3, - "constant_symbol_ok": 2, - "new_constant": 2, - "redeclare_constant": 2, - "requalified_constant": 2, - "make_addressing_space_label": 3, - "vex_register": 1, - "instruction_handler": 32, - "movzx": 13, - "extra_characters_on_line": 8, - "org_directive": 1, - "in_virtual": 2, - "org_space_ok": 2, - "close_virtual_addressing_space": 3, - "org_value_ok": 2, - "bts": 1, - "label_directive": 1, - "get_label_size": 2, - "label_size_ok": 2, - "get_free_label_value": 2, - "get_address_value": 3, - "bp": 2, - "make_free_label": 1, - "address_symbol": 2, - "load_directive": 1, - "load_size_ok": 2, - "get_data_point": 3, - "value_loaded": 2, - "rep": 7, - "movs": 8, - "get_data_address": 5, - "addressing_space_unavailable": 3, - "symbol_out_of_scope": 1, - "get_addressing_space": 3, - "store_label_reference": 1, - "data_address_type_ok": 2, - "adc": 9, - "bad_data_address": 3, - "store_directive": 1, - "sized_store": 2, - "store_value_ok": 2, - "undefined_data_start": 3, - "display_directive": 2, - "display_byte": 2, - "display_next": 2, - "show_display_buffer": 2, - "display_done": 3, - "display_messages": 2, - "skip_block": 2, - "display_block": 4, - "times_directive": 1, - "get_count_value": 6, - "zero_times": 3, - "times_argument_ok": 2, - "counter_limit": 7, - "times_loop": 2, - "stack_overflow": 2, - "stack_limit": 2, - "times_done": 2, - "virtual_directive": 3, - "virtual_at_current": 2, - "set_virtual": 2, - "allocate_structure_data": 5, - "find_structure_data": 6, - "scan_structures": 2, - "no_such_structure": 2, - "structure_data_found": 2, - "end_virtual": 2, - "unexpected_instruction": 18, - "remove_structure_data": 7, - "lea": 8, - "std": 2, - "cld": 2, - "addressing_space_closed": 2, - "virtual_byte_ok": 2, - "virtual_word_ok": 2, - "repeat_directive": 7, - "zero_repeat": 2, - "end_repeat": 2, - "continue_repeating": 2, - "stop_repeat": 2, - "find_end_repeat": 4, - "find_structure_end": 5, - "while_directive": 7, - "do_while": 2, - "calculate_logical_expression": 3, - "while_true": 2, - "stop_while": 2, - "find_end_while": 3, - "end_while": 2, - "too_many_repeats": 1, - "if_directive": 13, - "if_true": 2, - "find_else": 4, - "else_true": 3, - "make_if_structure": 2, - "else_directive": 3, - "found_else": 2, - "skip_else": 3, - "find_end_if": 3, - "end_if": 2, - "else_found": 2, - "find_end_directive": 10, - "no_end_directive": 2, - "skip_labels": 2, - "labels_ok": 2, - "skip_repeat": 2, - "skip_while": 2, - "skip_if": 2, - "structure_end": 4, - "end_directive": 2, - "skip_if_block": 4, - "if_block_skipped": 2, - "skip_after_else": 3, - "data_directive": 1, - "end_data": 1, - "break_directive": 1, - "find_breakable_structure": 4, - "break_repeat": 2, - "break_while": 2, - "break_if": 2, - "data_bytes": 1, - "define_data": 8, - "get_byte": 2, - "undefined_data": 7, - "get_string": 2, - "mark_undefined_data": 2, - "undefined_data_ok": 2, - "simple_data_value": 3, - "skip_expression": 1, - "duplicate_zero_times": 2, - "duplicate_single_data_value": 3, - "duplicate_data": 2, - "duplicated_values": 2, - "near": 3, - "data_defined": 5, - "skip_single_data_value": 2, - "skip_data_value": 2, - "data_unicode": 1, - "define_words": 2, - "data_words": 1, - "get_word": 2, - "word_data_value": 2, - "word_string": 2, - "jecxz": 1, - "word_string_ok": 2, - "ecx*2": 1, - "copy_word_string": 2, - "loop": 2, - "data_dwords": 1, - "get_dword": 2, - "complex_dword": 2, - "data_pwords": 1, - "get_pword": 2, - "get_pword_value": 1, - "complex_pword": 2, - "data_qwords": 1, - "get_qword": 2, - "data_twords": 1, - "get_tword": 2, - "complex_tword": 2, - "fp_zero_tword": 2, - "FFFh": 3, - "jo": 2, - "jg": 1, - "tword_exp_ok": 3, - "large_shift": 2, - "shrd": 1, - "tword_mantissa_shift_done": 2, - "store_shifted_mantissa": 2, - "data_file": 2, - "open_binary_file": 2, - "lseek": 5, - "position_ok": 2, - "size_ok": 2, - "read": 3, - "error_reading_file": 1, - "close": 3, - "find_current_source_path": 2, - "get_current_path": 3, - "lodsb": 12, - "cut_current_path": 1, - "current_path_ok": 1, - "/": 1, - ".": 7, - "invalid_align_value": 3, - "section_not_aligned_enough": 4, - "make_alignment": 3, - "pe_alignment": 2, - "nops": 2, - "reserved_data": 2, - "nops_stosb_ok": 2, - "nops_stosw_ok": 2, - "err_directive": 1, - "invoked_error": 2, - "assert_directive": 1, - "assertion_failed": 1, - "interface": 2, - "for": 2, - "Win32": 2, - "format": 1, - "PE": 1, - "console": 1, - "section": 4, - "code": 1, - "readable": 4, - "executable": 1, - "start": 1, - "con_handle": 8, - "STD_OUTPUT_HANDLE": 2, - "_logo": 2, - "display_string": 19, - "get_params": 2, - "information": 2, - "init_memory": 2, - "_memory_prefix": 2, - "memory_start": 4, - "display_number": 8, - "_memory_suffix": 2, - "GetTickCount": 3, - "start_time": 3, - "preprocessor": 1, - "parser": 1, - "formatter": 1, - "display_user_messages": 3, - "_passes_suffix": 2, - "div": 8, - "display_bytes_count": 2, - "display_character": 6, - "_seconds_suffix": 2, - "written_size": 1, - "_bytes_suffix": 2, - "exit_program": 5, - "_usage": 2, - "input_file": 4, - "output_file": 3, - "memory_setting": 4, - "GetCommandLine": 2, - "params": 2, - "find_command_start": 2, - "skip_quoted_name": 3, - "skip_name": 2, - "find_param": 7, - "all_params": 5, - "option_param": 2, - "get_output_file": 2, - "process_param": 3, - "bad_params": 11, - "string_param": 3, - "copy_param": 2, - "param_end": 6, - "string_param_end": 2, - "memory_option": 4, - "passes_option": 4, - "symbols_option": 3, - "get_option_value": 3, - "get_option_digit": 2, - "option_value_ok": 4, - "invalid_option_value": 5, - "imul": 1, - "find_symbols_file_name": 2, - "include": 15, - "data": 3, - "writeable": 2, - "_copyright": 1, - "db": 35, - "VERSION_STRING": 1, - "align": 1, - "dd": 22, - "bytes_count": 8, - "displayed_count": 4, - "character": 3, - "last_displayed": 5, - "rb": 4, - "options": 1, - "buffer": 14, - "stack": 1, - "import": 1, - "rva": 16, - "kernel_name": 2, - "kernel_table": 2, - "ExitProcess": 2, - "_ExitProcess": 2, - "CreateFile": 3, - "_CreateFileA": 2, - "ReadFile": 2, - "_ReadFile": 2, - "WriteFile": 6, - "_WriteFile": 2, - "CloseHandle": 2, - "_CloseHandle": 2, - "SetFilePointer": 2, - "_SetFilePointer": 2, - "_GetCommandLineA": 2, - "GetEnvironmentVariable": 2, - "_GetEnvironmentVariable": 2, - "GetStdHandle": 5, - "_GetStdHandle": 2, - "VirtualAlloc": 2, - "_VirtualAlloc": 2, - "VirtualFree": 2, - "_VirtualFree": 2, - "_GetTickCount": 2, - "GetSystemTime": 2, - "_GetSystemTime": 2, - "GlobalMemoryStatus": 2, - "_GlobalMemoryStatus": 2, - "dw": 14, - "fixups": 1, - "discardable": 1, - "CREATE_NEW": 1, - "CREATE_ALWAYS": 2, - "OPEN_EXISTING": 2, - "OPEN_ALWAYS": 1, - "TRUNCATE_EXISTING": 1, - "FILE_SHARE_READ": 3, - "FILE_SHARE_WRITE": 1, - "FILE_SHARE_DELETE": 1, - "GENERIC_READ": 2, - "GENERIC_WRITE": 2, - "STD_INPUT_HANDLE": 1, - "FFFFFFF6h": 1, - "FFFFFFF5h": 1, - "STD_ERROR_HANDLE": 3, - "FFFFFFF4h": 1, - "MEM_COMMIT": 2, - "MEM_RESERVE": 1, - "MEM_DECOMMIT": 1, - "MEM_RELEASE": 2, - "MEM_FREE": 1, - "MEM_PRIVATE": 1, - "MEM_MAPPED": 1, - "MEM_RESET": 1, - "MEM_TOP_DOWN": 1, - "PAGE_NOACCESS": 1, - "PAGE_READONLY": 1, - "PAGE_READWRITE": 2, - "PAGE_WRITECOPY": 1, - "PAGE_EXECUTE": 1, - "PAGE_EXECUTE_READ": 1, - "PAGE_EXECUTE_READWRITE": 1, - "PAGE_EXECUTE_WRITECOPY": 1, - "PAGE_GUARD": 1, - "PAGE_NOCACHE": 1, - "allocate_memory": 4, - "large_memory": 3, - "not_enough_memory": 2, - "do_exit": 2, - "get_environment_variable": 1, - "buffer_for_variable_ok": 2, - "open": 2, - "file_error": 6, - "create": 1, - "write": 1, - "repne": 1, - "scasb": 1, - "display_loop": 2, - "display_digit": 3, - "digit_ok": 2, - "line_break_ok": 4, - "make_line_break": 2, - "A0Dh": 2, - "D0Ah": 1, - "take_last_two_characters": 2, - "block_displayed": 2, - "block_ok": 2, - "fatal_error": 1, - "error_prefix": 3, - "error_suffix": 3, - "assembler_error": 1, - "get_error_lines": 2, - "get_next_error_line": 2, - "display_error_line": 3, - "find_definition_origin": 2, - "line_number_start": 3, - "FFFFFFFh": 2, - "line_number_ok": 2, - "line_data_start": 2, - "line_data_displayed": 2, - "get_line_data": 2, - "display_line_data": 5, - "cr_lf": 2, - "make_timestamp": 1, - "mul": 5, - "months_correction": 2, - "day_correction_ok": 4, - "day_correction": 2 + "cvtpi2ps_instruction": 1 }, "AutoHotkey": { "MsgBox": 1, @@ -4593,9 +4593,94 @@ "END": 1 }, "BlitzBasic": { - ";": 57, - "Double": 2, + "Local": 34, + "bk": 3, + "CreateBank": 5, + "(": 125, + ")": 126, + "PokeFloat": 3, "-": 24, + "Print": 13, + "Bin": 4, + "PeekInt": 4, + "%": 6, + "Shl": 7, + "f": 5, + "ff": 1, + "+": 11, + "Hex": 2, + "FloatToHalf": 3, + "HalfToFloat": 1, + "FToI": 2, + "WaitKey": 2, + "End": 58, + ";": 57, + "Half": 1, + "precision": 2, + "bit": 2, + "arithmetic": 2, + "library": 2, + "Global": 2, + "Half_CBank_": 13, + "Function": 101, + "f#": 3, + "If": 25, + "Then": 18, + "Return": 36, + "HalfToFloat#": 1, + "h": 4, + "signBit": 6, + "exponent": 22, + "fraction": 9, + "fBits": 8, + "And": 8, + "<": 18, + "Shr": 3, + "F": 3, + "FF": 2, + "ElseIf": 1, + "Or": 4, + "PokeInt": 2, + "PeekFloat": 1, + "F800000": 1, + "FFFFF": 1, + "Abs": 1, + "*": 2, + "Sgn": 1, + "Else": 7, + "EndIf": 7, + "HalfAdd": 1, + "l": 84, + "r": 12, + "HalfSub": 1, + "HalfMul": 1, + "HalfDiv": 1, + "HalfLT": 1, + "HalfGT": 1, + "Double": 2, + "DoubleOut": 1, + "[": 2, + "]": 2, + "Double_CBank_": 1, + "DoubleToFloat#": 1, + "d": 1, + "FloatToDouble": 1, + "IntToDouble": 1, + "i": 49, + "SefToDouble": 1, + "s": 12, + "e": 4, + "DoubleAdd": 1, + "DoubleSub": 1, + "DoubleMul": 1, + "DoubleDiv": 1, + "DoubleLT": 1, + "DoubleGT": 1, + "IDEal": 3, + "Editor": 3, + "Parameters": 3, + "F#1A#20#2F": 1, + "C#Blitz3D": 3, "linked": 2, "list": 32, "container": 1, @@ -4614,7 +4699,6 @@ "Field": 10, "head_.ListNode": 1, "tail_.ListNode": 1, - "End": 58, "ListNode": 8, "pv_.ListNode": 1, "nx_.ListNode": 1, @@ -4627,14 +4711,9 @@ "a": 46, "new": 4, "object": 2, - "Function": 101, "CreateList.LList": 1, - "(": 125, - ")": 126, - "Local": 34, "l.LList": 20, "New": 11, - "l": 84, "head_": 35, "tail_": 34, "nx_": 33, @@ -4649,7 +4728,6 @@ "safe": 1, "iterate": 2, "freely": 1, - "Return": 36, "Free": 1, "all": 3, "elements": 4, @@ -4667,7 +4745,6 @@ "n.ListNode": 12, "While": 7, "n": 54, - "<": 18, "nx.ListNode": 1, "nx": 1, "Wend": 6, @@ -4681,8 +4758,6 @@ "GetIterator": 3, "elems": 4, "EachIn": 5, - "i": 49, - "+": 11, "True": 4, "if": 2, "contains": 1, @@ -4702,13 +4777,9 @@ "To": 6, "Step": 2, "ListAddLast": 2, - "PeekInt": 4, "Next": 7, "containing": 3, "ListToBank": 1, - "*": 2, - "CreateBank": 5, - "PokeInt": 2, "Swap": 1, "contents": 1, "two": 1, @@ -4743,8 +4814,6 @@ "retrieve": 1, "node": 8, "ListFindNode.ListNode": 1, - "If": 25, - "Then": 18, "Append": 1, "end": 5, "fast": 2, @@ -4764,17 +4833,14 @@ "index": 13, "ValueAtIndex": 1, "ListNodeAtIndex": 3, - "Else": 7, "invalid": 1, "ListNodeAtIndex.ListNode": 1, - "e": 4, "Beyond": 1, "valid": 2, "Negative": 1, "count": 1, "backward": 1, "Before": 3, - "EndIf": 7, "Replace": 1, "added": 2, "by": 3, @@ -4813,7 +4879,6 @@ "most": 1, "programs": 1, "won": 1, - "s": 12, "available": 1, "moment": 1, "l_": 7, @@ -4847,7 +4912,6 @@ "currently": 1, "pointed": 1, "IteratorRemove": 1, - "And": 8, "temp.ListNode": 1, "temp": 1, "Call": 1, @@ -4855,72 +4919,8 @@ "out": 1, "disconnect": 1, "IteratorBreak": 1, - "IDEal": 3, - "Editor": 3, - "Parameters": 3, "F#5#A#10#18#2A#32#3E#47#4C#58#66#6F#78#8F#9B#A9#B7#BD#C5#CC": 1, "F#E3#E9#EF#F4#F9#103#10D#11B#12B#13F#152#163": 1, - "C#Blitz3D": 3, - "bk": 3, - "PokeFloat": 3, - "Print": 13, - "Bin": 4, - "%": 6, - "Shl": 7, - "f": 5, - "ff": 1, - "Hex": 2, - "FloatToHalf": 3, - "HalfToFloat": 1, - "FToI": 2, - "WaitKey": 2, - "Half": 1, - "precision": 2, - "bit": 2, - "arithmetic": 2, - "library": 2, - "Global": 2, - "Half_CBank_": 13, - "f#": 3, - "HalfToFloat#": 1, - "h": 4, - "signBit": 6, - "exponent": 22, - "fraction": 9, - "fBits": 8, - "Shr": 3, - "F": 3, - "FF": 2, - "ElseIf": 1, - "Or": 4, - "PeekFloat": 1, - "F800000": 1, - "FFFFF": 1, - "Abs": 1, - "Sgn": 1, - "HalfAdd": 1, - "r": 12, - "HalfSub": 1, - "HalfMul": 1, - "HalfDiv": 1, - "HalfLT": 1, - "HalfGT": 1, - "DoubleOut": 1, - "[": 2, - "]": 2, - "Double_CBank_": 1, - "DoubleToFloat#": 1, - "d": 1, - "FloatToDouble": 1, - "IntToDouble": 1, - "SefToDouble": 1, - "DoubleAdd": 1, - "DoubleSub": 1, - "DoubleMul": 1, - "DoubleDiv": 1, - "DoubleLT": 1, - "DoubleGT": 1, - "F#1A#20#2F": 1, "result": 4, "s.Sum3Obj": 2, "Sum3Obj": 6, @@ -4973,16 +4973,108 @@ }, "Bluespec": { "package": 2, - "TL": 6, + "TbTL": 1, ";": 156, + "import": 1, + "TL": 6, + "*": 1, "interface": 2, + "Lamp": 3, "method": 42, - "Action": 17, - "ped_button_push": 4, - "(": 158, - ")": 163, - "set_car_state_N": 2, "Bool": 32, + "changed": 2, + "Action": 17, + "show_offs": 2, + "show_ons": 2, + "reset": 2, + "endinterface": 2, + "module": 3, + "mkLamp#": 1, + "(": 158, + "String": 1, + "name": 3, + "lamp": 5, + ")": 163, + "Reg#": 15, + "prev": 5, + "<": 44, + "-": 29, + "mkReg": 15, + "False": 9, + "if": 9, + "&&": 3, + "write": 2, + "+": 7, + "endmethod": 8, + "endmodule": 3, + "mkTest": 1, + "let": 1, + "dut": 2, + "sysTL": 3, + "Bit#": 1, + "ctr": 8, + "carN": 4, + "carS": 2, + "carE": 2, + "carW": 2, + "lamps": 15, + "[": 17, + "]": 17, + "mkLamp": 12, + "dut.lampRedNS": 1, + "dut.lampAmberNS": 1, + "dut.lampGreenNS": 1, + "dut.lampRedE": 1, + "dut.lampAmberE": 1, + "dut.lampGreenE": 1, + "dut.lampRedW": 1, + "dut.lampAmberW": 1, + "dut.lampGreenW": 1, + "dut.lampRedPed": 1, + "dut.lampAmberPed": 1, + "dut.lampGreenPed": 1, + "rule": 10, + "start": 1, + "dumpvars": 1, + "endrule": 10, + "detect_cars": 1, + "dut.set_car_state_N": 1, + "dut.set_car_state_S": 1, + "dut.set_car_state_E": 1, + "dut.set_car_state_W": 1, + "go": 1, + "True": 6, + "<=>": 3, + "12_000": 1, + "ped_button_push": 4, + "stop": 1, + "display": 2, + "finish": 1, + "function": 10, + "do_offs": 2, + "l": 3, + "l.show_offs": 1, + "do_ons": 2, + "l.show_ons": 1, + "do_reset": 2, + "l.reset": 1, + "do_it": 4, + "f": 2, + "action": 3, + "for": 3, + "Integer": 3, + "i": 15, + "endaction": 3, + "endfunction": 7, + "any_changes": 2, + "b": 12, + "||": 7, + ".changed": 1, + "return": 9, + "show": 1, + "time": 1, + "endpackage": 2, + "set_car_state_N": 2, "x": 8, "set_car_state_S": 2, "set_car_state_E": 2, @@ -4999,7 +5091,6 @@ "lampRedPed": 2, "lampAmberPed": 2, "lampGreenPed": 2, - "endinterface": 2, "typedef": 3, "enum": 1, "{": 1, @@ -5020,8 +5111,6 @@ "UInt#": 2, "Time32": 9, "CtrSize": 3, - "module": 3, - "sysTL": 3, "allRedDelay": 2, "amberDelay": 2, "nsGreenDelay": 2, @@ -5029,43 +5118,27 @@ "pedGreenDelay": 1, "pedAmberDelay": 1, "clocks_per_sec": 2, - "Reg#": 15, "state": 21, - "<": 44, - "-": 29, - "mkReg": 15, "next_green": 8, "secs": 7, "ped_button_pushed": 4, - "False": 9, "car_present_N": 3, - "True": 6, "car_present_S": 3, "car_present_E": 4, "car_present_W": 4, "car_present_NS": 3, - "||": 7, "cycle_ctr": 6, - "rule": 10, "dec_cycle_ctr": 1, - "endrule": 10, "Rules": 5, "low_priority_rule": 2, "rules": 4, "inc_sec": 1, - "+": 7, "endrules": 4, - "function": 10, "next_state": 8, "ns": 4, - "action": 3, - "<=>": 3, "0": 2, - "endaction": 3, - "endfunction": 7, "green_seq": 7, "case": 2, - "return": 9, "endcase": 2, "car_present": 4, "make_from_green_rule": 5, @@ -5077,7 +5150,6 @@ "amber_state": 2, "ng": 2, "from_amber": 1, - "&&": 3, "hprs": 10, "7": 1, "1": 1, @@ -5087,84 +5159,12 @@ "5": 1, "6": 1, "fromAllRed": 2, - "if": 9, "else": 4, "noAction": 1, "high_priority_rules": 4, - "[": 17, - "]": 17, - "for": 3, - "Integer": 3, - "i": 15, "rJoin": 1, "addRules": 1, - "preempts": 1, - "endmethod": 8, - "b": 12, - "endmodule": 3, - "endpackage": 2, - "TbTL": 1, - "import": 1, - "*": 1, - "Lamp": 3, - "changed": 2, - "show_offs": 2, - "show_ons": 2, - "reset": 2, - "mkLamp#": 1, - "String": 1, - "name": 3, - "lamp": 5, - "prev": 5, - "write": 2, - "mkTest": 1, - "let": 1, - "dut": 2, - "Bit#": 1, - "ctr": 8, - "carN": 4, - "carS": 2, - "carE": 2, - "carW": 2, - "lamps": 15, - "mkLamp": 12, - "dut.lampRedNS": 1, - "dut.lampAmberNS": 1, - "dut.lampGreenNS": 1, - "dut.lampRedE": 1, - "dut.lampAmberE": 1, - "dut.lampGreenE": 1, - "dut.lampRedW": 1, - "dut.lampAmberW": 1, - "dut.lampGreenW": 1, - "dut.lampRedPed": 1, - "dut.lampAmberPed": 1, - "dut.lampGreenPed": 1, - "start": 1, - "dumpvars": 1, - "detect_cars": 1, - "dut.set_car_state_N": 1, - "dut.set_car_state_S": 1, - "dut.set_car_state_E": 1, - "dut.set_car_state_W": 1, - "go": 1, - "12_000": 1, - "stop": 1, - "display": 2, - "finish": 1, - "do_offs": 2, - "l": 3, - "l.show_offs": 1, - "do_ons": 2, - "l.show_ons": 1, - "do_reset": 2, - "l.reset": 1, - "do_it": 4, - "f": 2, - "any_changes": 2, - ".changed": 1, - "show": 1, - "time": 1 + "preempts": 1 }, "Brightscript": { "**": 17, @@ -5430,136 +5430,973 @@ }, "C": { "#include": 154, - "": 8, - "static": 455, - "VALUE": 13, - "rb_cRDiscount": 4, + "const": 358, + "char": 530, + "*blob_type": 2, ";": 5465, - "rb_rdiscount_to_html": 2, + "struct": 360, + "blob": 6, + "*lookup_blob": 2, "(": 6243, - "int": 446, - "argc": 26, - "*argv": 6, - "self": 9, + "unsigned": 140, + "*sha1": 16, ")": 6245, "{": 1531, - "char": 530, - "*res": 2, - "szres": 8, - "encoding": 14, - "text": 22, - "rb_funcall": 14, - "rb_intern": 15, - "buf": 57, - "rb_str_buf_new": 2, - "Check_Type": 2, - "T_STRING": 2, - "flags": 89, - "rb_rdiscount__get_flags": 3, - "MMIOT": 2, - "*doc": 2, - "mkd_string": 2, - "RSTRING_PTR": 2, - "RSTRING_LEN": 2, + "object": 41, + "*obj": 9, + "lookup_object": 2, + "sha1": 20, "if": 1015, - "mkd_compile": 2, - "doc": 6, - "mkd_document": 1, - "&": 442, - "res": 4, - "EOF": 26, - "rb_str_cat": 4, - "}": 1547, - "mkd_cleanup": 2, - "rb_respond_to": 1, + "obj": 48, "return": 529, - "rb_rdiscount_toc_content": 2, - "mkd_toc": 1, - "ruby_obj": 11, - "MKD_TABSTOP": 1, - "|": 132, - "MKD_NOHEADER": 1, - "Qtrue": 10, - "MKD_NOPANTS": 1, - "MKD_NOHTML": 1, - "MKD_TOC": 1, - "MKD_NOIMAGE": 1, - "MKD_NOLINKS": 1, - "MKD_NOTABLES": 1, - "MKD_STRICT": 1, - "MKD_AUTOLINK": 1, - "MKD_SAFELINK": 1, - "MKD_NO_EXT": 1, - "void": 288, - "Init_rdiscount": 1, - "rb_define_class": 1, - "rb_cObject": 1, - "rb_define_method": 2, + "create_object": 2, + "OBJ_BLOB": 3, + "alloc_blob_node": 1, "-": 1803, - "const": 358, - "git_usage_string": 2, + "type": 36, + "error": 96, + "sha1_to_hex": 8, + "typename": 2, + "NULL": 330, + "}": 1547, + "*": 261, + "int": 446, + "parse_blob_buffer": 2, + "*item": 10, + "void": 288, + "*buffer": 6, + "long": 105, + "size": 120, + "item": 24, + "object.parsed": 4, + "#ifndef": 89, + "BLOB_H": 2, + "#define": 920, + "extern": 38, + "#endif": 243, + "BOOTSTRAP_H": 2, + "": 8, + "__GNUC__": 8, + "typedef": 191, + "*true": 1, + "*false": 1, + "*eof": 1, + "*empty_list": 1, + "*global_enviroment": 1, + "enum": 30, + "obj_type": 1, + "scm_bool": 1, + "scm_empty_list": 1, + "scm_eof": 1, + "scm_char": 1, + "scm_int": 1, + "scm_pair": 1, + "scm_symbol": 1, + "scm_prim_fun": 1, + "scm_lambda": 1, + "scm_str": 1, + "scm_file": 1, + "*eval_proc": 1, + "*maybe_add_begin": 1, + "*code": 2, + "init_enviroment": 1, + "*env": 4, + "eval_err": 1, + "*msg": 7, + "__attribute__": 1, + "noreturn": 1, + "define_var": 1, + "*var": 4, + "*val": 6, + "set_var": 1, + "*get_var": 1, + "*cond2nested_if": 1, + "*cond": 1, + "*let2lambda": 1, + "*let": 1, + "*and2nested_if": 1, + "*and": 1, + "*or2nested_if": 1, + "*or": 1, + "git_cache_init": 1, + "git_cache": 4, + "*cache": 4, + "size_t": 52, + "git_cached_obj_freeptr": 1, + "free_ptr": 2, + "<": 219, + "git__size_t_powerof2": 1, + "cache": 26, + "size_mask": 6, + "lru_count": 1, + "free_obj": 4, + "git_mutex_init": 1, + "&": 442, + "lock": 6, + "nodes": 10, + "git__malloc": 3, + "sizeof": 71, + "git_cached_obj": 5, + "GITERR_CHECK_ALLOC": 3, + "memset": 4, + "git_cache_free": 1, + "i": 410, + "for": 88, + "+": 551, "[": 601, "]": 601, + "git_cached_obj_decref": 3, + "git__free": 15, + "*git_cache_get": 1, + "git_oid": 7, + "*oid": 2, + "uint32_t": 144, + "hash": 12, + "*node": 2, + "*result": 1, + "memcpy": 35, + "oid": 17, + "id": 13, + "git_mutex_lock": 2, + "node": 9, + "&&": 248, + "git_oid_cmp": 6, + "git_cached_obj_incref": 3, + "result": 48, + "git_mutex_unlock": 2, + "*git_cache_try_store": 1, + "*_entry": 1, + "*entry": 2, + "_entry": 1, + "entry": 17, + "else": 190, + "save_commit_buffer": 3, + "*commit_type": 2, + "static": 455, + "commit": 59, + "*check_commit": 1, + "quiet": 5, + "OBJ_COMMIT": 5, + "*lookup_commit_reference_gently": 2, + "deref_tag": 1, + "parse_object": 1, + "check_commit": 2, + "*lookup_commit_reference": 2, + "lookup_commit_reference_gently": 1, + "*lookup_commit_or_die": 2, + "*ref_name": 2, + "*c": 69, + "lookup_commit_reference": 2, + "c": 252, + "die": 5, + "_": 3, + "ref_name": 2, + "hashcmp": 2, + "object.sha1": 8, + "warning": 1, + "*lookup_commit": 2, + "alloc_commit_node": 1, + "*lookup_commit_reference_by_name": 2, + "*name": 12, + "*commit": 10, + "get_sha1": 1, + "name": 28, + "||": 141, + "parse_commit": 3, + "parse_commit_date": 2, + "*buf": 10, + "*tail": 2, + "*dateptr": 1, + "buf": 57, + "tail": 12, + "memcmp": 6, + "while": 70, + "dateptr": 2, + "strtoul": 2, + "commit_graft": 13, + "**commit_graft": 1, + "commit_graft_alloc": 4, + "commit_graft_nr": 5, + "commit_graft_pos": 2, + "lo": 6, + "hi": 5, + "mi": 5, + "/": 9, + "*graft": 3, + "cmp": 9, + "graft": 10, + "register_commit_graft": 2, + "ignore_dups": 2, + "pos": 7, + "free": 62, + "alloc_nr": 1, + "xrealloc": 2, + "parse_commit_buffer": 3, + "buffer": 10, + "*bufptr": 1, + "parent": 7, + "commit_list": 35, + "**pptr": 1, + "<=>": 16, + "bufptr": 12, + "46": 1, + "tree": 3, + "5": 1, + "45": 1, + "n": 70, + "bogus": 1, + "s": 154, + "get_sha1_hex": 2, + "lookup_tree": 1, + "pptr": 5, + "parents": 4, + "lookup_commit_graft": 1, + "*new_parent": 2, + "48": 1, + "7": 1, + "47": 1, + "bad": 1, + "in": 11, + "nr_parent": 3, + "grafts_replace_parents": 1, + "continue": 20, + "new_parent": 6, + "lookup_commit": 2, + "commit_list_insert": 2, + "next": 8, + "date": 5, + "object_type": 1, + "ret": 142, + "read_sha1_file": 1, + "find_commit_subject": 2, + "*commit_buffer": 2, + "**subject": 2, + "*eol": 1, + "*p": 9, + "commit_buffer": 1, + "a": 80, + "b_date": 3, + "b": 66, + "a_date": 2, + "*commit_list_get_next": 1, + "*a": 9, + "commit_list_set_next": 1, + "*next": 6, + "commit_list_sort_by_date": 2, + "**list": 5, + "*list": 2, + "llist_mergesort": 1, + "peel_to_type": 1, + "util": 3, + "merge_remote_desc": 3, + "*desc": 1, + "desc": 5, + "xmalloc": 2, + "strdup": 1, + "**commit_list_append": 2, + "**next": 2, + "*new": 1, + "new": 4, + "COMMIT_H": 2, + "*util": 1, + "indegree": 1, + "*parents": 4, + "*tree": 3, + "decoration": 1, + "name_decoration": 3, + "*commit_list_insert": 1, + "commit_list_count": 1, + "*l": 1, + "*commit_list_insert_by_date": 1, + "free_commit_list": 1, + "cmit_fmt": 3, + "CMIT_FMT_RAW": 1, + "CMIT_FMT_MEDIUM": 2, + "CMIT_FMT_DEFAULT": 1, + "CMIT_FMT_SHORT": 1, + "CMIT_FMT_FULL": 1, + "CMIT_FMT_FULLER": 1, + "CMIT_FMT_ONELINE": 1, + "CMIT_FMT_EMAIL": 1, + "CMIT_FMT_USERFORMAT": 1, + "CMIT_FMT_UNSPECIFIED": 1, + "pretty_print_context": 6, + "fmt": 4, + "abbrev": 1, + "*subject": 1, + "*after_subject": 1, + "preserve_subject": 1, + "date_mode": 2, + "date_mode_explicit": 1, + "need_8bit_cte": 2, + "show_notes": 1, + "reflog_walk_info": 1, + "*reflog_info": 1, + "*output_encoding": 2, + "userformat_want": 2, + "notes": 1, + "has_non_ascii": 1, + "*text": 1, + "rev_info": 2, + "*logmsg_reencode": 1, + "*reencode_commit_message": 1, + "**encoding_p": 1, + "get_commit_format": 1, + "*arg": 1, + "*format_subject": 1, + "strbuf": 12, + "*sb": 7, + "*line_separator": 1, + "userformat_find_requirements": 1, + "*fmt": 2, + "*w": 2, + "format_commit_message": 1, + "*format": 2, + "*context": 1, + "pretty_print_commit": 1, + "*pp": 4, + "pp_commit_easy": 1, + "pp_user_info": 1, + "*what": 1, + "*line": 1, + "*encoding": 2, + "pp_title_line": 1, + "**msg_p": 2, + "pp_remainder": 1, + "indent": 1, + "*pop_most_recent_commit": 1, + "mark": 3, + "*pop_commit": 1, + "**stack": 1, + "clear_commit_marks": 1, + "clear_commit_marks_for_object_array": 1, + "object_array": 2, + "sort_in_topological_order": 1, + "**": 6, + "list": 1, + "lifo": 1, + "FLEX_ARRAY": 1, + "*read_graft_line": 1, + "len": 30, + "*lookup_commit_graft": 1, + "*get_merge_bases": 1, + "*rev1": 1, + "*rev2": 1, + "cleanup": 12, + "*get_merge_bases_many": 1, + "*one": 1, + "**twos": 1, + "*get_octopus_merge_bases": 1, + "*in": 1, + "register_shallow": 1, + "unregister_shallow": 1, + "for_each_commit_graft": 1, + "each_commit_graft_fn": 1, + "is_repository_shallow": 1, + "*get_shallow_commits": 1, + "*heads": 2, + "depth": 2, + "shallow_flag": 1, + "not_shallow_flag": 1, + "is_descendant_of": 1, + "in_merge_bases": 1, + "interactive_add": 1, + "argc": 26, + "**argv": 6, + "*prefix": 7, + "patch": 1, + "run_add_interactive": 1, + "*revision": 1, + "*patch_mode": 1, + "**pathspec": 1, + "inline": 3, + "single_parent": 1, + "*reduce_heads": 1, + "commit_extra_header": 7, + "*key": 5, + "*value": 5, + "append_merge_tag_headers": 1, + "***tail": 1, + "commit_tree": 1, + "*ret": 20, + "*author": 2, + "*sign_commit": 2, + "commit_tree_extended": 1, + "*read_commit_extra_headers": 1, + "*read_commit_extra_header_lines": 1, + "free_commit_extra_headers": 1, + "*extra": 1, + "merge_remote_util": 1, + "*get_merge_parent": 1, + "parse_signed_commit": 1, + "*message": 1, + "*signature": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "#ifdef": 66, + "CONFIG_SMP": 1, + "DEFINE_MUTEX": 1, + "cpu_add_remove_lock": 3, + "cpu_maps_update_begin": 9, + "mutex_lock": 5, + "cpu_maps_update_done": 9, + "mutex_unlock": 6, + "RAW_NOTIFIER_HEAD": 1, + "cpu_chain": 4, + "cpu_hotplug_disabled": 7, + "CONFIG_HOTPLUG_CPU": 2, + "task_struct": 5, + "*active_writer": 1, + "mutex": 1, + "refcount": 2, + "cpu_hotplug": 1, + ".active_writer": 1, + ".lock": 1, + "__MUTEX_INITIALIZER": 1, + "cpu_hotplug.lock": 8, + ".refcount": 1, + "get_online_cpus": 2, + "might_sleep": 1, + "cpu_hotplug.active_writer": 6, + "current": 5, + "cpu_hotplug.refcount": 3, + "EXPORT_SYMBOL_GPL": 4, + "put_online_cpus": 2, + "unlikely": 54, + "wake_up_process": 1, + "cpu_hotplug_begin": 4, + "likely": 22, + "break": 244, + "__set_current_state": 1, + "TASK_UNINTERRUPTIBLE": 1, + "schedule": 1, + "cpu_hotplug_done": 4, + "#else": 94, + "__ref": 6, + "register_cpu_notifier": 2, + "notifier_block": 3, + "*nb": 3, + "raw_notifier_chain_register": 1, + "nb": 2, + "__cpu_notify": 6, + "val": 20, + "*v": 3, + "nr_to_call": 2, + "*nr_calls": 1, + "__raw_notifier_call_chain": 1, + "v": 11, + "nr_calls": 9, + "notifier_to_errno": 1, + "cpu_notify": 5, + "cpu_notify_nofail": 4, + "BUG_ON": 4, + "EXPORT_SYMBOL": 8, + "unregister_cpu_notifier": 2, + "raw_notifier_chain_unregister": 1, + "clear_tasks_mm_cpumask": 1, + "cpu": 57, + "WARN_ON": 1, + "cpu_online": 5, + "rcu_read_lock": 1, + "for_each_process": 2, + "p": 60, + "*t": 2, + "t": 32, + "find_lock_task_mm": 1, + "cpumask_clear_cpu": 5, + "mm_cpumask": 1, + "mm": 1, + "task_unlock": 1, + "rcu_read_unlock": 1, + "check_for_tasks": 2, + "write_lock_irq": 1, + "tasklist_lock": 2, + "task_cpu": 1, + "state": 104, + "TASK_RUNNING": 1, + "utime": 1, + "stime": 1, + "printk": 12, + "KERN_WARNING": 3, + "comm": 1, + "task_pid_nr": 1, + "flags": 89, + "write_unlock_irq": 1, + "take_cpu_down_param": 3, + "mod": 13, + "*hcpu": 3, + "take_cpu_down": 2, + "*_param": 1, + "*param": 1, + "_param": 1, + "err": 38, + "__cpu_disable": 1, + "CPU_DYING": 1, + "|": 132, + "param": 2, + "hcpu": 10, + "_cpu_down": 3, + "tasks_frozen": 4, + "CPU_TASKS_FROZEN": 2, + "tcd_param": 2, + ".mod": 1, + ".hcpu": 1, + "num_online_cpus": 2, + "EBUSY": 3, + "EINVAL": 6, + "CPU_DOWN_PREPARE": 1, + "CPU_DOWN_FAILED": 2, + "__func__": 2, + "goto": 159, + "out_release": 3, + "__stop_machine": 1, + "cpumask_of": 1, + "idle_cpu": 1, + "cpu_relax": 1, + "__cpu_die": 1, + "CPU_DEAD": 1, + "CPU_POST_DEAD": 1, + "cpu_down": 2, + "out": 18, + "__cpuinit": 3, + "_cpu_up": 3, + "*idle": 1, + "cpu_present": 1, + "idle": 4, + "idle_thread_get": 1, + "IS_ERR": 1, + "PTR_ERR": 1, + "CPU_UP_PREPARE": 1, + "out_notify": 3, + "__cpu_up": 1, + "CPU_ONLINE": 1, + "CPU_UP_CANCELED": 1, + "cpu_up": 2, + "CONFIG_MEMORY_HOTPLUG": 2, + "nid": 5, + "pg_data_t": 1, + "*pgdat": 1, + "cpu_possible": 1, + "KERN_ERR": 5, + "#if": 92, + "defined": 42, + "CONFIG_IA64": 1, + "cpu_to_node": 1, + "node_online": 1, + "mem_online_node": 1, + "pgdat": 3, + "NODE_DATA": 1, + "ENOMEM": 4, + "node_zonelists": 1, + "_zonerefs": 1, + "zone": 1, + "zonelists_mutex": 2, + "build_all_zonelists": 1, + "CONFIG_PM_SLEEP_SMP": 2, + "cpumask_var_t": 1, + "frozen_cpus": 9, + "__weak": 4, + "arch_disable_nonboot_cpus_begin": 2, + "arch_disable_nonboot_cpus_end": 2, + "disable_nonboot_cpus": 1, + "first_cpu": 3, + "cpumask_first": 1, + "cpu_online_mask": 3, + "cpumask_clear": 2, + "for_each_online_cpu": 1, + "cpumask_set_cpu": 5, + "arch_enable_nonboot_cpus_begin": 2, + "arch_enable_nonboot_cpus_end": 2, + "enable_nonboot_cpus": 1, + "cpumask_empty": 1, + "KERN_INFO": 2, + "for_each_cpu": 1, + "__init": 2, + "alloc_frozen_cpus": 2, + "alloc_cpumask_var": 1, + "GFP_KERNEL": 1, + "__GFP_ZERO": 1, + "core_initcall": 2, + "cpu_hotplug_disable_before_freeze": 2, + "cpu_hotplug_enable_after_thaw": 2, + "cpu_hotplug_pm_callback": 2, + "action": 2, + "*ptr": 1, + "switch": 46, + "case": 273, + "PM_SUSPEND_PREPARE": 1, + "PM_HIBERNATION_PREPARE": 1, + "PM_POST_SUSPEND": 1, + "PM_POST_HIBERNATION": 1, + "default": 33, + "NOTIFY_DONE": 1, + "NOTIFY_OK": 1, + "cpu_hotplug_pm_sync_init": 2, + "pm_notifier": 1, + "notify_cpu_starting": 1, + "CPU_STARTING": 1, + "cpumask_test_cpu": 1, + "CPU_STARTING_FROZEN": 1, + "MASK_DECLARE_1": 3, + "x": 57, + "UL": 1, + "<<": 56, + "MASK_DECLARE_2": 3, + "MASK_DECLARE_4": 3, + "MASK_DECLARE_8": 9, + "cpu_bit_bitmap": 2, + "BITS_PER_LONG": 2, + "BITS_TO_LONGS": 1, + "NR_CPUS": 2, + "DECLARE_BITMAP": 6, + "cpu_all_bits": 2, + "CPU_BITS_ALL": 2, + "CONFIG_INIT_ALL_POSSIBLE": 1, + "cpu_possible_bits": 6, + "CONFIG_NR_CPUS": 5, + "__read_mostly": 5, + "cpumask": 7, + "*const": 4, + "cpu_possible_mask": 2, + "to_cpumask": 15, + "cpu_online_bits": 5, + "cpu_present_bits": 5, + "cpu_present_mask": 2, + "cpu_active_bits": 4, + "cpu_active_mask": 2, + "set_cpu_possible": 1, + "bool": 6, + "possible": 2, + "set_cpu_present": 1, + "present": 2, + "set_cpu_online": 1, + "online": 2, + "set_cpu_active": 1, + "active": 2, + "init_cpu_present": 1, + "*src": 3, + "cpumask_copy": 3, + "src": 16, + "init_cpu_possible": 1, + "init_cpu_online": 1, + "*diff_prefix_from_pathspec": 1, + "git_strarray": 2, + "*pathspec": 2, + "git_buf": 3, + "prefix": 34, + "GIT_BUF_INIT": 3, + "*scan": 2, + "git_buf_common_prefix": 1, + "pathspec": 15, + "scan": 4, + "prefix.ptr": 2, + "git__iswildcard": 1, + "git_buf_truncate": 1, + "prefix.size": 1, + "git_buf_detach": 1, + "git_buf_free": 4, + "diff_pathspec_is_interesting": 2, + "*str": 1, + "count": 17, + "false": 77, + "true": 73, + "str": 162, + "strings": 5, + "diff_path_matches_pathspec": 3, + "git_diff_list": 17, + "*diff": 8, + "*path": 2, + "git_attr_fnmatch": 4, + "*match": 3, + "diff": 93, + "pathspec.length": 1, + "git_vector_foreach": 4, + "match": 16, + "p_fnmatch": 1, + "pattern": 3, + "path": 20, + "FNM_NOMATCH": 1, + "GIT_ATTR_FNMATCH_HASWILD": 1, + "strncmp": 1, + "length": 58, + "GIT_ATTR_FNMATCH_NEGATIVE": 1, + "git_diff_delta": 19, + "*diff_delta__alloc": 1, + "git_delta_t": 5, + "status": 57, + "*delta": 6, + "git__calloc": 3, + "delta": 54, + "old_file.path": 12, + "git_pool_strdup": 3, + "pool": 12, + "new_file.path": 6, + "opts.flags": 8, + "GIT_DIFF_REVERSE": 3, + "GIT_DELTA_ADDED": 4, + "GIT_DELTA_DELETED": 7, + "*diff_delta__dup": 1, + "*d": 1, + "git_pool": 4, + "*pool": 3, + "d": 16, + "fail": 19, + "*diff_delta__merge_like_cgit": 1, + "*b": 6, + "*dup": 1, + "diff_delta__dup": 3, + "dup": 15, + "new_file.oid": 7, + "git_oid_cpy": 5, + "new_file.mode": 4, + "new_file.size": 3, + "new_file.flags": 4, + "old_file.oid": 3, + "GIT_DELTA_UNTRACKED": 5, + "GIT_DELTA_IGNORED": 5, + "GIT_DELTA_UNMODIFIED": 11, + "diff_delta__from_one": 5, + "git_index_entry": 8, + "GIT_DIFF_INCLUDE_IGNORED": 1, + "GIT_DIFF_INCLUDE_UNTRACKED": 1, + "diff_delta__alloc": 2, + "assert": 41, + "GIT_DELTA_MODIFIED": 3, + "old_file.mode": 2, + "mode": 11, + "old_file.size": 1, + "file_size": 6, + "old_file.flags": 2, + "GIT_DIFF_FILE_VALID_OID": 4, + "git_vector_insert": 4, + "deltas": 8, + "diff_delta__from_two": 2, + "*old_entry": 1, + "*new_entry": 1, + "*new_oid": 1, + "GIT_DIFF_INCLUDE_UNMODIFIED": 1, + "*temp": 1, + "old_entry": 5, + "new_entry": 5, + "temp": 11, + "new_oid": 3, + "git_oid_iszero": 2, + "*diff_strdup_prefix": 1, + "strlen": 17, + "git_pool_strcat": 1, + "git_pool_strndup": 1, + "diff_delta__cmp": 3, + "*da": 1, + "*db": 3, + "strcmp": 20, + "da": 2, + "db": 10, + "config_bool": 5, + "git_config": 3, + "*cfg": 2, + "defvalue": 2, + "git_config_get_bool": 1, + "cfg": 6, + "giterr_clear": 1, + "*git_diff_list_alloc": 1, + "git_repository": 7, + "*repo": 7, + "git_diff_options": 7, + "*opts": 6, + "repo": 23, + "git_vector_init": 3, + "git_pool_init": 2, + "git_repository_config__weakptr": 1, + "diffcaps": 13, + "GIT_DIFFCAPS_HAS_SYMLINKS": 2, + "GIT_DIFFCAPS_ASSUME_UNCHANGED": 2, + "GIT_DIFFCAPS_TRUST_EXEC_BIT": 2, + "GIT_DIFFCAPS_TRUST_CTIME": 2, + "opts": 24, + "opts.pathspec": 2, + "opts.old_prefix": 4, + "diff_strdup_prefix": 2, + "old_prefix": 2, + "DIFF_OLD_PREFIX_DEFAULT": 1, + "opts.new_prefix": 4, + "new_prefix": 2, + "DIFF_NEW_PREFIX_DEFAULT": 1, + "*swap": 1, + "swap": 9, + "pathspec.count": 2, + "*pattern": 1, + "pathspec.strings": 1, + "GIT_ATTR_FNMATCH_ALLOWSPACE": 1, + "git_attr_fnmatch__parse": 1, + "GIT_ENOTFOUND": 1, + "git_diff_list_free": 3, + "deltas.contents": 1, + "git_vector_free": 3, + "pathspec.contents": 1, + "git_pool_clear": 2, + "oid_for_workdir_item": 2, + "full_path": 3, + "git_buf_joinpath": 1, + "git_repository_workdir": 1, + "S_ISLNK": 2, + "git_odb__hashlink": 1, + "full_path.ptr": 2, + "git__is_sizet": 1, + "giterr_set": 1, + "GITERR_OS": 1, + "fd": 34, + "git_futils_open_ro": 1, + "git_odb__hashfd": 1, + "GIT_OBJ_BLOB": 1, + "p_close": 1, + "EXEC_BIT_MASK": 3, + "maybe_modified": 2, + "git_iterator": 8, + "*old_iter": 2, + "*oitem": 2, + "*new_iter": 2, + "*nitem": 2, + "noid": 4, + "*use_noid": 1, + "omode": 8, + "oitem": 29, + "nmode": 10, + "nitem": 32, + "GIT_UNUSED": 1, + "old_iter": 8, + "S_ISREG": 1, + "GIT_MODE_TYPE": 3, + "GIT_MODE_PERMS_MASK": 1, + "flags_extended": 2, + "GIT_IDXENTRY_INTENT_TO_ADD": 1, + "GIT_IDXENTRY_SKIP_WORKTREE": 1, + "new_iter": 13, + "GIT_ITERATOR_WORKDIR": 2, + "ctime.seconds": 2, + "mtime.seconds": 2, + "GIT_DIFFCAPS_USE_DEV": 1, + "dev": 2, + "ino": 2, + "uid": 2, + "gid": 2, + "S_ISGITLINK": 1, + "git_submodule": 1, + "*sub": 1, + "GIT_DIFF_IGNORE_SUBMODULES": 1, + "git_submodule_lookup": 1, + "sub": 12, + "ignore": 1, + "GIT_SUBMODULE_IGNORE_ALL": 1, + "use_noid": 2, + "diff_from_iterators": 5, + "**diff_ptr": 1, + "ignore_prefix": 6, + "git_diff_list_alloc": 1, + "old_src": 1, + "new_src": 3, + "git_iterator_current": 2, + "git_iterator_advance": 5, + "delta_type": 8, + "git_buf_len": 1, + "git__prefixcmp": 2, + "git_buf_cstr": 1, + "S_ISDIR": 1, + "GIT_DIFF_RECURSE_UNTRACKED_DIRS": 1, + "git_iterator_current_is_ignored": 2, + "git_buf_sets": 1, + "git_iterator_advance_into_directory": 1, + "git_iterator_free": 4, + "*diff_ptr": 2, + "git_diff_tree_to_tree": 1, + "git_tree": 4, + "*old_tree": 3, + "*new_tree": 1, + "**diff": 4, + "diff_prefix_from_pathspec": 4, + "old_tree": 5, + "new_tree": 2, + "git_iterator_for_tree_range": 4, + "git_diff_index_to_tree": 1, + "git_iterator_for_index_range": 2, + "git_diff_workdir_to_index": 1, + "git_iterator_for_workdir_range": 2, + "git_diff_workdir_to_tree": 1, + "git_diff_merge": 1, + "*onto": 1, + "*from": 1, + "onto_pool": 7, + "git_vector": 1, + "onto_new": 6, + "j": 206, + "onto": 7, + "from": 16, + "deltas.length": 4, + "*o": 8, + "GIT_VECTOR_GET": 2, + "*f": 2, + "f": 184, + "o": 80, + "diff_delta__merge_like_cgit": 1, + "git_vector_swap": 1, + "git_pool_swap": 1, + "ATSHOME_LIBATS_DYNARRAY_CATS": 3, + "": 5, + "atslib_dynarray_memcpy": 1, + "atslib_dynarray_memmove": 1, + "memmove": 2, + "//": 262, + "ifndef": 2, + "git_usage_string": 2, "git_more_info_string": 2, "N_": 1, - "struct": 360, "startup_info": 3, "git_startup_info": 2, "use_pager": 8, "pager_config": 3, "*cmd": 5, "want": 3, - "*value": 5, "pager_command_config": 2, - "*var": 4, "*data": 12, - "*c": 69, "data": 69, "prefixcmp": 3, "var": 7, - "&&": 248, - "strcmp": 20, - "+": 551, - "c": 252, "cmd": 46, - "b": 66, "git_config_maybe_bool": 1, "value": 9, - "else": 190, "xstrdup": 2, "check_pager_config": 3, "c.cmd": 1, "c.want": 2, "c.value": 3, - "NULL": 330, - "git_config": 3, "pager_program": 1, "commit_pager_choice": 4, - "switch": 46, - "case": 273, "setenv": 1, - "break": 244, "setup_pager": 1, - "default": 33, "handle_options": 2, "***argv": 2, "*argc": 1, "*envchanged": 1, "**orig_argv": 1, - "while": 70, + "*argv": 6, "new_argv": 7, "option_count": 1, - "count": 17, - "<": 219, - "die": 5, "alias_command": 4, "trace_argv_printf": 3, - "xrealloc": 2, - "sizeof": 71, - "*": 261, "*argcp": 4, - "memcpy": 35, - "ret": 142, "subdir": 3, "chdir": 2, "die_errno": 3, @@ -5567,25 +6404,17 @@ "saved_errno": 1, "git_version_string": 1, "GIT_VERSION": 1, - "#define": 920, "RUN_SETUP": 81, - "<<": 56, "RUN_SETUP_GENTLY": 16, "USE_PAGER": 3, "NEED_WORK_TREE": 18, "cmd_struct": 4, "option": 9, "run_builtin": 2, - "*p": 9, - "**argv": 6, - "status": 57, "help": 4, "stat": 3, "st": 2, - "*prefix": 7, - "prefix": 34, "argv": 54, - "p": 60, "setup_git_directory": 1, "nongit_ok": 2, "setup_git_directory_gently": 1, @@ -5598,7 +6427,6 @@ "stdout": 5, "S_ISFIFO": 1, "st.st_mode": 2, - "||": 141, "S_ISSOCK": 1, "fflush": 2, "ferror": 2, @@ -5708,18 +6536,13 @@ "cmd_version": 1, "cmd_whatchanged": 1, "cmd_write_tree": 1, - "i": 410, "ext": 4, "STRIP_EXTENSION": 1, - "strlen": 17, "*argv0": 1, "argv0": 2, - "for": 88, "ARRAY_SIZE": 1, - "continue": 20, "exit": 20, "execv_dashed_external": 2, - "strbuf": 12, "STRBUF_INIT": 1, "*tmp": 1, "strbuf_addf": 1, @@ -5746,209 +6569,745 @@ "stderr": 15, "help_unknown_cmd": 1, "strerror": 4, - "#ifndef": 89, - "BLOB_H": 2, - "extern": 38, - "*blob_type": 2, - "blob": 6, - "object": 41, - "*lookup_blob": 2, - "unsigned": 140, - "*sha1": 16, - "parse_blob_buffer": 2, - "*item": 10, - "*buffer": 6, - "long": 105, - "size": 120, - "#endif": 243, - "COMMIT_H": 2, - "commit_list": 35, - "commit": 59, - "*next": 6, - "*util": 1, - "indegree": 1, - "date": 5, - "*parents": 4, - "tree": 3, - "*tree": 3, - "save_commit_buffer": 3, - "*commit_type": 2, - "decoration": 1, - "name_decoration": 3, - "type": 36, - "name": 28, - "*lookup_commit": 2, - "*lookup_commit_reference": 2, - "*lookup_commit_reference_gently": 2, - "quiet": 5, - "*lookup_commit_reference_by_name": 2, - "*name": 12, - "*lookup_commit_or_die": 2, - "*ref_name": 2, - "parse_commit_buffer": 3, - "parse_commit": 3, - "find_commit_subject": 2, - "*commit_buffer": 2, - "**subject": 2, - "*commit_list_insert": 1, - "**list": 5, - "**commit_list_append": 2, - "*commit": 10, - "**next": 2, - "commit_list_count": 1, - "*l": 1, - "*commit_list_insert_by_date": 1, - "commit_list_sort_by_date": 2, - "free_commit_list": 1, - "*list": 2, - "enum": 30, - "cmit_fmt": 3, - "CMIT_FMT_RAW": 1, - "CMIT_FMT_MEDIUM": 2, - "CMIT_FMT_DEFAULT": 1, - "CMIT_FMT_SHORT": 1, - "CMIT_FMT_FULL": 1, - "CMIT_FMT_FULLER": 1, - "CMIT_FMT_ONELINE": 1, - "CMIT_FMT_EMAIL": 1, - "CMIT_FMT_USERFORMAT": 1, - "CMIT_FMT_UNSPECIFIED": 1, - "pretty_print_context": 6, - "fmt": 4, - "abbrev": 1, - "*subject": 1, - "*after_subject": 1, - "preserve_subject": 1, - "date_mode": 2, - "date_mode_explicit": 1, - "need_8bit_cte": 2, - "show_notes": 1, - "reflog_walk_info": 1, - "*reflog_info": 1, - "*output_encoding": 2, - "userformat_want": 2, - "notes": 1, - "has_non_ascii": 1, - "*text": 1, - "rev_info": 2, - "*logmsg_reencode": 1, - "*reencode_commit_message": 1, - "**encoding_p": 1, - "get_commit_format": 1, - "*arg": 1, - "*format_subject": 1, - "*sb": 7, - "*msg": 7, - "*line_separator": 1, - "userformat_find_requirements": 1, - "*fmt": 2, - "*w": 2, - "format_commit_message": 1, - "*format": 2, - "*context": 1, - "pretty_print_commit": 1, - "*pp": 4, - "pp_commit_easy": 1, - "pp_user_info": 1, - "*what": 1, - "*line": 1, - "*encoding": 2, - "pp_title_line": 1, - "**msg_p": 2, - "pp_remainder": 1, - "indent": 1, - "*pop_most_recent_commit": 1, - "mark": 3, - "*pop_commit": 1, - "**stack": 1, - "clear_commit_marks": 1, - "clear_commit_marks_for_object_array": 1, - "object_array": 2, - "*a": 9, - "sort_in_topological_order": 1, - "**": 6, - "list": 1, - "lifo": 1, - "commit_graft": 13, - "sha1": 20, - "nr_parent": 3, - "parent": 7, - "FLEX_ARRAY": 1, - "typedef": 191, - "*read_graft_line": 1, - "*buf": 10, - "len": 30, - "register_commit_graft": 2, - "*lookup_commit_graft": 1, - "*get_merge_bases": 1, - "*rev1": 1, - "*rev2": 1, - "cleanup": 12, - "*get_merge_bases_many": 1, - "*one": 1, - "n": 70, - "**twos": 1, - "*get_octopus_merge_bases": 1, - "*in": 1, - "register_shallow": 1, - "unregister_shallow": 1, - "for_each_commit_graft": 1, - "each_commit_graft_fn": 1, - "is_repository_shallow": 1, - "*get_shallow_commits": 1, - "*heads": 2, - "depth": 2, - "shallow_flag": 1, - "not_shallow_flag": 1, - "is_descendant_of": 1, - "in_merge_bases": 1, - "interactive_add": 1, - "patch": 1, - "run_add_interactive": 1, - "*revision": 1, - "*patch_mode": 1, - "**pathspec": 1, - "inline": 3, - "single_parent": 1, - "parents": 4, - "next": 8, - "*reduce_heads": 1, - "commit_extra_header": 7, - "*key": 5, - "size_t": 52, - "append_merge_tag_headers": 1, - "***tail": 1, - "commit_tree": 1, - "*ret": 20, - "*author": 2, - "*sign_commit": 2, - "commit_tree_extended": 1, - "*read_commit_extra_headers": 1, - "*read_commit_extra_header_lines": 1, - "free_commit_extra_headers": 1, - "*extra": 1, - "merge_remote_desc": 3, - "*obj": 9, - "merge_remote_util": 1, - "util": 3, - "*get_merge_parent": 1, - "parse_signed_commit": 1, - "*message": 1, - "*signature": 1, + "PPC_SHA1": 1, + "git_hash_ctx": 7, + "SHA_CTX": 3, + "*git_hash_new_ctx": 1, + "*ctx": 5, + "ctx": 16, + "SHA1_Init": 4, + "git_hash_free_ctx": 1, + "git_hash_init": 1, + "git_hash_update": 1, + "SHA1_Update": 3, + "git_hash_final": 1, + "*out": 3, + "SHA1_Final": 3, + "git_hash_buf": 1, + "git_hash_vec": 1, + "git_buf_vec": 1, + "*vec": 1, + "vec": 2, + ".data": 1, + ".len": 3, + "HELLO_H": 2, + "hello": 1, + "": 5, + "": 2, + "": 3, + "": 3, + "": 2, + "ULLONG_MAX": 10, + "MIN": 3, + "HTTP_PARSER_DEBUG": 4, + "SET_ERRNO": 47, + "e": 4, + "do": 21, + "parser": 334, + "http_errno": 11, + "error_lineno": 3, + "__LINE__": 50, + "CALLBACK_NOTIFY_": 3, + "FOR": 11, + "ER": 4, + "HTTP_PARSER_ERRNO": 10, + "HPE_OK": 10, + "settings": 6, + "on_##FOR": 4, + "HPE_CB_##FOR": 2, + "CALLBACK_NOTIFY": 10, + "CALLBACK_NOTIFY_NOADVANCE": 2, + "CALLBACK_DATA_": 4, + "LEN": 2, + "FOR##_mark": 7, + "CALLBACK_DATA": 10, + "CALLBACK_DATA_NOADVANCE": 6, + "MARK": 7, + "PROXY_CONNECTION": 4, + "CONNECTION": 4, + "CONTENT_LENGTH": 4, + "TRANSFER_ENCODING": 4, + "UPGRADE": 4, + "CHUNKED": 4, + "KEEP_ALIVE": 4, + "CLOSE": 4, + "*method_strings": 1, + "XX": 63, + "num": 24, + "string": 18, + "#string": 1, + "HTTP_METHOD_MAP": 3, + "#undef": 7, + "tokens": 5, + "int8_t": 3, + "unhex": 3, + "HTTP_PARSER_STRICT": 5, + "uint8_t": 6, + "normal_url_char": 3, + "T": 3, + "s_dead": 10, + "s_start_req_or_res": 4, + "s_res_or_resp_H": 3, + "s_start_res": 5, + "s_res_H": 3, + "s_res_HT": 4, + "s_res_HTT": 3, + "s_res_HTTP": 3, + "s_res_first_http_major": 3, + "s_res_http_major": 3, + "s_res_first_http_minor": 3, + "s_res_http_minor": 3, + "s_res_first_status_code": 3, + "s_res_status_code": 3, + "s_res_status": 3, + "s_res_line_almost_done": 4, + "s_start_req": 6, + "s_req_method": 4, + "s_req_spaces_before_url": 5, + "s_req_schema": 6, + "s_req_schema_slash": 6, + "s_req_schema_slash_slash": 6, + "s_req_host_start": 8, + "s_req_host_v6_start": 7, + "s_req_host_v6": 7, + "s_req_host_v6_end": 7, + "s_req_host": 8, + "s_req_port_start": 7, + "s_req_port": 6, + "s_req_path": 8, + "s_req_query_string_start": 8, + "s_req_query_string": 7, + "s_req_fragment_start": 7, + "s_req_fragment": 7, + "s_req_http_start": 3, + "s_req_http_H": 3, + "s_req_http_HT": 3, + "s_req_http_HTT": 3, + "s_req_http_HTTP": 3, + "s_req_first_http_major": 3, + "s_req_http_major": 3, + "s_req_first_http_minor": 3, + "s_req_http_minor": 3, + "s_req_line_almost_done": 4, + "s_header_field_start": 12, + "s_header_field": 4, + "s_header_value_start": 4, + "s_header_value": 5, + "s_header_value_lws": 3, + "s_header_almost_done": 6, + "s_chunk_size_start": 4, + "s_chunk_size": 3, + "s_chunk_parameters": 3, + "s_chunk_size_almost_done": 4, + "s_headers_almost_done": 4, + "s_headers_done": 4, + "s_chunk_data": 3, + "s_chunk_data_almost_done": 3, + "s_chunk_data_done": 3, + "s_body_identity": 3, + "s_body_identity_eof": 4, + "s_message_done": 3, + "PARSING_HEADER": 2, + "header_states": 1, + "h_general": 23, + "0": 11, + "h_C": 3, + "h_CO": 3, + "h_CON": 3, + "h_matching_connection": 3, + "h_matching_proxy_connection": 3, + "h_matching_content_length": 3, + "h_matching_transfer_encoding": 3, + "h_matching_upgrade": 3, + "h_connection": 6, + "h_content_length": 5, + "h_transfer_encoding": 5, + "h_upgrade": 4, + "h_matching_transfer_encoding_chunked": 3, + "h_matching_connection_keep_alive": 3, + "h_matching_connection_close": 3, + "h_transfer_encoding_chunked": 4, + "h_connection_keep_alive": 4, + "h_connection_close": 4, + "Macros": 1, + "character": 11, + "classes": 1, + "depends": 1, + "on": 4, + "strict": 2, + "define": 14, + "CR": 18, + "r": 58, + "LF": 21, + "LOWER": 7, + "0x20": 1, + "IS_ALPHA": 5, + "z": 47, + "IS_NUM": 14, + "9": 1, + "IS_ALPHANUM": 3, + "IS_HEX": 2, + "TOKEN": 4, + "IS_URL_CHAR": 6, + "IS_HOST_CHAR": 4, + "0x80": 1, + "endif": 6, + "start_state": 1, + "HTTP_REQUEST": 7, + "cond": 1, + "HPE_STRICT": 1, + "HTTP_STRERROR_GEN": 3, + "#n": 1, + "*description": 1, + "http_strerror_tab": 7, + "HTTP_ERRNO_MAP": 3, + "http_message_needs_eof": 4, + "http_parser": 13, + "*parser": 9, + "parse_url_char": 5, + "ch": 145, + "http_parser_execute": 2, + "http_parser_settings": 5, + "*settings": 2, + "unhex_val": 7, + "*header_field_mark": 1, + "*header_value_mark": 1, + "*url_mark": 1, + "*body_mark": 1, + "message_complete": 7, + "HPE_INVALID_EOF_STATE": 1, + "header_field_mark": 2, + "header_value_mark": 2, + "url_mark": 2, + "nread": 7, + "HTTP_MAX_HEADER_SIZE": 2, + "HPE_HEADER_OVERFLOW": 1, + "reexecute_byte": 7, + "HPE_CLOSED_CONNECTION": 1, + "content_length": 27, + "message_begin": 3, + "HTTP_RESPONSE": 3, + "HPE_INVALID_CONSTANT": 3, + "method": 39, + "HTTP_HEAD": 2, + "index": 58, + "STRICT_CHECK": 15, + "HPE_INVALID_VERSION": 12, + "http_major": 11, + "http_minor": 11, + "HPE_INVALID_STATUS": 3, + "status_code": 8, + "HPE_INVALID_METHOD": 4, + "http_method": 4, + "HTTP_CONNECT": 4, + "HTTP_DELETE": 1, + "HTTP_GET": 1, + "HTTP_LOCK": 1, + "HTTP_MKCOL": 2, + "HTTP_NOTIFY": 1, + "HTTP_OPTIONS": 1, + "HTTP_POST": 2, + "HTTP_REPORT": 1, + "HTTP_SUBSCRIBE": 2, + "HTTP_TRACE": 1, + "HTTP_UNLOCK": 2, + "*matcher": 1, + "matcher": 3, + "method_strings": 2, + "HTTP_CHECKOUT": 1, + "HTTP_COPY": 1, + "HTTP_MOVE": 1, + "HTTP_MERGE": 1, + "HTTP_MSEARCH": 1, + "HTTP_MKACTIVITY": 1, + "HTTP_SEARCH": 1, + "HTTP_PROPFIND": 2, + "HTTP_PUT": 2, + "HTTP_PATCH": 1, + "HTTP_PURGE": 1, + "HTTP_UNSUBSCRIBE": 1, + "HTTP_PROPPATCH": 1, + "url": 4, + "HPE_INVALID_URL": 4, + "HPE_LF_EXPECTED": 1, + "HPE_INVALID_HEADER_TOKEN": 2, + "header_field": 5, + "header_state": 42, + "header_value": 6, + "F_UPGRADE": 3, + "HPE_INVALID_CONTENT_LENGTH": 4, + "uint64_t": 8, + "F_CONNECTION_KEEP_ALIVE": 3, + "F_CONNECTION_CLOSE": 3, + "F_CHUNKED": 11, + "F_TRAILING": 3, + "NEW_MESSAGE": 6, + "upgrade": 3, + "on_headers_complete": 3, + "F_SKIPBODY": 4, + "HPE_CB_headers_complete": 1, + "to_read": 6, + "body": 6, + "body_mark": 2, + "HPE_INVALID_CHUNK_SIZE": 2, + "HPE_INVALID_INTERNAL_STATE": 1, + "1": 2, + "HPE_UNKNOWN": 1, + "Does": 1, + "the": 91, + "need": 5, + "to": 37, + "see": 2, + "an": 2, + "EOF": 26, + "find": 1, + "end": 48, + "of": 44, + "message": 3, + "http_should_keep_alive": 2, + "http_method_str": 1, + "m": 8, + "http_parser_init": 2, + "http_parser_type": 3, + "http_errno_name": 1, + "/sizeof": 4, + ".name": 1, + "http_errno_description": 1, + ".description": 1, + "http_parser_parse_url": 2, + "buflen": 3, + "is_connect": 4, + "http_parser_url": 3, + "*u": 2, + "http_parser_url_fields": 2, + "uf": 14, + "old_uf": 4, + "u": 18, + "port": 7, + "field_set": 5, + "UF_MAX": 3, + "UF_SCHEMA": 2, + "UF_HOST": 3, + "UF_PORT": 5, + "UF_PATH": 2, + "UF_QUERY": 2, + "UF_FRAGMENT": 2, + "field_data": 5, + ".off": 2, + "xffff": 1, + "uint16_t": 12, + "http_parser_pause": 2, + "paused": 3, + "HPE_PAUSED": 2, + "http_parser_h": 2, + "__cplusplus": 20, + "HTTP_PARSER_VERSION_MAJOR": 1, + "HTTP_PARSER_VERSION_MINOR": 1, + "": 2, + "_WIN32": 3, + "__MINGW32__": 1, + "_MSC_VER": 5, + "__int8": 2, + "__int16": 2, + "int16_t": 1, + "__int32": 2, + "int32_t": 112, + "__int64": 3, + "int64_t": 2, + "ssize_t": 1, + "": 1, + "*1024": 4, + "DELETE": 2, + "GET": 2, + "HEAD": 2, + "POST": 2, + "PUT": 2, + "CONNECT": 2, + "OPTIONS": 2, + "TRACE": 2, + "COPY": 2, + "LOCK": 2, + "MKCOL": 2, + "MOVE": 2, + "PROPFIND": 2, + "PROPPATCH": 2, + "SEARCH": 3, + "UNLOCK": 2, + "REPORT": 2, + "MKACTIVITY": 2, + "CHECKOUT": 2, + "MERGE": 2, + "MSEARCH": 1, + "M": 1, + "NOTIFY": 2, + "SUBSCRIBE": 2, + "UNSUBSCRIBE": 2, + "PATCH": 2, + "PURGE": 2, + "HTTP_##name": 1, + "HTTP_BOTH": 1, + "OK": 1, + "CB_message_begin": 1, + "CB_url": 1, + "CB_header_field": 1, + "CB_header_value": 1, + "CB_headers_complete": 1, + "CB_body": 1, + "CB_message_complete": 1, + "INVALID_EOF_STATE": 1, + "HEADER_OVERFLOW": 1, + "CLOSED_CONNECTION": 1, + "INVALID_VERSION": 1, + "INVALID_STATUS": 1, + "INVALID_METHOD": 1, + "INVALID_URL": 1, + "INVALID_HOST": 1, + "INVALID_PORT": 1, + "INVALID_PATH": 1, + "INVALID_QUERY_STRING": 1, + "INVALID_FRAGMENT": 1, + "LF_EXPECTED": 1, + "INVALID_HEADER_TOKEN": 1, + "INVALID_CONTENT_LENGTH": 1, + "INVALID_CHUNK_SIZE": 1, + "INVALID_CONSTANT": 1, + "INVALID_INTERNAL_STATE": 1, + "STRICT": 1, + "PAUSED": 1, + "UNKNOWN": 1, + "HTTP_ERRNO_GEN": 3, + "HPE_##n": 1, + "HTTP_PARSER_ERRNO_LINE": 2, + "short": 6, + "http_cb": 3, + "on_message_begin": 1, + "http_data_cb": 4, + "on_url": 1, + "on_header_field": 1, + "on_header_value": 1, + "on_body": 1, + "on_message_complete": 1, + "off": 8, + "*http_method_str": 1, + "*http_errno_name": 1, + "*http_errno_description": 1, + "": 1, + "_Included_jni_JniLayer": 2, + "JNIEXPORT": 6, + "jlong": 6, + "JNICALL": 6, + "Java_jni_JniLayer_jni_1layer_1initialize": 1, + "JNIEnv": 6, + "jobject": 6, + "jintArray": 1, + "jint": 7, + "Java_jni_JniLayer_jni_1layer_1mainloop": 1, + "Java_jni_JniLayer_jni_1layer_1set_1button": 1, + "Java_jni_JniLayer_jni_1layer_1set_1analog": 1, + "jfloat": 1, + "Java_jni_JniLayer_jni_1layer_1report_1analog_1chg": 1, + "Java_jni_JniLayer_jni_1layer_1kill": 1, + "strncasecmp": 2, + "_strnicmp": 1, + "REF_TABLE_SIZE": 1, + "BUFFER_BLOCK": 5, + "BUFFER_SPAN": 9, + "MKD_LI_END": 1, + "gperf_case_strncmp": 1, + "s1": 6, + "s2": 6, + "GPERF_DOWNCASE": 1, + "GPERF_CASE_STRNCMP": 1, + "link_ref": 2, + "*link": 1, + "*title": 1, + "sd_markdown": 6, + "tag": 1, + "tag_len": 3, + "w": 6, + "is_empty": 4, + "htmlblock_end": 3, + "*curtag": 2, + "*rndr": 4, + "start_of_line": 2, + "tag_size": 3, + "curtag": 8, + "end_tag": 4, + "block_lines": 3, + "htmlblock_end_tag": 1, + "rndr": 25, + "parse_htmlblock": 1, + "*ob": 3, + "do_render": 4, + "tag_end": 7, + "work": 4, + "find_block_tag": 1, + "work.size": 5, + "cb.blockhtml": 6, + "ob": 14, + "opaque": 8, + "parse_table_row": 1, + "columns": 3, + "*col_data": 1, + "header_flag": 3, + "col": 9, + "*row_work": 1, + "cb.table_cell": 3, + "cb.table_row": 2, + "row_work": 4, + "rndr_newbuf": 2, + "cell_start": 5, + "cell_end": 6, + "*cell_work": 1, + "cell_work": 3, + "_isspace": 3, + "parse_inline": 1, + "col_data": 2, + "rndr_popbuf": 2, + "empty_cell": 2, + "parse_table_header": 1, + "*columns": 2, + "**column_data": 1, + "pipes": 23, + "header_end": 7, + "under_end": 1, + "*column_data": 1, + "calloc": 1, + "beg": 10, + "doc_size": 6, + "document": 9, + "UTF8_BOM": 1, + "is_ref": 1, + "md": 18, + "refs": 2, + "expand_tabs": 1, + "text": 22, + "bufputc": 2, + "bufgrow": 1, + "MARKDOWN_GROW": 1, + "cb.doc_header": 2, + "parse_block": 1, + "cb.doc_footer": 2, + "bufrelease": 3, + "free_link_refs": 1, + "work_bufs": 8, + ".size": 2, + "sd_markdown_free": 1, + "*md": 1, + ".asize": 2, + ".item": 2, + "stack_free": 2, + "sd_version": 1, + "*ver_major": 2, + "*ver_minor": 2, + "*ver_revision": 2, + "SUNDOWN_VER_MAJOR": 1, + "SUNDOWN_VER_MINOR": 1, + "SUNDOWN_VER_REVISION": 1, + "": 4, + "": 2, + "": 1, + "": 1, + "": 2, + "__APPLE__": 2, + "TARGET_OS_IPHONE": 1, + "**environ": 1, + "uv__chld": 2, + "EV_P_": 1, + "ev_child*": 1, + "watcher": 4, + "revents": 2, + "rstatus": 1, + "exit_status": 3, + "term_signal": 3, + "uv_process_t": 1, + "*process": 1, + "process": 19, + "child_watcher": 5, + "EV_CHILD": 1, + "ev_child_stop": 2, + "EV_A_": 1, + "WIFEXITED": 1, + "WEXITSTATUS": 2, + "WIFSIGNALED": 2, + "WTERMSIG": 2, + "exit_cb": 3, + "uv__make_socketpair": 2, + "fds": 20, + "SOCK_NONBLOCK": 2, + "fl": 8, + "SOCK_CLOEXEC": 1, + "UV__F_NONBLOCK": 5, + "socketpair": 2, + "AF_UNIX": 2, + "SOCK_STREAM": 2, + "uv__cloexec": 4, + "uv__nonblock": 5, + "uv__make_pipe": 2, + "__linux__": 3, + "UV__O_CLOEXEC": 1, + "UV__O_NONBLOCK": 1, + "uv__pipe2": 1, + "ENOSYS": 1, + "pipe": 1, + "uv__process_init_stdio": 2, + "uv_stdio_container_t*": 4, + "container": 17, + "writable": 8, + "UV_IGNORE": 2, + "UV_CREATE_PIPE": 4, + "UV_INHERIT_FD": 3, + "UV_INHERIT_STREAM": 2, + "data.stream": 7, + "UV_NAMED_PIPE": 2, + "data.fd": 1, + "uv__process_stdio_flags": 2, + "uv_pipe_t*": 1, + "ipc": 1, + "UV_STREAM_READABLE": 2, + "UV_STREAM_WRITABLE": 2, + "uv__process_open_stream": 2, + "child_fd": 3, + "close": 13, + "uv__stream_open": 1, + "uv_stream_t*": 2, + "uv__process_close_stream": 2, + "uv__stream_close": 1, + "uv__process_child_init": 2, + "uv_process_options_t": 2, + "options": 62, + "stdio_count": 7, + "int*": 22, + "options.flags": 4, + "UV_PROCESS_DETACHED": 2, + "setsid": 2, + "close_fd": 2, + "use_fd": 7, + "open": 4, + "O_RDONLY": 1, + "O_RDWR": 2, + "perror": 5, + "_exit": 6, + "dup2": 4, + "options.cwd": 2, + "UV_PROCESS_SETGID": 2, + "setgid": 1, + "options.gid": 1, + "UV_PROCESS_SETUID": 2, + "setuid": 1, + "options.uid": 1, + "environ": 4, + "options.env": 1, + "execvp": 1, + "options.file": 2, + "options.args": 1, + "SPAWN_WAIT_EXEC": 5, + "uv_spawn": 1, + "uv_loop_t*": 1, + "loop": 9, + "uv_process_t*": 3, + "char**": 7, + "save_our_env": 3, + "options.stdio_count": 4, + "malloc": 3, + "signal_pipe": 7, + "pollfd": 1, + "pfd": 2, + "pid_t": 2, + "pid": 13, + "UV_PROCESS_WINDOWS_VERBATIM_ARGUMENTS": 1, + "uv__handle_init": 1, + "uv_handle_t*": 1, + "UV_PROCESS": 1, + "counters.process_init": 1, + "uv__handle_start": 1, + "options.exit_cb": 1, + "options.stdio": 3, + "fork": 2, + "pfd.fd": 1, + "pfd.events": 1, + "POLLIN": 1, + "POLLHUP": 1, + "pfd.revents": 1, + "poll": 1, + "EINTR": 1, + "ev_child_init": 1, + "ev_child_start": 1, + "ev": 2, + "child_watcher.data": 1, + "uv__set_sys_error": 2, + "uv_process_kill": 1, + "signum": 4, + "kill": 4, + "uv_err_t": 1, + "uv_kill": 1, + "uv__new_sys_error": 1, + "uv_ok_": 1, + "uv__process_close": 1, + "handle": 10, + "uv__handle_stop": 1, + "VALUE": 13, + "rb_cRDiscount": 4, + "rb_rdiscount_to_html": 2, + "self": 9, + "*res": 2, + "szres": 8, + "encoding": 14, + "rb_funcall": 14, + "rb_intern": 15, + "rb_str_buf_new": 2, + "Check_Type": 2, + "T_STRING": 2, + "rb_rdiscount__get_flags": 3, + "MMIOT": 2, + "*doc": 2, + "mkd_string": 2, + "RSTRING_PTR": 2, + "RSTRING_LEN": 2, + "mkd_compile": 2, + "doc": 6, + "mkd_document": 1, + "res": 4, + "rb_str_cat": 4, + "mkd_cleanup": 2, + "rb_respond_to": 1, + "rb_rdiscount_toc_content": 2, + "mkd_toc": 1, + "ruby_obj": 11, + "MKD_TABSTOP": 1, + "MKD_NOHEADER": 1, + "Qtrue": 10, + "MKD_NOPANTS": 1, + "MKD_NOHTML": 1, + "MKD_TOC": 1, + "MKD_NOIMAGE": 1, + "MKD_NOLINKS": 1, + "MKD_NOTABLES": 1, + "MKD_STRICT": 1, + "MKD_AUTOLINK": 1, + "MKD_SAFELINK": 1, + "MKD_NO_EXT": 1, + "Init_rdiscount": 1, + "rb_define_class": 1, + "rb_cObject": 1, + "rb_define_method": 2, + "READLINE_READLINE_CATS": 3, + "": 1, + "atscntrb_readline_rl_library_version": 1, + "char*": 167, + "rl_library_version": 1, + "atscntrb_readline_rl_readline_version": 1, + "rl_readline_version": 1, + "atscntrb_readline_readline": 1, + "readline": 1, "": 1, "": 1, - "": 2, - "": 4, - "": 5, - "": 3, "": 1, "": 1, "": 1, - "": 2, "": 1, "": 2, "": 1, - "": 2, "": 1, "": 3, "": 1, @@ -6121,7 +7480,6 @@ "server.logfile": 8, "fopen": 3, "msg": 10, - "off": 8, "timeval": 4, "tv": 8, "gettimeofday": 4, @@ -6142,19 +7500,14 @@ "vsnprintf": 1, "va_end": 3, "redisLogFromHandler": 2, - "fd": 34, "server.daemonize": 5, - "open": 4, "O_APPEND": 2, "O_CREAT": 2, "O_WRONLY": 2, "STDOUT_FILENO": 2, "ll2string": 3, "write": 7, - "goto": 159, - "err": 38, "time": 10, - "close": 13, "oom": 3, "REDIS_WARNING": 19, "sleep": 1, @@ -6167,17 +7520,12 @@ "/1000": 1, "exitFromChild": 1, "retcode": 3, - "#ifdef": 66, "COVERAGE_TEST": 1, - "#else": 94, - "_exit": 6, "dictVanillaFree": 1, "*privdata": 8, - "*val": 6, "DICT_NOTUSED": 6, "privdata": 8, "zfree": 2, - "val": 20, "dictListDestructor": 2, "listRelease": 1, "list*": 1, @@ -6190,7 +7538,6 @@ "sds": 13, "key1": 5, "key2": 5, - "memcmp": 6, "dictSdsKeyCaseCompare": 2, "strcasecmp": 13, "dictRedisObjectDestructor": 7, @@ -6205,22 +7552,17 @@ "ptr": 18, "o2": 7, "dictObjHash": 2, - "*o": 8, "key": 9, "dictGenHashFunction": 5, - "o": 80, "dictSdsHash": 4, - "char*": 167, "dictSdsCaseHash": 2, "dictGenCaseHashFunction": 1, "dictEncObjKeyCompare": 4, "robj*": 3, - "cmp": 9, "REDIS_ENCODING_INT": 4, "getDecodedObject": 3, "dictEncObjHash": 4, "REDIS_ENCODING_RAW": 1, - "hash": 12, "dictType": 8, "setDictType": 1, "zsetDictType": 1, @@ -6240,7 +7582,6 @@ "used*100/size": 1, "REDIS_HT_MINFILL": 1, "tryResizeHashTables": 2, - "j": 206, "server.dbnum": 8, "server.db": 23, ".dict": 9, @@ -6261,10 +7602,6 @@ "*REDIS_EXPIRELOOKUPS_TIME_PERC/REDIS_HZ/100": 1, "expired": 4, "redisDb": 3, - "*db": 3, - "do": 21, - "num": 24, - "db": 10, "expires": 3, "slots": 2, "now": 5, @@ -6272,7 +7609,6 @@ "REDIS_EXPIRELOOKUPS_PER_CRON": 2, "dictEntry": 2, "*de": 2, - "t": 32, "de": 12, "dictGetRandomKey": 4, "dictGetSignedIntegerVal": 1, @@ -6302,7 +7638,6 @@ "REDIS_OPS_SEC_SAMPLES": 3, "getOperationsPerSecond": 2, "sum": 3, - "/": 9, "clientsCronHandleTimeout": 2, "redisClient": 12, "time_t": 4, @@ -6350,7 +7685,6 @@ "serverCron": 2, "aeEventLoop": 2, "*eventLoop": 2, - "id": 13, "*clientData": 1, "server.cronloops": 3, "REDIS_NOTUSED": 5, @@ -6369,15 +7703,10 @@ "server.aof_rewrite_scheduled": 4, "rewriteAppendOnlyFileBackground": 2, "statloc": 5, - "pid_t": 2, - "pid": 13, "wait3": 1, "WNOHANG": 1, "exitcode": 3, - "WEXITSTATUS": 2, "bysignal": 4, - "WIFSIGNALED": 2, - "WTERMSIG": 2, "backgroundSaveDoneHandler": 1, "backgroundRewriteDoneHandler": 1, "server.saveparamslen": 3, @@ -6584,7 +7913,6 @@ "RLIMIT_NOFILE": 2, "oldlimit": 5, "limit.rlim_cur": 2, - "f": 184, "limit.rlim_max": 1, "setrlimit": 1, "initServer": 2, @@ -6629,7 +7957,6 @@ "server.stat_keyspace_hits": 2, "server.stat_fork_time": 2, "server.stat_rejected_conn": 2, - "memset": 4, "server.lastbgsave_status": 3, "server.stop_writes_on_bgsave_err": 2, "aeCreateTimeEvent": 1, @@ -6640,15 +7967,12 @@ "acceptUnixHandler": 1, "REDIS_AOF_ON": 2, "LL*": 1, - "*1024": 4, "REDIS_MAXMEMORY_NO_EVICTION": 2, "clusterInit": 1, "scriptingInit": 1, "slowlogInit": 1, "bioInit": 1, "numcommands": 5, - "/sizeof": 4, - "*f": 2, "sflags": 1, "retval": 3, "arity": 3, @@ -6668,7 +7992,6 @@ "server.cluster.myself": 1, "addReplySds": 3, "ip": 4, - "port": 7, "freeMemoryIfNeeded": 2, "REDIS_CMD_DENYOOM": 1, "REDIS_ERR": 5, @@ -6683,7 +8006,6 @@ "REDIS_SHUTDOWN_SAVE": 1, "nosave": 2, "REDIS_SHUTDOWN_NOSAVE": 1, - "kill": 4, "SIGKILL": 2, "rdbRemoveTempFile": 1, "aof_fsync": 1, @@ -6693,9 +8015,7 @@ "addReplyBulkLongLong": 2, "bytesToHuman": 3, "*s": 3, - "d": 16, "sprintf": 10, - "s": 154, "n/": 3, "LL*1024*1024": 2, "LL*1024*1024*1024": 1, @@ -6727,7 +8047,6 @@ "name.release": 1, "name.machine": 1, "aeGetApiName": 1, - "__GNUC__": 8, "__GNUC_MINOR__": 2, "__GNUC_PATCHLEVEL__": 1, "uptime/": 1, @@ -6769,7 +8088,6 @@ "replstate": 1, "REDIS_REPL_WAIT_BGSAVE_START": 1, "REDIS_REPL_WAIT_BGSAVE_END": 1, - "state": 104, "REDIS_REPL_SEND_BULK": 1, "REDIS_REPL_ONLINE": 1, "float": 26, @@ -6807,19 +8125,13 @@ "dictGetVal": 2, "estimateObjectIdleTime": 1, "REDIS_MAXMEMORY_VOLATILE_TTL": 1, - "delta": 54, "flushSlavesOutputBuffers": 1, - "__linux__": 3, "linuxOvercommitMemoryValue": 2, "fgets": 1, "atoi": 3, "linuxOvercommitMemoryWarning": 2, "createPidFile": 2, "daemonize": 2, - "fork": 2, - "setsid": 2, - "O_RDWR": 2, - "dup2": 4, "STDIN_FILENO": 1, "STDERR_FILENO": 2, "version": 4, @@ -6852,7 +8164,6 @@ "zmalloc_enable_thread_safeness": 1, "srand": 1, "dictSetHashFunctionSeed": 1, - "options": 62, "*configfile": 1, "configfile": 2, "sdscatrepr": 1, @@ -6863,20 +8174,1893 @@ "aeSetBeforeSleepProc": 1, "aeMain": 1, "aeDeleteEventLoop": 1, + "": 1, + "": 2, + "": 2, + "rfUTF8_IsContinuationbyte": 1, + "e.t.c.": 1, + "rfFReadLine_UTF8": 5, + "FILE*": 64, + "utf8": 36, + "uint32_t*": 34, + "byteLength": 197, + "bufferSize": 6, + "eof": 53, + "bytesN": 98, + "bIndex": 5, + "RF_NEWLINE_CRLF": 1, + "newLineFound": 1, + "*bufferSize": 1, + "RF_OPTION_FGETS_READBYTESN": 5, + "RF_MALLOC": 47, + "tempBuff": 6, + "RF_LF": 10, + "buff": 95, + "RF_SUCCESS": 14, + "RE_FILE_EOF": 22, + "found": 20, + "*eofReached": 14, + "LOG_ERROR": 64, + "RF_HEXEQ_UI": 7, + "rfFgetc_UTF32BE": 3, + "else//": 14, + "undo": 5, + "peek": 5, + "ahead": 5, + "file": 6, + "pointer": 5, + "fseek": 19, + "SEEK_CUR": 19, + "rfFgets_UTF32LE": 2, + "eofReached": 4, + "rfFgetc_UTF32LE": 4, + "rfFgets_UTF16BE": 2, + "rfFgetc_UTF16BE": 4, + "rfFgets_UTF16LE": 2, + "rfFgetc_UTF16LE": 4, + "rfFgets_UTF8": 2, + "rfFgetc_UTF8": 3, + "RF_HEXEQ_C": 9, + "fgetc": 9, + "check": 8, + "RE_FILE_READ": 2, + "cp": 12, + "c2": 13, + "c3": 9, + "c4": 5, + "i_READ_CHECK": 20, + "///": 4, + "success": 4, + "cc": 24, + "we": 10, + "more": 2, + "bytes": 225, + "xC0": 3, + "xC1": 1, + "RE_UTF8_INVALID_SEQUENCE_INVALID_BYTE": 6, + "RE_UTF8_INVALID_SEQUENCE_END": 6, + "rfUTF8_IsContinuationByte": 12, + "RE_UTF8_INVALID_SEQUENCE_CONBYTE": 6, + "decoded": 3, + "codepoint": 47, + "F": 38, + "xE0": 2, + "xF": 5, + "decode": 6, + "xF0": 2, + "RF_HEXGE_C": 1, + "xBF": 2, + "//invalid": 1, + "byte": 6, + "are": 6, + "xFF": 1, + "//if": 1, + "needing": 1, + "than": 5, + "swapE": 21, + "v1": 38, + "v2": 26, + "rfUTILS_Endianess": 24, + "RF_LITTLE_ENDIAN": 23, + "fread": 12, + "endianess": 40, + "needed": 10, + "rfUTILS_SwapEndianUS": 10, + "RF_HEXGE_US": 4, + "xD800": 8, + "RF_HEXLE_US": 4, + "xDFFF": 8, + "RF_HEXL_US": 8, + "RF_HEXG_US": 8, + "xDBFF": 4, + "RE_UTF16_INVALID_SEQUENCE": 20, + "RE_UTF16_NO_SURRPAIR": 2, + "xDC00": 4, + "user": 2, + "wants": 2, + "ff": 10, + "uint16_t*": 11, + "surrogate": 4, + "pair": 4, + "existence": 2, + "RF_BIG_ENDIAN": 10, + "rfUTILS_SwapEndianUI": 11, + "rfFback_UTF32BE": 2, + "i_FSEEK_CHECK": 14, + "rfFback_UTF32LE": 2, + "rfFback_UTF16BE": 2, + "rfFback_UTF16LE": 2, + "rfFback_UTF8": 2, + "depending": 1, + "number": 19, + "read": 1, + "backwards": 1, + "RE_UTF8_INVALID_SEQUENCE": 2, + "REFU_IO_H": 2, + "": 2, + "opening": 2, + "bracket": 4, + "calling": 4, + "C": 14, + "xA": 1, + "RF_CR": 1, + "xD": 1, + "REFU_WIN32_VERSION": 1, + "i_PLUSB_WIN32": 2, + "foff_rft": 2, + "off64_t": 1, + "///Fseek": 1, + "and": 15, + "Ftelll": 1, + "definitions": 1, + "rfFseek": 2, + "i_FILE_": 16, + "i_OFFSET_": 4, + "i_WHENCE_": 4, + "_fseeki64": 1, + "rfFtell": 2, + "_ftelli64": 1, + "fseeko64": 1, + "ftello64": 1, + "i_DECLIMEX_": 121, + "rfFReadLine_UTF16BE": 6, + "rfFReadLine_UTF16LE": 4, + "rfFReadLine_UTF32BE": 1, + "rfFReadLine_UTF32LE": 4, + "rfFgets_UTF32BE": 1, + "RF_IAMHERE_FOR_DOXYGEN": 22, + "rfPopen": 2, + "command": 2, + "i_rfPopen": 2, + "i_CMD_": 2, + "i_MODE_": 2, + "i_rfLMS_WRAP2": 5, + "rfPclose": 1, + "stream": 3, + "///closing": 1, + "#endif//include": 1, + "guards": 2, + "": 1, + "": 2, + "local": 5, + "stack": 6, + "memory": 4, + "RF_OPTION_DEFAULT_ARGUMENTS": 24, + "RF_String*": 222, + "rfString_Create": 4, + "i_rfString_Create": 3, + "READ_VSNPRINTF_ARGS": 5, + "rfUTF8_VerifySequence": 7, + "RF_FAILURE": 24, + "RE_STRING_INIT_FAILURE": 8, + "buffAllocated": 11, + "RF_String": 27, + "i_NVrfString_Create": 3, + "i_rfString_CreateLocal1": 3, + "RF_OPTION_SOURCE_ENCODING": 30, + "RF_UTF8": 8, + "characterLength": 16, + "*codepoints": 2, + "rfLMS_MacroEvalPtr": 2, + "RF_LMS": 6, + "RF_UTF16_LE": 9, + "RF_UTF16_BE": 7, + "codepoints": 44, + "i/2": 2, + "#elif": 14, + "RF_UTF32_LE": 3, + "RF_UTF32_BE": 3, + "UTF16": 4, + "rfUTF16_Decode": 5, + "rfUTF16_Decode_swap": 5, + "RF_UTF16_BE//": 2, + "RF_UTF32_LE//": 2, + "copy": 4, + "UTF32": 4, + "into": 8, + "RF_UTF32_BE//": 2, + "": 2, + "any": 3, + "other": 16, + "UTF": 17, + "8": 15, + "encode": 2, + "them": 3, + "rfUTF8_Encode": 4, + "While": 2, + "attempting": 2, + "create": 2, + "temporary": 4, + "given": 5, + "sequence": 6, + "could": 2, + "not": 6, + "be": 6, + "properly": 2, + "encoded": 2, + "RE_UTF8_ENCODING": 2, + "End": 2, + "Non": 2, + "code=": 2, + "normally": 1, + "since": 5, + "here": 5, + "have": 2, + "validity": 2, + "get": 4, + "Error": 2, + "at": 3, + "String": 11, + "Allocation": 2, + "due": 2, + "invalid": 2, + "rfLMS_Push": 4, + "Memory": 4, + "allocation": 3, + "Local": 2, + "Stack": 2, + "failed": 2, + "Insufficient": 2, + "space": 4, + "Consider": 2, + "compiling": 2, + "library": 3, + "with": 9, + "bigger": 3, + "Quitting": 2, + "proccess": 2, + "RE_LOCALMEMSTACK_INSUFFICIENT": 8, + "i_NVrfString_CreateLocal": 3, + "during": 1, + "rfString_Init": 3, + "i_rfString_Init": 3, + "i_NVrfString_Init": 3, + "rfString_Create_cp": 2, + "rfString_Init_cp": 3, + "RF_HEXLE_UI": 8, + "RF_HEXGE_UI": 6, + "C0": 3, + "ffff": 4, + "xFC0": 4, + "xF000": 2, + "xE": 2, + "F000": 2, + "C0000": 2, + "E": 11, + "RE_UTF8_INVALID_CODE_POINT": 2, + "rfString_Create_i": 2, + "numLen": 8, + "max": 4, + "is": 17, + "most": 3, + "environment": 3, + "so": 4, + "chars": 3, + "will": 3, + "certainly": 3, + "fit": 3, + "it": 12, + "strcpy": 4, + "rfString_Init_i": 2, + "rfString_Create_f": 2, + "rfString_Init_f": 2, + "rfString_Create_UTF16": 2, + "rfString_Init_UTF16": 3, + "utf8ByteLength": 34, + "last": 1, + "utf": 1, + "null": 4, + "termination": 3, + "byteLength*2": 1, + "allocate": 1, + "same": 1, + "as": 4, + "different": 1, + "RE_INPUT": 1, + "ends": 3, + "rfString_Create_UTF32": 2, + "rfString_Init_UTF32": 3, + "codeBuffer": 9, + "xFEFF": 1, + "big": 14, + "endian": 20, + "xFFFE0000": 1, + "little": 7, + "according": 1, + "standard": 1, + "no": 4, + "BOM": 1, + "means": 1, + "rfUTF32_Length": 1, + "i_rfString_Assign": 3, + "dest": 7, + "sourceP": 2, + "source": 8, + "RF_REALLOC": 9, + "rfString_Assign_char": 2, + "<5)>": 1, + "rfString_Create_nc": 3, + "i_rfString_Create_nc": 3, + "bytesWritten": 2, + "i_NVrfString_Create_nc": 3, + "rfString_Init_nc": 4, + "i_rfString_Init_nc": 3, + "i_NVrfString_Init_nc": 3, + "rfString_Destroy": 2, + "rfString_Deinit": 3, + "rfString_ToUTF16": 4, + "charsN": 5, + "rfUTF8_Decode": 2, + "rfUTF16_Encode": 1, + "rfString_ToUTF32": 4, + "rfString_Length": 5, + "RF_STRING_ITERATE_START": 9, + "RF_STRING_ITERATE_END": 9, + "rfString_GetChar": 2, + "thisstr": 210, + "codePoint": 18, + "RF_STRING_INDEX_OUT_OF_BOUNDS": 2, + "rfString_BytePosToCodePoint": 7, + "rfString_BytePosToCharPos": 4, + "thisstrP": 32, + "bytepos": 12, + "before": 4, + "charPos": 8, + "byteI": 7, + "i_rfString_Equal": 3, + "s1P": 2, + "s2P": 2, + "i_rfString_Find": 5, + "sstrP": 6, + "optionsP": 11, + "sstr": 39, + "*optionsP": 8, + "RF_BITFLAG_ON": 5, + "RF_CASE_IGNORE": 2, + "strstr": 2, + "RF_MATCH_WORD": 5, + "exact": 6, + "": 1, + "0x5a": 1, + "0x7a": 1, + "substring": 5, + "search": 1, + "zero": 2, + "equals": 1, + "then": 1, + "okay": 1, + "rfString_Equal": 4, + "RFS_": 8, + "ERANGE": 1, + "RE_STRING_TOFLOAT_UNDERFLOW": 1, + "RE_STRING_TOFLOAT": 1, + "rfString_Copy_OUT": 2, + "srcP": 6, + "rfString_Copy_IN": 2, + "dst": 15, + "rfString_Copy_chars": 2, + "bytePos": 23, + "terminate": 1, + "i_rfString_ScanfAfter": 3, + "afterstrP": 2, + "format": 4, + "afterstr": 5, + "sscanf": 1, + "<=0)>": 1, + "Counts": 1, + "how": 1, + "many": 1, + "times": 1, + "occurs": 1, + "inside": 2, + "i_rfString_Count": 5, + "sstr2": 2, + "move": 12, + "rfString_FindBytePos": 10, + "rfString_Tokenize": 2, + "sep": 3, + "tokensN": 2, + "RF_String**": 2, + "*tokensN": 1, + "rfString_Count": 4, + "lstr": 6, + "lstrP": 1, + "rstr": 24, + "rstrP": 5, + "rfString_After": 4, + "rfString_Beforev": 4, + "parNP": 6, + "i_rfString_Beforev": 16, + "parN": 10, + "*parNP": 2, + "minPos": 17, + "thisPos": 8, + "argList": 8, + "va_arg": 2, + "i_rfString_Before": 5, + "i_rfString_After": 5, + "afterP": 2, + "after": 6, + "rfString_Afterv": 4, + "i_rfString_Afterv": 16, + "minPosLength": 3, + "go": 8, + "i_rfString_Append": 3, + "otherP": 4, + "strncat": 1, + "rfString_Append_i": 2, + "rfString_Append_f": 2, + "i_rfString_Prepend": 3, + "goes": 1, + "i_rfString_Remove": 6, + "numberP": 1, + "*numberP": 1, + "occurences": 5, + "done": 1, + "<=thisstr->": 1, + "i_rfString_KeepOnly": 3, + "keepstrP": 2, + "keepLength": 2, + "charValue": 12, + "*keepChars": 1, + "keepstr": 5, + "exists": 6, + "charBLength": 5, + "keepChars": 4, + "*keepLength": 1, + "rfString_Iterate_Start": 6, + "rfString_Iterate_End": 4, + "": 1, + "does": 1, + "exist": 2, + "back": 1, + "cover": 1, + "that": 9, + "effectively": 1, + "gets": 1, + "deleted": 1, + "rfUTF8_FromCodepoint": 1, + "this": 5, + "kind": 1, + "non": 1, + "clean": 1, + "way": 1, + "macro": 2, + "internally": 1, + "uses": 1, + "byteIndex_": 12, + "variable": 1, + "use": 1, + "determine": 1, + "backs": 1, + "by": 1, + "contiuing": 1, + "make": 3, + "sure": 2, + "position": 1, + "won": 1, + "array": 1, + "rfString_PruneStart": 2, + "nBytePos": 23, + "rfString_PruneEnd": 2, + "RF_STRING_ITERATEB_START": 2, + "RF_STRING_ITERATEB_END": 2, + "rfString_PruneMiddleB": 2, + "pBytePos": 15, + "indexing": 1, + "works": 1, + "pbytePos": 2, + "pth": 2, + "include": 6, + "rfString_PruneMiddleF": 2, + "got": 1, + "all": 2, + "i_rfString_Replace": 6, + "numP": 1, + "*numP": 1, + "RF_StringX": 2, + "just": 1, + "finding": 1, + "foundN": 10, + "bSize": 4, + "bytePositions": 17, + "bSize*sizeof": 1, + "rfStringX_FromString_IN": 1, + "temp.bIndex": 2, + "temp.bytes": 1, + "temp.byteLength": 1, + "rfStringX_Deinit": 1, + "replace": 3, + "removed": 2, + "one": 2, + "orSize": 5, + "nSize": 4, + "number*diff": 1, + "strncpy": 3, + "smaller": 1, + "diff*number": 1, + "remove": 1, + "equal": 1, + "i_rfString_StripStart": 3, + "subP": 7, + "RF_String*sub": 2, + "noMatch": 8, + "*subValues": 2, + "subLength": 6, + "subValues": 8, + "*subLength": 2, + "i_rfString_StripEnd": 3, + "lastBytePos": 4, + "testity": 2, + "i_rfString_Strip": 3, + "res1": 2, + "rfString_StripStart": 3, + "res2": 2, + "rfString_StripEnd": 3, + "rfString_Create_fUTF8": 2, + "rfString_Init_fUTF8": 3, + "unused": 3, + "rfString_Assign_fUTF8": 2, + "FILE*f": 2, + "utf8BufferSize": 4, + "function": 6, + "rfString_Append_fUTF8": 2, + "rfString_Append": 5, + "rfString_Create_fUTF16": 2, + "rfString_Init_fUTF16": 3, + "rfString_Assign_fUTF16": 2, + "rfString_Append_fUTF16": 2, + "char*utf8": 3, + "rfString_Create_fUTF32": 2, + "rfString_Init_fUTF32": 3, + "<0)>": 1, + "Failure": 1, + "initialize": 1, + "reading": 1, + "Little": 1, + "Endian": 1, + "32": 1, + "bytesN=": 1, + "rfString_Assign_fUTF32": 2, + "rfString_Append_fUTF32": 2, + "i_rfString_Fwrite": 5, + "sP": 2, + "encodingP": 1, + "*utf32": 1, + "utf16": 11, + "*encodingP": 1, + "fwrite": 5, + "logging": 5, + "utf32": 10, + "i_WRITE_CHECK": 1, + "RE_FILE_WRITE": 1, + "REFU_USTRING_H": 2, + "": 1, + "RF_MODULE_STRINGS//": 1, + "included": 2, + "module": 3, + "": 1, + "argument": 1, + "wrapping": 1, + "functionality": 1, + "": 1, + "unicode": 2, + "xFF0FFFF": 1, + "rfUTF8_IsContinuationByte2": 1, + "b__": 3, + "0xBF": 1, + "pragma": 1, + "pack": 2, + "push": 1, + "internal": 4, + "author": 1, + "Lefteris": 1, + "09": 1, + "12": 1, + "2010": 1, + "endinternal": 1, + "brief": 1, + "A": 11, + "representation": 2, + "The": 1, + "Refu": 2, + "Unicode": 1, + "has": 2, + "two": 1, + "versions": 1, + "One": 1, + "ref": 1, + "what": 1, + "operations": 1, + "can": 2, + "performed": 1, + "extended": 3, + "Strings": 2, + "Functions": 1, + "convert": 1, + "but": 1, + "always": 2, + "Once": 1, + "been": 1, + "created": 1, + "assumed": 1, + "valid": 1, + "every": 1, + "performs": 1, + "unless": 1, + "otherwise": 1, + "specified": 1, + "All": 1, + "functions": 2, + "which": 1, + "isinherited": 1, + "StringX": 2, + "their": 1, + "description": 1, + "safely": 1, + "specific": 1, + "or": 1, + "needs": 1, + "manipulate": 1, + "Extended": 1, + "To": 1, + "documentation": 1, + "even": 1, + "clearer": 1, + "should": 2, + "marked": 1, + "notinherited": 1, + "cppcode": 1, + "constructor": 1, + "i_StringCHandle": 1, + "@endcpp": 1, + "@endinternal": 1, + "*/": 1, + "#pragma": 1, + "pop": 1, + "i_rfString_CreateLocal": 2, + "__VA_ARGS__": 66, + "RP_SELECT_FUNC_IF_NARGIS": 5, + "i_SELECT_RF_STRING_CREATE": 1, + "i_SELECT_RF_STRING_CREATE1": 1, + "i_SELECT_RF_STRING_CREATE0": 1, + "///Internal": 1, + "creates": 1, + "i_SELECT_RF_STRING_CREATELOCAL": 1, + "i_SELECT_RF_STRING_CREATELOCAL1": 1, + "i_SELECT_RF_STRING_CREATELOCAL0": 1, + "i_SELECT_RF_STRING_INIT": 1, + "i_SELECT_RF_STRING_INIT1": 1, + "i_SELECT_RF_STRING_INIT0": 1, + "code": 6, + "i_SELECT_RF_STRING_CREATE_NC": 1, + "i_SELECT_RF_STRING_CREATE_NC1": 1, + "i_SELECT_RF_STRING_CREATE_NC0": 1, + "i_SELECT_RF_STRING_INIT_NC": 1, + "i_SELECT_RF_STRING_INIT_NC1": 1, + "i_SELECT_RF_STRING_INIT_NC0": 1, + "//@": 1, + "rfString_Assign": 2, + "i_DESTINATION_": 2, + "i_SOURCE_": 2, + "rfString_ToUTF8": 2, + "i_STRING_": 2, + "rfString_ToCstr": 2, + "uint32_t*length": 1, + "string_": 9, + "startCharacterPos_": 4, + "characterUnicodeValue_": 4, + "j_": 6, + "//Two": 1, + "macros": 1, + "accomplish": 1, + "going": 1, + "backwards.": 1, + "This": 1, + "its": 1, + "pair.": 1, + "rfString_IterateB_Start": 1, + "characterPos_": 5, + "b_index_": 6, + "c_index_": 3, + "rfString_IterateB_End": 1, + "i_STRING1_": 2, + "i_STRING2_": 2, + "i_rfLMSX_WRAP2": 4, + "rfString_Find": 3, + "i_THISSTR_": 60, + "i_SEARCHSTR_": 26, + "i_OPTIONS_": 28, + "i_rfLMS_WRAP3": 4, + "i_RFI8_": 54, + "RF_SELECT_FUNC_IF_NARGGT": 10, + "i_NPSELECT_RF_STRING_FIND": 1, + "i_NPSELECT_RF_STRING_FIND1": 1, + "RF_COMPILE_ERROR": 33, + "i_NPSELECT_RF_STRING_FIND0": 1, + "RF_SELECT_FUNC": 10, + "i_SELECT_RF_STRING_FIND": 1, + "i_SELECT_RF_STRING_FIND2": 1, + "i_SELECT_RF_STRING_FIND3": 1, + "i_SELECT_RF_STRING_FIND1": 1, + "i_SELECT_RF_STRING_FIND0": 1, + "rfString_ToInt": 1, + "int32_t*": 1, + "rfString_ToDouble": 1, + "double*": 1, + "rfString_ScanfAfter": 2, + "i_AFTERSTR_": 8, + "i_FORMAT_": 2, + "i_VAR_": 2, + "i_rfLMSX_WRAP4": 11, + "i_NPSELECT_RF_STRING_COUNT": 1, + "i_NPSELECT_RF_STRING_COUNT1": 1, + "i_NPSELECT_RF_STRING_COUNT0": 1, + "i_SELECT_RF_STRING_COUNT": 1, + "i_SELECT_RF_STRING_COUNT2": 1, + "i_rfLMSX_WRAP3": 5, + "i_SELECT_RF_STRING_COUNT3": 1, + "i_SELECT_RF_STRING_COUNT1": 1, + "i_SELECT_RF_STRING_COUNT0": 1, + "rfString_Between": 3, + "i_rfString_Between": 4, + "i_NPSELECT_RF_STRING_BETWEEN": 1, + "i_NPSELECT_RF_STRING_BETWEEN1": 1, + "i_NPSELECT_RF_STRING_BETWEEN0": 1, + "i_SELECT_RF_STRING_BETWEEN": 1, + "i_SELECT_RF_STRING_BETWEEN4": 1, + "i_LEFTSTR_": 6, + "i_RIGHTSTR_": 6, + "i_RESULT_": 12, + "i_rfLMSX_WRAP5": 9, + "i_SELECT_RF_STRING_BETWEEN5": 1, + "i_SELECT_RF_STRING_BETWEEN3": 1, + "i_SELECT_RF_STRING_BETWEEN2": 1, + "i_SELECT_RF_STRING_BETWEEN1": 1, + "i_SELECT_RF_STRING_BETWEEN0": 1, + "i_NPSELECT_RF_STRING_BEFOREV": 1, + "i_NPSELECT_RF_STRING_BEFOREV1": 1, + "RF_SELECT_FUNC_IF_NARGGT2": 2, + "i_LIMSELECT_RF_STRING_BEFOREV": 1, + "i_NPSELECT_RF_STRING_BEFOREV0": 1, + "i_LIMSELECT_RF_STRING_BEFOREV1": 1, + "i_LIMSELECT_RF_STRING_BEFOREV0": 1, + "i_SELECT_RF_STRING_BEFOREV": 1, + "i_SELECT_RF_STRING_BEFOREV5": 1, + "i_ARG1_": 56, + "i_ARG2_": 56, + "i_ARG3_": 56, + "i_ARG4_": 56, + "i_RFUI8_": 28, + "i_SELECT_RF_STRING_BEFOREV6": 1, + "i_rfLMSX_WRAP6": 2, + "i_SELECT_RF_STRING_BEFOREV7": 1, + "i_rfLMSX_WRAP7": 2, + "i_SELECT_RF_STRING_BEFOREV8": 1, + "i_rfLMSX_WRAP8": 2, + "i_SELECT_RF_STRING_BEFOREV9": 1, + "i_rfLMSX_WRAP9": 2, + "i_SELECT_RF_STRING_BEFOREV10": 1, + "i_rfLMSX_WRAP10": 2, + "i_SELECT_RF_STRING_BEFOREV11": 1, + "i_rfLMSX_WRAP11": 2, + "i_SELECT_RF_STRING_BEFOREV12": 1, + "i_rfLMSX_WRAP12": 2, + "i_SELECT_RF_STRING_BEFOREV13": 1, + "i_rfLMSX_WRAP13": 2, + "i_SELECT_RF_STRING_BEFOREV14": 1, + "i_rfLMSX_WRAP14": 2, + "i_SELECT_RF_STRING_BEFOREV15": 1, + "i_rfLMSX_WRAP15": 2, + "i_SELECT_RF_STRING_BEFOREV16": 1, + "i_rfLMSX_WRAP16": 2, + "i_SELECT_RF_STRING_BEFOREV17": 1, + "i_rfLMSX_WRAP17": 2, + "i_SELECT_RF_STRING_BEFOREV18": 1, + "i_rfLMSX_WRAP18": 2, + "rfString_Before": 3, + "i_NPSELECT_RF_STRING_BEFORE": 1, + "i_NPSELECT_RF_STRING_BEFORE1": 1, + "i_NPSELECT_RF_STRING_BEFORE0": 1, + "i_SELECT_RF_STRING_BEFORE": 1, + "i_SELECT_RF_STRING_BEFORE3": 1, + "i_SELECT_RF_STRING_BEFORE4": 1, + "i_SELECT_RF_STRING_BEFORE2": 1, + "i_SELECT_RF_STRING_BEFORE1": 1, + "i_SELECT_RF_STRING_BEFORE0": 1, + "i_NPSELECT_RF_STRING_AFTER": 1, + "i_NPSELECT_RF_STRING_AFTER1": 1, + "i_NPSELECT_RF_STRING_AFTER0": 1, + "i_SELECT_RF_STRING_AFTER": 1, + "i_SELECT_RF_STRING_AFTER3": 1, + "i_OUTSTR_": 6, + "i_SELECT_RF_STRING_AFTER4": 1, + "i_SELECT_RF_STRING_AFTER2": 1, + "i_SELECT_RF_STRING_AFTER1": 1, + "i_SELECT_RF_STRING_AFTER0": 1, + "i_NPSELECT_RF_STRING_AFTERV": 1, + "i_NPSELECT_RF_STRING_AFTERV1": 1, + "i_LIMSELECT_RF_STRING_AFTERV": 1, + "i_NPSELECT_RF_STRING_AFTERV0": 1, + "i_LIMSELECT_RF_STRING_AFTERV1": 1, + "i_LIMSELECT_RF_STRING_AFTERV0": 1, + "i_SELECT_RF_STRING_AFTERV": 1, + "i_SELECT_RF_STRING_AFTERV5": 1, + "i_SELECT_RF_STRING_AFTERV6": 1, + "i_SELECT_RF_STRING_AFTERV7": 1, + "i_SELECT_RF_STRING_AFTERV8": 1, + "i_SELECT_RF_STRING_AFTERV9": 1, + "i_SELECT_RF_STRING_AFTERV10": 1, + "i_SELECT_RF_STRING_AFTERV11": 1, + "i_SELECT_RF_STRING_AFTERV12": 1, + "i_SELECT_RF_STRING_AFTERV13": 1, + "i_SELECT_RF_STRING_AFTERV14": 1, + "i_SELECT_RF_STRING_AFTERV15": 1, + "i_SELECT_RF_STRING_AFTERV16": 1, + "i_SELECT_RF_STRING_AFTERV17": 1, + "i_SELECT_RF_STRING_AFTERV18": 1, + "i_OTHERSTR_": 4, + "rfString_Prepend": 2, + "rfString_Remove": 3, + "i_NPSELECT_RF_STRING_REMOVE": 1, + "i_NPSELECT_RF_STRING_REMOVE1": 1, + "i_NPSELECT_RF_STRING_REMOVE0": 1, + "i_SELECT_RF_STRING_REMOVE": 1, + "i_SELECT_RF_STRING_REMOVE2": 1, + "i_REPSTR_": 16, + "i_RFUI32_": 8, + "i_SELECT_RF_STRING_REMOVE3": 1, + "i_NUMBER_": 12, + "i_SELECT_RF_STRING_REMOVE4": 1, + "i_SELECT_RF_STRING_REMOVE1": 1, + "i_SELECT_RF_STRING_REMOVE0": 1, + "rfString_KeepOnly": 2, + "I_KEEPSTR_": 2, + "rfString_Replace": 3, + "i_NPSELECT_RF_STRING_REPLACE": 1, + "i_NPSELECT_RF_STRING_REPLACE1": 1, + "i_NPSELECT_RF_STRING_REPLACE0": 1, + "i_SELECT_RF_STRING_REPLACE": 1, + "i_SELECT_RF_STRING_REPLACE3": 1, + "i_SELECT_RF_STRING_REPLACE4": 1, + "i_SELECT_RF_STRING_REPLACE5": 1, + "i_SELECT_RF_STRING_REPLACE2": 1, + "i_SELECT_RF_STRING_REPLACE1": 1, + "i_SELECT_RF_STRING_REPLACE0": 1, + "i_SUBSTR_": 6, + "rfString_Strip": 2, + "rfString_Fwrite": 2, + "i_NPSELECT_RF_STRING_FWRITE": 1, + "i_NPSELECT_RF_STRING_FWRITE1": 1, + "i_NPSELECT_RF_STRING_FWRITE0": 1, + "i_SELECT_RF_STRING_FWRITE": 1, + "i_SELECT_RF_STRING_FWRITE3": 1, + "i_STR_": 8, + "i_ENCODING_": 4, + "i_SELECT_RF_STRING_FWRITE2": 1, + "i_SELECT_RF_STRING_FWRITE1": 1, + "i_SELECT_RF_STRING_FWRITE0": 1, + "rfString_Fwrite_fUTF8": 1, + "closing": 1, + "#error": 4, + "Attempted": 1, + "manipulation": 1, + "flag": 1, + "off.": 1, + "Rebuild": 1, + "added": 1, + "you": 1, + "#endif//": 1, + "PY_SSIZE_T_CLEAN": 1, + "Py_PYTHON_H": 1, + "Python": 2, + "headers": 1, + "compile": 1, + "extensions": 1, + "please": 1, + "install": 1, + "development": 1, + "Python.": 1, + "PY_VERSION_HEX": 11, + "Cython": 1, + "requires": 1, + ".": 1, + "offsetof": 2, + "member": 2, + "type*": 1, + "WIN32": 2, + "MS_WINDOWS": 2, + "__stdcall": 2, + "__cdecl": 2, + "__fastcall": 2, + "DL_IMPORT": 2, + "DL_EXPORT": 2, + "PY_LONG_LONG": 5, + "LONG_LONG": 1, + "Py_HUGE_VAL": 2, + "HUGE_VAL": 1, + "PYPY_VERSION": 1, + "CYTHON_COMPILING_IN_PYPY": 3, + "CYTHON_COMPILING_IN_CPYTHON": 6, + "Py_ssize_t": 35, + "PY_SSIZE_T_MAX": 1, + "INT_MAX": 1, + "PY_SSIZE_T_MIN": 1, + "INT_MIN": 1, + "PY_FORMAT_SIZE_T": 1, + "CYTHON_FORMAT_SSIZE_T": 2, + "PyInt_FromSsize_t": 6, + "PyInt_FromLong": 3, + "PyInt_AsSsize_t": 3, + "__Pyx_PyInt_AsInt": 2, + "PyNumber_Index": 1, + "PyNumber_Check": 2, + "PyFloat_Check": 2, + "PyNumber_Int": 1, + "PyErr_Format": 4, + "PyExc_TypeError": 4, + "Py_TYPE": 7, + "tp_name": 4, + "PyObject*": 24, + "__Pyx_PyIndex_Check": 3, + "PyComplex_Check": 1, + "PyIndex_Check": 2, + "PyErr_WarnEx": 1, + "category": 2, + "stacklevel": 1, + "PyErr_Warn": 1, + "__PYX_BUILD_PY_SSIZE_T": 2, + "Py_REFCNT": 1, + "ob_refcnt": 1, + "ob_type": 7, + "Py_SIZE": 1, + "PyVarObject*": 1, + "ob_size": 1, + "PyVarObject_HEAD_INIT": 1, + "PyObject_HEAD_INIT": 1, + "PyType_Modified": 1, + "PyObject": 276, + "itemsize": 1, + "readonly": 1, + "ndim": 2, + "*shape": 1, + "*strides": 1, + "*suboffsets": 1, + "*internal": 1, + "Py_buffer": 6, + "PyBUF_SIMPLE": 1, + "PyBUF_WRITABLE": 3, + "PyBUF_FORMAT": 3, + "PyBUF_ND": 2, + "PyBUF_STRIDES": 6, + "PyBUF_C_CONTIGUOUS": 1, + "PyBUF_F_CONTIGUOUS": 1, + "PyBUF_ANY_CONTIGUOUS": 1, + "PyBUF_INDIRECT": 2, + "PyBUF_RECORDS": 1, + "PyBUF_FULL": 1, + "PY_MAJOR_VERSION": 13, + "__Pyx_BUILTIN_MODULE_NAME": 2, + "__Pyx_PyCode_New": 2, + "l": 7, + "fv": 4, + "cell": 4, + "fline": 4, + "lnos": 4, + "PyCode_New": 2, + "PY_MINOR_VERSION": 1, + "PyUnicode_FromString": 2, + "PyUnicode_Decode": 1, + "Py_TPFLAGS_CHECKTYPES": 1, + "Py_TPFLAGS_HAVE_INDEX": 1, + "Py_TPFLAGS_HAVE_NEWBUFFER": 1, + "PyUnicode_KIND": 1, + "CYTHON_PEP393_ENABLED": 2, + "__Pyx_PyUnicode_READY": 2, + "op": 8, + "PyUnicode_IS_READY": 1, + "_PyUnicode_Ready": 1, + "__Pyx_PyUnicode_GET_LENGTH": 2, + "PyUnicode_GET_LENGTH": 1, + "__Pyx_PyUnicode_READ_CHAR": 2, + "PyUnicode_READ_CHAR": 1, + "__Pyx_PyUnicode_READ": 2, + "PyUnicode_READ": 1, + "PyUnicode_GET_SIZE": 1, + "Py_UCS4": 2, + "PyUnicode_AS_UNICODE": 1, + "Py_UNICODE*": 1, + "PyBaseString_Type": 1, + "PyUnicode_Type": 2, + "PyStringObject": 2, + "PyUnicodeObject": 1, + "PyString_Type": 2, + "PyString_Check": 2, + "PyUnicode_Check": 1, + "PyString_CheckExact": 2, + "PyUnicode_CheckExact": 1, + "PyBytesObject": 1, + "PyBytes_Type": 1, + "PyBytes_Check": 1, + "PyBytes_CheckExact": 1, + "PyBytes_FromString": 2, + "PyString_FromString": 2, + "PyBytes_FromStringAndSize": 1, + "PyString_FromStringAndSize": 1, + "PyBytes_FromFormat": 1, + "PyString_FromFormat": 1, + "PyBytes_DecodeEscape": 1, + "PyString_DecodeEscape": 1, + "PyBytes_AsString": 2, + "PyString_AsString": 1, + "PyBytes_AsStringAndSize": 1, + "PyString_AsStringAndSize": 1, + "PyBytes_Size": 1, + "PyString_Size": 1, + "PyBytes_AS_STRING": 1, + "PyString_AS_STRING": 1, + "PyBytes_GET_SIZE": 1, + "PyString_GET_SIZE": 1, + "PyBytes_Repr": 1, + "PyString_Repr": 1, + "PyBytes_Concat": 1, + "PyString_Concat": 1, + "PyBytes_ConcatAndDel": 1, + "PyString_ConcatAndDel": 1, + "PySet_Check": 1, + "PyObject_TypeCheck": 3, + "PySet_Type": 2, + "PyFrozenSet_Check": 1, + "PyFrozenSet_Type": 1, + "PySet_CheckExact": 2, + "__Pyx_TypeCheck": 1, + "PyTypeObject": 25, + "PyIntObject": 1, + "PyLongObject": 2, + "PyInt_Type": 1, + "PyLong_Type": 1, + "PyInt_Check": 1, + "PyLong_Check": 1, + "PyInt_CheckExact": 1, + "PyLong_CheckExact": 1, + "PyInt_FromString": 1, + "PyLong_FromString": 1, + "PyInt_FromUnicode": 1, + "PyLong_FromUnicode": 1, + "PyLong_FromLong": 1, + "PyInt_FromSize_t": 1, + "PyLong_FromSize_t": 1, + "PyLong_FromSsize_t": 1, + "PyInt_AsLong": 2, + "PyLong_AsLong": 1, + "PyInt_AS_LONG": 1, + "PyLong_AS_LONG": 1, + "PyLong_AsSsize_t": 1, + "PyInt_AsUnsignedLongMask": 1, + "PyLong_AsUnsignedLongMask": 1, + "PyInt_AsUnsignedLongLongMask": 1, + "PyLong_AsUnsignedLongLongMask": 1, + "PyBoolObject": 1, + "Py_hash_t": 1, + "__Pyx_PyInt_FromHash_t": 2, + "__Pyx_PyInt_AsHash_t": 2, + "__Pyx_PySequence_GetSlice": 2, + "PySequence_GetSlice": 2, + "__Pyx_PySequence_SetSlice": 2, + "PySequence_SetSlice": 2, + "__Pyx_PySequence_DelSlice": 2, + "PySequence_DelSlice": 2, + "PyErr_SetString": 3, + "PyExc_SystemError": 3, + "tp_as_mapping": 3, + "PyMethod_New": 2, + "func": 3, + "klass": 1, + "PyInstanceMethod_New": 1, + "__Pyx_GetAttrString": 2, + "PyObject_GetAttrString": 2, + "__Pyx_SetAttrString": 2, + "PyObject_SetAttrString": 2, + "__Pyx_DelAttrString": 2, + "PyObject_DelAttrString": 2, + "__Pyx_NAMESTR": 2, + "__Pyx_DOCSTR": 2, + "__Pyx_PyNumber_Divide": 2, + "y": 14, + "PyNumber_TrueDivide": 1, + "__Pyx_PyNumber_InPlaceDivide": 2, + "PyNumber_InPlaceTrueDivide": 1, + "PyNumber_Divide": 1, + "PyNumber_InPlaceDivide": 1, + "__PYX_EXTERN_C": 3, + "_USE_MATH_DEFINES": 1, + "__PYX_HAVE__sklearn__linear_model__sgd_fast": 1, + "__PYX_HAVE_API__sklearn__linear_model__sgd_fast": 1, + "_OPENMP": 1, + "": 1, + "PYREX_WITHOUT_ASSERTIONS": 1, + "CYTHON_WITHOUT_ASSERTIONS": 1, + "CYTHON_INLINE": 65, + "__inline__": 1, + "__inline": 1, + "__STDC_VERSION__": 2, + "L": 1, + "CYTHON_UNUSED": 14, + "**p": 1, + "is_unicode": 1, + "is_str": 1, + "intern": 1, + "__Pyx_StringTabEntry": 2, + "__Pyx_PyBytes_FromUString": 1, + "__Pyx_PyBytes_AsUString": 1, + "__Pyx_Owned_Py_None": 1, + "Py_INCREF": 10, + "Py_None": 8, + "__Pyx_PyBool_FromLong": 1, + "Py_True": 2, + "Py_False": 2, + "__Pyx_PyObject_IsTrue": 1, + "__Pyx_PyNumber_Int": 1, + "__Pyx_PyIndex_AsSsize_t": 1, + "__Pyx_PyInt_FromSize_t": 1, + "__Pyx_PyInt_AsSize_t": 1, + "__pyx_PyFloat_AsDouble": 12, + "PyFloat_CheckExact": 1, + "PyFloat_AS_DOUBLE": 1, + "PyFloat_AsDouble": 2, + "__pyx_PyFloat_AsFloat": 1, + "__builtin_expect": 2, + "*__pyx_m": 1, + "*__pyx_b": 1, + "*__pyx_empty_tuple": 1, + "*__pyx_empty_bytes": 1, + "__pyx_lineno": 58, + "__pyx_clineno": 58, + "__pyx_cfilenm": 1, + "__FILE__": 4, + "*__pyx_filename": 7, + "CYTHON_CCOMPLEX": 12, + "_Complex_I": 3, + "": 1, + "": 1, + "__sun__": 1, + "fj": 1, + "*__pyx_f": 1, + "IS_UNSIGNED": 1, + "__Pyx_StructField_": 2, + "__PYX_BUF_FLAGS_PACKED_STRUCT": 1, + "__Pyx_StructField_*": 1, + "fields": 1, + "arraysize": 1, + "typegroup": 1, + "is_unsigned": 1, + "__Pyx_TypeInfo": 2, + "__Pyx_TypeInfo*": 2, + "offset": 1, + "__Pyx_StructField": 2, + "__Pyx_StructField*": 1, + "field": 1, + "parent_offset": 1, + "__Pyx_BufFmt_StackElem": 1, + "root": 1, + "__Pyx_BufFmt_StackElem*": 2, + "fmt_offset": 1, + "new_count": 1, + "enc_count": 1, + "struct_alignment": 1, + "is_complex": 1, + "enc_type": 1, + "new_packmode": 1, + "enc_packmode": 1, + "is_valid_array": 1, + "__Pyx_BufFmt_Context": 1, + "npy_int8": 1, + "__pyx_t_5numpy_int8_t": 1, + "npy_int16": 1, + "__pyx_t_5numpy_int16_t": 1, + "npy_int32": 1, + "__pyx_t_5numpy_int32_t": 4, + "npy_int64": 1, + "__pyx_t_5numpy_int64_t": 1, + "npy_uint8": 1, + "__pyx_t_5numpy_uint8_t": 1, + "npy_uint16": 1, + "__pyx_t_5numpy_uint16_t": 1, + "npy_uint32": 1, + "__pyx_t_5numpy_uint32_t": 1, + "npy_uint64": 1, + "__pyx_t_5numpy_uint64_t": 1, + "npy_float32": 1, + "__pyx_t_5numpy_float32_t": 1, + "npy_float64": 1, + "__pyx_t_5numpy_float64_t": 4, + "npy_long": 1, + "__pyx_t_5numpy_int_t": 1, + "npy_longlong": 2, + "__pyx_t_5numpy_long_t": 1, + "__pyx_t_5numpy_longlong_t": 1, + "npy_ulong": 1, + "__pyx_t_5numpy_uint_t": 1, + "npy_ulonglong": 2, + "__pyx_t_5numpy_ulong_t": 1, + "__pyx_t_5numpy_ulonglong_t": 1, + "npy_intp": 1, + "__pyx_t_5numpy_intp_t": 1, + "npy_uintp": 1, + "__pyx_t_5numpy_uintp_t": 1, + "npy_double": 2, + "__pyx_t_5numpy_float_t": 1, + "__pyx_t_5numpy_double_t": 1, + "npy_longdouble": 1, + "__pyx_t_5numpy_longdouble_t": 1, + "__pyx_t_7sklearn_5utils_13weight_vector_DOUBLE": 2, + "__pyx_t_7sklearn_5utils_13weight_vector_INTEGER": 1, + "__pyx_t_7sklearn_5utils_11seq_dataset_DOUBLE": 7, + "__pyx_t_7sklearn_5utils_11seq_dataset_INTEGER": 7, + "__pyx_t_7sklearn_12linear_model_8sgd_fast_DOUBLE": 4, + "__pyx_t_7sklearn_12linear_model_8sgd_fast_INTEGER": 3, + "std": 8, + "complex": 2, + "__pyx_t_float_complex": 27, + "_Complex": 2, + "real": 2, + "imag": 2, + "__pyx_t_double_complex": 27, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_LossFunction": 15, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Regression": 11, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Huber": 6, + "__pyx_obj_7sklearn_5utils_11seq_dataset_SequentialDataset": 5, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 6, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Classification": 7, + "__pyx_obj_7sklearn_5utils_11seq_dataset_CSRDataset": 2, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Log": 5, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Hinge": 6, + "__pyx_obj_7sklearn_5utils_11seq_dataset_ArrayDataset": 2, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 6, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_ModifiedHuber": 5, + "__pyx_obj_7sklearn_5utils_13weight_vector_WeightVector": 3, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredLoss": 5, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredEpsilonInsensitive": 6, + "npy_cfloat": 1, + "__pyx_t_5numpy_cfloat_t": 1, + "npy_cdouble": 2, + "__pyx_t_5numpy_cdouble_t": 1, + "npy_clongdouble": 1, + "__pyx_t_5numpy_clongdouble_t": 1, + "__pyx_t_5numpy_complex_t": 1, + "PyObject_HEAD": 3, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_LossFunction": 5, + "*__pyx_vtab": 3, + "__pyx_base": 18, + "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_SequentialDataset": 4, + "n_samples": 1, + "epsilon": 2, + "current_index": 2, + "stride": 2, + "*X_data_ptr": 2, + "*X_indptr_ptr": 1, + "*X_indices_ptr": 1, + "*Y_data_ptr": 2, + "PyArrayObject": 8, + "*feature_indices": 2, + "*feature_indices_ptr": 2, + "*index": 2, + "*index_data_ptr": 2, + "*sample_weight_data": 2, + "threshold": 2, + "n_features": 2, + "__pyx_vtabstruct_7sklearn_5utils_13weight_vector_WeightVector": 3, + "*w_data_ptr": 1, + "wscale": 1, + "sq_norm": 1, + "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_SequentialDataset": 1, + "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_ArrayDataset": 2, + "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_ArrayDataset": 1, + "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_CSRDataset": 2, + "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_CSRDataset": 1, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 2, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Regression": 3, + "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 1, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 2, + "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 1, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Huber": 2, + "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_Huber": 1, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Hinge": 2, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Classification": 1, + "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_Hinge": 1, + "*__pyx_vtabptr_7sklearn_5utils_13weight_vector_WeightVector": 1, + "CYTHON_REFNANNY": 3, + "__Pyx_RefNannyAPIStruct": 3, + "*__Pyx_RefNanny": 1, + "*__Pyx_RefNannyImportAPI": 1, + "*modname": 1, + "__Pyx_RefNannyDeclarations": 11, + "*__pyx_refnanny": 1, + "WITH_THREAD": 1, + "__Pyx_RefNannySetupContext": 12, + "acquire_gil": 4, + "PyGILState_STATE": 1, + "__pyx_gilstate_save": 2, + "PyGILState_Ensure": 1, + "__pyx_refnanny": 8, + "__Pyx_RefNanny": 8, + "SetupContext": 3, + "PyGILState_Release": 1, + "__Pyx_RefNannyFinishContext": 14, + "FinishContext": 1, + "__Pyx_INCREF": 6, + "INCREF": 1, + "__Pyx_DECREF": 20, + "DECREF": 1, + "__Pyx_GOTREF": 24, + "GOTREF": 1, + "__Pyx_GIVEREF": 9, + "GIVEREF": 1, + "__Pyx_XINCREF": 2, + "__Pyx_XDECREF": 20, + "__Pyx_XGOTREF": 2, + "__Pyx_XGIVEREF": 5, + "Py_DECREF": 2, + "Py_XINCREF": 1, + "Py_XDECREF": 1, + "__Pyx_CLEAR": 1, + "__Pyx_XCLEAR": 1, + "*__Pyx_GetName": 1, + "__Pyx_ErrRestore": 1, + "*type": 4, + "*tb": 2, + "__Pyx_ErrFetch": 1, + "**type": 1, + "**value": 1, + "**tb": 1, + "__Pyx_Raise": 4, + "*cause": 1, + "__Pyx_RaiseArgtupleInvalid": 7, + "func_name": 2, + "num_min": 1, + "num_max": 1, + "num_found": 1, + "__Pyx_RaiseDoubleKeywordsError": 1, + "kw_name": 1, + "__Pyx_ParseOptionalKeywords": 4, + "*kwds": 1, + "**argnames": 1, + "*kwds2": 1, + "*values": 1, + "num_pos_args": 1, + "function_name": 1, + "__Pyx_ArgTypeTest": 1, + "none_allowed": 1, + "__Pyx_GetBufferAndValidate": 1, + "Py_buffer*": 2, + "dtype": 1, + "nd": 1, + "cast": 1, + "__Pyx_SafeReleaseBuffer": 1, + "__Pyx_TypeTest": 1, + "__Pyx_RaiseBufferFallbackError": 1, + "*__Pyx_GetItemInt_Generic": 1, + "*r": 7, + "PyObject_GetItem": 1, + "__Pyx_GetItemInt_List": 1, + "to_py_func": 6, + "__Pyx_GetItemInt_List_Fast": 1, + "__Pyx_GetItemInt_Generic": 6, + "*__Pyx_GetItemInt_List_Fast": 1, + "PyList_GET_SIZE": 5, + "PyList_GET_ITEM": 3, + "PySequence_GetItem": 3, + "__Pyx_GetItemInt_Tuple": 1, + "__Pyx_GetItemInt_Tuple_Fast": 1, + "*__Pyx_GetItemInt_Tuple_Fast": 1, + "PyTuple_GET_SIZE": 14, + "PyTuple_GET_ITEM": 15, + "__Pyx_GetItemInt": 1, + "__Pyx_GetItemInt_Fast": 2, + "PyList_CheckExact": 1, + "PyTuple_CheckExact": 1, + "PySequenceMethods": 1, + "*m": 1, + "tp_as_sequence": 1, + "sq_item": 2, + "sq_length": 2, + "PySequence_Check": 1, + "__Pyx_RaiseTooManyValuesError": 1, + "expected": 2, + "__Pyx_RaiseNeedMoreValuesError": 1, + "__Pyx_RaiseNoneNotIterableError": 1, + "__Pyx_IterFinish": 1, + "__Pyx_IternextUnpackEndCheck": 1, + "*retval": 1, + "shape": 1, + "strides": 1, + "suboffsets": 1, + "__Pyx_Buf_DimInfo": 2, + "pybuffer": 1, + "__Pyx_Buffer": 2, + "*rcbuffer": 1, + "diminfo": 1, + "__Pyx_LocalBuf_ND": 1, + "__Pyx_GetBuffer": 2, + "*view": 2, + "__Pyx_ReleaseBuffer": 2, + "PyObject_GetBuffer": 1, + "PyBuffer_Release": 1, + "__Pyx_zeros": 1, + "__Pyx_minusones": 1, + "*__Pyx_Import": 1, + "*from_list": 1, + "__Pyx_RaiseImportError": 1, + "__Pyx_Print": 1, + "__pyx_print": 1, + "__pyx_print_kwargs": 1, + "__Pyx_PrintOne": 1, + "__Pyx_CREAL": 4, + ".real": 3, + "__Pyx_CIMAG": 4, + ".imag": 3, + "__real__": 1, + "__imag__": 1, + "__Pyx_SET_CREAL": 2, + "__Pyx_SET_CIMAG": 2, + "__pyx_t_float_complex_from_parts": 1, + "__Pyx_c_eqf": 2, + "__Pyx_c_sumf": 2, + "__Pyx_c_difff": 2, + "__Pyx_c_prodf": 2, + "__Pyx_c_quotf": 2, + "__Pyx_c_negf": 2, + "__Pyx_c_is_zerof": 3, + "__Pyx_c_conjf": 3, + "conj": 3, + "__Pyx_c_absf": 3, + "abs": 2, + "__Pyx_c_powf": 3, + "pow": 2, + "conjf": 1, + "cabsf": 1, + "cpowf": 1, + "__pyx_t_double_complex_from_parts": 1, + "__Pyx_c_eq": 2, + "__Pyx_c_sum": 2, + "__Pyx_c_diff": 2, + "__Pyx_c_prod": 2, + "__Pyx_c_quot": 2, + "__Pyx_c_neg": 2, + "__Pyx_c_is_zero": 3, + "__Pyx_c_conj": 3, + "__Pyx_c_abs": 3, + "__Pyx_c_pow": 3, + "cabs": 1, + "cpow": 1, + "__Pyx_PyInt_AsUnsignedChar": 1, + "__Pyx_PyInt_AsUnsignedShort": 1, + "__Pyx_PyInt_AsUnsignedInt": 1, + "__Pyx_PyInt_AsChar": 1, + "__Pyx_PyInt_AsShort": 1, + "signed": 5, + "__Pyx_PyInt_AsSignedChar": 1, + "__Pyx_PyInt_AsSignedShort": 1, + "__Pyx_PyInt_AsSignedInt": 1, + "__Pyx_PyInt_AsLongDouble": 1, + "__Pyx_PyInt_AsUnsignedLong": 1, + "__Pyx_PyInt_AsUnsignedLongLong": 1, + "__Pyx_PyInt_AsLong": 1, + "__Pyx_PyInt_AsLongLong": 1, + "__Pyx_PyInt_AsSignedLong": 1, + "__Pyx_PyInt_AsSignedLongLong": 1, + "__Pyx_WriteUnraisable": 4, + "clineno": 1, + "lineno": 1, + "*filename": 2, + "__Pyx_check_binary_version": 1, + "__Pyx_SetVtable": 1, + "*vtable": 1, + "__Pyx_PyIdentifier_FromString": 3, + "*__Pyx_ImportModule": 1, + "*__Pyx_ImportType": 1, + "*module_name": 1, + "*class_name": 1, + "__Pyx_GetVtable": 1, + "code_line": 4, + "PyCodeObject*": 2, + "code_object": 2, + "__Pyx_CodeObjectCacheEntry": 1, + "__Pyx_CodeObjectCache": 2, + "max_count": 1, + "__Pyx_CodeObjectCacheEntry*": 2, + "entries": 2, + "__pyx_code_cache": 1, + "__pyx_bisect_code_objects": 1, + "PyCodeObject": 1, + "*__pyx_find_code_object": 1, + "__pyx_insert_code_object": 1, + "__Pyx_AddTraceback": 7, + "*funcname": 1, + "c_line": 1, + "py_line": 1, + "__Pyx_InitStrings": 1, + "*__pyx_ptype_7cpython_4type_type": 1, + "*__pyx_ptype_5numpy_dtype": 1, + "*__pyx_ptype_5numpy_flatiter": 1, + "*__pyx_ptype_5numpy_broadcast": 1, + "*__pyx_ptype_5numpy_ndarray": 1, + "*__pyx_ptype_5numpy_ufunc": 1, + "*__pyx_f_5numpy__util_dtypestring": 1, + "PyArray_Descr": 1, + "*__pyx_ptype_7sklearn_5utils_13weight_vector_WeightVector": 1, + "*__pyx_ptype_7sklearn_5utils_11seq_dataset_SequentialDataset": 1, + "*__pyx_ptype_7sklearn_5utils_11seq_dataset_ArrayDataset": 1, + "*__pyx_ptype_7sklearn_5utils_11seq_dataset_CSRDataset": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_LossFunction": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Regression": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Classification": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_ModifiedHuber": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Hinge": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Log": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredLoss": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Huber": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredEpsilonInsensitive": 1, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_max": 1, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_min": 1, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_sqnorm": 1, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_l1penalty": 1, + "__Pyx_TypeInfo_nn___pyx_t_7sklearn_12linear_model_8sgd_fast_DOUBLE": 1, + "__Pyx_MODULE_NAME": 1, + "__pyx_module_is_main_sklearn__linear_model__sgd_fast": 1, + "*__pyx_builtin_NotImplementedError": 1, + "*__pyx_builtin_range": 1, + "*__pyx_builtin_ValueError": 1, + "*__pyx_builtin_RuntimeError": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 2, + "*__pyx_v_self": 52, + "__pyx_v_p": 46, + "__pyx_v_y": 46, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 2, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 2, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_2dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_14Classification_loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_14Classification_2dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_2dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_4__reduce__": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge___init__": 1, + "__pyx_v_threshold": 2, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_2loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_4dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_6__reduce__": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge___init__": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_2loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_4dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_6__reduce__": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_2dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_4__reduce__": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_2dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_4__reduce__": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber___init__": 1, + "__pyx_v_c": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_2loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_4dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_6__reduce__": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive___init__": 1, + "__pyx_v_epsilon": 2, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_2loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_4dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_6__reduce__": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive___init__": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_2loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_4dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_6__reduce__": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_plain_sgd": 1, + "*__pyx_self": 1, + "*__pyx_v_weights": 1, + "__pyx_v_intercept": 1, + "*__pyx_v_loss": 1, + "__pyx_v_penalty_type": 1, + "__pyx_v_alpha": 1, + "__pyx_v_C": 1, + "__pyx_v_rho": 1, + "*__pyx_v_dataset": 1, + "__pyx_v_n_iter": 1, + "__pyx_v_fit_intercept": 1, + "__pyx_v_verbose": 1, + "__pyx_v_shuffle": 1, + "*__pyx_v_seed": 1, + "__pyx_v_weight_pos": 1, + "__pyx_v_weight_neg": 1, + "__pyx_v_learning_rate": 1, + "__pyx_v_eta0": 1, + "__pyx_v_power_t": 1, + "__pyx_v_t": 1, + "__pyx_v_intercept_decay": 1, + "__pyx_pf_5numpy_7ndarray___getbuffer__": 1, + "*__pyx_v_info": 2, + "__pyx_v_flags": 1, + "__pyx_pf_5numpy_7ndarray_2__releasebuffer__": 1, + "__pyx_k_1": 1, + "__pyx_k_2": 1, + "__pyx_k_3": 1, + "__pyx_k_4": 1, + "__pyx_k_6": 1, + "__pyx_k_8": 1, + "__pyx_k_10": 1, + "__pyx_k_12": 1, + "__pyx_k_13": 1, + "__pyx_k_16": 1, + "__pyx_k_20": 1, + "__pyx_k_21": 1, + "__pyx_k__B": 1, + "__pyx_k__C": 1, + "__pyx_k__H": 1, + "__pyx_k__I": 1, + "__pyx_k__L": 1, + "__pyx_k__O": 1, + "__pyx_k__Q": 1, + "__pyx_k__b": 1, + "__pyx_k__c": 1, + "__pyx_k__d": 1, + "__pyx_k__f": 1, + "__pyx_k__g": 1, + "__pyx_k__h": 1, + "__pyx_k__i": 1, + "__pyx_k__l": 1, + "__pyx_k__p": 1, + "__pyx_k__q": 1, + "__pyx_k__t": 1, + "__pyx_k__u": 1, + "__pyx_k__w": 1, + "__pyx_k__y": 1, + "__pyx_k__Zd": 1, + "__pyx_k__Zf": 1, + "__pyx_k__Zg": 1, + "__pyx_k__np": 1, + "__pyx_k__any": 1, + "__pyx_k__eta": 1, + "__pyx_k__rho": 1, + "__pyx_k__sys": 1, + "__pyx_k__eta0": 1, + "__pyx_k__loss": 1, + "__pyx_k__seed": 1, + "__pyx_k__time": 1, + "__pyx_k__xnnz": 1, + "__pyx_k__alpha": 1, + "__pyx_k__count": 1, + "__pyx_k__dloss": 1, + "__pyx_k__dtype": 1, + "__pyx_k__epoch": 1, + "__pyx_k__isinf": 1, + "__pyx_k__isnan": 1, + "__pyx_k__numpy": 1, + "__pyx_k__order": 1, + "__pyx_k__range": 1, + "__pyx_k__shape": 1, + "__pyx_k__zeros": 1, + "__pyx_k__n_iter": 1, + "__pyx_k__update": 1, + "__pyx_k__dataset": 1, + "__pyx_k__epsilon": 1, + "__pyx_k__float64": 1, + "__pyx_k__nonzero": 1, + "__pyx_k__power_t": 1, + "__pyx_k__shuffle": 1, + "__pyx_k__sumloss": 1, + "__pyx_k__t_start": 1, + "__pyx_k__verbose": 1, + "__pyx_k__weights": 1, + "__pyx_k____main__": 1, + "__pyx_k____test__": 1, + "__pyx_k__is_hinge": 1, + "__pyx_k__intercept": 1, + "__pyx_k__n_samples": 1, + "__pyx_k__plain_sgd": 1, + "__pyx_k__threshold": 1, + "__pyx_k__x_ind_ptr": 1, + "__pyx_k__ValueError": 1, + "__pyx_k__n_features": 1, + "__pyx_k__q_data_ptr": 1, + "__pyx_k__weight_neg": 1, + "__pyx_k__weight_pos": 1, + "__pyx_k__x_data_ptr": 1, + "__pyx_k__RuntimeError": 1, + "__pyx_k__class_weight": 1, + "__pyx_k__penalty_type": 1, + "__pyx_k__fit_intercept": 1, + "__pyx_k__learning_rate": 1, + "__pyx_k__sample_weight": 1, + "__pyx_k__intercept_decay": 1, + "__pyx_k__NotImplementedError": 1, + "*__pyx_kp_s_1": 1, + "*__pyx_kp_u_10": 1, + "*__pyx_kp_u_12": 1, + "*__pyx_kp_u_13": 1, + "*__pyx_kp_u_16": 1, + "*__pyx_kp_s_2": 1, + "*__pyx_kp_s_20": 1, + "*__pyx_n_s_21": 1, + "*__pyx_kp_s_3": 1, + "*__pyx_kp_s_4": 1, + "*__pyx_kp_u_6": 1, + "*__pyx_kp_u_8": 1, + "*__pyx_n_s__C": 1, + "*__pyx_n_s__NotImplementedError": 1, + "*__pyx_n_s__RuntimeError": 1, + "*__pyx_n_s__ValueError": 1, + "*__pyx_n_s____main__": 1, + "*__pyx_n_s____test__": 1, + "*__pyx_n_s__alpha": 1, + "*__pyx_n_s__any": 1, + "*__pyx_n_s__c": 1, + "*__pyx_n_s__class_weight": 1, + "*__pyx_n_s__count": 1, + "*__pyx_n_s__dataset": 1, + "*__pyx_n_s__dloss": 1, + "*__pyx_n_s__dtype": 1, + "*__pyx_n_s__epoch": 1, + "*__pyx_n_s__epsilon": 1, + "*__pyx_n_s__eta": 1, + "*__pyx_n_s__eta0": 1, + "*__pyx_n_s__fit_intercept": 1, + "*__pyx_n_s__float64": 1, + "*__pyx_n_s__i": 1, + "*__pyx_n_s__intercept": 1, + "*__pyx_n_s__intercept_decay": 1, + "*__pyx_n_s__is_hinge": 1, + "*__pyx_n_s__isinf": 1, + "*__pyx_n_s__isnan": 1, + "*__pyx_n_s__learning_rate": 1, + "*__pyx_n_s__loss": 1, + "*__pyx_n_s__n_features": 1, + "*__pyx_n_s__n_iter": 1, + "*__pyx_n_s__n_samples": 1, + "*__pyx_n_s__nonzero": 1, + "*__pyx_n_s__np": 1, + "*__pyx_n_s__numpy": 1, + "*__pyx_n_s__order": 1, + "*__pyx_n_s__p": 1, + "*__pyx_n_s__penalty_type": 1, + "*__pyx_n_s__plain_sgd": 1, + "*__pyx_n_s__power_t": 1, + "*__pyx_n_s__q": 1, + "*__pyx_n_s__q_data_ptr": 1, + "*__pyx_n_s__range": 1, + "*__pyx_n_s__rho": 1, + "*__pyx_n_s__sample_weight": 1, + "*__pyx_n_s__seed": 1, + "*__pyx_n_s__shape": 1, + "*__pyx_n_s__shuffle": 1, + "*__pyx_n_s__sumloss": 1, + "*__pyx_n_s__sys": 1, + "*__pyx_n_s__t": 1, + "*__pyx_n_s__t_start": 1, + "*__pyx_n_s__threshold": 1, + "*__pyx_n_s__time": 1, + "*__pyx_n_s__u": 1, + "*__pyx_n_s__update": 1, + "*__pyx_n_s__verbose": 1, + "*__pyx_n_s__w": 1, + "*__pyx_n_s__weight_neg": 1, + "*__pyx_n_s__weight_pos": 1, + "*__pyx_n_s__weights": 1, + "*__pyx_n_s__x_data_ptr": 1, + "*__pyx_n_s__x_ind_ptr": 1, + "*__pyx_n_s__xnnz": 1, + "*__pyx_n_s__y": 1, + "*__pyx_n_s__zeros": 1, + "*__pyx_int_15": 1, + "*__pyx_k_tuple_5": 1, + "*__pyx_k_tuple_7": 1, + "*__pyx_k_tuple_9": 1, + "*__pyx_k_tuple_11": 1, + "*__pyx_k_tuple_14": 1, + "*__pyx_k_tuple_15": 1, + "*__pyx_k_tuple_17": 1, + "*__pyx_k_tuple_18": 1, + "*__pyx_k_codeobj_19": 1, + "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_1loss": 3, + "*__pyx_args": 9, + "*__pyx_kwds": 9, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, + "__pyx_skip_dispatch": 6, + "__pyx_r": 39, + "*__pyx_t_1": 6, + "*__pyx_t_2": 3, + "*__pyx_t_3": 3, + "*__pyx_t_4": 3, + "__pyx_t_5": 12, + "__pyx_v_self": 15, + "tp_dictoffset": 3, + "__pyx_t_1": 69, + "PyObject_GetAttr": 3, + "__pyx_n_s__loss": 2, + "__pyx_filename": 51, + "__pyx_f": 42, + "__pyx_L1_error": 33, + "PyCFunction_Check": 3, + "PyCFunction_GET_FUNCTION": 3, + "PyCFunction": 3, + "__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_1loss": 1, + "__pyx_t_2": 21, + "PyFloat_FromDouble": 9, + "__pyx_t_3": 39, + "__pyx_t_4": 27, + "PyTuple_New": 3, + "PyTuple_SET_ITEM": 6, + "PyObject_Call": 6, + "PyErr_Occurred": 9, + "__pyx_L0": 18, + "__pyx_builtin_NotImplementedError": 3, + "__pyx_empty_tuple": 3, + "__pyx_doc_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, + "*__pyx_r": 6, + "**__pyx_pyargnames": 3, + "__pyx_n_s__p": 6, + "__pyx_n_s__y": 6, + "values": 30, + "__pyx_kwds": 15, + "kw_args": 15, + "pos_args": 12, + "__pyx_args": 21, + "__pyx_L5_argtuple_error": 12, + "PyDict_Size": 3, + "PyDict_GetItem": 6, + "__pyx_L3_error": 18, + "__pyx_pyargnames": 3, + "__pyx_L4_argument_unpacking_done": 6, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, + "__pyx_vtab": 2, + "loss": 1, + "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_3dloss": 3, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_12LossFunction_dloss": 1, + "__pyx_n_s__dloss": 1, + "__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_3dloss": 1, + "__pyx_doc_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 1, + "dloss": 1, + "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_10Regression_1loss": 3, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 1, + "__pyx_pw_7sklearn_12linear_model_8sgd_fast_10Regression_1loss": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 1, + "__pyx_base.__pyx_vtab": 1, + "__pyx_base.loss": 1, + "syscalldef": 1, + "syscalldefs": 1, + "SYSCALL_OR_NUM": 3, + "SYS_restart_syscall": 1, + "MAKE_UINT16": 3, + "SYS_exit": 1, + "SYS_fork": 1, "__wglew_h__": 2, "__WGLEW_H__": 1, "__wglext_h_": 2, - "#error": 4, "wglext.h": 1, - "included": 2, - "before": 4, "wglew.h": 1, - "#if": 92, - "defined": 42, "WINAPI": 119, "": 1, "GLEW_STATIC": 1, - "__cplusplus": 20, "WGL_3DFX_multisample": 2, "WGL_SAMPLE_BUFFERS_3DFX": 1, "WGL_SAMPLES_3DFX": 1, @@ -6940,7 +10124,6 @@ "PFNWGLCREATEASSOCIATEDCONTEXTAMDPROC": 2, "PFNWGLCREATEASSOCIATEDCONTEXTATTRIBSAMDPROC": 2, "hShareContext": 2, - "int*": 22, "attribList": 2, "PFNWGLDELETEASSOCIATEDCONTEXTAMDPROC": 2, "hglrc": 5, @@ -6987,8 +10170,6 @@ "PFNWGLDELETEBUFFERREGIONARBPROC": 2, "hRegion": 3, "PFNWGLRESTOREBUFFERREGIONARBPROC": 2, - "x": 57, - "y": 14, "width": 3, "height": 3, "xSrc": 1, @@ -7065,9 +10246,7 @@ "WGL_DRAW_TO_PBUFFER_ARB": 1, "D": 8, "WGL_MAX_PBUFFER_PIXELS_ARB": 1, - "E": 11, "WGL_MAX_PBUFFER_WIDTH_ARB": 1, - "F": 38, "WGL_MAX_PBUFFER_HEIGHT_ARB": 1, "WGL_PBUFFER_LARGEST_ARB": 1, "WGL_PBUFFER_WIDTH_ARB": 1, @@ -7111,9 +10290,7 @@ "WGL_NUMBER_OVERLAYS_ARB": 1, "WGL_NUMBER_UNDERLAYS_ARB": 1, "WGL_TRANSPARENT_ARB": 1, - "A": 11, "WGL_SHARE_DEPTH_ARB": 1, - "C": 14, "WGL_SHARE_STENCIL_ARB": 1, "WGL_SHARE_ACCUM_ARB": 1, "WGL_SUPPORT_GDI_ARB": 1, @@ -7252,7 +10429,6 @@ "GLushort*": 1, "table": 1, "GLuint": 9, - "length": 58, "wglBindDisplayColorTableEXT": 1, "__wglewBindDisplayColorTableEXT": 2, "wglCreateDisplayColorTableEXT": 1, @@ -7771,7 +10947,6 @@ "__WGLEW_NV_video_capture": 2, "WGL_NV_video_output": 2, "WGL_BIND_TO_VIDEO_RGB_NV": 1, - "C0": 3, "WGL_BIND_TO_VIDEO_RGBA_NV": 1, "C1": 1, "WGL_BIND_TO_VIDEO_RGB_AND_DEPTH_NV": 1, @@ -7868,3161 +11043,11 @@ "WGLEWContext": 1, "wglewContextInit": 2, "WGLEWContext*": 2, - "ctx": 16, "wglewContextIsSupported": 2, "wglewInit": 1, "wglewGetContext": 4, "wglewIsSupported": 2, "wglewGetExtension": 1, - "#undef": 7, - "": 1, - "": 2, - "": 2, - "//": 262, - "rfUTF8_IsContinuationbyte": 1, - "": 3, - "malloc": 3, - "": 5, - "e.t.c.": 1, - "int32_t": 112, - "rfFReadLine_UTF8": 5, - "FILE*": 64, - "char**": 7, - "utf8": 36, - "uint32_t*": 34, - "byteLength": 197, - "bufferSize": 6, - "eof": 53, - "bytesN": 98, - "uint32_t": 144, - "bIndex": 5, - "RF_NEWLINE_CRLF": 1, - "newLineFound": 1, - "false": 77, - "*bufferSize": 1, - "RF_OPTION_FGETS_READBYTESN": 5, - "RF_MALLOC": 47, - "tempBuff": 6, - "uint16_t": 12, - "RF_LF": 10, - "buff": 95, - "RF_SUCCESS": 14, - "error": 96, - "RE_FILE_EOF": 22, - "found": 20, - "*eofReached": 14, - "true": 73, - "LOG_ERROR": 64, - "RF_HEXEQ_UI": 7, - "rfFgetc_UTF32BE": 3, - "else//": 14, - "undo": 5, - "the": 91, - "peek": 5, - "ahead": 5, - "of": 44, - "file": 6, - "pointer": 5, - "fseek": 19, - "SEEK_CUR": 19, - "rfFgets_UTF32LE": 2, - "eofReached": 4, - "rfFgetc_UTF32LE": 4, - "rfFgets_UTF16BE": 2, - "rfFgetc_UTF16BE": 4, - "rfFgets_UTF16LE": 2, - "rfFgetc_UTF16LE": 4, - "rfFgets_UTF8": 2, - "rfFgetc_UTF8": 3, - "RF_HEXEQ_C": 9, - "fgetc": 9, - "check": 8, - "RE_FILE_READ": 2, - "cp": 12, - "c2": 13, - "c3": 9, - "c4": 5, - "i_READ_CHECK": 20, - "///": 4, - "success": 4, - "cc": 24, - "we": 10, - "need": 5, - "more": 2, - "bytes": 225, - "xC0": 3, - "xC1": 1, - "RE_UTF8_INVALID_SEQUENCE_INVALID_BYTE": 6, - "RE_UTF8_INVALID_SEQUENCE_END": 6, - "rfUTF8_IsContinuationByte": 12, - "RE_UTF8_INVALID_SEQUENCE_CONBYTE": 6, - "decoded": 3, - "codepoint": 47, - "end": 48, - "xE0": 2, - "xF": 5, - "to": 37, - "decode": 6, - "xF0": 2, - "RF_HEXGE_C": 1, - "xBF": 2, - "//invalid": 1, - "byte": 6, - "are": 6, - "from": 16, - "xFF": 1, - "//if": 1, - "needing": 1, - "than": 5, - "swapE": 21, - "v1": 38, - "v2": 26, - "rfUTILS_Endianess": 24, - "RF_LITTLE_ENDIAN": 23, - "fread": 12, - "swap": 9, - "endianess": 40, - "needed": 10, - "rfUTILS_SwapEndianUS": 10, - "RF_HEXGE_US": 4, - "xD800": 8, - "RF_HEXLE_US": 4, - "xDFFF": 8, - "RF_HEXL_US": 8, - "RF_HEXG_US": 8, - "xDBFF": 4, - "RE_UTF16_INVALID_SEQUENCE": 20, - "RE_UTF16_NO_SURRPAIR": 2, - "xDC00": 4, - "user": 2, - "wants": 2, - "ff": 10, - "uint16_t*": 11, - "surrogate": 4, - "pair": 4, - "existence": 2, - "RF_BIG_ENDIAN": 10, - "rfUTILS_SwapEndianUI": 11, - "rfFback_UTF32BE": 2, - "i_FSEEK_CHECK": 14, - "rfFback_UTF32LE": 2, - "rfFback_UTF16BE": 2, - "rfFback_UTF16LE": 2, - "rfFback_UTF8": 2, - "depending": 1, - "on": 4, - "number": 19, - "read": 1, - "backwards": 1, - "RE_UTF8_INVALID_SEQUENCE": 2, - "BOOTSTRAP_H": 2, - "*true": 1, - "*false": 1, - "*eof": 1, - "*empty_list": 1, - "*global_enviroment": 1, - "obj_type": 1, - "scm_bool": 1, - "scm_empty_list": 1, - "scm_eof": 1, - "scm_char": 1, - "scm_int": 1, - "scm_pair": 1, - "scm_symbol": 1, - "scm_prim_fun": 1, - "scm_lambda": 1, - "scm_str": 1, - "scm_file": 1, - "*eval_proc": 1, - "*maybe_add_begin": 1, - "*code": 2, - "init_enviroment": 1, - "*env": 4, - "eval_err": 1, - "__attribute__": 1, - "noreturn": 1, - "define_var": 1, - "set_var": 1, - "*get_var": 1, - "*cond2nested_if": 1, - "*cond": 1, - "*let2lambda": 1, - "*let": 1, - "*and2nested_if": 1, - "*and": 1, - "*or2nested_if": 1, - "*or": 1, - "lookup_object": 2, - "obj": 48, - "create_object": 2, - "OBJ_BLOB": 3, - "alloc_blob_node": 1, - "sha1_to_hex": 8, - "typename": 2, - "item": 24, - "object.parsed": 4, - "": 1, - "_Included_jni_JniLayer": 2, - "JNIEXPORT": 6, - "jlong": 6, - "JNICALL": 6, - "Java_jni_JniLayer_jni_1layer_1initialize": 1, - "JNIEnv": 6, - "jobject": 6, - "jintArray": 1, - "jint": 7, - "Java_jni_JniLayer_jni_1layer_1mainloop": 1, - "Java_jni_JniLayer_jni_1layer_1set_1button": 1, - "Java_jni_JniLayer_jni_1layer_1set_1analog": 1, - "jfloat": 1, - "Java_jni_JniLayer_jni_1layer_1report_1analog_1chg": 1, - "Java_jni_JniLayer_jni_1layer_1kill": 1, - "": 1, - "": 1, - "__APPLE__": 2, - "TARGET_OS_IPHONE": 1, - "**environ": 1, - "uv__chld": 2, - "EV_P_": 1, - "ev_child*": 1, - "watcher": 4, - "revents": 2, - "rstatus": 1, - "exit_status": 3, - "term_signal": 3, - "uv_process_t": 1, - "*process": 1, - "assert": 41, - "process": 19, - "child_watcher": 5, - "EV_CHILD": 1, - "ev_child_stop": 2, - "EV_A_": 1, - "WIFEXITED": 1, - "exit_cb": 3, - "uv__make_socketpair": 2, - "fds": 20, - "SOCK_NONBLOCK": 2, - "fl": 8, - "SOCK_CLOEXEC": 1, - "UV__F_NONBLOCK": 5, - "socketpair": 2, - "AF_UNIX": 2, - "SOCK_STREAM": 2, - "EINVAL": 6, - "uv__cloexec": 4, - "uv__nonblock": 5, - "uv__make_pipe": 2, - "UV__O_CLOEXEC": 1, - "UV__O_NONBLOCK": 1, - "uv__pipe2": 1, - "ENOSYS": 1, - "pipe": 1, - "uv__process_init_stdio": 2, - "uv_stdio_container_t*": 4, - "container": 17, - "writable": 8, - "UV_IGNORE": 2, - "UV_CREATE_PIPE": 4, - "UV_INHERIT_FD": 3, - "UV_INHERIT_STREAM": 2, - "data.stream": 7, - "UV_NAMED_PIPE": 2, - "data.fd": 1, - "uv__process_stdio_flags": 2, - "uv_pipe_t*": 1, - "ipc": 1, - "UV_STREAM_READABLE": 2, - "UV_STREAM_WRITABLE": 2, - "uv__process_open_stream": 2, - "child_fd": 3, - "uv__stream_open": 1, - "uv_stream_t*": 2, - "uv__process_close_stream": 2, - "uv__stream_close": 1, - "uv__process_child_init": 2, - "uv_process_options_t": 2, - "stdio_count": 7, - "pipes": 23, - "options.flags": 4, - "UV_PROCESS_DETACHED": 2, - "close_fd": 2, - "use_fd": 7, - "O_RDONLY": 1, - "perror": 5, - "options.cwd": 2, - "UV_PROCESS_SETGID": 2, - "setgid": 1, - "options.gid": 1, - "UV_PROCESS_SETUID": 2, - "setuid": 1, - "options.uid": 1, - "environ": 4, - "options.env": 1, - "execvp": 1, - "options.file": 2, - "options.args": 1, - "SPAWN_WAIT_EXEC": 5, - "uv_spawn": 1, - "uv_loop_t*": 1, - "loop": 9, - "uv_process_t*": 3, - "save_our_env": 3, - "options.stdio_count": 4, - "signal_pipe": 7, - "pollfd": 1, - "pfd": 2, - "ENOMEM": 4, - "UV_PROCESS_WINDOWS_VERBATIM_ARGUMENTS": 1, - "uv__handle_init": 1, - "uv_handle_t*": 1, - "UV_PROCESS": 1, - "counters.process_init": 1, - "uv__handle_start": 1, - "options.exit_cb": 1, - "options.stdio": 3, - "pfd.fd": 1, - "pfd.events": 1, - "POLLIN": 1, - "POLLHUP": 1, - "pfd.revents": 1, - "poll": 1, - "EINTR": 1, - "ev_child_init": 1, - "ev_child_start": 1, - "ev": 2, - "child_watcher.data": 1, - "free": 62, - "uv__set_sys_error": 2, - "uv_process_kill": 1, - "signum": 4, - "r": 58, - "uv_err_t": 1, - "uv_kill": 1, - "uv__new_sys_error": 1, - "uv_ok_": 1, - "uv__process_close": 1, - "handle": 10, - "uv__handle_stop": 1, - "*diff_prefix_from_pathspec": 1, - "git_strarray": 2, - "*pathspec": 2, - "git_buf": 3, - "GIT_BUF_INIT": 3, - "*scan": 2, - "git_buf_common_prefix": 1, - "pathspec": 15, - "scan": 4, - "prefix.ptr": 2, - "git__iswildcard": 1, - "git_buf_truncate": 1, - "prefix.size": 1, - "git_buf_detach": 1, - "git_buf_free": 4, - "bool": 6, - "diff_pathspec_is_interesting": 2, - "*str": 1, - "str": 162, - "strings": 5, - "diff_path_matches_pathspec": 3, - "git_diff_list": 17, - "*diff": 8, - "*path": 2, - "git_attr_fnmatch": 4, - "*match": 3, - "diff": 93, - "pathspec.length": 1, - "git_vector_foreach": 4, - "match": 16, - "result": 48, - "p_fnmatch": 1, - "pattern": 3, - "path": 20, - "FNM_NOMATCH": 1, - "GIT_ATTR_FNMATCH_HASWILD": 1, - "strncmp": 1, - "GIT_ATTR_FNMATCH_NEGATIVE": 1, - "git_diff_delta": 19, - "*diff_delta__alloc": 1, - "git_delta_t": 5, - "*delta": 6, - "git__calloc": 3, - "old_file.path": 12, - "git_pool_strdup": 3, - "pool": 12, - "git__free": 15, - "new_file.path": 6, - "opts.flags": 8, - "GIT_DIFF_REVERSE": 3, - "GIT_DELTA_ADDED": 4, - "GIT_DELTA_DELETED": 7, - "*diff_delta__dup": 1, - "*d": 1, - "git_pool": 4, - "*pool": 3, - "git__malloc": 3, - "fail": 19, - "*diff_delta__merge_like_cgit": 1, - "*b": 6, - "*dup": 1, - "diff_delta__dup": 3, - "a": 80, - "dup": 15, - "git_oid_cmp": 6, - "new_file.oid": 7, - "git_oid_cpy": 5, - "new_file.mode": 4, - "new_file.size": 3, - "new_file.flags": 4, - "old_file.oid": 3, - "GIT_DELTA_UNTRACKED": 5, - "GIT_DELTA_IGNORED": 5, - "GIT_DELTA_UNMODIFIED": 11, - "diff_delta__from_one": 5, - "git_index_entry": 8, - "*entry": 2, - "GIT_DIFF_INCLUDE_IGNORED": 1, - "GIT_DIFF_INCLUDE_UNTRACKED": 1, - "entry": 17, - "diff_delta__alloc": 2, - "GITERR_CHECK_ALLOC": 3, - "GIT_DELTA_MODIFIED": 3, - "old_file.mode": 2, - "mode": 11, - "old_file.size": 1, - "file_size": 6, - "oid": 17, - "old_file.flags": 2, - "GIT_DIFF_FILE_VALID_OID": 4, - "git_vector_insert": 4, - "deltas": 8, - "diff_delta__from_two": 2, - "*old_entry": 1, - "*new_entry": 1, - "git_oid": 7, - "*new_oid": 1, - "GIT_DIFF_INCLUDE_UNMODIFIED": 1, - "*temp": 1, - "old_entry": 5, - "new_entry": 5, - "temp": 11, - "new_oid": 3, - "git_oid_iszero": 2, - "*diff_strdup_prefix": 1, - "git_pool_strcat": 1, - "git_pool_strndup": 1, - "diff_delta__cmp": 3, - "*da": 1, - "da": 2, - "config_bool": 5, - "*cfg": 2, - "defvalue": 2, - "git_config_get_bool": 1, - "cfg": 6, - "giterr_clear": 1, - "*git_diff_list_alloc": 1, - "git_repository": 7, - "*repo": 7, - "git_diff_options": 7, - "*opts": 6, - "repo": 23, - "git_vector_init": 3, - "git_pool_init": 2, - "git_repository_config__weakptr": 1, - "diffcaps": 13, - "GIT_DIFFCAPS_HAS_SYMLINKS": 2, - "GIT_DIFFCAPS_ASSUME_UNCHANGED": 2, - "GIT_DIFFCAPS_TRUST_EXEC_BIT": 2, - "GIT_DIFFCAPS_TRUST_CTIME": 2, - "opts": 24, - "opts.pathspec": 2, - "opts.old_prefix": 4, - "diff_strdup_prefix": 2, - "old_prefix": 2, - "DIFF_OLD_PREFIX_DEFAULT": 1, - "opts.new_prefix": 4, - "new_prefix": 2, - "DIFF_NEW_PREFIX_DEFAULT": 1, - "*swap": 1, - "pathspec.count": 2, - "*pattern": 1, - "pathspec.strings": 1, - "GIT_ATTR_FNMATCH_ALLOWSPACE": 1, - "git_attr_fnmatch__parse": 1, - "GIT_ENOTFOUND": 1, - "git_diff_list_free": 3, - "deltas.contents": 1, - "git_vector_free": 3, - "pathspec.contents": 1, - "git_pool_clear": 2, - "oid_for_workdir_item": 2, - "*oid": 2, - "full_path": 3, - "git_buf_joinpath": 1, - "git_repository_workdir": 1, - "S_ISLNK": 2, - "git_odb__hashlink": 1, - "full_path.ptr": 2, - "git__is_sizet": 1, - "giterr_set": 1, - "GITERR_OS": 1, - "git_futils_open_ro": 1, - "git_odb__hashfd": 1, - "GIT_OBJ_BLOB": 1, - "p_close": 1, - "EXEC_BIT_MASK": 3, - "maybe_modified": 2, - "git_iterator": 8, - "*old_iter": 2, - "*oitem": 2, - "*new_iter": 2, - "*nitem": 2, - "noid": 4, - "*use_noid": 1, - "omode": 8, - "oitem": 29, - "nmode": 10, - "nitem": 32, - "GIT_UNUSED": 1, - "old_iter": 8, - "S_ISREG": 1, - "GIT_MODE_TYPE": 3, - "GIT_MODE_PERMS_MASK": 1, - "flags_extended": 2, - "GIT_IDXENTRY_INTENT_TO_ADD": 1, - "GIT_IDXENTRY_SKIP_WORKTREE": 1, - "new_iter": 13, - "GIT_ITERATOR_WORKDIR": 2, - "ctime.seconds": 2, - "mtime.seconds": 2, - "GIT_DIFFCAPS_USE_DEV": 1, - "dev": 2, - "ino": 2, - "uid": 2, - "gid": 2, - "S_ISGITLINK": 1, - "git_submodule": 1, - "*sub": 1, - "GIT_DIFF_IGNORE_SUBMODULES": 1, - "git_submodule_lookup": 1, - "sub": 12, - "ignore": 1, - "GIT_SUBMODULE_IGNORE_ALL": 1, - "use_noid": 2, - "diff_from_iterators": 5, - "**diff_ptr": 1, - "ignore_prefix": 6, - "git_diff_list_alloc": 1, - "old_src": 1, - "new_src": 3, - "git_iterator_current": 2, - "git_iterator_advance": 5, - "delta_type": 8, - "git_buf_len": 1, - "git__prefixcmp": 2, - "git_buf_cstr": 1, - "S_ISDIR": 1, - "GIT_DIFF_RECURSE_UNTRACKED_DIRS": 1, - "git_iterator_current_is_ignored": 2, - "git_buf_sets": 1, - "git_iterator_advance_into_directory": 1, - "git_iterator_free": 4, - "*diff_ptr": 2, - "git_diff_tree_to_tree": 1, - "git_tree": 4, - "*old_tree": 3, - "*new_tree": 1, - "**diff": 4, - "diff_prefix_from_pathspec": 4, - "old_tree": 5, - "new_tree": 2, - "git_iterator_for_tree_range": 4, - "git_diff_index_to_tree": 1, - "git_iterator_for_index_range": 2, - "git_diff_workdir_to_index": 1, - "git_iterator_for_workdir_range": 2, - "git_diff_workdir_to_tree": 1, - "git_diff_merge": 1, - "*onto": 1, - "*from": 1, - "onto_pool": 7, - "git_vector": 1, - "onto_new": 6, - "onto": 7, - "deltas.length": 4, - "GIT_VECTOR_GET": 2, - "diff_delta__merge_like_cgit": 1, - "git_vector_swap": 1, - "git_pool_swap": 1, - "PPC_SHA1": 1, - "git_hash_ctx": 7, - "SHA_CTX": 3, - "*git_hash_new_ctx": 1, - "*ctx": 5, - "SHA1_Init": 4, - "git_hash_free_ctx": 1, - "git_hash_init": 1, - "git_hash_update": 1, - "SHA1_Update": 3, - "git_hash_final": 1, - "*out": 3, - "SHA1_Final": 3, - "out": 18, - "git_hash_buf": 1, - "git_hash_vec": 1, - "git_buf_vec": 1, - "*vec": 1, - "vec": 2, - ".data": 1, - ".len": 3, - "REFU_IO_H": 2, - "": 2, - "opening": 2, - "bracket": 4, - "calling": 4, - "xA": 1, - "RF_CR": 1, - "xD": 1, - "REFU_WIN32_VERSION": 1, - "i_PLUSB_WIN32": 2, - "_MSC_VER": 5, - "__int64": 3, - "foff_rft": 2, - "": 2, - "off64_t": 1, - "///Fseek": 1, - "and": 15, - "Ftelll": 1, - "definitions": 1, - "rfFseek": 2, - "i_FILE_": 16, - "i_OFFSET_": 4, - "i_WHENCE_": 4, - "_fseeki64": 1, - "rfFtell": 2, - "_ftelli64": 1, - "fseeko64": 1, - "ftello64": 1, - "i_DECLIMEX_": 121, - "rfFReadLine_UTF16BE": 6, - "rfFReadLine_UTF16LE": 4, - "rfFReadLine_UTF32BE": 1, - "rfFReadLine_UTF32LE": 4, - "rfFgets_UTF32BE": 1, - "RF_IAMHERE_FOR_DOXYGEN": 22, - "rfPopen": 2, - "command": 2, - "i_rfPopen": 2, - "i_CMD_": 2, - "i_MODE_": 2, - "i_rfLMS_WRAP2": 5, - "rfPclose": 1, - "stream": 3, - "///closing": 1, - "#endif//include": 1, - "guards": 2, - "http_parser_h": 2, - "HTTP_PARSER_VERSION_MAJOR": 1, - "HTTP_PARSER_VERSION_MINOR": 1, - "_WIN32": 3, - "__MINGW32__": 1, - "__int8": 2, - "int8_t": 3, - "uint8_t": 6, - "__int16": 2, - "int16_t": 1, - "__int32": 2, - "int64_t": 2, - "uint64_t": 8, - "ssize_t": 1, - "": 1, - "HTTP_PARSER_STRICT": 5, - "HTTP_PARSER_DEBUG": 4, - "HTTP_MAX_HEADER_SIZE": 2, - "http_parser": 13, - "http_parser_settings": 5, - "HTTP_METHOD_MAP": 3, - "XX": 63, - "DELETE": 2, - "GET": 2, - "HEAD": 2, - "POST": 2, - "PUT": 2, - "CONNECT": 2, - "OPTIONS": 2, - "TRACE": 2, - "COPY": 2, - "LOCK": 2, - "MKCOL": 2, - "MOVE": 2, - "PROPFIND": 2, - "PROPPATCH": 2, - "SEARCH": 3, - "UNLOCK": 2, - "REPORT": 2, - "MKACTIVITY": 2, - "CHECKOUT": 2, - "MERGE": 2, - "MSEARCH": 1, - "M": 1, - "NOTIFY": 2, - "SUBSCRIBE": 2, - "UNSUBSCRIBE": 2, - "PATCH": 2, - "PURGE": 2, - "http_method": 4, - "string": 18, - "HTTP_##name": 1, - "http_parser_type": 3, - "HTTP_REQUEST": 7, - "HTTP_RESPONSE": 3, - "HTTP_BOTH": 1, - "F_CHUNKED": 11, - "F_CONNECTION_KEEP_ALIVE": 3, - "F_CONNECTION_CLOSE": 3, - "F_TRAILING": 3, - "F_UPGRADE": 3, - "F_SKIPBODY": 4, - "HTTP_ERRNO_MAP": 3, - "OK": 1, - "CB_message_begin": 1, - "CB_url": 1, - "CB_header_field": 1, - "CB_header_value": 1, - "CB_headers_complete": 1, - "CB_body": 1, - "CB_message_complete": 1, - "INVALID_EOF_STATE": 1, - "HEADER_OVERFLOW": 1, - "CLOSED_CONNECTION": 1, - "INVALID_VERSION": 1, - "INVALID_STATUS": 1, - "INVALID_METHOD": 1, - "INVALID_URL": 1, - "INVALID_HOST": 1, - "INVALID_PORT": 1, - "INVALID_PATH": 1, - "INVALID_QUERY_STRING": 1, - "INVALID_FRAGMENT": 1, - "LF_EXPECTED": 1, - "INVALID_HEADER_TOKEN": 1, - "INVALID_CONTENT_LENGTH": 1, - "INVALID_CHUNK_SIZE": 1, - "INVALID_CONSTANT": 1, - "INVALID_INTERNAL_STATE": 1, - "STRICT": 1, - "PAUSED": 1, - "UNKNOWN": 1, - "HTTP_ERRNO_GEN": 3, - "HPE_##n": 1, - "http_errno": 11, - "HTTP_PARSER_ERRNO": 10, - "HTTP_PARSER_ERRNO_LINE": 2, - "error_lineno": 3, - "header_state": 42, - "index": 58, - "nread": 7, - "content_length": 27, - "short": 6, - "http_major": 11, - "http_minor": 11, - "status_code": 8, - "method": 39, - "upgrade": 3, - "http_cb": 3, - "on_message_begin": 1, - "http_data_cb": 4, - "on_url": 1, - "on_header_field": 1, - "on_header_value": 1, - "on_headers_complete": 3, - "on_body": 1, - "on_message_complete": 1, - "http_parser_url_fields": 2, - "UF_SCHEMA": 2, - "UF_HOST": 3, - "UF_PORT": 5, - "UF_PATH": 2, - "UF_QUERY": 2, - "UF_FRAGMENT": 2, - "UF_MAX": 3, - "http_parser_url": 3, - "field_set": 5, - "field_data": 5, - "http_parser_init": 2, - "*parser": 9, - "http_parser_execute": 2, - "*settings": 2, - "http_should_keep_alive": 2, - "*http_method_str": 1, - "m": 8, - "*http_errno_name": 1, - "*http_errno_description": 1, - "http_parser_parse_url": 2, - "buflen": 3, - "is_connect": 4, - "*u": 2, - "http_parser_pause": 2, - "paused": 3, - "REFU_USTRING_H": 2, - "": 1, - "RF_MODULE_STRINGS//": 1, - "as": 4, - "module": 3, - "": 1, - "argument": 1, - "": 2, - "local": 5, - "memory": 4, - "function": 6, - "wrapping": 1, - "functionality": 1, - "": 1, - "unicode": 2, - "RF_CASE_IGNORE": 2, - "RF_MATCH_WORD": 5, - "RF_STRING_INDEX_OUT_OF_BOUNDS": 2, - "xFF0FFFF": 1, - "rfUTF8_IsContinuationByte2": 1, - "b__": 3, - "<=>": 16, - "0xBF": 1, - "pragma": 1, - "pack": 2, - "push": 1, - "1": 2, - "internal": 4, - "author": 1, - "Lefteris": 1, - "09": 1, - "12": 1, - "2010": 1, - "endinternal": 1, - "brief": 1, - "String": 11, - "with": 9, - "UTF": 17, - "8": 15, - "representation": 2, - "The": 1, - "Refu": 2, - "is": 17, - "Unicode": 1, - "that": 9, - "has": 2, - "two": 1, - "versions": 1, - "One": 1, - "this": 5, - "other": 16, - "ref": 1, - "RF_StringX": 2, - "see": 2, - "what": 1, - "operations": 1, - "can": 2, - "be": 6, - "performed": 1, - "extended": 3, - "Strings": 2, - "Functions": 1, - "convert": 1, - "all": 2, - "exists": 6, - "but": 1, - "always": 2, - "at": 3, - "Once": 1, - "been": 1, - "created": 1, - "it": 12, - "assumed": 1, - "inside": 2, - "valid": 1, - "since": 5, - "every": 1, - "performs": 1, - "unless": 1, - "otherwise": 1, - "specified": 1, - "All": 1, - "functions": 2, - "which": 1, - "have": 2, - "isinherited": 1, - "StringX": 2, - "their": 1, - "description": 1, - "safely": 1, - "no": 4, - "specific": 1, - "or": 1, - "needs": 1, - "exist": 2, - "manipulate": 1, - "Extended": 1, - "To": 1, - "make": 3, - "documentation": 1, - "even": 1, - "clearer": 1, - "should": 2, - "not": 6, - "marked": 1, - "notinherited": 1, - "cppcode": 1, - "constructor": 1, - "i_StringCHandle": 1, - "rfString_Create": 4, - "@endcpp": 1, - "@endinternal": 1, - "*/": 1, - "RF_String": 27, - "#pragma": 1, - "pop": 1, - "RF_String*": 222, - "RFS_": 8, - "i_rfString_CreateLocal": 2, - "__VA_ARGS__": 66, - "RF_OPTION_DEFAULT_ARGUMENTS": 24, - "i_rfString_Create": 3, - "i_NVrfString_Create": 3, - "RP_SELECT_FUNC_IF_NARGIS": 5, - "i_SELECT_RF_STRING_CREATE": 1, - "i_SELECT_RF_STRING_CREATE1": 1, - "i_SELECT_RF_STRING_CREATE0": 1, - "///Internal": 1, - "creates": 1, - "temporary": 4, - "i_rfString_CreateLocal1": 3, - "i_NVrfString_CreateLocal": 3, - "i_SELECT_RF_STRING_CREATELOCAL": 1, - "i_SELECT_RF_STRING_CREATELOCAL1": 1, - "i_SELECT_RF_STRING_CREATELOCAL0": 1, - "rfString_Init": 3, - "i_rfString_Init": 3, - "i_NVrfString_Init": 3, - "i_SELECT_RF_STRING_INIT": 1, - "i_SELECT_RF_STRING_INIT1": 1, - "i_SELECT_RF_STRING_INIT0": 1, - "rfString_Create_cp": 2, - "code": 6, - "rfString_Init_cp": 3, - "rfString_Create_nc": 3, - "i_rfString_Create_nc": 3, - "i_NVrfString_Create_nc": 3, - "i_SELECT_RF_STRING_CREATE_NC": 1, - "i_SELECT_RF_STRING_CREATE_NC1": 1, - "i_SELECT_RF_STRING_CREATE_NC0": 1, - "rfString_Init_nc": 4, - "i_rfString_Init_nc": 3, - "i_NVrfString_Init_nc": 3, - "i_SELECT_RF_STRING_INIT_NC": 1, - "i_SELECT_RF_STRING_INIT_NC1": 1, - "i_SELECT_RF_STRING_INIT_NC0": 1, - "rfString_Create_i": 2, - "rfString_Init_i": 2, - "rfString_Create_f": 2, - "rfString_Init_f": 2, - "rfString_Create_UTF16": 2, - "rfString_Init_UTF16": 3, - "rfString_Create_UTF32": 2, - "rfString_Init_UTF32": 3, - "//@": 1, - "rfString_Assign": 2, - "dest": 7, - "source": 8, - "i_rfString_Assign": 3, - "i_DESTINATION_": 2, - "i_SOURCE_": 2, - "rfString_Assign_char": 2, - "thisstr": 210, - "character": 11, - "rfString_Destroy": 2, - "rfString_Deinit": 3, - "rfString_ToUTF8": 2, - "i_STRING_": 2, - "rfString_ToCstr": 2, - "rfString_ToUTF16": 4, - "rfString_ToUTF32": 4, - "uint32_t*length": 1, - "rfString_Iterate_Start": 6, - "string_": 9, - "startCharacterPos_": 4, - "characterUnicodeValue_": 4, - "byteIndex_": 12, - "j_": 6, - "rfString_BytePosToCodePoint": 7, - "rfString_Iterate_End": 4, - "//Two": 1, - "macros": 1, - "accomplish": 1, - "an": 2, - "any": 3, - "given": 5, - "going": 1, - "backwards.": 1, - "This": 1, - "macro": 2, - "its": 1, - "pair.": 1, - "rfString_IterateB_Start": 1, - "characterPos_": 5, - "b_index_": 6, - "c_index_": 3, - "rfString_IterateB_End": 1, - "rfString_Length": 5, - "rfString_GetChar": 2, - "bytepos": 12, - "rfString_BytePosToCharPos": 4, - "rfString_Equal": 4, - "s1": 6, - "s2": 6, - "i_rfString_Equal": 3, - "i_STRING1_": 2, - "i_STRING2_": 2, - "i_rfLMSX_WRAP2": 4, - "rfString_Find": 3, - "sstr": 39, - "i_rfString_Find": 5, - "i_THISSTR_": 60, - "i_SEARCHSTR_": 26, - "i_OPTIONS_": 28, - "i_rfLMS_WRAP3": 4, - "i_RFI8_": 54, - "RF_SELECT_FUNC_IF_NARGGT": 10, - "i_NPSELECT_RF_STRING_FIND": 1, - "i_NPSELECT_RF_STRING_FIND1": 1, - "RF_COMPILE_ERROR": 33, - "i_NPSELECT_RF_STRING_FIND0": 1, - "RF_SELECT_FUNC": 10, - "i_SELECT_RF_STRING_FIND": 1, - "i_SELECT_RF_STRING_FIND2": 1, - "i_SELECT_RF_STRING_FIND3": 1, - "i_SELECT_RF_STRING_FIND1": 1, - "i_SELECT_RF_STRING_FIND0": 1, - "rfString_ToInt": 1, - "int32_t*": 1, - "v": 11, - "rfString_ToDouble": 1, - "double*": 1, - "rfString_Copy_OUT": 2, - "src": 16, - "rfString_Copy_IN": 2, - "dst": 15, - "rfString_Copy_chars": 2, - "rfString_ScanfAfter": 2, - "afterstr": 5, - "format": 4, - "i_rfString_ScanfAfter": 3, - "i_AFTERSTR_": 8, - "i_FORMAT_": 2, - "i_VAR_": 2, - "i_rfLMSX_WRAP4": 11, - "rfString_Count": 4, - "i_rfString_Count": 5, - "i_NPSELECT_RF_STRING_COUNT": 1, - "i_NPSELECT_RF_STRING_COUNT1": 1, - "i_NPSELECT_RF_STRING_COUNT0": 1, - "i_SELECT_RF_STRING_COUNT": 1, - "i_SELECT_RF_STRING_COUNT2": 1, - "i_rfLMSX_WRAP3": 5, - "i_SELECT_RF_STRING_COUNT3": 1, - "i_SELECT_RF_STRING_COUNT1": 1, - "i_SELECT_RF_STRING_COUNT0": 1, - "rfString_Tokenize": 2, - "sep": 3, - "tokensN": 2, - "RF_String**": 2, - "tokens": 5, - "rfString_Between": 3, - "lstr": 6, - "rstr": 24, - "i_rfString_Between": 4, - "i_NPSELECT_RF_STRING_BETWEEN": 1, - "i_NPSELECT_RF_STRING_BETWEEN1": 1, - "i_NPSELECT_RF_STRING_BETWEEN0": 1, - "i_SELECT_RF_STRING_BETWEEN": 1, - "i_SELECT_RF_STRING_BETWEEN4": 1, - "i_LEFTSTR_": 6, - "i_RIGHTSTR_": 6, - "i_RESULT_": 12, - "i_rfLMSX_WRAP5": 9, - "i_SELECT_RF_STRING_BETWEEN5": 1, - "i_SELECT_RF_STRING_BETWEEN3": 1, - "i_SELECT_RF_STRING_BETWEEN2": 1, - "i_SELECT_RF_STRING_BETWEEN1": 1, - "i_SELECT_RF_STRING_BETWEEN0": 1, - "rfString_Beforev": 4, - "parN": 10, - "i_rfString_Beforev": 16, - "i_NPSELECT_RF_STRING_BEFOREV": 1, - "i_NPSELECT_RF_STRING_BEFOREV1": 1, - "RF_SELECT_FUNC_IF_NARGGT2": 2, - "i_LIMSELECT_RF_STRING_BEFOREV": 1, - "i_NPSELECT_RF_STRING_BEFOREV0": 1, - "i_LIMSELECT_RF_STRING_BEFOREV1": 1, - "i_LIMSELECT_RF_STRING_BEFOREV0": 1, - "i_SELECT_RF_STRING_BEFOREV": 1, - "i_SELECT_RF_STRING_BEFOREV5": 1, - "i_ARG1_": 56, - "i_ARG2_": 56, - "i_ARG3_": 56, - "i_ARG4_": 56, - "i_RFUI8_": 28, - "i_SELECT_RF_STRING_BEFOREV6": 1, - "i_rfLMSX_WRAP6": 2, - "i_SELECT_RF_STRING_BEFOREV7": 1, - "i_rfLMSX_WRAP7": 2, - "i_SELECT_RF_STRING_BEFOREV8": 1, - "i_rfLMSX_WRAP8": 2, - "i_SELECT_RF_STRING_BEFOREV9": 1, - "i_rfLMSX_WRAP9": 2, - "i_SELECT_RF_STRING_BEFOREV10": 1, - "i_rfLMSX_WRAP10": 2, - "i_SELECT_RF_STRING_BEFOREV11": 1, - "i_rfLMSX_WRAP11": 2, - "i_SELECT_RF_STRING_BEFOREV12": 1, - "i_rfLMSX_WRAP12": 2, - "i_SELECT_RF_STRING_BEFOREV13": 1, - "i_rfLMSX_WRAP13": 2, - "i_SELECT_RF_STRING_BEFOREV14": 1, - "i_rfLMSX_WRAP14": 2, - "i_SELECT_RF_STRING_BEFOREV15": 1, - "i_rfLMSX_WRAP15": 2, - "i_SELECT_RF_STRING_BEFOREV16": 1, - "i_rfLMSX_WRAP16": 2, - "i_SELECT_RF_STRING_BEFOREV17": 1, - "i_rfLMSX_WRAP17": 2, - "i_SELECT_RF_STRING_BEFOREV18": 1, - "i_rfLMSX_WRAP18": 2, - "rfString_Before": 3, - "i_rfString_Before": 5, - "i_NPSELECT_RF_STRING_BEFORE": 1, - "i_NPSELECT_RF_STRING_BEFORE1": 1, - "i_NPSELECT_RF_STRING_BEFORE0": 1, - "i_SELECT_RF_STRING_BEFORE": 1, - "i_SELECT_RF_STRING_BEFORE3": 1, - "i_SELECT_RF_STRING_BEFORE4": 1, - "i_SELECT_RF_STRING_BEFORE2": 1, - "i_SELECT_RF_STRING_BEFORE1": 1, - "i_SELECT_RF_STRING_BEFORE0": 1, - "rfString_After": 4, - "after": 6, - "i_rfString_After": 5, - "i_NPSELECT_RF_STRING_AFTER": 1, - "i_NPSELECT_RF_STRING_AFTER1": 1, - "i_NPSELECT_RF_STRING_AFTER0": 1, - "i_SELECT_RF_STRING_AFTER": 1, - "i_SELECT_RF_STRING_AFTER3": 1, - "i_OUTSTR_": 6, - "i_SELECT_RF_STRING_AFTER4": 1, - "i_SELECT_RF_STRING_AFTER2": 1, - "i_SELECT_RF_STRING_AFTER1": 1, - "i_SELECT_RF_STRING_AFTER0": 1, - "rfString_Afterv": 4, - "i_rfString_Afterv": 16, - "i_NPSELECT_RF_STRING_AFTERV": 1, - "i_NPSELECT_RF_STRING_AFTERV1": 1, - "i_LIMSELECT_RF_STRING_AFTERV": 1, - "i_NPSELECT_RF_STRING_AFTERV0": 1, - "i_LIMSELECT_RF_STRING_AFTERV1": 1, - "i_LIMSELECT_RF_STRING_AFTERV0": 1, - "i_SELECT_RF_STRING_AFTERV": 1, - "i_SELECT_RF_STRING_AFTERV5": 1, - "i_SELECT_RF_STRING_AFTERV6": 1, - "i_SELECT_RF_STRING_AFTERV7": 1, - "i_SELECT_RF_STRING_AFTERV8": 1, - "i_SELECT_RF_STRING_AFTERV9": 1, - "i_SELECT_RF_STRING_AFTERV10": 1, - "i_SELECT_RF_STRING_AFTERV11": 1, - "i_SELECT_RF_STRING_AFTERV12": 1, - "i_SELECT_RF_STRING_AFTERV13": 1, - "i_SELECT_RF_STRING_AFTERV14": 1, - "i_SELECT_RF_STRING_AFTERV15": 1, - "i_SELECT_RF_STRING_AFTERV16": 1, - "i_SELECT_RF_STRING_AFTERV17": 1, - "i_SELECT_RF_STRING_AFTERV18": 1, - "rfString_Append": 5, - "i_rfString_Append": 3, - "i_OTHERSTR_": 4, - "rfString_Append_i": 2, - "rfString_Append_f": 2, - "rfString_Prepend": 2, - "i_rfString_Prepend": 3, - "rfString_Remove": 3, - "i_rfString_Remove": 6, - "i_NPSELECT_RF_STRING_REMOVE": 1, - "i_NPSELECT_RF_STRING_REMOVE1": 1, - "i_NPSELECT_RF_STRING_REMOVE0": 1, - "i_SELECT_RF_STRING_REMOVE": 1, - "i_SELECT_RF_STRING_REMOVE2": 1, - "i_REPSTR_": 16, - "i_RFUI32_": 8, - "i_SELECT_RF_STRING_REMOVE3": 1, - "i_NUMBER_": 12, - "i_SELECT_RF_STRING_REMOVE4": 1, - "i_SELECT_RF_STRING_REMOVE1": 1, - "i_SELECT_RF_STRING_REMOVE0": 1, - "rfString_KeepOnly": 2, - "keepstr": 5, - "i_rfString_KeepOnly": 3, - "I_KEEPSTR_": 2, - "rfString_PruneStart": 2, - "rfString_PruneEnd": 2, - "rfString_PruneMiddleB": 2, - "rfString_PruneMiddleF": 2, - "rfString_Replace": 3, - "i_rfString_Replace": 6, - "i_NPSELECT_RF_STRING_REPLACE": 1, - "i_NPSELECT_RF_STRING_REPLACE1": 1, - "i_NPSELECT_RF_STRING_REPLACE0": 1, - "i_SELECT_RF_STRING_REPLACE": 1, - "i_SELECT_RF_STRING_REPLACE3": 1, - "i_SELECT_RF_STRING_REPLACE4": 1, - "i_SELECT_RF_STRING_REPLACE5": 1, - "i_SELECT_RF_STRING_REPLACE2": 1, - "i_SELECT_RF_STRING_REPLACE1": 1, - "i_SELECT_RF_STRING_REPLACE0": 1, - "rfString_StripStart": 3, - "i_rfString_StripStart": 3, - "i_SUBSTR_": 6, - "rfString_StripEnd": 3, - "i_rfString_StripEnd": 3, - "rfString_Strip": 2, - "i_rfString_Strip": 3, - "rfString_Create_fUTF8": 2, - "rfString_Init_fUTF8": 3, - "rfString_Assign_fUTF8": 2, - "rfString_Append_fUTF8": 2, - "rfString_Create_fUTF16": 2, - "rfString_Init_fUTF16": 3, - "rfString_Append_fUTF16": 2, - "rfString_Assign_fUTF16": 2, - "rfString_Create_fUTF32": 2, - "rfString_Init_fUTF32": 3, - "rfString_Assign_fUTF32": 2, - "rfString_Append_fUTF32": 2, - "rfString_Fwrite": 2, - "i_rfString_Fwrite": 5, - "i_NPSELECT_RF_STRING_FWRITE": 1, - "i_NPSELECT_RF_STRING_FWRITE1": 1, - "i_NPSELECT_RF_STRING_FWRITE0": 1, - "i_SELECT_RF_STRING_FWRITE": 1, - "i_SELECT_RF_STRING_FWRITE3": 1, - "i_STR_": 8, - "i_ENCODING_": 4, - "i_SELECT_RF_STRING_FWRITE2": 1, - "RF_UTF8": 8, - "i_SELECT_RF_STRING_FWRITE1": 1, - "i_SELECT_RF_STRING_FWRITE0": 1, - "rfString_Fwrite_fUTF8": 1, - "closing": 1, - "include": 6, - "Attempted": 1, - "manipulation": 1, - "flag": 1, - "off.": 1, - "Rebuild": 1, - "library": 3, - "added": 1, - "you": 1, - "them": 3, - "#endif//": 1, - "READLINE_READLINE_CATS": 3, - "": 1, - "atscntrb_readline_rl_library_version": 1, - "rl_library_version": 1, - "atscntrb_readline_rl_readline_version": 1, - "rl_readline_version": 1, - "atscntrb_readline_readline": 1, - "readline": 1, - "ifndef": 2, - "PY_SSIZE_T_CLEAN": 1, - "Py_PYTHON_H": 1, - "Python": 2, - "headers": 1, - "compile": 1, - "extensions": 1, - "please": 1, - "install": 1, - "development": 1, - "Python.": 1, - "#elif": 14, - "PY_VERSION_HEX": 11, - "Cython": 1, - "requires": 1, - ".": 1, - "": 2, - "offsetof": 2, - "member": 2, - "type*": 1, - "WIN32": 2, - "MS_WINDOWS": 2, - "__stdcall": 2, - "__cdecl": 2, - "__fastcall": 2, - "DL_IMPORT": 2, - "DL_EXPORT": 2, - "PY_LONG_LONG": 5, - "LONG_LONG": 1, - "Py_HUGE_VAL": 2, - "HUGE_VAL": 1, - "PYPY_VERSION": 1, - "CYTHON_COMPILING_IN_PYPY": 3, - "CYTHON_COMPILING_IN_CPYTHON": 6, - "Py_ssize_t": 35, - "PY_SSIZE_T_MAX": 1, - "INT_MAX": 1, - "PY_SSIZE_T_MIN": 1, - "INT_MIN": 1, - "PY_FORMAT_SIZE_T": 1, - "CYTHON_FORMAT_SSIZE_T": 2, - "PyInt_FromSsize_t": 6, - "z": 47, - "PyInt_FromLong": 3, - "PyInt_AsSsize_t": 3, - "__Pyx_PyInt_AsInt": 2, - "PyNumber_Index": 1, - "PyNumber_Check": 2, - "PyFloat_Check": 2, - "PyNumber_Int": 1, - "PyErr_Format": 4, - "PyExc_TypeError": 4, - "Py_TYPE": 7, - "tp_name": 4, - "PyObject*": 24, - "__Pyx_PyIndex_Check": 3, - "PyComplex_Check": 1, - "PyIndex_Check": 2, - "PyErr_WarnEx": 1, - "category": 2, - "message": 3, - "stacklevel": 1, - "PyErr_Warn": 1, - "__PYX_BUILD_PY_SSIZE_T": 2, - "Py_REFCNT": 1, - "ob": 14, - "ob_refcnt": 1, - "ob_type": 7, - "Py_SIZE": 1, - "PyVarObject*": 1, - "ob_size": 1, - "PyVarObject_HEAD_INIT": 1, - "PyObject_HEAD_INIT": 1, - "PyType_Modified": 1, - "PyObject": 276, - "itemsize": 1, - "readonly": 1, - "ndim": 2, - "*shape": 1, - "*strides": 1, - "*suboffsets": 1, - "*internal": 1, - "Py_buffer": 6, - "PyBUF_SIMPLE": 1, - "PyBUF_WRITABLE": 3, - "PyBUF_FORMAT": 3, - "PyBUF_ND": 2, - "PyBUF_STRIDES": 6, - "PyBUF_C_CONTIGUOUS": 1, - "PyBUF_F_CONTIGUOUS": 1, - "PyBUF_ANY_CONTIGUOUS": 1, - "PyBUF_INDIRECT": 2, - "PyBUF_RECORDS": 1, - "PyBUF_FULL": 1, - "PY_MAJOR_VERSION": 13, - "__Pyx_BUILTIN_MODULE_NAME": 2, - "__Pyx_PyCode_New": 2, - "l": 7, - "fv": 4, - "cell": 4, - "fline": 4, - "lnos": 4, - "PyCode_New": 2, - "PY_MINOR_VERSION": 1, - "PyUnicode_FromString": 2, - "PyUnicode_Decode": 1, - "Py_TPFLAGS_CHECKTYPES": 1, - "Py_TPFLAGS_HAVE_INDEX": 1, - "Py_TPFLAGS_HAVE_NEWBUFFER": 1, - "PyUnicode_KIND": 1, - "CYTHON_PEP393_ENABLED": 2, - "__Pyx_PyUnicode_READY": 2, - "op": 8, - "likely": 22, - "PyUnicode_IS_READY": 1, - "_PyUnicode_Ready": 1, - "__Pyx_PyUnicode_GET_LENGTH": 2, - "u": 18, - "PyUnicode_GET_LENGTH": 1, - "__Pyx_PyUnicode_READ_CHAR": 2, - "PyUnicode_READ_CHAR": 1, - "__Pyx_PyUnicode_READ": 2, - "PyUnicode_READ": 1, - "PyUnicode_GET_SIZE": 1, - "Py_UCS4": 2, - "PyUnicode_AS_UNICODE": 1, - "Py_UNICODE*": 1, - "PyBaseString_Type": 1, - "PyUnicode_Type": 2, - "PyStringObject": 2, - "PyUnicodeObject": 1, - "PyString_Type": 2, - "PyString_Check": 2, - "PyUnicode_Check": 1, - "PyString_CheckExact": 2, - "PyUnicode_CheckExact": 1, - "PyBytesObject": 1, - "PyBytes_Type": 1, - "PyBytes_Check": 1, - "PyBytes_CheckExact": 1, - "PyBytes_FromString": 2, - "PyString_FromString": 2, - "PyBytes_FromStringAndSize": 1, - "PyString_FromStringAndSize": 1, - "PyBytes_FromFormat": 1, - "PyString_FromFormat": 1, - "PyBytes_DecodeEscape": 1, - "PyString_DecodeEscape": 1, - "PyBytes_AsString": 2, - "PyString_AsString": 1, - "PyBytes_AsStringAndSize": 1, - "PyString_AsStringAndSize": 1, - "PyBytes_Size": 1, - "PyString_Size": 1, - "PyBytes_AS_STRING": 1, - "PyString_AS_STRING": 1, - "PyBytes_GET_SIZE": 1, - "PyString_GET_SIZE": 1, - "PyBytes_Repr": 1, - "PyString_Repr": 1, - "PyBytes_Concat": 1, - "PyString_Concat": 1, - "PyBytes_ConcatAndDel": 1, - "PyString_ConcatAndDel": 1, - "PySet_Check": 1, - "PyObject_TypeCheck": 3, - "PySet_Type": 2, - "PyFrozenSet_Check": 1, - "PyFrozenSet_Type": 1, - "PySet_CheckExact": 2, - "__Pyx_TypeCheck": 1, - "PyTypeObject": 25, - "PyIntObject": 1, - "PyLongObject": 2, - "PyInt_Type": 1, - "PyLong_Type": 1, - "PyInt_Check": 1, - "PyLong_Check": 1, - "PyInt_CheckExact": 1, - "PyLong_CheckExact": 1, - "PyInt_FromString": 1, - "PyLong_FromString": 1, - "PyInt_FromUnicode": 1, - "PyLong_FromUnicode": 1, - "PyLong_FromLong": 1, - "PyInt_FromSize_t": 1, - "PyLong_FromSize_t": 1, - "PyLong_FromSsize_t": 1, - "PyInt_AsLong": 2, - "PyLong_AsLong": 1, - "PyInt_AS_LONG": 1, - "PyLong_AS_LONG": 1, - "PyLong_AsSsize_t": 1, - "PyInt_AsUnsignedLongMask": 1, - "PyLong_AsUnsignedLongMask": 1, - "PyInt_AsUnsignedLongLongMask": 1, - "PyLong_AsUnsignedLongLongMask": 1, - "PyBoolObject": 1, - "Py_hash_t": 1, - "__Pyx_PyInt_FromHash_t": 2, - "__Pyx_PyInt_AsHash_t": 2, - "__Pyx_PySequence_GetSlice": 2, - "PySequence_GetSlice": 2, - "__Pyx_PySequence_SetSlice": 2, - "PySequence_SetSlice": 2, - "__Pyx_PySequence_DelSlice": 2, - "PySequence_DelSlice": 2, - "unlikely": 54, - "PyErr_SetString": 3, - "PyExc_SystemError": 3, - "tp_as_mapping": 3, - "PyMethod_New": 2, - "func": 3, - "klass": 1, - "PyInstanceMethod_New": 1, - "__Pyx_GetAttrString": 2, - "PyObject_GetAttrString": 2, - "__Pyx_SetAttrString": 2, - "PyObject_SetAttrString": 2, - "__Pyx_DelAttrString": 2, - "PyObject_DelAttrString": 2, - "__Pyx_NAMESTR": 2, - "__Pyx_DOCSTR": 2, - "__Pyx_PyNumber_Divide": 2, - "PyNumber_TrueDivide": 1, - "__Pyx_PyNumber_InPlaceDivide": 2, - "PyNumber_InPlaceTrueDivide": 1, - "PyNumber_Divide": 1, - "PyNumber_InPlaceDivide": 1, - "__PYX_EXTERN_C": 3, - "_USE_MATH_DEFINES": 1, - "__PYX_HAVE__sklearn__linear_model__sgd_fast": 1, - "__PYX_HAVE_API__sklearn__linear_model__sgd_fast": 1, - "_OPENMP": 1, - "": 1, - "PYREX_WITHOUT_ASSERTIONS": 1, - "CYTHON_WITHOUT_ASSERTIONS": 1, - "CYTHON_INLINE": 65, - "__inline__": 1, - "__inline": 1, - "__STDC_VERSION__": 2, - "L": 1, - "CYTHON_UNUSED": 14, - "**p": 1, - "is_unicode": 1, - "is_str": 1, - "intern": 1, - "__Pyx_StringTabEntry": 2, - "__Pyx_PyBytes_FromUString": 1, - "__Pyx_PyBytes_AsUString": 1, - "__Pyx_Owned_Py_None": 1, - "Py_INCREF": 10, - "Py_None": 8, - "__Pyx_PyBool_FromLong": 1, - "Py_True": 2, - "Py_False": 2, - "__Pyx_PyObject_IsTrue": 1, - "__Pyx_PyNumber_Int": 1, - "__Pyx_PyIndex_AsSsize_t": 1, - "__Pyx_PyInt_FromSize_t": 1, - "__Pyx_PyInt_AsSize_t": 1, - "__pyx_PyFloat_AsDouble": 12, - "PyFloat_CheckExact": 1, - "PyFloat_AS_DOUBLE": 1, - "PyFloat_AsDouble": 2, - "__pyx_PyFloat_AsFloat": 1, - "__builtin_expect": 2, - "*__pyx_m": 1, - "*__pyx_b": 1, - "*__pyx_empty_tuple": 1, - "*__pyx_empty_bytes": 1, - "__pyx_lineno": 58, - "__pyx_clineno": 58, - "__pyx_cfilenm": 1, - "__FILE__": 4, - "*__pyx_filename": 7, - "CYTHON_CCOMPLEX": 12, - "_Complex_I": 3, - "": 1, - "": 1, - "__sun__": 1, - "fj": 1, - "*__pyx_f": 1, - "IS_UNSIGNED": 1, - "__Pyx_StructField_": 2, - "__PYX_BUF_FLAGS_PACKED_STRUCT": 1, - "__Pyx_StructField_*": 1, - "fields": 1, - "arraysize": 1, - "typegroup": 1, - "is_unsigned": 1, - "__Pyx_TypeInfo": 2, - "__Pyx_TypeInfo*": 2, - "offset": 1, - "__Pyx_StructField": 2, - "__Pyx_StructField*": 1, - "field": 1, - "parent_offset": 1, - "__Pyx_BufFmt_StackElem": 1, - "root": 1, - "__Pyx_BufFmt_StackElem*": 2, - "fmt_offset": 1, - "new_count": 1, - "enc_count": 1, - "struct_alignment": 1, - "is_complex": 1, - "enc_type": 1, - "new_packmode": 1, - "enc_packmode": 1, - "is_valid_array": 1, - "__Pyx_BufFmt_Context": 1, - "npy_int8": 1, - "__pyx_t_5numpy_int8_t": 1, - "npy_int16": 1, - "__pyx_t_5numpy_int16_t": 1, - "npy_int32": 1, - "__pyx_t_5numpy_int32_t": 4, - "npy_int64": 1, - "__pyx_t_5numpy_int64_t": 1, - "npy_uint8": 1, - "__pyx_t_5numpy_uint8_t": 1, - "npy_uint16": 1, - "__pyx_t_5numpy_uint16_t": 1, - "npy_uint32": 1, - "__pyx_t_5numpy_uint32_t": 1, - "npy_uint64": 1, - "__pyx_t_5numpy_uint64_t": 1, - "npy_float32": 1, - "__pyx_t_5numpy_float32_t": 1, - "npy_float64": 1, - "__pyx_t_5numpy_float64_t": 4, - "npy_long": 1, - "__pyx_t_5numpy_int_t": 1, - "npy_longlong": 2, - "__pyx_t_5numpy_long_t": 1, - "__pyx_t_5numpy_longlong_t": 1, - "npy_ulong": 1, - "__pyx_t_5numpy_uint_t": 1, - "npy_ulonglong": 2, - "__pyx_t_5numpy_ulong_t": 1, - "__pyx_t_5numpy_ulonglong_t": 1, - "npy_intp": 1, - "__pyx_t_5numpy_intp_t": 1, - "npy_uintp": 1, - "__pyx_t_5numpy_uintp_t": 1, - "npy_double": 2, - "__pyx_t_5numpy_float_t": 1, - "__pyx_t_5numpy_double_t": 1, - "npy_longdouble": 1, - "__pyx_t_5numpy_longdouble_t": 1, - "__pyx_t_7sklearn_5utils_13weight_vector_DOUBLE": 2, - "__pyx_t_7sklearn_5utils_13weight_vector_INTEGER": 1, - "__pyx_t_7sklearn_5utils_11seq_dataset_DOUBLE": 7, - "__pyx_t_7sklearn_5utils_11seq_dataset_INTEGER": 7, - "__pyx_t_7sklearn_12linear_model_8sgd_fast_DOUBLE": 4, - "__pyx_t_7sklearn_12linear_model_8sgd_fast_INTEGER": 3, - "std": 8, - "complex": 2, - "__pyx_t_float_complex": 27, - "_Complex": 2, - "real": 2, - "imag": 2, - "__pyx_t_double_complex": 27, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_LossFunction": 15, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Regression": 11, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Huber": 6, - "__pyx_obj_7sklearn_5utils_11seq_dataset_SequentialDataset": 5, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 6, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Classification": 7, - "__pyx_obj_7sklearn_5utils_11seq_dataset_CSRDataset": 2, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Log": 5, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Hinge": 6, - "__pyx_obj_7sklearn_5utils_11seq_dataset_ArrayDataset": 2, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 6, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_ModifiedHuber": 5, - "__pyx_obj_7sklearn_5utils_13weight_vector_WeightVector": 3, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredLoss": 5, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredEpsilonInsensitive": 6, - "npy_cfloat": 1, - "__pyx_t_5numpy_cfloat_t": 1, - "npy_cdouble": 2, - "__pyx_t_5numpy_cdouble_t": 1, - "npy_clongdouble": 1, - "__pyx_t_5numpy_clongdouble_t": 1, - "__pyx_t_5numpy_complex_t": 1, - "PyObject_HEAD": 3, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_LossFunction": 5, - "*__pyx_vtab": 3, - "__pyx_base": 18, - "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_SequentialDataset": 4, - "n_samples": 1, - "epsilon": 2, - "current_index": 2, - "stride": 2, - "*X_data_ptr": 2, - "*X_indptr_ptr": 1, - "*X_indices_ptr": 1, - "*Y_data_ptr": 2, - "PyArrayObject": 8, - "*feature_indices": 2, - "*feature_indices_ptr": 2, - "*index": 2, - "*index_data_ptr": 2, - "*sample_weight_data": 2, - "threshold": 2, - "n_features": 2, - "__pyx_vtabstruct_7sklearn_5utils_13weight_vector_WeightVector": 3, - "*w_data_ptr": 1, - "wscale": 1, - "sq_norm": 1, - "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_SequentialDataset": 1, - "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_ArrayDataset": 2, - "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_ArrayDataset": 1, - "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_CSRDataset": 2, - "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_CSRDataset": 1, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 2, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Regression": 3, - "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 1, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 2, - "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 1, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Huber": 2, - "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_Huber": 1, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Hinge": 2, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Classification": 1, - "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_Hinge": 1, - "*__pyx_vtabptr_7sklearn_5utils_13weight_vector_WeightVector": 1, - "CYTHON_REFNANNY": 3, - "__Pyx_RefNannyAPIStruct": 3, - "*__Pyx_RefNanny": 1, - "*__Pyx_RefNannyImportAPI": 1, - "*modname": 1, - "__Pyx_RefNannyDeclarations": 11, - "*__pyx_refnanny": 1, - "WITH_THREAD": 1, - "__Pyx_RefNannySetupContext": 12, - "acquire_gil": 4, - "PyGILState_STATE": 1, - "__pyx_gilstate_save": 2, - "PyGILState_Ensure": 1, - "__pyx_refnanny": 8, - "__Pyx_RefNanny": 8, - "SetupContext": 3, - "__LINE__": 50, - "PyGILState_Release": 1, - "__Pyx_RefNannyFinishContext": 14, - "FinishContext": 1, - "__Pyx_INCREF": 6, - "INCREF": 1, - "__Pyx_DECREF": 20, - "DECREF": 1, - "__Pyx_GOTREF": 24, - "GOTREF": 1, - "__Pyx_GIVEREF": 9, - "GIVEREF": 1, - "__Pyx_XINCREF": 2, - "__Pyx_XDECREF": 20, - "__Pyx_XGOTREF": 2, - "__Pyx_XGIVEREF": 5, - "Py_DECREF": 2, - "Py_XINCREF": 1, - "Py_XDECREF": 1, - "__Pyx_CLEAR": 1, - "__Pyx_XCLEAR": 1, - "*__Pyx_GetName": 1, - "__Pyx_ErrRestore": 1, - "*type": 4, - "*tb": 2, - "__Pyx_ErrFetch": 1, - "**type": 1, - "**value": 1, - "**tb": 1, - "__Pyx_Raise": 4, - "*cause": 1, - "__Pyx_RaiseArgtupleInvalid": 7, - "func_name": 2, - "exact": 6, - "num_min": 1, - "num_max": 1, - "num_found": 1, - "__Pyx_RaiseDoubleKeywordsError": 1, - "kw_name": 1, - "__Pyx_ParseOptionalKeywords": 4, - "*kwds": 1, - "**argnames": 1, - "*kwds2": 1, - "*values": 1, - "num_pos_args": 1, - "function_name": 1, - "__Pyx_ArgTypeTest": 1, - "none_allowed": 1, - "__Pyx_GetBufferAndValidate": 1, - "Py_buffer*": 2, - "dtype": 1, - "nd": 1, - "cast": 1, - "stack": 6, - "__Pyx_SafeReleaseBuffer": 1, - "__Pyx_TypeTest": 1, - "__Pyx_RaiseBufferFallbackError": 1, - "*__Pyx_GetItemInt_Generic": 1, - "*r": 7, - "PyObject_GetItem": 1, - "__Pyx_GetItemInt_List": 1, - "to_py_func": 6, - "__Pyx_GetItemInt_List_Fast": 1, - "__Pyx_GetItemInt_Generic": 6, - "*__Pyx_GetItemInt_List_Fast": 1, - "PyList_GET_SIZE": 5, - "PyList_GET_ITEM": 3, - "PySequence_GetItem": 3, - "__Pyx_GetItemInt_Tuple": 1, - "__Pyx_GetItemInt_Tuple_Fast": 1, - "*__Pyx_GetItemInt_Tuple_Fast": 1, - "PyTuple_GET_SIZE": 14, - "PyTuple_GET_ITEM": 15, - "__Pyx_GetItemInt": 1, - "__Pyx_GetItemInt_Fast": 2, - "PyList_CheckExact": 1, - "PyTuple_CheckExact": 1, - "PySequenceMethods": 1, - "*m": 1, - "tp_as_sequence": 1, - "sq_item": 2, - "sq_length": 2, - "PySequence_Check": 1, - "__Pyx_RaiseTooManyValuesError": 1, - "expected": 2, - "__Pyx_RaiseNeedMoreValuesError": 1, - "__Pyx_RaiseNoneNotIterableError": 1, - "__Pyx_IterFinish": 1, - "__Pyx_IternextUnpackEndCheck": 1, - "*retval": 1, - "shape": 1, - "strides": 1, - "suboffsets": 1, - "__Pyx_Buf_DimInfo": 2, - "refcount": 2, - "pybuffer": 1, - "__Pyx_Buffer": 2, - "*rcbuffer": 1, - "diminfo": 1, - "__Pyx_LocalBuf_ND": 1, - "__Pyx_GetBuffer": 2, - "*view": 2, - "__Pyx_ReleaseBuffer": 2, - "PyObject_GetBuffer": 1, - "PyBuffer_Release": 1, - "__Pyx_zeros": 1, - "__Pyx_minusones": 1, - "*__Pyx_Import": 1, - "*from_list": 1, - "__Pyx_RaiseImportError": 1, - "__Pyx_Print": 1, - "__pyx_print": 1, - "__pyx_print_kwargs": 1, - "__Pyx_PrintOne": 1, - "__Pyx_CREAL": 4, - ".real": 3, - "__Pyx_CIMAG": 4, - ".imag": 3, - "__real__": 1, - "__imag__": 1, - "__Pyx_SET_CREAL": 2, - "__Pyx_SET_CIMAG": 2, - "__pyx_t_float_complex_from_parts": 1, - "__Pyx_c_eqf": 2, - "__Pyx_c_sumf": 2, - "__Pyx_c_difff": 2, - "__Pyx_c_prodf": 2, - "__Pyx_c_quotf": 2, - "__Pyx_c_negf": 2, - "__Pyx_c_is_zerof": 3, - "__Pyx_c_conjf": 3, - "conj": 3, - "__Pyx_c_absf": 3, - "abs": 2, - "__Pyx_c_powf": 3, - "pow": 2, - "conjf": 1, - "cabsf": 1, - "cpowf": 1, - "__pyx_t_double_complex_from_parts": 1, - "__Pyx_c_eq": 2, - "__Pyx_c_sum": 2, - "__Pyx_c_diff": 2, - "__Pyx_c_prod": 2, - "__Pyx_c_quot": 2, - "__Pyx_c_neg": 2, - "__Pyx_c_is_zero": 3, - "__Pyx_c_conj": 3, - "__Pyx_c_abs": 3, - "__Pyx_c_pow": 3, - "cabs": 1, - "cpow": 1, - "__Pyx_PyInt_AsUnsignedChar": 1, - "__Pyx_PyInt_AsUnsignedShort": 1, - "__Pyx_PyInt_AsUnsignedInt": 1, - "__Pyx_PyInt_AsChar": 1, - "__Pyx_PyInt_AsShort": 1, - "signed": 5, - "__Pyx_PyInt_AsSignedChar": 1, - "__Pyx_PyInt_AsSignedShort": 1, - "__Pyx_PyInt_AsSignedInt": 1, - "__Pyx_PyInt_AsLongDouble": 1, - "__Pyx_PyInt_AsUnsignedLong": 1, - "__Pyx_PyInt_AsUnsignedLongLong": 1, - "__Pyx_PyInt_AsLong": 1, - "__Pyx_PyInt_AsLongLong": 1, - "__Pyx_PyInt_AsSignedLong": 1, - "__Pyx_PyInt_AsSignedLongLong": 1, - "__Pyx_WriteUnraisable": 4, - "clineno": 1, - "lineno": 1, - "*filename": 2, - "__Pyx_check_binary_version": 1, - "__Pyx_SetVtable": 1, - "*vtable": 1, - "__Pyx_PyIdentifier_FromString": 3, - "*__Pyx_ImportModule": 1, - "*__Pyx_ImportType": 1, - "*module_name": 1, - "*class_name": 1, - "strict": 2, - "__Pyx_GetVtable": 1, - "code_line": 4, - "PyCodeObject*": 2, - "code_object": 2, - "__Pyx_CodeObjectCacheEntry": 1, - "__Pyx_CodeObjectCache": 2, - "max_count": 1, - "__Pyx_CodeObjectCacheEntry*": 2, - "entries": 2, - "__pyx_code_cache": 1, - "__pyx_bisect_code_objects": 1, - "PyCodeObject": 1, - "*__pyx_find_code_object": 1, - "__pyx_insert_code_object": 1, - "__Pyx_AddTraceback": 7, - "*funcname": 1, - "c_line": 1, - "py_line": 1, - "__Pyx_InitStrings": 1, - "*t": 2, - "*__pyx_ptype_7cpython_4type_type": 1, - "*__pyx_ptype_5numpy_dtype": 1, - "*__pyx_ptype_5numpy_flatiter": 1, - "*__pyx_ptype_5numpy_broadcast": 1, - "*__pyx_ptype_5numpy_ndarray": 1, - "*__pyx_ptype_5numpy_ufunc": 1, - "*__pyx_f_5numpy__util_dtypestring": 1, - "PyArray_Descr": 1, - "*__pyx_ptype_7sklearn_5utils_13weight_vector_WeightVector": 1, - "*__pyx_ptype_7sklearn_5utils_11seq_dataset_SequentialDataset": 1, - "*__pyx_ptype_7sklearn_5utils_11seq_dataset_ArrayDataset": 1, - "*__pyx_ptype_7sklearn_5utils_11seq_dataset_CSRDataset": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_LossFunction": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Regression": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Classification": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_ModifiedHuber": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Hinge": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Log": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredLoss": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Huber": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredEpsilonInsensitive": 1, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_max": 1, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_min": 1, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_sqnorm": 1, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_l1penalty": 1, - "__Pyx_TypeInfo_nn___pyx_t_7sklearn_12linear_model_8sgd_fast_DOUBLE": 1, - "__Pyx_MODULE_NAME": 1, - "__pyx_module_is_main_sklearn__linear_model__sgd_fast": 1, - "*__pyx_builtin_NotImplementedError": 1, - "*__pyx_builtin_range": 1, - "*__pyx_builtin_ValueError": 1, - "*__pyx_builtin_RuntimeError": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 2, - "*__pyx_v_self": 52, - "__pyx_v_p": 46, - "__pyx_v_y": 46, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 2, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 2, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_2dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_14Classification_loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_14Classification_2dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_2dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_4__reduce__": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge___init__": 1, - "__pyx_v_threshold": 2, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_2loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_4dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_6__reduce__": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge___init__": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_2loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_4dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_6__reduce__": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_2dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_4__reduce__": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_2dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_4__reduce__": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber___init__": 1, - "__pyx_v_c": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_2loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_4dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_6__reduce__": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive___init__": 1, - "__pyx_v_epsilon": 2, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_2loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_4dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_6__reduce__": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive___init__": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_2loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_4dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_6__reduce__": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_plain_sgd": 1, - "*__pyx_self": 1, - "*__pyx_v_weights": 1, - "__pyx_v_intercept": 1, - "*__pyx_v_loss": 1, - "__pyx_v_penalty_type": 1, - "__pyx_v_alpha": 1, - "__pyx_v_C": 1, - "__pyx_v_rho": 1, - "*__pyx_v_dataset": 1, - "__pyx_v_n_iter": 1, - "__pyx_v_fit_intercept": 1, - "__pyx_v_verbose": 1, - "__pyx_v_shuffle": 1, - "*__pyx_v_seed": 1, - "__pyx_v_weight_pos": 1, - "__pyx_v_weight_neg": 1, - "__pyx_v_learning_rate": 1, - "__pyx_v_eta0": 1, - "__pyx_v_power_t": 1, - "__pyx_v_t": 1, - "__pyx_v_intercept_decay": 1, - "__pyx_pf_5numpy_7ndarray___getbuffer__": 1, - "*__pyx_v_info": 2, - "__pyx_v_flags": 1, - "__pyx_pf_5numpy_7ndarray_2__releasebuffer__": 1, - "__pyx_k_1": 1, - "__pyx_k_2": 1, - "__pyx_k_3": 1, - "__pyx_k_4": 1, - "__pyx_k_6": 1, - "__pyx_k_8": 1, - "__pyx_k_10": 1, - "__pyx_k_12": 1, - "__pyx_k_13": 1, - "__pyx_k_16": 1, - "__pyx_k_20": 1, - "__pyx_k_21": 1, - "__pyx_k__B": 1, - "__pyx_k__C": 1, - "__pyx_k__H": 1, - "__pyx_k__I": 1, - "__pyx_k__L": 1, - "__pyx_k__O": 1, - "__pyx_k__Q": 1, - "__pyx_k__b": 1, - "__pyx_k__c": 1, - "__pyx_k__d": 1, - "__pyx_k__f": 1, - "__pyx_k__g": 1, - "__pyx_k__h": 1, - "__pyx_k__i": 1, - "__pyx_k__l": 1, - "__pyx_k__p": 1, - "__pyx_k__q": 1, - "__pyx_k__t": 1, - "__pyx_k__u": 1, - "__pyx_k__w": 1, - "__pyx_k__y": 1, - "__pyx_k__Zd": 1, - "__pyx_k__Zf": 1, - "__pyx_k__Zg": 1, - "__pyx_k__np": 1, - "__pyx_k__any": 1, - "__pyx_k__eta": 1, - "__pyx_k__rho": 1, - "__pyx_k__sys": 1, - "__pyx_k__eta0": 1, - "__pyx_k__loss": 1, - "__pyx_k__seed": 1, - "__pyx_k__time": 1, - "__pyx_k__xnnz": 1, - "__pyx_k__alpha": 1, - "__pyx_k__count": 1, - "__pyx_k__dloss": 1, - "__pyx_k__dtype": 1, - "__pyx_k__epoch": 1, - "__pyx_k__isinf": 1, - "__pyx_k__isnan": 1, - "__pyx_k__numpy": 1, - "__pyx_k__order": 1, - "__pyx_k__range": 1, - "__pyx_k__shape": 1, - "__pyx_k__zeros": 1, - "__pyx_k__n_iter": 1, - "__pyx_k__update": 1, - "__pyx_k__dataset": 1, - "__pyx_k__epsilon": 1, - "__pyx_k__float64": 1, - "__pyx_k__nonzero": 1, - "__pyx_k__power_t": 1, - "__pyx_k__shuffle": 1, - "__pyx_k__sumloss": 1, - "__pyx_k__t_start": 1, - "__pyx_k__verbose": 1, - "__pyx_k__weights": 1, - "__pyx_k____main__": 1, - "__pyx_k____test__": 1, - "__pyx_k__is_hinge": 1, - "__pyx_k__intercept": 1, - "__pyx_k__n_samples": 1, - "__pyx_k__plain_sgd": 1, - "__pyx_k__threshold": 1, - "__pyx_k__x_ind_ptr": 1, - "__pyx_k__ValueError": 1, - "__pyx_k__n_features": 1, - "__pyx_k__q_data_ptr": 1, - "__pyx_k__weight_neg": 1, - "__pyx_k__weight_pos": 1, - "__pyx_k__x_data_ptr": 1, - "__pyx_k__RuntimeError": 1, - "__pyx_k__class_weight": 1, - "__pyx_k__penalty_type": 1, - "__pyx_k__fit_intercept": 1, - "__pyx_k__learning_rate": 1, - "__pyx_k__sample_weight": 1, - "__pyx_k__intercept_decay": 1, - "__pyx_k__NotImplementedError": 1, - "*__pyx_kp_s_1": 1, - "*__pyx_kp_u_10": 1, - "*__pyx_kp_u_12": 1, - "*__pyx_kp_u_13": 1, - "*__pyx_kp_u_16": 1, - "*__pyx_kp_s_2": 1, - "*__pyx_kp_s_20": 1, - "*__pyx_n_s_21": 1, - "*__pyx_kp_s_3": 1, - "*__pyx_kp_s_4": 1, - "*__pyx_kp_u_6": 1, - "*__pyx_kp_u_8": 1, - "*__pyx_n_s__C": 1, - "*__pyx_n_s__NotImplementedError": 1, - "*__pyx_n_s__RuntimeError": 1, - "*__pyx_n_s__ValueError": 1, - "*__pyx_n_s____main__": 1, - "*__pyx_n_s____test__": 1, - "*__pyx_n_s__alpha": 1, - "*__pyx_n_s__any": 1, - "*__pyx_n_s__c": 1, - "*__pyx_n_s__class_weight": 1, - "*__pyx_n_s__count": 1, - "*__pyx_n_s__dataset": 1, - "*__pyx_n_s__dloss": 1, - "*__pyx_n_s__dtype": 1, - "*__pyx_n_s__epoch": 1, - "*__pyx_n_s__epsilon": 1, - "*__pyx_n_s__eta": 1, - "*__pyx_n_s__eta0": 1, - "*__pyx_n_s__fit_intercept": 1, - "*__pyx_n_s__float64": 1, - "*__pyx_n_s__i": 1, - "*__pyx_n_s__intercept": 1, - "*__pyx_n_s__intercept_decay": 1, - "*__pyx_n_s__is_hinge": 1, - "*__pyx_n_s__isinf": 1, - "*__pyx_n_s__isnan": 1, - "*__pyx_n_s__learning_rate": 1, - "*__pyx_n_s__loss": 1, - "*__pyx_n_s__n_features": 1, - "*__pyx_n_s__n_iter": 1, - "*__pyx_n_s__n_samples": 1, - "*__pyx_n_s__nonzero": 1, - "*__pyx_n_s__np": 1, - "*__pyx_n_s__numpy": 1, - "*__pyx_n_s__order": 1, - "*__pyx_n_s__p": 1, - "*__pyx_n_s__penalty_type": 1, - "*__pyx_n_s__plain_sgd": 1, - "*__pyx_n_s__power_t": 1, - "*__pyx_n_s__q": 1, - "*__pyx_n_s__q_data_ptr": 1, - "*__pyx_n_s__range": 1, - "*__pyx_n_s__rho": 1, - "*__pyx_n_s__sample_weight": 1, - "*__pyx_n_s__seed": 1, - "*__pyx_n_s__shape": 1, - "*__pyx_n_s__shuffle": 1, - "*__pyx_n_s__sumloss": 1, - "*__pyx_n_s__sys": 1, - "*__pyx_n_s__t": 1, - "*__pyx_n_s__t_start": 1, - "*__pyx_n_s__threshold": 1, - "*__pyx_n_s__time": 1, - "*__pyx_n_s__u": 1, - "*__pyx_n_s__update": 1, - "*__pyx_n_s__verbose": 1, - "*__pyx_n_s__w": 1, - "*__pyx_n_s__weight_neg": 1, - "*__pyx_n_s__weight_pos": 1, - "*__pyx_n_s__weights": 1, - "*__pyx_n_s__x_data_ptr": 1, - "*__pyx_n_s__x_ind_ptr": 1, - "*__pyx_n_s__xnnz": 1, - "*__pyx_n_s__y": 1, - "*__pyx_n_s__zeros": 1, - "*__pyx_int_15": 1, - "*__pyx_k_tuple_5": 1, - "*__pyx_k_tuple_7": 1, - "*__pyx_k_tuple_9": 1, - "*__pyx_k_tuple_11": 1, - "*__pyx_k_tuple_14": 1, - "*__pyx_k_tuple_15": 1, - "*__pyx_k_tuple_17": 1, - "*__pyx_k_tuple_18": 1, - "*__pyx_k_codeobj_19": 1, - "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_1loss": 3, - "*__pyx_args": 9, - "*__pyx_kwds": 9, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, - "__pyx_skip_dispatch": 6, - "__pyx_r": 39, - "*__pyx_t_1": 6, - "*__pyx_t_2": 3, - "*__pyx_t_3": 3, - "*__pyx_t_4": 3, - "__pyx_t_5": 12, - "__pyx_v_self": 15, - "tp_dictoffset": 3, - "__pyx_t_1": 69, - "PyObject_GetAttr": 3, - "__pyx_n_s__loss": 2, - "__pyx_filename": 51, - "__pyx_f": 42, - "__pyx_L1_error": 33, - "PyCFunction_Check": 3, - "PyCFunction_GET_FUNCTION": 3, - "PyCFunction": 3, - "__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_1loss": 1, - "__pyx_t_2": 21, - "PyFloat_FromDouble": 9, - "__pyx_t_3": 39, - "__pyx_t_4": 27, - "PyTuple_New": 3, - "PyTuple_SET_ITEM": 6, - "PyObject_Call": 6, - "PyErr_Occurred": 9, - "__pyx_L0": 18, - "__pyx_builtin_NotImplementedError": 3, - "__pyx_empty_tuple": 3, - "__pyx_doc_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, - "*__pyx_r": 6, - "**__pyx_pyargnames": 3, - "__pyx_n_s__p": 6, - "__pyx_n_s__y": 6, - "values": 30, - "__pyx_kwds": 15, - "kw_args": 15, - "pos_args": 12, - "__pyx_args": 21, - "__pyx_L5_argtuple_error": 12, - "PyDict_Size": 3, - "PyDict_GetItem": 6, - "__pyx_L3_error": 18, - "__pyx_pyargnames": 3, - "__pyx_L4_argument_unpacking_done": 6, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, - "__pyx_vtab": 2, - "loss": 1, - "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_3dloss": 3, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_12LossFunction_dloss": 1, - "__pyx_n_s__dloss": 1, - "__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_3dloss": 1, - "__pyx_doc_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 1, - "dloss": 1, - "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_10Regression_1loss": 3, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 1, - "__pyx_pw_7sklearn_12linear_model_8sgd_fast_10Regression_1loss": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 1, - "__pyx_base.__pyx_vtab": 1, - "__pyx_base.loss": 1, - "ULLONG_MAX": 10, - "MIN": 3, - "SET_ERRNO": 47, - "e": 4, - "parser": 334, - "CALLBACK_NOTIFY_": 3, - "FOR": 11, - "ER": 4, - "HPE_OK": 10, - "settings": 6, - "on_##FOR": 4, - "HPE_CB_##FOR": 2, - "CALLBACK_NOTIFY": 10, - "CALLBACK_NOTIFY_NOADVANCE": 2, - "CALLBACK_DATA_": 4, - "LEN": 2, - "FOR##_mark": 7, - "CALLBACK_DATA": 10, - "CALLBACK_DATA_NOADVANCE": 6, - "MARK": 7, - "PROXY_CONNECTION": 4, - "CONNECTION": 4, - "CONTENT_LENGTH": 4, - "TRANSFER_ENCODING": 4, - "UPGRADE": 4, - "CHUNKED": 4, - "KEEP_ALIVE": 4, - "CLOSE": 4, - "*method_strings": 1, - "#string": 1, - "unhex": 3, - "normal_url_char": 3, - "T": 3, - "s_dead": 10, - "s_start_req_or_res": 4, - "s_res_or_resp_H": 3, - "s_start_res": 5, - "s_res_H": 3, - "s_res_HT": 4, - "s_res_HTT": 3, - "s_res_HTTP": 3, - "s_res_first_http_major": 3, - "s_res_http_major": 3, - "s_res_first_http_minor": 3, - "s_res_http_minor": 3, - "s_res_first_status_code": 3, - "s_res_status_code": 3, - "s_res_status": 3, - "s_res_line_almost_done": 4, - "s_start_req": 6, - "s_req_method": 4, - "s_req_spaces_before_url": 5, - "s_req_schema": 6, - "s_req_schema_slash": 6, - "s_req_schema_slash_slash": 6, - "s_req_host_start": 8, - "s_req_host_v6_start": 7, - "s_req_host_v6": 7, - "s_req_host_v6_end": 7, - "s_req_host": 8, - "s_req_port_start": 7, - "s_req_port": 6, - "s_req_path": 8, - "s_req_query_string_start": 8, - "s_req_query_string": 7, - "s_req_fragment_start": 7, - "s_req_fragment": 7, - "s_req_http_start": 3, - "s_req_http_H": 3, - "s_req_http_HT": 3, - "s_req_http_HTT": 3, - "s_req_http_HTTP": 3, - "s_req_first_http_major": 3, - "s_req_http_major": 3, - "s_req_first_http_minor": 3, - "s_req_http_minor": 3, - "s_req_line_almost_done": 4, - "s_header_field_start": 12, - "s_header_field": 4, - "s_header_value_start": 4, - "s_header_value": 5, - "s_header_value_lws": 3, - "s_header_almost_done": 6, - "s_chunk_size_start": 4, - "s_chunk_size": 3, - "s_chunk_parameters": 3, - "s_chunk_size_almost_done": 4, - "s_headers_almost_done": 4, - "s_headers_done": 4, - "s_chunk_data": 3, - "s_chunk_data_almost_done": 3, - "s_chunk_data_done": 3, - "s_body_identity": 3, - "s_body_identity_eof": 4, - "s_message_done": 3, - "PARSING_HEADER": 2, - "header_states": 1, - "h_general": 23, - "0": 11, - "h_C": 3, - "h_CO": 3, - "h_CON": 3, - "h_matching_connection": 3, - "h_matching_proxy_connection": 3, - "h_matching_content_length": 3, - "h_matching_transfer_encoding": 3, - "h_matching_upgrade": 3, - "h_connection": 6, - "h_content_length": 5, - "h_transfer_encoding": 5, - "h_upgrade": 4, - "h_matching_transfer_encoding_chunked": 3, - "h_matching_connection_keep_alive": 3, - "h_matching_connection_close": 3, - "h_transfer_encoding_chunked": 4, - "h_connection_keep_alive": 4, - "h_connection_close": 4, - "Macros": 1, - "classes": 1, - "depends": 1, - "define": 14, - "CR": 18, - "LF": 21, - "LOWER": 7, - "0x20": 1, - "IS_ALPHA": 5, - "IS_NUM": 14, - "9": 1, - "IS_ALPHANUM": 3, - "IS_HEX": 2, - "TOKEN": 4, - "IS_URL_CHAR": 6, - "IS_HOST_CHAR": 4, - "0x80": 1, - "_": 3, - "endif": 6, - "start_state": 1, - "cond": 1, - "HPE_STRICT": 1, - "HTTP_STRERROR_GEN": 3, - "#n": 1, - "*description": 1, - "http_strerror_tab": 7, - "http_message_needs_eof": 4, - "parse_url_char": 5, - "ch": 145, - "unhex_val": 7, - "*header_field_mark": 1, - "*header_value_mark": 1, - "*url_mark": 1, - "*body_mark": 1, - "message_complete": 7, - "HPE_INVALID_EOF_STATE": 1, - "header_field_mark": 2, - "header_value_mark": 2, - "url_mark": 2, - "HPE_HEADER_OVERFLOW": 1, - "reexecute_byte": 7, - "HPE_CLOSED_CONNECTION": 1, - "message_begin": 3, - "HPE_INVALID_CONSTANT": 3, - "HTTP_HEAD": 2, - "STRICT_CHECK": 15, - "HPE_INVALID_VERSION": 12, - "HPE_INVALID_STATUS": 3, - "HPE_INVALID_METHOD": 4, - "HTTP_CONNECT": 4, - "HTTP_DELETE": 1, - "HTTP_GET": 1, - "HTTP_LOCK": 1, - "HTTP_MKCOL": 2, - "HTTP_NOTIFY": 1, - "HTTP_OPTIONS": 1, - "HTTP_POST": 2, - "HTTP_REPORT": 1, - "HTTP_SUBSCRIBE": 2, - "HTTP_TRACE": 1, - "HTTP_UNLOCK": 2, - "*matcher": 1, - "matcher": 3, - "method_strings": 2, - "HTTP_CHECKOUT": 1, - "HTTP_COPY": 1, - "HTTP_MOVE": 1, - "HTTP_MERGE": 1, - "HTTP_MSEARCH": 1, - "HTTP_MKACTIVITY": 1, - "HTTP_SEARCH": 1, - "HTTP_PROPFIND": 2, - "HTTP_PUT": 2, - "HTTP_PATCH": 1, - "HTTP_PURGE": 1, - "HTTP_UNSUBSCRIBE": 1, - "HTTP_PROPPATCH": 1, - "url": 4, - "HPE_INVALID_URL": 4, - "HPE_LF_EXPECTED": 1, - "HPE_INVALID_HEADER_TOKEN": 2, - "header_field": 5, - "header_value": 6, - "HPE_INVALID_CONTENT_LENGTH": 4, - "NEW_MESSAGE": 6, - "HPE_CB_headers_complete": 1, - "to_read": 6, - "body": 6, - "body_mark": 2, - "HPE_INVALID_CHUNK_SIZE": 2, - "HPE_INVALID_INTERNAL_STATE": 1, - "HPE_UNKNOWN": 1, - "Does": 1, - "find": 1, - "http_method_str": 1, - "http_errno_name": 1, - ".name": 1, - "http_errno_description": 1, - ".description": 1, - "uf": 14, - "old_uf": 4, - ".off": 2, - "strtoul": 2, - "xffff": 1, - "HPE_PAUSED": 2, - "": 1, - "READ_VSNPRINTF_ARGS": 5, - "rfUTF8_VerifySequence": 7, - "RF_FAILURE": 24, - "RE_STRING_INIT_FAILURE": 8, - "buffAllocated": 11, - "RF_OPTION_SOURCE_ENCODING": 30, - "characterLength": 16, - "*codepoints": 2, - "rfLMS_MacroEvalPtr": 2, - "RF_LMS": 6, - "RF_UTF16_LE": 9, - "RF_UTF16_BE": 7, - "codepoints": 44, - "i/2": 2, - "RF_UTF32_LE": 3, - "RF_UTF32_BE": 3, - "UTF16": 4, - "rfUTF16_Decode": 5, - "rfUTF16_Decode_swap": 5, - "RF_UTF16_BE//": 2, - "RF_UTF32_LE//": 2, - "copy": 4, - "UTF32": 4, - "into": 8, - "RF_UTF32_BE//": 2, - "": 2, - "in": 11, - "encode": 2, - "rfUTF8_Encode": 4, - "While": 2, - "attempting": 2, - "create": 2, - "sequence": 6, - "could": 2, - "properly": 2, - "encoded": 2, - "RE_UTF8_ENCODING": 2, - "End": 2, - "Non": 2, - "code=": 2, - "normally": 1, - "here": 5, - "buffer": 10, - "validity": 2, - "get": 4, - "Error": 2, - "Allocation": 2, - "due": 2, - "invalid": 2, - "rfLMS_Push": 4, - "Memory": 4, - "allocation": 3, - "Local": 2, - "Stack": 2, - "failed": 2, - "Insufficient": 2, - "space": 4, - "Consider": 2, - "compiling": 2, - "bigger": 3, - "Quitting": 2, - "proccess": 2, - "RE_LOCALMEMSTACK_INSUFFICIENT": 8, - "during": 1, - "RF_HEXLE_UI": 8, - "RF_HEXGE_UI": 6, - "ffff": 4, - "xFC0": 4, - "xF000": 2, - "xE": 2, - "F000": 2, - "C0000": 2, - "RE_UTF8_INVALID_CODE_POINT": 2, - "numLen": 8, - "max": 4, - "most": 3, - "environment": 3, - "so": 4, - "chars": 3, - "will": 3, - "certainly": 3, - "fit": 3, - "strcpy": 4, - "utf8ByteLength": 34, - "last": 1, - "utf": 1, - "null": 4, - "termination": 3, - "byteLength*2": 1, - "allocate": 1, - "same": 1, - "different": 1, - "RE_INPUT": 1, - "ends": 3, - "codeBuffer": 9, - "xFEFF": 1, - "big": 14, - "endian": 20, - "xFFFE0000": 1, - "little": 7, - "according": 1, - "standard": 1, - "BOM": 1, - "means": 1, - "rfUTF32_Length": 1, - "sourceP": 2, - "RF_REALLOC": 9, - "<5)>": 1, - "bytesWritten": 2, - "charsN": 5, - "rfUTF8_Decode": 2, - "rfUTF16_Encode": 1, - "RF_STRING_ITERATE_START": 9, - "RF_STRING_ITERATE_END": 9, - "codePoint": 18, - "thisstrP": 32, - "charPos": 8, - "byteI": 7, - "s1P": 2, - "s2P": 2, - "sstrP": 6, - "optionsP": 11, - "*optionsP": 8, - "RF_BITFLAG_ON": 5, - "strstr": 2, - "": 1, - "0x5a": 1, - "0x7a": 1, - "substring": 5, - "search": 1, - "zero": 2, - "equals": 1, - "then": 1, - "okay": 1, - "ERANGE": 1, - "RE_STRING_TOFLOAT_UNDERFLOW": 1, - "RE_STRING_TOFLOAT": 1, - "srcP": 6, - "bytePos": 23, - "terminate": 1, - "afterstrP": 2, - "sscanf": 1, - "<=0)>": 1, - "Counts": 1, - "how": 1, - "many": 1, - "times": 1, - "occurs": 1, - "sstr2": 2, - "move": 12, - "rfString_FindBytePos": 10, - "*tokensN": 1, - "lstrP": 1, - "rstrP": 5, - "parNP": 6, - "*parNP": 2, - "minPos": 17, - "thisPos": 8, - "argList": 8, - "va_arg": 2, - "afterP": 2, - "minPosLength": 3, - "go": 8, - "otherP": 4, - "strncat": 1, - "goes": 1, - "numberP": 1, - "*numberP": 1, - "occurences": 5, - "done": 1, - "<=thisstr->": 1, - "keepstrP": 2, - "keepLength": 2, - "charValue": 12, - "*keepChars": 1, - "charBLength": 5, - "keepChars": 4, - "*keepLength": 1, - "": 1, - "does": 1, - "back": 1, - "cover": 1, - "effectively": 1, - "gets": 1, - "deleted": 1, - "rfUTF8_FromCodepoint": 1, - "kind": 1, - "non": 1, - "clean": 1, - "way": 1, - "internally": 1, - "uses": 1, - "variable": 1, - "use": 1, - "determine": 1, - "current": 5, - "backs": 1, - "memmove": 2, - "by": 1, - "contiuing": 1, - "sure": 2, - "position": 1, - "won": 1, - "array": 1, - "nBytePos": 23, - "RF_STRING_ITERATEB_START": 2, - "RF_STRING_ITERATEB_END": 2, - "pBytePos": 15, - "indexing": 1, - "works": 1, - "pbytePos": 2, - "pth": 2, - "got": 1, - "numP": 1, - "*numP": 1, - "just": 1, - "finding": 1, - "foundN": 10, - "bSize": 4, - "bytePositions": 17, - "bSize*sizeof": 1, - "rfStringX_FromString_IN": 1, - "temp.bIndex": 2, - "temp.bytes": 1, - "temp.byteLength": 1, - "rfStringX_Deinit": 1, - "replace": 3, - "removed": 2, - "one": 2, - "orSize": 5, - "nSize": 4, - "number*diff": 1, - "strncpy": 3, - "smaller": 1, - "diff*number": 1, - "remove": 1, - "equal": 1, - "subP": 7, - "RF_String*sub": 2, - "noMatch": 8, - "*subValues": 2, - "subLength": 6, - "subValues": 8, - "*subLength": 2, - "lastBytePos": 4, - "testity": 2, - "res1": 2, - "res2": 2, - "unused": 3, - "FILE*f": 2, - "utf8BufferSize": 4, - "char*utf8": 3, - "<0)>": 1, - "Failure": 1, - "initialize": 1, - "reading": 1, - "Little": 1, - "Endian": 1, - "32": 1, - "bytesN=": 1, - "sP": 2, - "encodingP": 1, - "*utf32": 1, - "utf16": 11, - "*encodingP": 1, - "fwrite": 5, - "logging": 5, - "utf32": 10, - "i_WRITE_CHECK": 1, - "RE_FILE_WRITE": 1, - "strncasecmp": 2, - "_strnicmp": 1, - "REF_TABLE_SIZE": 1, - "BUFFER_BLOCK": 5, - "BUFFER_SPAN": 9, - "MKD_LI_END": 1, - "gperf_case_strncmp": 1, - "GPERF_DOWNCASE": 1, - "GPERF_CASE_STRNCMP": 1, - "link_ref": 2, - "*link": 1, - "*title": 1, - "sd_markdown": 6, - "tag": 1, - "tag_len": 3, - "w": 6, - "is_empty": 4, - "htmlblock_end": 3, - "*curtag": 2, - "*rndr": 4, - "start_of_line": 2, - "tag_size": 3, - "curtag": 8, - "end_tag": 4, - "block_lines": 3, - "htmlblock_end_tag": 1, - "rndr": 25, - "parse_htmlblock": 1, - "*ob": 3, - "do_render": 4, - "tag_end": 7, - "work": 4, - "find_block_tag": 1, - "work.size": 5, - "cb.blockhtml": 6, - "opaque": 8, - "parse_table_row": 1, - "columns": 3, - "*col_data": 1, - "header_flag": 3, - "col": 9, - "*row_work": 1, - "cb.table_cell": 3, - "cb.table_row": 2, - "row_work": 4, - "rndr_newbuf": 2, - "cell_start": 5, - "cell_end": 6, - "*cell_work": 1, - "cell_work": 3, - "_isspace": 3, - "parse_inline": 1, - "col_data": 2, - "rndr_popbuf": 2, - "empty_cell": 2, - "parse_table_header": 1, - "*columns": 2, - "**column_data": 1, - "header_end": 7, - "under_end": 1, - "*column_data": 1, - "calloc": 1, - "beg": 10, - "doc_size": 6, - "document": 9, - "UTF8_BOM": 1, - "is_ref": 1, - "md": 18, - "refs": 2, - "expand_tabs": 1, - "bufputc": 2, - "bufgrow": 1, - "MARKDOWN_GROW": 1, - "cb.doc_header": 2, - "parse_block": 1, - "cb.doc_footer": 2, - "bufrelease": 3, - "free_link_refs": 1, - "work_bufs": 8, - ".size": 2, - "sd_markdown_free": 1, - "*md": 1, - ".asize": 2, - ".item": 2, - "stack_free": 2, - "sd_version": 1, - "*ver_major": 2, - "*ver_minor": 2, - "*ver_revision": 2, - "SUNDOWN_VER_MAJOR": 1, - "SUNDOWN_VER_MINOR": 1, - "SUNDOWN_VER_REVISION": 1, - "ATSHOME_LIBATS_DYNARRAY_CATS": 3, - "atslib_dynarray_memcpy": 1, - "atslib_dynarray_memmove": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "CONFIG_SMP": 1, - "DEFINE_MUTEX": 1, - "cpu_add_remove_lock": 3, - "cpu_maps_update_begin": 9, - "mutex_lock": 5, - "cpu_maps_update_done": 9, - "mutex_unlock": 6, - "RAW_NOTIFIER_HEAD": 1, - "cpu_chain": 4, - "cpu_hotplug_disabled": 7, - "CONFIG_HOTPLUG_CPU": 2, - "task_struct": 5, - "*active_writer": 1, - "mutex": 1, - "lock": 6, - "cpu_hotplug": 1, - ".active_writer": 1, - ".lock": 1, - "__MUTEX_INITIALIZER": 1, - "cpu_hotplug.lock": 8, - ".refcount": 1, - "get_online_cpus": 2, - "might_sleep": 1, - "cpu_hotplug.active_writer": 6, - "cpu_hotplug.refcount": 3, - "EXPORT_SYMBOL_GPL": 4, - "put_online_cpus": 2, - "wake_up_process": 1, - "cpu_hotplug_begin": 4, - "__set_current_state": 1, - "TASK_UNINTERRUPTIBLE": 1, - "schedule": 1, - "cpu_hotplug_done": 4, - "__ref": 6, - "register_cpu_notifier": 2, - "notifier_block": 3, - "*nb": 3, - "raw_notifier_chain_register": 1, - "nb": 2, - "__cpu_notify": 6, - "*v": 3, - "nr_to_call": 2, - "*nr_calls": 1, - "__raw_notifier_call_chain": 1, - "nr_calls": 9, - "notifier_to_errno": 1, - "cpu_notify": 5, - "cpu_notify_nofail": 4, - "BUG_ON": 4, - "EXPORT_SYMBOL": 8, - "unregister_cpu_notifier": 2, - "raw_notifier_chain_unregister": 1, - "clear_tasks_mm_cpumask": 1, - "cpu": 57, - "WARN_ON": 1, - "cpu_online": 5, - "rcu_read_lock": 1, - "for_each_process": 2, - "find_lock_task_mm": 1, - "cpumask_clear_cpu": 5, - "mm_cpumask": 1, - "mm": 1, - "task_unlock": 1, - "rcu_read_unlock": 1, - "check_for_tasks": 2, - "write_lock_irq": 1, - "tasklist_lock": 2, - "task_cpu": 1, - "TASK_RUNNING": 1, - "utime": 1, - "stime": 1, - "printk": 12, - "KERN_WARNING": 3, - "comm": 1, - "task_pid_nr": 1, - "write_unlock_irq": 1, - "take_cpu_down_param": 3, - "mod": 13, - "*hcpu": 3, - "take_cpu_down": 2, - "*_param": 1, - "*param": 1, - "_param": 1, - "__cpu_disable": 1, - "CPU_DYING": 1, - "param": 2, - "hcpu": 10, - "_cpu_down": 3, - "tasks_frozen": 4, - "CPU_TASKS_FROZEN": 2, - "tcd_param": 2, - ".mod": 1, - ".hcpu": 1, - "num_online_cpus": 2, - "EBUSY": 3, - "CPU_DOWN_PREPARE": 1, - "CPU_DOWN_FAILED": 2, - "__func__": 2, - "out_release": 3, - "__stop_machine": 1, - "cpumask_of": 1, - "idle_cpu": 1, - "cpu_relax": 1, - "__cpu_die": 1, - "CPU_DEAD": 1, - "CPU_POST_DEAD": 1, - "cpu_down": 2, - "__cpuinit": 3, - "_cpu_up": 3, - "*idle": 1, - "cpu_present": 1, - "idle": 4, - "idle_thread_get": 1, - "IS_ERR": 1, - "PTR_ERR": 1, - "CPU_UP_PREPARE": 1, - "out_notify": 3, - "__cpu_up": 1, - "CPU_ONLINE": 1, - "CPU_UP_CANCELED": 1, - "cpu_up": 2, - "CONFIG_MEMORY_HOTPLUG": 2, - "nid": 5, - "pg_data_t": 1, - "*pgdat": 1, - "cpu_possible": 1, - "KERN_ERR": 5, - "CONFIG_IA64": 1, - "cpu_to_node": 1, - "node_online": 1, - "mem_online_node": 1, - "pgdat": 3, - "NODE_DATA": 1, - "node_zonelists": 1, - "_zonerefs": 1, - "zone": 1, - "zonelists_mutex": 2, - "build_all_zonelists": 1, - "CONFIG_PM_SLEEP_SMP": 2, - "cpumask_var_t": 1, - "frozen_cpus": 9, - "__weak": 4, - "arch_disable_nonboot_cpus_begin": 2, - "arch_disable_nonboot_cpus_end": 2, - "disable_nonboot_cpus": 1, - "first_cpu": 3, - "cpumask_first": 1, - "cpu_online_mask": 3, - "cpumask_clear": 2, - "for_each_online_cpu": 1, - "cpumask_set_cpu": 5, - "arch_enable_nonboot_cpus_begin": 2, - "arch_enable_nonboot_cpus_end": 2, - "enable_nonboot_cpus": 1, - "cpumask_empty": 1, - "KERN_INFO": 2, - "for_each_cpu": 1, - "__init": 2, - "alloc_frozen_cpus": 2, - "alloc_cpumask_var": 1, - "GFP_KERNEL": 1, - "__GFP_ZERO": 1, - "core_initcall": 2, - "cpu_hotplug_disable_before_freeze": 2, - "cpu_hotplug_enable_after_thaw": 2, - "cpu_hotplug_pm_callback": 2, - "action": 2, - "*ptr": 1, - "PM_SUSPEND_PREPARE": 1, - "PM_HIBERNATION_PREPARE": 1, - "PM_POST_SUSPEND": 1, - "PM_POST_HIBERNATION": 1, - "NOTIFY_DONE": 1, - "NOTIFY_OK": 1, - "cpu_hotplug_pm_sync_init": 2, - "pm_notifier": 1, - "notify_cpu_starting": 1, - "CPU_STARTING": 1, - "cpumask_test_cpu": 1, - "CPU_STARTING_FROZEN": 1, - "MASK_DECLARE_1": 3, - "UL": 1, - "MASK_DECLARE_2": 3, - "MASK_DECLARE_4": 3, - "MASK_DECLARE_8": 9, - "cpu_bit_bitmap": 2, - "BITS_PER_LONG": 2, - "BITS_TO_LONGS": 1, - "NR_CPUS": 2, - "DECLARE_BITMAP": 6, - "cpu_all_bits": 2, - "CPU_BITS_ALL": 2, - "CONFIG_INIT_ALL_POSSIBLE": 1, - "cpu_possible_bits": 6, - "CONFIG_NR_CPUS": 5, - "__read_mostly": 5, - "cpumask": 7, - "*const": 4, - "cpu_possible_mask": 2, - "to_cpumask": 15, - "cpu_online_bits": 5, - "cpu_present_bits": 5, - "cpu_present_mask": 2, - "cpu_active_bits": 4, - "cpu_active_mask": 2, - "set_cpu_possible": 1, - "possible": 2, - "set_cpu_present": 1, - "present": 2, - "set_cpu_online": 1, - "online": 2, - "set_cpu_active": 1, - "active": 2, - "init_cpu_present": 1, - "*src": 3, - "cpumask_copy": 3, - "init_cpu_possible": 1, - "init_cpu_online": 1, - "HELLO_H": 2, - "hello": 1, - "*check_commit": 1, - "OBJ_COMMIT": 5, - "deref_tag": 1, - "parse_object": 1, - "check_commit": 2, - "lookup_commit_reference_gently": 1, - "lookup_commit_reference": 2, - "ref_name": 2, - "hashcmp": 2, - "object.sha1": 8, - "warning": 1, - "alloc_commit_node": 1, - "get_sha1": 1, - "parse_commit_date": 2, - "*tail": 2, - "*dateptr": 1, - "tail": 12, - "dateptr": 2, - "**commit_graft": 1, - "commit_graft_alloc": 4, - "commit_graft_nr": 5, - "commit_graft_pos": 2, - "lo": 6, - "hi": 5, - "mi": 5, - "*graft": 3, - "graft": 10, - "ignore_dups": 2, - "pos": 7, - "alloc_nr": 1, - "*bufptr": 1, - "**pptr": 1, - "bufptr": 12, - "46": 1, - "5": 1, - "45": 1, - "bogus": 1, - "get_sha1_hex": 2, - "lookup_tree": 1, - "pptr": 5, - "lookup_commit_graft": 1, - "*new_parent": 2, - "48": 1, - "7": 1, - "47": 1, - "bad": 1, - "grafts_replace_parents": 1, - "new_parent": 6, - "lookup_commit": 2, - "commit_list_insert": 2, - "object_type": 1, - "read_sha1_file": 1, - "*eol": 1, - "commit_buffer": 1, - "b_date": 3, - "a_date": 2, - "*commit_list_get_next": 1, - "commit_list_set_next": 1, - "llist_mergesort": 1, - "peel_to_type": 1, - "*desc": 1, - "desc": 5, - "xmalloc": 2, - "strdup": 1, - "*new": 1, - "new": 4, - "syscalldef": 1, - "syscalldefs": 1, - "SYSCALL_OR_NUM": 3, - "SYS_restart_syscall": 1, - "MAKE_UINT16": 3, - "SYS_exit": 1, - "SYS_fork": 1, "yajl_status_to_string": 1, "yajl_status": 4, "statStr": 6, @@ -11073,32 +11098,7 @@ "verbose": 2, "yajl_render_error_string": 1, "yajl_get_bytes_consumed": 1, - "yajl_free_error": 1, - "git_cache_init": 1, - "git_cache": 4, - "*cache": 4, - "git_cached_obj_freeptr": 1, - "free_ptr": 2, - "git__size_t_powerof2": 1, - "cache": 26, - "size_mask": 6, - "lru_count": 1, - "free_obj": 4, - "git_mutex_init": 1, - "nodes": 10, - "git_cached_obj": 5, - "git_cache_free": 1, - "git_cached_obj_decref": 3, - "*git_cache_get": 1, - "*node": 2, - "*result": 1, - "git_mutex_lock": 2, - "node": 9, - "git_cached_obj_incref": 3, - "git_mutex_unlock": 2, - "*git_cache_try_store": 1, - "*_entry": 1, - "_entry": 1 + "yajl_free_error": 1 }, "C#": { "@": 1, @@ -11278,389 +11278,1652 @@ "Console.WriteLine": 2 }, "C++": { - "//": 315, - "#ifndef": 29, - "NINJA_METRICS_H_": 3, - "#define": 343, - "#include": 129, - "": 4, - "": 4, - "using": 11, - "namespace": 38, - "std": 53, - ";": 2783, - "For": 6, - "int64_t.": 1, - "///": 843, - "The": 50, - "Metrics": 2, - "module": 1, - "is": 102, - "used": 17, - "for": 105, - "the": 541, - "debug": 6, - "mode": 24, - "that": 36, - "dumps": 1, - "timing": 3, - "stats": 2, - "of": 215, - "various": 4, - "actions.": 1, - "To": 1, - "use": 37, - "see": 14, - "METRIC_RECORD": 4, - "below.": 1, - "A": 7, - "single": 2, - "metrics": 2, - "we": 10, - "ve": 4, - "hit": 1, - "code": 12, - "path.": 2, - "int": 218, - "count": 1, - "Total": 1, - "time": 10, - "(": 3102, - "in": 165, - "micros": 5, - ")": 3105, - "spent": 1, - "on": 55, - "int64_t": 3, - "sum": 1, - "}": 726, - "scoped": 1, - "object": 3, - "recording": 1, - "a": 157, - "metric": 2, - "across": 1, - "body": 1, - "function.": 3, - "Used": 2, - "by": 53, - "macro.": 1, - "struct": 13, - "ScopedMetric": 4, - "{": 726, - "explicit": 5, - "Metric*": 4, - "private": 16, - "metric_": 1, - "Timestamp": 1, - "when": 22, - "measurement": 2, - "started.": 1, - "Value": 24, - "platform": 2, - "-": 438, - "dependent.": 1, - "start_": 1, - "singleton": 2, - "stores": 3, - "and": 118, - "prints": 1, - "report.": 1, - "NewMetric": 2, - "const": 172, - "string": 24, - "&": 203, - "name": 25, - "Print": 2, - "summary": 1, - "report": 3, - "to": 254, - "stdout.": 1, - "void": 241, - "Report": 1, - "vector": 16, - "": 1, - "metrics_": 1, - "Get": 1, - "current": 26, - "as": 28, - "relative": 2, - "some": 4, - "epoch.": 1, - "Epoch": 1, - "varies": 1, - "between": 1, - "platforms": 1, - "only": 6, - "useful": 1, - "measuring": 1, - "elapsed": 1, - "time.": 1, - "GetTimeMillis": 1, - "simple": 1, - "stopwatch": 1, - "which": 14, - "returns": 4, - "seconds": 1, - "since": 3, - "Restart": 3, - "was": 6, - "called.": 1, - "Stopwatch": 2, - "public": 33, - "started_": 4, - "Seconds": 1, - "call.": 1, - "double": 25, - "Elapsed": 1, - "return": 240, - "e": 15, - "*": 183, - "static_cast": 14, - "": 1, - "Now": 4, - "uint64_t": 8, - "primary": 1, - "interface": 9, - "metrics.": 1, - "Use": 8, - "at": 20, - "top": 1, - "function": 19, - "get": 5, - "recorded": 1, - "each": 7, - "call": 4, - "static": 263, - "metrics_h_metric": 2, - "g_metrics": 3, - "NULL": 109, - "metrics_h_scoped": 1, - "extern": 72, - "Metrics*": 1, - "#endif": 110, - "": 2, - "rpc_init": 1, - "rpc_server_loop": 1, - "UTILS_H": 3, - "": 1, - "": 1, - "": 1, "class": 40, - "QTemporaryFile": 1, - "Utils": 4, - "showUsage": 1, - "messageHandler": 2, - "QtMsgType": 1, - "type": 7, + "Bar": 2, + "{": 726, + "protected": 4, "char": 127, - "*msg": 2, - "bool": 111, - "exceptionHandler": 2, - "char*": 24, - "dump_path": 1, - "minidump_id": 1, - "void*": 2, - "context": 8, - "succeeded": 2, - "QVariant": 1, - "coffee2js": 1, - "QString": 20, - "script": 1, - "injectJsInFrame": 2, - "jsFilePath": 5, - "libraryPath": 5, - "QWebFrame": 4, - "*targetFrame": 4, - "startingScript": 2, - "false": 48, - "Encoding": 3, - "jsFileEnc": 2, - "readResourceFileUtf8": 1, - "resourceFilePath": 1, - "loadJSForDebug": 2, - "autorun": 2, - "cleanupFromDebug": 1, - "findScript": 1, - "jsFromScriptFile": 1, - "scriptPath": 1, - "enc": 1, - "<": 255, + "*name": 6, + ";": 2783, + "public": 33, + "void": 241, + "hello": 2, + "(": 3102, + ")": 3105, + "}": 726, + "//": 315, + "///": 843, + "mainpage": 1, + "C": 6, + "library": 14, + "for": 105, + "Broadcom": 3, + "BCM": 14, + "as": 28, + "used": 17, + "in": 165, + "Raspberry": 6, + "Pi": 5, "This": 19, - "shouldn": 1, - "t": 15, + "is": 102, + "a": 157, + "RPi": 17, + ".": 16, + "It": 7, + "provides": 3, + "access": 17, + "to": 254, + "GPIO": 87, + "and": 118, + "other": 17, + "IO": 2, + "functions": 19, + "on": 55, + "the": 541, + "chip": 9, + "allowing": 3, + "pins": 40, + "pin": 90, + "IDE": 4, + "plug": 3, + "board": 2, + "so": 2, + "you": 29, + "can": 21, + "control": 17, + "interface": 9, + "with": 33, + "various": 4, + "external": 3, + "devices.": 1, + "reading": 3, + "digital": 2, + "inputs": 2, + "setting": 2, + "outputs": 1, + "using": 11, + "SPI": 44, + "I2C": 29, + "accessing": 2, + "system": 13, + "timers.": 1, + "Pin": 65, + "event": 3, + "detection": 2, + "supported": 3, + "by": 53, + "polling": 1, + "interrupts": 1, + "are": 36, + "not": 29, + "+": 80, + "compatible": 1, + "installs": 1, + "header": 7, + "file": 31, + "non": 2, + "-": 438, + "shared": 2, + "any": 23, + "Linux": 2, + "based": 4, + "distro": 1, + "but": 5, + "clearly": 1, + "no": 7, + "use": 37, + "except": 2, + "or": 44, + "another": 1, + "The": 50, + "version": 38, + "of": 215, + "package": 1, + "that": 36, + "this": 57, + "documentation": 3, + "refers": 1, "be": 35, - "instantiated": 1, - "QTemporaryFile*": 2, - "m_tempHarness": 1, - "We": 1, - "want": 5, + "downloaded": 1, + "from": 91, + "http": 11, + "//www.airspayce.com/mikem/bcm2835/bcm2835": 1, + "tar.gz": 1, + "You": 9, + "find": 2, + "latest": 2, + "at": 20, + "//www.airspayce.com/mikem/bcm2835": 1, + "Several": 1, + "example": 3, + "programs": 4, + "provided.": 1, + "Based": 1, + "data": 26, + "//elinux.org/RPi_Low": 1, + "level_peripherals": 1, + "//www.raspberrypi.org/wp": 1, + "content/uploads/2012/02/BCM2835": 1, + "ARM": 5, + "Peripherals.pdf": 1, + "//www.scribd.com/doc/101830961/GPIO": 2, + "Pads": 3, + "Control2": 2, + "also": 3, + "online": 1, + "help": 1, + "discussion": 1, + "//groups.google.com/group/bcm2835": 1, + "Please": 4, + "group": 23, + "all": 11, + "questions": 1, + "discussions": 1, + "topic.": 1, + "Do": 1, + "contact": 1, + "author": 3, + "directly": 2, + "unless": 1, + "it": 19, + "discuss": 1, + "commercial": 1, + "licensing.": 1, + "Tested": 1, + "debian6": 1, + "wheezy": 3, + "raspbian": 3, + "Occidentalisv01": 2, + "CAUTION": 1, + "has": 29, + "been": 14, + "observed": 1, + "when": 22, + "detect": 3, + "enables": 3, + "such": 4, + "bcm2835_gpio_len": 5, + "pulled": 1, + "LOW": 8, + "cause": 1, + "temporary": 1, + "hangs": 1, + "Occidentalisv01.": 1, + "Reason": 1, + "yet": 1, + "determined": 1, + "suspect": 1, + "an": 23, + "interrupt": 3, + "handler": 1, + "hitting": 1, + "hard": 1, + "loop": 2, + "those": 3, + "OSs.": 1, + "If": 11, + "must": 6, + "friends": 2, "make": 6, "sure": 6, - "clean": 2, - "up": 18, + "disable": 2, + "bcm2835_gpio_cler_len": 1, "after": 18, - "ourselves": 1, - "m_tempWrapper": 1, - "QSCIPRINTER_H": 2, - "#ifdef": 19, - "__APPLE__": 4, - "": 1, - "": 2, - "": 1, - "QT_BEGIN_NAMESPACE": 1, - "QRect": 2, - "QPainter": 2, - "QT_END_NAMESPACE": 1, - "QsciScintillaBase": 100, - "brief": 12, - "QsciPrinter": 9, - "sub": 2, - "Qt": 1, - "QPrinter": 3, - "able": 2, - "print": 5, - "text": 5, - "Scintilla": 2, - "document.": 8, - "can": 21, - "further": 1, - "classed": 1, - "alter": 2, - "layout": 1, - "adding": 2, - "headers": 3, - "footers": 2, - "example.": 1, - "QSCINTILLA_EXPORT": 2, - "Constructs": 1, - "printer": 1, - "paint": 1, - "device": 7, - "with": 33, - "mode.": 4, - "PrinterMode": 1, - "ScreenResolution": 1, - "Destroys": 1, - "instance.": 2, - "virtual": 10, - "Format": 1, - "page": 5, - "example": 3, - "before": 7, - "document": 16, - "drawn": 2, - "it.": 3, - "painter": 4, - "add": 3, - "customised": 2, - "graphics.": 2, - "drawing": 4, - "true": 49, - "if": 359, - "actually": 1, - "being": 4, - "rather": 2, - "than": 6, - "sized.": 1, - "methods": 2, - "must": 6, - "called": 13, - "true.": 2, - "area": 5, + "use.": 1, + "par": 9, + "Installation": 1, + "consists": 1, + "single": 2, + "which": 14, "will": 15, - "draw": 1, - "text.": 3, - "should": 10, - "modified": 3, - "it": 19, - "necessary": 1, - "reserve": 1, - "space": 2, - "any": 23, - "or": 44, - "By": 1, - "default": 14, - "printable": 1, - "page.": 13, - "setFullPage": 1, - "because": 2, - "calling": 9, - "printRange": 2, - "you": 29, - "try": 1, - "over": 1, - "whole": 2, - "pagenr": 2, - "number": 52, - "first": 13, - "numbered": 1, - "formatPage": 1, - "Return": 3, - "points": 2, - "font": 2, - "printing.": 2, - "sa": 30, - "setMagnification": 2, - "magnification": 3, - "mag": 2, - "Sets": 24, - "printing": 2, - "magnification.": 1, + "installed": 1, + "usual": 3, + "places": 1, + "install": 3, + "code": 12, + "#": 1, + "download": 2, + "say": 1, + "bcm2835": 7, + "xx.tar.gz": 2, + "then": 15, + "tar": 1, + "zxvf": 1, + "cd": 1, + "xx": 2, + "./configure": 1, + "sudo": 2, + "check": 4, + "endcode": 2, + "Physical": 21, + "Addresses": 6, + "bcm2835_peri_read": 3, + "bcm2835_peri_write": 3, + "bcm2835_peri_set_bits": 2, + "low": 5, + "level": 10, + "peripheral": 14, + "register": 17, + "functions.": 4, + "They": 1, + "designed": 3, + "physical": 4, + "addresses": 4, + "described": 1, + "section": 6, + "BCM2835": 2, + "Peripherals": 1, + "manual.": 1, "range": 3, - "lines": 3, - "from": 91, - "instance": 4, - "qsb.": 1, - "line": 11, - "negative": 2, - "value": 50, - "signifies": 2, - "last": 6, - "returned": 5, + "FFFFFF": 1, + "peripherals.": 1, + "bus": 4, + "peripherals": 2, + "set": 18, + "up": 18, + "map": 3, + "onto": 1, + "address": 13, + "starting": 1, + "E000000.": 1, + "Thus": 1, + "advertised": 1, + "manual": 8, + "Ennnnnn": 1, + "available": 6, + "nnnnnn.": 1, + "base": 8, + "registers": 12, + "following": 2, + "externals": 1, + "bcm2835_gpio": 2, + "bcm2835_pwm": 2, + "bcm2835_clk": 2, + "bcm2835_pads": 2, + "bcm2835_spio0": 1, + "bcm2835_st": 1, + "bcm2835_bsc0": 1, + "bcm2835_bsc1": 1, + "Numbering": 1, + "numbering": 1, + "different": 5, + "inconsistent": 1, + "underlying": 4, + "numbering.": 1, + "//elinux.org/RPi_BCM2835_GPIOs": 1, + "some": 4, + "well": 1, + "power": 1, + "ground": 1, + "pins.": 1, + "Not": 4, + "header.": 1, + "Version": 40, + "P5": 6, + "connector": 1, + "V": 2, + "Gnd.": 1, + "passed": 4, + "number": 52, + "_not_": 1, + "number.": 1, + "There": 1, + "symbolic": 1, + "definitions": 3, + "each": 7, + "should": 10, + "convenience.": 1, + "See": 7, + "ref": 32, + "RPiGPIOPin.": 22, + "Pins": 2, + "bcm2835_spi_*": 1, + "allow": 5, + "SPI0": 17, + "send": 3, + "received": 3, + "Serial": 3, + "Peripheral": 6, + "Interface": 2, + "For": 6, + "more": 4, + "information": 3, + "about": 6, + "see": 14, + "//en.wikipedia.org/wiki/Serial_Peripheral_Interface_Bus": 1, + "When": 12, + "bcm2835_spi_begin": 3, + "called": 13, + "changes": 2, + "bahaviour": 1, + "their": 6, + "default": 14, + "behaviour": 1, + "order": 14, + "support": 4, + "SPI.": 1, + "While": 1, + "able": 2, + "state": 33, + "through": 4, + "bcm2835_spi_gpio_write": 1, + "bcm2835_spi_end": 4, + "revert": 1, + "configured": 1, + "controled": 1, + "bcm2835_gpio_*": 1, + "calls.": 1, + "P1": 56, + "MOSI": 8, + "MISO": 6, + "CLK": 6, + "CE0": 5, + "CE1": 6, + "bcm2835_i2c_*": 2, + "BSC": 10, + "generically": 1, + "referred": 1, + "I": 4, + "//en.wikipedia.org/wiki/I": 1, + "%": 7, + "C2": 1, + "B2C": 1, + "V2": 2, + "SDA": 3, + "SLC": 1, + "Real": 1, + "Time": 1, + "performance": 2, + "constraints": 2, + "user": 3, + "i.e.": 1, + "they": 2, + "run": 2, + "Such": 1, + "part": 1, + "kernel": 4, + "usually": 2, + "subject": 1, + "paging": 1, + "swapping": 2, + "while": 17, + "does": 4, + "things": 1, + "besides": 1, + "running": 1, + "your": 12, + "program.": 1, + "means": 8, + "expect": 2, + "get": 5, + "real": 4, + "time": 10, + "timing": 3, + "programs.": 1, + "In": 2, + "particular": 1, "there": 4, - "no": 7, - "error.": 1, - "*qsb": 1, - "wrap": 4, - "QsciScintilla": 7, - "WrapWord.": 1, - "setWrapMode": 2, - "WrapMode": 3, - "wrapMode": 2, - "wmode.": 1, - "wmode": 1, - "operator": 10, - "#pragma": 3, - "once": 5, - "enum": 17, - "Field": 2, - "Free": 1, - "Black": 1, - "White": 1, - "Illegal": 1, + "guarantee": 1, + "bcm2835_delay": 5, + "bcm2835_delayMicroseconds": 6, + "return": 240, + "exactly": 2, + "requested.": 1, + "fact": 2, + "depending": 1, + "activity": 1, + "host": 1, + "etc": 1, + "might": 1, + "significantly": 1, + "longer": 1, + "delay": 9, + "times": 2, + "than": 6, + "one": 73, + "asked": 1, + "for.": 1, + "So": 1, + "please": 2, + "dont": 1, + "request.": 1, + "Arjan": 2, + "reports": 1, + "prevent": 4, + "fragment": 2, + "struct": 13, + "sched_param": 1, + "sp": 4, + "memset": 3, + "&": 203, + "sizeof": 15, + "sp.sched_priority": 1, + "sched_get_priority_max": 1, + "SCHED_FIFO": 2, + "sched_setscheduler": 1, + "mlockall": 1, + "MCL_CURRENT": 1, + "|": 40, + "MCL_FUTURE": 1, + "Open": 2, + "Source": 2, + "Licensing": 2, + "GPL": 2, + "appropriate": 7, + "option": 1, + "if": 359, + "want": 5, + "share": 2, + "source": 12, + "application": 2, + "everyone": 1, + "distribute": 1, + "give": 2, + "them": 1, + "right": 9, + "who": 1, + "uses": 4, + "it.": 3, + "wish": 2, + "software": 1, + "under": 2, + "contribute": 1, + "open": 6, + "community": 1, + "accordance": 1, + "distributed.": 1, + "//www.gnu.org/copyleft/gpl.html": 1, + "COPYING": 1, + "Acknowledgements": 1, + "Some": 1, + "inspired": 2, + "Dom": 1, + "Gert.": 1, + "Alan": 1, + "Barr.": 1, + "Revision": 1, + "History": 1, + "Initial": 1, + "release": 1, + "Minor": 1, + "bug": 1, + "fixes": 1, + "Added": 11, + "bcm2835_spi_transfern": 3, + "Fixed": 4, + "problem": 2, + "prevented": 1, + "being": 4, + "used.": 2, + "Reported": 5, + "David": 1, + "Robinson.": 1, + "bcm2835_close": 4, + "deinit": 1, + "library.": 3, + "Suggested": 1, + "sar": 1, + "Ortiz": 1, + "Document": 1, + "testing": 2, + "Functions": 1, + "bcm2835_gpio_ren": 3, + "bcm2835_gpio_fen": 3, + "bcm2835_gpio_hen": 3, + "bcm2835_gpio_aren": 3, + "bcm2835_gpio_afen": 3, + "now": 4, + "only": 6, + "specified.": 1, + "Other": 1, + "were": 1, + "already": 1, + "previously": 10, + "enabled": 4, + "stay": 1, + "enabled.": 1, + "bcm2835_gpio_clr_ren": 2, + "bcm2835_gpio_clr_fen": 2, + "bcm2835_gpio_clr_hen": 2, + "bcm2835_gpio_clr_len": 2, + "bcm2835_gpio_clr_aren": 2, + "bcm2835_gpio_clr_afen": 2, + "clear": 3, + "enable": 3, + "individual": 1, + "suggested": 3, + "Andreas": 1, + "Sundstrom.": 1, + "bcm2835_spi_transfernb": 2, + "buffers": 3, + "read": 21, + "write.": 1, + "Improvements": 3, + "barrier": 3, + "maddin.": 1, + "contributed": 1, + "mikew": 1, + "noticed": 1, + "was": 6, + "mallocing": 1, + "memory": 14, + "mmaps": 1, + "/dev/mem.": 1, + "ve": 4, + "removed": 1, + "mallocs": 1, + "frees": 1, + "found": 1, + "calling": 9, + "nanosleep": 7, + "takes": 1, + "least": 2, + "us.": 1, + "need": 6, + "link": 3, + "version.": 1, + "s": 26, + "doc": 1, + "Also": 1, + "added": 2, + "define": 2, + "passwrd": 1, + "value": 50, + "Gert": 1, + "says": 1, + "needed": 3, + "change": 3, + "pad": 4, + "settings.": 1, + "Changed": 1, + "names": 3, + "collisions": 1, + "wiringPi.": 1, + "Macros": 2, + "delayMicroseconds": 3, + "disabled": 2, + "defining": 1, + "BCM2835_NO_DELAY_COMPATIBILITY": 2, + "incorrect": 2, + "New": 6, + "mapping": 3, + "Hardware": 1, + "pointers": 2, + "initialisation": 2, + "externally": 1, + "bcm2835_spi0.": 1, + "Now": 4, + "compiles": 1, + "even": 2, + "CLOCK_MONOTONIC_RAW": 1, + "CLOCK_MONOTONIC": 3, + "instead.": 1, + "errors": 1, + "divider": 15, + "frequencies": 2, + "MHz": 14, + "clock.": 6, + "Ben": 1, + "Simpson.": 1, + "end": 23, + "examples": 1, + "Mark": 5, + "Wolfe.": 1, + "bcm2835_gpio_set_multi": 2, + "bcm2835_gpio_clr_multi": 2, + "bcm2835_gpio_write_multi": 4, + "mask": 20, + "once.": 1, + "Requested": 2, + "Sebastian": 2, + "Loncar.": 2, + "bcm2835_gpio_write_mask.": 1, + "Changes": 1, + "timer": 2, + "counter": 1, + "instead": 4, + "clock_gettime": 1, + "improved": 1, + "accuracy.": 1, + "No": 2, + "lrt": 1, + "now.": 1, + "Contributed": 1, + "van": 1, + "Vught.": 1, + "Removed": 1, + "inlines": 1, + "previous": 6, + "patch": 1, + "since": 3, + "don": 1, + "t": 15, + "seem": 1, + "work": 1, + "everywhere.": 1, + "olly.": 1, + "Patch": 2, + "Dootson": 2, + "close": 7, + "/dev/mem": 4, + "granted.": 1, + "susceptible": 1, + "bit": 19, + "overruns.": 1, + "courtesy": 1, + "Jeremy": 1, + "Mortis.": 1, + "definition": 3, + "BCM2835_GPFEN0": 2, + "broke": 1, + "ability": 1, + "falling": 4, + "edge": 8, + "events.": 1, + "Dootson.": 2, + "bcm2835_i2c_set_baudrate": 2, + "bcm2835_i2c_read_register_rs.": 1, + "bcm2835_i2c_read": 4, + "bcm2835_i2c_write": 4, + "fix": 1, + "ocasional": 1, + "reads": 2, + "completing.": 1, + "Patched": 1, + "p": 6, + "[": 293, + "atched": 1, + "his": 1, + "submitted": 1, + "high": 5, + "load": 1, + "processes.": 1, + "Updated": 1, + "distribution": 1, + "location": 6, + "details": 1, + "airspayce.com": 1, + "missing": 1, + "unmapmem": 1, + "pads": 7, + "leak.": 1, + "Hartmut": 1, + "Henkel.": 1, + "Mike": 1, + "McCauley": 1, + "mikem@airspayce.com": 1, + "DO": 1, + "NOT": 3, + "CONTACT": 1, + "THE": 2, + "AUTHOR": 1, + "DIRECTLY": 1, + "USE": 1, + "LISTS": 1, + "#ifndef": 29, + "BCM2835_H": 3, + "#define": 343, + "#include": 129, + "": 2, + "defgroup": 7, + "constants": 1, + "Constants": 1, + "passing": 1, + "values": 3, + "here": 1, + "@": 14, + "HIGH": 12, + "true": 49, + "volts": 2, + "pin.": 21, + "false": 48, + "Speed": 1, + "core": 1, + "clock": 21, + "core_clk": 1, + "BCM2835_CORE_CLK_HZ": 1, + "<": 255, + "Base": 17, + "Address": 10, + "BCM2835_PERI_BASE": 9, + "System": 10, + "Timer": 9, + "BCM2835_ST_BASE": 1, + "BCM2835_GPIO_PADS": 2, + "Clock/timer": 1, + "BCM2835_CLOCK_BASE": 1, + "BCM2835_GPIO_BASE": 6, + "BCM2835_SPI0_BASE": 1, + "BSC0": 2, + "BCM2835_BSC0_BASE": 1, + "PWM": 2, + "BCM2835_GPIO_PWM": 1, + "C000": 1, + "BSC1": 2, + "BCM2835_BSC1_BASE": 1, + "ST": 1, + "registers.": 10, + "Available": 8, + "bcm2835_init": 11, + "extern": 72, + "volatile": 13, + "uint32_t": 39, + "*bcm2835_st": 1, + "*bcm2835_gpio": 1, + "*bcm2835_pwm": 1, + "*bcm2835_clk": 1, + "PADS": 1, + "*bcm2835_pads": 1, + "*bcm2835_spi0": 1, + "*bcm2835_bsc0": 1, + "*bcm2835_bsc1": 1, + "Size": 2, + "page": 5, + "BCM2835_PAGE_SIZE": 1, + "*1024": 2, + "block": 7, + "BCM2835_BLOCK_SIZE": 1, + "offsets": 2, + "BCM2835_GPIO_BASE.": 1, + "Offsets": 1, + "into": 6, + "bytes": 29, + "per": 3, + "Register": 1, + "View": 1, + "BCM2835_GPFSEL0": 1, + "Function": 8, + "Select": 49, + "BCM2835_GPFSEL1": 1, + "BCM2835_GPFSEL2": 1, + "BCM2835_GPFSEL3": 1, + "c": 72, + "BCM2835_GPFSEL4": 1, + "BCM2835_GPFSEL5": 1, + "BCM2835_GPSET0": 1, + "Output": 6, + "Set": 2, + "BCM2835_GPSET1": 1, + "BCM2835_GPCLR0": 1, + "Clear": 18, + "BCM2835_GPCLR1": 1, + "BCM2835_GPLEV0": 1, + "Level": 2, + "BCM2835_GPLEV1": 1, + "BCM2835_GPEDS0": 1, + "Event": 11, + "Detect": 35, + "Status": 6, + "BCM2835_GPEDS1": 1, + "BCM2835_GPREN0": 1, + "Rising": 8, + "Edge": 16, + "Enable": 38, + "BCM2835_GPREN1": 1, + "Falling": 8, + "BCM2835_GPFEN1": 1, + "BCM2835_GPHEN0": 1, + "High": 4, + "BCM2835_GPHEN1": 1, + "BCM2835_GPLEN0": 1, + "Low": 5, + "BCM2835_GPLEN1": 1, + "BCM2835_GPAREN0": 1, + "Async.": 4, + "BCM2835_GPAREN1": 1, + "BCM2835_GPAFEN0": 1, + "BCM2835_GPAFEN1": 1, + "BCM2835_GPPUD": 1, + "Pull": 11, + "up/down": 10, + "BCM2835_GPPUDCLK0": 1, + "Clock": 11, + "BCM2835_GPPUDCLK1": 1, + "brief": 12, + "bcm2835PortFunction": 1, + "Port": 1, + "function": 19, + "select": 9, + "modes": 1, + "bcm2835_gpio_fsel": 2, "typedef": 50, - "Player": 1, + "enum": 17, + "BCM2835_GPIO_FSEL_INPT": 1, + "b000": 1, + "Input": 2, + "BCM2835_GPIO_FSEL_OUTP": 1, + "b001": 1, + "BCM2835_GPIO_FSEL_ALT0": 1, + "b100": 1, + "Alternate": 6, + "BCM2835_GPIO_FSEL_ALT1": 1, + "b101": 1, + "BCM2835_GPIO_FSEL_ALT2": 1, + "b110": 1, + "BCM2835_GPIO_FSEL_ALT3": 1, + "b111": 2, + "BCM2835_GPIO_FSEL_ALT4": 1, + "b011": 1, + "BCM2835_GPIO_FSEL_ALT5": 1, + "b010": 1, + "BCM2835_GPIO_FSEL_MASK": 1, + "bits": 11, + "bcm2835FunctionSelect": 2, + "bcm2835PUDControl": 4, + "Pullup/Pulldown": 1, + "defines": 3, + "bcm2835_gpio_pud": 5, + "BCM2835_GPIO_PUD_OFF": 1, + "b00": 1, + "Off": 3, + "pull": 1, + "BCM2835_GPIO_PUD_DOWN": 1, + "b01": 1, + "Down": 1, + "BCM2835_GPIO_PUD_UP": 1, + "b10": 1, + "Up": 1, + "Pad": 11, + "BCM2835_PADS_GPIO_0_27": 1, + "BCM2835_PADS_GPIO_28_45": 1, + "BCM2835_PADS_GPIO_46_53": 1, + "Control": 6, + "masks": 1, + "BCM2835_PAD_PASSWRD": 1, + "A": 7, + "<<": 29, + "Password": 1, + "BCM2835_PAD_SLEW_RATE_UNLIMITED": 1, + "Slew": 1, + "rate": 3, + "unlimited": 1, + "BCM2835_PAD_HYSTERESIS_ENABLED": 1, + "Hysteresis": 1, + "BCM2835_PAD_DRIVE_2mA": 1, + "mA": 8, + "drive": 8, + "current": 26, + "BCM2835_PAD_DRIVE_4mA": 1, + "BCM2835_PAD_DRIVE_6mA": 1, + "BCM2835_PAD_DRIVE_8mA": 1, + "BCM2835_PAD_DRIVE_10mA": 1, + "BCM2835_PAD_DRIVE_12mA": 1, + "BCM2835_PAD_DRIVE_14mA": 1, + "BCM2835_PAD_DRIVE_16mA": 1, + "bcm2835PadGroup": 4, + "specification": 1, + "bcm2835_gpio_pad": 2, + "BCM2835_PAD_GROUP_GPIO_0_27": 1, + "BCM2835_PAD_GROUP_GPIO_28_45": 1, + "BCM2835_PAD_GROUP_GPIO_46_53": 1, + "Numbers": 1, + "Here": 1, + "we": 10, + "terms": 4, + "numbers.": 1, + "These": 6, + "requiring": 1, + "bin": 1, + "connected": 1, + "adopt": 1, + "alternate": 7, + "function.": 3, + "slightly": 1, + "pinouts": 1, + "these": 1, + "RPI_V2_*.": 1, + "At": 1, + "bootup": 1, + "UART0_TXD": 3, + "UART0_RXD": 3, + "ie": 3, + "alt0": 1, + "respectively": 1, + "dedicated": 1, + "cant": 1, + "controlled": 1, + "independently": 1, + "RPI_GPIO_P1_03": 6, + "RPI_GPIO_P1_05": 6, + "RPI_GPIO_P1_07": 1, + "RPI_GPIO_P1_08": 1, + "defaults": 4, + "alt": 4, + "RPI_GPIO_P1_10": 1, + "RPI_GPIO_P1_11": 1, + "RPI_GPIO_P1_12": 1, + "RPI_GPIO_P1_13": 1, + "RPI_GPIO_P1_15": 1, + "RPI_GPIO_P1_16": 1, + "RPI_GPIO_P1_18": 1, + "RPI_GPIO_P1_19": 1, + "RPI_GPIO_P1_21": 1, + "RPI_GPIO_P1_22": 1, + "RPI_GPIO_P1_23": 1, + "RPI_GPIO_P1_24": 1, + "RPI_GPIO_P1_26": 1, + "RPI_V2_GPIO_P1_03": 1, + "RPI_V2_GPIO_P1_05": 1, + "RPI_V2_GPIO_P1_07": 1, + "RPI_V2_GPIO_P1_08": 1, + "RPI_V2_GPIO_P1_10": 1, + "RPI_V2_GPIO_P1_11": 1, + "RPI_V2_GPIO_P1_12": 1, + "RPI_V2_GPIO_P1_13": 1, + "RPI_V2_GPIO_P1_15": 1, + "RPI_V2_GPIO_P1_16": 1, + "RPI_V2_GPIO_P1_18": 1, + "RPI_V2_GPIO_P1_19": 1, + "RPI_V2_GPIO_P1_21": 1, + "RPI_V2_GPIO_P1_22": 1, + "RPI_V2_GPIO_P1_23": 1, + "RPI_V2_GPIO_P1_24": 1, + "RPI_V2_GPIO_P1_26": 1, + "RPI_V2_GPIO_P5_03": 1, + "RPI_V2_GPIO_P5_04": 1, + "RPI_V2_GPIO_P5_05": 1, + "RPI_V2_GPIO_P5_06": 1, + "RPiGPIOPin": 1, + "BCM2835_SPI0_CS": 1, + "Master": 12, + "BCM2835_SPI0_FIFO": 1, + "TX": 5, + "RX": 7, + "FIFOs": 1, + "BCM2835_SPI0_CLK": 1, + "Divider": 2, + "BCM2835_SPI0_DLEN": 1, + "Data": 9, + "Length": 2, + "BCM2835_SPI0_LTOH": 1, + "LOSSI": 1, + "mode": 24, + "TOH": 1, + "BCM2835_SPI0_DC": 1, + "DMA": 3, + "DREQ": 1, + "Controls": 1, + "BCM2835_SPI0_CS_LEN_LONG": 1, + "Long": 1, + "word": 7, + "Lossi": 2, + "DMA_LEN": 1, + "BCM2835_SPI0_CS_DMA_LEN": 1, + "BCM2835_SPI0_CS_CSPOL2": 1, + "Chip": 9, + "Polarity": 5, + "BCM2835_SPI0_CS_CSPOL1": 1, + "BCM2835_SPI0_CS_CSPOL0": 1, + "BCM2835_SPI0_CS_RXF": 1, + "RXF": 2, + "FIFO": 25, + "Full": 1, + "BCM2835_SPI0_CS_RXR": 1, + "RXR": 3, + "needs": 4, + "Reading": 1, + "full": 9, + "BCM2835_SPI0_CS_TXD": 1, + "TXD": 2, + "accept": 2, + "BCM2835_SPI0_CS_RXD": 1, + "RXD": 2, + "contains": 2, + "BCM2835_SPI0_CS_DONE": 1, + "Done": 3, + "transfer": 8, + "BCM2835_SPI0_CS_TE_EN": 1, + "Unused": 2, + "BCM2835_SPI0_CS_LMONO": 1, + "BCM2835_SPI0_CS_LEN": 1, + "LEN": 1, + "LoSSI": 1, + "BCM2835_SPI0_CS_REN": 1, + "REN": 1, + "Read": 3, + "BCM2835_SPI0_CS_ADCS": 1, + "ADCS": 1, + "Automatically": 1, + "Deassert": 1, + "BCM2835_SPI0_CS_INTR": 1, + "INTR": 1, + "Interrupt": 5, + "BCM2835_SPI0_CS_INTD": 1, + "INTD": 1, + "BCM2835_SPI0_CS_DMAEN": 1, + "DMAEN": 1, + "BCM2835_SPI0_CS_TA": 1, + "Transfer": 3, + "Active": 2, + "BCM2835_SPI0_CS_CSPOL": 1, + "BCM2835_SPI0_CS_CLEAR": 1, + "BCM2835_SPI0_CS_CLEAR_RX": 1, + "BCM2835_SPI0_CS_CLEAR_TX": 1, + "BCM2835_SPI0_CS_CPOL": 1, + "BCM2835_SPI0_CS_CPHA": 1, + "Phase": 1, + "BCM2835_SPI0_CS_CS": 1, + "bcm2835SPIBitOrder": 3, + "Bit": 1, + "Specifies": 5, + "ordering": 4, + "bcm2835_spi_setBitOrder": 2, + "BCM2835_SPI_BIT_ORDER_LSBFIRST": 1, + "LSB": 1, + "First": 2, + "BCM2835_SPI_BIT_ORDER_MSBFIRST": 1, + "MSB": 1, + "Specify": 2, + "bcm2835_spi_setDataMode": 2, + "BCM2835_SPI_MODE0": 1, + "CPOL": 4, + "CPHA": 4, + "BCM2835_SPI_MODE1": 1, + "BCM2835_SPI_MODE2": 1, + "BCM2835_SPI_MODE3": 1, + "bcm2835SPIMode": 2, + "bcm2835SPIChipSelect": 3, + "BCM2835_SPI_CS0": 1, + "BCM2835_SPI_CS1": 1, + "BCM2835_SPI_CS2": 1, + "CS1": 1, + "CS2": 1, + "asserted": 3, + "BCM2835_SPI_CS_NONE": 1, + "CS": 5, + "yourself": 1, + "bcm2835SPIClockDivider": 3, + "generate": 2, + "Figures": 1, + "below": 1, + "period": 1, + "frequency.": 1, + "divided": 2, + "nominal": 2, + "reported": 2, + "contrary": 1, + "may": 9, + "shown": 1, + "have": 4, + "confirmed": 1, + "measurement": 2, + "BCM2835_SPI_CLOCK_DIVIDER_65536": 1, + "us": 12, + "kHz": 10, + "BCM2835_SPI_CLOCK_DIVIDER_32768": 1, + "BCM2835_SPI_CLOCK_DIVIDER_16384": 1, + "BCM2835_SPI_CLOCK_DIVIDER_8192": 1, + "/51757813kHz": 1, + "BCM2835_SPI_CLOCK_DIVIDER_4096": 1, + "BCM2835_SPI_CLOCK_DIVIDER_2048": 1, + "BCM2835_SPI_CLOCK_DIVIDER_1024": 1, + "BCM2835_SPI_CLOCK_DIVIDER_512": 1, + "BCM2835_SPI_CLOCK_DIVIDER_256": 1, + "BCM2835_SPI_CLOCK_DIVIDER_128": 1, + "ns": 9, + "BCM2835_SPI_CLOCK_DIVIDER_64": 1, + "BCM2835_SPI_CLOCK_DIVIDER_32": 1, + "BCM2835_SPI_CLOCK_DIVIDER_16": 1, + "BCM2835_SPI_CLOCK_DIVIDER_8": 1, + "BCM2835_SPI_CLOCK_DIVIDER_4": 1, + "BCM2835_SPI_CLOCK_DIVIDER_2": 1, + "fastest": 1, + "BCM2835_SPI_CLOCK_DIVIDER_1": 1, + "same": 3, + "/65536": 1, + "BCM2835_BSC_C": 1, + "BCM2835_BSC_S": 1, + "BCM2835_BSC_DLEN": 1, + "BCM2835_BSC_A": 1, + "Slave": 1, + "BCM2835_BSC_FIFO": 1, + "BCM2835_BSC_DIV": 1, + "BCM2835_BSC_DEL": 1, + "Delay": 4, + "BCM2835_BSC_CLKT": 1, + "Stretch": 2, + "Timeout": 2, + "BCM2835_BSC_C_I2CEN": 1, + "BCM2835_BSC_C_INTR": 1, + "BCM2835_BSC_C_INTT": 1, + "BCM2835_BSC_C_INTD": 1, + "DONE": 2, + "BCM2835_BSC_C_ST": 1, + "Start": 4, + "new": 13, + "BCM2835_BSC_C_CLEAR_1": 1, + "BCM2835_BSC_C_CLEAR_2": 1, + "BCM2835_BSC_C_READ": 1, + "BCM2835_BSC_S_CLKT": 1, + "stretch": 1, + "timeout": 5, + "BCM2835_BSC_S_ERR": 1, + "ACK": 1, + "error": 8, + "BCM2835_BSC_S_RXF": 1, + "BCM2835_BSC_S_TXE": 1, + "TXE": 1, + "BCM2835_BSC_S_RXD": 1, + "BCM2835_BSC_S_TXD": 1, + "BCM2835_BSC_S_RXR": 1, + "BCM2835_BSC_S_TXW": 1, + "TXW": 1, + "writing": 2, + "BCM2835_BSC_S_DONE": 1, + "BCM2835_BSC_S_TA": 1, + "BCM2835_BSC_FIFO_SIZE": 1, + "size": 13, + "bcm2835I2CClockDivider": 3, + "BCM2835_I2C_CLOCK_DIVIDER_2500": 1, + "BCM2835_I2C_CLOCK_DIVIDER_626": 1, + "BCM2835_I2C_CLOCK_DIVIDER_150": 1, + "reset": 1, + "BCM2835_I2C_CLOCK_DIVIDER_148": 1, + "bcm2835I2CReasonCodes": 5, + "reason": 4, + "codes": 1, + "BCM2835_I2C_REASON_OK": 1, + "Success": 1, + "BCM2835_I2C_REASON_ERROR_NACK": 1, + "Received": 4, + "NACK": 1, + "BCM2835_I2C_REASON_ERROR_CLKT": 1, + "BCM2835_I2C_REASON_ERROR_DATA": 1, + "sent": 1, + "/": 16, + "BCM2835_ST_CS": 1, + "Control/Status": 1, + "BCM2835_ST_CLO": 1, + "Counter": 4, + "Lower": 2, + "BCM2835_ST_CHI": 1, + "Upper": 1, + "BCM2835_PWM_CONTROL": 1, + "BCM2835_PWM_STATUS": 1, + "BCM2835_PWM0_RANGE": 1, + "BCM2835_PWM0_DATA": 1, + "BCM2835_PWM1_RANGE": 1, + "BCM2835_PWM1_DATA": 1, + "BCM2835_PWMCLK_CNTL": 1, + "BCM2835_PWMCLK_DIV": 1, + "BCM2835_PWM1_MS_MODE": 1, + "Run": 4, + "MS": 2, + "BCM2835_PWM1_USEFIFO": 1, + "BCM2835_PWM1_REVPOLAR": 1, + "Reverse": 2, + "polarity": 3, + "BCM2835_PWM1_OFFSTATE": 1, + "Ouput": 2, + "BCM2835_PWM1_REPEATFF": 1, + "Repeat": 2, + "last": 6, + "empty": 2, + "BCM2835_PWM1_SERIAL": 1, + "serial": 2, + "BCM2835_PWM1_ENABLE": 1, + "Channel": 2, + "BCM2835_PWM0_MS_MODE": 1, + "BCM2835_PWM0_USEFIFO": 1, + "BCM2835_PWM0_REVPOLAR": 1, + "BCM2835_PWM0_OFFSTATE": 1, + "BCM2835_PWM0_REPEATFF": 1, + "BCM2835_PWM0_SERIAL": 1, + "BCM2835_PWM0_ENABLE": 1, + "x": 86, + "#endif": 110, + "#ifdef": 19, + "__cplusplus": 12, + "init": 2, + "Library": 1, + "management": 1, + "intialise": 1, + "Initialise": 1, + "opening": 1, + "getting": 1, + "internal": 47, + "device": 7, + "call": 4, + "successfully": 1, + "before": 7, + "bcm2835_set_debug": 2, + "fails": 1, + "returning": 1, + "result": 8, + "crashes": 1, + "failures.": 1, + "Prints": 1, + "messages": 1, + "stderr": 1, + "case": 34, + "errors.": 1, + "successful": 2, + "else": 58, + "int": 218, + "Close": 1, + "deallocating": 1, + "allocated": 2, + "closing": 3, + "Sets": 24, + "debug": 6, + "prevents": 1, + "makes": 1, + "print": 5, + "out": 5, + "what": 2, + "would": 2, + "do": 13, + "rather": 2, + "causes": 1, + "normal": 1, + "operation.": 2, + "Call": 2, + "param": 72, + "]": 292, + "level.": 3, + "uint8_t": 43, + "lowlevel": 2, + "provide": 1, + "generally": 1, + "Reads": 5, + "done": 3, + "twice": 3, + "therefore": 6, + "always": 3, + "safe": 4, + "precautions": 3, + "correct": 3, + "paddr": 10, + "from.": 6, + "etc.": 5, + "sa": 30, + "uint32_t*": 7, + "without": 3, + "within": 4, + "occurred": 2, + "since.": 2, + "bcm2835_peri_read_nb": 1, + "Writes": 2, + "write": 8, + "bcm2835_peri_write_nb": 1, + "Alters": 1, + "regsiter.": 1, + "valu": 1, + "alters": 1, + "deines": 1, + "according": 1, + "value.": 2, + "All": 1, + "unaffected.": 1, + "Use": 8, + "alter": 2, + "subset": 1, + "register.": 3, + "masked": 2, + "mask.": 1, + "Bitmask": 1, + "altered": 1, + "gpio": 1, + "interface.": 3, + "input": 12, + "output": 21, + "state.": 1, + "given": 16, + "configures": 1, + "RPI_GPIO_P1_*": 21, + "Mode": 1, + "BCM2835_GPIO_FSEL_*": 1, + "specified": 27, + "HIGH.": 2, + "bcm2835_gpio_write": 3, + "bcm2835_gpio_set": 1, + "LOW.": 5, + "bcm2835_gpio_clr": 1, + "first": 13, + "Mask": 6, + "affect.": 4, + "eg": 5, + "returns": 4, + "either": 4, + "Works": 1, + "whether": 4, + "output.": 1, + "bcm2835_gpio_lev": 1, + "Status.": 7, + "Tests": 1, + "detected": 7, + "requested": 1, + "flag": 3, + "bcm2835_gpio_set_eds": 2, + "status": 1, + "th": 1, + "true.": 2, + "bcm2835_gpio_eds": 1, + "effect": 3, + "clearing": 1, + "flag.": 1, + "afer": 1, + "seeing": 1, + "rising": 3, + "sets": 8, + "GPRENn": 2, + "synchronous": 2, + "detection.": 2, + "signal": 4, + "sampled": 6, + "looking": 2, + "pattern": 2, + "signal.": 2, + "suppressing": 2, + "glitches.": 2, + "Disable": 6, + "Asynchronous": 6, + "incoming": 2, + "As": 2, + "edges": 2, + "very": 2, + "short": 5, + "duration": 2, + "detected.": 2, + "bcm2835_gpio_pudclk": 3, + "resistor": 1, + "However": 3, + "convenient": 2, + "bcm2835_gpio_set_pud": 4, + "pud": 4, + "desired": 7, + "mode.": 4, + "One": 3, + "BCM2835_GPIO_PUD_*": 2, + "Clocks": 3, + "earlier": 1, + "remove": 2, + "group.": 2, + "BCM2835_PAD_GROUP_GPIO_*": 2, + "BCM2835_PAD_*": 2, + "bcm2835_gpio_set_pad": 1, + "Delays": 3, + "milliseconds.": 1, + "Uses": 4, + "CPU": 5, + "until": 1, + "up.": 1, + "mercy": 2, + "From": 2, + "interval": 4, + "req": 2, + "exact": 2, + "multiple": 2, + "granularity": 2, + "rounded": 2, + "next": 9, + "multiple.": 2, + "Furthermore": 2, + "sleep": 2, + "completes": 2, + "still": 3, + "becomes": 2, + "free": 4, + "once": 5, + "again": 2, + "execute": 3, + "thread.": 2, + "millis": 2, + "milliseconds": 1, + "unsigned": 22, + "microseconds.": 2, + "combination": 2, + "busy": 2, + "wait": 2, + "timers": 1, + "less": 1, + "microseconds": 6, + "Timer.": 1, + "RaspberryPi": 1, + "Your": 1, + "mileage": 1, + "vary.": 1, + "micros": 5, + "uint64_t": 8, + "required": 2, + "bcm2835_gpio_write_mask": 1, + "clocking": 1, + "spi": 1, + "let": 2, + "device.": 2, + "operations.": 4, + "Forces": 2, + "ALT0": 2, + "funcitons": 1, + "complete": 3, + "End": 2, + "returned": 5, + "INPUT": 2, + "behaviour.": 2, + "NOTE": 1, + "effect.": 1, + "SPI0.": 1, + "Defaults": 1, + "BCM2835_SPI_BIT_ORDER_*": 1, + "speed.": 2, + "BCM2835_SPI_CLOCK_DIVIDER_*": 1, + "bcm2835_spi_setClockDivider": 1, + "uint16_t": 2, + "polariy": 1, + "phase": 1, + "BCM2835_SPI_MODE*": 1, + "bcm2835_spi_transfer": 5, + "made": 1, + "selected": 13, + "during": 4, + "transfer.": 4, + "cs": 4, + "activate": 1, + "slave.": 7, + "BCM2835_SPI_CS*": 1, + "bcm2835_spi_chipSelect": 4, + "occurs": 1, + "currently": 12, + "active.": 1, + "transfers": 1, + "happening": 1, + "complement": 1, + "inactive": 1, + "affect": 1, + "active": 3, + "Whether": 1, + "bcm2835_spi_setChipSelectPolarity": 1, + "Transfers": 6, + "byte": 6, + "Asserts": 3, + "simultaneously": 3, + "clocks": 2, + "MISO.": 2, + "Returns": 2, + "polled": 2, + "Peripherls": 2, + "len": 15, + "slave": 8, + "placed": 1, + "rbuf.": 1, + "rbuf": 3, + "long": 15, + "tbuf": 4, + "Buffer": 10, + "send.": 5, + "put": 1, + "buffer": 9, + "Number": 8, + "send/received": 2, + "char*": 24, + "bcm2835_spi_transfernb.": 1, + "replaces": 1, + "transmitted": 1, + "buffer.": 1, + "buf": 14, + "replace": 1, + "contents": 3, + "eh": 2, + "bcm2835_spi_writenb": 1, + "i2c": 1, + "Philips": 1, + "bus/interface": 1, + "January": 1, + "SCL": 2, + "bcm2835_i2c_end": 3, + "bcm2835_i2c_begin": 1, + "address.": 2, + "addr": 2, + "bcm2835_i2c_setSlaveAddress": 4, + "BCM2835_I2C_CLOCK_DIVIDER_*": 1, + "bcm2835_i2c_setClockDivider": 2, + "converting": 1, + "baudrate": 4, + "parameter": 1, + "equivalent": 1, + "divider.": 1, + "standard": 2, + "khz": 1, + "corresponds": 1, + "its": 1, + "driver.": 1, + "Of": 1, + "course": 2, + "nothing": 1, + "driver": 1, + "const": 172, + "*": 183, + "receive.": 2, + "received.": 2, + "Allows": 2, + "slaves": 1, + "require": 3, + "repeated": 1, + "start": 12, + "prior": 1, + "stop": 1, + "set.": 1, + "popular": 1, + "MPL3115A2": 1, + "pressure": 1, + "temperature": 1, + "sensor.": 1, + "Note": 1, + "combined": 1, + "better": 1, + "choice.": 1, + "Will": 1, + "regaddr": 2, + "containing": 2, + "bcm2835_i2c_read_register_rs": 1, + "st": 1, + "delays": 1, + "Counter.": 1, + "bcm2835_st_read": 1, + "offset.": 1, + "offset_micros": 2, + "Offset": 1, + "bcm2835_st_delay": 1, + "@example": 5, + "blink.c": 1, + "Blinks": 1, + "off": 1, + "input.c": 1, + "event.c": 1, + "Shows": 3, + "how": 3, + "spi.c": 1, + "spin.c": 1, + "#pragma": 3, + "": 4, + "": 4, + "": 2, + "namespace": 38, + "std": 53, + "DEFAULT_DELIMITER": 1, + "CsvStreamer": 5, + "private": 16, + "ofstream": 1, + "File": 1, + "stream": 6, + "vector": 16, + "row_buffer": 1, + "stores": 3, + "row": 12, + "flushed/written": 1, + "fields": 4, + "columns": 2, + "rows": 3, + "records": 2, + "including": 2, + "delimiter": 2, + "Delimiter": 1, + "character": 10, + "comma": 2, + "string": 24, + "sanitize": 1, + "ready": 1, + "Empty": 1, + "CSV": 4, + "streamer...": 1, + "Same": 1, + "...": 1, + "Opens": 3, + "path/name": 3, + "Ensures": 1, + "closed": 1, + "saved": 1, + "delimiting": 1, + "add_field": 1, + "line": 11, + "adds": 1, + "field": 5, + "save_fields": 1, + "save": 1, + "writes": 2, + "append": 8, + "Appends": 5, + "quoted": 1, + "leading/trailing": 1, + "spaces": 3, + "trimmed": 1, + "bool": 111, + "Like": 1, + "specify": 1, + "trim": 2, + "keep": 1, + "float": 74, + "double": 25, + "writeln": 1, + "Flushes": 1, + "Saves": 1, + "closes": 1, + "field_count": 1, + "Gets": 2, + "row_count": 1, "": 1, "": 1, "": 2, + "static": 263, "Env": 13, "*env_instance": 1, + "NULL": 109, "*Env": 1, + "instance": 4, "env_instance": 3, - "new": 13, "QObject": 2, "QCoreApplication": 1, "parse": 3, "**envp": 1, "**env": 1, "**": 2, + "QString": 20, "envvar": 2, + "name": 25, "indexOfEquals": 5, "env": 3, "envp": 4, "*env": 1, - "+": 80, "envvar.indexOf": 1, "continue": 2, "envvar.left": 1, @@ -11669,357 +12932,10 @@ "QVariantMap": 3, "asVariantMap": 2, "m_map": 2, - "Bar": 2, - "protected": 4, - "*name": 6, - "hello": 2, - "QSCICOMMAND_H": 2, - "": 1, - "": 1, - "QsciCommand": 7, - "represents": 1, - "an": 23, - "internal": 47, - "editor": 1, - "command": 9, - "may": 9, - "have": 4, - "one": 73, - "two": 2, - "keys": 3, - "bound": 4, - "Methods": 1, - "are": 36, - "provided": 1, - "change": 3, - "remove": 2, - "key": 23, - "binding.": 1, - "Each": 1, - "has": 29, - "user": 3, - "friendly": 2, - "description": 3, - "mapping": 3, - "dialogs.": 1, - "defines": 3, - "different": 5, - "commands": 1, - "assigned": 1, - "key.": 1, - "Command": 4, - "Move": 26, - "down": 12, - "line.": 33, - "LineDown": 1, - "SCI_LINEDOWN": 1, - "Extend": 33, - "selection": 39, - "LineDownExtend": 1, - "SCI_LINEDOWNEXTEND": 1, - "rectangular": 9, - "LineDownRectExtend": 1, - "SCI_LINEDOWNRECTEXTEND": 1, - "Scroll": 5, - "view": 2, - "LineScrollDown": 1, - "SCI_LINESCROLLDOWN": 1, - "LineUp": 1, - "SCI_LINEUP": 1, - "LineUpExtend": 1, - "SCI_LINEUPEXTEND": 1, - "LineUpRectExtend": 1, - "SCI_LINEUPRECTEXTEND": 1, - "LineScrollUp": 1, - "SCI_LINESCROLLUP": 1, - "start": 12, - "ScrollToStart": 1, - "SCI_SCROLLTOSTART": 1, - "end": 23, - "ScrollToEnd": 1, - "SCI_SCROLLTOEND": 1, - "vertically": 1, - "centre": 1, - "VerticalCentreCaret": 1, - "SCI_VERTICALCENTRECARET": 1, - "paragraph.": 4, - "ParaDown": 1, - "SCI_PARADOWN": 1, - "ParaDownExtend": 1, - "SCI_PARADOWNEXTEND": 1, - "ParaUp": 1, - "SCI_PARAUP": 1, - "ParaUpExtend": 1, - "SCI_PARAUPEXTEND": 1, - "left": 7, - "character.": 9, - "CharLeft": 1, - "SCI_CHARLEFT": 1, - "CharLeftExtend": 1, - "SCI_CHARLEFTEXTEND": 1, - "CharLeftRectExtend": 1, - "SCI_CHARLEFTRECTEXTEND": 1, - "right": 9, - "CharRight": 1, - "SCI_CHARRIGHT": 1, - "CharRightExtend": 1, - "SCI_CHARRIGHTEXTEND": 1, - "CharRightRectExtend": 1, - "SCI_CHARRIGHTRECTEXTEND": 1, - "word.": 9, - "WordLeft": 1, - "SCI_WORDLEFT": 1, - "WordLeftExtend": 1, - "SCI_WORDLEFTEXTEND": 1, - "WordRight": 1, - "SCI_WORDRIGHT": 1, - "WordRightExtend": 1, - "SCI_WORDRIGHTEXTEND": 1, - "previous": 6, - "WordLeftEnd": 1, - "SCI_WORDLEFTEND": 1, - "WordLeftEndExtend": 1, - "SCI_WORDLEFTENDEXTEND": 1, - "next": 9, - "WordRightEnd": 1, - "SCI_WORDRIGHTEND": 1, - "WordRightEndExtend": 1, - "SCI_WORDRIGHTENDEXTEND": 1, - "word": 7, - "part.": 4, - "WordPartLeft": 1, - "SCI_WORDPARTLEFT": 1, - "WordPartLeftExtend": 1, - "SCI_WORDPARTLEFTEXTEND": 1, - "WordPartRight": 1, - "SCI_WORDPARTRIGHT": 1, - "WordPartRightExtend": 1, - "SCI_WORDPARTRIGHTEXTEND": 1, - "Home": 1, - "SCI_HOME": 1, - "HomeExtend": 1, - "SCI_HOMEEXTEND": 1, - "HomeRectExtend": 1, - "SCI_HOMERECTEXTEND": 1, - "displayed": 10, - "HomeDisplay": 1, - "SCI_HOMEDISPLAY": 1, - "HomeDisplayExtend": 1, - "SCI_HOMEDISPLAYEXTEND": 1, - "HomeWrap": 1, - "SCI_HOMEWRAP": 1, - "HomeWrapExtend": 1, - "SCI_HOMEWRAPEXTEND": 1, - "visible": 6, - "character": 10, - "VCHome": 1, - "SCI_VCHOME": 1, - "VCHomeExtend": 1, - "SCI_VCHOMEEXTEND": 1, - "VCHomeRectExtend": 1, - "SCI_VCHOMERECTEXTEND": 1, - "VCHomeWrap": 1, - "SCI_VCHOMEWRAP": 1, - "VCHomeWrapExtend": 1, - "SCI_VCHOMEWRAPEXTEND": 1, - "LineEnd": 1, - "SCI_LINEEND": 1, - "LineEndExtend": 1, - "SCI_LINEENDEXTEND": 1, - "LineEndRectExtend": 1, - "SCI_LINEENDRECTEXTEND": 1, - "LineEndDisplay": 1, - "SCI_LINEENDDISPLAY": 1, - "LineEndDisplayExtend": 1, - "SCI_LINEENDDISPLAYEXTEND": 1, - "LineEndWrap": 1, - "SCI_LINEENDWRAP": 1, - "LineEndWrapExtend": 1, - "SCI_LINEENDWRAPEXTEND": 1, - "DocumentStart": 1, - "SCI_DOCUMENTSTART": 1, - "DocumentStartExtend": 1, - "SCI_DOCUMENTSTARTEXTEND": 1, - "DocumentEnd": 1, - "SCI_DOCUMENTEND": 1, - "DocumentEndExtend": 1, - "SCI_DOCUMENTENDEXTEND": 1, - "PageUp": 1, - "SCI_PAGEUP": 1, - "PageUpExtend": 1, - "SCI_PAGEUPEXTEND": 1, - "PageUpRectExtend": 1, - "SCI_PAGEUPRECTEXTEND": 1, - "PageDown": 1, - "SCI_PAGEDOWN": 1, - "PageDownExtend": 1, - "SCI_PAGEDOWNEXTEND": 1, - "PageDownRectExtend": 1, - "SCI_PAGEDOWNRECTEXTEND": 1, - "Stuttered": 4, - "move": 2, - "StutteredPageUp": 1, - "SCI_STUTTEREDPAGEUP": 1, - "extend": 2, - "StutteredPageUpExtend": 1, - "SCI_STUTTEREDPAGEUPEXTEND": 1, - "StutteredPageDown": 1, - "SCI_STUTTEREDPAGEDOWN": 1, - "StutteredPageDownExtend": 1, - "SCI_STUTTEREDPAGEDOWNEXTEND": 1, - "Delete": 10, - "SCI_CLEAR": 1, - "DeleteBack": 1, - "SCI_DELETEBACK": 1, - "not": 29, - "DeleteBackNotLine": 1, - "SCI_DELETEBACKNOTLINE": 1, - "left.": 2, - "DeleteWordLeft": 1, - "SCI_DELWORDLEFT": 1, - "right.": 2, - "DeleteWordRight": 1, - "SCI_DELWORDRIGHT": 1, - "DeleteWordRightEnd": 1, - "SCI_DELWORDRIGHTEND": 1, - "DeleteLineLeft": 1, - "SCI_DELLINELEFT": 1, - "DeleteLineRight": 1, - "SCI_DELLINERIGHT": 1, - "LineDelete": 1, - "SCI_LINEDELETE": 1, - "Cut": 2, - "clipboard.": 5, - "LineCut": 1, - "SCI_LINECUT": 1, - "Copy": 2, - "LineCopy": 1, - "SCI_LINECOPY": 1, - "Transpose": 1, - "lines.": 1, - "LineTranspose": 1, - "SCI_LINETRANSPOSE": 1, - "Duplicate": 2, - "LineDuplicate": 1, - "SCI_LINEDUPLICATE": 1, - "Select": 49, - "SelectAll": 1, - "SCI_SELECTALL": 1, - "selected": 13, - "MoveSelectedLinesUp": 1, - "SCI_MOVESELECTEDLINESUP": 1, - "MoveSelectedLinesDown": 1, - "SCI_MOVESELECTEDLINESDOWN": 1, - "selection.": 1, - "SelectionDuplicate": 1, - "SCI_SELECTIONDUPLICATE": 1, - "Convert": 2, - "lower": 1, - "case.": 2, - "SelectionLowerCase": 1, - "SCI_LOWERCASE": 1, - "upper": 1, - "SelectionUpperCase": 1, - "SCI_UPPERCASE": 1, - "SelectionCut": 1, - "SCI_CUT": 1, - "SelectionCopy": 1, - "SCI_COPY": 1, - "Paste": 2, - "SCI_PASTE": 1, - "Toggle": 1, - "insert/overtype.": 1, - "EditToggleOvertype": 1, - "SCI_EDITTOGGLEOVERTYPE": 1, - "Insert": 2, - "dependent": 1, - "newline.": 1, - "Newline": 1, - "SCI_NEWLINE": 1, - "formfeed.": 1, - "Formfeed": 1, - "SCI_FORMFEED": 1, - "Indent": 1, - "level.": 3, - "Tab": 1, - "SCI_TAB": 1, - "De": 1, - "indent": 1, - "Backtab": 1, - "SCI_BACKTAB": 1, - "Cancel": 2, - "operation.": 2, - "SCI_CANCEL": 1, - "Undo": 2, - "command.": 5, - "SCI_UNDO": 1, - "Redo": 2, - "SCI_REDO": 1, - "Zoom": 2, - "in.": 1, - "ZoomIn": 1, - "SCI_ZOOMIN": 1, - "out.": 1, - "ZoomOut": 1, - "SCI_ZOOMOUT": 1, - "executed": 1, - "this": 57, - "scicmd": 2, - "Execute": 1, - "execute": 3, - "Binds": 2, - "If": 11, - "then": 15, - "binding": 3, - "removed.": 2, - "invalid": 5, - "unchanged.": 1, - "Valid": 1, - "control": 17, - "c": 72, - "Key_Down": 1, - "Key_Up": 1, - "Key_Left": 1, - "Key_Right": 1, - "Key_Home": 1, - "Key_End": 1, - "Key_PageUp": 1, - "Key_PageDown": 1, - "Key_Delete": 1, - "Key_Insert": 1, - "Key_Escape": 1, - "Key_Backspace": 1, - "Key_Tab": 1, - "Key_Return.": 1, - "Keys": 1, - "combination": 2, - "SHIFT": 1, - "CTRL": 1, - "ALT": 1, - "META.": 1, - "setAlternateKey": 3, - "validKey": 3, - "setKey": 3, - "alternate": 7, - "altkey": 3, - "alternateKey": 3, - "currently": 12, - "returned.": 4, - "qkey": 2, - "qaltkey": 2, - "valid": 2, - "friend": 10, - "QsciCommandSet": 1, - "*qs": 1, - "cmd": 1, - "*desc": 1, - "bindKey": 1, - "qk": 1, - "scik": 1, - "*qsCmd": 1, - "scikey": 1, - "scialtkey": 1, - "*descCmd": 1, + "ENV_H": 3, + "": 1, + "Q_OBJECT": 1, + "*instance": 1, "BOOST_ASIO_DETAIL_IMPL_EPOLL_REACTOR_IPP": 3, "#if": 63, "defined": 49, @@ -12055,7 +12971,6 @@ "ev": 21, "ev.events": 13, "EPOLLIN": 8, - "|": 40, "EPOLLERR": 8, "EPOLLET": 5, "ev.data.ptr": 10, @@ -12063,7 +12978,6 @@ "EPOLL_CTL_ADD": 7, "interrupter_.read_descriptor": 3, "interrupter_.interrupt": 2, - "close": 7, "shutdown_service": 1, "mutex": 16, "scoped_lock": 16, @@ -12072,16 +12986,12 @@ "op_queue": 6, "": 6, "ops": 10, - "while": 17, "descriptor_state*": 6, - "state": 33, "registered_descriptors_.first": 2, "i": 106, "max_ops": 6, "ops.push": 5, "op_queue_": 12, - "[": 293, - "]": 292, "registered_descriptors_.free": 2, "timer_queues_.get_all_timers": 1, "io_service_.abandon_operations": 1, @@ -12095,13 +13005,10 @@ "registered_descriptors_mutex_": 3, "next_": 3, "registered_events_": 8, - "result": 8, "descriptor_": 5, - "system": 13, "error_code": 4, "ec": 6, "errno": 10, - "error": 8, "get_system_category": 3, "throw_error": 2, "init_task": 1, @@ -12140,7 +13047,6 @@ "write_op": 2, "EPOLLOUT": 4, "EPOLL_CTL_MOD": 3, - "else": 58, "io_service_.work_started": 2, "cancel_ops": 1, ".front": 3, @@ -12148,21 +13054,19 @@ ".pop": 3, "io_service_.post_deferred_completions": 3, "deregister_descriptor": 1, - "closing": 3, "EPOLL_CTL_DEL": 2, "free_descriptor_state": 3, "deregister_internal_descriptor": 1, - "run": 2, - "block": 7, - "timeout": 5, "get_timeout": 5, "events": 8, "num_events": 2, "epoll_wait": 1, "check_timers": 6, "#else": 35, + "void*": 2, "ptr": 6, ".data.ptr": 1, + "static_cast": 14, "": 2, "set_ready_events": 1, ".events": 1, @@ -12173,7 +13077,6 @@ "old_timeout": 4, "flags": 4, "timerfd_settime": 2, - "interrupt": 3, "EPOLL_CLOEXEC": 4, "fd": 15, "epoll_create1": 1, @@ -12185,10 +13088,8 @@ "F_SETFD": 2, "FD_CLOEXEC": 2, "timerfd_create": 2, - "CLOCK_MONOTONIC": 3, "TFD_CLOEXEC": 1, "registered_descriptors_.alloc": 1, - "s": 26, "do_add_timer_queue": 1, "timer_queue_base": 2, "queue": 4, @@ -12199,15 +13100,13 @@ "ts": 1, "ts.it_interval.tv_sec": 1, "ts.it_interval.tv_nsec": 1, - "long": 15, "usec": 5, "timer_queues_.wait_duration_usec": 1, "ts.it_value.tv_sec": 1, - "/": 16, "ts.it_value.tv_nsec": 1, - "%": 7, "TFD_TIMER_ABSTIME": 1, "perform_io_cleanup_on_block_exit": 4, + "explicit": 5, "epoll_reactor*": 2, "r": 38, "first_op_": 3, @@ -12218,11 +13117,9 @@ "operation": 2, "do_complete": 2, "perform_io": 2, - "uint32_t": 39, "mutex_.lock": 1, "io_cleanup": 1, "adopt_lock": 1, - "flag": 3, "j": 10, "io_cleanup.ops_.push": 1, "break": 35, @@ -12231,12 +13128,422 @@ "io_cleanup.ops_.pop": 1, "io_service_impl*": 1, "owner": 3, - "base": 8, "size_t": 6, "bytes_transferred": 2, "": 1, - "complete": 3, "": 1, + "Field": 2, + "Free": 1, + "Black": 1, + "White": 1, + "Illegal": 1, + "Player": 1, + "GDSDBREADER_H": 3, + "": 1, + "GDS_DIR": 1, + "LEVEL_ONE": 1, + "LEVEL_TWO": 1, + "LEVEL_THREE": 1, + "dbDataStructure": 2, + "label": 1, + "quint32": 3, + "depth": 1, + "userIndex": 1, + "QByteArray": 1, + "COMPRESSED": 1, + "optimize": 1, + "ram": 1, + "disk": 2, + "space": 2, + "decompressed": 1, + "quint64": 1, + "uniqueID": 1, + "QVector": 2, + "": 1, + "nextItems": 1, + "": 1, + "nextItemsIndices": 1, + "dbDataStructure*": 1, + "father": 1, + "fatherIndex": 1, + "noFatherRoot": 1, + "Used": 2, + "tell": 1, + "node": 1, + "root": 1, + "hasn": 1, + "argument": 1, + "list": 3, + "operator": 10, + "overload.": 1, + "friend": 10, + "myclass.label": 2, + "myclass.depth": 2, + "myclass.userIndex": 2, + "qCompress": 2, + "myclass.data": 4, + "myclass.uniqueID": 2, + "myclass.nextItemsIndices": 2, + "myclass.fatherIndex": 2, + "myclass.noFatherRoot": 2, + "myclass.fileName": 2, + "myclass.firstLineData": 4, + "myclass.linesNumbers": 2, + "QDataStream": 2, + "myclass": 1, + "//Don": 1, + "qUncompress": 2, + "": 2, + "main": 2, + "cout": 2, + "endl": 1, + "": 1, + "": 1, + "": 1, + "EC_KEY_regenerate_key": 1, + "EC_KEY": 3, + "*eckey": 2, + "BIGNUM": 9, + "*priv_key": 1, + "ok": 3, + "BN_CTX": 2, + "*ctx": 2, + "EC_POINT": 4, + "*pub_key": 1, + "eckey": 7, + "EC_GROUP": 2, + "*group": 2, + "EC_KEY_get0_group": 2, + "ctx": 26, + "BN_CTX_new": 2, + "goto": 156, + "err": 26, + "pub_key": 6, + "EC_POINT_new": 4, + "EC_POINT_mul": 3, + "priv_key": 2, + "EC_KEY_set_private_key": 1, + "EC_KEY_set_public_key": 2, + "EC_POINT_free": 4, + "BN_CTX_free": 2, + "ECDSA_SIG_recover_key_GFp": 3, + "ECDSA_SIG": 3, + "*ecsig": 1, + "*msg": 2, + "msglen": 2, + "recid": 3, + "ret": 24, + "*x": 1, + "*e": 1, + "*order": 1, + "*sor": 1, + "*eor": 1, + "*field": 1, + "*R": 1, + "*O": 1, + "*Q": 1, + "*rr": 1, + "*zero": 1, + "n": 28, + "BN_CTX_start": 1, + "BN_CTX_get": 8, + "EC_GROUP_get_order": 1, + "BN_copy": 1, + "BN_mul_word": 1, + "BN_add": 1, + "ecsig": 3, + "EC_GROUP_get_curve_GFp": 1, + "BN_cmp": 1, + "R": 6, + "EC_POINT_set_compressed_coordinates_GFp": 1, + "O": 5, + "EC_POINT_is_at_infinity": 1, + "Q": 5, + "EC_GROUP_get_degree": 1, + "e": 15, + "BN_bin2bn": 3, + "msg": 1, + "*msglen": 1, + "BN_rshift": 1, + "zero": 5, + "BN_zero": 1, + "BN_mod_sub": 1, + "rr": 4, + "BN_mod_inverse": 1, + "sor": 3, + "BN_mod_mul": 2, + "eor": 3, + "BN_CTX_end": 1, + "CKey": 26, + "SetCompressedPubKey": 4, + "EC_KEY_set_conv_form": 1, + "pkey": 14, + "POINT_CONVERSION_COMPRESSED": 1, + "fCompressedPubKey": 5, + "Reset": 5, + "EC_KEY_new_by_curve_name": 2, + "NID_secp256k1": 2, + "throw": 4, + "key_error": 6, + "fSet": 7, + "b": 57, + "EC_KEY_dup": 1, + "b.pkey": 2, + "b.fSet": 2, + "EC_KEY_copy": 1, + "hash": 20, + "vchSig": 18, + "nSize": 2, + "vchSig.clear": 2, + "vchSig.resize": 2, + "Shrink": 1, + "fit": 1, + "actual": 1, + "SignCompact": 2, + "uint256": 10, + "": 19, + "fOk": 3, + "*sig": 2, + "ECDSA_do_sign": 1, + "sig": 11, + "nBitsR": 3, + "BN_num_bits": 2, + "nBitsS": 3, + "nRecId": 4, + "<4;>": 1, + "keyRec": 5, + "1": 4, + "GetPubKey": 5, + "BN_bn2bin": 2, + "/8": 2, + "ECDSA_SIG_free": 2, + "SetCompactSignature": 2, + "vchSig.size": 2, + "nV": 6, + "<27>": 1, + "ECDSA_SIG_new": 1, + "EC_KEY_free": 1, + "Verify": 2, + "ECDSA_verify": 1, + "VerifyCompact": 2, + "key": 23, + "key.SetCompactSignature": 1, + "key.GetPubKey": 1, + "IsValid": 4, + "fCompr": 3, + "CSecret": 4, + "secret": 2, + "GetSecret": 2, + "key2": 1, + "key2.SetSecret": 1, + "key2.GetPubKey": 1, + "BITCOIN_KEY_H": 2, + "": 1, + "": 1, + "runtime_error": 2, + "str": 2, + "CKeyID": 5, + "uint160": 8, + "CScriptID": 3, + "CPubKey": 11, + "vchPubKey": 6, + "vchPubKeyIn": 2, + "a.vchPubKey": 3, + "b.vchPubKey": 3, + "IMPLEMENT_SERIALIZE": 1, + "READWRITE": 1, + "GetID": 1, + "Hash160": 1, + "GetHash": 1, + "Hash": 1, + "vchPubKey.begin": 1, + "vchPubKey.end": 1, + "vchPubKey.size": 3, + "IsCompressed": 2, + "Raw": 1, + "secure_allocator": 2, + "CPrivKey": 3, + "EC_KEY*": 1, + "IsNull": 1, + "MakeNewKey": 1, + "fCompressed": 3, + "SetPrivKey": 1, + "vchPrivKey": 1, + "SetSecret": 1, + "vchSecret": 1, + "GetPrivKey": 1, + "SetPubKey": 1, + "Sign": 2, + "LIBCANIH": 2, + "": 1, + "": 1, + "int64": 1, + "//#define": 1, + "DEBUG": 5, + "dout": 2, + "cerr": 1, + "libcanister": 2, + "//the": 8, + "canmem": 22, + "object": 3, + "generic": 1, + "container": 2, + "commonly": 1, + "//throughout": 1, + "canister": 14, + "framework": 1, + "hold": 1, + "uncertain": 1, + "//length": 1, + "contain": 1, + "null": 3, + "bytes.": 1, + "raw": 2, + "absolute": 1, + "length": 10, + "//creates": 3, + "unallocated": 1, + "allocsize": 1, + "blank": 1, + "strdata": 1, + "//automates": 1, + "creation": 1, + "limited": 2, + "canmems": 1, + "//cleans": 1, + "zeromem": 1, + "//overwrites": 2, + "fragmem": 1, + "notation": 1, + "countlen": 1, + "//counts": 1, + "strings": 1, + "//removes": 1, + "nulls": 1, + "//returns": 2, + "singleton": 2, + "//contains": 2, + "caninfo": 2, + "path": 8, + "//physical": 1, + "internalname": 1, + "//a": 1, + "numfiles": 1, + "files": 6, + "//necessary": 1, + "type": 7, + "canfile": 7, + "//this": 1, + "holds": 2, + "//canister": 1, + "canister*": 1, + "parent": 1, + "//internal": 1, + "id": 4, + "//use": 1, + "own.": 1, + "newline": 2, + "delimited": 2, + "container.": 1, + "TOC": 1, + "info": 2, + "general": 1, + "canfiles": 1, + "recommended": 1, + "modify": 1, + "//these": 1, + "enforced.": 1, + "canfile*": 1, + "readonly": 3, + "//if": 1, + "routines": 1, + "anything": 1, + "//maximum": 1, + "//time": 1, + "whatever": 1, + "suits": 1, + "application.": 1, + "cachemax": 2, + "cachecnt": 1, + "//number": 1, + "cache": 2, + "modified": 3, + "//both": 1, + "initialize": 1, + "fspath": 3, + "//destroys": 1, + "flushing": 1, + "modded": 1, + "//open": 1, + "//does": 1, + "exist": 2, + "//close": 1, + "flush": 1, + "clean": 2, + "//deletes": 1, + "inside": 1, + "delFile": 1, + "//pulls": 1, + "getFile": 1, + "otherwise": 1, + "overwrites": 1, + "succeeded": 2, + "writeFile": 2, + "//get": 1, + "//list": 1, + "paths": 1, + "getTOC": 1, + "//brings": 1, + "back": 1, + "limit": 1, + "//important": 1, + "sCFID": 2, + "CFID": 2, + "avoid": 1, + "uncaching": 1, + "//really": 1, + "just": 2, + "internally": 1, + "harm.": 1, + "cacheclean": 1, + "dFlush": 1, + "Q_OS_LINUX": 2, + "": 1, + "QT_VERSION": 1, + "QT_VERSION_CHECK": 1, + "#error": 9, + "Something": 1, + "wrong": 1, + "setup.": 1, + "report": 3, + "mailing": 1, + "argc": 2, + "char**": 2, + "argv": 2, + "google_breakpad": 1, + "ExceptionHandler": 1, + "Utils": 4, + "exceptionHandler": 2, + "qInstallMsgHandler": 1, + "messageHandler": 2, + "QApplication": 1, + "app": 1, + "STATIC_BUILD": 1, + "Q_INIT_RESOURCE": 2, + "WebKit": 1, + "InspectorBackendStub": 1, + "app.setWindowIcon": 1, + "QIcon": 1, + "app.setApplicationName": 1, + "app.setOrganizationName": 1, + "app.setOrganizationDomain": 1, + "app.setApplicationVersion": 1, + "PHANTOMJS_VERSION_STRING": 1, + "Phantom": 1, + "phantom": 1, + "phantom.execute": 1, + "app.exec": 1, + "phantom.returnValue": 1, "__OG_MATH_INL__": 2, "og": 1, "OG_INLINE": 41, @@ -12244,8 +13551,6 @@ "Abs": 1, "MASK_SIGNED": 2, "y": 16, - "x": 86, - "float": 74, "Fabs": 1, "f": 104, "uInt": 1, @@ -12261,8 +13566,6 @@ "ceilf": 1, "Ftoi": 1, "@todo": 1, - "needs": 4, - "testing": 2, "note": 1, "sse": 1, "cvttss2si": 2, @@ -12276,23 +13579,18 @@ "fld": 4, "fistp": 3, "//__asm": 3, - "do": 13, - "need": 6, "O_o": 3, "#elif": 7, "OG_ASM_GNU": 4, "__asm__": 4, "__volatile__": 4, "cast": 7, - "instead": 4, "why": 3, - "id": 4, "did": 3, "": 3, "FtoiFast": 2, "Ftol": 1, "": 1, - "Sign": 2, "Fmod": 1, "numerator": 2, "denominator": 2, @@ -12324,8 +13622,9 @@ "expf": 1, "IsPowerOfTwo": 4, "faster": 3, + "two": 2, "known": 1, - "check": 4, + "methods": 2, "moved": 1, "beginning": 1, "HigherPowerOfTwo": 4, @@ -12333,8 +13632,6 @@ "FloorPowerOfTwo": 1, "CeilPowerOfTwo": 1, "ClosestPowerOfTwo": 1, - "high": 5, - "low": 5, "Digits": 1, "digits": 6, "step": 3, @@ -12342,7 +13639,6 @@ "sinf": 1, "ASin": 1, "<=>": 2, - "1": 4, "0f": 2, "HALF_PI": 2, "asinf": 1, @@ -12361,7 +13657,6 @@ "SinCos": 1, "sometimes": 1, "assembler": 1, - "just": 2, "waaayy": 1, "_asm": 1, "fsincos": 1, @@ -12381,65 +13676,79 @@ "sec": 2, "Ms2Sec": 1, "ms": 2, - "BITCOIN_KEY_H": 2, - "": 1, - "": 1, - "EC_KEY": 3, - "definition": 3, - "key_error": 6, - "runtime_error": 2, - "str": 2, - "CKeyID": 5, - "uint160": 8, - "CScriptID": 3, - "CPubKey": 11, - "": 19, - "vchPubKey": 6, - "CKey": 26, - "vchPubKeyIn": 2, - "b": 57, - "a.vchPubKey": 3, - "b.vchPubKey": 3, - "IMPLEMENT_SERIALIZE": 1, - "READWRITE": 1, - "GetID": 1, - "Hash160": 1, - "uint256": 10, - "GetHash": 1, - "Hash": 1, - "vchPubKey.begin": 1, - "vchPubKey.end": 1, - "IsValid": 4, - "vchPubKey.size": 3, - "IsCompressed": 2, - "Raw": 1, - "unsigned": 22, - "secure_allocator": 2, - "CPrivKey": 3, - "CSecret": 4, - "EC_KEY*": 1, - "pkey": 14, - "fSet": 7, - "fCompressedPubKey": 5, - "SetCompressedPubKey": 4, - "Reset": 5, - "IsNull": 1, - "MakeNewKey": 1, - "fCompressed": 3, - "SetPrivKey": 1, - "vchPrivKey": 1, - "SetSecret": 1, - "vchSecret": 1, - "GetSecret": 2, - "GetPrivKey": 1, - "SetPubKey": 1, - "GetPubKey": 5, - "hash": 20, - "vchSig": 18, - "SignCompact": 2, - "SetCompactSignature": 2, - "Verify": 2, - "VerifyCompact": 2, + "NINJA_METRICS_H_": 3, + "int64_t.": 1, + "Metrics": 2, + "module": 1, + "dumps": 1, + "stats": 2, + "actions.": 1, + "To": 1, + "METRIC_RECORD": 4, + "below.": 1, + "metrics": 2, + "hit": 1, + "path.": 2, + "count": 1, + "Total": 1, + "spent": 1, + "int64_t": 3, + "sum": 1, + "scoped": 1, + "recording": 1, + "metric": 2, + "across": 1, + "body": 1, + "macro.": 1, + "ScopedMetric": 4, + "Metric*": 4, + "metric_": 1, + "Timestamp": 1, + "started.": 1, + "Value": 24, + "platform": 2, + "dependent.": 1, + "start_": 1, + "prints": 1, + "report.": 1, + "NewMetric": 2, + "Print": 2, + "summary": 1, + "stdout.": 1, + "Report": 1, + "": 1, + "metrics_": 1, + "Get": 1, + "relative": 2, + "epoch.": 1, + "Epoch": 1, + "varies": 1, + "between": 1, + "platforms": 1, + "useful": 1, + "measuring": 1, + "elapsed": 1, + "time.": 1, + "GetTimeMillis": 1, + "simple": 1, + "stopwatch": 1, + "seconds": 1, + "Restart": 3, + "called.": 1, + "Stopwatch": 2, + "started_": 4, + "Seconds": 1, + "call.": 1, + "Elapsed": 1, + "": 1, + "primary": 1, + "metrics.": 1, + "top": 1, + "recorded": 1, + "metrics_h_metric": 2, + "g_metrics": 3, + "metrics_h_scoped": 1, + "Metrics*": 1, "INTERNAL_SUPPRESS_PROTOBUF_FIELD_DEPRECATION": 1, "": 1, "": 2, @@ -12460,7 +13769,6 @@ "protobuf_AssignDesc_protocol_2dbuffer_2eproto": 4, "protobuf_AddDesc_protocol_2dbuffer_2eproto": 6, "FileDescriptor*": 1, - "file": 31, "DescriptorPool": 3, "generated_pool": 2, "FindFileByName": 1, @@ -12476,7 +13784,6 @@ "_unknown_fields_": 5, "MessageFactory": 3, "generated_factory": 1, - "sizeof": 15, "GOOGLE_PROTOBUF_DECLARE_ONCE": 1, "protobuf_AssignDescriptors_once_": 2, "inline": 39, @@ -12503,25 +13810,18 @@ "const_cast": 3, "string*": 11, "kEmptyString": 12, - "memset": 3, "SharedDtor": 3, "SetCachedSize": 2, - "size": 13, "GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN": 2, "GOOGLE_SAFE_CONCURRENT_WRITES_END": 2, "*default_instance_": 1, "Person*": 7, - "New": 6, - "Clear": 18, "xffu": 3, - "<<": 29, "has_name": 6, - "clear": 3, "mutable_unknown_fields": 4, "MergePartialFromCodedStream": 2, "io": 4, "CodedInputStream*": 2, - "input": 12, "DO_": 4, "EXPRESSION": 2, "uint32": 2, @@ -12530,7 +13830,6 @@ "switch": 3, "WireFormatLite": 9, "GetTagFieldNumber": 1, - "case": 34, "GetTagWireType": 2, "WIRETYPE_LENGTH_DELIMITED": 1, "ReadString": 1, @@ -12540,7 +13839,6 @@ ".data": 3, ".length": 3, "PARSE": 1, - "goto": 156, "handle_uninterpreted": 2, "ExpectAtEnd": 1, "WIRETYPE_END_GROUP": 1, @@ -12548,7 +13846,6 @@ "#undef": 3, "SerializeWithCachedSizes": 2, "CodedOutputStream*": 2, - "output": 21, "SERIALIZE": 2, "WriteString": 1, "unknown_fields": 7, @@ -12563,7 +13860,6 @@ "StringSize": 1, "ComputeUnknownFieldsSize": 1, "GOOGLE_CHECK_NE": 2, - "source": 12, "dynamic_cast_if_available": 1, "": 12, "ReflectionOps": 1, @@ -12576,7 +13872,6 @@ "CopyFrom": 5, "IsInitialized": 3, "Swap": 2, - "other": 17, "swap": 3, "_unknown_fields_.Swap": 1, "Metadata": 3, @@ -12584,6 +13879,436 @@ "metadata": 2, "metadata.descriptor": 1, "metadata.reflection": 1, + "PROTOBUF_protocol_2dbuffer_2eproto__INCLUDED": 3, + "GOOGLE_PROTOBUF_VERSION": 1, + "generated": 2, + "newer": 2, + "protoc": 2, + "incompatible": 2, + "Protocol": 2, + "headers.": 3, + "update": 1, + "GOOGLE_PROTOBUF_MIN_PROTOC_VERSION": 1, + "older": 1, + "regenerate": 1, + "protoc.": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "virtual": 10, + "*this": 1, + "UnknownFieldSet": 2, + "UnknownFieldSet*": 1, + "GetCachedSize": 1, + "clear_name": 2, + "release_name": 2, + "set_allocated_name": 2, + "set_has_name": 7, + "clear_has_name": 5, + "mutable": 1, + "u": 9, + "*name_": 1, + "assign": 3, + "temp": 2, + "SWIG": 2, + "QSCICOMMAND_H": 2, + "__APPLE__": 4, + "": 1, + "": 2, + "": 1, + "QsciScintilla": 7, + "QsciCommand": 7, + "represents": 1, + "editor": 1, + "command": 9, + "keys": 3, + "bound": 4, + "Methods": 1, + "provided": 1, + "binding.": 1, + "Each": 1, + "friendly": 2, + "description": 3, + "dialogs.": 1, + "QSCINTILLA_EXPORT": 2, + "commands": 1, + "assigned": 1, + "key.": 1, + "Command": 4, + "Move": 26, + "down": 12, + "line.": 33, + "LineDown": 1, + "QsciScintillaBase": 100, + "SCI_LINEDOWN": 1, + "Extend": 33, + "selection": 39, + "LineDownExtend": 1, + "SCI_LINEDOWNEXTEND": 1, + "rectangular": 9, + "LineDownRectExtend": 1, + "SCI_LINEDOWNRECTEXTEND": 1, + "Scroll": 5, + "view": 2, + "LineScrollDown": 1, + "SCI_LINESCROLLDOWN": 1, + "LineUp": 1, + "SCI_LINEUP": 1, + "LineUpExtend": 1, + "SCI_LINEUPEXTEND": 1, + "LineUpRectExtend": 1, + "SCI_LINEUPRECTEXTEND": 1, + "LineScrollUp": 1, + "SCI_LINESCROLLUP": 1, + "document.": 8, + "ScrollToStart": 1, + "SCI_SCROLLTOSTART": 1, + "ScrollToEnd": 1, + "SCI_SCROLLTOEND": 1, + "vertically": 1, + "centre": 1, + "VerticalCentreCaret": 1, + "SCI_VERTICALCENTRECARET": 1, + "paragraph.": 4, + "ParaDown": 1, + "SCI_PARADOWN": 1, + "ParaDownExtend": 1, + "SCI_PARADOWNEXTEND": 1, + "ParaUp": 1, + "SCI_PARAUP": 1, + "ParaUpExtend": 1, + "SCI_PARAUPEXTEND": 1, + "left": 7, + "character.": 9, + "CharLeft": 1, + "SCI_CHARLEFT": 1, + "CharLeftExtend": 1, + "SCI_CHARLEFTEXTEND": 1, + "CharLeftRectExtend": 1, + "SCI_CHARLEFTRECTEXTEND": 1, + "CharRight": 1, + "SCI_CHARRIGHT": 1, + "CharRightExtend": 1, + "SCI_CHARRIGHTEXTEND": 1, + "CharRightRectExtend": 1, + "SCI_CHARRIGHTRECTEXTEND": 1, + "word.": 9, + "WordLeft": 1, + "SCI_WORDLEFT": 1, + "WordLeftExtend": 1, + "SCI_WORDLEFTEXTEND": 1, + "WordRight": 1, + "SCI_WORDRIGHT": 1, + "WordRightExtend": 1, + "SCI_WORDRIGHTEXTEND": 1, + "WordLeftEnd": 1, + "SCI_WORDLEFTEND": 1, + "WordLeftEndExtend": 1, + "SCI_WORDLEFTENDEXTEND": 1, + "WordRightEnd": 1, + "SCI_WORDRIGHTEND": 1, + "WordRightEndExtend": 1, + "SCI_WORDRIGHTENDEXTEND": 1, + "part.": 4, + "WordPartLeft": 1, + "SCI_WORDPARTLEFT": 1, + "WordPartLeftExtend": 1, + "SCI_WORDPARTLEFTEXTEND": 1, + "WordPartRight": 1, + "SCI_WORDPARTRIGHT": 1, + "WordPartRightExtend": 1, + "SCI_WORDPARTRIGHTEXTEND": 1, + "document": 16, + "Home": 1, + "SCI_HOME": 1, + "HomeExtend": 1, + "SCI_HOMEEXTEND": 1, + "HomeRectExtend": 1, + "SCI_HOMERECTEXTEND": 1, + "displayed": 10, + "HomeDisplay": 1, + "SCI_HOMEDISPLAY": 1, + "HomeDisplayExtend": 1, + "SCI_HOMEDISPLAYEXTEND": 1, + "HomeWrap": 1, + "SCI_HOMEWRAP": 1, + "HomeWrapExtend": 1, + "SCI_HOMEWRAPEXTEND": 1, + "visible": 6, + "VCHome": 1, + "SCI_VCHOME": 1, + "VCHomeExtend": 1, + "SCI_VCHOMEEXTEND": 1, + "VCHomeRectExtend": 1, + "SCI_VCHOMERECTEXTEND": 1, + "VCHomeWrap": 1, + "SCI_VCHOMEWRAP": 1, + "VCHomeWrapExtend": 1, + "SCI_VCHOMEWRAPEXTEND": 1, + "LineEnd": 1, + "SCI_LINEEND": 1, + "LineEndExtend": 1, + "SCI_LINEENDEXTEND": 1, + "LineEndRectExtend": 1, + "SCI_LINEENDRECTEXTEND": 1, + "LineEndDisplay": 1, + "SCI_LINEENDDISPLAY": 1, + "LineEndDisplayExtend": 1, + "SCI_LINEENDDISPLAYEXTEND": 1, + "LineEndWrap": 1, + "SCI_LINEENDWRAP": 1, + "LineEndWrapExtend": 1, + "SCI_LINEENDWRAPEXTEND": 1, + "DocumentStart": 1, + "SCI_DOCUMENTSTART": 1, + "DocumentStartExtend": 1, + "SCI_DOCUMENTSTARTEXTEND": 1, + "DocumentEnd": 1, + "SCI_DOCUMENTEND": 1, + "DocumentEndExtend": 1, + "SCI_DOCUMENTENDEXTEND": 1, + "page.": 13, + "PageUp": 1, + "SCI_PAGEUP": 1, + "PageUpExtend": 1, + "SCI_PAGEUPEXTEND": 1, + "PageUpRectExtend": 1, + "SCI_PAGEUPRECTEXTEND": 1, + "PageDown": 1, + "SCI_PAGEDOWN": 1, + "PageDownExtend": 1, + "SCI_PAGEDOWNEXTEND": 1, + "PageDownRectExtend": 1, + "SCI_PAGEDOWNRECTEXTEND": 1, + "Stuttered": 4, + "move": 2, + "StutteredPageUp": 1, + "SCI_STUTTEREDPAGEUP": 1, + "extend": 2, + "StutteredPageUpExtend": 1, + "SCI_STUTTEREDPAGEUPEXTEND": 1, + "StutteredPageDown": 1, + "SCI_STUTTEREDPAGEDOWN": 1, + "StutteredPageDownExtend": 1, + "SCI_STUTTEREDPAGEDOWNEXTEND": 1, + "Delete": 10, + "SCI_CLEAR": 1, + "DeleteBack": 1, + "SCI_DELETEBACK": 1, + "DeleteBackNotLine": 1, + "SCI_DELETEBACKNOTLINE": 1, + "left.": 2, + "DeleteWordLeft": 1, + "SCI_DELWORDLEFT": 1, + "right.": 2, + "DeleteWordRight": 1, + "SCI_DELWORDRIGHT": 1, + "DeleteWordRightEnd": 1, + "SCI_DELWORDRIGHTEND": 1, + "DeleteLineLeft": 1, + "SCI_DELLINELEFT": 1, + "DeleteLineRight": 1, + "SCI_DELLINERIGHT": 1, + "LineDelete": 1, + "SCI_LINEDELETE": 1, + "Cut": 2, + "clipboard.": 5, + "LineCut": 1, + "SCI_LINECUT": 1, + "Copy": 2, + "LineCopy": 1, + "SCI_LINECOPY": 1, + "Transpose": 1, + "lines.": 1, + "LineTranspose": 1, + "SCI_LINETRANSPOSE": 1, + "Duplicate": 2, + "LineDuplicate": 1, + "SCI_LINEDUPLICATE": 1, + "whole": 2, + "SelectAll": 1, + "SCI_SELECTALL": 1, + "lines": 3, + "MoveSelectedLinesUp": 1, + "SCI_MOVESELECTEDLINESUP": 1, + "MoveSelectedLinesDown": 1, + "SCI_MOVESELECTEDLINESDOWN": 1, + "selection.": 1, + "SelectionDuplicate": 1, + "SCI_SELECTIONDUPLICATE": 1, + "Convert": 2, + "lower": 1, + "case.": 2, + "SelectionLowerCase": 1, + "SCI_LOWERCASE": 1, + "upper": 1, + "SelectionUpperCase": 1, + "SCI_UPPERCASE": 1, + "SelectionCut": 1, + "SCI_CUT": 1, + "SelectionCopy": 1, + "SCI_COPY": 1, + "Paste": 2, + "SCI_PASTE": 1, + "Toggle": 1, + "insert/overtype.": 1, + "EditToggleOvertype": 1, + "SCI_EDITTOGGLEOVERTYPE": 1, + "Insert": 2, + "dependent": 1, + "newline.": 1, + "Newline": 1, + "SCI_NEWLINE": 1, + "formfeed.": 1, + "Formfeed": 1, + "SCI_FORMFEED": 1, + "Indent": 1, + "Tab": 1, + "SCI_TAB": 1, + "De": 1, + "indent": 1, + "Backtab": 1, + "SCI_BACKTAB": 1, + "Cancel": 2, + "SCI_CANCEL": 1, + "Undo": 2, + "command.": 5, + "SCI_UNDO": 1, + "Redo": 2, + "SCI_REDO": 1, + "Zoom": 2, + "in.": 1, + "ZoomIn": 1, + "SCI_ZOOMIN": 1, + "out.": 1, + "ZoomOut": 1, + "SCI_ZOOMOUT": 1, + "Return": 3, + "executed": 1, + "instance.": 2, + "scicmd": 2, + "Execute": 1, + "Binds": 2, + "binding": 3, + "removed.": 2, + "invalid": 5, + "unchanged.": 1, + "Valid": 1, + "Key_Down": 1, + "Key_Up": 1, + "Key_Left": 1, + "Key_Right": 1, + "Key_Home": 1, + "Key_End": 1, + "Key_PageUp": 1, + "Key_PageDown": 1, + "Key_Delete": 1, + "Key_Insert": 1, + "Key_Escape": 1, + "Key_Backspace": 1, + "Key_Tab": 1, + "Key_Return.": 1, + "Keys": 1, + "SHIFT": 1, + "CTRL": 1, + "ALT": 1, + "META.": 1, + "setAlternateKey": 3, + "validKey": 3, + "setKey": 3, + "altkey": 3, + "alternateKey": 3, + "returned.": 4, + "qkey": 2, + "qaltkey": 2, + "valid": 2, + "QsciCommandSet": 1, + "*qs": 1, + "cmd": 1, + "*desc": 1, + "bindKey": 1, + "qk": 1, + "scik": 1, + "*qsCmd": 1, + "scikey": 1, + "scialtkey": 1, + "*descCmd": 1, + "QSCIPRINTER_H": 2, + "": 1, + "": 1, + "QT_BEGIN_NAMESPACE": 1, + "QRect": 2, + "QPainter": 2, + "QT_END_NAMESPACE": 1, + "QsciPrinter": 9, + "sub": 2, + "Qt": 1, + "QPrinter": 3, + "text": 5, + "Scintilla": 2, + "further": 1, + "classed": 1, + "layout": 1, + "adding": 2, + "headers": 3, + "footers": 2, + "example.": 1, + "Constructs": 1, + "printer": 1, + "paint": 1, + "PrinterMode": 1, + "ScreenResolution": 1, + "Destroys": 1, + "Format": 1, + "drawn": 2, + "painter": 4, + "add": 3, + "customised": 2, + "graphics.": 2, + "drawing": 4, + "actually": 1, + "sized.": 1, + "area": 5, + "draw": 1, + "text.": 3, + "necessary": 1, + "reserve": 1, + "By": 1, + "printable": 1, + "setFullPage": 1, + "because": 2, + "printRange": 2, + "try": 1, + "over": 1, + "pagenr": 2, + "numbered": 1, + "formatPage": 1, + "points": 2, + "font": 2, + "printing.": 2, + "setMagnification": 2, + "magnification": 3, + "mag": 2, + "printing": 2, + "magnification.": 1, + "qsb.": 1, + "negative": 2, + "signifies": 2, + "error.": 1, + "*qsb": 1, + "wrap": 4, + "WrapWord.": 1, + "setWrapMode": 2, + "WrapMode": 3, + "wrapMode": 2, + "wmode.": 1, + "wmode": 1, + "": 2, + "Gui": 1, + "rpc_init": 1, + "rpc_server_loop": 1, "v8": 9, "Scanner": 16, "UnicodeCache*": 4, @@ -12604,7 +14329,6 @@ "ScanHexNumber": 2, "expected_length": 4, "ASSERT": 17, - "prevent": 4, "overflow": 1, "c0_": 64, "d": 8, @@ -12614,7 +14338,6 @@ "STATIC_ASSERT": 5, "Token": 212, "NUM_TOKENS": 1, - "byte": 6, "one_char_tokens": 2, "ILLEGAL": 120, "LPAREN": 2, @@ -12668,7 +14391,6 @@ "ASSIGN": 1, "NE_STRICT": 1, "NE": 1, - "NOT": 3, "INC": 1, "ASSIGN_ADD": 1, "ADD": 1, @@ -12702,10 +14424,6 @@ "IsCarriageReturn": 2, "IsLineFeed": 2, "fall": 2, - "through": 4, - "n": 28, - "u": 9, - "xx": 2, "xxx": 1, "immediately": 1, "octal": 1, @@ -12714,11 +14432,9 @@ "consume": 2, "LiteralScope": 4, "literal": 2, - ".": 16, "X": 2, "E": 3, "l": 1, - "p": 6, "w": 1, "keyword": 1, "Unescaped": 1, @@ -12726,10 +14442,6 @@ "AddLiteralCharAdvance": 3, "literal.Complete": 2, "ScanLiteralUnicodeEscape": 3, - "ENV_H": 3, - "": 1, - "Q_OBJECT": 1, - "*instance": 1, "V8_SCANNER_H_": 3, "ParsingFlags": 1, "kNoParsingFlags": 1, @@ -12740,7 +14452,6 @@ "CLASSIC_MODE": 2, "STRICT_MODE": 2, "EXTENDED_MODE": 2, - "detect": 3, "x16": 1, "x36.": 1, "Utf16CharacterStream": 3, @@ -12803,7 +14514,6 @@ "utf16_literal": 3, "backing_store_.start": 5, "ascii_literal": 3, - "length": 10, "kInitialCapacity": 2, "kGrowthFactory": 2, "kMinConversionSlack": 1, @@ -12835,7 +14545,6 @@ "kNoOctalLocation": 1, "scanner_contants": 1, "current_token": 1, - "location": 6, "current_.location": 2, "literal_ascii_string": 1, "ASSERT_NOT_NULL": 9, @@ -12871,7 +14580,6 @@ "ScanRegExpFlags": 1, "IsIdentifier": 1, "CharacterStream*": 1, - "buffer": 9, "TokenDesc": 3, "LiteralBuffer*": 2, "literal_chars": 1, @@ -12889,89 +14597,179 @@ "desc": 2, "look": 1, "ahead": 1, - "": 2, "smallPrime_t": 1, - "": 2, - "DEFAULT_DELIMITER": 1, - "CsvStreamer": 5, - "ofstream": 1, - "File": 1, - "stream": 6, - "row_buffer": 1, - "Buffer": 10, - "row": 12, - "data": 26, - "flushed/written": 1, - "fields": 4, - "Number": 8, - "columns": 2, - "rows": 3, - "records": 2, - "including": 2, - "header": 7, - "delimiter": 2, - "Delimiter": 1, - "comma": 2, - "sanitize": 1, - "Returns": 2, - "ready": 1, - "into": 6, - "Empty": 1, - "CSV": 4, - "streamer...": 1, - "open": 6, - "writing": 2, - "Same": 1, - "...": 1, - "Opens": 3, - "given": 16, - "path/name": 3, - "Ensures": 1, - "closed": 1, - "saved": 1, - "delimiting": 1, - "add_field": 1, - "still": 3, - "adds": 1, - "field": 5, - "save_fields": 1, - "Call": 2, - "save": 1, - "all": 11, - "writes": 2, - "append": 8, - "Appends": 5, - "quoted": 1, - "needed": 3, - "leading/trailing": 1, - "spaces": 3, - "trimmed": 1, - "Like": 1, - "but": 5, - "specify": 1, - "whether": 4, - "trim": 2, - "either": 4, - "keep": 1, - "writeln": 1, - "Flushes": 1, - "what": 2, - "Saves": 1, - "closes": 1, - "field_count": 1, - "Gets": 2, - "row_count": 1, + "UTILS_H": 3, + "": 1, + "": 1, + "": 1, + "QTemporaryFile": 1, + "showUsage": 1, + "QtMsgType": 1, + "dump_path": 1, + "minidump_id": 1, + "context": 8, + "QVariant": 1, + "coffee2js": 1, + "script": 1, + "injectJsInFrame": 2, + "jsFilePath": 5, + "libraryPath": 5, + "QWebFrame": 4, + "*targetFrame": 4, + "startingScript": 2, + "Encoding": 3, + "jsFileEnc": 2, + "readResourceFileUtf8": 1, + "resourceFilePath": 1, + "loadJSForDebug": 2, + "autorun": 2, + "cleanupFromDebug": 1, + "findScript": 1, + "jsFromScriptFile": 1, + "scriptPath": 1, + "enc": 1, + "shouldn": 1, + "instantiated": 1, + "QTemporaryFile*": 2, + "m_tempHarness": 1, + "We": 1, + "ourselves": 1, + "m_tempWrapper": 1, + "V8_DECLARE_ONCE": 1, + "init_once": 2, + "V8": 21, + "is_running_": 6, + "has_been_set_up_": 4, + "has_been_disposed_": 6, + "has_fatal_error_": 5, + "use_crankshaft_": 6, + "List": 3, + "": 3, + "call_completed_callbacks_": 16, + "LazyMutex": 1, + "entropy_mutex": 1, + "LAZY_MUTEX_INITIALIZER": 1, + "EntropySource": 3, + "entropy_source": 4, + "Deserializer*": 2, + "des": 3, + "FlagList": 1, + "EnforceFlagImplications": 1, + "InitializeOncePerProcess": 4, + "Isolate": 9, + "CurrentPerIsolateThreadData": 4, + "EnterDefaultIsolate": 1, + "thread_id": 1, + ".Equals": 1, + "ThreadId": 1, + "Current": 5, + "isolate": 15, + "IsDead": 2, + "Isolate*": 6, + "SetFatalError": 2, + "TearDown": 5, + "IsDefaultIsolate": 1, + "ElementsAccessor": 2, + "LOperand": 2, + "TearDownCaches": 1, + "RegisteredExtension": 1, + "UnregisterAll": 1, + "OS": 3, + "seed_random": 2, + "FLAG_random_seed": 2, + "val": 3, + "ScopedLock": 1, + "entropy_mutex.Pointer": 1, + "random": 1, + "random_base": 3, + "xFFFF": 2, + "FFFF": 1, + "SetEntropySource": 2, + "SetReturnAddressLocationResolver": 3, + "ReturnAddressLocationResolver": 2, + "resolver": 3, + "StackFrame": 1, + "Random": 3, + "Context*": 4, + "IsGlobalContext": 1, + "ByteArray*": 1, + "seed": 2, + "random_seed": 1, + "": 1, + "GetDataStartAddress": 1, + "RandomPrivate": 2, + "private_random_seed": 1, + "IdleNotification": 3, + "hint": 3, + "FLAG_use_idle_notification": 1, + "HEAP": 1, + "AddCallCompletedCallback": 2, + "CallCompletedCallback": 4, + "callback": 7, + "Lazy": 1, + "init.": 1, + "Add": 1, + "RemoveCallCompletedCallback": 2, + "Remove": 1, + "FireCallCompletedCallback": 2, + "HandleScopeImplementer*": 1, + "handle_scope_implementer": 5, + "CallDepthIsZero": 1, + "IncrementCallDepth": 1, + "DecrementCallDepth": 1, + "union": 1, + "double_value": 1, + "uint64_t_value": 1, + "double_int_union": 2, + "Object*": 4, + "FillHeapNumberWithRandom": 2, + "heap_number": 4, + "random_bits": 2, + "binary_million": 3, + "r.double_value": 3, + "r.uint64_t_value": 1, + "HeapNumber": 1, + "set_value": 1, + "InitializeOncePerProcessImpl": 3, + "SetUp": 4, + "FLAG_crankshaft": 1, + "Serializer": 1, + "SupportsCrankshaft": 1, + "PostSetUp": 1, + "RuntimeProfiler": 1, + "GlobalSetUp": 1, + "FLAG_stress_compaction": 1, + "FLAG_force_marking_deque_overflows": 1, + "FLAG_gc_global": 1, + "FLAG_max_new_space_size": 1, + "kPageSizeBits": 1, + "SetUpCaches": 1, + "SetUpJSCallerSavedCodeData": 1, + "SamplerRegistry": 1, + "ExternalReference": 1, + "CallOnce": 1, + "V8_V8_H_": 3, + "GOOGLE3": 2, + "NDEBUG": 4, + "both": 1, + "Deserializer": 1, + "AllStatic": 1, + "IsRunning": 1, + "UseCrankshaft": 1, + "FatalProcessOutOfMemory": 1, + "take_snapshot": 1, + "NilValue": 1, + "kNullValue": 1, + "kUndefinedValue": 1, + "EqualityKind": 1, + "kStrictEquality": 1, + "kNonStrictEquality": 1, "PY_SSIZE_T_CLEAN": 1, "Py_PYTHON_H": 1, - "#error": 9, "Python": 1, "compile": 1, - "C": 6, "extensions": 1, - "please": 2, - "install": 3, "development": 1, - "version": 38, "Python.": 1, "": 1, "offsetof": 2, @@ -13028,9 +14826,7 @@ "*buf": 1, "PyObject": 221, "*obj": 2, - "len": 15, "itemsize": 2, - "readonly": 3, "ndim": 2, "*format": 1, "*shape": 1, @@ -13155,7 +14951,6 @@ "PyObject_DelAttrString": 2, "__Pyx_NAMESTR": 3, "__Pyx_DOCSTR": 3, - "__cplusplus": 12, "__PYX_EXTERN_C": 2, "_USE_MATH_DEFINES": 1, "": 1, @@ -13249,7 +15044,6 @@ "complex": 2, "__pyx_t_float_complex": 27, "_Complex": 2, - "real": 4, "imag": 2, "__pyx_t_double_complex": 27, "npy_cfloat": 1, @@ -13359,7 +15153,6 @@ "cabs": 1, "cpow": 1, "__Pyx_PyInt_AsUnsignedChar": 1, - "short": 5, "__Pyx_PyInt_AsUnsignedShort": 1, "__Pyx_PyInt_AsUnsignedInt": 1, "__Pyx_PyInt_AsChar": 1, @@ -13581,7 +15374,6 @@ "NPY_F_CONTIGUOUS": 1, "__pyx_k_tuple_8": 1, "__pyx_L7": 2, - "buf": 14, "PyArray_DATA": 1, "strides": 5, "malloc": 2, @@ -13628,7 +15420,6 @@ "__pyx_L2": 2, "__pyx_pf_5numpy_7ndarray_1__releasebuffer__": 2, "PyArray_HASFIELDS": 1, - "free": 4, "*__pyx_f_5numpy_PyArray_MultiIterNew1": 1, "*__pyx_v_a": 5, "PyArray_MultiIterNew": 5, @@ -13655,7 +15446,6 @@ "__pyx_v_fields": 7, "__pyx_v_childname": 4, "__pyx_v_new_offset": 5, - "names": 3, "PyTuple_GET_SIZE": 2, "PyTuple_GET_ITEM": 3, "PyObject_GetItem": 1, @@ -13673,1817 +15463,27 @@ "elsize": 1, "__pyx_k_tuple_16": 1, "__pyx_L10": 2, - "Py_EQ": 6, - "": 2, - "main": 2, - "cout": 2, - "endl": 1, - "V8_DECLARE_ONCE": 1, - "init_once": 2, - "V8": 21, - "is_running_": 6, - "has_been_set_up_": 4, - "has_been_disposed_": 6, - "has_fatal_error_": 5, - "use_crankshaft_": 6, - "List": 3, - "": 3, - "call_completed_callbacks_": 16, - "LazyMutex": 1, - "entropy_mutex": 1, - "LAZY_MUTEX_INITIALIZER": 1, - "EntropySource": 3, - "entropy_source": 4, - "Deserializer*": 2, - "des": 3, - "FlagList": 1, - "EnforceFlagImplications": 1, - "InitializeOncePerProcess": 4, - "Isolate": 9, - "CurrentPerIsolateThreadData": 4, - "EnterDefaultIsolate": 1, - "thread_id": 1, - ".Equals": 1, - "ThreadId": 1, - "Current": 5, - "isolate": 15, - "IsDead": 2, - "Isolate*": 6, - "SetFatalError": 2, - "TearDown": 5, - "IsDefaultIsolate": 1, - "ElementsAccessor": 2, - "LOperand": 2, - "TearDownCaches": 1, - "RegisteredExtension": 1, - "UnregisterAll": 1, - "OS": 3, - "seed_random": 2, - "uint32_t*": 7, - "FLAG_random_seed": 2, - "val": 3, - "ScopedLock": 1, - "entropy_mutex.Pointer": 1, - "random": 1, - "random_base": 3, - "xFFFF": 2, - "FFFF": 1, - "SetEntropySource": 2, - "SetReturnAddressLocationResolver": 3, - "ReturnAddressLocationResolver": 2, - "resolver": 3, - "StackFrame": 1, - "Random": 3, - "Context*": 4, - "IsGlobalContext": 1, - "ByteArray*": 1, - "seed": 2, - "random_seed": 1, - "": 1, - "GetDataStartAddress": 1, - "RandomPrivate": 2, - "private_random_seed": 1, - "IdleNotification": 3, - "hint": 3, - "FLAG_use_idle_notification": 1, - "HEAP": 1, - "AddCallCompletedCallback": 2, - "CallCompletedCallback": 4, - "callback": 7, - "Lazy": 1, - "init.": 1, - "Add": 1, - "RemoveCallCompletedCallback": 2, - "Remove": 1, - "FireCallCompletedCallback": 2, - "HandleScopeImplementer*": 1, - "handle_scope_implementer": 5, - "CallDepthIsZero": 1, - "IncrementCallDepth": 1, - "DecrementCallDepth": 1, - "union": 1, - "double_value": 1, - "uint64_t_value": 1, - "double_int_union": 2, - "Object*": 4, - "FillHeapNumberWithRandom": 2, - "heap_number": 4, - "random_bits": 2, - "binary_million": 3, - "r.double_value": 3, - "r.uint64_t_value": 1, - "HeapNumber": 1, - "set_value": 1, - "InitializeOncePerProcessImpl": 3, - "SetUp": 4, - "FLAG_crankshaft": 1, - "Serializer": 1, - "enabled": 4, - "CPU": 5, - "SupportsCrankshaft": 1, - "PostSetUp": 1, - "RuntimeProfiler": 1, - "GlobalSetUp": 1, - "FLAG_stress_compaction": 1, - "FLAG_force_marking_deque_overflows": 1, - "FLAG_gc_global": 1, - "FLAG_max_new_space_size": 1, - "kPageSizeBits": 1, - "SetUpCaches": 1, - "SetUpJSCallerSavedCodeData": 1, - "SamplerRegistry": 1, - "ExternalReference": 1, - "CallOnce": 1, - "LIBCANIH": 2, - "": 1, - "": 1, - "int64": 1, - "//#define": 1, - "DEBUG": 5, - "dout": 2, - "cerr": 1, - "libcanister": 2, - "//the": 8, - "canmem": 22, - "generic": 1, - "memory": 14, - "container": 2, - "commonly": 1, - "//throughout": 1, - "canister": 14, - "framework": 1, - "hold": 1, - "uncertain": 1, - "//length": 1, - "contain": 1, - "null": 3, - "bytes.": 1, - "raw": 2, - "absolute": 1, - "//creates": 3, - "unallocated": 1, - "allocsize": 1, - "allocated": 2, - "blank": 1, - "strdata": 1, - "//automates": 1, - "creation": 1, - "zero": 5, - "limited": 2, - "canmems": 1, - "//cleans": 1, - "zeromem": 1, - "//overwrites": 2, - "fragmem": 1, - "fragment": 2, - "notation": 1, - "countlen": 1, - "//counts": 1, - "strings": 1, - "//removes": 1, - "nulls": 1, - "//returns": 2, - "//contains": 2, - "information": 3, - "about": 6, - "caninfo": 2, - "path": 8, - "//physical": 1, - "internalname": 1, - "//a": 1, - "numfiles": 1, - "files": 6, - "//necessary": 1, - "canfile": 7, - "//this": 1, - "holds": 2, - "within": 4, - "//canister": 1, - "canister*": 1, - "parent": 1, - "//internal": 1, - "//use": 1, - "their": 6, - "own.": 1, - "newline": 2, - "delimited": 2, - "list": 3, - "container.": 1, - "TOC": 1, - "info": 2, - "general": 1, - "canfiles": 1, - "recommended": 1, - "programs": 4, - "modify": 1, - "//these": 1, - "directly": 2, - "enforced.": 1, - "canfile*": 1, - "//if": 1, - "write": 8, - "routines": 1, - "anything": 1, - "//maximum": 1, - "//time": 1, - "whatever": 1, - "suits": 1, - "your": 12, - "application.": 1, - "cachemax": 2, - "cachecnt": 1, - "//number": 1, - "cache": 2, - "//both": 1, - "initialize": 1, - "physical": 4, - "fspath": 3, - "//destroys": 1, - "flushing": 1, - "modded": 1, - "buffers": 3, - "course": 2, - "//open": 1, - "//does": 1, - "exist": 2, - "//close": 1, - "flush": 1, - "//deletes": 1, - "inside": 1, - "delFile": 1, - "//pulls": 1, - "contents": 3, - "disk": 2, - "getFile": 1, - "does": 4, - "otherwise": 1, - "overwrites": 1, - "writeFile": 2, - "//get": 1, - "containing": 2, - "//list": 1, - "paths": 1, - "getTOC": 1, - "//brings": 1, - "back": 1, - "limit": 1, - "//important": 1, - "sCFID": 2, - "safe": 4, - "CFID": 2, - "avoid": 1, - "uncaching": 1, - "//really": 1, - "internally": 1, - "harm.": 1, - "cacheclean": 1, - "dFlush": 1, - "Gui": 1, - "Q_OS_LINUX": 2, - "": 1, - "QT_VERSION": 1, - "QT_VERSION_CHECK": 1, - "Something": 1, - "wrong": 1, - "setup.": 1, - "Please": 4, - "mailing": 1, - "argc": 2, - "char**": 2, - "argv": 2, - "google_breakpad": 1, - "ExceptionHandler": 1, - "eh": 2, - "qInstallMsgHandler": 1, - "QApplication": 1, - "app": 1, - "STATIC_BUILD": 1, - "Q_INIT_RESOURCE": 2, - "WebKit": 1, - "InspectorBackendStub": 1, - "app.setWindowIcon": 1, - "QIcon": 1, - "app.setApplicationName": 1, - "app.setOrganizationName": 1, - "app.setOrganizationDomain": 1, - "app.setApplicationVersion": 1, - "PHANTOMJS_VERSION_STRING": 1, - "Phantom": 1, - "phantom": 1, - "phantom.execute": 1, - "app.exec": 1, - "phantom.returnValue": 1, - "GDSDBREADER_H": 3, - "": 1, - "GDS_DIR": 1, - "level": 10, - "LEVEL_ONE": 1, - "LEVEL_TWO": 1, - "LEVEL_THREE": 1, - "dbDataStructure": 2, - "label": 1, - "quint32": 3, - "depth": 1, - "userIndex": 1, - "QByteArray": 1, - "COMPRESSED": 1, - "optimize": 1, - "ram": 1, - "decompressed": 1, - "quint64": 1, - "uniqueID": 1, - "QVector": 2, - "": 1, - "nextItems": 1, - "": 1, - "nextItemsIndices": 1, - "dbDataStructure*": 1, - "father": 1, - "fatherIndex": 1, - "noFatherRoot": 1, - "tell": 1, - "node": 1, - "root": 1, - "so": 2, - "hasn": 1, - "argument": 1, - "overload.": 1, - "myclass.label": 2, - "myclass.depth": 2, - "myclass.userIndex": 2, - "qCompress": 2, - "myclass.data": 4, - "myclass.uniqueID": 2, - "myclass.nextItemsIndices": 2, - "myclass.fatherIndex": 2, - "myclass.noFatherRoot": 2, - "myclass.fileName": 2, - "myclass.firstLineData": 4, - "myclass.linesNumbers": 2, - "QDataStream": 2, - "myclass": 1, - "//Don": 1, - "read": 21, - "qUncompress": 2, - "mainpage": 1, - "library": 14, - "Broadcom": 3, - "BCM": 14, - "Raspberry": 6, - "Pi": 5, - "RPi": 17, - "It": 7, - "provides": 3, - "access": 17, - "GPIO": 87, - "IO": 2, - "functions": 19, - "chip": 9, - "allowing": 3, - "pins": 40, - "pin": 90, - "IDE": 4, - "plug": 3, - "board": 2, - "external": 3, - "devices.": 1, - "reading": 3, - "digital": 2, - "inputs": 2, - "setting": 2, - "outputs": 1, - "SPI": 44, - "I2C": 29, - "accessing": 2, - "timers.": 1, - "Pin": 65, - "event": 3, - "detection": 2, - "supported": 3, - "polling": 1, - "interrupts": 1, - "compatible": 1, - "installs": 1, - "non": 2, - "shared": 2, - "Linux": 2, - "based": 4, - "distro": 1, - "clearly": 1, - "except": 2, - "another": 1, - "package": 1, - "documentation": 3, - "refers": 1, - "downloaded": 1, - "http": 11, - "//www.airspayce.com/mikem/bcm2835/bcm2835": 1, - "tar.gz": 1, - "You": 9, - "find": 2, - "latest": 2, - "//www.airspayce.com/mikem/bcm2835": 1, - "Several": 1, - "provided.": 1, - "Based": 1, - "//elinux.org/RPi_Low": 1, - "level_peripherals": 1, - "//www.raspberrypi.org/wp": 1, - "content/uploads/2012/02/BCM2835": 1, - "ARM": 5, - "Peripherals.pdf": 1, - "//www.scribd.com/doc/101830961/GPIO": 2, - "Pads": 3, - "Control2": 2, - "also": 3, - "online": 1, - "help": 1, - "discussion": 1, - "//groups.google.com/group/bcm2835": 1, - "group": 23, - "questions": 1, - "discussions": 1, - "topic.": 1, - "Do": 1, - "contact": 1, - "author": 3, - "unless": 1, - "discuss": 1, - "commercial": 1, - "licensing.": 1, - "Tested": 1, - "debian6": 1, - "wheezy": 3, - "raspbian": 3, - "Occidentalisv01": 2, - "CAUTION": 1, - "been": 14, - "observed": 1, - "enables": 3, - "such": 4, - "bcm2835_gpio_len": 5, - "pulled": 1, - "LOW": 8, - "cause": 1, - "temporary": 1, - "hangs": 1, - "Occidentalisv01.": 1, - "Reason": 1, - "yet": 1, - "determined": 1, - "suspect": 1, - "handler": 1, - "hitting": 1, - "hard": 1, - "loop": 2, - "those": 3, - "OSs.": 1, - "friends": 2, - "disable": 2, - "bcm2835_gpio_cler_len": 1, - "use.": 1, - "par": 9, - "Installation": 1, - "consists": 1, - "installed": 1, - "usual": 3, - "places": 1, - "#": 1, - "download": 2, - "say": 1, - "bcm2835": 7, - "xx.tar.gz": 2, - "tar": 1, - "zxvf": 1, - "cd": 1, - "./configure": 1, - "sudo": 2, - "endcode": 2, - "Physical": 21, - "Addresses": 6, - "bcm2835_peri_read": 3, - "bcm2835_peri_write": 3, - "bcm2835_peri_set_bits": 2, - "peripheral": 14, - "register": 17, - "functions.": 4, - "They": 1, - "designed": 3, - "addresses": 4, - "described": 1, - "section": 6, - "BCM2835": 2, - "Peripherals": 1, - "manual.": 1, - "FFFFFF": 1, - "peripherals.": 1, - "bus": 4, - "peripherals": 2, - "set": 18, - "map": 3, - "onto": 1, - "address": 13, - "starting": 1, - "E000000.": 1, - "Thus": 1, - "advertised": 1, - "manual": 8, - "Ennnnnn": 1, - "available": 6, - "nnnnnn.": 1, - "registers": 12, - "following": 2, - "externals": 1, - "bcm2835_gpio": 2, - "bcm2835_pwm": 2, - "bcm2835_clk": 2, - "bcm2835_pads": 2, - "bcm2835_spio0": 1, - "bcm2835_st": 1, - "bcm2835_bsc0": 1, - "bcm2835_bsc1": 1, - "Numbering": 1, - "numbering": 1, - "inconsistent": 1, - "underlying": 4, - "numbering.": 1, - "//elinux.org/RPi_BCM2835_GPIOs": 1, - "well": 1, - "power": 1, - "ground": 1, - "pins.": 1, - "Not": 4, - "header.": 1, - "Version": 40, - "P5": 6, - "connector": 1, - "V": 2, - "Gnd.": 1, - "passed": 4, - "_not_": 1, - "number.": 1, - "There": 1, - "symbolic": 1, - "definitions": 3, - "convenience.": 1, - "See": 7, - "ref": 32, - "RPiGPIOPin.": 22, - "Pins": 2, - "bcm2835_spi_*": 1, - "allow": 5, - "SPI0": 17, - "send": 3, - "received": 3, - "Serial": 3, - "Peripheral": 6, - "Interface": 2, - "more": 4, - "//en.wikipedia.org/wiki/Serial_Peripheral_Interface_Bus": 1, - "When": 12, - "bcm2835_spi_begin": 3, - "changes": 2, - "bahaviour": 1, - "behaviour": 1, - "order": 14, - "support": 4, - "SPI.": 1, - "While": 1, - "bcm2835_spi_gpio_write": 1, - "bcm2835_spi_end": 4, - "revert": 1, - "configured": 1, - "controled": 1, - "bcm2835_gpio_*": 1, - "calls.": 1, - "P1": 56, - "MOSI": 8, - "MISO": 6, - "CLK": 6, - "CE0": 5, - "CE1": 6, - "bcm2835_i2c_*": 2, - "BSC": 10, - "generically": 1, - "referred": 1, - "I": 4, - "//en.wikipedia.org/wiki/I": 1, - "C2": 1, - "B2C": 1, - "V2": 2, - "SDA": 3, - "SLC": 1, - "Real": 1, - "Time": 1, - "performance": 2, - "constraints": 2, - "i.e.": 1, - "they": 2, - "Such": 1, - "part": 1, - "kernel": 4, - "usually": 2, - "subject": 1, - "paging": 1, - "swapping": 2, - "things": 1, - "besides": 1, - "running": 1, - "program.": 1, - "means": 8, - "expect": 2, - "programs.": 1, - "In": 2, - "particular": 1, - "guarantee": 1, - "bcm2835_delay": 5, - "bcm2835_delayMicroseconds": 6, - "exactly": 2, - "requested.": 1, - "fact": 2, - "depending": 1, - "activity": 1, - "host": 1, - "etc": 1, - "might": 1, - "significantly": 1, - "longer": 1, - "delay": 9, - "times": 2, - "asked": 1, - "for.": 1, - "So": 1, - "dont": 1, - "request.": 1, - "Arjan": 2, - "reports": 1, - "sched_param": 1, - "sp": 4, - "sp.sched_priority": 1, - "sched_get_priority_max": 1, - "SCHED_FIFO": 2, - "sched_setscheduler": 1, - "mlockall": 1, - "MCL_CURRENT": 1, - "MCL_FUTURE": 1, - "Open": 2, - "Source": 2, - "Licensing": 2, - "GPL": 2, - "appropriate": 7, - "option": 1, - "share": 2, - "application": 2, - "everyone": 1, - "distribute": 1, - "give": 2, - "them": 1, - "who": 1, - "uses": 4, - "wish": 2, - "software": 1, - "under": 2, - "contribute": 1, - "community": 1, - "accordance": 1, - "distributed.": 1, - "//www.gnu.org/copyleft/gpl.html": 1, - "COPYING": 1, - "Acknowledgements": 1, - "Some": 1, - "inspired": 2, - "Dom": 1, - "Gert.": 1, - "Alan": 1, - "Barr.": 1, - "Revision": 1, - "History": 1, - "Initial": 1, - "release": 1, - "Minor": 1, - "bug": 1, - "fixes": 1, - "Added": 11, - "bcm2835_spi_transfern": 3, - "Fixed": 4, - "problem": 2, - "prevented": 1, - "used.": 2, - "Reported": 5, - "David": 1, - "Robinson.": 1, - "bcm2835_close": 4, - "deinit": 1, - "library.": 3, - "Suggested": 1, - "sar": 1, - "Ortiz": 1, - "Document": 1, - "Functions": 1, - "bcm2835_gpio_ren": 3, - "bcm2835_gpio_fen": 3, - "bcm2835_gpio_hen": 3, - "bcm2835_gpio_aren": 3, - "bcm2835_gpio_afen": 3, - "now": 4, - "specified.": 1, - "Other": 1, - "were": 1, - "already": 1, - "previously": 10, - "stay": 1, - "enabled.": 1, - "bcm2835_gpio_clr_ren": 2, - "bcm2835_gpio_clr_fen": 2, - "bcm2835_gpio_clr_hen": 2, - "bcm2835_gpio_clr_len": 2, - "bcm2835_gpio_clr_aren": 2, - "bcm2835_gpio_clr_afen": 2, - "enable": 3, - "individual": 1, - "suggested": 3, - "Andreas": 1, - "Sundstrom.": 1, - "bcm2835_spi_transfernb": 2, - "write.": 1, - "Improvements": 3, - "barrier": 3, - "maddin.": 1, - "contributed": 1, - "mikew": 1, - "noticed": 1, - "mallocing": 1, - "mmaps": 1, - "/dev/mem.": 1, - "removed": 1, - "mallocs": 1, - "frees": 1, - "found": 1, - "nanosleep": 7, - "takes": 1, - "least": 2, - "us.": 1, - "link": 3, - "version.": 1, - "doc": 1, - "Also": 1, - "added": 2, - "define": 2, - "passwrd": 1, - "Gert": 1, - "says": 1, - "pad": 4, - "settings.": 1, - "Changed": 1, - "collisions": 1, - "wiringPi.": 1, - "Macros": 2, - "delayMicroseconds": 3, - "disabled": 2, - "defining": 1, - "BCM2835_NO_DELAY_COMPATIBILITY": 2, - "incorrect": 2, - "Hardware": 1, - "pointers": 2, - "initialisation": 2, - "externally": 1, - "bcm2835_spi0.": 1, - "compiles": 1, - "even": 2, - "CLOCK_MONOTONIC_RAW": 1, - "instead.": 1, - "errors": 1, - "divider": 15, - "frequencies": 2, - "MHz": 14, - "clock.": 6, - "Ben": 1, - "Simpson.": 1, - "examples": 1, - "Mark": 5, - "Wolfe.": 1, - "bcm2835_gpio_set_multi": 2, - "bcm2835_gpio_clr_multi": 2, - "bcm2835_gpio_write_multi": 4, - "mask": 20, - "once.": 1, - "Requested": 2, - "Sebastian": 2, - "Loncar.": 2, - "bcm2835_gpio_write_mask.": 1, - "Changes": 1, - "timer": 2, - "counter": 1, - "clock_gettime": 1, - "improved": 1, - "accuracy.": 1, - "No": 2, - "lrt": 1, - "now.": 1, - "Contributed": 1, - "van": 1, - "Vught.": 1, - "Removed": 1, - "inlines": 1, - "patch": 1, - "don": 1, - "seem": 1, - "work": 1, - "everywhere.": 1, - "olly.": 1, - "Patch": 2, - "Dootson": 2, - "/dev/mem": 4, - "granted.": 1, - "susceptible": 1, - "bit": 19, - "overruns.": 1, - "courtesy": 1, - "Jeremy": 1, - "Mortis.": 1, - "BCM2835_GPFEN0": 2, - "broke": 1, - "ability": 1, - "falling": 4, - "edge": 8, - "events.": 1, - "Dootson.": 2, - "bcm2835_i2c_set_baudrate": 2, - "bcm2835_i2c_read_register_rs.": 1, - "bcm2835_i2c_read": 4, - "bcm2835_i2c_write": 4, - "fix": 1, - "ocasional": 1, - "reads": 2, - "completing.": 1, - "Patched": 1, - "atched": 1, - "his": 1, - "submitted": 1, - "load": 1, - "processes.": 1, - "Updated": 1, - "distribution": 1, - "details": 1, - "airspayce.com": 1, - "missing": 1, - "unmapmem": 1, - "pads": 7, - "leak.": 1, - "Hartmut": 1, - "Henkel.": 1, - "Mike": 1, - "McCauley": 1, - "mikem@airspayce.com": 1, - "DO": 1, - "CONTACT": 1, - "THE": 2, - "AUTHOR": 1, - "DIRECTLY": 1, - "USE": 1, - "LISTS": 1, - "BCM2835_H": 3, - "defgroup": 7, - "constants": 1, - "Constants": 1, - "passing": 1, - "values": 3, - "here": 1, - "@": 14, - "HIGH": 12, - "volts": 2, - "pin.": 21, - "Speed": 1, - "core": 1, - "clock": 21, - "core_clk": 1, - "BCM2835_CORE_CLK_HZ": 1, - "Base": 17, - "Address": 10, - "BCM2835_PERI_BASE": 9, - "System": 10, - "Timer": 9, - "BCM2835_ST_BASE": 1, - "BCM2835_GPIO_PADS": 2, - "Clock/timer": 1, - "BCM2835_CLOCK_BASE": 1, - "BCM2835_GPIO_BASE": 6, - "BCM2835_SPI0_BASE": 1, - "BSC0": 2, - "BCM2835_BSC0_BASE": 1, - "PWM": 2, - "BCM2835_GPIO_PWM": 1, - "C000": 1, - "BSC1": 2, - "BCM2835_BSC1_BASE": 1, - "ST": 1, - "registers.": 10, - "Available": 8, - "bcm2835_init": 11, - "volatile": 13, - "*bcm2835_st": 1, - "*bcm2835_gpio": 1, - "*bcm2835_pwm": 1, - "*bcm2835_clk": 1, - "PADS": 1, - "*bcm2835_pads": 1, - "*bcm2835_spi0": 1, - "*bcm2835_bsc0": 1, - "*bcm2835_bsc1": 1, - "Size": 2, - "BCM2835_PAGE_SIZE": 1, - "*1024": 2, - "BCM2835_BLOCK_SIZE": 1, - "offsets": 2, - "BCM2835_GPIO_BASE.": 1, - "Offsets": 1, - "bytes": 29, - "per": 3, - "Register": 1, - "View": 1, - "BCM2835_GPFSEL0": 1, - "Function": 8, - "BCM2835_GPFSEL1": 1, - "BCM2835_GPFSEL2": 1, - "BCM2835_GPFSEL3": 1, - "BCM2835_GPFSEL4": 1, - "BCM2835_GPFSEL5": 1, - "BCM2835_GPSET0": 1, - "Output": 6, - "Set": 2, - "BCM2835_GPSET1": 1, - "BCM2835_GPCLR0": 1, - "BCM2835_GPCLR1": 1, - "BCM2835_GPLEV0": 1, - "Level": 2, - "BCM2835_GPLEV1": 1, - "BCM2835_GPEDS0": 1, - "Event": 11, - "Detect": 35, - "Status": 6, - "BCM2835_GPEDS1": 1, - "BCM2835_GPREN0": 1, - "Rising": 8, - "Edge": 16, - "Enable": 38, - "BCM2835_GPREN1": 1, - "Falling": 8, - "BCM2835_GPFEN1": 1, - "BCM2835_GPHEN0": 1, - "High": 4, - "BCM2835_GPHEN1": 1, - "BCM2835_GPLEN0": 1, - "Low": 5, - "BCM2835_GPLEN1": 1, - "BCM2835_GPAREN0": 1, - "Async.": 4, - "BCM2835_GPAREN1": 1, - "BCM2835_GPAFEN0": 1, - "BCM2835_GPAFEN1": 1, - "BCM2835_GPPUD": 1, - "Pull": 11, - "up/down": 10, - "BCM2835_GPPUDCLK0": 1, - "Clock": 11, - "BCM2835_GPPUDCLK1": 1, - "bcm2835PortFunction": 1, - "Port": 1, - "select": 9, - "modes": 1, - "bcm2835_gpio_fsel": 2, - "BCM2835_GPIO_FSEL_INPT": 1, - "b000": 1, - "Input": 2, - "BCM2835_GPIO_FSEL_OUTP": 1, - "b001": 1, - "BCM2835_GPIO_FSEL_ALT0": 1, - "b100": 1, - "Alternate": 6, - "BCM2835_GPIO_FSEL_ALT1": 1, - "b101": 1, - "BCM2835_GPIO_FSEL_ALT2": 1, - "b110": 1, - "BCM2835_GPIO_FSEL_ALT3": 1, - "b111": 2, - "BCM2835_GPIO_FSEL_ALT4": 1, - "b011": 1, - "BCM2835_GPIO_FSEL_ALT5": 1, - "b010": 1, - "BCM2835_GPIO_FSEL_MASK": 1, - "bits": 11, - "bcm2835FunctionSelect": 2, - "bcm2835PUDControl": 4, - "Pullup/Pulldown": 1, - "bcm2835_gpio_pud": 5, - "BCM2835_GPIO_PUD_OFF": 1, - "b00": 1, - "Off": 3, - "pull": 1, - "BCM2835_GPIO_PUD_DOWN": 1, - "b01": 1, - "Down": 1, - "BCM2835_GPIO_PUD_UP": 1, - "b10": 1, - "Up": 1, - "Pad": 11, - "BCM2835_PADS_GPIO_0_27": 1, - "BCM2835_PADS_GPIO_28_45": 1, - "BCM2835_PADS_GPIO_46_53": 1, - "Control": 6, - "masks": 1, - "BCM2835_PAD_PASSWRD": 1, - "Password": 1, - "BCM2835_PAD_SLEW_RATE_UNLIMITED": 1, - "Slew": 1, - "rate": 3, - "unlimited": 1, - "BCM2835_PAD_HYSTERESIS_ENABLED": 1, - "Hysteresis": 1, - "BCM2835_PAD_DRIVE_2mA": 1, - "mA": 8, - "drive": 8, - "BCM2835_PAD_DRIVE_4mA": 1, - "BCM2835_PAD_DRIVE_6mA": 1, - "BCM2835_PAD_DRIVE_8mA": 1, - "BCM2835_PAD_DRIVE_10mA": 1, - "BCM2835_PAD_DRIVE_12mA": 1, - "BCM2835_PAD_DRIVE_14mA": 1, - "BCM2835_PAD_DRIVE_16mA": 1, - "bcm2835PadGroup": 4, - "specification": 1, - "bcm2835_gpio_pad": 2, - "BCM2835_PAD_GROUP_GPIO_0_27": 1, - "BCM2835_PAD_GROUP_GPIO_28_45": 1, - "BCM2835_PAD_GROUP_GPIO_46_53": 1, - "Numbers": 1, - "Here": 1, - "terms": 4, - "numbers.": 1, - "These": 6, - "requiring": 1, - "bin": 1, - "connected": 1, - "adopt": 1, - "slightly": 1, - "pinouts": 1, - "these": 1, - "RPI_V2_*.": 1, - "At": 1, - "bootup": 1, - "UART0_TXD": 3, - "UART0_RXD": 3, - "ie": 3, - "alt0": 1, - "respectively": 1, - "dedicated": 1, - "cant": 1, - "controlled": 1, - "independently": 1, - "RPI_GPIO_P1_03": 6, - "RPI_GPIO_P1_05": 6, - "RPI_GPIO_P1_07": 1, - "RPI_GPIO_P1_08": 1, - "defaults": 4, - "alt": 4, - "RPI_GPIO_P1_10": 1, - "RPI_GPIO_P1_11": 1, - "RPI_GPIO_P1_12": 1, - "RPI_GPIO_P1_13": 1, - "RPI_GPIO_P1_15": 1, - "RPI_GPIO_P1_16": 1, - "RPI_GPIO_P1_18": 1, - "RPI_GPIO_P1_19": 1, - "RPI_GPIO_P1_21": 1, - "RPI_GPIO_P1_22": 1, - "RPI_GPIO_P1_23": 1, - "RPI_GPIO_P1_24": 1, - "RPI_GPIO_P1_26": 1, - "RPI_V2_GPIO_P1_03": 1, - "RPI_V2_GPIO_P1_05": 1, - "RPI_V2_GPIO_P1_07": 1, - "RPI_V2_GPIO_P1_08": 1, - "RPI_V2_GPIO_P1_10": 1, - "RPI_V2_GPIO_P1_11": 1, - "RPI_V2_GPIO_P1_12": 1, - "RPI_V2_GPIO_P1_13": 1, - "RPI_V2_GPIO_P1_15": 1, - "RPI_V2_GPIO_P1_16": 1, - "RPI_V2_GPIO_P1_18": 1, - "RPI_V2_GPIO_P1_19": 1, - "RPI_V2_GPIO_P1_21": 1, - "RPI_V2_GPIO_P1_22": 1, - "RPI_V2_GPIO_P1_23": 1, - "RPI_V2_GPIO_P1_24": 1, - "RPI_V2_GPIO_P1_26": 1, - "RPI_V2_GPIO_P5_03": 1, - "RPI_V2_GPIO_P5_04": 1, - "RPI_V2_GPIO_P5_05": 1, - "RPI_V2_GPIO_P5_06": 1, - "RPiGPIOPin": 1, - "BCM2835_SPI0_CS": 1, - "Master": 12, - "BCM2835_SPI0_FIFO": 1, - "TX": 5, - "RX": 7, - "FIFOs": 1, - "BCM2835_SPI0_CLK": 1, - "Divider": 2, - "BCM2835_SPI0_DLEN": 1, - "Data": 9, - "Length": 2, - "BCM2835_SPI0_LTOH": 1, - "LOSSI": 1, - "TOH": 1, - "BCM2835_SPI0_DC": 1, - "DMA": 3, - "DREQ": 1, - "Controls": 1, - "BCM2835_SPI0_CS_LEN_LONG": 1, - "Long": 1, - "Lossi": 2, - "DMA_LEN": 1, - "BCM2835_SPI0_CS_DMA_LEN": 1, - "BCM2835_SPI0_CS_CSPOL2": 1, - "Chip": 9, - "Polarity": 5, - "BCM2835_SPI0_CS_CSPOL1": 1, - "BCM2835_SPI0_CS_CSPOL0": 1, - "BCM2835_SPI0_CS_RXF": 1, - "RXF": 2, - "FIFO": 25, - "Full": 1, - "BCM2835_SPI0_CS_RXR": 1, - "RXR": 3, - "Reading": 1, - "full": 9, - "BCM2835_SPI0_CS_TXD": 1, - "TXD": 2, - "accept": 2, - "BCM2835_SPI0_CS_RXD": 1, - "RXD": 2, - "contains": 2, - "BCM2835_SPI0_CS_DONE": 1, - "Done": 3, - "transfer": 8, - "BCM2835_SPI0_CS_TE_EN": 1, - "Unused": 2, - "BCM2835_SPI0_CS_LMONO": 1, - "BCM2835_SPI0_CS_LEN": 1, - "LEN": 1, - "LoSSI": 1, - "BCM2835_SPI0_CS_REN": 1, - "REN": 1, - "Read": 3, - "BCM2835_SPI0_CS_ADCS": 1, - "ADCS": 1, - "Automatically": 1, - "Deassert": 1, - "BCM2835_SPI0_CS_INTR": 1, - "INTR": 1, - "Interrupt": 5, - "BCM2835_SPI0_CS_INTD": 1, - "INTD": 1, - "BCM2835_SPI0_CS_DMAEN": 1, - "DMAEN": 1, - "BCM2835_SPI0_CS_TA": 1, - "Transfer": 3, - "Active": 2, - "BCM2835_SPI0_CS_CSPOL": 1, - "BCM2835_SPI0_CS_CLEAR": 1, - "BCM2835_SPI0_CS_CLEAR_RX": 1, - "BCM2835_SPI0_CS_CLEAR_TX": 1, - "BCM2835_SPI0_CS_CPOL": 1, - "BCM2835_SPI0_CS_CPHA": 1, - "Phase": 1, - "BCM2835_SPI0_CS_CS": 1, - "bcm2835SPIBitOrder": 3, - "Bit": 1, - "Specifies": 5, - "ordering": 4, - "bcm2835_spi_setBitOrder": 2, - "BCM2835_SPI_BIT_ORDER_LSBFIRST": 1, - "LSB": 1, - "First": 2, - "BCM2835_SPI_BIT_ORDER_MSBFIRST": 1, - "MSB": 1, - "Specify": 2, - "bcm2835_spi_setDataMode": 2, - "BCM2835_SPI_MODE0": 1, - "CPOL": 4, - "CPHA": 4, - "BCM2835_SPI_MODE1": 1, - "BCM2835_SPI_MODE2": 1, - "BCM2835_SPI_MODE3": 1, - "bcm2835SPIMode": 2, - "bcm2835SPIChipSelect": 3, - "BCM2835_SPI_CS0": 1, - "BCM2835_SPI_CS1": 1, - "BCM2835_SPI_CS2": 1, - "CS1": 1, - "CS2": 1, - "asserted": 3, - "BCM2835_SPI_CS_NONE": 1, - "CS": 5, - "yourself": 1, - "bcm2835SPIClockDivider": 3, - "generate": 2, - "Figures": 1, - "below": 1, - "period": 1, - "frequency.": 1, - "divided": 2, - "nominal": 2, - "reported": 2, - "contrary": 1, - "shown": 1, - "confirmed": 1, - "BCM2835_SPI_CLOCK_DIVIDER_65536": 1, - "us": 12, - "kHz": 10, - "BCM2835_SPI_CLOCK_DIVIDER_32768": 1, - "BCM2835_SPI_CLOCK_DIVIDER_16384": 1, - "BCM2835_SPI_CLOCK_DIVIDER_8192": 1, - "/51757813kHz": 1, - "BCM2835_SPI_CLOCK_DIVIDER_4096": 1, - "BCM2835_SPI_CLOCK_DIVIDER_2048": 1, - "BCM2835_SPI_CLOCK_DIVIDER_1024": 1, - "BCM2835_SPI_CLOCK_DIVIDER_512": 1, - "BCM2835_SPI_CLOCK_DIVIDER_256": 1, - "BCM2835_SPI_CLOCK_DIVIDER_128": 1, - "ns": 9, - "BCM2835_SPI_CLOCK_DIVIDER_64": 1, - "BCM2835_SPI_CLOCK_DIVIDER_32": 1, - "BCM2835_SPI_CLOCK_DIVIDER_16": 1, - "BCM2835_SPI_CLOCK_DIVIDER_8": 1, - "BCM2835_SPI_CLOCK_DIVIDER_4": 1, - "BCM2835_SPI_CLOCK_DIVIDER_2": 1, - "fastest": 1, - "BCM2835_SPI_CLOCK_DIVIDER_1": 1, - "same": 3, - "/65536": 1, - "BCM2835_BSC_C": 1, - "BCM2835_BSC_S": 1, - "BCM2835_BSC_DLEN": 1, - "BCM2835_BSC_A": 1, - "Slave": 1, - "BCM2835_BSC_FIFO": 1, - "BCM2835_BSC_DIV": 1, - "BCM2835_BSC_DEL": 1, - "Delay": 4, - "BCM2835_BSC_CLKT": 1, - "Stretch": 2, - "Timeout": 2, - "BCM2835_BSC_C_I2CEN": 1, - "BCM2835_BSC_C_INTR": 1, - "BCM2835_BSC_C_INTT": 1, - "BCM2835_BSC_C_INTD": 1, - "DONE": 2, - "BCM2835_BSC_C_ST": 1, - "Start": 4, - "BCM2835_BSC_C_CLEAR_1": 1, - "BCM2835_BSC_C_CLEAR_2": 1, - "BCM2835_BSC_C_READ": 1, - "BCM2835_BSC_S_CLKT": 1, - "stretch": 1, - "BCM2835_BSC_S_ERR": 1, - "ACK": 1, - "BCM2835_BSC_S_RXF": 1, - "BCM2835_BSC_S_TXE": 1, - "TXE": 1, - "BCM2835_BSC_S_RXD": 1, - "BCM2835_BSC_S_TXD": 1, - "BCM2835_BSC_S_RXR": 1, - "BCM2835_BSC_S_TXW": 1, - "TXW": 1, - "BCM2835_BSC_S_DONE": 1, - "BCM2835_BSC_S_TA": 1, - "BCM2835_BSC_FIFO_SIZE": 1, - "bcm2835I2CClockDivider": 3, - "BCM2835_I2C_CLOCK_DIVIDER_2500": 1, - "BCM2835_I2C_CLOCK_DIVIDER_626": 1, - "BCM2835_I2C_CLOCK_DIVIDER_150": 1, - "reset": 1, - "BCM2835_I2C_CLOCK_DIVIDER_148": 1, - "bcm2835I2CReasonCodes": 5, - "reason": 4, - "codes": 1, - "BCM2835_I2C_REASON_OK": 1, - "Success": 1, - "BCM2835_I2C_REASON_ERROR_NACK": 1, - "Received": 4, - "NACK": 1, - "BCM2835_I2C_REASON_ERROR_CLKT": 1, - "BCM2835_I2C_REASON_ERROR_DATA": 1, - "sent": 1, - "BCM2835_ST_CS": 1, - "Control/Status": 1, - "BCM2835_ST_CLO": 1, - "Counter": 4, - "Lower": 2, - "BCM2835_ST_CHI": 1, - "Upper": 1, - "BCM2835_PWM_CONTROL": 1, - "BCM2835_PWM_STATUS": 1, - "BCM2835_PWM0_RANGE": 1, - "BCM2835_PWM0_DATA": 1, - "BCM2835_PWM1_RANGE": 1, - "BCM2835_PWM1_DATA": 1, - "BCM2835_PWMCLK_CNTL": 1, - "BCM2835_PWMCLK_DIV": 1, - "BCM2835_PWM1_MS_MODE": 1, - "Run": 4, - "MS": 2, - "BCM2835_PWM1_USEFIFO": 1, - "BCM2835_PWM1_REVPOLAR": 1, - "Reverse": 2, - "polarity": 3, - "BCM2835_PWM1_OFFSTATE": 1, - "Ouput": 2, - "BCM2835_PWM1_REPEATFF": 1, - "Repeat": 2, - "empty": 2, - "BCM2835_PWM1_SERIAL": 1, - "serial": 2, - "BCM2835_PWM1_ENABLE": 1, - "Channel": 2, - "BCM2835_PWM0_MS_MODE": 1, - "BCM2835_PWM0_USEFIFO": 1, - "BCM2835_PWM0_REVPOLAR": 1, - "BCM2835_PWM0_OFFSTATE": 1, - "BCM2835_PWM0_REPEATFF": 1, - "BCM2835_PWM0_SERIAL": 1, - "BCM2835_PWM0_ENABLE": 1, - "init": 2, - "Library": 1, - "management": 1, - "intialise": 1, - "Initialise": 1, - "opening": 1, - "getting": 1, - "successfully": 1, - "bcm2835_set_debug": 2, - "fails": 1, - "returning": 1, - "crashes": 1, - "failures.": 1, - "Prints": 1, - "messages": 1, - "stderr": 1, - "errors.": 1, - "successful": 2, - "Close": 1, - "deallocating": 1, - "prevents": 1, - "makes": 1, - "out": 5, - "would": 2, - "causes": 1, - "normal": 1, - "param": 72, - "uint8_t": 43, - "lowlevel": 2, - "provide": 1, - "generally": 1, - "Reads": 5, - "done": 3, - "twice": 3, - "therefore": 6, - "always": 3, - "precautions": 3, - "correct": 3, - "paddr": 10, - "from.": 6, - "etc.": 5, - "without": 3, - "occurred": 2, - "since.": 2, - "bcm2835_peri_read_nb": 1, - "Writes": 2, - "bcm2835_peri_write_nb": 1, - "Alters": 1, - "regsiter.": 1, - "valu": 1, - "alters": 1, - "deines": 1, - "according": 1, - "value.": 2, - "All": 1, - "unaffected.": 1, - "subset": 1, - "register.": 3, - "masked": 2, - "mask.": 1, - "Bitmask": 1, - "altered": 1, - "gpio": 1, - "interface.": 3, - "state.": 1, - "configures": 1, - "RPI_GPIO_P1_*": 21, - "Mode": 1, - "BCM2835_GPIO_FSEL_*": 1, - "specified": 27, - "HIGH.": 2, - "bcm2835_gpio_write": 3, - "bcm2835_gpio_set": 1, - "LOW.": 5, - "bcm2835_gpio_clr": 1, - "Mask": 6, - "affect.": 4, - "eg": 5, - "Works": 1, - "output.": 1, - "bcm2835_gpio_lev": 1, - "Status.": 7, - "Tests": 1, - "detected": 7, - "requested": 1, - "bcm2835_gpio_set_eds": 2, - "status": 1, - "th": 1, - "bcm2835_gpio_eds": 1, - "effect": 3, - "clearing": 1, - "flag.": 1, - "afer": 1, - "seeing": 1, - "rising": 3, - "sets": 8, - "GPRENn": 2, - "synchronous": 2, - "detection.": 2, - "signal": 4, - "sampled": 6, - "looking": 2, - "pattern": 2, - "signal.": 2, - "suppressing": 2, - "glitches.": 2, - "Disable": 6, - "Asynchronous": 6, - "incoming": 2, - "As": 2, - "edges": 2, - "very": 2, - "duration": 2, - "detected.": 2, - "bcm2835_gpio_pudclk": 3, - "resistor": 1, - "However": 3, - "convenient": 2, - "bcm2835_gpio_set_pud": 4, - "pud": 4, - "desired": 7, - "One": 3, - "BCM2835_GPIO_PUD_*": 2, - "Clocks": 3, - "earlier": 1, - "group.": 2, - "BCM2835_PAD_GROUP_GPIO_*": 2, - "BCM2835_PAD_*": 2, - "bcm2835_gpio_set_pad": 1, - "Delays": 3, - "milliseconds.": 1, - "Uses": 4, - "until": 1, - "up.": 1, - "mercy": 2, - "From": 2, - "interval": 4, - "req": 2, - "exact": 2, - "multiple": 2, - "granularity": 2, - "rounded": 2, - "multiple.": 2, - "Furthermore": 2, - "sleep": 2, - "completes": 2, - "becomes": 2, - "again": 2, - "thread.": 2, - "millis": 2, - "milliseconds": 1, - "microseconds.": 2, - "busy": 2, - "wait": 2, - "timers": 1, - "less": 1, - "microseconds": 6, - "Timer.": 1, - "RaspberryPi": 1, - "Your": 1, - "mileage": 1, - "vary.": 1, - "required": 2, - "bcm2835_gpio_write_mask": 1, - "clocking": 1, - "spi": 1, - "let": 2, - "device.": 2, - "operations.": 4, - "Forces": 2, - "ALT0": 2, - "funcitons": 1, - "End": 2, - "INPUT": 2, - "behaviour.": 2, - "NOTE": 1, - "effect.": 1, - "SPI0.": 1, - "Defaults": 1, - "BCM2835_SPI_BIT_ORDER_*": 1, - "speed.": 2, - "BCM2835_SPI_CLOCK_DIVIDER_*": 1, - "bcm2835_spi_setClockDivider": 1, - "uint16_t": 2, - "polariy": 1, - "phase": 1, - "BCM2835_SPI_MODE*": 1, - "bcm2835_spi_transfer": 5, - "made": 1, - "during": 4, - "transfer.": 4, - "cs": 4, - "activate": 1, - "slave.": 7, - "BCM2835_SPI_CS*": 1, - "bcm2835_spi_chipSelect": 4, - "occurs": 1, - "active.": 1, - "transfers": 1, - "happening": 1, - "complement": 1, - "inactive": 1, - "affect": 1, - "active": 3, - "Whether": 1, - "bcm2835_spi_setChipSelectPolarity": 1, - "Transfers": 6, - "Asserts": 3, - "simultaneously": 3, - "clocks": 2, - "MISO.": 2, - "polled": 2, - "Peripherls": 2, - "slave": 8, - "placed": 1, - "rbuf.": 1, - "rbuf": 3, - "tbuf": 4, - "send.": 5, - "put": 1, - "send/received": 2, - "bcm2835_spi_transfernb.": 1, - "replaces": 1, - "transmitted": 1, - "buffer.": 1, - "replace": 1, - "bcm2835_spi_writenb": 1, - "i2c": 1, - "Philips": 1, - "bus/interface": 1, - "January": 1, - "SCL": 2, - "bcm2835_i2c_end": 3, - "bcm2835_i2c_begin": 1, - "address.": 2, - "addr": 2, - "bcm2835_i2c_setSlaveAddress": 4, - "BCM2835_I2C_CLOCK_DIVIDER_*": 1, - "bcm2835_i2c_setClockDivider": 2, - "converting": 1, - "baudrate": 4, - "parameter": 1, - "equivalent": 1, - "divider.": 1, - "standard": 2, - "khz": 1, - "corresponds": 1, - "its": 1, - "driver.": 1, - "Of": 1, - "nothing": 1, - "driver": 1, - "receive.": 2, - "received.": 2, - "Allows": 2, - "slaves": 1, - "require": 3, - "repeated": 1, - "prior": 1, - "stop": 1, - "set.": 1, - "popular": 1, - "MPL3115A2": 1, - "pressure": 1, - "temperature": 1, - "sensor.": 1, - "Note": 1, - "combined": 1, - "better": 1, - "choice.": 1, - "Will": 1, - "regaddr": 2, - "bcm2835_i2c_read_register_rs": 1, - "st": 1, - "delays": 1, - "Counter.": 1, - "bcm2835_st_read": 1, - "offset.": 1, - "offset_micros": 2, - "Offset": 1, - "bcm2835_st_delay": 1, - "@example": 5, - "blink.c": 1, - "Blinks": 1, - "off": 1, - "input.c": 1, - "event.c": 1, - "Shows": 3, - "how": 3, - "spi.c": 1, - "spin.c": 1, - "PROTOBUF_protocol_2dbuffer_2eproto__INCLUDED": 3, - "GOOGLE_PROTOBUF_VERSION": 1, - "generated": 2, - "newer": 2, - "protoc": 2, - "incompatible": 2, - "Protocol": 2, - "headers.": 3, - "update": 1, - "GOOGLE_PROTOBUF_MIN_PROTOC_VERSION": 1, - "older": 1, - "regenerate": 1, - "protoc.": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "*this": 1, - "UnknownFieldSet": 2, - "UnknownFieldSet*": 1, - "GetCachedSize": 1, - "clear_name": 2, - "release_name": 2, - "set_allocated_name": 2, - "set_has_name": 7, - "clear_has_name": 5, - "mutable": 1, - "*name_": 1, - "assign": 3, - "temp": 2, - "SWIG": 2, - "V8_V8_H_": 3, - "GOOGLE3": 2, - "NDEBUG": 4, - "both": 1, - "Deserializer": 1, - "AllStatic": 1, - "IsRunning": 1, - "UseCrankshaft": 1, - "FatalProcessOutOfMemory": 1, - "take_snapshot": 1, - "NilValue": 1, - "kNullValue": 1, - "kUndefinedValue": 1, - "EqualityKind": 1, - "kStrictEquality": 1, - "kNonStrictEquality": 1, - "": 1, - "": 1, - "": 1, - "EC_KEY_regenerate_key": 1, - "*eckey": 2, - "BIGNUM": 9, - "*priv_key": 1, - "ok": 3, - "BN_CTX": 2, - "*ctx": 2, - "EC_POINT": 4, - "*pub_key": 1, - "eckey": 7, - "EC_GROUP": 2, - "*group": 2, - "EC_KEY_get0_group": 2, - "ctx": 26, - "BN_CTX_new": 2, - "err": 26, - "pub_key": 6, - "EC_POINT_new": 4, - "EC_POINT_mul": 3, - "priv_key": 2, - "EC_KEY_set_private_key": 1, - "EC_KEY_set_public_key": 2, - "EC_POINT_free": 4, - "BN_CTX_free": 2, - "ECDSA_SIG_recover_key_GFp": 3, - "ECDSA_SIG": 3, - "*ecsig": 1, - "msglen": 2, - "recid": 3, - "ret": 24, - "*x": 1, - "*e": 1, - "*order": 1, - "*sor": 1, - "*eor": 1, - "*field": 1, - "*R": 1, - "*O": 1, - "*Q": 1, - "*rr": 1, - "*zero": 1, - "BN_CTX_start": 1, - "BN_CTX_get": 8, - "EC_GROUP_get_order": 1, - "BN_copy": 1, - "BN_mul_word": 1, - "BN_add": 1, - "ecsig": 3, - "EC_GROUP_get_curve_GFp": 1, - "BN_cmp": 1, - "R": 6, - "EC_POINT_set_compressed_coordinates_GFp": 1, - "O": 5, - "EC_POINT_is_at_infinity": 1, - "Q": 5, - "EC_GROUP_get_degree": 1, - "BN_bin2bn": 3, - "msg": 1, - "*msglen": 1, - "BN_rshift": 1, - "BN_zero": 1, - "BN_mod_sub": 1, - "rr": 4, - "BN_mod_inverse": 1, - "sor": 3, - "BN_mod_mul": 2, - "eor": 3, - "BN_CTX_end": 1, - "EC_KEY_set_conv_form": 1, - "POINT_CONVERSION_COMPRESSED": 1, - "EC_KEY_new_by_curve_name": 2, - "NID_secp256k1": 2, - "throw": 4, - "EC_KEY_dup": 1, - "b.pkey": 2, - "b.fSet": 2, - "EC_KEY_copy": 1, - "nSize": 2, - "vchSig.clear": 2, - "vchSig.resize": 2, - "Shrink": 1, - "fit": 1, - "actual": 1, - "fOk": 3, - "*sig": 2, - "ECDSA_do_sign": 1, - "sig": 11, - "nBitsR": 3, - "BN_num_bits": 2, - "nBitsS": 3, - "nRecId": 4, - "<4;>": 1, - "keyRec": 5, - "BN_bn2bin": 2, - "/8": 2, - "ECDSA_SIG_free": 2, - "vchSig.size": 2, - "nV": 6, - "<27>": 1, - "ECDSA_SIG_new": 1, - "EC_KEY_free": 1, - "ECDSA_verify": 1, - "key.SetCompactSignature": 1, - "key.GetPubKey": 1, - "fCompr": 3, - "secret": 2, - "key2": 1, - "key2.SetSecret": 1, - "key2.GetPubKey": 1 + "Py_EQ": 6 }, "COBOL": { - "IDENTIFICATION": 2, - "DIVISION.": 4, - "PROGRAM": 2, - "-": 19, - "ID.": 2, - "hello.": 3, - "PROCEDURE": 2, - "DISPLAY": 2, - ".": 3, - "STOP": 2, - "RUN.": 2, "program": 1, + "-": 19, "id.": 1, + "hello.": 3, "procedure": 1, "division.": 1, "display": 1, + ".": 3, "stop": 1, "run.": 1, + "IDENTIFICATION": 2, + "DIVISION.": 4, + "PROGRAM": 2, + "ID.": 2, + "PROCEDURE": 2, + "DISPLAY": 2, + "STOP": 2, + "RUN.": 2, "COBOL": 7, "TEST": 2, "RECORD.": 1, @@ -16277,19 +16277,25 @@ "array": 14, "int": 36, "string": 7, - "map": 8, + "set": 12, + "f": 3, + "block": 1, + "(": 20, "a": 22, "b": 7, - "(": 20, - ")": 20, "c": 9, - "set": 12, - "m": 3, + ")": 20, + "call": 1, "bool": 6, "true": 1, "false": 1, "yes": 1, "no": 1, + "map": 8, + "m": 3, + "float": 1, + "require": 1, + "./stdio.cr": 1, "self": 2, "child": 1, "under": 2, @@ -16300,50 +16306,25 @@ "-": 4, "code": 4, "eval": 2, - "float": 1, - "f": 3, - "block": 1, - "call": 1, - "require": 1, - "./stdio.cr": 1, "nothing": 1, "container": 3 }, "Clojure": { "(": 83, - "deftest": 1, - "function": 1, - "-": 14, - "tests": 1, - "is": 7, - "count": 3, - "[": 41, - "]": 41, - ")": 84, - "false": 2, - "not": 3, - "true": 2, - "contains": 1, - "{": 8, - "foo": 6, - "bar": 4, - "}": 8, - "select": 1, - "keys": 2, - "baz": 4, - "vals": 1, - "filter": 1, - "fn": 2, - "x": 6, - "rem": 2, "defn": 4, "prime": 2, + "[": 41, "n": 9, + "]": 41, + "not": 3, + "-": 14, "any": 1, "zero": 1, "map": 2, "#": 1, + "rem": 2, "%": 1, + ")": 84, "range": 3, ";": 8, "while": 3, @@ -16356,13 +16337,17 @@ "that": 1, "evaluates": 1, "to": 1, + "false": 2, "like": 1, "take": 1, "for": 2, + "x": 6, "html": 1, "head": 1, "meta": 1, + "{": 8, "charset": 1, + "}": 8, "link": 1, "rel": 1, "href": 1, @@ -16371,6 +16356,38 @@ "body": 1, "div.nav": 1, "p": 1, + "into": 2, + "array": 3, + "aseq": 8, + "nil": 1, + "type": 2, + "let": 1, + "count": 3, + "a": 3, + "make": 1, + "loop": 1, + "seq": 1, + "i": 4, + "if": 1, + "<": 1, + "do": 1, + "aset": 1, + "recur": 1, + "next": 1, + "inc": 1, + "defprotocol": 1, + "ISound": 4, + "sound": 5, + "deftype": 2, + "Cat": 1, + "_": 3, + "Dog": 1, + "extend": 1, + "default": 1, + "rand": 2, + "scm*": 1, + "random": 1, + "real": 1, "clj": 1, "ns": 2, "c2.svg": 2, @@ -16394,6 +16411,7 @@ "dom": 1, "Stub": 1, "float": 2, + "fn": 2, "which": 1, "does": 1, "exist": 1, @@ -16407,53 +16425,214 @@ "and": 1, "vector": 1, "y": 1, - "rand": 2, - "scm*": 1, - "random": 1, - "real": 1, - "into": 2, - "array": 3, - "aseq": 8, - "nil": 1, - "type": 2, - "let": 1, - "a": 3, - "make": 1, - "loop": 1, - "seq": 1, - "i": 4, - "if": 1, - "<": 1, - "do": 1, - "aset": 1, - "recur": 1, - "next": 1, - "inc": 1, - "defprotocol": 1, - "ISound": 4, - "sound": 5, - "deftype": 2, - "Cat": 1, - "_": 3, - "Dog": 1, - "extend": 1, - "default": 1 + "deftest": 1, + "function": 1, + "tests": 1, + "is": 7, + "true": 2, + "contains": 1, + "foo": 6, + "bar": 4, + "select": 1, + "keys": 2, + "baz": 4, + "vals": 1, + "filter": 1 }, "CoffeeScript": { + "CoffeeScript": 1, + "require": 21, + "CoffeeScript.require": 1, + "CoffeeScript.eval": 1, + "(": 193, + "code": 20, + "options": 16, + "{": 31, + "}": 34, + ")": 196, + "-": 107, + "options.bare": 2, + "on": 3, + "eval": 2, + "CoffeeScript.compile": 2, + "CoffeeScript.run": 3, + "Function": 1, + "return": 29, + "unless": 19, + "window": 1, + "CoffeeScript.load": 2, + "url": 2, + "callback": 35, + "xhr": 2, + "new": 12, + "window.ActiveXObject": 1, + "or": 22, + "XMLHttpRequest": 1, + "xhr.open": 1, + "true": 8, + "xhr.overrideMimeType": 1, + "if": 102, + "of": 7, + "xhr.onreadystatechange": 1, + "xhr.readyState": 1, + "is": 36, + "xhr.status": 1, + "in": 32, + "[": 134, + "]": 134, + "xhr.responseText": 1, + "else": 53, + "throw": 3, + "Error": 1, + "xhr.send": 1, + "null": 15, + "runScripts": 3, + "scripts": 2, + "document.getElementsByTagName": 1, + "coffees": 2, + "s": 10, + "for": 14, + "when": 16, + "s.type": 1, + "index": 4, + "length": 4, + "coffees.length": 1, + "do": 2, + "execute": 3, + "script": 7, + "+": 31, + ".type": 1, + "script.src": 2, + "script.innerHTML": 1, + "window.addEventListener": 1, + "addEventListener": 1, + "no": 3, + "attachEvent": 1, + "class": 11, + "Animal": 3, + "constructor": 6, + "@name": 2, + "move": 3, + "meters": 2, + "alert": 4, + "Snake": 2, + "extends": 6, + "super": 4, + "Horse": 2, + "sam": 1, + "tom": 1, + "sam.move": 1, + "tom.move": 1, + "#": 35, + "fs": 2, + "path": 3, + "Lexer": 3, + "RESERVED": 3, + "parser": 1, + "vm": 1, + "require.extensions": 3, + "module": 1, + "filename": 6, + "content": 4, + "compile": 5, + "fs.readFileSync": 1, + "module._compile": 1, + "require.registerExtension": 2, + "exports.VERSION": 1, + "exports.RESERVED": 1, + "exports.helpers": 2, + "exports.compile": 1, + "merge": 1, + "try": 3, + "js": 5, + "parser.parse": 3, + "lexer.tokenize": 3, + ".compile": 1, + "options.header": 1, + "catch": 2, + "err": 20, + "err.message": 2, + "options.filename": 5, + "header": 1, + "exports.tokens": 1, + "exports.nodes": 1, + "source": 5, + "typeof": 2, + "exports.run": 1, + "mainModule": 1, + "require.main": 1, + "mainModule.filename": 4, + "process.argv": 1, + "then": 24, + "fs.realpathSync": 2, + "mainModule.moduleCache": 1, + "and": 20, + "mainModule.paths": 1, + "._nodeModulePaths": 1, + "path.dirname": 2, + "path.extname": 1, + "isnt": 7, + "mainModule._compile": 2, + "exports.eval": 1, + "code.trim": 1, + "Script": 2, + "vm.Script": 1, + "options.sandbox": 4, + "instanceof": 2, + "Script.createContext": 2, + ".constructor": 1, + "sandbox": 8, + "k": 4, + "v": 4, + "own": 2, + "sandbox.global": 1, + "sandbox.root": 1, + "sandbox.GLOBAL": 1, + "global": 3, + "sandbox.__filename": 3, + "||": 3, + "sandbox.__dirname": 1, + "sandbox.module": 2, + "sandbox.require": 2, + "Module": 2, + "_module": 3, + "options.modulename": 1, + "_require": 2, + "Module._load": 1, + "_module.filename": 1, + "r": 4, + "Object.getOwnPropertyNames": 1, + "_require.paths": 1, + "_module.paths": 1, + "Module._nodeModulePaths": 1, + "process.cwd": 1, + "_require.resolve": 1, + "request": 2, + "Module._resolveFilename": 1, + "o": 4, + "o.bare": 1, + "ensure": 1, + "value": 25, + "vm.runInThisContext": 1, + "vm.runInContext": 1, + "lexer": 1, + "parser.lexer": 1, + "lex": 1, + "tag": 33, + "@yytext": 1, + "@yylineno": 1, + "@tokens": 7, + "@pos": 2, + "setInput": 1, + "upcomingInput": 1, + "parser.yy": 1, "console.log": 1, "number": 13, "opposite": 2, - "true": 8, - "-": 107, - "if": 102, "square": 4, - "(": 193, "x": 6, - ")": 196, "*": 21, "list": 2, - "[": 134, - "]": 134, "math": 1, "root": 1, "Math.sqrt": 1, @@ -16463,139 +16642,10 @@ "runners...": 1, "print": 1, "runners": 1, - "alert": 4, "elvis": 1, "cubes": 1, "math.cube": 1, "num": 2, - "for": 14, - "in": 32, - "#": 35, - "async": 1, - "require": 21, - "fs": 2, - "nack": 1, - "{": 31, - "bufferLines": 3, - "pause": 2, - "sourceScriptEnv": 3, - "}": 34, - "join": 8, - "exists": 5, - "basename": 2, - "resolve": 2, - "module.exports": 1, - "class": 11, - "RackApplication": 1, - "constructor": 6, - "@configuration": 1, - "@root": 8, - "@firstHost": 1, - "@logger": 1, - "@configuration.getLogger": 1, - "@readyCallbacks": 3, - "@quitCallbacks": 3, - "@statCallbacks": 3, - "ready": 1, - "callback": 35, - "@state": 11, - "is": 36, - "else": 53, - "@readyCallbacks.push": 1, - "@initialize": 2, - "quit": 1, - "@quitCallbacks.push": 1, - "@terminate": 2, - "queryRestartFile": 1, - "fs.stat": 1, - "err": 20, - "stats": 1, - "@mtime": 5, - "null": 15, - "false": 4, - "lastMtime": 2, - "stats.mtime.getTime": 1, - "isnt": 7, - "setPoolRunOnceFlag": 1, - "unless": 19, - "@statCallbacks.length": 1, - "alwaysRestart": 2, - "@pool.runOnce": 1, - "statCallback": 2, - "@statCallbacks.push": 1, - "loadScriptEnvironment": 1, - "env": 18, - "async.reduce": 1, - "filename": 6, - "script": 7, - "scriptExists": 2, - "loadRvmEnvironment": 1, - "rvmrcExists": 2, - "rvm": 1, - "@configuration.rvmPath": 1, - "rvmExists": 2, - "libexecPath": 1, - "before": 2, - ".trim": 1, - "loadEnvironment": 1, - "@queryRestartFile": 2, - "@loadScriptEnvironment": 1, - "@configuration.env": 1, - "then": 24, - "@loadRvmEnvironment": 1, - "initialize": 1, - "@quit": 3, - "return": 29, - "@loadEnvironment": 1, - "@logger.error": 3, - "err.message": 2, - "@pool": 2, - "nack.createPool": 1, - "size": 1, - ".POW_WORKERS": 1, - "@configuration.workers": 1, - "idle": 1, - ".POW_TIMEOUT": 1, - "@configuration.timeout": 1, - "@pool.stdout": 1, - "line": 6, - "@logger.info": 1, - "@pool.stderr": 1, - "@logger.warning": 1, - "@pool.on": 2, - "process": 2, - "@logger.debug": 2, - "readyCallback": 2, - "terminate": 1, - "@ready": 3, - "@pool.quit": 1, - "quitCallback": 2, - "handle": 1, - "req": 4, - "res": 3, - "next": 3, - "resume": 2, - "@setPoolRunOnceFlag": 1, - "@restartIfNecessary": 1, - "req.proxyMetaVariables": 1, - "SERVER_PORT": 1, - "@configuration.dstPort.toString": 1, - "try": 3, - "@pool.proxy": 1, - "finally": 2, - "restart": 1, - "restartIfNecessary": 1, - "mtimeChanged": 2, - "@restart": 1, - "writeRvmBoilerplate": 1, - "powrc": 3, - "boilerplate": 2, - "@constructor.rvmBoilerplate": 1, - "fs.readFile": 1, - "contents": 2, - "contents.indexOf": 1, - "fs.writeFile": 1, - "@rvmBoilerplate": 1, "Rewriter": 2, "INVERSES": 2, "count": 5, @@ -16603,9 +16653,7 @@ "compact": 1, "last": 3, "exports.Lexer": 1, - "Lexer": 3, "tokenize": 1, - "code": 20, "opts": 1, "WHITESPACE.test": 1, "code.replace": 1, @@ -16616,13 +16664,10 @@ "@code": 1, "The": 7, "remainder": 1, - "of": 7, "the": 4, - "source": 5, "code.": 1, "@line": 4, "opts.line": 1, - "or": 22, "current": 5, "line.": 1, "@indent": 3, @@ -16642,18 +16687,16 @@ "pairing": 1, "up": 1, "tokens.": 1, - "@tokens": 7, "Stream": 1, "parsed": 1, "tokens": 5, "form": 1, - "value": 25, + "line": 6, ".": 13, "i": 8, "while": 4, "@chunk": 9, "i..": 1, - "+": 31, "@identifierToken": 1, "@commentToken": 1, "@whitespaceToken": 1, @@ -16666,11 +16709,9 @@ "@literalToken": 1, "@closeIndentation": 1, "@error": 10, - "tag": 33, "@ends.pop": 1, "opts.rewrite": 1, "off": 1, - "new": 12, ".rewrite": 1, "identifierToken": 1, "match": 23, @@ -16678,7 +16719,6 @@ "input": 1, "id": 16, "colon": 3, - "and": 20, "@tag": 3, "@token": 12, "id.length": 1, @@ -16694,17 +16734,14 @@ "yes": 5, "UNARY": 4, "RELATION": 3, - "no": 3, "@value": 1, "@tokens.pop": 1, "JS_FORBIDDEN": 1, "String": 1, "id.reserved": 1, - "RESERVED": 3, "COFFEE_ALIAS_MAP": 1, "COFFEE_ALIASES": 1, "switch": 7, - "when": 16, "input.length": 1, "numberToken": 1, "NUMBER.exec": 1, @@ -16717,7 +16754,6 @@ "lexedLength": 2, "number.length": 1, "octalLiteral": 2, - "o": 4, "/.exec": 2, "parseInt": 5, ".toString": 3, @@ -16751,7 +16787,6 @@ "STRING": 2, "makeString": 1, "n": 16, - "length": 4, "Matches": 1, "consumes": 1, "comments": 1, @@ -16809,7 +16844,6 @@ "@ends.push": 1, "@pair": 1, "sanitizeHeredoc": 1, - "options": 16, "HEREDOC_ILLEGAL.test": 1, "doc.indexOf": 1, "HEREDOC_INDENT.exec": 1, @@ -16844,22 +16878,16 @@ "THROW": 1, "EXTENDS": 1, "&": 4, + "false": 4, "delete": 1, - "typeof": 2, - "instanceof": 2, - "throw": 3, "break": 1, "debugger": 1, - "do": 2, - "catch": 2, - "extends": 6, - "super": 4, + "finally": 2, "undefined": 1, "until": 1, "loop": 1, "by": 1, "&&": 1, - "||": 3, "case": 1, "default": 1, "function": 2, @@ -16886,8 +16914,6 @@ "static": 1, "yield": 1, "arguments": 1, - "eval": 2, - "s": 10, "S": 10, "OPERATOR": 1, "%": 1, @@ -16938,52 +16964,109 @@ "BOOL": 1, "NOT_REGEX.concat": 1, "CALLABLE.concat": 1, - "CoffeeScript": 1, - "CoffeeScript.require": 1, - "CoffeeScript.eval": 1, - "options.bare": 2, - "on": 3, - "CoffeeScript.compile": 2, - "CoffeeScript.run": 3, - "Function": 1, - "window": 1, - "CoffeeScript.load": 2, - "url": 2, - "xhr": 2, - "window.ActiveXObject": 1, - "XMLHttpRequest": 1, - "xhr.open": 1, - "xhr.overrideMimeType": 1, - "xhr.onreadystatechange": 1, - "xhr.readyState": 1, - "xhr.status": 1, - "xhr.responseText": 1, - "Error": 1, - "xhr.send": 1, - "runScripts": 3, - "scripts": 2, - "document.getElementsByTagName": 1, - "coffees": 2, - "s.type": 1, - "index": 4, - "coffees.length": 1, - "execute": 3, - ".type": 1, - "script.src": 2, - "script.innerHTML": 1, - "window.addEventListener": 1, - "addEventListener": 1, - "attachEvent": 1, - "Animal": 3, - "@name": 2, - "move": 3, - "meters": 2, - "Snake": 2, - "Horse": 2, - "sam": 1, - "tom": 1, - "sam.move": 1, - "tom.move": 1, + "async": 1, + "nack": 1, + "bufferLines": 3, + "pause": 2, + "sourceScriptEnv": 3, + "join": 8, + "exists": 5, + "basename": 2, + "resolve": 2, + "module.exports": 1, + "RackApplication": 1, + "@configuration": 1, + "@root": 8, + "@firstHost": 1, + "@logger": 1, + "@configuration.getLogger": 1, + "@readyCallbacks": 3, + "@quitCallbacks": 3, + "@statCallbacks": 3, + "ready": 1, + "@state": 11, + "@readyCallbacks.push": 1, + "@initialize": 2, + "quit": 1, + "@quitCallbacks.push": 1, + "@terminate": 2, + "queryRestartFile": 1, + "fs.stat": 1, + "stats": 1, + "@mtime": 5, + "lastMtime": 2, + "stats.mtime.getTime": 1, + "setPoolRunOnceFlag": 1, + "@statCallbacks.length": 1, + "alwaysRestart": 2, + "@pool.runOnce": 1, + "statCallback": 2, + "@statCallbacks.push": 1, + "loadScriptEnvironment": 1, + "env": 18, + "async.reduce": 1, + "scriptExists": 2, + "loadRvmEnvironment": 1, + "rvmrcExists": 2, + "rvm": 1, + "@configuration.rvmPath": 1, + "rvmExists": 2, + "libexecPath": 1, + "before": 2, + ".trim": 1, + "loadEnvironment": 1, + "@queryRestartFile": 2, + "@loadScriptEnvironment": 1, + "@configuration.env": 1, + "@loadRvmEnvironment": 1, + "initialize": 1, + "@quit": 3, + "@loadEnvironment": 1, + "@logger.error": 3, + "@pool": 2, + "nack.createPool": 1, + "size": 1, + ".POW_WORKERS": 1, + "@configuration.workers": 1, + "idle": 1, + ".POW_TIMEOUT": 1, + "@configuration.timeout": 1, + "@pool.stdout": 1, + "@logger.info": 1, + "@pool.stderr": 1, + "@logger.warning": 1, + "@pool.on": 2, + "process": 2, + "@logger.debug": 2, + "readyCallback": 2, + "terminate": 1, + "@ready": 3, + "@pool.quit": 1, + "quitCallback": 2, + "handle": 1, + "req": 4, + "res": 3, + "next": 3, + "resume": 2, + "@setPoolRunOnceFlag": 1, + "@restartIfNecessary": 1, + "req.proxyMetaVariables": 1, + "SERVER_PORT": 1, + "@configuration.dstPort.toString": 1, + "@pool.proxy": 1, + "restart": 1, + "restartIfNecessary": 1, + "mtimeChanged": 2, + "@restart": 1, + "writeRvmBoilerplate": 1, + "powrc": 3, + "boilerplate": 2, + "@constructor.rvmBoilerplate": 1, + "fs.readFile": 1, + "contents": 2, + "contents.indexOf": 1, + "fs.writeFile": 1, + "@rvmBoilerplate": 1, "dnsserver": 1, "exports.Server": 1, "Server": 2, @@ -17069,90 +17152,7 @@ "PATTERN.test": 1, "ip.push": 1, "xFF": 1, - "ip.join": 1, - "path": 3, - "parser": 1, - "vm": 1, - "require.extensions": 3, - "module": 1, - "content": 4, - "compile": 5, - "fs.readFileSync": 1, - "module._compile": 1, - "require.registerExtension": 2, - "exports.VERSION": 1, - "exports.RESERVED": 1, - "exports.helpers": 2, - "exports.compile": 1, - "merge": 1, - "js": 5, - "parser.parse": 3, - "lexer.tokenize": 3, - ".compile": 1, - "options.header": 1, - "options.filename": 5, - "header": 1, - "exports.tokens": 1, - "exports.nodes": 1, - "exports.run": 1, - "mainModule": 1, - "require.main": 1, - "mainModule.filename": 4, - "process.argv": 1, - "fs.realpathSync": 2, - "mainModule.moduleCache": 1, - "mainModule.paths": 1, - "._nodeModulePaths": 1, - "path.dirname": 2, - "path.extname": 1, - "mainModule._compile": 2, - "exports.eval": 1, - "code.trim": 1, - "Script": 2, - "vm.Script": 1, - "options.sandbox": 4, - "Script.createContext": 2, - ".constructor": 1, - "sandbox": 8, - "k": 4, - "v": 4, - "own": 2, - "sandbox.global": 1, - "sandbox.root": 1, - "sandbox.GLOBAL": 1, - "global": 3, - "sandbox.__filename": 3, - "sandbox.__dirname": 1, - "sandbox.module": 2, - "sandbox.require": 2, - "Module": 2, - "_module": 3, - "options.modulename": 1, - "_require": 2, - "Module._load": 1, - "_module.filename": 1, - "r": 4, - "Object.getOwnPropertyNames": 1, - "_require.paths": 1, - "_module.paths": 1, - "Module._nodeModulePaths": 1, - "process.cwd": 1, - "_require.resolve": 1, - "request": 2, - "Module._resolveFilename": 1, - "o.bare": 1, - "ensure": 1, - "vm.runInThisContext": 1, - "vm.runInContext": 1, - "lexer": 1, - "parser.lexer": 1, - "lex": 1, - "@yytext": 1, - "@yylineno": 1, - "@pos": 2, - "setInput": 1, - "upcomingInput": 1, - "parser.yy": 1 + "ip.join": 1 }, "Common Lisp": { ";": 152, @@ -17847,670 +17847,147 @@ "End": 15, "Require": 17, "Import": 11, - "Omega": 1, - "Relations": 2, + "List": 2, "Multiset": 2, - "SetoidList.": 1, - "Set": 4, - "Implicit": 15, - "Arguments.": 2, - "Local": 7, - "nil.": 2, - "a": 207, - "..": 4, + "PermutSetoid": 1, + "Relations": 2, + "Sorting.": 1, "Section": 4, - "Permut.": 1, + "defs.": 2, "Variable": 7, "A": 113, "Type.": 3, - "eqA": 29, + "leA": 25, "relation": 19, "A.": 6, + "eqA": 29, + "Let": 8, + "gtA": 1, + "y.": 15, "Hypothesis": 7, - "eqA_equiv": 1, - "Equivalence": 2, - "eqA.": 1, - "eqA_dec": 26, + "leA_dec": 4, "{": 39, "}": 35, - "Let": 8, + "eqA_dec": 26, + "leA_refl": 1, + "leA_trans": 2, + "z": 14, + "z.": 6, + "leA_antisym": 1, + "Hint": 9, + "Resolve": 5, + "leA_refl.": 1, + "Immediate": 1, + "leA_antisym.": 1, "emptyBag": 4, "EmptyBag": 2, "singletonBag": 10, "SingletonBag": 2, "eqA_dec.": 2, - "list_contents": 30, - "l": 379, - "list": 78, - "multiset": 2, - "munion": 18, - "list_contents_app": 5, - "meq": 15, - "simple": 7, - ";": 375, - "auto": 73, - "datatypes.": 47, - "intros.": 27, - "apply": 340, - "meq_trans": 10, - "l0": 7, - "permutation": 43, - "permut_refl": 1, - "l.": 26, - "unfold": 58, - "permut_sym": 4, - "l1": 89, - "l2": 73, - "l1.": 5, - "symmetry": 4, - "trivial.": 14, - "permut_trans": 5, - "permut_cons_eq": 3, - "meq_left": 1, - "meq_singleton": 1, - "auto.": 47, - "permut_cons": 5, - "permut_app": 1, - "using": 18, - "l3": 12, - "l4": 3, - "in": 221, - "specialize": 6, - "H0": 16, - "a0.": 1, - "repeat": 11, - "*.": 110, - "a0": 15, - "Ha": 6, - "decide": 1, - "replace": 4, - "trivial": 15, - "permut_add_inside_eq": 1, - "permut_add_cons_inside": 3, - "permut_add_inside": 1, - "permut_middle": 1, - "permut_refl.": 5, - "permut_sym_app": 1, - "intro": 27, - "do": 4, - "arith.": 8, - "permut_rev": 1, - "rev": 7, - "permut_add_cons_inside.": 1, - "app_nil_end": 1, - "Some": 21, - "inversion": 104, - "results": 1, - "permut_conv_inv": 1, - "e": 53, - "l2.": 8, - "generalize": 13, - "plus_reg_l.": 1, - "permut_app_inv1": 1, - "clear": 7, - "list_contents_app.": 1, - "plus_reg_l": 1, - "multiplicity": 6, - "Fact": 3, - "if_eqA_then": 1, - "B": 6, - "then": 9, - "else": 9, - "if": 10, - "if_eqA_refl": 3, - "decide_left": 1, - "Global": 5, - "Instance": 7, - "if_eqA": 1, - "contradict": 3, - "transitivity": 4, - "a2": 62, - "a1": 56, - "A1": 2, - "eauto": 10, - "if_eqA_rewrite_r": 1, - "A2": 4, - "Hxx": 1, - "multiplicity_InA": 4, - "InA": 8, - "<": 76, - "a.": 6, - "split": 14, - "right.": 9, - "IHl": 8, - "multiplicity_InA_O": 2, - "multiplicity_InA_S": 1, - "multiplicity_NoDupA": 1, - "NoDupA": 3, - "inversion_clear": 6, - "EQ": 8, - "NEQ": 1, - "constructor": 6, - "omega": 7, - "Permutation": 38, - "is": 4, - "compatible": 1, - "permut_InA_InA": 3, - "e.": 15, - "multiplicity_InA.": 1, - "meq.": 2, - "permut_cons_InA": 3, - "permut_nil": 3, - "by": 7, - "Abs": 2, - "permut_length_1": 1, - "P": 32, - "discriminate.": 2, - "permut_length_2": 1, - "/": 41, - "P.": 5, - "permut_length_1.": 2, - "red": 6, - "@if_eqA_rewrite_l": 2, - "omega.": 7, - "permut_length": 1, - "length": 21, - "InA_split": 1, - "h2": 1, - "t2": 51, - "subst": 7, - "app_length.": 2, - "plus_n_Sm": 1, - "f_equal.": 1, - "app_length": 1, - "IHl1": 1, - "permut_remove_hd": 1, - "revert": 5, - "f_equal": 1, - "if_eqA_rewrite_l": 1, - "NoDupA_equivlistA_permut": 1, - "Equivalence_Reflexive.": 1, - "change": 1, - "Equivalence_Reflexive": 1, - "Forall2": 2, - "permutation_Permutation": 1, - "exists": 60, - "Forall2.": 1, - "pose": 2, - "proof": 1, - "&": 21, - "IHP": 2, - "IHA": 2, - "Forall2_app_inv_r": 1, - "Hl1": 1, - "Hl2": 1, - "split.": 17, - "Permutation_cons_app": 3, - "Forall2_app": 1, - "Forall2_cons": 1, - "Heq": 8, - "Permutation_impl_permutation": 1, - "permut_eqA": 1, - "Permut_permut.": 1, - "permut_right": 1, - "only": 3, - "parsing": 3, - "permut_tran": 1, - "Export": 10, - "SfLib.": 2, - "STLC.": 1, - "ty": 7, - "ty_Bool": 10, - "ty_arrow": 7, - "ty.": 2, - "tm": 43, - "tm_var": 6, - "id": 7, - "tm_app": 7, - "tm_abs": 9, - "tm_true": 8, - "tm_false": 5, - "tm_if": 10, - "tm.": 3, - "Tactic": 9, - "tactic": 9, - "first": 18, - "ident": 9, - "Case_aux": 38, - "Id": 7, - "idB": 2, - "idBB": 2, - "idBBBB": 2, - "k": 7, - "value": 25, - "Prop": 17, - "v_abs": 1, - "T": 49, - "t": 93, - "t_true": 1, - "t_false": 1, - "tm_false.": 3, - "Hint": 9, - "Constructors": 3, - "value.": 1, - "s": 13, - "beq_id": 14, - "t1": 48, - "ST_App2": 1, - "v1": 7, - "t3": 6, - "where": 6, - "step": 9, - "stepmany": 4, - "refl_step_closure": 11, - "step.": 3, - "step_example3": 1, - "idB.": 1, - "eapply": 8, - "rsc_step.": 2, - "ST_App1.": 2, - "ST_AppAbs.": 3, - "v_abs.": 2, - "rsc_refl.": 4, - "context": 1, - "partial_map": 4, - "Context.": 1, - "option": 6, - "empty": 3, - "fun": 17, - "None": 9, - "extend": 1, - "Gamma": 10, - "has_type": 4, - "appears_free_in": 1, - "S.": 1, - "dependent": 6, - "HT": 1, - "T_Var.": 1, - "extend_neq": 1, - "assumption.": 61, - "Heqe.": 3, - "rename": 2, - "i": 11, - "into": 2, - "y.": 15, - "T_Abs.": 1, - "remember": 12, - "context_invariance...": 2, - "beq_id_eq": 4, - "subst.": 43, - "Hafi.": 2, - "extend.": 2, - "IHt.": 1, - "x0": 14, - "Coiso1.": 2, - "Coiso2.": 3, - "HeqCoiso1.": 1, - "HeqCoiso2.": 1, - "beq_id_false_not_eq.": 1, - "ex_falso_quodlibet.": 1, - "H0.": 24, - "preservation": 1, - "HT.": 1, - "substitution_preserves_typing": 1, - "T11.": 4, - "HT1.": 1, - "T_App": 2, - "IHHT1.": 1, - "IHHT2.": 1, - "t.": 4, - "tm_cases": 1, - "Ht": 1, - "Ht.": 3, - "IHt1": 2, - "T11": 2, - "IHt2": 3, - "T0": 2, - "ST_App2.": 1, - "ty_Bool.": 1, - "T.": 9, - "IHt3": 1, - "t2.": 4, - "ST_IfTrue.": 1, - "t3.": 2, - "ST_IfFalse.": 1, - "ST_If.": 2, - "types_unique": 1, - "T1": 25, - "T12": 2, - "IHhas_type.": 1, - "IHhas_type1.": 1, - "IHhas_type2.": 1, - "List": 2, - "Setoid": 1, - "Compare_dec": 1, - "Morphisms.": 2, - "ListNotations.": 1, - "Permutation.": 2, - "perm_nil": 1, - "perm_skip": 1, - "Permutation_nil": 2, - "HF.": 3, - "@nil": 1, - "HF": 2, - "discriminate": 3, - "||": 1, - "Permutation_nil_cons": 1, - "nil": 46, - "Permutation_refl": 1, - "constructor.": 16, - "exact": 4, - "IHl.": 7, - "Permutation_sym": 1, - "Hperm": 7, - "perm_trans": 1, - "Permutation_trans": 4, - "Proper": 5, - "Logic.eq": 2, - "@Permutation": 5, - "iff": 1, - "@In": 1, - "Permutation_in.": 2, - "Permutation_app_tail": 2, - "tl": 8, - "Permutation_app_head": 2, - "app_comm_cons": 5, - "assumption": 10, - "Permutation_app": 3, - "Hpermmm": 1, - "idtac": 1, - "try": 17, - "@app": 1, - "now": 24, - "Permutation_app.": 1, - "Permutation_add_inside": 1, - "Permutation_cons_append": 1, - "Resolve": 5, - "Permutation_cons_append.": 3, - "Permutation_app_comm": 3, - "app_nil_r": 1, - "app_assoc": 2, - "Permutation_middle": 2, - "Permutation_rev": 3, - "1": 1, - "@rev": 1, - "2": 1, - "Permutation_length": 2, - "@length": 1, - "Permutation_length.": 1, - "Permutation_ind_bis": 2, - "Hnil": 1, - "Hskip": 3, - "Hswap": 2, - "Htrans.": 1, - "Htrans": 1, - "eauto.": 7, - "Ltac": 1, - "break_list": 5, - "injection": 4, - "Permutation_nil_app_cons": 1, - "Hp": 5, - "IH": 3, - "Permutation_middle.": 3, - "perm_swap.": 2, - "perm_swap": 1, - "eq_refl": 2, - "In_split": 1, - "Permutation_app_inv": 1, - "NoDup": 4, - "incl": 3, - "N.": 1, - "E": 7, - "Hx.": 5, - "In": 6, - "Hy": 14, - "N": 1, - "Hal": 1, - "Hl": 1, - "exfalso.": 1, - "Hx": 20, - "NoDup_Permutation_bis": 2, - "intuition.": 2, - "Permutation_NoDup": 1, - "Permutation_map": 1, - "Hf": 15, - "Hy.": 3, - "injective_bounded_surjective": 1, - "f": 108, - "injective": 6, - "set": 1, - "seq": 2, - "map": 4, - "x.": 3, - "in_map_iff.": 2, - "in_seq": 4, - "arith": 4, - "NoDup_cardinal_incl": 1, - "injective_map_NoDup": 2, - "seq_NoDup": 1, - "map_length": 1, - "in_map_iff": 1, - "nat_bijection_Permutation": 1, - "let": 3, - "BD.": 1, - "seq_NoDup.": 1, - "map_length.": 1, - "Injection": 1, - "Permutation_alt": 1, - "Alternative": 1, - "characterization": 1, - "of": 4, - "via": 1, - "nth_error": 7, - "and": 1, - "nth": 2, - "adapt": 4, - "le_lt_dec": 9, - "adapt_injective": 1, - "adapt.": 2, - "EQ.": 2, - "LE": 11, - "LT": 14, - "eq_add_S": 2, - "Hf.": 1, - "Lt.le_lt_or_eq": 3, - "LE.": 3, - "lt": 3, - "LT.": 5, - "Lt.S_pred": 3, - "elim": 21, - "Lt.lt_not_le": 2, - "adapt_ok": 2, - "nth_error_app1": 1, - "nth_error_app2": 1, - "Minus.minus_Sn_m": 1, - "Permutation_nth_error": 2, - "IHP2": 1, - "g": 6, - "Hg": 2, - "E.": 2, - "L12": 2, - "plus_n_Sm.": 1, - "adapt_injective.": 1, - "nth_error_None": 4, - "Hn": 1, - "Hf2": 1, - "Hf3": 2, - "Lt.le_or_lt": 1, - "Lt.lt_irrefl": 2, - "Lt.lt_le_trans": 2, - "Hf1": 1, - "congruence.": 1, - "Permutation_alt.": 1, - "Permutation_app_swap": 1, - "Lists.": 1, - "Basics.": 2, - "X": 191, - "cons": 26, - "X.": 4, - "h": 14, - "app": 5, - "snoc": 9, - "v": 28, - "Arguments": 11, - "list123": 1, - "right": 2, - "count": 7, - "test_repeat1": 1, - "nil_app": 1, - "rev_snoc": 1, - "s.": 4, - "IHs.": 2, - "snoc_with_append": 1, - "v.": 1, - "IHl1.": 1, - "prod": 3, - "Y": 38, - "pair": 7, - "Y.": 1, - "type_scope.": 1, - "fst": 3, - "snd": 3, - "combine": 3, - "lx": 4, - "ly": 4, - "tx": 2, - "tp": 2, - "index": 3, - "xs": 7, - "hd_opt": 8, - "test_hd_opt1": 2, - "test_hd_opt2": 2, - "plus3": 2, - "prod_curry": 3, - "Z": 11, - "prod_uncurry": 3, - "uncurry_uncurry": 1, - "curry_uncurry": 1, - "filter": 3, - "test": 4, - "countoddmembers": 1, - "fmostlytrue": 5, - "override": 5, - "ftrue": 1, - "override_example1": 1, - "override_example2": 1, - "override_example3": 1, - "override_example4": 1, - "override_example": 1, - "constfun": 1, - "unfold_example_bad": 1, - "plus3.": 1, - "override_eq": 1, - "f.": 1, - "override.": 2, - "override_neq": 1, - "x1": 11, - "x2": 3, - "k1": 5, - "k2": 4, - "x1.": 3, - "eq1": 6, - "eq2.": 9, - "eq1.": 5, - "eq.": 11, - "silly4": 1, - "silly5": 1, - "sillyex1": 1, - "z": 14, - "j": 6, - "j.": 1, - "symmetry.": 2, - "silly6": 1, - "contra.": 19, - "silly7": 1, - "sillyex2": 1, - "z.": 6, - "beq_nat_eq": 2, - "SCase": 24, - "assertion": 3, - "Hl.": 1, - "eq": 4, - "SSCase": 3, - "beq_nat_O_l": 1, - "beq_nat_O_r": 1, - "double_injective": 1, - "double": 2, - "fold_map": 2, - "fold": 1, - "total": 2, - "fold_map_correct": 1, - "fold_map.": 1, - "forallb": 4, - "existsb": 3, - "existsb2": 2, - "existsb_correct": 1, - "existsb2.": 1, - "index_okx": 1, - "None.": 2, - "mumble": 5, - "mumble.": 1, - "grumble": 3, - "PermutSetoid": 1, - "Sorting.": 1, - "defs.": 2, - "leA": 25, - "gtA": 1, - "leA_dec": 4, - "leA_refl": 1, - "leA_trans": 2, - "leA_antisym": 1, - "leA_refl.": 1, - "Immediate": 1, - "leA_antisym.": 1, "Tree": 24, "Tree_Leaf": 9, "Tree_Node": 11, "Tree.": 1, "leA_Tree": 16, + "a": 207, + "t": 93, "True": 1, + "T1": 25, "T2": 20, "leA_Tree_Leaf": 5, "Tree_Leaf.": 1, + ";": 375, + "auto": 73, + "datatypes.": 47, "leA_Tree_Node": 1, "G": 6, "is_heap": 18, + "Prop": 17, "nil_is_heap": 5, "node_is_heap": 7, "invert_heap": 3, + "/": 41, "T2.": 1, + "inversion": 104, "is_heap_rect": 1, + "P": 32, + "T": 49, + "T.": 9, + "simple": 7, "PG": 2, "PD": 2, "PN.": 2, + "elim": 21, "H4": 7, + "intros.": 27, + "apply": 340, "X0": 2, "is_heap_rec": 1, + "Set": 4, + "X": 191, "low_trans": 3, "merge_lem": 3, + "l1": 89, + "l2": 73, + "list": 78, "merge_exist": 5, + "l": 379, "Sorted": 5, + "meq": 15, + "list_contents": 30, + "munion": 18, "HdRel": 4, + "l2.": 8, + "Morphisms.": 2, + "Instance": 7, + "Equivalence": 2, "@meq": 4, + "constructor": 6, "red.": 1, "meq_trans.": 1, "Defined.": 1, + "Proper": 5, "@munion": 1, + "now": 24, "meq_congr.": 1, "merge": 5, "fix": 2, + "l1.": 5, + "rename": 2, + "into": 2, + "l.": 26, + "revert": 5, + "H0.": 24, + "a0": 15, + "l0": 7, "Sorted_inv": 2, + "in": 221, + "H0": 16, + "clear": 7, "merge0.": 2, + "using": 18, "cons_sort": 2, "cons_leA": 2, "munion_ass.": 2, "cons_leA.": 2, "@HdRel_inv": 2, + "trivial": 15, "merge0": 1, "setoid_rewrite": 2, "munion_ass": 1, "munion_comm.": 2, + "repeat": 11, "munion_comm": 1, "contents": 12, + "multiset": 2, + "t1": 48, + "t2": 51, "equiv_Tree": 1, "insert_spec": 3, "insert_exist": 4, "insert": 2, + "unfold": 58, + "T0": 2, "treesort_twist1": 1, "T3": 2, "HeapT3": 1, @@ -18521,12 +17998,17 @@ "build_heap": 3, "heap_exist": 3, "list_to_heap": 2, + "nil": 46, + "exact": 4, "nil_is_heap.": 1, + "i": 11, + "meq_trans": 10, "meq_right": 2, "meq_sym": 2, "flat_spec": 3, "flat_exist": 3, "heap_to_list": 2, + "h": 14, "s1": 20, "i1": 15, "m1": 1, @@ -18536,7 +18018,13 @@ "meq_congr": 1, "munion_rotate.": 1, "treesort": 1, + "&": 21, + "permutation": 43, + "intro": 27, "permutation.": 1, + "exists": 60, + "Export": 10, + "SfLib.": 2, "AExp.": 2, "aexp": 30, "ANum": 18, @@ -18553,6 +18041,9 @@ "BAnd": 10, "bexp.": 1, "aeval": 46, + "e": 53, + "a1": 56, + "a2": 62, "test_aeval1": 1, "beval": 16, "optimize_0plus": 15, @@ -18560,13 +18051,22 @@ "e1": 58, "test_optimize_0plus": 1, "optimize_0plus_sound": 4, + "e.": 15, "e1.": 1, + "SCase": 24, + "SSCase": 3, "IHe2.": 10, "IHe1.": 11, "aexp_cases": 3, + "try": 17, "IHe1": 6, "IHe2": 6, "optimize_0plus_all": 2, + "Tactic": 9, + "tactic": 9, + "first": 18, + "ident": 9, + "Case_aux": 38, "optimize_0plus_all_sound": 1, "bexp_cases": 4, "optimize_and": 5, @@ -18582,6 +18082,7 @@ "E_AMult": 2, "Reserved": 4, "E_ANum": 1, + "where": 6, "bevalR": 11, "E_BTrue": 1, "E_BFalse": 1, @@ -18590,26 +18091,42 @@ "E_BNot": 1, "E_BAnd": 1, "aeval_iff_aevalR": 9, + "split.": 17, + "subst": 7, + "generalize": 13, + "dependent": 6, "IHa1": 1, "IHa2": 1, "beval_iff_bevalR": 1, + "*.": 110, + "subst.": 43, "IHbevalR": 1, "IHbevalR1": 1, "IHbevalR2": 1, + "a.": 6, + "constructor.": 16, + "<": 76, + "remember": 12, "IHa.": 1, "IHa1.": 1, "IHa2.": 1, "silly_presburger_formula": 1, "<=>": 12, "3": 2, + "omega": 7, + "Id": 7, + "id": 7, "id.": 1, + "beq_id": 14, "id1": 2, "id2": 2, "beq_id_refl": 1, "i.": 2, "beq_nat_refl.": 1, + "beq_id_eq": 4, "i2.": 8, "i1.": 3, + "beq_nat_eq": 2, "beq_id_false_not_eq": 1, "C.": 3, "n0": 5, @@ -18642,25 +18159,34 @@ "E_IfFalse": 1, "assignment": 1, "command": 2, + "if": 10, "st1": 2, "IHi1": 3, "Heqst1": 1, "Hceval.": 4, "Hceval": 2, + "assumption.": 61, "bval": 2, "ceval_step": 3, + "Some": 21, "ceval_step_more": 7, + "x1.": 3, + "omega.": 7, "x2.": 2, "IHHce.": 2, "%": 3, "IHHce1.": 1, "IHHce2.": 1, + "x0": 14, "plus2": 1, "nx": 3, + "Y": 38, "ny": 2, "XtimesYinZ": 1, + "Z": 11, "ny.": 1, "loop": 2, + "contra.": 19, "loopdef.": 1, "Heqloopdef.": 8, "contra1.": 1, @@ -18679,6 +18205,8 @@ "noWhilesAss.": 1, "noWhilesSeq.": 1, "IHc1.": 2, + "auto.": 47, + "eauto": 10, "andb_true_elim1": 4, "IHc2.": 2, "andb_true_elim2": 4, @@ -18691,13 +18219,17 @@ "IHc1": 2, "IHc2": 2, "H5.": 1, + "x1": 11, "r": 11, "r.": 3, + "symmetry": 4, "Heqr.": 1, "H4.": 2, + "s": 13, "Heqr": 3, "H8.": 1, "H10": 1, + "assumption": 10, "beval_short_circuit": 5, "beval_short_circuit_eqv": 1, "sinstr": 8, @@ -18710,12 +18242,14 @@ "s_execute": 21, "stack": 7, "prog": 2, + "cons": 26, "al": 3, "bl": 3, "s_execute1": 1, "empty_state": 2, "s_execute2": 1, "s_compile": 36, + "v": 28, "s_compile1": 1, "execute_theorem": 1, "other": 20, @@ -18724,181 +18258,6 @@ "s_compile_correct": 1, "app_nil_end.": 1, "execute_theorem.": 1, - "Imp.": 1, - "Relations.": 1, - "tm_const": 45, - "tm_plus": 30, - "SimpleArith0.": 2, - "eval": 8, - "SimpleArith1.": 2, - "E_Const": 2, - "E_Plus": 2, - "test_step_1": 1, - "ST_Plus1.": 2, - "ST_PlusConstConst.": 3, - "test_step_2": 1, - "ST_Plus2.": 2, - "step_deterministic": 1, - "partial_function": 6, - "partial_function.": 5, - "y1": 6, - "y2": 5, - "Hy1": 2, - "Hy2.": 2, - "y2.": 3, - "step_cases": 4, - "Hy2": 3, - "SCase.": 3, - "Hy1.": 5, - "IHHy1": 2, - "SimpleArith2.": 1, - "v_const": 4, - "ST_PlusConstConst": 3, - "ST_Plus1": 2, - "strong_progress": 2, - "R": 54, - "value_not_same_as_normal_form": 2, - "normal_form": 3, - "normal_form.": 2, - "v_funny.": 1, - "not.": 3, - "Temp1.": 1, - "Temp2.": 1, - "ST_Funny": 1, - "Temp3.": 1, - "Temp4.": 2, - "v_true": 1, - "v_false": 1, - "ST_IfTrue": 1, - "ST_IfFalse": 1, - "ST_If": 1, - "bool_step_prop4": 1, - "bool_step_prop4_holds": 1, - "bool_step_prop4.": 2, - "ST_ShortCut.": 1, - "left.": 3, - "IHt1.": 1, - "Temp5.": 1, - "normalizing": 1, - "H11": 2, - "H12": 2, - "H21": 3, - "H22": 2, - "nf_same_as_value": 3, - "H12.": 1, - "H22.": 1, - "H11.": 1, - "rsc_trans": 4, - "stepmany_congr_1": 1, - "stepmany_congr2": 1, - "rsc_R": 2, - "eval__value": 1, - "HE.": 1, - "eval_cases": 1, - "HE": 1, - "v_const.": 1, - "Sorted.": 1, - "Mergesort.": 1, - "NatList.": 2, - "natprod": 5, - "natprod.": 1, - "swap_pair": 1, - "surjective_pairing": 1, - "remove_one": 3, - "test_remove_one1": 1, - "remove_all": 2, - "bag": 3, - "app_ass": 1, - "natlist": 7, - "l3.": 1, - "remove_decreases_count": 1, - "ble_n_Sn.": 1, - "natoption": 5, - "natoption.": 1, - "option_elim": 2, - "option_elim_hd": 1, - "head": 1, - "beq_natlist": 5, - "r1": 2, - "v2": 2, - "r2": 2, - "test_beq_natlist1": 1, - "test_beq_natlist2": 1, - "beq_natlist_refl": 1, - "silly1": 1, - "eq2": 1, - "silly2a": 1, - "silly_ex": 1, - "silly3": 1, - "rev_exercise": 1, - "rev_involutive.": 1, - "Logic.": 1, - "Prop.": 1, - "next_nat_partial_function": 1, - "next_nat.": 1, - "Q.": 2, - "le_not_a_partial_function": 1, - "le": 1, - "Nonsense.": 4, - "le_n.": 6, - "le_S.": 4, - "total_relation_not_partial_function": 1, - "total_relation": 1, - "total_relation1.": 2, - "empty_relation_not_partial_funcion": 1, - "empty_relation.": 1, - "reflexive": 5, - "le_reflexive": 1, - "le.": 4, - "reflexive.": 1, - "transitive": 8, - "le_trans": 4, - "Hnm": 3, - "Hmo.": 4, - "Hnm.": 3, - "IHHmo.": 1, - "lt_trans": 4, - "lt.": 2, - "transitive.": 1, - "le_S": 6, - "Hm": 1, - "le_Sn_le": 2, - "le_S_n": 2, - "Sn_le_Sm__n_le_m.": 1, - "le_Sn_n": 5, - "not": 1, - "TODO": 1, - "Hmo": 1, - "symmetric": 2, - "antisymmetric": 3, - "le_antisymmetric": 1, - "Sn_le_Sm__n_le_m": 2, - "IHb": 1, - "equivalence": 1, - "order": 2, - "preorder": 1, - "le_order": 1, - "order.": 1, - "le_reflexive.": 1, - "le_antisymmetric.": 1, - "le_trans.": 1, - "clos_refl_trans": 8, - "rt_step": 1, - "rt_refl": 1, - "rt_trans": 3, - "next_nat_closure_is_le": 1, - "next_nat": 1, - "rt_refl.": 2, - "IHle.": 1, - "rt_step.": 2, - "nn.": 1, - "IHclos_refl_trans1.": 2, - "IHclos_refl_trans2.": 2, - "rsc_refl": 1, - "rsc_step": 4, - "IHrefl_step_closure": 1, - "rtc_rsc_coincide": 1, - "IHrefl_step_closure.": 1, "Eqdep_dec.": 1, "Arith.": 2, "eq_rect_eq_nat": 2, @@ -18909,37 +18268,54 @@ "eq_nat_dec.": 1, "Scheme": 1, "le_ind": 1, + "replace": 4, "le_n": 4, + "fun": 17, "refl_equal": 4, "pattern": 2, "case": 2, + "trivial.": 14, "contradiction": 8, + "le_Sn_n": 5, + "le_S": 6, + "Heq": 8, "m0": 1, "HeqS": 3, + "injection": 4, "HeqS.": 2, "eq_rect_eq_nat.": 1, "IHp": 2, "dep_pair_intro": 2, + "Hx": 20, + "Hy": 14, "<=n),>": 1, "x=": 1, "exist": 7, + "Hy.": 3, "Heq.": 6, "le_uniqueness_proof": 1, "Hy0": 1, "card": 2, + "f": 108, "card_interval": 1, "<=n}>": 1, "proj1_sig": 1, "proj2_sig": 1, + "Hp": 5, "Hq": 3, "Hpq.": 1, "Hmn.": 1, "Hmn": 1, "interval_dec": 1, + "left.": 3, "dep_pair_intro.": 3, + "right.": 9, + "discriminate": 3, + "le_Sn_le": 2, "eq_S.": 1, "Hneq.": 2, "card_inj_aux": 1, + "g": 6, "False.": 1, "Hfbound": 1, "Hfinj": 1, @@ -18948,8 +18324,14 @@ "Hfx": 2, "le_n_O_eq.": 2, "Hfbound.": 2, + "Hx.": 5, + "le_lt_dec": 9, "xSn": 21, + "then": 9, + "else": 9, + "is": 4, "bounded": 1, + "injective": 6, "Hlefx": 1, "Hgefx": 1, "Hlefy": 1, @@ -18979,10 +18361,13 @@ "Heqx": 4, "Hle.": 1, "le_not_lt": 1, + "lt_trans": 4, "lt_n_Sn.": 1, "Hlt.": 1, "lt_irrefl": 2, "lt_le_trans": 1, + "pose": 2, + "let": 3, "Hneqx": 1, "Hneqy": 1, "Heqg": 1, @@ -18995,7 +18380,622 @@ "<=m}>": 1, "card_inj": 1, "interval_dec.": 1, - "card_interval.": 2 + "card_interval.": 2, + "Basics.": 2, + "NatList.": 2, + "natprod": 5, + "pair": 7, + "natprod.": 1, + "fst": 3, + "snd": 3, + "swap_pair": 1, + "surjective_pairing": 1, + "count": 7, + "remove_one": 3, + "test_remove_one1": 1, + "remove_all": 2, + "bag": 3, + "app_ass": 1, + "l3": 12, + "natlist": 7, + "l3.": 1, + "remove_decreases_count": 1, + "s.": 4, + "ble_n_Sn.": 1, + "IHs.": 2, + "natoption": 5, + "None": 9, + "natoption.": 1, + "index": 3, + "option_elim": 2, + "hd_opt": 8, + "test_hd_opt1": 2, + "None.": 2, + "test_hd_opt2": 2, + "option_elim_hd": 1, + "head": 1, + "beq_natlist": 5, + "v1": 7, + "r1": 2, + "v2": 2, + "r2": 2, + "test_beq_natlist1": 1, + "test_beq_natlist2": 1, + "beq_natlist_refl": 1, + "IHl.": 7, + "silly1": 1, + "eq1": 6, + "eq2.": 9, + "eq2": 1, + "silly2a": 1, + "eq1.": 5, + "silly_ex": 1, + "silly3": 1, + "symmetry.": 2, + "rev_exercise": 1, + "rev_involutive.": 1, + "Setoid": 1, + "Compare_dec": 1, + "ListNotations.": 1, + "Implicit": 15, + "Arguments.": 2, + "Permutation.": 2, + "Permutation": 38, + "perm_nil": 1, + "perm_skip": 1, + "Local": 7, + "Constructors": 3, + "Permutation_nil": 2, + "HF.": 3, + "@nil": 1, + "HF": 2, + "||": 1, + "Permutation_nil_cons": 1, + "discriminate.": 2, + "Permutation_refl": 1, + "Permutation_sym": 1, + "Hperm": 7, + "perm_trans": 1, + "Permutation_trans": 4, + "Logic.eq": 2, + "@Permutation": 5, + "iff": 1, + "@In": 1, + "red": 6, + "Permutation_in.": 2, + "Permutation_app_tail": 2, + "tl": 8, + "eapply": 8, + "Permutation_app_head": 2, + "app_comm_cons": 5, + "Permutation_app": 3, + "Hpermmm": 1, + "idtac": 1, + "Global": 5, + "@app": 1, + "Permutation_app.": 1, + "Permutation_add_inside": 1, + "Permutation_cons_append": 1, + "IHl": 8, + "Permutation_cons_append.": 3, + "Permutation_app_comm": 3, + "app_nil_r": 1, + "app_assoc": 2, + "Permutation_cons_app": 3, + "Permutation_middle": 2, + "Permutation_rev": 3, + "rev": 7, + "1": 1, + "@rev": 1, + "2": 1, + "Permutation_length": 2, + "length": 21, + "transitivity": 4, + "@length": 1, + "Permutation_length.": 1, + "Permutation_ind_bis": 2, + "Hnil": 1, + "Hskip": 3, + "Hswap": 2, + "Htrans.": 1, + "Htrans": 1, + "eauto.": 7, + "Ltac": 1, + "break_list": 5, + "Permutation_nil_app_cons": 1, + "l4": 3, + "P.": 5, + "IH": 3, + "Permutation_middle.": 3, + "perm_swap.": 2, + "perm_swap": 1, + "eq_refl": 2, + "In_split": 1, + "Permutation_app_inv": 1, + "NoDup": 4, + "incl": 3, + "N.": 1, + "E": 7, + "Ha": 6, + "In": 6, + "N": 1, + "Hal": 1, + "Hl": 1, + "exfalso.": 1, + "NoDup_Permutation_bis": 2, + "inversion_clear": 6, + "intuition.": 2, + "Permutation_NoDup": 1, + "Permutation_map": 1, + "Hf": 15, + "injective_bounded_surjective": 1, + "set": 1, + "seq": 2, + "map": 4, + "x.": 3, + "in_map_iff.": 2, + "in_seq": 4, + "arith": 4, + "NoDup_cardinal_incl": 1, + "injective_map_NoDup": 2, + "seq_NoDup": 1, + "map_length": 1, + "by": 7, + "in_map_iff": 1, + "split": 14, + "nat_bijection_Permutation": 1, + "BD.": 1, + "seq_NoDup.": 1, + "map_length.": 1, + "Injection": 1, + "Permutation_alt": 1, + "Alternative": 1, + "characterization": 1, + "of": 4, + "via": 1, + "nth_error": 7, + "and": 1, + "nth": 2, + "adapt": 4, + "adapt_injective": 1, + "adapt.": 2, + "EQ.": 2, + "LE": 11, + "LT": 14, + "eq_add_S": 2, + "Hf.": 1, + "Lt.le_lt_or_eq": 3, + "LE.": 3, + "EQ": 8, + "lt": 3, + "LT.": 5, + "Lt.S_pred": 3, + "Lt.lt_not_le": 2, + "adapt_ok": 2, + "nth_error_app1": 1, + "nth_error_app2": 1, + "arith.": 8, + "Minus.minus_Sn_m": 1, + "Permutation_nth_error": 2, + "IHP": 2, + "IHP2": 1, + "Hg": 2, + "E.": 2, + "L12": 2, + "app_length.": 2, + "plus_n_Sm.": 1, + "adapt_injective.": 1, + "nth_error_None": 4, + "Hn": 1, + "Hf2": 1, + "Hf3": 2, + "Lt.le_or_lt": 1, + "Lt.lt_irrefl": 2, + "Lt.lt_le_trans": 2, + "Hf1": 1, + "do": 4, + "congruence.": 1, + "Permutation_alt.": 1, + "Permutation_app_swap": 1, + "only": 3, + "parsing": 3, + "Omega": 1, + "SetoidList.": 1, + "nil.": 2, + "..": 4, + "Permut.": 1, + "eqA_equiv": 1, + "eqA.": 1, + "list_contents_app": 5, + "permut_refl": 1, + "permut_sym": 4, + "permut_trans": 5, + "permut_cons_eq": 3, + "meq_left": 1, + "meq_singleton": 1, + "permut_cons": 5, + "permut_app": 1, + "specialize": 6, + "a0.": 1, + "decide": 1, + "permut_add_inside_eq": 1, + "permut_add_cons_inside": 3, + "permut_add_inside": 1, + "permut_middle": 1, + "permut_refl.": 5, + "permut_sym_app": 1, + "permut_rev": 1, + "permut_add_cons_inside.": 1, + "app_nil_end": 1, + "results": 1, + "permut_conv_inv": 1, + "plus_reg_l.": 1, + "permut_app_inv1": 1, + "list_contents_app.": 1, + "plus_reg_l": 1, + "multiplicity": 6, + "Fact": 3, + "if_eqA_then": 1, + "B": 6, + "if_eqA_refl": 3, + "decide_left": 1, + "if_eqA": 1, + "contradict": 3, + "A1": 2, + "if_eqA_rewrite_r": 1, + "A2": 4, + "Hxx": 1, + "multiplicity_InA": 4, + "InA": 8, + "multiplicity_InA_O": 2, + "multiplicity_InA_S": 1, + "multiplicity_NoDupA": 1, + "NoDupA": 3, + "NEQ": 1, + "compatible": 1, + "permut_InA_InA": 3, + "multiplicity_InA.": 1, + "meq.": 2, + "permut_cons_InA": 3, + "permut_nil": 3, + "Abs": 2, + "permut_length_1": 1, + "permut_length_2": 1, + "permut_length_1.": 2, + "@if_eqA_rewrite_l": 2, + "permut_length": 1, + "InA_split": 1, + "h2": 1, + "plus_n_Sm": 1, + "f_equal.": 1, + "app_length": 1, + "IHl1": 1, + "permut_remove_hd": 1, + "f_equal": 1, + "if_eqA_rewrite_l": 1, + "NoDupA_equivlistA_permut": 1, + "Equivalence_Reflexive.": 1, + "change": 1, + "Equivalence_Reflexive": 1, + "Forall2": 2, + "permutation_Permutation": 1, + "Forall2.": 1, + "proof": 1, + "IHA": 2, + "Forall2_app_inv_r": 1, + "Hl1": 1, + "Hl2": 1, + "Forall2_app": 1, + "Forall2_cons": 1, + "Permutation_impl_permutation": 1, + "permut_eqA": 1, + "Permut_permut.": 1, + "permut_right": 1, + "permut_tran": 1, + "Lists.": 1, + "X.": 4, + "app": 5, + "snoc": 9, + "Arguments": 11, + "list123": 1, + "right": 2, + "test_repeat1": 1, + "nil_app": 1, + "rev_snoc": 1, + "snoc_with_append": 1, + "v.": 1, + "IHl1.": 1, + "prod": 3, + "Y.": 1, + "type_scope.": 1, + "combine": 3, + "lx": 4, + "ly": 4, + "tx": 2, + "ty": 7, + "tp": 2, + "option": 6, + "xs": 7, + "plus3": 2, + "prod_curry": 3, + "prod_uncurry": 3, + "uncurry_uncurry": 1, + "curry_uncurry": 1, + "filter": 3, + "test": 4, + "countoddmembers": 1, + "k": 7, + "fmostlytrue": 5, + "override": 5, + "ftrue": 1, + "override_example1": 1, + "override_example2": 1, + "override_example3": 1, + "override_example4": 1, + "override_example": 1, + "constfun": 1, + "unfold_example_bad": 1, + "plus3.": 1, + "override_eq": 1, + "f.": 1, + "override.": 2, + "override_neq": 1, + "x2": 3, + "k1": 5, + "k2": 4, + "eq.": 11, + "silly4": 1, + "silly5": 1, + "sillyex1": 1, + "j": 6, + "j.": 1, + "silly6": 1, + "silly7": 1, + "sillyex2": 1, + "assertion": 3, + "Hl.": 1, + "eq": 4, + "beq_nat_O_l": 1, + "beq_nat_O_r": 1, + "double_injective": 1, + "double": 2, + "fold_map": 2, + "fold": 1, + "total": 2, + "fold_map_correct": 1, + "fold_map.": 1, + "forallb": 4, + "existsb": 3, + "existsb2": 2, + "existsb_correct": 1, + "existsb2.": 1, + "index_okx": 1, + "mumble": 5, + "mumble.": 1, + "grumble": 3, + "Logic.": 1, + "Prop.": 1, + "partial_function": 6, + "R": 54, + "y1": 6, + "y2": 5, + "y2.": 3, + "next_nat_partial_function": 1, + "next_nat.": 1, + "partial_function.": 5, + "Q.": 2, + "le_not_a_partial_function": 1, + "le": 1, + "not.": 3, + "Nonsense.": 4, + "le_n.": 6, + "le_S.": 4, + "total_relation_not_partial_function": 1, + "total_relation": 1, + "total_relation1.": 2, + "empty_relation_not_partial_funcion": 1, + "empty_relation.": 1, + "reflexive": 5, + "le_reflexive": 1, + "le.": 4, + "reflexive.": 1, + "transitive": 8, + "le_trans": 4, + "Hnm": 3, + "Hmo.": 4, + "Hnm.": 3, + "IHHmo.": 1, + "lt.": 2, + "transitive.": 1, + "Hm": 1, + "le_S_n": 2, + "Sn_le_Sm__n_le_m.": 1, + "not": 1, + "TODO": 1, + "Hmo": 1, + "symmetric": 2, + "antisymmetric": 3, + "le_antisymmetric": 1, + "Sn_le_Sm__n_le_m": 2, + "IHb": 1, + "equivalence": 1, + "order": 2, + "preorder": 1, + "le_order": 1, + "order.": 1, + "le_reflexive.": 1, + "le_antisymmetric.": 1, + "le_trans.": 1, + "clos_refl_trans": 8, + "rt_step": 1, + "rt_refl": 1, + "rt_trans": 3, + "next_nat_closure_is_le": 1, + "next_nat": 1, + "rt_refl.": 2, + "IHle.": 1, + "rt_step.": 2, + "nn.": 1, + "IHclos_refl_trans1.": 2, + "IHclos_refl_trans2.": 2, + "refl_step_closure": 11, + "rsc_refl": 1, + "rsc_step": 4, + "rsc_R": 2, + "rsc_refl.": 4, + "rsc_trans": 4, + "IHrefl_step_closure": 1, + "rtc_rsc_coincide": 1, + "IHrefl_step_closure.": 1, + "Imp.": 1, + "Relations.": 1, + "tm": 43, + "tm_const": 45, + "tm_plus": 30, + "tm.": 3, + "SimpleArith0.": 2, + "eval": 8, + "SimpleArith1.": 2, + "E_Const": 2, + "E_Plus": 2, + "test_step_1": 1, + "ST_Plus1.": 2, + "ST_PlusConstConst.": 3, + "test_step_2": 1, + "ST_Plus2.": 2, + "step_deterministic": 1, + "step.": 3, + "Hy1": 2, + "Hy2.": 2, + "step_cases": 4, + "Hy2": 3, + "SCase.": 3, + "Hy1.": 5, + "IHHy1": 2, + "SimpleArith2.": 1, + "value": 25, + "v_const": 4, + "step": 9, + "ST_PlusConstConst": 3, + "ST_Plus1": 2, + "strong_progress": 2, + "value_not_same_as_normal_form": 2, + "normal_form": 3, + "t.": 4, + "normal_form.": 2, + "v_funny.": 1, + "Temp1.": 1, + "Temp2.": 1, + "ST_Funny": 1, + "Temp3.": 1, + "Temp4.": 2, + "tm_true": 8, + "tm_false": 5, + "tm_if": 10, + "v_true": 1, + "v_false": 1, + "tm_false.": 3, + "ST_IfTrue": 1, + "ST_IfFalse": 1, + "ST_If": 1, + "t3": 6, + "bool_step_prop4": 1, + "bool_step_prop4_holds": 1, + "bool_step_prop4.": 2, + "ST_ShortCut.": 1, + "IHt1.": 1, + "t2.": 4, + "t3.": 2, + "ST_If.": 2, + "Temp5.": 1, + "stepmany": 4, + "normalizing": 1, + "IHt2": 3, + "H11": 2, + "H12": 2, + "H21": 3, + "H22": 2, + "nf_same_as_value": 3, + "H12.": 1, + "H22.": 1, + "H11.": 1, + "stepmany_congr_1": 1, + "stepmany_congr2": 1, + "eval__value": 1, + "HE.": 1, + "eval_cases": 1, + "HE": 1, + "v_const.": 1, + "Sorted.": 1, + "Mergesort.": 1, + "STLC.": 1, + "ty_Bool": 10, + "ty_arrow": 7, + "ty.": 2, + "tm_var": 6, + "tm_app": 7, + "tm_abs": 9, + "idB": 2, + "idBB": 2, + "idBBBB": 2, + "v_abs": 1, + "t_true": 1, + "t_false": 1, + "value.": 1, + "ST_App2": 1, + "step_example3": 1, + "idB.": 1, + "rsc_step.": 2, + "ST_App1.": 2, + "ST_AppAbs.": 3, + "v_abs.": 2, + "context": 1, + "partial_map": 4, + "Context.": 1, + "empty": 3, + "extend": 1, + "Gamma": 10, + "has_type": 4, + "appears_free_in": 1, + "S.": 1, + "HT": 1, + "T_Var.": 1, + "extend_neq": 1, + "Heqe.": 3, + "T_Abs.": 1, + "context_invariance...": 2, + "Hafi.": 2, + "extend.": 2, + "IHt.": 1, + "Coiso1.": 2, + "Coiso2.": 3, + "HeqCoiso1.": 1, + "HeqCoiso2.": 1, + "beq_id_false_not_eq.": 1, + "ex_falso_quodlibet.": 1, + "preservation": 1, + "HT.": 1, + "substitution_preserves_typing": 1, + "T11.": 4, + "HT1.": 1, + "T_App": 2, + "IHHT1.": 1, + "IHHT2.": 1, + "tm_cases": 1, + "Ht": 1, + "Ht.": 3, + "IHt1": 2, + "T11": 2, + "ST_App2.": 1, + "ty_Bool.": 1, + "IHt3": 1, + "ST_IfTrue.": 1, + "ST_IfFalse.": 1, + "types_unique": 1, + "T12": 2, + "IHhas_type.": 1, + "IHhas_type1.": 1, + "IHhas_type2.": 1 }, "Creole": { "Creole": 6, @@ -19092,13 +19092,19 @@ "describe": 2, "do": 26, "it": 21, - "assert_type": 7, + "run": 14, "(": 201, ")": 201, + ".to_i.should": 11, + "eq": 16, + "end": 135, + ".to_f32.should": 2, + ".to_b.should": 1, + "be_true": 1, + "assert_type": 7, "{": 7, "int32": 8, "}": 7, - "end": 135, "union_of": 1, "char": 1, "result": 3, @@ -19113,7 +19119,6 @@ "NonGenericClassType": 1, "foo.instance_vars": 1, ".type.should": 3, - "eq": 16, "mod.int32": 1, "GenericClassType": 2, "foo_i32": 4, @@ -19123,11 +19128,6 @@ "|": 8, "ASTNode": 4, "foo_i32.lookup_instance_var": 2, - "run": 14, - ".to_i.should": 11, - ".to_f32.should": 2, - ".to_b.should": 1, - "be_true": 1, "module": 1, "Crystal": 1, "class": 2, @@ -19599,9 +19599,75 @@ "go": 1, "car.milesTillEmpty": 1, "miles.": 1, + "name": 4, + "x": 3, + "y": 3, + "moveTo": 1, + "newX": 2, + "newY": 2, + "getX": 1, + "getY": 1, + "setName": 1, + "newName": 2, + "getName": 1, + "sportsCar": 1, + "sportsCar.moveTo": 1, + "sportsCar.getName": 1, + "is": 1, + "at": 1, + "X": 1, + "location": 1, + "sportsCar.getX": 1, + "makeVOCPair": 1, + "brandName": 3, + "String": 1, + "near": 6, + "myTempContents": 6, + "none": 2, + "brand": 5, + "__printOn": 4, + "out": 4, + "TextWriter": 4, + "void": 5, + "out.print": 4, + "ProveAuth": 2, + "<$brandName>": 3, + "prover": 1, + "getBrand": 4, + "coerce": 2, + "specimen": 2, + "optEjector": 3, + "sealedBox": 2, + "offerContent": 1, + "CheckAuth": 2, + "checker": 3, + "template": 1, + "match": 4, + "[": 10, + "get": 2, + "authList": 2, + "any": 2, + "]": 10, + "specimenBox": 2, + "null": 1, + "if": 2, + "specimenBox.__respondsTo": 1, + "specimenBox.offerContent": 1, + "else": 1, + "for": 3, + "auth": 3, + "in": 1, + "throw.eject": 1, + "Unmatched": 1, + "authorization": 1, + "__respondsTo": 2, + "_": 3, + "true": 1, + "false": 1, + "__getAllegedType": 1, + "null.__getAllegedType": 1, "#File": 1, "objects": 1, - "for": 3, "hardwired": 1, "files": 1, "file1": 1, @@ -19612,12 +19678,9 @@ "a": 4, "variable": 1, "file": 3, - "name": 4, "filePath": 2, "file3": 1, "": 1, - "[": 10, - "]": 10, "single": 1, "character": 1, "specify": 1, @@ -19651,69 +19714,6 @@ "file.getText": 1, "<": 1, "-": 2, - "makeVOCPair": 1, - "brandName": 3, - "String": 1, - "near": 6, - "myTempContents": 6, - "none": 2, - "brand": 5, - "__printOn": 4, - "out": 4, - "TextWriter": 4, - "void": 5, - "out.print": 4, - "ProveAuth": 2, - "<$brandName>": 3, - "prover": 1, - "getBrand": 4, - "coerce": 2, - "specimen": 2, - "optEjector": 3, - "sealedBox": 2, - "offerContent": 1, - "CheckAuth": 2, - "checker": 3, - "template": 1, - "match": 4, - "get": 2, - "authList": 2, - "any": 2, - "specimenBox": 2, - "null": 1, - "if": 2, - "specimenBox.__respondsTo": 1, - "specimenBox.offerContent": 1, - "else": 1, - "auth": 3, - "in": 1, - "throw.eject": 1, - "Unmatched": 1, - "authorization": 1, - "__respondsTo": 2, - "_": 3, - "true": 1, - "false": 1, - "__getAllegedType": 1, - "null.__getAllegedType": 1, - "x": 3, - "y": 3, - "moveTo": 1, - "newX": 2, - "newY": 2, - "getX": 1, - "getY": 1, - "setName": 1, - "newName": 2, - "getName": 1, - "sportsCar": 1, - "sportsCar.moveTo": 1, - "sportsCar.getName": 1, - "is": 1, - "at": 1, - "X": 1, - "location": 1, - "sportsCar.getX": 1, "tempVow": 2, "#...use": 1, "#....": 1, @@ -19835,9 +19835,16 @@ "visible=": 118, "active=": 125, "": 2, - "": 1, - "xreflabel=": 1, - "xrefpart=": 1, + "": 1, + "": 1, + "": 497, + "x1=": 630, + "y1=": 630, + "x2=": 630, + "y2=": 630, + "width=": 512, + "layer=": 822, + "": 1, "": 2, "": 4, "": 60, @@ -19846,68 +19853,11 @@ ";": 5567, "b": 64, "gt": 2770, - "Frames": 1, - "for": 5, - "Sheet": 2, - "and": 5, - "Layout": 1, - "/b": 64, - "": 60, - "": 4, - "": 3, - "": 1, - "": 1, - "": 497, - "x1=": 630, - "y1=": 630, - "x2=": 630, - "y2=": 630, - "width=": 512, - "layer=": 822, - "": 108, - "x=": 240, - "y=": 242, - "size=": 114, - "font=": 4, - "DRAWING_NAME": 1, - "": 108, - "LAST_DATE_TIME": 1, - "SHEET": 1, - "": 1, - "columns=": 1, - "rows=": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "prefix=": 1, - "uservalue=": 1, - "FRAME": 1, - "p": 65, - "DIN": 1, - "A4": 1, - "landscape": 1, - "with": 1, - "location": 1, - "doc.": 1, - "field": 1, - "": 1, - "": 1, - "symbol=": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 3, "Resistors": 2, "Capacitors": 4, "Inductors": 2, + "/b": 64, + "p": 65, "Based": 2, "on": 2, "the": 5, @@ -19934,12 +19884,14 @@ "to": 3, "IPC": 2, "specifications": 2, + "and": 5, "CECC": 2, "author": 3, "Created": 3, "by": 3, "librarian@cadsoft.de": 3, "/author": 3, + "for": 5, "Electrolyt": 2, "see": 4, "also": 2, @@ -20162,38 +20114,33 @@ "ALTERNATE": 2, "/tr": 2, "/table": 2, + "": 60, + "": 4, "": 53, "RESISTOR": 52, "": 64, + "x=": 240, + "y=": 242, "dx=": 64, "dy=": 64, + "": 108, + "size=": 114, "NAME": 52, + "": 108, "VALUE": 52, "": 132, "": 52, - "wave": 10, - "soldering": 10, - "Source": 2, - "//download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf": 2, - "MELF": 8, - "type": 20, - "grid": 20, - "mm": 20, - "curve=": 56, - "": 39, - "drill=": 41, - "shape=": 39, - "ratio=": 41, - "": 12, - "radius=": 12, - "": 1, - "": 1, - "": 1, + "": 3, + "": 3, "Pin": 1, "Header": 1, "Connectors": 1, "PIN": 1, "HEADER": 1, + "": 39, + "drill=": 41, + "shape=": 39, + "ratio=": 41, "": 1, "": 1, "": 1, @@ -20302,88 +20249,109 @@ "": 1, "": 1, "": 1, - "": 1 + "": 1, + "": 1, + "xreflabel=": 1, + "xrefpart=": 1, + "Frames": 1, + "Sheet": 2, + "Layout": 1, + "": 1, + "": 1, + "font=": 4, + "DRAWING_NAME": 1, + "LAST_DATE_TIME": 1, + "SHEET": 1, + "": 1, + "columns=": 1, + "rows=": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "prefix=": 1, + "uservalue=": 1, + "FRAME": 1, + "DIN": 1, + "A4": 1, + "landscape": 1, + "with": 1, + "location": 1, + "doc.": 1, + "field": 1, + "": 1, + "": 1, + "symbol=": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "wave": 10, + "soldering": 10, + "Source": 2, + "//download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf": 2, + "MELF": 8, + "type": 20, + "grid": 20, + "mm": 20, + "curve=": 56, + "": 12, + "radius=": 12 }, "Elm": { - "main": 3, - "asText": 1, - "(": 119, - "qsort": 4, - "[": 31, - "]": 31, - ")": 116, - "lst": 6, - "case": 5, - "of": 7, - "x": 13, - "xs": 9, - "-": 11, - "filter": 2, - "+": 14, - "<)x)>": 1, - "data": 1, - "Tree": 3, - "a": 5, - "Node": 8, - "|": 3, - "Empty": 8, - "empty": 2, - "singleton": 2, - "v": 8, - "insert": 4, - "tree": 7, - "y": 7, - "left": 7, - "right": 8, - "if": 2, - "then": 2, - "else": 2, - "<": 1, - "fromList": 3, - "foldl": 1, - "depth": 5, - "max": 1, - "map": 11, - "f": 8, - "t1": 2, - "t2": 3, - "flow": 4, - "down": 3, - "display": 4, - "name": 6, - "text": 4, - ".": 9, - "monospace": 1, - "toText": 6, - "concat": 1, - "show": 2, "import": 3, "List": 1, + "(": 119, "intercalate": 2, "intersperse": 3, + ")": 116, "Website.Skeleton": 1, "Website.ColorScheme": 1, "addFolder": 4, "folder": 2, + "lst": 6, "let": 2, "add": 2, + "x": 13, + "y": 7, + "+": 14, "in": 2, + "f": 8, "n": 2, + "xs": 9, + "map": 11, "elements": 2, + "[": 31, + "]": 31, "functional": 2, "reactive": 2, + "-": 11, "example": 3, + "name": 6, "loc": 2, "Text.link": 1, + "toText": 6, "toLinks": 2, "title": 2, "links": 2, + "flow": 4, + "right": 8, "width": 3, + "text": 4, "italic": 1, "bold": 2, + ".": 9, "Text.color": 1, "accent4": 1, "insertSpace": 2, + "case": 5, + "of": 7, "{": 1, "spacer": 2, ";": 1, @@ -20391,8 +20359,10 @@ "subsection": 2, "w": 7, "info": 2, + "down": 3, "words": 2, "markdown": 1, + "|": 3, "###": 1, "Basic": 1, "Examples": 1, @@ -20401,6 +20371,7 @@ "below": 1, "focuses": 1, "on": 1, + "a": 5, "single": 1, "function": 1, "or": 1, @@ -20417,11 +20388,43 @@ "content": 2, "exampleSets": 2, "plainText": 1, + "main": 3, "lift": 1, "skeleton": 1, - "Window.width": 1 + "Window.width": 1, + "asText": 1, + "qsort": 4, + "filter": 2, + "<)x)>": 1, + "data": 1, + "Tree": 3, + "Node": 8, + "Empty": 8, + "empty": 2, + "singleton": 2, + "v": 8, + "insert": 4, + "tree": 7, + "left": 7, + "if": 2, + "then": 2, + "else": 2, + "<": 1, + "fromList": 3, + "foldl": 1, + "depth": 5, + "max": 1, + "t1": 2, + "t2": 3, + "display": 4, + "monospace": 1, + "concat": 1, + "show": 2 }, "Emacs Lisp": { + "(": 156, + "print": 1, + ")": 144, ";": 333, "ess": 48, "-": 294, @@ -20433,9 +20436,7 @@ "inferior": 13, "interaction": 1, "Copyright": 1, - "(": 156, "C": 2, - ")": 144, "Vitalie": 3, "Spinu.": 1, "Filename": 1, @@ -20736,11 +20737,43 @@ "use": 1, "classes": 1, "screws": 1, - "egrep": 1, - "print": 1 + "egrep": 1 }, "Erlang": { + "SHEBANG#!escript": 3, "%": 134, + "-": 262, + "*": 9, + "erlang": 5, + "smp": 1, + "enable": 1, + "sname": 1, + "factorial": 1, + "mnesia": 1, + "debug": 1, + "verbose": 1, + "main": 4, + "(": 236, + "[": 66, + "String": 2, + "]": 61, + ")": 230, + "try": 2, + "N": 6, + "list_to_integer": 1, + "F": 16, + "fac": 4, + "io": 5, + "format": 7, + "catch": 2, + "_": 52, + "usage": 3, + "end": 3, + ";": 56, + ".": 37, + "halt": 2, + "export": 2, + "main/1": 1, "For": 1, "each": 1, "header": 1, @@ -20761,17 +20794,10 @@ "fields": 4, "fields_atom": 4, "type": 6, - "-": 262, "module": 2, - "(": 236, "record_helper": 1, - ")": 230, - ".": 37, - "export": 2, - "[": 66, "make/1": 1, "make/2": 1, - "]": 61, "make": 3, "HeaderFiles": 5, "atom_to_list": 18, @@ -20800,7 +20826,6 @@ "erl": 1, "list_to_binary": 1, "HeaderFile": 4, - "try": 2, "epp": 1, "parse_file": 1, "of": 9, @@ -20809,11 +20834,8 @@ "Tree": 4, "}": 109, "parse": 2, - ";": 56, "error": 4, "Error": 4, - "catch": 2, - "_": 52, "catched_error": 1, "end.": 3, "|": 25, @@ -20838,7 +20860,6 @@ "true": 3, "generate_fields_function": 2, "generate_fields_atom_function": 2, - "end": 3, "parse_field_name": 5, "record_field": 9, "atom": 9, @@ -20850,7 +20871,6 @@ "parse_field_name_atom": 5, "concat": 5, "_S": 3, - "F": 16, "S": 6, "concat_ext": 4, "parse_field": 6, @@ -20866,14 +20886,54 @@ "to_setter_getter_function": 5, "setter": 2, "getter": 2, - "SHEBANG#!escript": 3, - "main/1": 1, - "main": 4, - "io": 5, - "format": 7, - "*": 9, + "This": 2, + "is": 1, + "auto": 1, + "generated": 1, + "file.": 1, + "Please": 1, + "don": 1, + "t": 1, + "edit": 1, + "record_utils": 1, + "compile": 2, + "export_all": 1, + "include": 1, + "abstract_message": 21, + "async_message": 12, + "clientId": 5, + "destination": 5, + "messageId": 5, + "timestamp": 5, + "timeToLive": 5, + "headers": 5, + "body": 5, + "correlationId": 5, + "correlationIdBytes": 5, + "get": 12, + "Obj": 49, + "is_record": 25, + "Obj#abstract_message.body": 1, + "Obj#abstract_message.clientId": 1, + "Obj#abstract_message.destination": 1, + "Obj#abstract_message.headers": 1, + "Obj#abstract_message.messageId": 1, + "Obj#abstract_message.timeToLive": 1, + "Obj#abstract_message.timestamp": 1, + "Obj#async_message.correlationId": 1, + "Obj#async_message.correlationIdBytes": 1, + "parent": 5, + "Obj#async_message.parent": 3, + "ParentProperty": 6, + "is_atom": 2, + "set": 13, + "Value": 35, + "NewObj": 20, + "Obj#abstract_message": 7, + "Obj#async_message": 3, + "NewParentObject": 2, + "undefined.": 1, "Mode": 1, - "erlang": 5, "coding": 1, "utf": 1, "tab": 1, @@ -20938,7 +20998,6 @@ "software": 3, "display": 1, "acknowledgment": 1, - "This": 2, "product": 1, "includes": 1, "developed": 1, @@ -21031,7 +21090,6 @@ "POSSIBILITY": 1, "SUCH": 1, "DAMAGE.": 1, - "compile": 2, "sys": 2, "RelToolConfig": 5, "target_dir": 2, @@ -21081,7 +21139,6 @@ "Rest": 10, "Key": 2, "list_to_existing_atom": 1, - "Value": 35, "dict": 2, "find": 1, "support": 1, @@ -21117,72 +21174,54 @@ "filelib": 1, "is_file": 1, "ExitCode": 2, - "halt": 2, - "flush": 1, - "smp": 1, - "enable": 1, - "sname": 1, - "factorial": 1, - "mnesia": 1, - "debug": 1, - "verbose": 1, - "String": 2, - "N": 6, - "list_to_integer": 1, - "fac": 4, - "usage": 3, - "is": 1, - "auto": 1, - "generated": 1, - "file.": 1, - "Please": 1, - "don": 1, - "t": 1, - "edit": 1, - "record_utils": 1, - "export_all": 1, - "include": 1, - "abstract_message": 21, - "async_message": 12, - "clientId": 5, - "destination": 5, - "messageId": 5, - "timestamp": 5, - "timeToLive": 5, - "headers": 5, - "body": 5, - "correlationId": 5, - "correlationIdBytes": 5, - "get": 12, - "Obj": 49, - "is_record": 25, - "Obj#abstract_message.body": 1, - "Obj#abstract_message.clientId": 1, - "Obj#abstract_message.destination": 1, - "Obj#abstract_message.headers": 1, - "Obj#abstract_message.messageId": 1, - "Obj#abstract_message.timeToLive": 1, - "Obj#abstract_message.timestamp": 1, - "Obj#async_message.correlationId": 1, - "Obj#async_message.correlationIdBytes": 1, - "parent": 5, - "Obj#async_message.parent": 3, - "ParentProperty": 6, - "is_atom": 2, - "set": 13, - "NewObj": 20, - "Obj#abstract_message": 7, - "Obj#async_message": 3, - "NewParentObject": 2, - "undefined.": 1 + "flush": 1 }, "Forth": { - "HELLO": 4, "(": 88, - "-": 473, + "Block": 2, + "words.": 6, ")": 87, - ".": 5, + "variable": 3, + "blk": 3, + "current": 5, + "-": 473, + "block": 8, + "n": 22, + "addr": 11, ";": 61, + "buffer": 2, + "evaluate": 1, + "extended": 3, + "semantics": 3, + "flush": 1, + "load": 2, + "...": 4, + "dup": 10, + "save": 2, + "input": 2, + "in": 4, + "@": 13, + "source": 5, + "#source": 2, + "interpret": 1, + "restore": 1, + "buffers": 2, + "update": 1, + "extension": 4, + "empty": 2, + "scr": 2, + "list": 1, + "bounds": 1, + "do": 2, + "i": 5, + "emit": 2, + "loop": 4, + "refill": 2, + "thru": 1, + "x": 10, + "y": 5, + "+": 17, + "swap": 12, "*": 9, "forth": 2, "Copyright": 3, @@ -21192,6 +21231,7 @@ "#tib": 2, "TODO": 12, ".r": 1, + ".": 5, "[": 16, "char": 10, "]": 15, @@ -21199,34 +21239,25 @@ "type": 3, "immediate": 19, "<": 14, - "n": 22, "flag": 4, "r": 18, "x1": 5, "x2": 5, "R": 13, "rot": 2, - "swap": 12, "r@": 2, - "dup": 10, "noname": 1, "align": 2, "here": 9, "c": 3, "allot": 2, "lastxt": 4, - "@": 13, "SP": 1, - "+": 17, "query": 1, "tib": 1, - "source": 5, - "#source": 2, "body": 1, "true": 1, "tuck": 2, - "x": 10, - "y": 5, "over": 5, "u.r": 1, "u": 3, @@ -21243,18 +21274,14 @@ "compile": 2, "Forth2012": 2, "core": 1, - "extension": 4, - "words.": 6, "action": 1, "of": 3, - "buffer": 2, "defer": 2, "name": 1, "s": 4, "c@": 2, "negate": 1, "nip": 2, - "in": 4, "bl": 4, "word": 9, "ahead": 2, @@ -21285,26 +21312,23 @@ "until": 1, "recurse": 1, "pad": 3, - "addr": 11, "If": 1, "necessary": 1, - "refill": 2, "and": 3, "keep": 1, "parsing.": 1, "string": 3, "cmove": 1, "state": 2, - "...": 4, "cr": 3, "abort": 3, "": 1, "Undefined": 1, "ok": 1, + "HELLO": 4, "KataDiversion": 1, "Forth": 1, "utils": 1, - "empty": 2, "the": 7, "stack": 3, "EMPTY": 1, @@ -21333,7 +21357,6 @@ "ABORT": 1, "ELSE": 7, "|": 4, - "i": 5, "I": 5, "i*2": 1, "/": 3, @@ -21357,7 +21380,6 @@ "A": 5, "X": 5, "LOG2": 1, - "loop": 4, "end": 1, "OR": 1, "INVERT": 1, @@ -21385,7 +21407,6 @@ "MANY": 1, "Tools": 2, ".s": 1, - "emit": 2, "depth": 1, "traverse": 1, "dictionary": 1, @@ -21405,82 +21426,250 @@ "defined": 1, "invert": 1, "/cell": 2, - "cell": 2, - "Block": 2, - "variable": 3, - "blk": 3, - "current": 5, - "block": 8, - "evaluate": 1, - "extended": 3, - "semantics": 3, - "flush": 1, - "load": 2, - "save": 2, - "input": 2, - "interpret": 1, - "restore": 1, - "buffers": 2, - "update": 1, - "scr": 2, - "list": 1, - "bounds": 1, - "do": 2, - "thru": 1 + "cell": 2 }, "Frege": { + "module": 2, + "examples.CommandLineClock": 1, + "where": 39, + "data": 3, + "Date": 5, + "native": 4, + "java.util.Date": 1, + "new": 9, + "(": 339, + ")": 345, + "-": 730, + "IO": 13, + "MutableIO": 1, + "toString": 2, + "Mutable": 1, + "s": 21, + "ST": 1, + "String": 9, + "d.toString": 1, + "action": 2, + "to": 13, + "give": 2, + "us": 1, + "the": 20, + "current": 4, + "time": 1, + "as": 33, + "do": 38, + "d": 3, + "<->": 35, + "java": 5, + "lang": 2, + "Thread": 2, + "sleep": 4, + "takes": 1, + "a": 99, + "long": 4, + "and": 14, + "returns": 2, + "nothing": 2, + "but": 2, + "may": 1, + "throw": 1, + "an": 6, + "InterruptedException": 4, + "This": 2, + "is": 24, + "without": 1, + "doubt": 1, + "public": 1, + "static": 1, + "void": 2, + "millis": 1, + "throws": 4, + "Encoded": 1, + "in": 22, + "Frege": 1, + "argument": 1, + "type": 8, + "Long": 3, + "result": 11, + "does": 2, + "defined": 1, + "frege": 1, + "Lang": 1, + "main": 11, + "args": 2, + "forever": 1, + "print": 25, + "stdout.flush": 1, + "Thread.sleep": 4, + "examples.Concurrent": 1, + "import": 7, + "System.Random": 1, + "Java.Net": 1, + "URL": 2, + "Control.Concurrent": 1, + "C": 6, + "main2": 1, + "m": 2, + "<": 84, + "newEmptyMVar": 1, + "forkIO": 11, + "m.put": 3, + "replicateM_": 3, + "c": 33, + "m.take": 1, + "println": 25, + "example1": 1, + "putChar": 2, + "example2": 2, + "getLine": 2, + "case": 6, + "of": 32, + "Right": 6, + "n": 38, + "setReminder": 3, + "Left": 5, + "_": 60, + "+": 200, + "show": 24, + "L*n": 1, + "table": 1, + "mainPhil": 2, + "[": 120, + "fork1": 3, + "fork2": 3, + "fork3": 3, + "fork4": 3, + "fork5": 3, + "]": 116, + "mapM": 3, + "MVar": 3, + "1": 2, + "5": 1, + "philosopher": 7, + "Kant": 1, + "Locke": 1, + "Wittgenstein": 1, + "Nozick": 1, + "Mises": 1, + "return": 17, + "Int": 6, + "me": 13, + "left": 4, + "right": 4, + "g": 4, + "Random.newStdGen": 1, + "let": 8, + "phil": 4, + "tT": 2, + "g1": 2, + "Random.randomR": 2, + "L": 6, + "eT": 2, + "g2": 3, + "thinkTime": 3, + "*": 5, + "eatTime": 3, + "fl": 4, + "left.take": 1, + "rFork": 2, + "poll": 1, + "Just": 2, + "fr": 3, + "right.put": 1, + "left.put": 2, + "table.notifyAll": 2, + "Nothing": 2, + "table.wait": 1, + "inter": 3, + "catch": 2, + "getURL": 4, + "xx": 2, + "url": 1, + "URL.new": 1, + "con": 3, + "url.openConnection": 1, + "con.connect": 1, + "con.getInputStream": 1, + "typ": 5, + "con.getContentType": 1, + "stderr.println": 3, + "ir": 2, + "InputStreamReader.new": 2, + "fromMaybe": 1, + "charset": 2, + "unsupportedEncoding": 3, + "br": 4, + "BufferedReader": 1, + "getLines": 1, + "InputStream": 1, + "UnsupportedEncodingException": 1, + "InputStreamReader": 1, + "x": 45, + "x.catched": 1, + "ctyp": 2, + "charset=": 1, + "m.group": 1, + "SomeException": 2, + "Throwable": 1, + "m1": 1, + "MVar.newEmpty": 3, + "m2": 1, + "m3": 2, + "r": 7, + "catchAll": 3, + ".": 41, + "m1.put": 1, + "m2.put": 1, + "m3.put": 1, + "r1": 2, + "m1.take": 1, + "r2": 3, + "m2.take": 1, + "r3": 3, + "take": 13, + "ss": 8, + "mapM_": 5, + "putStrLn": 2, + "|": 62, + "x.getClass.getName": 1, + "y": 15, + "sum": 2, + "map": 49, + "length": 20, "package": 2, "examples.Sudoku": 1, - "where": 39, - "import": 7, "Data.TreeMap": 1, - "(": 339, "Tree": 4, "keys": 2, - ")": 345, "Data.List": 1, - "as": 33, "DL": 1, "hiding": 1, "find": 20, "union": 10, - "type": 8, "Element": 6, - "Int": 6, - "-": 730, "Zelle": 8, - "[": 120, - "]": 116, "set": 4, - "of": 32, "candidates": 18, "Position": 22, "Feld": 3, "Brett": 13, - "data": 3, "for": 25, "assumptions": 10, - "and": 14, "conclusions": 2, "Assumption": 21, "ISNOT": 14, - "|": 62, "IS": 16, "derive": 2, "Eq": 1, "Ord": 1, "instance": 1, "Show": 1, - "show": 24, "p": 72, "e": 15, "pname": 10, - "+": 200, "e.show": 2, "showcs": 5, "cs": 27, "joined": 4, - "map": 49, "Assumption.show": 1, "elements": 12, "all": 22, @@ -21488,9 +21677,7 @@ "..": 1, "positions": 16, "rowstarts": 4, - "a": 99, "row": 20, - "is": 24, "starting": 3, "colstarts": 3, "column": 2, @@ -21501,10 +21688,8 @@ "by": 3, "adding": 1, "upper": 2, - "left": 4, "position": 9, "results": 1, - "in": 22, "real": 1, "extract": 2, "field": 9, @@ -21518,19 +21703,15 @@ "b": 113, "snd": 20, "compute": 5, - "the": 20, "list": 7, "that": 18, "belong": 3, - "to": 13, "same": 8, "given": 3, "z..": 1, "z": 12, "quot": 1, - "*": 5, "col": 17, - "c": 33, "mod": 3, "ri": 2, "div": 3, @@ -21540,7 +21721,6 @@ "ci": 3, "index": 3, "middle": 2, - "right": 4, "check": 2, "if": 5, "candidate": 10, @@ -21553,7 +21733,6 @@ "solved": 1, "single": 9, "Bool": 2, - "_": 60, "true": 16, "false": 13, "unsolved": 10, @@ -21567,7 +21746,6 @@ "zip": 7, "repeat": 3, "containers": 6, - "String": 9, "PRINTING": 1, "printable": 1, "coordinate": 1, @@ -21577,27 +21755,18 @@ "packed": 1, "chr": 2, "ord": 6, - "print": 25, "board": 41, "printb": 4, - "mapM_": 5, "p1line": 2, - "println": 25, - "do": 38, "pfld": 4, "line": 2, "brief": 1, "no": 4, - ".": 41, "some": 2, - "x": 45, "zs": 1, "initial/final": 1, - "result": 11, "msg": 6, - "return": 17, "res012": 2, - "case": 6, "concatMap": 1, "a*100": 1, "b*10": 1, @@ -21608,9 +21777,7 @@ "about": 1, "what": 1, "done": 1, - "new": 9, "turnoff1": 3, - "IO": 13, "i": 16, "off": 11, "nc": 7, @@ -21618,17 +21785,14 @@ "newb": 7, "filter": 26, "notElem": 7, - "<->": 35, "turnoff": 11, "turnoffh": 1, "ps": 8, "foldM": 2, "toh": 2, "setto": 3, - "n": 38, "cname": 4, "nf": 2, - "<": 84, "SOLVING": 1, "STRATEGIES": 1, "reduce": 3, @@ -21636,7 +21800,6 @@ "contains": 1, "numbers": 1, "already": 1, - "This": 2, "finds": 1, "logs": 1, "NAKED": 5, @@ -21649,7 +21812,6 @@ "than": 2, "fields": 6, "are": 6, - "s": 21, "rcb": 16, "elem": 16, "collect": 1, @@ -21672,7 +21834,6 @@ "FOR": 11, "IN": 9, "occurs": 5, - "length": 20, "PAIRS": 8, "TRIPLES": 8, "QUADS": 2, @@ -21684,7 +21845,6 @@ "tuple": 2, "name": 2, "//": 8, - "let": 8, "u": 6, "fold": 7, "non": 2, @@ -21698,7 +21858,6 @@ "uniq": 4, "sort": 4, "common": 4, - "1": 2, "bs": 7, "undefined": 1, "cannot": 1, @@ -21717,8 +21876,6 @@ "intersection": 1, "we": 5, "occurences": 1, - "but": 2, - "an": 6, "XY": 2, "Wing": 2, "there": 6, @@ -21729,7 +21886,6 @@ "B": 5, "Z": 6, "shares": 2, - "C": 6, "reasoning": 1, "will": 4, "be": 9, @@ -21738,7 +21894,6 @@ "thus": 1, "see": 1, "xyWing": 2, - "y": 15, "rcba": 4, "share": 1, "b1": 11, @@ -21765,7 +21920,6 @@ "fish": 7, "fishname": 5, "rset": 4, - "take": 13, "certain": 1, "rflds": 2, "rowset": 1, @@ -21818,7 +21972,6 @@ "conclusion": 4, "THE": 1, "FIRST": 1, - "con": 3, "implication": 2, "ai": 2, "so": 1, @@ -21848,7 +22001,6 @@ "Liste": 1, "aller": 1, "Annahmen": 1, - "r": 7, "ein": 1, "bestimmtes": 1, "acstree": 3, @@ -21857,7 +22009,6 @@ "maybe": 1, "tree": 1, "lookup": 2, - "Just": 2, "error": 1, "performance": 1, "resons": 1, @@ -21887,22 +22038,18 @@ "available": 1, "strategies": 1, "until": 1, - "nothing": 2, "changes": 1, "anymore": 1, "Strategy": 1, "functions": 2, "supposed": 1, "applied": 1, - "give": 2, "changed": 1, "board.": 1, "strategy": 2, - "does": 2, "anything": 1, "alter": 1, "it": 2, - "returns": 2, "next": 1, "tried.": 1, "solve": 19, @@ -21942,11 +22089,9 @@ "<=>": 1, "0": 2, "ignored": 1, - "main": 11, "h": 1, "help": 1, "usage": 1, - "java": 5, "Sudoku": 2, "file": 4, "81": 3, @@ -21961,15 +22106,12 @@ "sudokuoftheday": 1, "pages": 1, "o": 1, - "d": 3, "php": 1, - "Right": 6, "click": 1, "puzzle": 1, "open": 1, "tab": 1, "Copy": 1, - "URL": 2, "address": 1, "your": 1, "browser": 1, @@ -21986,122 +22128,14 @@ "files": 2, "forM_": 1, "sudoku": 2, - "br": 4, "openReader": 1, "lines": 2, "BufferedReader.getLines": 1, "process": 5, - "ss": 8, - "mapM": 3, - "sum": 2, "candi": 2, "consider": 3, "acht": 4, - "stderr.println": 3, "neun": 2, - "module": 2, - "examples.Concurrent": 1, - "System.Random": 1, - "Java.Net": 1, - "Control.Concurrent": 1, - "main2": 1, - "args": 2, - "m": 2, - "newEmptyMVar": 1, - "forkIO": 11, - "m.put": 3, - "replicateM_": 3, - "m.take": 1, - "example1": 1, - "putChar": 2, - "example2": 2, - "getLine": 2, - "long": 4, - "setReminder": 3, - "Left": 5, - "Long": 3, - "Thread.sleep": 4, - "L*n": 1, - "table": 1, - "mainPhil": 2, - "fork1": 3, - "fork2": 3, - "fork3": 3, - "fork4": 3, - "fork5": 3, - "MVar": 3, - "5": 1, - "philosopher": 7, - "Kant": 1, - "Locke": 1, - "Wittgenstein": 1, - "Nozick": 1, - "Mises": 1, - "me": 13, - "g": 4, - "Random.newStdGen": 1, - "phil": 4, - "tT": 2, - "g1": 2, - "Random.randomR": 2, - "L": 6, - "eT": 2, - "g2": 3, - "thinkTime": 3, - "eatTime": 3, - "fl": 4, - "left.take": 1, - "rFork": 2, - "poll": 1, - "fr": 3, - "right.put": 1, - "left.put": 2, - "table.notifyAll": 2, - "Nothing": 2, - "table.wait": 1, - "inter": 3, - "InterruptedException": 4, - "catch": 2, - "getURL": 4, - "xx": 2, - "url": 1, - "URL.new": 1, - "url.openConnection": 1, - "con.connect": 1, - "con.getInputStream": 1, - "typ": 5, - "con.getContentType": 1, - "ir": 2, - "InputStreamReader.new": 2, - "fromMaybe": 1, - "charset": 2, - "unsupportedEncoding": 3, - "BufferedReader": 1, - "getLines": 1, - "InputStream": 1, - "UnsupportedEncodingException": 1, - "InputStreamReader": 1, - "x.catched": 1, - "ctyp": 2, - "charset=": 1, - "m.group": 1, - "SomeException": 2, - "Throwable": 1, - "m1": 1, - "MVar.newEmpty": 3, - "m2": 1, - "m3": 2, - "catchAll": 3, - "m1.put": 1, - "m2.put": 1, - "m3.put": 1, - "r1": 2, - "m1.take": 1, - "r2": 3, - "m2.take": 1, - "r3": 3, - "putStrLn": 2, - "x.getClass.getName": 1, "examples.SwingExamples": 1, "Java.Awt": 1, "ActionListener": 2, @@ -22173,41 +22207,7 @@ "b3.addActionListener": 1, "newContentPane.add": 3, "newContentPane.setOpaque": 1, - "frame.setContentPane": 1, - "examples.CommandLineClock": 1, - "Date": 5, - "native": 4, - "java.util.Date": 1, - "MutableIO": 1, - "toString": 2, - "Mutable": 1, - "ST": 1, - "d.toString": 1, - "action": 2, - "us": 1, - "current": 4, - "time": 1, - "lang": 2, - "Thread": 2, - "sleep": 4, - "takes": 1, - "may": 1, - "throw": 1, - "without": 1, - "doubt": 1, - "public": 1, - "static": 1, - "void": 2, - "millis": 1, - "throws": 4, - "Encoded": 1, - "Frege": 1, - "argument": 1, - "defined": 1, - "frege": 1, - "Lang": 1, - "forever": 1, - "stdout.flush": 1 + "frame.setContentPane": 1 }, "GAMS": { "*Basic": 1, @@ -22372,57 +22372,24 @@ "#############################################################################": 63, "##": 766, "#W": 4, - "vspc.gd": 1, - "GAP": 15, - "library": 2, - "Thomas": 2, - "Breuer": 2, - "#Y": 6, - "Copyright": 6, - "(": 721, - "C": 11, - ")": 722, - "Lehrstuhl": 2, - "D": 36, - "f": 11, - "r": 2, - "Mathematik": 2, - "RWTH": 2, - "Aachen": 2, - "Germany": 2, - "School": 2, - "Math": 2, - "and": 102, - "Comp.": 2, - "Sci.": 2, - "University": 4, - "of": 114, - "St": 2, - "Andrews": 2, - "Scotland": 2, - "The": 21, - "Group": 3, + "example.gd": 2, "This": 10, "file": 7, - "declares": 1, - "the": 136, - "operations": 2, - "for": 53, - "vector": 67, - "spaces.": 4, - "bases": 5, - "free": 3, - "left": 15, - "modules": 1, - "can": 12, - "be": 24, - "found": 1, - "in": 64, - "": 10, - "lib/basis.gd": 1, - ".": 257, + "contains": 7, + "a": 113, + "sample": 2, + "of": 114, + "GAP": 15, + "declaration": 1, + "file.": 3, + "DeclareProperty": 2, + "(": 721, + "IsLeftModule": 6, + ")": 722, + ";": 569, + "DeclareGlobalFunction": 5, "#C": 7, - "IsLeftOperatorRing": 1, + "IsQuuxFrobnicator": 1, "": 3, "": 28, "": 7, @@ -22430,629 +22397,89 @@ "Arg=": 33, "Type=": 7, "": 28, + "Tests": 1, + "whether": 5, + "R": 5, + "is": 72, + "quux": 1, + "frobnicator.": 1, "": 28, "": 28, "DeclareSynonym": 17, - "IsLeftOperatorAdditiveGroup": 2, - "IsRing": 1, - "IsAssociativeLOpDProd": 2, - ";": 569, - "#T": 6, - "really": 4, - "IsLeftOperatorRingWithOne": 2, - "IsRingWithOne": 1, - "IsLeftVectorSpace": 3, - "": 38, - "IsVectorSpace": 26, - "<#GAPDoc>": 17, - "Label=": 19, - "A": 9, - "": 12, - "space": 74, - "": 12, - "&": 37, - "is": 72, - "a": 113, - "module": 2, - "see": 30, - "nbsp": 30, - "": 71, - "Func=": 40, - "over": 24, - "division": 15, - "ring": 14, - "Chapter": 3, - "Chap=": 3, - "

": 23, - "Whenever": 1, - "we": 3, - "talk": 1, - "about": 3, - "an": 17, - "": 42, - "F": 61, - "": 41, - "-": 67, - "": 117, - "V": 152, - "": 117, - "then": 128, - "additive": 1, - "group": 2, + "IsField": 1, + "and": 102, + "IsGroup": 1, + "implementation": 1, + "#M": 20, + "SomeOperation": 1, + "": 2, + "performs": 1, + "some": 2, + "operation": 1, "on": 5, - "which": 8, - "acts": 1, - "via": 6, - "multiplication": 1, - "from": 5, - "such": 4, - "that": 39, - "this": 15, - "action": 4, - "addition": 1, - "are": 14, - "right": 2, - "distributive.": 1, - "accessed": 1, - "as": 23, - "value": 9, - "attribute": 2, - "Vector": 1, - "spaces": 15, - "always": 1, - "Filt=": 4, - "synonyms.": 1, - "<#/GAPDoc>": 17, - "IsLeftModule": 6, - "IsLeftActedOnByDivisionRing": 4, - "InstallTrueMethod": 4, - "IsFreeLeftModule": 3, - "#F": 17, - "IsGaussianSpace": 10, - "": 14, - "filter": 3, - "Sect=": 6, - "row": 17, - "or": 13, - "matrix": 5, - "field": 12, - "say": 1, - "indicates": 3, - "entries": 8, - "all": 18, - "vectors": 16, - "matrices": 5, - "respectively": 1, - "contained": 4, - "In": 3, - "case": 2, - "called": 1, - "Gaussian": 19, - "space.": 5, - "Bases": 1, - "computed": 2, - "using": 2, - "elimination": 5, - "given": 4, - "list": 16, - "generators.": 1, - "": 12, - "": 12, - "gap": 41, - "mats": 5, + "InstallMethod": 18, + "SomeProperty": 1, "[": 145, "]": 169, - "VectorSpace": 13, - "Rationals": 13, - "true": 21, - "E": 2, - "#": 73, - "element": 2, - "extension": 3, - "false": 7, - "Field": 1, - "": 12, - "DeclareFilter": 1, - "IsFullMatrixModule": 1, - "IsFullRowModule": 1, - "IsDivisionRing": 5, - "": 12, - "nontrivial": 1, - "associative": 1, - "algebra": 2, - "with": 24, - "multiplicative": 1, - "inverse": 1, - "each": 2, - "nonzero": 3, - "element.": 1, - "every": 1, - "possibly": 1, - "itself": 1, - "Note": 3, - "being": 2, - "thus": 1, - "not": 49, - "property": 2, - "get": 1, - "because": 2, - "usually": 1, - "represented": 1, - "coefficients": 3, - "stored": 1, - "DeclareSynonymAttr": 4, - "IsMagmaWithInversesIfNonzero": 1, - "IsNonTrivial": 1, - "IsAssociative": 1, - "IsEuclideanRing": 1, - "#A": 7, - "GeneratorsOfLeftVectorSpace": 1, - "GeneratorsOfVectorSpace": 2, - "": 7, - "For": 10, - "Attr=": 10, - "returns": 14, - "generate": 1, - "FullRowSpace": 5, - "GeneratorsOfLeftOperatorAdditiveGroup": 2, - "CanonicalBasis": 3, - "If": 11, - "supports": 1, - "canonical": 6, - "basis": 14, - "otherwise": 2, - "": 3, - "fail": 18, - "": 3, - "returned.": 4, - "defining": 1, - "its": 2, - "uniquely": 1, - "determined": 1, - "by": 14, - "exist": 1, - "two": 13, - "same": 6, - "acting": 8, - "domain": 17, - "equality": 1, - "these": 5, - "decided": 1, - "comparing": 1, - "bases.": 1, - "exact": 1, - "meaning": 1, - "depends": 1, - "type": 2, - "Canonical": 1, - "defined": 3, - "example": 3, - "one": 11, - "designs": 1, - "new": 2, - "kind": 1, - "defines": 1, - "method": 4, - "installs": 1, - "must": 6, - "call": 1, - "On": 1, - "other": 4, - "hand": 1, - "probably": 2, - "should": 2, - "install": 1, - "simply": 2, - "calls": 1, - "": 10, - "CANONICAL_BASIS_FLAGS": 1, - "": 9, - "vecs": 4, - "B": 16, - "": 8, - "3": 5, - "generators": 16, - "BasisVectors": 4, - "DeclareAttribute": 4, - "IsRowSpace": 2, - "consists": 7, - "IsRowModule": 1, - "IsGaussianRowSpace": 1, - "if": 103, - "contains": 7, - "scalars": 2, - "occur": 2, - "vectors.": 2, - "Thus": 3, - "use": 5, - "calculations.": 2, - "Otherwise": 3, - "non": 4, - "Gaussian.": 2, - "We": 4, - "will": 5, - "need": 3, - "flag": 2, - "to": 37, - "write": 3, - "down": 2, - "methods": 4, - "delegate": 2, - "ones.": 2, - "IsNonGaussianRowSpace": 1, - "expresses": 2, - "so": 3, - "cannot": 2, - "used": 10, - "compute": 3, - "handled": 3, - "mechanism": 4, - "nice": 4, - "following": 4, - "way.": 2, - "Let": 4, - "K": 4, - "spanned": 4, - "Then": 1, - "/": 12, - "cap": 1, - "v": 5, - "replacing": 1, - "entry": 2, - "forming": 1, - "concatenation.": 1, - "So": 2, - "associated": 3, - "DeclareHandlingByNiceBasis": 2, - "IsMatrixSpace": 2, - "IsMatrixModule": 1, - "IsGaussianMatrixSpace": 1, - "IsNonGaussianMatrixSpace": 1, - "irrelevant": 1, - "concatenation": 1, - "rows": 1, - "necessarily": 1, - "NormedRowVectors": 2, - "normed": 1, - "finite": 5, - "those": 1, - "have": 3, - "first": 1, - "component.": 1, - "result": 9, - "yields": 1, - "natural": 1, - "dimensional": 5, - "subspaces": 17, - "also": 3, - "GF": 22, - "*Z": 5, - "Z": 6, - "Action": 1, - "GL": 1, - "OnLines": 1, - "TrivialSubspace": 2, - "subspace": 7, - "zero": 4, - "triv": 2, - "0": 2, - "AsSet": 1, - "TrivialSubmodule": 1, - "": 5, - "": 2, - "collection": 3, - "gens": 16, - "elements": 7, - "optional": 3, - "argument": 1, - "specify": 3, - "empty.": 1, - "string": 6, - "known": 5, - "linearly": 3, - "independent": 3, - "particular": 1, - "dimension": 9, - "immediately": 2, - "set": 6, - "note": 2, - "return": 41, - "formed": 1, - "argument.": 1, - "2": 1, - "DeclareGlobalFunction": 5, - "Subspace": 4, - "generated": 1, - "SubspaceNC": 2, - "subset": 4, - "empty": 1, - "trivial": 1, - "parent": 3, - "returned": 3, - "does": 1, - "except": 1, - "it": 8, - "omits": 1, - "check": 5, - "whether": 5, - "both": 2, - "do": 18, - "W": 32, - "1": 3, - "Submodule": 1, - "SubmoduleNC": 1, - "#O": 2, - "AsVectorSpace": 4, - "view": 4, - "": 2, - "domain.": 1, - "form": 2, - "Oper=": 6, - "smaller": 1, - "larger": 1, - "ring.": 3, - "Dimension": 6, - "LeftActingDomain": 29, - "9": 1, - "AsLeftModule": 6, - "AsSubspace": 5, - "": 6, - "U": 12, - "collection.": 1, - "/2": 4, - "Parent": 4, - "DeclareOperation": 2, - "IsCollection": 3, - "Intersection2Spaces": 4, - "": 2, - "": 2, - "": 2, "function": 37, - "takes": 1, - "arguments": 1, - "intersection": 5, - "domains": 3, - "different": 2, - "let": 1, - "their": 1, - "intersection.": 1, - "AsStruct": 2, - "equal": 1, - "either": 2, - "Substruct": 1, - "common": 1, - "Struct": 1, - "cases": 2, - "basis.": 1, - "handle": 1, - "intersections": 1, - "algebras": 2, - "ideals": 2, - "sided": 1, - "ideals.": 1, - "": 2, - "": 2, - "nonnegative": 2, - "integer": 2, - "n": 31, - "length": 1, - "An": 2, - "alternative": 2, - "construct": 2, - "above": 2, - "FullRowModule": 2, - "FullMatrixSpace": 2, - "": 1, - "positive": 1, - "integers": 1, - "m": 8, - "fact": 1, - "FullMatrixModule": 3, - "IsSubspacesVectorSpace": 9, - "fixed": 1, - "lies": 1, - "category": 1, - "Subspaces": 8, - "Size": 5, - "iter": 17, - "Iterator": 5, - "NextIterator": 5, - "DeclareCategory": 1, - "IsDomain": 1, - "#M": 20, - "IsFinite": 4, - "Returns": 1, - "only": 5, - "": 1, - "Called": 2, - "k": 17, - "Special": 1, - "provided": 1, - "domains.": 1, - "IsInt": 3, - "IsSubspace": 3, - "OrthogonalSpaceInFullRowSpace": 1, - "complement": 1, - "full": 2, - "#P": 1, - "IsVectorSpaceHomomorphism": 3, - "": 2, - "": 1, - "mapping": 2, - "homomorphism": 1, - "linear": 1, - "source": 2, - "range": 1, + "M": 7, + "if": 103, + "IsFreeLeftModule": 3, + "not": 49, + "IsTrivial": 1, + "then": 128, + "return": 41, + "true": 21, + "fi": 91, + "TryNextMethod": 7, + "end": 34, + "#F": 17, + "SomeGlobalFunction": 2, + "A": 9, + "global": 1, + "variadic": 1, + "funfion.": 1, + "InstallGlobalFunction": 5, + "arg": 16, + "Length": 14, "+": 9, - "b": 8, - "s": 4, "*": 12, - "hold": 1, - "DeclareProperty": 2, - "IsGeneralMapping": 2, - "#E": 2, - "Magic.gi": 1, + "elif": 21, + "-": 67, + "else": 25, + "Error": 7, + "#": 73, + "SomeFunc": 1, + "x": 14, + "y": 8, + "local": 16, + "z": 3, + "func": 3, + "tmp": 20, + "j": 3, + "mod": 2, + "List": 6, + "while": 5, + "do": 18, + "for": 53, + "in": 64, + "Print": 24, + "od": 15, + "repeat": 1, + "until": 1, + "<": 17, + "Magic.gd": 1, "AutoDoc": 4, "package": 10, + "Copyright": 6, "Max": 2, "Horn": 2, "JLU": 2, "Giessen": 2, "Sebastian": 2, "Gutsche": 2, + "University": 4, "Kaiserslautern": 2, - "BindGlobal": 7, - "str": 8, - "suffix": 3, - "local": 16, - "Length": 14, - "{": 21, - "}": 21, - "end": 34, - "i": 25, - "while": 5, - "<": 17, - "od": 15, - "fi": 91, - "d": 16, - "tmp": 20, - "IsDirectoryPath": 1, - "CreateDir": 2, - "currently": 1, - "undocumented": 1, - "Error": 7, - "LastSystemError": 1, - ".message": 1, - "pkg": 32, - "subdirs": 2, - "extensions": 1, - "d_rel": 6, - "files": 4, - "DirectoriesPackageLibrary": 2, - "IsEmpty": 6, - "continue": 3, - "Directory": 5, - "DirectoryContents": 1, - "Sort": 1, - "AUTODOC_GetSuffix": 2, - "IsReadableFile": 2, - "Filename": 8, - "Add": 4, - "Make": 1, - "callable": 1, - "package_name": 1, - "AutoDocWorksheet.": 1, - "Which": 1, - "create": 1, - "worksheet": 1, - "InstallGlobalFunction": 5, - "arg": 16, - "package_info": 3, - "opt": 3, - "scaffold": 12, - "gapdoc": 7, - "maketest": 12, - "autodoc": 8, - "pkg_dir": 5, - "doc_dir": 18, - "doc_dir_rel": 3, - "title_page": 7, - "tree": 8, - "is_worksheet": 13, - "position_document_class": 7, - "gapdoc_latex_option_record": 4, - "LowercaseString": 3, - "rec": 20, - "DirectoryCurrent": 1, - "else": 25, - "PackageInfo": 1, - "key": 3, - "val": 4, - "ValueOption": 1, - "opt.": 1, - "IsBound": 39, - "opt.dir": 4, - "elif": 21, - "IsString": 7, - "IsDirectory": 1, - "AUTODOC_CreateDirIfMissing": 1, - "Print": 24, - "opt.scaffold": 5, - "package_info.AutoDoc": 3, - "IsRecord": 7, - "IsBool": 4, - "AUTODOC_APPEND_RECORD_WRITEONCE": 3, - "AUTODOC_WriteOnce": 10, - "opt.autodoc": 5, - "Concatenation": 15, - "package_info.Dependencies.NeededOtherPackages": 1, - "package_info.Dependencies.SuggestedOtherPackages": 1, - "ForAny": 1, - "x": 14, - "autodoc.files": 7, - "autodoc.scan_dirs": 5, - "autodoc.level": 3, - "PushOptions": 1, - "level_value": 1, - "Append": 2, - "AUTODOC_FindMatchingFiles": 2, - "opt.gapdoc": 5, - "opt.maketest": 4, - "gapdoc.main": 8, - "package_info.PackageDoc": 3, - ".BookName": 2, - "gapdoc.bookname": 4, - "#Print": 1, - "gapdoc.files": 9, - "gapdoc.scan_dirs": 3, - "Set": 1, - "Number": 1, - "ListWithIdenticalEntries": 1, - "List": 6, - "DocumentationTree": 1, - "autodoc.section_intros": 2, - "AUTODOC_PROCESS_INTRO_STRINGS": 1, - "Tree": 2, - "AutoDocScanFiles": 1, - "PackageName": 2, - "scaffold.TitlePage": 4, - "scaffold.TitlePage.Title": 2, - ".TitlePage.Title": 2, - "Position": 2, - "Remove": 2, - "JoinStringsWithSeparator": 1, - "ReplacedString": 2, - "Syntax": 1, - "scaffold.document_class": 7, - "PositionSublist": 5, - "GAPDoc2LaTeXProcs.Head": 14, - "..": 6, - "scaffold.latex_header_file": 2, - "StringFile": 2, - "scaffold.gapdoc_latex_options": 4, - "RecNames": 1, - "scaffold.gapdoc_latex_options.": 5, - "IsList": 1, - "scaffold.includes": 4, - "scaffold.bib": 7, - "Unbind": 1, - "scaffold.main_xml_file": 2, - ".TitlePage": 1, - "ExtractTitleInfoFromPackageInfo": 1, - "CreateTitlePage": 1, - "scaffold.MainPage": 2, - "scaffold.dir": 1, - "scaffold.book_name": 1, - "CreateMainPage": 1, - "WriteDocumentation": 1, - "SetGapDocLaTeXOptions": 1, - "MakeGAPDocDoc": 1, - "CopyHTMLStyleFiles": 1, - "GAPDocManualLab": 1, - "maketest.folder": 3, - "maketest.scan_dir": 3, - "CreateMakeTest": 1, - "Magic.gd": 1, "SHEBANG#!#! @Description": 1, "SHEBANG#!#! This": 1, "SHEBANG#!#! any": 1, @@ -23107,6 +22534,7 @@ "TODO": 3, "mention": 1, "merging": 1, + "with": 24, "PackageInfo.AutoDoc": 1, "SHEBANG#!#! ": 3, "SHEBANG#!#! ": 13, @@ -23121,36 +22549,60 @@ "SHEBANG#!#! i.e.": 1, "SHEBANG#!#! The": 2, "SHEBANG#!#! then": 1, + "The": 21, "param": 1, "bit": 2, "strange.": 1, + "We": 4, + "should": 2, + "probably": 2, "change": 1, + "it": 8, + "to": 37, + "be": 24, "more": 3, "general": 1, + "as": 23, + "one": 11, "might": 1, "want": 1, "define": 2, + "other": 4, "entities...": 1, + "For": 10, "now": 1, + "we": 3, "document": 1, "leave": 1, "us": 1, + "the": 136, "choice": 1, "revising": 1, "how": 1, "works.": 1, "": 2, + "": 117, "entities": 2, + "": 117, "": 2, "": 2, + "list": 16, "names": 1, + "or": 13, + "which": 8, + "are": 14, + "used": 10, "corresponding": 1, "XML": 4, "entities.": 1, + "example": 3, + "set": 6, "containing": 1, + "string": 6, "": 2, "SomePackage": 3, "": 2, + "following": 4, "added": 1, "preamble": 1, "

": 2, @@ -23159,18 +22611,30 @@ "": 2, "allows": 1, "you": 3, + "write": 3, + "&": 37, "amp": 1, "your": 1, "documentation": 2, "reference": 1, + "that": 39, "package.": 2, + "If": 11, "another": 1, + "type": 2, "entity": 1, "desired": 1, + "can": 12, + "simply": 2, "add": 2, "instead": 1, + "two": 13, + "entry": 2, "list.": 2, "It": 1, + "will": 5, + "handled": 3, + "so": 3, "please": 1, "careful.": 1, "": 2, @@ -23205,32 +22669,45 @@ "later": 1, "on.": 1, "However": 2, + "note": 2, "thanks": 1, + "new": 2, "comment": 1, "syntax": 1, + "only": 5, "remaining": 1, + "use": 5, + "this": 15, "seems": 1, "ability": 1, + "specify": 3, "order": 1, "chapters": 1, "sections.": 1, "TODO.": 1, "SHEBANG#!#! files": 1, + "Note": 3, "strictly": 1, "speaking": 1, + "also": 3, "scaffold.": 1, "uses": 2, "scaffolding": 2, + "mechanism": 4, + "really": 4, "necessary": 2, "custom": 1, "name": 2, "main": 1, - "file.": 3, + "Thus": 3, "purpose": 1, "parameter": 1, "cater": 1, "packages": 5, + "have": 3, "existing": 1, + "using": 2, + "different": 2, "wish": 1, "scaffolding.": 1, "explain": 1, @@ -23245,6 +22722,7 @@ "just": 1, "case.": 1, "SHEBANG#!#! In": 1, + "maketest": 12, "part.": 1, "Still": 1, "under": 1, @@ -23262,18 +22740,150 @@ "SHEBANG#!#! @Returns": 1, "SHEBANG#!#! @Arguments": 1, "SHEBANG#!#! @ChapterInfo": 1, - "example.gd": 2, - "sample": 2, - "declaration": 1, - "IsQuuxFrobnicator": 1, - "Tests": 1, - "R": 5, - "quux": 1, - "frobnicator.": 1, - "IsField": 1, - "IsGroup": 1, + "Magic.gi": 1, + "BindGlobal": 7, + "str": 8, + "suffix": 3, + "n": 31, + "m": 8, + "{": 21, + "}": 21, + "i": 25, + "d": 16, + "IsDirectoryPath": 1, + "CreateDir": 2, + "currently": 1, + "undocumented": 1, + "fail": 18, + "LastSystemError": 1, + ".message": 1, + "false": 7, + "pkg": 32, + "subdirs": 2, + "extensions": 1, + "d_rel": 6, + "files": 4, + "result": 9, + "DirectoriesPackageLibrary": 2, + "IsEmpty": 6, + "continue": 3, + "Directory": 5, + "DirectoryContents": 1, + "Sort": 1, + "AUTODOC_GetSuffix": 2, + "IsReadableFile": 2, + "Filename": 8, + "Add": 4, + "Make": 1, + "callable": 1, + "package_name": 1, + "AutoDocWorksheet.": 1, + "Which": 1, + "create": 1, + "worksheet": 1, + "package_info": 3, + "opt": 3, + "scaffold": 12, + "gapdoc": 7, + "autodoc": 8, + "pkg_dir": 5, + "doc_dir": 18, + "doc_dir_rel": 3, + "title_page": 7, + "tree": 8, + "is_worksheet": 13, + "position_document_class": 7, + "gapdoc_latex_option_record": 4, + "LowercaseString": 3, + "rec": 20, + "DirectoryCurrent": 1, + "PackageInfo": 1, + "key": 3, + "val": 4, + "ValueOption": 1, + "opt.": 1, + "IsBound": 39, + "opt.dir": 4, + "IsString": 7, + "IsDirectory": 1, + "AUTODOC_CreateDirIfMissing": 1, + "opt.scaffold": 5, + "package_info.AutoDoc": 3, + "IsRecord": 7, + "IsBool": 4, + "AUTODOC_APPEND_RECORD_WRITEONCE": 3, + "AUTODOC_WriteOnce": 10, + "opt.autodoc": 5, + "Concatenation": 15, + "package_info.Dependencies.NeededOtherPackages": 1, + "package_info.Dependencies.SuggestedOtherPackages": 1, + "ForAny": 1, + "autodoc.files": 7, + "autodoc.scan_dirs": 5, + "autodoc.level": 3, + "PushOptions": 1, + "level_value": 1, + "Append": 2, + "AUTODOC_FindMatchingFiles": 2, + "opt.gapdoc": 5, + "opt.maketest": 4, + "gapdoc.main": 8, + "package_info.PackageDoc": 3, + ".BookName": 2, + "gapdoc.bookname": 4, + "#Print": 1, + "gapdoc.files": 9, + "gapdoc.scan_dirs": 3, + "Set": 1, + "Number": 1, + "ListWithIdenticalEntries": 1, + "f": 11, + "DocumentationTree": 1, + "autodoc.section_intros": 2, + "AUTODOC_PROCESS_INTRO_STRINGS": 1, + "Tree": 2, + "AutoDocScanFiles": 1, + "PackageName": 2, + "scaffold.TitlePage": 4, + "scaffold.TitlePage.Title": 2, + ".TitlePage.Title": 2, + "Position": 2, + "Remove": 2, + "JoinStringsWithSeparator": 1, + "ReplacedString": 2, + "Syntax": 1, + "scaffold.document_class": 7, + "PositionSublist": 5, + "GAPDoc2LaTeXProcs.Head": 14, + "..": 6, + "scaffold.latex_header_file": 2, + "StringFile": 2, + "scaffold.gapdoc_latex_options": 4, + "RecNames": 1, + "scaffold.gapdoc_latex_options.": 5, + "IsList": 1, + "scaffold.includes": 4, + "scaffold.bib": 7, + "Unbind": 1, + "scaffold.main_xml_file": 2, + ".TitlePage": 1, + "ExtractTitleInfoFromPackageInfo": 1, + "CreateTitlePage": 1, + "scaffold.MainPage": 2, + "scaffold.dir": 1, + "scaffold.book_name": 1, + "CreateMainPage": 1, + "WriteDocumentation": 1, + "SetGapDocLaTeXOptions": 1, + "MakeGAPDocDoc": 1, + "CopyHTMLStyleFiles": 1, + "GAPDocManualLab": 1, + "maketest.folder": 3, + "maketest.scan_dir": 3, + "CreateMakeTest": 1, "PackageInfo.g": 2, "cvec": 1, + "s": 4, "template": 1, "SetPackageInfo": 1, "Subtitle": 1, @@ -23282,6 +22892,7 @@ "dd/mm/yyyy": 1, "format": 2, "Information": 1, + "about": 3, "authors": 1, "maintainers.": 1, "Persons": 1, @@ -23297,6 +22908,7 @@ "Status": 2, "information.": 1, "Currently": 1, + "cases": 2, "recognized": 1, "successfully": 2, "refereed": 2, @@ -23308,10 +22920,14 @@ "system": 1, "development": 1, "versions": 1, + "all": 18, "You": 1, + "must": 6, "provide": 2, "next": 6, + "entries": 8, "status": 1, + "because": 2, "was": 1, "#CommunicatedBy": 1, "#AcceptDate": 1, @@ -23331,6 +22947,7 @@ "overview": 1, "Web": 1, "page": 1, + "an": 17, "URL": 1, "Webpage": 1, "detailed": 1, @@ -23371,33 +22988,416 @@ "functionality": 1, "sensible.": 1, "#TestFile": 1, - "some": 2, "keyword": 1, "related": 1, "topic": 1, "Keywords": 1, - "implementation": 1, - "SomeOperation": 1, - "": 2, - "performs": 1, - "operation": 1, - "InstallMethod": 18, - "SomeProperty": 1, - "M": 7, - "IsTrivial": 1, - "TryNextMethod": 7, - "SomeGlobalFunction": 2, - "global": 1, - "variadic": 1, - "funfion.": 1, - "SomeFunc": 1, - "y": 8, - "z": 3, - "func": 3, - "j": 3, - "mod": 2, - "repeat": 1, - "until": 1, + "vspc.gd": 1, + "library": 2, + "Thomas": 2, + "Breuer": 2, + "#Y": 6, + "C": 11, + "Lehrstuhl": 2, + "D": 36, + "r": 2, + "Mathematik": 2, + "RWTH": 2, + "Aachen": 2, + "Germany": 2, + "School": 2, + "Math": 2, + "Comp.": 2, + "Sci.": 2, + "St": 2, + "Andrews": 2, + "Scotland": 2, + "Group": 3, + "declares": 1, + "operations": 2, + "vector": 67, + "spaces.": 4, + "bases": 5, + "free": 3, + "left": 15, + "modules": 1, + "found": 1, + "": 10, + "lib/basis.gd": 1, + ".": 257, + "IsLeftOperatorRing": 1, + "IsLeftOperatorAdditiveGroup": 2, + "IsRing": 1, + "IsAssociativeLOpDProd": 2, + "#T": 6, + "IsLeftOperatorRingWithOne": 2, + "IsRingWithOne": 1, + "IsLeftVectorSpace": 3, + "": 38, + "IsVectorSpace": 26, + "<#GAPDoc>": 17, + "Label=": 19, + "": 12, + "space": 74, + "": 12, + "module": 2, + "see": 30, + "nbsp": 30, + "": 71, + "Func=": 40, + "over": 24, + "division": 15, + "ring": 14, + "Chapter": 3, + "Chap=": 3, + "

": 23, + "Whenever": 1, + "talk": 1, + "": 42, + "F": 61, + "": 41, + "V": 152, + "additive": 1, + "group": 2, + "acts": 1, + "via": 6, + "multiplication": 1, + "from": 5, + "such": 4, + "action": 4, + "addition": 1, + "right": 2, + "distributive.": 1, + "accessed": 1, + "value": 9, + "attribute": 2, + "Vector": 1, + "spaces": 15, + "always": 1, + "Filt=": 4, + "synonyms.": 1, + "<#/GAPDoc>": 17, + "IsLeftActedOnByDivisionRing": 4, + "InstallTrueMethod": 4, + "IsGaussianSpace": 10, + "": 14, + "filter": 3, + "Sect=": 6, + "row": 17, + "matrix": 5, + "field": 12, + "say": 1, + "indicates": 3, + "vectors": 16, + "matrices": 5, + "respectively": 1, + "contained": 4, + "In": 3, + "case": 2, + "called": 1, + "Gaussian": 19, + "space.": 5, + "Bases": 1, + "computed": 2, + "elimination": 5, + "given": 4, + "generators.": 1, + "": 12, + "": 12, + "gap": 41, + "mats": 5, + "VectorSpace": 13, + "Rationals": 13, + "E": 2, + "element": 2, + "extension": 3, + "Field": 1, + "": 12, + "DeclareFilter": 1, + "IsFullMatrixModule": 1, + "IsFullRowModule": 1, + "IsDivisionRing": 5, + "": 12, + "nontrivial": 1, + "associative": 1, + "algebra": 2, + "multiplicative": 1, + "inverse": 1, + "each": 2, + "nonzero": 3, + "element.": 1, + "every": 1, + "possibly": 1, + "itself": 1, + "being": 2, + "thus": 1, + "property": 2, + "get": 1, + "usually": 1, + "represented": 1, + "coefficients": 3, + "stored": 1, + "DeclareSynonymAttr": 4, + "IsMagmaWithInversesIfNonzero": 1, + "IsNonTrivial": 1, + "IsAssociative": 1, + "IsEuclideanRing": 1, + "#A": 7, + "GeneratorsOfLeftVectorSpace": 1, + "GeneratorsOfVectorSpace": 2, + "": 7, + "Attr=": 10, + "returns": 14, + "generate": 1, + "FullRowSpace": 5, + "GeneratorsOfLeftOperatorAdditiveGroup": 2, + "CanonicalBasis": 3, + "supports": 1, + "canonical": 6, + "basis": 14, + "otherwise": 2, + "": 3, + "": 3, + "returned.": 4, + "defining": 1, + "its": 2, + "uniquely": 1, + "determined": 1, + "by": 14, + "exist": 1, + "same": 6, + "acting": 8, + "domain": 17, + "equality": 1, + "these": 5, + "decided": 1, + "comparing": 1, + "bases.": 1, + "exact": 1, + "meaning": 1, + "depends": 1, + "Canonical": 1, + "defined": 3, + "designs": 1, + "kind": 1, + "defines": 1, + "method": 4, + "installs": 1, + "call": 1, + "On": 1, + "hand": 1, + "install": 1, + "calls": 1, + "": 10, + "CANONICAL_BASIS_FLAGS": 1, + "": 9, + "vecs": 4, + "B": 16, + "": 8, + "3": 5, + "generators": 16, + "BasisVectors": 4, + "DeclareAttribute": 4, + "IsRowSpace": 2, + "consists": 7, + "IsRowModule": 1, + "IsGaussianRowSpace": 1, + "scalars": 2, + "occur": 2, + "vectors.": 2, + "calculations.": 2, + "Otherwise": 3, + "non": 4, + "Gaussian.": 2, + "need": 3, + "flag": 2, + "down": 2, + "methods": 4, + "delegate": 2, + "ones.": 2, + "IsNonGaussianRowSpace": 1, + "expresses": 2, + "cannot": 2, + "compute": 3, + "nice": 4, + "way.": 2, + "Let": 4, + "K": 4, + "spanned": 4, + "Then": 1, + "/": 12, + "cap": 1, + "v": 5, + "replacing": 1, + "forming": 1, + "concatenation.": 1, + "So": 2, + "associated": 3, + "DeclareHandlingByNiceBasis": 2, + "IsMatrixSpace": 2, + "IsMatrixModule": 1, + "IsGaussianMatrixSpace": 1, + "IsNonGaussianMatrixSpace": 1, + "irrelevant": 1, + "concatenation": 1, + "rows": 1, + "necessarily": 1, + "NormedRowVectors": 2, + "normed": 1, + "finite": 5, + "those": 1, + "first": 1, + "component.": 1, + "yields": 1, + "natural": 1, + "dimensional": 5, + "subspaces": 17, + "GF": 22, + "*Z": 5, + "Z": 6, + "Action": 1, + "GL": 1, + "OnLines": 1, + "TrivialSubspace": 2, + "subspace": 7, + "zero": 4, + "triv": 2, + "0": 2, + "AsSet": 1, + "TrivialSubmodule": 1, + "": 5, + "": 2, + "collection": 3, + "gens": 16, + "elements": 7, + "optional": 3, + "argument": 1, + "empty.": 1, + "known": 5, + "linearly": 3, + "independent": 3, + "particular": 1, + "dimension": 9, + "immediately": 2, + "formed": 1, + "argument.": 1, + "2": 1, + "Subspace": 4, + "generated": 1, + "SubspaceNC": 2, + "subset": 4, + "empty": 1, + "trivial": 1, + "parent": 3, + "returned": 3, + "does": 1, + "except": 1, + "omits": 1, + "check": 5, + "both": 2, + "W": 32, + "1": 3, + "Submodule": 1, + "SubmoduleNC": 1, + "#O": 2, + "AsVectorSpace": 4, + "view": 4, + "": 2, + "domain.": 1, + "form": 2, + "Oper=": 6, + "smaller": 1, + "larger": 1, + "ring.": 3, + "Dimension": 6, + "LeftActingDomain": 29, + "9": 1, + "AsLeftModule": 6, + "AsSubspace": 5, + "": 6, + "U": 12, + "collection.": 1, + "/2": 4, + "Parent": 4, + "DeclareOperation": 2, + "IsCollection": 3, + "Intersection2Spaces": 4, + "": 2, + "": 2, + "": 2, + "takes": 1, + "arguments": 1, + "intersection": 5, + "domains": 3, + "let": 1, + "their": 1, + "intersection.": 1, + "AsStruct": 2, + "equal": 1, + "either": 2, + "Substruct": 1, + "common": 1, + "Struct": 1, + "basis.": 1, + "handle": 1, + "intersections": 1, + "algebras": 2, + "ideals": 2, + "sided": 1, + "ideals.": 1, + "": 2, + "": 2, + "nonnegative": 2, + "integer": 2, + "length": 1, + "An": 2, + "alternative": 2, + "construct": 2, + "above": 2, + "FullRowModule": 2, + "FullMatrixSpace": 2, + "": 1, + "positive": 1, + "integers": 1, + "fact": 1, + "FullMatrixModule": 3, + "IsSubspacesVectorSpace": 9, + "fixed": 1, + "lies": 1, + "category": 1, + "Subspaces": 8, + "Size": 5, + "iter": 17, + "Iterator": 5, + "NextIterator": 5, + "DeclareCategory": 1, + "IsDomain": 1, + "IsFinite": 4, + "Returns": 1, + "": 1, + "Called": 2, + "k": 17, + "Special": 1, + "provided": 1, + "domains.": 1, + "IsInt": 3, + "IsSubspace": 3, + "OrthogonalSpaceInFullRowSpace": 1, + "complement": 1, + "full": 2, + "#P": 1, + "IsVectorSpaceHomomorphism": 3, + "": 2, + "": 1, + "mapping": 2, + "homomorphism": 1, + "linear": 1, + "source": 2, + "range": 1, + "b": 8, + "hold": 1, + "IsGeneralMapping": 2, + "#E": 2, "vspc.gi": 1, "generic": 1, "SetLeftActingDomain": 2, @@ -23978,11 +23978,6 @@ "gl_FragColor": 4, "varying": 6, "v_color": 4, - "static": 1, - "char*": 1, - "SimpleFragmentShader": 1, - "STRINGIFY": 1, - "FrontColor": 2, "uniform": 8, "mat4": 1, "u_MVPMatrix": 2, @@ -23990,6 +23985,37 @@ "a_position": 1, "a_color": 2, "gl_Position": 1, + "#version": 2, + "core": 1, + "cbar": 2, + "cfoo": 1, + "CB": 2, + "CD": 2, + "CA": 1, + "CC": 1, + "CBT": 5, + "CDT": 3, + "CAT": 1, + "CCT": 1, + "norA": 4, + "norB": 3, + "norC": 1, + "norD": 1, + "norE": 4, + "norF": 1, + "norG": 1, + "norH": 1, + "norI": 1, + "norcA": 2, + "norcB": 3, + "norcC": 2, + "norcD": 2, + "head": 1, + "of": 1, + "cycle": 2, + "norcE": 1, + "lead": 1, + "into": 1, "NUM_LIGHTS": 4, "AMBIENT": 2, "MAX_DIST": 3, @@ -24024,37 +24050,11 @@ "specularDot": 2, "sample.rgb": 1, "sample.a": 1, - "#version": 2, - "core": 1, - "cbar": 2, - "cfoo": 1, - "CB": 2, - "CD": 2, - "CA": 1, - "CC": 1, - "CBT": 5, - "CDT": 3, - "CAT": 1, - "CCT": 1, - "norA": 4, - "norB": 3, - "norC": 1, - "norD": 1, - "norE": 4, - "norF": 1, - "norG": 1, - "norH": 1, - "norI": 1, - "norcA": 2, - "norcB": 3, - "norcC": 2, - "norcD": 2, - "head": 1, - "of": 1, - "cycle": 2, - "norcE": 1, - "lead": 1, - "into": 1, + "static": 1, + "char*": 1, + "SimpleFragmentShader": 1, + "STRINGIFY": 1, + "FrontColor": 2, "kCoeff": 2, "kCube": 2, "uShift": 3, @@ -24415,158 +24415,6 @@ "always": 1, "looks": 1, "good": 1, - "#define": 26, - "assert_true": 1, - "argument0": 28, - "_assert_error_popup": 2, - "argument1": 10, - "string_repeat": 2, - "_assert_newline": 2, - "assert_false": 1, - "assert_equal": 1, - "//Safe": 1, - "equality": 1, - "check": 1, - "won": 1, - "support": 1, - "show_error": 2, - "show_message": 7, - "instead": 1, - "_assert_debug_value": 1, - "//String": 1, - "is_string": 2, - "os_browser": 1, - "browser_not_a_browser": 1, - "return": 56, - "string_replace_all": 1, - "//Numeric": 1, - "GMTuple": 1, - "jso_encode_string": 1, - "failed": 56, - "encode": 8, - "escape": 2, - "string": 13, - "jso_encode_map": 4, - "empty": 13, - "map": 47, - "key": 17, - "value": 13, - "one": 42, - "element": 8, - "key1": 3, - "key2": 3, - "multi": 7, - "jso_encode_list": 3, - "list": 36, - "nested": 27, - "three": 36, - "_jso_decode_string": 5, - "decode": 36, - "an": 24, - "small": 1, - "The": 6, - "quick": 2, - "brown": 2, - "fox": 2, - "over": 2, - "lazy": 2, - "dog.": 2, - "simple": 1, - "with": 47, - "characters": 3, - "Waahoo": 1, - "negg": 1, - "mixed": 1, - "_jso_decode_boolean": 2, - "_jso_decode_real": 11, - "standard": 1, - "zero": 4, - "signed": 2, - "decimal": 1, - "digits": 1, - "positive": 7, - "real": 14, - "number": 7, - "negative": 7, - "exponent": 4, - "integer": 6, - "_jso_decode_integer": 3, - "_jso_decode_map": 14, - "didn": 14, - "include": 14, - "right": 14, - "prefix": 14, - "#1": 14, - "#2": 14, - "entry": 29, - "pi": 2, - "bool": 2, - "waahoo": 10, - "woohah": 8, - "lists": 6, - "mix": 4, - "up": 6, - "_jso_decode_list": 14, - "woo": 2, - "maps": 37, - "Empty": 4, - "equal": 20, - "each": 18, - "other.": 12, - "junk": 2, - "info": 1, - "taxi": 1, - "An": 4, - "filled": 4, - "map.": 2, - "A": 24, - "B": 18, - "C": 8, - "Maps": 9, - "same": 6, - "content": 4, - "entered": 4, - "in": 21, - "different": 12, - "orders": 4, - "D": 1, - "keys": 2, - "values": 4, - "six": 1, - "corresponding": 4, - "types": 4, - "other": 4, - "crash.": 4, - "list.": 2, - "Lists": 4, - "two": 16, - "entries": 2, - "also": 2, - "jso_map_check": 9, - "find": 10, - "existing": 9, - "single": 11, - "argument": 10, - "jso_map_lookup": 3, - "found": 21, - "wrong": 10, - "trap": 2, - "jso_map_lookup_type": 3, - "type": 8, - "four": 21, - "inexistent": 11, - "multiple": 20, - "arguments": 26, - "overflow": 4, - "jso_list_check": 8, - "jso_list_lookup": 3, - "jso_list_lookup_type": 3, - "inner": 1, - "indexing": 1, - "bad": 1, - "boolean": 3, - "jso_cleanup_map": 1, - "one_map": 1, "var": 79, "i": 95, "playerObject": 1, @@ -24582,6 +24430,7 @@ "tcp_eof": 3, "global.serverSocket": 10, "gotServerHello": 2, + "show_message": 7, "instance_destroy": 7, "exit": 10, "room": 1, @@ -24614,6 +24463,7 @@ "Server": 3, "sent": 7, "illegal": 2, + "map": 47, "This": 2, "server": 10, "requires": 1, @@ -24628,6 +24478,7 @@ "plugins.": 1, "Maps/": 2, ".png": 2, + "The": 6, "version": 4, "Enter": 1, "Password": 1, @@ -24670,21 +24521,178 @@ "unexpected": 1, "data.": 1, "until": 1, + "downloadHandle": 3, + "url": 62, + "tmpfile": 3, + "window_oldshowborder": 2, + "window_oldfullscreen": 2, + "timeLeft": 1, + "counter": 1, + "AudioControlPlaySong": 1, + "window_get_showborder": 1, + "window_get_fullscreen": 1, + "window_set_fullscreen": 2, + "window_set_showborder": 1, + "global.updaterBetaChannel": 3, + "UPDATE_SOURCE_BETA": 1, + "UPDATE_SOURCE": 1, + "temp_directory": 1, + "httpGet": 1, + "httpRequestStatus": 1, + "download": 1, + "isn": 1, + "extract": 1, + "downloaded": 1, + "file": 2, + "now.": 1, + "extractzip": 1, + "working_directory": 6, + "execute_program": 1, + "game_end": 1, + "victim": 10, + "killer": 11, + "assistant": 16, + "damageSource": 18, + "argument0": 28, + "argument1": 10, + "argument2": 3, + "argument3": 1, + "//*************************************": 6, + "//*": 3, + "Scoring": 1, + "Kill": 1, + "log": 1, + "recordKillInLog": 1, + "victim.stats": 1, + "DEATHS": 1, + "WEAPON_KNIFE": 1, + "||": 16, + "WEAPON_BACKSTAB": 1, + "killer.stats": 8, + "STABS": 2, + "killer.roundStats": 8, + "POINTS": 10, + "victim.object.currentWeapon.object_index": 1, + "Medigun": 2, + "victim.object.currentWeapon.uberReady": 1, + "BONUS": 2, + "KILLS": 2, + "victim.object.intel": 1, + "DEFENSES": 2, + "recordEventInLog": 1, + "killer.team": 1, + "killer.name": 2, + "global.myself": 4, + "assistant.stats": 2, + "ASSISTS": 2, + "assistant.roundStats": 2, + ".5": 2, + "//SPEC": 1, + "instance_create": 20, + "victim.object.x": 3, + "victim.object.y": 3, + "Spectator": 1, + "Gibbing": 2, "xoffset": 5, - "view_xview": 3, "yoffset": 5, - "view_yview": 3, "xsize": 3, - "view_wview": 2, "ysize": 3, + "view_xview": 3, + "view_yview": 3, + "view_wview": 2, "view_hview": 2, + "randomize": 1, + "with": 47, + "victim.object": 2, + "WEAPON_ROCKETLAUNCHER": 1, + "WEAPON_MINEGUN": 1, + "FRAG_BOX": 2, + "WEAPON_REFLECTED_STICKY": 1, + "WEAPON_REFLECTED_ROCKET": 1, + "FINISHED_OFF_GIB": 2, + "GENERATOR_EXPLOSION": 2, + "player.class": 15, + "CLASS_QUOTE": 3, + "global.gibLevel": 14, "distance_to_point": 3, "xsize/2": 2, "ysize/2": 2, + "hasReward": 4, + "repeat": 7, + "createGib": 14, + "PumpkinGib": 1, + "hspeed": 14, + "vspeed": 13, + "random": 21, + "choose": 8, + "Gib": 1, + "player.team": 8, + "TEAM_BLUE": 6, + "BlueClump": 1, + "TEAM_RED": 8, + "RedClump": 1, + "blood": 2, + "BloodDrop": 1, + "blood.hspeed": 1, + "blood.vspeed": 1, + "blood.sprite_index": 1, + "PumpkinJuiceS": 1, + "//All": 1, + "Classes": 1, + "gib": 1, + "head": 1, + "hands": 2, + "feet": 1, + "Headgib": 1, + "//Medic": 1, + "has": 2, + "specially": 1, + "colored": 1, + "CLASS_MEDIC": 2, + "Hand": 3, + "Feet": 1, + "//Class": 1, + "specific": 1, + "gibs": 1, + "CLASS_PYRO": 2, + "Accesory": 5, + "CLASS_SOLDIER": 2, + "CLASS_ENGINEER": 3, + "CLASS_SNIPER": 3, + "playsound": 2, + "deadbody": 2, + "DeathSnd1": 1, + "DeathSnd2": 1, + "DeadGuy": 1, + "deadbody.sprite_index": 2, + "haxxyStatue": 1, + "deadbody.image_index": 2, + "CHARACTER_ANIMATION_DEAD": 1, + "deadbody.hspeed": 1, + "deadbody.vspeed": 1, + "deadbody.image_xscale": 1, + "global.gg_birthday": 1, + "myHat": 2, + "PartyHat": 1, + "myHat.image_index": 2, + "victim.team": 2, + "global.xmas": 1, + "XmasHat": 1, + "Deathcam": 1, + "global.killCam": 3, + "KILL_BOX": 1, + "FINISHED_OFF": 5, + "DeathCam": 1, + "DeathCam.killedby": 1, + "DeathCam.name": 1, + "DeathCam.oldxview": 1, + "DeathCam.oldyview": 1, + "DeathCam.lastDamageSource": 1, + "DeathCam.team": 1, + "global.myself.team": 3, "xr": 19, "yr": 19, "cloakAlpha": 1, - "global.myself.team": 3, "team": 13, "canCloak": 1, "cloakAlpha/2": 1, @@ -24693,8 +24701,6 @@ "power": 1, "currentWeapon.stab.alpha": 1, "&&": 6, - "global.myself": 4, - "||": 16, "global.showHealthBar": 3, "draw_set_alpha": 3, "draw_healthbar": 1, @@ -24719,9 +24725,9 @@ "35": 1, "showTeammateStats": 1, "weapons": 3, - "Medigun": 2, "50": 3, "Superburst": 1, + "string": 13, "currentWeapon": 2, "uberCharge": 1, "20": 1, @@ -24734,9 +24740,7 @@ "Lobbed": 1, "Mines": 1, "lobbed": 1, - "TEAM_RED": 8, "ubercolour": 6, - "TEAM_BLUE": 6, "overlaySprite": 6, "zoomed": 1, "SniperCrouchRedS": 1, @@ -24765,7 +24769,6 @@ "numFlames": 1, "maxIntensity": 1, "FlameS": 1, - "random": 21, "flameArray_x": 1, "flameArray_y": 1, "maxDuration": 1, @@ -24780,45 +24783,7 @@ "sprite_get_number": 1, "*player.team": 2, "dir*1": 2, - "__jso_gmt_tuple": 1, - "//Position": 1, - "address": 1, - "table": 1, - "data": 4, - "pos": 2, - "addr_table": 2, - "*argument_count": 1, - "//Build": 1, - "tuple": 1, - "by": 5, - "ca": 1, - "isstr": 1, - "datastr": 1, - "argument_count": 1, - "//Check": 1, - "Unexpected": 18, - "position": 16, - "f": 5, - "end": 11, - "JSON": 5, - "string.": 5, - "Cannot": 5, - "parse": 3, - "expecting": 9, - "digit.": 9, - "e": 4, - "E": 4, - "dot": 1, - "Expected": 6, - "least": 6, - "got": 6, - "lookup.": 4, - "indices": 1, - "Index": 1, - "Recursive": 1, - "abcdef": 1, - "hex": 2, - "num": 1, + "#define": 26, "__http_init": 3, "global.__HttpClient": 4, "object_add": 1, @@ -24826,19 +24791,20 @@ "__http_split": 3, "text": 19, "delimeter": 7, - "argument2": 3, + "list": 36, "count": 4, "ds_list_create": 5, "ds_list_add": 23, "string_copy": 32, "string_length": 25, + "return": 56, "__http_parse_url": 4, - "url": 62, "ds_map_create": 4, "ds_map_add": 15, "colonPos": 22, "string_char_at": 13, "slashPos": 13, + "real": 14, "queryPos": 12, "ds_map_destroy": 6, "__http_resolve_url": 2, @@ -24876,6 +24842,7 @@ "client": 33, "headers": 11, "parsed": 18, + "show_error": 2, "destroyed": 3, "CR": 10, "chr": 3, @@ -24897,7 +24864,9 @@ "requestUrl": 2, "requestHeaders": 2, "write_string": 9, + "key": 17, "ds_map_find_first": 1, + "is_string": 2, "ds_map_find_next": 1, "socket_send": 1, "__http_parse_header": 3, @@ -24915,6 +24884,7 @@ "c": 20, "read_string": 9, "Reached": 2, + "end": 11, "HTTP": 1, "defines": 1, "sequence": 2, @@ -24942,15 +24912,20 @@ "Line": 1, "consisting": 1, "followed": 1, + "by": 5, "numeric": 1, "its": 1, "associated": 1, "textual": 1, "phrase": 1, + "each": 18, + "element": 8, "separated": 1, "SP": 1, + "characters": 3, "No": 3, "allowed": 1, + "in": 21, "final": 1, "httpVer": 2, "spacePos": 11, @@ -24969,6 +24944,7 @@ "chunked": 4, "Chunked": 1, "let": 1, + "decode": 36, "actualResponseBody": 8, "actualResponseSize": 1, "actualResponseBodySize": 3, @@ -24977,12 +24953,14 @@ "chunk": 12, "size": 7, "extension": 3, + "data": 4, "HEX": 1, "buffer_bytes_left": 6, "chunkSize": 11, "Read": 1, "byte": 2, "We": 1, + "found": 21, "semicolon": 1, "beginning": 1, "skip": 1, @@ -24990,8 +24968,12 @@ "header": 2, "Doesn": 1, "did": 1, + "empty": 13, "something": 1, + "up": 6, "Parsing": 1, + "failed": 56, + "hex": 2, "was": 1, "hexadecimal": 1, "Is": 1, @@ -25005,7 +24987,6 @@ "socket_destroy": 4, "http_new_get": 1, "variable_global_exists": 2, - "instance_create": 20, "http_new_get_ex": 1, "http_step": 1, "client.errored": 3, @@ -25024,47 +25005,9 @@ "http_response_headers": 1, "client.responseHeaders": 1, "http_destroy": 1, - "hashList": 5, - "pluginname": 9, - "pluginhash": 4, - "realhash": 1, - "handle": 1, - "filesize": 1, - "progress": 1, - "tempfile": 1, - "tempdir": 1, - "lastContact": 2, - "isCached": 2, - "isDebug": 2, - "split": 1, - "checkpluginname": 1, - "ds_list_find_index": 1, - "file_exists": 5, - "working_directory": 6, - ".zip": 3, - "ServerPluginsCache": 6, - "@": 5, - ".zip.tmp": 1, - ".tmp": 2, - "ServerPluginsDebug": 1, - "Warning": 2, - "being": 2, - "loaded": 2, - "ServerPluginsDebug.": 2, - "Make": 2, - "sure": 2, - "clients": 1, - "they": 1, - "may": 2, - "unable": 2, - "connect.": 2, - "has": 2, - "you": 1, - "Downloading": 1, - "last_plugin.log": 2, - "plugin.gml": 1, "RoomChangeObserver": 1, "set_little_endian_global": 1, + "file_exists": 5, "file_delete": 3, "backupFilename": 5, "file_find_first": 1, @@ -25078,7 +25021,6 @@ "music": 1, "global.MenuMusic": 3, "sound_add": 3, - "choose": 8, "global.IngameMusic": 3, "global.FaucetMusic": 3, "sound_volume": 3, @@ -25108,8 +25050,6 @@ "global.multiClientLimit": 2, "global.particles": 2, "PARTICLES_NORMAL": 1, - "global.gibLevel": 14, - "global.killCam": 3, "global.monitorSync": 3, "set_synchronization": 2, "global.medicRadar": 2, @@ -25140,7 +25080,6 @@ "unhex": 1, "global.rewardId": 1, "global.mapdownloadLimitBps": 2, - "global.updaterBetaChannel": 3, "isBetaVersion": 1, "global.attemptPortForward": 2, "global.serverPluginList": 3, @@ -25163,19 +25102,14 @@ "ini_key_delete": 1, "global.classlimits": 10, "CLASS_SCOUT": 1, - "CLASS_PYRO": 2, - "CLASS_SOLDIER": 2, "CLASS_HEAVY": 2, "CLASS_DEMOMAN": 1, - "CLASS_MEDIC": 2, - "CLASS_ENGINEER": 3, "CLASS_SPY": 1, - "CLASS_SNIPER": 3, - "CLASS_QUOTE": 3, "//screw": 1, "will": 1, "start": 1, "//map_truefort": 1, + "maps": 37, "//map_2dfort": 1, "//map_conflict": 1, "//map_classicwell": 1, @@ -25235,7 +25169,7 @@ "file_text_close": 1, "load": 1, "ini": 1, - "file": 2, + "Maps": 9, "section": 1, "//Set": 1, "rotation": 1, @@ -25243,7 +25177,6 @@ "*maps": 1, "ds_list_sort": 1, "mod": 1, - "window_set_fullscreen": 2, "global.gg2Font": 2, "font_add_sprite": 2, "gg2FontS": 1, @@ -25299,6 +25232,204 @@ "AudioControlToggleMute": 1, "room_goto_fix": 2, "Menu": 2, + "__jso_gmt_tuple": 1, + "//Position": 1, + "address": 1, + "table": 1, + "pos": 2, + "addr_table": 2, + "*argument_count": 1, + "//Build": 1, + "tuple": 1, + "ca": 1, + "isstr": 1, + "datastr": 1, + "argument_count": 1, + "//Check": 1, + "argument": 10, + "Unexpected": 18, + "position": 16, + "f": 5, + "JSON": 5, + "string.": 5, + "Cannot": 5, + "parse": 3, + "boolean": 3, + "value": 13, + "expecting": 9, + "digit.": 9, + "e": 4, + "E": 4, + "dot": 1, + "an": 24, + "integer": 6, + "Expected": 6, + "least": 6, + "arguments": 26, + "got": 6, + "find": 10, + "lookup.": 4, + "indices": 1, + "nested": 27, + "lists": 6, + "Index": 1, + "overflow": 4, + "Recursive": 1, + "abcdef": 1, + "number": 7, + "num": 1, + "assert_true": 1, + "_assert_error_popup": 2, + "string_repeat": 2, + "_assert_newline": 2, + "assert_false": 1, + "assert_equal": 1, + "//Safe": 1, + "equality": 1, + "check": 1, + "won": 1, + "support": 1, + "instead": 1, + "_assert_debug_value": 1, + "//String": 1, + "os_browser": 1, + "browser_not_a_browser": 1, + "string_replace_all": 1, + "//Numeric": 1, + "GMTuple": 1, + "jso_encode_string": 1, + "encode": 8, + "escape": 2, + "jso_encode_map": 4, + "one": 42, + "key1": 3, + "key2": 3, + "multi": 7, + "jso_encode_list": 3, + "three": 36, + "_jso_decode_string": 5, + "small": 1, + "quick": 2, + "brown": 2, + "fox": 2, + "over": 2, + "lazy": 2, + "dog.": 2, + "simple": 1, + "Waahoo": 1, + "negg": 1, + "mixed": 1, + "_jso_decode_boolean": 2, + "_jso_decode_real": 11, + "standard": 1, + "zero": 4, + "signed": 2, + "decimal": 1, + "digits": 1, + "positive": 7, + "negative": 7, + "exponent": 4, + "_jso_decode_integer": 3, + "_jso_decode_map": 14, + "didn": 14, + "include": 14, + "right": 14, + "prefix": 14, + "#1": 14, + "#2": 14, + "entry": 29, + "pi": 2, + "bool": 2, + "waahoo": 10, + "woohah": 8, + "mix": 4, + "_jso_decode_list": 14, + "woo": 2, + "Empty": 4, + "equal": 20, + "other.": 12, + "junk": 2, + "info": 1, + "taxi": 1, + "An": 4, + "filled": 4, + "map.": 2, + "A": 24, + "B": 18, + "C": 8, + "same": 6, + "content": 4, + "entered": 4, + "different": 12, + "orders": 4, + "D": 1, + "keys": 2, + "values": 4, + "six": 1, + "corresponding": 4, + "types": 4, + "other": 4, + "crash.": 4, + "list.": 2, + "Lists": 4, + "two": 16, + "entries": 2, + "also": 2, + "jso_map_check": 9, + "existing": 9, + "single": 11, + "jso_map_lookup": 3, + "wrong": 10, + "trap": 2, + "jso_map_lookup_type": 3, + "type": 8, + "four": 21, + "inexistent": 11, + "multiple": 20, + "jso_list_check": 8, + "jso_list_lookup": 3, + "jso_list_lookup_type": 3, + "inner": 1, + "indexing": 1, + "bad": 1, + "jso_cleanup_map": 1, + "one_map": 1, + "hashList": 5, + "pluginname": 9, + "pluginhash": 4, + "realhash": 1, + "handle": 1, + "filesize": 1, + "progress": 1, + "tempfile": 1, + "tempdir": 1, + "lastContact": 2, + "isCached": 2, + "isDebug": 2, + "split": 1, + "checkpluginname": 1, + "ds_list_find_index": 1, + ".zip": 3, + "ServerPluginsCache": 6, + "@": 5, + ".zip.tmp": 1, + ".tmp": 2, + "ServerPluginsDebug": 1, + "Warning": 2, + "being": 2, + "loaded": 2, + "ServerPluginsDebug.": 2, + "Make": 2, + "sure": 2, + "clients": 1, + "they": 1, + "may": 2, + "unable": 2, + "connect.": 2, + "you": 1, + "Downloading": 1, + "last_plugin.log": 2, + "plugin.gml": 1, "playerId": 11, "commandLimitRemaining": 4, "variable_local_exists": 4, @@ -25319,18 +25450,15 @@ "PLAYER_CHANGECLASS": 1, "class": 8, "getCharacterObject": 2, - "player.team": 8, "player.object": 12, "SpawnRoom": 2, "lastDamageDealer": 8, "sendEventPlayerDeath": 4, "BID_FAREWELL": 4, "doEventPlayerDeath": 4, - "assistant": 16, "secondToLastDamageDealer": 2, "lastDamageDealer.object": 2, "lastDamageDealer.object.healer": 4, - "FINISHED_OFF": 5, "player.alarm": 4, "<=0)>": 1, "checkClasslimits": 2, @@ -25343,7 +25471,6 @@ "calculate": 1, "which": 1, "Player": 1, - "player.class": 15, "TEAM_SPECTATOR": 1, "newClass": 4, "ServerPlayerChangeteam": 1, @@ -25417,133 +25544,6 @@ "CLIENT_SETTINGS": 2, "mirror": 4, "player.queueJump": 1, - "downloadHandle": 3, - "tmpfile": 3, - "window_oldshowborder": 2, - "window_oldfullscreen": 2, - "timeLeft": 1, - "counter": 1, - "AudioControlPlaySong": 1, - "window_get_showborder": 1, - "window_get_fullscreen": 1, - "window_set_showborder": 1, - "UPDATE_SOURCE_BETA": 1, - "UPDATE_SOURCE": 1, - "temp_directory": 1, - "httpGet": 1, - "httpRequestStatus": 1, - "download": 1, - "isn": 1, - "extract": 1, - "downloaded": 1, - "now.": 1, - "extractzip": 1, - "execute_program": 1, - "game_end": 1, - "victim": 10, - "killer": 11, - "damageSource": 18, - "argument3": 1, - "//*************************************": 6, - "//*": 3, - "Scoring": 1, - "Kill": 1, - "log": 1, - "recordKillInLog": 1, - "victim.stats": 1, - "DEATHS": 1, - "WEAPON_KNIFE": 1, - "WEAPON_BACKSTAB": 1, - "killer.stats": 8, - "STABS": 2, - "killer.roundStats": 8, - "POINTS": 10, - "victim.object.currentWeapon.object_index": 1, - "victim.object.currentWeapon.uberReady": 1, - "BONUS": 2, - "KILLS": 2, - "victim.object.intel": 1, - "DEFENSES": 2, - "recordEventInLog": 1, - "killer.team": 1, - "killer.name": 2, - "assistant.stats": 2, - "ASSISTS": 2, - "assistant.roundStats": 2, - ".5": 2, - "//SPEC": 1, - "victim.object.x": 3, - "victim.object.y": 3, - "Spectator": 1, - "Gibbing": 2, - "randomize": 1, - "victim.object": 2, - "WEAPON_ROCKETLAUNCHER": 1, - "WEAPON_MINEGUN": 1, - "FRAG_BOX": 2, - "WEAPON_REFLECTED_STICKY": 1, - "WEAPON_REFLECTED_ROCKET": 1, - "FINISHED_OFF_GIB": 2, - "GENERATOR_EXPLOSION": 2, - "hasReward": 4, - "repeat": 7, - "createGib": 14, - "PumpkinGib": 1, - "hspeed": 14, - "vspeed": 13, - "Gib": 1, - "BlueClump": 1, - "RedClump": 1, - "blood": 2, - "BloodDrop": 1, - "blood.hspeed": 1, - "blood.vspeed": 1, - "blood.sprite_index": 1, - "PumpkinJuiceS": 1, - "//All": 1, - "Classes": 1, - "gib": 1, - "head": 1, - "hands": 2, - "feet": 1, - "Headgib": 1, - "//Medic": 1, - "specially": 1, - "colored": 1, - "Hand": 3, - "Feet": 1, - "//Class": 1, - "specific": 1, - "gibs": 1, - "Accesory": 5, - "playsound": 2, - "deadbody": 2, - "DeathSnd1": 1, - "DeathSnd2": 1, - "DeadGuy": 1, - "deadbody.sprite_index": 2, - "haxxyStatue": 1, - "deadbody.image_index": 2, - "CHARACTER_ANIMATION_DEAD": 1, - "deadbody.hspeed": 1, - "deadbody.vspeed": 1, - "deadbody.image_xscale": 1, - "global.gg_birthday": 1, - "myHat": 2, - "PartyHat": 1, - "myHat.image_index": 2, - "victim.team": 2, - "global.xmas": 1, - "XmasHat": 1, - "Deathcam": 1, - "KILL_BOX": 1, - "DeathCam": 1, - "DeathCam.killedby": 1, - "DeathCam.name": 1, - "DeathCam.oldxview": 1, - "DeathCam.oldyview": 1, - "DeathCam.lastDamageSource": 1, - "DeathCam.team": 1, "global.levelType": 22, "//global.currLevel": 1, "global.currLevel": 22, @@ -25644,25 +25644,105 @@ }, "Gnuplot": { "set": 98, - "dummy": 3, - "u": 25, - "v": 31, "label": 14, "at": 14, "-": 102, "left": 15, "norotate": 18, "back": 23, + "textcolor": 13, + "rgb": 8, "nopoint": 14, "offset": 25, "character": 22, + "lt": 15, + "style": 7, + "line": 4, + "linetype": 11, + "linecolor": 4, + "linewidth": 11, + "pointtype": 4, + "pointsize": 4, + "default": 4, + "pointinterval": 4, + "noxtics": 2, + "noytics": 2, + "title": 13, + "xlabel": 6, + "xrange": 3, + "[": 18, + "]": 18, + "noreverse": 13, + "nowriteback": 12, + "yrange": 4, + "bmargin": 1, + "unset": 2, + "colorbox": 3, + "plot": 3, + "cos": 9, + "(": 52, + "x": 7, + ")": 52, + "ls": 4, + ".2": 1, + ".4": 1, + ".6": 1, + ".8": 1, + "lc": 3, + "boxwidth": 1, + "absolute": 1, + "fill": 1, + "solid": 1, + "border": 3, + "key": 1, + "inside": 1, + "right": 1, + "top": 1, + "vertical": 2, + "Right": 1, + "noenhanced": 1, + "autotitles": 1, + "nobox": 1, + "histogram": 1, + "clustered": 1, + "gap": 1, + "datafile": 1, + "missing": 1, + "data": 1, + "histograms": 1, + "xtics": 3, + "in": 1, + "scale": 1, + "nomirror": 1, + "rotate": 3, + "by": 3, + "autojustify": 1, + "norangelimit": 3, + "font": 8, + "i": 1, + "using": 2, + "xtic": 1, + "ti": 4, + "col": 4, + "u": 25, + "SHEBANG#!gnuplot": 1, + "reset": 1, + "terminal": 1, + "png": 1, + "output": 1, + "ylabel": 5, + "#set": 2, + "xr": 1, + "yr": 1, + "pt": 2, + "notitle": 15, + "dummy": 3, + "v": 31, "arrow": 7, "from": 7, "to": 7, "head": 7, "nofilled": 7, - "linetype": 11, - "linewidth": 11, "parametric": 3, "view": 3, "samples": 3, @@ -25673,26 +25753,9 @@ "altdiagonal": 2, "bentover": 2, "ztics": 2, - "norangelimit": 3, - "title": 13, - "xlabel": 6, - "font": 8, - "textcolor": 13, - "lt": 15, - "xrange": 3, - "[": 18, - "]": 18, - "noreverse": 13, - "nowriteback": 12, - "ylabel": 5, - "rotate": 3, - "by": 3, - "yrange": 4, "zlabel": 4, "zrange": 2, "sinc": 13, - "(": 52, - ")": 52, "sin": 3, "sqrt": 4, "u**2": 4, @@ -25712,11 +25775,12 @@ "x7": 4, "x8": 4, "x9": 4, + "splot": 3, + "<": 10, "xmin": 3, "xmax": 1, "n": 1, "zbase": 2, - "splot": 3, ".5": 2, "*n": 1, "floor": 3, @@ -25725,95 +25789,31 @@ "%": 2, "u/3.*dx": 1, "/0": 1, - "notitle": 15, - "unset": 2, - "border": 3, "angles": 1, "degrees": 1, "mapping": 1, "spherical": 1, - "noxtics": 2, - "noytics": 2, "noztics": 1, "urange": 1, "vrange": 1, "cblabel": 1, "cbrange": 1, - "colorbox": 3, "user": 1, - "vertical": 2, "origin": 1, "screen": 2, "size": 1, "front": 1, "bdefault": 1, - "cos": 9, "*cos": 1, "*sin": 1, "with": 3, "lines": 2, - "using": 2, "labels": 1, "point": 1, - "pt": 2, "lw": 1, ".1": 1, "tc": 1, - "pal": 1, - "SHEBANG#!gnuplot": 1, - "reset": 1, - "terminal": 1, - "png": 1, - "output": 1, - "#set": 2, - "xr": 1, - "yr": 1, - "plot": 3, - "rgb": 8, - "style": 7, - "line": 4, - "linecolor": 4, - "pointtype": 4, - "pointsize": 4, - "default": 4, - "pointinterval": 4, - "bmargin": 1, - "x": 7, - "ls": 4, - ".2": 1, - ".4": 1, - ".6": 1, - ".8": 1, - "lc": 3, - "<": 10, - "boxwidth": 1, - "absolute": 1, - "fill": 1, - "solid": 1, - "key": 1, - "inside": 1, - "right": 1, - "top": 1, - "Right": 1, - "noenhanced": 1, - "autotitles": 1, - "nobox": 1, - "histogram": 1, - "clustered": 1, - "gap": 1, - "datafile": 1, - "missing": 1, - "data": 1, - "histograms": 1, - "xtics": 3, - "in": 1, - "scale": 1, - "nomirror": 1, - "autojustify": 1, - "i": 1, - "xtic": 1, - "ti": 4, - "col": 4 + "pal": 1 }, "Gosu": { "<%!-->": 1, @@ -25840,21 +25840,34 @@ "user.Department": 1, "package": 2, "example": 2, + "enhancement": 1, + "String": 6, + "function": 11, + "toPerson": 1, + "Person": 7, + "var": 10, + "vals": 4, + "this.split": 1, + "return": 4, + "new": 6, + "[": 4, + "]": 4, + "as": 3, + "int": 2, + "Relationship.valueOf": 2, + "hello": 1, + "print": 3, "uses": 2, "java.util.*": 1, "java.io.File": 1, "class": 1, - "Person": 7, "extends": 1, "Contact": 1, "implements": 1, "IEmailable": 2, - "var": 10, "_name": 4, - "String": 6, "_age": 3, "Integer": 3, - "as": 3, "Age": 1, "_relationship": 2, "Relationship": 3, @@ -25869,7 +25882,6 @@ "BUSINESS_CONTACT": 1, "static": 7, "ALL_PEOPLE": 2, - "new": 6, "HashMap": 1, "": 1, "construct": 1, @@ -25881,16 +25893,13 @@ "property": 2, "get": 1, "Name": 3, - "return": 4, "set": 1, "override": 1, - "function": 11, "getEmailName": 1, "incrementAge": 1, "+": 2, "@Deprecated": 1, "printPersonInfo": 1, - "print": 3, "addPerson": 4, "p": 5, "if": 4, @@ -25898,9 +25907,7 @@ ".Name": 1, "throw": 1, "IllegalArgumentException": 1, - "[": 4, "p.Name": 2, - "]": 4, "addAllPeople": 1, "contacts": 2, "List": 1, @@ -25911,7 +25918,6 @@ "not": 1, "contact.Name": 1, "getAllPeopleOlderThanNOrderedByName": 1, - "int": 2, "allPeople": 1, "ALL_PEOPLE.Values": 3, "allPeople.where": 1, @@ -25931,7 +25937,6 @@ "result.next": 1, "result.getString": 2, "result.getInt": 1, - "Relationship.valueOf": 2, "loadFromFile": 1, "file": 3, "File": 2, @@ -25943,151 +25948,289 @@ "writer": 2, "FileWriter": 1, "PersonCSVTemplate.renderToString": 1, - "PersonCSVTemplate.render": 1, - "enhancement": 1, - "toPerson": 1, - "vals": 4, - "this.split": 1, - "hello": 1 + "PersonCSVTemplate.render": 1 }, "Grammatical Framework": { "-": 594, "(": 256, "c": 73, ")": 256, - "Katerina": 2, - "Bohmova": 2, + "Aarne": 13, + "Ranta": 13, "under": 33, "LGPL": 33, - "resource": 1, - "ResCze": 2, - "open": 23, - "Prelude": 11, - "in": 32, + "abstract": 1, + "Foods": 34, "{": 579, "flags": 32, - "coding": 29, - "utf8": 29, - ";": 1399, - "param": 22, - "Number": 207, - "Sg": 184, - "|": 122, - "Pl": 182, - "Gender": 94, - "Masc": 67, - "Fem": 65, - "Neutr": 21, - "oper": 29, - "NounPhrase": 3, - "Type": 9, - "s": 365, - "Str": 394, - "g": 132, - "n": 206, - "}": 580, - "Noun": 9, - "Adjective": 9, - "det": 86, - "m": 9, - "f": 16, - "ne": 2, - "cn": 11, - "table": 148, - "cn.g": 10, - "+": 480, - "cn.s": 8, - "noun": 51, - "muz": 2, - "muzi": 2, - "adjective": 22, - "msg": 3, - "fsg": 3, - "nsg": 3, - "mpl": 3, - "fpl": 3, - "npl": 3, - "regAdj": 61, - "mlad": 7, - "regnfAdj": 2, - "vynikajici": 7, - "copula": 33, - "#": 14, - "path": 14, - ".": 13, - "prelude": 2, - "Inese": 1, - "Bernsone": 1, - "concrete": 33, - "FoodsLav": 1, - "of": 89, - "Foods": 34, - "lincat": 28, + "startcat": 1, "Comment": 31, - "SS": 6, - "Quality": 34, - "Q": 5, - "Defin": 9, - "Kind": 33, + ";": 1399, + "cat": 1, "Item": 31, - "lin": 28, + "Kind": 33, + "Quality": 34, + "fun": 1, "Pred": 30, - "item": 36, - "quality": 90, - "ss": 13, - "item.s": 24, - "quality.s": 50, - "Q1": 5, - "item.g": 12, - "item.n": 29, - "Ind": 14, "This": 29, "That": 29, "These": 28, "Those": 28, "Mod": 29, - "kind": 115, - "kind.g": 38, - "Def": 21, - "kind.s": 46, "Wine": 29, "Cheese": 29, "Fish": 29, "Pizza": 28, "Very": 29, - "qual": 8, - "q": 10, - "spec": 2, - "qual.s": 8, - "Q2": 3, "Fresh": 29, "Warm": 29, "Italian": 29, - "specAdj": 2, "Expensive": 29, "Delicious": 29, "Boring": 29, + "}": 580, + "Laurette": 2, + "Pretorius": 2, + "Sr": 2, + "&": 2, + "Jr": 2, + "and": 4, + "Ansu": 2, + "Berg": 2, + "concrete": 33, + "FoodsAfr": 1, + "of": 89, + "open": 23, + "Prelude": 11, + "Predef": 3, + "in": 32, + "coding": 29, + "utf8": 29, + "lincat": 28, + "s": 365, + "Str": 394, + "Number": 207, + "n": 206, + "AdjAP": 10, + "lin": 28, + "item": 36, + "quality": 90, + "item.s": 24, + "+": 480, + "quality.s": 50, + "Predic": 3, + "kind": 115, + "kind.s": 46, + "Sg": 184, + "Pl": 182, + "table": 148, + "Attr": 9, + "declNoun_e": 2, + "declNoun_aa": 2, + "declNoun_ss": 2, + "declNoun_s": 2, + "veryAdj": 2, + "regAdj": 61, + "smartAdj_e": 4, + "param": 22, + "|": 122, + "oper": 29, + "Noun": 9, + "operations": 2, + "wyn": 1, + "kaas": 1, + "vis": 1, + "pizza": 1, + "x": 74, + "let": 8, + "v": 6, + "tk": 1, + "last": 3, + "Adjective": 9, + "mkAdj": 27, + "y": 3, + "declAdj_e": 2, + "declAdj_g": 2, + "w": 15, + "init": 4, + "declAdj_oog": 2, + "i": 2, + "a": 57, + "x.s": 8, "case": 44, + "_": 68, + "FoodsAmh": 1, + "Krasimir": 1, + "Angelov": 1, + "FoodsBul": 1, + "Gender": 94, + "Masc": 67, + "Fem": 65, + "Neutr": 21, + "Agr": 3, + "ASg": 23, + "APl": 11, + "g": 132, + "qual": 8, + "item.a": 2, + "qual.s": 8, + "kind.g": 38, + "#": 14, + "path": 14, + ".": 13, + "present": 7, + "Jordi": 2, + "Saludes": 2, + "FoodsCat": 1, + "FoodsI": 6, + "with": 5, + "Syntax": 7, + "SyntaxCat": 2, + "LexFoods": 12, + "LexFoodsCat": 2, + "FoodsChi": 1, + "p": 11, + "quality.p": 2, + "kind.c": 11, + "geKind": 5, + "longQuality": 8, + "mkKind": 2, + "Katerina": 2, + "Bohmova": 2, + "FoodsCze": 1, + "ResCze": 2, + "NounPhrase": 3, + "copula": 33, + "item.n": 29, + "item.g": 12, + "det": 86, + "noun": 51, + "regnfAdj": 2, + "Femke": 1, + "Johansson": 1, + "FoodsDut": 1, + "AForm": 4, + "APred": 8, + "AAttr": 3, + "regNoun": 38, + "f": 16, + "a.s": 8, + "regadj": 6, + "adj": 38, + "noun.s": 7, "man": 10, "men": 10, - "_": 68, - "skaists": 5, - "skaista": 2, - "skaisti": 2, - "skaistas": 2, - "skaistais": 2, - "skaistaa": 2, - "skaistie": 2, - "skaistaas": 2, - "let": 8, - "skaist": 8, - "init": 4, - "a": 57, - "a.s": 8, + "wijn": 3, + "koud": 3, + "duur": 2, + "dure": 2, + "FoodsEng": 1, + "language": 2, + "en_US": 1, + "car": 6, + "cold": 4, + "Julia": 1, + "Hammar": 1, + "FoodsEpo": 1, + "SS": 6, + "ss": 13, + "d": 6, + "cn": 11, + "cn.s": 8, + "vino": 3, + "nova": 3, + "FoodsFin": 1, + "SyntaxFin": 2, + "LexFoodsFin": 2, + "../foods": 1, + "FoodsFre": 1, + "SyntaxFre": 1, + "ParadigmsFre": 1, + "Utt": 4, + "NP": 4, + "CN": 4, + "AP": 4, + "mkUtt": 4, + "mkCl": 4, + "mkNP": 16, + "this_QuantSg": 2, + "that_QuantSg": 2, + "these_QuantPl": 2, + "those_QuantPl": 2, + "mkCN": 20, + "mkAP": 28, + "very_AdA": 4, + "mkN": 46, + "masculine": 4, + "feminine": 2, + "mkA": 47, + "FoodsGer": 1, + "SyntaxGer": 2, + "LexFoodsGer": 2, + "alltenses": 3, + "Dana": 1, + "Dannells": 1, + "Licensed": 1, + "FoodsHeb": 2, + "Species": 8, + "mod": 7, + "Modified": 5, + "sp": 11, + "Indef": 6, + "Def": 21, + "T": 2, + "regAdj2": 3, + "F": 2, + "Type": 9, + "Adj": 4, + "m": 9, + "cn.mod": 2, + "cn.g": 10, + "gvina": 6, + "hagvina": 3, + "gvinot": 6, + "hagvinot": 3, + "defH": 7, + "replaceLastLetter": 7, + "adjective": 22, + "tov": 6, + "tova": 3, + "tovim": 3, + "tovot": 3, + "to": 6, + "c@": 3, + "italki": 3, + "italk": 4, + "Vikash": 1, + "Rauniyar": 1, + "FoodsHin": 2, + "regN": 15, + "lark": 8, + "ms": 4, + "mp": 4, + "acch": 6, + "incomplete": 1, + "this_Det": 2, + "that_Det": 2, + "these_Det": 2, + "those_Det": 2, + "wine_N": 7, + "pizza_N": 7, + "cheese_N": 7, + "fish_N": 8, + "fresh_A": 7, + "warm_A": 8, + "italian_A": 7, + "expensive_A": 7, + "delicious_A": 7, + "boring_A": 7, + "prelude": 2, "Martha": 1, "Dis": 1, "Brandt": 1, "FoodsIce": 1, + "Defin": 9, + "Ind": 14, "the": 7, "word": 3, "is": 6, @@ -26102,7 +26245,6 @@ "defOrInd": 2, "order": 1, "given": 1, - "adj": 38, "forms": 2, "mSg": 1, "fSg": 1, @@ -26131,37 +26273,56 @@ "": 1, "<": 10, "Predef.tk": 2, - "FoodsOri": 1, - "Aarne": 13, - "Ranta": 13, - "incomplete": 1, - "FoodsI": 6, - "Syntax": 7, - "LexFoods": 12, - "Utt": 4, - "NP": 4, - "CN": 4, - "AP": 4, - "mkUtt": 4, - "mkCl": 4, - "mkNP": 16, - "this_Det": 2, - "that_Det": 2, - "these_Det": 2, - "those_Det": 2, - "mkCN": 20, - "mkAP": 28, - "very_AdA": 4, - "wine_N": 7, - "pizza_N": 7, - "cheese_N": 7, - "fish_N": 8, - "fresh_A": 7, - "warm_A": 8, - "italian_A": 7, - "expensive_A": 7, - "delicious_A": 7, - "boring_A": 7, + "FoodsIta": 1, + "SyntaxIta": 2, + "LexFoodsIta": 2, + "../lib/src/prelude": 1, + "Zofia": 1, + "Stankiewicz": 1, + "FoodsJpn": 1, + "Style": 3, + "AdjUse": 4, + "AdjType": 4, + "quality.t": 3, + "IAdj": 4, + "Plain": 3, + "Polite": 4, + "NaAdj": 4, + "na": 1, + "adjectives": 2, + "have": 2, + "different": 1, + "as": 2, + "attributes": 1, + "predicates": 2, + "phrase": 1, + "types": 1, + "can": 1, + "form": 4, + "without": 1, + "cannot": 1, + "sakana": 6, + "chosenna": 2, + "chosen": 2, + "akai": 2, + "Inese": 1, + "Bernsone": 1, + "FoodsLav": 1, + "Q": 5, + "Q1": 5, + "q": 10, + "spec": 2, + "Q2": 3, + "specAdj": 2, + "skaists": 5, + "skaista": 2, + "skaisti": 2, + "skaistas": 2, + "skaistais": 2, + "skaistaa": 2, + "skaistie": 2, + "skaistaas": 2, + "skaist": 8, "John": 1, "J.": 1, "Camilleri": 1, @@ -26205,22 +26366,50 @@ "Sg/Pl": 1, "string": 1, "default": 1, - "to": 6, "gender": 2, "number": 2, - "Julia": 1, - "Hammar": 1, - "FoodsEpo": 1, - "regNoun": 38, - "d": 6, - "vino": 3, - "nova": 3, + "/GF/lib/src/prelude": 1, + "Nyamsuren": 1, + "Erdenebadrakh": 1, + "FoodsMon": 1, + "prefixSS": 1, + "Dinesh": 1, + "Simkhada": 1, + "FoodsNep": 1, + "adjPl": 2, + "bor": 2, + "FoodsOri": 1, + "FoodsPes": 1, + "optimize": 1, + "noexpand": 1, + "Add": 8, + "prep": 11, + "Indep": 4, + "kind.prep": 1, + "quality.prep": 1, + "at": 3, + "a.prep": 1, + "must": 1, + "be": 1, + "written": 1, + "x4": 2, + "pytzA": 3, + "pytzAy": 1, + "pytzAhA": 3, + "pr": 4, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "mrd": 8, + "tAzh": 8, + "tAzhy": 2, "Rami": 1, "Shashati": 1, "FoodsPor": 1, "mkAdjReg": 7, "QualityT": 5, - "mkAdj": 27, "bonito": 2, "bonita": 2, "bonitos": 2, @@ -26230,155 +26419,20 @@ "sozinho": 3, "sozinh": 4, "independent": 1, - "adjectives": 2, "adjUtil": 2, "util": 3, "uteis": 3, "smart": 1, "paradigm": 1, "adjcetives": 1, - "last": 3, "ItemT": 2, "KindT": 4, "num": 6, "noun.g": 3, - "noun.s": 7, "animal": 2, "animais": 2, "gen": 4, "carro": 3, - "Jordi": 2, - "Saludes": 2, - "instance": 5, - "LexFoodsCat": 2, - "SyntaxCat": 2, - "ParadigmsCat": 1, - "M": 1, - "MorphoCat": 1, - "mkN": 46, - "M.Masc": 2, - "mkA": 47, - "../lib/src/prelude": 1, - "Zofia": 1, - "Stankiewicz": 1, - "FoodsJpn": 1, - "Style": 3, - "AdjUse": 4, - "AdjType": 4, - "quality.t": 3, - "IAdj": 4, - "Plain": 3, - "APred": 8, - "Polite": 4, - "NaAdj": 4, - "p": 11, - "Attr": 9, - "na": 1, - "have": 2, - "different": 1, - "as": 2, - "attributes": 1, - "and": 4, - "predicates": 2, - "phrase": 1, - "types": 1, - "can": 1, - "form": 4, - "without": 1, - "cannot": 1, - "sakana": 6, - "chosenna": 2, - "chosen": 2, - "akai": 2, - "LexFoodsFin": 2, - "SyntaxFin": 2, - "ParadigmsFin": 1, - "Krasimir": 1, - "Angelov": 1, - "FoodsBul": 1, - "Agr": 3, - "ASg": 23, - "APl": 11, - "item.a": 2, - "present": 7, - "FoodsIta": 1, - "with": 5, - "SyntaxIta": 2, - "LexFoodsIta": 2, - "alltenses": 3, - "Laurette": 2, - "Pretorius": 2, - "Sr": 2, - "&": 2, - "Jr": 2, - "Ansu": 2, - "Berg": 2, - "FoodsTsn": 1, - "Predef": 3, - "NounClass": 28, - "w": 15, - "r": 9, - "b": 9, - "Bool": 5, - "p_form": 18, - "TType": 16, - "mkPredDescrCop": 2, - "item.c": 1, - "quality.p_form": 1, - "kind.w": 4, - "mkDemPron1": 3, - "kind.c": 11, - "kind.q": 4, - "mkDemPron2": 3, - "mkMod": 2, - "Lexicon": 1, - "mkNounNC14_6": 2, - "mkNounNC9_10": 4, - "smartVery": 2, - "mkVarAdj": 2, - "mkOrdAdj": 4, - "mkPerAdj": 2, - "mkVerbRel": 2, - "NC9_10": 14, - "NC14_6": 14, - "P": 4, - "V": 4, - "ModV": 4, - "R": 4, - "x": 74, - "y": 3, - "y.b": 1, - "True": 3, - "y.w": 2, - "y.r": 2, - "y.c": 14, - "y.q": 4, - "smartQualRelPart": 5, - "x.t": 10, - "smartDescrCop": 5, - "x.s": 8, - "False": 3, - "mkVeryAdj": 2, - "x.p_form": 2, - "mkVeryVerb": 3, - "mkQualRelPart_PName": 2, - "mkQualRelPart": 2, - "mkDescrCop_PName": 2, - "mkDescrCop": 2, - "LexFoodsSwe": 2, - "SyntaxSwe": 2, - "ParadigmsSwe": 1, - "FoodsAmh": 1, - "../foods": 1, - "FoodsFre": 1, - "SyntaxFre": 1, - "ParadigmsFre": 1, - "this_QuantSg": 2, - "that_QuantSg": 2, - "these_QuantPl": 2, - "those_QuantPl": 2, - "masculine": 4, - "feminine": 2, "Ramona": 1, "Enache": 1, "FoodsRon": 1, @@ -26395,7 +26449,6 @@ "det.s": 1, "peste": 2, "pesti": 2, - "x4": 2, "scump": 2, "scumpa": 2, "scumpi": 2, @@ -26411,43 +26464,67 @@ "": 1, "": 1, "": 1, - "FoodsChi": 1, - "quality.p": 2, - "geKind": 5, - "longQuality": 8, - "mkKind": 2, - "FoodsAfr": 1, - "AdjAP": 10, - "Predic": 3, - "declNoun_e": 2, - "declNoun_aa": 2, - "declNoun_ss": 2, - "declNoun_s": 2, - "veryAdj": 2, - "smartAdj_e": 4, - "operations": 2, - "wyn": 1, - "kaas": 1, - "vis": 1, - "pizza": 1, - "v": 6, - "tk": 1, - "declAdj_e": 2, - "declAdj_g": 2, - "declAdj_oog": 2, - "i": 2, - "Shafqat": 1, - "Virk": 1, - "FoodsUrd": 1, - "coupla": 2, - "FoodsCat": 1, - "Dinesh": 1, - "Simkhada": 1, - "FoodsNep": 1, - "adjPl": 2, - "car": 6, - "bor": 2, - "cold": 4, + "FoodsSpa": 1, + "SyntaxSpa": 1, + "StructuralSpa": 1, + "ParadigmsSpa": 1, + "FoodsSwe": 1, + "SyntaxSwe": 2, + "LexFoodsSwe": 2, + "**": 1, + "sv_SE": 1, + "FoodsTha": 1, + "SyntaxTha": 1, + "LexiconTha": 1, + "ParadigmsTha": 1, + "R": 4, + "ResTha": 1, + "R.thword": 4, + "FoodsTsn": 1, + "NounClass": 28, + "r": 9, + "b": 9, + "Bool": 5, + "p_form": 18, + "TType": 16, + "mkPredDescrCop": 2, + "item.c": 1, + "quality.p_form": 1, + "kind.w": 4, + "mkDemPron1": 3, + "kind.q": 4, + "mkDemPron2": 3, + "mkMod": 2, + "Lexicon": 1, + "mkNounNC14_6": 2, + "mkNounNC9_10": 4, + "smartVery": 2, + "mkVarAdj": 2, + "mkOrdAdj": 4, + "mkPerAdj": 2, + "mkVerbRel": 2, + "NC9_10": 14, + "NC14_6": 14, + "P": 4, + "V": 4, + "ModV": 4, + "y.b": 1, + "True": 3, + "y.w": 2, + "y.r": 2, + "y.c": 14, + "y.q": 4, + "smartQualRelPart": 5, + "x.t": 10, + "smartDescrCop": 5, + "False": 3, + "mkVeryAdj": 2, + "x.p_form": 2, + "mkVeryVerb": 3, + "mkQualRelPart_PName": 2, + "mkQualRelPart": 2, + "mkDescrCop_PName": 2, + "mkDescrCop": 2, "FoodsTur": 1, "Case": 10, "softness": 4, @@ -26509,120 +26586,41 @@ "getHarmony": 2, "See": 1, "comment": 1, - "at": 3, "lines": 1, "excluded": 1, "copula.": 1, "base": 4, - "c@": 3, "*": 1, + "Shafqat": 1, + "Virk": 1, + "FoodsUrd": 1, + "coupla": 2, "interface": 1, "N": 4, "A": 6, - "FoodsPes": 1, - "optimize": 1, - "noexpand": 1, - "Add": 8, - "prep": 11, - "Indep": 4, - "kind.prep": 1, - "quality.prep": 1, - "regN": 15, - "a.prep": 1, - "must": 1, - "be": 1, - "written": 1, - "pytzA": 3, - "pytzAy": 1, - "pytzAhA": 3, - "pr": 4, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "mrd": 8, - "tAzh": 8, - "tAzhy": 2, - "ParadigmsIta": 1, - "Vikash": 1, - "Rauniyar": 1, - "FoodsHin": 2, - "lark": 8, - "ms": 4, - "mp": 4, - "acch": 6, - "FoodsSwe": 1, - "**": 1, - "language": 2, - "sv_SE": 1, - "FoodsCze": 1, - "abstract": 1, - "startcat": 1, - "cat": 1, - "fun": 1, - "FoodsFin": 1, - "Femke": 1, - "Johansson": 1, - "FoodsDut": 1, - "AForm": 4, - "AAttr": 3, - "regadj": 6, - "wijn": 3, - "koud": 3, - "duur": 2, - "dure": 2, - "/GF/lib/src/prelude": 1, - "Nyamsuren": 1, - "Erdenebadrakh": 1, - "FoodsMon": 1, - "prefixSS": 1, - "Dana": 1, - "Dannells": 1, - "Licensed": 1, - "FoodsHeb": 2, - "Species": 8, - "mod": 7, - "Modified": 5, - "sp": 11, - "Indef": 6, - "T": 2, - "regAdj2": 3, - "F": 2, - "Adj": 4, - "cn.mod": 2, - "gvina": 6, - "hagvina": 3, - "gvinot": 6, - "hagvinot": 3, - "defH": 7, - "replaceLastLetter": 7, - "tov": 6, - "tova": 3, - "tovim": 3, - "tovot": 3, - "italki": 3, - "italk": 4, - "FoodsTha": 1, - "SyntaxTha": 1, - "LexiconTha": 1, - "ParadigmsTha": 1, - "ResTha": 1, - "R.thword": 4, - "FoodsGer": 1, - "SyntaxGer": 2, - "LexFoodsGer": 2, - "FoodsSpa": 1, - "SyntaxSpa": 1, - "StructuralSpa": 1, - "ParadigmsSpa": 1, + "instance": 5, + "ParadigmsCat": 1, + "M": 1, + "MorphoCat": 1, + "M.Masc": 2, + "ParadigmsFin": 1, "ParadigmsGer": 1, - "FoodsEng": 1, - "en_US": 1 + "ParadigmsIta": 1, + "ParadigmsSwe": 1, + "resource": 1, + "ne": 2, + "muz": 2, + "muzi": 2, + "msg": 3, + "fsg": 3, + "nsg": 3, + "mpl": 3, + "fpl": 3, + "npl": 3, + "mlad": 7, + "vynikajici": 7 }, "Groovy": { - "SHEBANG#!groovy": 2, - "println": 3, "task": 1, "echoDirListViaAntBuilder": 1, "(": 7, @@ -26666,8 +26664,10 @@ "CWD": 1, "projectDir": 1, "removed.": 1, + "println": 3, "it.toString": 1, "-": 1, + "SHEBANG#!groovy": 2, "html": 3, "head": 2, "component": 1, @@ -26676,18 +26676,32 @@ "p": 1 }, "Groovy Server Pages": { + "": 4, + "": 4, + "": 4, + "http": 3, + "equiv=": 3, + "content=": 4, + "": 4, + "Testing": 3, + "with": 3, + "SiteMesh": 2, + "and": 2, + "Resources": 2, + "": 4, + "name=": 1, + "": 2, + "module=": 2, + "": 4, + "": 4, + "": 4, + "": 4, "<%@>": 1, "page": 2, "contentType=": 1, - "": 4, - "": 4, - "": 4, "Using": 1, "directive": 1, "tag": 1, - "": 4, - "": 4, - "": 4, "

": 2, "class=": 2, "": 2, @@ -26698,118 +26712,43 @@ "": 2, "
": 2, "Print": 1, - "": 4, - "": 4, - "": 4, - "http": 3, - "equiv=": 3, - "content=": 4, - "Testing": 3, - "with": 3, - "SiteMesh": 2, - "and": 2, "{": 1, "example": 1, - "}": 1, - "Resources": 2, - "": 2, - "module=": 2, - "name=": 1 + "}": 1 }, "HTML": { "": 2, - "html": 1, + "HTML": 2, "PUBLIC": 2, "W3C": 2, "DTD": 3, - "XHTML": 1, - "1": 1, + "4": 1, "0": 2, - "Transitional": 1, + "Frameset": 1, "EN": 2, "http": 3, "www": 2, "w3": 2, "org": 2, "TR": 2, - "xhtml1": 2, - "transitional": 1, - "dtd": 2, - "": 2, - "xmlns=": 1, - "": 2, - "": 1, - "equiv=": 1, - "content=": 1, - "": 2, - "Related": 2, - "Pages": 2, - "": 2, - "": 1, - "href=": 9, - "rel=": 1, - "type=": 1, - "": 1, - "": 2, - "
": 10, - "class=": 22, - "": 8, - "Main": 1, - "Page": 1, - "": 8, - "&": 3, - "middot": 3, - ";": 3, - "Class": 2, - "Overview": 2, - "Hierarchy": 1, - "All": 1, - "Classes": 1, - "
": 11, - "Here": 1, - "is": 1, - "a": 4, - "list": 1, - "of": 5, - "all": 1, - "related": 1, - "documentation": 1, - "pages": 1, - "": 1, - "": 2, - "id=": 2, - "": 4, - "": 2, - "16": 1, - "The": 2, - "Layout": 1, - "System": 1, - "
": 4, - "": 2, - "src=": 2, - "alt=": 2, - "width=": 1, - "height=": 2, - "target=": 3, - "
": 1, - "Generated": 1, - "with": 1, - "Doxygen": 1, - "": 2, - "": 2, - "HTML": 2, - "4": 1, - "Frameset": 1, "REC": 1, "html40": 1, "frameset": 1, + "dtd": 2, + "": 2, + "": 2, "Common_meta": 1, "(": 14, ")": 14, + "": 2, "Android": 5, "API": 7, "Differences": 2, "Report": 2, + "": 2, + "": 2, + "
": 10, + "class=": 22, "Header": 1, "

": 1, "

": 1, @@ -26839,14 +26778,17 @@ "an": 3, "change": 2, "includes": 1, + "a": 4, "brief": 1, "description": 1, + "of": 5, "explanation": 1, "suggested": 1, "workaround": 1, "where": 1, "available.": 1, "

": 3, + "The": 2, "differences": 2, "described": 1, "this": 2, @@ -26882,8 +26824,12 @@ "about": 1, "SDK": 1, "see": 1, + "": 8, + "href=": 9, + "target=": 3, "product": 1, "site": 1, + "": 8, ".": 1, "if": 4, "no_delta": 1, @@ -26912,7 +26858,61 @@ "PackageAddedLink": 1, "SimpleTableRow": 2, "changed_packages": 2, - "PackageChangedLink": 1 + "PackageChangedLink": 1, + "
": 11, + "": 2, + "": 2, + "html": 1, + "XHTML": 1, + "1": 1, + "Transitional": 1, + "xhtml1": 2, + "transitional": 1, + "xmlns=": 1, + "": 1, + "equiv=": 1, + "content=": 1, + "Related": 2, + "Pages": 2, + "": 1, + "rel=": 1, + "type=": 1, + "": 1, + "Main": 1, + "Page": 1, + "&": 3, + "middot": 3, + ";": 3, + "Class": 2, + "Overview": 2, + "Hierarchy": 1, + "All": 1, + "Classes": 1, + "Here": 1, + "is": 1, + "list": 1, + "all": 1, + "related": 1, + "documentation": 1, + "pages": 1, + "": 1, + "": 2, + "id=": 2, + "": 4, + "": 2, + "16": 1, + "Layout": 1, + "System": 1, + "
": 4, + "": 2, + "src=": 2, + "alt=": 2, + "width=": 1, + "height=": 2, + "
": 1, + "Generated": 1, + "with": 1, + "Doxygen": 1 }, "Haml": { "%": 1, @@ -26924,21 +26924,21 @@ "
": 5, "class=": 5, "

": 3, - "By": 2, "{": 16, - "fullName": 2, - "author": 2, + "title": 1, "}": 16, "

": 3, "body": 3, "
": 5, + "By": 2, + "fullName": 2, + "author": 2, "Comments": 1, "#each": 1, "comments": 1, "

": 1, "

": 1, - "/each": 1, - "title": 1 + "/each": 1 }, "Haskell": { "import": 6, @@ -26954,21 +26954,24 @@ "map": 13, "toUpper": 1, "module": 2, + "Main": 1, + "where": 4, "Sudoku": 9, + "Data.Maybe": 2, + "sudoku": 36, + "[": 4, + "]": 3, + "pPrint": 5, + "+": 2, + "fromMaybe": 1, "solve": 5, "isSolved": 4, - "pPrint": 5, - "where": 4, - "Data.Maybe": 2, "Data.List": 1, "Data.List.Split": 1, "type": 1, - "[": 4, "Int": 1, - "]": 3, "-": 3, "Maybe": 1, - "sudoku": 36, "|": 8, "Just": 1, "otherwise": 2, @@ -27014,10 +27017,7 @@ "True": 1, "String": 1, "intercalate": 2, - "show": 1, - "Main": 1, - "+": 2, - "fromMaybe": 1 + "show": 1 }, "Hy": { ";": 4, @@ -27123,12 +27123,26 @@ "return": 5, "alog": 1, "end": 5, + "MODULE": 1, + "mg_analysis": 1, + "DESCRIPTION": 1, + "Tools": 1, + "for": 2, + "analysis": 1, + "VERSION": 1, + "SOURCE": 1, + "mgalloy": 1, + "BUILD_DATE": 1, + "January": 1, + "FUNCTION": 2, + "MG_ARRAY_EQUAL": 1, + "KEYWORDS": 1, + "MG_TOTAL": 1, "Find": 1, "greatest": 1, "common": 1, "denominator": 1, "GCD": 1, - "for": 2, "two": 1, "positive": 2, "integers.": 1, @@ -27197,36 +27211,16 @@ "gt": 2, "nposInd": 2, "L": 1, - "example": 1, - "MODULE": 1, - "mg_analysis": 1, - "DESCRIPTION": 1, - "Tools": 1, - "analysis": 1, - "VERSION": 1, - "SOURCE": 1, - "mgalloy": 1, - "BUILD_DATE": 1, - "January": 1, - "FUNCTION": 2, - "MG_ARRAY_EQUAL": 1, - "KEYWORDS": 1, - "MG_TOTAL": 1 + "example": 1 }, "INI": { - "[": 2, - "user": 1, - "]": 2, - "name": 1, - "Josh": 1, - "Peek": 1, - "email": 1, - "josh@github.com": 1, ";": 1, "editorconfig.org": 1, "root": 1, "true": 3, + "[": 2, "*": 1, + "]": 2, "indent_style": 1, "space": 1, "indent_size": 1, @@ -27236,7 +27230,13 @@ "utf": 1, "-": 1, "trim_trailing_whitespace": 1, - "insert_final_newline": 1 + "insert_final_newline": 1, + "user": 1, + "name": 1, + "Josh": 1, + "Peek": 1, + "email": 1, + "josh@github.com": 1 }, "Idris": { "module": 1, @@ -27416,34 +27416,13 @@ }, "JSON": { "{": 73, - "}": 73, "[": 17, "]": 17, + "}": 73, "true": 3 }, "JSON5": { "{": 6, - "name": 1, - "version": 1, - "description": 1, - "keywords": 1, - "[": 3, - "]": 3, - "author": 1, - "contributors": 1, - "main": 1, - "bin": 1, - "dependencies": 1, - "}": 6, - "devDependencies": 1, - "mocha": 1, - "scripts": 1, - "build": 1, - "test": 1, - "homepage": 1, - "repository": 1, - "type": 1, - "url": 1, "foo": 1, "while": 1, "true": 1, @@ -27463,7 +27442,28 @@ "and": 1, "beyond": 1, "finally": 1, - "oh": 1 + "oh": 1, + "[": 3, + "]": 3, + "}": 6, + "name": 1, + "version": 1, + "description": 1, + "keywords": 1, + "author": 1, + "contributors": 1, + "main": 1, + "bin": 1, + "dependencies": 1, + "devDependencies": 1, + "mocha": 1, + "scripts": 1, + "build": 1, + "test": 1, + "homepage": 1, + "repository": 1, + "type": 1, + "url": 1 }, "JSONLD": { "{": 7, @@ -27530,49 +27530,548 @@ }, "Java": { "package": 6, - "nokogiri": 6, + "clojure.asm": 1, ";": 891, "import": 66, - "java.util.Collections": 2, - "java.util.HashMap": 1, + "java.lang.reflect.Constructor": 1, + "java.lang.reflect.Method": 1, + "public": 214, + "class": 12, + "Type": 42, + "{": 434, + "final": 78, + "static": 141, + "int": 62, + "VOID": 5, + "BOOLEAN": 6, + "CHAR": 6, + "BYTE": 6, + "SHORT": 6, + "INT": 6, + "FLOAT": 6, + "LONG": 7, + "DOUBLE": 7, + "ARRAY": 6, + "OBJECT": 7, + "VOID_TYPE": 3, + "new": 131, + "(": 1097, + ")": 1097, + "BOOLEAN_TYPE": 3, + "CHAR_TYPE": 3, + "BYTE_TYPE": 3, + "SHORT_TYPE": 3, + "INT_TYPE": 3, + "FLOAT_TYPE": 3, + "LONG_TYPE": 3, + "DOUBLE_TYPE": 3, + "private": 77, + "sort": 18, + "char": 13, + "[": 54, + "]": 54, + "buf": 43, + "off": 25, + "len": 24, + "this.sort": 2, + "this.len": 2, + "}": 434, + "this.buf": 2, + "this.off": 1, + "getType": 10, + "String": 33, + "typeDescriptor": 1, + "return": 267, + "typeDescriptor.toCharArray": 1, + "Class": 10, + "c": 21, + "if": 116, + "c.isPrimitive": 2, + "Integer.TYPE": 2, + "else": 33, + "Void.TYPE": 3, + "Boolean.TYPE": 2, + "Byte.TYPE": 2, + "Character.TYPE": 2, + "Short.TYPE": 2, + "Double.TYPE": 2, + "Float.TYPE": 2, + "getDescriptor": 15, + "getObjectType": 1, + "name": 10, + "l": 5, + "name.length": 2, + "+": 83, + "name.getChars": 1, + "getArgumentTypes": 2, + "methodDescriptor": 2, + "methodDescriptor.toCharArray": 2, + "size": 16, + "while": 10, + "true": 21, + "car": 18, + "break": 4, + "args": 6, + ".len": 1, + "Method": 3, + "method": 2, + "classes": 2, + "method.getParameterTypes": 1, + "types": 3, + "classes.length": 2, + "for": 16, + "i": 54, + "-": 15, + "getReturnType": 2, + "methodDescriptor.indexOf": 1, + "method.getReturnType": 1, + "switch": 6, + "case": 56, + "//": 16, + "default": 6, + "getSort": 1, + "getDimensions": 3, + "getElementType": 2, + "getClassName": 1, + "StringBuffer": 14, + "b": 7, + ".getClassName": 1, + "b.append": 1, + "b.toString": 1, + ".replace": 2, + "getInternalName": 2, + "buf.toString": 4, + "getMethodDescriptor": 2, + "returnType": 1, + "argumentTypes": 2, + "buf.append": 21, + "<": 13, + "argumentTypes.length": 1, + ".getDescriptor": 1, + "returnType.getDescriptor": 1, + "void": 25, + "c.getName": 1, + "getConstructorDescriptor": 1, + "Constructor": 1, + "parameters": 4, + "c.getParameterTypes": 1, + "parameters.length": 2, + ".toString": 1, + "m": 1, + "m.getParameterTypes": 1, + "m.getReturnType": 1, + "d": 10, + "d.isPrimitive": 1, + "d.isArray": 1, + "d.getComponentType": 1, + "d.getName": 1, + "name.charAt": 1, + "getSize": 1, + "||": 8, + "getOpcode": 1, + "opcode": 17, + "Opcodes.IALOAD": 1, + "Opcodes.IASTORE": 1, + "boolean": 36, + "equals": 2, + "Object": 31, + "o": 12, + "this": 16, + "instanceof": 19, + "false": 12, + "t": 6, + "t.sort": 1, + "Type.OBJECT": 2, + "Type.ARRAY": 2, + "t.len": 1, + "j": 9, + "t.off": 1, + "end": 4, + "t.buf": 1, + "hashCode": 1, + "hc": 4, + "*": 2, + "toString": 1, + "clojure.lang": 1, + "java.lang.ref.Reference": 1, + "java.math.BigInteger": 1, "java.util.Map": 3, + "java.util.concurrent.ConcurrentHashMap": 1, + "java.lang.ref.SoftReference": 1, + "java.lang.ref.ReferenceQueue": 1, + "Util": 1, + "equiv": 17, + "k1": 40, + "k2": 38, + "null": 80, + "Number": 9, + "&&": 6, + "Numbers.equal": 1, + "IPersistentCollection": 5, + "pcequiv": 2, + "k1.equals": 2, + "long": 5, + "double": 4, + "c1": 2, + "c2": 2, + ".equiv": 2, + "identical": 1, + "classOf": 1, + "x": 8, + "x.getClass": 1, + "compare": 1, + "Numbers.compare": 1, + "Comparable": 1, + ".compareTo": 1, + "hash": 3, + "o.hashCode": 2, + "hasheq": 1, + "Numbers.hasheq": 1, + "IHashEq": 2, + ".hasheq": 1, + "hashCombine": 1, + "seed": 5, + "//a": 1, + "la": 1, + "boost": 1, + "e3779b9": 1, + "<<": 1, + "isPrimitive": 1, + "isInteger": 1, + "Integer": 2, + "Long": 1, + "BigInt": 1, + "BigInteger": 1, + "ret1": 2, + "ret": 4, + "nil": 2, + "ISeq": 2, + "": 1, + "clearCache": 1, + "ReferenceQueue": 1, + "rq": 1, + "ConcurrentHashMap": 1, + "K": 2, + "Reference": 3, + "": 3, + "cache": 1, + "//cleanup": 1, + "any": 1, + "dead": 1, + "entries": 1, + "rq.poll": 2, + "Map.Entry": 1, + "e": 31, + "cache.entrySet": 1, + "val": 3, + "e.getValue": 1, + "val.get": 1, + "cache.remove": 1, + "e.getKey": 1, + "RuntimeException": 5, + "runtimeException": 2, + "s": 10, + "Throwable": 4, + "sneakyThrow": 1, + "throw": 9, + "NullPointerException": 3, + "Util.": 1, + "": 1, + "sneakyThrow0": 2, + "@SuppressWarnings": 1, + "": 1, + "extends": 10, + "throws": 26, + "T": 2, + "nokogiri.internals": 1, + "nokogiri.internals.NokogiriHelpers.getNokogiriClass": 1, + "nokogiri.internals.NokogiriHelpers.isNamespace": 1, + "nokogiri.internals.NokogiriHelpers.stringOrNil": 1, + "nokogiri.HtmlDocument": 1, + "nokogiri.NokogiriService": 1, + "nokogiri.XmlDocument": 1, + "org.apache.xerces.parsers.DOMParser": 1, + "org.apache.xerces.xni.Augmentations": 1, + "org.apache.xerces.xni.QName": 1, + "org.apache.xerces.xni.XMLAttributes": 1, + "org.apache.xerces.xni.XNIException": 1, + "org.apache.xerces.xni.parser.XMLDocumentFilter": 1, + "org.apache.xerces.xni.parser.XMLParserConfiguration": 1, + "org.cyberneko.html.HTMLConfiguration": 1, + "org.cyberneko.html.filters.DefaultFilter": 1, "org.jruby.Ruby": 2, - "org.jruby.RubyArray": 1, "org.jruby.RubyClass": 2, + "org.jruby.runtime.ThreadContext": 1, + "org.jruby.runtime.builtin.IRubyObject": 2, + "org.w3c.dom.Document": 1, + "org.w3c.dom.NamedNodeMap": 1, + "org.w3c.dom.NodeList": 1, + "HtmlDomParserContext": 3, + "XmlDomParserContext": 1, + "Ruby": 43, + "runtime": 88, + "IRubyObject": 35, + "options": 4, + "super": 7, + "encoding": 2, + "@Override": 6, + "protected": 8, + "initErrorHandler": 1, + "options.strict": 1, + "errorHandler": 6, + "NokogiriStrictErrorHandler": 1, + "options.noError": 2, + "options.noWarning": 2, + "NokogiriNonStrictErrorHandler4NekoHtml": 1, + "initParser": 1, + "XMLParserConfiguration": 1, + "config": 2, + "HTMLConfiguration": 1, + "XMLDocumentFilter": 3, + "removeNSAttrsFilter": 2, + "RemoveNSAttrsFilter": 2, + "elementValidityCheckFilter": 3, + "ElementValidityCheckFilter": 3, + "//XMLDocumentFilter": 1, + "filters": 3, + "config.setErrorHandler": 1, + "this.errorHandler": 2, + "parser": 1, + "DOMParser": 1, + "setProperty": 4, + "java_encoding": 2, + "setFeature": 4, + "enableDocumentFragment": 1, + "XmlDocument": 8, + "getNewEmptyDocument": 1, + "ThreadContext": 2, + "context": 8, + "XmlDocument.rbNew": 1, + "getNokogiriClass": 1, + "context.getRuntime": 3, + "wrapDocument": 1, + "RubyClass": 92, + "klazz": 107, + "Document": 2, + "document": 5, + "HtmlDocument": 7, + "htmlDocument": 6, + "NokogiriService.HTML_DOCUMENT_ALLOCATOR.allocate": 1, + "htmlDocument.setDocumentNode": 1, + "ruby_encoding.isNil": 1, + "detected_encoding": 2, + "detected_encoding.isNil": 1, + "ruby_encoding": 3, + "charset": 2, + "tryGetCharsetFromHtml5MetaTag": 2, + "stringOrNil": 1, + "htmlDocument.setEncoding": 1, + "htmlDocument.setParsedEncoding": 1, + ".equalsIgnoreCase": 5, + "document.getDocumentElement": 2, + ".getNodeName": 4, + "NodeList": 2, + "list": 1, + ".getChildNodes": 2, + "list.getLength": 1, + "list.item": 2, + "headers": 1, + "headers.getLength": 1, + "headers.item": 2, + "NamedNodeMap": 1, + "nodeMap": 1, + ".getAttributes": 1, + "k": 5, + "nodeMap.getLength": 1, + "nodeMap.item": 2, + ".getNodeValue": 1, + "DefaultFilter": 2, + "startElement": 2, + "QName": 2, + "element": 3, + "XMLAttributes": 2, + "attrs": 4, + "Augmentations": 2, + "augs": 4, + "XNIException": 2, + "attrs.getLength": 1, + "isNamespace": 1, + "attrs.getQName": 1, + "attrs.removeAttributeAt": 1, + "element.uri": 1, + "super.startElement": 2, + "NokogiriErrorHandler": 2, + "element_names": 3, + "g": 1, + "r": 1, + "w": 1, + "y": 1, + "z": 1, + "isValid": 2, + "testee": 1, + "testee.toCharArray": 1, + "index": 4, + ".length": 1, + "testee.equals": 1, + "name.rawname": 2, + "errorHandler.getErrors": 1, + ".add": 1, + "Exception": 1, + "hudson.model": 1, + "hudson.ExtensionListView": 1, + "hudson.Functions": 1, + "hudson.Platform": 1, + "hudson.PluginManager": 1, + "hudson.cli.declarative.CLIResolver": 1, + "hudson.model.listeners.ItemListener": 1, + "hudson.slaves.ComputerListener": 1, + "hudson.util.CopyOnWriteList": 1, + "hudson.util.FormValidation": 1, + "jenkins.model.Jenkins": 1, + "org.jvnet.hudson.reactor.ReactorException": 1, + "org.kohsuke.stapler.QueryParameter": 1, + "org.kohsuke.stapler.Stapler": 1, + "org.kohsuke.stapler.StaplerRequest": 1, + "org.kohsuke.stapler.StaplerResponse": 1, + "javax.servlet.ServletContext": 1, + "javax.servlet.ServletException": 1, + "java.io.File": 1, + "java.io.IOException": 10, + "java.text.NumberFormat": 1, + "java.text.ParseException": 1, + "java.util.Collections": 2, + "java.util.List": 1, + "hudson.Util.fixEmpty": 1, + "Hudson": 5, + "Jenkins": 2, + "transient": 2, + "CopyOnWriteList": 4, + "": 2, + "itemListeners": 2, + "ExtensionListView.createCopyOnWriteList": 2, + "ItemListener.class": 1, + "": 2, + "computerListeners": 2, + "ComputerListener.class": 1, + "@CLIResolver": 1, + "getInstance": 2, + "Jenkins.getInstance": 2, + "File": 2, + "root": 6, + "ServletContext": 2, + "IOException": 8, + "InterruptedException": 2, + "ReactorException": 2, + "PluginManager": 1, + "pluginManager": 2, + "getJobListeners": 1, + "getComputerListeners": 1, + "Slave": 3, + "getSlave": 1, + "Node": 1, + "n": 3, + "getNode": 1, + "List": 3, + "": 2, + "getSlaves": 1, + "slaves": 3, + "setSlaves": 1, + "setNodes": 1, + "TopLevelItem": 3, + "getJob": 1, + "getItem": 1, + "getJobCaseInsensitive": 1, + "match": 2, + "Functions.toEmailSafeString": 2, + "item": 2, + "getItems": 1, + "item.getName": 1, + "synchronized": 1, + "doQuietDown": 2, + "StaplerResponse": 4, + "rsp": 6, + "ServletException": 3, + ".generateResponse": 2, + "doLogRss": 1, + "StaplerRequest": 4, + "req": 6, + "qs": 3, + "req.getQueryString": 1, + "rsp.sendRedirect2": 1, + "doFieldCheck": 3, + "fixEmpty": 8, + "req.getParameter": 4, + "FormValidation": 2, + "@QueryParameter": 4, + "value": 11, + "type": 3, + "errorText": 3, + "warningText": 3, + "FormValidation.error": 4, + "FormValidation.warning": 1, + "try": 26, + "type.equalsIgnoreCase": 2, + "NumberFormat.getInstance": 2, + ".parse": 2, + ".floatValue": 1, + "<=>": 1, + "0": 1, + "error": 1, + "Messages": 1, + "Hudson_NotAPositiveNumber": 1, + "equalsIgnoreCase": 1, + "number": 1, + "negative": 1, + "NumberFormat": 1, + "parse": 1, + "floatValue": 1, + "Messages.Hudson_NotANegativeNumber": 1, + "catch": 27, + "ParseException": 1, + "Messages.Hudson_NotANumber": 1, + "FormValidation.ok": 1, + "isWindows": 1, + "File.pathSeparatorChar": 1, + "isDarwin": 1, + "Platform.isDarwin": 1, + "adminCheck": 3, + "Stapler.getCurrentRequest": 1, + "Stapler.getCurrentResponse": 1, + "isAdmin": 4, + "rsp.sendError": 1, + "StaplerResponse.SC_FORBIDDEN": 1, + ".getACL": 1, + ".hasPermission": 1, + "ADMINISTER": 1, + "XSTREAM.alias": 1, + "Hudson.class": 1, + "MasterComputer": 1, + "Jenkins.MasterComputer": 1, + "CloudList": 3, + "Jenkins.CloudList": 1, + "h": 2, + "needed": 1, + "XStream": 1, + "deserialization": 1, + "nokogiri": 6, + "java.util.HashMap": 1, + "org.jruby.RubyArray": 1, "org.jruby.RubyFixnum": 1, "org.jruby.RubyModule": 1, "org.jruby.runtime.ObjectAllocator": 1, - "org.jruby.runtime.builtin.IRubyObject": 2, "org.jruby.runtime.load.BasicLibraryService": 1, - "public": 214, - "class": 12, "NokogiriService": 1, "implements": 3, "BasicLibraryService": 1, - "{": 434, - "static": 141, - "final": 78, - "String": 33, "nokogiriClassCacheGvarName": 1, "Map": 1, "": 2, - "RubyClass": 92, "nokogiriClassCache": 2, - "boolean": 36, "basicLoad": 1, - "(": 1097, - "Ruby": 43, "ruby": 25, - ")": 1097, "init": 2, "createNokogiriClassCahce": 2, - "return": 267, - "true": 21, - "}": 434, - "private": 77, - "void": 25, "Collections.synchronizedMap": 1, - "new": 131, "HashMap": 1, "nokogiriClassCache.put": 26, "ruby.getClassFromPath": 26, @@ -27621,7 +28120,6 @@ "attrDecl.defineAnnotatedMethods": 1, "XmlAttributeDecl.class": 1, "characterData": 3, - "null": 80, "comment": 1, "XML_COMMENT_ALLOCATOR": 2, "comment.defineAnnotatedMethods": 1, @@ -27642,7 +28140,6 @@ "XML_DOCUMENT_FRAGMENT_ALLOCATOR": 2, "documentFragment.defineAnnotatedMethods": 1, "XmlDocumentFragment.class": 1, - "element": 3, "XML_ELEMENT_ALLOCATOR": 2, "element.defineAnnotatedMethods": 1, "XmlElement.class": 1, @@ -27714,8 +28211,6 @@ "//RubyModule": 1, "htmlDoc": 1, "html.defineOrGetClassUnder": 1, - "document": 5, - "htmlDocument": 6, "HTML_DOCUMENT_ALLOCATOR": 2, "htmlDocument.defineAnnotatedMethods": 1, "HtmlDocument.class": 1, @@ -27740,20 +28235,12 @@ "XsltStylesheet.class": 2, "xsltModule.defineAnnotatedMethod": 1, "ObjectAllocator": 60, - "IRubyObject": 35, "allocate": 30, - "runtime": 88, - "klazz": 107, "EncodingHandler": 1, - "HtmlDocument": 7, - "if": 116, - "try": 26, "clone": 47, "htmlDocument.clone": 1, "clone.setMetaClass": 23, - "catch": 27, "CloneNotSupportedException": 23, - "e": 31, "HtmlSaxParserContext": 5, "htmlSaxParserContext.clone": 1, "HtmlElementDescription": 1, @@ -27767,7 +28254,6 @@ "XmlComment": 5, "xmlComment": 3, "xmlComment.clone": 1, - "XmlDocument": 8, "xmlDocument.clone": 1, "XmlDocumentFragment": 5, "xmlDocumentFragment": 3, @@ -27802,7 +28288,6 @@ "xmlReader.clone": 1, "XmlAttributeDecl": 1, "XmlEntityDecl": 1, - "throw": 9, "runtime.newNotImplementedError": 1, "XmlRelaxng": 5, "xmlRelaxng": 3, @@ -27824,491 +28309,6 @@ "XsltStylesheet": 4, "xsltStylesheet": 3, "xsltStylesheet.clone": 1, - "clojure.asm": 1, - "java.lang.reflect.Constructor": 1, - "java.lang.reflect.Method": 1, - "Type": 42, - "int": 62, - "VOID": 5, - "BOOLEAN": 6, - "CHAR": 6, - "BYTE": 6, - "SHORT": 6, - "INT": 6, - "FLOAT": 6, - "LONG": 7, - "DOUBLE": 7, - "ARRAY": 6, - "OBJECT": 7, - "VOID_TYPE": 3, - "BOOLEAN_TYPE": 3, - "CHAR_TYPE": 3, - "BYTE_TYPE": 3, - "SHORT_TYPE": 3, - "INT_TYPE": 3, - "FLOAT_TYPE": 3, - "LONG_TYPE": 3, - "DOUBLE_TYPE": 3, - "sort": 18, - "char": 13, - "[": 54, - "]": 54, - "buf": 43, - "off": 25, - "len": 24, - "this.sort": 2, - "this.len": 2, - "this.buf": 2, - "this.off": 1, - "getType": 10, - "typeDescriptor": 1, - "typeDescriptor.toCharArray": 1, - "Class": 10, - "c": 21, - "c.isPrimitive": 2, - "Integer.TYPE": 2, - "else": 33, - "Void.TYPE": 3, - "Boolean.TYPE": 2, - "Byte.TYPE": 2, - "Character.TYPE": 2, - "Short.TYPE": 2, - "Double.TYPE": 2, - "Float.TYPE": 2, - "getDescriptor": 15, - "getObjectType": 1, - "name": 10, - "l": 5, - "name.length": 2, - "+": 83, - "name.getChars": 1, - "getArgumentTypes": 2, - "methodDescriptor": 2, - "methodDescriptor.toCharArray": 2, - "size": 16, - "while": 10, - "car": 18, - "break": 4, - "args": 6, - ".len": 1, - "Method": 3, - "method": 2, - "classes": 2, - "method.getParameterTypes": 1, - "types": 3, - "classes.length": 2, - "for": 16, - "i": 54, - "-": 15, - "getReturnType": 2, - "methodDescriptor.indexOf": 1, - "method.getReturnType": 1, - "switch": 6, - "case": 56, - "//": 16, - "default": 6, - "getSort": 1, - "getDimensions": 3, - "getElementType": 2, - "getClassName": 1, - "StringBuffer": 14, - "b": 7, - ".getClassName": 1, - "b.append": 1, - "b.toString": 1, - ".replace": 2, - "getInternalName": 2, - "buf.toString": 4, - "getMethodDescriptor": 2, - "returnType": 1, - "argumentTypes": 2, - "buf.append": 21, - "<": 13, - "argumentTypes.length": 1, - ".getDescriptor": 1, - "returnType.getDescriptor": 1, - "c.getName": 1, - "getConstructorDescriptor": 1, - "Constructor": 1, - "parameters": 4, - "c.getParameterTypes": 1, - "parameters.length": 2, - ".toString": 1, - "m": 1, - "m.getParameterTypes": 1, - "m.getReturnType": 1, - "d": 10, - "d.isPrimitive": 1, - "d.isArray": 1, - "d.getComponentType": 1, - "d.getName": 1, - "name.charAt": 1, - "getSize": 1, - "||": 8, - "getOpcode": 1, - "opcode": 17, - "Opcodes.IALOAD": 1, - "Opcodes.IASTORE": 1, - "equals": 2, - "Object": 31, - "o": 12, - "this": 16, - "instanceof": 19, - "false": 12, - "t": 6, - "t.sort": 1, - "Type.OBJECT": 2, - "Type.ARRAY": 2, - "t.len": 1, - "j": 9, - "t.off": 1, - "end": 4, - "t.buf": 1, - "hashCode": 1, - "hc": 4, - "*": 2, - "toString": 1, - "hudson.model": 1, - "hudson.ExtensionListView": 1, - "hudson.Functions": 1, - "hudson.Platform": 1, - "hudson.PluginManager": 1, - "hudson.cli.declarative.CLIResolver": 1, - "hudson.model.listeners.ItemListener": 1, - "hudson.slaves.ComputerListener": 1, - "hudson.util.CopyOnWriteList": 1, - "hudson.util.FormValidation": 1, - "jenkins.model.Jenkins": 1, - "org.jvnet.hudson.reactor.ReactorException": 1, - "org.kohsuke.stapler.QueryParameter": 1, - "org.kohsuke.stapler.Stapler": 1, - "org.kohsuke.stapler.StaplerRequest": 1, - "org.kohsuke.stapler.StaplerResponse": 1, - "javax.servlet.ServletContext": 1, - "javax.servlet.ServletException": 1, - "java.io.File": 1, - "java.io.IOException": 10, - "java.text.NumberFormat": 1, - "java.text.ParseException": 1, - "java.util.List": 1, - "hudson.Util.fixEmpty": 1, - "Hudson": 5, - "extends": 10, - "Jenkins": 2, - "transient": 2, - "CopyOnWriteList": 4, - "": 2, - "itemListeners": 2, - "ExtensionListView.createCopyOnWriteList": 2, - "ItemListener.class": 1, - "": 2, - "computerListeners": 2, - "ComputerListener.class": 1, - "@CLIResolver": 1, - "getInstance": 2, - "Jenkins.getInstance": 2, - "File": 2, - "root": 6, - "ServletContext": 2, - "context": 8, - "throws": 26, - "IOException": 8, - "InterruptedException": 2, - "ReactorException": 2, - "PluginManager": 1, - "pluginManager": 2, - "super": 7, - "getJobListeners": 1, - "getComputerListeners": 1, - "Slave": 3, - "getSlave": 1, - "Node": 1, - "n": 3, - "getNode": 1, - "List": 3, - "": 2, - "getSlaves": 1, - "slaves": 3, - "setSlaves": 1, - "setNodes": 1, - "TopLevelItem": 3, - "getJob": 1, - "getItem": 1, - "getJobCaseInsensitive": 1, - "match": 2, - "Functions.toEmailSafeString": 2, - "item": 2, - "getItems": 1, - "item.getName": 1, - ".equalsIgnoreCase": 5, - "synchronized": 1, - "doQuietDown": 2, - "StaplerResponse": 4, - "rsp": 6, - "ServletException": 3, - ".generateResponse": 2, - "doLogRss": 1, - "StaplerRequest": 4, - "req": 6, - "qs": 3, - "req.getQueryString": 1, - "rsp.sendRedirect2": 1, - "doFieldCheck": 3, - "fixEmpty": 8, - "req.getParameter": 4, - "FormValidation": 2, - "@QueryParameter": 4, - "value": 11, - "type": 3, - "errorText": 3, - "warningText": 3, - "FormValidation.error": 4, - "FormValidation.warning": 1, - "type.equalsIgnoreCase": 2, - "NumberFormat.getInstance": 2, - ".parse": 2, - ".floatValue": 1, - "<=>": 1, - "0": 1, - "error": 1, - "Messages": 1, - "Hudson_NotAPositiveNumber": 1, - "equalsIgnoreCase": 1, - "number": 1, - "negative": 1, - "NumberFormat": 1, - "parse": 1, - "floatValue": 1, - "Messages.Hudson_NotANegativeNumber": 1, - "ParseException": 1, - "Messages.Hudson_NotANumber": 1, - "FormValidation.ok": 1, - "isWindows": 1, - "File.pathSeparatorChar": 1, - "isDarwin": 1, - "Platform.isDarwin": 1, - "adminCheck": 3, - "Stapler.getCurrentRequest": 1, - "Stapler.getCurrentResponse": 1, - "isAdmin": 4, - "rsp.sendError": 1, - "StaplerResponse.SC_FORBIDDEN": 1, - ".getACL": 1, - ".hasPermission": 1, - "ADMINISTER": 1, - "XSTREAM.alias": 1, - "Hudson.class": 1, - "MasterComputer": 1, - "Jenkins.MasterComputer": 1, - "CloudList": 3, - "Jenkins.CloudList": 1, - "h": 2, - "needed": 1, - "XStream": 1, - "deserialization": 1, - "clojure.lang": 1, - "java.lang.ref.Reference": 1, - "java.math.BigInteger": 1, - "java.util.concurrent.ConcurrentHashMap": 1, - "java.lang.ref.SoftReference": 1, - "java.lang.ref.ReferenceQueue": 1, - "Util": 1, - "equiv": 17, - "k1": 40, - "k2": 38, - "Number": 9, - "&&": 6, - "Numbers.equal": 1, - "IPersistentCollection": 5, - "pcequiv": 2, - "k1.equals": 2, - "long": 5, - "double": 4, - "c1": 2, - "c2": 2, - ".equiv": 2, - "identical": 1, - "classOf": 1, - "x": 8, - "x.getClass": 1, - "compare": 1, - "Numbers.compare": 1, - "Comparable": 1, - ".compareTo": 1, - "hash": 3, - "o.hashCode": 2, - "hasheq": 1, - "Numbers.hasheq": 1, - "IHashEq": 2, - ".hasheq": 1, - "hashCombine": 1, - "seed": 5, - "//a": 1, - "la": 1, - "boost": 1, - "e3779b9": 1, - "<<": 1, - "isPrimitive": 1, - "isInteger": 1, - "Integer": 2, - "Long": 1, - "BigInt": 1, - "BigInteger": 1, - "ret1": 2, - "ret": 4, - "nil": 2, - "ISeq": 2, - "": 1, - "clearCache": 1, - "ReferenceQueue": 1, - "rq": 1, - "ConcurrentHashMap": 1, - "K": 2, - "Reference": 3, - "": 3, - "cache": 1, - "//cleanup": 1, - "any": 1, - "dead": 1, - "entries": 1, - "rq.poll": 2, - "Map.Entry": 1, - "cache.entrySet": 1, - "val": 3, - "e.getValue": 1, - "val.get": 1, - "cache.remove": 1, - "e.getKey": 1, - "RuntimeException": 5, - "runtimeException": 2, - "s": 10, - "Throwable": 4, - "sneakyThrow": 1, - "NullPointerException": 3, - "Util.": 1, - "": 1, - "sneakyThrow0": 2, - "@SuppressWarnings": 1, - "": 1, - "T": 2, - "nokogiri.internals": 1, - "nokogiri.internals.NokogiriHelpers.getNokogiriClass": 1, - "nokogiri.internals.NokogiriHelpers.isNamespace": 1, - "nokogiri.internals.NokogiriHelpers.stringOrNil": 1, - "nokogiri.HtmlDocument": 1, - "nokogiri.NokogiriService": 1, - "nokogiri.XmlDocument": 1, - "org.apache.xerces.parsers.DOMParser": 1, - "org.apache.xerces.xni.Augmentations": 1, - "org.apache.xerces.xni.QName": 1, - "org.apache.xerces.xni.XMLAttributes": 1, - "org.apache.xerces.xni.XNIException": 1, - "org.apache.xerces.xni.parser.XMLDocumentFilter": 1, - "org.apache.xerces.xni.parser.XMLParserConfiguration": 1, - "org.cyberneko.html.HTMLConfiguration": 1, - "org.cyberneko.html.filters.DefaultFilter": 1, - "org.jruby.runtime.ThreadContext": 1, - "org.w3c.dom.Document": 1, - "org.w3c.dom.NamedNodeMap": 1, - "org.w3c.dom.NodeList": 1, - "HtmlDomParserContext": 3, - "XmlDomParserContext": 1, - "options": 4, - "encoding": 2, - "@Override": 6, - "protected": 8, - "initErrorHandler": 1, - "options.strict": 1, - "errorHandler": 6, - "NokogiriStrictErrorHandler": 1, - "options.noError": 2, - "options.noWarning": 2, - "NokogiriNonStrictErrorHandler4NekoHtml": 1, - "initParser": 1, - "XMLParserConfiguration": 1, - "config": 2, - "HTMLConfiguration": 1, - "XMLDocumentFilter": 3, - "removeNSAttrsFilter": 2, - "RemoveNSAttrsFilter": 2, - "elementValidityCheckFilter": 3, - "ElementValidityCheckFilter": 3, - "//XMLDocumentFilter": 1, - "filters": 3, - "config.setErrorHandler": 1, - "this.errorHandler": 2, - "parser": 1, - "DOMParser": 1, - "setProperty": 4, - "java_encoding": 2, - "setFeature": 4, - "enableDocumentFragment": 1, - "getNewEmptyDocument": 1, - "ThreadContext": 2, - "XmlDocument.rbNew": 1, - "getNokogiriClass": 1, - "context.getRuntime": 3, - "wrapDocument": 1, - "Document": 2, - "NokogiriService.HTML_DOCUMENT_ALLOCATOR.allocate": 1, - "htmlDocument.setDocumentNode": 1, - "ruby_encoding.isNil": 1, - "detected_encoding": 2, - "detected_encoding.isNil": 1, - "ruby_encoding": 3, - "charset": 2, - "tryGetCharsetFromHtml5MetaTag": 2, - "stringOrNil": 1, - "htmlDocument.setEncoding": 1, - "htmlDocument.setParsedEncoding": 1, - "document.getDocumentElement": 2, - ".getNodeName": 4, - "NodeList": 2, - "list": 1, - ".getChildNodes": 2, - "list.getLength": 1, - "list.item": 2, - "headers": 1, - "headers.getLength": 1, - "headers.item": 2, - "NamedNodeMap": 1, - "nodeMap": 1, - ".getAttributes": 1, - "k": 5, - "nodeMap.getLength": 1, - "nodeMap.item": 2, - ".getNodeValue": 1, - "DefaultFilter": 2, - "startElement": 2, - "QName": 2, - "XMLAttributes": 2, - "attrs": 4, - "Augmentations": 2, - "augs": 4, - "XNIException": 2, - "attrs.getLength": 1, - "isNamespace": 1, - "attrs.getQName": 1, - "attrs.removeAttributeAt": 1, - "element.uri": 1, - "super.startElement": 2, - "NokogiriErrorHandler": 2, - "element_names": 3, - "g": 1, - "r": 1, - "w": 1, - "y": 1, - "z": 1, - "isValid": 2, - "testee": 1, - "testee.toCharArray": 1, - "index": 4, - ".length": 1, - "testee.equals": 1, - "name.rawname": 2, - "errorHandler.getErrors": 1, - ".add": 1, - "Exception": 1, "persons": 1, "ProtocolBuffer": 2, "registerAllExtensions": 1, @@ -28466,25 +28466,124 @@ ".internalBuildGeneratedFileFrom": 1 }, "JavaScript": { - "(": 8528, "function": 1214, - "window": 18, - "angular": 1, + "(": 8528, ")": 8536, "{": 2742, - "Array.prototype.last": 1, - "return": 947, - "this": 578, - "[": 1461, - "this.length": 41, - "-": 706, - "]": 1458, ";": 4066, - "}": 2718, + "//": 410, + "jshint": 1, + "_": 9, "var": 916, - "app": 3, - "angular.module": 1, + "Modal": 2, + "content": 5, + "options": 56, + "this.options": 6, + "this.": 2, + "element": 19, + ".delegate": 2, + ".proxy": 1, + "this.hide": 1, + "this": 578, + "}": 2718, + "Modal.prototype": 1, + "constructor": 8, + "toggle": 10, + "return": 947, + "[": 1461, + "this.isShown": 3, + "]": 1458, + "show": 10, + "that": 33, + "e": 663, + ".Event": 1, + "element.trigger": 1, + "if": 1230, + "||": 648, + "e.isDefaultPrevented": 2, + ".addClass": 1, + "true": 147, + "escape.call": 1, + "backdrop.call": 1, + "transition": 1, + ".support.transition": 1, + "&&": 1017, + "that.": 3, + "element.hasClass": 1, + "element.parent": 1, + ".length": 24, + "element.appendTo": 1, + "document.body": 8, + "//don": 1, + "in": 170, + "shown": 2, + "hide": 8, + "body": 22, + "modal": 4, + "-": 706, + "open": 2, + "fade": 4, + "hidden": 12, + "
": 4, + "class=": 5, + "static": 2, + "keyup.dismiss.modal": 2, + "object": 59, + "string": 41, + "click.modal.data": 1, + "api": 1, + "data": 145, + "target": 44, + "href": 9, + ".extend": 1, + "target.data": 1, + "this.data": 5, + "e.preventDefault": 1, + "target.modal": 1, + "option": 12, + "window.jQuery": 7, + "Animal": 12, + "Horse": 12, + "Snake": 12, + "sam": 4, + "tom": 4, + "__hasProp": 2, + "Object.prototype.hasOwnProperty": 6, + "__extends": 6, + "child": 17, + "parent": 15, + "for": 262, + "key": 85, + "__hasProp.call": 2, + "ctor": 6, + "this.constructor": 5, + "ctor.prototype": 3, + "parent.prototype": 6, + "child.prototype": 4, + "new": 86, + "child.__super__": 3, + "name": 161, + "this.name": 7, + "Animal.prototype.move": 2, + "meters": 4, "alert": 11, + "+": 1136, + "Snake.__super__.constructor.apply": 2, + "arguments": 83, + "Snake.prototype.move": 2, + "Snake.__super__.move.call": 2, + "Horse.__super__.constructor.apply": 2, + "Horse.prototype.move": 2, + "Horse.__super__.move.call": 2, + "sam.move": 2, + "tom.move": 2, + ".call": 10, + ".hasOwnProperty": 2, + "Animal.name": 1, + "_super": 4, + "Snake.name": 1, + "Horse.name": 1, + "console.log": 3, "hanaMath": 1, ".import": 1, "x": 41, @@ -28501,1336 +28600,9 @@ ".net.http.OK": 1, ".response.setBody": 1, "JSON.stringify": 5, - "Animal": 12, - "Horse": 12, - "Snake": 12, - "sam": 4, - "tom": 4, - "__hasProp": 2, - ".hasOwnProperty": 2, - "__extends": 6, - "child": 17, - "parent": 15, - "for": 262, - "key": 85, - "in": 170, - "if": 1230, - "__hasProp.call": 2, - "ctor": 6, - "this.constructor": 5, - "ctor.prototype": 3, - "parent.prototype": 6, - "child.prototype": 4, - "new": 86, - "child.__super__": 3, - "Animal.name": 1, - "name": 161, - "this.name": 7, - "Animal.prototype.move": 2, - "meters": 4, - "+": 1136, - "_super": 4, - "Snake.name": 1, - "Snake.__super__.constructor.apply": 2, - "arguments": 83, - "Snake.prototype.move": 2, - "Snake.__super__.move.call": 2, - "Horse.name": 1, - "Horse.__super__.constructor.apply": 2, - "Horse.prototype.move": 2, - "Horse.__super__.move.call": 2, - "sam.move": 2, - "tom.move": 2, - ".call": 10, - "KEYWORDS": 2, - "array_to_hash": 11, - "RESERVED_WORDS": 2, - "KEYWORDS_BEFORE_EXPRESSION": 2, - "KEYWORDS_ATOM": 2, - "OPERATOR_CHARS": 1, - "characters": 6, - "RE_HEX_NUMBER": 1, - "/": 290, - "a": 1489, - "f": 666, - "/i": 22, - "RE_OCT_NUMBER": 1, - "RE_DEC_NUMBER": 1, - "d*": 8, - ".": 91, - "e": 663, - "d": 771, - "|": 206, - "OPERATORS": 2, - "WHITESPACE_CHARS": 2, - "PUNC_BEFORE_EXPRESSION": 2, - "PUNC_CHARS": 1, - "REGEXP_MODIFIERS": 1, - "UNICODE": 1, - "letter": 3, - "RegExp": 12, - "non_spacing_mark": 1, - "space_combining_mark": 1, - "connector_punctuation": 1, - "is_letter": 3, - "ch": 58, - "UNICODE.letter.test": 1, - "is_digit": 3, - "ch.charCodeAt": 1, - "&&": 1017, - "<": 209, - "//XXX": 1, - "find": 7, - "out": 1, - "means": 1, - "something": 3, - "else": 307, - "than": 3, - "is_alphanumeric_char": 3, - "||": 648, - "is_unicode_combining_mark": 2, - "UNICODE.non_spacing_mark.test": 1, - "UNICODE.space_combining_mark.test": 1, - "is_unicode_connector_punctuation": 2, - "UNICODE.connector_punctuation.test": 1, - "is_identifier_start": 2, - "is_identifier_char": 1, - "//": 410, - "zero": 2, - "width": 32, - "non": 8, - "joiner": 2, - "": 1, - "": 1, - "my": 1, - "ECMA": 1, - "PDF": 1, - "is": 67, - "also": 5, - "c": 775, - "parse_js_number": 2, - "num": 23, - "RE_HEX_NUMBER.test": 1, - "parseInt": 12, - "num.substr": 2, - "RE_OCT_NUMBER.test": 1, - "RE_DEC_NUMBER.test": 1, - "JS_Parse_Error": 2, - "message": 5, - "line": 14, - "col": 7, - "pos": 197, - "this.message": 3, - "this.line": 3, - "this.col": 2, - "this.pos": 4, - "try": 44, - "ex": 3, - "Error": 16, - "ex.name": 1, - "throw": 27, - "catch": 38, - "this.stack": 2, - "ex.stack": 1, - "JS_Parse_Error.prototype.toString": 1, - "js_error": 2, - "is_token": 1, - "token": 5, - "type": 49, - "val": 13, - "token.type": 1, - "null": 427, - "token.value": 1, - "EX_EOF": 3, - "tokenizer": 2, - "TEXT": 1, - "S": 8, - "text": 14, - "TEXT.replace": 1, - "r": 261, - "n": 874, - "u2028": 3, - "u2029": 2, - "/g": 37, - ".replace": 38, - "uFEFF/": 1, - "tokpos": 1, - "tokline": 1, - "tokcol": 1, - "newline_before": 1, - "false": 142, - "regex_allowed": 1, - "comments_before": 1, - "peek": 5, - "S.text.charAt": 2, - "S.pos": 4, - "next": 9, - "signal_eof": 4, - "S.newline_before": 3, - "true": 147, - "S.line": 2, - "S.col": 3, - "eof": 6, - "S.peek": 1, - "what": 2, - "S.text.indexOf": 1, - "start_token": 1, - "S.tokline": 3, - "S.tokcol": 3, - "S.tokpos": 3, - "value": 98, - "is_comment": 2, - "S.regex_allowed": 1, - "HOP": 5, - "UNARY_POSTFIX": 1, - "ret": 62, - "nlb": 1, - "ret.comments_before": 1, - "S.comments_before": 2, - "skip_whitespace": 1, - "while": 53, - "read_while": 2, - "pred": 2, - "i": 853, - "parse_error": 3, - "err": 5, - "read_num": 1, - "prefix": 6, - "has_e": 3, - "after_e": 5, - "has_x": 5, - "has_dot": 3, - "valid": 4, - "isNaN": 6, - "read_escaped_char": 1, - "switch": 30, - "case": 136, - "String.fromCharCode": 4, - "hex_bytes": 3, - "default": 21, - "digit": 3, - "<<": 4, - "read_string": 1, - "with_eof_error": 1, - "quote": 3, - "string": 41, - "comment1": 1, - "Unterminated": 2, - "multiline": 1, - "comment": 3, - "*/": 2, - "comment2": 1, - "WARNING": 1, - "at": 58, - "***": 1, - "Found": 1, - "warn": 3, - "tok": 1, - "read_name": 1, - "backslash": 2, - "u": 304, - "Expecting": 1, - "UnicodeEscapeSequence": 1, - "uXXXX": 1, - "Unicode": 1, - "char": 2, - "not": 26, - "identifier": 1, - "regular": 1, - "expression": 4, - "regexp": 5, - "operator": 14, + "multiply": 1, "*": 71, - "punc": 27, - "atom": 5, - "keyword": 11, - "Unexpected": 3, - "character": 3, - "typeof": 132, - "void": 1, - "delete": 39, - "%": 26, - "&": 13, - "<\",>": 1, - "<=\",>": 1, - "instanceof": 19, - "do": 15, - "expected": 12, - "block": 4, - "break": 111, - "continue": 18, - "debugger": 2, - "outside": 2, - "of": 28, - "const": 2, - "with": 18, - "label": 2, - "stat": 1, - "Label": 1, - "without": 1, - "matching": 3, - "loop": 7, - "or": 38, - "statement": 1, - "inside": 3, - "defun": 1, - "Name": 1, - "finally": 3, - "Missing": 1, - "catch/finally": 1, - "blocks": 1, - "unary": 2, - "undefined": 328, - "array": 7, - "get": 24, - "set": 22, - "object": 59, - "dot": 2, - "sub": 4, - "call": 9, - "postfix": 1, - "Invalid": 2, - "use": 10, - "binary": 1, - "conditional": 1, - "assign": 1, - "assignment": 1, - "seq": 1, - "toplevel": 7, - "member": 2, - "array.length": 1, - "obj": 40, - "prop": 24, - "Object.prototype.hasOwnProperty.call": 1, - "exports.tokenizer": 1, - "exports.parse": 1, - "parse": 1, - "exports.slice": 1, - "slice": 10, - "exports.curry": 1, - "curry": 1, - "exports.member": 1, - "exports.array_to_hash": 1, - "exports.PRECEDENCE": 1, - "PRECEDENCE": 1, - "exports.KEYWORDS_ATOM": 1, - "exports.RESERVED_WORDS": 1, - "exports.KEYWORDS": 1, - "exports.ATOMIC_START_TOKEN": 1, - "ATOMIC_START_TOKEN": 1, - "exports.OPERATORS": 1, - "exports.is_alphanumeric_char": 1, - "exports.set_logger": 1, - "logger": 2, - "jshint": 1, - "_": 9, - "Modal": 2, - "content": 5, - "options": 56, - "this.options": 6, - "this.": 2, - "element": 19, - ".delegate": 2, - ".proxy": 1, - "this.hide": 1, - "Modal.prototype": 1, - "constructor": 8, - "toggle": 10, - "this.isShown": 3, - "show": 10, - "that": 33, - ".Event": 1, - "element.trigger": 1, - "e.isDefaultPrevented": 2, - ".addClass": 1, - "escape.call": 1, - "backdrop.call": 1, - "transition": 1, - ".support.transition": 1, - "that.": 3, - "element.hasClass": 1, - "element.parent": 1, - ".length": 24, - "element.appendTo": 1, - "document.body": 8, - "//don": 1, - "shown": 2, - "hide": 8, - "body": 22, - "modal": 4, - "open": 2, - "fade": 4, - "hidden": 12, - "
": 4, - "class=": 5, - "static": 2, - "keyup.dismiss.modal": 2, - "click.modal.data": 1, - "api": 1, - "data": 145, - "target": 44, - "href": 9, - ".extend": 1, - "target.data": 1, - "this.data": 5, - "e.preventDefault": 1, - "target.modal": 1, - "option": 12, - "window.jQuery": 7, - "document": 26, - "window.document": 2, - "navigator": 3, - "window.navigator": 2, - "location": 2, - "window.location": 5, - "jQuery": 48, - "selector": 40, - "context": 48, - "The": 9, - "actually": 2, - "just": 2, - "the": 107, - "init": 7, - "jQuery.fn.init": 2, - "rootjQuery": 8, - "Map": 4, - "over": 7, - "overwrite": 4, - "_jQuery": 4, - "window.": 6, - "A": 24, - "central": 2, - "reference": 5, - "to": 92, - "root": 5, - "simple": 3, - "way": 2, - "check": 8, - "HTML": 9, - "strings": 8, - "ID": 8, - "Prioritize": 1, - "#id": 3, - "": 1, - "avoid": 5, - "XSS": 1, - "via": 2, - "location.hash": 1, - "#9521": 1, - "quickExpr": 2, - "#": 13, - "<[\\w\\W]+>": 4, - "w": 110, - "Check": 10, - "has": 9, - "whitespace": 7, - "it": 112, - "rnotwhite": 2, - "S/": 4, - "Used": 3, - "trimming": 2, - "trimLeft": 4, - "s": 290, - "trimRight": 4, - "Match": 3, - "standalone": 2, - "tag": 2, - "rsingleTag": 2, - "<(\\w+)\\s*\\/?>": 4, - "<\\/\\1>": 4, - "JSON": 5, - "rvalidchars": 2, - "rvalidescape": 2, - "eE": 4, - "rvalidbraces": 2, - "s*": 15, - "Useragent": 2, - "rwebkit": 2, - "webkit": 6, - "w.": 17, - "ropera": 2, - "opera": 4, - ".*version": 4, - "rmsie": 2, - "msie": 4, - "rmozilla": 2, - "mozilla": 4, - ".*": 20, - "rv": 4, - "Matches": 1, - "dashed": 1, - "camelizing": 1, - "rdashAlpha": 1, - "z": 21, - "/ig": 3, - "rmsPrefix": 1, - "ms": 2, - "by": 12, - "jQuery.camelCase": 6, - "as": 11, - "callback": 23, - "replace": 8, - "fcamelCase": 1, - "all": 16, - ".toUpperCase": 3, - "Keep": 2, - "UserAgent": 2, - "jQuery.browser": 4, - "userAgent": 3, - "navigator.userAgent": 3, - "For": 5, - "engine": 2, - "and": 42, - "version": 10, - "browser": 11, - "browserMatch": 3, - "deferred": 25, - "used": 13, - "on": 37, - "DOM": 21, - "ready": 31, - "readyList": 6, - "event": 31, - "handler": 14, - "DOMContentLoaded": 14, - "Save": 2, - "some": 2, - "core": 2, - "methods": 8, - "toString": 4, - "Object.prototype.toString": 7, - "hasOwn": 2, - "Object.prototype.hasOwnProperty": 6, - "push": 11, - "Array.prototype.push": 4, - "Array.prototype.slice": 6, - "trim": 5, - "String.prototype.trim": 3, - "indexOf": 5, - "Array.prototype.indexOf": 4, - "Class": 2, - "pairs": 2, - "class2type": 3, - "jQuery.fn": 4, - "jQuery.prototype": 2, - "match": 30, - "elem": 101, - "doc": 4, - "Handle": 14, - "DOMElement": 2, - "selector.nodeType": 2, - "this.context": 17, - "only": 10, - "exists": 9, - "once": 4, - "optimize": 3, - "finding": 2, - "this.selector": 16, - "Are": 2, - "we": 25, - "dealing": 2, - "an": 12, - "selector.charAt": 4, - "selector.length": 4, - "Assume": 2, - "start": 20, - "end": 14, - "are": 18, - "skip": 5, - "regex": 3, - "quickExpr.exec": 2, - "Verify": 3, - "no": 19, - "was": 6, - "specified": 4, - "HANDLE": 2, - "html": 10, - "context.ownerDocument": 2, - "If": 21, - "single": 2, - "passed": 5, - "clean": 3, - "method": 30, - "like": 5, - "method.": 3, - "sort": 4, - ".sort": 9, - "splice": 5, - ".splice": 5, - "jQuery.fn.init.prototype": 2, - "jQuery.extend": 11, - "jQuery.fn.extend": 4, - "src": 7, - "copy": 16, - "copyIsArray": 2, - "clone": 5, - "length": 48, - "arguments.length": 18, - "deep": 12, - "situation": 2, - "boolean": 8, - "when": 20, - "possible": 3, - "jQuery.isFunction": 6, - "extend": 13, - "itself": 4, - "one": 15, - "argument": 2, - "Only": 5, - "deal": 2, - "null/undefined": 2, - "values": 10, - "Extend": 2, - "base": 2, - "Prevent": 2, - "never": 2, - "ending": 2, - "Recurse": 2, - "t": 436, - "bring": 2, - "Return": 2, - "modified": 3, - "noConflict": 4, - "Is": 2, - "be": 12, - "Set": 4, - "occurs.": 2, - "isReady": 5, - "counter": 2, - "track": 2, - "how": 2, - "many": 3, - "items": 2, - "wait": 12, - "before": 8, - "fires.": 2, - "See": 9, - "#6781": 2, - "readyWait": 6, - "Hold": 2, - "release": 2, - "holdReady": 3, - "hold": 6, - "jQuery.readyWait": 6, - "jQuery.ready": 16, - "Either": 2, - "released": 2, - "DOMready/load": 2, - "yet": 2, - "jQuery.isReady": 6, - "Make": 17, - "sure": 18, - "least": 4, - "IE": 28, - "gets": 6, - "little": 4, - "overzealous": 4, - "ticket": 4, - "#5443": 4, - "setTimeout": 19, - "Remember": 2, - "normal": 2, - "Ready": 2, - "fired": 12, - "decrement": 2, - "need": 10, - "there": 6, - "functions": 6, - "bound": 8, - "execute": 4, - "readyList.fireWith": 1, - "Trigger": 2, - "any": 12, - "events": 18, - "jQuery.fn.trigger": 2, - ".trigger": 3, - ".off": 1, - "bindReady": 5, - "jQuery.Callbacks": 2, - "Catch": 2, - "cases": 4, - "where": 2, - ".ready": 2, - "called": 2, - "after": 7, - "already": 6, - "occurred.": 2, - "document.readyState": 4, - "asynchronously": 2, - "allow": 6, - "scripts": 2, - "opportunity": 2, - "delay": 4, - "Mozilla": 2, - "Opera": 2, - "nightlies": 3, - "currently": 4, - "support": 13, - "document.addEventListener": 6, - "Use": 7, - "handy": 2, - "fallback": 4, - "window.onload": 4, - "will": 7, - "always": 6, - "work": 6, - "window.addEventListener": 2, - "model": 14, - "document.attachEvent": 6, - "ensure": 2, - "firing": 16, - "onload": 2, - "maybe": 2, - "late": 2, - "but": 4, - "safe": 3, - "iframes": 2, - "window.attachEvent": 2, - "frame": 23, - "continually": 2, - "see": 6, - "window.frameElement": 2, - "document.documentElement.doScroll": 4, - "doScrollCheck": 6, - "test/unit/core.js": 2, - "details": 3, - "concerning": 2, - "isFunction.": 2, - "Since": 3, - "aren": 5, - "pass": 7, - "through": 3, - "well": 2, - "jQuery.type": 4, - "obj.nodeType": 2, - "jQuery.isWindow": 2, - "Not": 4, - "own": 4, - "property": 15, - "must": 4, - "Object": 4, - "obj.constructor": 2, - "hasOwn.call": 6, - "obj.constructor.prototype": 2, - "IE8": 2, - "Will": 2, - "exceptions": 2, - "certain": 2, - "host": 29, - "objects": 7, - "#9897": 1, - "Own": 2, - "properties": 7, - "enumerated": 2, - "firstly": 2, - "so": 8, - "speed": 4, - "up": 4, - "last": 6, - "then": 8, - "own.": 2, - "isEmptyObject": 7, - "error": 20, - "msg": 4, - "parseJSON": 4, - "leading/trailing": 2, - "removed": 3, - "can": 10, - "access": 2, - "elems": 9, - "fn": 14, - "chainable": 4, - "emptyGet": 3, - "exec": 8, - "bulk": 3, - "elems.length": 1, - "Sets": 3, - "jQuery.access": 2, - "Optionally": 1, - "executed": 1, - "Bulk": 1, - "operations": 1, - "iterate": 1, - "executing": 1, - "exec.call": 1, - "Otherwise": 2, - "they": 2, - "run": 1, - "against": 1, - "entire": 1, - "fn.call": 2, - "value.call": 1, - "Gets": 2, - "now": 5, - "Date": 4, - ".getTime": 3, - "frowned": 1, - "upon.": 1, - "More": 1, - "http": 6, - "//docs.jquery.com/Utilities/jQuery.browser": 1, - "uaMatch": 3, - "ua": 6, - "ua.toLowerCase": 1, - "rwebkit.exec": 1, - "ropera.exec": 1, - "rmsie.exec": 1, - "ua.indexOf": 1, - "rmozilla.exec": 1, - "jQuerySub": 7, - "jQuerySub.fn.init": 2, - "jQuerySub.superclass": 1, - "jQuerySub.fn": 2, - "jQuerySub.prototype": 1, - "jQuerySub.fn.constructor": 1, - "jQuerySub.sub": 1, - "this.sub": 2, - "jQuery.fn.init.call": 1, - "rootjQuerySub": 2, - "jQuerySub.fn.init.prototype": 1, - "jQuery.each": 2, - ".split": 19, - "name.toLowerCase": 6, - "jQuery.uaMatch": 1, - "browserMatch.browser": 2, - "jQuery.browser.version": 1, - "browserMatch.version": 1, - "jQuery.browser.webkit": 1, - "jQuery.browser.safari": 1, - "rnotwhite.test": 2, - "xA0": 7, - "document.removeEventListener": 2, - "document.detachEvent": 2, - "trick": 2, - "Diego": 2, - "Perini": 2, - "//javascript.nwbox.com/IEContentLoaded/": 2, - "waiting": 2, - "flagsCache": 3, - "createFlags": 2, - "flags": 13, - "flags.split": 1, - "flags.length": 1, - "Convert": 1, - "from": 7, - "String": 2, - "formatted": 2, - "cache": 45, - "first": 10, - "Actual": 2, - "list": 21, - "Stack": 1, - "fire": 4, - "calls": 1, - "repeatable": 1, - "lists": 2, - "stack": 2, - "Last": 2, - "forgettable": 1, - "memory": 8, - "Flag": 2, - "know": 3, - "First": 3, - "internally": 5, "add": 16, - "fireWith": 1, - "firingStart": 3, - "End": 1, - "firingLength": 4, - "Index": 1, - "remove": 9, - "needed": 2, - "firingIndex": 5, - "Add": 4, - "several": 1, - "callbacks": 10, - "args": 31, - "actual": 1, - "args.length": 3, - "Inspect": 1, - "recursively": 1, - "unique": 2, - "mode": 1, - "flags.unique": 1, - "self.has": 1, - "list.push": 1, - "Fire": 1, - "flags.memory": 1, - "list.length": 5, - ".apply": 7, - "flags.stopOnFalse": 1, - "Mark": 1, - "halted": 1, - "flags.once": 1, - "stack.length": 1, - "stack.shift": 1, - "self.fireWith": 1, - "self.disable": 1, - "Callbacks": 1, - "self": 17, - "collection": 3, - "Do": 2, - "current": 7, - "batch": 2, - "With": 1, - "/a": 1, - "top": 12, - "px": 31, - "float": 3, - "left": 14, - "opacity": 13, - ".55": 1, - "checkbox": 14, - "basic": 1, - "test": 21, - "all.length": 1, - "supports": 2, - "tests": 48, - "select": 20, - "document.createElement": 26, - "opt": 2, - "select.appendChild": 1, - "div.getElementsByTagName": 6, - "strips": 1, - "leading": 1, - ".innerHTML": 3, - "leadingWhitespace": 3, - "div.firstChild.nodeType": 1, - "tbody": 7, - "elements": 9, - "manipulated": 1, - "normalizes": 1, - "hrefNormalized": 3, - "a.getAttribute": 11, - "uses": 3, - "filter": 10, - "instead": 6, - "around": 1, - "WebKit": 9, - "issue.": 1, - "#5145": 1, - "/.test": 19, - "a.style.opacity": 2, - "style": 30, - "existence": 1, - "styleFloat": 1, - "cssFloat": 4, - "a.style.cssFloat": 1, - "defaults": 3, - "checkOn": 4, - "input.value": 5, - "selected": 5, - "working": 1, - "property.": 1, - "too": 1, - "marked": 1, - "disabled": 11, - "marks": 1, - "them": 3, - "select.disabled": 1, - "support.optDisabled": 1, - "opt.disabled": 1, - "Test": 3, - "handlers": 1, - "does": 9, - "support.noCloneEvent": 1, - "div.cloneNode": 1, - ".fireEvent": 3, - "radio": 17, - "maintains": 1, - "its": 2, - "being": 2, - "appended": 2, - "input.setAttribute": 5, - "support.radioValue": 2, - "#11217": 1, - "loses": 1, - "checked": 4, - "attribute": 5, - "div.appendChild": 4, - "fragment": 27, - "document.createDocumentFragment": 3, - "fragment.appendChild": 2, - "div.lastChild": 1, - "doesn": 2, - "have": 6, - "conMarginTop": 3, - "paddingMarginBorder": 5, - "positionTopLeftWidthHeight": 3, - "paddingMarginBorderVisibility": 3, - "container": 4, - "container.style.cssText": 1, - "body.insertBefore": 1, - "body.firstChild": 1, - "Construct": 1, - "div": 28, - "container.appendChild": 1, - "table": 6, - "cells": 3, - "still": 4, - "offsetWidth/Height": 3, - "display": 7, - "none": 4, - "other": 3, - "visible": 1, - "row": 1, - "reliable": 1, - "determining": 3, - "been": 5, - "directly": 2, - "using": 5, - "offsets": 1, - "don": 5, - "safety": 1, - "goggles": 1, - "bug": 3, - "#4512": 1, - "more": 6, - "information": 5, - "fails": 2, - "div.innerHTML": 7, - "tds": 6, - "isSupported": 7, - ".offsetHeight": 4, - ".style.display": 5, - "empty": 3, - "fail": 10, - "support.reliableHiddenOffsets": 1, - "explicit": 1, - "margin": 8, - "right": 3, - "incorrectly": 1, - "computed": 1, - "based": 1, - "container.": 1, - "info": 2, - "#3333": 1, - "Fails": 2, - "Feb": 1, - "Bug": 1, - "getComputedStyle": 3, - "returns": 1, - "wrong": 1, - "window.getComputedStyle": 6, - "marginDiv": 5, - "marginDiv.style.width": 1, - "marginDiv.style.marginRight": 1, - "div.style.width": 2, - "support.reliableMarginRight": 1, - "marginRight": 2, - ".marginRight": 2, - "div.style.zoom": 2, - "natively": 1, - "level": 3, - "act": 1, - "inline": 3, - "setting": 2, - "their": 3, - "giving": 1, - "layout": 2, - "div.style.padding": 1, - "div.style.border": 1, - "div.style.overflow": 2, - "div.style.display": 2, - "support.inlineBlockNeedsLayout": 1, - "div.offsetWidth": 2, - "shrink": 1, - "wrap": 2, - "children": 3, - "support.shrinkWrapBlocks": 1, - "div.style.cssText": 1, - "outer": 2, - "div.firstChild": 3, - "inner": 2, - "outer.firstChild": 1, - "td": 3, - "outer.nextSibling.firstChild.firstChild": 1, - "offsetSupport": 2, - "doesNotAddBorder": 1, - "inner.offsetTop": 4, - "doesAddBorderForTableAndCells": 1, - "td.offsetTop": 1, - "inner.style.position": 2, - "inner.style.top": 2, - "safari": 1, - "subtracts": 1, - "border": 7, - "here": 1, - "which": 8, - "offsetSupport.fixedPosition": 1, - "outer.style.overflow": 1, - "outer.style.position": 1, - "offsetSupport.subtractsBorderForOverflowNotVisible": 1, - "offsetSupport.doesNotIncludeMarginInBodyOffset": 1, - "body.offsetTop": 1, - "div.style.marginTop": 1, - "support.pixelMargin": 1, - "marginTop": 3, - ".marginTop": 1, - "container.style.zoom": 2, - "body.removeChild": 1, - "rbrace": 1, - "rmultiDash": 3, - "Z": 6, - "Please": 1, - "caution": 1, - "uuid": 2, - "Unique": 1, - "each": 17, - "page": 1, - "Non": 3, - "digits": 3, - "rinlinejQuery": 1, - "expando": 14, - "jQuery.fn.jquery": 1, - "Math.random": 2, - "D/g": 2, - "following": 1, - "uncatchable": 1, - "you": 1, - "attempt": 2, - "them.": 1, - "noData": 3, - "Ban": 1, - "except": 1, - "Flash": 1, - "handle": 15, - "expandos": 2, - "hasData": 2, - "elem.nodeType": 8, - "jQuery.cache": 3, - "jQuery.expando": 12, - "isEmptyDataObject": 3, - "pvt": 8, - "jQuery.acceptData": 2, - "privateCache": 1, - "thisCache": 15, - "internalKey": 12, - "getByName": 3, - "We": 6, - "nodes": 14, - "JS": 7, - "differently": 1, - "because": 1, - "IE6": 1, - "internal": 8, - "order": 1, - "collisions": 1, - "between": 1, - "user": 1, - "defined": 3, - "data.": 1, - "thisCache.data": 3, - "Users": 1, - "should": 1, - "inspect": 1, - "jQuery.data": 15, - "undocumented": 1, - "subject": 1, - "change.": 1, - "But": 1, - "anyone": 1, - "listen": 1, - "No.": 1, - "isEvents": 1, - "privateCache.events": 1, - "both": 2, - "converted": 2, - "camel": 2, - "names": 2, - "Try": 4, - "camelCased": 1, - "removeData": 8, - "l": 312, - "Reference": 1, - "isNode": 11, - "id": 38, - "entry": 1, - "purpose": 1, - "continuing": 1, - ".data": 3, - "Support": 1, - "space": 1, - "separated": 1, - "keys": 11, - "jQuery.isArray": 1, - "manipulation": 1, - "split": 4, - "cased": 1, - "spaces": 3, - "unless": 2, - "name.split": 1, - "name.length": 1, - "want": 1, - "let": 1, - "destroyed": 2, - "jQuery.isEmptyObject": 1, - "Don": 1, - "care": 1, - "Ensure": 1, - "#10080": 1, - "jQuery.support.deleteExpando": 3, - "cache.setInterval": 1, - "eliminate": 2, - "node": 23, - "lookups": 2, - "entries": 2, - "longer": 2, - "exist": 2, - "us": 2, - "nor": 2, - "removeAttribute": 3, - "Document": 2, - "these": 2, - "elem.removeAttribute": 6, - "only.": 2, - "_data": 3, - "acceptData": 3, - "elem.nodeName": 2, - "jQuery.noData": 2, - "elem.nodeName.toLowerCase": 2, - "elem.getAttribute": 7, - "parts": 28, - "part": 8, - "attr": 13, - "jQuery._data": 2, - "elem.attributes": 1, - "attr.length": 2, - ".name": 3, - "name.indexOf": 2, - "name.substring": 2, - "dataAttr": 6, - "multiple": 7, - "this.each": 42, - "key.split": 2, - "this.triggerHandler": 6, - "fetch": 4, - "stored": 4, - "self.triggerHandler": 2, - "jQuery.removeData": 2, - "nothing": 2, - "found": 10, - "HTML5": 3, - "key.replace": 2, - ".toLowerCase": 7, - "jQuery.isNumeric": 1, - "rbrace.test": 2, - "jQuery.parseJSON": 2, - "isn": 2, - "optgroup": 5, - "option.selected": 2, - "jQuery.support.optDisabled": 2, - "option.disabled": 2, - "option.getAttribute": 2, - "option.parentNode.disabled": 2, - "jQuery.nodeName": 3, - "option.parentNode": 2, - "Get": 4, - "specific": 2, - ".val": 5, - "get/set": 2, - "attributes": 14, - "nType": 8, - "jQuery.attrFn": 2, - "Fallback": 2, - "supported": 2, - "jQuery.prop": 2, - "notxml": 8, - "jQuery.isXMLDoc": 2, - "All": 1, - "lowercase": 1, - "Grab": 1, - "necessary": 1, - "hook": 1, - "hooks": 14, - "jQuery.attrHooks": 2, - "rboolean.test": 4, - "boolHook": 3, - "nodeHook": 1, - "jQuery.removeAttr": 2, - "hooks.set": 2, - "elem.setAttribute": 2, - "hooks.get": 2, - "existent": 2, - "normalize": 2, - "removeAttr": 5, - "propName": 8, - "attrNames": 3, - "isBool": 4, - "value.toLowerCase": 2, - "rspace": 1, - "attrNames.length": 1, - "jQuery.propFix": 2, - "#9699": 1, - "explanation": 1, - "approach": 1, - "removal": 1, - "#10870": 1, - "jQuery.attr": 2, - "getSetAttribute": 3, - "corresponding": 2, - "attrHooks": 3, - "changed": 3, - "button": 24, - "tabIndex": 4, - "readOnly": 2, - "htmlFor": 2, - "class": 5, - "className": 4, - "maxLength": 2, - "cellSpacing": 2, - "cellPadding": 2, - "rowSpan": 2, - "colSpan": 2, - "useMap": 2, - "frameBorder": 2, - "contentEditable": 2, - "tabindex": 4, - "height": 25, - "auto": 3, - "encoding": 26, - "mouseenter": 9, - "mouseleave": 9, - "mouseover": 12, - "mouseout": 12, - "**": 1, - "getData": 3, - "setData": 3, - "changeData": 3, - "click": 11, - "focus": 7, - "blur": 8, - "attrChange": 4, - "attrName": 4, - "relatedNode": 4, - "srcElement": 5, - "altKey": 4, - "bubbles": 4, - "cancelable": 4, - "ctrlKey": 6, - "currentTarget": 4, - "eventPhase": 4, - "metaKey": 5, - "relatedTarget": 6, - "shiftKey": 4, - "timeStamp": 1, - "view": 4, - "charCode": 7, - "keyCode": 6, - "buttons": 1, - "clientX": 6, - "clientY": 5, - "fromElement": 6, - "offsetX": 4, - "offsetY": 4, - "pageX": 4, - "pageY": 4, - "screenX": 4, - "screenY": 4, - "toElement": 5, - "focusin": 9, - "focusout": 11, - "form": 12, "util": 1, "require": 9, "net": 1, @@ -29850,14 +28622,17 @@ "process.env.NODE_DEBUG": 2, "/http/.test": 1, "console.error": 3, + "else": 307, "parserOnHeaders": 2, "headers": 41, "this.maxHeaderPairs": 2, + "<": 209, "this._headers.length": 1, "this._headers": 13, "this._headers.concat": 1, "this._url": 1, "parserOnHeadersComplete": 2, + "info": 2, "parser": 27, "info.headers": 1, "info.url": 1, @@ -29872,9 +28647,11 @@ "info.versionMinor": 2, "parser.incoming.httpVersion": 1, "parser.incoming.url": 1, + "n": 874, "headers.length": 2, "parser.maxHeaderPairs": 4, "Math.min": 5, + "i": 853, "k": 302, "v": 135, "parser.incoming._addHeaderLine": 2, @@ -29885,14 +28662,19 @@ "parser.incoming.upgrade": 4, "info.upgrade": 2, "skipBody": 3, + "false": 142, "response": 3, + "to": 92, "HEAD": 3, + "or": 38, "CONNECT": 1, "parser.onIncoming": 3, "info.shouldKeepAlive": 1, "parserOnBody": 2, "b": 961, + "start": 20, "len": 11, + "slice": 10, "b.slice": 1, "parser.incoming._paused": 2, "parser.incoming._pendings.length": 2, @@ -29916,6 +28698,7 @@ "exports.STATUS_CODES": 1, "RFC": 16, "obsoleted": 1, + "by": 12, "connectionExpression": 1, "/Connection/i": 1, "transferEncodingExpression": 1, @@ -29937,13 +28720,18 @@ "continue/i": 1, "dateCache": 5, "utcDate": 2, + "d": 771, + "Date": 4, "d.toUTCString": 1, + "setTimeout": 19, + "undefined": 328, "d.getMilliseconds": 1, "socket": 26, "stream.Stream.call": 2, "this.socket": 10, "this.connection": 8, "this.httpVersion": 1, + "null": 427, "this.complete": 2, "this.headers": 2, "this.trailers": 2, @@ -29959,8 +28747,10 @@ "stream.Stream": 2, "exports.IncomingMessage": 1, "IncomingMessage.prototype.destroy": 1, + "error": 20, "this.socket.destroy": 3, "IncomingMessage.prototype.setEncoding": 1, + "encoding": 26, "StringDecoder": 2, ".StringDecoder": 1, "lazy": 1, @@ -29972,8 +28762,11 @@ "this.socket.resume": 1, "this._emitPending": 1, "IncomingMessage.prototype._emitPending": 1, + "callback": 23, "this._pendings.length": 1, + "self": 17, "process.nextTick": 1, + "while": 53, "self._paused": 1, "self._pendings.length": 2, "chunk": 14, @@ -29989,9 +28782,14 @@ "IncomingMessage.prototype._emitEnd": 1, "IncomingMessage.prototype._addHeaderLine": 1, "field": 36, + "value": 98, "dest": 12, "field.toLowerCase": 1, + "switch": 30, + "case": 136, ".push": 3, + "break": 111, + "default": 21, "field.slice": 1, "OutgoingMessage": 5, "this.output": 3, @@ -30009,6 +28807,7 @@ "OutgoingMessage.prototype.destroy": 1, "OutgoingMessage.prototype._send": 1, "this._headerSent": 5, + "typeof": 132, "this._header": 10, "this.output.unshift": 1, "this.outputEncodings.unshift": 1, @@ -30019,10 +28818,12 @@ "this.connection.writable": 3, "this.output.length": 5, "this._buffer": 2, + "c": 775, "this.output.shift": 2, "this.outputEncodings.shift": 2, "this.connection.write": 4, "OutgoingMessage.prototype._buffer": 1, + "length": 48, "this.output.push": 2, "this.outputEncodings.push": 2, "lastEncoding": 2, @@ -30048,9 +28849,11 @@ "contentLengthExpression.test": 1, "dateExpression.test": 1, "expectExpression.test": 1, + "keys": 11, "Object.keys": 5, "isArray": 10, "Array.isArray": 7, + "l": 312, "keys.length": 5, "j": 265, "value.length": 1, @@ -30058,14 +28861,20 @@ "this.agent": 2, "this._send": 8, "OutgoingMessage.prototype.setHeader": 1, + "arguments.length": 18, + "throw": 27, + "Error": 16, + "name.toLowerCase": 6, "this._headerNames": 5, "OutgoingMessage.prototype.getHeader": 1, "OutgoingMessage.prototype.removeHeader": 1, + "delete": 39, "OutgoingMessage.prototype._renderHeaders": 1, "OutgoingMessage.prototype.write": 1, "this._implicitHeader": 2, "TypeError": 2, "chunk.length": 2, + "ret": 62, "Buffer.byteLength": 2, "len.toString": 2, "OutgoingMessage.prototype.addTrailers": 1, @@ -30073,9 +28882,11 @@ "hot": 3, ".toString": 3, "this.write": 1, + "Last": 2, "chunk.": 1, "this._finish": 2, "OutgoingMessage.prototype._finish": 1, + "instanceof": 19, "ServerResponse": 5, "DTRACE_HTTP_SERVER_RESPONSE": 1, "ClientRequest": 6, @@ -30108,6 +28919,7 @@ "statusCode": 7, "reasonPhrase": 4, "headerIndex": 4, + "obj": 40, "this._renderHeaders": 3, "obj.length": 1, "obj.push": 1, @@ -30125,6 +28937,7 @@ "self.options.maxSockets": 1, "Agent.defaultMaxSockets": 2, "self.on": 1, + "host": 29, "port": 29, "localAddress": 15, ".shift": 1, @@ -30145,16 +28958,19 @@ "options.port": 4, "options.host": 4, "options.localAddress": 3, + "s": 290, "onFree": 3, "self.emit": 9, "s.on": 4, "onClose": 3, + "err": 5, "self.removeSocket": 2, "onRemove": 3, "s.removeListener": 3, "Agent.prototype.removeSocket": 1, "index": 5, ".indexOf": 2, + ".splice": 5, ".emit": 1, "globalAgent": 3, "exports.globalAgent": 1, @@ -30168,8 +28984,10 @@ "setHost": 2, "self.socketPath": 4, "options.socketPath": 1, + "method": 30, "self.method": 3, "options.method": 2, + ".toUpperCase": 3, "self.path": 3, "options.path": 2, "self.once": 2, @@ -30224,6 +29042,7 @@ "this._httpMessage": 3, "this.parser": 2, "socketOnData": 1, + "end": 14, "parser.execute": 2, "bytesParsed": 4, "socket.ondata": 3, @@ -30237,12 +29056,20 @@ "parserOnIncomingClient": 1, "shouldKeepAlive": 4, "res.upgrade": 1, + "skip": 5, "isHeadResponse": 2, "res.statusCode": 1, "Clear": 1, + "so": 8, + "we": 25, + "don": 5, + "continue": 18, "ve": 3, + "been": 5, "upgraded": 1, + "via": 2, "WebSockets": 1, + "also": 5, "shouldn": 2, "AGENT": 2, "socket.destroySoon": 2, @@ -30251,12 +29078,16 @@ "close": 2, "free": 1, "number": 13, + "an": 12, "important": 1, "promisy": 1, "thing": 2, + "all": 16, + "the": 107, "onSocket": 3, "self.socket.writable": 1, "self.socket": 5, + ".apply": 7, "arguments_": 2, "self.socket.once": 1, "ClientRequest.prototype.setTimeout": 1, @@ -30300,6 +29131,7 @@ "parsers.alloc": 1, "parser.reinitialize": 1, "this.maxHeadersCount": 2, + "<<": 4, "socket.addListener": 2, "self.listeners": 2, "req.socket": 1, @@ -30324,6 +29156,8 @@ "continueExpression.test": 1, "res._expect_continue": 1, "res.writeContinue": 1, + "Not": 4, + "a": 1489, "response.": 1, "even": 3, "exports._connectionListener": 1, @@ -30339,8 +29173,3668 @@ "exports.Client": 1, "module.deprecate": 2, "exports.createClient": 1, + "cubes": 4, + "list": 21, + "math": 4, + "num": 23, + "opposite": 6, + "race": 4, + "square": 10, + "__slice": 2, + "Array.prototype.slice": 6, + "root": 5, + "Math.sqrt": 2, + "cube": 2, + "runners": 6, + "winner": 6, + "__slice.call": 2, + "print": 2, + "elvis": 4, + "_i": 10, + "_len": 6, + "_results": 6, + "list.length": 5, + "_results.push": 2, + "math.cube": 2, + ".slice": 6, + "window": 18, + "angular": 1, + "Array.prototype.last": 1, + "this.length": 41, + "app": 3, + "angular.module": 1, + "A": 24, + "w": 110, + "ma": 3, + "c.isReady": 4, + "try": 44, + "s.documentElement.doScroll": 2, + "catch": 38, + "c.ready": 7, + "Qa": 1, + "b.src": 4, + "c.ajax": 1, + "async": 5, + "dataType": 6, + "c.globalEval": 1, + "b.text": 3, + "b.textContent": 2, + "b.innerHTML": 3, + "b.parentNode": 4, + "b.parentNode.removeChild": 2, + "X": 6, + "f": 666, + "a.length": 23, + "o": 322, + "c.isFunction": 9, + "d.call": 3, + "J": 5, + ".getTime": 3, + "Y": 3, + "Z": 6, + "na": 1, + ".type": 2, + "c.event.handle.apply": 1, + "oa": 1, + "r": 261, + "c.data": 12, + "a.liveFired": 4, + "i.live": 1, + "a.button": 2, + "a.type": 14, + "u": 304, + "i.live.slice": 1, + "u.length": 3, + "i.origType.replace": 1, + "O": 6, + "f.push": 5, + "i.selector": 3, + "u.splice": 1, + "a.target": 5, + ".closest": 4, + "a.currentTarget": 4, + "j.length": 2, + ".selector": 1, + ".elem": 1, + "i.preType": 2, + "a.relatedTarget": 2, + "d.push": 1, + "elem": 101, + "handleObj": 2, + "d.length": 8, + "j.elem": 2, + "a.data": 2, + "j.handleObj.data": 1, + "a.handleObj": 2, + "j.handleObj": 1, + "j.handleObj.origHandler.apply": 1, + "pa": 1, + "b.replace": 3, + "/": 290, + "./g": 2, + ".replace": 38, + "/g": 37, + "qa": 1, + "a.parentNode": 6, + "a.parentNode.nodeType": 2, + "ra": 1, + "b.each": 1, + "this.nodeName": 4, + ".nodeName": 2, + "f.events": 1, + "e.handle": 2, + "e.events": 2, + "c.event.add": 1, + ".data": 3, + "sa": 2, + ".ownerDocument": 5, + "ta.test": 1, + "c.support.checkClone": 2, + "ua.test": 1, + "c.fragments": 2, + "b.createDocumentFragment": 1, + "c.clean": 1, + "fragment": 27, + "cacheable": 2, + "K": 4, + "c.each": 2, + "va.concat.apply": 1, + "va.slice": 1, + "wa": 1, + "a.document": 3, + "a.nodeType": 27, + "a.defaultView": 2, + "a.parentWindow": 2, + "c.fn.init": 1, + "Ra": 2, + "A.jQuery": 3, + "Sa": 2, + "A.": 3, + "A.document": 1, + "T": 4, + "Ta": 1, + "<[\\w\\W]+>": 4, + "|": 206, + "#": 13, + "Ua": 1, + ".": 91, + "Va": 1, + "S/": 4, + "Wa": 2, + "u00A0": 2, + "Xa": 1, + "<(\\w+)\\s*\\/?>": 4, + "<\\/\\1>": 4, + "P": 4, + "navigator.userAgent": 3, + "xa": 3, + "Q": 6, + "L": 10, + "Object.prototype.toString": 7, + "aa": 1, + "ba": 3, + "Array.prototype.push": 4, + "R": 2, + "ya": 2, + "Array.prototype.indexOf": 4, + "c.fn": 2, + "c.prototype": 1, + "init": 7, + "this.context": 17, + "s.body": 2, + "this.selector": 16, + "Ta.exec": 1, + "b.ownerDocument": 6, + "Xa.exec": 1, + "c.isPlainObject": 3, + "s.createElement": 10, + "c.fn.attr.call": 1, + "f.createElement": 1, + "a.cacheable": 1, + "a.fragment.cloneNode": 1, + "a.fragment": 1, + ".childNodes": 2, + "c.merge": 4, + "s.getElementById": 1, + "b.id": 1, + "T.find": 1, + "/.test": 19, + "s.getElementsByTagName": 2, + "b.jquery": 1, + ".find": 5, + "T.ready": 1, + "a.selector": 4, + "a.context": 2, + "c.makeArray": 3, + "selector": 40, + "jquery": 3, + "size": 6, + "toArray": 2, + "R.call": 2, + "get": 24, + "this.toArray": 3, + "this.slice": 5, + "pushStack": 4, + "c.isArray": 5, + "ba.apply": 1, + "f.prevObject": 1, + "f.context": 1, + "f.selector": 2, + "each": 17, + "ready": 31, + "c.bindReady": 1, + "a.call": 17, + "Q.push": 1, + "eq": 2, + "first": 10, + "this.eq": 4, + "last": 6, + "this.pushStack": 12, + "R.apply": 1, + ".join": 14, + "map": 7, + "c.map": 1, + "this.prevObject": 3, + "push": 11, + "sort": 4, + ".sort": 9, + "splice": 5, + "c.fn.init.prototype": 1, + "c.extend": 7, + "c.fn.extend": 4, + "noConflict": 4, + "isReady": 5, + "c.fn.triggerHandler": 1, + ".triggerHandler": 1, + "bindReady": 5, + "s.readyState": 2, + "s.addEventListener": 3, + "A.addEventListener": 1, + "s.attachEvent": 3, + "A.attachEvent": 1, + "A.frameElement": 1, + "isFunction": 12, + "isPlainObject": 4, + "a.setInterval": 2, + "a.constructor": 2, + "aa.call": 3, + "a.constructor.prototype": 2, + "isEmptyObject": 7, + "parseJSON": 4, + "c.trim": 3, + "a.replace": 7, + "@": 1, + "d*": 8, + "eE": 4, + "s*": 15, + "A.JSON": 1, + "A.JSON.parse": 2, + "Function": 3, + "c.error": 2, + "noop": 3, + "globalEval": 2, + "Va.test": 1, + "s.documentElement": 2, + "d.type": 2, + "c.support.scriptEval": 2, + "d.appendChild": 3, + "s.createTextNode": 2, + "d.text": 1, + "b.insertBefore": 3, + "b.firstChild": 5, + "b.removeChild": 3, + "nodeName": 20, + "a.nodeName": 12, + "a.nodeName.toUpperCase": 2, + "b.toUpperCase": 3, + "b.apply": 2, + "b.call": 4, + "trim": 5, + "makeArray": 3, + "ba.call": 1, + "inArray": 5, + "b.indexOf": 2, + "b.length": 12, + "merge": 2, + "grep": 6, + "f.length": 5, + "f.concat.apply": 1, + "guid": 5, + "proxy": 4, + "a.apply": 2, + "b.guid": 2, + "a.guid": 7, + "c.guid": 1, + "uaMatch": 3, + "a.toLowerCase": 4, + "webkit": 6, + "w.": 17, + "/.exec": 4, + "opera": 4, + ".*version": 4, + "msie": 4, + "/compatible/.test": 1, + "mozilla": 4, + ".*": 20, + "rv": 4, + "browser": 11, + "version": 10, + "c.uaMatch": 1, + "P.browser": 2, + "c.browser": 1, + "c.browser.version": 1, + "P.version": 1, + "c.browser.webkit": 1, + "c.browser.safari": 1, + "c.inArray": 2, + "ya.call": 1, + "s.removeEventListener": 1, + "s.detachEvent": 1, + "c.support": 2, + "d.style.display": 5, + "d.innerHTML": 2, + "d.getElementsByTagName": 6, + "e.length": 9, + "leadingWhitespace": 3, + "d.firstChild.nodeType": 1, + "tbody": 7, + "htmlSerialize": 3, + "style": 30, + "/red/.test": 1, + "j.getAttribute": 2, + "hrefNormalized": 3, + "opacity": 13, + "j.style.opacity": 1, + "cssFloat": 4, + "j.style.cssFloat": 1, + "checkOn": 4, + ".value": 1, + "optSelected": 3, + ".appendChild": 1, + ".selected": 1, + "parentNode": 10, + "d.removeChild": 1, + ".parentNode": 7, + "deleteExpando": 3, + "checkClone": 1, + "scriptEval": 1, + "noCloneEvent": 3, + "boxModel": 1, + "b.type": 4, + "b.appendChild": 1, + "a.insertBefore": 2, + "a.firstChild": 6, + "b.test": 1, + "c.support.deleteExpando": 2, + "a.removeChild": 2, + "d.attachEvent": 2, + "d.fireEvent": 1, + "c.support.noCloneEvent": 1, + "d.detachEvent": 1, + "d.cloneNode": 1, + ".fireEvent": 3, + "s.createDocumentFragment": 1, + "a.appendChild": 3, + "d.firstChild": 2, + "a.cloneNode": 3, + ".cloneNode": 4, + ".lastChild.checked": 2, + "k.style.width": 1, + "k.style.paddingLeft": 1, + "s.body.appendChild": 1, + "c.boxModel": 1, + "c.support.boxModel": 1, + "k.offsetWidth": 1, + "s.body.removeChild": 1, + ".style.display": 5, + "n.setAttribute": 1, + "c.support.submitBubbles": 1, + "c.support.changeBubbles": 1, + "c.props": 2, + "readonly": 3, + "maxlength": 2, + "cellspacing": 2, + "rowspan": 2, + "colspan": 2, + "tabindex": 4, + "usemap": 2, + "frameborder": 2, + "G": 11, + "Ya": 2, + "za": 3, + "cache": 45, + "expando": 14, + "noData": 3, + "embed": 3, + "applet": 2, + "c.noData": 2, + "a.nodeName.toLowerCase": 3, + "c.cache": 2, + "removeData": 8, + "c.isEmptyObject": 1, + "c.removeData": 2, + "c.expando": 2, + "a.removeAttribute": 3, + "this.each": 42, + "a.split": 4, + "this.triggerHandler": 6, + "this.trigger": 2, + ".each": 3, + "queue": 7, + "dequeue": 6, + "c.queue": 3, + "d.shift": 2, + "d.unshift": 2, + "f.call": 1, + "c.dequeue": 4, + "delay": 4, + "c.fx": 1, + "c.fx.speeds": 1, + "this.queue": 4, + "clearQueue": 2, + "Aa": 3, + "t": 436, + "ca": 6, + "Za": 2, + "r/g": 2, + "/href": 1, + "src": 7, + "style/": 1, + "ab": 1, + "button": 24, + "/i": 22, + "bb": 2, + "select": 20, + "textarea": 8, + "area": 2, + "Ba": 3, + "/radio": 1, + "checkbox/": 1, + "attr": 13, + "c.attr": 4, + "removeAttr": 5, + "this.nodeType": 4, + "this.removeAttribute": 1, + "addClass": 2, + "r.addClass": 1, + "r.attr": 1, + ".split": 19, + "e.nodeType": 7, + "e.className": 14, + "j.indexOf": 1, + "removeClass": 2, + "n.removeClass": 1, + "n.attr": 1, + "j.replace": 2, + "toggleClass": 2, + "j.toggleClass": 1, + "j.attr": 1, + "i.hasClass": 1, + "this.className": 10, + "hasClass": 2, + "": 1, + "className": 4, + "replace": 8, + "indexOf": 5, + "val": 13, + "c.nodeName": 4, + "b.attributes.value": 1, + ".specified": 1, + "b.value": 4, + "b.selectedIndex": 2, + "b.options": 1, + "": 1, + "i=": 31, + "selected": 5, + "a=": 23, + "test": 21, + "type": 49, + "support": 13, + "getAttribute": 3, + "on": 37, + "o=": 13, + "n=": 10, + "r=": 18, + "nodeType=": 6, + "call": 9, + "checked=": 1, + "this.selected": 1, + ".val": 5, + "this.selectedIndex": 1, + "this.value": 4, + "attrFn": 2, + "css": 7, + "html": 10, + "text": 14, + "width": 32, + "height": 25, + "offset": 21, + "c.attrFn": 1, + "c.isXMLDoc": 1, + "a.test": 2, + "ab.test": 1, + "a.getAttributeNode": 7, + ".nodeValue": 1, + "b.specified": 2, + "bb.test": 2, + "cb.test": 1, + "a.href": 2, + "c.support.style": 1, + "a.style.cssText": 3, + "a.setAttribute": 7, + "c.support.hrefNormalized": 1, + "a.getAttribute": 11, + "c.style": 1, + "db": 1, + "handle": 15, + "click": 11, + "events": 18, + "altKey": 4, + "attrChange": 4, + "attrName": 4, + "bubbles": 4, + "cancelable": 4, + "charCode": 7, + "clientX": 6, + "clientY": 5, + "ctrlKey": 6, + "currentTarget": 4, + "detail": 3, + "eventPhase": 4, + "fromElement": 6, + "handler": 14, + "keyCode": 6, + "layerX": 3, + "layerY": 3, + "metaKey": 5, + "newValue": 3, + "offsetX": 4, + "offsetY": 4, + "originalTarget": 1, + "pageX": 4, + "pageY": 4, + "prevValue": 3, + "relatedNode": 4, + "relatedTarget": 6, + "screenX": 4, + "screenY": 4, + "shiftKey": 4, + "srcElement": 5, + "toElement": 5, + "view": 4, + "wheelDelta": 3, + "which": 8, + "mouseover": 12, + "mouseout": 12, + "form": 12, + "click.specialSubmit": 2, + "submit": 14, + "image": 5, + "keypress.specialSubmit": 2, + "password": 5, + ".specialSubmit": 2, + "radio": 17, + "checkbox": 14, + "multiple": 7, + "_change_data": 6, + "focusout": 11, + "change": 16, + "file": 5, + ".specialChange": 4, + "focusin": 9, + "bind": 3, + "one": 15, + "unload": 5, + "live": 8, + "lastToggle": 4, + "die": 3, + "hover": 3, + "mouseenter": 9, + "mouseleave": 9, + "focus": 7, + "blur": 8, + "resize": 3, + "scroll": 6, + "dblclick": 3, + "mousedown": 3, + "mouseup": 3, + "mousemove": 3, + "keydown": 4, + "keypress": 4, + "keyup": 3, + "onunload": 1, + "g": 441, + "h": 499, + "q": 34, + "h.nodeType": 4, + "p": 110, + "S": 8, + "H": 8, + "M": 9, + "I": 7, + "f.exec": 2, + "p.push": 2, + "p.length": 10, + "r.exec": 1, + "n.relative": 5, + "ga": 2, + "p.shift": 4, + "n.match.ID.test": 2, + "k.find": 6, + "v.expr": 4, + "k.filter": 5, + "v.set": 5, + "expr": 2, + "p.pop": 4, + "set": 22, + "z": 21, + "h.parentNode": 3, + "D": 9, + "k.error": 2, + "j.call": 2, + ".nodeType": 9, + "E": 11, + "l.push": 2, + "l.push.apply": 1, + "k.uniqueSort": 5, + "B": 5, + "g.sort": 1, + "g.length": 2, + "g.splice": 2, + "k.matches": 1, + "n.order.length": 1, + "n.order": 1, + "n.leftMatch": 1, + ".exec": 2, + "q.splice": 1, + "y.substr": 1, + "y.length": 1, + "Syntax": 3, + "unrecognized": 3, + "expression": 4, + "ID": 8, + "NAME": 2, + "TAG": 2, + "u00c0": 2, + "uFFFF": 2, + "leftMatch": 2, + "attrMap": 2, + "attrHandle": 2, + "g.getAttribute": 1, + "relative": 4, + "W/.test": 1, + "h.toLowerCase": 2, + "": 1, + "previousSibling": 5, + "nth": 5, + "odd": 2, + "not": 26, + "reset": 2, + "contains": 8, + "only": 10, + "id": 38, + "class": 5, + "Array": 3, + "sourceIndex": 1, + "div": 28, + "script": 7, + "": 4, + "name=": 2, + "href=": 2, + "": 2, + "

": 2, + "

": 2, + ".TEST": 2, + "
": 3, + "CLASS": 1, + "HTML": 9, + "find": 7, + "filter": 10, + "nextSibling": 3, + "iframe": 3, + "": 1, + "": 1, + "
": 1, + "
": 1, + "": 4, + "
": 5, + "": 3, + "": 3, + "": 2, + "": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "before": 8, + "after": 7, + "position": 7, + "absolute": 2, + "top": 12, + "left": 14, + "margin": 8, + "border": 7, + "px": 31, + "solid": 2, + "#000": 2, + "padding": 4, + "": 1, + "": 1, + "fixed": 1, + "marginTop": 3, + "marginLeft": 2, + "using": 5, + "borderTopWidth": 1, + "borderLeftWidth": 1, + "Left": 1, + "Top": 1, + "pageXOffset": 2, + "pageYOffset": 1, + "Height": 1, + "Width": 1, + "inner": 2, + "outer": 2, + "scrollTo": 1, + "CSS1Compat": 1, + "client": 3, + "document": 26, + "window.document": 2, + "navigator": 3, + "window.navigator": 2, + "location": 2, + "window.location": 5, + "jQuery": 48, + "context": 48, + "The": 9, + "is": 67, + "actually": 2, + "just": 2, + "jQuery.fn.init": 2, + "rootjQuery": 8, + "Map": 4, + "over": 7, + "of": 28, + "overwrite": 4, + "_jQuery": 4, + "window.": 6, + "central": 2, + "reference": 5, + "simple": 3, + "way": 2, + "check": 8, + "strings": 8, + "both": 2, + "optimize": 3, + "quickExpr": 2, + "Check": 10, + "has": 9, + "non": 8, + "whitespace": 7, + "character": 3, + "it": 112, + "rnotwhite": 2, + "Used": 3, + "trimming": 2, + "trimLeft": 4, + "trimRight": 4, + "digits": 3, + "rdigit": 1, + "d/": 3, + "Match": 3, + "standalone": 2, + "tag": 2, + "rsingleTag": 2, + "JSON": 5, + "RegExp": 12, + "rvalidchars": 2, + "rvalidescape": 2, + "rvalidbraces": 2, + "Useragent": 2, + "rwebkit": 2, + "ropera": 2, + "rmsie": 2, + "rmozilla": 2, + "Keep": 2, + "UserAgent": 2, + "use": 10, + "with": 18, + "jQuery.browser": 4, + "userAgent": 3, + "For": 5, + "matching": 3, + "engine": 2, + "and": 42, + "browserMatch": 3, + "deferred": 25, + "used": 13, + "DOM": 21, + "readyList": 6, + "event": 31, + "DOMContentLoaded": 14, + "Save": 2, + "some": 2, + "core": 2, + "methods": 8, + "toString": 4, + "hasOwn": 2, + "String.prototype.trim": 3, + "Class": 2, + "pairs": 2, + "class2type": 3, + "jQuery.fn": 4, + "jQuery.prototype": 2, + "match": 30, + "doc": 4, + "Handle": 14, + "DOMElement": 2, + "selector.nodeType": 2, + "exists": 9, + "once": 4, + "finding": 2, + "Are": 2, + "dealing": 2, + "selector.charAt": 4, + "selector.length": 4, + "Assume": 2, + "are": 18, + "regex": 3, + "quickExpr.exec": 2, + "Verify": 3, + "no": 19, + "was": 6, + "specified": 4, + "#id": 3, + "HANDLE": 2, + "array": 7, + "context.ownerDocument": 2, + "If": 21, + "single": 2, + "passed": 5, + "clean": 3, + "like": 5, + "method.": 3, + "jQuery.fn.init.prototype": 2, + "jQuery.extend": 11, + "jQuery.fn.extend": 4, + "copy": 16, + "copyIsArray": 2, + "clone": 5, + "deep": 12, + "situation": 2, + "boolean": 8, + "when": 20, + "something": 3, + "possible": 3, + "jQuery.isFunction": 6, + "extend": 13, + "itself": 4, + "argument": 2, + "Only": 5, + "deal": 2, + "null/undefined": 2, + "values": 10, + "Extend": 2, + "base": 2, + "Prevent": 2, + "never": 2, + "ending": 2, + "loop": 7, + "Recurse": 2, + "bring": 2, + "Return": 2, + "modified": 3, + "Is": 2, + "be": 12, + "Set": 4, + "occurs.": 2, + "counter": 2, + "track": 2, + "how": 2, + "many": 3, + "items": 2, + "wait": 12, + "fires.": 2, + "See": 9, + "#6781": 2, + "readyWait": 6, + "Hold": 2, + "release": 2, + "holdReady": 3, + "hold": 6, + "jQuery.readyWait": 6, + "jQuery.ready": 16, + "Either": 2, + "released": 2, + "DOMready/load": 2, + "yet": 2, + "jQuery.isReady": 6, + "Make": 17, + "sure": 18, + "at": 58, + "least": 4, + "IE": 28, + "gets": 6, + "little": 4, + "overzealous": 4, + "ticket": 4, + "#5443": 4, + "Remember": 2, + "normal": 2, + "Ready": 2, + "fired": 12, + "decrement": 2, + "need": 10, + "there": 6, + "functions": 6, + "bound": 8, + "execute": 4, + "readyList.resolveWith": 1, + "Trigger": 2, + "any": 12, + "jQuery.fn.trigger": 2, + ".trigger": 3, + ".unbind": 4, + "jQuery._Deferred": 3, + "Catch": 2, + "cases": 4, + "where": 2, + ".ready": 2, + "called": 2, + "already": 6, + "occurred.": 2, + "document.readyState": 4, + "asynchronously": 2, + "allow": 6, + "scripts": 2, + "opportunity": 2, + "Mozilla": 2, + "Opera": 2, + "nightlies": 3, + "currently": 4, + "document.addEventListener": 6, + "Use": 7, + "handy": 2, + "fallback": 4, + "window.onload": 4, + "will": 7, + "always": 6, + "work": 6, + "window.addEventListener": 2, + "model": 14, + "document.attachEvent": 6, + "ensure": 2, + "firing": 16, + "onload": 2, + "maybe": 2, + "late": 2, + "but": 4, + "safe": 3, + "iframes": 2, + "window.attachEvent": 2, + "frame": 23, + "continually": 2, + "see": 6, + "toplevel": 7, + "window.frameElement": 2, + "document.documentElement.doScroll": 4, + "doScrollCheck": 6, + "test/unit/core.js": 2, + "details": 3, + "concerning": 2, + "isFunction.": 2, + "Since": 3, + "aren": 5, + "pass": 7, + "through": 3, + "as": 11, + "well": 2, + "jQuery.type": 4, + "obj.nodeType": 2, + "jQuery.isWindow": 2, + "own": 4, + "property": 15, + "must": 4, + "Object": 4, + "obj.constructor": 2, + "hasOwn.call": 6, + "obj.constructor.prototype": 2, + "Own": 2, + "properties": 7, + "enumerated": 2, + "firstly": 2, + "speed": 4, + "up": 4, + "then": 8, + "own.": 2, + "msg": 4, + "leading/trailing": 2, + "removed": 3, + "can": 10, + "breaking": 1, + "spaces": 3, + "rnotwhite.test": 2, + "xA0": 7, + "document.removeEventListener": 2, + "document.detachEvent": 2, + "trick": 2, + "Diego": 2, + "Perini": 2, + "http": 6, + "//javascript.nwbox.com/IEContentLoaded/": 2, + "waiting": 2, + "Promise": 1, + "promiseMethods": 3, + "Static": 1, + "sliceDeferred": 1, + "Create": 1, + "callbacks": 10, + "_Deferred": 4, + "stored": 4, + "args": 31, + "avoid": 5, + "doing": 3, + "flag": 1, + "know": 3, + "cancelled": 5, + "done": 10, + "f1": 1, + "f2": 1, + "...": 1, + "_fired": 5, + "args.length": 3, + "deferred.done.apply": 2, + "callbacks.push": 1, + "deferred.resolveWith": 5, + "resolve": 7, + "given": 3, + "resolveWith": 4, + "make": 2, + "available": 1, + "#8421": 1, + "callbacks.shift": 1, + "finally": 3, + "Has": 1, + "resolved": 1, + "isResolved": 3, + "Cancel": 1, + "cancel": 6, + "Full": 1, + "fledged": 1, + "two": 1, + "Deferred": 5, + "func": 3, + "failDeferred": 1, + "promise": 14, + "Add": 4, + "errorDeferred": 1, + "doneCallbacks": 2, + "failCallbacks": 2, + "deferred.done": 2, + ".fail": 2, + ".fail.apply": 1, + "fail": 10, + "failDeferred.done": 1, + "rejectWith": 2, + "failDeferred.resolveWith": 1, + "reject": 4, + "failDeferred.resolve": 1, + "isRejected": 2, + "failDeferred.isResolved": 1, + "pipe": 2, + "fnDone": 2, + "fnFail": 2, + "jQuery.Deferred": 1, + "newDefer": 3, + "jQuery.each": 2, + "fn": 14, + "action": 3, + "returned": 4, + "fn.apply": 1, + "returned.promise": 2, + ".then": 3, + "newDefer.resolve": 1, + "newDefer.reject": 1, + ".promise": 5, + "Get": 4, + "provided": 1, + "aspect": 1, + "added": 1, + "promiseMethods.length": 1, + "failDeferred.cancel": 1, + "deferred.cancel": 2, + "Unexpose": 1, + "Call": 1, + "func.call": 1, + "helper": 1, + "firstParam": 6, + "count": 4, + "<=>": 1, + "1": 97, + "resolveFunc": 2, + "sliceDeferred.call": 2, + "Strange": 1, + "bug": 3, + "FF4": 1, + "Values": 1, + "changed": 3, + "onto": 2, + "sometimes": 1, + "outside": 2, + ".when": 1, + "Cloning": 2, + "into": 2, + "fresh": 1, + "solves": 1, + "issue": 1, + "deferred.reject": 1, + "deferred.promise": 1, + "jQuery.support": 1, + "document.createElement": 26, + "documentElement": 2, + "document.documentElement": 2, + "opt": 2, + "marginDiv": 5, + "bodyStyle": 1, + "tds": 6, + "isSupported": 7, + "Preliminary": 1, + "tests": 48, + "div.setAttribute": 1, + "div.innerHTML": 7, + "div.getElementsByTagName": 6, + "Can": 2, + "automatically": 2, + "inserted": 1, + "insert": 1, + "them": 3, + "empty": 3, + "tables": 1, + "link": 2, + "elements": 9, + "serialized": 3, + "correctly": 1, + "innerHTML": 1, + "This": 3, + "requires": 1, + "wrapper": 1, + "information": 5, + "from": 7, + "uses": 3, + ".cssText": 2, + "instead": 6, + "/top/.test": 2, + "URLs": 1, + "optgroup": 5, + "opt.selected": 1, + "Test": 3, + "setAttribute": 1, + "camelCase": 3, + "class.": 1, + "works": 1, + "attrFixes": 1, + "get/setAttribute": 1, + "ie6/7": 1, + "getSetAttribute": 3, + "div.className": 1, + "Will": 2, + "defined": 3, + "later": 1, + "submitBubbles": 3, + "changeBubbles": 3, + "focusinBubbles": 2, + "inlineBlockNeedsLayout": 3, + "shrinkWrapBlocks": 2, + "reliableMarginRight": 2, + "checked": 4, + "status": 3, + "properly": 2, + "cloned": 1, + "input.checked": 1, + "support.noCloneChecked": 1, + "input.cloneNode": 1, + ".checked": 2, + "inside": 3, + "disabled": 11, + "selects": 1, + "Fails": 2, + "Internet": 1, + "Explorer": 1, + "div.test": 1, + "support.deleteExpando": 1, + "div.addEventListener": 1, + "div.attachEvent": 2, + "div.fireEvent": 1, + "node": 23, + "being": 2, + "appended": 2, + "input.value": 5, + "input.setAttribute": 5, + "support.radioValue": 2, + "div.appendChild": 4, + "document.createDocumentFragment": 3, + "fragment.appendChild": 2, + "div.firstChild": 3, + "WebKit": 9, + "doesn": 2, + "inline": 3, + "display": 7, + "none": 4, + "GC": 2, + "references": 1, + "across": 1, + "JS": 7, + "boundary": 1, + "isNode": 11, + "elem.nodeType": 8, + "nodes": 14, + "global": 5, + "attached": 1, + "directly": 2, + "occur": 1, + "jQuery.cache": 3, + "defining": 1, + "objects": 7, + "its": 2, + "allows": 1, + "code": 2, + "shortcut": 1, + "same": 1, + "jQuery.expando": 12, + "Avoid": 1, + "more": 6, + "than": 3, + "trying": 1, + "pvt": 8, + "internalKey": 12, + "getByName": 3, + "unique": 2, + "since": 1, + "their": 3, + "ends": 1, + "jQuery.uuid": 1, + "TODO": 2, + "hack": 2, + "ONLY.": 2, + "Avoids": 2, + "exposing": 2, + "metadata": 2, + "plain": 2, + ".toJSON": 4, + "jQuery.noop": 2, + "An": 1, + "jQuery.data": 15, + "key/value": 1, + "pair": 1, + "shallow": 1, + "copied": 1, + "existing": 1, + "thisCache": 15, + "Internal": 1, + "separate": 1, + "destroy": 1, + "unless": 2, + "internal": 8, + "had": 1, + "isEmptyDataObject": 3, + "internalCache": 3, + "Browsers": 1, + "deletion": 1, + "refuse": 1, + "expandos": 2, + "other": 3, + "browsers": 2, + "faster": 1, + "iterating": 1, + "persist": 1, + "existed": 1, + "Otherwise": 2, + "eliminate": 2, + "lookups": 2, + "entries": 2, + "longer": 2, + "exist": 2, + "does": 9, + "us": 2, + "nor": 2, + "have": 6, + "removeAttribute": 3, + "Document": 2, + "these": 2, + "jQuery.support.deleteExpando": 3, + "elem.removeAttribute": 6, + "only.": 2, + "_data": 3, + "determining": 3, + "acceptData": 3, + "elem.nodeName": 2, + "jQuery.noData": 2, + "elem.nodeName.toLowerCase": 2, + "elem.getAttribute": 7, + ".attributes": 2, + "attr.length": 2, + ".name": 3, + "name.indexOf": 2, + "jQuery.camelCase": 6, + "name.substring": 2, + "dataAttr": 6, + "parts": 28, + "key.split": 2, + "Try": 4, + "fetch": 4, + "internally": 5, + "jQuery.removeData": 2, + "nothing": 2, + "found": 10, + "HTML5": 3, + "attribute": 5, + "key.replace": 2, + "rmultiDash": 3, + ".toLowerCase": 7, + "jQuery.isNaN": 1, + "rbrace.test": 2, + "jQuery.parseJSON": 2, + "isn": 2, + "option.selected": 2, + "jQuery.support.optDisabled": 2, + "option.disabled": 2, + "option.getAttribute": 2, + "option.parentNode.disabled": 2, + "jQuery.nodeName": 3, + "option.parentNode": 2, + "specific": 2, + "We": 6, + "get/set": 2, + "attributes": 14, + "comment": 3, + "nType": 8, + "jQuery.attrFn": 2, + "Fallback": 2, + "prop": 24, + "supported": 2, + "jQuery.prop": 2, + "hooks": 14, + "notxml": 8, + "jQuery.isXMLDoc": 2, + "Normalize": 1, + "needed": 2, + "jQuery.attrFix": 2, + "jQuery.attrHooks": 2, + "boolHook": 3, + "rboolean.test": 4, + "value.toLowerCase": 2, + "formHook": 3, + "forms": 1, + "certain": 2, + "characters": 6, + "rinvalidChar.test": 1, + "jQuery.removeAttr": 2, + "hooks.set": 2, + "elem.setAttribute": 2, + "hooks.get": 2, + "Non": 3, + "existent": 2, + "normalize": 2, + "propName": 8, + "jQuery.support.getSetAttribute": 1, + "jQuery.attr": 2, + "elem.removeAttributeNode": 1, + "elem.getAttributeNode": 1, + "corresponding": 2, + "jQuery.propFix": 2, + "attrHooks": 3, + "tabIndex": 4, + "readOnly": 2, + "htmlFor": 2, + "maxLength": 2, + "cellSpacing": 2, + "cellPadding": 2, + "rowSpan": 2, + "colSpan": 2, + "useMap": 2, + "frameBorder": 2, + "contentEditable": 2, + "auto": 3, + "&": 13, + "getData": 3, + "setData": 3, + "changeData": 3, + "bubbling": 1, + "live.": 2, + "hasDuplicate": 1, + "baseHasDuplicate": 2, + "rBackslash": 1, + "rNonWord": 1, + "W/": 2, + "Sizzle": 1, + "results": 4, + "seed": 1, + "origContext": 1, + "context.nodeType": 2, + "checkSet": 1, + "extra": 1, + "cur": 6, + "pop": 1, + "prune": 1, + "contextXML": 1, + "Sizzle.isXML": 1, + "soFar": 1, + "Reset": 1, + "cy": 4, + "f.isWindow": 2, + "cv": 2, + "cj": 4, + ".appendTo": 2, + "b.css": 1, + "b.remove": 1, + "ck": 5, + "c.createElement": 12, + "ck.frameBorder": 1, + "ck.width": 1, + "ck.height": 1, + "c.body.appendChild": 1, + "cl": 3, + "ck.createElement": 1, + "ck.contentWindow": 1, + "ck.contentDocument": 1, + ".document": 1, + "cl.write": 1, + "cl.createElement": 1, + "cl.body.appendChild": 1, + "f.css": 24, + "c.body.removeChild": 1, + "cu": 18, + "f.each": 21, + "cp.concat.apply": 1, + "cp.slice": 1, + "ct": 34, + "cq": 3, + "cs": 3, + "f.now": 2, + "ci": 29, + "a.ActiveXObject": 3, + "ch": 58, + "a.XMLHttpRequest": 1, + "a.dataFilter": 2, + "a.dataType": 1, + "a.dataTypes": 2, + "a.converters": 3, + "o.split": 1, + "f.error": 4, + "m.replace": 1, + "a.contents": 1, + "a.responseFields": 1, + "f.shift": 1, + "a.mimeType": 1, + "c.getResponseHeader": 1, + ".test": 1, + "f.unshift": 2, + "b_": 4, + "f.isArray": 8, + "bF.test": 1, + "c.dataTypes": 1, + "h.length": 3, + "bU": 4, + "c.dataTypes.unshift": 1, + "bZ": 3, + "f.isFunction": 21, + "b.toLowerCase": 3, + "bQ": 3, + "h.substr": 1, + "bD": 3, + "bx": 2, + "a.offsetWidth": 6, + "a.offsetHeight": 2, + "bn": 2, + "f.ajax": 3, + "f.globalEval": 2, + "bf": 6, + "bm": 3, + "f.nodeName": 16, + "bl": 3, + "a.getElementsByTagName": 9, + "f.grep": 3, + "a.defaultChecked": 1, + "a.checked": 4, + "bk": 5, + "a.querySelectorAll": 1, + "bj": 3, + "b.nodeType": 6, + "b.clearAttributes": 2, + "b.mergeAttributes": 2, + "b.nodeName.toLowerCase": 1, + "b.outerHTML": 1, + "a.outerHTML": 1, + "b.selected": 1, + "a.defaultSelected": 1, + "b.defaultValue": 1, + "a.defaultValue": 1, + "b.defaultChecked": 1, + "b.checked": 1, + "a.value": 8, + "b.removeAttribute": 3, + "f.expando": 23, + "bi": 27, + "f.hasData": 2, + "f.data": 25, + "d.events": 1, + "f.extend": 23, + "": 1, + "bh": 1, + "table": 6, + "getElementsByTagName": 1, + "0": 220, + "appendChild": 1, + "ownerDocument": 9, + "createElement": 3, + "b=": 25, + "e=": 21, + "nodeType": 1, + "d=": 15, + "W": 3, + "N": 2, + "f._data": 15, + "r.live": 1, + "a.target.disabled": 1, + "a.namespace": 1, + "a.namespace.split": 1, + "r.live.slice": 1, + "s.length": 2, + "g.origType.replace": 1, + "q.push": 1, + "g.selector": 3, + "s.splice": 1, + "m.selector": 1, + "n.test": 2, + "g.namespace": 1, + "m.elem.disabled": 1, + "m.elem": 1, + "g.preType": 3, + "f.contains": 5, + "level": 3, + "m.level": 1, + "": 1, + "e.elem": 2, + "e.handleObj.data": 1, + "e.handleObj": 1, + "e.handleObj.origHandler.apply": 1, + "a.isPropagationStopped": 1, + "e.level": 1, + "a.isImmediatePropagationStopped": 1, + "e.type": 6, + "e.originalEvent": 1, + "e.liveFired": 1, + "f.event.handle.call": 1, + ".preventDefault": 1, + "F": 8, + "f.removeData": 4, + "i.resolve": 1, + "c.replace": 4, + "f.isNaN": 3, + "i.test": 1, + "f.parseJSON": 2, + "a.navigator": 1, + "a.location": 1, + "e.isReady": 1, + "c.documentElement.doScroll": 2, + "e.ready": 6, + "e.fn.init": 1, + "a.jQuery": 2, + "a.": 2, + "d.userAgent": 1, + "C": 4, + "e.fn": 2, + "e.prototype": 1, + "c.body": 4, + "a.charAt": 2, + "i.exec": 1, + "d.ownerDocument": 1, + "n.exec": 1, + "e.isPlainObject": 1, + "e.fn.attr.call": 1, + "k.createElement": 1, + "e.buildFragment": 1, + "j.cacheable": 1, + "e.clone": 1, + "j.fragment": 2, + "e.merge": 3, + "c.getElementById": 1, + "h.id": 1, + "f.find": 2, + "d.jquery": 1, + "e.isFunction": 5, + "f.ready": 1, + "e.makeArray": 1, + "D.call": 4, + "e.isArray": 2, + "C.apply": 1, + "d.prevObject": 1, + "d.context": 2, + "d.selector": 2, + "e.each": 2, + "e.bindReady": 1, + "y.done": 1, + "D.apply": 1, + "e.map": 1, + "e.fn.init.prototype": 1, + "e.extend": 2, + "e.fn.extend": 1, + "": 1, + "f=": 13, + "g=": 15, + "h=": 19, + "jQuery=": 2, + "isReady=": 1, + "y.resolveWith": 1, + "e.fn.trigger": 1, + "e._Deferred": 1, + "c.readyState": 2, + "c.addEventListener": 4, + "a.addEventListener": 4, + "c.attachEvent": 3, + "a.attachEvent": 6, + "a.frameElement": 1, + "isWindow": 2, + "isNaN": 6, + "m.test": 1, + "String": 2, + "A.call": 1, + "e.isWindow": 2, + "B.call": 3, + "e.trim": 1, + "a.JSON": 1, + "a.JSON.parse": 2, + "o.test": 1, + "e.error": 2, + "parseXML": 1, + "a.DOMParser": 1, + "DOMParser": 1, + "d.parseFromString": 1, + "ActiveXObject": 1, + "c.async": 4, + "c.loadXML": 1, + "c.documentElement": 4, + "d.nodeName": 4, + "j.test": 3, + "a.execScript": 1, + "a.eval.call": 1, + "c.apply": 2, + "c.call": 3, + "E.call": 1, + "C.call": 1, + "F.call": 1, + "c.length": 8, + "": 1, + "j=": 14, + "k=": 11, + "h.concat.apply": 1, + "f.concat": 1, + "g.guid": 3, + "e.guid": 3, + "access": 2, + "e.access": 1, + "now": 5, + "s.exec": 1, + "t.exec": 1, + "u.exec": 1, + "a.indexOf": 2, + "v.exec": 1, + "sub": 4, + "a.fn.init": 2, + "a.superclass": 1, + "a.fn": 2, + "a.prototype": 1, + "a.fn.constructor": 1, + "a.sub": 1, + "this.sub": 2, + "e.fn.init.call": 1, + "a.fn.init.prototype": 1, + "e.uaMatch": 1, + "x.browser": 2, + "e.browser": 1, + "e.browser.version": 1, + "x.version": 1, + "e.browser.webkit": 1, + "e.browser.safari": 1, + "c.removeEventListener": 2, + "c.detachEvent": 1, + "": 1, + "c=": 24, + "shift": 1, + "apply": 8, + "h.call": 2, + "g.resolveWith": 3, + "<=1&&a&&f.isFunction(a.promise)?a:f.Deferred();if(d>": 1, + "g.reject": 1, + "g.promise": 1, + "f.support": 2, + "a.innerHTML": 7, + "f.appendChild": 1, + "a.firstChild.nodeType": 2, + "e.getAttribute": 2, + "e.style.opacity": 1, + "e.style.cssFloat": 1, + "h.value": 3, + "g.selected": 1, + "a.className": 1, + "h.checked": 2, + "j.noCloneChecked": 1, + "h.cloneNode": 1, + "f.disabled": 1, + "j.optDisabled": 1, + "g.disabled": 1, + "j.deleteExpando": 1, + "a.fireEvent": 1, + "j.noCloneEvent": 1, + "a.detachEvent": 1, + "h.setAttribute": 2, + "j.radioValue": 1, + "c.createDocumentFragment": 1, + "k.appendChild": 1, + "j.checkClone": 1, + "k.cloneNode": 1, + "a.style.width": 1, + "a.style.paddingLeft": 1, + "visibility": 3, + "background": 56, + "l.style": 1, + "l.appendChild": 1, + "j.appendChecked": 1, + "j.boxModel": 1, + "a.style": 8, + "a.style.display": 3, + "a.style.zoom": 1, + "j.inlineBlockNeedsLayout": 1, + "j.shrinkWrapBlocks": 1, + ".offsetHeight": 4, + "j.reliableHiddenOffsets": 1, + "c.defaultView": 2, + "c.defaultView.getComputedStyle": 3, + "i.style.width": 1, + "i.style.marginRight": 1, + "j.reliableMarginRight": 1, + "parseInt": 12, + "marginRight": 2, + ".marginRight": 2, + "l.innerHTML": 1, + "f.boxModel": 1, + "f.support.boxModel": 4, + "uuid": 2, + "f.fn.jquery": 1, + "Math.random": 2, + "D/g": 2, + "hasData": 2, + "f.cache": 5, + "f.acceptData": 4, + "f.uuid": 1, + "f.noop": 4, + "f.camelCase": 5, + ".events": 1, + "f.support.deleteExpando": 3, + "f.noData": 2, + "f.fn.extend": 9, + "g.indexOf": 2, + "g.substring": 1, + "b.triggerHandler": 2, + "_mark": 2, + "_unmark": 3, + "f.makeArray": 5, + "e.push": 3, + "f.queue": 3, + "c.shift": 2, + "c.unshift": 1, + "f.dequeue": 4, + "f.fx": 2, + "f.fx.speeds": 1, + "d.resolveWith": 1, + "f.Deferred": 2, + "f._Deferred": 2, + "l.done": 1, + "d.promise": 1, + "rea": 1, + "autofocus": 1, + "autoplay": 1, + "controls": 1, + "defer": 1, + "required": 1, + "scoped": 1, + "f.access": 3, + "f.attr": 2, + "f.removeAttr": 3, + "f.prop": 2, + "removeProp": 1, + "f.propFix": 6, + "c.addClass": 1, + "f.trim": 2, + "c.removeClass": 1, + "g.nodeType": 6, + "g.className": 4, + "h.replace": 2, + "d.toggleClass": 1, + "d.attr": 1, + "h.hasClass": 1, + "": 1, + "f.valHooks": 7, + "e.nodeName.toLowerCase": 1, + "c.get": 1, + "e.value": 1, + "e.val": 1, + "f.map": 5, + "this.nodeName.toLowerCase": 1, + "this.type": 3, + "c.set": 1, + "valHooks": 1, + "a.attributes.value": 1, + "a.text": 1, + "a.selectedIndex": 3, + "a.options": 2, + "": 3, + "optDisabled": 1, + "selected=": 1, + "attrFix": 1, + "f.attrFn": 3, + "f.isXMLDoc": 4, + "f.attrFix": 3, + "f.attrHooks": 5, + "t.test": 2, + "d.toLowerCase": 1, + "c.toLowerCase": 4, + "u.test": 1, + "i.set": 1, + "i.get": 1, + "f.support.getSetAttribute": 2, + "a.removeAttributeNode": 1, + "q.test": 1, + "f.support.radioValue": 1, + "c.specified": 1, + "c.value": 1, + "r.test": 1, + "s.test": 1, + "propFix": 1, + "cellpadding": 1, + "contenteditable": 1, + "f.propHooks": 1, + "h.set": 1, + "h.get": 1, + "propHooks": 1, + "f.attrHooks.value": 1, + "v.get": 1, + "f.attrHooks.name": 1, + "f.valHooks.button": 1, + "d.nodeValue": 3, + "f.support.hrefNormalized": 1, + "f.support.style": 1, + "f.attrHooks.style": 1, + "a.style.cssText.toLowerCase": 1, + "f.support.optSelected": 1, + "f.propHooks.selected": 2, + "b.parentNode.selectedIndex": 1, + "f.support.checkOn": 1, + "f.inArray": 4, + "s.": 1, + "f.event": 2, + "d.handler": 1, + "g.handler": 1, + "d.guid": 4, + "f.guid": 3, + "i.events": 2, + "i.handle": 2, + "f.event.triggered": 3, + "f.event.handle.apply": 1, + "k.elem": 2, + "c.split": 2, + "l.indexOf": 1, + "l.split": 1, + "n.shift": 1, + "h.namespace": 2, + "n.slice": 1, + "h.type": 1, + "h.guid": 2, + "f.event.special": 5, + "p.setup": 1, + "p.setup.call": 1, + "p.add": 1, + "p.add.call": 1, + "h.handler.guid": 2, + "o.push": 1, + "f.event.global": 2, + "remove": 9, + "s.events": 1, + "c.type": 9, + "c.handler": 1, + "c.charAt": 1, + "f.event.remove": 5, + "h.indexOf": 3, + "h.split": 2, + "m.shift": 1, + "m.slice": 1, + "q.namespace": 1, + "q.handler": 1, + "p.splice": 1, + "": 1, + "u=": 12, + "elem=": 4, + "customEvent": 1, + "trigger": 4, + "h.slice": 1, + "i.shift": 1, + "i.sort": 1, + "f.event.customEvent": 1, + "f.Event": 2, + "c.exclusive": 2, + "c.namespace": 2, + "i.join": 2, + "c.namespace_re": 1, + "c.preventDefault": 3, + "c.stopPropagation": 1, + "b.events": 4, + "f.event.trigger": 6, + "b.handle.elem": 2, + "c.result": 3, + "c.target": 3, + "do": 15, + "c.currentTarget": 2, + "m.apply": 1, + "k.parentNode": 1, + "k.ownerDocument": 1, + "c.target.ownerDocument": 1, + "c.isPropagationStopped": 1, + "c.isDefaultPrevented": 2, + "o._default": 1, + "o._default.call": 1, + "e.ownerDocument": 1, + "f.event.fix": 2, + "a.event": 1, + "Array.prototype.slice.call": 1, + "namespace_re": 1, + "namespace": 1, + "handler=": 1, + "data=": 2, + "handleObj=": 1, + "result=": 1, + "preventDefault": 4, + "stopPropagation": 5, + "isImmediatePropagationStopped": 2, + "props": 21, + "split": 4, + "fix": 1, + "Event": 3, + "target=": 2, + "relatedTarget=": 1, + "fromElement=": 1, + "pageX=": 2, + "scrollLeft": 2, + "clientLeft": 2, + "pageY=": 1, + "scrollTop": 2, + "clientTop": 2, + "which=": 3, + "metaKey=": 1, + "2": 66, + "3": 13, + "4": 4, + "1e8": 1, + "special": 3, + "setup": 5, + "teardown": 6, + "origType": 2, + "beforeunload": 1, + "onbeforeunload=": 3, + "removeEvent=": 1, + "removeEventListener": 3, + "detachEvent": 2, + "Event=": 1, + "originalEvent=": 1, + "type=": 5, + "isDefaultPrevented=": 2, + "defaultPrevented": 1, + "returnValue=": 2, + "getPreventDefault": 2, + "timeStamp=": 1, + "prototype=": 2, + "originalEvent": 2, + "isPropagationStopped=": 1, + "cancelBubble=": 1, + "stopImmediatePropagation": 1, + "isImmediatePropagationStopped=": 1, + "isDefaultPrevented": 1, + "isPropagationStopped": 1, + "G=": 1, + "H=": 1, + "submit=": 1, + "specialSubmit": 3, + "closest": 3, + "keyCode=": 1, + "J=": 1, + "selectedIndex": 1, + "a.selected": 1, + "z.test": 3, + "d.readOnly": 1, + "c.liveFired": 1, + "f.event.special.change": 1, + "filters": 1, + "beforedeactivate": 1, + "K.call": 2, + "a.keyCode": 2, + "beforeactivate": 1, + "f.event.add": 2, + "f.event.special.change.filters": 1, + "I.focus": 1, + "I.beforeactivate": 1, + "f.support.focusinBubbles": 1, + "c.originalEvent": 1, + "a.preventDefault": 3, + "f.fn": 9, + "e.apply": 1, + "this.one": 1, + "unbind": 2, + "this.unbind": 2, + "delegate": 1, + "this.live": 1, + "undelegate": 1, + "this.die": 1, + "triggerHandler": 1, + "%": 26, + ".guid": 1, + "this.click": 1, + "this.mouseenter": 1, + ".mouseleave": 1, + "g.charAt": 1, + "n.unbind": 1, + "y.exec": 1, + "a.push": 2, + "n.length": 1, + "": 1, + "this.bind": 2, + "": 2, + "sizcache=": 4, + "sizset": 2, + "sizset=": 2, + "toLowerCase": 3, + "d.nodeType": 5, + "k.isXML": 4, + "a.exec": 2, + "x.push": 1, + "x.length": 8, + "m.exec": 1, + "l.relative": 6, + "x.shift": 4, + "l.match.ID.test": 2, + "q.expr": 4, + "q.set": 4, + "x.pop": 4, + "d.parentNode": 4, + "e.call": 1, + "f.push.apply": 1, + "k.contains": 5, + "a.sort": 1, + "": 1, + "matches=": 1, + "matchesSelector=": 1, + "l.order.length": 1, + "l.order": 1, + "l.leftMatch": 1, + "j.substr": 1, + "": 1, + "__sizzle__": 1, + "sizzle": 1, + "l.match.PSEUDO.test": 1, + "a.document.nodeType": 1, + "a.getElementsByClassName": 3, + "a.lastChild.className": 1, + "l.order.splice": 1, + "l.find.CLASS": 1, + "b.getElementsByClassName": 2, + "c.documentElement.contains": 1, + "a.contains": 2, + "c.documentElement.compareDocumentPosition": 1, + "a.compareDocumentPosition": 1, + "a.ownerDocument": 1, + ".documentElement": 1, + "b.nodeName": 2, + "l.match.PSEUDO.exec": 1, + "l.match.PSEUDO": 1, + "f.expr": 4, + "k.selectors": 1, + "f.expr.filters": 3, + "f.unique": 4, + "f.text": 2, + "k.getText": 1, + "/Until": 1, + "parents": 2, + "prevUntil": 2, + "prevAll": 2, + "U": 1, + "f.expr.match.POS": 1, + "V": 2, + "children": 3, + "contents": 4, + "next": 9, + "prev": 2, + ".filter": 2, + "": 1, + "e.splice": 1, + "this.filter": 2, + "": 1, + "": 1, + ".is": 2, + "c.push": 3, + "g.parentNode": 2, + "U.test": 1, + "": 1, + "f.find.matchesSelector": 2, + "g.ownerDocument": 1, + "this.parent": 2, + ".children": 1, + "a.jquery": 2, + "f.merge": 2, + "this.get": 1, + "andSelf": 1, + "this.add": 1, + "f.dir": 6, + "parentsUntil": 1, + "f.nth": 2, + "nextAll": 1, + "nextUntil": 1, + "siblings": 1, + "f.sibling": 2, + "a.parentNode.firstChild": 1, + "a.contentDocument": 1, + "a.contentWindow.document": 1, + "a.childNodes": 1, + "T.call": 1, + "P.test": 1, + "f.filter": 2, + "R.test": 1, + "Q.test": 1, + "e.reverse": 1, + "g.join": 1, + "f.find.matches": 1, + "dir": 1, + "sibling": 1, + "a.nextSibling": 1, + "<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:]+)[^>": 1, + "/ig": 3, + "tbody/i": 1, + "bc": 1, + "bd": 1, + "/checked": 1, + "s*.checked.": 1, + "java": 1, + "ecma": 1, + "script/i": 1, + "CDATA": 1, + "bg": 3, + "legend": 1, + "thead": 2, + "tr": 23, + "td": 3, + "col": 7, + "_default": 5, + "bg.optgroup": 1, + "bg.option": 1, + "bg.tbody": 1, + "bg.tfoot": 1, + "bg.colgroup": 1, + "bg.caption": 1, + "bg.thead": 1, + "bg.th": 1, + "bg.td": 1, + "f.support.htmlSerialize": 1, + "bg._default": 2, + "c.text": 2, + "this.empty": 3, + ".append": 6, + ".createTextNode": 1, + "wrapAll": 1, + ".wrapAll": 2, + ".eq": 1, + ".clone": 1, + "b.map": 1, + "wrapInner": 1, + ".wrapInner": 1, + "b.contents": 1, + "c.wrapAll": 1, + "b.append": 1, + "wrap": 2, + "unwrap": 1, + ".replaceWith": 1, + "this.childNodes": 1, + ".end": 1, + "append": 1, + "this.domManip": 4, + "this.appendChild": 1, + "prepend": 1, + "this.insertBefore": 1, + "this.firstChild": 1, + "this.parentNode.insertBefore": 2, + "a.push.apply": 2, + "this.nextSibling": 2, + ".toArray": 1, + "f.cleanData": 4, + "d.parentNode.removeChild": 1, + "b.getElementsByTagName": 1, + "this.map": 3, + "f.clone": 2, + ".innerHTML.replace": 1, + "bc.test": 2, + "f.support.leadingWhitespace": 2, + "Z.test": 2, + "_.exec": 2, + ".getElementsByTagName": 2, + ".innerHTML": 3, + "c.html": 3, + "replaceWith": 1, + "c.replaceWith": 1, + ".detach": 1, + "this.parentNode": 1, + ".remove": 2, + ".before": 1, + "detach": 1, + "this.remove": 1, + "domManip": 1, + "f.support.checkClone": 2, + "bd.test": 2, + ".domManip": 1, + "g.html": 1, + "g.domManip": 1, + "j.parentNode": 1, + "f.support.parentNode": 1, + "i.nodeType": 1, + "i.childNodes.length": 1, + "f.buildFragment": 2, + "e.fragment": 1, + "h.childNodes.length": 1, + "h.firstChild": 2, + "": 1, + "k.length": 2, + ".charAt": 1, + "f.fragments": 3, + "i.createDocumentFragment": 1, + "f.clean": 1, + "appendTo": 1, + "prependTo": 1, + "insertBefore": 1, + "insertAfter": 1, + "replaceAll": 1, + "g.childNodes.length": 1, + "this.clone": 1, + ".get": 3, + "d.concat": 1, + "e.selector": 1, + "f.support.noCloneEvent": 1, + "f.support.noCloneChecked": 1, + "b.createElement": 2, + "b.createTextNode": 2, + "k.replace": 2, + "o.innerHTML": 1, + "o.lastChild": 1, + "f.support.tbody": 1, + "ba.test": 1, + "o.firstChild": 2, + "o.firstChild.childNodes": 1, + "o.childNodes": 2, + "q.length": 1, + ".childNodes.length": 1, + ".parentNode.removeChild": 2, + "o.insertBefore": 1, + "Z.exec": 1, + "f.support.appendChecked": 1, + "k.nodeType": 1, + "h.push": 1, + "be.test": 1, + ".type.toLowerCase": 1, + "h.splice.apply": 1, + ".concat": 3, + "cleanData": 1, + "j.nodeName": 1, + "j.nodeName.toLowerCase": 1, + "f.removeEvent": 1, + "b.handle": 2, + "j.removeAttribute": 2, + "bo": 2, + "/alpha": 1, + "bp": 1, + "/opacity": 1, + "bq": 2, + "br": 19, + "ms": 2, + "bs": 2, + "bt": 42, + "bu": 11, + "bv": 2, + "de": 1, + "bw": 2, + "bz": 7, + "bA": 3, + "bB": 5, + "bC": 2, + "f.fn.css": 1, + "f.style": 4, + "cssHooks": 1, + "a.style.opacity": 2, + "cssNumber": 3, + "zIndex": 1, + "fontWeight": 1, + "zoom": 1, + "lineHeight": 1, + "widows": 1, + "orphans": 1, + "cssProps": 1, + "f.support.cssFloat": 1, + "f.cssHooks": 3, + "f.cssProps": 2, + "k.get": 1, + "bu.test": 1, + "d.replace": 1, + "f.cssNumber": 1, + "k.set": 1, + "g.get": 1, + "swap": 1, + "f.curCSS": 1, + "f.swap": 2, + "<0||e==null){e=a.style[b];return>": 1, + "0px": 1, + "f.support.opacity": 1, + "f.cssHooks.opacity": 1, + "bp.test": 1, + "a.currentStyle": 4, + "a.currentStyle.filter": 1, + "a.style.filter": 1, + "RegExp.": 1, + "c.zoom": 1, + "b*100": 1, + "d.filter": 1, + "c.filter": 2, + "bo.test": 1, + "g.replace": 1, + "f.support.reliableMarginRight": 1, + "f.cssHooks.marginRight": 1, + "a.style.marginRight": 1, + "a.ownerDocument.defaultView": 1, + "e.getComputedStyle": 1, + "g.getPropertyValue": 1, + "a.ownerDocument.documentElement": 1, + "c.documentElement.currentStyle": 1, + "a.runtimeStyle": 2, + "bs.test": 1, + "bt.test": 1, + "f.left": 3, + "a.runtimeStyle.left": 2, + "a.currentStyle.left": 1, + "f.pixelLeft": 1, + "f.expr.filters.hidden": 2, + "f.support.reliableHiddenOffsets": 1, + "f.expr.filters.visible": 1, + "bE": 2, + "bF": 1, + "bG": 3, + "n/g": 1, + "bH": 2, + "/#.*": 1, + "bI": 1, + "/mg": 1, + "bJ": 1, + "color": 4, + "date": 1, + "datetime": 1, + "email": 2, + "month": 1, + "range": 2, + "search": 5, + "tel": 2, + "time": 1, + "week": 1, + "bK": 1, + "about": 1, + "storage": 1, + "extension": 1, + "widget": 1, + "bL": 1, + "GET": 1, + "bM": 2, + "bN": 2, + "bO": 2, + "<\\/script>": 2, + "/gi": 2, + "bP": 1, + "bR": 2, + "*/": 2, + "bS": 1, + "bT": 2, + "f.fn.load": 1, + "bV": 3, + "bW": 5, + "bX": 8, + "e.href": 1, + "bY": 1, + "bW.href": 2, + "bS.exec": 1, + "bW.toLowerCase": 1, + "bT.apply": 1, + "a.slice": 2, + "f.param": 2, + "f.ajaxSettings.traditional": 2, + "complete": 6, + "a.responseText": 1, + "a.isResolved": 1, + "a.done": 1, + "i.html": 1, + "i.each": 1, + "serialize": 1, + "this.serializeArray": 1, + "serializeArray": 1, + "this.elements": 2, + "this.disabled": 1, + "this.checked": 1, + "bP.test": 1, + "bJ.test": 1, + ".map": 1, + "b.name": 2, + "success": 2, + "getScript": 1, + "f.get": 2, + "getJSON": 1, + "ajaxSetup": 1, + "f.ajaxSettings": 4, + "ajaxSettings": 1, + "isLocal": 1, + "bK.test": 1, + "contentType": 4, + "processData": 3, + "accepts": 5, + "xml": 3, + "json": 2, + "/xml/": 1, + "/html/": 1, + "/json/": 1, + "responseFields": 1, + "converters": 2, + "a.String": 1, + "f.parseXML": 1, + "ajaxPrefilter": 1, + "ajaxTransport": 1, + "ajax": 2, + "clearTimeout": 2, + "v.readyState": 1, + "d.ifModified": 1, + "v.getResponseHeader": 2, + "f.lastModified": 1, + "f.etag": 1, + "v.status": 1, + "v.statusText": 1, + "h.resolveWith": 1, + "h.rejectWith": 1, + "v.statusCode": 2, + "g.trigger": 2, + "i.resolveWith": 1, + "f.active": 1, + "f.ajaxSetup": 3, + "d.statusCode": 1, + "readyState": 1, + "setRequestHeader": 6, + "getAllResponseHeaders": 1, + "getResponseHeader": 1, + "bI.exec": 1, + "overrideMimeType": 1, + "d.mimeType": 1, + "abort": 4, + "p.abort": 1, + "h.promise": 1, + "v.success": 1, + "v.done": 1, + "v.error": 1, + "v.fail": 1, + "v.complete": 1, + "i.done": 1, + "<2)for(b>": 1, + "url=": 1, + "dataTypes=": 1, + "crossDomain=": 2, + "exec": 8, + "80": 2, + "443": 2, + "param": 3, + "traditional": 1, + "s=": 12, + "t=": 19, + "toUpperCase": 1, + "hasContent=": 1, + "active": 2, + "ajaxStart": 1, + "hasContent": 2, + "cache=": 1, + "x=": 1, + "y=": 5, + "1_=": 1, + "_=": 1, + "Content": 1, + "Type": 1, + "ifModified": 1, + "lastModified": 3, + "Modified": 1, + "etag": 3, + "None": 1, + "Accept": 1, + "dataTypes": 4, + "q=": 1, + "01": 1, + "beforeSend": 2, + "p=": 5, + "No": 1, + "Transport": 1, + "readyState=": 1, + "ajaxSend": 1, + "v.abort": 1, + "d.timeout": 1, + "p.send": 1, + "encodeURIComponent": 2, + "f.isPlainObject": 1, + "d.join": 1, + "cc": 2, + "cd": 3, + "jsonp": 1, + "jsonpCallback": 1, + "f.ajaxPrefilter": 2, + "b.contentType": 1, + "b.data": 5, + "b.dataTypes": 2, + "b.jsonp": 3, + "cd.test": 2, + "b.url": 4, + "b.jsonpCallback": 4, + "d.always": 1, + "b.converters": 1, + "/javascript": 1, + "ecmascript/": 1, + "a.cache": 2, + "a.crossDomain": 2, + "a.global": 1, + "f.ajaxTransport": 2, + "c.head": 1, + "c.getElementsByTagName": 1, + "send": 2, + "d.async": 1, + "a.scriptCharset": 2, + "d.charset": 1, + "d.src": 1, + "a.url": 1, + "d.onload": 3, + "d.onreadystatechange": 2, + "d.readyState": 2, + "/loaded": 1, + "complete/.test": 1, + "e.removeChild": 1, + "e.insertBefore": 1, + "e.firstChild": 1, + "ce": 6, + "cg": 7, + "cf": 7, + "f.ajaxSettings.xhr": 2, + "this.isLocal": 1, + "cors": 1, + "f.support.ajax": 1, + "c.crossDomain": 3, + "f.support.cors": 1, + "c.xhr": 1, + "c.username": 2, + "h.open": 2, + "c.url": 2, + "c.password": 1, + "c.xhrFields": 3, + "c.mimeType": 2, + "h.overrideMimeType": 2, + "h.setRequestHeader": 1, + "h.send": 1, + "c.hasContent": 1, + "h.readyState": 3, + "h.onreadystatechange": 2, + "h.abort": 1, + "h.status": 1, + "h.getAllResponseHeaders": 1, + "h.responseXML": 1, + "n.documentElement": 1, + "m.xml": 1, + "m.text": 2, + "h.responseText": 1, + "h.statusText": 1, + "c.isLocal": 1, + ".unload": 1, + "cm": 2, + "cn": 1, + "co": 5, + "cp": 1, + "cr": 20, + "a.webkitRequestAnimationFrame": 1, + "a.mozRequestAnimationFrame": 1, + "a.oRequestAnimationFrame": 1, + "this.animate": 2, + "d.style": 3, + ".style": 1, + "": 1, + "_toggle": 2, + "animate": 4, + "fadeTo": 1, + "queue=": 2, + "animatedProperties=": 1, + "animatedProperties": 2, + "specialEasing": 2, + "easing": 3, + "swing": 2, + "overflow=": 2, + "overflow": 2, + "overflowX": 1, + "overflowY": 1, + "float": 3, + "display=": 3, + "zoom=": 1, + "fx": 10, + "l=": 10, + "m=": 2, + "custom": 5, + "stop": 7, + "timers": 3, + "slideDown": 1, + "slideUp": 1, + "slideToggle": 1, + "fadeIn": 1, + "fadeOut": 1, + "fadeToggle": 1, + "duration": 4, + "duration=": 2, + "off": 1, + "speeds": 4, + "old=": 1, + "complete=": 1, + "old": 2, + "linear": 1, + "Math": 51, + "cos": 1, + "PI": 54, + "5": 23, + "options=": 1, + "prop=": 3, + "orig=": 1, + "orig": 3, + "step": 7, + "startTime=": 1, + "start=": 1, + "end=": 1, + "unit=": 1, + "unit": 1, + "now=": 1, + "pos=": 1, + "state=": 1, + "co=": 2, + "tick": 3, + "interval": 3, + "show=": 1, + "hide=": 1, + "e.duration": 3, + "this.startTime": 2, + "this.now": 3, + "this.end": 2, + "this.pos": 4, + "this.state": 3, + "this.update": 2, + "e.animatedProperties": 5, + "this.prop": 2, + "e.overflow": 2, + "f.support.shrinkWrapBlocks": 1, + "e.hide": 2, + ".hide": 2, + "e.show": 1, + "e.orig": 1, + "e.complete.call": 1, + "Infinity": 1, + "h/e.duration": 1, + "f.easing": 1, + "this.start": 2, + "*this.pos": 1, + "f.timers": 2, + "a.splice": 1, + "f.fx.stop": 1, + "clearInterval": 6, + "slow": 1, + "fast": 1, + "a.elem": 2, + "a.now": 4, + "a.elem.style": 3, + "a.prop": 5, + "Math.max": 10, + "a.unit": 1, + "f.expr.filters.animated": 1, + "b.elem": 1, + "cw": 1, + "able": 1, + "cx": 2, + "f.fn.offset": 2, + "f.offset.setOffset": 2, + "b.ownerDocument.body": 2, + "f.offset.bodyOffset": 2, + "b.getBoundingClientRect": 1, + "e.documentElement": 4, + "c.top": 4, + "c.left": 4, + "e.body": 3, + "g.clientTop": 1, + "h.clientTop": 1, + "g.clientLeft": 1, + "h.clientLeft": 1, + "i.pageYOffset": 1, + "g.scrollTop": 1, + "h.scrollTop": 2, + "i.pageXOffset": 1, + "g.scrollLeft": 1, + "h.scrollLeft": 2, + "f.offset.initialize": 3, + "b.offsetParent": 2, + "g.documentElement": 1, + "g.body": 1, + "g.defaultView": 1, + "j.getComputedStyle": 2, + "b.currentStyle": 2, + "b.offsetTop": 2, + "b.offsetLeft": 2, + "f.offset.supportsFixedPosition": 2, + "k.position": 4, + "b.scrollTop": 1, + "b.scrollLeft": 1, + "f.offset.doesNotAddBorder": 1, + "f.offset.doesAddBorderForTableAndCells": 1, + "cw.test": 1, + "c.borderTopWidth": 2, + "c.borderLeftWidth": 2, + "f.offset.subtractsBorderForOverflowNotVisible": 1, + "c.overflow": 1, + "i.offsetTop": 1, + "i.offsetLeft": 1, + "i.scrollTop": 1, + "i.scrollLeft": 1, + "f.offset": 1, + "initialize": 3, + "b.style": 1, + "d.nextSibling.firstChild.firstChild": 1, + "this.doesNotAddBorder": 1, + "e.offsetTop": 4, + "this.doesAddBorderForTableAndCells": 1, + "h.offsetTop": 1, + "e.style.position": 2, + "e.style.top": 2, + "this.supportsFixedPosition": 1, + "d.style.overflow": 1, + "d.style.position": 1, + "this.subtractsBorderForOverflowNotVisible": 1, + "this.doesNotIncludeMarginInBodyOffset": 1, + "a.offsetTop": 2, + "bodyOffset": 1, + "a.offsetLeft": 1, + "f.offset.doesNotIncludeMarginInBodyOffset": 1, + "setOffset": 1, + "a.style.position": 1, + "e.offset": 1, + "e.position": 1, + "l.top": 1, + "l.left": 1, + "b.top": 2, + "k.top": 1, + "g.top": 1, + "b.left": 2, + "k.left": 1, + "g.left": 1, + "b.using.call": 1, + "e.css": 1, + "this.offsetParent": 2, + "this.offset": 2, + "cx.test": 2, + "b.offset": 1, + "d.top": 2, + "d.left": 2, + "offsetParent": 1, + "a.offsetParent": 1, + "g.document.documentElement": 1, + "g.document.body": 1, + "g.scrollTo": 1, + ".scrollLeft": 1, + ".scrollTop": 1, + "e.document.documentElement": 1, + "e.document.compatMode": 1, + "e.document.body": 1, + "this.css": 1, + "Prioritize": 1, + "": 1, + "XSS": 1, + "location.hash": 1, + "#9521": 1, + "Matches": 1, + "dashed": 1, + "camelizing": 1, + "rdashAlpha": 1, + "rmsPrefix": 1, + "fcamelCase": 1, + "letter": 3, + "readyList.fireWith": 1, + ".off": 1, + "jQuery.Callbacks": 2, + "IE8": 2, + "exceptions": 2, + "#9897": 1, + "elems": 9, + "chainable": 4, + "emptyGet": 3, + "bulk": 3, + "elems.length": 1, + "Sets": 3, + "jQuery.access": 2, + "Optionally": 1, + "executed": 1, + "Bulk": 1, + "operations": 1, + "iterate": 1, + "executing": 1, + "exec.call": 1, + "they": 2, + "run": 1, + "against": 1, + "entire": 1, + "fn.call": 2, + "value.call": 1, + "Gets": 2, + "frowned": 1, + "upon.": 1, + "More": 1, + "//docs.jquery.com/Utilities/jQuery.browser": 1, + "ua": 6, + "ua.toLowerCase": 1, + "rwebkit.exec": 1, + "ropera.exec": 1, + "rmsie.exec": 1, + "ua.indexOf": 1, + "rmozilla.exec": 1, + "jQuerySub": 7, + "jQuerySub.fn.init": 2, + "jQuerySub.superclass": 1, + "jQuerySub.fn": 2, + "jQuerySub.prototype": 1, + "jQuerySub.fn.constructor": 1, + "jQuerySub.sub": 1, + "jQuery.fn.init.call": 1, + "rootjQuerySub": 2, + "jQuerySub.fn.init.prototype": 1, + "jQuery.uaMatch": 1, + "browserMatch.browser": 2, + "jQuery.browser.version": 1, + "browserMatch.version": 1, + "jQuery.browser.webkit": 1, + "jQuery.browser.safari": 1, + "flagsCache": 3, + "createFlags": 2, + "flags": 13, + "flags.split": 1, + "flags.length": 1, + "Convert": 1, + "formatted": 2, + "Actual": 2, + "Stack": 1, + "fire": 4, + "calls": 1, + "repeatable": 1, + "lists": 2, + "stack": 2, + "forgettable": 1, + "memory": 8, + "Flag": 2, + "First": 3, + "fireWith": 1, + "firingStart": 3, + "End": 1, + "firingLength": 4, + "Index": 1, + "firingIndex": 5, + "several": 1, + "actual": 1, + "Inspect": 1, + "recursively": 1, + "mode": 1, + "flags.unique": 1, + "self.has": 1, + "list.push": 1, + "Fire": 1, + "flags.memory": 1, + "flags.stopOnFalse": 1, + "Mark": 1, + "halted": 1, + "flags.once": 1, + "stack.length": 1, + "stack.shift": 1, + "self.fireWith": 1, + "self.disable": 1, + "Callbacks": 1, + "collection": 3, + "Do": 2, + "current": 7, + "batch": 2, + "With": 1, + "/a": 1, + ".55": 1, + "basic": 1, + "all.length": 1, + "supports": 2, + "select.appendChild": 1, + "strips": 1, + "leading": 1, + "div.firstChild.nodeType": 1, + "manipulated": 1, + "normalizes": 1, + "around": 1, + "issue.": 1, + "#5145": 1, + "existence": 1, + "styleFloat": 1, + "a.style.cssFloat": 1, + "defaults": 3, + "working": 1, + "property.": 1, + "too": 1, + "marked": 1, + "marks": 1, + "select.disabled": 1, + "support.optDisabled": 1, + "opt.disabled": 1, + "handlers": 1, + "support.noCloneEvent": 1, + "div.cloneNode": 1, + "maintains": 1, + "#11217": 1, + "loses": 1, + "div.lastChild": 1, + "conMarginTop": 3, + "paddingMarginBorder": 5, + "positionTopLeftWidthHeight": 3, + "paddingMarginBorderVisibility": 3, + "container": 4, + "container.style.cssText": 1, + "body.insertBefore": 1, + "body.firstChild": 1, + "Construct": 1, + "container.appendChild": 1, + "cells": 3, + "still": 4, + "offsetWidth/Height": 3, + "visible": 1, + "row": 1, + "reliable": 1, + "offsets": 1, + "safety": 1, + "goggles": 1, + "#4512": 1, + "fails": 2, + "support.reliableHiddenOffsets": 1, + "explicit": 1, + "right": 3, + "incorrectly": 1, + "computed": 1, + "based": 1, + "container.": 1, + "#3333": 1, + "Feb": 1, + "Bug": 1, + "getComputedStyle": 3, + "returns": 1, + "wrong": 1, + "window.getComputedStyle": 6, + "marginDiv.style.width": 1, + "marginDiv.style.marginRight": 1, + "div.style.width": 2, + "support.reliableMarginRight": 1, + "div.style.zoom": 2, + "natively": 1, + "block": 4, + "act": 1, + "setting": 2, + "giving": 1, + "layout": 2, + "div.style.padding": 1, + "div.style.border": 1, + "div.style.overflow": 2, + "div.style.display": 2, + "support.inlineBlockNeedsLayout": 1, + "div.offsetWidth": 2, + "shrink": 1, + "support.shrinkWrapBlocks": 1, + "div.style.cssText": 1, + "outer.firstChild": 1, + "outer.nextSibling.firstChild.firstChild": 1, + "offsetSupport": 2, + "doesNotAddBorder": 1, + "inner.offsetTop": 4, + "doesAddBorderForTableAndCells": 1, + "td.offsetTop": 1, + "inner.style.position": 2, + "inner.style.top": 2, + "safari": 1, + "subtracts": 1, + "here": 1, + "offsetSupport.fixedPosition": 1, + "outer.style.overflow": 1, + "outer.style.position": 1, + "offsetSupport.subtractsBorderForOverflowNotVisible": 1, + "offsetSupport.doesNotIncludeMarginInBodyOffset": 1, + "body.offsetTop": 1, + "div.style.marginTop": 1, + "support.pixelMargin": 1, + ".marginTop": 1, + "container.style.zoom": 2, + "body.removeChild": 1, + "rbrace": 1, + "Please": 1, + "caution": 1, + "Unique": 1, + "page": 1, + "rinlinejQuery": 1, + "jQuery.fn.jquery": 1, + "following": 1, + "uncatchable": 1, + "you": 1, + "attempt": 2, + "them.": 1, + "Ban": 1, + "except": 1, + "Flash": 1, + "jQuery.acceptData": 2, + "privateCache": 1, + "differently": 1, + "because": 1, + "IE6": 1, + "order": 1, + "collisions": 1, + "between": 1, + "user": 1, + "data.": 1, + "thisCache.data": 3, + "Users": 1, + "should": 1, + "inspect": 1, + "undocumented": 1, + "subject": 1, + "change.": 1, + "But": 1, + "anyone": 1, + "listen": 1, + "No.": 1, + "isEvents": 1, + "privateCache.events": 1, + "converted": 2, + "camel": 2, + "names": 2, + "camelCased": 1, + "Reference": 1, + "entry": 1, + "purpose": 1, + "continuing": 1, + "Support": 1, + "space": 1, + "separated": 1, + "jQuery.isArray": 1, + "manipulation": 1, + "cased": 1, + "name.split": 1, + "name.length": 1, + "want": 1, + "let": 1, + "destroyed": 2, + "jQuery.isEmptyObject": 1, + "Don": 1, + "care": 1, + "Ensure": 1, + "#10080": 1, + "cache.setInterval": 1, + "part": 8, + "jQuery._data": 2, + "elem.attributes": 1, + "self.triggerHandler": 2, + "jQuery.isNumeric": 1, + "All": 1, + "lowercase": 1, + "Grab": 1, + "necessary": 1, + "hook": 1, + "nodeHook": 1, + "attrNames": 3, + "isBool": 4, + "rspace": 1, + "attrNames.length": 1, + "#9699": 1, + "explanation": 1, + "approach": 1, + "removal": 1, + "#10870": 1, + "**": 1, + "timeStamp": 1, + "char": 2, + "buttons": 1, "SHEBANG#!node": 2, - "console.log": 3, + "http.createServer": 1, + "res.writeHead": 1, + "res.end": 1, + ".listen": 1, + "Date.prototype.toJSON": 2, + "isFinite": 1, + "this.valueOf": 2, + "this.getUTCFullYear": 1, + "this.getUTCMonth": 1, + "this.getUTCDate": 1, + "this.getUTCHours": 1, + "this.getUTCMinutes": 1, + "this.getUTCSeconds": 1, + "String.prototype.toJSON": 1, + "Number.prototype.toJSON": 1, + "Boolean.prototype.toJSON": 1, + "u0000": 1, + "u00ad": 1, + "u0600": 1, + "u0604": 1, + "u070f": 1, + "u17b4": 1, + "u17b5": 1, + "u200c": 1, + "u200f": 1, + "u2028": 3, + "u202f": 1, + "u2060": 1, + "u206f": 1, + "ufeff": 1, + "ufff0": 1, + "uffff": 1, + "escapable": 1, + "/bfnrt": 1, + "fA": 2, + "JSON.parse": 1, + "PUT": 1, + "DELETE": 1, + "_id": 1, + "ties": 1, + "collection.": 1, + "_removeReference": 1, + "model.collection": 2, + "model.unbind": 1, + "this._onModelEvent": 1, + "_onModelEvent": 1, + "ev": 5, + "this._remove": 1, + "model.idAttribute": 2, + "this._byId": 2, + "model.previous": 1, + "model.id": 1, + "this.trigger.apply": 2, + "_.each": 1, + "Backbone.Collection.prototype": 1, + "this.models": 1, + "_.toArray": 1, + "Backbone.Router": 1, + "options.routes": 2, + "this.routes": 4, + "this._bindRoutes": 1, + "this.initialize.apply": 2, + "namedParam": 2, + "splatParam": 2, + "escapeRegExp": 2, + "_.extend": 9, + "Backbone.Router.prototype": 1, + "Backbone.Events": 2, + "route": 18, + "Backbone.history": 2, + "Backbone.History": 2, + "_.isRegExp": 1, + "this._routeToRegExp": 1, + "Backbone.history.route": 1, + "_.bind": 2, + "this._extractParameters": 1, + "callback.apply": 1, + "navigate": 2, + "triggerRoute": 4, + "Backbone.history.navigate": 1, + "_bindRoutes": 1, + "routes": 4, + "routes.unshift": 1, + "routes.length": 1, + "this.route": 1, + "_routeToRegExp": 1, + "route.replace": 1, + "_extractParameters": 1, + "route.exec": 1, + "this.handlers": 2, + "_.bindAll": 1, + "hashStrip": 4, + "#*": 1, + "isExplorer": 1, + "/msie": 1, + "historyStarted": 3, + "Backbone.History.prototype": 1, + "getFragment": 1, + "forcePushState": 2, + "this._hasPushState": 6, + "window.location.pathname": 1, + "window.location.search": 1, + "fragment.indexOf": 1, + "this.options.root": 6, + "fragment.substr": 1, + "this.options.root.length": 1, + "window.location.hash": 3, + "fragment.replace": 1, + "this._wantsPushState": 3, + "this.options.pushState": 2, + "window.history": 2, + "window.history.pushState": 2, + "this.getFragment": 6, + "docMode": 3, + "document.documentMode": 3, + "oldIE": 3, + "isExplorer.exec": 1, + "navigator.userAgent.toLowerCase": 1, + "this.iframe": 4, + ".contentWindow": 1, + "this.navigate": 2, + ".bind": 3, + "this.checkUrl": 3, + "setInterval": 6, + "this.interval": 1, + "this.fragment": 13, + "loc": 2, + "atRoot": 3, + "loc.pathname": 1, + "loc.hash": 1, + "loc.hash.replace": 1, + "window.history.replaceState": 1, + "document.title": 2, + "loc.protocol": 2, + "loc.host": 2, + "this.loadUrl": 4, + "this.handlers.unshift": 1, + "checkUrl": 1, + "this.iframe.location.hash": 3, + "decodeURIComponent": 2, + "loadUrl": 1, + "fragmentOverride": 2, + "matched": 2, + "_.any": 1, + "handler.route.test": 1, + "handler.callback": 1, + "frag": 13, + "frag.indexOf": 1, + "this.iframe.document.open": 1, + ".close": 1, + "Backbone.View": 1, + "this.cid": 3, + "_.uniqueId": 1, + "this._configure": 1, + "this._ensureElement": 1, + "this.delegateEvents": 1, + "selectorDelegate": 2, + "this.el": 10, + "eventSplitter": 2, + "viewOptions": 2, + "Backbone.View.prototype": 1, + "tagName": 3, + "render": 1, + "el": 4, + ".attr": 1, + ".html": 1, + "delegateEvents": 1, + "this.events": 1, + "key.match": 1, + "_configure": 1, + "viewOptions.length": 1, + "_ensureElement": 1, + "attrs": 6, + "this.attributes": 1, + "this.id": 2, + "attrs.id": 1, + "this.make": 1, + "this.tagName": 1, + "_.isString": 1, + "protoProps": 6, + "classProps": 2, + "inherits": 2, + "child.extend": 1, + "this.extend": 1, + "Backbone.Model.extend": 1, + "Backbone.Collection.extend": 1, + "Backbone.Router.extend": 1, + "Backbone.View.extend": 1, + "methodMap": 2, + "Backbone.sync": 1, + "params": 2, + "params.url": 2, + "getUrl": 2, + "urlError": 2, + "params.data": 5, + "params.contentType": 2, + "model.toJSON": 1, + "Backbone.emulateJSON": 2, + "params.processData": 1, + "Backbone.emulateHTTP": 1, + "params.data._method": 1, + "params.type": 1, + "params.beforeSend": 1, + "xhr": 1, + "xhr.setRequestHeader": 1, + ".ajax": 1, + "staticProps": 3, + "protoProps.hasOwnProperty": 1, + "protoProps.constructor": 1, + "parent.apply": 1, + "child.prototype.constructor": 1, + "object.url": 4, + "_.isFunction": 1, + "wrapError": 1, + "onError": 3, + "resp": 3, + "model.trigger": 1, + "escapeHTML": 1, + "string.replace": 1, + "#x": 1, + "da": 1, + "": 1, + "lt": 55, + "#x27": 1, + "#x2F": 1, + "window.Modernizr": 1, + "Modernizr": 12, + "enableClasses": 3, + "docElement": 1, + "mod": 12, + "modElem": 2, + "mStyle": 2, + "modElem.style": 1, + "inputElem": 6, + "smile": 4, + "prefixes": 2, + "omPrefixes": 1, + "cssomPrefixes": 2, + "omPrefixes.split": 1, + "domPrefixes": 3, + "omPrefixes.toLowerCase": 1, + "ns": 1, + "inputs": 3, + "classes": 1, + "classes.slice": 1, + "featureName": 5, + "testing": 1, + "injectElementWithStyles": 9, + "rule": 5, + "testnames": 3, + "fakeBody": 4, + "node.id": 1, + "div.id": 1, + "fakeBody.appendChild": 1, + "//avoid": 1, + "crashing": 1, + "fakeBody.style.background": 1, + "docElement.appendChild": 2, + "fakeBody.parentNode.removeChild": 1, + "div.parentNode.removeChild": 1, + "testMediaQuery": 2, + "mq": 3, + "matchMedia": 3, + "window.matchMedia": 1, + "window.msMatchMedia": 1, + ".matches": 1, + "bool": 30, + "node.currentStyle": 2, + "isEventSupported": 5, + "TAGNAMES": 2, + "element.setAttribute": 3, + "element.removeAttribute": 2, + "_hasOwnProperty": 2, + "hasOwnProperty": 5, + "_hasOwnProperty.call": 2, + "object.constructor.prototype": 1, + "Function.prototype.bind": 2, + "slice.call": 3, + "F.prototype": 1, + "target.prototype": 1, + "target.apply": 2, + "args.concat": 2, + "setCss": 7, + "str": 4, + "mStyle.cssText": 1, + "setCssAll": 2, + "str1": 6, + "str2": 4, + "prefixes.join": 3, + "substr": 2, + "testProps": 3, + "prefixed": 7, + "testDOMProps": 2, + "item": 4, + "item.bind": 1, + "testPropsAll": 17, + "ucProp": 5, + "prop.charAt": 1, + "prop.substr": 1, + "cssomPrefixes.join": 1, + "elem.getContext": 2, + ".getContext": 8, + ".fillText": 1, + "window.WebGLRenderingContext": 1, + "window.DocumentTouch": 1, + "DocumentTouch": 1, + "node.offsetTop": 1, + "window.postMessage": 1, + "window.openDatabase": 1, + "history.pushState": 1, + "mStyle.backgroundColor": 3, + "mStyle.background": 1, + ".style.textShadow": 1, + "mStyle.opacity": 1, + "str3": 2, + "str1.length": 1, + "mStyle.backgroundImage": 1, + "docElement.style": 1, + "node.offsetLeft": 1, + "node.offsetHeight": 2, + "document.styleSheets": 1, + "document.styleSheets.length": 1, + "cssText": 4, + "style.cssRules": 3, + "style.cssText": 1, + "/src/i.test": 1, + "cssText.indexOf": 1, + "rule.split": 1, + "elem.canPlayType": 10, + "Boolean": 2, + "bool.ogg": 2, + "bool.h264": 1, + "bool.webm": 1, + "bool.mp3": 1, + "bool.wav": 1, + "bool.m4a": 1, + "localStorage.setItem": 1, + "localStorage.removeItem": 1, + "sessionStorage.setItem": 1, + "sessionStorage.removeItem": 1, + "window.Worker": 1, + "window.applicationCache": 1, + "document.createElementNS": 6, + "ns.svg": 4, + ".createSVGRect": 1, + "div.firstChild.namespaceURI": 1, + "/SVGAnimate/.test": 1, + "toString.call": 2, + "/SVGClipPath/.test": 1, + "webforms": 2, + "props.length": 2, + "attrs.list": 2, + "window.HTMLDataListElement": 1, + "inputElemType": 5, + "defaultView": 2, + "inputElem.setAttribute": 1, + "inputElem.type": 1, + "inputElem.value": 2, + "inputElem.style.cssText": 1, + "inputElem.style.WebkitAppearance": 1, + "document.defaultView": 1, + "defaultView.getComputedStyle": 2, + ".WebkitAppearance": 1, + "inputElem.offsetHeight": 1, + "docElement.removeChild": 1, + "inputElem.checkValidity": 2, + "feature": 12, + "feature.toLowerCase": 2, + "classes.push": 1, + "Modernizr.input": 1, + "Modernizr.addTest": 2, + "docElement.className": 2, + "chaining.": 1, + "window.html5": 2, + "reSkip": 1, + "saveClones": 1, + "fieldset": 1, + "h1": 5, + "h2": 5, + "h3": 3, + "h4": 3, + "h5": 1, + "h6": 1, + "img": 1, + "label": 2, + "li": 19, + "ol": 1, + "span": 1, + "strong": 1, + "tfoot": 1, + "th": 1, + "ul": 1, + "supportsHtml5Styles": 5, + "supportsUnknownElements": 3, + "//if": 2, + "implemented": 1, + "assume": 1, + "Styles": 1, + "Chrome": 2, + "additional": 1, + "solve": 1, + "node.hidden": 1, + ".display": 1, + "a.childNodes.length": 1, + "frag.cloneNode": 1, + "frag.createDocumentFragment": 1, + "frag.createElement": 2, + "addStyleSheet": 2, + "ownerDocument.createElement": 3, + "ownerDocument.getElementsByTagName": 1, + "ownerDocument.documentElement": 1, + "p.innerHTML": 1, + "parent.insertBefore": 1, + "p.lastChild": 1, + "parent.firstChild": 1, + "getElements": 2, + "html5.elements": 1, + "elements.split": 1, + "shivMethods": 2, + "docCreateElement": 5, + "docCreateFragment": 2, + "ownerDocument.createDocumentFragment": 2, + "//abort": 1, + "shiv": 1, + "html5.shivMethods": 1, + "saveClones.test": 1, + "node.canHaveChildren": 1, + "reSkip.test": 1, + "frag.appendChild": 1, + "html5": 3, + "shivDocument": 3, + "shived": 5, + "ownerDocument.documentShived": 2, + "html5.shivCSS": 1, + "options.elements": 1, + "options.shivCSS": 1, + "options.shivMethods": 1, + "Modernizr._version": 1, + "Modernizr._prefixes": 1, + "Modernizr._domPrefixes": 1, + "Modernizr._cssomPrefixes": 1, + "Modernizr.mq": 1, + "Modernizr.hasEvent": 1, + "Modernizr.testProp": 1, + "Modernizr.testAllProps": 1, + "Modernizr.testStyles": 1, + "Modernizr.prefixed": 1, + "docElement.className.replace": 1, + "js": 1, + "classes.join": 1, + "this.document": 1, + "window.angular": 1, + "PEG.parser": 1, + "quote": 3, + "result0": 264, + "result1": 81, + "result2": 77, + "parse_singleQuotedCharacter": 3, + "result1.push": 3, + "input.charCodeAt": 18, + "pos": 197, + "reportFailures": 64, + "matchFailed": 40, + "pos1": 63, + "chars": 1, + "chars.join": 1, + "pos0": 51, + "parse_simpleSingleQuotedCharacter": 2, + "parse_simpleEscapeSequence": 3, + "parse_zeroEscapeSequence": 3, + "parse_hexEscapeSequence": 3, + "parse_unicodeEscapeSequence": 3, + "parse_eolEscapeSequence": 3, + "pos2": 22, + "parse_eolChar": 6, + "input.length": 9, + "input.charAt": 21, + "char_": 9, + "parse_class": 1, + "result3": 35, + "result4": 12, + "result5": 4, + "parse_classCharacterRange": 3, + "parse_classCharacter": 5, + "result2.push": 1, + "parse___": 2, + "inverted": 4, + "partsConverted": 2, + "part.data": 1, + "rawText": 5, + "part.rawText": 1, + "ignoreCase": 1, + "begin": 1, + "begin.data.charCodeAt": 1, + "end.data.charCodeAt": 1, + "this.SyntaxError": 2, + "begin.rawText": 2, + "end.rawText": 2, + "begin.data": 1, + "end.data": 1, + "parse_bracketDelimitedCharacter": 2, + "quoteForRegexpClass": 1, + "parse_simpleBracketDelimitedCharacter": 2, + "parse_digit": 3, + "recognize": 1, + "input.substr": 9, + "parse_hexDigit": 7, + "String.fromCharCode": 4, + "parse_eol": 4, + "eol": 2, + "parse_letter": 1, + "parse_lowerCaseLetter": 2, + "parse_upperCaseLetter": 2, + "parse_whitespace": 3, + "parse_comment": 3, + "result0.push": 1, + "parse_singleLineComment": 2, + "parse_multiLineComment": 2, + "u2029": 2, + "x0B": 1, + "uFEFF": 1, + "u1680": 1, + "u180E": 1, + "u2000": 1, + "u200A": 1, + "u202F": 1, + "u205F": 1, + "u3000": 1, + "cleanupExpected": 2, + "expected": 12, + "expected.sort": 1, + "lastExpected": 3, + "cleanExpected": 2, + "expected.length": 4, + "cleanExpected.push": 1, + "computeErrorPosition": 2, + "line": 14, + "column": 8, + "seenCR": 5, + "rightmostFailuresPos": 2, + "parseFunctions": 1, + "startRule": 1, + "errorPosition": 1, + "rightmostFailuresExpected": 1, + "errorPosition.line": 1, + "errorPosition.column": 1, + "toSource": 1, + "this._source": 1, + "result.SyntaxError": 1, + "buildMessage": 2, + "expectedHumanized": 5, + "foundHumanized": 3, + "expected.slice": 1, + "this.expected": 1, + "this.found": 1, + "this.message": 3, + "this.line": 3, + "this.column": 1, + "result.SyntaxError.prototype": 1, + "Error.prototype": 1, "steelseries": 10, "n.charAt": 1, "n.substring": 1, @@ -30353,16 +32847,13 @@ "t.getBlue": 4, "t.getAlpha": 4, "i.getRed": 1, - "p": 110, "i.getGreen": 1, "i.getBlue": 1, - "o": 322, "i.getAlpha": 1, "*f": 2, "w/r": 1, "p/r": 1, "s/r": 1, - "h": 499, "o/r": 1, "e*u": 1, ".toFixed": 3, @@ -30370,46 +32861,31 @@ "c*u": 1, "h*u": 1, "vr": 20, - "stop": 7, - "color": 4, "Math.floor": 26, "Math.log10": 1, "n/Math.pow": 1, "": 1, - "e=": 21, - "o=": 13, "beginPath": 12, "moveTo": 10, "lineTo": 22, "quadraticCurveTo": 4, "closePath": 8, "stroke": 7, - "i=": 31, - "createElement": 3, "canvas": 22, "width=": 17, "height=": 17, "ii": 29, - "u=": 12, "getContext": 26, "2d": 26, "ft": 70, - "1": 97, "fillStyle=": 13, "rect": 3, - "0": 220, "fill": 10, - "t=": 19, "getImageData": 1, - "2": 66, - "3": 13, "wt": 26, - "r=": 18, "32": 1, "62": 1, - "f=": 13, "84": 1, - "s=": 12, "94": 1, "ar": 20, "255": 3, @@ -30431,7 +32907,6 @@ "n/255": 1, "t/255": 1, "i/255": 1, - "Math.max": 10, "f/r": 1, "/f": 3, "<0?0:n>": 1, @@ -30449,7 +32924,6 @@ "i.size": 6, "i.minValue": 10, "i.maxValue": 10, - "bf": 6, "i.niceScale": 10, "i.threshold": 10, "/2": 25, @@ -30464,10 +32938,8 @@ "steelseries.FrameDesign.METAL": 7, "wu": 9, "i.frameVisible": 10, - "bt": 42, "i.backgroundColor": 10, "steelseries.BackgroundColor.DARK_GRAY": 7, - "bu": 11, "i.backgroundVisible": 10, "pt": 48, "i.pointerType": 4, @@ -30489,7 +32961,6 @@ "i.digitalFont": 8, "pe": 2, "i.fractionalScaleDecimals": 4, - "br": 19, "i.ledColor": 10, "steelseries.LedColor.RED_LED": 7, "ru": 14, @@ -30500,7 +32971,6 @@ "i.minMeasuredValueVisible": 8, "dr": 16, "i.maxMeasuredValueVisible": 8, - "cf": 7, "i.foregroundType": 6, "steelseries.ForegroundType.TYPE1": 5, "af": 5, @@ -30540,23 +33010,18 @@ "steelseries.TrendState.OFF": 4, "lr": 19, "f*.06": 1, - "cr": 20, "f*.29": 19, "er": 19, "f*.36": 4, - "ci": 29, "et": 45, "gi": 26, - "lt": 55, "rr": 21, "*lt": 9, "r.getElementById": 7, - ".getContext": 8, "u.save": 7, "u.clearRect": 5, "u.canvas.width": 7, "u.canvas.height": 7, - "g": 441, "s/2": 2, "k/2": 1, "pf": 4, @@ -30565,11 +33030,9 @@ ".4*k": 1, "pr": 16, "s/10": 1, - "ce": 6, "ae": 2, "hf": 4, "k*.13": 2, - "bi": 27, "s*.4": 1, "sf": 5, "rf": 5, @@ -30630,15 +33093,12 @@ "pi": 24, "kt": 24, "pi.getContext": 2, - "li": 19, "pu": 9, "li.getContext": 6, "gu": 9, "du": 10, "ku": 9, "yu": 10, - "cu": 18, - "tr": 23, "su": 12, "tr.getContext": 1, "kf": 3, @@ -30750,7 +33210,6 @@ ".stop": 11, ".color": 13, "ui.length": 2, - "ct": 34, "ut.save": 1, "ut.translate": 3, "ut.rotate": 1, @@ -30800,9 +33259,7 @@ "gf": 2, "yf.repaint": 1, "ur": 20, - "setInterval": 6, "e3": 5, - "clearInterval": 6, "this.setValue": 7, "": 5, "ki.pause": 1, @@ -30828,7 +33285,6 @@ "this.setMaxMeasuredValue": 3, "this.setMinMeasuredValue": 3, "this.setTitleString": 4, - "background": 56, "this.setUnitString": 4, "this.setMinValue": 4, "this.getMinValue": 3, @@ -31456,7 +33912,6 @@ "bargraphled": 3, "v.drawImage": 2, "": 1, - "n=": 10, "856796": 4, "728155": 2, "34": 2, @@ -31468,9 +33923,7 @@ "restore": 14, "repaint": 23, "dr=": 1, - "b=": 25, "128": 2, - "y=": 5, "48": 1, "w=": 4, "lcdColor": 4, @@ -31486,19 +33939,14 @@ "digitalFont": 4, "bt=": 3, "valuesNumeric": 4, - "a=": 23, "ct=": 5, "autoScroll": 2, "section": 2, - "c=": 24, "wt=": 3, "getElementById": 4, "clearRect": 8, - "h=": 19, - "l=": 10, "v=": 5, "floor": 13, - "5": 23, "ot=": 4, "sans": 12, "serif": 13, @@ -31508,7 +33956,6 @@ "kt=": 4, "textAlign=": 7, "strokeStyle=": 8, - "4": 4, "clip": 1, "font=": 28, "measureText": 4, @@ -31516,9 +33963,7 @@ "fillText": 23, "38": 5, "o*.2": 1, - "clearTimeout": 2, "<=o-4&&(e=0,c=!1),u.fillText(n,o-2-e,h*.5+v*.38)),u.restore()},dt=function(n,i,r,u){var>": 1, - "d=": 15, "rt=": 3, "095": 1, "createLinearGradient": 6, @@ -31528,7 +33973,6 @@ "666666": 2, "92": 1, "e6e6e6": 1, - "g=": 15, "gradientStartColor": 1, "tt=": 3, "gradientFraction1Color": 1, @@ -31537,8 +33981,6 @@ "gradientStopColor": 1, "yt=": 4, "31": 26, - "k=": 11, - "p=": 5, "ut=": 6, "rgb": 6, "03": 1, @@ -31546,7 +33988,6 @@ "57": 1, "83": 1, "wt.repaint": 1, - "f.length": 5, "resetBuffers": 1, "this.setScrolling": 1, "w.textColor": 1, @@ -31569,7 +34010,6 @@ "setLcdColor=": 2, "repaint=": 2, "br=": 1, - "size": 6, "200": 2, "st=": 3, "decimalsVisible": 2, @@ -31591,7 +34031,6 @@ "ForegroundType": 2, "TYPE1": 2, "foregroundVisible": 4, - "PI": 54, "180": 26, "ni=": 1, "labelColor": 6, @@ -31603,7 +34042,6 @@ "f*.37": 3, "": 1, "rotate": 31, - "Math": 51, "u00b0": 8, "41": 3, "45": 5, @@ -31709,7 +34147,6 @@ "u.customLayer": 4, "u.degreeScale": 4, "u.roseVisible": 4, - "this.value": 4, "ft.getContext": 2, "ut.getContext": 2, "it.getContext": 2, @@ -31880,2618 +34317,181 @@ "7fd5f0": 2, "3c4439": 2, "72": 1, - "rdigit": 1, - "d/": 3, - "readyList.resolveWith": 1, - ".unbind": 4, - "jQuery._Deferred": 3, - "breaking": 1, - "Promise": 1, - "promiseMethods": 3, - "Static": 1, - "sliceDeferred": 1, - ".slice": 6, - "Create": 1, - "_Deferred": 4, - "doing": 3, - "flag": 1, - "cancelled": 5, - "done": 10, - "f1": 1, - "f2": 1, - "...": 1, - "_fired": 5, - "deferred.done.apply": 2, - "callbacks.push": 1, - "deferred.resolveWith": 5, - "resolve": 7, - "given": 3, - "resolveWith": 4, - "make": 2, - "available": 1, - "#8421": 1, - "callbacks.shift": 1, - "Has": 1, - "resolved": 1, - "isResolved": 3, - "Cancel": 1, - "cancel": 6, - "Full": 1, - "fledged": 1, - "two": 1, - "Deferred": 5, - "func": 3, - "failDeferred": 1, - "promise": 14, - "errorDeferred": 1, - "doneCallbacks": 2, - "failCallbacks": 2, - "deferred.done": 2, - ".fail": 2, - ".fail.apply": 1, - "failDeferred.done": 1, - "rejectWith": 2, - "failDeferred.resolveWith": 1, - "reject": 4, - "failDeferred.resolve": 1, - "isRejected": 2, - "failDeferred.isResolved": 1, - "pipe": 2, - "fnDone": 2, - "fnFail": 2, - "jQuery.Deferred": 1, - "newDefer": 3, - "action": 3, - "returned": 4, - "fn.apply": 1, - "returned.promise": 2, - ".then": 3, - "newDefer.resolve": 1, - "newDefer.reject": 1, - ".promise": 5, - "provided": 1, - "aspect": 1, - "added": 1, - "promiseMethods.length": 1, - "failDeferred.cancel": 1, - "deferred.cancel": 2, - "Unexpose": 1, - "Call": 1, - "func.call": 1, - "helper": 1, - "firstParam": 6, - "count": 4, - "<=>": 1, - "isFunction": 12, - "resolveFunc": 2, - "sliceDeferred.call": 2, - "Strange": 1, - "FF4": 1, - "Values": 1, - "onto": 2, - "sometimes": 1, - ".when": 1, - "Cloning": 2, - "into": 2, - "fresh": 1, - "solves": 1, - "issue": 1, - "deferred.reject": 1, - "deferred.promise": 1, - "jQuery.support": 1, - "documentElement": 2, - "document.documentElement": 2, - "bodyStyle": 1, - "Preliminary": 1, - "div.setAttribute": 1, - "Can": 2, - "automatically": 2, - "inserted": 1, - "insert": 1, - "tables": 1, - "link": 2, - "serialized": 3, - "correctly": 1, - "innerHTML": 1, - "This": 3, - "requires": 1, - "wrapper": 1, - "htmlSerialize": 3, - "getAttribute": 3, - ".cssText": 2, - "/top/.test": 2, - "URLs": 1, - "optSelected": 3, - "opt.selected": 1, - "setAttribute": 1, - "camelCase": 3, - "class.": 1, - "works": 1, - "attrFixes": 1, - "get/setAttribute": 1, - "ie6/7": 1, - "div.className": 1, - "later": 1, - "submitBubbles": 3, - "changeBubbles": 3, - "focusinBubbles": 2, - "deleteExpando": 3, - "noCloneEvent": 3, - "inlineBlockNeedsLayout": 3, - "shrinkWrapBlocks": 2, - "reliableMarginRight": 2, - "status": 3, - "properly": 2, - "cloned": 1, - "input.checked": 1, - "support.noCloneChecked": 1, - "input.cloneNode": 1, - ".checked": 2, - "selects": 1, - "Internet": 1, - "Explorer": 1, - "div.test": 1, - "support.deleteExpando": 1, - "div.addEventListener": 1, - "div.attachEvent": 2, - "div.fireEvent": 1, - "padding": 4, - "GC": 2, - "references": 1, - "across": 1, - "boundary": 1, - "global": 5, - "attached": 1, - "occur": 1, - "defining": 1, - "allows": 1, - "code": 2, - "shortcut": 1, - "same": 1, - "Avoid": 1, - "trying": 1, - "since": 1, - "ends": 1, - "jQuery.uuid": 1, - "TODO": 2, - "hack": 2, - "ONLY.": 2, - "Avoids": 2, - "exposing": 2, - "metadata": 2, - "plain": 2, - ".toJSON": 4, - "jQuery.noop": 2, - "An": 1, - "key/value": 1, - "pair": 1, - "shallow": 1, - "copied": 1, - "existing": 1, - "Internal": 1, - "separate": 1, - "destroy": 1, - "had": 1, - "internalCache": 3, - "Browsers": 1, - "deletion": 1, - "refuse": 1, - "browsers": 2, - "faster": 1, - "iterating": 1, - "persist": 1, - "existed": 1, - ".nodeType": 9, - ".attributes": 2, - "jQuery.isNaN": 1, - "Normalize": 1, - "jQuery.attrFix": 2, - "formHook": 3, - "forms": 1, - "contains": 8, - "rinvalidChar.test": 1, - "jQuery.support.getSetAttribute": 1, - "elem.removeAttributeNode": 1, - "elem.getAttributeNode": 1, - "detail": 3, - "layerX": 3, - "layerY": 3, - "newValue": 3, - "prevValue": 3, - "wheelDelta": 3, - "click.specialSubmit": 2, - "submit": 14, - "image": 5, - "keypress.specialSubmit": 2, - "password": 5, - ".specialSubmit": 2, - "_change_data": 6, - "change": 16, - "textarea": 8, - "file": 5, - ".specialChange": 4, - "bubbling": 1, - "bind": 3, - "unload": 5, - "live": 8, - "lastToggle": 4, - "die": 3, - "hover": 3, - "live.": 2, - "resize": 3, - "scroll": 6, - "dblclick": 3, - "mousedown": 3, - "mouseup": 3, - "mousemove": 3, - "keydown": 4, - "keypress": 4, - "keyup": 3, - "hasDuplicate": 1, - "baseHasDuplicate": 2, - "rBackslash": 1, - "rNonWord": 1, - "W/": 2, - "Sizzle": 1, - "results": 4, - "seed": 1, - "origContext": 1, - "context.nodeType": 2, - "checkSet": 1, - "extra": 1, - "cur": 6, - "pop": 1, - "prune": 1, - "contextXML": 1, - "Sizzle.isXML": 1, - "soFar": 1, - "Reset": 1, - "window.Modernizr": 1, - "Modernizr": 12, - "enableClasses": 3, - "docElement": 1, - "mod": 12, - "modElem": 2, - "mStyle": 2, - "modElem.style": 1, - "inputElem": 6, - "smile": 4, - "prefixes": 2, - "omPrefixes": 1, - "cssomPrefixes": 2, - "omPrefixes.split": 1, - "domPrefixes": 3, - "omPrefixes.toLowerCase": 1, - "ns": 1, - "inputs": 3, - "attrs": 6, - "classes": 1, - "classes.slice": 1, - "featureName": 5, - "testing": 1, - "injectElementWithStyles": 9, - "rule": 5, - "testnames": 3, - "fakeBody": 4, - "node.id": 1, - ".join": 14, - "div.id": 1, - "fakeBody.appendChild": 1, - "//avoid": 1, - "crashing": 1, - "fakeBody.style.background": 1, - "docElement.appendChild": 2, - "fakeBody.parentNode.removeChild": 1, - "div.parentNode.removeChild": 1, - "testMediaQuery": 2, - "mq": 3, - "matchMedia": 3, - "window.matchMedia": 1, - "window.msMatchMedia": 1, - ".matches": 1, - "bool": 30, - "node.currentStyle": 2, - "isEventSupported": 5, - "TAGNAMES": 2, - "element.setAttribute": 3, - "element.removeAttribute": 2, - "_hasOwnProperty": 2, - "hasOwnProperty": 5, - "_hasOwnProperty.call": 2, - "object.constructor.prototype": 1, - "Function.prototype.bind": 2, - "slice.call": 3, - "F": 8, - "F.prototype": 1, - "target.prototype": 1, - "target.apply": 2, - "args.concat": 2, - "setCss": 7, - "str": 4, - "mStyle.cssText": 1, - "setCssAll": 2, - "str1": 6, - "str2": 4, - "prefixes.join": 3, - "substr": 2, - "testProps": 3, - "props": 21, - "prefixed": 7, - "testDOMProps": 2, - "item": 4, - "item.bind": 1, - "testPropsAll": 17, - "ucProp": 5, - "prop.charAt": 1, - "prop.substr": 1, - "cssomPrefixes.join": 1, - "elem.getContext": 2, - ".fillText": 1, - "window.WebGLRenderingContext": 1, - "window.DocumentTouch": 1, - "DocumentTouch": 1, - "node.offsetTop": 1, - "window.postMessage": 1, - "window.openDatabase": 1, - "document.documentMode": 3, - "window.history": 2, - "history.pushState": 1, - "mStyle.backgroundColor": 3, - "mStyle.background": 1, - ".style.textShadow": 1, - "mStyle.opacity": 1, - "str3": 2, - "str1.length": 1, - "mStyle.backgroundImage": 1, - "docElement.style": 1, - "node.offsetLeft": 1, - "node.offsetHeight": 2, - "document.styleSheets": 1, - "document.styleSheets.length": 1, - "cssText": 4, - "style.cssRules": 3, - "style.cssText": 1, - "/src/i.test": 1, - "cssText.indexOf": 1, - "rule.split": 1, - "elem.canPlayType": 10, - "Boolean": 2, - "bool.ogg": 2, - "bool.h264": 1, - "bool.webm": 1, - "bool.mp3": 1, - "bool.wav": 1, - "bool.m4a": 1, - "localStorage.setItem": 1, - "localStorage.removeItem": 1, - "sessionStorage.setItem": 1, - "sessionStorage.removeItem": 1, - "window.Worker": 1, - "window.applicationCache": 1, - "document.createElementNS": 6, - "ns.svg": 4, - ".createSVGRect": 1, - "div.firstChild.namespaceURI": 1, - "/SVGAnimate/.test": 1, - "toString.call": 2, - "/SVGClipPath/.test": 1, - "webforms": 2, - "props.length": 2, - "attrs.list": 2, - "window.HTMLDataListElement": 1, - "inputElemType": 5, - "defaultView": 2, - "inputElem.setAttribute": 1, - "inputElem.type": 1, - "inputElem.value": 2, - "inputElem.style.cssText": 1, - "range": 2, - "inputElem.style.WebkitAppearance": 1, - "document.defaultView": 1, - "defaultView.getComputedStyle": 2, - ".WebkitAppearance": 1, - "inputElem.offsetHeight": 1, - "docElement.removeChild": 1, - "search": 5, - "tel": 2, - "email": 2, - "inputElem.checkValidity": 2, - "feature": 12, - "feature.toLowerCase": 2, - "classes.push": 1, - "Modernizr.input": 1, - "Modernizr.addTest": 2, - "docElement.className": 2, - "chaining.": 1, - "window.html5": 2, - "reSkip": 1, - "map": 7, - "iframe": 3, - "saveClones": 1, - "fieldset": 1, - "h1": 5, - "h2": 5, - "h3": 3, - "h4": 3, - "h5": 1, - "h6": 1, - "img": 1, - "ol": 1, - "param": 3, - "q": 34, - "script": 7, - "span": 1, - "strong": 1, - "tfoot": 1, - "th": 1, - "thead": 2, - "ul": 1, - "supportsHtml5Styles": 5, - "supportsUnknownElements": 3, - "a.innerHTML": 7, - "//if": 2, - "implemented": 1, - "assume": 1, - "Styles": 1, - "Chrome": 2, - "additional": 1, - "solve": 1, - "node.hidden": 1, - ".display": 1, - "a.childNodes.length": 1, - "frag": 13, - "frag.cloneNode": 1, - "frag.createDocumentFragment": 1, - "frag.createElement": 2, - "addStyleSheet": 2, - "ownerDocument": 9, - "ownerDocument.createElement": 3, - "ownerDocument.getElementsByTagName": 1, - "ownerDocument.documentElement": 1, - "p.innerHTML": 1, - "parent.insertBefore": 1, - "p.lastChild": 1, - "parent.firstChild": 1, - "getElements": 2, - "html5.elements": 1, - "elements.split": 1, - "shivMethods": 2, - "docCreateElement": 5, - "docCreateFragment": 2, - "ownerDocument.createDocumentFragment": 2, - "nodeName": 20, - "//abort": 1, - "shiv": 1, - "html5.shivMethods": 1, - ".cloneNode": 4, - "saveClones.test": 1, - "node.canHaveChildren": 1, - "reSkip.test": 1, - "frag.appendChild": 1, - "Function": 3, - "html5": 3, - "shivDocument": 3, - "shived": 5, - "ownerDocument.documentShived": 2, - "html5.shivCSS": 1, - "options.elements": 1, - "options.shivCSS": 1, - "options.shivMethods": 1, - "Modernizr._version": 1, - "Modernizr._prefixes": 1, - "Modernizr._domPrefixes": 1, - "Modernizr._cssomPrefixes": 1, - "Modernizr.mq": 1, - "Modernizr.hasEvent": 1, - "Modernizr.testProp": 1, - "Modernizr.testAllProps": 1, - "Modernizr.testStyles": 1, - "Modernizr.prefixed": 1, - "docElement.className.replace": 1, - "js": 1, - "classes.join": 1, - "this.document": 1, - "PEG.parser": 1, - "result0": 264, - "result1": 81, - "result2": 77, - "parse_singleQuotedCharacter": 3, - "result1.push": 3, - "input.charCodeAt": 18, - "reportFailures": 64, - "matchFailed": 40, - "pos1": 63, - "offset": 21, - "chars": 1, - "chars.join": 1, - "pos0": 51, - "parse_simpleSingleQuotedCharacter": 2, - "parse_simpleEscapeSequence": 3, - "parse_zeroEscapeSequence": 3, - "parse_hexEscapeSequence": 3, - "parse_unicodeEscapeSequence": 3, - "parse_eolEscapeSequence": 3, - "pos2": 22, - "parse_eolChar": 6, - "input.length": 9, - "input.charAt": 21, - "char_": 9, - "parse_class": 1, - "result3": 35, - "result4": 12, - "result5": 4, - "parse_classCharacterRange": 3, - "parse_classCharacter": 5, - "result2.push": 1, - "parse___": 2, - "inverted": 4, - "partsConverted": 2, - "part.data": 1, - "rawText": 5, - "part.rawText": 1, - "ignoreCase": 1, - "begin": 1, - "begin.data.charCodeAt": 1, - "end.data.charCodeAt": 1, - "this.SyntaxError": 2, - "begin.rawText": 2, - "end.rawText": 2, - "begin.data": 1, - "end.data": 1, - "parse_bracketDelimitedCharacter": 2, - "quoteForRegexpClass": 1, - "parse_simpleBracketDelimitedCharacter": 2, - "parse_digit": 3, - "recognize": 1, - "input.substr": 9, - "parse_hexDigit": 7, - "parse_eol": 4, - "eol": 2, - "fA": 2, - "parse_letter": 1, - "parse_lowerCaseLetter": 2, - "parse_upperCaseLetter": 2, - "parse_whitespace": 3, - "parse_comment": 3, - "result0.push": 1, - "parse_singleLineComment": 2, - "parse_multiLineComment": 2, - "x0B": 1, - "uFEFF": 1, - "u1680": 1, - "u180E": 1, - "u2000": 1, - "u200A": 1, - "u202F": 1, - "u205F": 1, - "u3000": 1, - "cleanupExpected": 2, - "expected.sort": 1, - "lastExpected": 3, - "cleanExpected": 2, - "expected.length": 4, - "cleanExpected.push": 1, - "computeErrorPosition": 2, - "column": 8, - "seenCR": 5, - "rightmostFailuresPos": 2, - "parseFunctions": 1, - "startRule": 1, - "errorPosition": 1, - "rightmostFailuresExpected": 1, - "errorPosition.line": 1, - "errorPosition.column": 1, - "toSource": 1, - "this._source": 1, - "result.SyntaxError": 1, - "buildMessage": 2, - "expectedHumanized": 5, - "foundHumanized": 3, - "expected.slice": 1, - "this.expected": 1, - "this.found": 1, - "this.offset": 2, - "this.column": 1, - "result.SyntaxError.prototype": 1, - "Error.prototype": 1, - "cubes": 4, - "math": 4, - "opposite": 6, - "race": 4, - "square": 10, - "__slice": 2, - "Math.sqrt": 2, - "cube": 2, - "runners": 6, - "winner": 6, - "__slice.call": 2, - "print": 2, - "elvis": 4, - "_i": 10, - "_len": 6, - "_results": 6, - "_results.push": 2, - "math.cube": 2, - "multiply": 1, - "window.angular": 1, - "ma": 3, - "c.isReady": 4, - "s.documentElement.doScroll": 2, - "c.ready": 7, - "Qa": 1, - "b.src": 4, - "c.ajax": 1, - "async": 5, - "dataType": 6, - "c.globalEval": 1, - "b.text": 3, - "b.textContent": 2, - "b.innerHTML": 3, - "b.parentNode": 4, - "b.parentNode.removeChild": 2, - "X": 6, - "a.length": 23, - "c.isFunction": 9, - "d.call": 3, - "J": 5, - "Y": 3, - "na": 1, - ".type": 2, - "c.event.handle.apply": 1, - "oa": 1, - "c.data": 12, - "a.liveFired": 4, - "i.live": 1, - "a.button": 2, - "a.type": 14, - "i.live.slice": 1, - "u.length": 3, - "i.origType.replace": 1, - "O": 6, - "f.push": 5, - "i.selector": 3, - "u.splice": 1, - "a.target": 5, - ".closest": 4, - "a.currentTarget": 4, - "j.length": 2, - ".selector": 1, - ".elem": 1, - "i.preType": 2, - "a.relatedTarget": 2, - "d.push": 1, - "handleObj": 2, - "d.length": 8, - "j.elem": 2, - "a.data": 2, - "j.handleObj.data": 1, - "a.handleObj": 2, - "j.handleObj": 1, - "j.handleObj.origHandler.apply": 1, - "pa": 1, - "b.replace": 3, - "./g": 2, - "qa": 1, - "a.parentNode": 6, - "a.parentNode.nodeType": 2, - "ra": 1, - "b.each": 1, - "this.nodeName": 4, - ".nodeName": 2, - "f.events": 1, - "e.handle": 2, - "e.events": 2, - "c.event.add": 1, - "sa": 2, - ".ownerDocument": 5, - "ta.test": 1, - "c.support.checkClone": 2, - "ua.test": 1, - "c.fragments": 2, - "b.createDocumentFragment": 1, - "c.clean": 1, - "cacheable": 2, - "K": 4, - "c.each": 2, - "va.concat.apply": 1, - "va.slice": 1, - "wa": 1, - "a.document": 3, - "a.nodeType": 27, - "a.defaultView": 2, - "a.parentWindow": 2, - "c.fn.init": 1, - "Ra": 2, - "A.jQuery": 3, - "Sa": 2, - "A.": 3, - "A.document": 1, - "T": 4, - "Ta": 1, - "Ua": 1, - "Va": 1, - "Wa": 2, - "u00A0": 2, - "Xa": 1, - "P": 4, - "xa": 3, - "Q": 6, - "L": 10, - "aa": 1, - "ba": 3, - "R": 2, - "ya": 2, - "c.fn": 2, - "c.prototype": 1, - "s.body": 2, - "Ta.exec": 1, - "b.ownerDocument": 6, - "Xa.exec": 1, - "c.isPlainObject": 3, - "s.createElement": 10, - "c.fn.attr.call": 1, - "f.createElement": 1, - "a.cacheable": 1, - "a.fragment.cloneNode": 1, - "a.fragment": 1, - ".childNodes": 2, - "c.merge": 4, - "s.getElementById": 1, - "b.id": 1, - "T.find": 1, - "s.getElementsByTagName": 2, - "b.jquery": 1, - ".find": 5, - "T.ready": 1, - "a.selector": 4, - "a.context": 2, - "c.makeArray": 3, - "jquery": 3, - "toArray": 2, - "R.call": 2, - "this.toArray": 3, - "this.slice": 5, - "pushStack": 4, - "c.isArray": 5, - "ba.apply": 1, - "f.prevObject": 1, - "f.context": 1, - "f.selector": 2, - "c.bindReady": 1, - "a.call": 17, - "Q.push": 1, - "eq": 2, - "this.eq": 4, - "this.pushStack": 12, - "R.apply": 1, - "c.map": 1, - "this.prevObject": 3, - "c.fn.init.prototype": 1, - "c.extend": 7, - "c.fn.extend": 4, - "c.fn.triggerHandler": 1, - ".triggerHandler": 1, - "s.readyState": 2, - "s.addEventListener": 3, - "A.addEventListener": 1, - "s.attachEvent": 3, - "A.attachEvent": 1, - "A.frameElement": 1, - "isPlainObject": 4, - "a.setInterval": 2, - "a.constructor": 2, - "aa.call": 3, - "a.constructor.prototype": 2, - "c.trim": 3, - "a.replace": 7, - "@": 1, - "A.JSON": 1, - "A.JSON.parse": 2, - "c.error": 2, - "noop": 3, - "globalEval": 2, - "Va.test": 1, - "s.documentElement": 2, - "d.type": 2, - "c.support.scriptEval": 2, - "d.appendChild": 3, - "s.createTextNode": 2, - "d.text": 1, - "b.insertBefore": 3, - "b.firstChild": 5, - "b.removeChild": 3, - "a.nodeName": 12, - "a.nodeName.toUpperCase": 2, - "b.toUpperCase": 3, - "b.apply": 2, - "b.call": 4, - "makeArray": 3, - "ba.call": 1, - "inArray": 5, - "b.indexOf": 2, - "b.length": 12, - "merge": 2, - "grep": 6, - "f.concat.apply": 1, - "guid": 5, - "proxy": 4, - "a.apply": 2, - "b.guid": 2, - "a.guid": 7, - "c.guid": 1, - "a.toLowerCase": 4, - "/.exec": 4, - "/compatible/.test": 1, - "c.uaMatch": 1, - "P.browser": 2, - "c.browser": 1, - "c.browser.version": 1, - "P.version": 1, - "c.browser.webkit": 1, - "c.browser.safari": 1, - "c.inArray": 2, - "ya.call": 1, - "s.removeEventListener": 1, - "s.detachEvent": 1, - "c.support": 2, - "d.style.display": 5, - "d.innerHTML": 2, - "d.getElementsByTagName": 6, - "e.length": 9, - "d.firstChild.nodeType": 1, - "/red/.test": 1, - "j.getAttribute": 2, - "j.style.opacity": 1, - "j.style.cssFloat": 1, - ".value": 1, - ".appendChild": 1, - ".selected": 1, - "parentNode": 10, - "d.removeChild": 1, - ".parentNode": 7, - "checkClone": 1, - "scriptEval": 1, - "boxModel": 1, - "b.type": 4, - "b.appendChild": 1, - "a.insertBefore": 2, - "a.firstChild": 6, - "b.test": 1, - "c.support.deleteExpando": 2, - "a.removeChild": 2, - "d.attachEvent": 2, - "d.fireEvent": 1, - "c.support.noCloneEvent": 1, - "d.detachEvent": 1, - "d.cloneNode": 1, - "s.createDocumentFragment": 1, - "a.appendChild": 3, - "d.firstChild": 2, - "a.cloneNode": 3, - ".lastChild.checked": 2, - "k.style.width": 1, - "k.style.paddingLeft": 1, - "s.body.appendChild": 1, - "c.boxModel": 1, - "c.support.boxModel": 1, - "k.offsetWidth": 1, - "s.body.removeChild": 1, - "n.setAttribute": 1, - "c.support.submitBubbles": 1, - "c.support.changeBubbles": 1, - "c.props": 2, - "readonly": 3, - "maxlength": 2, - "cellspacing": 2, - "rowspan": 2, - "colspan": 2, - "usemap": 2, - "frameborder": 2, - "G": 11, - "Ya": 2, - "za": 3, - "embed": 3, - "applet": 2, - "c.noData": 2, - "a.nodeName.toLowerCase": 3, - "c.cache": 2, - "c.isEmptyObject": 1, - "c.removeData": 2, - "c.expando": 2, - "a.removeAttribute": 3, - "a.split": 4, - "this.trigger": 2, - ".each": 3, - "queue": 7, - "dequeue": 6, - "c.queue": 3, - "d.shift": 2, - "d.unshift": 2, - "f.call": 1, - "c.dequeue": 4, - "c.fx": 1, - "c.fx.speeds": 1, - "this.queue": 4, - "clearQueue": 2, - "Aa": 3, - "ca": 6, - "Za": 2, - "r/g": 2, - "/href": 1, - "style/": 1, - "ab": 1, - "bb": 2, - "area": 2, - "Ba": 3, - "/radio": 1, - "checkbox/": 1, - "c.attr": 4, - "this.nodeType": 4, - "this.removeAttribute": 1, - "addClass": 2, - "r.addClass": 1, - "r.attr": 1, - "e.nodeType": 7, - "e.className": 14, - "j.indexOf": 1, - "removeClass": 2, - "n.removeClass": 1, - "n.attr": 1, - "j.replace": 2, - "toggleClass": 2, - "j.toggleClass": 1, - "j.attr": 1, - "i.hasClass": 1, - "this.className": 10, - "hasClass": 2, - "": 1, - "c.nodeName": 4, - "b.attributes.value": 1, - ".specified": 1, - "b.value": 4, - "b.selectedIndex": 2, - "b.options": 1, - "": 1, - "nodeType=": 6, - "checked=": 1, - "this.selected": 1, - "this.selectedIndex": 1, - "attrFn": 2, - "css": 7, - "c.attrFn": 1, - "c.isXMLDoc": 1, - "a.test": 2, - "ab.test": 1, - "a.getAttributeNode": 7, - ".nodeValue": 1, - "b.specified": 2, - "bb.test": 2, - "cb.test": 1, - "a.href": 2, - "c.support.style": 1, - "a.style.cssText": 3, - "a.setAttribute": 7, - "c.support.hrefNormalized": 1, - "c.style": 1, - "db": 1, - "originalTarget": 1, - "onunload": 1, - "h.nodeType": 4, - "H": 8, - "M": 9, - "I": 7, - "f.exec": 2, - "p.push": 2, - "p.length": 10, - "r.exec": 1, - "n.relative": 5, - "ga": 2, - "p.shift": 4, - "n.match.ID.test": 2, - "k.find": 6, - "v.expr": 4, - "k.filter": 5, - "v.set": 5, - "expr": 2, - "p.pop": 4, - "h.parentNode": 3, - "D": 9, - "k.error": 2, - "j.call": 2, - "E": 11, - "l.push": 2, - "l.push.apply": 1, - "k.uniqueSort": 5, - "B": 5, - "g.sort": 1, - "g.length": 2, - "g.splice": 2, - "k.matches": 1, - "n.order.length": 1, - "n.order": 1, - "n.leftMatch": 1, - ".exec": 2, - "q.splice": 1, - "y.substr": 1, - "y.length": 1, - "Syntax": 3, - "unrecognized": 3, - "NAME": 2, - "TAG": 2, - "u00c0": 2, - "uFFFF": 2, - "leftMatch": 2, - "attrMap": 2, - "attrHandle": 2, - "g.getAttribute": 1, - "relative": 4, - "W/.test": 1, - "h.toLowerCase": 2, - "": 1, - "previousSibling": 5, - "nth": 5, - "odd": 2, - "reset": 2, - "Array": 3, - "sourceIndex": 1, - "": 4, - "name=": 2, - "href=": 2, - "": 2, - "

": 2, - "

": 2, - ".TEST": 2, - "
": 3, - "CLASS": 1, - "nextSibling": 3, - "": 1, - "": 1, - "
": 1, - "
": 1, - "": 4, - "
": 5, - "": 3, - "": 3, - "": 2, - "": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "position": 7, - "absolute": 2, - "solid": 2, - "#000": 2, - "": 1, - "": 1, - "fixed": 1, - "marginLeft": 2, - "borderTopWidth": 1, - "borderLeftWidth": 1, - "Left": 1, - "Top": 1, - "pageXOffset": 2, - "pageYOffset": 1, - "Height": 1, - "Width": 1, - "scrollTo": 1, - "CSS1Compat": 1, - "client": 3, - "cy": 4, - "f.isWindow": 2, - "cv": 2, - "cj": 4, - ".appendTo": 2, - "b.css": 1, - "b.remove": 1, - "ck": 5, - "c.createElement": 12, - "ck.frameBorder": 1, - "ck.width": 1, - "ck.height": 1, - "c.body.appendChild": 1, - "cl": 3, - "ck.createElement": 1, - "ck.contentWindow": 1, - "ck.contentDocument": 1, - ".document": 1, - "cl.write": 1, - "cl.createElement": 1, - "cl.body.appendChild": 1, - "f.css": 24, - "c.body.removeChild": 1, - "f.each": 21, - "cp.concat.apply": 1, - "cp.slice": 1, - "cq": 3, - "cs": 3, - "f.now": 2, - "a.ActiveXObject": 3, - "a.XMLHttpRequest": 1, - "a.dataFilter": 2, - "a.dataType": 1, - "a.dataTypes": 2, - "a.converters": 3, - "o.split": 1, - "f.error": 4, - "m.replace": 1, - "a.contents": 1, - "a.responseFields": 1, - "f.shift": 1, - "a.mimeType": 1, - "c.getResponseHeader": 1, - ".test": 1, - "f.unshift": 2, - "b_": 4, - "f.isArray": 8, - "bF.test": 1, - "c.dataTypes": 1, - "h.length": 3, - "bU": 4, - "c.dataTypes.unshift": 1, - "bZ": 3, - "f.isFunction": 21, - "b.toLowerCase": 3, - "bQ": 3, - "h.substr": 1, - "bD": 3, - "bx": 2, - "a.offsetWidth": 6, - "a.offsetHeight": 2, - "bn": 2, - "f.ajax": 3, - "f.globalEval": 2, - "bm": 3, - "f.nodeName": 16, - "bl": 3, - "a.getElementsByTagName": 9, - "f.grep": 3, - "a.defaultChecked": 1, - "a.checked": 4, - "bk": 5, - "a.querySelectorAll": 1, - "bj": 3, - "b.nodeType": 6, - "b.clearAttributes": 2, - "b.mergeAttributes": 2, - "b.nodeName.toLowerCase": 1, - "b.outerHTML": 1, - "a.outerHTML": 1, - "b.selected": 1, - "a.defaultSelected": 1, - "b.defaultValue": 1, - "a.defaultValue": 1, - "b.defaultChecked": 1, - "b.checked": 1, - "a.value": 8, - "b.removeAttribute": 3, - "f.expando": 23, - "f.hasData": 2, - "f.data": 25, - "d.events": 1, - "f.extend": 23, - "": 1, - "bh": 1, - "getElementsByTagName": 1, - "appendChild": 1, - "nodeType": 1, - "W": 3, - "N": 2, - "f._data": 15, - "r.live": 1, - "a.target.disabled": 1, - "a.namespace": 1, - "a.namespace.split": 1, - "r.live.slice": 1, - "s.length": 2, - "g.origType.replace": 1, - "q.push": 1, - "g.selector": 3, - "s.splice": 1, - "m.selector": 1, - "n.test": 2, - "g.namespace": 1, - "m.elem.disabled": 1, - "m.elem": 1, - "g.preType": 3, - "f.contains": 5, - "m.level": 1, - "": 1, - "e.elem": 2, - "e.handleObj.data": 1, - "e.handleObj": 1, - "e.handleObj.origHandler.apply": 1, - "a.isPropagationStopped": 1, - "e.level": 1, - "a.isImmediatePropagationStopped": 1, - "e.type": 6, - "e.originalEvent": 1, - "e.liveFired": 1, - "f.event.handle.call": 1, - ".preventDefault": 1, - "f.removeData": 4, - "i.resolve": 1, - "c.replace": 4, - "f.isNaN": 3, - "i.test": 1, - "f.parseJSON": 2, - "a.navigator": 1, - "a.location": 1, - "e.isReady": 1, - "c.documentElement.doScroll": 2, - "e.ready": 6, - "e.fn.init": 1, - "a.jQuery": 2, - "a.": 2, - "d.userAgent": 1, - "C": 4, - "e.fn": 2, - "e.prototype": 1, - "c.body": 4, - "a.charAt": 2, - "i.exec": 1, - "d.ownerDocument": 1, - "n.exec": 1, - "e.isPlainObject": 1, - "e.fn.attr.call": 1, - "k.createElement": 1, - "e.buildFragment": 1, - "j.cacheable": 1, - "e.clone": 1, - "j.fragment": 2, - "e.merge": 3, - "c.getElementById": 1, - "h.id": 1, - "f.find": 2, - "d.jquery": 1, - "e.isFunction": 5, - "f.ready": 1, - "e.makeArray": 1, - "D.call": 4, - "e.isArray": 2, - "C.apply": 1, - "d.prevObject": 1, - "d.context": 2, - "d.selector": 2, - "e.each": 2, - "e.bindReady": 1, - "y.done": 1, - "D.apply": 1, - "e.map": 1, - "e.fn.init.prototype": 1, - "e.extend": 2, - "e.fn.extend": 1, - "": 1, - "jQuery=": 2, - "isReady=": 1, - "y.resolveWith": 1, - "e.fn.trigger": 1, - "e._Deferred": 1, - "c.readyState": 2, - "c.addEventListener": 4, - "a.addEventListener": 4, - "c.attachEvent": 3, - "a.attachEvent": 6, - "a.frameElement": 1, - "isWindow": 2, - "m.test": 1, - "A.call": 1, - "e.isWindow": 2, - "B.call": 3, - "e.trim": 1, - "a.JSON": 1, - "a.JSON.parse": 2, - "o.test": 1, - "e.error": 2, - "parseXML": 1, - "a.DOMParser": 1, - "DOMParser": 1, - "d.parseFromString": 1, - "ActiveXObject": 1, - "c.async": 4, - "c.loadXML": 1, - "c.documentElement": 4, - "d.nodeName": 4, - "j.test": 3, - "a.execScript": 1, - "a.eval.call": 1, - "c.apply": 2, - "c.call": 3, - "E.call": 1, - "C.call": 1, - "F.call": 1, - "c.length": 8, - "": 1, - "j=": 14, - "h.concat.apply": 1, - "f.concat": 1, - "g.guid": 3, - "e.guid": 3, - "e.access": 1, - "s.exec": 1, - "t.exec": 1, - "u.exec": 1, - "a.indexOf": 2, - "v.exec": 1, - "a.fn.init": 2, - "a.superclass": 1, - "a.fn": 2, - "a.prototype": 1, - "a.fn.constructor": 1, - "a.sub": 1, - "e.fn.init.call": 1, - "a.fn.init.prototype": 1, - "e.uaMatch": 1, - "x.browser": 2, - "e.browser": 1, - "e.browser.version": 1, - "x.version": 1, - "e.browser.webkit": 1, - "e.browser.safari": 1, - "c.removeEventListener": 2, - "c.detachEvent": 1, - "": 1, - "shift": 1, - "apply": 8, - "h.call": 2, - "g.resolveWith": 3, - "<=1&&a&&f.isFunction(a.promise)?a:f.Deferred();if(d>": 1, - "g.reject": 1, - "g.promise": 1, - "f.support": 2, - "f.appendChild": 1, - "a.firstChild.nodeType": 2, - "e.getAttribute": 2, - "e.style.opacity": 1, - "e.style.cssFloat": 1, - "h.value": 3, - "g.selected": 1, - "a.className": 1, - "h.checked": 2, - "j.noCloneChecked": 1, - "h.cloneNode": 1, - "f.disabled": 1, - "j.optDisabled": 1, - "g.disabled": 1, - "j.deleteExpando": 1, - "a.fireEvent": 1, - "j.noCloneEvent": 1, - "a.detachEvent": 1, - "h.setAttribute": 2, - "j.radioValue": 1, - "c.createDocumentFragment": 1, - "k.appendChild": 1, - "j.checkClone": 1, - "k.cloneNode": 1, - "a.style.width": 1, - "a.style.paddingLeft": 1, - "visibility": 3, - "l.style": 1, - "l.appendChild": 1, - "j.appendChecked": 1, - "j.boxModel": 1, - "a.style": 8, - "a.style.display": 3, - "a.style.zoom": 1, - "j.inlineBlockNeedsLayout": 1, - "j.shrinkWrapBlocks": 1, - "j.reliableHiddenOffsets": 1, - "c.defaultView": 2, - "c.defaultView.getComputedStyle": 3, - "i.style.width": 1, - "i.style.marginRight": 1, - "j.reliableMarginRight": 1, - "l.innerHTML": 1, - "f.boxModel": 1, - "f.support.boxModel": 4, - "f.fn.jquery": 1, - "f.cache": 5, - "f.acceptData": 4, - "f.uuid": 1, - "f.noop": 4, - "f.camelCase": 5, - ".events": 1, - "f.support.deleteExpando": 3, - "f.noData": 2, - "f.fn.extend": 9, - "g.indexOf": 2, - "g.substring": 1, - "b.triggerHandler": 2, - "_mark": 2, - "_unmark": 3, - "f.makeArray": 5, - "e.push": 3, - "f.queue": 3, - "c.shift": 2, - "c.unshift": 1, - "f.dequeue": 4, - "f.fx": 2, - "f.fx.speeds": 1, - "d.resolveWith": 1, - "f.Deferred": 2, - "f._Deferred": 2, - "l.done": 1, - "d.promise": 1, - "rea": 1, - "autofocus": 1, - "autoplay": 1, - "controls": 1, - "defer": 1, - "required": 1, - "scoped": 1, - "f.access": 3, - "f.attr": 2, - "f.removeAttr": 3, - "f.prop": 2, - "removeProp": 1, - "f.propFix": 6, - "c.addClass": 1, - "f.trim": 2, - "c.removeClass": 1, - "g.nodeType": 6, - "g.className": 4, - "h.replace": 2, - "d.toggleClass": 1, - "d.attr": 1, - "h.hasClass": 1, - "": 1, - "f.valHooks": 7, - "e.nodeName.toLowerCase": 1, - "c.get": 1, - "e.value": 1, - "e.val": 1, - "f.map": 5, - "this.nodeName.toLowerCase": 1, - "this.type": 3, - "c.set": 1, - "valHooks": 1, - "a.attributes.value": 1, - "a.text": 1, - "a.selectedIndex": 3, - "a.options": 2, - "": 3, - "optDisabled": 1, - "selected=": 1, - "attrFix": 1, - "f.attrFn": 3, - "f.isXMLDoc": 4, - "f.attrFix": 3, - "f.attrHooks": 5, - "t.test": 2, - "d.toLowerCase": 1, - "c.toLowerCase": 4, - "u.test": 1, - "i.set": 1, - "i.get": 1, - "f.support.getSetAttribute": 2, - "a.removeAttributeNode": 1, - "q.test": 1, - "f.support.radioValue": 1, - "c.specified": 1, - "c.value": 1, - "r.test": 1, - "s.test": 1, - "propFix": 1, - "cellpadding": 1, - "contenteditable": 1, - "f.propHooks": 1, - "h.set": 1, - "h.get": 1, - "propHooks": 1, - "f.attrHooks.value": 1, - "v.get": 1, - "f.attrHooks.name": 1, - "f.valHooks.button": 1, - "d.nodeValue": 3, - "f.support.hrefNormalized": 1, - "f.support.style": 1, - "f.attrHooks.style": 1, - "a.style.cssText.toLowerCase": 1, - "f.support.optSelected": 1, - "f.propHooks.selected": 2, - "b.parentNode.selectedIndex": 1, - "f.support.checkOn": 1, - "f.inArray": 4, - "s.": 1, - "f.event": 2, - "d.handler": 1, - "g.handler": 1, - "d.guid": 4, - "f.guid": 3, - "i.events": 2, - "i.handle": 2, - "f.event.triggered": 3, - "f.event.handle.apply": 1, - "k.elem": 2, - "c.split": 2, - "l.indexOf": 1, - "l.split": 1, - "n.shift": 1, - "h.namespace": 2, - "n.slice": 1, - "h.type": 1, - "h.guid": 2, - "f.event.special": 5, - "p.setup": 1, - "p.setup.call": 1, - "p.add": 1, - "p.add.call": 1, - "h.handler.guid": 2, - "o.push": 1, - "f.event.global": 2, - "s.events": 1, - "c.type": 9, - "c.handler": 1, - "c.charAt": 1, - "f.event.remove": 5, - "h.indexOf": 3, - "h.split": 2, - "m.shift": 1, - "m.slice": 1, - "q.namespace": 1, - "q.handler": 1, - "p.splice": 1, - "": 1, - "elem=": 4, - "customEvent": 1, - "trigger": 4, - "h.slice": 1, - "i.shift": 1, - "i.sort": 1, - "f.event.customEvent": 1, - "f.Event": 2, - "c.exclusive": 2, - "c.namespace": 2, - "i.join": 2, - "c.namespace_re": 1, - "c.preventDefault": 3, - "c.stopPropagation": 1, - "b.events": 4, - "f.event.trigger": 6, - "b.handle.elem": 2, - "c.result": 3, - "c.target": 3, - "c.currentTarget": 2, - "m.apply": 1, - "k.parentNode": 1, - "k.ownerDocument": 1, - "c.target.ownerDocument": 1, - "c.isPropagationStopped": 1, - "c.isDefaultPrevented": 2, - "o._default": 1, - "o._default.call": 1, - "e.ownerDocument": 1, - "f.event.fix": 2, - "a.event": 1, - "Array.prototype.slice.call": 1, - "namespace_re": 1, - "namespace": 1, - "handler=": 1, - "data=": 2, - "handleObj=": 1, - "result=": 1, - "preventDefault": 4, - "stopPropagation": 5, - "isImmediatePropagationStopped": 2, - "fix": 1, - "Event": 3, - "target=": 2, - "relatedTarget=": 1, - "fromElement=": 1, - "pageX=": 2, - "scrollLeft": 2, - "clientLeft": 2, - "pageY=": 1, - "scrollTop": 2, - "clientTop": 2, - "which=": 3, - "metaKey=": 1, - "1e8": 1, - "special": 3, - "setup": 5, - "teardown": 6, - "origType": 2, - "beforeunload": 1, - "onbeforeunload=": 3, - "removeEvent=": 1, - "removeEventListener": 3, - "detachEvent": 2, - "Event=": 1, - "originalEvent=": 1, - "type=": 5, - "isDefaultPrevented=": 2, - "defaultPrevented": 1, - "returnValue=": 2, - "getPreventDefault": 2, - "timeStamp=": 1, - "prototype=": 2, - "originalEvent": 2, - "isPropagationStopped=": 1, - "cancelBubble=": 1, - "stopImmediatePropagation": 1, - "isImmediatePropagationStopped=": 1, - "isDefaultPrevented": 1, - "isPropagationStopped": 1, - "G=": 1, - "H=": 1, - "submit=": 1, - "specialSubmit": 3, - "closest": 3, - "keyCode=": 1, - "J=": 1, - "selectedIndex": 1, - "a.selected": 1, - "z.test": 3, - "d.readOnly": 1, - "c.liveFired": 1, - "f.event.special.change": 1, - "filters": 1, - "beforedeactivate": 1, - "K.call": 2, - "a.keyCode": 2, - "beforeactivate": 1, - "f.event.add": 2, - "f.event.special.change.filters": 1, - "I.focus": 1, - "I.beforeactivate": 1, - "f.support.focusinBubbles": 1, - "c.originalEvent": 1, - "a.preventDefault": 3, - "f.fn": 9, - "e.apply": 1, - "this.one": 1, - "unbind": 2, - "this.unbind": 2, - "delegate": 1, - "this.live": 1, - "undelegate": 1, - "this.die": 1, - "triggerHandler": 1, - ".guid": 1, - "this.click": 1, - "this.mouseenter": 1, - ".mouseleave": 1, - "g.charAt": 1, - "n.unbind": 1, - "y.exec": 1, - "a.push": 2, - "n.length": 1, - "": 1, - "this.bind": 2, - "": 2, - "sizcache=": 4, - "sizset": 2, - "sizset=": 2, - "toLowerCase": 3, - "d.nodeType": 5, - "k.isXML": 4, - "a.exec": 2, - "x.push": 1, - "x.length": 8, - "m.exec": 1, - "l.relative": 6, - "x.shift": 4, - "l.match.ID.test": 2, - "q.expr": 4, - "q.set": 4, - "x.pop": 4, - "d.parentNode": 4, - "e.call": 1, - "f.push.apply": 1, - "k.contains": 5, - "a.sort": 1, - "": 1, - "matches=": 1, - "matchesSelector=": 1, - "l.order.length": 1, - "l.order": 1, - "l.leftMatch": 1, - "j.substr": 1, - "": 1, - "__sizzle__": 1, - "sizzle": 1, - "l.match.PSEUDO.test": 1, - "a.document.nodeType": 1, - "a.getElementsByClassName": 3, - "a.lastChild.className": 1, - "l.order.splice": 1, - "l.find.CLASS": 1, - "b.getElementsByClassName": 2, - "c.documentElement.contains": 1, - "a.contains": 2, - "c.documentElement.compareDocumentPosition": 1, - "a.compareDocumentPosition": 1, - "a.ownerDocument": 1, - ".documentElement": 1, - "b.nodeName": 2, - "l.match.PSEUDO.exec": 1, - "l.match.PSEUDO": 1, - "f.expr": 4, - "k.selectors": 1, - "f.expr.filters": 3, - "f.unique": 4, - "f.text": 2, - "k.getText": 1, - "/Until": 1, - "parents": 2, - "prevUntil": 2, - "prevAll": 2, - "U": 1, - "f.expr.match.POS": 1, - "V": 2, - "contents": 4, - "prev": 2, - ".filter": 2, - "": 1, - "e.splice": 1, - "this.filter": 2, - "": 1, - "": 1, - ".is": 2, - "c.push": 3, - "g.parentNode": 2, - "U.test": 1, - "": 1, - "f.find.matchesSelector": 2, - "g.ownerDocument": 1, - "this.parent": 2, - ".children": 1, - "a.jquery": 2, - "f.merge": 2, - "this.get": 1, - "andSelf": 1, - "this.add": 1, - "f.dir": 6, - "parentsUntil": 1, - "f.nth": 2, - "nextAll": 1, - "nextUntil": 1, - "siblings": 1, - "f.sibling": 2, - "a.parentNode.firstChild": 1, - "a.contentDocument": 1, - "a.contentWindow.document": 1, - "a.childNodes": 1, - "T.call": 1, - "P.test": 1, - "f.filter": 2, - "R.test": 1, - "Q.test": 1, - "e.reverse": 1, - "g.join": 1, - "f.find.matches": 1, - "dir": 1, - "sibling": 1, - "a.nextSibling": 1, - "<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:]+)[^>": 1, - "tbody/i": 1, - "bc": 1, - "bd": 1, - "/checked": 1, - "s*.checked.": 1, - "java": 1, - "ecma": 1, - "script/i": 1, - "CDATA": 1, - "bg": 3, - "legend": 1, - "_default": 5, - "bg.optgroup": 1, - "bg.option": 1, - "bg.tbody": 1, - "bg.tfoot": 1, - "bg.colgroup": 1, - "bg.caption": 1, - "bg.thead": 1, - "bg.th": 1, - "bg.td": 1, - "f.support.htmlSerialize": 1, - "bg._default": 2, - "c.text": 2, - "this.empty": 3, - ".append": 6, - ".createTextNode": 1, - "wrapAll": 1, - ".wrapAll": 2, - ".eq": 1, - ".clone": 1, - "b.map": 1, - "wrapInner": 1, - ".wrapInner": 1, - "b.contents": 1, - "c.wrapAll": 1, - "b.append": 1, - "unwrap": 1, - ".replaceWith": 1, - "this.childNodes": 1, - ".end": 1, - "append": 1, - "this.domManip": 4, - "this.appendChild": 1, - "prepend": 1, - "this.insertBefore": 1, - "this.firstChild": 1, - "this.parentNode.insertBefore": 2, - "a.push.apply": 2, - "this.nextSibling": 2, - ".toArray": 1, - "f.cleanData": 4, - "d.parentNode.removeChild": 1, - "b.getElementsByTagName": 1, - "this.map": 3, - "f.clone": 2, - ".innerHTML.replace": 1, - "bc.test": 2, - "f.support.leadingWhitespace": 2, - "Z.test": 2, - "_.exec": 2, - ".getElementsByTagName": 2, - "c.html": 3, - "replaceWith": 1, - "c.replaceWith": 1, - ".detach": 1, - "this.parentNode": 1, - ".remove": 2, - ".before": 1, - "detach": 1, - "this.remove": 1, - "domManip": 1, - "f.support.checkClone": 2, - "bd.test": 2, - ".domManip": 1, - "g.html": 1, - "g.domManip": 1, - "j.parentNode": 1, - "f.support.parentNode": 1, - "i.nodeType": 1, - "i.childNodes.length": 1, - "f.buildFragment": 2, - "e.fragment": 1, - "h.childNodes.length": 1, - "h.firstChild": 2, - "": 1, - "k.length": 2, - ".charAt": 1, - "f.fragments": 3, - "i.createDocumentFragment": 1, - "f.clean": 1, - "appendTo": 1, - "prependTo": 1, - "insertBefore": 1, - "insertAfter": 1, - "replaceAll": 1, - "g.childNodes.length": 1, - "this.clone": 1, - ".get": 3, - "d.concat": 1, - "e.selector": 1, - "f.support.noCloneEvent": 1, - "f.support.noCloneChecked": 1, - "b.createElement": 2, - "b.createTextNode": 2, - "k.replace": 2, - "o.innerHTML": 1, - "o.lastChild": 1, - "f.support.tbody": 1, - "ba.test": 1, - "o.firstChild": 2, - "o.firstChild.childNodes": 1, - "o.childNodes": 2, - "q.length": 1, - ".childNodes.length": 1, - ".parentNode.removeChild": 2, - "o.insertBefore": 1, - "Z.exec": 1, - "f.support.appendChecked": 1, - "k.nodeType": 1, - "h.push": 1, - "be.test": 1, - ".type.toLowerCase": 1, - "h.splice.apply": 1, - ".concat": 3, - "cleanData": 1, - "j.nodeName": 1, - "j.nodeName.toLowerCase": 1, - "f.removeEvent": 1, - "b.handle": 2, - "j.removeAttribute": 2, - "bo": 2, - "/alpha": 1, - "bp": 1, - "/opacity": 1, - "bq": 2, - "bs": 2, - "bv": 2, - "de": 1, - "bw": 2, - "bz": 7, - "bA": 3, - "bB": 5, - "bC": 2, - "f.fn.css": 1, - "f.style": 4, - "cssHooks": 1, - "cssNumber": 3, - "zIndex": 1, - "fontWeight": 1, - "zoom": 1, - "lineHeight": 1, - "widows": 1, - "orphans": 1, - "cssProps": 1, - "f.support.cssFloat": 1, - "f.cssHooks": 3, - "f.cssProps": 2, - "k.get": 1, - "bu.test": 1, - "d.replace": 1, - "f.cssNumber": 1, - "k.set": 1, - "g.get": 1, - "swap": 1, - "f.curCSS": 1, - "f.swap": 2, - "<0||e==null){e=a.style[b];return>": 1, - "0px": 1, - "f.support.opacity": 1, - "f.cssHooks.opacity": 1, - "bp.test": 1, - "a.currentStyle": 4, - "a.currentStyle.filter": 1, - "a.style.filter": 1, - "RegExp.": 1, - "c.zoom": 1, - "b*100": 1, - "d.filter": 1, - "c.filter": 2, - "bo.test": 1, - "g.replace": 1, - "f.support.reliableMarginRight": 1, - "f.cssHooks.marginRight": 1, - "a.style.marginRight": 1, - "a.ownerDocument.defaultView": 1, - "e.getComputedStyle": 1, - "g.getPropertyValue": 1, - "a.ownerDocument.documentElement": 1, - "c.documentElement.currentStyle": 1, - "a.runtimeStyle": 2, - "bs.test": 1, - "bt.test": 1, - "f.left": 3, - "a.runtimeStyle.left": 2, - "a.currentStyle.left": 1, - "f.pixelLeft": 1, - "f.expr.filters.hidden": 2, - "f.support.reliableHiddenOffsets": 1, - "f.expr.filters.visible": 1, - "bE": 2, - "bF": 1, - "bG": 3, - "n/g": 1, - "bH": 2, - "/#.*": 1, - "bI": 1, - "/mg": 1, - "bJ": 1, - "date": 1, - "datetime": 1, - "month": 1, - "time": 1, - "week": 1, - "bK": 1, - "about": 1, - "storage": 1, - "extension": 1, - "widget": 1, - "bL": 1, - "GET": 1, - "bM": 2, - "bN": 2, - "bO": 2, - "<\\/script>": 2, - "/gi": 2, - "bP": 1, - "bR": 2, - "bS": 1, - "bT": 2, - "f.fn.load": 1, - "bV": 3, - "bW": 5, - "bX": 8, - "e.href": 1, - "bY": 1, - "bW.href": 2, - "bS.exec": 1, - "bW.toLowerCase": 1, - "bT.apply": 1, - "a.slice": 2, - "f.param": 2, - "f.ajaxSettings.traditional": 2, - "complete": 6, - "a.responseText": 1, - "a.isResolved": 1, - "a.done": 1, - "i.html": 1, - "i.each": 1, - "serialize": 1, - "this.serializeArray": 1, - "serializeArray": 1, - "this.elements": 2, - "this.disabled": 1, - "this.checked": 1, - "bP.test": 1, - "bJ.test": 1, - ".map": 1, - "b.name": 2, - "success": 2, - "getScript": 1, - "f.get": 2, - "getJSON": 1, - "ajaxSetup": 1, - "f.ajaxSettings": 4, - "ajaxSettings": 1, - "isLocal": 1, - "bK.test": 1, - "contentType": 4, - "processData": 3, - "accepts": 5, - "xml": 3, - "json": 2, - "/xml/": 1, - "/html/": 1, - "/json/": 1, - "responseFields": 1, - "converters": 2, - "a.String": 1, - "f.parseXML": 1, - "ajaxPrefilter": 1, - "ajaxTransport": 1, - "ajax": 2, - "v.readyState": 1, - "d.ifModified": 1, - "v.getResponseHeader": 2, - "f.lastModified": 1, - "f.etag": 1, - "v.status": 1, - "v.statusText": 1, - "h.resolveWith": 1, - "h.rejectWith": 1, - "v.statusCode": 2, - "g.trigger": 2, - "i.resolveWith": 1, - "f.active": 1, - "f.ajaxSetup": 3, - "d.statusCode": 1, - "readyState": 1, - "setRequestHeader": 6, - "getAllResponseHeaders": 1, - "getResponseHeader": 1, - "bI.exec": 1, - "overrideMimeType": 1, - "d.mimeType": 1, - "abort": 4, - "p.abort": 1, - "h.promise": 1, - "v.success": 1, - "v.done": 1, - "v.error": 1, - "v.fail": 1, - "v.complete": 1, - "i.done": 1, - "<2)for(b>": 1, - "url=": 1, - "dataTypes=": 1, - "crossDomain=": 2, - "80": 2, - "443": 2, - "traditional": 1, - "toUpperCase": 1, - "hasContent=": 1, - "active": 2, - "ajaxStart": 1, - "hasContent": 2, - "cache=": 1, - "x=": 1, - "1_=": 1, - "_=": 1, - "Content": 1, - "Type": 1, - "ifModified": 1, - "lastModified": 3, - "Modified": 1, - "etag": 3, - "None": 1, - "Accept": 1, - "dataTypes": 4, - "q=": 1, - "01": 1, - "beforeSend": 2, - "No": 1, - "Transport": 1, - "readyState=": 1, - "ajaxSend": 1, - "v.abort": 1, - "d.timeout": 1, - "p.send": 1, - "encodeURIComponent": 2, - "f.isPlainObject": 1, - "d.join": 1, - "cc": 2, - "cd": 3, - "jsonp": 1, - "jsonpCallback": 1, - "f.ajaxPrefilter": 2, - "b.contentType": 1, - "b.data": 5, - "b.dataTypes": 2, - "b.jsonp": 3, - "cd.test": 2, - "b.url": 4, - "b.jsonpCallback": 4, - "d.always": 1, - "b.converters": 1, - "/javascript": 1, - "ecmascript/": 1, - "a.cache": 2, - "a.crossDomain": 2, - "a.global": 1, - "f.ajaxTransport": 2, - "c.head": 1, - "c.getElementsByTagName": 1, - "send": 2, - "d.async": 1, - "a.scriptCharset": 2, - "d.charset": 1, - "d.src": 1, - "a.url": 1, - "d.onload": 3, - "d.onreadystatechange": 2, - "d.readyState": 2, - "/loaded": 1, - "complete/.test": 1, - "e.removeChild": 1, - "e.insertBefore": 1, - "e.firstChild": 1, - "cg": 7, - "f.ajaxSettings.xhr": 2, - "this.isLocal": 1, - "cors": 1, - "f.support.ajax": 1, - "c.crossDomain": 3, - "f.support.cors": 1, - "c.xhr": 1, - "c.username": 2, - "h.open": 2, - "c.url": 2, - "c.password": 1, - "c.xhrFields": 3, - "c.mimeType": 2, - "h.overrideMimeType": 2, - "h.setRequestHeader": 1, - "h.send": 1, - "c.hasContent": 1, - "h.readyState": 3, - "h.onreadystatechange": 2, - "h.abort": 1, - "h.status": 1, - "h.getAllResponseHeaders": 1, - "h.responseXML": 1, - "n.documentElement": 1, - "m.xml": 1, - "m.text": 2, - "h.responseText": 1, - "h.statusText": 1, - "c.isLocal": 1, - ".unload": 1, - "cm": 2, - "cn": 1, - "co": 5, - "cp": 1, - "a.webkitRequestAnimationFrame": 1, - "a.mozRequestAnimationFrame": 1, - "a.oRequestAnimationFrame": 1, - "this.animate": 2, - "d.style": 3, - ".style": 1, - "": 1, - "_toggle": 2, - "animate": 4, - "fadeTo": 1, - "queue=": 2, - "animatedProperties=": 1, - "animatedProperties": 2, - "specialEasing": 2, - "easing": 3, - "swing": 2, - "overflow=": 2, - "overflow": 2, - "overflowX": 1, - "overflowY": 1, - "display=": 3, - "zoom=": 1, - "fx": 10, - "m=": 2, - "custom": 5, - "timers": 3, - "slideDown": 1, - "slideUp": 1, - "slideToggle": 1, - "fadeIn": 1, - "fadeOut": 1, - "fadeToggle": 1, - "duration": 4, - "duration=": 2, - "off": 1, - "speeds": 4, - "old=": 1, - "complete=": 1, - "old": 2, - "linear": 1, - "cos": 1, - "options=": 1, - "prop=": 3, - "orig=": 1, - "orig": 3, - "step": 7, - "startTime=": 1, - "start=": 1, - "end=": 1, - "unit=": 1, - "unit": 1, - "now=": 1, - "pos=": 1, - "state=": 1, - "co=": 2, - "tick": 3, - "interval": 3, - "show=": 1, - "hide=": 1, - "e.duration": 3, - "this.startTime": 2, - "this.now": 3, - "this.end": 2, - "this.state": 3, - "this.update": 2, - "e.animatedProperties": 5, - "this.prop": 2, - "e.overflow": 2, - "f.support.shrinkWrapBlocks": 1, - "e.hide": 2, - ".hide": 2, - "e.show": 1, - "e.orig": 1, - "e.complete.call": 1, - "Infinity": 1, - "h/e.duration": 1, - "f.easing": 1, - "this.start": 2, - "*this.pos": 1, - "f.timers": 2, - "a.splice": 1, - "f.fx.stop": 1, - "slow": 1, - "fast": 1, - "a.elem": 2, - "a.now": 4, - "a.elem.style": 3, - "a.prop": 5, - "a.unit": 1, - "f.expr.filters.animated": 1, - "b.elem": 1, - "cw": 1, - "able": 1, - "cx": 2, - "f.fn.offset": 2, - "f.offset.setOffset": 2, - "b.ownerDocument.body": 2, - "f.offset.bodyOffset": 2, - "b.getBoundingClientRect": 1, - "e.documentElement": 4, - "c.top": 4, - "c.left": 4, - "e.body": 3, - "g.clientTop": 1, - "h.clientTop": 1, - "g.clientLeft": 1, - "h.clientLeft": 1, - "i.pageYOffset": 1, - "g.scrollTop": 1, - "h.scrollTop": 2, - "i.pageXOffset": 1, - "g.scrollLeft": 1, - "h.scrollLeft": 2, - "f.offset.initialize": 3, - "b.offsetParent": 2, - "g.documentElement": 1, - "g.body": 1, - "g.defaultView": 1, - "j.getComputedStyle": 2, - "b.currentStyle": 2, - "b.offsetTop": 2, - "b.offsetLeft": 2, - "f.offset.supportsFixedPosition": 2, - "k.position": 4, - "b.scrollTop": 1, - "b.scrollLeft": 1, - "f.offset.doesNotAddBorder": 1, - "f.offset.doesAddBorderForTableAndCells": 1, - "cw.test": 1, - "c.borderTopWidth": 2, - "c.borderLeftWidth": 2, - "f.offset.subtractsBorderForOverflowNotVisible": 1, - "c.overflow": 1, - "i.offsetTop": 1, - "i.offsetLeft": 1, - "i.scrollTop": 1, - "i.scrollLeft": 1, - "f.offset": 1, - "initialize": 3, - "b.style": 1, - "d.nextSibling.firstChild.firstChild": 1, - "this.doesNotAddBorder": 1, - "e.offsetTop": 4, - "this.doesAddBorderForTableAndCells": 1, - "h.offsetTop": 1, - "e.style.position": 2, - "e.style.top": 2, - "this.supportsFixedPosition": 1, - "d.style.overflow": 1, - "d.style.position": 1, - "this.subtractsBorderForOverflowNotVisible": 1, - "this.doesNotIncludeMarginInBodyOffset": 1, - "a.offsetTop": 2, - "bodyOffset": 1, - "a.offsetLeft": 1, - "f.offset.doesNotIncludeMarginInBodyOffset": 1, - "setOffset": 1, - "a.style.position": 1, - "e.offset": 1, - "e.position": 1, - "l.top": 1, - "l.left": 1, - "b.top": 2, - "k.top": 1, - "g.top": 1, - "b.left": 2, - "k.left": 1, - "g.left": 1, - "b.using.call": 1, - "e.css": 1, - "this.offsetParent": 2, - "cx.test": 2, - "b.offset": 1, - "d.top": 2, - "d.left": 2, - "offsetParent": 1, - "a.offsetParent": 1, - "g.document.documentElement": 1, - "g.document.body": 1, - "g.scrollTo": 1, - ".scrollLeft": 1, - ".scrollTop": 1, - "e.document.documentElement": 1, - "e.document.compatMode": 1, - "e.document.body": 1, - "this.css": 1, - "http.createServer": 1, - "res.writeHead": 1, - "res.end": 1, - ".listen": 1, - "Date.prototype.toJSON": 2, - "isFinite": 1, - "this.valueOf": 2, - "this.getUTCFullYear": 1, - "this.getUTCMonth": 1, - "this.getUTCDate": 1, - "this.getUTCHours": 1, - "this.getUTCMinutes": 1, - "this.getUTCSeconds": 1, - "String.prototype.toJSON": 1, - "Number.prototype.toJSON": 1, - "Boolean.prototype.toJSON": 1, - "u0000": 1, - "u00ad": 1, - "u0600": 1, - "u0604": 1, - "u070f": 1, - "u17b4": 1, - "u17b5": 1, - "u200c": 1, - "u200f": 1, - "u202f": 1, - "u2060": 1, - "u206f": 1, - "ufeff": 1, - "ufff0": 1, - "uffff": 1, - "escapable": 1, - "/bfnrt": 1, - "JSON.parse": 1, - "PUT": 1, - "DELETE": 1, - "_id": 1, - "ties": 1, - "collection.": 1, - "_removeReference": 1, - "model.collection": 2, - "model.unbind": 1, - "this._onModelEvent": 1, - "_onModelEvent": 1, - "ev": 5, - "this._remove": 1, - "model.idAttribute": 2, - "this._byId": 2, - "model.previous": 1, - "model.id": 1, - "this.trigger.apply": 2, - "_.each": 1, - "Backbone.Collection.prototype": 1, - "this.models": 1, - "_.toArray": 1, - "Backbone.Router": 1, - "options.routes": 2, - "this.routes": 4, - "this._bindRoutes": 1, - "this.initialize.apply": 2, - "namedParam": 2, - "splatParam": 2, - "escapeRegExp": 2, - "_.extend": 9, - "Backbone.Router.prototype": 1, - "Backbone.Events": 2, - "route": 18, - "Backbone.history": 2, - "Backbone.History": 2, - "_.isRegExp": 1, - "this._routeToRegExp": 1, - "Backbone.history.route": 1, - "_.bind": 2, - "this._extractParameters": 1, - "callback.apply": 1, - "navigate": 2, - "triggerRoute": 4, - "Backbone.history.navigate": 1, - "_bindRoutes": 1, - "routes": 4, - "routes.unshift": 1, - "routes.length": 1, - "this.route": 1, - "_routeToRegExp": 1, - "route.replace": 1, - "_extractParameters": 1, - "route.exec": 1, - "this.handlers": 2, - "_.bindAll": 1, - "hashStrip": 4, - "#*": 1, - "isExplorer": 1, - "/msie": 1, - "historyStarted": 3, - "Backbone.History.prototype": 1, - "getFragment": 1, - "forcePushState": 2, - "this._hasPushState": 6, - "window.location.pathname": 1, - "window.location.search": 1, - "fragment.indexOf": 1, - "this.options.root": 6, - "fragment.substr": 1, - "this.options.root.length": 1, - "window.location.hash": 3, - "fragment.replace": 1, - "this._wantsPushState": 3, - "this.options.pushState": 2, - "window.history.pushState": 2, - "this.getFragment": 6, - "docMode": 3, - "oldIE": 3, - "isExplorer.exec": 1, - "navigator.userAgent.toLowerCase": 1, - "this.iframe": 4, - ".contentWindow": 1, - "this.navigate": 2, - ".bind": 3, - "this.checkUrl": 3, - "this.interval": 1, - "this.fragment": 13, - "loc": 2, - "atRoot": 3, - "loc.pathname": 1, - "loc.hash": 1, - "loc.hash.replace": 1, - "window.history.replaceState": 1, - "document.title": 2, - "loc.protocol": 2, - "loc.host": 2, - "this.loadUrl": 4, - "this.handlers.unshift": 1, - "checkUrl": 1, - "this.iframe.location.hash": 3, - "decodeURIComponent": 2, - "loadUrl": 1, - "fragmentOverride": 2, - "matched": 2, - "_.any": 1, - "handler.route.test": 1, - "handler.callback": 1, - "frag.indexOf": 1, - "this.iframe.document.open": 1, - ".close": 1, - "Backbone.View": 1, - "this.cid": 3, - "_.uniqueId": 1, - "this._configure": 1, - "this._ensureElement": 1, - "this.delegateEvents": 1, - "selectorDelegate": 2, - "this.el": 10, - "eventSplitter": 2, - "viewOptions": 2, - "Backbone.View.prototype": 1, - "tagName": 3, - "render": 1, - "el": 4, - ".attr": 1, - ".html": 1, - "delegateEvents": 1, - "this.events": 1, - "key.match": 1, - "_configure": 1, - "viewOptions.length": 1, - "_ensureElement": 1, - "this.attributes": 1, - "this.id": 2, - "attrs.id": 1, - "this.make": 1, - "this.tagName": 1, - "_.isString": 1, - "protoProps": 6, - "classProps": 2, - "inherits": 2, - "child.extend": 1, - "this.extend": 1, - "Backbone.Model.extend": 1, - "Backbone.Collection.extend": 1, - "Backbone.Router.extend": 1, - "Backbone.View.extend": 1, - "methodMap": 2, - "Backbone.sync": 1, - "params": 2, - "params.url": 2, - "getUrl": 2, - "urlError": 2, - "params.data": 5, - "params.contentType": 2, - "model.toJSON": 1, - "Backbone.emulateJSON": 2, - "params.processData": 1, - "Backbone.emulateHTTP": 1, - "params.data._method": 1, - "params.type": 1, - "params.beforeSend": 1, - "xhr": 1, - "xhr.setRequestHeader": 1, - ".ajax": 1, - "staticProps": 3, - "protoProps.hasOwnProperty": 1, - "protoProps.constructor": 1, - "parent.apply": 1, - "child.prototype.constructor": 1, - "object.url": 4, - "_.isFunction": 1, - "wrapError": 1, - "onError": 3, - "resp": 3, - "model.trigger": 1, - "escapeHTML": 1, - "string.replace": 1, - "#x": 1, - "da": 1, - "": 1, - "#x27": 1, - "#x2F": 1 + "KEYWORDS": 2, + "array_to_hash": 11, + "RESERVED_WORDS": 2, + "KEYWORDS_BEFORE_EXPRESSION": 2, + "KEYWORDS_ATOM": 2, + "OPERATOR_CHARS": 1, + "RE_HEX_NUMBER": 1, + "RE_OCT_NUMBER": 1, + "RE_DEC_NUMBER": 1, + "OPERATORS": 2, + "WHITESPACE_CHARS": 2, + "PUNC_BEFORE_EXPRESSION": 2, + "PUNC_CHARS": 1, + "REGEXP_MODIFIERS": 1, + "UNICODE": 1, + "non_spacing_mark": 1, + "space_combining_mark": 1, + "connector_punctuation": 1, + "is_letter": 3, + "UNICODE.letter.test": 1, + "is_digit": 3, + "ch.charCodeAt": 1, + "//XXX": 1, + "out": 1, + "means": 1, + "is_alphanumeric_char": 3, + "is_unicode_combining_mark": 2, + "UNICODE.non_spacing_mark.test": 1, + "UNICODE.space_combining_mark.test": 1, + "is_unicode_connector_punctuation": 2, + "UNICODE.connector_punctuation.test": 1, + "is_identifier_start": 2, + "is_identifier_char": 1, + "zero": 2, + "joiner": 2, + "": 1, + "": 1, + "my": 1, + "ECMA": 1, + "PDF": 1, + "parse_js_number": 2, + "RE_HEX_NUMBER.test": 1, + "num.substr": 2, + "RE_OCT_NUMBER.test": 1, + "RE_DEC_NUMBER.test": 1, + "JS_Parse_Error": 2, + "message": 5, + "this.col": 2, + "ex": 3, + "ex.name": 1, + "this.stack": 2, + "ex.stack": 1, + "JS_Parse_Error.prototype.toString": 1, + "js_error": 2, + "is_token": 1, + "token": 5, + "token.type": 1, + "token.value": 1, + "EX_EOF": 3, + "tokenizer": 2, + "TEXT": 1, + "TEXT.replace": 1, + "uFEFF/": 1, + "tokpos": 1, + "tokline": 1, + "tokcol": 1, + "newline_before": 1, + "regex_allowed": 1, + "comments_before": 1, + "peek": 5, + "S.text.charAt": 2, + "S.pos": 4, + "signal_eof": 4, + "S.newline_before": 3, + "S.line": 2, + "S.col": 3, + "eof": 6, + "S.peek": 1, + "what": 2, + "S.text.indexOf": 1, + "start_token": 1, + "S.tokline": 3, + "S.tokcol": 3, + "S.tokpos": 3, + "is_comment": 2, + "S.regex_allowed": 1, + "HOP": 5, + "UNARY_POSTFIX": 1, + "nlb": 1, + "ret.comments_before": 1, + "S.comments_before": 2, + "skip_whitespace": 1, + "read_while": 2, + "pred": 2, + "parse_error": 3, + "read_num": 1, + "prefix": 6, + "has_e": 3, + "after_e": 5, + "has_x": 5, + "has_dot": 3, + "valid": 4, + "read_escaped_char": 1, + "hex_bytes": 3, + "digit": 3, + "read_string": 1, + "with_eof_error": 1, + "comment1": 1, + "Unterminated": 2, + "multiline": 1, + "comment2": 1, + "WARNING": 1, + "***": 1, + "Found": 1, + "warn": 3, + "tok": 1, + "read_name": 1, + "backslash": 2, + "Expecting": 1, + "UnicodeEscapeSequence": 1, + "uXXXX": 1, + "Unicode": 1, + "identifier": 1, + "regular": 1, + "regexp": 5, + "operator": 14, + "punc": 27, + "atom": 5, + "keyword": 11, + "Unexpected": 3, + "void": 1, + "<\",>": 1, + "<=\",>": 1, + "debugger": 2, + "const": 2, + "stat": 1, + "Label": 1, + "without": 1, + "statement": 1, + "defun": 1, + "Name": 1, + "Missing": 1, + "catch/finally": 1, + "blocks": 1, + "unary": 2, + "dot": 2, + "postfix": 1, + "Invalid": 2, + "binary": 1, + "conditional": 1, + "assign": 1, + "assignment": 1, + "seq": 1, + "member": 2, + "array.length": 1, + "Object.prototype.hasOwnProperty.call": 1, + "exports.tokenizer": 1, + "exports.parse": 1, + "parse": 1, + "exports.slice": 1, + "exports.curry": 1, + "curry": 1, + "exports.member": 1, + "exports.array_to_hash": 1, + "exports.PRECEDENCE": 1, + "PRECEDENCE": 1, + "exports.KEYWORDS_ATOM": 1, + "exports.RESERVED_WORDS": 1, + "exports.KEYWORDS": 1, + "exports.ATOMIC_START_TOKEN": 1, + "ATOMIC_START_TOKEN": 1, + "exports.OPERATORS": 1, + "exports.is_alphanumeric_char": 1, + "exports.set_logger": 1, + "logger": 2 }, "Julia": { "##": 5, @@ -34810,80 +34810,9 @@ "cond": 1, "/": 1, "integer": 2, - "Robert": 3, - "Virding": 3, - "mnesia_demo.lfe": 1, - "A": 1, - "simple": 4, - "Mnesia": 2, - "demo": 2, - "LFE.": 1, - "This": 2, - "contains": 1, - "using": 1, - "LFE": 4, - "access": 1, - "tables.": 1, - "It": 1, - "shows": 2, - "how": 2, - "emp": 1, - "XXXX": 1, - "macro": 1, - "ETS": 1, - "match": 5, - "pattern": 1, - "together": 1, - "mnesia": 8, - "match_object": 1, - "specifications": 1, - "select": 1, - "Query": 2, - "List": 2, - "Comprehensions.": 1, - "mnesia_demo": 1, - "new": 2, - "by_place": 1, - "by_place_ms": 1, - "by_place_qlc": 2, - "defrecord": 1, - "person": 8, - "name": 8, - "place": 7, - "job": 3, - "Start": 1, - "table": 2, - "we": 1, - "will": 1, - "memory": 1, - "only": 1, - "schema.": 1, - "start": 1, - "create_table": 1, - "attributes": 1, - "Initialise": 1, - "table.": 1, - "let": 6, - "people": 1, - "spec": 1, - "[": 3, - "p": 2, - "j": 2, - "]": 3, - "when": 1, - "tuple": 1, - "transaction": 2, - "f": 3, - "Use": 1, - "Comprehensions": 1, - "records": 1, - "q": 2, - "qlc": 2, - "lc": 1, - "<": 1, - "e": 1, "*": 6, "Mode": 1, + "LFE": 4, "Code": 1, "Paradigms": 1, "Artificial": 1, @@ -34899,17 +34828,24 @@ "Problem": 1, "Solver": 1, "Converted": 1, + "Robert": 3, + "Virding": 3, "Define": 1, "macros": 1, "global": 2, "variable": 2, "access.": 1, + "This": 2, "hack": 1, "very": 1, "naughty": 1, "defsyntax": 2, "defvar": 2, + "[": 3, + "name": 8, "val": 2, + "]": 3, + "let": 6, "v": 3, "put": 1, "getvar": 3, @@ -34956,6 +34892,70 @@ "give": 1, "money": 3, "has": 1, + "mnesia_demo.lfe": 1, + "A": 1, + "simple": 4, + "Mnesia": 2, + "demo": 2, + "LFE.": 1, + "contains": 1, + "using": 1, + "access": 1, + "tables.": 1, + "It": 1, + "shows": 2, + "how": 2, + "emp": 1, + "XXXX": 1, + "macro": 1, + "ETS": 1, + "match": 5, + "pattern": 1, + "together": 1, + "mnesia": 8, + "match_object": 1, + "specifications": 1, + "select": 1, + "Query": 2, + "List": 2, + "Comprehensions.": 1, + "mnesia_demo": 1, + "new": 2, + "by_place": 1, + "by_place_ms": 1, + "by_place_qlc": 2, + "defrecord": 1, + "person": 8, + "place": 7, + "job": 3, + "Start": 1, + "table": 2, + "we": 1, + "will": 1, + "memory": 1, + "only": 1, + "schema.": 1, + "start": 1, + "create_table": 1, + "attributes": 1, + "Initialise": 1, + "table.": 1, + "people": 1, + "spec": 1, + "p": 2, + "j": 2, + "when": 1, + "tuple": 1, + "transaction": 2, + "f": 3, + "Use": 1, + "Comprehensions": 1, + "records": 1, + "q": 2, + "qlc": 2, + "lc": 1, + "<": 1, + "e": 1, "object.lfe": 1, "OOP": 1, "closures": 1, @@ -35019,168 +35019,15 @@ "reproduce": 1 }, "Lasso": { - "define": 20, - "trait_json_serialize": 2, - "trait": 1, - "{": 18, - "require": 1, - "asString": 3, - "(": 640, - ")": 639, - "}": 18, - "json_serialize": 18, - "e": 13, - "bytes": 8, - "string": 59, - "+": 146, - "#e": 13, - "-": 2248, - "Replace": 19, - "&": 21, - "json_literal": 1, - "asstring": 4, - "integer": 30, - "decimal": 5, - "boolean": 4, - "null": 26, - "date": 23, - "format": 7, - "gmt": 1, - "|": 13, - "trait_forEach": 1, - "local": 116, - "output": 30, - ";": 573, - "delimit": 7, - "foreach": 1, - "#output": 50, - "#delimit": 7, - "#1": 3, - "return": 75, - "map": 23, - "with": 25, - "pr": 1, - "in": 46, - "eachPair": 1, - "select": 1, - "#pr": 2, - "first": 12, - "second": 8, - "join": 5, - "json_object": 2, - "foreachpair": 1, - "any": 14, - "serialize": 1, - "json_consume_string": 3, - "ibytes": 9, - "obytes": 3, - "temp": 12, - "while": 9, - "#temp": 19, - "#ibytes": 17, - "export8bits": 6, - "#obytes": 5, - "import8bits": 4, - "//": 169, - "Escape": 1, - "/while": 7, - "unescape": 1, - "//Replace": 1, - "if": 76, - "BeginsWith": 1, - "&&": 30, - "EndsWith": 1, - "Protect": 1, - "serialization_reader": 1, - "xml": 1, - "read": 1, - "/Protect": 1, - "else": 32, - "size": 24, - "or": 6, - "and": 52, - "regexp": 1, - "d": 2, - "T": 3, - "Z": 1, - "matches": 1, - "Format": 1, - "yyyyMMdd": 2, - "HHmmssZ": 1, - "HHmmss": 1, - "/if": 53, - "json_consume_token": 2, - "array": 20, - "t": 8, - "r": 8, - "n": 30, - "]": 23, - "marker": 4, - "Is": 1, - "also": 5, - "end": 2, - "of": 24, - "token": 1, - "[": 22, - "//............................................................................": 2, - "true": 12, - "false": 8, - "string_IsNumeric": 1, - "json_consume_array": 3, - "Local": 7, - "While": 1, - "If": 4, - "Discard": 1, - "whitespace": 3, - "Else": 7, - "insert": 18, - "#key": 12, - "json_consume_object": 2, - "Loop_Abort": 1, - "/If": 3, - "/While": 1, - "Find": 3, - "isa": 25, - "First": 4, - "Return": 7, - "find": 57, - "Second": 1, - "json_deserialize": 1, - "removeLeading": 1, - "bom_utf8": 1, - "Reset": 1, - "on": 1, - "provided": 1, - "value": 14, - "**/": 1, - "type": 63, - "parent": 5, - "public": 1, - "onCreate": 1, - "...": 3, - "..onCreate": 1, - "#rest": 1, - "json_rpccall": 1, - "method": 7, - "params": 11, - "id": 7, - "host": 6, - "#id": 2, - "#host": 4, - "Lasso_UniqueID": 1, - "Decode_JSON": 2, - "Include_URL": 1, - "PostParams": 1, - "Encode_JSON": 1, - "Map": 3, - "#method": 1, - "#params": 5, "<": 7, "LassoScript": 1, + "//": 169, "JSON": 2, "Encoding": 1, + "and": 52, "Decoding": 1, "Copyright": 1, + "-": 2248, "LassoSoft": 1, "Inc.": 1, "": 1, @@ -35191,40 +35038,72 @@ "is": 35, "now": 23, "incorporated": 1, + "in": 46, "Lasso": 15, + "If": 4, + "(": 640, "Lasso_TagExists": 1, + ")": 639, "False": 1, + ";": 573, "Define_Tag": 1, "Namespace": 1, "Required": 1, "Optional": 1, + "Local": 7, + "Map": 3, + "r": 8, + "n": 30, + "t": 8, "f": 2, "b": 2, + "output": 30, "newoptions": 1, "options": 2, + "array": 20, "set": 10, "list": 4, "queue": 2, "priorityqueue": 2, "stack": 2, "pair": 1, + "map": 23, + "[": 22, + "]": 23, "literal": 3, + "string": 59, + "integer": 30, + "decimal": 5, + "boolean": 4, + "null": 26, + "date": 23, + "temp": 12, "object": 7, + "{": 18, + "}": 18, "client_ip": 1, "client_address": 1, "__jsonclass__": 6, "deserialize": 2, "": 3, "": 3, + "Decode_JSON": 2, "Decode_": 1, + "value": 14, "consume_string": 1, + "ibytes": 9, "unescapes": 1, "u": 1, "UTF": 4, "%": 14, "QT": 4, "TZ": 2, + "T": 3, "consume_token": 1, + "obytes": 3, + "delimit": 7, + "true": 12, + "false": 8, ".": 5, "consume_array": 1, "consume_object": 1, @@ -35241,6 +35120,10 @@ "JSON_RPCCall": 1, "RPCCall": 1, "JSON_": 1, + "method": 7, + "params": 11, + "id": 7, + "host": 6, "//localhost/lassoapps.8/rpc/rpc.lasso": 1, "request": 2, "result": 6, @@ -35272,8 +35155,125 @@ "found_count": 11, "rows": 1, "#_records": 1, + "Return": 7, "@#_output": 1, "/Define_Tag": 1, + "/If": 3, + "define": 20, + "trait_json_serialize": 2, + "trait": 1, + "require": 1, + "asString": 3, + "json_serialize": 18, + "e": 13, + "bytes": 8, + "+": 146, + "#e": 13, + "Replace": 19, + "&": 21, + "json_literal": 1, + "asstring": 4, + "format": 7, + "gmt": 1, + "|": 13, + "trait_forEach": 1, + "local": 116, + "foreach": 1, + "#output": 50, + "#delimit": 7, + "#1": 3, + "return": 75, + "with": 25, + "pr": 1, + "eachPair": 1, + "select": 1, + "#pr": 2, + "first": 12, + "second": 8, + "join": 5, + "json_object": 2, + "foreachpair": 1, + "any": 14, + "serialize": 1, + "json_consume_string": 3, + "while": 9, + "#temp": 19, + "#ibytes": 17, + "export8bits": 6, + "#obytes": 5, + "import8bits": 4, + "Escape": 1, + "/while": 7, + "unescape": 1, + "//Replace": 1, + "if": 76, + "BeginsWith": 1, + "&&": 30, + "EndsWith": 1, + "Protect": 1, + "serialization_reader": 1, + "xml": 1, + "read": 1, + "/Protect": 1, + "else": 32, + "size": 24, + "or": 6, + "regexp": 1, + "d": 2, + "Z": 1, + "matches": 1, + "Format": 1, + "yyyyMMdd": 2, + "HHmmssZ": 1, + "HHmmss": 1, + "/if": 53, + "json_consume_token": 2, + "marker": 4, + "Is": 1, + "also": 5, + "end": 2, + "of": 24, + "token": 1, + "//............................................................................": 2, + "string_IsNumeric": 1, + "json_consume_array": 3, + "While": 1, + "Discard": 1, + "whitespace": 3, + "Else": 7, + "insert": 18, + "#key": 12, + "json_consume_object": 2, + "Loop_Abort": 1, + "/While": 1, + "Find": 3, + "isa": 25, + "First": 4, + "find": 57, + "Second": 1, + "json_deserialize": 1, + "removeLeading": 1, + "bom_utf8": 1, + "Reset": 1, + "on": 1, + "provided": 1, + "**/": 1, + "type": 63, + "parent": 5, + "public": 1, + "onCreate": 1, + "...": 3, + "..onCreate": 1, + "#rest": 1, + "json_rpccall": 1, + "#id": 2, + "#host": 4, + "Lasso_UniqueID": 1, + "Include_URL": 1, + "PostParams": 1, + "Encode_JSON": 1, + "#method": 1, + "#params": 5, "": 6, "2009": 14, "09": 10, @@ -35884,14 +35884,110 @@ }, "Latte": { "{": 54, - "var": 3, - "title": 4, + "**": 1, + "*": 4, + "@param": 3, + "string": 2, + "basePath": 1, + "web": 1, + "base": 1, + "path": 1, + "robots": 2, + "tell": 1, + "how": 1, + "to": 2, + "index": 1, + "the": 1, + "content": 1, + "of": 3, + "a": 4, + "page": 1, + "(": 18, + "optional": 1, + ")": 18, + "array": 1, + "flashes": 1, + "flash": 3, + "messages": 1, "}": 54, + "": 1, + "html": 1, + "": 1, + "": 1, + "": 6, + "charset=": 1, + "name=": 4, + "content=": 5, + "n": 8, + "ifset=": 1, + "http": 1, + "equiv=": 1, + "": 1, + "ifset": 1, + "title": 4, + "/ifset": 1, + "Translation": 1, + "report": 1, + "": 1, + "": 2, + "rel=": 2, + "media=": 1, + "href=": 4, + "": 3, + "block": 3, + "#head": 1, + "/block": 3, + "": 1, + "": 1, + "class=": 12, + "document.documentElement.className": 1, + "+": 3, + "#navbar": 1, + "include": 3, + "_navbar.latte": 1, + "
": 6, + "inner": 1, + "foreach=": 3, + "_flash.latte": 1, + "
": 7, + "#content": 1, + "
": 1, + "
": 1, + "src=": 1, + "#scripts": 1, + "": 1, + "": 1, + "var": 3, "define": 1, "author": 7, "": 2, - "n": 8, - "href=": 4, "Author": 2, "authorId": 2, "-": 71, @@ -35915,17 +36011,14 @@ "md": 2, "outOf": 5, "done": 7, - "+": 3, "threshold": 4, "alert": 2, "warning": 2, "<=>": 2, - "class=": 12, "Seems": 1, "complete": 1, "|": 6, "out": 1, - "of": 3, "

": 2, "elseif": 2, "<": 1, @@ -35951,9 +36044,7 @@ "khanovaskola.cz": 1, "revision": 18, "rev": 4, - "(": 18, "this": 3, - ")": 18, "older": 1, "#": 2, "else": 2, @@ -35963,10 +36054,7 @@ "diffs": 3, "noescape": 2, "": 1, - "
": 6, "description": 1, - "
": 7, - "foreach=": 3, "text": 4, "as": 2, "line": 3, @@ -35993,7 +36081,6 @@ "group": 4, "approve": 1, "thumbs": 3, - "o": 7, "up": 1, "markIncomplete": 2, "down": 2, @@ -36009,15 +36096,12 @@ "lines": 1, "&": 1, "thinsp": 1, - ";": 9, "%": 1, "": 3, "": 3, "": 2, "incomplete": 3, - "||": 3, "approved": 2, - "i": 9, "": 1, "user": 1, "loggedIn": 1, @@ -36039,7 +36123,6 @@ "Comment": 1, "only": 1, "visible": 1, - "to": 2, "other": 1, "editors": 1, "save": 1, @@ -36048,90 +36131,7 @@ "": 1, "/form": 1, "/foreach": 1, - "": 1, - "**": 1, - "*": 4, - "@param": 3, - "string": 2, - "basePath": 1, - "web": 1, - "base": 1, - "path": 1, - "robots": 2, - "tell": 1, - "how": 1, - "index": 1, - "the": 1, - "content": 1, - "a": 4, - "page": 1, - "optional": 1, - "array": 1, - "flashes": 1, - "flash": 3, - "messages": 1, - "": 1, - "html": 1, - "": 1, - "": 1, - "": 6, - "charset=": 1, - "name=": 4, - "content=": 5, - "ifset=": 1, - "http": 1, - "equiv=": 1, - "": 1, - "ifset": 1, - "/ifset": 1, - "Translation": 1, - "report": 1, - "": 1, - "": 2, - "rel=": 2, - "media=": 1, - "": 3, - "block": 3, - "#head": 1, - "/block": 3, - "": 1, - "": 1, - "document.documentElement.className": 1, - "#navbar": 1, - "include": 3, - "_navbar.latte": 1, - "inner": 1, - "_flash.latte": 1, - "#content": 1, - "
": 1, - "
": 1, - "src=": 1, - "#scripts": 1, - "": 1, - "": 1 + "": 1 }, "Less": { "@blue": 4, @@ -36678,60 +36678,7 @@ "end_object.": 1 }, "Lua": { - "local": 11, - "FileListParser": 5, - "pd.Class": 3, - "new": 3, - "(": 56, - ")": 56, - "register": 3, - "function": 16, - "initialize": 3, - "sel": 3, - "atoms": 3, "-": 60, - "Base": 1, - "filename": 2, - "File": 2, - "extension": 2, - "Number": 4, - "of": 9, - "files": 1, - "in": 7, - "batch": 2, - "self.inlets": 3, - "To": 3, - "[": 17, - "list": 1, - "trim": 1, - "]": 17, - "binfile": 3, - "vidya": 1, - "file": 8, - "modder": 1, - "s": 5, - "mechanisms": 1, - "self.outlets": 3, - "self.extension": 3, - "the": 7, - "last": 1, - "self.batchlimit": 3, - "return": 3, - "true": 3, - "end": 26, - "in_1_symbol": 1, - "for": 9, - "i": 10, - "do": 8, - "self": 10, - "outlet": 10, - "{": 16, - "}": 16, - "..": 7, - "in_2_list": 1, - "d": 9, - "in_3_float": 1, - "f": 12, "A": 1, "simple": 1, "counting": 1, @@ -36757,11 +36704,64 @@ "number": 3, "second": 1, "inlet.": 1, + "local": 11, "HelloCounter": 4, + "pd.Class": 3, + "new": 3, + "(": 56, + ")": 56, + "register": 3, + "function": 16, + "initialize": 3, + "sel": 3, + "atoms": 3, + "self.inlets": 3, + "self.outlets": 3, "self.num": 5, + "return": 3, + "true": 3, + "end": 26, "in_1_bang": 2, + "self": 10, + "outlet": 10, + "{": 16, + "}": 16, "+": 3, "in_2_float": 2, + "f": 12, + "FileListParser": 5, + "Base": 1, + "filename": 2, + "File": 2, + "extension": 2, + "Number": 4, + "of": 9, + "files": 1, + "in": 7, + "batch": 2, + "To": 3, + "[": 17, + "list": 1, + "trim": 1, + "]": 17, + "binfile": 3, + "vidya": 1, + "file": 8, + "modder": 1, + "s": 5, + "mechanisms": 1, + "self.extension": 3, + "the": 7, + "last": 1, + "self.batchlimit": 3, + "in_1_symbol": 1, + "for": 9, + "i": 10, + "do": 8, + "..": 7, + "in_2_list": 1, + "d": 9, + "in_3_float": 1, "FileModder": 10, "Object": 1, "triggering": 1, @@ -36856,347 +36856,74 @@ "in_8_list": 1 }, "M": { - "PXAI": 1, + "%": 207, + "zewdAPI": 52, ";": 1309, - "ISL/JVS": 1, - "ISA/KWP": 1, - "ESW": 1, + "Enterprise": 5, + "Web": 5, + "Developer": 5, + "run": 2, "-": 1605, - "PCE": 2, - "DRIVING": 1, - "RTN": 1, - "FOR": 15, - "API": 7, - "/20/03": 1, - "am": 1, - "PATIENT": 5, - "CARE": 1, - "ENCOUNTER": 2, - "**15": 1, - "**": 4, - "Aug": 1, - "Build": 6, - "Q": 58, - "+": 189, - "DATA2PCE": 1, - "(": 2144, - "PXADATA": 7, - "PXAPKG": 9, - "PXASOURC": 10, - "PXAVISIT": 8, - "PXAUSER": 6, - "PXANOT": 3, - "ERRRET": 2, - "PXAPREDT": 2, - "PXAPROB": 15, - "PXACCNT": 2, - ")": 2152, - "to": 74, - "pass": 24, - "data": 43, - "for": 77, - "add/edit/delete": 1, - "PCE.": 1, - "required": 4, - "optional": 16, - "is": 88, - "pointer": 4, - "a": 130, - "visit": 3, - "which": 4, - "the": 223, - "be": 35, - "related.": 1, - "If": 14, - "not": 39, - "known": 2, - "then": 2, - "there": 2, - "must": 8, - "nodes": 1, - "needed": 1, - "lookup/create": 1, - "visit.": 1, - "this": 39, - "user": 27, - "adding": 1, - "data.": 1, - "set": 98, - "if": 44, - "errors": 6, - "are": 14, - "displayed": 1, - "screen": 1, - "should": 16, - "only": 9, - "while": 4, - "writing": 4, + "time": 9, + "functions": 4, "and": 59, - "debugging": 1, - "initial": 1, - "code.": 1, - "passed": 4, - "by": 35, - "reference.": 2, - "present": 1, - "will": 23, - "return": 7, - "PXKERROR": 2, - "array": 22, - "elements": 3, - "caller.": 1, - "Set": 2, - "you": 17, - "want": 1, - "edit": 1, - "Primary": 3, - "Provider": 1, - "use": 5, - "moment": 1, - "that": 19, - "editing": 2, - "being": 1, - "done.": 2, - "dangerous": 1, - "A": 12, - "dotted": 1, - "variable": 8, - "name.": 1, - "When": 2, - "warnings": 1, - "occur": 1, - "They": 1, - "back": 4, - "in": 80, - "form": 1, - "of": 84, - "an": 14, - "with": 45, - "general": 1, - "description": 1, - "problem.": 1, - "IF": 9, - "ERROR1": 1, - "GENERAL": 2, - "ERRORS": 4, - "J": 38, - "SUBSCRIPT": 5, - "PASSED": 4, - "IN": 4, - "FIELD": 2, - "FROM": 5, - "WARNING2": 1, - "WARNINGS": 2, - "WARNING3": 1, - "SERVICE": 1, - "CONNECTION": 1, - "REASON": 9, - "ERROR4": 1, - "PROBLEM": 1, - "LIST": 1, - "Returns": 2, - "PFSS": 2, - "Account": 2, - "Reference": 2, - "known.": 1, - "Returned": 1, - "as": 23, - "null": 6, - "located": 1, - "Order": 1, - "file": 10, - "#100": 1, - "no": 54, - "process": 3, - "completely": 3, - "occurred": 2, - "but": 19, - "processed": 1, - "possible": 5, - "could": 1, - "get": 2, - "called": 8, - "incorrectly": 1, - "NEW": 3, - "VARIABLES": 1, - "N": 19, - "NOVSIT": 1, - "PXAK": 20, - "DFN": 1, - "PXAERRF": 3, - "PXADEC": 1, - "PXELAP": 1, - "PXASUB": 2, - "VALQUIET": 2, - "PRIMFND": 7, - "K": 5, - "PXAERROR": 1, - "PXAERR": 7, - "PRVDR": 1, - "S": 99, - "needs": 1, - "look": 1, - "up": 1, - "passed.": 1, - "I": 43, - "D": 64, - "@PXADATA@": 8, - "G": 40, - "<": 20, - "DUZ": 3, - "TMP": 26, - "SOR": 1, - "SOURCE": 2, - "E": 12, - "PKG2IEN": 1, - "VSIT": 1, - "PXAPIUTL": 2, - "TMPSOURC": 1, - "SAVES": 1, - "&": 28, - "CREATES": 1, - "VST": 2, - "VISIT": 3, - "KILL": 1, - "VPTR": 1, - "PXAIVSTV": 1, - "ERR": 2, - "PXAIVST": 1, - "PRV": 1, - "PROVIDER": 1, - "P": 68, - "AUPNVSIT": 1, - "F": 10, - "O": 24, - ".I": 4, - "..S": 7, - "s": 775, - "status": 2, - "or": 50, - "Secondary": 2, - ".S": 6, - "..I": 2, - "PXADI": 4, - "NODE": 5, - "SCREEN": 2, - "_": 127, - "VA": 1, - "EXTERNAL": 2, - "INTERNAL": 2, - "ARRAY": 2, - "PXAICPTV": 1, - "SEND": 1, - "TO": 6, - "W": 4, - "BLD": 2, - "DIALOG": 4, - ".PXAERR": 3, - "MSG": 2, - "SET": 3, - "GLOBAL": 1, - "NA": 1, - "PROVDRST": 1, - "Check": 1, - "provider": 1, - "PRVIEN": 14, - "DETS": 7, - "DIC": 6, - "DR": 4, - "DA": 4, - "DIQ": 3, - "PRI": 3, - "PRVPRIM": 2, - "QUIT": 251, - "AUPNVPRV": 2, - "U": 14, - ".04": 1, - "EN": 2, - "DIQ1": 1, - "POVPRM": 1, - "POVARR": 1, - "STOP": 1, - "LPXAK": 4, - "ORDX": 14, - "NDX": 7, - "ORDXP": 3, - "create": 6, - "existing": 2, - "DX": 2, - "ICD9": 2, - "AUPNVPOV": 2, - "@POVARR@": 6, - "force": 1, - "entry": 5, - "originally": 1, - "primary": 1, - "diagnosis": 1, - "flag": 1, - ".F": 2, - "..E": 1, - "...S": 5, - "start1": 2, - "label": 5, - "ax": 2, - "bx": 2, - "cx": 2, - "ay": 2, - "cy": 2, - "sumx": 3, - "sqrx": 3, - "sumxy": 5, - "x": 96, - "do": 15, - ".": 815, - "x*x": 1, - "y": 33, - "..": 28, - "x*y": 1, - "...": 6, - "write": 59, - "These": 2, - "first": 10, - "two": 2, - "routines": 6, - "illustrate": 1, - "dynamic": 1, - "scope": 1, - "variables": 3, - "M": 24, - "triangle1": 1, - "sum": 15, - "quit": 30, - "main2": 1, - "triangle2": 1, + "user": 27, + "APIs": 1, + "Product": 2, + "(": 2144, + "Build": 6, + ")": 2152, + "Date": 2, + "Fri": 1, + "Nov": 1, + "|": 171, + "for": 77, "GT.M": 30, - "PCRE": 23, - "Extension": 9, + "m_apache": 3, "Copyright": 12, - "C": 9, - "Piotr": 7, - "Koper": 7, - "": 7, + "c": 113, + "M/Gateway": 4, + "Developments": 4, + "Ltd": 4, + "Reigate": 4, + "Surrey": 4, + "UK.": 4, + "All": 4, + "rights": 4, + "reserved.": 4, + "http": 13, + "//www.mgateway.com": 4, + "Email": 4, + "rtweed@mgateway.com": 4, "This": 26, "program": 19, + "is": 88, "free": 15, "software": 12, + "you": 17, "can": 20, "redistribute": 11, "it": 45, "and/or": 11, "modify": 11, "under": 14, + "the": 223, "terms": 11, + "of": 84, "GNU": 33, "Affero": 33, "General": 33, "Public": 33, "License": 48, + "as": 23, "published": 11, + "by": 35, "Free": 11, "Software": 11, "Foundation": 11, "either": 13, "version": 16, + "or": 50, "at": 21, "your": 16, "option": 12, @@ -37204,8 +36931,13 @@ "later": 11, "version.": 11, "distributed": 13, + "in": 80, "hope": 11, + "that": 19, + "will": 23, + "be": 35, "useful": 11, + "but": 19, "WITHOUT": 12, "ANY": 12, "WARRANTY": 11, @@ -37215,31 +36947,1143 @@ "warranty": 11, "MERCHANTABILITY": 11, "FITNESS": 11, + "FOR": 15, + "A": 12, "PARTICULAR": 11, "PURPOSE.": 11, "See": 15, "more": 13, "details.": 12, "You": 13, + "should": 16, "have": 21, "received": 11, + "a": 130, "copy": 13, "along": 11, + "with": 45, + "this": 39, "program.": 9, + "If": 14, + "not": 39, "see": 26, "": 11, + ".": 815, + "QUIT": 251, + "_": 127, + "getVersion": 1, + "zewdCompiler": 6, + "date": 1, + "getDate": 1, + "compilePage": 2, + "app": 13, + "page": 12, + "mode": 12, + "technology": 9, + "outputPath": 4, + "multilingual": 4, + "maxLines": 4, + "d": 381, + "g": 228, + "compileAll": 2, + "templatePageName": 2, + "autoTranslate": 2, + "language": 6, + "verbose": 2, + "zewdMgr": 1, + "startSession": 2, + "requestArray": 2, + "serverArray": 1, + "sessionArray": 5, + "filesArray": 1, + "zewdPHP": 8, + ".requestArray": 2, + ".serverArray": 1, + ".sessionArray": 3, + ".filesArray": 1, + "closeSession": 2, + "saveSession": 2, + "endOfPage": 2, + "prePageScript": 2, + "sessid": 146, + "releaseLock": 2, + "tokeniseURL": 2, + "url": 2, + "zewdCompiler16": 5, + "getSessid": 1, + "token": 21, + "i": 465, + "isTokenExpired": 2, + "p": 84, + "zewdSession": 39, + "initialiseSession": 1, + "k": 122, + "deleteSession": 2, + "changeApp": 1, + "appName": 4, + "setSessionValue": 6, + "setRedirect": 1, + "toPage": 1, + "e": 210, + "n": 197, + "path": 4, + "s": 775, + "getRootURL": 1, + "l": 84, + "zewd": 17, + "trace": 24, + "_sessid_": 3, + "_token_": 1, + "_nextPage": 1, + "zcvt": 11, + "nextPage": 1, + "isNextPageTokenValid": 2, + "zewdCompiler13": 10, + "isCSP": 1, + "normaliseTextValue": 1, + "text": 6, + "replaceAll": 11, + "writeLine": 2, + "line": 14, + "CacheTempBuffer": 2, + "j": 67, + "increment": 11, + "w": 127, + "displayOptions": 2, + "fieldName": 5, + "listName": 6, + "escape": 7, + "codeValue": 7, + "name": 121, + "nnvp": 1, + "nvp": 1, + "pos": 33, + "textValue": 6, + "value": 72, + "getSessionValue": 3, + "tr": 13, + "+": 189, + "f": 93, + "o": 51, + "q": 244, + "codeValueEsc": 7, + "textValueEsc": 7, + "htmlOutputEncode": 2, + "zewdAPI2": 5, + "_codeValueEsc_": 1, + "selected": 4, + "translationMode": 1, + "_appName": 1, + "typex": 1, + "type": 2, + "avoid": 1, + "Cache": 3, + "bug": 2, + "getPhraseIndex": 1, + "zewdCompiler5": 1, + "licensed": 1, + "setWarning": 2, + "isTemp": 11, + "setWLDSymbol": 1, + "Duplicate": 1, + "performance": 1, + "also": 4, + "wldAppName": 1, + "wldName": 1, + "wldSessid": 1, + "zzname": 1, + "zv": 6, + "[": 54, + "extcErr": 1, + "mess": 3, + "namespace": 1, + "zt": 20, + "valueErr": 1, + "exportCustomTags": 2, + "tagList": 1, + "filepath": 10, + ".tagList": 1, + "exportAllCustomTags": 2, + "importCustomTags": 2, + "filePath": 2, + "zewdForm": 1, + "stripSpaces": 6, + "np": 17, + "obj": 6, + "prop": 6, + "setSessionObject": 3, + "allowJSONAccess": 1, + "sessionName": 30, + "access": 21, + "disallowJSONAccess": 1, + "JSONAccess": 1, + "existsInSession": 2, + "existsInSessionArray": 2, + "p1": 5, + "p2": 10, + "p3": 3, + "p4": 2, + "p5": 2, + "p6": 2, + "p7": 2, + "p8": 2, + "p9": 2, + "p10": 2, + "p11": 2, + "clearSessionArray": 1, + "arrayName": 35, + "setSessionArray": 1, + "itemName": 16, + "itemValue": 7, + "getSessionArray": 1, + "array": 22, + "clearArray": 2, + "set": 98, + "m": 37, + "getSessionArrayErr": 1, + "Come": 1, + "here": 4, + "if": 44, + "error": 62, + "occurred": 2, + "addToSession": 2, + "@name": 4, + "mergeToSession": 1, + "mergeGlobalToSession": 2, + "globalName": 7, + "mergeGlobalFromSession": 2, + "mergeArrayToSession": 1, + "mergeArrayToSessionObject": 2, + ".array": 1, + "mergeArrayFromSession": 1, + "mergeFromSession": 1, + "deleteFromSession": 1, + "deleteFromSessionObject": 1, + "sessionNameExists": 1, + "getSessionArrayValue": 2, + "subscript": 7, + "exists": 6, + ".exists": 1, + "sessionArrayValueExists": 2, + "deleteSessionArrayValue": 2, + "Objects": 1, + "objectName": 13, + "propertyName": 3, + "propertyValue": 5, + "comma": 3, + "x": 96, + "replace": 27, + "objectName_": 2, + "_propertyName": 2, + "_propertyName_": 2, + "_propertyValue_": 1, + "_p": 1, + "quoted": 1, + "string": 50, + "FromStr": 6, + "S": 99, + "ToStr": 4, + "InText": 4, + "old": 3, + "new": 15, + "ok": 14, + "removeDocument": 1, + "zewdDOM": 3, + "instanceName": 2, + "clearXMLIndex": 1, + "zewdSchemaForm": 1, + "closeDOM": 1, + "makeTokenString": 1, + "length": 7, + "token_": 1, + "r": 88, + "makeString": 3, + "char": 9, + "len": 8, + "create": 6, + "characters": 8, + "str": 15, + "convertDateToSeconds": 1, + "hdate": 7, + "Q": 58, + "hdate*86400": 1, + "convertSecondsToDate": 1, + "secs": 2, + "secs#86400": 1, + "getTokenExpiry": 2, + "h*86400": 1, + "h": 39, + "randChar": 1, + "R": 2, + "lowerCase": 2, + "stripLeadingSpaces": 2, + "stripTrailingSpaces": 2, + "d1": 7, + "zd": 1, + "yy": 19, + "dd": 4, + "I": 43, + "<10>": 1, + "dd=": 2, + "mm=": 3, + "1": 74, + "d1=": 1, + "2": 14, + "p1=": 1, + "mm": 7, + "p2=": 1, + "yy=": 1, + "3": 6, + "dd_": 1, + "mm_": 1, + "inetTime": 1, + "Decode": 1, + "Internet": 1, + "Format": 1, + "Time": 1, + "from": 16, + "H": 1, + "format": 2, + "Offset": 1, + "relative": 1, + "to": 74, + "GMT": 1, + "eg": 3, + "hh": 4, + "ss": 4, + "<": 20, + "_hh": 1, + "time#3600": 1, + "_mm": 1, + "time#60": 1, + "_ss": 2, + "hh_": 1, + "_mm_": 1, + "openNewFile": 2, + "openFile": 2, + "openDOM": 2, + "&": 28, + "#39": 1, + "<\",\"<\")>": 1, + "string=": 1, + "gt": 1, + "amp": 1, + "HTML": 1, + "quot": 2, + "stop": 20, + "no": 54, + "no2": 1, + "p1_c_p2": 1, + "getIP": 2, + "Get": 2, + "own": 2, + "IP": 1, + "address": 1, + "ajaxErrorRedirect": 2, + "classExport": 2, + "className": 2, + "methods": 2, + ".methods": 1, + "strx": 2, + "disableEwdMgr": 1, + "enableEwdMgr": 1, + "enableWLDAccess": 1, + "disableWLDAccess": 1, + "isSSOValid": 2, + "sso": 2, + "username": 8, + "password": 8, + "zewdMgrAjax2": 1, + "uniqueId": 1, + "nodeOID": 2, + "filename": 2, + "linkToParentSession": 2, + "zewdCompiler20": 1, + "exportToGTM": 1, + "routine": 6, + "zewdDemo": 1, + "Tutorial": 1, + "Wed": 1, + "Apr": 1, + "getLanguage": 1, + "getRequestValue": 1, + "login": 1, + "getTextValue": 4, + "getPasswordValue": 2, + "_username_": 1, + "_password": 1, + "logine": 1, + "message": 8, + "textid": 1, + "errorMessage": 1, + "ewdDemo": 8, + "clearList": 2, + "appendToList": 4, + "addUsername": 1, + "newUsername": 5, + "newUsername_": 1, + "setTextValue": 4, + "testValue": 1, + "pass": 24, + "getSelectValue": 3, + "_user": 1, + "getPassword": 1, + "setPassword": 1, + "getObjDetails": 1, + "data": 43, + "_user_": 1, + "_data": 2, + "setRadioOn": 2, + "initialiseCheckbox": 2, + "setCheckboxOn": 3, + "createLanguageList": 1, + "setMultipleSelectOn": 2, + "clearTextArea": 2, + "textarea": 2, + "createTextArea": 1, + ".textarea": 1, + "userType": 4, + "setMultipleSelectValues": 1, + ".selected": 1, + "testField3": 3, + ".value": 1, + "testField2": 1, + "field3": 1, + "must": 8, + "null": 6, + "dateTime": 1, + "start": 26, + "student": 14, + "zwrite": 1, + "write": 59, + "order": 11, + "do": 15, + "quit": 30, + "file": 10, + "part": 3, + "DataBallet.": 4, + "C": 9, + "Laurent": 2, + "Parenteau": 2, + "": 2, + "DataBallet": 4, + "encode": 1, + "Return": 1, + "base64": 6, + "URL": 2, + "Filename": 1, + "safe": 3, + "alphabet": 2, + "RFC": 1, + "todrop": 2, + "Populate": 1, + "values": 4, + "on": 17, + "first": 10, + "use": 5, + "only.": 1, + "zextract": 3, + "zlength": 3, + "Comment": 1, + "comment": 4, + "block": 1, + "comments": 5, + "always": 2, + "semicolon": 1, + "next": 1, + "while": 4, + "legal": 1, + "blank": 1, + "whitespace": 2, + "alone": 1, + "valid": 2, + "**": 4, + "Comments": 1, + "graphic": 3, + "character": 5, + "such": 1, + "@#": 1, + "*": 6, + "{": 5, + "}": 5, + "]": 15, + "/": 3, + "space": 1, + "considered": 1, + "though": 1, + "t": 12, + "it.": 2, + "ASCII": 2, + "whose": 1, + "numeric": 8, + "code": 29, + "above": 3, + "below": 1, + "are": 14, + "NOT": 2, + "allowed": 18, + "routine.": 1, + "multiple": 1, + "semicolons": 1, + "okay": 1, + "has": 7, + "tag": 2, + "after": 3, + "does": 1, + "command": 11, + "Tag1": 1, + "Tags": 2, + "an": 14, + "uppercase": 2, + "lowercase": 1, + "alphabetic": 2, + "series": 2, + "HELO": 1, + "most": 1, + "common": 1, + "label": 5, + "LABEL": 1, + "followed": 1, + "directly": 1, + "open": 1, + "parenthesis": 2, + "formal": 1, + "list": 1, + "variables": 3, + "close": 1, + "ANOTHER": 1, + "X": 19, + "Normally": 1, + "subroutine": 1, + "would": 2, + "ended": 1, + "we": 1, + "taking": 1, + "advantage": 1, + "rule": 1, + "END": 1, + "implicit": 1, + "Digest": 2, + "Extension": 9, + "Piotr": 7, + "Koper": 7, + "": 7, "trademark": 2, "Fidelity": 2, "Information": 2, "Services": 2, "Inc.": 2, - "http": 13, "//sourceforge.net/projects/fis": 2, "gtm/": 2, + "simple": 2, + "OpenSSL": 3, + "based": 1, + "digest": 19, "extension": 3, + "rewrite": 1, + "EVP_DigestInit": 1, + "usage": 3, + "example": 5, + "additional": 5, + "M": 24, + "wrapper.": 1, + "//www.openssl.org/docs/crypto/EVP_DigestInit.html": 1, + "The": 11, + "return": 7, + "digest.init": 3, + "usually": 1, + "when": 11, + "invalid": 4, + "algorithm": 1, + "was": 5, + "specification.": 1, + "Anyway": 1, + "properly": 1, + "used": 6, + "never": 4, + "fail.": 1, + "Please": 2, + "feel": 2, + "contact": 2, + "me": 2, + "questions": 2, + "returns": 7, + "HEX": 1, + "all": 8, + "one": 5, + "digest.update": 2, + ".c": 2, + ".m": 11, + "digest.final": 2, + ".d": 1, + "init": 6, + "alg": 3, + "context": 1, + "handler": 9, + "try": 1, + "etc": 1, + "returned": 1, + "occurs": 1, + "e.g.": 2, + "unknown": 1, + "update": 1, + "ctx": 4, + "msg": 6, + "updates": 1, + ".ctx": 2, + ".msg": 1, + "final": 1, + "hex": 1, + "encoded": 8, + "frees": 1, + "memory": 1, + "allocated": 1, + ".digest": 1, + "algorithms": 1, + "availability": 1, + "depends": 1, + "libcrypto": 1, + "configuration": 1, + "md4": 1, + "md5": 2, + "sha": 1, + "sha1": 1, + "sha224": 1, + "sha256": 1, + "sha512": 1, + "dss1": 1, + "ripemd160": 1, + "These": 2, + "two": 2, + "routines": 6, + "illustrate": 1, + "dynamic": 1, + "scope": 1, + "triangle1": 1, + "sum": 15, + "main2": 1, + "y": 33, + "triangle2": 1, + "compute": 2, + "Fibonacci": 1, + "b": 64, + "term": 10, + "start1": 2, + "entry": 5, + "start2": 1, + "function": 6, + "computes": 1, + "factorial": 3, + "f*n": 1, + "main": 1, + "GMRGPNB0": 1, + "CISC/JH/RM": 1, + "NARRATIVE": 1, + "BUILDER": 1, + "TEXT": 5, + "GENERATOR": 1, + "cont.": 1, + "/20/91": 1, + "Text": 1, + "Generator": 1, + "Jan": 1, + "ENTRY": 2, + "WITH": 1, + "GMRGA": 1, + "SET": 3, + "TO": 6, + "POINT": 1, + "AT": 1, + "WHICH": 1, + "WANT": 1, + "START": 1, + "BUILDING": 1, + "GMRGE0": 11, + "GMRGADD": 4, + "D": 64, + "GMR": 6, + "GMRGA0": 11, + "GMRGPDA": 9, + "GMRGCSW": 2, + "NOW": 1, + "DTC": 1, + "GMRGB0": 9, + "O": 24, + "GMRGST": 6, + "GMRGPDT": 2, + "STAT": 8, + "GMRGRUT0": 3, + "GMRGF0": 3, + "GMRGSTAT": 8, + "P": 68, + "_GMRGB0_": 2, + "GMRD": 6, + "GMRGSSW": 3, + "SNT": 1, + "GMRGPNB1": 1, + "GMRGNAR": 8, + "GMRGPAR_": 2, + "_GMRGSPC_": 3, + "_GMRGRM": 2, + "_GMRGE0": 1, + "STORETXT": 1, + "GMRGRUT1": 1, + "GMRGSPC": 3, + "F": 10, + "GMRGD0": 7, + "ALIST": 1, + "G": 40, + "TMP": 26, + "J": 38, + "GMRGPLVL": 6, + "GMRGA0_": 1, + "_GMRGD0_": 1, + "_GMRGSSW_": 1, + "_GMRGADD": 1, + "GMRGI0": 6, + "label1": 1, + "if1": 2, + "statement": 3, + "if2": 2, + "statements": 1, + "contrasted": 1, + "": 3, + "variable": 8, + "a=": 3, + "smaller": 3, + "than": 4, + "b=": 4, + "if3": 1, + "else": 7, + "clause": 2, + "if4": 1, + "bodies": 1, + "exercise": 1, + "car": 14, + "@": 8, + "MD5": 6, + "Implementation": 1, + "It": 2, + "works": 1, + "ZCHSET": 2, + "please": 1, + "don": 1, + "only": 9, + "joke.": 1, + "Serves": 1, + "well": 2, + "reverse": 1, + "engineering": 1, + "obtaining": 1, + "boolean": 2, + "integer": 1, + "addition": 1, + "modulo": 1, + "division.": 1, + "//en.wikipedia.org/wiki/MD5": 1, + "#64": 1, + "msg_": 1, + "_m_": 1, + "n64": 2, + "*8": 2, + "read": 2, + ".p": 1, + "..": 28, + "...": 6, + "*i": 3, + "#16": 3, + "xor": 4, + "rotate": 5, + "#4294967296": 6, + "n32h": 5, + "bit": 5, + "#2": 1, + "*2147483648": 2, + "a#2": 1, + "b#2": 1, + ".a": 1, + ".b": 1, + "rol": 1, + "a*": 1, + "**n": 1, + "c#4294967296": 1, + "*n": 1, + "n#256": 1, + "n#16": 2, + "MDB": 60, + "M/DB": 2, + "Mumps": 1, + "Emulation": 1, + "Amazon": 1, + "SimpleDB": 1, + "buildDate": 1, + "indexLength": 10, + "Note": 2, + "keyId": 108, + "been": 4, + "tested": 1, + "these": 1, + "called": 8, + "To": 2, + "Initialise": 2, + "service": 1, + "//192.168.1.xxx/mdb/test.mgwsi": 1, + "Action": 2, + "addUser": 2, + "userKeyId": 6, + "userSecretKey": 6, + "requestId": 17, + "boxUsage": 11, + "startTime": 21, + ".startTime": 5, + "MDBUAF": 2, + "end": 33, + ".boxUsage": 22, + "createDomain": 1, + "domainName": 38, + "dn": 4, + "dnx": 3, + "id": 33, + "noOfDomains": 12, + "MDBConfig": 1, + "getDomainId": 3, + "found": 7, + "namex": 8, + "buildItemNameIndex": 2, + "domainId": 53, + "itemId": 41, + "itemValuex": 3, + "countDomains": 2, + "key": 22, + "deleteDomain": 2, + "listDomains": 1, + "maxNoOfDomains": 2, + "nextToken": 7, + "domainList": 3, + "fullName": 3, + "decodeBase64": 1, + "encodeBase64": 1, + "itemExists": 1, + "getItemId": 2, + "getAttributeValueId": 3, + "attribId": 36, + "valuex": 13, + "putAttributes": 2, + "attributes": 32, + "valueId": 16, + "xvalue": 4, + "add": 5, + "Item": 1, + "Domain": 1, + "itemNamex": 4, + "parseJSON": 1, + "zmwire": 53, + "attributesJSON": 1, + ".attributes": 5, + "attribute": 14, + "getAttributeId": 2, + "domain": 1, + "Not": 1, + "same": 2, + "remove": 6, + "existing": 2, + "now": 1, + "name/value": 2, + "pair": 1, + "getAttributes": 2, + "suppressBoxUsage": 1, + "attrNo": 9, + "valueNo": 6, + "delete": 2, + "item": 2, + "associated": 1, + "queryIndex": 1, + "records": 2, + "specified": 4, + "pairs": 2, + "vno": 2, + "left": 5, + "completely": 3, + "references": 1, + "maxNoOfItems": 3, + "itemList": 12, + "session": 1, + "identifier": 1, + "stored": 1, + "queryExpression": 16, + "relink": 1, + "zewdGTMRuntime": 1, + "CGIEVAR": 1, + "cgi": 1, + "unescName": 5, + "urlDecode": 2, + "KEY": 36, + "response": 29, + "WebLink": 1, + "point": 2, + "action": 15, + "AWSAcessKeyId": 1, + "db": 9, + "hash": 1, + "itemsAndAttrs": 2, + "secretKey": 1, + "signatureMethod": 2, + "signatureVersion": 3, + "stringToSign": 2, + "rltKey": 2, + "_action_": 2, + "h_": 3, + "mdbKey": 2, + "errorResponse": 9, + "initialise": 3, + ".requestId": 7, + "createResponse": 4, + "installMDBM": 1, + "authenticate": 1, + "MDBSession": 1, + "createResponseStringToSign": 1, + "Security": 1, + "OK": 6, + "_db": 1, + "MDBAPI": 1, + "lineNo": 19, + "CacheTempEWD": 16, + "_db_": 1, + "db_": 1, + "_action": 1, + "resp": 5, + "metaData": 1, + "domainMetadata": 1, + ".metaData": 1, + "paramName": 8, + "paramValue": 5, + "_i_": 5, + "Query": 1, + "DomainName": 2, + "QueryExpression": 2, + "MaxNumberOfItems": 2, + "NextToken": 3, + "QueryWithAttributes": 1, + "AttributeName.": 2, + "Select": 2, + "SelectExpression": 1, + "entering": 1, + "runSelect.": 1, + "selectExpression": 3, + "finished": 1, + "runSelect": 3, + "count": 18, + "select": 3, + "where": 6, + "limit": 14, + "asc": 1, + "inValue": 6, + "expr": 18, + "rel": 2, + "itemStack": 3, + "between": 2, + "<=\">": 1, + "lastWord=": 7, + "inAttr=": 5, + "expr=": 10, + "thisWord=": 7, + "inAttr": 2, + "c=": 28, + "queryExpression=": 4, + "_queryExpression": 2, + "4": 5, + "isNull": 1, + "5": 1, + "8": 1, + "isNotNull": 1, + "9": 1, + "offset": 6, + "prevName": 1, + "np=": 1, + "diffNames": 6, + "_term": 3, + "expr_": 1, + "_orderBy": 1, + "runQuery": 2, + ".itemList": 4, + "escVals": 1, + "str_c": 2, + "_x_": 1, + "query": 4, + "orderBy": 1, + "_query": 1, + "parseSelect": 1, + ".domainName": 2, + ".queryExpression": 1, + ".orderBy": 1, + ".limit": 1, + "executeSelect": 1, + ".itemStack": 1, + "***": 2, + "listCopy": 3, + "N.N": 12, + "N.N1": 4, + "externalSelect": 2, + "json": 9, + "_keyId_": 1, + "_selectExpression": 1, + "spaces": 3, + "string_spaces": 1, + "test": 6, + "miles": 4, + "gallons": 4, + "miles/gallons": 1, + "computepesimist": 1, + "miles/": 1, + "computeoptimist": 1, + "/gallons": 1, + "Mumtris": 3, + "tetris": 1, + "game": 1, + "MUMPS": 1, + "fun.": 1, + "Resize": 1, + "terminal": 2, + "maximize": 1, + "PuTTY": 1, + "window": 1, + "restart": 3, + "so": 4, + "report": 1, + "true": 2, + "size": 3, + "mumtris.": 1, + "Try": 2, + "setting": 3, + "ansi": 2, + "compatible": 1, + "cursor": 1, + "positioning.": 1, + "NOTICE": 1, + "uses": 1, + "making": 1, + "delays": 1, + "lower": 1, + "s.": 1, + "That": 1, + "means": 2, + "CPU": 1, + "fall": 5, + "lock": 2, + "clear": 6, + "change": 6, + "preview": 3, + "over": 2, + "exit": 3, + "short": 1, + "circuit": 1, + "redraw": 3, + "timeout": 1, + "harddrop": 1, + "other": 1, + "ex": 5, + "hd": 3, + "*c": 1, + "<0&'d>": 1, + "i=": 14, + "st": 6, + "t10m": 1, + "0": 23, + "<0>": 2, + "q=": 6, + "d=": 1, + "zb": 2, + "right": 3, + "fl=": 1, + "gr=": 1, + "hl": 2, + "help": 2, + "drop": 2, + "hd=": 1, + "matrix": 2, + "stack": 8, + "draw": 3, + "ticks": 2, + "h=": 2, + "1000000000": 1, + "e=": 1, + "t10m=": 1, + "100": 2, + "n=": 1, + "ne=": 1, + "x=": 5, + "y=": 3, + "r=": 3, + "collision": 6, + "score": 5, + "k=": 1, + "j=": 4, + "<1))))>": 1, + "800": 1, + "200": 1, + "lv": 5, + "lc=": 1, + "10": 1, + "lc": 3, + "mt_": 2, + "cls": 6, + ".s": 5, + "dh/2": 6, + "dw/2": 6, + "*s": 4, + "u": 6, + "echo": 1, + "intro": 1, + "workaround": 1, + "ANSI": 1, + "driver": 1, + "NL": 1, + "some": 1, + "place": 9, + "clearscreen": 1, + "N": 19, + "h/2": 3, + "*w/2": 3, + "fill": 3, + "fl": 2, + "*x": 1, + "mx": 4, + "my": 5, + "step": 8, + "**lv*sb": 1, + "*lv": 1, + "sc": 3, + "ne": 2, + "gr": 1, + "w*3": 1, + "dev": 1, + "zsh": 1, + "dw": 1, + "dh": 1, + "elements": 3, + "elemId": 3, + "rotateVersions": 1, + "rotateVersion": 2, + "bottom": 1, + "coordinate": 1, + "____": 1, + "__": 2, + "||": 1, + "ax": 2, + "bx": 2, + "cx": 2, + "ay": 2, + "cy": 2, + "sumx": 3, + "sqrx": 3, + "sumxy": 5, + "x*x": 1, + "x*y": 1, + "PCRE": 23, "tries": 1, "deliver": 1, "best": 2, + "possible": 5, "interface": 1, "world": 4, "providing": 1, @@ -37249,6 +38093,7 @@ "parameter": 1, "names": 3, "simplified": 1, + "API": 7, "locales": 2, "exceptions": 1, "Perl5": 1, @@ -37257,9 +38102,7 @@ "pcreexamples.m": 2, "comprehensive": 1, "examples": 4, - "on": 17, "pcre": 59, - "usage": 3, "beginner": 1, "level": 5, "tips": 1, @@ -37269,8 +38112,8 @@ "handling": 2, "UTF": 17, "GT.M.": 1, - "Try": 2, "out": 2, + "known": 2, "book": 1, "regular": 1, "expressions": 1, @@ -37278,33 +38121,20 @@ "For": 3, "information": 1, "//pcre.org/": 1, - "Please": 2, - "feel": 2, - "contact": 2, - "me": 2, - "questions": 2, - "comments": 5, "Initial": 2, "release": 2, "pkoper": 2, - "q": 244, "pcre.version": 1, "config": 3, - "name": 121, - "one": 5, "case": 7, "insensitive": 7, - "d": 381, "protect": 11, - "n": 197, "erropt": 6, "isstring": 5, - "code": 29, "pcre.config": 1, ".name": 1, ".erropt": 3, ".isstring": 1, - ".s": 5, ".n": 20, "ec": 10, "compile": 14, @@ -37313,10 +38143,9 @@ "locale": 24, "mlimit": 20, "reclimit": 19, - "string": 50, + "optional": 16, "joined": 3, "Unix": 1, - "used": 6, "pcre_maketables": 2, "cases": 1, "undefined": 1, @@ -37324,9 +38153,7 @@ "defined": 2, "LANG": 4, "LC_*": 1, - "specified": 4, "output": 49, - "command": 11, "Debian": 2, "tip": 1, "dpkg": 1, @@ -37337,44 +38164,35 @@ "number": 5, "internal": 3, "matching": 4, - "function": 6, "calls": 1, "pcre_exec": 4, "execution": 2, "manual": 2, "details": 5, - "limit": 14, "depth": 1, "recursion": 1, - "when": 11, "calling": 2, "ref": 41, "err": 4, "erroffset": 3, "pcre.compile": 1, ".pattern": 3, - "g": 228, ".ref": 13, ".err": 1, ".erroffset": 1, "exec": 4, "subject": 24, "startoffset": 3, - "length": 7, "octets": 2, "starts": 1, "like": 4, "chars": 3, - "start": 26, "pcre.exec": 2, ".subject": 3, "zl": 7, - "<0>": 2, "ec=": 7, "ovector": 25, - "i": 465, "element": 1, - "from": 16, "code=": 4, "ovecsize": 5, "fullinfo": 3, @@ -37395,32 +38213,20 @@ "JIT": 1, "JITSIZE": 1, "NAME": 3, - "also": 4, "nametable": 4, - "1": 74, - "returns": 7, "index": 1, - "0": 23, - "invalid": 4, "indexed": 4, "substring": 1, "begin": 18, - "end": 33, "begin=": 3, - "2": 14, "end=": 4, "contains": 2, "octet": 4, "UNICODE": 1, - "so": 4, "ze": 8, - "o": 51, "begin_": 1, "_end": 1, "store": 6, - "key": 22, - "same": 2, - "above": 3, "stores": 1, "captured": 6, "key=": 2, @@ -37428,9 +38234,6 @@ "round": 12, "byref": 5, "global": 26, - "e": 210, - "test": 6, - "l": 84, "ref=": 3, "l=": 2, "capture": 10, @@ -37440,23 +38243,13 @@ "named": 12, "groups": 5, "OVECTOR": 2, - "additional": 5, "namedonly": 9, - "j": 67, - "c": 113, "options=": 4, - "f": 93, - "i=": 14, "o=": 12, - "p": 84, - "u": 6, "namedonly=": 2, "ovector=": 2, "NO_AUTO_CAPTURE": 2, - "k": 122, - "c=": 28, "_capture_": 2, - "_i_": 5, "matches": 10, "s=": 4, "_s_": 1, @@ -37474,16 +38267,12 @@ "empty": 7, "skip": 6, "determine": 1, - "remove": 6, "them": 1, "before": 2, "byref=": 2, "check": 2, "UTF8": 2, "double": 1, - "char": 9, - "new": 15, - "line": 14, "utf8=": 1, "crlf=": 3, "NL_CRLF": 1, @@ -37498,41 +38287,31 @@ "optimize": 1, "leave": 1, "advance": 1, - "clear": 6, "LF": 1, "CR": 1, - "was": 5, "CRLF": 1, - "mode": 12, "middle": 1, ".i": 2, ".match": 2, ".round": 2, ".byref": 2, ".ovector": 2, - "replace": 27, "subst": 3, "last": 4, - "all": 8, "occurrences": 1, "matched": 1, + "back": 4, "th": 3, - "{": 5, - "}": 5, "replaced": 1, - "where": 6, "substitution": 2, "begins": 1, "substituted": 2, "defaults": 3, "ends": 1, - "offset": 6, "backref": 1, "boffset": 1, - "value": 72, "prepare": 1, "reference": 2, - "stack": 8, ".subst": 1, ".backref": 1, "silently": 1, @@ -37540,33 +38319,21 @@ "": 1, "s/": 6, "b*": 7, - "|": 171, "/Xy/g": 6, "print": 8, "aa": 9, "et": 4, - "zt": 20, - "t": 12, "direct": 3, - "msg": 6, - "place": 9, "take": 1, "default": 6, - "handler": 9, "setup": 3, "trap": 10, "source": 3, "location": 5, "argument": 1, - "st": 6, - "[": 54, "@ref": 2, - "w": 127, - "@": 8, - "%": 207, + "E": 12, "COMPILE": 2, - "message": 8, - "has": 7, "meaning": 1, "zs": 2, "re": 2, @@ -37585,7 +38352,6 @@ "U16393": 1, "NOTES": 1, "U16401": 2, - "never": 4, "raised": 2, "i.e.": 3, "NOMATCH": 2, @@ -37595,9 +38361,7 @@ "too": 1, "small": 1, "considering": 1, - "size": 3, "controlled": 1, - "here": 4, "U16402": 1, "U16403": 1, "U16404": 1, @@ -37622,104 +38386,9 @@ "U16425": 1, "U16426": 1, "U16427": 1, - "part": 3, - "DataBallet.": 4, - "Laurent": 2, - "Parenteau": 2, - "": 2, - "DataBallet": 4, - "decode": 1, - "val": 5, - "Decoded": 1, - "URL": 2, - "Encoded": 1, - "decoded": 3, - "zlength": 3, - "zextract": 3, - "decoded_": 1, - "else": 7, - "safechar": 3, - "zchar": 1, - "encoded": 8, - "encoded_c": 1, - "encoded_": 2, - "FUNC": 1, - "DH": 1, - "zascii": 1, - "ZDIOUT1": 1, - "Experimental": 1, - "FileMan": 1, - "host": 2, - "The": 11, - "Open": 1, - "Source": 1, - "Electronic": 1, - "Health": 1, - "Record": 1, - "Agent": 1, - "Licensed": 1, - "Apache": 1, - "Version": 1, - "may": 3, - "except": 1, - "compliance": 1, - "License.": 2, - "obtain": 2, - "//www.apache.org/licenses/LICENSE": 1, - "Unless": 1, - "applicable": 1, - "law": 1, - "agreed": 1, - "BASIS": 1, - "WARRANTIES": 1, - "OR": 2, - "CONDITIONS": 1, - "OF": 2, - "KIND": 1, - "express": 1, - "implied.": 1, - "language": 6, - "governing": 1, - "permissions": 2, - "limitations": 1, - "ASKFILE": 1, - "FILE": 5, - "ASKDIR": 1, - "DIR": 3, - "SAVEFILE": 2, - "Save": 1, - "given": 1, - "directory": 1, - "CHECK": 1, - "FGR": 4, - "_FILE": 1, - "IO": 4, - "DIR_": 1, - "L": 1, - "FILENAME": 1, - "_IO_": 1, - "_P_": 1, - "NM": 1, - "non": 1, - "printing": 1, - "characters": 8, - "escaped": 1, - "evaluation": 1, - "RHS": 1, - "SET.": 1, - "TODO": 1, - "Caller": 1, - "define": 2, - "indentation": 1, - "comment": 4, - "character": 5, - "tab": 1, - "space.": 1, - "V": 2, "Examples": 4, "pcre.m": 1, "parameters": 1, - "values": 4, "pcreexamples": 32, "shining": 1, "Test": 1, @@ -37730,40 +38399,28 @@ "Just": 1, "Change": 2, "word": 3, - "order": 11, "Escape": 1, "sequence": 1, "More": 1, "Low": 1, "api": 1, - "count": 18, "Setup": 1, "myexception2": 2, "st_": 1, "zl_": 2, - "well": 2, - "functions": 4, "Compile": 2, ".options": 1, "Run": 1, ".offset": 1, - "To": 2, - "access": 21, "used.": 2, - "always": 2, - "*": 6, "strings": 1, "submitted": 1, "exact": 1, "usable": 1, - "pairs": 2, "integers": 1, - "Get": 2, - "old": 3, "way": 1, "i*2": 3, "what": 2, - "/": 3, "/mg": 2, "aaa": 1, "nbb": 1, @@ -37773,19 +38430,17 @@ "Locale": 5, "Support": 1, "Polish": 1, - "been": 4, - "example": 5, "I18N": 2, "PCRE.": 1, "Polish.": 1, "second": 1, "letter": 1, "": 1, + "which": 4, "ISO8859": 1, "//en.wikipedia.org/wiki/Polish_code_pages": 1, "complete": 1, "listing": 1, - "Note": 2, "CHAR": 1, "different": 3, "modes": 1, @@ -37813,6 +38468,8 @@ "isolocale": 2, "utflocale": 2, "LC_CTYPE": 1, + "Set": 2, + "obtain": 2, "results.": 1, "envlocale": 2, "ztrnlnm": 2, @@ -37830,27 +38487,25 @@ "Install": 1, "libicu48": 2, "apt": 1, + "get": 2, "install": 1, "append": 1, "chown": 1, "gtm": 1, "/opt/gtm": 1, "Startup": 1, + "errors": 6, "INVOBJ": 1, "Cannot": 1, "ZLINK": 1, "due": 1, "unexpected": 1, - "format": 2, - "TEXT": 5, "Object": 1, "compiled": 1, "CHSET": 1, - "ZCHSET": 2, "written": 3, "startup": 1, "correct": 1, - "step": 8, "above.": 1, "Limits": 1, "built": 1, @@ -37862,7 +38517,7 @@ "long": 2, "runs": 2, "especially": 1, - "would": 2, + "there": 2, "paths": 2, "tree": 1, "checked.": 1, @@ -37870,15 +38525,12 @@ "using": 4, "itself": 1, "allows": 1, - "setting": 3, "MATCH_LIMIT": 1, "MATCH_LIMIT_RECURSION": 1, "arguments": 1, "library": 1, "compilation": 2, - "time": 9, "Example": 1, - "run": 2, "longrun": 3, "Equal": 1, "corrected": 1, @@ -37894,21 +38546,20 @@ "codes": 1, "labels": 1, "file.": 1, + "When": 2, "neither": 1, "nor": 1, "within": 1, "mechanism.": 1, "depending": 1, "caller": 1, - "type": 2, "exception.": 1, "lead": 1, + "writing": 4, "prompt": 1, - "b": 64, - "routine": 6, "terminating": 1, "image.": 1, - "own": 2, + "define": 2, "handlers.": 1, "Handler": 1, "No": 17, @@ -37925,7 +38576,6 @@ "Non": 1, "assigned": 1, "ECODE": 1, - "error": 62, "32": 1, "GT": 1, "image": 1, @@ -37933,7 +38583,6 @@ "myexception1": 3, "zt=": 1, "mytrap1": 2, - "x=": 5, "zg": 2, "mytrap3": 1, "DETAILS": 1, @@ -37950,10 +38599,10 @@ "Thats": 1, "why": 1, "doesn": 1, - "change": 6, "unless": 1, "cleared.": 1, "Always": 1, + "done.": 2, "Execute": 1, "p5global": 1, "p5replace": 1, @@ -37962,1018 +38611,288 @@ "newline": 1, "utf8support": 1, "myexception3": 1, - "compute": 2, - "Fibonacci": 1, - "series": 2, - "term": 10, - "exercise": 1, - "car": 14, - "Comment": 1, - "block": 1, - "semicolon": 1, - "next": 1, - "legal": 1, - "blank": 1, - "whitespace": 2, - "alone": 1, - "valid": 2, - "Comments": 1, - "graphic": 3, - "such": 1, - "@#": 1, - "]": 15, - "space": 1, - "considered": 1, - "though": 1, - "it.": 2, - "ASCII": 2, - "whose": 1, - "numeric": 8, - "below": 1, - "NOT": 2, - "allowed": 18, - "routine.": 1, - "multiple": 1, - "semicolons": 1, - "okay": 1, - "tag": 2, - "after": 3, - "bug": 2, - "does": 1, - "Tag1": 1, - "Tags": 2, - "uppercase": 2, - "lowercase": 1, - "alphabetic": 2, - "HELO": 1, - "most": 1, - "common": 1, - "LABEL": 1, - "followed": 1, - "directly": 1, - "open": 1, - "parenthesis": 2, - "formal": 1, - "list": 1, - "close": 1, - "ANOTHER": 1, - "X": 19, - "Normally": 1, - "subroutine": 1, - "ended": 1, - "we": 1, - "taking": 1, - "advantage": 1, - "rule": 1, - "END": 1, - "implicit": 1, - "start2": 1, - "miles": 4, - "gallons": 4, - "miles/gallons": 1, - "computepesimist": 1, - "miles/": 1, - "computeoptimist": 1, - "/gallons": 1, - "encode": 1, - "Return": 1, - "base64": 6, - "Filename": 1, - "safe": 3, - "alphabet": 2, - "RFC": 1, - "todrop": 2, - "Populate": 1, - "only.": 1, - "Digest": 2, - "simple": 2, - "OpenSSL": 3, - "based": 1, - "digest": 19, - "rewrite": 1, - "EVP_DigestInit": 1, - "wrapper.": 1, - "//www.openssl.org/docs/crypto/EVP_DigestInit.html": 1, - "digest.init": 3, - "usually": 1, - "algorithm": 1, - "specification.": 1, - "Anyway": 1, - "properly": 1, - "fail.": 1, - "m": 37, - "HEX": 1, - "digest.update": 2, - ".c": 2, - ".m": 11, - "digest.final": 2, - ".d": 1, - "init": 6, - "alg": 3, - "context": 1, - "try": 1, - "etc": 1, - "returned": 1, - "occurs": 1, - "e.g.": 2, - "unknown": 1, - "update": 1, - "ctx": 4, - "updates": 1, - ".ctx": 2, - ".msg": 1, - "final": 1, - "hex": 1, - "frees": 1, - "memory": 1, - "allocated": 1, - ".digest": 1, - "algorithms": 1, - "availability": 1, - "depends": 1, - "libcrypto": 1, - "configuration": 1, - "md4": 1, - "md5": 2, - "sha": 1, - "sha1": 1, - "sha224": 1, - "sha256": 1, - "sha512": 1, - "dss1": 1, - "ripemd160": 1, - "Mumtris": 3, - "tetris": 1, - "game": 1, - "MUMPS": 1, - "fun.": 1, - "Resize": 1, - "terminal": 2, - "maximize": 1, - "PuTTY": 1, - "window": 1, - "restart": 3, - "report": 1, - "true": 2, - "mumtris.": 1, - "ansi": 2, - "compatible": 1, - "cursor": 1, - "positioning.": 1, - "NOTICE": 1, - "uses": 1, - "making": 1, - "delays": 1, - "lower": 1, - "s.": 1, - "That": 1, - "means": 2, - "CPU": 1, - "It": 2, - "fall": 5, - "lock": 2, - "preview": 3, - "over": 2, - "exit": 3, - "short": 1, - "circuit": 1, - "redraw": 3, - "timeout": 1, - "harddrop": 1, - "other": 1, - "ex": 5, - "hd": 3, - "r": 88, - "*c": 1, - "<0&'d>": 1, - "t10m": 1, - "h": 39, - "q=": 6, - "d=": 1, - "zb": 2, - "3": 6, - "rotate": 5, - "right": 3, - "left": 5, - "fl=": 1, - "gr=": 1, - "hl": 2, - "help": 2, - "drop": 2, - "hd=": 1, - "matrix": 2, - "draw": 3, - "ticks": 2, - "h=": 2, - "1000000000": 1, - "b=": 4, - "e=": 1, - "t10m=": 1, - "100": 2, - "n=": 1, - "ne=": 1, - "y=": 3, - "r=": 3, - "collision": 6, - "score": 5, - "k=": 1, - "4": 5, - "j=": 4, - "<1))))>": 1, - "800": 1, - "200": 1, - "lv": 5, - "lc=": 1, - "10": 1, - "lc": 3, - "mt_": 2, - "cls": 6, - "dh/2": 6, - "dw/2": 6, - "*s": 4, - "echo": 1, - "intro": 1, - "pos": 33, - "workaround": 1, - "ANSI": 1, - "driver": 1, - "NL": 1, - "some": 1, - "clearscreen": 1, - "h/2": 3, - "*w/2": 3, - "fill": 3, - "fl": 2, - "*x": 1, - "mx": 4, - "my": 5, - "**lv*sb": 1, - "*lv": 1, - "sc": 3, - "ne": 2, - "gr": 1, - "w*3": 1, - "dev": 1, - "zsh": 1, - "dw": 1, - "dh": 1, - "elemId": 3, - "rotateVersions": 1, - "rotateVersion": 2, - "bottom": 1, - "coordinate": 1, - "point": 2, - "____": 1, - "__": 2, - "||": 1, - "zmwire": 53, - "M/Wire": 4, - "Protocol": 2, - "Systems": 1, - "eg": 3, - "Cache": 3, - "M/Gateway": 4, - "Developments": 4, - "Ltd": 4, - "Reigate": 4, - "Surrey": 4, - "UK.": 4, - "All": 4, - "rights": 4, - "reserved.": 4, - "//www.mgateway.com": 4, - "Email": 4, - "rtweed@mgateway.com": 4, - "By": 1, - "server": 1, - "port": 4, - "systems": 3, - "invoked": 2, - "via": 2, - "xinetd": 2, - "Edit": 1, - "/etc/services": 1, - "add": 5, - "mwire": 2, - "/tcp": 1, - "#": 1, - "Service": 1, - "Copy": 2, - "/etc/xinetd.d/mwire": 1, - "/usr/local/gtm/zmwire": 1, - "its": 1, - "executable": 1, - "edited": 1, - "Restart": 1, - "sudo": 1, - "/etc/init.d/xinetd": 1, - "On": 1, - "installed": 1, - "MGWSI": 1, - "m_apache": 3, - "provide": 1, - "MD5": 6, - "hashing": 1, - "passwords": 1, - "Alternatively": 1, - "substitute": 1, - "callout": 1, - "choice": 1, - "Daemon": 2, - "running": 1, - "jobbed": 1, - "job": 1, - "zmwireDaemon": 2, - "simply": 1, - "Stop": 1, - "RESJOB": 1, - "mwireVersion": 4, - "mwireDate": 2, - "July": 1, - "_crlf": 22, - "response": 29, - "zewd": 17, - "trace": 24, - "_response_": 4, - "_crlf_response_crlf": 4, - "zv": 6, - "authNeeded": 6, - "input": 41, - "cleardown": 2, - "zint": 1, - "role": 3, - "loop": 7, - "log": 1, - "halt": 3, - "auth": 2, - "ignore": 12, - "pid": 36, - "monitor": 1, - "input_crlf": 1, - "lineNo": 19, - "zsy": 2, - "_pid_": 1, - "_pid": 1, - "monitoroutput": 1, - "logger": 17, - "initialise": 3, - "tot": 2, - "mwireLogger": 3, - "increment": 11, - "info": 1, - "response_": 1, - "_count": 1, - "setpassword": 1, - "SETPASSWORD": 2, - "secret": 2, - "OK": 6, - "": 1, - "role=": 1, - "admin": 1, - "newrole": 4, - "getGloRef": 3, - "gloName": 1, - "gloRef": 15, - "nb": 2, - "subs": 8, - "len": 8, - "nsp": 1, - "subs_": 2, - "quot": 2, - "_data_": 3, - "subscripts": 8, - "_value_": 1, - "_error_": 1, - "ok": 14, - "kill": 3, - "xx": 16, - "yy": 19, - "method": 2, - "Missing": 5, - "JSON": 7, - "transaction": 6, - "document": 6, - "setJSON": 4, - "json": 9, - "globalName": 7, - "GlobalName": 3, - "setGlobal": 1, - "zmwire_null_value": 1, - "Invalid": 1, - "props": 1, - "arr": 2, - "getJSON": 2, - "incr": 1, - "incrbr": 1, - "class": 1, - "##": 2, - "decr": 1, - "decrby": 1, - "subscript": 7, - "direction": 1, - "subscriptValue": 1, - "dataStatus": 1, - "dataValue": 1, - "nextsubscript": 2, - "reverseorder": 1, - "query": 4, - "p2": 10, - "*2": 1, - "queryget": 1, - "xxyy": 2, - "zz": 2, - "exists": 6, - "getallsubscripts": 1, - "orderall": 1, - "": 3, - "note": 2, - "escaping": 1, - "foo": 2, - "CacheTempEWD": 16, - "_gloRef": 1, - "@x": 4, - "_crlf_": 1, - "j_": 1, - "params": 10, - "resp": 5, - "_crlf_resp_crlf": 2, - "_crlf_data_crlf": 2, - "mergeto": 1, - "dataLength": 4, - "keyLength": 6, - "noOfRecs": 6, - "MERGETO": 1, - "myglobal": 1, - "*6": 1, - "hello": 1, - "": 2, - "put": 1, - "top": 1, - "N.N": 12, - "noOfRecs#2": 1, - "noOfRecs/2": 1, - "gloRef1": 2, - "gloRef1_": 2, - "_gloRef1_key_": 1, - "sub": 2, - "literal": 2, - "false": 5, - "boolean": 2, - "valquot_value_valquot": 1, - "json_value_": 1, - "subscripts1": 2, - "dd": 4, - "subx": 3, - "subNo": 1, - "numsub": 1, - "json_": 2, - "removeControlChars": 2, - "zobj1": 1, - "buff": 10, - "parseJSONObject": 2, - ".buff": 2, - "subs2": 6, - "stop": 20, - "_name_": 1, - "subs2_": 2, - "value_c": 1, - "N.N1": 4, - "newString": 4, - "newString_c": 1, - "utfConvert": 1, - "Unescape": 1, - "buf": 4, - "c1": 4, - "buf_c1_": 1, - "tr": 13, - "Keith": 1, - "Lynch": 1, - "p#f": 1, - "*8": 2, "contrasting": 1, "postconditionals": 1, + "IF": 9, "commands": 1, "post1": 1, "postconditional": 3, "purposely": 4, "TEST": 16, + "false": 5, "post2": 1, - "": 3, - "a=": 3, - "smaller": 3, - "than": 4, "special": 2, "post": 1, "condition": 1, - "if1": 2, - "if2": 2, - "zewdAPI": 52, - "Enterprise": 5, - "Web": 5, - "Developer": 5, - "APIs": 1, - "Product": 2, - "Date": 2, - "Fri": 1, - "Nov": 1, - "getVersion": 1, - "zewdCompiler": 6, - "date": 1, - "getDate": 1, - "compilePage": 2, - "app": 13, - "page": 12, - "technology": 9, - "outputPath": 4, - "multilingual": 4, - "maxLines": 4, - "compileAll": 2, - "templatePageName": 2, - "autoTranslate": 2, - "verbose": 2, - "zewdMgr": 1, - "startSession": 2, - "requestArray": 2, - "serverArray": 1, - "sessionArray": 5, - "filesArray": 1, - "zewdPHP": 8, - ".requestArray": 2, - ".serverArray": 1, - ".sessionArray": 3, - ".filesArray": 1, - "closeSession": 2, - "saveSession": 2, - "endOfPage": 2, - "prePageScript": 2, - "sessid": 146, - "releaseLock": 2, - "tokeniseURL": 2, - "url": 2, - "zewdCompiler16": 5, - "getSessid": 1, - "token": 21, - "isTokenExpired": 2, - "zewdSession": 39, - "initialiseSession": 1, - "deleteSession": 2, - "changeApp": 1, - "appName": 4, - "setSessionValue": 6, - "setRedirect": 1, - "toPage": 1, - "path": 4, - "getRootURL": 1, - "_sessid_": 3, - "_token_": 1, - "_nextPage": 1, - "zcvt": 11, - "nextPage": 1, - "isNextPageTokenValid": 2, - "zewdCompiler13": 10, - "isCSP": 1, - "normaliseTextValue": 1, - "text": 6, - "replaceAll": 11, - "writeLine": 2, - "CacheTempBuffer": 2, - "displayOptions": 2, - "fieldName": 5, - "listName": 6, - "escape": 7, - "codeValue": 7, - "nnvp": 1, - "nvp": 1, - "textValue": 6, - "getSessionValue": 3, - "codeValueEsc": 7, - "textValueEsc": 7, - "htmlOutputEncode": 2, - "zewdAPI2": 5, - "_codeValueEsc_": 1, - "selected": 4, - "translationMode": 1, - "_appName": 1, - "typex": 1, - "avoid": 1, - "getPhraseIndex": 1, - "zewdCompiler5": 1, - "licensed": 1, - "setWarning": 2, - "isTemp": 11, - "setWLDSymbol": 1, - "Duplicate": 1, - "performance": 1, - "wldAppName": 1, - "wldName": 1, - "wldSessid": 1, - "zzname": 1, - "extcErr": 1, - "mess": 3, - "namespace": 1, - "valueErr": 1, - "exportCustomTags": 2, - "tagList": 1, - "filepath": 10, - ".tagList": 1, - "exportAllCustomTags": 2, - "importCustomTags": 2, - "filePath": 2, - "zewdForm": 1, - "stripSpaces": 6, - "np": 17, - "obj": 6, - "prop": 6, - "setSessionObject": 3, - "allowJSONAccess": 1, - "sessionName": 30, - "disallowJSONAccess": 1, - "JSONAccess": 1, - "existsInSession": 2, - "existsInSessionArray": 2, - "p1": 5, - "p3": 3, - "p4": 2, - "p5": 2, - "p6": 2, - "p7": 2, - "p8": 2, - "p9": 2, - "p10": 2, - "p11": 2, - "clearSessionArray": 1, - "arrayName": 35, - "setSessionArray": 1, - "itemName": 16, - "itemValue": 7, - "getSessionArray": 1, - "clearArray": 2, - "getSessionArrayErr": 1, - "Come": 1, - "addToSession": 2, - "@name": 4, - "mergeToSession": 1, - "mergeGlobalToSession": 2, - "mergeGlobalFromSession": 2, - "mergeArrayToSession": 1, - "mergeArrayToSessionObject": 2, - ".array": 1, - "mergeArrayFromSession": 1, - "mergeFromSession": 1, - "deleteFromSession": 1, - "deleteFromSessionObject": 1, - "sessionNameExists": 1, - "getSessionArrayValue": 2, - ".exists": 1, - "sessionArrayValueExists": 2, - "deleteSessionArrayValue": 2, - "Objects": 1, - "objectName": 13, - "propertyName": 3, - "propertyValue": 5, - "comma": 3, - "objectName_": 2, - "_propertyName": 2, - "_propertyName_": 2, - "_propertyValue_": 1, - "_p": 1, - "quoted": 1, - "FromStr": 6, - "ToStr": 4, - "InText": 4, - "removeDocument": 1, - "zewdDOM": 3, - "instanceName": 2, - "clearXMLIndex": 1, - "zewdSchemaForm": 1, - "closeDOM": 1, - "makeTokenString": 1, - "token_": 1, - "makeString": 3, - "str": 15, - "convertDateToSeconds": 1, - "hdate": 7, - "hdate*86400": 1, - "convertSecondsToDate": 1, - "secs": 2, - "secs#86400": 1, - "getTokenExpiry": 2, - "h*86400": 1, - "randChar": 1, - "R": 2, - "lowerCase": 2, - "stripLeadingSpaces": 2, - "stripTrailingSpaces": 2, - "d1": 7, - "zd": 1, - "<10>": 1, - "dd=": 2, - "mm=": 3, - "d1=": 1, - "p1=": 1, - "mm": 7, - "p2=": 1, - "yy=": 1, - "dd_": 1, - "mm_": 1, - "inetTime": 1, - "Decode": 1, - "Internet": 1, - "Format": 1, - "Time": 1, - "H": 1, - "Offset": 1, - "relative": 1, - "GMT": 1, - "hh": 4, - "ss": 4, - "_hh": 1, - "time#3600": 1, - "_mm": 1, - "time#60": 1, - "_ss": 2, - "hh_": 1, - "_mm_": 1, - "openNewFile": 2, - "openFile": 2, - "openDOM": 2, - "#39": 1, - "<\",\"<\")>": 1, - "string=": 1, - "gt": 1, - "amp": 1, - "HTML": 1, - "no2": 1, - "p1_c_p2": 1, - "getIP": 2, - "IP": 1, - "address": 1, - "ajaxErrorRedirect": 2, - "classExport": 2, - "className": 2, - "methods": 2, - ".methods": 1, - "strx": 2, - "disableEwdMgr": 1, - "enableEwdMgr": 1, - "enableWLDAccess": 1, - "disableWLDAccess": 1, - "isSSOValid": 2, - "sso": 2, - "username": 8, - "password": 8, - "zewdMgrAjax2": 1, - "uniqueId": 1, - "nodeOID": 2, - "filename": 2, - "linkToParentSession": 2, - "zewdCompiler20": 1, - "exportToGTM": 1, - "MDB": 60, - "M/DB": 2, - "Mumps": 1, - "Emulation": 1, - "Amazon": 1, - "SimpleDB": 1, - "buildDate": 1, - "indexLength": 10, - "keyId": 108, - "tested": 1, - "these": 1, - "Initialise": 2, - "service": 1, - "//192.168.1.xxx/mdb/test.mgwsi": 1, - "Action": 2, - "addUser": 2, - "userKeyId": 6, - "userSecretKey": 6, - "requestId": 17, - "boxUsage": 11, - "startTime": 21, - ".startTime": 5, - "MDBUAF": 2, - ".boxUsage": 22, - "createDomain": 1, - "domainName": 38, - "dn": 4, - "dnx": 3, - "id": 33, - "noOfDomains": 12, - "MDBConfig": 1, - "getDomainId": 3, - "found": 7, - "namex": 8, - "buildItemNameIndex": 2, - "domainId": 53, - "itemId": 41, - "itemValuex": 3, - "countDomains": 2, - "deleteDomain": 2, - "listDomains": 1, - "maxNoOfDomains": 2, - "nextToken": 7, - "domainList": 3, - "fullName": 3, - "decodeBase64": 1, - "encodeBase64": 1, - "itemExists": 1, - "getItemId": 2, - "getAttributeValueId": 3, - "attribId": 36, - "valuex": 13, - "putAttributes": 2, - "attributes": 32, - "valueId": 16, - "xvalue": 4, - "Item": 1, - "Domain": 1, - "itemNamex": 4, - "parseJSON": 1, - "attributesJSON": 1, - ".attributes": 5, - "attribute": 14, - "getAttributeId": 2, - "domain": 1, - "Not": 1, - "now": 1, - "name/value": 2, - "pair": 1, - "getAttributes": 2, - "suppressBoxUsage": 1, - "attrNo": 9, - "valueNo": 6, - "delete": 2, - "item": 2, - "associated": 1, - "queryIndex": 1, - "records": 2, - "vno": 2, - "references": 1, - "maxNoOfItems": 3, - "itemList": 12, - "session": 1, - "identifier": 1, - "stored": 1, - "queryExpression": 16, - "relink": 1, - "zewdGTMRuntime": 1, - "CGIEVAR": 1, - "cgi": 1, - "unescName": 5, - "urlDecode": 2, - "KEY": 36, - "WebLink": 1, - "action": 15, - "AWSAcessKeyId": 1, - "db": 9, - "hash": 1, - "itemsAndAttrs": 2, - "secretKey": 1, - "signatureMethod": 2, - "signatureVersion": 3, - "stringToSign": 2, - "rltKey": 2, - "_action_": 2, - "h_": 3, - "mdbKey": 2, - "errorResponse": 9, - ".requestId": 7, - "createResponse": 4, - "installMDBM": 1, - "authenticate": 1, - "MDBSession": 1, - "createResponseStringToSign": 1, - "Security": 1, - "_db": 1, - "MDBAPI": 1, - "_db_": 1, - "db_": 1, - "_action": 1, - "metaData": 1, - "domainMetadata": 1, - ".metaData": 1, - "paramName": 8, - "paramValue": 5, - "Query": 1, - "DomainName": 2, - "QueryExpression": 2, - "MaxNumberOfItems": 2, - "NextToken": 3, - "QueryWithAttributes": 1, - "AttributeName.": 2, - "Select": 2, - "SelectExpression": 1, - "entering": 1, - "runSelect.": 1, - "selectExpression": 3, - "finished": 1, - "runSelect": 3, - "select": 3, - "asc": 1, - "inValue": 6, - "expr": 18, - "rel": 2, - "itemStack": 3, - "between": 2, - "<=\">": 1, - "lastWord=": 7, - "inAttr=": 5, - "expr=": 10, - "thisWord=": 7, - "inAttr": 2, - "queryExpression=": 4, - "_queryExpression": 2, - "isNull": 1, - "5": 1, - "8": 1, - "isNotNull": 1, - "9": 1, - "prevName": 1, - "np=": 1, - "diffNames": 6, - "_term": 3, - "expr_": 1, - "_orderBy": 1, - "runQuery": 2, - ".itemList": 4, - "escVals": 1, - "str_c": 2, - "_x_": 1, - "orderBy": 1, - "_query": 1, - "parseSelect": 1, - ".domainName": 2, - ".queryExpression": 1, - ".orderBy": 1, - ".limit": 1, - "executeSelect": 1, - ".itemStack": 1, - "***": 2, - "listCopy": 3, - "externalSelect": 2, - "_keyId_": 1, - "_selectExpression": 1, - "spaces": 3, - "string_spaces": 1, - "GMRGPNB0": 1, - "CISC/JH/RM": 1, - "NARRATIVE": 1, - "BUILDER": 1, - "GENERATOR": 1, - "cont.": 1, - "/20/91": 1, - "Text": 1, - "Generator": 1, - "Jan": 1, - "ENTRY": 2, - "WITH": 1, - "GMRGA": 1, - "POINT": 1, - "AT": 1, - "WHICH": 1, - "WANT": 1, - "START": 1, - "BUILDING": 1, - "GMRGE0": 11, - "GMRGADD": 4, - "GMR": 6, - "GMRGA0": 11, - "GMRGPDA": 9, - "GMRGCSW": 2, - "NOW": 1, - "DTC": 1, - "GMRGB0": 9, - "GMRGST": 6, - "GMRGPDT": 2, - "STAT": 8, - "GMRGRUT0": 3, - "GMRGF0": 3, - "GMRGSTAT": 8, - "_GMRGB0_": 2, - "GMRD": 6, - "GMRGSSW": 3, - "SNT": 1, - "GMRGPNB1": 1, - "GMRGNAR": 8, - "GMRGPAR_": 2, - "_GMRGSPC_": 3, - "_GMRGRM": 2, - "_GMRGE0": 1, - "STORETXT": 1, - "GMRGRUT1": 1, - "GMRGSPC": 3, - "GMRGD0": 7, - "ALIST": 1, - "GMRGPLVL": 6, - "GMRGA0_": 1, - "_GMRGD0_": 1, - "_GMRGSSW_": 1, - "_GMRGADD": 1, - "GMRGI0": 6, - "computes": 1, - "factorial": 3, - "f*n": 1, - "main": 1, + "PRCAAPR": 1, + "WASH": 1, + "ISC@ALTOONA": 1, + "PA/RGY": 1, + "PATIENT": 5, + "ACCOUNT": 1, + "PROFILE": 1, + "CONT": 1, + "/9/94": 1, + "AM": 1, + "V": 2, + "Accounts": 1, + "Receivable": 1, + "**198": 1, + "Mar": 1, + "Per": 1, + "VHA": 1, + "Directive": 1, + "modified.": 1, + "EN": 2, + "PRCATY": 2, + "NEW": 3, + "DIC": 6, + "Y": 26, + "DEBT": 10, + "PRCADB": 5, + "DA": 4, + "PRCA": 14, + "COUNT": 2, + "OUT": 2, + "SEL": 1, + "BILL": 11, + "BAT": 8, + "TRAN": 5, + "DR": 4, + "DXS": 1, + "DTOUT": 2, + "DIROUT": 1, + "DIRUT": 1, + "DUOUT": 1, + "ASK": 3, + "DPTNOFZY": 2, + "DPTNOFZK": 2, + "K": 5, + "DTIME": 1, + "UPPER": 1, + "VALM1": 1, + "RCD": 1, + "DISV": 2, + "DUZ": 3, + "NAM": 1, + "RCFN01": 1, + "COMP": 2, + "EN1": 1, + "PRCAATR": 1, + "Y_": 3, + "PRCADB_": 1, + "HDR": 1, + "PRCAAPR1": 3, + "HDR2": 1, + "DIS": 1, + "STAT1": 2, + "_PRCATY_": 1, + "COMP1": 2, + "RCY": 5, + "COMP2": 2, + "_STAT_": 1, + "_STAT": 1, + "payments": 1, + "_TRAN": 1, + "Keith": 1, + "Lynch": 1, + "p#f": 1, + "PXAI": 1, + "ISL/JVS": 1, + "ISA/KWP": 1, + "ESW": 1, + "PCE": 2, + "DRIVING": 1, + "RTN": 1, + "/20/03": 1, + "am": 1, + "CARE": 1, + "ENCOUNTER": 2, + "**15": 1, + "Aug": 1, + "DATA2PCE": 1, + "PXADATA": 7, + "PXAPKG": 9, + "PXASOURC": 10, + "PXAVISIT": 8, + "PXAUSER": 6, + "PXANOT": 3, + "ERRRET": 2, + "PXAPREDT": 2, + "PXAPROB": 15, + "PXACCNT": 2, + "add/edit/delete": 1, + "PCE.": 1, + "required": 4, + "pointer": 4, + "visit": 3, + "related.": 1, + "then": 2, + "nodes": 1, + "needed": 1, + "lookup/create": 1, + "visit.": 1, + "adding": 1, + "data.": 1, + "displayed": 1, + "screen": 1, + "debugging": 1, + "initial": 1, + "code.": 1, + "passed": 4, + "reference.": 2, + "present": 1, + "PXKERROR": 2, + "caller.": 1, + "want": 1, + "edit": 1, + "Primary": 3, + "Provider": 1, + "moment": 1, + "editing": 2, + "being": 1, + "dangerous": 1, + "dotted": 1, + "name.": 1, + "warnings": 1, + "occur": 1, + "They": 1, + "form": 1, + "general": 1, + "description": 1, + "problem.": 1, + "ERROR1": 1, + "GENERAL": 2, + "ERRORS": 4, + "SUBSCRIPT": 5, + "PASSED": 4, + "IN": 4, + "FIELD": 2, + "FROM": 5, + "WARNING2": 1, + "WARNINGS": 2, + "WARNING3": 1, + "SERVICE": 1, + "CONNECTION": 1, + "REASON": 9, + "ERROR4": 1, + "PROBLEM": 1, + "LIST": 1, + "Returns": 2, + "PFSS": 2, + "Account": 2, + "Reference": 2, + "known.": 1, + "Returned": 1, + "located": 1, + "Order": 1, + "#100": 1, + "process": 3, + "processed": 1, + "could": 1, + "incorrectly": 1, + "VARIABLES": 1, + "NOVSIT": 1, + "PXAK": 20, + "DFN": 1, + "PXAERRF": 3, + "PXADEC": 1, + "PXELAP": 1, + "PXASUB": 2, + "VALQUIET": 2, + "PRIMFND": 7, + "PXAERROR": 1, + "PXAERR": 7, + "PRVDR": 1, + "needs": 1, + "look": 1, + "up": 1, + "passed.": 1, + "@PXADATA@": 8, + "SOR": 1, + "SOURCE": 2, + "PKG2IEN": 1, + "VSIT": 1, + "PXAPIUTL": 2, + "TMPSOURC": 1, + "SAVES": 1, + "CREATES": 1, + "VST": 2, + "VISIT": 3, + "KILL": 1, + "VPTR": 1, + "PXAIVSTV": 1, + "ERR": 2, + "PXAIVST": 1, + "PRV": 1, + "PROVIDER": 1, + "AUPNVSIT": 1, + ".I": 4, + "..S": 7, + "status": 2, + "Secondary": 2, + ".S": 6, + "..I": 2, + "PXADI": 4, + "NODE": 5, + "SCREEN": 2, + "VA": 1, + "EXTERNAL": 2, + "INTERNAL": 2, + "ARRAY": 2, + "PXAICPTV": 1, + "SEND": 1, + "W": 4, + "BLD": 2, + "DIALOG": 4, + ".PXAERR": 3, + "MSG": 2, + "GLOBAL": 1, + "NA": 1, + "PROVDRST": 1, + "Check": 1, + "provider": 1, + "PRVIEN": 14, + "DETS": 7, + "DIQ": 3, + "PRI": 3, + "PRVPRIM": 2, + "AUPNVPRV": 2, + "U": 14, + ".04": 1, + "DIQ1": 1, + "POVPRM": 1, + "POVARR": 1, + "STOP": 1, + "LPXAK": 4, + "ORDX": 14, + "NDX": 7, + "ORDXP": 3, + "DX": 2, + "ICD9": 2, + "AUPNVPOV": 2, + "@POVARR@": 6, + "force": 1, + "originally": 1, + "primary": 1, + "diagnosis": 1, + "flag": 1, + ".F": 2, + "..E": 1, + "...S": 5, + "decode": 1, + "val": 5, + "Decoded": 1, + "Encoded": 1, + "decoded": 3, + "decoded_": 1, + "safechar": 3, + "zchar": 1, + "encoded_c": 1, + "encoded_": 2, + "FUNC": 1, + "DH": 1, + "zascii": 1, "WVBRNOT": 1, "HCIOFO/FT": 1, "JR": 1, @@ -38988,7 +38907,6 @@ "..F": 2, "WV": 8, "WVXREF": 1, - "Y": 26, "WVDFN": 6, "SELECTING": 1, "ONE": 2, @@ -39006,6 +38924,7 @@ "IS": 3, "QUEUED.": 1, "WVB": 4, + "OR": 2, "OPEN": 1, "ONLY": 1, "CLOSED.": 1, @@ -39040,6 +38959,7 @@ "DEQUEUE": 1, "TASKMAN": 1, "QUEUE": 1, + "OF": 2, "PRINTOUT.": 1, "SETVARS": 2, "WVUTL5": 2, @@ -39057,161 +38977,241 @@ "WVBRNOT2": 1, "WVPOP": 1, "WVLOOP": 1, - "zewdDemo": 1, - "Tutorial": 1, - "Wed": 1, - "Apr": 1, - "getLanguage": 1, - "getRequestValue": 1, - "login": 1, - "getTextValue": 4, - "getPasswordValue": 2, - "_username_": 1, - "_password": 1, - "logine": 1, - "textid": 1, - "errorMessage": 1, - "ewdDemo": 8, - "clearList": 2, - "appendToList": 4, - "addUsername": 1, - "newUsername": 5, - "newUsername_": 1, - "setTextValue": 4, - "testValue": 1, - "getSelectValue": 3, - "_user": 1, - "getPassword": 1, - "setPassword": 1, - "getObjDetails": 1, - "_user_": 1, - "_data": 2, - "setRadioOn": 2, - "initialiseCheckbox": 2, - "setCheckboxOn": 3, - "createLanguageList": 1, - "setMultipleSelectOn": 2, - "clearTextArea": 2, - "textarea": 2, - "createTextArea": 1, - ".textarea": 1, - "userType": 4, - "setMultipleSelectValues": 1, - ".selected": 1, - "testField3": 3, - ".value": 1, - "testField2": 1, - "field3": 1, - "dateTime": 1, - "label1": 1, - "statement": 3, - "statements": 1, - "contrasted": 1, - "if3": 1, - "clause": 2, - "if4": 1, - "bodies": 1, - "PRCAAPR": 1, - "WASH": 1, - "ISC@ALTOONA": 1, - "PA/RGY": 1, - "ACCOUNT": 1, - "PROFILE": 1, - "CONT": 1, - "/9/94": 1, - "AM": 1, - "Accounts": 1, - "Receivable": 1, - "**198": 1, - "Mar": 1, - "Per": 1, - "VHA": 1, - "Directive": 1, - "modified.": 1, - "PRCATY": 2, - "DEBT": 10, - "PRCADB": 5, - "PRCA": 14, - "COUNT": 2, - "OUT": 2, - "SEL": 1, - "BILL": 11, - "BAT": 8, - "TRAN": 5, - "DXS": 1, - "DTOUT": 2, - "DIROUT": 1, - "DIRUT": 1, - "DUOUT": 1, - "ASK": 3, - "DPTNOFZY": 2, - "DPTNOFZK": 2, - "DTIME": 1, - "UPPER": 1, - "VALM1": 1, - "RCD": 1, - "DISV": 2, - "NAM": 1, - "RCFN01": 1, - "COMP": 2, - "EN1": 1, - "PRCAATR": 1, - "Y_": 3, - "PRCADB_": 1, - "HDR": 1, - "PRCAAPR1": 3, - "HDR2": 1, - "DIS": 1, - "STAT1": 2, - "_PRCATY_": 1, - "COMP1": 2, - "RCY": 5, - "COMP2": 2, - "_STAT_": 1, - "_STAT": 1, - "payments": 1, - "_TRAN": 1, - "Implementation": 1, - "works": 1, - "please": 1, - "don": 1, - "joke.": 1, - "Serves": 1, - "reverse": 1, - "engineering": 1, - "obtaining": 1, - "integer": 1, - "addition": 1, - "modulo": 1, - "division.": 1, - "//en.wikipedia.org/wiki/MD5": 1, - "#64": 1, - "msg_": 1, - "_m_": 1, - "n64": 2, - "read": 2, - ".p": 1, - "*i": 3, - "#16": 3, - "xor": 4, - "#4294967296": 6, - "n32h": 5, - "bit": 5, - "#2": 1, - "*2147483648": 2, - "a#2": 1, - "b#2": 1, - ".a": 1, - ".b": 1, - "rol": 1, - "a*": 1, - "**n": 1, - "c#4294967296": 1, - "*n": 1, - "n#256": 1, - "n#16": 2, - "student": 14, - "zwrite": 1 + "ZDIOUT1": 1, + "Experimental": 1, + "FileMan": 1, + "host": 2, + "Open": 1, + "Source": 1, + "Electronic": 1, + "Health": 1, + "Record": 1, + "Agent": 1, + "Licensed": 1, + "Apache": 1, + "Version": 1, + "may": 3, + "except": 1, + "compliance": 1, + "License.": 2, + "//www.apache.org/licenses/LICENSE": 1, + "Unless": 1, + "applicable": 1, + "law": 1, + "agreed": 1, + "BASIS": 1, + "WARRANTIES": 1, + "CONDITIONS": 1, + "KIND": 1, + "express": 1, + "implied.": 1, + "governing": 1, + "permissions": 2, + "limitations": 1, + "ASKFILE": 1, + "FILE": 5, + "ASKDIR": 1, + "DIR": 3, + "SAVEFILE": 2, + "Save": 1, + "given": 1, + "directory": 1, + "CHECK": 1, + "FGR": 4, + "_FILE": 1, + "IO": 4, + "DIR_": 1, + "L": 1, + "FILENAME": 1, + "_IO_": 1, + "_P_": 1, + "NM": 1, + "non": 1, + "printing": 1, + "escaped": 1, + "evaluation": 1, + "RHS": 1, + "SET.": 1, + "TODO": 1, + "Caller": 1, + "indentation": 1, + "tab": 1, + "space.": 1, + "M/Wire": 4, + "Protocol": 2, + "Systems": 1, + "By": 1, + "server": 1, + "port": 4, + "systems": 3, + "invoked": 2, + "via": 2, + "xinetd": 2, + "Edit": 1, + "/etc/services": 1, + "mwire": 2, + "/tcp": 1, + "#": 1, + "Service": 1, + "Copy": 2, + "/etc/xinetd.d/mwire": 1, + "/usr/local/gtm/zmwire": 1, + "its": 1, + "executable": 1, + "edited": 1, + "Restart": 1, + "sudo": 1, + "/etc/init.d/xinetd": 1, + "On": 1, + "installed": 1, + "MGWSI": 1, + "provide": 1, + "hashing": 1, + "passwords": 1, + "Alternatively": 1, + "substitute": 1, + "callout": 1, + "choice": 1, + "Daemon": 2, + "running": 1, + "jobbed": 1, + "job": 1, + "zmwireDaemon": 2, + "simply": 1, + "Stop": 1, + "RESJOB": 1, + "mwireVersion": 4, + "mwireDate": 2, + "July": 1, + "_crlf": 22, + "_response_": 4, + "_crlf_response_crlf": 4, + "authNeeded": 6, + "input": 41, + "cleardown": 2, + "zint": 1, + "role": 3, + "loop": 7, + "log": 1, + "halt": 3, + "auth": 2, + "ignore": 12, + "pid": 36, + "monitor": 1, + "input_crlf": 1, + "zsy": 2, + "_pid_": 1, + "_pid": 1, + "monitoroutput": 1, + "logger": 17, + "tot": 2, + "mwireLogger": 3, + "info": 1, + "response_": 1, + "_count": 1, + "setpassword": 1, + "SETPASSWORD": 2, + "secret": 2, + "": 1, + "role=": 1, + "admin": 1, + "newrole": 4, + "getGloRef": 3, + "gloName": 1, + "gloRef": 15, + "nb": 2, + "subs": 8, + "nsp": 1, + "subs_": 2, + "_data_": 3, + "subscripts": 8, + "_value_": 1, + "_error_": 1, + "kill": 3, + "xx": 16, + "method": 2, + "Missing": 5, + "JSON": 7, + "transaction": 6, + "document": 6, + "setJSON": 4, + "GlobalName": 3, + "setGlobal": 1, + "zmwire_null_value": 1, + "Invalid": 1, + "props": 1, + "arr": 2, + "getJSON": 2, + "incr": 1, + "incrbr": 1, + "class": 1, + "##": 2, + "decr": 1, + "decrby": 1, + "direction": 1, + "subscriptValue": 1, + "dataStatus": 1, + "dataValue": 1, + "nextsubscript": 2, + "reverseorder": 1, + "*2": 1, + "queryget": 1, + "xxyy": 2, + "zz": 2, + "getallsubscripts": 1, + "orderall": 1, + "": 3, + "note": 2, + "escaping": 1, + "foo": 2, + "_gloRef": 1, + "@x": 4, + "_crlf_": 1, + "j_": 1, + "params": 10, + "_crlf_resp_crlf": 2, + "_crlf_data_crlf": 2, + "mergeto": 1, + "dataLength": 4, + "keyLength": 6, + "noOfRecs": 6, + "MERGETO": 1, + "myglobal": 1, + "*6": 1, + "hello": 1, + "": 2, + "put": 1, + "top": 1, + "noOfRecs#2": 1, + "noOfRecs/2": 1, + "gloRef1": 2, + "gloRef1_": 2, + "_gloRef1_key_": 1, + "sub": 2, + "literal": 2, + "valquot_value_valquot": 1, + "json_value_": 1, + "subscripts1": 2, + "subx": 3, + "subNo": 1, + "numsub": 1, + "json_": 2, + "removeControlChars": 2, + "zobj1": 1, + "buff": 10, + "parseJSONObject": 2, + ".buff": 2, + "subs2": 6, + "_name_": 1, + "subs2_": 2, + "value_c": 1, + "newString": 4, + "newString_c": 1, + "utfConvert": 1, + "Unescape": 1, + "buf": 4, + "c1": 4, + "buf_c1_": 1 }, "MTML": { "<$mt:Var>": 15, @@ -39323,36 +39323,48 @@ "bazCompo": 1 }, "Mathematica": { - "Do": 1, + "Get": 1, "[": 307, - "If": 1, - "Length": 1, - "Divisors": 1, - "Binomial": 2, - "i": 3, - "+": 2, "]": 286, - "Print": 1, - ";": 42, - "Break": 1, - "{": 227, - "}": 222, - "Paclet": 1, - "Name": 1, - "-": 134, - "Version": 1, - "MathematicaVersion": 1, - "Description": 1, - "Creator": 1, - "Extensions": 1, - "Language": 1, - "MainPage": 1, "Notebook": 2, + "{": 227, "Cell": 28, "CellGroupData": 8, - "CellChangeTimes": 13, - "*": 19, "BoxData": 19, + "RowBox": 34, + "}": 222, + "CellChangeTimes": 13, + "-": 134, + "*": 19, + "SuperscriptBox": 1, + "MultilineFunction": 1, + "None": 8, + "Open": 7, + "NumberMarks": 3, + "False": 19, + "GraphicsBox": 2, + "Hue": 5, + "LineBox": 5, + "CompressedData": 9, + "AspectRatio": 1, + "NCache": 1, + "GoldenRatio": 1, + "(": 2, + ")": 1, + "Axes": 1, + "True": 7, + "AxesLabel": 1, + "AxesOrigin": 1, + "Method": 2, + "PlotRange": 1, + "PlotRangeClipping": 1, + "PlotRangePadding": 1, + "Scaled": 10, + "WindowSize": 1, + "WindowMargins": 1, + "Automatic": 9, + "FrontEndVersion": 1, + "StyleDefinitions": 1, "NamespaceBox": 1, "DynamicModuleBox": 1, "Typeset": 7, @@ -39362,13 +39374,9 @@ "Asynchronous": 1, "All": 1, "TimeConstraint": 1, - "Automatic": 9, - "Method": 2, "elements": 1, "pod1": 1, "XMLElement": 13, - "False": 19, - "True": 7, "FormBox": 4, "TagBox": 9, "GridBox": 2, @@ -39382,7 +39390,6 @@ "LineSpacing": 2, "GridBoxBackground": 1, "GrayLevel": 17, - "None": 8, "GridBoxItemSize": 2, "ColumnsEqual": 2, "RowsEqual": 2, @@ -39401,7 +39408,6 @@ "TraditionalOrder": 1, "&": 2, "pod2": 1, - "RowBox": 34, "LinebreakAdjustments": 2, "FontFamily": 1, "UnitFontFamily": 1, @@ -39413,17 +39419,13 @@ "ZeroWidthTimes": 1, "pod3": 1, "TemplateBox": 1, - "GraphicsBox": 2, "GraphicsComplexBox": 1, - "CompressedData": 9, "EdgeForm": 2, "Directive": 5, "Opacity": 2, - "Hue": 5, "GraphicsGroupBox": 2, "PolygonBox": 3, "RGBColor": 3, - "LineBox": 5, "Dashing": 1, "Small": 1, "GridLines": 1, @@ -39442,14 +39444,22 @@ "Epilog": 1, "CapForm": 1, "Offset": 8, - "Scaled": 10, "DynamicBox": 1, "ToBoxes": 1, "DynamicModule": 1, "pt": 1, - "(": 2, "NearestFunction": 1, + "Paclet": 1, + "Name": 1, + "Version": 1, + "MathematicaVersion": 1, + "Description": 1, + "Creator": 1, + "Extensions": 1, + "Language": 1, + "MainPage": 1, "BeginPackage": 1, + ";": 42, "PossiblyTrueQ": 3, "usage": 22, "PossiblyFalseQ": 2, @@ -39507,51 +39517,164 @@ "Symbol": 2, "NumericQ": 1, "EndPackage": 1, - "SuperscriptBox": 1, - "MultilineFunction": 1, - "Open": 7, - "NumberMarks": 3, - "AspectRatio": 1, - "NCache": 1, - "GoldenRatio": 1, - ")": 1, - "Axes": 1, - "AxesLabel": 1, - "AxesOrigin": 1, - "PlotRange": 1, - "PlotRangeClipping": 1, - "PlotRangePadding": 1, - "WindowSize": 1, - "WindowMargins": 1, - "FrontEndVersion": 1, - "StyleDefinitions": 1, - "Get": 1 + "Do": 1, + "If": 1, + "Length": 1, + "Divisors": 1, + "Binomial": 2, + "i": 3, + "+": 2, + "Print": 1, + "Break": 1 }, "Matlab": { "function": 34, - "create_ieee_paper_plots": 2, + "[": 311, + "dx": 6, + "y": 25, + "]": 311, + "adapting_structural_model": 2, "(": 1379, - "data": 27, - "rollData": 8, + "t": 32, + "x": 46, + "u": 3, + "varargin": 25, ")": 1380, "%": 554, + "size": 11, + "aux": 3, + "{": 157, + "end": 150, + "}": 157, + ";": 909, + "m": 44, + "zeros": 61, + "b": 12, + "for": 78, + "i": 338, + "if": 52, + "+": 169, + "elseif": 14, + "else": 23, + "display": 10, + "aux.pars": 3, + ".*": 2, + "Yp": 2, + "human": 1, + "aux.timeDelay": 2, + "c1": 5, + "aux.m": 3, + "*": 46, + "aux.b": 3, + "e": 14, + "-": 673, + "c2": 5, + "Yc": 5, + "parallel": 2, + "plant": 4, + "aux.plantFirst": 2, + "aux.plantSecond": 2, + "Ys": 1, + "feedback": 1, + "A": 11, + "B": 9, + "C": 13, + "D": 7, + "tf2ss": 1, + "Ys.num": 1, + "Ys.den": 1, + "average": 1, + "n": 102, + "|": 2, + "&": 4, + "error": 16, + "sum": 2, + "/length": 1, + "bicycle": 7, + "bicycle_state_space": 1, + "speed": 20, + "S": 5, + "dbstack": 1, + "CURRENT_DIRECTORY": 2, + "fileparts": 1, + ".file": 1, + "par": 7, + "par_text_to_struct": 4, + "filesep": 14, + "...": 162, + "whipple_pull_force_abcd": 2, + "states": 7, + "outputs": 10, + "inputs": 14, + "defaultSettings.states": 1, + "defaultSettings.inputs": 1, + "defaultSettings.outputs": 1, + "userSettings": 3, + "varargin_to_structure": 2, + "struct": 1, + "settings": 3, + "overwrite_settings": 2, + "defaultSettings": 3, + "minStates": 2, + "ismember": 15, + "settings.states": 3, + "<": 9, + "keepStates": 2, + "find": 24, + "removeStates": 1, + "row": 6, + "abs": 12, + "col": 5, + "s": 13, + "sprintf": 11, + "removeInputs": 2, + "settings.inputs": 1, + "keepOutputs": 2, + "settings.outputs": 1, + "It": 1, + "is": 7, + "not": 3, + "possible": 1, + "to": 9, + "keep": 1, + "output": 7, + "because": 1, + "it": 1, + "depends": 1, + "on": 13, + "input": 14, + "StateName": 1, + "OutputName": 1, + "InputName": 1, + "x_0": 45, + "linspace": 14, + "vx_0": 37, + "z": 3, + "j": 242, + "*vx_0": 1, + "figure": 17, + "pcolor": 2, + "shading": 3, + "flat": 3, + "name": 4, + "order": 11, + "convert_variable": 1, + "variable": 10, + "coordinates": 6, + "speeds": 21, + "get_variables": 2, + "columns": 4, + "create_ieee_paper_plots": 2, + "data": 27, + "rollData": 8, "global": 6, "goldenRatio": 12, - "+": 169, "sqrt": 14, "/": 59, - ";": 909, - "if": 52, "exist": 1, "mkdir": 1, - "end": 150, "linestyles": 15, - "{": 157, - "...": 162, - "}": 157, "colors": 13, - "[": 311, - "]": 311, "loop_shape_example": 3, "data.Benchmark.Medium": 2, "plot_io_roll": 3, @@ -39561,21 +39684,15 @@ "var": 3, "io": 7, "typ": 3, - "for": 78, - "i": 338, "length": 49, - "j": 242, "plot_io": 1, "phase_portraits": 2, "eigenvalues": 2, "bikeData": 2, - "input": 14, - "figure": 17, "figWidth": 24, "figHeight": 19, "set": 43, "gcf": 17, - "-": 673, "freq": 12, "hold": 23, "all": 15, @@ -39595,9 +39712,6 @@ "neuroNum": 2, "neuroDen": 2, "whichLines": 3, - "elseif": 14, - "else": 23, - "error": 16, "phiDotNum": 2, "closedLoops.PhiDot.num": 1, "phiDotDen": 2, @@ -39632,7 +39746,6 @@ "dArrow": 2, "filename": 21, "pathToFile": 11, - "filesep": 14, "print": 6, "fix_ps_linestyle": 6, "openLoops": 1, @@ -39649,12 +39762,10 @@ "line": 15, "wc": 14, "wShift": 5, - "on": 13, "num2str": 10, "bikeData.handlingMetric.num": 1, "bikeData.handlingMetric.den": 1, "w": 6, - "linspace": 14, "mag": 4, "phase": 2, "bode": 5, @@ -39714,7 +39825,6 @@ "gca": 8, "speedNames": 12, "metricLines": 2, - "zeros": 61, "bikes": 24, "data.": 6, ".": 13, @@ -39732,21 +39842,16 @@ "Path": 1, "Southeast": 1, "Distance": 1, - "m": 44, "Lateral": 1, "Deviation": 1, "paths.eps": 1, "d": 12, "like": 1, - "to": 9, "plot.": 1, "names": 6, "prettyNames": 3, "units": 3, "index": 6, - "find": 24, - "ismember": 15, - "variable": 10, "fieldnames": 5, "data.Browser": 1, "maxValue": 4, @@ -39754,13 +39859,11 @@ "history": 7, "oneSpeed.": 3, "round": 1, - "*": 46, "pad": 10, "yShift": 16, "xShift": 3, "time": 21, "oneSpeed.time": 2, - "speed": 20, "oneSpeed.speed": 2, "distance": 6, "xAxis": 12, @@ -39814,14 +39917,10 @@ "ylabels": 2, "legends": 3, "floatSpec": 3, - "display": 10, - "sprintf": 11, "twentyPercent": 1, "generate_data": 5, "nominalData": 1, - "x": 46, "nominalData.": 2, - "y": 25, "bikeData.": 2, "twentyPercent.": 2, "equal": 2, @@ -39829,120 +39928,197 @@ "bikeData.modelPar.": 1, "leg2": 2, "twentyPercent.modelPar.": 1, - "speeds": 21, "eVals": 5, "pathToParFile": 2, - "par": 7, - "par_text_to_struct": 4, "str": 2, - "A": 11, - "B": 9, - "C": 13, - "D": 7, - "whipple_pull_force_abcd": 2, "eigenValues": 1, "eig": 6, "real": 3, "zeroIndices": 3, - "abs": 12, - "<": 9, "ones": 6, - "size": 11, "maxEvals": 4, "maxLine": 7, "minLine": 4, "min": 1, "speedInd": 12, - "x_T": 25, - "y_T": 17, - "vx_T": 22, - "e_T": 7, - "filter": 14, - "delta_e": 3, - "Integrate_FTLE_Gawlick_ell": 1, - "x_0": 45, - "y_0": 29, - "vx_0": 37, - "e_0": 7, - "T": 22, - "mu": 73, - "ecc": 2, - "nu": 2, - "options": 14, - "Integrate": 6, - "nx": 32, - "ny": 29, - "nvx": 32, - "ne": 29, - "vy_0": 22, - "vy_T": 12, - "Look": 2, - "phisically": 2, - "meaningful": 6, - "points": 11, - "meaningless": 2, - "point": 14, - "useful": 9, - "only": 7, - "h": 19, - "waitbar": 6, - "i/nx": 2, - "parfor": 5, - "l": 64, - "Omega": 7, - "ecc*cos": 1, - "*e_0": 3, - "isreal": 8, - "ci": 9, - "t": 32, - "Y": 19, - "ode45": 6, - "@f_ell": 1, - "Consider": 1, - "also": 1, - "negative": 1, - "Compute": 3, - "the": 14, - "goodness": 1, - "of": 35, - "integration": 9, - "close": 4, - "dx": 6, - "adapting_structural_model": 2, - "u": 3, - "varargin": 25, - "aux": 3, - "b": 12, - "aux.pars": 3, - ".*": 2, - "Yp": 2, - "human": 1, - "aux.timeDelay": 2, - "c1": 5, - "aux.m": 3, - "aux.b": 3, - "e": 14, - "c2": 5, - "Yc": 5, - "parallel": 2, - "plant": 4, - "aux.plantFirst": 2, - "aux.plantSecond": 2, - "Ys": 1, - "feedback": 1, - "tf2ss": 1, - "Ys.num": 1, - "Ys.den": 1, + "cross_validation": 1, + "hyper_parameter": 3, + "num_data": 2, + "K": 4, + "indices": 2, + "crossvalind": 1, + "errors": 4, + "test_idx": 4, + "train_idx": 3, + "x_train": 2, + "y_train": 2, + "train": 1, + "x_test": 3, + "y_test": 3, + "calc_cost": 1, + "calc_error": 2, + "mean": 2, "value": 2, "isterminal": 2, "direction": 2, + "mu": 73, "FIXME": 1, "from": 2, + "the": 14, "largest": 1, "primary": 1, "clear": 13, - "Earth": 2, - "Moon": 2, + "tic": 7, + "T": 22, + "x_min": 3, + "x_max": 3, + "y_min": 3, + "y_max": 3, + "how": 1, + "many": 1, + "points": 11, + "per": 5, + "one": 3, + "measure": 1, + "unit": 1, + "both": 1, + "in": 8, + "and": 7, + "ds": 1, + "x_res": 7, + "*n": 2, + "y_res": 7, + "grid_x": 3, + "grid_y": 3, + "advected_x": 12, + "advected_y": 12, + "parfor": 5, + "X": 6, + "ode45": 6, + "@dg": 1, + "store": 4, + "advected": 2, + "positions": 2, + "as": 4, + "they": 2, + "would": 2, + "appear": 2, + "coords": 2, + "Compute": 3, + "FTLE": 14, + "sigma": 6, + "compute": 2, + "Jacobian": 3, + "*ds": 4, + "eigenvalue": 2, + "of": 35, + "*phi": 2, + "log": 2, + "lambda_max": 2, + "/abs": 3, + "*T": 3, + "toc": 5, + "field": 2, + "contourf": 2, + "location": 1, + "EastOutside": 1, + "f_x_t": 2, + "inline": 1, + "grid_min": 3, + "grid_max": 3, + "grid_width": 1, + "grid_spacing": 5, + "grid_width/": 1, + "*grid_width/": 4, + "colorbar": 1, + "load_data": 4, + "t0": 6, + "t1": 6, + "t2": 6, + "t3": 1, + "dataPlantOne": 3, + "data.Ts": 6, + "dataAdapting": 3, + "dataPlantTwo": 3, + "guessPlantOne": 4, + "resultPlantOne": 1, + "find_structural_gains": 2, + "yh": 2, + "fit": 6, + "x0": 4, + "compare": 3, + "resultPlantOne.fit": 1, + "guessPlantTwo": 3, + "resultPlantTwo": 1, + "resultPlantTwo.fit": 1, + "kP1": 4, + "resultPlantOne.fit.par": 1, + "kP2": 3, + "resultPlantTwo.fit.par": 1, + "gainSlopeOffset": 6, + "eye": 9, + "this": 2, + "only": 7, + "uses": 1, + "tau": 1, + "through": 1, + "wfs": 1, + "true": 2, + "plantOneSlopeOffset": 3, + "plantTwoSlopeOffset": 3, + "mod": 3, + "idnlgrey": 1, + "pem": 1, + "guess.plantOne": 3, + "guess.plantTwo": 2, + "plantNum.plantOne": 2, + "plantNum.plantTwo": 2, + "sections": 13, + "secData.": 1, + "||": 3, + "guess.": 2, + "result.": 2, + ".fit.par": 1, + "currentGuess": 2, + "warning": 1, + "randomGuess": 1, + "The": 6, + "self": 2, + "validation": 2, + "VAF": 2, + "f.": 2, + "data/": 1, + "results.mat": 1, + "guess": 1, + "plantNum": 1, + "result": 5, + "plots/": 1, + ".png": 1, + "task": 1, + "closed": 1, + "loop": 1, + "system": 2, + "u.": 1, + "gain": 1, + "guesses": 1, + "k1": 4, + "k2": 3, + "k3": 3, + "k4": 4, + "identified": 1, + "gains": 12, + ".vaf": 1, + "Elements": 1, + "grid": 1, + "definition": 2, + "Dimensionless": 1, + "integrating": 1, + "Choice": 2, + "mass": 2, + "parameter": 2, + "Computation": 9, + "Lagrangian": 3, + "Points": 2, "xl1": 13, "yl1": 12, "xl2": 9, @@ -39954,68 +40130,258 @@ "xl5": 8, "yl5": 8, "Lagr": 6, - "*Potential": 5, - "C_star": 1, - "*Omega": 5, + "initial": 5, + "total": 6, + "energy": 8, + "E_L1": 4, + "Omega": 7, + "C_L1": 3, + "*E_L1": 1, + "Szebehely": 1, "E": 8, - "C/2": 1, - "odeset": 4, - "orbit": 1, - "t0": 6, - "Y0": 6, - "ode113": 2, - "@f": 6, - "x0": 4, - "y0": 2, - "vx0": 2, - "vy0": 2, - "l0": 1, - "delta_E0": 1, + "Offset": 2, + "Initial": 3, + "conditions": 3, + "range": 2, + "x_0_min": 8, + "x_0_max": 8, + "vx_0_min": 8, + "vx_0_max": 8, + "y_0": 29, + "ndgrid": 2, + "vy_0": 22, + "*E": 2, + "*Omega": 5, + "vx_0.": 2, + "E_cin": 4, + "x_T": 25, + "y_T": 17, + "vx_T": 22, + "vy_T": 12, + "filtro": 15, + "E_T": 11, + "delta_E": 7, + "a": 17, + "matrix": 3, + "numbers": 2, + "integration": 9, + "steps": 2, + "each": 2, + "np": 8, + "number": 2, + "integrated": 5, + "fprintf": 18, "Energy": 4, - "Hill": 1, - "Edgecolor": 1, - "none": 1, - ".2f": 5, - "ok": 2, - "sg": 1, - "sr": 1, - "tspan": 7, - "arg1": 1, - "arg": 2, - "X": 6, - "arrayfun": 2, - "RK4_par": 1, - "RK4": 3, - "fun": 5, - "th": 1, - "order": 11, - "Runge": 1, - "Kutta": 1, + "tolerance": 2, + "setting": 4, + "energy_tol": 6, + "Setting": 1, + "options": 14, "integrator": 2, - "dim": 2, - "while": 1, - "k1": 4, - "k2": 3, - "h/2": 2, - "k1*h/2": 1, - "k3": 3, - "k2*h/2": 1, - "k4": 4, - "h*k3": 1, - "h/6*": 1, - "*k2": 1, - "*k3": 1, - "settings": 3, - "overwrite_settings": 2, - "defaultSettings": 3, - "overrideSettings": 3, - "overrideNames": 2, - "defaultNames": 2, - "notGiven": 5, - "setxor": 1, - "settings.": 1, - "defaultSettings.": 1, + "RelTol": 2, + "AbsTol": 2, + "From": 1, + "Short": 1, + "odeset": 4, + "Parallel": 2, + "equations": 2, + "motion": 2, + "h": 19, + "waitbar": 6, + "r1": 3, + "r2": 3, + "g": 5, + "i/n": 1, + "y_0.": 2, + "./": 1, + "mu./": 1, + "isreal": 8, + "Check": 6, + "velocity": 2, + "positive": 2, + "Kinetic": 2, + "Y": 19, + "@f_reg": 1, + "Saving": 4, + "solutions": 2, + "final": 2, + "difference": 2, + "with": 2, + "conservation": 2, + "position": 2, + "point": 14, + "interesting": 4, + "non": 2, + "sense": 2, + "bad": 4, + "close": 4, + "t_integrazione": 3, + "filtro_1": 12, + "dphi": 12, + "ftle": 10, + "ftle_norm": 1, + "ds_x": 1, + "ds_vx": 1, + "La": 1, + "direzione": 1, + "dello": 1, + "spostamento": 1, + "la": 2, + "decide": 1, + "il": 1, + "denominatore": 1, + "TODO": 1, + "spiegarsi": 1, + "teoricamente": 1, + "come": 1, + "mai": 1, + "matrice": 1, + "pu": 1, + "essere": 1, + "ridotta": 1, + "x2": 1, + "*ds_x": 2, + "*ds_vx": 2, + "Manual": 2, + "visualize": 2, + "*log": 2, + "dphi*dphi": 1, + "tempo": 4, + "integrare": 2, + ".2f": 5, + "calcolare": 2, + "var_": 2, + "_": 2, + "var_xvx_": 2, + "ode00": 2, + "_n": 2, + "save": 2, + "nome": 2, + "Transforming": 1, + "into": 1, + "Hamiltonian": 1, + "variables": 2, + "px_0": 2, + "py_0": 2, + "px_T": 4, + "py_T": 4, + "inf": 1, + "@cr3bp_jac": 1, + "@fH": 1, + "EnergyH": 1, + "t_integr": 1, + "Back": 1, + "Inf": 1, + "_e": 1, + "_H": 1, + "Range": 1, + "E_0": 4, + "C_L1/2": 1, + "Y_0": 4, + "nx": 32, + "nvx": 32, + "dvx": 3, + "ny": 29, + "dy": 5, + "/2": 3, + "ne": 29, + "de": 4, + "e_0": 7, + "Definition": 1, + "arrays": 1, + "In": 1, + "approach": 1, + "useful": 9, + "pints": 1, + "are": 1, + "stored": 1, + "filter": 14, + "l": 64, + "v_y": 3, + "*e_0": 3, + "vx": 2, + "vy": 2, + "Selection": 1, + "Data": 2, + "transfer": 1, + "GPU": 3, + "x_gpu": 3, + "gpuArray": 4, + "y_gpu": 3, + "vx_gpu": 3, + "vy_gpu": 3, + "Integration": 2, + "N": 9, + "x_f": 3, + "y_f": 3, + "vx_f": 3, + "vy_f": 3, + "arrayfun": 2, + "@RKF45_FILE_gpu": 1, + "back": 1, + "CPU": 1, + "memory": 1, + "cleaning": 1, + "gather": 4, + "Construction": 1, + "computation": 2, + "X_T": 4, + "Y_T": 4, + "VX_T": 4, + "VY_T": 3, + "filter_ftle": 11, + "Compute_FILE_gpu": 1, + "Plot": 1, + "results": 1, + "squeeze": 1, + "clc": 1, "load_bikes": 2, + "e_T": 7, + "Integrate_FILE": 1, + "Integrate": 6, + "Look": 2, + "phisically": 2, + "meaningful": 6, + "meaningless": 2, + "i/nx": 2, + "*Potential": 5, + "ci": 9, + "te": 2, + "ye": 9, + "ie": 2, + "@f": 6, + "Potential": 1, + "delta_e": 3, + "Integrate_FTLE_Gawlick_ell": 1, + "ecc": 2, + "nu": 2, + "ecc*cos": 1, + "@f_ell": 1, + "Consider": 1, + "also": 1, + "negative": 1, + "goodness": 1, + "roots": 3, + "*mu": 6, + "c3": 3, + "lane_change": 1, + "start": 4, + "width": 3, + "slope": 3, + "pathLength": 3, + "single": 1, + "double": 1, + "Double": 1, + "lane": 4, + "change": 1, + "needs": 1, + "lane.": 1, + "laneLength": 4, + "startOfSlope": 3, + "endOfSlope": 1, + "<=>": 1, + "1": 1, + "downSlope": 3, "gains.Benchmark.Slow": 1, "place": 2, "holder": 2, @@ -40040,13 +40406,33 @@ "gains.Yellow.Fast": 1, "gains.Yellowrev.Fast": 1, "gains.": 1, - "clc": 1, - "average": 1, - "n": 102, - "|": 2, - "&": 4, - "sum": 2, - "/length": 1, + "parser": 1, + "inputParser": 1, + "parser.addRequired": 1, + "parser.addParamValue": 3, + "parser.parse": 1, + "args": 1, + "parser.Results": 1, + "raw": 1, + "load": 1, + "args.directory": 1, + "iddata": 1, + "raw.theta": 1, + "raw.theta_c": 1, + "args.sampleTime": 1, + "args.detrend": 1, + "detrend": 1, + "filtfcn": 2, + "statefcn": 2, + "makeFilter": 1, + "v": 12, + "@iirFilter": 1, + "@getState": 1, + "yn": 2, + "iirFilter": 1, + "xn": 4, + "vOut": 2, + "getState": 1, "classdef": 1, "matlab_class": 2, "properties": 1, @@ -40055,7 +40441,6 @@ "methods": 1, "obj": 2, "r": 2, - "g": 5, "obj.R": 2, "obj.G": 2, "obj.B": 2, @@ -40069,10 +40454,67 @@ "yellow": 1, "black": 1, "white": 1, - "gains": 12, + "ret": 3, + "matlab_function": 5, + "Call": 2, + "which": 2, + "resides": 2, + "same": 2, + "directory": 2, + "value1": 4, + "semicolon": 2, + "mandatory": 2, + "suppresses": 2, + "command": 2, + "line.": 2, + "value2": 4, + "d_mean": 3, + "d_std": 3, + "normalize": 1, + "repmat": 2, + "std": 1, + "d./": 1, + "overrideSettings": 3, + "overrideNames": 2, + "defaultNames": 2, + "notGiven": 5, + "setxor": 1, + "settings.": 1, + "defaultSettings.": 1, + "fid": 7, + "fopen": 2, + "textscan": 1, + "fclose": 2, + "strtrim": 2, + "vals": 2, + "regexp": 1, + "par.": 1, + "str2num": 1, + "choose_plant": 4, + "p": 7, + "Conditions": 1, + "@cross_y": 1, + "ode113": 2, + "RK4": 3, + "fun": 5, + "tspan": 7, + "th": 1, + "Runge": 1, + "Kutta": 1, + "dim": 2, + "while": 1, + "h/2": 2, + "k1*h/2": 1, + "k2*h/2": 1, + "h*k3": 1, + "h/6*": 1, + "*k2": 1, + "*k3": 1, + "arg1": 1, + "arg": 2, + "RK4_par": 1, "wnm": 11, "zetanm": 5, - "bicycle": 7, "ss": 3, "data.modelPar.A": 1, "data.modelPar.B": 1, @@ -40081,8 +40523,6 @@ "bicycle.StateName": 2, "bicycle.OutputName": 4, "bicycle.InputName": 2, - "inputs": 14, - "outputs": 10, "analytic": 3, "system_state_space": 2, "numeric": 2, @@ -40110,9 +40550,28 @@ "numeric.C": 1, "numeric.D": 1, "whipple_pull_force_ABCD": 1, - "eye": 9, "bottomRow": 1, "prod": 3, + "Earth": 2, + "Moon": 2, + "C_star": 1, + "C/2": 1, + "orbit": 1, + "Y0": 6, + "y0": 2, + "vx0": 2, + "vy0": 2, + "l0": 1, + "delta_E0": 1, + "Hill": 1, + "Edgecolor": 1, + "none": 1, + "ok": 2, + "sg": 1, + "sr": 1, + "arguments": 7, + "ischar": 1, + "options.": 1, "write_gains": 1, "contents": 1, "importdata": 1, @@ -40123,468 +40582,13 @@ "allGains": 4, "allSpeeds": 4, "sort": 1, - "fid": 7, - "fopen": 2, - "contents.colheaders": 1, - "fprintf": 18, - "fclose": 2, - "load_data": 4, - "t1": 6, - "t2": 6, - "t3": 1, - "dataPlantOne": 3, - "data.Ts": 6, - "dataAdapting": 3, - "dataPlantTwo": 3, - "guessPlantOne": 4, - "resultPlantOne": 1, - "find_structural_gains": 2, - "yh": 2, - "fit": 6, - "compare": 3, - "resultPlantOne.fit": 1, - "guessPlantTwo": 3, - "resultPlantTwo": 1, - "resultPlantTwo.fit": 1, - "kP1": 4, - "resultPlantOne.fit.par": 1, - "kP2": 3, - "resultPlantTwo.fit.par": 1, - "gainSlopeOffset": 6, - "this": 2, - "uses": 1, - "tau": 1, - "through": 1, - "wfs": 1, - "true": 2, - "s": 13, - "plantOneSlopeOffset": 3, - "plantTwoSlopeOffset": 3, - "mod": 3, - "idnlgrey": 1, - "pem": 1, - "guess.plantOne": 3, - "guess.plantTwo": 2, - "plantNum.plantOne": 2, - "plantNum.plantTwo": 2, - "sections": 13, - "secData.": 1, - "||": 3, - "guess.": 2, - "result.": 2, - ".fit.par": 1, - "currentGuess": 2, - "warning": 1, - "randomGuess": 1, - "The": 6, - "self": 2, - "validation": 2, - "VAF": 2, - "is": 7, - "f.": 2, - "data/": 1, - "results.mat": 1, - "guess": 1, - "plantNum": 1, - "result": 5, - "plots/": 1, - ".png": 1, - "task": 1, - "closed": 1, - "loop": 1, - "system": 2, - "u.": 1, - "gain": 1, - "guesses": 1, - "identified": 1, - ".vaf": 1, - "name": 4, - "convert_variable": 1, - "output": 7, - "coordinates": 6, - "get_variables": 2, - "columns": 4, - "tic": 7, - "Choice": 2, - "mass": 2, - "parameter": 2, - "Computation": 9, - "Lagrangian": 3, - "Points": 2, - "initial": 5, - "total": 6, - "energy": 8, - "E_L1": 4, - "Offset": 2, - "as": 4, - "in": 8, - "Initial": 3, - "conditions": 3, - "range": 2, - "x_0_min": 8, - "x_0_max": 8, - "vx_0_min": 8, - "vx_0_max": 8, - "ndgrid": 2, - "*E": 2, - "vx_0.": 2, - "E_cin": 4, - "Transforming": 1, - "into": 1, - "Hamiltonian": 1, - "variables": 2, - "px_0": 2, - "py_0": 2, - "px_T": 4, - "py_T": 4, - "filtro": 15, - "E_T": 11, - "a": 17, - "matrix": 3, - "numbers": 2, - "steps": 2, - "each": 2, - "np": 8, - "number": 2, - "integrated": 5, - "tolerance": 2, - "setting": 4, - "energy_tol": 6, - "inf": 1, - "Jacobian": 3, - "@cr3bp_jac": 1, - "Parallel": 2, - "equations": 2, - "motion": 2, - "Check": 6, - "velocity": 2, - "and": 7, - "positive": 2, - "Kinetic": 2, - "@fH": 1, - "Saving": 4, - "solutions": 2, - "final": 2, - "difference": 2, - "with": 2, - "one": 3, - "EnergyH": 1, - "delta_E": 7, - "conservation": 2, - "position": 2, - "interesting": 4, - "non": 2, - "sense": 2, - "bad": 4, - "t_integrazione": 3, - "toc": 5, - "t_integr": 1, - "Back": 1, - "FTLE": 14, - "dphi": 12, - "ftle": 10, - "Manual": 2, - "visualize": 2, - "Inf": 1, - "*T": 3, - "*log": 2, - "tempo": 4, - "per": 5, - "integrare": 2, - "calcolare": 2, - "var_": 2, - "_": 2, - "var_xvx_": 2, - "ode00": 2, - "_n": 2, - "_e": 1, - "_H": 1, - "save": 2, - "nome": 2, - "lane_change": 1, - "start": 4, - "width": 3, - "slope": 3, - "pathLength": 3, - "single": 1, - "double": 1, - "Double": 1, - "lane": 4, - "change": 1, - "needs": 1, - "lane.": 1, - "laneLength": 4, - "startOfSlope": 3, - "endOfSlope": 1, - "<=>": 1, - "1": 1, - "downSlope": 3, - "varargin_to_structure": 2, - "arguments": 7, - "ischar": 1, - "options.": 1, - "/2": 3, - "roots": 3, - "*mu": 6, - "c3": 3, - "filtfcn": 2, - "statefcn": 2, - "makeFilter": 1, - "v": 12, - "@iirFilter": 1, - "@getState": 1, - "yn": 2, - "iirFilter": 1, - "xn": 4, - "vOut": 2, - "getState": 1, - "Call": 2, - "matlab_function": 5, - "which": 2, - "resides": 2, - "same": 2, - "directory": 2, - "value1": 4, - "semicolon": 2, - "not": 3, - "mandatory": 2, - "suppresses": 2, - "command": 2, - "line.": 2, - "value2": 4, - "choose_plant": 4, - "p": 7, - "ret": 3, - "textscan": 1, - "strtrim": 2, - "vals": 2, - "regexp": 1, - "par.": 1, - "str2num": 1, - "f_x_t": 2, - "inline": 1, - "grid_min": 3, - "grid_max": 3, - "grid_width": 1, - "grid_spacing": 5, - "grid_width/": 1, - "advected_x": 12, - "advected_y": 12, - "store": 4, - "advected": 2, - "positions": 2, - "they": 2, - "would": 2, - "appear": 2, - "coords": 2, - "sigma": 6, - "compute": 2, - "*grid_width/": 4, - "eigenvalue": 2, - "*phi": 2, - "log": 2, - "lambda_max": 2, - "/abs": 3, - "field": 2, - "contourf": 2, - "colorbar": 1, - "Elements": 1, - "grid": 1, - "definition": 2, - "Dimensionless": 1, - "integrating": 1, - "C_L1": 3, - "*E_L1": 1, - "Szebehely": 1, - "Setting": 1, - "RelTol": 2, - "AbsTol": 2, - "From": 1, - "Short": 1, - "S": 5, - "r1": 3, - "r2": 3, - "i/n": 1, - "y_0.": 2, - "./": 1, - "mu./": 1, - "@f_reg": 1, - "filtro_1": 12, - "ftle_norm": 1, - "ds_x": 1, - "ds_vx": 1, - "La": 1, - "direzione": 1, - "dello": 1, - "spostamento": 1, - "la": 2, - "decide": 1, - "il": 1, - "denominatore": 1, - "TODO": 1, - "spiegarsi": 1, - "teoricamente": 1, - "come": 1, - "mai": 1, - "matrice": 1, - "pu": 1, - "essere": 1, - "ridotta": 1, - "x2": 1, - "*ds_x": 2, - "*ds_vx": 2, - "dphi*dphi": 1, - "Integrate_FILE": 1, - "N": 9, - "te": 2, - "ye": 9, - "ie": 2, - "Potential": 1, - "parser": 1, - "inputParser": 1, - "parser.addRequired": 1, - "parser.addParamValue": 3, - "parser.parse": 1, - "args": 1, - "parser.Results": 1, - "raw": 1, - "load": 1, - "args.directory": 1, - "iddata": 1, - "raw.theta": 1, - "raw.theta_c": 1, - "args.sampleTime": 1, - "args.detrend": 1, - "detrend": 1, - "d_mean": 3, - "d_std": 3, - "normalize": 1, - "mean": 2, - "repmat": 2, - "std": 1, - "d./": 1, - "bicycle_state_space": 1, - "dbstack": 1, - "CURRENT_DIRECTORY": 2, - "fileparts": 1, - ".file": 1, - "states": 7, - "defaultSettings.states": 1, - "defaultSettings.inputs": 1, - "defaultSettings.outputs": 1, - "userSettings": 3, - "struct": 1, - "minStates": 2, - "settings.states": 3, - "keepStates": 2, - "removeStates": 1, - "row": 6, - "col": 5, - "removeInputs": 2, - "settings.inputs": 1, - "keepOutputs": 2, - "settings.outputs": 1, - "It": 1, - "possible": 1, - "keep": 1, - "because": 1, - "it": 1, - "depends": 1, - "StateName": 1, - "OutputName": 1, - "InputName": 1, - "z": 3, - "*vx_0": 1, - "pcolor": 2, - "shading": 3, - "flat": 3, - "cross_validation": 1, - "hyper_parameter": 3, - "num_data": 2, - "K": 4, - "indices": 2, - "crossvalind": 1, - "errors": 4, - "test_idx": 4, - "train_idx": 3, - "x_train": 2, - "y_train": 2, - "train": 1, - "x_test": 3, - "y_test": 3, - "calc_cost": 1, - "calc_error": 2, - "x_min": 3, - "x_max": 3, - "y_min": 3, - "y_max": 3, - "how": 1, - "many": 1, - "measure": 1, - "unit": 1, - "both": 1, - "ds": 1, - "x_res": 7, - "*n": 2, - "y_res": 7, - "grid_x": 3, - "grid_y": 3, - "@dg": 1, - "*ds": 4, - "location": 1, - "EastOutside": 1, - "Conditions": 1, - "Integration": 2, - "@cross_y": 1, - "Range": 1, - "E_0": 4, - "C_L1/2": 1, - "Y_0": 4, - "dvx": 3, - "dy": 5, - "de": 4, - "Definition": 1, - "arrays": 1, - "In": 1, - "approach": 1, - "pints": 1, - "are": 1, - "stored": 1, - "v_y": 3, - "vx": 2, - "vy": 2, - "Selection": 1, - "Data": 2, - "transfer": 1, - "GPU": 3, - "x_gpu": 3, - "gpuArray": 4, - "y_gpu": 3, - "vx_gpu": 3, - "vy_gpu": 3, - "x_f": 3, - "y_f": 3, - "vx_f": 3, - "vy_f": 3, - "@RKF45_FILE_gpu": 1, - "back": 1, - "CPU": 1, - "memory": 1, - "cleaning": 1, - "gather": 4, - "Construction": 1, - "computation": 2, - "X_T": 4, - "Y_T": 4, - "VX_T": 4, - "VY_T": 3, - "filter_ftle": 11, - "Compute_FILE_gpu": 1, - "Plot": 1, - "results": 1, - "squeeze": 1 + "contents.colheaders": 1 }, "Max": { + "{": 126, + "}": 126, + "[": 163, + "]": 163, "max": 1, "v2": 1, ";": 39, @@ -40619,11 +40623,7 @@ "Hello": 1, "connect": 13, "fasten": 1, - "pop": 1, - "{": 126, - "}": 126, - "[": 163, - "]": 163 + "pop": 1 }, "MediaWiki": { "Overview": 1, @@ -40906,391 +40906,947 @@ "%": 416, "-": 6967, "module": 46, - "store.": 1, + "ll_backend.code_info.": 1, "interface.": 13, "import_module": 126, + "check_hlds.type_util.": 2, + "hlds.code_model.": 1, + "hlds.hlds_data.": 2, + "hlds.hlds_goal.": 2, + "hlds.hlds_llds.": 1, + "hlds.hlds_module.": 2, + "hlds.hlds_pred.": 2, + "hlds.instmap.": 2, + "libs.globals.": 2, + "ll_backend.continuation_info.": 1, + "ll_backend.global_data.": 1, + "ll_backend.layout.": 1, + "ll_backend.llds.": 1, + "ll_backend.trace_gen.": 1, + "mdbcomp.prim_data.": 3, + "mdbcomp.goal_path.": 2, + "parse_tree.prog_data.": 2, + "parse_tree.set_of_var.": 2, + "assoc_list.": 3, + "bool.": 4, + "counter.": 1, "io.": 8, - "typeclass": 1, - "store": 52, - "(": 3351, - "T": 52, - ")": 3351, - "where": 8, - "[": 203, - "]": 203, - ".": 610, + "list.": 4, + "map.": 3, + "maybe.": 3, + "set.": 4, + "set_tree234.": 1, + "term.": 3, + "implementation.": 12, + "backend_libs.builtin_ops.": 1, + "backend_libs.proc_label.": 1, + "hlds.arg_info.": 1, + "hlds.hlds_desc.": 1, + "hlds.hlds_rtti.": 2, + "libs.options.": 3, + "libs.trace_params.": 1, + "ll_backend.code_util.": 1, + "ll_backend.opt_debug.": 1, + "ll_backend.var_locn.": 1, + "parse_tree.builtin_lib_types.": 2, + "parse_tree.prog_type.": 2, + "parse_tree.mercury_to_mercury.": 1, + "cord.": 1, + "int.": 4, + "pair.": 3, + "require.": 6, + "stack.": 1, + "string.": 7, + "varset.": 2, "type": 57, - "S": 133, - "instance": 4, - "io.state": 3, - "some": 4, + "code_info.": 1, "pred": 255, - "store.init": 2, - "uo": 58, - "is": 246, - "det.": 184, - "generic_mutvar": 15, - "io_mutvar": 1, - "store_mutvar": 1, - "store.new_mutvar": 1, + "code_info_init": 2, + "(": 3351, + "bool": 406, "in": 510, + "globals": 5, + "pred_id": 15, + "proc_id": 12, + "pred_info": 20, + "proc_info": 11, + "abs_follow_vars": 3, + "module_info": 26, + "static_cell_info": 4, + "const_struct_map": 3, + "resume_point_info": 11, "out": 337, - "di": 54, - "det": 21, - "<": 14, - "store.copy_mutvar": 1, - "store.get_mutvar": 1, - "store.set_mutvar": 1, - "<=>": 5, - "new_cyclic_mutvar": 2, - "Func": 4, - "Mutvar": 23, - "Create": 1, - "a": 10, - "new": 25, - "mutable": 3, - "variable": 1, - "whose": 2, - "value": 16, - "initialized": 2, - "with": 5, - "the": 27, - "returned": 1, - "from": 1, - "specified": 1, - "function": 3, - "The": 2, - "argument": 6, - "passed": 2, - "to": 16, - "mutvar": 6, - "itself": 4, - "has": 4, - "not": 7, - "yet": 1, - "been": 1, - "this": 4, - "safe": 2, - "because": 1, - "does": 3, - "get": 2, - "so": 3, - "it": 1, - "can": 1, - "t": 5, - "examine": 1, - "uninitialized": 1, - "This": 2, - "predicate": 1, - "useful": 1, - "for": 8, - "creating": 1, - "self": 1, - "referential": 1, - "values": 1, - "such": 2, - "as": 5, - "circular": 1, - "linked": 1, - "lists": 1, - "For": 1, - "example": 1, - "clist": 2, - "node": 1, - "store.new_cyclic_mutvar": 1, - "func": 24, - "generic_ref": 20, - "io_ref": 1, - "store_ref": 1, - "store.new_ref": 1, - "store.ref_functor": 1, + "trace_slot_info": 3, + "maybe": 20, + "containing_goal_map": 4, + ")": 3351, + "list": 82, "string": 115, "int": 129, - "store.arg_ref": 1, - "ArgT": 4, - "store.new_arg_ref": 3, - "store.set_ref": 1, - "store.set_ref_value": 1, - "store.copy_ref_value": 1, - "store.extract_ref_value": 1, - "Nasty": 1, - "performance": 2, - "hacks": 1, - "WARNING": 1, - "use": 1, - "of": 10, - "these": 1, - "procedures": 2, - "dangerous": 1, - "Use": 1, - "them": 1, - "only": 4, - "last": 1, - "resort": 1, - "if": 15, - "critical": 1, - "and": 6, - "profiling": 5, - "shows": 1, - "that": 2, - "using": 1, - "versions": 1, - "bottleneck": 1, - "These": 1, - "may": 1, - "vanish": 1, - "future": 1, - "version": 3, - "Mercury": 1, - "unsafe_arg_ref": 1, - "same": 2, - "arg_ref": 12, - "unsafe_new_arg_ref": 1, - "new_arg_ref": 1, - "except": 1, - "they": 4, - "doesn": 1, - "check": 1, - "errors": 1, - "don": 3, - "work": 3, - "no_tag": 1, - "types": 3, - "exactly": 2, - "one": 2, - "functor": 2, - "which": 2, - "arguments": 2, - "occupy": 1, - "word": 2, - "other": 1, - "functors.": 1, - "store.unsafe_arg_ref": 1, - "store.unsafe_new_arg_ref": 1, - "implementation": 1, - "deconstruct": 2, - "require": 1, - "io": 6, - "state": 3, - "just": 1, - "dummy": 2, - "no": 365, - "real": 1, - "representation": 1, - "pragma": 41, - "foreign_type": 10, - "C": 34, - "MR_Word": 24, - "can_pass_as_mercury_type": 5, - "equality": 5, - "store_equal": 7, - "comparison": 5, - "store_compare": 7, - "IL": 2, - "int32": 1, - "Java": 12, - "Erlang": 3, - "semidet": 2, - "_": 149, - "error": 7, - "attempt": 2, - "unify": 21, - "two": 2, - "stores": 2, - "comparison_result": 1, - "compare": 1, - "Mutvars": 1, - "references": 1, - "are": 1, - "each": 1, - "represented": 1, - "pointer": 1, - "single": 1, - "on": 1, - "heap": 1, - "private_builtin.ref": 2, - "ref": 2, - "store.do_init": 6, - "foreign_proc": 28, - "_S0": 16, - "will_not_call_mercury": 28, - "promise_pure": 30, - "will_not_modify_trail": 7, - "new_mutvar": 5, - "Val": 45, - "S0": 23, - "get_mutvar": 5, - "set_mutvar": 5, - "_S": 12, - "copy_mutvar": 1, - "Copy": 2, - "Value": 4, - "store.unsafe_new_uninitialized_mutvar": 1, - "unsafe_new_uninitialized_mutvar": 4, - "MR_offset_incr_hp_msg": 5, - "MR_SIZE_SLOT_SIZE": 10, - "1": 5, - "MR_ALLOC_ID": 5, - "2": 2, - "MR_define_size_slot": 5, - "0": 2, - "object": 21, - "MutVar": 4, - "Store": 5, - "apply": 1, - "Ref": 41, - "foreign_code": 2, - "public": 17, - "class": 4, - "Object": 9, - "referenced": 4, - "obj": 7, - "Specific": 2, - "field": 20, - "or": 2, - "null": 8, - "specify": 2, - "XXX": 3, - "GetFields": 2, - "return": 6, - "fields": 3, - "any": 2, - "particular": 2, - "order": 2, - "really": 2, - "usable": 2, - "System": 1, - "Reflection": 1, - "FieldInfo": 1, - "Constructors": 2, - "init": 8, - "num": 11, - "setField": 4, - "Set": 2, - "according": 2, - "given": 2, - "index": 2, - "void": 4, - "GetType": 1, - "Return": 6, - "reference": 4, - "getValue": 4, - "else": 8, - "GetValue": 1, - "Update": 2, - "setValue": 2, - "SetValue": 1, - "java": 35, - "static": 1, - "lang": 28, - "getDeclaredFields": 2, - "reflect": 1, - "Field": 5, - "try": 3, - "getClass": 1, - "catch": 11, - "SecurityException": 1, - "se": 1, - "throw": 11, - "RuntimeException": 11, - "Security": 1, - "manager": 1, - "denied": 1, - "access": 3, - "ArrayIndexOutOfBoundsException": 1, - "e": 13, - "No": 1, - "Exception": 3, - "Unable": 3, + "code_info": 208, + "is": 246, + "det.": 184, + "get_globals": 5, + "get_exprn_opts": 2, + "exprn_opts": 3, + "get_module_info": 7, + "get_pred_id": 6, + "get_proc_id": 5, + "get_pred_info": 2, + "get_proc_info": 4, + "get_varset": 3, + "prog_varset": 14, + "func": 24, + "get_var_types": 3, + "vartypes.": 1, + "get_maybe_trace_info": 2, + "trace_info": 3, + "get_emit_trail_ops": 2, + "add_trail_ops": 5, + "get_emit_region_ops": 2, + "add_region_ops": 6, + "get_forward_live_vars": 2, + "set_of_progvar": 10, + "set_forward_live_vars": 2, + "get_instmap": 4, + "instmap": 3, + "set_instmap": 3, + "get_par_conj_depth": 2, + "set_par_conj_depth": 2, + "get_label_counter": 3, + "counter": 6, + "get_succip_used": 2, + "get_layout_info": 4, + "proc_label_layout_info": 3, + "get_proc_trace_events": 2, + "set_proc_trace_events": 2, + "get_closure_layouts": 3, + "closure_proc_id_data": 4, + "get_max_reg_in_use_at_trace": 2, + "set_max_reg_in_use_at_trace": 2, + "get_created_temp_frame": 2, + "get_static_cell_info": 5, + "set_static_cell_info": 5, + "get_alloc_sites": 3, + "set_tree234": 3, + "alloc_site_info": 4, + "set_alloc_sites": 3, + "get_used_env_vars": 2, "set": 16, - "getMessage": 3, - "IllegalAccessException": 2, - "inaccessible": 2, - "IllegalArgumentException": 2, - "mismatch": 2, - "NullPointerException": 2, - "new_ref": 4, - "ets": 3, - "insert": 1, - "copy_ref_value": 1, - "unsafe_ref_value": 6, - "store.unsafe_ref_value": 1, - "lookup": 1, - "ref_functor": 1, - "Functor": 6, - "Arity": 5, - "canonicalize": 1, - "foreign_decl": 1, - "include": 4, - "mercury_type_info": 1, - "h": 4, - "mercury_heap": 1, - "mercury_misc": 1, - "MR_fatal_error": 5, - "mercury_deconstruct": 1, - "MR_arg": 3, - "ArgNum": 7, - "ArgRef": 22, - "may_not_duplicate": 1, - "MR_TypeInfo": 10, - "type_info": 8, - "arg_type_info": 6, - "exp_arg_type_info": 6, - "const": 10, - "MR_DuArgLocn": 2, - "arg_locn": 9, - "TypeInfo_for_T": 2, - "TypeInfo_for_ArgT": 2, - "MR_save_transient_registers": 2, - "MR_NONCANON_ABORT": 2, - "number": 2, - "range": 2, - "MR_compare_type_info": 2, - "MR_COMPARE_EQUAL": 2, - "wrong": 2, - "MR_restore_transient_registers": 2, - "NULL": 2, - "MR_arg_bits": 2, - "{": 27, - "+": 127, - "store.ref/2": 3, + "set_used_env_vars": 2, + "get_opt_trail_ops": 2, + "get_opt_region_ops": 2, + "get_auto_comments": 2, + "get_lcmc_null": 2, + "get_containing_goal_map": 3, + "get_containing_goal_map_det": 2, + "get_const_struct_map": 2, + "add_out_of_line_code": 2, + "llds_code": 21, + "get_out_of_line_code": 2, + "get_var_slot_count": 2, + "set_maybe_trace_info": 3, + "get_opt_no_return_calls": 2, + "get_zombies": 2, + "set_zombies": 2, + "get_var_locn_info": 7, + "var_locn_info": 3, + "set_var_locn_info": 4, + "get_temps_in_use": 6, + "lval": 114, + "set_temps_in_use": 4, + "get_fail_info": 13, + "fail_info": 24, + "set_fail_info": 9, + "set_label_counter": 3, + "set_succip_used": 3, + "set_layout_info": 4, + "get_max_temp_slot_count": 2, + "set_max_temp_slot_count": 2, + "get_temp_content_map": 3, + "map": 7, + "slot_contents": 4, + "set_temp_content_map": 2, + "get_persistent_temps": 3, + "set_persistent_temps": 2, + "set_closure_layouts": 3, + "get_closure_seq_counter": 3, + "set_closure_seq_counter": 3, + "set_created_temp_frame": 2, + "code_info_static": 26, + "code_info_loc_dep": 22, + "code_info_persistent": 44, + ".": 610, + "cis_globals": 2, + "cis_exprn_opts": 2, + "cis_module_info": 2, + "cis_pred_id": 2, + "cis_proc_id": 2, + "cis_pred_info": 2, + "cis_proc_info": 2, + "cis_proc_label": 1, + "proc_label": 2, + "cis_varset": 2, + "cis_var_slot_count": 2, + "cis_maybe_trace_info": 3, + "cis_opt_no_resume_calls": 2, + "cis_emit_trail_ops": 2, + "cis_opt_trail_ops": 2, + "cis_emit_region_ops": 2, + "cis_opt_region_ops": 2, + "cis_auto_comments": 2, + "cis_lcmc_null": 2, + "cis_containing_goal_map": 2, + "cis_const_struct_map": 2, + "cild_forward_live_vars": 3, + "cild_instmap": 3, + "cild_zombies": 3, + "cild_var_locn_info": 3, + "cild_temps_in_use": 3, + "cild_fail_info": 3, + "cild_par_conj_depth": 3, + "cip_label_num_src": 3, + "cip_store_succip": 3, + "cip_label_info": 3, + "cip_proc_trace_events": 3, + "cip_stackslot_max": 3, + "cip_temp_contents": 3, + "cip_persistent_temps": 3, + "cip_closure_layout_seq": 3, + "cip_closure_layouts": 3, + "cip_max_reg_r_used": 3, + "cip_max_reg_f_used": 2, + "cip_created_temp_frame": 3, + "cip_static_cell_info": 3, + "cip_alloc_sites": 3, + "cip_used_env_vars": 3, + "cip_ts_string_table_size": 3, + "cip_ts_rev_string_table": 4, + "cip_out_of_line_code": 4, + "SaveSuccip": 2, + "Globals": 32, + "PredId": 50, + "ProcId": 31, + "PredInfo": 64, + "ProcInfo": 43, + "FollowVars": 6, + "ModuleInfo": 49, + "StaticCellInfo": 8, + "ConstStructMap": 2, + "ResumePoint": 13, + "TraceSlotInfo": 5, + "MaybeContainingGoalMap": 5, + "TSRevStringTable": 2, + "TSStringTableSize": 2, + "CodeInfo": 2, + "ProcLabel": 8, + "make_proc_label": 1, + "proc_info_get_initial_instmap": 1, + "InstMap": 6, + "proc_info_get_liveness_info": 1, + "Liveness": 4, + "CodeModel": 8, + "proc_info_interface_code_model": 2, + "build_input_arg_list": 1, + "ArgList": 2, + "proc_info_get_varset": 1, + "VarSet": 15, + "proc_info_get_vartypes": 2, + "VarTypes": 22, + "proc_info_get_stack_slots": 1, + "StackSlots": 5, + "ExprnOpts": 4, + "init_exprn_opts": 3, + "globals.lookup_bool_option": 18, + "use_float_registers": 5, + "UseFloatRegs": 6, + "yes": 144, + "FloatRegType": 3, + "reg_f": 1, ";": 913, - "*": 20, - "MR_arg_value": 2, - "}": 28, - "C#": 6, - "store.Ref": 8, - "Ref.getValue": 6, - "*arg_ref": 1, - "*arg_locn": 1, - "&": 7, - "&&": 1, - "ValRef": 1, - "Ref.setValue": 3, - "ValRef.getValue": 2, - "*Ptr": 2, - "Ptr": 4, - "MR_strip_tag": 2, - "Arg": 6, + "no": 365, + "reg_r": 2, + "globals.get_trace_level": 1, + "TraceLevel": 5, + "eff_trace_level_is_none": 2, + "trace_fail_vars": 1, + "FailVars": 3, + "MaybeFailVars": 3, + "set_of_var.union": 3, + "EffLiveness": 3, + "init_var_locn_state": 1, + "VarLocnInfo": 12, + "stack.init": 1, + "ResumePoints": 14, + "allow_hijacks": 3, + "AllowHijack": 3, + "Hijack": 6, + "allowed": 6, + "not_allowed": 5, + "DummyFailInfo": 2, + "resume_point_unknown": 9, + "may_be_different": 7, + "not_inside_non_condition": 2, + "map.init": 7, + "TempContentMap": 4, + "set.init": 7, + "PersistentTemps": 4, + "TempsInUse": 8, + "Zombies": 2, + "set_of_var.init": 1, + "LayoutMap": 2, + "max_var_slot": 1, + "VarSlotMax": 2, + "trace_reserved_slots": 1, + "FixedSlots": 2, + "_": 149, + "int.max": 1, + "SlotMax": 2, + "opt_no_return_calls": 3, + "OptNoReturnCalls": 2, + "use_trail": 3, + "UseTrail": 2, + "disable_trail_ops": 3, + "DisableTrailOps": 2, + "EmitTrailOps": 3, + "do_not_add_trail_ops": 1, + "optimize_trail_usage": 3, + "OptTrailOps": 2, + "optimize_region_ops": 3, + "OptRegionOps": 2, + "region_analysis": 3, + "UseRegions": 3, + "EmitRegionOps": 3, + "do_not_add_region_ops": 1, + "auto_comments": 4, + "AutoComments": 2, + "optimize_constructor_last_call_null": 3, + "LCMCNull": 2, + "CodeInfo0": 2, + "init_fail_info": 2, + "will": 1, + "override": 1, + "this": 4, + "dummy": 2, + "value": 16, + "nested": 1, + "parallel": 3, + "conjunction": 1, + "depth": 1, + "counter.init": 2, + "[": 203, + "]": 203, + "set_tree234.init": 1, + "cord.empty": 1, + "init_maybe_trace_info": 3, + "CodeInfo1": 2, + "exprn_opts.": 1, + "gcc_non_local_gotos": 3, + "OptNLG": 3, + "NLG": 3, + "have_non_local_gotos": 1, + "do_not_have_non_local_gotos": 1, + "asm_labels": 3, + "OptASM": 3, + "ASM": 3, + "have_asm_labels": 1, + "do_not_have_asm_labels": 1, + "static_ground_cells": 3, + "OptSGCell": 3, + "SGCell": 3, + "have_static_ground_cells": 1, + "do_not_have_static_ground_cells": 1, + "unboxed_float": 3, + "OptUBF": 3, + "UBF": 3, + "have_unboxed_floats": 1, + "do_not_have_unboxed_floats": 1, + "OptFloatRegs": 3, + "do_not_use_float_registers": 1, + "static_ground_floats": 3, + "OptSGFloat": 3, + "SGFloat": 3, + "have_static_ground_floats": 1, + "do_not_have_static_ground_floats": 1, + "static_code_addresses": 3, + "OptStaticCodeAddr": 3, + "StaticCodeAddrs": 3, + "have_static_code_addresses": 1, + "do_not_have_static_code_addresses": 1, + "trace_level": 4, + "CI": 294, + "proc_info_get_has_tail_call_events": 1, + "HasTailCallEvents": 3, + "tail_call_events": 1, + "get_next_label": 5, + "TailRecLabel": 2, + "MaybeTailRecLabel": 3, + "no_tail_call_events": 1, + "trace_setup": 1, + "TraceInfo": 2, + "MaxRegR": 4, + "MaxRegF": 4, + "cip_max_reg_f_used.": 1, + "TI": 4, + "LV": 2, + "IM": 2, + "Zs": 2, + "EI": 2, + "FI": 2, + "N": 6, + "LC": 2, + "SU": 2, + "LI": 2, + "PTE": 2, + "TM": 2, + "CM": 2, + "PT": 2, + "CLS": 2, + "CG": 2, + "MR": 4, + "MF": 1, + "MF.": 1, + "SCI": 2, + "ASI": 2, + "UEV": 2, + "ContainingGoalMap": 2, + "unexpected": 21, + "NewCode": 2, + "Code0": 2, + ".CI": 29, + "Code": 36, + "+": 127, + "Code.": 1, + "get_stack_slots": 2, + "stack_slots": 1, + "get_follow_var_map": 2, + "abs_follow_vars_map": 1, + "get_next_non_reserved": 2, + "reg_type": 1, + "set_follow_vars": 4, + "pre_goal_update": 3, + "hlds_goal_info": 22, + "has_subgoals": 2, + "post_goal_update": 3, + "body_typeinfo_liveness": 4, + "variable_type": 3, + "prog_var": 58, + "mer_type.": 1, + "variable_is_of_dummy_type": 2, + "is_dummy_type.": 1, + "search_type_defn": 4, + "mer_type": 21, + "hlds_type_defn": 1, + "semidet.": 10, + "lookup_type_defn": 2, + "hlds_type_defn.": 1, + "lookup_cheaper_tag_test": 2, + "maybe_cheaper_tag_test.": 1, + "filter_region_vars": 2, + "set_of_progvar.": 2, + "get_proc_model": 2, + "code_model.": 1, + "get_headvars": 2, + "get_arginfo": 2, + "arg_info": 2, + "get_pred_proc_arginfo": 3, + "current_resume_point_vars": 2, + "variable_name": 2, + "make_proc_entry_label": 2, + "code_addr.": 1, + "label": 5, + "succip_is_used": 2, + "add_trace_layout_for_label": 2, + "term.context": 3, + "trace_port": 1, + "forward_goal_path": 1, + "user_event_info": 1, + "layout_label_info": 2, + "get_cur_proc_label": 4, + "get_next_closure_seq_no": 2, + "add_closure_layout": 2, + "add_threadscope_string": 2, + "get_threadscope_rev_string_table": 2, + "add_scalar_static_cell": 2, + "typed_rval": 1, + "data_id": 3, + "add_scalar_static_cell_natural_types": 2, + "rval": 3, + "add_vector_static_cell": 2, + "llds_type": 1, + "add_alloc_site_info": 2, + "prog_context": 1, + "alloc_site_id": 2, + "add_resume_layout_for_label": 2, + "var_locn_get_stack_slots": 1, + "FollowVarMap": 2, + "var_locn_get_follow_var_map": 1, + "RegType": 2, + "NextNonReserved": 2, + "var_locn_get_next_non_reserved": 1, + "VarLocnInfo0": 4, + "var_locn_set_follow_vars": 1, + "GoalInfo": 44, + "HasSubGoals": 3, + "goal_info_get_resume_point": 1, + "no_resume_point": 1, + "resume_point": 1, + "goal_info_get_follow_vars": 1, + "MaybeFollowVars": 3, + "goal_info_get_pre_deaths": 1, + "PreDeaths": 3, + "rem_forward_live_vars": 3, + "maybe_make_vars_forward_dead": 2, + "goal_info_get_pre_births": 1, + "PreBirths": 2, + "add_forward_live_vars": 2, + "does_not_have_subgoals": 2, + "goal_info_get_post_deaths": 2, + "PostDeaths": 5, + "goal_info_get_post_births": 1, + "PostBirths": 3, + "make_vars_forward_live": 1, + "InstMapDelta": 2, + "goal_info_get_instmap_delta": 1, + "InstMap0": 2, + "instmap.apply_instmap_delta": 1, + "TypeInfoLiveness": 2, + "module_info_pred_info": 6, + "body_should_use_typeinfo_liveness": 1, + "Var": 13, + "Type": 18, + "lookup_var_type": 3, + "IsDummy": 2, + "VarType": 2, + "check_dummy_type": 1, + "TypeDefn": 6, + "type_to_ctor_det": 1, + "TypeCtor": 2, + "module_info_get_type_table": 1, + "TypeTable": 2, + "search_type_ctor_defn": 1, + "TypeDefnPrime": 2, + "CheaperTagTest": 3, + "get_type_defn_body": 1, + "TypeBody": 2, + "hlds_du_type": 1, + "CheaperTagTestPrime": 2, + "no_cheaper_tag_test": 1, + "ForwardLiveVarsBeforeGoal": 6, + "RegionVars": 2, + "code_info.get_var_types": 1, + "set_of_var.filter": 1, + "is_region_var": 1, + "HeadVars": 20, + "module_info_pred_proc_info": 4, + "proc_info_get_headvars": 2, + "ArgInfo": 4, + "proc_info_arg_info": 1, + "ResumeVars": 4, + "FailInfo": 19, + "ResumePointStack": 2, + "stack.det_top": 5, + "ResumePointInfo": 2, + "pick_first_resume_point": 1, + "ResumeMap": 8, + "map.keys": 3, + "ResumeMapVarList": 2, + "set_of_var.list_to_set": 3, + "Name": 4, + "Varset": 2, + "varset.lookup_name": 2, + "Immed0": 3, + "CodeAddr": 2, + "Immed": 3, + "globals.lookup_int_option": 1, + "procs_per_c_function": 3, + "ProcsPerFunc": 2, + "CurPredId": 2, + "CurProcId": 2, + "proc": 2, + "make_entry_label": 1, + "Label": 8, + "C0": 4, + "counter.allocate": 2, + "C": 34, + "internal_label": 3, + "Context": 20, + "Port": 2, + "IsHidden": 2, + "GoalPath": 2, + "MaybeSolverEventInfo": 2, + "Layout": 2, + "Internals0": 8, + "Exec": 5, + "trace_port_layout_info": 1, + "LabelNum": 8, + "entry_label": 2, + "map.search": 2, + "Internal0": 4, + "internal_layout_info": 6, + "Exec0": 3, + "Resume": 5, + "Return": 6, + "Internal": 8, + "map.det_update": 4, + "Internals": 6, + "map.det_insert": 3, + "LayoutInfo": 2, + "Resume0": 3, + "get_active_temps_data": 2, + "assoc_list": 1, + "Temps": 2, + "map.select": 1, + "TempsInUseContentMap": 2, + "map.to_assoc_list": 3, + "cis_proc_label.": 1, + "SeqNo": 2, + "ClosureLayout": 2, + "ClosureLayouts": 2, + "|": 38, + "String": 2, + "SlotNum": 2, + "Size0": 3, + "RevTable0": 2, + "Size": 4, + "RevTable": 3, + "RevTable.": 1, + "TableSize": 2, + "cip_ts_string_table_size.": 1, + "RvalsTypes": 2, + "DataAddr": 6, + "StaticCellInfo0": 6, + "global_data.add_scalar_static_cell": 1, + "Rvals": 2, + "global_data.add_scalar_static_cell_natural_types": 1, + "Types": 6, + "Vector": 2, + "global_data.add_vector_static_cell": 1, + "AllocId": 2, + "AllocSite": 3, + "AllocSites0": 2, + "set_tree234.insert": 1, + "AllocSites": 2, + "position_info.": 1, + "branch_end_info.": 1, + "branch_end": 4, + "branch_end_info": 7, + "remember_position": 3, + "position_info": 14, + "reset_to_position": 4, + "reset_resume_known": 2, + "generate_branch_end": 2, + "abs_store_map": 3, + "after_all_branches": 2, + "save_hp_in_branch": 2, + "pos_get_fail_info": 3, + "fail_info.": 2, + "LocDep": 6, + "cild_fail_info.": 1, + "CurCI": 2, + "NextCI": 2, + "Static": 2, + "Persistent": 2, + "NextCI0": 4, + "TempsInUse0": 4, + "set.union": 2, + "BranchStart": 2, + "BranchStartFailInfo": 2, + "BSResumeKnown": 2, + "CurFailInfo": 2, + "CurFailStack": 2, + "CurCurfMaxfr": 2, + "CurCondEnv": 2, + "CurHijack": 2, + "NewFailInfo": 2, + "StoreMap": 8, + "MaybeEnd0": 3, + "MaybeEnd": 6, + "AbsVarLocs": 3, + "assoc_list.values": 1, + "AbsLocs": 2, + "code_util.max_mentioned_abs_regs": 1, + "instmap_is_reachable": 1, + "VarLocs": 2, + "assoc_list.map_values_only": 2, + "abs_locn_to_lval": 2, + "place_vars": 1, + "remake_with_store_map": 4, + "empty": 9, + "EndCodeInfo1": 5, + "EndCodeInfo0": 3, + "FailInfo0": 13, + "FailInfo1": 2, + "ResumeKnown0": 5, + "CurfrMaxfr0": 2, + "CondEnv0": 3, + "Hijack0": 2, + "R": 2, + "ResumeKnown1": 2, + "CurfrMaxfr1": 2, + "CondEnv1": 2, + "Hijack1": 2, + "resume_point_known": 15, + "Redoip0": 3, + "Redoip1": 2, + "ResumeKnown": 21, + "expect": 15, + "unify": 21, + "must_be_equal": 11, + "CurfrMaxfr": 24, + "EndCodeInfoA": 2, + "TempsInUse1": 2, + "EndCodeInfo": 2, + "BranchEnd": 2, + "BranchEndCodeInfo": 2, + "BranchEndLocDep": 2, + "VarLocns": 2, + "VarLvals": 2, + "reinit_var_locn_state": 1, + "Slot": 2, + "Pos0": 2, + "Pos": 2, + "CI0": 2, + "CIStatic0": 2, + "CILocDep0": 2, + "CIPersistent0": 2, + "LocDep0": 2, + "CI1": 2, + "save_hp": 1, + "CI2": 2, + "CIStatic": 2, + "CIPersistent": 2, + "resume_map.": 1, + "resume_point_info.": 1, + "disj_hijack_info.": 1, + "prepare_for_disj_hijack": 2, + "code_model": 3, + "disj_hijack_info": 3, + "undo_disj_hijack": 2, + "ite_hijack_info.": 1, + "prepare_for_ite_hijack": 2, + "embedded_stack_frame_id": 3, + "ite_hijack_info": 3, + "ite_enter_then": 2, + "simple_neg_info.": 1, + "enter_simple_neg": 2, + "simple_neg_info": 3, + "leave_simple_neg": 2, + "det_commit_info.": 1, + "prepare_for_det_commit": 2, + "det_commit_info": 6, + "generate_det_commit": 2, + "semi_commit_info.": 1, + "prepare_for_semi_commit": 2, + "semi_commit_info": 6, + "generate_semi_commit": 2, + "effect_resume_point": 2, + "pop_resume_point": 1, + "top_resume_point": 1, + "set_resume_point_to_unknown": 1, + "set_resume_point_and_frame_to_unknown": 1, + "generate_failure": 2, + "fail_if_rval_is_false": 1, + "failure_is_direct_branch": 1, + "code_addr": 8, + "may_use_nondet_tailcall": 1, + "nondet_tail_call": 1, + "produce_vars": 1, + "resume_map": 9, + "flush_resume_vars_to_stack": 1, + "make_resume_point": 1, + "resume_locs": 1, + "generate_resume_point": 2, + "resume_point_vars": 1, + "resume_point_stack_addr": 2, + "stack": 1, + "curfr_vs_maxfr": 2, + "condition_env": 3, + "hijack_allowed": 2, + "orig_only": 2, + "stack_only": 2, + "orig_and_stack": 1, + "stack_and_orig": 1, + "redoip_update": 2, + "has_been_done": 5, + "wont_be_done.": 1, + "resume_point_unknown.": 1, + "may_be_different.": 1, + "inside_non_condition": 6, + "not_inside_non_condition.": 1, + "not_allowed.": 1, + "disj_no_hijack": 4, + "disj_temp_frame": 4, + "disj_quarter_hijack": 4, + "disj_half_hijack": 3, + "disj_full_hijack": 3, + "HijackInfo": 29, + "CondEnv": 12, + "Allow": 12, + "model_det": 2, + "model_semi": 3, + "singleton": 28, + "llds_instr": 64, + "comment": 5, + "model_non": 2, + "create_temp_frame": 4, + "do_fail": 6, + "stack.pop": 1, + "TopResumePoint": 6, + "RestResumePoints": 2, + "stack.is_empty": 1, + "wont_be_done": 2, + "acquire_temp_slot": 15, + "slot_lval": 14, + "redoip_slot": 30, + "curfr": 18, + "non_persistent_temp_slot": 15, + "RedoipSlot": 33, + "assign": 46, + "maxfr": 42, + "redofr_slot": 14, + "RedofrSlot": 17, + "from_list": 13, + "prevfr_slot": 3, + "pick_stack_resume_point": 3, + "StackLabel": 9, + "LabelConst": 4, + "const": 10, + "llconst_code_addr": 6, + "true": 3, + "ite_region_info": 5, + "ite_info": 3, + "ite_hijack_type": 2, + "ite_no_hijack": 3, + "ite_temp_frame": 3, + "ite_quarter_hijack": 3, + "ite_half_hijack": 3, + "ite_full_hijack": 3, + "CondCodeModel": 4, + "MaybeEmbeddedFrameId": 5, + "HijackType": 12, + "MaybeRegionInfo": 12, + "MaxfrSlot": 30, + "TempFrameCode": 4, + "MaxfrCode": 7, + "EmbeddedFrameId": 2, + "slot_success_record": 1, + "persistent_temp_slot": 1, + "SuccessRecordSlot": 6, + "InitSuccessCode": 3, + "llconst_false": 1, + "ITEResumePoint": 2, + "ThenCode": 10, + "ElseCode": 7, + "ResumePoints0": 5, + "stack.det_pop": 1, + "HijackResumeKnown": 2, + "OldCondEnv": 2, + "RegionInfo": 2, + "EmbeddedStackFrameId": 2, + "ITEStackResumeCodeAddr": 2, + "llconst_true": 1, + "AfterRegionOp": 3, + "if_val": 1, + "unop": 1, + "logical_not": 1, + "code_label": 2, + "use_and_maybe_pop_region_frame": 1, + "region_ite_nondet_cond_fail": 1, + "goto": 2, + "maybe_pick_stack_resume_point": 1, + "ResumeMap0": 2, + "make_fake_resume_map": 5, + "do_redo": 1, + "is_empty": 1, + "Vars": 10, + "Locns": 2, + "set.make_singleton_set": 1, + "reg": 1, + "pair": 7, + "region_commit_stack_frame": 5, + "AddTrailOps": 4, + "AddRegionOps": 5, + "CommitGoalInfo": 4, + "DetCommitInfo": 4, + "SaveMaxfrCode": 3, + "save_maxfr": 3, + "MaybeMaxfrSlot": 6, + "maybe_save_trail_info": 2, + "MaybeTrailSlots": 8, + "SaveTrailCode": 4, + "maybe_save_region_commit_frame": 4, + "MaybeRegionCommitFrameInfo": 8, + "SaveRegionCommitFrameCode": 2, + "SaveRegionCommitFrameCode.": 2, + "RestoreMaxfrCode": 3, + "restore_maxfr": 3, + "release_temp_slot": 1, + "maybe_restore_trail_info": 2, + "CommitTrailCode": 4, + "maybe_restore_region_commit_frame": 2, + "SuccessRegionCode": 3, + "_FailureRegionCode": 1, + "SuccessRegionCode.": 1, + "commit_hijack_info": 2, + "commit_temp_frame": 3, + "commit_quarter_hijack": 3, + "commit_half_hijack": 3, + "commit_full_hijack": 3, + "SemiCommitInfo": 4, + "clone_resume_point": 1, + "NewResumePoint": 4, + "stack.push": 1, + "StackLabelConst": 7, + "use_minimal_model_stack_copy_cut": 3, + "UseMinimalModelStackCopyCut": 4, + "Components": 4, + "foreign_proc_raw_code": 4, + "cannot_branch_away": 4, + "proc_affects_liveness": 2, + "live_lvals_info": 4, + "proc_does_not_affect_liveness": 2, + "MD": 4, + "proc_may_duplicate": 2, + "MarkCode": 3, + "foreign_proc_code": 2, + "proc_will_not_call_mercury": 2, + "HijackCode": 5, + "UseMinimalModel": 3, + "CutCode": 4, + "SuccessUndoCode": 5, + "FailureUndoCode": 5, + "AfterCommit": 2, + "ResumePointCode": 2, + "FailCode": 2, + "RestoreTrailCode": 2, + "FailureRegionCode": 2, + "SuccLabel": 3, + "GotoSuccLabel": 2, + "SuccLabelCode": 1, + "SuccessCode": 2, + "FailureCode": 2, + "SuccLabelCode.": 1, + "_ForwardLiveVarsBeforeGoal": 1, "expr.": 1, "char": 10, - "list.": 4, "token": 5, + "num": 11, "eof": 6, "parse": 1, "exprn/1": 1, "xx": 1, "scan": 16, - "list": 82, "mode": 8, - "implementation.": 12, - "require.": 6, "rule": 3, "exprn": 7, "Num": 18, "A": 14, "term": 10, "B": 8, + "{": 27, + "}": 28, + "*": 20, "factor": 6, "/": 1, "//": 2, @@ -41298,7 +41854,6 @@ "Toks": 13, "Toks0": 11, "list__reverse": 1, - "|": 38, "Cs": 9, "char__is_whitespace": 1, "char__is_digit": 2, @@ -41308,13 +41863,18 @@ "string__from_char_list": 1, "NumStr": 2, "string__det_to_int": 1, - "libs.options.": 3, + "error": 7, + "hello.": 1, + "main": 15, + "io": 6, + "di": 54, + "uo": 58, + "IO": 4, + "io.write_string": 1, "char.": 1, "getopt_io.": 1, - "set.": 4, "short_option": 36, "option": 9, - "semidet.": 10, "long_option": 241, "option_defaults": 2, "option_data": 2, @@ -41329,7 +41889,6 @@ "option_table.": 2, "option_table_add_search_library_files_directory": 1, "quote_arg": 1, - "string.": 7, "inhibit_warnings": 4, "inhibit_accumulator_warnings": 3, "halt_at_warn": 3, @@ -41409,6 +41968,7 @@ "deduction/deforestation": 1, "debug_il_asm": 3, "il_asm": 1, + "IL": 2, "generation": 1, "via": 1, "asm": 1, @@ -41455,7 +42015,6 @@ "generate_item_version_numbers": 2, "generate_mmc_make_module_dependencies": 4, "assume_gmake": 3, - "trace_level": 4, "trace_optimized": 4, "trace_prof": 3, "trace_table_io": 3, @@ -41474,7 +42033,6 @@ "force_disable_ssdebug": 3, "generate_bytecode": 3, "line_numbers": 4, - "auto_comments": 4, "frameopt_comments": 3, "max_error_line_width": 3, "show_dependency_graph": 3, @@ -41515,6 +42073,7 @@ "il_only": 4, "compile_to_c": 4, "c": 1, + "java": 35, "java_only": 4, "csharp": 6, "csharp_only": 4, @@ -41524,6 +42083,7 @@ "erlang_only": 4, "exec_trace": 3, "decl_debug": 3, + "profiling": 5, "profile_time": 5, "profile_calls": 6, "time_profiling": 3, @@ -41552,9 +42112,7 @@ "record_term_sizes_as_cells": 2, "experimental_complexity": 2, "gc": 2, - "parallel": 3, "threadscope": 2, - "use_trail": 3, "trail_segments": 2, "use_minimal_model_stack_copy": 2, "use_minimal_model_own_stacks": 2, @@ -41578,16 +42136,12 @@ "bits_per_word": 2, "bytes_per_word": 2, "conf_low_tag_bits": 2, - "unboxed_float": 3, "unboxed_enums": 2, "unboxed_no_tag_types": 2, "sync_term_size": 2, "words": 1, - "gcc_non_local_gotos": 3, "gcc_global_registers": 2, - "asm_labels": 3, "pic_reg": 2, - "use_float_registers": 5, "highlevel_code": 3, "highlevel_data": 2, "gcc_nested_functions": 2, @@ -41605,7 +42159,6 @@ "agc_stack_layout": 2, "procid_stack_layout": 2, "trace_stack_layout": 2, - "body_typeinfo_liveness": 4, "can_compare_constants_as_ints": 2, "pretest_equality_cast_pointers": 2, "can_compare_compound_values": 2, @@ -41622,8 +42175,6 @@ "disable_minimal_model_stack_copy_pneg": 2, "disable_minimal_model_stack_copy_cut": 2, "use_minimal_model_stack_copy_pneg": 2, - "use_minimal_model_stack_copy_cut": 3, - "disable_trail_ops": 3, "size_region_ite_fixed": 2, "size_region_disj_fixed": 2, "size_region_semi_disj_fixed": 1, @@ -41660,11 +42211,11 @@ "fact_table_hash_percent_full": 2, "gcc_local_labels": 2, "prefer_switch": 2, - "opt_no_return_calls": 3, "opt_level": 3, "opt_level_number": 2, "opt_space": 2, "Default": 3, + "to": 16, "optimize": 3, "time.": 1, "intermodule_optimization": 2, @@ -41705,7 +42256,6 @@ "user_guided_type_specialization": 2, "introduce_accumulators": 2, "optimize_constructor_last_call_accumulator": 2, - "optimize_constructor_last_call_null": 3, "optimize_constructor_last_call": 2, "optimize_duplicate_calls": 2, "constant_propagation": 2, @@ -41736,8 +42286,6 @@ "deforestation_vars_threshold": 2, "deforestation_size_threshold": 2, "analyse_trail_usage": 2, - "optimize_trail_usage": 3, - "optimize_region_ops": 3, "analyse_mm_tabling": 2, "untuple": 2, "tuple": 2, @@ -41747,7 +42295,6 @@ "inline_par_builtins": 2, "always_specialize_in_dep_par_conjs": 2, "allow_some_paths_only_waits": 2, - "region_analysis": 3, "structure_sharing_analysis": 2, "structure_sharing_widening": 2, "structure_reuse_analysis": 2, @@ -41784,13 +42331,9 @@ "binary_switch_size": 2, "switch_single_rec_base_first": 2, "switch_multi_rec_base_first": 2, - "static_ground_cells": 3, - "static_ground_floats": 3, - "static_code_addresses": 3, "use_atomic_cells": 2, "middle_rec": 2, "simple_neg": 2, - "allow_hijacks": 3, "optimize_tailcalls": 2, "optimize_initializations": 2, "eliminate_local_vars": 2, @@ -41799,6 +42342,7 @@ "common_layout_data": 2, "Also": 1, "used": 2, + "for": 8, "MLDS": 2, "optimizations.": 1, "optimize_peep": 2, @@ -41820,7 +42364,6 @@ "layout_compression_limit": 2, "use_macro_for_redo_fail": 2, "emit_c_loops": 2, - "procs_per_c_function": 3, "everything_in_one_c_function": 2, "local_thread_engine_base": 2, "erlang_switch_on_strings_as_atoms": 2, @@ -41902,7 +42445,6 @@ "mercury_linkage_special": 2, "strip": 2, "demangle": 2, - "main": 15, "allow_undefined": 2, "use_readline": 2, "runtime_flags": 2, @@ -41993,6 +42535,7 @@ "typecheck_ambiguity_warn_limit": 2, "typecheck_ambiguity_error_limit": 2, "help": 4, + "version": 3, "fullarch": 2, "cross_compiling": 2, "local_module_id": 2, @@ -42007,13 +42550,7 @@ "par_loop_control": 2, "par_loop_control_preserve_tail_recursion.": 1, "libs.handle_options.": 1, - "assoc_list.": 3, - "bool.": 4, "dir.": 1, - "int.": 4, - "map.": 3, - "maybe.": 3, - "pair.": 3, "option_category": 2, "warning_option": 2, "verbosity_option": 2, @@ -42034,11 +42571,9 @@ "_Category": 1, "OptionsList": 2, "list.member": 2, - "pair": 7, "multi.": 1, "bool_special": 7, - "bool": 406, - "yes": 144, + "XXX": 3, "should": 1, "be": 1, "accumulating": 49, @@ -42050,56 +42585,22 @@ "file_special": 1, "miscellaneous_option": 1, "par_loop_control_preserve_tail_recursion": 1, - "hello.": 1, - "IO": 4, - "io.write_string": 1, - "rot13_ralph.": 1, - "io__state": 4, - "io__read_byte": 1, - "Result": 4, - "ok": 3, - "X": 9, - "io__write_byte": 1, - "rot13": 11, - "ErrNo": 2, - "io__error_message": 2, - "z": 1, - "then": 3, - "Rot13": 2, - "rem": 1, "check_hlds.polymorphism.": 1, "hlds.": 1, - "hlds.hlds_goal.": 2, - "hlds.hlds_module.": 2, - "hlds.hlds_pred.": 2, - "hlds.hlds_rtti.": 2, "mdbcomp.": 1, - "mdbcomp.prim_data.": 3, "parse_tree.": 1, - "parse_tree.prog_data.": 2, - "term.": 3, "polymorphism_process_module": 2, - "module_info": 26, "polymorphism_process_generated_pred": 2, - "pred_id": 15, "unification_typeinfos_rtti_varmaps": 2, - "mer_type": 21, "rtti_varmaps": 9, "unification": 8, - "hlds_goal_info": 22, "polymorphism_process_new_call": 2, - "pred_info": 20, - "proc_info": 11, - "proc_id": 12, - "prog_var": 58, "builtin_state": 1, - "maybe": 20, "call_unify_context": 2, "sym_name": 3, "hlds_goal": 45, "poly_info": 45, "polymorphism_make_type_info_vars": 1, - "term.context": 3, "polymorphism_make_type_info_var": 1, "int_or_var": 2, "iov_int": 1, @@ -42107,7 +42608,6 @@ "gen_extract_type_info": 1, "tvar": 10, "kind": 1, - "prog_varset": 14, "vartypes": 12, "poly_info.": 1, "create_poly_info": 1, @@ -42133,39 +42633,29 @@ "type_ctor": 1, "cons_id": 2, "type_info_kind": 2, + "type_info": 8, "type_ctor_info.": 1, "new_type_info_var_raw": 1, "check_hlds.clause_to_proc.": 1, "check_hlds.mode_util.": 1, - "check_hlds.type_util.": 2, "hlds.from_ground_term_util.": 1, "hlds.const_struct.": 1, "hlds.goal_util.": 1, "hlds.hlds_args.": 1, "hlds.hlds_clauses.": 1, "hlds.hlds_code_util.": 1, - "hlds.hlds_data.": 2, - "hlds.instmap.": 2, "hlds.passes_aux.": 1, "hlds.pred_table.": 1, "hlds.quantification.": 1, "hlds.special_pred.": 1, "libs.": 1, - "libs.globals.": 2, - "mdbcomp.goal_path.": 2, "mdbcomp.program_representation.": 1, - "parse_tree.builtin_lib_types.": 2, "parse_tree.prog_mode.": 1, - "parse_tree.prog_type.": 2, "parse_tree.prog_type_subst.": 1, - "parse_tree.set_of_var.": 2, "solutions.": 1, - "varset.": 2, - "ModuleInfo": 49, "module_info_get_preds": 3, ".ModuleInfo": 8, "Preds0": 2, - "map.keys": 3, "PredIds0": 2, "list.foldl": 6, "maybe_polymorphism_process_pred": 3, @@ -42173,9 +42663,6 @@ "PredIds1": 2, "fixup_pred_polymorphism": 4, "expand_class_method_bodies": 1, - "PredId": 50, - "module_info_pred_info": 6, - "PredInfo": 64, "PredModule": 8, "pred_info_module": 4, "PredName": 8, @@ -42193,7 +42680,6 @@ "clauses_info_get_vartypes": 2, "VarTypes0": 12, "clauses_info_get_headvars": 2, - "HeadVars": 20, "pred_info_get_arg_types": 7, "TypeVarSet": 15, "ExistQVars": 13, @@ -42213,7 +42699,6 @@ "pred_info_set_existq_tvar_binding": 1, "PredInfo2": 7, "polymorphism_introduce_exists_casts_pred": 3, - "map.det_update": 4, "PredTable": 2, "module_info_set_preds": 1, "pred_info_get_procedures": 2, @@ -42221,7 +42706,7 @@ "Procs0": 4, "map.map_values_only": 1, ".ProcInfo": 2, - "ProcInfo": 43, + "det": 21, "introduce_exists_casts_proc": 1, "Procs": 4, "pred_info_set_procedures": 2, @@ -42230,14 +42715,15 @@ "flag": 4, "write_pred_progress_message": 1, "polymorphism_process_pred": 4, + "mutable": 3, "selected_pred": 1, "ground": 9, "untrailed": 2, "level": 1, + "promise_pure": 30, "pred_id_to_int": 1, "impure": 2, "set_selected_pred": 2, - "true": 3, "polymorphism_process_clause_info": 3, "ClausesInfo": 13, "Info": 134, @@ -42279,17 +42765,17 @@ "Clauses": 2, "poly_info_get_varset": 4, ".Info": 25, - "VarSet": 15, "poly_info_get_var_types": 6, - "VarTypes": 22, "poly_info_get_rtti_varmaps": 4, "RttiVarMaps": 16, "set_clause_list": 1, "ClausesRep": 2, - "map.init": 7, "TVarNameMap": 2, + "This": 2, + "only": 4, "while": 1, "adding": 1, + "the": 27, "clauses.": 1, "proc_arg_vector": 9, "clause": 2, @@ -42310,7 +42796,6 @@ "fixup_quantification": 1, "Goal": 40, "proc_table": 2, - "ProcId": 31, "ProcTable": 2, ".ProcTable": 1, "ProcInfo0": 2, @@ -42431,6 +42916,7 @@ "poly_arg_vector_set_exist_type_infos": 1, "poly_arg_vector_set_univ_typeclass_infos": 1, "poly_arg_vector_set_exist_typeclass_infos": 1, + "some": 4, "ToLocn": 4, "TheVar": 2, "TheLocn": 2, @@ -42448,8 +42934,6 @@ "PredExistConstraints": 2, "exist_constraints": 1, "ExistQVarsForCall": 2, - "GoalInfo": 44, - "Context": 20, "goal_info_get_context": 4, "make_typeclass_info_vars": 3, "ExistTypeClassVarsMCAs": 2, @@ -42471,7 +42955,6 @@ "ExtraTypeInfoUnifyGoals": 2, "GoalList": 8, "conj_list_to_goal": 6, - "unexpected": 21, "Var1": 5, "Vars1": 2, "Var2": 5, @@ -42523,7 +43006,6 @@ "polymorphism_process_disj": 6, "set_cache_maps_snapshot": 15, "if_then_else": 2, - "Vars": 10, "Cond0": 2, "Then0": 2, "Else0": 2, @@ -42534,7 +43016,6 @@ "SubGoal0": 14, "SubGoal": 16, "switch": 2, - "Var": 13, "CanFail": 4, "Cases0": 4, "polymorphism_process_cases": 5, @@ -42618,7 +43099,6 @@ "VarSetAfter": 2, "MaxVarAfter": 2, "NumReusesAfter": 2, - "expect": 15, "MarkedGoal": 3, "fgt_kept_goal": 1, "fgt_broken_goal": 1, @@ -42626,8 +43106,6 @@ "unify_mode": 2, "Unification0": 8, "_YVar": 1, - "lookup_var_type": 3, - "Type": 18, "unification_typeinfos": 5, "_Changed": 3, "Args": 11, @@ -42648,7 +43126,6 @@ "Y1": 2, "NonLocals0": 10, "goal_info_get_nonlocals": 6, - "set_of_var.union": 3, "NonLocals": 12, "goal_info_set_nonlocals": 6, "type_vars": 2, @@ -42665,15 +43142,15 @@ ".Unification": 5, "complicated_unify": 2, "construct": 1, - "assign": 46, + "deconstruct": 2, "simple_test": 1, "X0": 8, "ConsId0": 5, "Mode0": 4, "TypeOfX": 6, + "Arity": 5, "closure_cons": 1, "ShroudedPredProcId": 2, - "proc": 2, "ProcId0": 3, "unshroud_pred_proc_id": 1, "type_is_higher_order_details": 1, @@ -42697,8 +43174,8 @@ "UnifyExpr": 2, "Unify": 2, "PredArgTypes": 10, + "Functor": 6, "create_fresh_vars": 5, - "module_info_pred_proc_info": 4, "QualifiedPName": 5, "qualified": 1, "cons_id_dummy_type_ctor": 1, @@ -42707,7 +43184,6 @@ "LambdaGoalExpr": 2, "not_builtin": 3, "OutsideVars": 2, - "set_of_var.list_to_set": 3, "InsideVars": 2, "set_of_var.intersect": 1, "LambdaNonLocals": 2, @@ -42755,7 +43231,6 @@ "proc_info_get_declared_determinism": 1, "MaybeDet": 3, "sorry": 1, - "Types": 6, "varset.new_var": 1, "add_var_type": 1, "ctor_defn": 2, @@ -42826,6 +43301,8 @@ "UnivTypeClassArgInfos": 2, "TypeClassArgInfos": 2, "list.filter": 1, + "X": 9, + "semidet": 2, "ExistUnconstrainedVars": 2, "UnivUnconstrainedVars": 2, "foreign_proc_add_typeinfo": 4, @@ -42845,7 +43322,6 @@ "MaybeArgName": 7, "native_if_possible": 2, "SymName": 4, - "Name": 4, "sym_name_to_string_sep": 1, "TypeVarNames": 2, "underscore_and_tvar_name": 3, @@ -42859,7 +43335,6 @@ "VarName": 2, "foreign_code_uses_variable": 1, "TVarName": 2, - "varset.lookup_name": 2, "TVarName0": 1, "TVarName0.": 1, "cache_maps": 3, @@ -42910,7 +43385,6 @@ "ActualArgTypes0": 3, "PredTVarSet": 2, "_PredExistQVars": 1, - "proc_info_get_headvars": 2, "CalleeHeadVars": 2, "proc_info_get_rtti_varmaps": 1, "CalleeRttiVarMaps": 2, @@ -42945,21 +43419,26 @@ "CallGoalExpr": 2, "CallGoal": 2, "rot13_concise.": 1, + "state": 3, "alphabet": 3, "cycle": 4, "rot_n": 2, - "N": 6, "Char": 12, "RotChar": 8, "char_to_string": 1, "CharString": 2, + "if": 15, "sub_string_search": 1, "Index": 3, + "then": 3, "NewIndex": 2, "mod": 1, "index_det": 1, + "else": 8, + "rot13": 11, "read_char": 1, "Res": 8, + "ok": 3, "print": 3, "ErrorCode": 4, "error_message": 1, @@ -42967,802 +43446,17 @@ "stderr_stream": 1, "StdErr": 8, "nl": 1, - "ll_backend.code_info.": 1, - "hlds.code_model.": 1, - "hlds.hlds_llds.": 1, - "ll_backend.continuation_info.": 1, - "ll_backend.global_data.": 1, - "ll_backend.layout.": 1, - "ll_backend.llds.": 1, - "ll_backend.trace_gen.": 1, - "counter.": 1, - "set_tree234.": 1, - "backend_libs.builtin_ops.": 1, - "backend_libs.proc_label.": 1, - "hlds.arg_info.": 1, - "hlds.hlds_desc.": 1, - "libs.trace_params.": 1, - "ll_backend.code_util.": 1, - "ll_backend.opt_debug.": 1, - "ll_backend.var_locn.": 1, - "parse_tree.mercury_to_mercury.": 1, - "cord.": 1, - "stack.": 1, - "code_info.": 1, - "code_info_init": 2, - "globals": 5, - "abs_follow_vars": 3, - "static_cell_info": 4, - "const_struct_map": 3, - "resume_point_info": 11, - "trace_slot_info": 3, - "containing_goal_map": 4, - "code_info": 208, - "get_globals": 5, - "get_exprn_opts": 2, - "exprn_opts": 3, - "get_module_info": 7, - "get_pred_id": 6, - "get_proc_id": 5, - "get_pred_info": 2, - "get_proc_info": 4, - "get_varset": 3, - "get_var_types": 3, - "vartypes.": 1, - "get_maybe_trace_info": 2, - "trace_info": 3, - "get_emit_trail_ops": 2, - "add_trail_ops": 5, - "get_emit_region_ops": 2, - "add_region_ops": 6, - "get_forward_live_vars": 2, - "set_of_progvar": 10, - "set_forward_live_vars": 2, - "get_instmap": 4, - "instmap": 3, - "set_instmap": 3, - "get_par_conj_depth": 2, - "set_par_conj_depth": 2, - "get_label_counter": 3, - "counter": 6, - "get_succip_used": 2, - "get_layout_info": 4, - "proc_label_layout_info": 3, - "get_proc_trace_events": 2, - "set_proc_trace_events": 2, - "get_closure_layouts": 3, - "closure_proc_id_data": 4, - "get_max_reg_in_use_at_trace": 2, - "set_max_reg_in_use_at_trace": 2, - "get_created_temp_frame": 2, - "get_static_cell_info": 5, - "set_static_cell_info": 5, - "get_alloc_sites": 3, - "set_tree234": 3, - "alloc_site_info": 4, - "set_alloc_sites": 3, - "get_used_env_vars": 2, - "set_used_env_vars": 2, - "get_opt_trail_ops": 2, - "get_opt_region_ops": 2, - "get_auto_comments": 2, - "get_lcmc_null": 2, - "get_containing_goal_map": 3, - "get_containing_goal_map_det": 2, - "get_const_struct_map": 2, - "add_out_of_line_code": 2, - "llds_code": 21, - "get_out_of_line_code": 2, - "get_var_slot_count": 2, - "set_maybe_trace_info": 3, - "get_opt_no_return_calls": 2, - "get_zombies": 2, - "set_zombies": 2, - "get_var_locn_info": 7, - "var_locn_info": 3, - "set_var_locn_info": 4, - "get_temps_in_use": 6, - "lval": 114, - "set_temps_in_use": 4, - "get_fail_info": 13, - "fail_info": 24, - "set_fail_info": 9, - "set_label_counter": 3, - "set_succip_used": 3, - "set_layout_info": 4, - "get_max_temp_slot_count": 2, - "set_max_temp_slot_count": 2, - "get_temp_content_map": 3, - "map": 7, - "slot_contents": 4, - "set_temp_content_map": 2, - "get_persistent_temps": 3, - "set_persistent_temps": 2, - "set_closure_layouts": 3, - "get_closure_seq_counter": 3, - "set_closure_seq_counter": 3, - "set_created_temp_frame": 2, - "code_info_static": 26, - "code_info_loc_dep": 22, - "code_info_persistent": 44, - "cis_globals": 2, - "cis_exprn_opts": 2, - "cis_module_info": 2, - "cis_pred_id": 2, - "cis_proc_id": 2, - "cis_pred_info": 2, - "cis_proc_info": 2, - "cis_proc_label": 1, - "proc_label": 2, - "cis_varset": 2, - "cis_var_slot_count": 2, - "cis_maybe_trace_info": 3, - "cis_opt_no_resume_calls": 2, - "cis_emit_trail_ops": 2, - "cis_opt_trail_ops": 2, - "cis_emit_region_ops": 2, - "cis_opt_region_ops": 2, - "cis_auto_comments": 2, - "cis_lcmc_null": 2, - "cis_containing_goal_map": 2, - "cis_const_struct_map": 2, - "cild_forward_live_vars": 3, - "cild_instmap": 3, - "cild_zombies": 3, - "cild_var_locn_info": 3, - "cild_temps_in_use": 3, - "cild_fail_info": 3, - "cild_par_conj_depth": 3, - "cip_label_num_src": 3, - "cip_store_succip": 3, - "cip_label_info": 3, - "cip_proc_trace_events": 3, - "cip_stackslot_max": 3, - "cip_temp_contents": 3, - "cip_persistent_temps": 3, - "cip_closure_layout_seq": 3, - "cip_closure_layouts": 3, - "cip_max_reg_r_used": 3, - "cip_max_reg_f_used": 2, - "cip_created_temp_frame": 3, - "cip_static_cell_info": 3, - "cip_alloc_sites": 3, - "cip_used_env_vars": 3, - "cip_ts_string_table_size": 3, - "cip_ts_rev_string_table": 4, - "cip_out_of_line_code": 4, - "SaveSuccip": 2, - "Globals": 32, - "FollowVars": 6, - "StaticCellInfo": 8, - "ConstStructMap": 2, - "ResumePoint": 13, - "TraceSlotInfo": 5, - "MaybeContainingGoalMap": 5, - "TSRevStringTable": 2, - "TSStringTableSize": 2, - "CodeInfo": 2, - "ProcLabel": 8, - "make_proc_label": 1, - "proc_info_get_initial_instmap": 1, - "InstMap": 6, - "proc_info_get_liveness_info": 1, - "Liveness": 4, - "CodeModel": 8, - "proc_info_interface_code_model": 2, - "build_input_arg_list": 1, - "ArgList": 2, - "proc_info_get_varset": 1, - "proc_info_get_vartypes": 2, - "proc_info_get_stack_slots": 1, - "StackSlots": 5, - "ExprnOpts": 4, - "init_exprn_opts": 3, - "globals.lookup_bool_option": 18, - "UseFloatRegs": 6, - "FloatRegType": 3, - "reg_f": 1, - "reg_r": 2, - "globals.get_trace_level": 1, - "TraceLevel": 5, - "eff_trace_level_is_none": 2, - "trace_fail_vars": 1, - "FailVars": 3, - "MaybeFailVars": 3, - "EffLiveness": 3, - "init_var_locn_state": 1, - "VarLocnInfo": 12, - "stack.init": 1, - "ResumePoints": 14, - "AllowHijack": 3, - "Hijack": 6, - "allowed": 6, - "not_allowed": 5, - "DummyFailInfo": 2, - "resume_point_unknown": 9, - "may_be_different": 7, - "not_inside_non_condition": 2, - "TempContentMap": 4, - "set.init": 7, - "PersistentTemps": 4, - "TempsInUse": 8, - "Zombies": 2, - "set_of_var.init": 1, - "LayoutMap": 2, - "max_var_slot": 1, - "VarSlotMax": 2, - "trace_reserved_slots": 1, - "FixedSlots": 2, - "int.max": 1, - "SlotMax": 2, - "OptNoReturnCalls": 2, - "UseTrail": 2, - "DisableTrailOps": 2, - "EmitTrailOps": 3, - "do_not_add_trail_ops": 1, - "OptTrailOps": 2, - "OptRegionOps": 2, - "UseRegions": 3, - "EmitRegionOps": 3, - "do_not_add_region_ops": 1, - "AutoComments": 2, - "LCMCNull": 2, - "CodeInfo0": 2, - "init_fail_info": 2, - "will": 1, - "override": 1, - "nested": 1, - "conjunction": 1, - "depth": 1, - "counter.init": 2, - "set_tree234.init": 1, - "cord.empty": 1, - "init_maybe_trace_info": 3, - "CodeInfo1": 2, - "exprn_opts.": 1, - "OptNLG": 3, - "NLG": 3, - "have_non_local_gotos": 1, - "do_not_have_non_local_gotos": 1, - "OptASM": 3, - "ASM": 3, - "have_asm_labels": 1, - "do_not_have_asm_labels": 1, - "OptSGCell": 3, - "SGCell": 3, - "have_static_ground_cells": 1, - "do_not_have_static_ground_cells": 1, - "OptUBF": 3, - "UBF": 3, - "have_unboxed_floats": 1, - "do_not_have_unboxed_floats": 1, - "OptFloatRegs": 3, - "do_not_use_float_registers": 1, - "OptSGFloat": 3, - "SGFloat": 3, - "have_static_ground_floats": 1, - "do_not_have_static_ground_floats": 1, - "OptStaticCodeAddr": 3, - "StaticCodeAddrs": 3, - "have_static_code_addresses": 1, - "do_not_have_static_code_addresses": 1, - "CI": 294, - "proc_info_get_has_tail_call_events": 1, - "HasTailCallEvents": 3, - "tail_call_events": 1, - "get_next_label": 5, - "TailRecLabel": 2, - "MaybeTailRecLabel": 3, - "no_tail_call_events": 1, - "trace_setup": 1, - "TraceInfo": 2, - "MaxRegR": 4, - "MaxRegF": 4, - "cip_max_reg_f_used.": 1, - "TI": 4, - "LV": 2, - "IM": 2, - "Zs": 2, - "EI": 2, - "FI": 2, - "LC": 2, - "SU": 2, - "LI": 2, - "PTE": 2, - "TM": 2, - "CM": 2, - "PT": 2, - "CLS": 2, - "CG": 2, - "MR": 4, - "MF": 1, - "MF.": 1, - "SCI": 2, - "ASI": 2, - "UEV": 2, - "ContainingGoalMap": 2, - "NewCode": 2, - "Code0": 2, - ".CI": 29, - "Code": 36, - "Code.": 1, - "get_stack_slots": 2, - "stack_slots": 1, - "get_follow_var_map": 2, - "abs_follow_vars_map": 1, - "get_next_non_reserved": 2, - "reg_type": 1, - "set_follow_vars": 4, - "pre_goal_update": 3, - "has_subgoals": 2, - "post_goal_update": 3, - "variable_type": 3, - "mer_type.": 1, - "variable_is_of_dummy_type": 2, - "is_dummy_type.": 1, - "search_type_defn": 4, - "hlds_type_defn": 1, - "lookup_type_defn": 2, - "hlds_type_defn.": 1, - "lookup_cheaper_tag_test": 2, - "maybe_cheaper_tag_test.": 1, - "filter_region_vars": 2, - "set_of_progvar.": 2, - "get_proc_model": 2, - "code_model.": 1, - "get_headvars": 2, - "get_arginfo": 2, - "arg_info": 2, - "get_pred_proc_arginfo": 3, - "current_resume_point_vars": 2, - "variable_name": 2, - "make_proc_entry_label": 2, - "code_addr.": 1, - "label": 5, - "succip_is_used": 2, - "add_trace_layout_for_label": 2, - "trace_port": 1, - "forward_goal_path": 1, - "user_event_info": 1, - "layout_label_info": 2, - "get_cur_proc_label": 4, - "get_next_closure_seq_no": 2, - "add_closure_layout": 2, - "add_threadscope_string": 2, - "get_threadscope_rev_string_table": 2, - "add_scalar_static_cell": 2, - "typed_rval": 1, - "data_id": 3, - "add_scalar_static_cell_natural_types": 2, - "rval": 3, - "add_vector_static_cell": 2, - "llds_type": 1, - "add_alloc_site_info": 2, - "prog_context": 1, - "alloc_site_id": 2, - "add_resume_layout_for_label": 2, - "var_locn_get_stack_slots": 1, - "FollowVarMap": 2, - "var_locn_get_follow_var_map": 1, - "RegType": 2, - "NextNonReserved": 2, - "var_locn_get_next_non_reserved": 1, - "VarLocnInfo0": 4, - "var_locn_set_follow_vars": 1, - "HasSubGoals": 3, - "goal_info_get_resume_point": 1, - "no_resume_point": 1, - "resume_point": 1, - "goal_info_get_follow_vars": 1, - "MaybeFollowVars": 3, - "goal_info_get_pre_deaths": 1, - "PreDeaths": 3, - "rem_forward_live_vars": 3, - "maybe_make_vars_forward_dead": 2, - "goal_info_get_pre_births": 1, - "PreBirths": 2, - "add_forward_live_vars": 2, - "does_not_have_subgoals": 2, - "goal_info_get_post_deaths": 2, - "PostDeaths": 5, - "goal_info_get_post_births": 1, - "PostBirths": 3, - "make_vars_forward_live": 1, - "InstMapDelta": 2, - "goal_info_get_instmap_delta": 1, - "InstMap0": 2, - "instmap.apply_instmap_delta": 1, - "TypeInfoLiveness": 2, - "body_should_use_typeinfo_liveness": 1, - "IsDummy": 2, - "VarType": 2, - "check_dummy_type": 1, - "TypeDefn": 6, - "type_to_ctor_det": 1, - "TypeCtor": 2, - "module_info_get_type_table": 1, - "TypeTable": 2, - "search_type_ctor_defn": 1, - "TypeDefnPrime": 2, - "CheaperTagTest": 3, - "get_type_defn_body": 1, - "TypeBody": 2, - "hlds_du_type": 1, - "CheaperTagTestPrime": 2, - "no_cheaper_tag_test": 1, - "ForwardLiveVarsBeforeGoal": 6, - "RegionVars": 2, - "code_info.get_var_types": 1, - "set_of_var.filter": 1, - "is_region_var": 1, - "ArgInfo": 4, - "proc_info_arg_info": 1, - "ResumeVars": 4, - "FailInfo": 19, - "ResumePointStack": 2, - "stack.det_top": 5, - "ResumePointInfo": 2, - "pick_first_resume_point": 1, - "ResumeMap": 8, - "ResumeMapVarList": 2, - "Varset": 2, - "Immed0": 3, - "CodeAddr": 2, - "Immed": 3, - "globals.lookup_int_option": 1, - "ProcsPerFunc": 2, - "CurPredId": 2, - "CurProcId": 2, - "make_entry_label": 1, - "Label": 8, - "C0": 4, - "counter.allocate": 2, - "internal_label": 3, - "Port": 2, - "IsHidden": 2, - "GoalPath": 2, - "MaybeSolverEventInfo": 2, - "Layout": 2, - "Internals0": 8, - "Exec": 5, - "trace_port_layout_info": 1, - "LabelNum": 8, - "entry_label": 2, - "map.search": 2, - "Internal0": 4, - "internal_layout_info": 6, - "Exec0": 3, - "Resume": 5, - "Internal": 8, - "Internals": 6, - "map.det_insert": 3, - "LayoutInfo": 2, - "Resume0": 3, - "get_active_temps_data": 2, - "assoc_list": 1, - "Temps": 2, - "map.select": 1, - "TempsInUseContentMap": 2, - "map.to_assoc_list": 3, - "cis_proc_label.": 1, - "SeqNo": 2, - "ClosureLayout": 2, - "ClosureLayouts": 2, - "String": 2, - "SlotNum": 2, - "Size0": 3, - "RevTable0": 2, - "Size": 4, - "RevTable": 3, - "RevTable.": 1, - "TableSize": 2, - "cip_ts_string_table_size.": 1, - "RvalsTypes": 2, - "DataAddr": 6, - "StaticCellInfo0": 6, - "global_data.add_scalar_static_cell": 1, - "Rvals": 2, - "global_data.add_scalar_static_cell_natural_types": 1, - "Vector": 2, - "global_data.add_vector_static_cell": 1, - "AllocId": 2, - "AllocSite": 3, - "AllocSites0": 2, - "set_tree234.insert": 1, - "AllocSites": 2, - "position_info.": 1, - "branch_end_info.": 1, - "branch_end": 4, - "branch_end_info": 7, - "remember_position": 3, - "position_info": 14, - "reset_to_position": 4, - "reset_resume_known": 2, - "generate_branch_end": 2, - "abs_store_map": 3, - "after_all_branches": 2, - "save_hp_in_branch": 2, - "pos_get_fail_info": 3, - "fail_info.": 2, - "LocDep": 6, - "cild_fail_info.": 1, - "CurCI": 2, - "NextCI": 2, - "Static": 2, - "Persistent": 2, - "NextCI0": 4, - "TempsInUse0": 4, - "set.union": 2, - "BranchStart": 2, - "BranchStartFailInfo": 2, - "BSResumeKnown": 2, - "CurFailInfo": 2, - "CurFailStack": 2, - "CurCurfMaxfr": 2, - "CurCondEnv": 2, - "CurHijack": 2, - "NewFailInfo": 2, - "StoreMap": 8, - "MaybeEnd0": 3, - "MaybeEnd": 6, - "AbsVarLocs": 3, - "assoc_list.values": 1, - "AbsLocs": 2, - "code_util.max_mentioned_abs_regs": 1, - "instmap_is_reachable": 1, - "VarLocs": 2, - "assoc_list.map_values_only": 2, - "abs_locn_to_lval": 2, - "place_vars": 1, - "remake_with_store_map": 4, - "empty": 9, - "EndCodeInfo1": 5, - "EndCodeInfo0": 3, - "FailInfo0": 13, - "FailInfo1": 2, - "ResumeKnown0": 5, - "CurfrMaxfr0": 2, - "CondEnv0": 3, - "Hijack0": 2, - "R": 2, - "ResumeKnown1": 2, - "CurfrMaxfr1": 2, - "CondEnv1": 2, - "Hijack1": 2, - "resume_point_known": 15, - "Redoip0": 3, - "Redoip1": 2, - "ResumeKnown": 21, - "must_be_equal": 11, - "CurfrMaxfr": 24, - "EndCodeInfoA": 2, - "TempsInUse1": 2, - "EndCodeInfo": 2, - "BranchEnd": 2, - "BranchEndCodeInfo": 2, - "BranchEndLocDep": 2, - "VarLocns": 2, - "VarLvals": 2, - "reinit_var_locn_state": 1, - "Slot": 2, - "Pos0": 2, - "Pos": 2, - "CI0": 2, - "CIStatic0": 2, - "CILocDep0": 2, - "CIPersistent0": 2, - "LocDep0": 2, - "CI1": 2, - "save_hp": 1, - "CI2": 2, - "CIStatic": 2, - "CIPersistent": 2, - "resume_map.": 1, - "resume_point_info.": 1, - "disj_hijack_info.": 1, - "prepare_for_disj_hijack": 2, - "code_model": 3, - "disj_hijack_info": 3, - "undo_disj_hijack": 2, - "ite_hijack_info.": 1, - "prepare_for_ite_hijack": 2, - "embedded_stack_frame_id": 3, - "ite_hijack_info": 3, - "ite_enter_then": 2, - "simple_neg_info.": 1, - "enter_simple_neg": 2, - "simple_neg_info": 3, - "leave_simple_neg": 2, - "det_commit_info.": 1, - "prepare_for_det_commit": 2, - "det_commit_info": 6, - "generate_det_commit": 2, - "semi_commit_info.": 1, - "prepare_for_semi_commit": 2, - "semi_commit_info": 6, - "generate_semi_commit": 2, - "effect_resume_point": 2, - "pop_resume_point": 1, - "top_resume_point": 1, - "set_resume_point_to_unknown": 1, - "set_resume_point_and_frame_to_unknown": 1, - "generate_failure": 2, - "fail_if_rval_is_false": 1, - "failure_is_direct_branch": 1, - "code_addr": 8, - "may_use_nondet_tailcall": 1, - "nondet_tail_call": 1, - "produce_vars": 1, - "resume_map": 9, - "flush_resume_vars_to_stack": 1, - "make_resume_point": 1, - "resume_locs": 1, - "generate_resume_point": 2, - "resume_point_vars": 1, - "resume_point_stack_addr": 2, - "stack": 1, - "curfr_vs_maxfr": 2, - "condition_env": 3, - "hijack_allowed": 2, - "orig_only": 2, - "stack_only": 2, - "orig_and_stack": 1, - "stack_and_orig": 1, - "redoip_update": 2, - "has_been_done": 5, - "wont_be_done.": 1, - "resume_point_unknown.": 1, - "may_be_different.": 1, - "inside_non_condition": 6, - "not_inside_non_condition.": 1, - "not_allowed.": 1, - "disj_no_hijack": 4, - "disj_temp_frame": 4, - "disj_quarter_hijack": 4, - "disj_half_hijack": 3, - "disj_full_hijack": 3, - "HijackInfo": 29, - "CondEnv": 12, - "Allow": 12, - "model_det": 2, - "model_semi": 3, - "singleton": 28, - "llds_instr": 64, - "comment": 5, - "model_non": 2, - "create_temp_frame": 4, - "do_fail": 6, - "stack.pop": 1, - "TopResumePoint": 6, - "RestResumePoints": 2, - "stack.is_empty": 1, - "wont_be_done": 2, - "acquire_temp_slot": 15, - "slot_lval": 14, - "redoip_slot": 30, - "curfr": 18, - "non_persistent_temp_slot": 15, - "RedoipSlot": 33, - "maxfr": 42, - "redofr_slot": 14, - "RedofrSlot": 17, - "from_list": 13, - "prevfr_slot": 3, - "pick_stack_resume_point": 3, - "StackLabel": 9, - "LabelConst": 4, - "llconst_code_addr": 6, - "ite_region_info": 5, - "ite_info": 3, - "ite_hijack_type": 2, - "ite_no_hijack": 3, - "ite_temp_frame": 3, - "ite_quarter_hijack": 3, - "ite_half_hijack": 3, - "ite_full_hijack": 3, - "CondCodeModel": 4, - "MaybeEmbeddedFrameId": 5, - "HijackType": 12, - "MaybeRegionInfo": 12, - "MaxfrSlot": 30, - "TempFrameCode": 4, - "MaxfrCode": 7, - "EmbeddedFrameId": 2, - "slot_success_record": 1, - "persistent_temp_slot": 1, - "SuccessRecordSlot": 6, - "InitSuccessCode": 3, - "llconst_false": 1, - "ITEResumePoint": 2, - "ThenCode": 10, - "ElseCode": 7, - "ResumePoints0": 5, - "stack.det_pop": 1, - "HijackResumeKnown": 2, - "OldCondEnv": 2, - "RegionInfo": 2, - "EmbeddedStackFrameId": 2, - "ITEStackResumeCodeAddr": 2, - "llconst_true": 1, - "AfterRegionOp": 3, - "if_val": 1, - "unop": 1, - "logical_not": 1, - "code_label": 2, - "use_and_maybe_pop_region_frame": 1, - "region_ite_nondet_cond_fail": 1, - "goto": 2, - "maybe_pick_stack_resume_point": 1, - "ResumeMap0": 2, - "make_fake_resume_map": 5, - "do_redo": 1, - "is_empty": 1, - "Locns": 2, - "set.make_singleton_set": 1, - "reg": 1, - "region_commit_stack_frame": 5, - "AddTrailOps": 4, - "AddRegionOps": 5, - "CommitGoalInfo": 4, - "DetCommitInfo": 4, - "SaveMaxfrCode": 3, - "save_maxfr": 3, - "MaybeMaxfrSlot": 6, - "maybe_save_trail_info": 2, - "MaybeTrailSlots": 8, - "SaveTrailCode": 4, - "maybe_save_region_commit_frame": 4, - "MaybeRegionCommitFrameInfo": 8, - "SaveRegionCommitFrameCode": 2, - "SaveRegionCommitFrameCode.": 2, - "RestoreMaxfrCode": 3, - "restore_maxfr": 3, - "release_temp_slot": 1, - "maybe_restore_trail_info": 2, - "CommitTrailCode": 4, - "maybe_restore_region_commit_frame": 2, - "SuccessRegionCode": 3, - "_FailureRegionCode": 1, - "SuccessRegionCode.": 1, - "commit_hijack_info": 2, - "commit_temp_frame": 3, - "commit_quarter_hijack": 3, - "commit_half_hijack": 3, - "commit_full_hijack": 3, - "SemiCommitInfo": 4, - "clone_resume_point": 1, - "NewResumePoint": 4, - "stack.push": 1, - "StackLabelConst": 7, - "UseMinimalModelStackCopyCut": 4, - "Components": 4, - "foreign_proc_raw_code": 4, - "cannot_branch_away": 4, - "proc_affects_liveness": 2, - "live_lvals_info": 4, - "proc_does_not_affect_liveness": 2, - "MD": 4, - "proc_may_duplicate": 2, - "MarkCode": 3, - "foreign_proc_code": 2, - "proc_will_not_call_mercury": 2, - "HijackCode": 5, - "UseMinimalModel": 3, - "CutCode": 4, - "SuccessUndoCode": 5, - "FailureUndoCode": 5, - "AfterCommit": 2, - "ResumePointCode": 2, - "FailCode": 2, - "RestoreTrailCode": 2, - "FailureRegionCode": 2, - "SuccLabel": 3, - "GotoSuccLabel": 2, - "SuccLabelCode": 1, - "SuccessCode": 2, - "FailureCode": 2, - "SuccLabelCode.": 1, - "_ForwardLiveVarsBeforeGoal": 1, + "rot13_ralph.": 1, + "io__state": 4, + "io__read_byte": 1, + "Result": 4, + "io__write_byte": 1, + "ErrNo": 2, + "io__error_message": 2, + "z": 1, + "Rot13": 2, + "<": 14, + "rem": 1, "rot13_verbose.": 1, "rot13a/2": 1, "table": 1, @@ -43772,17 +43466,323 @@ "equivalents": 1, "fails": 1, "input": 1, + "not": 7, "rot13a": 55, "rot13/2": 1, "Applies": 1, "algorithm": 1, + "a": 10, "character.": 1, "TmpChar": 2, "io__read_char": 1, "io__write_char": 1, "io__stderr_stream": 1, "io__write_string": 2, - "io__nl": 1 + "io__nl": 1, + "store.": 1, + "typeclass": 1, + "store": 52, + "T": 52, + "where": 8, + "S": 133, + "instance": 4, + "io.state": 3, + "store.init": 2, + "generic_mutvar": 15, + "io_mutvar": 1, + "store_mutvar": 1, + "store.new_mutvar": 1, + "store.copy_mutvar": 1, + "store.get_mutvar": 1, + "store.set_mutvar": 1, + "<=>": 5, + "new_cyclic_mutvar": 2, + "Func": 4, + "Mutvar": 23, + "Create": 1, + "new": 25, + "variable": 1, + "whose": 2, + "initialized": 2, + "with": 5, + "returned": 1, + "from": 1, + "specified": 1, + "function": 3, + "The": 2, + "argument": 6, + "passed": 2, + "mutvar": 6, + "itself": 4, + "has": 4, + "yet": 1, + "been": 1, + "safe": 2, + "because": 1, + "does": 3, + "get": 2, + "so": 3, + "it": 1, + "can": 1, + "t": 5, + "examine": 1, + "uninitialized": 1, + "predicate": 1, + "useful": 1, + "creating": 1, + "self": 1, + "referential": 1, + "values": 1, + "such": 2, + "as": 5, + "circular": 1, + "linked": 1, + "lists": 1, + "For": 1, + "example": 1, + "clist": 2, + "node": 1, + "store.new_cyclic_mutvar": 1, + "generic_ref": 20, + "io_ref": 1, + "store_ref": 1, + "store.new_ref": 1, + "store.ref_functor": 1, + "store.arg_ref": 1, + "ArgT": 4, + "store.new_arg_ref": 3, + "store.set_ref": 1, + "store.set_ref_value": 1, + "store.copy_ref_value": 1, + "store.extract_ref_value": 1, + "Nasty": 1, + "performance": 2, + "hacks": 1, + "WARNING": 1, + "use": 1, + "of": 10, + "these": 1, + "procedures": 2, + "dangerous": 1, + "Use": 1, + "them": 1, + "last": 1, + "resort": 1, + "critical": 1, + "and": 6, + "shows": 1, + "that": 2, + "using": 1, + "versions": 1, + "bottleneck": 1, + "These": 1, + "may": 1, + "vanish": 1, + "future": 1, + "Mercury": 1, + "unsafe_arg_ref": 1, + "same": 2, + "arg_ref": 12, + "unsafe_new_arg_ref": 1, + "new_arg_ref": 1, + "except": 1, + "they": 4, + "doesn": 1, + "check": 1, + "errors": 1, + "don": 3, + "work": 3, + "no_tag": 1, + "types": 3, + "exactly": 2, + "one": 2, + "functor": 2, + "which": 2, + "arguments": 2, + "occupy": 1, + "word": 2, + "other": 1, + "functors.": 1, + "store.unsafe_arg_ref": 1, + "store.unsafe_new_arg_ref": 1, + "implementation": 1, + "require": 1, + "just": 1, + "real": 1, + "representation": 1, + "pragma": 41, + "foreign_type": 10, + "MR_Word": 24, + "can_pass_as_mercury_type": 5, + "equality": 5, + "store_equal": 7, + "comparison": 5, + "store_compare": 7, + "int32": 1, + "Java": 12, + "Erlang": 3, + "attempt": 2, + "two": 2, + "stores": 2, + "comparison_result": 1, + "compare": 1, + "Mutvars": 1, + "references": 1, + "are": 1, + "each": 1, + "represented": 1, + "pointer": 1, + "single": 1, + "on": 1, + "heap": 1, + "private_builtin.ref": 2, + "ref": 2, + "store.do_init": 6, + "foreign_proc": 28, + "_S0": 16, + "will_not_call_mercury": 28, + "will_not_modify_trail": 7, + "new_mutvar": 5, + "Val": 45, + "S0": 23, + "get_mutvar": 5, + "set_mutvar": 5, + "_S": 12, + "copy_mutvar": 1, + "Copy": 2, + "Value": 4, + "store.unsafe_new_uninitialized_mutvar": 1, + "unsafe_new_uninitialized_mutvar": 4, + "MR_offset_incr_hp_msg": 5, + "MR_SIZE_SLOT_SIZE": 10, + "1": 5, + "MR_ALLOC_ID": 5, + "2": 2, + "MR_define_size_slot": 5, + "0": 2, + "object": 21, + "MutVar": 4, + "Store": 5, + "apply": 1, + "Ref": 41, + "foreign_code": 2, + "public": 17, + "class": 4, + "Object": 9, + "referenced": 4, + "obj": 7, + "Specific": 2, + "field": 20, + "or": 2, + "null": 8, + "specify": 2, + "GetFields": 2, + "return": 6, + "fields": 3, + "any": 2, + "particular": 2, + "order": 2, + "really": 2, + "usable": 2, + "System": 1, + "Reflection": 1, + "FieldInfo": 1, + "Constructors": 2, + "init": 8, + "setField": 4, + "Set": 2, + "according": 2, + "given": 2, + "index": 2, + "void": 4, + "GetType": 1, + "reference": 4, + "getValue": 4, + "GetValue": 1, + "Update": 2, + "setValue": 2, + "SetValue": 1, + "static": 1, + "lang": 28, + "getDeclaredFields": 2, + "reflect": 1, + "Field": 5, + "try": 3, + "getClass": 1, + "catch": 11, + "SecurityException": 1, + "se": 1, + "throw": 11, + "RuntimeException": 11, + "Security": 1, + "manager": 1, + "denied": 1, + "access": 3, + "ArrayIndexOutOfBoundsException": 1, + "e": 13, + "No": 1, + "Exception": 3, + "Unable": 3, + "getMessage": 3, + "IllegalAccessException": 2, + "inaccessible": 2, + "IllegalArgumentException": 2, + "mismatch": 2, + "NullPointerException": 2, + "new_ref": 4, + "ets": 3, + "insert": 1, + "copy_ref_value": 1, + "unsafe_ref_value": 6, + "store.unsafe_ref_value": 1, + "lookup": 1, + "ref_functor": 1, + "canonicalize": 1, + "foreign_decl": 1, + "include": 4, + "mercury_type_info": 1, + "h": 4, + "mercury_heap": 1, + "mercury_misc": 1, + "MR_fatal_error": 5, + "mercury_deconstruct": 1, + "MR_arg": 3, + "ArgNum": 7, + "ArgRef": 22, + "may_not_duplicate": 1, + "MR_TypeInfo": 10, + "arg_type_info": 6, + "exp_arg_type_info": 6, + "MR_DuArgLocn": 2, + "arg_locn": 9, + "TypeInfo_for_T": 2, + "TypeInfo_for_ArgT": 2, + "MR_save_transient_registers": 2, + "MR_NONCANON_ABORT": 2, + "number": 2, + "range": 2, + "MR_compare_type_info": 2, + "MR_COMPARE_EQUAL": 2, + "wrong": 2, + "MR_restore_transient_registers": 2, + "NULL": 2, + "MR_arg_bits": 2, + "store.ref/2": 3, + "MR_arg_value": 2, + "C#": 6, + "store.Ref": 8, + "Ref.getValue": 6, + "*arg_ref": 1, + "*arg_locn": 1, + "&": 7, + "&&": 1, + "ValRef": 1, + "Ref.setValue": 3, + "ValRef.getValue": 2, + "*Ptr": 2, + "Ptr": 4, + "MR_strip_tag": 2, + "Arg": 6 }, "Monkey": { "Strict": 1, @@ -43899,35 +43899,23 @@ "c": 1 }, "Moocode": { - "@verb": 1, - "toy": 3, - "do_the_work": 3, - "this": 114, - "none": 1, "@program": 29, - "if": 90, - "(": 600, + "toy": 3, + "wind": 1, "this.wound": 8, - ")": 593, - "object_utils": 1, - "isa": 21, - "this.location": 3, - "room": 1, - "announce_all": 2, - "this.name": 4, - "continue_msg": 1, + "+": 39, ";": 505, - "-": 98, - "fork": 1, - "endfork": 1, - "else": 45, - "wind_down_msg": 1, - "endif": 93, - "<": 13, + "player": 2, + "tell": 1, + "(": 600, + "this.name": 4, + ")": 593, + "player.location": 1, + "announce": 1, + "player.name": 1, ".": 30, "while": 15, "read": 1, - "player": 2, "endwhile": 14, "I": 1, "M": 1, @@ -43960,6 +43948,7 @@ "server/core.": 1, "most": 1, "straight": 1, + "-": 98, "forward": 1, "target": 7, "other": 1, @@ -44064,6 +44053,7 @@ "application/x": 27, "moocode": 27, "typeof": 11, + "this": 114, "OBJ": 3, "||": 19, "raise": 23, @@ -44077,15 +44067,18 @@ "name": 9, "}": 112, "args": 26, + "if": 90, "value": 73, "this.variable_map": 3, "[": 99, "]": 102, "E_RANGE": 17, "return": 61, + "else": 45, "tostr": 51, "random": 3, "this.reserved_names": 1, + "endif": 93, "compile": 1, "source": 32, "options": 3, @@ -44110,12 +44103,14 @@ "@compiler": 1, "endfor": 31, "ticks_left": 4, + "<": 13, "seconds_left": 4, "&&": 39, "suspend": 4, "statement.value": 20, "elseif": 41, "_generate": 1, + "isa": 21, "this.plastic.sign_operator_proto": 1, "|": 9, "statement.first": 18, @@ -44128,7 +44123,6 @@ "respond_to": 9, "@code": 28, "@this": 13, - "+": 39, "i": 29, "length": 11, "LIST": 6, @@ -44395,11 +44389,17 @@ "result.type": 1, "result.first": 1, "result.second": 1, - "wind": 1, - "tell": 1, - "player.location": 1, - "announce": 1, - "player.name": 1 + "@verb": 1, + "do_the_work": 3, + "none": 1, + "object_utils": 1, + "this.location": 3, + "room": 1, + "announce_all": 2, + "continue_msg": 1, + "fork": 1, + "endfork": 1, + "wind_down_msg": 1 }, "MoonScript": { "types": 2, @@ -45199,6 +45199,10 @@ "inherit": 1 }, "Nu": { + "SHEBANG#!nush": 1, + "(": 14, + "puts": 1, + ")": 14, ";": 22, "main.nu": 1, "Entry": 1, @@ -45208,9 +45212,7 @@ "Nu": 1, "program.": 1, "Copyright": 1, - "(": 14, "c": 1, - ")": 14, "Tim": 1, "Burks": 1, "Neon": 1, @@ -45258,39 +45260,69 @@ "event": 1, "loop": 1, "NSApplicationMain": 1, - "nil": 1, - "SHEBANG#!nush": 1, - "puts": 1 + "nil": 1 }, "OCaml": { - "type": 2, - "a": 4, - "-": 22, - "unit": 5, - ")": 23, + "{": 11, + "shared": 1, + "open": 4, + "Eliom_content": 1, + "Html5.D": 1, + "Eliom_parameter": 1, + "}": 13, + "server": 2, "module": 5, - "Ops": 2, + "Example": 1, + "Eliom_registration.App": 1, + "(": 21, "struct": 5, "let": 13, - "(": 21, + "application_name": 1, + "end": 5, + ")": 23, + "main": 2, + "Eliom_service.service": 1, + "path": 1, + "[": 13, + "]": 13, + "get_params": 1, + "unit": 5, + "client": 1, + "hello_popup": 2, + "Dom_html.window##alert": 1, + "Js.string": 1, + "_": 2, + "Example.register": 1, + "service": 1, + "fun": 9, + "-": 22, + "Lwt.return": 1, + "html": 1, + "head": 1, + "title": 1, + "pcdata": 4, + "body": 1, + "h1": 1, + ";": 14, + "p": 1, + "h2": 1, + "a": 4, + "a_onclick": 1, + "type": 2, + "Ops": 2, "@": 6, "f": 10, "k": 21, "|": 15, "x": 14, - "end": 5, - "open": 4, "List": 1, "rec": 3, "map": 3, "l": 8, "match": 4, "with": 4, - "[": 13, - "]": 13, "hd": 6, "tl": 6, - "fun": 9, "fold": 2, "acc": 5, "Option": 1, @@ -45299,14 +45331,11 @@ "Some": 5, "Lazy": 1, "option": 1, - ";": 14, "mutable": 1, "waiters": 5, - "}": 13, "make": 1, "push": 4, "cps": 7, - "{": 11, "value": 3, "force": 1, "l.value": 2, @@ -45318,36 +45347,7 @@ "l.push": 1, "<": 1, "get_state": 1, - "lazy_from_val": 1, - "_": 2, - "shared": 1, - "Eliom_content": 1, - "Html5.D": 1, - "Eliom_parameter": 1, - "server": 2, - "Example": 1, - "Eliom_registration.App": 1, - "application_name": 1, - "main": 2, - "Eliom_service.service": 1, - "path": 1, - "get_params": 1, - "client": 1, - "hello_popup": 2, - "Dom_html.window##alert": 1, - "Js.string": 1, - "Example.register": 1, - "service": 1, - "Lwt.return": 1, - "html": 1, - "head": 1, - "title": 1, - "pcdata": 4, - "body": 1, - "h1": 1, - "p": 1, - "h2": 1, - "a_onclick": 1 + "lazy_from_val": 1 }, "Objective-C": { "//": 317, @@ -46306,725 +46306,17 @@ "retryCount": 3, "shouldAttemptPersistentConnection": 2, "@end": 37, - "kTextStyleType": 2, - "@": 258, - "kViewStyleType": 2, - "kImageStyleType": 2, - "///////////////////////////////////////////////////////////////////////////////////////////////////": 24, - "@implementation": 13, - "StyleViewController": 2, - "initWithStyleName": 1, - "name": 7, - "styleType": 3, - "super": 25, - "initWithNibName": 3, - "bundle": 3, - "self.title": 2, - "_style": 8, - "TTStyleSheet": 4, - "globalStyleSheet": 4, - "styleWithSelector": 4, - "_styleHighlight": 6, - "forState": 4, - "UIControlStateHighlighted": 1, - "_styleDisabled": 6, - "UIControlStateDisabled": 1, - "_styleSelected": 6, - "UIControlStateSelected": 1, - "_styleType": 6, - "copy": 4, - "return": 165, - "TT_RELEASE_SAFELY": 12, - "UIViewController": 2, - "addTextView": 5, - "title": 2, - "frame": 38, - "CGRect": 41, - "style": 29, - "TTStyle*": 7, - "textFrame": 3, - "TTRectInset": 3, - "UIEdgeInsetsMake": 3, - "StyleView*": 2, - "StyleView": 2, - "alloc": 47, - "initWithFrame": 12, - "text.text": 1, - "TTStyleContext*": 1, - "context": 4, - "TTStyleContext": 1, - "context.frame": 1, - "context.delegate": 1, - "context.font": 1, - "UIFont": 3, - "systemFontOfSize": 2, - "systemFontSize": 1, - "CGSize": 5, - "addToSize": 1, - "CGSizeZero": 1, - "size.width": 1, - "size.height": 1, - "textFrame.size": 1, - "text.frame": 1, - "text.style": 1, - "text.backgroundColor": 1, - "UIColor": 3, - "colorWithRed": 3, - "green": 3, - "blue": 3, - "alpha": 3, - "text.autoresizingMask": 1, - "UIViewAutoresizingFlexibleWidth": 4, - "|": 13, - "UIViewAutoresizingFlexibleBottomMargin": 3, - "self.view": 4, - "addSubview": 8, - "addView": 5, - "viewFrame": 4, - "view": 11, - "view.style": 2, - "view.backgroundColor": 2, - "view.autoresizingMask": 2, - "addImageView": 5, - "TTImageView*": 1, - "TTImageView": 1, - "view.urlPath": 1, - "imageFrame": 2, - "view.frame": 2, - "imageFrame.size": 1, - "view.image.size": 1, - "loadView": 4, - "self.view.bounds": 2, - "frame.size.height": 15, - "isEqualToString": 13, - "frame.origin.y": 16, - "else": 35, - "PlaygroundViewController": 2, - "UIScrollView*": 1, - "_scrollView": 9, - "TUITableViewStylePlain": 2, - "regular": 1, - "table": 7, - "TUITableViewStyleGrouped": 1, - "grouped": 1, - "stick": 1, - "top": 8, - "scroll": 3, - "TUITableViewStyle": 4, - "TUITableViewScrollPositionNone": 2, - "TUITableViewScrollPositionTop": 2, - "TUITableViewScrollPositionMiddle": 1, - "TUITableViewScrollPositionBottom": 1, - "TUITableViewScrollPositionToVisible": 3, - "supported": 1, - "arg": 11, - "TUITableViewScrollPosition": 5, - "TUITableViewInsertionMethodBeforeIndex": 1, - "NSOrderedAscending": 4, - "TUITableViewInsertionMethodAtIndex": 1, - "NSOrderedSame": 1, - "TUITableViewInsertionMethodAfterIndex": 1, - "NSOrderedDescending": 4, - "TUITableViewInsertionMethod": 3, - "TUITableViewCell": 23, - "@protocol": 3, - "TUITableViewDataSource": 2, - "TUITableView": 25, - "TUITableViewDelegate": 1, - "": 1, - "TUIScrollViewDelegate": 1, - "CGFloat": 44, - "tableView": 45, - "heightForRowAtIndexPath": 2, - "TUIFastIndexPath": 89, - "indexPath": 47, - "@optional": 2, - "willDisplayCell": 2, - "cell": 21, - "forRowAtIndexPath": 2, - "added": 5, - "subview": 1, - "didSelectRowAtIndexPath": 3, - "happens": 4, - "left/right": 2, - "mouse": 2, - "down": 1, - "key": 32, - "up/down": 1, - "didDeselectRowAtIndexPath": 3, - "didClickRowAtIndexPath": 1, - "withEvent": 2, - "NSEvent": 3, - "event": 8, - "look": 1, - "clickCount": 1, - "TUITableView*": 1, - "shouldSelectRowAtIndexPath": 3, - "TUIFastIndexPath*": 1, - "forEvent": 3, - "NSEvent*": 1, - "NSMenu": 1, - "menuForRowAtIndexPath": 1, - "tableViewWillReloadData": 3, - "tableViewDidReloadData": 3, - "targetIndexPathForMoveFromRowAtIndexPath": 1, - "fromPath": 1, - "toProposedIndexPath": 1, - "proposedPath": 1, - "TUIScrollView": 1, - "__unsafe_unretained": 2, - "": 4, - "_dataSource": 6, - "weak": 2, - "_sectionInfo": 27, - "TUIView": 17, - "_pullDownView": 4, - "_headerView": 8, - "_lastSize": 1, - "_contentHeight": 7, - "NSMutableIndexSet": 6, - "_visibleSectionHeaders": 6, - "_visibleItems": 14, - "_reusableTableCells": 5, - "_selectedIndexPath": 9, - "_indexPathShouldBeFirstResponder": 2, - "_futureMakeFirstResponderToken": 2, - "_keepVisibleIndexPathForReload": 2, - "_relativeOffsetForReload": 2, - "drag": 1, - "reorder": 1, - "_dragToReorderCell": 5, - "CGPoint": 7, - "_currentDragToReorderLocation": 1, - "_currentDragToReorderMouseOffset": 1, - "_currentDragToReorderIndexPath": 1, - "_currentDragToReorderInsertionMethod": 1, - "_previousDragToReorderIndexPath": 1, - "_previousDragToReorderInsertionMethod": 1, - "struct": 20, - "animateSelectionChanges": 3, - "forceSaveScrollPosition": 1, - "derepeaterEnabled": 1, - "layoutSubviewsReentrancyGuard": 1, - "didFirstLayout": 1, - "dataSourceNumberOfSectionsInTableView": 1, - "delegateTableViewWillDisplayCellForRowAtIndexPath": 1, - "maintainContentOffsetAfterReload": 3, - "_tableFlags": 1, - "creation.": 1, - "calls": 1, - "UITableViewStylePlain": 1, - "unsafe_unretained": 2, - "dataSource": 2, - "": 4, - "readwrite": 1, - "reloadData": 3, - "reloadDataMaintainingVisibleIndexPath": 2, - "relativeOffset": 5, - "reloadLayout": 2, - "numberOfSections": 10, - "numberOfRowsInSection": 9, - "section": 60, - "rectForHeaderOfSection": 4, - "rectForSection": 3, - "rectForRowAtIndexPath": 7, - "NSIndexSet": 4, - "indexesOfSectionsInRect": 2, - "rect": 10, - "indexesOfSectionHeadersInRect": 2, - "indexPathForCell": 2, - "returns": 4, - "visible": 16, - "indexPathsForRowsInRect": 3, - "indexPathForRowAtPoint": 2, - "point": 11, - "indexPathForRowAtVerticalOffset": 2, - "offset": 23, - "indexOfSectionWithHeaderAtPoint": 2, - "indexOfSectionWithHeaderAtVerticalOffset": 2, - "enumerateIndexPathsUsingBlock": 2, - "*indexPath": 11, - "*stop": 7, - "block": 18, - "enumerateIndexPathsWithOptions": 2, - "NSEnumerationOptions": 4, - "options": 6, - "usingBlock": 6, - "enumerateIndexPathsFromIndexPath": 4, - "fromIndexPath": 6, - "toIndexPath": 12, - "withOptions": 4, - "headerViewForSection": 6, - "cellForRowAtIndexPath": 9, - "index": 11, - "range": 8, - "visibleCells": 3, - "order": 1, - "sortedVisibleCells": 2, - "bottom": 6, - "indexPathsForVisibleRows": 2, - "scrollToRowAtIndexPath": 3, - "atScrollPosition": 3, - "scrollPosition": 9, - "animated": 27, - "indexPathForSelectedRow": 4, - "representing": 1, - "row": 36, - "selection.": 1, - "indexPathForFirstRow": 2, - "indexPathForLastRow": 2, - "selectRowAtIndexPath": 3, - "deselectRowAtIndexPath": 3, - "strong": 4, - "*pullDownView": 1, - "pullDownViewIsVisible": 3, - "*headerView": 6, - "dequeueReusableCellWithIdentifier": 2, - "identifier": 7, - "": 1, - "@required": 1, - "canMoveRowAtIndexPath": 2, - "moveRowAtIndexPath": 2, - "numberOfSectionsInTableView": 3, - "NSIndexPath": 5, - "indexPathForRow": 11, - "NSUInteger": 93, - "inSection": 11, - "TTViewController": 1, - "@private": 2, - "": 2, - "argc": 1, - "char": 19, - "*argv": 1, - "NSLog": 4, - "HEADER_Z_POSITION": 2, - "beginning": 1, - "height": 19, - "TUITableViewRowInfo": 3, - "TUITableViewSection": 16, - "NSObject": 5, - "*_tableView": 1, - "*_headerView": 1, - "reusable": 1, - "similar": 1, - "UITableView": 1, - "sectionIndex": 23, - "numberOfRows": 13, - "sectionHeight": 9, - "sectionOffset": 8, - "*rowInfo": 1, - "@synthesize": 7, - "initWithNumberOfRows": 2, - "n": 7, - "_tableView": 3, - "rowInfo": 7, - "calloc": 5, - "sizeof": 13, - "free": 4, - "_setupRowHeights": 2, - "*header": 1, - "self.headerView": 2, - "roundf": 2, - "header.frame.size.height": 1, - "i": 41, - "<": 56, - "h": 3, - "_tableView.delegate": 1, - ".offset": 2, - ".height": 4, - "rowHeight": 2, - "sectionRowOffset": 2, - "tableRowOffset": 2, - "headerHeight": 4, - "self.headerView.frame.size.height": 1, - "headerView": 14, - "_tableView.dataSource": 3, - "respondsToSelector": 8, - "@selector": 28, - "_headerView.autoresizingMask": 1, - "TUIViewAutoresizingFlexibleWidth": 1, - "_headerView.layer.zPosition": 1, - "Private": 1, - "_updateSectionInfo": 2, - "_updateDerepeaterViews": 2, - "pullDownView": 1, - "_tableFlags.animateSelectionChanges": 3, - "setDelegate": 4, - "d": 11, - "_tableFlags.delegateTableViewWillDisplayCellForRowAtIndexPath": 1, - "call": 8, - "setDataSource": 1, - "_tableFlags.dataSourceNumberOfSectionsInTableView": 2, - "setAnimateSelectionChanges": 1, - "count": 99, - "objectAtIndex": 8, - "*s": 3, - "y": 12, - "CGRectMake": 8, - "self.bounds.size.width": 4, - "CGRectZero": 5, - "indexPath.section": 3, - "indexPath.row": 1, - "*section": 8, - "removeFromSuperview": 4, - "removeAllIndexes": 2, - "*sections": 1, - "initWithCapacity": 2, - "bounds": 2, - ".size.height": 1, - "self.contentInset.top*2": 1, - "section.sectionOffset": 1, - "sections": 4, - "addObject": 16, - "self.contentInset.bottom": 1, - "_enqueueReusableCell": 2, - "*identifier": 1, - "cell.reuseIdentifier": 1, - "*array": 9, - "array": 84, - "setObject": 9, - "forKey": 9, - "*c": 1, - "lastObject": 1, - "c": 7, - "removeLastObject": 1, - "prepareForReuse": 1, - "allValues": 1, - "static": 102, - "SortCells": 1, - "*a": 2, - "*b": 2, - "*ctx": 1, - "a.frame.origin.y": 2, - "b.frame.origin.y": 2, - "*v": 2, - "v": 4, - "sortedArrayUsingComparator": 1, - "NSComparator": 1, - "NSComparisonResult": 1, - "INDEX_PATHS_FOR_VISIBLE_ROWS": 4, - "allKeys": 1, - "*i": 4, - "*cell": 7, - "*indexes": 2, - "CGRectIntersectsRect": 5, - "indexes": 4, - "addIndex": 3, - "*indexPaths": 1, - "arrayWithCapacity": 2, - "cellRect": 7, - "indexPaths": 2, - "CGRectContainsPoint": 1, - "cellRect.origin.y": 1, - "<=>": 15, - "origin": 1, - "brief": 1, - "Obtain": 1, - "whose": 2, - "specified": 1, - "exists": 1, - "negative": 1, - "returned": 1, - "param": 1, - "p": 3, - "0": 2, - "width": 1, - "point.y": 1, - "section.headerView": 9, - "sectionLowerBound": 2, - "fromIndexPath.section": 1, - "sectionUpperBound": 3, - "toIndexPath.section": 1, - "rowLowerBound": 2, - "fromIndexPath.row": 1, - "rowUpperBound": 3, - "toIndexPath.row": 1, - "irow": 3, - "start": 3, - "lower": 1, - "bound": 1, - "iteration...": 1, - "rowCount": 3, - "j": 5, - "||": 42, - "FALSE": 2, - "&": 36, - "...then": 1, - "zero": 1, - "iterations": 1, - "_topVisibleIndexPath": 1, - "*topVisibleIndex": 1, - "sortedArrayUsingSelector": 1, - "topVisibleIndex": 2, - "setFrame": 2, - "f": 8, - "_tableFlags.forceSaveScrollPosition": 1, - "setContentOffset": 2, - "_tableFlags.didFirstLayout": 1, - "prevent": 2, - "auto": 2, - "layout": 3, - "pinned": 5, - "isKindOfClass": 2, - "TUITableViewSectionHeader": 5, - "class": 30, - ".pinnedToViewport": 2, - "TRUE": 1, - "pinnedHeader": 1, - "CGRectGetMaxY": 2, - "headerFrame": 4, - "pinnedHeader.frame.origin.y": 1, - "intersecting": 1, - "push": 1, - "upwards.": 1, - "pinnedHeaderFrame": 2, - "pinnedHeader.frame": 2, - "pinnedHeaderFrame.origin.y": 1, - "notify": 3, - "section.headerView.frame": 1, - "setNeedsLayout": 3, - "section.headerView.superview": 1, - "remove": 4, - "offscreen": 2, - "toRemove": 1, - "enumerateIndexesUsingBlock": 1, - "removeIndex": 1, - "_layoutCells": 3, - "visibleCellsNeedRelayout": 5, - "remaining": 1, - "cells": 7, - "cell.frame": 1, - "cell.layer.zPosition": 1, - "visibleRect": 3, - "Example": 1, - "old": 5, - "add": 5, - "*oldVisibleIndexPaths": 1, - "*newVisibleIndexPaths": 1, - "*indexPathsToRemove": 1, - "oldVisibleIndexPaths": 2, - "mutableCopy": 2, - "indexPathsToRemove": 2, - "removeObjectsInArray": 2, - "newVisibleIndexPaths": 2, - "*indexPathsToAdd": 1, - "indexPathsToAdd": 2, - "newly": 1, - "superview": 1, - "bringSubviewToFront": 1, - "self.contentSize": 3, - "headerViewRect": 3, - "s.height": 3, - "_headerView.frame.size.height": 2, - "visible.size.width": 3, - "_headerView.frame": 1, - "_headerView.hidden": 4, - "show": 2, - "pullDownRect": 4, - "_pullDownView.frame.size.height": 2, - "_pullDownView.hidden": 4, - "_pullDownView.frame": 1, - "self.delegate": 10, - "recycle": 1, - "regenerated": 3, - "layoutSubviews": 5, - "because": 1, - "might": 4, - "dragged": 1, - "clear": 3, - "removeAllObjects": 1, - "any": 3, - "re": 9, - "laid": 1, - "next": 2, - "_tableFlags.layoutSubviewsReentrancyGuard": 3, - "setAnimationsEnabled": 1, - "CATransaction": 3, - "begin": 1, - "setDisableActions": 1, - "_preLayoutCells": 2, - "munge": 2, - "contentOffset": 2, - "_layoutSectionHeaders": 2, - "_tableFlags.derepeaterEnabled": 1, - "commit": 1, - "r": 6, - "its": 9, - "our": 6, - "selected": 2, - "overlapped": 1, - "r.size.height": 4, - "headerFrame.size.height": 1, - "switch": 3, - "case": 8, - "nothing": 2, - "break": 13, - "r.origin.y": 1, - "v.size.height": 2, - "scrollRectToVisible": 2, - "sec": 3, - "_makeRowAtIndexPathFirstResponder": 2, - "responder": 2, - "made": 1, - "acceptsFirstResponder": 1, - "self.nsWindow": 3, - "makeFirstResponderIfNotAlreadyInResponderChain": 1, - "futureMakeFirstResponderRequestToken": 1, - "*oldIndexPath": 1, - "isEqual": 4, - "oldIndexPath": 2, - "just": 4, - "setSelected": 2, - "already": 4, - "setNeedsDisplay": 2, - "selection": 3, - "actually": 2, - "NSResponder": 1, - "*firstResponder": 1, - "firstResponder": 3, - "indexPathForFirstVisibleRow": 2, - "*firstIndexPath": 1, - "firstIndexPath": 4, - "indexPathForLastVisibleRow": 2, - "*lastIndexPath": 5, - "lastIndexPath": 8, - "performKeyAction": 2, - "repeative": 1, - "press": 1, - "noCurrentSelection": 2, - "isARepeat": 1, - "TUITableViewCalculateNextIndexPathBlock": 3, - "selectValidIndexPath": 3, - "*startForNoSelection": 2, - "calculateNextIndexPath": 4, - "NSParameterAssert": 15, - "foundValidNextRow": 4, - "*newIndexPath": 1, - "newIndexPath": 6, - "startForNoSelection": 1, - "_delegate": 2, - "self.animateSelectionChanges": 1, - "charactersIgnoringModifiers": 1, - "characterAtIndex": 1, - "NSUpArrowFunctionKey": 1, - "lastIndexPath.section": 2, - "lastIndexPath.row": 2, - "rowsInSection": 7, - "NSDownArrowFunctionKey": 1, - "_tableFlags.maintainContentOffsetAfterReload": 2, - "setMaintainContentOffsetAfterReload": 1, - "newValue": 2, - "indexPathWithIndexes": 1, - "indexAtPosition": 2, - "#include": 18, - "": 1, - "": 2, - "": 2, - "": 1, - "": 1, - "#ifdef": 10, - "__OBJC__": 4, - "": 2, - "": 2, - "": 2, - "": 1, - "": 2, - "": 1, - "__cplusplus": 2, - "NSINTEGER_DEFINED": 3, - "defined": 16, - "__LP64__": 4, - "NS_BUILD_32_LIKE_64": 3, - "NSIntegerMin": 3, - "LONG_MIN": 3, - "NSIntegerMax": 4, - "LONG_MAX": 3, - "NSUIntegerMax": 7, - "ULONG_MAX": 3, - "#else": 8, - "INT_MIN": 3, - "INT_MAX": 2, - "UINT_MAX": 3, - "_JSONKIT_H_": 3, - "__GNUC__": 14, - "__APPLE_CC__": 2, - "JK_DEPRECATED_ATTRIBUTE": 6, - "__attribute__": 3, - "deprecated": 1, - "JSONKIT_VERSION_MAJOR": 1, - "JSONKIT_VERSION_MINOR": 1, - "JKFlags": 5, - "JKParseOptionNone": 1, - "JKParseOptionStrict": 1, - "JKParseOptionComments": 2, - "<<": 16, - "JKParseOptionUnicodeNewlines": 2, - "JKParseOptionLooseUnicode": 2, - "JKParseOptionPermitTextAfterValidJSON": 2, - "JKParseOptionValidFlags": 1, - "JKParseOptionFlags": 12, - "JKSerializeOptionNone": 3, - "JKSerializeOptionPretty": 2, - "JKSerializeOptionEscapeUnicode": 2, - "JKSerializeOptionEscapeForwardSlashes": 2, - "JKSerializeOptionValidFlags": 1, - "JKSerializeOptionFlags": 16, - "JKParseState": 18, - "Opaque": 1, - "private": 1, - "type.": 3, - "JSONDecoder": 2, - "*parseState": 16, - "decoder": 1, - "decoderWithParseOptions": 1, - "parseOptionFlags": 11, - "initWithParseOptions": 1, - "clearCache": 1, - "parseUTF8String": 2, - "size_t": 23, - "Deprecated": 4, - "JSONKit": 11, - "v1.4.": 4, - "objectWithUTF8String": 4, - "instead.": 4, - "parseJSONData": 2, - "jsonData": 6, - "objectWithData": 7, - "mutableObjectWithUTF8String": 2, - "mutableObjectWithData": 2, - "////////////": 4, - "Deserializing": 1, - "methods": 2, - "JSONKitDeserializing": 2, - "objectFromJSONString": 1, - "objectFromJSONStringWithParseOptions": 2, - "mutableObjectFromJSONString": 1, - "mutableObjectFromJSONStringWithParseOptions": 2, - "objectFromJSONData": 1, - "objectFromJSONDataWithParseOptions": 2, - "mutableObjectFromJSONData": 1, - "mutableObjectFromJSONDataWithParseOptions": 2, - "Serializing": 1, - "JSONKitSerializing": 3, - "JSONData": 3, - "Invokes": 2, - "JSONDataWithOptions": 8, - "includeQuotes": 6, - "serializeOptions": 14, - "JSONString": 3, - "JSONStringWithOptions": 8, - "serializeUnsupportedClassesUsingDelegate": 4, - "__BLOCKS__": 1, - "JSONKitSerializingBlockAdditions": 2, - "serializeUnsupportedClassesUsingBlock": 4, - "Foo": 2, "": 1, + "#else": 8, "": 1, + "@": 258, + "static": 102, "*defaultUserAgent": 1, "*ASIHTTPRequestRunLoopMode": 1, "CFOptionFlags": 1, "kNetworkEvents": 1, "kCFStreamEventHasBytesAvailable": 1, + "|": 13, "kCFStreamEventEndEncountered": 1, "kCFStreamEventErrorOccurred": 1, "*sessionCredentialsStore": 1, @@ -47104,6 +46396,7 @@ "NSNotification": 2, "note": 1, "performBlockOnMainThread": 2, + "block": 18, "releaseBlocksOnMainThread": 4, "releaseBlocks": 3, "blocks": 16, @@ -47116,8 +46409,11 @@ "*readStream": 1, "readStreamIsScheduled": 1, "setSynchronous": 2, + "@implementation": 13, "initialize": 1, + "class": 30, "persistentConnectionsPool": 3, + "alloc": 47, "connectionsLock": 3, "progressLock": 1, "bandwidthThrottlingLock": 1, @@ -47125,6 +46421,7 @@ "sessionCredentialsLock": 1, "delegateAuthenticationLock": 1, "bandwidthUsageTracker": 1, + "initWithCapacity": 2, "ASIRequestTimedOutError": 1, "initWithDomain": 5, "dictionaryWithObjectsAndKeys": 10, @@ -47154,6 +46451,7 @@ "setRequestCookies": 2, "autorelease": 21, "setDidStartSelector": 1, + "@selector": 28, "setDidReceiveResponseHeadersSelector": 1, "setWillRedirectSelector": 1, "willRedirectToURL": 1, @@ -47162,6 +46460,7 @@ "setDidReceiveDataSelector": 1, "setCancelledLock": 1, "setDownloadCache": 3, + "return": 165, "ASIUseDefaultCachePolicy": 1, "*request": 1, "setCachePolicy": 1, @@ -47207,7 +46506,10 @@ "requestID": 2, "dataDecompressor": 1, "userAgentString": 1, + "super": 25, "*blocks": 1, + "array": 84, + "addObject": 16, "performSelectorOnMainThread": 2, "waitUntilDone": 4, "isMainThread": 2, @@ -47215,6 +46517,8 @@ "exits": 1, "setRequestHeaders": 2, "dictionaryWithCapacity": 2, + "setObject": 9, + "forKey": 9, "Are": 1, "submitting": 1, "disk": 1, @@ -47232,6 +46536,8 @@ "ASIDataCompressor": 2, "compressDataFromFile": 1, "toFile": 1, + "&": 36, + "else": 35, "setPostLength": 3, "NSFileManager": 1, "attributesOfItemAtPath": 1, @@ -47243,6 +46549,8 @@ "compressData": 1, "setCompressedPostBody": 1, "compressedBody": 1, + "isEqualToString": 13, + "||": 42, "setHaveBuiltPostBody": 1, "setupPostBody": 3, "setPostBodyFilePath": 1, @@ -47255,9 +46563,13 @@ "appendData": 2, "*stream": 1, "initWithFileAtPath": 1, + "NSUInteger": 93, "bytesRead": 5, "hasBytesAvailable": 1, + "char": 19, "*256": 1, + "sizeof": 13, + "break": 13, "dataWithBytes": 1, "*m": 1, "unlock": 20, @@ -47265,8 +46577,11 @@ "newRequestMethod": 3, "*u": 1, "u": 4, + "isEqual": 4, "NULL": 152, "setRedirectURL": 2, + "d": 11, + "setDelegate": 4, "newDelegate": 6, "q": 2, "setQueue": 2, @@ -47297,6 +46612,7 @@ "runLoopMode": 2, "beforeDate": 1, "distantFuture": 1, + "start": 3, "addOperation": 1, "concurrency": 1, "isConcurrent": 1, @@ -47317,10 +46633,12 @@ "proceed.": 1, "setDidUseCachedResponse": 1, "Must": 1, + "call": 8, "create": 1, "needs": 1, "mainRequest": 9, "ll": 6, + "already": 4, "CFHTTPMessageRef": 3, "Create": 1, "request.": 1, @@ -47333,8 +46651,10 @@ "//If": 2, "let": 8, "generate": 1, + "its": 9, "Even": 1, "chance": 2, + "add": 5, "ASIS3Request": 1, "does": 3, "process": 1, @@ -47343,6 +46663,7 @@ "*exception": 1, "*underlyingError": 1, "exception": 3, + "name": 7, "reason": 1, "NSLocalizedFailureReasonErrorKey": 1, "underlyingError": 1, @@ -47352,15 +46673,20 @@ "*credentials": 1, "auth": 2, "basic": 3, + "any": 3, "cached": 2, + "key": 32, "challenge": 1, "apply": 2, "like": 1, "CFHTTPMessageApplyCredentialDictionary": 2, "CFDictionaryRef": 1, "setAuthenticationScheme": 1, + "happens": 4, "%": 30, + "re": 9, "retrying": 1, + "our": 6, "measure": 1, "throttled": 1, "setPostBodyReadStream": 2, @@ -47384,6 +46710,8 @@ "CFTypeRef": 1, "sslProperties": 2, "*certificates": 1, + "arrayWithCapacity": 2, + "count": 99, "*oldStream": 1, "redirecting": 2, "connecting": 2, @@ -47392,6 +46720,7 @@ "Check": 1, "expired": 1, "timeIntervalSinceNow": 1, + "<": 56, "DEBUG_PERSISTENT_CONNECTIONS": 3, "removeObject": 2, "//Some": 1, @@ -47399,12 +46728,15 @@ "there": 1, "one": 1, "We": 7, + "just": 4, + "old": 5, "//lists.apple.com/archives/Macnetworkprog/2006/Mar/msg00119.html": 1, "oldStream": 4, "streamSuccessfullyOpened": 1, "setConnectionCanBeReused": 2, "Record": 1, "started": 1, + "nothing": 2, "setLastActivityTime": 1, "setStatusTimer": 2, "timerWithTimeInterval": 1, @@ -47419,6 +46751,7 @@ "reliable": 1, "way": 1, "track": 1, + "strong": 4, "slow.": 1, "secondsSinceLastActivity": 1, "*1.5": 1, @@ -47426,6 +46759,7 @@ "checking": 1, "told": 1, "us": 2, + "auto": 2, "resuming": 1, "Range": 1, "take": 1, @@ -47437,6 +46771,7 @@ "unsignedLongLongValue": 1, "middle": 1, "said": 1, + "might": 4, "MaxValue": 2, "UIProgressView": 2, "double": 3, @@ -47517,6 +46852,7 @@ "setNeedsRedirect": 1, "means": 1, "manually": 1, + "added": 5, "those": 1, "global": 1, "But": 1, @@ -47562,85 +46898,123 @@ "properties": 1, "ASIAuthenticationDialog": 2, "had": 1, - "SBJsonParser": 2, - "maxDepth": 2, - "NSData*": 1, - "objectWithString": 5, - "repr": 5, - "jsonText": 1, - "NSError**": 2, - "": 1, - "kFramePadding": 7, - "kElementSpacing": 3, - "kGroupSpacing": 5, - "addHeader": 5, - "yOffset": 42, - "UILabel*": 2, - "label": 6, - "UILabel": 2, - "label.text": 2, - "label.font": 3, - "label.numberOfLines": 2, - "label.frame": 4, - "frame.origin.x": 3, - "frame.size.width": 4, - "sizeWithFont": 2, - "constrainedToSize": 2, - "CGSizeMake": 3, - "label.frame.size.height": 2, - "addText": 5, - "UIScrollView": 1, - "_scrollView.autoresizingMask": 1, - "UIViewAutoresizingFlexibleHeight": 1, - "NSLocalizedString": 9, - "UIButton*": 1, - "button": 5, - "UIButton": 1, - "buttonWithType": 1, - "UIButtonTypeRoundedRect": 1, - "setTitle": 1, - "UIControlStateNormal": 1, - "addTarget": 1, - "action": 1, - "debugTestAction": 2, - "forControlEvents": 1, - "UIControlEventTouchUpInside": 1, - "sizeToFit": 1, - "button.frame": 2, - "TTCurrentLocale": 2, - "displayNameForKey": 1, - "NSLocaleIdentifier": 1, - "localeIdentifier": 1, - "TTPathForBundleResource": 1, - "TTPathForDocumentsResource": 1, - "dataUsingEncoding": 2, - "NSUTF8StringEncoding": 2, - "md5Hash": 1, - "setContentSize": 1, - "viewDidUnload": 2, - "viewDidAppear": 2, - "flashScrollIndicators": 1, - "DEBUG": 1, - "TTDPRINTMETHODNAME": 1, - "TTDPRINT": 9, - "TTMAXLOGLEVEL": 1, - "TTDERROR": 1, - "TTLOGLEVEL_ERROR": 1, - "TTDWARNING": 1, - "TTLOGLEVEL_WARNING": 1, - "TTDINFO": 1, - "TTLOGLEVEL_INFO": 1, - "TTDCONDITIONLOG": 3, - "rand": 1, - "TTDASSERT": 2, + "Foo": 2, + "NSObject": 5, + "": 2, "FooAppDelegate": 2, - "window": 1, - "applicationDidFinishLaunching": 1, - "aNotification": 1, "": 1, + "@private": 2, "NSWindow": 2, "*window": 2, "IBOutlet": 1, + "@synthesize": 7, + "window": 1, + "applicationDidFinishLaunching": 1, + "aNotification": 1, + "argc": 1, + "*argv": 1, + "NSLog": 4, + "#include": 18, + "": 1, + "": 2, + "": 2, + "": 1, + "": 1, + "#ifdef": 10, + "__OBJC__": 4, + "": 2, + "": 2, + "": 2, + "": 1, + "": 2, + "": 1, + "__cplusplus": 2, + "NSINTEGER_DEFINED": 3, + "defined": 16, + "__LP64__": 4, + "NS_BUILD_32_LIKE_64": 3, + "NSIntegerMin": 3, + "LONG_MIN": 3, + "NSIntegerMax": 4, + "LONG_MAX": 3, + "NSUIntegerMax": 7, + "ULONG_MAX": 3, + "INT_MIN": 3, + "INT_MAX": 2, + "UINT_MAX": 3, + "_JSONKIT_H_": 3, + "__GNUC__": 14, + "__APPLE_CC__": 2, + "JK_DEPRECATED_ATTRIBUTE": 6, + "__attribute__": 3, + "deprecated": 1, + "JSONKIT_VERSION_MAJOR": 1, + "JSONKIT_VERSION_MINOR": 1, + "JKFlags": 5, + "JKParseOptionNone": 1, + "JKParseOptionStrict": 1, + "JKParseOptionComments": 2, + "<<": 16, + "JKParseOptionUnicodeNewlines": 2, + "JKParseOptionLooseUnicode": 2, + "JKParseOptionPermitTextAfterValidJSON": 2, + "JKParseOptionValidFlags": 1, + "JKParseOptionFlags": 12, + "JKSerializeOptionNone": 3, + "JKSerializeOptionPretty": 2, + "JKSerializeOptionEscapeUnicode": 2, + "JKSerializeOptionEscapeForwardSlashes": 2, + "JKSerializeOptionValidFlags": 1, + "JKSerializeOptionFlags": 16, + "struct": 20, + "JKParseState": 18, + "Opaque": 1, + "private": 1, + "type.": 3, + "JSONDecoder": 2, + "*parseState": 16, + "decoder": 1, + "decoderWithParseOptions": 1, + "parseOptionFlags": 11, + "initWithParseOptions": 1, + "clearCache": 1, + "parseUTF8String": 2, + "size_t": 23, + "Deprecated": 4, + "JSONKit": 11, + "v1.4.": 4, + "objectWithUTF8String": 4, + "instead.": 4, + "parseJSONData": 2, + "jsonData": 6, + "objectWithData": 7, + "mutableObjectWithUTF8String": 2, + "mutableObjectWithData": 2, + "////////////": 4, + "Deserializing": 1, + "methods": 2, + "JSONKitDeserializing": 2, + "objectFromJSONString": 1, + "objectFromJSONStringWithParseOptions": 2, + "mutableObjectFromJSONString": 1, + "mutableObjectFromJSONStringWithParseOptions": 2, + "objectFromJSONData": 1, + "objectFromJSONDataWithParseOptions": 2, + "mutableObjectFromJSONData": 1, + "mutableObjectFromJSONDataWithParseOptions": 2, + "Serializing": 1, + "JSONKitSerializing": 3, + "JSONData": 3, + "Invokes": 2, + "JSONDataWithOptions": 8, + "includeQuotes": 6, + "serializeOptions": 14, + "JSONString": 3, + "JSONStringWithOptions": 8, + "serializeUnsupportedClassesUsingDelegate": 4, + "__BLOCKS__": 1, + "JSONKitSerializingBlockAdditions": 2, + "serializeUnsupportedClassesUsingBlock": 4, "": 1, "": 1, "": 1, @@ -47723,6 +47097,7 @@ "__inline__": 1, "always_inline": 1, "JK_ALIGNED": 1, + "arg": 11, "aligned": 1, "JK_UNUSED_ARG": 2, "unused": 3, @@ -47841,6 +47216,7 @@ "JKObjCImpCache": 2, "JKHashTableEntry": 21, "serializeObject": 1, + "options": 6, "optionFlags": 1, "encodeOption": 2, "JKSERIALIZER_BLOCKS_PROTO": 1, @@ -47892,6 +47268,7 @@ "*objects": 5, "mutableCollection": 7, "_JKArrayInsertObjectAtIndex": 3, + "*array": 9, "newObject": 12, "objectIndex": 48, "_JKArrayReplaceObjectAtIndexWithObject": 3, @@ -47970,12 +47347,14 @@ "jk_encode_write1": 1, "es": 3, "dc": 3, + "f": 8, "_jk_encode_prettyPrint": 1, "jk_min": 1, "b": 4, "jk_max": 3, "jk_calculateHash": 1, "currentHash": 1, + "c": 7, "Class": 3, "_JKArrayClass": 5, "_JKArrayInstanceSize": 4, @@ -48020,6 +47399,7 @@ "_cmd": 16, "NSCParameterAssert": 19, "objects": 58, + "calloc": 5, "Directly": 2, "allocate": 2, "instance": 2, @@ -48027,6 +47407,7 @@ "isa": 2, "malloc": 1, "memcpy": 2, + "<=>": 15, "*newObjects": 1, "newObjects": 2, "realloc": 1, @@ -48034,13 +47415,17 @@ "memset": 1, "memmove": 2, "atObject": 12, + "free": 4, + "NSParameterAssert": 15, "getObjects": 2, "objectsPtr": 3, + "range": 8, "NSRange": 1, "NSMaxRange": 4, "NSRangeException": 6, "range.location": 2, "range.length": 1, + "objectAtIndex": 8, "countByEnumeratingWithState": 2, "NSFastEnumerationState": 2, "stackbuf": 8, @@ -48074,6 +47459,8 @@ "entry": 41, ".key": 11, "jk_dictionaryCapacities": 4, + "bottom": 6, + "top": 8, "mid": 5, "tableSize": 2, "lround": 1, @@ -48101,6 +47488,7 @@ "keyEntry": 4, "CFEqual": 2, "CFHash": 1, + "table": 7, "would": 2, "now.": 1, "entryForKey": 3, @@ -48108,6 +47496,7 @@ "andKeys": 1, "arrayIdx": 5, "keyEnumerator": 1, + "copy": 4, "Why": 1, "earth": 1, "complain": 1, @@ -48122,6 +47511,8 @@ "Invalid": 1, "character": 1, "x.": 1, + "n": 7, + "r": 6, "F": 1, ".": 2, "e": 1, @@ -48129,6 +47520,117 @@ "token": 1, "wanted": 1, "Expected": 3, + "MainMenuViewController": 2, + "TTTableViewController": 1, + "///////////////////////////////////////////////////////////////////////////////////////////////////": 24, + "initWithNibName": 3, + "nibNameOrNil": 1, + "bundle": 3, + "NSBundle": 1, + "nibBundleOrNil": 1, + "self.title": 2, + "//self.variableHeightRows": 1, + "self.tableViewStyle": 1, + "UITableViewStyleGrouped": 1, + "self.dataSource": 1, + "TTSectionedDataSource": 1, + "dataSourceWithObjects": 1, + "TTTableTextItem": 48, + "itemWithText": 48, + "URL": 48, + "PlaygroundViewController": 2, + "UIViewController": 2, + "UIScrollView*": 1, + "_scrollView": 9, + "": 1, + "CGFloat": 44, + "kFramePadding": 7, + "kElementSpacing": 3, + "kGroupSpacing": 5, + "addHeader": 5, + "yOffset": 42, + "UILabel*": 2, + "label": 6, + "UILabel": 2, + "initWithFrame": 12, + "CGRectZero": 5, + "label.text": 2, + "label.font": 3, + "UIFont": 3, + "systemFontOfSize": 2, + "label.numberOfLines": 2, + "CGRect": 41, + "frame": 38, + "label.frame": 4, + "frame.origin.x": 3, + "frame.origin.y": 16, + "frame.size.width": 4, + "frame.size.height": 15, + "sizeWithFont": 2, + "constrainedToSize": 2, + "CGSizeMake": 3, + ".height": 4, + "addSubview": 8, + "label.frame.size.height": 2, + "TT_RELEASE_SAFELY": 12, + "addText": 5, + "loadView": 4, + "UIScrollView": 1, + "self.view.bounds": 2, + "_scrollView.autoresizingMask": 1, + "UIViewAutoresizingFlexibleWidth": 4, + "UIViewAutoresizingFlexibleHeight": 1, + "self.view": 4, + "NSLocalizedString": 9, + "UIButton*": 1, + "button": 5, + "UIButton": 1, + "buttonWithType": 1, + "UIButtonTypeRoundedRect": 1, + "setTitle": 1, + "forState": 4, + "UIControlStateNormal": 1, + "addTarget": 1, + "action": 1, + "debugTestAction": 2, + "forControlEvents": 1, + "UIControlEventTouchUpInside": 1, + "sizeToFit": 1, + "button.frame": 2, + "TTCurrentLocale": 2, + "displayNameForKey": 1, + "NSLocaleIdentifier": 1, + "localeIdentifier": 1, + "TTPathForBundleResource": 1, + "TTPathForDocumentsResource": 1, + "dataUsingEncoding": 2, + "NSUTF8StringEncoding": 2, + "md5Hash": 1, + "setContentSize": 1, + "viewDidUnload": 2, + "viewDidAppear": 2, + "animated": 27, + "flashScrollIndicators": 1, + "DEBUG": 1, + "TTDPRINTMETHODNAME": 1, + "TTDPRINT": 9, + "TTMAXLOGLEVEL": 1, + "TTDERROR": 1, + "TTLOGLEVEL_ERROR": 1, + "TTDWARNING": 1, + "TTLOGLEVEL_WARNING": 1, + "TTDINFO": 1, + "TTLOGLEVEL_INFO": 1, + "TTDCONDITIONLOG": 3, + "rand": 1, + "TTDASSERT": 2, + "SBJsonParser": 2, + "maxDepth": 2, + "NSData*": 1, + "objectWithString": 5, + "repr": 5, + "jsonText": 1, + "NSError**": 2, "self.maxDepth": 2, "Methods": 1, "self.error": 3, @@ -48143,7 +47645,9 @@ "parser.maxDepth": 1, "parser.delegate": 1, "adapter": 1, + "switch": 3, "parse": 1, + "case": 8, "SBJsonStreamParserComplete": 1, "accumulator.value": 1, "SBJsonStreamParserWaitingForData": 1, @@ -48154,20 +47658,516 @@ "*ui": 1, "*error_": 1, "ui": 1, - "MainMenuViewController": 2, - "TTTableViewController": 1, - "nibNameOrNil": 1, - "NSBundle": 1, - "nibBundleOrNil": 1, - "//self.variableHeightRows": 1, - "self.tableViewStyle": 1, - "UITableViewStyleGrouped": 1, - "self.dataSource": 1, - "TTSectionedDataSource": 1, - "dataSourceWithObjects": 1, - "TTTableTextItem": 48, - "itemWithText": 48, - "URL": 48 + "StyleViewController": 2, + "TTViewController": 1, + "TTStyle*": 7, + "_style": 8, + "_styleHighlight": 6, + "_styleDisabled": 6, + "_styleSelected": 6, + "_styleType": 6, + "kTextStyleType": 2, + "kViewStyleType": 2, + "kImageStyleType": 2, + "initWithStyleName": 1, + "styleType": 3, + "TTStyleSheet": 4, + "globalStyleSheet": 4, + "styleWithSelector": 4, + "UIControlStateHighlighted": 1, + "UIControlStateDisabled": 1, + "UIControlStateSelected": 1, + "addTextView": 5, + "title": 2, + "style": 29, + "textFrame": 3, + "TTRectInset": 3, + "UIEdgeInsetsMake": 3, + "StyleView*": 2, + "StyleView": 2, + "text.text": 1, + "TTStyleContext*": 1, + "context": 4, + "TTStyleContext": 1, + "context.frame": 1, + "context.delegate": 1, + "context.font": 1, + "systemFontSize": 1, + "CGSize": 5, + "addToSize": 1, + "CGSizeZero": 1, + "size.width": 1, + "size.height": 1, + "textFrame.size": 1, + "text.frame": 1, + "text.style": 1, + "text.backgroundColor": 1, + "UIColor": 3, + "colorWithRed": 3, + "green": 3, + "blue": 3, + "alpha": 3, + "text.autoresizingMask": 1, + "UIViewAutoresizingFlexibleBottomMargin": 3, + "addView": 5, + "viewFrame": 4, + "view": 11, + "view.style": 2, + "view.backgroundColor": 2, + "view.autoresizingMask": 2, + "addImageView": 5, + "TTImageView*": 1, + "TTImageView": 1, + "view.urlPath": 1, + "imageFrame": 2, + "view.frame": 2, + "imageFrame.size": 1, + "view.image.size": 1, + "TUITableViewStylePlain": 2, + "regular": 1, + "TUITableViewStyleGrouped": 1, + "grouped": 1, + "stick": 1, + "scroll": 3, + "TUITableViewStyle": 4, + "TUITableViewScrollPositionNone": 2, + "TUITableViewScrollPositionTop": 2, + "TUITableViewScrollPositionMiddle": 1, + "TUITableViewScrollPositionBottom": 1, + "TUITableViewScrollPositionToVisible": 3, + "supported": 1, + "TUITableViewScrollPosition": 5, + "TUITableViewInsertionMethodBeforeIndex": 1, + "NSOrderedAscending": 4, + "TUITableViewInsertionMethodAtIndex": 1, + "NSOrderedSame": 1, + "TUITableViewInsertionMethodAfterIndex": 1, + "NSOrderedDescending": 4, + "TUITableViewInsertionMethod": 3, + "TUITableViewCell": 23, + "@protocol": 3, + "TUITableViewDataSource": 2, + "TUITableView": 25, + "TUITableViewDelegate": 1, + "": 1, + "TUIScrollViewDelegate": 1, + "tableView": 45, + "heightForRowAtIndexPath": 2, + "TUIFastIndexPath": 89, + "indexPath": 47, + "@optional": 2, + "willDisplayCell": 2, + "cell": 21, + "forRowAtIndexPath": 2, + "subview": 1, + "didSelectRowAtIndexPath": 3, + "left/right": 2, + "mouse": 2, + "down": 1, + "up/down": 1, + "didDeselectRowAtIndexPath": 3, + "didClickRowAtIndexPath": 1, + "withEvent": 2, + "NSEvent": 3, + "event": 8, + "look": 1, + "clickCount": 1, + "TUITableView*": 1, + "shouldSelectRowAtIndexPath": 3, + "TUIFastIndexPath*": 1, + "forEvent": 3, + "NSEvent*": 1, + "NSMenu": 1, + "menuForRowAtIndexPath": 1, + "tableViewWillReloadData": 3, + "tableViewDidReloadData": 3, + "targetIndexPathForMoveFromRowAtIndexPath": 1, + "fromPath": 1, + "toProposedIndexPath": 1, + "proposedPath": 1, + "TUIScrollView": 1, + "__unsafe_unretained": 2, + "": 4, + "_dataSource": 6, + "weak": 2, + "_sectionInfo": 27, + "TUIView": 17, + "_pullDownView": 4, + "_headerView": 8, + "_lastSize": 1, + "_contentHeight": 7, + "NSMutableIndexSet": 6, + "_visibleSectionHeaders": 6, + "_visibleItems": 14, + "_reusableTableCells": 5, + "_selectedIndexPath": 9, + "_indexPathShouldBeFirstResponder": 2, + "_futureMakeFirstResponderToken": 2, + "_keepVisibleIndexPathForReload": 2, + "_relativeOffsetForReload": 2, + "drag": 1, + "reorder": 1, + "_dragToReorderCell": 5, + "CGPoint": 7, + "_currentDragToReorderLocation": 1, + "_currentDragToReorderMouseOffset": 1, + "_currentDragToReorderIndexPath": 1, + "_currentDragToReorderInsertionMethod": 1, + "_previousDragToReorderIndexPath": 1, + "_previousDragToReorderInsertionMethod": 1, + "animateSelectionChanges": 3, + "forceSaveScrollPosition": 1, + "derepeaterEnabled": 1, + "layoutSubviewsReentrancyGuard": 1, + "didFirstLayout": 1, + "dataSourceNumberOfSectionsInTableView": 1, + "delegateTableViewWillDisplayCellForRowAtIndexPath": 1, + "maintainContentOffsetAfterReload": 3, + "_tableFlags": 1, + "creation.": 1, + "calls": 1, + "UITableViewStylePlain": 1, + "unsafe_unretained": 2, + "dataSource": 2, + "": 4, + "readwrite": 1, + "reloadData": 3, + "reloadDataMaintainingVisibleIndexPath": 2, + "relativeOffset": 5, + "reloadLayout": 2, + "numberOfSections": 10, + "numberOfRowsInSection": 9, + "section": 60, + "rectForHeaderOfSection": 4, + "rectForSection": 3, + "rectForRowAtIndexPath": 7, + "NSIndexSet": 4, + "indexesOfSectionsInRect": 2, + "rect": 10, + "indexesOfSectionHeadersInRect": 2, + "indexPathForCell": 2, + "returns": 4, + "visible": 16, + "indexPathsForRowsInRect": 3, + "indexPathForRowAtPoint": 2, + "point": 11, + "indexPathForRowAtVerticalOffset": 2, + "offset": 23, + "indexOfSectionWithHeaderAtPoint": 2, + "indexOfSectionWithHeaderAtVerticalOffset": 2, + "enumerateIndexPathsUsingBlock": 2, + "*indexPath": 11, + "*stop": 7, + "enumerateIndexPathsWithOptions": 2, + "NSEnumerationOptions": 4, + "usingBlock": 6, + "enumerateIndexPathsFromIndexPath": 4, + "fromIndexPath": 6, + "toIndexPath": 12, + "withOptions": 4, + "headerViewForSection": 6, + "cellForRowAtIndexPath": 9, + "index": 11, + "visibleCells": 3, + "order": 1, + "sortedVisibleCells": 2, + "indexPathsForVisibleRows": 2, + "scrollToRowAtIndexPath": 3, + "atScrollPosition": 3, + "scrollPosition": 9, + "indexPathForSelectedRow": 4, + "representing": 1, + "row": 36, + "selection.": 1, + "indexPathForFirstRow": 2, + "indexPathForLastRow": 2, + "selectRowAtIndexPath": 3, + "deselectRowAtIndexPath": 3, + "*pullDownView": 1, + "pullDownViewIsVisible": 3, + "*headerView": 6, + "dequeueReusableCellWithIdentifier": 2, + "identifier": 7, + "": 1, + "@required": 1, + "canMoveRowAtIndexPath": 2, + "moveRowAtIndexPath": 2, + "numberOfSectionsInTableView": 3, + "NSIndexPath": 5, + "indexPathForRow": 11, + "inSection": 11, + "HEADER_Z_POSITION": 2, + "beginning": 1, + "height": 19, + "TUITableViewRowInfo": 3, + "TUITableViewSection": 16, + "*_tableView": 1, + "*_headerView": 1, + "reusable": 1, + "similar": 1, + "UITableView": 1, + "sectionIndex": 23, + "numberOfRows": 13, + "sectionHeight": 9, + "sectionOffset": 8, + "*rowInfo": 1, + "initWithNumberOfRows": 2, + "_tableView": 3, + "rowInfo": 7, + "_setupRowHeights": 2, + "*header": 1, + "self.headerView": 2, + "roundf": 2, + "header.frame.size.height": 1, + "i": 41, + "h": 3, + "_tableView.delegate": 1, + ".offset": 2, + "rowHeight": 2, + "sectionRowOffset": 2, + "tableRowOffset": 2, + "headerHeight": 4, + "self.headerView.frame.size.height": 1, + "headerView": 14, + "_tableView.dataSource": 3, + "respondsToSelector": 8, + "_headerView.autoresizingMask": 1, + "TUIViewAutoresizingFlexibleWidth": 1, + "_headerView.layer.zPosition": 1, + "Private": 1, + "_updateSectionInfo": 2, + "_updateDerepeaterViews": 2, + "pullDownView": 1, + "_tableFlags.animateSelectionChanges": 3, + "_tableFlags.delegateTableViewWillDisplayCellForRowAtIndexPath": 1, + "setDataSource": 1, + "_tableFlags.dataSourceNumberOfSectionsInTableView": 2, + "setAnimateSelectionChanges": 1, + "*s": 3, + "y": 12, + "CGRectMake": 8, + "self.bounds.size.width": 4, + "indexPath.section": 3, + "indexPath.row": 1, + "*section": 8, + "removeFromSuperview": 4, + "removeAllIndexes": 2, + "*sections": 1, + "bounds": 2, + ".size.height": 1, + "self.contentInset.top*2": 1, + "section.sectionOffset": 1, + "sections": 4, + "self.contentInset.bottom": 1, + "_enqueueReusableCell": 2, + "*identifier": 1, + "cell.reuseIdentifier": 1, + "*c": 1, + "lastObject": 1, + "removeLastObject": 1, + "prepareForReuse": 1, + "allValues": 1, + "SortCells": 1, + "*a": 2, + "*b": 2, + "*ctx": 1, + "a.frame.origin.y": 2, + "b.frame.origin.y": 2, + "*v": 2, + "v": 4, + "sortedArrayUsingComparator": 1, + "NSComparator": 1, + "NSComparisonResult": 1, + "INDEX_PATHS_FOR_VISIBLE_ROWS": 4, + "allKeys": 1, + "*i": 4, + "*cell": 7, + "*indexes": 2, + "CGRectIntersectsRect": 5, + "indexes": 4, + "addIndex": 3, + "*indexPaths": 1, + "cellRect": 7, + "indexPaths": 2, + "CGRectContainsPoint": 1, + "cellRect.origin.y": 1, + "origin": 1, + "brief": 1, + "Obtain": 1, + "whose": 2, + "specified": 1, + "exists": 1, + "negative": 1, + "returned": 1, + "param": 1, + "p": 3, + "0": 2, + "width": 1, + "point.y": 1, + "section.headerView": 9, + "sectionLowerBound": 2, + "fromIndexPath.section": 1, + "sectionUpperBound": 3, + "toIndexPath.section": 1, + "rowLowerBound": 2, + "fromIndexPath.row": 1, + "rowUpperBound": 3, + "toIndexPath.row": 1, + "irow": 3, + "lower": 1, + "bound": 1, + "iteration...": 1, + "rowCount": 3, + "j": 5, + "FALSE": 2, + "...then": 1, + "zero": 1, + "iterations": 1, + "_topVisibleIndexPath": 1, + "*topVisibleIndex": 1, + "sortedArrayUsingSelector": 1, + "topVisibleIndex": 2, + "setFrame": 2, + "_tableFlags.forceSaveScrollPosition": 1, + "setContentOffset": 2, + "_tableFlags.didFirstLayout": 1, + "prevent": 2, + "layout": 3, + "pinned": 5, + "isKindOfClass": 2, + "TUITableViewSectionHeader": 5, + ".pinnedToViewport": 2, + "TRUE": 1, + "pinnedHeader": 1, + "CGRectGetMaxY": 2, + "headerFrame": 4, + "pinnedHeader.frame.origin.y": 1, + "intersecting": 1, + "push": 1, + "upwards.": 1, + "pinnedHeaderFrame": 2, + "pinnedHeader.frame": 2, + "pinnedHeaderFrame.origin.y": 1, + "notify": 3, + "section.headerView.frame": 1, + "setNeedsLayout": 3, + "section.headerView.superview": 1, + "remove": 4, + "offscreen": 2, + "toRemove": 1, + "enumerateIndexesUsingBlock": 1, + "removeIndex": 1, + "_layoutCells": 3, + "visibleCellsNeedRelayout": 5, + "remaining": 1, + "cells": 7, + "cell.frame": 1, + "cell.layer.zPosition": 1, + "visibleRect": 3, + "Example": 1, + "*oldVisibleIndexPaths": 1, + "*newVisibleIndexPaths": 1, + "*indexPathsToRemove": 1, + "oldVisibleIndexPaths": 2, + "mutableCopy": 2, + "indexPathsToRemove": 2, + "removeObjectsInArray": 2, + "newVisibleIndexPaths": 2, + "*indexPathsToAdd": 1, + "indexPathsToAdd": 2, + "newly": 1, + "superview": 1, + "bringSubviewToFront": 1, + "self.contentSize": 3, + "headerViewRect": 3, + "s.height": 3, + "_headerView.frame.size.height": 2, + "visible.size.width": 3, + "_headerView.frame": 1, + "_headerView.hidden": 4, + "show": 2, + "pullDownRect": 4, + "_pullDownView.frame.size.height": 2, + "_pullDownView.hidden": 4, + "_pullDownView.frame": 1, + "self.delegate": 10, + "recycle": 1, + "regenerated": 3, + "layoutSubviews": 5, + "because": 1, + "dragged": 1, + "clear": 3, + "removeAllObjects": 1, + "laid": 1, + "next": 2, + "_tableFlags.layoutSubviewsReentrancyGuard": 3, + "setAnimationsEnabled": 1, + "CATransaction": 3, + "begin": 1, + "setDisableActions": 1, + "_preLayoutCells": 2, + "munge": 2, + "contentOffset": 2, + "_layoutSectionHeaders": 2, + "_tableFlags.derepeaterEnabled": 1, + "commit": 1, + "selected": 2, + "overlapped": 1, + "r.size.height": 4, + "headerFrame.size.height": 1, + "r.origin.y": 1, + "v.size.height": 2, + "scrollRectToVisible": 2, + "sec": 3, + "_makeRowAtIndexPathFirstResponder": 2, + "responder": 2, + "made": 1, + "acceptsFirstResponder": 1, + "self.nsWindow": 3, + "makeFirstResponderIfNotAlreadyInResponderChain": 1, + "futureMakeFirstResponderRequestToken": 1, + "*oldIndexPath": 1, + "oldIndexPath": 2, + "setSelected": 2, + "setNeedsDisplay": 2, + "selection": 3, + "actually": 2, + "NSResponder": 1, + "*firstResponder": 1, + "firstResponder": 3, + "indexPathForFirstVisibleRow": 2, + "*firstIndexPath": 1, + "firstIndexPath": 4, + "indexPathForLastVisibleRow": 2, + "*lastIndexPath": 5, + "lastIndexPath": 8, + "performKeyAction": 2, + "repeative": 1, + "press": 1, + "noCurrentSelection": 2, + "isARepeat": 1, + "TUITableViewCalculateNextIndexPathBlock": 3, + "selectValidIndexPath": 3, + "*startForNoSelection": 2, + "calculateNextIndexPath": 4, + "foundValidNextRow": 4, + "*newIndexPath": 1, + "newIndexPath": 6, + "startForNoSelection": 1, + "_delegate": 2, + "self.animateSelectionChanges": 1, + "charactersIgnoringModifiers": 1, + "characterAtIndex": 1, + "NSUpArrowFunctionKey": 1, + "lastIndexPath.section": 2, + "lastIndexPath.row": 2, + "rowsInSection": 7, + "NSDownArrowFunctionKey": 1, + "_tableFlags.maintainContentOffsetAfterReload": 2, + "setMaintainContentOffsetAfterReload": 1, + "newValue": 2, + "indexPathWithIndexes": 1, + "indexAtPosition": 2 }, "Objective-C++": { "#include": 26, @@ -48935,62 +48935,43 @@ "stfu": 1 }, "Opa": { - "Server.start": 1, + "server": 1, + "Server.one_page_server": 1, "(": 4, - "Server.http": 1, - "{": 2, - "page": 1, - "function": 1, - ")": 4, + "-": 1, "

": 2, "Hello": 2, "world": 2, "

": 2, + ")": 4, + "Server.start": 1, + "Server.http": 1, + "{": 2, + "page": 1, + "function": 1, "}": 2, - "title": 1, - "server": 1, - "Server.one_page_server": 1, - "-": 1 + "title": 1 }, "OpenCL": { - "typedef": 1, - "float": 3, - "foo_t": 3, - ";": 12, - "#ifndef": 1, - "ZERO": 3, - "#define": 2, - "(": 18, - ")": 18, - "#endif": 1, - "FOO": 1, - "x": 5, - "+": 4, - "__kernel": 1, - "void": 1, - "foo": 1, - "__global": 1, - "const": 4, - "*": 5, - "__local": 1, - "y": 4, - "uint": 1, - "n": 4, - "{": 4, - "barrier": 1, - "CLK_LOCAL_MEM_FENCE": 1, - "if": 1, - "*x": 1, - "}": 4, "double": 3, "run_fftw": 1, + "(": 18, "int": 3, + "n": 4, + "const": 4, + "float": 3, + "*": 5, + "x": 5, + "y": 4, + ")": 18, + "{": 4, "fftwf_plan": 1, "p1": 3, "fftwf_plan_dft_1d": 1, "fftwf_complex": 2, "FFTW_FORWARD": 1, "FFTW_ESTIMATE": 1, + ";": 12, "nops": 3, "t": 4, "cl": 2, @@ -48998,11 +48979,30 @@ "for": 1, "op": 3, "<": 1, + "+": 4, "fftwf_execute": 1, + "}": 4, "-": 1, "/": 1, "fftwf_destroy_plan": 1, - "return": 1 + "return": 1, + "typedef": 1, + "foo_t": 3, + "#ifndef": 1, + "ZERO": 3, + "#define": 2, + "#endif": 1, + "FOO": 1, + "__kernel": 1, + "void": 1, + "foo": 1, + "__global": 1, + "__local": 1, + "uint": 1, + "barrier": 1, + "CLK_LOCAL_MEM_FENCE": 1, + "if": 1, + "*x": 1 }, "OpenEdge ABL": { "USING": 3, @@ -49115,69 +49115,25 @@ "OBJECT": 2, ".": 14, "CLASS.": 2, - "email.Util": 1, - "FINAL": 1, - "PRIVATE": 1, - "STATIC": 5, - "VARIABLE": 12, - "cMonthMap": 2, + "MESSAGE": 2, + "INTERFACE": 1, + "email.SendEmailAlgorithm": 1, + "ipobjEmail": 1, "AS": 21, - "EXTENT": 1, - "INITIAL": 1, - "[": 2, - "]": 2, - "ABLDateTimeToEmail": 3, - "ipdttzDateTime": 6, - "DATETIME": 3, - "TZ": 2, - "STRING": 7, - "DAY": 1, - "MONTH": 1, - "YEAR": 1, - "INTEGER": 6, - "TRUNCATE": 2, - "MTIME": 1, - "/": 2, - "ABLTimeZoneToString": 2, - "TIMEZONE": 1, - "ipdtDateTime": 2, - "ipiTimeZone": 3, - "ABSOLUTE": 1, - "MODULO": 1, - "LONGCHAR": 4, - "ConvertDataToBase64": 1, - "iplcNonEncodedData": 2, - "lcPreBase64Data": 4, - "NO": 13, - "UNDO.": 12, - "lcPostBase64Data": 3, - "mptrPostBase64Data": 3, - "MEMPTR": 2, - "i": 3, - "COPY": 1, - "LOB": 1, - "FROM": 1, - "TO": 2, - "mptrPostBase64Data.": 1, - "BASE64": 1, - "ENCODE": 1, - "SET": 5, - "SIZE": 5, - "DO": 2, - "LENGTH": 3, - "BY": 1, - "ASSIGN": 2, - "SUBSTRING": 1, - "CHR": 2, - "END.": 2, - "lcPostBase64Data.": 1, + "INTERFACE.": 1, "PARAMETER": 3, "objSendEmailAlg": 2, "email.SendEmailSocket": 1, + "NO": 13, + "UNDO.": 12, + "VARIABLE": 12, "vbuffer": 9, + "MEMPTR": 2, "vstatus": 1, "LOGICAL": 1, "vState": 2, + "INTEGER": 6, + "ASSIGN": 2, "vstate": 1, "FUNCTION": 1, "getHostname": 1, @@ -49200,7 +49156,11 @@ "IF": 2, "THEN": 2, "RETURN.": 1, + "SET": 5, + "SIZE": 5, + "LENGTH": 3, "PUT": 1, + "STRING": 7, "pstring.": 1, "SELF": 4, "WRITE": 1, @@ -49209,19 +49169,59 @@ "vlength": 5, "str": 3, "v": 1, - "MESSAGE": 2, "GET": 3, "BYTES": 2, "AVAILABLE": 2, "VIEW": 1, "ALERT": 1, "BOX.": 1, + "DO": 2, "READ": 1, "handleResponse": 1, - "INTERFACE": 1, - "email.SendEmailAlgorithm": 1, - "ipobjEmail": 1, - "INTERFACE.": 1 + "END.": 2, + "email.Util": 1, + "FINAL": 1, + "PRIVATE": 1, + "STATIC": 5, + "cMonthMap": 2, + "EXTENT": 1, + "INITIAL": 1, + "[": 2, + "]": 2, + "ABLDateTimeToEmail": 3, + "ipdttzDateTime": 6, + "DATETIME": 3, + "TZ": 2, + "DAY": 1, + "MONTH": 1, + "YEAR": 1, + "TRUNCATE": 2, + "MTIME": 1, + "/": 2, + "ABLTimeZoneToString": 2, + "TIMEZONE": 1, + "ipdtDateTime": 2, + "ipiTimeZone": 3, + "ABSOLUTE": 1, + "MODULO": 1, + "LONGCHAR": 4, + "ConvertDataToBase64": 1, + "iplcNonEncodedData": 2, + "lcPreBase64Data": 4, + "lcPostBase64Data": 3, + "mptrPostBase64Data": 3, + "i": 3, + "COPY": 1, + "LOB": 1, + "FROM": 1, + "TO": 2, + "mptrPostBase64Data.": 1, + "BASE64": 1, + "ENCODE": 1, + "BY": 1, + "SUBSTRING": 1, + "CHR": 2, + "lcPostBase64Data.": 1 }, "Org": { "#": 13, @@ -49947,6 +49947,361 @@ "Kick": 1 }, "PHP": { + "<": 11, + "php": 12, + "namespace": 28, + "Symfony": 24, + "Component": 24, + "Console": 17, + ";": 1383, + "use": 23, + "Input": 6, + "InputInterface": 4, + "ArgvInput": 2, + "ArrayInput": 3, + "InputDefinition": 2, + "InputOption": 15, + "InputArgument": 3, + "Output": 5, + "OutputInterface": 6, + "ConsoleOutput": 2, + "ConsoleOutputInterface": 2, + "Command": 6, + "HelpCommand": 2, + "ListCommand": 2, + "Helper": 3, + "HelperSet": 3, + "FormatterHelper": 2, + "DialogHelper": 2, + "class": 21, + "Application": 3, + "{": 974, + "private": 24, + "commands": 39, + "wantHelps": 4, + "false": 154, + "runningCommand": 5, + "name": 181, + "version": 8, + "catchExceptions": 4, + "autoExit": 4, + "definition": 3, + "helperSet": 6, + "public": 202, + "function": 205, + "__construct": 8, + "(": 2416, + ")": 2417, + "this": 928, + "-": 1271, + "true": 133, + "array": 296, + "getDefaultHelperSet": 2, + "getDefaultInputDefinition": 2, + "foreach": 94, + "getDefaultCommands": 2, + "as": 96, + "command": 41, + "add": 7, + "}": 972, + "run": 4, + "input": 20, + "null": 164, + "output": 60, + "if": 450, + "new": 74, + "try": 3, + "statusCode": 14, + "doRun": 2, + "catch": 3, + "Exception": 1, + "e": 18, + "throw": 19, + "instanceof": 8, + "renderException": 3, + "getErrorOutput": 2, + "else": 70, + "getCode": 1, + "is_numeric": 7, + "&&": 119, + "exit": 7, + "return": 305, + "getCommandName": 2, + "hasParameterOption": 7, + "setDecorated": 2, + "elseif": 31, + "setInteractive": 2, + "function_exists": 4, + "getHelperSet": 3, + "has": 7, + "inputStream": 2, + "get": 12, + "getInputStream": 1, + "posix_isatty": 1, + "setVerbosity": 2, + "VERBOSITY_QUIET": 1, + "VERBOSITY_VERBOSE": 2, + "writeln": 13, + "getLongVersion": 3, + "find": 17, + "setHelperSet": 1, + "getDefinition": 2, + "getHelp": 2, + "messages": 16, + "sprintf": 27, + "getOptions": 1, + "option": 5, + "[": 672, + "]": 672, + ".": 169, + "getName": 14, + "getShortcut": 2, + "getDescription": 3, + "implode": 8, + "PHP_EOL": 3, + "setCatchExceptions": 1, + "boolean": 4, + "Boolean": 4, + "setAutoExit": 1, + "setName": 1, + "getVersion": 3, + "setVersion": 1, + "register": 1, + "addCommands": 1, + "setApplication": 2, + "isEnabled": 1, + "getAliases": 3, + "alias": 87, + "isset": 101, + "InvalidArgumentException": 9, + "helpCommand": 3, + "setCommand": 1, + "getNamespaces": 3, + "namespaces": 4, + "extractNamespace": 7, + "array_values": 5, + "array_unique": 4, + "array_filter": 2, + "findNamespace": 4, + "allNamespaces": 3, + "n": 12, + "explode": 9, + "found": 4, + "i": 36, + "part": 10, + "abbrevs": 31, + "static": 6, + "getAbbreviations": 4, + "array_map": 2, + "p": 3, + "message": 12, + "<=>": 3, + "alternatives": 10, + "findAlternativeNamespace": 2, + "count": 32, + "getAbbreviationSuggestions": 4, + "searchName": 13, + "pos": 3, + "strrpos": 2, + "substr": 6, + "namespace.substr": 1, + "suggestions": 2, + "aliases": 8, + "findAlternativeCommands": 2, + "all": 11, + "substr_count": 1, + "+": 12, + "names": 3, + "for": 8, + "len": 11, + "strlen": 14, + "abbrev": 4, + "asText": 1, + "raw": 2, + "width": 7, + "sortCommands": 4, + "space": 5, + "space.": 1, + "asXml": 2, + "asDom": 2, + "dom": 12, + "DOMDocument": 2, + "formatOutput": 1, + "appendChild": 10, + "xml": 5, + "createElement": 6, + "commandsXML": 3, + "setAttribute": 2, + "namespacesXML": 3, + "namespaceArrayXML": 4, + "continue": 7, + "commandXML": 3, + "createTextNode": 1, + "node": 42, + "getElementsByTagName": 1, + "item": 9, + "importNode": 3, + "saveXml": 1, + "string": 5, + "encoding": 2, + "mb_detect_encoding": 1, + "mb_strlen": 1, + "do": 2, + "title": 3, + "get_class": 4, + "getTerminalWidth": 3, + "PHP_INT_MAX": 1, + "lines": 3, + "preg_split": 1, + "getMessage": 1, + "line": 10, + "str_split": 1, + "max": 2, + "str_repeat": 2, + "title.str_repeat": 1, + "line.str_repeat": 1, + "message.": 1, + "getVerbosity": 1, + "trace": 12, + "getTrace": 1, + "array_unshift": 2, + "getFile": 2, + "getLine": 2, + "type": 62, + "file": 3, + "while": 6, + "getPrevious": 1, + "getSynopsis": 1, + "protected": 59, + "defined": 5, + "ansicon": 4, + "getenv": 2, + "preg_replace": 4, + "preg_match": 6, + "getSttyColumns": 3, + "match": 4, + "getTerminalHeight": 1, + "trim": 3, + "getFirstArgument": 1, + "REQUIRED": 1, + "VALUE_NONE": 7, + "descriptorspec": 2, + "process": 10, + "proc_open": 1, + "pipes": 4, + "is_resource": 1, + "info": 5, + "stream_get_contents": 1, + "fclose": 2, + "proc_close": 1, + "namespacedCommands": 5, + "key": 64, + "ksort": 2, + "&": 19, + "limit": 3, + "parts": 4, + "array_pop": 1, + "array_slice": 1, + "callback": 5, + "findAlternatives": 3, + "collection": 3, + "call_user_func": 2, + "lev": 6, + "levenshtein": 2, + "3": 1, + "strpos": 15, + "values": 53, + "/": 1, + "||": 52, + "value": 53, + "asort": 1, + "array_keys": 7, + "BrowserKit": 1, + "DomCrawler": 5, + "Crawler": 2, + "Link": 3, + "Form": 4, + "Process": 1, + "PhpProcess": 2, + "abstract": 2, + "Client": 1, + "history": 15, + "cookieJar": 9, + "server": 20, + "request": 76, + "response": 33, + "crawler": 7, + "insulated": 7, + "redirect": 6, + "followRedirects": 5, + "History": 2, + "CookieJar": 2, + "setServerParameters": 2, + "followRedirect": 4, + "insulate": 1, + "class_exists": 2, + "RuntimeException": 2, + "array_merge": 32, + "setServerParameter": 1, + "getServerParameter": 1, + "default": 9, + "getHistory": 1, + "getCookieJar": 1, + "getCrawler": 1, + "getResponse": 1, + "getRequest": 1, + "click": 1, + "link": 10, + "submit": 2, + "getMethod": 6, + "getUri": 8, + "form": 7, + "setValues": 2, + "getPhpValues": 2, + "getPhpFiles": 2, + "method": 31, + "uri": 23, + "parameters": 4, + "files": 7, + "content": 4, + "changeHistory": 4, + "getAbsoluteUri": 2, + "isEmpty": 2, + "current": 4, + "parse_url": 3, + "PHP_URL_HOST": 1, + "PHP_URL_SCHEME": 1, + "Request": 3, + "allValues": 1, + "filterRequest": 2, + "doRequestInProcess": 2, + "doRequest": 2, + "filterResponse": 2, + "updateFromResponse": 1, + "getHeader": 2, + "createCrawlerFromContent": 2, + "getContent": 2, + "getScript": 2, + "sys_get_temp_dir": 2, + "isSuccessful": 1, + "getOutput": 3, + "unserialize": 1, + "LogicException": 4, + "addContent": 1, + "back": 2, + "requestFromRequest": 4, + "forward": 2, + "reload": 1, + "empty": 96, + "restart": 1, + "clear": 2, + "currentUri": 7, + "path": 20, + "PHP_URL_PATH": 1, + "path.": 1, + "getParameters": 1, + "getFiles": 3, + "getServer": 1, "": 3, "CakePHP": 6, "tm": 6, @@ -49971,14 +50326,12 @@ "License": 4, "Redistributions": 2, "of": 10, - "files": 7, "must": 2, "retain": 2, "the": 11, "above": 2, "copyright": 5, "notice": 2, - "link": 10, "Project": 2, "package": 2, "Controller": 4, @@ -49992,7 +50345,6 @@ "opensource": 2, "licenses": 2, "mit": 2, - "php": 12, "App": 20, "uses": 46, "CakeResponse": 2, @@ -50005,10 +50357,7 @@ "Event": 6, "CakeEventListener": 4, "CakeEventManager": 5, - "Application": 3, "controller": 3, - "class": 21, - "for": 8, "organization": 1, "business": 1, "logic": 1, @@ -50016,7 +50365,6 @@ "basic": 1, "functionality": 1, "such": 1, - "as": 96, "rendering": 1, "views": 1, "inside": 1, @@ -50037,14 +50385,12 @@ "methods": 5, "These": 1, "are": 5, - "public": 202, "on": 4, "that": 2, "not": 2, "prefixed": 1, "with": 5, "_": 1, - "part": 10, "Each": 1, "serves": 1, "an": 1, @@ -50053,13 +50399,11 @@ "specific": 1, "resource": 1, "or": 9, - "collection": 3, "resources": 1, "For": 2, "example": 2, "adding": 1, "editing": 1, - "new": 74, "object": 14, "listing": 1, "set": 26, @@ -50067,13 +50411,8 @@ "You": 2, "can": 2, "access": 1, - "request": 76, - "parameters": 4, "using": 2, - "this": 928, - ".": 169, "contains": 1, - "all": 11, "POST": 1, "GET": 1, "FILES": 1, @@ -50090,7 +50429,6 @@ "This": 1, "usually": 1, "takes": 1, - "form": 7, "generated": 1, "possibly": 1, "to": 6, @@ -50099,8 +50437,6 @@ "In": 1, "either": 1, "case": 31, - "-": 1271, - "response": 33, "allows": 1, "you": 1, "manipulate": 1, @@ -50111,16 +50447,12 @@ "based": 2, "routing.": 1, "By": 1, - "default": 9, - "use": 23, "conventional": 1, "names.": 1, "/posts/index": 1, "maps": 1, "PostsController": 1, "index": 5, - "(": 2416, - ")": 2417, "re": 1, "map": 1, "urls": 1, @@ -50151,14 +50483,7 @@ "extends": 3, "Object": 4, "implements": 3, - "{": 974, - "name": 181, - "null": 164, - ";": 1383, - "true": 133, "helpers": 1, - "array": 296, - "protected": 59, "_responseClass": 1, "viewPath": 3, "layoutPath": 1, @@ -50173,7 +50498,6 @@ "ext": 1, "plugin": 31, "cacheAction": 1, - "false": 154, "passedArgs": 2, "scaffold": 2, "modelClass": 25, @@ -50181,12 +50505,6 @@ "validationErrors": 50, "_mergeParent": 4, "_eventManager": 12, - "function": 205, - "__construct": 8, - "if": 450, - "substr": 6, - "get_class": 4, - "}": 972, "Inflector": 12, "singularize": 4, "underscore": 3, @@ -50194,53 +50512,35 @@ "get_class_methods": 2, "parentMethods": 2, "array_diff": 3, - "instanceof": 8, "CakeRequest": 5, "setRequest": 2, "parent": 14, "__isset": 2, "switch": 6, - "return": 305, "is_array": 37, - "foreach": 94, "list": 29, "pluginSplit": 12, "loadModel": 3, "__get": 2, - "isset": 101, "params": 34, - "[": 672, - "]": 672, "load": 3, "settings": 2, "__set": 1, - "value": 53, "camelize": 3, - "&&": 119, - "array_merge": 32, "array_key_exists": 11, - "empty": 96, "invokeAction": 1, - "try": 3, - "method": 31, "ReflectionMethod": 2, "_isPrivateAction": 2, - "throw": 19, "PrivateActionException": 1, "invokeArgs": 1, - "catch": 3, "ReflectionException": 1, - "e": 18, "_getScaffold": 2, "MissingActionException": 1, "privateAction": 4, - "||": 52, "isPublic": 1, "in_array": 26, "prefixes": 4, - "strpos": 15, "prefix": 2, - "explode": 9, "Scaffold": 1, "_mergeControllerVars": 2, "pluginController": 9, @@ -50252,13 +50552,10 @@ "merge": 12, "_mergeVars": 5, "get_class_vars": 2, - "array_unshift": 2, "_mergeUses": 3, - "else": 70, "implementedEvents": 2, "constructClasses": 1, "init": 4, - "current": 4, "getEventManager": 13, "attach": 4, "startupProcess": 1, @@ -50268,17 +50565,14 @@ "code": 4, "id": 82, "MissingModelException": 1, - "redirect": 6, "url": 18, "status": 15, - "exit": 7, "extract": 9, "EXTR_OVERWRITE": 3, "event": 35, "//TODO": 1, "Remove": 1, "following": 1, - "line": 10, "when": 1, "events": 1, "fully": 1, @@ -50289,34 +50583,27 @@ "isStopped": 4, "result": 21, "_parseBeforeRedirect": 2, - "function_exists": 4, "session_write_close": 1, "header": 3, "is_string": 7, "codes": 3, "array_flip": 1, - "statusCode": 14, "send": 1, "_stop": 1, "resp": 6, - "elseif": 31, "compact": 8, "one": 19, "two": 6, "data": 187, "array_combine": 2, - "+": 12, "setAction": 1, "args": 5, "func_get_args": 5, "unset": 22, "call_user_func_array": 3, - "&": 19, "validate": 9, "errors": 9, - "count": 32, "validateErrors": 1, - "alias": 87, "invalidFields": 2, "render": 3, "className": 27, @@ -50332,7 +50619,6 @@ "local": 2, "disableCache": 2, "flash": 1, - "message": 12, "pause": 2, "postConditions": 1, "op": 9, @@ -50342,11 +50628,8 @@ "arrayOp": 2, "fields": 60, "field": 88, - "key": 64, "fieldOp": 11, - "continue": 7, "strtoupper": 3, - "trim": 3, "paginate": 3, "scope": 2, "whitelist": 14, @@ -50362,6 +50645,84 @@ "_afterScaffoldSaveError": 1, "scaffoldError": 2, "_scaffoldError": 1, + "php_help": 1, + "arg": 1, + "t": 26, + "php_permission": 1, + "TRUE": 1, + "php_eval": 1, + "global": 2, + "theme_path": 5, + "theme_info": 3, + "conf": 2, + "old_theme_path": 2, + "drupal_get_path": 1, + "dirname": 1, + "filename": 1, + "ob_start": 1, + "print": 1, + "eval": 1, + "ob_get_contents": 1, + "ob_end_clean": 1, + "_php_filter_tips": 1, + "filter": 1, + "format": 3, + "long": 2, + "FALSE": 2, + "base_url": 1, + "php_filter_info": 1, + "filters": 2, + "Field": 9, + "FormField": 3, + "ArrayAccess": 1, + "button": 6, + "DOMNode": 3, + "initialize": 2, + "getFormNode": 1, + "getValues": 3, + "isDisabled": 2, + "FileFormField": 3, + "hasValue": 1, + "getValue": 2, + "qs": 4, + "http_build_query": 3, + "parse_str": 2, + "queryString": 2, + "sep": 1, + "sep.": 1, + "getRawUri": 1, + "getAttribute": 10, + "remove": 4, + "offsetExists": 1, + "offsetGet": 1, + "offsetSet": 1, + "offsetUnset": 1, + "setNode": 1, + "nodeName": 13, + "parentNode": 1, + "FormFieldRegistry": 2, + "document": 6, + "root": 4, + "xpath": 2, + "DOMXPath": 1, + "query": 102, + "hasAttribute": 1, + "InputFormField": 2, + "ChoiceFormField": 2, + "addChoice": 1, + "TextareaFormField": 1, + "base": 8, + "segments": 13, + "getSegments": 4, + "target": 20, + "array_shift": 5, + "self": 1, + "create": 13, + "k": 7, + "setValue": 1, + "walk": 3, + "registry": 4, + "m": 5, "relational": 2, "mapper": 2, "DBO": 2, @@ -50386,7 +50747,6 @@ "table": 21, "pluralized": 1, "lowercase": 1, - "i": 36, "User": 1, "is": 1, "have": 2, @@ -50435,9 +50795,6 @@ "__call": 1, "dispatchMethod": 1, "getDataSource": 15, - "query": 102, - "type": 62, - "k": 7, "relation": 7, "assocKey": 13, "dynamic": 2, @@ -50445,7 +50802,6 @@ "AppModel": 1, "_constructLinkedModel": 2, "schema": 11, - "<=>": 3, "hasField": 7, "setDataSource": 2, "property_exists": 3, @@ -50453,7 +50809,6 @@ "reset": 6, "assoc": 75, "assocName": 6, - "is_numeric": 7, "unbindModel": 1, "_generateAssociation": 2, "dynamicWith": 3, @@ -50465,11 +50820,9 @@ "sources": 3, "listSources": 1, "strtolower": 1, - "array_map": 2, "MissingTableException": 1, "is_object": 2, "SimpleXMLElement": 1, - "DOMNode": 3, "_normalizeXmlData": 3, "toArray": 1, "reverse": 1, @@ -50479,43 +50832,33 @@ "fieldName": 6, "fieldValue": 7, "deconstruct": 2, - "array_keys": 7, "getAssociated": 4, - "xml": 5, "getColumnType": 4, "useNewDate": 2, "dateFields": 5, "timeFields": 2, "date": 9, "val": 27, - "sprintf": 27, - "format": 3, "columns": 5, "str_replace": 3, - "array_values": 5, "describe": 1, "getColumnTypes": 1, "trigger_error": 1, "__d": 1, "E_USER_WARNING": 1, "cols": 7, - "values": 53, "column": 10, "startQuote": 4, "endQuote": 4, "checkVirtual": 3, - "n": 12, "isVirtualField": 3, "hasMethod": 2, "getVirtualField": 1, - "create": 13, "filterKey": 2, "defaults": 6, "properties": 4, "read": 2, - "find": 17, "conditions": 41, - "array_shift": 5, "saveField": 1, "options": 85, "save": 9, @@ -50528,7 +50871,6 @@ "colType": 4, "time": 3, "strtotime": 1, - "call_user_func": 2, "joined": 5, "x": 4, "y": 2, @@ -50556,7 +50898,6 @@ "primaryAdded": 3, "idField": 3, "row": 17, - "strlen": 14, "keepExisting": 3, "associationForeignKey": 5, "links": 4, @@ -50570,7 +50911,6 @@ "intval": 4, "updateAll": 3, "foreignKeys": 3, - "info": 5, "included": 3, "array_intersect": 1, "old": 2, @@ -50608,13 +50948,11 @@ "resetAssociations": 3, "_filterResults": 2, "ucfirst": 2, - "<": 11, "modParams": 2, "_findFirst": 1, "state": 15, "_findCount": 1, "calculate": 2, - "preg_match": 6, "expression": 1, "_findList": 1, "tokenize": 1, @@ -50628,346 +50966,8 @@ "isUnique": 1, "is_bool": 1, "sql": 1, - "namespace": 28, - "Symfony": 24, - "Component": 24, - "DomCrawler": 5, - "Field": 9, - "FormField": 3, - "Form": 4, - "Link": 3, - "ArrayAccess": 1, - "private": 24, - "button": 6, - "node": 42, - "currentUri": 7, - "initialize": 2, - "getFormNode": 1, - "setValues": 2, - "getValues": 3, - "isDisabled": 2, - "FileFormField": 3, - "hasValue": 1, - "getValue": 2, - "getFiles": 3, - "getMethod": 6, - "getPhpValues": 2, - "qs": 4, - "http_build_query": 3, - "parse_str": 2, - "getPhpFiles": 2, - "getUri": 8, - "uri": 23, - "queryString": 2, - "sep": 1, - "sep.": 1, - "getRawUri": 1, - "getAttribute": 10, - "has": 7, - "remove": 4, - "get": 12, - "add": 7, - "offsetExists": 1, - "offsetGet": 1, - "offsetSet": 1, - "offsetUnset": 1, - "setNode": 1, - "nodeName": 13, - "do": 2, - "parentNode": 1, - "LogicException": 4, - "while": 6, - "FormFieldRegistry": 2, - "document": 6, - "DOMDocument": 2, - "importNode": 3, - "root": 4, - "appendChild": 10, - "createElement": 6, - "xpath": 2, - "DOMXPath": 1, - "hasAttribute": 1, - "InputFormField": 2, - "ChoiceFormField": 2, - "addChoice": 1, - "TextareaFormField": 1, - "base": 8, - "segments": 13, - "getSegments": 4, - "getName": 14, - "target": 20, - "path": 20, - "InvalidArgumentException": 9, - "self": 1, - "setValue": 1, - "walk": 3, - "static": 6, - "registry": 4, - "output": 60, - "m": 5, "SHEBANG#!php": 3, "echo": 2, - "BrowserKit": 1, - "Crawler": 2, - "Process": 1, - "PhpProcess": 2, - "abstract": 2, - "Client": 1, - "history": 15, - "cookieJar": 9, - "server": 20, - "crawler": 7, - "insulated": 7, - "followRedirects": 5, - "History": 2, - "CookieJar": 2, - "setServerParameters": 2, - "followRedirect": 4, - "Boolean": 4, - "insulate": 1, - "class_exists": 2, - "RuntimeException": 2, - "setServerParameter": 1, - "getServerParameter": 1, - "getHistory": 1, - "getCookieJar": 1, - "getCrawler": 1, - "getResponse": 1, - "getRequest": 1, - "click": 1, - "submit": 2, - "content": 4, - "changeHistory": 4, - "getAbsoluteUri": 2, - "isEmpty": 2, - "parse_url": 3, - "PHP_URL_HOST": 1, - "PHP_URL_SCHEME": 1, - "Request": 3, - "allValues": 1, - "filterRequest": 2, - "doRequestInProcess": 2, - "doRequest": 2, - "filterResponse": 2, - "updateFromResponse": 1, - "getHeader": 2, - "createCrawlerFromContent": 2, - "getContent": 2, - "process": 10, - "getScript": 2, - "sys_get_temp_dir": 2, - "run": 4, - "isSuccessful": 1, - "getOutput": 3, - "getErrorOutput": 2, - "unserialize": 1, - "addContent": 1, - "back": 2, - "requestFromRequest": 4, - "forward": 2, - "reload": 1, - "restart": 1, - "clear": 2, - "preg_replace": 4, - "PHP_URL_PATH": 1, - "strrpos": 2, - "path.": 1, - "getParameters": 1, - "getServer": 1, - "php_help": 1, - "arg": 1, - "t": 26, - "php_permission": 1, - "TRUE": 1, - "php_eval": 1, - "global": 2, - "theme_path": 5, - "theme_info": 3, - "conf": 2, - "old_theme_path": 2, - "drupal_get_path": 1, - "dirname": 1, - "filename": 1, - "ob_start": 1, - "print": 1, - "eval": 1, - "ob_get_contents": 1, - "ob_end_clean": 1, - "_php_filter_tips": 1, - "filter": 1, - "long": 2, - "FALSE": 2, - "base_url": 1, - "php_filter_info": 1, - "filters": 2, - "Console": 17, - "Input": 6, - "InputInterface": 4, - "ArgvInput": 2, - "ArrayInput": 3, - "InputDefinition": 2, - "InputOption": 15, - "InputArgument": 3, - "Output": 5, - "OutputInterface": 6, - "ConsoleOutput": 2, - "ConsoleOutputInterface": 2, - "Command": 6, - "HelpCommand": 2, - "ListCommand": 2, - "Helper": 3, - "HelperSet": 3, - "FormatterHelper": 2, - "DialogHelper": 2, - "commands": 39, - "wantHelps": 4, - "runningCommand": 5, - "version": 8, - "catchExceptions": 4, - "autoExit": 4, - "definition": 3, - "helperSet": 6, - "getDefaultHelperSet": 2, - "getDefaultInputDefinition": 2, - "getDefaultCommands": 2, - "command": 41, - "input": 20, - "doRun": 2, - "Exception": 1, - "renderException": 3, - "getCode": 1, - "getCommandName": 2, - "hasParameterOption": 7, - "setDecorated": 2, - "setInteractive": 2, - "getHelperSet": 3, - "inputStream": 2, - "getInputStream": 1, - "posix_isatty": 1, - "setVerbosity": 2, - "VERBOSITY_QUIET": 1, - "VERBOSITY_VERBOSE": 2, - "writeln": 13, - "getLongVersion": 3, - "setHelperSet": 1, - "getDefinition": 2, - "getHelp": 2, - "messages": 16, - "getOptions": 1, - "option": 5, - "getShortcut": 2, - "getDescription": 3, - "implode": 8, - "PHP_EOL": 3, - "setCatchExceptions": 1, - "boolean": 4, - "setAutoExit": 1, - "setName": 1, - "getVersion": 3, - "setVersion": 1, - "register": 1, - "addCommands": 1, - "setApplication": 2, - "isEnabled": 1, - "getAliases": 3, - "helpCommand": 3, - "setCommand": 1, - "getNamespaces": 3, - "namespaces": 4, - "extractNamespace": 7, - "array_unique": 4, - "array_filter": 2, - "findNamespace": 4, - "allNamespaces": 3, - "found": 4, - "abbrevs": 31, - "getAbbreviations": 4, - "p": 3, - "alternatives": 10, - "findAlternativeNamespace": 2, - "getAbbreviationSuggestions": 4, - "searchName": 13, - "pos": 3, - "namespace.substr": 1, - "suggestions": 2, - "aliases": 8, - "findAlternativeCommands": 2, - "substr_count": 1, - "names": 3, - "len": 11, - "abbrev": 4, - "asText": 1, - "raw": 2, - "width": 7, - "sortCommands": 4, - "space": 5, - "space.": 1, - "asXml": 2, - "asDom": 2, - "dom": 12, - "formatOutput": 1, - "commandsXML": 3, - "setAttribute": 2, - "namespacesXML": 3, - "namespaceArrayXML": 4, - "commandXML": 3, - "createTextNode": 1, - "getElementsByTagName": 1, - "item": 9, - "saveXml": 1, - "string": 5, - "encoding": 2, - "mb_detect_encoding": 1, - "mb_strlen": 1, - "title": 3, - "getTerminalWidth": 3, - "PHP_INT_MAX": 1, - "lines": 3, - "preg_split": 1, - "getMessage": 1, - "str_split": 1, - "max": 2, - "str_repeat": 2, - "title.str_repeat": 1, - "line.str_repeat": 1, - "message.": 1, - "getVerbosity": 1, - "trace": 12, - "getTrace": 1, - "getFile": 2, - "getLine": 2, - "file": 3, - "getPrevious": 1, - "getSynopsis": 1, - "defined": 5, - "ansicon": 4, - "getenv": 2, - "getSttyColumns": 3, - "match": 4, - "getTerminalHeight": 1, - "getFirstArgument": 1, - "REQUIRED": 1, - "VALUE_NONE": 7, - "descriptorspec": 2, - "proc_open": 1, - "pipes": 4, - "is_resource": 1, - "stream_get_contents": 1, - "fclose": 2, - "proc_close": 1, - "namespacedCommands": 5, - "ksort": 2, - "limit": 3, - "parts": 4, - "array_pop": 1, - "array_slice": 1, - "callback": 5, - "findAlternatives": 3, - "lev": 6, - "levenshtein": 2, - "3": 1, - "/": 1, - "asort": 1, "Yii": 3, "console": 3, "bootstrap": 1, @@ -51096,228 +51096,793 @@ "end.": 1 }, "Perl": { - "SHEBANG#!perl": 5, - "#": 99, - "use": 83, - "warnings": 18, - ";": 1193, - "strict": 18, - "our": 34, - "VERSION": 15, - "MAIN": 1, - "{": 1121, - "if": 276, - "(": 925, + "package": 14, "App": 131, "Ack": 136, - "ne": 9, - "main": 3, - ")": 923, - "die": 38, - "}": 1134, - "my": 404, - "env_is_usable": 3, - "for": 83, - "@ARGV": 12, - "last": 17, - "_": 101, - "eq": 31, - "/": 69, - "-": 868, - "th": 1, - "[": 159, - "pt": 1, - "]": 155, - "+": 120, - "t": 18, - "&&": 83, - "_thpppt": 3, - "bar": 3, - "_bar": 3, - "no": 22, - "env": 76, - "defined": 54, - "unshift": 4, - "read_ackrc": 4, - "else": 53, - "@keys": 2, - "grep": 17, - "ACK_/": 1, - "keys": 15, - "%": 78, - "ENV": 40, - "delete": 10, - "@ENV": 1, - "load_colors": 1, - "exists": 19, - "ACK_SWITCHES": 1, - "warn": 22, - "show_help": 3, - "exit": 16, - "sub": 225, - "opt": 291, - "get_command_line_options": 4, - "|": 28, - "flush": 8, - "Unbuffer": 1, - "the": 143, - "output": 36, - "mode": 1, - "input_from_pipe": 8, - "qw": 35, - "f": 25, - "g": 7, - "l": 17, - "and": 85, - "show_filename": 35, - "regex": 28, - "build_regex": 3, - "shift": 165, - "nargs": 2, - "s": 35, - "res": 59, - "Resource": 5, + ";": 1193, + "use": 83, + "warnings": 18, + "strict": 18, + "File": 54, + "Next": 27, + "Plugin": 2, "Basic": 10, - "new": 55, - "nmatches": 61, - "count": 23, - "search_and_list": 8, - "search_resource": 7, - "close": 19, - "exit_from_ack": 5, - "file_matching": 2, - "||": 49, - "lines": 19, - "check_regex": 2, - "G": 11, - "what": 14, - "get_starting_points": 4, - "iter": 23, - "get_iterator": 4, - "filetype_setup": 4, - "set_up_pager": 3, - "pager": 19, - "print_files": 4, - "elsif": 10, - "print_files_with_matches": 4, - "print_matches": 4, - "fh": 28, "head1": 36, "NAME": 6, + "-": 868, + "A": 2, + "container": 1, + "for": 83, + "functions": 2, + "the": 143, "ack": 38, - "like": 13, - "text": 6, - "finder": 1, + "program": 6, + "VERSION": 15, + "Version": 1, + "cut": 28, + "our": 34, + "COPYRIGHT": 7, + "BEGIN": 7, + "{": 1121, + "}": 1134, + "fh": 28, + "*STDOUT": 6, + "%": 78, + "types": 26, + "type_wanted": 20, + "mappings": 29, + "ignore_dirs": 12, + "input_from_pipe": 8, + "output_to_pipe": 12, + "dir_sep_chars": 10, + "is_cygwin": 6, + "is_windows": 12, + "Spec": 13, + "(": 925, + ")": 923, + "Glob": 4, + "Getopt": 6, + "Long": 6, + "_MTN": 2, + "blib": 2, + "CVS": 5, + "RCS": 2, + "SCCS": 2, + "_darcs": 2, + "_sgbak": 2, + "_build": 2, + "actionscript": 2, + "[": 159, + "qw": 35, + "as": 37, + "mxml": 2, + "]": 155, + "ada": 4, + "adb": 2, + "ads": 2, + "asm": 4, + "s": 35, + "batch": 2, + "bat": 2, + "cmd": 2, + "binary": 3, + "q": 5, + "Binary": 2, + "files": 42, + "defined": 54, + "by": 16, + "Perl": 9, + "T": 2, + "op": 2, + "default": 19, + "off": 4, + "tt": 4, + "tt2": 2, + "ttml": 2, + "vb": 4, + "bas": 2, + "cls": 2, + "frm": 2, + "ctl": 2, + "resx": 2, + "verilog": 2, + "v": 19, + "vh": 2, + "sv": 2, + "vhdl": 4, + "vhd": 2, + "vim": 4, + "yaml": 4, + "yml": 2, + "xml": 6, + "dtd": 2, + "xsl": 2, + "xslt": 2, + "ent": 2, + "while": 31, + "my": 404, + "type": 69, + "exts": 6, + "each": 14, + "if": 276, + "ref": 33, + "ext": 14, + "@": 38, + "push": 30, + "_": 101, + "mk": 2, + "mak": 2, + "not": 54, + "t": 18, + "p": 9, + "STDIN": 2, + "O": 4, + "eq": 31, + "/MSWin32/": 2, + "quotemeta": 5, + "catfile": 4, "SYNOPSIS": 6, - "options": 7, + "If": 15, + "you": 44, + "want": 7, + "to": 95, + "know": 4, + "about": 4, + "F": 24, + "": 13, + "see": 5, + "file": 49, + "itself.": 3, + "No": 4, + "user": 4, + "serviceable": 1, + "parts": 1, + "inside.": 1, + "is": 69, + "all": 23, + "that": 33, + "should": 6, + "this.": 1, + "FUNCTIONS": 1, + "head2": 34, + "read_ackrc": 4, + "Reads": 1, + "contents": 2, + "of": 64, + ".ackrc": 1, + "and": 85, + "returns": 4, + "arguments.": 1, + "sub": 225, + "@files": 12, + "ENV": 40, + "ACKRC": 2, + "@dirs": 4, + "HOME": 4, + "USERPROFILE": 2, + "dir": 27, + "grep": 17, + "bsd_glob": 4, + "GLOB_TILDE": 2, + "filename": 68, + "&&": 83, + "e": 20, + "open": 7, + "or": 49, + "die": 38, + "@lines": 21, + "/./": 2, + "/": 69, + "s*#/": 2, + "<$fh>": 4, + "chomp": 3, + "close": 19, + "s/": 22, + "+": 120, + "//": 9, + "return": 157, + "get_command_line_options": 4, + "Gets": 3, + "command": 14, + "line": 20, + "arguments": 2, + "does": 10, + "specific": 2, + "tweaking.": 1, + "opt": 291, + "pager": 19, + "ACK_PAGER_COLOR": 7, + "||": 49, + "ACK_PAGER": 5, + "getopt_specs": 6, + "m": 17, + "after_context": 16, + "before_context": 18, + "shift": 165, + "val": 26, + "break": 14, + "c": 5, + "count": 23, + "color": 38, + "ACK_COLOR_MATCH": 5, + "ACK_COLOR_FILENAME": 5, + "ACK_COLOR_LINENO": 4, + "column": 4, + "#": 99, + "ignore": 7, + "this": 22, + "option": 7, + "it": 28, + "handled": 2, + "beforehand": 2, + "f": 25, + "flush": 8, + "follow": 7, + "G": 11, + "heading": 18, + "h": 6, + "H": 6, + "i": 26, + "invert_file_match": 8, + "lines": 19, + "l": 17, + "regex": 28, + "n": 19, + "o": 17, + "output": 36, + "undef": 17, + "passthru": 9, + "print0": 7, + "Q": 7, + "show_types": 4, + "smart_case": 3, + "sort_files": 11, + "u": 10, + "w": 4, + "remove_dir_sep": 7, + "delete": 10, + "print_version_statement": 2, + "exit": 16, + "show_help": 3, + "@_": 43, + "show_help_types": 2, + "require": 12, + "Pod": 4, + "Usage": 4, + "pod2usage": 2, + "verbose": 2, + "exitval": 2, + "dummy": 2, + "wanted": 4, + "no//": 2, + "must": 5, + "be": 36, + "later": 2, + "exists": 19, + "else": 53, + "qq": 18, + "Unknown": 2, + "unshift": 4, + "@ARGV": 12, + "split": 13, + "ACK_OPTIONS": 5, + "def_types_from_ARGV": 5, + "filetypes_supported": 5, + "parser": 12, + "Parser": 4, + "new": 55, + "configure": 4, + "getoptions": 4, + "to_screen": 10, + "defaults": 16, + "eval": 8, + "Win32": 9, + "Console": 2, + "ANSI": 3, + "key": 20, + "value": 12, + "<": 15, + "join": 5, + "map": 10, + "@ret": 10, + "from": 19, + "warn": 22, + "..": 7, + "uniq": 4, + "@uniq": 2, + "sort": 8, + "a": 85, + "<=>": 2, + "b": 6, + "keys": 15, + "numerical": 2, + "occurs": 2, + "only": 11, + "once": 4, + "Go": 1, + "through": 6, + "look": 2, + "I": 68, + "<--type-set>": 1, + "foo=": 1, + "bar": 3, + "<--type-add>": 1, + "xml=": 1, + ".": 125, + "Remove": 1, + "them": 5, + "add": 9, + "supported": 1, + "filetypes": 8, + "i.e.": 2, + "into": 6, + "etc.": 3, + "@typedef": 8, + "td": 6, + "set": 12, + "Builtin": 4, + "cannot": 4, + "changed.": 4, + "ne": 9, + "delete_type": 5, + "Type": 2, + "exist": 4, + "creating": 3, + "with": 26, + "...": 2, + "unless": 39, + "@exts": 8, + ".//": 2, + "Cannot": 4, + "append": 2, + "Removes": 1, + "internal": 1, + "structures": 1, + "containing": 5, + "information": 2, + "type_wanted.": 1, + "Internal": 2, + "error": 4, + "builtin": 2, + "ignoredir_filter": 5, + "Standard": 1, + "filter": 12, + "pass": 1, + "L": 34, + "": 1, + "descend_filter.": 1, + "It": 3, + "true": 3, + "directory": 8, + "any": 4, + "ones": 1, + "we": 7, + "ignore.": 1, + "path": 28, + "This": 27, + "removes": 1, + "trailing": 1, + "separator": 4, + "there": 6, + "one": 9, + "its": 2, + "argument": 1, + "Returns": 10, + "list": 10, + "<$filename>": 1, + "could": 2, + "be.": 1, + "For": 5, + "example": 5, + "": 1, + "The": 22, + "filetype": 1, + "will": 9, + "C": 56, + "": 1, + "can": 30, + "skipped": 2, + "something": 3, + "avoid": 1, + "searching": 6, + "even": 4, + "under": 5, + "a.": 1, + "constant": 2, + "TEXT": 16, + "basename": 9, + ".*": 2, + "is_searchable": 8, + "lc_basename": 8, + "lc": 5, + "r": 14, + "B": 76, + "header": 17, + "SHEBANG#!#!": 2, + "ruby": 3, + "|": 28, + "lua": 2, + "erl": 2, + "hp": 2, + "ython": 2, + "d": 9, + "d.": 2, + "*": 8, + "b/": 4, + "ba": 2, + "k": 6, + "z": 2, + "sh": 2, + "/i": 2, + "search": 11, + "false": 1, + "regular": 3, + "expression": 9, + "found.": 4, + "www": 2, + "U": 2, + "y": 8, + "tr/": 2, + "x": 7, + "w/": 3, + "nOo_/": 2, + "_thpppt": 3, + "_get_thpppt": 3, + "print": 35, + "_bar": 3, + "<<": 10, + "&": 22, + "*I": 2, + "g": 7, + "#.": 6, + ".#": 4, + "I#": 2, + "#I": 6, + "#7": 4, + "results.": 2, + "on": 25, + "when": 18, + "used": 12, + "interactively": 6, + "no": 22, + "Print": 6, + "between": 4, + "results": 8, + "different": 2, + "files.": 6, + "group": 2, + "Same": 8, + "nogroup": 2, + "noheading": 2, + "nobreak": 2, + "Highlight": 2, + "matching": 15, + "text": 6, + "redirected": 2, + "Windows": 4, + "colour": 2, + "COLOR": 6, + "match": 21, + "lineno": 2, + "Set": 3, + "filenames": 7, + "matches": 7, + "numbers.": 2, + "Flush": 2, + "immediately": 2, + "non": 2, + "goes": 2, + "pipe": 4, + "finding": 2, + "Only": 7, + "found": 11, + "without": 3, + "searching.": 2, "PATTERN": 8, + "specified.": 4, + "REGEX": 2, + "but": 4, + "REGEX.": 2, + "Sort": 2, + "lexically.": 3, + "invert": 2, + "Print/search": 2, + "handle": 3, + "do": 12, + "g/": 2, + "G.": 2, + "show": 3, + "Show": 2, + "which": 7, + "has.": 2, + "inclusion/exclusion": 2, + "All": 4, + "searched": 5, + "Ignores": 2, + ".svn": 3, + "other": 5, + "ignored": 6, + "directories": 9, + "unrestricted": 2, + "name": 44, + "Add/Remove": 2, + "dirs": 2, + "R": 2, + "recurse": 2, + "Recurse": 3, + "subdirectories": 2, + "END_OF_HELP": 2, + "VMS": 2, + "vd": 2, + "Term": 6, + "ANSIColor": 8, + "black": 3, + "on_yellow": 3, + "bold": 5, + "green": 3, + "yellow": 3, + "printing": 2, + "qr/": 13, + "last_output_line": 6, + "any_output": 10, + "keep_context": 8, + "@before": 16, + "before_starts_at_line": 10, + "after": 18, + "number": 4, + "still": 4, + "res": 59, + "next_text": 8, + "has_lines": 4, + "scalar": 2, + "m/": 4, + "regex/": 9, + "next": 9, + "print_match_or_context": 13, + "elsif": 10, + "last": 17, + "max": 12, + "nmatches": 61, + "show_filename": 35, + "context_overall_output_count": 6, + "print_blank_line": 2, + "is_binary": 4, + "search_resource": 7, + "is_match": 7, + "starting_line_no": 1, + "match_start": 5, + "match_end": 3, + "Prints": 4, + "out": 2, + "context": 1, + "around": 5, + "match.": 3, + "opts": 2, + "array": 7, + "line_no": 12, + "show_column": 4, + "display_filename": 8, + "colored": 6, + "print_first_filename": 2, + "sep": 8, + "output_func": 8, + "print_separator": 2, + "print_filename": 2, + "display_line_no": 4, + "print_line_no": 2, + "regex/go": 2, + "regex/Term": 2, + "substr": 2, + "/eg": 2, + "z/": 2, + "K/": 2, + "z//": 2, + "print_column_no": 2, + "scope": 4, + "TOTAL_COUNT_SCOPE": 2, + "total_count": 10, + "get_total_count": 4, + "reset_total_count": 4, + "search_and_list": 8, + "Optimized": 1, + "version": 2, + "lines.": 3, + "ors": 11, + "record": 3, + "show_total": 6, + "print_count": 4, + "print_count0": 2, + "filetypes_supported_set": 9, + "True/False": 1, + "are": 25, + "print_files": 4, + "iter": 23, + "returned": 3, + "iterator": 3, + "<$regex>": 1, + "<$one>": 1, + "stop": 1, + "first.": 1, + "<$ors>": 1, + "<\"\\n\">": 1, + "defines": 2, + "what": 14, + "filename.": 1, + "print_files_with_matches": 4, + "where": 3, + "was": 2, + "repo": 18, + "Repository": 11, + "next_resource": 6, + "print_matches": 4, + "tarballs_work": 4, + ".tar": 2, + ".gz": 2, + "Tar": 4, + "XXX": 4, + "Error": 2, + "checking": 2, + "needs_line_scan": 14, + "reset": 5, + "filetype_setup": 4, + "Minor": 1, + "housekeeping": 1, + "before": 1, + "go": 1, + "expand_filenames": 7, + "reference": 8, + "expanded": 3, + "globs": 1, + "EXPAND_FILENAMES_SCOPE": 4, + "argv": 12, + "attr": 6, + "foreach": 4, + "pattern": 10, + "@results": 14, + "didn": 2, + "ve": 2, + "tried": 2, + "load": 2, + "GetAttributes": 2, + "end": 9, + "attributes": 4, + "got": 2, + "get_starting_points": 4, + "starting": 2, + "@what": 14, + "reslash": 4, + "Assume": 2, + "current": 5, + "start_point": 4, + "_match": 8, + "target": 6, + "invert_flag": 4, + "get_iterator": 4, + "Return": 2, + "starting_point": 10, + "g_regex": 4, + "file_filter": 12, + "g_regex/": 6, + "Maybe": 2, + "is_interesting": 4, + "descend_filter": 11, + "error_handler": 5, + "msg": 4, + "follow_symlinks": 6, + "set_up_pager": 3, + "Unable": 2, + "going": 1, + "pipe.": 1, + "exit_from_ack": 5, + "Exit": 1, + "application": 15, + "correct": 1, + "code.": 2, + "otherwise": 2, + "handed": 1, + "in": 36, + "argument.": 1, + "rc": 11, + "LICENSE": 3, + "Copyright": 2, + "Andy": 2, + "Lester.": 2, + "free": 4, + "software": 3, + "redistribute": 4, + "and/or": 4, + "modify": 4, + "terms": 4, + "Artistic": 2, + "License": 2, + "v2.0.": 2, + "End": 3, + "SHEBANG#!#! perl": 4, + "examples/benchmarks/fib.pl": 1, + "Fibonacci": 2, + "Benchmark": 1, + "DESCRIPTION": 4, + "Calculates": 1, + "Number": 1, + "": 1, + "unspecified": 1, + "fib": 4, + "N": 2, + "SEE": 4, + "ALSO": 4, + "": 1, + "SHEBANG#!perl": 5, + "MAIN": 1, + "main": 3, + "env_is_usable": 3, + "th": 1, + "pt": 1, + "env": 76, + "@keys": 2, + "ACK_/": 1, + "@ENV": 1, + "load_colors": 1, + "ACK_SWITCHES": 1, + "Unbuffer": 1, + "mode": 1, + "build_regex": 3, + "nargs": 2, + "Resource": 5, + "file_matching": 2, + "check_regex": 2, + "like": 13, + "finder": 1, + "options": 7, "FILE...": 1, "DIRECTORY...": 1, - "DESCRIPTION": 4, - "is": 69, "designed": 1, - "as": 37, - "a": 85, "replacement": 1, - "of": 64, "uses": 2, - "F": 24, "": 5, - ".": 125, "searches": 1, "named": 3, "input": 9, "FILEs": 1, - "or": 49, "standard": 1, - "files": 42, - "are": 25, - "file": 49, - "name": 44, "given": 10, - "containing": 5, - "match": 21, - "to": 95, "PATTERN.": 1, "By": 2, - "default": 19, "prints": 2, - "matching": 15, - "lines.": 3, - "can": 30, "also": 7, - "list": 10, - "that": 33, "would": 5, - "be": 36, - "searched": 5, - "without": 3, "actually": 1, - "searching": 6, - "them": 5, "let": 1, - "you": 44, "take": 5, "advantage": 1, - "know": 4, ".wango": 1, - "I": 68, - "": 13, "won": 1, "throw": 1, "away": 1, "because": 3, - "there": 6, "times": 2, - "follow": 7, "symlinks": 1, - "other": 5, "than": 5, "whatever": 1, - "starting": 2, - "directories": 9, "were": 1, "specified": 3, - "on": 25, - "command": 14, "line.": 4, - "This": 27, - "off": 4, - "by": 16, "default.": 2, "item": 44, - "B": 76, - "<": 15, "": 11, - "Only": 7, "paths": 3, "included": 1, - "in": 36, "search.": 1, - "The": 22, "entire": 3, - "path": 28, - "filename": 68, "matched": 1, "against": 1, - "Perl": 9, - "regular": 3, - "expression": 9, - "not": 54, "shell": 4, "glob.": 1, "<-i>": 5, "<-w>": 2, "<-v>": 3, "<-Q>": 4, - "do": 12, "apply": 3, - "this": 22, - "Print": 6, - "where": 3, "relative": 1, - "matches": 7, - "option": 7, "convenience": 1, "shortcut": 2, "<-f>": 6, @@ -51325,24 +51890,17 @@ "<--nogroup>": 2, "groups": 1, "with.": 1, - "when": 18, - "used": 12, "interactively.": 1, - "one": 9, "result": 1, "per": 1, - "line": 20, "grep.": 2, "redirected.": 1, "<-H>": 1, "<--with-filename>": 1, - "each": 14, - "match.": 3, "<-h>": 1, "<--no-filename>": 1, "Suppress": 1, "prefixing": 1, - "filenames": 7, "multiple": 5, "searched.": 1, "<--help>": 1, @@ -51352,26 +51910,16 @@ "<--ignore-case>": 1, "Ignore": 3, "case": 3, - "search": 11, "strings.": 1, "applies": 3, - "only": 11, "regexes": 3, "<-g>": 5, "<-G>": 3, "options.": 4, - "ignore": 7, - "dir": 27, "": 2, - "directory": 8, - "CVS": 5, - ".svn": 3, "etc": 2, - "ignored": 6, "May": 2, "directories.": 2, - "For": 5, - "example": 5, "mason": 1, "users": 4, "may": 3, @@ -51380,13 +51928,10 @@ "<--ignore-dir=data>": 1, "<--noignore-dir>": 1, "allows": 4, - "which": 7, "normally": 1, "perhaps": 1, "research": 1, - "contents": 2, "<.svn/props>": 1, - "must": 5, "always": 5, "simple": 2, "name.": 1, @@ -51399,19 +51944,13 @@ "specify": 1, "<--ignore-dir=foo>": 1, "then": 4, - "from": 19, - "any": 4, "foo": 6, "taken": 1, - "into": 6, "account": 1, - "unless": 39, "explicitly": 1, "": 2, - "print": 35, "file.": 3, "Multiple": 1, - "with": 26, "<--line>": 1, "comma": 1, "separated": 2, @@ -51434,44 +51973,33 @@ "explicitly.": 1, "helpful": 2, "don": 2, - "through": 6, "": 1, "via": 1, - "C": 56, "": 4, "": 4, "environment": 2, "variables.": 1, "Using": 3, - "does": 10, "suppress": 3, "grouping": 3, "coloring": 3, "piping": 3, "does.": 2, "<--passthru>": 1, - "Prints": 4, - "all": 23, "whether": 1, "they": 1, "expression.": 1, "Highlighting": 1, - "will": 9, - "still": 4, "work": 3, "though": 1, "so": 4, - "it": 28, "highlight": 1, - "while": 31, "seeing": 1, "tail": 1, "/access.log": 1, - "passthru": 9, "<--print0>": 1, "works": 1, "conjunction": 1, - "c": 5, "null": 1, "byte": 1, "usual": 1, @@ -51481,7 +52009,6 @@ "whitespace": 1, "e.g.": 2, "html": 1, - "print0": 7, "xargs": 2, "rm": 1, "<--literal>": 1, @@ -51492,7 +52019,6 @@ "<-r>": 1, "<-R>": 1, "<--recurse>": 1, - "Recurse": 3, "just": 2, "here": 2, "compatibility": 2, @@ -51512,18 +52038,13 @@ "option.": 1, "<--sort-files>": 1, "Sorts": 1, - "found": 11, - "lexically.": 3, "Use": 6, - "want": 7, "your": 20, "listings": 1, "deterministic": 1, - "between": 4, "runs": 1, "<--show-types>": 1, "Outputs": 1, - "filetypes": 8, "associates": 1, "Works": 1, "<--thpppt>": 1, @@ -51537,48 +52058,32 @@ "spelling": 1, "<--thpppppt>": 1, "important.": 1, - "It": 3, - "skipped": 2, "make": 3, - "binary": 3, "perl": 8, - "ruby": 3, "php": 2, "python": 1, - "xml": 6, - "exist": 4, "looks": 2, "location.": 1, - "ACK_OPTIONS": 5, "variable": 1, "specifies": 1, "placed": 1, "front": 1, "explicit": 1, - "ACK_COLOR_FILENAME": 5, "Specifies": 4, - "color": 38, "recognized": 1, - "attributes": 4, "clear": 2, - "reset": 5, "dark": 1, - "bold": 5, "underline": 1, "underscore": 2, "blink": 1, "reverse": 1, "concealed": 1, - "black": 3, "red": 1, - "green": 3, - "yellow": 3, "blue": 1, "magenta": 1, "on_black": 1, "on_red": 1, "on_green": 1, - "on_yellow": 3, "on_blue": 1, "on_magenta": 1, "on_cyan": 1, @@ -51593,9 +52098,7 @@ "on_color": 1, "background": 1, "color.": 2, - "set": 12, "<--color-filename>": 1, - "ACK_COLOR_MATCH": 5, "printed": 1, "<--color>": 1, "mode.": 1, @@ -51603,49 +52106,36 @@ "See": 1, "": 1, "specifications.": 1, - "ACK_PAGER": 5, - "program": 6, "such": 6, "": 1, "": 1, "": 1, "send": 1, - "its": 2, "output.": 1, "except": 1, - "Windows": 4, "assume": 1, "support": 2, "both": 1, - "specified.": 4, - "ACK_PAGER_COLOR": 7, "understands": 1, - "ANSI": 3, "sequences.": 1, - "If": 15, "never": 1, "back": 4, "ACK": 2, - "&": 22, "OTHER": 1, "TOOLS": 1, - "head2": 34, "Vim": 3, "integration": 3, "integrates": 1, "easily": 2, "editor.": 1, - "Set": 3, "<.vimrc>": 1, "grepprg": 1, "That": 3, "examples": 1, "<-a>": 1, - "but": 4, "flags.": 1, "Now": 1, "step": 1, - "results": 8, "Dumper": 1, "perllib": 1, "Emacs": 1, @@ -51656,34 +52146,25 @@ "an": 16, "": 1, "extension": 1, - "L": 34, "": 1, "TextMate": 2, "Pedro": 1, "Melo": 1, - "user": 4, "who": 1, "writes": 1, "Shell": 2, - "Return": 2, "Code": 1, "greater": 1, "normal": 1, - "returns": 4, - "return": 157, "code": 8, - "something": 3, - "found.": 4, "<$?=256>": 1, "": 1, "backticks.": 1, "errors": 1, "used.": 1, - "returned": 3, "at": 4, "least": 1, "returned.": 1, - "cut": 28, "DEBUGGING": 1, "PROBLEMS": 1, "gives": 2, @@ -51692,33 +52173,24 @@ "forgotten": 1, "<--noenv>": 1, "<.ackrc>": 1, - "see": 5, "remember.": 1, "Put": 1, - "type": 69, - "add": 9, "definitions": 1, "it.": 1, "smart": 1, "too.": 1, - "sort": 8, "there.": 1, "working": 1, "big": 1, "codesets": 1, "more": 2, - "files.": 6, "create": 3, "tree": 2, "ideal": 1, "sending": 1, "": 1, - "p": 9, - "i": 26, - "e": 20, "prefer": 1, "doubt": 1, - "about": 4, "day": 1, "find": 1, "trouble": 1, @@ -51734,7 +52206,6 @@ "log": 3, "scanned": 1, "twice.": 1, - "Q": 7, "aa.bb.cc.dd": 1, "/path/to/access.log": 1, "B5": 1, @@ -51786,7 +52257,6 @@ "great": 1, "did": 1, "replace": 3, - "No": 4, "read": 6, "only.": 1, "has": 3, @@ -51812,8 +52282,6 @@ "ack.": 2, "Yes": 1, "know.": 1, - "package": 14, - "out": 2, "nothing": 1, "suggest": 1, "symlink": 1, @@ -51841,71 +52309,31 @@ "Signes": 1, "Pete": 1, "Krawczyk.": 1, - "COPYRIGHT": 7, - "LICENSE": 3, - "Copyright": 2, - "Andy": 2, - "Lester.": 2, - "free": 4, - "software": 3, - "redistribute": 4, - "and/or": 4, - "modify": 4, - "under": 5, - "terms": 4, - "Artistic": 2, - "License": 2, - "v2.0.": 2, - "File": 54, - "Next": 27, - "Spec": 13, - "current": 5, "files_defaults": 3, "skip_dirs": 3, - "BEGIN": 7, - "file_filter": 12, - "undef": 17, - "descend_filter": 11, - "error_handler": 5, "CORE": 3, - "@_": 43, - "sort_files": 11, - "follow_symlinks": 6, - "map": 10, "curdir": 1, "updir": 1, "__PACKAGE__": 1, "parms": 15, "@queue": 8, "_setup": 2, - "filter": 12, "fullpath": 12, "splice": 2, "local": 5, - "next": 9, "wantarray": 3, - "d": 9, "_candidate_files": 2, - "iterator": 3, "sort_standard": 2, "cmp": 2, "sort_reverse": 1, - "reslash": 4, "@parts": 3, - "split": 13, - "//": 9, - "catfile": 4, - "defaults": 16, "passed_parms": 6, - "ref": 33, "copy": 4, "parm": 1, "hash": 11, - "key": 20, "badkey": 1, "caller": 2, "start": 7, - "push": 30, "dh": 4, "opendir": 1, "@newfiles": 5, @@ -51914,178 +52342,6 @@ "has_stat": 3, "catdir": 3, "closedir": 1, - "@": 38, - "End": 3, - "*STDOUT": 6, - "types": 26, - "type_wanted": 20, - "mappings": 29, - "ignore_dirs": 12, - "output_to_pipe": 12, - "dir_sep_chars": 10, - "is_cygwin": 6, - "is_windows": 12, - "Glob": 4, - "Getopt": 6, - "Long": 6, - "_MTN": 2, - "blib": 2, - "RCS": 2, - "SCCS": 2, - "_darcs": 2, - "_sgbak": 2, - "_build": 2, - "actionscript": 2, - "mxml": 2, - "ada": 4, - "adb": 2, - "ads": 2, - "asm": 4, - "batch": 2, - "bat": 2, - "cmd": 2, - "q": 5, - "Binary": 2, - "T": 2, - "op": 2, - "tt": 4, - "tt2": 2, - "ttml": 2, - "vb": 4, - "bas": 2, - "cls": 2, - "frm": 2, - "ctl": 2, - "resx": 2, - "verilog": 2, - "v": 19, - "vh": 2, - "sv": 2, - "vhdl": 4, - "vhd": 2, - "vim": 4, - "yaml": 4, - "yml": 2, - "dtd": 2, - "xsl": 2, - "xslt": 2, - "ent": 2, - "exts": 6, - "ext": 14, - "mk": 2, - "mak": 2, - "STDIN": 2, - "O": 4, - "/MSWin32/": 2, - "quotemeta": 5, - "@files": 12, - "ACKRC": 2, - "@dirs": 4, - "HOME": 4, - "USERPROFILE": 2, - "bsd_glob": 4, - "GLOB_TILDE": 2, - "open": 7, - "@lines": 21, - "/./": 2, - "s*#/": 2, - "<$fh>": 4, - "chomp": 3, - "s/": 22, - "getopt_specs": 6, - "m": 17, - "after_context": 16, - "before_context": 18, - "val": 26, - "break": 14, - "ACK_COLOR_LINENO": 4, - "column": 4, - "handled": 2, - "beforehand": 2, - "heading": 18, - "h": 6, - "H": 6, - "invert_file_match": 8, - "n": 19, - "o": 17, - "show_types": 4, - "smart_case": 3, - "u": 10, - "w": 4, - "remove_dir_sep": 7, - "print_version_statement": 2, - "show_help_types": 2, - "require": 12, - "Pod": 4, - "Usage": 4, - "pod2usage": 2, - "verbose": 2, - "exitval": 2, - "dummy": 2, - "wanted": 4, - "no//": 2, - "later": 2, - "qq": 18, - "Unknown": 2, - "def_types_from_ARGV": 5, - "filetypes_supported": 5, - "parser": 12, - "Parser": 4, - "configure": 4, - "getoptions": 4, - "to_screen": 10, - "eval": 8, - "Win32": 9, - "Console": 2, - "value": 12, - "join": 5, - "@ret": 10, - "..": 7, - "uniq": 4, - "@uniq": 2, - "<=>": 2, - "b": 6, - "numerical": 2, - "occurs": 2, - "once": 4, - "@typedef": 8, - "td": 6, - "Builtin": 4, - "cannot": 4, - "changed.": 4, - "delete_type": 5, - "Type": 2, - "creating": 3, - "...": 2, - "@exts": 8, - ".//": 2, - "Cannot": 4, - "append": 2, - "Internal": 2, - "error": 4, - "builtin": 2, - "ignoredir_filter": 5, - "constant": 2, - "TEXT": 16, - "basename": 9, - ".*": 2, - "is_searchable": 8, - "lc_basename": 8, - "lc": 5, - "r": 14, - "header": 17, - "SHEBANG#!#!": 2, - "lua": 2, - "erl": 2, - "hp": 2, - "ython": 2, - "d.": 2, - "*": 8, - "b/": 4, - "ba": 2, - "k": 6, - "z": 2, - "sh": 2, "": 1, "these": 4, "updated": 1, @@ -52098,175 +52354,14 @@ "js": 1, "1": 1, "str": 12, - "w/": 3, "regex_is_lc": 2, - "qr/": 13, - "regex/": 9, "S": 1, ".*//": 1, "_my_program": 3, "Basename": 2, - "_get_thpppt": 3, - "y": 8, - "www": 2, - "U": 2, - "tr/": 2, - "x": 7, - "nOo_/": 2, - "<<": 10, - "*I": 2, - "#.": 6, - ".#": 4, - "I#": 2, - "#I": 6, - "#7": 4, - "results.": 2, - "interactively": 6, - "different": 2, - "group": 2, - "Same": 8, - "nogroup": 2, - "noheading": 2, - "nobreak": 2, - "Highlight": 2, - "redirected": 2, - "colour": 2, - "COLOR": 6, - "lineno": 2, - "numbers.": 2, - "Flush": 2, - "immediately": 2, - "even": 4, - "non": 2, - "goes": 2, - "pipe": 4, - "finding": 2, - "searching.": 2, - "REGEX": 2, - "REGEX.": 2, - "Sort": 2, - "invert": 2, - "Print/search": 2, - "handle": 3, - "g/": 2, - "G.": 2, - "show": 3, - "Show": 2, - "has.": 2, - "inclusion/exclusion": 2, - "All": 4, - "Ignores": 2, - "unrestricted": 2, - "Add/Remove": 2, - "dirs": 2, - "R": 2, - "recurse": 2, - "subdirectories": 2, - "END_OF_HELP": 2, - "VMS": 2, - "vd": 2, - "Term": 6, - "ANSIColor": 8, - "printing": 2, - "last_output_line": 6, - "any_output": 10, - "keep_context": 8, - "@before": 16, - "before_starts_at_line": 10, - "after": 18, - "number": 4, - "next_text": 8, - "has_lines": 4, - "should": 6, - "scalar": 2, - "m/": 4, - "print_match_or_context": 13, - "max": 12, - "context_overall_output_count": 6, - "print_blank_line": 2, - "is_binary": 4, - "opts": 2, - "array": 7, - "is_match": 7, - "line_no": 12, - "match_start": 5, - "match_end": 3, - "show_column": 4, - "display_filename": 8, - "colored": 6, - "print_first_filename": 2, - "sep": 8, - "output_func": 8, - "print_separator": 2, - "print_filename": 2, - "display_line_no": 4, - "print_line_no": 2, - "regex/go": 2, - "regex/Term": 2, - "substr": 2, - "/eg": 2, - "z/": 2, - "K/": 2, - "z//": 2, - "print_column_no": 2, - "scope": 4, - "around": 5, - "TOTAL_COUNT_SCOPE": 2, - "total_count": 10, - "get_total_count": 4, - "reset_total_count": 4, - "ors": 11, - "record": 3, - "separator": 4, - "show_total": 6, - "print_count": 4, - "print_count0": 2, - "filetypes_supported_set": 9, - "repo": 18, - "Repository": 11, - "next_resource": 6, - "tarballs_work": 4, - ".tar": 2, - ".gz": 2, - "Tar": 4, - "XXX": 4, - "Error": 2, - "checking": 2, - "needs_line_scan": 14, - "EXPAND_FILENAMES_SCOPE": 4, - "expand_filenames": 7, - "argv": 12, - "attr": 6, - "foreach": 4, - "pattern": 10, - "@results": 14, - "didn": 2, - "ve": 2, - "tried": 2, - "load": 2, - "GetAttributes": 2, - "end": 9, - "we": 7, - "got": 2, - "expanded": 3, - "@what": 14, - "Assume": 2, - "start_point": 4, - "_match": 8, - "target": 6, - "invert_flag": 4, - "starting_point": 10, - "g_regex": 4, - "g_regex/": 6, - "Maybe": 2, - "is_interesting": 4, - "msg": 4, - "Unable": 2, - "rc": 11, "FAIL": 12, "Carp": 11, "confess": 2, - "Plugin": 2, "@ISA": 2, "class": 8, "self": 141, @@ -52283,178 +52378,61 @@ "seek": 4, "readline": 1, "nexted": 3, - "SHEBANG#!#! perl": 4, - "examples/benchmarks/fib.pl": 1, - "Fibonacci": 2, - "Benchmark": 1, - "Calculates": 1, - "Number": 1, - "": 1, - "unspecified": 1, - "fib": 4, - "N": 2, - "SEE": 4, - "ALSO": 4, - "": 1, - "Plack": 25, - "Response": 16, - "Util": 3, - "Accessor": 1, - "body": 30, - "status": 17, - "Scalar": 2, - "HTTP": 16, - "Headers": 8, - "URI": 11, - "Escape": 6, - "content": 8, - "headers": 56, - "carp": 2, - "cookies": 9, - "content_length": 4, - "content_type": 5, - "content_encoding": 5, - "location": 4, - "redirect": 1, - "url": 2, - "finalize": 5, - "croak": 3, - "clone": 1, - "_finalize_cookies": 2, - "/chr": 1, - "/ge": 1, - "LWS": 1, - "single": 1, - "SP": 1, - "//g": 1, - "remove": 2, - "CR": 1, - "LF": 1, - "since": 1, - "char": 1, - "invalid": 1, - "header_field_names": 1, - "_body": 2, - "blessed": 1, - "overload": 1, - "Method": 1, - "cookie": 6, - "_bake_cookie": 2, - "push_header": 1, - "@cookie": 7, - "uri_escape": 3, - "domain": 3, - "_date": 2, - "expires": 7, - "secure": 2, - "httponly": 1, - "@MON": 1, - "Jan": 1, - "Feb": 1, - "Mar": 1, - "Apr": 1, - "Jun": 1, - "Jul": 1, - "Aug": 1, - "Sep": 1, - "Oct": 1, - "Nov": 1, - "Dec": 1, - "@WDAY": 1, - "Sun": 1, - "Mon": 1, - "Tue": 1, - "Wed": 1, - "Thu": 1, - "Fri": 1, - "Sat": 1, - "sec": 2, - "hour": 2, - "mday": 2, - "mon": 2, - "year": 3, - "wday": 2, - "gmtime": 1, - "sprintf": 1, - "WDAY": 1, - "MON": 1, - "__END__": 2, - "Portable": 2, - "PSGI": 10, - "response": 5, - "psgi_handler": 1, - "API.": 1, - "METHODS": 2, - "over": 2, - "Creates": 2, - "object.": 4, - "Sets": 2, - "gets": 2, - "code.": 2, - "": 1, - "alias.": 2, - "response.": 1, - "Setter": 2, - "either": 2, - "": 2, - "headers.": 1, - "body_str": 1, - "io": 1, - "Gets": 3, - "body.": 1, - "string": 5, - "IO": 1, - "Handle": 1, - "": 1, - "method": 8, - "X": 2, + "CGI": 6, + "Fast": 3, + "XML": 2, + "Hash": 11, + "XS": 2, + "FindBin": 1, + "Bin": 3, + "#use": 1, + "lib": 2, + "_stop": 4, + "request": 11, + "SIG": 3, + "nginx": 2, + "external": 2, + "fcgi": 2, + "Ext_Request": 1, + "FCGI": 1, + "Request": 11, + "*STDERR": 1, + "int": 2, + "ARGV": 2, + "conv": 2, + "use_attr": 1, + "indent": 1, + "xml_decl": 1, + "tmpl_path": 2, + "tmpl": 5, + "data": 3, + "nick": 1, + "parent": 5, + "third_party": 1, + "artist_name": 2, + "venue": 2, + "event": 2, + "date": 2, + "zA": 1, + "Z0": 1, + "Content": 2, + "application/xml": 1, + "charset": 2, + "utf": 2, + "hash2xml": 1, + "text/html": 1, + "nError": 1, + "M": 1, + "system": 1, "Foo": 11, - "text/plain": 1, - "gzip": 1, - "normalize": 1, - "string.": 1, - "Users": 1, - "module": 2, - "have": 2, - "responsible": 1, - "properly": 1, - "encoding": 2, - "parameters.": 3, - "": 1, - "header.": 2, - "names": 1, - "their": 1, - "corresponding": 1, - "values": 5, - "plain": 2, - "": 2, - "everything": 1, - "reference": 8, - "": 1, - "": 2, - "": 1, - "": 1, - "": 1, - "integer": 1, - "epoch": 1, - "": 1, - "convert": 1, - "formats": 1, - "<+3M>": 1, - "Returns": 10, - "reference.": 1, - "AUTHOR": 1, - "Tokuhiro": 2, - "Matsuno": 2, - "Tatsuhiko": 2, - "Miyagawa": 2, - "": 2, + "Bar": 1, + "@array": 1, "pod": 1, "Catalyst": 10, + "PSGI": 10, "How": 1, "": 3, "specification": 3, - "defines": 2, "interface": 1, "web": 8, "servers": 2, @@ -52471,7 +52449,6 @@ "server": 2, "mod_perl": 3, "FastCGI": 2, - "etc.": 3, "": 3, "implementation": 1, "running": 1, @@ -52480,7 +52457,6 @@ "XXXX": 1, "classes": 2, "environments": 1, - "CGI": 6, "been": 1, "changed": 1, "done": 2, @@ -52496,7 +52472,6 @@ "Writing": 2, "alternate": 1, "": 1, - "application": 15, "extensions": 1, "implement": 2, "": 1, @@ -52518,7 +52493,6 @@ "Details": 1, "below.": 1, "Additional": 1, - "information": 2, "": 1, "What": 1, "generates": 2, @@ -52528,11 +52502,11 @@ "": 1, "some": 1, "engine": 1, - "specific": 2, "fixes": 1, "uniform": 1, "behaviour": 2, "contained": 1, + "over": 2, "": 1, "": 1, "override": 1, @@ -52545,6 +52519,7 @@ "ll": 1, "An": 1, "apply_default_middlewares": 2, + "method": 8, "supplied": 1, "wrap": 1, "middlewares": 1, @@ -52559,16 +52534,20 @@ "library": 2, "software.": 1, "same": 2, - "itself.": 3, - "Request": 11, + "Plack": 25, "_001": 1, - "Hash": 11, + "HTTP": 16, + "Headers": 8, "MultiValue": 9, "Body": 2, "Upload": 2, "TempBuffer": 2, + "URI": 11, + "Escape": 6, "_deprecated": 8, "alt": 1, + "carp": 2, + "croak": 3, "required": 2, "address": 2, "REMOTE_ADDR": 1, @@ -52587,11 +52566,16 @@ "script_name": 1, "SCRIPT_NAME": 2, "scheme": 3, + "secure": 2, + "body": 30, + "content_length": 4, "CONTENT_LENGTH": 3, + "content_type": 5, "CONTENT_TYPE": 2, "session": 1, "session_options": 1, "logger": 1, + "cookies": 9, "HTTP_COOKIE": 3, "@pairs": 2, "pair": 4, @@ -52599,15 +52583,17 @@ "query_parameters": 3, "uri": 11, "query_form": 2, + "content": 8, "_parse_request_body": 4, "cl": 10, "raw_body": 1, + "headers": 56, "field": 2, "HTTPS": 1, "_//": 1, "CONTENT": 1, "COOKIE": 1, - "/i": 2, + "content_encoding": 5, "referer": 3, "user_agent": 3, "body_parameters": 3, @@ -52620,6 +52606,7 @@ "params": 1, "query_params": 1, "body_params": 1, + "cookie": 6, "param": 8, "get_all": 2, "upload": 13, @@ -52628,11 +52615,13 @@ "path_query": 1, "_uri_base": 3, "path_escape_class": 2, + "uri_escape": 3, "QUERY_STRING": 3, "canonical": 2, "HTTP_HOST": 1, "SERVER_NAME": 1, "new_response": 4, + "Response": 16, "ct": 3, "cleanup": 1, "spin": 2, @@ -52643,9 +52632,12 @@ "@uploads": 3, "@obj": 3, "_make_upload": 2, - "request": 11, + "__END__": 2, + "Portable": 2, "app_or_middleware": 1, "req": 28, + "finalize": 5, + "": 2, "provides": 1, "consistent": 1, "API": 2, @@ -52653,6 +52645,7 @@ "across": 1, "environments.": 1, "CAVEAT": 1, + "module": 2, "intended": 1, "developers": 3, "framework": 2, @@ -52673,22 +52666,22 @@ "level": 1, "top": 1, "PSGI.": 1, + "METHODS": 2, "Some": 1, "earlier": 1, "versions": 1, "deprecated": 1, - "version": 2, "Take": 1, - "look": 2, "": 1, "Unless": 1, - "otherwise": 2, "noted": 1, "": 1, "passing": 1, + "values": 5, "accessor": 1, "debug": 1, "set.": 1, + "": 2, "request.": 1, "uploads.": 2, "": 2, @@ -52698,6 +52691,7 @@ "content_encoding.": 1, "content_length.": 1, "content_type.": 1, + "header.": 2, "referer.": 1, "user_agent.": 1, "GET": 1, @@ -52707,17 +52701,20 @@ "method.": 1, "alternative": 1, "accessing": 1, + "parameters.": 3, "Unlike": 1, "": 1, "allow": 1, "modifying": 1, "@values": 1, "@params": 1, - "A": 2, "convenient": 1, "@fields": 1, + "Creates": 2, "": 3, + "object.": 4, "Handy": 1, + "remove": 2, "dependency": 1, "easy": 1, "subclassing": 1, @@ -52727,12 +52724,12 @@ "generation": 1, "middlewares.": 1, "Parameters": 1, - "i.e.": 2, "": 1, "": 1, "": 1, "": 1, "store": 1, + "plain": 2, "": 1, "scalars": 1, "references": 1, @@ -52772,6 +52769,8 @@ "Cookie": 2, "handling": 1, "simplified": 1, + "string": 5, + "encoding": 2, "decoding": 1, "totally": 1, "up": 1, @@ -52782,122 +52781,123 @@ "": 1, "Simple": 1, "longer": 1, + "have": 2, "wacky": 1, "simply": 1, + "Tatsuhiko": 2, + "Miyagawa": 2, "Kazuhiro": 1, "Osawa": 1, + "Tokuhiro": 2, + "Matsuno": 2, "": 1, "": 1, - "Fast": 3, - "XML": 2, - "XS": 2, - "FindBin": 1, - "Bin": 3, - "#use": 1, - "lib": 2, - "_stop": 4, - "SIG": 3, - "nginx": 2, - "external": 2, - "fcgi": 2, - "Ext_Request": 1, - "FCGI": 1, - "*STDERR": 1, - "int": 2, - "ARGV": 2, - "conv": 2, - "use_attr": 1, - "indent": 1, - "xml_decl": 1, - "tmpl_path": 2, - "tmpl": 5, - "data": 3, - "nick": 1, - "parent": 5, - "third_party": 1, - "artist_name": 2, - "venue": 2, - "event": 2, - "date": 2, - "zA": 1, - "Z0": 1, - "Content": 2, - "application/xml": 1, - "charset": 2, - "utf": 2, - "hash2xml": 1, - "text/html": 1, - "nError": 1, - "M": 1, - "system": 1, - "Bar": 1, - "@array": 1, - "container": 1, - "functions": 2, - "Version": 1, - "serviceable": 1, - "parts": 1, - "inside.": 1, - "this.": 1, - "FUNCTIONS": 1, - "Reads": 1, - ".ackrc": 1, - "arguments.": 1, - "arguments": 2, - "tweaking.": 1, - "Go": 1, - "<--type-set>": 1, - "foo=": 1, - "<--type-add>": 1, - "xml=": 1, - "Remove": 1, - "supported": 1, - "Removes": 1, - "internal": 1, - "structures": 1, - "type_wanted.": 1, - "Standard": 1, - "pass": 1, - "": 1, - "descend_filter.": 1, - "true": 3, - "ones": 1, - "ignore.": 1, - "removes": 1, - "trailing": 1, - "argument": 1, - "<$filename>": 1, - "could": 2, - "be.": 1, - "": 1, - "filetype": 1, - "": 1, - "avoid": 1, - "a.": 1, - "false": 1, - "starting_line_no": 1, - "context": 1, - "Optimized": 1, - "True/False": 1, - "<$regex>": 1, - "<$one>": 1, - "stop": 1, - "first.": 1, - "<$ors>": 1, - "<\"\\n\">": 1, - "filename.": 1, - "was": 2, - "Minor": 1, - "housekeeping": 1, - "before": 1, - "go": 1, - "globs": 1, - "going": 1, - "pipe.": 1, - "Exit": 1, - "correct": 1, - "handed": 1, - "argument.": 1 + "Util": 3, + "Accessor": 1, + "status": 17, + "Scalar": 2, + "location": 4, + "redirect": 1, + "url": 2, + "clone": 1, + "_finalize_cookies": 2, + "/chr": 1, + "/ge": 1, + "LWS": 1, + "single": 1, + "SP": 1, + "//g": 1, + "CR": 1, + "LF": 1, + "since": 1, + "char": 1, + "invalid": 1, + "header_field_names": 1, + "_body": 2, + "blessed": 1, + "overload": 1, + "Method": 1, + "_bake_cookie": 2, + "push_header": 1, + "@cookie": 7, + "domain": 3, + "_date": 2, + "expires": 7, + "httponly": 1, + "@MON": 1, + "Jan": 1, + "Feb": 1, + "Mar": 1, + "Apr": 1, + "Jun": 1, + "Jul": 1, + "Aug": 1, + "Sep": 1, + "Oct": 1, + "Nov": 1, + "Dec": 1, + "@WDAY": 1, + "Sun": 1, + "Mon": 1, + "Tue": 1, + "Wed": 1, + "Thu": 1, + "Fri": 1, + "Sat": 1, + "sec": 2, + "hour": 2, + "mday": 2, + "mon": 2, + "year": 3, + "wday": 2, + "gmtime": 1, + "sprintf": 1, + "WDAY": 1, + "MON": 1, + "response": 5, + "psgi_handler": 1, + "API.": 1, + "Sets": 2, + "gets": 2, + "": 1, + "alias.": 2, + "response.": 1, + "Setter": 2, + "either": 2, + "headers.": 1, + "body_str": 1, + "io": 1, + "body.": 1, + "IO": 1, + "Handle": 1, + "": 1, + "X": 2, + "text/plain": 1, + "gzip": 1, + "normalize": 1, + "string.": 1, + "Users": 1, + "responsible": 1, + "properly": 1, + "": 1, + "names": 1, + "their": 1, + "corresponding": 1, + "": 2, + "everything": 1, + "": 1, + "": 2, + "": 1, + "": 1, + "": 1, + "integer": 1, + "epoch": 1, + "": 1, + "convert": 1, + "formats": 1, + "<+3M>": 1, + "reference.": 1, + "AUTHOR": 1 }, "Perl6": { "token": 6, @@ -52912,6 +52912,37 @@ "": 1, "#": 13, "N*": 1, + "role": 10, + "q": 5, + "stopper": 2, + "MAIN": 1, + "quote": 1, + ")": 19, + "backslash": 3, + "sym": 3, + "<\\\\>": 1, + "": 1, + "": 1, + "": 1, + "": 1, + ".": 1, + "method": 2, + "tweak_q": 1, + "(": 16, + "v": 2, + "self.panic": 2, + "tweak_qq": 1, + "qq": 5, + "does": 7, + "b1": 1, + "c1": 1, + "s1": 1, + "a1": 1, + "h1": 1, + "f1": 1, + "Too": 2, + "late": 2, + "for": 2, "SHEBANG#!perl": 1, "use": 1, "v6": 1, @@ -52929,26 +52960,21 @@ "multi": 2, "line": 5, "comment": 2, - "(": 16, - ")": 19, "I": 1, "there": 1, "m": 2, "even": 1, "specialer": 1, - "does": 7, "nesting": 1, "work": 1, "<": 3, "trying": 1, "mixed": 1, "delimiters": 1, - "qq": 5, "": 1, "arbitrary": 2, "delimiter": 2, "Hooray": 1, - "q": 5, "": 1, "with": 9, "whitespace": 1, @@ -52965,7 +52991,6 @@ "highlighted": 1, "table": 1, "Of": 1, - "role": 10, "things": 1, "A": 3, "single": 3, @@ -52997,37 +53022,72 @@ "/": 1, "": 1, "": 1, - "roleq": 1, - "stopper": 2, - "MAIN": 1, - "quote": 1, - "backslash": 3, - "sym": 3, - "<\\\\>": 1, - "": 1, - "": 1, - "": 1, - "": 1, - ".": 1, - "method": 2, - "tweak_q": 1, - "v": 2, - "self.panic": 2, - "tweak_qq": 1, - "b1": 1, - "c1": 1, - "s1": 1, - "a1": 1, - "h1": 1, - "f1": 1, - "Too": 2, - "late": 2, - "for": 2 + "roleq": 1 }, "Pike": { "#pike": 2, "__REAL_VERSION__": 2, + "constant": 13, + "Generic": 1, + "__builtin.GenericError": 1, + ";": 149, + "Index": 1, + "__builtin.IndexError": 1, + "BadArgument": 1, + "__builtin.BadArgumentError": 1, + "Math": 1, + "__builtin.MathError": 1, + "Resource": 1, + "__builtin.ResourceError": 1, + "Permission": 1, + "__builtin.PermissionError": 1, + "Decode": 1, + "__builtin.DecodeError": 1, + "Cpp": 1, + "__builtin.CppError": 1, + "Compilation": 1, + "__builtin.CompilationError": 1, + "MasterLoad": 1, + "__builtin.MasterLoadError": 1, + "ModuleLoad": 1, + "__builtin.ModuleLoadError": 1, "//": 85, + "Returns": 2, + "an": 2, + "Error": 2, + "object": 5, + "for": 1, + "any": 1, + "argument": 2, + "it": 2, + "receives.": 1, + "If": 1, + "the": 4, + "already": 1, + "is": 2, + "or": 1, + "empty": 1, + "does": 1, + "nothing.": 1, + "mkerror": 1, + "(": 218, + "mixed": 8, + "error": 14, + ")": 218, + "{": 51, + "if": 35, + "UNDEFINED": 1, + "return": 41, + "objectp": 1, + "&&": 2, + "-": 50, + "is_generic_error": 1, + "arrayp": 2, + "Error.Generic": 3, + "@error": 1, + "stringp": 1, + "sprintf": 3, + "}": 51, "A": 2, "string": 20, "wrapper": 1, @@ -53040,7 +53100,6 @@ "[": 45, "Stdio.File": 32, "]": 45, - "object": 5, "in": 1, "addition": 1, "some": 1, @@ -53049,7 +53108,6 @@ "Stdio.FILE": 4, "object.": 2, "This": 1, - "constant": 13, "can": 2, "used": 1, "distinguish": 1, @@ -53057,13 +53115,10 @@ "from": 1, "real": 1, "is_fake_file": 1, - ";": 149, "protected": 12, "data": 34, "int": 31, "ptr": 27, - "(": 218, - ")": 218, "r": 10, "w": 6, "mtime": 4, @@ -53074,27 +53129,21 @@ "write_oob_cb": 5, "close_cb": 5, "@seealso": 33, - "-": 50, "close": 2, "void": 25, "|": 14, "direction": 5, - "{": 51, "lower_case": 2, "||": 2, "cr": 2, "has_value": 4, "cw": 2, - "if": 35, - "}": 51, - "return": 41, "@decl": 1, "create": 3, "type": 11, "pointer": 1, "_data": 3, "_ptr": 2, - "error": 14, "time": 3, "else": 5, "make_type_str": 3, @@ -53104,10 +53153,8 @@ "Always": 3, "returns": 4, "errno": 2, - "Returns": 2, "size": 3, "and": 1, - "the": 4, "creation": 1, "string.": 2, "Stdio.Stat": 3, @@ -53119,7 +53166,6 @@ "line_iterator": 2, "String.SplitIterator": 3, "trim": 2, - "mixed": 8, "id": 3, "query_id": 2, "set_id": 2, @@ -53165,9 +53211,7 @@ "str": 12, "...": 2, "extra": 2, - "arrayp": 2, "str*": 1, - "sprintf": 3, "@extra": 1, "..": 1, "set_blocking": 3, @@ -53192,7 +53236,6 @@ "query_write_oob_callback": 2, "_sprintf": 1, "t": 2, - "&&": 2, "casted": 1, "cast": 1, "switch": 1, @@ -53231,50 +53274,7 @@ "set_keepalive": 1, "trylock": 1, "write_oob": 1, - "@endignore": 1, - "Generic": 1, - "__builtin.GenericError": 1, - "Index": 1, - "__builtin.IndexError": 1, - "BadArgument": 1, - "__builtin.BadArgumentError": 1, - "Math": 1, - "__builtin.MathError": 1, - "Resource": 1, - "__builtin.ResourceError": 1, - "Permission": 1, - "__builtin.PermissionError": 1, - "Decode": 1, - "__builtin.DecodeError": 1, - "Cpp": 1, - "__builtin.CppError": 1, - "Compilation": 1, - "__builtin.CompilationError": 1, - "MasterLoad": 1, - "__builtin.MasterLoadError": 1, - "ModuleLoad": 1, - "__builtin.ModuleLoadError": 1, - "an": 2, - "Error": 2, - "for": 1, - "any": 1, - "argument": 2, - "it": 2, - "receives.": 1, - "If": 1, - "already": 1, - "is": 2, - "or": 1, - "empty": 1, - "does": 1, - "nothing.": 1, - "mkerror": 1, - "UNDEFINED": 1, - "objectp": 1, - "is_generic_error": 1, - "Error.Generic": 3, - "@error": 1, - "stringp": 1 + "@endignore": 1 }, "Pod": { "Id": 1, @@ -53693,60 +53693,18 @@ }, "Prolog": { "-": 161, - "lib": 1, - "(": 327, - "ic": 1, - ")": 326, - ".": 107, - "vabs": 2, - "Val": 8, - "AbsVal": 10, - "#": 9, - ";": 12, - "labeling": 2, - "[": 87, - "]": 87, - "vabsIC": 1, - "or": 1, - "faitListe": 3, - "_": 30, - "First": 2, - "|": 25, - "Rest": 12, - "Taille": 2, - "Min": 2, - "Max": 2, - "Min..Max": 1, - "Taille1": 2, - "suite": 3, - "Xi": 5, - "Xi1": 7, - "Xi2": 7, - "checkRelation": 3, - "VabsXi1": 2, - "Xi.": 1, - "checkPeriode": 3, - "ListVar": 2, - "length": 4, - "Length": 2, - "<": 1, - "X1": 2, - "X2": 2, - "X3": 2, - "X4": 2, - "X5": 2, - "X6": 2, - "X7": 2, - "X8": 2, - "X9": 2, - "X10": 3, "module": 3, + "(": 327, "format_spec": 12, + "[": 87, "format_error/2": 1, "format_spec/2": 1, "format_spec//1": 1, "spec_arity/2": 1, "spec_types/2": 1, + "]": 87, + ")": 326, + ".": 107, "use_module": 8, "library": 8, "dcg/basics": 1, @@ -53769,16 +53727,19 @@ "Format": 23, "Args": 19, "format_error_": 5, + "_": 30, "debug": 4, "Spec": 10, "is_list": 1, "spec_types": 8, "Types": 16, "types_error": 3, + "length": 4, "TypesLen": 3, "ArgsLen": 3, "types_error_": 4, "Arg": 6, + "|": 25, "Type": 3, "ground": 5, "is_of_type": 2, @@ -53848,11 +53809,13 @@ "Numeric": 4, "Modifier": 2, "Action": 15, + "Rest": 12, "numeric_argument": 5, "modifier_argument": 3, "action": 6, "text": 4, "String": 6, + ";": 12, "Codes": 21, "string_codes": 4, "string_without": 1, @@ -53904,32 +53867,6 @@ "s": 2, "t": 1, "W": 1, - "turing": 1, - "Tape0": 2, - "Tape": 2, - "perform": 4, - "q0": 1, - "Ls": 12, - "Rs": 16, - "reverse": 4, - "Ls1": 4, - "append": 2, - "qf": 1, - "Q0": 2, - "Ls0": 6, - "Rs0": 6, - "symbol": 3, - "Sym": 6, - "RsRest": 2, - "rule": 1, - "Q1": 2, - "NewSym": 2, - "Rs1": 2, - "b": 4, - "left": 4, - "stay": 1, - "right": 1, - "L": 2, "func": 13, "op": 2, "xfy": 2, @@ -54004,8 +53941,10 @@ "can": 3, "chained.": 2, "Reversed": 2, + "reverse": 4, "sort": 2, "c": 2, + "b": 4, "meta_predicate": 2, "throw": 1, "permission_error": 1, @@ -54048,6 +53987,7 @@ "Goals": 2, "Tmp": 3, "instantiation_error": 1, + "append": 2, "NewArgs": 2, "variant_sha1": 1, "Sha": 2, @@ -54065,6 +54005,43 @@ "Name": 2, "Args0": 2, "nth1": 2, + "lib": 1, + "ic": 1, + "vabs": 2, + "Val": 8, + "AbsVal": 10, + "#": 9, + "labeling": 2, + "vabsIC": 1, + "or": 1, + "faitListe": 3, + "First": 2, + "Taille": 2, + "Min": 2, + "Max": 2, + "Min..Max": 1, + "Taille1": 2, + "suite": 3, + "Xi": 5, + "Xi1": 7, + "Xi2": 7, + "checkRelation": 3, + "VabsXi1": 2, + "Xi.": 1, + "checkPeriode": 3, + "ListVar": 2, + "Length": 2, + "<": 1, + "X1": 2, + "X2": 2, + "X3": 2, + "X4": 2, + "X5": 2, + "X6": 2, + "X7": 2, + "X8": 2, + "X9": 2, + "X10": 3, "male": 3, "john": 2, "peter": 3, @@ -54073,7 +54050,30 @@ "christie": 3, "parents": 4, "brother": 1, - "M": 2 + "M": 2, + "turing": 1, + "Tape0": 2, + "Tape": 2, + "perform": 4, + "q0": 1, + "Ls": 12, + "Rs": 16, + "Ls1": 4, + "qf": 1, + "Q0": 2, + "Ls0": 6, + "Rs0": 6, + "symbol": 3, + "Sym": 6, + "RsRest": 2, + "rule": 1, + "Q1": 2, + "NewSym": 2, + "Rs1": 2, + "left": 4, + "stay": 1, + "right": 1, + "L": 2 }, "Propeller Spin": { "{": 26, @@ -54349,962 +54349,6 @@ "WITH": 10, "DEALINGS": 10, "SOFTWARE.": 10, - "***************************************": 12, - "VGA": 8, - "Driver": 4, - "v1.1": 8, - "Chip": 7, - "Gracey": 7, - "Inc.": 8, - "-": 486, - "May": 2, - "pixel": 40, - "tile": 41, - "size": 5, - "x": 112, - "enable": 5, - "more": 90, - "efficient": 2, - "vga_mode": 3, - "start": 16, - "colortable": 7, - "inside": 2, - "cog": 39, - "VAR": 10, - "long": 122, - "PUB": 63, - "vgaptr": 3, - "okay": 11, - "Start": 6, - "driver": 17, - "starts": 4, - "false": 7, - "if": 53, - "available": 4, - "pointer": 14, - "parameters": 19, - "stop": 9, - "cognew": 4, - "@entry": 3, - "Stop": 6, - "frees": 6, - "cogstop": 3, - "Assembly": 2, - "language": 2, - "Entry": 2, - "reset": 14, - "tasks": 6, - "mov": 154, - "#8": 14, - "Superfield": 2, - "hv": 5, - "interlace": 20, - "#0": 20, - "get": 30, - "nz": 3, - "field": 4, - "wrlong": 6, - "visible": 7, - "par": 20, - "back": 8, - "porch": 9, - "lines": 24, - "vb": 2, - "movd": 10, - "bcolor": 3, - "#colortable": 2, - "call": 44, - "#blank_line": 3, - "nobl": 1, - "screen": 13, - "_screen": 3, - "vertical": 29, - "tiles": 19, - "line": 33, - "vx": 2, - "_vx": 1, - "skip": 5, - "if_nz": 18, - "tjz": 8, - "hb": 2, - "nobp": 1, - "horizontal": 21, - "vscl": 12, - "hx": 5, - "add": 92, - "pixels": 14, - "rdlong": 16, - "colors": 18, - "color": 39, - "#2": 15, - "pass": 5, - "video": 7, - "djnz": 24, - "repoint": 2, - "first": 9, - "same": 7, - "hf": 2, - "nofp": 1, - "hsync": 5, - "#blank_hsync": 1, - "expand": 3, - "ror": 4, - "linerot": 5, - "next": 16, - "y": 80, - "wc": 57, - "front": 4, - "vf": 1, - "nofl": 1, - "xor": 8, - "#1": 47, - "wz": 21, - "unless": 2, - "field1": 4, - "status": 15, - "invisible": 8, - "taskptr": 3, - "#tasks": 1, - "before": 1, - "after": 2, - "_vs": 2, - "except": 1, - "last": 6, - "#blank_vsync": 1, - "jmp": 24, - "#field": 1, - "else": 3, - "new": 6, - "superfield": 1, - "blank_vsync": 1, - "cmp": 16, - "blank": 2, - "vsync": 4, - "if_nc": 15, - "h2": 2, - "if_c_and_nz": 1, - "%": 162, - "if_c": 37, - "waitvid": 3, - "task": 2, - "section": 4, - "z": 4, - "undisturbed": 2, - "blank_hsync": 1, - "_hf": 1, - "invisble": 1, - "sync": 10, - "_hb": 1, - "#hv": 1, - "blank_hsync_ret": 1, - "blank_line_ret": 1, - "blank_vsync_ret": 1, - "ret": 17, - "t1": 139, - "_status": 1, - "t2": 90, - "#paramcount": 1, - "load": 3, - "#4": 8, - "d0": 11, - "directions": 1, - "shl": 21, - "_pins": 4, - "_enable": 2, - "#disabled": 2, - "break": 6, - "return": 15, - "later": 6, - "min": 4, - "_rate": 3, - "pllmin": 1, - "_011": 1, - "adjust": 4, - "rate": 6, - "within": 5, - "MHz": 16, - "shr": 24, - "hvbase": 5, - "frqa": 3, - "muxnc": 5, - "vmask": 1, - "test": 38, - "_mode": 7, - "hmask": 1, - "_hx": 4, - "_vt": 3, - "consider": 2, - "muxc": 5, - "lineadd": 4, - "lineinc": 3, - "movi": 3, - "vcfg": 2, - "_000": 5, - "/160": 2, - "#13": 3, - "times": 3, - "loaded": 3, - "#9": 2, - "FC": 2, - "_colors": 2, - "colormask": 1, - "andn": 7, - "d6": 3, - "loop": 14, - "keep": 2, - "loading": 2, - "multiply": 8, - "multiply_ret": 2, - "Disabled": 2, - "nap": 5, - "ms": 4, - "try": 2, - "again": 2, - "ctra": 5, - "disabled": 3, - "#3": 7, - "cnt": 2, - "waitcnt": 3, - "#entry": 1, - "Initialized": 1, - "data": 47, - "pll": 5, - "lowest": 1, - "output": 11, - "frequency": 18, - "pllmax": 1, - "_000_000": 6, - "*16": 1, - "vco": 3, - "max": 6, - "m4": 1, - "Uninitialized": 3, - "taskret": 4, - "res": 89, - "Parameter": 4, - "buffer": 4, - "/non": 4, - "tihv": 1, - "@long": 2, - "_ht": 2, - "_ho": 2, - "_hd": 1, - "_hs": 1, - "_vd": 1, - "fit": 2, - "underneath": 1, - "BF": 1, - "___": 1, - "/1/2": 1, - "off/visible/invisible": 1, - "vga_enable": 3, - "pppttt": 1, - "write": 36, - "words": 5, - "vga_colors": 2, - "vga_vt": 6, - "expansion": 8, - "vga_vx": 4, - "offset": 14, - "vga_vo": 4, - "display": 23, - "ticks": 11, - "vga_hf": 2, - "vga_hb": 2, - "vga_vf": 2, - "vga_vb": 2, - "tick": 2, - "Hz": 5, - "preceding": 2, - "may": 6, - "copied": 2, - "your": 2, - "code.": 2, - "After": 2, - "setting": 2, - "variables": 3, - "@vga_status": 1, - "driver.": 3, - "All": 2, - "reloaded": 2, - "each": 11, - "superframe": 2, - "allowing": 2, - "you": 5, - "live": 2, - "changes.": 2, - "minimize": 2, - "flicker": 5, - "correlate": 2, - "changes": 3, - "vga_status.": 1, - "Experimentation": 2, - "required": 4, - "optimize": 2, - "some": 3, - "parameters.": 2, - "descriptions": 2, - "__________": 4, - "vga_status": 1, - "sets": 3, - "indicate": 2, - "CLKFREQ": 10, - "<": 14, - "currently": 4, - "outputting": 4, - "disable": 7, - "driven": 2, - "low": 5, - "reduces": 2, - "power": 3, - "________": 3, - "vga_pins": 1, - "bits": 29, - "select": 9, - "group": 7, - "top": 10, - "bit": 35, - "selects": 4, - "between": 4, - "x16": 7, - "x32": 6, - "tileheight": 4, - "controls": 4, - "progressive": 2, - "scan": 7, - "less": 5, - "good": 5, - "motion": 2, - "LCD": 4, - "monitors": 1, - "interlaced": 5, - "allows": 1, - "double": 2, - "text": 9, - "polarity": 1, - "respectively": 1, - "active": 3, - "high": 7, - "vga_screen": 1, - "define": 10, - "contents": 3, - "right": 9, - "bottom": 5, - "number": 27, - "must": 18, - "vga_ht": 3, - "word": 212, - "has": 4, - "bitfields": 2, - "colorset": 2, - "ptr": 5, - "pixelgroup": 2, - "colorset*": 2, - "pixelgroup**": 2, - "address": 16, - "ppppppppppcccc00": 2, - "p": 8, - "colorsets": 4, - "longs": 15, - "four": 8, - "**": 2, - "pixelgroups": 2, - "": 5, - "up": 4, - "fields": 2, - "t": 10, - "care": 1, - "used": 9, - "it": 8, - "suggested": 1, - "bits/pins": 3, - "red": 2, - "green": 1, - "blue": 3, - "bit/pin": 1, - "sum": 7, - "ohm": 10, - "form": 7, - "V": 7, - "signals": 1, - "connect": 3, - "signal": 8, - "RED": 1, - "GREEN": 2, - "BLUE": 1, - "connector": 3, - "always": 2, - "HSYNC": 1, - "via": 5, - "resistor": 4, - "VSYNC": 1, - "______": 14, - "least": 14, - "vga_hx": 3, - "factor": 4, - "sure": 4, - "||": 5, - "vga_ho": 2, - "equal": 1, - "than": 5, - "vga_hd": 2, - "does": 2, - "not": 6, - "exceed": 1, - "vga_vd": 2, - "/": 27, - "pos/neg": 4, - "recommended": 2, - "shifts": 4, - "right/left": 2, - "up/down": 2, - "vga_hs": 1, - "vga_vs": 1, - "vga_rate": 2, - "limit": 4, - "KHz": 3, - "should": 1, - "PS/2": 1, - "Keyboard": 1, - "v1.0.1": 2, - "REVISION": 2, - "HISTORY": 2, - "Updated": 4, - "/15/2006": 2, - "work": 2, - "Propeller": 3, - "Tool": 1, - "par_tail": 1, - "key": 4, - "head": 1, - "par_present": 1, - "states": 1, - "par_keys": 1, - "******************************************": 2, - "org": 2, - "entry": 1, - "#_dpin": 1, - "masks": 1, - "dmask": 4, - "_dpin": 3, - "cmask": 2, - "_cpin": 2, - "parameter": 14, - "_head": 6, - "_present/_states": 1, - "dlsb": 2, - "stat": 6, - "Update": 1, - "update": 7, - "_head/_present/_states": 1, - "#1*4": 1, - "Get": 2, - "scancode": 2, - "state": 2, - "#receive": 1, - "AA": 1, - "extended": 1, - "if_nc_and_z": 2, - "F0": 3, - "unknown": 2, - "ignore": 2, - "if_z": 11, - "#newcode": 1, - "_states": 2, - "set/clear": 1, - "#5": 2, - "#_states": 1, - "reg": 5, - "cmpsub": 4, - "shift/ctrl/alt/win": 1, - "pairs": 1, - "#16": 6, - "E0": 1, - "handle": 1, - "scrlock/capslock/numlock": 1, - "_locks": 5, - "#29": 1, - "change": 3, - "configure": 3, - "flag": 5, - "leds": 3, - "check": 5, - "shift1": 1, - "if_nz_and_c": 4, - "B": 15, - "#@shift1": 1, - "@table": 1, - "#look": 1, - "D": 18, - "shift": 7, - "alpha": 1, - "considering": 1, - "capslock": 1, - "if_nz_and_nc": 1, - "flags": 1, - "alt": 1, - "room": 1, - "valid": 2, - "enter": 1, - "sub": 12, - "F": 18, - "FF": 3, - "#11*4": 1, - "wrword": 1, - "F3": 1, - "keyboard": 3, - "lock": 1, - "#transmit": 2, - "rev": 1, - "&": 21, - "rcl": 2, - "_present": 2, - "#update": 1, - "Lookup": 2, - "byte": 27, - "table": 9, - "perform": 2, - "lookup": 1, - "movs": 9, - "#table": 1, - "#27": 1, - "#rand": 1, - "Transmit": 1, - "pull": 2, - "clock": 4, - "napshr": 3, - "#18": 2, - "release": 1, - "ready": 10, - "transmit_bit": 1, - "#wait_c0": 2, - "_d2": 1, - "wcond": 3, - "c1": 2, - "another": 7, - "c0d0": 2, - "wait": 6, - "until": 3, - "#wait": 2, - "#receive_ack": 1, - "ack": 1, - "error": 1, - "#reset": 2, - "transmit_ret": 1, - "receive": 1, - "receive_bit": 1, - "pause": 1, - "us": 1, - "#nap": 1, - "_d3": 1, - "#receive_bit": 1, - "align": 1, - "isolate": 1, - "look_ret": 1, - "receive_ack_ret": 1, - "receive_ret": 1, - "wait_c0": 1, - "c0": 1, - "timeout": 1, - "wloop": 1, - "_d4": 1, - "replaced": 1, - "c0/c1/c0d0/c1d1": 1, - "if_never": 1, - "replacements": 1, - "#wloop": 3, - "if_c_or_nz": 1, - "c1d1": 1, - "if_nc_or_z": 1, - "scales": 1, - "time": 7, - "snag": 1, - "elapses": 1, - "nap_ret": 1, - "F9": 1, - "F5": 1, - "D2": 1, - "F1": 2, - "D1": 1, - "F12": 1, - "F10": 1, - "D7": 1, - "F6": 1, - "D3": 1, - "Tab": 2, - "Alt": 2, - "R": 3, - "L": 5, - "F3F2": 1, - "q": 1, - "w": 8, - "Win": 2, - "d": 2, - "Space": 2, - "f": 2, - "r": 4, - "Apps": 1, - "h": 2, - "Power": 1, - "j": 2, - "Sleep": 1, - "i": 24, - ".": 2, - "EF2F": 1, - "l": 2, - "CapsLock": 1, - "Enter": 3, - "C": 11, - "E": 7, - "WakeUp": 1, - "BackSpace": 1, - "C5E1": 1, - "C0E4": 1, - "Home": 1, - "Insert": 1, - "C9EA": 1, - "Down": 1, - "E5": 1, - "Right": 1, - "C2E8": 1, - "Esc": 1, - "DF": 2, - "F11": 1, - "EC": 1, - "PageDn": 1, - "ED": 1, - "PrScr": 1, - "C6E9": 1, - "ScrLock": 1, - "D6": 1, - "_________": 5, - "Key": 1, - "Codes": 1, - "keypress": 1, - "keystate": 2, - "E0..FF": 1, - "AS": 1, - "Vocal": 2, - "Tract": 2, - "October": 1, - "synthesizes": 1, - "human": 1, - "vocal": 10, - "tract": 12, - "real": 2, - "It": 1, - "MHz.": 1, - "controlled": 1, - "reside": 1, - "parent": 1, - "aa": 2, - "ga": 5, - "gp": 2, - "vp": 3, - "vr": 1, - "f1": 4, - "f2": 1, - "f3": 3, - "f4": 2, - "na": 2, - "nf": 2, - "fa": 2, - "ff": 2, - "values.": 2, - "Before": 1, - "were": 1, - "interpolation": 1, - "shy": 1, - "frame": 12, - "makes": 1, - "behave": 1, - "sensibly": 1, - "during": 2, - "gaps.": 1, - "CON": 4, - "frame_buffers": 2, - "bytes": 2, - "per": 4, - "frame_longs": 3, - "frame_bytes": 1, - "...must": 1, - "dira_": 3, - "dirb_": 1, - "ctra_": 1, - "ctrb_": 3, - "frqa_": 3, - "cnt_": 1, - "many": 1, - "...contiguous": 1, - "tract_ptr": 3, - "pos_pin": 7, - "neg_pin": 6, - "fm_offset": 5, - "positive": 1, - "delta": 10, - "modulation": 4, - "negative": 2, - "also": 1, - "enabled": 2, - "fm": 6, - "aural": 13, - "subcarrier": 3, - "generation": 2, - "_500_000": 1, - "NTSC": 11, - "Remember": 1, - "ctrb": 4, - "duty": 2, - "mode": 7, - "|": 22, - "<<": 70, - "Ready": 1, - "repeat": 18, - "clkfreq": 2, - "Launch": 1, - "@attenuation": 1, - "Reset": 1, - "buffers": 1, - "longfill": 2, - "@index": 1, - "constant": 3, - "frame_buffer_longs": 2, - "set_attenuation": 1, - "level": 5, - "Set": 5, - "master": 2, - "attenuation": 3, - "initially": 2, - "set_pace": 2, - "percentage": 3, - "pace": 3, - "go": 1, - "Queue": 1, - "current": 3, - "transition": 1, - "over": 2, - "actual": 4, - "integer": 2, - "see": 2, - "Load": 1, - "bytemove": 1, - "@frames": 1, - "index": 5, - "Increment": 1, - "full": 3, - "Returns": 4, - "true": 6, - "queue": 2, - "useful": 2, - "checking": 1, - "would": 1, - "have": 1, - "frames": 2, - "empty": 2, - "detecting": 1, - "finished": 1, - "sample_ptr": 1, - "receives": 1, - "audio": 1, - "samples": 1, - "signed": 4, - "values": 2, - "updated": 1, - "@sample": 1, - "aural_id": 1, - "id": 2, - "executing": 1, - "algorithm": 1, - "connecting": 1, - "broadcast": 19, - "tv": 2, - "Initialization": 1, - "zero": 10, - "reserved": 3, - "clear_cnt": 1, - "#2*15": 1, - "saves": 2, - "hub": 1, - "memory": 2, - "minst": 3, - "d0s0": 3, - "mult_ret": 1, - "antilog_ret": 1, - "assemble": 1, - "cordic": 4, - "steps": 9, - "reserves": 2, - "cstep": 1, - "instruction": 2, - "center": 10, - "prepare": 1, - "initial": 6, - "cnt_value": 3, - "cnt_ticks": 3, - "Loop": 1, - "Wait": 2, - "sample": 2, - "period": 1, - "sar": 8, - "cycle": 1, - "driving": 1, - "h80000000": 2, - "frqb": 2, - "White": 1, - "noise": 3, - "source": 2, - "lfsr": 1, - "lfsr_taps": 2, - "Aspiration": 1, - "vibrato": 3, - "#10": 2, - "vphase": 2, - "glottal": 2, - "pitch": 5, - "divide": 3, - "final": 3, - "mesh": 1, - "tune": 2, - "convert": 1, - "log": 2, - "phase": 2, - "gphase": 3, - "formant2": 2, - "rotate": 2, - "f2x": 3, - "f2y": 3, - "#cordic": 2, - "formant4": 2, - "f4x": 3, - "f4y": 3, - "subtract": 1, - "nx": 4, - "negated": 1, - "nasal": 2, - "amplitude": 3, - "#mult": 1, - "negate": 2, - "fphase": 4, - "frication": 2, - "#sine": 1, - "Handle": 1, - "cycles": 4, - "frame_ptr": 6, - "past": 1, - "miscellaneous": 2, - "frame_index": 3, - "stepsize": 2, - "step_size": 5, - "h00FFFFFF": 2, - "final1": 2, - "finali": 2, - "iterate": 3, - "aa..ff": 4, - "jmpret": 5, - "#loop": 9, - "insure": 2, - "accurate": 1, - "accumulation": 1, - "step_acc": 3, - "set2": 3, - "#par_curr": 1, - "set3": 2, - "#par_next": 1, - "set4": 3, - "#par_step": 1, - "#24": 1, - "par_curr": 3, - "absolute": 1, - "msb": 2, - "nr": 1, - "step": 9, - "mult": 2, - "negnz": 3, - "par_step": 1, - "pointers": 2, - "frame_cnt": 2, - "step1": 2, - "stepi": 1, - "done": 3, - "stepframe": 1, - "#frame_bytes": 1, - "par_next": 2, - "Math": 1, - "Subroutines": 1, - "Antilog": 1, - "whole": 2, - "fraction": 1, - "out": 24, - "antilog": 2, - "FFEA0000": 1, - "position": 9, - "h00000FFE": 2, - "base": 6, - "rdword": 10, - "insert": 2, - "leading": 1, - "Scaled": 1, - "sine": 7, - "unsigned": 3, - "scale": 7, - "angle": 23, - "h00001000": 2, - "quadrant": 3, - "negc": 1, - "justify": 4, - "result": 6, - "Multiply": 1, - "multiplier": 3, - "#15": 1, - "mult_step": 1, - "Cordic": 1, - "rotation": 3, - "degree": 1, - "#cordic_steps": 1, - "gets": 1, - "assembled": 1, - "x13": 2, - "cordic_dx": 1, - "incremented": 1, - "sumnc": 7, - "sumc": 4, - "cordic_a": 1, - "cordic_delta": 2, - "linear": 1, - "feedback": 2, - "register": 1, - "B901476": 1, - "constants": 2, - "greater": 1, - "h40000000": 1, - "h01000000": 1, - "FFFFFF": 1, - "h00010000": 1, - "h0000D000": 1, - "D000": 1, - "h00007000": 1, - "FFE": 1, - "h00000800": 1, - "registers": 2, - "clear": 5, - "startup": 2, - "Undefined": 2, - "Data": 1, - "zeroed": 1, - "initialization": 2, - "code": 3, - "cleared": 1, - "f1x": 1, - "f1y": 1, - "f3x": 1, - "f3y": 1, - "aspiration": 1, - "***": 1, - "mult_steps": 1, - "assembly": 1, - "area": 1, - "w/ret": 1, - "cordic_ret": 1, "****************************************": 4, "Debug_Lcd": 1, "v1.2": 2, @@ -55313,38 +54357,56 @@ "Williams": 2, "Jeff": 2, "Martin": 2, + "Inc.": 8, "Debugging": 1, "wrapper": 1, "Serial_Lcd": 1, + "-": 486, "March": 1, + "Updated": 4, "conform": 1, + "Propeller": 3, + "initialization": 2, "standards.": 1, + "v1.1": 8, "April": 1, "consistency.": 1, "OBJ": 2, "lcd": 2, + "number": 27, "string": 8, "conversion": 1, + "PUB": 63, "init": 2, "baud": 2, + "lines": 24, + "okay": 11, "Initializes": 1, "serial": 1, + "LCD": 4, + "true": 6, + "if": 53, + "parameters": 19, "lcd.init": 1, "finalize": 1, "Finalizes": 1, + "frees": 6, "floats": 1, "lcd.finalize": 1, "putc": 1, "txbyte": 2, "Send": 1, + "byte": 27, "terminal": 4, "lcd.putc": 1, "str": 3, "strAddr": 2, "Print": 15, + "zero": 10, "terminated": 4, "lcd.str": 8, "dec": 3, + "signed": 4, "decimal": 5, "num.dec": 1, "decf": 1, @@ -55353,9 +54415,11 @@ "space": 1, "padded": 2, "fixed": 1, + "field": 4, "num.decf": 1, "decx": 1, "digits": 23, + "negative": 2, "num.decx": 1, "hex": 3, "hexadecimal": 4, @@ -55367,17 +54431,20 @@ "binary": 4, "num.bin": 1, "ibin": 1, + "%": 162, "num.ibin": 1, "cls": 1, "Clears": 2, "moves": 1, "cursor": 9, "home": 4, + "position": 9, "lcd.cls": 1, "Moves": 2, "lcd.home": 1, "gotoxy": 1, "col": 9, + "line": 33, "col/line": 1, "lcd.gotoxy": 1, "clrln": 1, @@ -55387,11 +54454,16 @@ "off": 8, "blink": 4, "lcd.cursor": 1, + "display": 23, + "status": 15, "Controls": 1, "visibility": 1, + "false": 7, "hide": 1, + "contents": 3, "clearing": 1, "lcd.displayOn": 1, + "else": 3, "lcd.displayOff": 1, "custom": 2, "char": 2, @@ -55399,246 +54471,39 @@ "Installs": 1, "character": 6, "map": 1, + "address": 16, "definition": 9, "array": 1, "lcd.custom": 1, "backLight": 1, "Enable": 1, + "disable": 7, "backlight": 1, "affects": 1, "backlit": 1, "models": 1, "lcd.backLight": 1, - "TV": 9, - "Text": 1, - "cols": 5, - "rows": 4, - "screensize": 4, - "lastrow": 2, - "tv_count": 2, - "row": 4, - "tv_status": 4, - "off/on": 3, - "tv_pins": 5, - "tccip": 3, - "chroma": 19, - "ntsc/pal": 3, - "tv_screen": 5, - "tv_ht": 5, - "tv_hx": 5, - "tv_ho": 5, - "tv_broadcast": 4, - "basepin": 3, - "setcolors": 2, - "@palette": 1, - "longmove": 2, - "@tv_status": 3, - "@tv_params": 1, - "@screen": 3, - "tv_colors": 2, - "@colors": 2, - "tv.start": 1, - "tv.stop": 2, - "stringptr": 3, - "strsize": 2, - "_000_000_000": 2, - "//": 4, - "elseif": 2, - "lookupz": 2, - "..": 4, - "k": 1, - "Output": 1, - "backspace": 1, - "tab": 3, - "spaces": 1, - "X": 4, - "follows": 4, - "Y": 2, - "others": 1, - "printable": 1, - "characters": 1, - "case": 5, - "wordfill": 2, - "print": 2, - "while": 5, - "A..": 1, - "newline": 3, - "other": 1, - "colorptr": 2, - "fore": 3, - "Override": 1, - "default": 1, - "palette": 2, - "list": 1, - "arranged": 3, - "scroll": 1, - "hc": 1, - "ho": 1, - "white": 2, - "dark": 2, - "BB": 1, - "yellow": 1, - "brown": 1, - "cyan": 3, - "pink": 1, - "tv_mode": 2, - "lntsc": 3, - "fpal": 2, - "_433_618": 2, - "PAL": 10, - "spal": 3, - "tvptr": 3, - "vinv": 2, - "burst": 2, - "sync_high2": 2, - "black": 2, - "upper": 2, - "leftmost": 1, - "vert": 1, - "if_z_eq_c": 1, - "#hsync": 1, - "pulses": 2, - "vsync1": 2, - "#sync_low1": 1, - "hhalf": 2, - "field2": 1, - "#superfield": 1, - "Blank": 1, - "Horizontal": 1, - "pal": 2, - "toggle": 1, - "phaseflip": 4, - "phasemask": 2, - "sync_scale1": 1, - "setup": 3, - "hsync_ret": 1, - "vsync_high": 1, - "#sync_high1": 1, - "Tasks": 1, - "performed": 1, - "sections": 1, - "#_enable": 1, - "rd": 1, - "#wtab": 1, - "ltab": 1, - "#ltab": 1, - "cancel": 1, - "_broadcast": 4, - "m8": 3, - "fcolor": 4, - "#divide": 2, - "_111": 1, - "m128": 2, - "_100": 1, - "_001": 1, - "swap": 2, - "broadcast/baseband": 1, - "strip": 3, - "baseband": 18, - "_auralcog": 1, - "colorreg": 3, - "colorloop": 1, - "m1": 4, - "reload": 1, - "d0s1": 1, - "F0F0F0F0": 1, - "pins0": 1, - "_01110000_00001111_00000111": 1, - "pins1": 1, - "_11110111_01111111_01110111": 1, - "sync_high1": 1, - "_101010_0101": 1, - "NTSC/PAL": 2, - "metrics": 1, - "tables": 1, - "wtab": 1, - "sntsc": 3, - "lpal": 3, - "hrest": 2, - "vvis": 2, - "vrep": 2, - "_8A": 1, - "_AA": 1, - "sync_scale2": 1, - "_00000000_01_10101010101010_0101": 1, - "m2": 1, - "contiguous": 1, - "tv_status.": 1, - "tv_enable": 2, - "requirement": 2, - "_______": 2, - "_0111": 6, - "_1111": 6, - "_0000": 4, - "nibble": 4, - "attach": 1, - "/560/1100": 2, - "network": 1, - "below": 4, - "visual": 1, - "carrier": 1, - "mixing": 2, - "mix": 2, - "black/white": 2, - "composite": 1, - "doubles": 1, - "format": 1, - "_318_180": 1, - "_579_545": 1, - "_734_472": 1, - "itself": 1, - "tv_vt": 3, - "luminance": 2, - "range": 2, - "adds/subtracts": 1, - "beware": 1, - "modulated": 1, - "produce": 1, - "saturated": 1, - "toggling": 1, - "levels": 1, - "because": 1, - "look": 2, - "abruptly": 1, - "rather": 1, - "against": 1, - "background": 1, - "best": 1, - "appearance": 1, - "_____": 6, - "practical": 2, - "/30": 1, - "tv_vx": 2, - "tv_vo": 2, - "centered": 2, - "image": 2, - "____________": 1, - "expressed": 1, - "ie": 1, - "channel": 1, - "_250_000": 2, - "modulator": 2, - "turned": 2, - "broadcasting": 1, - "___________": 1, - "tv_auralcog": 1, - "supply": 1, - "selected": 1, - "bandwidth": 2, - "vary": 1, + "***************************************": 12, "Graphics": 3, + "Driver": 4, + "Chip": 7, + "Gracey": 7, "Theory": 1, + "cog": 39, "launched": 1, "processes": 1, "commands": 1, + "via": 5, "routines.": 1, "Points": 1, "arcs": 1, "sprites": 1, + "text": 9, "polygons": 1, "rasterized": 1, "specified": 1, "stretch": 1, + "memory": 2, "serves": 1, "generic": 1, "bitmap": 15, @@ -55646,9 +54511,12 @@ "displayed": 1, "TV.SRC": 1, "VGA.SRC": 1, + "driver.": 3, "GRAPHICS_DEMO.SRC": 1, "usage": 1, "example.": 1, + "CON": 4, + "#1": 47, "_setup": 1, "_color": 2, "_width": 2, @@ -55664,40 +54532,85 @@ "_textmode": 2, "_fill": 1, "_loop": 5, + "VAR": 10, + "long": 122, "command": 7, "bitmap_base": 7, + "pixel": 40, + "data": 47, "slices": 3, "text_xs": 1, "text_ys": 1, "text_sp": 1, "text_just": 1, "font": 3, + "pointer": 14, + "same": 7, "instances": 1, + "stop": 9, + "cognew": 4, "@loop": 1, "@command": 1, + "Stop": 6, "graphics": 4, + "driver": 17, + "cogstop": 3, + "setup": 3, "x_tiles": 9, "y_tiles": 9, "x_origin": 2, "y_origin": 2, "base_ptr": 3, + "|": 22, "bases_ptr": 3, "slices_ptr": 1, + "Set": 5, + "x": 112, + "tiles": 19, + "x16": 7, + "pixels": 14, + "each": 11, + "y": 80, "relative": 2, + "center": 10, + "base": 6, "setcommand": 13, + "write": 36, "bases": 2, + "<<": 70, "retain": 2, + "high": 7, + "level": 5, "bitmap_longs": 1, + "clear": 5, "dest_ptr": 2, "Copy": 1, + "double": 2, "buffered": 1, + "flicker": 5, "destination": 1, + "color": 39, + "bit": 35, "pattern": 2, + "code": 3, + "bits": 29, + "@colors": 2, + "&": 21, "determine": 2, "shape/width": 2, + "w": 8, + "F": 18, "pixel_width": 1, "pixel_passes": 2, "@w": 1, + "update": 7, + "new": 6, + "repeat": 18, + "i": 24, + "p": 8, + "E": 7, + "r": 4, + "<": 14, "colorwidth": 1, "plot": 17, "Plot": 3, @@ -55707,12 +54620,17 @@ "arc": 21, "xr": 7, "yr": 7, + "angle": 23, "anglestep": 2, + "steps": 9, "arcmode": 2, "radii": 3, + "initial": 6, "FFF": 3, "..359.956": 3, + "step": 9, "leaves": 1, + "between": 4, "points": 2, "vec": 1, "vecscale": 5, @@ -55720,7 +54638,10 @@ "vecdef_ptr": 5, "vector": 12, "sprite": 14, + "scale": 7, + "rotation": 3, "Vector": 2, + "word": 212, "length": 4, "vecarc": 2, "pix": 3, @@ -55728,12 +54649,16 @@ "pixdef_ptr": 3, "mirror": 1, "Pixel": 1, + "justify": 4, "draw": 5, "textarc": 1, "string_ptr": 6, "justx": 2, "justy": 3, + "it": 8, + "may": 6, "necessary": 1, + "call": 44, ".finish": 1, "immediately": 1, "afterwards": 1, @@ -55743,7 +54668,10 @@ "drawn": 1, "@justx": 1, "@x_scale": 1, + "get": 30, "half": 2, + "min": 4, + "max": 6, "pmin": 1, "round/square": 1, "corners": 1, @@ -55762,12 +54690,18 @@ "y1": 7, "xy": 1, "solid": 1, + "/": 27, "finish": 2, + "Wait": 2, + "current": 3, + "insure": 2, "safe": 1, "manually": 1, "manipulate": 1, + "while": 5, "primitives": 1, "xa0": 53, + "start": 16, "ya1": 3, "ya2": 1, "ya3": 2, @@ -55807,14 +54741,18 @@ "a0": 8, "a2": 1, "farc": 41, + "another": 7, "arc/line": 1, "Round": 1, "recipes": 1, + "C": 11, + "D": 18, "fline": 88, "xa2": 48, "xb2": 26, "xa1": 8, "xb1": 2, + "more": 90, "xa3": 8, "xb3": 6, "xb4": 35, @@ -55824,6 +54762,7 @@ "a7": 2, "aE": 1, "aC": 2, + ".": 2, "aF": 4, "aD": 3, "aB": 2, @@ -55831,25 +54770,54 @@ "a8": 8, "@": 1, "a4": 3, + "B": 15, "H": 1, "J": 1, + "L": 5, "N": 1, "P": 6, + "R": 3, "T": 5, "aA": 5, + "V": 7, + "X": 4, "Z": 1, "b": 1, + "d": 2, + "f": 2, + "h": 2, + "j": 2, + "l": 2, + "t": 10, "v": 1, + "z": 4, + "delta": 10, "bullet": 1, "fx": 1, "*************************************": 2, + "org": 2, + "loop": 14, + "rdlong": 16, + "t1": 139, + "par": 20, + "wz": 21, "arguments": 1, + "mov": 154, + "t2": 90, "t3": 10, + "#8": 14, "arg": 3, "arg0": 12, + "add": 92, + "d0": 11, + "#4": 8, + "djnz": 24, + "wrlong": 6, "dx": 20, "dy": 15, "arg1": 3, + "ror": 4, + "#16": 6, "jump": 1, "jumps": 6, "color_": 1, @@ -55866,6 +54834,8 @@ "arg3": 12, "basesptr": 4, "arg5": 6, + "jmp": 24, + "#loop": 9, "width_": 1, "pwidth": 3, "passes": 3, @@ -55873,37 +54843,59 @@ "line_": 1, "#linepd": 2, "arg7": 6, + "#3": 7, + "cmp": 16, "exit": 5, "px": 14, "py": 11, + "mode": 7, + "if_z": 11, "#plotp": 3, + "test": 38, "arg4": 5, "iterations": 1, "vecdef": 1, + "rdword": 10, "t7": 8, "add/sub": 1, "to/from": 1, "t6": 7, + "sumc": 4, "#multiply": 2, "round": 1, + "up": 4, "/2": 1, "lsb": 1, + "shr": 24, "t4": 7, + "if_nc": 15, "h8000": 5, + "wc": 57, + "if_c": 37, "xwords": 1, "ywords": 1, "xxxxxxxx": 2, "save": 1, + "actual": 4, "sy": 5, "rdbyte": 3, "origin": 1, + "adjust": 4, "neg": 2, + "sub": 12, "arg2": 7, + "sumnc": 7, + "if_nz": 18, "yline": 1, "sx": 4, + "#0": 20, + "next": 16, + "#2": 15, + "shl": 21, "t5": 4, "xpixel": 2, "rol": 1, + "muxc": 5, "pcolor": 5, "color1": 2, "color2": 2, @@ -55911,6 +54903,9 @@ "#arcmod": 1, "text_": 1, "chr": 4, + "done": 3, + "scan": 7, + "tjz": 8, "def": 2, "extract": 4, "_0001_1": 1, @@ -55926,7 +54921,9 @@ "_0111_0": 1, "setd_ret": 1, "fontxy_ret": 1, + "ret": 17, "fontb": 1, + "multiply": 8, "fontb_ret": 1, "textmode_": 1, "textsp": 2, @@ -55935,6 +54932,7 @@ "db2": 1, "linechange": 1, "lines_minus_1": 1, + "right": 9, "fractions": 1, "pre": 1, "increment": 1, @@ -55943,15 +54941,25 @@ "integers": 1, "base0": 17, "base1": 10, + "sar": 8, "cmps": 3, + "out": 24, + "range": 2, "ylongs": 6, + "skip": 5, "mins": 1, "mask": 3, "mask0": 8, + "#5": 2, + "ready": 10, "count": 4, "mask1": 6, "bits0": 6, "bits1": 5, + "pass": 5, + "not": 6, + "full": 3, + "longs": 15, "deltas": 1, "linepd": 1, "wr": 2, @@ -55959,6 +54967,7 @@ "abs": 1, "dominant": 2, "axis": 1, + "last": 6, "ratio": 1, "xloop": 1, "linepd_ret": 1, @@ -55972,14 +54981,20 @@ "pair": 1, "account": 1, "special": 1, + "case": 5, + "andn": 7, "slice": 7, "shift0": 1, "colorize": 1, + "upper": 2, "subx": 1, "#wslice": 1, + "offset": 14, + "Get": 2, "args": 5, "move": 2, "using": 1, + "first": 9, "arg6": 1, "arcmod_ret": 1, "arg2/t4": 1, @@ -55991,19 +55006,695 @@ "cartesian": 1, "polarx": 1, "sine_90": 2, + "sine": 7, + "quadrant": 3, + "nz": 3, + "negate": 2, + "table": 9, "sine_table": 1, + "shift": 7, + "final": 3, "sine/cosine": 1, + "integer": 2, + "negnz": 3, "sine_180": 1, "shifted": 1, + "multiplier": 3, "product": 1, "Defined": 1, + "constants": 2, "hFFFFFFFF": 1, "FFFFFFFF": 1, "fontptr": 1, + "Undefined": 2, "temps": 1, + "res": 89, + "pointers": 2, "slicesptr": 1, "line/plot": 1, "coordinates": 1, + "Inductive": 1, + "Sensor": 1, + "Demo": 1, + "Test": 2, + "Circuit": 1, + "pF": 1, + "K": 4, + "M": 1, + "FPin": 2, + "SDF": 1, + "sigma": 3, + "feedback": 2, + "SDI": 1, + "GND": 4, + "Coils": 1, + "Wire": 1, + "used": 9, + "was": 2, + "GREEN": 2, + "about": 4, + "gauge": 1, + "Coke": 3, + "Can": 3, + "form": 7, + "MHz": 16, + "BIC": 1, + "pen": 1, + "How": 1, + "does": 2, + "work": 2, + "Note": 1, + "reported": 2, + "resonate": 5, + "frequency": 18, + "LC": 8, + "frequency.": 2, + "Instead": 1, + "voltage": 5, + "produced": 1, + "circuit": 5, + "clipped.": 1, + "In": 2, + "below": 4, + "When": 1, + "you": 5, + "apply": 1, + "small": 1, + "specific": 1, + "near": 1, + "uncommon": 1, + "measure": 1, + "times": 3, + "amount": 1, + "applying": 1, + "circuit.": 1, + "through": 1, + "diode": 2, + "basically": 1, + "feeds": 1, + "divide": 3, + "divider": 1, + "...So": 1, + "order": 1, + "see": 2, + "ADC": 2, + "sweep": 2, + "result": 6, + "output": 11, + "needs": 1, + "generate": 1, + "Volts": 1, + "ground.": 1, + "drop": 1, + "across": 1, + "since": 1, + "sensitive": 1, + "works": 1, + "after": 2, + "divider.": 1, + "typical": 1, + "magnitude": 1, + "applied": 2, + "might": 1, + "look": 2, + "something": 1, + "*****": 4, + "...With": 1, + "looks": 1, + "X****": 1, + "...The": 1, + "denotes": 1, + "location": 1, + "reason": 1, + "slightly": 1, + "reasons": 1, + "really.": 1, + "lazy": 1, + "I": 1, + "didn": 1, + "acts": 1, + "dead": 1, + "short.": 1, + "situation": 1, + "exactly": 1, + "great": 1, + "gr.start": 2, + "gr.setup": 2, + "FindResonateFrequency": 1, + "DisplayInductorValue": 2, + "Freq.Synth": 1, + "FValue": 1, + "ADC.SigmaDelta": 1, + "@FTemp": 1, + "gr.clear": 1, + "gr.copy": 2, + "display_base": 2, + "Option": 2, + "Start": 6, + "*********************************************": 2, + "Frequency": 1, + "LowerFrequency": 2, + "*100/": 1, + "UpperFrequency": 1, + "gr.colorwidth": 4, + "gr.plot": 3, + "gr.line": 3, + "FTemp/1024": 1, + "Finish": 1, + "PS/2": 1, + "Keyboard": 1, + "v1.0.1": 2, + "REVISION": 2, + "HISTORY": 2, + "/15/2006": 2, + "Tool": 1, + "par_tail": 1, + "key": 4, + "buffer": 4, + "head": 1, + "par_present": 1, + "states": 1, + "par_keys": 1, + "******************************************": 2, + "entry": 1, + "movd": 10, + "#_dpin": 1, + "masks": 1, + "dmask": 4, + "_dpin": 3, + "cmask": 2, + "_cpin": 2, + "reset": 14, + "parameter": 14, + "_head": 6, + "_present/_states": 1, + "dlsb": 2, + "stat": 6, + "Update": 1, + "_head/_present/_states": 1, + "#1*4": 1, + "scancode": 2, + "state": 2, + "#receive": 1, + "AA": 1, + "extended": 1, + "if_nc_and_z": 2, + "F0": 3, + "unknown": 2, + "ignore": 2, + "#newcode": 1, + "_states": 2, + "set/clear": 1, + "#_states": 1, + "reg": 5, + "muxnc": 5, + "cmpsub": 4, + "shift/ctrl/alt/win": 1, + "pairs": 1, + "E0": 1, + "handle": 1, + "scrlock/capslock/numlock": 1, + "_000": 5, + "_locks": 5, + "#29": 1, + "change": 3, + "configure": 3, + "flag": 5, + "leds": 3, + "check": 5, + "shift1": 1, + "if_nz_and_c": 4, + "#@shift1": 1, + "@table": 1, + "#look": 1, + "alpha": 1, + "considering": 1, + "capslock": 1, + "if_nz_and_nc": 1, + "xor": 8, + "flags": 1, + "alt": 1, + "room": 1, + "valid": 2, + "enter": 1, + "FF": 3, + "#11*4": 1, + "wrword": 1, + "F3": 1, + "keyboard": 3, + "lock": 1, + "#transmit": 2, + "rev": 1, + "rcl": 2, + "_present": 2, + "#update": 1, + "Lookup": 2, + "perform": 2, + "lookup": 1, + "movs": 9, + "#table": 1, + "#27": 1, + "#rand": 1, + "Transmit": 1, + "pull": 2, + "clock": 4, + "low": 5, + "napshr": 3, + "#13": 3, + "#18": 2, + "release": 1, + "transmit_bit": 1, + "#wait_c0": 2, + "_d2": 1, + "wcond": 3, + "c1": 2, + "c0d0": 2, + "wait": 6, + "until": 3, + "#wait": 2, + "#receive_ack": 1, + "ack": 1, + "error": 1, + "#reset": 2, + "transmit_ret": 1, + "receive": 1, + "receive_bit": 1, + "pause": 1, + "us": 1, + "#nap": 1, + "_d3": 1, + "#receive_bit": 1, + "align": 1, + "isolate": 1, + "look_ret": 1, + "receive_ack_ret": 1, + "receive_ret": 1, + "wait_c0": 1, + "c0": 1, + "timeout": 1, + "ms": 4, + "wloop": 1, + "required": 4, + "_d4": 1, + "replaced": 1, + "c0/c1/c0d0/c1d1": 1, + "if_never": 1, + "replacements": 1, + "#wloop": 3, + "if_c_or_nz": 1, + "c1d1": 1, + "if_nc_or_z": 1, + "nap": 5, + "scales": 1, + "time": 7, + "snag": 1, + "cnt": 2, + "elapses": 1, + "nap_ret": 1, + "F9": 1, + "F5": 1, + "D2": 1, + "F1": 2, + "D1": 1, + "F12": 1, + "F10": 1, + "D7": 1, + "F6": 1, + "D3": 1, + "Tab": 2, + "Alt": 2, + "F3F2": 1, + "q": 1, + "Win": 2, + "Space": 2, + "Apps": 1, + "Power": 1, + "Sleep": 1, + "EF2F": 1, + "CapsLock": 1, + "Enter": 3, + "WakeUp": 1, + "BackSpace": 1, + "C5E1": 1, + "C0E4": 1, + "Home": 1, + "Insert": 1, + "C9EA": 1, + "Down": 1, + "E5": 1, + "Right": 1, + "C2E8": 1, + "Esc": 1, + "DF": 2, + "F11": 1, + "EC": 1, + "PageDn": 1, + "ED": 1, + "PrScr": 1, + "C6E9": 1, + "ScrLock": 1, + "D6": 1, + "Uninitialized": 3, + "_________": 5, + "Key": 1, + "Codes": 1, + "keypress": 1, + "keystate": 2, + "E0..FF": 1, + "AS": 1, + "TV": 9, + "May": 2, + "tile": 41, + "size": 5, + "enable": 5, + "efficient": 2, + "tv_mode": 2, + "NTSC": 11, + "lntsc": 3, + "cycles": 4, + "per": 4, + "sync": 10, + "fpal": 2, + "_433_618": 2, + "PAL": 10, + "spal": 3, + "colortable": 7, + "inside": 2, + "tvptr": 3, + "starts": 4, + "available": 4, + "@entry": 3, + "Assembly": 2, + "language": 2, + "Entry": 2, + "tasks": 6, + "#10": 2, + "Superfield": 2, + "_mode": 7, + "interlace": 20, + "vinv": 2, + "hsync": 5, + "waitvid": 3, + "burst": 2, + "sync_high2": 2, + "task": 2, + "section": 4, + "undisturbed": 2, + "black": 2, + "visible": 7, + "vb": 2, + "leftmost": 1, + "_vt": 3, + "vertical": 29, + "expand": 3, + "vert": 1, + "vscl": 12, + "hb": 2, + "horizontal": 21, + "hx": 5, + "colors": 18, + "screen": 13, + "video": 7, + "repoint": 2, + "hf": 2, + "linerot": 5, + "field1": 4, + "unless": 2, + "invisible": 8, + "if_z_eq_c": 1, + "#hsync": 1, + "vsync": 4, + "pulses": 2, + "vsync1": 2, + "#sync_low1": 1, + "hhalf": 2, + "field2": 1, + "#superfield": 1, + "Blank": 1, + "Horizontal": 1, + "pal": 2, + "toggle": 1, + "phaseflip": 4, + "phasemask": 2, + "sync_scale1": 1, + "blank": 2, + "hsync_ret": 1, + "vsync_high": 1, + "#sync_high1": 1, + "Tasks": 1, + "performed": 1, + "sections": 1, + "during": 2, + "back": 8, + "porch": 9, + "load": 3, + "#_enable": 1, + "_pins": 4, + "_enable": 2, + "#disabled": 2, + "break": 6, + "return": 15, + "later": 6, + "rd": 1, + "#wtab": 1, + "ltab": 1, + "#ltab": 1, + "CLKFREQ": 10, + "cancel": 1, + "_broadcast": 4, + "m8": 3, + "jmpret": 5, + "taskptr": 3, + "taskret": 4, + "ctra": 5, + "pll": 5, + "fcolor": 4, + "#divide": 2, + "vco": 3, + "movi": 3, + "_111": 1, + "ctrb": 4, + "limit": 4, + "m128": 2, + "_100": 1, + "within": 5, + "_001": 1, + "frqb": 2, + "swap": 2, + "broadcast/baseband": 1, + "strip": 3, + "chroma": 19, + "baseband": 18, + "_auralcog": 1, + "_hx": 4, + "consider": 2, + "lineadd": 4, + "lineinc": 3, + "/160": 2, + "loaded": 3, + "#9": 2, + "FC": 2, + "_colors": 2, + "colorreg": 3, + "d6": 3, + "colorloop": 1, + "keep": 2, + "loading": 2, + "m1": 4, + "multiply_ret": 2, + "Disabled": 2, + "try": 2, + "again": 2, + "reload": 1, + "_000_000": 6, + "d0s1": 1, + "F0F0F0F0": 1, + "pins0": 1, + "_01110000_00001111_00000111": 1, + "pins1": 1, + "_11110111_01111111_01110111": 1, + "sync_high1": 1, + "_101010_0101": 1, + "NTSC/PAL": 2, + "metrics": 1, + "tables": 1, + "wtab": 1, + "sntsc": 3, + "lpal": 3, + "hrest": 2, + "vvis": 2, + "vrep": 2, + "_8A": 1, + "_AA": 1, + "sync_scale2": 1, + "_00000000_01_10101010101010_0101": 1, + "m2": 1, + "Parameter": 4, + "/non": 4, + "tccip": 3, + "_screen": 3, + "@long": 2, + "_ht": 2, + "_ho": 2, + "fit": 2, + "contiguous": 1, + "tv_status": 4, + "off/on": 3, + "tv_pins": 5, + "ntsc/pal": 3, + "tv_screen": 5, + "tv_ht": 5, + "tv_hx": 5, + "expansion": 8, + "tv_ho": 5, + "tv_broadcast": 4, + "aural": 13, + "fm": 6, + "preceding": 2, + "copied": 2, + "your": 2, + "code.": 2, + "After": 2, + "setting": 2, + "variables": 3, + "@tv_status": 3, + "All": 2, + "reloaded": 2, + "superframe": 2, + "allowing": 2, + "live": 2, + "changes.": 2, + "minimize": 2, + "correlate": 2, + "changes": 3, + "tv_status.": 1, + "Experimentation": 2, + "optimize": 2, + "some": 3, + "parameters.": 2, + "descriptions": 2, + "sets": 3, + "indicate": 2, + "disabled": 3, + "tv_enable": 2, + "requirement": 2, + "currently": 4, + "outputting": 4, + "driven": 2, + "reduces": 2, + "power": 3, + "_______": 2, + "select": 9, + "group": 7, + "_0111": 6, + "broadcast": 19, + "_1111": 6, + "_0000": 4, + "active": 3, + "top": 10, + "nibble": 4, + "bottom": 5, + "signal": 8, + "arranged": 3, + "attach": 1, + "ohm": 10, + "resistor": 4, + "sum": 7, + "/560/1100": 2, + "subcarrier": 3, + "network": 1, + "visual": 1, + "carrier": 1, + "selects": 4, + "x32": 6, + "tileheight": 4, + "controls": 4, + "mixing": 2, + "mix": 2, + "black/white": 2, + "composite": 1, + "progressive": 2, + "less": 5, + "good": 5, + "motion": 2, + "interlaced": 5, + "doubles": 1, + "format": 1, + "ticks": 11, + "must": 18, + "least": 14, + "_318_180": 1, + "_579_545": 1, + "Hz": 5, + "_734_472": 1, + "itself": 1, + "words": 5, + "define": 10, + "tv_vt": 3, + "has": 4, + "bitfields": 2, + "colorset": 2, + "ptr": 5, + "pixelgroup": 2, + "colorset*": 2, + "pixelgroup**": 2, + "ppppppppppcccc00": 2, + "colorsets": 4, + "four": 8, + "**": 2, + "pixelgroups": 2, + "": 5, + "tv_colors": 2, + "fields": 2, + "values": 2, + "luminance": 2, + "modulation": 4, + "adds/subtracts": 1, + "beware": 1, + "modulated": 1, + "produce": 1, + "saturated": 1, + "toggling": 1, + "levels": 1, + "because": 1, + "abruptly": 1, + "rather": 1, + "against": 1, + "white": 2, + "background": 1, + "best": 1, + "appearance": 1, + "_____": 6, + "practical": 2, + "/30": 1, + "factor": 4, + "sure": 4, + "||": 5, + "than": 5, + "tv_vx": 2, + "tv_vo": 2, + "pos/neg": 4, + "centered": 2, + "image": 2, + "shifts": 4, + "right/left": 2, + "up/down": 2, + "____________": 1, + "expressed": 1, + "ie": 1, + "channel": 1, + "_250_000": 2, + "modulator": 2, + "turned": 2, + "saves": 2, + "broadcasting": 1, + "___________": 1, + "tv_auralcog": 1, + "supply": 1, + "selected": 1, + "bandwidth": 2, + "KHz": 3, + "vary": 1, "Terminal": 1, "instead": 1, "minimum": 2, @@ -56032,21 +55723,31 @@ "cell": 1, "@bitmap": 1, "FC0": 1, - "gr.start": 2, - "gr.setup": 2, "gr.textmode": 1, "gr.width": 1, + "tv.stop": 2, "gr.stop": 1, "schemes": 1, + "tab": 3, "gr.color": 1, "gr.text": 1, "@c": 1, "gr.finish": 2, + "newline": 3, + "strsize": 2, + "_000_000_000": 2, + "//": 4, + "elseif": 2, + "lookupz": 2, + "..": 4, "PRI": 1, + "longmove": 2, + "longfill": 2, "tvparams": 1, "tvparams_pins": 1, "_0101": 1, "vc": 1, + "vx": 2, "vo": 1, "auralcog": 1, "color_schemes": 1, @@ -56054,114 +55755,413 @@ "E_0D_0C_0A": 1, "E_6D_6C_6A": 1, "BE_BD_BC_BA": 1, - "Inductive": 1, - "Sensor": 1, - "Demo": 1, - "Test": 2, - "Circuit": 1, - "pF": 1, - "K": 4, - "M": 1, - "FPin": 2, - "SDF": 1, - "sigma": 3, - "SDI": 1, - "GND": 4, - "Coils": 1, - "Wire": 1, - "was": 2, - "about": 4, - "gauge": 1, - "Coke": 3, - "Can": 3, - "BIC": 1, - "pen": 1, - "How": 1, - "Note": 1, - "reported": 2, - "resonate": 5, - "LC": 8, - "frequency.": 2, - "Instead": 1, - "voltage": 5, - "produced": 1, - "circuit": 5, - "clipped.": 1, - "In": 2, - "When": 1, - "apply": 1, - "small": 1, - "specific": 1, - "near": 1, - "uncommon": 1, - "measure": 1, - "amount": 1, - "applying": 1, - "circuit.": 1, - "through": 1, - "diode": 2, - "basically": 1, - "feeds": 1, - "divider": 1, - "...So": 1, - "order": 1, - "ADC": 2, - "sweep": 2, - "needs": 1, - "generate": 1, - "Volts": 1, - "ground.": 1, - "drop": 1, - "across": 1, - "since": 1, - "sensitive": 1, - "works": 1, - "divider.": 1, - "typical": 1, - "magnitude": 1, - "applied": 2, - "might": 1, - "something": 1, - "*****": 4, - "...With": 1, - "looks": 1, - "X****": 1, - "...The": 1, - "denotes": 1, - "location": 1, - "reason": 1, - "slightly": 1, - "reasons": 1, - "really.": 1, - "lazy": 1, - "I": 1, - "didn": 1, - "acts": 1, - "dead": 1, - "short.": 1, - "situation": 1, - "exactly": 1, - "great": 1, - "FindResonateFrequency": 1, - "DisplayInductorValue": 2, - "Freq.Synth": 1, - "FValue": 1, - "ADC.SigmaDelta": 1, - "@FTemp": 1, - "gr.clear": 1, - "gr.copy": 2, - "display_base": 2, - "Option": 2, - "*********************************************": 2, - "Frequency": 1, - "LowerFrequency": 2, - "*100/": 1, - "UpperFrequency": 1, - "gr.colorwidth": 4, - "gr.plot": 3, - "gr.line": 3, - "FTemp/1024": 1, - "Finish": 1 + "Text": 1, + "x13": 2, + "cols": 5, + "rows": 4, + "screensize": 4, + "lastrow": 2, + "tv_count": 2, + "row": 4, + "tv": 2, + "basepin": 3, + "setcolors": 2, + "@palette": 1, + "@tv_params": 1, + "@screen": 3, + "tv.start": 1, + "stringptr": 3, + "k": 1, + "Output": 1, + "backspace": 1, + "spaces": 1, + "follows": 4, + "Y": 2, + "others": 1, + "printable": 1, + "characters": 1, + "wordfill": 2, + "print": 2, + "A..": 1, + "other": 1, + "colorptr": 2, + "fore": 3, + "Override": 1, + "default": 1, + "palette": 2, + "list": 1, + "scroll": 1, + "hc": 1, + "ho": 1, + "dark": 2, + "blue": 3, + "BB": 1, + "yellow": 1, + "brown": 1, + "cyan": 3, + "red": 2, + "pink": 1, + "VGA": 8, + "vga_mode": 3, + "vgaptr": 3, + "hv": 5, + "bcolor": 3, + "#colortable": 2, + "#blank_line": 3, + "nobl": 1, + "_vx": 1, + "nobp": 1, + "nofp": 1, + "#blank_hsync": 1, + "front": 4, + "vf": 1, + "nofl": 1, + "#tasks": 1, + "before": 1, + "_vs": 2, + "except": 1, + "#blank_vsync": 1, + "#field": 1, + "superfield": 1, + "blank_vsync": 1, + "h2": 2, + "if_c_and_nz": 1, + "blank_hsync": 1, + "_hf": 1, + "invisble": 1, + "_hb": 1, + "#hv": 1, + "blank_hsync_ret": 1, + "blank_line_ret": 1, + "blank_vsync_ret": 1, + "_status": 1, + "#paramcount": 1, + "directions": 1, + "_rate": 3, + "pllmin": 1, + "_011": 1, + "rate": 6, + "hvbase": 5, + "frqa": 3, + "vmask": 1, + "hmask": 1, + "vcfg": 2, + "colormask": 1, + "waitcnt": 3, + "#entry": 1, + "Initialized": 1, + "lowest": 1, + "pllmax": 1, + "*16": 1, + "m4": 1, + "tihv": 1, + "_hd": 1, + "_hs": 1, + "_vd": 1, + "underneath": 1, + "BF": 1, + "___": 1, + "/1/2": 1, + "off/visible/invisible": 1, + "vga_enable": 3, + "pppttt": 1, + "vga_colors": 2, + "vga_vt": 6, + "vga_vx": 4, + "vga_vo": 4, + "vga_hf": 2, + "vga_hb": 2, + "vga_vf": 2, + "vga_vb": 2, + "tick": 2, + "@vga_status": 1, + "vga_status.": 1, + "__________": 4, + "vga_status": 1, + "________": 3, + "vga_pins": 1, + "monitors": 1, + "allows": 1, + "polarity": 1, + "respectively": 1, + "vga_screen": 1, + "vga_ht": 3, + "care": 1, + "suggested": 1, + "bits/pins": 3, + "green": 1, + "bit/pin": 1, + "signals": 1, + "connect": 3, + "RED": 1, + "BLUE": 1, + "connector": 3, + "always": 2, + "HSYNC": 1, + "VSYNC": 1, + "______": 14, + "vga_hx": 3, + "vga_ho": 2, + "equal": 1, + "vga_hd": 2, + "exceed": 1, + "vga_vd": 2, + "recommended": 2, + "vga_hs": 1, + "vga_vs": 1, + "vga_rate": 2, + "should": 1, + "Vocal": 2, + "Tract": 2, + "October": 1, + "synthesizes": 1, + "human": 1, + "vocal": 10, + "tract": 12, + "real": 2, + "It": 1, + "MHz.": 1, + "controlled": 1, + "reside": 1, + "parent": 1, + "aa": 2, + "ga": 5, + "gp": 2, + "vp": 3, + "vr": 1, + "f1": 4, + "f2": 1, + "f3": 3, + "f4": 2, + "na": 2, + "nf": 2, + "fa": 2, + "ff": 2, + "values.": 2, + "Before": 1, + "were": 1, + "interpolation": 1, + "shy": 1, + "frame": 12, + "makes": 1, + "behave": 1, + "sensibly": 1, + "gaps.": 1, + "frame_buffers": 2, + "bytes": 2, + "frame_longs": 3, + "frame_bytes": 1, + "...must": 1, + "dira_": 3, + "dirb_": 1, + "ctra_": 1, + "ctrb_": 3, + "frqa_": 3, + "cnt_": 1, + "many": 1, + "...contiguous": 1, + "tract_ptr": 3, + "pos_pin": 7, + "neg_pin": 6, + "fm_offset": 5, + "positive": 1, + "also": 1, + "enabled": 2, + "generation": 2, + "_500_000": 1, + "Remember": 1, + "duty": 2, + "Ready": 1, + "clkfreq": 2, + "Launch": 1, + "@attenuation": 1, + "Reset": 1, + "buffers": 1, + "@index": 1, + "constant": 3, + "frame_buffer_longs": 2, + "set_attenuation": 1, + "master": 2, + "attenuation": 3, + "initially": 2, + "set_pace": 2, + "percentage": 3, + "pace": 3, + "go": 1, + "Queue": 1, + "transition": 1, + "over": 2, + "Load": 1, + "bytemove": 1, + "@frames": 1, + "index": 5, + "Increment": 1, + "Returns": 4, + "queue": 2, + "useful": 2, + "checking": 1, + "would": 1, + "have": 1, + "frames": 2, + "empty": 2, + "detecting": 1, + "finished": 1, + "sample_ptr": 1, + "receives": 1, + "audio": 1, + "samples": 1, + "updated": 1, + "@sample": 1, + "aural_id": 1, + "id": 2, + "executing": 1, + "algorithm": 1, + "connecting": 1, + "Initialization": 1, + "reserved": 3, + "clear_cnt": 1, + "#2*15": 1, + "hub": 1, + "minst": 3, + "d0s0": 3, + "mult_ret": 1, + "antilog_ret": 1, + "assemble": 1, + "cordic": 4, + "reserves": 2, + "cstep": 1, + "instruction": 2, + "prepare": 1, + "cnt_value": 3, + "cnt_ticks": 3, + "Loop": 1, + "sample": 2, + "period": 1, + "cycle": 1, + "driving": 1, + "h80000000": 2, + "White": 1, + "noise": 3, + "source": 2, + "lfsr": 1, + "lfsr_taps": 2, + "Aspiration": 1, + "vibrato": 3, + "vphase": 2, + "glottal": 2, + "pitch": 5, + "mesh": 1, + "tune": 2, + "convert": 1, + "log": 2, + "phase": 2, + "gphase": 3, + "formant2": 2, + "rotate": 2, + "f2x": 3, + "f2y": 3, + "#cordic": 2, + "formant4": 2, + "f4x": 3, + "f4y": 3, + "subtract": 1, + "nx": 4, + "negated": 1, + "nasal": 2, + "amplitude": 3, + "#mult": 1, + "fphase": 4, + "frication": 2, + "#sine": 1, + "Handle": 1, + "frame_ptr": 6, + "past": 1, + "miscellaneous": 2, + "frame_index": 3, + "stepsize": 2, + "step_size": 5, + "h00FFFFFF": 2, + "final1": 2, + "finali": 2, + "iterate": 3, + "aa..ff": 4, + "accurate": 1, + "accumulation": 1, + "step_acc": 3, + "set2": 3, + "#par_curr": 1, + "set3": 2, + "#par_next": 1, + "set4": 3, + "#par_step": 1, + "#24": 1, + "par_curr": 3, + "absolute": 1, + "msb": 2, + "nr": 1, + "mult": 2, + "par_step": 1, + "frame_cnt": 2, + "step1": 2, + "stepi": 1, + "stepframe": 1, + "#frame_bytes": 1, + "par_next": 2, + "Math": 1, + "Subroutines": 1, + "Antilog": 1, + "whole": 2, + "fraction": 1, + "antilog": 2, + "FFEA0000": 1, + "h00000FFE": 2, + "insert": 2, + "leading": 1, + "Scaled": 1, + "unsigned": 3, + "h00001000": 2, + "negc": 1, + "Multiply": 1, + "#15": 1, + "mult_step": 1, + "Cordic": 1, + "degree": 1, + "#cordic_steps": 1, + "gets": 1, + "assembled": 1, + "cordic_dx": 1, + "incremented": 1, + "cordic_a": 1, + "cordic_delta": 2, + "linear": 1, + "register": 1, + "B901476": 1, + "greater": 1, + "h40000000": 1, + "h01000000": 1, + "FFFFFF": 1, + "h00010000": 1, + "h0000D000": 1, + "D000": 1, + "h00007000": 1, + "FFE": 1, + "h00000800": 1, + "registers": 2, + "startup": 2, + "Data": 1, + "zeroed": 1, + "cleared": 1, + "f1x": 1, + "f1y": 1, + "f3x": 1, + "f3y": 1, + "aspiration": 1, + "***": 1, + "mult_steps": 1, + "assembly": 1, + "area": 1, + "w/ret": 1, + "cordic_ret": 1 }, "Protocol Buffer": { "package": 1, @@ -56199,53 +56199,80 @@ }, "PureScript": { "module": 4, - "Data.Foreign": 2, + "Control.Arrow": 1, + "where": 20, + "import": 32, + "Data.Tuple": 3, + "class": 4, + "Arrow": 5, + "a": 46, + "arr": 10, + "forall": 26, + "b": 49, + "c.": 3, "(": 111, + "-": 88, + "c": 17, + ")": 115, + "first": 4, + "d.": 2, + "Tuple": 21, + "d": 6, + "instance": 12, + "arrowFunction": 1, + "f": 28, + "second": 3, + "Category": 3, + "swap": 4, + "b.": 1, + "x": 26, + "y": 2, + "infixr": 3, + "***": 2, + "&&": 3, + "&": 3, + ".": 2, + "g": 4, + "ArrowZero": 1, + "zeroArrow": 1, + "<+>": 2, + "ArrowPlus": 1, + "Data.Foreign": 2, "Foreign": 12, "..": 1, - ")": 115, "ForeignParser": 29, "parseForeign": 6, "parseJSON": 3, "ReadForeign": 11, "read": 10, "prop": 3, - "where": 20, - "import": 32, "Prelude": 3, "Data.Array": 3, "Data.Either": 1, "Data.Maybe": 3, - "Data.Tuple": 3, "Data.Traversable": 2, "foreign": 6, "data": 3, "*": 1, "fromString": 2, "String": 13, - "-": 88, "Either": 6, "readPrimType": 5, - "forall": 26, "a.": 6, - "a": 46, "readMaybeImpl": 2, "Maybe": 5, "readPropImpl": 2, "showForeignImpl": 2, - "instance": 12, "showForeign": 1, "Prelude.Show": 1, "show": 5, "p": 11, - "x": 26, "json": 2, "monadForeignParser": 1, "Prelude.Monad": 1, "return": 6, "_": 7, "Right": 9, - "f": 28, "case": 9, "of": 9, "Left": 8, @@ -56257,7 +56284,6 @@ "<$>": 8, "functorForeignParser": 1, "Prelude.Functor": 1, - "class": 4, "readString": 1, "readNumber": 1, "Number": 1, @@ -56268,7 +56294,6 @@ "]": 5, "let": 4, "arrayItem": 2, - "Tuple": 21, "i": 2, "result": 4, "+": 30, @@ -56283,66 +56308,6 @@ "<": 13, "Just": 7, "Nothing": 7, - "ReactiveJQueryTest": 1, - "flip": 2, - "Control.Monad": 1, - "Control.Monad.Eff": 1, - "Control.Monad.JQuery": 1, - "Control.Reactive": 1, - "Control.Reactive.JQuery": 1, - "map": 8, - "head": 2, - "Data.Foldable": 2, - "Data.Monoid": 1, - "Debug.Trace": 1, - "Global": 1, - "parseInt": 1, - "main": 1, - "do": 4, - "personDemo": 2, - "todoListDemo": 1, - "greet": 1, - "firstName": 2, - "lastName": 2, - "Create": 3, - "new": 1, - "reactive": 1, - "variables": 1, - "to": 3, - "hold": 1, - "the": 3, - "user": 1, - "readRArray": 1, - "arr": 10, - "insertRArray": 1, - "{": 25, - "text": 5, - "completed": 2, - "}": 26, - "paragraph": 2, - "display": 2, - "next": 1, - "task": 4, - "nextTaskLabel": 3, - "create": 2, - "append": 2, - "b": 49, - "nextTask": 2, - "toComputedArray": 2, - "toComputed": 2, - "bindTextOneWay": 2, - "counter": 3, - "counterLabel": 3, - "rs": 2, - "cs": 2, - "<->": 1, - "c": 17, - "if": 1, - "then": 1, - "else": 1, - "entry": 1, - "entry.completed": 1, - "foldl": 4, "Data.Map": 1, "Map": 26, "empty": 6, @@ -56354,19 +56319,24 @@ "toList": 10, "fromList": 3, "union": 3, + "map": 8, "qualified": 1, "as": 1, "P": 1, "concat": 3, + "Data.Foldable": 2, + "foldl": 4, "k": 108, "v": 57, "Leaf": 15, "|": 9, "Branch": 27, + "{": 25, "key": 13, "value": 8, "left": 15, "right": 14, + "}": 26, "eqMap": 1, "P.Eq": 11, "m1": 6, @@ -56393,110 +56363,279 @@ "v1": 3, "v2.": 1, "v2": 2, - "Control.Arrow": 1, - "Arrow": 5, - "c.": 3, - "first": 4, - "d.": 2, - "d": 6, - "arrowFunction": 1, - "second": 3, - "Category": 3, - "swap": 4, - "b.": 1, - "y": 2, - "infixr": 3, - "***": 2, - "&&": 3, - "&": 3, - ".": 2, - "g": 4, - "ArrowZero": 1, - "zeroArrow": 1, - "<+>": 2, - "ArrowPlus": 1 + "ReactiveJQueryTest": 1, + "flip": 2, + "Control.Monad": 1, + "Control.Monad.Eff": 1, + "Control.Monad.JQuery": 1, + "Control.Reactive": 1, + "Control.Reactive.JQuery": 1, + "head": 2, + "Data.Monoid": 1, + "Debug.Trace": 1, + "Global": 1, + "parseInt": 1, + "main": 1, + "do": 4, + "personDemo": 2, + "todoListDemo": 1, + "greet": 1, + "firstName": 2, + "lastName": 2, + "Create": 3, + "new": 1, + "reactive": 1, + "variables": 1, + "to": 3, + "hold": 1, + "the": 3, + "user": 1, + "readRArray": 1, + "insertRArray": 1, + "text": 5, + "completed": 2, + "paragraph": 2, + "display": 2, + "next": 1, + "task": 4, + "nextTaskLabel": 3, + "create": 2, + "append": 2, + "nextTask": 2, + "toComputedArray": 2, + "toComputed": 2, + "bindTextOneWay": 2, + "counter": 3, + "counterLabel": 3, + "rs": 2, + "cs": 2, + "<->": 1, + "if": 1, + "then": 1, + "else": 1, + "entry": 1, + "entry.completed": 1 }, "Python": { + "xspacing": 4, + "#": 28, + "How": 2, + "far": 1, + "apart": 1, + "should": 1, + "each": 1, + "horizontal": 1, + "location": 1, + "be": 1, + "spaced": 1, + "maxwaves": 3, + "total": 1, + "of": 5, + "waves": 1, + "to": 5, + "add": 1, + "together": 1, + "theta": 3, + "amplitude": 3, + "[": 165, + "]": 165, + "Height": 1, + "wave": 2, + "dx": 8, + "yvalues": 7, "def": 87, "setup": 2, "(": 850, ")": 861, "size": 5, - "P3D": 1, - "fill": 2, + "frameRate": 1, + "colorMode": 1, + "RGB": 1, + "w": 2, + "width": 1, + "+": 51, + "for": 69, + "i": 13, + "in": 91, + "range": 5, + "amplitude.append": 1, + "random": 2, + "period": 2, + "many": 1, + "pixels": 1, + "before": 1, + "the": 6, + "repeats": 1, + "dx.append": 1, + "TWO_PI": 1, + "/": 26, + "*": 38, + "_": 6, + "yvalues.append": 1, "draw": 2, - "lights": 1, "background": 2, - "camera": 1, - "mouseY": 1, - "#": 28, - "eyeX": 1, - "eyeY": 1, - "eyeZ": 1, - "centerX": 1, - "centerY": 1, - "centerZ": 1, - "upX": 1, - "upY": 1, - "upZ": 1, + "calcWave": 2, + "renderWave": 2, + "len": 11, + "j": 7, + "x": 34, + "if": 160, + "%": 33, + "sin": 1, + "else": 33, + "cos": 1, "noStroke": 2, - "box": 1, - "stroke": 1, - "line": 3, - "-": 36, - "SHEBANG#!python": 4, + "fill": 2, + "ellipseMode": 1, + "CENTER": 1, + "v": 19, + "enumerate": 2, + "ellipse": 1, + "height": 1, "import": 55, "os": 2, "sys": 3, - "main": 4, - "usage": 3, - "string": 1, - "command": 4, - "check": 4, - "if": 160, - "len": 11, - "sys.argv": 2, - "<": 2, - "sys.exit": 1, - "+": 51, - ".join": 4, - "[": 165, - "]": 165, - "printDelimiter": 4, - "print": 39, - "get": 1, - "a": 2, - "list": 1, - "of": 5, - "git": 1, - "directories": 1, - "in": 91, - "the": 6, - "specified": 1, - "parent": 5, - "gitDirectories": 2, - "getSubdirectories": 2, - "isGitDirectory": 2, - "for": 69, - "gitDirectory": 2, - "os.chdir": 1, - "os.getcwd": 1, - "os.system": 1, - "directory": 9, - "filter": 3, - "None": 92, - "os.path.abspath": 1, - "subdirectories": 3, - "os.walk": 1, - ".next": 1, - "is": 31, - "return": 68, - "i": 13, - "else": 33, - "os.path.isdir": 1, - "*": 38, - "__name__": 3, + "json": 1, + "c4d": 1, + "c4dtools": 1, + "itertools": 1, "from": 36, + "c4d.modules": 1, + "graphview": 1, + "as": 14, + "gv": 1, + "c4dtools.misc": 1, + "graphnode": 1, + "res": 3, + "importer": 1, + "c4dtools.prepare": 1, + "__file__": 1, + "__res__": 1, + "settings": 2, + "c4dtools.helpers.Attributor": 2, + "{": 27, + "res.file": 3, + "}": 27, + "align_nodes": 2, + "nodes": 11, + "mode": 5, + "spacing": 7, + "r": 9, + "modes": 3, + "not": 69, + "return": 68, + "raise": 23, + "ValueError": 6, + ".join": 4, + "get_0": 12, + "lambda": 6, + "x.x": 1, + "get_1": 4, + "x.y": 1, + "set_0": 6, + "setattr": 16, + "set_1": 4, + "graphnode.GraphNode": 1, + "n": 6, + "nodes.sort": 1, + "key": 6, + "n.position": 1, + "midpoint": 3, + "graphnode.find_nodes_mid": 1, + "first_position": 2, + ".position": 1, + "new_positions": 2, + "prev_offset": 6, + "node": 2, + "position": 12, + "node.position": 2, + "-": 36, + "node.size": 1, + "<": 2, + "new_positions.append": 1, + "bbox_size": 2, + "bbox_size_2": 2, + "itertools.izip": 1, + "align_nodes_shortcut": 3, + "master": 2, + "gv.GetMaster": 1, + "root": 3, + "master.GetRoot": 1, + "graphnode.find_selected_nodes": 1, + "master.AddUndo": 1, + "c4d.EventAdd": 1, + "True": 25, + "class": 19, + "XPAT_Options": 3, + "defaults": 1, + "__init__": 7, + "self": 113, + "filename": 12, + "None": 92, + "super": 4, + ".__init__": 3, + "self.load": 1, + "load": 1, + "is": 31, + "settings.options_filename": 2, + "os.path.isfile": 1, + "self.dict_": 2, + "self.defaults.copy": 2, + "with": 2, + "open": 2, + "fp": 4, + "self.dict_.update": 1, + "json.load": 1, + "self.save": 1, + "save": 2, + "values": 15, + "dict": 4, + "k": 7, + "self.dict_.iteritems": 1, + "self.defaults": 1, + "json.dump": 1, + "XPAT_OptionsDialog": 2, + "c4d.gui.GeDialog": 1, + "CreateLayout": 1, + "self.LoadDialogResource": 1, + "res.DLG_OPTIONS": 1, + "InitValues": 1, + "self.SetLong": 2, + "res.EDT_HSPACE": 2, + "options.hspace": 3, + "res.EDT_VSPACE": 2, + "options.vspace": 3, + "Command": 1, + "id": 2, + "msg": 1, + "res.BTN_SAVE": 1, + "self.GetLong": 2, + "options.save": 1, + "self.Close": 1, + "XPAT_Command_OpenOptionsDialog": 2, + "c4dtools.plugins.Command": 3, + "self._dialog": 4, + "@property": 2, + "dialog": 1, + "PLUGIN_ID": 3, + "PLUGIN_NAME": 3, + "res.string.XPAT_COMMAND_OPENOPTIONSDIALOG": 1, + "PLUGIN_HELP": 3, + "res.string.XPAT_COMMAND_OPENOPTIONSDIALOG_HELP": 1, + "Execute": 3, + "doc": 3, + "self.dialog.Open": 1, + "c4d.DLG_TYPE_MODAL": 1, + "XPAT_Command_AlignHorizontal": 1, + "res.string.XPAT_COMMAND_ALIGNHORIZONTAL": 1, + "PLUGIN_ICON": 2, + "res.string.XPAT_COMMAND_ALIGNHORIZONTAL_HELP": 1, + "XPAT_Command_AlignVertical": 1, + "res.string.XPAT_COMMAND_ALIGNVERTICAL": 1, + "res.string.XPAT_COMMAND_ALIGNVERTICAL_HELP": 1, + "options": 4, + "__name__": 3, + "c4dtools.plugins.main": 1, "__future__": 2, "unicode_literals": 1, "copy": 1, @@ -56506,12 +56645,10 @@ "zip": 8, "django.db.models.manager": 1, "Imported": 1, - "to": 5, "register": 1, "signal": 1, "handler.": 1, "django.conf": 1, - "settings": 2, "django.core.exceptions": 1, "ObjectDoesNotExist": 2, "MultipleObjectsReturned": 2, @@ -56547,8 +56684,6 @@ "get_model": 3, "django.utils.translation": 1, "ugettext_lazy": 1, - "as": 14, - "_": 6, "django.utils.functional": 1, "curry": 6, "django.utils.encoding": 1, @@ -56557,7 +56692,6 @@ "django.utils.text": 1, "get_text_list": 2, "capfirst": 6, - "class": 19, "ModelBase": 4, "type": 6, "__new__": 2, @@ -56566,17 +56700,13 @@ "bases": 6, "attrs": 7, "super_new": 3, - "super": 4, ".__new__": 1, "parents": 8, "b": 11, "isinstance": 11, - "not": 69, "module": 6, "attrs.pop": 2, "new_class": 9, - "{": 27, - "}": 27, "attr_meta": 5, "abstract": 3, "getattr": 30, @@ -56593,7 +56723,6 @@ "subclass_exception": 3, "tuple": 3, "x.DoesNotExist": 1, - "x": 34, "hasattr": 11, "and": 35, "x._meta.abstract": 2, @@ -56626,17 +56755,15 @@ "f.name": 5, "f": 19, "base": 13, + "parent": 5, "parent._meta.abstract": 1, "parent._meta.fields": 1, - "raise": 23, "TypeError": 4, - "%": 33, "continue": 10, "new_class._meta.setup_proxy": 1, "new_class._meta.concrete_model": 2, "base._meta.concrete_model": 2, "o2o_map": 3, - "dict": 4, "f.rel.to": 1, "original_base": 1, "parent_fields": 3, @@ -56650,7 +56777,6 @@ "attr_name": 3, "base._meta.module_name": 1, "auto_created": 1, - "True": 25, "parent_link": 1, "new_class._meta.parents": 1, "copy.deepcopy": 2, @@ -56675,7 +56801,6 @@ "add_to_class": 1, "value": 9, "value.contribute_to_class": 1, - "setattr": 16, "_prepare": 1, "opts": 5, "cls._meta": 3, @@ -56702,8 +56827,6 @@ "sender": 5, "ModelState": 2, "object": 6, - "__init__": 7, - "self": 113, "db": 2, "self.db": 1, "self.adding": 1, @@ -56736,7 +56859,6 @@ "property": 2, "AttributeError": 1, "pass": 4, - ".__init__": 3, "signals.post_init.send": 1, "instance": 5, "__repr__": 2, @@ -56775,12 +56897,10 @@ "serializable_value": 1, "field_name": 8, "self._meta.get_field_by_name": 1, - "save": 2, "force_insert": 7, "force_update": 10, "using": 30, "update_fields": 23, - "ValueError": 6, "frozenset": 2, "field.primary_key": 1, "non_model_fields": 2, @@ -56809,7 +56929,6 @@ "manager.using": 3, ".filter": 7, ".exists": 1, - "values": 15, "f.pre_save": 1, "rows": 3, "._update": 1, @@ -56874,8 +56993,6 @@ "self._perform_unique_checks": 1, "date_errors": 1, "self._perform_date_checks": 1, - "k": 7, - "v": 19, "date_errors.items": 1, "errors.setdefault": 3, ".extend": 2, @@ -56888,6 +57005,7 @@ "unique_togethers.append": 1, "model_class": 11, "unique_together": 2, + "check": 4, "break": 2, "unique_checks.append": 2, "fields_with_class": 2, @@ -56912,7 +57030,6 @@ "model_class._meta": 2, "qs.exclude": 2, "qs.exists": 2, - "key": 6, ".append": 2, "self.unique_error_message": 1, "_perform_date_checks": 1, @@ -56934,7 +57051,6 @@ "field.error_messages": 1, "field_labels": 4, "map": 1, - "lambda": 6, "full_clean": 1, "self.clean_fields": 1, "e": 13, @@ -56956,14 +57072,11 @@ "ordered_obj._meta.order_with_respect_to.rel.field_name": 2, "order_name": 4, "ordered_obj._meta.order_with_respect_to.name": 2, - "j": 7, - "enumerate": 2, "ordered_obj.objects.filter": 2, ".update": 1, "_order": 1, "pk_name": 3, "ordered_obj._meta.pk.name": 1, - "r": 9, ".values": 1, "##############################################": 2, "func": 2, @@ -57027,164 +57140,22 @@ "meth": 5, "request.method.lower": 1, "request.method": 2, - "xspacing": 4, - "How": 2, - "far": 1, - "apart": 1, - "should": 1, - "each": 1, - "horizontal": 1, - "location": 1, - "be": 1, - "spaced": 1, - "maxwaves": 3, - "total": 1, - "waves": 1, - "add": 1, - "together": 1, - "theta": 3, - "amplitude": 3, - "Height": 1, - "wave": 2, - "dx": 8, - "yvalues": 7, - "frameRate": 1, - "colorMode": 1, - "RGB": 1, - "w": 2, - "width": 1, - "range": 5, - "amplitude.append": 1, - "random": 2, - "period": 2, - "many": 1, - "pixels": 1, - "before": 1, - "repeats": 1, - "dx.append": 1, - "TWO_PI": 1, - "/": 26, - "yvalues.append": 1, - "calcWave": 2, - "renderWave": 2, - "sin": 1, - "cos": 1, - "ellipseMode": 1, - "CENTER": 1, - "ellipse": 1, - "height": 1, - "json": 1, - "c4d": 1, - "c4dtools": 1, - "itertools": 1, - "c4d.modules": 1, - "graphview": 1, - "gv": 1, - "c4dtools.misc": 1, - "graphnode": 1, - "res": 3, - "importer": 1, - "c4dtools.prepare": 1, - "__file__": 1, - "__res__": 1, - "c4dtools.helpers.Attributor": 2, - "res.file": 3, - "align_nodes": 2, - "nodes": 11, - "mode": 5, - "spacing": 7, - "modes": 3, - "get_0": 12, - "x.x": 1, - "get_1": 4, - "x.y": 1, - "set_0": 6, - "set_1": 4, - "graphnode.GraphNode": 1, - "n": 6, - "nodes.sort": 1, - "n.position": 1, - "midpoint": 3, - "graphnode.find_nodes_mid": 1, - "first_position": 2, - ".position": 1, - "new_positions": 2, - "prev_offset": 6, - "node": 2, - "position": 12, - "node.position": 2, - "node.size": 1, - "new_positions.append": 1, - "bbox_size": 2, - "bbox_size_2": 2, - "itertools.izip": 1, - "align_nodes_shortcut": 3, - "master": 2, - "gv.GetMaster": 1, - "root": 3, - "master.GetRoot": 1, - "graphnode.find_selected_nodes": 1, - "master.AddUndo": 1, - "c4d.EventAdd": 1, - "XPAT_Options": 3, - "defaults": 1, - "filename": 12, - "self.load": 1, - "load": 1, - "settings.options_filename": 2, - "os.path.isfile": 1, - "self.dict_": 2, - "self.defaults.copy": 2, - "with": 2, - "open": 2, - "fp": 4, - "self.dict_.update": 1, - "json.load": 1, - "self.save": 1, - "self.dict_.iteritems": 1, - "self.defaults": 1, - "json.dump": 1, - "XPAT_OptionsDialog": 2, - "c4d.gui.GeDialog": 1, - "CreateLayout": 1, - "self.LoadDialogResource": 1, - "res.DLG_OPTIONS": 1, - "InitValues": 1, - "self.SetLong": 2, - "res.EDT_HSPACE": 2, - "options.hspace": 3, - "res.EDT_VSPACE": 2, - "options.vspace": 3, - "Command": 1, - "id": 2, - "msg": 1, - "res.BTN_SAVE": 1, - "self.GetLong": 2, - "options.save": 1, - "self.Close": 1, - "XPAT_Command_OpenOptionsDialog": 2, - "c4dtools.plugins.Command": 3, - "self._dialog": 4, - "@property": 2, - "dialog": 1, - "PLUGIN_ID": 3, - "PLUGIN_NAME": 3, - "res.string.XPAT_COMMAND_OPENOPTIONSDIALOG": 1, - "PLUGIN_HELP": 3, - "res.string.XPAT_COMMAND_OPENOPTIONSDIALOG_HELP": 1, - "Execute": 3, - "doc": 3, - "self.dialog.Open": 1, - "c4d.DLG_TYPE_MODAL": 1, - "XPAT_Command_AlignHorizontal": 1, - "res.string.XPAT_COMMAND_ALIGNHORIZONTAL": 1, - "PLUGIN_ICON": 2, - "res.string.XPAT_COMMAND_ALIGNHORIZONTAL_HELP": 1, - "XPAT_Command_AlignVertical": 1, - "res.string.XPAT_COMMAND_ALIGNVERTICAL": 1, - "res.string.XPAT_COMMAND_ALIGNVERTICAL_HELP": 1, - "options": 4, - "c4dtools.plugins.main": 1, + "P3D": 1, + "lights": 1, + "camera": 1, + "mouseY": 1, + "eyeX": 1, + "eyeY": 1, + "eyeZ": 1, + "centerX": 1, + "centerY": 1, + "centerZ": 1, + "upX": 1, + "upY": 1, + "upZ": 1, + "box": 1, + "stroke": 1, + "line": 3, "google.protobuf": 4, "descriptor": 1, "_descriptor": 1, @@ -57224,160 +57195,35 @@ "Person": 1, "_message.Message": 1, "_reflection.GeneratedProtocolMessageType": 1, - "absolute_import": 1, - "division": 1, - "with_statement": 1, - "Cookie": 1, - "logging": 1, - "socket": 1, - "time": 1, - "tornado.escape": 1, - "utf8": 2, - "native_str": 4, - "parse_qs_bytes": 3, - "tornado": 3, - "httputil": 1, - "iostream": 1, - "tornado.netutil": 1, - "TCPServer": 2, - "stack_context": 1, - "tornado.util": 1, - "bytes_type": 2, - "ssl": 2, - "Python": 1, - "ImportError": 1, - "HTTPServer": 1, - "request_callback": 4, - "no_keep_alive": 4, - "io_loop": 3, - "xheaders": 4, - "ssl_options": 3, - "self.request_callback": 5, - "self.no_keep_alive": 4, - "self.xheaders": 3, - "TCPServer.__init__": 1, - "handle_stream": 1, - "stream": 4, - "address": 4, - "HTTPConnection": 2, - "_BadRequestException": 5, - "Exception": 2, - "self.stream": 1, - "self.address": 3, - "self._request": 7, - "self._request_finished": 4, - "self._header_callback": 3, - "stack_context.wrap": 2, - "self._on_headers": 1, - "self.stream.read_until": 2, - "self._write_callback": 5, - "write": 2, - "chunk": 5, - "callback": 7, - "self.stream.closed": 1, - "self.stream.write": 2, - "self._on_write_complete": 1, - "finish": 2, - "self.stream.writing": 2, - "self._finish_request": 2, - "_on_write_complete": 1, - "_finish_request": 1, - "disconnect": 5, - "connection_header": 5, - "self._request.headers.get": 2, - "connection_header.lower": 1, - "self._request.supports_http_1_1": 1, - "self._request.headers": 1, - "self._request.method": 2, - "self.stream.close": 2, - "_on_headers": 1, - "data.decode": 1, - "eol": 3, - "data.find": 1, - "start_line": 1, - "method": 5, - "uri": 5, - "version": 6, - "start_line.split": 1, - "version.startswith": 1, - "headers": 5, - "httputil.HTTPHeaders.parse": 1, - "self.stream.socket": 1, - "socket.AF_INET": 2, - "socket.AF_INET6": 1, - "remote_ip": 8, - "HTTPRequest": 2, - "connection": 5, - "content_length": 6, - "headers.get": 2, - "int": 1, - "self.stream.max_buffer_size": 1, - "self.stream.read_bytes": 1, - "self._on_request_body": 1, - "logging.info": 1, - "_on_request_body": 1, - "self._request.body": 2, - "content_type": 1, - "content_type.startswith": 2, - "arguments": 2, - "arguments.iteritems": 2, - "self._request.arguments.setdefault": 1, - "content_type.split": 1, - "sep": 2, - "field.strip": 1, - ".partition": 1, - "httputil.parse_multipart_form_data": 1, - "self._request.arguments": 1, - "self._request.files": 1, - "logging.warning": 1, - "body": 2, - "protocol": 4, - "host": 2, - "files": 2, - "self.method": 1, - "self.uri": 2, - "self.version": 2, - "self.headers": 4, - "httputil.HTTPHeaders": 1, - "self.body": 1, - "connection.xheaders": 1, - "self.remote_ip": 4, - "self.headers.get": 5, - "self._valid_ip": 1, - "self.protocol": 7, - "connection.stream": 1, - "iostream.SSLIOStream": 1, - "self.host": 2, - "self.files": 1, - "self.connection": 1, - "self._start_time": 3, - "time.time": 3, - "self._finish_time": 4, - "self.path": 1, - "self.query": 2, - "uri.partition": 1, - "self.arguments": 2, - "supports_http_1_1": 1, - "cookies": 1, - "self._cookies": 3, - "Cookie.SimpleCookie": 1, - "self._cookies.load": 1, - "self.connection.write": 1, - "self.connection.finish": 1, - "full_url": 1, - "request_time": 1, - "get_ssl_certificate": 1, - "self.connection.stream.socket.getpeercert": 1, - "ssl.SSLError": 1, - "_valid_ip": 1, - "ip": 2, - "socket.getaddrinfo": 1, - "socket.AF_UNSPEC": 1, - "socket.SOCK_STREAM": 1, - "socket.AI_NUMERICHOST": 1, - "socket.gaierror": 1, - "e.args": 1, - "socket.EAI_NONAME": 1, + "SHEBANG#!python": 4, + "print": 39, + "main": 4, + "usage": 3, + "string": 1, + "command": 4, + "sys.argv": 2, + "sys.exit": 1, + "printDelimiter": 4, + "get": 1, + "a": 2, + "list": 1, + "git": 1, + "directories": 1, + "specified": 1, + "gitDirectories": 2, + "getSubdirectories": 2, + "isGitDirectory": 2, + "gitDirectory": 2, + "os.chdir": 1, + "os.getcwd": 1, + "os.system": 1, + "directory": 9, + "filter": 3, + "os.path.abspath": 1, + "subdirectories": 3, + "os.walk": 1, + ".next": 1, + "os.path.isdir": 1, "argparse": 1, "matplotlib.pyplot": 1, "pl": 1, @@ -57542,7 +57388,161 @@ "dest": 1, "default": 1, "action": 1, - "parser.parse_args": 1 + "version": 6, + "parser.parse_args": 1, + "absolute_import": 1, + "division": 1, + "with_statement": 1, + "Cookie": 1, + "logging": 1, + "socket": 1, + "time": 1, + "tornado.escape": 1, + "utf8": 2, + "native_str": 4, + "parse_qs_bytes": 3, + "tornado": 3, + "httputil": 1, + "iostream": 1, + "tornado.netutil": 1, + "TCPServer": 2, + "stack_context": 1, + "tornado.util": 1, + "bytes_type": 2, + "ssl": 2, + "Python": 1, + "ImportError": 1, + "HTTPServer": 1, + "request_callback": 4, + "no_keep_alive": 4, + "io_loop": 3, + "xheaders": 4, + "ssl_options": 3, + "self.request_callback": 5, + "self.no_keep_alive": 4, + "self.xheaders": 3, + "TCPServer.__init__": 1, + "handle_stream": 1, + "stream": 4, + "address": 4, + "HTTPConnection": 2, + "_BadRequestException": 5, + "Exception": 2, + "self.stream": 1, + "self.address": 3, + "self._request": 7, + "self._request_finished": 4, + "self._header_callback": 3, + "stack_context.wrap": 2, + "self._on_headers": 1, + "self.stream.read_until": 2, + "self._write_callback": 5, + "write": 2, + "chunk": 5, + "callback": 7, + "self.stream.closed": 1, + "self.stream.write": 2, + "self._on_write_complete": 1, + "finish": 2, + "self.stream.writing": 2, + "self._finish_request": 2, + "_on_write_complete": 1, + "_finish_request": 1, + "disconnect": 5, + "connection_header": 5, + "self._request.headers.get": 2, + "connection_header.lower": 1, + "self._request.supports_http_1_1": 1, + "self._request.headers": 1, + "self._request.method": 2, + "self.stream.close": 2, + "_on_headers": 1, + "data.decode": 1, + "eol": 3, + "data.find": 1, + "start_line": 1, + "method": 5, + "uri": 5, + "start_line.split": 1, + "version.startswith": 1, + "headers": 5, + "httputil.HTTPHeaders.parse": 1, + "self.stream.socket": 1, + "socket.AF_INET": 2, + "socket.AF_INET6": 1, + "remote_ip": 8, + "HTTPRequest": 2, + "connection": 5, + "content_length": 6, + "headers.get": 2, + "int": 1, + "self.stream.max_buffer_size": 1, + "self.stream.read_bytes": 1, + "self._on_request_body": 1, + "logging.info": 1, + "_on_request_body": 1, + "self._request.body": 2, + "content_type": 1, + "content_type.startswith": 2, + "arguments": 2, + "arguments.iteritems": 2, + "self._request.arguments.setdefault": 1, + "content_type.split": 1, + "sep": 2, + "field.strip": 1, + ".partition": 1, + "httputil.parse_multipart_form_data": 1, + "self._request.arguments": 1, + "self._request.files": 1, + "logging.warning": 1, + "body": 2, + "protocol": 4, + "host": 2, + "files": 2, + "self.method": 1, + "self.uri": 2, + "self.version": 2, + "self.headers": 4, + "httputil.HTTPHeaders": 1, + "self.body": 1, + "connection.xheaders": 1, + "self.remote_ip": 4, + "self.headers.get": 5, + "self._valid_ip": 1, + "self.protocol": 7, + "connection.stream": 1, + "iostream.SSLIOStream": 1, + "self.host": 2, + "self.files": 1, + "self.connection": 1, + "self._start_time": 3, + "time.time": 3, + "self._finish_time": 4, + "self.path": 1, + "self.query": 2, + "uri.partition": 1, + "self.arguments": 2, + "supports_http_1_1": 1, + "cookies": 1, + "self._cookies": 3, + "Cookie.SimpleCookie": 1, + "self._cookies.load": 1, + "self.connection.write": 1, + "self.connection.finish": 1, + "full_url": 1, + "request_time": 1, + "get_ssl_certificate": 1, + "self.connection.stream.socket.getpeercert": 1, + "ssl.SSLError": 1, + "_valid_ip": 1, + "ip": 2, + "socket.getaddrinfo": 1, + "socket.AF_UNSPEC": 1, + "socket.SOCK_STREAM": 1, + "socket.AI_NUMERICHOST": 1, + "socket.gaierror": 1, + "e.args": 1, + "socket.EAI_NONAME": 1 }, "QMake": { "QT": 4, @@ -57593,6 +57593,11 @@ "rev.txt": 2, "echo": 1, "ThisIsNotAGitRepo": 1, + "SHEBANG#!qmake": 1, + "message": 1, + "This": 1, + "is": 1, + "QMake.": 1, "CONFIG": 1, "qt": 1, "simpleapp": 1, @@ -57601,24 +57606,61 @@ "file2.h": 1, "This/Is/Folder/file3.h": 1, "This/Is/Folder/file3.ui": 1, - "Test.ui": 1, - "SHEBANG#!qmake": 1, - "message": 1, - "This": 1, - "is": 1, - "QMake.": 1 + "Test.ui": 1 }, "R": { - "SHEBANG#!Rscript": 2, - "#": 45, - "MedianNorm": 2, + "df.residual.mira": 1, "<": 46, "-": 53, "function": 18, "(": 219, - "data": 13, + "object": 12, + "...": 4, ")": 220, "{": 58, + "fit": 2, + "analyses": 1, + "[": 23, + "]": 24, + "return": 8, + "df.residual": 2, + "}": 58, + "df.residual.lme": 1, + "fixDF": 1, + "df.residual.mer": 1, + "sum": 1, + "object@dims": 1, + "*": 2, + "c": 11, + "+": 4, + "df.residual.default": 1, + "q": 3, + "df": 3, + "if": 19, + "is.null": 8, + "mk": 2, + "try": 3, + "coef": 1, + "silent": 3, + "TRUE": 14, + "mn": 2, + "f": 9, + "fitted": 1, + "inherits": 6, + "|": 3, + "NULL": 2, + "n": 3, + "ifelse": 1, + "is.data.frame": 1, + "is.matrix": 1, + "nrow": 1, + "length": 3, + "k": 3, + "max": 1, + "SHEBANG#!Rscript": 2, + "#": 45, + "MedianNorm": 2, + "data": 13, "geomeans": 3, "<->": 1, "exp": 1, @@ -57628,8 +57670,6 @@ "2": 1, "cnts": 2, "median": 1, - "]": 24, - "}": 58, "library": 1, "print_usage": 2, "file": 4, @@ -57637,17 +57677,12 @@ "cat": 1, "spec": 2, "matrix": 3, - "c": 11, "byrow": 3, - "TRUE": 14, "ncol": 3, "opt": 23, "getopt": 1, - "if": 19, - "is.null": 8, "help": 1, "stdout": 1, - "q": 3, "status": 1, "height": 7, "out": 4, @@ -57660,8 +57695,6 @@ "quote": 1, "nsamp": 8, "dim": 1, - "[": 23, - "+": 4, "outfile": 4, "sprintf": 2, "png": 2, @@ -57689,107 +57722,41 @@ "t": 1, "x": 3, "/": 1, - "docType": 1, - "package": 5, - "name": 10, - "scholar": 6, - "alias": 2, - "title": 1, - "source": 3, - "The": 5, - "reads": 1, - "from": 5, - "url": 2, - "http": 2, - "//scholar.google.com": 1, - ".": 7, - "Dates": 1, - "and": 5, - "citation": 2, - "counts": 1, - "are": 4, - "estimated": 1, - "determined": 1, - "automatically": 1, - "by": 2, - "a": 6, - "computer": 1, - "program.": 1, - "Use": 1, - "at": 2, - "your": 1, - "own": 1, - "risk.": 1, - "description": 1, - "code": 21, - "provides": 1, - "functions": 3, - "to": 9, - "extract": 1, - "Google": 2, - "Scholar.": 1, - "There": 1, - "also": 1, - "convenience": 1, - "comparing": 1, - "multiple": 1, - "scholars": 1, - "predicting": 1, - "index": 1, - "scores": 1, - "based": 1, - "on": 2, - "past": 1, - "publication": 1, - "records.": 1, - "note": 1, - "A": 1, - "complementary": 1, - "set": 2, - "of": 2, - "Scholar": 1, - "can": 3, - "be": 8, - "found": 1, - "//biostat.jhsph.edu/": 1, - "jleek/code/googleCite.r": 1, - "was": 1, - "developed": 1, - "independently.": 1, - "df.residual.mira": 1, - "object": 12, - "...": 4, - "fit": 2, - "analyses": 1, - "return": 8, - "df.residual": 2, - "df.residual.lme": 1, - "fixDF": 1, - "df.residual.mer": 1, - "sum": 1, - "object@dims": 1, - "*": 2, - "df.residual.default": 1, - "df": 3, - "mk": 2, - "try": 3, - "coef": 1, - "silent": 3, - "mn": 2, - "f": 9, - "fitted": 1, - "inherits": 6, - "|": 3, - "NULL": 2, - "n": 3, - "ifelse": 1, - "is.data.frame": 1, - "is.matrix": 1, - "nrow": 1, - "length": 3, - "k": 3, - "max": 1, + "ParseDates": 2, + "dates": 3, + "unlist": 2, + "strsplit": 3, + "days": 2, + "times": 2, + "hours": 2, + "all.days": 2, + "all.hours": 2, + "data.frame": 1, + "Day": 2, + "factor": 2, + "levels": 2, + "Hour": 2, + "Main": 2, + "system": 1, + "intern": 1, + "punchcard": 4, + "as.data.frame": 1, + "table": 1, + "ggplot2": 6, + "ggplot": 1, + "aes": 2, + "y": 1, + "geom_point": 1, + "size": 1, + "Freq": 1, + "scale_size": 1, + "range": 1, + "ggsave": 1, + "filename": 1, + "hello": 2, + "print": 1, "module": 25, + "code": 21, "available": 1, "via": 1, "the": 16, @@ -57811,13 +57778,17 @@ "is": 7, "optionally": 1, "attached": 2, + "to": 9, + "of": 2, "current": 2, "scope": 1, "defaults": 1, + ".": 7, "However": 1, "interactive": 2, "invoked": 1, "directly": 1, + "from": 5, "terminal": 1, "only": 1, "i.e.": 1, @@ -57825,8 +57796,12 @@ "within": 1, "modules": 4, "import.attach": 1, + "can": 3, + "be": 8, + "set": 2, "or": 1, "depending": 1, + "on": 2, "user": 1, "s": 2, "preference.": 1, @@ -57834,6 +57809,7 @@ "causes": 1, "emph": 3, "operators": 3, + "by": 2, "default": 1, "path.": 1, "Not": 1, @@ -57842,11 +57818,14 @@ "therefore": 1, "drastically": 1, "limits": 1, + "a": 6, "usefulness.": 1, "Modules": 1, + "are": 4, "searched": 1, "options": 1, "priority.": 1, + "The": 5, "directory": 1, "always": 1, "considered": 1, @@ -57909,6 +57888,7 @@ "exhibit_namespace": 3, "identical": 2, ".GlobalEnv": 2, + "name": 10, "environmentName": 2, "parent.env": 4, "export_operators": 2, @@ -57921,6 +57901,7 @@ "parent": 9, ".BaseNamespaceEnv": 1, "paste": 3, + "source": 3, "chdir": 1, "envir": 5, "cache_module": 1, @@ -57934,7 +57915,6 @@ "%": 2, "is_op": 2, "prefix": 3, - "strsplit": 3, "||": 1, "grepl": 1, "Filter": 1, @@ -57945,6 +57925,7 @@ "references": 1, "remain": 1, "unchanged": 1, + "and": 5, "files": 1, "would": 1, "have": 1, @@ -57980,8 +57961,6 @@ ".loaded_modules": 1, "whatnot.": 1, "assign": 1, - "hello": 2, - "print": 1, "##polyg": 1, "vector": 2, "##numpoints": 1, @@ -57996,36 +57975,57 @@ "spsample": 1, "polyg": 1, "numpoints": 1, - "ParseDates": 2, - "dates": 3, - "unlist": 2, - "days": 2, - "times": 2, - "hours": 2, - "all.days": 2, - "all.hours": 2, - "data.frame": 1, - "Day": 2, - "factor": 2, - "levels": 2, - "Hour": 2, - "Main": 2, - "system": 1, - "intern": 1, - "punchcard": 4, - "as.data.frame": 1, - "table": 1, - "ggplot2": 6, - "ggplot": 1, - "aes": 2, - "y": 1, - "geom_point": 1, - "size": 1, - "Freq": 1, - "scale_size": 1, - "range": 1, - "ggsave": 1, - "filename": 1 + "docType": 1, + "package": 5, + "scholar": 6, + "alias": 2, + "title": 1, + "reads": 1, + "url": 2, + "http": 2, + "//scholar.google.com": 1, + "Dates": 1, + "citation": 2, + "counts": 1, + "estimated": 1, + "determined": 1, + "automatically": 1, + "computer": 1, + "program.": 1, + "Use": 1, + "at": 2, + "your": 1, + "own": 1, + "risk.": 1, + "description": 1, + "provides": 1, + "functions": 3, + "extract": 1, + "Google": 2, + "Scholar.": 1, + "There": 1, + "also": 1, + "convenience": 1, + "comparing": 1, + "multiple": 1, + "scholars": 1, + "predicting": 1, + "index": 1, + "scores": 1, + "based": 1, + "past": 1, + "publication": 1, + "records.": 1, + "note": 1, + "A": 1, + "complementary": 1, + "Scholar": 1, + "found": 1, + "//biostat.jhsph.edu/": 1, + "jleek/code/googleCite.r": 1, + "was": 1, + "developed": 1, + "independently.": 1 }, "RDoc": { "RDoc": 7, @@ -58216,40 +58216,64 @@ "rnorm": 1 }, "Racket": { + ";": 3, + "Clean": 1, + "simple": 1, + "and": 1, + "efficient": 1, + "code": 1, + "-": 94, + "that": 2, + "s": 1, + "the": 3, + "power": 1, + "of": 4, + "Racket": 2, + "http": 1, + "//racket": 1, + "lang.org/": 1, + "(": 23, + "define": 1, + "bottles": 4, + "n": 8, + "more": 2, + ")": 23, + "printf": 2, + "case": 1, + "[": 16, + "]": 16, + "else": 1, + "if": 1, + "for": 2, + "in": 3, + "range": 1, + "sub1": 1, + "displayln": 2, "#lang": 1, "scribble/manual": 1, "@": 3, - "(": 23, "require": 1, "scribble/bnf": 1, - ")": 23, "@title": 1, "{": 2, "Scribble": 3, "The": 1, - "Racket": 2, "Documentation": 1, "Tool": 1, "}": 2, "@author": 1, - "[": 16, - "]": 16, "is": 3, "a": 1, "collection": 1, - "of": 4, "tools": 1, - "for": 2, "creating": 1, "prose": 2, "documents": 1, - "-": 94, "papers": 1, "books": 1, "library": 1, "documentation": 1, "etc.": 1, - "in": 3, "HTML": 1, "or": 2, "PDF": 1, @@ -58262,13 +58286,11 @@ "you": 1, "write": 1, "programs": 1, - "that": 2, "are": 1, "rich": 1, "textual": 1, "content": 2, "whether": 1, - "the": 3, "to": 2, "be": 2, "typeset": 1, @@ -58300,103 +58322,30 @@ "file.": 1, "@table": 1, "contents": 1, - ";": 3, "@include": 8, "section": 9, - "@index": 1, - "Clean": 1, - "simple": 1, - "and": 1, - "efficient": 1, - "code": 1, - "s": 1, - "power": 1, - "http": 1, - "//racket": 1, - "lang.org/": 1, - "define": 1, - "bottles": 4, - "n": 8, - "more": 2, - "printf": 2, - "case": 1, - "else": 1, - "if": 1, - "range": 1, - "sub1": 1, - "displayln": 2 + "@index": 1 }, "Ragel in Ruby Host": { "begin": 3, "%": 34, "{": 19, "machine": 3, - "simple_tokenizer": 1, + "ephemeris_parser": 1, ";": 38, "action": 9, - "MyTs": 2, - "my_ts": 6, + "mark": 6, "p": 8, "}": 19, - "MyTe": 2, - "my_te": 6, - "Emit": 4, - "emit": 4, + "parse_start_time": 2, + "parser.start_time": 1, "data": 15, "[": 20, - "my_ts...my_te": 1, + "mark..p": 4, "]": 20, ".pack": 6, "(": 33, ")": 33, - "nil": 4, - "foo": 8, - "any": 4, - "+": 7, - "main": 3, - "|": 11, - "*": 9, - "end": 23, - "#": 4, - "class": 3, - "SimpleTokenizer": 1, - "attr_reader": 2, - "path": 8, - "def": 10, - "initialize": 2, - "@path": 2, - "write": 9, - "stdout.puts": 2, - "perform": 2, - "pe": 4, - "ignored": 4, - "eof": 3, - "init": 3, - "leftover": 8, - "File.open": 2, - "do": 2, - "f": 2, - "while": 2, - "chunk": 2, - "f.read": 2, - "ENV": 2, - ".to_i": 2, - "chunk.unpack": 2, - "data.length": 3, - "exec": 3, - "if": 4, - "my_ts..": 1, - "-": 5, - "else": 2, - "s": 4, - "SimpleTokenizer.new": 1, - "ARGV": 2, - "s.perform": 2, - "ephemeris_parser": 1, - "mark": 6, - "parse_start_time": 2, - "parser.start_time": 1, - "mark..p": 4, "parse_stop_time": 2, "parser.stop_time": 1, "parse_step_size": 2, @@ -58409,6 +58358,7 @@ "r": 1, "n": 1, "adbc": 2, + "|": 11, "year": 2, "digit": 7, "month": 2, @@ -58421,136 +58371,109 @@ "tz": 2, "datetime": 3, "time_unit": 2, + "s": 4, "soe": 2, "eoe": 2, "ephemeris_table": 3, "alnum": 1, + "*": 9, + "-": 5, "./": 1, "start_time": 4, "space*": 2, "stop_time": 4, "step_size": 3, + "+": 7, "ephemeris": 2, + "main": 3, "any*": 3, + "end": 23, "require": 1, "module": 1, "Tengai": 1, "EPHEMERIS_DATA": 2, "Struct.new": 1, ".freeze": 1, + "class": 3, "EphemerisParser": 1, "<": 1, + "def": 10, "self.parse": 1, "parser": 2, "new": 1, "data.unpack": 1, + "if": 4, "data.is_a": 1, "String": 1, + "eof": 3, + "data.length": 3, + "write": 9, + "init": 3, + "exec": 3, "time": 6, "super": 2, "parse_time": 3, "private": 1, "DateTime.parse": 1, "simple_scanner": 1, + "Emit": 4, + "emit": 4, "ts": 4, "..": 1, "te": 1, + "foo": 8, + "any": 4, + "#": 4, "SimpleScanner": 1, + "attr_reader": 2, + "path": 8, + "initialize": 2, + "@path": 2, + "stdout.puts": 2, + "perform": 2, + "pe": 4, + "ignored": 4, + "leftover": 8, + "File.open": 2, + "do": 2, + "f": 2, + "while": 2, + "chunk": 2, + "f.read": 2, + "ENV": 2, + ".to_i": 2, + "chunk.unpack": 2, "||": 1, "ts..pe": 1, - "SimpleScanner.new": 1 + "else": 2, + "SimpleScanner.new": 1, + "ARGV": 2, + "s.perform": 2, + "simple_tokenizer": 1, + "MyTs": 2, + "my_ts": 6, + "MyTe": 2, + "my_te": 6, + "my_ts...my_te": 1, + "nil": 4, + "SimpleTokenizer": 1, + "my_ts..": 1, + "SimpleTokenizer.new": 1 }, "Rebol": { - "Rebol": 4, - "[": 54, - "]": 61, - "hello": 8, - "func": 5, - "print": 4, - "Title": 2, - "re": 20, - "s": 5, - "/i": 1, - "rejoin": 1, - "compose": 1, - "(": 30, - ")": 33, - "either": 1, - "i": 1, - ";": 19, - "little": 1, - "helper": 1, - "for": 4, - "standard": 1, - "grammar": 1, - "regex": 2, - "used": 3, - "date": 6, - "-": 26, - "naive": 1, - "string": 1, - "{": 8, - "}": 8, - "|": 22, - "S": 3, - "*": 7, - "<(?:[^^\\>": 1, - ".": 4, - "d": 3, - "+": 6, - "/": 5, - "@": 1, - "%": 2, - "A": 3, - "F": 1, - "url": 1, - "PR_LITERAL": 10, - "string_url": 1, - "email": 1, - "string_email": 1, - "binary": 1, - "binary_base_two": 1, - "binary_base_sixty_four": 1, - "binary_base_sixteen": 1, - "re/i": 2, - "issue": 1, - "string_issue": 1, - "values": 1, - "value_date": 1, - "time": 2, - "value_time": 1, - "tuple": 1, - "value_tuple": 1, - "pair": 1, - "value_pair": 1, - "number": 2, - "PR": 1, - "Za": 2, - "z0": 2, - "<[=>": 1, - "rebol": 1, - "red": 1, - "/system": 1, - "world": 1, - "topaz": 1, - "true": 1, - "false": 1, - "yes": 1, - "no": 3, - "on": 1, - "off": 1, - "none": 1, - "#": 1, - "block": 5, "REBOL": 5, + "[": 54, "System": 1, + "Title": 2, "Rights": 1, + "{": 8, "Copyright": 1, "Technologies": 2, "is": 4, "a": 2, "trademark": 1, "of": 1, + "}": 8, "License": 2, "Licensed": 1, "under": 1, @@ -58560,9 +58483,11 @@ "See": 1, "http": 1, "//www.apache.org/licenses/LICENSE": 1, + "-": 26, "Purpose": 1, "These": 1, "are": 2, + "used": 3, "to": 2, "define": 1, "natives": 1, @@ -58570,16 +58495,23 @@ "actions.": 1, "Bind": 1, "attributes": 1, + "for": 4, "this": 1, + "block": 5, "BIND_SET": 1, "SHALLOW": 1, + "]": 61, + ";": 19, "Special": 1, "as": 1, "spec": 3, "datatype": 2, "test": 1, "functions": 1, + "(": 30, "e.g.": 1, + "time": 2, + ")": 33, "value": 1, "any": 1, "type": 1, @@ -58602,6 +58534,8 @@ "internal": 2, "usage": 2, "only": 2, + ".": 4, + "no": 3, "check": 2, "required": 2, "we": 2, @@ -58609,24 +58543,201 @@ "it": 2, "correct": 2, "action": 2, + "Rebol": 4, + "re": 20, + "func": 5, + "s": 5, + "/i": 1, + "rejoin": 1, + "compose": 1, + "either": 1, + "i": 1, + "little": 1, + "helper": 1, + "standard": 1, + "grammar": 1, + "regex": 2, + "date": 6, + "naive": 1, + "string": 1, + "|": 22, + "S": 3, + "*": 7, + "<(?:[^^\\>": 1, + "d": 3, + "+": 6, + "/": 5, + "@": 1, + "%": 2, + "A": 3, + "F": 1, + "url": 1, + "PR_LITERAL": 10, + "string_url": 1, + "email": 1, + "string_email": 1, + "binary": 1, + "binary_base_two": 1, + "binary_base_sixty_four": 1, + "binary_base_sixteen": 1, + "re/i": 2, + "issue": 1, + "string_issue": 1, + "values": 1, + "value_date": 1, + "value_time": 1, + "tuple": 1, + "value_tuple": 1, + "pair": 1, + "value_pair": 1, + "number": 2, + "PR": 1, + "Za": 2, + "z0": 2, + "<[=>": 1, + "rebol": 1, + "red": 1, + "/system": 1, + "world": 1, + "topaz": 1, + "true": 1, + "false": 1, + "yes": 1, + "on": 1, + "off": 1, + "none": 1, + "#": 1, + "hello": 8, + "print": 4, "author": 1 }, "Red": { - "Red/System": 1, + "Red": 3, "[": 111, "Title": 2, + "Author": 1, + "]": 114, + "File": 1, + "%": 2, + "console.red": 1, + "Tabs": 1, + "Rights": 1, + "License": 2, + "{": 11, + "Distributed": 1, + "under": 1, + "the": 3, + "Boost": 1, + "Software": 1, + "Version": 1, + "See": 1, + "https": 1, + "//github.com/dockimbel/Red/blob/master/BSL": 1, + "-": 74, + "License.txt": 1, + "}": 11, "Purpose": 2, "Language": 2, "http": 2, "//www.red": 2, - "-": 74, "lang.org/": 2, - "]": 114, + "#system": 1, + "global": 1, + "#either": 3, + "OS": 3, + "MacOSX": 2, + "History": 1, + "library": 1, + "cdecl": 3, + "add": 2, + "history": 2, + ";": 31, + "Add": 1, + "line": 9, + "to": 2, + "history.": 1, + "c": 7, + "string": 10, + "rl": 4, + "insert": 3, + "wrapper": 2, + "func": 1, + "count": 3, + "integer": 16, + "key": 3, + "return": 10, + "Windows": 2, + "system/platform": 1, + "ret": 5, + "AttachConsole": 1, + "if": 2, + "zero": 3, + "print": 5, + "halt": 2, + "SetConsoleTitle": 1, + "as": 4, + "string/rs": 1, + "head": 1, + "str": 4, + "bind": 1, + "tab": 3, + "input": 2, + "routine": 1, + "prompt": 3, + "/local": 1, + "len": 1, + "buffer": 4, + "string/load": 1, + "+": 1, + "length": 1, + "free": 1, + "byte": 3, + "ptr": 14, + "SET_RETURN": 1, + "(": 6, + ")": 4, + "delimiters": 1, + "function": 6, + "block": 3, + "list": 1, + "copy": 2, + "none": 1, + "foreach": 1, + "case": 2, + "escaped": 2, + "no": 2, + "in": 2, + "comment": 2, + "switch": 3, + "#": 8, + "mono": 3, + "mode": 3, + "cnt/1": 1, + "red": 1, + "eval": 1, + "code": 3, + "load/all": 1, + "unless": 1, + "tail": 1, + "set/any": 1, + "not": 1, + "script/2": 1, + "do": 2, + "skip": 1, + "script": 1, + "quit": 2, + "init": 1, + "console": 2, + "Console": 1, + "alpha": 1, + "version": 3, + "only": 1, + "ASCII": 1, + "supported": 1, + "Red/System": 1, "#include": 1, - "%": 2, "../common/FPU": 1, "configuration.reds": 1, - ";": 31, "C": 1, "types": 1, "#define": 2, @@ -58637,9 +58748,6 @@ "alias": 2, "struct": 5, "second": 1, - "integer": 16, - "(": 6, - ")": 4, "minute": 1, "hour": 1, "day": 1, @@ -58654,32 +58762,22 @@ "saving": 1, "Negative": 1, "unknown": 1, - "#either": 3, - "OS": 3, "#import": 1, "LIBC": 1, "file": 1, - "cdecl": 3, "Error": 1, "handling": 1, "form": 1, "error": 5, "Return": 1, "description.": 1, - "code": 3, - "return": 10, - "c": 7, - "string": 10, - "print": 5, "Print": 1, - "to": 2, "standard": 1, "output.": 1, "Memory": 1, "management": 1, "make": 1, "Allocate": 1, - "zero": 3, "filled": 1, "memory.": 1, "chunks": 1, @@ -58692,11 +58790,9 @@ "JVM": 6, "reserved0": 1, "int": 6, - "ptr": 14, "reserved1": 1, "reserved2": 1, "DestroyJavaVM": 1, - "function": 6, "JNICALL": 5, "vm": 5, "jint": 5, @@ -58704,10 +58800,8 @@ "penv": 3, "p": 3, "args": 2, - "byte": 3, "DetachCurrentThread": 1, "GetEnv": 1, - "version": 3, "AttachCurrentThreadAsDaemon": 1, "just": 2, "some": 2, @@ -58716,14 +58810,9 @@ "testing": 1, "#some": 1, "hash": 1, - "quit": 2, - "#": 8, - "{": 11, "FF0000": 3, - "}": 11, "FF000000": 2, "with": 4, - "tab": 3, "instead": 1, "of": 1, "space": 2, @@ -58739,7 +58828,6 @@ "which": 1, "interpreter": 1, "path": 1, - "copy": 2, "h": 1, "#if": 1, "type": 1, @@ -58754,7 +58842,6 @@ "@@": 1, "reposition": 1, "after": 1, - "the": 3, "catch": 1, "flag": 1, "CATCH_ALL": 1, @@ -58765,94 +58852,7 @@ "stack": 1, "aligned": 1, "on": 1, - "bit": 1, - "Red": 3, - "Author": 1, - "File": 1, - "console.red": 1, - "Tabs": 1, - "Rights": 1, - "License": 2, - "Distributed": 1, - "under": 1, - "Boost": 1, - "Software": 1, - "Version": 1, - "See": 1, - "https": 1, - "//github.com/dockimbel/Red/blob/master/BSL": 1, - "License.txt": 1, - "#system": 1, - "global": 1, - "MacOSX": 2, - "History": 1, - "library": 1, - "add": 2, - "history": 2, - "Add": 1, - "line": 9, - "history.": 1, - "rl": 4, - "insert": 3, - "wrapper": 2, - "func": 1, - "count": 3, - "key": 3, - "Windows": 2, - "system/platform": 1, - "ret": 5, - "AttachConsole": 1, - "if": 2, - "halt": 2, - "SetConsoleTitle": 1, - "as": 4, - "string/rs": 1, - "head": 1, - "str": 4, - "bind": 1, - "input": 2, - "routine": 1, - "prompt": 3, - "/local": 1, - "len": 1, - "buffer": 4, - "string/load": 1, - "+": 1, - "length": 1, - "free": 1, - "SET_RETURN": 1, - "delimiters": 1, - "block": 3, - "list": 1, - "none": 1, - "foreach": 1, - "case": 2, - "escaped": 2, - "no": 2, - "in": 2, - "comment": 2, - "switch": 3, - "mono": 3, - "mode": 3, - "cnt/1": 1, - "red": 1, - "eval": 1, - "load/all": 1, - "unless": 1, - "tail": 1, - "set/any": 1, - "not": 1, - "script/2": 1, - "do": 2, - "skip": 1, - "script": 1, - "init": 1, - "console": 2, - "Console": 1, - "alpha": 1, - "only": 1, - "ASCII": 1, - "supported": 1 + "bit": 1 }, "RobotFramework": { "***": 16, @@ -58863,104 +58863,53 @@ "cases": 2, "using": 4, "the": 9, - "keyword": 5, + "data": 2, "-": 16, "driven": 4, "testing": 2, "approach.": 2, "...": 28, - "All": 1, - "tests": 5, - "contain": 1, - "a": 4, - "workflow": 3, - "constructed": 1, - "from": 1, - "keywords": 3, - "in": 5, - "CalculatorLibrary": 5, - ".": 4, - "Creating": 1, - "new": 1, - "or": 1, - "editing": 1, - "existing": 1, - "is": 6, - "easy": 1, - "even": 1, - "for": 2, - "people": 2, - "without": 1, - "programming": 1, - "skills.": 1, - "This": 3, - "kind": 2, - "of": 3, - "style": 3, - "works": 3, - "well": 3, - "normal": 1, - "automation.": 1, - "If": 1, - "also": 2, - "business": 2, - "need": 3, - "to": 5, - "understand": 1, - "_gherkin_": 2, - "may": 1, - "work": 1, - "better.": 1, - "Library": 3, - "Test": 4, - "Cases": 3, - "Push": 16, - "button": 13, - "Result": 8, - "should": 9, - "be": 9, - "multiple": 2, - "buttons": 4, - "Simple": 1, - "calculation": 2, - "+": 6, - "Longer": 1, - "*": 4, - "/": 5, - "Clear": 1, - "C": 4, - "{": 15, - "EMPTY": 3, - "}": 15, - "#": 2, - "built": 1, - "variable": 1, - "data": 2, "Tests": 1, "use": 2, "Calculate": 3, + "keyword": 5, "created": 1, + "in": 5, "this": 1, "file": 1, "that": 5, "turn": 1, "uses": 1, + "keywords": 3, + "CalculatorLibrary": 5, + ".": 4, "An": 1, "exception": 1, + "is": 6, "last": 1, "has": 5, + "a": 4, "custom": 1, "_template": 1, "keyword_.": 1, "The": 2, + "style": 3, + "works": 3, + "well": 3, "when": 2, "you": 1, + "need": 3, + "to": 5, "repeat": 1, "same": 1, + "workflow": 3, + "multiple": 2, "times.": 1, "Notice": 1, "one": 1, + "of": 3, "these": 1, + "tests": 5, "fails": 1, "on": 1, "purpose": 1, @@ -58969,21 +58918,32 @@ "failures": 1, "look": 1, "like.": 1, + "Test": 4, "Template": 2, + "Library": 3, + "Cases": 3, "Expression": 1, "Expected": 1, "Addition": 2, + "+": 6, "Subtraction": 1, "Multiplication": 1, + "*": 4, "Division": 2, + "/": 5, "Failing": 1, "Calculation": 3, "error": 4, "[": 4, "]": 4, + "should": 9, "fail": 2, "kekkonen": 1, "Invalid": 2, + "button": 13, + "{": 15, + "EMPTY": 3, + "}": 15, "expression.": 1, "by": 3, "zero.": 1, @@ -58991,14 +58951,21 @@ "Arguments": 2, "expression": 5, "expected": 4, + "Push": 16, + "buttons": 4, + "C": 4, + "Result": 8, + "be": 9, "Should": 2, "cause": 1, "equal": 1, + "#": 2, "Using": 1, "BuiltIn": 1, "case": 1, "gherkin": 1, "syntax.": 1, + "This": 3, "similar": 1, "examples.": 1, "difference": 1, @@ -59012,6 +58979,8 @@ "embedded": 1, "into": 1, "names.": 1, + "kind": 2, + "_gherkin_": 2, "syntax": 1, "been": 3, "made": 1, @@ -59027,6 +58996,8 @@ "examples": 1, "easily": 1, "understood": 1, + "also": 2, + "business": 2, "people.": 1, "Given": 1, "calculator": 1, @@ -59039,59 +59010,38 @@ "Then": 1, "result": 2, "Calculator": 1, - "User": 2 + "User": 2, + "All": 1, + "contain": 1, + "constructed": 1, + "from": 1, + "Creating": 1, + "new": 1, + "or": 1, + "editing": 1, + "existing": 1, + "easy": 1, + "even": 1, + "for": 2, + "people": 2, + "without": 1, + "programming": 1, + "skills.": 1, + "normal": 1, + "automation.": 1, + "If": 1, + "understand": 1, + "may": 1, + "work": 1, + "better.": 1, + "Simple": 1, + "calculation": 2, + "Longer": 1, + "Clear": 1, + "built": 1, + "variable": 1 }, "Ruby": { - "object": 2, - "@user": 1, - "person": 1, - "attributes": 2, - "username": 1, - "email": 1, - "location": 1, - "created_at": 1, - "registered_at": 1, - "node": 2, - "role": 1, - "do": 38, - "|": 93, - "user": 1, - "user.is_admin": 1, - "end": 239, - "child": 1, - "phone_numbers": 1, - "pnumbers": 1, - "extends": 1, - "node_numbers": 1, - "u": 1, - "partial": 1, - "(": 244, - "u.phone_numbers": 1, - ")": 256, - "Jenkins": 1, - "Plugin": 1, - "Specification.new": 1, - "plugin": 3, - "plugin.name": 1, - "plugin.display_name": 1, - "plugin.version": 1, - "plugin.description": 1, - "plugin.url": 1, - "plugin.developed_by": 1, - "plugin.uses_repository": 1, - "github": 1, - "plugin.depends_on": 1, - "#plugin.depends_on": 1, - "task": 2, - "default": 2, - "puts": 12, - "load": 3, - "Dir": 4, - "[": 58, - "]": 58, - ".each": 4, - "{": 70, - "}": 70, "Pry.config.commands.import": 1, "Pry": 1, "ExtendedCommands": 1, @@ -59101,416 +59051,41 @@ "Pry.config.color": 1, "Pry.config.commands.alias_command": 1, "Pry.config.commands.command": 1, + "do": 38, + "|": 93, "*args": 17, "output.puts": 1, + "end": 239, "Pry.config.history.should_save": 1, "Pry.config.prompt": 1, + "[": 58, "proc": 2, + "{": 70, + "}": 70, + "]": 58, "Pry.plugins": 1, ".disable": 1, "appraise": 2, "gem": 3, - "SHEBANG#!python": 1, - "require": 58, + "load": 3, + "Dir": 4, + ".each": 4, + "plugin": 3, + "(": 244, + ")": 256, + "task": 2, + "default": 2, + "puts": 12, "module": 8, - "Sinatra": 2, + "Foo": 1, + "require": 58, "class": 7, - "Request": 2, - "<": 2, - "Rack": 1, - "def": 143, - "accept": 1, - "@env": 2, - "||": 22, - "begin": 9, - "entries": 1, - ".to_s.split": 1, - "entries.map": 1, - "e": 8, - "accept_entry": 1, - ".sort_by": 1, - "&": 31, - "last": 4, - ".map": 6, - "first": 1, - "preferred_type": 1, - "yield": 5, - "self.defer": 1, - "/": 34, - "match": 6, - "if": 72, - "keys": 6, - "<<": 15, - "else": 25, - "-": 34, - "#": 100, - "pattern": 1, - "elsif": 7, - "path.respond_to": 5, - "&&": 8, - "path": 16, - "path.keys": 1, - "names": 2, - "path.names": 1, - "raise": 17, - "TypeError": 1, - "URI": 3, - "URI.const_defined": 1, - "Parser": 1, - "Parser.new": 1, - "encoded": 1, - "char": 4, - "enc": 5, - "URI.escape": 1, - "public": 2, - "helpers": 3, - "data": 1, - "reset": 1, - "set": 36, - "environment": 2, - "ENV": 4, - "development": 6, - ".to_sym": 1, - "raise_errors": 1, - "Proc.new": 11, - "test": 5, - "dump_errors": 1, - "show_exceptions": 1, - "sessions": 1, - "logging": 2, - "protection": 1, - "true": 15, - "method_override": 4, - "use_code": 1, - "default_encoding": 1, - "add_charset": 1, - "%": 10, - "w": 6, - "javascript": 1, - "xml": 2, - "xhtml": 1, - "+": 47, - "json": 1, - "t": 3, - "settings.add_charset": 1, - "text": 3, - "//": 3, - "session_secret": 3, - "SecureRandom.hex": 1, - "rescue": 13, - "LoadError": 3, - "NotImplementedError": 1, - "Kernel.rand": 1, - "**256": 1, - "self": 11, - "alias_method": 2, - "methodoverride": 2, - "run": 2, - "start": 7, - "server": 11, - "via": 1, - "at": 1, - "exit": 2, - "hook": 9, - "running": 2, - "is": 3, - "the": 8, - "built": 1, - "in": 3, - "now": 1, - "http": 1, - "webrick": 1, - "bind": 1, - "port": 4, - "ruby_engine": 6, - "defined": 1, - "RUBY_ENGINE": 2, - "server.unshift": 6, - "ruby_engine.nil": 1, - "absolute_redirects": 1, - "prefixed_redirects": 1, - "empty_path_info": 1, - "nil": 21, - "app_file": 4, - "root": 5, - "File.expand_path": 1, - "File.dirname": 4, - "views": 1, - "File.join": 6, - "reload_templates": 1, - "lock": 1, - "threaded": 1, - "public_folder": 3, - "static": 1, - "File.exist": 1, - "static_cache_control": 1, - "error": 3, - "Exception": 1, - "response.status": 1, - "content_type": 3, - "configure": 2, - "get": 2, - "filename": 2, - "__FILE__": 3, - "png": 1, - "send_file": 1, - "NotFound": 1, - "HTML": 2, - ".gsub": 5, - "": 1, - "html": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "

": 1, - "doesn": 1, - "rsquo": 1, - "know": 1, - "this": 2, - "ditty.": 1, - "

": 1, - "": 1, - "src=": 1, - "
": 1, - "id=": 1, - "Try": 1, - "
": 1,
-      "request.request_method.downcase": 1,
-      "n": 4,
-      "nend": 1,
-      "
": 1, - "
": 1, - "": 1, - "": 1, - "Application": 2, - "Base": 2, - "super": 3, - "unless": 15, - "self.register": 2, - "extensions": 6, - "block": 30, - "nodoc": 3, - "added_methods": 2, - "extensions.map": 1, - "m": 3, - "m.public_instance_methods": 1, - ".flatten": 1, - "Delegator.delegate": 1, - "Delegator": 1, - "self.delegate": 1, - "methods": 1, - "methods.each": 1, - "method_name": 5, - "define_method": 1, - "return": 25, - "args": 5, - "respond_to": 1, - "Delegator.target.send": 1, - "private": 3, - "delegate": 1, - "patch": 3, - "put": 1, - "post": 1, - "delete": 1, - "head": 3, - "options": 3, - "template": 1, - "layout": 1, - "before": 1, - "after": 1, - "not_found": 1, - "mime_type": 1, - "enable": 1, - "disable": 1, - "use": 1, - "production": 1, - "settings": 2, - "attr_accessor": 2, - "target": 1, - "self.target": 1, - "Wrapper": 1, - "initialize": 2, - "stack": 2, - "instance": 2, - "@stack": 1, - "@instance": 2, - "@instance.settings": 1, - "call": 1, - "env": 2, - "@stack.call": 1, - "inspect": 2, - "self.new": 1, - "base": 4, - "Class.new": 2, - "base.class_eval": 1, - "block_given": 5, - "Delegator.target.register": 1, - "self.helpers": 1, - "Delegator.target.helpers": 1, - "self.use": 1, - "Delegator.target.use": 1, - "ActiveSupport": 1, - "Inflector": 1, - "extend": 2, - "pluralize": 3, - "word": 10, - "apply_inflections": 3, - "inflections.plurals": 1, - "singularize": 2, - "inflections.singulars": 1, - "camelize": 2, - "term": 1, - "uppercase_first_letter": 2, - "string": 4, - "term.to_s": 1, - "string.sub": 2, - "a": 10, - "z": 7, - "d": 6, - "*/": 1, - "inflections.acronyms": 1, - ".capitalize": 1, - "inflections.acronym_regex": 2, - "b": 4, - "A": 5, - "Z_": 1, - ".downcase": 2, - "string.gsub": 1, - "_": 2, - "*": 3, - "/i": 2, - "underscore": 3, - "camel_cased_word": 6, - "camel_cased_word.to_s.dup": 1, - "word.gsub": 4, - "Za": 1, - "Z": 3, - "word.tr": 1, - "word.downcase": 1, - "humanize": 2, - "lower_case_and_underscored_word": 1, - "result": 8, - "lower_case_and_underscored_word.to_s.dup": 1, - "inflections.humans.each": 1, - "rule": 4, - "replacement": 4, - "break": 4, - "result.sub": 2, - "result.gsub": 2, - "/_id": 1, - "result.tr": 1, - "w/": 1, - ".upcase": 1, - "titleize": 1, - "": 1, - "capitalize": 1, - "Create": 1, - "name": 51, - "of": 1, - "table": 2, - "like": 1, - "Rails": 1, - "does": 1, - "for": 1, - "models": 1, - "to": 1, - "This": 1, - "method": 4, - "uses": 1, - "on": 2, - "RawScaledScorer": 1, - "tableize": 2, - "class_name": 2, - "classify": 1, - "table_name": 1, - "table_name.to_s.sub": 1, - "/.*": 1, - "./": 1, - "dasherize": 1, - "underscored_word": 1, - "underscored_word.tr": 1, - "demodulize": 1, - "path.to_s": 3, - "i": 2, - "path.rindex": 2, - "..": 1, - "deconstantize": 1, - "implementation": 1, - "based": 1, - "one": 1, - "facets": 1, - "id": 1, - "outside": 2, - "inside": 2, - "s": 2, - "owned": 1, - "constant": 4, - "constant.ancestors.inject": 1, - "const": 3, - "ancestor": 3, - "Object": 1, - "ancestor.const_defined": 1, - "constant.const_get": 1, - "safe_constantize": 1, - "constantize": 1, - "NameError": 2, - "e.message": 2, - "uninitialized": 1, - "wrong": 1, - "const_regexp": 3, - "e.name.to_s": 1, - "camel_cased_word.to_s": 1, - "ArgumentError": 1, - "/not": 1, - "missing": 1, - "ordinal": 1, - "number": 2, - ".include": 1, - "number.to_i.abs": 2, - "case": 5, - "when": 11, - "ordinalize": 1, - "parts": 1, - "camel_cased_word.split": 1, - "parts.pop": 1, - "parts.reverse.inject": 1, - "acc": 2, - "part": 1, - "part.empty": 1, - "rules": 1, - "word.to_s.dup": 1, - "word.empty": 1, - "inflections.uncountables.include": 1, - "result.downcase": 1, - "Z/": 1, - "rules.each": 1, - "SHEBANG#!macruby": 1, - "Grit": 1, "Formula": 2, "include": 3, "FileUtils": 1, "attr_reader": 5, + "name": 51, + "path": 16, "url": 12, "version": 10, "homepage": 2, @@ -59518,11 +59093,16 @@ "downloader": 6, "standard": 2, "unstable": 2, + "head": 3, "bottle_version": 2, "bottle_url": 3, "bottle_sha1": 2, "buildpath": 1, + "def": 143, + "initialize": 2, + "nil": 21, "set_instance_variable": 12, + "if": 72, "@head": 4, "and": 6, "not": 3, @@ -59532,10 +59112,12 @@ "@version": 10, "@spec_to_use": 4, "@unstable": 2, + "else": 25, "@standard.nil": 1, "SoftwareSpecification.new": 3, "@specs": 3, "@standard": 3, + "raise": 17, "@url.nil": 1, "@name": 3, "validate_variable": 7, @@ -59543,6 +59125,7 @@ "path.nil": 1, "self.class.path": 1, "Pathname.new": 3, + "||": 22, "@spec_to_use.detect_version": 1, "CHECKSUM_TYPES.each": 1, "type": 10, @@ -59552,10 +59135,14 @@ "@spec_to_use.specs": 1, "@bottle_url": 2, "bottle_base_url": 1, + "+": 47, "bottle_filename": 1, + "self": 11, "@bottle_sha1": 2, "installed": 2, + "return": 25, "installed_prefix.children.length": 1, + "rescue": 13, "explicitly_requested": 1, "ARGV.named.empty": 1, "ARGV.formulae.include": 1, @@ -59568,6 +59155,7 @@ "head_prefix.directory": 1, "prefix": 14, "rack": 1, + ";": 41, "prefix.parent": 1, "bin": 1, "doc": 1, @@ -59595,6 +59183,7 @@ "cached_download": 1, "@downloader.cached_location": 1, "caveats": 1, + "options": 3, "patches": 2, "keg_only": 2, "self.class.keg_only_reason": 1, @@ -59602,6 +59191,7 @@ "cc": 3, "self.class.cc_failures.nil": 1, "Compiler.new": 1, + "unless": 15, "cc.is_a": 1, "Compiler": 1, "self.class.cc_failures.find": 1, @@ -59613,6 +59203,7 @@ "failure.build": 1, "cc.build": 1, "skip_clean": 2, + "true": 15, "self.class.skip_clean_all": 1, "to_check": 2, "path.relative_path_from": 1, @@ -59620,18 +59211,28 @@ "self.class.skip_clean_paths.include": 1, "brew": 2, "stage": 2, + "begin": 9, + "patch": 3, + "yield": 5, "Interrupt": 2, "RuntimeError": 1, "SystemCallError": 1, + "e": 8, + "#": 100, "don": 1, "config.log": 2, + "t": 3, + "a": 10, "std_autotools": 1, "variant": 1, "because": 1, "autotools": 1, + "is": 3, "lot": 1, "std_cmake_args": 1, + "%": 10, "W": 1, + "-": 34, "DCMAKE_INSTALL_PREFIX": 1, "DCMAKE_BUILD_TYPE": 1, "None": 1, @@ -59647,11 +59248,15 @@ "camelcase": 1, "it": 1, "name.capitalize.gsub": 1, + "/": 34, "_.": 1, + "s": 2, "zA": 1, "Z0": 1, "upcase": 1, + ".gsub": 5, "self.names": 1, + ".map": 6, "f": 11, "File.basename": 2, ".sort": 2, @@ -59660,10 +59265,13 @@ "self.map": 1, "rv": 3, "each": 1, + "<<": 15, "self.each": 1, "names.each": 1, + "n": 4, "Formula.factory": 2, "onoe": 2, + "inspect": 2, "self.aliases": 1, "self.canonical_name": 1, "name.to_s": 3, @@ -59678,10 +59286,12 @@ "r": 3, ".": 3, "tapd": 1, + ".downcase": 2, "tapd.find_formula": 1, "relative_pathname": 1, "relative_pathname.stem.to_s": 1, "tapd.directory": 1, + "elsif": 7, "formula_with_that_name.file": 1, "formula_with_that_name.readable": 1, "possible_alias.file": 1, @@ -59691,6 +59301,7 @@ "self.factory": 1, "https": 1, "ftp": 1, + "//": 3, ".basename": 1, "target_file": 6, "name.basename": 1, @@ -59704,16 +59315,20 @@ ".rb": 1, "path.stem": 1, "from_path": 1, + "path.to_s": 3, "Formula.path": 1, "from_name": 2, "klass_name": 2, "klass": 16, "Object.const_get": 1, + "NameError": 2, + "LoadError": 3, "klass.new": 2, "FormulaUnavailableError.new": 1, "tap": 1, "path.realpath.to_s": 1, "/Library/Taps/": 1, + "w": 6, "self.path": 1, "mirrors": 4, "self.class.mirrors": 1, @@ -59740,9 +59355,11 @@ "ohai": 3, ".strip": 1, "removed_ENV_variables": 2, + "case": 5, "args.empty": 1, "cmd.split": 1, ".first": 1, + "when": 11, "ENV.remove_cc_etc": 1, "safe_system": 4, "rd": 1, @@ -59757,6 +59374,7 @@ "arg": 1, "arg.to_s": 1, "exec": 2, + "exit": 2, "never": 1, "gets": 1, "here": 1, @@ -59772,9 +59390,12 @@ "removed_ENV_variables.each": 1, "key": 8, "value": 4, + "ENV": 4, "ENV.kind_of": 1, "Hash": 3, "BuildError.new": 1, + "args": 5, + "public": 2, "fetch": 2, "install_bottle": 1, "CurlBottleDownloadStrategy.new": 1, @@ -59812,11 +59433,13 @@ "incomplete": 1, "download": 1, "remove": 1, + "the": 8, "file": 1, "above.": 1, "supplied.upcase": 1, "hash.upcase": 1, "opoo": 1, + "private": 3, "CHECKSUM_TYPES": 2, "sha1": 4, "sha256": 1, @@ -59837,6 +59460,7 @@ "gzip": 1, "p.compressed_filename": 2, "bzip2": 1, + "*": 3, "p.patch_args": 1, "v": 2, "v.to_s.empty": 1, @@ -59845,6 +59469,7 @@ "self.class.send": 1, "instance_variable_set": 1, "self.method_added": 1, + "method": 4, "self.attr_rw": 1, "attrs": 1, "attrs.each": 1, @@ -59859,6 +59484,9 @@ "skip_clean_all": 2, "cc_failures": 1, "stable": 2, + "&": 31, + "block": 30, + "block_given": 5, "instance_eval": 2, "ARGV.build_devel": 2, "devel": 1, @@ -59868,6 +59496,7 @@ "release": 1, "bottle": 1, "bottle_block": 1, + "Class.new": 2, "self.version": 1, "self.url": 1, "self.sha1": 1, @@ -59877,6 +59506,7 @@ "String": 2, "MacOS.lion": 1, "self.data": 1, + "&&": 8, "bottle_block.instance_eval": 1, "@bottle_version": 1, "bottle_block.data": 1, @@ -59904,15 +59534,209 @@ "@cc_failures": 2, "CompilerFailures.new": 1, "CompilerFailure.new": 2, + "Grit": 1, + "ActiveSupport": 1, + "Inflector": 1, + "extend": 2, + "pluralize": 3, + "word": 10, + "apply_inflections": 3, + "inflections.plurals": 1, + "singularize": 2, + "inflections.singulars": 1, + "camelize": 2, + "term": 1, + "uppercase_first_letter": 2, + "string": 4, + "term.to_s": 1, + "string.sub": 2, + "z": 7, + "d": 6, + "*/": 1, + "inflections.acronyms": 1, + ".capitalize": 1, + "inflections.acronym_regex": 2, + "b": 4, + "A": 5, + "Z_": 1, + "string.gsub": 1, + "_": 2, + "/i": 2, + "underscore": 3, + "camel_cased_word": 6, + "camel_cased_word.to_s.dup": 1, + "word.gsub": 4, + "Za": 1, + "Z": 3, + "word.tr": 1, + "word.downcase": 1, + "humanize": 2, + "lower_case_and_underscored_word": 1, + "result": 8, + "lower_case_and_underscored_word.to_s.dup": 1, + "inflections.humans.each": 1, + "rule": 4, + "replacement": 4, + "break": 4, + "result.sub": 2, + "result.gsub": 2, + "/_id": 1, + "result.tr": 1, + "match": 6, + "w/": 1, + ".upcase": 1, + "titleize": 1, + "": 1, + "capitalize": 1, + "Create": 1, + "of": 1, + "table": 2, + "like": 1, + "Rails": 1, + "does": 1, + "for": 1, + "models": 1, + "to": 1, + "names": 2, + "This": 1, + "uses": 1, + "on": 2, + "last": 4, + "in": 3, + "RawScaledScorer": 1, + "tableize": 2, + "class_name": 2, + "classify": 1, + "table_name": 1, + "table_name.to_s.sub": 1, + "/.*": 1, + "./": 1, + "dasherize": 1, + "underscored_word": 1, + "underscored_word.tr": 1, + "demodulize": 1, + "i": 2, + "path.rindex": 2, + "..": 1, + "deconstantize": 1, + "implementation": 1, + "based": 1, + "one": 1, + "facets": 1, + "id": 1, + "outside": 2, + "inside": 2, + "owned": 1, + "constant": 4, + "constant.ancestors.inject": 1, + "const": 3, + "ancestor": 3, + "Object": 1, + "ancestor.const_defined": 1, + "constant.const_get": 1, + "safe_constantize": 1, + "constantize": 1, + "e.message": 2, + "uninitialized": 1, + "wrong": 1, + "const_regexp": 3, + "e.name.to_s": 1, + "camel_cased_word.to_s": 1, + "ArgumentError": 1, + "/not": 1, + "missing": 1, + "ordinal": 1, + "number": 2, + ".include": 1, + "number.to_i.abs": 2, + "ordinalize": 1, + "nodoc": 3, + "parts": 1, + "camel_cased_word.split": 1, + "parts.pop": 1, + "parts.reverse.inject": 1, + "acc": 2, + "part": 1, + "part.empty": 1, + "rules": 1, + "word.to_s.dup": 1, + "word.empty": 1, + "inflections.uncountables.include": 1, + "result.downcase": 1, + "Z/": 1, + "rules.each": 1, + ".unshift": 1, + "File.dirname": 4, + "__FILE__": 3, + "For": 1, + "use/testing": 1, + "no": 1, + "require_all": 4, + "glob": 2, + "File.join": 6, + "Jekyll": 3, + "VERSION": 1, + "DEFAULTS": 2, + "Dir.pwd": 3, + "self.configuration": 1, + "override": 3, + "source": 2, + "config_file": 2, + "config": 3, + "YAML.load_file": 1, + "config.is_a": 1, + "stdout.puts": 1, + "err": 1, + "stderr.puts": 2, + "err.to_s": 1, + "DEFAULTS.deep_merge": 1, + ".deep_merge": 1, + "Jenkins": 1, + "Plugin": 1, + "Specification.new": 1, + "plugin.name": 1, + "plugin.display_name": 1, + "plugin.version": 1, + "plugin.description": 1, + "plugin.url": 1, + "plugin.developed_by": 1, + "plugin.uses_repository": 1, + "github": 1, + "plugin.depends_on": 1, + "#plugin.depends_on": 1, + "SHEBANG#!macruby": 1, + "object": 2, + "@user": 1, + "person": 1, + "attributes": 2, + "username": 1, + "email": 1, + "location": 1, + "created_at": 1, + "registered_at": 1, + "node": 2, + "role": 1, + "user": 1, + "user.is_admin": 1, + "child": 1, + "phone_numbers": 1, + "pnumbers": 1, + "extends": 1, + "node_numbers": 1, + "u": 1, + "partial": 1, + "u.phone_numbers": 1, "Resque": 3, "Helpers": 1, "redis": 7, + "server": 11, "/redis": 1, "Redis.connect": 2, "thread_safe": 2, "namespace": 3, "server.split": 2, "host": 3, + "port": 4, "db": 3, "Redis.new": 1, "resque": 2, @@ -59947,6 +59771,7 @@ "after_fork": 2, "@after_fork": 2, "to_s": 1, + "attr_accessor": 2, "inline": 3, "alias": 1, "push": 1, @@ -59955,8 +59780,10 @@ "pop": 1, ".pop": 1, "ThreadError": 1, + "size": 3, ".size": 1, "peek": 1, + "start": 7, "count": 5, ".slice": 1, "list_range": 1, @@ -59976,6 +59803,7 @@ "before_hooks": 2, "Plugin.before_enqueue_hooks": 1, ".collect": 2, + "hook": 9, "klass.send": 4, "before_hooks.any": 2, "Job.create": 1, @@ -60005,6 +59833,7 @@ "worker.unregister_worker": 1, "pending": 1, "queues.inject": 1, + "m": 3, "k": 2, "processed": 2, "Stat": 2, @@ -60012,34 +59841,205 @@ "workers.size.to_i": 1, "working.size": 1, "servers": 1, + "environment": 2, + "keys": 6, "redis.keys": 1, "key.sub": 1, "SHEBANG#!ruby": 2, - ".unshift": 1, - "For": 1, - "use/testing": 1, - "no": 1, - "require_all": 4, - "glob": 2, - "Jekyll": 3, - "VERSION": 1, - "DEFAULTS": 2, - "Dir.pwd": 3, - "self.configuration": 1, - "override": 3, - "source": 2, - "config_file": 2, - "config": 3, - "YAML.load_file": 1, - "config.is_a": 1, - "stdout.puts": 1, - "err": 1, - "stderr.puts": 2, - "err.to_s": 1, - "DEFAULTS.deep_merge": 1, - ".deep_merge": 1, "SHEBANG#!rake": 1, - "Foo": 1 + "Sinatra": 2, + "Request": 2, + "<": 2, + "Rack": 1, + "accept": 1, + "@env": 2, + "entries": 1, + ".to_s.split": 1, + "entries.map": 1, + "accept_entry": 1, + ".sort_by": 1, + "first": 1, + "preferred_type": 1, + "self.defer": 1, + "pattern": 1, + "path.respond_to": 5, + "path.keys": 1, + "path.names": 1, + "TypeError": 1, + "URI": 3, + "URI.const_defined": 1, + "Parser": 1, + "Parser.new": 1, + "encoded": 1, + "char": 4, + "enc": 5, + "URI.escape": 1, + "helpers": 3, + "data": 1, + "reset": 1, + "set": 36, + "development": 6, + ".to_sym": 1, + "raise_errors": 1, + "Proc.new": 11, + "test": 5, + "dump_errors": 1, + "show_exceptions": 1, + "sessions": 1, + "logging": 2, + "protection": 1, + "method_override": 4, + "use_code": 1, + "default_encoding": 1, + "add_charset": 1, + "javascript": 1, + "xml": 2, + "xhtml": 1, + "json": 1, + "settings.add_charset": 1, + "text": 3, + "session_secret": 3, + "SecureRandom.hex": 1, + "NotImplementedError": 1, + "Kernel.rand": 1, + "**256": 1, + "alias_method": 2, + "methodoverride": 2, + "run": 2, + "via": 1, + "at": 1, + "running": 2, + "built": 1, + "now": 1, + "http": 1, + "webrick": 1, + "bind": 1, + "ruby_engine": 6, + "defined": 1, + "RUBY_ENGINE": 2, + "server.unshift": 6, + "ruby_engine.nil": 1, + "absolute_redirects": 1, + "prefixed_redirects": 1, + "empty_path_info": 1, + "app_file": 4, + "root": 5, + "File.expand_path": 1, + "views": 1, + "reload_templates": 1, + "lock": 1, + "threaded": 1, + "public_folder": 3, + "static": 1, + "File.exist": 1, + "static_cache_control": 1, + "error": 3, + "Exception": 1, + "response.status": 1, + "content_type": 3, + "configure": 2, + "get": 2, + "filename": 2, + "png": 1, + "send_file": 1, + "NotFound": 1, + "HTML": 2, + "": 1, + "html": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "

": 1, + "doesn": 1, + "rsquo": 1, + "know": 1, + "this": 2, + "ditty.": 1, + "

": 1, + "": 1, + "src=": 1, + "
": 1, + "id=": 1, + "Try": 1, + "
": 1,
+      "request.request_method.downcase": 1,
+      "nend": 1,
+      "
": 1, + "
": 1, + "": 1, + "": 1, + "Application": 2, + "Base": 2, + "super": 3, + "self.register": 2, + "extensions": 6, + "added_methods": 2, + "extensions.map": 1, + "m.public_instance_methods": 1, + ".flatten": 1, + "Delegator.delegate": 1, + "Delegator": 1, + "self.delegate": 1, + "methods": 1, + "methods.each": 1, + "method_name": 5, + "define_method": 1, + "respond_to": 1, + "Delegator.target.send": 1, + "delegate": 1, + "put": 1, + "post": 1, + "delete": 1, + "template": 1, + "layout": 1, + "before": 1, + "after": 1, + "not_found": 1, + "mime_type": 1, + "enable": 1, + "disable": 1, + "use": 1, + "production": 1, + "settings": 2, + "target": 1, + "self.target": 1, + "Wrapper": 1, + "stack": 2, + "instance": 2, + "@stack": 1, + "@instance": 2, + "@instance.settings": 1, + "call": 1, + "env": 2, + "@stack.call": 1, + "self.new": 1, + "base": 4, + "base.class_eval": 1, + "Delegator.target.register": 1, + "self.helpers": 1, + "Delegator.target.helpers": 1, + "self.use": 1, + "Delegator.target.use": 1, + "SHEBANG#!python": 1 }, "Rust": { "//": 20, @@ -60466,9 +60466,23 @@ "port2.recv": 1 }, "SAS": { + "libname": 1, + "source": 1, + "data": 6, + "work.working_copy": 5, + ";": 22, + "set": 3, + "source.original_file.sas7bdat": 1, + "run": 6, + "if": 2, + "Purge": 1, + "then": 2, + "delete": 1, + "ImportantVariable": 1, + ".": 1, + "MissingFlag": 1, "proc": 2, "surveyselect": 1, - "data": 6, "work.data": 1, "out": 2, "work.boot": 2, @@ -60478,10 +60492,8 @@ "seed": 2, "sampsize": 1, "outhits": 1, - ";": 22, "samplingunit": 1, "Site": 1, - "run": 6, "PROC": 1, "MI": 1, "work.bootmi": 2, @@ -60498,19 +60510,7 @@ "model": 1, "Outcome": 1, "/": 1, - "risklimits": 1, - "libname": 1, - "source": 1, - "work.working_copy": 5, - "set": 3, - "source.original_file.sas7bdat": 1, - "if": 2, - "Purge": 1, - "then": 2, - "delete": 1, - "ImportantVariable": 1, - ".": 1, - "MissingFlag": 1 + "risklimits": 1 }, "SCSS": { "blue": 4, @@ -60569,58 +60569,14 @@ "rv": 1, "]": 1, "END": 1, - "if": 1, - "not": 5, - "exists": 1, - "select": 10, - "from": 2, - "sysobjects": 1, - "where": 2, - "name": 3, - "and": 1, - "type": 3, - "in": 1, - "exec": 1, - "%": 2, - "object_ddl": 1, - "go": 1, - "create": 2, - "table": 17, - "FILIAL": 10, - "NUMBER": 1, - "null": 4, - "title_ua": 1, - "VARCHAR2": 4, - "title_ru": 1, - "title_eng": 1, - "remove_date": 1, - "DATE": 2, - "modify_date": 1, - "modify_user": 1, - ";": 31, - "alter": 1, - "add": 1, - "constraint": 1, - "PK_ID": 1, - "primary": 1, - "key": 1, - "grant": 8, - "on": 8, - "to": 8, - "ATOLL": 1, - "CRAMER2GIS": 1, - "DMS": 1, - "HPSM2GIS": 1, - "PLANMONITOR": 1, - "SIEBEL": 1, - "VBIS": 1, - "VPORTAL": 1, "SHOW": 2, "WARNINGS": 2, + ";": 31, "-": 496, "Table": 9, "structure": 9, "for": 15, + "table": 17, "articles": 4, "TABLE": 10, "NOT": 46, @@ -60671,6 +60627,7 @@ "tries": 1, "UNIQUE": 4, "classes": 4, + "name": 3, "date_created": 6, "archive": 2, "class_challenges": 4, @@ -60684,8 +60641,51 @@ "joined": 2, "last_visit": 2, "is_activated": 2, + "type": 3, "token": 3, "user_has_challenge_token": 3, + "create": 2, + "FILIAL": 10, + "NUMBER": 1, + "not": 5, + "null": 4, + "title_ua": 1, + "VARCHAR2": 4, + "title_ru": 1, + "title_eng": 1, + "remove_date": 1, + "DATE": 2, + "modify_date": 1, + "modify_user": 1, + "alter": 1, + "add": 1, + "constraint": 1, + "PK_ID": 1, + "primary": 1, + "key": 1, + "grant": 8, + "select": 10, + "on": 8, + "to": 8, + "ATOLL": 1, + "CRAMER2GIS": 1, + "DMS": 1, + "HPSM2GIS": 1, + "PLANMONITOR": 1, + "SIEBEL": 1, + "VBIS": 1, + "VPORTAL": 1, + "if": 1, + "exists": 1, + "from": 2, + "sysobjects": 1, + "where": 2, + "and": 1, + "in": 1, + "exec": 1, + "%": 2, + "object_ddl": 1, + "go": 1, "use": 1, "translog": 1, "VIEW": 1, @@ -60697,12 +60697,20 @@ "now": 1 }, "STON": { - "TestDomainObject": 1, - "{": 15, - "#created": 1, - "DateAndTime": 2, "[": 11, "]": 11, + "{": 15, + "#a": 1, + "#b": 1, + "}": 15, + "Rectangle": 1, + "#origin": 1, + "Point": 2, + "-": 2, + "#corner": 1, + "TestDomainObject": 1, + "#created": 1, + "DateAndTime": 2, "#modified": 1, "#integer": 1, "#float": 1, @@ -60717,12 +60725,6 @@ "ByteArray": 1, "#boolean": 1, "false": 1, - "}": 15, - "Rectangle": 1, - "#origin": 1, - "Point": 2, - "-": 2, - "#corner": 1, "ZnResponse": 1, "#headers": 2, "ZnHeaders": 1, @@ -60742,9 +60744,7 @@ "ZnStatusLine": 1, "#version": 1, "#code": 1, - "#reason": 1, - "#a": 1, - "#b": 1 + "#reason": 1 }, "Sass": { "blue": 7, @@ -60770,20 +60770,58 @@ ")": 1 }, "Scala": { + "SHEBANG#!sh": 2, + "exec": 2, + "scala": 2, + "#": 2, + "object": 3, + "Beers": 1, + "extends": 1, + "Application": 1, + "{": 21, + "def": 10, + "bottles": 3, + "(": 67, + "qty": 12, + "Int": 11, + "f": 4, + "String": 5, + ")": 67, + "//": 29, + "higher": 1, + "-": 5, + "order": 1, + "functions": 2, + "match": 2, + "case": 8, + "+": 49, + "x": 3, + "}": 22, + "beers": 3, + "sing": 3, + "implicit": 3, + "song": 3, + "takeOne": 2, + "nextQty": 2, + "nested": 1, + "if": 2, + "else": 2, + "refrain": 2, + ".capitalize": 1, + "tail": 1, + "recursion": 1, + "val": 6, + "headOfSong": 1, + "println": 8, + "parameter": 1, "name": 4, "version": 1, "organization": 1, "libraryDependencies": 3, - "+": 49, "%": 12, "Seq": 3, - "(": 67, - ")": 67, - "{": 21, - "val": 6, "libosmVersion": 4, "from": 1, - "}": 22, "maxErrors": 1, "pollInterval": 1, "javacOptions": 1, @@ -60883,20 +60921,6 @@ "Credentials": 2, "Path.userHome": 1, "/": 2, - "SHEBANG#!sh": 2, - "exec": 2, - "scala": 2, - "#": 2, - "object": 3, - "HelloWorld": 1, - "def": 10, - "main": 1, - "args": 1, - "Array": 1, - "[": 11, - "String": 5, - "]": 11, - "println": 8, "math.random": 1, "scala.language.postfixOps": 1, "scala.util._": 1, @@ -60915,14 +60939,14 @@ "ExecutionException": 1, "blocking": 3, "node11": 1, - "//": 29, "Welcome": 1, "Scala": 1, "worksheet": 1, "retry": 3, + "[": 11, "T": 8, + "]": 11, "n": 3, - "Int": 11, "block": 8, "Future": 5, "ns": 1, @@ -60947,7 +60971,6 @@ "i.toString": 5, "ri": 2, "onComplete": 1, - "case": 8, "s": 1, "s.toString": 1, "t": 1, @@ -60960,33 +60983,10 @@ "Iteration": 5, "java.lang.Exception": 1, "Hi": 10, - "-": 5, - "Beers": 1, - "extends": 1, - "Application": 1, - "bottles": 3, - "qty": 12, - "f": 4, - "higher": 1, - "order": 1, - "functions": 2, - "match": 2, - "x": 3, - "beers": 3, - "sing": 3, - "implicit": 3, - "song": 3, - "takeOne": 2, - "nextQty": 2, - "nested": 1, - "if": 2, - "else": 2, - "refrain": 2, - ".capitalize": 1, - "tail": 1, - "recursion": 1, - "headOfSong": 1, - "parameter": 1 + "HelloWorld": 1, + "main": 1, + "args": 1, + "Array": 1 }, "Scaml": { "%": 1, @@ -60996,37 +60996,25 @@ }, "Scheme": { "(": 366, - "define": 30, - "-": 192, - "library": 1, - "libs": 1, - "basic": 2, - ")": 380, - "export": 1, - "list2": 2, - "x": 10, - "begin": 2, - ".": 2, - "objs": 2, - "should": 1, - "not": 1, - "be": 1, - "exported": 1, "import": 1, "rnrs": 1, + ")": 380, "only": 1, "surfage": 4, "s1": 1, "lists": 1, "filter": 4, + "-": 192, "map": 4, "gl": 12, "glut": 2, "dharmalab": 2, "records": 1, + "define": 30, "record": 5, "type": 5, "math": 1, + "basic": 2, "agave": 4, "glu": 1, "compat": 1, @@ -61046,6 +61034,7 @@ ";": 1684, "utilities": 1, "say": 9, + ".": 2, "args": 2, "for": 7, "each": 7, @@ -61054,6 +61043,7 @@ "translate": 6, "p": 6, "glTranslated": 1, + "x": 10, "y": 3, "radians": 8, "/": 7, @@ -61166,6 +61156,7 @@ "when": 5, "<=>": 3, "distance": 3, + "begin": 2, "1": 2, "f": 1, "append": 4, @@ -61190,25 +61181,33 @@ "s": 1, "space": 1, "cons": 1, - "glutMainLoop": 1 + "glutMainLoop": 1, + "library": 1, + "libs": 1, + "export": 1, + "list2": 2, + "objs": 2, + "should": 1, + "not": 1, + "be": 1, + "exported": 1 }, "Scilab": { - "disp": 1, - "(": 7, - "%": 4, - "pi": 3, - ")": 7, - ";": 7, "function": 1, "[": 1, "a": 4, "b": 4, "]": 1, "myfunction": 1, + "(": 7, "d": 2, "e": 4, "f": 2, + ")": 7, "+": 5, + "%": 4, + "pi": 3, + ";": 7, "cos": 1, "cosh": 1, "if": 1, @@ -61221,21 +61220,39 @@ "end": 1, "myvar": 1, "endfunction": 1, + "disp": 1, "assert_checkequal": 1, "assert_checkfalse": 1 }, "Shell": { - "SHEBANG#!sh": 2, + "SHEBANG#!bash": 8, + "typeset": 5, + "-": 391, + "i": 2, + "n": 22, + "bottles": 6, + "no": 16, + "while": 3, + "[": 85, + "]": 85, + "do": 8, "echo": 71, + "case": 9, + "{": 63, + "}": 61, + "in": 25, + ")": 154, + "%": 5, + "s": 14, + ";": 138, + "esac": 7, + "done": 8, + "exit": 10, + "/usr/bin/clear": 2, "##": 28, "if": 39, - "[": 85, - "-": 391, "z": 12, - "]": 85, - ";": 138, "then": 41, - "n": 22, "export": 25, "SCREENDIR": 2, "fi": 34, @@ -61254,9 +61271,7 @@ "/usr/share/man": 2, "Random": 2, "ENV...": 2, - "{": 63, "TERM": 4, - "}": 61, "COLORTERM": 2, "CLICOLOR": 2, "#": 53, @@ -61270,80 +61285,6 @@ "r": 17, "&&": 65, ".": 5, - "fpath": 6, - "(": 107, - "HOME/.zsh/func": 2, - ")": 154, - "typeset": 5, - "U": 2, - "dirpersiststore": 2, - "##############################################################################": 16, - "#Import": 2, - "the": 17, - "shell": 4, - "agnostic": 2, - "Bash": 3, - "or": 3, - "Zsh": 2, - "environment": 2, - "config": 4, - "source": 7, - "/.profile": 2, - "HISTSIZE": 2, - "#How": 2, - "many": 2, - "lines": 2, - "of": 6, - "history": 18, - "keep": 3, - "in": 25, - "memory": 3, - "HISTFILE": 2, - "/.zsh_history": 2, - "#Where": 2, - "save": 4, - "disk": 5, - "SAVEHIST": 2, - "#Number": 2, - "entries": 2, - "HISTDUP": 2, - "erase": 2, - "#Erase": 2, - "duplicates": 2, - "file": 9, - "setopt": 8, - "appendhistory": 2, - "#Append": 2, - "no": 16, - "overwriting": 2, - "sharehistory": 2, - "#Share": 2, - "across": 2, - "terminals": 2, - "incappendhistory": 2, - "#Immediately": 2, - "append": 2, - "not": 2, - "just": 2, - "when": 2, - "a": 12, - "term": 2, - "is": 11, - "killed": 2, - "#.": 2, - "/.dotfiles/z": 4, - "zsh/z.sh": 2, - "#function": 2, - "precmd": 2, - "rupa/z.sh": 2, - "/usr/bin/clear": 2, - "umask": 2, - "path": 13, - "/opt/local/bin": 2, - "/opt/local/sbin": 2, - "/bin": 4, - "prompt": 2, - "endif": 2, "function": 6, "ls": 6, "command": 5, @@ -61363,7 +61304,6 @@ "HISTCONTROL": 2, "ignoreboth": 2, "shopt": 13, - "s": 14, "cdspell": 2, "extglob": 2, "progcomp": 2, @@ -61473,17 +61413,21 @@ "readonly": 4, "unset": 10, "and": 5, + "shell": 4, "variables": 2, + "setopt": 8, "options": 8, "helptopic": 2, "help": 5, "helptopics": 2, + "a": 12, "unalias": 4, "aliases": 2, "binding": 2, "bind": 4, "readline": 2, "bindings": 2, + "(": 107, "make": 6, "this": 6, "more": 3, @@ -61510,6 +61454,7 @@ "cd..": 2, "t": 3, "csh": 2, + "is": 11, "same": 2, "as": 2, "bash...": 2, @@ -61519,6 +61464,7 @@ "shorter": 2, "D": 2, "rehash": 2, + "source": 7, "/.bashrc": 3, "after": 2, "I": 2, @@ -61536,44 +61482,71 @@ "ping": 2, "histappend": 2, "PROMPT_COMMAND": 2, - "pkgname": 1, - "stud": 4, - "git": 16, - "pkgver": 1, - "pkgrel": 1, - "pkgdesc": 1, - "arch": 1, - "i686": 1, - "x86_64": 1, - "url": 4, - "license": 1, - "depends": 1, - "libev": 1, - "openssl": 1, - "makedepends": 1, - "provides": 1, - "conflicts": 1, - "_gitroot": 1, - "https": 2, - "//github.com/bumptech/stud.git": 1, - "_gitname": 1, - "build": 2, - "msg": 4, - "pull": 3, - "origin": 1, - "else": 10, - "clone": 5, - "rm": 2, - "rf": 1, - "package": 1, - "PREFIX": 1, - "/usr": 1, - "DESTDIR": 1, - "install": 8, - "Dm755": 1, - "init.stud": 1, - "mkdir": 2, - "p": 2, + "umask": 2, + "path": 13, + "/opt/local/bin": 2, + "/opt/local/sbin": 2, + "/bin": 4, + "prompt": 2, + "history": 18, + "endif": 2, + "stty": 2, + "istrip": 2, + "dirpersiststore": 2, + "##############################################################################": 16, + "#Import": 2, + "the": 17, + "agnostic": 2, + "Bash": 3, + "or": 3, + "Zsh": 2, + "environment": 2, + "config": 4, + "/.profile": 2, + "HISTSIZE": 2, + "#How": 2, + "many": 2, + "lines": 2, + "of": 6, + "keep": 3, + "memory": 3, + "HISTFILE": 2, + "/.zsh_history": 2, + "#Where": 2, + "save": 4, + "disk": 5, + "SAVEHIST": 2, + "#Number": 2, + "entries": 2, + "HISTDUP": 2, + "erase": 2, + "#Erase": 2, + "duplicates": 2, + "file": 9, + "appendhistory": 2, + "#Append": 2, + "overwriting": 2, + "sharehistory": 2, + "#Share": 2, + "across": 2, + "terminals": 2, + "incappendhistory": 2, + "#Immediately": 2, + "append": 2, + "not": 2, + "just": 2, + "when": 2, + "term": 2, + "killed": 2, + "#.": 2, + "/.dotfiles/z": 4, + "zsh/z.sh": 2, + "#function": 2, + "precmd": 2, + "rupa/z.sh": 2, + "fpath": 6, + "HOME/.zsh/func": 2, + "U": 2, "docker": 1, "version": 12, "from": 1, @@ -61585,7 +61558,10 @@ "run": 13, "apt": 6, "get": 6, + "install": 8, "y": 5, + "git": 16, + "https": 2, "//go.googlecode.com/files/go1.1.1.linux": 1, "amd64.tar.gz": 1, "tar": 1, @@ -61602,11 +61578,11 @@ "t.go": 1, "go": 2, "test": 1, - "i": 2, "PKG": 12, "github.com/kr/pty": 1, "REV": 6, "c699": 1, + "clone": 5, "http": 3, "//": 3, "/go/src/": 6, @@ -61627,10 +61603,40 @@ "ldflags": 1, "/go/bin": 1, "cmd": 1, - "stty": 2, - "istrip": 2, - "SHEBANG#!zsh": 2, - "SHEBANG#!bash": 8, + "pkgname": 1, + "stud": 4, + "pkgver": 1, + "pkgrel": 1, + "pkgdesc": 1, + "arch": 1, + "i686": 1, + "x86_64": 1, + "url": 4, + "license": 1, + "depends": 1, + "libev": 1, + "openssl": 1, + "makedepends": 1, + "provides": 1, + "conflicts": 1, + "_gitroot": 1, + "//github.com/bumptech/stud.git": 1, + "_gitname": 1, + "build": 2, + "msg": 4, + "pull": 3, + "origin": 1, + "else": 10, + "rm": 2, + "rf": 1, + "package": 1, + "PREFIX": 1, + "/usr": 1, + "DESTDIR": 1, + "Dm755": 1, + "init.stud": 1, + "mkdir": 2, + "p": 2, "script": 1, "dotfile": 1, "repository": 3, @@ -61666,7 +61672,6 @@ "makes": 1, "pattern": 1, "matching": 1, - "case": 9, "insensitive": 1, "POSTFIX": 1, "URL": 1, @@ -61675,16 +61680,12 @@ "true": 2, "print_help": 2, "e": 4, - "exit": 10, "opt": 3, "@": 3, - "do": 8, "k": 1, "local": 22, "false": 2, "h": 3, - "esac": 7, - "done": 8, ".*": 2, "o": 3, "continue": 1, @@ -61694,6 +61695,15 @@ "remote.origin.pushurl": 1, "crontab": 1, ".jobs.cron": 1, + "x": 1, + "system": 1, + "exec": 3, + "rbenv": 2, + "versions": 1, + "bare": 1, + "&": 5, + "prefix": 1, + "/dev/null": 6, "rvm_ignore_rvmrc": 1, "declare": 22, "rvmrc": 3, @@ -61701,8 +61711,6 @@ "ef": 1, "+": 1, "GREP_OPTIONS": 1, - "/dev/null": 6, - "&": 5, "printf": 4, "rvm_path": 4, "UID": 1, @@ -61780,10 +61788,8 @@ "build_props_scala": 1, "build.scala.versions": 1, "versionLine##build.scala.versions": 1, - "%": 5, "execRunner": 2, "arg": 3, - "exec": 3, "sbt_groupid": 3, "*": 11, "org.scala": 4, @@ -61901,7 +61907,6 @@ "get_jvm_opts": 2, "process_args": 2, "require_arg": 12, - "while": 3, "gt": 1, "shift": 28, "integer": 1, @@ -61950,16 +61955,11 @@ "understand": 1, "iflast": 1, "#residual_args": 1, + "SHEBANG#!sh": 2, + "SHEBANG#!zsh": 2, "name": 1, "foodforthought.jpg": 1, - "name##*fo": 1, - "x": 1, - "system": 1, - "rbenv": 2, - "versions": 1, - "bare": 1, - "prefix": 1, - "bottles": 6 + "name##*fo": 1 }, "ShellSession": { "echo": 2, @@ -62107,72 +62107,10 @@ "RDoc": 1 }, "Shen": { - "(": 267, - "load": 1, - ")": 250, "*": 47, - "JSON": 1, - "Lexer": 1, - "Read": 1, - "a": 30, - "stream": 1, - "of": 20, - "characters": 4, - "Whitespace": 4, - "not": 1, - "in": 13, - "strings": 2, - "should": 2, - "be": 2, - "discarded.": 1, - "preserved": 1, - "Strings": 1, - "can": 1, - "contain": 2, - "escaped": 1, - "double": 1, - "quotes.": 1, - "e.g.": 2, - "define": 34, - "whitespacep": 2, - "ASCII": 2, - "#": 4, - "Space.": 1, - "All": 1, - "the": 29, - "others": 1, - "are": 7, - "whitespace": 7, - "from": 3, - "an": 3, - "table.": 1, - "Char": 4, - "-": 747, - "member": 1, - "[": 93, - "]": 91, - "replace": 3, - "@s": 4, - "Suffix": 4, - "where": 2, - "Prefix": 2, - "fetch": 1, - "until": 1, - "unescaped": 1, - "doublequote": 1, - "c#34": 5, - ";": 12, - "|": 103, - "WhitespaceChar": 2, - "Chars": 4, - "strip": 2, - "chars": 2, - "tokenise": 1, - "JSONString": 2, - "let": 9, - "CharList": 2, - "explode": 1, "graph.shen": 1, + "-": 747, + "a": 30, "library": 3, "for": 12, "graph": 52, @@ -62180,13 +62118,16 @@ "and": 16, "manipulation": 1, "Copyright": 2, + "(": 267, "C": 6, + ")": 250, "Eric": 2, "Schulte": 2, "***": 5, "License": 2, "Redistribution": 2, "use": 2, + "in": 13, "source": 4, "binary": 4, "forms": 2, @@ -62194,13 +62135,16 @@ "or": 2, "without": 2, "modification": 2, + "are": 7, "permitted": 2, "provided": 4, "that": 3, + "the": 29, "following": 6, "conditions": 6, "met": 2, "Redistributions": 4, + "of": 20, "code": 2, "must": 4, "retain": 2, @@ -62265,6 +62209,7 @@ "SUBSTITUTE": 2, "GOODS": 2, "SERVICES": 2, + ";": 12, "LOSS": 2, "USE": 4, "DATA": 2, @@ -62325,6 +62270,7 @@ "each": 1, "edge": 32, "may": 1, + "contain": 2, "any": 1, "number": 12, ".": 1, @@ -62342,11 +62288,14 @@ "+": 33, "Graph": 65, "hash": 8, + "|": 103, "key": 9, "value": 17, "b": 13, "c": 11, "g": 19, + "[": 93, + "]": 91, "d": 12, "e": 14, "f": 10, @@ -62358,6 +62307,7 @@ "edge/vertex": 1, "@p": 17, "V": 48, + "#": 4, "E": 20, "edges": 17, "M": 4, @@ -62393,6 +62343,7 @@ "partition": 7, "bipartite": 3, "included": 2, + "from": 3, "take": 2, "drop": 2, "while": 2, @@ -62420,6 +62371,7 @@ "keys": 3, "vals": 1, "make": 10, + "define": 34, "X": 4, "<-address>": 5, "0": 1, @@ -62429,6 +62381,7 @@ "}": 22, "Vertsize": 2, "Edgesize": 2, + "let": 9, "absvector": 1, "do": 8, "address": 5, @@ -62467,6 +62420,7 @@ "w/o": 5, "D": 4, "update": 5, + "an": 3, "s": 1, "Vs": 4, "Store": 6, @@ -62538,7 +62492,53 @@ "todo1": 1, "today": 1, "attributes": 1, - "AS": 1 + "AS": 1, + "load": 1, + "JSON": 1, + "Lexer": 1, + "Read": 1, + "stream": 1, + "characters": 4, + "Whitespace": 4, + "not": 1, + "strings": 2, + "should": 2, + "be": 2, + "discarded.": 1, + "preserved": 1, + "Strings": 1, + "can": 1, + "escaped": 1, + "double": 1, + "quotes.": 1, + "e.g.": 2, + "whitespacep": 2, + "ASCII": 2, + "Space.": 1, + "All": 1, + "others": 1, + "whitespace": 7, + "table.": 1, + "Char": 4, + "member": 1, + "replace": 3, + "@s": 4, + "Suffix": 4, + "where": 2, + "Prefix": 2, + "fetch": 1, + "until": 1, + "unescaped": 1, + "doublequote": 1, + "c#34": 5, + "WhitespaceChar": 2, + "Chars": 4, + "strip": 2, + "chars": 2, + "tokenise": 1, + "JSONString": 2, + "CharList": 2, + "explode": 1 }, "Slash": { "<%>": 1, @@ -62679,65 +62679,8 @@ "}": 2 }, "Smalltalk": { - "Koan": 1, - "subclass": 2, - "TestBasic": 1, - "[": 18, - "": 1, - "A": 1, - "collection": 1, - "of": 1, - "introductory": 1, - "tests": 2, - "testDeclarationAndAssignment": 1, - "|": 18, - "declaration": 2, - "anotherDeclaration": 2, - "_": 1, - ".": 16, - "self": 25, - "expect": 10, - "fillMeIn": 10, - "toEqual": 10, - "declaration.": 1, - "anotherDeclaration.": 1, - "]": 18, - "testEqualSignIsNotAnAssignmentOperator": 1, - "variableA": 6, - "variableB": 5, - "value": 2, - "variableB.": 2, - "(": 19, - ")": 19, - "testMultipleStatementsInASingleLine": 1, - "variableC": 2, - "variableA.": 1, - "variableC.": 1, - "testInequality": 1, - "testLogicalOr": 1, - "expression": 4, - "<": 2, - "expression.": 2, - "testLogicalAnd": 1, - "&": 1, - "testNot": 1, - "true": 2, - "not.": 1, - "testSimpleChainMatches": 1, - "e": 11, - "eCtrl": 3, - "eventKey": 3, - "e.": 1, - "ctrl": 5, - "true.": 1, - "assert": 2, - "matches": 4, - "{": 4, - "}": 4, - "eCtrl.": 2, - "deny": 2, - "a": 1, "Object": 1, + "subclass": 2, "#Philosophers": 1, "instanceVariableNames": 1, "classVariableNames": 1, @@ -62747,19 +62690,26 @@ "class": 1, "methodsFor": 2, "new": 4, + "self": 25, "shouldNotImplement": 1, "quantity": 2, "super": 1, "initialize": 3, "dine": 4, "seconds": 2, + "(": 19, "Delay": 3, "forSeconds": 1, + ")": 19, "wait.": 5, "philosophers": 2, "do": 1, + "[": 18, "each": 5, + "|": 18, "terminate": 1, + "]": 18, + ".": 16, "size": 4, "leftFork": 6, "n": 11, @@ -62785,6 +62735,7 @@ "status": 8, "n.": 2, "printString": 1, + "true": 2, "whileTrue": 1, "Transcript": 5, "nextPutAll": 5, @@ -62801,7 +62752,56 @@ "userBackgroundPriority": 1, "name": 1, "resume": 1, - "yourself": 1 + "yourself": 1, + "Koan": 1, + "TestBasic": 1, + "": 1, + "A": 1, + "collection": 1, + "of": 1, + "introductory": 1, + "tests": 2, + "testDeclarationAndAssignment": 1, + "declaration": 2, + "anotherDeclaration": 2, + "_": 1, + "expect": 10, + "fillMeIn": 10, + "toEqual": 10, + "declaration.": 1, + "anotherDeclaration.": 1, + "testEqualSignIsNotAnAssignmentOperator": 1, + "variableA": 6, + "variableB": 5, + "value": 2, + "variableB.": 2, + "testMultipleStatementsInASingleLine": 1, + "variableC": 2, + "variableA.": 1, + "variableC.": 1, + "testInequality": 1, + "testLogicalOr": 1, + "expression": 4, + "<": 2, + "expression.": 2, + "testLogicalAnd": 1, + "&": 1, + "testNot": 1, + "not.": 1, + "testSimpleChainMatches": 1, + "e": 11, + "eCtrl": 3, + "eventKey": 3, + "e.": 1, + "ctrl": 5, + "true.": 1, + "assert": 2, + "matches": 4, + "{": 4, + "}": 4, + "eCtrl.": 2, + "deny": 2, + "a": 1 }, "SourcePawn": { "//#define": 1, @@ -63245,78 +63245,22 @@ "Lazy": 2, "LazyFn": 4, "LazyMemo": 2, - "functor": 2, - "RedBlackTree": 1, - "key": 16, + "signature": 2, + "sig": 2, + "LAZY": 1, + "bool": 9, + "string": 14, "*": 9, - "entry": 12, - "dict": 17, - "Empty": 15, - "Red": 41, - "ref": 45, - "local": 1, - "lookup": 4, - "lk": 4, - "NONE": 47, - "tree": 4, - "and": 2, - "zipper": 3, - "TOP": 5, - "LEFTB": 10, - "RIGHTB": 10, - "in": 40, - "delete": 3, - "t": 23, - "zip": 19, + "order": 2, "b": 58, - "z": 73, - "Black": 40, - "LEFTR": 8, - "RIGHTR": 9, - "bbZip": 28, - "c": 42, - "d": 32, - "w": 17, - "e": 18, - "delMin": 8, - "_": 83, - "Match": 1, - "joinRed": 3, - "needB": 2, - "#2": 2, - "del": 8, - "NotFound": 2, - "entry1": 16, - "as": 7, - "key1": 8, - "datum1": 4, - "case": 83, - "EQUAL": 5, - "joinBlack": 1, - "LESS": 5, - "GREATER": 5, - "insertShadow": 3, - "datum": 1, - "oldEntry": 7, - "ins": 8, - "left": 10, - "right": 10, - "SOME": 68, - "restore_left": 1, - "restore_right": 1, - "app": 3, - "ap": 7, - "new": 1, - "n": 4, - "insert": 2, - "table": 14, - "clear": 1, + "functor": 2, "Main": 1, "S": 2, "MAIN_STRUCTS": 1, "MAIN": 1, "Compile": 3, "Place": 1, + "t": 23, "Files": 3, "Generated": 4, "MLB": 4, @@ -63328,12 +63272,12 @@ "int": 1, "OptPred": 1, "Target": 1, - "string": 14, "Yes": 1, "Show": 1, "Anns": 1, "PathMap": 1, "gcc": 5, + "ref": 45, "arScript": 3, "asOpts": 6, "{": 79, @@ -63347,7 +63291,6 @@ "ccOpts": 6, "linkOpts": 6, "buildConstants": 2, - "bool": 9, "debugRuntime": 3, "debugFormat": 5, "Dwarf": 3, @@ -63356,6 +63299,7 @@ "Stabs": 3, "StabsPlus": 3, "option": 6, + "NONE": 47, "expert": 3, "explicitAlign": 3, "Control.align": 1, @@ -63378,10 +63322,13 @@ "parseMlbPathVar": 3, "line": 9, "String.t": 1, + "case": 83, "String.tokens": 7, "Char.isSpace": 8, "var": 3, "path": 7, + "SOME": 68, + "_": 83, "readMlbPathMap": 2, "file": 14, "File.t": 12, @@ -63415,6 +63362,7 @@ "List.first": 2, "MLton.Platform.OS.fromString": 1, "MLton.Platform.Arch.fromString": 1, + "in": 40, "setTargetType": 3, "usage": 48, "List.peek": 7, @@ -63424,6 +63372,7 @@ "Target.os": 2, "hasCodegen": 8, "cg": 21, + "z": 73, "Control.Target.arch": 4, "Control.Target.os": 2, "Control.Format.t": 1, @@ -63451,6 +63400,7 @@ "Fail": 2, "reportAnnotation": 4, "flag": 12, + "e": 18, "Control.Elaborate.Bad": 1, "Control.Elaborate.Deprecated": 1, "ids": 2, @@ -63483,6 +63433,7 @@ "String.dropPrefix": 1, "Char.isDigit": 3, "Int.fromString": 4, + "n": 4, "Coalesce": 1, "limit": 1, "Bool": 10, @@ -63609,6 +63560,7 @@ "OptPred.Target": 6, "#1": 1, "trace": 4, + "#2": 2, "typeCheck": 1, "verbosity": 4, "Silent": 3, @@ -63660,6 +63612,7 @@ "ty": 4, "Bytes.toBits": 1, "Bytes.fromInt": 1, + "lookup": 4, "use": 2, "on": 1, "must": 1, @@ -63689,7 +63642,10 @@ "File.withIn": 1, "csoFiles": 1, "Place.compare": 1, + "GREATER": 5, "Place.toString": 2, + "EQUAL": 5, + "LESS": 5, "printVersion": 1, "tempFiles": 3, "tmpDir": 2, @@ -63697,6 +63653,7 @@ "default": 2, "MLton.Platform.OS.host": 2, "Process.getEnv": 1, + "d": 32, "temp": 3, "out": 9, "File.temp": 1, @@ -63712,6 +63669,7 @@ "OS.Path.splitDirFile": 1, "String.extract": 1, "toAlNum": 2, + "c": 42, "Char.isAlphaNum": 1, "#": 3, "CharVector.map": 1, @@ -63779,15 +63737,62 @@ "mainWrapped": 1, "OS.Process.exit": 1, "CommandLine.arguments": 1, - "signature": 2, - "sig": 2, - "LAZY": 1, - "order": 2 + "RedBlackTree": 1, + "key": 16, + "entry": 12, + "dict": 17, + "Empty": 15, + "Red": 41, + "local": 1, + "lk": 4, + "tree": 4, + "and": 2, + "zipper": 3, + "TOP": 5, + "LEFTB": 10, + "RIGHTB": 10, + "delete": 3, + "zip": 19, + "Black": 40, + "LEFTR": 8, + "RIGHTR": 9, + "bbZip": 28, + "w": 17, + "delMin": 8, + "Match": 1, + "joinRed": 3, + "needB": 2, + "del": 8, + "NotFound": 2, + "entry1": 16, + "as": 7, + "key1": 8, + "datum1": 4, + "joinBlack": 1, + "insertShadow": 3, + "datum": 1, + "oldEntry": 7, + "ins": 8, + "left": 10, + "right": 10, + "restore_left": 1, + "restore_right": 1, + "app": 3, + "ap": 7, + "new": 1, + "insert": 2, + "table": 14, + "clear": 1 }, "Stata": { "local": 6, "inname": 1, "outname": 1, + "program": 2, + "hello": 1, + "vers": 1, + "display": 1, + "end": 4, "{": 441, "*": 25, "version": 2, @@ -63798,24 +63803,6 @@ "world": 1, "p_end": 47, "MAXDIM": 1, - "program": 2, - "hello": 1, - "vers": 1, - "display": 1, - "end": 4, - "numeric": 4, - "matrix": 3, - "tanh": 1, - "(": 60, - "u": 3, - ")": 61, - "eu": 4, - "emu": 4, - "exp": 2, - "-": 42, - "return": 1, - "/": 1, - "+": 2, "smcl": 1, "Matthew": 2, "White": 2, @@ -63829,6 +63816,7 @@ "Create": 4, "a": 30, "do": 22, + "-": 42, "file": 18, "to": 23, "import": 9, @@ -63844,7 +63832,9 @@ "filename": 3, "opt": 25, "csv": 9, + "(": 60, "csvfile": 3, + ")": 61, "Using": 7, "histogram": 2, "as": 29, @@ -63879,6 +63869,7 @@ "in": 24, "first": 2, "column": 18, + "+": 2, "synoptset": 5, "tabbed": 4, "synopthdr": 4, @@ -64035,6 +64026,7 @@ "such": 2, "simserial": 1, "will": 9, + "numeric": 4, "even": 1, "if": 10, "they": 2, @@ -64327,7 +64319,15 @@ "noconstant": 1, "Model": 1, "bn.foreign": 1, - "hascons": 1 + "hascons": 1, + "matrix": 3, + "tanh": 1, + "u": 3, + "eu": 4, + "emu": 4, + "exp": 2, + "return": 1, + "/": 1 }, "Stylus": { "border": 6, @@ -64424,133 +64424,81 @@ "oranges": 1, "appleSummary": 1, "fruitSummary": 1, - "func": 24, - "sumOf": 3, - "(": 89, - "numbers": 6, - "Int...": 1, - ")": 89, - "-": 21, - "Int": 19, - "{": 77, "var": 42, - "sum": 3, - "for": 10, - "number": 13, - "in": 11, - "+": 15, - "}": 77, - "return": 30, - "myVariable": 2, - "myConstant": 1, - "interestingNumbers": 2, + "shoppingList": 3, "[": 18, "]": 18, - "largest": 4, - "kind": 1, - "if": 6, + "occupations": 2, "emptyArray": 1, "String": 27, + "(": 89, + ")": 89, "emptyDictionary": 1, "Dictionary": 1, "": 1, "Float": 1, - "optionalSquare": 2, - "Square": 7, - "sideLength": 17, - "name": 21, - ".sideLength": 1, - "class": 7, - "Counter": 2, - "count": 2, - "incrementBy": 1, - "amount": 2, - "numberOfTimes": 2, - "times": 4, - "*": 7, - "counter": 1, - "counter.incrementBy": 1, - "numbers.map": 2, - "shape": 1, - "Shape": 2, - "shape.numberOfSides": 1, - "shapeDescription": 1, - "shape.simpleDescription": 1, - "extension": 1, - "ExampleProtocol": 5, - "simpleDescription": 14, - "mutating": 3, - "adjust": 4, - "self": 3, - "protocol": 1, - "get": 2, - "enum": 4, - "OptionalValue": 2, - "": 1, - "case": 21, - "None": 1, - "Some": 1, - "T": 5, - "possibleInteger": 2, - "": 1, - ".None": 1, - ".Some": 1, - "label": 2, - "width": 2, - "widthLabel": 1, - "n": 5, - "while": 2, - "<": 4, - "m": 5, - "do": 1, - "SimpleClass": 2, - "anotherProperty": 1, - "a": 2, - "a.adjust": 1, - "aDescription": 1, - "a.simpleDescription": 1, - "struct": 2, - "SimpleStructure": 2, - "b": 1, - "b.adjust": 1, - "bDescription": 1, - "b.simpleDescription": 1, - "NamedShape": 3, - "numberOfSides": 4, - "init": 4, - "self.name": 1, + "//": 1, + "Went": 1, + "shopping": 1, + "and": 1, + "bought": 1, + "everything.": 1, + "individualScores": 2, + "teamScore": 4, + "for": 10, + "score": 2, + "in": 11, + "{": 77, + "if": 6, + "+": 15, + "}": 77, + "else": 1, "optionalString": 2, "nil": 1, "optionalName": 2, "greeting": 2, - "implicitInteger": 1, - "implicitDouble": 1, - "explicitDouble": 1, - "Double": 11, - "ServerResponse": 1, - "Result": 1, - "Error": 1, - "success": 2, - "ServerResponse.Result": 1, - "failure": 1, - "ServerResponse.Error": 1, - "switch": 4, - ".Result": 1, - "sunrise": 1, - "sunset": 1, - "serverResponse": 2, - ".Error": 1, - "error": 1, + "name": 21, "vegetable": 2, + "switch": 4, + "case": 21, "vegetableComment": 4, "x": 1, "where": 2, "x.hasSuffix": 1, "default": 2, + "interestingNumbers": 2, + "largest": 4, + "kind": 1, + "numbers": 6, + "number": 13, + "n": 5, + "while": 2, + "<": 4, + "*": 7, + "m": 5, + "do": 1, + "firstForLoop": 3, + "i": 6, + "secondForLoop": 3, + ";": 2, "println": 1, + "func": 24, + "greet": 2, + "day": 1, + "-": 21, + "return": 30, + "getGasPrices": 2, + "Double": 11, + "sumOf": 3, + "Int...": 1, + "Int": 19, + "sum": 3, "returnFifteen": 2, "y": 3, "add": 2, + "makeIncrementer": 2, + "addOne": 2, + "increment": 2, "hasAnyMatches": 2, "list": 2, "condition": 2, @@ -64559,33 +64507,62 @@ "true": 2, "false": 2, "lessThanTen": 2, - "convertedRank": 1, - "Rank.fromRaw": 1, - "threeDescription": 1, - "convertedRank.simpleDescription": 1, - "TriangleAndSquare": 2, - "triangle": 3, + "numbers.map": 2, + "result": 5, + "sort": 1, + "class": 7, + "Shape": 2, + "numberOfSides": 4, + "simpleDescription": 14, + "myVariable": 2, + "myConstant": 1, + "shape": 1, + "shape.numberOfSides": 1, + "shapeDescription": 1, + "shape.simpleDescription": 1, + "NamedShape": 3, + "init": 4, + "self.name": 1, + "Square": 7, + "sideLength": 17, + "self.sideLength": 2, + "super.init": 2, + "area": 1, + "override": 2, + "test": 1, + "test.area": 1, + "test.simpleDescription": 1, "EquilateralTriangle": 4, + "perimeter": 1, + "get": 2, + "set": 1, + "newValue": 1, + "/": 1, + "triangle": 3, + "triangle.perimeter": 2, + "triangle.sideLength": 2, + "TriangleAndSquare": 2, "willSet": 2, "square.sideLength": 1, "newValue.sideLength": 2, "square": 2, - "triangle.sideLength": 2, "size": 4, "triangleAndSquare": 1, "triangleAndSquare.square.sideLength": 1, "triangleAndSquare.triangle.sideLength": 2, "triangleAndSquare.square": 1, - "Card": 2, - "rank": 2, + "Counter": 2, + "count": 2, + "incrementBy": 1, + "amount": 2, + "numberOfTimes": 2, + "times": 4, + "counter": 1, + "counter.incrementBy": 1, + "optionalSquare": 2, + ".sideLength": 1, + "enum": 4, "Rank": 2, - "suit": 2, - "Suit": 2, - "threeOfSpades": 1, - ".Three": 1, - ".Spades": 2, - "threeOfSpadesDescription": 1, - "threeOfSpades.simpleDescription": 1, "Ace": 1, "Two": 1, "Three": 1, @@ -64599,6 +64576,7 @@ "Jack": 1, "Queen": 1, "King": 1, + "self": 3, ".Ace": 1, ".Jack": 1, ".Queen": 1, @@ -64608,17 +64586,77 @@ "Rank.Ace": 1, "aceRawValue": 1, "ace.toRaw": 1, - "individualScores": 2, - "teamScore": 4, - "score": 2, - "else": 1, + "convertedRank": 1, + "Rank.fromRaw": 1, + "threeDescription": 1, + "convertedRank.simpleDescription": 1, + "Suit": 2, + "Spades": 1, + "Hearts": 1, + "Diamonds": 1, + "Clubs": 1, + ".Spades": 2, + ".Hearts": 1, + ".Diamonds": 1, + ".Clubs": 1, + "hearts": 1, + "Suit.Hearts": 1, + "heartsDescription": 1, + "hearts.simpleDescription": 1, + "implicitInteger": 1, + "implicitDouble": 1, + "explicitDouble": 1, + "struct": 2, + "Card": 2, + "rank": 2, + "suit": 2, + "threeOfSpades": 1, + ".Three": 1, + "threeOfSpadesDescription": 1, + "threeOfSpades.simpleDescription": 1, + "ServerResponse": 1, + "Result": 1, + "Error": 1, + "success": 2, + "ServerResponse.Result": 1, + "failure": 1, + "ServerResponse.Error": 1, + ".Result": 1, + "sunrise": 1, + "sunset": 1, + "serverResponse": 2, + ".Error": 1, + "error": 1, + "protocol": 1, + "ExampleProtocol": 5, + "mutating": 3, + "adjust": 4, + "SimpleClass": 2, + "anotherProperty": 1, + "a": 2, + "a.adjust": 1, + "aDescription": 1, + "a.simpleDescription": 1, + "SimpleStructure": 2, + "b": 1, + "b.adjust": 1, + "bDescription": 1, + "b.simpleDescription": 1, + "extension": 1, + "protocolValue": 1, + "protocolValue.simpleDescription": 1, "repeat": 2, "": 1, "ItemType": 3, - "result": 5, - "i": 6, - "protocolValue": 1, - "protocolValue.simpleDescription": 1, + "OptionalValue": 2, + "": 1, + "None": 1, + "Some": 1, + "T": 5, + "possibleInteger": 2, + "": 1, + ".None": 1, + ".Some": 1, "anyCommonElements": 2, "": 1, "U": 4, @@ -64630,74 +64668,15 @@ "rhs": 2, "lhsItem": 2, "rhsItem": 2, - "makeIncrementer": 2, - "addOne": 2, - "increment": 2, - "self.sideLength": 2, - "super.init": 2, - "area": 1, - "override": 2, - "test": 1, - "test.area": 1, - "test.simpleDescription": 1, - "Spades": 1, - "Hearts": 1, - "Diamonds": 1, - "Clubs": 1, - ".Hearts": 1, - ".Diamonds": 1, - ".Clubs": 1, - "hearts": 1, - "Suit.Hearts": 1, - "heartsDescription": 1, - "hearts.simpleDescription": 1, - "shoppingList": 3, - "//": 1, - "Went": 1, - "shopping": 1, - "and": 1, - "bought": 1, - "everything.": 1, - "occupations": 2, - "getGasPrices": 2, - "perimeter": 1, - "set": 1, - "newValue": 1, - "/": 1, - "triangle.perimeter": 2, - "greet": 2, - "day": 1, - "firstForLoop": 3, - "secondForLoop": 3, - ";": 2, - "sort": 1 + "label": 2, + "width": 2, + "widthLabel": 1 }, "SystemVerilog": { "module": 3, - "fifo": 1, + "endpoint_phy_wrapper": 2, "(": 92, "input": 12, - "clk_50": 1, - "clk_2": 1, - "reset_n": 1, - "output": 6, - "[": 17, - "]": 17, - "data_out": 1, - "empty": 1, - ")": 92, - ";": 32, - "function": 1, - "integer": 2, - "log2": 4, - "x": 6, - "begin": 4, - "-": 4, - "for": 2, - "+": 3, - "end": 4, - "endfunction": 1, - "endpoint_phy_wrapper": 2, "clk_sys_i": 2, "clk_ref_i": 6, "clk_rx_i": 3, @@ -64707,12 +64686,17 @@ "IWishboneSlave.slave": 1, "snk": 1, "sys": 1, + "output": 6, + "[": 17, + "]": 17, "td_o": 2, "rd_i": 2, "txn_o": 2, "txp_o": 2, "rxn_i": 2, "rxp_i": 2, + ")": 92, + ";": 32, "wire": 12, "rx_clock": 3, "parameter": 2, @@ -64730,6 +64714,7 @@ "tx_clock": 3, "generate": 1, "if": 5, + "begin": 4, "assign": 2, "wr_tbi_phy": 1, "U_Phy": 1, @@ -64754,6 +64739,7 @@ ".tbi_loopen_o": 1, ".tbi_prbsen_o": 1, ".tbi_enable_o": 1, + "end": 4, "else": 2, "//": 3, "wr_gtx_phy_virtex6": 1, @@ -64834,16 +64820,30 @@ ".wb_ack_o": 1, "sys.ack": 1, "endmodule": 2, + "fifo": 1, + "clk_50": 1, + "clk_2": 1, + "reset_n": 1, + "data_out": 1, + "empty": 1, "priority_encoder": 1, "INPUT_WIDTH": 3, "OUTPUT_WIDTH": 3, "logic": 2, + "-": 4, "input_data": 2, "output_data": 3, "int": 1, "ii": 6, "always_comb": 1, - "<": 1 + "for": 2, + "<": 1, + "+": 3, + "function": 1, + "integer": 2, + "log2": 4, + "x": 6, + "endfunction": 1 }, "TXL": { "define": 12, @@ -65621,22 +65621,21 @@ "when": 1 }, "TypeScript": { - "console.log": 1, - "(": 18, - ")": 18, - ";": 8, "class": 3, "Animal": 4, "{": 9, "constructor": 3, + "(": 18, "public": 1, "name": 5, + ")": 18, "}": 9, "move": 3, "meters": 2, "alert": 3, "this.name": 1, "+": 3, + ";": 8, "Snake": 2, "extends": 2, "super": 2, @@ -65647,33 +65646,23 @@ "new": 2, "tom": 1, "sam.move": 1, - "tom.move": 1 + "tom.move": 1, + "console.log": 1 }, "UnrealScript": { - "class": 18, - "US3HelloWorld": 1, - "extends": 2, - "GameInfo": 1, - ";": 295, - "event": 3, - "InitGame": 1, - "(": 189, - "string": 25, - "Options": 1, - "out": 2, - "Error": 1, - ")": 189, - "{": 28, - "log": 1, - "}": 27, - "defaultproperties": 1, "//": 5, "-": 220, + "class": 18, "MutU2Weapons": 1, + "extends": 2, "Mutator": 1, "config": 18, + "(": 189, "U2Weapons": 1, + ")": 189, + ";": 295, "var": 30, + "string": 25, "ReplacedWeaponClassNames0": 1, "ReplacedWeaponClassNames1": 1, "ReplacedWeaponClassNames2": 1, @@ -65741,6 +65730,7 @@ "FlashbangModeString": 1, "struct": 1, "WeaponInfo": 2, + "{": 28, "ReplacedWeaponClass": 1, "Generated": 4, "from": 6, @@ -65795,6 +65785,7 @@ "gametypes.": 2, "Think": 1, "shotgun.": 1, + "}": 27, "Weapons": 31, "function": 5, "PostBeginPlay": 1, @@ -65851,6 +65842,7 @@ "CheckReplacement": 1, "Actor": 1, "Other": 23, + "out": 2, "bSuperRelevant": 3, "i": 12, "WeaponLocker": 3, @@ -65905,6 +65897,7 @@ "PlayInfo.AddSetting": 33, "default.RulesGroup": 33, "default.U2WeaponDisplayText": 33, + "event": 3, "GetDescriptionText": 1, "PropName": 35, "default.U2WeaponDescText": 33, @@ -66072,7 +66065,14 @@ "Fully": 1, "customisable": 1, "choose": 1, - "behaviour.": 1 + "behaviour.": 1, + "US3HelloWorld": 1, + "GameInfo": 1, + "InitGame": 1, + "Options": 1, + "Error": 1, + "log": 1, + "defaultproperties": 1 }, "VCL": { "sub": 23, @@ -66080,25 +66080,13 @@ "{": 50, "if": 14, "(": 50, - "req.restarts": 1, - ")": 50, - "req.http.x": 1, - "-": 21, - "forwarded": 1, - "for": 1, - "set": 10, - "req.http.X": 3, - "Forwarded": 3, - "For": 3, - "+": 17, - "client.ip": 2, - ";": 48, - "}": 50, - "else": 3, "req.request": 18, "&&": 14, + ")": 50, "return": 33, "pipe": 4, + ";": 48, + "}": 50, "pass": 9, "req.http.Authorization": 2, "||": 4, @@ -66107,29 +66095,33 @@ "vcl_pipe": 2, "vcl_pass": 2, "vcl_hash": 2, - "hash_data": 3, + "set": 10, + "req.hash": 3, + "+": 17, "req.url": 2, "req.http.host": 4, + "else": 3, "server.ip": 2, "hash": 2, "vcl_hit": 2, + "obj.cacheable": 2, "deliver": 8, "vcl_miss": 2, "fetch": 3, "vcl_fetch": 2, - "beresp.ttl": 2, - "<": 1, - "s": 3, - "beresp.http.Set": 1, + "obj.http.Set": 1, + "-": 21, "Cookie": 2, - "beresp.http.Vary": 1, - "hit_for_pass": 1, + "obj.prefetch": 1, + "s": 3, "vcl_deliver": 2, + "vcl_discard": 1, + "discard": 2, + "vcl_prefetch": 1, + "vcl_timeout": 1, "vcl_error": 2, "obj.http.Content": 2, "Type": 2, - "obj.http.Retry": 1, - "After": 1, "synthetic": 2, "utf": 2, "//W3C//DTD": 2, @@ -66141,19 +66133,27 @@ "obj.status": 4, "obj.response": 6, "req.xid": 2, + "//www.varnish": 1, + "cache.org/": 1, + "req.restarts": 1, + "req.http.x": 1, + "forwarded": 1, + "for": 1, + "req.http.X": 3, + "Forwarded": 3, + "For": 3, + "client.ip": 2, + "hash_data": 3, + "beresp.ttl": 2, + "<": 1, + "beresp.http.Set": 1, + "beresp.http.Vary": 1, + "hit_for_pass": 1, + "obj.http.Retry": 1, + "After": 1, "vcl_init": 1, "ok": 2, - "vcl_fini": 1, - "req.hash": 3, - "obj.cacheable": 2, - "obj.http.Set": 1, - "obj.prefetch": 1, - "vcl_discard": 1, - "discard": 2, - "vcl_prefetch": 1, - "vcl_timeout": 1, - "//www.varnish": 1, - "cache.org/": 1 + "vcl_fini": 1 }, "VHDL": { "-": 2, @@ -66240,6 +66240,257 @@ "endcase": 3, "default": 2, "endmodule": 18, + "control": 1, + "en": 13, + "dsp_sel": 9, + "an": 6, + "wire": 67, + "a": 5, + "b": 3, + "c": 3, + "d": 3, + "e": 3, + "f": 2, + "g": 2, + "h": 2, + "i": 62, + "j": 2, + "k": 2, + "l": 2, + "assign": 23, + "FDRSE": 6, + "#": 10, + ".INIT": 6, + "b0": 27, + "Synchronous": 12, + ".S": 6, + "b1": 19, + "Initial": 6, + "value": 6, + "of": 8, + "register": 6, + "DFF2": 1, + ".Q": 6, + "Data": 13, + ".C": 6, + "Clock": 14, + ".CE": 6, + "enable": 6, + ".D": 6, + ".R": 6, + "set": 6, + "DFF0": 1, + "DFF6": 1, + "DFF4": 1, + "DFF10": 1, + "DFF8": 1, + "hex_display": 1, + "num": 5, + "hex0": 2, + "hex1": 2, + "hex2": 2, + "hex3": 2, + "seg_7": 4, + "hex_group0": 1, + ".num": 4, + ".en": 4, + ".seg": 4, + "hex_group1": 1, + "hex_group2": 1, + "hex_group3": 1, + "mux": 1, + "opA": 4, + "opB": 3, + "sum": 5, + "out": 5, + "cout": 4, + "b0000": 1, + "b01": 1, + "b11": 1, + "pipeline_registers": 1, + "BIT_WIDTH": 5, + "pipe_in": 4, + "pipe_out": 5, + "NUMBER_OF_STAGES": 7, + "generate": 3, + "genvar": 3, + "*": 4, + "BIT_WIDTH*": 5, + "pipe_gen": 6, + "for": 4, + "+": 36, + "pipeline": 2, + "BIT_WIDTH*i": 2, + "endgenerate": 3, + "ps2_mouse": 1, + "Input": 2, + "Reset": 1, + "inout": 2, + "ps2_clk": 3, + "PS2": 2, + "Bidirectional": 2, + "ps2_dat": 3, + "the_command": 2, + "Command": 1, + "to": 3, + "send": 2, + "mouse": 1, + "send_command": 2, + "Signal": 2, + "command_was_sent": 2, + "command": 1, + "finished": 1, + "sending": 1, + "error_communication_timed_out": 3, + "received_data": 2, + "Received": 1, + "data": 4, + "received_data_en": 4, + "If": 1, + "new": 1, + "has": 1, + "been": 1, + "received": 1, + "start_receiving_data": 3, + "wait_for_incoming_data": 3, + "ps2_clk_posedge": 3, + "Internal": 2, + "Wires": 1, + "ps2_clk_negedge": 3, + "idle_counter": 4, + "Registers": 2, + "ps2_clk_reg": 4, + "ps2_data_reg": 5, + "last_ps2_clk": 4, + "ns_ps2_transceiver": 13, + "State": 1, + "Machine": 1, + "s_ps2_transceiver": 8, + "PS2_STATE_0_IDLE": 10, + "h1": 1, + "PS2_STATE_2_COMMAND_OUT": 2, + "h3": 1, + "PS2_STATE_4_END_DELAYED": 4, + "Defaults": 1, + "PS2_STATE_1_DATA_IN": 3, + "||": 1, + "PS2_STATE_3_END_TRANSFER": 3, + "h00": 1, + "&&": 3, + "h01": 1, + "ps2_mouse_cmdout": 1, + "mouse_cmdout": 1, + ".clk": 6, + "Inputs": 2, + ".reset": 2, + ".the_command": 1, + ".send_command": 1, + ".ps2_clk_posedge": 2, + ".ps2_clk_negedge": 2, + ".ps2_clk": 1, + "Bidirectionals": 1, + ".ps2_dat": 1, + ".command_was_sent": 1, + "Outputs": 2, + ".error_communication_timed_out": 1, + "ps2_mouse_datain": 1, + "mouse_datain": 1, + ".wait_for_incoming_data": 1, + ".start_receiving_data": 1, + ".ps2_data": 1, + ".received_data": 1, + ".received_data_en": 1, + "ns/1ps": 2, + "e0": 1, + "x": 41, + "y": 21, + "{": 11, + "}": 11, + "e1": 1, + "ch": 1, + "z": 7, + "o": 6, + "&": 6, + "maj": 1, + "|": 2, + "s0": 1, + "s1": 1, + "sign_extender": 1, + "INPUT_WIDTH": 5, + "OUTPUT_WIDTH": 4, + "original": 3, + "sign_extended_original": 2, + "sign_extend": 3, + "gen_sign_extend": 1, + "sqrt_pipelined": 3, + "start": 12, + "optional": 2, + "INPUT_BITS": 28, + "radicand": 12, + "unsigned": 2, + "data_valid": 7, + "valid": 2, + "OUTPUT_BITS": 14, + "root": 8, + "number": 2, + "bits": 2, + "any": 1, + "integer": 1, + "%": 3, + "start_gen": 7, + "propagation": 1, + "OUTPUT_BITS*INPUT_BITS": 9, + "root_gen": 15, + "values": 3, + "radicand_gen": 10, + "mask_gen": 9, + "mask": 3, + "mask_4": 1, + "is": 4, + "odd": 1, + "this": 2, + "INPUT_BITS*": 27, + "<<": 2, + "i/2": 2, + "even": 1, + "pipeline_stage": 1, + "INPUT_BITS*i": 5, + "t_button_debounce": 1, + ".CLK_FREQUENCY": 1, + ".DEBOUNCE_HZ": 1, + ".reset_n": 3, + ".button": 1, + ".debounce": 1, + "initial": 3, + "bx": 4, + "#10": 10, + "#5": 3, + "#100": 1, + "#0.1": 8, + "t_div_pipelined": 1, + "dividend": 3, + "divisor": 5, + "div_by_zero": 2, + "quotient": 2, + "quotient_correct": 1, + "BITS": 2, + "div_pipelined": 2, + ".BITS": 1, + ".dividend": 1, + ".divisor": 1, + ".quotient": 1, + ".div_by_zero": 1, + ".start": 2, + ".data_valid": 2, + "#50": 2, + "#1": 1, + "#1000": 1, + "finish": 2, + "t_sqrt_pipelined": 1, + ".INPUT_BITS": 1, + ".radicand": 1, + ".root": 1, + "#10000": 1, "vga": 1, "wb_clk_i": 6, "Mhz": 1, @@ -66266,7 +66517,6 @@ "csrm_dat_i": 2, "csr_adr_i": 3, "csr_stb_i": 2, - "wire": 67, "conf_wb_dat_o": 3, "conf_wb_ack_o": 3, "mem_wb_dat_o": 3, @@ -66334,7 +66584,6 @@ ".wb_we_i": 2, ".wb_sel_i": 2, ".wb_stb_i": 2, - "&": 6, ".wb_ack_o": 2, ".shift_reg1": 2, ".graphics_alpha": 2, @@ -66379,7 +66628,6 @@ ".vh_retrace": 2, "vga_lcd": 1, "lcd": 1, - ".clk": 6, ".rst": 1, ".csr_adr_o": 1, ".csr_dat_i": 1, @@ -66416,258 +66664,15 @@ ".csrm_sel_o": 1, ".csrm_we_o": 1, ".csrm_dat_o": 1, - ".csrm_dat_i": 1, - "assign": 23, - "b0": 27, - "t_div_pipelined": 1, - "start": 12, - "dividend": 3, - "divisor": 5, - "data_valid": 7, - "div_by_zero": 2, - "quotient": 2, - "quotient_correct": 1, - "BITS": 2, - "div_pipelined": 2, - "#": 10, - ".BITS": 1, - ".reset_n": 3, - ".dividend": 1, - ".divisor": 1, - ".quotient": 1, - ".div_by_zero": 1, - ".start": 2, - ".data_valid": 2, - "initial": 3, - "#10": 10, - "#50": 2, - "#1": 1, - "#1000": 1, - "finish": 2, - "#5": 3, - "ps2_mouse": 1, - "Clock": 14, - "Input": 2, - "Reset": 1, - "inout": 2, - "ps2_clk": 3, - "PS2": 2, - "Bidirectional": 2, - "ps2_dat": 3, - "Data": 13, - "the_command": 2, - "Command": 1, - "to": 3, - "send": 2, - "mouse": 1, - "send_command": 2, - "Signal": 2, - "command_was_sent": 2, - "command": 1, - "finished": 1, - "sending": 1, - "error_communication_timed_out": 3, - "received_data": 2, - "Received": 1, - "data": 4, - "received_data_en": 4, - "If": 1, - "new": 1, - "has": 1, - "been": 1, - "received": 1, - "start_receiving_data": 3, - "wait_for_incoming_data": 3, - "ps2_clk_posedge": 3, - "Internal": 2, - "Wires": 1, - "ps2_clk_negedge": 3, - "idle_counter": 4, - "Registers": 2, - "ps2_clk_reg": 4, - "ps2_data_reg": 5, - "last_ps2_clk": 4, - "ns_ps2_transceiver": 13, - "State": 1, - "Machine": 1, - "s_ps2_transceiver": 8, - "PS2_STATE_0_IDLE": 10, - "h1": 1, - "PS2_STATE_2_COMMAND_OUT": 2, - "h3": 1, - "PS2_STATE_4_END_DELAYED": 4, - "b1": 19, - "Defaults": 1, - "PS2_STATE_1_DATA_IN": 3, - "||": 1, - "PS2_STATE_3_END_TRANSFER": 3, - "h00": 1, - "&&": 3, - "h01": 1, - "ps2_mouse_cmdout": 1, - "mouse_cmdout": 1, - "Inputs": 2, - ".reset": 2, - ".the_command": 1, - ".send_command": 1, - ".ps2_clk_posedge": 2, - ".ps2_clk_negedge": 2, - ".ps2_clk": 1, - "Bidirectionals": 1, - ".ps2_dat": 1, - ".command_was_sent": 1, - "Outputs": 2, - ".error_communication_timed_out": 1, - "ps2_mouse_datain": 1, - "mouse_datain": 1, - ".wait_for_incoming_data": 1, - ".start_receiving_data": 1, - ".ps2_data": 1, - ".received_data": 1, - ".received_data_en": 1, - "mux": 1, - "opA": 4, - "opB": 3, - "sum": 5, - "dsp_sel": 9, - "out": 5, - "cout": 4, - "b0000": 1, - "b01": 1, - "b11": 1, - "ns/1ps": 2, - "sign_extender": 1, - "INPUT_WIDTH": 5, - "OUTPUT_WIDTH": 4, - "original": 3, - "sign_extended_original": 2, - "sign_extend": 3, - "generate": 3, - "genvar": 3, - "i": 62, - "for": 4, - "+": 36, - "gen_sign_extend": 1, - "endgenerate": 3, - "*": 4, - "{": 11, - "}": 11, - "e0": 1, - "x": 41, - "y": 21, - "e1": 1, - "ch": 1, - "z": 7, - "o": 6, - "maj": 1, - "|": 2, - "s0": 1, - "s1": 1, - "t_button_debounce": 1, - ".CLK_FREQUENCY": 1, - ".DEBOUNCE_HZ": 1, - ".button": 1, - ".debounce": 1, - "bx": 4, - "#100": 1, - "#0.1": 8, - "hex_display": 1, - "num": 5, - "en": 13, - "hex0": 2, - "hex1": 2, - "hex2": 2, - "hex3": 2, - "seg_7": 4, - "hex_group0": 1, - ".num": 4, - ".en": 4, - ".seg": 4, - "hex_group1": 1, - "hex_group2": 1, - "hex_group3": 1, - "sqrt_pipelined": 3, - "optional": 2, - "INPUT_BITS": 28, - "radicand": 12, - "unsigned": 2, - "valid": 2, - "OUTPUT_BITS": 14, - "root": 8, - "number": 2, - "of": 8, - "bits": 2, - "any": 1, - "integer": 1, - "%": 3, - "start_gen": 7, - "propagation": 1, - "OUTPUT_BITS*INPUT_BITS": 9, - "root_gen": 15, - "values": 3, - "radicand_gen": 10, - "mask_gen": 9, - "mask": 3, - "mask_4": 1, - "is": 4, - "odd": 1, - "this": 2, - "a": 5, - "INPUT_BITS*": 27, - "<<": 2, - "i/2": 2, - "even": 1, - "pipeline": 2, - "pipeline_stage": 1, - "INPUT_BITS*i": 5, - "t_sqrt_pipelined": 1, - ".INPUT_BITS": 1, - ".radicand": 1, - ".root": 1, - "#10000": 1, - "control": 1, - "an": 6, - "b": 3, - "c": 3, - "d": 3, - "e": 3, - "f": 2, - "g": 2, - "h": 2, - "j": 2, - "k": 2, - "l": 2, - "FDRSE": 6, - ".INIT": 6, - "Synchronous": 12, - ".S": 6, - "Initial": 6, - "value": 6, - "register": 6, - "DFF2": 1, - ".Q": 6, - ".C": 6, - ".CE": 6, - "enable": 6, - ".D": 6, - ".R": 6, - "set": 6, - "DFF0": 1, - "DFF6": 1, - "DFF4": 1, - "DFF10": 1, - "DFF8": 1, - "pipeline_registers": 1, - "BIT_WIDTH": 5, - "pipe_in": 4, - "pipe_out": 5, - "NUMBER_OF_STAGES": 7, - "BIT_WIDTH*": 5, - "pipe_gen": 6, - "BIT_WIDTH*i": 2 + ".csrm_dat_i": 1 }, "VimL": { + "no": 1, + "toolbar": 1, "set": 7, + "guioptions": 1, + "-": 1, + "T": 1, "nocompatible": 1, "ignorecase": 1, "incsearch": 1, @@ -66675,12 +66680,7 @@ "showmatch": 1, "showcmd": 1, "syntax": 1, - "on": 1, - "no": 1, - "toolbar": 1, - "guioptions": 1, - "-": 1, - "T": 1 + "on": 1 }, "Visual Basic": { "VERSION": 1, @@ -67061,201 +67061,30 @@ "return": 1 }, "XML": { - "": 1, - "name=": 227, - "version=": 17, - "compatVersion=": 1, - "": 1, - "FreeMedForms": 1, - "": 1, - "": 1, - "(": 65, - "C": 1, - ")": 58, - "-": 90, - "by": 14, - "Eric": 1, - "MAEKER": 1, - "MD": 1, - "": 1, - "": 1, - "GPLv3": 1, - "": 1, - "": 1, - "Patient": 1, - "data": 2, - "": 1, - "": 4, - "The": 75, - "XML": 1, - "form": 1, - "loader/saver": 1, - "for": 60, - "FreeMedForms.": 1, - "": 4, - "": 1, - "http": 2, - "//www.freemedforms.com/": 1, - "": 1, - "": 1, - "": 4, - "": 1, - "": 1, - "": 7, - "xmlns=": 8, - "": 26, - "": 3, - "MyCommon": 1, - "": 3, - "": 25, - "": 1, - "Name=": 1, - "": 1, - "Text=": 1, - "": 1, - "": 7, "": 11, + "version=": 17, "encoding=": 7, - "": 1, - "TS": 1, - "": 1, - "language=": 1, - "": 1, - "": 2, - "MainWindow": 1, - "": 2, - "": 8, - "": 8, - "filename=": 8, - "line=": 8, - "": 8, - "United": 1, - "Kingdom": 1, - "": 8, - "": 8, - "Reino": 1, - "Unido": 1, - "": 8, - "": 8, - "God": 1, - "save": 2, - "the": 261, - "Queen": 1, - "Deus": 1, - "salve": 1, - "a": 128, - "Rainha": 1, - "England": 1, - "Inglaterra": 1, - "Wales": 1, - "Gales": 1, - "Scotland": 1, - "Esc": 1, - "cia": 1, - "Northern": 1, - "Ireland": 1, - "Irlanda": 1, - "Norte": 1, - "Portuguese": 1, - "Portugu": 1, - "s": 3, - "English": 1, - "Ingl": 1, - "": 1, - "": 1, + "": 7, "ToolsVersion=": 6, - "": 26, - "": 10, - "Include=": 78, - "": 3, - "{": 6, - "FC737F1": 1, - "C7A5": 1, - "A066": 1, - "A32D752A2FF": 1, - "}": 6, - "": 3, - "": 3, - "cpp": 1, - ";": 52, - "c": 1, - "cc": 1, - "cxx": 1, - "def": 1, - "odl": 1, - "idl": 1, - "hpj": 1, - "bat": 1, - "asm": 1, - "asmx": 1, - "": 3, - "": 10, - "BD": 1, - "b04": 1, - "EB": 1, - "FBE52EBFB": 1, - "h": 1, - "hh": 1, - "hpp": 1, - "hxx": 1, - "hm": 1, - "inl": 1, - "inc": 1, - "xsd": 1, - "DA6AB6": 1, - "F800": 1, - "c08": 1, - "B7A": 1, - "BB121AAD01": 1, - "rc": 1, - "ico": 1, - "cur": 1, - "bmp": 1, - "dlg": 1, - "rc2": 1, - "rct": 1, - "bin": 11, - "rgs": 1, - "gif": 1, - "jpg": 1, - "jpeg": 1, - "jpe": 1, - "resx": 1, - "tiff": 1, - "tif": 1, - "png": 1, - "wav": 1, - "mfcribbon": 1, - "ms": 1, - "": 26, - "": 2, - "": 4, - "Header": 2, - "Files": 7, - "": 2, - "": 2, - "Resource": 2, - "": 1, - "": 8, - "Source": 3, - "": 6, - "": 2, - "": 1, "DefaultTargets=": 5, - "": 6, + "xmlns=": 8, + "": 21, + "Project=": 12, "Condition=": 37, + "": 26, + "": 6, "Debug": 10, "": 6, "": 6, "AnyCPU": 10, "": 6, - "": 1, - "": 1, - "": 2, - "": 2, "": 5, - "c67af951": 1, - "d8d6376993e7": 1, + "{": 6, + "D9BF15": 1, + "-": 90, + "D10": 1, + "ABAD688E8B": 1, + "}": 6, "": 5, "": 4, "Exe": 4, @@ -67264,40 +67093,37 @@ "Properties": 3, "": 2, "": 5, - "nproj_sample": 2, + "csproj_sample": 1, "": 5, "": 4, + "csproj": 1, + "sample": 6, "": 4, "": 5, "v4.5.1": 5, "": 5, "": 3, "": 3, - "": 1, + "": 3, "true": 24, - "": 1, - "": 1, - "Net": 1, - "": 1, - "": 1, - "ProgramFiles": 1, - "Nemerle": 3, - "": 1, - "": 1, - "NemerleBinPathRoot": 1, - "NemerleVersion": 1, - "": 1, - "nproj": 1, - "sample": 6, + "": 3, + "": 25, + "": 6, + "": 6, "": 5, "": 5, + "": 6, + "full": 4, + "": 6, "": 7, "false": 11, "": 7, "": 8, + "bin": 11, "": 8, "": 6, "DEBUG": 3, + ";": 52, "TRACE": 6, "": 6, "": 4, @@ -67305,76 +67131,67 @@ "": 4, "": 8, "": 8, + "pdbonly": 3, "Release": 6, - "": 5, - "OutputPath": 1, - "AssemblyName": 1, - ".xml": 1, - "": 5, + "": 26, "": 30, - "": 3, - "": 3, - "": 5, - "": 1, - "False": 1, - "": 1, - "": 2, - "Nemerle.dll": 1, - "": 2, + "Include=": 78, + "": 26, + "": 10, + "": 5, + "": 7, + "": 2, + "": 2, + "cfa7a11": 1, + "a5cd": 1, + "bd7b": 1, + "b210d4d51a29": 1, + "fsproj_sample": 2, + "": 1, + "": 1, + "": 3, + "fsproj": 1, + "": 3, + "": 2, + "": 2, + "": 5, + "fsproj_sample.XML": 2, + "": 5, + "": 2, + "": 2, "": 2, "True": 13, "": 2, - "": 1, - "Nemerle.Linq.dll": 1, - "": 1, - "": 10, - "": 1, - "": 21, - "Project=": 12, - "": 1, - "": 1, - "": 1, - "Sample": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "Hugh": 2, - "Bot": 2, - "": 1, - "": 1, - "": 1, - "": 121, - "A": 21, - "package": 1, - "of": 76, - "nuget": 1, - "": 122, - "It": 2, - "just": 1, - "works": 1, - "": 1, - "//hubot.github.com": 1, - "": 1, - "": 1, - "": 1, - "https": 1, - "//github.com/github/hubot/LICENSEmd": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "src=": 1, - "target=": 1, - "": 1, - "": 1, + "": 5, + "": 1, + "": 1, + "": 1, + "": 1, + "": 2, + "(": 65, + "MSBuildExtensionsPath32": 2, + ")": 58, + "..": 1, + "Microsoft": 2, + "SDKs": 1, + "F#": 1, + "Framework": 1, + "v4.0": 1, + "Microsoft.FSharp.Targets": 2, + "": 2, + "": 1, + "": 1, + "VisualStudio": 1, + "v": 1, + "VisualStudioVersion": 1, + "FSharp": 1, + "": 1, + "": 1, "": 1, + "name=": 227, "xmlns": 2, "ea=": 2, + "": 4, "This": 21, "easyant": 3, "module.ant": 1, @@ -67391,6 +67208,7 @@ "own": 2, "specific": 8, "target.": 1, + "": 4, "": 2, "": 2, "my": 2, @@ -67410,130 +67228,6 @@ "compile": 1, "step": 1, "": 1, - "D377F": 1, - "A798": 1, - "B3FD04C": 1, - "": 1, - "vbproj_sample.Module1": 1, - "": 1, - "vbproj_sample": 1, - "vbproj": 3, - "": 1, - "Console": 3, - "": 1, - "": 3, - "": 3, - "": 6, - "": 6, - "": 6, - "full": 4, - "": 6, - "": 2, - "": 2, - "": 2, - "": 2, - "sample.xml": 2, - "": 2, - "": 2, - "pdbonly": 3, - "": 1, - "On": 2, - "": 1, - "": 1, - "Binary": 1, - "": 1, - "": 1, - "Off": 1, - "": 1, - "": 1, - "": 1, - "": 3, - "": 3, - "": 3, - "Application.myapp": 1, - "": 3, - "": 3, - "": 1, - "": 1, - "Resources.resx": 1, - "Settings.settings": 1, - "": 1, - "": 1, - "": 1, - "": 3, - "VbMyResourcesResXFileCodeGenerator": 1, - "": 3, - "": 3, - "Resources.Designer.vb": 1, - "": 3, - "": 2, - "My.Resources": 1, - "": 2, - "": 1, - "Designer": 1, - "": 1, - "": 1, - "": 5, - "MyApplicationCodeGenerator": 1, - "Application.Designer.vb": 1, - "": 2, - "SettingsSingleFileGenerator": 1, - "My": 1, - "Settings.Designer.vb": 1, - "Label=": 11, - "": 2, - "Win32": 2, - "": 2, - "BF6EED48": 1, - "BF18": 1, - "C54": 1, - "F": 1, - "BBF19EEDC7C": 1, - "": 1, - "ManagedCProj": 1, - "": 1, - "vcxprojsample": 1, - "": 2, - "Application": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "v120": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "Unicode": 2, - "": 2, - "": 4, - "": 4, - "": 2, - "": 2, - "": 2, - "Level3": 2, - "": 1, - "Disabled": 1, - "": 1, - "": 2, - "WIN32": 2, - "_DEBUG": 1, - "%": 2, - "PreprocessorDefinitions": 2, - "": 2, - "": 4, - "Use": 15, - "": 4, - "": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "NDEBUG": 1, - "Create": 2, "": 1, "": 1, "organisation=": 3, @@ -67541,7 +67235,9 @@ "revision=": 3, "status=": 1, "this": 77, + "a": 128, "module.ivy": 1, + "for": 60, "java": 1, "standard": 1, "application": 2, @@ -67557,6 +67253,7 @@ "description=": 2, "": 1, "": 1, + "": 4, "org=": 1, "rev=": 1, "conf=": 1, @@ -67566,57 +67263,21 @@ "/": 6, "": 1, "": 1, - "D9BF15": 1, - "D10": 1, - "ABAD688E8B": 1, - "csproj_sample": 1, - "csproj": 1, - "cfa7a11": 1, - "a5cd": 1, - "bd7b": 1, - "b210d4d51a29": 1, - "fsproj_sample": 2, - "": 1, - "": 1, - "fsproj": 1, - "": 2, - "": 2, - "fsproj_sample.XML": 2, - "": 2, - "": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "": 2, - "MSBuildExtensionsPath32": 2, - "..": 1, - "Microsoft": 2, - "SDKs": 1, - "F#": 1, - "Framework": 1, - "v4.0": 1, - "Microsoft.FSharp.Targets": 2, - "": 2, - "": 1, - "": 1, - "VisualStudio": 1, - "v": 1, - "VisualStudioVersion": 1, - "FSharp": 1, - "": 1, - "": 1, "": 1, "": 1, + "": 2, "ReactiveUI": 2, + "": 2, "": 1, "": 1, "": 120, + "": 121, "IObservedChange": 5, "generic": 3, "interface": 4, "that": 94, "replaces": 1, + "the": 261, "non": 1, "PropertyChangedEventArgs.": 1, "Note": 7, @@ -67638,12 +67299,15 @@ "casting": 1, "between": 15, "changes.": 2, + "": 122, "": 120, + "The": 75, "object": 42, "has": 16, "raised": 1, "change.": 12, "name": 7, + "of": 76, "property": 74, "changed": 18, "on": 35, @@ -67739,6 +67403,7 @@ "itself": 2, "changes": 13, ".": 20, + "It": 2, "important": 6, "implement": 5, "Changing/Changed": 1, @@ -67815,6 +67480,7 @@ "string": 13, "distinguish": 12, "arbitrarily": 2, + "by": 14, "client.": 2, "Listen": 4, "provides": 6, @@ -67826,6 +67492,7 @@ "to.": 7, "": 12, "": 84, + "A": 21, "identical": 11, "types": 10, "one": 27, @@ -67870,6 +67537,7 @@ "allows": 15, "log": 2, "attached.": 1, + "data": 2, "structure": 1, "representation": 1, "memoizing": 2, @@ -67939,6 +67607,7 @@ "object.": 3, "ViewModel": 8, "another": 3, + "s": 3, "Return": 1, "instance": 2, "type.": 3, @@ -68061,6 +67730,7 @@ "manage": 1, "disk": 1, "download": 1, + "save": 2, "temporary": 1, "folder": 1, "onRelease": 1, @@ -68215,6 +67885,7 @@ "private": 1, "field.": 1, "Reference": 1, + "Use": 15, "custom": 4, "raiseAndSetIfChanged": 1, "doesn": 1, @@ -68289,7 +67960,336 @@ "need": 12, "setup.": 12, "": 1, - "": 1 + "": 1, + "": 1, + "": 1, + "c67af951": 1, + "d8d6376993e7": 1, + "nproj_sample": 2, + "": 1, + "": 1, + "": 1, + "Net": 1, + "": 1, + "": 1, + "ProgramFiles": 1, + "Nemerle": 3, + "": 1, + "": 1, + "NemerleBinPathRoot": 1, + "NemerleVersion": 1, + "": 1, + "nproj": 1, + "OutputPath": 1, + "AssemblyName": 1, + ".xml": 1, + "": 3, + "": 3, + "": 1, + "False": 1, + "": 1, + "": 2, + "Nemerle.dll": 1, + "": 2, + "": 1, + "Nemerle.Linq.dll": 1, + "": 1, + "": 1, + "": 1, + "TS": 1, + "": 1, + "language=": 1, + "": 1, + "MainWindow": 1, + "": 8, + "": 8, + "filename=": 8, + "line=": 8, + "": 8, + "United": 1, + "Kingdom": 1, + "": 8, + "": 8, + "Reino": 1, + "Unido": 1, + "": 8, + "": 8, + "God": 1, + "Queen": 1, + "Deus": 1, + "salve": 1, + "Rainha": 1, + "England": 1, + "Inglaterra": 1, + "Wales": 1, + "Gales": 1, + "Scotland": 1, + "Esc": 1, + "cia": 1, + "Northern": 1, + "Ireland": 1, + "Irlanda": 1, + "Norte": 1, + "Portuguese": 1, + "Portugu": 1, + "English": 1, + "Ingl": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "Sample": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "Hugh": 2, + "Bot": 2, + "": 1, + "": 1, + "": 1, + "package": 1, + "nuget": 1, + "just": 1, + "works": 1, + "": 1, + "http": 2, + "//hubot.github.com": 1, + "": 1, + "": 1, + "": 1, + "https": 1, + "//github.com/github/hubot/LICENSEmd": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "src=": 1, + "target=": 1, + "": 1, + "": 1, + "MyCommon": 1, + "": 1, + "Name=": 1, + "": 1, + "Text=": 1, + "": 1, + "D377F": 1, + "A798": 1, + "B3FD04C": 1, + "": 1, + "vbproj_sample.Module1": 1, + "": 1, + "vbproj_sample": 1, + "vbproj": 3, + "": 1, + "Console": 3, + "": 1, + "": 2, + "": 2, + "": 2, + "": 2, + "sample.xml": 2, + "": 2, + "": 2, + "": 1, + "On": 2, + "": 1, + "": 1, + "Binary": 1, + "": 1, + "": 1, + "Off": 1, + "": 1, + "": 1, + "": 1, + "": 3, + "": 3, + "": 3, + "Application.myapp": 1, + "": 3, + "": 3, + "": 1, + "": 1, + "Resources.resx": 1, + "Settings.settings": 1, + "": 1, + "": 1, + "": 1, + "": 3, + "VbMyResourcesResXFileCodeGenerator": 1, + "": 3, + "": 3, + "Resources.Designer.vb": 1, + "": 3, + "": 2, + "My.Resources": 1, + "": 2, + "": 1, + "Designer": 1, + "": 1, + "": 1, + "MyApplicationCodeGenerator": 1, + "Application.Designer.vb": 1, + "": 2, + "SettingsSingleFileGenerator": 1, + "My": 1, + "Settings.Designer.vb": 1, + "Label=": 11, + "": 2, + "Win32": 2, + "": 2, + "BF6EED48": 1, + "BF18": 1, + "C54": 1, + "F": 1, + "BBF19EEDC7C": 1, + "": 1, + "ManagedCProj": 1, + "": 1, + "vcxprojsample": 1, + "": 2, + "Application": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "v120": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "Unicode": 2, + "": 2, + "": 4, + "": 4, + "": 2, + "": 2, + "": 2, + "": 8, + "Level3": 2, + "": 1, + "Disabled": 1, + "": 1, + "": 2, + "WIN32": 2, + "_DEBUG": 1, + "%": 2, + "PreprocessorDefinitions": 2, + "": 2, + "": 4, + "": 4, + "": 6, + "": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "NDEBUG": 1, + "": 2, + "": 4, + "": 2, + "Create": 2, + "": 2, + "": 10, + "": 3, + "FC737F1": 1, + "C7A5": 1, + "A066": 1, + "A32D752A2FF": 1, + "": 3, + "": 3, + "cpp": 1, + "c": 1, + "cc": 1, + "cxx": 1, + "def": 1, + "odl": 1, + "idl": 1, + "hpj": 1, + "bat": 1, + "asm": 1, + "asmx": 1, + "": 3, + "": 10, + "BD": 1, + "b04": 1, + "EB": 1, + "FBE52EBFB": 1, + "h": 1, + "hh": 1, + "hpp": 1, + "hxx": 1, + "hm": 1, + "inl": 1, + "inc": 1, + "xsd": 1, + "DA6AB6": 1, + "F800": 1, + "c08": 1, + "B7A": 1, + "BB121AAD01": 1, + "rc": 1, + "ico": 1, + "cur": 1, + "bmp": 1, + "dlg": 1, + "rc2": 1, + "rct": 1, + "rgs": 1, + "gif": 1, + "jpg": 1, + "jpeg": 1, + "jpe": 1, + "resx": 1, + "tiff": 1, + "tif": 1, + "png": 1, + "wav": 1, + "mfcribbon": 1, + "ms": 1, + "Header": 2, + "Files": 7, + "": 2, + "Resource": 2, + "": 1, + "Source": 3, + "": 1, + "": 1, + "compatVersion=": 1, + "": 1, + "FreeMedForms": 1, + "": 1, + "": 1, + "C": 1, + "Eric": 1, + "MAEKER": 1, + "MD": 1, + "": 1, + "": 1, + "GPLv3": 1, + "": 1, + "": 1, + "Patient": 1, + "": 1, + "XML": 1, + "form": 1, + "loader/saver": 1, + "FreeMedForms.": 1, + "": 1, + "//www.freemedforms.com/": 1, + "": 1, + "": 1, + "": 1, + "": 1 }, "XProc": { "": 1, @@ -68445,21 +68445,6 @@ }, "Xojo": { "#tag": 88, - "Report": 2, - "Begin": 23, - "BillingReport": 1, - "Compatibility": 2, - "Units": 1, - "Width": 3, - "PageHeader": 1, - "Type": 34, - "Height": 5, - "End": 27, - "Body": 1, - "PageFooter": 1, - "EndReport": 1, - "ReportCode": 1, - "EndReportCode": 1, "Class": 3, "Protected": 1, "App": 1, @@ -68468,6 +68453,7 @@ "Constant": 3, "Name": 31, "kEditClear": 1, + "Type": 34, "String": 3, "Dynamic": 3, "False": 14, @@ -68488,7 +68474,21 @@ "OS": 1, "ViewBehavior": 2, "EndViewBehavior": 2, + "End": 27, "EndClass": 1, + "Report": 2, + "Begin": 23, + "BillingReport": 1, + "Compatibility": 2, + "Units": 1, + "Width": 3, + "PageHeader": 1, + "Height": 5, + "Body": 1, + "PageFooter": 1, + "EndReport": 1, + "ReportCode": 1, + "EndReportCode": 1, "Dim": 3, "dbFile": 3, "As": 4, @@ -68513,6 +68513,35 @@ "db.Rollback": 1, "Else": 2, "db.Commit": 1, + "Menu": 2, + "MainMenuBar": 1, + "MenuItem": 11, + "FileMenu": 1, + "SpecialMenu": 13, + "Text": 13, + "Index": 14, + "-": 14, + "AutoEnable": 13, + "True": 46, + "Visible": 41, + "QuitMenuItem": 1, + "FileQuit": 1, + "ShortcutKey": 6, + "Shortcut": 6, + "EditMenu": 1, + "EditUndo": 1, + "MenuModifier": 5, + "EditSeparator1": 1, + "EditCut": 1, + "EditCopy": 1, + "EditPaste": 1, + "EditClear": 1, + "EditSeparator2": 1, + "EditSelectAll": 1, + "UntitledSeparator": 1, + "AppleMenuItem": 1, + "AboutItem": 1, + "EndMenu": 1, "Toolbar": 2, "MyToolbar": 1, "ToolButton": 2, @@ -68529,7 +68558,6 @@ "cFFFFFF00": 1, "Backdrop": 1, "CloseButton": 1, - "True": 46, "Composite": 1, "Frame": 1, "FullScreen": 1, @@ -68549,7 +68577,6 @@ "Placement": 1, "Resizeable": 1, "Title": 1, - "Visible": 41, "PushButton": 1, "HelloWorldButton": 2, "AutoDeactivate": 1, @@ -68557,8 +68584,6 @@ "ButtonStyle": 1, "Cancel": 1, "Enabled": 1, - "Index": 14, - "-": 14, "InitialParent": 1, "Italic": 1, "Left": 1, @@ -68598,32 +68623,7 @@ "EndViewProperty": 28, "EditorType": 14, "EnumValues": 2, - "EndEnumValues": 2, - "Menu": 2, - "MainMenuBar": 1, - "MenuItem": 11, - "FileMenu": 1, - "SpecialMenu": 13, - "Text": 13, - "AutoEnable": 13, - "QuitMenuItem": 1, - "FileQuit": 1, - "ShortcutKey": 6, - "Shortcut": 6, - "EditMenu": 1, - "EditUndo": 1, - "MenuModifier": 5, - "EditSeparator1": 1, - "EditCut": 1, - "EditCopy": 1, - "EditPaste": 1, - "EditClear": 1, - "EditSeparator2": 1, - "EditSelectAll": 1, - "UntitledSeparator": 1, - "AppleMenuItem": 1, - "AboutItem": 1, - "EndMenu": 1 + "EndEnumValues": 2 }, "Xtend": { "package": 2, @@ -68779,7 +68779,20 @@ "categories": 1 }, "YAML": { + "gem": 1, "-": 25, + "local": 1, + "gen": 1, + "rdoc": 2, + "run": 1, + "tests": 1, + "inline": 1, + "source": 1, + "line": 1, + "numbers": 1, + "gempath": 1, + "/usr/local/rubygems": 1, + "/home/gavin/.rubygems": 1, "http_interactions": 1, "request": 1, "method": 1, @@ -68812,41 +68825,48 @@ "Nov": 1, "GMT": 1, "recorded_with": 1, - "VCR": 1, - "gem": 1, - "local": 1, - "gen": 1, - "rdoc": 2, - "run": 1, - "tests": 1, - "inline": 1, - "source": 1, - "line": 1, - "numbers": 1, - "gempath": 1, - "/usr/local/rubygems": 1, - "/home/gavin/.rubygems": 1 + "VCR": 1 }, "Zephir": { - "extern": 1, - "zend_class_entry": 1, - "*test_router_exception_ce": 1, + "%": 10, + "{": 58, + "#define": 1, + "MAX_FACTOR": 3, + "}": 52, + "namespace": 4, + "Test": 4, ";": 91, - "ZEPHIR_INIT_CLASS": 2, + "#include": 9, + "static": 1, + "long": 3, + "fibonacci": 4, "(": 59, - "Test_Router_Exception": 2, + "n": 5, ")": 57, + "if": 39, + "<": 2, + "return": 26, + "else": 11, + "-": 25, + "+": 5, + "class": 3, + "Cblock": 1, + "public": 22, + "function": 22, + "testCblock1": 1, + "int": 3, + "a": 6, + "testCblock2": 1, "#ifdef": 1, "HAVE_CONFIG_H": 1, - "#include": 9, "#endif": 1, "": 1, "": 1, "": 1, "": 1, - "{": 58, + "ZEPHIR_INIT_CLASS": 2, + "Test_Router_Exception": 2, "ZEPHIR_REGISTER_CLASS_EX": 1, - "Test": 4, "Router": 3, "Exception": 4, "test": 1, @@ -68854,13 +68874,11 @@ "zend_exception_get_default": 1, "TSRMLS_C": 1, "NULL": 1, - "return": 26, "SUCCESS": 1, - "}": 52, - "<": 2, + "extern": 1, + "zend_class_entry": 1, + "*test_router_exception_ce": 1, "php": 1, - "namespace": 4, - "class": 3, "extends": 1, "Route": 1, "protected": 9, @@ -68873,21 +68891,17 @@ "_id": 2, "_name": 3, "_beforeMatch": 3, - "public": 22, - "function": 22, "__construct": 1, "pattern": 37, "paths": 7, "null": 11, "httpMethods": 6, "this": 28, - "-": 25, "reConfigure": 2, "let": 51, "compilePattern": 2, "var": 4, "idPattern": 6, - "if": 39, "memstr": 10, "str_replace": 6, ".": 5, @@ -68901,7 +68915,6 @@ "boolean": 1, "notValid": 5, "false": 3, - "int": 3, "cursor": 4, "cursorVar": 5, "marker": 4, @@ -68920,8 +68933,6 @@ "for": 4, "in": 4, "1": 3, - "else": 11, - "+": 5, "substr": 3, "break": 9, "&&": 6, @@ -68986,18 +68997,7 @@ "getHostname": 1, "convert": 1, "converter": 2, - "getConverters": 1, - "%": 10, - "#define": 1, - "MAX_FACTOR": 3, - "static": 1, - "long": 3, - "fibonacci": 4, - "n": 5, - "Cblock": 1, - "testCblock1": 1, - "a": 6, - "testCblock2": 1 + "getConverters": 1 }, "Zimpl": { "#": 2, @@ -69065,85 +69065,75 @@ "db.part/user": 17 }, "fish": { - "function": 6, - "funced": 3, - "-": 102, - "description": 2, + "#": 18, "set": 49, + "-": 102, + "g": 1, + "IFS": 4, + "n": 5, + "t": 2, "l": 15, - "editor": 7, - "EDITOR": 1, - "interactive": 8, - "funcname": 14, - "while": 2, + "configdir": 2, + "/.config": 1, + "if": 21, "q": 9, - "argv": 9, + "XDG_CONFIG_HOME": 2, + "end": 33, + "not": 8, + "fish_function_path": 4, + "configdir/fish/functions": 1, + "__fish_sysconfdir/functions": 1, + "__fish_datadir/functions": 3, + "contains": 4, "[": 13, "]": 13, - "switch": 3, - "case": 9, - "h": 1, - "help": 1, - "__fish_print_help": 1, - "return": 6, - "e": 6, - "i": 5, - "set_color": 4, - "red": 2, - "printf": 3, - "(": 7, - "_": 3, - ")": 7, - "normal": 2, - "end": 33, - "if": 21, - "begin": 2, - ";": 7, - "or": 3, - "not": 8, + "fish_complete_path": 4, + "configdir/fish/completions": 1, + "__fish_sysconfdir/completions": 1, + "__fish_datadir/completions": 3, "test": 7, - "init": 5, - "n": 5, - "nend": 2, - "editor_cmd": 2, - "eval": 5, - "type": 1, - "f": 3, - "/dev/null": 2, - "fish": 3, - "z": 1, - "IFS": 4, - "functions": 5, - "|": 3, - "fish_indent": 2, - "no": 2, - "indent": 1, - "prompt": 2, - "read": 1, - "p": 1, - "c": 1, - "s": 1, - "cmd": 2, - "echo": 3, - "TMPDIR": 2, - "/tmp": 1, - "tmpname": 8, - "%": 2, - "self": 2, - "random": 2, - "else": 3, - ".": 2, - "stat": 2, - "status": 7, - "rm": 1, - "S": 1, "d": 3, - "#": 18, + "/usr/xpg4/bin": 3, + "PATH": 6, + "path_list": 4, + "/bin": 1, + "/usr/bin": 1, + "/usr/X11R6/bin": 1, + "/usr/local/bin": 1, + "__fish_bin_dir": 1, + "switch": 3, + "USER": 1, + "case": 9, + "root": 1, + "/sbin": 1, + "/usr/sbin": 1, + "/usr/local/sbin": 1, + "for": 1, + "i": 5, + "in": 2, + "function": 6, + "fish_sigtrap_handler": 1, + "on": 2, + "signal": 1, + "TRAP": 1, + "no": 2, + "scope": 1, + "shadowing": 1, + "description": 2, + "breakpoint": 1, + "__fish_on_interactive": 2, + "event": 1, + "fish_prompt": 1, + "__fish_config_interactive": 1, + "functions": 5, + "e": 6, + "eval": 5, + "S": 1, "If": 2, "we": 2, "are": 1, - "in": 2, "an": 1, + "interactive": 8, "shell": 1, "should": 2, "enable": 1, @@ -69160,7 +69150,6 @@ "was": 1, "executed.": 1, "don": 1, - "t": 2, "do": 1, "this": 1, "commands": 1, @@ -69176,49 +69165,60 @@ "using": 1, "eval.": 1, "mode": 5, + "status": 7, "is": 3, + "else": 3, "none": 1, + "echo": 3, + "|": 3, + ".": 2, "<": 1, "&": 1, "res": 2, - "g": 1, - "configdir": 2, - "/.config": 1, - "XDG_CONFIG_HOME": 2, - "fish_function_path": 4, - "configdir/fish/functions": 1, - "__fish_sysconfdir/functions": 1, - "__fish_datadir/functions": 3, - "contains": 4, - "fish_complete_path": 4, - "configdir/fish/completions": 1, - "__fish_sysconfdir/completions": 1, - "__fish_datadir/completions": 3, - "/usr/xpg4/bin": 3, - "PATH": 6, - "path_list": 4, - "/bin": 1, - "/usr/bin": 1, - "/usr/X11R6/bin": 1, - "/usr/local/bin": 1, - "__fish_bin_dir": 1, - "USER": 1, - "root": 1, - "/sbin": 1, - "/usr/sbin": 1, - "/usr/local/sbin": 1, - "for": 1, - "fish_sigtrap_handler": 1, - "on": 2, - "signal": 1, - "TRAP": 1, - "scope": 1, - "shadowing": 1, - "breakpoint": 1, - "__fish_on_interactive": 2, - "event": 1, - "fish_prompt": 1, - "__fish_config_interactive": 1 + "return": 6, + "funced": 3, + "editor": 7, + "EDITOR": 1, + "funcname": 14, + "while": 2, + "argv": 9, + "h": 1, + "help": 1, + "__fish_print_help": 1, + "set_color": 4, + "red": 2, + "printf": 3, + "(": 7, + "_": 3, + ")": 7, + "normal": 2, + "begin": 2, + ";": 7, + "or": 3, + "init": 5, + "nend": 2, + "editor_cmd": 2, + "type": 1, + "f": 3, + "/dev/null": 2, + "fish": 3, + "z": 1, + "fish_indent": 2, + "indent": 1, + "prompt": 2, + "read": 1, + "p": 1, + "c": 1, + "s": 1, + "cmd": 2, + "TMPDIR": 2, + "/tmp": 1, + "tmpname": 8, + "%": 2, + "self": 2, + "random": 2, + "stat": 2, + "rm": 1 }, "wisp": { ";": 199, From 06e095e5fcce677205468a34074949afa3f0f7c2 Mon Sep 17 00:00:00 2001 From: Josh Oldenburg Date: Tue, 1 Jul 2014 21:38:51 -0400 Subject: [PATCH 096/268] Only ignore Pods/ for CocoaPods. --- lib/linguist/vendor.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/linguist/vendor.yml b/lib/linguist/vendor.yml index bc98429f..130d3ff1 100644 --- a/lib/linguist/vendor.yml +++ b/lib/linguist/vendor.yml @@ -125,8 +125,6 @@ ## Obj-C ## # Cocoapods -- ^Podfile$ -- ^Podfile.lock$ - ^Pods/$ # Sparkle From a2dd9d2c8cabcdb23b3f30b6c9f3f0451d5a9228 Mon Sep 17 00:00:00 2001 From: Clayton O'Neill Date: Wed, 2 Jul 2014 10:46:26 -0400 Subject: [PATCH 097/268] Add Puppetfile to ruby filenames --- lib/linguist/languages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index e2586022..06995f68 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1900,6 +1900,7 @@ Ruby: - Jarfile - Mavenfile - Podfile + - Puppetfile - Thorfile - Vagrantfile - buildfile From f5e4789ccb33f97c9d78d6b4f364c62468d77482 Mon Sep 17 00:00:00 2001 From: Vicent Marti Date: Wed, 2 Jul 2014 19:51:06 +0200 Subject: [PATCH 098/268] Properly handle detection of binary files --- lib/linguist/language.rb | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/lib/linguist/language.rb b/lib/linguist/language.rb index ed9b68e9..81e70361 100644 --- a/lib/linguist/language.rb +++ b/lib/linguist/language.rb @@ -92,13 +92,20 @@ module Linguist # Public: Detects the Language of the blob. # - # blob - an object that implements the Linguist `Blob` interface; + # blob - an object that includes the Linguist `BlobHelper` interface; # see Linguist::LazyBlob and Linguist::FileBlob for examples # # Returns Language or nil. def self.detect(blob) name = blob.name.to_s + # Check if the blob is possibly binary and bail early; this is a cheap + # test that uses the extension name to guess a binary binary mime type. + # + # We'll perform a more comprehensive test later which actually involves + # looking for binary characters in the blob + return nil if blob.likely_binary? + # A bit of an elegant hack. If the file is executable but extensionless, # append a "magic" extension so it can be classified with other # languages that have shebang scripts. @@ -116,8 +123,8 @@ module Linguist data = blob.data possible_language_names = possible_languages.map(&:name) - # Don't bother with emptiness - if data.nil? || data == "" + # Don't bother with binary contents or an empty file + if blob.binary? || data.nil? || data == "" nil # Check if there's a shebang line and use that as authoritative elsif (result = find_by_shebang(data)) && !result.empty? From 458831b8853d6a39e5b020367d8ad52b5681bd6b Mon Sep 17 00:00:00 2001 From: Vicent Marti Date: Wed, 2 Jul 2014 19:52:05 +0200 Subject: [PATCH 099/268] 3.0.2 --- lib/linguist/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/version.rb b/lib/linguist/version.rb index c77f7734..b7ed14c9 100644 --- a/lib/linguist/version.rb +++ b/lib/linguist/version.rb @@ -1,3 +1,3 @@ module Linguist - VERSION = "3.0.0" + VERSION = "3.0.2" end From aa72012d417310780ade1954a057a1a8ece64bce Mon Sep 17 00:00:00 2001 From: Josh Oldenburg Date: Thu, 3 Jul 2014 16:18:58 -0400 Subject: [PATCH 100/268] Ignore everything in the Pods directory. --- lib/linguist/vendor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/vendor.yml b/lib/linguist/vendor.yml index 130d3ff1..562f51f0 100644 --- a/lib/linguist/vendor.yml +++ b/lib/linguist/vendor.yml @@ -125,7 +125,7 @@ ## Obj-C ## # Cocoapods -- ^Pods/$ +- ^Pods/ # Sparkle - (^|/)Sparkle/ From a6ccce7b760536b93cf54dc23f31b7590f913e3f Mon Sep 17 00:00:00 2001 From: Thomas Van Doren Date: Wed, 2 Jul 2014 14:51:15 -0700 Subject: [PATCH 101/268] Add Chapel parallel programming language. Includes several example programs from source distribution. --- lib/linguist/languages.yml | 8 + lib/linguist/samples.json | 803 +++++++++++++- samples/Chapel/distributions.chpl | 304 ++++++ samples/Chapel/hello.chpl | 1 + samples/Chapel/lulesh.chpl | 1692 +++++++++++++++++++++++++++++ samples/Chapel/nbody.chpl | 147 +++ samples/Chapel/quicksort.chpl | 145 +++ 7 files changed, 3097 insertions(+), 3 deletions(-) create mode 100644 samples/Chapel/distributions.chpl create mode 100644 samples/Chapel/hello.chpl create mode 100644 samples/Chapel/lulesh.chpl create mode 100644 samples/Chapel/nbody.chpl create mode 100644 samples/Chapel/quicksort.chpl diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 32143b7e..af5816a1 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -347,6 +347,14 @@ Ceylon: extensions: - .ceylon +Chapel: + type: programming + color: "#8dc63f" + aliases: + - chpl + extensions: + - .chpl + ChucK: lexer: Java extensions: diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index f48ee225..979c18ab 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -83,6 +83,9 @@ "Ceylon": [ ".ceylon" ], + "Chapel": [ + ".chpl" + ], "Cirru": [ ".cirru" ], @@ -792,8 +795,8 @@ "exception.zep.php" ] }, - "tokens_total": 650233, - "languages_total": 870, + "tokens_total": 659840, + "languages_total": 875, "tokens": { "ABAP": { "*/**": 1, @@ -16278,6 +16281,798 @@ "<=>": 1, "other.name": 1 }, + "Chapel": { + "//": 150, + "use": 5, + "BlockDist": 2, + "CyclicDist": 1, + "BlockCycDist": 1, + "ReplicatedDist": 2, + ";": 516, + "DimensionalDist2D": 2, + "ReplicatedDim": 2, + "BlockCycDim": 1, + "config": 10, + "const": 59, + "n": 16, + "Space": 12, + "{": 122, + "}": 120, + "BlockSpace": 2, + "dmapped": 8, + "Block": 4, + "(": 626, + "boundingBox": 2, + ")": 626, + "var": 72, + "BA": 3, + "[": 920, + "]": 920, + "int": 21, + "forall": 43, + "ba": 4, + "in": 76, + "do": 62, + "here.id": 7, + "writeln": 53, + "MyLocaleView": 5, + "#numLocales": 1, + "MyLocales": 5, + "locale": 1, + "reshape": 2, + "Locales": 6, + "BlockSpace2": 2, + "targetLocales": 1, + "BA2": 3, + "CyclicSpace": 2, + "Cyclic": 1, + "startIdx": 2, + "Space.low": 5, + "CA": 3, + "ca": 2, + "BlkCycSpace": 2, + "BlockCyclic": 1, + "blocksize": 1, + "BCA": 3, + "bca": 2, + "ReplicatedSpace": 2, + "RA": 11, + "ra": 4, + "RA.numElements": 1, + "A": 13, + "i": 250, + "j": 25, + "i*100": 1, + "+": 334, + "on": 7, + "here": 3, + "LocaleSpace.high": 3, + "nl1": 2, + "nl2": 2, + "if": 98, + "numLocales": 5, + "then": 80, + "else": 16, + "numLocales/2": 1, + "#nl1": 2, + "#nl2": 1, + "#nl1*nl2": 1, + "DimReplicatedBlockcyclicSpace": 2, + "new": 7, + "BlockCyclicDim": 1, + "lowIdx": 1, + "blockSize": 1, + "DRBA": 3, + "for": 36, + "locId1": 2, + "drba": 2, + "Helper": 2, + "print": 5, + "to": 9, + "the": 10, + "console": 1, + "Time": 2, + "get": 3, + "timing": 6, + "routines": 1, + "benchmarking": 1, + "block": 1, + "-": 345, + "distributed": 1, + "arrays": 6, + "luleshInit": 1, + "initialization": 1, + "code": 1, + "data": 1, + "set": 4, + "param": 25, + "useBlockDist": 5, + "CHPL_COMM": 1, + "use3DRepresentation": 4, + "false": 4, + "useSparseMaterials": 3, + "true": 5, + "printWarnings": 3, + "&&": 9, + "luleshInit.filename": 1, + "halt": 5, + "initialEnergy": 2, + "e": 84, + "initial": 1, + "energy": 5, + "value": 1, + "showProgress": 3, + "time": 9, + "and": 4, + "dt": 14, + "values": 1, + "each": 1, + "step": 1, + "debug": 8, + "various": 1, + "info": 1, + "doTiming": 4, + "main": 3, + "timestep": 1, + "loop": 2, + "printCoords": 2, + "final": 1, + "computed": 1, + "coordinates": 2, + "XI_M": 2, + "XI_M_SYMM": 4, + "XI_M_FREE": 3, + "XI_P": 2, + "c": 7, + "XI_P_SYMM": 3, + "XI_P_FREE": 3, + "ETA_M": 2, + "ETA_M_SYMM": 4, + "ETA_M_FREE": 3, + "ETA_P": 2, + "c0": 1, + "ETA_P_SYMM": 3, + "ETA_P_FREE": 3, + "ZETA_M": 2, + "ZETA_M_SYMM": 4, + "ZETA_M_FREE": 3, + "ZETA_P": 2, + "xc00": 1, + "ZETA_P_SYMM": 3, + "ZETA_P_FREE": 3, + "numElems": 2, + "numNodes": 1, + "initProblemSize": 1, + "ElemSpace": 4, + "#elemsPerEdge": 3, + "#numElems": 1, + "NodeSpace": 4, + "#nodesPerEdge": 3, + "#numNodes": 1, + "Elems": 45, + "Nodes": 16, + "x": 111, + "y": 107, + "z": 107, + "real": 60, + "nodesPerElem": 6, + "elemToNode": 7, + "nodesPerElem*index": 1, + "lxim": 3, + "lxip": 3, + "letam": 3, + "letap": 3, + "lzetam": 3, + "lzetap": 3, + "index": 4, + "XSym": 4, + "YSym": 4, + "ZSym": 4, + "sparse": 3, + "subdomain": 3, + "u_cut": 5, + "hgcoef": 1, + "qstop": 2, + "monoq_max_slope": 7, + "monoq_limiter_mult": 7, + "e_cut": 3, + "p_cut": 6, + "ss4o3": 1, + "/3.0": 2, + "q_cut": 2, + "v_cut": 2, + "qlc_monoq": 2, + "qqc_monoq": 2, + "qqc": 1, + "qqc2": 1, + "*": 260, + "qqc**2": 1, + "eosvmax": 14, + "eosvmin": 9, + "pmin": 7, + "emin": 7, + "dvovmax": 1, + "refdens": 3, + "deltatimemultlb": 1, + "deltatimemultub": 1, + "dtmax": 1, + "stoptime": 3, + "maxcycles": 3, + "max": 2, + "dtfixed": 2, + "MatElems": 9, + "MatElemsType": 2, + "enumerateMatElems": 2, + "proc": 44, + "type": 1, + "return": 15, + "Elems.type": 1, + "iter": 3, + "yield": 3, + "elemBC": 16, + "p": 10, + "pressure": 1, + "q": 13, + "ql": 3, + "linear": 1, + "term": 2, + "qq": 3, + "quadratic": 1, + "v": 9, + "//relative": 1, + "volume": 21, + "vnew": 9, + "volo": 5, + "reference": 1, + "delv": 3, + "m_vnew": 1, + "m_v": 1, + "vdov": 4, + "derivative": 1, + "over": 2, + "arealg": 2, + "elem": 3, + "characteristic": 2, + "length": 2, + "ss": 2, + "elemMass": 4, + "mass": 12, + "xd": 8, + "yd": 8, + "zd": 8, + "velocities": 2, + "xdd": 3, + "ydd": 3, + "zdd": 3, + "acceleration": 1, + "fx": 8, + "fy": 8, + "fz": 8, + "atomic": 2, + "forces": 1, + "nodalMass": 3, + "current": 1, + "deltatime": 3, + "variable": 1, + "increment": 1, + "dtcourant": 1, + "e20": 2, + "courant": 1, + "constraint": 2, + "dthydro": 1, + "change": 2, + "cycle": 5, + "iteration": 1, + "count": 1, + "simulation": 1, + "initLulesh": 2, + "st": 4, + "getCurrentTime": 4, + "while": 4, + "<": 42, + "iterTime": 2, + "TimeIncrement": 2, + "LagrangeLeapFrog": 1, + "deprint": 3, + "format": 9, + "et": 3, + "/cycle": 1, + "outfile": 1, + "open": 1, + "iomode.cw": 1, + "writer": 1, + "outfile.writer": 1, + "fmtstr": 4, + "writer.writeln": 1, + "writer.close": 1, + "outfile.close": 1, + "initCoordinates": 1, + "initElemToNodeMapping": 1, + "initGreekVars": 1, + "initXSyms": 1, + "initYSyms": 1, + "initZSyms": 1, + "//calculated": 1, + "fly": 1, + "using": 1, + "elemToNodes": 3, + "initMasses": 2, + "octantCorner": 2, + "initBoundaryConditions": 2, + "massAccum": 3, + "eli": 18, + "x_local": 11, + "y_local": 11, + "z_local": 11, + "*real": 40, + "localizeNeighborNodes": 6, + "CalcElemVolume": 3, + "neighbor": 2, + ".add": 1, + ".read": 1, + "/": 26, + "surfaceNode": 8, + "mask": 16, + "<<": 2, + "&": 18, + "f": 4, + "|": 14, + "xf0": 4, + "xcc": 4, + "check": 3, + "loc": 4, + "maxloc": 1, + "reduce": 2, + "zip": 1, + "freeSurface": 3, + "initFreeSurface": 1, + "b": 4, + "inline": 5, + "ref": 19, + "noi": 4, + "TripleProduct": 4, + "x1": 1, + "y1": 1, + "z1": 1, + "x2": 1, + "y2": 1, + "z2": 1, + "x3": 1, + "y3": 1, + "z3": 1, + "x1*": 1, + "y2*z3": 1, + "z2*y3": 1, + "x2*": 1, + "z1*y3": 1, + "y1*z3": 1, + "x3*": 1, + "y1*z2": 1, + "z1*y2": 1, + "dx61": 2, + "dy61": 2, + "dz61": 2, + "dx70": 2, + "dy70": 2, + "dz70": 2, + "dx63": 2, + "dy63": 2, + "dz63": 2, + "dx20": 2, + "dy20": 2, + "dz20": 2, + "dx50": 2, + "dy50": 2, + "dz50": 2, + "dx64": 2, + "dy64": 2, + "dz64": 2, + "dx31": 2, + "dy31": 2, + "dz31": 2, + "dx72": 2, + "dy72": 2, + "dz72": 2, + "dx43": 2, + "dy43": 2, + "dz43": 2, + "dx57": 2, + "dy57": 2, + "dz57": 2, + "dx14": 2, + "dy14": 2, + "dz14": 2, + "dx25": 2, + "dy25": 2, + "dz25": 2, + "InitStressTermsForElems": 1, + "sigxx": 2, + "sigyy": 2, + "sigzz": 2, + "D": 9, + "CalcElemShapeFunctionDerivatives": 2, + "b_x": 18, + "b_y": 18, + "b_z": 18, + "fjxxi": 5, + ".125": 9, + "fjxet": 6, + "fjxze": 5, + "fjyxi": 5, + "fjyet": 6, + "fjyze": 5, + "fjzxi": 5, + "fjzet": 6, + "fjzze": 5, + "cjxxi": 5, + "cjxet": 6, + "cjxze": 5, + "cjyxi": 5, + "cjyet": 6, + "cjyze": 5, + "cjzxi": 5, + "cjzet": 6, + "cjzze": 5, + "CalcElemNodeNormals": 1, + "pfx": 15, + "pfy": 15, + "pfz": 15, + "ElemFaceNormal": 7, + "n1": 23, + "n2": 23, + "n3": 23, + "n4": 23, + "bisectX0": 3, + "bisectY0": 3, + "bisectZ0": 3, + "bisectX1": 3, + "bisectY1": 3, + "bisectZ1": 3, + "areaX": 5, + "areaY": 5, + "areaZ": 5, + "rx": 6, + "ry": 6, + "rz": 6, + "//results": 1, + "SumElemStressesToNodeForces": 1, + "stress_xx": 2, + "stress_yy": 2, + "stress_zz": 2, + "CalcElemVolumeDerivative": 1, + "VoluDer": 9, + "n0": 13, + "n5": 13, + "ox": 1, + "oy": 1, + "oz": 1, + "ox/12.0": 1, + "oy/12.0": 1, + "oz/12.0": 1, + "dvdx": 10, + "dvdy": 10, + "dvdz": 10, + "CalcElemFBHourglassForce": 1, + "hourgam": 7, + "coefficient": 4, + "hgfx": 2, + "hgfy": 2, + "hgfz": 2, + "hx": 3, + "hy": 3, + "hz": 3, + "shx": 3, + "shy": 3, + "shz": 3, + "CalcElemCharacteristicLength": 2, + "AreaFace": 7, + "p0": 7, + "p1": 7, + "p2": 7, + "p3": 7, + "gx": 5, + "gy": 5, + "gz": 5, + "area": 2, + "charLength": 2, + "sqrt": 10, + "CalcElemVelocityGradient": 2, + "xvel": 25, + "yvel": 25, + "zvel": 25, + "detJ": 5, + "d": 12, + "inv_detJ": 10, + "dyddx": 2, + "dxddy": 2, + "dzddx": 2, + "dxddz": 2, + "dzddy": 2, + "dyddz": 2, + "CalcPressureForElems": 4, + "p_new": 17, + "bvc": 15, + "pbvc": 14, + "e_old": 7, + "compression": 10, + "vnewc": 22, + "c1s": 3, + "abs": 8, + "//impossible": 1, + "targetdt": 1, + "//don": 1, + "t": 3, + "have": 2, + "negative": 2, + "determ": 1, + "can": 2, + "we": 1, + "be": 2, + "able": 1, + "write": 1, + "these": 1, + "as": 1, + "follows": 1, + "CalcVelocityForNodes": 1, + "local": 8, + "xdtmp": 4, + "ydtmp": 4, + "zdtmp": 4, + "CalcPositionForNodes": 1, + "ijk": 7, + "CalcLagrangeElements": 1, + "dxx": 6, + "dyy": 6, + "dzz": 6, + "CalcKinematicsForElems": 2, + "k": 20, + "vdovthird": 4, + "<=>": 7, + "0": 5, + "all": 1, + "elements": 3, + "8": 4, + "6": 1, + "nodal": 2, + "from": 2, + "global": 3, + "copy": 2, + "into": 3, + "xd_local": 4, + "yd_local": 4, + "zd_local": 4, + "dt2": 4, + "5": 1, + "wish": 1, + "this": 2, + "was": 1, + "too": 1, + "calculations": 1, + "relativeVolume": 3, + "1": 2, + "put": 1, + "velocity": 3, + "gradient": 3, + "quantities": 1, + "their": 1, + "2": 1, + "3": 1, + "sungeun": 1, + "Temporary": 1, + "array": 4, + "reused": 1, + "throughout": 1, + "delv_xi": 12, + "delv_eta": 12, + "delv_zeta": 12, + "position": 1, + "delx_xi": 7, + "delx_eta": 7, + "delx_zeta": 7, + "CalcQForElems": 1, + "MONOTONIC": 1, + "Q": 1, + "option": 1, + "Calculate": 1, + "gradients": 2, + "CalcMonotonicQGradientsForElems": 2, + "Transfer": 2, + "veloctiy": 1, + "first": 1, + "order": 1, + "problem": 1, + "commElements": 1, + "CommElements": 1, + "monoQ": 1, + "*/": 1, + "CalcMonotonicQForElems": 2, + "ApplyMaterialPropertiesForElems": 1, + "matelm": 2, + "vc": 6, + "exit": 1, + "EvalEOSForElems": 2, + "UpdateVolumesForElems": 1, + "tmpV": 4, + "ptiny": 9, + "xl": 26, + "yl": 26, + "zl": 26, + "xvl": 26, + "yvl": 26, + "zvl": 26, + "vol": 5, + "norm": 20, + "ax": 7, + "ay": 7, + "az": 7, + "dxv": 4, + "dyv": 4, + "dzv": 4, + "dxj": 1, + "dyj": 1, + "dzj": 1, + "dxi": 1, + "dyi": 1, + "dzi": 1, + "dxk": 1, + "dyk": 1, + "dzk": 1, + "dyi*dzj": 1, + "dzi*dyj": 1, + "dzi*dxj": 1, + "dxi*dzj": 1, + "dxi*dyj": 1, + "dyi*dxj": 1, + "ax*ax": 3, + "ay*ay": 3, + "az*az": 3, + "ax*dxv": 3, + "ay*dyv": 3, + "az*dzv": 3, + "dyj*dzk": 1, + "dzj*dyk": 1, + "dzj*dxk": 1, + "dxj*dzk": 1, + "dxj*dyk": 1, + "dyj*dxk": 1, + "dyk*dzi": 1, + "dzk*dyi": 1, + "dzk*dxi": 1, + "dxk*dzi": 1, + "dxk*dyi": 1, + "dyk*dxi": 1, + "//got": 1, + "rid": 1, + "of": 3, + "call": 1, + "through": 1, + "bcMask": 7, + "delvm": 27, + "delvp": 27, + "select": 6, + "when": 18, + "phixi": 10, + "phieta": 10, + "phizeta": 10, + "qlin": 4, + "qquad": 4, + "delvxxi": 4, + "delvxeta": 4, + "delvxzeta": 4, + "rho": 3, + "delvxxi**2": 1, + "phixi**2": 1, + "delvxeta**2": 1, + "phieta**2": 1, + "delvxzeta**2": 1, + "phizeta**2": 1, + "rho0": 8, + "delvc": 11, + "p_old": 8, + "q_old": 7, + "compHalfStep": 8, + "qq_old": 7, + "ql_old": 7, + "work": 5, + "e_new": 25, + "q_new": 11, + "vchalf": 2, + "CalcEnergyForElems": 2, + "CalcSoundSpeedForElems": 2, + "sixth": 2, + "pHalfStep": 5, + "vhalf": 1, + "ssc": 18, + "vhalf**2": 1, + "q_tilde": 4, + "**2": 6, + "enewc": 2, + "pnewc": 2, + "ssTmp": 4, + "elemToNodesTuple": 1, + "title": 2, + "string": 1, + "pi": 1, + "solarMass": 7, + "pi**2": 1, + "daysPerYear": 13, + "record": 1, + "body": 6, + "pos": 5, + "does": 1, + "not": 1, + "after": 1, + "it": 1, + "is": 1, + "up": 1, + "bodies": 8, + "numbodies": 5, + "bodies.numElements": 1, + "initSun": 2, + "writef": 2, + "advance": 2, + "b.v": 2, + "b.mass": 1, + ".v": 1, + "updateVelocities": 2, + "b1": 2, + "b2": 2, + "dpos": 4, + "b1.pos": 2, + "b2.pos": 2, + "mag": 3, + "sumOfSquares": 4, + "**3": 1, + "b1.v": 2, + "b2.mass": 2, + "b2.v": 1, + "b1.mass": 3, + "b.pos": 1, + "Random": 1, + "random": 1, + "number": 1, + "generation": 1, + "Timer": 2, + "class": 1, + "timer": 2, + "sort": 1, + "**15": 1, + "size": 1, + "sorted": 1, + "thresh": 6, + "recursive": 1, + "depth": 1, + "serialize": 1, + "verbose": 7, + "out": 1, + "many": 1, + "bool": 1, + "disable": 1, + "numbers": 1, + "fillRandom": 1, + "timer.start": 1, + "pqsort": 4, + "timer.stop": 1, + "timer.elapsed": 1, + "arr": 32, + "low": 12, + "arr.domain.low": 1, + "high": 14, + "arr.domain.high": 1, + "where": 2, + "arr.rank": 2, + "bubbleSort": 2, + "pivotVal": 9, + "findPivot": 2, + "pivotLoc": 3, + "partition": 2, + "serial": 1, + "cobegin": 1, + "mid": 7, + "ilo": 9, + "ihi": 6, + "low..high": 2 + }, "Cirru": { "print": 38, "array": 14, @@ -70803,6 +71598,7 @@ "COBOL": 90, "CSS": 43867, "Ceylon": 50, + "Chapel": 9607, "Cirru": 244, "Clojure": 510, "CoffeeScript": 2951, @@ -71003,6 +71799,7 @@ "COBOL": 4, "CSS": 2, "Ceylon": 1, + "Chapel": 5, "Cirru": 9, "Clojure": 7, "CoffeeScript": 9, @@ -71179,5 +71976,5 @@ "fish": 3, "wisp": 1 }, - "md5": "b82e97a2c9c123d8e370eeffe64a1a1d" + "md5": "4c7029e118ceca989e36b7f3c025a771" } \ No newline at end of file diff --git a/samples/Chapel/distributions.chpl b/samples/Chapel/distributions.chpl new file mode 100644 index 00000000..a3e5f81d --- /dev/null +++ b/samples/Chapel/distributions.chpl @@ -0,0 +1,304 @@ +// +// Distributions Primer +// +// This primer demonstrates uses of some of Chapel's standard +// distributions. To use these distributions in a Chapel program, +// the respective module must be used: +// +use BlockDist, CyclicDist, BlockCycDist, ReplicatedDist; +use DimensionalDist2D, ReplicatedDim, BlockCycDim; + +// +// For each distribution, we'll create a distributed domain and array +// and then initialize it just to give a brief flavor of how the +// distribution maps across locales. Running this example on 6 +// locales does a nice job of illustrating the distribution +// characteristics. +// +// All of these distributions support options to map to a different +// virtual locale grid than the one used by default (a +// multidimensional factoring of the built-in Locales array), as well +// as to control the amount of parallelism used in data parallel +// loops. See the Standard Distributions chapter of the language spec +// for more details. +// + +// +// Make the program size configurable from the command line. +// +config const n = 8; + +// +// Declare a 2-dimensional domain Space that we will later use to +// initialize the distributed domains. +// +const Space = {1..n, 1..n}; + +// +// The Block distribution distributes a bounding box from +// n-dimensional space across the target locale array viewed as an +// n-dimensional virtual locale grid. The bounding box is blocked +// into roughly equal portions across the locales. Note that domains +// declared over a Block distribution can also store indices outside +// of the bounding box; the bounding box is merely used to compute +// the blocking of space. +// +// In this example, we declare a 2-dimensional Block-distributed +// domain BlockSpace and a Block-distributed array BA declared over +// the domain. +// +const BlockSpace = Space dmapped Block(boundingBox=Space); +var BA: [BlockSpace] int; + +// +// To illustrate how the index set is distributed across locales, +// we'll use a forall loop to initialize each array element to the +// locale ID that stores that index/element/iteration. +// +forall ba in BA do + ba = here.id; + +// +// Output the Block-distributed array to visually see how the elements +// are partitioned across the locales. +// +writeln("Block Array Index Map"); +writeln(BA); +writeln(); + +// +// Most of Chapel's standard distributions support an optional +// targetLocales argument that permits you to pass in your own +// array of locales to be targeted. In general, the targetLocales +// argument should match the rank of the distribution. So for +// example, to map a Block to a [numLocales x 1] view of the +// locale set, one could do something like this: + +// +// We start by creating our own array of the locale values. Here +// we use the standard array reshape function for convenience, +// but more generally, this array could be accessed/assigned like any +// other. +// + +var MyLocaleView = {0..#numLocales, 1..1}; +var MyLocales: [MyLocaleView] locale = reshape(Locales, MyLocaleView); + +// +// Then we'll declare a distributed domain/array that targets +// this view of the locales: +// + +const BlockSpace2 = Space dmapped Block(boundingBox=Space, + targetLocales=MyLocales); +var BA2: [BlockSpace2] int; + +// +// Then we'll do a similar computation as before to verify where +// everything ended up: +// +forall ba in BA2 do + ba = here.id; + +writeln("Block Array Index Map"); +writeln(BA2); +writeln(); + + + +// +// Next, we'll perform a similar computation for the Cyclic distribution. +// Cyclic distributions start at a designated n-dimensional index and +// distribute the n-dimensional space across an n-dimensional array +// of locales in a round-robin fashion (in each dimension). As with +// the Block distribution, domains may be declared using the +// distribution who have lower indices that the starting index; that +// value should just be considered a parameterization of how the +// distribution is defined. +// +const CyclicSpace = Space dmapped Cyclic(startIdx=Space.low); +var CA: [CyclicSpace] int; + +forall ca in CA do + ca = here.id; + +writeln("Cyclic Array Index Map"); +writeln(CA); +writeln(); + + +// +// Next, we'll declare a Block-Cyclic distribution. These +// distributions also deal out indices in a round-robin fashion, +// but rather than dealing out singleton indices, they deal out blocks +// of indices. Thus, the BlockCyclic distribution is parameterized +// by a starting index (as with Cyclic) and a block size (per +// dimension) specifying how large the chunks to be dealt out are. +// +const BlkCycSpace = Space dmapped BlockCyclic(startIdx=Space.low, + blocksize=(2, 3)); +var BCA: [BlkCycSpace] int; + +forall bca in BCA do + bca = here.id; + +writeln("Block-Cyclic Array Index Map"); +writeln(BCA); +writeln(); + + +// +// The ReplicatedDist distribution is different: each of the +// original domain's indices - and the corresponding array elements - +// is replicated onto each locale. (Note: consistency among these +// array replicands is NOT maintained automatically.) +// +// This replication is observable in some cases but not others, +// as shown below. Note: this behavior may change in the future. +// +const ReplicatedSpace = Space dmapped ReplicatedDist(); +var RA: [ReplicatedSpace] int; + +// The replication is observable - this visits each replicand. +forall ra in RA do + ra = here.id; + +writeln("Replicated Array Index Map, ", RA.numElements, " elements total"); +writeln(RA); +writeln(); + +// +// The replication is observable when the replicated array is +// on the left-hand side. If the right-hand side is not replicated, +// it is copied into each replicand. +// We illustrate this using a non-distributed array. +// +var A: [Space] int = [(i,j) in Space] i*100 + j; +RA = A; +writeln("Replicated Array after being array-assigned into"); +writeln(RA); +writeln(); + +// +// Analogously, each replicand will be visited and +// other participated expressions will be computed on each locale +// (a) when the replicated array is assigned a scalar: +// RA = 5; +// (b) when it appears first in a zippered forall loop: +// forall (ra, a) in zip(RA, A) do ...; +// (c) when it appears in a for loop: +// for ra in RA do ...; +// +// Zippering (RA,A) or (A,RA) in a 'for' loop will generate +// an error due to their different number of elements. + +// Let RA store the Index Map again, for the examples below. +forall ra in RA do + ra = here.id; + +// +// Only the local replicand is accessed - replication is NOT observable +// and consistency is NOT maintained - when: +// (a) the replicated array is indexed - an individual element is read... +// +on Locales(0) do + writeln("on ", here, ": ", RA(Space.low)); +on Locales(LocaleSpace.high) do + writeln("on ", here, ": ", RA(Space.low)); +writeln(); + +// ...or an individual element is written; +on Locales(LocaleSpace.high) do + RA(Space.low) = 7777; + +writeln("Replicated Array after being indexed into"); +writeln(RA); +writeln(); + +// +// (b) the replicated array is on the right-hand side of an assignment... +// +on Locales(LocaleSpace.high) do + A = RA + 4; +writeln("Non-Replicated Array after assignment from Replicated Array + 4"); +writeln(A); +writeln(); + +// +// (c) ...or, generally, the replicated array or domain participates +// in a zippered forall loop, but not in the first position. +// The loop could look like: +// +// forall (a, (i,j), ra) in (A, ReplicatedSpace, RA) do ...; +// + + +// +// The DimensionalDist2D distribution lets us build a 2D distribution +// as a composition of specifiers for individual dimensions. +// Under such a "dimensional" distribution each dimension is handled +// independently of the other. +// +// The dimension specifiers are similar to the corresponding multi-dimensional +// distributions in constructor arguments and index-to-locale mapping rules. +// However, instead of an array of locales, a specifier constructor +// accepts just the number of locales that the indices in the corresponding +// dimension will be distributed across. +// +// The DimensionalDist2D constructor requires: +// * an [0..nl1-1, 0..nl2-1] array of locales, where +// nl1 and nl2 are the number of locales in each dimension, and +// * two dimension specifiers, created for nl1 and nl2 locale counts, resp. +// +// Presently, the following dimension specifiers are available +// (shown here with their constructor arguments): +// +// * ReplicatedDim(numLocales) +// * BlockDim(numLocales, boundingBoxLow, boundingBoxHigh) +// * BlockCyclicDim(lowIdx, blockSize, numLocales) +// + +// +// The following example creates a dimensional distribution that +// replicates over 2 locales (when available) in the first dimemsion +// and distributes using block-cyclic distribution in the second dimension. +// The example computes nl1 and nl2 and reshapes MyLocales correspondingly. +// + +var (nl1, nl2) = if numLocales == 1 then (1, 1) else (2, numLocales/2); +MyLocaleView = {0..#nl1, 0..#nl2}; +MyLocales = reshape(Locales[0..#nl1*nl2], MyLocaleView); + +const DimReplicatedBlockcyclicSpace = Space + dmapped DimensionalDist2D(MyLocales, + new ReplicatedDim(numLocales = nl1), + new BlockCyclicDim(numLocales = nl2, + lowIdx = 1, blockSize = 2)); + +var DRBA: [DimReplicatedBlockcyclicSpace] int; + +// The ReplicatedDim specifier always accesses the local replicand. +// (This differs from how the ReplicatedDist distribution works.) +// +// This example visits each replicand. The behavior is the same +// regardless of the second index into MyLocales below. + +for locId1 in 0..#nl1 do on MyLocales[locId1, 0] { + + forall drba in DRBA do + drba = here.id; + + writeln("Dimensional2D(Replicated,BlockCyclic) Array Index Map", + " from ", here); + + // Technicality: 'writeln(DRBA)' would read DRBA always on Locale 0. + // Since we want to see what DRBA contains on the current locale, + // we use 'Helper' that is mapped using the default distribution. + // 'Helper = DRBA' captures the view of DRBA on the current locale, + // which we then print out. + + const Helper: [Space] int = DRBA; + writeln(Helper); + writeln(); + +} diff --git a/samples/Chapel/hello.chpl b/samples/Chapel/hello.chpl new file mode 100644 index 00000000..cc98e786 --- /dev/null +++ b/samples/Chapel/hello.chpl @@ -0,0 +1 @@ +writeln("Hello, world!"); // print 'Hello, world!' to the console diff --git a/samples/Chapel/lulesh.chpl b/samples/Chapel/lulesh.chpl new file mode 100644 index 00000000..d6480d26 --- /dev/null +++ b/samples/Chapel/lulesh.chpl @@ -0,0 +1,1692 @@ +/* + Derived from the DARPA/Livermore Unstructured Lagrangian Explicit + Shock Hydrodynamics (LULESH) + https://computation.llnl.gov/casc/ShockHydro/ + + Original port to Chapel by Brandon Holt (8/2011). Further + improvements for the sake of performance and/or generality made by + Sung-Eun Choi (12/2011, 11/2012), Jeff Keasler (3/2012), and Brad + Chamberlain (3-4,9-11/2012, 2/2013). + + + Notes on the Initial Implementation + ----------------------------------- + + This implementation was designed to mirror the overall structure of + the C++ Lulesh but use Chapel constructs where they can help make + the code more readable, easier to maintain, or more + 'elegant'. Function names are preserved for the most part, with some + additional helper functions, and original comments from the C++ code + are interspersed approximately where they belong to give an idea of + how the two codes line up. One major difference for this Chapel + version is the use of a number of module-level variables and + constants. + + + Status: + + This code remains a work-in-progress as we gain further experience + with it. Proposed improvements are noted in the README in this + directory and (in some cases) in TODO comments in the code. + + */ + + + +use Time, // to get timing routines for benchmarking + BlockDist; // for block-distributed arrays + +use luleshInit; // initialization code for data set + +/* The configuration parameters for lulesh. These can be set on the + compiler command line using -s=. For example, + + chpl -suseBlockDist=true + + useBlockDist : says whether or not to block-distribute the arrays. + The default is based on the value of CHPL_COMM, as + an indication of whether this is a single- or multi- + locale execution. + + use3DRepresentation : indicates whether the element node arrays + should be stored using a 3D representation + (limiting the execution to cube inputs) or + the more general 1D representation (supporting + arbitrary data sets). + + useSparseMaterials : indicates whether sparse domains/arrays should be + used to represent the materials. Sparse domains + are more realistic in that they permit an arbitrary + subset of the problem space to store a material. + Dense domains are sufficient for LULESH since there's + an assumption that the material spans all cells. + + printWarnings : prints performance-oriented warnings to prevent + surprises. +*/ + +config param useBlockDist = (CHPL_COMM != "none"), + use3DRepresentation = false, + useSparseMaterials = true, + printWarnings = true; + + +// +// Sanity check to ensure that input files aren't used with the 3D +// representation +// +if (use3DRepresentation && (luleshInit.filename != "")) then + halt("The 3D representation does not support reading input from files"); + + +/* Configuration constants: Override defaults on executable's command-line */ + +config const initialEnergy = 3.948746e+7; // initial energy value + + +config const showProgress = false, // print time and dt values on each step + debug = false, // print various debug info + doTiming = true, // time the main timestep loop + printCoords = true; // print the final computed coordinates + + +/* Compile-time constants */ + +param XI_M = 0x003, + XI_M_SYMM = 0x001, + XI_M_FREE = 0x002, + + XI_P = 0x00c, + XI_P_SYMM = 0x004, + XI_P_FREE = 0x008, + + ETA_M = 0x030, + ETA_M_SYMM = 0x010, + ETA_M_FREE = 0x020, + + ETA_P = 0x0c0, + ETA_P_SYMM = 0x040, + ETA_P_FREE = 0x080, + + ZETA_M = 0x300, + ZETA_M_SYMM = 0x100, + ZETA_M_FREE = 0x200, + + ZETA_P = 0xc00, + ZETA_P_SYMM = 0x400, + ZETA_P_FREE = 0x800; + + +/* Set up the problem size */ + +const (numElems, numNodes) = initProblemSize(); + + +/* Declare abstract problem domains */ + +const ElemSpace = if use3DRepresentation + then {0..#elemsPerEdge, 0..#elemsPerEdge, 0..#elemsPerEdge} + else {0..#numElems}, + NodeSpace = if use3DRepresentation + then {0..#nodesPerEdge, 0..#nodesPerEdge, 0..#nodesPerEdge} + else {0..#numNodes}; + + +/* Declare the (potentially distributed) problem domains */ + +const Elems = if useBlockDist then ElemSpace dmapped Block(ElemSpace) + else ElemSpace, + Nodes = if useBlockDist then NodeSpace dmapped Block(NodeSpace) + else NodeSpace; + + +/* The coordinates */ + +var x, y, z: [Nodes] real; + + +/* The number of nodes per element. In a rank-independent version, + this could be written 2**rank */ + +param nodesPerElem = 8; + + +// We could name this, but chose not to since it doesn't add that much clarity +// +// const elemNeighbors = 1..nodesPerElem; + + +/* The element-to-node mapping */ + +var elemToNode: [Elems] nodesPerElem*index(Nodes); + + +/* the Greek variables */ + +var lxim, lxip, letam, letap, lzetam, lzetap: [Elems] index(Elems); + + +/* the X, Y, Z Symmetry values */ + +var XSym, YSym, ZSym: sparse subdomain(Nodes); + + + +/* Constants */ + +const u_cut = 1.0e-7, /* velocity tolerance */ + hgcoef = 3.0, /* hourglass control */ + qstop = 1.0e+12, /* excessive q indicator */ + monoq_max_slope = 1.0, + monoq_limiter_mult = 2.0, + e_cut = 1.0e-7, /* energy tolerance */ + p_cut = 1.0e-7, /* pressure tolerance */ + ss4o3 = 4.0/3.0, + q_cut = 1.0e-7, /* q tolerance */ + v_cut = 1.0e-10, /* relative volume tolerance */ + qlc_monoq = 0.5, /* linear term coef for q */ + qqc_monoq = 2.0/3.0, /* quadratic term coef for q */ + qqc = 2.0, + qqc2 = 64.0 * qqc**2, + eosvmax = 1.0e+9, + eosvmin = 1.0e-9, + pmin = 0.0, /* pressure floor */ + emin = -1.0e+15, /* energy floor */ + dvovmax = 0.1, /* maximum allowable volume change */ + refdens = 1.0, /* reference density */ + + deltatimemultlb = 1.1, + deltatimemultub = 1.2, + dtmax = 1.0e-2; /* maximum allowable time increment */ + + +config const stoptime = 1.0e-2, /* end time for simulation */ + maxcycles = max(int), /* max number of cycles to simulate */ + dtfixed = -1.0e-7; /* fixed time increment */ + + +/* The list of material elements */ + +const MatElems: MatElemsType = if useSparseMaterials then enumerateMatElems() + else Elems; + + +proc MatElemsType type { + if useSparseMaterials { + if (printWarnings && useBlockDist && numLocales > 1) then + writeln("WARNING: The LULESH Material Elements (MatElems) are not yet\n", + " distributed, so result in excessive memory use on,\n", + " and communication with, locale 0\n"); + return sparse subdomain(Elems); + } else + return Elems.type; +} + +iter enumerateMatElems() { + if (printWarnings && useBlockDist && numLocales > 1) then + writeln("WARNING: generation of matrix elements is serial and\n", + " unlikely to scale"); + for i in Elems do + yield i; +} + + +/* Element fields */ + +var elemBC: [Elems] int, + + e: [Elems] real, // energy + p: [Elems] real, // pressure + + q: [Elems] real, // q + ql: [Elems] real, // linear term for q + qq: [Elems] real, // quadratic term for q + + v: [Elems] real = 1.0, //relative volume + vnew: [Elems] real, + + volo: [Elems] real, // reference volume + delv: [Elems] real, // m_vnew - m_v + vdov: [Elems] real, // volume derivative over volume + + arealg: [Elems] real, // elem characteristic length + + ss: [Elems] real, // "sound speed" + + elemMass: [Elems] real; // mass + + +/* Nodal fields */ + +var xd, yd, zd: [Nodes] real, // velocities + + xdd, ydd, zdd: [Nodes] real, // acceleration + + fx, fy, fz: [Nodes] atomic real, // forces + + nodalMass: [Nodes] real; // mass + + +/* Parameters */ + +var time = 0.0, // current time + deltatime = 1.0e-7, // variable time increment + dtcourant = 1.0e20, // courant constraint + dthydro = 1.0e20, // volume change constraint + + cycle = 0; // iteration count for simulation + + +proc main() { + if debug then writeln("Lulesh -- Problem Size = ", numElems); + + initLulesh(); + + var st: real; + if doTiming then st = getCurrentTime(); + while (time < stoptime && cycle < maxcycles) { + const iterTime = if showProgress then getCurrentTime() else 0.0; + + TimeIncrement(); + + LagrangeLeapFrog(); + + if debug { + // deprint("[[ Forces ]]", fx, fy, fz); + deprint("[[ Positions ]]", x, y, z); + deprint("[[ p, e, q ]]", p, e, q); + } + if showProgress then + writeln("time = ", format("%e", time), ", dt=", format("%e", deltatime), + if doTiming then ", elapsed = " + (getCurrentTime()-iterTime) + else ""); + } + if (cycle == maxcycles) { + writeln("Stopped early due to reaching maxnumsteps"); + } + if doTiming { + const et = getCurrentTime(); + writeln("Total Time: ", et-st); + writeln("Time/Cycle: ", (et-st)/cycle); + } + writeln("Number of cycles: ", cycle); + + if printCoords { + var outfile = open("coords.out", iomode.cw); + var writer = outfile.writer(); + var fmtstr = if debug then "%1.9e" else "%1.4e"; + for i in Nodes { + writer.writeln(format(fmtstr, x[i]), " ", + format(fmtstr, y[i]), " ", + format(fmtstr, z[i])); + } + writer.close(); + outfile.close(); + } +} + + +/* Initialization functions */ + +proc initLulesh() { + // initialize the coordinates + initCoordinates(x,y,z); + + // initialize the element to node mapping + initElemToNodeMapping(elemToNode); + + // initialize the greek symbols + initGreekVars(lxim, lxip, letam, letap, lzetam, lzetap); + + // initialize the symmetry plane locations + initXSyms(XSym); + initYSyms(YSym); + initZSyms(ZSym); + + /* embed hexehedral elements in nodal point lattice */ + //calculated on the fly using: elemToNodes(i: index(Elems)): index(Nodes) + + // initialize the masses + initMasses(); + + // initialize the boundary conditions + const octantCorner = initBoundaryConditions(); + + // deposit the energy for Sedov Problem + e[octantCorner] = initialEnergy; +} + + +proc initMasses() { + // This is a temporary array used to accumulate masses in parallel + // without losing updates by using 'atomic' variables + var massAccum: [Nodes] atomic real; + + forall eli in Elems { + var x_local, y_local, z_local: 8*real; + localizeNeighborNodes(eli, x, x_local, y, y_local, z, z_local); + + const volume = CalcElemVolume(x_local, y_local, z_local); + volo[eli] = volume; + elemMass[eli] = volume; + + for neighbor in elemToNodes[eli] do + massAccum[neighbor].add(volume); + } + + // When we're done, copy the accumulated masses into nodalMass, at + // which point the massAccum array can go away (and will at the + // procedure's return + + forall i in Nodes do + nodalMass[i] = massAccum[i].read() / 8.0; + + if debug { + writeln("ElemMass:"); + for mass in elemMass do writeln(mass); + + writeln("NodalMass:"); + for mass in nodalMass do writeln(mass); + } +} + + +proc initBoundaryConditions() { + var surfaceNode: [Nodes] int; + + forall n in XSym do + surfaceNode[n] = 1; + forall n in YSym do + surfaceNode[n] = 1; + forall n in ZSym do + surfaceNode[n] = 1; + + forall e in Elems do { + var mask: int; + for i in 1..nodesPerElem do + mask += surfaceNode[elemToNode[e][i]] << (i-1); + + // TODO: make an inlined function for this little idiom? (and below) + + if ((mask & 0x0f) == 0x0f) then elemBC[e] |= ZETA_M_SYMM; + if ((mask & 0xf0) == 0xf0) then elemBC[e] |= ZETA_P_SYMM; + if ((mask & 0x33) == 0x33) then elemBC[e] |= ETA_M_SYMM; + if ((mask & 0xcc) == 0xcc) then elemBC[e] |= ETA_P_SYMM; + if ((mask & 0x99) == 0x99) then elemBC[e] |= XI_M_SYMM; + if ((mask & 0x66) == 0x66) then elemBC[e] |= XI_P_SYMM; + } + + + // + // We find the octant corner by looking for the element with + // all three SYMM flags set, which will have the largest + // integral value. Thus, we can use a maxloc to identify it. + // + const (check, loc) = maxloc reduce zip(elemBC, Elems); + + if debug then writeln("Found the octant corner at: ", loc); + + if (check != (XI_M_SYMM | ETA_M_SYMM | ZETA_M_SYMM)) then + halt("maxloc got a value of ", check, " at loc ", loc); + + // TODO: This is an example of an array that, in a distributed + // memory code, would typically be completely local and only storing + // the local nodes owned by the locale -- noting that some nodes + // are logically owned by multiple locales and therefore would + // redundantly be stored in both locales' surfaceNode arrays -- it's + // essentially local scratchspace that does not need to be communicated + // or kept coherent across locales. + // + + surfaceNode = 0; + + /* the free surfaces */ + + var freeSurface: sparse subdomain(Nodes); + + // initialize the free surface + initFreeSurface(freeSurface); + + forall n in freeSurface do + surfaceNode[n] = 1; + + forall e in Elems do { + var mask: int; + for i in 1..nodesPerElem do + mask += surfaceNode[elemToNode[e][i]] << (i-1); + + if ((mask & 0x0f) == 0x0f) then elemBC[e] |= ZETA_M_FREE; + if ((mask & 0xf0) == 0xf0) then elemBC[e] |= ZETA_P_FREE; + if ((mask & 0x33) == 0x33) then elemBC[e] |= ETA_M_FREE; + if ((mask & 0xcc) == 0xcc) then elemBC[e] |= ETA_P_FREE; + if ((mask & 0x99) == 0x99) then elemBC[e] |= XI_M_FREE; + if ((mask & 0x66) == 0x66) then elemBC[e] |= XI_P_FREE; + } + + if debug { + writeln("elemBC:"); + for b in elemBC do writeln(b); + } + + return loc; +} + + +/* Helper functions */ + +inline proc localizeNeighborNodes(eli: index(Elems), + x: [] real, ref x_local: 8*real, + y: [] real, ref y_local: 8*real, + z: [] real, ref z_local: 8*real) { + + for param i in 1..nodesPerElem { + const noi = elemToNode[eli][i]; + + x_local[i] = x[noi]; + y_local[i] = y[noi]; + z_local[i] = z[noi]; + } +} + +inline proc TripleProduct(x1, y1, z1, x2, y2, z2, x3, y3, z3) { + return x1*(y2*z3 - z2*y3) + x2*(z1*y3 - y1*z3) + x3*(y1*z2 - z1*y2); +} + + +proc CalcElemVolume(x, y, z) { + const dx61 = x[7] - x[2], + dy61 = y[7] - y[2], + dz61 = z[7] - z[2], + + dx70 = x[8] - x[1], + dy70 = y[8] - y[1], + dz70 = z[8] - z[1], + + dx63 = x[7] - x[4], + dy63 = y[7] - y[4], + dz63 = z[7] - z[4], + + dx20 = x[3] - x[1], + dy20 = y[3] - y[1], + dz20 = z[3] - z[1], + + dx50 = x[6] - x[1], + dy50 = y[6] - y[1], + dz50 = z[6] - z[1], + + dx64 = x[7] - x[5], + dy64 = y[7] - y[5], + dz64 = z[7] - z[5], + + dx31 = x[4] - x[2], + dy31 = y[4] - y[2], + dz31 = z[4] - z[2], + + dx72 = x[8] - x[3], + dy72 = y[8] - y[3], + dz72 = z[8] - z[3], + + dx43 = x[5] - x[4], + dy43 = y[5] - y[4], + dz43 = z[5] - z[4], + + dx57 = x[6] - x[8], + dy57 = y[6] - y[8], + dz57 = z[6] - z[8], + + dx14 = x[2] - x[5], + dy14 = y[2] - y[5], + dz14 = z[2] - z[5], + + dx25 = x[3] - x[6], + dy25 = y[3] - y[6], + dz25 = z[3] - z[6]; + + const volume = TripleProduct(dx31 + dx72, dx63, dx20, + dy31 + dy72, dy63, dy20, + dz31 + dz72, dz63, dz20) + + TripleProduct(dx43 + dx57, dx64, dx70, + dy43 + dy57, dy64, dy70, + dz43 + dz57, dz64, dz70) + + TripleProduct(dx14 + dx25, dx61, dx50, + dy14 + dy25, dy61, dy50, + dz14 + dz25, dz61, dz50); + + return volume / 12.0; +} + +proc InitStressTermsForElems(p, q, sigxx, sigyy, sigzz: [?D] real) { + forall i in D { + sigxx[i] = -p[i] - q[i]; + sigyy[i] = -p[i] - q[i]; + sigzz[i] = -p[i] - q[i]; + } +} + + +proc CalcElemShapeFunctionDerivatives(x: 8*real, y: 8*real, z: 8*real, + ref b_x: 8*real, + ref b_y: 8*real, + ref b_z: 8*real, + ref volume: real) { + + const fjxxi = .125 * ((x[7]-x[1]) + (x[6]-x[4]) - (x[8]-x[2]) - (x[5]-x[3])), + fjxet = .125 * ((x[7]-x[1]) - (x[6]-x[4]) + (x[8]-x[2]) - (x[5]-x[3])), + fjxze = .125 * ((x[7]-x[1]) + (x[6]-x[4]) + (x[8]-x[2]) + (x[5]-x[3])), + + fjyxi = .125 * ((y[7]-y[1]) + (y[6]-y[4]) - (y[8]-y[2]) - (y[5]-y[3])), + fjyet = .125 * ((y[7]-y[1]) - (y[6]-y[4]) + (y[8]-y[2]) - (y[5]-y[3])), + fjyze = .125 * ((y[7]-y[1]) + (y[6]-y[4]) + (y[8]-y[2]) + (y[5]-y[3])), + + fjzxi = .125 * ((z[7]-z[1]) + (z[6]-z[4]) - (z[8]-z[2]) - (z[5]-z[3])), + fjzet = .125 * ((z[7]-z[1]) - (z[6]-z[4]) + (z[8]-z[2]) - (z[5]-z[3])), + fjzze = .125 * ((z[7]-z[1]) + (z[6]-z[4]) + (z[8]-z[2]) + (z[5]-z[3])); + + /* compute cofactors */ + const cjxxi = (fjyet * fjzze) - (fjzet * fjyze), + cjxet = - (fjyxi * fjzze) + (fjzxi * fjyze), + cjxze = (fjyxi * fjzet) - (fjzxi * fjyet), + + cjyxi = - (fjxet * fjzze) + (fjzet * fjxze), + cjyet = (fjxxi * fjzze) - (fjzxi * fjxze), + cjyze = - (fjxxi * fjzet) + (fjzxi * fjxet), + + cjzxi = (fjxet * fjyze) - (fjyet * fjxze), + cjzet = - (fjxxi * fjyze) + (fjyxi * fjxze), + cjzze = (fjxxi * fjyet) - (fjyxi * fjxet); + + /* calculate partials : + this need only be done for l = 0,1,2,3 since , by symmetry , + (6,7,4,5) = - (0,1,2,3) . + */ + b_x[1] = - cjxxi - cjxet - cjxze; + b_x[2] = cjxxi - cjxet - cjxze; + b_x[3] = cjxxi + cjxet - cjxze; + b_x[4] = - cjxxi + cjxet - cjxze; + b_x[5] = -b_x[3]; + b_x[6] = -b_x[4]; + b_x[7] = -b_x[1]; + b_x[8] = -b_x[2]; + + b_y[1] = - cjyxi - cjyet - cjyze; + b_y[2] = cjyxi - cjyet - cjyze; + b_y[3] = cjyxi + cjyet - cjyze; + b_y[4] = - cjyxi + cjyet - cjyze; + b_y[5] = -b_y[3]; + b_y[6] = -b_y[4]; + b_y[7] = -b_y[1]; + b_y[8] = -b_y[2]; + + b_z[1] = - cjzxi - cjzet - cjzze; + b_z[2] = cjzxi - cjzet - cjzze; + b_z[3] = cjzxi + cjzet - cjzze; + b_z[4] = - cjzxi + cjzet - cjzze; + b_z[5] = -b_z[3]; + b_z[6] = -b_z[4]; + b_z[7] = -b_z[1]; + b_z[8] = -b_z[2]; + + /* calculate jacobian determinant (volume) */ + volume = 8.0 * ( fjxet * cjxet + fjyet * cjyet + fjzet * cjzet); +} + + +proc CalcElemNodeNormals(ref pfx: 8*real, ref pfy: 8*real, ref pfz: 8*real, + x: 8*real, y: 8*real, z: 8*real) { + + proc ElemFaceNormal(param n1, param n2, param n3, param n4) { + const bisectX0 = 0.5 * (x[n4] + x[n3] - x[n2] - x[n1]), + bisectY0 = 0.5 * (y[n4] + y[n3] - y[n2] - y[n1]), + bisectZ0 = 0.5 * (z[n4] + z[n3] - z[n2] - z[n1]), + bisectX1 = 0.5 * (x[n3] + x[n2] - x[n4] - x[n1]), + bisectY1 = 0.5 * (y[n3] + y[n2] - y[n4] - y[n1]), + bisectZ1 = 0.5 * (z[n3] + z[n2] - z[n4] - z[n1]), + areaX = 0.25 * (bisectY0 * bisectZ1 - bisectZ0 * bisectY1), + areaY = 0.25 * (bisectZ0 * bisectX1 - bisectX0 * bisectZ1), + areaZ = 0.25 * (bisectX0 * bisectY1 - bisectY0 * bisectX1); + + var rx, ry, rz: 8*real; //results + + (rx[n1], rx[n2], rx[n3], rx[n4]) = (areaX, areaX, areaX, areaX); + (ry[n1], ry[n2], ry[n3], ry[n4]) = (areaY, areaY, areaY, areaY); + (rz[n1], rz[n2], rz[n3], rz[n4]) = (areaZ, areaZ, areaZ, areaZ); + + return (rx, ry, rz); + } + + // calculate total normal from each face (faces are made up of + // combinations of nodes) + + (pfx, pfy, pfz) = ElemFaceNormal(1,2,3,4) + ElemFaceNormal(1,5,6,2) + + ElemFaceNormal(2,6,7,3) + ElemFaceNormal(3,7,8,4) + + ElemFaceNormal(4,8,5,1) + ElemFaceNormal(5,8,7,6); +} + + +proc SumElemStressesToNodeForces(b_x: 8*real, b_y: 8*real, b_z: 8*real, + stress_xx:real, + stress_yy:real, + stress_zz: real, + ref fx: 8*real, + ref fy: 8*real, + ref fz: 8*real) { + for param i in 1..8 { + fx[i] = -(stress_xx * b_x[i]); + fy[i] = -(stress_yy * b_y[i]); + fz[i] = -(stress_zz * b_z[i]); + } +} + +proc CalcElemVolumeDerivative(x: 8*real, y: 8*real, z: 8*real) { + + proc VoluDer(param n0, param n1, param n2, param n3, param n4, param n5) { + const ox = (y[n1] + y[n2]) * (z[n0] + z[n1]) + - (y[n0] + y[n1]) * (z[n1] + z[n2]) + + (y[n0] + y[n4]) * (z[n3] + z[n4]) + - (y[n3] + y[n4]) * (z[n0] + z[n4]) + - (y[n2] + y[n5]) * (z[n3] + z[n5]) + + (y[n3] + y[n5]) * (z[n2] + z[n5]), + oy = - (x[n1] + x[n2]) * (z[n0] + z[n1]) + + (x[n0] + x[n1]) * (z[n1] + z[n2]) + - (x[n0] + x[n4]) * (z[n3] + z[n4]) + + (x[n3] + x[n4]) * (z[n0] + z[n4]) + + (x[n2] + x[n5]) * (z[n3] + z[n5]) + - (x[n3] + x[n5]) * (z[n2] + z[n5]), + oz = - (y[n1] + y[n2]) * (x[n0] + x[n1]) + + (y[n0] + y[n1]) * (x[n1] + x[n2]) + - (y[n0] + y[n4]) * (x[n3] + x[n4]) + + (y[n3] + y[n4]) * (x[n0] + x[n4]) + + (y[n2] + y[n5]) * (x[n3] + x[n5]) + - (y[n3] + y[n5]) * (x[n2] + x[n5]); + + return (ox/12.0, oy/12.0, oz/12.0); + } + + var dvdx, dvdy, dvdz: 8*real; + + (dvdx[1], dvdy[1], dvdz[1]) = VoluDer(2,3,4,5,6,8); + (dvdx[4], dvdy[4], dvdz[4]) = VoluDer(1,2,3,8,5,7); + (dvdx[3], dvdy[3], dvdz[3]) = VoluDer(4,1,2,7,8,6); + (dvdx[2], dvdy[2], dvdz[2]) = VoluDer(3,4,1,6,7,5); + (dvdx[5], dvdy[5], dvdz[5]) = VoluDer(8,7,6,1,4,2); + (dvdx[6], dvdy[6], dvdz[6]) = VoluDer(5,8,7,2,1,3); + (dvdx[7], dvdy[7], dvdz[7]) = VoluDer(6,5,8,3,2,4); + (dvdx[8], dvdy[8], dvdz[8]) = VoluDer(7,6,5,4,3,1); + + return (dvdx, dvdy, dvdz); +} + +inline proc CalcElemFBHourglassForce(xd: 8*real, yd: 8*real, zd: 8*real, + hourgam: 8*(4*real), + coefficient: real, + ref hgfx: 8*real, + ref hgfy: 8*real, + ref hgfz: 8*real) { + var hx, hy, hz: 4*real; + + // reduction + for param i in 1..4 { + for param j in 1..8 { + hx[i] += hourgam[j][i] * xd[j]; + hy[i] += hourgam[j][i] * yd[j]; + hz[i] += hourgam[j][i] * zd[j]; + } + } + + for param i in 1..8 { + var shx, shy, shz: real; + for param j in 1..4 { + shx += hourgam[i][j] * hx[j]; + shy += hourgam[i][j] * hy[j]; + shz += hourgam[i][j] * hz[j]; + } + hgfx[i] = coefficient * shx; + hgfy[i] = coefficient * shy; + hgfz[i] = coefficient * shz; + } +} + + +proc CalcElemCharacteristicLength(x, y, z, volume) { + proc AreaFace(param p0, param p1, param p2, param p3) { + const fx = (x[p2] - x[p0]) - (x[p3] - x[p1]), + fy = (y[p2] - y[p0]) - (y[p3] - y[p1]), + fz = (z[p2] - z[p0]) - (z[p3] - z[p1]), + gx = (x[p2] - x[p0]) + (x[p3] - x[p1]), + gy = (y[p2] - y[p0]) + (y[p3] - y[p1]), + gz = (z[p2] - z[p0]) + (z[p3] - z[p1]), + area = (fx * fx + fy * fy + fz * fz) * + (gx * gx + gy * gy + gz * gz) - + (fx * gx + fy * gy + fz * gz) * + (fx * gx + fy * gy + fz * gz); + + return area ; + } + + const charLength = max(AreaFace(1, 2, 3, 4), + AreaFace(5, 6, 7, 8), + AreaFace(1, 2, 6, 5), + AreaFace(2, 3, 7, 6), + AreaFace(3, 4, 8, 7), + AreaFace(4, 1, 5, 8)); + + return 4.0 * volume / sqrt(charLength); +} + + +proc CalcElemVelocityGradient(xvel, yvel, zvel, pfx, pfy, pfz, + detJ, ref d: 6*real) { + const inv_detJ = 1.0 / detJ; + + d[1] = inv_detJ * ( pfx[1] * (xvel[1]-xvel[7]) + + pfx[2] * (xvel[2]-xvel[8]) + + pfx[3] * (xvel[3]-xvel[5]) + + pfx[4] * (xvel[4]-xvel[6]) ); + d[2] = inv_detJ * ( pfy[1] * (yvel[1]-yvel[7]) + + pfy[2] * (yvel[2]-yvel[8]) + + pfy[3] * (yvel[3]-yvel[5]) + + pfy[4] * (yvel[4]-yvel[6]) ); + d[3] = inv_detJ * ( pfz[1] * (zvel[1]-zvel[7]) + + pfz[2] * (zvel[2]-zvel[8]) + + pfz[3] * (zvel[3]-zvel[5]) + + pfz[4] * (zvel[4]-zvel[6]) ); + + const dyddx = inv_detJ * ( pfx[1] * (yvel[1]-yvel[7]) + + pfx[2] * (yvel[2]-yvel[8]) + + pfx[3] * (yvel[3]-yvel[5]) + + pfx[4] * (yvel[4]-yvel[6]) ), + + dxddy = inv_detJ * ( pfy[1] * (xvel[1]-xvel[7]) + + pfy[2] * (xvel[2]-xvel[8]) + + pfy[3] * (xvel[3]-xvel[5]) + + pfy[4] * (xvel[4]-xvel[6]) ), + + dzddx = inv_detJ * ( pfx[1] * (zvel[1]-zvel[7]) + + pfx[2] * (zvel[2]-zvel[8]) + + pfx[3] * (zvel[3]-zvel[5]) + + pfx[4] * (zvel[4]-zvel[6]) ), + + dxddz = inv_detJ * ( pfz[1] * (xvel[1]-xvel[7]) + + pfz[2] * (xvel[2]-xvel[8]) + + pfz[3] * (xvel[3]-xvel[5]) + + pfz[4] * (xvel[4]-xvel[6]) ), + + dzddy = inv_detJ * ( pfy[1] * (zvel[1]-zvel[7]) + + pfy[2] * (zvel[2]-zvel[8]) + + pfy[3] * (zvel[3]-zvel[5]) + + pfy[4] * (zvel[4]-zvel[6]) ), + + dyddz = inv_detJ * ( pfz[1] * (yvel[1]-yvel[7]) + + pfz[2] * (yvel[2]-yvel[8]) + + pfz[3] * (yvel[3]-yvel[5]) + + pfz[4] * (yvel[4]-yvel[6]) ); + + d[6] = 0.5 * ( dxddy + dyddx ); + d[5] = 0.5 * ( dxddz + dzddx ); + d[4] = 0.5 * ( dzddy + dyddz ); +} + + +proc CalcPressureForElems(p_new: [?D] real, bvc, pbvc, + e_old, compression, vnewc, + pmin: real, p_cut: real, eosvmax: real) { + + // + // TODO: Uncomment local once sparse domain is distributed + // + forall i in D /* do local */ { + const c1s = 2.0 / 3.0; + bvc[i] = c1s * (compression[i] + 1.0); + pbvc[i] = c1s; + } + + forall i in D { + p_new[i] = bvc[i] * e_old[i]; + + if abs(p_new[i]) < p_cut then p_new[i] = 0.0; + if vnewc[i] >= eosvmax then p_new[i] = 0.0; //impossible? + if p_new[i] < pmin then p_new[i] = pmin; + } +} + + +proc TimeIncrement() { + var targetdt = stoptime - time; + + if dtfixed <= 0.0 && cycle != 0 { //don't do this the first cycle + var olddt = deltatime, + newdt = 1.0e20; + + if dtcourant < newdt then newdt = dtcourant / 2.0; + if dthydro < newdt then newdt = 2.0/3.0 * dthydro; + + const ratio = newdt / olddt; + if ratio >= 1.0 { + if ratio < deltatimemultlb then newdt = olddt; + else if ratio > deltatimemultub then newdt = olddt * deltatimemultub; + } + if newdt > dtmax then newdt = dtmax; + + deltatime = newdt; + } + + /* TRY TO PREVENT VERY SMALL SCALING ON THE NEXT CYCLE */ + if targetdt > deltatime && targetdt < (4.0/3.0 * deltatime) { + targetdt = 2.0/3.0 * deltatime; + } + if targetdt < deltatime then deltatime = targetdt; + + time += deltatime; + cycle += 1; +} + +inline proc LagrangeLeapFrog() { + /* calculate nodal forces, accelerations, velocities, positions, with + * applied boundary conditions and slide surface considerations */ + LagrangeNodal(); + + /* calculate element quantities (i.e. velocity gradient & q), and update + * material states */ + LagrangeElements(); + + CalcTimeConstraintsForElems(); +} + + +inline proc LagrangeNodal() { + CalcForceForNodes(); + + CalcAccelerationForNodes(); + + ApplyAccelerationBoundaryConditionsForNodes(); + + CalcVelocityForNodes(deltatime, u_cut); + + CalcPositionForNodes(deltatime); +} + + +inline proc LagrangeElements() { + CalcLagrangeElements(); + + /* Calculate Q. (Monotonic q option requires communication) */ + CalcQForElems(); + + ApplyMaterialPropertiesForElems(); + + UpdateVolumesForElems(); +} + + +inline proc CalcTimeConstraintsForElems() { + /* evaluate time constraint */ + CalcCourantConstraintForElems(); + + /* check hydro constraint */ + CalcHydroConstraintForElems(); +} + + +inline proc computeDTF(indx) { + const myvdov = vdov[indx]; + + if myvdov == 0.0 then + return max(real); + + const myarealg = arealg[indx]; + var dtf = ss[indx]**2; + if myvdov < 0.0 then + dtf += qqc2 * myarealg**2 * myvdov**2; + dtf = sqrt(dtf); + dtf = myarealg / dtf; + + return dtf; +} + + +proc CalcCourantConstraintForElems() { + const val = min reduce [indx in MatElems] computeDTF(indx); + + if (val != max(real)) then + dtcourant = val; +} + + +inline proc calcDtHydroTmp(indx) { + const myvdov = vdov[indx]; + if (myvdov == 0.0) then + return max(real); + else + return dvovmax / (abs(myvdov)+1.0e-20); +} + + +proc CalcHydroConstraintForElems() { + const val = min reduce [indx in MatElems] calcDtHydroTmp(indx); + + if (val != max(real)) then + dthydro = val; +} + + +/* calculate nodal forces, accelerations, velocities, positions, with + * applied boundary conditions and slide surface considerations */ + +proc CalcForceForNodes() { + //zero out all forces + forall x in fx do x.write(0); + forall y in fy do y.write(0); + forall z in fz do z.write(0); + + /* Calcforce calls partial, force, hourq */ + CalcVolumeForceForElems(); + + /* Calculate Nodal Forces at domain boundaries */ + // this was commented out in C++ code, so left out here +} + +proc CalcVolumeForceForElems() { + var sigxx, sigyy, sigzz, determ: [Elems] real; + + /* Sum contributions to total stress tensor */ + InitStressTermsForElems(p, q, sigxx, sigyy, sigzz); + + /* call elemlib stress integration loop to produce nodal forces from + material stresses. */ + IntegrateStressForElems(sigxx, sigyy, sigzz, determ); + + /* check for negative element volume */ + forall e in Elems { + if determ[e] <= 0.0 then + halt("can't have negative volume (determ[", e, "]=", determ[e], ")"); + } + + CalcHourglassControlForElems(determ); +} + + +proc IntegrateStressForElems(sigxx, sigyy, sigzz, determ) { + forall k in Elems { + var b_x, b_y, b_z: 8*real; + var x_local, y_local, z_local: 8*real; + localizeNeighborNodes(k, x, x_local, y, y_local, z, z_local); + + var fx_local, fy_local, fz_local: 8*real; + + local { + /* Volume calculation involves extra work for numerical consistency. */ + CalcElemShapeFunctionDerivatives(x_local, y_local, z_local, + b_x, b_y, b_z, determ[k]); + + CalcElemNodeNormals(b_x, b_y, b_z, x_local, y_local, z_local); + + SumElemStressesToNodeForces(b_x, b_y, b_z, sigxx[k], sigyy[k], sigzz[k], + fx_local, fy_local, fz_local); + } + + for (noi, t) in elemToNodesTuple(k) { + fx[noi].add(fx_local[t]); + fy[noi].add(fy_local[t]); + fz[noi].add(fz_local[t]); + } + } +} + + +proc CalcHourglassControlForElems(determ) { + var dvdx, dvdy, dvdz, x8n, y8n, z8n: [Elems] 8*real; + + forall eli in Elems { + /* Collect domain nodes to elem nodes */ + var x1, y1, z1: 8*real; + localizeNeighborNodes(eli, x, x1, y, y1, z, z1); + var pfx, pfy, pfz: 8*real; + + local { + /* load into temporary storage for FB Hour Glass control */ + (dvdx[eli], dvdy[eli], dvdz[eli]) = CalcElemVolumeDerivative(x1, y1, z1); + } + + x8n[eli] = x1; + y8n[eli] = y1; + z8n[eli] = z1; + + determ[eli] = volo[eli] * v[eli]; + } + + /* Do a check for negative volumes */ + forall e in Elems { + if v[e] <= 0.0 then + halt("can't have negative (or zero) volume. (in Hourglass, v[", e, "]=", v[e], ")"); + } + + if hgcoef > 0.0 { + CalcFBHourglassForceForElems(determ, x8n, y8n, z8n, dvdx, dvdy, dvdz); + } +} + + +const gammaCoef: 4*(8*real) = // WAS: [1..4, 1..8] real = + (( 1.0, 1.0, -1.0, -1.0, -1.0, -1.0, 1.0, 1.0), + ( 1.0, -1.0, -1.0, 1.0, -1.0, 1.0, 1.0, -1.0), + ( 1.0, -1.0, 1.0, -1.0, 1.0, -1.0, 1.0, -1.0), + (-1.0, 1.0, -1.0, 1.0, 1.0, -1.0, 1.0, -1.0)); + +/* Calculates the Flanagan-Belytschko anti-hourglass force. */ +proc CalcFBHourglassForceForElems(determ, x8n, y8n, z8n, dvdx, dvdy, dvdz) { + + /* compute the hourglass modes */ + forall eli in Elems { + var hourgam: 8*(4*real); + const volinv = 1.0 / determ[eli]; + var ss1, mass1, volume13: real; + var hgfx, hgfy, hgfz: 8*real; + var coefficient: real; + + var xd1, yd1, zd1: 8*real; + localizeNeighborNodes(eli, xd, xd1, yd, yd1, zd, zd1); + + /* TODO: Can we enable this local block? */ + // local { + for param i in 1..4 { + var hourmodx, hourmody, hourmodz: real; + // reduction + for param j in 1..8 { + hourmodx += x8n[eli][j] * gammaCoef[i][j]; + hourmody += y8n[eli][j] * gammaCoef[i][j]; + hourmodz += z8n[eli][j] * gammaCoef[i][j]; + } + + for param j in 1..8 { + hourgam[j][i] = gammaCoef[i][j] - volinv * + (dvdx[eli][j] * hourmodx + + dvdy[eli][j] * hourmody + + dvdz[eli][j] * hourmodz); + } + } + + /* compute forces */ + /* store forces into h arrays (force arrays) */ + ss1 = ss[eli]; + mass1 = elemMass[eli]; + volume13 = cbrt(determ[eli]); + + coefficient = - hgcoef * 0.01 * ss1 * mass1 / volume13; + + CalcElemFBHourglassForce(xd1, yd1, zd1, hourgam, coefficient, + hgfx, hgfy, hgfz); + // } // end local + + for (noi,i) in elemToNodesTuple(eli) { + fx[noi].add(hgfx[i]); + fy[noi].add(hgfy[i]); + fz[noi].add(hgfz[i]); + } + } +} + + +proc CalcAccelerationForNodes() { + forall noi in Nodes do local { + xdd[noi] = fx[noi].read() / nodalMass[noi]; + ydd[noi] = fy[noi].read() / nodalMass[noi]; + zdd[noi] = fz[noi].read() / nodalMass[noi]; + } +} + + +proc ApplyAccelerationBoundaryConditionsForNodes() { + // TODO: Shouldn't we be able to write these as follows? + // + // xdd[XSym] = 0.0; + // ydd[YSym] = 0.0; + // zdd[ZSym] = 0.0; + + forall x in XSym do xdd[x] = 0.0; + forall y in YSym do ydd[y] = 0.0; + forall z in ZSym do zdd[z] = 0.0; +} + + +proc CalcVelocityForNodes(dt: real, u_cut: real) { + forall i in Nodes do local { + var xdtmp = xd[i] + xdd[i] * dt, + ydtmp = yd[i] + ydd[i] * dt, + zdtmp = zd[i] + zdd[i] * dt; + if abs(xdtmp) < u_cut then xdtmp = 0.0; + if abs(ydtmp) < u_cut then ydtmp = 0.0; + if abs(zdtmp) < u_cut then zdtmp = 0.0; + xd[i] = xdtmp; + yd[i] = ydtmp; + zd[i] = zdtmp; + } +} + + +proc CalcPositionForNodes(dt: real) { + forall ijk in Nodes { + x[ijk] += xd[ijk] * dt; + y[ijk] += yd[ijk] * dt; + z[ijk] += zd[ijk] * dt; + } +} + +// sungeun: Temporary array reused throughout +proc CalcLagrangeElements() { + var dxx, dyy, dzz: [Elems] real; + + CalcKinematicsForElems(dxx, dyy, dzz, deltatime); + + // element loop to do some stuff not included in the elemlib function. + forall k in Elems do local { + vdov[k] = dxx[k] + dyy[k] + dzz[k]; + var vdovthird = vdov[k] / 3.0; + dxx[k] -= vdovthird; + dyy[k] -= vdovthird; + dzz[k] -= vdovthird; + } + + // See if any volumes are negative, and take appropriate action. + forall e in Elems { + if vnew[e] <= 0.0 then + halt("can't have negative volume (vnew[", e, "]=", vnew[e], ")"); + } +} + + +proc CalcKinematicsForElems(dxx, dyy, dzz, const dt: real) { + // loop over all elements + forall k in Elems { + var b_x, b_y, b_z: 8*real, + d: 6*real, + detJ: real; + + //get nodal coordinates from global arrays and copy into local arrays + var x_local, y_local, z_local: 8*real; + localizeNeighborNodes(k, x, x_local, y, y_local, z, z_local); + + //get nodal velocities from global arrays and copy into local arrays + var xd_local, yd_local, zd_local: 8*real; + localizeNeighborNodes(k, xd, xd_local, yd, yd_local, zd, zd_local); + var dt2 = 0.5 * dt; //wish this was local, too... + + local { + //volume calculations + const volume = CalcElemVolume(x_local, y_local, z_local); + const relativeVolume = volume / volo[k]; + vnew[k] = relativeVolume; + delv[k] = relativeVolume - v[k]; + + //set characteristic length + arealg[k] = CalcElemCharacteristicLength(x_local, y_local, z_local, + volume); + + for param i in 1..8 { + x_local[i] -= dt2 * xd_local[i]; + y_local[i] -= dt2 * yd_local[i]; + z_local[i] -= dt2 * zd_local[i]; + } + + CalcElemShapeFunctionDerivatives(x_local, y_local, z_local, + b_x, b_y, b_z, detJ); + + CalcElemVelocityGradient(xd_local, yd_local, zd_local, b_x, b_y, b_z, + detJ, d); + + } + + // put velocity gradient quantities into their global arrays. + dxx[k] = d[1]; + dyy[k] = d[2]; + dzz[k] = d[3]; + } +} + + +// sungeun: Temporary array reused throughout +/* velocity gradient */ +var delv_xi, delv_eta, delv_zeta: [Elems] real; +/* position gradient */ +var delx_xi, delx_eta, delx_zeta: [Elems] real; + +proc CalcQForElems() { + // MONOTONIC Q option + + /* Calculate velocity gradients */ + CalcMonotonicQGradientsForElems(delv_xi, delv_eta, delv_zeta, + delx_xi, delx_eta, delx_zeta); + + /* Transfer veloctiy gradients in the first order elements */ + /* problem->commElements->Transfer(CommElements::monoQ) ; */ + CalcMonotonicQForElems(delv_xi, delv_eta, delv_zeta, + delx_xi, delx_eta, delx_zeta); + + /* Don't allow excessive artificial viscosity */ + forall e in Elems { + if q[e] > qstop then + halt("Excessive artificial viscosity! (q[", e, "]=", q[e], ")"); + } +} + + +// sungeun: Temporary array reused throughout +var vnewc: [MatElems] real; + +/* Expose all of the variables needed for material evaluation */ +proc ApplyMaterialPropertiesForElems() { + + forall i in MatElems do vnewc[i] = vnew[i]; + + if eosvmin != 0.0 then + [c in vnewc] if c < eosvmin then c = eosvmin; + + if eosvmax != 0.0 then + [c in vnewc] if c > eosvmax then c = eosvmax; + + + // old comment: The following loop should compute min/max reductions; + // currently, race-y + + forall matelm in MatElems { + var vc = v[matelm]; + if eosvmin != 0.0 && vc < eosvmin then vc = eosvmin; + if eosvmax != 0.0 && vc > eosvmax then vc = eosvmax; + if vc <= 0.0 { + writeln("Volume error (in ApplyMaterialProperiesForElems)."); + exit(1); + } + } + + EvalEOSForElems(vnewc); +} + + +proc UpdateVolumesForElems() { + forall i in Elems do local { + var tmpV = vnew[i]; + if abs(tmpV-1.0) < v_cut then tmpV = 1.0; + v[i] = tmpV; + } +} + + +proc CalcMonotonicQGradientsForElems(delv_xi, delv_eta, delv_zeta, + delx_xi, delx_eta, delx_zeta) { + forall eli in Elems { + const ptiny = 1.0e-36; + var xl, yl, zl: 8*real; + localizeNeighborNodes(eli, x, xl, y, yl, z, zl); + var xvl, yvl, zvl: 8*real; + localizeNeighborNodes(eli, xd, xvl, yd, yvl, zd, zvl); + + local { + const vol = volo[eli] * vnew[eli], + norm = 1.0 / (vol + ptiny); + var ax, ay, az, dxv, dyv, dzv: real; + + const dxj = -0.25*((xl[1]+xl[2]+xl[6]+xl[5])-(xl[4]+xl[3]+xl[7]+xl[8])), + dyj = -0.25*((yl[1]+yl[2]+yl[6]+yl[5])-(yl[4]+yl[3]+yl[7]+yl[8])), + dzj = -0.25*((zl[1]+zl[2]+zl[6]+zl[5])-(zl[4]+zl[3]+zl[7]+zl[8])), + + dxi = 0.25*((xl[2]+xl[3]+xl[7]+xl[6])-(xl[1]+xl[4]+xl[8]+xl[5])), + dyi = 0.25*((yl[2]+yl[3]+yl[7]+yl[6])-(yl[1]+yl[4]+yl[8]+yl[5])), + dzi = 0.25*((zl[2]+zl[3]+zl[7]+zl[6])-(zl[1]+zl[4]+zl[8]+zl[5])), + + dxk = 0.25*((xl[5]+xl[6]+xl[7]+xl[8])-(xl[1]+xl[2]+xl[3]+xl[4])), + dyk = 0.25*((yl[5]+yl[6]+yl[7]+yl[8])-(yl[1]+yl[2]+yl[3]+yl[4])), + dzk = 0.25*((zl[5]+zl[6]+zl[7]+zl[8])-(zl[1]+zl[2]+zl[3]+zl[4])); + + /* find delvk and delxk ( i cross j ) */ + + ax = dyi*dzj - dzi*dyj; + ay = dzi*dxj - dxi*dzj; + az = dxi*dyj - dyi*dxj; + + delx_zeta[eli] = vol / sqrt(ax*ax + ay*ay + az*az + ptiny); + + ax *= norm; + ay *= norm; + az *= norm; + + dxv = 0.25*((xvl[5]+xvl[6]+xvl[7]+xvl[8])-(xvl[1]+xvl[2]+xvl[3]+xvl[4])); + dyv = 0.25*((yvl[5]+yvl[6]+yvl[7]+yvl[8])-(yvl[1]+yvl[2]+yvl[3]+yvl[4])); + dzv = 0.25*((zvl[5]+zvl[6]+zvl[7]+zvl[8])-(zvl[1]+zvl[2]+zvl[3]+zvl[4])); + + delv_zeta[eli] = ax*dxv + ay*dyv + az*dzv; + + /* find delxi and delvi ( j cross k ) */ + + ax = dyj*dzk - dzj*dyk; + ay = dzj*dxk - dxj*dzk; + az = dxj*dyk - dyj*dxk; + + delx_xi[eli] = vol / sqrt(ax*ax + ay*ay + az*az + ptiny) ; + + ax *= norm; + ay *= norm; + az *= norm; + + dxv = 0.25*((xvl[2]+xvl[3]+xvl[7]+xvl[6])-(xvl[1]+xvl[4]+xvl[8]+xvl[5])); + dyv = 0.25*((yvl[2]+yvl[3]+yvl[7]+yvl[6])-(yvl[1]+yvl[4]+yvl[8]+yvl[5])); + dzv = 0.25*((zvl[2]+zvl[3]+zvl[7]+zvl[6])-(zvl[1]+zvl[4]+zvl[8]+zvl[5])); + + delv_xi[eli] = ax*dxv + ay*dyv + az*dzv ; + + /* find delxj and delvj ( k cross i ) */ + + ax = dyk*dzi - dzk*dyi; + ay = dzk*dxi - dxk*dzi; + az = dxk*dyi - dyk*dxi; + + delx_eta[eli] = vol / sqrt(ax*ax + ay*ay + az*az + ptiny) ; + + ax *= norm; + ay *= norm; + az *= norm; + + dxv= -0.25*((xvl[1]+xvl[2]+xvl[6]+xvl[5])-(xvl[4]+xvl[3]+xvl[7]+xvl[8])); + dyv= -0.25*((yvl[1]+yvl[2]+yvl[6]+yvl[5])-(yvl[4]+yvl[3]+yvl[7]+yvl[8])); + dzv= -0.25*((zvl[1]+zvl[2]+zvl[6]+zvl[5])-(zvl[4]+zvl[3]+zvl[7]+zvl[8])); + + delv_eta[eli] = ax*dxv + ay*dyv + az*dzv ; + } /* local */ + } /* forall eli */ +} + + +proc CalcMonotonicQForElems(delv_xi, delv_eta, delv_zeta, + delx_xi, delx_eta, delx_zeta) { + //got rid of call through to "CalcMonotonicQRegionForElems" + + forall i in MatElems { + const ptiny = 1.0e-36; + const bcMask = elemBC[i]; + var norm, delvm, delvp: real; + + /* phixi */ + norm = 1.0 / (delv_xi[i] + ptiny); + + select bcMask & XI_M { + when 0 do delvm = delv_xi[lxim(i)]; + when XI_M_SYMM do delvm = delv_xi[i]; + when XI_M_FREE do delvm = 0.0; + } + select bcMask & XI_P { + when 0 do delvp = delv_xi[lxip(i)]; + when XI_P_SYMM do delvp = delv_xi[i]; + when XI_P_FREE do delvp = 0.0; + } + + delvm *= norm; + delvp *= norm; + + var phixi = 0.5 * (delvm + delvp); + + delvm *= monoq_limiter_mult; + delvp *= monoq_limiter_mult; + + if delvm < phixi then phixi = delvm; + if delvp < phixi then phixi = delvp; + if phixi < 0 then phixi = 0.0; + if phixi > monoq_max_slope then phixi = monoq_max_slope; + + /* phieta */ + norm = 1.0 / (delv_eta[i] + ptiny); + + select bcMask & ETA_M { + when 0 do delvm = delv_eta[letam[i]]; + when ETA_M_SYMM do delvm = delv_eta[i]; + when ETA_M_FREE do delvm = 0.0; + } + select bcMask & ETA_P { + when 0 do delvp = delv_eta[letap[i]]; + when ETA_P_SYMM do delvp = delv_eta[i]; + when ETA_P_FREE do delvp = 0.0; + } + + delvm = delvm * norm; + delvp = delvp * norm; + + var phieta = 0.5 * (delvm + delvp); + + delvm *= monoq_limiter_mult; + delvp *= monoq_limiter_mult; + + if delvm < phieta then phieta = delvm; + if delvp < phieta then phieta = delvp; + if phieta < 0.0 then phieta = 0.0; + if phieta > monoq_max_slope then phieta = monoq_max_slope; + + /* phizeta */ + norm = 1.0 / (delv_zeta[i] + ptiny); + + select bcMask & ZETA_M { + when 0 do delvm = delv_zeta[lzetam[i]]; + when ZETA_M_SYMM do delvm = delv_zeta[i]; + when ZETA_M_FREE do delvm = 0.0; + } + select bcMask & ZETA_P { + when 0 do delvp = delv_zeta[lzetap[i]]; + when ZETA_P_SYMM do delvp = delv_zeta[i]; + when ZETA_P_FREE do delvp = 0.0; + } + + delvm = delvm * norm; + delvp = delvp * norm; + + var phizeta = 0.5 * (delvm + delvp); + + delvm *= monoq_limiter_mult; + delvp *= monoq_limiter_mult; + + if delvm < phizeta then phizeta = delvm; + if delvp < phizeta then phizeta = delvp; + if phizeta < 0.0 then phizeta = 0.0; + if phizeta > monoq_max_slope then phizeta = monoq_max_slope; + + /* Remove length scale */ + var qlin, qquad: real; + if vdov[i] > 0.0 { + qlin = 0.0; + qquad = 0.0; + } else { + var delvxxi = delv_xi[i] * delx_xi[i], + delvxeta = delv_eta[i] * delx_eta[i], + delvxzeta = delv_zeta[i] * delx_zeta[i]; + + if delvxxi > 0.0 then delvxxi = 0.0; + if delvxeta > 0.0 then delvxeta = 0.0; + if delvxzeta > 0.0 then delvxzeta = 0.0; + + const rho = elemMass[i] / (volo[i] * vnew[i]); + + qlin = -qlc_monoq * rho * + ( delvxxi * (1.0 - phixi) + + delvxeta * (1.0 - phieta) + + delvxzeta * (1.0 - phizeta)); + + qquad = qqc_monoq * rho * + ( delvxxi**2 * (1.0 - phixi**2) + + delvxeta**2 * (1.0 - phieta**2) + + delvxzeta**2 * (1.0 - phizeta**2)); + } + qq[i] = qquad; + ql[i] = qlin; + + } +} + + +proc EvalEOSForElems(vnewc) { + const rho0 = refdens; + + var e_old, delvc, p_old, q_old, compression, compHalfStep, + qq_old, ql_old, work, p_new, e_new, q_new, bvc, pbvc: [Elems] real; + + /* compress data, minimal set */ + forall i in MatElems { + e_old[i] = e[i]; + delvc[i] = delv[i]; + p_old[i] = p[i]; + q_old[i] = q[i]; + qq_old[i] = qq[i]; + ql_old[i] = ql[i]; + } + + // + // TODO: Uncomment local once sparse domain is distributed + // + forall i in Elems /* do local */ { + compression[i] = 1.0 / vnewc[i] - 1.0; + const vchalf = vnewc[i] - delvc[i] * 0.5; + compHalfStep[i] = 1.0 / vchalf - 1.0; + } + + /* Check for v > eosvmax or v < eosvmin */ + // (note: I think this was already checked for in calling function!) + if eosvmin != 0.0 { + forall i in Elems { + if vnewc[i] <= eosvmin then compHalfStep[i] = compression[i]; + } + } + if eosvmax != 0.0 { + forall i in Elems { + if vnewc[i] >= eosvmax { + p_old[i] = 0.0; + compression[i] = 0.0; + compHalfStep[i] = 0.0; + } + } + } + + CalcEnergyForElems(p_new, e_new, q_new, bvc, pbvc, + p_old, e_old, q_old, compression, compHalfStep, + vnewc, work, delvc, qq_old, ql_old); + + forall i in MatElems { + p[i] = p_new[i]; + e[i] = e_new[i]; + q[i] = q_new[i]; + } + + CalcSoundSpeedForElems(vnewc, rho0, e_new, p_new, pbvc, bvc); +} + + +proc CalcEnergyForElems(p_new, e_new, q_new, bvc, pbvc, + p_old, e_old, q_old, compression, compHalfStep, + vnewc, work, delvc, qq_old, ql_old) { + // TODO: might need to move these consts into foralls or global + // Otherwise, they live on Locale0 and everyone else has to do + // remote reads. OR: Check if they're remote value forwarded. + const rho0 = refdens; + const sixth = 1.0 / 6.0; + + var pHalfStep: [MatElems] real; + + forall i in Elems { + e_new[i] = e_old[i] - 0.5 * delvc[i] * (p_old[i] + q_old[i]) + + 0.5 * work[i]; + if e_new[i] < emin then e_new[i] = emin; + } + + CalcPressureForElems(pHalfStep, bvc, pbvc, e_new, compHalfStep, + vnewc, pmin, p_cut, eosvmax); + + forall i in Elems { + const vhalf = 1.0 / (1.0 + compHalfStep[i]); + + if delvc[i] > 0.0 { + q_new[i] = 0.0; + } else { + var ssc = (pbvc[i] * e_new[i] + vhalf**2 * bvc[i] * pHalfStep[i]) / rho0; + if ssc <= 0.0 then ssc = 0.333333e-36; + else ssc = sqrt(ssc); + q_new[i] = ssc * ql_old[i] + qq_old[i]; + } + + e_new[i] += 0.5 * delvc[i] + * (3.0*(p_old[i] + q_old[i]) - 4.0*(pHalfStep[i] + q_new[i])); + } + forall i in Elems { + e_new[i] += 0.5 * work[i]; + if abs(e_new[i] < e_cut) then e_new[i] = 0.0; + if e_new[i] < emin then e_new[i] = emin; + } + + CalcPressureForElems(p_new, bvc, pbvc, e_new, compression, vnewc, pmin, + p_cut, eosvmax); + + forall i in Elems { + var q_tilde:real; + + if delvc[i] > 0.0 { + q_tilde = 0.0; + } else { + var ssc = (pbvc[i] * e_new[i] + vnewc[i]**2 * bvc[i] * p_new[i] ) / rho0; + if ssc <= 0.0 then ssc = 0.333333e-36; + else ssc = sqrt(ssc); + q_tilde = ssc * ql_old[i] + qq_old[i]; + } + + e_new[i] -= (7.0*(p_old[i] + q_old[i]) + - 8.0*(pHalfStep[i] + q_new[i]) + + (p_new[i] + q_tilde)) * delvc[i] * sixth; + if abs(e_new[i]) < e_cut then e_new[i] = 0.0; + if e_new[i] < emin then e_new[i] = emin; + } + + CalcPressureForElems(p_new, bvc, pbvc, e_new, compression, vnewc, pmin, + p_cut, eosvmax); + + + // + // TODO: Uncomment local once sparse domain is distributed + // + forall i in Elems /* do local */ { + if delvc[i] <= 0.0 { + var ssc = (pbvc[i] * e_new[i] + vnewc[i]**2 * bvc[i] * p_new[i] ) / rho0; + if ssc <= 0.0 then ssc = 0.333333e-36; + else ssc = sqrt(ssc); + q_new[i] = ssc * ql_old[i] + qq_old[i]; + if abs(q_new[i]) < q_cut then q_new[i] = 0.0; + } + } +} + + +proc CalcSoundSpeedForElems(vnewc, rho0:real, enewc, pnewc, pbvc, bvc) { + // TODO: Open question: If we had multiple materials, should (a) ss + // be zeroed and accumulated into, and (b) updated atomically to + // avoid losing updates? (Jeff will go back and think on this) + // + forall i in MatElems { + var ssTmp = (pbvc[i] * enewc[i] + vnewc[i]**2 * bvc[i] * pnewc[i]) / rho0; + if ssTmp <= 1.111111e-36 then ssTmp = 1.111111e-36; + ss[i] = sqrt(ssTmp); + } +} + + +iter elemToNodes(elem) { + for param i in 1..nodesPerElem do + yield elemToNode[elem][i]; +} + +iter elemToNodesTuple(e) { + for i in 1..nodesPerElem do + yield (elemToNode[e][i], i); +} + + +proc deprint(title:string, x:[?D] real, y:[D]real, z:[D]real) { + writeln(title); + for i in D { + writeln(format("%3d", i), ": ", + format("%3.4e", x[i]), " ", + format("%3.4e", y[i]), " ", + format("%3.4e", z[i])); + } +} + + diff --git a/samples/Chapel/nbody.chpl b/samples/Chapel/nbody.chpl new file mode 100644 index 00000000..f46e4f68 --- /dev/null +++ b/samples/Chapel/nbody.chpl @@ -0,0 +1,147 @@ +/* The Computer Language Benchmarks Game + http://benchmarksgame.alioth.debian.org/ + + contributed by Albert Sidelnik + modified by Brad Chamberlain +*/ + + +// +// The number of timesteps to simulate; may be set via the command-line +// +config const n = 10000; + +// +// Constants representing pi, the solar mass, and the number of days per year +// +const pi = 3.141592653589793, + solarMass = 4 * pi**2, + daysPerYear = 365.24; + +// +// a record representing one of the bodies in the solar system +// +record body { + var pos: 3*real; + var v: 3*real; + var mass: real; // does not change after it is set up +} + +// +// the array of bodies that we'll be simulating +// +var bodies = [/* sun */ + new body(mass = solarMass), + + /* jupiter */ + new body(pos = ( 4.84143144246472090e+00, + -1.16032004402742839e+00, + -1.03622044471123109e-01), + v = ( 1.66007664274403694e-03 * daysPerYear, + 7.69901118419740425e-03 * daysPerYear, + -6.90460016972063023e-05 * daysPerYear), + mass = 9.54791938424326609e-04 * solarMass), + + /* saturn */ + new body(pos = ( 8.34336671824457987e+00, + 4.12479856412430479e+00, + -4.03523417114321381e-01), + v = (-2.76742510726862411e-03 * daysPerYear, + 4.99852801234917238e-03 * daysPerYear, + 2.30417297573763929e-05 * daysPerYear), + mass = 2.85885980666130812e-04 * solarMass), + + /* uranus */ + new body(pos = ( 1.28943695621391310e+01, + -1.51111514016986312e+01, + -2.23307578892655734e-01), + v = ( 2.96460137564761618e-03 * daysPerYear, + 2.37847173959480950e-03 * daysPerYear, + -2.96589568540237556e-05 * daysPerYear), + mass = 4.36624404335156298e-05 * solarMass), + + /* neptune */ + new body(pos = ( 1.53796971148509165e+01, + -2.59193146099879641e+01, + 1.79258772950371181e-01), + v = ( 2.68067772490389322e-03 * daysPerYear, + 1.62824170038242295e-03 * daysPerYear, + -9.51592254519715870e-05 * daysPerYear), + mass = 5.15138902046611451e-05 * solarMass) + ]; + +// +// the number of bodies to be simulated +// +const numbodies = bodies.numElements; + +// +// The computation involves initializing the sun's velocity, +// writing the initial energy, advancing the system through 'n' +// timesteps, and writing the final energy. +// +proc main() { + initSun(); + + writef("%.9r\n", energy()); + for 1..n do + advance(0.01); + writef("%.9r\n", energy()); +} + +// +// compute the sun's initial velocity +// +proc initSun() { + const p = + reduce (for b in bodies do (b.v * b.mass)); + bodies[1].v = -p / solarMass; +} + +// +// advance the positions and velocities of all the bodies +// +proc advance(dt) { + for i in 1..numbodies { + for j in i+1..numbodies { + updateVelocities(bodies[i], bodies[j]); + + inline proc updateVelocities(ref b1, ref b2) { + const dpos = b1.pos - b2.pos, + mag = dt / sqrt(sumOfSquares(dpos))**3; + + b1.v -= dpos * b2.mass * mag; + b2.v += dpos * b1.mass * mag; + } + } + } + + for b in bodies do + b.pos += dt * b.v; +} + +// +// compute the energy of the bodies +// +proc energy() { + var e = 0.0; + + for i in 1..numbodies { + const b1 = bodies[i]; + + e += 0.5 * b1.mass * sumOfSquares(b1.v); + + for j in i+1..numbodies { + const b2 = bodies[j]; + + e -= (b1.mass * b2.mass) / sqrt(sumOfSquares(b1.pos - b2.pos)); + } + } + + return e; +} + +// +// a helper routine to compute the sum of squares of a 3-tuple's components +// +inline proc sumOfSquares(x) + return x(1)**2 + x(2)**2 + x(3)**2; diff --git a/samples/Chapel/quicksort.chpl b/samples/Chapel/quicksort.chpl new file mode 100644 index 00000000..33d9722c --- /dev/null +++ b/samples/Chapel/quicksort.chpl @@ -0,0 +1,145 @@ +// +// An example of a parallel quick sort implementation that uses +// "cobegin" to make each recursive call in parallel and "serial" to +// limit the number of threads. +// + +use Random, Time; // for random number generation and the Timer class + +var timer: Timer; // to time the sort + +config var n: int = 2**15; // the size of the array to be sorted +config var thresh: int = 1; // the recursive depth to serialize +config var verbose: int = 0; // print out this many elements in array +config var timing: bool = true; // set timing to false to disable timer + +var A: [1..n] real; // array of real numbers + +// +// initialize array with random numbers +// +fillRandom(A); + +// +// print out front of array if verbose flag is set +// +if verbose > 0 then + writeln("A[1..", verbose, "] = ", A[1..verbose]); + +// +// start timer, call parallel quick sort routine, stop timer +// +if timing then timer.start(); +pqsort(A, thresh); +if timing then timer.stop(); + +// +// report sort time +// +if timing then writeln("sorted in ", timer.elapsed(), " seconds"); + +// +// print out front of array if verbose flag is set +// values should now be in sorted order +// +if verbose > 0 then + writeln("A[1..", verbose, "] = ", A[1..verbose]); + +// +// verify that array is sorted or halt +// +for i in 2..n do + if A(i) < A(i-1) then + halt("A(", i-1, ") == ", A(i-1), " > A(", i, ") == ", A(i)); + +writeln("verification success"); + +// +// pqsort -- parallel quick sort +// +// arr: generic 1D array of values (real, int, ...) +// thresh: number of recursive calls to make before serializing +// low: lower bound of array to start sort at, defaults to whole array +// high: upper bound of array to stop sort at, defaults to whole array +// +proc pqsort(arr: [], + thresh: int, + low: int = arr.domain.low, + high: int = arr.domain.high) where arr.rank == 1 { + + // + // base case: arr[low..high] is small enough to bubble sort + // + if high - low < 8 { + bubbleSort(arr, low, high); + return; + } + + // + // determine pivot and partition arr[low..high] + // + const pivotVal = findPivot(); + const pivotLoc = partition(pivotVal); + + // + // make recursive calls to parallel quick sort each unsorted half of + // the array; if thresh is 0 or less, start executing conquer tasks + // serially + // + serial thresh <= 0 do cobegin { + pqsort(arr, thresh-1, low, pivotLoc-1); + pqsort(arr, thresh-1, pivotLoc+1, high); + } + + // + // findPivot -- helper routine to find pivot value using simple + // median-of-3 method, returns pivot value + // + proc findPivot() { + const mid = low + (high-low+1) / 2; + + if arr(mid) < arr(low) then arr(mid) <=> arr(low); + if arr(high) < arr(low) then arr(high) <=> arr(low); + if arr(high) < arr(mid) then arr(high) <=> arr(mid); + + const pivotVal = arr(mid); + arr(mid) = arr(high-1); + arr(high-1) = pivotVal; + + return pivotVal; + } + + // + // partition -- helper routine to partition array such that all + // values less than pivot are to its left and all + // values greater than pivot are to its right, returns + // pivot location + // + proc partition(pivotVal) { + var ilo = low, ihi = high-1; + while (ilo < ihi) { + do { ilo += 1; } while arr(ilo) < pivotVal; + do { ihi -= 1; } while pivotVal < arr(ihi); + if (ilo < ihi) { + arr(ilo) <=> arr(ihi); + } + } + arr(high-1) = arr(ilo); + arr(ilo) = pivotVal; + return ilo; + } +} + +// +// bubbleSort -- bubble sort for base case of quick sort +// +// arr: generic 1D array of values (real, int, ...) +// low: lower bound of array to start sort at +// high: upper bound of array to stop sort at +// +proc bubbleSort(arr: [], low: int, high: int) where arr.rank == 1 { + for i in low..high do + for j in low..high-1 do + if arr(j) > arr(j+1) then + arr(j) <=> arr(j+1); +} From c5acce0604a8cbc7f9286e7197ec70a569dc9e04 Mon Sep 17 00:00:00 2001 From: Thomas Van Doren Date: Thu, 3 Jul 2014 15:31:52 -0700 Subject: [PATCH 102/268] Include Chapel in some of the language tests. --- test/test_language.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/test_language.rb b/test/test_language.rb index 10c5f9a2..28caabf4 100644 --- a/test/test_language.rb +++ b/test/test_language.rb @@ -17,6 +17,7 @@ class TestLanguage < Test::Unit::TestCase assert_equal Lexer['C'], Language['OpenCL'].lexer assert_equal Lexer['C'], Language['XS'].lexer assert_equal Lexer['C++'], Language['C++'].lexer + assert_equal Lexer['Chapel'], Language['Chapel'].lexer assert_equal Lexer['Coldfusion HTML'], Language['ColdFusion'].lexer assert_equal Lexer['Coq'], Language['Coq'].lexer assert_equal Lexer['FSharp'], Language['F#'].lexer @@ -71,6 +72,7 @@ class TestLanguage < Test::Unit::TestCase assert_equal Language['C'], Language.find_by_alias('c') assert_equal Language['C++'], Language.find_by_alias('c++') assert_equal Language['C++'], Language.find_by_alias('cpp') + assert_equal Language['Chapel'], Language.find_by_alias('chpl') assert_equal Language['CoffeeScript'], Language.find_by_alias('coffee') assert_equal Language['CoffeeScript'], Language.find_by_alias('coffee-script') assert_equal Language['ColdFusion'], Language.find_by_alias('cfm') @@ -256,6 +258,7 @@ class TestLanguage < Test::Unit::TestCase assert_equal [Language['Shell']], Language.find_by_filename('.zshrc') assert_equal [Language['Clojure']], Language.find_by_filename('riemann.config') assert_equal [Language['HTML+Django']], Language.find_by_filename('index.jinja') + assert_equal [Language['Chapel']], Language.find_by_filename('examples/hello.chpl') end def test_find_by_shebang From cd5298dee68a915abb44768531f1878e12df0104 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Fri, 4 Jul 2014 14:23:59 -0500 Subject: [PATCH 103/268] Reverting https://github.com/github/linguist/pull/1268 --- lib/linguist/languages.yml | 1 - samples/Assembly/ASSEMBLE.inc | 2048 ---------- samples/Assembly/SYSTEM.inc | 503 --- samples/Assembly/X86_64.inc | 7060 --------------------------------- 4 files changed, 9612 deletions(-) delete mode 100644 samples/Assembly/ASSEMBLE.inc delete mode 100644 samples/Assembly/SYSTEM.inc delete mode 100644 samples/Assembly/X86_64.inc diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 17a23544..120cee58 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -157,7 +157,6 @@ Assembly: - nasm extensions: - .asm - - .inc Augeas: type: programming diff --git a/samples/Assembly/ASSEMBLE.inc b/samples/Assembly/ASSEMBLE.inc deleted file mode 100644 index c4ffdae3..00000000 --- a/samples/Assembly/ASSEMBLE.inc +++ /dev/null @@ -1,2048 +0,0 @@ - -; flat assembler core -; Copyright (c) 1999-2014, Tomasz Grysztar. -; All rights reserved. - -assembler: - xor eax,eax - mov [stub_size],eax - mov [current_pass],ax - mov [resolver_flags],eax - mov [number_of_sections],eax - mov [actual_fixups_size],eax - assembler_loop: - mov eax,[labels_list] - mov [tagged_blocks],eax - mov eax,[additional_memory] - mov [free_additional_memory],eax - mov eax,[additional_memory_end] - mov [structures_buffer],eax - mov esi,[source_start] - mov edi,[code_start] - xor eax,eax - mov dword [adjustment],eax - mov dword [adjustment+4],eax - mov [addressing_space],eax - mov [error_line],eax - mov [counter],eax - mov [format_flags],eax - mov [number_of_relocations],eax - mov [undefined_data_end],eax - mov [file_extension],eax - mov [next_pass_needed],al - mov [output_format],al - mov [adjustment_sign],al - mov [code_type],16 - call init_addressing_space - pass_loop: - call assemble_line - jnc pass_loop - mov eax,[additional_memory_end] - cmp eax,[structures_buffer] - je pass_done - sub eax,18h - mov eax,[eax+4] - mov [current_line],eax - jmp missing_end_directive - pass_done: - call close_pass - mov eax,[labels_list] - check_symbols: - cmp eax,[memory_end] - jae symbols_checked - test byte [eax+8],8 - jz symbol_defined_ok - mov cx,[current_pass] - cmp cx,[eax+18] - jne symbol_defined_ok - test byte [eax+8],1 - jz symbol_defined_ok - sub cx,[eax+16] - cmp cx,1 - jne symbol_defined_ok - and byte [eax+8],not 1 - or [next_pass_needed],-1 - symbol_defined_ok: - test byte [eax+8],10h - jz use_prediction_ok - mov cx,[current_pass] - and byte [eax+8],not 10h - test byte [eax+8],20h - jnz check_use_prediction - cmp cx,[eax+18] - jne use_prediction_ok - test byte [eax+8],8 - jz use_prediction_ok - jmp use_misprediction - check_use_prediction: - test byte [eax+8],8 - jz use_misprediction - cmp cx,[eax+18] - je use_prediction_ok - use_misprediction: - or [next_pass_needed],-1 - use_prediction_ok: - test byte [eax+8],40h - jz check_next_symbol - and byte [eax+8],not 40h - test byte [eax+8],4 - jnz define_misprediction - mov cx,[current_pass] - test byte [eax+8],80h - jnz check_define_prediction - cmp cx,[eax+16] - jne check_next_symbol - test byte [eax+8],1 - jz check_next_symbol - jmp define_misprediction - check_define_prediction: - test byte [eax+8],1 - jz define_misprediction - cmp cx,[eax+16] - je check_next_symbol - define_misprediction: - or [next_pass_needed],-1 - check_next_symbol: - add eax,LABEL_STRUCTURE_SIZE - jmp check_symbols - symbols_checked: - cmp [next_pass_needed],0 - jne next_pass - mov eax,[error_line] - or eax,eax - jz assemble_ok - mov [current_line],eax - cmp [error],undefined_symbol - jne error_confirmed - mov eax,[error_info] - or eax,eax - jz error_confirmed - test byte [eax+8],1 - jnz next_pass - error_confirmed: - call error_handler - error_handler: - mov eax,[error] - sub eax,error_handler - add [esp],eax - ret - next_pass: - inc [current_pass] - mov ax,[current_pass] - cmp ax,[passes_limit] - je code_cannot_be_generated - jmp assembler_loop - assemble_ok: - ret - -create_addressing_space: - mov ebx,[addressing_space] - test ebx,ebx - jz init_addressing_space - test byte [ebx+0Ah],1 - jnz illegal_instruction - mov eax,edi - sub eax,[ebx+18h] - mov [ebx+1Ch],eax - init_addressing_space: - mov ebx,[tagged_blocks] - mov dword [ebx-4],10h - mov dword [ebx-8],20h - sub ebx,8+20h - cmp ebx,edi - jbe out_of_memory - mov [tagged_blocks],ebx - mov [addressing_space],ebx - xor eax,eax - mov [ebx],edi - mov [ebx+4],eax - mov [ebx+8],eax - mov [ebx+10h],eax - mov [ebx+14h],eax - mov [ebx+18h],edi - mov [ebx+1Ch],eax - ret - -assemble_line: - mov eax,[tagged_blocks] - sub eax,100h - cmp edi,eax - ja out_of_memory - lods byte [esi] - cmp al,1 - je assemble_instruction - jb source_end - cmp al,3 - jb define_label - je define_constant - cmp al,4 - je label_addressing_space - cmp al,0Fh - je new_line - cmp al,13h - je code_type_setting - cmp al,10h - jne illegal_instruction - lods byte [esi] - jmp segment_prefix - code_type_setting: - lods byte [esi] - mov [code_type],al - jmp instruction_assembled - new_line: - lods dword [esi] - mov [current_line],eax - mov [prefixed_instruction],0 - cmp [symbols_file],0 - je continue_line - cmp [next_pass_needed],0 - jne continue_line - mov ebx,[tagged_blocks] - mov dword [ebx-4],1 - mov dword [ebx-8],14h - sub ebx,8+14h - cmp ebx,edi - jbe out_of_memory - mov [tagged_blocks],ebx - mov [ebx],eax - mov [ebx+4],edi - mov eax,[addressing_space] - mov [ebx+8],eax - mov al,[code_type] - mov [ebx+10h],al - continue_line: - cmp byte [esi],0Fh - je line_assembled - jmp assemble_line - define_label: - lods dword [esi] - cmp eax,0Fh - jb invalid_use_of_symbol - je reserved_word_used_as_symbol - mov ebx,eax - lods byte [esi] - mov [label_size],al - call make_label - jmp continue_line - make_label: - mov eax,edi - xor edx,edx - xor cl,cl - mov ebp,[addressing_space] - sub eax,[ds:ebp] - sbb edx,[ds:ebp+4] - sbb cl,[ds:ebp+8] - jp label_value_ok - call recoverable_overflow - label_value_ok: - mov [address_sign],cl - test byte [ds:ebp+0Ah],1 - jnz make_virtual_label - or byte [ebx+9],1 - xchg eax,[ebx] - xchg edx,[ebx+4] - mov ch,[ebx+9] - shr ch,1 - and ch,1 - neg ch - sub eax,[ebx] - sbb edx,[ebx+4] - sbb ch,cl - mov dword [adjustment],eax - mov dword [adjustment+4],edx - mov [adjustment_sign],ch - or al,ch - or eax,edx - setnz ah - jmp finish_label - make_virtual_label: - and byte [ebx+9],not 1 - cmp eax,[ebx] - mov [ebx],eax - setne ah - cmp edx,[ebx+4] - mov [ebx+4],edx - setne al - or ah,al - finish_label: - mov ebp,[addressing_space] - mov ch,[ds:ebp+9] - mov cl,[label_size] - mov edx,[ds:ebp+14h] - mov ebp,[ds:ebp+10h] - finish_label_symbol: - mov al,[address_sign] - xor al,[ebx+9] - and al,10b - or ah,al - xor [ebx+9],al - cmp cl,[ebx+10] - mov [ebx+10],cl - setne al - or ah,al - cmp ch,[ebx+11] - mov [ebx+11],ch - setne al - or ah,al - cmp ebp,[ebx+12] - mov [ebx+12],ebp - setne al - or ah,al - or ch,ch - jz label_symbol_ok - cmp edx,[ebx+20] - mov [ebx+20],edx - setne al - or ah,al - label_symbol_ok: - mov cx,[current_pass] - xchg [ebx+16],cx - mov edx,[current_line] - mov [ebx+28],edx - and byte [ebx+8],not 2 - test byte [ebx+8],1 - jz new_label - cmp cx,[ebx+16] - je symbol_already_defined - btr dword [ebx+8],10 - jc requalified_label - inc cx - sub cx,[ebx+16] - setnz al - or ah,al - jz label_made - test byte [ebx+8],8 - jz label_made - mov cx,[current_pass] - cmp cx,[ebx+18] - jne label_made - requalified_label: - or [next_pass_needed],-1 - label_made: - ret - new_label: - or byte [ebx+8],1 - ret - define_constant: - lods dword [esi] - inc esi - cmp eax,0Fh - jb invalid_use_of_symbol - je reserved_word_used_as_symbol - mov edx,[eax+8] - push edx - cmp [current_pass],0 - je get_constant_value - test dl,4 - jnz get_constant_value - mov cx,[current_pass] - cmp cx,[eax+16] - je get_constant_value - or dl,4 - mov [eax+8],dl - get_constant_value: - push eax - mov al,byte [esi-1] - push eax - or [size_override],-1 - call get_value - pop ebx - mov ch,bl - pop ebx - pop ecx - test cl,4 - jnz constant_referencing_mode_ok - and byte [ebx+8],not 4 - constant_referencing_mode_ok: - xor cl,cl - mov ch,[value_type] - cmp ch,3 - je invalid_use_of_symbol - make_constant: - and byte [ebx+9],not 1 - cmp eax,[ebx] - mov [ebx],eax - setne ah - cmp edx,[ebx+4] - mov [ebx+4],edx - setne al - or ah,al - mov al,[value_sign] - xor al,[ebx+9] - and al,10b - or ah,al - xor [ebx+9],al - cmp cl,[ebx+10] - mov [ebx+10],cl - setne al - or ah,al - cmp ch,[ebx+11] - mov [ebx+11],ch - setne al - or ah,al - xor edx,edx - cmp edx,[ebx+12] - mov [ebx+12],edx - setne al - or ah,al - or ch,ch - jz constant_symbol_ok - mov edx,[symbol_identifier] - cmp edx,[ebx+20] - mov [ebx+20],edx - setne al - or ah,al - constant_symbol_ok: - mov cx,[current_pass] - xchg [ebx+16],cx - mov edx,[current_line] - mov [ebx+28],edx - test byte [ebx+8],1 - jz new_constant - cmp cx,[ebx+16] - jne redeclare_constant - test byte [ebx+8],2 - jz symbol_already_defined - or byte [ebx+8],4 - and byte [ebx+9],not 4 - jmp instruction_assembled - redeclare_constant: - btr dword [ebx+8],10 - jc requalified_constant - inc cx - sub cx,[ebx+16] - setnz al - or ah,al - jz instruction_assembled - test byte [ebx+8],4 - jnz instruction_assembled - test byte [ebx+8],8 - jz instruction_assembled - mov cx,[current_pass] - cmp cx,[ebx+18] - jne instruction_assembled - requalified_constant: - or [next_pass_needed],-1 - jmp instruction_assembled - new_constant: - or byte [ebx+8],1+2 - jmp instruction_assembled - label_addressing_space: - lods dword [esi] - cmp eax,0Fh - jb invalid_use_of_symbol - je reserved_word_used_as_symbol - mov cx,[current_pass] - test byte [eax+8],1 - jz make_addressing_space_label - cmp cx,[eax+16] - je symbol_already_defined - test byte [eax+9],4 - jnz make_addressing_space_label - or [next_pass_needed],-1 - make_addressing_space_label: - mov dx,[eax+8] - and dx,not (2 or 100h) - or dx,1 or 4 or 400h - mov [eax+8],dx - mov [eax+16],cx - mov edx,[current_line] - mov [eax+28],edx - mov ebx,[addressing_space] - mov [eax],ebx - or byte [ebx+0Ah],2 - jmp continue_line - assemble_instruction: -; mov [operand_size],0 -; mov [size_override],0 -; mov [operand_prefix],0 -; mov [opcode_prefix],0 - and dword [operand_size],0 -; mov [rex_prefix],0 -; mov [vex_required],0 -; mov [vex_register],0 -; mov [immediate_size],0 - and dword [rex_prefix],0 - call instruction_handler - instruction_handler: - movzx ebx,word [esi] - mov al,[esi+2] - add esi,3 - add [esp],ebx - ret - instruction_assembled: - mov al,[esi] - cmp al,0Fh - je line_assembled - or al,al - jnz extra_characters_on_line - line_assembled: - clc - ret - source_end: - dec esi - stc - ret - -org_directive: - lods byte [esi] - cmp al,'(' - jne invalid_argument - cmp byte [esi],'.' - je invalid_value - call get_qword_value - mov cl,[value_type] - test cl,1 - jnz invalid_use_of_symbol - push eax - mov ebx,[addressing_space] - mov eax,edi - sub eax,[ebx+18h] - mov [ebx+1Ch],eax - test byte [ebx+0Ah],1 - jnz in_virtual - call init_addressing_space - jmp org_space_ok - in_virtual: - call close_virtual_addressing_space - call init_addressing_space - or byte [ebx+0Ah],1 - org_space_ok: - pop eax - mov [ebx+9],cl - mov cl,[value_sign] - sub [ebx],eax - sbb [ebx+4],edx - sbb byte [ebx+8],cl - jp org_value_ok - call recoverable_overflow - org_value_ok: - mov edx,[symbol_identifier] - mov [ebx+14h],edx - cmp [output_format],1 - ja instruction_assembled - cmp edi,[code_start] - jne instruction_assembled - cmp eax,100h - jne instruction_assembled - bts [format_flags],0 - jmp instruction_assembled -label_directive: - lods byte [esi] - cmp al,2 - jne invalid_argument - lods dword [esi] - cmp eax,0Fh - jb invalid_use_of_symbol - je reserved_word_used_as_symbol - inc esi - mov ebx,eax - mov [label_size],0 - lods byte [esi] - cmp al,':' - je get_label_size - dec esi - cmp al,11h - jne label_size_ok - get_label_size: - lods word [esi] - cmp al,11h - jne invalid_argument - mov [label_size],ah - label_size_ok: - cmp byte [esi],80h - je get_free_label_value - call make_label - jmp instruction_assembled - get_free_label_value: - inc esi - lods byte [esi] - cmp al,'(' - jne invalid_argument - push ebx ecx - or byte [ebx+8],4 - cmp byte [esi],'.' - je invalid_value - call get_address_value - or bh,bh - setnz ch - xchg ch,cl - mov bp,cx - shl ebp,16 - xchg bl,bh - mov bp,bx - pop ecx ebx - and byte [ebx+8],not 4 - mov ch,[value_type] - test ch,1 - jnz invalid_use_of_symbol - make_free_label: - and byte [ebx+9],not 1 - cmp eax,[ebx] - mov [ebx],eax - setne ah - cmp edx,[ebx+4] - mov [ebx+4],edx - setne al - or ah,al - mov edx,[address_symbol] - mov cl,[label_size] - call finish_label_symbol - jmp instruction_assembled -load_directive: - lods byte [esi] - cmp al,2 - jne invalid_argument - lods dword [esi] - cmp eax,0Fh - jb invalid_use_of_symbol - je reserved_word_used_as_symbol - inc esi - push eax - mov al,1 - cmp byte [esi],11h - jne load_size_ok - lods byte [esi] - lods byte [esi] - load_size_ok: - cmp al,8 - ja invalid_value - mov [operand_size],al - and dword [value],0 - and dword [value+4],0 - lods byte [esi] - cmp al,82h - jne invalid_argument - call get_data_point - jc value_loaded - push esi edi - mov esi,ebx - mov edi,value - rep movs byte [edi],[esi] - pop edi esi - value_loaded: - mov [value_sign],0 - mov eax,dword [value] - mov edx,dword [value+4] - pop ebx - xor cx,cx - jmp make_constant - get_data_point: - mov ebx,[addressing_space] - mov ecx,edi - sub ecx,[ebx+18h] - mov [ebx+1Ch],ecx - lods byte [esi] - cmp al,'(' - jne invalid_argument - cmp byte [esi],11h - jne get_data_address - cmp word [esi+1+4],'):' - jne get_data_address - inc esi - lods dword [esi] - add esi,2 - cmp byte [esi],'(' - jne invalid_argument - inc esi - cmp eax,0Fh - jbe reserved_word_used_as_symbol - mov edx,undefined_symbol - test byte [eax+8],1 - jz addressing_space_unavailable - mov edx,symbol_out_of_scope - mov cx,[eax+16] - cmp cx,[current_pass] - jne addressing_space_unavailable - test byte [eax+9],4 - jz invalid_use_of_symbol - mov ebx,eax - mov ax,[current_pass] - mov [ebx+18],ax - or byte [ebx+8],8 - cmp [symbols_file],0 - je get_addressing_space - cmp [next_pass_needed],0 - jne get_addressing_space - call store_label_reference - get_addressing_space: - mov ebx,[ebx] - get_data_address: - push ebx - cmp byte [esi],'.' - je invalid_value - or [size_override],-1 - call get_address_value - pop ebp - call calculate_relative_offset - cmp [next_pass_needed],0 - jne data_address_type_ok - cmp [value_type],0 - jne invalid_use_of_symbol - data_address_type_ok: - mov ebx,edi - xor ecx,ecx - add ebx,eax - adc edx,ecx - mov eax,ebx - sub eax,[ds:ebp+18h] - sbb edx,ecx - jnz bad_data_address - mov cl,[operand_size] - add eax,ecx - cmp eax,[ds:ebp+1Ch] - ja bad_data_address - clc - ret - addressing_space_unavailable: - cmp [error_line],0 - jne get_data_address - push [current_line] - pop [error_line] - mov [error],edx - mov [error_info],eax - jmp get_data_address - bad_data_address: - call recoverable_overflow - stc - ret -store_directive: - cmp byte [esi],11h - je sized_store - lods byte [esi] - cmp al,'(' - jne invalid_argument - call get_byte_value - xor edx,edx - movzx eax,al - mov [operand_size],1 - jmp store_value_ok - sized_store: - or [size_override],-1 - call get_value - store_value_ok: - cmp [value_type],0 - jne invalid_use_of_symbol - mov dword [value],eax - mov dword [value+4],edx - lods byte [esi] - cmp al,80h - jne invalid_argument - call get_data_point - jc instruction_assembled - push esi edi - mov esi,value - mov edi,ebx - rep movs byte [edi],[esi] - mov eax,edi - pop edi esi - cmp ebx,[undefined_data_end] - jae instruction_assembled - cmp eax,[undefined_data_start] - jbe instruction_assembled - mov [undefined_data_start],eax - jmp instruction_assembled - -display_directive: - lods byte [esi] - cmp al,'(' - jne invalid_argument - cmp byte [esi],0 - jne display_byte - inc esi - lods dword [esi] - mov ecx,eax - push edi - mov edi,[tagged_blocks] - sub edi,8 - sub edi,eax - cmp edi,[esp] - jbe out_of_memory - mov [tagged_blocks],edi - rep movs byte [edi],[esi] - stos dword [edi] - xor eax,eax - stos dword [edi] - pop edi - inc esi - jmp display_next - display_byte: - call get_byte_value - push edi - mov edi,[tagged_blocks] - sub edi,8+1 - mov [tagged_blocks],edi - stos byte [edi] - mov eax,1 - stos dword [edi] - dec eax - stos dword [edi] - pop edi - display_next: - cmp edi,[tagged_blocks] - ja out_of_memory - lods byte [esi] - cmp al,',' - je display_directive - dec esi - jmp instruction_assembled -show_display_buffer: - mov eax,[tagged_blocks] - or eax,eax - jz display_done - mov esi,[labels_list] - cmp esi,eax - je display_done - display_messages: - sub esi,8 - mov eax,[esi+4] - mov ecx,[esi] - sub esi,ecx - test eax,eax - jnz skip_block - push esi - call display_block - pop esi - skip_block: - cmp esi,[tagged_blocks] - jne display_messages - display_done: - ret - -times_directive: - lods byte [esi] - cmp al,'(' - jne invalid_argument - cmp byte [esi],'.' - je invalid_value - call get_count_value - cmp eax,0 - je zero_times - cmp byte [esi],':' - jne times_argument_ok - inc esi - times_argument_ok: - push [counter] - push [counter_limit] - mov [counter_limit],eax - mov [counter],1 - times_loop: - mov eax,esp - sub eax,100h - jc stack_overflow - cmp eax,[stack_limit] - jb stack_overflow - push esi - or [prefixed_instruction],-1 - call continue_line - mov eax,[counter_limit] - cmp [counter],eax - je times_done - inc [counter] - pop esi - jmp times_loop - times_done: - pop eax - pop [counter_limit] - pop [counter] - jmp instruction_assembled - zero_times: - call skip_symbol - jnc zero_times - jmp instruction_assembled - -virtual_directive: - lods byte [esi] - cmp al,80h - jne virtual_at_current - lods byte [esi] - cmp al,'(' - jne invalid_argument - cmp byte [esi],'.' - je invalid_value - call get_address_value - mov ebp,[address_symbol] - or bh,bh - setnz ch - jmp set_virtual - virtual_at_current: - dec esi - mov ebp,[addressing_space] - mov al,[ds:ebp+9] - mov [value_type],al - mov eax,edi - xor edx,edx - xor cl,cl - sub eax,[ds:ebp] - sbb edx,[ds:ebp+4] - sbb cl,[ds:ebp+8] - mov [address_sign],cl - mov bx,[ds:ebp+10h] - mov cx,[ds:ebp+10h+2] - xchg bh,bl - xchg ch,cl - mov ebp,[ds:ebp+14h] - set_virtual: - xchg bl,bh - xchg cl,ch - shl ecx,16 - mov cx,bx - push ecx eax - call allocate_structure_data - mov word [ebx],virtual_directive-instruction_handler - mov ecx,[addressing_space] - mov [ebx+12],ecx - mov [ebx+8],edi - mov ecx,[current_line] - mov [ebx+4],ecx - mov ebx,[addressing_space] - mov eax,edi - sub eax,[ebx+18h] - mov [ebx+1Ch],eax - call init_addressing_space - or byte [ebx+0Ah],1 - pop eax - mov cl,[address_sign] - not eax - not edx - not cl - add eax,1 - adc edx,0 - adc cl,0 - add eax,edi - adc edx,0 - adc cl,0 - mov [ebx],eax - mov [ebx+4],edx - mov [ebx+8],cl - pop dword [ebx+10h] - mov [ebx+14h],ebp - mov al,[value_type] - test al,1 - jnz invalid_use_of_symbol - mov [ebx+9],al - jmp instruction_assembled - allocate_structure_data: - mov ebx,[structures_buffer] - sub ebx,18h - cmp ebx,[free_additional_memory] - jb out_of_memory - mov [structures_buffer],ebx - ret - find_structure_data: - mov ebx,[structures_buffer] - scan_structures: - cmp ebx,[additional_memory_end] - je no_such_structure - cmp ax,[ebx] - je structure_data_found - add ebx,18h - jmp scan_structures - structure_data_found: - ret - no_such_structure: - stc - ret - end_virtual: - call find_structure_data - jc unexpected_instruction - push ebx - call close_virtual_addressing_space - pop ebx - mov eax,[ebx+12] - mov [addressing_space],eax - mov edi,[ebx+8] - remove_structure_data: - push esi edi - mov ecx,ebx - sub ecx,[structures_buffer] - shr ecx,2 - lea esi,[ebx-4] - lea edi,[esi+18h] - std - rep movs dword [edi],[esi] - cld - add [structures_buffer],18h - pop edi esi - ret - close_virtual_addressing_space: - mov ebx,[addressing_space] - mov eax,edi - sub eax,[ebx+18h] - mov [ebx+1Ch],eax - test byte [ebx+0Ah],2 - jz addressing_space_closed - push esi edi ecx edx - mov ecx,eax - mov eax,[tagged_blocks] - mov dword [eax-4],11h - mov dword [eax-8],ecx - sub eax,8 - sub eax,ecx - mov [tagged_blocks],eax - lea edi,[eax+ecx-1] - xchg eax,[ebx+18h] - lea esi,[eax+ecx-1] - mov eax,edi - sub eax,esi - std - shr ecx,1 - jnc virtual_byte_ok - movs byte [edi],[esi] - virtual_byte_ok: - dec esi - dec edi - shr ecx,1 - jnc virtual_word_ok - movs word [edi],[esi] - virtual_word_ok: - sub esi,2 - sub edi,2 - rep movs dword [edi],[esi] - cld - xor edx,edx - add [ebx],eax - adc dword [ebx+4],edx - adc byte [ebx+8],dl - pop edx ecx edi esi - addressing_space_closed: - ret -repeat_directive: - cmp [prefixed_instruction],0 - jne unexpected_instruction - lods byte [esi] - cmp al,'(' - jne invalid_argument - cmp byte [esi],'.' - je invalid_value - call get_count_value - cmp eax,0 - je zero_repeat - call allocate_structure_data - mov word [ebx],repeat_directive-instruction_handler - xchg eax,[counter_limit] - mov [ebx+10h],eax - mov eax,1 - xchg eax,[counter] - mov [ebx+14h],eax - mov [ebx+8],esi - mov eax,[current_line] - mov [ebx+4],eax - jmp instruction_assembled - end_repeat: - cmp [prefixed_instruction],0 - jne unexpected_instruction - call find_structure_data - jc unexpected_instruction - mov eax,[counter_limit] - inc [counter] - cmp [counter],eax - jbe continue_repeating - stop_repeat: - mov eax,[ebx+10h] - mov [counter_limit],eax - mov eax,[ebx+14h] - mov [counter],eax - call remove_structure_data - jmp instruction_assembled - continue_repeating: - mov esi,[ebx+8] - jmp instruction_assembled - zero_repeat: - mov al,[esi] - or al,al - jz missing_end_directive - cmp al,0Fh - jne extra_characters_on_line - call find_end_repeat - jmp instruction_assembled - find_end_repeat: - call find_structure_end - cmp ax,repeat_directive-instruction_handler - jne unexpected_instruction - ret -while_directive: - cmp [prefixed_instruction],0 - jne unexpected_instruction - call allocate_structure_data - mov word [ebx],while_directive-instruction_handler - mov eax,1 - xchg eax,[counter] - mov [ebx+10h],eax - mov [ebx+8],esi - mov eax,[current_line] - mov [ebx+4],eax - do_while: - push ebx - call calculate_logical_expression - or al,al - jnz while_true - mov al,[esi] - or al,al - jz missing_end_directive - cmp al,0Fh - jne extra_characters_on_line - stop_while: - call find_end_while - pop ebx - mov eax,[ebx+10h] - mov [counter],eax - call remove_structure_data - jmp instruction_assembled - while_true: - pop ebx - jmp instruction_assembled - end_while: - cmp [prefixed_instruction],0 - jne unexpected_instruction - call find_structure_data - jc unexpected_instruction - mov eax,[ebx+4] - mov [current_line],eax - inc [counter] - jz too_many_repeats - mov esi,[ebx+8] - jmp do_while - find_end_while: - call find_structure_end - cmp ax,while_directive-instruction_handler - jne unexpected_instruction - ret -if_directive: - cmp [prefixed_instruction],0 - jne unexpected_instruction - call calculate_logical_expression - mov dl,al - mov al,[esi] - or al,al - jz missing_end_directive - cmp al,0Fh - jne extra_characters_on_line - or dl,dl - jnz if_true - call find_else - jc instruction_assembled - mov al,[esi] - cmp al,1 - jne else_true - cmp word [esi+1],if_directive-instruction_handler - jne else_true - add esi,4 - jmp if_directive - if_true: - xor al,al - make_if_structure: - call allocate_structure_data - mov word [ebx],if_directive-instruction_handler - mov byte [ebx+2],al - mov eax,[current_line] - mov [ebx+4],eax - jmp instruction_assembled - else_true: - or al,al - jz missing_end_directive - cmp al,0Fh - jne extra_characters_on_line - or al,-1 - jmp make_if_structure - else_directive: - cmp [prefixed_instruction],0 - jne unexpected_instruction - mov ax,if_directive-instruction_handler - call find_structure_data - jc unexpected_instruction - cmp byte [ebx+2],0 - jne unexpected_instruction - found_else: - mov al,[esi] - cmp al,1 - jne skip_else - cmp word [esi+1],if_directive-instruction_handler - jne skip_else - add esi,4 - call find_else - jnc found_else - call remove_structure_data - jmp instruction_assembled - skip_else: - or al,al - jz missing_end_directive - cmp al,0Fh - jne extra_characters_on_line - call find_end_if - call remove_structure_data - jmp instruction_assembled - end_if: - cmp [prefixed_instruction],0 - jne unexpected_instruction - call find_structure_data - jc unexpected_instruction - call remove_structure_data - jmp instruction_assembled - find_else: - call find_structure_end - cmp ax,else_directive-instruction_handler - je else_found - cmp ax,if_directive-instruction_handler - jne unexpected_instruction - stc - ret - else_found: - clc - ret - find_end_if: - call find_structure_end - cmp ax,if_directive-instruction_handler - jne unexpected_instruction - ret - find_structure_end: - push [error_line] - mov eax,[current_line] - mov [error_line],eax - find_end_directive: - call skip_symbol - jnc find_end_directive - lods byte [esi] - cmp al,0Fh - jne no_end_directive - lods dword [esi] - mov [current_line],eax - skip_labels: - cmp byte [esi],2 - jne labels_ok - add esi,6 - jmp skip_labels - labels_ok: - cmp byte [esi],1 - jne find_end_directive - mov ax,[esi+1] - cmp ax,prefix_instruction-instruction_handler - je find_end_directive - add esi,4 - cmp ax,repeat_directive-instruction_handler - je skip_repeat - cmp ax,while_directive-instruction_handler - je skip_while - cmp ax,if_directive-instruction_handler - je skip_if - cmp ax,else_directive-instruction_handler - je structure_end - cmp ax,end_directive-instruction_handler - jne find_end_directive - cmp byte [esi],1 - jne find_end_directive - mov ax,[esi+1] - add esi,4 - cmp ax,repeat_directive-instruction_handler - je structure_end - cmp ax,while_directive-instruction_handler - je structure_end - cmp ax,if_directive-instruction_handler - jne find_end_directive - structure_end: - pop [error_line] - ret - no_end_directive: - mov eax,[error_line] - mov [current_line],eax - jmp missing_end_directive - skip_repeat: - call find_end_repeat - jmp find_end_directive - skip_while: - call find_end_while - jmp find_end_directive - skip_if: - call skip_if_block - jmp find_end_directive - skip_if_block: - call find_else - jc if_block_skipped - cmp byte [esi],1 - jne skip_after_else - cmp word [esi+1],if_directive-instruction_handler - jne skip_after_else - add esi,4 - jmp skip_if_block - skip_after_else: - call find_end_if - if_block_skipped: - ret -end_directive: - lods byte [esi] - cmp al,1 - jne invalid_argument - lods word [esi] - inc esi - cmp ax,virtual_directive-instruction_handler - je end_virtual - cmp ax,repeat_directive-instruction_handler - je end_repeat - cmp ax,while_directive-instruction_handler - je end_while - cmp ax,if_directive-instruction_handler - je end_if - cmp ax,data_directive-instruction_handler - je end_data - jmp invalid_argument -break_directive: - mov ebx,[structures_buffer] - mov al,[esi] - or al,al - jz find_breakable_structure - cmp al,0Fh - jne extra_characters_on_line - find_breakable_structure: - cmp ebx,[additional_memory_end] - je unexpected_instruction - mov ax,[ebx] - cmp ax,repeat_directive-instruction_handler - je break_repeat - cmp ax,while_directive-instruction_handler - je break_while - cmp ax,if_directive-instruction_handler - je break_if - add ebx,18h - jmp find_breakable_structure - break_if: - push [current_line] - mov eax,[ebx+4] - mov [current_line],eax - call remove_structure_data - call skip_if_block - pop [current_line] - mov ebx,[structures_buffer] - jmp find_breakable_structure - break_repeat: - push ebx - call find_end_repeat - pop ebx - jmp stop_repeat - break_while: - push ebx - jmp stop_while - -data_bytes: - call define_data - lods byte [esi] - cmp al,'(' - je get_byte - cmp al,'?' - jne invalid_argument - mov eax,edi - mov byte [edi],0 - inc edi - jmp undefined_data - get_byte: - cmp byte [esi],0 - je get_string - call get_byte_value - stos byte [edi] - ret - get_string: - inc esi - lods dword [esi] - mov ecx,eax - lea eax,[edi+ecx] - cmp eax,[tagged_blocks] - ja out_of_memory - rep movs byte [edi],[esi] - inc esi - ret - undefined_data: - mov ebp,[addressing_space] - test byte [ds:ebp+0Ah],1 - jz mark_undefined_data - ret - mark_undefined_data: - cmp eax,[undefined_data_end] - je undefined_data_ok - mov [undefined_data_start],eax - undefined_data_ok: - mov [undefined_data_end],edi - ret - define_data: - cmp edi,[tagged_blocks] - jae out_of_memory - cmp byte [esi],'(' - jne simple_data_value - mov ebx,esi - inc esi - call skip_expression - xchg esi,ebx - cmp byte [ebx],81h - jne simple_data_value - inc esi - call get_count_value - inc esi - or eax,eax - jz duplicate_zero_times - cmp byte [esi],'{' - jne duplicate_single_data_value - inc esi - duplicate_data: - push eax esi - duplicated_values: - cmp edi,[tagged_blocks] - jae out_of_memory - call near dword [esp+8] - lods byte [esi] - cmp al,',' - je duplicated_values - cmp al,'}' - jne invalid_argument - pop ebx eax - dec eax - jz data_defined - mov esi,ebx - jmp duplicate_data - duplicate_single_data_value: - cmp edi,[tagged_blocks] - jae out_of_memory - push eax esi - call near dword [esp+8] - pop ebx eax - dec eax - jz data_defined - mov esi,ebx - jmp duplicate_single_data_value - duplicate_zero_times: - cmp byte [esi],'{' - jne skip_single_data_value - inc esi - skip_data_value: - call skip_symbol - jc invalid_argument - cmp byte [esi],'}' - jne skip_data_value - inc esi - jmp data_defined - skip_single_data_value: - call skip_symbol - jmp data_defined - simple_data_value: - cmp edi,[tagged_blocks] - jae out_of_memory - call near dword [esp] - data_defined: - lods byte [esi] - cmp al,',' - je define_data - dec esi - add esp,4 - jmp instruction_assembled -data_unicode: - or [base_code],-1 - jmp define_words -data_words: - mov [base_code],0 - define_words: - call define_data - lods byte [esi] - cmp al,'(' - je get_word - cmp al,'?' - jne invalid_argument - mov eax,edi - and word [edi],0 - scas word [edi] - jmp undefined_data - ret - get_word: - cmp [base_code],0 - je word_data_value - cmp byte [esi],0 - je word_string - word_data_value: - call get_word_value - call mark_relocation - stos word [edi] - ret - word_string: - inc esi - lods dword [esi] - mov ecx,eax - jecxz word_string_ok - lea eax,[edi+ecx*2] - cmp eax,[tagged_blocks] - ja out_of_memory - xor ah,ah - copy_word_string: - lods byte [esi] - stos word [edi] - loop copy_word_string - word_string_ok: - inc esi - ret -data_dwords: - call define_data - lods byte [esi] - cmp al,'(' - je get_dword - cmp al,'?' - jne invalid_argument - mov eax,edi - and dword [edi],0 - scas dword [edi] - jmp undefined_data - get_dword: - push esi - call get_dword_value - pop ebx - cmp byte [esi],':' - je complex_dword - call mark_relocation - stos dword [edi] - ret - complex_dword: - mov esi,ebx - cmp byte [esi],'.' - je invalid_value - call get_word_value - push eax - inc esi - lods byte [esi] - cmp al,'(' - jne invalid_operand - mov al,[value_type] - push eax - cmp byte [esi],'.' - je invalid_value - call get_word_value - call mark_relocation - stos word [edi] - pop eax - mov [value_type],al - pop eax - call mark_relocation - stos word [edi] - ret -data_pwords: - call define_data - lods byte [esi] - cmp al,'(' - je get_pword - cmp al,'?' - jne invalid_argument - mov eax,edi - and dword [edi],0 - scas dword [edi] - and word [edi],0 - scas word [edi] - jmp undefined_data - get_pword: - push esi - call get_pword_value - pop ebx - cmp byte [esi],':' - je complex_pword - call mark_relocation - stos dword [edi] - mov ax,dx - stos word [edi] - ret - complex_pword: - mov esi,ebx - cmp byte [esi],'.' - je invalid_value - call get_word_value - push eax - inc esi - lods byte [esi] - cmp al,'(' - jne invalid_operand - mov al,[value_type] - push eax - cmp byte [esi],'.' - je invalid_value - call get_dword_value - call mark_relocation - stos dword [edi] - pop eax - mov [value_type],al - pop eax - call mark_relocation - stos word [edi] - ret -data_qwords: - call define_data - lods byte [esi] - cmp al,'(' - je get_qword - cmp al,'?' - jne invalid_argument - mov eax,edi - and dword [edi],0 - scas dword [edi] - and dword [edi],0 - scas dword [edi] - jmp undefined_data - get_qword: - call get_qword_value - call mark_relocation - stos dword [edi] - mov eax,edx - stos dword [edi] - ret -data_twords: - call define_data - lods byte [esi] - cmp al,'(' - je get_tword - cmp al,'?' - jne invalid_argument - mov eax,edi - and dword [edi],0 - scas dword [edi] - and dword [edi],0 - scas dword [edi] - and word [edi],0 - scas word [edi] - jmp undefined_data - get_tword: - cmp byte [esi],'.' - jne complex_tword - inc esi - cmp word [esi+8],8000h - je fp_zero_tword - mov eax,[esi] - stos dword [edi] - mov eax,[esi+4] - stos dword [edi] - mov ax,[esi+8] - add ax,3FFFh - jo value_out_of_range - cmp ax,7FFFh - jge value_out_of_range - cmp ax,0 - jg tword_exp_ok - mov cx,ax - neg cx - inc cx - cmp cx,64 - jae value_out_of_range - cmp cx,32 - ja large_shift - mov eax,[esi] - mov edx,[esi+4] - mov ebx,edx - shr edx,cl - shrd eax,ebx,cl - jmp tword_mantissa_shift_done - large_shift: - sub cx,32 - xor edx,edx - mov eax,[esi+4] - shr eax,cl - tword_mantissa_shift_done: - jnc store_shifted_mantissa - add eax,1 - adc edx,0 - store_shifted_mantissa: - mov [edi-8],eax - mov [edi-4],edx - xor ax,ax - test edx,1 shl 31 - jz tword_exp_ok - inc ax - tword_exp_ok: - mov bl,[esi+11] - shl bx,15 - or ax,bx - stos word [edi] - add esi,13 - ret - fp_zero_tword: - xor eax,eax - stos dword [edi] - stos dword [edi] - mov al,[esi+11] - shl ax,15 - stos word [edi] - add esi,13 - ret - complex_tword: - call get_word_value - push eax - cmp byte [esi],':' - jne invalid_operand - inc esi - lods byte [esi] - cmp al,'(' - jne invalid_operand - mov al,[value_type] - push eax - cmp byte [esi],'.' - je invalid_value - call get_qword_value - call mark_relocation - stos dword [edi] - mov eax,edx - stos dword [edi] - pop eax - mov [value_type],al - pop eax - call mark_relocation - stos word [edi] - ret -data_file: - lods word [esi] - cmp ax,'(' - jne invalid_argument - add esi,4 - call open_binary_file - mov eax,[esi-4] - lea esi,[esi+eax+1] - mov al,2 - xor edx,edx - call lseek - push eax - xor edx,edx - cmp byte [esi],':' - jne position_ok - inc esi - cmp byte [esi],'(' - jne invalid_argument - inc esi - cmp byte [esi],'.' - je invalid_value - push ebx - call get_count_value - pop ebx - mov edx,eax - sub [esp],edx - jc value_out_of_range - position_ok: - cmp byte [esi],',' - jne size_ok - inc esi - cmp byte [esi],'(' - jne invalid_argument - inc esi - cmp byte [esi],'.' - je invalid_value - push ebx edx - call get_count_value - pop edx ebx - cmp eax,[esp] - ja value_out_of_range - mov [esp],eax - size_ok: - xor al,al - call lseek - pop ecx - mov edx,edi - add edi,ecx - jc out_of_memory - cmp edi,[tagged_blocks] - ja out_of_memory - call read - jc error_reading_file - call close - lods byte [esi] - cmp al,',' - je data_file - dec esi - jmp instruction_assembled - open_binary_file: - push esi - push edi - mov eax,[current_line] - find_current_source_path: - mov esi,[eax] - test byte [eax+7],80h - jz get_current_path - mov eax,[eax+8] - jmp find_current_source_path - get_current_path: - lodsb - stosb - or al,al - jnz get_current_path - cut_current_path: - cmp edi,[esp] - je current_path_ok - cmp byte [edi-1],'\' - je current_path_ok - cmp byte [edi-1],'/' - je current_path_ok - dec edi - jmp cut_current_path - current_path_ok: - mov esi,[esp+4] - call expand_path - pop edx - mov esi,edx - call open - jnc file_opened - mov edx,[include_paths] - search_in_include_paths: - push edx esi - mov edi,esi - mov esi,[esp+4] - call get_include_directory - mov [esp+4],esi - mov esi,[esp+8] - call expand_path - pop edx - mov esi,edx - call open - pop edx - jnc file_opened - cmp byte [edx],0 - jne search_in_include_paths - mov edi,esi - mov esi,[esp] - push edi - call expand_path - pop edx - mov esi,edx - call open - jc file_not_found - file_opened: - mov edi,esi - pop esi - ret -reserve_bytes: - lods byte [esi] - cmp al,'(' - jne invalid_argument - cmp byte [esi],'.' - je invalid_value - call get_count_value - mov ecx,eax - mov edx,ecx - add edx,edi - jc out_of_memory - cmp edx,[tagged_blocks] - ja out_of_memory - push edi - cmp [next_pass_needed],0 - je zero_bytes - add edi,ecx - jmp reserved_data - zero_bytes: - xor eax,eax - shr ecx,1 - jnc bytes_stosb_ok - stos byte [edi] - bytes_stosb_ok: - shr ecx,1 - jnc bytes_stosw_ok - stos word [edi] - bytes_stosw_ok: - rep stos dword [edi] - reserved_data: - pop eax - call undefined_data - jmp instruction_assembled -reserve_words: - lods byte [esi] - cmp al,'(' - jne invalid_argument - cmp byte [esi],'.' - je invalid_value - call get_count_value - mov ecx,eax - mov edx,ecx - shl edx,1 - jc out_of_memory - add edx,edi - jc out_of_memory - cmp edx,[tagged_blocks] - ja out_of_memory - push edi - cmp [next_pass_needed],0 - je zero_words - lea edi,[edi+ecx*2] - jmp reserved_data - zero_words: - xor eax,eax - shr ecx,1 - jnc words_stosw_ok - stos word [edi] - words_stosw_ok: - rep stos dword [edi] - jmp reserved_data -reserve_dwords: - lods byte [esi] - cmp al,'(' - jne invalid_argument - cmp byte [esi],'.' - je invalid_value - call get_count_value - mov ecx,eax - mov edx,ecx - shl edx,1 - jc out_of_memory - shl edx,1 - jc out_of_memory - add edx,edi - jc out_of_memory - cmp edx,[tagged_blocks] - ja out_of_memory - push edi - cmp [next_pass_needed],0 - je zero_dwords - lea edi,[edi+ecx*4] - jmp reserved_data - zero_dwords: - xor eax,eax - rep stos dword [edi] - jmp reserved_data -reserve_pwords: - lods byte [esi] - cmp al,'(' - jne invalid_argument - cmp byte [esi],'.' - je invalid_value - call get_count_value - mov ecx,eax - shl ecx,1 - jc out_of_memory - add ecx,eax - mov edx,ecx - shl edx,1 - jc out_of_memory - add edx,edi - jc out_of_memory - cmp edx,[tagged_blocks] - ja out_of_memory - push edi - cmp [next_pass_needed],0 - je zero_words - lea edi,[edi+ecx*2] - jmp reserved_data -reserve_qwords: - lods byte [esi] - cmp al,'(' - jne invalid_argument - cmp byte [esi],'.' - je invalid_value - call get_count_value - mov ecx,eax - shl ecx,1 - jc out_of_memory - mov edx,ecx - shl edx,1 - jc out_of_memory - shl edx,1 - jc out_of_memory - add edx,edi - jc out_of_memory - cmp edx,[tagged_blocks] - ja out_of_memory - push edi - cmp [next_pass_needed],0 - je zero_dwords - lea edi,[edi+ecx*4] - jmp reserved_data -reserve_twords: - lods byte [esi] - cmp al,'(' - jne invalid_argument - cmp byte [esi],'.' - je invalid_value - call get_count_value - mov ecx,eax - shl ecx,2 - jc out_of_memory - add ecx,eax - mov edx,ecx - shl edx,1 - jc out_of_memory - add edx,edi - jc out_of_memory - cmp edx,[tagged_blocks] - ja out_of_memory - push edi - cmp [next_pass_needed],0 - je zero_words - lea edi,[edi+ecx*2] - jmp reserved_data -align_directive: - lods byte [esi] - cmp al,'(' - jne invalid_argument - cmp byte [esi],'.' - je invalid_value - call get_count_value - mov edx,eax - dec edx - test eax,edx - jnz invalid_align_value - or eax,eax - jz invalid_align_value - cmp eax,1 - je instruction_assembled - mov ecx,edi - mov ebp,[addressing_space] - sub ecx,[ds:ebp] - cmp dword [ds:ebp+10h],0 - jne section_not_aligned_enough - cmp byte [ds:ebp+9],0 - je make_alignment - cmp [output_format],3 - je pe_alignment - mov ebx,[ds:ebp+14h] - cmp byte [ebx],0 - jne section_not_aligned_enough - cmp eax,[ebx+10h] - jbe make_alignment - jmp section_not_aligned_enough - pe_alignment: - cmp eax,1000h - ja section_not_aligned_enough - make_alignment: - dec eax - and ecx,eax - jz instruction_assembled - neg ecx - add ecx,eax - inc ecx - mov edx,ecx - add edx,edi - jc out_of_memory - cmp edx,[tagged_blocks] - ja out_of_memory - push edi - cmp [next_pass_needed],0 - je nops - add edi,ecx - jmp reserved_data - invalid_align_value: - cmp [error_line],0 - jne instruction_assembled - mov eax,[current_line] - mov [error_line],eax - mov [error],invalid_value - jmp instruction_assembled - nops: - mov eax,90909090h - shr ecx,1 - jnc nops_stosb_ok - stos byte [edi] - nops_stosb_ok: - shr ecx,1 - jnc nops_stosw_ok - stos word [edi] - nops_stosw_ok: - rep stos dword [edi] - jmp reserved_data -err_directive: - mov al,[esi] - cmp al,0Fh - je invoked_error - or al,al - jz invoked_error - jmp extra_characters_on_line -assert_directive: - call calculate_logical_expression - or al,al - jnz instruction_assembled - cmp [error_line],0 - jne instruction_assembled - mov eax,[current_line] - mov [error_line],eax - mov [error],assertion_failed - jmp instruction_assembled diff --git a/samples/Assembly/SYSTEM.inc b/samples/Assembly/SYSTEM.inc deleted file mode 100644 index 77a61d29..00000000 --- a/samples/Assembly/SYSTEM.inc +++ /dev/null @@ -1,503 +0,0 @@ - -; flat assembler interface for Win32 -; Copyright (c) 1999-2014, Tomasz Grysztar. -; All rights reserved. - -CREATE_NEW = 1 -CREATE_ALWAYS = 2 -OPEN_EXISTING = 3 -OPEN_ALWAYS = 4 -TRUNCATE_EXISTING = 5 - -FILE_SHARE_READ = 1 -FILE_SHARE_WRITE = 2 -FILE_SHARE_DELETE = 4 - -GENERIC_READ = 80000000h -GENERIC_WRITE = 40000000h - -STD_INPUT_HANDLE = 0FFFFFFF6h -STD_OUTPUT_HANDLE = 0FFFFFFF5h -STD_ERROR_HANDLE = 0FFFFFFF4h - -MEM_COMMIT = 1000h -MEM_RESERVE = 2000h -MEM_DECOMMIT = 4000h -MEM_RELEASE = 8000h -MEM_FREE = 10000h -MEM_PRIVATE = 20000h -MEM_MAPPED = 40000h -MEM_RESET = 80000h -MEM_TOP_DOWN = 100000h - -PAGE_NOACCESS = 1 -PAGE_READONLY = 2 -PAGE_READWRITE = 4 -PAGE_WRITECOPY = 8 -PAGE_EXECUTE = 10h -PAGE_EXECUTE_READ = 20h -PAGE_EXECUTE_READWRITE = 40h -PAGE_EXECUTE_WRITECOPY = 80h -PAGE_GUARD = 100h -PAGE_NOCACHE = 200h - -init_memory: - xor eax,eax - mov [memory_start],eax - mov eax,esp - and eax,not 0FFFh - add eax,1000h-10000h - mov [stack_limit],eax - mov eax,[memory_setting] - shl eax,10 - jnz allocate_memory - push buffer - call [GlobalMemoryStatus] - mov eax,dword [buffer+20] - mov edx,dword [buffer+12] - cmp eax,0 - jl large_memory - cmp edx,0 - jl large_memory - shr eax,2 - add eax,edx - jmp allocate_memory - large_memory: - mov eax,80000000h - allocate_memory: - mov edx,eax - shr edx,2 - mov ecx,eax - sub ecx,edx - mov [memory_end],ecx - mov [additional_memory_end],edx - push PAGE_READWRITE - push MEM_COMMIT - push eax - push 0 - call [VirtualAlloc] - or eax,eax - jz not_enough_memory - mov [memory_start],eax - add eax,[memory_end] - mov [memory_end],eax - mov [additional_memory],eax - add [additional_memory_end],eax - ret - not_enough_memory: - mov eax,[additional_memory_end] - shl eax,1 - cmp eax,4000h - jb out_of_memory - jmp allocate_memory - -exit_program: - movzx eax,al - push eax - mov eax,[memory_start] - test eax,eax - jz do_exit - push MEM_RELEASE - push 0 - push eax - call [VirtualFree] - do_exit: - call [ExitProcess] - -get_environment_variable: - mov ecx,[memory_end] - sub ecx,edi - cmp ecx,4000h - jbe buffer_for_variable_ok - mov ecx,4000h - buffer_for_variable_ok: - push ecx - push edi - push esi - call [GetEnvironmentVariable] - add edi,eax - cmp edi,[memory_end] - jae out_of_memory - ret - -open: - push 0 - push 0 - push OPEN_EXISTING - push 0 - push FILE_SHARE_READ - push GENERIC_READ - push edx - call [CreateFile] - cmp eax,-1 - je file_error - mov ebx,eax - clc - ret - file_error: - stc - ret -create: - push 0 - push 0 - push CREATE_ALWAYS - push 0 - push FILE_SHARE_READ - push GENERIC_WRITE - push edx - call [CreateFile] - cmp eax,-1 - je file_error - mov ebx,eax - clc - ret -write: - push 0 - push bytes_count - push ecx - push edx - push ebx - call [WriteFile] - or eax,eax - jz file_error - clc - ret -read: - mov ebp,ecx - push 0 - push bytes_count - push ecx - push edx - push ebx - call [ReadFile] - or eax,eax - jz file_error - cmp ebp,[bytes_count] - jne file_error - clc - ret -close: - push ebx - call [CloseHandle] - ret -lseek: - movzx eax,al - push eax - push 0 - push edx - push ebx - call [SetFilePointer] - ret - -display_string: - push [con_handle] - call [GetStdHandle] - mov ebp,eax - mov edi,esi - or ecx,-1 - xor al,al - repne scasb - neg ecx - sub ecx,2 - push 0 - push bytes_count - push ecx - push esi - push ebp - call [WriteFile] - ret -display_character: - push ebx - mov [character],dl - push [con_handle] - call [GetStdHandle] - mov ebx,eax - push 0 - push bytes_count - push 1 - push character - push ebx - call [WriteFile] - pop ebx - ret -display_number: - push ebx - mov ecx,1000000000 - xor edx,edx - xor bl,bl - display_loop: - div ecx - push edx - cmp ecx,1 - je display_digit - or bl,bl - jnz display_digit - or al,al - jz digit_ok - not bl - display_digit: - mov dl,al - add dl,30h - push ecx - call display_character - pop ecx - digit_ok: - mov eax,ecx - xor edx,edx - mov ecx,10 - div ecx - mov ecx,eax - pop eax - or ecx,ecx - jnz display_loop - pop ebx - ret - -display_user_messages: - mov [displayed_count],0 - call show_display_buffer - cmp [displayed_count],1 - jb line_break_ok - je make_line_break - mov ax,word [last_displayed] - cmp ax,0A0Dh - je line_break_ok - cmp ax,0D0Ah - je line_break_ok - make_line_break: - mov word [buffer],0A0Dh - push [con_handle] - call [GetStdHandle] - push 0 - push bytes_count - push 2 - push buffer - push eax - call [WriteFile] - line_break_ok: - ret -display_block: - add [displayed_count],ecx - cmp ecx,1 - ja take_last_two_characters - jb block_displayed - mov al,[last_displayed+1] - mov ah,[esi] - mov word [last_displayed],ax - jmp block_ok - take_last_two_characters: - mov ax,[esi+ecx-2] - mov word [last_displayed],ax - block_ok: - push ecx - push [con_handle] - call [GetStdHandle] - pop ecx - push 0 - push bytes_count - push ecx - push esi - push eax - call [WriteFile] - block_displayed: - ret - -fatal_error: - mov [con_handle],STD_ERROR_HANDLE - mov esi,error_prefix - call display_string - pop esi - call display_string - mov esi,error_suffix - call display_string - mov al,0FFh - jmp exit_program -assembler_error: - mov [con_handle],STD_ERROR_HANDLE - call display_user_messages - push dword 0 - mov ebx,[current_line] - get_error_lines: - mov eax,[ebx] - cmp byte [eax],0 - je get_next_error_line - push ebx - test byte [ebx+7],80h - jz display_error_line - mov edx,ebx - find_definition_origin: - mov edx,[edx+12] - test byte [edx+7],80h - jnz find_definition_origin - push edx - get_next_error_line: - mov ebx,[ebx+8] - jmp get_error_lines - display_error_line: - mov esi,[ebx] - call display_string - mov esi,line_number_start - call display_string - mov eax,[ebx+4] - and eax,7FFFFFFFh - call display_number - mov dl,']' - call display_character - pop esi - cmp ebx,esi - je line_number_ok - mov dl,20h - call display_character - push esi - mov esi,[esi] - movzx ecx,byte [esi] - inc esi - call display_block - mov esi,line_number_start - call display_string - pop esi - mov eax,[esi+4] - and eax,7FFFFFFFh - call display_number - mov dl,']' - call display_character - line_number_ok: - mov esi,line_data_start - call display_string - mov esi,ebx - mov edx,[esi] - call open - mov al,2 - xor edx,edx - call lseek - mov edx,[esi+8] - sub eax,edx - jz line_data_displayed - push eax - xor al,al - call lseek - mov ecx,[esp] - mov edx,[additional_memory] - lea eax,[edx+ecx] - cmp eax,[additional_memory_end] - ja out_of_memory - call read - call close - pop ecx - mov esi,[additional_memory] - get_line_data: - mov al,[esi] - cmp al,0Ah - je display_line_data - cmp al,0Dh - je display_line_data - cmp al,1Ah - je display_line_data - or al,al - jz display_line_data - inc esi - loop get_line_data - display_line_data: - mov ecx,esi - mov esi,[additional_memory] - sub ecx,esi - call display_block - line_data_displayed: - mov esi,cr_lf - call display_string - pop ebx - or ebx,ebx - jnz display_error_line - mov esi,error_prefix - call display_string - pop esi - call display_string - mov esi,error_suffix - call display_string - mov al,2 - jmp exit_program - -make_timestamp: - push buffer - call [GetSystemTime] - movzx ecx,word [buffer] - mov eax,ecx - sub eax,1970 - mov ebx,365 - mul ebx - mov ebp,eax - mov eax,ecx - sub eax,1969 - shr eax,2 - add ebp,eax - mov eax,ecx - sub eax,1901 - mov ebx,100 - div ebx - sub ebp,eax - mov eax,ecx - xor edx,edx - sub eax,1601 - mov ebx,400 - div ebx - add ebp,eax - movzx ecx,word [buffer+2] - mov eax,ecx - dec eax - mov ebx,30 - mul ebx - add ebp,eax - cmp ecx,8 - jbe months_correction - mov eax,ecx - sub eax,7 - shr eax,1 - add ebp,eax - mov ecx,8 - months_correction: - mov eax,ecx - shr eax,1 - add ebp,eax - cmp ecx,2 - jbe day_correction_ok - sub ebp,2 - movzx ecx,word [buffer] - test ecx,11b - jnz day_correction_ok - xor edx,edx - mov eax,ecx - mov ebx,100 - div ebx - or edx,edx - jnz day_correction - mov eax,ecx - mov ebx,400 - div ebx - or edx,edx - jnz day_correction_ok - day_correction: - inc ebp - day_correction_ok: - movzx eax,word [buffer+6] - dec eax - add eax,ebp - mov ebx,24 - mul ebx - movzx ecx,word [buffer+8] - add eax,ecx - mov ebx,60 - mul ebx - movzx ecx,word [buffer+10] - add eax,ecx - mov ebx,60 - mul ebx - movzx ecx,word [buffer+12] - add eax,ecx - adc edx,0 - ret - -error_prefix db 'error: ',0 -error_suffix db '.' -cr_lf db 0Dh,0Ah,0 -line_number_start db ' [',0 -line_data_start db ':',0Dh,0Ah,0 diff --git a/samples/Assembly/X86_64.inc b/samples/Assembly/X86_64.inc deleted file mode 100644 index 28413065..00000000 --- a/samples/Assembly/X86_64.inc +++ /dev/null @@ -1,7060 +0,0 @@ - -; flat assembler core -; Copyright (c) 1999-2014, Tomasz Grysztar. -; All rights reserved. - -simple_instruction_except64: - cmp [code_type],64 - je illegal_instruction -simple_instruction: - stos byte [edi] - jmp instruction_assembled -simple_instruction_only64: - cmp [code_type],64 - jne illegal_instruction - jmp simple_instruction -simple_instruction_16bit_except64: - cmp [code_type],64 - je illegal_instruction -simple_instruction_16bit: - cmp [code_type],16 - jne size_prefix - stos byte [edi] - jmp instruction_assembled - size_prefix: - mov ah,al - mov al,66h - stos word [edi] - jmp instruction_assembled -simple_instruction_32bit_except64: - cmp [code_type],64 - je illegal_instruction -simple_instruction_32bit: - cmp [code_type],16 - je size_prefix - stos byte [edi] - jmp instruction_assembled -iret_instruction: - cmp [code_type],64 - jne simple_instruction -simple_instruction_64bit: - cmp [code_type],64 - jne illegal_instruction - mov ah,al - mov al,48h - stos word [edi] - jmp instruction_assembled -simple_extended_instruction_64bit: - cmp [code_type],64 - jne illegal_instruction - mov byte [edi],48h - inc edi -simple_extended_instruction: - mov ah,al - mov al,0Fh - stos word [edi] - jmp instruction_assembled -prefix_instruction: - stos byte [edi] - or [prefixed_instruction],-1 - jmp continue_line -segment_prefix: - mov ah,al - shr ah,4 - cmp ah,6 - jne illegal_instruction - and al,1111b - mov [segment_register],al - call store_segment_prefix - or [prefixed_instruction],-1 - jmp continue_line -int_instruction: - lods byte [esi] - call get_size_operator - cmp ah,1 - ja invalid_operand_size - cmp al,'(' - jne invalid_operand - call get_byte_value - test eax,eax - jns int_imm_ok - call recoverable_overflow - int_imm_ok: - mov ah,al - mov al,0CDh - stos word [edi] - jmp instruction_assembled -aa_instruction: - cmp [code_type],64 - je illegal_instruction - push eax - mov bl,10 - cmp byte [esi],'(' - jne aa_store - inc esi - xor al,al - xchg al,[operand_size] - cmp al,1 - ja invalid_operand_size - call get_byte_value - mov bl,al - aa_store: - cmp [operand_size],0 - jne invalid_operand - pop eax - mov ah,bl - stos word [edi] - jmp instruction_assembled - -basic_instruction: - mov [base_code],al - lods byte [esi] - call get_size_operator - cmp al,10h - je basic_reg - cmp al,'[' - jne invalid_operand - basic_mem: - call get_address - push edx ebx ecx - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,'(' - je basic_mem_imm - cmp al,10h - jne invalid_operand - basic_mem_reg: - lods byte [esi] - call convert_register - mov [postbyte_register],al - pop ecx ebx edx - mov al,ah - cmp al,1 - je instruction_ready - call operand_autodetect - inc [base_code] - instruction_ready: - call store_instruction - jmp instruction_assembled - basic_mem_imm: - mov al,[operand_size] - cmp al,1 - jb basic_mem_imm_nosize - je basic_mem_imm_8bit - cmp al,2 - je basic_mem_imm_16bit - cmp al,4 - je basic_mem_imm_32bit - cmp al,8 - jne invalid_operand_size - basic_mem_imm_64bit: - cmp [size_declared],0 - jne long_immediate_not_encodable - call operand_64bit - call get_simm32 - cmp [value_type],4 - jae long_immediate_not_encodable - jmp basic_mem_imm_32bit_ok - basic_mem_imm_nosize: - call recoverable_unknown_size - basic_mem_imm_8bit: - call get_byte_value - mov byte [value],al - mov al,[base_code] - shr al,3 - mov [postbyte_register],al - pop ecx ebx edx - mov [base_code],80h - call store_instruction_with_imm8 - jmp instruction_assembled - basic_mem_imm_16bit: - call operand_16bit - call get_word_value - mov word [value],ax - mov al,[base_code] - shr al,3 - mov [postbyte_register],al - pop ecx ebx edx - cmp [value_type],0 - jne basic_mem_imm_16bit_store - cmp [size_declared],0 - jne basic_mem_imm_16bit_store - cmp word [value],80h - jb basic_mem_simm_8bit - cmp word [value],-80h - jae basic_mem_simm_8bit - basic_mem_imm_16bit_store: - mov [base_code],81h - call store_instruction_with_imm16 - jmp instruction_assembled - basic_mem_simm_8bit: - mov [base_code],83h - call store_instruction_with_imm8 - jmp instruction_assembled - basic_mem_imm_32bit: - call operand_32bit - call get_dword_value - basic_mem_imm_32bit_ok: - mov dword [value],eax - mov al,[base_code] - shr al,3 - mov [postbyte_register],al - pop ecx ebx edx - cmp [value_type],0 - jne basic_mem_imm_32bit_store - cmp [size_declared],0 - jne basic_mem_imm_32bit_store - cmp dword [value],80h - jb basic_mem_simm_8bit - cmp dword [value],-80h - jae basic_mem_simm_8bit - basic_mem_imm_32bit_store: - mov [base_code],81h - call store_instruction_with_imm32 - jmp instruction_assembled - get_simm32: - call get_qword_value - mov ecx,edx - cdq - cmp ecx,edx - jne value_out_of_range - cmp [value_type],4 - jne get_simm32_ok - mov [value_type],2 - get_simm32_ok: - ret - basic_reg: - lods byte [esi] - call convert_register - mov [postbyte_register],al - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,10h - je basic_reg_reg - cmp al,'(' - je basic_reg_imm - cmp al,'[' - jne invalid_operand - basic_reg_mem: - call get_address - mov al,[operand_size] - cmp al,1 - je basic_reg_mem_8bit - call operand_autodetect - add [base_code],3 - jmp instruction_ready - basic_reg_mem_8bit: - add [base_code],2 - jmp instruction_ready - basic_reg_reg: - lods byte [esi] - call convert_register - mov bl,[postbyte_register] - mov [postbyte_register],al - mov al,ah - cmp al,1 - je nomem_instruction_ready - call operand_autodetect - inc [base_code] - nomem_instruction_ready: - call store_nomem_instruction - jmp instruction_assembled - basic_reg_imm: - mov al,[operand_size] - cmp al,1 - je basic_reg_imm_8bit - cmp al,2 - je basic_reg_imm_16bit - cmp al,4 - je basic_reg_imm_32bit - cmp al,8 - jne invalid_operand_size - basic_reg_imm_64bit: - cmp [size_declared],0 - jne long_immediate_not_encodable - call operand_64bit - call get_simm32 - cmp [value_type],4 - jae long_immediate_not_encodable - jmp basic_reg_imm_32bit_ok - basic_reg_imm_8bit: - call get_byte_value - mov dl,al - mov bl,[base_code] - shr bl,3 - xchg bl,[postbyte_register] - or bl,bl - jz basic_al_imm - mov [base_code],80h - call store_nomem_instruction - mov al,dl - stos byte [edi] - jmp instruction_assembled - basic_al_imm: - mov al,[base_code] - add al,4 - stos byte [edi] - mov al,dl - stos byte [edi] - jmp instruction_assembled - basic_reg_imm_16bit: - call operand_16bit - call get_word_value - mov dx,ax - mov bl,[base_code] - shr bl,3 - xchg bl,[postbyte_register] - cmp [value_type],0 - jne basic_reg_imm_16bit_store - cmp [size_declared],0 - jne basic_reg_imm_16bit_store - cmp dx,80h - jb basic_reg_simm_8bit - cmp dx,-80h - jae basic_reg_simm_8bit - basic_reg_imm_16bit_store: - or bl,bl - jz basic_ax_imm - mov [base_code],81h - call store_nomem_instruction - basic_store_imm_16bit: - mov ax,dx - call mark_relocation - stos word [edi] - jmp instruction_assembled - basic_reg_simm_8bit: - mov [base_code],83h - call store_nomem_instruction - mov al,dl - stos byte [edi] - jmp instruction_assembled - basic_ax_imm: - add [base_code],5 - call store_instruction_code - jmp basic_store_imm_16bit - basic_reg_imm_32bit: - call operand_32bit - call get_dword_value - basic_reg_imm_32bit_ok: - mov edx,eax - mov bl,[base_code] - shr bl,3 - xchg bl,[postbyte_register] - cmp [value_type],0 - jne basic_reg_imm_32bit_store - cmp [size_declared],0 - jne basic_reg_imm_32bit_store - cmp edx,80h - jb basic_reg_simm_8bit - cmp edx,-80h - jae basic_reg_simm_8bit - basic_reg_imm_32bit_store: - or bl,bl - jz basic_eax_imm - mov [base_code],81h - call store_nomem_instruction - basic_store_imm_32bit: - mov eax,edx - call mark_relocation - stos dword [edi] - jmp instruction_assembled - basic_eax_imm: - add [base_code],5 - call store_instruction_code - jmp basic_store_imm_32bit - recoverable_unknown_size: - cmp [error_line],0 - jne ignore_unknown_size - push [current_line] - pop [error_line] - mov [error],operand_size_not_specified - ignore_unknown_size: - ret -single_operand_instruction: - mov [base_code],0F6h - mov [postbyte_register],al - lods byte [esi] - call get_size_operator - cmp al,10h - je single_reg - cmp al,'[' - jne invalid_operand - single_mem: - call get_address - mov al,[operand_size] - cmp al,1 - je single_mem_8bit - jb single_mem_nosize - call operand_autodetect - inc [base_code] - jmp instruction_ready - single_mem_nosize: - call recoverable_unknown_size - single_mem_8bit: - jmp instruction_ready - single_reg: - lods byte [esi] - call convert_register - mov bl,al - mov al,ah - cmp al,1 - je single_reg_8bit - call operand_autodetect - inc [base_code] - single_reg_8bit: - jmp nomem_instruction_ready -mov_instruction: - mov [base_code],88h - lods byte [esi] - call get_size_operator - cmp al,10h - je mov_reg - cmp al,'[' - jne invalid_operand - mov_mem: - call get_address - push edx ebx ecx - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,'(' - je mov_mem_imm - cmp al,10h - jne invalid_operand - mov_mem_reg: - lods byte [esi] - cmp al,60h - jb mov_mem_general_reg - cmp al,70h - jb mov_mem_sreg - mov_mem_general_reg: - call convert_register - mov [postbyte_register],al - pop ecx ebx edx - cmp ah,1 - je mov_mem_reg_8bit - mov al,ah - call operand_autodetect - mov al,[postbyte_register] - or al,bl - or al,bh - jz mov_mem_ax - inc [base_code] - jmp instruction_ready - mov_mem_reg_8bit: - or al,bl - or al,bh - jnz instruction_ready - mov_mem_al: - test ch,22h - jnz mov_mem_address16_al - test ch,44h - jnz mov_mem_address32_al - test ch,88h - jnz mov_mem_address64_al - or ch,ch - jnz invalid_address_size - cmp [code_type],64 - je mov_mem_address64_al - cmp [code_type],32 - je mov_mem_address32_al - cmp edx,10000h - jb mov_mem_address16_al - mov_mem_address32_al: - call store_segment_prefix_if_necessary - call address_32bit_prefix - mov [base_code],0A2h - store_mov_address32: - call store_instruction_code - call store_address_32bit_value - jmp instruction_assembled - mov_mem_address16_al: - call store_segment_prefix_if_necessary - call address_16bit_prefix - mov [base_code],0A2h - store_mov_address16: - cmp [code_type],64 - je invalid_address - call store_instruction_code - mov eax,edx - stos word [edi] - cmp edx,10000h - jge value_out_of_range - jmp instruction_assembled - mov_mem_address64_al: - call store_segment_prefix_if_necessary - mov [base_code],0A2h - store_mov_address64: - call store_instruction_code - call store_address_64bit_value - jmp instruction_assembled - mov_mem_ax: - test ch,22h - jnz mov_mem_address16_ax - test ch,44h - jnz mov_mem_address32_ax - test ch,88h - jnz mov_mem_address64_ax - or ch,ch - jnz invalid_address_size - cmp [code_type],64 - je mov_mem_address64_ax - cmp [code_type],32 - je mov_mem_address32_ax - cmp edx,10000h - jb mov_mem_address16_ax - mov_mem_address32_ax: - call store_segment_prefix_if_necessary - call address_32bit_prefix - mov [base_code],0A3h - jmp store_mov_address32 - mov_mem_address16_ax: - call store_segment_prefix_if_necessary - call address_16bit_prefix - mov [base_code],0A3h - jmp store_mov_address16 - mov_mem_address64_ax: - call store_segment_prefix_if_necessary - mov [base_code],0A3h - jmp store_mov_address64 - mov_mem_sreg: - sub al,61h - mov [postbyte_register],al - pop ecx ebx edx - mov ah,[operand_size] - or ah,ah - jz mov_mem_sreg_store - cmp ah,2 - jne invalid_operand_size - mov_mem_sreg_store: - mov [base_code],8Ch - jmp instruction_ready - mov_mem_imm: - mov al,[operand_size] - cmp al,1 - jb mov_mem_imm_nosize - je mov_mem_imm_8bit - cmp al,2 - je mov_mem_imm_16bit - cmp al,4 - je mov_mem_imm_32bit - cmp al,8 - jne invalid_operand_size - mov_mem_imm_64bit: - cmp [size_declared],0 - jne long_immediate_not_encodable - call operand_64bit - call get_simm32 - cmp [value_type],4 - jae long_immediate_not_encodable - jmp mov_mem_imm_32bit_store - mov_mem_imm_8bit: - call get_byte_value - mov byte [value],al - mov [postbyte_register],0 - mov [base_code],0C6h - pop ecx ebx edx - call store_instruction_with_imm8 - jmp instruction_assembled - mov_mem_imm_16bit: - call operand_16bit - call get_word_value - mov word [value],ax - mov [postbyte_register],0 - mov [base_code],0C7h - pop ecx ebx edx - call store_instruction_with_imm16 - jmp instruction_assembled - mov_mem_imm_nosize: - call recoverable_unknown_size - mov_mem_imm_32bit: - call operand_32bit - call get_dword_value - mov_mem_imm_32bit_store: - mov dword [value],eax - mov [postbyte_register],0 - mov [base_code],0C7h - pop ecx ebx edx - call store_instruction_with_imm32 - jmp instruction_assembled - mov_reg: - lods byte [esi] - mov ah,al - sub ah,10h - and ah,al - test ah,0F0h - jnz mov_sreg - call convert_register - mov [postbyte_register],al - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,'[' - je mov_reg_mem - cmp al,'(' - je mov_reg_imm - cmp al,10h - jne invalid_operand - mov_reg_reg: - lods byte [esi] - mov ah,al - sub ah,10h - and ah,al - test ah,0F0h - jnz mov_reg_sreg - call convert_register - mov bl,[postbyte_register] - mov [postbyte_register],al - mov al,ah - cmp al,1 - je mov_reg_reg_8bit - call operand_autodetect - inc [base_code] - mov_reg_reg_8bit: - jmp nomem_instruction_ready - mov_reg_sreg: - mov bl,[postbyte_register] - mov ah,al - and al,1111b - mov [postbyte_register],al - shr ah,4 - cmp ah,5 - je mov_reg_creg - cmp ah,7 - je mov_reg_dreg - ja mov_reg_treg - dec [postbyte_register] - cmp [operand_size],8 - je mov_reg_sreg64 - cmp [operand_size],4 - je mov_reg_sreg32 - cmp [operand_size],2 - jne invalid_operand_size - call operand_16bit - jmp mov_reg_sreg_store - mov_reg_sreg64: - call operand_64bit - jmp mov_reg_sreg_store - mov_reg_sreg32: - call operand_32bit - mov_reg_sreg_store: - mov [base_code],8Ch - jmp nomem_instruction_ready - mov_reg_treg: - cmp ah,9 - jne invalid_operand - mov [extended_code],24h - jmp mov_reg_xrx - mov_reg_dreg: - mov [extended_code],21h - jmp mov_reg_xrx - mov_reg_creg: - mov [extended_code],20h - mov_reg_xrx: - mov [base_code],0Fh - cmp [code_type],64 - je mov_reg_xrx_64bit - cmp [operand_size],4 - jne invalid_operand_size - cmp [postbyte_register],8 - jne mov_reg_xrx_store - cmp [extended_code],20h - jne mov_reg_xrx_store - mov al,0F0h - stos byte [edi] - mov [postbyte_register],0 - mov_reg_xrx_store: - jmp nomem_instruction_ready - mov_reg_xrx_64bit: - cmp [operand_size],8 - jne invalid_operand_size - jmp nomem_instruction_ready - mov_reg_mem: - call get_address - mov al,[operand_size] - cmp al,1 - je mov_reg_mem_8bit - call operand_autodetect - mov al,[postbyte_register] - or al,bl - or al,bh - jz mov_ax_mem - add [base_code],3 - jmp instruction_ready - mov_reg_mem_8bit: - mov al,[postbyte_register] - or al,bl - or al,bh - jz mov_al_mem - add [base_code],2 - jmp instruction_ready - mov_al_mem: - test ch,22h - jnz mov_al_mem_address16 - test ch,44h - jnz mov_al_mem_address32 - test ch,88h - jnz mov_al_mem_address64 - or ch,ch - jnz invalid_address_size - cmp [code_type],64 - je mov_al_mem_address64 - cmp [code_type],32 - je mov_al_mem_address32 - cmp edx,10000h - jb mov_al_mem_address16 - mov_al_mem_address32: - call store_segment_prefix_if_necessary - call address_32bit_prefix - mov [base_code],0A0h - jmp store_mov_address32 - mov_al_mem_address16: - call store_segment_prefix_if_necessary - call address_16bit_prefix - mov [base_code],0A0h - jmp store_mov_address16 - mov_al_mem_address64: - call store_segment_prefix_if_necessary - mov [base_code],0A0h - jmp store_mov_address64 - mov_ax_mem: - test ch,22h - jnz mov_ax_mem_address16 - test ch,44h - jnz mov_ax_mem_address32 - test ch,88h - jnz mov_ax_mem_address64 - or ch,ch - jnz invalid_address_size - cmp [code_type],64 - je mov_ax_mem_address64 - cmp [code_type],32 - je mov_ax_mem_address32 - cmp edx,10000h - jb mov_ax_mem_address16 - mov_ax_mem_address32: - call store_segment_prefix_if_necessary - call address_32bit_prefix - mov [base_code],0A1h - jmp store_mov_address32 - mov_ax_mem_address16: - call store_segment_prefix_if_necessary - call address_16bit_prefix - mov [base_code],0A1h - jmp store_mov_address16 - mov_ax_mem_address64: - call store_segment_prefix_if_necessary - mov [base_code],0A1h - jmp store_mov_address64 - mov_reg_imm: - mov al,[operand_size] - cmp al,1 - je mov_reg_imm_8bit - cmp al,2 - je mov_reg_imm_16bit - cmp al,4 - je mov_reg_imm_32bit - cmp al,8 - jne invalid_operand_size - mov_reg_imm_64bit: - call operand_64bit - call get_qword_value - mov ecx,edx - cmp [size_declared],0 - jne mov_reg_imm_64bit_store - cmp [value_type],4 - jae mov_reg_imm_64bit_store - cdq - cmp ecx,edx - je mov_reg_64bit_imm_32bit - mov_reg_imm_64bit_store: - push eax ecx - mov al,0B8h - call store_mov_reg_imm_code - pop edx eax - call mark_relocation - stos dword [edi] - mov eax,edx - stos dword [edi] - jmp instruction_assembled - mov_reg_imm_8bit: - call get_byte_value - mov dl,al - mov al,0B0h - call store_mov_reg_imm_code - mov al,dl - stos byte [edi] - jmp instruction_assembled - mov_reg_imm_16bit: - call get_word_value - mov dx,ax - call operand_16bit - mov al,0B8h - call store_mov_reg_imm_code - mov ax,dx - call mark_relocation - stos word [edi] - jmp instruction_assembled - mov_reg_imm_32bit: - call operand_32bit - call get_dword_value - mov edx,eax - mov al,0B8h - call store_mov_reg_imm_code - mov_store_imm_32bit: - mov eax,edx - call mark_relocation - stos dword [edi] - jmp instruction_assembled - store_mov_reg_imm_code: - mov ah,[postbyte_register] - test ah,1000b - jz mov_reg_imm_prefix_ok - or [rex_prefix],41h - mov_reg_imm_prefix_ok: - and ah,111b - add al,ah - mov [base_code],al - call store_instruction_code - ret - mov_reg_64bit_imm_32bit: - mov edx,eax - mov bl,[postbyte_register] - mov [postbyte_register],0 - mov [base_code],0C7h - call store_nomem_instruction - jmp mov_store_imm_32bit - mov_sreg: - mov ah,al - and al,1111b - mov [postbyte_register],al - shr ah,4 - cmp ah,5 - je mov_creg - cmp ah,7 - je mov_dreg - ja mov_treg - cmp al,2 - je illegal_instruction - dec [postbyte_register] - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,'[' - je mov_sreg_mem - cmp al,10h - jne invalid_operand - mov_sreg_reg: - lods byte [esi] - call convert_register - or ah,ah - jz mov_sreg_reg_size_ok - cmp ah,2 - jne invalid_operand_size - mov bl,al - mov_sreg_reg_size_ok: - mov [base_code],8Eh - jmp nomem_instruction_ready - mov_sreg_mem: - call get_address - mov al,[operand_size] - or al,al - jz mov_sreg_mem_size_ok - cmp al,2 - jne invalid_operand_size - mov_sreg_mem_size_ok: - mov [base_code],8Eh - jmp instruction_ready - mov_treg: - cmp ah,9 - jne invalid_operand - mov [extended_code],26h - jmp mov_xrx - mov_dreg: - mov [extended_code],23h - jmp mov_xrx - mov_creg: - mov [extended_code],22h - mov_xrx: - mov [base_code],0Fh - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_register - mov bl,al - cmp [code_type],64 - je mov_xrx_64bit - cmp ah,4 - jne invalid_operand_size - cmp [postbyte_register],8 - jne mov_xrx_store - cmp [extended_code],22h - jne mov_xrx_store - mov al,0F0h - stos byte [edi] - mov [postbyte_register],0 - mov_xrx_store: - jmp nomem_instruction_ready - mov_xrx_64bit: - cmp ah,8 - je mov_xrx_store - jmp invalid_operand_size -test_instruction: - mov [base_code],84h - lods byte [esi] - call get_size_operator - cmp al,10h - je test_reg - cmp al,'[' - jne invalid_operand - test_mem: - call get_address - push edx ebx ecx - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,'(' - je test_mem_imm - cmp al,10h - jne invalid_operand - test_mem_reg: - lods byte [esi] - call convert_register - mov [postbyte_register],al - pop ecx ebx edx - mov al,ah - cmp al,1 - je test_mem_reg_8bit - call operand_autodetect - inc [base_code] - test_mem_reg_8bit: - jmp instruction_ready - test_mem_imm: - mov al,[operand_size] - cmp al,1 - jb test_mem_imm_nosize - je test_mem_imm_8bit - cmp al,2 - je test_mem_imm_16bit - cmp al,4 - je test_mem_imm_32bit - cmp al,8 - jne invalid_operand_size - test_mem_imm_64bit: - cmp [size_declared],0 - jne long_immediate_not_encodable - call operand_64bit - call get_simm32 - cmp [value_type],4 - jae long_immediate_not_encodable - jmp test_mem_imm_32bit_store - test_mem_imm_8bit: - call get_byte_value - mov byte [value],al - mov [postbyte_register],0 - mov [base_code],0F6h - pop ecx ebx edx - call store_instruction_with_imm8 - jmp instruction_assembled - test_mem_imm_16bit: - call operand_16bit - call get_word_value - mov word [value],ax - mov [postbyte_register],0 - mov [base_code],0F7h - pop ecx ebx edx - call store_instruction_with_imm16 - jmp instruction_assembled - test_mem_imm_nosize: - call recoverable_unknown_size - test_mem_imm_32bit: - call operand_32bit - call get_dword_value - test_mem_imm_32bit_store: - mov dword [value],eax - mov [postbyte_register],0 - mov [base_code],0F7h - pop ecx ebx edx - call store_instruction_with_imm32 - jmp instruction_assembled - test_reg: - lods byte [esi] - call convert_register - mov [postbyte_register],al - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,'[' - je test_reg_mem - cmp al,'(' - je test_reg_imm - cmp al,10h - jne invalid_operand - test_reg_reg: - lods byte [esi] - call convert_register - mov bl,[postbyte_register] - mov [postbyte_register],al - mov al,ah - cmp al,1 - je test_reg_reg_8bit - call operand_autodetect - inc [base_code] - test_reg_reg_8bit: - jmp nomem_instruction_ready - test_reg_imm: - mov al,[operand_size] - cmp al,1 - je test_reg_imm_8bit - cmp al,2 - je test_reg_imm_16bit - cmp al,4 - je test_reg_imm_32bit - cmp al,8 - jne invalid_operand_size - test_reg_imm_64bit: - cmp [size_declared],0 - jne long_immediate_not_encodable - call operand_64bit - call get_simm32 - cmp [value_type],4 - jae long_immediate_not_encodable - jmp test_reg_imm_32bit_store - test_reg_imm_8bit: - call get_byte_value - mov dl,al - mov bl,[postbyte_register] - mov [postbyte_register],0 - mov [base_code],0F6h - or bl,bl - jz test_al_imm - call store_nomem_instruction - mov al,dl - stos byte [edi] - jmp instruction_assembled - test_al_imm: - mov [base_code],0A8h - call store_instruction_code - mov al,dl - stos byte [edi] - jmp instruction_assembled - test_reg_imm_16bit: - call operand_16bit - call get_word_value - mov dx,ax - mov bl,[postbyte_register] - mov [postbyte_register],0 - mov [base_code],0F7h - or bl,bl - jz test_ax_imm - call store_nomem_instruction - mov ax,dx - call mark_relocation - stos word [edi] - jmp instruction_assembled - test_ax_imm: - mov [base_code],0A9h - call store_instruction_code - mov ax,dx - stos word [edi] - jmp instruction_assembled - test_reg_imm_32bit: - call operand_32bit - call get_dword_value - test_reg_imm_32bit_store: - mov edx,eax - mov bl,[postbyte_register] - mov [postbyte_register],0 - mov [base_code],0F7h - or bl,bl - jz test_eax_imm - call store_nomem_instruction - mov eax,edx - call mark_relocation - stos dword [edi] - jmp instruction_assembled - test_eax_imm: - mov [base_code],0A9h - call store_instruction_code - mov eax,edx - stos dword [edi] - jmp instruction_assembled - test_reg_mem: - call get_address - mov al,[operand_size] - cmp al,1 - je test_reg_mem_8bit - call operand_autodetect - inc [base_code] - test_reg_mem_8bit: - jmp instruction_ready -xchg_instruction: - mov [base_code],86h - lods byte [esi] - call get_size_operator - cmp al,10h - je xchg_reg - cmp al,'[' - jne invalid_operand - xchg_mem: - call get_address - push edx ebx ecx - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,10h - je test_mem_reg - jmp invalid_operand - xchg_reg: - lods byte [esi] - call convert_register - mov [postbyte_register],al - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,'[' - je test_reg_mem - cmp al,10h - jne invalid_operand - xchg_reg_reg: - lods byte [esi] - call convert_register - mov bl,al - mov al,ah - cmp al,1 - je xchg_reg_reg_8bit - call operand_autodetect - cmp [postbyte_register],0 - je xchg_ax_reg - or bl,bl - jnz xchg_reg_reg_store - mov bl,[postbyte_register] - xchg_ax_reg: - cmp [code_type],64 - jne xchg_ax_reg_ok - cmp ah,4 - jne xchg_ax_reg_ok - or bl,bl - jz xchg_reg_reg_store - xchg_ax_reg_ok: - test bl,1000b - jz xchg_ax_reg_store - or [rex_prefix],41h - and bl,111b - xchg_ax_reg_store: - add bl,90h - mov [base_code],bl - call store_instruction_code - jmp instruction_assembled - xchg_reg_reg_store: - inc [base_code] - xchg_reg_reg_8bit: - jmp nomem_instruction_ready -push_instruction: - mov [push_size],al - push_next: - lods byte [esi] - call get_size_operator - cmp al,10h - je push_reg - cmp al,'(' - je push_imm - cmp al,'[' - jne invalid_operand - push_mem: - call get_address - mov al,[operand_size] - mov ah,[push_size] - cmp al,2 - je push_mem_16bit - cmp al,4 - je push_mem_32bit - cmp al,8 - je push_mem_64bit - or al,al - jnz invalid_operand_size - cmp ah,2 - je push_mem_16bit - cmp ah,4 - je push_mem_32bit - cmp ah,8 - je push_mem_64bit - call recoverable_unknown_size - jmp push_mem_store - push_mem_16bit: - test ah,not 2 - jnz invalid_operand_size - call operand_16bit - jmp push_mem_store - push_mem_32bit: - test ah,not 4 - jnz invalid_operand_size - cmp [code_type],64 - je illegal_instruction - call operand_32bit - jmp push_mem_store - push_mem_64bit: - test ah,not 8 - jnz invalid_operand_size - cmp [code_type],64 - jne illegal_instruction - push_mem_store: - mov [base_code],0FFh - mov [postbyte_register],110b - call store_instruction - jmp push_done - push_reg: - lods byte [esi] - mov ah,al - sub ah,10h - and ah,al - test ah,0F0h - jnz push_sreg - call convert_register - test al,1000b - jz push_reg_ok - or [rex_prefix],41h - and al,111b - push_reg_ok: - add al,50h - mov [base_code],al - mov al,ah - mov ah,[push_size] - cmp al,2 - je push_reg_16bit - cmp al,4 - je push_reg_32bit - cmp al,8 - jne invalid_operand_size - push_reg_64bit: - test ah,not 8 - jnz invalid_operand_size - cmp [code_type],64 - jne illegal_instruction - jmp push_reg_store - push_reg_32bit: - test ah,not 4 - jnz invalid_operand_size - cmp [code_type],64 - je illegal_instruction - call operand_32bit - jmp push_reg_store - push_reg_16bit: - test ah,not 2 - jnz invalid_operand_size - call operand_16bit - push_reg_store: - call store_instruction_code - jmp push_done - push_sreg: - mov bl,al - mov dl,[operand_size] - mov dh,[push_size] - cmp dl,2 - je push_sreg16 - cmp dl,4 - je push_sreg32 - cmp dl,8 - je push_sreg64 - or dl,dl - jnz invalid_operand_size - cmp dh,2 - je push_sreg16 - cmp dh,4 - je push_sreg32 - cmp dh,8 - je push_sreg64 - jmp push_sreg_store - push_sreg16: - test dh,not 2 - jnz invalid_operand_size - call operand_16bit - jmp push_sreg_store - push_sreg32: - test dh,not 4 - jnz invalid_operand_size - cmp [code_type],64 - je illegal_instruction - call operand_32bit - jmp push_sreg_store - push_sreg64: - test dh,not 8 - jnz invalid_operand_size - cmp [code_type],64 - jne illegal_instruction - push_sreg_store: - mov al,bl - cmp al,70h - jae invalid_operand - sub al,61h - jc invalid_operand - cmp al,4 - jae push_sreg_386 - shl al,3 - add al,6 - mov [base_code],al - cmp [code_type],64 - je illegal_instruction - jmp push_reg_store - push_sreg_386: - sub al,4 - shl al,3 - add al,0A0h - mov [extended_code],al - mov [base_code],0Fh - jmp push_reg_store - push_imm: - mov al,[operand_size] - mov ah,[push_size] - or al,al - je push_imm_size_ok - or ah,ah - je push_imm_size_ok - cmp al,ah - jne invalid_operand_size - push_imm_size_ok: - cmp al,2 - je push_imm_16bit - cmp al,4 - je push_imm_32bit - cmp al,8 - je push_imm_64bit - cmp ah,2 - je push_imm_optimized_16bit - cmp ah,4 - je push_imm_optimized_32bit - cmp ah,8 - je push_imm_optimized_64bit - or al,al - jnz invalid_operand_size - cmp [code_type],16 - je push_imm_optimized_16bit - cmp [code_type],32 - je push_imm_optimized_32bit - push_imm_optimized_64bit: - cmp [code_type],64 - jne illegal_instruction - call get_simm32 - mov edx,eax - cmp [value_type],0 - jne push_imm_32bit_store - cmp eax,-80h - jl push_imm_32bit_store - cmp eax,80h - jge push_imm_32bit_store - jmp push_imm_8bit - push_imm_optimized_32bit: - cmp [code_type],64 - je illegal_instruction - call get_dword_value - mov edx,eax - call operand_32bit - cmp [value_type],0 - jne push_imm_32bit_store - cmp eax,-80h - jl push_imm_32bit_store - cmp eax,80h - jge push_imm_32bit_store - jmp push_imm_8bit - push_imm_optimized_16bit: - call get_word_value - mov dx,ax - call operand_16bit - cmp [value_type],0 - jne push_imm_16bit_store - cmp ax,-80h - jl push_imm_16bit_store - cmp ax,80h - jge push_imm_16bit_store - push_imm_8bit: - mov ah,al - mov [base_code],6Ah - call store_instruction_code - mov al,ah - stos byte [edi] - jmp push_done - push_imm_16bit: - call get_word_value - mov dx,ax - call operand_16bit - push_imm_16bit_store: - mov [base_code],68h - call store_instruction_code - mov ax,dx - call mark_relocation - stos word [edi] - jmp push_done - push_imm_64bit: - cmp [code_type],64 - jne illegal_instruction - call get_simm32 - mov edx,eax - jmp push_imm_32bit_store - push_imm_32bit: - cmp [code_type],64 - je illegal_instruction - call get_dword_value - mov edx,eax - call operand_32bit - push_imm_32bit_store: - mov [base_code],68h - call store_instruction_code - mov eax,edx - call mark_relocation - stos dword [edi] - push_done: - lods byte [esi] - dec esi - cmp al,0Fh - je instruction_assembled - or al,al - jz instruction_assembled - mov [operand_size],0 - mov [size_override],0 - mov [operand_prefix],0 - mov [rex_prefix],0 - jmp push_next -pop_instruction: - mov [push_size],al - pop_next: - lods byte [esi] - call get_size_operator - cmp al,10h - je pop_reg - cmp al,'[' - jne invalid_operand - pop_mem: - call get_address - mov al,[operand_size] - mov ah,[push_size] - cmp al,2 - je pop_mem_16bit - cmp al,4 - je pop_mem_32bit - cmp al,8 - je pop_mem_64bit - or al,al - jnz invalid_operand_size - cmp ah,2 - je pop_mem_16bit - cmp ah,4 - je pop_mem_32bit - cmp ah,8 - je pop_mem_64bit - call recoverable_unknown_size - jmp pop_mem_store - pop_mem_16bit: - test ah,not 2 - jnz invalid_operand_size - call operand_16bit - jmp pop_mem_store - pop_mem_32bit: - test ah,not 4 - jnz invalid_operand_size - cmp [code_type],64 - je illegal_instruction - call operand_32bit - jmp pop_mem_store - pop_mem_64bit: - test ah,not 8 - jnz invalid_operand_size - cmp [code_type],64 - jne illegal_instruction - pop_mem_store: - mov [base_code],08Fh - mov [postbyte_register],0 - call store_instruction - jmp pop_done - pop_reg: - lods byte [esi] - mov ah,al - sub ah,10h - and ah,al - test ah,0F0h - jnz pop_sreg - call convert_register - test al,1000b - jz pop_reg_ok - or [rex_prefix],41h - and al,111b - pop_reg_ok: - add al,58h - mov [base_code],al - mov al,ah - mov ah,[push_size] - cmp al,2 - je pop_reg_16bit - cmp al,4 - je pop_reg_32bit - cmp al,8 - je pop_reg_64bit - jmp invalid_operand_size - pop_reg_64bit: - test ah,not 8 - jnz invalid_operand_size - cmp [code_type],64 - jne illegal_instruction - jmp pop_reg_store - pop_reg_32bit: - test ah,not 4 - jnz invalid_operand_size - cmp [code_type],64 - je illegal_instruction - call operand_32bit - jmp pop_reg_store - pop_reg_16bit: - test ah,not 2 - jnz invalid_operand_size - call operand_16bit - pop_reg_store: - call store_instruction_code - pop_done: - lods byte [esi] - dec esi - cmp al,0Fh - je instruction_assembled - or al,al - jz instruction_assembled - mov [operand_size],0 - mov [size_override],0 - mov [operand_prefix],0 - mov [rex_prefix],0 - jmp pop_next - pop_sreg: - mov dl,[operand_size] - mov dh,[push_size] - cmp al,62h - je pop_cs - mov bl,al - cmp dl,2 - je pop_sreg16 - cmp dl,4 - je pop_sreg32 - cmp dl,8 - je pop_sreg64 - or dl,dl - jnz invalid_operand_size - cmp dh,2 - je pop_sreg16 - cmp dh,4 - je pop_sreg32 - cmp dh,8 - je pop_sreg64 - jmp pop_sreg_store - pop_sreg16: - test dh,not 2 - jnz invalid_operand_size - call operand_16bit - jmp pop_sreg_store - pop_sreg32: - test dh,not 4 - jnz invalid_operand_size - cmp [code_type],64 - je illegal_instruction - call operand_32bit - jmp pop_sreg_store - pop_sreg64: - test dh,not 8 - jnz invalid_operand_size - cmp [code_type],64 - jne illegal_instruction - pop_sreg_store: - mov al,bl - cmp al,70h - jae invalid_operand - sub al,61h - jc invalid_operand - cmp al,4 - jae pop_sreg_386 - shl al,3 - add al,7 - mov [base_code],al - cmp [code_type],64 - je illegal_instruction - jmp pop_reg_store - pop_cs: - cmp [code_type],16 - jne illegal_instruction - cmp dl,2 - je pop_cs_store - or dl,dl - jnz invalid_operand_size - cmp dh,2 - je pop_cs_store - or dh,dh - jnz illegal_instruction - pop_cs_store: - test dh,not 2 - jnz invalid_operand_size - mov al,0Fh - stos byte [edi] - jmp pop_done - pop_sreg_386: - sub al,4 - shl al,3 - add al,0A1h - mov [extended_code],al - mov [base_code],0Fh - jmp pop_reg_store -inc_instruction: - mov [base_code],al - lods byte [esi] - call get_size_operator - cmp al,10h - je inc_reg - cmp al,'[' - je inc_mem - jne invalid_operand - inc_mem: - call get_address - mov al,[operand_size] - cmp al,1 - je inc_mem_8bit - jb inc_mem_nosize - call operand_autodetect - mov al,0FFh - xchg al,[base_code] - mov [postbyte_register],al - jmp instruction_ready - inc_mem_nosize: - call recoverable_unknown_size - inc_mem_8bit: - mov al,0FEh - xchg al,[base_code] - mov [postbyte_register],al - jmp instruction_ready - inc_reg: - lods byte [esi] - call convert_register - mov bl,al - mov al,0FEh - xchg al,[base_code] - mov [postbyte_register],al - mov al,ah - cmp al,1 - je inc_reg_8bit - call operand_autodetect - cmp [code_type],64 - je inc_reg_long_form - mov al,[postbyte_register] - shl al,3 - add al,bl - add al,40h - mov [base_code],al - call store_instruction_code - jmp instruction_assembled - inc_reg_long_form: - inc [base_code] - inc_reg_8bit: - jmp nomem_instruction_ready -set_instruction: - mov [base_code],0Fh - mov [extended_code],al - lods byte [esi] - call get_size_operator - cmp al,10h - je set_reg - cmp al,'[' - jne invalid_operand - set_mem: - call get_address - cmp [operand_size],1 - ja invalid_operand_size - mov [postbyte_register],0 - jmp instruction_ready - set_reg: - lods byte [esi] - call convert_register - cmp ah,1 - jne invalid_operand_size - mov bl,al - mov [postbyte_register],0 - jmp nomem_instruction_ready -arpl_instruction: - cmp [code_type],64 - je illegal_instruction - mov [base_code],63h - lods byte [esi] - call get_size_operator - cmp al,10h - je arpl_reg - cmp al,'[' - jne invalid_operand - call get_address - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_register - mov [postbyte_register],al - cmp ah,2 - jne invalid_operand_size - jmp instruction_ready - arpl_reg: - lods byte [esi] - call convert_register - cmp ah,2 - jne invalid_operand_size - mov bl,al - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_register - mov [postbyte_register],al - jmp nomem_instruction_ready -bound_instruction: - cmp [code_type],64 - je illegal_instruction - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_register - mov [postbyte_register],al - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,'[' - jne invalid_operand - call get_address - mov al,[operand_size] - cmp al,2 - je bound_store - cmp al,4 - jne invalid_operand_size - bound_store: - call operand_autodetect - mov [base_code],62h - jmp instruction_ready -enter_instruction: - lods byte [esi] - call get_size_operator - cmp ah,2 - je enter_imm16_size_ok - or ah,ah - jnz invalid_operand_size - enter_imm16_size_ok: - cmp al,'(' - jne invalid_operand - call get_word_value - cmp [next_pass_needed],0 - jne enter_imm16_ok - cmp [value_type],0 - jne invalid_use_of_symbol - test eax,eax - js value_out_of_range - enter_imm16_ok: - push eax - mov [operand_size],0 - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp ah,1 - je enter_imm8_size_ok - or ah,ah - jnz invalid_operand_size - enter_imm8_size_ok: - cmp al,'(' - jne invalid_operand - call get_byte_value - cmp [next_pass_needed],0 - jne enter_imm8_ok - test eax,eax - js value_out_of_range - enter_imm8_ok: - mov dl,al - pop ebx - mov al,0C8h - stos byte [edi] - mov ax,bx - stos word [edi] - mov al,dl - stos byte [edi] - jmp instruction_assembled -ret_instruction_only64: - cmp [code_type],64 - jne illegal_instruction - jmp ret_instruction -ret_instruction_32bit_except64: - cmp [code_type],64 - je illegal_instruction -ret_instruction_32bit: - call operand_32bit - jmp ret_instruction -ret_instruction_16bit: - call operand_16bit - jmp ret_instruction -retf_instruction: - cmp [code_type],64 - jne ret_instruction -ret_instruction_64bit: - call operand_64bit -ret_instruction: - mov [base_code],al - lods byte [esi] - dec esi - or al,al - jz simple_ret - cmp al,0Fh - je simple_ret - lods byte [esi] - call get_size_operator - or ah,ah - jz ret_imm - cmp ah,2 - je ret_imm - jmp invalid_operand_size - ret_imm: - cmp al,'(' - jne invalid_operand - call get_word_value - cmp [next_pass_needed],0 - jne ret_imm_ok - cmp [value_type],0 - jne invalid_use_of_symbol - test eax,eax - js value_out_of_range - ret_imm_ok: - cmp [size_declared],0 - jne ret_imm_store - or ax,ax - jz simple_ret - ret_imm_store: - mov dx,ax - call store_instruction_code - mov ax,dx - stos word [edi] - jmp instruction_assembled - simple_ret: - inc [base_code] - call store_instruction_code - jmp instruction_assembled -lea_instruction: - mov [base_code],8Dh - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_register - mov [postbyte_register],al - lods byte [esi] - cmp al,',' - jne invalid_operand - xor al,al - xchg al,[operand_size] - push eax - lods byte [esi] - call get_size_operator - cmp al,'[' - jne invalid_operand - mov [size_override],-1 - call get_address - pop eax - mov [operand_size],al - call operand_autodetect - jmp instruction_ready -ls_instruction: - or al,al - jz les_instruction - cmp al,3 - jz lds_instruction - add al,0B0h - mov [extended_code],al - mov [base_code],0Fh - jmp ls_code_ok - les_instruction: - mov [base_code],0C4h - jmp ls_short_code - lds_instruction: - mov [base_code],0C5h - ls_short_code: - cmp [code_type],64 - je illegal_instruction - ls_code_ok: - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_register - mov [postbyte_register],al - lods byte [esi] - cmp al,',' - jne invalid_operand - add [operand_size],2 - lods byte [esi] - call get_size_operator - cmp al,'[' - jne invalid_operand - call get_address - mov al,[operand_size] - cmp al,4 - je ls_16bit - cmp al,6 - je ls_32bit - cmp al,10 - je ls_64bit - jmp invalid_operand_size - ls_16bit: - call operand_16bit - jmp instruction_ready - ls_32bit: - call operand_32bit - jmp instruction_ready - ls_64bit: - call operand_64bit - jmp instruction_ready -sh_instruction: - mov [postbyte_register],al - lods byte [esi] - call get_size_operator - cmp al,10h - je sh_reg - cmp al,'[' - jne invalid_operand - sh_mem: - call get_address - push edx ebx ecx - mov al,[operand_size] - push eax - mov [operand_size],0 - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,'(' - je sh_mem_imm - cmp al,10h - jne invalid_operand - sh_mem_reg: - lods byte [esi] - cmp al,11h - jne invalid_operand - pop eax ecx ebx edx - cmp al,1 - je sh_mem_cl_8bit - jb sh_mem_cl_nosize - call operand_autodetect - mov [base_code],0D3h - jmp instruction_ready - sh_mem_cl_nosize: - call recoverable_unknown_size - sh_mem_cl_8bit: - mov [base_code],0D2h - jmp instruction_ready - sh_mem_imm: - mov al,[operand_size] - or al,al - jz sh_mem_imm_size_ok - cmp al,1 - jne invalid_operand_size - sh_mem_imm_size_ok: - call get_byte_value - mov byte [value],al - pop eax ecx ebx edx - cmp al,1 - je sh_mem_imm_8bit - jb sh_mem_imm_nosize - call operand_autodetect - cmp byte [value],1 - je sh_mem_1 - mov [base_code],0C1h - call store_instruction_with_imm8 - jmp instruction_assembled - sh_mem_1: - mov [base_code],0D1h - jmp instruction_ready - sh_mem_imm_nosize: - call recoverable_unknown_size - sh_mem_imm_8bit: - cmp byte [value],1 - je sh_mem_1_8bit - mov [base_code],0C0h - call store_instruction_with_imm8 - jmp instruction_assembled - sh_mem_1_8bit: - mov [base_code],0D0h - jmp instruction_ready - sh_reg: - lods byte [esi] - call convert_register - mov bx,ax - mov [operand_size],0 - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,'(' - je sh_reg_imm - cmp al,10h - jne invalid_operand - sh_reg_reg: - lods byte [esi] - cmp al,11h - jne invalid_operand - mov al,bh - cmp al,1 - je sh_reg_cl_8bit - call operand_autodetect - mov [base_code],0D3h - jmp nomem_instruction_ready - sh_reg_cl_8bit: - mov [base_code],0D2h - jmp nomem_instruction_ready - sh_reg_imm: - mov al,[operand_size] - or al,al - jz sh_reg_imm_size_ok - cmp al,1 - jne invalid_operand_size - sh_reg_imm_size_ok: - push ebx - call get_byte_value - mov dl,al - pop ebx - mov al,bh - cmp al,1 - je sh_reg_imm_8bit - call operand_autodetect - cmp dl,1 - je sh_reg_1 - mov [base_code],0C1h - call store_nomem_instruction - mov al,dl - stos byte [edi] - jmp instruction_assembled - sh_reg_1: - mov [base_code],0D1h - jmp nomem_instruction_ready - sh_reg_imm_8bit: - cmp dl,1 - je sh_reg_1_8bit - mov [base_code],0C0h - call store_nomem_instruction - mov al,dl - stos byte [edi] - jmp instruction_assembled - sh_reg_1_8bit: - mov [base_code],0D0h - jmp nomem_instruction_ready -shd_instruction: - mov [base_code],0Fh - mov [extended_code],al - lods byte [esi] - call get_size_operator - cmp al,10h - je shd_reg - cmp al,'[' - jne invalid_operand - shd_mem: - call get_address - push edx ebx ecx - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_register - mov [postbyte_register],al - lods byte [esi] - cmp al,',' - jne invalid_operand - mov al,ah - mov [operand_size],0 - push eax - lods byte [esi] - call get_size_operator - cmp al,'(' - je shd_mem_reg_imm - cmp al,10h - jne invalid_operand - lods byte [esi] - cmp al,11h - jne invalid_operand - pop eax ecx ebx edx - call operand_autodetect - inc [extended_code] - jmp instruction_ready - shd_mem_reg_imm: - mov al,[operand_size] - or al,al - jz shd_mem_reg_imm_size_ok - cmp al,1 - jne invalid_operand_size - shd_mem_reg_imm_size_ok: - call get_byte_value - mov byte [value],al - pop eax ecx ebx edx - call operand_autodetect - call store_instruction_with_imm8 - jmp instruction_assembled - shd_reg: - lods byte [esi] - call convert_register - mov [postbyte_register],al - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_register - mov bl,[postbyte_register] - mov [postbyte_register],al - mov al,ah - push eax ebx - lods byte [esi] - cmp al,',' - jne invalid_operand - mov [operand_size],0 - lods byte [esi] - call get_size_operator - cmp al,'(' - je shd_reg_reg_imm - cmp al,10h - jne invalid_operand - lods byte [esi] - cmp al,11h - jne invalid_operand - pop ebx eax - call operand_autodetect - inc [extended_code] - jmp nomem_instruction_ready - shd_reg_reg_imm: - mov al,[operand_size] - or al,al - jz shd_reg_reg_imm_size_ok - cmp al,1 - jne invalid_operand_size - shd_reg_reg_imm_size_ok: - call get_byte_value - mov dl,al - pop ebx eax - call operand_autodetect - call store_nomem_instruction - mov al,dl - stos byte [edi] - jmp instruction_assembled -movx_instruction: - mov [base_code],0Fh - mov [extended_code],al - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_register - mov [postbyte_register],al - mov al,ah - push eax - lods byte [esi] - cmp al,',' - jne invalid_operand - mov [operand_size],0 - lods byte [esi] - call get_size_operator - cmp al,10h - je movx_reg - cmp al,'[' - jne invalid_operand - call get_address - pop eax - mov ah,[operand_size] - or ah,ah - jz movx_unknown_size - cmp ah,al - jae invalid_operand_size - cmp ah,1 - je movx_mem_store - cmp ah,2 - jne invalid_operand_size - inc [extended_code] - movx_mem_store: - call operand_autodetect - jmp instruction_ready - movx_unknown_size: - call recoverable_unknown_size - jmp movx_mem_store - movx_reg: - lods byte [esi] - call convert_register - pop ebx - xchg bl,al - cmp ah,al - jae invalid_operand_size - cmp ah,1 - je movx_reg_8bit - cmp ah,2 - je movx_reg_16bit - jmp invalid_operand_size - movx_reg_8bit: - call operand_autodetect - jmp nomem_instruction_ready - movx_reg_16bit: - call operand_autodetect - inc [extended_code] - jmp nomem_instruction_ready -movsxd_instruction: - mov [base_code],al - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_register - mov [postbyte_register],al - cmp ah,8 - jne invalid_operand_size - lods byte [esi] - cmp al,',' - jne invalid_operand - mov [operand_size],0 - lods byte [esi] - call get_size_operator - cmp al,10h - je movsxd_reg - cmp al,'[' - jne invalid_operand - call get_address - cmp [operand_size],4 - je movsxd_mem_store - cmp [operand_size],0 - jne invalid_operand_size - movsxd_mem_store: - call operand_64bit - jmp instruction_ready - movsxd_reg: - lods byte [esi] - call convert_register - cmp ah,4 - jne invalid_operand_size - mov bl,al - call operand_64bit - jmp nomem_instruction_ready -bt_instruction: - mov [postbyte_register],al - shl al,3 - add al,83h - mov [extended_code],al - mov [base_code],0Fh - lods byte [esi] - call get_size_operator - cmp al,10h - je bt_reg - cmp al,'[' - jne invalid_operand - call get_address - push eax ebx ecx - lods byte [esi] - cmp al,',' - jne invalid_operand - cmp byte [esi],'(' - je bt_mem_imm - cmp byte [esi],11h - jne bt_mem_reg - cmp byte [esi+2],'(' - je bt_mem_imm - bt_mem_reg: - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_register - mov [postbyte_register],al - pop ecx ebx edx - mov al,ah - call operand_autodetect - jmp instruction_ready - bt_mem_imm: - xor al,al - xchg al,[operand_size] - push eax - lods byte [esi] - call get_size_operator - cmp al,'(' - jne invalid_operand - mov al,[operand_size] - or al,al - jz bt_mem_imm_size_ok - cmp al,1 - jne invalid_operand_size - bt_mem_imm_size_ok: - call get_byte_value - mov byte [value],al - pop eax - or al,al - jz bt_mem_imm_nosize - call operand_autodetect - bt_mem_imm_store: - pop ecx ebx edx - mov [extended_code],0BAh - call store_instruction_with_imm8 - jmp instruction_assembled - bt_mem_imm_nosize: - call recoverable_unknown_size - jmp bt_mem_imm_store - bt_reg: - lods byte [esi] - call convert_register - mov bl,al - lods byte [esi] - cmp al,',' - jne invalid_operand - cmp byte [esi],'(' - je bt_reg_imm - cmp byte [esi],11h - jne bt_reg_reg - cmp byte [esi+2],'(' - je bt_reg_imm - bt_reg_reg: - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_register - mov [postbyte_register],al - mov al,ah - call operand_autodetect - jmp nomem_instruction_ready - bt_reg_imm: - xor al,al - xchg al,[operand_size] - push eax ebx - lods byte [esi] - call get_size_operator - cmp al,'(' - jne invalid_operand - mov al,[operand_size] - or al,al - jz bt_reg_imm_size_ok - cmp al,1 - jne invalid_operand_size - bt_reg_imm_size_ok: - call get_byte_value - mov byte [value],al - pop ebx eax - call operand_autodetect - bt_reg_imm_store: - mov [extended_code],0BAh - call store_nomem_instruction - mov al,byte [value] - stos byte [edi] - jmp instruction_assembled -bs_instruction: - mov [extended_code],al - mov [base_code],0Fh - call get_reg_mem - jc bs_reg_reg - mov al,[operand_size] - call operand_autodetect - jmp instruction_ready - bs_reg_reg: - mov al,ah - call operand_autodetect - jmp nomem_instruction_ready - get_reg_mem: - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_register - mov [postbyte_register],al - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,10h - je get_reg_reg - cmp al,'[' - jne invalid_argument - call get_address - clc - ret - get_reg_reg: - lods byte [esi] - call convert_register - mov bl,al - stc - ret - -imul_instruction: - mov [base_code],0F6h - mov [postbyte_register],5 - lods byte [esi] - call get_size_operator - cmp al,10h - je imul_reg - cmp al,'[' - jne invalid_operand - imul_mem: - call get_address - mov al,[operand_size] - cmp al,1 - je imul_mem_8bit - jb imul_mem_nosize - call operand_autodetect - inc [base_code] - jmp instruction_ready - imul_mem_nosize: - call recoverable_unknown_size - imul_mem_8bit: - jmp instruction_ready - imul_reg: - lods byte [esi] - call convert_register - cmp byte [esi],',' - je imul_reg_ - mov bl,al - mov al,ah - cmp al,1 - je imul_reg_8bit - call operand_autodetect - inc [base_code] - imul_reg_8bit: - jmp nomem_instruction_ready - imul_reg_: - mov [postbyte_register],al - inc esi - cmp byte [esi],'(' - je imul_reg_imm - cmp byte [esi],11h - jne imul_reg_noimm - cmp byte [esi+2],'(' - je imul_reg_imm - imul_reg_noimm: - lods byte [esi] - call get_size_operator - cmp al,10h - je imul_reg_reg - cmp al,'[' - jne invalid_operand - imul_reg_mem: - call get_address - push edx ebx ecx - cmp byte [esi],',' - je imul_reg_mem_imm - mov al,[operand_size] - call operand_autodetect - pop ecx ebx edx - mov [base_code],0Fh - mov [extended_code],0AFh - jmp instruction_ready - imul_reg_mem_imm: - inc esi - lods byte [esi] - call get_size_operator - cmp al,'(' - jne invalid_operand - mov al,[operand_size] - cmp al,2 - je imul_reg_mem_imm_16bit - cmp al,4 - je imul_reg_mem_imm_32bit - cmp al,8 - jne invalid_operand_size - imul_reg_mem_imm_64bit: - cmp [size_declared],0 - jne long_immediate_not_encodable - call operand_64bit - call get_simm32 - cmp [value_type],4 - jae long_immediate_not_encodable - jmp imul_reg_mem_imm_32bit_ok - imul_reg_mem_imm_16bit: - call operand_16bit - call get_word_value - mov word [value],ax - cmp [value_type],0 - jne imul_reg_mem_imm_16bit_store - cmp [size_declared],0 - jne imul_reg_mem_imm_16bit_store - cmp ax,-80h - jl imul_reg_mem_imm_16bit_store - cmp ax,80h - jl imul_reg_mem_imm_8bit_store - imul_reg_mem_imm_16bit_store: - pop ecx ebx edx - mov [base_code],69h - call store_instruction_with_imm16 - jmp instruction_assembled - imul_reg_mem_imm_32bit: - call operand_32bit - call get_dword_value - imul_reg_mem_imm_32bit_ok: - mov dword [value],eax - cmp [value_type],0 - jne imul_reg_mem_imm_32bit_store - cmp [size_declared],0 - jne imul_reg_mem_imm_32bit_store - cmp eax,-80h - jl imul_reg_mem_imm_32bit_store - cmp eax,80h - jl imul_reg_mem_imm_8bit_store - imul_reg_mem_imm_32bit_store: - pop ecx ebx edx - mov [base_code],69h - call store_instruction_with_imm32 - jmp instruction_assembled - imul_reg_mem_imm_8bit_store: - pop ecx ebx edx - mov [base_code],6Bh - call store_instruction_with_imm8 - jmp instruction_assembled - imul_reg_imm: - mov bl,[postbyte_register] - dec esi - jmp imul_reg_reg_imm - imul_reg_reg: - lods byte [esi] - call convert_register - mov bl,al - cmp byte [esi],',' - je imul_reg_reg_imm - mov al,ah - call operand_autodetect - mov [base_code],0Fh - mov [extended_code],0AFh - jmp nomem_instruction_ready - imul_reg_reg_imm: - inc esi - lods byte [esi] - call get_size_operator - cmp al,'(' - jne invalid_operand - mov al,[operand_size] - cmp al,2 - je imul_reg_reg_imm_16bit - cmp al,4 - je imul_reg_reg_imm_32bit - cmp al,8 - jne invalid_operand_size - imul_reg_reg_imm_64bit: - cmp [size_declared],0 - jne long_immediate_not_encodable - call operand_64bit - push ebx - call get_simm32 - cmp [value_type],4 - jae long_immediate_not_encodable - jmp imul_reg_reg_imm_32bit_ok - imul_reg_reg_imm_16bit: - call operand_16bit - push ebx - call get_word_value - pop ebx - mov dx,ax - cmp [value_type],0 - jne imul_reg_reg_imm_16bit_store - cmp [size_declared],0 - jne imul_reg_reg_imm_16bit_store - cmp ax,-80h - jl imul_reg_reg_imm_16bit_store - cmp ax,80h - jl imul_reg_reg_imm_8bit_store - imul_reg_reg_imm_16bit_store: - mov [base_code],69h - call store_nomem_instruction - mov ax,dx - call mark_relocation - stos word [edi] - jmp instruction_assembled - imul_reg_reg_imm_32bit: - call operand_32bit - push ebx - call get_dword_value - imul_reg_reg_imm_32bit_ok: - pop ebx - mov edx,eax - cmp [value_type],0 - jne imul_reg_reg_imm_32bit_store - cmp [size_declared],0 - jne imul_reg_reg_imm_32bit_store - cmp eax,-80h - jl imul_reg_reg_imm_32bit_store - cmp eax,80h - jl imul_reg_reg_imm_8bit_store - imul_reg_reg_imm_32bit_store: - mov [base_code],69h - call store_nomem_instruction - mov eax,edx - call mark_relocation - stos dword [edi] - jmp instruction_assembled - imul_reg_reg_imm_8bit_store: - mov [base_code],6Bh - call store_nomem_instruction - mov al,dl - stos byte [edi] - jmp instruction_assembled -in_instruction: - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_register - or al,al - jnz invalid_operand - lods byte [esi] - cmp al,',' - jne invalid_operand - mov al,ah - push eax - mov [operand_size],0 - lods byte [esi] - call get_size_operator - cmp al,'(' - je in_imm - cmp al,10h - je in_reg - jmp invalid_operand - in_reg: - lods byte [esi] - cmp al,22h - jne invalid_operand - pop eax - cmp al,1 - je in_al_dx - cmp al,2 - je in_ax_dx - cmp al,4 - jne invalid_operand_size - in_ax_dx: - call operand_autodetect - mov [base_code],0EDh - call store_instruction_code - jmp instruction_assembled - in_al_dx: - mov al,0ECh - stos byte [edi] - jmp instruction_assembled - in_imm: - mov al,[operand_size] - or al,al - jz in_imm_size_ok - cmp al,1 - jne invalid_operand_size - in_imm_size_ok: - call get_byte_value - mov dl,al - pop eax - cmp al,1 - je in_al_imm - cmp al,2 - je in_ax_imm - cmp al,4 - jne invalid_operand_size - in_ax_imm: - call operand_autodetect - mov [base_code],0E5h - call store_instruction_code - mov al,dl - stos byte [edi] - jmp instruction_assembled - in_al_imm: - mov al,0E4h - stos byte [edi] - mov al,dl - stos byte [edi] - jmp instruction_assembled -out_instruction: - lods byte [esi] - call get_size_operator - cmp al,'(' - je out_imm - cmp al,10h - jne invalid_operand - lods byte [esi] - cmp al,22h - jne invalid_operand - lods byte [esi] - cmp al,',' - jne invalid_operand - mov [operand_size],0 - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_register - or al,al - jnz invalid_operand - mov al,ah - cmp al,1 - je out_dx_al - cmp al,2 - je out_dx_ax - cmp al,4 - jne invalid_operand_size - out_dx_ax: - call operand_autodetect - mov [base_code],0EFh - call store_instruction_code - jmp instruction_assembled - out_dx_al: - mov al,0EEh - stos byte [edi] - jmp instruction_assembled - out_imm: - mov al,[operand_size] - or al,al - jz out_imm_size_ok - cmp al,1 - jne invalid_operand_size - out_imm_size_ok: - call get_byte_value - mov dl,al - lods byte [esi] - cmp al,',' - jne invalid_operand - mov [operand_size],0 - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_register - or al,al - jnz invalid_operand - mov al,ah - cmp al,1 - je out_imm_al - cmp al,2 - je out_imm_ax - cmp al,4 - jne invalid_operand_size - out_imm_ax: - call operand_autodetect - mov [base_code],0E7h - call store_instruction_code - mov al,dl - stos byte [edi] - jmp instruction_assembled - out_imm_al: - mov al,0E6h - stos byte [edi] - mov al,dl - stos byte [edi] - jmp instruction_assembled - -call_instruction: - mov [postbyte_register],10b - mov [base_code],0E8h - mov [extended_code],9Ah - jmp process_jmp -jmp_instruction: - mov [postbyte_register],100b - mov [base_code],0E9h - mov [extended_code],0EAh - process_jmp: - lods byte [esi] - call get_jump_operator - call get_size_operator - cmp al,'(' - je jmp_imm - mov [base_code],0FFh - cmp al,10h - je jmp_reg - cmp al,'[' - jne invalid_operand - jmp_mem: - cmp [jump_type],1 - je illegal_instruction - call get_address - mov edx,eax - mov al,[operand_size] - or al,al - jz jmp_mem_size_not_specified - cmp al,2 - je jmp_mem_16bit - cmp al,4 - je jmp_mem_32bit - cmp al,6 - je jmp_mem_48bit - cmp al,8 - je jmp_mem_64bit - cmp al,10 - je jmp_mem_80bit - jmp invalid_operand_size - jmp_mem_size_not_specified: - cmp [jump_type],3 - je jmp_mem_far - cmp [jump_type],2 - je jmp_mem_near - call recoverable_unknown_size - jmp_mem_near: - cmp [code_type],16 - je jmp_mem_16bit - cmp [code_type],32 - je jmp_mem_near_32bit - jmp_mem_64bit: - cmp [jump_type],3 - je invalid_operand_size - cmp [code_type],64 - jne illegal_instruction - jmp instruction_ready - jmp_mem_far: - cmp [code_type],16 - je jmp_mem_far_32bit - jmp_mem_48bit: - call operand_32bit - jmp_mem_far_store: - cmp [jump_type],2 - je invalid_operand_size - inc [postbyte_register] - jmp instruction_ready - jmp_mem_80bit: - call operand_64bit - jmp jmp_mem_far_store - jmp_mem_far_32bit: - call operand_16bit - jmp jmp_mem_far_store - jmp_mem_32bit: - cmp [jump_type],3 - je jmp_mem_far_32bit - cmp [jump_type],2 - je jmp_mem_near_32bit - cmp [code_type],16 - je jmp_mem_far_32bit - jmp_mem_near_32bit: - cmp [code_type],64 - je illegal_instruction - call operand_32bit - jmp instruction_ready - jmp_mem_16bit: - cmp [jump_type],3 - je invalid_operand_size - call operand_16bit - jmp instruction_ready - jmp_reg: - test [jump_type],1 - jnz invalid_operand - lods byte [esi] - call convert_register - mov bl,al - mov al,ah - cmp al,2 - je jmp_reg_16bit - cmp al,4 - je jmp_reg_32bit - cmp al,8 - jne invalid_operand_size - jmp_reg_64bit: - cmp [code_type],64 - jne illegal_instruction - jmp nomem_instruction_ready - jmp_reg_32bit: - cmp [code_type],64 - je illegal_instruction - call operand_32bit - jmp nomem_instruction_ready - jmp_reg_16bit: - call operand_16bit - jmp nomem_instruction_ready - jmp_imm: - cmp byte [esi],'.' - je invalid_value - mov ebx,esi - dec esi - call skip_symbol - xchg esi,ebx - cmp byte [ebx],':' - je jmp_far - cmp [jump_type],3 - je invalid_operand - jmp_near: - mov al,[operand_size] - cmp al,2 - je jmp_imm_16bit - cmp al,4 - je jmp_imm_32bit - cmp al,8 - je jmp_imm_64bit - or al,al - jnz invalid_operand_size - cmp [code_type],16 - je jmp_imm_16bit - cmp [code_type],64 - je jmp_imm_64bit - jmp_imm_32bit: - cmp [code_type],64 - je invalid_operand_size - call get_address_dword_value - cmp [code_type],16 - jne jmp_imm_32bit_prefix_ok - mov byte [edi],66h - inc edi - jmp_imm_32bit_prefix_ok: - call calculate_jump_offset - cdq - call check_for_short_jump - jc jmp_short - jmp_imm_32bit_store: - mov edx,eax - sub edx,3 - jno jmp_imm_32bit_ok - cmp [code_type],64 - je relative_jump_out_of_range - jmp_imm_32bit_ok: - mov al,[base_code] - stos byte [edi] - mov eax,edx - call mark_relocation - stos dword [edi] - jmp instruction_assembled - jmp_imm_64bit: - cmp [code_type],64 - jne invalid_operand_size - call get_address_qword_value - call calculate_jump_offset - mov ecx,edx - cdq - cmp edx,ecx - jne relative_jump_out_of_range - call check_for_short_jump - jnc jmp_imm_32bit_store - jmp_short: - mov ah,al - mov al,0EBh - stos word [edi] - jmp instruction_assembled - jmp_imm_16bit: - call get_address_word_value - cmp [code_type],16 - je jmp_imm_16bit_prefix_ok - mov byte [edi],66h - inc edi - jmp_imm_16bit_prefix_ok: - call calculate_jump_offset - cwde - cdq - call check_for_short_jump - jc jmp_short - cmp [value_type],0 - jne invalid_use_of_symbol - mov edx,eax - dec edx - mov al,[base_code] - stos byte [edi] - mov eax,edx - stos word [edi] - jmp instruction_assembled - calculate_jump_offset: - add edi,2 - mov ebp,[addressing_space] - call calculate_relative_offset - sub edi,2 - ret - check_for_short_jump: - cmp [jump_type],1 - je forced_short - ja no_short_jump - cmp [base_code],0E8h - je no_short_jump - cmp [value_type],0 - jne no_short_jump - cmp eax,80h - jb short_jump - cmp eax,-80h - jae short_jump - no_short_jump: - clc - ret - forced_short: - cmp [base_code],0E8h - je illegal_instruction - cmp [next_pass_needed],0 - jne jmp_short_value_type_ok - cmp [value_type],0 - jne invalid_use_of_symbol - jmp_short_value_type_ok: - cmp eax,-80h - jae short_jump - cmp eax,80h - jae jump_out_of_range - short_jump: - stc - ret - jump_out_of_range: - cmp [error_line],0 - jne instruction_assembled - mov eax,[current_line] - mov [error_line],eax - mov [error],relative_jump_out_of_range - jmp instruction_assembled - jmp_far: - cmp [jump_type],2 - je invalid_operand - cmp [code_type],64 - je illegal_instruction - mov al,[extended_code] - mov [base_code],al - call get_word_value - push eax - inc esi - lods byte [esi] - cmp al,'(' - jne invalid_operand - mov al,[value_type] - push eax [symbol_identifier] - cmp byte [esi],'.' - je invalid_value - mov al,[operand_size] - cmp al,4 - je jmp_far_16bit - cmp al,6 - je jmp_far_32bit - or al,al - jnz invalid_operand_size - cmp [code_type],16 - jne jmp_far_32bit - jmp_far_16bit: - call get_word_value - mov ebx,eax - call operand_16bit - call store_instruction_code - mov ax,bx - call mark_relocation - stos word [edi] - jmp_far_segment: - pop [symbol_identifier] eax - mov [value_type],al - pop eax - call mark_relocation - stos word [edi] - jmp instruction_assembled - jmp_far_32bit: - call get_dword_value - mov ebx,eax - call operand_32bit - call store_instruction_code - mov eax,ebx - call mark_relocation - stos dword [edi] - jmp jmp_far_segment -conditional_jump: - mov [base_code],al - lods byte [esi] - call get_jump_operator - cmp [jump_type],3 - je invalid_operand - call get_size_operator - cmp al,'(' - jne invalid_operand - cmp byte [esi],'.' - je invalid_value - mov al,[operand_size] - cmp al,2 - je conditional_jump_16bit - cmp al,4 - je conditional_jump_32bit - cmp al,8 - je conditional_jump_64bit - or al,al - jnz invalid_operand_size - cmp [code_type],16 - je conditional_jump_16bit - cmp [code_type],64 - je conditional_jump_64bit - conditional_jump_32bit: - cmp [code_type],64 - je invalid_operand_size - call get_address_dword_value - cmp [code_type],16 - jne conditional_jump_32bit_prefix_ok - mov byte [edi],66h - inc edi - conditional_jump_32bit_prefix_ok: - call calculate_jump_offset - cdq - call check_for_short_jump - jc conditional_jump_short - conditional_jump_32bit_store: - mov edx,eax - sub edx,4 - jno conditional_jump_32bit_range_ok - cmp [code_type],64 - je relative_jump_out_of_range - conditional_jump_32bit_range_ok: - mov ah,[base_code] - add ah,10h - mov al,0Fh - stos word [edi] - mov eax,edx - call mark_relocation - stos dword [edi] - jmp instruction_assembled - conditional_jump_64bit: - cmp [code_type],64 - jne invalid_operand_size - call get_address_qword_value - call calculate_jump_offset - mov ecx,edx - cdq - cmp edx,ecx - jne relative_jump_out_of_range - call check_for_short_jump - jnc conditional_jump_32bit_store - conditional_jump_short: - mov ah,al - mov al,[base_code] - stos word [edi] - jmp instruction_assembled - conditional_jump_16bit: - call get_address_word_value - cmp [code_type],16 - je conditional_jump_16bit_prefix_ok - mov byte [edi],66h - inc edi - conditional_jump_16bit_prefix_ok: - call calculate_jump_offset - cwde - cdq - call check_for_short_jump - jc conditional_jump_short - cmp [value_type],0 - jne invalid_use_of_symbol - mov edx,eax - sub dx,2 - mov ah,[base_code] - add ah,10h - mov al,0Fh - stos word [edi] - mov eax,edx - stos word [edi] - jmp instruction_assembled -loop_instruction_16bit: - cmp [code_type],64 - je illegal_instruction - cmp [code_type],16 - je loop_instruction - mov [operand_prefix],67h - jmp loop_instruction -loop_instruction_32bit: - cmp [code_type],32 - je loop_instruction - mov [operand_prefix],67h - jmp loop_instruction -loop_instruction_64bit: - cmp [code_type],64 - jne illegal_instruction -loop_instruction: - mov [base_code],al - lods byte [esi] - call get_jump_operator - cmp [jump_type],1 - ja invalid_operand - call get_size_operator - cmp al,'(' - jne invalid_operand - cmp byte [esi],'.' - je invalid_value - mov al,[operand_size] - cmp al,2 - je loop_jump_16bit - cmp al,4 - je loop_jump_32bit - cmp al,8 - je loop_jump_64bit - or al,al - jnz invalid_operand_size - cmp [code_type],16 - je loop_jump_16bit - cmp [code_type],64 - je loop_jump_64bit - loop_jump_32bit: - cmp [code_type],64 - je invalid_operand_size - call get_address_dword_value - cmp [code_type],16 - jne loop_jump_32bit_prefix_ok - mov byte [edi],66h - inc edi - loop_jump_32bit_prefix_ok: - call loop_counter_size - call calculate_jump_offset - cdq - make_loop_jump: - call check_for_short_jump - jc conditional_jump_short - scas word [edi] - jmp jump_out_of_range - loop_counter_size: - cmp [operand_prefix],0 - je loop_counter_size_ok - push eax - mov al,[operand_prefix] - stos byte [edi] - pop eax - loop_counter_size_ok: - ret - loop_jump_64bit: - cmp [code_type],64 - jne invalid_operand_size - call get_address_qword_value - call loop_counter_size - call calculate_jump_offset - mov ecx,edx - cdq - cmp edx,ecx - jne relative_jump_out_of_range - jmp make_loop_jump - loop_jump_16bit: - call get_address_word_value - cmp [code_type],16 - je loop_jump_16bit_prefix_ok - mov byte [edi],66h - inc edi - loop_jump_16bit_prefix_ok: - call loop_counter_size - call calculate_jump_offset - cwde - cdq - jmp make_loop_jump - -movs_instruction: - lods byte [esi] - call get_size_operator - cmp al,'[' - jne invalid_operand - call get_address - or eax,eax - jnz invalid_address - or bl,ch - jnz invalid_address - cmp [segment_register],1 - ja invalid_address - push ebx - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,'[' - jne invalid_operand - call get_address - pop edx - or eax,eax - jnz invalid_address - or bl,ch - jnz invalid_address - mov al,dh - mov ah,bh - shr al,4 - shr ah,4 - cmp al,ah - jne address_sizes_do_not_agree - and bh,111b - and dh,111b - cmp bh,6 - jne invalid_address - cmp dh,7 - jne invalid_address - cmp al,2 - je movs_address_16bit - cmp al,4 - je movs_address_32bit - cmp [code_type],64 - jne invalid_address_size - jmp movs_store - movs_address_32bit: - call address_32bit_prefix - jmp movs_store - movs_address_16bit: - cmp [code_type],64 - je invalid_address_size - call address_16bit_prefix - movs_store: - xor ebx,ebx - call store_segment_prefix_if_necessary - mov al,0A4h - movs_check_size: - mov bl,[operand_size] - cmp bl,1 - je simple_instruction - inc al - cmp bl,2 - je simple_instruction_16bit - cmp bl,4 - je simple_instruction_32bit - cmp bl,8 - je simple_instruction_64bit - or bl,bl - jnz invalid_operand_size - call recoverable_unknown_size - jmp simple_instruction -lods_instruction: - lods byte [esi] - call get_size_operator - cmp al,'[' - jne invalid_operand - call get_address - or eax,eax - jnz invalid_address - or bl,ch - jnz invalid_address - cmp bh,26h - je lods_address_16bit - cmp bh,46h - je lods_address_32bit - cmp bh,86h - jne invalid_address - cmp [code_type],64 - jne invalid_address_size - jmp lods_store - lods_address_32bit: - call address_32bit_prefix - jmp lods_store - lods_address_16bit: - cmp [code_type],64 - je invalid_address_size - call address_16bit_prefix - lods_store: - xor ebx,ebx - call store_segment_prefix_if_necessary - mov al,0ACh - jmp movs_check_size -stos_instruction: - mov [base_code],al - lods byte [esi] - call get_size_operator - cmp al,'[' - jne invalid_operand - call get_address - or eax,eax - jnz invalid_address - or bl,ch - jnz invalid_address - cmp bh,27h - je stos_address_16bit - cmp bh,47h - je stos_address_32bit - cmp bh,87h - jne invalid_address - cmp [code_type],64 - jne invalid_address_size - jmp stos_store - stos_address_32bit: - call address_32bit_prefix - jmp stos_store - stos_address_16bit: - cmp [code_type],64 - je invalid_address_size - call address_16bit_prefix - stos_store: - cmp [segment_register],1 - ja invalid_address - mov al,[base_code] - jmp movs_check_size -cmps_instruction: - lods byte [esi] - call get_size_operator - cmp al,'[' - jne invalid_operand - call get_address - or eax,eax - jnz invalid_address - or bl,ch - jnz invalid_address - mov al,[segment_register] - push eax ebx - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,'[' - jne invalid_operand - call get_address - or eax,eax - jnz invalid_address - or bl,ch - jnz invalid_address - pop edx eax - cmp [segment_register],1 - ja invalid_address - mov [segment_register],al - mov al,dh - mov ah,bh - shr al,4 - shr ah,4 - cmp al,ah - jne address_sizes_do_not_agree - and bh,111b - and dh,111b - cmp bh,7 - jne invalid_address - cmp dh,6 - jne invalid_address - cmp al,2 - je cmps_address_16bit - cmp al,4 - je cmps_address_32bit - cmp [code_type],64 - jne invalid_address_size - jmp cmps_store - cmps_address_32bit: - call address_32bit_prefix - jmp cmps_store - cmps_address_16bit: - cmp [code_type],64 - je invalid_address_size - call address_16bit_prefix - cmps_store: - xor ebx,ebx - call store_segment_prefix_if_necessary - mov al,0A6h - jmp movs_check_size -ins_instruction: - lods byte [esi] - call get_size_operator - cmp al,'[' - jne invalid_operand - call get_address - or eax,eax - jnz invalid_address - or bl,ch - jnz invalid_address - cmp bh,27h - je ins_address_16bit - cmp bh,47h - je ins_address_32bit - cmp bh,87h - jne invalid_address - cmp [code_type],64 - jne invalid_address_size - jmp ins_store - ins_address_32bit: - call address_32bit_prefix - jmp ins_store - ins_address_16bit: - cmp [code_type],64 - je invalid_address_size - call address_16bit_prefix - ins_store: - cmp [segment_register],1 - ja invalid_address - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - cmp al,10h - jne invalid_operand - lods byte [esi] - cmp al,22h - jne invalid_operand - mov al,6Ch - ins_check_size: - cmp [operand_size],8 - jne movs_check_size - jmp invalid_operand_size -outs_instruction: - lods byte [esi] - cmp al,10h - jne invalid_operand - lods byte [esi] - cmp al,22h - jne invalid_operand - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,'[' - jne invalid_operand - call get_address - or eax,eax - jnz invalid_address - or bl,ch - jnz invalid_address - cmp bh,26h - je outs_address_16bit - cmp bh,46h - je outs_address_32bit - cmp bh,86h - jne invalid_address - cmp [code_type],64 - jne invalid_address_size - jmp outs_store - outs_address_32bit: - call address_32bit_prefix - jmp outs_store - outs_address_16bit: - cmp [code_type],64 - je invalid_address_size - call address_16bit_prefix - outs_store: - xor ebx,ebx - call store_segment_prefix_if_necessary - mov al,6Eh - jmp ins_check_size -xlat_instruction: - lods byte [esi] - call get_size_operator - cmp al,'[' - jne invalid_operand - call get_address - or eax,eax - jnz invalid_address - or bl,ch - jnz invalid_address - cmp bh,23h - je xlat_address_16bit - cmp bh,43h - je xlat_address_32bit - cmp bh,83h - jne invalid_address - cmp [code_type],64 - jne invalid_address_size - jmp xlat_store - xlat_address_32bit: - call address_32bit_prefix - jmp xlat_store - xlat_address_16bit: - cmp [code_type],64 - je invalid_address_size - call address_16bit_prefix - xlat_store: - call store_segment_prefix_if_necessary - mov al,0D7h - cmp [operand_size],1 - jbe simple_instruction - jmp invalid_operand_size - -pm_word_instruction: - mov ah,al - shr ah,4 - and al,111b - mov [base_code],0Fh - mov [extended_code],ah - mov [postbyte_register],al - lods byte [esi] - call get_size_operator - cmp al,10h - je pm_reg - pm_mem: - cmp al,'[' - jne invalid_operand - call get_address - mov al,[operand_size] - cmp al,2 - je pm_mem_store - or al,al - jnz invalid_operand_size - pm_mem_store: - jmp instruction_ready - pm_reg: - lods byte [esi] - call convert_register - mov bl,al - cmp ah,2 - jne invalid_operand_size - jmp nomem_instruction_ready -pm_store_word_instruction: - mov ah,al - shr ah,4 - and al,111b - mov [base_code],0Fh - mov [extended_code],ah - mov [postbyte_register],al - lods byte [esi] - call get_size_operator - cmp al,10h - jne pm_mem - lods byte [esi] - call convert_register - mov bl,al - mov al,ah - call operand_autodetect - jmp nomem_instruction_ready -lgdt_instruction: - mov [base_code],0Fh - mov [extended_code],1 - mov [postbyte_register],al - lods byte [esi] - call get_size_operator - cmp al,'[' - jne invalid_operand - call get_address - mov al,[operand_size] - cmp al,6 - je lgdt_mem_48bit - cmp al,10 - je lgdt_mem_80bit - or al,al - jnz invalid_operand_size - jmp lgdt_mem_store - lgdt_mem_80bit: - cmp [code_type],64 - jne illegal_instruction - jmp lgdt_mem_store - lgdt_mem_48bit: - cmp [code_type],64 - je illegal_instruction - cmp [postbyte_register],2 - jb lgdt_mem_store - call operand_32bit - lgdt_mem_store: - jmp instruction_ready -lar_instruction: - mov [extended_code],al - mov [base_code],0Fh - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_register - mov [postbyte_register],al - lods byte [esi] - cmp al,',' - jne invalid_operand - xor al,al - xchg al,[operand_size] - call operand_autodetect - lods byte [esi] - call get_size_operator - cmp al,10h - je lar_reg_reg - cmp al,'[' - jne invalid_operand - call get_address - mov al,[operand_size] - or al,al - jz lar_reg_mem - cmp al,2 - jne invalid_operand_size - lar_reg_mem: - jmp instruction_ready - lar_reg_reg: - lods byte [esi] - call convert_register - cmp ah,2 - jne invalid_operand_size - mov bl,al - jmp nomem_instruction_ready -invlpg_instruction: - mov [base_code],0Fh - mov [extended_code],1 - mov [postbyte_register],7 - lods byte [esi] - call get_size_operator - cmp al,'[' - jne invalid_operand - call get_address - jmp instruction_ready -swapgs_instruction: - cmp [code_type],64 - jne illegal_instruction -rdtscp_instruction: - mov [base_code],0Fh - mov [extended_code],1 - mov [postbyte_register],7 - mov bl,al - jmp nomem_instruction_ready - -basic_486_instruction: - mov [base_code],0Fh - mov [extended_code],al - lods byte [esi] - call get_size_operator - cmp al,10h - je basic_486_reg - cmp al,'[' - jne invalid_operand - call get_address - push edx ebx ecx - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_register - mov [postbyte_register],al - pop ecx ebx edx - mov al,ah - cmp al,1 - je basic_486_mem_reg_8bit - call operand_autodetect - inc [extended_code] - basic_486_mem_reg_8bit: - jmp instruction_ready - basic_486_reg: - lods byte [esi] - call convert_register - mov [postbyte_register],al - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_register - mov bl,[postbyte_register] - mov [postbyte_register],al - mov al,ah - cmp al,1 - je basic_486_reg_reg_8bit - call operand_autodetect - inc [extended_code] - basic_486_reg_reg_8bit: - jmp nomem_instruction_ready -bswap_instruction: - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_register - test al,1000b - jz bswap_reg_code_ok - or [rex_prefix],41h - and al,111b - bswap_reg_code_ok: - add al,0C8h - mov [extended_code],al - mov [base_code],0Fh - cmp ah,8 - je bswap_reg64 - cmp ah,4 - jne invalid_operand_size - call operand_32bit - call store_instruction_code - jmp instruction_assembled - bswap_reg64: - call operand_64bit - call store_instruction_code - jmp instruction_assembled -cmpxchgx_instruction: - mov [base_code],0Fh - mov [extended_code],0C7h - mov [postbyte_register],al - lods byte [esi] - call get_size_operator - cmp al,'[' - jne invalid_operand - call get_address - mov ah,1 - xchg [postbyte_register],ah - mov al,[operand_size] - or al,al - jz cmpxchgx_size_ok - cmp al,ah - jne invalid_operand_size - cmpxchgx_size_ok: - cmp ah,16 - jne cmpxchgx_store - call operand_64bit - cmpxchgx_store: - jmp instruction_ready -nop_instruction: - mov ah,[esi] - cmp ah,10h - je extended_nop - cmp ah,11h - je extended_nop - cmp ah,'[' - je extended_nop - stos byte [edi] - jmp instruction_assembled - extended_nop: - mov [base_code],0Fh - mov [extended_code],1Fh - mov [postbyte_register],0 - lods byte [esi] - call get_size_operator - cmp al,10h - je extended_nop_reg - cmp al,'[' - jne invalid_operand - call get_address - mov al,[operand_size] - or al,al - jz extended_nop_store - call operand_autodetect - extended_nop_store: - jmp instruction_ready - extended_nop_reg: - lods byte [esi] - call convert_register - mov bl,al - mov al,ah - call operand_autodetect - jmp nomem_instruction_ready - -basic_fpu_instruction: - mov [postbyte_register],al - mov [base_code],0D8h - lods byte [esi] - call get_size_operator - cmp al,10h - je basic_fpu_streg - cmp al,'[' - je basic_fpu_mem - dec esi - mov ah,[postbyte_register] - cmp ah,2 - jb invalid_operand - cmp ah,3 - ja invalid_operand - mov bl,1 - jmp nomem_instruction_ready - basic_fpu_mem: - call get_address - mov al,[operand_size] - cmp al,4 - je basic_fpu_mem_32bit - cmp al,8 - je basic_fpu_mem_64bit - or al,al - jnz invalid_operand_size - call recoverable_unknown_size - basic_fpu_mem_32bit: - jmp instruction_ready - basic_fpu_mem_64bit: - mov [base_code],0DCh - jmp instruction_ready - basic_fpu_streg: - lods byte [esi] - call convert_fpu_register - mov bl,al - mov ah,[postbyte_register] - cmp ah,2 - je basic_fpu_single_streg - cmp ah,3 - je basic_fpu_single_streg - or al,al - jz basic_fpu_st0 - test ah,110b - jz basic_fpu_streg_st0 - xor [postbyte_register],1 - basic_fpu_streg_st0: - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_fpu_register - or al,al - jnz invalid_operand - mov [base_code],0DCh - jmp nomem_instruction_ready - basic_fpu_st0: - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_fpu_register - mov bl,al - basic_fpu_single_streg: - mov [base_code],0D8h - jmp nomem_instruction_ready -simple_fpu_instruction: - mov ah,al - or ah,11000000b - mov al,0D9h - stos word [edi] - jmp instruction_assembled -fi_instruction: - mov [postbyte_register],al - lods byte [esi] - call get_size_operator - cmp al,'[' - jne invalid_operand - call get_address - mov al,[operand_size] - cmp al,2 - je fi_mem_16bit - cmp al,4 - je fi_mem_32bit - or al,al - jnz invalid_operand_size - call recoverable_unknown_size - fi_mem_32bit: - mov [base_code],0DAh - jmp instruction_ready - fi_mem_16bit: - mov [base_code],0DEh - jmp instruction_ready -fld_instruction: - mov [postbyte_register],al - lods byte [esi] - call get_size_operator - cmp al,10h - je fld_streg - cmp al,'[' - jne invalid_operand - call get_address - mov al,[operand_size] - cmp al,4 - je fld_mem_32bit - cmp al,8 - je fld_mem_64bit - cmp al,10 - je fld_mem_80bit - or al,al - jnz invalid_operand_size - call recoverable_unknown_size - fld_mem_32bit: - mov [base_code],0D9h - jmp instruction_ready - fld_mem_64bit: - mov [base_code],0DDh - jmp instruction_ready - fld_mem_80bit: - mov al,[postbyte_register] - cmp al,0 - je fld_mem_80bit_store - dec [postbyte_register] - cmp al,3 - je fld_mem_80bit_store - jmp invalid_operand_size - fld_mem_80bit_store: - add [postbyte_register],5 - mov [base_code],0DBh - jmp instruction_ready - fld_streg: - lods byte [esi] - call convert_fpu_register - mov bl,al - cmp [postbyte_register],2 - jae fst_streg - mov [base_code],0D9h - jmp nomem_instruction_ready - fst_streg: - mov [base_code],0DDh - jmp nomem_instruction_ready -fild_instruction: - mov [postbyte_register],al - lods byte [esi] - call get_size_operator - cmp al,'[' - jne invalid_operand - call get_address - mov al,[operand_size] - cmp al,2 - je fild_mem_16bit - cmp al,4 - je fild_mem_32bit - cmp al,8 - je fild_mem_64bit - or al,al - jnz invalid_operand_size - call recoverable_unknown_size - fild_mem_32bit: - mov [base_code],0DBh - jmp instruction_ready - fild_mem_16bit: - mov [base_code],0DFh - jmp instruction_ready - fild_mem_64bit: - mov al,[postbyte_register] - cmp al,1 - je fisttp_64bit_store - jb fild_mem_64bit_store - dec [postbyte_register] - cmp al,3 - je fild_mem_64bit_store - jmp invalid_operand_size - fild_mem_64bit_store: - add [postbyte_register],5 - mov [base_code],0DFh - jmp instruction_ready - fisttp_64bit_store: - mov [base_code],0DDh - jmp instruction_ready -fbld_instruction: - mov [postbyte_register],al - lods byte [esi] - call get_size_operator - cmp al,'[' - jne invalid_operand - call get_address - mov al,[operand_size] - or al,al - jz fbld_mem_80bit - cmp al,10 - je fbld_mem_80bit - jmp invalid_operand_size - fbld_mem_80bit: - mov [base_code],0DFh - jmp instruction_ready -faddp_instruction: - mov [postbyte_register],al - mov [base_code],0DEh - mov edx,esi - lods byte [esi] - call get_size_operator - cmp al,10h - je faddp_streg - mov esi,edx - mov bl,1 - jmp nomem_instruction_ready - faddp_streg: - lods byte [esi] - call convert_fpu_register - mov bl,al - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_fpu_register - or al,al - jnz invalid_operand - jmp nomem_instruction_ready -fcompp_instruction: - mov ax,0D9DEh - stos word [edi] - jmp instruction_assembled -fucompp_instruction: - mov ax,0E9DAh - stos word [edi] - jmp instruction_assembled -fxch_instruction: - mov dx,01D9h - jmp fpu_single_operand -ffreep_instruction: - mov dx,00DFh - jmp fpu_single_operand -ffree_instruction: - mov dl,0DDh - mov dh,al - fpu_single_operand: - mov ebx,esi - lods byte [esi] - call get_size_operator - cmp al,10h - je fpu_streg - or dh,dh - jz invalid_operand - mov esi,ebx - shl dh,3 - or dh,11000001b - mov ax,dx - stos word [edi] - jmp instruction_assembled - fpu_streg: - lods byte [esi] - call convert_fpu_register - shl dh,3 - or dh,al - or dh,11000000b - mov ax,dx - stos word [edi] - jmp instruction_assembled - -fstenv_instruction: - mov byte [edi],9Bh - inc edi -fldenv_instruction: - mov [base_code],0D9h - jmp fpu_mem -fstenv_instruction_16bit: - mov byte [edi],9Bh - inc edi -fldenv_instruction_16bit: - call operand_16bit - jmp fldenv_instruction -fstenv_instruction_32bit: - mov byte [edi],9Bh - inc edi -fldenv_instruction_32bit: - call operand_32bit - jmp fldenv_instruction -fsave_instruction_32bit: - mov byte [edi],9Bh - inc edi -fnsave_instruction_32bit: - call operand_32bit - jmp fnsave_instruction -fsave_instruction_16bit: - mov byte [edi],9Bh - inc edi -fnsave_instruction_16bit: - call operand_16bit - jmp fnsave_instruction -fsave_instruction: - mov byte [edi],9Bh - inc edi -fnsave_instruction: - mov [base_code],0DDh - fpu_mem: - mov [postbyte_register],al - lods byte [esi] - call get_size_operator - cmp al,'[' - jne invalid_operand - call get_address - cmp [operand_size],0 - jne invalid_operand_size - jmp instruction_ready -fstcw_instruction: - mov byte [edi],9Bh - inc edi -fldcw_instruction: - mov [postbyte_register],al - mov [base_code],0D9h - lods byte [esi] - call get_size_operator - cmp al,'[' - jne invalid_operand - call get_address - mov al,[operand_size] - or al,al - jz fldcw_mem_16bit - cmp al,2 - je fldcw_mem_16bit - jmp invalid_operand_size - fldcw_mem_16bit: - jmp instruction_ready -fstsw_instruction: - mov al,9Bh - stos byte [edi] -fnstsw_instruction: - mov [base_code],0DDh - mov [postbyte_register],7 - lods byte [esi] - call get_size_operator - cmp al,10h - je fstsw_reg - cmp al,'[' - jne invalid_operand - call get_address - mov al,[operand_size] - or al,al - jz fstsw_mem_16bit - cmp al,2 - je fstsw_mem_16bit - jmp invalid_operand_size - fstsw_mem_16bit: - jmp instruction_ready - fstsw_reg: - lods byte [esi] - call convert_register - cmp ax,0200h - jne invalid_operand - mov ax,0E0DFh - stos word [edi] - jmp instruction_assembled -finit_instruction: - mov byte [edi],9Bh - inc edi -fninit_instruction: - mov ah,al - mov al,0DBh - stos word [edi] - jmp instruction_assembled -fcmov_instruction: - mov dh,0DAh - jmp fcomi_streg -fcomi_instruction: - mov dh,0DBh - jmp fcomi_streg -fcomip_instruction: - mov dh,0DFh - fcomi_streg: - mov dl,al - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_fpu_register - mov ah,al - cmp byte [esi],',' - je fcomi_st0_streg - add ah,dl - mov al,dh - stos word [edi] - jmp instruction_assembled - fcomi_st0_streg: - or ah,ah - jnz invalid_operand - inc esi - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_fpu_register - mov ah,al - add ah,dl - mov al,dh - stos word [edi] - jmp instruction_assembled - -basic_mmx_instruction: - mov [base_code],0Fh - mov [extended_code],al - mmx_instruction: - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_mmx_register - call make_mmx_prefix - mov [postbyte_register],al - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,10h - je mmx_mmreg_mmreg - cmp al,'[' - jne invalid_operand - mmx_mmreg_mem: - call get_address - jmp instruction_ready - mmx_mmreg_mmreg: - lods byte [esi] - call convert_mmx_register - mov bl,al - jmp nomem_instruction_ready -mmx_bit_shift_instruction: - mov [base_code],0Fh - mov [extended_code],al - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_mmx_register - call make_mmx_prefix - mov [postbyte_register],al - lods byte [esi] - cmp al,',' - jne invalid_operand - mov [operand_size],0 - lods byte [esi] - call get_size_operator - cmp al,10h - je mmx_mmreg_mmreg - cmp al,'(' - je mmx_ps_mmreg_imm8 - cmp al,'[' - je mmx_mmreg_mem - jmp invalid_operand - mmx_ps_mmreg_imm8: - call get_byte_value - mov byte [value],al - test [operand_size],not 1 - jnz invalid_value - mov bl,[extended_code] - mov al,bl - shr bl,4 - and al,1111b - add al,70h - mov [extended_code],al - sub bl,0Ch - shl bl,1 - xchg bl,[postbyte_register] - call store_nomem_instruction - mov al,byte [value] - stos byte [edi] - jmp instruction_assembled -pmovmskb_instruction: - mov [base_code],0Fh - mov [extended_code],al - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_register - cmp ah,4 - je pmovmskb_reg_size_ok - cmp [code_type],64 - jne invalid_operand_size - cmp ah,8 - jnz invalid_operand_size - pmovmskb_reg_size_ok: - mov [postbyte_register],al - mov [operand_size],0 - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_mmx_register - mov bl,al - call make_mmx_prefix - cmp [extended_code],0C5h - je mmx_nomem_imm8 - jmp nomem_instruction_ready - mmx_imm8: - push ebx ecx edx - xor cl,cl - xchg cl,[operand_size] - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - test ah,not 1 - jnz invalid_operand_size - mov [operand_size],cl - cmp al,'(' - jne invalid_operand - call get_byte_value - mov byte [value],al - pop edx ecx ebx - call store_instruction_with_imm8 - jmp instruction_assembled - mmx_nomem_imm8: - call store_nomem_instruction - call append_imm8 - jmp instruction_assembled - append_imm8: - mov [operand_size],0 - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - test ah,not 1 - jnz invalid_operand_size - cmp al,'(' - jne invalid_operand - call get_byte_value - stosb - ret -pinsrw_instruction: - mov [extended_code],al - mov [base_code],0Fh - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_mmx_register - call make_mmx_prefix - mov [postbyte_register],al - mov [operand_size],0 - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,10h - je pinsrw_mmreg_reg - cmp al,'[' - jne invalid_operand - call get_address - cmp [operand_size],0 - je mmx_imm8 - cmp [operand_size],2 - jne invalid_operand_size - jmp mmx_imm8 - pinsrw_mmreg_reg: - lods byte [esi] - call convert_register - cmp ah,4 - jne invalid_operand_size - mov bl,al - jmp mmx_nomem_imm8 -pshufw_instruction: - mov [mmx_size],8 - mov [opcode_prefix],al - jmp pshuf_instruction -pshufd_instruction: - mov [mmx_size],16 - mov [opcode_prefix],al - pshuf_instruction: - mov [base_code],0Fh - mov [extended_code],70h - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_mmx_register - cmp ah,[mmx_size] - jne invalid_operand_size - mov [postbyte_register],al - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,10h - je pshuf_mmreg_mmreg - cmp al,'[' - jne invalid_operand - call get_address - jmp mmx_imm8 - pshuf_mmreg_mmreg: - lods byte [esi] - call convert_mmx_register - mov bl,al - jmp mmx_nomem_imm8 -movd_instruction: - mov [base_code],0Fh - mov [extended_code],7Eh - lods byte [esi] - call get_size_operator - cmp al,10h - je movd_reg - cmp al,'[' - jne invalid_operand - call get_address - test [operand_size],not 4 - jnz invalid_operand_size - mov [operand_size],0 - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_mmx_register - call make_mmx_prefix - mov [postbyte_register],al - jmp instruction_ready - movd_reg: - lods byte [esi] - cmp al,0B0h - jae movd_mmreg - call convert_register - cmp ah,4 - jne invalid_operand_size - mov [operand_size],0 - mov bl,al - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_mmx_register - mov [postbyte_register],al - call make_mmx_prefix - jmp nomem_instruction_ready - movd_mmreg: - mov [extended_code],6Eh - call convert_mmx_register - call make_mmx_prefix - mov [postbyte_register],al - mov [operand_size],0 - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,10h - je movd_mmreg_reg - cmp al,'[' - jne invalid_operand - call get_address - test [operand_size],not 4 - jnz invalid_operand_size - jmp instruction_ready - movd_mmreg_reg: - lods byte [esi] - call convert_register - cmp ah,4 - jne invalid_operand_size - mov bl,al - jmp nomem_instruction_ready - make_mmx_prefix: - cmp [vex_required],0 - jne mmx_prefix_for_vex - cmp [operand_size],16 - jne no_mmx_prefix - mov [operand_prefix],66h - no_mmx_prefix: - ret - mmx_prefix_for_vex: - cmp [operand_size],16 - jne invalid_operand - mov [opcode_prefix],66h - ret -movq_instruction: - mov [base_code],0Fh - lods byte [esi] - call get_size_operator - cmp al,10h - je movq_reg - cmp al,'[' - jne invalid_operand - call get_address - test [operand_size],not 8 - jnz invalid_operand_size - mov [operand_size],0 - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_mmx_register - mov [postbyte_register],al - cmp ah,16 - je movq_mem_xmmreg - mov [extended_code],7Fh - jmp instruction_ready - movq_mem_xmmreg: - mov [extended_code],0D6h - mov [opcode_prefix],66h - jmp instruction_ready - movq_reg: - lods byte [esi] - cmp al,0B0h - jae movq_mmreg - call convert_register - cmp ah,8 - jne invalid_operand_size - mov bl,al - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - mov [operand_size],0 - lods byte [esi] - call convert_mmx_register - mov [postbyte_register],al - call make_mmx_prefix - mov [extended_code],7Eh - call operand_64bit - jmp nomem_instruction_ready - movq_mmreg: - call convert_mmx_register - mov [postbyte_register],al - mov [extended_code],6Fh - mov [mmx_size],ah - cmp ah,16 - jne movq_mmreg_ - mov [extended_code],7Eh - mov [opcode_prefix],0F3h - movq_mmreg_: - lods byte [esi] - cmp al,',' - jne invalid_operand - mov [operand_size],0 - lods byte [esi] - call get_size_operator - cmp al,10h - je movq_mmreg_reg - call get_address - test [operand_size],not 8 - jnz invalid_operand_size - jmp instruction_ready - movq_mmreg_reg: - lods byte [esi] - cmp al,0B0h - jae movq_mmreg_mmreg - mov [operand_size],0 - call convert_register - cmp ah,8 - jne invalid_operand_size - mov [extended_code],6Eh - mov [opcode_prefix],0 - mov bl,al - cmp [mmx_size],16 - jne movq_mmreg_reg_store - mov [opcode_prefix],66h - movq_mmreg_reg_store: - call operand_64bit - jmp nomem_instruction_ready - movq_mmreg_mmreg: - call convert_mmx_register - cmp ah,[mmx_size] - jne invalid_operand_size - mov bl,al - jmp nomem_instruction_ready -movdq_instruction: - mov [opcode_prefix],al - mov [base_code],0Fh - mov [extended_code],6Fh - lods byte [esi] - call get_size_operator - cmp al,10h - je movdq_mmreg - cmp al,'[' - jne invalid_operand - call get_address - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_xmm_register - mov [postbyte_register],al - mov [extended_code],7Fh - jmp instruction_ready - movdq_mmreg: - lods byte [esi] - call convert_xmm_register - mov [postbyte_register],al - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,10h - je movdq_mmreg_mmreg - cmp al,'[' - jne invalid_operand - call get_address - jmp instruction_ready - movdq_mmreg_mmreg: - lods byte [esi] - call convert_xmm_register - mov bl,al - jmp nomem_instruction_ready -lddqu_instruction: - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_xmm_register - push eax - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,'[' - jne invalid_operand - call get_address - pop eax - mov [postbyte_register],al - mov [opcode_prefix],0F2h - mov [base_code],0Fh - mov [extended_code],0F0h - jmp instruction_ready - -movdq2q_instruction: - mov [opcode_prefix],0F2h - mov [mmx_size],8 - jmp movq2dq_ -movq2dq_instruction: - mov [opcode_prefix],0F3h - mov [mmx_size],16 - movq2dq_: - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_mmx_register - cmp ah,[mmx_size] - jne invalid_operand_size - mov [postbyte_register],al - mov [operand_size],0 - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_mmx_register - xor [mmx_size],8+16 - cmp ah,[mmx_size] - jne invalid_operand_size - mov bl,al - mov [base_code],0Fh - mov [extended_code],0D6h - jmp nomem_instruction_ready - -sse_ps_instruction_imm8: - mov [immediate_size],1 -sse_ps_instruction: - mov [mmx_size],16 - jmp sse_instruction -sse_pd_instruction_imm8: - mov [immediate_size],1 -sse_pd_instruction: - mov [mmx_size],16 - mov [opcode_prefix],66h - jmp sse_instruction -sse_ss_instruction: - mov [mmx_size],4 - mov [opcode_prefix],0F3h - jmp sse_instruction -sse_sd_instruction: - mov [mmx_size],8 - mov [opcode_prefix],0F2h - jmp sse_instruction -cmp_pd_instruction: - mov [opcode_prefix],66h -cmp_ps_instruction: - mov [mmx_size],16 - mov byte [value],al - mov al,0C2h - jmp sse_instruction -cmp_ss_instruction: - mov [mmx_size],4 - mov [opcode_prefix],0F3h - jmp cmp_sx_instruction -cmpsd_instruction: - mov al,0A7h - mov ah,[esi] - or ah,ah - jz simple_instruction_32bit - cmp ah,0Fh - je simple_instruction_32bit - mov al,-1 -cmp_sd_instruction: - mov [mmx_size],8 - mov [opcode_prefix],0F2h - cmp_sx_instruction: - mov byte [value],al - mov al,0C2h - jmp sse_instruction -comiss_instruction: - mov [mmx_size],4 - jmp sse_instruction -comisd_instruction: - mov [mmx_size],8 - mov [opcode_prefix],66h - jmp sse_instruction -cvtdq2pd_instruction: - mov [opcode_prefix],0F3h -cvtps2pd_instruction: - mov [mmx_size],8 - jmp sse_instruction -cvtpd2dq_instruction: - mov [mmx_size],16 - mov [opcode_prefix],0F2h - jmp sse_instruction -movshdup_instruction: - mov [mmx_size],16 - mov [opcode_prefix],0F3h -sse_instruction: - mov [base_code],0Fh - mov [extended_code],al - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - sse_xmmreg: - lods byte [esi] - call convert_xmm_register - sse_reg: - mov [postbyte_register],al - mov [operand_size],0 - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,10h - je sse_xmmreg_xmmreg - sse_reg_mem: - cmp al,'[' - jne invalid_operand - call get_address - cmp [operand_size],0 - je sse_mem_size_ok - mov al,[mmx_size] - cmp [operand_size],al - jne invalid_operand_size - sse_mem_size_ok: - mov al,[extended_code] - mov ah,[supplemental_code] - cmp al,0C2h - je sse_cmp_mem_ok - cmp ax,443Ah - je sse_cmp_mem_ok - cmp [immediate_size],1 - je mmx_imm8 - cmp [immediate_size],-1 - jne sse_ok - call take_additional_xmm0 - mov [immediate_size],0 - sse_ok: - jmp instruction_ready - sse_cmp_mem_ok: - cmp byte [value],-1 - je mmx_imm8 - call store_instruction_with_imm8 - jmp instruction_assembled - sse_xmmreg_xmmreg: - cmp [operand_prefix],66h - jne sse_xmmreg_xmmreg_ok - cmp [extended_code],12h - je invalid_operand - cmp [extended_code],16h - je invalid_operand - sse_xmmreg_xmmreg_ok: - lods byte [esi] - call convert_xmm_register - mov bl,al - mov al,[extended_code] - mov ah,[supplemental_code] - cmp al,0C2h - je sse_cmp_nomem_ok - cmp ax,443Ah - je sse_cmp_nomem_ok - cmp [immediate_size],1 - je mmx_nomem_imm8 - cmp [immediate_size],-1 - jne sse_nomem_ok - call take_additional_xmm0 - mov [immediate_size],0 - sse_nomem_ok: - jmp nomem_instruction_ready - sse_cmp_nomem_ok: - cmp byte [value],-1 - je mmx_nomem_imm8 - call store_nomem_instruction - mov al,byte [value] - stosb - jmp instruction_assembled - take_additional_xmm0: - cmp byte [esi],',' - jne additional_xmm0_ok - inc esi - lods byte [esi] - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_xmm_register - test al,al - jnz invalid_operand - additional_xmm0_ok: - ret - -pslldq_instruction: - mov [postbyte_register],al - mov [opcode_prefix],66h - mov [base_code],0Fh - mov [extended_code],73h - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_xmm_register - mov bl,al - jmp mmx_nomem_imm8 -movpd_instruction: - mov [opcode_prefix],66h -movps_instruction: - mov [base_code],0Fh - mov [extended_code],al - mov [mmx_size],16 - jmp sse_mov_instruction -movss_instruction: - mov [mmx_size],4 - mov [opcode_prefix],0F3h - jmp sse_movs -movsd_instruction: - mov al,0A5h - mov ah,[esi] - or ah,ah - jz simple_instruction_32bit - cmp ah,0Fh - je simple_instruction_32bit - mov [mmx_size],8 - mov [opcode_prefix],0F2h - sse_movs: - mov [base_code],0Fh - mov [extended_code],10h - jmp sse_mov_instruction -sse_mov_instruction: - lods byte [esi] - call get_size_operator - cmp al,10h - je sse_xmmreg - sse_mem: - cmp al,'[' - jne invalid_operand - inc [extended_code] - call get_address - cmp [operand_size],0 - je sse_mem_xmmreg - mov al,[mmx_size] - cmp [operand_size],al - jne invalid_operand_size - mov [operand_size],0 - sse_mem_xmmreg: - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_xmm_register - mov [postbyte_register],al - jmp instruction_ready -movlpd_instruction: - mov [opcode_prefix],66h -movlps_instruction: - mov [base_code],0Fh - mov [extended_code],al - mov [mmx_size],8 - lods byte [esi] - call get_size_operator - cmp al,10h - jne sse_mem - lods byte [esi] - call convert_xmm_register - mov [postbyte_register],al - mov [operand_size],0 - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - jmp sse_reg_mem -movhlps_instruction: - mov [base_code],0Fh - mov [extended_code],al - mov [mmx_size],0 - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_xmm_register - mov [postbyte_register],al - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,10h - je sse_xmmreg_xmmreg_ok - jmp invalid_operand -maskmovq_instruction: - mov cl,8 - jmp maskmov_instruction -maskmovdqu_instruction: - mov cl,16 - mov [opcode_prefix],66h - maskmov_instruction: - mov [base_code],0Fh - mov [extended_code],0F7h - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_mmx_register - cmp ah,cl - jne invalid_operand_size - mov [postbyte_register],al - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_mmx_register - mov bl,al - jmp nomem_instruction_ready -movmskpd_instruction: - mov [opcode_prefix],66h -movmskps_instruction: - mov [base_code],0Fh - mov [extended_code],50h - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_register - mov [postbyte_register],al - cmp ah,4 - je movmskps_reg_ok - cmp ah,8 - jne invalid_operand_size - cmp [code_type],64 - jne invalid_operand - movmskps_reg_ok: - mov [operand_size],0 - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,10h - je sse_xmmreg_xmmreg_ok - jmp invalid_operand - -cvtpi2pd_instruction: - mov [opcode_prefix],66h -cvtpi2ps_instruction: - mov [base_code],0Fh - mov [extended_code],al - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_xmm_register - mov [postbyte_register],al - mov [operand_size],0 - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,10h - je cvtpi_xmmreg_xmmreg - cmp al,'[' - jne invalid_operand - call get_address - cmp [operand_size],0 - je cvtpi_size_ok - cmp [operand_size],8 - jne invalid_operand_size - cvtpi_size_ok: - jmp instruction_ready - cvtpi_xmmreg_xmmreg: - lods byte [esi] - call convert_mmx_register - cmp ah,8 - jne invalid_operand_size - mov bl,al - jmp nomem_instruction_ready -cvtsi2ss_instruction: - mov [opcode_prefix],0F3h - jmp cvtsi_instruction -cvtsi2sd_instruction: - mov [opcode_prefix],0F2h - cvtsi_instruction: - mov [base_code],0Fh - mov [extended_code],al - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_xmm_register - mov [postbyte_register],al - cvtsi_xmmreg: - mov [operand_size],0 - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,10h - je cvtsi_xmmreg_reg - cmp al,'[' - jne invalid_operand - call get_address - cmp [operand_size],0 - je cvtsi_size_ok - cmp [operand_size],4 - je cvtsi_size_ok - cmp [operand_size],8 - jne invalid_operand_size - call operand_64bit - cvtsi_size_ok: - jmp instruction_ready - cvtsi_xmmreg_reg: - lods byte [esi] - call convert_register - cmp ah,4 - je cvtsi_xmmreg_reg_store - cmp ah,8 - jne invalid_operand_size - call operand_64bit - cvtsi_xmmreg_reg_store: - mov bl,al - jmp nomem_instruction_ready -cvtps2pi_instruction: - mov [mmx_size],8 - jmp cvtpd_instruction -cvtpd2pi_instruction: - mov [opcode_prefix],66h - mov [mmx_size],16 - cvtpd_instruction: - mov [base_code],0Fh - mov [extended_code],al - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_mmx_register - cmp ah,8 - jne invalid_operand_size - mov [operand_size],0 - jmp sse_reg -cvtss2si_instruction: - mov [opcode_prefix],0F3h - mov [mmx_size],4 - jmp cvt2si_instruction -cvtsd2si_instruction: - mov [opcode_prefix],0F2h - mov [mmx_size],8 - cvt2si_instruction: - mov [extended_code],al - mov [base_code],0Fh - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_register - mov [operand_size],0 - cmp ah,4 - je sse_reg - cmp ah,8 - jne invalid_operand_size - call operand_64bit - jmp sse_reg - -ssse3_instruction: - mov [base_code],0Fh - mov [extended_code],38h - mov [supplemental_code],al - jmp mmx_instruction -palignr_instruction: - mov [base_code],0Fh - mov [extended_code],3Ah - mov [supplemental_code],0Fh - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_mmx_register - call make_mmx_prefix - mov [postbyte_register],al - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,10h - je palignr_mmreg_mmreg - cmp al,'[' - jne invalid_operand - call get_address - jmp mmx_imm8 - palignr_mmreg_mmreg: - lods byte [esi] - call convert_mmx_register - mov bl,al - jmp mmx_nomem_imm8 -amd3dnow_instruction: - mov [base_code],0Fh - mov [extended_code],0Fh - mov byte [value],al - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_mmx_register - cmp ah,8 - jne invalid_operand_size - mov [postbyte_register],al - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,10h - je amd3dnow_mmreg_mmreg - cmp al,'[' - jne invalid_operand - call get_address - call store_instruction_with_imm8 - jmp instruction_assembled - amd3dnow_mmreg_mmreg: - lods byte [esi] - call convert_mmx_register - cmp ah,8 - jne invalid_operand_size - mov bl,al - call store_nomem_instruction - mov al,byte [value] - stos byte [edi] - jmp instruction_assembled - -sse4_instruction_38_xmm0: - mov [immediate_size],-1 -sse4_instruction_38: - mov [mmx_size],16 - mov [opcode_prefix],66h - mov [supplemental_code],al - mov al,38h - jmp sse_instruction -sse4_ss_instruction_3a_imm8: - mov [immediate_size],1 - mov [mmx_size],4 - jmp sse4_instruction_3a_setup -sse4_sd_instruction_3a_imm8: - mov [immediate_size],1 - mov [mmx_size],8 - jmp sse4_instruction_3a_setup -sse4_instruction_3a_imm8: - mov [immediate_size],1 - mov [mmx_size],16 - sse4_instruction_3a_setup: - mov [opcode_prefix],66h - mov [supplemental_code],al - mov al,3Ah - jmp sse_instruction -pclmulqdq_instruction: - mov byte [value],al - mov [mmx_size],16 - mov al,44h - jmp sse4_instruction_3a_setup -extractps_instruction: - mov [opcode_prefix],66h - mov [base_code],0Fh - mov [extended_code],3Ah - mov [supplemental_code],17h - lods byte [esi] - call get_size_operator - cmp al,10h - je extractps_reg - cmp al,'[' - jne invalid_operand - call get_address - cmp [operand_size],4 - je extractps_size_ok - cmp [operand_size],0 - jne invalid_operand_size - extractps_size_ok: - push edx ebx ecx - mov [operand_size],0 - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_xmm_register - mov [postbyte_register],al - pop ecx ebx edx - jmp mmx_imm8 - extractps_reg: - lods byte [esi] - call convert_register - push eax - mov [operand_size],0 - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_xmm_register - mov [postbyte_register],al - pop ebx - mov al,bh - cmp al,4 - je mmx_nomem_imm8 - cmp al,8 - jne invalid_operand_size - call operand_64bit - jmp mmx_nomem_imm8 -insertps_instruction: - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_xmm_register - mov [postbyte_register],al - insertps_xmmreg: - mov [opcode_prefix],66h - mov [base_code],0Fh - mov [extended_code],3Ah - mov [supplemental_code],21h - mov [operand_size],0 - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,10h - je insertps_xmmreg_reg - cmp al,'[' - jne invalid_operand - call get_address - cmp [operand_size],4 - je insertps_size_ok - cmp [operand_size],0 - jne invalid_operand_size - insertps_size_ok: - jmp mmx_imm8 - insertps_xmmreg_reg: - lods byte [esi] - call convert_mmx_register - mov bl,al - jmp mmx_nomem_imm8 -pextrq_instruction: - mov [mmx_size],8 - jmp pextr_instruction -pextrd_instruction: - mov [mmx_size],4 - jmp pextr_instruction -pextrw_instruction: - mov [mmx_size],2 - jmp pextr_instruction -pextrb_instruction: - mov [mmx_size],1 - pextr_instruction: - mov [opcode_prefix],66h - mov [base_code],0Fh - mov [extended_code],3Ah - mov [supplemental_code],al - lods byte [esi] - call get_size_operator - cmp al,10h - je pextr_reg - cmp al,'[' - jne invalid_operand - call get_address - mov al,[mmx_size] - cmp al,[operand_size] - je pextr_size_ok - cmp [operand_size],0 - jne invalid_operand_size - pextr_size_ok: - cmp al,8 - jne pextr_prefix_ok - call operand_64bit - pextr_prefix_ok: - push edx ebx ecx - mov [operand_size],0 - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_xmm_register - mov [postbyte_register],al - pop ecx ebx edx - jmp mmx_imm8 - pextr_reg: - lods byte [esi] - call convert_register - cmp [mmx_size],4 - ja pextrq_reg - cmp ah,4 - je pextr_reg_size_ok - cmp [code_type],64 - jne pextr_invalid_size - cmp ah,8 - je pextr_reg_size_ok - pextr_invalid_size: - jmp invalid_operand_size - pextrq_reg: - cmp ah,8 - jne pextr_invalid_size - call operand_64bit - pextr_reg_size_ok: - mov [operand_size],0 - push eax - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_mmx_register - mov ebx,eax - pop eax - mov [postbyte_register],al - mov al,ah - cmp [mmx_size],2 - jne pextr_reg_store - mov [opcode_prefix],0 - mov [extended_code],0C5h - call make_mmx_prefix - jmp mmx_nomem_imm8 - pextr_reg_store: - cmp bh,16 - jne invalid_operand_size - xchg bl,[postbyte_register] - call operand_autodetect - jmp mmx_nomem_imm8 -pinsrb_instruction: - mov [mmx_size],1 - jmp pinsr_instruction -pinsrd_instruction: - mov [mmx_size],4 - jmp pinsr_instruction -pinsrq_instruction: - mov [mmx_size],8 - call operand_64bit - pinsr_instruction: - mov [opcode_prefix],66h - mov [base_code],0Fh - mov [extended_code],3Ah - mov [supplemental_code],al - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_xmm_register - mov [postbyte_register],al - pinsr_xmmreg: - mov [operand_size],0 - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,10h - je pinsr_xmmreg_reg - cmp al,'[' - jne invalid_operand - call get_address - cmp [operand_size],0 - je mmx_imm8 - mov al,[mmx_size] - cmp al,[operand_size] - je mmx_imm8 - jmp invalid_operand_size - pinsr_xmmreg_reg: - lods byte [esi] - call convert_register - mov bl,al - cmp [mmx_size],8 - je pinsrq_xmmreg_reg - cmp ah,4 - je mmx_nomem_imm8 - jmp invalid_operand_size - pinsrq_xmmreg_reg: - cmp ah,8 - je mmx_nomem_imm8 - jmp invalid_operand_size -pmovsxbw_instruction: - mov [mmx_size],8 - jmp pmovsx_instruction -pmovsxbd_instruction: - mov [mmx_size],4 - jmp pmovsx_instruction -pmovsxbq_instruction: - mov [mmx_size],2 - jmp pmovsx_instruction -pmovsxwd_instruction: - mov [mmx_size],8 - jmp pmovsx_instruction -pmovsxwq_instruction: - mov [mmx_size],4 - jmp pmovsx_instruction -pmovsxdq_instruction: - mov [mmx_size],8 - pmovsx_instruction: - mov [opcode_prefix],66h - mov [base_code],0Fh - mov [extended_code],38h - mov [supplemental_code],al - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_xmm_register - mov [postbyte_register],al - lods byte [esi] - cmp al,',' - jne invalid_operand - mov [operand_size],0 - lods byte [esi] - call get_size_operator - cmp al,10h - je pmovsx_xmmreg_reg - cmp al,'[' - jne invalid_operand - call get_address - cmp [operand_size],0 - je instruction_ready - mov al,[mmx_size] - cmp al,[operand_size] - jne invalid_operand_size - jmp instruction_ready - pmovsx_xmmreg_reg: - lods byte [esi] - call convert_xmm_register - mov bl,al - jmp nomem_instruction_ready - -fxsave_instruction_64bit: - call operand_64bit -fxsave_instruction: - mov [extended_code],0AEh - mov [base_code],0Fh - mov [postbyte_register],al - lods byte [esi] - call get_size_operator - cmp al,'[' - jne invalid_operand - call get_address - mov ah,[operand_size] - or ah,ah - jz fxsave_size_ok - mov al,[postbyte_register] - cmp al,111b - je clflush_size_check - cmp al,10b - jb invalid_operand_size - cmp al,11b - ja invalid_operand_size - cmp ah,4 - jne invalid_operand_size - jmp fxsave_size_ok - clflush_size_check: - cmp ah,1 - jne invalid_operand_size - fxsave_size_ok: - jmp instruction_ready -prefetch_instruction: - mov [extended_code],18h - prefetch_mem_8bit: - mov [base_code],0Fh - mov [postbyte_register],al - lods byte [esi] - call get_size_operator - cmp al,'[' - jne invalid_operand - or ah,ah - jz prefetch_size_ok - cmp ah,1 - jne invalid_operand_size - prefetch_size_ok: - call get_address - jmp instruction_ready -amd_prefetch_instruction: - mov [extended_code],0Dh - jmp prefetch_mem_8bit -fence_instruction: - mov bl,al - mov ax,0AE0Fh - stos word [edi] - mov al,bl - stos byte [edi] - jmp instruction_assembled -pause_instruction: - mov ax,90F3h - stos word [edi] - jmp instruction_assembled -movntq_instruction: - mov [mmx_size],8 - jmp movnt_instruction -movntpd_instruction: - mov [opcode_prefix],66h -movntps_instruction: - mov [mmx_size],16 - movnt_instruction: - mov [extended_code],al - mov [base_code],0Fh - lods byte [esi] - call get_size_operator - cmp al,'[' - jne invalid_operand - call get_address - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_mmx_register - cmp ah,[mmx_size] - jne invalid_operand_size - mov [postbyte_register],al - jmp instruction_ready - -movntsd_instruction: - mov [opcode_prefix],0F2h - mov [mmx_size],8 - jmp movnts_instruction -movntss_instruction: - mov [opcode_prefix],0F3h - mov [mmx_size],4 - movnts_instruction: - mov [extended_code],al - mov [base_code],0Fh - lods byte [esi] - call get_size_operator - cmp al,'[' - jne invalid_operand - call get_address - mov al,[operand_size] - cmp al,[mmx_size] - je movnts_size_ok - test al,al - jnz invalid_operand_size - movnts_size_ok: - lods byte [esi] - cmp al,',' - jne invalid_operand - mov [operand_size],0 - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_xmm_register - mov [postbyte_register],al - jmp instruction_ready - -movnti_instruction: - mov [base_code],0Fh - mov [extended_code],al - lods byte [esi] - call get_size_operator - cmp al,'[' - jne invalid_operand - call get_address - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_register - cmp ah,4 - je movnti_store - cmp ah,8 - jne invalid_operand_size - call operand_64bit - movnti_store: - mov [postbyte_register],al - jmp instruction_ready -monitor_instruction: - mov [postbyte_register],al - cmp byte [esi],0 - je monitor_instruction_store - cmp byte [esi],0Fh - je monitor_instruction_store - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_register - cmp ax,0400h - jne invalid_operand - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_register - cmp ax,0401h - jne invalid_operand - cmp [postbyte_register],0C8h - jne monitor_instruction_store - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_register - cmp ax,0402h - jne invalid_operand - monitor_instruction_store: - mov ax,010Fh - stos word [edi] - mov al,[postbyte_register] - stos byte [edi] - jmp instruction_assembled -movntdqa_instruction: - mov [opcode_prefix],66h - mov [base_code],0Fh - mov [extended_code],38h - mov [supplemental_code],al - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_xmm_register - mov [postbyte_register],al - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,'[' - jne invalid_operand - call get_address - jmp instruction_ready - -extrq_instruction: - mov [opcode_prefix],66h - mov [base_code],0Fh - mov [extended_code],78h - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_xmm_register - mov [postbyte_register],al - mov [operand_size],0 - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,10h - je extrq_xmmreg_xmmreg - test ah,not 1 - jnz invalid_operand_size - cmp al,'(' - jne invalid_operand - xor bl,bl - xchg bl,[postbyte_register] - call store_nomem_instruction - call get_byte_value - stosb - call append_imm8 - jmp instruction_assembled - extrq_xmmreg_xmmreg: - inc [extended_code] - lods byte [esi] - call convert_xmm_register - mov bl,al - jmp nomem_instruction_ready -insertq_instruction: - mov [opcode_prefix],0F2h - mov [base_code],0Fh - mov [extended_code],78h - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_xmm_register - mov [postbyte_register],al - mov [operand_size],0 - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_xmm_register - mov bl,al - cmp byte [esi],',' - je insertq_with_imm - inc [extended_code] - jmp nomem_instruction_ready - insertq_with_imm: - call store_nomem_instruction - call append_imm8 - call append_imm8 - jmp instruction_assembled - -crc32_instruction: - mov [opcode_prefix],0F2h - mov [base_code],0Fh - mov [extended_code],38h - mov [supplemental_code],0F0h - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_register - mov [postbyte_register],al - cmp ah,8 - je crc32_reg64 - cmp ah,4 - jne invalid_operand - lods byte [esi] - cmp al,',' - jne invalid_operand - mov [operand_size],0 - lods byte [esi] - call get_size_operator - cmp al,10h - je crc32_reg32_reg - cmp al,'[' - jne invalid_operand - call get_address - mov al,[operand_size] - test al,al - jz crc32_unknown_size - cmp al,1 - je crc32_reg32_mem_store - cmp al,4 - ja invalid_operand_size - inc [supplemental_code] - call operand_autodetect - crc32_reg32_mem_store: - jmp instruction_ready - crc32_unknown_size: - call recoverable_unknown_size - jmp crc32_reg32_mem_store - crc32_reg32_reg: - lods byte [esi] - call convert_register - mov bl,al - mov al,ah - cmp al,1 - je crc32_reg32_reg_store - cmp al,4 - ja invalid_operand_size - inc [supplemental_code] - call operand_autodetect - crc32_reg32_reg_store: - jmp nomem_instruction_ready - crc32_reg64: - lods byte [esi] - cmp al,',' - jne invalid_operand - mov [operand_size],0 - call operand_64bit - lods byte [esi] - call get_size_operator - cmp al,10h - je crc32_reg64_reg - cmp al,'[' - jne invalid_operand - call get_address - mov ah,[operand_size] - mov al,8 - test ah,ah - jz crc32_unknown_size - cmp ah,1 - je crc32_reg32_mem_store - cmp ah,al - jne invalid_operand_size - inc [supplemental_code] - jmp crc32_reg32_mem_store - crc32_reg64_reg: - lods byte [esi] - call convert_register - mov bl,al - mov al,8 - cmp ah,1 - je crc32_reg32_reg_store - cmp ah,al - jne invalid_operand_size - inc [supplemental_code] - jmp crc32_reg32_reg_store -popcnt_instruction: - mov [opcode_prefix],0F3h - jmp bs_instruction -movbe_instruction: - mov [supplemental_code],al - mov [extended_code],38h - mov [base_code],0Fh - lods byte [esi] - call get_size_operator - cmp al,'[' - je movbe_mem - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_register - mov [postbyte_register],al - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,'[' - jne invalid_argument - call get_address - mov al,[operand_size] - call operand_autodetect - jmp instruction_ready - movbe_mem: - inc [supplemental_code] - call get_address - push edx ebx ecx - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_register - mov [postbyte_register],al - pop ecx ebx edx - mov al,[operand_size] - call operand_autodetect - jmp instruction_ready -adx_instruction: - mov [base_code],0Fh - mov [extended_code],38h - mov [supplemental_code],0F6h - mov [operand_prefix],al - call get_reg_mem - jc adx_reg_reg - mov al,[operand_size] - cmp al,4 - je instruction_ready - cmp al,8 - jne invalid_operand_size - call operand_64bit - jmp instruction_ready - adx_reg_reg: - cmp ah,4 - je nomem_instruction_ready - cmp ah,8 - jne invalid_operand_size - call operand_64bit - jmp nomem_instruction_ready - -simple_vmx_instruction: - mov ah,al - mov al,0Fh - stos byte [edi] - mov al,1 - stos word [edi] - jmp instruction_assembled -vmclear_instruction: - mov [opcode_prefix],66h - jmp vmx_instruction -vmxon_instruction: - mov [opcode_prefix],0F3h -vmx_instruction: - mov [postbyte_register],al - mov [extended_code],0C7h - lods byte [esi] - call get_size_operator - cmp al,'[' - jne invalid_operand - call get_address - mov al,[operand_size] - or al,al - jz vmx_size_ok - cmp al,8 - jne invalid_operand_size - vmx_size_ok: - mov [base_code],0Fh - jmp instruction_ready -vmread_instruction: - mov [extended_code],78h - lods byte [esi] - call get_size_operator - cmp al,10h - je vmread_nomem - cmp al,'[' - jne invalid_operand - call get_address - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_register - mov [postbyte_register],al - call vmread_check_size - jmp vmx_size_ok - vmread_nomem: - lods byte [esi] - call convert_register - push eax - call vmread_check_size - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_register - mov [postbyte_register],al - call vmread_check_size - pop ebx - mov [base_code],0Fh - jmp nomem_instruction_ready - vmread_check_size: - cmp [code_type],64 - je vmread_long - cmp [operand_size],4 - jne invalid_operand_size - ret - vmread_long: - cmp [operand_size],8 - jne invalid_operand_size - ret -vmwrite_instruction: - mov [extended_code],79h - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_register - mov [postbyte_register],al - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,10h - je vmwrite_nomem - cmp al,'[' - jne invalid_operand - call get_address - call vmread_check_size - jmp vmx_size_ok - vmwrite_nomem: - lods byte [esi] - call convert_register - mov bl,al - mov [base_code],0Fh - jmp nomem_instruction_ready -vmx_inv_instruction: - mov [opcode_prefix],66h - mov [extended_code],38h - mov [supplemental_code],al - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_register - mov [postbyte_register],al - call vmread_check_size - mov [operand_size],0 - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,'[' - jne invalid_operand - call get_address - mov al,[operand_size] - or al,al - jz vmx_size_ok - cmp al,16 - jne invalid_operand_size - jmp vmx_size_ok -simple_svm_instruction: - push eax - mov [base_code],0Fh - mov [extended_code],1 - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_register - or al,al - jnz invalid_operand - simple_svm_detect_size: - cmp ah,2 - je simple_svm_16bit - cmp ah,4 - je simple_svm_32bit - cmp [code_type],64 - jne invalid_operand_size - jmp simple_svm_store - simple_svm_16bit: - cmp [code_type],16 - je simple_svm_store - cmp [code_type],64 - je invalid_operand_size - jmp prefixed_svm_store - simple_svm_32bit: - cmp [code_type],32 - je simple_svm_store - prefixed_svm_store: - mov al,67h - stos byte [edi] - simple_svm_store: - call store_instruction_code - pop eax - stos byte [edi] - jmp instruction_assembled -skinit_instruction: - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_register - cmp ax,0400h - jne invalid_operand - mov al,0DEh - jmp simple_vmx_instruction -invlpga_instruction: - push eax - mov [base_code],0Fh - mov [extended_code],1 - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_register - or al,al - jnz invalid_operand - mov bl,ah - mov [operand_size],0 - lods byte [esi] - cmp al,',' - jne invalid_operand - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_register - cmp ax,0401h - jne invalid_operand - mov ah,bl - jmp simple_svm_detect_size - -rdrand_instruction: - mov [base_code],0Fh - mov [extended_code],0C7h - mov [postbyte_register],al - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_register - mov bl,al - mov al,ah - call operand_autodetect - jmp nomem_instruction_ready -rdfsbase_instruction: - cmp [code_type],64 - jne illegal_instruction - mov [opcode_prefix],0F3h - mov [base_code],0Fh - mov [extended_code],0AEh - mov [postbyte_register],al - lods byte [esi] - call get_size_operator - cmp al,10h - jne invalid_operand - lods byte [esi] - call convert_register - mov bl,al - mov al,ah - cmp ah,2 - je invalid_operand_size - call operand_autodetect - jmp nomem_instruction_ready - -xabort_instruction: - lods byte [esi] - call get_size_operator - cmp ah,1 - ja invalid_operand_size - cmp al,'(' - jne invalid_operand - call get_byte_value - mov dl,al - mov ax,0F8C6h - stos word [edi] - mov al,dl - stos byte [edi] - jmp instruction_assembled -xbegin_instruction: - lods byte [esi] - cmp al,'(' - jne invalid_operand - mov al,[code_type] - cmp al,64 - je xbegin_64bit - cmp al,32 - je xbegin_32bit - xbegin_16bit: - call get_address_word_value - add edi,4 - mov ebp,[addressing_space] - call calculate_relative_offset - sub edi,4 - shl eax,16 - mov ax,0F8C7h - stos dword [edi] - jmp instruction_assembled - xbegin_32bit: - call get_address_dword_value - jmp xbegin_address_ok - xbegin_64bit: - call get_address_qword_value - xbegin_address_ok: - add edi,5 - mov ebp,[addressing_space] - call calculate_relative_offset - sub edi,5 - mov edx,eax - cwde - cmp eax,edx - jne xbegin_rel32 - mov al,66h - stos byte [edi] - mov eax,edx - shl eax,16 - mov ax,0F8C7h - stos dword [edi] - jmp instruction_assembled - xbegin_rel32: - sub edx,1 - jno xbegin_rel32_ok - cmp [code_type],64 - je relative_jump_out_of_range - xbegin_rel32_ok: - mov ax,0F8C7h - stos word [edi] - mov eax,edx - stos dword [edi] - jmp instruction_assembled - -convert_register: - mov ah,al - shr ah,4 - and al,0Fh - cmp ah,8 - je match_register_size - cmp ah,4 - ja invalid_operand - cmp ah,1 - ja match_register_size - cmp al,4 - jb match_register_size - or ah,ah - jz high_byte_register - or [rex_prefix],40h - match_register_size: - cmp ah,[operand_size] - je register_size_ok - cmp [operand_size],0 - jne operand_sizes_do_not_match - mov [operand_size],ah - register_size_ok: - ret - high_byte_register: - mov ah,1 - or [rex_prefix],80h - jmp match_register_size -convert_fpu_register: - mov ah,al - shr ah,4 - and al,111b - cmp ah,10 - jne invalid_operand - jmp match_register_size -convert_mmx_register: - mov ah,al - shr ah,4 - cmp ah,0Ch - je xmm_register - ja invalid_operand - and al,111b - cmp ah,0Bh - jne invalid_operand - mov ah,8 - cmp [vex_required],0 - jne invalid_operand - jmp match_register_size - xmm_register: - and al,0Fh - mov ah,16 - cmp al,8 - jb match_register_size - cmp [code_type],64 - jne invalid_operand - jmp match_register_size -convert_xmm_register: - mov ah,al - shr ah,4 - cmp ah,0Ch - je xmm_register - jmp invalid_operand -get_size_operator: - xor ah,ah - cmp al,11h - jne no_size_operator - mov [size_declared],1 - lods word [esi] - xchg al,ah - mov [size_override],1 - cmp ah,[operand_size] - je size_operator_ok - cmp [operand_size],0 - jne operand_sizes_do_not_match - mov [operand_size],ah - size_operator_ok: - ret - no_size_operator: - mov [size_declared],0 - cmp al,'[' - jne size_operator_ok - mov [size_override],0 - ret -get_jump_operator: - mov [jump_type],0 - cmp al,12h - jne jump_operator_ok - lods word [esi] - mov [jump_type],al - mov al,ah - jump_operator_ok: - ret -get_address: - mov [segment_register],0 - mov [address_size],0 - mov [free_address_range],0 - mov al,[code_type] - shr al,3 - mov [value_size],al - mov al,[esi] - and al,11110000b - cmp al,60h - jne get_size_prefix - lods byte [esi] - sub al,60h - mov [segment_register],al - mov al,[esi] - and al,11110000b - get_size_prefix: - cmp al,70h - jne address_size_prefix_ok - lods byte [esi] - sub al,70h - cmp al,2 - jb invalid_address_size - cmp al,8 - ja invalid_address_size - mov [address_size],al - mov [value_size],al - address_size_prefix_ok: - call calculate_address - cmp byte [esi-1],']' - jne invalid_address - mov [address_high],edx - mov edx,eax - cmp [code_type],64 - jne address_ok - or bx,bx - jnz address_ok - test ch,0Fh - jnz address_ok - calculate_relative_address: - mov edx,[address_symbol] - mov [symbol_identifier],edx - mov edx,[address_high] - mov ebp,[addressing_space] - call calculate_relative_offset - mov [address_high],edx - cdq - cmp edx,[address_high] - je address_high_ok - call recoverable_overflow - address_high_ok: - mov edx,eax - ror ecx,16 - mov cl,[value_type] - rol ecx,16 - mov bx,0FF00h - address_ok: - ret -operand_16bit: - cmp [code_type],16 - je size_prefix_ok - mov [operand_prefix],66h - ret -operand_32bit: - cmp [code_type],16 - jne size_prefix_ok - mov [operand_prefix],66h - size_prefix_ok: - ret -operand_64bit: - cmp [code_type],64 - jne illegal_instruction - or [rex_prefix],48h - ret -operand_autodetect: - cmp al,2 - je operand_16bit - cmp al,4 - je operand_32bit - cmp al,8 - je operand_64bit - jmp invalid_operand_size -store_segment_prefix_if_necessary: - mov al,[segment_register] - or al,al - jz segment_prefix_ok - cmp al,4 - ja segment_prefix_386 - cmp [code_type],64 - je segment_prefix_ok - cmp al,3 - je ss_prefix - jb segment_prefix_86 - cmp bl,25h - je segment_prefix_86 - cmp bh,25h - je segment_prefix_86 - cmp bh,45h - je segment_prefix_86 - cmp bh,44h - je segment_prefix_86 - ret - ss_prefix: - cmp bl,25h - je segment_prefix_ok - cmp bh,25h - je segment_prefix_ok - cmp bh,45h - je segment_prefix_ok - cmp bh,44h - je segment_prefix_ok - jmp segment_prefix_86 -store_segment_prefix: - mov al,[segment_register] - or al,al - jz segment_prefix_ok - cmp al,5 - jae segment_prefix_386 - segment_prefix_86: - dec al - shl al,3 - add al,26h - stos byte [edi] - jmp segment_prefix_ok - segment_prefix_386: - add al,64h-5 - stos byte [edi] - segment_prefix_ok: - ret -store_instruction_code: - cmp [vex_required],0 - jne store_vex_instruction_code - mov al,[operand_prefix] - or al,al - jz operand_prefix_ok - stos byte [edi] - operand_prefix_ok: - mov al,[opcode_prefix] - or al,al - jz opcode_prefix_ok - stos byte [edi] - opcode_prefix_ok: - mov al,[rex_prefix] - test al,40h - jz rex_prefix_ok - cmp [code_type],64 - jne invalid_operand - test al,0B0h - jnz disallowed_combination_of_registers - stos byte [edi] - rex_prefix_ok: - mov al,[base_code] - stos byte [edi] - cmp al,0Fh - jne instruction_code_ok - store_extended_code: - mov al,[extended_code] - stos byte [edi] - cmp al,38h - je store_supplemental_code - cmp al,3Ah - je store_supplemental_code - instruction_code_ok: - ret - store_supplemental_code: - mov al,[supplemental_code] - stos byte [edi] - ret -store_nomem_instruction: - test [postbyte_register],1000b - jz nomem_reg_code_ok - or [rex_prefix],44h - and [postbyte_register],111b - nomem_reg_code_ok: - test bl,1000b - jz nomem_rm_code_ok - or [rex_prefix],41h - and bl,111b - nomem_rm_code_ok: - call store_instruction_code - mov al,[postbyte_register] - shl al,3 - or al,bl - or al,11000000b - stos byte [edi] - ret -store_instruction: - mov [current_offset],edi - test [postbyte_register],1000b - jz reg_code_ok - or [rex_prefix],44h - and [postbyte_register],111b - reg_code_ok: - cmp [code_type],64 - jne address_value_ok - xor eax,eax - bt edx,31 - sbb eax,[address_high] - jz address_value_ok - cmp [address_high],0 - jne address_value_out_of_range - test ch,44h - jnz address_value_ok - test bx,8080h - jz address_value_ok - address_value_out_of_range: - call recoverable_overflow - address_value_ok: - call store_segment_prefix_if_necessary - test [vex_required],4 - jnz address_vsib - or bx,bx - jz address_immediate - cmp bx,0F800h - je address_rip_based - cmp bx,0F400h - je address_eip_based - cmp bx,0FF00h - je address_relative - mov al,bl - or al,bh - and al,11110000b - cmp al,80h - je postbyte_64bit - cmp al,40h - je postbyte_32bit - cmp al,20h - jne invalid_address - cmp [code_type],64 - je invalid_address_size - call address_16bit_prefix - call store_instruction_code - cmp bl,bh - jbe determine_16bit_address - xchg bl,bh - determine_16bit_address: - cmp bx,2600h - je address_si - cmp bx,2700h - je address_di - cmp bx,2300h - je address_bx - cmp bx,2500h - je address_bp - cmp bx,2625h - je address_bp_si - cmp bx,2725h - je address_bp_di - cmp bx,2723h - je address_bx_di - cmp bx,2623h - jne invalid_address - address_bx_si: - xor al,al - jmp postbyte_16bit - address_bx_di: - mov al,1 - jmp postbyte_16bit - address_bp_si: - mov al,10b - jmp postbyte_16bit - address_bp_di: - mov al,11b - jmp postbyte_16bit - address_si: - mov al,100b - jmp postbyte_16bit - address_di: - mov al,101b - jmp postbyte_16bit - address_bx: - mov al,111b - jmp postbyte_16bit - address_bp: - mov al,110b - postbyte_16bit: - test ch,22h - jnz address_16bit_value - or ch,ch - jnz address_sizes_do_not_agree - cmp edx,10000h - jge value_out_of_range - cmp edx,-8000h - jl value_out_of_range - or dx,dx - jz address - cmp dx,80h - jb address_8bit_value - cmp dx,-80h - jae address_8bit_value - address_16bit_value: - or al,10000000b - mov cl,[postbyte_register] - shl cl,3 - or al,cl - stos byte [edi] - mov eax,edx - stos word [edi] - ret - address_8bit_value: - or al,01000000b - mov cl,[postbyte_register] - shl cl,3 - or al,cl - stos byte [edi] - mov al,dl - stos byte [edi] - cmp dx,80h - jge value_out_of_range - cmp dx,-80h - jl value_out_of_range - ret - address: - cmp al,110b - je address_8bit_value - mov cl,[postbyte_register] - shl cl,3 - or al,cl - stos byte [edi] - ret - address_vsib: - mov al,bl - shr al,4 - cmp al,0Ch - je vector_index_ok - cmp al,0Dh - jne invalid_address - vector_index_ok: - mov al,bh - shr al,4 - cmp al,4 - je postbyte_32bit - cmp [code_type],64 - je address_prefix_ok - test al,al - jnz invalid_address - postbyte_32bit: - call address_32bit_prefix - jmp address_prefix_ok - postbyte_64bit: - cmp [code_type],64 - jne invalid_address_size - address_prefix_ok: - cmp bl,44h - je invalid_address - cmp bl,84h - je invalid_address - test bh,1000b - jz base_code_ok - or [rex_prefix],41h - base_code_ok: - test bl,1000b - jz index_code_ok - or [rex_prefix],42h - index_code_ok: - call store_instruction_code - or cl,cl - jz only_base_register - base_and_index: - mov al,100b - xor ah,ah - cmp cl,1 - je scale_ok - cmp cl,2 - je scale_1 - cmp cl,4 - je scale_2 - or ah,11000000b - jmp scale_ok - scale_2: - or ah,10000000b - jmp scale_ok - scale_1: - or ah,01000000b - scale_ok: - or bh,bh - jz only_index_register - and bl,111b - shl bl,3 - or ah,bl - and bh,111b - or ah,bh - sib_ready: - test ch,44h - jnz sib_address_32bit_value - test ch,88h - jnz sib_address_32bit_value - or ch,ch - jnz address_sizes_do_not_agree - cmp bh,5 - je address_value - or edx,edx - jz sib_address - address_value: - cmp edx,80h - jb sib_address_8bit_value - cmp edx,-80h - jae sib_address_8bit_value - sib_address_32bit_value: - or al,10000000b - mov cl,[postbyte_register] - shl cl,3 - or al,cl - stos word [edi] - jmp store_address_32bit_value - sib_address_8bit_value: - or al,01000000b - mov cl,[postbyte_register] - shl cl,3 - or al,cl - stos word [edi] - mov al,dl - stos byte [edi] - cmp edx,80h - jge value_out_of_range - cmp edx,-80h - jl value_out_of_range - ret - sib_address: - mov cl,[postbyte_register] - shl cl,3 - or al,cl - stos word [edi] - ret - only_index_register: - or ah,101b - and bl,111b - shl bl,3 - or ah,bl - mov cl,[postbyte_register] - shl cl,3 - or al,cl - stos word [edi] - test ch,44h - jnz store_address_32bit_value - test ch,88h - jnz store_address_32bit_value - or ch,ch - jnz invalid_address_size - jmp store_address_32bit_value - zero_index_register: - mov bl,4 - mov cl,1 - jmp base_and_index - only_base_register: - mov al,bh - and al,111b - cmp al,4 - je zero_index_register - test ch,44h - jnz simple_address_32bit_value - test ch,88h - jnz simple_address_32bit_value - or ch,ch - jnz address_sizes_do_not_agree - or edx,edx - jz simple_address - cmp edx,80h - jb simple_address_8bit_value - cmp edx,-80h - jae simple_address_8bit_value - simple_address_32bit_value: - or al,10000000b - mov cl,[postbyte_register] - shl cl,3 - or al,cl - stos byte [edi] - jmp store_address_32bit_value - simple_address_8bit_value: - or al,01000000b - mov cl,[postbyte_register] - shl cl,3 - or al,cl - stos byte [edi] - mov al,dl - stos byte [edi] - cmp edx,80h - jge value_out_of_range - cmp edx,-80h - jl value_out_of_range - ret - simple_address: - cmp al,5 - je simple_address_8bit_value - mov cl,[postbyte_register] - shl cl,3 - or al,cl - stos byte [edi] - ret - address_immediate: - cmp [code_type],64 - je address_immediate_sib - test ch,44h - jnz address_immediate_32bit - test ch,88h - jnz address_immediate_32bit - test ch,22h - jnz address_immediate_16bit - or ch,ch - jnz invalid_address_size - cmp [code_type],16 - je addressing_16bit - address_immediate_32bit: - call address_32bit_prefix - call store_instruction_code - store_immediate_address: - mov al,101b - mov cl,[postbyte_register] - shl cl,3 - or al,cl - stos byte [edi] - store_address_32bit_value: - test ch,0F0h - jz address_32bit_relocation_ok - mov eax,ecx - shr eax,16 - cmp al,4 - jne address_32bit_relocation - mov al,2 - address_32bit_relocation: - xchg [value_type],al - mov ebx,[address_symbol] - xchg ebx,[symbol_identifier] - call mark_relocation - mov [value_type],al - mov [symbol_identifier],ebx - address_32bit_relocation_ok: - mov eax,edx - stos dword [edi] - ret - store_address_64bit_value: - test ch,0F0h - jz address_64bit_relocation_ok - mov eax,ecx - shr eax,16 - xchg [value_type],al - mov ebx,[address_symbol] - xchg ebx,[symbol_identifier] - call mark_relocation - mov [value_type],al - mov [symbol_identifier],ebx - address_64bit_relocation_ok: - mov eax,edx - stos dword [edi] - mov eax,[address_high] - stos dword [edi] - ret - address_immediate_sib: - test ch,44h - jnz address_immediate_sib_32bit - test ch,not 88h - jnz invalid_address_size - address_immediate_sib_store: - call store_instruction_code - mov al,100b - mov ah,100101b - mov cl,[postbyte_register] - shl cl,3 - or al,cl - stos word [edi] - jmp store_address_32bit_value - address_immediate_sib_32bit: - test ecx,0FF0000h - jnz address_immediate_sib_nosignextend - test edx,80000000h - jz address_immediate_sib_store - address_immediate_sib_nosignextend: - call address_32bit_prefix - jmp address_immediate_sib_store - address_eip_based: - mov al,67h - stos byte [edi] - address_rip_based: - cmp [code_type],64 - jne invalid_address - call store_instruction_code - jmp store_immediate_address - address_relative: - call store_instruction_code - movzx eax,[immediate_size] - add eax,edi - sub eax,[current_offset] - add eax,5 - sub edx,eax - jo value_out_of_range - mov al,101b - mov cl,[postbyte_register] - shl cl,3 - or al,cl - stos byte [edi] - shr ecx,16 - xchg [value_type],cl - mov ebx,[address_symbol] - xchg ebx,[symbol_identifier] - mov eax,edx - call mark_relocation - mov [value_type],cl - mov [symbol_identifier],ebx - stos dword [edi] - ret - addressing_16bit: - cmp edx,10000h - jge address_immediate_32bit - cmp edx,-8000h - jl address_immediate_32bit - movzx edx,dx - address_immediate_16bit: - call address_16bit_prefix - call store_instruction_code - mov al,110b - mov cl,[postbyte_register] - shl cl,3 - or al,cl - stos byte [edi] - mov eax,edx - stos word [edi] - cmp edx,10000h - jge value_out_of_range - cmp edx,-8000h - jl value_out_of_range - ret - address_16bit_prefix: - cmp [code_type],16 - je instruction_prefix_ok - mov al,67h - stos byte [edi] - ret - address_32bit_prefix: - cmp [code_type],32 - je instruction_prefix_ok - mov al,67h - stos byte [edi] - instruction_prefix_ok: - ret -store_instruction_with_imm8: - mov [immediate_size],1 - call store_instruction - mov al,byte [value] - stos byte [edi] - ret -store_instruction_with_imm16: - mov [immediate_size],2 - call store_instruction - mov ax,word [value] - call mark_relocation - stos word [edi] - ret -store_instruction_with_imm32: - mov [immediate_size],4 - call store_instruction - mov eax,dword [value] - call mark_relocation - stos dword [edi] - ret From f10821ac498062ead4ae045e59e15272b69d4143 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Fri, 4 Jul 2014 14:38:05 -0500 Subject: [PATCH 104/268] Samples --- lib/linguist/samples.json | 1340 +++---------------------------------- 1 file changed, 98 insertions(+), 1242 deletions(-) diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index f48ee225..8ea2394a 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -33,8 +33,7 @@ ".aj" ], "Assembly": [ - ".asm", - ".inc" + ".asm" ], "AutoHotkey": [ ".ahk" @@ -792,8 +791,8 @@ "exception.zep.php" ] }, - "tokens_total": 650233, - "languages_total": 870, + "tokens_total": 629226, + "languages_total": 867, "tokens": { "ABAP": { "*/**": 1, @@ -3164,404 +3163,22 @@ "_cache.size": 1 }, "Assembly": { - ";": 20, - "flat": 4, - "assembler": 6, - "core": 2, - "Copyright": 4, - "(": 13, - "c": 4, - ")": 6, - "-": 87, - "Tomasz": 4, - "Grysztar.": 4, - "All": 4, - "rights": 4, - "reserved.": 4, - "xor": 52, - "eax": 510, - "mov": 1253, - "[": 2026, - "stub_size": 1, - "]": 2026, - "current_pass": 16, - "ax": 87, - "resolver_flags": 1, - "number_of_sections": 1, - "actual_fixups_size": 1, - "assembler_loop": 2, - "labels_list": 3, - "tagged_blocks": 23, - "additional_memory": 6, - "free_additional_memory": 2, - "additional_memory_end": 9, - "structures_buffer": 9, - "esi": 619, - "source_start": 1, - "edi": 250, - "code_start": 2, - "dword": 87, - "adjustment": 4, - "+": 232, - "addressing_space": 17, - "error_line": 16, - "counter": 13, - "format_flags": 2, - "number_of_relocations": 1, - "undefined_data_end": 4, - "file_extension": 1, - "next_pass_needed": 16, - "al": 1174, - "output_format": 3, - "adjustment_sign": 2, - "code_type": 106, - "call": 845, - "init_addressing_space": 6, - "pass_loop": 2, - "assemble_line": 3, - "jnc": 11, - "cmp": 1088, - "je": 485, - "pass_done": 2, - "sub": 64, - "h": 376, - "current_line": 24, - "jmp": 450, - "missing_end_directive": 7, - "close_pass": 1, - "check_symbols": 2, - "memory_end": 7, - "jae": 34, - "symbols_checked": 2, - "test": 95, - "byte": 549, - "jz": 107, - "symbol_defined_ok": 5, - "cx": 42, - "jne": 485, - "and": 50, - "not": 42, - "or": 194, - "use_prediction_ok": 5, - "jnz": 125, - "check_use_prediction": 2, - "use_misprediction": 3, - "check_next_symbol": 5, - "define_misprediction": 4, - "check_define_prediction": 2, - "add": 76, - "LABEL_STRUCTURE_SIZE": 1, - "next_pass": 3, - "assemble_ok": 2, - "error": 7, - "undefined_symbol": 2, - "error_confirmed": 3, - "error_info": 2, - "error_handler": 3, - "esp": 14, - "ret": 70, - "inc": 87, - "passes_limit": 3, - "code_cannot_be_generated": 1, - "create_addressing_space": 1, - "ebx": 336, - "Ah": 25, - "illegal_instruction": 48, - "Ch": 11, - "jbe": 11, - "out_of_memory": 19, - "ja": 28, - "lods": 366, - "assemble_instruction": 2, - "jb": 34, - "source_end": 2, - "define_label": 2, - "define_constant": 2, - "label_addressing_space": 2, - "Fh": 73, - "new_line": 2, - "code_type_setting": 2, - "segment_prefix": 2, - "instruction_assembled": 138, - "prefixed_instruction": 11, - "symbols_file": 4, - "continue_line": 8, - "line_assembled": 3, - "invalid_use_of_symbol": 17, - "reserved_word_used_as_symbol": 6, - "label_size": 5, - "make_label": 3, - "edx": 219, - "cl": 42, - "ebp": 49, - "ds": 21, - "sbb": 9, - "jp": 2, - "label_value_ok": 2, - "recoverable_overflow": 4, - "address_sign": 4, - "make_virtual_label": 2, - "xchg": 31, - "ch": 55, - "shr": 30, - "neg": 4, - "setnz": 5, - "ah": 229, - "finish_label": 2, - "setne": 14, - "finish_label_symbol": 2, - "b": 30, - "label_symbol_ok": 2, - "new_label": 2, - "symbol_already_defined": 3, - "btr": 2, - "jc": 28, - "requalified_label": 2, - "label_made": 4, - "push": 150, - "get_constant_value": 4, - "dl": 58, - "size_override": 7, - "get_value": 2, - "pop": 99, - "bl": 124, - "ecx": 153, - "constant_referencing_mode_ok": 2, - "value_type": 42, - "make_constant": 2, - "value_sign": 3, - "constant_symbol_ok": 2, - "symbol_identifier": 4, - "new_constant": 2, - "redeclare_constant": 2, - "requalified_constant": 2, - "make_addressing_space_label": 3, - "dx": 27, - "operand_size": 121, - "operand_prefix": 9, - "opcode_prefix": 30, - "rex_prefix": 9, - "vex_required": 2, - "vex_register": 1, - "immediate_size": 9, - "instruction_handler": 32, - "movzx": 13, - "word": 79, - "extra_characters_on_line": 8, - "clc": 11, - "dec": 30, - "stc": 9, - "org_directive": 1, - "invalid_argument": 28, - "invalid_value": 21, - "get_qword_value": 5, - "in_virtual": 2, - "org_space_ok": 2, - "close_virtual_addressing_space": 3, - "org_value_ok": 2, - "bts": 1, - "label_directive": 1, - "get_label_size": 2, - "label_size_ok": 2, - "get_free_label_value": 2, - "get_address_value": 3, - "bh": 34, - "bp": 2, - "shl": 17, - "bx": 8, - "make_free_label": 1, - "address_symbol": 2, - "load_directive": 1, - "load_size_ok": 2, - "value": 38, - "get_data_point": 3, - "value_loaded": 2, - "rep": 7, - "movs": 8, - "get_data_address": 5, - "addressing_space_unavailable": 3, - "symbol_out_of_scope": 1, - "get_addressing_space": 3, - "store_label_reference": 1, - "calculate_relative_offset": 2, - "data_address_type_ok": 2, - "adc": 9, - "bad_data_address": 3, - "store_directive": 1, - "sized_store": 2, - "get_byte_value": 23, - "store_value_ok": 2, - "undefined_data_start": 3, - "display_directive": 2, - "display_byte": 2, - "stos": 107, - "display_next": 2, - "show_display_buffer": 2, - "display_done": 3, - "display_messages": 2, - "skip_block": 2, - "display_block": 4, - "times_directive": 1, - "get_count_value": 6, - "zero_times": 3, - "times_argument_ok": 2, - "counter_limit": 7, - "times_loop": 2, - "stack_overflow": 2, - "stack_limit": 2, - "times_done": 2, - "skip_symbol": 5, - "virtual_directive": 3, - "virtual_at_current": 2, - "set_virtual": 2, - "allocate_structure_data": 5, - "find_structure_data": 6, - "scan_structures": 2, - "no_such_structure": 2, - "structure_data_found": 2, - "end_virtual": 2, - "unexpected_instruction": 18, - "remove_structure_data": 7, - "lea": 8, - "std": 2, - "cld": 2, - "addressing_space_closed": 2, - "virtual_byte_ok": 2, - "virtual_word_ok": 2, - "repeat_directive": 7, - "zero_repeat": 2, - "end_repeat": 2, - "continue_repeating": 2, - "stop_repeat": 2, - "find_end_repeat": 4, - "find_structure_end": 5, - "while_directive": 7, - "do_while": 2, - "calculate_logical_expression": 3, - "while_true": 2, - "stop_while": 2, - "find_end_while": 3, - "end_while": 2, - "too_many_repeats": 1, - "if_directive": 13, - "if_true": 2, - "find_else": 4, - "else_true": 3, - "make_if_structure": 2, - "else_directive": 3, - "found_else": 2, - "skip_else": 3, - "find_end_if": 3, - "end_if": 2, - "else_found": 2, - "find_end_directive": 10, - "no_end_directive": 2, - "skip_labels": 2, - "labels_ok": 2, - "prefix_instruction": 2, - "skip_repeat": 2, - "skip_while": 2, - "skip_if": 2, - "structure_end": 4, - "end_directive": 2, - "skip_if_block": 4, - "if_block_skipped": 2, - "skip_after_else": 3, - "data_directive": 1, - "end_data": 1, - "break_directive": 1, - "find_breakable_structure": 4, - "break_repeat": 2, - "break_while": 2, - "break_if": 2, - "data_bytes": 1, - "define_data": 8, - "get_byte": 2, - "undefined_data": 7, - "get_string": 2, - "mark_undefined_data": 2, - "undefined_data_ok": 2, - "simple_data_value": 3, - "skip_expression": 1, - "duplicate_zero_times": 2, - "duplicate_single_data_value": 3, - "duplicate_data": 2, - "duplicated_values": 2, - "near": 3, - "data_defined": 5, - "skip_single_data_value": 2, - "skip_data_value": 2, - "data_unicode": 1, - "base_code": 195, - "define_words": 2, - "data_words": 1, - "get_word": 2, - "scas": 10, - "word_data_value": 2, - "word_string": 2, - "get_word_value": 19, - "mark_relocation": 26, - "jecxz": 1, - "word_string_ok": 2, - "ecx*2": 1, - "copy_word_string": 2, - "loop": 2, - "data_dwords": 1, - "get_dword": 2, - "get_dword_value": 13, - "complex_dword": 2, - "invalid_operand": 239, - "data_pwords": 1, - "get_pword": 2, - "get_pword_value": 1, - "complex_pword": 2, - "data_qwords": 1, - "get_qword": 2, - "data_twords": 1, - "get_tword": 2, - "complex_tword": 2, - "fp_zero_tword": 2, - "FFFh": 3, - "jo": 2, - "value_out_of_range": 10, - "jge": 5, - "jg": 1, - "tword_exp_ok": 3, - "large_shift": 2, - "shrd": 1, - "tword_mantissa_shift_done": 2, - "store_shifted_mantissa": 2, - "data_file": 2, - "open_binary_file": 2, - "lseek": 5, - "position_ok": 2, - "size_ok": 2, - "read": 3, - "error_reading_file": 1, - "close": 3, - "find_current_source_path": 2, - "get_current_path": 3, - "lodsb": 12, - "stosb": 6, - "cut_current_path": 1, - "current_path_ok": 1, - "/": 1, - ".": 7, - "invalid_align_value": 3, - "section_not_aligned_enough": 4, - "make_alignment": 3, - "pe_alignment": 2, - "nops": 2, - "reserved_data": 2, - "nops_stosb_ok": 2, - "nops_stosw_ok": 2, - "err_directive": 1, - "invoked_error": 2, - "assert_directive": 1, - "assertion_failed": 1, - "interface": 2, - "for": 2, - "Win32": 2, + ";": 3, + "flat": 1, + "assembler": 2, + "interface": 1, + "for": 1, + "Win32": 1, + "Copyright": 1, + "(": 2, + "c": 1, + ")": 2, + "-": 2, + "Tomasz": 1, + "Grysztar.": 1, + "All": 1, + "rights": 1, + "reserved.": 1, "format": 1, "PE": 1, "console": 1, @@ -3570,915 +3187,154 @@ "readable": 4, "executable": 1, "start": 1, - "con_handle": 8, - "STD_OUTPUT_HANDLE": 2, + "mov": 28, + "[": 25, + "con_handle": 2, + "]": 25, + "STD_OUTPUT_HANDLE": 1, + "esi": 12, "_logo": 2, - "display_string": 19, + "call": 25, + "display_string": 7, "get_params": 2, + "jc": 3, "information": 2, - "init_memory": 2, + "init_memory": 1, "_memory_prefix": 2, - "memory_start": 4, - "display_number": 8, + "eax": 18, + "memory_end": 1, + "sub": 4, + "memory_start": 1, + "add": 2, + "additional_memory_end": 1, + "additional_memory": 1, + "shr": 1, + "display_number": 5, "_memory_suffix": 2, "GetTickCount": 3, "start_time": 3, "preprocessor": 1, "parser": 1, "formatter": 1, - "display_user_messages": 3, + "display_user_messages": 1, + "movzx": 1, + "current_pass": 1, + "inc": 1, "_passes_suffix": 2, - "div": 8, + "xor": 5, + "edx": 15, + "ebx": 4, + "div": 2, + "or": 11, + "jz": 11, "display_bytes_count": 2, - "display_character": 6, + "push": 1, + "dl": 1, + "display_character": 1, + "pop": 1, "_seconds_suffix": 2, "written_size": 1, "_bytes_suffix": 2, - "exit_program": 5, + "al": 48, + "jmp": 12, + "exit_program": 2, "_usage": 2, "input_file": 4, "output_file": 3, - "memory_setting": 4, + "symbols_file": 2, + "memory_setting": 3, + "passes_limit": 2, "GetCommandLine": 2, + "edi": 4, "params": 2, "find_command_start": 2, + "lodsb": 11, + "cmp": 31, + "h": 18, + "je": 25, "skip_quoted_name": 3, "skip_name": 2, "find_param": 7, "all_params": 5, "option_param": 2, - "Dh": 19, + "Dh": 15, + "jne": 3, "get_output_file": 2, "process_param": 3, "bad_params": 11, "string_param": 3, "copy_param": 2, + "stosb": 3, "param_end": 6, "string_param_end": 2, "memory_option": 4, "passes_option": 4, "symbols_option": 3, + "stc": 2, + "ret": 4, "get_option_value": 3, "get_option_digit": 2, "option_value_ok": 4, "invalid_option_value": 5, + "ja": 2, "imul": 1, + "jo": 1, + "dec": 4, + "clc": 2, + "shl": 1, + "jae": 1, + "dx": 1, "find_symbols_file_name": 2, "include": 15, "data": 3, "writeable": 2, "_copyright": 1, - "db": 35, + "db": 30, + "Ah": 9, "VERSION_STRING": 1, "align": 1, "dd": 22, - "bytes_count": 8, - "displayed_count": 4, - "character": 3, - "last_displayed": 5, + "bytes_count": 1, + "displayed_count": 1, + "character": 1, + "last_displayed": 1, "rb": 4, "options": 1, - "buffer": 14, + "buffer": 1, "stack": 1, "import": 1, "rva": 16, "kernel_name": 2, "kernel_table": 2, - "ExitProcess": 2, + "ExitProcess": 1, "_ExitProcess": 2, - "CreateFile": 3, + "CreateFile": 1, "_CreateFileA": 2, - "ReadFile": 2, + "ReadFile": 1, "_ReadFile": 2, - "WriteFile": 6, + "WriteFile": 1, "_WriteFile": 2, - "CloseHandle": 2, + "CloseHandle": 1, "_CloseHandle": 2, - "SetFilePointer": 2, + "SetFilePointer": 1, "_SetFilePointer": 2, "_GetCommandLineA": 2, - "GetEnvironmentVariable": 2, + "GetEnvironmentVariable": 1, "_GetEnvironmentVariable": 2, - "GetStdHandle": 5, + "GetStdHandle": 1, "_GetStdHandle": 2, - "VirtualAlloc": 2, + "VirtualAlloc": 1, "_VirtualAlloc": 2, - "VirtualFree": 2, + "VirtualFree": 1, "_VirtualFree": 2, "_GetTickCount": 2, - "GetSystemTime": 2, + "GetSystemTime": 1, "_GetSystemTime": 2, - "GlobalMemoryStatus": 2, + "GlobalMemoryStatus": 1, "_GlobalMemoryStatus": 2, "dw": 14, "fixups": 1, - "discardable": 1, - "CREATE_NEW": 1, - "CREATE_ALWAYS": 2, - "OPEN_EXISTING": 2, - "OPEN_ALWAYS": 1, - "TRUNCATE_EXISTING": 1, - "FILE_SHARE_READ": 3, - "FILE_SHARE_WRITE": 1, - "FILE_SHARE_DELETE": 1, - "GENERIC_READ": 2, - "GENERIC_WRITE": 2, - "STD_INPUT_HANDLE": 1, - "FFFFFFF6h": 1, - "FFFFFFF5h": 1, - "STD_ERROR_HANDLE": 3, - "FFFFFFF4h": 1, - "MEM_COMMIT": 2, - "MEM_RESERVE": 1, - "MEM_DECOMMIT": 1, - "MEM_RELEASE": 2, - "MEM_FREE": 1, - "MEM_PRIVATE": 1, - "MEM_MAPPED": 1, - "MEM_RESET": 1, - "MEM_TOP_DOWN": 1, - "PAGE_NOACCESS": 1, - "PAGE_READONLY": 1, - "PAGE_READWRITE": 2, - "PAGE_WRITECOPY": 1, - "PAGE_EXECUTE": 1, - "PAGE_EXECUTE_READ": 1, - "PAGE_EXECUTE_READWRITE": 1, - "PAGE_EXECUTE_WRITECOPY": 1, - "PAGE_GUARD": 1, - "PAGE_NOCACHE": 1, - "allocate_memory": 4, - "jl": 13, - "large_memory": 3, - "not_enough_memory": 2, - "do_exit": 2, - "get_environment_variable": 1, - "buffer_for_variable_ok": 2, - "open": 2, - "file_error": 6, - "create": 1, - "write": 1, - "repne": 1, - "scasb": 1, - "display_loop": 2, - "display_digit": 3, - "digit_ok": 2, - "line_break_ok": 4, - "make_line_break": 2, - "A0Dh": 2, - "D0Ah": 1, - "take_last_two_characters": 2, - "block_displayed": 2, - "block_ok": 2, - "fatal_error": 1, - "error_prefix": 3, - "error_suffix": 3, - "FFh": 4, - "assembler_error": 1, - "get_error_lines": 2, - "get_next_error_line": 2, - "display_error_line": 3, - "find_definition_origin": 2, - "line_number_start": 3, - "FFFFFFFh": 2, - "line_number_ok": 2, - "line_data_start": 2, - "line_data_displayed": 2, - "get_line_data": 2, - "display_line_data": 5, - "cr_lf": 2, - "make_timestamp": 1, - "mul": 5, - "months_correction": 2, - "day_correction_ok": 4, - "day_correction": 2, - "simple_instruction_except64": 1, - "simple_instruction": 6, - "simple_instruction_only64": 1, - "simple_instruction_16bit_except64": 1, - "simple_instruction_16bit": 2, - "size_prefix": 3, - "simple_instruction_32bit_except64": 1, - "simple_instruction_32bit": 6, - "iret_instruction": 1, - "simple_instruction_64bit": 2, - "simple_extended_instruction_64bit": 1, - "simple_extended_instruction": 1, - "segment_register": 7, - "store_segment_prefix": 1, - "int_instruction": 1, - "get_size_operator": 137, - "invalid_operand_size": 131, - "jns": 1, - "int_imm_ok": 2, - "CDh": 1, - "aa_instruction": 1, - "aa_store": 2, - "basic_instruction": 1, - "basic_reg": 2, - "basic_mem": 1, - "get_address": 62, - "basic_mem_imm": 2, - "basic_mem_reg": 1, - "convert_register": 60, - "postbyte_register": 137, - "instruction_ready": 72, - "operand_autodetect": 47, - "store_instruction": 3, - "basic_mem_imm_nosize": 2, - "basic_mem_imm_8bit": 2, - "basic_mem_imm_16bit": 2, - "basic_mem_imm_32bit": 2, - "basic_mem_imm_64bit": 1, - "size_declared": 17, - "long_immediate_not_encodable": 14, - "operand_64bit": 18, - "get_simm32": 10, - "basic_mem_imm_32bit_ok": 2, - "recoverable_unknown_size": 19, - "store_instruction_with_imm8": 11, - "operand_16bit": 25, - "basic_mem_imm_16bit_store": 3, - "basic_mem_simm_8bit": 5, - "store_instruction_with_imm16": 4, - "operand_32bit": 27, - "basic_mem_imm_32bit_store": 3, - "store_instruction_with_imm32": 4, - "cdq": 11, - "get_simm32_ok": 2, - "basic_reg_reg": 2, - "basic_reg_imm": 2, - "basic_reg_mem": 1, - "basic_reg_mem_8bit": 2, - "nomem_instruction_ready": 53, - "store_nomem_instruction": 19, - "basic_reg_imm_8bit": 2, - "basic_reg_imm_16bit": 2, - "basic_reg_imm_32bit": 2, - "basic_reg_imm_64bit": 1, - "basic_reg_imm_32bit_ok": 2, - "basic_al_imm": 2, - "basic_reg_imm_16bit_store": 3, - "basic_reg_simm_8bit": 5, - "basic_ax_imm": 2, - "basic_store_imm_16bit": 2, - "store_instruction_code": 26, - "basic_reg_imm_32bit_store": 3, - "basic_eax_imm": 2, - "basic_store_imm_32bit": 2, - "ignore_unknown_size": 2, - "operand_size_not_specified": 1, - "single_operand_instruction": 1, - "F6h": 4, - "single_reg": 2, - "single_mem": 1, - "single_mem_8bit": 2, - "single_mem_nosize": 2, - "single_reg_8bit": 2, - "mov_instruction": 1, - "mov_reg": 2, - "mov_mem": 1, - "mov_mem_imm": 2, - "mov_mem_reg": 1, - "mov_mem_general_reg": 2, - "mov_mem_sreg": 2, - "mov_mem_reg_8bit": 2, - "mov_mem_ax": 2, - "mov_mem_al": 1, - "mov_mem_address16_al": 3, - "mov_mem_address32_al": 3, - "mov_mem_address64_al": 3, - "invalid_address_size": 18, - "store_segment_prefix_if_necessary": 17, - "address_32bit_prefix": 11, - "A2h": 3, - "store_mov_address32": 4, - "store_address_32bit_value": 1, - "address_16bit_prefix": 11, - "store_mov_address16": 4, - "invalid_address": 32, - "store_mov_address64": 4, - "store_address_64bit_value": 1, - "mov_mem_address16_ax": 3, - "mov_mem_address32_ax": 3, - "mov_mem_address64_ax": 3, - "A3h": 3, - "mov_mem_sreg_store": 2, - "mov_mem_imm_nosize": 2, - "mov_mem_imm_8bit": 2, - "mov_mem_imm_16bit": 2, - "mov_mem_imm_32bit": 2, - "mov_mem_imm_64bit": 1, - "mov_mem_imm_32bit_store": 2, - "C6h": 1, - "C7h": 4, - "F0h": 7, - "mov_sreg": 2, - "mov_reg_mem": 2, - "mov_reg_imm": 2, - "mov_reg_reg": 1, - "mov_reg_sreg": 2, - "mov_reg_reg_8bit": 2, - "mov_reg_creg": 2, - "mov_reg_dreg": 2, - "mov_reg_treg": 2, - "mov_reg_sreg64": 2, - "mov_reg_sreg32": 2, - "mov_reg_sreg_store": 3, - "extended_code": 73, - "mov_reg_xrx": 3, - "mov_reg_xrx_64bit": 2, - "mov_reg_xrx_store": 3, - "mov_reg_mem_8bit": 2, - "mov_ax_mem": 2, - "mov_al_mem": 2, - "mov_al_mem_address16": 3, - "mov_al_mem_address32": 3, - "mov_al_mem_address64": 3, - "A0h": 4, - "mov_ax_mem_address16": 3, - "mov_ax_mem_address32": 3, - "mov_ax_mem_address64": 3, - "A1h": 4, - "mov_reg_imm_8bit": 2, - "mov_reg_imm_16bit": 2, - "mov_reg_imm_32bit": 2, - "mov_reg_imm_64bit": 1, - "mov_reg_imm_64bit_store": 3, - "mov_reg_64bit_imm_32bit": 2, - "B8h": 3, - "store_mov_reg_imm_code": 5, - "B0h": 5, - "mov_store_imm_32bit": 2, - "mov_reg_imm_prefix_ok": 2, - "mov_creg": 2, - "mov_dreg": 2, - "mov_treg": 2, - "mov_sreg_mem": 2, - "mov_sreg_reg": 1, - "mov_sreg_reg_size_ok": 2, - "Eh": 8, - "mov_sreg_mem_size_ok": 2, - "mov_xrx": 3, - "mov_xrx_64bit": 2, - "mov_xrx_store": 4, - "test_instruction": 1, - "test_reg": 2, - "test_mem": 1, - "test_mem_imm": 2, - "test_mem_reg": 2, - "test_mem_reg_8bit": 2, - "test_mem_imm_nosize": 2, - "test_mem_imm_8bit": 2, - "test_mem_imm_16bit": 2, - "test_mem_imm_32bit": 2, - "test_mem_imm_64bit": 1, - "test_mem_imm_32bit_store": 2, - "F7h": 5, - "test_reg_mem": 3, - "test_reg_imm": 2, - "test_reg_reg": 1, - "test_reg_reg_8bit": 2, - "test_reg_imm_8bit": 2, - "test_reg_imm_16bit": 2, - "test_reg_imm_32bit": 2, - "test_reg_imm_64bit": 1, - "test_reg_imm_32bit_store": 2, - "test_al_imm": 2, - "A8h": 1, - "test_ax_imm": 2, - "A9h": 2, - "test_eax_imm": 2, - "test_reg_mem_8bit": 2, - "xchg_instruction": 1, - "xchg_reg": 2, - "xchg_mem": 1, - "xchg_reg_reg": 1, - "xchg_reg_reg_8bit": 2, - "xchg_ax_reg": 2, - "xchg_reg_reg_store": 3, - "xchg_ax_reg_ok": 3, - "xchg_ax_reg_store": 2, - "push_instruction": 1, - "push_size": 9, - "push_next": 2, - "push_reg": 2, - "push_imm": 2, - "push_mem": 1, - "push_mem_16bit": 3, - "push_mem_32bit": 3, - "push_mem_64bit": 3, - "push_mem_store": 4, - "push_done": 5, - "push_sreg": 2, - "push_reg_ok": 2, - "push_reg_16bit": 2, - "push_reg_32bit": 2, - "push_reg_64bit": 1, - "push_reg_store": 5, - "dh": 37, - "push_sreg16": 3, - "push_sreg32": 3, - "push_sreg64": 3, - "push_sreg_store": 4, - "push_sreg_386": 2, - "push_imm_size_ok": 3, - "push_imm_16bit": 2, - "push_imm_32bit": 2, - "push_imm_64bit": 2, - "push_imm_optimized_16bit": 3, - "push_imm_optimized_32bit": 3, - "push_imm_optimized_64bit": 2, - "push_imm_32bit_store": 8, - "push_imm_8bit": 3, - "push_imm_16bit_store": 4, - "pop_instruction": 1, - "pop_next": 2, - "pop_reg": 2, - "pop_mem": 1, - "pop_mem_16bit": 3, - "pop_mem_32bit": 3, - "pop_mem_64bit": 3, - "pop_mem_store": 4, - "pop_done": 3, - "pop_sreg": 2, - "pop_reg_ok": 2, - "pop_reg_16bit": 2, - "pop_reg_32bit": 2, - "pop_reg_64bit": 2, - "pop_reg_store": 5, - "pop_cs": 2, - "pop_sreg16": 3, - "pop_sreg32": 3, - "pop_sreg64": 3, - "pop_sreg_store": 4, - "pop_sreg_386": 2, - "pop_cs_store": 3, - "inc_instruction": 1, - "inc_reg": 2, - "inc_mem": 2, - "inc_mem_8bit": 2, - "inc_mem_nosize": 2, - "FEh": 2, - "inc_reg_8bit": 2, - "inc_reg_long_form": 2, - "set_instruction": 1, - "set_reg": 2, - "set_mem": 1, - "arpl_instruction": 1, - "arpl_reg": 2, - "bound_instruction": 1, - "bound_store": 2, - "enter_instruction": 1, - "enter_imm16_size_ok": 2, - "enter_imm16_ok": 2, - "js": 3, - "enter_imm8_size_ok": 2, - "enter_imm8_ok": 2, - "C8h": 2, - "ret_instruction_only64": 1, - "ret_instruction": 5, - "ret_instruction_32bit_except64": 1, - "ret_instruction_32bit": 1, - "ret_instruction_16bit": 1, - "retf_instruction": 1, - "ret_instruction_64bit": 1, - "simple_ret": 4, - "ret_imm": 3, - "ret_imm_ok": 2, - "ret_imm_store": 2, - "lea_instruction": 1, - "ls_instruction": 1, - "les_instruction": 2, - "lds_instruction": 2, - "ls_code_ok": 2, - "C4h": 1, - "ls_short_code": 2, - "C5h": 2, - "ls_16bit": 2, - "ls_32bit": 2, - "ls_64bit": 2, - "sh_instruction": 1, - "sh_reg": 2, - "sh_mem": 1, - "sh_mem_imm": 2, - "sh_mem_reg": 1, - "sh_mem_cl_8bit": 2, - "sh_mem_cl_nosize": 2, - "D3h": 2, - "D2h": 2, - "sh_mem_imm_size_ok": 2, - "sh_mem_imm_8bit": 2, - "sh_mem_imm_nosize": 2, - "sh_mem_1": 2, - "C1h": 2, - "D1h": 2, - "sh_mem_1_8bit": 2, - "C0h": 2, - "D0h": 2, - "sh_reg_imm": 2, - "sh_reg_reg": 1, - "sh_reg_cl_8bit": 2, - "sh_reg_imm_size_ok": 2, - "sh_reg_imm_8bit": 2, - "sh_reg_1": 2, - "sh_reg_1_8bit": 2, - "shd_instruction": 1, - "shd_reg": 2, - "shd_mem": 1, - "shd_mem_reg_imm": 2, - "shd_mem_reg_imm_size_ok": 2, - "shd_reg_reg_imm": 2, - "shd_reg_reg_imm_size_ok": 2, - "movx_instruction": 1, - "movx_reg": 2, - "movx_unknown_size": 2, - "movx_mem_store": 3, - "movx_reg_8bit": 2, - "movx_reg_16bit": 2, - "movsxd_instruction": 1, - "movsxd_reg": 2, - "movsxd_mem_store": 2, - "bt_instruction": 1, - "bt_reg": 2, - "bt_mem_imm": 3, - "bt_mem_reg": 2, - "bt_mem_imm_size_ok": 2, - "bt_mem_imm_nosize": 2, - "bt_mem_imm_store": 2, - "BAh": 2, - "bt_reg_imm": 3, - "bt_reg_reg": 2, - "bt_reg_imm_size_ok": 2, - "bt_reg_imm_store": 1, - "bs_instruction": 1, - "get_reg_mem": 2, - "bs_reg_reg": 2, - "get_reg_reg": 2, - "imul_instruction": 1, - "imul_reg": 2, - "imul_mem": 1, - "imul_mem_8bit": 2, - "imul_mem_nosize": 2, - "imul_reg_": 2, - "imul_reg_8bit": 2, - "imul_reg_imm": 3, - "imul_reg_noimm": 2, - "imul_reg_reg": 2, - "imul_reg_mem": 1, - "imul_reg_mem_imm": 2, - "AFh": 2, - "imul_reg_mem_imm_16bit": 2, - "imul_reg_mem_imm_32bit": 2, - "imul_reg_mem_imm_64bit": 1, - "imul_reg_mem_imm_32bit_ok": 2, - "imul_reg_mem_imm_16bit_store": 4, - "imul_reg_mem_imm_8bit_store": 3, - "imul_reg_mem_imm_32bit_store": 4, - "Bh": 11, - "imul_reg_reg_imm": 3, - "imul_reg_reg_imm_16bit": 2, - "imul_reg_reg_imm_32bit": 2, - "imul_reg_reg_imm_64bit": 1, - "imul_reg_reg_imm_32bit_ok": 2, - "imul_reg_reg_imm_16bit_store": 4, - "imul_reg_reg_imm_8bit_store": 3, - "imul_reg_reg_imm_32bit_store": 4, - "in_instruction": 1, - "in_imm": 2, - "in_reg": 2, - "in_al_dx": 2, - "in_ax_dx": 2, - "EDh": 1, - "ECh": 1, - "in_imm_size_ok": 2, - "in_al_imm": 2, - "in_ax_imm": 2, - "E5h": 1, - "E4h": 1, - "out_instruction": 1, - "out_imm": 2, - "out_dx_al": 2, - "out_dx_ax": 2, - "EFh": 1, - "EEh": 1, - "out_imm_size_ok": 2, - "out_imm_al": 2, - "out_imm_ax": 2, - "E7h": 1, - "E6h": 1, - "call_instruction": 1, - "E8h": 3, - "process_jmp": 2, - "jmp_instruction": 1, - "E9h": 1, - "EAh": 1, - "get_jump_operator": 3, - "jmp_imm": 2, - "jmp_reg": 2, - "jmp_mem": 1, - "jump_type": 14, - "jmp_mem_size_not_specified": 2, - "jmp_mem_16bit": 3, - "jmp_mem_32bit": 2, - "jmp_mem_48bit": 2, - "jmp_mem_64bit": 2, - "jmp_mem_80bit": 2, - "jmp_mem_far": 2, - "jmp_mem_near": 2, - "jmp_mem_near_32bit": 3, - "jmp_mem_far_32bit": 4, - "jmp_mem_far_store": 3, - "jmp_reg_16bit": 2, - "jmp_reg_32bit": 2, - "jmp_reg_64bit": 1, - "jmp_far": 2, - "jmp_near": 1, - "jmp_imm_16bit": 3, - "jmp_imm_32bit": 2, - "jmp_imm_64bit": 3, - "get_address_dword_value": 3, - "jmp_imm_32bit_prefix_ok": 2, - "calculate_jump_offset": 10, - "check_for_short_jump": 8, - "jmp_short": 3, - "jmp_imm_32bit_store": 2, - "jno": 2, - "jmp_imm_32bit_ok": 2, - "relative_jump_out_of_range": 6, - "get_address_qword_value": 3, - "EBh": 1, - "get_address_word_value": 3, - "jmp_imm_16bit_prefix_ok": 2, - "cwde": 3, - "forced_short": 2, - "no_short_jump": 4, - "short_jump": 4, - "jmp_short_value_type_ok": 2, - "jump_out_of_range": 3, - "jmp_far_16bit": 2, - "jmp_far_32bit": 3, - "jmp_far_segment": 2, - "conditional_jump": 1, - "conditional_jump_16bit": 3, - "conditional_jump_32bit": 2, - "conditional_jump_64bit": 3, - "conditional_jump_32bit_prefix_ok": 2, - "conditional_jump_short": 4, - "conditional_jump_32bit_store": 2, - "conditional_jump_32bit_range_ok": 2, - "conditional_jump_16bit_prefix_ok": 2, - "loop_instruction_16bit": 1, - "loop_instruction": 5, - "loop_instruction_32bit": 1, - "loop_instruction_64bit": 1, - "loop_jump_16bit": 3, - "loop_jump_32bit": 2, - "loop_jump_64bit": 3, - "loop_jump_32bit_prefix_ok": 2, - "loop_counter_size": 4, - "make_loop_jump": 3, - "loop_counter_size_ok": 2, - "loop_jump_16bit_prefix_ok": 2, - "movs_instruction": 1, - "address_sizes_do_not_agree": 2, - "movs_address_16bit": 2, - "movs_address_32bit": 2, - "movs_store": 3, - "A4h": 1, - "movs_check_size": 5, - "lods_instruction": 1, - "lods_address_16bit": 2, - "lods_address_32bit": 2, - "lods_store": 3, - "ACh": 1, - "stos_instruction": 1, - "stos_address_16bit": 2, - "stos_address_32bit": 2, - "stos_store": 3, - "cmps_instruction": 1, - "cmps_address_16bit": 2, - "cmps_address_32bit": 2, - "cmps_store": 3, - "A6h": 1, - "ins_instruction": 1, - "ins_address_16bit": 2, - "ins_address_32bit": 2, - "ins_store": 3, - "ins_check_size": 2, - "outs_instruction": 1, - "outs_address_16bit": 2, - "outs_address_32bit": 2, - "outs_store": 3, - "xlat_instruction": 1, - "xlat_address_16bit": 2, - "xlat_address_32bit": 2, - "xlat_store": 3, - "D7h": 1, - "pm_word_instruction": 1, - "pm_reg": 2, - "pm_mem": 2, - "pm_mem_store": 2, - "pm_store_word_instruction": 1, - "lgdt_instruction": 1, - "lgdt_mem_48bit": 2, - "lgdt_mem_80bit": 2, - "lgdt_mem_store": 4, - "lar_instruction": 1, - "lar_reg_reg": 2, - "lar_reg_mem": 2, - "invlpg_instruction": 1, - "swapgs_instruction": 1, - "rdtscp_instruction": 1, - "basic_486_instruction": 1, - "basic_486_reg": 2, - "basic_486_mem_reg_8bit": 2, - "basic_486_reg_reg_8bit": 2, - "bswap_instruction": 1, - "bswap_reg_code_ok": 2, - "bswap_reg64": 2, - "cmpxchgx_instruction": 1, - "cmpxchgx_size_ok": 2, - "cmpxchgx_store": 2, - "nop_instruction": 1, - "extended_nop": 4, - "extended_nop_reg": 2, - "extended_nop_store": 2, - "basic_fpu_instruction": 1, - "D8h": 2, - "basic_fpu_streg": 2, - "basic_fpu_mem": 2, - "basic_fpu_mem_32bit": 2, - "basic_fpu_mem_64bit": 2, - "DCh": 2, - "convert_fpu_register": 9, - "basic_fpu_single_streg": 3, - "basic_fpu_st0": 2, - "basic_fpu_streg_st0": 2, - "simple_fpu_instruction": 1, - "D9h": 6, - "fi_instruction": 1, - "fi_mem_16bit": 2, - "fi_mem_32bit": 2, - "DAh": 2, - "DEh": 2, - "fld_instruction": 1, - "fld_streg": 2, - "fld_mem_32bit": 2, - "fld_mem_64bit": 2, - "fld_mem_80bit": 2, - "DDh": 6, - "fld_mem_80bit_store": 3, - "DBh": 4, - "fst_streg": 2, - "fild_instruction": 1, - "fild_mem_16bit": 2, - "fild_mem_32bit": 2, - "fild_mem_64bit": 2, - "DFh": 5, - "fisttp_64bit_store": 2, - "fild_mem_64bit_store": 3, - "fbld_instruction": 1, - "fbld_mem_80bit": 3, - "faddp_instruction": 1, - "faddp_streg": 2, - "fcompp_instruction": 1, - "D9DEh": 1, - "fucompp_instruction": 1, - "E9DAh": 1, - "fxch_instruction": 1, - "fpu_single_operand": 3, - "ffreep_instruction": 1, - "ffree_instruction": 1, - "fpu_streg": 2, - "fstenv_instruction": 1, - "fldenv_instruction": 3, - "fpu_mem": 2, - "fstenv_instruction_16bit": 1, - "fldenv_instruction_16bit": 1, - "fstenv_instruction_32bit": 1, - "fldenv_instruction_32bit": 1, - "fsave_instruction_32bit": 1, - "fnsave_instruction_32bit": 1, - "fnsave_instruction": 3, - "fsave_instruction_16bit": 1, - "fnsave_instruction_16bit": 1, - "fsave_instruction": 1, - "fstcw_instruction": 1, - "fldcw_instruction": 1, - "fldcw_mem_16bit": 3, - "fstsw_instruction": 1, - "fnstsw_instruction": 1, - "fstsw_reg": 2, - "fstsw_mem_16bit": 3, - "E0DFh": 1, - "finit_instruction": 1, - "fninit_instruction": 1, - "fcmov_instruction": 1, - "fcomi_streg": 3, - "fcomi_instruction": 1, - "fcomip_instruction": 1, - "fcomi_st0_streg": 2, - "basic_mmx_instruction": 1, - "mmx_instruction": 1, - "convert_mmx_register": 18, - "make_mmx_prefix": 9, - "mmx_mmreg_mmreg": 3, - "mmx_mmreg_mem": 2, - "mmx_bit_shift_instruction": 1, - "mmx_ps_mmreg_imm8": 2, - "pmovmskb_instruction": 1, - "pmovmskb_reg_size_ok": 2, - "mmx_nomem_imm8": 7, - "mmx_imm8": 6, - "append_imm8": 2, - "pinsrw_instruction": 1, - "pinsrw_mmreg_reg": 2, - "pshufw_instruction": 1, - "mmx_size": 30, - "pshuf_instruction": 2, - "pshufd_instruction": 1, - "pshuf_mmreg_mmreg": 2, - "movd_instruction": 1, - "movd_reg": 2, - "movd_mmreg": 2, - "movd_mmreg_reg": 2, - "mmx_prefix_for_vex": 2, - "no_mmx_prefix": 2, - "movq_instruction": 1, - "movq_reg": 2, - "movq_mem_xmmreg": 2, - "D6h": 2, - "movq_mmreg": 2, - "movq_mmreg_": 2, - "F3h": 7, - "movq_mmreg_reg": 2, - "movq_mmreg_mmreg": 2, - "movq_mmreg_reg_store": 2, - "movdq_instruction": 1, - "movdq_mmreg": 2, - "convert_xmm_register": 12, - "movdq_mmreg_mmreg": 2, - "lddqu_instruction": 1, - "F2h": 6, - "movdq2q_instruction": 1, - "movq2dq_": 2, - "movq2dq_instruction": 1, - "sse_ps_instruction_imm8": 1, - "sse_ps_instruction": 1, - "sse_instruction": 11, - "sse_pd_instruction_imm8": 1, - "sse_pd_instruction": 1, - "sse_ss_instruction": 1, - "sse_sd_instruction": 1, - "cmp_pd_instruction": 1, - "cmp_ps_instruction": 1, - "C2h": 4, - "cmp_ss_instruction": 1, - "cmp_sx_instruction": 2, - "cmpsd_instruction": 1, - "A7h": 1, - "cmp_sd_instruction": 1, - "comiss_instruction": 1, - "comisd_instruction": 1, - "cvtdq2pd_instruction": 1, - "cvtps2pd_instruction": 1, - "cvtpd2dq_instruction": 1, - "movshdup_instruction": 1, - "sse_xmmreg": 2, - "sse_reg": 1, - "sse_xmmreg_xmmreg": 2, - "sse_reg_mem": 2, - "sse_mem_size_ok": 2, - "supplemental_code": 2, - "sse_cmp_mem_ok": 3, - "sse_ok": 2, - "take_additional_xmm0": 3, - "sse_xmmreg_xmmreg_ok": 4, - "sse_cmp_nomem_ok": 3, - "sse_nomem_ok": 2, - "additional_xmm0_ok": 2, - "pslldq_instruction": 1, - "movpd_instruction": 1, - "movps_instruction": 1, - "sse_mov_instruction": 3, - "movss_instruction": 1, - "sse_movs": 2, - "movsd_instruction": 1, - "A5h": 1, - "sse_mem": 2, - "sse_mem_xmmreg": 2, - "movlpd_instruction": 1, - "movlps_instruction": 1, - "movhlps_instruction": 1, - "maskmovq_instruction": 1, - "maskmov_instruction": 2, - "maskmovdqu_instruction": 1, - "movmskpd_instruction": 1, - "movmskps_instruction": 1, - "movmskps_reg_ok": 2, - "cvtpi2pd_instruction": 1, - "cvtpi2ps_instruction": 1 + "discardable": 1 }, "AutoHotkey": { "MsgBox": 1, @@ -70790,7 +69646,7 @@ "Arduino": 20, "AsciiDoc": 103, "AspectJ": 324, - "Assembly": 21750, + "Assembly": 743, "AutoHotkey": 3, "Awk": 544, "BlitzBasic": 2065, @@ -70990,7 +69846,7 @@ "Arduino": 1, "AsciiDoc": 3, "AspectJ": 2, - "Assembly": 4, + "Assembly": 1, "AutoHotkey": 1, "Awk": 1, "BlitzBasic": 3, @@ -71179,5 +70035,5 @@ "fish": 3, "wisp": 1 }, - "md5": "b82e97a2c9c123d8e370eeffe64a1a1d" + "md5": "cedc5d3fde7e7b87467bdf820d674b95" } \ No newline at end of file From 3e2f18bf3f8bc7cfa3d0eca7c14225bdac9580b8 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Fri, 4 Jul 2014 18:45:43 -0500 Subject: [PATCH 105/268] Testing Pods --- test/test_blob.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/test_blob.rb b/test/test_blob.rb index da13b96e..4de32c40 100644 --- a/test/test_blob.rb +++ b/test/test_blob.rb @@ -363,6 +363,9 @@ class TestBlob < Test::Unit::TestCase # NuGet Packages assert blob("packages/Modernizr.2.0.6/Content/Scripts/modernizr-2.0.6-development-only.js").vendored? + + # Cocoapods + assert blob('Pods/blah').vendored? # Test fixtures assert blob("test/fixtures/random.rkt").vendored? From 986611ac36dcea2aacf0d165620b0f32167e209f Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Fri, 4 Jul 2014 21:12:46 -0500 Subject: [PATCH 106/268] Ask Charlock earlier --- lib/linguist/language.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/language.rb b/lib/linguist/language.rb index 81e70361..87f84f7b 100644 --- a/lib/linguist/language.rb +++ b/lib/linguist/language.rb @@ -104,7 +104,7 @@ module Linguist # # We'll perform a more comprehensive test later which actually involves # looking for binary characters in the blob - return nil if blob.likely_binary? + return nil if blob.likely_binary? || blob.binary? # A bit of an elegant hack. If the file is executable but extensionless, # append a "magic" extension so it can be classified with other From 6762ca8aa7121a7e60c3eb9de80403602847c685 Mon Sep 17 00:00:00 2001 From: Arthur Verschaeve Date: Mon, 7 Jul 2014 08:53:42 +0200 Subject: [PATCH 107/268] Update vendor.yml: normalize.css Added popular CSS reset Normalize.css (http://necolas.github.io/normalize.css/) --- lib/linguist/vendor.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/linguist/vendor.yml b/lib/linguist/vendor.yml index 68e60eae..c497960c 100644 --- a/lib/linguist/vendor.yml +++ b/lib/linguist/vendor.yml @@ -40,6 +40,9 @@ - foundation.min.css - foundation.css +# Normalize.css +- normalize.css + # Vendored dependencies - thirdparty/ - vendors?/ From bc7596a8b5232ba9b5122c7969ac453b954ea268 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Mon, 7 Jul 2014 15:24:22 -0500 Subject: [PATCH 108/268] Removing second binary? check --- lib/linguist/language.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/linguist/language.rb b/lib/linguist/language.rb index 87f84f7b..f1836721 100644 --- a/lib/linguist/language.rb +++ b/lib/linguist/language.rb @@ -124,7 +124,7 @@ module Linguist possible_language_names = possible_languages.map(&:name) # Don't bother with binary contents or an empty file - if blob.binary? || data.nil? || data == "" + if data.nil? || data == "" nil # Check if there's a shebang line and use that as authoritative elsif (result = find_by_shebang(data)) && !result.empty? @@ -401,7 +401,7 @@ module Linguist # # Returns the extensions Array attr_reader :filenames - + # Public: Return all possible extensions for language def all_extensions (extensions + [primary_extension]).uniq From 5ca211b9f736e0f17c153d70adc7e5a444d12483 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Mon, 7 Jul 2014 15:34:10 -0500 Subject: [PATCH 109/268] Adding test for Normalize.css --- test/test_blob.rb | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/test/test_blob.rb b/test/test_blob.rb index 2977bb90..aba82084 100644 --- a/test/test_blob.rb +++ b/test/test_blob.rb @@ -277,7 +277,7 @@ class TestBlob < Test::Unit::TestCase # 'thirdparty' directory assert blob("thirdparty/lib/main.c").vendored? - + # 'extern(al)' directory assert blob("extern/util/__init__.py").vendored? assert blob("external/jquery.min.js").vendored? @@ -385,7 +385,10 @@ class TestBlob < Test::Unit::TestCase # NuGet Packages assert blob("packages/Modernizr.2.0.6/Content/Scripts/modernizr-2.0.6-development-only.js").vendored? - + + # Normalize + assert blob("some/asset/path/normalize.css").vendored? + # Cocoapods assert blob('Pods/blah').vendored? From 7393c2ef9196b41a3a94216e99bbba9516b99b75 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Mon, 7 Jul 2014 15:47:04 -0500 Subject: [PATCH 110/268] 3.0.3 release --- lib/linguist/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/version.rb b/lib/linguist/version.rb index b7ed14c9..89151b75 100644 --- a/lib/linguist/version.rb +++ b/lib/linguist/version.rb @@ -1,3 +1,3 @@ module Linguist - VERSION = "3.0.2" + VERSION = "3.0.3" end From f404cc16a18779f08595117e8001973176cb4c82 Mon Sep 17 00:00:00 2001 From: William Woodruff Date: Tue, 8 Jul 2014 00:41:34 -0400 Subject: [PATCH 111/268] added two more common file endings for perl programs --- lib/linguist/languages.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 120cee58..e74341e6 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1609,6 +1609,8 @@ Perl: - .pm - .pod - .psgi + - .cgi + - .t interpreters: - perl From db80aa84dceae5f4b6f17dbb8552c86882905240 Mon Sep 17 00:00:00 2001 From: William Woodruff Date: Tue, 8 Jul 2014 12:31:40 -0400 Subject: [PATCH 112/268] fixed extension order --- lib/linguist/languages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index e74341e6..9060acaa 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1601,6 +1601,7 @@ Perl: ace_mode: perl color: "#0298c3" extensions: + - .cgi - .pl - .PL - .perl @@ -1609,7 +1610,6 @@ Perl: - .pm - .pod - .psgi - - .cgi - .t interpreters: - perl From 2ef905ef1e2c066ca00deea5bdbeedf425ff34db Mon Sep 17 00:00:00 2001 From: William Woodruff Date: Tue, 8 Jul 2014 12:43:31 -0400 Subject: [PATCH 113/268] fixed extension order, hopefully correctly this time --- lib/linguist/languages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 9060acaa..4b6b0884 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1601,8 +1601,8 @@ Perl: ace_mode: perl color: "#0298c3" extensions: - - .cgi - .pl + - .cgi - .PL - .perl - .ph From e6fd58b3aa86d942333e8e8f2bc9f58dbdf64ba6 Mon Sep 17 00:00:00 2001 From: William Woodruff Date: Tue, 8 Jul 2014 12:53:55 -0400 Subject: [PATCH 114/268] fixed extension order, hopefully correctly this time --- lib/linguist/languages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 4b6b0884..4347d7be 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1602,8 +1602,8 @@ Perl: color: "#0298c3" extensions: - .pl - - .cgi - .PL + - .cgi - .perl - .ph - .plx From cfeb2a833cfd12d842e8940b517f286b348d5288 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Wed, 9 Jul 2014 12:11:25 -0500 Subject: [PATCH 115/268] Checking all files for binary? --- test/test_blob.rb | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/test/test_blob.rb b/test/test_blob.rb index aba82084..fc9e13c5 100644 --- a/test/test_blob.rb +++ b/test/test_blob.rb @@ -140,6 +140,13 @@ class TestBlob < Test::Unit::TestCase assert !blob("Perl/script.pl").binary? end + def test_all_binary + Samples.each do |sample| + blob = blob(sample[:path]) + assert ! (blob.likely_binary? || blob.binary?), "#{sample[:path]} is a binary file" + end + end + def test_text assert blob("Text/README").text? assert blob("Text/dump.sql").text? From 6af5adaac1767039ae246341748c9ebbe3a2c7e4 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Wed, 9 Jul 2014 12:56:50 -0500 Subject: [PATCH 116/268] blob.mode --- lib/linguist/language.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/language.rb b/lib/linguist/language.rb index 9088cfc0..b2245b87 100644 --- a/lib/linguist/language.rb +++ b/lib/linguist/language.rb @@ -110,7 +110,7 @@ module Linguist # append a "magic" extension so it can be classified with other # languages that have shebang scripts. extension = FileBlob.new(name).extension - if extension.empty? && mode && (mode.to_i(8) & 05) == 05 + if extension.empty? && blob.mode && (blob.mode.to_i(8) & 05) == 05 name += ".script!" end From 1828cf6fc72d0f9b0b0dfcf5df21285974331087 Mon Sep 17 00:00:00 2001 From: Arthur Verschaeve Date: Fri, 11 Jul 2014 20:07:42 +0200 Subject: [PATCH 117/268] Update vendor.yml: added animate.css --- lib/linguist/vendor.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/linguist/vendor.yml b/lib/linguist/vendor.yml index c497960c..7e8e51e6 100644 --- a/lib/linguist/vendor.yml +++ b/lib/linguist/vendor.yml @@ -43,6 +43,10 @@ # Normalize.css - normalize.css +# Animate.css +- animate.css +- animate.min.css + # Vendored dependencies - thirdparty/ - vendors?/ From 60144c907e165b997b82138298dbf36c640584a9 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Tue, 15 Jul 2014 11:01:41 -0700 Subject: [PATCH 118/268] Modifying Mirah search terms --- lib/linguist/languages.yml | 2 +- test/test_language.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 120cee58..5996fc8c 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1345,7 +1345,7 @@ MiniD: # Legacy Mirah: type: programming lexer: Ruby - search_term: ruby + search_term: mirah color: "#c7a938" extensions: - .druby diff --git a/test/test_language.rb b/test/test_language.rb index fa92f38c..7c81ceef 100644 --- a/test/test_language.rb +++ b/test/test_language.rb @@ -167,7 +167,7 @@ class TestLanguage < Test::Unit::TestCase assert_equal 'pot', Language['Gettext Catalog'].search_term assert_equal 'irc', Language['IRC log'].search_term assert_equal 'lhs', Language['Literate Haskell'].search_term - assert_equal 'ruby', Language['Mirah'].search_term + assert_equal 'mirah', Language['Mirah'].search_term assert_equal 'raw', Language['Raw token data'].search_term assert_equal 'bash', Language['Shell'].search_term assert_equal 'vim', Language['VimL'].search_term From 2913a87cc4717d4b79f91a5c9b2689fe18fd3bf5 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Tue, 15 Jul 2014 11:54:59 -0700 Subject: [PATCH 119/268] Linguist v3.0.4 --- lib/linguist/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/version.rb b/lib/linguist/version.rb index 89151b75..ca873949 100644 --- a/lib/linguist/version.rb +++ b/lib/linguist/version.rb @@ -1,3 +1,3 @@ module Linguist - VERSION = "3.0.3" + VERSION = "3.0.4" end From a1af3a509c299d96754c217994985653d54925b4 Mon Sep 17 00:00:00 2001 From: Josh Abernathy Date: Tue, 15 Jul 2014 12:06:55 -0700 Subject: [PATCH 120/268] Most Xcode files have a human-readable diff now! --- lib/linguist/generated.rb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/linguist/generated.rb b/lib/linguist/generated.rb index 761288f0..2074e008 100644 --- a/lib/linguist/generated.rb +++ b/lib/linguist/generated.rb @@ -54,7 +54,7 @@ module Linguist name == 'Gemfile.lock' || minified_files? || compiled_coffeescript? || - xcode_project_file? || + xcode_file? || generated_parser? || generated_net_docfile? || generated_net_designer_file? || @@ -67,14 +67,14 @@ module Linguist generated_by_zephir? end - # Internal: Is the blob an XCode project file? + # Internal: Is the blob an Xcode file? # - # Generated if the file extension is an XCode project + # Generated if the file extension is an Xcode # file extension. # # Returns true of false. - def xcode_project_file? - ['.xib', '.nib', '.storyboard', '.pbxproj', '.xcworkspacedata', '.xcuserstate'].include?(extname) + def xcode_file? + ['.nib', '.pbxproj'].include?(extname) end # Internal: Is the blob minified files? From 5c3385ecd817c824691698f9c6ec392b054848b1 Mon Sep 17 00:00:00 2001 From: Josh Abernathy Date: Tue, 15 Jul 2014 12:08:23 -0700 Subject: [PATCH 121/268] Actually let's keep those. --- lib/linguist/generated.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/generated.rb b/lib/linguist/generated.rb index 2074e008..a0f3a285 100644 --- a/lib/linguist/generated.rb +++ b/lib/linguist/generated.rb @@ -74,7 +74,7 @@ module Linguist # # Returns true of false. def xcode_file? - ['.nib', '.pbxproj'].include?(extname) + ['.nib', '.pbxproj', '.xcworkspacedata', '.xcuserstate'].include?(extname) end # Internal: Is the blob minified files? From 4d7a34c17732d00de2c8202d5333fdfbeafa4a98 Mon Sep 17 00:00:00 2001 From: Josh Abernathy Date: Tue, 15 Jul 2014 12:27:35 -0700 Subject: [PATCH 122/268] pbproj's are cool too. --- lib/linguist/generated.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/linguist/generated.rb b/lib/linguist/generated.rb index a0f3a285..974fc7ae 100644 --- a/lib/linguist/generated.rb +++ b/lib/linguist/generated.rb @@ -74,7 +74,7 @@ module Linguist # # Returns true of false. def xcode_file? - ['.nib', '.pbxproj', '.xcworkspacedata', '.xcuserstate'].include?(extname) + ['.nib', '.xcworkspacedata', '.xcuserstate'].include?(extname) end # Internal: Is the blob minified files? @@ -256,3 +256,4 @@ module Linguist end end end + From 9f0f4657a258b1d6aedfec77d12d69405c639acb Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Tue, 15 Jul 2014 16:13:46 -0700 Subject: [PATCH 123/268] Fixing broken test --- test/test_blob.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_blob.rb b/test/test_blob.rb index fc9e13c5..54e10030 100644 --- a/test/test_blob.rb +++ b/test/test_blob.rb @@ -192,9 +192,9 @@ class TestBlob < Test::Unit::TestCase assert !blob("Text/README").generated? # Xcode project files - assert blob("XML/MainMenu.xib").generated? + assert !blob("XML/MainMenu.xib").generated? assert blob("Binary/MainMenu.nib").generated? - assert blob("XML/project.pbxproj").generated? + assert !blob("XML/project.pbxproj").generated? # Gemfile.locks assert blob("Gemfile.lock").generated? From 529d3faaf8adde7a7ff083ad08a7a71d9374ed6f Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Tue, 15 Jul 2014 16:24:17 -0700 Subject: [PATCH 124/268] Explictly load FileBlob --- lib/linguist/language.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/linguist/language.rb b/lib/linguist/language.rb index b2245b87..fa1551cb 100644 --- a/lib/linguist/language.rb +++ b/lib/linguist/language.rb @@ -9,6 +9,7 @@ end require 'linguist/classifier' require 'linguist/heuristics' require 'linguist/samples' +require 'linguist/file_blob' module Linguist # Language names that are recognizable by GitHub. Defined languages From 7aca52c68cee2389c5b8cc89b820591ae348a242 Mon Sep 17 00:00:00 2001 From: grindhold Date: Sun, 20 Jul 2014 08:33:18 +0200 Subject: [PATCH 125/268] added emberscript and provided sample --- lib/linguist/languages.yml | 7 +++++++ samples/EmberScript/momentComponent.em | 23 +++++++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 samples/EmberScript/momentComponent.em diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 5996fc8c..25bc46f6 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -612,6 +612,13 @@ Emacs Lisp: - .el - .emacs +EmberScript: + type: programming + color: "#f64e3e" + extensions: + - .em + - .emberscript + Erlang: type: programming color: "#0faf8d" diff --git a/samples/EmberScript/momentComponent.em b/samples/EmberScript/momentComponent.em new file mode 100644 index 00000000..cdca9dc5 --- /dev/null +++ b/samples/EmberScript/momentComponent.em @@ -0,0 +1,23 @@ +class App.FromNowView extends Ember.View + tagName: 'time' + template: Ember.Handlebars.compile '{{view.output}}' + output: ~> + return moment(@value).fromNow() + + didInsertElement: -> + @tick() + + tick: -> + f = -> + @notifyPropertyChange 'output' + @tick() + + nextTick = Ember.run.later(this, f, 1000) + @set 'nextTick', nextTick + + willDestroyElement: -> + nextTick = @nextTick + Ember.run.cancel nextTick + +Ember.Handlebars.helper 'fromNow', App.FromNowView + From fea0d8963c8dfe6d49cba53ab5fccd5a2e942d7a Mon Sep 17 00:00:00 2001 From: grindhold Date: Sun, 20 Jul 2014 08:59:09 +0200 Subject: [PATCH 126/268] added coffeescript lexer for emberscript --- lib/linguist/languages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 25bc46f6..57949441 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -615,6 +615,7 @@ Emacs Lisp: EmberScript: type: programming color: "#f64e3e" + lexer: CoffeeScript extensions: - .em - .emberscript From 8c7b54d6e36d58964d69dbe4bdb633e465aff36c Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Tue, 22 Jul 2014 12:26:09 -0500 Subject: [PATCH 127/268] Fixing BlobHelper loading issue --- lib/linguist/blob_helper.rb | 1 - lib/linguist/language.rb | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/blob_helper.rb b/lib/linguist/blob_helper.rb index 27c4b3dd..ff2c097c 100644 --- a/lib/linguist/blob_helper.rb +++ b/lib/linguist/blob_helper.rb @@ -1,5 +1,4 @@ require 'linguist/generated' -require 'linguist/language' require 'charlock_holmes' require 'escape_utils' diff --git a/lib/linguist/language.rb b/lib/linguist/language.rb index fa1551cb..4b251834 100644 --- a/lib/linguist/language.rb +++ b/lib/linguist/language.rb @@ -10,6 +10,7 @@ require 'linguist/classifier' require 'linguist/heuristics' require 'linguist/samples' require 'linguist/file_blob' +require 'linguist/blob_helper' module Linguist # Language names that are recognizable by GitHub. Defined languages From 26dad7dada5d9ef6e019dd5659beb35535736e8e Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Tue, 22 Jul 2014 12:51:24 -0500 Subject: [PATCH 128/268] 3.1.0beta --- lib/linguist/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/version.rb b/lib/linguist/version.rb index ca873949..3810c3d4 100644 --- a/lib/linguist/version.rb +++ b/lib/linguist/version.rb @@ -1,3 +1,3 @@ module Linguist - VERSION = "3.0.4" + VERSION = "3.1.0beta" end From 437f81c4a02cae230251ef5839d83d5182a8beef Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Tue, 22 Jul 2014 13:59:58 -0500 Subject: [PATCH 129/268] 3.1.0 --- lib/linguist/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/version.rb b/lib/linguist/version.rb index 3810c3d4..217ac4f3 100644 --- a/lib/linguist/version.rb +++ b/lib/linguist/version.rb @@ -1,3 +1,3 @@ module Linguist - VERSION = "3.1.0beta" + VERSION = "3.1.0" end From e860f961a9b009d17517ac960cc9ad8706f3cf3d Mon Sep 17 00:00:00 2001 From: Josh Oldenburg Date: Mon, 26 May 2014 10:35:11 -0400 Subject: [PATCH 130/268] Ignore files related to Cocoapods. These include Podfile, Podfile.lock, and Pods/. --- lib/linguist/vendor.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/linguist/vendor.yml b/lib/linguist/vendor.yml index 4b67fdda..21044be7 100644 --- a/lib/linguist/vendor.yml +++ b/lib/linguist/vendor.yml @@ -125,6 +125,11 @@ ## Obj-C ## +# Cocoapods +- ^Podfile$ +- ^Podfile.lock$ +- ^Pods/$ + # Sparkle - (^|/)Sparkle/ From 5abec96df701e46ab75402f734f464d7e26889c9 Mon Sep 17 00:00:00 2001 From: Josh Oldenburg Date: Tue, 1 Jul 2014 21:38:51 -0400 Subject: [PATCH 131/268] Only ignore Pods/ for CocoaPods. --- lib/linguist/vendor.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/linguist/vendor.yml b/lib/linguist/vendor.yml index 21044be7..ad112887 100644 --- a/lib/linguist/vendor.yml +++ b/lib/linguist/vendor.yml @@ -126,8 +126,6 @@ ## Obj-C ## # Cocoapods -- ^Podfile$ -- ^Podfile.lock$ - ^Pods/$ # Sparkle From 272dd45a430f22fab4d6e3e9ad7c508da0641249 Mon Sep 17 00:00:00 2001 From: Josh Oldenburg Date: Thu, 3 Jul 2014 16:18:58 -0400 Subject: [PATCH 132/268] Ignore everything in the Pods directory. --- lib/linguist/vendor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/vendor.yml b/lib/linguist/vendor.yml index ad112887..68e60eae 100644 --- a/lib/linguist/vendor.yml +++ b/lib/linguist/vendor.yml @@ -126,7 +126,7 @@ ## Obj-C ## # Cocoapods -- ^Pods/$ +- ^Pods/ # Sparkle - (^|/)Sparkle/ From c8d1e9def171f7281ab7d2e4cf0e4ba133447a1d Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Fri, 4 Jul 2014 18:45:43 -0500 Subject: [PATCH 133/268] Testing Pods --- test/test_blob.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/test_blob.rb b/test/test_blob.rb index eb65d1d8..2977bb90 100644 --- a/test/test_blob.rb +++ b/test/test_blob.rb @@ -385,6 +385,9 @@ class TestBlob < Test::Unit::TestCase # NuGet Packages assert blob("packages/Modernizr.2.0.6/Content/Scripts/modernizr-2.0.6-development-only.js").vendored? + + # Cocoapods + assert blob('Pods/blah').vendored? # Html5shiv assert blob("Scripts/html5shiv.js").vendored? From dab97776216ba45954900f8ff0eb282e7628b5d8 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Sun, 6 Jul 2014 22:03:50 -0500 Subject: [PATCH 134/268] Branches --- Rakefile | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/Rakefile b/Rakefile index e89e75a9..5378340a 100644 --- a/Rakefile +++ b/Rakefile @@ -22,6 +22,39 @@ task :build_gem do File.delete("lib/linguist/languages.json") end +namespace :benchmark do + require 'git' + git = Git.open('.') + + desc "Testin'" + task :run do + reference, compare = ENV['compare'].split('...') + puts "Comparing #{reference}...#{current}" + puts "Unstaged changes" and return if git.status.changed.any? + + # Get the current branch + current_branch = `git rev-parse --abbrev-ref HEAD`.strip + + # Create tmp branch for reference commit + git.branch("tmp_#{reference}").checkout + git.reset_hard(reference) + + # RUN BENCHMARK + + git.branch("tmp_#{compare}").checkout + git.reset_hard(compare) + + # RUN BENCHMARK AGAIN + + git.branch(current_branch).checkout + + # CLEAN UP + git.branch("tmp_#{reference}").delete + git.branch("tmp_#{compare}").delete + + end +end + namespace :classifier do LIMIT = 1_000 From 0a717f5c8169f165d4063fd0eb3f2869ce280224 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Sun, 6 Jul 2014 22:05:36 -0500 Subject: [PATCH 135/268] Gem --- Rakefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Rakefile b/Rakefile index 5378340a..9e7e4091 100644 --- a/Rakefile +++ b/Rakefile @@ -33,6 +33,7 @@ namespace :benchmark do puts "Unstaged changes" and return if git.status.changed.any? # Get the current branch + # Would like to get this from the Git gem current_branch = `git rev-parse --abbrev-ref HEAD`.strip # Create tmp branch for reference commit From 7fbb9edc0f66618d8e4141b64ced26d6bb0125f8 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Sun, 6 Jul 2014 22:06:12 -0500 Subject: [PATCH 136/268] Gem deps --- github-linguist.gemspec | 1 + 1 file changed, 1 insertion(+) diff --git a/github-linguist.gemspec b/github-linguist.gemspec index 936550f3..11fe1be1 100644 --- a/github-linguist.gemspec +++ b/github-linguist.gemspec @@ -19,6 +19,7 @@ Gem::Specification.new do |s| s.add_dependency 'pygments.rb', '~> 0.6.0' s.add_dependency 'rugged', '~> 0.21.0' + s.add_development_dependency 'git' s.add_development_dependency 'json' s.add_development_dependency 'mocha' s.add_development_dependency 'rake' From 6454c96e6ae7281e3b3433388a0e2cdb26763a59 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Sun, 6 Jul 2014 22:10:43 -0500 Subject: [PATCH 137/268] Abort --- Rakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Rakefile b/Rakefile index 9e7e4091..6c109d6b 100644 --- a/Rakefile +++ b/Rakefile @@ -29,8 +29,8 @@ namespace :benchmark do desc "Testin'" task :run do reference, compare = ENV['compare'].split('...') - puts "Comparing #{reference}...#{current}" - puts "Unstaged changes" and return if git.status.changed.any? + puts "Comparing #{reference}...#{compare}" + abort("Unstaged changes") if git.status.changed.any? # Get the current branch # Would like to get this from the Git gem From 9094923de96ca51a3a9b5c1bf68dda3732aebf71 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Sun, 6 Jul 2014 22:11:54 -0500 Subject: [PATCH 138/268] Debug statements --- Rakefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Rakefile b/Rakefile index 6c109d6b..753f7748 100644 --- a/Rakefile +++ b/Rakefile @@ -37,11 +37,14 @@ namespace :benchmark do current_branch = `git rev-parse --abbrev-ref HEAD`.strip # Create tmp branch for reference commit + puts "Creating branch tmp_#{reference}" git.branch("tmp_#{reference}").checkout git.reset_hard(reference) # RUN BENCHMARK + # Create tmp branch for compare commit + puts "Creating branch tmp_#{compare}" git.branch("tmp_#{compare}").checkout git.reset_hard(compare) From cac9873e20d0c65187839e87f47232be584c13cd Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Sun, 6 Jul 2014 22:14:32 -0500 Subject: [PATCH 139/268] Ignoring benchmark files --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 97ef7367..391e05a0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ Gemfile.lock .bundle/ vendor/ +benchmark/ From 5235871fd868edf17d80583267392c361f38aa88 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Mon, 7 Jul 2014 12:55:43 -0500 Subject: [PATCH 140/268] Pry for development. --- github-linguist.gemspec | 1 + 1 file changed, 1 insertion(+) diff --git a/github-linguist.gemspec b/github-linguist.gemspec index 11fe1be1..d61d7658 100644 --- a/github-linguist.gemspec +++ b/github-linguist.gemspec @@ -22,6 +22,7 @@ Gem::Specification.new do |s| s.add_development_dependency 'git' s.add_development_dependency 'json' s.add_development_dependency 'mocha' + s.add_development_dependency 'pry' s.add_development_dependency 'rake' s.add_development_dependency 'yajl-ruby' end From f7672b837a4e50bb7d3910ff615cd2695ab78025 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Mon, 7 Jul 2014 12:56:36 -0500 Subject: [PATCH 141/268] Building language indexes --- Rakefile | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/Rakefile b/Rakefile index 753f7748..6527a82f 100644 --- a/Rakefile +++ b/Rakefile @@ -2,6 +2,7 @@ require 'json' require 'rake/clean' require 'rake/testtask' require 'yaml' +require 'pry' task :default => :test @@ -24,6 +25,8 @@ end namespace :benchmark do require 'git' + require 'linguist/language' + git = Git.open('.') desc "Testin'" @@ -42,6 +45,10 @@ namespace :benchmark do git.reset_hard(reference) # RUN BENCHMARK + # Go through benchmark/samples/LANG dirs + # For each Language + + Rake::Task["benchmark:index"].execute(:commit => reference) # Create tmp branch for compare commit puts "Creating branch tmp_#{compare}" @@ -49,6 +56,7 @@ namespace :benchmark do git.reset_hard(compare) # RUN BENCHMARK AGAIN + Rake::Task["benchmark:index"].execute(:commit => compare) git.branch(current_branch).checkout @@ -56,6 +64,29 @@ namespace :benchmark do git.branch("tmp_#{reference}").delete git.branch("tmp_#{compare}").delete + # DO COMPARISON... + end + + desc "Build benchmark index" + task :index, [:commit] do |t, args| + results = Hash.new + languages = Dir.glob('benchmark/samples/*') + + languages.each do |lang| + results[lang] = {} + files = Dir.glob("#{lang}/*") + files.each do |file| + result = IO::popen("bundle exec linguist #{file} --simple").read + filename = File.basename(file) + if result.chomp.empty? # No results + results[lang][filename] = "No language" + else + results[lang][filename] = result.chomp + end + end + end + + File.open("benchmark/results/#{args[:commit]}_output.json", "w") {|f| f.write(results.to_json) } end end From a474ffc101b78cbc39e6e587ae1df6963df35409 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Mon, 7 Jul 2014 13:23:04 -0500 Subject: [PATCH 142/268] Deep diffing --- Rakefile | 9 +++++++++ lib/linguist/diff.rb | 15 +++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 lib/linguist/diff.rb diff --git a/Rakefile b/Rakefile index 6527a82f..5ee3b515 100644 --- a/Rakefile +++ b/Rakefile @@ -26,6 +26,8 @@ end namespace :benchmark do require 'git' require 'linguist/language' + require 'linguist/diff' + require 'json' git = Git.open('.') @@ -65,6 +67,11 @@ namespace :benchmark do git.branch("tmp_#{compare}").delete # DO COMPARISON... + reference_classifications = JSON.parse(File.read("benchmark/results/#{reference}_output.json")) + + compare_classifications = JSON.parse(File.read("benchmark/results/#{compare}_output.json")) + + puts reference_classifications.deep_diff(compare_classifications) end desc "Build benchmark index" @@ -73,9 +80,11 @@ namespace :benchmark do languages = Dir.glob('benchmark/samples/*') languages.each do |lang| + puts "Starting with #{lang}" results[lang] = {} files = Dir.glob("#{lang}/*") files.each do |file| + puts file result = IO::popen("bundle exec linguist #{file} --simple").read filename = File.basename(file) if result.chomp.empty? # No results diff --git a/lib/linguist/diff.rb b/lib/linguist/diff.rb new file mode 100644 index 00000000..0cf75182 --- /dev/null +++ b/lib/linguist/diff.rb @@ -0,0 +1,15 @@ +class Hash + def deep_diff(b) + a = self + (a.keys | b.keys).inject({}) do |diff, k| + if a[k] != b[k] + if a[k].respond_to?(:deep_diff) && b[k].respond_to?(:deep_diff) + diff[k] = a[k].deep_diff(b[k]) + else + diff[k] = [a[k], b[k]] + end + end + diff + end + end +end From 3b23059c093a3819db1caf52897adff073ce824d Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Mon, 7 Jul 2014 13:24:38 -0500 Subject: [PATCH 143/268] Prettier print --- Rakefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Rakefile b/Rakefile index 5ee3b515..fe15f9e3 100644 --- a/Rakefile +++ b/Rakefile @@ -35,7 +35,7 @@ namespace :benchmark do task :run do reference, compare = ENV['compare'].split('...') puts "Comparing #{reference}...#{compare}" - abort("Unstaged changes") if git.status.changed.any? + abort("Unstaged changes - aborting") if git.status.changed.any? # Get the current branch # Would like to get this from the Git gem @@ -80,11 +80,12 @@ namespace :benchmark do languages = Dir.glob('benchmark/samples/*') languages.each do |lang| + puts "" puts "Starting with #{lang}" results[lang] = {} files = Dir.glob("#{lang}/*") files.each do |file| - puts file + puts " #{file}" result = IO::popen("bundle exec linguist #{file} --simple").read filename = File.basename(file) if result.chomp.empty? # No results From 4ecda08f1f680b918937af77a7cbf856b6382a33 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Mon, 7 Jul 2014 13:26:20 -0500 Subject: [PATCH 144/268] Prettier print --- Rakefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index fe15f9e3..f1803707 100644 --- a/Rakefile +++ b/Rakefile @@ -53,7 +53,8 @@ namespace :benchmark do Rake::Task["benchmark:index"].execute(:commit => reference) # Create tmp branch for compare commit - puts "Creating branch tmp_#{compare}" + puts "" + puts "Creating temporary branch tmp_#{compare}" git.branch("tmp_#{compare}").checkout git.reset_hard(compare) @@ -71,6 +72,7 @@ namespace :benchmark do compare_classifications = JSON.parse(File.read("benchmark/results/#{compare}_output.json")) + puts "Changes between #{reference}...#{compare}" puts reference_classifications.deep_diff(compare_classifications) end From 569058f4818e80fa28acca05852eaaba34f8a68f Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Mon, 7 Jul 2014 13:31:01 -0500 Subject: [PATCH 145/268] test on all --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index f1803707..fa9e44ac 100644 --- a/Rakefile +++ b/Rakefile @@ -79,7 +79,7 @@ namespace :benchmark do desc "Build benchmark index" task :index, [:commit] do |t, args| results = Hash.new - languages = Dir.glob('benchmark/samples/*') + languages = Dir.glob('samples/*') languages.each do |lang| puts "" From a90d21899a433e6e4f602d357fccf505b5e1e8e2 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Mon, 7 Jul 2014 13:35:46 -0500 Subject: [PATCH 146/268] Shellwords --- Rakefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index fa9e44ac..cb7cbf0a 100644 --- a/Rakefile +++ b/Rakefile @@ -78,6 +78,8 @@ namespace :benchmark do desc "Build benchmark index" task :index, [:commit] do |t, args| + require 'shellwords' + results = Hash.new languages = Dir.glob('samples/*') @@ -87,8 +89,9 @@ namespace :benchmark do results[lang] = {} files = Dir.glob("#{lang}/*") files.each do |file| + next unless File.file?(file) puts " #{file}" - result = IO::popen("bundle exec linguist #{file} --simple").read + result = IO::popen("bundle exec linguist #{Shellwords.escape(file)} --simple").read filename = File.basename(file) if result.chomp.empty? # No results results[lang][filename] = "No language" From 7fa1b5249748f330b4debda6e01ad9d32bc6d8c2 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Mon, 7 Jul 2014 14:16:33 -0500 Subject: [PATCH 147/268] Benchmark dir --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index cb7cbf0a..52f0da46 100644 --- a/Rakefile +++ b/Rakefile @@ -81,7 +81,7 @@ namespace :benchmark do require 'shellwords' results = Hash.new - languages = Dir.glob('samples/*') + languages = Dir.glob('benchmark/samples/*') languages.each do |lang| puts "" From d125205564b524cb82b226b5d7ddc9a68217f047 Mon Sep 17 00:00:00 2001 From: Arthur Verschaeve Date: Mon, 7 Jul 2014 08:53:42 +0200 Subject: [PATCH 148/268] Update vendor.yml: normalize.css Added popular CSS reset Normalize.css (http://necolas.github.io/normalize.css/) --- lib/linguist/vendor.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/linguist/vendor.yml b/lib/linguist/vendor.yml index 68e60eae..c497960c 100644 --- a/lib/linguist/vendor.yml +++ b/lib/linguist/vendor.yml @@ -40,6 +40,9 @@ - foundation.min.css - foundation.css +# Normalize.css +- normalize.css + # Vendored dependencies - thirdparty/ - vendors?/ From 955dd3d4d57de2d45dfec4daa7f1da0e1cdbc888 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Mon, 7 Jul 2014 15:34:10 -0500 Subject: [PATCH 149/268] Adding test for Normalize.css --- test/test_blob.rb | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/test/test_blob.rb b/test/test_blob.rb index 2977bb90..aba82084 100644 --- a/test/test_blob.rb +++ b/test/test_blob.rb @@ -277,7 +277,7 @@ class TestBlob < Test::Unit::TestCase # 'thirdparty' directory assert blob("thirdparty/lib/main.c").vendored? - + # 'extern(al)' directory assert blob("extern/util/__init__.py").vendored? assert blob("external/jquery.min.js").vendored? @@ -385,7 +385,10 @@ class TestBlob < Test::Unit::TestCase # NuGet Packages assert blob("packages/Modernizr.2.0.6/Content/Scripts/modernizr-2.0.6-development-only.js").vendored? - + + # Normalize + assert blob("some/asset/path/normalize.css").vendored? + # Cocoapods assert blob('Pods/blah').vendored? From ddefa5f9e6451f0f3be7589b7af13c473fb960c2 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Fri, 4 Jul 2014 21:12:46 -0500 Subject: [PATCH 150/268] Ask Charlock earlier --- lib/linguist/language.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/language.rb b/lib/linguist/language.rb index 81e70361..87f84f7b 100644 --- a/lib/linguist/language.rb +++ b/lib/linguist/language.rb @@ -104,7 +104,7 @@ module Linguist # # We'll perform a more comprehensive test later which actually involves # looking for binary characters in the blob - return nil if blob.likely_binary? + return nil if blob.likely_binary? || blob.binary? # A bit of an elegant hack. If the file is executable but extensionless, # append a "magic" extension so it can be classified with other From 37d161c290c4116c59b4eeccc4c56410bfaa009a Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Mon, 7 Jul 2014 15:24:22 -0500 Subject: [PATCH 151/268] Removing second binary? check --- lib/linguist/language.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/linguist/language.rb b/lib/linguist/language.rb index 87f84f7b..f1836721 100644 --- a/lib/linguist/language.rb +++ b/lib/linguist/language.rb @@ -124,7 +124,7 @@ module Linguist possible_language_names = possible_languages.map(&:name) # Don't bother with binary contents or an empty file - if blob.binary? || data.nil? || data == "" + if data.nil? || data == "" nil # Check if there's a shebang line and use that as authoritative elsif (result = find_by_shebang(data)) && !result.empty? @@ -401,7 +401,7 @@ module Linguist # # Returns the extensions Array attr_reader :filenames - + # Public: Return all possible extensions for language def all_extensions (extensions + [primary_extension]).uniq From 24fb5a8e29518016f3177a849f2aedbd4d1bb13f Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Mon, 7 Jul 2014 15:47:04 -0500 Subject: [PATCH 152/268] 3.0.3 release --- lib/linguist/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/version.rb b/lib/linguist/version.rb index b7ed14c9..89151b75 100644 --- a/lib/linguist/version.rb +++ b/lib/linguist/version.rb @@ -1,3 +1,3 @@ module Linguist - VERSION = "3.0.2" + VERSION = "3.0.3" end From 973431be4038b3ebbd60014815d6ed2cc1429472 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Tue, 8 Jul 2014 21:13:52 -0500 Subject: [PATCH 153/268] Breaking comparsion step out into separate task --- Rakefile | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/Rakefile b/Rakefile index 52f0da46..fcc59fb5 100644 --- a/Rakefile +++ b/Rakefile @@ -67,13 +67,8 @@ namespace :benchmark do git.branch("tmp_#{reference}").delete git.branch("tmp_#{compare}").delete - # DO COMPARISON... - reference_classifications = JSON.parse(File.read("benchmark/results/#{reference}_output.json")) - - compare_classifications = JSON.parse(File.read("benchmark/results/#{compare}_output.json")) - - puts "Changes between #{reference}...#{compare}" - puts reference_classifications.deep_diff(compare_classifications) + # COMPARE AND PRINT RESULTS + Rake::Task["benchmark:results"].execute end desc "Build benchmark index" @@ -103,6 +98,18 @@ namespace :benchmark do File.open("benchmark/results/#{args[:commit]}_output.json", "w") {|f| f.write(results.to_json) } end + + desc "Compare results" + task :results do + reference, compare = ENV['compare'].split('...') + + # DO COMPARISON... + reference_classifications = JSON.parse(File.read("benchmark/results/#{reference}_output.json")) + compare_classifications = JSON.parse(File.read("benchmark/results/#{compare}_output.json")) + + puts "Changes between #{reference}...#{compare}" + puts reference_classifications.deep_diff(compare_classifications) + end end namespace :classifier do From e8e1e0ca2381810549d032ea7afccb60f12aeaf2 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Tue, 8 Jul 2014 21:16:30 -0500 Subject: [PATCH 154/268] Abort unless files exist --- Rakefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Rakefile b/Rakefile index fcc59fb5..76d4c292 100644 --- a/Rakefile +++ b/Rakefile @@ -103,9 +103,13 @@ namespace :benchmark do task :results do reference, compare = ENV['compare'].split('...') + reference_classifications_file = "benchmark/results/#{reference}_output.json" + compare_classifications_file = "benchmark/results/#{compare}_output.json" + # DO COMPARISON... - reference_classifications = JSON.parse(File.read("benchmark/results/#{reference}_output.json")) - compare_classifications = JSON.parse(File.read("benchmark/results/#{compare}_output.json")) + abort("No result files to compare") unless (File.exist?(reference_classifications_file) && File.exist?(compare_classifications_file)) + reference_classifications = JSON.parse(File.read(reference_classifications_file)) + compare_classifications = JSON.parse(File.read(compare_classifications_file)) puts "Changes between #{reference}...#{compare}" puts reference_classifications.deep_diff(compare_classifications) From 7802030a53db7e2e41ec1075c8e97f11b9a22958 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Wed, 9 Jul 2014 09:48:34 -0500 Subject: [PATCH 155/268] Counting changes --- Rakefile | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 76d4c292..1c06f072 100644 --- a/Rakefile +++ b/Rakefile @@ -112,7 +112,22 @@ namespace :benchmark do compare_classifications = JSON.parse(File.read(compare_classifications_file)) puts "Changes between #{reference}...#{compare}" - puts reference_classifications.deep_diff(compare_classifications) + changes = reference_classifications.deep_diff(compare_classifications) + + if changes.any? + changes.each do |lang, files| + previous_count = reference_classifications[lang].size + summary = changes[lang].inject(Hash.new(0)) do |result, (key, val)| + new_lang = val.last + result[new_lang] += 1 + result + end + end + + puts summary + else + puts "No changes" + end end end From 3a797e2583bf78e8c1cfedd22855d61f77870098 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Wed, 9 Jul 2014 09:50:47 -0500 Subject: [PATCH 156/268] Formatting --- Rakefile | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/Rakefile b/Rakefile index 1c06f072..f2b04ca5 100644 --- a/Rakefile +++ b/Rakefile @@ -114,17 +114,26 @@ namespace :benchmark do puts "Changes between #{reference}...#{compare}" changes = reference_classifications.deep_diff(compare_classifications) + # Are there any differences in the linguist classification? if changes.any? changes.each do |lang, files| previous_count = reference_classifications[lang].size + + # Count the number of changed classifications (language and number) summary = changes[lang].inject(Hash.new(0)) do |result, (key, val)| new_lang = val.last result[new_lang] += 1 result end - end - puts summary + puts "#{lang}" + + # Work out the percentage change + summary.each do |new_lang, count| + percent = count / previous_count.to_f + puts " #{sprintf("%.2f", percent)}% change to #{new_lang} (count files)" + end + end else puts "No changes" end From 4d83bf34f391b6bfd28a70c4093d29cc8613bcd6 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Fri, 11 Jul 2014 09:13:24 -0500 Subject: [PATCH 157/268] Ditching IO --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index f2b04ca5..3ebbed85 100644 --- a/Rakefile +++ b/Rakefile @@ -86,7 +86,7 @@ namespace :benchmark do files.each do |file| next unless File.file?(file) puts " #{file}" - result = IO::popen("bundle exec linguist #{Shellwords.escape(file)} --simple").read + result = %x{bundle exec linguist #{Shellwords.escape(file)} --simple} filename = File.basename(file) if result.chomp.empty? # No results results[lang][filename] = "No language" From 41fc785330850892e499bd1a44f38abbae9d4eb1 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Fri, 11 Jul 2014 10:03:49 -0500 Subject: [PATCH 158/268] Kicking the tyres --- lib/linguist/heuristics.rb | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/lib/linguist/heuristics.rb b/lib/linguist/heuristics.rb index c1116780..fa5a97d7 100644 --- a/lib/linguist/heuristics.rb +++ b/lib/linguist/heuristics.rb @@ -1,7 +1,7 @@ module Linguist # A collection of simple heuristics that can be used to better analyze languages. class Heuristics - ACTIVE = false + ACTIVE = true # Public: Given an array of String language names, # apply heuristics against the given data and return an array @@ -12,26 +12,28 @@ module Linguist # # Returns an array of Languages or [] def self.find_by_heuristics(data, languages) + determined = nil if active? - if languages.all? { |l| ["Objective-C", "C++"].include?(l) } - disambiguate_c(data, languages) + if languages.all? { |l| ["Objective-C", "C++", "C"].include?(l) } + determined = disambiguate_c(data, languages) end if languages.all? { |l| ["Perl", "Prolog"].include?(l) } - disambiguate_pl(data, languages) + determined = disambiguate_pl(data, languages) end if languages.all? { |l| ["ECL", "Prolog"].include?(l) } - disambiguate_ecl(data, languages) + determined = disambiguate_ecl(data, languages) end if languages.all? { |l| ["TypeScript", "XML"].include?(l) } - disambiguate_ts(data, languages) + determined = disambiguate_ts(data, languages) end if languages.all? { |l| ["Common Lisp", "OpenCL"].include?(l) } - disambiguate_cl(data, languages) + determined = disambiguate_cl(data, languages) end if languages.all? { |l| ["Rebol", "R"].include?(l) } - disambiguate_r(data, languages) + determined = disambiguate_r(data, languages) end end + determined end # .h extensions are ambigious between C, C++, and Objective-C. From d5098c6f66c00d8280b0b5ce4fd75c544ee1dded Mon Sep 17 00:00:00 2001 From: Paul Chaignon Date: Thu, 19 Jun 2014 13:25:27 +0200 Subject: [PATCH 159/268] Custom File.extname method which returns the filename if it is an extension --- lib/linguist/file_blob.rb | 15 +++++++++++++++ lib/linguist/language.rb | 6 ++++-- 2 files changed, 19 insertions(+), 2 deletions(-) diff --git a/lib/linguist/file_blob.rb b/lib/linguist/file_blob.rb index 7e7f1acd..bc475023 100644 --- a/lib/linguist/file_blob.rb +++ b/lib/linguist/file_blob.rb @@ -52,5 +52,20 @@ module Linguist def size File.size(@path) end + + # Public: Get file extension. + # + # Returns a String. + def extension + # File.extname returns nil if the filename is an extension. + extension = File.extname(name) + basename = File.basename(name) + # Checks if the filename is an extension. + if extension.empty? && basename[0] == "." + basename + else + extension + end + end end end diff --git a/lib/linguist/language.rb b/lib/linguist/language.rb index f1836721..ea586c73 100644 --- a/lib/linguist/language.rb +++ b/lib/linguist/language.rb @@ -109,7 +109,8 @@ module Linguist # A bit of an elegant hack. If the file is executable but extensionless, # append a "magic" extension so it can be classified with other # languages that have shebang scripts. - if File.extname(name).empty? && blob.mode && (blob.mode.to_i(8) & 05) == 05 + extension = FileBlob.new(name).extension + if extension.empty? && blob.mode && (blob.mode.to_i(8) & 05) == 05 name += ".script!" end @@ -189,7 +190,8 @@ module Linguist # # Returns all matching Languages or [] if none were found. def self.find_by_filename(filename) - basename, extname = File.basename(filename), File.extname(filename) + basename = File.basename(filename) + extname = FileBlob.new(filename).extension() langs = @filename_index[basename] + @extension_index[extname] langs.compact.uniq From be9e187cc6e5399078a439cea7e05f687b8a2860 Mon Sep 17 00:00:00 2001 From: Paul Chaignon Date: Thu, 19 Jun 2014 16:39:59 +0200 Subject: [PATCH 160/268] Remove .rb test --- test/test_language.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/test/test_language.rb b/test/test_language.rb index 10c5f9a2..7c9b6bc0 100644 --- a/test/test_language.rb +++ b/test/test_language.rb @@ -249,7 +249,6 @@ class TestLanguage < Test::Unit::TestCase assert_equal Language['Nginx'], Language.find_by_filename('nginx.conf').first assert_equal ['C', 'C++', 'Objective-C'], Language.find_by_filename('foo.h').map(&:name).sort assert_equal [], Language.find_by_filename('rb') - assert_equal [], Language.find_by_filename('.rb') assert_equal [], Language.find_by_filename('.nkt') assert_equal [Language['Shell']], Language.find_by_filename('.bashrc') assert_equal [Language['Shell']], Language.find_by_filename('bash_profile') From a5475bf8396d8a19cf39faa862d5dd69dea6abd1 Mon Sep 17 00:00:00 2001 From: Paul Chaignon Date: Thu, 19 Jun 2014 18:34:37 +0200 Subject: [PATCH 161/268] Sample files to test the new FileBlob.extension method --- lib/linguist/samples.json | 78206 ++++++++++++++++++++++++++---- samples/PHP/filenames/.php | 34 + samples/XML/filenames/.cproject | 542 + 3 files changed, 68425 insertions(+), 10357 deletions(-) create mode 100755 samples/PHP/filenames/.php create mode 100755 samples/XML/filenames/.cproject diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index 8ea2394a..dd56aa42 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -1,8 +1,9 @@ { "extnames": { - "ABAP": [ - ".abap" + "Stylus": [ + ".styl" ], +<<<<<<< HEAD "ATS": [ ".atxt", ".dats", @@ -11,56 +12,113 @@ ], "Agda": [ ".agda" +======= + "IDL": [ + ".dlm", + ".pro" +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], - "Alloy": [ - ".als" + "OpenEdge ABL": [ + ".cls", + ".p" ], - "Apex": [ - ".cls" + "Latte": [ + ".latte" ], - "AppleScript": [ - ".applescript" + "Racket": [ + ".scrbl" ], - "Arduino": [ - ".ino" + "Assembly": [ + ".asm", + ".inc" ], "AsciiDoc": [ ".adoc", ".asc", ".asciidoc" ], - "AspectJ": [ - ".aj" + "Gnuplot": [ + ".gnu", + ".gp" ], +<<<<<<< HEAD "Assembly": [ ".asm" +======= + "Dogescript": [ + ".djs" ], - "AutoHotkey": [ - ".ahk" + "Markdown": [ + ".md" +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method + ], + "Perl": [ + ".fcgi", + ".pl", + ".pm", + ".pod", + ".script!", + ".t" + ], + "XML": [ + ".ant", + ".csproj", + ".filters", + ".fsproj", + ".ivy", + ".nproj", + ".pluginspec", + ".targets", + ".vbproj", + ".vcxproj", + ".xml" + ], + "MTML": [ + ".mtml" + ], + "Lasso": [ + ".las", + ".lasso", + ".lasso9", + ".ldml" + ], + "Max": [ + ".maxhelp", + ".maxpat", + ".mxt" ], "Awk": [ ".awk" ], - "BlitzBasic": [ - ".bb" + "JavaScript": [ + ".frag", + ".js", + ".script!" ], +<<<<<<< HEAD "BlitzMax": [ ".bmx" ], "Bluespec": [ ".bsv" +======= + "Visual Basic": [ + ".cls", + ".vb", + ".vbhtml" +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], - "Brightscript": [ - ".brs" + "GAP": [ + ".g", + ".gd", + ".gi" ], - "C": [ - ".c", - ".cats", - ".h" + "Logtalk": [ + ".lgt" ], - "C#": [ - ".cs", - ".cshtml" + "Scheme": [ + ".sld", + ".sps" ], "C++": [ ".cc", @@ -70,6 +128,7 @@ ".inl", ".ipp" ], +<<<<<<< HEAD "COBOL": [ ".cbl", ".ccp", @@ -81,43 +140,66 @@ ], "Ceylon": [ ".ceylon" +======= + "JSON5": [ + ".json5" +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], - "Cirru": [ - ".cirru" + "MoonScript": [ + ".moon" ], - "Clojure": [ - ".cl2", - ".clj", - ".cljc", - ".cljs", - ".cljscm", - ".cljx", - ".hic" + "Mercury": [ + ".m", + ".moo" ], +<<<<<<< HEAD "CoffeeScript": [ ".coffee" +======= + "Perl6": [ + ".p6", + ".pm6" ], - "Common Lisp": [ - ".cl", - ".lisp" + "VHDL": [ + ".vhd" +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], - "Component Pascal": [ - ".cp", - ".cps" + "Literate CoffeeScript": [ + ".litcoffee" ], - "Coq": [ - ".v" + "KRL": [ + ".krl" ], - "Creole": [ - ".creole" + "Nimrod": [ + ".nim" ], - "Crystal": [ - ".cr" + "Pascal": [ + ".dpr" ], + "C#": [ + ".cs", + ".cshtml" + ], +<<<<<<< HEAD +======= + "Groovy Server Pages": [ + ".gsp" + ], + "GAMS": [ + ".gms" + ], + "COBOL": [ + ".cbl", + ".ccp", + ".cob", + ".cpy" + ], +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "Cuda": [ ".cu", ".cuh" ], +<<<<<<< HEAD "DM": [ ".dm" ], @@ -129,46 +211,89 @@ ], "Dogescript": [ ".djs" +======= + "Gosu": [ + ".gs", + ".gst", + ".gsx", + ".vark" ], - "E": [ - ".E" + "Prolog": [ + ".ecl", + ".pl", + ".prolog" +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], + "Tcl": [ + ".tm" + ], +<<<<<<< HEAD "ECL": [ ".ecl" ], "Eagle": [ ".brd", ".sch" +======= + "Squirrel": [ + ".nut" ], - "Elm": [ - ".elm" + "YAML": [ + ".yml" ], - "Emacs Lisp": [ - ".el" + "Clojure": [ + ".cl2", + ".clj", + ".cljc", + ".cljs", + ".cljscm", + ".cljx", + ".hic" +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], - "Erlang": [ - ".erl", - ".escript", - ".script!" + "Tea": [ + ".tea" ], + "M": [ + ".m" + ], + "NSIS": [ + ".nsh", + ".nsi" + ], +<<<<<<< HEAD "Forth": [ ".forth", ".fth" +======= + "Pod": [ + ".pod" ], - "Frege": [ - ".fr" + "AutoHotkey": [ + ".ahk" +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], + "TXL": [ + ".txl" + ], +<<<<<<< HEAD "GAMS": [ ".gms" +======= + "wisp": [ + ".wisp" ], - "GAP": [ - ".g", - ".gd", - ".gi" + "Mathematica": [ + ".m" +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method + ], + "Coq": [ + ".v" ], "GAS": [ ".s" ], +<<<<<<< HEAD "GLSL": [ ".fp", ".frag", @@ -178,71 +303,95 @@ ], "Game Maker Language": [ ".gml" +======= + "Verilog": [ + ".v" +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], - "Gnuplot": [ - ".gnu", - ".gp" + "Apex": [ + ".cls" ], - "Gosu": [ - ".gs", - ".gst", - ".gsx", - ".vark" + "Scala": [ + ".sbt", + ".sc", + ".script!" ], +<<<<<<< HEAD "Grace": [ ".grace" ], "Grammatical Framework": [ ".gf" +======= + "JSONLD": [ + ".jsonld" +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], - "Groovy": [ - ".gradle", - ".grt", - ".gtpl", - ".gvy", - ".script!" + "LiveScript": [ + ".ls" ], - "Groovy Server Pages": [ - ".gsp" + "Org": [ + ".org" ], +<<<<<<< HEAD "HTML": [ ".html", ".st" ], "Haml": [ ".haml" +======= + "Liquid": [ + ".liquid" +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], - "Handlebars": [ - ".handlebars", - ".hbs" + "UnrealScript": [ + ".uc" ], - "Haskell": [ - ".hs" + "Component Pascal": [ + ".cp", + ".cps" ], +<<<<<<< HEAD "Hy": [ ".hy" +======= + "PogoScript": [ + ".pogo" ], - "IDL": [ - ".dlm", - ".pro" + "Creole": [ + ".creole" +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], - "Idris": [ - ".idr" + "Processing": [ + ".pde" + ], + "Emacs Lisp": [ + ".el" + ], + "Elm": [ + ".elm" ], "Inform 7": [ ".i7x", ".ni" ], +<<<<<<< HEAD "Ioke": [ ".ik" ], "Isabelle": [ ".thy" +======= + "XC": [ + ".xc" +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], "JSON": [ ".json", ".lock" ], +<<<<<<< HEAD "JSON5": [ ".json5" ], @@ -264,55 +413,75 @@ ".script!", ".xsjs", ".xsjslib" +======= + "Scaml": [ + ".scaml" +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], - "Julia": [ - ".jl" + "Shell": [ + ".bash", + ".script!", + ".sh", + ".zsh" ], +<<<<<<< HEAD "KRL": [ ".krl" ], "Kit": [ ".kit" +======= + "Sass": [ + ".sass", + ".scss" +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], - "Kotlin": [ - ".kt" + "Oxygene": [ + ".oxygene" ], +<<<<<<< HEAD "LFE": [ ".lfe" +======= + "ATS": [ + ".atxt", + ".dats", + ".hats", + ".sats" +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], - "Lasso": [ - ".las", - ".lasso", - ".lasso9", - ".ldml" + "SCSS": [ + ".scss" ], - "Latte": [ - ".latte" + "R": [ + ".R", + ".Rd", + ".r", + ".rsx", + ".script!" ], - "Less": [ - ".less" + "Brightscript": [ + ".brs" ], +<<<<<<< HEAD "Liquid": [ ".liquid" +======= + "HTML": [ + ".html", + ".st" + ], + "Frege": [ + ".fr" +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], "Literate Agda": [ ".lagda" ], - "Literate CoffeeScript": [ - ".litcoffee" - ], - "LiveScript": [ - ".ls" - ], - "Logos": [ - ".xm" - ], - "Logtalk": [ - ".lgt" - ], "Lua": [ ".pd_lua" ], +<<<<<<< HEAD "M": [ ".m" ], @@ -321,63 +490,90 @@ ], "Makefile": [ ".script!" +======= + "XSLT": [ + ".xslt" +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], - "Markdown": [ - ".md" + "Zimpl": [ + ".zmpl" ], - "Mask": [ - ".mask" + "Groovy": [ + ".gradle", + ".grt", + ".gtpl", + ".gvy", + ".script!" ], +<<<<<<< HEAD "Mathematica": [ ".m", ".nb" +======= + "Ioke": [ + ".ik" +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], - "Matlab": [ - ".m" + "Jade": [ + ".jade" ], - "Max": [ - ".maxhelp", - ".maxpat", - ".mxt" + "TypeScript": [ + ".ts" + ], + "Erlang": [ + ".erl", + ".escript", + ".script!" + ], + "ABAP": [ + ".abap" + ], + "Rebol": [ + ".r", + ".r2", + ".r3", + ".reb", + ".rebol" + ], + "SuperCollider": [ + ".scd" + ], + "CoffeeScript": [ + ".coffee" + ], +<<<<<<< HEAD + "NSIS": [ + ".nsh", + ".nsi" +======= + "PHP": [ + ".module", + ".php", + ".script!" +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], "MediaWiki": [ ".mediawiki" ], - "Mercury": [ - ".m", - ".moo" + "Ceylon": [ + ".ceylon" ], - "Monkey": [ - ".monkey" - ], - "Moocode": [ - ".moo" - ], - "MoonScript": [ - ".moon" - ], - "NSIS": [ - ".nsh", - ".nsi" - ], - "Nemerle": [ - ".n" - ], - "NetLogo": [ - ".nlogo" - ], - "Nimrod": [ - ".nim" + "fish": [ + ".fish" ], +<<<<<<< HEAD "Nit": [ ".nit" ], "Nix": [ ".nix" +======= + "Diff": [ + ".patch" +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], - "Nu": [ - ".nu", - ".script!" + "Slash": [ + ".sl" ], "OCaml": [ ".eliom", @@ -387,6 +583,7 @@ ".h", ".m" ], +<<<<<<< HEAD "Objective-C++": [ ".mm" ], @@ -441,45 +638,67 @@ ".pod", ".script!", ".t" +======= + "Stata": [ + ".ado", + ".do", + ".doh", + ".ihlp", + ".mata", + ".matah", + ".sthlp" ], - "Perl6": [ - ".p6", - ".pm6" + "Shen": [ + ".shen" ], + "Mask": [ + ".mask" +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method + ], + "SAS": [ + ".sas" + ], +<<<<<<< HEAD "Pike": [ ".pike", ".pmod" +======= + "Xtend": [ + ".xtend" +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], - "Pod": [ - ".pod" + "Arduino": [ + ".ino" ], - "PogoScript": [ - ".pogo" + "XProc": [ + ".xpl" ], - "PostScript": [ - ".ps" + "Haml": [ + ".haml" ], - "PowerShell": [ - ".ps1", - ".psm1" + "AspectJ": [ + ".aj" ], - "Processing": [ - ".pde" + "RDoc": [ + ".rdoc" ], - "Prolog": [ - ".ecl", - ".pl", - ".prolog" + "AppleScript": [ + ".applescript" ], - "Propeller Spin": [ - ".spin" + "Ox": [ + ".ox", + ".oxh", + ".oxo" ], - "Protocol Buffer": [ - ".proto" + "STON": [ + ".ston" ], - "PureScript": [ - ".purs" + "Scilab": [ + ".sce", + ".sci", + ".tst" ], +<<<<<<< HEAD "Python": [ ".py", ".pyde", @@ -490,14 +709,16 @@ ".pri", ".pro", ".script!" +======= + "Dart": [ + ".dart" +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], - "R": [ - ".R", - ".Rd", - ".r", - ".rsx", + "Nu": [ + ".nu", ".script!" ], +<<<<<<< HEAD "RDoc": [ ".rdoc" ], @@ -516,11 +737,16 @@ ".r3", ".reb", ".rebol" +======= + "Alloy": [ + ".als" +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], "Red": [ ".red", ".reds" ], +<<<<<<< HEAD "RobotFramework": [ ".robot" ], @@ -553,80 +779,160 @@ "Sass": [ ".sass", ".scss" +======= + "BlitzBasic": [ + ".bb" ], - "Scala": [ - ".sbt", - ".sc", - ".script!" + "RobotFramework": [ + ".robot" ], - "Scaml": [ - ".scaml" + "Agda": [ + ".agda" +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], - "Scheme": [ - ".sld", - ".sps" + "Hy": [ + ".hy" ], - "Scilab": [ - ".sce", - ".sci", - ".tst" + "Less": [ + ".less" ], + "Kit": [ + ".kit" + ], + "E": [ + ".E" + ], +<<<<<<< HEAD "Shell": [ ".bash", ".script!", ".sh", ".zsh" +======= + "DM": [ + ".dm" + ], + "OpenCL": [ + ".cl" +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], "ShellSession": [ ".sh-session" ], - "Shen": [ - ".shen" + "GLSL": [ + ".fp", + ".frag", + ".glsl" ], - "Slash": [ - ".sl" + "ECL": [ + ".ecl" + ], + "Makefile": [ + ".script!" + ], + "Haskell": [ + ".hs" ], "Slim": [ ".slim" ], + "Zephir": [ + ".zep" + ], + "OCaml": [ + ".eliom", + ".ml" + ], + "VCL": [ + ".vcl" + ], "Smalltalk": [ ".st" ], - "SourcePawn": [ - ".sp" + "Parrot Assembly": [ + ".pasm" ], + "Protocol Buffer": [ + ".proto" + ], +<<<<<<< HEAD "Squirrel": [ ".nut" +======= + "SQL": [ + ".prc", + ".sql", + ".tab", + ".udf", + ".viw" ], - "Standard ML": [ - ".ML", - ".fun", - ".sig", - ".sml" + "Nemerle": [ + ".n" +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], - "Stata": [ - ".ado", - ".do", - ".doh", - ".ihlp", - ".mata", - ".matah", - ".sthlp" - ], - "Stylus": [ - ".styl" - ], - "SuperCollider": [ - ".scd" + "Bluespec": [ + ".bsv" ], "Swift": [ ".swift" ], +<<<<<<< HEAD + "Stylus": [ + ".styl" +======= + "SourcePawn": [ + ".sp" + ], + "Propeller Spin": [ + ".spin" +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method + ], + "Cirru": [ + ".cirru" + ], + "Julia": [ + ".jl" + ], + "Ragel in Ruby Host": [ + ".rl" + ], + "JSONiq": [ + ".jq" + ], + "TeX": [ + ".cls" + ], + "XQuery": [ + ".xqm" + ], + "RMarkdown": [ + ".rmd" + ], + "Crystal": [ + ".cr" + ], + "edn": [ + ".edn" + ], + "PowerShell": [ + ".ps1", + ".psm1" + ], + "Game Maker Language": [ + ".gml" + ], + "Volt": [ + ".volt" + ], + "Monkey": [ + ".monkey" + ], "SystemVerilog": [ ".sv", ".svh", ".vh" ], +<<<<<<< HEAD "TXL": [ ".txl" ], @@ -635,6 +941,29 @@ ], "TeX": [ ".cls" +======= + "Grammatical Framework": [ + ".gf" + ], + "PostScript": [ + ".ps" + ], + "CSS": [ + ".css" + ], + "Forth": [ + ".forth", + ".fth" + ], + "LFE": [ + ".lfe" + ], + "Moocode": [ + ".moo" + ], + "Java": [ + ".java" +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], "Tea": [ ".tea" @@ -642,15 +971,24 @@ "Turing": [ ".t" ], +<<<<<<< HEAD "TypeScript": [ ".ts" +======= + "Kotlin": [ + ".kt" ], - "UnrealScript": [ - ".uc" + "Idris": [ + ".idr" +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], - "VCL": [ - ".vcl" + "PureScript": [ + ".purs" ], + "NetLogo": [ + ".nlogo" + ], +<<<<<<< HEAD "VHDL": [ ".vhd" ], @@ -661,10 +999,23 @@ ".cls", ".vb", ".vbhtml" +======= + "Eagle": [ + ".brd", + ".sch" ], - "Volt": [ - ".volt" + "Common Lisp": [ + ".cl", + ".lisp" ], + "Parrot Internal Representation": [ + ".pir" +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method + ], + "Objective-C++": [ + ".mm" + ], +<<<<<<< HEAD "XC": [ ".xc" ], @@ -676,21 +1027,42 @@ ".ivy", ".nproj", ".nuspec", +======= + "Rust": [ + ".rs" + ], + "Matlab": [ + ".m" + ], + "Pan": [ + ".pan" + ], + "PAWN": [ + ".pwn" + ], + "Ruby": [ +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ".pluginspec", - ".targets", - ".vbproj", - ".vcxproj", - ".xml" + ".rabl", + ".rake", + ".rb", + ".script!" ], - "XProc": [ - ".xpl" + "C": [ + ".c", + ".cats", + ".h" ], - "XQuery": [ - ".xqm" + "Standard ML": [ + ".ML", + ".fun", + ".sig", + ".sml" ], - "XSLT": [ - ".xslt" + "Logos": [ + ".xm" ], +<<<<<<< HEAD "Xojo": [ ".xojo_code", ".xojo_menu", @@ -701,13 +1073,20 @@ ], "Xtend": [ ".xtend" +======= + "Omgrofl": [ + ".omgrofl" +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], - "YAML": [ - ".yml" + "Opa": [ + ".opa" ], - "Zephir": [ - ".zep" + "Python": [ + ".py", + ".pyde", + ".script!" ], +<<<<<<< HEAD "Zimpl": [ ".zmpl" ], @@ -719,38 +1098,40 @@ ], "wisp": [ ".wisp" +======= + "Handlebars": [ + ".handlebars", + ".hbs" +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ] }, "interpreters": { }, "filenames": { - "ApacheConf": [ - ".htaccess", - "apache2.conf", - "httpd.conf" - ], - "INI": [ - ".editorconfig", - ".gitconfig" - ], - "Makefile": [ - "Makefile" - ], "Nginx": [ "nginx.conf" ], "Perl": [ "ack" ], - "R": [ - "expr-dist" + "XML": [ + ".cproject" ], +<<<<<<< HEAD "Ruby": [ ".pryrc", "Appraisals", "Capfile", "Rakefile" +======= + "YAML": [ + ".gemrc" + ], + "VimL": [ + ".gvimrc", + ".vimrc" +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], "Shell": [ ".bash_logout", @@ -778,10 +1159,10 @@ "zshenv", "zshrc" ], - "VimL": [ - ".gvimrc", - ".vimrc" + "R": [ + "expr-dist" ], +<<<<<<< HEAD "YAML": [ ".gemrc" ], @@ -793,246 +1174,167 @@ }, "tokens_total": 629226, "languages_total": 867, +======= + "PHP": [ + ".php" + ], + "ApacheConf": [ + ".htaccess", + "apache2.conf", + "httpd.conf" + ], + "Makefile": [ + "Makefile" + ], + "INI": [ + ".editorconfig", + ".gitconfig" + ], + "Ruby": [ + "Appraisals", + "Capfile", + "Rakefile" + ] + }, + "tokens_total": 637393, + "languages_total": 818, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "tokens": { - "ABAP": { - "*/**": 1, - "*": 56, - "The": 2, - "MIT": 2, - "License": 1, - "(": 8, - ")": 8, - "Copyright": 1, - "c": 3, - "Ren": 1, - "van": 1, - "Mil": 1, - "Permission": 1, - "is": 2, - "hereby": 1, - "granted": 1, - "free": 1, - "of": 6, - "charge": 1, - "to": 10, - "any": 1, - "person": 1, - "obtaining": 1, - "a": 1, - "copy": 2, - "this": 2, - "software": 1, - "and": 3, - "associated": 1, - "documentation": 1, - "files": 4, - "the": 10, - "deal": 1, - "in": 3, - "Software": 3, - "without": 2, - "restriction": 1, - "including": 1, - "limitation": 1, - "rights": 1, - "use": 1, - "modify": 1, - "merge": 1, - "publish": 1, - "distribute": 1, - "sublicense": 1, - "and/or": 1, - "sell": 1, - "copies": 2, - "permit": 1, - "persons": 1, - "whom": 1, - "furnished": 1, - "do": 4, - "so": 1, - "subject": 1, - "following": 1, - "conditions": 1, - "above": 1, - "copyright": 1, - "notice": 2, - "permission": 1, - "shall": 1, - "be": 1, - "included": 1, - "all": 1, - "or": 1, - "substantial": 1, - "portions": 1, - "Software.": 1, - "THE": 6, - "SOFTWARE": 2, - "IS": 1, - "PROVIDED": 1, - "WITHOUT": 1, - "WARRANTY": 1, - "OF": 4, - "ANY": 2, - "KIND": 1, - "EXPRESS": 1, - "OR": 7, - "IMPLIED": 1, - "INCLUDING": 1, - "BUT": 1, - "NOT": 1, - "LIMITED": 1, - "TO": 2, - "WARRANTIES": 1, - "MERCHANTABILITY": 1, - "FITNESS": 1, - "FOR": 2, - "A": 1, - "PARTICULAR": 1, - "PURPOSE": 1, - "AND": 1, - "NONINFRINGEMENT.": 1, - "IN": 4, - "NO": 1, - "EVENT": 1, - "SHALL": 1, - "AUTHORS": 1, - "COPYRIGHT": 1, - "HOLDERS": 1, - "BE": 1, - "LIABLE": 1, - "CLAIM": 1, - "DAMAGES": 1, - "OTHER": 2, - "LIABILITY": 1, - "WHETHER": 1, - "AN": 1, - "ACTION": 1, - "CONTRACT": 1, - "TORT": 1, - "OTHERWISE": 1, - "ARISING": 1, - "FROM": 1, - "OUT": 1, - "CONNECTION": 1, - "WITH": 1, - "USE": 1, - "DEALINGS": 1, - "SOFTWARE.": 1, - "*/": 1, - "-": 978, - "CLASS": 2, - "CL_CSV_PARSER": 6, - "DEFINITION": 2, - "class": 2, - "cl_csv_parser": 2, - "definition": 1, - "public": 3, - "inheriting": 1, - "from": 1, - "cl_object": 1, - "final": 1, - "create": 1, - ".": 9, - "section.": 3, - "not": 3, - "include": 3, - "other": 3, - "source": 3, - "here": 3, - "type": 11, - "pools": 1, - "abap": 1, - "methods": 2, - "constructor": 2, - "importing": 1, - "delegate": 1, - "ref": 1, - "if_csv_parser_delegate": 1, - "csvstring": 1, - "string": 1, - "separator": 1, - "skip_first_line": 1, - "abap_bool": 2, - "parse": 2, - "raising": 1, - "cx_csv_parse_error": 2, - "protected": 1, - "private": 1, - "constants": 1, - "_textindicator": 1, - "value": 2, - "IMPLEMENTATION": 2, - "implementation.": 1, - "": 2, - "+": 9, - "|": 7, - "Instance": 2, - "Public": 1, - "Method": 2, - "CONSTRUCTOR": 1, - "[": 5, - "]": 5, - "DELEGATE": 1, - "TYPE": 5, - "REF": 1, - "IF_CSV_PARSER_DELEGATE": 1, - "CSVSTRING": 1, - "STRING": 1, - "SEPARATOR": 1, - "C": 1, - "SKIP_FIRST_LINE": 1, - "ABAP_BOOL": 1, - "": 2, - "method": 2, - "constructor.": 1, - "super": 1, - "_delegate": 1, - "delegate.": 1, - "_csvstring": 2, - "csvstring.": 1, - "_separator": 1, - "separator.": 1, - "_skip_first_line": 1, - "skip_first_line.": 1, - "endmethod.": 2, - "Get": 1, - "lines": 4, - "data": 3, - "is_first_line": 1, - "abap_true.": 2, - "standard": 2, - "table": 3, - "string.": 3, - "_lines": 1, - "field": 1, - "symbols": 1, - "": 3, - "loop": 1, - "at": 2, - "assigning": 1, - "Parse": 1, - "line": 1, - "values": 2, - "_parse_line": 2, - "Private": 1, - "_LINES": 1, + "Stylus": { + "border": 6, + "-": 10, + "radius": 5, + "(": 1, + ")": 1, + "webkit": 1, + "arguments": 3, + "moz": 1, + "a.button": 1, + "px": 5, + "fonts": 2, + "helvetica": 1, + "arial": 1, + "sans": 1, + "serif": 1, + "body": 1, + "{": 1, + "padding": 3, + ";": 2, + "font": 1, + "px/1.4": 1, + "}": 1, + "form": 2, + "input": 2, + "[": 2, + "type": 2, + "text": 2, + "]": 2, + "solid": 1, + "#eee": 1, + "color": 2, + "#ddd": 1, + "textarea": 1, + "@extends": 2, + "foo": 2, + "#FFF": 1, + ".bar": 1, + "background": 1, + "#000": 1 + }, + "IDL": { + "MODULE": 1, + "mg_analysis": 1, + "DESCRIPTION": 1, + "Tools": 1, + "for": 2, + "analysis": 1, + "VERSION": 1, + "SOURCE": 1, + "mgalloy": 1, + "BUILD_DATE": 1, + "January": 1, + "FUNCTION": 2, + "MG_ARRAY_EQUAL": 1, + "KEYWORDS": 1, + "MG_TOTAL": 1, + ";": 59, + "docformat": 3, + "+": 8, + "Find": 1, + "the": 7, + "greatest": 1, + "common": 1, + "denominator": 1, + "(": 26, + "GCD": 1, + ")": 26, + "two": 1, + "positive": 2, + "integers.": 1, + "Returns": 3, + "integer": 5, + "Params": 3, + "a": 4, + "in": 4, + "required": 4, + "type": 5, + "first": 1, + "b": 4, + "second": 1, + "-": 14, + "function": 4, + "mg_gcd": 2, + "compile_opt": 3, + "strictarr": 3, + "on_error": 1, + "if": 5, + "n_params": 1, + "ne": 1, + "then": 5, + "message": 2, + "mg_isinteger": 2, + "||": 1, + "begin": 2, + "endif": 2, + "_a": 3, + "abs": 2, + "_b": 3, + "minArg": 5, "<": 1, - "RETURNING": 1, - "STRINGTAB": 1, - "_lines.": 1, - "split": 1, - "cl_abap_char_utilities": 1, - "cr_lf": 1, - "into": 6, - "returning.": 1, - "Space": 2, - "concatenate": 4, - "csvvalue": 6, - "csvvalue.": 5, - "else.": 4, - "char": 2, - "endif.": 6, + "maxArg": 3, + "eq": 2, + "return": 5, + "remainder": 3, + "mod": 1, + "end": 5, + "Inverse": 1, + "hyperbolic": 2, + "cosine.": 1, + "Uses": 1, + "formula": 1, + "text": 1, + "{": 3, + "acosh": 1, + "}": 3, + "z": 9, + "ln": 1, + "sqrt": 4, + "Examples": 2, + "The": 1, + "arc": 1, + "sine": 1, + "looks": 1, + "like": 2, + "IDL": 5, + "x": 8, + "*": 2, + "findgen": 1, + "/": 1, + "plot": 1, + "mg_acosh": 2, + "xstyle": 1, "This": 1, +<<<<<<< HEAD "indicates": 1, "an": 1, "error": 1, @@ -3179,6 +3481,662 @@ "All": 1, "rights": 1, "reserved.": 1, +======= + "should": 1, + "look": 1, + "..": 1, + "image": 1, + "acosh.png": 1, + "float": 1, + "double": 2, + "complex": 2, + "or": 1, + "depending": 1, + "on": 1, + "input": 2, + "numeric": 1, + "alog": 1, + "Truncate": 1, + "argument": 2, + "towards": 1, + "i.e.": 1, + "takes": 1, + "FLOOR": 1, + "of": 4, + "values": 2, + "and": 1, + "CEIL": 1, + "negative": 1, + "values.": 1, + "Try": 1, + "main": 2, + "level": 2, + "program": 2, + "at": 1, + "this": 1, + "file.": 1, + "It": 1, + "does": 1, + "print": 4, + "mg_trunc": 3, + "[": 6, + "]": 6, + "floor": 2, + "ceil": 2, + "array": 2, + "same": 1, + "as": 1, + "float/double": 1, + "containing": 1, + "to": 1, + "truncate": 1, + "result": 3, + "posInd": 3, + "where": 1, + "gt": 2, + "nposInd": 2, + "L": 1, + "example": 1 + }, + "OpenEdge ABL": { + "DEFINE": 16, + "INPUT": 11, + "PARAMETER": 3, + "objSendEmailAlg": 2, + "AS": 21, + "email.SendEmailSocket": 1, + "NO": 13, + "-": 73, + "UNDO.": 12, + "VARIABLE": 12, + "vbuffer": 9, + "MEMPTR": 2, + "vstatus": 1, + "LOGICAL": 1, + "vState": 2, + "INTEGER": 6, + "ASSIGN": 2, + "vstate": 1, + "FUNCTION": 1, + "getHostname": 1, + "RETURNS": 1, + "CHARACTER": 9, + "(": 44, + ")": 44, + "cHostname": 1, + "THROUGH": 1, + "hostname": 1, + "ECHO.": 1, + "IMPORT": 1, + "UNFORMATTED": 1, + "cHostname.": 2, + "CLOSE.": 1, + "RETURN": 7, + "END": 12, + "FUNCTION.": 1, + "PROCEDURE": 2, + "newState": 2, + "INTEGER.": 1, + "pstring": 4, + "CHARACTER.": 1, + "newState.": 1, + "IF": 2, + "THEN": 2, + "RETURN.": 1, + "SET": 5, + "SIZE": 5, + "LENGTH": 3, + "+": 21, + "PUT": 1, + "STRING": 7, + "pstring.": 1, + "SELF": 4, + "WRITE": 1, + ".": 14, + "PROCEDURE.": 2, + "ReadSocketResponse": 1, + "vlength": 5, + "str": 3, + "v": 1, + "MESSAGE": 2, + "GET": 3, + "BYTES": 2, + "AVAILABLE": 2, + "VIEW": 1, + "ALERT": 1, + "BOX.": 1, + "DO": 2, + "READ": 1, + "handleResponse": 1, + "END.": 2, + "USING": 3, + "Progress.Lang.*.": 3, + "CLASS": 2, + "email.Email": 2, + "USE": 2, + "WIDGET": 2, + "POOL": 2, + "&": 3, + "SCOPED": 1, + "QUOTES": 1, + "@#": 1, + "%": 2, + "*": 2, + "._MIME_BOUNDARY_.": 1, + "#@": 1, + "WIN": 1, + "From": 4, + "To": 8, + "CC": 2, + "BCC": 2, + "Personal": 1, + "Private": 1, + "Company": 2, + "confidential": 2, + "normal": 1, + "urgent": 2, + "non": 1, + "Cannot": 3, + "locate": 3, + "file": 6, + "in": 3, + "the": 3, + "filesystem": 3, + "R": 3, + "File": 3, + "exists": 3, + "but": 3, + "is": 3, + "not": 3, + "readable": 3, + "Error": 3, + "copying": 3, + "from": 3, + "<\">": 8, + "ttSenders": 2, + "cEmailAddress": 8, + "n": 13, + "ttToRecipients": 1, + "Reply": 3, + "ttReplyToRecipients": 1, + "Cc": 2, + "ttCCRecipients": 1, + "Bcc": 2, + "ttBCCRecipients": 1, + "Return": 1, + "Receipt": 1, + "ttDeliveryReceiptRecipients": 1, + "Disposition": 3, + "Notification": 1, + "ttReadReceiptRecipients": 1, + "Subject": 2, + "Importance": 3, + "H": 1, + "High": 1, + "L": 1, + "Low": 1, + "Sensitivity": 2, + "Priority": 2, + "Date": 4, + "By": 1, + "Expiry": 2, + "Mime": 1, + "Version": 1, + "Content": 10, + "Type": 4, + "multipart/mixed": 1, + ";": 5, + "boundary": 1, + "text/plain": 2, + "charset": 2, + "Transfer": 4, + "Encoding": 4, + "base64": 2, + "bit": 2, + "application/octet": 1, + "stream": 1, + "attachment": 2, + "filename": 2, + "ttAttachments.cFileName": 2, + "cNewLine.": 1, + "lcReturnData.": 1, + "METHOD.": 6, + "METHOD": 6, + "PUBLIC": 6, + "send": 1, + "objSendEmailAlgorithm": 1, + "sendEmail": 2, + "THIS": 1, + "OBJECT": 2, + "CLASS.": 2, + "INTERFACE": 1, + "email.SendEmailAlgorithm": 1, + "ipobjEmail": 1, + "INTERFACE.": 1, + "email.Util": 1, + "FINAL": 1, + "PRIVATE": 1, + "STATIC": 5, + "cMonthMap": 2, + "EXTENT": 1, + "INITIAL": 1, + "[": 2, + "]": 2, + "ABLDateTimeToEmail": 3, + "ipdttzDateTime": 6, + "DATETIME": 3, + "TZ": 2, + "DAY": 1, + "MONTH": 1, + "YEAR": 1, + "TRUNCATE": 2, + "MTIME": 1, + "/": 2, + "ABLTimeZoneToString": 2, + "TIMEZONE": 1, + "ipdtDateTime": 2, + "ipiTimeZone": 3, + "ABSOLUTE": 1, + "MODULO": 1, + "LONGCHAR": 4, + "ConvertDataToBase64": 1, + "iplcNonEncodedData": 2, + "lcPreBase64Data": 4, + "lcPostBase64Data": 3, + "mptrPostBase64Data": 3, + "i": 3, + "COPY": 1, + "LOB": 1, + "FROM": 1, + "TO": 2, + "mptrPostBase64Data.": 1, + "BASE64": 1, + "ENCODE": 1, + "BY": 1, + "SUBSTRING": 1, + "CHR": 2, + "lcPostBase64Data.": 1 + }, + "Latte": { + "{": 54, + "**": 1, + "*": 4, + "@param": 3, + "string": 2, + "basePath": 1, + "web": 1, + "base": 1, + "path": 1, + "robots": 2, + "tell": 1, + "how": 1, + "to": 2, + "index": 1, + "the": 1, + "content": 1, + "of": 3, + "a": 4, + "page": 1, + "(": 18, + "optional": 1, + ")": 18, + "array": 1, + "flashes": 1, + "flash": 3, + "messages": 1, + "}": 54, + "": 1, + "html": 1, + "": 1, + "": 1, + "": 6, + "charset=": 1, + "name=": 4, + "content=": 5, + "n": 8, + "ifset=": 1, + "http": 1, + "equiv=": 1, + "": 1, + "ifset": 1, + "title": 4, + "/ifset": 1, + "Translation": 1, + "report": 1, + "": 1, + "": 2, + "rel=": 2, + "media=": 1, + "href=": 4, + "": 3, + "block": 3, + "#head": 1, + "/block": 3, + "": 1, + "": 1, + "class=": 12, + "document.documentElement.className": 1, + "+": 3, + "#navbar": 1, + "include": 3, + "_navbar.latte": 1, + "
": 6, + "inner": 1, + "foreach=": 3, + "_flash.latte": 1, + "
": 7, + "#content": 1, + "
": 1, + "
": 1, + "src=": 1, + "#scripts": 1, + "": 1, + "": 1, + "var": 3, + "define": 1, + "author": 7, + "
": 2, + "Author": 2, + "authorId": 2, + "-": 71, + "id": 3, + "black": 2, + "avatar": 2, + "img": 2, + "rounded": 2, + "class": 2, + "tooltip": 4, + "Total": 1, + "time": 4, + "shortName": 1, + "translated": 4, + "on": 5, + "all": 1, + "videos.": 1, + "amaraCallbackLink": 1, + "row": 2, + "col": 3, + "md": 2, + "outOf": 5, + "done": 7, + "threshold": 4, + "alert": 2, + "warning": 2, + "<=>": 2, + "Seems": 1, + "complete": 1, + "|": 6, + "out": 1, + "

": 2, + "elseif": 2, + "<": 1, + "p": 1, + "if": 7, + "Although": 1, + "is": 1, + "there": 1, + "are": 1, + "no": 1, + "English": 1, + "subtitles": 1, + "for": 1, + "comparison.": 1, + "/if": 8, + "/cache": 1, + "editor": 1, + "ksid": 2, + "new": 5, + "video": 2, + "siteId": 1, + "Video": 1, + "khanovaskola.cz": 1, + "revision": 18, + "rev": 4, + "this": 3, + "older": 1, + "#": 2, + "else": 2, + "newer": 1, + "
": 1, + "

": 1, + "diffs": 3, + "noescape": 2, + "

": 1, + "description": 1, + "text": 4, + "as": 2, + "line": 3, + "context": 1, + "splitter": 1, + "template": 1, + "bottom": 1, + "Expand": 1, + "fa": 16, + "sort": 1, + "ellipsis": 1, + "h": 1, + "success": 1, + "amaraEdit": 1, + "amaraId": 2, + "editButton": 1, + "btn": 17, + "default": 6, + "edit": 1, + "khanAcademy": 1, + "kaButton": 1, + "link": 1, + "info": 1, + "group": 4, + "approve": 1, + "thumbs": 3, + "up": 1, + "markIncomplete": 2, + "down": 2, + "redirectToAdd": 1, + "plus": 1, + "square": 1, + "table": 2, + "condensed": 1, + "revisions": 1, + "revId": 1, + "secondary": 2, + "Percent": 1, + "lines": 1, + "&": 1, + "thinsp": 1, + "%": 1, + "": 3, + "": 3, + "": 2, + "incomplete": 3, + "approved": 2, + "": 1, + "user": 1, + "loggedIn": 1, + "&&": 1, + "comments": 2, + "count": 1, + "": 2, + "": 2, + "colspan=": 1, + "": 1, + "comment": 4, + "left": 1, + "createdAt": 1, + "timeAgo": 1, + "noborder": 1, + "input": 3, + "form": 1, + "control": 1, + "Comment": 1, + "only": 1, + "visible": 1, + "other": 1, + "editors": 1, + "save": 1, + "share": 1, + "": 1, + "": 1, + "/form": 1, + "/foreach": 1, + "
": 1 + }, + "Racket": { + ";": 3, + "Clean": 1, + "simple": 1, + "and": 1, + "efficient": 1, + "code": 1, + "-": 94, + "that": 2, + "s": 1, + "the": 3, + "power": 1, + "of": 4, + "Racket": 2, + "http": 1, + "//racket": 1, + "lang.org/": 1, + "(": 23, + "define": 1, + "bottles": 4, + "n": 8, + "more": 2, + ")": 23, + "printf": 2, + "case": 1, + "[": 16, + "]": 16, + "else": 1, + "if": 1, + "for": 2, + "in": 3, + "range": 1, + "sub1": 1, + "displayln": 2, + "#lang": 1, + "scribble/manual": 1, + "@": 3, + "require": 1, + "scribble/bnf": 1, + "@title": 1, + "{": 2, + "Scribble": 3, + "The": 1, + "Documentation": 1, + "Tool": 1, + "}": 2, + "@author": 1, + "is": 3, + "a": 1, + "collection": 1, + "tools": 1, + "creating": 1, + "prose": 2, + "documents": 1, + "papers": 1, + "books": 1, + "library": 1, + "documentation": 1, + "etc.": 1, + "HTML": 1, + "or": 2, + "PDF": 1, + "via": 1, + "Latex": 1, + "form.": 1, + "More": 1, + "generally": 1, + "helps": 1, + "you": 1, + "write": 1, + "programs": 1, + "are": 1, + "rich": 1, + "textual": 1, + "content": 2, + "whether": 1, + "to": 2, + "be": 2, + "typeset": 1, + "any": 1, + "other": 1, + "form": 1, + "text": 1, + "generated": 1, + "programmatically.": 1, + "This": 1, + "document": 1, + "itself": 1, + "written": 1, + "using": 1, + "Scribble.": 1, + "You": 1, + "can": 1, + "see": 1, + "its": 1, + "source": 1, + "at": 1, + "let": 1, + "url": 3, + "link": 1, + "starting": 1, + "with": 1, + "@filepath": 1, + "scribble.scrbl": 1, + "file.": 1, + "@table": 1, + "contents": 1, + "@include": 8, + "section": 9, + "@index": 1 + }, + "Assembly": { + ";": 20, + "flat": 4, + "assembler": 6, + "interface": 2, + "for": 2, + "Win32": 2, + "Copyright": 4, + "(": 13, + "c": 4, + ")": 6, + "-": 87, + "Tomasz": 4, + "Grysztar.": 4, + "All": 4, + "rights": 4, + "reserved.": 4, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "format": 1, "PE": 1, "console": 1, @@ -3187,6 +4145,7 @@ "readable": 4, "executable": 1, "start": 1, +<<<<<<< HEAD "mov": 28, "[": 25, "con_handle": 2, @@ -3210,12 +4169,38 @@ "additional_memory": 1, "shr": 1, "display_number": 5, +======= + "mov": 1253, + "[": 2026, + "con_handle": 8, + "]": 2026, + "STD_OUTPUT_HANDLE": 2, + "esi": 619, + "_logo": 2, + "call": 845, + "display_string": 19, + "get_params": 2, + "jc": 28, + "information": 2, + "init_memory": 2, + "_memory_prefix": 2, + "eax": 510, + "memory_end": 7, + "sub": 64, + "memory_start": 4, + "add": 76, + "additional_memory_end": 9, + "additional_memory": 6, + "shr": 30, + "display_number": 8, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "_memory_suffix": 2, "GetTickCount": 3, "start_time": 3, "preprocessor": 1, "parser": 1, "formatter": 1, +<<<<<<< HEAD "display_user_messages": 1, "movzx": 1, "current_pass": 1, @@ -3252,30 +4237,83 @@ "cmp": 31, "h": 18, "je": 25, +======= + "display_user_messages": 3, + "movzx": 13, + "current_pass": 16, + "inc": 87, + "_passes_suffix": 2, + "xor": 52, + "edx": 219, + "ebx": 336, + "div": 8, + "or": 194, + "jz": 107, + "display_bytes_count": 2, + "push": 150, + "dl": 58, + "display_character": 6, + "pop": 99, + "_seconds_suffix": 2, + "written_size": 1, + "_bytes_suffix": 2, + "al": 1174, + "jmp": 450, + "exit_program": 5, + "_usage": 2, + "input_file": 4, + "output_file": 3, + "symbols_file": 4, + "memory_setting": 4, + "passes_limit": 3, + "GetCommandLine": 2, + "edi": 250, + "params": 2, + "find_command_start": 2, + "lodsb": 12, + "cmp": 1088, + "h": 376, + "je": 485, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "skip_quoted_name": 3, "skip_name": 2, "find_param": 7, "all_params": 5, "option_param": 2, +<<<<<<< HEAD "Dh": 15, "jne": 3, +======= + "Dh": 19, + "jne": 485, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "get_output_file": 2, "process_param": 3, "bad_params": 11, "string_param": 3, "copy_param": 2, +<<<<<<< HEAD "stosb": 3, +======= + "stosb": 6, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "param_end": 6, "string_param_end": 2, "memory_option": 4, "passes_option": 4, "symbols_option": 3, +<<<<<<< HEAD "stc": 2, "ret": 4, +======= + "stc": 9, + "ret": 70, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "get_option_value": 3, "get_option_digit": 2, "option_value_ok": 4, "invalid_option_value": 5, +<<<<<<< HEAD "ja": 2, "imul": 1, "jo": 1, @@ -3284,11 +4322,22 @@ "shl": 1, "jae": 1, "dx": 1, +======= + "ja": 28, + "imul": 1, + "jo": 2, + "dec": 30, + "clc": 11, + "shl": 17, + "jae": 34, + "dx": 27, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "find_symbols_file_name": 2, "include": 15, "data": 3, "writeable": 2, "_copyright": 1, +<<<<<<< HEAD "db": 30, "Ah": 9, "VERSION_STRING": 1, @@ -3301,11 +4350,26 @@ "rb": 4, "options": 1, "buffer": 1, +======= + "db": 35, + "Ah": 25, + "VERSION_STRING": 1, + "align": 1, + "dd": 22, + "bytes_count": 8, + "displayed_count": 4, + "character": 3, + "last_displayed": 5, + "rb": 4, + "options": 1, + "buffer": 14, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "stack": 1, "import": 1, "rva": 16, "kernel_name": 2, "kernel_table": 2, +<<<<<<< HEAD "ExitProcess": 1, "_ExitProcess": 2, "CreateFile": 1, @@ -28984,35 +30048,6087 @@ "scrollTo": 1, "CSS1Compat": 1, "client": 3, +======= + "ExitProcess": 2, + "_ExitProcess": 2, + "CreateFile": 3, + "_CreateFileA": 2, + "ReadFile": 2, + "_ReadFile": 2, + "WriteFile": 6, + "_WriteFile": 2, + "CloseHandle": 2, + "_CloseHandle": 2, + "SetFilePointer": 2, + "_SetFilePointer": 2, + "_GetCommandLineA": 2, + "GetEnvironmentVariable": 2, + "_GetEnvironmentVariable": 2, + "GetStdHandle": 5, + "_GetStdHandle": 2, + "VirtualAlloc": 2, + "_VirtualAlloc": 2, + "VirtualFree": 2, + "_VirtualFree": 2, + "_GetTickCount": 2, + "GetSystemTime": 2, + "_GetSystemTime": 2, + "GlobalMemoryStatus": 2, + "_GlobalMemoryStatus": 2, + "dw": 14, + "fixups": 1, + "discardable": 1, + "CREATE_NEW": 1, + "CREATE_ALWAYS": 2, + "OPEN_EXISTING": 2, + "OPEN_ALWAYS": 1, + "TRUNCATE_EXISTING": 1, + "FILE_SHARE_READ": 3, + "FILE_SHARE_WRITE": 1, + "FILE_SHARE_DELETE": 1, + "GENERIC_READ": 2, + "GENERIC_WRITE": 2, + "STD_INPUT_HANDLE": 1, + "FFFFFFF6h": 1, + "FFFFFFF5h": 1, + "STD_ERROR_HANDLE": 3, + "FFFFFFF4h": 1, + "MEM_COMMIT": 2, + "MEM_RESERVE": 1, + "MEM_DECOMMIT": 1, + "MEM_RELEASE": 2, + "MEM_FREE": 1, + "MEM_PRIVATE": 1, + "MEM_MAPPED": 1, + "MEM_RESET": 1, + "MEM_TOP_DOWN": 1, + "PAGE_NOACCESS": 1, + "PAGE_READONLY": 1, + "PAGE_READWRITE": 2, + "PAGE_WRITECOPY": 1, + "PAGE_EXECUTE": 1, + "PAGE_EXECUTE_READ": 1, + "PAGE_EXECUTE_READWRITE": 1, + "PAGE_EXECUTE_WRITECOPY": 1, + "PAGE_GUARD": 1, + "PAGE_NOCACHE": 1, + "esp": 14, + "and": 50, + "not": 42, + "FFFh": 3, + "stack_limit": 2, + "jnz": 125, + "allocate_memory": 4, + "dword": 87, + "+": 232, + "jl": 13, + "large_memory": 3, + "ecx": 153, + "not_enough_memory": 2, + "jb": 34, + "out_of_memory": 19, + "test": 95, + "do_exit": 2, + "get_environment_variable": 1, + "jbe": 11, + "buffer_for_variable_ok": 2, + "open": 2, + "file_error": 6, + "create": 1, + "write": 1, + "read": 3, + "ebp": 49, + "close": 3, + "lseek": 5, + "repne": 1, + "scasb": 1, + "neg": 4, + "bl": 124, + "display_loop": 2, + "display_digit": 3, + "digit_ok": 2, + "show_display_buffer": 2, + "line_break_ok": 4, + "make_line_break": 2, + "ax": 87, + "word": 79, + "A0Dh": 2, + "D0Ah": 1, + "display_block": 4, + "take_last_two_characters": 2, + "block_displayed": 2, + "ah": 229, + "block_ok": 2, + "fatal_error": 1, + "error_prefix": 3, + "error_suffix": 3, + "FFh": 4, + "assembler_error": 1, + "current_line": 24, + "get_error_lines": 2, + "byte": 549, + "get_next_error_line": 2, + "display_error_line": 3, + "find_definition_origin": 2, + "line_number_start": 3, + "FFFFFFFh": 2, + "line_number_ok": 2, + "line_data_start": 2, + "line_data_displayed": 2, + "lea": 8, + "get_line_data": 2, + "display_line_data": 5, + "loop": 2, + "cr_lf": 2, + "make_timestamp": 1, + "mul": 5, + "months_correction": 2, + "day_correction_ok": 4, + "b": 30, + "day_correction": 2, + "adc": 9, + "core": 2, + "simple_instruction_except64": 1, + "code_type": 106, + "illegal_instruction": 48, + "simple_instruction": 6, + "stos": 107, + "instruction_assembled": 138, + "simple_instruction_only64": 1, + "simple_instruction_16bit_except64": 1, + "simple_instruction_16bit": 2, + "size_prefix": 3, + "simple_instruction_32bit_except64": 1, + "simple_instruction_32bit": 6, + "iret_instruction": 1, + "simple_instruction_64bit": 2, + "simple_extended_instruction_64bit": 1, + "simple_extended_instruction": 1, + "Fh": 73, + "prefix_instruction": 2, + "prefixed_instruction": 11, + "continue_line": 8, + "segment_prefix": 2, + "segment_register": 7, + "store_segment_prefix": 1, + "int_instruction": 1, + "lods": 366, + "get_size_operator": 137, + "invalid_operand_size": 131, + "invalid_operand": 239, + "get_byte_value": 23, + "jns": 1, + "int_imm_ok": 2, + "recoverable_overflow": 4, + "CDh": 1, + "aa_instruction": 1, + "aa_store": 2, + "xchg": 31, + "operand_size": 121, + "basic_instruction": 1, + "base_code": 195, + "basic_reg": 2, + "basic_mem": 1, + "get_address": 62, + "basic_mem_imm": 2, + "basic_mem_reg": 1, + "convert_register": 60, + "postbyte_register": 137, + "instruction_ready": 72, + "operand_autodetect": 47, + "store_instruction": 3, + "basic_mem_imm_nosize": 2, + "basic_mem_imm_8bit": 2, + "basic_mem_imm_16bit": 2, + "basic_mem_imm_32bit": 2, + "basic_mem_imm_64bit": 1, + "size_declared": 17, + "long_immediate_not_encodable": 14, + "operand_64bit": 18, + "get_simm32": 10, + "value_type": 42, + "basic_mem_imm_32bit_ok": 2, + "recoverable_unknown_size": 19, + "value": 38, + "store_instruction_with_imm8": 11, + "operand_16bit": 25, + "get_word_value": 19, + "basic_mem_imm_16bit_store": 3, + "basic_mem_simm_8bit": 5, + "store_instruction_with_imm16": 4, + "operand_32bit": 27, + "get_dword_value": 13, + "basic_mem_imm_32bit_store": 3, + "store_instruction_with_imm32": 4, + "get_qword_value": 5, + "cdq": 11, + "value_out_of_range": 10, + "get_simm32_ok": 2, + "basic_reg_reg": 2, + "basic_reg_imm": 2, + "basic_reg_mem": 1, + "basic_reg_mem_8bit": 2, + "nomem_instruction_ready": 53, + "store_nomem_instruction": 19, + "basic_reg_imm_8bit": 2, + "basic_reg_imm_16bit": 2, + "basic_reg_imm_32bit": 2, + "basic_reg_imm_64bit": 1, + "basic_reg_imm_32bit_ok": 2, + "basic_al_imm": 2, + "basic_reg_imm_16bit_store": 3, + "basic_reg_simm_8bit": 5, + "basic_ax_imm": 2, + "basic_store_imm_16bit": 2, + "mark_relocation": 26, + "store_instruction_code": 26, + "basic_reg_imm_32bit_store": 3, + "basic_eax_imm": 2, + "basic_store_imm_32bit": 2, + "error_line": 16, + "ignore_unknown_size": 2, + "error": 7, + "operand_size_not_specified": 1, + "single_operand_instruction": 1, + "F6h": 4, + "single_reg": 2, + "single_mem": 1, + "single_mem_8bit": 2, + "single_mem_nosize": 2, + "single_reg_8bit": 2, + "mov_instruction": 1, + "mov_reg": 2, + "mov_mem": 1, + "mov_mem_imm": 2, + "mov_mem_reg": 1, + "mov_mem_general_reg": 2, + "mov_mem_sreg": 2, + "mov_mem_reg_8bit": 2, + "bh": 34, + "mov_mem_ax": 2, + "mov_mem_al": 1, + "ch": 55, + "mov_mem_address16_al": 3, + "mov_mem_address32_al": 3, + "mov_mem_address64_al": 3, + "invalid_address_size": 18, + "store_segment_prefix_if_necessary": 17, + "address_32bit_prefix": 11, + "A2h": 3, + "store_mov_address32": 4, + "store_address_32bit_value": 1, + "address_16bit_prefix": 11, + "store_mov_address16": 4, + "invalid_address": 32, + "jge": 5, + "store_mov_address64": 4, + "store_address_64bit_value": 1, + "mov_mem_address16_ax": 3, + "mov_mem_address32_ax": 3, + "mov_mem_address64_ax": 3, + "A3h": 3, + "mov_mem_sreg_store": 2, + "Ch": 11, + "mov_mem_imm_nosize": 2, + "mov_mem_imm_8bit": 2, + "mov_mem_imm_16bit": 2, + "mov_mem_imm_32bit": 2, + "mov_mem_imm_64bit": 1, + "mov_mem_imm_32bit_store": 2, + "C6h": 1, + "C7h": 4, + "F0h": 7, + "mov_sreg": 2, + "mov_reg_mem": 2, + "mov_reg_imm": 2, + "mov_reg_reg": 1, + "mov_reg_sreg": 2, + "mov_reg_reg_8bit": 2, + "mov_reg_creg": 2, + "mov_reg_dreg": 2, + "mov_reg_treg": 2, + "mov_reg_sreg64": 2, + "mov_reg_sreg32": 2, + "mov_reg_sreg_store": 3, + "extended_code": 73, + "mov_reg_xrx": 3, + "mov_reg_xrx_64bit": 2, + "mov_reg_xrx_store": 3, + "mov_reg_mem_8bit": 2, + "mov_ax_mem": 2, + "mov_al_mem": 2, + "mov_al_mem_address16": 3, + "mov_al_mem_address32": 3, + "mov_al_mem_address64": 3, + "A0h": 4, + "mov_ax_mem_address16": 3, + "mov_ax_mem_address32": 3, + "mov_ax_mem_address64": 3, + "A1h": 4, + "mov_reg_imm_8bit": 2, + "mov_reg_imm_16bit": 2, + "mov_reg_imm_32bit": 2, + "mov_reg_imm_64bit": 1, + "mov_reg_imm_64bit_store": 3, + "mov_reg_64bit_imm_32bit": 2, + "B8h": 3, + "store_mov_reg_imm_code": 5, + "B0h": 5, + "mov_store_imm_32bit": 2, + "mov_reg_imm_prefix_ok": 2, + "rex_prefix": 9, + "mov_creg": 2, + "mov_dreg": 2, + "mov_treg": 2, + "mov_sreg_mem": 2, + "mov_sreg_reg": 1, + "mov_sreg_reg_size_ok": 2, + "Eh": 8, + "mov_sreg_mem_size_ok": 2, + "mov_xrx": 3, + "mov_xrx_64bit": 2, + "mov_xrx_store": 4, + "test_instruction": 1, + "test_reg": 2, + "test_mem": 1, + "test_mem_imm": 2, + "test_mem_reg": 2, + "test_mem_reg_8bit": 2, + "test_mem_imm_nosize": 2, + "test_mem_imm_8bit": 2, + "test_mem_imm_16bit": 2, + "test_mem_imm_32bit": 2, + "test_mem_imm_64bit": 1, + "test_mem_imm_32bit_store": 2, + "F7h": 5, + "test_reg_mem": 3, + "test_reg_imm": 2, + "test_reg_reg": 1, + "test_reg_reg_8bit": 2, + "test_reg_imm_8bit": 2, + "test_reg_imm_16bit": 2, + "test_reg_imm_32bit": 2, + "test_reg_imm_64bit": 1, + "test_reg_imm_32bit_store": 2, + "test_al_imm": 2, + "A8h": 1, + "test_ax_imm": 2, + "A9h": 2, + "test_eax_imm": 2, + "test_reg_mem_8bit": 2, + "xchg_instruction": 1, + "xchg_reg": 2, + "xchg_mem": 1, + "xchg_reg_reg": 1, + "xchg_reg_reg_8bit": 2, + "xchg_ax_reg": 2, + "xchg_reg_reg_store": 3, + "xchg_ax_reg_ok": 3, + "xchg_ax_reg_store": 2, + "push_instruction": 1, + "push_size": 9, + "push_next": 2, + "push_reg": 2, + "push_imm": 2, + "push_mem": 1, + "push_mem_16bit": 3, + "push_mem_32bit": 3, + "push_mem_64bit": 3, + "push_mem_store": 4, + "push_done": 5, + "push_sreg": 2, + "push_reg_ok": 2, + "push_reg_16bit": 2, + "push_reg_32bit": 2, + "push_reg_64bit": 1, + "push_reg_store": 5, + "dh": 37, + "push_sreg16": 3, + "push_sreg32": 3, + "push_sreg64": 3, + "push_sreg_store": 4, + "push_sreg_386": 2, + "push_imm_size_ok": 3, + "push_imm_16bit": 2, + "push_imm_32bit": 2, + "push_imm_64bit": 2, + "push_imm_optimized_16bit": 3, + "push_imm_optimized_32bit": 3, + "push_imm_optimized_64bit": 2, + "push_imm_32bit_store": 8, + "push_imm_8bit": 3, + "push_imm_16bit_store": 4, + "size_override": 7, + "operand_prefix": 9, + "pop_instruction": 1, + "pop_next": 2, + "pop_reg": 2, + "pop_mem": 1, + "pop_mem_16bit": 3, + "pop_mem_32bit": 3, + "pop_mem_64bit": 3, + "pop_mem_store": 4, + "pop_done": 3, + "pop_sreg": 2, + "pop_reg_ok": 2, + "pop_reg_16bit": 2, + "pop_reg_32bit": 2, + "pop_reg_64bit": 2, + "pop_reg_store": 5, + "pop_cs": 2, + "pop_sreg16": 3, + "pop_sreg32": 3, + "pop_sreg64": 3, + "pop_sreg_store": 4, + "pop_sreg_386": 2, + "pop_cs_store": 3, + "inc_instruction": 1, + "inc_reg": 2, + "inc_mem": 2, + "inc_mem_8bit": 2, + "inc_mem_nosize": 2, + "FEh": 2, + "inc_reg_8bit": 2, + "inc_reg_long_form": 2, + "set_instruction": 1, + "set_reg": 2, + "set_mem": 1, + "arpl_instruction": 1, + "arpl_reg": 2, + "bound_instruction": 1, + "bound_store": 2, + "enter_instruction": 1, + "enter_imm16_size_ok": 2, + "next_pass_needed": 16, + "enter_imm16_ok": 2, + "invalid_use_of_symbol": 17, + "js": 3, + "enter_imm8_size_ok": 2, + "enter_imm8_ok": 2, + "C8h": 2, + "bx": 8, + "ret_instruction_only64": 1, + "ret_instruction": 5, + "ret_instruction_32bit_except64": 1, + "ret_instruction_32bit": 1, + "ret_instruction_16bit": 1, + "retf_instruction": 1, + "ret_instruction_64bit": 1, + "simple_ret": 4, + "ret_imm": 3, + "ret_imm_ok": 2, + "ret_imm_store": 2, + "lea_instruction": 1, + "ls_instruction": 1, + "les_instruction": 2, + "lds_instruction": 2, + "ls_code_ok": 2, + "C4h": 1, + "ls_short_code": 2, + "C5h": 2, + "ls_16bit": 2, + "ls_32bit": 2, + "ls_64bit": 2, + "sh_instruction": 1, + "sh_reg": 2, + "sh_mem": 1, + "sh_mem_imm": 2, + "sh_mem_reg": 1, + "sh_mem_cl_8bit": 2, + "sh_mem_cl_nosize": 2, + "D3h": 2, + "D2h": 2, + "sh_mem_imm_size_ok": 2, + "sh_mem_imm_8bit": 2, + "sh_mem_imm_nosize": 2, + "sh_mem_1": 2, + "C1h": 2, + "D1h": 2, + "sh_mem_1_8bit": 2, + "C0h": 2, + "D0h": 2, + "sh_reg_imm": 2, + "sh_reg_reg": 1, + "sh_reg_cl_8bit": 2, + "sh_reg_imm_size_ok": 2, + "sh_reg_imm_8bit": 2, + "sh_reg_1": 2, + "sh_reg_1_8bit": 2, + "shd_instruction": 1, + "shd_reg": 2, + "shd_mem": 1, + "shd_mem_reg_imm": 2, + "shd_mem_reg_imm_size_ok": 2, + "shd_reg_reg_imm": 2, + "shd_reg_reg_imm_size_ok": 2, + "movx_instruction": 1, + "movx_reg": 2, + "movx_unknown_size": 2, + "movx_mem_store": 3, + "movx_reg_8bit": 2, + "movx_reg_16bit": 2, + "movsxd_instruction": 1, + "movsxd_reg": 2, + "movsxd_mem_store": 2, + "bt_instruction": 1, + "bt_reg": 2, + "bt_mem_imm": 3, + "bt_mem_reg": 2, + "bt_mem_imm_size_ok": 2, + "bt_mem_imm_nosize": 2, + "bt_mem_imm_store": 2, + "BAh": 2, + "bt_reg_imm": 3, + "bt_reg_reg": 2, + "bt_reg_imm_size_ok": 2, + "bt_reg_imm_store": 1, + "bs_instruction": 1, + "get_reg_mem": 2, + "bs_reg_reg": 2, + "get_reg_reg": 2, + "invalid_argument": 28, + "imul_instruction": 1, + "imul_reg": 2, + "imul_mem": 1, + "imul_mem_8bit": 2, + "imul_mem_nosize": 2, + "imul_reg_": 2, + "imul_reg_8bit": 2, + "imul_reg_imm": 3, + "imul_reg_noimm": 2, + "imul_reg_reg": 2, + "imul_reg_mem": 1, + "imul_reg_mem_imm": 2, + "AFh": 2, + "imul_reg_mem_imm_16bit": 2, + "imul_reg_mem_imm_32bit": 2, + "imul_reg_mem_imm_64bit": 1, + "imul_reg_mem_imm_32bit_ok": 2, + "imul_reg_mem_imm_16bit_store": 4, + "imul_reg_mem_imm_8bit_store": 3, + "imul_reg_mem_imm_32bit_store": 4, + "Bh": 11, + "imul_reg_reg_imm": 3, + "imul_reg_reg_imm_16bit": 2, + "imul_reg_reg_imm_32bit": 2, + "imul_reg_reg_imm_64bit": 1, + "imul_reg_reg_imm_32bit_ok": 2, + "imul_reg_reg_imm_16bit_store": 4, + "imul_reg_reg_imm_8bit_store": 3, + "imul_reg_reg_imm_32bit_store": 4, + "in_instruction": 1, + "in_imm": 2, + "in_reg": 2, + "in_al_dx": 2, + "in_ax_dx": 2, + "EDh": 1, + "ECh": 1, + "in_imm_size_ok": 2, + "in_al_imm": 2, + "in_ax_imm": 2, + "E5h": 1, + "E4h": 1, + "out_instruction": 1, + "out_imm": 2, + "out_dx_al": 2, + "out_dx_ax": 2, + "EFh": 1, + "EEh": 1, + "out_imm_size_ok": 2, + "out_imm_al": 2, + "out_imm_ax": 2, + "E7h": 1, + "E6h": 1, + "call_instruction": 1, + "E8h": 3, + "process_jmp": 2, + "jmp_instruction": 1, + "E9h": 1, + "EAh": 1, + "get_jump_operator": 3, + "jmp_imm": 2, + "jmp_reg": 2, + "jmp_mem": 1, + "jump_type": 14, + "jmp_mem_size_not_specified": 2, + "jmp_mem_16bit": 3, + "jmp_mem_32bit": 2, + "jmp_mem_48bit": 2, + "jmp_mem_64bit": 2, + "jmp_mem_80bit": 2, + "jmp_mem_far": 2, + "jmp_mem_near": 2, + "jmp_mem_near_32bit": 3, + "jmp_mem_far_32bit": 4, + "jmp_mem_far_store": 3, + "jmp_reg_16bit": 2, + "jmp_reg_32bit": 2, + "jmp_reg_64bit": 1, + "invalid_value": 21, + "skip_symbol": 5, + "jmp_far": 2, + "jmp_near": 1, + "jmp_imm_16bit": 3, + "jmp_imm_32bit": 2, + "jmp_imm_64bit": 3, + "get_address_dword_value": 3, + "jmp_imm_32bit_prefix_ok": 2, + "calculate_jump_offset": 10, + "check_for_short_jump": 8, + "jmp_short": 3, + "jmp_imm_32bit_store": 2, + "jno": 2, + "jmp_imm_32bit_ok": 2, + "relative_jump_out_of_range": 6, + "get_address_qword_value": 3, + "jnc": 11, + "EBh": 1, + "get_address_word_value": 3, + "jmp_imm_16bit_prefix_ok": 2, + "cwde": 3, + "addressing_space": 17, + "calculate_relative_offset": 2, + "forced_short": 2, + "no_short_jump": 4, + "short_jump": 4, + "jmp_short_value_type_ok": 2, + "jump_out_of_range": 3, + "symbol_identifier": 4, + "jmp_far_16bit": 2, + "jmp_far_32bit": 3, + "jmp_far_segment": 2, + "conditional_jump": 1, + "conditional_jump_16bit": 3, + "conditional_jump_32bit": 2, + "conditional_jump_64bit": 3, + "conditional_jump_32bit_prefix_ok": 2, + "conditional_jump_short": 4, + "conditional_jump_32bit_store": 2, + "conditional_jump_32bit_range_ok": 2, + "conditional_jump_16bit_prefix_ok": 2, + "loop_instruction_16bit": 1, + "loop_instruction": 5, + "loop_instruction_32bit": 1, + "loop_instruction_64bit": 1, + "loop_jump_16bit": 3, + "loop_jump_32bit": 2, + "loop_jump_64bit": 3, + "loop_jump_32bit_prefix_ok": 2, + "loop_counter_size": 4, + "make_loop_jump": 3, + "scas": 10, + "loop_counter_size_ok": 2, + "loop_jump_16bit_prefix_ok": 2, + "movs_instruction": 1, + "address_sizes_do_not_agree": 2, + "movs_address_16bit": 2, + "movs_address_32bit": 2, + "movs_store": 3, + "A4h": 1, + "movs_check_size": 5, + "lods_instruction": 1, + "lods_address_16bit": 2, + "lods_address_32bit": 2, + "lods_store": 3, + "ACh": 1, + "stos_instruction": 1, + "stos_address_16bit": 2, + "stos_address_32bit": 2, + "stos_store": 3, + "cmps_instruction": 1, + "cmps_address_16bit": 2, + "cmps_address_32bit": 2, + "cmps_store": 3, + "A6h": 1, + "ins_instruction": 1, + "ins_address_16bit": 2, + "ins_address_32bit": 2, + "ins_store": 3, + "ins_check_size": 2, + "outs_instruction": 1, + "outs_address_16bit": 2, + "outs_address_32bit": 2, + "outs_store": 3, + "xlat_instruction": 1, + "xlat_address_16bit": 2, + "xlat_address_32bit": 2, + "xlat_store": 3, + "D7h": 1, + "pm_word_instruction": 1, + "pm_reg": 2, + "pm_mem": 2, + "pm_mem_store": 2, + "pm_store_word_instruction": 1, + "lgdt_instruction": 1, + "lgdt_mem_48bit": 2, + "lgdt_mem_80bit": 2, + "lgdt_mem_store": 4, + "lar_instruction": 1, + "lar_reg_reg": 2, + "lar_reg_mem": 2, + "invlpg_instruction": 1, + "swapgs_instruction": 1, + "rdtscp_instruction": 1, + "basic_486_instruction": 1, + "basic_486_reg": 2, + "basic_486_mem_reg_8bit": 2, + "basic_486_reg_reg_8bit": 2, + "bswap_instruction": 1, + "bswap_reg_code_ok": 2, + "bswap_reg64": 2, + "cmpxchgx_instruction": 1, + "cmpxchgx_size_ok": 2, + "cmpxchgx_store": 2, + "nop_instruction": 1, + "extended_nop": 4, + "extended_nop_reg": 2, + "extended_nop_store": 2, + "basic_fpu_instruction": 1, + "D8h": 2, + "basic_fpu_streg": 2, + "basic_fpu_mem": 2, + "basic_fpu_mem_32bit": 2, + "basic_fpu_mem_64bit": 2, + "DCh": 2, + "convert_fpu_register": 9, + "basic_fpu_single_streg": 3, + "basic_fpu_st0": 2, + "basic_fpu_streg_st0": 2, + "simple_fpu_instruction": 1, + "D9h": 6, + "fi_instruction": 1, + "fi_mem_16bit": 2, + "fi_mem_32bit": 2, + "DAh": 2, + "DEh": 2, + "fld_instruction": 1, + "fld_streg": 2, + "fld_mem_32bit": 2, + "fld_mem_64bit": 2, + "fld_mem_80bit": 2, + "DDh": 6, + "fld_mem_80bit_store": 3, + "DBh": 4, + "fst_streg": 2, + "fild_instruction": 1, + "fild_mem_16bit": 2, + "fild_mem_32bit": 2, + "fild_mem_64bit": 2, + "DFh": 5, + "fisttp_64bit_store": 2, + "fild_mem_64bit_store": 3, + "fbld_instruction": 1, + "fbld_mem_80bit": 3, + "faddp_instruction": 1, + "faddp_streg": 2, + "fcompp_instruction": 1, + "D9DEh": 1, + "fucompp_instruction": 1, + "E9DAh": 1, + "fxch_instruction": 1, + "fpu_single_operand": 3, + "ffreep_instruction": 1, + "ffree_instruction": 1, + "fpu_streg": 2, + "fstenv_instruction": 1, + "fldenv_instruction": 3, + "fpu_mem": 2, + "fstenv_instruction_16bit": 1, + "fldenv_instruction_16bit": 1, + "fstenv_instruction_32bit": 1, + "fldenv_instruction_32bit": 1, + "fsave_instruction_32bit": 1, + "fnsave_instruction_32bit": 1, + "fnsave_instruction": 3, + "fsave_instruction_16bit": 1, + "fnsave_instruction_16bit": 1, + "fsave_instruction": 1, + "fstcw_instruction": 1, + "fldcw_instruction": 1, + "fldcw_mem_16bit": 3, + "fstsw_instruction": 1, + "fnstsw_instruction": 1, + "fstsw_reg": 2, + "fstsw_mem_16bit": 3, + "E0DFh": 1, + "finit_instruction": 1, + "fninit_instruction": 1, + "fcmov_instruction": 1, + "fcomi_streg": 3, + "fcomi_instruction": 1, + "fcomip_instruction": 1, + "fcomi_st0_streg": 2, + "basic_mmx_instruction": 1, + "mmx_instruction": 1, + "convert_mmx_register": 18, + "make_mmx_prefix": 9, + "mmx_mmreg_mmreg": 3, + "mmx_mmreg_mem": 2, + "mmx_bit_shift_instruction": 1, + "mmx_ps_mmreg_imm8": 2, + "pmovmskb_instruction": 1, + "pmovmskb_reg_size_ok": 2, + "mmx_nomem_imm8": 7, + "mmx_imm8": 6, + "cl": 42, + "append_imm8": 2, + "pinsrw_instruction": 1, + "pinsrw_mmreg_reg": 2, + "pshufw_instruction": 1, + "mmx_size": 30, + "opcode_prefix": 30, + "pshuf_instruction": 2, + "pshufd_instruction": 1, + "pshuf_mmreg_mmreg": 2, + "movd_instruction": 1, + "movd_reg": 2, + "movd_mmreg": 2, + "movd_mmreg_reg": 2, + "vex_required": 2, + "mmx_prefix_for_vex": 2, + "no_mmx_prefix": 2, + "movq_instruction": 1, + "movq_reg": 2, + "movq_mem_xmmreg": 2, + "D6h": 2, + "movq_mmreg": 2, + "movq_mmreg_": 2, + "F3h": 7, + "movq_mmreg_reg": 2, + "movq_mmreg_mmreg": 2, + "movq_mmreg_reg_store": 2, + "movdq_instruction": 1, + "movdq_mmreg": 2, + "convert_xmm_register": 12, + "movdq_mmreg_mmreg": 2, + "lddqu_instruction": 1, + "F2h": 6, + "movdq2q_instruction": 1, + "movq2dq_": 2, + "movq2dq_instruction": 1, + "sse_ps_instruction_imm8": 1, + "immediate_size": 9, + "sse_ps_instruction": 1, + "sse_instruction": 11, + "sse_pd_instruction_imm8": 1, + "sse_pd_instruction": 1, + "sse_ss_instruction": 1, + "sse_sd_instruction": 1, + "cmp_pd_instruction": 1, + "cmp_ps_instruction": 1, + "C2h": 4, + "cmp_ss_instruction": 1, + "cmp_sx_instruction": 2, + "cmpsd_instruction": 1, + "A7h": 1, + "cmp_sd_instruction": 1, + "comiss_instruction": 1, + "comisd_instruction": 1, + "cvtdq2pd_instruction": 1, + "cvtps2pd_instruction": 1, + "cvtpd2dq_instruction": 1, + "movshdup_instruction": 1, + "sse_xmmreg": 2, + "sse_reg": 1, + "sse_xmmreg_xmmreg": 2, + "sse_reg_mem": 2, + "sse_mem_size_ok": 2, + "supplemental_code": 2, + "sse_cmp_mem_ok": 3, + "sse_ok": 2, + "take_additional_xmm0": 3, + "sse_xmmreg_xmmreg_ok": 4, + "sse_cmp_nomem_ok": 3, + "sse_nomem_ok": 2, + "additional_xmm0_ok": 2, + "pslldq_instruction": 1, + "movpd_instruction": 1, + "movps_instruction": 1, + "sse_mov_instruction": 3, + "movss_instruction": 1, + "sse_movs": 2, + "movsd_instruction": 1, + "A5h": 1, + "sse_mem": 2, + "sse_mem_xmmreg": 2, + "movlpd_instruction": 1, + "movlps_instruction": 1, + "movhlps_instruction": 1, + "maskmovq_instruction": 1, + "maskmov_instruction": 2, + "maskmovdqu_instruction": 1, + "movmskpd_instruction": 1, + "movmskps_instruction": 1, + "movmskps_reg_ok": 2, + "cvtpi2pd_instruction": 1, + "cvtpi2ps_instruction": 1, + "stub_size": 1, + "resolver_flags": 1, + "number_of_sections": 1, + "actual_fixups_size": 1, + "assembler_loop": 2, + "labels_list": 3, + "tagged_blocks": 23, + "free_additional_memory": 2, + "structures_buffer": 9, + "source_start": 1, + "code_start": 2, + "adjustment": 4, + "counter": 13, + "format_flags": 2, + "number_of_relocations": 1, + "undefined_data_end": 4, + "file_extension": 1, + "output_format": 3, + "adjustment_sign": 2, + "init_addressing_space": 6, + "pass_loop": 2, + "assemble_line": 3, + "pass_done": 2, + "missing_end_directive": 7, + "close_pass": 1, + "check_symbols": 2, + "symbols_checked": 2, + "symbol_defined_ok": 5, + "cx": 42, + "use_prediction_ok": 5, + "check_use_prediction": 2, + "use_misprediction": 3, + "check_next_symbol": 5, + "define_misprediction": 4, + "check_define_prediction": 2, + "LABEL_STRUCTURE_SIZE": 1, + "next_pass": 3, + "assemble_ok": 2, + "undefined_symbol": 2, + "error_confirmed": 3, + "error_info": 2, + "error_handler": 3, + "code_cannot_be_generated": 1, + "create_addressing_space": 1, + "assemble_instruction": 2, + "source_end": 2, + "define_label": 2, + "define_constant": 2, + "label_addressing_space": 2, + "new_line": 2, + "code_type_setting": 2, + "line_assembled": 3, + "reserved_word_used_as_symbol": 6, + "label_size": 5, + "make_label": 3, + "ds": 21, + "sbb": 9, + "jp": 2, + "label_value_ok": 2, + "address_sign": 4, + "make_virtual_label": 2, + "setnz": 5, + "finish_label": 2, + "setne": 14, + "finish_label_symbol": 2, + "label_symbol_ok": 2, + "new_label": 2, + "symbol_already_defined": 3, + "btr": 2, + "requalified_label": 2, + "label_made": 4, + "get_constant_value": 4, + "get_value": 2, + "constant_referencing_mode_ok": 2, + "make_constant": 2, + "value_sign": 3, + "constant_symbol_ok": 2, + "new_constant": 2, + "redeclare_constant": 2, + "requalified_constant": 2, + "make_addressing_space_label": 3, + "vex_register": 1, + "instruction_handler": 32, + "extra_characters_on_line": 8, + "org_directive": 1, + "in_virtual": 2, + "org_space_ok": 2, + "close_virtual_addressing_space": 3, + "org_value_ok": 2, + "bts": 1, + "label_directive": 1, + "get_label_size": 2, + "label_size_ok": 2, + "get_free_label_value": 2, + "get_address_value": 3, + "bp": 2, + "make_free_label": 1, + "address_symbol": 2, + "load_directive": 1, + "load_size_ok": 2, + "get_data_point": 3, + "value_loaded": 2, + "rep": 7, + "movs": 8, + "get_data_address": 5, + "addressing_space_unavailable": 3, + "symbol_out_of_scope": 1, + "get_addressing_space": 3, + "store_label_reference": 1, + "data_address_type_ok": 2, + "bad_data_address": 3, + "store_directive": 1, + "sized_store": 2, + "store_value_ok": 2, + "undefined_data_start": 3, + "display_directive": 2, + "display_byte": 2, + "display_next": 2, + "display_done": 3, + "display_messages": 2, + "skip_block": 2, + "times_directive": 1, + "get_count_value": 6, + "zero_times": 3, + "times_argument_ok": 2, + "counter_limit": 7, + "times_loop": 2, + "stack_overflow": 2, + "times_done": 2, + "virtual_directive": 3, + "virtual_at_current": 2, + "set_virtual": 2, + "allocate_structure_data": 5, + "find_structure_data": 6, + "scan_structures": 2, + "no_such_structure": 2, + "structure_data_found": 2, + "end_virtual": 2, + "unexpected_instruction": 18, + "remove_structure_data": 7, + "std": 2, + "cld": 2, + "addressing_space_closed": 2, + "virtual_byte_ok": 2, + "virtual_word_ok": 2, + "repeat_directive": 7, + "zero_repeat": 2, + "end_repeat": 2, + "continue_repeating": 2, + "stop_repeat": 2, + "find_end_repeat": 4, + "find_structure_end": 5, + "while_directive": 7, + "do_while": 2, + "calculate_logical_expression": 3, + "while_true": 2, + "stop_while": 2, + "find_end_while": 3, + "end_while": 2, + "too_many_repeats": 1, + "if_directive": 13, + "if_true": 2, + "find_else": 4, + "else_true": 3, + "make_if_structure": 2, + "else_directive": 3, + "found_else": 2, + "skip_else": 3, + "find_end_if": 3, + "end_if": 2, + "else_found": 2, + "find_end_directive": 10, + "no_end_directive": 2, + "skip_labels": 2, + "labels_ok": 2, + "skip_repeat": 2, + "skip_while": 2, + "skip_if": 2, + "structure_end": 4, + "end_directive": 2, + "skip_if_block": 4, + "if_block_skipped": 2, + "skip_after_else": 3, + "data_directive": 1, + "end_data": 1, + "break_directive": 1, + "find_breakable_structure": 4, + "break_repeat": 2, + "break_while": 2, + "break_if": 2, + "data_bytes": 1, + "define_data": 8, + "get_byte": 2, + "undefined_data": 7, + "get_string": 2, + "mark_undefined_data": 2, + "undefined_data_ok": 2, + "simple_data_value": 3, + "skip_expression": 1, + "duplicate_zero_times": 2, + "duplicate_single_data_value": 3, + "duplicate_data": 2, + "duplicated_values": 2, + "near": 3, + "data_defined": 5, + "skip_single_data_value": 2, + "skip_data_value": 2, + "data_unicode": 1, + "define_words": 2, + "data_words": 1, + "get_word": 2, + "word_data_value": 2, + "word_string": 2, + "jecxz": 1, + "word_string_ok": 2, + "ecx*2": 1, + "copy_word_string": 2, + "data_dwords": 1, + "get_dword": 2, + "complex_dword": 2, + "data_pwords": 1, + "get_pword": 2, + "get_pword_value": 1, + "complex_pword": 2, + "data_qwords": 1, + "get_qword": 2, + "data_twords": 1, + "get_tword": 2, + "complex_tword": 2, + "fp_zero_tword": 2, + "jg": 1, + "tword_exp_ok": 3, + "large_shift": 2, + "shrd": 1, + "tword_mantissa_shift_done": 2, + "store_shifted_mantissa": 2, + "data_file": 2, + "open_binary_file": 2, + "position_ok": 2, + "size_ok": 2, + "error_reading_file": 1, + "find_current_source_path": 2, + "get_current_path": 3, + "cut_current_path": 1, + "current_path_ok": 1, + "/": 1, + ".": 7, + "invalid_align_value": 3, + "section_not_aligned_enough": 4, + "make_alignment": 3, + "pe_alignment": 2, + "nops": 2, + "reserved_data": 2, + "nops_stosb_ok": 2, + "nops_stosw_ok": 2, + "err_directive": 1, + "invoked_error": 2, + "assert_directive": 1, + "assertion_failed": 1 + }, + "AsciiDoc": { + "Gregory": 2, + "Rom": 2, + "has": 2, + "written": 2, + "an": 2, + "AsciiDoc": 3, + "plugin": 2, + "for": 2, + "the": 2, + "Redmine": 2, + "project": 2, + "management": 2, + "application.": 2, + "https": 1, + "//github.com/foo": 1, + "-": 4, + "users/foo": 1, + "vicmd": 1, + "gif": 1, + "tag": 1, + "rom": 2, + "[": 2, + "]": 2, + "end": 1, + "berschrift": 1, + "*": 4, + "Codierungen": 1, + "sind": 1, + "verr": 1, + "ckt": 1, + "auf": 1, + "lteren": 1, + "Versionen": 1, + "von": 1, + "Ruby": 1, + "Home": 1, + "Page": 1, + "Example": 1, + "Articles": 1, + "Item": 6, + "Document": 1, + "Title": 1, + "Doc": 1, + "Writer": 1, + "": 1, + "idprefix": 1, + "id_": 1, + "Preamble": 1, + "paragraph.": 4, + "NOTE": 1, + "This": 1, + "is": 1, + "test": 1, + "only": 1, + "a": 1, + "test.": 1, + "Section": 3, + "A": 2, + "*Section": 3, + "A*": 2, + "Subsection": 1, + "B": 2, + "B*": 1, + ".Section": 1, + "list": 1 + }, + "Gnuplot": { + "set": 98, + "boxwidth": 1, + "absolute": 1, + "style": 7, + "fill": 1, + "solid": 1, + "border": 3, + "lt": 15, + "-": 102, + "key": 1, + "inside": 1, + "right": 1, + "top": 1, + "vertical": 2, + "Right": 1, + "noreverse": 13, + "noenhanced": 1, + "autotitles": 1, + "nobox": 1, + "histogram": 1, + "clustered": 1, + "gap": 1, + "title": 13, + "offset": 25, + "character": 22, + "datafile": 1, + "missing": 1, + "data": 1, + "histograms": 1, + "xtics": 3, + "in": 1, + "scale": 1, + "nomirror": 1, + "rotate": 3, + "by": 3, + "autojustify": 1, + "norangelimit": 3, + "font": 8, + "(": 52, + ")": 52, + "yrange": 4, + "[": 18, + "]": 18, + "nowriteback": 12, + "i": 1, + "plot": 3, + "using": 2, + "xtic": 1, + "ti": 4, + "col": 4, + "u": 25, + "dummy": 3, + "v": 31, + "label": 14, + "at": 14, + "left": 15, + "norotate": 18, + "back": 23, + "nopoint": 14, + "arrow": 7, + "from": 7, + "to": 7, + "head": 7, + "nofilled": 7, + "linetype": 11, + "linewidth": 11, + "parametric": 3, + "view": 3, + "samples": 3, + "isosamples": 3, + "hidden3d": 2, + "trianglepattern": 2, + "undefined": 2, + "altdiagonal": 2, + "bentover": 2, + "ztics": 2, + "xlabel": 6, + "textcolor": 13, + "xrange": 3, + "ylabel": 5, + "zlabel": 4, + "zrange": 2, + "sinc": 13, + "sin": 3, + "sqrt": 4, + "u**2": 4, + "+": 6, + "v**2": 4, + "/": 2, + "GPFUN_sinc": 2, + "xx": 2, + "dx": 2, + "x0": 4, + "x1": 4, + "x2": 4, + "x3": 4, + "x4": 4, + "x5": 4, + "x6": 4, + "x7": 4, + "x8": 4, + "x9": 4, + "splot": 3, + "<": 10, + "notitle": 15, + "rgb": 8, + "line": 4, + "linecolor": 4, + "pointtype": 4, + "pointsize": 4, + "default": 4, + "pointinterval": 4, + "noxtics": 2, + "noytics": 2, + "bmargin": 1, + "unset": 2, + "colorbox": 3, + "cos": 9, + "x": 7, + "ls": 4, + ".2": 1, + ".4": 1, + ".6": 1, + ".8": 1, + "lc": 3, + "SHEBANG#!gnuplot": 1, + "reset": 1, + "terminal": 1, + "png": 1, + "output": 1, + "#set": 2, + "xr": 1, + "yr": 1, + "pt": 2, + "xmin": 3, + "xmax": 1, + "n": 1, + "zbase": 2, + ".5": 2, + "*n": 1, + "floor": 3, + "u/3": 1, + "*dx": 1, + "%": 2, + "u/3.*dx": 1, + "/0": 1, + "angles": 1, + "degrees": 1, + "mapping": 1, + "spherical": 1, + "noztics": 1, + "urange": 1, + "vrange": 1, + "cblabel": 1, + "cbrange": 1, + "user": 1, + "origin": 1, + "screen": 2, + "size": 1, + "front": 1, + "bdefault": 1, + "*cos": 1, + "*sin": 1, + "with": 3, + "lines": 2, + "labels": 1, + "point": 1, + "lw": 1, + ".1": 1, + "tc": 1, + "pal": 1 + }, + "Nginx": { + "user": 1, + "www": 2, + ";": 35, + "worker_processes": 1, + "error_log": 1, + "logs/error.log": 1, + "pid": 1, + "logs/nginx.pid": 1, + "worker_rlimit_nofile": 1, + "events": 1, + "{": 10, + "worker_connections": 1, + "}": 10, + "http": 3, + "include": 3, + "conf/mime.types": 1, + "/etc/nginx/proxy.conf": 1, + "/etc/nginx/fastcgi.conf": 1, + "index": 1, + "index.html": 1, + "index.htm": 1, + "index.php": 1, + "default_type": 1, + "application/octet": 1, + "-": 2, + "stream": 1, + "log_format": 1, + "main": 5, + "access_log": 4, + "logs/access.log": 1, + "sendfile": 1, + "on": 2, + "tcp_nopush": 1, + "server_names_hash_bucket_size": 1, + "#": 4, + "this": 1, + "seems": 1, + "to": 1, + "be": 1, + "required": 1, + "for": 1, + "some": 1, + "vhosts": 1, + "server": 7, + "php/fastcgi": 1, + "listen": 3, + "server_name": 3, + "domain1.com": 1, + "www.domain1.com": 1, + "logs/domain1.access.log": 1, + "root": 2, + "html": 1, + "location": 4, + ".php": 1, + "fastcgi_pass": 1, + "simple": 2, + "reverse": 1, + "proxy": 1, + "domain2.com": 1, + "www.domain2.com": 1, + "logs/domain2.access.log": 1, + "/": 4, + "(": 1, + "images": 1, + "|": 6, + "javascript": 1, + "js": 1, + "css": 1, + "flash": 1, + "media": 1, + "static": 1, + ")": 1, + "/var/www/virtual/big.server.com/htdocs": 1, + "expires": 1, + "d": 1, + "proxy_pass": 2, + "//127.0.0.1": 1, + "upstream": 1, + "big_server_com": 1, + "weight": 2, + "load": 1, + "balancing": 1, + "big.server.com": 1, + "logs/big.server.access.log": 1, + "//big_server_com": 1 + }, + "Dogescript": { + "quiet": 1, + "wow": 4, + "such": 2, + "language": 3, + "very": 1, + "syntax": 1, + "github": 1, + "recognized": 1, + "loud": 1, + "much": 1, + "friendly": 2, + "rly": 1, + "is": 2, + "true": 1, + "plz": 2, + "console.loge": 2, + "with": 2, + "but": 1, + "module.exports": 1 + }, + "Markdown": { + "Tender": 1 + }, + "Perl": { + "pod": 1, + "head1": 36, + "NAME": 6, + "Catalyst": 10, + "PSGI": 10, + "-": 868, + "How": 1, + "and": 85, + "work": 3, + "together": 2, + "SYNOPSIS": 6, + "The": 22, + "L": 34, + "": 3, + "specification": 3, + "defines": 2, + "an": 16, + "interface": 1, + "between": 4, + "web": 8, + "servers": 2, + "Perl": 9, + "based": 2, + "applications": 2, + "frameworks.": 1, + "It": 3, + "supports": 1, + "the": 143, + "writing": 1, + "of": 64, + "portable": 1, + "that": 33, + "can": 30, + "be": 36, + "run": 1, + "using": 5, + "various": 2, + "methods": 4, + "(": 925, + "as": 37, + "a": 85, + "standalone": 1, + "server": 2, + "or": 49, + "mod_perl": 3, + "FastCGI": 2, + "etc.": 3, + ")": 923, + ".": 125, + "": 3, + "is": 69, + "implementation": 1, + "for": 83, + "running": 1, + "applications.": 1, + "used": 12, + "to": 95, + "contain": 3, + "entire": 3, + "set": 12, + "C": 56, + "<<": 10, + "Engine": 1, + "XXXX": 1, + "classes": 2, + "handle": 3, + "environments": 1, + "e.g.": 2, + "CGI": 6, + "This": 27, + "has": 3, + "been": 1, + "changed": 1, + "in": 36, + "so": 4, + "all": 23, + "done": 2, + "by": 16, + "implementing": 1, + "s": 35, + "possible": 2, + "do": 12, + "it": 28, + "manually": 2, + "creating": 3, + "": 1, + "file": 49, + "root": 1, + "your": 20, + "application.": 1, + "head2": 34, + "Why": 3, + "would": 5, + "I": 68, + "want": 7, + "write": 2, + "my": 404, + "own": 4, + ".psgi": 7, + "Writing": 2, + "allows": 4, + "you": 44, + "use": 83, + "alternate": 1, + "": 1, + "command": 14, + "start": 7, + "application": 15, + "add": 9, + "extensions": 1, + "implement": 2, + "": 1, + "such": 6, + "": 1, + "": 1, + "simplest": 1, + "<.psgi>": 1, + "called": 4, + "": 1, + "strict": 18, + ";": 1193, + "warnings": 18, + "TestApp": 5, + "app": 2, + "psgi_app": 3, + "@_": 43, + "Note": 5, + "will": 9, + "apply": 3, + "number": 4, + "middleware": 2, + "components": 2, + "automatically": 2, + "these": 4, + "B": 76, + "": 1, + "not": 54, + "applied": 1, + "if": 276, + "create": 3, + "psgi": 2, + "yourself.": 2, + "Details": 1, + "found": 11, + "below.": 1, + "Additional": 1, + "information": 2, + "about": 4, + "files": 42, + "at": 4, + "": 1, + "What": 1, + "generates": 2, + "default": 19, + "which": 7, + "": 1, + "setting": 2, + "on": 25, + "wrapped": 1, + "": 1, + "contains": 2, + "some": 1, + "engine": 1, + "specific": 2, + "fixes": 1, + "uniform": 1, + "behaviour": 2, + "contained": 1, + "over": 2, + "item": 44, + "": 1, + "": 1, + "back": 4, + "If": 15, + "override": 1, + "providing": 2, + "then": 4, + "none": 1, + "things": 2, + "returned": 3, + "when": 18, + "call": 2, + "MyApp": 1, + "Thus": 1, + "need": 5, + "any": 4, + "this": 22, + "functionality": 1, + "ll": 1, + "An": 1, + "apply_default_middlewares": 2, + "method": 8, + "supplied": 1, + "wrap": 1, + "middlewares": 1, + "are": 25, + "file.": 3, + "means": 3, + "auto": 1, + "generated": 1, + "no": 22, + "code": 8, + "looks": 2, + "something": 3, + "like": 13, + "SEE": 4, + "ALSO": 4, + "": 1, + "": 1, + "AUTHORS": 2, + "Contributors": 1, + "see": 5, + "Catalyst.pm": 1, + "COPYRIGHT": 7, + "library": 2, + "free": 4, + "software.": 1, + "You": 4, + "redistribute": 4, + "and/or": 4, + "modify": 4, + "under": 5, + "same": 2, + "terms": 4, + "itself.": 3, + "cut": 28, + "package": 14, + "Plack": 25, + "Request": 11, + "_001": 1, + "our": 34, + "VERSION": 15, + "eval": 8, + "HTTP": 16, + "Headers": 8, + "Carp": 11, + "Hash": 11, + "MultiValue": 9, + "Body": 2, + "Upload": 2, + "TempBuffer": 2, + "URI": 11, + "Escape": 6, + "sub": 225, + "_deprecated": 8, + "{": 1121, + "alt": 1, + "shift": 165, + "caller": 2, + "[": 159, + "]": 155, + "carp": 2, + "}": 1134, + "new": 55, + "class": 8, + "env": 76, + "croak": 3, + "q": 5, + "required": 2, + "unless": 39, + "defined": 54, + "&&": 83, + "ref": 33, + "eq": 31, + "bless": 7, + "_": 101, + "address": 2, + "REMOTE_ADDR": 1, + "remote_host": 2, + "REMOTE_HOST": 1, + "protocol": 1, + "SERVER_PROTOCOL": 1, + "REQUEST_METHOD": 1, + "port": 1, + "SERVER_PORT": 2, + "user": 4, + "REMOTE_USER": 1, + "request_uri": 1, + "REQUEST_URI": 2, + "path_info": 4, + "PATH_INFO": 3, + "path": 28, + "||": 49, + "script_name": 1, + "SCRIPT_NAME": 2, + "scheme": 3, + "secure": 2, + "body": 30, + "input": 9, + "content_length": 4, + "CONTENT_LENGTH": 3, + "content_type": 5, + "CONTENT_TYPE": 2, + "session": 1, + "session_options": 1, + "logger": 1, + "cookies": 9, + "self": 141, + "return": 157, + "HTTP_COOKIE": 3, + "%": 78, + "results": 8, + "@pairs": 2, + "grep": 17, + "/": 69, + "split": 13, + "pair": 4, + "s/": 22, + "+": 120, + "//": 9, + "key": 20, + "value": 12, + "map": 10, + "uri_unescape": 1, + "exists": 19, + "query_parameters": 3, + "uri": 11, + "query_form": 2, + "content": 8, + "_parse_request_body": 4, + "fh": 28, + "cl": 10, + "read": 6, + "seek": 4, + "raw_body": 1, + "headers": 56, + "field": 2, + "HTTPS": 1, + "_//": 1, + "|": 28, + "CONTENT": 1, + "COOKIE": 1, + "/i": 2, + "keys": 15, + "content_encoding": 5, + "header": 17, + "referer": 3, + "user_agent": 3, + "body_parameters": 3, + "parameters": 8, + "query": 4, + "flatten": 3, + "uploads": 5, + "hostname": 1, + "url_scheme": 1, + "params": 1, + "query_params": 1, + "body_params": 1, + "cookie": 6, + "name": 44, + "param": 8, + "wantarray": 3, + "get_all": 2, + "upload": 13, + "raw_uri": 1, + "base": 10, + "path_query": 1, + "_uri_base": 3, + "path_escape_class": 2, + "uri_escape": 3, + "QUERY_STRING": 3, + "ne": 9, + "m": 17, + "canonical": 2, + "HTTP_HOST": 1, + "SERVER_NAME": 1, + "new_response": 4, + "require": 12, + "Response": 16, + "ct": 3, + "cleanup": 1, + "buffer": 9, + "else": 53, + "spin": 2, + "while": 31, + "chunk": 4, + "<": 15, + "length": 1, + "print": 35, + "rewind": 1, + "from_mixed": 2, + "@uploads": 3, + "@obj": 3, + "k": 6, + "v": 19, + "splice": 2, + "push": 30, + "_make_upload": 2, + "copy": 4, + "__END__": 2, + "Portable": 2, + "request": 11, + "object": 6, + "from": 19, + "hash": 11, + "app_or_middleware": 1, + "#": 99, + "req": 28, + "res": 59, + "finalize": 5, + "DESCRIPTION": 4, + "": 2, + "provides": 1, + "consistent": 1, + "API": 2, + "objects": 2, + "across": 1, + "environments.": 1, + "CAVEAT": 1, + "module": 2, + "intended": 1, + "developers": 3, + "framework": 2, + "rather": 2, + "than": 5, + "end": 9, + "users": 4, + "directly": 1, + "certainly": 2, + "but": 4, + "recommended": 1, + "Apache": 2, + "yet": 1, + "too": 1, + "low": 1, + "level.": 1, + "re": 3, + "encouraged": 1, + "one": 9, + "frameworks": 2, + "support": 2, + "": 1, + "modules": 1, + "": 1, + "provide": 1, + "higher": 1, + "level": 1, + "top": 1, + "PSGI.": 1, + "METHODS": 2, + "Some": 1, + "earlier": 1, + "versions": 1, + "deprecated": 1, + "version": 2, + "Take": 1, + "look": 2, + "": 1, + "Unless": 1, + "otherwise": 2, + "noted": 1, + "attributes": 4, + "": 1, + "passing": 1, + "values": 5, + "accessor": 1, + "doesn": 8, + "debug": 1, + "set.": 1, + "Returns": 10, + "": 2, + "containing": 5, + "current": 5, + "request.": 1, + "reference": 8, + "uploads.": 2, + "": 2, + "": 1, + "objects.": 1, + "Shortcut": 6, + "content_encoding.": 1, + "content_length.": 1, + "content_type.": 1, + "header.": 2, + "referer.": 1, + "user_agent.": 1, + "GET": 1, + "POST": 1, + "with": 26, + "CGI.pm": 2, + "compatible": 1, + "method.": 1, + "alternative": 1, + "accessing": 1, + "parameters.": 3, + "Unlike": 1, + "does": 10, + "": 1, + "allow": 1, + "modifying": 1, + "@values": 1, + "@params": 1, + "A": 2, + "convenient": 1, + "access": 2, + "@fields": 1, + "filename": 68, + "Creates": 2, + "": 3, + "object.": 4, + "Handy": 1, + "remove": 2, + "dependency": 1, + "easy": 1, + "subclassing": 1, + "duck": 1, + "typing": 1, + "well": 2, + "overriding": 1, + "generation": 1, + "middlewares.": 1, + "Parameters": 1, + "take": 5, + "multiple": 5, + "i.e.": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "store": 1, + "plain": 2, + "where": 3, + "": 1, + "scalars": 1, + "": 2, + "array": 7, + "references": 1, + "don": 2, + "ARRAY": 1, + "foo": 6, + "t": 18, + "parse": 1, + "more": 2, + "twice": 1, + "efficiency.": 1, + "DISPATCHING": 1, + "wants": 1, + "dispatch": 1, + "route": 1, + "actions": 1, + "paths": 3, + "sure": 1, + "because": 3, + "": 1, + "gives": 2, + "virtual": 1, + "regardless": 1, + "how": 1, + "mounted.": 1, + "hosted": 1, + "scripts": 1, + "even": 4, + "multiplexed": 1, + "tools": 1, + "": 1, + "good": 2, + "idea": 1, + "subclass": 1, + "define": 1, + "uri_for": 2, + "args": 3, + "@": 38, + "So": 1, + "say": 1, + "link": 1, + "signoff": 1, + "": 1, + "empty.": 1, + "older": 1, + "behavior": 3, + "just": 2, + "instead.": 1, + "Cookie": 2, + "handling": 1, + "simplified": 1, + "always": 5, + "string": 5, + "encoding": 2, + "decoding": 1, + "them": 5, + "totally": 1, + "up": 1, + "framework.": 1, + "Also": 1, + "": 1, + "now": 1, + "returns": 4, + "": 1, + "Simple": 1, + "longer": 1, + "have": 2, + "wacky": 1, + "undef": 17, + "instead": 4, + "simply": 1, + "Tatsuhiko": 2, + "Miyagawa": 2, + "Kazuhiro": 1, + "Osawa": 1, + "Tokuhiro": 2, + "Matsuno": 2, + "": 1, + "": 1, + "LICENSE": 3, + "software": 3, + "SHEBANG#!perl": 5, + "Fast": 3, + "XML": 2, + "XS": 2, + "File": 54, + "Spec": 13, + "FindBin": 1, + "qw": 35, + "Bin": 3, + "#use": 1, + "lib": 2, + "catdir": 3, + "..": 7, + "_stop": 4, + "SIG": 3, + "exit": 16, + "ENV": 40, + "nginx": 2, + "external": 2, + "fcgi": 2, + "Ext_Request": 1, + "FCGI": 1, + "*STDIN": 2, + "*STDOUT": 6, + "*STDERR": 1, + "int": 2, + "ARGV": 2, + "conv": 2, + "use_attr": 1, + "indent": 1, + "output": 36, + "xml_decl": 1, + "tmpl_path": 2, + "tmpl": 5, + "data": 3, + "nick": 1, + "tree": 2, + "example": 5, + "parent": 5, + "id": 6, + "third_party": 1, + "artist_name": 2, + "venue": 2, + "event": 2, + "date": 2, + "zA": 1, + "Z0": 1, + "die": 38, + "e": 20, + "catfile": 4, + "qq": 18, + "Content": 2, + "type": 69, + "application/xml": 1, + "charset": 2, + "utf": 2, + "r": 14, + "n": 19, + "hash2xml": 1, + "text/html": 1, + "nError": 1, + "last": 17, + "M": 1, + "system": 1, + "Foo": 11, + "Bar": 1, + "@array": 1, + "SHEBANG#!#! perl": 4, + "i": 26, + "o": 17, + "examples/benchmarks/fib.pl": 1, + "Fibonacci": 2, + "Benchmark": 1, + "Calculates": 1, + "Number": 1, + "": 1, + "defaults": 16, + "unspecified": 1, + "fib": 4, + "N": 2, + "F": 24, + "": 1, + "App": 131, + "Ack": 136, + "Next": 27, + "Plugin": 2, + "Basic": 10, + "container": 1, + "functions": 2, + "ack": 38, + "program": 6, + "Version": 1, + "BEGIN": 7, + "types": 26, + "type_wanted": 20, + "mappings": 29, + "ignore_dirs": 12, + "input_from_pipe": 8, + "output_to_pipe": 12, + "dir_sep_chars": 10, + "is_cygwin": 6, + "is_windows": 12, + "Glob": 4, + "Getopt": 6, + "Long": 6, + "_MTN": 2, + "blib": 2, + "CVS": 5, + "RCS": 2, + "SCCS": 2, + "_darcs": 2, + "_sgbak": 2, + "_build": 2, + "actionscript": 2, + "mxml": 2, + "ada": 4, + "adb": 2, + "ads": 2, + "asm": 4, + "batch": 2, + "bat": 2, + "cmd": 2, + "binary": 3, + "Binary": 2, + "T": 2, + "op": 2, + "off": 4, + "tt": 4, + "tt2": 2, + "ttml": 2, + "vb": 4, + "bas": 2, + "cls": 2, + "frm": 2, + "ctl": 2, + "resx": 2, + "verilog": 2, + "vh": 2, + "sv": 2, + "vhdl": 4, + "vhd": 2, + "vim": 4, + "yaml": 4, + "yml": 2, + "xml": 6, + "dtd": 2, + "xsl": 2, + "xslt": 2, + "ent": 2, + "exts": 6, + "each": 14, + "ext": 14, + "mk": 2, + "mak": 2, + "p": 9, + "STDIN": 2, + "O": 4, + "/MSWin32/": 2, + "quotemeta": 5, + "know": 4, + "": 13, + "No": 4, + "serviceable": 1, + "parts": 1, + "inside.": 1, + "should": 6, + "this.": 1, + "FUNCTIONS": 1, + "read_ackrc": 4, + "Reads": 1, + "contents": 2, + ".ackrc": 1, + "arguments.": 1, + "@files": 12, + "ACKRC": 2, + "@dirs": 4, + "HOME": 4, + "USERPROFILE": 2, + "dir": 27, + "bsd_glob": 4, + "GLOB_TILDE": 2, + "open": 7, + "@lines": 21, + "/./": 2, + "s*#/": 2, + "<$fh>": 4, + "chomp": 3, + "close": 19, + "get_command_line_options": 4, + "Gets": 3, + "line": 20, + "arguments": 2, + "tweaking.": 1, + "opt": 291, + "pager": 19, + "ACK_PAGER_COLOR": 7, + "ACK_PAGER": 5, + "getopt_specs": 6, + "after_context": 16, + "before_context": 18, + "val": 26, + "break": 14, + "c": 5, + "count": 23, + "color": 38, + "ACK_COLOR_MATCH": 5, + "ACK_COLOR_FILENAME": 5, + "ACK_COLOR_LINENO": 4, + "column": 4, + "ignore": 7, + "option": 7, + "handled": 2, + "beforehand": 2, + "f": 25, + "flush": 8, + "follow": 7, + "G": 11, + "heading": 18, + "h": 6, + "H": 6, + "invert_file_match": 8, + "lines": 19, + "l": 17, + "regex": 28, + "passthru": 9, + "print0": 7, + "Q": 7, + "show_types": 4, + "smart_case": 3, + "sort_files": 11, + "u": 10, + "w": 4, + "remove_dir_sep": 7, + "delete": 10, + "print_version_statement": 2, + "show_help": 3, + "show_help_types": 2, + "Pod": 4, + "Usage": 4, + "pod2usage": 2, + "verbose": 2, + "exitval": 2, + "dummy": 2, + "wanted": 4, + "no//": 2, + "must": 5, + "later": 2, + "Unknown": 2, + "unshift": 4, + "@ARGV": 12, + "ACK_OPTIONS": 5, + "def_types_from_ARGV": 5, + "filetypes_supported": 5, + "parser": 12, + "Parser": 4, + "configure": 4, + "getoptions": 4, + "to_screen": 10, + "Win32": 9, + "Console": 2, + "ANSI": 3, + "join": 5, + "@ret": 10, + "warn": 22, + "uniq": 4, + "@uniq": 2, + "sort": 8, + "<=>": 2, + "b": 6, + "numerical": 2, + "occurs": 2, + "only": 11, + "once": 4, + "Go": 1, + "through": 6, + "<--type-set>": 1, + "foo=": 1, + "bar": 3, + "<--type-add>": 1, + "xml=": 1, + "Remove": 1, + "supported": 1, + "filetypes": 8, + "into": 6, + "@typedef": 8, + "td": 6, + "Builtin": 4, + "cannot": 4, + "changed.": 4, + "delete_type": 5, + "Type": 2, + "exist": 4, + "...": 2, + "@exts": 8, + ".//": 2, + "Cannot": 4, + "append": 2, + "Removes": 1, + "internal": 1, + "structures": 1, + "type_wanted.": 1, + "Internal": 2, + "error": 4, + "builtin": 2, + "ignoredir_filter": 5, + "Standard": 1, + "filter": 12, + "pass": 1, + "": 1, + "descend_filter.": 1, + "true": 3, + "directory": 8, + "ones": 1, + "we": 7, + "ignore.": 1, + "removes": 1, + "trailing": 1, + "separator": 4, + "there": 6, + "its": 2, + "argument": 1, + "list": 10, + "<$filename>": 1, + "could": 2, + "be.": 1, + "For": 5, + "": 1, + "filetype": 1, + "": 1, + "skipped": 2, + "avoid": 1, + "searching": 6, + "a.": 1, + "constant": 2, + "TEXT": 16, + "basename": 9, + ".*": 2, + "is_searchable": 8, + "lc_basename": 8, + "lc": 5, + "SHEBANG#!#!": 2, + "ruby": 3, + "lua": 2, + "erl": 2, + "hp": 2, + "ython": 2, + "d": 9, + "d.": 2, + "*": 8, + "b/": 4, + "ba": 2, + "z": 2, + "sh": 2, + "search": 11, + "false": 1, + "regular": 3, + "expression": 9, + "found.": 4, + "www": 2, + "U": 2, + "y": 8, + "tr/": 2, + "x": 7, + "w/": 3, + "nOo_/": 2, + "_thpppt": 3, + "_get_thpppt": 3, + "_bar": 3, + "&": 22, + "*I": 2, + "g": 7, + "#.": 6, + ".#": 4, + "I#": 2, + "#I": 6, + "#7": 4, + "results.": 2, + "interactively": 6, + "Print": 6, + "different": 2, + "files.": 6, + "group": 2, + "Same": 8, + "nogroup": 2, + "noheading": 2, + "nobreak": 2, + "Highlight": 2, + "matching": 15, + "text": 6, + "redirected": 2, + "Windows": 4, + "colour": 2, + "COLOR": 6, + "match": 21, + "lineno": 2, + "Set": 3, + "filenames": 7, + "matches": 7, + "numbers.": 2, + "Flush": 2, + "immediately": 2, + "non": 2, + "goes": 2, + "pipe": 4, + "finding": 2, + "Only": 7, + "without": 3, + "searching.": 2, + "PATTERN": 8, + "specified.": 4, + "REGEX": 2, + "REGEX.": 2, + "Sort": 2, + "lexically.": 3, + "invert": 2, + "Print/search": 2, + "g/": 2, + "G.": 2, + "show": 3, + "Show": 2, + "has.": 2, + "inclusion/exclusion": 2, + "All": 4, + "searched": 5, + "Ignores": 2, + ".svn": 3, + "other": 5, + "ignored": 6, + "directories": 9, + "unrestricted": 2, + "Add/Remove": 2, + "dirs": 2, + "R": 2, + "recurse": 2, + "Recurse": 3, + "subdirectories": 2, + "END_OF_HELP": 2, + "VMS": 2, + "vd": 2, + "Term": 6, + "ANSIColor": 8, + "black": 3, + "on_yellow": 3, + "bold": 5, + "green": 3, + "yellow": 3, + "printing": 2, + "qr/": 13, + "last_output_line": 6, + "any_output": 10, + "keep_context": 8, + "@before": 16, + "before_starts_at_line": 10, + "after": 18, + "still": 4, + "next_text": 8, + "has_lines": 4, + "scalar": 2, + "m/": 4, + "regex/": 9, + "next": 9, + "print_match_or_context": 13, + "elsif": 10, + "max": 12, + "nmatches": 61, + "show_filename": 35, + "context_overall_output_count": 6, + "print_blank_line": 2, + "is_binary": 4, + "search_resource": 7, + "is_match": 7, + "starting_line_no": 1, + "match_start": 5, + "match_end": 3, + "Prints": 4, + "out": 2, + "context": 1, + "around": 5, + "match.": 3, + "opts": 2, + "line_no": 12, + "show_column": 4, + "display_filename": 8, + "colored": 6, + "print_first_filename": 2, + "sep": 8, + "output_func": 8, + "print_separator": 2, + "print_filename": 2, + "display_line_no": 4, + "print_line_no": 2, + "regex/go": 2, + "regex/Term": 2, + "substr": 2, + "/eg": 2, + "z/": 2, + "K/": 2, + "z//": 2, + "print_column_no": 2, + "scope": 4, + "TOTAL_COUNT_SCOPE": 2, + "total_count": 10, + "get_total_count": 4, + "reset_total_count": 4, + "search_and_list": 8, + "Optimized": 1, + "lines.": 3, + "ors": 11, + "record": 3, + "show_total": 6, + "print_count": 4, + "print_count0": 2, + "filetypes_supported_set": 9, + "True/False": 1, + "print_files": 4, + "iter": 23, + "iterator": 3, + "<$regex>": 1, + "<$one>": 1, + "stop": 1, + "first.": 1, + "<$ors>": 1, + "<\"\\n\">": 1, + "what": 14, + "filename.": 1, + "print_files_with_matches": 4, + "was": 2, + "repo": 18, + "Repository": 11, + "next_resource": 6, + "print_matches": 4, + "tarballs_work": 4, + ".tar": 2, + ".gz": 2, + "Tar": 4, + "XXX": 4, + "Error": 2, + "checking": 2, + "needs_line_scan": 14, + "reset": 5, + "filetype_setup": 4, + "Minor": 1, + "housekeeping": 1, + "before": 1, + "go": 1, + "expand_filenames": 7, + "expanded": 3, + "globs": 1, + "EXPAND_FILENAMES_SCOPE": 4, + "argv": 12, + "attr": 6, + "foreach": 4, + "pattern": 10, + "@results": 14, + "didn": 2, + "ve": 2, + "tried": 2, + "load": 2, + "GetAttributes": 2, + "got": 2, + "get_starting_points": 4, + "starting": 2, + "@what": 14, + "reslash": 4, + "Assume": 2, + "start_point": 4, + "_match": 8, + "target": 6, + "invert_flag": 4, + "get_iterator": 4, + "Return": 2, + "starting_point": 10, + "g_regex": 4, + "file_filter": 12, + "g_regex/": 6, + "Maybe": 2, + "is_interesting": 4, + "descend_filter": 11, + "error_handler": 5, + "msg": 4, + "follow_symlinks": 6, + "set_up_pager": 3, + "Unable": 2, + "going": 1, + "pipe.": 1, + "exit_from_ack": 5, + "Exit": 1, + "correct": 1, + "code.": 2, + "handed": 1, + "argument.": 1, + "rc": 11, + "Copyright": 2, + "Andy": 2, + "Lester.": 2, + "Artistic": 2, + "License": 2, + "v2.0.": 2, + "End": 3, + "Util": 3, + "Accessor": 1, + "status": 17, + "Scalar": 2, + "shortcut": 2, + "location": 4, + "redirect": 1, + "url": 2, + "clone": 1, + "_finalize_cookies": 2, + "/chr": 1, + "/ge": 1, + "replace": 3, + "LWS": 1, + "single": 1, + "SP": 1, + "//g": 1, + "CR": 1, + "LF": 1, + "since": 1, + "char": 1, + "invalid": 1, + "here": 2, + "header_field_names": 1, + "_body": 2, + "blessed": 1, + "overload": 1, + "Method": 1, + "_bake_cookie": 2, + "push_header": 1, + "@cookie": 7, + "domain": 3, + "_date": 2, + "expires": 7, + "httponly": 1, + "@MON": 1, + "Jan": 1, + "Feb": 1, + "Mar": 1, + "Apr": 1, + "May": 2, + "Jun": 1, + "Jul": 1, + "Aug": 1, + "Sep": 1, + "Oct": 1, + "Nov": 1, + "Dec": 1, + "@WDAY": 1, + "Sun": 1, + "Mon": 1, + "Tue": 1, + "Wed": 1, + "Thu": 1, + "Fri": 1, + "Sat": 1, + "sec": 2, + "min": 3, + "hour": 2, + "mday": 2, + "mon": 2, + "year": 3, + "wday": 2, + "gmtime": 1, + "sprintf": 1, + "WDAY": 1, + "MON": 1, + "response": 5, + "psgi_handler": 1, + "way": 2, + "simple": 2, + "API.": 1, + "Sets": 2, + "gets": 2, + "": 1, + "alias.": 2, + "response.": 1, + "Setter": 2, + "either": 2, + "headers.": 1, + "body_str": 1, + "io": 1, + "sets": 4, + "body.": 1, + "IO": 1, + "Handle": 1, + "": 1, + "X": 2, + "text/plain": 1, + "gzip": 1, + "normalize": 1, + "given": 10, + "string.": 1, + "Users": 1, + "responsible": 1, + "properly": 1, + "": 1, + "names": 1, + "their": 1, + "corresponding": 1, + "": 2, + "everything": 1, + "": 1, + "": 2, + "": 1, + "": 1, + "": 1, + "integer": 1, + "epoch": 1, + "time": 3, + "": 1, + "convert": 1, + "formats": 1, + "<+3M>": 1, + "reference.": 1, + "AUTHOR": 1, + "MAIN": 1, + "main": 3, + "env_is_usable": 3, + "th": 1, + "pt": 1, + "@keys": 2, + "ACK_/": 1, + "@ENV": 1, + "load_colors": 1, + "ACK_SWITCHES": 1, + "Unbuffer": 1, + "mode": 1, + "build_regex": 3, + "nargs": 2, + "Resource": 5, + "file_matching": 2, + "check_regex": 2, + "finder": 1, + "options": 7, + "FILE...": 1, + "DIRECTORY...": 1, + "designed": 1, + "replacement": 1, + "uses": 2, + "": 5, + "searches": 1, + "named": 3, + "FILEs": 1, + "standard": 1, + "PATTERN.": 1, + "By": 2, + "prints": 2, + "also": 7, + "actually": 1, + "let": 1, + "advantage": 1, + ".wango": 1, + "won": 1, + "throw": 1, + "away": 1, + "times": 2, + "symlinks": 1, + "whatever": 1, + "were": 1, + "specified": 3, + "line.": 4, + "default.": 2, + "": 11, + "included": 1, + "search.": 1, + "matched": 1, + "against": 1, + "shell": 4, + "glob.": 1, + "<-i>": 5, + "<-w>": 2, + "<-v>": 3, + "<-Q>": 4, + "relative": 1, + "convenience": 1, + "<-f>": 6, + "<--group>": 2, + "<--nogroup>": 2, + "groups": 1, + "with.": 1, + "interactively.": 1, + "result": 1, + "per": 1, + "grep.": 2, + "redirected.": 1, + "<-H>": 1, + "<--with-filename>": 1, + "<-h>": 1, + "<--no-filename>": 1, + "Suppress": 1, + "prefixing": 1, + "searched.": 1, + "<--help>": 1, + "short": 1, + "help": 2, + "statement.": 1, + "<--ignore-case>": 1, + "Ignore": 3, + "case": 3, + "strings.": 1, + "applies": 3, + "regexes": 3, + "<-g>": 5, + "<-G>": 3, + "options.": 4, + "": 2, + "etc": 2, + "directories.": 2, + "mason": 1, + "may": 3, + "wish": 1, + "include": 1, + "<--ignore-dir=data>": 1, + "<--noignore-dir>": 1, + "normally": 1, + "perhaps": 1, + "research": 1, + "<.svn/props>": 1, + "name.": 1, + "Nested": 1, + "": 1, + "NOT": 1, + "supported.": 1, + "specify": 1, + "<--ignore-dir=foo>": 1, + "taken": 1, + "account": 1, + "explicitly": 1, + "": 2, + "Multiple": 1, + "<--line>": 1, + "comma": 1, + "separated": 2, + "<--line=3,5,7>": 1, + "<--line=4-7>": 1, + "works.": 1, + "ascending": 1, + "order": 2, + "matter": 1, + "<-l>": 2, + "<--files-with-matches>": 1, + "text.": 1, + "<-L>": 1, + "<--files-without-matches>": 1, + "equivalent": 2, + "specifying": 1, + "Specify": 1, + "explicitly.": 1, + "helpful": 2, + "": 1, + "via": 1, + "": 4, + "": 4, + "environment": 2, + "variables.": 1, + "Using": 3, + "suppress": 3, + "grouping": 3, + "coloring": 3, + "piping": 3, + "does.": 2, + "<--passthru>": 1, + "whether": 1, + "they": 1, + "expression.": 1, + "Highlighting": 1, + "though": 1, + "highlight": 1, + "seeing": 1, + "tail": 1, + "/access.log": 1, + "<--print0>": 1, + "works": 1, + "conjunction": 1, + "null": 1, + "byte": 1, + "usual": 1, + "newline.": 1, + "dealing": 1, + "whitespace": 1, + "html": 1, + "xargs": 2, + "rm": 1, + "<--literal>": 1, + "Quote": 1, + "metacharacters": 2, + "treated": 1, + "literal.": 1, + "<-r>": 1, + "<-R>": 1, + "<--recurse>": 1, + "compatibility": 2, + "turning": 1, + "<--no-recurse>": 1, + "off.": 1, + "<--smart-case>": 1, + "<--no-smart-case>": 1, + "strings": 1, + "uppercase": 1, + "characters.": 1, + "similar": 1, + "": 1, + "vim.": 1, + "overrides": 2, + "option.": 1, + "<--sort-files>": 1, + "Sorts": 1, + "Use": 6, + "listings": 1, + "deterministic": 1, + "runs": 1, + "<--show-types>": 1, + "Outputs": 1, + "associates": 1, + "Works": 1, + "<--thpppt>": 1, + "Display": 1, + "important": 1, + "Bill": 1, + "Cat": 1, + "logo.": 1, + "exact": 1, + "spelling": 1, + "<--thpppppt>": 1, + "important.": 1, + "make": 3, + "perl": 8, + "php": 2, + "python": 1, + "location.": 1, + "variable": 1, + "specifies": 1, + "placed": 1, + "front": 1, + "explicit": 1, + "Specifies": 4, + "recognized": 1, + "clear": 2, + "dark": 1, + "underline": 1, + "underscore": 2, + "blink": 1, + "reverse": 1, + "concealed": 1, + "red": 1, + "blue": 1, + "magenta": 1, + "on_black": 1, + "on_red": 1, + "on_green": 1, + "on_blue": 1, + "on_magenta": 1, + "on_cyan": 1, + "on_white.": 1, + "Case": 1, + "significant.": 1, + "Underline": 1, + "reset.": 1, + "alone": 1, + "foreground": 1, + "on_color": 1, + "background": 1, + "color.": 2, + "<--color-filename>": 1, + "printed": 1, + "<--color>": 1, + "mode.": 1, + "<--color-lineno>": 1, + "See": 1, + "": 1, + "specifications.": 1, + "": 1, + "": 1, + "": 1, + "send": 1, + "output.": 1, + "except": 1, + "assume": 1, + "both": 1, + "understands": 1, + "sequences.": 1, + "never": 1, + "ACK": 2, + "OTHER": 1, + "TOOLS": 1, + "Vim": 3, + "integration": 3, + "integrates": 1, + "easily": 2, + "editor.": 1, + "<.vimrc>": 1, + "grepprg": 1, + "That": 3, + "examples": 1, + "<-a>": 1, + "flags.": 1, + "Now": 1, + "step": 1, + "Dumper": 1, + "perllib": 1, + "Emacs": 1, + "Phil": 1, + "Jackson": 1, + "put": 1, + "": 1, + "extension": 1, + "": 1, + "TextMate": 2, + "Pedro": 1, + "Melo": 1, + "who": 1, + "writes": 1, + "Shell": 2, + "Code": 1, + "greater": 1, + "normal": 1, + "<$?=256>": 1, + "": 1, + "backticks.": 1, + "errors": 1, + "used.": 1, + "least": 1, + "returned.": 1, + "DEBUGGING": 1, + "PROBLEMS": 1, + "expecting": 1, + "forgotten": 1, + "<--noenv>": 1, + "<.ackrc>": 1, + "remember.": 1, + "Put": 1, + "definitions": 1, + "it.": 1, + "smart": 1, + "too.": 1, + "there.": 1, + "working": 1, + "big": 1, + "codesets": 1, + "ideal": 1, + "sending": 1, + "": 1, + "prefer": 1, + "doubt": 1, + "day": 1, + "find": 1, + "trouble": 1, + "spots": 1, + "website": 1, + "visitor.": 1, + "had": 1, + "problem": 1, + "loading": 1, + "": 1, + "took": 1, + "log": 3, + "scanned": 1, + "twice.": 1, + "aa.bb.cc.dd": 1, + "/path/to/access.log": 1, + "B5": 1, + "troublesome.gif": 1, + "first": 1, + "finds": 2, + "IP.": 1, + "second": 1, + "troublesome": 1, + "GIF": 1, + "shows": 1, + "previous": 1, + "five": 1, + "case.": 1, + "Share": 1, + "knowledge": 1, + "Join": 1, + "mailing": 1, + "list.": 1, + "Send": 1, + "me": 1, + "tips": 1, + "here.": 1, + "FAQ": 1, + "isn": 1, + "driven": 1, + "filetype.": 1, + "": 1, + "kind": 1, + "ignores": 1, + "switch": 1, + "you.": 1, + "source": 2, + "compiled": 1, + "control": 1, + "metadata": 1, + "wastes": 1, + "lot": 1, + "those": 2, + "returning": 1, + "great": 1, + "did": 1, + "only.": 1, + "perfectly": 1, + "<-p>": 1, + "<-n>": 1, + "switches.": 1, + "select": 1, + "update.": 1, + "change": 1, + "PHP": 1, + "Unix": 1, + "Can": 1, + "recognize": 1, + "<.xyz>": 1, + "already": 2, + "program/package": 1, + "ack.": 2, + "Yes": 1, + "know.": 1, + "nothing": 1, + "suggest": 1, + "symlink": 1, + "points": 1, + "": 1, + "crucial": 1, + "benefits": 1, + "having": 1, + "Regan": 1, + "Slaven": 1, + "ReziE": 1, + "<0x107>": 1, + "Mark": 1, + "Stosberg": 1, + "David": 1, + "Alan": 1, + "Pisoni": 1, + "Adriano": 1, + "Ferreira": 1, + "James": 1, + "Keenan": 1, + "Leland": 1, + "Johnson": 1, + "Ricardo": 1, + "Signes": 1, + "Pete": 1, + "Krawczyk.": 1, + "files_defaults": 3, + "skip_dirs": 3, + "CORE": 3, + "curdir": 1, + "updir": 1, + "__PACKAGE__": 1, + "parms": 15, + "@queue": 8, + "_setup": 2, + "fullpath": 12, + "local": 5, + "_candidate_files": 2, + "sort_standard": 2, + "cmp": 2, + "sort_reverse": 1, + "@parts": 3, + "passed_parms": 6, + "parm": 1, + "badkey": 1, + "dh": 4, + "opendir": 1, + "@newfiles": 5, + "sort_sub": 4, + "readdir": 1, + "has_stat": 3, + "closedir": 1, + "": 1, + "updated": 1, + "update": 1, + "message": 1, + "bak": 1, + "core": 1, + "swp": 1, + "js": 1, + "1": 1, + "str": 12, + "regex_is_lc": 2, + "S": 1, + ".*//": 1, + "_my_program": 3, + "Basename": 2, + "FAIL": 12, + "confess": 2, + "@ISA": 2, + "could_be_binary": 4, + "opened": 1, + "size": 5, + "_000": 1, + "sysread": 1, + "regex/m": 1, + "readline": 1, + "nexted": 3 + }, + "XML": { + "": 11, + "version=": 20, + "encoding=": 8, + "": 7, + "ToolsVersion=": 6, + "DefaultTargets=": 5, + "xmlns=": 7, + "": 21, + "Project=": 12, + "Condition=": 37, + "": 26, + "": 6, + "Debug": 10, + "": 6, + "": 6, + "AnyCPU": 10, + "": 6, + "": 5, + "{": 6, + "D377F": 1, + "-": 90, + "A": 20, + "A798": 1, + "B3FD04C": 1, + "}": 6, + "": 5, + "": 4, + "Exe": 4, + "": 4, + "": 1, + "vbproj_sample.Module1": 1, + "": 1, + "": 5, + "vbproj_sample": 1, + "": 5, + "": 4, + "vbproj": 3, + "sample": 6, + "": 4, + "": 3, + "": 3, + "": 1, + "Console": 3, + "": 1, + "": 5, + "v4.5.1": 5, + "": 5, + "": 3, + "true": 24, + "": 3, + "": 25, + "": 6, + "": 6, + "": 5, + "": 5, + "": 6, + "full": 4, + "": 6, + "": 2, + "": 2, + "": 2, + "": 2, + "": 8, + "bin": 11, + "": 8, + "": 5, + "sample.xml": 2, + "": 5, + "": 2, + "": 2, + "pdbonly": 3, + "false": 10, + "": 7, + "": 7, + "Release": 6, + "": 1, + "On": 2, + "": 1, + "": 1, + "Binary": 1, + "": 1, + "": 1, + "Off": 1, + "": 1, + "": 1, + "": 1, + "": 26, + "": 30, + "Include=": 78, + "": 26, + "": 10, + "": 3, + "True": 13, + "": 3, + "": 3, + "Application.myapp": 1, + "": 3, + "": 3, + "": 1, + "": 1, + "Resources.resx": 1, + "Settings.settings": 1, + "": 1, + "": 1, + "": 1, + "": 3, + "VbMyResourcesResXFileCodeGenerator": 1, + "": 3, + "": 3, + "Resources.Designer.vb": 1, + "": 3, + "": 2, + "My.Resources": 1, + "": 2, + "": 1, + "Designer": 1, + "": 1, + "": 1, + "": 5, + "MyApplicationCodeGenerator": 1, + "Application.Designer.vb": 1, + "": 2, + "SettingsSingleFileGenerator": 1, + "My": 1, + "Settings.Designer.vb": 1, + "": 7, + "": 3, + "MyCommon": 1, + "": 3, + "": 1, + "Name=": 1, + "": 1, + "Text=": 1, + "": 1, + "": 1, + "xmlns": 2, + "ea=": 2, + "": 1, + "organisation=": 3, + "module=": 3, + "revision=": 3, + "status=": 1, + "": 3, + "this": 77, + "is": 123, + "a": 128, + "easyant": 3, + "module.ivy": 1, + "file": 3, + "for": 60, + "java": 1, + "standard": 1, + "application": 2, + "": 3, + "": 1, + "": 1, + "name=": 270, + "value=": 11, + "": 1, + "": 1, + "": 1, + "": 1, + "": 2, + "visibility=": 2, + "description=": 4, + "": 1, + "": 1, + "": 4, + "org=": 1, + "rev=": 1, + "conf=": 1, + "default": 9, + "junit": 2, + "test": 7, + "/": 6, + "": 1, + "": 1, + "": 2, + "This": 21, + "module.ant": 1, + "optionnal": 1, + "and": 44, + "designed": 1, + "to": 164, + "customize": 1, + "your": 8, + "build": 1, + "with": 23, + "own": 2, + "specific": 8, + "target.": 1, + "": 2, + "": 2, + "my": 2, + "awesome": 1, + "additionnal": 1, + "target": 6, + "": 2, + "": 2, + "extensionOf=": 1, + "i": 2, + "would": 2, + "love": 1, + "could": 1, + "easily": 1, + "plug": 1, + "pre": 1, + "compile": 1, + "step": 1, + "": 1, + "": 2, + "": 2, + "cfa7a11": 1, + "a5cd": 1, + "bd7b": 1, + "b210d4d51a29": 1, + "fsproj_sample": 2, + "": 1, + "": 1, + "fsproj": 1, + "": 2, + "": 2, + "": 6, + "DEBUG": 3, + ";": 52, + "TRACE": 6, + "": 6, + "": 8, + "": 8, + "fsproj_sample.XML": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "": 5, + "": 1, + "": 1, + "": 1, + "": 1, + "": 2, + "(": 65, + "MSBuildExtensionsPath32": 2, + ")": 58, + "..": 1, + "Microsoft": 2, + "SDKs": 1, + "F#": 1, + "Framework": 1, + "v4.0": 1, + "Microsoft.FSharp.Targets": 2, + "": 2, + "": 1, + "": 1, + "VisualStudio": 1, + "v": 1, + "VisualStudioVersion": 1, + "FSharp": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "c67af951": 1, + "d8d6376993e7": 1, + "": 2, + "Properties": 3, + "": 2, + "nproj_sample": 2, + "": 1, + "": 1, + "": 1, + "Net": 1, + "": 1, + "": 1, + "ProgramFiles": 1, + "Nemerle": 3, + "": 1, + "": 1, + "NemerleBinPathRoot": 1, + "NemerleVersion": 1, + "": 1, + "nproj": 1, + "": 4, + "prompt": 4, + "": 4, + "OutputPath": 1, + "AssemblyName": 1, + ".xml": 1, + "": 3, + "": 3, + "": 1, + "False": 1, + "": 1, + "": 2, + "Nemerle.dll": 1, + "": 2, + "": 1, + "Nemerle.Linq.dll": 1, + "": 1, + "": 1, + "": 1, + "TS": 1, + "": 1, + "language=": 1, + "": 1, + "": 2, + "MainWindow": 1, + "": 2, + "": 8, + "": 8, + "filename=": 8, + "line=": 8, + "": 8, + "United": 1, + "Kingdom": 1, + "": 8, + "": 8, + "Reino": 1, + "Unido": 1, + "": 8, + "": 8, + "God": 1, + "save": 2, + "the": 261, + "Queen": 1, + "Deus": 1, + "salve": 1, + "Rainha": 1, + "England": 1, + "Inglaterra": 1, + "Wales": 1, + "Gales": 1, + "Scotland": 1, + "Esc": 1, + "cia": 1, + "Northern": 1, + "Ireland": 1, + "Irlanda": 1, + "Norte": 1, + "Portuguese": 1, + "Portugu": 1, + "s": 3, + "English": 1, + "Ingl": 1, + "": 1, + "": 1, + "": 1, + "compatVersion=": 1, + "": 1, + "FreeMedForms": 1, + "": 1, + "": 1, + "C": 1, + "by": 14, + "Eric": 1, + "MAEKER": 1, + "MD": 1, + "": 1, + "": 1, + "GPLv3": 1, + "": 1, + "": 1, + "Patient": 1, + "data": 2, + "": 1, + "The": 75, + "XML": 1, + "form": 1, + "loader/saver": 1, + "FreeMedForms.": 1, + "": 1, + "http": 1, + "//www.freemedforms.com/": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "D9BF15": 1, + "D10": 1, + "ABAD688E8B": 1, + "csproj_sample": 1, + "csproj": 1, + "": 1, + "": 1, + "ReactiveUI": 2, + "": 1, + "": 1, + "": 120, + "": 120, + "IObservedChange": 5, + "generic": 3, + "interface": 4, + "that": 94, + "replaces": 1, + "non": 1, + "PropertyChangedEventArgs.": 1, + "Note": 7, + "it": 16, + "used": 19, + "both": 2, + "Changing": 5, + "i.e.": 23, + "Changed": 4, + "Observables.": 2, + "In": 6, + "future": 2, + "will": 65, + "be": 57, + "Covariant": 1, + "which": 12, + "allow": 1, + "simpler": 1, + "casting": 1, + "between": 15, + "changes.": 2, + "": 121, + "": 120, + "object": 42, + "has": 16, + "raised": 1, + "change.": 12, + "name": 7, + "of": 75, + "property": 74, + "changed": 18, + "on": 35, + "Sender.": 1, + "value": 44, + "changed.": 9, + "IMPORTANT": 1, + "NOTE": 1, + "often": 3, + "not": 9, + "set": 41, + "performance": 1, + "reasons": 1, + "unless": 1, + "you": 20, + "have": 17, + "explicitly": 1, + "requested": 1, + "an": 88, + "Observable": 56, + "via": 8, + "method": 34, + "such": 5, + "as": 25, + "ObservableForProperty.": 1, + "To": 4, + "retrieve": 3, + "use": 5, + "Value": 3, + "extension": 2, + "method.": 2, + "IReactiveNotifyPropertyChanged": 6, + "represents": 4, + "extended": 1, + "version": 3, + "INotifyPropertyChanged": 1, + "also": 17, + "exposes": 1, + "IEnableLogger": 1, + "dummy": 1, + "attaching": 1, + "any": 11, + "class": 11, + "give": 1, + "access": 3, + "Log": 2, + "When": 5, + "called": 5, + "fire": 11, + "change": 26, + "notifications": 22, + "neither": 3, + "traditional": 3, + "nor": 3, + "until": 7, + "return": 11, + "disposed.": 3, + "": 36, + "An": 26, + "when": 38, + "disposed": 4, + "reenables": 3, + "notifications.": 5, + "": 36, + "Represents": 4, + "fires": 6, + "*before*": 2, + "about": 5, + "should": 10, + "duplicate": 2, + "if": 27, + "same": 8, + "multiple": 6, + "times.": 4, + "*after*": 2, + "TSender": 1, + "helper": 5, + "adds": 2, + "typed": 2, + "versions": 2, + "Changed.": 1, + "IReactiveCollection": 3, + "collection": 27, + "can": 11, + "notify": 3, + "its": 4, + "contents": 2, + "are": 13, + "either": 1, + "items": 27, + "added/removed": 1, + "or": 24, + "itself": 2, + "changes": 13, + ".": 20, + "It": 1, + "important": 6, + "implement": 5, + "Changing/Changed": 1, + "from": 12, + "semantically": 3, + "Fires": 14, + "added": 6, + "once": 4, + "per": 2, + "item": 19, + "added.": 4, + "Functions": 2, + "add": 2, + "AddRange": 2, + "provided": 14, + "was": 6, + "before": 8, + "going": 4, + "collection.": 6, + "been": 5, + "removed": 4, + "providing": 20, + "removed.": 4, + "whenever": 18, + "number": 9, + "in": 45, + "new": 10, + "Count.": 4, + "previous": 2, + "Provides": 4, + "Item": 4, + "implements": 8, + "IReactiveNotifyPropertyChanged.": 4, + "only": 18, + "enabled": 8, + "ChangeTrackingEnabled": 2, + "True.": 2, + "Enables": 2, + "ItemChanging": 2, + "ItemChanged": 2, + "properties": 29, + "implementing": 2, + "rebroadcast": 2, + "through": 3, + "ItemChanging/ItemChanged.": 2, + "T": 1, + "type": 23, + "specified": 7, + "Observables": 4, + "IMessageBus": 1, + "act": 2, + "simple": 2, + "way": 2, + "ViewModels": 3, + "other": 9, + "objects": 4, + "communicate": 2, + "each": 7, + "loosely": 2, + "coupled": 2, + "way.": 2, + "Specifying": 2, + "messages": 22, + "go": 2, + "where": 4, + "done": 2, + "combination": 2, + "Type": 9, + "message": 30, + "well": 2, + "additional": 3, + "parameter": 6, + "unique": 12, + "string": 13, + "distinguish": 12, + "arbitrarily": 2, + "client.": 2, + "Listen": 4, + "provides": 6, + "Message": 2, + "RegisterMessageSource": 4, + "SendMessage.": 2, + "": 12, + "listen": 6, + "to.": 7, + "": 12, + "": 84, + "identical": 11, + "types": 10, + "one": 27, + "purpose": 10, + "leave": 10, + "null.": 10, + "": 83, + "Determins": 2, + "particular": 2, + "registered.": 2, + "message.": 1, + "posted": 3, + "Type.": 2, + "Registers": 3, + "representing": 20, + "stream": 7, + "send.": 4, + "Another": 2, + "part": 2, + "code": 4, + "then": 3, + "call": 5, + "Observable.": 6, + "subscribed": 2, + "sent": 2, + "out": 4, + "provided.": 5, + "Sends": 2, + "single": 2, + "using": 9, + "contract.": 2, + "Consider": 2, + "instead": 2, + "sending": 2, + "response": 2, + "events.": 2, + "actual": 2, + "send": 3, + "returns": 5, + "current": 10, + "logger": 2, + "allows": 15, + "log": 2, + "attached.": 1, + "structure": 1, + "representation": 1, + "memoizing": 2, + "cache": 14, + "evaluate": 1, + "function": 13, + "but": 7, + "keep": 1, + "recently": 3, + "evaluated": 1, + "parameters.": 1, + "Since": 1, + "mathematical": 2, + "sense": 1, + "key": 12, + "*always*": 1, + "maps": 1, + "corresponding": 2, + "value.": 2, + "calculation": 8, + "function.": 6, + "returned": 2, + "Constructor": 2, + "whose": 7, + "results": 6, + "want": 2, + "Tag": 1, + "user": 2, + "defined": 1, + "size": 1, + "maintain": 1, + "after": 1, + "old": 1, + "start": 1, + "thrown": 1, + "out.": 1, + "result": 3, + "gets": 1, + "evicted": 2, + "because": 2, + "Invalidate": 2, + "Evaluates": 1, + "returning": 1, + "cached": 2, + "possible": 1, + "pass": 2, + "optional": 2, + "parameter.": 1, + "Ensure": 1, + "next": 1, + "time": 3, + "queried": 1, + "called.": 1, + "all": 4, + "Returns": 5, + "values": 4, + "currently": 2, + "MessageBus": 3, + "bus.": 1, + "scheduler": 11, + "post": 2, + "RxApp.DeferredScheduler": 2, + "default.": 2, + "Current": 1, + "RxApp": 1, + "global": 1, + "object.": 3, + "ViewModel": 8, + "another": 3, + "Return": 1, + "instance": 2, + "type.": 3, + "registered": 1, + "ObservableAsPropertyHelper": 6, + "help": 1, + "backed": 1, + "read": 3, + "still": 1, + "created": 2, + "directly": 1, + "more": 16, + "ToProperty": 2, + "ObservableToProperty": 1, + "methods.": 2, + "so": 1, + "output": 1, + "chained": 2, + "example": 2, + "property.": 12, + "Constructs": 4, + "base": 3, + "on.": 6, + "action": 2, + "take": 2, + "typically": 1, + "t": 2, + "bindings": 13, + "null": 4, + "OAPH": 2, + "at": 2, + "startup.": 1, + "initial": 28, + "normally": 6, + "Dispatcher": 3, + "based": 9, + "last": 1, + "Exception": 1, + "steps": 1, + "taken": 1, + "ensure": 3, + "never": 3, + "complete": 1, + "fail.": 1, + "Converts": 2, + "automatically": 3, + "onChanged": 2, + "raise": 2, + "notification.": 2, + "equivalent": 2, + "convenient.": 1, + "Expression": 7, + "initialized": 2, + "backing": 9, + "field": 10, + "ReactiveObject": 11, + "ObservableAsyncMRUCache": 2, + "memoization": 2, + "asynchronous": 4, + "expensive": 2, + "compute": 1, + "MRU": 1, + "fixed": 1, + "limit": 5, + "cache.": 5, + "guarantees": 6, + "given": 11, + "flight": 2, + "subsequent": 1, + "requests": 4, + "wait": 3, + "first": 1, + "empty": 1, + "web": 6, + "image": 1, + "receives": 1, + "two": 1, + "concurrent": 5, + "issue": 2, + "WebRequest": 1, + "does": 1, + "mean": 1, + "request": 3, + "Concurrency": 1, + "limited": 1, + "maxConcurrent": 1, + "too": 1, + "many": 1, + "operations": 6, + "progress": 1, + "further": 1, + "queued": 1, + "slot": 1, + "available.": 1, + "performs": 1, + "asyncronous": 1, + "async": 3, + "CPU": 1, + "Observable.Return": 1, + "may": 1, + "result.": 2, + "*must*": 1, + "equivalently": 1, + "input": 2, + "being": 1, + "memoized": 1, + "calculationFunc": 2, + "depends": 1, + "varables": 1, + "than": 5, + "unpredictable.": 1, + "reached": 2, + "discarded.": 4, + "maximum": 2, + "regardless": 2, + "caches": 2, + "server.": 2, + "clean": 1, + "up": 25, + "manage": 1, + "disk": 1, + "download": 1, + "temporary": 1, + "folder": 1, + "onRelease": 1, + "delete": 1, + "file.": 1, + "run": 7, + "defaults": 1, + "TaskpoolScheduler": 2, + "Issues": 1, + "fetch": 1, + "operation.": 1, + "operation": 2, + "finishes.": 1, + "If": 6, + "immediately": 3, + "upon": 1, + "subscribing": 1, + "returned.": 2, + "provide": 2, + "synchronous": 1, + "AsyncGet": 1, + "resulting": 1, + "Works": 2, + "like": 2, + "SelectMany": 2, + "memoizes": 2, + "selector": 5, + "calls.": 2, + "addition": 3, + "no": 4, + "selectors": 2, + "running": 4, + "concurrently": 2, + "queues": 2, + "rest.": 2, + "very": 2, + "services": 2, + "avoid": 2, + "potentially": 2, + "spamming": 2, + "server": 2, + "hundreds": 2, + "requests.": 2, + "similar": 3, + "passed": 1, + "SelectMany.": 1, + "similarly": 1, + "ObservableAsyncMRUCache.AsyncGet": 1, + "must": 2, + "sense.": 1, + "flattened": 2, + "selector.": 2, + "overload": 2, + "useful": 2, + "making": 3, + "service": 1, + "several": 1, + "places": 1, + "paths": 1, + "already": 1, + "configured": 1, + "ObservableAsyncMRUCache.": 1, + "notification": 6, + "Attempts": 1, + "expression": 3, + "expression.": 1, + "entire": 1, + "able": 1, + "followed": 1, + "otherwise": 1, + "Given": 3, + "fully": 3, + "filled": 1, + "SetValueToProperty": 1, + "apply": 3, + "target.property": 1, + "This.GetValue": 1, + "observed": 1, + "onto": 1, + "convert": 2, + "stream.": 3, + "ValueIfNotDefault": 1, + "filters": 1, + "BindTo": 1, + "takes": 1, + "applies": 1, + "Conceptually": 1, + "child": 2, + "without": 1, + "checks.": 1, + "set.": 3, + "x.Foo.Bar.Baz": 1, + "disconnects": 1, + "binding.": 1, + "ReactiveCollection.": 1, + "ReactiveCollection": 1, + "existing": 3, + "list.": 2, + "list": 1, + "populate": 1, + "anything": 2, + "Change": 2, + "Tracking": 2, + "Creates": 3, + "adding": 2, + "completes": 4, + "optionally": 2, + "ensuring": 2, + "delay.": 2, + "withDelay": 2, + "leak": 2, + "Timer.": 2, + "always": 4, + "UI": 2, + "thread.": 3, + "put": 2, + "into": 2, + "populated": 4, + "faster": 2, + "delay": 2, + "Select": 3, + "item.": 3, + "creating": 2, + "collections": 1, + "updated": 1, + "respective": 1, + "Model": 1, + "updated.": 1, + "Collection.Select": 1, + "mirror": 1, + "ObservableForProperty": 14, + "ReactiveObject.": 1, + "unlike": 13, + "Selector": 1, + "classes": 2, + "INotifyPropertyChanged.": 1, + "monitor": 1, + "RaiseAndSetIfChanged": 2, + "Setter": 2, + "write": 2, + "assumption": 4, + "named": 2, + "RxApp.GetFieldNameForPropertyNameFunc.": 2, + "almost": 2, + "keyword.": 2, + "newly": 2, + "intended": 5, + "Silverlight": 2, + "WP7": 1, + "reflection": 1, + "cannot": 1, + "private": 1, + "field.": 1, + "Reference": 1, + "Use": 15, + "custom": 4, + "raiseAndSetIfChanged": 1, + "doesn": 1, + "x": 1, + "x.SomeProperty": 1, + "suffice.": 1, + "RaisePropertyChanging": 2, + "mock": 4, + "scenarios": 4, + "manually": 4, + "fake": 4, + "invoke": 4, + "raisePropertyChanging": 4, + "faking": 4, + "RaisePropertyChanged": 2, + "helps": 1, + "make": 2, + "them": 1, + "compatible": 1, + "Rx.Net.": 1, + "declare": 1, + "initialize": 1, + "derive": 1, + "properties/methods": 1, + "MakeObjectReactiveHelper.": 1, + "InUnitTestRunner": 1, + "attempts": 1, + "determine": 1, + "heuristically": 1, + "unit": 3, + "framework.": 1, + "we": 1, + "determined": 1, + "framework": 1, + "running.": 1, + "GetFieldNameForProperty": 1, + "convention": 2, + "GetFieldNameForPropertyNameFunc.": 1, + "needs": 1, + "found.": 1, + "name.": 1, + "DeferredScheduler": 1, + "schedule": 2, + "work": 2, + "normal": 2, + "mode": 2, + "DispatcherScheduler": 1, + "Unit": 1, + "Test": 1, + "Immediate": 1, + "simplify": 1, + "writing": 1, + "common": 1, + "tests.": 1, + "background": 1, + "modes": 1, + "TPL": 1, + "Task": 1, + "Pool": 1, + "Threadpool": 1, + "Set": 3, + "provider": 1, + "usually": 1, + "entry": 1, + "MessageBus.Current.": 1, + "override": 1, + "naming": 1, + "one.": 1, + "WhenAny": 12, + "observe": 12, + "constructors": 12, + "need": 12, + "setup.": 12, + "": 1, + "": 1, + "": 10, + "": 3, + "FC737F1": 1, + "C7A5": 1, + "A066": 1, + "A32D752A2FF": 1, + "": 3, + "": 3, + "cpp": 1, + "c": 1, + "cc": 1, + "cxx": 1, + "def": 1, + "odl": 1, + "idl": 1, + "hpj": 1, + "bat": 1, + "asm": 1, + "asmx": 1, + "": 3, + "": 10, + "BD": 1, + "b04": 1, + "EB": 1, + "FBE52EBFB": 1, + "h": 1, + "hh": 1, + "hpp": 1, + "hxx": 1, + "hm": 1, + "inl": 1, + "inc": 1, + "xsd": 1, + "DA6AB6": 1, + "F800": 1, + "c08": 1, + "B7A": 1, + "BB121AAD01": 1, + "rc": 1, + "ico": 1, + "cur": 1, + "bmp": 1, + "dlg": 1, + "rc2": 1, + "rct": 1, + "rgs": 1, + "gif": 1, + "jpg": 1, + "jpeg": 1, + "jpe": 1, + "resx": 1, + "tiff": 1, + "tif": 1, + "png": 1, + "wav": 1, + "mfcribbon": 1, + "ms": 1, + "": 2, + "": 4, + "Header": 2, + "Files": 7, + "": 2, + "": 2, + "Resource": 2, + "": 1, + "": 8, + "Source": 3, + "": 6, + "": 2, + "": 1, + "Label=": 11, + "": 2, + "Win32": 2, + "": 2, + "BF6EED48": 1, + "BF18": 1, + "C54": 1, + "F": 1, + "BBF19EEDC7C": 1, + "": 1, + "ManagedCProj": 1, + "": 1, + "vcxprojsample": 1, + "": 2, + "Application": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "v120": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "Unicode": 2, + "": 2, + "": 4, + "": 4, + "": 2, + "": 2, + "": 2, + "Level3": 2, + "": 1, + "Disabled": 1, + "": 1, + "": 2, + "WIN32": 2, + "_DEBUG": 1, + "%": 2, + "PreprocessorDefinitions": 2, + "": 2, + "": 4, + "": 4, + "": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "NDEBUG": 1, + "Create": 2, + "standalone=": 1, + "": 1, + "4": 1, + "0": 2, + "": 1, + "storage_type_id=": 1, + "": 14, + "moduleId=": 14, + "": 2, + "id=": 141, + "buildSystemId=": 2, + "": 2, + "": 2, + "": 12, + "point=": 12, + "": 2, + "": 7, + "": 2, + "artifactName=": 2, + "buildArtefactType=": 2, + "buildProperties=": 2, + "cleanCommand=": 2, + "cdt": 2, + "managedbuild": 2, + "config": 2, + "gnu": 2, + "exe": 2, + "debug": 1, + "1803931088": 1, + "parent=": 2, + "": 2, + "resourcePath=": 2, + "": 2, + "superClass=": 42, + "": 2, + "": 2, + "buildPath=": 2, + "keepEnvironmentInBuildfile=": 2, + "managedBuildOn=": 2, + "": 12, + "": 4, + "": 8, + "": 8, + "defaultValue=": 2, + "": 4, + "kind=": 6, + "paths=": 4, + "": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "flags=": 2, + "": 2, + "": 2, + "": 2, + "release": 1, + "32754498": 1, + "projectType=": 1, + "": 5, + "enabled=": 125, + "problemReportingEnabled=": 5, + "selectedProfileId=": 5, + "": 40, + "": 40, + "": 40, + "filePath=": 40, + "": 80, + "": 40, + "": 40, + "": 40, + "arguments=": 40, + "command=": 40, + "useDefault=": 40, + "": 40, + "": 40, + "": 4, + "instanceId=": 4, + "": 4, + "": 1 + }, + "MTML": { + "<$mt:Var>": 15, + "name=": 19, + "value=": 9, + "": 1, + "op=": 8, + "setvar=": 9, + "": 1, + "<": 2, + "a": 1, + "href": 1, + "<$mt:CategoryLabel>": 1, + "remove_html=": 1, + "": 1, + "": 1, + "": 1, + "function=": 1, + "": 1, + "gt=": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 2, + "from=": 2, + "to=": 2, + "div": 1, + "class": 1, + "col_num": 1, + "": 2, + "": 1 + }, + "Lasso": { + "[": 22, + "]": 23, + "//": 169, + "-": 2248, + "": 6, + "2009": 14, + "09": 10, + "04": 8, + "JS": 126, + "Added": 40, + "content_body": 14, + "tag": 11, + "for": 65, + "compatibility": 4, + "with": 25, + "pre": 4, + "8": 6, + "5": 4, + "05": 4, + "07": 6, + "timestamp": 4, + "to": 98, + "knop_cachestore": 4, + "and": 52, + "maxage": 2, + "parameter": 8, + "knop_cachefetch": 4, + "Corrected": 8, + "construction": 2, + "of": 24, + "cache_name": 2, + "internally": 2, + "in": 46, + "the": 86, + "knop_cache": 2, + "tags": 14, + "so": 16, + "it": 20, + "will": 12, + "work": 6, + "correctly": 2, + "at": 10, + "site": 4, + "root": 2, + "2008": 6, + "11": 8, + "dummy": 2, + "knop_debug": 4, + "ctype": 2, + "be": 38, + "able": 14, + "transparently": 2, + "or": 6, + "without": 4, + "L": 2, + "Debug": 2, + "24": 2, + "knop_stripbackticks": 2, + "01": 4, + "28": 2, + "Cache": 2, + "name": 32, + "is": 35, + "now": 23, + "used": 12, + "also": 5, + "when": 10, + "using": 8, + "session": 4, + "storage": 8, + "2007": 6, + "12": 8, + "knop_cachedelete": 2, + "Created": 4, + "03": 2, + "knop_foundrows": 2, + "condition": 4, + "returning": 2, + "normal": 2, + "found_count": 11, + "For": 2, + "Lasso": 15, + "if": 76, + "lasso_tagexists": 4, + "define_tag": 48, + "namespace=": 12, + "return": 75, + "__html_reply__": 4, + "define_type": 14, + "debug": 2, + "_unknowntag": 6, + "onconvert": 2, + "stripbackticks": 2, + "description=": 2, + "priority=": 2, + "required=": 2, + "local": 116, + "output": 30, + "string": 59, + "input": 2, + "split": 2, + "(": 640, + ")": 639, + "first": 12, + ";": 573, + "@#output": 2, + "/define_tag": 36, + "description": 34, + "namespace": 16, + "priority": 8, + "Johan": 2, + "S": 2, + "lve": 2, + "integer": 30, + "#charlist": 6, + "size": 24, + "start": 5, + "current": 10, + "date": 23, + "time": 8, + "a": 52, + "mixed": 2, + "up": 4, + "format": 7, + "as": 26, + "seed": 6, + "#seed": 36, + "convert": 4, + "this": 14, + "base": 6, + "conversion": 4, + "while": 9, + "#output": 50, + "get": 12, + "%": 14, + "#base": 8, + "+": 146, + "/": 6, + "/while": 7, + "over": 2, + "new": 14, + "chunk": 2, + "millisecond": 2, + "math_random": 2, + "lower": 2, + "upper": 2, + "__lassoservice_ip__": 2, + "response_localpath": 8, + "removetrailing": 8, + "response_filepath": 8, + "http": 6, + "//tagswap.net/found_rows": 2, + "action_statement": 2, + "string_findregexp": 8, + "#sql": 42, + "find": 57, + "ignorecase": 12, + "||": 8, + "<": 7, + "maxrecords_value": 2, + "inaccurate": 2, + "must": 4, + "accurate": 2, + "/if": 53, + "Default": 2, + "method": 7, + "usually": 2, + "fastest.": 2, + "Can": 2, + "not": 10, + "GROUP": 4, + "BY": 6, + "example.": 2, + "First": 4, + "normalize": 4, + "whitespace": 3, + "around": 2, + "FROM": 2, + "expression": 6, + "string_replaceregexp": 8, + "replace": 8, + "ReplaceOnlyOne": 2, + "substring": 6, + "remove": 6, + "ORDER": 2, + "statement": 4, + "since": 4, + "causes": 4, + "problems": 2, + "field": 26, + "aliases": 2, + "we": 2, + "can": 14, + "simple": 2, + "later": 2, + "else": 32, + "query": 4, + "contains": 2, + "use": 10, + "SQL_CALC_FOUND_ROWS": 2, + "which": 2, + "much": 2, + "slower": 2, + "see": 16, + "//bugs.mysql.com/bug.php": 2, + "id": 7, + "removeleading": 2, + "inline": 4, + "sql": 2, + "exit": 2, + "here": 2, + "normally": 2, + "/inline": 2, + "fallback": 4, + "required": 10, + "optional": 36, + "local_defined": 26, + "knop_seed": 2, + "Local": 7, + "#RandChars": 4, + "Get": 2, + "Math_Random": 2, + "Min": 2, + "Max": 2, + "Size": 2, + "#value": 14, + "join": 5, + "#numericValue": 4, + "&&": 30, + "length": 8, + "#cryptvalue": 10, + "#anyChar": 2, + "Encrypt_Blowfish": 2, + "decrypt_blowfish": 2, + "String_Remove": 2, + "StartPosition": 2, + "EndPosition": 2, + "Seed": 2, + "String_IsAlphaNumeric": 2, + "self": 72, + "_date_msec": 4, + "/define_type": 4, + "type": 63, + "seconds": 4, + "map": 23, + "default": 4, + "store": 4, + "all": 6, + "page": 14, + "vars": 8, + "specified": 8, + "iterate": 12, + "keys": 6, + "var": 38, + "#item": 10, + "isa": 25, + "#type": 26, + "#data": 14, + "insert": 18, + "/iterate": 12, + "//fail_if": 6, + "session_id": 6, + "#session": 10, + "session_addvar": 4, + "#cache_name": 72, + "duration": 4, + "second": 8, + "#expires": 4, + "server_name": 6, + "initiate": 10, + "thread": 6, + "RW": 6, + "lock": 24, + "global": 40, + "Thread_RWLock": 6, + "create": 6, + "reference": 10, + "@": 8, + "writing": 6, + "#lock": 12, + "writelock": 4, + "check": 6, + "cache": 4, + "unlock": 6, + "writeunlock": 4, + "null": 26, + "#maxage": 4, + "cached": 8, + "data": 12, + "too": 4, + "old": 4, + "reading": 2, + "readlock": 2, + "readunlock": 2, + "value": 14, + "true": 12, + "false": 8, + "ignored": 2, + "//##################################################################": 4, + "knoptype": 2, + "All": 4, + "Knop": 6, + "custom": 8, + "types": 10, + "should": 4, + "have": 6, + "parent": 5, + "This": 5, + "identify": 2, + "registered": 2, + "knop": 6, + "isknoptype": 2, + "knop_knoptype": 2, + "prototype": 4, + "version": 4, + "14": 4, + "Base": 2, + "framework": 2, + "Contains": 2, + "common": 4, + "member": 10, + "Used": 2, + "boilerplate": 2, + "creating": 4, + "other": 4, + "instance": 8, + "variables": 2, + "are": 4, + "available": 2, + "well": 2, + "CHANGE": 4, + "NOTES": 4, + "Syntax": 4, + "adjustments": 4, + "9": 2, + "Changed": 6, + "error_msg": 15, + "error": 22, + "numbers": 2, + "added": 10, + "even": 2, + "language": 10, + "already": 2, + "exists.": 2, + "improved": 4, + "reporting": 2, + "messages": 6, + "such": 2, + "from": 6, + "bad": 2, + "database": 14, + "queries": 2, + "error_lang": 2, + "provide": 2, + "knop_lang": 8, + "object": 7, + "add": 12, + "localized": 2, + "any": 14, + "except": 2, + "knop_base": 8, + "html": 4, + "xhtml": 28, + "help": 10, + "nicely": 2, + "formatted": 2, + "output.": 2, + "Centralized": 2, + "error_code": 11, + "knop_base.": 2, + "Moved": 6, + "codes": 2, + "improve": 2, + "documentation.": 2, + "It": 2, + "always": 2, + "an": 8, + "list": 4, + "parameter.": 2, + "trace": 2, + "tagtime": 4, + "was": 6, + "nav": 4, + "earlier": 2, + "varname": 4, + "retreive": 2, + "variable": 8, + "that": 18, + "stored": 2, + "in.": 2, + "automatically": 2, + "sense": 2, + "doctype": 6, + "exists": 2, + "buffer.": 2, + "The": 6, + "result": 6, + "performance.": 2, + "internal": 2, + "html.": 2, + "Introduced": 2, + "_knop_data": 10, + "general": 2, + "level": 2, + "caching": 2, + "between": 2, + "different": 2, + "objects.": 2, + "TODO": 2, + "option": 2, + "Google": 2, + "Code": 2, + "Wiki": 2, + "working": 2, + "properly": 4, + "run": 2, + "by": 12, + "atbegin": 2, + "handler": 2, + "explicitly": 2, + "*/": 2, + "array": 20, + "entire": 4, + "ms": 2, + "defined": 4, + "each": 8, + "instead": 4, + "avoid": 2, + "recursion": 2, + "properties": 4, + "params": 11, + "|": 13, + "#endslash": 10, + "#tags": 2, + "#t": 2, + "doesn": 4, + "t": 8, + "p": 2, + "n": 30, + "Parameters": 4, + "nParameters": 2, + "r": 8, + "Internal.": 2, + "Finds": 2, + "out": 2, + "used.": 2, + "Looks": 2, + "unless": 2, + "array.": 2, + "variable.": 2, + "Looking": 2, + "#params": 5, + "#xhtmlparam": 4, + "boolean": 4, + "plain": 2, + "#doctype": 4, + "copy": 4, + "standard": 2, + "code": 2, + "errors": 12, + "error_data": 12, + "form": 2, + "grid": 2, + "lang": 2, + "user": 4, + "#error_lang": 12, + "addlanguage": 4, + "strings": 6, + "@#errorcodes": 2, + "#error_lang_custom": 2, + "#custom_language": 10, + "once": 4, + "one": 2, + "key": 3, + "#custom_string": 4, + "#errorcodes": 4, + "#error_code": 10, + "message": 6, + "getstring": 2, + "literal": 3, + "test": 2, + "known": 2, + "lasso": 2, + "knop_timer": 2, + "knop_unique": 2, + "look": 2, + "#varname": 6, + "loop_abort": 2, + "tag_name": 2, + "#timer": 2, + "#trace": 4, + "merge": 2, + "#eol": 8, + "2010": 4, + "23": 4, + "Custom": 2, + "interact": 2, + "databases": 2, + "Supports": 4, + "both": 2, + "MySQL": 2, + "FileMaker": 2, + "datasources": 2, + "2012": 4, + "06": 2, + "10": 2, + "SP": 4, + "Fix": 2, + "decimal": 5, + "precision": 2, + "bug": 2, + "6": 2, + "0": 2, + "1": 2, + "renderfooter": 2, + "15": 2, + "Add": 2, + "support": 6, + "host": 6, + "Thanks": 2, + "Ric": 2, + "Lewis": 2, + "settable": 4, + "removed": 2, + "table": 6, + "nextrecord": 12, + "deprecation": 2, + "warning": 2, + "corrected": 2, + "verification": 2, + "index": 4, + "before": 4, + "calling": 2, + "resultset_count": 6, + "break": 2, + "versions": 2, + "fixed": 4, + "incorrect": 2, + "debug_trace": 2, + "addrecord": 4, + "how": 2, + "keyvalue": 10, + "returned": 6, + "adding": 2, + "records": 4, + "inserting": 2, + "generated": 2, + "suppressed": 2, + "specifying": 2, + "saverecord": 8, + "deleterecord": 4, + "case.": 2, + "recorddata": 6, + "no": 2, + "longer": 2, + "touch": 2, + "current_record": 2, + "zero": 2, + "access": 2, + "occurrence": 2, + "same": 4, + "returns": 4, + "knop_databaserows": 2, + "inlinename.": 4, + "next.": 2, + "remains": 2, + "supported": 2, + "backwards": 2, + "compatibility.": 2, + "resets": 2, + "record": 20, + "pointer": 8, + "reaching": 2, + "last": 4, + "honors": 2, + "incremented": 2, + "recordindex": 4, + "specific": 2, + "found.": 2, + "getrecord": 8, + "REALLY": 2, + "works": 4, + "keyvalues": 4, + "double": 2, + "oops": 4, + "I": 4, + "thought": 2, + "but": 2, + "misplaced": 2, + "paren...": 2, + "corresponding": 2, + "resultset": 2, + "...": 3, + "/resultset": 2, + "through": 2, + "handling": 2, + "better": 2, + "knop_user": 4, + "keeplock": 4, + "updates": 2, + "datatype": 2, + "knop_databaserow": 2, + "iterated.": 2, + "When": 2, + "iterating": 2, + "row": 2, + "values.": 2, + "Addedd": 2, + "increments": 2, + "recordpointer": 2, + "called": 2, + "until": 2, + "found": 5, + "set": 10, + "reached.": 2, + "Returns": 2, + "long": 2, + "there": 2, + "more": 2, + "records.": 2, + "Useful": 2, + "loop": 2, + "example": 2, + "below": 2, + "Implemented": 2, + ".": 5, + "reset": 2, + "query.": 2, + "shortcut": 2, + "Removed": 2, + "onassign": 2, + "touble": 2, + "Extended": 2, + "field_names": 2, + "names": 4, + "db": 2, + "objects": 2, + "never": 2, + "been": 2, + "optionally": 2, + "supports": 2, + "sql.": 2, + "Make": 2, + "sure": 2, + "SQL": 2, + "includes": 2, + "relevant": 2, + "keyfield": 4, + "lockfield": 2, + "locking": 4, + "capturesearchvars": 2, + "mysteriously": 2, + "after": 2, + "operations": 2, + "caused": 2, + "errors.": 2, + "flag": 2, + "save": 2, + "locked": 2, + "releasing": 2, + "Adding": 2, + "progress.": 2, + "Done": 2, + "oncreate": 2, + "getrecord.": 2, + "documentation": 2, + "most": 2, + "existing": 2, + "it.": 2, + "Faster": 2, + "than": 2, + "scratch.": 2, + "shown_first": 2, + "again": 2, + "hoping": 2, + "s": 2, + "only": 2, + "captured": 2, + "update": 2, + "uselimit": 2, + "querys": 2, + "LIMIT": 2, + "still": 2, + "gets": 2, + "proper": 2, + "searchresult": 2, + "separate": 2, + "COUNT": 2, + "define": 20, + "trait_json_serialize": 2, + "trait": 1, + "{": 18, + "require": 1, + "asString": 3, + "}": 18, + "json_serialize": 18, + "e": 13, + "bytes": 8, + "#e": 13, + "Replace": 19, + "&": 21, + "json_literal": 1, + "asstring": 4, + "gmt": 1, + "trait_forEach": 1, + "delimit": 7, + "foreach": 1, + "#delimit": 7, + "#1": 3, + "pr": 1, + "eachPair": 1, + "select": 1, + "#pr": 2, + "json_object": 2, + "foreachpair": 1, + "serialize": 1, + "json_consume_string": 3, + "ibytes": 9, + "obytes": 3, + "temp": 12, + "#temp": 19, + "#ibytes": 17, + "export8bits": 6, + "#obytes": 5, + "import8bits": 4, + "Escape": 1, + "unescape": 1, + "//Replace": 1, + "BeginsWith": 1, + "EndsWith": 1, + "Protect": 1, + "serialization_reader": 1, + "xml": 1, + "read": 1, + "/Protect": 1, + "regexp": 1, + "d": 2, + "T": 3, + "Z": 1, + "matches": 1, + "Format": 1, + "yyyyMMdd": 2, + "HHmmssZ": 1, + "HHmmss": 1, + "json_consume_token": 2, + "marker": 4, + "Is": 1, + "end": 2, + "token": 1, + "//............................................................................": 2, + "string_IsNumeric": 1, + "json_consume_array": 3, + "While": 1, + "If": 4, + "Discard": 1, + "Else": 7, + "#key": 12, + "json_consume_object": 2, + "Loop_Abort": 1, + "/If": 3, + "/While": 1, + "Find": 3, + "Return": 7, + "Second": 1, + "json_deserialize": 1, + "removeLeading": 1, + "bom_utf8": 1, + "Reset": 1, + "on": 1, + "provided": 1, + "**/": 1, + "public": 1, + "onCreate": 1, + "..onCreate": 1, + "#rest": 1, + "json_rpccall": 1, + "#id": 2, + "#host": 4, + "Lasso_UniqueID": 1, + "Decode_JSON": 2, + "Include_URL": 1, + "PostParams": 1, + "Encode_JSON": 1, + "Map": 3, + "#method": 1, + "LassoScript": 1, + "JSON": 2, + "Encoding": 1, + "Decoding": 1, + "Copyright": 1, + "LassoSoft": 1, + "Inc.": 1, + "": 1, + "": 1, + "": 1, + "incorporated": 1, + "Lasso_TagExists": 1, + "False": 1, + "Define_Tag": 1, + "Namespace": 1, + "Required": 1, + "Optional": 1, + "f": 2, + "b": 2, + "newoptions": 1, + "options": 2, + "queue": 2, + "priorityqueue": 2, + "stack": 2, + "pair": 1, + "client_ip": 1, + "client_address": 1, + "__jsonclass__": 6, + "deserialize": 2, + "": 3, + "": 3, + "Decode_": 1, + "consume_string": 1, + "unescapes": 1, + "u": 1, + "UTF": 4, + "QT": 4, + "TZ": 2, + "consume_token": 1, + "consume_array": 1, + "consume_object": 1, + "val": 1, + "native": 2, + "comment": 2, + "//www.lassosoft.com/json": 1, + "Literal": 2, + "String": 1, + "Object": 2, + "JSON_RPCCall": 1, + "RPCCall": 1, + "JSON_": 1, + "//localhost/lassoapps.8/rpc/rpc.lasso": 1, + "request": 2, + "JSON_Records": 3, + "KeyField": 1, + "ReturnField": 1, + "ExcludeField": 1, + "Fields": 1, + "_fields": 1, + "fields": 2, + "No": 1, + "_keyfield": 4, + "ID": 1, + "_index": 1, + "_return": 1, + "returnfield": 1, + "_exclude": 1, + "excludefield": 1, + "_records": 1, + "_record": 1, + "_temp": 1, + "_field": 1, + "_output": 1, + "rows": 1, + "#_records": 1, + "@#_output": 1, + "/Define_Tag": 1 + }, + "Max": { + "max": 1, + "v2": 1, + ";": 39, + "#N": 2, + "vpatcher": 1, + "#P": 33, + "toggle": 1, + "button": 4, + "window": 2, + "setfont": 1, + "Verdana": 1, + "linecount": 1, + "newex": 8, + "r": 1, + "jojo": 2, + "#B": 2, + "color": 2, + "s": 1, + "route": 1, + "append": 1, + "toto": 1, + "%": 1, + "counter": 2, + "#X": 1, + "flags": 1, + "newobj": 1, + "metro": 1, + "t": 2, + "message": 2, + "Goodbye": 1, + "World": 2, + "Hello": 1, + "connect": 13, + "fasten": 1, + "pop": 1, + "{": 126, + "}": 126, + "[": 163, + "]": 163 + }, + "Awk": { + "SHEBANG#!awk": 1, + "BEGIN": 1, + "{": 17, + "n": 13, + ";": 55, + "printf": 1, + "network_max_bandwidth_in_byte": 3, + "network_max_packet_per_second": 3, + "last3": 3, + "last4": 3, + "last5": 3, + "last6": 3, + "}": 17, + "if": 14, + "(": 14, + "/Average/": 1, + ")": 14, + "#": 48, + "Skip": 1, + "the": 12, + "Average": 1, + "values": 1, + "next": 1, + "/all/": 1, + "This": 8, + "is": 7, + "cpu": 1, + "info": 7, + "print": 35, + "FILENAME": 35, + "-": 2, + "/eth0/": 1, + "eth0": 1, + "network": 1, + "Total": 9, + "number": 9, + "of": 22, + "packets": 4, + "received": 4, + "per": 14, + "second.": 8, + "else": 4, + "transmitted": 4, + "bytes": 4, + "/proc": 1, + "|": 4, + "cswch": 1, + "tps": 1, + "kbmemfree": 1, + "totsck/": 1, + "/": 2, + "[": 1, + "]": 1, + "proc/s": 1, + "context": 1, + "switches": 1, + "second": 6, + "disk": 1, + "total": 1, + "transfers": 1, + "read": 1, + "requests": 2, + "write": 1, + "block": 2, + "reads": 1, + "writes": 1, + "mem": 1, + "Amount": 7, + "free": 2, + "memory": 6, + "available": 1, + "in": 11, + "kilobytes.": 7, + "used": 8, + "does": 1, + "not": 1, + "take": 1, + "into": 1, + "account": 1, + "by": 4, + "kernel": 3, + "itself.": 1, + "Percentage": 2, + "memory.": 1, + "X": 1, + "shared": 1, + "system": 1, + "Always": 1, + "zero": 1, + "with": 1, + "kernels.": 1, + "as": 1, + "buffers": 1, + "to": 1, + "cache": 1, + "data": 1, + "swap": 3, + "space": 2, + "space.": 1, + "socket": 1, + "sockets.": 1, + "Number": 4, + "TCP": 1, + "sockets": 3, + "currently": 4, + "use.": 4, + "UDP": 1, + "RAW": 1, + "IP": 1, + "fragments": 1, + "END": 1 + }, + "JavaScript": { + "(": 8518, + "function": 1212, + "window": 18, + "angular": 1, + ")": 8526, + "{": 2738, + "Array.prototype.last": 1, + "return": 945, + "this": 578, + "[": 1461, + "this.length": 41, + "-": 706, + "]": 1458, + ";": 4056, + "}": 2714, + "var": 911, + "app": 3, + "angular.module": 1, + "JSON": 5, + "if": 1230, + "f": 666, + "n": 874, + "<": 209, + "+": 1135, + "typeof": 132, + "Date.prototype.toJSON": 2, + "key": 85, + "isFinite": 1, + "this.valueOf": 2, + "this.getUTCFullYear": 1, + "this.getUTCMonth": 1, + "this.getUTCDate": 1, + "this.getUTCHours": 1, + "this.getUTCMinutes": 1, + "this.getUTCSeconds": 1, + "null": 427, + "String.prototype.toJSON": 1, + "Number.prototype.toJSON": 1, + "Boolean.prototype.toJSON": 1, + "cx": 2, + "/": 290, + "u0000": 1, + "u00ad": 1, + "u0600": 1, + "u0604": 1, + "u070f": 1, + "u17b4": 1, + "u17b5": 1, + "u200c": 1, + "u200f": 1, + "u2028": 3, + "u202f": 1, + "u2060": 1, + "u206f": 1, + "ufeff": 1, + "ufff0": 1, + "uffff": 1, + "/g": 37, + "escapable": 1, + "b": 961, + "t": 436, + "r": 261, + "object": 59, + "string": 41, + "number": 13, + "boolean": 8, + "Array": 3, + "JSON.stringify": 4, + "u": 304, + "/bfnrt": 1, + "|": 206, + "a": 1489, + "fA": 2, + "F": 8, + ".replace": 38, + "*": 70, + "JSON.parse": 1, + "PUT": 1, + "DELETE": 1, + "all": 16, + "change": 16, + "id": 38, + "_id": 1, + "error": 20, + "Can": 2, + "add": 15, + "remove": 9, + "s": 290, + "ties": 1, + "to": 92, + "collection.": 1, + "_removeReference": 1, + "model": 14, + "model.collection": 2, + "delete": 39, + "model.unbind": 1, + "this._onModelEvent": 1, + "_onModelEvent": 1, + "ev": 5, + "collection": 3, + "options": 56, + "||": 648, + "&&": 1017, + "this._remove": 1, + "model.idAttribute": 2, + "this._byId": 2, + "model.previous": 1, + "model.id": 1, + "this.trigger.apply": 2, + "arguments": 83, + "methods": 8, + "_.each": 1, + "method": 30, + "Backbone.Collection.prototype": 1, + "_": 9, + ".apply": 7, + "this.models": 1, + ".concat": 3, + "_.toArray": 1, + "Backbone.Router": 1, + "options.routes": 2, + "this.routes": 4, + "this._bindRoutes": 1, + "this.initialize.apply": 2, + "namedParam": 2, + "w": 110, + "d": 771, + "splatParam": 2, + "escapeRegExp": 2, + ".": 91, + "#": 13, + "_.extend": 9, + "Backbone.Router.prototype": 1, + "Backbone.Events": 2, + "initialize": 3, + "//": 410, + "route": 18, + "name": 161, + "callback": 23, + "Backbone.history": 2, + "new": 86, + "Backbone.History": 2, + "_.isRegExp": 1, + "this._routeToRegExp": 1, + "Backbone.history.route": 1, + "_.bind": 2, + "fragment": 27, + "args": 31, + "this._extractParameters": 1, + "callback.apply": 1, + "navigate": 2, + "triggerRoute": 4, + "Backbone.history.navigate": 1, + "_bindRoutes": 1, + "routes": 4, + "for": 262, + "in": 170, + "routes.unshift": 1, + "i": 853, + "l": 312, + "routes.length": 1, + "this.route": 1, + "_routeToRegExp": 1, + "route.replace": 1, + "RegExp": 12, + "_extractParameters": 1, + "route.exec": 1, + ".slice": 6, + "this.handlers": 2, + "_.bindAll": 1, + "hashStrip": 4, + "#*": 1, + "isExplorer": 1, + "/msie": 1, + "w.": 17, + "historyStarted": 3, + "false": 142, + "Backbone.History.prototype": 1, + "interval": 3, + "getFragment": 1, + "forcePushState": 2, + "this._hasPushState": 6, + "window.location.pathname": 1, + "search": 5, + "window.location.search": 1, + "fragment.indexOf": 1, + "this.options.root": 6, + "fragment.substr": 1, + "this.options.root.length": 1, + "else": 307, + "window.location.hash": 3, + "fragment.replace": 1, + "start": 20, + "throw": 27, + "Error": 16, + "this.options": 6, + "root": 5, + "this._wantsPushState": 3, + "this.options.pushState": 2, + "window.history": 2, + "window.history.pushState": 2, + "this.getFragment": 6, + "docMode": 3, + "document.documentMode": 3, + "oldIE": 3, + "isExplorer.exec": 1, + "navigator.userAgent.toLowerCase": 1, + "this.iframe": 4, + ".hide": 2, + ".appendTo": 2, + ".contentWindow": 1, + "this.navigate": 2, + ".bind": 3, + "this.checkUrl": 3, + "setInterval": 6, + "this.interval": 1, + "this.fragment": 13, + "true": 147, + "loc": 2, + "window.location": 5, + "atRoot": 3, + "loc.pathname": 1, + "loc.hash": 1, + "loc.hash.replace": 1, + "window.history.replaceState": 1, + "document.title": 2, + "loc.protocol": 2, + "loc.host": 2, + "this.loadUrl": 4, + "this.handlers.unshift": 1, + "checkUrl": 1, + "e": 663, + "current": 7, + "this.iframe.location.hash": 3, + "decodeURIComponent": 2, + "loadUrl": 1, + "fragmentOverride": 2, + "matched": 2, + "_.any": 1, + "handler": 14, + "handler.route.test": 1, + "handler.callback": 1, + "frag": 13, + "frag.indexOf": 1, + "this.iframe.document.open": 1, + ".close": 1, + "Backbone.View": 1, + "this.cid": 3, + "_.uniqueId": 1, + "this._configure": 1, + "this._ensureElement": 1, + "this.delegateEvents": 1, + "selectorDelegate": 2, + "selector": 40, + "this.el": 10, + "eventSplitter": 2, + "S": 8, + "s*": 15, + ".*": 20, + "viewOptions": 2, + "Backbone.View.prototype": 1, + "tagName": 3, + "render": 1, + ".remove": 2, + "make": 2, + "attributes": 14, + "content": 5, + "el": 4, + "document.createElement": 26, + ".attr": 1, + ".html": 1, + "delegateEvents": 1, + "events": 18, + "this.events": 1, + ".unbind": 4, + "match": 30, + "key.match": 1, + "eventName": 21, + ".delegate": 2, + "_configure": 1, + "viewOptions.length": 1, + "attr": 13, + "_ensureElement": 1, + "attrs": 6, + "this.attributes": 1, + "this.id": 2, + "attrs.id": 1, + "this.className": 10, + "this.make": 1, + "this.tagName": 1, + "_.isString": 1, + ".get": 3, + "extend": 13, + "protoProps": 6, + "classProps": 2, + "child": 17, + "inherits": 2, + "child.extend": 1, + "this.extend": 1, + "Backbone.Model.extend": 1, + "Backbone.Collection.extend": 1, + "Backbone.Router.extend": 1, + "Backbone.View.extend": 1, + "methodMap": 2, + "Backbone.sync": 1, + "type": 49, + "params": 2, + "dataType": 6, + "processData": 3, + "params.url": 2, + "getUrl": 2, + "urlError": 2, + "params.data": 5, + "params.contentType": 2, + "model.toJSON": 1, + "Backbone.emulateJSON": 2, + "params.processData": 1, + "Backbone.emulateHTTP": 1, + "params.data._method": 1, + "params.type": 1, + "params.beforeSend": 1, + "xhr": 1, + "xhr.setRequestHeader": 1, + ".ajax": 1, + "ctor": 6, + "parent": 15, + "staticProps": 3, + "protoProps.hasOwnProperty": 1, + "protoProps.constructor": 1, + "parent.apply": 1, + "ctor.prototype": 3, + "parent.prototype": 6, + "child.prototype": 4, + "child.prototype.constructor": 1, + "child.__super__": 3, + "object.url": 4, + "_.isFunction": 1, + "wrapError": 1, + "onError": 3, + "resp": 3, + "model.trigger": 1, + "escapeHTML": 1, + "string.replace": 1, + "&": 13, + "#x": 1, + "da": 1, + "/gi": 2, + "": 1, + "lt": 55, + "replace": 8, + "#x27": 1, + "#x2F": 1, + ".call": 10, + "undefined": 328, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "document": 26, "window.document": 2, "navigator": 3, "window.navigator": 2, "location": 2, +<<<<<<< HEAD "window.location": 5, +======= +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "jQuery": 48, "context": 48, "The": 9, "is": 67, "actually": 2, "just": 2, +<<<<<<< HEAD +======= + "the": 107, + "init": 7, + "constructor": 8, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "jQuery.fn.init": 2, "rootjQuery": 8, "Map": 4, "over": 7, +<<<<<<< HEAD "of": 28, "overwrite": 4, "_jQuery": 4, "window.": 6, +======= + "case": 136, + "of": 28, + "overwrite": 4, + "_jQuery": 4, + "window.jQuery": 7, + "window.": 6, + "A": 24, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "central": 2, "reference": 5, "simple": 3, "way": 2, "check": 8, +<<<<<<< HEAD "strings": 8, "both": 2, "optimize": 3, "quickExpr": 2, +======= + "HTML": 9, + "strings": 8, + "or": 38, + "ID": 8, + "Prioritize": 1, + "#id": 3, + "": 1, + "avoid": 5, + "XSS": 1, + "via": 2, + "location.hash": 1, + "#9521": 1, + "quickExpr": 2, + "<[\\w\\W]+>": 4, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "Check": 10, "has": 9, "non": 8, @@ -29020,17 +36136,25 @@ "character": 3, "it": 112, "rnotwhite": 2, +<<<<<<< HEAD +======= + "S/": 4, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "Used": 3, "trimming": 2, "trimLeft": 4, "trimRight": 4, +<<<<<<< HEAD "digits": 3, "rdigit": 1, "d/": 3, +======= +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "Match": 3, "standalone": 2, "tag": 2, "rsingleTag": 2, +<<<<<<< HEAD "JSON": 5, "RegExp": 12, "rvalidchars": 2, @@ -29055,26 +36179,100 @@ "deferred": 25, "used": 13, "DOM": 21, +======= + "<(\\w+)\\s*\\/?>": 4, + "<\\/\\1>": 4, + "rvalidchars": 2, + "rvalidescape": 2, + "d*": 8, + "eE": 4, + "rvalidbraces": 2, + "Useragent": 2, + "rwebkit": 2, + "webkit": 6, + "ropera": 2, + "opera": 4, + ".*version": 4, + "rmsie": 2, + "msie": 4, + "rmozilla": 2, + "mozilla": 4, + "rv": 4, + "Matches": 1, + "dashed": 1, + "camelizing": 1, + "rdashAlpha": 1, + "z": 21, + "/ig": 3, + "rmsPrefix": 1, + "ms": 2, + "by": 12, + "jQuery.camelCase": 6, + "as": 11, + "fcamelCase": 1, + "letter": 3, + ".toUpperCase": 3, + "Keep": 2, + "UserAgent": 2, + "use": 10, + "with": 18, + "jQuery.browser": 4, + "userAgent": 3, + "navigator.userAgent": 3, + "For": 5, + "matching": 3, + "engine": 2, + "and": 42, + "version": 10, + "browser": 11, + "browserMatch": 3, + "deferred": 25, + "used": 13, + "on": 37, + "DOM": 21, + "ready": 31, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "readyList": 6, "event": 31, "DOMContentLoaded": 14, "Save": 2, "some": 2, "core": 2, +<<<<<<< HEAD "methods": 8, "toString": 4, "hasOwn": 2, "String.prototype.trim": 3, +======= + "toString": 4, + "Object.prototype.toString": 7, + "hasOwn": 2, + "Object.prototype.hasOwnProperty": 6, + "push": 11, + "Array.prototype.push": 4, + "slice": 10, + "Array.prototype.slice": 6, + "trim": 5, + "String.prototype.trim": 3, + "indexOf": 5, + "Array.prototype.indexOf": 4, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "Class": 2, "pairs": 2, "class2type": 3, "jQuery.fn": 4, "jQuery.prototype": 2, +<<<<<<< HEAD "match": 30, +======= + "elem": 101, + "ret": 62, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "doc": 4, "Handle": 14, "DOMElement": 2, "selector.nodeType": 2, +<<<<<<< HEAD "exists": 9, "once": 4, "finding": 2, @@ -29084,20 +36282,51 @@ "selector.length": 4, "Assume": 2, "are": 18, +======= + "this.context": 17, + "body": 22, + "element": 19, + "only": 10, + "exists": 9, + "once": 4, + "optimize": 3, + "finding": 2, + "document.body": 8, + "this.selector": 16, + "Are": 2, + "we": 25, + "dealing": 2, + "an": 12, + "selector.charAt": 4, + "selector.length": 4, + "Assume": 2, + "that": 33, + "end": 14, + "are": 18, + "skip": 5, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "regex": 3, "quickExpr.exec": 2, "Verify": 3, "no": 19, "was": 6, "specified": 4, +<<<<<<< HEAD "#id": 3, "HANDLE": 2, "array": 7, +======= + "HANDLE": 2, + "html": 10, + "array": 7, + "instanceof": 19, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "context.ownerDocument": 2, "If": 21, "single": 2, "passed": 5, "clean": 3, +<<<<<<< HEAD "like": 5, "method.": 3, "jQuery.fn.init.prototype": 2, @@ -29109,12 +36338,38 @@ "deep": 12, "situation": 2, "boolean": 8, +======= + "not": 26, + "like": 5, + "method.": 3, + "sort": 4, + ".sort": 9, + "splice": 5, + ".splice": 5, + "jQuery.fn.init.prototype": 2, + "jQuery.extend": 11, + "jQuery.fn.extend": 4, + "src": 7, + "copy": 16, + "copyIsArray": 2, + "clone": 5, + "target": 44, + "length": 48, + "arguments.length": 18, + "deep": 12, + "situation": 2, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "when": 20, "something": 3, "possible": 3, "jQuery.isFunction": 6, +<<<<<<< HEAD "extend": 13, "itself": 4, +======= + "itself": 4, + "one": 15, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "argument": 2, "Only": 5, "deal": 2, @@ -29126,20 +36381,36 @@ "never": 2, "ending": 2, "loop": 7, +<<<<<<< HEAD +======= + "continue": 18, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "Recurse": 2, "bring": 2, "Return": 2, "modified": 3, +<<<<<<< HEAD +======= + "noConflict": 4, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "Is": 2, "be": 12, "Set": 4, "occurs.": 2, +<<<<<<< HEAD +======= + "isReady": 5, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "counter": 2, "track": 2, "how": 2, "many": 3, "items": 2, "wait": 12, +<<<<<<< HEAD +======= + "before": 8, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "fires.": 2, "See": 9, "#6781": 2, @@ -29165,6 +36436,10 @@ "overzealous": 4, "ticket": 4, "#5443": 4, +<<<<<<< HEAD +======= + "setTimeout": 19, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "Remember": 2, "normal": 2, "Ready": 2, @@ -29175,18 +36450,32 @@ "functions": 6, "bound": 8, "execute": 4, +<<<<<<< HEAD "readyList.resolveWith": 1, +======= + "readyList.fireWith": 1, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "Trigger": 2, "any": 12, "jQuery.fn.trigger": 2, ".trigger": 3, +<<<<<<< HEAD ".unbind": 4, "jQuery._Deferred": 3, +======= + ".off": 1, + "bindReady": 5, + "jQuery.Callbacks": 2, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "Catch": 2, "cases": 4, "where": 2, ".ready": 2, "called": 2, +<<<<<<< HEAD +======= + "after": 7, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "already": 6, "occurred.": 2, "document.readyState": 4, @@ -29194,10 +36483,18 @@ "allow": 6, "scripts": 2, "opportunity": 2, +<<<<<<< HEAD +======= + "delay": 4, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "Mozilla": 2, "Opera": 2, "nightlies": 3, "currently": 4, +<<<<<<< HEAD +======= + "support": 13, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "document.addEventListener": 6, "Use": 7, "handy": 2, @@ -29207,7 +36504,10 @@ "always": 6, "work": 6, "window.addEventListener": 2, +<<<<<<< HEAD "model": 14, +======= +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "document.attachEvent": 6, "ensure": 2, "firing": 16, @@ -29216,13 +36516,23 @@ "late": 2, "but": 4, "safe": 3, +<<<<<<< HEAD +======= + "also": 5, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "iframes": 2, "window.attachEvent": 2, "frame": 23, "continually": 2, "see": 6, "toplevel": 7, +<<<<<<< HEAD "window.frameElement": 2, +======= + "try": 44, + "window.frameElement": 2, + "catch": 38, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "document.documentElement.doScroll": 4, "doScrollCheck": 6, "test/unit/core.js": 2, @@ -29230,6 +36540,7 @@ "concerning": 2, "isFunction.": 2, "Since": 3, +<<<<<<< HEAD "aren": 5, "pass": 7, "through": 3, @@ -29238,6 +36549,18 @@ "jQuery.type": 4, "obj.nodeType": 2, "jQuery.isWindow": 2, +======= + "alert": 11, + "aren": 5, + "pass": 7, + "through": 3, + "well": 2, + "obj": 40, + "jQuery.type": 4, + "obj.nodeType": 2, + "jQuery.isWindow": 2, + "Not": 4, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "own": 4, "property": 15, "must": 4, @@ -29245,10 +36568,21 @@ "obj.constructor": 2, "hasOwn.call": 6, "obj.constructor.prototype": 2, +<<<<<<< HEAD +======= + "IE8": 2, + "Will": 2, + "exceptions": 2, + "certain": 2, + "host": 29, + "objects": 7, + "#9897": 1, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "Own": 2, "properties": 7, "enumerated": 2, "firstly": 2, +<<<<<<< HEAD "speed": 4, "up": 4, "then": 8, @@ -29259,6 +36593,86 @@ "can": 10, "breaking": 1, "spaces": 3, +======= + "so": 8, + "speed": 4, + "up": 4, + "last": 6, + "then": 8, + "own.": 2, + "isEmptyObject": 7, + "msg": 4, + "parseJSON": 4, + "data": 145, + "leading/trailing": 2, + "removed": 3, + "can": 10, + "access": 2, + "elems": 9, + "fn": 14, + "value": 98, + "chainable": 4, + "emptyGet": 3, + "exec": 8, + "bulk": 3, + "elems.length": 1, + "Sets": 3, + "jQuery.access": 2, + "Optionally": 1, + "get": 24, + "executed": 1, + "Bulk": 1, + "operations": 1, + "iterate": 1, + "executing": 1, + "exec.call": 1, + "Otherwise": 2, + "they": 2, + "run": 1, + "against": 1, + "entire": 1, + "set": 22, + "fn.call": 2, + "value.call": 1, + "Gets": 2, + "now": 5, + "Date": 4, + ".getTime": 3, + "frowned": 1, + "upon.": 1, + "More": 1, + "http": 6, + "//docs.jquery.com/Utilities/jQuery.browser": 1, + "uaMatch": 3, + "ua": 6, + "ua.toLowerCase": 1, + "rwebkit.exec": 1, + "ropera.exec": 1, + "rmsie.exec": 1, + "ua.indexOf": 1, + "rmozilla.exec": 1, + "sub": 4, + "jQuerySub": 7, + "jQuerySub.fn.init": 2, + "jQuerySub.superclass": 1, + "jQuerySub.fn": 2, + "jQuerySub.prototype": 1, + "jQuerySub.fn.constructor": 1, + "jQuerySub.sub": 1, + "this.sub": 2, + "jQuery.fn.init.call": 1, + "rootjQuerySub": 2, + "jQuerySub.fn.init.prototype": 1, + "jQuery.each": 2, + ".split": 19, + "name.toLowerCase": 6, + "jQuery.uaMatch": 1, + "browserMatch.browser": 2, + "jQuery.browser.version": 1, + "browserMatch.version": 1, + "jQuery.browser.webkit": 1, + "jQuery.browser.safari": 1, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "rnotwhite.test": 2, "xA0": 7, "document.removeEventListener": 2, @@ -29266,6 +36680,7 @@ "trick": 2, "Diego": 2, "Perini": 2, +<<<<<<< HEAD "http": 6, "//javascript.nwbox.com/IEContentLoaded/": 2, "waiting": 2, @@ -29536,10 +36951,381 @@ "existed": 1, "Otherwise": 2, "eliminate": 2, +======= + "//javascript.nwbox.com/IEContentLoaded/": 2, + "waiting": 2, + "flagsCache": 3, + "createFlags": 2, + "flags": 13, + "flags.split": 1, + "flags.length": 1, + "Convert": 1, + "from": 7, + "String": 2, + "formatted": 2, + "cache": 45, + "first": 10, + "Actual": 2, + "list": 21, + "Stack": 1, + "fire": 4, + "calls": 1, + "repeatable": 1, + "lists": 2, + "stack": 2, + "Last": 2, + "forgettable": 1, + "memory": 8, + "Flag": 2, + "know": 3, + "First": 3, + "internally": 5, + "fireWith": 1, + "firingStart": 3, + "End": 1, + "firingLength": 4, + "Index": 1, + "needed": 2, + "firingIndex": 5, + "Add": 4, + "several": 1, + "callbacks": 10, + "actual": 1, + "args.length": 3, + "Inspect": 1, + "recursively": 1, + "unique": 2, + "mode": 1, + "flags.unique": 1, + "self.has": 1, + "list.push": 1, + "Fire": 1, + "flags.memory": 1, + "list.length": 5, + "flags.stopOnFalse": 1, + "Mark": 1, + "halted": 1, + "break": 111, + "flags.once": 1, + "stack.length": 1, + "stack.shift": 1, + "self.fireWith": 1, + "self.disable": 1, + "Callbacks": 1, + "self": 17, + "Do": 2, + "batch": 2, + "With": 1, + "/a": 1, + "top": 12, + "px": 31, + "float": 3, + "left": 14, + "opacity": 13, + ".55": 1, + "checkbox": 14, + "basic": 1, + "test": 21, + "all.length": 1, + "supports": 2, + "tests": 48, + "select": 20, + "opt": 2, + "select.appendChild": 1, + "input": 25, + "div.getElementsByTagName": 6, + "strips": 1, + "leading": 1, + ".innerHTML": 3, + "leadingWhitespace": 3, + "div.firstChild.nodeType": 1, + "tbody": 7, + "elements": 9, + "manipulated": 1, + "normalizes": 1, + "default": 21, + "hrefNormalized": 3, + "a.getAttribute": 11, + "uses": 3, + "filter": 10, + "instead": 6, + "around": 1, + "WebKit": 9, + "issue.": 1, + "#5145": 1, + "/.test": 19, + "a.style.opacity": 2, + "style": 30, + "existence": 1, + "styleFloat": 1, + "cssFloat": 4, + "a.style.cssFloat": 1, + "defaults": 3, + "checkOn": 4, + "input.value": 5, + "selected": 5, + "option": 12, + "working": 1, + "property.": 1, + "too": 1, + "marked": 1, + "disabled": 11, + "marks": 1, + "them": 3, + "select.disabled": 1, + "support.optDisabled": 1, + "opt.disabled": 1, + "Test": 3, + "handlers": 1, + "does": 9, + "support.noCloneEvent": 1, + "div.cloneNode": 1, + ".fireEvent": 3, + "radio": 17, + "maintains": 1, + "its": 2, + "being": 2, + "appended": 2, + "input.setAttribute": 5, + "support.radioValue": 2, + "#11217": 1, + "loses": 1, + "checked": 4, + "attribute": 5, + "div.appendChild": 4, + "document.createDocumentFragment": 3, + "fragment.appendChild": 2, + "div.lastChild": 1, + "doesn": 2, + "have": 6, + "conMarginTop": 3, + "paddingMarginBorder": 5, + "positionTopLeftWidthHeight": 3, + "paddingMarginBorderVisibility": 3, + "container": 4, + "container.style.cssText": 1, + "body.insertBefore": 1, + "body.firstChild": 1, + "Construct": 1, + "div": 28, + "container.appendChild": 1, + "table": 6, + "cells": 3, + "still": 4, + "offsetWidth/Height": 3, + "display": 7, + "none": 4, + "other": 3, + "visible": 1, + "row": 1, + "reliable": 1, + "determining": 3, + "been": 5, + "hidden": 12, + "directly": 2, + "using": 5, + "offsets": 1, + "don": 5, + "safety": 1, + "goggles": 1, + "bug": 3, + "#4512": 1, + "more": 6, + "information": 5, + "fails": 2, + "div.innerHTML": 7, + "tds": 6, + "isSupported": 7, + ".offsetHeight": 4, + ".style.display": 5, + "empty": 3, + "fail": 10, + "support.reliableHiddenOffsets": 1, + "explicit": 1, + "width": 32, + "margin": 8, + "right": 3, + "incorrectly": 1, + "computed": 1, + "based": 1, + "container.": 1, + "info": 2, + "#3333": 1, + "Fails": 2, + "Feb": 1, + "Bug": 1, + "getComputedStyle": 3, + "returns": 1, + "wrong": 1, + "window.getComputedStyle": 6, + "marginDiv": 5, + "marginDiv.style.width": 1, + "marginDiv.style.marginRight": 1, + "div.style.width": 2, + "support.reliableMarginRight": 1, + "parseInt": 12, + "marginRight": 2, + ".marginRight": 2, + "div.style.zoom": 2, + "natively": 1, + "block": 4, + "level": 3, + "act": 1, + "inline": 3, + "setting": 2, + "their": 3, + "giving": 1, + "layout": 2, + "div.style.padding": 1, + "div.style.border": 1, + "div.style.overflow": 2, + "div.style.display": 2, + "support.inlineBlockNeedsLayout": 1, + "div.offsetWidth": 2, + "shrink": 1, + "wrap": 2, + "children": 3, + "support.shrinkWrapBlocks": 1, + "div.style.cssText": 1, + "outer": 2, + "div.firstChild": 3, + "inner": 2, + "outer.firstChild": 1, + "td": 3, + "outer.nextSibling.firstChild.firstChild": 1, + "offsetSupport": 2, + "doesNotAddBorder": 1, + "inner.offsetTop": 4, + "doesAddBorderForTableAndCells": 1, + "td.offsetTop": 1, + "inner.style.position": 2, + "inner.style.top": 2, + "safari": 1, + "subtracts": 1, + "border": 7, + "here": 1, + "which": 8, + "offsetSupport.fixedPosition": 1, + "outer.style.overflow": 1, + "outer.style.position": 1, + "offsetSupport.subtractsBorderForOverflowNotVisible": 1, + "offsetSupport.doesNotIncludeMarginInBodyOffset": 1, + "body.offsetTop": 1, + "div.style.marginTop": 1, + "support.pixelMargin": 1, + "marginTop": 3, + ".marginTop": 1, + "container.style.zoom": 2, + "body.removeChild": 1, + "rbrace": 1, + "rmultiDash": 3, + "Z": 6, + "Please": 1, + "caution": 1, + "uuid": 2, + "Unique": 1, + "each": 17, + "page": 1, + "Non": 3, + "digits": 3, + "rinlinejQuery": 1, + "expando": 14, + "jQuery.fn.jquery": 1, + "Math.random": 2, + "D/g": 2, + "following": 1, + "uncatchable": 1, + "you": 1, + "attempt": 2, + "them.": 1, + "noData": 3, + "Ban": 1, + "except": 1, + "Flash": 1, + "handle": 15, + "expandos": 2, + "hasData": 2, + "elem.nodeType": 8, + "jQuery.cache": 3, + "jQuery.expando": 12, + "isEmptyDataObject": 3, + "pvt": 8, + "jQuery.acceptData": 2, + "privateCache": 1, + "thisCache": 15, + "internalKey": 12, + "getByName": 3, + "We": 6, + "nodes": 14, + "JS": 7, + "differently": 1, + "because": 1, + "IE6": 1, + "internal": 8, + "order": 1, + "collisions": 1, + "between": 1, + "user": 1, + "defined": 3, + "data.": 1, + "thisCache.data": 3, + "Users": 1, + "should": 1, + "inspect": 1, + "jQuery.data": 15, + "undocumented": 1, + "subject": 1, + "change.": 1, + "But": 1, + "anyone": 1, + "listen": 1, + "No.": 1, + "isEvents": 1, + "privateCache.events": 1, + "both": 2, + "converted": 2, + "camel": 2, + "names": 2, + "Try": 4, + "find": 7, + "camelCased": 1, + "removeData": 8, + "Reference": 1, + "isNode": 11, + "entry": 1, + "purpose": 1, + "continuing": 1, + ".data": 3, + "Support": 1, + "space": 1, + "separated": 1, + "keys": 11, + "jQuery.isArray": 1, + "manipulation": 1, + "split": 4, + "cased": 1, + "spaces": 3, + "unless": 2, + "name.split": 1, + "name.length": 1, + "want": 1, + "let": 1, + "destroyed": 2, + "jQuery.isEmptyObject": 1, + "Don": 1, + "care": 1, + "Ensure": 1, + "#10080": 1, + "jQuery.support.deleteExpando": 3, + "cache.setInterval": 1, + "eliminate": 2, + "node": 23, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "lookups": 2, "entries": 2, "longer": 2, "exist": 2, +<<<<<<< HEAD "does": 9, "us": 2, "nor": 2, @@ -29552,11 +37338,22 @@ "only.": 2, "_data": 3, "determining": 3, +======= + "us": 2, + "nor": 2, + "removeAttribute": 3, + "Document": 2, + "these": 2, + "elem.removeAttribute": 6, + "only.": 2, + "_data": 3, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "acceptData": 3, "elem.nodeName": 2, "jQuery.noData": 2, "elem.nodeName.toLowerCase": 2, "elem.getAttribute": 7, +<<<<<<< HEAD ".attributes": 2, "attr.length": 2, ".name": 3, @@ -29569,10 +37366,30 @@ "Try": 4, "fetch": 4, "internally": 5, +======= + "parts": 28, + "part": 8, + "jQuery._data": 2, + "elem.attributes": 1, + "attr.length": 2, + ".name": 3, + "name.indexOf": 2, + "name.substring": 2, + "dataAttr": 6, + "multiple": 7, + "this.each": 42, + "key.split": 2, + "this.triggerHandler": 6, + "fetch": 4, + "stored": 4, + "this.data": 5, + "self.triggerHandler": 2, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "jQuery.removeData": 2, "nothing": 2, "found": 10, "HTML5": 3, +<<<<<<< HEAD "attribute": 5, "key.replace": 2, "rmultiDash": 3, @@ -29581,6 +37398,15 @@ "rbrace.test": 2, "jQuery.parseJSON": 2, "isn": 2, +======= + "key.replace": 2, + ".toLowerCase": 7, + "jQuery.isNumeric": 1, + "rbrace.test": 2, + "jQuery.parseJSON": 2, + "isn": 2, + "optgroup": 5, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "option.selected": 2, "jQuery.support.optDisabled": 2, "option.disabled": 2, @@ -29588,10 +37414,18 @@ "option.parentNode.disabled": 2, "jQuery.nodeName": 3, "option.parentNode": 2, +<<<<<<< HEAD "specific": 2, "We": 6, "get/set": 2, "attributes": 14, +======= + "Get": 4, + "specific": 2, + ".val": 5, + "get/set": 2, + "text": 14, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "comment": 3, "nType": 8, "jQuery.attrFn": 2, @@ -29599,6 +37433,7 @@ "prop": 24, "supported": 2, "jQuery.prop": 2, +<<<<<<< HEAD "hooks": 14, "notxml": 8, "jQuery.isXMLDoc": 2, @@ -29614,10 +37449,25 @@ "certain": 2, "characters": 6, "rinvalidChar.test": 1, +======= + "notxml": 8, + "jQuery.isXMLDoc": 2, + "All": 1, + "lowercase": 1, + "Grab": 1, + "necessary": 1, + "hook": 1, + "hooks": 14, + "jQuery.attrHooks": 2, + "rboolean.test": 4, + "boolHook": 3, + "nodeHook": 1, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "jQuery.removeAttr": 2, "hooks.set": 2, "elem.setAttribute": 2, "hooks.get": 2, +<<<<<<< HEAD "Non": 3, "existent": 2, "normalize": 2, @@ -29632,6 +37482,35 @@ "tabIndex": 4, "readOnly": 2, "htmlFor": 2, +======= + "existent": 2, + "normalize": 2, + "removeAttr": 5, + "propName": 8, + "attrNames": 3, + "isBool": 4, + "value.toLowerCase": 2, + "rspace": 1, + "attrNames.length": 1, + "jQuery.propFix": 2, + "#9699": 1, + "explanation": 1, + "approach": 1, + "removal": 1, + "do": 15, + "#10870": 1, + "jQuery.attr": 2, + "getSetAttribute": 3, + "corresponding": 2, + "attrHooks": 3, + "changed": 3, + "button": 24, + "tabIndex": 4, + "readOnly": 2, + "htmlFor": 2, + "class": 5, + "className": 4, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "maxLength": 2, "cellSpacing": 2, "cellPadding": 2, @@ -29640,6 +37519,7 @@ "useMap": 2, "frameBorder": 2, "contentEditable": 2, +<<<<<<< HEAD "auto": 3, "&": 13, "getData": 3, @@ -49932,172 +57812,14584 @@ "weapon": 1, "WEAPON_MINIGUN": 1, "Kick": 1 +======= + "tabindex": 4, + "height": 25, + "auto": 3, + "href": 9, + "encoding": 26, + "mouseenter": 9, + "mouseleave": 9, + "mouseover": 12, + "mouseout": 12, + "**": 1, + "getData": 3, + "setData": 3, + "changeData": 3, + "click": 11, + "focus": 7, + "blur": 8, + "attrChange": 4, + "attrName": 4, + "relatedNode": 4, + "srcElement": 5, + "altKey": 4, + "bubbles": 4, + "cancelable": 4, + "ctrlKey": 6, + "currentTarget": 4, + "eventPhase": 4, + "metaKey": 5, + "relatedTarget": 6, + "shiftKey": 4, + "timeStamp": 1, + "view": 4, + "char": 2, + "charCode": 7, + "keyCode": 6, + "buttons": 1, + "clientX": 6, + "clientY": 5, + "fromElement": 6, + "offsetX": 4, + "offsetY": 4, + "pageX": 4, + "pageY": 4, + "screenX": 4, + "screenY": 4, + "toElement": 5, + "focusin": 9, + "focusout": 11, + "form": 12, + "window.Modernizr": 1, + "Modernizr": 12, + "enableClasses": 3, + "docElement": 1, + "document.documentElement": 2, + "mod": 12, + "modElem": 2, + "mStyle": 2, + "modElem.style": 1, + "inputElem": 6, + "smile": 4, + ".toString": 3, + "prefixes": 2, + "omPrefixes": 1, + "cssomPrefixes": 2, + "omPrefixes.split": 1, + "domPrefixes": 3, + "omPrefixes.toLowerCase": 1, + "ns": 1, + "inputs": 3, + "classes": 1, + "classes.slice": 1, + "featureName": 5, + "testing": 1, + "injectElementWithStyles": 9, + "rule": 5, + "testnames": 3, + "fakeBody": 4, + "while": 53, + "node.id": 1, + ".join": 14, + "div.id": 1, + "fakeBody.appendChild": 1, + "//avoid": 1, + "crashing": 1, + "background": 56, + "image": 5, + "fakeBody.style.background": 1, + "docElement.appendChild": 2, + "fakeBody.parentNode.removeChild": 1, + "div.parentNode.removeChild": 1, + "testMediaQuery": 2, + "mq": 3, + "matchMedia": 3, + "window.matchMedia": 1, + "window.msMatchMedia": 1, + ".matches": 1, + "bool": 30, + "node.currentStyle": 2, + "isEventSupported": 5, + "TAGNAMES": 2, + "element.setAttribute": 3, + "element.removeAttribute": 2, + "_hasOwnProperty": 2, + ".hasOwnProperty": 2, + "hasOwnProperty": 5, + "_hasOwnProperty.call": 2, + "object.constructor.prototype": 1, + "Function.prototype.bind": 2, + "bind": 3, + "TypeError": 2, + "slice.call": 3, + "F.prototype": 1, + "target.prototype": 1, + "result": 9, + "target.apply": 2, + "args.concat": 2, + "setCss": 7, + "str": 4, + "mStyle.cssText": 1, + "setCssAll": 2, + "str1": 6, + "str2": 4, + "prefixes.join": 3, + "contains": 8, + "substr": 2, + ".indexOf": 2, + "testProps": 3, + "props": 21, + "prefixed": 7, + "testDOMProps": 2, + "item": 4, + "item.bind": 1, + "testPropsAll": 17, + "ucProp": 5, + "prop.charAt": 1, + "prop.substr": 1, + "cssomPrefixes.join": 1, + "elem.getContext": 2, + ".getContext": 8, + ".fillText": 1, + "window.WebGLRenderingContext": 1, + "window.DocumentTouch": 1, + "DocumentTouch": 1, + "node.offsetTop": 1, + "window.postMessage": 1, + "window.openDatabase": 1, + "history.pushState": 1, + "mStyle.backgroundColor": 3, + "url": 23, + "mStyle.background": 1, + ".style.textShadow": 1, + "mStyle.opacity": 1, + "str3": 2, + "str1.length": 1, + "mStyle.backgroundImage": 1, + "docElement.style": 1, + "node.offsetLeft": 1, + "node.offsetHeight": 2, + "document.styleSheets": 1, + "document.styleSheets.length": 1, + "cssText": 4, + "style.cssRules": 3, + ".cssText": 2, + "style.cssText": 1, + "/src/i.test": 1, + "cssText.indexOf": 1, + "rule.split": 1, + "elem.canPlayType": 10, + "Boolean": 2, + "bool.ogg": 2, + "bool.h264": 1, + "bool.webm": 1, + "bool.mp3": 1, + "bool.wav": 1, + "bool.m4a": 1, + "localStorage.setItem": 1, + "localStorage.removeItem": 1, + "sessionStorage.setItem": 1, + "sessionStorage.removeItem": 1, + "window.Worker": 1, + "window.applicationCache": 1, + "document.createElementNS": 6, + "ns.svg": 4, + ".createSVGRect": 1, + "div.firstChild.namespaceURI": 1, + "/SVGAnimate/.test": 1, + "toString.call": 2, + "/SVGClipPath/.test": 1, + "webforms": 2, + "len": 11, + "props.length": 2, + "attrs.list": 2, + "window.HTMLDataListElement": 1, + "inputElemType": 5, + "defaultView": 2, + "inputElem.setAttribute": 1, + "inputElem.type": 1, + "inputElem.value": 2, + "inputElem.style.cssText": 1, + "range": 2, + "inputElem.style.WebkitAppearance": 1, + "document.defaultView": 1, + "defaultView.getComputedStyle": 2, + ".WebkitAppearance": 1, + "inputElem.offsetHeight": 1, + "docElement.removeChild": 1, + "tel": 2, + "email": 2, + "inputElem.checkValidity": 2, + "feature": 12, + "feature.toLowerCase": 2, + "classes.push": 1, + "Modernizr.input": 1, + "Modernizr.addTest": 2, + "docElement.className": 2, + "chaining.": 1, + "window.html5": 2, + "reSkip": 1, + "map": 7, + "textarea": 8, + "iframe": 3, + "/i": 22, + "saveClones": 1, + "code": 2, + "fieldset": 1, + "h1": 5, + "h2": 5, + "h3": 3, + "h4": 3, + "h5": 1, + "h6": 1, + "img": 1, + "label": 2, + "li": 19, + "link": 2, + "ol": 1, + "p": 110, + "param": 3, + "q": 34, + "script": 7, + "span": 1, + "strong": 1, + "tfoot": 1, + "th": 1, + "thead": 2, + "tr": 23, + "ul": 1, + "supportsHtml5Styles": 5, + "supportsUnknownElements": 3, + "a.innerHTML": 7, + "//if": 2, + "implemented": 1, + "assume": 1, + "Styles": 1, + "Chrome": 2, + "additional": 1, + "solve": 1, + "node.hidden": 1, + ".display": 1, + "a.childNodes.length": 1, + "frag.cloneNode": 1, + "frag.createDocumentFragment": 1, + "frag.createElement": 2, + "addStyleSheet": 2, + "ownerDocument": 9, + "ownerDocument.createElement": 3, + "ownerDocument.getElementsByTagName": 1, + "ownerDocument.documentElement": 1, + "p.innerHTML": 1, + "parent.insertBefore": 1, + "p.lastChild": 1, + "parent.firstChild": 1, + "getElements": 2, + "html5.elements": 1, + "elements.split": 1, + "shivMethods": 2, + "docCreateElement": 5, + "docCreateFragment": 2, + "ownerDocument.createDocumentFragment": 2, + "nodeName": 20, + "//abort": 1, + "shiv": 1, + "html5.shivMethods": 1, + ".cloneNode": 4, + "saveClones.test": 1, + "node.canHaveChildren": 1, + "reSkip.test": 1, + "frag.appendChild": 1, + "Function": 3, + "html5": 3, + "shivDocument": 3, + "shived": 5, + "ownerDocument.documentShived": 2, + "html5.shivCSS": 1, + "options.elements": 1, + "options.shivCSS": 1, + "options.shivMethods": 1, + "Modernizr._version": 1, + "Modernizr._prefixes": 1, + "Modernizr._domPrefixes": 1, + "Modernizr._cssomPrefixes": 1, + "Modernizr.mq": 1, + "Modernizr.hasEvent": 1, + "Modernizr.testProp": 1, + "Modernizr.testAllProps": 1, + "Modernizr.testStyles": 1, + "Modernizr.prefixed": 1, + "docElement.className.replace": 1, + "js": 1, + "classes.join": 1, + "this.document": 1, + "PEG.parser": 1, + "quote": 3, + "x": 33, + "result0": 264, + "result1": 81, + "result2": 77, + "parse_singleQuotedCharacter": 3, + "result1.push": 3, + "input.charCodeAt": 18, + "pos": 197, + "reportFailures": 64, + "matchFailed": 40, + "pos1": 63, + "offset": 21, + "chars": 1, + "chars.join": 1, + "pos0": 51, + "parse_simpleSingleQuotedCharacter": 2, + "parse_simpleEscapeSequence": 3, + "parse_zeroEscapeSequence": 3, + "parse_hexEscapeSequence": 3, + "parse_unicodeEscapeSequence": 3, + "parse_eolEscapeSequence": 3, + "pos2": 22, + "parse_eolChar": 6, + "input.length": 9, + "input.charAt": 21, + "char_": 9, + "parse_class": 1, + "result3": 35, + "result4": 12, + "result5": 4, + "parse_classCharacterRange": 3, + "parse_classCharacter": 5, + "result2.push": 1, + "parse___": 2, + "inverted": 4, + "partsConverted": 2, + "part.data": 1, + "rawText": 5, + "part.rawText": 1, + "ignoreCase": 1, + "begin": 1, + "begin.data.charCodeAt": 1, + "end.data.charCodeAt": 1, + "this.SyntaxError": 2, + "begin.rawText": 2, + "end.rawText": 2, + "begin.data": 1, + "end.data": 1, + "parse_bracketDelimitedCharacter": 2, + "quoteForRegexpClass": 1, + "parse_simpleBracketDelimitedCharacter": 2, + "parse_digit": 3, + "recognize": 1, + "input.substr": 9, + "parse_hexDigit": 7, + "String.fromCharCode": 4, + "parse_eol": 4, + "eol": 2, + "parse_letter": 1, + "parse_lowerCaseLetter": 2, + "parse_upperCaseLetter": 2, + "parse_whitespace": 3, + "parse_comment": 3, + "result0.push": 1, + "parse_singleLineComment": 2, + "parse_multiLineComment": 2, + "u2029": 2, + "x0B": 1, + "uFEFF": 1, + "u1680": 1, + "u180E": 1, + "u2000": 1, + "u200A": 1, + "u202F": 1, + "u205F": 1, + "u3000": 1, + "cleanupExpected": 2, + "expected": 12, + "expected.sort": 1, + "lastExpected": 3, + "cleanExpected": 2, + "expected.length": 4, + "cleanExpected.push": 1, + "computeErrorPosition": 2, + "line": 14, + "column": 8, + "seenCR": 5, + "Math.max": 10, + "rightmostFailuresPos": 2, + "ch": 58, + "parseFunctions": 1, + "startRule": 1, + "errorPosition": 1, + "rightmostFailuresExpected": 1, + "errorPosition.line": 1, + "errorPosition.column": 1, + "toSource": 1, + "this._source": 1, + "result.SyntaxError": 1, + "buildMessage": 2, + "expectedHumanized": 5, + "foundHumanized": 3, + "switch": 30, + "expected.slice": 1, + "this.name": 7, + "this.expected": 1, + "this.found": 1, + "this.message": 3, + "this.offset": 2, + "this.line": 3, + "this.column": 1, + "result.SyntaxError.prototype": 1, + "Error.prototype": 1, + "steelseries": 10, + "n.charAt": 1, + "n.substring": 1, + "i.substring": 3, + "this.color": 1, + "ui": 31, + "/255": 1, + "y": 101, + "t.getRed": 4, + "v": 135, + "t.getGreen": 4, + "t.getBlue": 4, + "t.getAlpha": 4, + "i.getRed": 1, + "i.getGreen": 1, + "i.getBlue": 1, + "o": 322, + "i.getAlpha": 1, + "*f": 2, + "w/r": 1, + "p/r": 1, + "c": 775, + "s/r": 1, + "h": 499, + "o/r": 1, + "e*u": 1, + ".toFixed": 3, + "l*u": 1, + "c*u": 1, + "h*u": 1, + "vr": 20, + "stop": 7, + "color": 4, + "Math.floor": 26, + "Math.log10": 1, + "n/Math.pow": 1, + "": 1, + "e=": 21, + "o=": 13, + "beginPath": 12, + "moveTo": 10, + "lineTo": 22, + "quadraticCurveTo": 4, + "closePath": 8, + "stroke": 7, + "i=": 31, + "createElement": 3, + "canvas": 22, + "width=": 17, + "height=": 17, + "ii": 29, + "u=": 12, + "getContext": 26, + "2d": 26, + "ft": 70, + "1": 97, + "fillStyle=": 13, + "rect": 3, + "0": 220, + "fill": 10, + "t=": 19, + "getImageData": 1, + "2": 66, + "3": 13, + "wt": 26, + "r=": 18, + "32": 1, + "62": 1, + "f=": 13, + "84": 1, + "s=": 12, + "94": 1, + "ar": 20, + "255": 3, + "max": 1, + "min": 2, + ".5": 7, + "u/": 3, + "/u": 3, + "f/": 1, + "vt": 50, + "n*6": 2, + "i*": 3, + "h*t": 1, + "*t": 3, + "%": 26, + "f*255": 1, + "u*255": 1, + "r*255": 1, + "st": 59, + "n/255": 1, + "t/255": 1, + "i/255": 1, + "Math.min": 5, + "f/r": 1, + "/f": 3, + "k": 302, + "<0?0:n>": 1, + "si": 23, + "ti": 39, + "Math.round": 7, + "/r": 1, + "u*r": 1, + "ni": 30, + "tt": 53, + "ei": 26, + "ot": 43, + "i.gaugeType": 6, + "steelseries.GaugeType.TYPE4": 2, + "i.size": 6, + "i.minValue": 10, + "i.maxValue": 10, + "bf": 6, + "i.niceScale": 10, + "i.threshold": 10, + "/2": 25, + "i.section": 8, + "i.area": 4, + "lu": 10, + "i.titleString": 10, + "au": 10, + "i.unitString": 10, + "hu": 11, + "i.frameDesign": 10, + "steelseries.FrameDesign.METAL": 7, + "wu": 9, + "i.frameVisible": 10, + "bt": 42, + "i.backgroundColor": 10, + "steelseries.BackgroundColor.DARK_GRAY": 7, + "bu": 11, + "i.backgroundVisible": 10, + "pt": 48, + "i.pointerType": 4, + "steelseries.PointerType.TYPE1": 3, + "i.pointerColor": 4, + "steelseries.ColorDef.RED": 7, + "ee": 2, + "i.knobType": 4, + "steelseries.KnobType.STANDARD_KNOB": 14, + "fi": 26, + "i.knobStyle": 4, + "steelseries.KnobStyle.SILVER": 4, + "i.lcdColor": 8, + "steelseries.LcdColor.STANDARD": 9, + "i.lcdVisible": 8, + "eu": 13, + "i.lcdDecimals": 8, + "ye": 2, + "i.digitalFont": 8, + "pe": 2, + "i.fractionalScaleDecimals": 4, + "br": 19, + "i.ledColor": 10, + "steelseries.LedColor.RED_LED": 7, + "ru": 14, + "i.ledVisible": 10, + "vf": 5, + "i.thresholdVisible": 8, + "kr": 17, + "i.minMeasuredValueVisible": 8, + "dr": 16, + "i.maxMeasuredValueVisible": 8, + "cf": 7, + "i.foregroundType": 6, + "steelseries.ForegroundType.TYPE1": 5, + "af": 5, + "i.foregroundVisible": 10, + "oe": 2, + "i.labelNumberFormat": 10, + "steelseries.LabelNumberFormat.STANDARD": 5, + "yr": 17, + "i.playAlarm": 10, + "uf": 5, + "i.alarmSound": 10, + "fe": 2, + "i.customLayer": 4, + "le": 1, + "i.tickLabelOrientation": 4, + "steelseries.GaugeType.TYPE1": 4, + "steelseries.TickLabelOrientation.TANGENT": 2, + "steelseries.TickLabelOrientation.NORMAL": 2, + "wr": 18, + "i.trendVisible": 4, + "hr": 17, + "i.trendColors": 4, + "steelseries.LedColor.GREEN_LED": 2, + "steelseries.LedColor.CYAN_LED": 2, + "sr": 21, + "i.useOdometer": 2, + "i.odometerParams": 2, + "wf": 4, + "i.odometerUseValue": 2, + "ki": 21, + "r.createElement": 11, + "ki.setAttribute": 2, + "yf": 3, + "ri": 24, + "ht": 34, + "ef": 5, + "steelseries.TrendState.OFF": 4, + "lr": 19, + "f*.06": 1, + "cr": 20, + "f*.29": 19, + "er": 19, + "f*.36": 4, + "ci": 29, + "et": 45, + "gi": 26, + "rr": 21, + "*lt": 9, + "r.getElementById": 7, + "u.save": 7, + "u.clearRect": 5, + "u.canvas.width": 7, + "u.canvas.height": 7, + "g": 441, + "s/2": 2, + "k/2": 1, + "pf": 4, + ".6*s": 1, + "ne": 2, + ".4*k": 1, + "pr": 16, + "s/10": 1, + "ce": 6, + "ae": 2, + "hf": 4, + "k*.13": 2, + "bi": 27, + "s*.4": 1, + "sf": 5, + "rf": 5, + "k*.57": 1, + "tf": 5, + "ve": 3, + "k*.61": 1, + "Math.PI/2": 40, + "ue": 1, + "Math.PI/180": 5, + "ff": 5, + "ir": 23, + "nr": 22, + "ai": 21, + "yt": 32, + "fr": 21, + "oi": 23, + "lf": 5, + "re": 2, + "ai/": 2, + "h/vt": 1, + "*vt": 4, + "Math.ceil": 63, + "b/vt": 1, + "vt/": 3, + "ot.type": 10, + "Math.PI": 13, + "at/yt": 4, + "*Math.PI": 10, + "*ue": 1, + "ci/2": 1, + "wi": 24, + "nf": 7, + "wi.getContext": 2, + "di": 22, + "ut": 59, + "di.getContext": 2, + "fu": 13, + "hi": 15, + "f*.093457": 10, + "uu": 13, + "hi.getContext": 6, + "gt": 32, + "nu": 11, + "gt.getContext": 3, + "iu": 14, + "f*.028037": 6, + "se": 1, + "iu.getContext": 1, + "gr": 12, + "he": 1, + "gr.getContext": 1, + "vi": 16, + "tu": 13, + "vi.getContext": 2, + "yi": 17, + "ou": 13, + "yi.getContext": 2, + "pi": 24, + "kt": 24, + "pi.getContext": 2, + "pu": 9, + "li.getContext": 6, + "gu": 9, + "du": 10, + "ku": 9, + "yu": 10, + "cu": 18, + "su": 12, + "tr.getContext": 1, + "kf": 3, + "u.textAlign": 2, + "u.strokeStyle": 2, + "ei.textColor": 2, + "u.fillStyle": 2, + "steelseries.LcdColor.STANDARD_GREEN": 4, + "u.shadowColor": 2, + "u.shadowOffsetX": 2, + "s*.007": 3, + "u.shadowOffsetY": 2, + "u.shadowBlur": 2, + "u.font": 2, + "u.fillText": 2, + "n.toFixed": 2, + "bi*.05": 1, + "hf*.5": 1, + "pr*.38": 1, + "bi*.9": 1, + "u.restore": 6, + "te": 2, + "n.save": 35, + "n.drawImage": 14, + "k*.037383": 11, + "s*.523364": 2, + "k*.130841": 1, + "s*.130841": 1, + "k*.514018": 2, + "s*.831775": 1, + "k*.831775": 1, + "s*.336448": 1, + "k*.803738": 2, + "s*.626168": 1, + "n.restore": 35, + "ie": 2, + "t.width": 2, + "f*.046728": 1, + "t.height": 2, + "t.width*.9": 4, + "t.getContext": 2, + "n.createLinearGradient": 17, + ".1": 18, + "t.height*.9": 6, + "i.addColorStop": 27, + ".3": 8, + ".59": 4, + "n.fillStyle": 36, + "n.beginPath": 39, + "n.moveTo": 37, + "t.width*.5": 4, + "n.lineTo": 33, + "t.width*.1": 2, + "n.closePath": 34, + "n.fill": 17, + "n.strokeStyle": 27, + "n.stroke": 31, + "vu": 10, + "": 1, + "": 1, + "n.lineWidth": 30, + "s*.035": 2, + "at/yt*t": 1, + "at/yt*h": 1, + "yt/at": 1, + "n.translate": 93, + "n.rotate": 53, + "n.arc": 6, + "s*.365": 2, + "n.lineWidth/2": 2, + "df": 3, + "bt.labelColor.setAlpha": 1, + "n.textAlign": 12, + "n.textBaseline": 10, + "s*.04": 1, + "n.font": 34, + "bt.labelColor.getRgbaColor": 2, + "lt*fr": 1, + "s*.38": 2, + "s*.35": 1, + "s*.355": 1, + "s*.36": 1, + "s*.3": 1, + "s*.1": 1, + "oi/2": 2, + "parseFloat": 30, + "b.toFixed": 1, + "c.toFixed": 2, + "le.type": 1, + "t.format": 7, + "n.fillText": 54, + "e.toFixed": 2, + "e.toPrecision": 1, + "n.frame": 22, + "n.background": 22, + "n.led": 20, + "n.pointer": 10, + "n.foreground": 22, + "n.trend": 4, + "n.odo": 2, + "rt": 45, + "uu.drawImage": 1, + "nu.drawImage": 3, + "se.drawImage": 1, + "steelseries.ColorDef.BLUE.dark.getRgbaColor": 6, + "he.drawImage": 1, + "steelseries.ColorDef.RED.medium.getRgbaColor": 6, + "ii.length": 2, + ".start": 12, + ".stop": 11, + ".color": 13, + "ui.length": 2, + "ct": 34, + "ut.save": 1, + "ut.translate": 3, + "ut.rotate": 1, + "ut.drawImage": 2, + "s*.475": 1, + "ut.restore": 1, + "steelseries.Odometer": 1, + "_context": 1, + "f*.075": 1, + "decimals": 1, + "wt.decimals": 1, + "wt.digits": 2, + "valueForeColor": 1, + "wt.valueForeColor": 1, + "valueBackColor": 1, + "wt.valueBackColor": 1, + "decimalForeColor": 1, + "wt.decimalForeColor": 1, + "decimalBackColor": 1, + "wt.decimalBackColor": 1, + "font": 1, + "wt.font": 1, + "tr.width": 1, + "nt": 75, + "bt.labelColor": 2, + "pt.type": 6, + "steelseries.TrendState.UP": 2, + "steelseries.TrendState.STEADY": 2, + "steelseries.TrendState.DOWN": 2, + "dt": 30, + "wi.width": 1, + "wi.height": 1, + "di.width": 1, + "di.height": 1, + "hi.width": 3, + "hi.height": 3, + "gt.width": 2, + "gt.height": 1, + "vi.width": 1, + "vi.height": 1, + "yi.width": 1, + "yi.height": 1, + "pi.width": 1, + "pi.height": 1, + "li.width": 3, + "li.height": 3, + "gf": 2, + "yf.repaint": 1, + "ur": 20, + "e3": 5, + "clearInterval": 6, + "this.setValue": 7, + "": 5, + "ki.pause": 1, + "ki.play": 1, + "this.repaint": 126, + "this.getValue": 7, + "this.setOdoValue": 1, + "this.getOdoValue": 1, + "this.setValueAnimated": 7, + "t.playing": 1, + "t.stop": 1, + "Tween": 11, + "Tween.regularEaseInOut": 6, + "t.onMotionChanged": 1, + "n.target._pos": 7, + "": 1, + "i.repaint": 1, + "t.start": 1, + "this.resetMinMeasuredValue": 4, + "this.resetMaxMeasuredValue": 4, + "this.setMinMeasuredValueVisible": 4, + "this.setMaxMeasuredValueVisible": 4, + "this.setMaxMeasuredValue": 3, + "this.setMinMeasuredValue": 3, + "this.setTitleString": 4, + "this.setUnitString": 4, + "this.setMinValue": 4, + "this.getMinValue": 3, + "this.setMaxValue": 3, + "this.getMaxValue": 4, + "this.setThreshold": 4, + "this.setArea": 1, + "foreground": 30, + "this.setSection": 4, + "this.setThresholdVisible": 4, + "this.setLcdDecimals": 3, + "this.setFrameDesign": 7, + "this.setBackgroundColor": 7, + "pointer": 28, + "this.setForegroundType": 5, + "this.setPointerType": 3, + "this.setPointerColor": 4, + "this.setLedColor": 5, + "led": 18, + "this.setLcdColor": 5, + "this.setTrend": 2, + "this.setTrendVisible": 2, + "trend": 2, + "odo": 1, + "u.drawImage": 22, + "cu.setValue": 1, + "of.state": 1, + "u.translate": 8, + "u.rotate": 4, + "u.canvas.width*.4865": 2, + "u.canvas.height*.105": 2, + "s*.006": 1, + "kt.clearRect": 1, + "kt.save": 1, + "kt.translate": 2, + "kt.rotate": 1, + "kt.drawImage": 1, + "kt.restore": 1, + "i.useSectionColors": 4, + "i.valueColor": 6, + "i.valueGradient": 4, + "i.useValueGradient": 4, + "yi.setAttribute": 2, + "e/2": 2, + "ut/2": 4, + "e/10": 3, + "ut*.13": 1, + "e*.4": 1, + "or/2": 1, + "e*.116822": 3, + "e*.485981": 3, + "s*.093457": 5, + "e*.53": 1, + "ut*.61": 1, + "s*.06": 1, + "s*.57": 1, + "dt.type": 4, + "l/Math.PI*180": 4, + "l/et": 8, + "Math.PI/3": 1, + "ft/2": 2, + "Math.PI/": 1, + "ai.getContext": 2, + "s*.060747": 2, + "s*.023364": 2, + "ri.getContext": 6, + "yt.getContext": 5, + "si.getContext": 4, + "ci/": 2, + "f/ht": 1, + "*ht": 8, + "h/ht": 1, + "ht/": 2, + "*kt": 5, + "angle": 1, + "*st": 1, + "n.value": 4, + "tu.drawImage": 1, + "gr.drawImage": 3, + "at.getImageData": 1, + "at.drawImage": 1, + "bt.length": 4, + "ii.push": 1, + "Math.abs": 19, + "ai.width": 1, + "ai.height": 1, + "ri.width": 3, + "ri.height": 3, + "yt.width": 2, + "yt.height": 2, + "si.width": 2, + "si.height": 2, + "s*.085": 1, + "e*.35514": 2, + ".107476*ut": 1, + ".897195*ut": 1, + "t.addColorStop": 6, + ".22": 1, + ".76": 1, + "s*.075": 1, + ".112149*ut": 1, + ".892523*ut": 1, + "r.addColorStop": 6, + "e*.060747": 2, + "e*.023364": 2, + "n.createRadialGradient": 4, + ".030373*e": 1, + "u.addColorStop": 14, + "i*kt": 1, + "n.rect": 4, + "n.canvas.width": 3, + "n.canvas.height": 3, + "n.canvas.width/2": 6, + "n.canvas.height/2": 4, + "u.createRadialGradient": 1, + "t.light.getRgbaColor": 2, + "t.dark.getRgbaColor": 2, + "ni.textColor": 2, + "e*.007": 5, + "oi*.05": 1, + "or*.5": 1, + "cr*.38": 1, + "oi*.9": 1, + "ei.labelColor.setAlpha": 1, + "e*.04": 1, + "ei.labelColor.getRgbaColor": 2, + "st*di": 1, + "e*.28": 1, + "e*.1": 1, + "e*.0375": 1, + "h.toFixed": 3, + "df.type": 1, + "u.toFixed": 2, + "u.toPrecision": 1, + "kf.repaint": 1, + "": 3, + "yi.pause": 1, + "yi.play": 1, + "ti.playing": 1, + "ti.stop": 1, + "ti.onMotionChanged": 1, + "t.repaint": 4, + "ti.start": 1, + "this.setValueColor": 3, + "this.setSectionActive": 2, + "this.setGradient": 2, + "this.setGradientActive": 2, + "useGradient": 2, + "n/lt*": 1, + "vi.getEnd": 1, + "vi.getStart": 1, + "s/c": 1, + "vi.getColorAt": 1, + ".getRgbaColor": 3, + "": 1, + "e.medium.getHexColor": 1, + "i.medium.getHexColor": 1, + "n*kt": 1, + "pu.state": 1, + "i.orientation": 2, + "steelseries.Orientation.NORTH": 2, + "hi.setAttribute": 2, + "steelseries.GaugeType.TYPE5": 1, + "kt/at": 2, + "f.clearRect": 2, + "f.canvas.width": 3, + "f.canvas.height": 3, + "h/2": 1, + "k*.733644": 1, + ".455*h": 1, + ".51*k": 1, + "bi/": 2, + "l/ot": 1, + "*ot": 2, + "d/ot": 1, + "ot/": 1, + "ui.getContext": 4, + "u*.093457": 10, + "ii.getContext": 5, + "st.getContext": 2, + "u*.028037": 6, + "hr.getContext": 1, + "er.getContext": 1, + "fi.getContext": 4, + "kr.type": 1, + "ft.type": 1, + "h*.44": 3, + "k*.8": 1, + "k*.16": 1, + "h*.2": 2, + "k*.446666": 2, + "h*.8": 1, + "u*.046728": 1, + "h*.035": 1, + "kt/at*t": 1, + "kt/at*l": 1, + "at/kt": 1, + "h*.365": 2, + "it.labelColor.getRgbaColor": 4, + "vertical": 1, + ".046728*h": 1, + "n.measureText": 2, + ".width": 2, + "k*.4": 1, + "h*.3": 1, + "k*.47": 1, + "it.labelColor.setAlpha": 1, + "steelseries.Orientation.WEST": 6, + "h*.04": 1, + "ht*yi": 1, + "h*.41": 1, + "h*.415": 1, + "h*.42": 1, + "h*.48": 1, + "h*.0375": 1, + "d.toFixed": 1, + "f.toFixed": 1, + "i.toFixed": 2, + "i.toPrecision": 1, + "u/2": 5, + "cr.drawImage": 3, + "ar.drawImage": 1, + "or.drawImage": 1, + "or.restore": 1, + "rr.drawImage": 1, + "rr.restore": 1, + "gt.length": 2, + "p.save": 2, + "p.translate": 8, + "p.rotate": 4, + "p.restore": 3, + "ni.length": 2, + "p.drawImage": 1, + "h*.475": 1, + "k*.32": 1, + "h*1.17": 2, + "it.labelColor": 2, + "ut.type": 6, + "ui.width": 2, + "ui.height": 2, + "ii.width": 2, + "ii.height": 2, + "st.width": 1, + "st.height": 1, + "fi.width": 2, + "fi.height": 2, + "wu.repaint": 1, + "": 2, + "hi.pause": 1, + "hi.play": 1, + "dt.playing": 2, + "dt.stop": 2, + "dt.onMotionChanged": 2, + "": 1, + "dt.start": 2, + "f.save": 5, + "f.drawImage": 9, + "f.translate": 10, + "f.rotate": 5, + "f.canvas.width*.4865": 2, + "f.canvas.height*.27": 2, + "f.restore": 5, + "h*.006": 1, + "h*1.17/2": 1, + "et.clearRect": 1, + "et.save": 1, + "et.translate": 2, + "et.rotate": 1, + "et.drawImage": 1, + "et.restore": 1, + "i.width": 6, + "i.height": 6, + "fi.setAttribute": 2, + "l.type": 26, + "y.clearRect": 2, + "y.canvas.width": 3, + "y.canvas.height": 3, + "*.05": 4, + "f/2": 13, + "it/2": 2, + ".053": 1, + ".038": 1, + "*u": 1, + "u/22": 2, + ".89*f": 2, + "u/10": 2, + "ei/": 1, + "e/ut": 1, + "*ut": 2, + "s/ut": 1, + "ut/": 1, + "kt.getContext": 2, + "rt.getContext": 2, + "dt.getContext": 1, + "ni.getContext": 4, + "lt.textColor": 2, + "n.shadowColor": 2, + "n.shadowOffsetX": 4, + "u*.003": 2, + "n.shadowOffsetY": 4, + "n.shadowBlur": 4, + "u*.004": 1, + "u*.007": 2, + "u*.009": 1, + "f*.571428": 8, + "u*.88": 2, + "u*.055": 2, + "f*.7": 2, + "f*.695": 4, + "f*.18": 4, + "u*.22": 3, + "u*.15": 2, + "t.toFixed": 2, + "i.getContext": 2, + "t.save": 2, + "t.createLinearGradient": 2, + "i.height*.9": 6, + "t.fillStyle": 2, + "t.beginPath": 4, + "t.moveTo": 4, + "i.height*.5": 2, + "t.lineTo": 8, + "i.width*.9": 6, + "t.closePath": 4, + "i.width*.5": 2, + "t.fill": 2, + "t.strokeStyle": 2, + "t.stroke": 2, + "t.restore": 2, + "w.labelColor.setAlpha": 1, + "f*.1": 5, + "w.labelColor.getRgbaColor": 2, + ".34*f": 2, + ".36*f": 6, + ".33*f": 2, + ".32*f": 2, + "u*.12864": 3, + "u*.856796": 1, + "u*.7475": 1, + "c/": 2, + ".65*u": 1, + ".63*u": 3, + ".66*u": 1, + ".67*u": 1, + "f*.142857": 4, + "f*.871012": 2, + "f*.19857": 1, + "f*.82": 1, + "v/": 1, + "tickCounter": 4, + "currentPos": 20, + "tickCounter*a": 2, + "r.toFixed": 8, + "f*.28": 6, + "r.toPrecision": 4, + "u*.73": 3, + "ui/2": 1, + "vi.drawImage": 2, + "yi.drawImage": 2, + "hr.drawImage": 2, + "k.save": 1, + ".856796": 2, + ".7475": 2, + ".12864": 2, + "u*i": 1, + "u*r*": 1, + "bt/": 1, + "k.translate": 2, + "f*.365": 2, + "nt/2": 2, + ".871012": 3, + ".82": 2, + ".142857": 5, + ".19857": 6, + "f*r*bt/": 1, + "f*": 5, + "u*.58": 1, + "k.drawImage": 3, + "k.restore": 1, + "kt.width": 1, + "b*.093457": 2, + "kt.height": 1, + "d*.093457": 2, + "rt.width": 1, + "rt.height": 1, + "ni.width": 2, + "ni.height": 2, + "hu.repaint": 1, + "w.labelColor": 1, + "i*.12864": 2, + "i*.856796": 2, + "i*.7475": 1, + "t*.871012": 1, + "t*.142857": 8, + "t*.82": 1, + "t*.19857": 1, + "steelseries.BackgroundColor.CARBON": 2, + "steelseries.BackgroundColor.PUNCHED_SHEET": 2, + "steelseries.BackgroundColor.STAINLESS": 2, + "steelseries.BackgroundColor.BRUSHED_STAINLESS": 2, + "steelseries.BackgroundColor.TURNED": 2, + "r.setAlpha": 8, + ".05": 2, + "p.addColorStop": 4, + "r.getRgbaColor": 8, + ".15": 2, + ".48": 7, + ".49": 4, + "n.fillRect": 16, + "t*.435714": 4, + "i*.435714": 4, + "i*.142857": 1, + "b.addColorStop": 4, + ".69": 1, + ".7": 1, + ".4": 2, + "t*.007142": 4, + "t*.571428": 2, + "i*.007142": 4, + "i*.571428": 2, + "t*.45": 4, + "t*.114285": 1, + "t/2": 1, + "i*.0486/2": 1, + "i*.053": 1, + "i*.45": 4, + "i*.114285": 1, + "i/2": 1, + "t*.025": 1, + "t*.053": 1, + "ut.addColorStop": 2, + "wt.medium.getRgbaColor": 3, + "wt.light.getRgbaColor": 2, + "i*.05": 2, + "t*.05": 2, + "ot.addColorStop": 2, + ".98": 1, + "Math.PI*.5": 2, + "f*.05": 2, + ".049*t": 8, + ".825*t": 9, + "n.bezierCurveTo": 42, + ".7975*t": 2, + ".0264*t": 4, + ".775*t": 3, + ".0013*t": 12, + ".85*t": 2, + ".8725*t": 3, + ".0365*t": 9, + ".8075*t": 4, + ".7925*t": 3, + ".0214*t": 13, + ".7875*t": 4, + ".7825*t": 5, + ".0189*t": 4, + ".785*t": 1, + ".8175*t": 2, + ".815*t": 1, + ".8125*t": 2, + ".8*t": 2, + ".0377*t": 2, + ".86*t": 4, + ".0415*t": 2, + ".845*t": 1, + ".0465*t": 2, + ".805*t": 2, + ".0113*t": 10, + ".0163*t": 7, + ".8025*t": 1, + ".8225*t": 3, + ".8425*t": 1, + ".03*t": 2, + ".115*t": 5, + ".1075*t": 2, + ".1025*t": 8, + ".0038*t": 2, + ".76*t": 4, + ".7675*t": 2, + ".7725*t": 6, + ".34": 1, + ".0516*t": 7, + ".8525*t": 2, + ".0289*t": 8, + ".875*t": 3, + ".044*t": 1, + ".0314*t": 5, + ".12*t": 4, + ".0875*t": 3, + ".79*t": 1, + "": 5, + "fi.pause": 1, + "fi.play": 1, + "yt.playing": 1, + "yt.stop": 1, + "yt.onMotionChanged": 1, + "t.setValue": 1, + "yt.start": 1, + "mminMeasuredValue": 1, + "": 1, + "setMaxValue=": 1, + "y.drawImage": 6, + "u*n": 2, + "u*i*": 2, + "at/": 1, + "f*.34": 3, + "gt.height/2": 2, + "f*i*at/": 1, + "u*.65": 2, + "ft/": 1, + "dt.width": 1, + "dt.height/2": 2, + ".8": 1, + ".14857": 1, + "f*i*ft/": 1, + "y.save": 1, + "y.restore": 1, + "oi.setAttribute": 2, + "v.clearRect": 2, + "v.canvas.width": 4, + "v.canvas.height": 4, + ".053*e": 1, + "e/22": 2, + "e/1.95": 1, + "u/vt": 1, + "s/vt": 1, + "g.width": 4, + "f*.121428": 2, + "g.height": 4, + "e*.012135": 2, + "f*.012135": 2, + "e*.121428": 2, + "g.getContext": 2, + "d.width": 4, + "d.height": 4, + "d.getContext": 2, + "pt.getContext": 2, + "ci.getContext": 1, + "kt.textColor": 2, + "f*.007": 2, + "f*.009": 1, + "e*.009": 1, + "e*.88": 2, + "e*.055": 2, + "e*.22": 3, + "e*.15": 2, + "k.labelColor.setAlpha": 1, + "k.labelColor.getRgbaColor": 5, + "e*.12864": 3, + "e*.856796": 3, + ".65*e": 1, + ".63*e": 3, + ".66*e": 1, + ".67*e": 1, + "g/": 1, + "tickCounter*h": 2, + "e*.73": 3, + "ti/2": 1, + "n.bargraphled": 4, + "nr.drawImage": 2, + "tr.drawImage": 2, + "nt.save": 1, + "e*.728155*": 1, + "st/": 1, + "nt.translate": 2, + "rt/2": 2, + "f*.856796": 2, + "f*.12864": 2, + "*st/": 1, + "e*.58": 1, + "nt.drawImage": 3, + "nt.restore": 1, + "f*.012135/2": 1, + "ft.push": 1, + "*c": 2, + "y*.121428": 2, + "w*.012135": 2, + "y*.012135": 2, + "w*.121428": 2, + "y*.093457": 2, + "w*.093457": 2, + "pt.width": 1, + "pt.height": 1, + "ku.repaint": 1, + "k.labelColor": 1, + "r*": 2, + "r*1.014": 5, + "t*.856796": 1, + "t*.12864": 1, + "t*.13": 3, + "r*1.035": 4, + "f.setAlpha": 8, + ".047058": 2, + "rt.addColorStop": 4, + "f.getRgbaColor": 8, + ".145098": 1, + ".149019": 1, + "t*.15": 1, + "i*.152857": 1, + ".298039": 1, + "it.addColorStop": 4, + ".686274": 1, + ".698039": 1, + "i*.851941": 1, + "t*.121428": 1, + "i*.012135": 1, + "t*.012135": 1, + "i*.121428": 1, + "*r": 4, + "o/r*": 1, + "yt.getEnd": 2, + "yt.getStart": 2, + "lt/ct": 2, + "yt.getColorAt": 2, + "": 1, + "st.medium.getHexColor": 2, + "a.medium.getHexColor": 2, + "b/2": 2, + "e/r*": 1, + "": 1, + "v.createRadialGradient": 2, + "": 5, + "oi.pause": 1, + "oi.play": 1, + "": 1, + "bargraphled": 3, + "v.drawImage": 2, + "": 1, + "n=": 10, + "856796": 4, + "728155": 2, + "34": 2, + "12864": 2, + "142857": 2, + "65": 2, + "drawImage": 12, + "save": 27, + "restore": 14, + "repaint": 23, + "dr=": 1, + "b=": 25, + "128": 2, + "y=": 5, + "48": 1, + "w=": 4, + "lcdColor": 4, + "LcdColor": 4, + "STANDARD": 3, + "pt=": 5, + "lcdDecimals": 4, + "lt=": 4, + "unitString": 4, + "at=": 3, + "unitStringVisible": 4, + "ht=": 6, + "digitalFont": 4, + "bt=": 3, + "valuesNumeric": 4, + "a=": 23, + "ct=": 5, + "autoScroll": 2, + "section": 2, + "c=": 24, + "wt=": 3, + "getElementById": 4, + "clearRect": 8, + "h=": 19, + "l=": 10, + "v=": 5, + "floor": 13, + "5": 23, + "ot=": 4, + "sans": 12, + "serif": 13, + "it=": 7, + "nt=": 5, + "et=": 6, + "kt=": 4, + "textAlign=": 7, + "strokeStyle=": 8, + "4": 4, + "clip": 1, + "font=": 28, + "measureText": 4, + "toFixed": 3, + "fillText": 23, + "38": 5, + "o*.2": 1, + "clearTimeout": 2, + "<=o-4&&(e=0,c=!1),u.fillText(n,o-2-e,h*.5+v*.38)),u.restore()},dt=function(n,i,r,u){var>": 1, + "d=": 15, + "rt=": 3, + "095": 1, + "createLinearGradient": 6, + "addColorStop": 25, + "4c4c4c": 1, + "08": 1, + "666666": 2, + "92": 1, + "e6e6e6": 1, + "g=": 15, + "gradientStartColor": 1, + "tt=": 3, + "gradientFraction1Color": 1, + "gradientFraction2Color": 1, + "gradientFraction3Color": 1, + "gradientStopColor": 1, + "yt=": 4, + "31": 26, + "k=": 11, + "p=": 5, + "ut=": 6, + "rgb": 6, + "03": 1, + "49": 1, + "57": 1, + "83": 1, + "wt.repaint": 1, + "f.length": 5, + "resetBuffers": 1, + "this.setScrolling": 1, + "w.textColor": 1, + "": 1, + "<=f[n].stop){t=et[n],i=ut[n];break}u.drawImage(t,0,0),kt(a,i)},this.repaint(),this},wr=function(n,t){t=t||{};var>": 1, + "64": 1, + "875": 2, + "textBaseline=": 4, + "textColor": 2, + "STANDARD_GREEN": 1, + "shadowColor=": 1, + "shadowOffsetX=": 1, + "05": 2, + "shadowOffsetY=": 1, + "shadowBlur=": 1, + "06": 1, + "46": 1, + "8": 2, + "setValue=": 2, + "setLcdColor=": 2, + "repaint=": 2, + "br=": 1, + "size": 6, + "200": 2, + "st=": 3, + "decimalsVisible": 2, + "gt=": 1, + "textOrientationFixed": 2, + "frameDesign": 4, + "FrameDesign": 2, + "METAL": 2, + "frameVisible": 4, + "backgroundColor": 2, + "BackgroundColor": 1, + "DARK_GRAY": 1, + "vt=": 2, + "backgroundVisible": 2, + "pointerColor": 4, + "ColorDef": 2, + "RED": 1, + "foregroundType": 4, + "ForegroundType": 2, + "TYPE1": 2, + "foregroundVisible": 4, + "PI": 54, + "180": 26, + "ni=": 1, + "labelColor": 6, + "getRgbaColor": 21, + "translate": 38, + "360": 15, + "p.labelColor.getRgbaColor": 4, + "f*.38": 7, + "f*.37": 3, + "": 1, + "rotate": 31, + "Math": 51, + "u00b0": 8, + "41": 3, + "45": 5, + "25": 9, + "085": 4, + "100": 4, + "90": 3, + "21": 2, + "u221e": 2, + "135": 1, + "225": 1, + "75": 3, + "270": 1, + "315": 1, + "ti=": 2, + "200934": 2, + "434579": 4, + "163551": 5, + "560747": 4, + "lineWidth=": 6, + "lineCap=": 5, + "lineJoin=": 5, + "471962": 4, + "205607": 1, + "523364": 5, + "799065": 2, + "836448": 5, + "794392": 1, + "ii=": 2, + "350467": 5, + "130841": 1, + "476635": 2, + "bezierCurveTo": 6, + "490654": 3, + "345794": 3, + "509345": 1, + "154205": 1, + "350466": 1, + "dark": 2, + "light": 5, + "setAlpha": 8, + "70588": 4, + "59": 3, + "dt=": 2, + "285046": 5, + "514018": 6, + "21028": 1, + "481308": 4, + "280373": 3, + "495327": 2, + "504672": 2, + "224299": 1, + "289719": 1, + "714953": 5, + "789719": 1, + "719626": 3, + "7757": 1, + "71028": 1, + "ft=": 3, + "*10": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "<-90&&e>": 2, + "<-180&&e>": 2, + "<-270&&e>": 2, + "d.playing": 2, + "d.stop": 2, + "d.onMotionChanged": 2, + "d.start": 2, + "s.save": 4, + "s.clearRect": 3, + "s.canvas.width": 4, + "s.canvas.height": 4, + "s.drawImage": 8, + "e*kt": 1, + "s.translate": 6, + "s.rotate": 3, + "s.fillStyle": 1, + "s.textAlign": 1, + "s.textBaseline": 1, + "s.restore": 6, + "s.font": 2, + "f*.15": 2, + "s.fillText": 2, + "f*.35": 26, + "f*.2": 1, + "k*Math.PI/180": 1, + "u.size": 4, + "u.frameDesign": 4, + "u.frameVisible": 4, + "u.backgroundColor": 4, + "u.backgroundVisible": 4, + "u.pointerType": 2, + "steelseries.PointerType.TYPE2": 1, + "u.pointerColor": 4, + "u.knobType": 4, + "u.knobStyle": 4, + "u.foregroundType": 4, + "u.foregroundVisible": 4, + "u.pointSymbols": 4, + "u.customLayer": 4, + "u.degreeScale": 4, + "u.roseVisible": 4, + "this.value": 4, + "ft.getContext": 2, + "ut.getContext": 2, + "it.getContext": 2, + "ot.getContext": 3, + "et.getContext": 2, + "tt.labelColor.getRgbaColor": 2, + ".08*f": 1, + "f*.033": 1, + "st*10": 2, + ".substring": 2, + ".12*f": 2, + ".06*f": 2, + "tt.symbolColor.getRgbaColor": 1, + "st*2.5": 1, + "bt.type": 1, + "f*.53271": 6, + "e*.453271": 5, + "f*.5": 17, + "e*.149532": 8, + "f*.467289": 6, + "f*.453271": 2, + "e*.462616": 2, + "f*.443925": 9, + "e*.481308": 2, + "e*.5": 10, + "f*.556074": 9, + "f*.546728": 2, + ".471962*f": 5, + ".528036*f": 5, + "o.addColorStop": 4, + "h.light.getRgbaColor": 6, + ".46": 3, + ".47": 3, + "h.medium.getRgbaColor": 6, + "h.dark.getRgbaColor": 3, + "n.lineCap": 5, + "n.lineJoin": 5, + "e*.546728": 5, + "e*.850467": 4, + "e*.537383": 2, + "e*.518691": 2, + "s.addColorStop": 4, + "e*.490654": 2, + "e*.53271": 2, + "e*.556074": 3, + "e*.495327": 4, + "f*.528037": 2, + "f*.471962": 2, + "e*.504672": 4, + ".480099": 1, + "f*.006": 2, + "ft.width": 1, + "ft.height": 1, + "ut.width": 1, + "ut.height": 1, + "it.width": 1, + "it.height": 1, + "ot.width": 1, + "ot.height": 1, + "et.width": 1, + "et.height": 1, + "Tween.elasticEaseOut": 1, + "r.repaint": 1, + "this.setPointSymbols": 1, + "p*st": 1, + "b.clearRect": 1, + "b.save": 1, + "b.translate": 2, + "b.rotate": 1, + "b.drawImage": 1, + "b.restore": 1, + "u.pointerTypeLatest": 2, + "u.pointerTypeAverage": 2, + "steelseries.PointerType.TYPE8": 1, + "u.pointerColorAverage": 2, + "steelseries.ColorDef.BLUE": 1, + "u.lcdColor": 2, + "u.lcdVisible": 2, + "u.digitalFont": 2, + "u.section": 2, + "u.area": 2, + "u.lcdTitleStrings": 2, + "u.titleString": 2, + "u.useColorLabels": 2, + "this.valueLatest": 1, + "this.valueAverage": 1, + "Math.PI*2": 1, + "e.save": 2, + "e.clearRect": 1, + "e.canvas.width": 2, + "e.canvas.height": 2, + "f/10": 1, + "f*.3": 4, + "s*.12": 1, + "s*.32": 1, + "s*.565": 1, + "bt.getContext": 1, + "at.getContext": 1, + "vt.getContext": 1, + "lt.getContext": 1, + "wt.getContext": 1, + "e.textAlign": 1, + "e.strokeStyle": 1, + "ht.textColor": 2, + "e.fillStyle": 1, + "<0&&(n+=360),n=\"00\"+Math.round(n),n=n.substring(n.length,n.length-3),(ht===steelseries.LcdColor.STANDARD||ht===steelseries.LcdColor.STANDARD_GREEN)&&(e.shadowColor=\"gray\",e.shadowOffsetX=f*.007,e.shadowOffsetY=f*.007,e.shadowBlur=f*.007),e.font=pr?gr:br,e.fillText(n+\"\\u00b0\",f/2+gt*.05,(t?or:cr)+er*.5+ui*.38,gt*.9),e.restore()},wi=function(n,t,i,r,u){n.save(),n.strokeStyle=r,n.fillStyle=r,n.lineWidth=f*.035;var>": 1, + "arc": 2, + "365": 2, + "lineWidth": 1, + "lr=": 1, + "35": 1, + "355": 1, + "36": 2, + "bold": 1, + "04": 2, + "ct*5": 1, + "k.symbolColor.getRgbaColor": 1, + "ct*2.5": 1, + "ti.length": 1, + "kt.medium.getRgbaColor": 1, + ".04*f": 1, + "s*.29": 1, + "ii.medium.getRgbaColor": 1, + "s*.71": 1, + "rr.length": 1, + ".0467*f": 1, + "s*.5": 1, + "et.length": 2, + "ft.length": 2, + "": 1, + "ci=": 1, + "li=": 1, + "ai=": 1, + "ki=": 1, + "yi=": 1, + "setValueLatest=": 1, + "getValueLatest=": 1, + "setValueAverage=": 1, + "getValueAverage=": 1, + "setValueAnimatedLatest=": 1, + "playing": 2, + "regularEaseInOut": 2, + "onMotionChanged=": 2, + "_pos": 2, + "onMotionFinished=": 2, + "setValueAnimatedAverage=": 1, + "setArea=": 1, + "setSection=": 1, + "setFrameDesign=": 1, + "pi=": 1, + "setBackgroundColor=": 1, + "setForegroundType=": 1, + "si=": 1, + "setPointerColor=": 1, + "setPointerColorAverage=": 1, + "setPointerType=": 1, + "setPointerTypeAverage=": 1, + "ri=": 1, + "setPointSymbols=": 1, + "setLcdTitleStrings=": 1, + "fi=": 1, + "006": 1, + "ei=": 1, + "ru=": 1, + "WHITE": 1, + "037383": 1, + "056074": 1, + "7fd5f0": 2, + "3c4439": 2, + "72": 1, + "Animal": 12, + "Horse": 12, + "Snake": 12, + "sam": 4, + "tom": 4, + "__hasProp": 2, + "__extends": 6, + "__hasProp.call": 2, + "this.constructor": 5, + "Animal.prototype.move": 2, + "meters": 4, + "Snake.__super__.constructor.apply": 2, + "Snake.prototype.move": 2, + "Snake.__super__.move.call": 2, + "Horse.__super__.constructor.apply": 2, + "Horse.prototype.move": 2, + "Horse.__super__.move.call": 2, + "sam.move": 2, + "tom.move": 2, + "ma": 3, + "c.isReady": 4, + "s.documentElement.doScroll": 2, + "c.ready": 7, + "Qa": 1, + "b.src": 4, + "c.ajax": 1, + "async": 5, + "c.globalEval": 1, + "b.text": 3, + "b.textContent": 2, + "b.innerHTML": 3, + "b.parentNode": 4, + "b.parentNode.removeChild": 2, + "X": 6, + "j": 265, + "a.length": 23, + "c.isFunction": 9, + "d.call": 3, + "J": 5, + "Y": 3, + "na": 1, + ".type": 2, + "c.event.handle.apply": 1, + "oa": 1, + "c.data": 12, + "a.liveFired": 4, + "i.live": 1, + "a.button": 2, + "a.type": 14, + "i.live.slice": 1, + "u.length": 3, + "i.origType.replace": 1, + "O": 6, + "f.push": 5, + "i.selector": 3, + "u.splice": 1, + "a.target": 5, + ".closest": 4, + "a.currentTarget": 4, + "j.length": 2, + ".selector": 1, + ".elem": 1, + "i.preType": 2, + "a.relatedTarget": 2, + "d.push": 1, + "handleObj": 2, + "d.length": 8, + "j.elem": 2, + "a.data": 2, + "j.handleObj.data": 1, + "a.handleObj": 2, + "j.handleObj": 1, + "j.handleObj.origHandler.apply": 1, + "pa": 1, + "b.replace": 3, + "./g": 2, + "qa": 1, + "a.parentNode": 6, + "a.parentNode.nodeType": 2, + "ra": 1, + "b.each": 1, + "this.nodeName": 4, + ".nodeName": 2, + "f.events": 1, + "e.handle": 2, + "e.events": 2, + "c.event.add": 1, + "sa": 2, + ".ownerDocument": 5, + ".length": 24, + "ta.test": 1, + "c.support.checkClone": 2, + "ua.test": 1, + "c.fragments": 2, + "b.createDocumentFragment": 1, + "c.clean": 1, + "cacheable": 2, + "K": 4, + "c.each": 2, + "va.concat.apply": 1, + "va.slice": 1, + "wa": 1, + "a.document": 3, + "a.nodeType": 27, + "a.defaultView": 2, + "a.parentWindow": 2, + "c.fn.init": 1, + "Ra": 2, + "A.jQuery": 3, + "Sa": 2, + "A.": 3, + "A.document": 1, + "T": 4, + "Ta": 1, + "Ua": 1, + "Va": 1, + "Wa": 2, + "u00A0": 2, + "Xa": 1, + "P": 4, + "xa": 3, + "Q": 6, + "L": 10, + "aa": 1, + "ba": 3, + "R": 2, + "ya": 2, + "c.fn": 2, + "c.prototype": 1, + "s.body": 2, + "Ta.exec": 1, + "b.ownerDocument": 6, + "Xa.exec": 1, + "c.isPlainObject": 3, + "s.createElement": 10, + "c.fn.attr.call": 1, + "f.createElement": 1, + "a.cacheable": 1, + "a.fragment.cloneNode": 1, + "a.fragment": 1, + ".childNodes": 2, + "c.merge": 4, + "s.getElementById": 1, + "b.id": 1, + "T.find": 1, + "s.getElementsByTagName": 2, + "b.jquery": 1, + ".find": 5, + "T.ready": 1, + "a.selector": 4, + "a.context": 2, + "c.makeArray": 3, + "jquery": 3, + "toArray": 2, + "R.call": 2, + "this.toArray": 3, + "this.slice": 5, + "pushStack": 4, + "c.isArray": 5, + "ba.apply": 1, + "f.prevObject": 1, + "f.context": 1, + "f.selector": 2, + "c.bindReady": 1, + "a.call": 17, + "Q.push": 1, + "eq": 2, + "this.eq": 4, + "this.pushStack": 12, + "R.apply": 1, + "c.map": 1, + "this.prevObject": 3, + "c.fn.init.prototype": 1, + "c.extend": 7, + "c.fn.extend": 4, + "c.fn.triggerHandler": 1, + ".triggerHandler": 1, + "s.readyState": 2, + "s.addEventListener": 3, + "A.addEventListener": 1, + "s.attachEvent": 3, + "A.attachEvent": 1, + "A.frameElement": 1, + "isFunction": 12, + "isArray": 10, + "isPlainObject": 4, + "a.setInterval": 2, + "a.constructor": 2, + "aa.call": 3, + "a.constructor.prototype": 2, + "c.trim": 3, + "a.replace": 7, + "@": 1, + "A.JSON": 1, + "A.JSON.parse": 2, + "c.error": 2, + "noop": 3, + "globalEval": 2, + "Va.test": 1, + "s.documentElement": 2, + "d.type": 2, + "c.support.scriptEval": 2, + "d.appendChild": 3, + "s.createTextNode": 2, + "d.text": 1, + "b.insertBefore": 3, + "b.firstChild": 5, + "b.removeChild": 3, + "a.nodeName": 12, + "a.nodeName.toUpperCase": 2, + "b.toUpperCase": 3, + "b.apply": 2, + "b.call": 4, + "makeArray": 3, + "ba.call": 1, + "inArray": 5, + "b.indexOf": 2, + "b.length": 12, + "merge": 2, + "grep": 6, + "f.concat.apply": 1, + "guid": 5, + "proxy": 4, + "a.apply": 2, + "b.guid": 2, + "a.guid": 7, + "c.guid": 1, + "a.toLowerCase": 4, + "/.exec": 4, + "/compatible/.test": 1, + "c.uaMatch": 1, + "P.browser": 2, + "c.browser": 1, + "c.browser.version": 1, + "P.version": 1, + "c.browser.webkit": 1, + "c.browser.safari": 1, + "c.inArray": 2, + "ya.call": 1, + "s.removeEventListener": 1, + "s.detachEvent": 1, + "c.support": 2, + "d.style.display": 5, + "d.innerHTML": 2, + "d.getElementsByTagName": 6, + "e.length": 9, + "d.firstChild.nodeType": 1, + "htmlSerialize": 3, + "/red/.test": 1, + "j.getAttribute": 2, + "j.style.opacity": 1, + "j.style.cssFloat": 1, + ".value": 1, + "optSelected": 3, + ".appendChild": 1, + ".selected": 1, + "parentNode": 10, + "d.removeChild": 1, + ".parentNode": 7, + "deleteExpando": 3, + "checkClone": 1, + "scriptEval": 1, + "noCloneEvent": 3, + "boxModel": 1, + "b.type": 4, + "b.appendChild": 1, + "a.insertBefore": 2, + "a.firstChild": 6, + "b.test": 1, + "c.support.deleteExpando": 2, + "a.removeChild": 2, + "d.attachEvent": 2, + "d.fireEvent": 1, + "c.support.noCloneEvent": 1, + "d.detachEvent": 1, + "d.cloneNode": 1, + "s.createDocumentFragment": 1, + "a.appendChild": 3, + "d.firstChild": 2, + "a.cloneNode": 3, + ".lastChild.checked": 2, + "k.style.width": 1, + "k.style.paddingLeft": 1, + "s.body.appendChild": 1, + "c.boxModel": 1, + "c.support.boxModel": 1, + "k.offsetWidth": 1, + "s.body.removeChild": 1, + "n.setAttribute": 1, + "c.support.submitBubbles": 1, + "c.support.changeBubbles": 1, + "c.props": 2, + "readonly": 3, + "maxlength": 2, + "cellspacing": 2, + "rowspan": 2, + "colspan": 2, + "usemap": 2, + "frameborder": 2, + "G": 11, + "Ya": 2, + "za": 3, + "embed": 3, + "applet": 2, + "c.noData": 2, + "a.nodeName.toLowerCase": 3, + "c.cache": 2, + "c.isEmptyObject": 1, + "c.removeData": 2, + "c.expando": 2, + "a.removeAttribute": 3, + "a.split": 4, + "this.trigger": 2, + ".each": 3, + "queue": 7, + "dequeue": 6, + "c.queue": 3, + "d.shift": 2, + "d.unshift": 2, + "f.call": 1, + "c.dequeue": 4, + "c.fx": 1, + "c.fx.speeds": 1, + "this.queue": 4, + "clearQueue": 2, + "Aa": 3, + "ca": 6, + "Za": 2, + "r/g": 2, + "/href": 1, + "style/": 1, + "ab": 1, + "bb": 2, + "cb": 16, + "area": 2, + "Ba": 3, + "/radio": 1, + "checkbox/": 1, + "c.attr": 4, + "this.nodeType": 4, + "this.removeAttribute": 1, + "addClass": 2, + "r.addClass": 1, + "r.attr": 1, + "e.nodeType": 7, + "e.className": 14, + "j.indexOf": 1, + "removeClass": 2, + "n.removeClass": 1, + "n.attr": 1, + "j.replace": 2, + "toggleClass": 2, + "j.toggleClass": 1, + "j.attr": 1, + "i.hasClass": 1, + "hasClass": 2, + "": 1, + "val": 13, + "c.nodeName": 4, + "b.attributes.value": 1, + ".specified": 1, + "b.value": 4, + "b.selectedIndex": 2, + "b.options": 1, + "": 1, + "getAttribute": 3, + "nodeType=": 6, + "call": 9, + "checked=": 1, + "this.selected": 1, + "this.selectedIndex": 1, + "attrFn": 2, + "css": 7, + "c.attrFn": 1, + "c.isXMLDoc": 1, + "a.test": 2, + "ab.test": 1, + "a.getAttributeNode": 7, + ".nodeValue": 1, + "b.specified": 2, + "bb.test": 2, + "cb.test": 1, + "a.href": 2, + "c.support.style": 1, + "a.style.cssText": 3, + "a.setAttribute": 7, + "c.support.hrefNormalized": 1, + "c.style": 1, + "db": 1, + "detail": 3, + "layerX": 3, + "layerY": 3, + "newValue": 3, + "originalTarget": 1, + "prevValue": 3, + "wheelDelta": 3, + "click.specialSubmit": 2, + "submit": 14, + "keypress.specialSubmit": 2, + "password": 5, + ".specialSubmit": 2, + "_change_data": 6, + "file": 5, + ".specialChange": 4, + "unload": 5, + "live": 8, + "lastToggle": 4, + "die": 3, + "hover": 3, + "load": 5, + "resize": 3, + "scroll": 6, + "dblclick": 3, + "mousedown": 3, + "mouseup": 3, + "mousemove": 3, + "keydown": 4, + "keypress": 4, + "keyup": 3, + "onunload": 1, + "m": 76, + "h.nodeType": 4, + "H": 8, + "M": 9, + "I": 7, + "f.exec": 2, + "p.push": 2, + "p.length": 10, + "r.exec": 1, + "n.relative": 5, + "ga": 2, + "p.shift": 4, + "n.match.ID.test": 2, + "k.find": 6, + "v.expr": 4, + "k.filter": 5, + "v.set": 5, + "expr": 2, + "p.pop": 4, + "h.parentNode": 3, + "D": 9, + "k.error": 2, + "j.call": 2, + ".nodeType": 9, + "E": 11, + "l.push": 2, + "l.push.apply": 1, + "k.uniqueSort": 5, + "B": 5, + "g.sort": 1, + "g.length": 2, + "g.splice": 2, + "k.matches": 1, + "n.order.length": 1, + "n.order": 1, + "n.leftMatch": 1, + ".exec": 2, + "q.splice": 1, + "y.substr": 1, + "y.length": 1, + "Syntax": 3, + "unrecognized": 3, + "expression": 4, + "NAME": 2, + "TAG": 2, + "u00c0": 2, + "uFFFF": 2, + "leftMatch": 2, + "attrMap": 2, + "attrHandle": 2, + "g.getAttribute": 1, + "relative": 4, + "W/.test": 1, + "h.toLowerCase": 2, + "": 1, + "previousSibling": 5, + "nth": 5, + "even": 3, + "odd": 2, + "reset": 2, + "sourceIndex": 1, + "": 4, + "name=": 2, + "href=": 2, + "": 2, + "

": 2, + "class=": 5, + "

": 2, + ".TEST": 2, + "
": 4, + "
": 3, + "CLASS": 1, + "nextSibling": 3, + "": 1, + "": 1, + "
": 1, + "
": 1, + "": 4, + "
": 5, + "": 3, + "": 3, + "": 2, + "": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "position": 7, + "absolute": 2, + "solid": 2, + "#000": 2, + "padding": 4, + "": 1, + "": 1, + "fixed": 1, + "marginLeft": 2, + "borderTopWidth": 1, + "borderLeftWidth": 1, + "static": 2, + "Left": 1, + "Top": 1, + "pageXOffset": 2, + "pageYOffset": 1, + "Height": 1, + "Width": 1, + "scrollTo": 1, + "CSS1Compat": 1, + "client": 3, + "cy": 4, + "f.isWindow": 2, + "cv": 2, + "cj": 4, + "b.css": 1, + "b.remove": 1, + "ck": 5, + "c.createElement": 12, + "ck.frameBorder": 1, + "ck.width": 1, + "ck.height": 1, + "c.body.appendChild": 1, + "cl": 3, + "ck.createElement": 1, + "ck.contentWindow": 1, + "ck.contentDocument": 1, + ".document": 1, + "cl.write": 1, + "cl.createElement": 1, + "cl.body.appendChild": 1, + "f.css": 24, + "c.body.removeChild": 1, + "f.each": 21, + "cp.concat.apply": 1, + "cp.slice": 1, + "cq": 3, + "cs": 3, + "f.now": 2, + "a.ActiveXObject": 3, + "a.XMLHttpRequest": 1, + "a.dataFilter": 2, + "a.dataType": 1, + "a.dataTypes": 2, + "a.converters": 3, + "o.split": 1, + "f.error": 4, + "m.replace": 1, + "a.contents": 1, + "a.responseFields": 1, + "f.shift": 1, + "a.mimeType": 1, + "c.getResponseHeader": 1, + ".test": 1, + "f.unshift": 2, + "b_": 4, + "f.isArray": 8, + "bF.test": 1, + "c.dataTypes": 1, + "h.length": 3, + "bU": 4, + "c.dataTypes.unshift": 1, + "bZ": 3, + "f.isFunction": 21, + "b.toLowerCase": 3, + "bQ": 3, + "h.substr": 1, + "bD": 3, + "bx": 2, + "a.offsetWidth": 6, + "a.offsetHeight": 2, + "bn": 2, + "f.ajax": 3, + "f.globalEval": 2, + "bm": 3, + "f.nodeName": 16, + "bl": 3, + "a.getElementsByTagName": 9, + "f.grep": 3, + "a.defaultChecked": 1, + "a.checked": 4, + "bk": 5, + "a.querySelectorAll": 1, + "bj": 3, + "b.nodeType": 6, + "b.clearAttributes": 2, + "b.mergeAttributes": 2, + "b.nodeName.toLowerCase": 1, + "b.outerHTML": 1, + "a.outerHTML": 1, + "b.selected": 1, + "a.defaultSelected": 1, + "b.defaultValue": 1, + "a.defaultValue": 1, + "b.defaultChecked": 1, + "b.checked": 1, + "a.value": 8, + "b.removeAttribute": 3, + "f.expando": 23, + "f.hasData": 2, + "f.data": 25, + "d.events": 1, + "f.extend": 23, + "": 1, + "bh": 1, + "getElementsByTagName": 1, + "appendChild": 1, + "nodeType": 1, + "W": 3, + "N": 2, + "f._data": 15, + "r.live": 1, + "a.target.disabled": 1, + "a.namespace": 1, + "a.namespace.split": 1, + "r.live.slice": 1, + "s.length": 2, + "g.origType.replace": 1, + "q.push": 1, + "g.selector": 3, + "s.splice": 1, + "m.selector": 1, + "n.test": 2, + "g.namespace": 1, + "m.elem.disabled": 1, + "m.elem": 1, + "g.preType": 3, + "f.contains": 5, + "m.level": 1, + "": 1, + "e.elem": 2, + "e.handleObj.data": 1, + "e.handleObj": 1, + "e.handleObj.origHandler.apply": 1, + "a.isPropagationStopped": 1, + "e.level": 1, + "a.isImmediatePropagationStopped": 1, + "e.type": 6, + "e.originalEvent": 1, + "e.liveFired": 1, + "f.event.handle.call": 1, + "e.isDefaultPrevented": 2, + ".preventDefault": 1, + "f.removeData": 4, + "i.resolve": 1, + "c.replace": 4, + "f.isNaN": 3, + "i.test": 1, + "f.parseJSON": 2, + "a.navigator": 1, + "a.location": 1, + "e.isReady": 1, + "c.documentElement.doScroll": 2, + "e.ready": 6, + "e.fn.init": 1, + "a.jQuery": 2, + "a.": 2, + "d/": 3, + "d.userAgent": 1, + "C": 4, + "e.fn": 2, + "e.prototype": 1, + "c.body": 4, + "a.charAt": 2, + "i.exec": 1, + "d.ownerDocument": 1, + "n.exec": 1, + "e.isPlainObject": 1, + "e.fn.attr.call": 1, + "k.createElement": 1, + "e.buildFragment": 1, + "j.cacheable": 1, + "e.clone": 1, + "j.fragment": 2, + "e.merge": 3, + "c.getElementById": 1, + "h.id": 1, + "f.find": 2, + "d.jquery": 1, + "e.isFunction": 5, + "f.ready": 1, + "e.makeArray": 1, + "D.call": 4, + "e.isArray": 2, + "C.apply": 1, + "d.prevObject": 1, + "d.context": 2, + "d.selector": 2, + "e.each": 2, + "e.bindReady": 1, + "y.done": 1, + "D.apply": 1, + "e.map": 1, + "e.fn.init.prototype": 1, + "e.extend": 2, + "e.fn.extend": 1, + "": 1, + "jQuery=": 2, + "isReady=": 1, + "y.resolveWith": 1, + "e.fn.trigger": 1, + "e._Deferred": 1, + "c.readyState": 2, + "c.addEventListener": 4, + "a.addEventListener": 4, + "c.attachEvent": 3, + "a.attachEvent": 6, + "a.frameElement": 1, + "Array.isArray": 7, + "isWindow": 2, + "isNaN": 6, + "m.test": 1, + "A.call": 1, + "e.isWindow": 2, + "B.call": 3, + "e.trim": 1, + "a.JSON": 1, + "a.JSON.parse": 2, + "o.test": 1, + "e.error": 2, + "parseXML": 1, + "a.DOMParser": 1, + "DOMParser": 1, + "d.parseFromString": 1, + "ActiveXObject": 1, + "c.async": 4, + "c.loadXML": 1, + "c.documentElement": 4, + "d.nodeName": 4, + "j.test": 3, + "a.execScript": 1, + "a.eval.call": 1, + "c.apply": 2, + "c.call": 3, + "E.call": 1, + "C.call": 1, + "F.call": 1, + "c.length": 8, + "": 1, + "j=": 14, + "h.concat.apply": 1, + "f.concat": 1, + "g.guid": 3, + "e.guid": 3, + "e.access": 1, + "s.exec": 1, + "t.exec": 1, + "u.exec": 1, + "a.indexOf": 2, + "v.exec": 1, + "a.fn.init": 2, + "a.superclass": 1, + "a.fn": 2, + "a.prototype": 1, + "a.fn.constructor": 1, + "a.sub": 1, + "e.fn.init.call": 1, + "a.fn.init.prototype": 1, + "e.uaMatch": 1, + "x.browser": 2, + "e.browser": 1, + "e.browser.version": 1, + "x.version": 1, + "e.browser.webkit": 1, + "e.browser.safari": 1, + "c.removeEventListener": 2, + "c.detachEvent": 1, + "_Deferred": 4, + "done": 10, + "": 1, + "resolveWith": 4, + "shift": 1, + "apply": 8, + "finally": 3, + "resolve": 7, + "isResolved": 3, + "cancel": 6, + "Deferred": 5, + "rejectWith": 2, + "reject": 4, + "isRejected": 2, + "pipe": 2, + "promise": 14, + "h.call": 2, + "g.resolveWith": 3, + "<=1&&a&&f.isFunction(a.promise)?a:f.Deferred();if(d>": 1, + ".promise": 5, + ".then": 3, + "g.reject": 1, + "g.promise": 1, + "f.support": 2, + "f.appendChild": 1, + "a.firstChild.nodeType": 2, + "/top/.test": 2, + "e.getAttribute": 2, + "e.style.opacity": 1, + "e.style.cssFloat": 1, + "h.value": 3, + "g.selected": 1, + "a.className": 1, + "submitBubbles": 3, + "changeBubbles": 3, + "focusinBubbles": 2, + "inlineBlockNeedsLayout": 3, + "shrinkWrapBlocks": 2, + "reliableMarginRight": 2, + "h.checked": 2, + "j.noCloneChecked": 1, + "h.cloneNode": 1, + ".checked": 2, + "f.disabled": 1, + "j.optDisabled": 1, + "g.disabled": 1, + "j.deleteExpando": 1, + "a.fireEvent": 1, + "j.noCloneEvent": 1, + "a.detachEvent": 1, + "h.setAttribute": 2, + "j.radioValue": 1, + "c.createDocumentFragment": 1, + "k.appendChild": 1, + "j.checkClone": 1, + "k.cloneNode": 1, + "a.style.width": 1, + "a.style.paddingLeft": 1, + "visibility": 3, + "l.style": 1, + "l.appendChild": 1, + "j.appendChecked": 1, + "j.boxModel": 1, + "a.style": 8, + "a.style.display": 3, + "a.style.zoom": 1, + "j.inlineBlockNeedsLayout": 1, + "j.shrinkWrapBlocks": 1, + "j.reliableHiddenOffsets": 1, + "c.defaultView": 2, + "c.defaultView.getComputedStyle": 3, + "i.style.width": 1, + "i.style.marginRight": 1, + "j.reliableMarginRight": 1, + "l.innerHTML": 1, + "f.boxModel": 1, + "f.support.boxModel": 4, + "f.fn.jquery": 1, + "f.cache": 5, + "f.acceptData": 4, + "f.uuid": 1, + ".toJSON": 4, + "f.noop": 4, + "f.camelCase": 5, + ".events": 1, + "f.support.deleteExpando": 3, + "f.noData": 2, + "f.fn.extend": 9, + ".attributes": 2, + "g.indexOf": 2, + "g.substring": 1, + "b.triggerHandler": 2, + "_mark": 2, + "_unmark": 3, + "f.makeArray": 5, + "e.push": 3, + "f.queue": 3, + "c.shift": 2, + "c.unshift": 1, + "f.dequeue": 4, + "f.fx": 2, + "f.fx.speeds": 1, + "d.resolveWith": 1, + "f.Deferred": 2, + "f._Deferred": 2, + "l.done": 1, + "d.promise": 1, + "rea": 1, + "autofocus": 1, + "autoplay": 1, + "controls": 1, + "defer": 1, + "open": 2, + "required": 1, + "scoped": 1, + "f.access": 3, + "f.attr": 2, + "f.removeAttr": 3, + "f.prop": 2, + "removeProp": 1, + "f.propFix": 6, + "c.addClass": 1, + "f.trim": 2, + "c.removeClass": 1, + "g.nodeType": 6, + "g.className": 4, + "h.replace": 2, + "d.toggleClass": 1, + "d.attr": 1, + "h.hasClass": 1, + "": 1, + "f.valHooks": 7, + "e.nodeName.toLowerCase": 1, + "c.get": 1, + "e.value": 1, + "e.val": 1, + "f.map": 5, + "this.nodeName.toLowerCase": 1, + "this.type": 3, + "c.set": 1, + "valHooks": 1, + "a.attributes.value": 1, + "a.text": 1, + "a.selectedIndex": 3, + "a.options": 2, + "": 3, + "optDisabled": 1, + "selected=": 1, + "attrFix": 1, + "f.attrFn": 3, + "f.isXMLDoc": 4, + "f.attrFix": 3, + "f.attrHooks": 5, + "t.test": 2, + "d.toLowerCase": 1, + "c.toLowerCase": 4, + "u.test": 1, + "i.set": 1, + "i.get": 1, + "f.support.getSetAttribute": 2, + "a.removeAttributeNode": 1, + "q.test": 1, + "f.support.radioValue": 1, + "c.specified": 1, + "c.value": 1, + "r.test": 1, + "s.test": 1, + "propFix": 1, + "cellpadding": 1, + "contenteditable": 1, + "f.propHooks": 1, + "h.set": 1, + "h.get": 1, + "propHooks": 1, + "f.attrHooks.value": 1, + "v.get": 1, + "f.attrHooks.name": 1, + "f.valHooks.button": 1, + "d.nodeValue": 3, + "f.support.hrefNormalized": 1, + "f.support.style": 1, + "f.attrHooks.style": 1, + "a.style.cssText.toLowerCase": 1, + "f.support.optSelected": 1, + "f.propHooks.selected": 2, + "b.parentNode.selectedIndex": 1, + "f.support.checkOn": 1, + "f.inArray": 4, + "s.": 1, + "f.event": 2, + "d.handler": 1, + "g.handler": 1, + "d.guid": 4, + "f.guid": 3, + "i.events": 2, + "i.handle": 2, + "f.event.triggered": 3, + "f.event.handle.apply": 1, + "k.elem": 2, + "c.split": 2, + "l.indexOf": 1, + "l.split": 1, + "n.shift": 1, + "h.namespace": 2, + "n.slice": 1, + "h.type": 1, + "h.guid": 2, + "f.event.special": 5, + "p.setup": 1, + "p.setup.call": 1, + "p.add": 1, + "p.add.call": 1, + "h.handler.guid": 2, + "o.push": 1, + "f.event.global": 2, + "global": 5, + "s.events": 1, + "c.type": 9, + "c.handler": 1, + "c.charAt": 1, + "f.event.remove": 5, + "h.indexOf": 3, + "h.split": 2, + "m.shift": 1, + "m.slice": 1, + "q.namespace": 1, + "q.handler": 1, + "p.splice": 1, + "": 1, + "elem=": 4, + "customEvent": 1, + "trigger": 4, + "h.slice": 1, + "i.shift": 1, + "i.sort": 1, + "f.event.customEvent": 1, + "f.Event": 2, + "c.exclusive": 2, + "c.namespace": 2, + "i.join": 2, + "c.namespace_re": 1, + "c.preventDefault": 3, + "c.stopPropagation": 1, + "b.events": 4, + "f.event.trigger": 6, + "b.handle.elem": 2, + "c.result": 3, + "c.target": 3, + "c.currentTarget": 2, + "m.apply": 1, + "k.parentNode": 1, + "k.ownerDocument": 1, + "c.target.ownerDocument": 1, + "c.isPropagationStopped": 1, + "c.isDefaultPrevented": 2, + "o._default": 1, + "o._default.call": 1, + "e.ownerDocument": 1, + "f.event.fix": 2, + "a.event": 1, + "Array.prototype.slice.call": 1, + "namespace_re": 1, + "namespace": 1, + "handler=": 1, + "data=": 2, + "handleObj=": 1, + "result=": 1, + "preventDefault": 4, + "stopPropagation": 5, + "isImmediatePropagationStopped": 2, + "fix": 1, + "Event": 3, + "target=": 2, + "relatedTarget=": 1, + "fromElement=": 1, + "pageX=": 2, + "documentElement": 2, + "scrollLeft": 2, + "clientLeft": 2, + "pageY=": 1, + "scrollTop": 2, + "clientTop": 2, + "which=": 3, + "metaKey=": 1, + "1e8": 1, + "special": 3, + "setup": 5, + "teardown": 6, + "origType": 2, + "beforeunload": 1, + "onbeforeunload=": 3, + "removeEvent=": 1, + "removeEventListener": 3, + "detachEvent": 2, + "Event=": 1, + "originalEvent=": 1, + "type=": 5, + "isDefaultPrevented=": 2, + "defaultPrevented": 1, + "returnValue=": 2, + "getPreventDefault": 2, + "timeStamp=": 1, + "prototype=": 2, + "originalEvent": 2, + "isPropagationStopped=": 1, + "cancelBubble=": 1, + "stopImmediatePropagation": 1, + "isImmediatePropagationStopped=": 1, + "isDefaultPrevented": 1, + "isPropagationStopped": 1, + "G=": 1, + "H=": 1, + "submit=": 1, + "specialSubmit": 3, + "closest": 3, + "keyCode=": 1, + "J=": 1, + "selectedIndex": 1, + "a.selected": 1, + "z.test": 3, + "d.readOnly": 1, + "c.liveFired": 1, + "f.event.special.change": 1, + "filters": 1, + "beforedeactivate": 1, + "K.call": 2, + "a.keyCode": 2, + "beforeactivate": 1, + "f.event.add": 2, + "f.event.special.change.filters": 1, + "I.focus": 1, + "I.beforeactivate": 1, + "f.support.focusinBubbles": 1, + "c.originalEvent": 1, + "a.preventDefault": 3, + "f.fn": 9, + "e.apply": 1, + "this.one": 1, + "unbind": 2, + "this.unbind": 2, + "delegate": 1, + "this.live": 1, + "undelegate": 1, + "this.die": 1, + "triggerHandler": 1, + "toggle": 10, + ".guid": 1, + "this.click": 1, + "this.mouseenter": 1, + ".mouseleave": 1, + "g.charAt": 1, + "n.unbind": 1, + "y.exec": 1, + "a.push": 2, + "n.length": 1, + "": 1, + "this.bind": 2, + "": 2, + "sizcache=": 4, + "sizset": 2, + "sizset=": 2, + "toLowerCase": 3, + "W/": 2, + "d.nodeType": 5, + "k.isXML": 4, + "a.exec": 2, + "x.push": 1, + "x.length": 8, + "m.exec": 1, + "l.relative": 6, + "x.shift": 4, + "l.match.ID.test": 2, + "q.expr": 4, + "q.set": 4, + "x.pop": 4, + "d.parentNode": 4, + "e.call": 1, + "f.push.apply": 1, + "k.contains": 5, + "a.sort": 1, + "": 1, + "matches=": 1, + "matchesSelector=": 1, + "l.order.length": 1, + "l.order": 1, + "l.leftMatch": 1, + "j.substr": 1, + "": 1, + "__sizzle__": 1, + "sizzle": 1, + "l.match.PSEUDO.test": 1, + "a.document.nodeType": 1, + "a.getElementsByClassName": 3, + "a.lastChild.className": 1, + "l.order.splice": 1, + "l.find.CLASS": 1, + "b.getElementsByClassName": 2, + "c.documentElement.contains": 1, + "a.contains": 2, + "c.documentElement.compareDocumentPosition": 1, + "a.compareDocumentPosition": 1, + "a.ownerDocument": 1, + ".documentElement": 1, + "b.nodeName": 2, + "l.match.PSEUDO.exec": 1, + "l.match.PSEUDO": 1, + "f.expr": 4, + "k.selectors": 1, + "f.expr.filters": 3, + "f.unique": 4, + "f.text": 2, + "k.getText": 1, + "/Until": 1, + "parents": 2, + "prevUntil": 2, + "prevAll": 2, + "U": 1, + "f.expr.match.POS": 1, + "V": 2, + "contents": 4, + "next": 9, + "prev": 2, + ".filter": 2, + "": 1, + "e.splice": 1, + "this.filter": 2, + "": 1, + "": 1, + "index": 5, + ".is": 2, + "c.push": 3, + "g.parentNode": 2, + "U.test": 1, + "": 1, + "f.find.matchesSelector": 2, + "g.ownerDocument": 1, + "this.parent": 2, + ".children": 1, + "a.jquery": 2, + "f.merge": 2, + "this.get": 1, + "andSelf": 1, + "this.add": 1, + "f.dir": 6, + "parentsUntil": 1, + "f.nth": 2, + "nextAll": 1, + "nextUntil": 1, + "siblings": 1, + "f.sibling": 2, + "a.parentNode.firstChild": 1, + "a.contentDocument": 1, + "a.contentWindow.document": 1, + "a.childNodes": 1, + "T.call": 1, + "P.test": 1, + "f.filter": 2, + "R.test": 1, + "Q.test": 1, + "e.reverse": 1, + "g.join": 1, + "f.find.matches": 1, + "dir": 1, + "sibling": 1, + "a.nextSibling": 1, + "<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:]+)[^>": 1, + "tbody/i": 1, + "bc": 1, + "bd": 1, + "/checked": 1, + "s*.checked.": 1, + "java": 1, + "ecma": 1, + "script/i": 1, + "CDATA": 1, + "bg": 3, + "legend": 1, + "col": 7, + "_default": 5, + "bg.optgroup": 1, + "bg.option": 1, + "bg.tbody": 1, + "bg.tfoot": 1, + "bg.colgroup": 1, + "bg.caption": 1, + "bg.thead": 1, + "bg.th": 1, + "bg.td": 1, + "f.support.htmlSerialize": 1, + "bg._default": 2, + "c.text": 2, + "this.empty": 3, + ".append": 6, + ".createTextNode": 1, + "wrapAll": 1, + ".wrapAll": 2, + ".eq": 1, + ".clone": 1, + "b.map": 1, + "wrapInner": 1, + ".wrapInner": 1, + "b.contents": 1, + "c.wrapAll": 1, + "b.append": 1, + "unwrap": 1, + ".replaceWith": 1, + "this.childNodes": 1, + ".end": 1, + "append": 1, + "this.domManip": 4, + "this.appendChild": 1, + "prepend": 1, + "this.insertBefore": 1, + "this.firstChild": 1, + "this.parentNode.insertBefore": 2, + "a.push.apply": 2, + "this.nextSibling": 2, + ".toArray": 1, + "f.cleanData": 4, + "d.parentNode.removeChild": 1, + "b.getElementsByTagName": 1, + "this.map": 3, + "f.clone": 2, + ".innerHTML.replace": 1, + "bc.test": 2, + "f.support.leadingWhitespace": 2, + "Z.test": 2, + "_.exec": 2, + ".getElementsByTagName": 2, + "c.html": 3, + "replaceWith": 1, + "c.replaceWith": 1, + ".detach": 1, + "this.parentNode": 1, + ".before": 1, + "detach": 1, + "this.remove": 1, + "domManip": 1, + "f.support.checkClone": 2, + "bd.test": 2, + ".domManip": 1, + "g.html": 1, + "g.domManip": 1, + "j.parentNode": 1, + "f.support.parentNode": 1, + "i.nodeType": 1, + "i.childNodes.length": 1, + "f.buildFragment": 2, + "e.fragment": 1, + "h.childNodes.length": 1, + "h.firstChild": 2, + "": 1, + "k.length": 2, + ".charAt": 1, + "f.fragments": 3, + "i.createDocumentFragment": 1, + "f.clean": 1, + "appendTo": 1, + "prependTo": 1, + "insertBefore": 1, + "insertAfter": 1, + "replaceAll": 1, + "g.childNodes.length": 1, + "this.clone": 1, + "d.concat": 1, + "e.selector": 1, + "f.support.noCloneEvent": 1, + "f.support.noCloneChecked": 1, + "b.createElement": 2, + "b.createTextNode": 2, + "k.replace": 2, + "o.innerHTML": 1, + "o.lastChild": 1, + "f.support.tbody": 1, + "ba.test": 1, + "o.firstChild": 2, + "o.firstChild.childNodes": 1, + "o.childNodes": 2, + "q.length": 1, + ".childNodes.length": 1, + ".parentNode.removeChild": 2, + "o.insertBefore": 1, + "Z.exec": 1, + "f.support.appendChecked": 1, + "k.nodeType": 1, + "h.push": 1, + "be.test": 1, + ".type.toLowerCase": 1, + "h.splice.apply": 1, + "cleanData": 1, + "j.nodeName": 1, + "j.nodeName.toLowerCase": 1, + "f.removeEvent": 1, + "b.handle": 2, + "j.removeAttribute": 2, + "bo": 2, + "/alpha": 1, + "bp": 1, + "/opacity": 1, + "bq": 2, + "bs": 2, + "bv": 2, + "de": 1, + "bw": 2, + "bz": 7, + "bA": 3, + "bB": 5, + "bC": 2, + "f.fn.css": 1, + "f.style": 4, + "cssHooks": 1, + "cssNumber": 3, + "zIndex": 1, + "fontWeight": 1, + "zoom": 1, + "lineHeight": 1, + "widows": 1, + "orphans": 1, + "cssProps": 1, + "f.support.cssFloat": 1, + "f.cssHooks": 3, + "f.cssProps": 2, + "k.get": 1, + "bu.test": 1, + "d.replace": 1, + "f.cssNumber": 1, + "k.set": 1, + "g.get": 1, + "swap": 1, + "camelCase": 3, + "f.curCSS": 1, + "f.swap": 2, + "<0||e==null){e=a.style[b];return>": 1, + "0px": 1, + "f.support.opacity": 1, + "f.cssHooks.opacity": 1, + "bp.test": 1, + "a.currentStyle": 4, + "a.currentStyle.filter": 1, + "a.style.filter": 1, + "RegExp.": 1, + "/100": 2, + "c.zoom": 1, + "b*100": 1, + "d.filter": 1, + "c.filter": 2, + "bo.test": 1, + "g.replace": 1, + "f.support.reliableMarginRight": 1, + "f.cssHooks.marginRight": 1, + "a.style.marginRight": 1, + "a.ownerDocument.defaultView": 1, + "e.getComputedStyle": 1, + "g.getPropertyValue": 1, + "a.ownerDocument.documentElement": 1, + "c.documentElement.currentStyle": 1, + "a.runtimeStyle": 2, + "bs.test": 1, + "bt.test": 1, + "f.left": 3, + "a.runtimeStyle.left": 2, + "a.currentStyle.left": 1, + "f.pixelLeft": 1, + "f.expr.filters.hidden": 2, + "f.support.reliableHiddenOffsets": 1, + "f.expr.filters.visible": 1, + "bE": 2, + "bF": 1, + "bG": 3, + "n/g": 1, + "bH": 2, + "/#.*": 1, + "bI": 1, + "/mg": 1, + "bJ": 1, + "date": 1, + "datetime": 1, + "month": 1, + "time": 1, + "week": 1, + "bK": 1, + "about": 1, + "storage": 1, + "extension": 1, + "widget": 1, + "bL": 1, + "GET": 1, + "HEAD": 3, + "bM": 2, + "bN": 2, + "bO": 2, + "<\\/script>": 2, + "bP": 1, + "bR": 2, + "*/": 2, + "bS": 1, + "bT": 2, + "f.fn.load": 1, + "bV": 3, + "bW": 5, + "bX": 8, + "e.href": 1, + "bY": 1, + "bW.href": 2, + "bS.exec": 1, + "bW.toLowerCase": 1, + "bT.apply": 1, + "a.slice": 2, + "f.param": 2, + "f.ajaxSettings.traditional": 2, + "complete": 6, + "a.responseText": 1, + "a.isResolved": 1, + "a.done": 1, + "i.html": 1, + "i.each": 1, + "serialize": 1, + "this.serializeArray": 1, + "serializeArray": 1, + "this.elements": 2, + "this.disabled": 1, + "this.checked": 1, + "bP.test": 1, + "bJ.test": 1, + ".map": 1, + "b.name": 2, + "success": 2, + "getScript": 1, + "f.get": 2, + "getJSON": 1, + "ajaxSetup": 1, + "f.ajaxSettings": 4, + "ajaxSettings": 1, + "isLocal": 1, + "bK.test": 1, + "contentType": 4, + "accepts": 5, + "xml": 3, + "json": 2, + "/xml/": 1, + "/html/": 1, + "/json/": 1, + "responseFields": 1, + "converters": 2, + "a.String": 1, + "f.parseXML": 1, + "ajaxPrefilter": 1, + "ajaxTransport": 1, + "ajax": 2, + "v.readyState": 1, + "d.ifModified": 1, + "v.getResponseHeader": 2, + "f.lastModified": 1, + "f.etag": 1, + "v.status": 1, + "v.statusText": 1, + "h.resolveWith": 1, + "h.rejectWith": 1, + "v.statusCode": 2, + "g.trigger": 2, + "i.resolveWith": 1, + "f.active": 1, + "f.ajaxSetup": 3, + "d.statusCode": 1, + "readyState": 1, + "setRequestHeader": 6, + "getAllResponseHeaders": 1, + "getResponseHeader": 1, + "bI.exec": 1, + "overrideMimeType": 1, + "d.mimeType": 1, + "abort": 4, + "p.abort": 1, + "h.promise": 1, + "v.success": 1, + "v.done": 1, + "v.error": 1, + "v.fail": 1, + "v.complete": 1, + "i.done": 1, + "<2)for(b>": 1, + "status": 3, + "url=": 1, + "dataTypes=": 1, + "crossDomain=": 2, + "80": 2, + "443": 2, + "traditional": 1, + "toUpperCase": 1, + "hasContent=": 1, + "active": 2, + "ajaxStart": 1, + "hasContent": 2, + "cache=": 1, + "x=": 1, + "1_=": 1, + "_=": 1, + "Content": 1, + "Type": 1, + "ifModified": 1, + "lastModified": 3, + "Modified": 1, + "etag": 3, + "None": 1, + "Accept": 1, + "dataTypes": 4, + "q=": 1, + "01": 1, + "headers": 41, + "beforeSend": 2, + "No": 1, + "Transport": 1, + "readyState=": 1, + "ajaxSend": 1, + "timeout": 2, + "v.abort": 1, + "d.timeout": 1, + "p.send": 1, + "encodeURIComponent": 2, + "f.isPlainObject": 1, + "d.join": 1, + "cc": 2, + "cd": 3, + "jsonp": 1, + "jsonpCallback": 1, + "f.ajaxPrefilter": 2, + "b.contentType": 1, + "b.data": 5, + "b.dataTypes": 2, + "b.jsonp": 3, + "cd.test": 2, + "b.url": 4, + "b.jsonpCallback": 4, + "d.always": 1, + "b.converters": 1, + "/javascript": 1, + "ecmascript/": 1, + "a.cache": 2, + "a.crossDomain": 2, + "a.global": 1, + "f.ajaxTransport": 2, + "c.head": 1, + "c.getElementsByTagName": 1, + "send": 2, + "d.async": 1, + "a.scriptCharset": 2, + "d.charset": 1, + "d.src": 1, + "a.url": 1, + "d.onload": 3, + "d.onreadystatechange": 2, + "d.readyState": 2, + "/loaded": 1, + "complete/.test": 1, + "e.removeChild": 1, + "e.insertBefore": 1, + "e.firstChild": 1, + "cg": 7, + "f.ajaxSettings.xhr": 2, + "this.isLocal": 1, + "cors": 1, + "f.support.ajax": 1, + "c.crossDomain": 3, + "f.support.cors": 1, + "c.xhr": 1, + "c.username": 2, + "h.open": 2, + "c.url": 2, + "c.password": 1, + "c.xhrFields": 3, + "c.mimeType": 2, + "h.overrideMimeType": 2, + "h.setRequestHeader": 1, + "h.send": 1, + "c.hasContent": 1, + "h.readyState": 3, + "h.onreadystatechange": 2, + "h.abort": 1, + "h.status": 1, + "h.getAllResponseHeaders": 1, + "h.responseXML": 1, + "n.documentElement": 1, + "m.xml": 1, + "m.text": 2, + "h.responseText": 1, + "h.statusText": 1, + "c.isLocal": 1, + ".unload": 1, + "cm": 2, + "show": 10, + "hide": 8, + "cn": 1, + "co": 5, + "cp": 1, + "a.webkitRequestAnimationFrame": 1, + "a.mozRequestAnimationFrame": 1, + "a.oRequestAnimationFrame": 1, + "this.animate": 2, + "d.style": 3, + ".style": 1, + "": 1, + "_toggle": 2, + "animate": 4, + "fadeTo": 1, + "queue=": 2, + "animatedProperties=": 1, + "animatedProperties": 2, + "specialEasing": 2, + "easing": 3, + "swing": 2, + "overflow=": 2, + "overflow": 2, + "overflowX": 1, + "overflowY": 1, + "display=": 3, + "zoom=": 1, + "fx": 10, + "m=": 2, + "cur": 6, + "custom": 5, + "timers": 3, + "slideDown": 1, + "slideUp": 1, + "slideToggle": 1, + "fadeIn": 1, + "fadeOut": 1, + "fadeToggle": 1, + "duration": 4, + "duration=": 2, + "off": 1, + "speeds": 4, + "old=": 1, + "complete=": 1, + "old": 2, + "linear": 1, + "cos": 1, + "options=": 1, + "prop=": 3, + "orig=": 1, + "orig": 3, + "step": 7, + "startTime=": 1, + "start=": 1, + "end=": 1, + "unit=": 1, + "unit": 1, + "now=": 1, + "pos=": 1, + "state=": 1, + "co=": 2, + "tick": 3, + "show=": 1, + "hide=": 1, + "e.duration": 3, + "this.startTime": 2, + "this.now": 3, + "this.end": 2, + "this.pos": 4, + "this.state": 3, + "this.update": 2, + "e.animatedProperties": 5, + "this.prop": 2, + "e.overflow": 2, + "f.support.shrinkWrapBlocks": 1, + "e.hide": 2, + "e.show": 1, + "e.orig": 1, + "e.complete.call": 1, + "Infinity": 1, + "h/e.duration": 1, + "f.easing": 1, + "this.start": 2, + "*this.pos": 1, + "f.timers": 2, + "a.splice": 1, + "f.fx.stop": 1, + "slow": 1, + "fast": 1, + "a.elem": 2, + "a.now": 4, + "a.elem.style": 3, + "a.prop": 5, + "a.unit": 1, + "f.expr.filters.animated": 1, + "b.elem": 1, + "cw": 1, + "able": 1, + "f.fn.offset": 2, + "f.offset.setOffset": 2, + "b.ownerDocument.body": 2, + "f.offset.bodyOffset": 2, + "b.getBoundingClientRect": 1, + "e.documentElement": 4, + "c.top": 4, + "c.left": 4, + "e.body": 3, + "g.clientTop": 1, + "h.clientTop": 1, + "g.clientLeft": 1, + "h.clientLeft": 1, + "i.pageYOffset": 1, + "g.scrollTop": 1, + "h.scrollTop": 2, + "i.pageXOffset": 1, + "g.scrollLeft": 1, + "h.scrollLeft": 2, + "f.offset.initialize": 3, + "b.offsetParent": 2, + "g.documentElement": 1, + "g.body": 1, + "g.defaultView": 1, + "j.getComputedStyle": 2, + "b.currentStyle": 2, + "b.offsetTop": 2, + "b.offsetLeft": 2, + "f.offset.supportsFixedPosition": 2, + "k.position": 4, + "b.scrollTop": 1, + "b.scrollLeft": 1, + "f.offset.doesNotAddBorder": 1, + "f.offset.doesAddBorderForTableAndCells": 1, + "cw.test": 1, + "c.borderTopWidth": 2, + "c.borderLeftWidth": 2, + "f.offset.subtractsBorderForOverflowNotVisible": 1, + "c.overflow": 1, + "i.offsetTop": 1, + "i.offsetLeft": 1, + "i.scrollTop": 1, + "i.scrollLeft": 1, + "f.offset": 1, + "b.style": 1, + "d.nextSibling.firstChild.firstChild": 1, + "this.doesNotAddBorder": 1, + "e.offsetTop": 4, + "this.doesAddBorderForTableAndCells": 1, + "h.offsetTop": 1, + "e.style.position": 2, + "e.style.top": 2, + "this.supportsFixedPosition": 1, + "d.style.overflow": 1, + "d.style.position": 1, + "this.subtractsBorderForOverflowNotVisible": 1, + "this.doesNotIncludeMarginInBodyOffset": 1, + "a.offsetTop": 2, + "bodyOffset": 1, + "a.offsetLeft": 1, + "f.offset.doesNotIncludeMarginInBodyOffset": 1, + "setOffset": 1, + "a.style.position": 1, + "e.offset": 1, + "e.position": 1, + "l.top": 1, + "l.left": 1, + "b.top": 2, + "k.top": 1, + "g.top": 1, + "b.left": 2, + "k.left": 1, + "g.left": 1, + "b.using.call": 1, + "e.css": 1, + "this.offsetParent": 2, + "cx.test": 2, + "b.offset": 1, + "d.top": 2, + "d.left": 2, + "offsetParent": 1, + "a.offsetParent": 1, + "g.document.documentElement": 1, + "g.document.body": 1, + "g.scrollTo": 1, + ".scrollLeft": 1, + ".scrollTop": 1, + "e.document.documentElement": 1, + "e.document.compatMode": 1, + "e.document.body": 1, + "this.css": 1, + "cubes": 4, + "math": 4, + "num": 23, + "opposite": 6, + "race": 4, + "square": 10, + "__slice": 2, + "Math.sqrt": 2, + "cube": 2, + "runners": 6, + "winner": 6, + "__slice.call": 2, + "print": 2, + "elvis": 4, + "_i": 10, + "_len": 6, + "_results": 6, + "_results.push": 2, + "math.cube": 2, + "console.log": 3, + "KEYWORDS": 2, + "array_to_hash": 11, + "RESERVED_WORDS": 2, + "KEYWORDS_BEFORE_EXPRESSION": 2, + "KEYWORDS_ATOM": 2, + "OPERATOR_CHARS": 1, + "characters": 6, + "RE_HEX_NUMBER": 1, + "RE_OCT_NUMBER": 1, + "RE_DEC_NUMBER": 1, + "OPERATORS": 2, + "WHITESPACE_CHARS": 2, + "PUNC_BEFORE_EXPRESSION": 2, + "PUNC_CHARS": 1, + "REGEXP_MODIFIERS": 1, + "UNICODE": 1, + "non_spacing_mark": 1, + "space_combining_mark": 1, + "connector_punctuation": 1, + "is_letter": 3, + "UNICODE.letter.test": 1, + "is_digit": 3, + "ch.charCodeAt": 1, + "//XXX": 1, + "out": 1, + "means": 1, + "than": 3, + "is_alphanumeric_char": 3, + "is_unicode_combining_mark": 2, + "UNICODE.non_spacing_mark.test": 1, + "UNICODE.space_combining_mark.test": 1, + "is_unicode_connector_punctuation": 2, + "UNICODE.connector_punctuation.test": 1, + "is_identifier_start": 2, + "is_identifier_char": 1, + "zero": 2, + "joiner": 2, + "": 1, + "": 1, + "my": 1, + "ECMA": 1, + "PDF": 1, + "parse_js_number": 2, + "RE_HEX_NUMBER.test": 1, + "num.substr": 2, + "RE_OCT_NUMBER.test": 1, + "RE_DEC_NUMBER.test": 1, + "JS_Parse_Error": 2, + "message": 5, + "this.col": 2, + "ex": 3, + "ex.name": 1, + "this.stack": 2, + "ex.stack": 1, + "JS_Parse_Error.prototype.toString": 1, + "js_error": 2, + "is_token": 1, + "token": 5, + "token.type": 1, + "token.value": 1, + "EX_EOF": 3, + "tokenizer": 2, + "TEXT": 1, + "TEXT.replace": 1, + "uFEFF/": 1, + "tokpos": 1, + "tokline": 1, + "tokcol": 1, + "newline_before": 1, + "regex_allowed": 1, + "comments_before": 1, + "peek": 5, + "S.text.charAt": 2, + "S.pos": 4, + "signal_eof": 4, + "S.newline_before": 3, + "S.line": 2, + "S.col": 3, + "eof": 6, + "S.peek": 1, + "what": 2, + "S.text.indexOf": 1, + "start_token": 1, + "S.tokline": 3, + "S.tokcol": 3, + "S.tokpos": 3, + "is_comment": 2, + "S.regex_allowed": 1, + "HOP": 5, + "UNARY_POSTFIX": 1, + "nlb": 1, + "ret.comments_before": 1, + "S.comments_before": 2, + "skip_whitespace": 1, + "read_while": 2, + "pred": 2, + "parse_error": 3, + "err": 5, + "read_num": 1, + "prefix": 6, + "has_e": 3, + "after_e": 5, + "has_x": 5, + "has_dot": 3, + "valid": 4, + "read_escaped_char": 1, + "hex_bytes": 3, + "digit": 3, + "<<": 4, + "read_string": 1, + "with_eof_error": 1, + "comment1": 1, + "Unterminated": 2, + "multiline": 1, + "comment2": 1, + "WARNING": 1, + "***": 1, + "Found": 1, + "warn": 3, + "tok": 1, + "read_name": 1, + "backslash": 2, + "Expecting": 1, + "UnicodeEscapeSequence": 1, + "uXXXX": 1, + "Unicode": 1, + "identifier": 1, + "regular": 1, + "regexp": 5, + "operator": 14, + "punc": 27, + "atom": 5, + "keyword": 11, + "Unexpected": 3, + "void": 1, + "<\",>": 1, + "<=\",>": 1, + "debugger": 2, + "outside": 2, + "const": 2, + "stat": 1, + "Label": 1, + "without": 1, + "statement": 1, + "inside": 3, + "defun": 1, + "Name": 1, + "Missing": 1, + "catch/finally": 1, + "blocks": 1, + "unary": 2, + "dot": 2, + "postfix": 1, + "Invalid": 2, + "binary": 1, + "conditional": 1, + "assign": 1, + "assignment": 1, + "seq": 1, + "member": 2, + "array.length": 1, + "Object.prototype.hasOwnProperty.call": 1, + "exports.tokenizer": 1, + "exports.parse": 1, + "parse": 1, + "exports.slice": 1, + "exports.curry": 1, + "curry": 1, + "exports.member": 1, + "exports.array_to_hash": 1, + "exports.PRECEDENCE": 1, + "PRECEDENCE": 1, + "exports.KEYWORDS_ATOM": 1, + "exports.RESERVED_WORDS": 1, + "exports.KEYWORDS": 1, + "exports.ATOMIC_START_TOKEN": 1, + "ATOMIC_START_TOKEN": 1, + "exports.OPERATORS": 1, + "exports.is_alphanumeric_char": 1, + "exports.set_logger": 1, + "logger": 2, + "rdigit": 1, + "readyList.resolveWith": 1, + "jQuery._Deferred": 3, + "breaking": 1, + "Promise": 1, + "promiseMethods": 3, + "Static": 1, + "sliceDeferred": 1, + "Create": 1, + "doing": 3, + "flag": 1, + "cancelled": 5, + "f1": 1, + "f2": 1, + "...": 1, + "_fired": 5, + "deferred.done.apply": 2, + "callbacks.push": 1, + "deferred.resolveWith": 5, + "given": 3, + "available": 1, + "#8421": 1, + "callbacks.shift": 1, + "Has": 1, + "resolved": 1, + "Cancel": 1, + "Full": 1, + "fledged": 1, + "two": 1, + "func": 3, + "failDeferred": 1, + "errorDeferred": 1, + "doneCallbacks": 2, + "failCallbacks": 2, + "deferred.done": 2, + ".fail": 2, + ".fail.apply": 1, + "failDeferred.done": 1, + "failDeferred.resolveWith": 1, + "failDeferred.resolve": 1, + "failDeferred.isResolved": 1, + "fnDone": 2, + "fnFail": 2, + "jQuery.Deferred": 1, + "newDefer": 3, + "action": 3, + "returned": 4, + "fn.apply": 1, + "returned.promise": 2, + "newDefer.resolve": 1, + "newDefer.reject": 1, + "provided": 1, + "aspect": 1, + "added": 1, + "promiseMethods.length": 1, + "failDeferred.cancel": 1, + "deferred.cancel": 2, + "Unexpose": 1, + "Call": 1, + "func.call": 1, + "helper": 1, + "firstParam": 6, + "count": 4, + "<=>": 1, + "resolveFunc": 2, + "sliceDeferred.call": 2, + "Strange": 1, + "FF4": 1, + "Values": 1, + "onto": 2, + "sometimes": 1, + ".when": 1, + "Cloning": 2, + "into": 2, + "fresh": 1, + "solves": 1, + "issue": 1, + "deferred.reject": 1, + "deferred.promise": 1, + "jQuery.support": 1, + "bodyStyle": 1, + "Preliminary": 1, + "div.setAttribute": 1, + "automatically": 2, + "inserted": 1, + "insert": 1, + "tables": 1, + "serialized": 3, + "correctly": 1, + "innerHTML": 1, + "This": 3, + "requires": 1, + "wrapper": 1, + "URLs": 1, + "opt.selected": 1, + "setAttribute": 1, + "class.": 1, + "works": 1, + "attrFixes": 1, + "get/setAttribute": 1, + "ie6/7": 1, + "div.className": 1, + "later": 1, + "properly": 2, + "cloned": 1, + "input.checked": 1, + "support.noCloneChecked": 1, + "input.cloneNode": 1, + "selects": 1, + "Internet": 1, + "Explorer": 1, + "div.test": 1, + "support.deleteExpando": 1, + "div.addEventListener": 1, + "div.attachEvent": 2, + "div.fireEvent": 1, + "shouldn": 2, + "GC": 2, + "references": 1, + "across": 1, + "boundary": 1, + "attached": 1, + "occur": 1, + "defining": 1, + "allows": 1, + "shortcut": 1, + "same": 1, + "path": 5, + "Avoid": 1, + "trying": 1, + "since": 1, + "ends": 1, + "jQuery.uuid": 1, + "TODO": 2, + "hack": 2, + "ONLY.": 2, + "Avoids": 2, + "exposing": 2, + "metadata": 2, + "plain": 2, + "jQuery.noop": 2, + "An": 1, + "key/value": 1, + "pair": 1, + "shallow": 1, + "copied": 1, + "existing": 1, + "Internal": 1, + "separate": 1, + "destroy": 1, + "had": 1, + "thing": 2, + "internalCache": 3, + "Browsers": 1, + "deletion": 1, + "refuse": 1, + "browsers": 2, + "faster": 1, + "iterating": 1, + "persist": 1, + "existed": 1, + "jQuery.isNaN": 1, + "Normalize": 1, + "jQuery.attrFix": 2, + "formHook": 3, + "forms": 1, + "rinvalidChar.test": 1, + "jQuery.support.getSetAttribute": 1, + "elem.removeAttributeNode": 1, + "elem.getAttributeNode": 1, + "bubbling": 1, + "live.": 2, + "hasDuplicate": 1, + "baseHasDuplicate": 2, + "rBackslash": 1, + "rNonWord": 1, + "Sizzle": 1, + "results": 4, + "seed": 1, + "origContext": 1, + "context.nodeType": 2, + "checkSet": 1, + "extra": 1, + "pop": 1, + "prune": 1, + "contextXML": 1, + "Sizzle.isXML": 1, + "soFar": 1, + "Reset": 1, + "util": 1, + "require": 9, + "net": 1, + "stream": 1, + "EventEmitter": 3, + ".EventEmitter": 1, + "FreeList": 2, + ".FreeList": 1, + "HTTPParser": 2, + "process.binding": 1, + ".HTTPParser": 1, + "assert": 8, + ".ok": 1, + "END_OF_FILE": 3, + "debug": 15, + "process.env.NODE_DEBUG": 2, + "/http/.test": 1, + "console.error": 3, + "parserOnHeaders": 2, + "this.maxHeaderPairs": 2, + "this._headers.length": 1, + "this._headers": 13, + "this._headers.concat": 1, + "this._url": 1, + "parserOnHeadersComplete": 2, + "parser": 27, + "info.headers": 1, + "info.url": 1, + "parser._headers": 6, + "parser._url": 4, + "parser.incoming": 9, + "IncomingMessage": 4, + "parser.socket": 4, + "parser.incoming.httpVersionMajor": 1, + "info.versionMajor": 2, + "parser.incoming.httpVersionMinor": 1, + "info.versionMinor": 2, + "parser.incoming.httpVersion": 1, + "parser.incoming.url": 1, + "headers.length": 2, + "parser.maxHeaderPairs": 4, + "parser.incoming._addHeaderLine": 2, + "info.method": 2, + "parser.incoming.method": 1, + "parser.incoming.statusCode": 2, + "info.statusCode": 1, + "parser.incoming.upgrade": 4, + "info.upgrade": 2, + "skipBody": 3, + "response": 3, + "CONNECT": 1, + "parser.onIncoming": 3, + "info.shouldKeepAlive": 1, + "parserOnBody": 2, + "b.slice": 1, + "parser.incoming._paused": 2, + "parser.incoming._pendings.length": 2, + "parser.incoming._pendings.push": 2, + "parser.incoming._emitData": 1, + "parserOnMessageComplete": 2, + "parser.incoming.complete": 2, + "parser.incoming.readable": 1, + "parser.incoming._emitEnd": 1, + "parser.socket.readable": 1, + "parser.socket.resume": 1, + "parsers": 2, + "HTTPParser.REQUEST": 2, + "parser.onHeaders": 1, + "parser.onHeadersComplete": 1, + "parser.onBody": 1, + "parser.onMessageComplete": 1, + "exports.parsers": 1, + "CRLF": 13, + "STATUS_CODES": 2, + "exports.STATUS_CODES": 1, + "RFC": 16, + "obsoleted": 1, + "connectionExpression": 1, + "/Connection/i": 1, + "transferEncodingExpression": 1, + "/Transfer": 1, + "Encoding/i": 1, + "closeExpression": 1, + "/close/i": 1, + "chunkExpression": 1, + "/chunk/i": 1, + "contentLengthExpression": 1, + "/Content": 1, + "Length/i": 1, + "dateExpression": 1, + "/Date/i": 1, + "expectExpression": 1, + "/Expect/i": 1, + "continueExpression": 1, + "continue/i": 1, + "dateCache": 5, + "utcDate": 2, + "d.toUTCString": 1, + "d.getMilliseconds": 1, + "socket": 26, + "stream.Stream.call": 2, + "this.socket": 10, + "this.connection": 8, + "this.httpVersion": 1, + "this.complete": 2, + "this.headers": 2, + "this.trailers": 2, + "this.readable": 1, + "this._paused": 3, + "this._pendings": 1, + "this._endEmitted": 3, + "this.url": 1, + "this.method": 2, + "this.statusCode": 3, + "this.client": 1, + "util.inherits": 7, + "stream.Stream": 2, + "exports.IncomingMessage": 1, + "IncomingMessage.prototype.destroy": 1, + "this.socket.destroy": 3, + "IncomingMessage.prototype.setEncoding": 1, + "StringDecoder": 2, + ".StringDecoder": 1, + "lazy": 1, + "this._decoder": 2, + "IncomingMessage.prototype.pause": 1, + "this.socket.pause": 1, + "IncomingMessage.prototype.resume": 1, + "this.socket.resume": 1, + "this._emitPending": 1, + "IncomingMessage.prototype._emitPending": 1, + "this._pendings.length": 1, + "process.nextTick": 1, + "self._paused": 1, + "self._pendings.length": 2, + "chunk": 14, + "self._pendings.shift": 1, + "Buffer.isBuffer": 2, + "self._emitData": 1, + "self.readable": 1, + "self._emitEnd": 1, + "IncomingMessage.prototype._emitData": 1, + "this._decoder.write": 1, + "string.length": 1, + "this.emit": 5, + "IncomingMessage.prototype._emitEnd": 1, + "IncomingMessage.prototype._addHeaderLine": 1, + "field": 36, + "dest": 12, + "field.toLowerCase": 1, + ".push": 3, + "field.slice": 1, + "OutgoingMessage": 5, + "this.output": 3, + "this.outputEncodings": 2, + "this.writable": 1, + "this._last": 3, + "this.chunkedEncoding": 6, + "this.shouldKeepAlive": 4, + "this.useChunkedEncodingByDefault": 4, + "this.sendDate": 3, + "this._hasBody": 6, + "this._trailer": 5, + "this.finished": 4, + "exports.OutgoingMessage": 1, + "OutgoingMessage.prototype.destroy": 1, + "OutgoingMessage.prototype._send": 1, + "this._headerSent": 5, + "this._header": 10, + "this.output.unshift": 1, + "this.outputEncodings.unshift": 1, + "this._writeRaw": 2, + "OutgoingMessage.prototype._writeRaw": 1, + "data.length": 3, + "this.connection._httpMessage": 3, + "this.connection.writable": 3, + "this.output.length": 5, + "this._buffer": 2, + "this.output.shift": 2, + "this.outputEncodings.shift": 2, + "this.connection.write": 4, + "OutgoingMessage.prototype._buffer": 1, + "this.output.push": 2, + "this.outputEncodings.push": 2, + "lastEncoding": 2, + "lastData": 2, + "data.constructor": 1, + "lastData.constructor": 1, + "OutgoingMessage.prototype._storeHeader": 1, + "firstLine": 2, + "sentConnectionHeader": 3, + "sentContentLengthHeader": 4, + "sentTransferEncodingHeader": 3, + "sentDateHeader": 3, + "sentExpect": 3, + "messageHeader": 7, + "store": 3, + "connectionExpression.test": 1, + "closeExpression.test": 1, + "self._last": 4, + "self.shouldKeepAlive": 4, + "transferEncodingExpression.test": 1, + "chunkExpression.test": 1, + "self.chunkedEncoding": 1, + "contentLengthExpression.test": 1, + "dateExpression.test": 1, + "expectExpression.test": 1, + "Object.keys": 5, + "keys.length": 5, + "value.length": 1, + "shouldSendKeepAlive": 2, + "this.agent": 2, + "this._send": 8, + "OutgoingMessage.prototype.setHeader": 1, + "this._headerNames": 5, + "OutgoingMessage.prototype.getHeader": 1, + "OutgoingMessage.prototype.removeHeader": 1, + "OutgoingMessage.prototype._renderHeaders": 1, + "OutgoingMessage.prototype.write": 1, + "this._implicitHeader": 2, + "chunk.length": 2, + "Buffer.byteLength": 2, + "len.toString": 2, + "OutgoingMessage.prototype.addTrailers": 1, + "OutgoingMessage.prototype.end": 1, + "hot": 3, + "this.write": 1, + "chunk.": 1, + "this._finish": 2, + "OutgoingMessage.prototype._finish": 1, + "ServerResponse": 5, + "DTRACE_HTTP_SERVER_RESPONSE": 1, + "ClientRequest": 6, + "DTRACE_HTTP_CLIENT_REQUEST": 1, + "OutgoingMessage.prototype._flush": 1, + "this.socket.writable": 2, + "XXX": 1, + "Necessary": 1, + "this.socket.write": 1, + "req": 32, + "OutgoingMessage.call": 2, + "req.method": 5, + "req.httpVersionMajor": 2, + "req.httpVersionMinor": 2, + "exports.ServerResponse": 1, + "ServerResponse.prototype.statusCode": 1, + "onServerResponseClose": 3, + "this._httpMessage.emit": 2, + "ServerResponse.prototype.assignSocket": 1, + "socket._httpMessage": 9, + "socket.on": 2, + "this._flush": 1, + "ServerResponse.prototype.detachSocket": 1, + "socket.removeListener": 5, + "ServerResponse.prototype.writeContinue": 1, + "this._sent100": 2, + "ServerResponse.prototype._implicitHeader": 1, + "this.writeHead": 1, + "ServerResponse.prototype.writeHead": 1, + "statusCode": 7, + "reasonPhrase": 4, + "headerIndex": 4, + "this._renderHeaders": 3, + "obj.length": 1, + "obj.push": 1, + "statusLine": 2, + "statusCode.toString": 1, + "this._expect_continue": 1, + "this._storeHeader": 2, + "ServerResponse.prototype.writeHeader": 1, + "this.writeHead.apply": 1, + "Agent": 5, + "self.options": 2, + "self.requests": 6, + "self.sockets": 3, + "self.maxSockets": 1, + "self.options.maxSockets": 1, + "Agent.defaultMaxSockets": 2, + "self.on": 1, + "port": 29, + "localAddress": 15, + ".shift": 1, + ".onSocket": 1, + "socket.destroy": 10, + "self.createConnection": 2, + "net.createConnection": 3, + "exports.Agent": 1, + "Agent.prototype.defaultPort": 1, + "Agent.prototype.addRequest": 1, + "this.sockets": 9, + "this.maxSockets": 1, + "req.onSocket": 1, + "this.createSocket": 2, + "this.requests": 5, + "Agent.prototype.createSocket": 1, + "util._extend": 1, + "options.port": 4, + "options.host": 4, + "options.localAddress": 3, + "onFree": 3, + "self.emit": 9, + "s.on": 4, + "onClose": 3, + "self.removeSocket": 2, + "onRemove": 3, + "s.removeListener": 3, + "Agent.prototype.removeSocket": 1, + ".emit": 1, + "globalAgent": 3, + "exports.globalAgent": 1, + "self.agent": 3, + "options.agent": 3, + "defaultPort": 3, + "options.defaultPort": 1, + "options.hostname": 1, + "options.setHost": 1, + "setHost": 2, + "self.socketPath": 4, + "options.socketPath": 1, + "self.method": 3, + "options.method": 2, + "self.path": 3, + "options.path": 2, + "self.once": 2, + "options.headers": 7, + "self.setHeader": 1, + "this.getHeader": 2, + "hostHeader": 3, + "this.setHeader": 2, + "options.auth": 2, + "//basic": 1, + "auth": 1, + "Buffer": 1, + "self.useChunkedEncodingByDefault": 2, + "self._storeHeader": 2, + "self.getHeader": 1, + "self._renderHeaders": 1, + "options.createConnection": 4, + "self.onSocket": 3, + "self.agent.addRequest": 1, + "conn": 3, + "self._deferToConnect": 1, + "self._flush": 1, + "exports.ClientRequest": 1, + "ClientRequest.prototype._implicitHeader": 1, + "this.path": 1, + "ClientRequest.prototype.abort": 1, + "this._deferToConnect": 3, + "createHangUpError": 3, + "error.code": 1, + "freeParser": 9, + "parser.socket.onend": 1, + "parser.socket.ondata": 1, + "parser.socket.parser": 1, + "parsers.free": 1, + "req.parser": 1, + "socketCloseListener": 2, + "socket.parser": 3, + "req.emit": 8, + "req.res": 8, + "req.res.readable": 1, + "req.res.emit": 1, + "res": 14, + "req.res._emitPending": 1, + "res._emitEnd": 1, + "res.emit": 1, + "req._hadError": 3, + "parser.finish": 6, + "socketErrorListener": 2, + "err.message": 1, + "err.stack": 1, + "socketOnEnd": 1, + "this._httpMessage": 3, + "this.parser": 2, + "socketOnData": 1, + "parser.execute": 2, + "bytesParsed": 4, + "socket.ondata": 3, + "socket.onend": 3, + "bodyHead": 4, + "d.slice": 2, + "req.listeners": 1, + "req.upgradeOrConnect": 1, + "socket.emit": 1, + "parserOnIncomingClient": 1, + "shouldKeepAlive": 4, + "res.upgrade": 1, + "isHeadResponse": 2, + "res.statusCode": 1, + "Clear": 1, + "upgraded": 1, + "WebSockets": 1, + "AGENT": 2, + "socket.destroySoon": 2, + "keep": 1, + "alive": 1, + "close": 2, + "free": 1, + "important": 1, + "promisy": 1, + "onSocket": 3, + "self.socket.writable": 1, + "self.socket": 5, + "arguments_": 2, + "self.socket.once": 1, + "ClientRequest.prototype.setTimeout": 1, + "msecs": 4, + "this.once": 2, + "emitTimeout": 4, + "this.socket.setTimeout": 1, + "this.socket.once": 1, + "this.setTimeout": 3, + "sock": 1, + "ClientRequest.prototype.setNoDelay": 1, + "ClientRequest.prototype.setSocketKeepAlive": 1, + "ClientRequest.prototype.clearTimeout": 1, + "exports.request": 2, + "url.parse": 1, + "options.protocol": 3, + "exports.get": 1, + "req.end": 1, + "ondrain": 3, + "httpSocketSetup": 2, + "Server": 6, + "requestListener": 6, + "net.Server.call": 1, + "allowHalfOpen": 1, + "this.addListener": 2, + "this.httpAllowHalfOpen": 1, + "connectionListener": 3, + "net.Server": 1, + "exports.Server": 1, + "exports.createServer": 1, + "outgoing": 2, + "incoming": 2, + "abortIncoming": 3, + "incoming.length": 2, + "incoming.shift": 2, + "serverSocketCloseListener": 3, + "socket.setTimeout": 1, + "minute": 1, + "socket.once": 1, + "parsers.alloc": 1, + "parser.reinitialize": 1, + "this.maxHeadersCount": 2, + "socket.addListener": 2, + "self.listeners": 2, + "req.socket": 1, + "self.httpAllowHalfOpen": 1, + "socket.writable": 2, + "socket.end": 2, + "outgoing.length": 2, + "._last": 1, + "socket._httpMessage._last": 1, + "incoming.push": 1, + "res.shouldKeepAlive": 1, + "DTRACE_HTTP_SERVER_REQUEST": 1, + "outgoing.push": 1, + "res.assignSocket": 1, + "res.on": 1, + "res.detachSocket": 1, + "res._last": 1, + "outgoing.shift": 1, + "m.assignSocket": 1, + "req.headers": 2, + "continueExpression.test": 1, + "res._expect_continue": 1, + "res.writeContinue": 1, + "response.": 1, + "exports._connectionListener": 1, + "Client": 6, + "this.host": 1, + "this.port": 1, + "maxSockets": 1, + "Client.prototype.request": 1, + "self.host": 1, + "self.port": 1, + "c.on": 2, + "exports.Client": 1, + "module.deprecate": 2, + "exports.createClient": 1, + "SHEBANG#!node": 2, + "http.createServer": 1, + "res.writeHead": 1, + "res.end": 1, + ".listen": 1, + "window.angular": 1, + "Animal.name": 1, + "_super": 4, + "Snake.name": 1, + "Horse.name": 1, + "jshint": 1, + "Modal": 2, + "this.": 2, + ".proxy": 1, + "this.hide": 1, + "Modal.prototype": 1, + "this.isShown": 3, + ".Event": 1, + "element.trigger": 1, + ".addClass": 1, + "escape.call": 1, + "backdrop.call": 1, + "transition": 1, + ".support.transition": 1, + "that.": 3, + "element.hasClass": 1, + "element.parent": 1, + "element.appendTo": 1, + "//don": 1, + "shown": 2, + "modal": 4, + "fade": 4, + "keyup.dismiss.modal": 2, + "click.modal.data": 1, + "api": 1, + ".extend": 1, + "target.data": 1, + "e.preventDefault": 1, + "target.modal": 1 }, - "PHP": { - "<": 11, - "php": 12, - "namespace": 28, - "Symfony": 24, - "Component": 24, - "Console": 17, - ";": 1383, - "use": 23, - "Input": 6, - "InputInterface": 4, - "ArgvInput": 2, - "ArrayInput": 3, - "InputDefinition": 2, - "InputOption": 15, - "InputArgument": 3, - "Output": 5, - "OutputInterface": 6, - "ConsoleOutput": 2, - "ConsoleOutputInterface": 2, - "Command": 6, - "HelpCommand": 2, - "ListCommand": 2, - "Helper": 3, - "HelperSet": 3, - "FormatterHelper": 2, - "DialogHelper": 2, - "class": 21, - "Application": 3, - "{": 974, - "private": 24, - "commands": 39, - "wantHelps": 4, - "false": 154, - "runningCommand": 5, - "name": 181, - "version": 8, - "catchExceptions": 4, - "autoExit": 4, - "definition": 3, - "helperSet": 6, - "public": 202, - "function": 205, - "__construct": 8, - "(": 2416, - ")": 2417, - "this": 928, - "-": 1271, - "true": 133, - "array": 296, - "getDefaultHelperSet": 2, - "getDefaultInputDefinition": 2, - "foreach": 94, - "getDefaultCommands": 2, - "as": 96, - "command": 41, - "add": 7, - "}": 972, - "run": 4, - "input": 20, - "null": 164, - "output": 60, - "if": 450, - "new": 74, - "try": 3, - "statusCode": 14, - "doRun": 2, - "catch": 3, - "Exception": 1, - "e": 18, - "throw": 19, - "instanceof": 8, - "renderException": 3, - "getErrorOutput": 2, - "else": 70, - "getCode": 1, - "is_numeric": 7, - "&&": 119, - "exit": 7, - "return": 305, - "getCommandName": 2, - "hasParameterOption": 7, - "setDecorated": 2, - "elseif": 31, - "setInteractive": 2, - "function_exists": 4, - "getHelperSet": 3, - "has": 7, - "inputStream": 2, - "get": 12, - "getInputStream": 1, - "posix_isatty": 1, - "setVerbosity": 2, - "VERBOSITY_QUIET": 1, - "VERBOSITY_VERBOSE": 2, - "writeln": 13, - "getLongVersion": 3, - "find": 17, - "setHelperSet": 1, - "getDefinition": 2, - "getHelp": 2, - "messages": 16, - "sprintf": 27, - "getOptions": 1, - "option": 5, - "[": 672, - "]": 672, - ".": 169, - "getName": 14, - "getShortcut": 2, - "getDescription": 3, - "implode": 8, - "PHP_EOL": 3, - "setCatchExceptions": 1, - "boolean": 4, - "Boolean": 4, - "setAutoExit": 1, - "setName": 1, - "getVersion": 3, - "setVersion": 1, - "register": 1, - "addCommands": 1, - "setApplication": 2, - "isEnabled": 1, - "getAliases": 3, - "alias": 87, - "isset": 101, - "InvalidArgumentException": 9, - "helpCommand": 3, - "setCommand": 1, - "getNamespaces": 3, - "namespaces": 4, - "extractNamespace": 7, - "array_values": 5, - "array_unique": 4, - "array_filter": 2, - "findNamespace": 4, - "allNamespaces": 3, - "n": 12, - "explode": 9, - "found": 4, - "i": 36, - "part": 10, - "abbrevs": 31, - "static": 6, - "getAbbreviations": 4, - "array_map": 2, - "p": 3, - "message": 12, + "Visual Basic": { + "VERSION": 1, + "CLASS": 1, + "BEGIN": 1, + "MultiUse": 1, + "-": 9, + "NotPersistable": 1, + "DataBindingBehavior": 1, + "vbNone": 1, + "MTSTransactionMode": 1, + "*************************************************************************************************************************************************************************************************************************************************": 2, + "Copyright": 1, + "(": 20, + "c": 1, + ")": 20, + "David": 1, + "Briant": 1, + "All": 1, + "rights": 1, + "reserved": 1, + "Option": 1, + "Explicit": 1, + "Private": 25, + "Declare": 3, + "Function": 5, + "apiSetProp": 4, + "Lib": 3, + "Alias": 3, + "ByVal": 6, + "hwnd": 2, + "As": 34, + "Long": 10, + "lpString": 2, + "String": 13, + "hData": 1, + "apiGlobalAddAtom": 3, + "apiSetForegroundWindow": 1, + "myMouseEventsForm": 5, + "fMouseEventsForm": 2, + "WithEvents": 3, + "myAST": 3, + "cTP_AdvSysTray": 2, + "Attribute": 3, + "myAST.VB_VarHelpID": 1, + "myClassName": 2, + "myWindowName": 2, + "Const": 9, + "TEN_MILLION": 1, + "Single": 1, + "myListener": 1, + "VLMessaging.VLMMMFileListener": 1, + "myListener.VB_VarHelpID": 1, + "myMMFileTransports": 2, + "VLMessaging.VLMMMFileTransports": 1, + "myMMFileTransports.VB_VarHelpID": 1, + "myMachineID": 1, + "myRouterSeed": 1, + "myRouterIDsByMMTransportID": 1, + "New": 6, + "Dictionary": 3, + "myMMTransportIDsByRouterID": 2, + "myDirectoryEntriesByIDString": 1, + "GET_ROUTER_ID": 1, + "GET_ROUTER_ID_REPLY": 1, + "REGISTER_SERVICE": 1, + "REGISTER_SERVICE_REPLY": 1, + "UNREGISTER_SERVICE": 1, + "UNREGISTER_SERVICE_REPLY": 1, + "GET_SERVICES": 1, + "GET_SERVICES_REPLY": 1, + "Initialize": 1, + "/": 1, + "Release": 1, + "hide": 1, + "us": 1, + "from": 2, + "the": 7, + "Applications": 1, + "list": 1, + "in": 1, + "Windows": 1, + "Task": 1, + "Manager": 1, + "App.TaskVisible": 1, + "False": 1, + "create": 1, + "tray": 1, + "icon": 1, + "Set": 5, + "myAST.create": 1, + "myMouseEventsForm.icon": 1, + "make": 1, + "myself": 1, + "easily": 2, + "found": 1, + "myMouseEventsForm.hwnd": 3, + "End": 11, + "Sub": 9, + "shutdown": 1, + "myAST.destroy": 1, + "Nothing": 2, + "Unload": 1, + "myAST_RButtonUp": 1, + "Dim": 1, + "epm": 1, + "cTP_EasyPopupMenu": 1, + "menuItemSelected": 1, + "epm.addMenuItem": 3, + "MF_STRING": 3, + "epm.addSubmenuItem": 2, + "MF_SEPARATOR": 1, + "MF_CHECKED": 1, + "route": 2, + "to": 4, + "a": 4, + "remote": 1, + "machine": 1, + "Else": 1, + "for": 4, + "moment": 1, + "just": 1, + "between": 1, + "MMFileTransports": 1, + "If": 4, + "myMMTransportIDsByRouterID.Exists": 1, + "message.toAddress.RouterID": 2, + "Then": 1, + "transport": 1, + "transport.send": 1, + "messageToBytes": 1, + "message": 1, + "directoryEntryIDString": 2, + "serviceType": 2, + "address": 1, + "VLMAddress": 1, + "&": 7, + "address.MachineID": 1, + "address.RouterID": 1, + "address.AgentID": 1, + "myMMFileTransports_disconnecting": 1, + "id": 1, + "oReceived": 2, + "Boolean": 1, + "True": 1, + "@Code": 1, + "ViewData": 1, + "Code": 1, + "@section": 1, + "featured": 1, + "
": 1, + "class=": 7, + "
": 1, + "
": 1, + "

": 1, + "@ViewData": 2, + ".": 3, + "

": 1, + "

": 1, + "

": 1, + "
": 1, + "

": 1, + "To": 1, + "learn": 1, + "more": 4, + "about": 2, + "ASP.NET": 5, + "MVC": 4, + "visit": 2, + "": 5, + "href=": 5, + "title=": 2, + "http": 1, + "//asp.net/mvc": 1, + "": 5, + "The": 1, + "page": 1, + "features": 3, + "": 1, + "videos": 1, + "tutorials": 1, + "and": 6, + "samples": 1, + "": 1, + "help": 1, + "you": 4, + "get": 1, + "most": 1, + "MVC.": 1, + "have": 1, + "any": 1, + "questions": 1, + "our": 1, + "forums": 1, + "

": 1, + "
": 1, + "
": 1, + "Section": 1, + "

": 1, + "We": 1, + "suggest": 1, + "following": 1, + "

": 1, + "
    ": 1, + "
  1. ": 3, + "
    ": 3, + "Getting": 1, + "Started": 1, + "
    ": 3, + "gives": 2, + "powerful": 1, + "patterns": 1, + "based": 1, + "way": 1, + "build": 1, + "dynamic": 1, + "websites": 1, + "that": 5, + "enables": 1, + "clean": 1, + "separation": 1, + "of": 2, + "concerns": 1, + "full": 1, + "control": 1, + "over": 1, + "markup": 1, + "enjoyable": 1, + "agile": 1, + "development.": 1, + "includes": 1, + "many": 1, + "enable": 1, + "fast": 1, + "TDD": 1, + "friendly": 1, + "development": 1, + "creating": 1, + "sophisticated": 1, + "applications": 1, + "use": 1, + "latest": 1, + "web": 2, + "standards.": 1, + "Learn": 3, + "
  2. ": 3, + "Add": 1, + "NuGet": 2, + "packages": 1, + "jump": 1, + "start": 1, + "your": 2, + "coding": 1, + "makes": 1, + "it": 1, + "easy": 1, + "install": 1, + "update": 1, + "free": 1, + "libraries": 1, + "tools.": 1, + "Find": 1, + "Web": 1, + "Hosting": 1, + "You": 1, + "can": 1, + "find": 1, + "hosting": 1, + "company": 1, + "offers": 1, + "right": 1, + "mix": 1, + "price": 1, + "applications.": 1, + "
": 1, + "Module": 2, + "Module1": 1, + "Main": 1, + "Console.Out.WriteLine": 2 + }, + "GAP": { + "#############################################################################": 63, + "##": 766, + "Magic.gi": 1, + "AutoDoc": 4, + "package": 10, + "Copyright": 6, + "Max": 2, + "Horn": 2, + "JLU": 2, + "Giessen": 2, + "Sebastian": 2, + "Gutsche": 2, + "University": 4, + "of": 114, + "Kaiserslautern": 2, + "BindGlobal": 7, + "(": 721, + "function": 37, + "str": 8, + "suffix": 3, + ")": 722, + "local": 16, + "n": 31, + "m": 8, + ";": 569, + "Length": 14, + "return": 41, + "and": 102, + "{": 21, + "[": 145, + "-": 67, + "+": 9, + "]": 169, + "}": 21, + "end": 34, + "i": 25, + "while": 5, + "<": 17, + "do": 18, + "od": 15, + "if": 103, + "then": 128, + "fi": 91, + "d": 16, + "tmp": 20, + "not": 49, + "IsDirectoryPath": 1, + "CreateDir": 2, + "#": 73, + "Note": 3, + "is": 72, + "currently": 1, + "undocumented": 1, + "fail": 18, + "Error": 7, + "LastSystemError": 1, + ".message": 1, + "false": 7, + "true": 21, + "pkg": 32, + "subdirs": 2, + "extensions": 1, + "d_rel": 6, + "files": 4, + "result": 9, + "for": 53, + "in": 64, + "DirectoriesPackageLibrary": 2, + "IsEmpty": 6, + "continue": 3, + "Directory": 5, + "DirectoryContents": 1, + "Sort": 1, + "AUTODOC_GetSuffix": 2, + "IsReadableFile": 2, + "Filename": 8, + "Add": 4, + "Make": 1, + "this": 15, + "callable": 1, + "with": 24, + "the": 136, + "package_name": 1, + "AutoDocWorksheet.": 1, + "Which": 1, + "will": 5, + "create": 1, + "a": 113, + "worksheet": 1, + "InstallGlobalFunction": 5, + "arg": 16, + "package_info": 3, + "opt": 3, + "scaffold": 12, + "gapdoc": 7, + "maketest": 12, + "autodoc": 8, + "pkg_dir": 5, + "doc_dir": 18, + "doc_dir_rel": 3, + "title_page": 7, + "tree": 8, + "is_worksheet": 13, + "position_document_class": 7, + "gapdoc_latex_option_record": 4, + "LowercaseString": 3, + "rec": 20, + "DirectoryCurrent": 1, + "else": 25, + "PackageInfo": 1, + "key": 3, + "val": 4, + "ValueOption": 1, + "opt.": 1, + "IsBound": 39, + "opt.dir": 4, + "elif": 21, + "IsString": 7, + "or": 13, + "IsDirectory": 1, + "AUTODOC_CreateDirIfMissing": 1, + "Print": 24, + "opt.scaffold": 5, + "package_info.AutoDoc": 3, + "IsRecord": 7, + "IsBool": 4, + "AUTODOC_APPEND_RECORD_WRITEONCE": 3, + "AUTODOC_WriteOnce": 10, + "opt.autodoc": 5, + "Concatenation": 15, + "package_info.Dependencies.NeededOtherPackages": 1, + "package_info.Dependencies.SuggestedOtherPackages": 1, + "ForAny": 1, + "x": 14, + "autodoc.files": 7, + "autodoc.scan_dirs": 5, + "autodoc.level": 3, + "PushOptions": 1, + "level_value": 1, + "Append": 2, + "AUTODOC_FindMatchingFiles": 2, + "opt.gapdoc": 5, + "opt.maketest": 4, + "gapdoc.main": 8, + "package_info.PackageDoc": 3, + ".BookName": 2, + "gapdoc.bookname": 4, + "#Print": 1, + "gapdoc.files": 9, + "gapdoc.scan_dirs": 3, + "Set": 1, + "Number": 1, + "ListWithIdenticalEntries": 1, + "List": 6, + "f": 11, + "DocumentationTree": 1, + "autodoc.section_intros": 2, + "AUTODOC_PROCESS_INTRO_STRINGS": 1, + "Tree": 2, + "AutoDocScanFiles": 1, + "PackageName": 2, + "scaffold.TitlePage": 4, + "scaffold.TitlePage.Title": 2, + ".TitlePage.Title": 2, + "Position": 2, + "Remove": 2, + "JoinStringsWithSeparator": 1, + "ReplacedString": 2, + "Syntax": 1, + "scaffold.document_class": 7, + "PositionSublist": 5, + "GAPDoc2LaTeXProcs.Head": 14, + "..": 6, + "scaffold.latex_header_file": 2, + "StringFile": 2, + "scaffold.gapdoc_latex_options": 4, + "RecNames": 1, + "scaffold.gapdoc_latex_options.": 5, + "IsList": 1, + "scaffold.includes": 4, + "scaffold.bib": 7, + "Unbind": 1, + "scaffold.main_xml_file": 2, + ".TitlePage": 1, + "ExtractTitleInfoFromPackageInfo": 1, + "CreateTitlePage": 1, + "scaffold.MainPage": 2, + "scaffold.dir": 1, + "scaffold.book_name": 1, + "CreateMainPage": 1, + "WriteDocumentation": 1, + "SetGapDocLaTeXOptions": 1, + "MakeGAPDocDoc": 1, + "CopyHTMLStyleFiles": 1, + "GAPDocManualLab": 1, + "maketest.folder": 3, + "maketest.scan_dir": 3, + "CreateMakeTest": 1, + "#W": 4, + "example.gd": 2, + "This": 10, + "file": 7, + "contains": 7, + "sample": 2, + "GAP": 15, + "declaration": 1, + "file.": 3, + "DeclareProperty": 2, + "IsLeftModule": 6, + "DeclareGlobalFunction": 5, + "#C": 7, + "IsQuuxFrobnicator": 1, + "": 3, + "": 28, + "": 7, + "Name=": 33, + "Arg=": 33, + "Type=": 7, + "": 28, + "Tests": 1, + "whether": 5, + "R": 5, + "quux": 1, + "frobnicator.": 1, + "": 28, + "": 28, + "DeclareSynonym": 17, + "IsField": 1, + "IsGroup": 1, + "Magic.gd": 1, + "SHEBANG#!#! @Description": 1, + "SHEBANG#!#! This": 1, + "SHEBANG#!#! any": 1, + "SHEBANG#!#! ": 1, + "SHEBANG#!#! ": 5, + "SHEBANG#!#! It": 3, + "SHEBANG#!#! That": 1, + "SHEBANG#!#! of": 1, + "SHEBANG#!#! (with": 1, + "SHEBANG#!#! main": 1, + "SHEBANG#!#! XML": 1, + "SHEBANG#!#! other": 1, + "SHEBANG#!#! as": 1, + "SHEBANG#!#! to": 2, + "SHEBANG#!#! Secondly,": 1, + "SHEBANG#!#! page": 1, + "SHEBANG#!#! (name,": 1, + "SHEBANG#!#! on": 1, + "SHEBANG#!Item>": 25, + "SHEBANG#!#! tags": 1, + "SHEBANG#!#! This": 1, + "SHEBANG#!#! produce": 1, + "SHEBANG#!#! MathJaX": 1, + "SHEBANG#!#! generated": 1, + "SHEBANG#!#! this,": 1, + "SHEBANG#!#! supplementary": 1, + "SHEBANG#!#! (see": 1, + "SHEBANG#!Enum>": 1, + "SHEBANG#!#! For": 1, + "SHEBANG#!>": 11, + "SHEBANG#!#! The": 1, + "SHEBANG#!#! ": 1, + "SHEBANG#!Mark>": 22, + "SHEBANG#!#! The": 2, + "SHEBANG#!A>": 1, + "SHEBANG#!#! ": 1, + "SHEBANG#!#! ": 4, + "SHEBANG#!#! This": 4, + "SHEBANG#!#! Directory()": 1, + "SHEBANG#!#! (i.e.": 1, + "SHEBANG#!#! Default": 1, + "SHEBANG#!#! for": 1, + "SHEBANG#!#! The": 3, + "SHEBANG#!#! record.": 3, + "SHEBANG#!#! equivalent": 3, + "SHEBANG#!#! enabled.": 3, + "SHEBANG#!#! package's": 1, + "SHEBANG#!#! In": 3, + "SHEBANG#!K>),": 3, + "SHEBANG#!#! If": 3, + "####": 34, + "TODO": 3, + "mention": 1, + "merging": 1, + "PackageInfo.AutoDoc": 1, + "SHEBANG#!#! ": 3, + "SHEBANG#!#! ": 13, + "SHEBANG#!#! A": 6, + "SHEBANG#!#! If": 2, + "SHEBANG#!#! your": 1, + "SHEBANG#!#! you": 1, + "SHEBANG#!#! to": 4, + "SHEBANG#!#! is": 1, + "SHEBANG#!#! of": 2, + "SHEBANG#!#! This": 3, + "SHEBANG#!#! i.e.": 1, + "SHEBANG#!#! The": 2, + "SHEBANG#!#! then": 1, + "The": 21, + "param": 1, + "bit": 2, + "strange.": 1, + "We": 4, + "should": 2, + "probably": 2, + "change": 1, + "it": 8, + "to": 37, + "be": 24, + "more": 3, + "general": 1, + "as": 23, + "one": 11, + "might": 1, + "want": 1, + "define": 2, + "other": 4, + "entities...": 1, + "For": 10, + "now": 1, + "we": 3, + "document": 1, + "leave": 1, + "us": 1, + "choice": 1, + "revising": 1, + "how": 1, + "works.": 1, + "": 2, + "": 117, + "entities": 2, + "": 117, + "": 2, + "": 2, + "A": 9, + "list": 16, + "names": 1, + "which": 8, + "are": 14, + "used": 10, + "corresponding": 1, + "XML": 4, + "entities.": 1, + "example": 3, + "set": 6, + "containing": 1, + "string": 6, + "": 2, + "SomePackage": 3, + "": 2, + "following": 4, + "added": 1, + "preamble": 1, + "": 2, + "CDATA": 2, + "ENTITY": 2, + "": 2, + "allows": 1, + "you": 3, + "write": 3, + "&": 37, + "amp": 1, + "your": 1, + "documentation": 2, + "reference": 1, + "that": 39, + "package.": 2, + "If": 11, + "another": 1, + "type": 2, + "entity": 1, + "desired": 1, + "can": 12, + "simply": 2, + "add": 2, + "instead": 1, + "two": 13, + "entry": 2, + "list.": 2, + "It": 1, + "handled": 3, + "so": 3, + "please": 1, + "careful.": 1, + "": 2, + "SHEBANG#!#! for": 1, + "SHEBANG#!#! statement": 1, + "SHEBANG#!#! components": 2, + "SHEBANG#!#! example,": 1, + "SHEBANG#!#! acknowledgements": 1, + "SHEBANG#!#! ": 6, + "SHEBANG#!#! by": 1, + "SHEBANG#!#! package": 1, + "SHEBANG#!#! Usually": 2, + "SHEBANG#!#! are": 2, + "SHEBANG#!#! Default": 3, + "SHEBANG#!#! When": 1, + "SHEBANG#!#! they": 1, + "Document": 1, + "section_intros": 2, + "later": 1, + "on.": 1, + "However": 2, + "note": 2, + "thanks": 1, + "new": 2, + "comment": 1, + "syntax": 1, + "only": 5, + "remaining": 1, + "use": 5, + "seems": 1, + "ability": 1, + "specify": 3, + "order": 1, + "chapters": 1, + "sections.": 1, + "TODO.": 1, + "SHEBANG#!#! files": 1, + "strictly": 1, + "speaking": 1, + "also": 3, + "scaffold.": 1, + "uses": 2, + "scaffolding": 2, + "mechanism": 4, + "really": 4, + "necessary": 2, + "custom": 1, + "name": 2, + "main": 1, + "Thus": 3, + "purpose": 1, + "parameter": 1, + "cater": 1, + "packages": 5, + "have": 3, + "existing": 1, + "using": 2, + "different": 2, + "wish": 1, + "scaffolding.": 1, + "explain": 1, + "why": 2, + "allow": 1, + "specifying": 1, + "gapdoc.main.": 1, + "code": 1, + "still": 1, + "honor": 1, + "though": 1, + "just": 1, + "case.": 1, + "SHEBANG#!#! In": 1, + "part.": 1, + "Still": 1, + "under": 1, + "construction.": 1, + "SHEBANG#!#! ": 1, + "SHEBANG#!#! The": 1, + "SHEBANG#!#! a": 1, + "SHEBANG#!#! which": 1, + "SHEBANG#!#! the": 1, + "SHEBANG#!#! ": 1, + "SHEBANG#!#! ": 2, + "SHEBANG#!#! Sets": 1, + "SHEBANG#!#! A": 1, + "SHEBANG#!#! will": 1, + "SHEBANG#!#! @Returns": 1, + "SHEBANG#!#! @Arguments": 1, + "SHEBANG#!#! @ChapterInfo": 1, + "vspc.gd": 1, + "library": 2, + "Thomas": 2, + "Breuer": 2, + "#Y": 6, + "C": 11, + "Lehrstuhl": 2, + "D": 36, + "r": 2, + "Mathematik": 2, + "RWTH": 2, + "Aachen": 2, + "Germany": 2, + "School": 2, + "Math": 2, + "Comp.": 2, + "Sci.": 2, + "St": 2, + "Andrews": 2, + "Scotland": 2, + "Group": 3, + "declares": 1, + "operations": 2, + "vector": 67, + "spaces.": 4, + "bases": 5, + "free": 3, + "left": 15, + "modules": 1, + "found": 1, + "": 10, + "lib/basis.gd": 1, + ".": 257, + "IsLeftOperatorRing": 1, + "IsLeftOperatorAdditiveGroup": 2, + "IsRing": 1, + "IsAssociativeLOpDProd": 2, + "#T": 6, + "IsLeftOperatorRingWithOne": 2, + "IsRingWithOne": 1, + "IsLeftVectorSpace": 3, + "": 38, + "IsVectorSpace": 26, + "<#GAPDoc>": 17, + "Label=": 19, + "": 12, + "space": 74, + "": 12, + "module": 2, + "see": 30, + "nbsp": 30, + "": 71, + "Func=": 40, + "over": 24, + "division": 15, + "ring": 14, + "Chapter": 3, + "Chap=": 3, + "

": 23, + "Whenever": 1, + "talk": 1, + "about": 3, + "an": 17, + "": 42, + "F": 61, + "": 41, + "V": 152, + "additive": 1, + "group": 2, + "on": 5, + "acts": 1, + "via": 6, + "multiplication": 1, + "from": 5, + "such": 4, + "action": 4, + "addition": 1, + "right": 2, + "distributive.": 1, + "accessed": 1, + "value": 9, + "attribute": 2, + "Vector": 1, + "spaces": 15, + "always": 1, + "Filt=": 4, + "synonyms.": 1, + "<#/GAPDoc>": 17, + "IsLeftActedOnByDivisionRing": 4, + "InstallTrueMethod": 4, + "IsFreeLeftModule": 3, + "#F": 17, + "IsGaussianSpace": 10, + "": 14, + "filter": 3, + "Sect=": 6, + "row": 17, + "matrix": 5, + "field": 12, + "say": 1, + "indicates": 3, + "entries": 8, + "all": 18, + "vectors": 16, + "matrices": 5, + "respectively": 1, + "contained": 4, + "In": 3, + "case": 2, + "called": 1, + "Gaussian": 19, + "space.": 5, + "Bases": 1, + "computed": 2, + "elimination": 5, + "given": 4, + "generators.": 1, + "": 12, + "": 12, + "gap": 41, + "mats": 5, + "VectorSpace": 13, + "Rationals": 13, + "E": 2, + "element": 2, + "extension": 3, + "Field": 1, + "": 12, + "DeclareFilter": 1, + "IsFullMatrixModule": 1, + "IsFullRowModule": 1, + "IsDivisionRing": 5, + "": 12, + "nontrivial": 1, + "associative": 1, + "algebra": 2, + "multiplicative": 1, + "inverse": 1, + "each": 2, + "nonzero": 3, + "element.": 1, + "every": 1, + "possibly": 1, + "itself": 1, + "being": 2, + "thus": 1, + "property": 2, + "get": 1, + "because": 2, + "usually": 1, + "represented": 1, + "coefficients": 3, + "stored": 1, + "DeclareSynonymAttr": 4, + "IsMagmaWithInversesIfNonzero": 1, + "IsNonTrivial": 1, + "IsAssociative": 1, + "IsEuclideanRing": 1, + "#A": 7, + "GeneratorsOfLeftVectorSpace": 1, + "GeneratorsOfVectorSpace": 2, + "": 7, + "Attr=": 10, + "returns": 14, + "generate": 1, + "FullRowSpace": 5, + "GeneratorsOfLeftOperatorAdditiveGroup": 2, + "CanonicalBasis": 3, + "supports": 1, + "canonical": 6, + "basis": 14, + "otherwise": 2, + "": 3, + "": 3, + "returned.": 4, + "defining": 1, + "its": 2, + "uniquely": 1, + "determined": 1, + "by": 14, + "exist": 1, + "same": 6, + "acting": 8, + "domain": 17, + "equality": 1, + "these": 5, + "decided": 1, + "comparing": 1, + "bases.": 1, + "exact": 1, + "meaning": 1, + "depends": 1, + "Canonical": 1, + "defined": 3, + "designs": 1, + "kind": 1, + "defines": 1, + "method": 4, + "installs": 1, + "must": 6, + "call": 1, + "On": 1, + "hand": 1, + "install": 1, + "calls": 1, + "": 10, + "CANONICAL_BASIS_FLAGS": 1, + "": 9, + "vecs": 4, + "B": 16, + "": 8, + "3": 5, + "generators": 16, + "BasisVectors": 4, + "DeclareAttribute": 4, + "IsRowSpace": 2, + "consists": 7, + "IsRowModule": 1, + "IsGaussianRowSpace": 1, + "scalars": 2, + "occur": 2, + "vectors.": 2, + "calculations.": 2, + "Otherwise": 3, + "non": 4, + "Gaussian.": 2, + "need": 3, + "flag": 2, + "down": 2, + "methods": 4, + "delegate": 2, + "ones.": 2, + "IsNonGaussianRowSpace": 1, + "expresses": 2, + "cannot": 2, + "compute": 3, + "nice": 4, + "way.": 2, + "Let": 4, + "K": 4, + "spanned": 4, + "Then": 1, + "/": 12, + "cap": 1, + "v": 5, + "replacing": 1, + "forming": 1, + "concatenation.": 1, + "So": 2, + "associated": 3, + "DeclareHandlingByNiceBasis": 2, + "IsMatrixSpace": 2, + "IsMatrixModule": 1, + "IsGaussianMatrixSpace": 1, + "IsNonGaussianMatrixSpace": 1, + "irrelevant": 1, + "concatenation": 1, + "rows": 1, + "necessarily": 1, + "NormedRowVectors": 2, + "normed": 1, + "finite": 5, + "those": 1, + "first": 1, + "component.": 1, + "yields": 1, + "natural": 1, + "dimensional": 5, + "subspaces": 17, + "GF": 22, + "*Z": 5, + "Z": 6, + "Action": 1, + "GL": 1, + "OnLines": 1, + "TrivialSubspace": 2, + "subspace": 7, + "zero": 4, + "triv": 2, + "0": 2, + "AsSet": 1, + "TrivialSubmodule": 1, + "": 5, + "": 2, + "collection": 3, + "gens": 16, + "elements": 7, + "optional": 3, + "argument": 1, + "empty.": 1, + "known": 5, + "linearly": 3, + "independent": 3, + "particular": 1, + "dimension": 9, + "immediately": 2, + "formed": 1, + "argument.": 1, + "2": 1, + "Subspace": 4, + "generated": 1, + "SubspaceNC": 2, + "subset": 4, + "empty": 1, + "trivial": 1, + "parent": 3, + "returned": 3, + "does": 1, + "except": 1, + "omits": 1, + "check": 5, + "both": 2, + "W": 32, + "1": 3, + "Submodule": 1, + "SubmoduleNC": 1, + "#O": 2, + "AsVectorSpace": 4, + "view": 4, + "": 2, + "domain.": 1, + "form": 2, + "Oper=": 6, + "smaller": 1, + "larger": 1, + "ring.": 3, + "Dimension": 6, + "LeftActingDomain": 29, + "9": 1, + "AsLeftModule": 6, + "AsSubspace": 5, + "": 6, + "U": 12, + "collection.": 1, + "/2": 4, + "Parent": 4, + "DeclareOperation": 2, + "IsCollection": 3, + "Intersection2Spaces": 4, + "": 2, + "": 2, + "": 2, + "takes": 1, + "arguments": 1, + "intersection": 5, + "domains": 3, + "let": 1, + "their": 1, + "intersection.": 1, + "AsStruct": 2, + "equal": 1, + "either": 2, + "Substruct": 1, + "common": 1, + "Struct": 1, + "cases": 2, + "basis.": 1, + "handle": 1, + "intersections": 1, + "algebras": 2, + "ideals": 2, + "sided": 1, + "ideals.": 1, + "": 2, + "": 2, + "nonnegative": 2, + "integer": 2, + "length": 1, + "An": 2, + "alternative": 2, + "construct": 2, + "above": 2, + "FullRowModule": 2, + "FullMatrixSpace": 2, + "": 1, + "positive": 1, + "integers": 1, + "fact": 1, + "FullMatrixModule": 3, + "IsSubspacesVectorSpace": 9, + "fixed": 1, + "lies": 1, + "category": 1, + "Subspaces": 8, + "Size": 5, + "iter": 17, + "Iterator": 5, + "NextIterator": 5, + "DeclareCategory": 1, + "IsDomain": 1, + "#M": 20, + "IsFinite": 4, + "Returns": 1, + "": 1, + "Called": 2, + "k": 17, + "Special": 1, + "provided": 1, + "domains.": 1, + "IsInt": 3, + "IsSubspace": 3, + "OrthogonalSpaceInFullRowSpace": 1, + "complement": 1, + "full": 2, + "#P": 1, + "IsVectorSpaceHomomorphism": 3, + "": 2, + "": 1, + "mapping": 2, + "homomorphism": 1, + "linear": 1, + "source": 2, + "range": 1, + "b": 8, + "s": 4, + "*": 12, + "hold": 1, + "IsGeneralMapping": 2, + "#E": 2, + "PackageInfo.g": 2, + "cvec": 1, + "template": 1, + "SetPackageInfo": 1, + "Subtitle": 1, + "Version": 1, + "Date": 1, + "dd/mm/yyyy": 1, + "format": 2, + "Information": 1, + "authors": 1, + "maintainers.": 1, + "Persons": 1, + "LastName": 1, + "FirstNames": 1, + "IsAuthor": 1, + "IsMaintainer": 1, + "Email": 1, + "WWWHome": 1, + "PostalAddress": 1, + "Place": 1, + "Institution": 1, + "Status": 2, + "information.": 1, + "Currently": 1, + "recognized": 1, + "successfully": 2, + "refereed": 2, + "developers": 1, + "agreed": 1, + "distribute": 1, + "them": 1, + "core": 1, + "system": 1, + "development": 1, + "versions": 1, + "You": 1, + "provide": 2, + "next": 6, + "status": 1, + "was": 1, + "#CommunicatedBy": 1, + "#AcceptDate": 1, + "PackageWWWHome": 1, + "README_URL": 1, + ".PackageWWWHome": 2, + "PackageInfoURL": 1, + "ArchiveURL": 1, + ".Version": 2, + "ArchiveFormats": 1, + "Here": 2, + "short": 1, + "abstract": 1, + "explaining": 1, + "content": 1, + "HTML": 1, + "overview": 1, + "Web": 1, + "page": 1, + "URL": 1, + "Webpage": 1, + "detailed": 1, + "information": 1, + "than": 1, + "few": 1, + "lines": 1, + "less": 1, + "ok": 1, + "Please": 1, + "specifing": 1, + "names.": 1, + "AbstractHTML": 1, + "PackageDoc": 1, + "BookName": 1, + "ArchiveURLSubset": 1, + "HTMLStart": 1, + "PDFFile": 1, + "SixFile": 1, + "LongTitle": 1, + "Dependencies": 1, + "NeededOtherPackages": 1, + "SuggestedOtherPackages": 1, + "ExternalConditions": 1, + "AvailabilityTest": 1, + "SHOW_STAT": 1, + "DirectoriesPackagePrograms": 1, + "#Info": 1, + "InfoWarning": 1, + "*Optional*": 2, + "but": 1, + "recommended": 1, + "path": 1, + "relative": 1, + "root": 1, + "many": 1, + "tests": 1, + "functionality": 1, + "sensible.": 1, + "#TestFile": 1, + "some": 2, + "keyword": 1, + "related": 1, + "topic": 1, + "Keywords": 1, + "implementation": 1, + "SomeOperation": 1, + "": 2, + "performs": 1, + "operation": 1, + "InstallMethod": 18, + "SomeProperty": 1, + "M": 7, + "IsTrivial": 1, + "TryNextMethod": 7, + "SomeGlobalFunction": 2, + "global": 1, + "variadic": 1, + "funfion.": 1, + "SomeFunc": 1, + "y": 8, + "z": 3, + "func": 3, + "j": 3, + "mod": 2, + "repeat": 1, + "until": 1, + "vspc.gi": 1, + "generic": 1, + "SetLeftActingDomain": 2, + "": 2, + "external": 1, + "knows": 1, + "e.g.": 1, + "tell": 1, + "InstallOtherMethod": 3, + "IsAttributeStoringRep": 2, + "IsLeftActedOnByRing": 2, + "IsObject": 1, + "extL": 2, + "HasIsDivisionRing": 1, + "SetIsLeftActedOnByDivisionRing": 1, + "IsExtLSet": 1, + "IsIdenticalObj": 5, + "difference": 1, + "between": 1, + "shall": 1, + "CallFuncList": 1, + "FreeLeftModule": 1, + "newC": 7, + "IsSubset": 4, + "SetParent": 1, + "UseIsomorphismRelation": 2, + "UseSubsetRelation": 4, + "View": 1, + "base": 5, + "gen": 5, + "loop": 2, + "newgens": 4, + "extended": 1, + "Characteristic": 2, + "Basis": 5, + "AsField": 2, + "GeneratorsOfLeftModule": 9, + "LeftModuleByGenerators": 5, + "Zero": 5, + "Intersection": 1, + "ViewObj": 4, + "print": 1, + "no.": 1, + "HasGeneratorsOfLeftModule": 2, + "HasDimension": 1, + "override": 1, + "PrintObj": 5, + "HasZero": 1, + "": 2, + "factor": 2, + "": 1, + "ImagesSource": 1, + "NaturalHomomorphismBySubspace": 1, + "AsStructure": 3, + "Substructure": 3, + "Structure": 2, + "inters": 17, + "gensV": 7, + "gensW": 7, + "VW": 3, + "sum": 1, + "Intersection2": 4, + "IsFiniteDimensional": 2, + "Coefficients": 3, + "SumIntersectionMat": 1, + "LinearCombination": 2, + "HasParent": 2, + "SetIsTrivial": 1, + "ClosureLeftModule": 2, + "": 1, + "closure": 1, + "IsCollsElms": 1, + "HasBasis": 1, + "IsVector": 1, + "w": 3, + "easily": 1, + "UseBasis": 1, + "Methods": 1, + "collections": 1, + "#R": 1, + "IsSubspacesVectorSpaceDefaultRep": 7, + "representation": 1, + "components": 1, + "means": 1, + "DeclareRepresentation": 1, + "IsComponentObjectRep": 1, + ".dimension": 9, + ".structure": 9, + "number": 2, + "q": 20, + "prod_": 2, + "frac": 3, + "recursion": 1, + "sum_": 1, + "size": 12, + "qn": 10, + "qd": 10, + "ank": 6, + "Int": 1, + "Enumerator": 2, + "Use": 1, + "iterator": 3, + "allowed": 1, + "elms": 4, + "IsDoneIterator": 3, + ".associatedIterator": 3, + ".basis": 2, + "structure": 4, + "associatedIterator": 2, + "ShallowCopy": 2, + "IteratorByFunctions": 1, + "IsDoneIterator_Subspaces": 1, + "NextIterator_Subspaces": 1, + "ShallowCopy_Subspaces": 1, + "": 1, + "dim": 2, + "Objectify": 2, + "NewType": 2, + "CollectionsFamily": 2, + "FamilyObj": 2, + "map": 4, + "S": 4, + "Source": 1, + "Range": 1, + "IsLinearMapping": 1 + }, + "Logtalk": { + "-": 3, + "object": 2, + "(": 4, + "hello_world": 1, + ")": 4, + ".": 2, + "%": 2, + "the": 2, + "initialization/1": 1, + "directive": 1, + "argument": 1, + "is": 2, + "automatically": 1, + "executed": 1, + "when": 1, + "loaded": 1, + "into": 1, + "memory": 1, + "initialization": 1, + "nl": 2, + "write": 1, + "end_object.": 1 + }, + "Scheme": { + "(": 366, + "import": 1, + "rnrs": 1, + ")": 380, + "only": 1, + "surfage": 4, + "s1": 1, + "lists": 1, + "filter": 4, + "-": 192, + "map": 4, + "gl": 12, + "glut": 2, + "dharmalab": 2, + "records": 1, + "define": 30, + "record": 5, + "type": 5, + "math": 1, + "basic": 2, + "agave": 4, + "glu": 1, + "compat": 1, + "geometry": 1, + "pt": 49, + "glamour": 2, + "window": 2, + "misc": 1, + "s19": 1, + "time": 24, + "s27": 1, + "random": 27, + "bits": 1, + "s42": 1, + "eager": 1, + "comprehensions": 1, + ";": 1684, + "utilities": 1, + "say": 9, + ".": 2, + "args": 2, + "for": 7, + "each": 7, + "display": 4, + "newline": 2, + "translate": 6, + "p": 6, + "glTranslated": 1, + "x": 10, + "y": 3, + "radians": 8, + "/": 7, + "pi": 2, + "degrees": 2, + "angle": 6, + "a": 19, + "cos": 1, + "sin": 1, + "current": 15, + "in": 14, + "nanoseconds": 2, + "let": 2, + "val": 3, + "+": 28, + "second": 1, + "nanosecond": 1, + "seconds": 12, + "micro": 1, + "milli": 1, + "base": 2, + "step": 1, + "score": 5, + "level": 5, + "ships": 1, + "spaceship": 5, + "fields": 4, + "mutable": 14, + "pos": 16, + "vel": 4, + "theta": 1, + "force": 1, + "particle": 8, + "birth": 2, + "lifetime": 1, + "color": 2, + "particles": 11, + "asteroid": 14, + "radius": 6, + "number": 3, + "of": 3, + "starting": 3, + "asteroids": 15, + "#f": 5, + "bullet": 16, + "pack": 12, + "is": 8, + "initialize": 1, + "size": 1, + "title": 1, + "reshape": 1, + "width": 8, + "height": 8, + "source": 2, + "randomize": 1, + "default": 1, + "wrap": 4, + "mod": 2, + "ship": 8, + "make": 11, + "ammo": 9, + "set": 19, + "list": 6, + "ec": 6, + "i": 6, + "inexact": 16, + "integer": 25, + "buffered": 1, + "procedure": 1, + "lambda": 12, + "background": 1, + "glColor3f": 5, + "matrix": 5, + "excursion": 5, + "ship.pos": 5, + "glRotated": 2, + "ship.theta": 10, + "glutWireCone": 1, + "par": 6, + "c": 4, + "vector": 6, + "ref": 3, + "glutWireSphere": 3, + "bullets": 7, + "pack.pos": 3, + "glutWireCube": 1, + "last": 3, + "dt": 7, + "update": 2, + "system": 2, + "pt*n": 8, + "ship.vel": 5, + "pack.vel": 1, + "cond": 2, + "par.birth": 1, + "par.lifetime": 1, + "else": 2, + "par.pos": 2, + "par.vel": 1, + "bullet.birth": 1, + "bullet.pos": 2, + "bullet.vel": 1, + "a.pos": 2, + "a.vel": 1, + "if": 1, + "<": 1, + "a.radius": 1, + "contact": 2, + "b": 4, + "when": 5, "<=>": 3, - "alternatives": 10, - "findAlternativeNamespace": 2, - "count": 32, - "getAbbreviationSuggestions": 4, - "searchName": 13, - "pos": 3, - "strrpos": 2, - "substr": 6, - "namespace.substr": 1, - "suggestions": 2, - "aliases": 8, - "findAlternativeCommands": 2, + "distance": 3, + "begin": 2, + "1": 2, + "f": 1, + "append": 4, + "4": 1, + "50": 4, + "0": 7, + "100": 6, + "2": 1, + "n": 2, + "null": 1, + "10": 1, + "5": 1, + "glutIdleFunc": 1, + "glutPostRedisplay": 1, + "glutKeyboardFunc": 1, + "key": 2, + "case": 1, + "char": 1, + "#": 6, + "w": 1, + "d": 1, + "s": 1, + "space": 1, + "cons": 1, + "glutMainLoop": 1, + "library": 1, + "libs": 1, + "export": 1, + "list2": 2, + "objs": 2, + "should": 1, + "not": 1, + "be": 1, + "exported": 1 + }, + "C++": { + "//": 315, + "#ifndef": 29, + "BOOST_ASIO_DETAIL_IMPL_EPOLL_REACTOR_IPP": 3, + "#define": 343, + "#if": 63, + "defined": 49, + "(": 3102, + "_MSC_VER": 7, + ")": 3105, + "&&": 29, + "#endif": 110, + "#include": 129, + "": 1, + "BOOST_ASIO_HAS_EPOLL": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "BOOST_ASIO_HAS_TIMERFD": 19, + "": 1, + "namespace": 38, + "boost": 18, + "{": 726, + "asio": 14, + "detail": 5, + "epoll_reactor": 40, + "io_service": 6, + "&": 203, + "service_base": 1, + "": 1, + "io_service_": 1, + "use_service": 1, + "": 1, + "mutex_": 13, + "interrupter_": 5, + "epoll_fd_": 20, + "do_epoll_create": 3, + "timer_fd_": 21, + "do_timerfd_create": 3, + "shutdown_": 10, + "false": 48, + "epoll_event": 10, + "ev": 21, + "}": 726, + ";": 2783, + "ev.events": 13, + "EPOLLIN": 8, + "|": 40, + "EPOLLERR": 8, + "EPOLLET": 5, + "ev.data.ptr": 10, + "epoll_ctl": 12, + "EPOLL_CTL_ADD": 7, + "interrupter_.read_descriptor": 3, + "interrupter_.interrupt": 2, + "if": 359, + "-": 438, + "close": 7, + "void": 241, + "shutdown_service": 1, + "mutex": 16, + "scoped_lock": 16, + "lock": 5, + "true": 49, + "lock.unlock": 1, + "op_queue": 6, + "": 6, + "ops": 10, + "while": 17, + "descriptor_state*": 6, + "state": 33, + "registered_descriptors_.first": 2, + "for": 105, + "int": 218, + "i": 106, + "<": 255, + "max_ops": 6, + "+": 80, + "ops.push": 5, + "op_queue_": 12, + "[": 293, + "]": 292, + "registered_descriptors_.free": 2, + "timer_queues_.get_all_timers": 1, + "io_service_.abandon_operations": 1, + "fork_service": 1, + "fork_event": 1, + "fork_ev": 2, + "fork_child": 1, + "interrupter_.recreate": 1, + "update_timeout": 2, + "descriptors_lock": 3, + "registered_descriptors_mutex_": 3, + "next_": 3, + "registered_events_": 8, + "result": 8, + "descriptor_": 5, + "system": 13, + "error_code": 4, + "ec": 6, + "errno": 10, + "error": 8, + "get_system_category": 3, + "throw_error": 2, + "init_task": 1, + "io_service_.init_task": 1, + "register_descriptor": 1, + "socket_type": 7, + "descriptor": 15, + "per_descriptor_data": 8, + "descriptor_data": 60, + "allocate_descriptor_state": 3, + "descriptor_lock": 7, + "reactor_": 7, + "this": 57, + "EPOLLHUP": 3, + "EPOLLPRI": 3, + "return": 240, + "register_internal_descriptor": 1, + "op_type": 8, + "reactor_op*": 5, + "op": 28, + ".push": 2, + "move_descriptor": 1, + "target_descriptor_data": 2, + "source_descriptor_data": 3, + "start_op": 1, + "bool": 111, + "is_continuation": 5, + "allow_speculative": 2, + "ec_": 4, + "bad_descriptor": 1, + "post_immediate_completion": 2, + ".empty": 5, + "read_op": 1, + "||": 19, + "except_op": 1, + "perform": 2, + "descriptor_lock.unlock": 4, + "io_service_.post_immediate_completion": 2, + "write_op": 2, + "EPOLLOUT": 4, + "EPOLL_CTL_MOD": 3, + "else": 58, + "io_service_.work_started": 2, + "cancel_ops": 1, + ".front": 3, + "operation_aborted": 2, + ".pop": 3, + "io_service_.post_deferred_completions": 3, + "deregister_descriptor": 1, + "closing": 3, + "EPOLL_CTL_DEL": 2, + "free_descriptor_state": 3, + "deregister_internal_descriptor": 1, + "run": 2, + "block": 7, + "timeout": 5, + "get_timeout": 5, + "events": 8, + "num_events": 2, + "epoll_wait": 1, + "check_timers": 6, + "#else": 35, + "void*": 2, + "ptr": 6, + ".data.ptr": 1, + "static_cast": 14, + "": 2, + "set_ready_events": 1, + ".events": 1, + "common_lock": 1, + "timer_queues_.get_ready_timers": 1, + "itimerspec": 5, + "new_timeout": 6, + "old_timeout": 4, + "flags": 4, + "timerfd_settime": 2, + "interrupt": 3, + "EPOLL_CLOEXEC": 4, + "fd": 15, + "epoll_create1": 1, + "EINVAL": 4, + "ENOSYS": 1, + "epoll_create": 1, + "epoll_size": 1, + "fcntl": 2, + "F_SETFD": 2, + "FD_CLOEXEC": 2, + "timerfd_create": 2, + "CLOCK_MONOTONIC": 3, + "TFD_CLOEXEC": 1, + "registered_descriptors_.alloc": 1, + "s": 26, + "do_add_timer_queue": 1, + "timer_queue_base": 2, + "queue": 4, + "timer_queues_.insert": 1, + "do_remove_timer_queue": 1, + "timer_queues_.erase": 1, + "timer_queues_.wait_duration_msec": 1, + "*": 183, + "ts": 1, + "ts.it_interval.tv_sec": 1, + "ts.it_interval.tv_nsec": 1, + "long": 15, + "usec": 5, + "timer_queues_.wait_duration_usec": 1, + "ts.it_value.tv_sec": 1, + "/": 16, + "ts.it_value.tv_nsec": 1, + "%": 7, + "TFD_TIMER_ABSTIME": 1, + "struct": 13, + "perform_io_cleanup_on_block_exit": 4, + "explicit": 5, + "epoll_reactor*": 2, + "r": 38, + "first_op_": 3, + "ops_.empty": 1, + "ops_": 2, + "operation*": 4, + "descriptor_state": 5, + "operation": 2, + "do_complete": 2, + "perform_io": 2, + "uint32_t": 39, + "mutex_.lock": 1, + "io_cleanup": 1, + "adopt_lock": 1, + "static": 263, + "const": 172, + "flag": 3, + "j": 10, + "io_cleanup.ops_.push": 1, + "break": 35, + "io_cleanup.first_op_": 2, + "io_cleanup.ops_.front": 1, + "io_cleanup.ops_.pop": 1, + "io_service_impl*": 1, + "owner": 3, + "base": 8, + "std": 53, + "size_t": 6, + "bytes_transferred": 2, + "": 1, + "complete": 3, + "": 1, + "#pragma": 3, + "once": 5, + "": 2, + "typedef": 50, + "smallPrime_t": 1, + "class": 40, + "Bar": 2, + "protected": 4, + "char": 127, + "*name": 6, + "public": 33, + "hello": 2, + "INTERNAL_SUPPRESS_PROTOBUF_FIELD_DEPRECATION": 1, + "": 1, + "": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "persons": 4, + "google": 72, + "protobuf": 72, + "Descriptor*": 3, + "Person_descriptor_": 6, + "NULL": 109, + "internal": 47, + "GeneratedMessageReflection*": 1, + "Person_reflection_": 4, + "protobuf_AssignDesc_protocol_2dbuffer_2eproto": 4, + "protobuf_AddDesc_protocol_2dbuffer_2eproto": 6, + "FileDescriptor*": 1, + "file": 31, + "DescriptorPool": 3, + "generated_pool": 2, + "FindFileByName": 1, + "GOOGLE_CHECK": 1, + "message_type": 1, + "Person_offsets_": 2, + "GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET": 3, + "Person": 65, + "name_": 30, + "new": 13, + "GeneratedMessageReflection": 1, + "default_instance_": 8, + "_has_bits_": 14, + "_unknown_fields_": 5, + "MessageFactory": 3, + "generated_factory": 1, + "sizeof": 15, + "GOOGLE_PROTOBUF_DECLARE_ONCE": 1, + "protobuf_AssignDescriptors_once_": 2, + "inline": 39, + "protobuf_AssignDescriptorsOnce": 4, + "GoogleOnceInit": 1, + "protobuf_RegisterTypes": 2, + "string": 24, + "InternalRegisterGeneratedMessage": 1, + "default_instance": 3, + "protobuf_ShutdownFile_protocol_2dbuffer_2eproto": 4, + "delete": 6, + "already_here": 3, + "GOOGLE_PROTOBUF_VERIFY_VERSION": 1, + "InternalAddGeneratedFile": 1, + "InternalRegisterGeneratedFile": 1, + "InitAsDefaultInstance": 3, + "OnShutdown": 1, + "StaticDescriptorInitializer_protocol_2dbuffer_2eproto": 2, + "static_descriptor_initializer_protocol_2dbuffer_2eproto_": 1, + "kNameFieldNumber": 2, + "Message": 7, + "SharedCtor": 4, + "from": 91, + "MergeFrom": 9, + "_cached_size_": 7, + "const_cast": 3, + "string*": 11, + "kEmptyString": 12, + "memset": 3, + "SharedDtor": 3, + "SetCachedSize": 2, + "size": 13, + "GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN": 2, + "GOOGLE_SAFE_CONCURRENT_WRITES_END": 2, + "*default_instance_": 1, + "Person*": 7, + "New": 6, + "Clear": 18, + "xffu": 3, + "<<": 29, + "has_name": 6, + "clear": 3, + "mutable_unknown_fields": 4, + "MergePartialFromCodedStream": 2, + "io": 4, + "CodedInputStream*": 2, + "input": 12, + "DO_": 4, + "EXPRESSION": 2, + "uint32": 2, + "tag": 6, + "ReadTag": 1, + "switch": 3, + "WireFormatLite": 9, + "GetTagFieldNumber": 1, + "case": 34, + "GetTagWireType": 2, + "WIRETYPE_LENGTH_DELIMITED": 1, + "ReadString": 1, + "mutable_name": 3, + "WireFormat": 10, + "VerifyUTF8String": 3, + "name": 25, + ".data": 3, + ".length": 3, + "PARSE": 1, + "goto": 156, + "handle_uninterpreted": 2, + "ExpectAtEnd": 1, + "default": 14, + "WIRETYPE_END_GROUP": 1, + "SkipField": 1, + "#undef": 3, + "SerializeWithCachedSizes": 2, + "CodedOutputStream*": 2, + "output": 21, + "SERIALIZE": 2, + "WriteString": 1, + "unknown_fields": 7, + "SerializeUnknownFields": 1, + "uint8*": 4, + "SerializeWithCachedSizesToArray": 2, + "target": 6, + "WriteStringToArray": 1, + "SerializeUnknownFieldsToArray": 1, + "ByteSize": 2, + "total_size": 5, + "StringSize": 1, + "ComputeUnknownFieldsSize": 1, + "GOOGLE_CHECK_NE": 2, + "source": 12, + "dynamic_cast_if_available": 1, + "": 12, + "ReflectionOps": 1, + "Merge": 1, + "from._has_bits_": 1, + "from.has_name": 1, + "set_name": 7, + "from.name": 1, + "from.unknown_fields": 1, + "CopyFrom": 5, + "IsInitialized": 3, + "Swap": 2, + "other": 17, + "swap": 3, + "_unknown_fields_.Swap": 1, + "Metadata": 3, + "GetMetadata": 2, + "metadata": 2, + "metadata.descriptor": 1, + "metadata.reflection": 1, + "QSCIPRINTER_H": 2, + "#ifdef": 19, + "__APPLE__": 4, + "extern": 72, + "": 1, + "": 2, + "": 1, + "QT_BEGIN_NAMESPACE": 1, + "QRect": 2, + "QPainter": 2, + "QT_END_NAMESPACE": 1, + "QsciScintillaBase": 100, + "brief": 12, + "The": 50, + "QsciPrinter": 9, + "is": 102, + "a": 157, + "sub": 2, + "of": 215, + "the": 541, + "Qt": 1, + "QPrinter": 3, + "that": 36, + "able": 2, + "to": 254, + "print": 5, + "text": 5, + "Scintilla": 2, + "document.": 8, + "can": 21, + "be": 35, + "further": 1, + "classed": 1, + "alter": 2, + "layout": 1, + "adding": 2, + "headers": 3, + "and": 118, + "footers": 2, + "example.": 1, + "QSCINTILLA_EXPORT": 2, + "Constructs": 1, + "printer": 1, + "paint": 1, + "device": 7, + "with": 33, + "mode": 24, + "mode.": 4, + "PrinterMode": 1, + "ScreenResolution": 1, + "Destroys": 1, + "instance.": 2, + "virtual": 10, + "Format": 1, + "page": 5, + "by": 53, + "example": 3, + "before": 7, + "document": 16, + "drawn": 2, + "on": 55, + "it.": 3, + "painter": 4, + "used": 17, + "add": 3, + "customised": 2, + "graphics.": 2, + "drawing": 4, + "actually": 1, + "being": 4, + "rather": 2, + "than": 6, + "sized.": 1, + "methods": 2, + "must": 6, + "only": 6, + "called": 13, + "when": 22, + "true.": 2, + "area": 5, + "will": 15, + "draw": 1, + "text.": 3, + "This": 19, + "should": 10, + "modified": 3, + "it": 19, + "necessary": 1, + "reserve": 1, + "space": 2, + "any": 23, + "or": 44, + "By": 1, + "relative": 2, + "printable": 1, + "page.": 13, + "Use": 8, + "setFullPage": 1, + "because": 2, + "calling": 9, + "printRange": 2, + "you": 29, + "want": 5, + "try": 1, + "over": 1, + "whole": 2, + "pagenr": 2, + "number": 52, + "first": 13, + "numbered": 1, + "formatPage": 1, + "Return": 3, + "points": 2, + "each": 7, + "font": 2, + "printing.": 2, + "sa": 30, + "setMagnification": 2, + "magnification": 3, + "mag": 2, + "Sets": 24, + "printing": 2, + "magnification.": 1, + "Print": 2, + "range": 3, + "lines": 3, + "instance": 4, + "qsb.": 1, + "line": 11, + "negative": 2, + "value": 50, + "signifies": 2, + "last": 6, + "returned": 5, + "there": 4, + "was": 6, + "no": 7, + "error.": 1, + "*qsb": 1, + "wrap": 4, + "QsciScintilla": 7, + "WrapWord.": 1, + "setWrapMode": 2, + "WrapMode": 3, + "wrapMode": 2, + "wmode.": 1, + "wmode": 1, + "private": 16, + "operator": 10, + "V8_V8_H_": 3, + "GOOGLE3": 2, + "DEBUG": 5, + "NDEBUG": 4, + "#error": 9, + "both": 1, + "are": 36, + "set": 18, + "v8": 9, + "Deserializer": 1, + "V8": 21, + "AllStatic": 1, + "Initialize": 4, + "Deserializer*": 2, + "des": 3, + "TearDown": 5, + "IsRunning": 1, + "is_running_": 6, + "UseCrankshaft": 1, + "use_crankshaft_": 6, + "IsDead": 2, + "has_fatal_error_": 5, + "has_been_disposed_": 6, + "SetFatalError": 2, + "FatalProcessOutOfMemory": 1, + "char*": 24, + "location": 6, + "take_snapshot": 1, + "SetEntropySource": 2, + "EntropySource": 3, + "SetReturnAddressLocationResolver": 3, + "ReturnAddressLocationResolver": 2, + "resolver": 3, + "Random": 3, + "Context*": 4, + "context": 8, + "RandomPrivate": 2, + "Isolate*": 6, + "isolate": 15, + "Object*": 4, + "FillHeapNumberWithRandom": 2, + "heap_number": 4, + "IdleNotification": 3, + "hint": 3, + "AddCallCompletedCallback": 2, + "CallCompletedCallback": 4, + "callback": 7, + "RemoveCallCompletedCallback": 2, + "FireCallCompletedCallback": 2, + "InitializeOncePerProcessImpl": 3, + "InitializeOncePerProcess": 4, + "has_been_set_up_": 4, + "List": 3, + "": 3, + "call_completed_callbacks_": 16, + "enum": 17, + "NilValue": 1, + "kNullValue": 1, + "kUndefinedValue": 1, + "EqualityKind": 1, + "kStrictEquality": 1, + "kNonStrictEquality": 1, + "__OG_MATH_INL__": 2, + "og": 1, + "OG_INLINE": 41, + "Math": 41, + "Abs": 1, + "MASK_SIGNED": 2, + "y": 16, + "x": 86, + "float": 74, + "Fabs": 1, + "f": 104, + "uInt": 1, + "*pf": 1, + "reinterpret_cast": 8, + "": 1, + "pf": 1, + "fabsf": 1, + "Round": 1, + "floorf": 2, + "Floor": 1, + "Ceil": 1, + "ceilf": 1, + "Ftoi": 1, + "@todo": 1, + "needs": 4, + "testing": 2, + "note": 1, + "sse": 1, + "function": 19, + "cvttss2si": 2, + "OG_ASM_MSVC": 4, + "OG_FTOI_USE_SSE": 2, + "SysInfo": 2, + "cpu.general.SSE": 2, + "__asm": 8, + "eax": 5, + "mov": 6, + "fld": 4, + "fistp": 3, + "//__asm": 3, + "do": 13, + "we": 10, + "need": 6, + "O_o": 3, + "#elif": 7, + "OG_ASM_GNU": 4, + "__asm__": 4, + "__volatile__": 4, + "use": 37, + "c": 72, + "cast": 7, + "instead": 4, + "not": 29, + "sure": 6, + "why": 3, + "id": 4, + "did": 3, + "": 3, + "FtoiFast": 2, + "Ftol": 1, + "": 1, + "Sign": 2, + "Fmod": 1, + "numerator": 2, + "denominator": 2, + "fmodf": 1, + "Modf": 2, + "modff": 2, + "Sqrt": 2, + "sqrtf": 2, + "InvSqrt": 1, + "OG_ASSERT": 4, + "RSqrt": 1, + "g": 2, + "*reinterpret_cast": 3, + "guess": 1, + "f375a86": 1, + "": 1, + "Newtons": 1, + "calculation": 1, + "Log": 1, + "logf": 3, + "Log2": 1, + "INV_LN_2": 1, + "Log10": 1, + "INV_LN_10": 1, + "Pow": 1, + "exp": 2, + "powf": 1, + "Exp": 1, + "expf": 1, + "IsPowerOfTwo": 4, + "faster": 3, + "two": 2, + "known": 1, + "check": 4, + "moved": 1, + "beginning": 1, + "HigherPowerOfTwo": 4, + "LowerPowerOfTwo": 2, + "FloorPowerOfTwo": 1, + "CeilPowerOfTwo": 1, + "ClosestPowerOfTwo": 1, + "high": 5, + "low": 5, + "Digits": 1, + "digits": 6, + "step": 3, + "Sin": 2, + "sinf": 1, + "ASin": 1, + "<=>": 2, + "1": 4, + "0f": 2, + "HALF_PI": 2, + "asinf": 1, + "Cos": 2, + "cosf": 1, + "ACos": 1, + "PI": 1, + "acosf": 1, + "Tan": 1, + "tanf": 1, + "ATan": 2, + "atanf": 1, + "f1": 2, + "f2": 2, + "atan2f": 1, + "SinCos": 1, + "sometimes": 1, + "assembler": 1, + "just": 2, + "waaayy": 1, + "_asm": 1, + "fsincos": 1, + "ecx": 2, + "edx": 2, + "fstp": 2, + "dword": 2, + "asm": 1, + "Deg2Rad": 1, + "DEG_TO_RAD": 1, + "Rad2Deg": 1, + "RAD_TO_DEG": 1, + "Square": 1, + "v": 10, + "Cube": 1, + "Sec2Ms": 1, + "sec": 2, + "Ms2Sec": 1, + "ms": 2, + "Q_OS_LINUX": 2, + "": 1, + "QT_VERSION": 1, + "QT_VERSION_CHECK": 1, + "Something": 1, + "wrong": 1, + "setup.": 1, + "Please": 4, + "report": 3, + "mailing": 1, + "list": 3, + "main": 2, + "argc": 2, + "char**": 2, + "argv": 2, + "envp": 4, + "google_breakpad": 1, + "ExceptionHandler": 1, + "eh": 2, + "Utils": 4, + "exceptionHandler": 2, + "qInstallMsgHandler": 1, + "messageHandler": 2, + "QApplication": 1, + "app": 1, + "STATIC_BUILD": 1, + "Q_INIT_RESOURCE": 2, + "WebKit": 1, + "InspectorBackendStub": 1, + "app.setWindowIcon": 1, + "QIcon": 1, + "app.setApplicationName": 1, + "app.setOrganizationName": 1, + "app.setOrganizationDomain": 1, + "app.setApplicationVersion": 1, + "PHANTOMJS_VERSION_STRING": 1, + "Env": 13, + "parse": 3, + "Phantom": 1, + "phantom": 1, + "phantom.execute": 1, + "app.exec": 1, + "phantom.returnValue": 1, + "PY_SSIZE_T_CLEAN": 1, + "Py_PYTHON_H": 1, + "Python": 1, + "needed": 3, + "compile": 1, + "C": 6, + "extensions": 1, + "please": 2, + "install": 3, + "development": 1, + "version": 38, + "Python.": 1, + "": 1, + "offsetof": 2, + "type": 7, + "member": 2, + "type*": 1, + "WIN32": 2, + "MS_WINDOWS": 2, + "__stdcall": 2, + "__cdecl": 2, + "__fastcall": 2, + "DL_IMPORT": 2, + "t": 15, + "DL_EXPORT": 2, + "PY_LONG_LONG": 5, + "LONG_LONG": 1, + "PY_VERSION_HEX": 9, + "METH_COEXIST": 1, + "PyDict_CheckExact": 1, + "Py_TYPE": 4, + "PyDict_Type": 1, + "PyDict_Contains": 1, + "d": 8, + "o": 20, + "PySequence_Contains": 1, + "Py_ssize_t": 17, + "PY_SSIZE_T_MAX": 1, + "INT_MAX": 1, + "PY_SSIZE_T_MIN": 1, + "INT_MIN": 1, + "PY_FORMAT_SIZE_T": 1, + "PyInt_FromSsize_t": 2, + "z": 46, + "PyInt_FromLong": 13, + "PyInt_AsSsize_t": 2, + "PyInt_AsLong": 2, + "PyNumber_Index": 1, + "PyNumber_Int": 1, + "PyIndex_Check": 1, + "PyNumber_Check": 1, + "PyErr_WarnEx": 1, + "category": 2, + "message": 2, + "stacklevel": 1, + "PyErr_Warn": 1, + "Py_REFCNT": 1, + "ob": 6, + "PyObject*": 16, + "ob_refcnt": 1, + "ob_type": 7, + "Py_SIZE": 1, + "PyVarObject*": 1, + "ob_size": 1, + "PyVarObject_HEAD_INIT": 1, + "PyObject_HEAD_INIT": 1, + "PyType_Modified": 1, + "*buf": 1, + "PyObject": 221, + "*obj": 2, + "len": 15, + "itemsize": 2, + "readonly": 3, + "ndim": 2, + "*format": 1, + "*shape": 1, + "*strides": 1, + "*suboffsets": 1, + "*internal": 1, + "Py_buffer": 5, + "PyBUF_SIMPLE": 1, + "PyBUF_WRITABLE": 1, + "PyBUF_FORMAT": 1, + "PyBUF_ND": 2, + "PyBUF_STRIDES": 5, + "PyBUF_C_CONTIGUOUS": 3, + "PyBUF_F_CONTIGUOUS": 3, + "PyBUF_ANY_CONTIGUOUS": 1, + "PyBUF_INDIRECT": 1, + "PY_MAJOR_VERSION": 10, + "__Pyx_BUILTIN_MODULE_NAME": 2, + "Py_TPFLAGS_CHECKTYPES": 1, + "Py_TPFLAGS_HAVE_INDEX": 1, + "Py_TPFLAGS_HAVE_NEWBUFFER": 1, + "PyBaseString_Type": 1, + "PyUnicode_Type": 2, + "PyStringObject": 2, + "PyUnicodeObject": 1, + "PyString_Type": 2, + "PyString_Check": 2, + "PyUnicode_Check": 1, + "PyString_CheckExact": 2, + "PyUnicode_CheckExact": 1, + "PyBytesObject": 1, + "PyBytes_Type": 1, + "PyBytes_Check": 1, + "PyBytes_CheckExact": 1, + "PyBytes_FromString": 2, + "PyString_FromString": 1, + "PyBytes_FromStringAndSize": 1, + "PyString_FromStringAndSize": 1, + "PyBytes_FromFormat": 1, + "PyString_FromFormat": 1, + "PyBytes_DecodeEscape": 1, + "PyString_DecodeEscape": 1, + "PyBytes_AsString": 2, + "PyString_AsString": 1, + "PyBytes_AsStringAndSize": 1, + "PyString_AsStringAndSize": 1, + "PyBytes_Size": 1, + "PyString_Size": 1, + "PyBytes_AS_STRING": 1, + "PyString_AS_STRING": 1, + "PyBytes_GET_SIZE": 1, + "PyString_GET_SIZE": 1, + "PyBytes_Repr": 1, + "PyString_Repr": 1, + "PyBytes_Concat": 1, + "PyString_Concat": 1, + "PyBytes_ConcatAndDel": 1, + "PyString_ConcatAndDel": 1, + "PySet_Check": 1, + "obj": 42, + "PyObject_TypeCheck": 3, + "PySet_Type": 2, + "PyFrozenSet_Check": 1, + "PyFrozenSet_Type": 1, + "PySet_CheckExact": 2, + "__Pyx_TypeCheck": 1, + "PyTypeObject": 2, + "PyIntObject": 1, + "PyLongObject": 2, + "PyInt_Type": 1, + "PyLong_Type": 1, + "PyInt_Check": 1, + "PyLong_Check": 1, + "PyInt_CheckExact": 1, + "PyLong_CheckExact": 1, + "PyInt_FromString": 1, + "PyLong_FromString": 1, + "PyInt_FromUnicode": 1, + "PyLong_FromUnicode": 1, + "PyLong_FromLong": 1, + "PyInt_FromSize_t": 1, + "PyLong_FromSize_t": 1, + "PyLong_FromSsize_t": 1, + "PyLong_AsLong": 1, + "PyInt_AS_LONG": 1, + "PyLong_AS_LONG": 1, + "PyLong_AsSsize_t": 1, + "PyInt_AsUnsignedLongMask": 1, + "PyLong_AsUnsignedLongMask": 1, + "PyInt_AsUnsignedLongLongMask": 1, + "PyLong_AsUnsignedLongLongMask": 1, + "PyBoolObject": 1, + "__Pyx_PyNumber_Divide": 2, + "PyNumber_TrueDivide": 1, + "__Pyx_PyNumber_InPlaceDivide": 2, + "PyNumber_InPlaceTrueDivide": 1, + "PyNumber_Divide": 1, + "PyNumber_InPlaceDivide": 1, + "__Pyx_PySequence_GetSlice": 2, + "b": 57, + "PySequence_GetSlice": 2, + "__Pyx_PySequence_SetSlice": 2, + "PySequence_SetSlice": 2, + "__Pyx_PySequence_DelSlice": 2, + "PySequence_DelSlice": 2, + "unlikely": 69, + "PyErr_SetString": 4, + "PyExc_SystemError": 3, + "likely": 15, + "tp_as_mapping": 3, + "PyErr_Format": 4, + "PyExc_TypeError": 5, + "tp_name": 4, + "PyMethod_New": 2, + "func": 3, + "self": 5, + "klass": 1, + "PyInstanceMethod_New": 1, + "__Pyx_GetAttrString": 2, + "n": 28, + "PyObject_GetAttrString": 3, + "__Pyx_SetAttrString": 2, + "PyObject_SetAttrString": 2, + "__Pyx_DelAttrString": 2, + "PyObject_DelAttrString": 2, + "__Pyx_NAMESTR": 3, + "__Pyx_DOCSTR": 3, + "__cplusplus": 12, + "__PYX_EXTERN_C": 2, + "_USE_MATH_DEFINES": 1, + "": 1, + "__PYX_HAVE_API__wrapper_inner": 1, + "": 4, + "PYREX_WITHOUT_ASSERTIONS": 1, + "CYTHON_WITHOUT_ASSERTIONS": 1, + "CYTHON_INLINE": 68, + "__GNUC__": 5, + "__inline__": 1, + "__inline": 1, + "__STDC_VERSION__": 2, + "L": 1, + "CYTHON_UNUSED": 7, + "**p": 1, + "*s": 1, + "encoding": 1, + "is_unicode": 1, + "is_str": 1, + "intern": 1, + "__Pyx_StringTabEntry": 1, + "__Pyx_PyBytes_FromUString": 1, + "__Pyx_PyBytes_AsUString": 1, + "unsigned": 22, + "__Pyx_PyBool_FromLong": 1, + "Py_INCREF": 3, + "Py_True": 2, + "Py_False": 2, + "__Pyx_PyObject_IsTrue": 8, + "__Pyx_PyNumber_Int": 1, + "__Pyx_PyIndex_AsSsize_t": 1, + "__Pyx_PyInt_FromSize_t": 1, + "__Pyx_PyInt_AsSize_t": 1, + "__pyx_PyFloat_AsDouble": 3, + "PyFloat_CheckExact": 1, + "PyFloat_AS_DOUBLE": 1, + "PyFloat_AsDouble": 1, + "__GNUC_MINOR__": 1, + "__builtin_expect": 2, + "*__pyx_m": 1, + "*__pyx_b": 1, + "*__pyx_empty_tuple": 1, + "*__pyx_empty_bytes": 1, + "__pyx_lineno": 80, + "__pyx_clineno": 80, + "__pyx_cfilenm": 1, + "__FILE__": 2, + "*__pyx_filename": 1, + "CYTHON_CCOMPLEX": 12, + "_Complex_I": 3, + "": 1, + "": 1, + "__sun__": 1, + "fj": 1, + "*__pyx_f": 1, + "npy_int8": 1, + "__pyx_t_5numpy_int8_t": 1, + "npy_int16": 1, + "__pyx_t_5numpy_int16_t": 1, + "npy_int32": 1, + "__pyx_t_5numpy_int32_t": 1, + "npy_int64": 1, + "__pyx_t_5numpy_int64_t": 1, + "npy_uint8": 1, + "__pyx_t_5numpy_uint8_t": 1, + "npy_uint16": 1, + "__pyx_t_5numpy_uint16_t": 1, + "npy_uint32": 1, + "__pyx_t_5numpy_uint32_t": 1, + "npy_uint64": 1, + "__pyx_t_5numpy_uint64_t": 1, + "npy_float32": 1, + "__pyx_t_5numpy_float32_t": 1, + "npy_float64": 1, + "__pyx_t_5numpy_float64_t": 1, + "npy_long": 1, + "__pyx_t_5numpy_int_t": 1, + "npy_longlong": 1, + "__pyx_t_5numpy_long_t": 1, + "npy_intp": 10, + "__pyx_t_5numpy_intp_t": 1, + "npy_uintp": 1, + "__pyx_t_5numpy_uintp_t": 1, + "npy_ulong": 1, + "__pyx_t_5numpy_uint_t": 1, + "npy_ulonglong": 1, + "__pyx_t_5numpy_ulong_t": 1, + "npy_double": 2, + "__pyx_t_5numpy_float_t": 1, + "__pyx_t_5numpy_double_t": 1, + "npy_longdouble": 1, + "__pyx_t_5numpy_longdouble_t": 1, + "complex": 2, + "__pyx_t_float_complex": 27, + "_Complex": 2, + "real": 4, + "imag": 2, + "double": 25, + "__pyx_t_double_complex": 27, + "npy_cfloat": 1, + "__pyx_t_5numpy_cfloat_t": 1, + "npy_cdouble": 2, + "__pyx_t_5numpy_cdouble_t": 1, + "npy_clongdouble": 1, + "__pyx_t_5numpy_clongdouble_t": 1, + "__pyx_t_5numpy_complex_t": 1, + "CYTHON_REFNANNY": 3, + "__Pyx_RefNannyAPIStruct": 4, + "*__Pyx_RefNanny": 1, + "__Pyx_RefNannyImportAPI": 1, + "*modname": 1, + "*m": 1, + "*p": 1, + "*r": 1, + "m": 4, + "PyImport_ImportModule": 1, + "modname": 1, + "end": 23, + "p": 6, + "PyLong_AsVoidPtr": 1, + "Py_XDECREF": 3, + "__Pyx_RefNannySetupContext": 13, + "*__pyx_refnanny": 1, + "__Pyx_RefNanny": 6, + "SetupContext": 1, + "__LINE__": 84, + "__Pyx_RefNannyFinishContext": 12, + "FinishContext": 1, + "__pyx_refnanny": 5, + "__Pyx_INCREF": 36, + "INCREF": 1, + "__Pyx_DECREF": 66, + "DECREF": 1, + "__Pyx_GOTREF": 60, + "GOTREF": 1, + "__Pyx_GIVEREF": 10, + "GIVEREF": 1, + "__Pyx_XDECREF": 26, + "Py_DECREF": 1, + "__Pyx_XGIVEREF": 7, + "__Pyx_XGOTREF": 1, + "__Pyx_TypeTest": 4, + "*type": 3, + "*__Pyx_GetName": 1, + "*dict": 1, + "__Pyx_ErrRestore": 1, + "*value": 2, + "*tb": 2, + "__Pyx_ErrFetch": 1, + "**type": 1, + "**value": 1, + "**tb": 1, + "__Pyx_Raise": 8, + "__Pyx_RaiseNoneNotIterableError": 1, + "__Pyx_RaiseNeedMoreValuesError": 1, + "index": 2, + "__Pyx_RaiseTooManyValuesError": 1, + "expected": 1, + "__Pyx_UnpackTupleError": 2, + "*__Pyx_Import": 1, + "*from_list": 1, + "__Pyx_Print": 1, + "__pyx_print": 1, + "__pyx_print_kwargs": 1, + "__Pyx_PrintOne": 4, + "stream": 6, + "*o": 1, + "*__Pyx_PyInt_to_py_Py_intptr_t": 1, + "Py_intptr_t": 1, + "__Pyx_CREAL": 4, + ".real": 3, + "__Pyx_CIMAG": 4, + ".imag": 3, + "__real__": 1, + "__imag__": 1, + "_WIN32": 1, + "__Pyx_SET_CREAL": 2, + "__Pyx_SET_CIMAG": 2, + "__pyx_t_float_complex_from_parts": 1, + "__Pyx_c_eqf": 2, + "__Pyx_c_sumf": 2, + "__Pyx_c_difff": 2, + "__Pyx_c_prodf": 2, + "__Pyx_c_quotf": 2, + "__Pyx_c_negf": 2, + "__Pyx_c_is_zerof": 3, + "__Pyx_c_conjf": 3, + "conj": 3, + "__Pyx_c_absf": 3, + "abs": 2, + "__Pyx_c_powf": 3, + "pow": 2, + "conjf": 1, + "cabsf": 1, + "cpowf": 1, + "__pyx_t_double_complex_from_parts": 1, + "__Pyx_c_eq": 2, + "__Pyx_c_sum": 2, + "__Pyx_c_diff": 2, + "__Pyx_c_prod": 2, + "__Pyx_c_quot": 2, + "__Pyx_c_neg": 2, + "__Pyx_c_is_zero": 3, + "__Pyx_c_conj": 3, + "__Pyx_c_abs": 3, + "__Pyx_c_pow": 3, + "cabs": 1, + "cpow": 1, + "__Pyx_PyInt_AsUnsignedChar": 1, + "short": 5, + "__Pyx_PyInt_AsUnsignedShort": 1, + "__Pyx_PyInt_AsUnsignedInt": 1, + "__Pyx_PyInt_AsChar": 1, + "__Pyx_PyInt_AsShort": 1, + "__Pyx_PyInt_AsInt": 1, + "signed": 5, + "__Pyx_PyInt_AsSignedChar": 1, + "__Pyx_PyInt_AsSignedShort": 1, + "__Pyx_PyInt_AsSignedInt": 1, + "__Pyx_PyInt_AsLongDouble": 1, + "__Pyx_PyInt_AsUnsignedLong": 1, + "__Pyx_PyInt_AsUnsignedLongLong": 1, + "__Pyx_PyInt_AsLong": 1, + "__Pyx_PyInt_AsLongLong": 1, + "__Pyx_PyInt_AsSignedLong": 1, + "__Pyx_PyInt_AsSignedLongLong": 1, + "__Pyx_WriteUnraisable": 3, + "__Pyx_ExportFunction": 1, + "*__pyx_f_5numpy_PyArray_MultiIterNew2": 2, + "*__pyx_f_5numpy_PyArray_MultiIterNew3": 2, + "*__pyx_f_5numpy_PyArray_MultiIterNew4": 2, + "*__pyx_f_5numpy_PyArray_MultiIterNew5": 2, + "*__pyx_f_5numpy__util_dtypestring": 2, + "PyArray_Descr": 6, + "__pyx_f_5numpy_set_array_base": 1, + "PyArrayObject": 19, + "*__pyx_f_5numpy_get_array_base": 1, + "inner_work_1d": 2, + "inner_work_2d": 2, + "__Pyx_MODULE_NAME": 1, + "__pyx_module_is_main_wrapper_inner": 1, + "*__pyx_builtin_ValueError": 1, + "*__pyx_builtin_range": 1, + "*__pyx_builtin_RuntimeError": 1, + "__pyx_k_1": 1, + "__pyx_k_2": 1, + "__pyx_k_3": 1, + "__pyx_k_5": 1, + "__pyx_k_7": 1, + "__pyx_k_9": 1, + "__pyx_k_11": 1, + "__pyx_k_12": 1, + "__pyx_k_15": 1, + "__pyx_k__B": 2, + "__pyx_k__H": 2, + "__pyx_k__I": 2, + "__pyx_k__L": 2, + "__pyx_k__O": 2, + "__pyx_k__Q": 2, + "__pyx_k__b": 2, + "__pyx_k__d": 2, + "__pyx_k__f": 2, + "__pyx_k__g": 2, + "__pyx_k__h": 2, + "__pyx_k__i": 2, + "__pyx_k__l": 2, + "__pyx_k__q": 2, + "__pyx_k__Zd": 2, + "__pyx_k__Zf": 2, + "__pyx_k__Zg": 2, + "__pyx_k__np": 1, + "__pyx_k__buf": 1, + "__pyx_k__obj": 1, + "__pyx_k__base": 1, + "__pyx_k__ndim": 1, + "__pyx_k__ones": 1, + "__pyx_k__descr": 1, + "__pyx_k__names": 1, + "__pyx_k__numpy": 1, + "__pyx_k__range": 1, + "__pyx_k__shape": 1, + "__pyx_k__fields": 1, + "__pyx_k__format": 1, + "__pyx_k__strides": 1, + "__pyx_k____main__": 1, + "__pyx_k____test__": 1, + "__pyx_k__itemsize": 1, + "__pyx_k__readonly": 1, + "__pyx_k__type_num": 1, + "__pyx_k__byteorder": 1, + "__pyx_k__ValueError": 1, + "__pyx_k__suboffsets": 1, + "__pyx_k__work_module": 1, + "__pyx_k__RuntimeError": 1, + "__pyx_k__pure_py_test": 1, + "__pyx_k__wrapper_inner": 1, + "__pyx_k__do_awesome_work": 1, + "*__pyx_kp_s_1": 1, + "*__pyx_kp_u_11": 1, + "*__pyx_kp_u_12": 1, + "*__pyx_kp_u_15": 1, + "*__pyx_kp_s_2": 1, + "*__pyx_kp_s_3": 1, + "*__pyx_kp_u_5": 1, + "*__pyx_kp_u_7": 1, + "*__pyx_kp_u_9": 1, + "*__pyx_n_s__RuntimeError": 1, + "*__pyx_n_s__ValueError": 1, + "*__pyx_n_s____main__": 1, + "*__pyx_n_s____test__": 1, + "*__pyx_n_s__base": 1, + "*__pyx_n_s__buf": 1, + "*__pyx_n_s__byteorder": 1, + "*__pyx_n_s__descr": 1, + "*__pyx_n_s__do_awesome_work": 1, + "*__pyx_n_s__fields": 1, + "*__pyx_n_s__format": 1, + "*__pyx_n_s__itemsize": 1, + "*__pyx_n_s__names": 1, + "*__pyx_n_s__ndim": 1, + "*__pyx_n_s__np": 1, + "*__pyx_n_s__numpy": 1, + "*__pyx_n_s__obj": 1, + "*__pyx_n_s__ones": 1, + "*__pyx_n_s__pure_py_test": 1, + "*__pyx_n_s__range": 1, + "*__pyx_n_s__readonly": 1, + "*__pyx_n_s__shape": 1, + "*__pyx_n_s__strides": 1, + "*__pyx_n_s__suboffsets": 1, + "*__pyx_n_s__type_num": 1, + "*__pyx_n_s__work_module": 1, + "*__pyx_n_s__wrapper_inner": 1, + "*__pyx_int_5": 1, + "*__pyx_int_15": 1, + "*__pyx_k_tuple_4": 1, + "*__pyx_k_tuple_6": 1, + "*__pyx_k_tuple_8": 1, + "*__pyx_k_tuple_10": 1, + "*__pyx_k_tuple_13": 1, + "*__pyx_k_tuple_14": 1, + "*__pyx_k_tuple_16": 1, + "__pyx_v_num_x": 4, + "*__pyx_v_data_ptr": 2, + "*__pyx_v_answer_ptr": 2, + "__pyx_v_nd": 6, + "*__pyx_v_dims": 2, + "__pyx_v_typenum": 6, + "*__pyx_v_data_np": 2, + "__pyx_v_sum": 6, + "__pyx_t_1": 154, + "*__pyx_t_2": 4, + "*__pyx_t_3": 4, + "*__pyx_t_4": 3, + "__pyx_t_5": 75, + "__pyx_kp_s_1": 1, + "__pyx_filename": 79, + "__pyx_f": 79, + "__pyx_L1_error": 88, + "__pyx_v_dims": 4, + "NPY_DOUBLE": 3, + "__pyx_t_2": 120, + "PyArray_SimpleNewFromData": 2, + "__pyx_v_data_ptr": 2, + "Py_None": 38, + "__pyx_ptype_5numpy_ndarray": 2, + "__pyx_v_data_np": 10, + "__Pyx_GetName": 4, + "__pyx_m": 4, + "__pyx_n_s__work_module": 3, + "__pyx_t_3": 113, + "PyObject_GetAttr": 4, + "__pyx_n_s__do_awesome_work": 3, + "PyTuple_New": 4, + "PyTuple_SET_ITEM": 4, + "__pyx_t_4": 35, + "PyObject_Call": 11, + "PyErr_Occurred": 2, + "__pyx_v_answer_ptr": 2, + "__pyx_L0": 24, + "__pyx_v_num_y": 2, + "__pyx_kp_s_2": 1, + "*__pyx_pf_13wrapper_inner_pure_py_test": 2, + "*__pyx_self": 2, + "*unused": 2, + "PyMethodDef": 1, + "__pyx_mdef_13wrapper_inner_pure_py_test": 1, + "PyCFunction": 1, + "__pyx_pf_13wrapper_inner_pure_py_test": 1, + "METH_NOARGS": 1, + "*__pyx_v_data": 1, + "*__pyx_r": 7, + "*__pyx_t_1": 8, + "__pyx_self": 2, + "__pyx_v_data": 7, + "__pyx_kp_s_3": 1, + "__pyx_n_s__np": 1, + "__pyx_n_s__ones": 1, + "__pyx_k_tuple_4": 1, + "__pyx_r": 39, + "__Pyx_AddTraceback": 7, + "__pyx_pf_5numpy_7ndarray___getbuffer__": 2, + "*__pyx_v_self": 4, + "*__pyx_v_info": 4, + "__pyx_v_flags": 4, + "__pyx_v_copy_shape": 5, + "__pyx_v_i": 6, + "__pyx_v_ndim": 6, + "__pyx_v_endian_detector": 6, + "__pyx_v_little_endian": 8, + "__pyx_v_t": 29, + "*__pyx_v_f": 2, + "*__pyx_v_descr": 2, + "__pyx_v_offset": 9, + "__pyx_v_hasfields": 4, + "__pyx_t_6": 40, + "__pyx_t_7": 9, + "*__pyx_t_8": 1, + "*__pyx_t_9": 1, + "__pyx_v_info": 33, + "__pyx_v_self": 16, + "PyArray_NDIM": 1, + "__pyx_L5": 6, + "PyArray_CHKFLAGS": 2, + "NPY_C_CONTIGUOUS": 1, + "__pyx_builtin_ValueError": 5, + "__pyx_k_tuple_6": 1, + "__pyx_L6": 6, + "NPY_F_CONTIGUOUS": 1, + "__pyx_k_tuple_8": 1, + "__pyx_L7": 2, + "buf": 14, + "PyArray_DATA": 1, + "strides": 5, + "malloc": 2, + "shape": 3, + "PyArray_STRIDES": 2, + "PyArray_DIMS": 2, + "__pyx_L8": 2, + "suboffsets": 1, + "PyArray_ITEMSIZE": 1, + "PyArray_ISWRITEABLE": 1, + "__pyx_v_f": 31, + "descr": 2, + "__pyx_v_descr": 10, + "PyDataType_HASFIELDS": 2, + "__pyx_L11": 7, + "type_num": 2, + "byteorder": 4, + "__pyx_k_tuple_10": 1, + "__pyx_L13": 2, + "NPY_BYTE": 2, + "__pyx_L14": 18, + "NPY_UBYTE": 2, + "NPY_SHORT": 2, + "NPY_USHORT": 2, + "NPY_INT": 2, + "NPY_UINT": 2, + "NPY_LONG": 1, + "NPY_ULONG": 1, + "NPY_LONGLONG": 1, + "NPY_ULONGLONG": 1, + "NPY_FLOAT": 1, + "NPY_LONGDOUBLE": 1, + "NPY_CFLOAT": 1, + "NPY_CDOUBLE": 1, + "NPY_CLONGDOUBLE": 1, + "NPY_OBJECT": 1, + "__pyx_t_8": 16, + "PyNumber_Remainder": 1, + "__pyx_kp_u_11": 1, + "format": 6, + "__pyx_L12": 2, + "__pyx_t_9": 7, + "__pyx_f_5numpy__util_dtypestring": 1, + "__pyx_L2": 2, + "__pyx_pf_5numpy_7ndarray_1__releasebuffer__": 2, + "PyArray_HASFIELDS": 1, + "free": 4, + "*__pyx_f_5numpy_PyArray_MultiIterNew1": 1, + "*__pyx_v_a": 5, + "PyArray_MultiIterNew": 5, + "__pyx_v_a": 5, + "*__pyx_v_b": 4, + "__pyx_v_b": 4, + "*__pyx_v_c": 3, + "__pyx_v_c": 3, + "*__pyx_v_d": 2, + "__pyx_v_d": 2, + "*__pyx_v_e": 1, + "__pyx_v_e": 1, + "*__pyx_v_end": 1, + "*__pyx_v_offset": 1, + "*__pyx_v_child": 1, + "*__pyx_v_fields": 1, + "*__pyx_v_childname": 1, + "*__pyx_v_new_offset": 1, + "*__pyx_v_t": 1, + "*__pyx_t_5": 1, + "__pyx_t_10": 7, + "*__pyx_t_11": 1, + "__pyx_v_child": 8, + "__pyx_v_fields": 7, + "__pyx_v_childname": 4, + "__pyx_v_new_offset": 5, + "names": 3, + "PyTuple_GET_SIZE": 2, + "PyTuple_GET_ITEM": 3, + "PyObject_GetItem": 1, + "fields": 4, + "PyTuple_CheckExact": 1, + "tuple": 3, + "__pyx_ptype_5numpy_dtype": 1, + "__pyx_v_end": 2, + "PyNumber_Subtract": 2, + "PyObject_RichCompare": 8, + "__pyx_int_15": 1, + "Py_LT": 2, + "__pyx_builtin_RuntimeError": 2, + "__pyx_k_tuple_13": 1, + "__pyx_k_tuple_14": 1, + "elsize": 1, + "__pyx_k_tuple_16": 1, + "__pyx_L10": 2, + "Py_EQ": 6, + "QSCICOMMAND_H": 2, + "": 1, + "": 1, + "QsciCommand": 7, + "represents": 1, + "an": 23, + "editor": 1, + "command": 9, + "may": 9, + "have": 4, + "one": 73, + "keys": 3, + "bound": 4, + "Methods": 1, + "provided": 1, + "change": 3, + "remove": 2, + "key": 23, + "binding.": 1, + "Each": 1, + "has": 29, + "user": 3, + "friendly": 2, + "description": 3, + "in": 165, + "mapping": 3, + "dialogs.": 1, + "defines": 3, + "different": 5, + "commands": 1, + "assigned": 1, + "key.": 1, + "Command": 4, + "Move": 26, + "down": 12, + "line.": 33, + "LineDown": 1, + "SCI_LINEDOWN": 1, + "Extend": 33, + "selection": 39, + "LineDownExtend": 1, + "SCI_LINEDOWNEXTEND": 1, + "rectangular": 9, + "LineDownRectExtend": 1, + "SCI_LINEDOWNRECTEXTEND": 1, + "Scroll": 5, + "view": 2, + "LineScrollDown": 1, + "SCI_LINESCROLLDOWN": 1, + "up": 18, + "LineUp": 1, + "SCI_LINEUP": 1, + "LineUpExtend": 1, + "SCI_LINEUPEXTEND": 1, + "LineUpRectExtend": 1, + "SCI_LINEUPRECTEXTEND": 1, + "LineScrollUp": 1, + "SCI_LINESCROLLUP": 1, + "start": 12, + "ScrollToStart": 1, + "SCI_SCROLLTOSTART": 1, + "ScrollToEnd": 1, + "SCI_SCROLLTOEND": 1, + "vertically": 1, + "centre": 1, + "current": 26, + "VerticalCentreCaret": 1, + "SCI_VERTICALCENTRECARET": 1, + "paragraph.": 4, + "ParaDown": 1, + "SCI_PARADOWN": 1, + "ParaDownExtend": 1, + "SCI_PARADOWNEXTEND": 1, + "ParaUp": 1, + "SCI_PARAUP": 1, + "ParaUpExtend": 1, + "SCI_PARAUPEXTEND": 1, + "left": 7, + "character.": 9, + "CharLeft": 1, + "SCI_CHARLEFT": 1, + "CharLeftExtend": 1, + "SCI_CHARLEFTEXTEND": 1, + "CharLeftRectExtend": 1, + "SCI_CHARLEFTRECTEXTEND": 1, + "right": 9, + "CharRight": 1, + "SCI_CHARRIGHT": 1, + "CharRightExtend": 1, + "SCI_CHARRIGHTEXTEND": 1, + "CharRightRectExtend": 1, + "SCI_CHARRIGHTRECTEXTEND": 1, + "word.": 9, + "WordLeft": 1, + "SCI_WORDLEFT": 1, + "WordLeftExtend": 1, + "SCI_WORDLEFTEXTEND": 1, + "WordRight": 1, + "SCI_WORDRIGHT": 1, + "WordRightExtend": 1, + "SCI_WORDRIGHTEXTEND": 1, + "previous": 6, + "WordLeftEnd": 1, + "SCI_WORDLEFTEND": 1, + "WordLeftEndExtend": 1, + "SCI_WORDLEFTENDEXTEND": 1, + "next": 9, + "WordRightEnd": 1, + "SCI_WORDRIGHTEND": 1, + "WordRightEndExtend": 1, + "SCI_WORDRIGHTENDEXTEND": 1, + "word": 7, + "part.": 4, + "WordPartLeft": 1, + "SCI_WORDPARTLEFT": 1, + "WordPartLeftExtend": 1, + "SCI_WORDPARTLEFTEXTEND": 1, + "WordPartRight": 1, + "SCI_WORDPARTRIGHT": 1, + "WordPartRightExtend": 1, + "SCI_WORDPARTRIGHTEXTEND": 1, + "Home": 1, + "SCI_HOME": 1, + "HomeExtend": 1, + "SCI_HOMEEXTEND": 1, + "HomeRectExtend": 1, + "SCI_HOMERECTEXTEND": 1, + "displayed": 10, + "HomeDisplay": 1, + "SCI_HOMEDISPLAY": 1, + "HomeDisplayExtend": 1, + "SCI_HOMEDISPLAYEXTEND": 1, + "HomeWrap": 1, + "SCI_HOMEWRAP": 1, + "HomeWrapExtend": 1, + "SCI_HOMEWRAPEXTEND": 1, + "visible": 6, + "character": 10, + "VCHome": 1, + "SCI_VCHOME": 1, + "VCHomeExtend": 1, + "SCI_VCHOMEEXTEND": 1, + "VCHomeRectExtend": 1, + "SCI_VCHOMERECTEXTEND": 1, + "VCHomeWrap": 1, + "SCI_VCHOMEWRAP": 1, + "VCHomeWrapExtend": 1, + "SCI_VCHOMEWRAPEXTEND": 1, + "LineEnd": 1, + "SCI_LINEEND": 1, + "LineEndExtend": 1, + "SCI_LINEENDEXTEND": 1, + "LineEndRectExtend": 1, + "SCI_LINEENDRECTEXTEND": 1, + "LineEndDisplay": 1, + "SCI_LINEENDDISPLAY": 1, + "LineEndDisplayExtend": 1, + "SCI_LINEENDDISPLAYEXTEND": 1, + "LineEndWrap": 1, + "SCI_LINEENDWRAP": 1, + "LineEndWrapExtend": 1, + "SCI_LINEENDWRAPEXTEND": 1, + "DocumentStart": 1, + "SCI_DOCUMENTSTART": 1, + "DocumentStartExtend": 1, + "SCI_DOCUMENTSTARTEXTEND": 1, + "DocumentEnd": 1, + "SCI_DOCUMENTEND": 1, + "DocumentEndExtend": 1, + "SCI_DOCUMENTENDEXTEND": 1, + "PageUp": 1, + "SCI_PAGEUP": 1, + "PageUpExtend": 1, + "SCI_PAGEUPEXTEND": 1, + "PageUpRectExtend": 1, + "SCI_PAGEUPRECTEXTEND": 1, + "PageDown": 1, + "SCI_PAGEDOWN": 1, + "PageDownExtend": 1, + "SCI_PAGEDOWNEXTEND": 1, + "PageDownRectExtend": 1, + "SCI_PAGEDOWNRECTEXTEND": 1, + "Stuttered": 4, + "move": 2, + "StutteredPageUp": 1, + "SCI_STUTTEREDPAGEUP": 1, + "extend": 2, + "StutteredPageUpExtend": 1, + "SCI_STUTTEREDPAGEUPEXTEND": 1, + "StutteredPageDown": 1, + "SCI_STUTTEREDPAGEDOWN": 1, + "StutteredPageDownExtend": 1, + "SCI_STUTTEREDPAGEDOWNEXTEND": 1, + "Delete": 10, + "SCI_CLEAR": 1, + "DeleteBack": 1, + "SCI_DELETEBACK": 1, + "at": 20, + "DeleteBackNotLine": 1, + "SCI_DELETEBACKNOTLINE": 1, + "left.": 2, + "DeleteWordLeft": 1, + "SCI_DELWORDLEFT": 1, + "right.": 2, + "DeleteWordRight": 1, + "SCI_DELWORDRIGHT": 1, + "DeleteWordRightEnd": 1, + "SCI_DELWORDRIGHTEND": 1, + "DeleteLineLeft": 1, + "SCI_DELLINELEFT": 1, + "DeleteLineRight": 1, + "SCI_DELLINERIGHT": 1, + "LineDelete": 1, + "SCI_LINEDELETE": 1, + "Cut": 2, + "clipboard.": 5, + "LineCut": 1, + "SCI_LINECUT": 1, + "Copy": 2, + "LineCopy": 1, + "SCI_LINECOPY": 1, + "Transpose": 1, + "lines.": 1, + "LineTranspose": 1, + "SCI_LINETRANSPOSE": 1, + "Duplicate": 2, + "LineDuplicate": 1, + "SCI_LINEDUPLICATE": 1, + "Select": 49, + "SelectAll": 1, + "SCI_SELECTALL": 1, + "selected": 13, + "MoveSelectedLinesUp": 1, + "SCI_MOVESELECTEDLINESUP": 1, + "MoveSelectedLinesDown": 1, + "SCI_MOVESELECTEDLINESDOWN": 1, + "selection.": 1, + "SelectionDuplicate": 1, + "SCI_SELECTIONDUPLICATE": 1, + "Convert": 2, + "lower": 1, + "case.": 2, + "SelectionLowerCase": 1, + "SCI_LOWERCASE": 1, + "upper": 1, + "SelectionUpperCase": 1, + "SCI_UPPERCASE": 1, + "SelectionCut": 1, + "SCI_CUT": 1, + "SelectionCopy": 1, + "SCI_COPY": 1, + "Paste": 2, + "SCI_PASTE": 1, + "Toggle": 1, + "insert/overtype.": 1, + "EditToggleOvertype": 1, + "SCI_EDITTOGGLEOVERTYPE": 1, + "Insert": 2, + "platform": 2, + "dependent": 1, + "newline.": 1, + "Newline": 1, + "SCI_NEWLINE": 1, + "formfeed.": 1, + "Formfeed": 1, + "SCI_FORMFEED": 1, + "Indent": 1, + "level.": 3, + "Tab": 1, + "SCI_TAB": 1, + "De": 1, + "indent": 1, + "Backtab": 1, + "SCI_BACKTAB": 1, + "Cancel": 2, + "operation.": 2, + "SCI_CANCEL": 1, + "Undo": 2, + "command.": 5, + "SCI_UNDO": 1, + "Redo": 2, + "SCI_REDO": 1, + "Zoom": 2, + "in.": 1, + "ZoomIn": 1, + "SCI_ZOOMIN": 1, + "out.": 1, + "ZoomOut": 1, + "SCI_ZOOMOUT": 1, + "executed": 1, + "scicmd": 2, + "Execute": 1, + "execute": 3, + "Binds": 2, + "If": 11, + "then": 15, + "binding": 3, + "removed.": 2, + "invalid": 5, + "unchanged.": 1, + "Valid": 1, + "control": 17, + "Key_Down": 1, + "Key_Up": 1, + "Key_Left": 1, + "Key_Right": 1, + "Key_Home": 1, + "Key_End": 1, + "Key_PageUp": 1, + "Key_PageDown": 1, + "Key_Delete": 1, + "Key_Insert": 1, + "Key_Escape": 1, + "Key_Backspace": 1, + "Key_Tab": 1, + "Key_Return.": 1, + "Keys": 1, + "combination": 2, + "SHIFT": 1, + "CTRL": 1, + "ALT": 1, + "META.": 1, + "setAlternateKey": 3, + "validKey": 3, + "setKey": 3, + "alternate": 7, + "altkey": 3, + "alternateKey": 3, + "currently": 12, + "returned.": 4, + "qkey": 2, + "qaltkey": 2, + "valid": 2, + "QString": 20, + "friend": 10, + "QsciCommandSet": 1, + "*qs": 1, + "cmd": 1, + "*desc": 1, + "bindKey": 1, + "qk": 1, + "scik": 1, + "*qsCmd": 1, + "scikey": 1, + "scialtkey": 1, + "*descCmd": 1, + "Gui": 1, + "LIBCANIH": 2, + "": 2, + "": 2, + "": 1, + "": 1, + "int64": 1, + "//#define": 1, + "dout": 2, + "cout": 2, + "cerr": 1, + "using": 11, + "libcanister": 2, + "//the": 8, + "canmem": 22, + "object": 3, + "generic": 1, + "memory": 14, + "container": 2, + "commonly": 1, + "//throughout": 1, + "canister": 14, + "framework": 1, + "hold": 1, + "uncertain": 1, + "//length": 1, + "which": 14, + "contain": 1, + "null": 3, + "bytes.": 1, + "data": 26, + "raw": 2, + "absolute": 1, + "length": 10, + "//creates": 3, + "unallocated": 1, + "allocsize": 1, + "allocated": 2, + "blank": 1, + "strdata": 1, + "//automates": 1, + "creation": 1, + "zero": 5, + "limited": 2, + "canmems": 1, + "//cleans": 1, + "zeromem": 1, + "//overwrites": 2, + "fragmem": 1, + "fragment": 2, + "notation": 1, + "countlen": 1, + "//counts": 1, + "strings": 1, + "stores": 3, + "trim": 2, + "//removes": 1, + "nulls": 1, + "//returns": 2, + "singleton": 2, + "//contains": 2, + "information": 3, + "about": 6, + "caninfo": 2, + "path": 8, + "//physical": 1, + "internalname": 1, + "//a": 1, + "numfiles": 1, + "files": 6, + "//necessary": 1, + "as": 28, + "canfile": 7, + "//this": 1, + "holds": 2, + "definition": 3, + "within": 4, + "//canister": 1, + "canister*": 1, + "parent": 1, + "//internal": 1, + "//use": 1, + "their": 6, + "own.": 1, + "newline": 2, + "delimited": 2, + "container.": 1, + "TOC": 1, + "info": 2, + "general": 1, + "canfiles": 1, + "recommended": 1, + "programs": 4, + "modify": 1, + "//these": 1, + "directly": 2, + "but": 5, + "enforced.": 1, + "canfile*": 1, + "//if": 1, + "write": 8, + "routines": 1, + "anything": 1, + "//maximum": 1, + "given": 16, + "//time": 1, + "whatever": 1, + "suits": 1, + "your": 12, + "application.": 1, + "cachemax": 2, + "cachecnt": 1, + "//number": 1, + "cache": 2, + "//both": 1, + "initialize": 1, + "physical": 4, + "fspath": 3, + "//destroys": 1, + "after": 18, + "flushing": 1, + "modded": 1, + "buffers": 3, + "course": 2, + "//open": 1, + "//does": 1, + "exist": 2, + "open": 6, + "//close": 1, + "flush": 1, "all": 11, - "substr_count": 1, + "clean": 2, + "//deletes": 1, + "inside": 1, + "delFile": 1, + "//pulls": 1, + "contents": 3, + "disk": 2, + "returns": 4, + "getFile": 1, + "does": 4, + "otherwise": 1, + "overwrites": 1, + "whether": 4, + "succeeded": 2, + "writeFile": 2, + "//get": 1, + "containing": 2, + "//list": 1, + "paths": 1, + "getTOC": 1, + "//brings": 1, + "back": 1, + "limit": 1, + "//important": 1, + "sCFID": 2, + "safe": 4, + "CFID": 2, + "avoid": 1, + "uncaching": 1, + "//really": 1, + "internally": 1, + "harm.": 1, + "cacheclean": 1, + "dFlush": 1, + "Scanner": 16, + "UnicodeCache*": 4, + "unicode_cache": 3, + "unicode_cache_": 10, + "octal_pos_": 5, + "Location": 14, + "harmony_scoping_": 4, + "harmony_modules_": 4, + "Utf16CharacterStream*": 3, + "source_": 7, + "Init": 3, + "has_line_terminator_before_next_": 9, + "SkipWhiteSpace": 4, + "Scan": 5, + "uc32": 19, + "ScanHexNumber": 2, + "expected_length": 4, + "ASSERT": 17, + "prevent": 4, + "overflow": 1, + "c0_": 64, + "HexValue": 2, + "PushBack": 8, + "Advance": 44, + "STATIC_ASSERT": 5, + "Token": 212, + "NUM_TOKENS": 1, + "byte": 6, + "one_char_tokens": 2, + "ILLEGAL": 120, + "LPAREN": 2, + "RPAREN": 2, + "COMMA": 2, + "COLON": 2, + "SEMICOLON": 2, + "CONDITIONAL": 2, + "LBRACK": 2, + "RBRACK": 2, + "LBRACE": 2, + "RBRACE": 2, + "BIT_NOT": 2, + "e": 15, + "Value": 24, + "Next": 3, + "current_": 2, + "has_multiline_comment_before_next_": 5, + "": 19, + "token": 64, + "": 1, + "pos": 12, + "source_pos": 10, + "next_.token": 3, + "next_.location.beg_pos": 3, + "next_.location.end_pos": 4, + "current_.token": 4, + "IsByteOrderMark": 2, + "xFEFF": 1, + "xFFFE": 1, + "start_position": 2, + "IsWhiteSpace": 2, + "IsLineTerminator": 6, + "SkipSingleLineComment": 6, + "continue": 2, + "undo": 4, + "WHITESPACE": 6, + "SkipMultiLineComment": 3, + "ch": 5, + "ScanHtmlComment": 3, + "LT": 2, + "next_.literal_chars": 13, + "ScanString": 3, + "LTE": 1, + "ASSIGN_SHL": 1, + "SHL": 1, + "GTE": 1, + "ASSIGN_SAR": 1, + "ASSIGN_SHR": 1, + "SHR": 1, + "SAR": 1, + "GT": 1, + "EQ_STRICT": 1, + "EQ": 1, + "ASSIGN": 1, + "NE_STRICT": 1, + "NE": 1, + "NOT": 3, + "INC": 1, + "ASSIGN_ADD": 1, + "ADD": 1, + "DEC": 1, + "ASSIGN_SUB": 1, + "SUB": 1, + "ASSIGN_MUL": 1, + "MUL": 1, + "ASSIGN_MOD": 1, + "MOD": 1, + "ASSIGN_DIV": 1, + "DIV": 1, + "AND": 1, + "ASSIGN_BIT_AND": 1, + "BIT_AND": 1, + "OR": 1, + "ASSIGN_BIT_OR": 1, + "BIT_OR": 1, + "ASSIGN_BIT_XOR": 1, + "BIT_XOR": 1, + "IsDecimalDigit": 2, + "ScanNumber": 3, + "PERIOD": 1, + "IsIdentifierStart": 2, + "ScanIdentifierOrKeyword": 2, + "EOS": 1, + "SeekForward": 4, + "current_pos": 4, + "ASSERT_EQ": 1, + "ScanEscape": 2, + "IsCarriageReturn": 2, + "IsLineFeed": 2, + "fall": 2, + "through": 4, + "u": 9, + "xx": 2, + "xxx": 1, + "immediately": 1, + "octal": 1, + "escape": 1, + "quote": 3, + "consume": 2, + "LiteralScope": 4, + "literal": 2, + ".": 16, + "X": 2, + "E": 3, + "l": 1, + "w": 1, + "keyword": 1, + "Unescaped": 1, + "in_character_class": 2, + "AddLiteralCharAdvance": 3, + "literal.Complete": 2, + "ScanLiteralUnicodeEscape": 3, + "": 4, + "DEFAULT_DELIMITER": 1, + "CsvStreamer": 5, + "ofstream": 1, + "File": 1, + "vector": 16, + "row_buffer": 1, + "Buffer": 10, + "row": 12, + "flushed/written": 1, + "Number": 8, + "columns": 2, + "rows": 3, + "records": 2, + "including": 2, + "header": 7, + "delimiter": 2, + "Delimiter": 1, + "comma": 2, + "sanitize": 1, + "Returns": 2, + "ready": 1, + "into": 6, + "Empty": 1, + "CSV": 4, + "streamer...": 1, + "writing": 2, + "Same": 1, + "...": 1, + "Opens": 3, + "path/name": 3, + "Ensures": 1, + "closed": 1, + "saved": 1, + "delimiting": 1, + "add_field": 1, + "still": 3, + "adds": 1, + "field": 5, + "save_fields": 1, + "Call": 2, + "save": 1, + "writes": 2, + "append": 8, + "Appends": 5, + "quoted": 1, + "leading/trailing": 1, + "spaces": 3, + "trimmed": 1, + "Like": 1, + "specify": 1, + "either": 4, + "keep": 1, + "writeln": 1, + "Flushes": 1, + "what": 2, + "buffer": 9, + "Saves": 1, + "closes": 1, + "field_count": 1, + "Gets": 2, + "row_count": 1, + "PROTOBUF_protocol_2dbuffer_2eproto__INCLUDED": 3, + "GOOGLE_PROTOBUF_VERSION": 1, + "generated": 2, + "newer": 2, + "protoc": 2, + "incompatible": 2, + "Protocol": 2, + "headers.": 3, + "update": 1, + "GOOGLE_PROTOBUF_MIN_PROTOC_VERSION": 1, + "older": 1, + "regenerate": 1, + "protoc.": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "*this": 1, + "UnknownFieldSet": 2, + "UnknownFieldSet*": 1, + "GetCachedSize": 1, + "clear_name": 2, + "release_name": 2, + "set_allocated_name": 2, + "set_has_name": 7, + "clear_has_name": 5, + "mutable": 1, + "*name_": 1, + "assign": 3, + "temp": 2, + "SWIG": 2, + "V8_DECLARE_ONCE": 1, + "init_once": 2, + "LazyMutex": 1, + "entropy_mutex": 1, + "LAZY_MUTEX_INITIALIZER": 1, + "entropy_source": 4, + "FlagList": 1, + "EnforceFlagImplications": 1, + "Isolate": 9, + "CurrentPerIsolateThreadData": 4, + "EnterDefaultIsolate": 1, + "thread_id": 1, + ".Equals": 1, + "ThreadId": 1, + "Current": 5, + "IsDefaultIsolate": 1, + "ElementsAccessor": 2, + "LOperand": 2, + "TearDownCaches": 1, + "RegisteredExtension": 1, + "UnregisterAll": 1, + "OS": 3, + "seed_random": 2, + "uint32_t*": 7, + "FLAG_random_seed": 2, + "val": 3, + "ScopedLock": 1, + "entropy_mutex.Pointer": 1, + "random": 1, + "random_base": 3, + "xFFFF": 2, + "FFFF": 1, + "StackFrame": 1, + "IsGlobalContext": 1, + "ByteArray*": 1, + "seed": 2, + "random_seed": 1, + "": 1, + "GetDataStartAddress": 1, + "private_random_seed": 1, + "FLAG_use_idle_notification": 1, + "HEAP": 1, + "Lazy": 1, + "init.": 1, + "Add": 1, + "Remove": 1, + "HandleScopeImplementer*": 1, + "handle_scope_implementer": 5, + "CallDepthIsZero": 1, + "IncrementCallDepth": 1, + "DecrementCallDepth": 1, + "union": 1, + "double_value": 1, + "uint64_t": 8, + "uint64_t_value": 1, + "double_int_union": 2, + "random_bits": 2, + "binary_million": 3, + "r.double_value": 3, + "r.uint64_t_value": 1, + "HeapNumber": 1, + "set_value": 1, + "SetUp": 4, + "FLAG_crankshaft": 1, + "Serializer": 1, + "enabled": 4, + "CPU": 5, + "SupportsCrankshaft": 1, + "PostSetUp": 1, + "RuntimeProfiler": 1, + "GlobalSetUp": 1, + "FLAG_stress_compaction": 1, + "FLAG_force_marking_deque_overflows": 1, + "FLAG_gc_global": 1, + "FLAG_max_new_space_size": 1, + "kPageSizeBits": 1, + "SetUpCaches": 1, + "SetUpJSCallerSavedCodeData": 1, + "SamplerRegistry": 1, + "ExternalReference": 1, + "CallOnce": 1, + "endl": 1, + "///": 843, + "mainpage": 1, + "library": 14, + "Broadcom": 3, + "BCM": 14, + "Raspberry": 6, + "Pi": 5, + "RPi": 17, + "It": 7, + "provides": 3, + "access": 17, + "GPIO": 87, + "IO": 2, + "functions": 19, + "chip": 9, + "allowing": 3, + "pins": 40, + "pin": 90, + "IDE": 4, + "plug": 3, + "board": 2, + "so": 2, + "interface": 9, + "various": 4, + "external": 3, + "devices.": 1, + "reading": 3, + "digital": 2, + "inputs": 2, + "setting": 2, + "outputs": 1, + "SPI": 44, + "I2C": 29, + "accessing": 2, + "timers.": 1, + "Pin": 65, + "event": 3, + "detection": 2, + "supported": 3, + "polling": 1, + "interrupts": 1, + "compatible": 1, + "installs": 1, + "non": 2, + "shared": 2, + "Linux": 2, + "based": 4, + "distro": 1, + "clearly": 1, + "except": 2, + "another": 1, + "package": 1, + "documentation": 3, + "refers": 1, + "downloaded": 1, + "http": 11, + "//www.airspayce.com/mikem/bcm2835/bcm2835": 1, + "tar.gz": 1, + "You": 9, + "find": 2, + "latest": 2, + "//www.airspayce.com/mikem/bcm2835": 1, + "Several": 1, + "provided.": 1, + "Based": 1, + "//elinux.org/RPi_Low": 1, + "level_peripherals": 1, + "//www.raspberrypi.org/wp": 1, + "content/uploads/2012/02/BCM2835": 1, + "ARM": 5, + "Peripherals.pdf": 1, + "//www.scribd.com/doc/101830961/GPIO": 2, + "Pads": 3, + "Control2": 2, + "also": 3, + "online": 1, + "help": 1, + "discussion": 1, + "//groups.google.com/group/bcm2835": 1, + "group": 23, + "questions": 1, + "discussions": 1, + "topic.": 1, + "Do": 1, + "contact": 1, + "author": 3, + "unless": 1, + "discuss": 1, + "commercial": 1, + "licensing.": 1, + "Tested": 1, + "debian6": 1, + "wheezy": 3, + "raspbian": 3, + "Occidentalisv01": 2, + "CAUTION": 1, + "been": 14, + "observed": 1, + "detect": 3, + "enables": 3, + "such": 4, + "bcm2835_gpio_len": 5, + "pulled": 1, + "LOW": 8, + "cause": 1, + "temporary": 1, + "hangs": 1, + "Occidentalisv01.": 1, + "Reason": 1, + "yet": 1, + "determined": 1, + "suspect": 1, + "handler": 1, + "hitting": 1, + "hard": 1, + "loop": 2, + "those": 3, + "OSs.": 1, + "friends": 2, + "make": 6, + "disable": 2, + "bcm2835_gpio_cler_len": 1, + "use.": 1, + "par": 9, + "Installation": 1, + "consists": 1, + "single": 2, + "installed": 1, + "usual": 3, + "places": 1, + "code": 12, + "#": 1, + "download": 2, + "say": 1, + "bcm2835": 7, + "xx.tar.gz": 2, + "tar": 1, + "zxvf": 1, + "cd": 1, + "./configure": 1, + "sudo": 2, + "endcode": 2, + "Physical": 21, + "Addresses": 6, + "bcm2835_peri_read": 3, + "bcm2835_peri_write": 3, + "bcm2835_peri_set_bits": 2, + "level": 10, + "peripheral": 14, + "register": 17, + "functions.": 4, + "They": 1, + "designed": 3, + "addresses": 4, + "described": 1, + "section": 6, + "BCM2835": 2, + "Peripherals": 1, + "manual.": 1, + "FFFFFF": 1, + "peripherals.": 1, + "bus": 4, + "peripherals": 2, + "map": 3, + "onto": 1, + "address": 13, + "starting": 1, + "E000000.": 1, + "Thus": 1, + "advertised": 1, + "manual": 8, + "Ennnnnn": 1, + "available": 6, + "nnnnnn.": 1, + "registers": 12, + "following": 2, + "externals": 1, + "bcm2835_gpio": 2, + "bcm2835_pwm": 2, + "bcm2835_clk": 2, + "bcm2835_pads": 2, + "bcm2835_spio0": 1, + "bcm2835_st": 1, + "bcm2835_bsc0": 1, + "bcm2835_bsc1": 1, + "Numbering": 1, + "numbering": 1, + "inconsistent": 1, + "underlying": 4, + "numbering.": 1, + "//elinux.org/RPi_BCM2835_GPIOs": 1, + "some": 4, + "well": 1, + "power": 1, + "ground": 1, + "pins.": 1, + "Not": 4, + "header.": 1, + "Version": 40, + "P5": 6, + "connector": 1, + "V": 2, + "Gnd.": 1, + "passed": 4, + "_not_": 1, + "number.": 1, + "There": 1, + "symbolic": 1, + "definitions": 3, + "convenience.": 1, + "See": 7, + "ref": 32, + "RPiGPIOPin.": 22, + "Pins": 2, + "bcm2835_spi_*": 1, + "allow": 5, + "SPI0": 17, + "send": 3, + "received": 3, + "Serial": 3, + "Peripheral": 6, + "Interface": 2, + "For": 6, + "more": 4, + "see": 14, + "//en.wikipedia.org/wiki/Serial_Peripheral_Interface_Bus": 1, + "When": 12, + "bcm2835_spi_begin": 3, + "changes": 2, + "bahaviour": 1, + "behaviour": 1, + "order": 14, + "support": 4, + "SPI.": 1, + "While": 1, + "bcm2835_spi_gpio_write": 1, + "bcm2835_spi_end": 4, + "revert": 1, + "configured": 1, + "controled": 1, + "bcm2835_gpio_*": 1, + "calls.": 1, + "P1": 56, + "MOSI": 8, + "MISO": 6, + "CLK": 6, + "CE0": 5, + "CE1": 6, + "bcm2835_i2c_*": 2, + "BSC": 10, + "generically": 1, + "referred": 1, + "I": 4, + "//en.wikipedia.org/wiki/I": 1, + "C2": 1, + "B2C": 1, + "V2": 2, + "SDA": 3, + "SLC": 1, + "Real": 1, + "Time": 1, + "performance": 2, + "constraints": 2, + "i.e.": 1, + "they": 2, + "Such": 1, + "part": 1, + "kernel": 4, + "usually": 2, + "subject": 1, + "paging": 1, + "swapping": 2, + "things": 1, + "besides": 1, + "running": 1, + "program.": 1, + "means": 8, + "expect": 2, + "get": 5, + "time": 10, + "timing": 3, + "programs.": 1, + "In": 2, + "particular": 1, + "guarantee": 1, + "bcm2835_delay": 5, + "bcm2835_delayMicroseconds": 6, + "exactly": 2, + "requested.": 1, + "fact": 2, + "depending": 1, + "activity": 1, + "host": 1, + "etc": 1, + "might": 1, + "significantly": 1, + "longer": 1, + "delay": 9, + "times": 2, + "asked": 1, + "for.": 1, + "So": 1, + "dont": 1, + "request.": 1, + "Arjan": 2, + "reports": 1, + "sched_param": 1, + "sp": 4, + "sp.sched_priority": 1, + "sched_get_priority_max": 1, + "SCHED_FIFO": 2, + "sched_setscheduler": 1, + "mlockall": 1, + "MCL_CURRENT": 1, + "MCL_FUTURE": 1, + "Open": 2, + "Source": 2, + "Licensing": 2, + "GPL": 2, + "appropriate": 7, + "option": 1, + "share": 2, + "application": 2, + "everyone": 1, + "distribute": 1, + "give": 2, + "them": 1, + "who": 1, + "uses": 4, + "wish": 2, + "software": 1, + "under": 2, + "contribute": 1, + "community": 1, + "accordance": 1, + "distributed.": 1, + "//www.gnu.org/copyleft/gpl.html": 1, + "COPYING": 1, + "Acknowledgements": 1, + "Some": 1, + "inspired": 2, + "Dom": 1, + "Gert.": 1, + "Alan": 1, + "Barr.": 1, + "Revision": 1, + "History": 1, + "Initial": 1, + "release": 1, + "Minor": 1, + "bug": 1, + "fixes": 1, + "Added": 11, + "bcm2835_spi_transfern": 3, + "Fixed": 4, + "problem": 2, + "prevented": 1, + "used.": 2, + "Reported": 5, + "David": 1, + "Robinson.": 1, + "bcm2835_close": 4, + "deinit": 1, + "library.": 3, + "Suggested": 1, + "sar": 1, + "Ortiz": 1, + "Document": 1, + "Functions": 1, + "bcm2835_gpio_ren": 3, + "bcm2835_gpio_fen": 3, + "bcm2835_gpio_hen": 3, + "bcm2835_gpio_aren": 3, + "bcm2835_gpio_afen": 3, + "now": 4, + "specified.": 1, + "Other": 1, + "were": 1, + "already": 1, + "previously": 10, + "stay": 1, + "enabled.": 1, + "bcm2835_gpio_clr_ren": 2, + "bcm2835_gpio_clr_fen": 2, + "bcm2835_gpio_clr_hen": 2, + "bcm2835_gpio_clr_len": 2, + "bcm2835_gpio_clr_aren": 2, + "bcm2835_gpio_clr_afen": 2, + "enable": 3, + "individual": 1, + "suggested": 3, + "Andreas": 1, + "Sundstrom.": 1, + "bcm2835_spi_transfernb": 2, + "read": 21, + "write.": 1, + "Improvements": 3, + "barrier": 3, + "maddin.": 1, + "contributed": 1, + "mikew": 1, + "noticed": 1, + "mallocing": 1, + "mmaps": 1, + "/dev/mem.": 1, + "ve": 4, + "removed": 1, + "mallocs": 1, + "frees": 1, + "found": 1, + "nanosleep": 7, + "takes": 1, + "least": 2, + "us.": 1, + "link": 3, + "version.": 1, + "doc": 1, + "Also": 1, + "added": 2, + "define": 2, + "passwrd": 1, + "Gert": 1, + "says": 1, + "pad": 4, + "settings.": 1, + "Changed": 1, + "collisions": 1, + "wiringPi.": 1, + "Macros": 2, + "delayMicroseconds": 3, + "disabled": 2, + "defining": 1, + "BCM2835_NO_DELAY_COMPATIBILITY": 2, + "incorrect": 2, + "Hardware": 1, + "pointers": 2, + "initialisation": 2, + "externally": 1, + "bcm2835_spi0.": 1, + "Now": 4, + "compiles": 1, + "even": 2, + "CLOCK_MONOTONIC_RAW": 1, + "instead.": 1, + "errors": 1, + "divider": 15, + "frequencies": 2, + "MHz": 14, + "clock.": 6, + "Ben": 1, + "Simpson.": 1, + "examples": 1, + "Mark": 5, + "Wolfe.": 1, + "bcm2835_gpio_set_multi": 2, + "bcm2835_gpio_clr_multi": 2, + "bcm2835_gpio_write_multi": 4, + "mask": 20, + "once.": 1, + "Requested": 2, + "Sebastian": 2, + "Loncar.": 2, + "bcm2835_gpio_write_mask.": 1, + "Changes": 1, + "timer": 2, + "counter": 1, + "clock_gettime": 1, + "improved": 1, + "accuracy.": 1, + "No": 2, + "lrt": 1, + "now.": 1, + "Contributed": 1, + "van": 1, + "Vught.": 1, + "Removed": 1, + "inlines": 1, + "patch": 1, + "since": 3, + "don": 1, + "seem": 1, + "work": 1, + "everywhere.": 1, + "olly.": 1, + "Patch": 2, + "Dootson": 2, + "/dev/mem": 4, + "granted.": 1, + "susceptible": 1, + "bit": 19, + "overruns.": 1, + "courtesy": 1, + "Jeremy": 1, + "Mortis.": 1, + "BCM2835_GPFEN0": 2, + "broke": 1, + "ability": 1, + "falling": 4, + "edge": 8, + "events.": 1, + "Dootson.": 2, + "bcm2835_i2c_set_baudrate": 2, + "bcm2835_i2c_read_register_rs.": 1, + "bcm2835_i2c_read": 4, + "bcm2835_i2c_write": 4, + "fix": 1, + "ocasional": 1, + "reads": 2, + "completing.": 1, + "Patched": 1, + "atched": 1, + "his": 1, + "submitted": 1, + "load": 1, + "processes.": 1, + "Updated": 1, + "distribution": 1, + "details": 1, + "airspayce.com": 1, + "missing": 1, + "unmapmem": 1, + "pads": 7, + "leak.": 1, + "Hartmut": 1, + "Henkel.": 1, + "Mike": 1, + "McCauley": 1, + "mikem@airspayce.com": 1, + "DO": 1, + "CONTACT": 1, + "THE": 2, + "AUTHOR": 1, + "DIRECTLY": 1, + "USE": 1, + "LISTS": 1, + "BCM2835_H": 3, + "": 2, + "defgroup": 7, + "constants": 1, + "Constants": 1, + "passing": 1, + "values": 3, + "here": 1, + "@": 14, + "HIGH": 12, + "volts": 2, + "pin.": 21, + "Speed": 1, + "core": 1, + "clock": 21, + "core_clk": 1, + "BCM2835_CORE_CLK_HZ": 1, + "Base": 17, + "Address": 10, + "BCM2835_PERI_BASE": 9, + "System": 10, + "Timer": 9, + "BCM2835_ST_BASE": 1, + "BCM2835_GPIO_PADS": 2, + "Clock/timer": 1, + "BCM2835_CLOCK_BASE": 1, + "BCM2835_GPIO_BASE": 6, + "BCM2835_SPI0_BASE": 1, + "BSC0": 2, + "BCM2835_BSC0_BASE": 1, + "PWM": 2, + "BCM2835_GPIO_PWM": 1, + "C000": 1, + "BSC1": 2, + "BCM2835_BSC1_BASE": 1, + "ST": 1, + "registers.": 10, + "Available": 8, + "bcm2835_init": 11, + "volatile": 13, + "*bcm2835_st": 1, + "*bcm2835_gpio": 1, + "*bcm2835_pwm": 1, + "*bcm2835_clk": 1, + "PADS": 1, + "*bcm2835_pads": 1, + "*bcm2835_spi0": 1, + "*bcm2835_bsc0": 1, + "*bcm2835_bsc1": 1, + "Size": 2, + "BCM2835_PAGE_SIZE": 1, + "*1024": 2, + "BCM2835_BLOCK_SIZE": 1, + "offsets": 2, + "BCM2835_GPIO_BASE.": 1, + "Offsets": 1, + "bytes": 29, + "per": 3, + "Register": 1, + "View": 1, + "BCM2835_GPFSEL0": 1, + "Function": 8, + "BCM2835_GPFSEL1": 1, + "BCM2835_GPFSEL2": 1, + "BCM2835_GPFSEL3": 1, + "BCM2835_GPFSEL4": 1, + "BCM2835_GPFSEL5": 1, + "BCM2835_GPSET0": 1, + "Output": 6, + "Set": 2, + "BCM2835_GPSET1": 1, + "BCM2835_GPCLR0": 1, + "BCM2835_GPCLR1": 1, + "BCM2835_GPLEV0": 1, + "Level": 2, + "BCM2835_GPLEV1": 1, + "BCM2835_GPEDS0": 1, + "Event": 11, + "Detect": 35, + "Status": 6, + "BCM2835_GPEDS1": 1, + "BCM2835_GPREN0": 1, + "Rising": 8, + "Edge": 16, + "Enable": 38, + "BCM2835_GPREN1": 1, + "Falling": 8, + "BCM2835_GPFEN1": 1, + "BCM2835_GPHEN0": 1, + "High": 4, + "BCM2835_GPHEN1": 1, + "BCM2835_GPLEN0": 1, + "Low": 5, + "BCM2835_GPLEN1": 1, + "BCM2835_GPAREN0": 1, + "Async.": 4, + "BCM2835_GPAREN1": 1, + "BCM2835_GPAFEN0": 1, + "BCM2835_GPAFEN1": 1, + "BCM2835_GPPUD": 1, + "Pull": 11, + "up/down": 10, + "BCM2835_GPPUDCLK0": 1, + "Clock": 11, + "BCM2835_GPPUDCLK1": 1, + "bcm2835PortFunction": 1, + "Port": 1, + "select": 9, + "modes": 1, + "bcm2835_gpio_fsel": 2, + "BCM2835_GPIO_FSEL_INPT": 1, + "b000": 1, + "Input": 2, + "BCM2835_GPIO_FSEL_OUTP": 1, + "b001": 1, + "BCM2835_GPIO_FSEL_ALT0": 1, + "b100": 1, + "Alternate": 6, + "BCM2835_GPIO_FSEL_ALT1": 1, + "b101": 1, + "BCM2835_GPIO_FSEL_ALT2": 1, + "b110": 1, + "BCM2835_GPIO_FSEL_ALT3": 1, + "b111": 2, + "BCM2835_GPIO_FSEL_ALT4": 1, + "b011": 1, + "BCM2835_GPIO_FSEL_ALT5": 1, + "b010": 1, + "BCM2835_GPIO_FSEL_MASK": 1, + "bits": 11, + "bcm2835FunctionSelect": 2, + "bcm2835PUDControl": 4, + "Pullup/Pulldown": 1, + "bcm2835_gpio_pud": 5, + "BCM2835_GPIO_PUD_OFF": 1, + "b00": 1, + "Off": 3, + "pull": 1, + "BCM2835_GPIO_PUD_DOWN": 1, + "b01": 1, + "Down": 1, + "BCM2835_GPIO_PUD_UP": 1, + "b10": 1, + "Up": 1, + "Pad": 11, + "BCM2835_PADS_GPIO_0_27": 1, + "BCM2835_PADS_GPIO_28_45": 1, + "BCM2835_PADS_GPIO_46_53": 1, + "Control": 6, + "masks": 1, + "BCM2835_PAD_PASSWRD": 1, + "A": 7, + "Password": 1, + "BCM2835_PAD_SLEW_RATE_UNLIMITED": 1, + "Slew": 1, + "rate": 3, + "unlimited": 1, + "BCM2835_PAD_HYSTERESIS_ENABLED": 1, + "Hysteresis": 1, + "BCM2835_PAD_DRIVE_2mA": 1, + "mA": 8, + "drive": 8, + "BCM2835_PAD_DRIVE_4mA": 1, + "BCM2835_PAD_DRIVE_6mA": 1, + "BCM2835_PAD_DRIVE_8mA": 1, + "BCM2835_PAD_DRIVE_10mA": 1, + "BCM2835_PAD_DRIVE_12mA": 1, + "BCM2835_PAD_DRIVE_14mA": 1, + "BCM2835_PAD_DRIVE_16mA": 1, + "bcm2835PadGroup": 4, + "specification": 1, + "bcm2835_gpio_pad": 2, + "BCM2835_PAD_GROUP_GPIO_0_27": 1, + "BCM2835_PAD_GROUP_GPIO_28_45": 1, + "BCM2835_PAD_GROUP_GPIO_46_53": 1, + "Numbers": 1, + "Here": 1, + "terms": 4, + "numbers.": 1, + "These": 6, + "requiring": 1, + "bin": 1, + "connected": 1, + "adopt": 1, + "function.": 3, + "slightly": 1, + "pinouts": 1, + "these": 1, + "RPI_V2_*.": 1, + "At": 1, + "bootup": 1, + "UART0_TXD": 3, + "UART0_RXD": 3, + "ie": 3, + "alt0": 1, + "respectively": 1, + "dedicated": 1, + "cant": 1, + "controlled": 1, + "independently": 1, + "RPI_GPIO_P1_03": 6, + "RPI_GPIO_P1_05": 6, + "RPI_GPIO_P1_07": 1, + "RPI_GPIO_P1_08": 1, + "defaults": 4, + "alt": 4, + "RPI_GPIO_P1_10": 1, + "RPI_GPIO_P1_11": 1, + "RPI_GPIO_P1_12": 1, + "RPI_GPIO_P1_13": 1, + "RPI_GPIO_P1_15": 1, + "RPI_GPIO_P1_16": 1, + "RPI_GPIO_P1_18": 1, + "RPI_GPIO_P1_19": 1, + "RPI_GPIO_P1_21": 1, + "RPI_GPIO_P1_22": 1, + "RPI_GPIO_P1_23": 1, + "RPI_GPIO_P1_24": 1, + "RPI_GPIO_P1_26": 1, + "RPI_V2_GPIO_P1_03": 1, + "RPI_V2_GPIO_P1_05": 1, + "RPI_V2_GPIO_P1_07": 1, + "RPI_V2_GPIO_P1_08": 1, + "RPI_V2_GPIO_P1_10": 1, + "RPI_V2_GPIO_P1_11": 1, + "RPI_V2_GPIO_P1_12": 1, + "RPI_V2_GPIO_P1_13": 1, + "RPI_V2_GPIO_P1_15": 1, + "RPI_V2_GPIO_P1_16": 1, + "RPI_V2_GPIO_P1_18": 1, + "RPI_V2_GPIO_P1_19": 1, + "RPI_V2_GPIO_P1_21": 1, + "RPI_V2_GPIO_P1_22": 1, + "RPI_V2_GPIO_P1_23": 1, + "RPI_V2_GPIO_P1_24": 1, + "RPI_V2_GPIO_P1_26": 1, + "RPI_V2_GPIO_P5_03": 1, + "RPI_V2_GPIO_P5_04": 1, + "RPI_V2_GPIO_P5_05": 1, + "RPI_V2_GPIO_P5_06": 1, + "RPiGPIOPin": 1, + "BCM2835_SPI0_CS": 1, + "Master": 12, + "BCM2835_SPI0_FIFO": 1, + "TX": 5, + "RX": 7, + "FIFOs": 1, + "BCM2835_SPI0_CLK": 1, + "Divider": 2, + "BCM2835_SPI0_DLEN": 1, + "Data": 9, + "Length": 2, + "BCM2835_SPI0_LTOH": 1, + "LOSSI": 1, + "TOH": 1, + "BCM2835_SPI0_DC": 1, + "DMA": 3, + "DREQ": 1, + "Controls": 1, + "BCM2835_SPI0_CS_LEN_LONG": 1, + "Long": 1, + "Lossi": 2, + "DMA_LEN": 1, + "BCM2835_SPI0_CS_DMA_LEN": 1, + "BCM2835_SPI0_CS_CSPOL2": 1, + "Chip": 9, + "Polarity": 5, + "BCM2835_SPI0_CS_CSPOL1": 1, + "BCM2835_SPI0_CS_CSPOL0": 1, + "BCM2835_SPI0_CS_RXF": 1, + "RXF": 2, + "FIFO": 25, + "Full": 1, + "BCM2835_SPI0_CS_RXR": 1, + "RXR": 3, + "Reading": 1, + "full": 9, + "BCM2835_SPI0_CS_TXD": 1, + "TXD": 2, + "accept": 2, + "BCM2835_SPI0_CS_RXD": 1, + "RXD": 2, + "contains": 2, + "BCM2835_SPI0_CS_DONE": 1, + "Done": 3, + "transfer": 8, + "BCM2835_SPI0_CS_TE_EN": 1, + "Unused": 2, + "BCM2835_SPI0_CS_LMONO": 1, + "BCM2835_SPI0_CS_LEN": 1, + "LEN": 1, + "LoSSI": 1, + "BCM2835_SPI0_CS_REN": 1, + "REN": 1, + "Read": 3, + "BCM2835_SPI0_CS_ADCS": 1, + "ADCS": 1, + "Automatically": 1, + "Deassert": 1, + "BCM2835_SPI0_CS_INTR": 1, + "INTR": 1, + "Interrupt": 5, + "BCM2835_SPI0_CS_INTD": 1, + "INTD": 1, + "BCM2835_SPI0_CS_DMAEN": 1, + "DMAEN": 1, + "BCM2835_SPI0_CS_TA": 1, + "Transfer": 3, + "Active": 2, + "BCM2835_SPI0_CS_CSPOL": 1, + "BCM2835_SPI0_CS_CLEAR": 1, + "BCM2835_SPI0_CS_CLEAR_RX": 1, + "BCM2835_SPI0_CS_CLEAR_TX": 1, + "BCM2835_SPI0_CS_CPOL": 1, + "BCM2835_SPI0_CS_CPHA": 1, + "Phase": 1, + "BCM2835_SPI0_CS_CS": 1, + "bcm2835SPIBitOrder": 3, + "Bit": 1, + "Specifies": 5, + "ordering": 4, + "bcm2835_spi_setBitOrder": 2, + "BCM2835_SPI_BIT_ORDER_LSBFIRST": 1, + "LSB": 1, + "First": 2, + "BCM2835_SPI_BIT_ORDER_MSBFIRST": 1, + "MSB": 1, + "Specify": 2, + "bcm2835_spi_setDataMode": 2, + "BCM2835_SPI_MODE0": 1, + "CPOL": 4, + "CPHA": 4, + "BCM2835_SPI_MODE1": 1, + "BCM2835_SPI_MODE2": 1, + "BCM2835_SPI_MODE3": 1, + "bcm2835SPIMode": 2, + "bcm2835SPIChipSelect": 3, + "BCM2835_SPI_CS0": 1, + "BCM2835_SPI_CS1": 1, + "BCM2835_SPI_CS2": 1, + "CS1": 1, + "CS2": 1, + "asserted": 3, + "BCM2835_SPI_CS_NONE": 1, + "CS": 5, + "yourself": 1, + "bcm2835SPIClockDivider": 3, + "generate": 2, + "Figures": 1, + "below": 1, + "period": 1, + "frequency.": 1, + "divided": 2, + "nominal": 2, + "reported": 2, + "contrary": 1, + "shown": 1, + "confirmed": 1, + "measurement": 2, + "BCM2835_SPI_CLOCK_DIVIDER_65536": 1, + "us": 12, + "kHz": 10, + "BCM2835_SPI_CLOCK_DIVIDER_32768": 1, + "BCM2835_SPI_CLOCK_DIVIDER_16384": 1, + "BCM2835_SPI_CLOCK_DIVIDER_8192": 1, + "/51757813kHz": 1, + "BCM2835_SPI_CLOCK_DIVIDER_4096": 1, + "BCM2835_SPI_CLOCK_DIVIDER_2048": 1, + "BCM2835_SPI_CLOCK_DIVIDER_1024": 1, + "BCM2835_SPI_CLOCK_DIVIDER_512": 1, + "BCM2835_SPI_CLOCK_DIVIDER_256": 1, + "BCM2835_SPI_CLOCK_DIVIDER_128": 1, + "ns": 9, + "BCM2835_SPI_CLOCK_DIVIDER_64": 1, + "BCM2835_SPI_CLOCK_DIVIDER_32": 1, + "BCM2835_SPI_CLOCK_DIVIDER_16": 1, + "BCM2835_SPI_CLOCK_DIVIDER_8": 1, + "BCM2835_SPI_CLOCK_DIVIDER_4": 1, + "BCM2835_SPI_CLOCK_DIVIDER_2": 1, + "fastest": 1, + "BCM2835_SPI_CLOCK_DIVIDER_1": 1, + "same": 3, + "/65536": 1, + "BCM2835_BSC_C": 1, + "BCM2835_BSC_S": 1, + "BCM2835_BSC_DLEN": 1, + "BCM2835_BSC_A": 1, + "Slave": 1, + "BCM2835_BSC_FIFO": 1, + "BCM2835_BSC_DIV": 1, + "BCM2835_BSC_DEL": 1, + "Delay": 4, + "BCM2835_BSC_CLKT": 1, + "Stretch": 2, + "Timeout": 2, + "BCM2835_BSC_C_I2CEN": 1, + "BCM2835_BSC_C_INTR": 1, + "BCM2835_BSC_C_INTT": 1, + "BCM2835_BSC_C_INTD": 1, + "DONE": 2, + "BCM2835_BSC_C_ST": 1, + "Start": 4, + "BCM2835_BSC_C_CLEAR_1": 1, + "BCM2835_BSC_C_CLEAR_2": 1, + "BCM2835_BSC_C_READ": 1, + "BCM2835_BSC_S_CLKT": 1, + "stretch": 1, + "BCM2835_BSC_S_ERR": 1, + "ACK": 1, + "BCM2835_BSC_S_RXF": 1, + "BCM2835_BSC_S_TXE": 1, + "TXE": 1, + "BCM2835_BSC_S_RXD": 1, + "BCM2835_BSC_S_TXD": 1, + "BCM2835_BSC_S_RXR": 1, + "BCM2835_BSC_S_TXW": 1, + "TXW": 1, + "BCM2835_BSC_S_DONE": 1, + "BCM2835_BSC_S_TA": 1, + "BCM2835_BSC_FIFO_SIZE": 1, + "bcm2835I2CClockDivider": 3, + "BCM2835_I2C_CLOCK_DIVIDER_2500": 1, + "BCM2835_I2C_CLOCK_DIVIDER_626": 1, + "BCM2835_I2C_CLOCK_DIVIDER_150": 1, + "reset": 1, + "BCM2835_I2C_CLOCK_DIVIDER_148": 1, + "bcm2835I2CReasonCodes": 5, + "reason": 4, + "codes": 1, + "BCM2835_I2C_REASON_OK": 1, + "Success": 1, + "BCM2835_I2C_REASON_ERROR_NACK": 1, + "Received": 4, + "NACK": 1, + "BCM2835_I2C_REASON_ERROR_CLKT": 1, + "BCM2835_I2C_REASON_ERROR_DATA": 1, + "sent": 1, + "BCM2835_ST_CS": 1, + "Control/Status": 1, + "BCM2835_ST_CLO": 1, + "Counter": 4, + "Lower": 2, + "BCM2835_ST_CHI": 1, + "Upper": 1, + "BCM2835_PWM_CONTROL": 1, + "BCM2835_PWM_STATUS": 1, + "BCM2835_PWM0_RANGE": 1, + "BCM2835_PWM0_DATA": 1, + "BCM2835_PWM1_RANGE": 1, + "BCM2835_PWM1_DATA": 1, + "BCM2835_PWMCLK_CNTL": 1, + "BCM2835_PWMCLK_DIV": 1, + "BCM2835_PWM1_MS_MODE": 1, + "Run": 4, + "MS": 2, + "BCM2835_PWM1_USEFIFO": 1, + "BCM2835_PWM1_REVPOLAR": 1, + "Reverse": 2, + "polarity": 3, + "BCM2835_PWM1_OFFSTATE": 1, + "Ouput": 2, + "BCM2835_PWM1_REPEATFF": 1, + "Repeat": 2, + "empty": 2, + "BCM2835_PWM1_SERIAL": 1, + "serial": 2, + "BCM2835_PWM1_ENABLE": 1, + "Channel": 2, + "BCM2835_PWM0_MS_MODE": 1, + "BCM2835_PWM0_USEFIFO": 1, + "BCM2835_PWM0_REVPOLAR": 1, + "BCM2835_PWM0_OFFSTATE": 1, + "BCM2835_PWM0_REPEATFF": 1, + "BCM2835_PWM0_SERIAL": 1, + "BCM2835_PWM0_ENABLE": 1, + "init": 2, + "Library": 1, + "management": 1, + "intialise": 1, + "Initialise": 1, + "opening": 1, + "getting": 1, + "call": 4, + "successfully": 1, + "bcm2835_set_debug": 2, + "fails": 1, + "returning": 1, + "crashes": 1, + "failures.": 1, + "Prints": 1, + "messages": 1, + "stderr": 1, + "errors.": 1, + "successful": 2, + "Close": 1, + "deallocating": 1, + "debug": 6, + "prevents": 1, + "makes": 1, + "out": 5, + "would": 2, + "causes": 1, + "normal": 1, + "param": 72, + "uint8_t": 43, + "lowlevel": 2, + "provide": 1, + "generally": 1, + "Reads": 5, + "done": 3, + "twice": 3, + "therefore": 6, + "always": 3, + "precautions": 3, + "correct": 3, + "paddr": 10, + "from.": 6, + "etc.": 5, + "without": 3, + "occurred": 2, + "since.": 2, + "bcm2835_peri_read_nb": 1, + "Writes": 2, + "bcm2835_peri_write_nb": 1, + "Alters": 1, + "regsiter.": 1, + "valu": 1, + "alters": 1, + "deines": 1, + "according": 1, + "value.": 2, + "All": 1, + "unaffected.": 1, + "subset": 1, + "register.": 3, + "masked": 2, + "mask.": 1, + "Bitmask": 1, + "altered": 1, + "gpio": 1, + "interface.": 3, + "state.": 1, + "configures": 1, + "RPI_GPIO_P1_*": 21, + "Mode": 1, + "BCM2835_GPIO_FSEL_*": 1, + "specified": 27, + "HIGH.": 2, + "bcm2835_gpio_write": 3, + "bcm2835_gpio_set": 1, + "LOW.": 5, + "bcm2835_gpio_clr": 1, + "Mask": 6, + "affect.": 4, + "eg": 5, + "Works": 1, + "output.": 1, + "bcm2835_gpio_lev": 1, + "Status.": 7, + "Tests": 1, + "detected": 7, + "requested": 1, + "bcm2835_gpio_set_eds": 2, + "status": 1, + "th": 1, + "bcm2835_gpio_eds": 1, + "effect": 3, + "clearing": 1, + "flag.": 1, + "afer": 1, + "seeing": 1, + "rising": 3, + "sets": 8, + "GPRENn": 2, + "synchronous": 2, + "detection.": 2, + "signal": 4, + "sampled": 6, + "looking": 2, + "pattern": 2, + "signal.": 2, + "suppressing": 2, + "glitches.": 2, + "Disable": 6, + "Asynchronous": 6, + "incoming": 2, + "As": 2, + "edges": 2, + "very": 2, + "duration": 2, + "detected.": 2, + "bcm2835_gpio_pudclk": 3, + "resistor": 1, + "However": 3, + "convenient": 2, + "bcm2835_gpio_set_pud": 4, + "pud": 4, + "desired": 7, + "One": 3, + "BCM2835_GPIO_PUD_*": 2, + "Clocks": 3, + "earlier": 1, + "group.": 2, + "BCM2835_PAD_GROUP_GPIO_*": 2, + "BCM2835_PAD_*": 2, + "bcm2835_gpio_set_pad": 1, + "Delays": 3, + "milliseconds.": 1, + "Uses": 4, + "until": 1, + "up.": 1, + "mercy": 2, + "From": 2, + "interval": 4, + "req": 2, + "exact": 2, + "multiple": 2, + "granularity": 2, + "rounded": 2, + "multiple.": 2, + "Furthermore": 2, + "sleep": 2, + "completes": 2, + "becomes": 2, + "again": 2, + "thread.": 2, + "millis": 2, + "milliseconds": 1, + "microseconds.": 2, + "busy": 2, + "wait": 2, + "timers": 1, + "less": 1, + "microseconds": 6, + "Timer.": 1, + "RaspberryPi": 1, + "Your": 1, + "mileage": 1, + "vary.": 1, + "micros": 5, + "required": 2, + "bcm2835_gpio_write_mask": 1, + "clocking": 1, + "spi": 1, + "let": 2, + "device.": 2, + "operations.": 4, + "Forces": 2, + "ALT0": 2, + "funcitons": 1, + "End": 2, + "INPUT": 2, + "behaviour.": 2, + "NOTE": 1, + "effect.": 1, + "SPI0.": 1, + "Defaults": 1, + "BCM2835_SPI_BIT_ORDER_*": 1, + "speed.": 2, + "BCM2835_SPI_CLOCK_DIVIDER_*": 1, + "bcm2835_spi_setClockDivider": 1, + "uint16_t": 2, + "polariy": 1, + "phase": 1, + "BCM2835_SPI_MODE*": 1, + "bcm2835_spi_transfer": 5, + "made": 1, + "during": 4, + "transfer.": 4, + "cs": 4, + "activate": 1, + "slave.": 7, + "BCM2835_SPI_CS*": 1, + "bcm2835_spi_chipSelect": 4, + "occurs": 1, + "active.": 1, + "transfers": 1, + "happening": 1, + "complement": 1, + "inactive": 1, + "affect": 1, + "active": 3, + "Whether": 1, + "bcm2835_spi_setChipSelectPolarity": 1, + "Transfers": 6, + "Asserts": 3, + "simultaneously": 3, + "clocks": 2, + "MISO.": 2, + "polled": 2, + "Peripherls": 2, + "slave": 8, + "placed": 1, + "rbuf.": 1, + "rbuf": 3, + "tbuf": 4, + "send.": 5, + "put": 1, + "send/received": 2, + "bcm2835_spi_transfernb.": 1, + "replaces": 1, + "transmitted": 1, + "buffer.": 1, + "replace": 1, + "bcm2835_spi_writenb": 1, + "i2c": 1, + "Philips": 1, + "bus/interface": 1, + "January": 1, + "SCL": 2, + "bcm2835_i2c_end": 3, + "bcm2835_i2c_begin": 1, + "address.": 2, + "addr": 2, + "bcm2835_i2c_setSlaveAddress": 4, + "BCM2835_I2C_CLOCK_DIVIDER_*": 1, + "bcm2835_i2c_setClockDivider": 2, + "converting": 1, + "baudrate": 4, + "parameter": 1, + "equivalent": 1, + "divider.": 1, + "standard": 2, + "khz": 1, + "corresponds": 1, + "its": 1, + "driver.": 1, + "Of": 1, + "nothing": 1, + "driver": 1, + "receive.": 2, + "received.": 2, + "Allows": 2, + "slaves": 1, + "require": 3, + "repeated": 1, + "prior": 1, + "stop": 1, + "set.": 1, + "popular": 1, + "MPL3115A2": 1, + "pressure": 1, + "temperature": 1, + "sensor.": 1, + "Note": 1, + "combined": 1, + "better": 1, + "choice.": 1, + "Will": 1, + "regaddr": 2, + "bcm2835_i2c_read_register_rs": 1, + "st": 1, + "delays": 1, + "Counter.": 1, + "bcm2835_st_read": 1, + "offset.": 1, + "offset_micros": 2, + "Offset": 1, + "bcm2835_st_delay": 1, + "@example": 5, + "blink.c": 1, + "Blinks": 1, + "off": 1, + "input.c": 1, + "event.c": 1, + "Shows": 3, + "how": 3, + "spi.c": 1, + "spin.c": 1, + "": 1, + "": 1, + "": 2, + "*env_instance": 1, + "*Env": 1, + "env_instance": 3, + "QObject": 2, + "QCoreApplication": 1, + "**envp": 1, + "**env": 1, + "**": 2, + "envvar": 2, + "indexOfEquals": 5, + "env": 3, + "*env": 1, + "envvar.indexOf": 1, + "envvar.left": 1, + "envvar.mid": 1, + "m_map.insert": 1, + "QVariantMap": 3, + "asVariantMap": 2, + "m_map": 2, + "ENV_H": 3, + "": 1, + "Q_OBJECT": 1, + "*instance": 1, + "rpc_init": 1, + "rpc_server_loop": 1, + "BITCOIN_KEY_H": 2, + "": 1, + "": 1, + "EC_KEY": 3, + "key_error": 6, + "runtime_error": 2, + "str": 2, + "CKeyID": 5, + "uint160": 8, + "CScriptID": 3, + "CPubKey": 11, + "vchPubKey": 6, + "CKey": 26, + "vchPubKeyIn": 2, + "a.vchPubKey": 3, + "b.vchPubKey": 3, + "IMPLEMENT_SERIALIZE": 1, + "READWRITE": 1, + "GetID": 1, + "Hash160": 1, + "uint256": 10, + "GetHash": 1, + "Hash": 1, + "vchPubKey.begin": 1, + "vchPubKey.end": 1, + "IsValid": 4, + "vchPubKey.size": 3, + "IsCompressed": 2, + "Raw": 1, + "secure_allocator": 2, + "CPrivKey": 3, + "CSecret": 4, + "EC_KEY*": 1, + "pkey": 14, + "fSet": 7, + "fCompressedPubKey": 5, + "SetCompressedPubKey": 4, + "Reset": 5, + "IsNull": 1, + "MakeNewKey": 1, + "fCompressed": 3, + "SetPrivKey": 1, + "vchPrivKey": 1, + "SetSecret": 1, + "vchSecret": 1, + "GetSecret": 2, + "GetPrivKey": 1, + "SetPubKey": 1, + "GetPubKey": 5, + "hash": 20, + "vchSig": 18, + "SignCompact": 2, + "SetCompactSignature": 2, + "Verify": 2, + "VerifyCompact": 2, + "": 1, + "": 1, + "": 1, + "EC_KEY_regenerate_key": 1, + "*eckey": 2, + "BIGNUM": 9, + "*priv_key": 1, + "ok": 3, + "BN_CTX": 2, + "*ctx": 2, + "EC_POINT": 4, + "*pub_key": 1, + "eckey": 7, + "EC_GROUP": 2, + "*group": 2, + "EC_KEY_get0_group": 2, + "ctx": 26, + "BN_CTX_new": 2, + "err": 26, + "pub_key": 6, + "EC_POINT_new": 4, + "EC_POINT_mul": 3, + "priv_key": 2, + "EC_KEY_set_private_key": 1, + "EC_KEY_set_public_key": 2, + "EC_POINT_free": 4, + "BN_CTX_free": 2, + "ECDSA_SIG_recover_key_GFp": 3, + "ECDSA_SIG": 3, + "*ecsig": 1, + "*msg": 2, + "msglen": 2, + "recid": 3, + "ret": 24, + "*x": 1, + "*e": 1, + "*order": 1, + "*sor": 1, + "*eor": 1, + "*field": 1, + "*R": 1, + "*O": 1, + "*Q": 1, + "*rr": 1, + "*zero": 1, + "BN_CTX_start": 1, + "BN_CTX_get": 8, + "EC_GROUP_get_order": 1, + "BN_copy": 1, + "BN_mul_word": 1, + "BN_add": 1, + "ecsig": 3, + "EC_GROUP_get_curve_GFp": 1, + "BN_cmp": 1, + "R": 6, + "EC_POINT_set_compressed_coordinates_GFp": 1, + "O": 5, + "EC_POINT_is_at_infinity": 1, + "Q": 5, + "EC_GROUP_get_degree": 1, + "BN_bin2bn": 3, + "msg": 1, + "*msglen": 1, + "BN_rshift": 1, + "BN_zero": 1, + "BN_mod_sub": 1, + "rr": 4, + "BN_mod_inverse": 1, + "sor": 3, + "BN_mod_mul": 2, + "eor": 3, + "BN_CTX_end": 1, + "EC_KEY_set_conv_form": 1, + "POINT_CONVERSION_COMPRESSED": 1, + "EC_KEY_new_by_curve_name": 2, + "NID_secp256k1": 2, + "throw": 4, + "EC_KEY_dup": 1, + "b.pkey": 2, + "b.fSet": 2, + "EC_KEY_copy": 1, + "nSize": 2, + "vchSig.clear": 2, + "vchSig.resize": 2, + "Shrink": 1, + "fit": 1, + "actual": 1, + "fOk": 3, + "*sig": 2, + "ECDSA_do_sign": 1, + "sig": 11, + "nBitsR": 3, + "BN_num_bits": 2, + "nBitsS": 3, + "nRecId": 4, + "<4;>": 1, + "keyRec": 5, + "BN_bn2bin": 2, + "/8": 2, + "ECDSA_SIG_free": 2, + "vchSig.size": 2, + "nV": 6, + "<27>": 1, + "ECDSA_SIG_new": 1, + "EC_KEY_free": 1, + "ECDSA_verify": 1, + "key.SetCompactSignature": 1, + "key.GetPubKey": 1, + "fCompr": 3, + "secret": 2, + "key2": 1, + "key2.SetSecret": 1, + "key2.GetPubKey": 1, + "V8_SCANNER_H_": 3, + "ParsingFlags": 1, + "kNoParsingFlags": 1, + "kLanguageModeMask": 4, + "kAllowLazy": 1, + "kAllowNativesSyntax": 1, + "kAllowModules": 1, + "CLASSIC_MODE": 2, + "STRICT_MODE": 2, + "EXTENDED_MODE": 2, + "x16": 1, + "x36.": 1, + "Utf16CharacterStream": 3, + "pos_": 6, + "buffer_cursor_": 5, + "buffer_end_": 3, + "ReadBlock": 2, + "": 1, + "kEndOfInput": 2, + "code_unit_count": 7, + "buffered_chars": 2, + "SlowSeekForward": 2, + "int32_t": 1, + "code_unit": 6, + "uc16*": 3, + "UnicodeCache": 3, + "unibrow": 11, + "Utf8InputBuffer": 2, + "<1024>": 2, + "Utf8Decoder": 2, + "StaticResource": 2, + "": 2, + "utf8_decoder": 1, + "utf8_decoder_": 2, + "uchar": 4, + "kIsIdentifierStart.get": 1, + "IsIdentifierPart": 1, + "kIsIdentifierPart.get": 1, + "kIsLineTerminator.get": 1, + "kIsWhiteSpace.get": 1, + "Predicate": 4, + "": 1, + "128": 4, + "kIsIdentifierStart": 1, + "": 1, + "kIsIdentifierPart": 1, + "": 1, + "kIsLineTerminator": 1, + "": 1, + "kIsWhiteSpace": 1, + "DISALLOW_COPY_AND_ASSIGN": 2, + "LiteralBuffer": 6, + "is_ascii_": 10, + "position_": 17, + "backing_store_": 7, + "backing_store_.length": 4, + "backing_store_.Dispose": 3, + "INLINE": 2, + "AddChar": 2, + "ExpandBuffer": 2, + "kMaxAsciiCharCodeU": 1, + "": 6, + "kASCIISize": 1, + "ConvertToUtf16": 2, + "": 2, + "kUC16Size": 2, + "is_ascii": 3, + "Vector": 13, + "uc16": 5, + "utf16_literal": 3, + "backing_store_.start": 5, + "ascii_literal": 3, + "kInitialCapacity": 2, + "kGrowthFactory": 2, + "kMinConversionSlack": 1, + "kMaxGrowth": 2, + "MB": 1, + "NewCapacity": 3, + "min_capacity": 2, + "capacity": 3, + "Max": 1, + "new_capacity": 2, + "Min": 1, + "new_store": 6, + "memcpy": 1, + "new_store.start": 3, + "new_content_size": 4, + "src": 2, + "": 1, + "dst": 2, + "Scanner*": 2, + "scanner_": 5, + "complete_": 4, + "StartLiteral": 2, + "DropLiteral": 2, + "Complete": 1, + "TerminateLiteral": 2, + "beg_pos": 5, + "end_pos": 4, + "kNoOctalLocation": 1, + "scanner_contants": 1, + "current_token": 1, + "current_.location": 2, + "literal_ascii_string": 1, + "ASSERT_NOT_NULL": 9, + "current_.literal_chars": 11, + "literal_utf16_string": 1, + "is_literal_ascii": 1, + "literal_length": 1, + "literal_contains_escapes": 1, + "source_length": 3, + "location.end_pos": 1, + "location.beg_pos": 1, + "STRING": 1, + "peek": 1, + "peek_location": 1, + "next_.location": 1, + "next_literal_ascii_string": 1, + "next_literal_utf16_string": 1, + "is_next_literal_ascii": 1, + "next_literal_length": 1, + "kCharacterLookaheadBufferSize": 3, + "ScanOctalEscape": 1, + "octal_position": 1, + "clear_octal_position": 1, + "HarmonyScoping": 1, + "SetHarmonyScoping": 1, + "scoping": 2, + "HarmonyModules": 1, + "SetHarmonyModules": 1, + "modules": 2, + "HasAnyLineTerminatorBeforeNext": 1, + "ScanRegExpPattern": 1, + "seen_equal": 1, + "ScanRegExpFlags": 1, + "IsIdentifier": 1, + "CharacterStream*": 1, + "TokenDesc": 3, + "LiteralBuffer*": 2, + "literal_chars": 1, + "free_buffer": 3, + "literal_buffer1_": 3, + "literal_buffer2_": 2, + "AddLiteralChar": 2, + "tok": 2, + "else_": 2, + "ScanDecimalDigits": 1, + "seen_period": 1, + "ScanIdentifierSuffix": 1, + "LiteralScope*": 1, + "ScanIdentifierUnicodeEscape": 1, + "desc": 2, + "look": 1, + "ahead": 1, + "Field": 2, + "Free": 1, + "Black": 1, + "White": 1, + "Illegal": 1, + "Player": 1, + "NINJA_METRICS_H_": 3, + "int64_t.": 1, + "Metrics": 2, + "module": 1, + "dumps": 1, + "stats": 2, + "actions.": 1, + "To": 1, + "METRIC_RECORD": 4, + "below.": 1, + "metrics": 2, + "hit": 1, + "path.": 2, + "count": 1, + "Total": 1, + "spent": 1, + "int64_t": 3, + "sum": 1, + "scoped": 1, + "recording": 1, + "metric": 2, + "across": 1, + "body": 1, + "Used": 2, + "macro.": 1, + "ScopedMetric": 4, + "Metric*": 4, + "metric_": 1, + "Timestamp": 1, + "started.": 1, + "dependent.": 1, + "start_": 1, + "prints": 1, + "report.": 1, + "NewMetric": 2, + "summary": 1, + "stdout.": 1, + "Report": 1, + "": 1, + "metrics_": 1, + "Get": 1, + "epoch.": 1, + "Epoch": 1, + "varies": 1, + "between": 1, + "platforms": 1, + "useful": 1, + "measuring": 1, + "elapsed": 1, + "time.": 1, + "GetTimeMillis": 1, + "simple": 1, + "stopwatch": 1, + "seconds": 1, + "Restart": 3, + "called.": 1, + "Stopwatch": 2, + "started_": 4, + "Seconds": 1, + "call.": 1, + "Elapsed": 1, + "": 1, + "primary": 1, + "metrics.": 1, + "top": 1, + "recorded": 1, + "metrics_h_metric": 2, + "g_metrics": 3, + "metrics_h_scoped": 1, + "Metrics*": 1, + "UTILS_H": 3, + "": 1, + "": 1, + "": 1, + "QTemporaryFile": 1, + "showUsage": 1, + "QtMsgType": 1, + "dump_path": 1, + "minidump_id": 1, + "QVariant": 1, + "coffee2js": 1, + "script": 1, + "injectJsInFrame": 2, + "jsFilePath": 5, + "libraryPath": 5, + "QWebFrame": 4, + "*targetFrame": 4, + "startingScript": 2, + "Encoding": 3, + "jsFileEnc": 2, + "readResourceFileUtf8": 1, + "resourceFilePath": 1, + "loadJSForDebug": 2, + "autorun": 2, + "cleanupFromDebug": 1, + "findScript": 1, + "jsFromScriptFile": 1, + "scriptPath": 1, + "enc": 1, + "shouldn": 1, + "instantiated": 1, + "QTemporaryFile*": 2, + "m_tempHarness": 1, + "We": 1, + "ourselves": 1, + "m_tempWrapper": 1, + "GDSDBREADER_H": 3, + "": 1, + "GDS_DIR": 1, + "LEVEL_ONE": 1, + "LEVEL_TWO": 1, + "LEVEL_THREE": 1, + "dbDataStructure": 2, + "label": 1, + "quint32": 3, + "depth": 1, + "userIndex": 1, + "QByteArray": 1, + "COMPRESSED": 1, + "optimize": 1, + "ram": 1, + "decompressed": 1, + "quint64": 1, + "uniqueID": 1, + "QVector": 2, + "": 1, + "nextItems": 1, + "": 1, + "nextItemsIndices": 1, + "dbDataStructure*": 1, + "father": 1, + "fatherIndex": 1, + "noFatherRoot": 1, + "tell": 1, + "node": 1, + "root": 1, + "hasn": 1, + "argument": 1, + "overload.": 1, + "myclass.label": 2, + "myclass.depth": 2, + "myclass.userIndex": 2, + "qCompress": 2, + "myclass.data": 4, + "myclass.uniqueID": 2, + "myclass.nextItemsIndices": 2, + "myclass.fatherIndex": 2, + "myclass.noFatherRoot": 2, + "myclass.fileName": 2, + "myclass.firstLineData": 4, + "myclass.linesNumbers": 2, + "QDataStream": 2, + "myclass": 1, + "//Don": 1, + "qUncompress": 2 + }, + "JSON5": { + "{": 6, + "foo": 1, + "while": 1, + "true": 1, + "this": 1, + "here": 1, + "//": 2, + "inline": 1, + "comment": 1, + "hex": 1, + "xDEADbeef": 1, + "half": 1, + ".5": 1, + "delta": 1, + "+": 1, + "to": 1, + "Infinity": 1, + "and": 1, + "beyond": 1, + "finally": 1, + "oh": 1, + "[": 3, + "]": 3, + "}": 6, + "name": 1, + "version": 1, + "description": 1, + "keywords": 1, + "author": 1, + "contributors": 1, + "main": 1, + "bin": 1, + "dependencies": 1, + "devDependencies": 1, + "mocha": 1, + "scripts": 1, + "build": 1, + "test": 1, + "homepage": 1, + "repository": 1, + "type": 1, + "url": 1 + }, + "MoonScript": { + "types": 2, + "require": 5, + "util": 2, + "data": 1, + "import": 5, + "reversed": 2, + "unpack": 22, + "from": 4, + "ntype": 16, + "mtype": 3, + "build": 7, + "smart_node": 7, + "is_slice": 2, + "value_is_singular": 3, + "insert": 18, + "table": 2, + "NameProxy": 14, + "LocalName": 2, + "destructure": 1, + "local": 1, + "implicitly_return": 2, + "class": 4, + "Run": 8, + "new": 2, + "(": 54, + "@fn": 1, + ")": 54, + "self": 2, + "[": 79, + "]": 79, + "call": 3, + "state": 2, + "self.fn": 1, + "-": 51, + "transform": 2, + "the": 4, + "last": 6, + "stm": 16, + "is": 2, + "a": 4, + "list": 6, + "of": 1, + "stms": 4, + "will": 1, + "puke": 1, + "on": 1, + "group": 1, + "apply_to_last": 6, + "fn": 3, + "find": 2, + "real": 1, + "exp": 17, + "last_exp_id": 3, + "for": 20, + "i": 15, + "#stms": 1, + "if": 43, + "and": 8, + "break": 1, + "return": 11, + "in": 18, + "ipairs": 3, + "else": 22, + "body": 26, + "sindle": 1, + "expression/statement": 1, + "is_singular": 2, + "false": 2, + "#body": 1, + "true": 4, + "find_assigns": 2, + "out": 9, + "{": 135, + "}": 136, + "thing": 4, + "*body": 2, + "switch": 7, + "when": 12, + "table.insert": 3, + "extract": 1, + "names": 16, + "hoist_declarations": 1, + "assigns": 5, + "hoist": 1, + "plain": 1, + "old": 1, + "*find_assigns": 1, + "name": 31, + "*names": 3, + "type": 5, + "after": 1, + "runs": 1, + "idx": 4, + "while": 3, + "do": 2, + "+": 2, + "expand_elseif_assign": 2, + "ifstm": 5, + "#ifstm": 1, + "case": 13, + "split": 4, + "constructor_name": 2, + "with_continue_listener": 4, + "continue_name": 13, + "nil": 8, + "@listen": 1, + "unless": 6, + "@put_name": 2, + "build.group": 14, + "@splice": 1, + "lines": 2, + "Transformer": 2, + "@transformers": 3, + "@seen_nodes": 3, + "setmetatable": 1, + "__mode": 1, + "scope": 4, + "node": 68, + "...": 10, + "transformer": 3, + "res": 3, + "or": 6, + "bind": 1, + "@transform": 2, + "__call": 1, + "can_transform": 1, + "construct_comprehension": 2, + "inner": 2, + "clauses": 4, + "current_stms": 7, + "_": 10, + "clause": 4, + "t": 10, + "iter": 2, + "elseif": 1, + "cond": 11, + "error": 4, + "..t": 1, + "Statement": 2, + "root_stms": 1, + "@": 1, + "assign": 9, + "values": 10, + "bubble": 1, + "cascading": 2, + "transformed": 2, + "#values": 1, + "value": 7, + "@transform.statement": 2, + "types.cascading": 1, + "ret": 16, + "types.is_value": 1, + "destructure.has_destructure": 2, + "destructure.split_assign": 1, + "continue": 1, + "@send": 1, + "build.assign_one": 11, + "export": 1, + "they": 1, + "are": 1, + "included": 1, + "#node": 3, + "cls": 5, + "cls.name": 1, + "build.assign": 3, + "update": 1, + "op": 2, + "op_final": 3, + "match": 1, + "..op": 1, + "not": 2, + "source": 7, + "stubs": 1, + "real_names": 4, + "build.chain": 7, + "base": 8, + "stub": 4, + "*stubs": 2, + "source_name": 3, + "comprehension": 1, + "action": 4, + "decorated": 1, + "dec": 6, + "wrapped": 4, + "fail": 5, + "..": 1, + "build.declare": 1, + "*stm": 1, + "expand": 1, + "destructure.build_assign": 2, + "build.do": 2, + "apply": 1, + "decorator": 1, + "mutate": 1, + "all": 1, + "bodies": 1, + "body_idx": 3, + "with": 3, + "block": 2, + "scope_name": 5, + "named_assign": 2, + "assign_name": 1, + "@set": 1, + "foreach": 1, + "node.iter": 1, + "destructures": 5, + "node.names": 3, + "proxy": 2, + "next": 1, + "node.body": 9, + "index_name": 3, + "list_name": 6, + "slice_var": 3, + "bounds": 3, + "slice": 7, + "#list": 1, + "table.remove": 2, + "max_tmp_name": 5, + "index": 2, + "conds": 3, + "exp_name": 3, + "convert": 1, + "into": 1, + "statment": 1, + "convert_cond": 2, + "case_exps": 3, + "cond_exp": 5, + "first": 3, + "if_stm": 5, + "*conds": 1, + "if_cond": 4, + "parent_assign": 3, + "parent_val": 1, + "apart": 1, + "properties": 4, + "statements": 4, + "item": 3, + "tuple": 8, + "*item": 1, + "constructor": 7, + "*properties": 1, + "key": 3, + "parent_cls_name": 5, + "base_name": 4, + "self_name": 4, + "cls_name": 1, + "build.fndef": 3, + "args": 3, + "arrow": 1, + "then": 2, + "constructor.arrow": 1, + "real_name": 6, + "#real_name": 1, + "build.table": 2, + "look": 1, + "up": 1, + "object": 1, + "class_lookup": 3, + "cls_mt": 2, + "out_body": 1, + "make": 1, + "sure": 1, + "we": 1, + "don": 1, + "string": 1, + "parens": 2, + "colon_stub": 1, + "super": 1, + "dot": 1, + "varargs": 2, + "arg_list": 1, + "Value": 1 + }, + "Mercury": { + "%": 416, + "-": 6967, + "module": 46, + "rot13_verbose.": 1, + "interface.": 13, + "import_module": 126, + "io.": 8, + "pred": 255, + "main": 15, + "(": 3351, + "io__state": 4, + ")": 3351, + ".": 610, + "mode": 8, + "di": 54, + "uo": 58, + "is": 246, + "det.": 184, + "implementation.": 12, + "char": 10, + "int": 129, + "require.": 6, + "rot13a/2": 1, + "A": 14, + "table": 1, + "to": 16, + "map": 7, + "the": 27, + "alphabetic": 2, + "characters": 1, + "their": 1, + "rot13": 11, + "equivalents": 1, + "fails": 1, + "if": 15, + "input": 1, + "not": 7, + "rot13a": 55, + "in": 510, + "out": 337, + "semidet.": 10, + "rot13/2": 1, + "Applies": 1, + "algorithm": 1, + "a": 10, + "character.": 1, + "Char": 12, + "RotChar": 8, + "TmpChar": 2, + "then": 3, + "else": 8, + "io__read_char": 1, + "Res": 8, + "{": 27, + "ok": 3, + "}": 28, + "io__write_char": 1, + ";": 913, + "eof": 6, + "error": 7, + "ErrorCode": 4, + "io__error_message": 2, + "ErrorMessage": 4, + "io__stderr_stream": 1, + "StdErr": 8, + "io__write_string": 2, + "io__nl": 1, + "rot13_concise.": 1, + "state": 3, + "string.": 7, + "alphabet": 3, + "cycle": 4, + "rot_n": 2, + "N": 6, + "char_to_string": 1, + "CharString": 2, + "sub_string_search": 1, + "Index": 3, + "NewIndex": 2, + "+": 127, + "mod": 1, + "*": 20, + "//": 2, + "index_det": 1, + "read_char": 1, + "print": 3, + "error_message": 1, + "stderr_stream": 1, + "nl": 1, + "check_hlds.polymorphism.": 1, + "hlds.": 1, + "hlds.hlds_goal.": 2, + "hlds.hlds_module.": 2, + "hlds.hlds_pred.": 2, + "hlds.hlds_rtti.": 2, + "mdbcomp.": 1, + "mdbcomp.prim_data.": 3, + "parse_tree.": 1, + "parse_tree.prog_data.": 2, + "list.": 4, + "maybe.": 3, + "term.": 3, + "polymorphism_process_module": 2, + "module_info": 26, + "polymorphism_process_generated_pred": 2, + "pred_id": 15, + "unification_typeinfos_rtti_varmaps": 2, + "mer_type": 21, + "rtti_varmaps": 9, + "unification": 8, + "hlds_goal_info": 22, + "polymorphism_process_new_call": 2, + "pred_info": 20, + "proc_info": 11, + "proc_id": 12, + "list": 82, + "prog_var": 58, + "builtin_state": 1, + "maybe": 20, + "call_unify_context": 2, + "sym_name": 3, + "hlds_goal": 45, + "poly_info": 45, + "polymorphism_make_type_info_vars": 1, + "term.context": 3, + "polymorphism_make_type_info_var": 1, + "type": 57, + "int_or_var": 2, + "iov_int": 1, + "iov_var": 1, + "gen_extract_type_info": 1, + "tvar": 10, + "kind": 1, + "prog_varset": 14, + "vartypes": 12, + "poly_info.": 1, + "create_poly_info": 1, + "poly_info_extract": 1, + "build_typeclass_info_type": 3, + "prog_constraint": 4, + "type_is_typeclass_info": 1, + "type_is_type_info_or_ctor_type": 1, + "build_type_info_type": 1, + "get_special_proc": 1, + "special_pred_id": 2, + "get_special_proc_det": 1, + "convert_pred_to_lambda_goal": 3, + "purity": 1, + "lambda_eval_method": 1, + "unify_context": 3, + "context": 1, + "unify_rhs": 4, + "fix_undetermined_mode_lambda_goal": 2, + "rhs_lambda_goal": 7, + "init_type_info_var": 1, + "init_const_type_ctor_info_var": 1, + "type_ctor": 1, + "cons_id": 2, + "type_info_kind": 2, + "type_info": 8, + "type_ctor_info.": 1, + "new_type_info_var_raw": 1, + "check_hlds.clause_to_proc.": 1, + "check_hlds.mode_util.": 1, + "check_hlds.type_util.": 2, + "hlds.from_ground_term_util.": 1, + "hlds.const_struct.": 1, + "hlds.goal_util.": 1, + "hlds.hlds_args.": 1, + "hlds.hlds_clauses.": 1, + "hlds.hlds_code_util.": 1, + "hlds.hlds_data.": 2, + "hlds.instmap.": 2, + "hlds.passes_aux.": 1, + "hlds.pred_table.": 1, + "hlds.quantification.": 1, + "hlds.special_pred.": 1, + "libs.": 1, + "libs.globals.": 2, + "libs.options.": 3, + "mdbcomp.goal_path.": 2, + "mdbcomp.program_representation.": 1, + "parse_tree.builtin_lib_types.": 2, + "parse_tree.prog_mode.": 1, + "parse_tree.prog_type.": 2, + "parse_tree.prog_type_subst.": 1, + "parse_tree.set_of_var.": 2, + "assoc_list.": 3, + "bool.": 4, + "int.": 4, + "map.": 3, + "pair.": 3, + "set.": 4, + "solutions.": 1, + "varset.": 2, + "ModuleInfo": 49, + "module_info_get_preds": 3, + ".ModuleInfo": 8, + "Preds0": 2, + "map.keys": 3, + "PredIds0": 2, + "list.foldl": 6, + "maybe_polymorphism_process_pred": 3, + "Preds1": 2, + "PredIds1": 2, + "fixup_pred_polymorphism": 4, + "expand_class_method_bodies": 1, + "PredId": 50, + "module_info_pred_info": 6, + "PredInfo": 64, + "PredModule": 8, + "pred_info_module": 4, + "PredName": 8, + "pred_info_name": 4, + "PredArity": 6, + "pred_info_orig_arity": 3, + "no_type_info_builtin": 3, + "copy_module_clauses_to_procs": 1, + "[": 203, + "]": 203, + "polymorphism_process_pred_msg": 3, + "PredTable0": 3, + "map.lookup": 2, + "PredInfo0": 16, + "pred_info_get_clauses_info": 2, + "ClausesInfo0": 5, + "clauses_info_get_vartypes": 2, + "VarTypes0": 12, + "clauses_info_get_headvars": 2, + "HeadVars": 20, + "pred_info_get_arg_types": 7, + "TypeVarSet": 15, + "ExistQVars": 13, + "ArgTypes0": 3, + "proc_arg_vector_partition_poly_args": 1, + "ExtraHeadVarList": 2, + "OldHeadVarList": 2, + "lookup_var_types": 6, + "ExtraArgTypes": 2, + "ArgTypes": 6, + "pred_info_set_arg_types": 1, + "PredInfo1": 5, + "_": 149, + "|": 38, + "OldHeadVarTypes": 2, + "type_list_subsumes": 2, + "Subn": 3, + "map.is_empty": 1, + "pred_info_set_existq_tvar_binding": 1, + "PredInfo2": 7, + "polymorphism_introduce_exists_casts_pred": 3, + "map.det_update": 4, + "PredTable": 2, + "module_info_set_preds": 1, + "pred_info_get_procedures": 2, + ".PredInfo": 2, + "Procs0": 4, + "map.map_values_only": 1, + ".ProcInfo": 2, + "ProcInfo": 43, + "det": 21, + "introduce_exists_casts_proc": 1, + "Procs": 4, + "pred_info_set_procedures": 2, + "trace": 4, + "compiletime": 4, + "flag": 4, + "io": 6, + "IO": 4, + "write_pred_progress_message": 1, + "polymorphism_process_pred": 4, + "mutable": 3, + "selected_pred": 1, + "bool": 406, + "no": 365, + "ground": 9, + "untrailed": 2, + "level": 1, + "promise_pure": 30, + "pred_id_to_int": 1, + "impure": 2, + "set_selected_pred": 2, + "yes": 144, + "true": 3, + "polymorphism_process_clause_info": 3, + "ClausesInfo": 13, + "Info": 134, + "ExtraArgModes": 20, + "poly_info_get_module_info": 4, + "poly_info_get_const_struct_db": 1, + "ConstStructDb": 2, + "module_info_set_const_struct_db": 1, + "poly_info_get_typevarset": 4, + "pred_info_set_typevarset": 1, + "pred_info_set_clauses_info": 1, + "ProcIds": 5, + "pred_info_procids": 2, + "polymorphism_process_proc_in_table": 3, + "module_info_set_pred_info": 1, + "clauses_info": 6, + "poly_arg_vector": 9, + "mer_mode": 14, + "ModuleInfo0": 8, + "init_poly_info": 1, + ".ClausesInfo": 2, + "_VarSet": 1, + "ExplicitVarTypes": 2, + "_TVarNameMap": 1, + "_VarTypes": 1, + "HeadVars0": 5, + "ClausesRep0": 2, + "ItemNumbers": 2, + "_RttiVarMaps": 1, + "HaveForeignClauses": 2, + "setup_headvars": 3, + "UnconstrainedTVars": 15, + "ExtraTypeInfoHeadVars": 4, + "ExistTypeClassInfoHeadVars": 6, + "get_clause_list": 1, + "Clauses0": 2, + "list.map_foldl": 2, + "polymorphism_process_clause": 3, + "Clauses": 2, + "poly_info_get_varset": 4, + ".Info": 25, + "VarSet": 15, + "poly_info_get_var_types": 6, + "VarTypes": 22, + "poly_info_get_rtti_varmaps": 4, + "RttiVarMaps": 16, + "set_clause_list": 1, + "ClausesRep": 2, + "map.init": 7, + "TVarNameMap": 2, + "This": 2, + "only": 4, + "used": 2, + "while": 1, + "adding": 1, + "clauses.": 1, + "proc_arg_vector": 9, + "clause": 2, + "OldHeadVars": 2, + "NewHeadVars": 2, + "Clause": 2, + "pred_info_is_imported": 2, + "Goal0": 21, + ".Clause": 1, + "clause_body": 2, + "empty_cache_maps": 4, + "poly_info_set_num_reuses": 1, + "polymorphism_process_goal": 20, + "Goal1": 2, + "produce_existq_tvars": 3, + "Goal2": 2, + "pred_info_get_exist_quant_tvars": 1, + "fixup_quantification": 1, + "Goal": 40, + "proc_table": 2, + "ProcId": 31, + "ProcTable": 2, + ".ProcTable": 1, + "ProcInfo0": 2, + "polymorphism_process_proc": 3, + "pred_info_is_pseudo_imported": 1, + "hlds_pred.in_in_unification_proc_id": 1, + "HeadVarList": 4, + "proc_arg_vector_to_list": 2, + "clauses_info_get_rtti_varmaps": 1, + "clauses_info_get_varset": 1, + "proc_info_set_headvars": 1, + "proc_info_set_rtti_varmaps": 1, + "proc_info_set_varset": 1, + "proc_info_set_vartypes": 1, + "copy_clauses_to_proc": 1, + "proc_info_get_argmodes": 2, + "ArgModes1": 2, + "ExtraArgModesList": 2, + "poly_arg_vector_to_list": 1, + "ArgModes": 5, + "proc_info_set_argmodes": 1, + "ExtraHeadTypeInfoVars": 7, + "ExistHeadTypeClassInfoVars": 9, + "pred_info_get_origin": 1, + "Origin": 8, + "ExtraArgModes0": 3, + "poly_arg_vector_init": 1, + "origin_instance_method": 1, + "InstanceMethodConstraints": 4, + "setup_headvars_instance_method": 3, + "origin_special_pred": 1, + "origin_transformed": 1, + "origin_created": 1, + "origin_assertion": 1, + "origin_lambda": 1, + "origin_user": 1, + "pred_info_get_class_context": 4, + "ClassContext": 6, + "InstanceTVars": 7, + "InstanceUnconstrainedTVars": 2, + "InstanceUnconstrainedTypeInfoVars": 2, + "setup_headvars_2": 4, + "instance_method_constraints": 2, + "InstanceTypes": 2, + "InstanceConstraints": 3, + "type_vars_list": 5, + "get_unconstrained_tvars": 1, + "UnconstrainedInstanceTVars": 6, + "ArgTypeVarSet": 5, + "make_head_vars": 3, + "UnconstrainedInstanceTypeInfoVars": 7, + "make_typeclass_info_head_vars": 3, + "do_record_type_info_locns": 3, + "InstanceHeadTypeClassInfoVars": 4, + "proc_arg_vector_set_instance_type_infos": 1, + "proc_arg_vector_set_instance_typeclass_infos": 1, + "RttiVarMaps0": 4, + "rtti_reuse_typeclass_info_var": 3, + "poly_info_set_rtti_varmaps": 3, + "in_mode": 3, + "InMode": 3, + "list.duplicate": 6, + "list.length": 16, + "UnconstrainedInstanceTypeInfoModes": 2, + "InstanceHeadTypeClassInfoModes": 2, + "poly_arg_vector_set_instance_type_infos": 1, + "poly_arg_vector_set_instance_typeclass_infos": 1, + "prog_constraints": 1, + "AllUnconstrainedTVars": 2, + "AllExtraHeadTypeInfoVars": 2, + "constraints": 4, + "UnivConstraints": 3, + "ExistConstraints": 6, + "prog_type.constraint_list_get_tvars": 2, + "UnivConstrainedTVars": 2, + "ExistConstrainedTVars": 2, + "poly_info_get_constraint_map": 4, + "ConstraintMap": 12, + "get_improved_exists_head_constraints": 4, + "ActualExistConstraints": 9, + "pred_info_get_markers": 1, + "PredMarkers": 2, + "check_marker": 1, + "marker_class_method": 1, + "RecordExistQLocns": 3, + "do_not_record_type_info_locns": 1, + "UnivHeadTypeClassInfoVars": 4, + "HeadTypeVars": 2, + "list.delete_elems": 12, + "UnconstrainedTVars0": 2, + "UnconstrainedTVars1": 2, + "UnconstrainedTVars2": 2, + "list.remove_dups": 4, + "UnconstrainedUnivTVars": 7, + "UnconstrainedExistTVars": 6, + "ExistHeadTypeInfoVars": 5, + "UnivHeadTypeInfoVars": 4, + "list.condense": 4, + "proc_arg_vector_set_univ_type_infos": 1, + "HeadVars1": 2, + "proc_arg_vector_set_exist_type_infos": 1, + "HeadVars2": 2, + "proc_arg_vector_set_univ_typeclass_infos": 1, + "HeadVars3": 2, + "proc_arg_vector_set_exist_typeclass_infos": 1, + "In": 6, + "out_mode": 2, + "Out": 6, + "NumUnconstrainedUnivTVars": 2, + "NumUnconstrainedExistTVars": 2, + "NumUnivClassInfoVars": 2, + "NumExistClassInfoVars": 2, + "UnivTypeInfoModes": 2, + "ExistTypeInfoModes": 2, + "UnivTypeClassInfoModes": 2, + "ExistTypeClassInfoModes": 2, + "poly_arg_vector_set_univ_type_infos": 1, + "poly_arg_vector_set_exist_type_infos": 1, + "poly_arg_vector_set_univ_typeclass_infos": 1, + "poly_arg_vector_set_exist_typeclass_infos": 1, + "some": 4, + "ToLocn": 4, + "TheVar": 2, + "TheLocn": 2, + "list.map": 17, + "UnivTypeLocns": 2, + "list.foldl_corresponding": 3, + "rtti_det_insert_type_info_locn": 3, + "ExistTypeLocns": 2, + "UnconstrainedInstanceTypeLocns": 2, + ".RttiVarMaps": 1, + "TypeInfoHeadVars": 2, + "pred_info_get_tvar_kinds": 2, + "KindMap": 2, + "PredClassContext": 5, + "PredExistConstraints": 2, + "exist_constraints": 1, + "ExistQVarsForCall": 2, + "GoalInfo": 44, + "Context": 20, + "goal_info_get_context": 4, + "make_typeclass_info_vars": 3, + "ExistTypeClassVarsMCAs": 2, + "ExtraTypeClassGoals": 5, + "assoc_list.keys": 8, + "ExistTypeClassVars": 3, + "assign_var_list": 8, + "ExtraTypeClassUnifyGoals": 2, + "vartypes_is_empty": 1, + "PredToActualTypeSubst": 4, + "ActualArgTypes": 8, + "ArgTypeSubst": 2, + "apply_subst_to_tvar_list": 1, + "ActualTypes": 2, + "polymorphism_do_make_type_info_vars": 5, + "TypeInfoVarsMCAs": 2, + "ExtraTypeInfoGoals": 4, + "TypeInfoVars": 5, + "ExtraTypeInfoUnifyGoals": 2, + "GoalList": 8, + "conj_list_to_goal": 6, + "unexpected": 21, + "Var1": 5, + "Vars1": 2, + "Var2": 5, + "Vars2": 2, + "Goals": 13, + "assign_var": 3, + "true_goal": 1, + "term.context_init": 2, + "create_pure_atomic_complicated_unification": 1, + "rhs_var": 2, + "umc_explicit": 1, + "constraint_map": 1, + "NumExistConstraints": 4, + "search_hlds_constraint_list": 1, + "unproven": 3, + "goal_id": 1, + "ActualExistConstraints0": 2, + "GoalExpr0": 18, + "GoalInfo0": 41, + "generic_call": 1, + "plain_call": 5, + "ArgVars0": 23, + "polymorphism_process_call": 4, + "ExtraVars": 13, + "ExtraGoals": 13, + "ArgVars": 6, + "CallExpr": 4, + "call_args": 1, + "Call": 4, + "call_foreign_proc": 4, + "polymorphism_process_foreign_proc": 3, + "unify": 21, + "XVar": 11, + "Y": 9, + "Mode": 12, + "Unification": 16, + "UnifyContext": 15, + "polymorphism_process_unify": 4, + "conj": 5, + "ConjType": 4, + "Goals0": 13, + "plain_conj": 4, + "polymorphism_process_plain_conj": 5, + "parallel_conj": 1, + "get_cache_maps_snapshot": 11, + "InitialSnapshot": 36, + "polymorphism_process_par_conj": 5, + "GoalExpr": 19, + "disj": 2, + "polymorphism_process_disj": 6, + "set_cache_maps_snapshot": 15, + "if_then_else": 2, + "Vars": 10, + "Cond0": 2, + "Then0": 2, + "Else0": 2, + "Cond": 2, + "Then": 2, + "Else": 2, + "negation": 2, + "SubGoal0": 14, + "SubGoal": 16, + "switch": 2, + "Var": 13, + "CanFail": 4, + "Cases0": 4, + "polymorphism_process_cases": 5, + "Cases": 4, + "scope": 7, + "Reason0": 16, + "from_ground_term": 2, + "TermVar": 4, + "Kind": 5, + "from_ground_term_initial": 2, + "polymorphism_process_from_ground_term_initial": 3, + "from_ground_term_construct": 1, + "from_ground_term_deconstruct": 1, + "from_ground_term_other": 1, + "promise_solutions": 1, + "promise_purity": 1, + "require_detism": 1, + "require_complete_switch": 1, + "commit": 1, + "barrier": 1, + "loop_control": 1, + "exist_quant": 1, + "trace_goal": 1, + "shorthand": 2, + "ShortHand0": 4, + "atomic_goal": 2, + "GoalType": 2, + "Outer": 2, + "Inner": 2, + "MainGoal0": 2, + "OrElseGoals0": 2, + "OrElseInners": 2, + "MainGoal": 2, + "OrElseGoals": 2, + "ShortHand": 3, + "try_goal": 2, + "MaybeIO": 2, + "ResultVar": 2, + "SubGoalExpr0": 4, + "SubGoalInfo": 2, + "Conjuncts0": 2, + "ConjunctA0": 2, + "ConjunctB0": 2, + "ConjunctA": 2, + "ConjunctB": 2, + "Conjuncts": 2, + "SubGoalExpr": 2, + "bi_implication": 1, + "hlds_goal_expr": 2, + "SubGoalInfo0": 2, + "SubGoals0Prime": 2, + "SubGoals0": 2, + "polymorphism_process_fgti_goals": 5, + "RevMarkedSubGoals": 2, + "fgt_invariants_kept": 2, + "InvariantsStatus": 7, + "Reason": 2, + "fgt_invariants_broken": 2, + "introduce_partial_fgt_scopes": 1, + "deconstruct_top_down": 1, + "fgt_marked_goal": 2, + "fgt_invariants_status": 2, + "RevMarkedGoals": 4, + "OldInfo": 3, + "XVarPrime": 2, + "ModePrime": 2, + "UnificationPrime": 2, + "UnifyContextPrime": 2, + "rhs_functor": 5, + "ConsIdPrime": 2, + "YVarsPrime": 2, + "ConsId": 10, + "YVars": 4, + "polymorphism_process_unify_functor": 4, + "Changed": 10, + "VarSetBefore": 2, + "MaxVarBefore": 2, + "varset.max_var": 2, + "poly_info_get_num_reuses": 2, + "NumReusesBefore": 2, + "VarSetAfter": 2, + "MaxVarAfter": 2, + "NumReusesAfter": 2, + "expect": 15, + "MarkedGoal": 3, + "fgt_kept_goal": 1, + "fgt_broken_goal": 1, + ".RevMarkedGoals": 1, + "unify_mode": 2, + "Unification0": 8, + "_YVar": 1, + "lookup_var_type": 3, + "Type": 18, + "unification_typeinfos": 5, + "_Changed": 3, + "Args": 11, + "Purity": 9, + "Groundness": 6, + "PredOrFunc": 6, + "EvalMethod": 8, + "LambdaVars": 13, + "Modes": 4, + "Det": 4, + "LambdaGoal0": 5, + "LambdaGoal1": 2, + "fixup_lambda_quantification": 1, + "LambdaGoal": 6, + "NonLocalTypeInfos": 3, + "set_of_var.to_sorted_list": 1, + "NonLocalTypeInfosList": 2, + "Y1": 2, + "NonLocals0": 10, + "goal_info_get_nonlocals": 6, + "set_of_var.union": 3, + "NonLocals": 12, + "goal_info_set_nonlocals": 6, + "type_vars": 2, + "TypeVars": 8, + "get_type_info_locn": 1, + "TypeInfoLocns": 6, + "add_unification_typeinfos": 4, + "rtti_lookup_type_info_locn": 1, + "type_info_locn": 1, + "type_info_locn_var": 1, + "TypeInfoVars0": 2, + ".GoalInfo": 1, + "set_of_var.insert_list": 4, + ".Unification": 5, + "complicated_unify": 2, + "construct": 1, + "deconstruct": 2, + "assign": 46, + "simple_test": 1, + "X0": 8, + "ConsId0": 5, + "Mode0": 4, + "TypeOfX": 6, + "Arity": 5, + "closure_cons": 1, + "ShroudedPredProcId": 2, + "proc": 2, + "ProcId0": 3, + "unshroud_pred_proc_id": 1, + "type_is_higher_order_details": 1, + "_PredOrFunc": 1, + "CalleeArgTypes": 2, + "invalid_proc_id": 1, + "goal_info_add_feature": 1, + "feature_lambda_undetermined_mode": 1, + "GoalInfo1": 6, + "VarSet0": 2, + "Functor0": 6, + "poly_info_set_varset_and_types": 1, + "cons": 3, + "ConsTypeCtor": 2, + "remove_new_prefix": 1, + "OrigFunctor": 2, + "IsConstruction": 7, + "type_util.get_existq_cons_defn": 1, + "ConsDefn": 2, + "polymorphism_process_existq_unify_functor": 3, + "UnifyExpr": 2, + "Unify": 2, + "PredArgTypes": 10, + "Functor": 6, + "create_fresh_vars": 5, + "module_info_pred_proc_info": 4, + "QualifiedPName": 5, + "qualified": 1, + "cons_id_dummy_type_ctor": 1, + "RHS": 2, + "CallUnifyContext": 2, + "LambdaGoalExpr": 2, + "not_builtin": 3, + "OutsideVars": 2, + "set_of_var.list_to_set": 3, + "InsideVars": 2, + "set_of_var.intersect": 1, + "LambdaNonLocals": 2, + "GoalId": 8, + "goal_info_get_goal_id": 3, + "goal_info_init": 1, + "LambdaGoalInfo0": 2, + "goal_info_set_context": 1, + "LambdaGoalInfo1": 2, + "LambdaGoalInfo2": 2, + "goal_info_set_purity": 1, + "LambdaGoalInfo3": 2, + "goal_info_set_goal_id": 1, + "LambdaGoalInfo": 4, + "lambda_modes_and_det": 4, + "LambdaModes": 6, + "LambdaDet": 6, + "pred_info_is_pred_or_func": 1, + "ho_ground": 1, + "_LambdaModes0": 1, + "_LambdaDet0": 1, + "goal_to_conj_list": 1, + "LambdaGoalList0": 2, + "list.split_last": 1, + "LambdaGoalButLast0": 2, + "LastGoal0": 2, + "LastGoalExpr0": 2, + "LastGoalInfo0": 2, + "PredId0": 2, + "_DummyProcId": 1, + "Args0": 5, + "MaybeCallUnifyContext0": 2, + "QualifiedPName0": 2, + "LambdaGoalButLast": 2, + "LastGoalInfo": 2, + "MaybeCallUnifyContext": 4, + "LastGoalExpr": 2, + "LastGoal": 2, + "prog_vars": 1, + "determinism": 1, + "NumArgModes": 2, + "NumLambdaVars": 2, + "list.drop": 2, + "LambdaModesPrime": 2, + "proc_info_get_declared_determinism": 1, + "MaybeDet": 3, + "sorry": 1, + "Types": 6, + "varset.new_var": 1, + "add_var_type": 1, + "ctor_defn": 2, + "CtorDefn": 2, + "ActualRetType": 2, + "CtorTypeVarSet": 2, + "CtorExistQVars": 2, + "CtorKindMap": 2, + "CtorExistentialConstraints": 2, + "CtorArgTypes": 2, + "CtorRetType": 2, + "TypeVarSet0": 5, + "tvarset_merge_renaming": 3, + "CtorToParentRenaming": 6, + "apply_variable_renaming_to_tvar_list": 2, + "ParentExistQVars": 6, + "apply_variable_renaming_to_tvar_kind_map": 2, + "ParentKindMap": 7, + "apply_variable_renaming_to_prog_constraint_list": 1, + "ParentExistentialConstraints": 3, + "apply_variable_renaming_to_type_list": 4, + "ParentArgTypes": 6, + "apply_variable_renaming_to_type": 1, + "ParentRetType": 2, + "poly_info_set_typevarset": 3, + "type_list_subsumes_det": 3, + "ParentToActualTypeSubst": 6, + "NumExistentialConstraints": 3, + "lookup_hlds_constraint_list": 4, + "ActualExistentialConstraints": 4, + "ExtraTypeClassVarsMCAs": 2, + "ExtraTypeClassVars": 2, + "assumed": 2, + "make_existq_typeclass_info_vars": 2, + "constraint_list_get_tvars": 3, + "ParentExistConstrainedTVars": 4, + "ParentUnconstrainedExistQVars": 2, + "apply_rec_subst_to_tvar_list": 4, + "ActualExistentialTypes": 2, + "ExtraTypeInfoVarsMCAs": 2, + "ExtraTypeInfoVars": 2, + "ExtraTypeClassVars.": 1, + "bound": 1, + "Attributes": 2, + "ProcExtraArgs": 2, + "MaybeTraceRuntimeCond": 2, + "Impl": 14, + "foreign_arg_var": 1, + "CanOptAwayUnnamed": 11, + "polymorphism_process_foreign_proc_args": 3, + "ExtraArgs": 5, + "pragma_foreign_code_impl": 4, + "foreign_arg": 1, + "PredTypeVarSet": 8, + "UnivCs": 4, + "ExistCs": 4, + "UnivVars0": 2, + "get_constrained_vars": 2, + "UnivConstrainedVars": 2, + "ExistVars0": 2, + "ExistConstrainedVars": 2, + "PredTypeVars0": 2, + "PredTypeVars1": 2, + "PredTypeVars2": 2, + "PredTypeVars": 3, + "foreign_proc_add_typeclass_info": 4, + "ExistTypeClassArgInfos": 2, + "UnivTypeClassArgInfos": 2, + "TypeClassArgInfos": 2, + "list.filter": 1, + "X": 9, + "semidet": 2, + "list.member": 2, + "ExistUnconstrainedVars": 2, + "UnivUnconstrainedVars": 2, + "foreign_proc_add_typeinfo": 4, + "ExistTypeArgInfos": 2, + "UnivTypeArgInfos": 2, + "TypeInfoArgInfos": 2, + "ArgInfos": 2, + "TypeInfoTypes": 2, + "func": 24, + "type_info_type": 1, + "UnivTypes": 2, + "ExistTypes": 2, + "OrigArgTypes": 2, + "make_foreign_args": 1, + "tvarset": 3, + "pair": 7, + "string": 115, + "box_policy": 2, + "Constraint": 2, + "MaybeArgName": 7, + "native_if_possible": 2, + "constraint": 2, + "SymName": 4, + "Name": 4, + "sym_name_to_string_sep": 1, + "TypeVarNames": 2, + "underscore_and_tvar_name": 3, + "string.append_list": 1, + "ConstraintVarName": 3, + "foreign_code_does_not_use_variable": 4, + "TVar": 4, + "varset.search_name": 1, + "TypeVarName": 2, + "C_VarName": 3, + "VarName": 2, + "foreign_code_uses_variable": 1, + "TVarName": 2, + "varset.lookup_name": 2, + "TVarName0": 1, + "TVarName0.": 1, + "cache_maps": 3, + "case": 4, + "Case0": 2, + "Case": 2, + "MainConsId": 2, + "OtherConsIds": 2, + "PredExistQVars": 2, + "PredKindMap": 3, + "varset.is_empty": 1, + "PredToParentTypeRenaming": 6, + "ParentTVars": 4, + "apply_variable_renaming_to_prog_constraints": 1, + "ParentClassContext": 2, + "ParentUnivConstraints": 3, + "ParentExistConstraints": 3, + "ParentUnivConstrainedTVars": 2, + "ParentUnconstrainedTVars0": 2, + "ParentUnconstrainedTVars1": 2, + "ParentUnconstrainedTVars": 3, + "ParentUnconstrainedUnivTVars": 3, + "ParentUnconstrainedExistTVars": 2, + "NumUnivConstraints": 2, + "ActualUnivConstraints": 2, + "ActualExistQVarTypes": 2, + "prog_type.type_list_to_var_list": 1, + "ActualExistQVars0": 2, + "ActualExistQVars": 2, + "ExtraUnivClassVarsMCAs": 2, + "ExtraUnivClassGoals": 2, + "ExtraUnivClassVars": 2, + "ExtraExistClassVars": 2, + "ExtraExistClassGoals": 2, + "ActualUnconstrainedUnivTypes": 2, + "ExtraUnivTypeInfoVarsMCAs": 2, + "ExtraUnivTypeInfoGoals": 2, + "ExtraUnivTypeInfoVars": 2, + "ActualUnconstrainedExistTypes": 2, + "ExtraExistTypeInfoVarsMCAs": 2, + "ExtraExistTypeInfoGoals": 2, + "ExtraExistTypeInfoVars": 2, + "CalleePredInfo": 2, + "CalleeProcInfo": 3, + "CallArgs0": 3, + "BuiltinState": 2, + "TVarSet0": 2, + "ActualArgTypes0": 3, + "PredTVarSet": 2, + "_PredExistQVars": 1, + "proc_info_get_headvars": 2, + "CalleeHeadVars": 2, + "proc_info_get_rtti_varmaps": 1, + "CalleeRttiVarMaps": 2, + "NCallArgs0": 2, + "NPredArgs": 2, + "NExtraArgs": 3, + "OrigPredArgTypes0": 2, + "list.take": 1, + "CalleeExtraHeadVars0": 2, + "OrigPredArgTypes": 2, + "CalleeExtraHeadVars": 2, + "TVarSet": 2, + "PredToParentRenaming": 3, + "OrigParentArgTypes": 2, + "ParentToActualTSubst": 2, + "GetTypeInfoTypes": 2, + "ProgVar": 2, + "TypeInfoType": 2, + "rtti_varmaps_var_info": 1, + "VarInfo": 4, + "type_info_var": 1, + "typeclass_info_var": 1, + "non_rtti_var": 1, + "PredTypeInfoTypes": 2, + "ParentTypeInfoTypes": 2, + "apply_rec_subst_to_type_list": 1, + "ActualTypeInfoTypes": 2, + "Ctxt": 2, + "ExtraArgsConstArgs": 2, + "CallArgs": 2, + "NonLocals1": 2, + "CallGoalExpr": 2, + "CallGoal": 2, + "char.": 1, + "getopt_io.": 1, + "short_option": 36, + "option": 9, + "long_option": 241, + "option_defaults": 2, + "option_data": 2, + "nondet.": 1, + "special_handler": 1, + "special_data": 1, + "option_table": 5, + "maybe_option_table": 3, + "inconsequential_options": 1, + "set": 16, + "options_help": 1, + "option_table_add_mercury_library_directory": 1, + "option_table.": 2, + "option_table_add_search_library_files_directory": 1, + "quote_arg": 1, + "inhibit_warnings": 4, + "inhibit_accumulator_warnings": 3, + "halt_at_warn": 3, + "halt_at_syntax_errors": 3, + "halt_at_auto_parallel_failure": 3, + "warn_singleton_vars": 3, + "warn_overlapping_scopes": 3, + "warn_det_decls_too_lax": 3, + "warn_inferred_erroneous": 3, + "warn_nothing_exported": 3, + "warn_unused_args": 3, + "warn_interface_imports": 3, + "warn_missing_opt_files": 3, + "warn_missing_trans_opt_files": 3, + "warn_missing_trans_opt_deps": 3, + "warn_non_contiguous_clauses": 3, + "warn_non_contiguous_foreign_procs": 3, + "warn_non_stratification": 3, + "warn_unification_cannot_succeed": 3, + "warn_simple_code": 3, + "warn_duplicate_calls": 3, + "warn_missing_module_name": 3, + "warn_wrong_module_name": 3, + "warn_smart_recompilation": 3, + "warn_undefined_options_variables": 3, + "warn_non_tail_recursion": 3, + "warn_target_code": 3, + "warn_up_to_date": 3, + "warn_stubs": 3, + "warn_dead_procs": 3, + "warn_table_with_inline": 3, + "warn_non_term_special_preds": 3, + "warn_known_bad_format_calls": 3, + "warn_unknown_format_calls": 3, + "warn_obsolete": 3, + "warn_insts_without_matching_type": 3, + "warn_unused_imports": 3, + "inform_ite_instead_of_switch": 3, + "warn_unresolved_polymorphism": 3, + "warn_suspicious_foreign_procs": 3, + "warn_state_var_shadowing": 3, + "inform_inferred": 3, + "inform_inferred_types": 3, + "inform_inferred_modes": 3, + "verbose": 4, + "very_verbose": 4, + "verbose_errors": 4, + "verbose_recompilation": 3, + "find_all_recompilation_reasons": 3, + "verbose_make": 3, + "verbose_commands": 3, + "output_compile_error_lines": 3, + "report_cmd_line_args": 3, + "report_cmd_line_args_in_doterr": 3, + "statistics": 4, + "detailed_statistics": 3, + "proc_size_statistics": 3, + "debug_types": 4, + "debug_modes": 4, + "debug_modes_statistics": 3, + "debug_modes_minimal": 3, + "debug_modes_verbose": 3, + "debug_modes_pred_id": 3, + "debug_dep_par_conj": 3, + "debug_det": 4, + "debug_code_gen_pred_id": 3, + "debug_opt": 3, + "debug_term": 4, + "term": 10, + "termination": 3, + "analysis": 1, + "debug_opt_pred_id": 3, + "debug_opt_pred_name": 3, + "debug_pd": 3, + "pd": 1, + "partial": 1, + "deduction/deforestation": 1, + "debug_il_asm": 3, + "il_asm": 1, + "IL": 2, + "generation": 1, + "via": 1, + "asm": 1, + "debug_liveness": 3, + "debug_stack_opt": 3, + "debug_make": 3, + "debug_closure": 3, + "debug_trail_usage": 3, + "debug_mode_constraints": 3, + "debug_intermodule_analysis": 3, + "debug_mm_tabling_analysis": 3, + "debug_indirect_reuse": 3, + "debug_type_rep": 3, + "make_short_interface": 4, + "make_interface": 5, + "make_private_interface": 4, + "make_optimization_interface": 5, + "make_transitive_opt_interface": 5, + "make_analysis_registry": 3, + "make_xml_documentation": 5, + "generate_source_file_mapping": 4, + "generate_dependency_file": 3, + "generate_dependencies": 4, + "generate_module_order": 3, + "generate_standalone_interface": 3, + "convert_to_mercury": 6, + "typecheck_only": 4, + "errorcheck_only": 4, + "target_code_only": 10, + "compile_only": 4, + "compile_to_shared_lib": 3, + "output_grade_string": 3, + "output_link_command": 3, + "output_shared_lib_link_command": 3, + "output_libgrades": 3, + "output_cc": 3, + "output_c_compiler_type": 4, + "output_csharp_compiler_type": 3, + "output_cflags": 3, + "output_library_link_flags": 3, + "output_grade_defines": 3, + "output_c_include_directory_flags": 4, + "smart_recompilation": 3, + "generate_item_version_numbers": 2, + "generate_mmc_make_module_dependencies": 4, + "assume_gmake": 3, + "trace_level": 4, + "trace_optimized": 4, + "trace_prof": 3, + "trace_table_io": 3, + "trace_table_io_only_retry": 3, + "trace_table_io_states": 3, + "trace_table_io_require": 3, + "trace_table_io_all": 3, + "trace_goal_flags": 3, + "prof_optimized": 4, + "exec_trace_tail_rec": 3, + "suppress_trace": 3, + "force_disable_tracing": 3, + "delay_death": 3, + "delay_death_max_vars": 3, + "stack_trace_higher_order": 3, + "force_disable_ssdebug": 3, + "generate_bytecode": 3, + "line_numbers": 4, + "auto_comments": 4, + "frameopt_comments": 3, + "max_error_line_width": 3, + "show_dependency_graph": 3, + "imports_graph": 3, + "dump_trace_counts": 3, + "dump_hlds": 5, + "dump_hlds_pred_id": 3, + "dump_hlds_pred_name": 3, + "dump_hlds_alias": 4, + "dump_hlds_options": 3, + "dump_hlds_inst_limit": 3, + "dump_hlds_file_suffix": 3, + "dump_same_hlds": 3, + "dump_mlds": 4, + "verbose_dump_mlds": 4, + "mode_constraints": 3, + "simple_mode_constraints": 3, + "prop_mode_constraints": 4, + "benchmark_modes": 3, + "benchmark_modes_repeat": 3, + "sign_assembly": 3, + "separate_assemblies": 3, + "reorder_conj": 3, + "reorder_disj": 3, + "fully_strict": 3, + "strict_sequential": 3, + "allow_stubs": 3, + "infer_types": 3, + "infer_modes": 3, + "infer_det": 4, + "infer_all": 3, + "type_inference_iteration_limit": 3, + "mode_inference_iteration_limit": 3, + "event_set_file_name": 3, + "grade": 4, + "target": 14, + "il": 5, + "il_only": 4, + "compile_to_c": 4, + "c": 1, + "java": 35, + "java_only": 4, + "csharp": 6, + "csharp_only": 4, + "x86_64": 6, + "x86_64_only": 4, + "erlang": 6, + "erlang_only": 4, + "exec_trace": 3, + "decl_debug": 3, + "profiling": 5, + "profile_time": 5, + "profile_calls": 6, + "time_profiling": 3, + "memory_profiling": 3, + "profile_mem": 1, + "deep_profiling": 3, + "profile_deep": 4, + "profile_memory": 3, + "use_activation_counts": 3, + "pre_prof_transforms_simplify": 3, + "pre_implicit_parallelism_simplify": 3, + "coverage_profiling": 3, + "coverage_profiling_via_calls": 3, + "coverage_profiling_static": 3, + "profile_deep_coverage_after_goal": 3, + "profile_deep_coverage_branch_ite": 3, + "profile_deep_coverage_branch_switch": 3, + "profile_deep_coverage_branch_disj": 3, + "profile_deep_coverage_use_portcounts": 3, + "profile_deep_coverage_use_trivial": 2, + "profile_for_feedback": 2, + "use_zeroing_for_ho_cycles": 2, + "use_lots_of_ho_specialization": 2, + "deep_profile_tail_recursion": 2, + "record_term_sizes_as_words": 2, + "record_term_sizes_as_cells": 2, + "experimental_complexity": 2, + "gc": 2, + "parallel": 3, + "threadscope": 2, + "use_trail": 3, + "trail_segments": 2, + "use_minimal_model_stack_copy": 2, + "use_minimal_model_own_stacks": 2, + "minimal_model_debug": 2, + "single_prec_float": 2, + "type_layout": 2, + "maybe_thread_safe_opt": 2, + "extend_stacks_when_needed": 2, + "stack_segments": 2, + "use_regions": 2, + "use_alloc_regions": 2, + "use_regions_debug": 2, + "use_regions_profiling": 2, + "source_to_source_debug": 5, + "ssdb_trace_level": 3, + "link_ssdb_libs": 4, + "tags": 2, + "num_tag_bits": 2, + "num_reserved_addresses": 2, + "num_reserved_objects": 2, + "bits_per_word": 2, + "bytes_per_word": 2, + "conf_low_tag_bits": 2, + "unboxed_float": 3, + "unboxed_enums": 2, + "unboxed_no_tag_types": 2, + "sync_term_size": 2, + "words": 1, + "gcc_non_local_gotos": 3, + "gcc_global_registers": 2, + "asm_labels": 3, + "pic_reg": 2, + "use_float_registers": 5, + "highlevel_code": 3, + "highlevel_data": 2, + "gcc_nested_functions": 2, + "det_copy_out": 2, + "nondet_copy_out": 2, + "put_commit_in_own_func": 2, + "put_nondet_env_on_heap": 2, + "verifiable_code": 2, + "il_refany_fields": 2, + "il_funcptr_types": 2, + "il_byref_tailcalls": 2, + "backend_foreign_languages": 2, + "stack_trace": 2, + "basic_stack_layout": 2, + "agc_stack_layout": 2, + "procid_stack_layout": 2, + "trace_stack_layout": 2, + "body_typeinfo_liveness": 4, + "can_compare_constants_as_ints": 2, + "pretest_equality_cast_pointers": 2, + "can_compare_compound_values": 2, + "lexically_order_constructors": 2, + "mutable_always_boxed": 2, + "delay_partial_instantiations": 2, + "allow_defn_of_builtins": 2, + "special_preds": 2, + "type_ctor_info": 2, + "type_ctor_layout": 2, + "type_ctor_functors": 2, + "new_type_class_rtti": 2, + "rtti_line_numbers": 2, + "disable_minimal_model_stack_copy_pneg": 2, + "disable_minimal_model_stack_copy_cut": 2, + "use_minimal_model_stack_copy_pneg": 2, + "use_minimal_model_stack_copy_cut": 3, + "disable_trail_ops": 3, + "size_region_ite_fixed": 2, + "size_region_disj_fixed": 2, + "size_region_semi_disj_fixed": 1, + "size_region_commit_fixed": 2, + "size_region_ite_protect": 2, + "size_region_ite_snapshot": 2, + "size_region_semi_disj_protect": 2, + "size_region_disj_snapshot": 2, + "size_region_commit_entry": 2, + "solver_type_auto_init": 2, + "allow_multi_arm_switches": 2, + "type_check_constraints": 2, + "allow_argument_packing": 2, + "low_level_debug": 2, + "table_debug": 2, + "trad_passes": 2, + "parallel_liveness": 2, + "parallel_code_gen": 2, + "polymorphism": 2, + "reclaim_heap_on_failure": 2, + "reclaim_heap_on_semidet_failure": 2, + "reclaim_heap_on_nondet_failure": 2, + "have_delay_slot": 2, + "num_real_r_regs": 2, + "num_real_f_regs": 2, + "num_real_r_temps": 2, + "num_real_f_temps": 2, + "max_jump_table_size": 2, + "max_specialized_do_call_closure": 2, + "max_specialized_do_call_class_method": 2, + "compare_specialization": 2, + "should_pretest_equality": 2, + "fact_table_max_array_size": 2, + "fact_table_hash_percent_full": 2, + "gcc_local_labels": 2, + "prefer_switch": 2, + "opt_no_return_calls": 3, + "opt_level": 3, + "opt_level_number": 2, + "opt_space": 2, + "Default": 3, + "optimize": 3, + "time.": 1, + "intermodule_optimization": 2, + "read_opt_files_transitively": 2, + "use_opt_files": 2, + "use_trans_opt_files": 2, + "transitive_optimization": 2, + "intermodule_analysis": 2, + "analysis_repeat": 2, + "analysis_file_cache": 2, + "allow_inlining": 2, + "inlining": 2, + "inline_simple": 2, + "inline_builtins": 2, + "inline_single_use": 2, + "inline_call_cost": 2, + "inline_compound_threshold": 2, + "inline_simple_threshold": 2, + "inline_vars_threshold": 2, + "intermod_inline_simple_threshold": 2, + "from_ground_term_threshold": 2, + "enable_const_struct": 2, + "common_struct": 2, + "common_struct_preds": 2, + "common_goal": 2, + "constraint_propagation": 2, + "local_constraint_propagation": 2, + "optimize_unused_args": 2, + "intermod_unused_args": 2, + "optimize_higher_order": 2, + "higher_order_size_limit": 2, + "higher_order_arg_limit": 2, + "unneeded_code": 2, + "unneeded_code_copy_limit": 2, + "unneeded_code_debug": 2, + "unneeded_code_debug_pred_name": 2, + "type_specialization": 2, + "user_guided_type_specialization": 2, + "introduce_accumulators": 2, + "optimize_constructor_last_call_accumulator": 2, + "optimize_constructor_last_call_null": 3, + "optimize_constructor_last_call": 2, + "optimize_duplicate_calls": 2, + "constant_propagation": 2, + "excess_assign": 2, + "optimize_format_calls": 2, + "optimize_saved_vars_const": 2, + "optimize_saved_vars_cell": 2, + "optimize_saved_vars_cell_loop": 2, + "optimize_saved_vars_cell_full_path": 2, + "optimize_saved_vars_cell_on_stack": 2, + "optimize_saved_vars_cell_candidate_headvars": 2, + "optimize_saved_vars_cell_cv_store_cost": 2, + "optimize_saved_vars_cell_cv_load_cost": 2, + "optimize_saved_vars_cell_fv_store_cost": 2, + "optimize_saved_vars_cell_fv_load_cost": 2, + "optimize_saved_vars_cell_op_ratio": 2, + "optimize_saved_vars_cell_node_ratio": 2, + "optimize_saved_vars_cell_all_path_node_ratio": 2, + "optimize_saved_vars_cell_include_all_candidates": 2, + "optimize_saved_vars": 2, + "loop_invariants": 2, + "delay_construct": 2, + "follow_code": 2, + "optimize_dead_procs": 2, + "deforestation": 2, + "deforestation_depth_limit": 2, + "deforestation_cost_factor": 2, + "deforestation_vars_threshold": 2, + "deforestation_size_threshold": 2, + "analyse_trail_usage": 2, + "optimize_trail_usage": 3, + "optimize_region_ops": 3, + "analyse_mm_tabling": 2, + "untuple": 2, + "tuple": 2, + "tuple_trace_counts_file": 2, + "tuple_costs_ratio": 2, + "tuple_min_args": 2, + "inline_par_builtins": 2, + "always_specialize_in_dep_par_conjs": 2, + "allow_some_paths_only_waits": 2, + "region_analysis": 3, + "structure_sharing_analysis": 2, + "structure_sharing_widening": 2, + "structure_reuse_analysis": 2, + "structure_reuse_constraint": 2, + "structure_reuse_constraint_arg": 2, + "structure_reuse_max_conditions": 2, + "structure_reuse_repeat": 2, + "structure_reuse_free_cells": 2, + "termination_check": 2, + "verbose_check_termination": 2, + "termination_single_args": 2, + "termination_norm": 2, + "termination_error_limit": 2, + "termination_path_limit": 2, + "termination2": 2, + "check_termination2": 2, + "verbose_check_termination2": 2, + "termination2_norm": 2, + "widening_limit": 2, + "arg_size_analysis_only": 2, + "propagate_failure_constrs": 2, + "term2_maximum_matrix_size": 2, + "analyse_exceptions": 2, + "analyse_closures": 2, + "smart_indexing": 2, + "dense_switch_req_density": 2, + "lookup_switch_req_density": 2, + "dense_switch_size": 2, + "lookup_switch_size": 2, + "string_hash_switch_size": 2, + "string_binary_switch_size": 2, + "tag_switch_size": 2, + "try_switch_size": 2, + "binary_switch_size": 2, + "switch_single_rec_base_first": 2, + "switch_multi_rec_base_first": 2, + "static_ground_cells": 3, + "static_ground_floats": 3, + "static_code_addresses": 3, + "use_atomic_cells": 2, + "middle_rec": 2, + "simple_neg": 2, + "allow_hijacks": 3, + "optimize_tailcalls": 2, + "optimize_initializations": 2, + "eliminate_local_vars": 2, + "generate_trail_ops_inline": 2, + "common_data": 2, + "common_layout_data": 2, + "Also": 1, + "for": 8, + "MLDS": 2, + "optimizations.": 1, + "optimize_peep": 2, + "optimize_peep_mkword": 2, + "optimize_jumps": 2, + "optimize_fulljumps": 2, + "pessimize_tailcalls": 2, + "checked_nondet_tailcalls": 2, + "use_local_vars": 2, + "local_var_access_threshold": 2, + "standardize_labels": 2, + "optimize_labels": 2, + "optimize_dups": 2, + "optimize_proc_dups": 2, + "optimize_frames": 2, + "optimize_delay_slot": 2, + "optimize_reassign": 2, + "optimize_repeat": 2, + "layout_compression_limit": 2, + "use_macro_for_redo_fail": 2, + "emit_c_loops": 2, + "procs_per_c_function": 3, + "everything_in_one_c_function": 2, + "local_thread_engine_base": 2, + "erlang_switch_on_strings_as_atoms": 2, + "target_debug": 2, + "cc": 2, + "cflags": 2, + "quoted_cflag": 2, + "c_include_directory": 2, + "c_optimize": 2, + "ansi_c": 2, + "inline_alloc": 2, + "gcc_flags": 2, + "quoted_gcc_flag": 2, + "clang_flags": 2, + "quoted_clang_flag": 2, + "msvc_flags": 2, + "quoted_msvc_flag": 2, + "cflags_for_warnings": 2, + "cflags_for_optimization": 2, + "cflags_for_ansi": 2, + "cflags_for_regs": 2, + "cflags_for_gotos": 2, + "cflags_for_threads": 2, + "cflags_for_debug": 2, + "cflags_for_pic": 2, + "c_flag_to_name_object_file": 2, + "object_file_extension": 2, + "pic_object_file_extension": 2, + "link_with_pic_object_file_extension": 2, + "c_compiler_type": 2, + "csharp_compiler_type": 2, + "java_compiler": 2, + "java_interpreter": 2, + "java_flags": 2, + "quoted_java_flag": 2, + "java_classpath": 2, + "java_object_file_extension": 2, + "il_assembler": 2, + "ilasm_flags": 2, + "quoted_ilasm_flag": 2, + "dotnet_library_version": 2, + "support_ms_clr": 2, + "support_rotor_clr": 2, + "csharp_compiler": 2, + "csharp_flags": 2, + "quoted_csharp_flag": 2, + "cli_interpreter": 2, + "erlang_compiler": 2, + "erlang_interpreter": 2, + "erlang_flags": 2, + "quoted_erlang_flag": 2, + "erlang_include_directory": 2, + "erlang_object_file_extension": 2, + "erlang_native_code": 2, + "erlang_inhibit_trivial_warnings": 2, + "output_file_name": 3, + "ld_flags": 2, + "quoted_ld_flag": 2, + "ld_libflags": 2, + "quoted_ld_libflag": 2, + "link_library_directories": 3, + "runtime_link_library_directories": 3, + "link_libraries": 3, + "link_objects": 2, + "mercury_library_directories": 2, + "mercury_library_directory_special": 2, + "search_library_files_directories": 2, + "search_library_files_directory_special": 2, + "mercury_libraries": 2, + "mercury_library_special": 2, + "mercury_standard_library_directory": 2, + "mercury_standard_library_directory_special": 2, + "init_file_directories": 2, + "init_files": 2, + "trace_init_files": 2, + "linkage": 2, + "linkage_special": 2, + "mercury_linkage": 2, + "mercury_linkage_special": 2, + "strip": 2, + "demangle": 2, + "allow_undefined": 2, + "use_readline": 2, + "runtime_flags": 2, + "extra_initialization_functions": 2, + "frameworks": 2, + "framework_directories": 3, + "shared_library_extension": 2, + "library_extension": 2, + "executable_file_extension": 2, + "link_executable_command": 2, + "link_shared_lib_command": 2, + "create_archive_command": 2, + "create_archive_command_output_flag": 2, + "create_archive_command_flags": 2, + "ranlib_command": 2, + "ranlib_flags": 2, + "mkinit_command": 2, + "mkinit_erl_command": 2, + "demangle_command": 2, + "filtercc_command": 2, + "trace_libs": 2, + "thread_libs": 2, + "hwloc_libs": 2, + "hwloc_static_libs": 2, + "shared_libs": 2, + "math_lib": 2, + "readline_libs": 2, + "linker_opt_separator": 2, + "linker_thread_flags": 2, + "shlib_linker_thread_flags": 2, + "linker_static_flags": 2, + "linker_strip_flag": 2, + "linker_link_lib_flag": 2, + "linker_link_lib_suffix": 2, + "shlib_linker_link_lib_flag": 2, + "shlib_linker_link_lib_suffix": 2, + "linker_debug_flags": 2, + "shlib_linker_debug_flags": 2, + "linker_trace_flags": 2, + "shlib_linker_trace_flags": 2, + "linker_path_flag": 2, + "linker_rpath_flag": 2, + "linker_rpath_separator": 2, + "shlib_linker_rpath_flag": 2, + "shlib_linker_rpath_separator": 2, + "linker_allow_undefined_flag": 2, + "linker_error_undefined_flag": 2, + "shlib_linker_use_install_name": 2, + "shlib_linker_install_name_flag": 2, + "shlib_linker_install_name_path": 2, + "java_archive_command": 2, + "make": 3, + "keep_going": 3, + "rebuild": 3, + "jobs": 3, + "track_flags": 2, + "invoked_by_mmc_make": 2, + "extra_init_command": 2, + "pre_link_command": 2, + "install_prefix": 2, + "use_symlinks": 2, + "mercury_configuration_directory": 2, + "mercury_configuration_directory_special": 2, + "install_command": 2, + "install_command_dir_option": 2, + "libgrades": 2, + "libgrades_include_components": 2, + "libgrades_exclude_components": 2, + "lib_linkages": 2, + "flags_file": 2, + "options_files": 2, + "config_file": 2, + "options_search_directories": 2, + "use_subdirs": 2, + "use_grade_subdirs": 2, + "search_directories": 3, + "intermod_directories": 2, + "use_search_directories_for_intermod": 2, + "libgrade_install_check": 2, + "order_make_by_timestamp": 2, + "show_make_times": 2, + "extra_library_header": 2, + "restricted_command_line": 2, + "env_type": 2, + "host_env_type": 2, + "target_env_type": 2, + "filenames_from_stdin": 2, + "typecheck_ambiguity_warn_limit": 2, + "typecheck_ambiguity_error_limit": 2, + "help": 4, + "version": 3, + "fullarch": 2, + "cross_compiling": 2, + "local_module_id": 2, + "analysis_file_cache_dir": 2, + "compiler_sufficiently_recent": 2, + "experiment": 2, + "ignore_par_conjunctions": 2, + "control_granularity": 2, + "distance_granularity": 2, + "implicit_parallelism": 2, + "feedback_file": 2, + "par_loop_control": 2, + "par_loop_control_preserve_tail_recursion.": 1, + "libs.handle_options.": 1, + "dir.": 1, + "option_category": 2, + "warning_option": 2, + "verbosity_option": 2, + "output_option": 2, + "aux_output_option": 2, + "language_semantics_option": 2, + "compilation_model_option": 2, + "internal_use_option": 2, + "code_gen_option": 2, + "special_optimization_option": 2, + "optimization_option": 2, + "target_code_compilation_option": 2, + "link_option": 2, + "build_system_option": 2, + "miscellaneous_option.": 1, + "Option": 2, + "option_defaults_2": 18, + "_Category": 1, + "OptionsList": 2, + "multi.": 1, + "bool_special": 7, + "XXX": 3, + "should": 1, + "be": 1, + "accumulating": 49, + "maybe_string": 6, + "special": 17, + "string_special": 18, + "int_special": 1, + "maybe_string_special": 1, + "file_special": 1, + "miscellaneous_option": 1, + "par_loop_control_preserve_tail_recursion": 1, + "hello.": 1, + "io.write_string": 1, + "expr.": 1, + "token": 5, + "num": 11, + "parse": 1, + "exprn/1": 1, + "xx": 1, + "scan": 16, + "rule": 3, + "exprn": 7, + "Num": 18, + "B": 8, + "factor": 6, + "/": 1, + "Chars": 2, + "Toks": 13, + "Toks0": 11, + "list__reverse": 1, + "C": 34, + "Cs": 9, + "char__is_whitespace": 1, + "char__is_digit": 2, + "takewhile": 1, + "Digits": 2, + "Rest": 2, + "string__from_char_list": 1, + "NumStr": 2, + "string__det_to_int": 1, + "rot13_ralph.": 1, + "io__read_byte": 1, + "Result": 4, + "io__write_byte": 1, + "ErrNo": 2, + "z": 1, + "Rot13": 2, + "<": 14, + "rem": 1, + "ll_backend.code_info.": 1, + "hlds.code_model.": 1, + "hlds.hlds_llds.": 1, + "ll_backend.continuation_info.": 1, + "ll_backend.global_data.": 1, + "ll_backend.layout.": 1, + "ll_backend.llds.": 1, + "ll_backend.trace_gen.": 1, + "counter.": 1, + "set_tree234.": 1, + "backend_libs.builtin_ops.": 1, + "backend_libs.proc_label.": 1, + "hlds.arg_info.": 1, + "hlds.hlds_desc.": 1, + "libs.trace_params.": 1, + "ll_backend.code_util.": 1, + "ll_backend.opt_debug.": 1, + "ll_backend.var_locn.": 1, + "parse_tree.mercury_to_mercury.": 1, + "cord.": 1, + "stack.": 1, + "code_info.": 1, + "code_info_init": 2, + "globals": 5, + "abs_follow_vars": 3, + "static_cell_info": 4, + "const_struct_map": 3, + "resume_point_info": 11, + "trace_slot_info": 3, + "containing_goal_map": 4, + "code_info": 208, + "get_globals": 5, + "get_exprn_opts": 2, + "exprn_opts": 3, + "get_module_info": 7, + "get_pred_id": 6, + "get_proc_id": 5, + "get_pred_info": 2, + "get_proc_info": 4, + "get_varset": 3, + "get_var_types": 3, + "vartypes.": 1, + "get_maybe_trace_info": 2, + "trace_info": 3, + "get_emit_trail_ops": 2, + "add_trail_ops": 5, + "get_emit_region_ops": 2, + "add_region_ops": 6, + "get_forward_live_vars": 2, + "set_of_progvar": 10, + "set_forward_live_vars": 2, + "get_instmap": 4, + "instmap": 3, + "set_instmap": 3, + "get_par_conj_depth": 2, + "set_par_conj_depth": 2, + "get_label_counter": 3, + "counter": 6, + "get_succip_used": 2, + "get_layout_info": 4, + "proc_label_layout_info": 3, + "get_proc_trace_events": 2, + "set_proc_trace_events": 2, + "get_closure_layouts": 3, + "closure_proc_id_data": 4, + "get_max_reg_in_use_at_trace": 2, + "set_max_reg_in_use_at_trace": 2, + "get_created_temp_frame": 2, + "get_static_cell_info": 5, + "set_static_cell_info": 5, + "get_alloc_sites": 3, + "set_tree234": 3, + "alloc_site_info": 4, + "set_alloc_sites": 3, + "get_used_env_vars": 2, + "set_used_env_vars": 2, + "get_opt_trail_ops": 2, + "get_opt_region_ops": 2, + "get_auto_comments": 2, + "get_lcmc_null": 2, + "get_containing_goal_map": 3, + "get_containing_goal_map_det": 2, + "get_const_struct_map": 2, + "add_out_of_line_code": 2, + "llds_code": 21, + "get_out_of_line_code": 2, + "get_var_slot_count": 2, + "set_maybe_trace_info": 3, + "get_opt_no_return_calls": 2, + "get_zombies": 2, + "set_zombies": 2, + "get_var_locn_info": 7, + "var_locn_info": 3, + "set_var_locn_info": 4, + "get_temps_in_use": 6, + "lval": 114, + "set_temps_in_use": 4, + "get_fail_info": 13, + "fail_info": 24, + "set_fail_info": 9, + "set_label_counter": 3, + "set_succip_used": 3, + "set_layout_info": 4, + "get_max_temp_slot_count": 2, + "set_max_temp_slot_count": 2, + "get_temp_content_map": 3, + "slot_contents": 4, + "set_temp_content_map": 2, + "get_persistent_temps": 3, + "set_persistent_temps": 2, + "set_closure_layouts": 3, + "get_closure_seq_counter": 3, + "set_closure_seq_counter": 3, + "set_created_temp_frame": 2, + "code_info_static": 26, + "code_info_loc_dep": 22, + "code_info_persistent": 44, + "cis_globals": 2, + "cis_exprn_opts": 2, + "cis_module_info": 2, + "cis_pred_id": 2, + "cis_proc_id": 2, + "cis_pred_info": 2, + "cis_proc_info": 2, + "cis_proc_label": 1, + "proc_label": 2, + "cis_varset": 2, + "cis_var_slot_count": 2, + "cis_maybe_trace_info": 3, + "cis_opt_no_resume_calls": 2, + "cis_emit_trail_ops": 2, + "cis_opt_trail_ops": 2, + "cis_emit_region_ops": 2, + "cis_opt_region_ops": 2, + "cis_auto_comments": 2, + "cis_lcmc_null": 2, + "cis_containing_goal_map": 2, + "cis_const_struct_map": 2, + "cild_forward_live_vars": 3, + "cild_instmap": 3, + "cild_zombies": 3, + "cild_var_locn_info": 3, + "cild_temps_in_use": 3, + "cild_fail_info": 3, + "cild_par_conj_depth": 3, + "cip_label_num_src": 3, + "cip_store_succip": 3, + "cip_label_info": 3, + "cip_proc_trace_events": 3, + "cip_stackslot_max": 3, + "cip_temp_contents": 3, + "cip_persistent_temps": 3, + "cip_closure_layout_seq": 3, + "cip_closure_layouts": 3, + "cip_max_reg_r_used": 3, + "cip_max_reg_f_used": 2, + "cip_created_temp_frame": 3, + "cip_static_cell_info": 3, + "cip_alloc_sites": 3, + "cip_used_env_vars": 3, + "cip_ts_string_table_size": 3, + "cip_ts_rev_string_table": 4, + "cip_out_of_line_code": 4, + "SaveSuccip": 2, + "Globals": 32, + "FollowVars": 6, + "StaticCellInfo": 8, + "ConstStructMap": 2, + "ResumePoint": 13, + "TraceSlotInfo": 5, + "MaybeContainingGoalMap": 5, + "TSRevStringTable": 2, + "TSStringTableSize": 2, + "CodeInfo": 2, + "ProcLabel": 8, + "make_proc_label": 1, + "proc_info_get_initial_instmap": 1, + "InstMap": 6, + "proc_info_get_liveness_info": 1, + "Liveness": 4, + "CodeModel": 8, + "proc_info_interface_code_model": 2, + "build_input_arg_list": 1, + "ArgList": 2, + "proc_info_get_varset": 1, + "proc_info_get_vartypes": 2, + "proc_info_get_stack_slots": 1, + "StackSlots": 5, + "ExprnOpts": 4, + "init_exprn_opts": 3, + "globals.lookup_bool_option": 18, + "UseFloatRegs": 6, + "FloatRegType": 3, + "reg_f": 1, + "reg_r": 2, + "globals.get_trace_level": 1, + "TraceLevel": 5, + "eff_trace_level_is_none": 2, + "trace_fail_vars": 1, + "FailVars": 3, + "MaybeFailVars": 3, + "EffLiveness": 3, + "init_var_locn_state": 1, + "VarLocnInfo": 12, + "stack.init": 1, + "ResumePoints": 14, + "AllowHijack": 3, + "Hijack": 6, + "allowed": 6, + "not_allowed": 5, + "DummyFailInfo": 2, + "resume_point_unknown": 9, + "may_be_different": 7, + "not_inside_non_condition": 2, + "TempContentMap": 4, + "set.init": 7, + "PersistentTemps": 4, + "TempsInUse": 8, + "Zombies": 2, + "set_of_var.init": 1, + "LayoutMap": 2, + "max_var_slot": 1, + "VarSlotMax": 2, + "trace_reserved_slots": 1, + "FixedSlots": 2, + "int.max": 1, + "SlotMax": 2, + "OptNoReturnCalls": 2, + "UseTrail": 2, + "DisableTrailOps": 2, + "EmitTrailOps": 3, + "do_not_add_trail_ops": 1, + "OptTrailOps": 2, + "OptRegionOps": 2, + "UseRegions": 3, + "EmitRegionOps": 3, + "do_not_add_region_ops": 1, + "AutoComments": 2, + "LCMCNull": 2, + "CodeInfo0": 2, + "init_fail_info": 2, + "will": 1, + "override": 1, + "this": 4, + "dummy": 2, + "value": 16, + "nested": 1, + "conjunction": 1, + "depth": 1, + "counter.init": 2, + "set_tree234.init": 1, + "cord.empty": 1, + "init_maybe_trace_info": 3, + "CodeInfo1": 2, + "exprn_opts.": 1, + "OptNLG": 3, + "NLG": 3, + "have_non_local_gotos": 1, + "do_not_have_non_local_gotos": 1, + "OptASM": 3, + "ASM": 3, + "have_asm_labels": 1, + "do_not_have_asm_labels": 1, + "OptSGCell": 3, + "SGCell": 3, + "have_static_ground_cells": 1, + "do_not_have_static_ground_cells": 1, + "OptUBF": 3, + "UBF": 3, + "have_unboxed_floats": 1, + "do_not_have_unboxed_floats": 1, + "OptFloatRegs": 3, + "do_not_use_float_registers": 1, + "OptSGFloat": 3, + "SGFloat": 3, + "have_static_ground_floats": 1, + "do_not_have_static_ground_floats": 1, + "OptStaticCodeAddr": 3, + "StaticCodeAddrs": 3, + "have_static_code_addresses": 1, + "do_not_have_static_code_addresses": 1, + "CI": 294, + "proc_info_get_has_tail_call_events": 1, + "HasTailCallEvents": 3, + "tail_call_events": 1, + "get_next_label": 5, + "TailRecLabel": 2, + "MaybeTailRecLabel": 3, + "no_tail_call_events": 1, + "trace_setup": 1, + "TraceInfo": 2, + "MaxRegR": 4, + "MaxRegF": 4, + "cip_max_reg_f_used.": 1, + "TI": 4, + "LV": 2, + "IM": 2, + "Zs": 2, + "EI": 2, + "FI": 2, + "LC": 2, + "SU": 2, + "LI": 2, + "PTE": 2, + "TM": 2, + "CM": 2, + "PT": 2, + "CLS": 2, + "CG": 2, + "MR": 4, + "MF": 1, + "MF.": 1, + "SCI": 2, + "ASI": 2, + "UEV": 2, + "ContainingGoalMap": 2, + "NewCode": 2, + "Code0": 2, + ".CI": 29, + "Code": 36, + "Code.": 1, + "get_stack_slots": 2, + "stack_slots": 1, + "get_follow_var_map": 2, + "abs_follow_vars_map": 1, + "get_next_non_reserved": 2, + "reg_type": 1, + "set_follow_vars": 4, + "pre_goal_update": 3, + "has_subgoals": 2, + "post_goal_update": 3, + "variable_type": 3, + "mer_type.": 1, + "variable_is_of_dummy_type": 2, + "is_dummy_type.": 1, + "search_type_defn": 4, + "hlds_type_defn": 1, + "lookup_type_defn": 2, + "hlds_type_defn.": 1, + "lookup_cheaper_tag_test": 2, + "maybe_cheaper_tag_test.": 1, + "filter_region_vars": 2, + "set_of_progvar.": 2, + "get_proc_model": 2, + "code_model.": 1, + "get_headvars": 2, + "get_arginfo": 2, + "arg_info": 2, + "get_pred_proc_arginfo": 3, + "current_resume_point_vars": 2, + "variable_name": 2, + "make_proc_entry_label": 2, + "code_addr.": 1, + "label": 5, + "succip_is_used": 2, + "add_trace_layout_for_label": 2, + "trace_port": 1, + "forward_goal_path": 1, + "user_event_info": 1, + "layout_label_info": 2, + "get_cur_proc_label": 4, + "get_next_closure_seq_no": 2, + "add_closure_layout": 2, + "add_threadscope_string": 2, + "get_threadscope_rev_string_table": 2, + "add_scalar_static_cell": 2, + "typed_rval": 1, + "data_id": 3, + "add_scalar_static_cell_natural_types": 2, + "rval": 3, + "add_vector_static_cell": 2, + "llds_type": 1, + "add_alloc_site_info": 2, + "prog_context": 1, + "alloc_site_id": 2, + "add_resume_layout_for_label": 2, + "var_locn_get_stack_slots": 1, + "FollowVarMap": 2, + "var_locn_get_follow_var_map": 1, + "RegType": 2, + "NextNonReserved": 2, + "var_locn_get_next_non_reserved": 1, + "VarLocnInfo0": 4, + "var_locn_set_follow_vars": 1, + "HasSubGoals": 3, + "goal_info_get_resume_point": 1, + "no_resume_point": 1, + "resume_point": 1, + "goal_info_get_follow_vars": 1, + "MaybeFollowVars": 3, + "goal_info_get_pre_deaths": 1, + "PreDeaths": 3, + "rem_forward_live_vars": 3, + "maybe_make_vars_forward_dead": 2, + "goal_info_get_pre_births": 1, + "PreBirths": 2, + "add_forward_live_vars": 2, + "does_not_have_subgoals": 2, + "goal_info_get_post_deaths": 2, + "PostDeaths": 5, + "goal_info_get_post_births": 1, + "PostBirths": 3, + "make_vars_forward_live": 1, + "InstMapDelta": 2, + "goal_info_get_instmap_delta": 1, + "InstMap0": 2, + "instmap.apply_instmap_delta": 1, + "TypeInfoLiveness": 2, + "body_should_use_typeinfo_liveness": 1, + "IsDummy": 2, + "VarType": 2, + "check_dummy_type": 1, + "TypeDefn": 6, + "type_to_ctor_det": 1, + "TypeCtor": 2, + "module_info_get_type_table": 1, + "TypeTable": 2, + "search_type_ctor_defn": 1, + "TypeDefnPrime": 2, + "CheaperTagTest": 3, + "get_type_defn_body": 1, + "TypeBody": 2, + "hlds_du_type": 1, + "CheaperTagTestPrime": 2, + "no_cheaper_tag_test": 1, + "ForwardLiveVarsBeforeGoal": 6, + "RegionVars": 2, + "code_info.get_var_types": 1, + "set_of_var.filter": 1, + "is_region_var": 1, + "ArgInfo": 4, + "proc_info_arg_info": 1, + "ResumeVars": 4, + "FailInfo": 19, + "ResumePointStack": 2, + "stack.det_top": 5, + "ResumePointInfo": 2, + "pick_first_resume_point": 1, + "ResumeMap": 8, + "ResumeMapVarList": 2, + "Varset": 2, + "Immed0": 3, + "CodeAddr": 2, + "Immed": 3, + "globals.lookup_int_option": 1, + "ProcsPerFunc": 2, + "CurPredId": 2, + "CurProcId": 2, + "make_entry_label": 1, + "Label": 8, + "C0": 4, + "counter.allocate": 2, + "internal_label": 3, + "Port": 2, + "IsHidden": 2, + "GoalPath": 2, + "MaybeSolverEventInfo": 2, + "Layout": 2, + "Internals0": 8, + "Exec": 5, + "trace_port_layout_info": 1, + "LabelNum": 8, + "entry_label": 2, + "map.search": 2, + "Internal0": 4, + "internal_layout_info": 6, + "Exec0": 3, + "Resume": 5, + "Return": 6, + "Internal": 8, + "Internals": 6, + "map.det_insert": 3, + "LayoutInfo": 2, + "Resume0": 3, + "get_active_temps_data": 2, + "assoc_list": 1, + "Temps": 2, + "map.select": 1, + "TempsInUseContentMap": 2, + "map.to_assoc_list": 3, + "cis_proc_label.": 1, + "SeqNo": 2, + "ClosureLayout": 2, + "ClosureLayouts": 2, + "String": 2, + "SlotNum": 2, + "Size0": 3, + "RevTable0": 2, + "Size": 4, + "RevTable": 3, + "RevTable.": 1, + "TableSize": 2, + "cip_ts_string_table_size.": 1, + "RvalsTypes": 2, + "DataAddr": 6, + "StaticCellInfo0": 6, + "global_data.add_scalar_static_cell": 1, + "Rvals": 2, + "global_data.add_scalar_static_cell_natural_types": 1, + "Vector": 2, + "global_data.add_vector_static_cell": 1, + "AllocId": 2, + "AllocSite": 3, + "AllocSites0": 2, + "set_tree234.insert": 1, + "AllocSites": 2, + "position_info.": 1, + "branch_end_info.": 1, + "branch_end": 4, + "branch_end_info": 7, + "remember_position": 3, + "position_info": 14, + "reset_to_position": 4, + "reset_resume_known": 2, + "generate_branch_end": 2, + "abs_store_map": 3, + "after_all_branches": 2, + "save_hp_in_branch": 2, + "pos_get_fail_info": 3, + "fail_info.": 2, + "LocDep": 6, + "cild_fail_info.": 1, + "CurCI": 2, + "NextCI": 2, + "Static": 2, + "Persistent": 2, + "NextCI0": 4, + "TempsInUse0": 4, + "set.union": 2, + "BranchStart": 2, + "BranchStartFailInfo": 2, + "BSResumeKnown": 2, + "CurFailInfo": 2, + "CurFailStack": 2, + "CurCurfMaxfr": 2, + "CurCondEnv": 2, + "CurHijack": 2, + "NewFailInfo": 2, + "StoreMap": 8, + "MaybeEnd0": 3, + "MaybeEnd": 6, + "AbsVarLocs": 3, + "assoc_list.values": 1, + "AbsLocs": 2, + "code_util.max_mentioned_abs_regs": 1, + "instmap_is_reachable": 1, + "VarLocs": 2, + "assoc_list.map_values_only": 2, + "abs_locn_to_lval": 2, + "place_vars": 1, + "remake_with_store_map": 4, + "empty": 9, + "EndCodeInfo1": 5, + "EndCodeInfo0": 3, + "FailInfo0": 13, + "FailInfo1": 2, + "ResumeKnown0": 5, + "CurfrMaxfr0": 2, + "CondEnv0": 3, + "Hijack0": 2, + "R": 2, + "ResumeKnown1": 2, + "CurfrMaxfr1": 2, + "CondEnv1": 2, + "Hijack1": 2, + "resume_point_known": 15, + "Redoip0": 3, + "Redoip1": 2, + "ResumeKnown": 21, + "must_be_equal": 11, + "CurfrMaxfr": 24, + "EndCodeInfoA": 2, + "TempsInUse1": 2, + "EndCodeInfo": 2, + "BranchEnd": 2, + "BranchEndCodeInfo": 2, + "BranchEndLocDep": 2, + "VarLocns": 2, + "VarLvals": 2, + "reinit_var_locn_state": 1, + "Slot": 2, + "Pos0": 2, + "Pos": 2, + "CI0": 2, + "CIStatic0": 2, + "CILocDep0": 2, + "CIPersistent0": 2, + "LocDep0": 2, + "CI1": 2, + "save_hp": 1, + "CI2": 2, + "CIStatic": 2, + "CIPersistent": 2, + "resume_map.": 1, + "resume_point_info.": 1, + "disj_hijack_info.": 1, + "prepare_for_disj_hijack": 2, + "code_model": 3, + "disj_hijack_info": 3, + "undo_disj_hijack": 2, + "ite_hijack_info.": 1, + "prepare_for_ite_hijack": 2, + "embedded_stack_frame_id": 3, + "ite_hijack_info": 3, + "ite_enter_then": 2, + "simple_neg_info.": 1, + "enter_simple_neg": 2, + "simple_neg_info": 3, + "leave_simple_neg": 2, + "det_commit_info.": 1, + "prepare_for_det_commit": 2, + "det_commit_info": 6, + "generate_det_commit": 2, + "semi_commit_info.": 1, + "prepare_for_semi_commit": 2, + "semi_commit_info": 6, + "generate_semi_commit": 2, + "effect_resume_point": 2, + "pop_resume_point": 1, + "top_resume_point": 1, + "set_resume_point_to_unknown": 1, + "set_resume_point_and_frame_to_unknown": 1, + "generate_failure": 2, + "fail_if_rval_is_false": 1, + "failure_is_direct_branch": 1, + "code_addr": 8, + "may_use_nondet_tailcall": 1, + "nondet_tail_call": 1, + "produce_vars": 1, + "resume_map": 9, + "flush_resume_vars_to_stack": 1, + "make_resume_point": 1, + "resume_locs": 1, + "generate_resume_point": 2, + "resume_point_vars": 1, + "resume_point_stack_addr": 2, + "stack": 1, + "curfr_vs_maxfr": 2, + "condition_env": 3, + "hijack_allowed": 2, + "orig_only": 2, + "stack_only": 2, + "orig_and_stack": 1, + "stack_and_orig": 1, + "redoip_update": 2, + "has_been_done": 5, + "wont_be_done.": 1, + "resume_point_unknown.": 1, + "may_be_different.": 1, + "inside_non_condition": 6, + "not_inside_non_condition.": 1, + "not_allowed.": 1, + "disj_no_hijack": 4, + "disj_temp_frame": 4, + "disj_quarter_hijack": 4, + "disj_half_hijack": 3, + "disj_full_hijack": 3, + "HijackInfo": 29, + "CondEnv": 12, + "Allow": 12, + "model_det": 2, + "model_semi": 3, + "singleton": 28, + "llds_instr": 64, + "comment": 5, + "model_non": 2, + "create_temp_frame": 4, + "do_fail": 6, + "stack.pop": 1, + "TopResumePoint": 6, + "RestResumePoints": 2, + "stack.is_empty": 1, + "wont_be_done": 2, + "acquire_temp_slot": 15, + "slot_lval": 14, + "redoip_slot": 30, + "curfr": 18, + "non_persistent_temp_slot": 15, + "RedoipSlot": 33, + "maxfr": 42, + "redofr_slot": 14, + "RedofrSlot": 17, + "from_list": 13, + "prevfr_slot": 3, + "pick_stack_resume_point": 3, + "StackLabel": 9, + "LabelConst": 4, + "const": 10, + "llconst_code_addr": 6, + "ite_region_info": 5, + "ite_info": 3, + "ite_hijack_type": 2, + "ite_no_hijack": 3, + "ite_temp_frame": 3, + "ite_quarter_hijack": 3, + "ite_half_hijack": 3, + "ite_full_hijack": 3, + "CondCodeModel": 4, + "MaybeEmbeddedFrameId": 5, + "HijackType": 12, + "MaybeRegionInfo": 12, + "MaxfrSlot": 30, + "TempFrameCode": 4, + "MaxfrCode": 7, + "EmbeddedFrameId": 2, + "slot_success_record": 1, + "persistent_temp_slot": 1, + "SuccessRecordSlot": 6, + "InitSuccessCode": 3, + "llconst_false": 1, + "ITEResumePoint": 2, + "ThenCode": 10, + "ElseCode": 7, + "ResumePoints0": 5, + "stack.det_pop": 1, + "HijackResumeKnown": 2, + "OldCondEnv": 2, + "RegionInfo": 2, + "EmbeddedStackFrameId": 2, + "ITEStackResumeCodeAddr": 2, + "llconst_true": 1, + "AfterRegionOp": 3, + "if_val": 1, + "unop": 1, + "logical_not": 1, + "code_label": 2, + "use_and_maybe_pop_region_frame": 1, + "region_ite_nondet_cond_fail": 1, + "goto": 2, + "maybe_pick_stack_resume_point": 1, + "ResumeMap0": 2, + "make_fake_resume_map": 5, + "do_redo": 1, + "is_empty": 1, + "Locns": 2, + "set.make_singleton_set": 1, + "reg": 1, + "region_commit_stack_frame": 5, + "AddTrailOps": 4, + "AddRegionOps": 5, + "CommitGoalInfo": 4, + "DetCommitInfo": 4, + "SaveMaxfrCode": 3, + "save_maxfr": 3, + "MaybeMaxfrSlot": 6, + "maybe_save_trail_info": 2, + "MaybeTrailSlots": 8, + "SaveTrailCode": 4, + "maybe_save_region_commit_frame": 4, + "MaybeRegionCommitFrameInfo": 8, + "SaveRegionCommitFrameCode": 2, + "SaveRegionCommitFrameCode.": 2, + "RestoreMaxfrCode": 3, + "restore_maxfr": 3, + "release_temp_slot": 1, + "maybe_restore_trail_info": 2, + "CommitTrailCode": 4, + "maybe_restore_region_commit_frame": 2, + "SuccessRegionCode": 3, + "_FailureRegionCode": 1, + "SuccessRegionCode.": 1, + "commit_hijack_info": 2, + "commit_temp_frame": 3, + "commit_quarter_hijack": 3, + "commit_half_hijack": 3, + "commit_full_hijack": 3, + "SemiCommitInfo": 4, + "clone_resume_point": 1, + "NewResumePoint": 4, + "stack.push": 1, + "StackLabelConst": 7, + "UseMinimalModelStackCopyCut": 4, + "Components": 4, + "foreign_proc_raw_code": 4, + "cannot_branch_away": 4, + "proc_affects_liveness": 2, + "live_lvals_info": 4, + "proc_does_not_affect_liveness": 2, + "MD": 4, + "proc_may_duplicate": 2, + "MarkCode": 3, + "foreign_proc_code": 2, + "proc_will_not_call_mercury": 2, + "HijackCode": 5, + "UseMinimalModel": 3, + "CutCode": 4, + "SuccessUndoCode": 5, + "FailureUndoCode": 5, + "AfterCommit": 2, + "ResumePointCode": 2, + "FailCode": 2, + "RestoreTrailCode": 2, + "FailureRegionCode": 2, + "SuccLabel": 3, + "GotoSuccLabel": 2, + "SuccLabelCode": 1, + "SuccessCode": 2, + "FailureCode": 2, + "SuccLabelCode.": 1, + "_ForwardLiveVarsBeforeGoal": 1, + "store.": 1, + "typeclass": 1, + "store": 52, + "T": 52, + "where": 8, + "S": 133, + "instance": 4, + "io.state": 3, + "store.init": 2, + "generic_mutvar": 15, + "io_mutvar": 1, + "store_mutvar": 1, + "store.new_mutvar": 1, + "store.copy_mutvar": 1, + "store.get_mutvar": 1, + "store.set_mutvar": 1, + "<=>": 5, + "new_cyclic_mutvar": 2, + "Func": 4, + "Mutvar": 23, + "Create": 1, + "new": 25, + "variable": 1, + "whose": 2, + "initialized": 2, + "with": 5, + "returned": 1, + "from": 1, + "specified": 1, + "function": 3, + "The": 2, + "argument": 6, + "passed": 2, + "mutvar": 6, + "itself": 4, + "has": 4, + "yet": 1, + "been": 1, + "safe": 2, + "because": 1, + "does": 3, + "get": 2, + "so": 3, + "it": 1, + "can": 1, + "t": 5, + "examine": 1, + "uninitialized": 1, + "predicate": 1, + "useful": 1, + "creating": 1, + "self": 1, + "referential": 1, + "values": 1, + "such": 2, + "as": 5, + "circular": 1, + "linked": 1, + "lists": 1, + "For": 1, + "example": 1, + "clist": 2, + "node": 1, + "store.new_cyclic_mutvar": 1, + "generic_ref": 20, + "io_ref": 1, + "store_ref": 1, + "store.new_ref": 1, + "store.ref_functor": 1, + "store.arg_ref": 1, + "ArgT": 4, + "store.new_arg_ref": 3, + "store.set_ref": 1, + "store.set_ref_value": 1, + "store.copy_ref_value": 1, + "store.extract_ref_value": 1, + "Nasty": 1, + "performance": 2, + "hacks": 1, + "WARNING": 1, + "use": 1, + "of": 10, + "these": 1, + "procedures": 2, + "dangerous": 1, + "Use": 1, + "them": 1, + "last": 1, + "resort": 1, + "critical": 1, + "and": 6, + "shows": 1, + "that": 2, + "using": 1, + "versions": 1, + "bottleneck": 1, + "These": 1, + "may": 1, + "vanish": 1, + "future": 1, + "Mercury": 1, + "unsafe_arg_ref": 1, + "same": 2, + "arg_ref": 12, + "unsafe_new_arg_ref": 1, + "new_arg_ref": 1, + "except": 1, + "they": 4, + "doesn": 1, + "check": 1, + "errors": 1, + "don": 3, + "work": 3, + "no_tag": 1, + "types": 3, + "exactly": 2, + "one": 2, + "functor": 2, + "which": 2, + "arguments": 2, + "occupy": 1, + "word": 2, + "other": 1, + "functors.": 1, + "store.unsafe_arg_ref": 1, + "store.unsafe_new_arg_ref": 1, + "implementation": 1, + "require": 1, + "just": 1, + "real": 1, + "representation": 1, + "pragma": 41, + "foreign_type": 10, + "MR_Word": 24, + "can_pass_as_mercury_type": 5, + "equality": 5, + "store_equal": 7, + "comparison": 5, + "store_compare": 7, + "int32": 1, + "Java": 12, + "Erlang": 3, + "attempt": 2, + "two": 2, + "stores": 2, + "comparison_result": 1, + "compare": 1, + "Mutvars": 1, + "references": 1, + "are": 1, + "each": 1, + "represented": 1, + "pointer": 1, + "single": 1, + "on": 1, + "heap": 1, + "private_builtin.ref": 2, + "ref": 2, + "store.do_init": 6, + "foreign_proc": 28, + "_S0": 16, + "will_not_call_mercury": 28, + "will_not_modify_trail": 7, + "new_mutvar": 5, + "Val": 45, + "S0": 23, + "get_mutvar": 5, + "set_mutvar": 5, + "_S": 12, + "copy_mutvar": 1, + "Copy": 2, + "Value": 4, + "store.unsafe_new_uninitialized_mutvar": 1, + "unsafe_new_uninitialized_mutvar": 4, + "MR_offset_incr_hp_msg": 5, + "MR_SIZE_SLOT_SIZE": 10, + "1": 5, + "MR_ALLOC_ID": 5, + "2": 2, + "MR_define_size_slot": 5, + "0": 2, + "object": 21, + "MutVar": 4, + "Store": 5, + "apply": 1, + "Ref": 41, + "foreign_code": 2, + "public": 17, + "class": 4, + "Object": 9, + "referenced": 4, + "obj": 7, + "Specific": 2, + "field": 20, + "or": 2, + "null": 8, + "specify": 2, + "GetFields": 2, + "return": 6, + "fields": 3, + "any": 2, + "particular": 2, + "order": 2, + "really": 2, + "usable": 2, + "System": 1, + "Reflection": 1, + "FieldInfo": 1, + "Constructors": 2, + "init": 8, + "setField": 4, + "Set": 2, + "according": 2, + "given": 2, + "index": 2, + "void": 4, + "GetType": 1, + "reference": 4, + "getValue": 4, + "GetValue": 1, + "Update": 2, + "setValue": 2, + "SetValue": 1, + "static": 1, + "lang": 28, + "getDeclaredFields": 2, + "reflect": 1, + "Field": 5, + "try": 3, + "getClass": 1, + "catch": 11, + "SecurityException": 1, + "se": 1, + "throw": 11, + "RuntimeException": 11, + "Security": 1, + "manager": 1, + "denied": 1, + "access": 3, + "ArrayIndexOutOfBoundsException": 1, + "e": 13, + "No": 1, + "Exception": 3, + "Unable": 3, + "getMessage": 3, + "IllegalAccessException": 2, + "inaccessible": 2, + "IllegalArgumentException": 2, + "mismatch": 2, + "NullPointerException": 2, + "new_ref": 4, + "ets": 3, + "insert": 1, + "copy_ref_value": 1, + "unsafe_ref_value": 6, + "store.unsafe_ref_value": 1, + "lookup": 1, + "ref_functor": 1, + "canonicalize": 1, + "foreign_decl": 1, + "include": 4, + "mercury_type_info": 1, + "h": 4, + "mercury_heap": 1, + "mercury_misc": 1, + "MR_fatal_error": 5, + "mercury_deconstruct": 1, + "MR_arg": 3, + "ArgNum": 7, + "ArgRef": 22, + "may_not_duplicate": 1, + "MR_TypeInfo": 10, + "arg_type_info": 6, + "exp_arg_type_info": 6, + "MR_DuArgLocn": 2, + "arg_locn": 9, + "TypeInfo_for_T": 2, + "TypeInfo_for_ArgT": 2, + "MR_save_transient_registers": 2, + "MR_NONCANON_ABORT": 2, + "number": 2, + "range": 2, + "MR_compare_type_info": 2, + "MR_COMPARE_EQUAL": 2, + "wrong": 2, + "MR_restore_transient_registers": 2, + "NULL": 2, + "MR_arg_bits": 2, + "store.ref/2": 3, + "MR_arg_value": 2, + "C#": 6, + "store.Ref": 8, + "Ref.getValue": 6, + "*arg_ref": 1, + "*arg_locn": 1, + "&": 7, + "&&": 1, + "ValRef": 1, + "Ref.setValue": 3, + "ValRef.getValue": 2, + "*Ptr": 2, + "Ptr": 4, + "MR_strip_tag": 2, + "Arg": 6 + }, + "Perl6": { + "role": 10, + "q": 5, + "{": 29, + "token": 6, + "stopper": 2, + "MAIN": 1, + "quote": 1, + ")": 19, + "}": 27, + "backslash": 3, + "sym": 3, + "<\\\\>": 1, + "": 1, + "": 1, + "": 1, + "": 1, + ".": 1, + "method": 2, + "tweak_q": 1, + "(": 16, + "v": 2, + "self.panic": 2, + "tweak_qq": 1, + "qq": 5, + "does": 7, + "b1": 1, + "c1": 1, + "s1": 1, + "a1": 1, + "h1": 1, + "f1": 1, + "Too": 2, + "late": 2, + "for": 2, + "SHEBANG#!perl": 1, + "use": 1, + "v6": 1, + ";": 19, + "my": 10, + "string": 7, + "if": 1, + "eq": 1, + "say": 10, + "regex": 2, + "http": 1, + "-": 3, + "verb": 1, + "|": 9, + "#": 13, + "multi": 2, + "line": 5, + "comment": 2, + "I": 1, + "there": 1, + "m": 2, + "even": 1, + "specialer": 1, + "nesting": 1, + "work": 1, + "<": 3, + "trying": 1, + "mixed": 1, + "delimiters": 1, + "": 1, + "arbitrary": 2, + "delimiter": 2, + "Hooray": 1, + "": 1, + "with": 9, + "whitespace": 1, + "<<": 1, + "more": 1, + "strings": 1, + "%": 1, + "hash": 1, + "Hash.new": 1, + "begin": 1, + "pod": 1, + "Here": 1, + "t": 2, + "highlighted": 1, + "table": 1, + "Of": 1, + "things": 1, + "A": 3, + "single": 3, + "declarator": 7, + "a": 8, + "keyword": 7, + "like": 7, + "Another": 2, + "block": 2, + "brace": 1, + "More": 2, + "blocks": 2, + "don": 2, + "x": 2, + "foo": 3, + "Rob": 1, + "food": 1, + "match": 1, + "sub": 1, + "something": 1, + "Str": 1, + "D": 1, + "value": 1, + "...": 1, + "s": 1, + "some": 2, + "stuff": 1, + "chars": 1, + "/": 1, + "": 1, + "": 1, + "roleq": 1, + "pod_formatting_code": 1, + "": 1, + "<[A..Z]>": 1, + "*POD_IN_FORMATTINGCODE": 1, + "": 1, + "[": 1, + "": 1, + "N*": 1 + }, + "VHDL": { + "-": 2, + "VHDL": 1, + "example": 1, + "file": 1, + "library": 1, + "ieee": 1, + ";": 7, + "use": 1, + "ieee.std_logic_1164.all": 1, + "entity": 2, + "inverter": 2, + "is": 2, + "port": 1, + "(": 1, + "a": 2, + "in": 1, + "std_logic": 2, + "b": 2, + "out": 1, + ")": 1, + "end": 2, + "architecture": 2, + "rtl": 1, + "of": 1, + "begin": 1, + "<": 1, + "not": 1 + }, + "Literate CoffeeScript": { + "The": 2, + "**Scope**": 2, + "class": 2, + "regulates": 1, + "lexical": 1, + "scoping": 1, + "within": 2, + "CoffeeScript.": 1, + "As": 1, + "you": 2, + "generate": 1, + "code": 1, + "create": 1, + "a": 8, + "tree": 1, + "of": 4, + "scopes": 1, + "in": 2, + "the": 12, + "same": 1, + "shape": 1, + "as": 3, + "nested": 1, + "function": 2, + "bodies.": 1, + "Each": 1, + "scope": 2, + "knows": 1, + "about": 1, + "variables": 3, + "declared": 2, + "it": 4, + "and": 5, + "has": 1, + "reference": 3, + "to": 8, + "its": 3, + "parent": 2, + "enclosing": 1, + "scope.": 2, + "In": 1, + "this": 3, + "way": 1, + "we": 4, + "know": 1, + "which": 3, + "are": 3, + "new": 2, + "need": 2, + "be": 2, + "with": 3, + "var": 4, + "shared": 1, + "external": 1, + "scopes.": 1, + "Import": 1, + "helpers": 1, + "plan": 1, + "use.": 1, + "{": 4, + "extend": 1, + "last": 1, + "}": 4, + "require": 1, + "exports.Scope": 1, + "Scope": 1, + "root": 1, + "is": 3, + "top": 2, + "-": 5, + "level": 1, + "object": 1, + "for": 3, + "given": 1, + "file.": 1, + "@root": 1, + "null": 1, + "Initialize": 1, + "lookups": 1, + "up": 1, + "chain": 1, + "well": 1, + "**Block**": 1, + "node": 1, + "belongs": 2, + "where": 1, + "should": 1, + "declare": 1, + "that": 2, + "to.": 1, + "constructor": 1, + "(": 5, + "@parent": 2, + "@expressions": 1, + "@method": 1, + ")": 6, + "@variables": 3, + "[": 4, + "name": 8, + "type": 5, + "]": 4, + "@positions": 4, + "Scope.root": 1, + "unless": 1, + "Adds": 1, + "variable": 1, + "or": 1, + "overrides": 1, + "an": 1, + "existing": 1, + "one.": 1, + "add": 1, + "immediate": 3, + "return": 1, + "@parent.add": 1, + "if": 2, + "@shared": 1, + "not": 1, + "Object": 1, + "hasOwnProperty.call": 1, + ".type": 1, + "else": 2, + "@variables.push": 1, + "When": 1, + "super": 1, + "called": 1, + "find": 1, + "current": 1, + "method": 1, + "param": 1, + "_": 3, + "then": 1, + "tempVars": 1, + "realVars": 1, + ".push": 1, + "v.name": 1, + "realVars.sort": 1, + ".concat": 1, + "tempVars.sort": 1, + "Return": 1, + "list": 1, + "assignments": 1, + "supposed": 1, + "made": 1, + "at": 1, + "assignedVariables": 1, + "v": 1, + "when": 1, + "v.type.assigned": 1 + }, + "KRL": { + "ruleset": 1, + "sample": 1, + "{": 3, + "meta": 1, + "name": 1, + "description": 1, + "<<": 1, + "Hello": 1, + "world": 1, + "author": 1, + "}": 3, + "rule": 1, + "hello": 1, + "select": 1, + "when": 1, + "web": 1, + "pageview": 1, + "notify": 1, + "(": 1, + ")": 1, + ";": 1 + }, + "Nimrod": { + "echo": 1 + }, + "Pascal": { + "program": 1, + "gmail": 1, + ";": 6, + "uses": 1, + "Forms": 1, + "Unit2": 1, + "in": 1, + "{": 2, + "Form2": 2, + "}": 2, + "R": 1, + "*.res": 1, + "begin": 1, + "Application.Initialize": 1, + "Application.MainFormOnTaskbar": 1, + "True": 1, + "Application.CreateForm": 1, + "(": 1, + "TForm2": 1, + ")": 1, + "Application.Run": 1, + "end.": 1 + }, + "C#": { + "using": 5, + "System": 1, + ";": 8, + "System.Collections.Generic": 1, + "System.Linq": 1, + "System.Text": 1, + "System.Threading.Tasks": 1, + "namespace": 1, + "LittleSampleApp": 1, + "{": 5, + "///": 4, + "

": 1, + "Just": 1, + "what": 1, + "it": 2, + "says": 1, + "on": 1, + "the": 5, + "tin.": 1, + "A": 1, + "little": 1, + "sample": 1, + "application": 1, + "for": 4, + "Linguist": 1, + "to": 4, + "try": 1, + "out.": 1, + "": 1, + "class": 1, + "Program": 1, + "static": 1, + "void": 1, + "Main": 1, + "(": 3, + "string": 1, + "[": 1, + "]": 1, + "args": 1, + ")": 3, + "Console.WriteLine": 2, + "}": 5, + "@": 1, + "ViewBag.Title": 1, + "@section": 1, + "featured": 1, + "
": 1, + "class=": 7, + "
": 1, + "
": 1, + "

": 1, + "@ViewBag.Title.": 1, + "

": 1, + "

": 1, + "@ViewBag.Message": 1, + "

": 1, + "
": 1, + "

": 1, + "To": 1, + "learn": 1, + "more": 4, + "about": 2, + "ASP.NET": 5, + "MVC": 4, + "visit": 2, + "": 5, + "href=": 5, + "title=": 2, + "http": 1, + "//asp.net/mvc": 1, + "": 5, + ".": 2, + "The": 1, + "page": 1, + "features": 3, + "": 1, + "videos": 1, + "tutorials": 1, + "and": 6, + "samples": 1, + "": 1, + "help": 1, + "you": 4, + "get": 1, + "most": 1, + "from": 1, + "MVC.": 1, + "If": 1, + "have": 1, + "any": 1, + "questions": 1, + "our": 1, + "forums": 1, + "

": 1, + "
": 1, + "
": 1, + "

": 1, + "We": 1, + "suggest": 1, + "following": 1, + "

": 1, + "
    ": 1, + "
  1. ": 3, + "
    ": 3, + "Getting": 1, + "Started": 1, + "
    ": 3, + "gives": 2, + "a": 3, + "powerful": 1, + "patterns": 1, + "-": 3, + "based": 1, + "way": 1, + "build": 1, + "dynamic": 1, + "websites": 1, + "that": 5, + "enables": 1, + "clean": 1, + "separation": 1, + "of": 2, + "concerns": 1, + "full": 1, + "control": 1, + "over": 1, + "markup": 1, + "enjoyable": 1, + "agile": 1, + "development.": 1, + "includes": 1, + "many": 1, + "enable": 1, + "fast": 1, + "TDD": 1, + "friendly": 1, + "development": 1, + "creating": 1, + "sophisticated": 1, + "applications": 1, + "use": 1, + "latest": 1, + "web": 2, + "standards.": 1, + "Learn": 3, + "
  2. ": 3, + "Add": 1, + "NuGet": 2, + "packages": 1, + "jump": 1, + "start": 1, + "your": 2, + "coding": 1, + "makes": 1, + "easy": 1, + "install": 1, + "update": 1, + "free": 1, + "libraries": 1, + "tools.": 1, + "Find": 1, + "Web": 1, + "Hosting": 1, + "You": 1, + "can": 1, + "easily": 1, + "find": 1, + "hosting": 1, + "company": 1, + "offers": 1, + "right": 1, + "mix": 1, + "price": 1, + "applications.": 1, + "
": 1 + }, + "Groovy Server Pages": { + "<%@>": 1, + "page": 2, + "contentType=": 1, + "": 4, + "": 4, + "": 4, + "Using": 1, + "directive": 1, + "tag": 1, + "": 4, + "": 4, + "": 4, + "": 2, + "Print": 1, + "": 4, + "": 4, + "": 4, + "http": 3, + "equiv=": 3, + "content=": 4, + "Testing": 3, + "with": 3, + "Resources": 2, + "": 2, + "module=": 2, + "SiteMesh": 2, + "and": 2, + "name=": 1, + "{": 1, + "example": 1, + "}": 1 + }, + "GAMS": { + "*Basic": 1, + "example": 2, + "of": 7, + "transport": 5, + "model": 6, + "from": 2, + "GAMS": 5, + "library": 3, + "Title": 1, + "A": 3, + "Transportation": 1, + "Problem": 1, + "(": 22, + "TRNSPORT": 1, + "SEQ": 1, + ")": 22, + "Ontext": 1, + "This": 2, + "problem": 1, + "finds": 1, + "a": 3, + "least": 1, + "cost": 4, + "shipping": 1, + "schedule": 1, + "that": 1, + "meets": 1, + "requirements": 1, + "at": 5, + "markets": 2, + "and": 2, + "supplies": 1, + "factories.": 1, + "Dantzig": 1, + "G": 1, + "B": 1, + "Chapter": 2, + "In": 2, + "Linear": 1, + "Programming": 1, + "Extensions.": 1, + "Princeton": 2, + "University": 1, + "Press": 2, + "New": 1, + "Jersey": 1, + "formulation": 1, + "is": 1, + "described": 1, + "in": 10, + "detail": 1, + "Rosenthal": 1, + "R": 1, + "E": 1, + "Tutorial.": 1, + "User": 1, + "s": 1, + "Guide.": 1, + "The": 2, + "Scientific": 1, + "Redwood": 1, + "City": 1, + "California": 1, + "line": 1, + "numbers": 1, + "will": 1, + "not": 1, + "match": 1, + "those": 1, + "the": 1, + "book": 1, + "because": 1, + "these": 1, + "comments.": 1, + "Offtext": 1, + "Sets": 1, + "i": 18, + "canning": 1, + "plants": 1, + "/": 9, + "seattle": 3, + "san": 3, + "-": 6, + "diego": 3, + "j": 18, + "new": 3, + "york": 3, + "chicago": 3, + "topeka": 3, + ";": 15, + "Parameters": 1, + "capacity": 1, + "plant": 2, + "cases": 3, + "b": 2, + "demand": 4, + "market": 2, + "Table": 1, + "d": 2, + "distance": 1, + "thousands": 3, + "miles": 2, + "Scalar": 1, + "f": 2, + "freight": 1, + "dollars": 3, + "per": 3, + "case": 2, + "thousand": 1, + "/90/": 1, + "Parameter": 1, + "c": 3, + "*": 1, + "Variables": 1, + "x": 4, + "shipment": 1, + "quantities": 1, + "z": 3, + "total": 1, + "transportation": 1, + "costs": 1, + "Positive": 1, + "Variable": 1, + "Equations": 1, + "define": 1, + "objective": 1, + "function": 1, + "supply": 3, + "observe": 1, + "limit": 1, + "satisfy": 1, + "..": 3, + "e": 1, + "sum": 3, + "*x": 1, + "l": 1, + "g": 1, + "Model": 1, + "/all/": 1, + "Solve": 1, + "using": 1, + "lp": 1, + "minimizing": 1, + "Display": 1, + "x.l": 1, + "x.m": 1, + "ontext": 1, + "#user": 1, + "stuff": 1, + "Main": 1, + "topic": 1, + "Basic": 2, + "Featured": 4, + "item": 4, + "Trnsport": 1, + "Description": 1, + "offtext": 1 +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method + }, + "COBOL": { + "IDENTIFICATION": 2, + "DIVISION.": 4, + "PROGRAM": 2, + "-": 19, + "ID.": 2, + "hello.": 3, + "PROCEDURE": 2, + "DISPLAY": 2, + ".": 3, + "STOP": 2, + "RUN.": 2, + "COBOL": 7, + "TEST": 2, + "RECORD.": 1, + "USAGES.": 1, + "COMP": 5, + "PIC": 5, + "S9": 4, + "(": 5, + ")": 5, + "COMP.": 3, + "COMP2": 2, + "program": 1, + "id.": 1, + "procedure": 1, + "division.": 1, + "display": 1, + "stop": 1, + "run.": 1 + }, + "Cuda": { + "__global__": 2, + "void": 3, + "scalarProdGPU": 1, + "(": 20, + "float": 8, + "*d_C": 1, + "*d_A": 1, + "*d_B": 1, + "int": 14, + "vectorN": 2, + "elementN": 3, + ")": 20, + "{": 8, + "//Accumulators": 1, + "cache": 1, + "__shared__": 1, + "accumResult": 5, + "[": 11, + "ACCUM_N": 4, + "]": 11, + ";": 30, + "////////////////////////////////////////////////////////////////////////////": 2, + "for": 5, + "vec": 5, + "blockIdx.x": 2, + "<": 5, "+": 12, +<<<<<<< HEAD "names": 3, "for": 8, "len": 11, @@ -53262,6 +75554,3276 @@ "trylock": 1, "write_oob": 1, "@endignore": 1 +======= + "gridDim.x": 1, + "vectorBase": 3, + "IMUL": 1, + "vectorEnd": 2, + "////////////////////////////////////////////////////////////////////////": 4, + "iAccum": 10, + "threadIdx.x": 4, + "blockDim.x": 3, + "sum": 3, + "pos": 5, + "d_A": 2, + "*": 2, + "d_B": 2, + "}": 8, + "stride": 5, + "/": 2, + "__syncthreads": 1, + "if": 3, + "d_C": 2, + "#include": 2, + "": 1, + "": 1, + "vectorAdd": 2, + "const": 2, + "*A": 1, + "*B": 1, + "*C": 1, + "numElements": 4, + "i": 5, + "C": 1, + "A": 1, + "B": 1, + "main": 1, + "cudaError_t": 1, + "err": 5, + "cudaSuccess": 2, + "threadsPerBlock": 4, + "blocksPerGrid": 1, + "-": 1, + "<<": 1, + "": 1, + "cudaGetLastError": 1, + "fprintf": 1, + "stderr": 1, + "cudaGetErrorString": 1, + "exit": 1, + "EXIT_FAILURE": 1, + "cudaDeviceReset": 1, + "return": 1 + }, + "Gosu": { + "function": 11, + "hello": 1, + "(": 53, + ")": 54, + "{": 28, + "print": 3, + "}": 28, + "<%!-->": 1, + "defined": 1, + "in": 3, + "Hello": 2, + "gst": 1, + "<": 1, + "%": 2, + "@": 1, + "params": 1, + "users": 2, + "Collection": 1, + "": 1, + "<%>": 2, + "for": 2, + "user": 1, + "user.LastName": 1, + "user.FirstName": 1, + "user.Department": 1, + "package": 2, + "example": 2, + "uses": 2, + "java.util.*": 1, + "java.io.File": 1, + "class": 1, + "Person": 7, + "extends": 1, + "Contact": 1, + "implements": 1, + "IEmailable": 2, + "var": 10, + "_name": 4, + "String": 6, + "_age": 3, + "Integer": 3, + "as": 3, + "Age": 1, + "_relationship": 2, + "Relationship": 3, + "readonly": 1, + "RelationshipOfPerson": 1, + "delegate": 1, + "_emailHelper": 2, + "represents": 1, + "enum": 1, + "FRIEND": 1, + "FAMILY": 1, + "BUSINESS_CONTACT": 1, + "static": 7, + "ALL_PEOPLE": 2, + "new": 6, + "HashMap": 1, + "": 1, + "construct": 1, + "name": 4, + "age": 4, + "relationship": 2, + "EmailHelper": 1, + "this": 1, + "property": 2, + "get": 1, + "Name": 3, + "return": 4, + "set": 1, + "override": 1, + "getEmailName": 1, + "incrementAge": 1, + "+": 2, + "@Deprecated": 1, + "printPersonInfo": 1, + "addPerson": 4, + "p": 5, + "if": 4, + "ALL_PEOPLE.containsKey": 2, + ".Name": 1, + "throw": 1, + "IllegalArgumentException": 1, + "[": 4, + "p.Name": 2, + "]": 4, + "addAllPeople": 1, + "contacts": 2, + "List": 1, + "": 1, + "contact": 3, + "typeis": 1, + "and": 1, + "not": 1, + "contact.Name": 1, + "getAllPeopleOlderThanNOrderedByName": 1, + "int": 2, + "allPeople": 1, + "ALL_PEOPLE.Values": 3, + "allPeople.where": 1, + "-": 3, + "p.Age": 1, + ".orderBy": 1, + "loadPersonFromDB": 1, + "id": 1, + "using": 2, + "conn": 1, + "DBConnectionManager.getConnection": 1, + "stmt": 1, + "conn.prepareStatement": 1, + "stmt.setInt": 1, + "result": 1, + "stmt.executeQuery": 1, + "result.next": 1, + "result.getString": 2, + "result.getInt": 1, + "Relationship.valueOf": 2, + "loadFromFile": 1, + "file": 3, + "File": 2, + "file.eachLine": 1, + "line": 1, + "line.HasContent": 1, + "line.toPerson": 1, + "saveToFile": 1, + "writer": 2, + "FileWriter": 1, + "PersonCSVTemplate.renderToString": 1, + "PersonCSVTemplate.render": 1, + "enhancement": 1, + "toPerson": 1, + "vals": 4, + "this.split": 1 + }, + "Prolog": { + "-": 52, + "lib": 1, + "(": 49, + "ic": 1, + ")": 49, + ".": 25, + "vabs": 2, + "Val": 8, + "AbsVal": 10, + "#": 9, + ";": 1, + "labeling": 2, + "[": 21, + "]": 21, + "vabsIC": 1, + "or": 1, + "faitListe": 3, + "_": 2, + "First": 2, + "|": 12, + "Rest": 6, + "Taille": 2, + "Min": 2, + "Max": 2, + "Min..Max": 1, + "Taille1": 2, + "suite": 3, + "Xi": 5, + "Xi1": 7, + "Xi2": 7, + "checkRelation": 3, + "VabsXi1": 2, + "Xi.": 1, + "checkPeriode": 3, + "ListVar": 2, + "length": 1, + "Length": 2, + "<": 1, + "X1": 2, + "X2": 2, + "X3": 2, + "X4": 2, + "X5": 2, + "X6": 2, + "X7": 2, + "X8": 2, + "X9": 2, + "X10": 3, + "turing": 1, + "Tape0": 2, + "Tape": 2, + "perform": 4, + "q0": 1, + "Ls": 12, + "Rs": 16, + "reverse": 1, + "Ls1": 4, + "append": 1, + "qf": 1, + "Q0": 2, + "Ls0": 6, + "Rs0": 6, + "symbol": 3, + "Sym": 6, + "RsRest": 2, + "once": 1, + "rule": 1, + "Q1": 2, + "NewSym": 2, + "Action": 2, + "action": 4, + "Rs1": 2, + "b": 2, + "left": 4, + "stay": 1, + "right": 1, + "L": 2, + "male": 3, + "john": 2, + "peter": 3, + "female": 2, + "vick": 2, + "christie": 3, + "parents": 4, + "brother": 1, + "X": 3, + "Y": 2, + "F": 2, + "M": 2 + }, + "Tcl": { + "#": 7, + "package": 2, + "require": 2, + "Tcl": 2, + "namespace": 6, + "eval": 2, + "stream": 61, + "{": 148, + "export": 3, + "[": 76, + "a": 1, + "-": 5, + "z": 1, + "]": 76, + "*": 19, + "}": 148, + "ensemble": 1, + "create": 7, + "proc": 28, + "first": 24, + "restCmdPrefix": 2, + "return": 22, + "list": 18, + "lassign": 11, + "foldl": 1, + "cmdPrefix": 19, + "initialValue": 7, + "args": 13, + "set": 34, + "numStreams": 3, + "llength": 5, + "if": 14, + "FoldlSingleStream": 2, + "lindex": 5, + "elseif": 3, + "FoldlMultiStream": 2, + "else": 5, + "Usage": 4, + "foreach": 5, + "numArgs": 7, + "varName": 7, + "body": 8, + "ForeachSingleStream": 2, + "(": 11, + ")": 11, + "&&": 2, + "%": 1, + "end": 2, + "items": 5, + "lrange": 1, + "ForeachMultiStream": 2, + "fromList": 2, + "_list": 4, + "index": 4, + "expr": 4, + "+": 1, + "isEmpty": 10, + "map": 1, + "MapSingleStream": 3, + "MapMultiStream": 3, + "rest": 22, + "select": 2, + "while": 6, + "take": 2, + "num": 3, + "||": 1, + "<": 1, + "toList": 1, + "res": 10, + "lappend": 8, + "#################################": 2, + "acc": 9, + "streams": 5, + "firsts": 6, + "restStreams": 6, + "uplevel": 4, + "nextItems": 4, + "msg": 1, + "code": 1, + "error": 1, + "level": 1, + "XDG": 11, + "variable": 4, + "DEFAULTS": 8, + "DATA_HOME": 4, + "CONFIG_HOME": 4, + "CACHE_HOME": 4, + "RUNTIME_DIR": 3, + "DATA_DIRS": 4, + "CONFIG_DIRS": 4, + "SetDefaults": 3, + "ne": 2, + "file": 9, + "join": 9, + "env": 8, + "HOME": 3, + ".local": 1, + "share": 3, + ".config": 1, + ".cache": 1, + "/usr": 2, + "local": 1, + "/etc": 1, + "xdg": 1, + "XDGVarSet": 4, + "var": 11, + "info": 1, + "exists": 1, + "XDG_": 4, + "Dir": 4, + "subdir": 16, + "dir": 5, + "dict": 2, + "get": 2, + "Dirs": 3, + "rawDirs": 3, + "split": 1, + "outDirs": 3, + "XDG_RUNTIME_DIR": 1 + }, + "Squirrel": { + "//example": 1, + "from": 1, + "http": 1, + "//www.squirrel": 1, + "-": 1, + "lang.org/#documentation": 1, + "local": 3, + "table": 1, + "{": 10, + "a": 2, + "subtable": 1, + "array": 3, + "[": 3, + "]": 3, + "}": 10, + "+": 2, + "b": 1, + ";": 15, + "foreach": 1, + "(": 10, + "i": 1, + "val": 2, + "in": 1, + ")": 10, + "print": 2, + "typeof": 1, + "/////////////////////////////////////////////": 1, + "class": 2, + "Entity": 3, + "constructor": 2, + "etype": 2, + "entityname": 4, + "name": 2, + "type": 2, + "x": 2, + "y": 2, + "z": 2, + "null": 2, + "function": 2, + "MoveTo": 1, + "newx": 2, + "newy": 2, + "newz": 2, + "Player": 2, + "extends": 1, + "base.constructor": 1, + "DoDomething": 1, + "newplayer": 1, + "newplayer.MoveTo": 1 + }, + "YAML": { + "-": 25, + "http_interactions": 1, + "request": 1, + "method": 1, + "get": 1, + "uri": 1, + "http": 1, + "//example.com/": 1, + "body": 3, + "headers": 2, + "{": 1, + "}": 1, + "response": 2, + "status": 1, + "code": 1, + "message": 1, + "OK": 1, + "Content": 2, + "Type": 1, + "text/html": 1, + ";": 1, + "charset": 1, + "utf": 1, + "Length": 1, + "This": 1, + "is": 1, + "the": 1, + "http_version": 1, + "recorded_at": 1, + "Tue": 1, + "Nov": 1, + "GMT": 1, + "recorded_with": 1, + "VCR": 1, + "gem": 1, + "local": 1, + "gen": 1, + "rdoc": 2, + "run": 1, + "tests": 1, + "inline": 1, + "source": 1, + "line": 1, + "numbers": 1, + "gempath": 1, + "/usr/local/rubygems": 1, + "/home/gavin/.rubygems": 1 + }, + "Clojure": { + "(": 83, + "defprotocol": 1, + "ISound": 4, + "sound": 5, + "[": 41, + "]": 41, + ")": 84, + "deftype": 2, + "Cat": 1, + "_": 3, + "Dog": 1, + "extend": 1, + "-": 14, + "type": 2, + "default": 1, + ";": 8, + "clj": 1, + "ns": 2, + "c2.svg": 2, + "use": 2, + "c2.core": 2, + "only": 4, + "unify": 2, + "c2.maths": 2, + "Pi": 2, + "Tau": 2, + "radians": 2, + "per": 2, + "degree": 2, + "sin": 2, + "cos": 2, + "mean": 2, + "cljs": 3, + "require": 1, + "c2.dom": 1, + "as": 1, + "dom": 1, + "Stub": 1, + "for": 2, + "float": 2, + "fn": 2, + "which": 1, + "does": 1, + "not": 3, + "exist": 1, + "on": 1, + "runtime": 1, + "def": 1, + "identity": 1, + "defn": 4, + "xy": 1, + "coordinates": 7, + "cond": 1, + "and": 1, + "vector": 1, + "count": 3, + "map": 2, + "x": 6, + "y": 1, + "into": 2, + "array": 3, + "aseq": 8, + "nil": 1, + "let": 1, + "n": 9, + "a": 3, + "make": 1, + "loop": 1, + "seq": 1, + "i": 4, + "if": 1, + "<": 1, + "do": 1, + "aset": 1, + "first": 2, + "recur": 1, + "next": 1, + "inc": 1, + "prime": 2, + "any": 1, + "zero": 1, + "#": 1, + "rem": 2, + "%": 1, + "range": 3, + "while": 3, + "stops": 1, + "at": 1, + "the": 1, + "collection": 1, + "element": 1, + "that": 1, + "evaluates": 1, + "to": 1, + "false": 2, + "like": 1, + "take": 1, + "rand": 2, + "scm*": 1, + "random": 1, + "real": 1, + "html": 1, + "head": 1, + "meta": 1, + "{": 8, + "charset": 1, + "}": 8, + "link": 1, + "rel": 1, + "href": 1, + "script": 1, + "src": 1, + "body": 1, + "div.nav": 1, + "p": 1, + "deftest": 1, + "function": 1, + "tests": 1, + "is": 7, + "true": 2, + "contains": 1, + "foo": 6, + "bar": 4, + "select": 1, + "keys": 2, + "baz": 4, + "vals": 1, + "filter": 1 + }, + "Tea": { + "<%>": 1, + "template": 1, + "foo": 1 + }, + "VimL": { + "set": 7, + "nocompatible": 1, + "ignorecase": 1, + "incsearch": 1, + "smartcase": 1, + "showmatch": 1, + "showcmd": 1, + "syntax": 1, + "on": 1, + "no": 1, + "toolbar": 1, + "guioptions": 1, + "-": 1, + "T": 1 + }, + "M": { + ";": 1309, + "GT.M": 30, + "Digest": 2, + "Extension": 9, + "Copyright": 12, + "(": 2144, + "C": 9, + ")": 2152, + "Piotr": 7, + "Koper": 7, + "": 7, + "This": 26, + "program": 19, + "is": 88, + "free": 15, + "software": 12, + "you": 17, + "can": 20, + "redistribute": 11, + "it": 45, + "and/or": 11, + "modify": 11, + "under": 14, + "the": 223, + "terms": 11, + "of": 84, + "GNU": 33, + "Affero": 33, + "General": 33, + "Public": 33, + "License": 48, + "as": 23, + "published": 11, + "by": 35, + "Free": 11, + "Software": 11, + "Foundation": 11, + "either": 13, + "version": 16, + "or": 50, + "at": 21, + "your": 16, + "option": 12, + "any": 16, + "later": 11, + "version.": 11, + "distributed": 13, + "in": 80, + "hope": 11, + "that": 19, + "will": 23, + "be": 35, + "useful": 11, + "but": 19, + "WITHOUT": 12, + "ANY": 12, + "WARRANTY": 11, + "without": 11, + "even": 12, + "implied": 11, + "warranty": 11, + "MERCHANTABILITY": 11, + "FITNESS": 11, + "FOR": 15, + "A": 12, + "PARTICULAR": 11, + "PURPOSE.": 11, + "See": 15, + "for": 77, + "more": 13, + "details.": 12, + "You": 13, + "should": 16, + "have": 21, + "received": 11, + "a": 130, + "copy": 13, + "along": 11, + "with": 45, + "this": 39, + "program.": 9, + "If": 14, + "not": 39, + "see": 26, + "": 11, + ".": 815, + "trademark": 2, + "Fidelity": 2, + "Information": 2, + "Services": 2, + "Inc.": 2, + "-": 1605, + "http": 13, + "//sourceforge.net/projects/fis": 2, + "gtm/": 2, + "simple": 2, + "OpenSSL": 3, + "based": 1, + "digest": 19, + "extension": 3, + "rewrite": 1, + "EVP_DigestInit": 1, + "usage": 3, + "example": 5, + "additional": 5, + "M": 24, + "wrapper.": 1, + "//www.openssl.org/docs/crypto/EVP_DigestInit.html": 1, + "The": 11, + "return": 7, + "value": 72, + "from": 16, + "&": 28, + "digest.init": 3, + "usually": 1, + "when": 11, + "an": 14, + "invalid": 4, + "algorithm": 1, + "was": 5, + "specification.": 1, + "Anyway": 1, + "properly": 1, + "used": 6, + "never": 4, + "fail.": 1, + "Please": 2, + "feel": 2, + "to": 74, + "contact": 2, + "me": 2, + "if": 44, + "questions": 2, + "comments": 5, + "m": 37, + "returns": 7, + "ASCII": 2, + "HEX": 1, + "all": 8, + "one": 5, + "n": 197, + "c": 113, + "d": 381, + "s": 775, + "digest.update": 2, + ".c": 2, + ".m": 11, + "digest.final": 2, + ".d": 1, + "q": 244, + "init": 6, + "alg": 3, + "context": 1, + "handler": 9, + "try": 1, + "etc": 1, + "returned": 1, + "error": 62, + "occurs": 1, + "e.g.": 2, + "unknown": 1, + "update": 1, + "ctx": 4, + "msg": 6, + "updates": 1, + "message": 8, + ".ctx": 2, + ".msg": 1, + "final": 1, + "hex": 1, + "encoded": 8, + "frees": 1, + "memory": 1, + "allocated": 1, + "also": 4, + ".digest": 1, + "algorithms": 1, + "availability": 1, + "depends": 1, + "on": 17, + "libcrypto": 1, + "configuration": 1, + "md4": 1, + "md5": 2, + "sha": 1, + "sha1": 1, + "sha224": 1, + "sha256": 1, + "sha512": 1, + "dss1": 1, + "ripemd160": 1, + "code": 29, + "examples": 4, + "contrasting": 1, + "postconditionals": 1, + "IF": 9, + "commands": 1, + "post1": 1, + "postconditional": 3, + "set": 98, + "command": 11, + "b": 64, + "I": 43, + "purposely": 4, + "TEST": 16, + "false": 5, + "write": 59, + "<": 20, + "quit": 30, + "post2": 1, + "": 3, + "variable": 8, + "a=": 3, + "smaller": 3, + "than": 4, + "b=": 4, + "special": 2, + "after": 3, + "post": 1, + "condition": 1, + "if1": 2, + "if2": 2, + "start": 26, + "exercise": 1, + "car": 14, + "@": 8, + "part": 3, + "Keith": 1, + "Lynch": 1, + "p#f": 1, + "w": 127, + "p": 84, + "x": 96, + "+": 189, + "*8": 2, + "ZDIOUT1": 1, + "Experimental": 1, + "FileMan": 1, + "file": 10, + "output": 49, + "host": 2, + "Open": 1, + "Source": 1, + "Electronic": 1, + "Health": 1, + "Record": 1, + "Agent": 1, + "Licensed": 1, + "Apache": 1, + "Version": 1, + "may": 3, + "use": 5, + "except": 1, + "compliance": 1, + "License.": 2, + "obtain": 2, + "//www.apache.org/licenses/LICENSE": 1, + "Unless": 1, + "required": 4, + "applicable": 1, + "law": 1, + "agreed": 1, + "writing": 4, + "BASIS": 1, + "WARRANTIES": 1, + "OR": 2, + "CONDITIONS": 1, + "OF": 2, + "KIND": 1, + "express": 1, + "implied.": 1, + "specific": 3, + "language": 6, + "governing": 1, + "permissions": 2, + "and": 59, + "limitations": 1, + "N": 19, + "W": 4, + "D": 64, + "ASKFILE": 1, + "Q": 58, + "FILE": 5, + "[": 54, + "ASKDIR": 1, + "DIR": 3, + "SAVEFILE": 2, + "Save": 1, + "given": 1, + "directory": 1, + "CHECK": 1, + "FGR": 4, + "_FILE": 1, + "S": 99, + "IO": 4, + "DIR_": 1, + "P": 68, + "E": 12, + "L": 1, + "_": 127, + "FILENAME": 1, + "O": 24, + "U": 14, + "_IO_": 1, + "_P_": 1, + "NM": 1, + "contains": 2, + "non": 1, + "printing": 1, + "characters": 8, + "then": 2, + "must": 8, + "escaped": 1, + "evaluation": 1, + "RHS": 1, + "SET.": 1, + "TODO": 1, + "Caller": 1, + "define": 2, + "indentation": 1, + "level": 5, + "comment": 4, + "first": 10, + "character": 5, + "tab": 1, + "space.": 1, + "V": 2, + "%": 207, + "zewdDemo": 1, + "Tutorial": 1, + "page": 12, + "functions": 4, + "Product": 2, + "Enterprise": 5, + "Web": 5, + "Developer": 5, + "Build": 6, + "Date": 2, + "Wed": 1, + "Apr": 1, + "|": 171, + "m_apache": 3, + "M/Gateway": 4, + "Developments": 4, + "Ltd": 4, + "Reigate": 4, + "Surrey": 4, + "UK.": 4, + "All": 4, + "rights": 4, + "reserved.": 4, + "//www.mgateway.com": 4, + "Email": 4, + "rtweed@mgateway.com": 4, + "getLanguage": 1, + "sessid": 146, + "getRequestValue": 1, + "zewdAPI": 52, + "setSessionValue": 6, + "QUIT": 251, + "login": 1, + "username": 8, + "password": 8, + "getTextValue": 4, + "getPasswordValue": 2, + "trace": 24, + "_username_": 1, + "_password": 1, + "i": 465, + "logine": 1, + "textid": 1, + "errorMessage": 1, + "ewdDemo": 8, + "clearList": 2, + "appendToList": 4, + "user": 27, + "f": 93, + "o": 51, + "addUsername": 1, + "newUsername": 5, + "newUsername_": 1, + "setTextValue": 4, + "testValue": 1, + "pass": 24, + "getSelectValue": 3, + "_user": 1, + "getPassword": 1, + "g": 228, + "setPassword": 1, + "getObjDetails": 1, + "data": 43, + "_user_": 1, + "_data": 2, + "setRadioOn": 2, + "initialiseCheckbox": 2, + "setCheckboxOn": 3, + "createLanguageList": 1, + "setMultipleSelectOn": 2, + "clearTextArea": 2, + "textarea": 2, + "createTextArea": 1, + ".textarea": 1, + "userType": 4, + "selected": 4, + "setMultipleSelectValues": 1, + ".selected": 1, + "testField3": 3, + ".value": 1, + "testField2": 1, + "field3": 1, + "null": 6, + "dateTime": 1, + "compute": 2, + "miles": 4, + "gallons": 4, + "miles/gallons": 1, + "computepesimist": 1, + "miles/": 1, + "computeoptimist": 1, + "/gallons": 1, + "PRCAAPR": 1, + "WASH": 1, + "ISC@ALTOONA": 1, + "PA/RGY": 1, + "PATIENT": 5, + "ACCOUNT": 1, + "PROFILE": 1, + "CONT": 1, + "/9/94": 1, + "AM": 1, + "Accounts": 1, + "Receivable": 1, + "**198": 1, + "**": 4, + "Mar": 1, + "Per": 1, + "VHA": 1, + "Directive": 1, + "routine": 6, + "modified.": 1, + "EN": 2, + "PRCATY": 2, + "NEW": 3, + "DIC": 6, + "X": 19, + "Y": 26, + "DEBT": 10, + "PRCADB": 5, + "DA": 4, + "PRCA": 14, + "COUNT": 2, + "OUT": 2, + "SEL": 1, + "BILL": 11, + "BAT": 8, + "TRAN": 5, + "DR": 4, + "DXS": 1, + "DTOUT": 2, + "DIROUT": 1, + "DIRUT": 1, + "DUOUT": 1, + "ASK": 3, + "DPTNOFZY": 2, + "DPTNOFZK": 2, + "K": 5, + "R": 2, + "DTIME": 1, + "G": 40, + "UPPER": 1, + "VALM1": 1, + "RCD": 1, + "DISV": 2, + "DUZ": 3, + "NAM": 1, + "RCFN01": 1, + "COMP": 2, + "EN1": 1, + "PRCAATR": 1, + "Y_": 3, + "PRCADB_": 1, + "HDR": 1, + "PRCAAPR1": 3, + "HDR2": 1, + "DIS": 1, + "STAT1": 2, + "F": 10, + "_PRCATY_": 1, + "COMP1": 2, + "RCY": 5, + "]": 15, + "COMP2": 2, + "STAT": 8, + "_STAT_": 1, + "TMP": 26, + "J": 38, + "_STAT": 1, + "Compile": 2, + "payments": 1, + "_TRAN": 1, + "zmwire": 53, + "M/Wire": 4, + "Protocol": 2, + "Systems": 1, + "eg": 3, + "Cache": 3, + "By": 1, + "default": 6, + "server": 1, + "runs": 2, + "port": 4, + "For": 3, + "systems": 3, + "invoked": 2, + "via": 2, + "xinetd": 2, + "Edit": 1, + "/etc/services": 1, + "add": 5, + "line": 14, + "mwire": 2, + "/tcp": 1, + "#": 1, + "Service": 1, + "Copy": 2, + "/etc/xinetd.d/mwire": 1, + "/usr/local/gtm/zmwire": 1, + "change": 6, + "its": 1, + "executable": 1, + "These": 2, + "files": 4, + "edited": 1, + "paths": 2, + "number": 5, + "Restart": 1, + "using": 4, + "sudo": 1, + "/etc/init.d/xinetd": 1, + "restart": 3, + "On": 1, + "installed": 1, + "MGWSI": 1, + "order": 11, + "provide": 1, + "MD5": 6, + "hashing": 1, + "function": 6, + "passwords": 1, + "Alternatively": 1, + "substitute": 1, + "callout": 1, + "choice": 1, + "Daemon": 2, + "which": 4, + "running": 1, + "jobbed": 1, + "process": 3, + "job": 1, + "zmwireDaemon": 2, + "simply": 1, + "editing": 2, + "Stop": 1, + "RESJOB": 1, + "it.": 2, + "mwireVersion": 4, + "mwireDate": 2, + "July": 1, + "t": 12, + "_crlf": 22, + "build": 2, + "crlf": 6, + "response": 29, + "zewd": 17, + "_response_": 4, + "l": 84, + "_crlf_response_crlf": 4, + "zv": 6, + "authNeeded": 6, + "input": 41, + "cleardown": 2, + "zint": 1, + "j": 67, + "role": 3, + "loop": 7, + "e": 210, + "log": 1, + "halt": 3, + "auth": 2, + "k": 122, + "ignore": 12, + "pid": 36, + "monitor": 1, + "input_crlf": 1, + "lineNo": 19, + "zsy": 2, + "_pid_": 1, + "_pid": 1, + "monitoroutput": 1, + "logger": 17, + "initialise": 3, + "tot": 2, + "count": 18, + "mwireLogger": 3, + "increment": 11, + "info": 1, + "response_": 1, + "_count": 1, + "setpassword": 1, + "SETPASSWORD": 2, + "secret": 2, + "OK": 6, + "": 1, + "role=": 1, + "admin": 1, + "newrole": 4, + "getGloRef": 3, + "gloName": 1, + "gloRef": 15, + "nb": 2, + "subs": 8, + "len": 8, + "nsp": 1, + "subs_": 2, + "quot": 2, + "_data_": 3, + "subscripts": 8, + "_value_": 1, + "_error_": 1, + "ok": 14, + "kill": 3, + "xx": 16, + "yy": 19, + "No": 17, + "access": 21, + "allowed": 18, + "global": 26, + "method": 2, + "Missing": 5, + "JSON": 7, + "transaction": 6, + "document": 6, + "step": 8, + "setJSON": 4, + "json": 9, + "globalName": 7, + "GlobalName": 3, + "Global": 8, + "name": 121, + "setGlobal": 1, + "zmwire_null_value": 1, + "Invalid": 1, + "props": 1, + "arr": 2, + "getJSON": 2, + "incr": 1, + "incrbr": 1, + "class": 1, + "##": 2, + "decr": 1, + "decrby": 1, + "subscript": 7, + "direction": 1, + "{": 5, + "subscriptValue": 1, + "dataStatus": 1, + "dataValue": 1, + "}": 5, + "nextsubscript": 2, + "reverseorder": 1, + "query": 4, + "p2": 10, + "*2": 1, + "queryget": 1, + "xxyy": 2, + "zz": 2, + "numeric": 8, + "exists": 6, + "getallsubscripts": 1, + "*": 6, + "orderall": 1, + "": 3, + "note": 2, + "escaping": 1, + "world": 4, + "foo": 2, + "CacheTempEWD": 16, + "_gloRef": 1, + "zt": 20, + "@x": 4, + "i*2": 3, + "_crlf_": 1, + "j_": 1, + "params": 10, + "resp": 5, + "_crlf_resp_crlf": 2, + "_crlf_data_crlf": 2, + "mergeto": 1, + "dataLength": 4, + "key": 22, + "keyLength": 6, + "noOfRecs": 6, + "MERGETO": 1, + "myglobal": 1, + "*6": 1, + "hello": 1, + "": 2, + "length": 7, + "means": 2, + "no": 54, + "put": 1, + "top": 1, + "r": 88, + "N.N": 12, + "noOfRecs#2": 1, + "noOfRecs/2": 1, + "_i_": 5, + "gloRef1": 2, + "gloRef1_": 2, + "_gloRef1_key_": 1, + "sub": 2, + "literal": 2, + "true": 2, + "boolean": 2, + "valquot_value_valquot": 1, + "json_value_": 1, + "subscripts1": 2, + "dd": 4, + "subx": 3, + "subNo": 1, + "numsub": 1, + "json_": 2, + "removeControlChars": 2, + "zobj1": 1, + "buff": 10, + "parseJSONObject": 2, + ".buff": 2, + "subs2": 6, + "stop": 20, + "_name_": 1, + "subs2_": 2, + "value_c": 1, + "lc": 3, + "N.N1": 4, + "string": 50, + "newString": 4, + "newString_c": 1, + "utfConvert": 1, + "Unescape": 1, + "UTF": 17, + "buf": 4, + "c1": 4, + "buf_c1_": 1, + "tr": 13, + "Comment": 1, + "block": 1, + "always": 2, + "semicolon": 1, + "next": 1, + "while": 4, + "legal": 1, + "blank": 1, + "whitespace": 2, + "alone": 1, + "valid": 2, + "Comments": 1, + "graphic": 3, + "such": 1, + "@#": 1, + "/": 3, + "space": 1, + "considered": 1, + "though": 1, + "whose": 1, + "above": 3, + "below": 1, + "are": 14, + "NOT": 2, + "routine.": 1, + "multiple": 1, + "semicolons": 1, + "okay": 1, + "has": 7, + "tag": 2, + "bug": 2, + "does": 1, + "Tag1": 1, + "Tags": 2, + "uppercase": 2, + "lowercase": 1, + "alphabetic": 2, + "series": 2, + "HELO": 1, + "most": 1, + "common": 1, + "label": 5, + "LABEL": 1, + "followed": 1, + "directly": 1, + "open": 1, + "parenthesis": 2, + "formal": 1, + "list": 1, + "variables": 3, + "close": 1, + "ANOTHER": 1, + "Normally": 1, + "subroutine": 1, + "would": 2, + "ended": 1, + "we": 1, + "taking": 1, + "advantage": 1, + "rule": 1, + "END": 1, + "implicit": 1, + "PCRE": 23, + "tries": 1, + "deliver": 1, + "best": 2, + "possible": 5, + "interface": 1, + "providing": 1, + "support": 3, + "arrays": 1, + "stringified": 2, + "parameter": 1, + "names": 3, + "simplified": 1, + "API": 7, + "locales": 2, + "exceptions": 1, + "Perl5": 1, + "Match.": 1, + "pcreexamples.m": 2, + "comprehensive": 1, + "pcre": 59, + "routines": 6, + "beginner": 1, + "tips": 1, + "match": 41, + "limits": 6, + "exception": 12, + "handling": 2, + "GT.M.": 1, + "Try": 2, + "out": 2, + "known": 2, + "book": 1, + "regular": 1, + "expressions": 1, + "//regex.info/": 1, + "information": 1, + "//pcre.org/": 1, + "Initial": 2, + "release": 2, + "pkoper": 2, + "pcre.version": 1, + "config": 3, + "case": 7, + "insensitive": 7, + "protect": 11, + "erropt": 6, + "isstring": 5, + "pcre.config": 1, + ".name": 1, + ".erropt": 3, + ".isstring": 1, + ".s": 5, + ".n": 20, + "ec": 10, + "compile": 14, + "pattern": 21, + "options": 45, + "locale": 24, + "mlimit": 20, + "reclimit": 19, + "optional": 16, + "joined": 3, + "Unix": 1, + "pcre_maketables": 2, + "cases": 1, + "undefined": 1, + "called": 8, + "environment": 7, + "defined": 2, + "LANG": 4, + "LC_*": 1, + "specified": 4, + "...": 6, + "Debian": 2, + "tip": 1, + "dpkg": 1, + "reconfigure": 1, + "enable": 1, + "system": 1, + "wide": 1, + "internal": 3, + "matching": 4, + "calls": 1, + "pcre_exec": 4, + "execution": 2, + "manual": 2, + "details": 5, + "limit": 14, + "depth": 1, + "recursion": 1, + "calling": 2, + "ref": 41, + "err": 4, + "erroffset": 3, + "pcre.compile": 1, + ".pattern": 3, + ".ref": 13, + ".err": 1, + ".erroffset": 1, + "exec": 4, + "subject": 24, + "startoffset": 3, + "octets": 2, + "starts": 1, + "like": 4, + "chars": 3, + "pcre.exec": 2, + ".subject": 3, + "zl": 7, + "<0>": 2, + "ec=": 7, + "ovector": 25, + "element": 1, + "code=": 4, + "ovecsize": 5, + "fullinfo": 3, + "OPTIONS": 2, + "SIZE": 1, + "CAPTURECOUNT": 1, + "BACKREFMAX": 1, + "FIRSTBYTE": 1, + "FIRSTTABLE": 1, + "LASTLITERAL": 1, + "NAMEENTRYSIZE": 1, + "NAMECOUNT": 1, + "STUDYSIZE": 1, + "OKPARTIAL": 1, + "JCHANGED": 1, + "HASCRORLF": 1, + "MINLENGTH": 1, + "JIT": 1, + "JITSIZE": 1, + "NAME": 3, + "nametable": 4, + "1": 74, + "index": 1, + "0": 23, + "indexed": 4, + "substring": 1, + "begin": 18, + "end": 33, + "begin=": 3, + "2": 14, + "end=": 4, + "octet": 4, + "UNICODE": 1, + "so": 4, + "ze": 8, + "begin_": 1, + "_end": 1, + "store": 6, + "same": 2, + "stores": 1, + "captured": 6, + "array": 22, + "key=": 2, + "gstore": 3, + "round": 12, + "byref": 5, + "test": 6, + "ref=": 3, + "l=": 2, + "capture": 10, + "indexes": 1, + "extended": 1, + "NAMED_ONLY": 2, + "only": 9, + "named": 12, + "groups": 5, + "OVECTOR": 2, + "namedonly": 9, + "options=": 4, + "i=": 14, + "o=": 12, + "u": 6, + "namedonly=": 2, + "ovector=": 2, + "NO_AUTO_CAPTURE": 2, + "c=": 28, + "_capture_": 2, + "matches": 10, + "s=": 4, + "_s_": 1, + "GROUPED": 1, + "group": 4, + "result": 3, + "patterns": 3, + "pcredemo": 1, + "pcreccp": 1, + "cc": 1, + "procedure": 2, + "Perl": 1, + "utf8": 2, + "empty": 7, + "skip": 6, + "determine": 1, + "remove": 6, + "them": 1, + "before": 2, + "byref=": 2, + "check": 2, + "UTF8": 2, + "double": 1, + "char": 9, + "new": 15, + "utf8=": 1, + "crlf=": 3, + "NL_CRLF": 1, + "NL_ANY": 1, + "NL_ANYCRLF": 1, + "none": 1, + "NEWLINE": 1, + "..": 28, + ".start": 1, + "unwind": 1, + "call": 1, + "optimize": 1, + "do": 15, + "leave": 1, + "advance": 1, + "clear": 6, + "LF": 1, + "CR": 1, + "CRLF": 1, + "mode": 12, + "middle": 1, + ".i": 2, + ".match": 2, + ".round": 2, + ".byref": 2, + ".ovector": 2, + "replace": 27, + "subst": 3, + "last": 4, + "occurrences": 1, + "matched": 1, + "back": 4, + "th": 3, + "replaced": 1, + "where": 6, + "substitution": 2, + "begins": 1, + "substituted": 2, + "defaults": 3, + "ends": 1, + "offset": 6, + "backref": 1, + "boffset": 1, + "prepare": 1, + "reference": 2, + "stack": 8, + ".subst": 1, + ".backref": 1, + "silently": 1, + "zco": 1, + "": 1, + "s/": 6, + "b*": 7, + "/Xy/g": 6, + "print": 8, + "aa": 9, + "et": 4, + "direct": 3, + "place": 9, + "take": 1, + "setup": 3, + "trap": 10, + "source": 3, + "location": 5, + "argument": 1, + "st": 6, + "@ref": 2, + "COMPILE": 2, + "meaning": 1, + "zs": 2, + "re": 2, + "raise": 3, + "XC": 1, + "U16384": 1, + "U16385": 1, + "U16386": 1, + "U16387": 1, + "U16388": 2, + "U16389": 1, + "U16390": 1, + "U16391": 1, + "U16392": 2, + "U16393": 1, + "NOTES": 1, + "U16401": 2, + "raised": 2, + "i.e.": 3, + "NOMATCH": 2, + "ever": 1, + "uncommon": 1, + "situation": 1, + "too": 1, + "small": 1, + "considering": 1, + "size": 3, + "controlled": 1, + "here": 4, + "U16402": 1, + "U16403": 1, + "U16404": 1, + "U16405": 1, + "U16406": 1, + "U16407": 1, + "U16408": 1, + "U16409": 1, + "U16410": 1, + "U16411": 1, + "U16412": 1, + "U16414": 1, + "U16415": 1, + "U16416": 1, + "U16417": 1, + "U16418": 1, + "U16419": 1, + "U16420": 1, + "U16421": 1, + "U16423": 1, + "U16424": 1, + "U16425": 1, + "U16426": 1, + "U16427": 1, + "Fibonacci": 1, + "term": 10, + "create": 6, + "student": 14, + "zwrite": 1, + "Mumtris": 3, + "tetris": 1, + "game": 1, + "MUMPS": 1, + "fun.": 1, + "Resize": 1, + "terminal": 2, + "maximize": 1, + "PuTTY": 1, + "window": 1, + "report": 1, + "mumtris.": 1, + "setting": 3, + "ansi": 2, + "compatible": 1, + "cursor": 1, + "positioning.": 1, + "NOTICE": 1, + "uses": 1, + "making": 1, + "delays": 1, + "lower": 1, + "s.": 1, + "That": 1, + "CPU": 1, + "It": 2, + "fall": 5, + "lock": 2, + "preview": 3, + "over": 2, + "exit": 3, + "short": 1, + "circuit": 1, + "redraw": 3, + "timeout": 1, + "harddrop": 1, + "other": 1, + "ex": 5, + "hd": 3, + "*c": 1, + "<0&'d>": 1, + "t10m": 1, + "h": 39, + "q=": 6, + "d=": 1, + "zb": 2, + "3": 6, + "rotate": 5, + "right": 3, + "left": 5, + "fl=": 1, + "gr=": 1, + "hl": 2, + "help": 2, + "drop": 2, + "hd=": 1, + "matrix": 2, + "draw": 3, + "y": 33, + "ticks": 2, + "h=": 2, + "1000000000": 1, + "e=": 1, + "t10m=": 1, + "100": 2, + "n=": 1, + "ne=": 1, + "x=": 5, + "y=": 3, + "r=": 3, + "collision": 6, + "score": 5, + "k=": 1, + "4": 5, + "j=": 4, + "<1))))>": 1, + "800": 1, + "200": 1, + "lv": 5, + "lc=": 1, + "10": 1, + "mt_": 2, + "cls": 6, + "dh/2": 6, + "dw/2": 6, + "*s": 4, + "echo": 1, + "intro": 1, + "pos": 33, + "workaround": 1, + "ANSI": 1, + "driver": 1, + "NL": 1, + "some": 1, + "safe": 3, + "clearscreen": 1, + "h/2": 3, + "*w/2": 3, + "fill": 3, + "fl": 2, + "*x": 1, + "mx": 4, + "my": 5, + "**lv*sb": 1, + "*lv": 1, + "sc": 3, + "ne": 2, + "gr": 1, + "w*3": 1, + "dev": 1, + "zsh": 1, + "dw": 1, + "dh": 1, + "elements": 3, + "elemId": 3, + "rotateVersions": 1, + "rotateVersion": 2, + "bottom": 1, + "coordinate": 1, + "point": 2, + "____": 1, + "__": 2, + "||": 1, + "Implementation": 1, + "works": 1, + "ZCHSET": 2, + "please": 1, + "don": 1, + "joke.": 1, + "Serves": 1, + "well": 2, + "reverse": 1, + "engineering": 1, + "obtaining": 1, + "integer": 1, + "addition": 1, + "modulo": 1, + "division.": 1, + "//en.wikipedia.org/wiki/MD5": 1, + "#64": 1, + "msg_": 1, + "_m_": 1, + "n64": 2, + "read": 2, + ".p": 1, + "*i": 3, + "#16": 3, + "xor": 4, + "#4294967296": 6, + "n32h": 5, + "bit": 5, + "#2": 1, + "*2147483648": 2, + "a#2": 1, + "b#2": 1, + ".a": 1, + ".b": 1, + "rol": 1, + "a*": 1, + "**n": 1, + "c#4294967296": 1, + "*n": 1, + "n#256": 1, + "n#16": 2, + "two": 2, + "illustrate": 1, + "dynamic": 1, + "scope": 1, + "triangle1": 1, + "sum": 15, + "main2": 1, + "triangle2": 1, + "statement": 3, + "statements": 1, + "contrasted": 1, + "if3": 1, + "else": 7, + "clause": 2, + "if4": 1, + "bodies": 1, + "MDB": 60, + "M/DB": 2, + "Mumps": 1, + "Emulation": 1, + "Amazon": 1, + "SimpleDB": 1, + "buildDate": 1, + "indexLength": 10, + "Note": 2, + "keyId": 108, + "been": 4, + "tested": 1, + "time": 9, + "these": 1, + "methods": 2, + "To": 2, + "Initialise": 2, + "service": 1, + "//192.168.1.xxx/mdb/test.mgwsi": 1, + "Action": 2, + "addUser": 2, + "userKeyId": 6, + "userSecretKey": 6, + "requestId": 17, + "boxUsage": 11, + "startTime": 21, + ".startTime": 5, + "MDBUAF": 2, + ".boxUsage": 22, + "createDomain": 1, + "domainName": 38, + "dn": 4, + "dnx": 3, + "id": 33, + "noOfDomains": 12, + "token": 21, + "MDBConfig": 1, + "getDomainId": 3, + "found": 7, + "namex": 8, + "buildItemNameIndex": 2, + "domainId": 53, + "itemId": 41, + "itemValue": 7, + "itemValuex": 3, + "countDomains": 2, + "deleteDomain": 2, + "listDomains": 1, + "maxNoOfDomains": 2, + "nextToken": 7, + "domainList": 3, + "fullName": 3, + "decodeBase64": 1, + "encodeBase64": 1, + "itemExists": 1, + "getItemId": 2, + "getAttributeValueId": 3, + "attribId": 36, + "valuex": 13, + "putAttributes": 2, + "itemName": 16, + "attributes": 32, + "valueId": 16, + "xvalue": 4, + "Item": 1, + "Domain": 1, + "itemNamex": 4, + "parseJSON": 1, + "attributesJSON": 1, + ".attributes": 5, + "attribute": 14, + "getAttributeId": 2, + "domain": 1, + "Not": 1, + "existing": 2, + "values": 4, + "now": 1, + "name/value": 2, + "pair": 1, + "getAttributes": 2, + "suppressBoxUsage": 1, + "attrNo": 9, + "valueNo": 6, + "delete": 2, + "item": 2, + "associated": 1, + "queryIndex": 1, + "records": 2, + "pairs": 2, + "vno": 2, + "completely": 3, + "references": 1, + "maxNoOfItems": 3, + "itemList": 12, + "session": 1, + "identifier": 1, + "stored": 1, + "queryExpression": 16, + "relink": 1, + "zewdGTMRuntime": 1, + "CGIEVAR": 1, + "cgi": 1, + "unescName": 5, + "urlDecode": 2, + "KEY": 36, + "WebLink": 1, + "entry": 5, + "action": 15, + "AWSAcessKeyId": 1, + "db": 9, + "hash": 1, + "itemsAndAttrs": 2, + "secretKey": 1, + "signatureMethod": 2, + "signatureVersion": 3, + "stringToSign": 2, + "rltKey": 2, + "_action_": 2, + "h_": 3, + "mdbKey": 2, + "errorResponse": 9, + ".requestId": 7, + "createResponse": 4, + "installMDBM": 1, + "authenticate": 1, + "MDBSession": 1, + "createResponseStringToSign": 1, + "Security": 1, + "_db": 1, + "MDBAPI": 1, + "_db_": 1, + "db_": 1, + "_action": 1, + "metaData": 1, + "domainMetadata": 1, + ".metaData": 1, + "paramName": 8, + "paramValue": 5, + "Query": 1, + "DomainName": 2, + "QueryExpression": 2, + "MaxNumberOfItems": 2, + "NextToken": 3, + "QueryWithAttributes": 1, + "AttributeName.": 2, + "Select": 2, + "SelectExpression": 1, + "entering": 1, + "runSelect.": 1, + "selectExpression": 3, + "finished": 1, + "runSelect": 3, + "select": 3, + "asc": 1, + "inValue": 6, + "str": 15, + "expr": 18, + "rel": 2, + "itemStack": 3, + "between": 2, + "<=\">": 1, + "lastWord=": 7, + "inAttr=": 5, + "expr=": 10, + "thisWord=": 7, + "inAttr": 2, + "queryExpression=": 4, + "_queryExpression": 2, + "isNull": 1, + "5": 1, + "8": 1, + "isNotNull": 1, + "9": 1, + "np": 17, + "prevName": 1, + "np=": 1, + "diffNames": 6, + "_term": 3, + "expr_": 1, + "_orderBy": 1, + "runQuery": 2, + ".itemList": 4, + "escVals": 1, + "str_c": 2, + "_x_": 1, + "orderBy": 1, + "_query": 1, + "parseSelect": 1, + ".domainName": 2, + ".queryExpression": 1, + ".orderBy": 1, + ".limit": 1, + "replaceAll": 11, + "executeSelect": 1, + ".itemStack": 1, + "***": 2, + "listCopy": 3, + "escape": 7, + "externalSelect": 2, + "_keyId_": 1, + "_selectExpression": 1, + "FromStr": 6, + "ToStr": 4, + "InText": 4, + "old": 3, + "p1": 5, + "stripTrailingSpaces": 2, + "spaces": 3, + "makeString": 3, + "string_spaces": 1, + "start1": 2, + "start2": 1, + "run": 2, + "APIs": 1, + "Fri": 1, + "Nov": 1, + "getVersion": 1, + "zewdCompiler": 6, + "date": 1, + "getDate": 1, + "compilePage": 2, + "app": 13, + "technology": 9, + "outputPath": 4, + "multilingual": 4, + "maxLines": 4, + "compileAll": 2, + "templatePageName": 2, + "autoTranslate": 2, + "verbose": 2, + "zewdMgr": 1, + "startSession": 2, + "requestArray": 2, + "serverArray": 1, + "sessionArray": 5, + "filesArray": 1, + "zewdPHP": 8, + ".requestArray": 2, + ".serverArray": 1, + ".sessionArray": 3, + ".filesArray": 1, + "closeSession": 2, + "saveSession": 2, + "endOfPage": 2, + "prePageScript": 2, + "releaseLock": 2, + "tokeniseURL": 2, + "url": 2, + "zewdCompiler16": 5, + "getSessid": 1, + "isTokenExpired": 2, + "zewdSession": 39, + "initialiseSession": 1, + "deleteSession": 2, + "changeApp": 1, + "appName": 4, + "setRedirect": 1, + "toPage": 1, + "path": 4, + "getRootURL": 1, + "_sessid_": 3, + "_token_": 1, + "_nextPage": 1, + "zcvt": 11, + "nextPage": 1, + "isNextPageTokenValid": 2, + "zewdCompiler13": 10, + "isCSP": 1, + "normaliseTextValue": 1, + "text": 6, + "writeLine": 2, + "CacheTempBuffer": 2, + "displayOptions": 2, + "fieldName": 5, + "listName": 6, + "codeValue": 7, + "nnvp": 1, + "nvp": 1, + "textValue": 6, + "getSessionValue": 3, + "codeValueEsc": 7, + "textValueEsc": 7, + "htmlOutputEncode": 2, + "zewdAPI2": 5, + "_codeValueEsc_": 1, + "translationMode": 1, + "_appName": 1, + "typex": 1, + "type": 2, + "avoid": 1, + "getPhraseIndex": 1, + "zewdCompiler5": 1, + "licensed": 1, + "setWarning": 2, + "isTemp": 11, + "setWLDSymbol": 1, + "Duplicate": 1, + "performance": 1, + "wldAppName": 1, + "wldName": 1, + "wldSessid": 1, + "zzname": 1, + "extcErr": 1, + "mess": 3, + "namespace": 1, + "valueErr": 1, + "exportCustomTags": 2, + "tagList": 1, + "filepath": 10, + ".tagList": 1, + "exportAllCustomTags": 2, + "importCustomTags": 2, + "filePath": 2, + "zewdForm": 1, + "stripSpaces": 6, + "obj": 6, + "prop": 6, + "setSessionObject": 3, + "allowJSONAccess": 1, + "sessionName": 30, + "disallowJSONAccess": 1, + "JSONAccess": 1, + "existsInSession": 2, + "existsInSessionArray": 2, + "p3": 3, + "p4": 2, + "p5": 2, + "p6": 2, + "p7": 2, + "p8": 2, + "p9": 2, + "p10": 2, + "p11": 2, + "clearSessionArray": 1, + "arrayName": 35, + "setSessionArray": 1, + "getSessionArray": 1, + "clearArray": 2, + "getSessionArrayErr": 1, + "Come": 1, + "occurred": 2, + "addToSession": 2, + "@name": 4, + "mergeToSession": 1, + "mergeGlobalToSession": 2, + "mergeGlobalFromSession": 2, + "mergeArrayToSession": 1, + "mergeArrayToSessionObject": 2, + ".array": 1, + "mergeArrayFromSession": 1, + "mergeFromSession": 1, + "deleteFromSession": 1, + "deleteFromSessionObject": 1, + "sessionNameExists": 1, + "getSessionArrayValue": 2, + ".exists": 1, + "sessionArrayValueExists": 2, + "deleteSessionArrayValue": 2, + "Objects": 1, + "objectName": 13, + "propertyName": 3, + "propertyValue": 5, + "comma": 3, + "objectName_": 2, + "_propertyName": 2, + "_propertyName_": 2, + "_propertyValue_": 1, + "_p": 1, + "quoted": 1, + "removeDocument": 1, + "zewdDOM": 3, + "instanceName": 2, + "clearXMLIndex": 1, + "zewdSchemaForm": 1, + "closeDOM": 1, + "makeTokenString": 1, + "token_": 1, + "convertDateToSeconds": 1, + "hdate": 7, + "hdate*86400": 1, + "convertSecondsToDate": 1, + "secs": 2, + "secs#86400": 1, + "getTokenExpiry": 2, + "h*86400": 1, + "randChar": 1, + "lowerCase": 2, + "stripLeadingSpaces": 2, + "d1": 7, + "zd": 1, + "<10>": 1, + "dd=": 2, + "mm=": 3, + "d1=": 1, + "p1=": 1, + "mm": 7, + "p2=": 1, + "yy=": 1, + "dd_": 1, + "mm_": 1, + "inetTime": 1, + "Decode": 1, + "Internet": 1, + "Format": 1, + "Time": 1, + "H": 1, + "format": 2, + "Offset": 1, + "relative": 1, + "GMT": 1, + "hh": 4, + "ss": 4, + "_hh": 1, + "time#3600": 1, + "_mm": 1, + "time#60": 1, + "_ss": 2, + "hh_": 1, + "_mm_": 1, + "openNewFile": 2, + "openFile": 2, + "openDOM": 2, + "#39": 1, + "<\",\"<\")>": 1, + "string=": 1, + "gt": 1, + "amp": 1, + "HTML": 1, + "no2": 1, + "p1_c_p2": 1, + "getIP": 2, + "Get": 2, + "own": 2, + "IP": 1, + "address": 1, + "ajaxErrorRedirect": 2, + "classExport": 2, + "className": 2, + ".methods": 1, + "strx": 2, + "disableEwdMgr": 1, + "enableEwdMgr": 1, + "enableWLDAccess": 1, + "disableWLDAccess": 1, + "isSSOValid": 2, + "sso": 2, + "zewdMgrAjax2": 1, + "uniqueId": 1, + "nodeOID": 2, + "filename": 2, + "linkToParentSession": 2, + "zewdCompiler20": 1, + "exportToGTM": 1, + "computes": 1, + "factorial": 3, + "f*n": 1, + "main": 1, + "label1": 1, + "GMRGPNB0": 1, + "CISC/JH/RM": 1, + "NARRATIVE": 1, + "BUILDER": 1, + "TEXT": 5, + "GENERATOR": 1, + "cont.": 1, + "/20/91": 1, + "Text": 1, + "Generator": 1, + "Jan": 1, + "ENTRY": 2, + "WITH": 1, + "GMRGA": 1, + "SET": 3, + "TO": 6, + "POINT": 1, + "AT": 1, + "WHICH": 1, + "WANT": 1, + "START": 1, + "BUILDING": 1, + "GMRGE0": 11, + "GMRGADD": 4, + "GMR": 6, + "GMRGA0": 11, + "GMRGPDA": 9, + "GMRGCSW": 2, + "NOW": 1, + "DTC": 1, + "GMRGB0": 9, + "GMRGST": 6, + "GMRGPDT": 2, + "GMRGRUT0": 3, + "GMRGF0": 3, + "GMRGSTAT": 8, + "_GMRGB0_": 2, + "GMRD": 6, + "GMRGSSW": 3, + "SNT": 1, + "GMRGPNB1": 1, + "GMRGNAR": 8, + "GMRGPAR_": 2, + "_GMRGSPC_": 3, + "_GMRGRM": 2, + "_GMRGE0": 1, + "STORETXT": 1, + "GMRGRUT1": 1, + "GMRGSPC": 3, + "GMRGD0": 7, + "ALIST": 1, + "GMRGPLVL": 6, + "GMRGA0_": 1, + "_GMRGD0_": 1, + "_GMRGSSW_": 1, + "_GMRGADD": 1, + "GMRGI0": 6, + "Examples": 4, + "pcre.m": 1, + "parameters": 1, + "pcreexamples": 32, + "shining": 1, + "Test": 1, + "Simple": 2, + "zwr": 17, + "Match": 4, + "grouped": 2, + "Just": 1, + "Change": 2, + "word": 3, + "Escape": 1, + "sequence": 1, + "More": 1, + "Low": 1, + "api": 1, + "Setup": 1, + "myexception2": 2, + "st_": 1, + "zl_": 2, + ".options": 1, + "Run": 1, + ".offset": 1, + "used.": 2, + "strings": 1, + "submitted": 1, + "exact": 1, + "usable": 1, + "integers": 1, + "way": 1, + "what": 2, + "/mg": 2, + "aaa": 1, + "nbb": 1, + ".*": 1, + "discover": 1, + "stackusage": 3, + "Locale": 5, + "Support": 1, + "Polish": 1, + "I18N": 2, + "PCRE.": 1, + "Polish.": 1, + "second": 1, + "letter": 1, + "": 1, + "ISO8859": 1, + "//en.wikipedia.org/wiki/Polish_code_pages": 1, + "complete": 1, + "listing": 1, + "CHAR": 1, + "different": 3, + "modes": 1, + "In": 1, + "probably": 1, + "expected": 1, + "working": 1, + "single": 2, + "ISO": 3, + "chars.": 1, + "Use": 1, + "zch": 7, + "prepared": 1, + "GTM": 8, + "BADCHAR": 1, + "errors.": 1, + "Also": 1, + "others": 1, + "might": 1, + "expected.": 1, + "POSIX": 1, + "localization": 1, + "nolocale": 2, + "zchset": 2, + "isolocale": 2, + "utflocale": 2, + "LC_CTYPE": 1, + "Set": 2, + "results.": 1, + "envlocale": 2, + "ztrnlnm": 2, + "Notes": 1, + "Enabling": 1, + "native": 1, + "requires": 1, + "libicu": 2, + "gtm_chset": 1, + "gtm_icu_version": 1, + "recompiled": 1, + "object": 4, + "Instructions": 1, + "Install": 1, + "libicu48": 2, + "apt": 1, + "get": 2, + "install": 1, + "append": 1, + "chown": 1, + "gtm": 1, + "/opt/gtm": 1, + "Startup": 1, + "errors": 6, + "INVOBJ": 1, + "Cannot": 1, + "ZLINK": 1, + "due": 1, + "unexpected": 1, + "Object": 1, + "compiled": 1, + "CHSET": 1, + "written": 3, + "startup": 1, + "correct": 1, + "above.": 1, + "Limits": 1, + "built": 1, + "recursion.": 1, + "Those": 1, + "prevent": 1, + "engine": 1, + "very": 2, + "long": 2, + "especially": 1, + "there": 2, + "tree": 1, + "checked.": 1, + "Functions": 1, + "itself": 1, + "allows": 1, + "MATCH_LIMIT": 1, + "MATCH_LIMIT_RECURSION": 1, + "arguments": 1, + "library": 1, + "compilation": 2, + "Example": 1, + "longrun": 3, + "Equal": 1, + "corrected": 1, + "shortrun": 2, + "Enforced": 1, + "enforcedlimit": 2, + "Exception": 2, + "Handling": 1, + "Error": 1, + "conditions": 1, + "handled": 1, + "zc": 1, + "codes": 1, + "labels": 1, + "file.": 1, + "When": 2, + "neither": 1, + "nor": 1, + "within": 1, + "mechanism.": 1, + "depending": 1, + "caller": 1, + "exception.": 1, + "lead": 1, + "prompt": 1, + "terminating": 1, + "image.": 1, + "handlers.": 1, + "Handler": 1, + "nohandler": 4, + "Pattern": 1, + "failed": 1, + "unmatched": 1, + "parentheses": 1, + "<-->": 1, + "HERE": 1, + "RTSLOC": 2, + "At": 2, + "SETECODE": 1, + "Non": 1, + "assigned": 1, + "ECODE": 1, + "32": 1, + "GT": 1, + "image": 1, + "terminated": 1, + "myexception1": 3, + "zt=": 1, + "mytrap1": 2, + "zg": 2, + "mytrap3": 1, + "DETAILS": 1, + "executed": 1, + "frame": 1, + "called.": 1, + "deeper": 1, + "frames": 1, + "already": 1, + "dropped": 1, + "local": 1, + "available": 1, + "context.": 1, + "Thats": 1, + "why": 1, + "doesn": 1, + "unless": 1, + "cleared.": 1, + "Always": 1, + "done.": 2, + "Execute": 1, + "p5global": 1, + "p5replace": 1, + "p5lf": 1, + "p5nl": 1, + "newline": 1, + "utf8support": 1, + "myexception3": 1, + "PXAI": 1, + "ISL/JVS": 1, + "ISA/KWP": 1, + "ESW": 1, + "PCE": 2, + "DRIVING": 1, + "RTN": 1, + "/20/03": 1, + "am": 1, + "CARE": 1, + "ENCOUNTER": 2, + "**15": 1, + "Aug": 1, + "DATA2PCE": 1, + "PXADATA": 7, + "PXAPKG": 9, + "PXASOURC": 10, + "PXAVISIT": 8, + "PXAUSER": 6, + "PXANOT": 3, + "ERRRET": 2, + "PXAPREDT": 2, + "PXAPROB": 15, + "PXACCNT": 2, + "add/edit/delete": 1, + "PCE.": 1, + "pointer": 4, + "visit": 3, + "related.": 1, + "nodes": 1, + "needed": 1, + "lookup/create": 1, + "visit.": 1, + "adding": 1, + "data.": 1, + "displayed": 1, + "screen": 1, + "debugging": 1, + "initial": 1, + "code.": 1, + "passed": 4, + "reference.": 2, + "present": 1, + "PXKERROR": 2, + "caller.": 1, + "want": 1, + "edit": 1, + "Primary": 3, + "Provider": 1, + "moment": 1, + "being": 1, + "dangerous": 1, + "dotted": 1, + "name.": 1, + "warnings": 1, + "occur": 1, + "They": 1, + "form": 1, + "general": 1, + "description": 1, + "problem.": 1, + "ERROR1": 1, + "GENERAL": 2, + "ERRORS": 4, + "SUBSCRIPT": 5, + "PASSED": 4, + "IN": 4, + "FIELD": 2, + "FROM": 5, + "WARNING2": 1, + "WARNINGS": 2, + "WARNING3": 1, + "SERVICE": 1, + "CONNECTION": 1, + "REASON": 9, + "ERROR4": 1, + "PROBLEM": 1, + "LIST": 1, + "Returns": 2, + "PFSS": 2, + "Account": 2, + "Reference": 2, + "known.": 1, + "Returned": 1, + "located": 1, + "Order": 1, + "#100": 1, + "processed": 1, + "could": 1, + "incorrectly": 1, + "VARIABLES": 1, + "NOVSIT": 1, + "PXAK": 20, + "DFN": 1, + "PXAERRF": 3, + "PXADEC": 1, + "PXELAP": 1, + "PXASUB": 2, + "VALQUIET": 2, + "PRIMFND": 7, + "PXAERROR": 1, + "PXAERR": 7, + "PRVDR": 1, + "needs": 1, + "look": 1, + "up": 1, + "passed.": 1, + "@PXADATA@": 8, + "SOR": 1, + "SOURCE": 2, + "PKG2IEN": 1, + "VSIT": 1, + "PXAPIUTL": 2, + "TMPSOURC": 1, + "SAVES": 1, + "CREATES": 1, + "VST": 2, + "VISIT": 3, + "KILL": 1, + "VPTR": 1, + "PXAIVSTV": 1, + "ERR": 2, + "PXAIVST": 1, + "PRV": 1, + "PROVIDER": 1, + "AUPNVSIT": 1, + ".I": 4, + "..S": 7, + "status": 2, + "Secondary": 2, + ".S": 6, + "..I": 2, + "PXADI": 4, + "NODE": 5, + "SCREEN": 2, + "VA": 1, + "EXTERNAL": 2, + "INTERNAL": 2, + "ARRAY": 2, + "PXAICPTV": 1, + "SEND": 1, + "BLD": 2, + "DIALOG": 4, + ".PXAERR": 3, + "MSG": 2, + "GLOBAL": 1, + "NA": 1, + "PROVDRST": 1, + "Check": 1, + "provider": 1, + "PRVIEN": 14, + "DETS": 7, + "DIQ": 3, + "PRI": 3, + "PRVPRIM": 2, + "AUPNVPRV": 2, + ".04": 1, + "DIQ1": 1, + "POVPRM": 1, + "POVARR": 1, + "STOP": 1, + "LPXAK": 4, + "ORDX": 14, + "NDX": 7, + "ORDXP": 3, + "DX": 2, + "ICD9": 2, + "AUPNVPOV": 2, + "@POVARR@": 6, + "force": 1, + "originally": 1, + "primary": 1, + "diagnosis": 1, + "flag": 1, + ".F": 2, + "..E": 1, + "...S": 5, + "DataBallet.": 4, + "Laurent": 2, + "Parenteau": 2, + "": 2, + "DataBallet": 4, + "encode": 1, + "Return": 1, + "base64": 6, + "URL": 2, + "Filename": 1, + "alphabet": 2, + "RFC": 1, + "todrop": 2, + "Populate": 1, + "only.": 1, + "zextract": 3, + "zlength": 3, + "decode": 1, + "val": 5, + "Decoded": 1, + "Encoded": 1, + "decoded": 3, + "decoded_": 1, + "safechar": 3, + "zchar": 1, + "encoded_c": 1, + "encoded_": 2, + "FUNC": 1, + "DH": 1, + "zascii": 1, + "WVBRNOT": 1, + "HCIOFO/FT": 1, + "JR": 1, + "IHS/ANMC/MWR": 1, + "BROWSE": 1, + "NOTIFICATIONS": 1, + "/30/98": 1, + "WOMEN": 1, + "WVDATE": 8, + "WVENDDT1": 2, + "WVIEN": 13, + "..F": 2, + "WV": 8, + "WVXREF": 1, + "WVDFN": 6, + "SELECTING": 1, + "ONE": 2, + "CASE": 1, + "MANAGER": 1, + "AND": 3, + "THIS": 3, + "DOESN": 1, + "WVE": 2, + "": 2, + "STORE": 3, + "WVA": 2, + "WVBEGDT1": 1, + "NOTIFICATION": 1, + "IS": 3, + "QUEUED.": 1, + "WVB": 4, + "OPEN": 1, + "ONLY": 1, + "CLOSED.": 1, + ".Q": 1, + "EP": 4, + "ALREADY": 1, + "LL": 1, + "SORT": 3, + "ABOVE.": 1, + "DATE": 1, + "WVCHRT": 1, + "SSN": 1, + "WVUTL1": 2, + "SSN#": 1, + "WVNAME": 4, + "WVACC": 4, + "ACCESSION#": 1, + "WVSTAT": 1, + "STATUS": 2, + "WVUTL4": 1, + "WVPRIO": 5, + "PRIORITY": 1, + "WVCHRT_U_WVNAME_U_WVDATE_U_WVACC_U_WVSTAT_U_WVPRIO_U_WVIEN": 1, + "WVC": 4, + "COPYGBL": 3, + "COPY": 1, + "MAKE": 1, + "IT": 1, + "FLAT.": 1, + "...F": 1, + "....S": 1, + "DEQUEUE": 1, + "TASKMAN": 1, + "QUEUE": 1, + "PRINTOUT.": 1, + "SETVARS": 2, + "WVUTL5": 2, + "WVBRNOT1": 2, + "EXIT": 1, + "FOLLOW": 1, + "CALLED": 1, + "PROCEDURE": 1, + "FOLLOWUP": 1, + "MENU.": 1, + "WVBEGDT": 1, + "DT": 2, + "WVENDDT": 1, + "DEVICE": 1, + "WVBRNOT2": 1, + "WVPOP": 1, + "WVLOOP": 1, + "ax": 2, + "bx": 2, + "cx": 2, + "ay": 2, + "cy": 2, + "sumx": 3, + "sqrx": 3, + "sumxy": 5, + "x*x": 1, + "x*y": 1 + }, + "NSIS": { + ";": 39, + "bigtest.nsi": 1, + "This": 2, + "script": 1, + "attempts": 1, + "to": 6, + "test": 1, + "most": 1, + "of": 3, + "the": 4, + "functionality": 1, + "NSIS": 3, + "exehead.": 1, + "-": 205, + "ifdef": 2, + "HAVE_UPX": 1, + "packhdr": 1, + "tmp.dat": 1, + "endif": 4, + "NOCOMPRESS": 1, + "SetCompress": 1, + "off": 1, + "Name": 1, + "Caption": 1, + "Icon": 1, + "OutFile": 1, + "SetDateSave": 1, + "on": 6, + "SetDatablockOptimize": 1, + "CRCCheck": 1, + "SilentInstall": 1, + "normal": 1, + "BGGradient": 1, + "FFFFFF": 1, + "InstallColors": 1, + "FF8080": 1, + "XPStyle": 1, + "InstallDir": 1, + "InstallDirRegKey": 1, + "HKLM": 9, + "CheckBitmap": 1, + "LicenseText": 1, + "LicenseData": 1, + "RequestExecutionLevel": 1, + "admin": 1, + "Page": 4, + "license": 1, + "components": 1, + "directory": 3, + "instfiles": 2, + "UninstPage": 2, + "uninstConfirm": 1, + "ifndef": 2, + "NOINSTTYPES": 1, + "only": 1, + "if": 4, + "not": 2, + "defined": 1, + "InstType": 6, + "/NOCUSTOM": 1, + "/COMPONENTSONLYONCUSTOM": 1, + "AutoCloseWindow": 1, + "false": 1, + "ShowInstDetails": 1, + "show": 1, + "Section": 5, + "empty": 1, + "string": 1, + "makes": 1, + "it": 3, + "hidden": 1, + "so": 1, + "would": 1, + "starting": 1, + "with": 1, + "write": 2, + "reg": 1, + "info": 1, + "StrCpy": 2, + "DetailPrint": 1, + "WriteRegStr": 4, + "SOFTWARE": 7, + "NSISTest": 7, + "BigNSISTest": 8, + "uninstall": 2, + "strings": 1, + "SetOutPath": 3, + "INSTDIR": 15, + "File": 3, + "/a": 1, + "CreateDirectory": 1, + "recursively": 1, + "create": 1, + "a": 2, + "for": 2, + "fun.": 1, + "WriteUninstaller": 1, + "Nop": 1, + "fun": 1, + "SectionEnd": 5, + "SectionIn": 4, + "Start": 2, + "MessageBox": 11, + "MB_OK": 8, + "MB_YESNO": 3, + "IDYES": 2, + "MyLabel": 2, + "SectionGroup": 2, + "/e": 1, + "SectionGroup1": 1, + "WriteRegDword": 3, + "xdeadbeef": 1, + "WriteRegBin": 1, + "WriteINIStr": 5, + "Call": 6, + "MyFunctionTest": 1, + "DeleteINIStr": 1, + "DeleteINISec": 1, + "ReadINIStr": 1, + "StrCmp": 1, + "INIDelSuccess": 2, + "ClearErrors": 1, + "ReadRegStr": 1, + "HKCR": 1, + "xyz_cc_does_not_exist": 1, + "IfErrors": 1, + "NoError": 2, + "Goto": 1, + "ErrorYay": 2, + "CSCTest": 1, + "Group2": 1, + "BeginTestSection": 1, + "IfFileExists": 1, + "BranchTest69": 1, + "|": 3, + "MB_ICONQUESTION": 1, + "IDNO": 1, + "NoOverwrite": 1, + "skipped": 2, + "file": 4, + "doesn": 2, + "s": 1, + "icon": 1, + "start": 1, + "minimized": 1, + "and": 1, + "give": 1, + "hotkey": 1, + "(": 5, + "Ctrl": 1, + "+": 2, + "Shift": 1, + "Q": 2, + ")": 5, + "CreateShortCut": 2, + "SW_SHOWMINIMIZED": 1, + "CONTROL": 1, + "SHIFT": 1, + "MyTestVar": 1, + "myfunc": 1, + "test.ini": 2, + "MySectionIni": 1, + "Value1": 1, + "failed": 1, + "TextInSection": 1, + "will": 1, + "example2.": 1, + "Hit": 1, + "next": 1, + "continue.": 1, + "{": 8, + "NSISDIR": 1, + "}": 8, + "Contrib": 1, + "Graphics": 1, + "Icons": 1, + "nsis1": 1, + "uninstall.ico": 1, + "Uninstall": 2, + "Software": 1, + "Microsoft": 1, + "Windows": 3, + "CurrentVersion": 1, + "silent.nsi": 1, + "LogicLib.nsi": 1, + "bt": 1, + "uninst.exe": 1, + "SMPROGRAMS": 2, + "Big": 1, + "Test": 2, + "*.*": 2, + "BiG": 1, + "Would": 1, + "you": 1, + "like": 1, + "remove": 1, + "cpdest": 3, + "MyProjectFamily": 2, + "MyProject": 1, + "Note": 1, + "could": 1, + "be": 1, + "removed": 1, + "IDOK": 1, + "t": 1, + "exist": 1, + "NoErrorMsg": 1, + "x64.nsh": 1, + "A": 1, + "few": 1, + "simple": 1, + "macros": 1, + "handle": 1, + "installations": 1, + "x64": 1, + "machines.": 1, + "RunningX64": 4, + "checks": 1, + "installer": 1, + "is": 2, + "running": 1, + "x64.": 1, + "If": 1, + "EndIf": 1, + "DisableX64FSRedirection": 4, + "disables": 1, + "system": 2, + "redirection.": 2, + "EnableX64FSRedirection": 4, + "enables": 1, + "SYSDIR": 1, + "some.dll": 2, + "#": 3, + "extracts": 2, + "C": 2, + "System32": 1, + "SysWOW64": 1, + "___X64__NSH___": 3, + "define": 4, + "include": 1, + "LogicLib.nsh": 1, + "macro": 3, + "_RunningX64": 1, + "_a": 1, + "_b": 1, + "_t": 2, + "_f": 2, + "insertmacro": 2, + "_LOGICLIB_TEMP": 3, + "System": 4, + "kernel32": 4, + "GetCurrentProcess": 1, + "i.s": 1, + "IsWow64Process": 1, + "*i.s": 1, + "Pop": 1, + "_": 1, + "macroend": 3, + "Wow64EnableWow64FsRedirection": 2, + "i0": 1, + "i1": 1 +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method }, "Pod": { "Id": 1, @@ -53510,174 +79072,2856 @@ "_params": 1, "INDEX": 1 }, - "PogoScript": { - "httpism": 1, - "require": 3, - "async": 1, - "resolve": 2, - ".resolve": 1, - "exports.squash": 1, - "(": 38, - "url": 5, - ")": 38, - "html": 15, - "httpism.get": 2, - ".body": 2, - "squash": 2, - "callback": 2, - "replacements": 6, - "sort": 2, - "links": 2, - "in": 11, - ".concat": 1, - "scripts": 2, - "for": 2, - "each": 2, - "@": 6, - "r": 1, - "{": 3, - "r.url": 1, - "r.href": 1, - "}": 3, - "async.map": 1, - "get": 2, - "err": 2, - "requested": 2, - "replace": 2, - "replacements.sort": 1, - "a": 1, - "b": 1, - "a.index": 1, - "-": 1, - "b.index": 1, - "replacement": 2, - "replacement.body": 1, - "replacement.url": 1, - "i": 3, - "parts": 3, - "rep": 1, - "rep.index": 1, + "AutoHotkey": { + "MsgBox": 1, + "Hello": 1, + "World": 1 + }, + "TXL": { + "define": 12, + "program": 1, + "[": 38, + "expression": 9, + "]": 38, + "end": 12, + "term": 6, + "|": 3, + "addop": 2, + "primary": 4, + "mulop": 2, + "number": 10, + "(": 2, + ")": 2, + "-": 3, + "/": 3, + "rule": 12, + "main": 1, + "replace": 6, + "E": 3, + "construct": 1, + "NewE": 3, + "resolveAddition": 2, + "resolveSubtraction": 2, + "resolveMultiplication": 2, + "resolveDivision": 2, + "resolveParentheses": 2, + "where": 1, + "not": 1, + "by": 6, + "N1": 8, "+": 2, - "rep.length": 1, - "html.substr": 1, - "link": 2, - "reg": 5, - "r/": 2, - "": 1, - "]": 7, - "*href": 1, - "[": 5, + "N2": 8, "*": 2, - "/": 2, - "|": 2, - "s*": 2, - "<\\/link\\>": 1, - "/gi": 2, - "elements": 5, - "matching": 3, - "as": 3, - "script": 2, - "": 1, - "*src": 1, - "<\\/script\\>": 1, - "tag": 3, - "while": 1, - "m": 1, - "reg.exec": 1, - "elements.push": 1, - "index": 1, - "m.index": 1, - "length": 1, - "m.0.length": 1, - "href": 1, - "m.1": 1 + "N": 2 }, - "PostScript": { - "%": 23, - "PS": 1, - "-": 4, - "Adobe": 1, - "Creator": 1, - "Aaron": 1, - "Puchert": 1, - "Title": 1, - "The": 1, - "Sierpinski": 1, - "triangle": 1, - "Pages": 1, - "PageOrder": 1, - "Ascend": 1, - "BeginProlog": 1, - "/pageset": 1, - "{": 4, - "scale": 1, - "set": 1, - "cm": 1, - "translate": 1, - "setlinewidth": 1, - "}": 4, - "def": 2, - "/sierpinski": 1, - "dup": 4, - "gt": 1, - "[": 6, - "]": 6, - "concat": 5, - "sub": 3, - "sierpinski": 4, - "newpath": 1, - "moveto": 1, - "lineto": 2, - "closepath": 1, - "fill": 1, - "ifelse": 1, - "pop": 1, - "EndProlog": 1, - "BeginSetup": 1, - "<<": 1, - "/PageSize": 1, - "setpagedevice": 1, - "A4": 1, - "EndSetup": 1, - "Page": 1, - "Test": 1, - "pageset": 1, - "sqrt": 1, - "showpage": 1, - "EOF": 1 - }, - "PowerShell": { - "Write": 2, - "-": 2, - "Host": 2, - "function": 1, - "hello": 1, - "(": 1, - ")": 1, - "{": 1, - "}": 1 - }, - "Processing": { + "wisp": { + ";": 199, + "#": 2, + "wisp": 6, + "Wisp": 13, + "is": 20, + "homoiconic": 1, + "JS": 17, + "dialect": 1, + "with": 6, + "a": 24, + "clojure": 2, + "syntax": 2, + "s": 7, + "-": 33, + "expressions": 6, + "and": 9, + "macros.": 1, + "code": 3, + "compiles": 1, + "to": 21, + "human": 1, + "readable": 1, + "javascript": 1, + "which": 3, + "one": 3, + "of": 16, + "they": 3, + "key": 3, + "differences": 1, + "from": 2, + "clojurescript.": 1, + "##": 2, + "data": 1, + "structures": 1, + "nil": 4, + "just": 3, + "like": 2, + "js": 1, + "undefined": 1, + "differenc": 1, + "that": 7, + "it": 10, + "shortcut": 1, + "for": 5, "void": 2, - "setup": 1, - "(": 17, - ")": 17, - "{": 2, - "size": 1, - ";": 15, - "background": 1, - "noStroke": 1, - "}": 2, - "draw": 1, - "fill": 6, - "triangle": 2, - "rect": 1, - "quad": 1, - "ellipse": 1, - "arc": 1, - "PI": 1, - "TWO_PI": 1 + "(": 77, + ")": 75, + "in": 16, + "JS.": 2, + "Booleans": 1, + "booleans": 2, + "true": 6, + "/": 1, + "false": 2, + "are": 14, + "Numbers": 1, + "numbers": 2, + "Strings": 2, + "strings": 3, + "can": 13, + "be": 15, + "multiline": 1, + "Characters": 2, + "sugar": 1, + "single": 1, + "char": 1, + "Keywords": 3, + "symbolic": 2, + "identifiers": 2, + "evaluate": 2, + "themselves.": 1, + "keyword": 1, + "Since": 1, + "string": 1, + "constats": 1, + "fulfill": 1, + "this": 2, + "purpose": 2, + "keywords": 1, + "compile": 3, + "equivalent": 2, + "strings.": 1, + "window.addEventListener": 1, + "load": 1, + "handler": 1, + "invoked": 2, + "as": 4, + "functions": 8, + "desugars": 1, + "plain": 2, + "associated": 2, + "value": 2, + "access": 1, + "bar": 4, + "foo": 6, + "[": 22, + "]": 22, + "Vectors": 1, + "vectors": 1, + "arrays.": 1, + "Note": 3, + "Commas": 2, + "white": 1, + "space": 1, + "&": 6, + "used": 1, + "if": 7, + "desired": 1, + "Maps": 2, + "hash": 1, + "maps": 1, + "objects.": 1, + "unlike": 1, + "keys": 1, + "not": 4, + "arbitary": 1, + "types.": 1, + "{": 4, + "beep": 1, + "bop": 1, + "}": 4, + "optional": 2, + "but": 7, + "come": 1, + "handy": 1, + "separating": 1, + "pairs.": 1, + "b": 5, + "In": 5, + "future": 2, + "JSONs": 1, + "may": 1, + "made": 2, + "compatible": 1, + "map": 3, + "syntax.": 1, + "Lists": 1, + "You": 1, + "up": 1, + "lists": 1, + "representing": 1, + "expressions.": 1, + "The": 1, + "first": 4, + "item": 2, + "the": 9, + "expression": 6, + "function": 7, + "being": 1, + "rest": 7, + "items": 2, + "arguments.": 2, + "baz": 2, + "Conventions": 1, + "puts": 1, + "lot": 2, + "effort": 1, + "making": 1, + "naming": 1, + "conventions": 3, + "transparent": 1, + "by": 2, + "encouraning": 1, + "lisp": 1, + "then": 1, + "translating": 1, + "them": 1, + "dash": 1, + "delimited": 1, + "dashDelimited": 1, + "predicate": 1, + "isPredicate": 1, + "__privates__": 1, + "list": 2, + "vector": 1, + "listToVector": 1, + "As": 1, + "side": 2, + "effect": 1, + "some": 2, + "names": 1, + "expressed": 3, + "few": 1, + "ways": 1, + "although": 1, + "third": 2, + "expression.": 1, + "<": 1, + "number": 3, + "Else": 1, + "missing": 1, + "conditional": 1, + "evaluates": 2, + "result": 2, + "will": 6, + ".": 6, + "monday": 1, + "today": 1, + "Compbining": 1, + "everything": 1, + "an": 1, + "sometimes": 1, + "might": 1, + "want": 2, + "compbine": 1, + "multiple": 1, + "into": 2, + "usually": 3, + "evaluating": 1, + "have": 2, + "effects": 1, + "do": 4, + "console.log": 2, + "+": 9, + "Also": 1, + "special": 4, + "form": 10, + "many.": 1, + "If": 2, + "evaluation": 1, + "nil.": 1, + "Bindings": 1, + "Let": 1, + "containing": 1, + "lexical": 1, + "context": 1, + "simbols": 1, + "bindings": 1, + "forms": 1, + "bound": 1, + "their": 2, + "respective": 1, + "results.": 1, + "let": 2, + "c": 1, + "Functions": 1, + "fn": 15, + "x": 22, + "named": 1, + "similar": 2, + "increment": 1, + "also": 2, + "contain": 1, + "documentation": 1, + "metadata.": 1, + "Docstring": 1, + "metadata": 1, + "presented": 1, + "compiled": 2, + "yet": 1, + "comments": 1, + "function.": 1, + "incerement": 1, + "added": 1, + "makes": 1, + "capturing": 1, + "arguments": 7, + "easier": 1, + "than": 1, + "argument": 1, + "follows": 1, + "simbol": 1, + "capture": 1, + "all": 4, + "args": 1, + "array.": 1, + "rest.reduce": 1, + "sum": 3, + "Overloads": 1, + "overloaded": 1, + "depending": 1, + "on": 1, + "take": 2, + "without": 2, + "introspection": 1, + "version": 1, + "y": 6, + "more": 3, + "more.reduce": 1, + "does": 1, + "has": 2, + "variadic": 1, + "overload": 1, + "passed": 1, + "throws": 1, + "exception.": 1, + "Other": 1, + "Special": 1, + "Forms": 1, + "Instantiation": 1, + "type": 2, + "instantiation": 1, + "consice": 1, + "needs": 1, + "suffixed": 1, + "character": 1, + "Type.": 1, + "options": 2, + "More": 1, + "verbose": 1, + "there": 1, + "new": 2, + "Class": 1, + "Method": 1, + "calls": 3, + "method": 2, + "no": 1, + "different": 1, + "Any": 1, + "quoted": 1, + "prevent": 1, + "doesn": 1, + "t": 1, + "unless": 5, + "or": 2, + "macro": 7, + "try": 1, + "implemting": 1, + "understand": 1, + "use": 2, + "case": 1, + "We": 1, + "execute": 1, + "body": 4, + "condition": 4, + "defn": 2, + "Although": 1, + "following": 2, + "log": 1, + "anyway": 1, + "since": 1, + "exectued": 1, + "before": 1, + "called.": 1, + "Macros": 2, + "solve": 1, + "problem": 1, + "because": 1, + "immediately.": 1, + "Instead": 1, + "you": 1, + "get": 2, + "choose": 1, + "when": 1, + "evaluated.": 1, + "return": 1, + "instead.": 1, + "defmacro": 3, + "less": 1, + "how": 1, + "build": 1, + "implemented.": 1, + "define": 4, + "name": 2, + "def": 1, + "@body": 1, + "Now": 1, + "we": 2, + "above": 1, + "defined": 1, + "expanded": 2, + "time": 1, + "resulting": 1, + "diff": 1, + "program": 1, + "output.": 1, + "print": 1, + "message": 2, + ".log": 1, + "console": 1, + "Not": 1, + "macros": 2, + "via": 2, + "templating": 1, + "language": 1, + "available": 1, + "at": 1, + "hand": 1, + "assemble": 1, + "form.": 1, + "For": 2, + "instance": 1, + "ease": 1, + "functional": 1, + "chanining": 1, + "popular": 1, + "chaining.": 1, + "example": 1, + "API": 1, + "pioneered": 1, + "jQuery": 1, + "very": 2, + "common": 1, + "open": 2, + "target": 1, + "keypress": 2, + "filter": 2, + "isEnterKey": 1, + "getInputText": 1, + "reduce": 3, + "render": 2, + "Unfortunately": 1, + "though": 1, + "requires": 1, + "need": 1, + "methods": 1, + "dsl": 1, + "object": 1, + "limited.": 1, + "Making": 1, + "party": 1, + "second": 1, + "class.": 1, + "Via": 1, + "achieve": 1, + "chaining": 1, + "such": 1, + "tradeoffs.": 1, + "operations": 3, + "operation": 3, + "cons": 2, + "tagret": 1, + "enter": 1, + "input": 1, + "text": 1 }, + "Mathematica": { + "BeginPackage": 1, + "[": 74, + "]": 73, + ";": 41, + "PossiblyTrueQ": 3, + "usage": 22, + "PossiblyFalseQ": 2, + "PossiblyNonzeroQ": 3, + "Begin": 2, + "expr_": 4, + "Not": 6, + "TrueQ": 4, + "expr": 4, + "End": 2, + "AnyQ": 3, + "AnyElementQ": 4, + "AllQ": 2, + "AllElementQ": 2, + "AnyNonzeroQ": 2, + "AnyPossiblyNonzeroQ": 2, + "RealQ": 3, + "PositiveQ": 3, + "NonnegativeQ": 3, + "PositiveIntegerQ": 3, + "NonnegativeIntegerQ": 4, + "IntegerListQ": 5, + "PositiveIntegerListQ": 3, + "NonnegativeIntegerListQ": 3, + "IntegerOrListQ": 2, + "PositiveIntegerOrListQ": 2, + "NonnegativeIntegerOrListQ": 2, + "SymbolQ": 2, + "SymbolOrNumberQ": 2, + "cond_": 4, + "L_": 5, + "Fold": 3, + "Or": 1, + "False": 4, + "cond": 4, + "/@": 3, + "L": 4, + "Flatten": 1, + "And": 4, + "True": 2, + "SHEBANG#!#!=": 1, + "n_": 5, + "Im": 1, + "n": 8, + "Positive": 2, + "IntegerQ": 3, + "&&": 4, + "input_": 6, + "ListQ": 1, + "input": 11, + "MemberQ": 3, + "IntegerQ/@input": 1, + "||": 4, + "a_": 2, + "Head": 2, + "a": 3, + "Symbol": 2, + "NumericQ": 1, + "EndPackage": 1, + "Paclet": 1, + "Name": 1, + "-": 8, + "Version": 1, + "MathematicaVersion": 1, + "Description": 1, + "Creator": 1, + "Extensions": 1, + "{": 2, + "Language": 1, + "MainPage": 1, + "}": 2, + "Get": 1 + }, + "Coq": { + "Require": 17, + "Import": 11, + "Omega": 1, + "Relations": 2, + "Multiset": 2, + "SetoidList.": 1, + "Set": 4, + "Implicit": 15, + "Arguments.": 2, + "Local": 7, + "Notation": 39, + "nil.": 2, + "(": 1248, + "a": 207, + "..": 4, + "b": 89, + "[": 170, + "]": 173, + ")": 1249, + ".": 433, + "Section": 4, + "Permut.": 1, + "Variable": 7, + "A": 113, + "Type.": 3, + "eqA": 29, + "relation": 19, + "A.": 6, + "Hypothesis": 7, + "eqA_equiv": 1, + "Equivalence": 2, + "eqA.": 1, + "eqA_dec": 26, + "forall": 248, + "x": 266, + "y": 116, + "{": 39, + "}": 35, + "+": 227, + "Let": 8, + "emptyBag": 4, + "EmptyBag": 2, + "singletonBag": 10, + "SingletonBag": 2, + "_": 67, + "eqA_dec.": 2, + "Fixpoint": 36, + "list_contents": 30, + "l": 379, + "list": 78, + "multiset": 2, + "match": 70, + "with": 223, + "|": 457, + "munion": 18, + "end.": 52, + "Lemma": 51, + "list_contents_app": 5, + "m": 201, + "meq": 15, + "Proof.": 208, + "simple": 7, + "induction": 81, + ";": 375, + "simpl": 116, + "auto": 73, + "datatypes.": 47, + "intros.": 27, + "apply": 340, + "meq_trans": 10, + "l0": 7, + "Qed.": 194, + "Definition": 46, + "permutation": 43, + "permut_refl": 1, + "l.": 26, + "unfold": 58, + "permut_sym": 4, + "l1": 89, + "l2": 73, + "-": 508, + "l1.": 5, + "intros": 258, + "symmetry": 4, + "trivial.": 14, + "permut_trans": 5, + "n": 369, + "n.": 44, + "permut_cons_eq": 3, + "meq_left": 1, + "meq_singleton": 1, + "auto.": 47, + "permut_cons": 5, + "permut_app": 1, + "using": 18, + "l3": 12, + "l4": 3, + "in": 221, + "*": 59, + "specialize": 6, + "H0": 16, + "a0.": 1, + "repeat": 11, + "rewrite": 241, + "*.": 110, + "destruct": 94, + "a0": 15, + "as": 77, + "Ha": 6, + "H": 76, + "decide": 1, + "replace": 4, + "trivial": 15, + "permut_add_inside_eq": 1, + "permut_add_cons_inside": 3, + "permut_add_inside": 1, + "permut_middle": 1, + "permut_refl.": 5, + "permut_sym_app": 1, + "intro": 27, + "do": 4, + "arith.": 8, + "permut_rev": 1, + "rev": 7, + "simpl.": 70, + "permut_add_cons_inside.": 1, + "<->": 31, + "app_nil_end": 1, + "Qed": 23, + "Some": 21, + "inversion": 104, + "results": 1, + "permut_conv_inv": 1, + "e": 53, + "l2.": 8, + "generalize": 13, + "plus_reg_l.": 1, + "permut_app_inv1": 1, + "clear": 7, + "H.": 100, + "list_contents_app.": 1, + "plus_reg_l": 1, + "multiplicity": 6, + "plus_comm": 3, + "plus_comm.": 3, + "Fact": 3, + "if_eqA_then": 1, + "B": 6, + "then": 9, + "else": 9, + "Type": 86, + "if": 10, + "if_eqA_refl": 3, + "b.": 14, + "decide_left": 1, + "Global": 5, + "Instance": 7, + "if_eqA": 1, + "contradict": 3, + "transitivity": 4, + "a2": 62, + "a1": 56, + "A1": 2, + "eauto": 10, + "if_eqA_rewrite_r": 1, + "A2": 4, + "Hxx": 1, + "multiplicity_InA": 4, + "InA": 8, + "<": 76, + "a.": 6, + "split": 14, + "right.": 9, + "IHl": 8, + "multiplicity_InA_O": 2, + "multiplicity_InA_S": 1, + "multiplicity_NoDupA": 1, + "NoDupA": 3, + "inversion_clear": 6, + "H1.": 31, + "EQ": 8, + "NEQ": 1, + "constructor": 6, + "omega": 7, + "Permutation": 38, + "is": 4, + "compatible": 1, + "permut_InA_InA": 3, + "e.": 15, + "multiplicity_InA.": 1, + "meq.": 2, + "permut_cons_InA": 3, + "permut_nil": 3, + "assert": 68, + "by": 7, + "Abs": 2, + "permut_length_1": 1, + "P": 32, + "discriminate.": 2, + "permut_length_2": 1, + "b1": 35, + "b2": 23, + "/": 41, + "P.": 5, + "left": 6, + "permut_length_1.": 2, + "red": 6, + "@if_eqA_rewrite_l": 2, + "omega.": 7, + "permut_length": 1, + "length": 21, + "InA_split": 1, + "h2": 1, + "t2": 51, + "H1": 18, + "H2": 12, + "subst": 7, + "app_length.": 2, + "plus_n_Sm": 1, + "f_equal.": 1, + "app_length": 1, + "IHl1": 1, + "permut_remove_hd": 1, + "revert": 5, + "f_equal": 1, + "if_eqA_rewrite_l": 1, + "NoDupA_equivlistA_permut": 1, + "Equivalence_Reflexive.": 1, + "change": 1, + "Equivalence_Reflexive": 1, + "Forall2": 2, + "permutation_Permutation": 1, + "exists": 60, + "Forall2.": 1, + "pose": 2, + "proof": 1, + "&": 21, + "IHP": 2, + "IHA": 2, + "Forall2_app_inv_r": 1, + "Hl1": 1, + "Hl2": 1, + "split.": 17, + "Permutation_cons_app": 3, + "Forall2_app": 1, + "Forall2_cons": 1, + "Heq": 8, + "Permutation_impl_permutation": 1, + "permut_eqA": 1, + "End": 15, + "Permut_permut.": 1, + "permut_right": 1, + "only": 3, + "parsing": 3, + "permut_tran": 1, + "Export": 10, + "Imp.": 1, + "Relations.": 1, + "Inductive": 41, + "tm": 43, + "tm_const": 45, + "nat": 108, + "tm_plus": 30, + "tm.": 3, + "Tactic": 9, + "tactic": 9, + "first": 18, + "ident": 9, + "c": 70, + "Case_aux": 38, + "Module": 11, + "SimpleArith0.": 2, + "eval": 8, + "t": 93, + "SimpleArith1.": 2, + "Reserved": 4, + "at": 17, + "level": 11, + "associativity": 7, + "Prop": 17, + "E_Const": 2, + "E_Plus": 2, + "t1": 48, + "n1": 45, + "n2": 41, + "plus": 10, + "where": 6, + "Example": 37, + "test_step_1": 1, + "ST_Plus1.": 2, + "ST_PlusConstConst.": 3, + "test_step_2": 1, + "ST_Plus2.": 2, + "Theorem": 115, + "step_deterministic": 1, + "partial_function": 6, + "step.": 3, + "partial_function.": 5, + "y1": 6, + "y2": 5, + "Hy1": 2, + "Hy2.": 2, + "dependent": 6, + "y2.": 3, + "step_cases": 4, + "Case": 51, + "Hy2": 3, + "SCase.": 3, + "SCase": 24, + "reflexivity.": 199, + "H2.": 20, + "Hy1.": 5, + "IHHy1": 2, + "assumption.": 61, + "SimpleArith2.": 1, + "value": 25, + "v_const": 4, + "step": 9, + "ST_PlusConstConst": 3, + "ST_Plus1": 2, + "v1": 7, + "subst.": 43, + "H3.": 5, + "0": 5, + "reflexivity": 16, + "assumption": 10, + "strong_progress": 2, + "R": 54, + "value_not_same_as_normal_form": 2, + "normal_form": 3, + "t.": 4, + "normal_form.": 2, + "v_funny.": 1, + "not.": 3, + "Temp1.": 1, + "Temp2.": 1, + "ST_Funny": 1, + "H0.": 24, + "H4.": 2, + "Temp3.": 1, + "Temp4.": 2, + "tm_true": 8, + "tm_false": 5, + "tm_if": 10, + "v_true": 1, + "v_false": 1, + "tm_false.": 3, + "ST_IfTrue": 1, + "ST_IfFalse": 1, + "ST_If": 1, + "t3": 6, + "bool_step_prop4": 1, + "bool_step_prop4_holds": 1, + "bool_step_prop4.": 2, + "ST_ShortCut.": 1, + "constructor.": 16, + "left.": 3, + "IHt1.": 1, + "t2.": 4, + "t3.": 2, + "ST_If.": 2, + "Temp5.": 1, + "stepmany": 4, + "refl_step_closure": 11, + "normalizing": 1, + "X": 191, + "IHt2": 3, + "H11": 2, + "H12": 2, + "H21": 3, + "H22": 2, + "nf_same_as_value": 3, + "H12.": 1, + "H22.": 1, + "H11.": 1, + "rsc_trans": 4, + "stepmany_congr_1": 1, + "stepmany_congr2": 1, + "rsc_R": 2, + "r": 11, + "eval__value": 1, + "HE.": 1, + "eval_cases": 1, + "HE": 1, + "v_const.": 1, + "List": 2, + "Setoid": 1, + "Compare_dec": 1, + "Morphisms.": 2, + "ListNotations.": 1, + "Permutation.": 2, + "perm_nil": 1, + "perm_skip": 1, + "Hint": 9, + "Constructors": 3, + "Permutation_nil": 2, + "HF.": 3, + "remember": 12, + "@nil": 1, + "HF": 2, + "discriminate": 3, + "||": 1, + "Permutation_nil_cons": 1, + "nil": 46, + "Permutation_refl": 1, + "exact": 4, + "IHl.": 7, + "Permutation_sym": 1, + "Hperm": 7, + "perm_trans": 1, + "Permutation_trans": 4, + "Proper": 5, + "Logic.eq": 2, + "@Permutation": 5, + "iff": 1, + "@In": 1, + "Permutation_in.": 2, + "Permutation_app_tail": 2, + "tl": 8, + "eapply": 8, + "Permutation_app_head": 2, + "app_comm_cons": 5, + "Permutation_app": 3, + "Hpermmm": 1, + "idtac": 1, + "try": 17, + "@app": 1, + "now": 24, + "Permutation_app.": 1, + "Permutation_add_inside": 1, + "Permutation_cons_append": 1, + "Resolve": 5, + "Permutation_cons_append.": 3, + "Permutation_app_comm": 3, + "app_nil_r": 1, + "app_assoc": 2, + "Permutation_middle": 2, + "Proof": 12, + "Permutation_rev": 3, + "1": 1, + "@rev": 1, + "2": 1, + "Permutation_length": 2, + "@length": 1, + "Permutation_length.": 1, + "Permutation_ind_bis": 2, + "Hnil": 1, + "Hskip": 3, + "Hswap": 2, + "Htrans.": 1, + "Htrans": 1, + "eauto.": 7, + "Ltac": 1, + "break_list": 5, + "injection": 4, + "Permutation_nil_app_cons": 1, + "Hp": 5, + "IH": 3, + "Permutation_middle.": 3, + "perm_swap.": 2, + "perm_swap": 1, + "eq_refl": 2, + "In_split": 1, + "Permutation_app_inv": 1, + "NoDup": 4, + "incl": 3, + "N.": 1, + "E": 7, + "Hx.": 5, + "In": 6, + "Hy": 14, + "N": 1, + "Hal": 1, + "Hl": 1, + "exfalso.": 1, + "Hx": 20, + "NoDup_Permutation_bis": 2, + "intuition.": 2, + "Permutation_NoDup": 1, + "Permutation_map": 1, + "Hf": 15, + "Hy.": 3, + "injective_bounded_surjective": 1, + "f": 108, + "injective": 6, + "set": 1, + "seq": 2, + "map": 4, + "x.": 3, + "in_map_iff.": 2, + "in_seq": 4, + "arith": 4, + "NoDup_cardinal_incl": 1, + "injective_map_NoDup": 2, + "seq_NoDup": 1, + "map_length": 1, + "in_map_iff": 1, + "nat_bijection_Permutation": 1, + "let": 3, + "BD.": 1, + "seq_NoDup.": 1, + "map_length.": 1, + "Injection": 1, + "Permutation_alt": 1, + "Alternative": 1, + "characterization": 1, + "of": 4, + "via": 1, + "nth_error": 7, + "and": 1, + "nth": 2, + "adapt": 4, + "S": 186, + "le_lt_dec": 9, + "pred": 3, + "adapt_injective": 1, + "adapt.": 2, + "EQ.": 2, + "LE": 11, + "LT": 14, + "eq_add_S": 2, + "Hf.": 1, + "Lt.le_lt_or_eq": 3, + "LE.": 3, + "lt": 3, + "LT.": 5, + "Lt.S_pred": 3, + "elim": 21, + "Lt.lt_not_le": 2, + "adapt_ok": 2, + "nth_error_app1": 1, + "nth_error_app2": 1, + "Minus.minus_Sn_m": 1, + "Permutation_nth_error": 2, + "fun": 17, + "IHP2": 1, + "g": 6, + "Hg": 2, + "E.": 2, + "L12": 2, + "plus_n_Sm.": 1, + "adapt_injective.": 1, + "nth_error_None": 4, + "Hn": 1, + "Hf2": 1, + "Hf3": 2, + "Lt.le_or_lt": 1, + "d": 6, + "Lt.lt_irrefl": 2, + "Lt.lt_le_trans": 2, + "Hf1": 1, + "congruence.": 1, + "Permutation_alt.": 1, + "Permutation_app_swap": 1, + "SfLib.": 2, + "STLC.": 1, + "ty": 7, + "ty_Bool": 10, + "ty_arrow": 7, + "ty.": 2, + "tm_var": 6, + "id": 7, + "tm_app": 7, + "tm_abs": 9, + "Id": 7, + "idB": 2, + "idBB": 2, + "idBBBB": 2, + "k": 7, + "v_abs": 1, + "T": 49, + "t_true": 1, + "t_false": 1, + "value.": 1, + "s": 13, + "beq_id": 14, + "ST_App2": 1, + "step_example3": 1, + "idB.": 1, + "rsc_step.": 2, + "ST_App1.": 2, + "ST_AppAbs.": 3, + "v_abs.": 2, + "rsc_refl.": 4, + "context": 1, + "partial_map": 4, + "Context.": 1, + "option": 6, + "empty": 3, + "None": 9, + "extend": 1, + "Gamma": 10, + "has_type": 4, + "appears_free_in": 1, + "S.": 1, + "HT": 1, + "T_Var.": 1, + "extend_neq": 1, + "Heqe.": 3, + "rename": 2, + "i": 11, + "into": 2, + "y.": 15, + "T_Abs.": 1, + "context_invariance...": 2, + "beq_id_eq": 4, + "Hafi.": 2, + "extend.": 2, + "IHt.": 1, + "x0": 14, + "Coiso1.": 2, + "Coiso2.": 3, + "HeqCoiso1.": 1, + "HeqCoiso2.": 1, + "beq_id_false_not_eq.": 1, + "ex_falso_quodlibet.": 1, + "preservation": 1, + "HT.": 1, + "substitution_preserves_typing": 1, + "T11.": 4, + "HT1.": 1, + "T_App": 2, + "IHHT1.": 1, + "IHHT2.": 1, + "tm_cases": 1, + "Ht": 1, + "Ht.": 3, + "IHt1": 2, + "T11": 2, + "T0": 2, + "ST_App2.": 1, + "ty_Bool.": 1, + "T.": 9, + "IHt3": 1, + "ST_IfTrue.": 1, + "ST_IfFalse.": 1, + "types_unique": 1, + "T1": 25, + "T12": 2, + "IHhas_type.": 1, + "IHhas_type1.": 1, + "IHhas_type2.": 1, + "Sorted.": 1, + "Mergesort.": 1, + "Basics.": 2, + "NatList.": 2, + "Playground1.": 5, + "natprod": 5, + "pair": 7, + "natprod.": 1, + "fst": 3, + "p": 81, + "snd": 3, + "swap_pair": 1, + "surjective_pairing": 1, + "count": 7, + "beq_nat": 24, + "v": 28, + "remove_one": 3, + "end": 16, + "test_remove_one1": 1, + "O": 98, + "O.": 5, + "remove_all": 2, + "bag": 3, + "true": 68, + "false": 48, + "app_ass": 1, + "natlist": 7, + "l3.": 1, + "cons": 26, + "remove_decreases_count": 1, + "ble_nat": 6, + "true.": 16, + "s.": 4, + "ble_n_Sn.": 1, + "IHs.": 2, + "natoption": 5, + "natoption.": 1, + "index": 3, + "option_elim": 2, + "o": 25, + "hd_opt": 8, + "test_hd_opt1": 2, + "None.": 2, + "test_hd_opt2": 2, + "option_elim_hd": 1, + "head": 1, + "beq_natlist": 5, + "bool": 38, + "r1": 2, + "v2": 2, + "r2": 2, + "test_beq_natlist1": 1, + "test_beq_natlist2": 1, + "beq_natlist_refl": 1, + "beq_nat_refl": 3, + "silly1": 1, + "eq1": 6, + "eq2.": 9, + "eq2": 1, + "silly2a": 1, + "q": 15, + "eq1.": 5, + "silly_ex": 1, + "evenb": 5, + "oddb": 5, + "silly3": 1, + "symmetry.": 2, + "rev_exercise": 1, + "rev_involutive.": 1, + "beq_nat_sym": 2, + "IHn": 12, + "Lists.": 1, + "X.": 4, + "h": 14, + "app": 5, + "snoc": 9, + "Arguments": 11, + "list123": 1, + "right": 2, + "test_repeat1": 1, + "nil_app": 1, + "rev_snoc": 1, + "snoc_with_append": 1, + "v.": 1, + "IHl1.": 1, + "prod": 3, + "Y": 38, + "Y.": 1, + "type_scope.": 1, + "combine": 3, + "lx": 4, + "ly": 4, + "tx": 2, + "tp": 2, + "xs": 7, + "plus3": 2, + "prod_curry": 3, + "Z": 11, + "prod_uncurry": 3, + "uncurry_uncurry": 1, + "curry_uncurry": 1, + "p.": 9, + "filter": 3, + "test": 4, + "countoddmembers": 1, + "fmostlytrue": 5, + "override": 5, + "ftrue": 1, + "false.": 12, + "override_example1": 1, + "override_example2": 1, + "override_example3": 1, + "override_example4": 1, + "override_example": 1, + "constfun": 1, + "unfold_example_bad": 1, + "m.": 21, + "plus3.": 1, + "override_eq": 1, + "f.": 1, + "override.": 2, + "override_neq": 1, + "x1": 11, + "x2": 3, + "k1": 5, + "k2": 4, + "x1.": 3, + "eq.": 11, + "silly4": 1, + "silly5": 1, + "sillyex1": 1, + "z": 14, + "j": 6, + "j.": 1, + "silly6": 1, + "contra.": 19, + "silly7": 1, + "sillyex2": 1, + "z.": 6, + "beq_nat_eq": 2, + "assertion": 3, + "Hl.": 1, + "IHm": 2, + "eq": 4, + "SSCase": 3, + "beq_nat_O_l": 1, + "beq_nat_O_r": 1, + "double_injective": 1, + "double": 2, + "fold_map": 2, + "fold": 1, + "total": 2, + "fold_map_correct": 1, + "fold_map.": 1, + "forallb": 4, + "andb": 8, + "existsb": 3, + "orb": 8, + "existsb2": 2, + "negb": 10, + "existsb_correct": 1, + "existsb2.": 1, + "index_okx": 1, + "mumble": 5, + "mumble.": 1, + "grumble": 3, + "day": 9, + "monday": 5, + "tuesday": 3, + "wednesday": 3, + "thursday": 3, + "friday": 3, + "saturday": 3, + "sunday": 2, + "day.": 1, + "next_weekday": 3, + "test_next_weekday": 1, + "tuesday.": 1, + "bool.": 1, + "test_orb1": 1, + "test_orb2": 1, + "test_orb3": 1, + "test_orb4": 1, + "nandb": 5, + "test_nandb1": 1, + "test_nandb2": 1, + "test_nandb3": 1, + "test_nandb4": 1, + "andb3": 5, + "b3": 2, + "test_andb31": 1, + "test_andb32": 1, + "test_andb33": 1, + "test_andb34": 1, + "nat.": 4, + "minustwo": 1, + "test_oddb1": 1, + "test_oddb2": 1, + "mult": 3, + "minus": 3, + "exp": 2, + "base": 3, + "power": 2, + "factorial": 2, + "test_factorial1": 1, + "nat_scope.": 3, + "plus_O_n": 1, + "plus_1_1": 1, + "mult_0_1": 1, + "plus_id_example": 1, + "plus_id_exercise": 1, + "o.": 4, + "mult_0_plus": 1, + "plus_O_n.": 1, + "mult_1_plus": 1, + "plus_1_1.": 1, + "mult_1": 1, + "plus_1_neq_0": 1, + "plus_distr.": 1, + "plus_rearrange": 1, + "q.": 2, + "plus_swap": 2, + "plus_assoc.": 4, + "plus_swap.": 2, + "mult_comm": 2, + "mult_0_r.": 4, + "mult_distr": 1, + "mult_1_distr.": 1, + "mult_1.": 1, + "bad": 1, + "zero_nbeq_S": 1, + "andb_false_r": 1, + "plus_ble_compat_1": 1, + "IHp.": 2, + "S_nbeq_0": 1, + "mult_1_1": 1, + "plus_0_r.": 1, + "all3_spec": 1, + "c.": 5, + "mult_plus_1": 1, + "IHm.": 1, + "mult_mult": 1, + "IHn.": 3, + "mult_plus_1.": 1, + "mult_plus_distr_r": 1, + "mult_mult.": 3, + "plus_assoc": 1, + "H3": 4, + "mult_assoc": 1, + "mult_plus_distr_r.": 1, + "bin": 9, + "BO": 4, + "D": 9, + "M": 4, + "bin.": 1, + "incbin": 2, + "bin2un": 3, + "bin_comm": 1, + "PermutSetoid": 1, + "Sorting.": 1, + "defs.": 2, + "leA": 25, + "gtA": 1, + "leA_dec": 4, + "leA_refl": 1, + "leA_trans": 2, + "leA_antisym": 1, + "leA_refl.": 1, + "Immediate": 1, + "leA_antisym.": 1, + "Tree": 24, + "Tree_Leaf": 9, + "Tree_Node": 11, + "Tree.": 1, + "leA_Tree": 16, + "True": 1, + "T2": 20, + "leA_Tree_Leaf": 5, + "Tree_Leaf.": 1, + "leA_Tree_Node": 1, + "G": 6, + "is_heap": 18, + "nil_is_heap": 5, + "node_is_heap": 7, + "invert_heap": 3, + "T2.": 1, + "is_heap_rect": 1, + "PG": 2, + "PD": 2, + "PN.": 2, + "H4": 7, + "X0": 2, + "is_heap_rec": 1, + "low_trans": 3, + "merge_lem": 3, + "merge_exist": 5, + "Sorted": 5, + "HdRel": 4, + "@meq": 4, + "red.": 1, + "meq_trans.": 1, + "Defined.": 1, + "@munion": 1, + "meq_congr.": 1, + "merge": 5, + "fix": 2, + "Sorted_inv": 2, + "merge0.": 2, + "cons_sort": 2, + "cons_leA": 2, + "munion_ass.": 2, + "cons_leA.": 2, + "@HdRel_inv": 2, + "merge0": 1, + "setoid_rewrite": 2, + "munion_ass": 1, + "munion_comm.": 2, + "munion_comm": 1, + "contents": 12, + "equiv_Tree": 1, + "insert_spec": 3, + "insert_exist": 4, + "insert": 2, + "treesort_twist1": 1, + "T3": 2, + "HeapT3": 1, + "ConT3": 1, + "LeA.": 1, + "LeA": 1, + "treesort_twist2": 1, + "build_heap": 3, + "heap_exist": 3, + "list_to_heap": 2, + "nil_is_heap.": 1, + "meq_right": 2, + "meq_sym": 2, + "flat_spec": 3, + "flat_exist": 3, + "heap_to_list": 2, + "s1": 20, + "i1": 15, + "m1": 1, + "s2": 2, + "i2": 10, + "m2.": 1, + "meq_congr": 1, + "munion_rotate.": 1, + "treesort": 1, + "permutation.": 1, + "Logic.": 1, + "Prop.": 1, + "next_nat_partial_function": 1, + "next_nat.": 1, + "Q.": 2, + "le_not_a_partial_function": 1, + "le": 1, + "Nonsense.": 4, + "le_n.": 6, + "le_S.": 4, + "total_relation_not_partial_function": 1, + "total_relation": 1, + "total_relation1.": 2, + "empty_relation_not_partial_funcion": 1, + "empty_relation.": 1, + "reflexive": 5, + "le_reflexive": 1, + "le.": 4, + "reflexive.": 1, + "transitive": 8, + "le_trans": 4, + "Hnm": 3, + "Hmo.": 4, + "Hnm.": 3, + "IHHmo.": 1, + "lt_trans": 4, + "lt.": 2, + "transitive.": 1, + "le_S": 6, + "Hm": 1, + "le_Sn_le": 2, + "<=>": 12, + "le_S_n": 2, + "Sn_le_Sm__n_le_m.": 1, + "le_Sn_n": 5, + "not": 1, + "TODO": 1, + "Hmo": 1, + "symmetric": 2, + "antisymmetric": 3, + "le_antisymmetric": 1, + "Sn_le_Sm__n_le_m": 2, + "IHb": 1, + "equivalence": 1, + "order": 2, + "preorder": 1, + "le_order": 1, + "order.": 1, + "le_reflexive.": 1, + "le_antisymmetric.": 1, + "le_trans.": 1, + "clos_refl_trans": 8, + "rt_step": 1, + "rt_refl": 1, + "rt_trans": 3, + "next_nat_closure_is_le": 1, + "next_nat": 1, + "rt_refl.": 2, + "IHle.": 1, + "rt_step.": 2, + "nn.": 1, + "IHclos_refl_trans1.": 2, + "IHclos_refl_trans2.": 2, + "rsc_refl": 1, + "rsc_step": 4, + "r.": 3, + "IHrefl_step_closure": 1, + "rtc_rsc_coincide": 1, + "IHrefl_step_closure.": 1, + "AExp.": 2, + "aexp": 30, + "ANum": 18, + "APlus": 14, + "AMinus": 9, + "AMult": 9, + "aexp.": 1, + "bexp": 22, + "BTrue": 10, + "BFalse": 11, + "BEq": 9, + "BLe": 9, + "BNot": 9, + "BAnd": 10, + "bexp.": 1, + "aeval": 46, + "test_aeval1": 1, + "beval": 16, + "optimize_0plus": 15, + "e2": 54, + "e1": 58, + "test_optimize_0plus": 1, + "optimize_0plus_sound": 4, + "e1.": 1, + "IHe2.": 10, + "IHe1.": 11, + "aexp_cases": 3, + "IHe1": 6, + "IHe2": 6, + "optimize_0plus_all": 2, + "optimize_0plus_all_sound": 1, + "bexp_cases": 4, + "optimize_and": 5, + "optimize_and_sound": 1, + "IHe": 2, + "aevalR_first_try.": 2, + "aevalR": 18, + "E_Anum": 1, + "E_APlus": 2, + "E_AMinus": 2, + "E_AMult": 2, + "E_ANum": 1, + "bevalR": 11, + "E_BTrue": 1, + "E_BFalse": 1, + "E_BEq": 1, + "E_BLe": 1, + "E_BNot": 1, + "E_BAnd": 1, + "aeval_iff_aevalR": 9, + "IHa1": 1, + "IHa2": 1, + "beval_iff_bevalR": 1, + "IHbevalR": 1, + "IHbevalR1": 1, + "IHbevalR2": 1, + "IHa.": 1, + "IHa1.": 1, + "IHa2.": 1, + "silly_presburger_formula": 1, + "3": 2, + "id.": 1, + "id1": 2, + "id2": 2, + "beq_id_refl": 1, + "i.": 2, + "beq_nat_refl.": 1, + "i2.": 8, + "i1.": 3, + "beq_id_false_not_eq": 1, + "C.": 3, + "n0": 5, + "beq_false_not_eq": 1, + "not_eq_beq_id_false": 1, + "not_eq_beq_false.": 1, + "AId": 4, + "com_cases": 1, + "SKIP": 5, + "IFB": 4, + "WHILE": 5, + "c1": 14, + "c2": 9, + "e3": 1, + "cl": 1, + "st": 113, + "E_IfTrue": 2, + "THEN": 3, + "ELSE": 3, + "FI": 3, + "E_WhileEnd": 2, + "DO": 4, + "END": 4, + "E_WhileLoop": 2, + "ceval_cases": 1, + "E_Skip": 1, + "E_Ass": 1, + "E_Seq": 1, + "E_IfFalse": 1, + "assignment": 1, + "command": 2, + "st1": 2, + "IHi1": 3, + "Heqst1": 1, + "Hceval.": 4, + "Hceval": 2, + "bval": 2, + "ceval_step": 3, + "ceval_step_more": 7, + "x2.": 2, + "IHHce.": 2, + "%": 3, + "IHHce1.": 1, + "IHHce2.": 1, + "plus2": 1, + "nx": 3, + "ny": 2, + "XtimesYinZ": 1, + "ny.": 1, + "loop": 2, + "loopdef.": 1, + "Heqloopdef.": 8, + "contra1.": 1, + "IHcontra2.": 1, + "no_whiles": 15, + "com": 5, + "ct": 2, + "cf": 2, + "no_Whiles": 10, + "noWhilesSKIP": 1, + "noWhilesAss": 1, + "noWhilesSeq": 1, + "noWhilesIf": 1, + "no_whiles_eqv": 1, + "noWhilesSKIP.": 1, + "noWhilesAss.": 1, + "noWhilesSeq.": 1, + "IHc1.": 2, + "andb_true_elim1": 4, + "IHc2.": 2, + "andb_true_elim2": 4, + "noWhilesIf.": 1, + "andb_true_intro.": 2, + "no_whiles_terminate": 1, + "state": 6, + "st.": 7, + "update": 2, + "IHc1": 2, + "IHc2": 2, + "H5.": 1, + "Heqr.": 1, + "Heqr": 3, + "H8.": 1, + "H10": 1, + "beval_short_circuit": 5, + "beval_short_circuit_eqv": 1, + "sinstr": 8, + "SPush": 8, + "SLoad": 6, + "SPlus": 10, + "SMinus": 11, + "SMult": 11, + "sinstr.": 1, + "s_execute": 21, + "stack": 7, + "prog": 2, + "al": 3, + "bl": 3, + "s_execute1": 1, + "empty_state": 2, + "s_execute2": 1, + "s_compile": 36, + "s_compile1": 1, + "execute_theorem": 1, + "other": 20, + "other.": 4, + "app_ass.": 6, + "s_compile_correct": 1, + "app_nil_end.": 1, + "execute_theorem.": 1, + "Eqdep_dec.": 1, + "Arith.": 2, + "eq_rect_eq_nat": 2, + "Q": 3, + "eq_rect": 3, + "h.": 1, + "K_dec_set": 1, + "eq_nat_dec.": 1, + "Scheme": 1, + "le_ind": 1, + "le_n": 4, + "refl_equal": 4, + "pattern": 2, + "case": 2, + "contradiction": 8, + "m0": 1, + "HeqS": 3, + "HeqS.": 2, + "eq_rect_eq_nat.": 1, + "IHp": 2, + "dep_pair_intro": 2, + "<=n),>": 1, + "x=": 1, + "exist": 7, + "Heq.": 6, + "le_uniqueness_proof": 1, + "Hy0": 1, + "card": 2, + "card_interval": 1, + "<=n}>": 1, + "proj1_sig": 1, + "proj2_sig": 1, + "Hq": 3, + "Hpq.": 1, + "Hmn.": 1, + "Hmn": 1, + "interval_dec": 1, + "dep_pair_intro.": 3, + "eq_S.": 1, + "Hneq.": 2, + "card_inj_aux": 1, + "False.": 1, + "Hfbound": 1, + "Hfinj": 1, + "Hgsurj.": 1, + "Hgsurj": 3, + "Hfx": 2, + "le_n_O_eq.": 2, + "Hfbound.": 2, + "xSn": 21, + "bounded": 1, + "Hlefx": 1, + "Hgefx": 1, + "Hlefy": 1, + "Hgefy": 1, + "Hfinj.": 3, + "sym_not_eq.": 2, + "Heqf.": 2, + "Hneqy.": 2, + "le_lt_trans": 2, + "le_O_n.": 2, + "le_neq_lt": 2, + "Hneqx.": 2, + "pred_inj.": 1, + "lt_O_neq": 2, + "neq_dep_intro": 2, + "inj_restrict": 1, + "Heqf": 1, + "surjective": 1, + "Hlep.": 3, + "Hle": 1, + "Hlt": 3, + "Hfsurj": 2, + "le_n_S": 1, + "Hlep": 4, + "Hneq": 7, + "Heqx.": 2, + "Heqx": 4, + "Hle.": 1, + "le_not_lt": 1, + "lt_n_Sn.": 1, + "Hlt.": 1, + "lt_irrefl": 2, + "lt_le_trans": 1, + "Hneqx": 1, + "Hneqy": 1, + "Heqg": 1, + "Hdec": 3, + "Heqy": 1, + "Hginj": 1, + "HSnx.": 1, + "HSnx": 1, + "interval_discr": 1, + "<=m}>": 1, + "card_inj": 1, + "interval_dec.": 1, + "card_interval.": 2 + }, + "GAS": { + ".cstring": 1, + "LC0": 2, + ".ascii": 2, + ".text": 1, + ".globl": 2, + "_main": 2, + "LFB3": 4, + "pushq": 1, + "%": 6, + "rbp": 2, + "LCFI0": 3, + "movq": 1, + "rsp": 1, + "LCFI1": 2, + "leaq": 1, + "(": 1, + "rip": 1, + ")": 1, + "rdi": 1, + "call": 1, + "_puts": 1, + "movl": 1, + "eax": 1, + "leave": 1, + "ret": 1, + "LFE3": 2, + ".section": 1, + "__TEXT": 1, + "__eh_frame": 1, + "coalesced": 1, + "no_toc": 1, + "+": 2, + "strip_static_syms": 1, + "live_support": 1, + "EH_frame1": 2, + ".set": 5, + "L": 10, + "set": 10, + "LECIE1": 2, + "-": 7, + "LSCIE1": 2, + ".long": 6, + ".byte": 20, + "xc": 1, + ".align": 2, + "_main.eh": 2, + "LSFDE1": 1, + "LEFDE1": 2, + "LASFDE1": 3, + ".quad": 2, + ".": 1, + "xe": 1, + "xd": 1, + ".subsections_via_symbols": 1 + }, + "Verilog": { + "////////////////////////////////////////////////////////////////////////////////": 14, + "//": 117, + "timescale": 10, + "ns": 8, + "/": 11, + "ps": 8, + "module": 18, + "button_debounce": 3, + "(": 378, + "input": 68, + "clk": 40, + "clock": 3, + "reset_n": 32, + "asynchronous": 2, + "reset": 13, + "button": 25, + "bouncy": 1, + "output": 42, + "reg": 26, + "debounce": 6, + "debounced": 1, + "-": 73, + "cycle": 1, + "signal": 3, + ")": 378, + ";": 287, + "parameter": 7, + "CLK_FREQUENCY": 4, + "DEBOUNCE_HZ": 4, + "localparam": 4, + "COUNT_VALUE": 2, + "WAIT": 6, + "FIRE": 4, + "COUNT": 4, + "[": 179, + "]": 179, + "state": 6, + "next_state": 6, + "count": 6, + "always": 23, + "@": 16, + "posedge": 11, + "or": 14, + "negedge": 8, + "<": 47, + "begin": 46, + "if": 23, + "end": 48, + "else": 22, + "case": 3, + "<=>": 4, + "1": 7, + "endcase": 3, + "default": 2, + "endmodule": 18, + "pipeline_registers": 1, + "BIT_WIDTH": 5, + "pipe_in": 4, + "pipe_out": 5, + "NUMBER_OF_STAGES": 7, + "generate": 3, + "genvar": 3, + "i": 62, + "*": 4, + "BIT_WIDTH*": 5, + "pipe_gen": 6, + "for": 4, + "+": 36, + "pipeline": 2, + "BIT_WIDTH*i": 2, + "endgenerate": 3, + "ns/1ps": 2, + "e0": 1, + "x": 41, + "y": 21, + "assign": 23, + "{": 11, + "}": 11, + "e1": 1, + "ch": 1, + "z": 7, + "o": 6, + "&": 6, + "maj": 1, + "|": 2, + "s0": 1, + "s1": 1, + "ps2_mouse": 1, + "Clock": 14, + "Input": 2, + "Reset": 1, + "inout": 2, + "ps2_clk": 3, + "PS2": 2, + "Bidirectional": 2, + "ps2_dat": 3, + "Data": 13, + "the_command": 2, + "Command": 1, + "to": 3, + "send": 2, + "mouse": 1, + "send_command": 2, + "Signal": 2, + "command_was_sent": 2, + "command": 1, + "finished": 1, + "sending": 1, + "error_communication_timed_out": 3, + "received_data": 2, + "Received": 1, + "data": 4, + "received_data_en": 4, + "If": 1, + "new": 1, + "has": 1, + "been": 1, + "received": 1, + "start_receiving_data": 3, + "wait_for_incoming_data": 3, + "wire": 67, + "ps2_clk_posedge": 3, + "Internal": 2, + "Wires": 1, + "ps2_clk_negedge": 3, + "idle_counter": 4, + "Registers": 2, + "ps2_clk_reg": 4, + "ps2_data_reg": 5, + "last_ps2_clk": 4, + "ns_ps2_transceiver": 13, + "State": 1, + "Machine": 1, + "s_ps2_transceiver": 8, + "PS2_STATE_0_IDLE": 10, + "h1": 1, + "PS2_STATE_2_COMMAND_OUT": 2, + "h3": 1, + "PS2_STATE_4_END_DELAYED": 4, + "b1": 19, + "Defaults": 1, + "PS2_STATE_1_DATA_IN": 3, + "||": 1, + "b0": 27, + "PS2_STATE_3_END_TRANSFER": 3, + "h00": 1, + "&&": 3, + "h01": 1, + "ps2_mouse_cmdout": 1, + "mouse_cmdout": 1, + ".clk": 6, + "Inputs": 2, + ".reset": 2, + ".the_command": 1, + ".send_command": 1, + ".ps2_clk_posedge": 2, + ".ps2_clk_negedge": 2, + ".ps2_clk": 1, + "Bidirectionals": 1, + ".ps2_dat": 1, + ".command_was_sent": 1, + "Outputs": 2, + ".error_communication_timed_out": 1, + "ps2_mouse_datain": 1, + "mouse_datain": 1, + ".wait_for_incoming_data": 1, + ".start_receiving_data": 1, + ".ps2_data": 1, + ".received_data": 1, + ".received_data_en": 1, + "hex_display": 1, + "num": 5, + "en": 13, + "hex0": 2, + "hex1": 2, + "hex2": 2, + "hex3": 2, + "seg_7": 4, + "hex_group0": 1, + ".num": 4, + ".en": 4, + ".seg": 4, + "hex_group1": 1, + "hex_group2": 1, + "hex_group3": 1, + "t_div_pipelined": 1, + "start": 12, + "dividend": 3, + "divisor": 5, + "data_valid": 7, + "div_by_zero": 2, + "quotient": 2, + "quotient_correct": 1, + "BITS": 2, + "div_pipelined": 2, + "#": 10, + ".BITS": 1, + ".reset_n": 3, + ".dividend": 1, + ".divisor": 1, + ".quotient": 1, + ".div_by_zero": 1, + ".start": 2, + ".data_valid": 2, + "initial": 3, + "#10": 10, + "#50": 2, + "#1": 1, + "#1000": 1, + "finish": 2, + "#5": 3, + "sqrt_pipelined": 3, + "optional": 2, + "INPUT_BITS": 28, + "radicand": 12, + "unsigned": 2, + "valid": 2, + "OUTPUT_BITS": 14, + "root": 8, + "number": 2, + "of": 8, + "bits": 2, + "any": 1, + "integer": 1, + "%": 3, + "start_gen": 7, + "propagation": 1, + "OUTPUT_BITS*INPUT_BITS": 9, + "root_gen": 15, + "values": 3, + "radicand_gen": 10, + "mask_gen": 9, + "mask": 3, + "mask_4": 1, + "is": 4, + "odd": 1, + "this": 2, + "a": 5, + "INPUT_BITS*": 27, + "<<": 2, + "i/2": 2, + "even": 1, + "pipeline_stage": 1, + "INPUT_BITS*i": 5, + "t_sqrt_pipelined": 1, + ".INPUT_BITS": 1, + ".radicand": 1, + ".root": 1, + "bx": 4, + "#10000": 1, + "vga": 1, + "wb_clk_i": 6, + "Mhz": 1, + "VDU": 1, + "wb_rst_i": 6, + "wb_dat_i": 3, + "wb_dat_o": 2, + "wb_adr_i": 3, + "wb_we_i": 3, + "wb_tga_i": 5, + "wb_sel_i": 3, + "wb_stb_i": 2, + "wb_cyc_i": 2, + "wb_ack_o": 2, + "vga_red_o": 2, + "vga_green_o": 2, + "vga_blue_o": 2, + "horiz_sync": 2, + "vert_sync": 2, + "csrm_adr_o": 2, + "csrm_sel_o": 2, + "csrm_we_o": 2, + "csrm_dat_o": 2, + "csrm_dat_i": 2, + "csr_adr_i": 3, + "csr_stb_i": 2, + "conf_wb_dat_o": 3, + "conf_wb_ack_o": 3, + "mem_wb_dat_o": 3, + "mem_wb_ack_o": 3, + "csr_adr_o": 2, + "csr_dat_i": 3, + "csr_stb_o": 3, + "v_retrace": 3, + "vh_retrace": 3, + "w_vert_sync": 3, + "shift_reg1": 3, + "graphics_alpha": 4, + "memory_mapping1": 3, + "write_mode": 3, + "raster_op": 3, + "read_mode": 3, + "bitmask": 3, + "set_reset": 3, + "enable_set_reset": 3, + "map_mask": 3, + "x_dotclockdiv2": 3, + "chain_four": 3, + "read_map_select": 3, + "color_compare": 3, + "color_dont_care": 3, + "wbm_adr_o": 3, + "wbm_sel_o": 3, + "wbm_we_o": 3, + "wbm_dat_o": 3, + "wbm_dat_i": 3, + "wbm_stb_o": 3, + "wbm_ack_i": 3, + "stb": 4, + "cur_start": 3, + "cur_end": 3, + "start_addr": 2, + "vcursor": 3, + "hcursor": 3, + "horiz_total": 3, + "end_horiz": 3, + "st_hor_retr": 3, + "end_hor_retr": 3, + "vert_total": 3, + "end_vert": 3, + "st_ver_retr": 3, + "end_ver_retr": 3, + "pal_addr": 3, + "pal_we": 3, + "pal_read": 3, + "pal_write": 3, + "dac_we": 3, + "dac_read_data_cycle": 3, + "dac_read_data_register": 3, + "dac_read_data": 3, + "dac_write_data_cycle": 3, + "dac_write_data_register": 3, + "dac_write_data": 3, + "vga_config_iface": 1, + "config_iface": 1, + ".wb_clk_i": 2, + ".wb_rst_i": 2, + ".wb_dat_i": 2, + ".wb_dat_o": 2, + ".wb_adr_i": 2, + ".wb_we_i": 2, + ".wb_sel_i": 2, + ".wb_stb_i": 2, + ".wb_ack_o": 2, + ".shift_reg1": 2, + ".graphics_alpha": 2, + ".memory_mapping1": 2, + ".write_mode": 2, + ".raster_op": 2, + ".read_mode": 2, + ".bitmask": 2, + ".set_reset": 2, + ".enable_set_reset": 2, + ".map_mask": 2, + ".x_dotclockdiv2": 2, + ".chain_four": 2, + ".read_map_select": 2, + ".color_compare": 2, + ".color_dont_care": 2, + ".pal_addr": 2, + ".pal_we": 2, + ".pal_read": 2, + ".pal_write": 2, + ".dac_we": 2, + ".dac_read_data_cycle": 2, + ".dac_read_data_register": 2, + ".dac_read_data": 2, + ".dac_write_data_cycle": 2, + ".dac_write_data_register": 2, + ".dac_write_data": 2, + ".cur_start": 2, + ".cur_end": 2, + ".start_addr": 1, + ".vcursor": 2, + ".hcursor": 2, + ".horiz_total": 2, + ".end_horiz": 2, + ".st_hor_retr": 2, + ".end_hor_retr": 2, + ".vert_total": 2, + ".end_vert": 2, + ".st_ver_retr": 2, + ".end_ver_retr": 2, + ".v_retrace": 2, + ".vh_retrace": 2, + "vga_lcd": 1, + "lcd": 1, + ".rst": 1, + ".csr_adr_o": 1, + ".csr_dat_i": 1, + ".csr_stb_o": 1, + ".vga_red_o": 1, + ".vga_green_o": 1, + ".vga_blue_o": 1, + ".horiz_sync": 1, + ".vert_sync": 1, + "vga_cpu_mem_iface": 1, + "cpu_mem_iface": 1, + ".wbs_adr_i": 1, + ".wbs_sel_i": 1, + ".wbs_we_i": 1, + ".wbs_dat_i": 1, + ".wbs_dat_o": 1, + ".wbs_stb_i": 1, + ".wbs_ack_o": 1, + ".wbm_adr_o": 1, + ".wbm_sel_o": 1, + ".wbm_we_o": 1, + ".wbm_dat_o": 1, + ".wbm_dat_i": 1, + ".wbm_stb_o": 1, + ".wbm_ack_i": 1, + "vga_mem_arbitrer": 1, + "mem_arbitrer": 1, + ".clk_i": 1, + ".rst_i": 1, + ".csr_adr_i": 1, + ".csr_dat_o": 1, + ".csr_stb_i": 1, + ".csrm_adr_o": 1, + ".csrm_sel_o": 1, + ".csrm_we_o": 1, + ".csrm_dat_o": 1, + ".csrm_dat_i": 1, + "mux": 1, + "opA": 4, + "opB": 3, + "sum": 5, + "dsp_sel": 9, + "out": 5, + "cout": 4, + "b0000": 1, + "b01": 1, + "b11": 1, + "t_button_debounce": 1, + ".CLK_FREQUENCY": 1, + ".DEBOUNCE_HZ": 1, + ".button": 1, + ".debounce": 1, + "#100": 1, + "#0.1": 8, + "sign_extender": 1, + "INPUT_WIDTH": 5, + "OUTPUT_WIDTH": 4, + "original": 3, + "sign_extended_original": 2, + "sign_extend": 3, + "gen_sign_extend": 1, + "control": 1, + "an": 6, + "b": 3, + "c": 3, + "d": 3, + "e": 3, + "f": 2, + "g": 2, + "h": 2, + "j": 2, + "k": 2, + "l": 2, + "FDRSE": 6, + ".INIT": 6, + "Synchronous": 12, + ".S": 6, + "Initial": 6, + "value": 6, + "register": 6, + "DFF2": 1, + ".Q": 6, + ".C": 6, + ".CE": 6, + "enable": 6, + ".D": 6, + ".R": 6, + "set": 6, + "DFF0": 1, + "DFF6": 1, + "DFF4": 1, + "DFF10": 1, + "DFF8": 1 + }, + "Apex": { + "global": 70, + "class": 7, + "LanguageUtils": 1, + "{": 219, + "static": 83, + "final": 6, + "String": 60, + "HTTP_LANGUAGE_CODE_PARAMETER_KEY": 2, + ";": 308, + "DEFAULT_LANGUAGE_CODE": 3, + "Set": 6, + "": 30, + "SUPPORTED_LANGUAGE_CODES": 2, + "new": 60, + "//Chinese": 2, + "(": 481, + "Simplified": 1, + ")": 481, + "Traditional": 1, + "//Dutch": 1, + "//English": 1, + "//Finnish": 1, + "//French": 1, + "//German": 1, + "//Italian": 1, + "//Japanese": 1, + "//Korean": 1, + "//Polish": 1, + "//Portuguese": 1, + "Brazilian": 1, + "//Russian": 1, + "//Spanish": 1, + "//Swedish": 1, + "//Thai": 1, + "//Czech": 1, + "//Danish": 1, + "//Hungarian": 1, + "//Indonesian": 1, + "//Turkish": 1, + "}": 219, + "private": 10, + "Map": 33, + "": 29, + "DEFAULTS": 1, + "getLangCodeByHttpParam": 4, + "returnValue": 22, + "null": 92, + "LANGUAGE_CODE_SET": 1, + "getSuppLangCodeSet": 2, + "if": 91, + "ApexPages.currentPage": 4, + "&&": 46, + ".getParameters": 2, + "LANGUAGE_HTTP_PARAMETER": 7, + "StringUtils.lowerCase": 3, + "StringUtils.replaceChars": 2, + ".get": 4, + "//underscore": 1, + "//dash": 1, + "DEFAULTS.containsKey": 3, + "DEFAULTS.get": 3, + "StringUtils.isNotBlank": 1, + "SUPPORTED_LANGUAGE_CODES.contains": 2, + "return": 106, + "getLangCodeByBrowser": 4, + "LANGUAGES_FROM_BROWSER_AS_STRING": 2, + ".getHeaders": 1, + "List": 71, + "LANGUAGES_FROM_BROWSER_AS_LIST": 3, + "splitAndFilterAcceptLanguageHeader": 2, + "LANGUAGES_FROM_BROWSER_AS_LIST.size": 1, + "for": 24, + "languageFromBrowser": 6, + "getLangCodeByUser": 3, + "UserInfo.getLanguage": 1, + "getLangCodeByHttpParamOrIfNullThenBrowser": 1, + "StringUtils.defaultString": 4, + "getLangCodeByHttpParamOrIfNullThenUser": 1, + "getLangCodeByBrowserOrIfNullThenHttpParam": 1, + "getLangCodeByBrowserOrIfNullThenUser": 1, + "header": 2, + "returnList": 11, + "[": 102, + "]": 102, + "tokens": 3, + "StringUtils.split": 1, + "token": 7, + "token.contains": 1, + "token.substring": 1, + "token.indexOf": 1, + "returnList.add": 8, + "StringUtils.length": 1, + "StringUtils.substring": 1, + "langCodes": 2, + "langCode": 3, + "langCodes.add": 1, + "getLanguageName": 1, + "displayLanguageCode": 13, + "languageCode": 2, + "translatedLanguageNames.get": 2, + "filterLanguageCode": 4, + "getAllLanguages": 3, + "translatedLanguageNames.containsKey": 1, + "<": 32, + "translatedLanguageNames": 1, + "BooleanUtils": 1, + "Boolean": 38, + "isFalse": 1, + "bool": 32, + "false": 13, + "else": 25, + "isNotFalse": 1, + "true": 12, + "isNotTrue": 1, + "isTrue": 1, + "negate": 1, + "toBooleanDefaultIfNull": 1, + "defaultVal": 2, + "toBoolean": 2, + "Integer": 34, + "value": 10, + "strToBoolean": 1, + "StringUtils.equalsIgnoreCase": 1, + "//Converts": 1, + "an": 4, + "int": 1, + "to": 4, + "a": 6, + "boolean": 1, + "specifying": 1, + "//the": 2, + "conversion": 1, + "values.": 1, + "//Returns": 1, + "//Throws": 1, + "trueValue": 2, + "falseValue": 2, + "throw": 6, + "IllegalArgumentException": 5, + "toInteger": 1, + "toStringYesNo": 1, + "toStringYN": 1, + "toString": 3, + "trueString": 2, + "falseString": 2, + "xor": 1, + "boolArray": 4, + "||": 12, + "boolArray.size": 1, + "firstItem": 2, + "TwilioAPI": 2, + "MissingTwilioConfigCustomSettingsException": 2, + "extends": 1, + "Exception": 1, + "TwilioRestClient": 5, + "client": 2, + "public": 10, + "getDefaultClient": 2, + "TwilioConfig__c": 5, + "twilioCfg": 7, + "getTwilioConfig": 3, + "TwilioAPI.client": 2, + "twilioCfg.AccountSid__c": 3, + "twilioCfg.AuthToken__c": 3, + "TwilioAccount": 1, + "getDefaultAccount": 1, + ".getAccount": 2, + "TwilioCapability": 2, + "createCapability": 1, + "createClient": 1, + "accountSid": 2, + "authToken": 2, + "Test.isRunningTest": 1, + "//": 11, + "dummy": 2, + "sid": 1, + "TwilioConfig__c.getOrgDefaults": 1, + "@isTest": 1, + "void": 9, + "test_TwilioAPI": 1, + "System.assertEquals": 5, + "TwilioAPI.getTwilioConfig": 2, + ".AccountSid__c": 1, + ".AuthToken__c": 1, + "TwilioAPI.getDefaultClient": 2, + ".getAccountSid": 1, + ".getSid": 2, + "TwilioAPI.getDefaultAccount": 1, + "EmailUtils": 1, + "sendEmailWithStandardAttachments": 3, + "recipients": 11, + "emailSubject": 10, + "body": 8, + "useHTML": 6, + "": 1, + "attachmentIDs": 2, + "": 2, + "stdAttachments": 4, + "SELECT": 1, + "id": 1, + "name": 2, + "FROM": 1, + "Attachment": 2, + "WHERE": 1, + "Id": 1, + "IN": 1, + "": 3, + "fileAttachments": 5, + "attachment": 1, + "Messaging.EmailFileAttachment": 2, + "fileAttachment": 2, + "fileAttachment.setFileName": 1, + "attachment.Name": 1, + "fileAttachment.setBody": 1, + "attachment.Body": 1, + "fileAttachments.add": 1, + "sendEmail": 4, + "sendTextEmail": 1, + "textBody": 2, + "sendHTMLEmail": 1, + "htmlBody": 2, + "recipients.size": 1, + "Messaging.SingleEmailMessage": 3, + "mail": 2, + "email": 1, + "is": 5, + "not": 3, + "saved": 1, + "as": 1, + "activity.": 1, + "mail.setSaveAsActivity": 1, + "mail.setToAddresses": 1, + "mail.setSubject": 1, + "mail.setBccSender": 1, + "mail.setUseSignature": 1, + "mail.setHtmlBody": 1, + "mail.setPlainTextBody": 1, + "fileAttachments.size": 1, + "mail.setFileAttachments": 1, + "Messaging.sendEmail": 1, + "isValidEmailAddress": 2, + "str": 10, + "str.trim": 3, + ".length": 2, + "split": 5, + "str.split": 1, + "split.size": 2, + ".split": 1, + "isNotValidEmailAddress": 1, + "ArrayUtils": 1, + "EMPTY_STRING_ARRAY": 1, + "MAX_NUMBER_OF_ELEMENTS_IN_LIST": 5, + "get": 4, + "objectToString": 1, + "": 22, + "objects": 3, + "strings": 3, + "objects.size": 1, + "Object": 23, + "obj": 3, + "instanceof": 1, + "strings.add": 1, + "reverse": 2, + "anArray": 14, + "i": 55, + "j": 10, + "anArray.size": 2, + "-": 18, + "tmp": 6, + "while": 8, + "+": 75, + "SObject": 19, + "lowerCase": 1, + "strs": 9, + "strs.size": 3, + "returnValue.add": 3, + "str.toLowerCase": 1, + "upperCase": 1, + "str.toUpperCase": 1, + "trim": 1, + "mergex": 2, + "array1": 8, + "array2": 9, + "merged": 6, + "array1.size": 4, + "array2.size": 2, + "": 19, + "sObj": 4, + "merged.add": 2, + "isEmpty": 7, + "objectArray": 17, + "objectArray.size": 6, + "isNotEmpty": 4, + "pluck": 1, + "fieldName": 3, + "fieldName.trim": 2, + "plucked": 3, + "assertArraysAreEqual": 2, + "expected": 16, + "actual": 16, + "//check": 2, + "see": 2, + "one": 2, + "param": 2, + "but": 2, + "the": 4, + "other": 2, + "System.assert": 6, + "ArrayUtils.toString": 12, + "expected.size": 4, + "actual.size": 2, + "merg": 2, + "list1": 15, + "list2": 9, + "list1.size": 6, + "list2.size": 2, + "elmt": 8, + "subset": 6, + "aList": 4, + "count": 10, + "startIndex": 9, + "<=>": 2, + "size": 2, + "1": 2, + "list1.get": 2, + "//LIST/ARRAY": 1, + "SORTING": 1, + "//FOR": 2, + "FORCE.COM": 1, + "PRIMITIVES": 1, + "Double": 1, + "ID": 1, + "etc.": 1, + "qsort": 18, + "theList": 72, + "PrimitiveComparator": 2, + "sortAsc": 24, + "ObjectComparator": 3, + "comparator": 14, + "theList.size": 2, + "SALESFORCE": 1, + "OBJECTS": 1, + "sObjects": 1, + "ISObjectComparator": 3, + "lo0": 6, + "hi0": 8, + "lo": 42, + "hi": 50, + "comparator.compare": 12, + "prs": 8, + "pivot": 14, + "/": 4, + "GeoUtils": 1, + "generate": 1, + "KML": 1, + "string": 7, + "given": 2, + "page": 1, + "reference": 1, + "call": 1, + "getContent": 1, + "then": 1, + "cleanup": 1, + "output.": 1, + "generateFromContent": 1, + "PageReference": 2, + "pr": 1, + "ret": 7, + "try": 1, + "pr.getContent": 1, + ".toString": 1, + "ret.replaceAll": 4, + "content": 1, + "produces": 1, + "quote": 1, + "chars": 1, + "we": 1, + "need": 1, + "escape": 1, + "these": 2, + "in": 1, + "node": 1, + "catch": 1, + "exception": 1, + "e": 2, + "system.debug": 2, + "must": 1, + "use": 1, + "ALL": 1, + "since": 1, + "many": 1, + "line": 1, + "may": 1, + "also": 1, + "": 2, + "geo_response": 1, + "accountAddressString": 2, + "account": 2, + "acct": 1, + "form": 1, + "address": 1, + "object": 1, + "adr": 9, + "acct.billingstreet": 1, + "acct.billingcity": 1, + "acct.billingstate": 1, + "acct.billingpostalcode": 2, + "acct.billingcountry": 2, + "adr.replaceAll": 4, + "testmethod": 1, + "t1": 1, + "pageRef": 3, + "Page.kmlPreviewTemplate": 1, + "Test.setCurrentPage": 1, + "system.assert": 1, + "GeoUtils.generateFromContent": 1, + "Account": 2, + "billingstreet": 1, + "billingcity": 1, + "billingstate": 1, + "billingpostalcode": 1, + "billingcountry": 1, + "insert": 1, + "system.assertEquals": 1 + }, +<<<<<<< HEAD "Prolog": { "-": 161, "module": 3, @@ -54061,2348 +82305,8157 @@ "stay": 1, "right": 1, "L": 2 - }, - "Propeller Spin": { - "{": 26, - "*****************************************": 4, - "*": 143, - "x4": 4, - "Keypad": 1, - "Reader": 1, - "v1.0": 4, - "Author": 8, - "Beau": 2, - "Schwabe": 2, - "Copyright": 10, - "(": 356, - "c": 33, - ")": 356, - "Parallax": 10, - "See": 10, - "end": 12, - "of": 108, - "file": 9, - "for": 70, - "terms": 9, - "use.": 9, - "}": 26, - "Operation": 2, - "This": 3, - "object": 7, - "uses": 2, - "a": 72, - "capacitive": 1, - "PIN": 1, - "approach": 1, - "to": 191, - "reading": 1, - "the": 136, - "keypad.": 1, - "To": 3, - "do": 26, - "so": 11, - "ALL": 2, - "pins": 26, - "are": 18, - "made": 2, - "LOW": 2, - "and": 95, - "an": 12, - "OUTPUT": 2, - "I/O": 3, - "pins.": 1, - "Then": 1, - "set": 42, - "INPUT": 2, - "state.": 1, - "At": 1, - "this": 26, - "point": 21, - "only": 63, - "one": 4, - "pin": 18, - "is": 51, - "HIGH": 3, - "at": 26, - "time.": 2, - "If": 2, - "closed": 1, - "then": 5, - "will": 12, - "be": 46, - "read": 29, - "on": 12, - "input": 2, - "otherwise": 1, - "returned.": 1, - "The": 17, - "keypad": 4, - "decoding": 1, - "routine": 1, - "requires": 3, - "two": 6, - "subroutines": 1, - "returns": 6, - "entire": 1, - "matrix": 1, - "into": 19, - "single": 2, - "WORD": 1, - "variable": 1, - "indicating": 1, - "which": 16, - "buttons": 2, - "pressed.": 1, - "Multiple": 1, - "button": 2, - "presses": 1, - "allowed": 1, - "with": 8, - "understanding": 1, - "that": 10, - "BOX": 2, - "entries": 1, - "can": 4, - "confused.": 1, - "An": 1, - "example": 3, - "entry...": 1, - "or": 43, - "#": 97, - "etc.": 1, - "where": 2, - "any": 15, - "pressed": 3, - "evaluate": 1, - "non": 3, - "as": 8, - "being": 2, - "even": 1, - "when": 3, - "they": 2, - "not.": 1, - "There": 1, - "no": 7, - "danger": 1, - "physical": 1, - "electrical": 1, - "damage": 1, - "s": 16, - "just": 2, - "way": 1, - "sensing": 1, - "method": 2, - "happens": 1, - "work.": 1, - "Schematic": 1, - "No": 2, - "resistors": 4, - "capacitors.": 1, - "connections": 1, - "directly": 1, - "from": 21, - "Clear": 2, - "value": 51, - "ReadRow": 4, - "Shift": 3, - "left": 12, - "by": 17, - "preset": 1, - "P0": 2, - "P7": 2, - "LOWs": 1, - "dira": 3, - "[": 35, - "]": 34, - "make": 16, - "INPUTSs": 1, - "...": 5, - "now": 3, - "act": 1, - "like": 4, - "tiny": 1, - "capacitors": 1, - "outa": 2, - "n": 4, - "Pin": 1, - "OUTPUT...": 1, - "Make": 1, - ";": 2, - "charge": 10, - "+": 759, - "ina": 3, - "Pn": 1, - "remain": 1, - "discharged": 1, - "DAT": 7, - "TERMS": 9, - "OF": 49, - "USE": 19, - "MIT": 9, - "License": 9, - "Permission": 9, - "hereby": 9, - "granted": 9, - "free": 10, - "person": 9, - "obtaining": 9, - "copy": 21, - "software": 9, - "associated": 11, - "documentation": 9, - "files": 9, - "deal": 9, - "in": 53, - "Software": 28, - "without": 19, - "restriction": 9, - "including": 9, - "limitation": 9, - "rights": 9, - "use": 19, - "modify": 9, - "merge": 9, - "publish": 9, - "distribute": 9, - "sublicense": 9, - "and/or": 9, - "sell": 9, - "copies": 18, - "permit": 9, - "persons": 9, - "whom": 9, - "furnished": 9, - "subject": 9, - "following": 9, - "conditions": 9, - "above": 11, - "copyright": 9, - "notice": 18, - "permission": 9, - "shall": 9, - "included": 9, - "all": 14, - "substantial": 9, - "portions": 9, - "Software.": 9, - "THE": 59, - "SOFTWARE": 19, - "IS": 10, - "PROVIDED": 9, - "WITHOUT": 10, - "WARRANTY": 10, - "ANY": 20, - "KIND": 10, - "EXPRESS": 10, - "OR": 70, - "IMPLIED": 10, - "INCLUDING": 10, - "BUT": 10, - "NOT": 11, - "LIMITED": 10, - "TO": 10, - "WARRANTIES": 10, - "MERCHANTABILITY": 10, - "FITNESS": 10, - "FOR": 20, - "A": 21, - "PARTICULAR": 10, - "PURPOSE": 10, - "AND": 10, - "NONINFRINGEMENT.": 10, - "IN": 40, - "NO": 10, - "EVENT": 10, - "SHALL": 10, - "AUTHORS": 10, - "COPYRIGHT": 10, - "HOLDERS": 10, - "BE": 10, - "LIABLE": 10, - "CLAIM": 10, - "DAMAGES": 10, - "OTHER": 20, - "LIABILITY": 10, - "WHETHER": 10, - "AN": 10, - "ACTION": 10, - "CONTRACT": 10, - "TORT": 10, - "OTHERWISE": 10, - "ARISING": 10, - "FROM": 10, - "OUT": 10, - "CONNECTION": 10, - "WITH": 10, - "DEALINGS": 10, - "SOFTWARE.": 10, - "****************************************": 4, - "Debug_Lcd": 1, - "v1.2": 2, - "Authors": 1, - "Jon": 2, - "Williams": 2, - "Jeff": 2, - "Martin": 2, - "Inc.": 8, - "Debugging": 1, - "wrapper": 1, - "Serial_Lcd": 1, - "-": 486, - "March": 1, - "Updated": 4, - "conform": 1, - "Propeller": 3, - "initialization": 2, - "standards.": 1, - "v1.1": 8, - "April": 1, - "consistency.": 1, - "OBJ": 2, - "lcd": 2, - "number": 27, - "string": 8, - "conversion": 1, - "PUB": 63, - "init": 2, - "baud": 2, - "lines": 24, - "okay": 11, - "Initializes": 1, - "serial": 1, - "LCD": 4, - "true": 6, - "if": 53, - "parameters": 19, - "lcd.init": 1, - "finalize": 1, - "Finalizes": 1, - "frees": 6, - "floats": 1, - "lcd.finalize": 1, - "putc": 1, - "txbyte": 2, - "Send": 1, - "byte": 27, - "terminal": 4, - "lcd.putc": 1, - "str": 3, - "strAddr": 2, - "Print": 15, - "zero": 10, - "terminated": 4, - "lcd.str": 8, - "dec": 3, - "signed": 4, - "decimal": 5, - "num.dec": 1, - "decf": 1, - "width": 9, - "Prints": 2, - "space": 1, - "padded": 2, - "fixed": 1, - "field": 4, - "num.decf": 1, - "decx": 1, - "digits": 23, - "negative": 2, - "num.decx": 1, - "hex": 3, - "hexadecimal": 4, - "num.hex": 1, - "ihex": 1, - "indicated": 2, - "num.ihex": 1, - "bin": 3, - "binary": 4, - "num.bin": 1, - "ibin": 1, - "%": 162, - "num.ibin": 1, - "cls": 1, - "Clears": 2, - "moves": 1, - "cursor": 9, - "home": 4, - "position": 9, - "lcd.cls": 1, - "Moves": 2, - "lcd.home": 1, - "gotoxy": 1, - "col": 9, - "line": 33, - "col/line": 1, - "lcd.gotoxy": 1, - "clrln": 1, - "lcd.clrln": 1, - "type": 4, - "Selects": 1, - "off": 8, - "blink": 4, - "lcd.cursor": 1, - "display": 23, - "status": 15, - "Controls": 1, - "visibility": 1, - "false": 7, - "hide": 1, - "contents": 3, - "clearing": 1, - "lcd.displayOn": 1, - "else": 3, - "lcd.displayOff": 1, - "custom": 2, - "char": 2, - "chrDataAddr": 3, - "Installs": 1, - "character": 6, +======= + "Scala": { + "SHEBANG#!sh": 2, + "exec": 2, + "scala": 2, + "#": 2, + "object": 3, + "HelloWorld": 1, + "{": 21, + "def": 10, + "main": 1, + "(": 67, + "args": 1, + "Array": 1, + "[": 11, + "String": 5, + "]": 11, + ")": 67, + "println": 8, + "}": 22, + "name": 4, + "version": 1, + "organization": 1, + "libraryDependencies": 3, + "+": 49, + "%": 12, + "Seq": 3, + "val": 6, + "libosmVersion": 4, + "from": 1, + "maxErrors": 1, + "pollInterval": 1, + "javacOptions": 1, + "scalacOptions": 1, + "scalaVersion": 1, + "initialCommands": 2, + "in": 12, + "console": 1, + "mainClass": 2, + "Compile": 4, + "packageBin": 1, + "Some": 6, + "run": 1, + "watchSources": 1, + "<+=>": 1, + "baseDirectory": 1, "map": 1, - "address": 16, - "definition": 9, - "array": 1, - "lcd.custom": 1, - "backLight": 1, - "Enable": 1, - "disable": 7, - "backlight": 1, - "affects": 1, - "backlit": 1, - "models": 1, - "lcd.backLight": 1, - "***************************************": 12, - "Graphics": 3, - "Driver": 4, - "Chip": 7, - "Gracey": 7, - "Theory": 1, - "cog": 39, - "launched": 1, - "processes": 1, - "commands": 1, - "via": 5, - "routines.": 1, - "Points": 1, - "arcs": 1, - "sprites": 1, - "text": 9, - "polygons": 1, - "rasterized": 1, - "specified": 1, - "stretch": 1, - "memory": 2, - "serves": 1, - "generic": 1, - "bitmap": 15, - "buffer.": 1, - "displayed": 1, - "TV.SRC": 1, - "VGA.SRC": 1, - "driver.": 3, - "GRAPHICS_DEMO.SRC": 1, - "usage": 1, - "example.": 1, - "CON": 4, - "#1": 47, - "_setup": 1, - "_color": 2, - "_width": 2, - "_plot": 2, - "_line": 2, - "_arc": 2, - "_vec": 2, - "_vecarc": 2, - "_pix": 1, - "_pixarc": 1, - "_text": 2, - "_textarc": 1, - "_textmode": 2, - "_fill": 1, - "_loop": 5, - "VAR": 10, - "long": 122, - "command": 7, - "bitmap_base": 7, - "pixel": 40, - "data": 47, - "slices": 3, - "text_xs": 1, - "text_ys": 1, - "text_sp": 1, - "text_just": 1, - "font": 3, - "pointer": 14, - "same": 7, - "instances": 1, - "stop": 9, - "cognew": 4, - "@loop": 1, - "@command": 1, - "Stop": 6, - "graphics": 4, - "driver": 17, - "cogstop": 3, - "setup": 3, - "x_tiles": 9, - "y_tiles": 9, - "x_origin": 2, - "y_origin": 2, - "base_ptr": 3, - "|": 22, - "bases_ptr": 3, - "slices_ptr": 1, - "Set": 5, - "x": 112, - "tiles": 19, - "x16": 7, - "pixels": 14, - "each": 11, - "y": 80, - "relative": 2, - "center": 10, - "base": 6, - "setcommand": 13, - "write": 36, - "bases": 2, - "<<": 70, - "retain": 2, - "high": 7, - "level": 5, - "bitmap_longs": 1, - "clear": 5, - "dest_ptr": 2, - "Copy": 1, - "double": 2, - "buffered": 1, - "flicker": 5, - "destination": 1, - "color": 39, - "bit": 35, - "pattern": 2, - "code": 3, - "bits": 29, - "@colors": 2, - "&": 21, - "determine": 2, - "shape/width": 2, - "w": 8, - "F": 18, - "pixel_width": 1, - "pixel_passes": 2, - "@w": 1, - "update": 7, - "new": 6, - "repeat": 18, - "i": 24, - "p": 8, - "E": 7, - "r": 4, - "<": 14, - "colorwidth": 1, - "plot": 17, - "Plot": 3, - "@x": 6, - "Draw": 7, - "endpoint": 1, - "arc": 21, - "xr": 7, - "yr": 7, - "angle": 23, - "anglestep": 2, - "steps": 9, - "arcmode": 2, - "radii": 3, - "initial": 6, - "FFF": 3, - "..359.956": 3, - "step": 9, - "leaves": 1, - "between": 4, - "points": 2, - "vec": 1, - "vecscale": 5, - "vecangle": 5, - "vecdef_ptr": 5, - "vector": 12, - "sprite": 14, - "scale": 7, - "rotation": 3, - "Vector": 2, - "word": 212, - "length": 4, - "vecarc": 2, - "pix": 3, - "pixrot": 3, - "pixdef_ptr": 3, - "mirror": 1, - "Pixel": 1, - "justify": 4, - "draw": 5, - "textarc": 1, - "string_ptr": 6, - "justx": 2, - "justy": 3, - "it": 8, - "may": 6, - "necessary": 1, - "call": 44, - ".finish": 1, - "immediately": 1, - "afterwards": 1, - "prevent": 1, - "subsequent": 1, - "clobbering": 1, - "drawn": 1, - "@justx": 1, - "@x_scale": 1, - "get": 30, - "half": 2, - "min": 4, - "max": 6, - "pmin": 1, - "round/square": 1, - "corners": 1, - "y2": 7, - "x2": 6, - "fill": 3, - "pmax": 2, - "triangle": 3, - "sides": 1, - "polygon": 1, - "tri": 2, - "x3": 4, - "y3": 5, - "y4": 1, - "x1": 5, - "y1": 7, - "xy": 1, - "solid": 1, - "/": 27, - "finish": 2, - "Wait": 2, - "current": 3, - "insure": 2, - "safe": 1, - "manually": 1, - "manipulate": 1, - "while": 5, - "primitives": 1, - "xa0": 53, - "start": 16, - "ya1": 3, - "ya2": 1, - "ya3": 2, - "ya4": 40, - "ya5": 3, - "ya6": 21, - "ya7": 9, - "ya8": 19, - "ya9": 5, - "yaA": 18, - "yaB": 4, - "yaC": 12, - "yaD": 4, - "yaE": 1, - "yaF": 1, - "xb0": 19, - "yb1": 2, - "yb2": 1, - "yb3": 4, - "yb4": 15, - "yb5": 2, - "yb6": 7, - "yb7": 3, - "yb8": 20, - "yb9": 5, - "ybA": 8, - "ybB": 1, - "ybC": 32, - "ybD": 1, - "ybE": 1, - "ybF": 1, - "ax1": 11, - "radius": 2, - "ay2": 23, - "ay3": 6, - "ay4": 4, - "a0": 8, - "a2": 1, - "farc": 41, - "another": 7, - "arc/line": 1, - "Round": 1, - "recipes": 1, - "C": 11, - "D": 18, - "fline": 88, - "xa2": 48, - "xb2": 26, - "xa1": 8, - "xb1": 2, - "more": 90, - "xa3": 8, - "xb3": 6, - "xb4": 35, - "a9": 3, - "ax2": 30, - "ay1": 10, - "a7": 2, - "aE": 1, - "aC": 2, - ".": 2, - "aF": 4, - "aD": 3, - "aB": 2, - "xa4": 13, - "a8": 8, - "@": 1, - "a4": 3, - "B": 15, - "H": 1, - "J": 1, - "L": 5, - "N": 1, - "P": 6, - "R": 3, - "T": 5, - "aA": 5, - "V": 7, - "X": 4, - "Z": 1, - "b": 1, - "d": 2, - "f": 2, - "h": 2, - "j": 2, - "l": 2, - "t": 10, - "v": 1, - "z": 4, - "delta": 10, - "bullet": 1, - "fx": 1, - "*************************************": 2, - "org": 2, - "loop": 14, - "rdlong": 16, - "t1": 139, - "par": 20, - "wz": 21, - "arguments": 1, - "mov": 154, - "t2": 90, - "t3": 10, - "#8": 14, - "arg": 3, - "arg0": 12, - "add": 92, - "d0": 11, - "#4": 8, - "djnz": 24, - "wrlong": 6, - "dx": 20, - "dy": 15, - "arg1": 3, - "ror": 4, - "#16": 6, - "jump": 1, - "jumps": 6, - "color_": 1, - "plot_": 2, - "arc_": 2, - "vecarc_": 1, - "pixarc_": 1, - "textarc_": 2, - "fill_": 1, - "setup_": 1, - "xlongs": 4, - "xorigin": 2, - "yorigin": 4, - "arg3": 12, - "basesptr": 4, - "arg5": 6, - "jmp": 24, - "#loop": 9, - "width_": 1, - "pwidth": 3, - "passes": 3, - "#plotd": 3, - "line_": 1, - "#linepd": 2, - "arg7": 6, - "#3": 7, - "cmp": 16, - "exit": 5, - "px": 14, - "py": 11, - "mode": 7, - "if_z": 11, - "#plotp": 3, - "test": 38, - "arg4": 5, - "iterations": 1, - "vecdef": 1, - "rdword": 10, - "t7": 8, - "add/sub": 1, - "to/from": 1, - "t6": 7, - "sumc": 4, - "#multiply": 2, - "round": 1, - "up": 4, - "/2": 1, - "lsb": 1, - "shr": 24, - "t4": 7, - "if_nc": 15, - "h8000": 5, - "wc": 57, - "if_c": 37, - "xwords": 1, - "ywords": 1, - "xxxxxxxx": 2, - "save": 1, - "actual": 4, - "sy": 5, - "rdbyte": 3, - "origin": 1, - "adjust": 4, - "neg": 2, - "sub": 12, - "arg2": 7, - "sumnc": 7, - "if_nz": 18, - "yline": 1, - "sx": 4, - "#0": 20, - "next": 16, - "#2": 15, - "shl": 21, - "t5": 4, - "xpixel": 2, - "rol": 1, - "muxc": 5, - "pcolor": 5, - "color1": 2, - "color2": 2, - "@string": 1, - "#arcmod": 1, - "text_": 1, - "chr": 4, - "done": 3, - "scan": 7, - "tjz": 8, - "def": 2, - "extract": 4, - "_0001_1": 1, - "#fontb": 3, - "textsy": 2, - "starting": 1, - "_0011_0": 1, - "#11": 1, - "#arcd": 1, - "#fontxy": 1, - "advance": 2, - "textsx": 3, - "_0111_0": 1, - "setd_ret": 1, - "fontxy_ret": 1, - "ret": 17, - "fontb": 1, - "multiply": 8, - "fontb_ret": 1, - "textmode_": 1, - "textsp": 2, - "da": 1, - "db": 1, - "db2": 1, - "linechange": 1, - "lines_minus_1": 1, - "right": 9, - "fractions": 1, - "pre": 1, - "increment": 1, - "counter": 1, - "yloop": 2, - "integers": 1, - "base0": 17, - "base1": 10, - "sar": 8, - "cmps": 3, - "out": 24, - "range": 2, - "ylongs": 6, - "skip": 5, - "mins": 1, - "mask": 3, - "mask0": 8, - "#5": 2, - "ready": 10, - "count": 4, - "mask1": 6, - "bits0": 6, - "bits1": 5, - "pass": 5, - "not": 6, - "full": 3, - "longs": 15, - "deltas": 1, - "linepd": 1, - "wr": 2, - "direction": 2, - "abs": 1, - "dominant": 2, - "axis": 1, - "last": 6, - "ratio": 1, - "xloop": 1, - "linepd_ret": 1, - "plotd": 1, - "wide": 3, - "bounds": 2, - "#plotp_ret": 2, - "#7": 2, - "store": 1, - "writes": 1, - "pair": 1, - "account": 1, - "special": 1, - "case": 5, - "andn": 7, - "slice": 7, - "shift0": 1, - "colorize": 1, - "upper": 2, - "subx": 1, - "#wslice": 1, - "offset": 14, - "Get": 2, - "args": 5, - "move": 2, - "using": 1, - "first": 9, - "arg6": 1, - "arcmod_ret": 1, - "arg2/t4": 1, - "arg4/t6": 1, - "arcd": 1, - "#setd": 1, - "#polarx": 1, - "Polar": 1, - "cartesian": 1, - "polarx": 1, - "sine_90": 2, - "sine": 7, - "quadrant": 3, - "nz": 3, - "negate": 2, - "table": 9, - "sine_table": 1, - "shift": 7, - "final": 3, - "sine/cosine": 1, - "integer": 2, - "negnz": 3, - "sine_180": 1, - "shifted": 1, - "multiplier": 3, - "product": 1, - "Defined": 1, - "constants": 2, - "hFFFFFFFF": 1, - "FFFFFFFF": 1, - "fontptr": 1, - "Undefined": 2, - "temps": 1, - "res": 89, - "pointers": 2, - "slicesptr": 1, - "line/plot": 1, - "coordinates": 1, - "Inductive": 1, - "Sensor": 1, - "Demo": 1, - "Test": 2, - "Circuit": 1, - "pF": 1, - "K": 4, - "M": 1, - "FPin": 2, - "SDF": 1, - "sigma": 3, - "feedback": 2, - "SDI": 1, - "GND": 4, - "Coils": 1, - "Wire": 1, - "used": 9, - "was": 2, - "GREEN": 2, - "about": 4, - "gauge": 1, - "Coke": 3, - "Can": 3, - "form": 7, - "MHz": 16, - "BIC": 1, - "pen": 1, - "How": 1, - "does": 2, - "work": 2, - "Note": 1, - "reported": 2, - "resonate": 5, - "frequency": 18, - "LC": 8, - "frequency.": 2, - "Instead": 1, - "voltage": 5, - "produced": 1, - "circuit": 5, - "clipped.": 1, - "In": 2, - "below": 4, - "When": 1, - "you": 5, - "apply": 1, - "small": 1, - "specific": 1, - "near": 1, - "uncommon": 1, - "measure": 1, - "times": 3, - "amount": 1, - "applying": 1, - "circuit.": 1, - "through": 1, - "diode": 2, - "basically": 1, - "feeds": 1, - "divide": 3, - "divider": 1, - "...So": 1, + "_": 2, + "input": 1, + "add": 2, + "a": 4, + "maven": 2, + "style": 2, + "repository": 2, + "resolvers": 2, + "at": 4, + "url": 3, + "sequence": 1, + "of": 1, + "repositories": 1, + "define": 1, + "the": 5, + "to": 7, + "publish": 1, + "publishTo": 1, + "set": 2, + "Ivy": 1, + "logging": 1, + "be": 1, + "highest": 1, + "level": 1, + "ivyLoggingLevel": 1, + "UpdateLogging": 1, + "Full": 1, + "disable": 1, + "updating": 1, + "dynamic": 1, + "revisions": 1, + "including": 1, + "SNAPSHOT": 1, + "versions": 1, + "offline": 1, + "true": 5, + "prompt": 1, + "for": 1, + "this": 1, + "build": 1, + "include": 1, + "project": 1, + "id": 1, + "shellPrompt": 2, + "ThisBuild": 1, + "state": 3, + "Project.extract": 1, + ".currentRef.project": 1, + "System.getProperty": 1, + "showTiming": 1, + "false": 7, + "showSuccess": 1, + "timingFormat": 1, + "import": 9, + "java.text.DateFormat": 1, + "DateFormat.getDateTimeInstance": 1, + "DateFormat.SHORT": 2, + "crossPaths": 1, + "fork": 2, + "Test": 3, + "javaOptions": 1, + "parallelExecution": 2, + "javaHome": 1, + "file": 3, + "scalaHome": 1, + "aggregate": 1, + "clean": 1, + "logLevel": 2, + "compile": 1, + "Level.Warn": 2, + "persistLogLevel": 1, + "Level.Debug": 1, + "traceLevel": 2, + "unmanagedJars": 1, + "publishArtifact": 2, + "packageDoc": 2, + "artifactClassifier": 1, + "retrieveManaged": 1, + "credentials": 2, + "Credentials": 2, + "Path.userHome": 1, + "/": 2, + "Beers": 1, + "extends": 1, + "Application": 1, + "bottles": 3, + "qty": 12, + "Int": 11, + "f": 4, + "//": 29, + "higher": 1, + "-": 5, "order": 1, - "see": 2, - "ADC": 2, - "sweep": 2, - "result": 6, - "output": 11, - "needs": 1, - "generate": 1, - "Volts": 1, - "ground.": 1, - "drop": 1, - "across": 1, - "since": 1, - "sensitive": 1, - "works": 1, - "after": 2, - "divider.": 1, - "typical": 1, - "magnitude": 1, - "applied": 2, - "might": 1, - "look": 2, - "something": 1, - "*****": 4, - "...With": 1, - "looks": 1, - "X****": 1, - "...The": 1, - "denotes": 1, - "location": 1, - "reason": 1, - "slightly": 1, - "reasons": 1, - "really.": 1, - "lazy": 1, - "I": 1, - "didn": 1, - "acts": 1, - "dead": 1, - "short.": 1, - "situation": 1, - "exactly": 1, - "great": 1, - "gr.start": 2, - "gr.setup": 2, - "FindResonateFrequency": 1, - "DisplayInductorValue": 2, - "Freq.Synth": 1, - "FValue": 1, - "ADC.SigmaDelta": 1, - "@FTemp": 1, - "gr.clear": 1, - "gr.copy": 2, - "display_base": 2, - "Option": 2, - "Start": 6, - "*********************************************": 2, - "Frequency": 1, - "LowerFrequency": 2, - "*100/": 1, - "UpperFrequency": 1, - "gr.colorwidth": 4, - "gr.plot": 3, - "gr.line": 3, - "FTemp/1024": 1, - "Finish": 1, - "PS/2": 1, - "Keyboard": 1, - "v1.0.1": 2, - "REVISION": 2, - "HISTORY": 2, - "/15/2006": 2, - "Tool": 1, - "par_tail": 1, - "key": 4, - "buffer": 4, - "head": 1, - "par_present": 1, - "states": 1, - "par_keys": 1, - "******************************************": 2, - "entry": 1, - "movd": 10, - "#_dpin": 1, - "masks": 1, - "dmask": 4, - "_dpin": 3, - "cmask": 2, - "_cpin": 2, - "reset": 14, - "parameter": 14, - "_head": 6, - "_present/_states": 1, - "dlsb": 2, - "stat": 6, - "Update": 1, - "_head/_present/_states": 1, - "#1*4": 1, - "scancode": 2, - "state": 2, - "#receive": 1, - "AA": 1, - "extended": 1, - "if_nc_and_z": 2, - "F0": 3, - "unknown": 2, - "ignore": 2, - "#newcode": 1, - "_states": 2, - "set/clear": 1, - "#_states": 1, - "reg": 5, - "muxnc": 5, - "cmpsub": 4, - "shift/ctrl/alt/win": 1, - "pairs": 1, - "E0": 1, - "handle": 1, - "scrlock/capslock/numlock": 1, - "_000": 5, - "_locks": 5, - "#29": 1, - "change": 3, - "configure": 3, - "flag": 5, - "leds": 3, - "check": 5, - "shift1": 1, - "if_nz_and_c": 4, - "#@shift1": 1, - "@table": 1, - "#look": 1, - "alpha": 1, - "considering": 1, - "capslock": 1, - "if_nz_and_nc": 1, - "xor": 8, - "flags": 1, - "alt": 1, - "room": 1, - "valid": 2, - "enter": 1, - "FF": 3, - "#11*4": 1, - "wrword": 1, - "F3": 1, - "keyboard": 3, - "lock": 1, - "#transmit": 2, - "rev": 1, - "rcl": 2, - "_present": 2, - "#update": 1, - "Lookup": 2, - "perform": 2, - "lookup": 1, - "movs": 9, - "#table": 1, - "#27": 1, - "#rand": 1, - "Transmit": 1, - "pull": 2, - "clock": 4, - "low": 5, - "napshr": 3, - "#13": 3, - "#18": 2, - "release": 1, - "transmit_bit": 1, - "#wait_c0": 2, - "_d2": 1, - "wcond": 3, - "c1": 2, - "c0d0": 2, - "wait": 6, - "until": 3, - "#wait": 2, - "#receive_ack": 1, - "ack": 1, - "error": 1, - "#reset": 2, - "transmit_ret": 1, - "receive": 1, - "receive_bit": 1, - "pause": 1, - "us": 1, - "#nap": 1, - "_d3": 1, - "#receive_bit": 1, + "functions": 2, + "match": 2, + "case": 8, + "x": 3, + "beers": 3, + "sing": 3, + "implicit": 3, + "song": 3, + "takeOne": 2, + "nextQty": 2, + "nested": 1, + "if": 2, + "else": 2, + "refrain": 2, + ".capitalize": 1, + "tail": 1, + "recursion": 1, + "headOfSong": 1, + "parameter": 1, + "math.random": 1, + "scala.language.postfixOps": 1, + "scala.util._": 1, + "scala.util.": 1, + "Try": 1, + "Success": 2, + "Failure": 2, + "scala.concurrent._": 1, + "duration._": 1, + "ExecutionContext.Implicits.global": 1, + "scala.concurrent.": 1, + "ExecutionContext": 1, + "CanAwait": 1, + "OnCompleteRunnable": 1, + "TimeoutException": 1, + "ExecutionException": 1, + "blocking": 3, + "node11": 1, + "Welcome": 1, + "Scala": 1, + "worksheet": 1, + "retry": 3, + "T": 8, + "n": 3, + "block": 8, + "Future": 5, + "ns": 1, + "Iterator": 2, + ".iterator": 1, + "attempts": 1, + "ns.map": 1, + "failed": 2, + "Future.failed": 1, + "new": 1, + "Exception": 2, + "attempts.foldLeft": 1, + "fallbackTo": 1, + "scala.concurrent.Future": 1, + "scala.concurrent.Fut": 1, + "|": 19, + "ure": 1, + "rb": 3, + "i": 9, + "Thread.sleep": 2, + "*random.toInt": 1, + "i.toString": 5, + "ri": 2, + "onComplete": 1, + "s": 1, + "s.toString": 1, + "t": 1, + "t.toString": 1, + "r": 1, + "r.toString": 1, + "Unit": 1, + "toList": 1, + ".foreach": 1, + "Iteration": 5, + "java.lang.Exception": 1, + "Hi": 10 + }, + "JSONLD": { + "{": 7, + "}": 7, + "[": 1, + "null": 2, + "]": 1 + }, + "LiveScript": { + "a": 8, + "-": 25, + "const": 1, + "b": 3, + "var": 1, + "c": 3, + "d": 3, + "_000_000km": 1, + "*": 1, + "ms": 1, + "e": 2, + "(": 9, + ")": 10, + "dashes": 1, + "identifiers": 1, + "underscores_i": 1, + "/regexp1/": 1, + "and": 3, + "//regexp2//g": 1, + "strings": 1, + "[": 2, + "til": 1, + "]": 2, + "or": 2, + "to": 2, + "|": 3, + "map": 1, + "filter": 1, + "fold": 1, + "+": 1, + "class": 1, + "Class": 1, + "extends": 1, + "Anc": 1, + "est": 1, + "args": 1, + "copy": 1, + "from": 1, + "callback": 4, + "error": 6, + "data": 2, + "<": 1, + "read": 1, + "file": 2, + "return": 2, + "if": 2, + "<~>": 1, + "write": 1 +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method + }, + "Org": { + "#": 13, + "+": 13, + "OPTIONS": 1, + "H": 1, + "num": 1, + "nil": 4, + "toc": 2, + "n": 1, + "@": 1, + "t": 10, + "|": 4, + "-": 30, + "f": 2, + "*": 3, + "TeX": 1, + "LaTeX": 1, + "skip": 1, + "d": 2, + "(": 11, + "HIDE": 1, + ")": 11, + "tags": 2, + "not": 1, + "in": 2, + "STARTUP": 1, "align": 1, - "isolate": 1, - "look_ret": 1, - "receive_ack_ret": 1, - "receive_ret": 1, - "wait_c0": 1, - "c0": 1, - "timeout": 1, - "ms": 4, - "wloop": 1, - "required": 4, - "_d4": 1, - "replaced": 1, - "c0/c1/c0d0/c1d1": 1, - "if_never": 1, - "replacements": 1, - "#wloop": 3, - "if_c_or_nz": 1, - "c1d1": 1, - "if_nc_or_z": 1, - "nap": 5, - "scales": 1, - "time": 7, - "snag": 1, - "cnt": 2, - "elapses": 1, - "nap_ret": 1, - "F9": 1, - "F5": 1, - "D2": 1, - "F1": 2, - "D1": 1, - "F12": 1, - "F10": 1, - "D7": 1, - "F6": 1, - "D3": 1, - "Tab": 2, - "Alt": 2, - "F3F2": 1, - "q": 1, - "Win": 2, - "Space": 2, - "Apps": 1, - "Power": 1, - "Sleep": 1, - "EF2F": 1, - "CapsLock": 1, - "Enter": 3, - "WakeUp": 1, - "BackSpace": 1, - "C5E1": 1, - "C0E4": 1, - "Home": 1, - "Insert": 1, - "C9EA": 1, - "Down": 1, - "E5": 1, - "Right": 1, - "C2E8": 1, - "Esc": 1, - "DF": 2, - "F11": 1, - "EC": 1, - "PageDn": 1, - "ED": 1, - "PrScr": 1, - "C6E9": 1, - "ScrLock": 1, - "D6": 1, - "Uninitialized": 3, - "_________": 5, - "Key": 1, - "Codes": 1, - "keypress": 1, - "keystate": 2, - "E0..FF": 1, - "AS": 1, - "TV": 9, - "May": 2, - "tile": 41, - "size": 5, - "enable": 5, - "efficient": 2, - "tv_mode": 2, - "NTSC": 11, - "lntsc": 3, - "cycles": 4, - "per": 4, - "sync": 10, - "fpal": 2, - "_433_618": 2, - "PAL": 10, - "spal": 3, - "colortable": 7, - "inside": 2, - "tvptr": 3, - "starts": 4, - "available": 4, - "@entry": 3, - "Assembly": 2, - "language": 2, - "Entry": 2, - "tasks": 6, - "#10": 2, - "Superfield": 2, - "_mode": 7, - "interlace": 20, - "vinv": 2, - "hsync": 5, - "waitvid": 3, - "burst": 2, - "sync_high2": 2, - "task": 2, - "section": 4, - "undisturbed": 2, - "black": 2, - "visible": 7, - "vb": 2, - "leftmost": 1, - "_vt": 3, - "vertical": 29, - "expand": 3, - "vert": 1, - "vscl": 12, - "hb": 2, - "horizontal": 21, - "hx": 5, - "colors": 18, - "screen": 13, - "video": 7, - "repoint": 2, - "hf": 2, - "linerot": 5, - "field1": 4, - "unless": 2, - "invisible": 8, - "if_z_eq_c": 1, - "#hsync": 1, - "vsync": 4, - "pulses": 2, - "vsync1": 2, - "#sync_low1": 1, - "hhalf": 2, - "field2": 1, - "#superfield": 1, - "Blank": 1, - "Horizontal": 1, - "pal": 2, - "toggle": 1, - "phaseflip": 4, - "phasemask": 2, - "sync_scale1": 1, - "blank": 2, - "hsync_ret": 1, - "vsync_high": 1, - "#sync_high1": 1, - "Tasks": 1, - "performed": 1, - "sections": 1, - "during": 2, - "back": 8, - "porch": 9, - "load": 3, - "#_enable": 1, - "_pins": 4, - "_enable": 2, - "#disabled": 2, - "break": 6, - "return": 15, - "later": 6, - "rd": 1, - "#wtab": 1, - "ltab": 1, - "#ltab": 1, - "CLKFREQ": 10, - "cancel": 1, - "_broadcast": 4, - "m8": 3, - "jmpret": 5, - "taskptr": 3, - "taskret": 4, - "ctra": 5, - "pll": 5, - "fcolor": 4, - "#divide": 2, - "vco": 3, - "movi": 3, - "_111": 1, - "ctrb": 4, - "limit": 4, - "m128": 2, - "_100": 1, - "within": 5, - "_001": 1, - "frqb": 2, - "swap": 2, - "broadcast/baseband": 1, - "strip": 3, - "chroma": 19, - "baseband": 18, - "_auralcog": 1, - "_hx": 4, - "consider": 2, - "lineadd": 4, - "lineinc": 3, - "/160": 2, - "loaded": 3, - "#9": 2, - "FC": 2, - "_colors": 2, - "colorreg": 3, - "d6": 3, - "colorloop": 1, - "keep": 2, - "loading": 2, - "m1": 4, - "multiply_ret": 2, - "Disabled": 2, - "try": 2, - "again": 2, - "reload": 1, - "_000_000": 6, - "d0s1": 1, - "F0F0F0F0": 1, - "pins0": 1, - "_01110000_00001111_00000111": 1, - "pins1": 1, - "_11110111_01111111_01110111": 1, - "sync_high1": 1, - "_101010_0101": 1, - "NTSC/PAL": 2, - "metrics": 1, - "tables": 1, - "wtab": 1, - "sntsc": 3, - "lpal": 3, - "hrest": 2, - "vvis": 2, - "vrep": 2, - "_8A": 1, - "_AA": 1, - "sync_scale2": 1, - "_00000000_01_10101010101010_0101": 1, - "m2": 1, - "Parameter": 4, - "/non": 4, - "tccip": 3, - "_screen": 3, - "@long": 2, - "_ht": 2, - "_ho": 2, - "fit": 2, - "contiguous": 1, - "tv_status": 4, - "off/on": 3, - "tv_pins": 5, - "ntsc/pal": 3, - "tv_screen": 5, - "tv_ht": 5, - "tv_hx": 5, - "expansion": 8, - "tv_ho": 5, - "tv_broadcast": 4, - "aural": 13, - "fm": 6, - "preceding": 2, - "copied": 2, - "your": 2, - "code.": 2, - "After": 2, - "setting": 2, - "variables": 3, - "@tv_status": 3, - "All": 2, - "reloaded": 2, - "superframe": 2, - "allowing": 2, - "live": 2, - "changes.": 2, - "minimize": 2, - "correlate": 2, - "changes": 3, - "tv_status.": 1, - "Experimentation": 2, - "optimize": 2, - "some": 3, - "parameters.": 2, - "descriptions": 2, - "sets": 3, - "indicate": 2, - "disabled": 3, - "tv_enable": 2, - "requirement": 2, - "currently": 4, - "outputting": 4, - "driven": 2, - "reduces": 2, - "power": 3, - "_______": 2, - "select": 9, - "group": 7, - "_0111": 6, - "broadcast": 19, - "_1111": 6, - "_0000": 4, - "active": 3, - "top": 10, - "nibble": 4, - "bottom": 5, - "signal": 8, - "arranged": 3, - "attach": 1, - "ohm": 10, - "resistor": 4, - "sum": 7, - "/560/1100": 2, - "subcarrier": 3, - "network": 1, - "visual": 1, - "carrier": 1, - "selects": 4, - "x32": 6, - "tileheight": 4, - "controls": 4, - "mixing": 2, - "mix": 2, - "black/white": 2, - "composite": 1, - "progressive": 2, - "less": 5, - "good": 5, - "motion": 2, - "interlaced": 5, - "doubles": 1, - "format": 1, - "ticks": 11, - "must": 18, - "least": 14, - "_318_180": 1, - "_579_545": 1, - "Hz": 5, - "_734_472": 1, - "itself": 1, - "words": 5, - "define": 10, - "tv_vt": 3, - "has": 4, - "bitfields": 2, - "colorset": 2, - "ptr": 5, - "pixelgroup": 2, - "colorset*": 2, - "pixelgroup**": 2, - "ppppppppppcccc00": 2, - "colorsets": 4, - "four": 8, - "**": 2, - "pixelgroups": 2, - "": 5, - "tv_colors": 2, - "fields": 2, - "values": 2, - "luminance": 2, - "modulation": 4, - "adds/subtracts": 1, - "beware": 1, - "modulated": 1, - "produce": 1, - "saturated": 1, - "toggling": 1, - "levels": 1, - "because": 1, - "abruptly": 1, - "rather": 1, - "against": 1, - "white": 2, - "background": 1, - "best": 1, - "appearance": 1, - "_____": 6, - "practical": 2, - "/30": 1, - "factor": 4, - "sure": 4, - "||": 5, - "than": 5, - "tv_vx": 2, - "tv_vo": 2, - "pos/neg": 4, - "centered": 2, - "image": 2, - "shifts": 4, - "right/left": 2, - "up/down": 2, - "____________": 1, - "expressed": 1, - "ie": 1, - "channel": 1, - "_250_000": 2, - "modulator": 2, - "turned": 2, - "saves": 2, - "broadcasting": 1, - "___________": 1, - "tv_auralcog": 1, - "supply": 1, - "selected": 1, - "bandwidth": 2, - "KHz": 3, - "vary": 1, - "Terminal": 1, - "instead": 1, - "minimum": 2, - "x_scale": 4, - "x_spacing": 4, - "normal": 1, - "x_chr": 2, - "y_chr": 5, - "y_scale": 3, - "y_spacing": 3, - "y_offset": 2, - "x_limit": 2, - "x_screen": 1, - "y_limit": 3, - "y_screen": 4, - "y_max": 3, - "y_screen_bytes": 2, - "y_scroll": 2, - "y_scroll_longs": 4, - "y_clear": 2, - "y_clear_longs": 2, - "paramcount": 1, - "ccinp": 1, - "tv_hc": 1, - "cells": 1, - "cell": 1, - "@bitmap": 1, - "FC0": 1, - "gr.textmode": 1, - "gr.width": 1, - "tv.stop": 2, - "gr.stop": 1, - "schemes": 1, - "tab": 3, - "gr.color": 1, - "gr.text": 1, - "@c": 1, - "gr.finish": 2, - "newline": 3, - "strsize": 2, - "_000_000_000": 2, - "//": 4, - "elseif": 2, - "lookupz": 2, - "..": 4, - "PRI": 1, - "longmove": 2, - "longfill": 2, - "tvparams": 1, - "tvparams_pins": 1, - "_0101": 1, - "vc": 1, - "vx": 2, - "vo": 1, - "auralcog": 1, - "color_schemes": 1, - "BC_6C_05_02": 1, - "E_0D_0C_0A": 1, - "E_6D_6C_6A": 1, - "BE_BD_BC_BA": 1, - "Text": 1, - "x13": 2, - "cols": 5, - "rows": 4, - "screensize": 4, - "lastrow": 2, - "tv_count": 2, - "row": 4, - "tv": 2, - "basepin": 3, - "setcolors": 2, - "@palette": 1, - "@tv_params": 1, - "@screen": 3, - "tv.start": 1, - "stringptr": 3, - "k": 1, - "Output": 1, - "backspace": 1, - "spaces": 1, - "follows": 4, - "Y": 2, - "others": 1, - "printable": 1, - "characters": 1, - "wordfill": 2, - "print": 2, - "A..": 1, - "other": 1, - "colorptr": 2, - "fore": 3, - "Override": 1, - "default": 1, - "palette": 2, - "list": 1, - "scroll": 1, - "hc": 1, - "ho": 1, - "dark": 2, - "blue": 3, - "BB": 1, - "yellow": 1, - "brown": 1, - "cyan": 3, - "red": 2, - "pink": 1, - "VGA": 8, - "vga_mode": 3, - "vgaptr": 3, - "hv": 5, - "bcolor": 3, - "#colortable": 2, - "#blank_line": 3, - "nobl": 1, - "_vx": 1, - "nobp": 1, - "nofp": 1, - "#blank_hsync": 1, - "front": 4, - "vf": 1, - "nofl": 1, - "#tasks": 1, - "before": 1, - "_vs": 2, - "except": 1, - "#blank_vsync": 1, - "#field": 1, - "superfield": 1, - "blank_vsync": 1, - "h2": 2, - "if_c_and_nz": 1, - "blank_hsync": 1, - "_hf": 1, - "invisble": 1, - "_hb": 1, - "#hv": 1, - "blank_hsync_ret": 1, - "blank_line_ret": 1, - "blank_vsync_ret": 1, - "_status": 1, - "#paramcount": 1, - "directions": 1, - "_rate": 3, - "pllmin": 1, - "_011": 1, - "rate": 6, - "hvbase": 5, - "frqa": 3, - "vmask": 1, - "hmask": 1, - "vcfg": 2, - "colormask": 1, - "waitcnt": 3, - "#entry": 1, - "Initialized": 1, - "lowest": 1, - "pllmax": 1, - "*16": 1, - "m4": 1, - "tihv": 1, - "_hd": 1, - "_hs": 1, - "_vd": 1, - "underneath": 1, - "BF": 1, - "___": 1, - "/1/2": 1, - "off/visible/invisible": 1, - "vga_enable": 3, - "pppttt": 1, - "vga_colors": 2, - "vga_vt": 6, - "vga_vx": 4, - "vga_vo": 4, - "vga_hf": 2, - "vga_hb": 2, - "vga_vf": 2, - "vga_vb": 2, - "tick": 2, - "@vga_status": 1, - "vga_status.": 1, - "__________": 4, - "vga_status": 1, - "________": 3, - "vga_pins": 1, - "monitors": 1, - "allows": 1, - "polarity": 1, - "respectively": 1, - "vga_screen": 1, - "vga_ht": 3, - "care": 1, - "suggested": 1, - "bits/pins": 3, - "green": 1, - "bit/pin": 1, - "signals": 1, - "connect": 3, - "RED": 1, - "BLUE": 1, - "connector": 3, - "always": 2, - "HSYNC": 1, - "VSYNC": 1, - "______": 14, - "vga_hx": 3, - "vga_ho": 2, - "equal": 1, - "vga_hd": 2, - "exceed": 1, - "vga_vd": 2, - "recommended": 2, - "vga_hs": 1, - "vga_vs": 1, - "vga_rate": 2, - "should": 1, - "Vocal": 2, - "Tract": 2, - "October": 1, - "synthesizes": 1, - "human": 1, - "vocal": 10, - "tract": 12, - "real": 2, - "It": 1, - "MHz.": 1, - "controlled": 1, - "reside": 1, - "parent": 1, - "aa": 2, - "ga": 5, - "gp": 2, - "vp": 3, - "vr": 1, - "f1": 4, - "f2": 1, - "f3": 3, - "f4": 2, - "na": 2, - "nf": 2, - "fa": 2, - "ff": 2, - "values.": 2, - "Before": 1, - "were": 1, - "interpolation": 1, - "shy": 1, - "frame": 12, + "fold": 1, + "nodlcheck": 1, + "hidestars": 1, + "oddeven": 1, + "lognotestate": 1, + "SEQ_TODO": 1, + "TODO": 1, + "INPROGRESS": 1, + "i": 1, + "WAITING": 1, + "w@": 1, + "DONE": 1, + "CANCELED": 1, + "c@": 1, + "TAGS": 1, + "Write": 1, + "w": 1, + "Update": 1, + "u": 1, + "Fix": 1, + "Check": 1, + "c": 1, + "TITLE": 1, + "org": 10, + "ruby": 6, + "AUTHOR": 1, + "Brian": 1, + "Dewey": 1, + "EMAIL": 1, + "bdewey@gmail.com": 1, + "LANGUAGE": 1, + "en": 1, + "PRIORITIES": 1, + "A": 1, + "C": 1, + "B": 1, + "CATEGORY": 1, + "worg": 1, + "{": 1, + "Back": 1, + "to": 8, + "Worg": 1, + "rubygems": 2, + "ve": 1, + "already": 1, + "created": 1, + "a": 4, + "site.": 1, + "Make": 1, + "sure": 1, + "you": 2, + "have": 1, + "installed": 1, + "sudo": 1, + "gem": 1, + "install": 1, + ".": 1, + "You": 1, + "need": 1, + "register": 1, + "new": 2, + "Webby": 3, + "filter": 3, + "handle": 1, + "mode": 2, + "content.": 2, "makes": 1, - "behave": 1, - "sensibly": 1, - "gaps.": 1, - "frame_buffers": 2, - "bytes": 2, - "frame_longs": 3, - "frame_bytes": 1, - "...must": 1, - "dira_": 3, - "dirb_": 1, - "ctra_": 1, - "ctrb_": 3, - "frqa_": 3, - "cnt_": 1, - "many": 1, - "...contiguous": 1, - "tract_ptr": 3, - "pos_pin": 7, - "neg_pin": 6, - "fm_offset": 5, - "positive": 1, + "this": 2, + "easy.": 1, + "In": 1, + "the": 6, + "lib/": 1, + "folder": 1, + "of": 2, + "your": 2, + "site": 1, + "create": 1, + "file": 1, + "orgmode.rb": 1, + "BEGIN_EXAMPLE": 2, + "require": 1, + "Filters.register": 1, + "do": 2, + "input": 3, + "Orgmode": 2, + "Parser.new": 1, + ".to_html": 1, + "end": 1, + "END_EXAMPLE": 1, + "This": 2, + "code": 1, + "creates": 1, + "that": 1, + "will": 1, + "use": 1, + "parser": 1, + "translate": 1, + "into": 1, + "HTML.": 1, + "Create": 1, + "For": 1, + "example": 1, + "title": 2, + "Parser": 1, + "created_at": 1, + "status": 2, + "Under": 1, + "development": 1, + "erb": 1, + "orgmode": 3, + "<%=>": 2, + "page": 2, + "Status": 1, + "Description": 1, + "Helpful": 1, + "Ruby": 1, + "routines": 1, + "for": 3, + "parsing": 1, + "files.": 1, + "The": 3, + "most": 1, + "significant": 1, + "thing": 2, + "library": 1, + "does": 1, + "today": 1, + "is": 5, + "convert": 1, + "files": 1, + "textile.": 1, + "Currently": 1, + "cannot": 1, + "much": 1, + "customize": 1, + "conversion.": 1, + "supplied": 1, + "textile": 1, + "conversion": 1, + "optimized": 1, + "extracting": 1, + "from": 1, + "orgfile": 1, + "as": 1, + "opposed": 1, + "History": 1, + "**": 1, + "Version": 1, + "first": 1, + "output": 2, + "HTML": 2, + "gets": 1, + "class": 1, + "now": 1, + "indented": 1, + "Proper": 1, + "support": 1, + "multi": 1, + "paragraph": 2, + "list": 1, + "items.": 1, + "See": 1, + "part": 1, + "last": 1, + "bullet.": 1, + "Fixed": 1, + "bugs": 1, + "wouldn": 1, + "s": 1, + "all": 1, + "there": 1, + "it": 1 + }, + "Liquid": { + "": 1, + "html": 1, + "PUBLIC": 1, + "W3C": 1, + "DTD": 2, + "XHTML": 1, + "1": 1, + "0": 1, + "Transitional": 1, + "EN": 1, + "http": 2, + "www": 1, + "w3": 1, + "org": 1, + "TR": 1, + "xhtml1": 2, + "transitional": 1, + "dtd": 1, + "": 1, + "xmlns=": 1, + "xml": 1, + "lang=": 2, + "": 1, + "": 1, + "equiv=": 1, + "content=": 1, + "": 1, + "{": 89, + "shop.name": 2, + "}": 89, + "-": 4, + "page_title": 1, + "": 1, + "|": 31, + "global_asset_url": 5, + "stylesheet_tag": 3, + "script_tag": 5, + "shopify_asset_url": 1, + "asset_url": 2, + "content_for_header": 1, + "": 1, + "": 1, + "id=": 28, + "

": 1, + "class=": 14, + "": 9, + "href=": 9, + "Skip": 1, + "to": 1, + "navigation.": 1, + "": 9, + "

": 1, + "%": 46, + "if": 5, + "cart.item_count": 7, + "
": 23, + "style=": 5, + "

": 3, + "There": 1, + "pluralize": 3, + "in": 8, + "title=": 3, + "your": 1, + "cart": 1, + "

": 3, + "

": 1, + "Your": 1, + "subtotal": 1, + "is": 1, + "cart.total_price": 2, + "money": 5, + ".": 3, + "

": 1, + "for": 6, + "item": 1, + "cart.items": 1, + "onMouseover=": 2, + "onMouseout=": 2, + "": 4, + "src=": 5, + "
": 23, + "endfor": 6, + "
": 2, + "endif": 5, + "

": 1, + "

": 1, + "onclick=": 1, + "View": 1, + "Mini": 1, + "Cart": 1, + "(": 1, + ")": 1, + "
": 3, + "content_for_layout": 1, + "
    ": 5, + "link": 2, + "linklists.main": 1, + "menu.links": 1, + "
  • ": 5, + "link.title": 2, + "link_to": 2, + "link.url": 2, + "
  • ": 5, + "
": 5, + "tags": 1, + "tag": 4, + "collection.tags": 1, + "": 1, + "link_to_add_tag": 1, + "": 1, + "highlight_active_tag": 1, + "link_to_tag": 1, + "linklists.footer.links": 1, + "All": 1, + "prices": 1, + "are": 1, + "shop.currency": 1, + "Powered": 1, + "by": 1, + "Shopify": 1, + "": 1, + "": 1, + "

": 1, + "We": 1, + "have": 1, + "wonderful": 1, + "products": 1, + "

": 1, + "image": 1, + "product.images": 1, + "forloop.first": 1, + "rel=": 2, + "alt=": 2, + "else": 1, + "product.title": 1, + "Vendor": 1, + "product.vendor": 1, + "link_to_vendor": 1, + "Type": 1, + "product.type": 1, + "link_to_type": 1, + "": 1, + "product.price_min": 1, + "product.price_varies": 1, + "product.price_max": 1, + "": 1, + "
": 1, + "action=": 1, + "method=": 1, + "": 1, + "": 1, + "type=": 2, + "
": 1, + "product.description": 1, + "": 1 + }, + "UnrealScript": { + "//": 5, + "-": 220, + "class": 18, + "MutU2Weapons": 1, + "extends": 2, + "Mutator": 1, + "config": 18, + "(": 189, + "U2Weapons": 1, + ")": 189, + ";": 295, + "var": 30, + "string": 25, + "ReplacedWeaponClassNames0": 1, + "ReplacedWeaponClassNames1": 1, + "ReplacedWeaponClassNames2": 1, + "ReplacedWeaponClassNames3": 1, + "ReplacedWeaponClassNames4": 1, + "ReplacedWeaponClassNames5": 1, + "ReplacedWeaponClassNames6": 1, + "ReplacedWeaponClassNames7": 1, + "ReplacedWeaponClassNames8": 1, + "ReplacedWeaponClassNames9": 1, + "ReplacedWeaponClassNames10": 1, + "ReplacedWeaponClassNames11": 1, + "ReplacedWeaponClassNames12": 1, + "bool": 18, + "bConfigUseU2Weapon0": 1, + "bConfigUseU2Weapon1": 1, + "bConfigUseU2Weapon2": 1, + "bConfigUseU2Weapon3": 1, + "bConfigUseU2Weapon4": 1, + "bConfigUseU2Weapon5": 1, + "bConfigUseU2Weapon6": 1, + "bConfigUseU2Weapon7": 1, + "bConfigUseU2Weapon8": 1, + "bConfigUseU2Weapon9": 1, + "bConfigUseU2Weapon10": 1, + "bConfigUseU2Weapon11": 1, + "bConfigUseU2Weapon12": 1, + "//var": 8, + "byte": 4, + "bUseU2Weapon": 1, + "[": 125, + "]": 125, + "": 7, + "ReplacedWeaponClasses": 3, + "": 2, + "ReplacedWeaponPickupClasses": 1, + "": 3, + "ReplacedAmmoPickupClasses": 1, + "U2WeaponClasses": 2, + "//GE": 17, + "For": 3, + "default": 12, + "properties": 3, + "ONLY": 3, + "U2WeaponPickupClassNames": 1, + "U2AmmoPickupClassNames": 2, + "bIsVehicle": 4, + "bNotVehicle": 3, + "localized": 2, + "U2WeaponDisplayText": 1, + "U2WeaponDescText": 1, + "GUISelectOptions": 1, + "int": 10, + "FirePowerMode": 1, + "bExperimental": 3, + "bUseFieldGenerator": 2, + "bUseProximitySensor": 2, + "bIntegrateShieldReward": 2, + "IterationNum": 8, + "Weapons.Length": 1, + "const": 1, + "DamageMultiplier": 28, + "DamagePercentage": 3, + "bUseXMPFeel": 4, + "FlashbangModeString": 1, + "struct": 1, + "WeaponInfo": 2, + "{": 28, + "ReplacedWeaponClass": 1, + "Generated": 4, + "from": 6, + "ReplacedWeaponClassName.": 2, + "This": 3, + "is": 6, + "what": 1, + "we": 3, + "replace.": 1, + "ReplacedWeaponPickupClass": 1, + "UNUSED": 1, + "ReplacedAmmoPickupClass": 1, + "WeaponClass": 1, + "the": 31, + "weapon": 10, + "are": 1, + "going": 1, + "to": 4, + "put": 1, + "inside": 1, + "world.": 1, + "WeaponPickupClassName": 1, + "WeponClass.": 1, + "AmmoPickupClassName": 1, + "WeaponClass.": 1, + "bEnabled": 1, + "Structs": 1, + "can": 2, + "d": 1, + "thus": 1, + "still": 1, + "require": 1, + "bConfigUseU2WeaponX": 1, + "indicates": 1, + "that": 3, + "spawns": 1, + "a": 2, + "vehicle": 3, + "deployable": 1, + "turrets": 1, + ".": 2, + "These": 1, + "only": 2, + "work": 1, + "in": 4, + "gametypes": 1, + "duh.": 1, + "Opposite": 1, + "of": 1, + "works": 1, + "non": 1, + "gametypes.": 2, + "Think": 1, + "shotgun.": 1, + "}": 27, + "Weapons": 31, + "function": 5, + "PostBeginPlay": 1, + "local": 8, + "FireMode": 8, + "x": 65, + "//local": 3, + "ReplacedWeaponPickupClassName": 1, + "//IterationNum": 1, + "ArrayCount": 2, + "Level.Game.bAllowVehicles": 4, + "He": 1, + "he": 1, + "neat": 1, + "way": 1, + "get": 1, + "required": 1, + "number.": 1, + "for": 11, + "<": 9, + "+": 18, + ".bEnabled": 3, + "GetPropertyText": 5, + "needed": 1, + "use": 1, + "variables": 1, + "an": 1, + "array": 2, + "like": 1, + "fashion.": 1, + "//bUseU2Weapon": 1, + ".ReplacedWeaponClass": 5, + "DynamicLoadObject": 2, + "//ReplacedWeaponClasses": 1, + "//ReplacedWeaponPickupClassName": 1, + ".default.PickupClass": 1, + "if": 55, + ".ReplacedWeaponClass.default.FireModeClass": 4, + "None": 10, + "&&": 15, + ".default.AmmoClass": 1, + ".default.AmmoClass.default.PickupClass": 2, + ".ReplacedAmmoPickupClass": 2, + "break": 1, + ".WeaponClass": 7, + ".WeaponPickupClassName": 1, + ".WeaponClass.default.PickupClass": 1, + ".AmmoPickupClassName": 2, + ".bIsVehicle": 2, + ".bNotVehicle": 2, + "Super.PostBeginPlay": 1, + "ValidReplacement": 6, + "return": 47, + "CheckReplacement": 1, + "Actor": 1, + "Other": 23, + "out": 2, + "bSuperRelevant": 3, + "i": 12, + "WeaponLocker": 3, + "L": 2, + "xWeaponBase": 3, + ".WeaponType": 2, + "false": 3, + "true": 5, + "Weapon": 1, + "Other.IsA": 2, + "Other.Class": 2, + "Ammo": 1, + "ReplaceWith": 1, + "L.Weapons.Length": 1, + "L.Weapons": 2, + "//STARTING": 1, + "WEAPON": 1, + "xPawn": 6, + ".RequiredEquipment": 3, + "True": 2, + "Special": 1, + "handling": 1, + "Shield": 2, + "Reward": 2, + "integration": 1, + "ShieldPack": 7, + ".SetStaticMesh": 1, + "StaticMesh": 1, + ".Skins": 1, + "Shader": 2, + ".RepSkin": 1, + ".SetDrawScale": 1, + ".SetCollisionSize": 1, + ".PickupMessage": 1, + ".PickupSound": 1, + "Sound": 1, + "Super.CheckReplacement": 1, + "GetInventoryClassOverride": 1, + "InventoryClassName": 3, + "Super.GetInventoryClassOverride": 1, + "static": 2, + "FillPlayInfo": 1, + "PlayInfo": 3, + "": 1, + "Recs": 4, + "WeaponOptions": 17, + "Super.FillPlayInfo": 1, + ".static.GetWeaponList": 1, + "Recs.Length": 1, + ".ClassName": 1, + ".FriendlyName": 1, + "PlayInfo.AddSetting": 33, + "default.RulesGroup": 33, + "default.U2WeaponDisplayText": 33, + "event": 3, + "GetDescriptionText": 1, + "PropName": 35, + "default.U2WeaponDescText": 33, + "Super.GetDescriptionText": 1, + "PreBeginPlay": 1, + "float": 3, + "k": 29, + "Multiplier.": 1, + "Super.PreBeginPlay": 1, + "/100.0": 1, + "//log": 1, + "@k": 1, + "//Sets": 1, + "various": 1, + "settings": 1, + "match": 1, + "different": 1, + "games": 1, + ".default.DamagePercentage": 1, + "//Original": 1, + "U2": 3, + "compensate": 1, + "division": 1, + "errors": 1, + "Class": 105, + ".default.DamageMin": 12, + "*": 54, + ".default.DamageMax": 12, + ".default.Damage": 27, + ".default.myDamage": 4, + "//Dampened": 1, + "already": 1, + "no": 2, + "need": 1, + "rewrite": 1, + "else": 1, + "//General": 2, + "XMP": 4, + ".default.Spread": 1, + ".default.MaxAmmo": 7, + ".default.Speed": 8, + ".default.MomentumTransfer": 4, + ".default.ClipSize": 4, + ".default.FireLastReloadTime": 3, + ".default.DamageRadius": 4, + ".default.LifeSpan": 4, + ".default.ShakeRadius": 1, + ".default.ShakeMagnitude": 1, + ".default.MaxSpeed": 5, + ".default.FireRate": 3, + ".default.ReloadTime": 3, + "//3200": 1, + "too": 1, + "much": 1, + ".default.VehicleDamageScaling": 2, + "*k": 28, + "//Experimental": 1, + "options": 1, + "lets": 1, + "you": 2, + "Unuse": 1, + "EMPimp": 1, + "projectile": 1, + "and": 3, + "fire": 1, + "two": 1, + "CAR": 1, + "barrels": 1, + "//CAR": 1, + "nothing": 1, + "U2Weapons.U2AssaultRifleFire": 1, + "U2Weapons.U2AssaultRifleAltFire": 1, + "U2ProjectileConcussionGrenade": 1, + "U2Weapons.U2AssaultRifleInv": 1, + "U2Weapons.U2WeaponEnergyRifle": 1, + "U2Weapons.U2WeaponFlameThrower": 1, + "U2Weapons.U2WeaponPistol": 1, + "U2Weapons.U2AutoTurretDeploy": 1, + "U2Weapons.U2WeaponRocketLauncher": 1, + "U2Weapons.U2WeaponGrenadeLauncher": 1, + "U2Weapons.U2WeaponSniper": 2, + "U2Weapons.U2WeaponRocketTurret": 1, + "U2Weapons.U2WeaponLandMine": 1, + "U2Weapons.U2WeaponLaserTripMine": 1, + "U2Weapons.U2WeaponShotgun": 1, + "s": 7, + "Minigun.": 1, + "Enable": 5, + "Shock": 1, + "Lance": 1, + "Energy": 2, + "Rifle": 3, + "What": 7, + "should": 7, + "be": 8, + "replaced": 8, + "with": 9, + "Rifle.": 3, + "By": 7, + "it": 7, + "Bio": 1, + "Magnum": 2, + "Pistol": 1, + "Pistol.": 1, + "Onslaught": 1, + "Grenade": 1, + "Launcher.": 2, + "Shark": 2, + "Rocket": 4, + "Launcher": 1, + "Flak": 1, + "Cannon.": 1, + "Should": 1, + "Lightning": 1, + "Gun": 2, + "Widowmaker": 2, + "Sniper": 3, + "Classic": 1, + "here.": 1, + "Turret": 2, + "delpoyable": 1, + "deployable.": 1, + "Redeemer.": 1, + "Laser": 2, + "Trip": 2, + "Mine": 1, + "Mine.": 1, + "t": 2, + "replace": 1, + "Link": 1, + "matches": 1, + "vehicles.": 1, + "Crowd": 1, + "Pleaser": 1, + "Shotgun.": 1, + "have": 1, + "shields": 1, + "or": 2, + "damage": 1, + "filtering.": 1, + "If": 1, + "checked": 1, + "mutator": 1, + "produces": 1, + "Unreal": 4, + "II": 4, + "shield": 1, + "pickups.": 1, + "Choose": 1, + "between": 2, + "white": 1, + "overlay": 3, + "depending": 2, + "on": 2, + "player": 2, + "view": 1, + "style": 1, + "distance": 1, + "foolproof": 1, + "FM_DistanceBased": 1, + "Arena": 1, + "Add": 1, + "weapons": 1, + "other": 1, + "Fully": 1, + "customisable": 1, + "choose": 1, + "behaviour.": 1, + "US3HelloWorld": 1, + "GameInfo": 1, + "InitGame": 1, + "Options": 1, + "Error": 1, + "log": 1, + "defaultproperties": 1 + }, + "Component Pascal": { + "MODULE": 2, + "ObxControls": 1, + ";": 123, + "IMPORT": 2, + "Dialog": 1, + "Ports": 1, + "Properties": 1, + "Views": 1, + "CONST": 1, + "beginner": 5, + "advanced": 3, + "expert": 1, + "guru": 2, + "TYPE": 1, + "View": 6, + "POINTER": 2, + "TO": 2, + "RECORD": 2, + "(": 91, + "Views.View": 2, + ")": 94, + "size": 1, + "INTEGER": 10, + "END": 31, + "VAR": 9, + "data*": 1, + "class*": 1, + "list*": 1, + "Dialog.List": 1, + "width*": 1, + "predef": 12, + "ARRAY": 2, + "OF": 2, + "PROCEDURE": 12, + "SetList": 4, + "BEGIN": 13, + "IF": 11, + "data.class": 5, + "THEN": 12, + "data.list.SetLen": 3, + "data.list.SetItem": 11, + "ELSIF": 1, + "ELSE": 3, + "v": 6, + "CopyFromSimpleView": 2, + "source": 2, + "v.size": 10, + ".size": 1, + "Restore": 2, + "f": 1, + "Views.Frame": 1, + "l": 1, + "t": 1, + "r": 7, + "b": 1, + "[": 13, + "]": 13, + "f.DrawRect": 1, + "Ports.fill": 1, + "Ports.red": 1, + "HandlePropMsg": 2, + "msg": 2, + "Views.PropMessage": 1, + "WITH": 1, + "Properties.SizePref": 1, + "DO": 4, + "msg.w": 1, + "msg.h": 1, + "ClassNotify*": 1, + "op": 4, + "from": 2, + "to": 5, + "Dialog.changed": 2, + "OR": 4, + "&": 8, + "data.list.index": 3, + "data.width": 4, + "Dialog.Update": 2, + "data": 2, + "Dialog.UpdateList": 1, + "data.list": 1, + "ClassNotify": 1, + "ListNotify*": 1, + "ListNotify": 1, + "ListGuard*": 1, + "par": 2, + "Dialog.Par": 2, + "par.disabled": 1, + "ListGuard": 1, + "WidthGuard*": 1, + "par.readOnly": 1, + "#": 3, + "WidthGuard": 1, + "Open*": 1, + "NEW": 2, + "*": 1, + "Ports.mm": 1, + "Views.OpenAux": 1, + "Open": 1, + "ObxControls.": 1, + "ObxFact": 1, + "Stores": 1, + "Models": 1, + "TextModels": 1, + "TextControllers": 1, + "Integers": 1, + "Read": 3, + "TextModels.Reader": 2, + "x": 15, + "Integers.Integer": 3, + "i": 17, + "len": 5, + "beg": 11, + "ch": 14, + "CHAR": 3, + "buf": 5, + "r.ReadChar": 5, + "WHILE": 3, + "r.eot": 4, + "<=>": 1, + "ReadChar": 1, + "ASSERT": 1, + "eot": 1, + "<": 8, + "r.Pos": 2, + "-": 1, + "REPEAT": 3, + "INC": 4, + "UNTIL": 3, + "+": 1, + "r.SetPos": 2, + "X": 1, + "Integers.ConvertFromString": 1, + "Write": 3, + "w": 4, + "TextModels.Writer": 2, + "Integers.Sign": 2, + "w.WriteChar": 3, + "Integers.Digits10Of": 1, + "DEC": 1, + "Integers.ThisDigit10": 1, + "Compute*": 1, + "end": 6, + "n": 3, + "s": 3, + "Stores.Operation": 1, + "attr": 3, + "TextModels.Attributes": 1, + "c": 3, + "TextControllers.Controller": 1, + "TextControllers.Focus": 1, + "NIL": 3, + "c.HasSelection": 1, + "c.GetSelection": 1, + "c.text.NewReader": 1, + "r.ReadPrev": 2, + "r.attr": 1, + "Integers.Compare": 1, + "Integers.Long": 3, + "MAX": 1, + "LONGINT": 1, + "SHORT": 1, + "Integers.Short": 1, + "Integers.Product": 1, + "Models.BeginScript": 1, + "c.text": 2, + "c.text.Delete": 1, + "c.text.NewWriter": 1, + "w.SetPos": 1, + "w.SetAttr": 1, + "Models.EndScript": 1, + "Compute": 1, + "ObxFact.": 1 + }, + "PogoScript": { + "httpism": 1, + "require": 3, + "async": 1, + "resolve": 2, + ".resolve": 1, + "exports.squash": 1, + "(": 38, + "url": 5, + ")": 38, + "html": 15, + "httpism.get": 2, + ".body": 2, + "squash": 2, + "callback": 2, + "replacements": 6, + "sort": 2, + "links": 2, + "in": 11, + ".concat": 1, + "scripts": 2, + "for": 2, + "each": 2, + "@": 6, + "r": 1, + "{": 3, + "r.url": 1, + "r.href": 1, + "}": 3, + "async.map": 1, + "get": 2, + "err": 2, + "requested": 2, + "replace": 2, + "replacements.sort": 1, + "a": 1, + "b": 1, + "a.index": 1, + "-": 1, + "b.index": 1, + "replacement": 2, + "replacement.body": 1, + "replacement.url": 1, + "i": 3, + "parts": 3, + "rep": 1, + "rep.index": 1, + "+": 2, + "rep.length": 1, + "html.substr": 1, + "link": 2, + "reg": 5, + "r/": 2, + "": 1, + "]": 7, + "*href": 1, + "[": 5, + "*": 2, + "/": 2, + "|": 2, + "s*": 2, + "<\\/link\\>": 1, + "/gi": 2, + "elements": 5, + "matching": 3, + "as": 3, + "script": 2, + "": 1, + "*src": 1, + "<\\/script\\>": 1, + "tag": 3, + "while": 1, + "m": 1, + "reg.exec": 1, + "elements.push": 1, + "index": 1, + "m.index": 1, + "length": 1, + "m.0.length": 1, + "href": 1, + "m.1": 1 + }, + "Creole": { + "Creole": 6, + "is": 3, + "a": 2, + "-": 5, + "to": 2, + "HTML": 1, + "converter": 2, + "for": 1, + "the": 5, + "lightweight": 1, + "markup": 1, + "language": 1, + "(": 5, + "http": 4, + "//wikicreole.org/": 1, + ")": 5, + ".": 1, + "Github": 1, + "uses": 1, + "this": 1, + "render": 1, + "*.creole": 1, + "files.": 1, + "Project": 1, + "page": 1, + "on": 2, + "github": 1, + "*": 5, + "//github.com/minad/creole": 1, + "Travis": 1, + "CI": 1, + "https": 1, + "//travis": 1, + "ci.org/minad/creole": 1, + "RDOC": 1, + "//rdoc.info/projects/minad/creole": 1, + "INSTALLATION": 1, + "{": 6, + "gem": 1, + "install": 1, + "creole": 1, + "}": 6, + "SYNOPSIS": 1, + "require": 1, + "html": 1, + "Creole.creolize": 1, + "BUGS": 1, + "If": 1, + "you": 1, + "found": 1, + "bug": 1, + "please": 1, + "report": 1, + "it": 1, + "at": 1, + "project": 1, + "s": 1, + "tracker": 1, + "GitHub": 1, + "//github.com/minad/creole/issues": 1, + "AUTHORS": 1, + "Lars": 2, + "Christensen": 2, + "larsch": 1, + "Daniel": 2, + "Mendler": 1, + "minad": 1, + "LICENSE": 1, + "Copyright": 1, + "c": 1, + "Mendler.": 1, + "It": 1, + "free": 1, + "software": 1, + "and": 1, + "may": 1, + "be": 1, + "redistributed": 1, + "under": 1, + "terms": 1, + "specified": 1, + "in": 1, + "README": 1, + "file": 1, + "of": 1, + "Ruby": 1, + "distribution.": 1 + }, + "Processing": { + "void": 2, + "setup": 1, + "(": 17, + ")": 17, + "{": 2, + "size": 1, + ";": 15, + "background": 1, + "noStroke": 1, + "}": 2, + "draw": 1, + "fill": 6, + "triangle": 2, + "rect": 1, + "quad": 1, + "ellipse": 1, + "arc": 1, + "PI": 1, + "TWO_PI": 1 + }, + "Emacs Lisp": { + ";": 333, + "ess": 48, + "-": 294, + "julia.el": 2, + "ESS": 5, + "julia": 39, + "mode": 12, + "and": 3, + "inferior": 13, + "interaction": 1, + "Copyright": 1, + "(": 156, + "C": 2, + ")": 144, + "Vitalie": 3, + "Spinu.": 1, + "Filename": 1, + "Author": 1, + "Spinu": 2, + "based": 1, + "on": 2, + "mode.el": 1, + "from": 3, + "lang": 1, + "project": 1, + "Maintainer": 1, + "Created": 1, + "Keywords": 1, + "This": 4, + "file": 10, + "is": 5, + "*NOT*": 1, + "part": 2, + "of": 8, + "GNU": 4, + "Emacs.": 1, + "program": 6, + "free": 1, + "software": 1, + "you": 1, + "can": 1, + "redistribute": 1, + "it": 3, + "and/or": 1, + "modify": 5, + "under": 1, + "the": 10, + "terms": 1, + "General": 3, + "Public": 3, + "License": 3, + "as": 1, + "published": 1, + "by": 1, + "Free": 2, + "Software": 2, + "Foundation": 2, + "either": 1, + "version": 2, + "any": 1, + "later": 1, + "version.": 1, + "distributed": 1, + "in": 3, + "hope": 1, + "that": 2, + "will": 1, + "be": 2, + "useful": 1, + "but": 2, + "WITHOUT": 1, + "ANY": 1, + "WARRANTY": 1, + "without": 1, + "even": 1, + "implied": 1, + "warranty": 1, + "MERCHANTABILITY": 1, + "or": 3, + "FITNESS": 1, + "FOR": 1, + "A": 1, + "PARTICULAR": 1, + "PURPOSE.": 1, + "See": 1, + "for": 8, + "more": 1, + "details.": 1, + "You": 1, + "should": 2, + "have": 1, + "received": 1, + "a": 4, + "copy": 2, + "along": 1, + "with": 4, + "this": 1, + "see": 2, + "COPYING.": 1, + "If": 1, + "not": 1, + "write": 2, + "to": 4, + "Inc.": 1, + "Franklin": 1, + "Street": 1, + "Fifth": 1, + "Floor": 1, + "Boston": 1, + "MA": 1, + "USA.": 1, + "Commentary": 1, + "customise": 1, + "name": 8, + "point": 6, + "your": 1, + "release": 1, + "basic": 1, + "start": 13, + "M": 2, + "x": 2, + "julia.": 2, + "require": 2, + "auto": 1, + "alist": 9, + "table": 9, + "character": 1, + "quote": 2, + "transpose": 1, + "syntax": 7, + "entry": 4, + ".": 40, + "Syntax": 3, + "inside": 1, + "char": 6, + "defvar": 5, + "let": 3, + "make": 4, + "defconst": 5, + "regex": 5, + "unquote": 1, + "forloop": 1, + "subset": 2, + "regexp": 6, + "font": 6, + "lock": 6, + "defaults": 2, + "list": 3, + "identity": 1, + "keyword": 2, + "face": 4, + "constant": 1, + "cons": 1, + "function": 7, + "keep": 2, + "string": 8, + "paragraph": 3, + "concat": 7, + "page": 2, + "delimiter": 2, + "separate": 1, + "ignore": 2, + "fill": 1, + "prefix": 2, + "t": 6, + "final": 1, + "newline": 1, + "comment": 6, + "add": 4, + "skip": 1, + "column": 1, + "indent": 8, + "S": 2, + "line": 5, + "calculate": 1, + "parse": 1, + "sexp": 1, + "comments": 1, + "style": 2, + "default": 1, + "ignored": 1, + "local": 6, + "process": 5, + "nil": 12, + "dump": 2, + "files": 1, + "_": 1, + "autoload": 1, + "defun": 5, + "send": 3, + "visibly": 1, + "temporary": 1, + "directory": 2, + "temp": 2, + "insert": 1, + "format": 3, + "load": 1, + "command": 5, + "get": 3, + "help": 3, + "topics": 1, + "&": 3, + "optional": 3, + "proc": 3, + "words": 1, + "vector": 1, + "com": 1, + "error": 6, + "s": 5, + "*in": 1, + "[": 3, + "n": 1, + "]": 3, + "*": 1, + "at": 5, + ".*": 2, + "+": 5, + "w*": 1, + "http": 1, + "//docs.julialang.org/en/latest/search/": 1, + "q": 1, + "%": 1, + "include": 1, + "funargs": 1, + "re": 2, + "args": 10, + "language": 1, + "STERM": 1, + "editor": 2, + "R": 2, + "pager": 2, + "versions": 1, + "Julia": 1, + "made": 1, + "available.": 1, + "String": 1, + "arguments": 2, + "used": 1, + "when": 2, + "starting": 1, + "group": 1, + "###autoload": 2, + "interactive": 2, + "setq": 2, + "customize": 5, + "emacs": 1, + "<": 1, + "hook": 4, + "complete": 1, + "object": 2, + "completion": 4, + "functions": 2, + "first": 1, + "if": 4, + "fboundp": 1, + "end": 1, + "workaround": 1, + "set": 3, + "variable": 3, + "post": 1, + "run": 2, + "settings": 1, + "notably": 1, + "null": 1, + "dribble": 1, + "buffer": 3, + "debugging": 1, + "only": 1, + "dialect": 1, + "current": 2, + "arg": 1, + "let*": 2, + "jl": 2, + "space": 1, + "just": 1, + "case": 1, + "read": 1, + "..": 3, + "multi": 1, + "...": 1, + "tb": 1, + "logo": 1, + "goto": 2, + "min": 1, + "while": 1, + "search": 1, + "forward": 1, + "replace": 1, + "match": 1, + "max": 1, + "inject": 1, + "code": 1, + "etc": 1, + "hooks": 1, + "busy": 1, + "funname": 5, + "eldoc": 1, + "show": 1, + "symbol": 2, + "aggressive": 1, + "car": 1, + "funname.start": 1, + "sequence": 1, + "nth": 1, + "W": 1, + "window": 2, + "width": 1, + "minibuffer": 1, + "length": 1, + "doc": 1, + "propertize": 1, + "use": 1, + "classes": 1, + "screws": 1, + "egrep": 1, + "print": 1 + }, + "Elm": { + "data": 1, + "Tree": 3, + "a": 5, + "Node": 8, + "(": 119, + ")": 116, + "|": 3, + "Empty": 8, + "empty": 2, + "singleton": 2, + "v": 8, + "insert": 4, + "x": 13, + "tree": 7, + "case": 5, + "of": 7, + "-": 11, + "y": 7, + "left": 7, + "right": 8, + "if": 2, + "then": 2, + "else": 2, + "<": 1, + "fromList": 3, + "xs": 9, + "foldl": 1, + "depth": 5, + "+": 14, + "max": 1, + "map": 11, + "f": 8, + "t1": 2, + "[": 31, + "]": 31, + "t2": 3, + "main": 3, + "flow": 4, + "down": 3, + "display": 4, + "name": 6, + "text": 4, + ".": 9, + "monospace": 1, + "toText": 6, + "concat": 1, + "show": 2, + "asText": 1, + "qsort": 4, + "lst": 6, + "filter": 2, + "<)x)>": 1, + "import": 3, + "List": 1, + "intercalate": 2, + "intersperse": 3, + "Website.Skeleton": 1, + "Website.ColorScheme": 1, + "addFolder": 4, + "folder": 2, + "let": 2, + "add": 2, + "in": 2, + "n": 2, + "elements": 2, + "functional": 2, + "reactive": 2, + "example": 3, + "loc": 2, + "Text.link": 1, + "toLinks": 2, + "title": 2, + "links": 2, + "width": 3, + "italic": 1, + "bold": 2, + "Text.color": 1, + "accent4": 1, + "insertSpace": 2, + "{": 1, + "spacer": 2, + ";": 1, + "}": 1, + "subsection": 2, + "w": 7, + "info": 2, + "words": 2, + "markdown": 1, + "###": 1, + "Basic": 1, + "Examples": 1, + "Each": 1, + "listed": 1, + "below": 1, + "focuses": 1, + "on": 1, + "single": 1, + "function": 1, + "or": 1, + "concept.": 1, + "These": 1, + "examples": 1, + "demonstrate": 1, + "all": 1, + "the": 1, + "basic": 1, + "building": 1, + "blocks": 1, + "Elm.": 1, + "content": 2, + "exampleSets": 2, + "plainText": 1, + "lift": 1, + "skeleton": 1, + "Window.width": 1 + }, + "Inform 7": { + "Version": 1, + "of": 3, + "Trivial": 3, + "Extension": 3, + "by": 3, + "Andrew": 3, + "Plotkin": 1, + "begins": 1, + "here.": 2, + "A": 3, + "cow": 3, + "is": 4, + "a": 2, + "kind": 1, + "animal.": 1, + "can": 1, + "be": 1, + "purple.": 1, + "ends": 1, + "Plotkin.": 2, + "Include": 1, + "The": 1, + "Kitchen": 1, + "room.": 1, + "[": 1, + "This": 1, + "kitchen": 1, + "modelled": 1, + "after": 1, + "the": 4, + "one": 1, + "in": 2, + "Zork": 1, + "although": 1, + "it": 1, + "lacks": 1, + "detail": 1, + "to": 2, + "establish": 1, + "this": 1, + "player.": 1, + "]": 1, + "purple": 1, + "called": 1, + "Gelett": 2, + "Kitchen.": 1, + "Instead": 1, + "examining": 1, + "say": 1 + }, + "XC": { + "int": 2, + "main": 1, + "(": 1, + ")": 1, + "{": 2, + "x": 3, + ";": 4, + "chan": 1, + "c": 3, + "par": 1, + "<:>": 1, + "0": 1, + "}": 2, + "return": 1 + }, + "JSON": { + "{": 73, + "}": 73, + "[": 17, + "]": 17, + "true": 3 + }, + "Scaml": { + "%": 1, + "p": 1, + "Hello": 1, + "World": 1 + }, + "Shell": { + "SHEBANG#!sh": 2, + "echo": 71, + "SHEBANG#!bash": 8, + "#": 53, + "declare": 22, + "-": 391, + "r": 17, + "sbt_release_version": 2, + "sbt_snapshot_version": 2, + "SNAPSHOT": 3, + "unset": 10, + "sbt_jar": 3, + "sbt_dir": 2, + "sbt_create": 2, + "sbt_snapshot": 1, + "sbt_launch_dir": 3, + "scala_version": 3, + "java_home": 1, + "sbt_explicit_version": 7, + "verbose": 6, + "debug": 11, + "quiet": 6, + "build_props_sbt": 3, + "(": 107, + ")": 154, + "{": 63, + "if": 39, + "[": 85, + "f": 68, + "project/build.properties": 9, + "]": 85, + ";": 138, + "then": 41, + "versionLine": 2, + "grep": 8, + "sbt.version": 3, + "versionString": 3, + "versionLine##sbt.version": 1, + "}": 61, + "fi": 34, + "update_build_props_sbt": 2, + "local": 22, + "ver": 5, + "old": 4, + "return": 3, + "elif": 4, + "perl": 3, + "pi": 1, + "e": 4, + "q": 8, + "||": 12, + "Updated": 1, + "file": 9, + "setting": 2, + "to": 33, + "Previous": 1, + "value": 1, + "was": 1, + "sbt_version": 8, + "n": 22, + "else": 10, + "v": 11, + "echoerr": 3, + "&": 5, + "vlog": 1, + "&&": 65, + "dlog": 8, + "get_script_path": 2, + "path": 13, + "L": 1, + "target": 1, + "readlink": 1, + "get_mem_opts": 3, + "mem": 4, + "perm": 6, + "/": 2, + "<": 2, + "codecache": 1, + "die": 2, + "exit": 10, + "make_url": 3, + "groupid": 1, + "category": 1, + "version": 12, + "default_jvm_opts": 1, + "default_sbt_opts": 1, + "default_sbt_mem": 2, + "noshare_opts": 1, + "sbt_opts_file": 1, + "jvm_opts_file": 1, + "latest_28": 1, + "latest_29": 1, + "latest_210": 1, + "script_path": 1, + "script_dir": 1, + "script_name": 2, + "java_cmd": 2, + "java": 2, + "sbt_mem": 5, + "a": 12, + "residual_args": 4, + "java_args": 3, + "scalac_args": 4, + "sbt_commands": 2, + "build_props_scala": 1, + "build.scala.versions": 1, + "versionLine##build.scala.versions": 1, + "%": 5, + ".*": 2, + "execRunner": 2, + "for": 7, + "arg": 3, + "do": 8, + "printf": 4, + "|": 17, + "done": 8, + "exec": 3, + "sbt_groupid": 3, + "case": 9, + "in": 25, + "*": 11, + "org.scala": 4, + "tools.sbt": 3, + "sbt": 18, + "esac": 7, + "sbt_artifactory_list": 2, + "version0": 2, + "url": 4, + "curl": 8, + "s": 14, + "list": 3, + "only": 6, + "F": 1, + "pe": 1, + "make_release_url": 2, + "releases": 1, + "make_snapshot_url": 2, + "snapshots": 1, + "head": 1, + "/dev/null": 6, + "jar_url": 1, + "jar_file": 1, + "download_url": 2, + "jar": 3, + "mkdir": 2, + "p": 2, + "dirname": 1, + "which": 10, + "fail": 1, + "silent": 1, + "output": 1, + "wget": 2, + "O": 1, + "acquire_sbt_jar": 1, + "sbt_url": 1, + "usage": 2, + "cat": 3, + "<<": 2, + "EOM": 3, + "Usage": 1, + "options": 8, + "h": 3, + "help": 5, + "print": 1, + "this": 6, + "message": 1, + "runner": 1, + "is": 11, + "chattier": 1, + "d": 9, + "set": 21, + "log": 2, + "level": 2, + "Debug": 1, + "Error": 1, + "no": 16, + "colors": 2, + "disable": 1, + "ANSI": 1, + "color": 1, + "codes": 1, + "create": 2, + "start": 1, + "even": 3, + "current": 1, + "directory": 5, + "contains": 2, + "project": 1, + "dir": 3, + "": 3, + "global": 1, + "settings/plugins": 1, + "default": 4, + "/.sbt/": 1, + "": 1, + "boot": 3, + "shared": 1, + "/.sbt/boot": 1, + "series": 1, + "ivy": 2, + "Ivy": 1, + "repository": 3, + "/.ivy2": 1, + "": 1, + "memory": 3, + "share": 2, + "use": 1, + "all": 1, + "caches": 1, + "sharing": 1, + "offline": 3, + "put": 1, + "mode": 2, + "jvm": 2, + "": 1, + "Turn": 1, + "on": 4, + "JVM": 1, + "debugging": 1, + "open": 1, + "at": 1, + "the": 17, + "given": 2, + "port.": 1, + "batch": 2, + "Disable": 1, + "interactive": 1, + "The": 1, + "way": 1, + "accomplish": 1, + "pre": 1, + "there": 2, + "build.properties": 1, + "an": 1, + "property": 1, + "update": 2, + "disk.": 1, + "That": 1, + "scalacOptions": 3, + "S": 2, + "stripped": 1, + "In": 1, + "of": 6, + "duplicated": 1, + "or": 3, + "conflicting": 1, + "order": 1, + "above": 1, + "shows": 1, + "precedence": 1, + "JAVA_OPTS": 1, + "lowest": 1, + "command": 5, + "line": 1, + "highest.": 1, + "addJava": 9, + "addSbt": 12, + "addScalac": 2, + "addResidual": 2, + "addResolver": 1, + "addDebugger": 2, + "get_jvm_opts": 2, + "process_args": 2, + "require_arg": 12, + "type": 5, + "opt": 3, + "z": 12, + "while": 3, + "gt": 1, + "shift": 28, + "integer": 1, + "inc": 1, + "port": 1, + "true": 2, + "snapshot": 1, + "launch": 1, + "scala": 3, + "home": 2, + "D*": 1, + "J*": 1, + "S*": 1, + "sbtargs": 3, + "IFS": 1, + "read": 1, + "<\"$sbt_opts_file\">": 1, + "process": 1, + "combined": 1, + "args": 2, + "reset": 1, + "residuals": 1, + "argumentCount=": 1, + "we": 1, + "were": 1, + "any": 1, + "opts": 1, + "eq": 1, + "0": 1, + "ThisBuild": 1, + "Update": 1, + "build": 2, + "properties": 1, + "disk": 5, + "explicit": 1, + "gives": 1, + "us": 1, + "choice": 1, + "Detected": 1, + "Overriding": 1, + "alert": 1, + "them": 1, + "stuff": 3, + "here": 1, + "argumentCount": 1, + "./build.sbt": 1, + "./project": 1, + "pwd": 1, + "doesn": 1, + "t": 3, + "understand": 1, + "iflast": 1, + "#residual_args": 1, + "@": 3, + "name": 1, + "foodforthought.jpg": 1, + "name##*fo": 1, + "rvm_ignore_rvmrc": 1, + "rvmrc": 3, + "rvm_rvmrc_files": 3, + "ef": 1, + "+": 1, + "GREP_OPTIONS": 1, + "source": 7, + "export": 25, + "rvm_path": 4, + "UID": 1, + "rvm_is_not_a_shell_function": 2, + "rvm_path/scripts": 1, + "rvm": 1, + "typeset": 5, + "i": 2, + "bottles": 6, + "Bash": 3, + "script": 1, + "dotfile": 1, + "does": 1, + "lot": 1, + "fun": 2, + "like": 1, + "turning": 1, + "normal": 1, + "dotfiles": 1, + "eg": 1, + ".bashrc": 1, + "into": 3, + "symlinks": 1, + "git": 16, + "pull": 3, + "away": 1, + "optionally": 1, + "moving": 1, + "files": 1, + "so": 1, + "that": 1, + "they": 1, + "can": 3, + "be": 3, + "preserved": 1, + "up": 1, + "cron": 1, + "job": 3, + "automate": 1, + "aforementioned": 1, + "and": 5, + "maybe": 1, + "some": 1, + "more": 3, + "shopt": 13, + "nocasematch": 1, + "This": 1, + "makes": 1, + "pattern": 1, + "matching": 1, + "insensitive": 1, + "POSTFIX": 1, + "URL": 1, + "PUSHURL": 1, + "overwrite": 3, + "print_help": 2, + "k": 1, + "keep": 3, + "false": 2, + "o": 3, + "continue": 1, + "mv": 1, + "rm": 2, + "ln": 1, + "config": 4, + "remote.origin.url": 1, + "remote.origin.pushurl": 1, + "crontab": 1, + ".jobs.cron": 1, + "/.bashrc": 3, + "x": 1, + "system": 1, + "rbenv": 2, + "versions": 1, + "bare": 1, + "prefix": 1, + "SHEBANG#!zsh": 2, + "##############################################################################": 16, + "#Import": 2, + "shell": 4, + "agnostic": 2, + "Zsh": 2, + "environment": 2, + "/.profile": 2, + "HISTSIZE": 2, + "#How": 2, + "many": 2, + "lines": 2, + "history": 18, + "HISTFILE": 2, + "/.zsh_history": 2, + "#Where": 2, + "save": 4, + "SAVEHIST": 2, + "#Number": 2, + "entries": 2, + "HISTDUP": 2, + "erase": 2, + "#Erase": 2, + "duplicates": 2, + "setopt": 8, + "appendhistory": 2, + "#Append": 2, + "overwriting": 2, + "sharehistory": 2, + "#Share": 2, + "across": 2, + "terminals": 2, + "incappendhistory": 2, + "#Immediately": 2, + "append": 2, + "not": 2, + "just": 2, + "when": 2, + "term": 2, + "killed": 2, + "#.": 2, + "/.dotfiles/z": 4, + "zsh/z.sh": 2, + "#function": 2, + "precmd": 2, + ".": 5, + "rupa/z.sh": 2, + "/usr/bin/clear": 2, + "PATH": 14, + "fpath": 6, + "HOME/.zsh/func": 2, + "U": 2, + "umask": 2, + "/opt/local/bin": 2, + "/opt/local/sbin": 2, + "/bin": 4, + "/usr/bin": 8, + "prompt": 2, + "endif": 2, + "dirpersiststore": 2, + "stty": 2, + "istrip": 2, + "##": 28, + "SCREENDIR": 2, + "/usr/local/bin": 6, + "/usr/local/sbin": 6, + "/usr/xpg4/bin": 4, + "/usr/sbin": 6, + "/usr/sfw/bin": 4, + "/usr/ccs/bin": 4, + "/usr/openwin/bin": 4, + "/opt/mysql/current/bin": 4, + "MANPATH": 2, + "/usr/local/man": 2, + "/usr/share/man": 2, + "Random": 2, + "ENV...": 2, + "TERM": 4, + "COLORTERM": 2, + "CLICOLOR": 2, + "anything": 2, + "actually": 2, + "DISPLAY": 2, + "pkgname": 1, + "stud": 4, + "pkgver": 1, + "pkgrel": 1, + "pkgdesc": 1, + "arch": 1, + "i686": 1, + "x86_64": 1, + "license": 1, + "depends": 1, + "libev": 1, + "openssl": 1, + "makedepends": 1, + "provides": 1, + "conflicts": 1, + "_gitroot": 1, + "https": 2, + "//github.com/bumptech/stud.git": 1, + "_gitname": 1, + "cd": 11, + "msg": 4, + "origin": 1, + "clone": 5, + "rf": 1, + "make": 6, + "package": 1, + "PREFIX": 1, + "/usr": 1, + "DESTDIR": 1, + "install": 8, + "Dm755": 1, + "init.stud": 1, + "docker": 1, + "from": 1, + "ubuntu": 1, + "maintainer": 1, + "Solomon": 1, + "Hykes": 1, + "": 1, + "run": 13, + "apt": 6, + "get": 6, + "y": 5, + "//go.googlecode.com/files/go1.1.1.linux": 1, + "amd64.tar.gz": 1, + "tar": 1, + "C": 1, + "/usr/local": 1, + "xz": 1, + "env": 4, + "/usr/local/go/bin": 2, + "/sbin": 2, + "GOPATH": 1, + "/go": 1, + "CGO_ENABLED": 1, + "/tmp": 1, + "t.go": 1, + "go": 2, + "test": 1, + "PKG": 12, + "github.com/kr/pty": 1, + "REV": 6, + "c699": 1, + "http": 3, + "//": 3, + "/go/src/": 6, + "checkout": 3, + "github.com/gorilla/context/": 1, + "d61e5": 1, + "github.com/gorilla/mux/": 1, + "b36453141c": 1, + "iptables": 1, + "/etc/apt/sources.list": 1, + "lxc": 1, + "aufs": 1, + "tools": 1, + "add": 1, + "/go/src/github.com/dotcloud/docker": 1, + "/go/src/github.com/dotcloud/docker/docker": 1, + "ldflags": 1, + "/go/bin": 1, + "cmd": 1, + "function": 6, + "ls": 6, + "Fh": 2, + "l": 8, + "long": 2, + "format...": 2, + "ll": 2, + "less": 2, + "XF": 2, + "pipe": 2, + "#CDPATH": 2, + "HISTIGNORE": 2, + "HISTCONTROL": 2, + "ignoreboth": 2, + "cdspell": 2, + "extglob": 2, + "progcomp": 2, + "complete": 82, + "X": 54, + "bunzip2": 2, + "bzcat": 2, + "bzcmp": 2, + "bzdiff": 2, + "bzegrep": 2, + "bzfgrep": 2, + "bzgrep": 2, + "unzip": 2, + "zipinfo": 2, + "compress": 2, + "znew": 2, + "gunzip": 2, + "zcmp": 2, + "zdiff": 2, + "zcat": 2, + "zegrep": 2, + "zfgrep": 2, + "zgrep": 2, + "zless": 2, + "zmore": 2, + "uncompress": 2, + "ee": 2, + "display": 2, + "xv": 2, + "qiv": 2, + "gv": 2, + "ggv": 2, + "xdvi": 2, + "dvips": 2, + "dviselect": 2, + "dvitype": 2, + "acroread": 2, + "xpdf": 2, + "makeinfo": 2, + "texi2html": 2, + "tex": 2, + "latex": 2, + "slitex": 2, + "jadetex": 2, + "pdfjadetex": 2, + "pdftex": 2, + "pdflatex": 2, + "texi2dvi": 2, + "mpg123": 2, + "mpg321": 2, + "xine": 2, + "aviplay": 2, + "realplay": 2, + "xanim": 2, + "ogg123": 2, + "gqmpeg": 2, + "freeamp": 2, + "xmms": 2, + "xfig": 2, + "timidity": 2, + "playmidi": 2, + "vi": 2, + "vim": 2, + "gvim": 2, + "rvim": 2, + "view": 2, + "rview": 2, + "rgvim": 2, + "rgview": 2, + "gview": 2, + "emacs": 2, + "wine": 2, + "bzme": 2, + "netscape": 2, + "mozilla": 2, + "lynx": 2, + "opera": 2, + "w3m": 2, + "galeon": 2, + "dillo": 2, + "elinks": 2, + "links": 2, + "u": 2, + "su": 2, + "passwd": 2, + "groups": 2, + "user": 2, + "commands": 8, + "see": 4, + "users": 2, + "A": 10, + "stopped": 4, + "P": 4, + "bg": 4, + "completes": 10, + "with": 12, + "jobs": 4, + "j": 2, + "fg": 2, + "disown": 2, + "other": 2, + "readonly": 4, + "variables": 2, + "helptopic": 2, + "helptopics": 2, + "unalias": 4, + "aliases": 2, + "binding": 2, + "bind": 4, + "readline": 2, + "bindings": 2, + "intelligent": 2, + "c": 2, + "man": 6, + "#sudo": 2, + "pushd": 2, + "rmdir": 2, + "Make": 2, + "directories": 2, + "W": 2, + "alias": 42, + "filenames": 2, + "PS1": 2, + "..": 2, + "cd..": 2, + "csh": 2, + "same": 2, + "as": 2, + "bash...": 2, + "quit": 2, + "shorter": 2, + "D": 2, + "rehash": 2, + "after": 2, + "I": 2, + "edit": 2, + "it": 2, + "pg": 2, + "patch": 2, + "sed": 2, + "awk": 2, + "diff": 2, + "find": 2, + "ps": 2, + "whoami": 2, + "ping": 2, + "histappend": 2, + "PROMPT_COMMAND": 2 + }, + "Sass": { + "blue": 7, + "#3bbfce": 2, + ";": 6, + "margin": 8, + "px": 3, + ".content_navigation": 1, + "{": 2, + "color": 4, + "}": 2, + ".border": 2, + "padding": 2, + "/": 4, + "border": 3, + "solid": 1, + ".content": 1, + "-": 3, + "navigation": 1, + "darken": 1, + "(": 1, + "%": 1, + ")": 1 + }, + "Oxygene": { + "": 1, + "DefaultTargets=": 1, + "xmlns=": 1, + "": 3, + "": 1, + "Loops": 2, + "": 1, + "": 1, + "exe": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "False": 4, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "Properties": 1, + "App.ico": 1, + "": 1, + "": 1, + "Condition=": 3, + "Release": 2, + "": 1, + "": 1, + "{": 1, + "BD89C": 1, + "-": 4, + "B610": 1, + "CEE": 1, + "CAF": 1, + "C515D88E2C94": 1, + "}": 1, + "": 1, + "": 3, + "": 1, + "DEBUG": 1, + ";": 2, + "TRACE": 1, + "": 1, + "": 2, + ".": 2, + "bin": 2, + "Debug": 1, + "": 2, + "": 1, + "True": 3, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "Project=": 1, + "": 2, + "": 5, + "Include=": 12, + "": 5, + "(": 5, + "Framework": 5, + ")": 5, + "mscorlib.dll": 1, + "": 5, + "": 5, + "System.dll": 1, + "ProgramFiles": 1, + "Reference": 1, + "Assemblies": 1, + "Microsoft": 1, + "v3.5": 1, + "System.Core.dll": 1, + "": 1, + "": 1, + "System.Data.dll": 1, + "System.Xml.dll": 1, + "": 2, + "": 4, + "": 1, + "": 1, + "": 2, + "ResXFileCodeGenerator": 1, + "": 2, + "": 1, + "": 1, + "SettingsSingleFileGenerator": 1, + "": 1, + "": 1 + }, + "ATS": { + "//": 211, + "#include": 16, + "staload": 25, + "_": 25, + "sortdef": 2, + "ftype": 13, + "type": 30, + "-": 49, + "infixr": 2, + "(": 562, + ")": 567, + "typedef": 10, + "a": 200, + "b": 26, + "": 2, + "functor": 12, + "F": 34, + "{": 142, + "}": 141, + "list0": 9, + "extern": 13, + "val": 95, + "functor_list0": 7, + "implement": 55, + "f": 22, + "lam": 20, + "xs": 82, + "list0_map": 2, + "": 14, + "": 3, + "option0": 3, + "functor_option0": 2, + "opt": 6, + "option0_map": 1, + "functor_homres": 2, + "c": 3, + "r": 25, + "x": 48, + "fun": 56, + "Yoneda_phi": 3, + "Yoneda_psi": 3, + "ftor": 9, + "fx": 8, + "m": 4, + "mf": 4, + "natrans": 3, + "G": 2, + "Yoneda_phi_nat": 2, + "Yoneda_psi_nat": 2, + "*": 2, + "datatype": 4, + "bool": 27, + "True": 7, + "|": 22, + "False": 8, + "boxed": 2, + "boolean": 2, + "bool2string": 4, + "string": 2, + "case": 9, + "+": 20, + "of": 59, + "fprint_val": 2, + "": 2, + "out": 8, + "fprint": 3, + "myboolist0": 9, + "list_t": 1, + "g0ofg1_list": 1, + "Yoneda_bool_list0": 3, + "myboolist1": 2, + "fprintln": 3, + "stdout_ref": 4, + "main0": 3, + "UN": 3, + "code": 6, + "reuse": 2, + "assume": 2, + "set_vtype": 3, + "elt": 2, + "t@ype": 2, + "List0_vt": 5, + "linset_nil": 2, + "list_vt_nil": 16, + "linset_make_nil": 2, + "linset_sing": 2, + "list_vt_cons": 17, + "linset_make_sing": 2, + "linset_is_nil": 2, + "list_vt_is_nil": 1, + "linset_isnot_nil": 2, + "list_vt_is_cons": 1, + "linset_size": 2, + "let": 34, + "n": 51, + "list_vt_length": 1, + "in": 48, + "i2sz": 4, + "end": 73, + "linset_is_member": 3, + "x0": 22, + "aux": 4, + "nat": 4, + ".": 14, + "": 3, + "list_vt": 7, + "<": 14, + "sgn": 9, + "compare_elt_elt": 4, + "if": 7, + "then": 11, + "false": 6, + "else": 7, + "true": 5, + "[": 49, + "]": 48, + "linset_copy": 2, + "list_vt_copy": 2, + "linset_free": 2, + "list_vt_free": 1, + "linset_insert": 3, + "mynode_cons": 4, + "nx": 22, + "mynode1": 6, + "xs1": 15, + "UN.castvwtp0": 8, + "List1_vt": 5, + "@list_vt_cons": 5, + "xs2": 3, + "prval": 20, + "UN.cast2void": 5, + ";": 4, + "fold@": 8, + "ins": 3, + "tail": 1, + "recursive": 1, + "&": 17, + "n1": 4, + "#": 7, + "<=>": 1, + "1": 3, + "mynode_make_elt": 4, + "ans": 2, + "is": 26, + "found": 1, + "effmask_all": 3, + "free@": 1, + "xs1_": 3, + "rem": 1, + "linset_remove": 2, + "linset_choose": 3, + "opt_some": 1, + "opt_none": 1, + "env": 11, + "linset_foreach_env": 3, + "list_vt_foreach": 1, + "fwork": 3, + "": 3, + "linset_foreach": 3, + "list_vt_foreach_env": 1, + "linset_listize": 2, + "linset_listize1": 2, + "mynode_null": 5, + "mynode": 3, + "null": 1, + "the_null_ptr": 1, + "mynode_free": 1, + "where": 6, + "nx2": 4, + "mynode_get_elt": 1, + "nx1": 7, + "UN.castvwtp1": 2, + "mynode_set_elt": 1, + "l": 3, + "__assert": 2, + "praxi": 1, + "void": 14, + "mynode_getfree_elt": 1, + "linset_takeout_ngc": 2, + "set": 34, + "takeout": 3, + "mynode0": 1, + "pf_x": 6, + "view@x": 3, + "pf_xs1": 6, + "view@xs1": 3, + "res": 9, + "linset_takeoutmax_ngc": 2, + "xs_": 4, + "@list_vt_nil": 1, + "linset_takeoutmin_ngc": 2, + "unsnoc": 4, + "pos": 1, + "": 16, + "and": 10, + "fold@xs": 1, + "CoYoneda": 7, + "CoYoneda_phi": 2, + "CoYoneda_psi": 3, + "int0": 4, + "I": 8, + "int": 2, + "int2bool": 2, + "i": 6, + "myintlist0": 2, + "g0ofg1": 1, + "list": 1, + "%": 7, + "#define": 4, + "NPHIL": 6, + "nphil": 13, + "natLt": 2, + "phil_left": 3, + "phil_right": 3, + "phil_loop": 10, + "cleaner_loop": 6, + "absvtype": 2, + "fork_vtype": 3, + "ptr": 2, + "vtypedef": 2, + "fork": 16, + "fork_get_num": 4, + "phil_dine": 3, + "lf": 5, + "rf": 5, + "phil_think": 3, + "cleaner_wash": 3, + "cleaner_return": 4, + "fork_changet": 5, + "channel": 11, + "forktray_changet": 4, + "": 1, + "html": 1, + "PUBLIC": 1, + "W3C": 1, + "DTD": 2, + "XHTML": 1, + "EN": 1, + "http": 2, + "www": 1, + "w3": 1, + "org": 1, + "TR": 1, + "xhtml11": 2, + "dtd": 1, + "": 1, + "xmlns=": 1, + "": 1, + "": 1, + "equiv=": 1, + "content=": 1, + "": 1, + "EFFECTIVATS": 1, + "DiningPhil2": 1, + "": 1, + "#patscode_style": 1, + "": 1, + "": 1, + "

": 1, + "Effective": 1, + "ATS": 2, + "Dining": 2, + "Philosophers": 2, + "

": 1, + "In": 2, + "this": 2, + "article": 2, + "present": 1, + "an": 6, + "implementation": 3, + "slight": 1, + "variant": 1, + "the": 30, + "famous": 1, + "problem": 1, + "by": 4, + "Dijkstra": 1, + "that": 8, + "makes": 1, + "simple": 1, + "but": 1, + "convincing": 1, + "use": 1, + "linear": 2, + "types.": 1, + "

": 8, + "The": 8, + "Original": 2, + "Problem": 2, + "

": 8, + "There": 3, + "are": 7, + "five": 1, + "philosophers": 1, + "sitting": 1, + "around": 1, + "table": 3, + "there": 3, + "also": 3, + "forks": 7, + "placed": 1, + "on": 8, + "such": 1, + "each": 2, + "located": 2, + "between": 1, + "left": 3, + "hand": 6, + "philosopher": 5, + "right": 3, + "another": 1, + "philosopher.": 1, + "Each": 4, + "does": 1, + "following": 6, + "routine": 1, + "repeatedly": 1, + "thinking": 1, + "dining.": 1, + "order": 1, + "to": 16, + "dine": 1, + "needs": 2, + "first": 2, + "acquire": 1, + "two": 3, + "one": 3, + "his": 4, + "side": 2, + "other": 2, + "side.": 2, + "After": 2, + "finishing": 1, + "dining": 1, + "puts": 2, + "acquired": 1, + "onto": 1, + "A": 6, + "Variant": 1, + "twist": 1, + "added": 1, + "original": 1, + "version": 1, + "

": 1, + "used": 1, + "it": 2, + "becomes": 1, + "be": 9, + "put": 1, + "tray": 2, + "for": 15, + "dirty": 2, + "forks.": 1, + "cleaner": 2, + "who": 1, + "cleans": 1, + "them": 2, + "back": 1, + "table.": 1, + "Channels": 1, + "Communication": 1, + "just": 1, + "shared": 1, + "queue": 1, + "fixed": 1, + "capacity.": 1, + "functions": 1, + "inserting": 1, + "element": 5, + "into": 3, + "taking": 1, + "given": 4, + "

": 7,
+      "class=": 6,
+      "#pats2xhtml_sats": 3,
+      "
": 7, + "If": 2, + "channel_insert": 5, + "called": 2, + "full": 4, + "caller": 2, + "blocked": 3, + "until": 2, + "taken": 1, + "channel.": 2, + "channel_takeout": 4, + "empty": 1, + "inserted": 1, + "Channel": 2, + "Fork": 3, + "Forks": 1, + "resources": 1, + "type.": 1, + "initially": 1, + "stored": 2, + "which": 2, + "can": 4, + "obtained": 2, + "calling": 2, + "function": 3, + "defined": 1, + "natural": 1, + "numbers": 1, + "less": 1, + "than": 1, + "channels": 4, + "storing": 3, + "chosen": 3, + "capacity": 3, + "reason": 1, + "store": 1, + "at": 2, + "most": 1, + "guarantee": 1, + "these": 1, + "never": 2, + "so": 2, + "no": 2, + "attempt": 1, + "made": 1, + "send": 1, + "signals": 1, + "awake": 1, + "callers": 1, + "supposedly": 1, + "being": 2, + "due": 1, + "Tray": 1, + "instead": 1, + "become": 1, + "as": 4, + "only": 1, + "total": 1, + "Philosopher": 1, + "Loop": 2, + "implemented": 2, + "loop": 2, + "#pats2xhtml_dats": 3, + "It": 2, + "should": 3, + "straighforward": 2, + "follow": 2, + "Cleaner": 1, + "finds": 1, + "number": 2, + "uses": 1, + "locate": 1, + "fork.": 1, + "Its": 1, + "actual": 1, + "follows": 1, + "now": 1, + "Testing": 1, + "entire": 1, + "files": 1, + "DiningPhil2.sats": 1, + "DiningPhil2.dats": 1, + "DiningPhil2_fork.dats": 1, + "DiningPhil2_thread.dats": 1, + "Makefile": 1, + "available": 1, + "compiling": 1, + "source": 1, + "excutable": 1, + "testing.": 1, + "One": 1, + "able": 1, + "encounter": 1, + "deadlock": 2, + "after": 1, + "running": 1, + "simulation": 1, + "while.": 1, + "
": 1, + "size=": 1, + "This": 1, + "written": 1, + "href=": 1, + "Hongwei": 1, + "Xi": 1, + "
": 1, + "": 1, + "": 1, + "main": 1, + "fprint_filsub": 1, + "t0p": 31, + "x1": 1, + "x2": 1, + "linset_make_list": 1, + "List": 1, + "INV": 24, + "size_t": 1, + "linset_isnot_member": 1, + "linset_takeout": 1, + "endfun": 1, + "linset_takeout_opt": 1, + "Option_vt": 4, + "linset_choose_opt": 1, + "linset_takeoutmax": 1, + "linset_takeoutmax_opt": 1, + "linset_takeoutmin": 1, + "linset_takeoutmin_opt": 1, + "fprint_linset": 3, + "sep": 1, + "FILEref": 2, + "overload": 1, + "with": 1, + "vt0p": 2, + "ATS_PACKNAME": 1, + "ATS_STALOADFLAG": 1, + "static": 1, + "loading": 1, + "run": 1, + "time": 1, + "castfn": 1, + "linset2list": 1, + "local": 10, + "datavtype": 1, + "FORK": 3, + "the_forkarray": 2, + "t": 1, + "array_tabulate": 1, + "fopr": 1, + "": 2, + "ch": 7, + "UN.cast": 2, + "channel_create_exn": 2, + "": 2, + "arrayref_tabulate": 1, + "the_forktray": 2, + "nmod": 1, + "randsleep": 6, + "intGte": 1, + "ignoret": 2, + "sleep": 2, + "uInt": 1, + "rand": 1, + "mod": 1, + "println": 9, + "nl": 2, + "nr": 2, + "ch_lfork": 2, + "ch_rfork": 2, + "HX": 1, + "try": 1, + "actively": 1, + "induce": 1, + "ch_forktray": 3, + "f0": 3, + "dynload": 3, + "mythread_create_cloptr": 6, + "llam": 6, + "while": 1 + }, + "SCSS": { + "blue": 4, + "#3bbfce": 1, + ";": 7, + "margin": 4, + "px": 1, + ".content": 1, + "-": 3, + "navigation": 1, + "{": 2, + "border": 2, + "color": 3, + "darken": 1, + "(": 1, + "%": 1, + ")": 1, + "}": 2, + ".border": 1, + "padding": 1, + "/": 2 + }, + "R": { + "df.residual.mira": 1, + "<": 46, + "-": 53, + "function": 18, + "(": 219, + "object": 12, + "...": 4, + ")": 220, + "{": 58, + "fit": 2, + "analyses": 1, + "[": 23, + "]": 24, + "return": 8, + "df.residual": 2, + "}": 58, + "df.residual.lme": 1, + "fixDF": 1, + "df.residual.mer": 1, + "sum": 1, + "object@dims": 1, + "*": 2, + "c": 11, + "+": 4, + "df.residual.default": 1, + "q": 3, + "df": 3, + "if": 19, + "is.null": 8, + "mk": 2, + "try": 3, + "coef": 1, + "silent": 3, + "TRUE": 14, + "mn": 2, + "f": 9, + "fitted": 1, + "inherits": 6, + "|": 3, + "NULL": 2, + "n": 3, + "ifelse": 1, + "is.data.frame": 1, + "is.matrix": 1, + "nrow": 1, + "length": 3, + "k": 3, + "max": 1, + "##polyg": 1, + "vector": 2, + "##numpoints": 1, + "number": 1, + "##output": 1, + "output": 1, + "##": 1, + "Example": 1, + "scripts": 1, + "group": 1, + "pts": 1, + "spsample": 1, + "polyg": 1, + "numpoints": 1, + "type": 3, + "SHEBANG#!Rscript": 2, + "ParseDates": 2, + "lines": 6, + "dates": 3, + "matrix": 3, + "unlist": 2, + "strsplit": 3, + "ncol": 3, + "byrow": 3, + "days": 2, + "times": 2, + "hours": 2, + "all.days": 2, + "all.hours": 2, + "data.frame": 1, + "Day": 2, + "factor": 2, + "levels": 2, + "Hour": 2, + "Main": 2, + "system": 1, + "intern": 1, + "punchcard": 4, + "as.data.frame": 1, + "table": 1, + "ggplot2": 6, + "ggplot": 1, + "aes": 2, + "y": 1, + "x": 3, + "geom_point": 1, + "size": 1, + "Freq": 1, + "scale_size": 1, + "range": 1, + "ggsave": 1, + "filename": 1, + "plot": 7, + "width": 7, + "height": 7, + "docType": 1, + "package": 5, + "name": 10, + "scholar": 6, + "alias": 2, + "title": 1, + "source": 3, + "The": 5, + "reads": 1, + "data": 13, + "from": 5, + "url": 2, + "http": 2, + "//scholar.google.com": 1, + ".": 7, + "Dates": 1, + "and": 5, + "citation": 2, + "counts": 1, + "are": 4, + "estimated": 1, + "determined": 1, + "automatically": 1, + "by": 2, + "a": 6, + "computer": 1, + "program.": 1, + "Use": 1, + "at": 2, + "your": 1, + "own": 1, + "risk.": 1, + "description": 1, + "code": 21, + "provides": 1, + "functions": 3, + "to": 9, + "extract": 1, + "Google": 2, + "Scholar.": 1, + "There": 1, "also": 1, - "enabled": 2, - "generation": 2, - "_500_000": 1, - "Remember": 1, - "duty": 2, - "Ready": 1, - "clkfreq": 2, - "Launch": 1, - "@attenuation": 1, - "Reset": 1, - "buffers": 1, - "@index": 1, - "constant": 3, - "frame_buffer_longs": 2, - "set_attenuation": 1, - "master": 2, - "attenuation": 3, - "initially": 2, - "set_pace": 2, - "percentage": 3, - "pace": 3, - "go": 1, - "Queue": 1, - "transition": 1, - "over": 2, - "Load": 1, - "bytemove": 1, - "@frames": 1, - "index": 5, - "Increment": 1, - "Returns": 4, - "queue": 2, - "useful": 2, - "checking": 1, + "convenience": 1, + "for": 4, + "comparing": 1, + "multiple": 1, + "scholars": 1, + "predicting": 1, + "h": 13, + "index": 1, + "scores": 1, + "based": 1, + "on": 2, + "past": 1, + "publication": 1, + "records.": 1, + "note": 1, + "A": 1, + "complementary": 1, + "set": 2, + "of": 2, + "Scholar": 1, + "can": 3, + "be": 8, + "found": 1, + "//biostat.jhsph.edu/": 1, + "jleek/code/googleCite.r": 1, + "was": 1, + "developed": 1, + "independently.": 1, + "#": 45, + "module": 25, + "available": 1, + "via": 1, + "the": 16, + "environment": 4, + "like": 1, + "it": 3, + "returns.": 1, + "@param": 2, + "an": 1, + "identifier": 1, + "specifying": 1, + "full": 1, + "path": 9, + "search": 5, + "see": 1, + "Details": 1, + "even": 1, + "attach": 11, + "is": 7, + "FALSE": 9, + "optionally": 1, + "attached": 2, + "current": 2, + "scope": 1, + "defaults": 1, + "However": 1, + "in": 8, + "interactive": 2, + "invoked": 1, + "directly": 1, + "terminal": 1, + "only": 1, + "i.e.": 1, + "not": 4, + "within": 1, + "modules": 4, + "import.attach": 1, + "or": 1, + "depending": 1, + "user": 1, + "s": 2, + "preference.": 1, + "attach_operators": 3, + "causes": 1, + "emph": 3, + "operators": 3, + "default": 1, + "path.": 1, + "Not": 1, + "attaching": 1, + "them": 1, + "therefore": 1, + "drastically": 1, + "limits": 1, + "usefulness.": 1, + "Modules": 1, + "searched": 1, + "options": 1, + "priority.": 1, + "directory": 1, + "always": 1, + "considered": 1, + "first.": 1, + "That": 1, + "local": 3, + "file": 4, + "./a.r": 1, + "will": 2, + "loaded.": 1, + "Module": 1, + "names": 2, + "fully": 1, + "qualified": 1, + "refer": 1, + "nested": 1, + "paths.": 1, + "See": 1, + "import": 5, + "executed": 1, + "global": 1, + "effect": 1, + "same.": 1, + "When": 1, + "used": 2, + "globally": 1, + "inside": 1, + "newly": 2, + "outside": 1, + "nor": 1, + "other": 2, + "which": 3, + "might": 1, + "loaded": 4, + "@examples": 1, + "@seealso": 3, + "reload": 3, + "@export": 2, + "substitute": 2, + "stopifnot": 3, + "missing": 1, + "&&": 2, + "module_name": 7, + "getOption": 1, + "else": 4, + "class": 4, + "module_path": 15, + "find_module": 1, + "stop": 1, + "attr": 2, + "message": 1, + "containing_modules": 3, + "module_init_files": 1, + "mapply": 1, + "do_import": 4, + "mod_ns": 5, + "as.character": 3, + "module_parent": 8, + "parent.frame": 2, + "mod_env": 7, + "exhibit_namespace": 3, + "identical": 2, + ".GlobalEnv": 2, + "environmentName": 2, + "parent.env": 4, + "export_operators": 2, + "invisible": 1, + "is_module_loaded": 1, + "get_loaded_module": 1, + "namespace": 13, + "structure": 3, + "new.env": 1, + "parent": 9, + ".BaseNamespaceEnv": 1, + "paste": 3, + "sep": 4, + "chdir": 1, + "envir": 5, + "cache_module": 1, + "exported_functions": 2, + "lsf.str": 2, + "list2env": 2, + "sapply": 2, + "get": 2, + "ops": 2, + "is_predefined": 2, + "%": 2, + "is_op": 2, + "prefix": 3, + "||": 1, + "grepl": 1, + "Filter": 1, + "op_env": 4, + "cache.": 1, + "@note": 1, + "Any": 1, + "references": 1, + "remain": 1, + "unchanged": 1, + "files": 1, "would": 1, "have": 1, - "frames": 2, - "empty": 2, - "detecting": 1, - "finished": 1, - "sample_ptr": 1, - "receives": 1, - "audio": 1, - "samples": 1, - "updated": 1, - "@sample": 1, - "aural_id": 1, - "id": 2, - "executing": 1, - "algorithm": 1, - "connecting": 1, - "Initialization": 1, - "reserved": 3, - "clear_cnt": 1, - "#2*15": 1, - "hub": 1, - "minst": 3, - "d0s0": 3, - "mult_ret": 1, - "antilog_ret": 1, - "assemble": 1, - "cordic": 4, - "reserves": 2, - "cstep": 1, - "instruction": 2, - "prepare": 1, - "cnt_value": 3, - "cnt_ticks": 3, - "Loop": 1, - "sample": 2, - "period": 1, - "cycle": 1, - "driving": 1, - "h80000000": 2, - "White": 1, - "noise": 3, - "source": 2, - "lfsr": 1, - "lfsr_taps": 2, - "Aspiration": 1, - "vibrato": 3, - "vphase": 2, - "glottal": 2, - "pitch": 5, - "mesh": 1, - "tune": 2, - "convert": 1, - "log": 2, - "phase": 2, - "gphase": 3, - "formant2": 2, - "rotate": 2, - "f2x": 3, - "f2y": 3, - "#cordic": 2, - "formant4": 2, - "f4x": 3, - "f4y": 3, - "subtract": 1, - "nx": 4, - "negated": 1, - "nasal": 2, - "amplitude": 3, - "#mult": 1, - "fphase": 4, - "frication": 2, - "#sine": 1, - "Handle": 1, - "frame_ptr": 6, - "past": 1, - "miscellaneous": 2, - "frame_index": 3, - "stepsize": 2, - "step_size": 5, - "h00FFFFFF": 2, - "final1": 2, - "finali": 2, - "iterate": 3, - "aa..ff": 4, - "accurate": 1, - "accumulation": 1, - "step_acc": 3, - "set2": 3, - "#par_curr": 1, - "set3": 2, - "#par_next": 1, - "set4": 3, - "#par_step": 1, - "#24": 1, - "par_curr": 3, - "absolute": 1, - "msb": 2, - "nr": 1, - "mult": 2, - "par_step": 1, - "frame_cnt": 2, - "step1": 2, - "stepi": 1, - "stepframe": 1, - "#frame_bytes": 1, - "par_next": 2, - "Math": 1, - "Subroutines": 1, - "Antilog": 1, - "whole": 2, - "fraction": 1, - "antilog": 2, - "FFEA0000": 1, - "h00000FFE": 2, - "insert": 2, - "leading": 1, - "Scaled": 1, - "unsigned": 3, - "h00001000": 2, - "negc": 1, - "Multiply": 1, - "#15": 1, - "mult_step": 1, - "Cordic": 1, - "degree": 1, - "#cordic_steps": 1, - "gets": 1, - "assembled": 1, - "cordic_dx": 1, - "incremented": 1, - "cordic_a": 1, - "cordic_delta": 2, - "linear": 1, - "register": 1, - "B901476": 1, - "greater": 1, - "h40000000": 1, - "h01000000": 1, - "FFFFFF": 1, - "h00010000": 1, - "h0000D000": 1, - "D000": 1, - "h00007000": 1, - "FFE": 1, - "h00000800": 1, - "registers": 2, - "startup": 2, - "Data": 1, - "zeroed": 1, - "cleared": 1, - "f1x": 1, - "f1y": 1, - "f3x": 1, - "f3y": 1, - "aspiration": 1, - "***": 1, - "mult_steps": 1, - "assembly": 1, - "area": 1, - "w/ret": 1, - "cordic_ret": 1 - }, - "Protocol Buffer": { - "package": 1, - "tutorial": 1, - ";": 13, - "option": 2, - "java_package": 1, - "java_outer_classname": 1, - "message": 3, - "Person": 2, - "{": 4, - "required": 3, - "string": 3, - "name": 1, - "int32": 1, - "id": 1, - "optional": 2, - "email": 1, - "enum": 1, - "PhoneType": 2, - "MOBILE": 1, - "HOME": 2, - "WORK": 1, - "}": 4, - "PhoneNumber": 2, - "number": 1, - "type": 1, - "[": 1, - "default": 1, - "]": 1, - "repeated": 2, - "phone": 1, - "AddressBook": 1, - "person": 1 - }, - "PureScript": { - "module": 4, - "Control.Arrow": 1, - "where": 20, - "import": 32, - "Data.Tuple": 3, - "class": 4, - "Arrow": 5, - "a": 46, - "arr": 10, - "forall": 26, - "b": 49, - "c.": 3, - "(": 111, - "-": 88, - "c": 17, - ")": 115, - "first": 4, - "d.": 2, - "Tuple": 21, - "d": 6, - "instance": 12, - "arrowFunction": 1, - "f": 28, - "second": 3, - "Category": 3, - "swap": 4, - "b.": 1, - "x": 26, - "y": 2, - "infixr": 3, - "***": 2, - "&&": 3, - "&": 3, - ".": 2, - "g": 4, - "ArrowZero": 1, - "zeroArrow": 1, - "<+>": 2, - "ArrowPlus": 1, - "Data.Foreign": 2, - "Foreign": 12, - "..": 1, - "ForeignParser": 29, - "parseForeign": 6, - "parseJSON": 3, - "ReadForeign": 11, - "read": 10, - "prop": 3, - "Prelude": 3, - "Data.Array": 3, - "Data.Either": 1, - "Data.Maybe": 3, - "Data.Traversable": 2, - "foreign": 6, - "data": 3, - "*": 1, - "fromString": 2, - "String": 13, - "Either": 6, - "readPrimType": 5, - "a.": 6, - "readMaybeImpl": 2, - "Maybe": 5, - "readPropImpl": 2, - "showForeignImpl": 2, - "showForeign": 1, - "Prelude.Show": 1, - "show": 5, - "p": 11, - "json": 2, - "monadForeignParser": 1, - "Prelude.Monad": 1, - "return": 6, - "_": 7, - "Right": 9, - "case": 9, - "of": 9, - "Left": 8, - "err": 8, - "applicativeForeignParser": 1, - "Prelude.Applicative": 1, - "pure": 1, - "<*>": 2, - "<$>": 8, - "functorForeignParser": 1, - "Prelude.Functor": 1, - "readString": 1, - "readNumber": 1, - "Number": 1, - "readBoolean": 1, - "Boolean": 1, - "readArray": 1, - "[": 5, - "]": 5, - "let": 4, - "arrayItem": 2, - "i": 2, - "result": 4, - "+": 30, - "in": 2, - "xs": 3, - "traverse": 2, - "zip": 1, - "range": 1, - "length": 3, - "readMaybe": 1, - "<<": 4, - "<": 13, - "Just": 7, - "Nothing": 7, - "Data.Map": 1, - "Map": 26, - "empty": 6, - "singleton": 5, - "insert": 10, - "lookup": 8, - "delete": 9, - "alter": 8, - "toList": 10, - "fromList": 3, - "union": 3, - "map": 8, - "qualified": 1, - "as": 1, - "P": 1, - "concat": 3, - "Data.Foldable": 2, - "foldl": 4, - "k": 108, - "v": 57, - "Leaf": 15, - "|": 9, - "Branch": 27, - "{": 25, - "key": 13, - "value": 8, - "left": 15, - "right": 14, - "}": 26, - "eqMap": 1, - "P.Eq": 11, - "m1": 6, - "m2": 6, - "P.": 11, - "/": 1, - "P.not": 1, - "showMap": 1, - "P.Show": 3, - "m": 6, - "P.show": 1, - "v.": 11, - "P.Ord": 9, - "b@": 6, - "k1": 16, - "b.left": 9, - "b.right": 8, - "findMinKey": 5, - "glue": 4, - "minKey": 3, - "root": 2, - "b.key": 1, - "b.value": 2, - "v1": 3, - "v2.": 1, - "v2": 2, - "ReactiveJQueryTest": 1, - "flip": 2, - "Control.Monad": 1, - "Control.Monad.Eff": 1, - "Control.Monad.JQuery": 1, - "Control.Reactive": 1, - "Control.Reactive.JQuery": 1, - "head": 2, - "Data.Monoid": 1, - "Debug.Trace": 1, - "Global": 1, - "parseInt": 1, - "main": 1, - "do": 4, - "personDemo": 2, - "todoListDemo": 1, - "greet": 1, - "firstName": 2, - "lastName": 2, - "Create": 3, - "new": 1, - "reactive": 1, - "variables": 1, - "to": 3, - "hold": 1, - "the": 3, - "user": 1, - "readRArray": 1, - "insertRArray": 1, - "text": 5, - "completed": 2, - "paragraph": 2, - "display": 2, - "next": 1, - "task": 4, - "nextTaskLabel": 3, - "create": 2, - "append": 2, - "nextTask": 2, - "toComputedArray": 2, - "toComputed": 2, - "bindTextOneWay": 2, - "counter": 3, - "counterLabel": 3, - "rs": 2, - "cs": 2, + "happened": 1, + "without": 1, + "unload": 2, + "should": 2, + "production": 1, + "code.": 1, + "does": 1, + "currently": 1, + "detach": 1, + "environments.": 1, + "Reload": 1, + "given": 1, + "Remove": 1, + "cache": 1, + "forcing": 1, + "reload.": 1, + "reloaded": 1, + "reference": 1, + "unloaded": 1, + "still": 1, + "work.": 1, + "Reloading": 1, + "primarily": 1, + "useful": 1, + "testing": 1, + "during": 1, + "module_ref": 3, + "rm": 1, + "list": 1, + ".loaded_modules": 1, + "whatnot.": 1, + "assign": 1, + "hello": 2, + "print": 1, + "MedianNorm": 2, + "geomeans": 3, "<->": 1, - "if": 1, + "exp": 1, + "rowMeans": 1, + "log": 5, + "apply": 2, + "2": 1, + "cnts": 2, + "median": 1, + "library": 1, + "print_usage": 2, + "stderr": 1, + "cat": 1, + "spec": 2, + "opt": 23, + "getopt": 1, + "help": 1, + "stdout": 1, + "status": 1, + "out": 4, + "res": 6, + "ylim": 7, + "read.table": 1, + "header": 1, + "quote": 1, + "nsamp": 8, + "dim": 1, + "outfile": 4, + "sprintf": 2, + "png": 2, + "hist": 4, + "mids": 4, + "density": 4, + "col": 4, + "rainbow": 4, + "main": 2, + "xlab": 2, + "ylab": 2, + "i": 6, + "devnum": 2, + "dev.off": 2, + "size.factors": 2, + "data.matrix": 1, + "data.norm": 3, + "t": 1, + "/": 1 + }, + "Brightscript": { + "**": 17, + "Simple": 1, + "Grid": 2, + "Screen": 2, + "Demonstration": 1, + "App": 1, + "Copyright": 1, + "(": 32, + "c": 1, + ")": 31, + "Roku": 1, + "Inc.": 1, + "All": 3, + "Rights": 1, + "Reserved.": 1, + "************************************************************": 2, + "Sub": 2, + "Main": 1, + "set": 2, + "to": 10, + "go": 1, + "time": 1, + "get": 1, + "started": 1, + "while": 4, + "gridstyle": 7, + "<": 1, + "print": 7, + ";": 10, + "screen": 5, + "preShowGridScreen": 2, + "showGridScreen": 2, + "end": 2, + "End": 4, + "Set": 1, + "the": 17, + "configurable": 1, + "theme": 3, + "attributes": 2, + "for": 10, + "application": 1, + "Configure": 1, + "custom": 1, + "overhang": 1, + "and": 4, + "Logo": 1, + "are": 2, + "artwork": 2, + "colors": 1, + "offsets": 1, + "specific": 1, + "app": 1, + "******************************************************": 4, + "Screens": 1, + "can": 2, + "make": 1, + "slight": 1, + "adjustments": 1, + "default": 1, + "individual": 1, + "attributes.": 1, + "these": 1, + "greyscales": 1, + "theme.GridScreenBackgroundColor": 1, + "theme.GridScreenMessageColor": 1, + "theme.GridScreenRetrievingColor": 1, + "theme.GridScreenListNameColor": 1, + "used": 1, + "in": 3, + "theme.CounterTextLeft": 1, + "theme.CounterSeparator": 1, + "theme.CounterTextRight": 1, + "theme.GridScreenLogoHD": 1, + "theme.GridScreenLogoOffsetHD_X": 1, + "theme.GridScreenLogoOffsetHD_Y": 1, + "theme.GridScreenOverhangHeightHD": 1, + "theme.GridScreenLogoSD": 1, + "theme.GridScreenOverhangHeightSD": 1, + "theme.GridScreenLogoOffsetSD_X": 1, + "theme.GridScreenLogoOffsetSD_Y": 1, + "theme.GridScreenFocusBorderSD": 1, + "theme.GridScreenFocusBorderHD": 1, + "use": 1, + "your": 1, + "own": 1, + "description": 1, + "background": 1, + "theme.GridScreenDescriptionOffsetSD": 1, + "theme.GridScreenDescriptionOffsetHD": 1, + "return": 5, + "Function": 5, + "Perform": 1, + "any": 1, + "startup/initialization": 1, + "stuff": 1, + "prior": 1, + "style": 6, + "as": 2, + "string": 3, + "As": 3, + "Object": 2, + "m.port": 3, + "CreateObject": 2, + "screen.SetMessagePort": 1, + "screen.": 1, + "The": 1, + "will": 3, + "show": 1, + "retreiving": 1, + "categoryList": 4, + "getCategoryList": 1, + "[": 3, + "]": 4, + "+": 1, + "screen.setupLists": 1, + "categoryList.count": 2, + "screen.SetListNames": 1, + "StyleButtons": 3, + "getGridControlButtons": 1, + "screen.SetContentList": 2, + "i": 3, + "-": 15, + "getShowsForCategoryItem": 1, + "screen.Show": 1, + "true": 1, + "msg": 3, + "wait": 1, + "getmessageport": 1, + "does": 1, + "not": 2, + "work": 1, + "on": 1, + "gridscreen": 1, + "type": 2, + "if": 3, + "then": 3, + "msg.GetMessage": 1, + "msg.GetIndex": 3, + "msg.getData": 2, + "msg.isListItemFocused": 1, + "else": 1, + "msg.isListItemSelected": 1, + "row": 2, + "selection": 3, + "yes": 1, + "so": 2, + "we": 3, + "come": 1, + "back": 1, + "with": 2, + "new": 1, + ".Title": 1, + "endif": 1, + "**********************************************************": 1, + "this": 3, + "function": 1, + "passing": 1, + "an": 1, + "roAssociativeArray": 2, + "be": 2, + "sufficient": 1, + "springboard": 2, + "display": 2, + "add": 1, + "code": 1, + "create": 1, + "now": 1, + "do": 1, + "nothing": 1, + "Return": 1, + "list": 1, + "of": 5, + "categories": 1, + "filter": 1, + "all": 1, + "categories.": 1, + "just": 2, + "static": 1, + "data": 2, + "example.": 1, + "********************************************************************": 1, + "ContentMetaData": 1, + "objects": 1, + "shows": 1, + "category.": 1, + "For": 1, + "example": 1, + "cheat": 1, + "but": 2, + "ideally": 1, + "you": 1, + "dynamically": 1, + "content": 2, + "each": 1, + "category": 1, + "is": 1, + "dynamic": 1, + "s": 1, + "one": 3, + "small": 1, + "step": 1, + "a": 4, + "man": 1, + "giant": 1, + "leap": 1, + "mankind.": 1, + "http": 14, + "//upload.wikimedia.org/wikipedia/commons/1/1e/Apollo_11_first_step.jpg": 2, + "I": 2, + "have": 2, + "Dream": 1, + "PG": 1, + "dream": 1, + "that": 1, + "my": 1, + "four": 1, + "little": 1, + "children": 1, + "day": 1, + "live": 1, + "nation": 1, + "where": 1, + "they": 1, + "judged": 1, + "by": 2, + "color": 1, + "their": 2, + "skin": 1, + "character.": 1, + "//upload.wikimedia.org/wikipedia/commons/8/81/Martin_Luther_King_": 2, + "_March_on_Washington.jpg": 2, + "Flat": 6, + "Movie": 2, + "HD": 6, + "x2": 4, + "SD": 5, + "Netflix": 1, + "//upload.wikimedia.org/wikipedia/commons/4/43/Gold_star_on_blue.gif": 2, + "Landscape": 1, + "x3": 6, + "Channel": 1, + "Store": 1, + "//upload.wikimedia.org/wikipedia/commons/thumb/9/96/Dunkery_Hill.jpg/800px": 2, + "Dunkery_Hill.jpg": 2, + "Portrait": 1, + "x4": 1, + "posters": 3, + "//upload.wikimedia.org/wikipedia/commons/9/9f/Kane_George_Gurnett.jpg": 2, + "Square": 1, + "x1": 1, + "//upload.wikimedia.org/wikipedia/commons/thumb/d/de/SQUARE_SHAPE.svg/536px": 2, + "SQUARE_SHAPE.svg.png": 2, + "x9": 1, + "//upload.wikimedia.org/wikipedia/commons/thumb/2/22/": 2, + "%": 8, + "C3": 4, + "cran_TV_plat.svg/200px": 2, + "cran_TV_plat.svg.png": 2, + "}": 1, + "buttons": 1 + }, + "HTML": { + "": 2, + "html": 1, + "PUBLIC": 2, + "W3C": 2, + "DTD": 3, + "XHTML": 1, + "1": 1, + "0": 2, + "Transitional": 1, + "EN": 2, + "http": 3, + "www": 2, + "w3": 2, + "org": 2, + "TR": 2, + "xhtml1": 2, + "transitional": 1, + "dtd": 2, + "": 2, + "xmlns=": 1, + "": 2, + "": 1, + "equiv=": 1, + "content=": 1, + "": 2, + "Related": 2, + "Pages": 2, + "": 2, + "": 1, + "href=": 9, + "rel=": 1, + "type=": 1, + "": 1, + "": 2, + "
": 10, + "class=": 22, + "": 8, + "Main": 1, + "Page": 1, + "": 8, + "&": 3, + "middot": 3, + ";": 3, + "Class": 2, + "Overview": 2, + "Hierarchy": 1, + "All": 1, + "Classes": 1, + "
": 11, + "Here": 1, + "is": 1, + "a": 4, + "list": 1, + "of": 5, + "all": 1, + "related": 1, + "documentation": 1, + "pages": 1, + "": 1, + "": 2, + "id=": 2, + "": 4, + "": 2, + "16": 1, + "The": 2, + "Layout": 1, + "System": 1, + "
": 4, + "": 2, + "src=": 2, + "alt=": 2, + "width=": 1, + "height=": 2, + "target=": 3, + "
": 1, + "Generated": 1, + "with": 1, + "Doxygen": 1, + "": 2, + "": 2, + "HTML": 2, + "4": 1, + "Frameset": 1, + "REC": 1, + "html40": 1, + "frameset": 1, + "Common_meta": 1, + "(": 14, + ")": 14, + "Android": 5, + "API": 7, + "Differences": 2, + "Report": 2, + "Header": 1, + "

": 1, + "

": 1, + "

": 3, + "This": 1, + "document": 1, + "details": 1, + "the": 11, + "changes": 2, + "in": 4, + "framework": 2, + "API.": 3, + "It": 2, + "shows": 1, + "additions": 1, + "modifications": 1, + "and": 5, + "removals": 2, + "for": 2, + "packages": 1, + "classes": 1, + "methods": 1, + "fields.": 1, + "Each": 1, + "reference": 1, + "to": 3, + "an": 3, + "change": 2, + "includes": 1, + "brief": 1, + "description": 1, + "explanation": 1, + "suggested": 1, + "workaround": 1, + "where": 1, + "available.": 1, + "

": 3, + "differences": 2, + "described": 1, + "this": 2, + "report": 1, + "are": 3, + "based": 1, + "comparison": 1, + "APIs": 1, + "whose": 1, + "versions": 1, + "specified": 1, + "upper": 1, + "-": 1, + "right": 1, + "corner": 1, + "page.": 1, + "compares": 1, + "newer": 1, + "older": 2, + "version": 1, + "noting": 1, + "any": 1, + "relative": 1, + "So": 1, + "example": 1, + "indicated": 1, + "no": 1, + "longer": 1, + "present": 1, + "For": 1, + "more": 1, + "information": 1, + "about": 1, + "SDK": 1, + "see": 1, + "product": 1, + "site": 1, + ".": 1, + "if": 4, + "no_delta": 1, + "

": 1, + "Congratulation": 1, + "

": 1, + "No": 1, + "were": 1, + "detected": 1, + "between": 1, + "two": 1, + "provided": 1, + "APIs.": 1, + "endif": 4, + "removed_packages": 2, + "Table": 3, + "name": 3, + "rows": 3, + "{": 3, + "it.from": 1, + "ModelElementRow": 1, + "}": 3, + "
": 3, + "added_packages": 2, + "it.to": 2, + "PackageAddedLink": 1, + "SimpleTableRow": 2, + "changed_packages": 2, + "PackageChangedLink": 1 + }, + "Frege": { + "package": 2, + "examples.SwingExamples": 1, + "where": 39, + "import": 7, + "Java.Awt": 1, + "(": 339, + "ActionListener": 2, + ")": 345, + "Java.Swing": 1, + "main": 11, + "_": 60, + "do": 38, + "rs": 2, + "<": 84, + "-": 730, + "mapM": 3, + "Runnable.new": 1, + "[": 120, + "helloWorldGUI": 2, + "buttonDemoGUI": 2, + "celsiusConverterGUI": 2, + "]": 116, + "mapM_": 5, + "invokeLater": 1, + "println": 25, + "s": 21, + "getLine": 2, + "return": 17, + "tempTextField": 2, + "JTextField.new": 1, + "celsiusLabel": 1, + "JLabel.new": 3, + "convertButton": 1, + "JButton.new": 3, + "fahrenheitLabel": 1, + "frame": 3, + "JFrame.new": 3, + "frame.setDefaultCloseOperation": 3, + "JFrame.dispose_on_close": 3, + "frame.setTitle": 1, + "celsiusLabel.setText": 1, + "convertButton.setText": 1, + "let": 8, + "convertButtonActionPerformed": 2, + "celsius": 3, + "<->": 35, + "getText": 1, + "case": 6, + "double": 1, + "of": 32, + "Left": 5, + "fahrenheitLabel.setText": 3, + "+": 200, + "Right": 6, + "c": 33, + "show": 24, + "c*1.8": 1, + ".long": 1, + "ActionListener.new": 2, + "convertButton.addActionListener": 1, + "contentPane": 2, + "frame.getContentPane": 2, + "layout": 2, + "GroupLayout.new": 1, + "contentPane.setLayout": 1, + "TODO": 1, + "continue": 1, + "http": 3, + "//docs.oracle.com/javase/tutorial/displayCode.html": 1, + "code": 1, + "//docs.oracle.com/javase/tutorial/uiswing/examples/learn/CelsiusConverterProject/src/learn/CelsiusConverterGUI.java": 1, + "frame.pack": 3, + "frame.setVisible": 3, + "true": 16, + "label": 2, + "cp": 3, + "cp.add": 1, + "newContentPane": 2, + "JPanel.new": 1, + "b1": 11, + "JButton": 4, + "b1.setVerticalTextPosition": 1, + "SwingConstants.center": 2, + "b1.setHorizontalTextPosition": 1, + "SwingConstants.leading": 2, + "b2": 10, + "b2.setVerticalTextPosition": 1, + "b2.setHorizontalTextPosition": 1, + "b3": 7, + "new": 9, + "Enable": 1, + "middle": 2, + "button": 1, + "setVerticalTextPosition": 1, + "SwingConstants": 2, + "center": 1, + "setHorizontalTextPosition": 1, + "leading": 1, + "setEnabled": 7, + "false": 13, + "action1": 2, + "action3": 2, + "b1.addActionListener": 1, + "b3.addActionListener": 1, + "newContentPane.add": 3, + "newContentPane.setOpaque": 1, + "frame.setContentPane": 1, + "examples.Sudoku": 1, + "Data.TreeMap": 1, + "Tree": 4, + "keys": 2, + "Data.List": 1, + "as": 33, + "DL": 1, + "hiding": 1, + "find": 20, + "union": 10, + "type": 8, + "Element": 6, + "Int": 6, + "Zelle": 8, + "set": 4, + "candidates": 18, + "Position": 22, + "Feld": 3, + "Brett": 13, + "data": 3, + "for": 25, + "assumptions": 10, + "and": 14, + "conclusions": 2, + "Assumption": 21, + "ISNOT": 14, + "|": 62, + "IS": 16, + "derive": 2, + "Eq": 1, + "Ord": 1, + "instance": 1, + "Show": 1, + "p": 72, + "e": 15, + "pname": 10, + "e.show": 2, + "showcs": 5, + "cs": 27, + "joined": 4, + "map": 49, + "Assumption.show": 1, + "elements": 12, + "all": 22, + "possible": 2, + "..": 1, + "positions": 16, + "rowstarts": 4, + "a": 99, + "row": 20, + "is": 24, + "starting": 3, + "colstarts": 3, + "column": 2, + "boxstarts": 3, + "box": 15, + "boxmuster": 3, + "pattern": 1, + "by": 3, + "adding": 1, + "upper": 2, + "left": 4, + "position": 9, + "results": 1, + "in": 22, + "real": 1, + "extract": 2, + "field": 9, + "getf": 16, + "f": 19, + "fs": 22, + "fst": 9, + "otherwise": 8, + "cell": 24, + "getc": 12, + "b": 113, + "snd": 20, + "compute": 5, + "the": 20, + "list": 7, + "that": 18, + "belong": 3, + "to": 13, + "same": 8, + "given": 3, + "z..": 1, + "z": 12, + "quot": 1, + "*": 5, + "col": 17, + "mod": 3, + "ri": 2, + "div": 3, + "or": 15, + "depending": 1, + "on": 4, + "ci": 3, + "index": 3, + "right": 4, + "check": 2, + "if": 5, + "candidate": 10, + "has": 2, + "exactly": 2, + "one": 2, + "member": 1, + "i.e.": 1, + "been": 1, + "solved": 1, + "single": 9, + "Bool": 2, + "unsolved": 10, + "rows": 4, + "cols": 6, + "boxes": 1, + "allrows": 8, + "allcols": 5, + "allboxs": 5, + "allrcb": 5, + "zip": 7, + "repeat": 3, + "containers": 6, + "String": 9, + "PRINTING": 1, + "printable": 1, + "coordinate": 1, + "a1": 3, + "lower": 1, + "i9": 1, + "packed": 1, + "chr": 2, + "ord": 6, + "print": 25, + "board": 41, + "printb": 4, + "p1line": 2, + "pfld": 4, + "line": 2, + "brief": 1, + "no": 4, + ".": 41, + "some": 2, + "x": 45, + "zs": 1, + "initial/final": 1, + "result": 11, + "msg": 6, + "res012": 2, + "concatMap": 1, + "a*100": 1, + "b*10": 1, + "BOARD": 1, + "ALTERATION": 1, + "ACTIONS": 1, + "message": 1, + "about": 1, + "what": 1, + "done": 1, + "turnoff1": 3, + "IO": 13, + "i": 16, + "off": 11, + "nc": 7, + "head": 19, + "newb": 7, + "filter": 26, + "notElem": 7, + "turnoff": 11, + "turnoffh": 1, + "ps": 8, + "foldM": 2, + "toh": 2, + "setto": 3, + "n": 38, + "cname": 4, + "nf": 2, + "SOLVING": 1, + "STRATEGIES": 1, + "reduce": 3, + "sets": 2, + "contains": 1, + "numbers": 1, + "already": 1, + "This": 2, + "finds": 1, + "logs": 1, + "NAKED": 5, + "SINGLEs": 1, + "passing.": 1, + "sss": 3, + "each": 2, + "with": 15, + "more": 2, + "than": 2, + "fields": 6, + "are": 6, + "rcb": 16, + "elem": 16, + "collect": 1, + "remove": 3, + "from": 7, + "look": 10, + "number": 4, + "appears": 1, + "container": 9, + "this": 2, + "can": 9, + "go": 1, + "other": 2, + "place": 1, + "HIDDEN": 6, + "SINGLE": 1, + "hiddenSingle": 2, + "select": 1, + "containername": 1, + "FOR": 11, + "IN": 9, + "occurs": 5, + "length": 20, + "PAIRS": 8, + "TRIPLES": 8, + "QUADS": 2, + "nakedPair": 4, + "t": 14, + "nm": 6, + "SELECT": 3, + "pos": 5, + "tuple": 2, + "name": 2, + "//": 8, + "u": 6, + "fold": 7, + "non": 2, + "outof": 6, + "tuples": 2, + "hit": 7, + "subset": 3, + "any": 3, + "hiddenPair": 4, + "minus": 2, + "uniq": 4, + "sort": 4, + "common": 4, + "1": 2, + "bs": 7, + "undefined": 1, + "cannot": 1, + "happen": 1, + "because": 1, + "either": 1, + "empty": 4, + "not": 5, + "intersectionlist": 2, + "intersections": 2, + "reason": 8, + "reson": 1, + "cpos": 7, + "WHERE": 2, + "tail": 2, + "intersection": 1, + "we": 5, + "occurences": 1, + "but": 2, + "an": 6, + "XY": 2, + "Wing": 2, + "there": 6, + "exists": 6, + "A": 7, + "X": 5, + "Y": 4, + "B": 5, + "Z": 6, + "shares": 2, + "C": 6, + "reasoning": 1, + "will": 4, + "be": 9, + "since": 1, + "indeed": 1, + "thus": 1, + "see": 1, + "xyWing": 2, + "y": 15, + "rcba": 4, + "share": 1, + "&&": 9, + "||": 2, "then": 1, "else": 1, - "entry": 1, - "entry.completed": 1 + "c1": 4, + "c2": 3, + "N": 5, + "Fish": 1, + "Swordfish": 1, + "Jellyfish": 1, + "When": 2, + "particular": 1, + "digit": 1, + "located": 2, + "only": 1, + "columns": 2, + "eliminate": 1, + "those": 2, + "which": 2, + "fish": 7, + "fishname": 5, + "rset": 4, + "take": 13, + "certain": 1, + "rflds": 2, + "rowset": 1, + "colss": 3, + "must": 4, + "appear": 1, + "at": 3, + "least": 3, + "cstart": 2, + "immediate": 1, + "consequences": 6, + "assumption": 8, + "form": 1, + "conseq": 3, + "two": 1, + "contradict": 2, + "contradicts": 7, + "get": 3, + "aPos": 5, + "List": 1, + "turned": 1, + "when": 2, + "true/false": 1, + "toClear": 7, + "whose": 1, + "implications": 5, + "themself": 1, + "chain": 2, + "paths": 12, + "solution": 6, + "reverse": 4, + "css": 7, + "yields": 1, + "contradictory": 1, + "chainContra": 2, + "pro": 7, + "contra": 4, + "ALL": 2, + "conlusions": 1, + "uniqBy": 2, + "using": 2, + "sortBy": 2, + "comparing": 2, + "conslusion": 1, + "chains": 4, + "LET": 1, + "BE": 1, + "final": 2, + "conclusion": 4, + "THE": 1, + "FIRST": 1, + "con": 3, + "implication": 2, + "ai": 2, + "so": 1, + "a0": 1, + "OR": 7, + "a2": 2, + "...": 2, + "IMPLIES": 1, + "For": 2, + "cells": 1, + "pi": 2, + "have": 1, + "construct": 2, + "p0": 1, + "p1": 1, + "c0": 1, + "cellRegionChain": 2, + "os": 3, + "cellas": 2, + "regionas": 2, + "iss": 3, + "ass": 2, + "first": 2, + "candidates@": 1, + "region": 2, + "oss": 2, + "Liste": 1, + "aller": 1, + "Annahmen": 1, + "r": 7, + "ein": 1, + "bestimmtes": 1, + "acstree": 3, + "Tree.fromList": 1, + "bypass": 1, + "maybe": 1, + "tree": 1, + "lookup": 2, + "Just": 2, + "error": 1, + "performance": 1, + "resons": 1, + "confine": 1, + "ourselves": 1, + "20": 1, + "per": 1, + "mkPaths": 3, + "acst": 3, + "impl": 2, + "{": 1, + "a3": 1, + "ordered": 1, + "impls": 2, + "ns": 2, + "concat": 1, + "takeUntil": 1, + "null": 1, + "iterate": 1, + "expandchain": 3, + "avoid": 1, + "loops": 1, + "uni": 3, + "SOLVE": 1, + "SUDOKU": 1, + "Apply": 1, + "available": 1, + "strategies": 1, + "until": 1, + "nothing": 2, + "changes": 1, + "anymore": 1, + "Strategy": 1, + "functions": 2, + "supposed": 1, + "applied": 1, + "give": 2, + "changed": 1, + "board.": 1, + "strategy": 2, + "does": 2, + "anything": 1, + "alter": 1, + "it": 2, + "returns": 2, + "next": 1, + "tried.": 1, + "solve": 19, + "res@": 16, + "apply": 17, + "res": 16, + "smallest": 1, + "comment": 16, + "SINGLES": 1, + "locked": 1, + "2": 3, + "QUADRUPELS": 6, + "3": 3, + "4": 3, + "WINGS": 1, + "FISH": 3, + "pcomment": 2, + "9": 5, + "forcing": 1, + "allow": 1, + "infer": 1, + "both": 1, + "brd": 2, + "com": 5, + "stderr": 3, + "<<": 4, + "log": 1, + "turn": 1, + "string": 3, + "into": 1, + "mkrow": 2, + "mkrow1": 2, + "xs": 4, + "make": 1, + "sure": 1, + "unpacked": 2, + "<=>": 1, + "0": 2, + "ignored": 1, + "h": 1, + "help": 1, + "usage": 1, + "java": 5, + "Sudoku": 2, + "file": 4, + "81": 3, + "char": 1, + "consisting": 1, + "digits": 2, + "One": 1, + "such": 1, + "going": 1, + "www": 1, + "sudokuoftheday": 1, + "pages": 1, + "o": 1, + "d": 3, + "php": 1, + "click": 1, + "puzzle": 1, + "open": 1, + "tab": 1, + "Copy": 1, + "URL": 2, + "address": 1, + "your": 1, + "browser": 1, + "There": 1, + "also": 1, + "hard": 1, + "sudokus": 1, + "examples": 1, + "top95": 1, + "txt": 1, + "W": 1, + "felder": 2, + "decode": 4, + "files": 2, + "forM_": 1, + "sudoku": 2, + "br": 4, + "openReader": 1, + "lines": 2, + "BufferedReader.getLines": 1, + "process": 5, + "ss": 8, + "sum": 2, + "candi": 2, + "consider": 3, + "acht": 4, + "stderr.println": 3, + "neun": 2, + "module": 2, + "examples.CommandLineClock": 1, + "Date": 5, + "native": 4, + "java.util.Date": 1, + "MutableIO": 1, + "toString": 2, + "Mutable": 1, + "ST": 1, + "d.toString": 1, + "action": 2, + "us": 1, + "current": 4, + "time": 1, + "lang": 2, + "Thread": 2, + "sleep": 4, + "takes": 1, + "long": 4, + "may": 1, + "throw": 1, + "InterruptedException": 4, + "without": 1, + "doubt": 1, + "public": 1, + "static": 1, + "void": 2, + "millis": 1, + "throws": 4, + "Encoded": 1, + "Frege": 1, + "argument": 1, + "Long": 3, + "defined": 1, + "frege": 1, + "Lang": 1, + "args": 2, + "forever": 1, + "stdout.flush": 1, + "Thread.sleep": 4, + "examples.Concurrent": 1, + "System.Random": 1, + "Java.Net": 1, + "Control.Concurrent": 1, + "main2": 1, + "m": 2, + "newEmptyMVar": 1, + "forkIO": 11, + "m.put": 3, + "replicateM_": 3, + "m.take": 1, + "example1": 1, + "putChar": 2, + "example2": 2, + "setReminder": 3, + "L*n": 1, + "table": 1, + "mainPhil": 2, + "fork1": 3, + "fork2": 3, + "fork3": 3, + "fork4": 3, + "fork5": 3, + "MVar": 3, + "5": 1, + "philosopher": 7, + "Kant": 1, + "Locke": 1, + "Wittgenstein": 1, + "Nozick": 1, + "Mises": 1, + "me": 13, + "g": 4, + "Random.newStdGen": 1, + "phil": 4, + "tT": 2, + "g1": 2, + "Random.randomR": 2, + "L": 6, + "eT": 2, + "g2": 3, + "thinkTime": 3, + "eatTime": 3, + "fl": 4, + "left.take": 1, + "rFork": 2, + "poll": 1, + "fr": 3, + "right.put": 1, + "left.put": 2, + "table.notifyAll": 2, + "Nothing": 2, + "table.wait": 1, + "inter": 3, + "catch": 2, + "getURL": 4, + "xx": 2, + "url": 1, + "URL.new": 1, + "url.openConnection": 1, + "con.connect": 1, + "con.getInputStream": 1, + "typ": 5, + "con.getContentType": 1, + "ir": 2, + "InputStreamReader.new": 2, + "fromMaybe": 1, + "charset": 2, + "unsupportedEncoding": 3, + "BufferedReader": 1, + "getLines": 1, + "InputStream": 1, + "UnsupportedEncodingException": 1, + "InputStreamReader": 1, + "x.catched": 1, + "ctyp": 2, + "charset=": 1, + "m.group": 1, + "SomeException": 2, + "Throwable": 1, + "m1": 1, + "MVar.newEmpty": 3, + "m2": 1, + "m3": 2, + "catchAll": 3, + "m1.put": 1, + "m2.put": 1, + "m3.put": 1, + "r1": 2, + "m1.take": 1, + "r2": 3, + "m2.take": 1, + "r3": 3, + "putStrLn": 2, + "x.getClass.getName": 1 }, + "Literate Agda": { + "documentclass": 1, + "{": 35, + "article": 1, + "}": 35, + "usepackage": 7, + "amssymb": 1, + "bbm": 1, + "[": 2, + "greek": 1, + "english": 1, + "]": 2, + "babel": 1, + "ucs": 1, + "utf8x": 1, + "inputenc": 1, + "autofe": 1, + "DeclareUnicodeCharacter": 3, + "ensuremath": 3, + "ulcorner": 1, + "urcorner": 1, + "overline": 1, + "equiv": 1, + "fancyvrb": 1, + "DefineVerbatimEnvironment": 1, + "code": 3, + "Verbatim": 1, + "%": 1, + "Add": 1, + "fancy": 1, + "options": 1, + "here": 1, + "if": 1, + "you": 3, + "like.": 1, + "begin": 2, + "document": 2, + "module": 3, + "NatCat": 1, + "where": 2, + "open": 2, + "import": 2, + "Relation.Binary.PropositionalEquality": 1, + "-": 21, + "If": 1, + "can": 1, + "show": 1, + "that": 1, + "a": 1, + "relation": 1, + "only": 1, + "ever": 1, + "has": 1, + "one": 1, + "inhabitant": 5, + "get": 1, + "the": 1, + "category": 1, + "laws": 1, + "for": 1, + "free": 1, + "EasyCategory": 3, + "(": 36, + "obj": 4, + "Set": 2, + ")": 36, + "_": 6, + "x": 34, + "y": 28, + "z": 18, + "id": 9, + "single": 4, + "r": 26, + "s": 29, + "assoc": 2, + "w": 4, + "t": 6, + "Data.Nat": 1, + "same": 5, + ".0": 2, + "n": 14, + "refl": 6, + ".": 5, + "suc": 6, + "m": 6, + "cong": 1, + "trans": 5, + ".n": 1, + "zero": 1, + "Nat": 1, + "end": 2 + }, + "Lua": { + "local": 11, + "FileListParser": 5, + "pd.Class": 3, + "new": 3, + "(": 56, + ")": 56, + "register": 3, + "function": 16, + "initialize": 3, + "sel": 3, + "atoms": 3, + "-": 60, + "Base": 1, + "filename": 2, + "File": 2, + "extension": 2, + "Number": 4, + "of": 9, + "files": 1, + "in": 7, + "batch": 2, + "self.inlets": 3, + "To": 3, + "[": 17, + "list": 1, + "trim": 1, + "]": 17, + "binfile": 3, + "vidya": 1, + "file": 8, + "modder": 1, + "s": 5, + "mechanisms": 1, + "self.outlets": 3, + "self.extension": 3, + "the": 7, + "last": 1, + "self.batchlimit": 3, + "return": 3, + "true": 3, + "end": 26, + "in_1_symbol": 1, + "for": 9, + "i": 10, + "do": 8, + "self": 10, + "outlet": 10, + "{": 16, + "}": 16, + "..": 7, + "in_2_list": 1, + "d": 9, + "in_3_float": 1, + "f": 12, + "A": 1, + "simple": 1, + "counting": 1, + "object": 1, + "that": 1, + "increments": 1, + "an": 1, + "internal": 1, + "counter": 1, + "whenever": 1, + "it": 2, + "receives": 2, + "a": 5, + "bang": 3, + "at": 2, + "its": 2, + "first": 1, + "inlet": 2, + "or": 2, + "changes": 1, + "to": 8, + "whatever": 1, + "number": 3, + "second": 1, + "inlet.": 1, + "HelloCounter": 4, + "self.num": 5, + "in_1_bang": 2, + "+": 3, + "in_2_float": 2, + "FileModder": 10, + "Object": 1, + "triggering": 1, + "Incoming": 1, + "single": 1, + "data": 2, + "bytes": 3, + "from": 3, + "Total": 1, + "route": 1, + "buflength": 1, + "Glitch": 3, + "type": 2, + "point": 2, + "times": 2, + "glitch": 2, + "Toggle": 1, + "randomized": 1, + "glitches": 3, + "within": 2, + "bounds": 2, + "Active": 1, + "get": 1, + "next": 1, + "byte": 2, + "clear": 2, + "buffer": 2, + "FLOAT": 1, + "write": 3, + "Currently": 1, + "active": 2, + "namedata": 1, + "self.filedata": 4, + "pattern": 1, + "random": 3, + "splice": 1, + "self.glitchtype": 5, + "Minimum": 1, + "image": 1, + "self.glitchpoint": 6, + "repeat": 1, + "on": 1, + "given": 1, + "self.randrepeat": 5, + "Toggles": 1, + "whether": 1, + "repeating": 1, + "should": 1, + "be": 1, + "self.randtoggle": 3, + "Hold": 1, + "all": 1, + "which": 1, + "are": 1, + "converted": 1, + "ints": 1, + "range": 1, + "self.bytebuffer": 8, + "Buffer": 1, + "length": 1, + "currently": 1, + "self.buflength": 7, + "if": 2, + "then": 4, + "plen": 2, + "math.random": 8, + "patbuffer": 3, + "table.insert": 4, + "%": 1, + "#patbuffer": 1, + "elseif": 2, + "randlimit": 4, + "else": 1, + "sloc": 3, + "schunksize": 2, + "splicebuffer": 3, + "table.remove": 1, + "insertpoint": 2, + "#self.bytebuffer": 1, + "_": 2, + "v": 4, + "ipairs": 2, + "outname": 3, + "pd.post": 1, + "in_3_list": 1, + "Shift": 1, + "indexed": 2, + "in_4_list": 1, + "in_5_float": 1, + "in_6_float": 1, + "in_7_list": 1, + "in_8_list": 1 + }, + "XSLT": { + "": 1, + "version=": 2, + "": 1, + "xmlns": 1, + "xsl=": 1, + "": 1, + "match=": 1, + "": 1, + "": 1, + "

": 1, + "My": 1, + "CD": 1, + "Collection": 1, + "

": 1, + "": 1, + "border=": 1, + "": 2, + "bgcolor=": 1, + "": 2, + "Artist": 1, + "": 2, + "": 1, + "select=": 3, + "": 2, + "": 1, + "
": 2, + "Title": 1, + "
": 2, + "": 2, + "
": 1, + "": 1, + "": 1, + "
": 1, + "
": 1 + }, + "Zimpl": { + "#": 2, + "param": 1, + "columns": 2, + ";": 7, + "set": 3, + "I": 3, + "{": 2, + "..": 1, + "}": 2, + "IxI": 6, + "*": 2, + "TABU": 4, + "[": 8, + "": 3, + "in": 5, + "]": 8, + "": 2, + "with": 1, + "(": 6, + "m": 4, + "i": 8, + "or": 3, + "n": 4, + "j": 8, + ")": 6, + "and": 1, + "abs": 2, + "-": 3, + "var": 1, + "x": 4, + "binary": 1, + "maximize": 1, + "queens": 1, + "sum": 2, + "subto": 1, + "c1": 1, + "forall": 1, + "do": 1, + "card": 2 + }, + "Groovy": { + "SHEBANG#!groovy": 2, + "println": 3, + "task": 1, + "echoDirListViaAntBuilder": 1, + "(": 7, + ")": 7, + "{": 9, + "description": 1, + "//Docs": 1, + "http": 1, + "//ant.apache.org/manual/Types/fileset.html": 1, + "//Echo": 1, + "the": 3, + "Gradle": 1, + "project": 1, + "name": 1, + "via": 1, + "ant": 1, + "echo": 1, + "plugin": 1, + "ant.echo": 3, + "message": 1, + "project.name": 1, + "path": 2, + "//Gather": 1, + "list": 1, + "of": 1, + "files": 1, + "in": 1, + "a": 1, + "subdirectory": 1, + "ant.fileScanner": 1, + "fileset": 1, + "dir": 1, + "}": 9, + ".each": 1, + "//Print": 1, + "each": 1, + "file": 1, + "to": 1, + "screen": 1, + "with": 1, + "CWD": 1, + "projectDir": 1, + "removed.": 1, + "it.toString": 1, + "-": 1, + "html": 3, + "head": 2, + "component": 1, + "title": 2, + "body": 1, + "p": 1 + }, + "Ioke": { + "SHEBANG#!ioke": 1, + "println": 1 + }, + "Jade": { + "p.": 1, + "Hello": 1, + "World": 1 + }, + "TypeScript": { + "class": 3, + "Animal": 4, + "{": 9, + "constructor": 3, + "(": 18, + "public": 1, + "name": 5, + ")": 18, + "}": 9, + "move": 3, + "meters": 2, + "alert": 3, + "this.name": 1, + "+": 3, + ";": 8, + "Snake": 2, + "extends": 2, + "super": 2, + "super.move": 2, + "Horse": 2, + "var": 2, + "sam": 1, + "new": 2, + "tom": 1, + "sam.move": 1, + "tom.move": 1, + "console.log": 1 + }, + "Erlang": { + "%": 134, + "This": 2, + "is": 1, + "auto": 1, + "generated": 1, + "file.": 1, + "Please": 1, + "don": 1, + "t": 1, + "edit": 1, + "it": 2, + "-": 262, + "module": 2, + "(": 236, + "record_utils": 1, + ")": 230, + ".": 37, + "compile": 2, + "export_all": 1, + "include": 1, + "fields": 4, + "abstract_message": 21, + "[": 66, + "]": 61, + ";": 56, + "async_message": 12, + "+": 214, + "fields_atom": 4, + "lists": 11, + "flatten": 6, + "clientId": 5, + "destination": 5, + "messageId": 5, + "timestamp": 5, + "timeToLive": 5, + "headers": 5, + "body": 5, + "correlationId": 5, + "correlationIdBytes": 5, + "get": 12, + "Obj": 49, + "when": 29, + "is_record": 25, + "{": 109, + "ok": 34, + "Obj#abstract_message.body": 1, + "}": 109, + "Obj#abstract_message.clientId": 1, + "Obj#abstract_message.destination": 1, + "Obj#abstract_message.headers": 1, + "Obj#abstract_message.messageId": 1, + "Obj#abstract_message.timeToLive": 1, + "Obj#abstract_message.timestamp": 1, + "Obj#async_message.correlationId": 1, + "Obj#async_message.correlationIdBytes": 1, + "parent": 5, + "Obj#async_message.parent": 3, + "ParentProperty": 6, + "and": 8, + "is_atom": 2, + "set": 13, + "Value": 35, + "NewObj": 20, + "Obj#abstract_message": 7, + "Obj#async_message": 3, + "NewParentObject": 2, + "_": 52, + "type": 6, + "undefined.": 1, + "SHEBANG#!escript": 3, + "*": 9, + "Mode": 1, + "erlang": 5, + "coding": 1, + "utf": 1, + "tab": 1, + "width": 1, + "c": 2, + "basic": 1, + "offset": 1, + "indent": 1, + "tabs": 1, + "mode": 2, + "BSD": 1, + "LICENSE": 1, + "Copyright": 1, + "Michael": 2, + "Truog": 2, + "": 1, + "at": 1, + "gmail": 1, + "dot": 1, + "com": 1, + "All": 2, + "rights": 1, + "reserved.": 1, + "Redistribution": 1, + "use": 2, + "in": 3, + "source": 2, + "binary": 2, + "forms": 1, + "with": 2, + "or": 3, + "without": 2, + "modification": 1, + "are": 3, + "permitted": 1, + "provided": 2, + "that": 1, + "the": 9, + "following": 4, + "conditions": 3, + "met": 1, + "Redistributions": 2, + "of": 9, + "code": 2, + "must": 3, + "retain": 1, + "above": 2, + "copyright": 2, + "notice": 2, + "this": 4, + "list": 2, + "disclaimer.": 1, + "form": 1, + "reproduce": 1, + "disclaimer": 1, + "documentation": 1, + "and/or": 1, + "other": 1, + "materials": 2, + "distribution.": 1, + "advertising": 1, + "mentioning": 1, + "features": 1, + "software": 3, + "display": 1, + "acknowledgment": 1, + "product": 1, + "includes": 1, + "developed": 1, + "by": 1, + "The": 1, + "name": 1, + "author": 2, + "may": 1, + "not": 1, + "be": 1, + "used": 1, + "to": 2, + "endorse": 1, + "promote": 1, + "products": 1, + "derived": 1, + "from": 1, + "specific": 1, + "prior": 1, + "written": 1, + "permission": 1, + "THIS": 2, + "SOFTWARE": 2, + "IS": 1, + "PROVIDED": 1, + "BY": 1, + "THE": 5, + "COPYRIGHT": 2, + "HOLDERS": 1, + "AND": 4, + "CONTRIBUTORS": 2, + "ANY": 4, + "EXPRESS": 1, + "OR": 8, + "IMPLIED": 2, + "WARRANTIES": 2, + "INCLUDING": 3, + "BUT": 2, + "NOT": 2, + "LIMITED": 2, + "TO": 2, + "OF": 8, + "MERCHANTABILITY": 1, + "FITNESS": 1, + "FOR": 2, + "A": 5, + "PARTICULAR": 1, + "PURPOSE": 1, + "ARE": 1, + "DISCLAIMED.": 1, + "IN": 3, + "NO": 1, + "EVENT": 1, + "SHALL": 1, + "OWNER": 1, + "BE": 1, + "LIABLE": 1, + "DIRECT": 1, + "INDIRECT": 1, + "INCIDENTAL": 1, + "SPECIAL": 1, + "EXEMPLARY": 1, + "CONSEQUENTIAL": 1, + "DAMAGES": 1, + "PROCUREMENT": 1, + "SUBSTITUTE": 1, + "GOODS": 1, + "SERVICES": 1, + "LOSS": 1, + "USE": 2, + "DATA": 1, + "PROFITS": 1, + "BUSINESS": 1, + "INTERRUPTION": 1, + "HOWEVER": 1, + "CAUSED": 1, + "ON": 1, + "THEORY": 1, + "LIABILITY": 2, + "WHETHER": 1, + "CONTRACT": 1, + "STRICT": 1, + "TORT": 1, + "NEGLIGENCE": 1, + "OTHERWISE": 1, + "ARISING": 1, + "WAY": 1, + "OUT": 1, + "EVEN": 1, + "IF": 1, + "ADVISED": 1, + "POSSIBILITY": 1, + "SUCH": 1, + "DAMAGE.": 1, + "main": 4, + "sys": 2, + "RelToolConfig": 5, + "target_dir": 2, + "TargetDir": 14, + "overlay": 2, + "OverlayConfig": 4, + "file": 6, + "consult": 1, + "Spec": 2, + "reltool": 2, + "get_target_spec": 1, + "case": 3, + "make_dir": 1, + "error": 4, + "eexist": 1, + "io": 5, + "format": 7, + "exit_code": 3, + "end": 3, + "eval_target_spec": 1, + "root_dir": 1, + "process_overlay": 2, + "shell": 3, + "Command": 3, + "Arguments": 3, + "CommandSuffix": 2, + "reverse": 4, + "os": 1, + "cmd": 1, + "io_lib": 2, + "|": 25, + "end.": 3, + "boot_rel_vsn": 2, + "Config": 2, + "_RelToolConfig": 1, + "rel": 2, + "_Name": 1, + "Ver": 1, + "proplists": 1, + "lookup": 1, + "Ver.": 1, + "minimal": 2, + "parsing": 1, + "for": 1, + "handling": 1, + "mustache": 11, + "syntax": 1, + "Body": 2, + "Context": 11, + "Result": 10, + "_Context": 1, + "KeyStr": 6, + "mustache_key": 4, + "C": 4, + "Rest": 10, + "Key": 2, + "list_to_existing_atom": 1, + "dict": 2, + "find": 1, + "support": 1, + "based": 1, + "on": 1, + "rebar": 1, + "overlays": 1, + "BootRelVsn": 2, + "OverlayVars": 2, + "from_list": 1, + "erts_vsn": 1, + "system_info": 1, + "version": 1, + "rel_vsn": 1, + "hostname": 1, + "net_adm": 1, + "localhost": 1, + "BaseDir": 7, + "get_cwd": 1, + "execute_overlay": 6, + "_Vars": 1, + "_BaseDir": 1, + "_TargetDir": 1, + "mkdir": 1, + "Out": 4, + "Vars": 7, + "OutDir": 4, + "filename": 3, + "join": 3, + "copy": 1, + "In": 2, + "InFile": 3, + "OutFile": 2, + "true": 3, + "filelib": 1, + "is_file": 1, + "ExitCode": 2, + "halt": 2, + "flush": 1, + "For": 1, + "each": 1, + "header": 1, + "scans": 1, + "thru": 1, + "all": 1, + "records": 1, + "create": 1, + "helper": 1, + "functions": 2, + "Helper": 1, + "setters": 1, + "getters": 1, + "record_helper": 1, + "export": 2, + "make/1": 1, + "make/2": 1, + "make": 3, + "HeaderFiles": 5, + "atom_to_list": 18, + "X": 12, + "||": 6, + "<->": 5, + "hrl": 1, + "relative": 1, + "current": 1, + "dir": 1, + "ModuleName": 3, + "HeaderComment": 2, + "ModuleDeclaration": 2, + "<": 1, + "Src": 10, + "format_src": 8, + "sort": 1, + "read": 2, + "generate_type_default_function": 2, + "write_file": 1, + "erl": 1, + "list_to_binary": 1, + "HeaderFile": 4, + "try": 2, + "epp": 1, + "parse_file": 1, + "Tree": 4, + "parse": 2, + "Error": 4, + "catch": 2, + "catched_error": 1, + "T": 24, + "length": 6, + "Type": 3, + "B": 4, + "NSrc": 4, + "_Type": 1, + "Type1": 2, + "parse_record": 3, + "attribute": 1, + "record": 4, + "RecordInfo": 2, + "RecordName": 41, + "RecordFields": 10, + "if": 1, + "generate_setter_getter_function": 5, + "generate_type_function": 3, + "generate_fields_function": 2, + "generate_fields_atom_function": 2, + "parse_field_name": 5, + "record_field": 9, + "atom": 9, + "FieldName": 26, + "field": 4, + "_FieldName": 2, + "ParentRecordName": 8, + "parent_field": 2, + "parse_field_name_atom": 5, + "concat": 5, + "_S": 3, + "F": 16, + "S": 6, + "concat_ext": 4, + "parse_field": 6, + "AccFields": 6, + "AccParentFields": 6, + "Field": 2, + "PField": 2, + "parse_field_atom": 4, + "zzz": 1, + "Fields": 4, + "field_atom": 1, + "to_setter_getter_function": 5, + "setter": 2, + "getter": 2, + "smp": 1, + "enable": 1, + "sname": 1, + "factorial": 1, + "mnesia": 1, + "debug": 1, + "verbose": 1, + "String": 2, + "N": 6, + "list_to_integer": 1, + "fac": 4, + "usage": 3, + "main/1": 1 + }, + "ABAP": { + "*/**": 1, + "*": 56, + "The": 2, + "MIT": 2, + "License": 1, + "(": 8, + ")": 8, + "Copyright": 1, + "c": 3, + "Ren": 1, + "van": 1, + "Mil": 1, + "Permission": 1, + "is": 2, + "hereby": 1, + "granted": 1, + "free": 1, + "of": 6, + "charge": 1, + "to": 10, + "any": 1, + "person": 1, + "obtaining": 1, + "a": 1, + "copy": 2, + "this": 2, + "software": 1, + "and": 3, + "associated": 1, + "documentation": 1, + "files": 4, + "the": 10, + "deal": 1, + "in": 3, + "Software": 3, + "without": 2, + "restriction": 1, + "including": 1, + "limitation": 1, + "rights": 1, + "use": 1, + "modify": 1, + "merge": 1, + "publish": 1, + "distribute": 1, + "sublicense": 1, + "and/or": 1, + "sell": 1, + "copies": 2, + "permit": 1, + "persons": 1, + "whom": 1, + "furnished": 1, + "do": 4, + "so": 1, + "subject": 1, + "following": 1, + "conditions": 1, + "above": 1, + "copyright": 1, + "notice": 2, + "permission": 1, + "shall": 1, + "be": 1, + "included": 1, + "all": 1, + "or": 1, + "substantial": 1, + "portions": 1, + "Software.": 1, + "THE": 6, + "SOFTWARE": 2, + "IS": 1, + "PROVIDED": 1, + "WITHOUT": 1, + "WARRANTY": 1, + "OF": 4, + "ANY": 2, + "KIND": 1, + "EXPRESS": 1, + "OR": 7, + "IMPLIED": 1, + "INCLUDING": 1, + "BUT": 1, + "NOT": 1, + "LIMITED": 1, + "TO": 2, + "WARRANTIES": 1, + "MERCHANTABILITY": 1, + "FITNESS": 1, + "FOR": 2, + "A": 1, + "PARTICULAR": 1, + "PURPOSE": 1, + "AND": 1, + "NONINFRINGEMENT.": 1, + "IN": 4, + "NO": 1, + "EVENT": 1, + "SHALL": 1, + "AUTHORS": 1, + "COPYRIGHT": 1, + "HOLDERS": 1, + "BE": 1, + "LIABLE": 1, + "CLAIM": 1, + "DAMAGES": 1, + "OTHER": 2, + "LIABILITY": 1, + "WHETHER": 1, + "AN": 1, + "ACTION": 1, + "CONTRACT": 1, + "TORT": 1, + "OTHERWISE": 1, + "ARISING": 1, + "FROM": 1, + "OUT": 1, + "CONNECTION": 1, + "WITH": 1, + "USE": 1, + "DEALINGS": 1, + "SOFTWARE.": 1, + "*/": 1, + "-": 978, + "CLASS": 2, + "CL_CSV_PARSER": 6, + "DEFINITION": 2, + "class": 2, + "cl_csv_parser": 2, + "definition": 1, + "public": 3, + "inheriting": 1, + "from": 1, + "cl_object": 1, + "final": 1, + "create": 1, + ".": 9, + "section.": 3, + "not": 3, + "include": 3, + "other": 3, + "source": 3, + "here": 3, + "type": 11, + "pools": 1, + "abap": 1, + "methods": 2, + "constructor": 2, + "importing": 1, + "delegate": 1, + "ref": 1, + "if_csv_parser_delegate": 1, + "csvstring": 1, + "string": 1, + "separator": 1, + "skip_first_line": 1, + "abap_bool": 2, + "parse": 2, + "raising": 1, + "cx_csv_parse_error": 2, + "protected": 1, + "private": 1, + "constants": 1, + "_textindicator": 1, + "value": 2, + "IMPLEMENTATION": 2, + "implementation.": 1, + "": 2, + "+": 9, + "|": 7, + "Instance": 2, + "Public": 1, + "Method": 2, + "CONSTRUCTOR": 1, + "[": 5, + "]": 5, + "DELEGATE": 1, + "TYPE": 5, + "REF": 1, + "IF_CSV_PARSER_DELEGATE": 1, + "CSVSTRING": 1, + "STRING": 1, + "SEPARATOR": 1, + "C": 1, + "SKIP_FIRST_LINE": 1, + "ABAP_BOOL": 1, + "": 2, + "method": 2, + "constructor.": 1, + "super": 1, + "_delegate": 1, + "delegate.": 1, + "_csvstring": 2, + "csvstring.": 1, + "_separator": 1, + "separator.": 1, + "_skip_first_line": 1, + "skip_first_line.": 1, + "endmethod.": 2, + "Get": 1, + "lines": 4, + "data": 3, + "is_first_line": 1, + "abap_true.": 2, + "standard": 2, + "table": 3, + "string.": 3, + "_lines": 1, + "field": 1, + "symbols": 1, + "": 3, + "loop": 1, + "at": 2, + "assigning": 1, + "Parse": 1, + "line": 1, + "values": 2, + "_parse_line": 2, + "Private": 1, + "_LINES": 1, + "<": 1, + "RETURNING": 1, + "STRINGTAB": 1, + "_lines.": 1, + "split": 1, + "cl_abap_char_utilities": 1, + "cr_lf": 1, + "into": 6, + "returning.": 1, + "Space": 2, + "concatenate": 4, + "csvvalue": 6, + "csvvalue.": 5, + "else.": 4, + "char": 2, + "endif.": 6, + "This": 1, + "indicates": 1, + "an": 1, + "error": 1, + "CSV": 1, + "formatting": 1, + "text_ended": 1, + "message": 2, + "e003": 1, + "csv": 1, + "msg.": 2, + "raise": 1, + "exception": 1, + "exporting": 1, + "endwhile.": 2, + "append": 2, + "csvvalues.": 2, + "clear": 1, + "pos": 2, + "endclass.": 1 + }, + "Rebol": { + "Rebol": 4, + "[": 54, + "]": 61, + "hello": 8, + "func": 5, + "print": 4, + "REBOL": 5, + "System": 1, + "Title": 2, + "Rights": 1, + "{": 8, + "Copyright": 1, + "Technologies": 2, + "is": 4, + "a": 2, + "trademark": 1, + "of": 1, + "}": 8, + "License": 2, + "Licensed": 1, + "under": 1, + "the": 3, + "Apache": 1, + "Version": 1, + "See": 1, + "http": 1, + "//www.apache.org/licenses/LICENSE": 1, + "-": 26, + "Purpose": 1, + "These": 1, + "are": 2, + "used": 3, + "to": 2, + "define": 1, + "natives": 1, + "and": 2, + "actions.": 1, + "Bind": 1, + "attributes": 1, + "for": 4, + "this": 1, + "block": 5, + "BIND_SET": 1, + "SHALLOW": 1, + ";": 19, + "Special": 1, + "as": 1, + "spec": 3, + "datatype": 2, + "test": 1, + "functions": 1, + "(": 30, + "e.g.": 1, + "time": 2, + ")": 33, + "value": 1, + "any": 1, + "type": 1, + "The": 1, + "native": 5, + "function": 3, + "must": 1, + "be": 1, + "defined": 1, + "first.": 1, + "This": 1, + "special": 1, + "boot": 1, + "created": 1, + "manually": 1, + "within": 1, + "C": 1, + "code.": 1, + "Creates": 2, + "internal": 2, + "usage": 2, + "only": 2, + ".": 4, + "no": 3, + "check": 2, + "required": 2, + "we": 2, + "know": 2, + "it": 2, + "correct": 2, + "action": 2, + "re": 20, + "s": 5, + "/i": 1, + "rejoin": 1, + "compose": 1, + "either": 1, + "i": 1, + "little": 1, + "helper": 1, + "standard": 1, + "grammar": 1, + "regex": 2, + "date": 6, + "naive": 1, + "string": 1, + "|": 22, + "S": 3, + "*": 7, + "<(?:[^^\\>": 1, + "d": 3, + "+": 6, + "/": 5, + "@": 1, + "%": 2, + "A": 3, + "F": 1, + "url": 1, + "PR_LITERAL": 10, + "string_url": 1, + "email": 1, + "string_email": 1, + "binary": 1, + "binary_base_two": 1, + "binary_base_sixty_four": 1, + "binary_base_sixteen": 1, + "re/i": 2, + "issue": 1, + "string_issue": 1, + "values": 1, + "value_date": 1, + "value_time": 1, + "tuple": 1, + "value_tuple": 1, + "pair": 1, + "value_pair": 1, + "number": 2, + "PR": 1, + "Za": 2, + "z0": 2, + "<[=>": 1, + "rebol": 1, + "red": 1, + "/system": 1, + "world": 1, + "topaz": 1, + "true": 1, + "false": 1, + "yes": 1, + "on": 1, + "off": 1, + "none": 1, + "#": 1, + "author": 1 + }, + "SuperCollider": { + "//boot": 1, + "server": 1, + "s.boot": 1, + ";": 18, + "(": 22, + "SynthDef": 1, + "{": 5, + "var": 1, + "sig": 7, + "resfreq": 3, + "Saw.ar": 1, + ")": 22, + "SinOsc.kr": 1, + "*": 3, + "+": 1, + "RLPF.ar": 1, + "Out.ar": 1, + "}": 5, + ".play": 2, + "do": 2, + "arg": 1, + "i": 1, + "Pan2.ar": 1, + "SinOsc.ar": 1, + "exprand": 1, + "LFNoise2.kr": 2, + "rrand": 2, + ".range": 2, + "**": 1, + "rand2": 1, + "a": 2, + "Env.perc": 1, + "-": 1, + "b": 1, + "a.delay": 2, + "a.test.plot": 1, + "b.test.plot": 1, + "Env": 1, + "[": 2, + "]": 2, + ".plot": 2, + "e": 1, + "Env.sine.asStream": 1, + "e.next.postln": 1, + "wait": 1, + ".fork": 1 + }, + "CoffeeScript": { + "dnsserver": 1, + "require": 21, + "exports.Server": 1, + "class": 11, + "Server": 2, + "extends": 6, + "dnsserver.Server": 1, + "NS_T_A": 3, + "NS_T_NS": 2, + "NS_T_CNAME": 1, + "NS_T_SOA": 2, + "NS_C_IN": 5, + "NS_RCODE_NXDOMAIN": 2, + "constructor": 6, + "(": 193, + "domain": 6, + "@rootAddress": 2, + ")": 196, + "-": 107, + "super": 4, + "@domain": 3, + "domain.toLowerCase": 1, + "@soa": 2, + "createSOA": 2, + "@on": 1, + "@handleRequest": 1, + "handleRequest": 1, + "req": 4, + "res": 3, + "question": 5, + "req.question": 1, + "subdomain": 10, + "@extractSubdomain": 1, + "question.name": 3, + "if": 102, + "and": 20, + "isARequest": 2, + "res.addRR": 2, + "subdomain.getAddress": 1, + "else": 53, + ".isEmpty": 1, + "isNSRequest": 2, + "true": 8, + "res.header.rcode": 1, + "res.send": 1, + "extractSubdomain": 1, + "name": 5, + "Subdomain.extract": 1, + "question.type": 2, + "is": 36, + "question.class": 2, + "mname": 2, + "rname": 2, + "serial": 2, + "parseInt": 5, + "new": 12, + "Date": 1, + ".getTime": 1, + "/": 44, + "refresh": 2, + "retry": 2, + "expire": 2, + "minimum": 2, + "dnsserver.createSOA": 1, + "exports.createServer": 1, + "address": 4, + "exports.Subdomain": 1, + "Subdomain": 4, + "@extract": 1, + "return": 29, + "unless": 19, + "name.toLowerCase": 1, + "offset": 4, + "name.length": 1, + "domain.length": 1, + "name.slice": 2, + "then": 24, + "null": 15, + "@for": 2, + "IPAddressSubdomain.pattern.test": 1, + "IPAddressSubdomain": 2, + "EncodedSubdomain.pattern.test": 1, + "EncodedSubdomain": 2, + "@subdomain": 1, + "@address": 2, + "@labels": 2, + ".split": 1, + "[": 134, + "]": 134, + "@length": 3, + "@labels.length": 1, + "isEmpty": 1, + "getAddress": 3, + "@pattern": 2, + "///": 12, + "|": 21, + ".": 13, + "{": 31, + "}": 34, + "@labels.slice": 1, + ".join": 2, + "a": 2, + "z0": 2, + "decode": 2, + "exports.encode": 1, + "encode": 1, + "ip": 2, + "value": 25, + "for": 14, + "byte": 2, + "index": 4, + "in": 32, + "ip.split": 1, + "+": 31, + "<<": 1, + "*": 21, + ".toString": 3, + "PATTERN": 1, + "exports.decode": 1, + "string": 9, + "PATTERN.test": 1, + "i": 8, + "ip.push": 1, + "&": 4, + "xFF": 1, + "ip.join": 1, + "#": 35, + "fs": 2, + "path": 3, + "Lexer": 3, + "RESERVED": 3, + "parser": 1, + "vm": 1, + "require.extensions": 3, + "module": 1, + "filename": 6, + "content": 4, + "compile": 5, + "fs.readFileSync": 1, + "module._compile": 1, + "require.registerExtension": 2, + "exports.VERSION": 1, + "exports.RESERVED": 1, + "exports.helpers": 2, + "exports.compile": 1, + "code": 20, + "options": 16, + "merge": 1, + "try": 3, + "js": 5, + "parser.parse": 3, + "lexer.tokenize": 3, + ".compile": 1, + "options.header": 1, + "catch": 2, + "err": 20, + "err.message": 2, + "options.filename": 5, + "throw": 3, + "header": 1, + "exports.tokens": 1, + "exports.nodes": 1, + "source": 5, + "typeof": 2, + "exports.run": 1, + "mainModule": 1, + "require.main": 1, + "mainModule.filename": 4, + "process.argv": 1, + "fs.realpathSync": 2, + "mainModule.moduleCache": 1, + "mainModule.paths": 1, + "._nodeModulePaths": 1, + "path.dirname": 2, + "path.extname": 1, + "isnt": 7, + "or": 22, + "mainModule._compile": 2, + "exports.eval": 1, + "code.trim": 1, + "Script": 2, + "vm.Script": 1, + "options.sandbox": 4, + "instanceof": 2, + "Script.createContext": 2, + ".constructor": 1, + "sandbox": 8, + "k": 4, + "v": 4, + "own": 2, + "of": 7, + "sandbox.global": 1, + "sandbox.root": 1, + "sandbox.GLOBAL": 1, + "global": 3, + "sandbox.__filename": 3, + "||": 3, + "sandbox.__dirname": 1, + "sandbox.module": 2, + "sandbox.require": 2, + "Module": 2, + "_module": 3, + "options.modulename": 1, + "_require": 2, + "Module._load": 1, + "_module.filename": 1, + "r": 4, + "Object.getOwnPropertyNames": 1, + "when": 16, + "_require.paths": 1, + "_module.paths": 1, + "Module._nodeModulePaths": 1, + "process.cwd": 1, + "_require.resolve": 1, + "request": 2, + "Module._resolveFilename": 1, + "o": 4, + "o.bare": 1, + "on": 3, + "ensure": 1, + "vm.runInThisContext": 1, + "vm.runInContext": 1, + "lexer": 1, + "parser.lexer": 1, + "lex": 1, + "tag": 33, + "@yytext": 1, + "@yylineno": 1, + "@tokens": 7, + "@pos": 2, + "setInput": 1, + "upcomingInput": 1, + "parser.yy": 1, + "number": 13, + "opposite": 2, + "square": 4, + "x": 6, + "list": 2, + "math": 1, + "root": 1, + "Math.sqrt": 1, + "cube": 1, + "race": 1, + "winner": 2, + "runners...": 1, + "print": 1, + "runners": 1, + "alert": 4, + "elvis": 1, + "cubes": 1, + "math.cube": 1, + "num": 2, + "async": 1, + "nack": 1, + "bufferLines": 3, + "pause": 2, + "sourceScriptEnv": 3, + "join": 8, + "exists": 5, + "basename": 2, + "resolve": 2, + "module.exports": 1, + "RackApplication": 1, + "@configuration": 1, + "@root": 8, + "@firstHost": 1, + "@logger": 1, + "@configuration.getLogger": 1, + "@readyCallbacks": 3, + "@quitCallbacks": 3, + "@statCallbacks": 3, + "ready": 1, + "callback": 35, + "@state": 11, + "@readyCallbacks.push": 1, + "@initialize": 2, + "quit": 1, + "@quitCallbacks.push": 1, + "@terminate": 2, + "queryRestartFile": 1, + "fs.stat": 1, + "stats": 1, + "@mtime": 5, + "false": 4, + "lastMtime": 2, + "stats.mtime.getTime": 1, + "setPoolRunOnceFlag": 1, + "@statCallbacks.length": 1, + "alwaysRestart": 2, + "@pool.runOnce": 1, + "statCallback": 2, + "@statCallbacks.push": 1, + "loadScriptEnvironment": 1, + "env": 18, + "async.reduce": 1, + "script": 7, + "scriptExists": 2, + "loadRvmEnvironment": 1, + "rvmrcExists": 2, + "rvm": 1, + "@configuration.rvmPath": 1, + "rvmExists": 2, + "libexecPath": 1, + "before": 2, + ".trim": 1, + "loadEnvironment": 1, + "@queryRestartFile": 2, + "@loadScriptEnvironment": 1, + "@configuration.env": 1, + "@loadRvmEnvironment": 1, + "initialize": 1, + "@quit": 3, + "@loadEnvironment": 1, + "@logger.error": 3, + "@pool": 2, + "nack.createPool": 1, + "size": 1, + ".POW_WORKERS": 1, + "@configuration.workers": 1, + "idle": 1, + ".POW_TIMEOUT": 1, + "@configuration.timeout": 1, + "@pool.stdout": 1, + "line": 6, + "@logger.info": 1, + "@pool.stderr": 1, + "@logger.warning": 1, + "@pool.on": 2, + "process": 2, + "@logger.debug": 2, + "readyCallback": 2, + "terminate": 1, + "@ready": 3, + "@pool.quit": 1, + "quitCallback": 2, + "handle": 1, + "next": 3, + "resume": 2, + "@setPoolRunOnceFlag": 1, + "@restartIfNecessary": 1, + "req.proxyMetaVariables": 1, + "SERVER_PORT": 1, + "@configuration.dstPort.toString": 1, + "@pool.proxy": 1, + "finally": 2, + "restart": 1, + "restartIfNecessary": 1, + "mtimeChanged": 2, + "@restart": 1, + "writeRvmBoilerplate": 1, + "powrc": 3, + "boilerplate": 2, + "@constructor.rvmBoilerplate": 1, + "fs.readFile": 1, + "contents": 2, + "contents.indexOf": 1, + "fs.writeFile": 1, + "@rvmBoilerplate": 1, + "CoffeeScript": 1, + "CoffeeScript.require": 1, + "CoffeeScript.eval": 1, + "options.bare": 2, + "eval": 2, + "CoffeeScript.compile": 2, + "CoffeeScript.run": 3, + "Function": 1, + "window": 1, + "CoffeeScript.load": 2, + "url": 2, + "xhr": 2, + "window.ActiveXObject": 1, + "XMLHttpRequest": 1, + "xhr.open": 1, + "xhr.overrideMimeType": 1, + "xhr.onreadystatechange": 1, + "xhr.readyState": 1, + "xhr.status": 1, + "xhr.responseText": 1, + "Error": 1, + "xhr.send": 1, + "runScripts": 3, + "scripts": 2, + "document.getElementsByTagName": 1, + "coffees": 2, + "s": 10, + "s.type": 1, + "length": 4, + "coffees.length": 1, + "do": 2, + "execute": 3, + ".type": 1, + "script.src": 2, + "script.innerHTML": 1, + "window.addEventListener": 1, + "addEventListener": 1, + "no": 3, + "attachEvent": 1, + "Rewriter": 2, + "INVERSES": 2, + "count": 5, + "starts": 1, + "compact": 1, + "last": 3, + "exports.Lexer": 1, + "tokenize": 1, + "opts": 1, + "WHITESPACE.test": 1, + "code.replace": 1, + "r/g": 1, + ".replace": 3, + "TRAILING_SPACES": 2, + "@code": 1, + "The": 7, + "remainder": 1, + "the": 4, + "code.": 1, + "@line": 4, + "opts.line": 1, + "current": 5, + "line.": 1, + "@indent": 3, + "indentation": 3, + "level.": 3, + "@indebt": 1, + "over": 1, + "at": 2, + "@outdebt": 1, + "under": 1, + "outdentation": 1, + "@indents": 1, + "stack": 4, + "all": 1, + "levels.": 1, + "@ends": 1, + "pairing": 1, + "up": 1, + "tokens.": 1, + "Stream": 1, + "parsed": 1, + "tokens": 5, + "form": 1, + "while": 4, + "@chunk": 9, + "i..": 1, + "@identifierToken": 1, + "@commentToken": 1, + "@whitespaceToken": 1, + "@lineToken": 1, + "@heredocToken": 1, + "@stringToken": 1, + "@numberToken": 1, + "@regexToken": 1, + "@jsToken": 1, + "@literalToken": 1, + "@closeIndentation": 1, + "@error": 10, + "@ends.pop": 1, + "opts.rewrite": 1, + "off": 1, + ".rewrite": 1, + "identifierToken": 1, + "match": 23, + "IDENTIFIER.exec": 1, + "input": 1, + "id": 16, + "colon": 3, + "@tag": 3, + "@token": 12, + "id.length": 1, + "forcedIdentifier": 4, + "prev": 17, + "not": 4, + "prev.spaced": 3, + "JS_KEYWORDS": 1, + "COFFEE_KEYWORDS": 1, + "id.toUpperCase": 1, + "LINE_BREAK": 2, + "@seenFor": 4, + "yes": 5, + "UNARY": 4, + "RELATION": 3, + "@value": 1, + "@tokens.pop": 1, + "JS_FORBIDDEN": 1, + "String": 1, + "id.reserved": 1, + "COFFEE_ALIAS_MAP": 1, + "COFFEE_ALIASES": 1, + "switch": 7, + "input.length": 1, + "numberToken": 1, + "NUMBER.exec": 1, + "BOX": 1, + "/.test": 4, + "/E/.test": 1, + "x/.test": 1, + "d*": 1, + "d": 2, + "lexedLength": 2, + "number.length": 1, + "octalLiteral": 2, + "/.exec": 2, + "binaryLiteral": 2, + "b": 1, + "stringToken": 1, + "@chunk.charAt": 3, + "SIMPLESTR.exec": 1, + "MULTILINER": 2, + "@balancedString": 1, + "<": 6, + "string.indexOf": 1, + "@interpolateString": 2, + "@escapeLines": 1, + "octalEsc": 1, + "string.length": 1, + "heredocToken": 1, + "HEREDOC.exec": 1, + "heredoc": 4, + "quote": 5, + "heredoc.charAt": 1, + "doc": 11, + "@sanitizeHeredoc": 2, + "indent": 7, + "<=>": 1, + "indexOf": 1, + "interpolateString": 1, + "token": 1, + "STRING": 2, + "makeString": 1, + "n": 16, + "Matches": 1, + "consumes": 1, + "comments": 1, + "commentToken": 1, + "@chunk.match": 1, + "COMMENT": 2, + "comment": 2, + "here": 3, + "herecomment": 4, + "Array": 1, + "comment.length": 1, + "jsToken": 1, + "JSTOKEN.exec": 1, + "script.length": 1, + "regexToken": 1, + "HEREGEX.exec": 1, + "@heregexToken": 1, + "NOT_REGEX": 2, + "NOT_SPACED_REGEX": 2, + "REGEX.exec": 1, + "regex": 5, + "flags": 2, + "..1": 1, + "match.length": 1, + "heregexToken": 1, + "heregex": 1, + "body": 2, + "body.indexOf": 1, + "re": 1, + "body.replace": 1, + "HEREGEX_OMIT": 3, + "//g": 1, + "re.match": 1, + "*/": 2, + "heregex.length": 1, + "@tokens.push": 1, + "tokens.push": 1, + "value...": 1, + "continue": 3, + "value.replace": 2, + "/g": 3, + "spaced": 1, + "reserved": 1, + "word": 1, + "value.length": 2, + "MATH": 3, + "COMPARE": 3, + "COMPOUND_ASSIGN": 2, + "SHIFT": 3, + "LOGIC": 3, + ".spaced": 1, + "CALLABLE": 2, + "INDEXABLE": 2, + "@ends.push": 1, + "@pair": 1, + "sanitizeHeredoc": 1, + "HEREDOC_ILLEGAL.test": 1, + "doc.indexOf": 1, + "HEREDOC_INDENT.exec": 1, + "attempt": 2, + "attempt.length": 1, + "indent.length": 1, + "doc.replace": 2, + "///g": 1, + "n/": 1, + "tagParameters": 1, + "this": 6, + "tokens.length": 1, + "tok": 5, + "stack.push": 1, + "stack.length": 1, + "stack.pop": 2, + "closeIndentation": 1, + "@outdentToken": 1, + "balancedString": 1, + "str": 1, + "end": 2, + "continueCount": 3, + "str.length": 1, + "letter": 1, + "str.charAt": 1, + "missing": 1, + "starting": 1, + "Hello": 1, + "name.capitalize": 1, + "OUTDENT": 1, + "THROW": 1, + "EXTENDS": 1, + "delete": 1, + "break": 1, + "debugger": 1, + "undefined": 1, + "until": 1, + "loop": 1, + "by": 1, + "&&": 1, + "case": 1, + "default": 1, + "function": 2, + "var": 1, + "void": 1, + "with": 1, + "const": 1, + "let": 2, + "enum": 1, + "export": 1, + "import": 1, + "native": 1, + "__hasProp": 1, + "__extends": 1, + "__slice": 1, + "__bind": 1, + "__indexOf": 1, + "implements": 1, + "interface": 1, + "package": 1, + "private": 1, + "protected": 1, + "public": 1, + "static": 1, + "yield": 1, + "arguments": 1, + "S": 10, + "OPERATOR": 1, + "%": 1, + "compound": 1, + "assign": 1, + "compare": 1, + "zero": 1, + "fill": 1, + "right": 1, + "shift": 2, + "doubles": 1, + "logic": 1, + "soak": 1, + "access": 1, + "range": 1, + "splat": 1, + "WHITESPACE": 1, + "###": 3, + "s*#": 1, + "##": 1, + ".*": 1, + "CODE": 1, + "MULTI_DENT": 1, + "SIMPLESTR": 1, + "JSTOKEN": 1, + "REGEX": 1, + "disallow": 1, + "leading": 1, + "whitespace": 1, + "equals": 1, + "signs": 1, + "every": 1, + "other": 1, + "thing": 1, + "anything": 1, + "escaped": 1, + "character": 1, + "imgy": 2, + "w": 2, + "HEREGEX": 1, + "#.*": 1, + "n/g": 1, + "HEREDOC_INDENT": 1, + "HEREDOC_ILLEGAL": 1, + "//": 1, + "LINE_CONTINUER": 1, + "s*": 1, + "BOOL": 1, + "NOT_REGEX.concat": 1, + "CALLABLE.concat": 1, + "console.log": 1, + "Animal": 3, + "@name": 2, + "move": 3, + "meters": 2, + "Snake": 2, + "Horse": 2, + "sam": 1, + "tom": 1, + "sam.move": 1, + "tom.move": 1 + }, + "PHP": { + "<": 11, + "php": 14, + "namespace": 28, + "Symfony": 24, + "Component": 24, + "Console": 17, + ";": 1383, + "use": 23, + "Input": 6, + "InputInterface": 4, + "ArgvInput": 2, + "ArrayInput": 3, + "InputDefinition": 2, + "InputOption": 15, + "InputArgument": 3, + "Output": 5, + "OutputInterface": 6, + "ConsoleOutput": 2, + "ConsoleOutputInterface": 2, + "Command": 6, + "HelpCommand": 2, + "ListCommand": 2, + "Helper": 3, + "HelperSet": 3, + "FormatterHelper": 2, + "DialogHelper": 2, + "class": 21, + "Application": 3, + "{": 974, + "private": 24, + "commands": 39, + "wantHelps": 4, + "false": 154, + "runningCommand": 5, + "name": 181, + "version": 8, + "catchExceptions": 4, + "autoExit": 4, + "definition": 3, + "helperSet": 6, + "public": 202, + "function": 205, + "__construct": 8, + "(": 2416, + ")": 2417, + "this": 928, + "-": 1271, + "true": 133, + "array": 296, + "getDefaultHelperSet": 2, + "getDefaultInputDefinition": 2, + "foreach": 94, + "getDefaultCommands": 2, + "as": 96, + "command": 41, + "add": 7, + "}": 972, + "run": 4, + "input": 20, + "null": 164, + "output": 60, + "if": 450, + "new": 74, + "try": 3, + "statusCode": 14, + "doRun": 2, + "catch": 3, + "Exception": 1, + "e": 18, + "throw": 19, + "instanceof": 8, + "renderException": 3, + "getErrorOutput": 2, + "else": 70, + "getCode": 1, + "is_numeric": 7, + "&&": 119, + "exit": 7, + "return": 305, + "getCommandName": 2, + "hasParameterOption": 7, + "setDecorated": 2, + "elseif": 31, + "setInteractive": 2, + "function_exists": 4, + "getHelperSet": 3, + "has": 7, + "inputStream": 2, + "get": 12, + "getInputStream": 1, + "posix_isatty": 1, + "setVerbosity": 2, + "VERBOSITY_QUIET": 1, + "VERBOSITY_VERBOSE": 2, + "writeln": 13, + "getLongVersion": 3, + "find": 17, + "setHelperSet": 1, + "getDefinition": 2, + "getHelp": 2, + "messages": 16, + "sprintf": 27, + "getOptions": 1, + "option": 5, + "[": 672, + "]": 672, + ".": 169, + "getName": 14, + "getShortcut": 2, + "getDescription": 3, + "implode": 8, + "PHP_EOL": 3, + "setCatchExceptions": 1, + "boolean": 4, + "Boolean": 4, + "setAutoExit": 1, + "setName": 1, + "getVersion": 3, + "setVersion": 1, + "register": 1, + "addCommands": 1, + "setApplication": 2, + "isEnabled": 1, + "getAliases": 3, + "alias": 87, + "isset": 101, + "InvalidArgumentException": 9, + "helpCommand": 3, + "setCommand": 1, + "getNamespaces": 3, + "namespaces": 4, + "extractNamespace": 7, + "array_values": 5, + "array_unique": 4, + "array_filter": 2, + "findNamespace": 4, + "allNamespaces": 3, + "n": 12, + "explode": 9, + "found": 4, + "i": 36, + "part": 10, + "abbrevs": 31, + "static": 6, + "getAbbreviations": 4, + "array_map": 2, + "p": 3, + "message": 12, + "<=>": 3, + "alternatives": 10, + "findAlternativeNamespace": 2, + "count": 32, + "getAbbreviationSuggestions": 4, + "searchName": 13, + "pos": 3, + "strrpos": 2, + "substr": 6, + "namespace.substr": 1, + "suggestions": 2, + "aliases": 8, + "findAlternativeCommands": 2, + "all": 11, + "substr_count": 1, + "+": 12, + "names": 3, + "for": 8, + "len": 11, + "strlen": 14, + "abbrev": 4, + "asText": 1, + "raw": 2, + "width": 7, + "sortCommands": 4, + "space": 5, + "space.": 1, + "asXml": 2, + "asDom": 2, + "dom": 12, + "DOMDocument": 2, + "formatOutput": 1, + "appendChild": 10, + "xml": 5, + "createElement": 6, + "commandsXML": 3, + "setAttribute": 2, + "namespacesXML": 3, + "namespaceArrayXML": 4, + "continue": 7, + "commandXML": 3, + "createTextNode": 1, + "node": 42, + "getElementsByTagName": 1, + "item": 9, + "importNode": 3, + "saveXml": 1, + "string": 5, + "encoding": 2, + "mb_detect_encoding": 1, + "mb_strlen": 1, + "do": 2, + "title": 3, + "get_class": 4, + "getTerminalWidth": 3, + "PHP_INT_MAX": 1, + "lines": 3, + "preg_split": 1, + "getMessage": 1, + "line": 10, + "str_split": 1, + "max": 2, + "str_repeat": 2, + "title.str_repeat": 1, + "line.str_repeat": 1, + "message.": 1, + "getVerbosity": 1, + "trace": 12, + "getTrace": 1, + "array_unshift": 2, + "getFile": 2, + "getLine": 2, + "type": 62, + "file": 3, + "while": 6, + "getPrevious": 1, + "getSynopsis": 1, + "protected": 59, + "defined": 5, + "ansicon": 4, + "getenv": 2, + "preg_replace": 4, + "preg_match": 6, + "getSttyColumns": 3, + "match": 4, + "getTerminalHeight": 1, + "trim": 3, + "getFirstArgument": 1, + "REQUIRED": 1, + "VALUE_NONE": 7, + "descriptorspec": 2, + "process": 10, + "proc_open": 1, + "pipes": 4, + "is_resource": 1, + "info": 5, + "stream_get_contents": 1, + "fclose": 2, + "proc_close": 1, + "namespacedCommands": 5, + "key": 64, + "ksort": 2, + "&": 19, + "limit": 3, + "parts": 4, + "array_pop": 1, + "array_slice": 1, + "callback": 5, + "findAlternatives": 3, + "collection": 3, + "call_user_func": 2, + "lev": 6, + "levenshtein": 2, + "3": 1, + "strpos": 15, + "values": 53, + "/": 1, + "||": 52, + "value": 53, + "asort": 1, + "array_keys": 7, + "": 3, + "CakePHP": 6, + "tm": 6, + "Rapid": 2, + "Development": 2, + "Framework": 2, + "http": 14, + "cakephp": 4, + "org": 10, + "Copyright": 5, + "2005": 4, + "2012": 4, + "Cake": 7, + "Software": 5, + "Foundation": 4, + "Inc": 4, + "cakefoundation": 4, + "Licensed": 2, + "under": 2, + "The": 4, + "MIT": 4, + "License": 4, + "Redistributions": 2, + "of": 10, + "files": 7, + "must": 2, + "retain": 2, + "the": 11, + "above": 2, + "copyright": 5, + "notice": 2, + "link": 10, + "Project": 2, + "package": 2, + "Controller": 4, + "since": 2, + "v": 17, + "0": 4, + "2": 2, + "9": 1, + "license": 6, + "www": 4, + "opensource": 2, + "licenses": 2, + "mit": 2, + "App": 20, + "uses": 46, + "CakeResponse": 2, + "Network": 1, + "ClassRegistry": 9, + "Utility": 6, + "ComponentCollection": 2, + "View": 9, + "CakeEvent": 13, + "Event": 6, + "CakeEventListener": 4, + "CakeEventManager": 5, + "controller": 3, + "organization": 1, + "business": 1, + "logic": 1, + "Provides": 1, + "basic": 1, + "functionality": 1, + "such": 1, + "rendering": 1, + "views": 1, + "inside": 1, + "layouts": 1, + "automatic": 1, + "model": 34, + "availability": 1, + "redirection": 2, + "callbacks": 4, + "and": 5, + "more": 1, + "Controllers": 2, + "should": 1, + "provide": 1, + "a": 11, + "number": 1, + "action": 7, + "methods": 5, + "These": 1, + "are": 5, + "on": 4, + "that": 2, + "not": 2, + "prefixed": 1, + "with": 5, + "_": 1, + "Each": 1, + "serves": 1, + "an": 1, + "endpoint": 1, + "performing": 2, + "specific": 1, + "resource": 1, + "or": 9, + "resources": 1, + "For": 2, + "example": 2, + "adding": 1, + "editing": 1, + "object": 14, + "listing": 1, + "set": 26, + "objects": 5, + "You": 2, + "can": 2, + "access": 1, + "request": 76, + "parameters": 4, + "using": 2, + "contains": 1, + "POST": 1, + "GET": 1, + "FILES": 1, + "*": 25, + "were": 1, + "request.": 1, + "After": 1, + "required": 2, + "actions": 2, + "controllers": 2, + "responsible": 1, + "creating": 1, + "response.": 2, + "This": 1, + "usually": 1, + "takes": 1, + "form": 7, + "generated": 1, + "possibly": 1, + "to": 6, + "another": 1, + "action.": 1, + "In": 1, + "either": 1, + "case": 31, + "response": 33, + "allows": 1, + "you": 1, + "manipulate": 1, + "aspects": 1, + "created": 8, + "by": 2, + "Dispatcher": 1, + "based": 2, + "routing.": 1, + "By": 1, + "default": 9, + "conventional": 1, + "names.": 1, + "/posts/index": 1, + "maps": 1, + "PostsController": 1, + "index": 5, + "re": 1, + "map": 1, + "urls": 1, + "Router": 5, + "connect": 1, + "@package": 2, + "Cake.Controller": 1, + "@property": 8, + "AclComponent": 1, + "Acl": 1, + "AuthComponent": 1, + "Auth": 1, + "CookieComponent": 1, + "Cookie": 1, + "EmailComponent": 1, + "Email": 1, + "PaginatorComponent": 1, + "Paginator": 1, + "RequestHandlerComponent": 1, + "RequestHandler": 1, + "SecurityComponent": 1, + "Security": 1, + "SessionComponent": 1, + "Session": 1, + "@link": 2, + "//book.cakephp.org/2.0/en/controllers.html": 1, + "*/": 2, + "extends": 3, + "Object": 4, + "implements": 3, + "helpers": 1, + "_responseClass": 1, + "viewPath": 3, + "layoutPath": 1, + "viewVars": 3, + "view": 5, + "layout": 5, + "autoRender": 6, + "autoLayout": 2, + "Components": 7, + "components": 1, + "viewClass": 10, + "ext": 1, + "plugin": 31, + "cacheAction": 1, + "passedArgs": 2, + "scaffold": 2, + "modelClass": 25, + "modelKey": 2, + "validationErrors": 50, + "_mergeParent": 4, + "_eventManager": 12, + "Inflector": 12, + "singularize": 4, + "underscore": 3, + "childMethods": 2, + "get_class_methods": 2, + "parentMethods": 2, + "array_diff": 3, + "CakeRequest": 5, + "setRequest": 2, + "parent": 14, + "__isset": 2, + "switch": 6, + "is_array": 37, + "list": 29, + "pluginSplit": 12, + "loadModel": 3, + "__get": 2, + "params": 34, + "load": 3, + "settings": 2, + "__set": 1, + "camelize": 3, + "array_merge": 32, + "array_key_exists": 11, + "empty": 96, + "invokeAction": 1, + "method": 31, + "ReflectionMethod": 2, + "_isPrivateAction": 2, + "PrivateActionException": 1, + "invokeArgs": 1, + "ReflectionException": 1, + "_getScaffold": 2, + "MissingActionException": 1, + "privateAction": 4, + "isPublic": 1, + "in_array": 26, + "prefixes": 4, + "prefix": 2, + "Scaffold": 1, + "_mergeControllerVars": 2, + "pluginController": 9, + "pluginDot": 4, + "mergeParent": 2, + "is_subclass_of": 3, + "pluginVars": 3, + "appVars": 6, + "merge": 12, + "_mergeVars": 5, + "get_class_vars": 2, + "_mergeUses": 3, + "implementedEvents": 2, + "constructClasses": 1, + "init": 4, + "current": 4, + "getEventManager": 13, + "attach": 4, + "startupProcess": 1, + "dispatch": 11, + "shutdownProcess": 1, + "httpCodes": 3, + "code": 4, + "id": 82, + "MissingModelException": 1, + "redirect": 6, + "url": 18, + "status": 15, + "extract": 9, + "EXTR_OVERWRITE": 3, + "event": 35, + "//TODO": 1, + "Remove": 1, + "following": 1, + "when": 1, + "events": 1, + "fully": 1, + "migrated": 1, + "break": 19, + "breakOn": 4, + "collectReturn": 1, + "isStopped": 4, + "result": 21, + "_parseBeforeRedirect": 2, + "session_write_close": 1, + "header": 3, + "is_string": 7, + "codes": 3, + "array_flip": 1, + "send": 1, + "_stop": 1, + "resp": 6, + "compact": 8, + "one": 19, + "two": 6, + "data": 187, + "array_combine": 2, + "setAction": 1, + "args": 5, + "func_get_args": 5, + "unset": 22, + "call_user_func_array": 3, + "validate": 9, + "errors": 9, + "validateErrors": 1, + "invalidFields": 2, + "render": 3, + "className": 27, + "models": 6, + "keys": 19, + "currentModel": 2, + "currentObject": 6, + "getObject": 1, + "is_a": 1, + "location": 1, + "body": 1, + "referer": 5, + "local": 2, + "disableCache": 2, + "flash": 1, + "pause": 2, + "postConditions": 1, + "op": 9, + "bool": 5, + "exclusive": 2, + "cond": 5, + "arrayOp": 2, + "fields": 60, + "field": 88, + "fieldOp": 11, + "strtoupper": 3, + "paginate": 3, + "scope": 2, + "whitelist": 14, + "beforeFilter": 1, + "beforeRender": 1, + "beforeRedirect": 1, + "afterFilter": 1, + "beforeScaffold": 2, + "_beforeScaffold": 1, + "afterScaffoldSave": 2, + "_afterScaffoldSave": 1, + "afterScaffoldSaveError": 2, + "_afterScaffoldSaveError": 1, + "scaffoldError": 2, + "_scaffoldError": 1, + "SHEBANG#!php": 4, + "echo": 2, + "BrowserKit": 1, + "DomCrawler": 5, + "Crawler": 2, + "Link": 3, + "Form": 4, + "Process": 1, + "PhpProcess": 2, + "abstract": 2, + "Client": 1, + "history": 15, + "cookieJar": 9, + "server": 20, + "crawler": 7, + "insulated": 7, + "followRedirects": 5, + "History": 2, + "CookieJar": 2, + "setServerParameters": 2, + "followRedirect": 4, + "insulate": 1, + "class_exists": 2, + "RuntimeException": 2, + "setServerParameter": 1, + "getServerParameter": 1, + "getHistory": 1, + "getCookieJar": 1, + "getCrawler": 1, + "getResponse": 1, + "getRequest": 1, + "click": 1, + "submit": 2, + "getMethod": 6, + "getUri": 8, + "setValues": 2, + "getPhpValues": 2, + "getPhpFiles": 2, + "uri": 23, + "content": 4, + "changeHistory": 4, + "getAbsoluteUri": 2, + "isEmpty": 2, + "parse_url": 3, + "PHP_URL_HOST": 1, + "PHP_URL_SCHEME": 1, + "Request": 3, + "allValues": 1, + "filterRequest": 2, + "doRequestInProcess": 2, + "doRequest": 2, + "filterResponse": 2, + "updateFromResponse": 1, + "getHeader": 2, + "createCrawlerFromContent": 2, + "getContent": 2, + "getScript": 2, + "sys_get_temp_dir": 2, + "isSuccessful": 1, + "getOutput": 3, + "unserialize": 1, + "LogicException": 4, + "addContent": 1, + "back": 2, + "requestFromRequest": 4, + "forward": 2, + "reload": 1, + "restart": 1, + "clear": 2, + "currentUri": 7, + "path": 20, + "PHP_URL_PATH": 1, + "path.": 1, + "getParameters": 1, + "getFiles": 3, + "getServer": 1, + "relational": 2, + "mapper": 2, + "DBO": 2, + "backed": 2, + "mapping": 1, + "database": 2, + "tables": 5, + "PHP": 1, + "versions": 1, + "5": 1, + "Model": 5, + "10": 1, + "Validation": 1, + "String": 5, + "Set": 9, + "BehaviorCollection": 2, + "ModelBehavior": 1, + "ConnectionManager": 2, + "Xml": 2, + "Automatically": 1, + "selects": 1, + "table": 21, + "pluralized": 1, + "lowercase": 1, + "User": 1, + "is": 1, + "have": 2, + "at": 1, + "least": 1, + "primary": 3, + "key.": 1, + "Cake.Model": 1, + "//book.cakephp.org/2.0/en/models.html": 1, + "useDbConfig": 7, + "useTable": 12, + "displayField": 4, + "schemaName": 1, + "primaryKey": 38, + "_schema": 11, + "validationDomain": 1, + "tablePrefix": 8, + "tableToModel": 4, + "cacheQueries": 1, + "belongsTo": 7, + "hasOne": 2, + "hasMany": 2, + "hasAndBelongsToMany": 24, + "actsAs": 2, + "Behaviors": 6, + "cacheSources": 7, + "findQueryType": 3, + "recursive": 9, + "order": 4, + "virtualFields": 8, + "_associationKeys": 2, + "_associations": 5, + "__backAssociation": 22, + "__backInnerAssociation": 1, + "__backOriginalAssociation": 1, + "__backContainableAssociation": 1, + "_insertID": 1, + "_sourceConfigured": 1, + "findMethods": 3, + "ds": 3, + "addObject": 2, + "parentClass": 3, + "get_parent_class": 1, + "tableize": 2, + "_createLinks": 3, + "__call": 1, + "dispatchMethod": 1, + "getDataSource": 15, + "query": 102, + "k": 7, + "relation": 7, + "assocKey": 13, + "dynamic": 2, + "isKeySet": 1, + "AppModel": 1, + "_constructLinkedModel": 2, + "schema": 11, + "hasField": 7, + "setDataSource": 2, + "property_exists": 3, + "bindModel": 1, + "reset": 6, + "assoc": 75, + "assocName": 6, + "unbindModel": 1, + "_generateAssociation": 2, + "dynamicWith": 3, + "sort": 1, + "setSource": 1, + "tableName": 4, + "db": 45, + "method_exists": 5, + "sources": 3, + "listSources": 1, + "strtolower": 1, + "MissingTableException": 1, + "is_object": 2, + "SimpleXMLElement": 1, + "DOMNode": 3, + "_normalizeXmlData": 3, + "toArray": 1, + "reverse": 1, + "_setAliasData": 2, + "modelName": 3, + "fieldSet": 3, + "fieldName": 6, + "fieldValue": 7, + "deconstruct": 2, + "getAssociated": 4, + "getColumnType": 4, + "useNewDate": 2, + "dateFields": 5, + "timeFields": 2, + "date": 9, + "val": 27, + "format": 3, + "columns": 5, + "str_replace": 3, + "describe": 1, + "getColumnTypes": 1, + "trigger_error": 1, + "__d": 1, + "E_USER_WARNING": 1, + "cols": 7, + "column": 10, + "startQuote": 4, + "endQuote": 4, + "checkVirtual": 3, + "isVirtualField": 3, + "hasMethod": 2, + "getVirtualField": 1, + "create": 13, + "filterKey": 2, + "defaults": 6, + "properties": 4, + "read": 2, + "conditions": 41, + "array_shift": 5, + "saveField": 1, + "options": 85, + "save": 9, + "fieldList": 1, + "_whitelist": 4, + "keyPresentAndEmpty": 2, + "exists": 6, + "validates": 60, + "updateCol": 6, + "colType": 4, + "time": 3, + "strtotime": 1, + "joined": 5, + "x": 4, + "y": 2, + "success": 10, + "cache": 2, + "_prepareUpdateFields": 2, + "update": 2, + "fInfo": 4, + "isUUID": 5, + "j": 2, + "array_search": 1, + "uuid": 3, + "updateCounterCache": 6, + "_saveMulti": 2, + "_clearCache": 2, + "join": 22, + "joinModel": 8, + "keyInfo": 4, + "withModel": 4, + "pluginName": 1, + "dbMulti": 6, + "newData": 5, + "newValues": 8, + "newJoins": 7, + "primaryAdded": 3, + "idField": 3, + "row": 17, + "keepExisting": 3, + "associationForeignKey": 5, + "links": 4, + "oldLinks": 4, + "delete": 9, + "oldJoin": 4, + "insertMulti": 1, + "foreignKey": 11, + "fkQuoted": 3, + "escapeField": 6, + "intval": 4, + "updateAll": 3, + "foreignKeys": 3, + "included": 3, + "array_intersect": 1, + "old": 2, + "saveAll": 1, + "numeric": 1, + "validateMany": 4, + "saveMany": 3, + "validateAssociated": 5, + "saveAssociated": 5, + "transactionBegun": 4, + "begin": 2, + "record": 10, + "saved": 18, + "commit": 2, + "rollback": 2, + "associations": 9, + "association": 47, + "notEmpty": 4, + "_return": 3, + "recordData": 2, + "cascade": 10, + "_deleteDependent": 3, + "_deleteLinks": 3, + "_collectForeignKeys": 2, + "savedAssociatons": 3, + "deleteAll": 2, + "records": 6, + "ids": 8, + "_id": 2, + "getID": 2, + "hasAny": 1, + "buildQuery": 2, + "is_null": 1, + "results": 22, + "resetAssociations": 3, + "_filterResults": 2, + "ucfirst": 2, + "modParams": 2, + "_findFirst": 1, + "state": 15, + "_findCount": 1, + "calculate": 2, + "expression": 1, + "_findList": 1, + "tokenize": 1, + "lst": 4, + "combine": 1, + "_findNeighbors": 1, + "prevVal": 2, + "return2": 6, + "_findThreaded": 1, + "nest": 1, + "isUnique": 1, + "is_bool": 1, + "sql": 1, + "php_help": 1, + "arg": 1, + "t": 26, + "php_permission": 1, + "TRUE": 1, + "php_eval": 1, + "global": 2, + "theme_path": 5, + "theme_info": 3, + "conf": 2, + "old_theme_path": 2, + "drupal_get_path": 1, + "dirname": 1, + "filename": 1, + "ob_start": 1, + "print": 1, + "eval": 1, + "ob_get_contents": 1, + "ob_end_clean": 1, + "_php_filter_tips": 1, + "filter": 1, + "long": 2, + "FALSE": 2, + "base_url": 1, + "php_filter_info": 1, + "filters": 2, + "Field": 9, + "FormField": 3, + "ArrayAccess": 1, + "button": 6, + "initialize": 2, + "getFormNode": 1, + "getValues": 3, + "isDisabled": 2, + "FileFormField": 3, + "hasValue": 1, + "getValue": 2, + "qs": 4, + "http_build_query": 3, + "parse_str": 2, + "queryString": 2, + "sep": 1, + "sep.": 1, + "getRawUri": 1, + "getAttribute": 10, + "remove": 4, + "offsetExists": 1, + "offsetGet": 1, + "offsetSet": 1, + "offsetUnset": 1, + "setNode": 1, + "nodeName": 13, + "parentNode": 1, + "FormFieldRegistry": 2, + "document": 6, + "root": 4, + "xpath": 2, + "DOMXPath": 1, + "hasAttribute": 1, + "InputFormField": 2, + "ChoiceFormField": 2, + "addChoice": 1, + "TextareaFormField": 1, + "base": 8, + "segments": 13, + "getSegments": 4, + "target": 20, + "self": 1, + "setValue": 1, + "walk": 3, + "registry": 4, + "m": 5, + "": 1, + "aMenuLinks": 1, + "Array": 13, + "Blog": 1, + "SITE_DIR": 4, + "Photos": 1, + "photo": 1, + "About": 1, + "me": 1, + "about": 1, + "Contact": 1, + "contacts": 1, + "Yii": 3, + "console": 3, + "bootstrap": 1, + "yiiframework": 2, + "com": 2, + "c": 1, + "2008": 1, + "LLC": 1, + "YII_DEBUG": 2, + "define": 2, + "fcgi": 1, + "doesn": 1, + "STDIN": 3, + "fopen": 1, + "stdin": 1, + "r": 1, + "require": 3, + "__DIR__": 3, + "vendor": 2, + "yiisoft": 1, + "yii2": 1, + "yii": 2, + "autoload": 1, + "config": 3, + "application": 2 + }, +<<<<<<< HEAD "Python": { "xspacing": 4, "#": 28, @@ -57337,118 +91390,1964 @@ "I1": 3, "U2": 2, "I_err": 2, +======= + "MediaWiki": { + "Overview": 1, + "The": 17, + "GDB": 15, + "Tracepoint": 4, + "Analysis": 1, + "feature": 3, + "is": 9, + "an": 3, + "extension": 1, + "to": 12, + "the": 72, + "Tracing": 3, + "and": 20, + "Monitoring": 1, + "Framework": 1, + "that": 4, + "allows": 2, + "visualization": 1, + "analysis": 1, + "of": 8, + "C/C": 10, + "+": 20, + "tracepoint": 5, + "data": 5, + "collected": 2, + "by": 10, + "stored": 1, + "a": 12, + "log": 1, + "file.": 1, + "Getting": 1, + "Started": 1, + "can": 9, + "be": 18, + "installed": 2, + "from": 8, + "Eclipse": 1, + "update": 2, + "site": 1, + "selecting": 1, + ".": 8, + "requires": 1, + "version": 1, + "or": 8, + "later": 1, + "on": 3, + "local": 1, + "host.": 1, + "executable": 3, + "program": 1, + "must": 3, + "found": 1, + "in": 15, + "path.": 1, + "Trace": 9, + "Perspective": 1, + "To": 1, + "open": 1, + "perspective": 2, + "select": 5, + "includes": 1, + "following": 1, + "views": 2, + "default": 2, + "*": 6, + "This": 7, + "view": 7, + "shows": 7, + "projects": 1, + "workspace": 2, + "used": 1, + "create": 1, + "manage": 1, + "projects.": 1, + "running": 1, + "Postmortem": 5, + "Debugger": 4, + "instances": 1, + "displays": 2, + "thread": 1, + "stack": 2, + "trace": 17, + "associated": 1, + "with": 4, + "tracepoint.": 3, + "status": 1, + "debugger": 1, + "navigation": 1, + "records.": 1, + "console": 1, + "output": 1, + "Debugger.": 1, + "editor": 7, + "area": 2, + "contains": 1, + "editors": 1, + "when": 1, + "opened.": 1, + "[": 11, + "Image": 2, + "images/GDBTracePerspective.png": 1, + "]": 11, + "Collecting": 2, + "Data": 4, + "outside": 2, + "scope": 1, + "this": 5, + "feature.": 1, + "It": 1, + "done": 2, + "command": 1, + "line": 2, + "using": 3, + "CDT": 3, + "debug": 1, + "component": 1, + "within": 1, + "Eclipse.": 1, + "See": 1, + "FAQ": 2, + "entry": 2, + "#References": 2, + "|": 2, + "References": 3, + "section.": 2, + "Importing": 2, + "Some": 1, + "information": 1, + "section": 1, + "redundant": 1, + "LTTng": 3, + "User": 3, + "Guide.": 1, + "For": 1, + "further": 1, + "details": 1, + "see": 1, + "Guide": 2, + "Creating": 1, + "Project": 1, + "In": 5, + "right": 3, + "-": 8, + "click": 8, + "context": 4, + "menu.": 4, + "dialog": 1, + "name": 2, + "your": 2, + "project": 2, + "tracing": 1, + "folder": 5, + "Browse": 2, + "enter": 2, + "source": 2, + "directory.": 1, + "Select": 1, + "file": 6, + "tree.": 1, + "Optionally": 1, + "set": 1, + "type": 2, + "Click": 1, + "Alternatively": 1, + "drag": 1, + "&": 1, + "dropped": 1, + "any": 2, + "external": 1, + "manager.": 1, + "Selecting": 2, + "Type": 1, + "Right": 2, + "imported": 1, + "choose": 2, + "step": 1, + "omitted": 1, + "if": 1, + "was": 2, + "selected": 3, + "at": 3, + "import.": 1, + "will": 6, + "updated": 2, + "icon": 1, + "images/gdb_icon16.png": 1, + "Executable": 1, + "created": 1, + "identified": 1, + "so": 2, + "launched": 1, + "properly.": 1, + "path": 1, + "press": 1, + "recognized": 1, + "as": 1, + "executable.": 1, + "Visualizing": 1, + "Opening": 1, + "double": 1, + "it": 3, + "opened": 2, + "Events": 5, + "instance": 1, + "launched.": 1, + "If": 2, + "available": 1, + "code": 1, + "corresponding": 1, + "first": 1, + "record": 2, + "also": 2, + "editor.": 2, + "At": 1, + "point": 1, + "recommended": 1, + "relocate": 1, + "not": 1, + "hidden": 1, + "Viewing": 1, + "table": 1, + "shown": 1, + "one": 1, + "row": 1, + "for": 2, + "each": 1, + "record.": 2, + "column": 6, + "sequential": 1, + "number.": 1, + "number": 2, + "assigned": 1, + "collection": 1, + "time": 2, + "method": 1, + "where": 1, + "set.": 1, + "run": 1, + "Searching": 1, + "filtering": 1, + "entering": 1, + "regular": 1, + "expression": 1, + "header.": 1, + "Navigating": 1, + "records": 1, + "keyboard": 1, + "mouse.": 1, + "show": 1, + "current": 1, + "navigated": 1, + "clicking": 1, + "buttons.": 1, + "updated.": 1, + "http": 4, + "//wiki.eclipse.org/index.php/Linux_Tools_Project/LTTng2/User_Guide": 1, + "//wiki.eclipse.org/CDT/User/FAQ#How_can_I_trace_my_application_using_C.2FC.2B.2B_Tracepoints.3F": 1, + "How": 1, + "I": 1, + "my": 1, + "application": 1, + "Tracepoints": 1, + "Updating": 1, + "Document": 1, + "document": 2, + "maintained": 1, + "collaborative": 1, + "wiki.": 1, + "you": 1, + "wish": 1, + "modify": 1, + "please": 1, + "visit": 1, + "//wiki.eclipse.org/index.php/Linux_Tools_Project/GDB_Tracepoint_Analysis/User_Guide": 1, + "//wiki.eclipse.org/Linux_Tools_Project/GDB_Tracepoint_Analysis/User_Guide": 1 + }, + "Ceylon": { + "doc": 2, + "by": 1, + "shared": 5, + "void": 1, + "test": 1, + "(": 4, + ")": 4, + "{": 3, + "print": 1, + ";": 4, + "}": 3, + "class": 1, + "Test": 2, + "name": 4, + "satisfies": 1, + "Comparable": 1, + "": 1, + "String": 2, + "actual": 2, + "string": 1, + "Comparison": 1, + "compare": 1, + "other": 1, + "return": 1, + "<=>": 1, + "other.name": 1 + }, + "fish": { + "function": 6, + "eval": 5, + "-": 102, + "S": 1, + "d": 3, + "#": 18, + "If": 2, + "we": 2, + "are": 1, + "in": 2, + "an": 1, + "interactive": 8, + "shell": 1, + "should": 2, + "enable": 1, + "full": 4, + "job": 5, + "control": 5, + "since": 1, + "it": 1, + "behave": 1, + "like": 2, + "the": 1, + "real": 1, + "code": 1, + "was": 1, + "executed.": 1, + "don": 1, + "t": 2, + "do": 1, + "this": 1, + "commands": 1, + "that": 1, + "expect": 1, + "to": 1, + "be": 1, + "used": 1, + "interactively": 1, + "less": 1, + "wont": 1, + "work": 1, + "using": 1, + "eval.": 1, + "set": 49, + "l": 15, + "mode": 5, + "if": 21, + "status": 7, + "is": 3, + "else": 3, + "none": 1, + "end": 33, + "echo": 3, + "|": 3, + ".": 2, + "<": 1, + "&": 1, + "res": 2, + "return": 6, + "funced": 3, + "description": 2, + "editor": 7, + "EDITOR": 1, + "funcname": 14, + "while": 2, + "q": 9, + "argv": 9, + "[": 13, + "]": 13, + "switch": 3, + "case": 9, + "h": 1, + "help": 1, + "__fish_print_help": 1, + "e": 6, + "i": 5, + "set_color": 4, + "red": 2, + "printf": 3, + "(": 7, + "_": 3, + ")": 7, + "normal": 2, + "begin": 2, + ";": 7, + "or": 3, + "not": 8, + "test": 7, + "init": 5, + "n": 5, + "nend": 2, + "editor_cmd": 2, + "type": 1, + "f": 3, + "/dev/null": 2, + "fish": 3, + "z": 1, + "IFS": 4, + "functions": 5, + "fish_indent": 2, + "no": 2, + "indent": 1, + "prompt": 2, + "read": 1, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "p": 1, - "R": 1, - "R_err": 2, - "/I1": 1, - "**2": 2, - "U1/I1**2": 1, - "phi_err": 3, - "alpha": 2, - "beta": 1, - "R0": 6, - "R0_err": 2, - "alpha*R0": 2, - "*np.sqrt": 6, - "*beta*R": 5, - "alpha**2*R0": 5, - "*beta*R0": 7, - "*beta*R0*T0": 2, - "epsilon_err": 2, - "f1": 1, - "f2": 1, - "f3": 1, - "alpha**2": 1, - "*beta": 1, - "*beta*T0": 1, - "*beta*R0**2": 1, - "f1**2": 1, - "f2**2": 1, - "f3**2": 1, - "parser": 1, - "argparse.ArgumentParser": 1, - "description": 1, - "#parser.add_argument": 3, - "metavar": 1, - "nargs": 1, - "help": 2, - "dest": 1, - "default": 1, + "c": 1, + "s": 1, + "cmd": 2, + "TMPDIR": 2, + "/tmp": 1, + "tmpname": 8, + "%": 2, + "self": 2, + "random": 2, + "stat": 2, + "rm": 1, + "g": 1, + "configdir": 2, + "/.config": 1, + "XDG_CONFIG_HOME": 2, + "fish_function_path": 4, + "configdir/fish/functions": 1, + "__fish_sysconfdir/functions": 1, + "__fish_datadir/functions": 3, + "contains": 4, + "fish_complete_path": 4, + "configdir/fish/completions": 1, + "__fish_sysconfdir/completions": 1, + "__fish_datadir/completions": 3, + "/usr/xpg4/bin": 3, + "PATH": 6, + "path_list": 4, + "/bin": 1, + "/usr/bin": 1, + "/usr/X11R6/bin": 1, + "/usr/local/bin": 1, + "__fish_bin_dir": 1, + "USER": 1, + "root": 1, + "/sbin": 1, + "/usr/sbin": 1, + "/usr/local/sbin": 1, + "for": 1, + "fish_sigtrap_handler": 1, + "on": 2, + "signal": 1, + "TRAP": 1, + "scope": 1, + "shadowing": 1, + "breakpoint": 1, + "__fish_on_interactive": 2, + "event": 1, + "fish_prompt": 1, + "__fish_config_interactive": 1 + }, + "Diff": { + "diff": 1, + "-": 5, + "git": 1, + "a/lib/linguist.rb": 2, + "b/lib/linguist.rb": 2, + "index": 1, + "d472341..8ad9ffb": 1, + "+": 3 + }, + "Slash": { + "<%>": 1, + "class": 11, + "Env": 1, + "def": 18, + "init": 4, + "memory": 3, + "ptr": 9, + "0": 3, + "ptr=": 1, + "current_value": 5, + "current_value=": 1, + "value": 1, + "AST": 4, + "Next": 1, + "eval": 10, + "env": 16, + "Prev": 1, + "Inc": 1, + "Dec": 1, + "Output": 1, + "print": 1, + "char": 5, + "Input": 1, + "Sequence": 2, + "nodes": 6, + "for": 2, + "node": 2, + "in": 2, + "Loop": 1, + "seq": 4, + "while": 1, + "Parser": 1, + "str": 2, + "chars": 2, + "split": 1, + "parse": 1, + "stack": 3, + "_parse_char": 2, + "if": 1, + "length": 1, + "1": 1, + "throw": 1, + "SyntaxError": 1, + "new": 2, + "unexpected": 2, + "end": 1, + "of": 1, + "input": 1, + "last": 1, + "switch": 1, + "<": 1, + "+": 1, + "-": 1, + ".": 1, + "[": 1, + "]": 1, + ")": 7, + ";": 6, + "}": 3, + "@stack.pop": 1, + "_add": 1, + "(": 6, + "Loop.new": 1, + "Sequence.new": 1, + "src": 2, + "File.read": 1, + "ARGV.first": 1, + "ast": 1, + "Parser.new": 1, + ".parse": 1, + "ast.eval": 1, + "Env.new": 1 + }, + "Objective-C": { + "#import": 53, + "": 2, + "@interface": 23, + "FooAppDelegate": 2, + "NSObject": 5, + "": 1, + "{": 541, + "@private": 2, + "NSWindow": 2, + "*window": 2, + ";": 2003, + "}": 532, + "@property": 150, + "(": 2109, + "assign": 84, + ")": 2106, + "IBOutlet": 1, + "@end": 37, + "//": 317, + "MainMenuViewController": 2, + "TTTableViewController": 1, + "typedef": 47, + "enum": 17, + "TUITableViewStylePlain": 2, + "regular": 1, + "table": 7, + "view": 11, + "TUITableViewStyleGrouped": 1, + "grouped": 1, + "headers": 11, + "stick": 1, + "to": 115, + "the": 197, + "top": 8, + "of": 34, + "and": 44, + "scroll": 3, + "with": 19, + "it": 28, + "TUITableViewStyle": 4, + "TUITableViewScrollPositionNone": 2, + "TUITableViewScrollPositionTop": 2, + "TUITableViewScrollPositionMiddle": 1, + "TUITableViewScrollPositionBottom": 1, + "TUITableViewScrollPositionToVisible": 3, + "currently": 4, + "only": 12, + "supported": 1, + "arg": 11, + "TUITableViewScrollPosition": 5, + "TUITableViewInsertionMethodBeforeIndex": 1, + "NSOrderedAscending": 4, + "TUITableViewInsertionMethodAtIndex": 1, + "NSOrderedSame": 1, + "TUITableViewInsertionMethodAfterIndex": 1, + "NSOrderedDescending": 4, + "TUITableViewInsertionMethod": 3, + "@class": 4, + "TUITableViewCell": 23, + "@protocol": 3, + "TUITableViewDataSource": 2, + "TUITableView": 25, + "TUITableViewDelegate": 1, + "": 1, + "TUIScrollViewDelegate": 1, + "-": 595, + "CGFloat": 44, + "tableView": 45, + "*": 311, + "heightForRowAtIndexPath": 2, + "TUIFastIndexPath": 89, + "indexPath": 47, + "@optional": 2, + "void": 253, + "willDisplayCell": 2, + "cell": 21, + "forRowAtIndexPath": 2, + "called": 3, + "after": 5, + "s": 35, + "added": 5, + "as": 17, + "a": 78, + "subview": 1, + "didSelectRowAtIndexPath": 3, + "happens": 4, + "on": 26, + "left/right": 2, + "mouse": 2, + "down": 1, + "key": 32, + "up/down": 1, + "didDeselectRowAtIndexPath": 3, + "didClickRowAtIndexPath": 1, + "withEvent": 2, + "NSEvent": 3, + "event": 8, + "up": 4, + "can": 20, + "look": 1, + "at": 10, + "clickCount": 1, + "BOOL": 137, + "TUITableView*": 1, + "shouldSelectRowAtIndexPath": 3, + "TUIFastIndexPath*": 1, + "forEvent": 3, + "NSEvent*": 1, + "YES": 62, + "if": 297, + "not": 29, + "implemented": 7, + "NSMenu": 1, + "menuForRowAtIndexPath": 1, + "tableViewWillReloadData": 3, + "tableViewDidReloadData": 3, + "targetIndexPathForMoveFromRowAtIndexPath": 1, + "fromPath": 1, + "toProposedIndexPath": 1, + "proposedPath": 1, + "TUIScrollView": 1, + "_style": 8, + "__unsafe_unretained": 2, + "id": 170, + "": 4, + "_dataSource": 6, + "weak": 2, + "NSArray": 27, + "_sectionInfo": 27, + "TUIView": 17, + "_pullDownView": 4, + "_headerView": 8, + "CGSize": 5, + "_lastSize": 1, + "_contentHeight": 7, + "NSMutableIndexSet": 6, + "_visibleSectionHeaders": 6, + "NSMutableDictionary": 18, + "_visibleItems": 14, + "_reusableTableCells": 5, + "_selectedIndexPath": 9, + "_indexPathShouldBeFirstResponder": 2, + "NSInteger": 56, + "_futureMakeFirstResponderToken": 2, + "_keepVisibleIndexPathForReload": 2, + "_relativeOffsetForReload": 2, + "drag": 1, + "reorder": 1, + "state": 35, + "_dragToReorderCell": 5, + "CGPoint": 7, + "_currentDragToReorderLocation": 1, + "_currentDragToReorderMouseOffset": 1, + "_currentDragToReorderIndexPath": 1, + "_currentDragToReorderInsertionMethod": 1, + "_previousDragToReorderIndexPath": 1, + "_previousDragToReorderInsertionMethod": 1, + "struct": 20, + "unsigned": 62, + "int": 55, + "animateSelectionChanges": 3, + "forceSaveScrollPosition": 1, + "derepeaterEnabled": 1, + "layoutSubviewsReentrancyGuard": 1, + "didFirstLayout": 1, + "dataSourceNumberOfSectionsInTableView": 1, + "delegateTableViewWillDisplayCellForRowAtIndexPath": 1, + "maintainContentOffsetAfterReload": 3, + "_tableFlags": 1, + "initWithFrame": 12, + "CGRect": 41, + "frame": 38, + "style": 29, + "must": 6, + "specify": 2, + "creation.": 1, + "calls": 1, + "this": 50, + "UITableViewStylePlain": 1, + "nonatomic": 40, + "unsafe_unretained": 2, + "dataSource": 2, + "": 4, + "delegate": 29, + "readwrite": 1, + "reloadData": 3, + "reloadDataMaintainingVisibleIndexPath": 2, + "relativeOffset": 5, + "reloadLayout": 2, + "numberOfSections": 10, + "numberOfRowsInSection": 9, + "section": 60, + "rectForHeaderOfSection": 4, + "rectForSection": 3, + "rectForRowAtIndexPath": 7, + "NSIndexSet": 4, + "indexesOfSectionsInRect": 2, + "rect": 10, + "indexesOfSectionHeadersInRect": 2, + "indexPathForCell": 2, + "returns": 4, + "nil": 131, + "is": 77, + "visible": 16, + "indexPathsForRowsInRect": 3, + "valid": 5, + "indexPathForRowAtPoint": 2, + "point": 11, + "indexPathForRowAtVerticalOffset": 2, + "offset": 23, + "indexOfSectionWithHeaderAtPoint": 2, + "indexOfSectionWithHeaderAtVerticalOffset": 2, + "enumerateIndexPathsUsingBlock": 2, + "*indexPath": 11, + "*stop": 7, + "block": 18, + "enumerateIndexPathsWithOptions": 2, + "NSEnumerationOptions": 4, + "options": 6, + "usingBlock": 6, + "enumerateIndexPathsFromIndexPath": 4, + "fromIndexPath": 6, + "toIndexPath": 12, + "withOptions": 4, + "headerViewForSection": 6, + "cellForRowAtIndexPath": 9, + "or": 18, + "index": 11, + "path": 11, + "out": 7, + "range": 8, + "visibleCells": 3, + "no": 7, + "particular": 2, + "order": 1, + "sortedVisibleCells": 2, + "bottom": 6, + "indexPathsForVisibleRows": 2, + "scrollToRowAtIndexPath": 3, + "atScrollPosition": 3, + "scrollPosition": 9, + "animated": 27, + "indexPathForSelectedRow": 4, + "return": 165, + "representing": 1, + "row": 36, + "selection.": 1, + "indexPathForFirstRow": 2, + "indexPathForLastRow": 2, + "selectRowAtIndexPath": 3, + "deselectRowAtIndexPath": 3, + "strong": 4, + "*pullDownView": 1, + "pullDownViewIsVisible": 3, + "*headerView": 6, + "dequeueReusableCellWithIdentifier": 2, + "NSString": 127, + "identifier": 7, + "": 1, + "@required": 1, + "canMoveRowAtIndexPath": 2, + "moveRowAtIndexPath": 2, + "numberOfSectionsInTableView": 3, + "NSIndexPath": 5, + "+": 195, + "indexPathForRow": 11, + "NSUInteger": 93, + "inSection": 11, + "readonly": 19, + "NSString*": 13, + "kTextStyleType": 2, + "@": 258, + "kViewStyleType": 2, + "kImageStyleType": 2, + "///////////////////////////////////////////////////////////////////////////////////////////////////": 24, + "@implementation": 13, + "StyleViewController": 2, + "initWithStyleName": 1, + "name": 7, + "styleType": 3, + "self": 500, + "[": 1227, + "super": 25, + "initWithNibName": 3, + "bundle": 3, + "]": 1227, + "self.title": 2, + "TTStyleSheet": 4, + "globalStyleSheet": 4, + "styleWithSelector": 4, + "retain": 73, + "_styleHighlight": 6, + "forState": 4, + "UIControlStateHighlighted": 1, + "_styleDisabled": 6, + "UIControlStateDisabled": 1, + "_styleSelected": 6, + "UIControlStateSelected": 1, + "_styleType": 6, + "copy": 4, + "dealloc": 13, + "TT_RELEASE_SAFELY": 12, + "#pragma": 44, + "mark": 42, + "UIViewController": 2, + "addTextView": 5, + "title": 2, + "TTStyle*": 7, + "textFrame": 3, + "TTRectInset": 3, + "UIEdgeInsetsMake": 3, + "StyleView*": 2, + "text": 12, + "StyleView": 2, + "alloc": 47, + "text.text": 1, + "TTStyleContext*": 1, + "context": 4, + "TTStyleContext": 1, + "init": 34, + "context.frame": 1, + "context.delegate": 1, + "context.font": 1, + "UIFont": 3, + "systemFontOfSize": 2, + "systemFontSize": 1, + "size": 12, + "addToSize": 1, + "CGSizeZero": 1, + "size.width": 1, + "size.height": 1, + "textFrame.size": 1, + "text.frame": 1, + "text.style": 1, + "text.backgroundColor": 1, + "UIColor": 3, + "colorWithRed": 3, + "green": 3, + "blue": 3, + "alpha": 3, + "text.autoresizingMask": 1, + "UIViewAutoresizingFlexibleWidth": 4, + "|": 13, + "UIViewAutoresizingFlexibleBottomMargin": 3, + "self.view": 4, + "addSubview": 8, + "addView": 5, + "viewFrame": 4, + "view.style": 2, + "view.backgroundColor": 2, + "view.autoresizingMask": 2, + "addImageView": 5, + "TTImageView*": 1, + "TTImageView": 1, + "view.urlPath": 1, + "imageFrame": 2, + "view.frame": 2, + "imageFrame.size": 1, + "view.image.size": 1, + "loadView": 4, + "self.view.bounds": 2, + "frame.size.height": 15, + "/": 18, + "isEqualToString": 13, + "frame.origin.y": 16, + "else": 35, + "Foo": 2, + "": 4, + "SBJsonParser": 2, + "maxDepth": 2, + "*error": 3, + "objectWithData": 7, + "NSData*": 1, + "data": 27, + "objectWithString": 5, + "repr": 5, + "jsonText": 1, + "error": 75, + "NSError**": 2, + "nibNameOrNil": 1, + "NSBundle": 1, + "nibBundleOrNil": 1, + "//self.variableHeightRows": 1, + "self.tableViewStyle": 1, + "UITableViewStyleGrouped": 1, + "self.dataSource": 1, + "TTSectionedDataSource": 1, + "dataSourceWithObjects": 1, + "TTTableTextItem": 48, + "itemWithText": 48, + "URL": 48, + "@synthesize": 7, + "self.maxDepth": 2, + "u": 4, + "Methods": 1, + "NSData": 28, + "self.error": 3, + "SBJsonStreamParserAccumulator": 2, + "*accumulator": 1, + "SBJsonStreamParserAdapter": 2, + "*adapter": 1, + "adapter.delegate": 1, + "accumulator": 1, + "SBJsonStreamParser": 2, + "*parser": 1, + "parser.maxDepth": 1, + "parser.delegate": 1, + "adapter": 1, + "switch": 3, + "parser": 3, + "parse": 1, + "case": 8, + "SBJsonStreamParserComplete": 1, + "accumulator.value": 1, + "break": 13, + "SBJsonStreamParserWaitingForData": 1, + "SBJsonStreamParserError": 1, + "parser.error": 1, + "dataUsingEncoding": 2, + "NSUTF8StringEncoding": 2, + "error_": 2, + "tmp": 3, + "NSDictionary": 37, + "*ui": 1, + "dictionaryWithObjectsAndKeys": 10, + "NSLocalizedDescriptionKey": 10, + "*error_": 1, + "NSError": 51, + "errorWithDomain": 6, + "code": 16, + "userInfo": 15, + "ui": 1, + "PlaygroundViewController": 2, + "UIScrollView*": 1, + "_scrollView": 9, + "": 1, + "static": 102, + "const": 28, + "kFramePadding": 7, + "kElementSpacing": 3, + "kGroupSpacing": 5, + "addHeader": 5, + "yOffset": 42, + "UILabel*": 2, + "label": 6, + "UILabel": 2, + "CGRectZero": 5, + "label.text": 2, + "label.font": 3, + "label.numberOfLines": 2, + "label.frame": 4, + "frame.origin.x": 3, + "frame.size.width": 4, + "sizeWithFont": 2, + "constrainedToSize": 2, + "CGSizeMake": 3, + ".height": 4, + "label.frame.size.height": 2, + "addText": 5, + "UIScrollView": 1, + "_scrollView.autoresizingMask": 1, + "UIViewAutoresizingFlexibleHeight": 1, + "NSLocalizedString": 9, + "UIButton*": 1, + "button": 5, + "UIButton": 1, + "buttonWithType": 1, + "UIButtonTypeRoundedRect": 1, + "setTitle": 1, + "UIControlStateNormal": 1, + "addTarget": 1, "action": 1, - "version": 6, - "parser.parse_args": 1, - "absolute_import": 1, - "division": 1, - "with_statement": 1, - "Cookie": 1, - "logging": 1, - "socket": 1, - "time": 1, - "tornado.escape": 1, - "utf8": 2, - "native_str": 4, - "parse_qs_bytes": 3, - "tornado": 3, - "httputil": 1, - "iostream": 1, - "tornado.netutil": 1, - "TCPServer": 2, - "stack_context": 1, - "tornado.util": 1, - "bytes_type": 2, - "ssl": 2, - "Python": 1, - "ImportError": 1, - "HTTPServer": 1, - "request_callback": 4, - "no_keep_alive": 4, - "io_loop": 3, - "xheaders": 4, - "ssl_options": 3, - "self.request_callback": 5, - "self.no_keep_alive": 4, - "self.xheaders": 3, - "TCPServer.__init__": 1, - "handle_stream": 1, - "stream": 4, - "address": 4, - "HTTPConnection": 2, - "_BadRequestException": 5, - "Exception": 2, - "self.stream": 1, - "self.address": 3, - "self._request": 7, - "self._request_finished": 4, - "self._header_callback": 3, - "stack_context.wrap": 2, - "self._on_headers": 1, - "self.stream.read_until": 2, - "self._write_callback": 5, - "write": 2, - "chunk": 5, - "callback": 7, - "self.stream.closed": 1, - "self.stream.write": 2, - "self._on_write_complete": 1, - "finish": 2, - "self.stream.writing": 2, - "self._finish_request": 2, - "_on_write_complete": 1, - "_finish_request": 1, - "disconnect": 5, - "connection_header": 5, - "self._request.headers.get": 2, - "connection_header.lower": 1, - "self._request.supports_http_1_1": 1, - "self._request.headers": 1, - "self._request.method": 2, - "self.stream.close": 2, - "_on_headers": 1, - "data.decode": 1, - "eol": 3, - "data.find": 1, - "start_line": 1, + "@selector": 28, + "debugTestAction": 2, + "forControlEvents": 1, + "UIControlEventTouchUpInside": 1, + "sizeToFit": 1, + "button.frame": 2, + "stringWithFormat": 6, + "TTCurrentLocale": 2, + "displayNameForKey": 1, + "NSLocaleIdentifier": 1, + "value": 21, + "localeIdentifier": 1, + "TTPathForBundleResource": 1, + "TTPathForDocumentsResource": 1, + "md5Hash": 1, + "setContentSize": 1, + "viewDidUnload": 2, + "viewDidAppear": 2, + "flashScrollIndicators": 1, + "#ifdef": 10, + "DEBUG": 1, + "NSLog": 4, + "#else": 8, + "#endif": 59, + "TTDPRINTMETHODNAME": 1, + "TTDPRINT": 9, + "TTMAXLOGLEVEL": 1, + "TTDERROR": 1, + "TTLOGLEVEL_ERROR": 1, + "TTDWARNING": 1, + "TTLOGLEVEL_WARNING": 1, + "TTDINFO": 1, + "TTLOGLEVEL_INFO": 1, + "TTDCONDITIONLOG": 3, + "true": 9, + "false": 3, + "rand": 1, + "%": 30, + "TTDASSERT": 2, + "#include": 18, + "": 2, + "": 1, + "": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "": 2, + "": 1, + "//#include": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "//#import": 1, + "": 2, + "": 1, + "": 2, + "": 2, + "": 1, + "": 1, + "": 2, + "#ifndef": 9, + "__has_feature": 3, + "#define": 65, + "x": 10, + "JK_ENABLE_CF_TRANSFER_OWNERSHIP_CALLBACKS": 2, + "#warning": 1, + "As": 1, + "JSONKit": 11, + "v1.4": 1, + "longer": 2, + "required.": 1, + "It": 2, + "option.": 1, + "__OBJC_GC__": 1, + "#error": 6, + "does": 3, + "support": 4, + "Objective": 2, + "C": 6, + "Garbage": 1, + "Collection": 1, + "#if": 41, + "objc_arc": 1, + "Automatic": 1, + "Reference": 1, + "Counting": 1, + "ARC": 1, + "UINT_MAX": 3, + "xffffffffU": 1, + "||": 42, + "INT_MIN": 3, + "fffffff": 1, + "ULLONG_MAX": 1, + "xffffffffffffffffULL": 1, + "LLONG_MIN": 1, + "fffffffffffffffLL": 1, + "LL": 1, + "requires": 4, + "types": 2, + "be": 49, + "bits": 1, + "respectively.": 1, + "defined": 16, + "__LP64__": 4, + "&&": 123, + "ULONG_MAX": 3, + "INT_MAX": 2, + "LONG_MAX": 3, + "LONG_MIN": 3, + "WORD_BIT": 1, + "LONG_BIT": 1, + "same": 6, + "bit": 1, + "architectures.": 1, + "NSUIntegerMax": 7, + "NSIntegerMax": 4, + "NSIntegerMin": 3, + "type.": 3, + "SIZE_MAX": 1, + "SSIZE_MAX": 1, + "JK_HASH_INIT": 1, + "UL": 138, + "JK_FAST_TRAILING_BYTES": 2, + "JK_CACHE_SLOTS_BITS": 2, + "JK_CACHE_SLOTS": 1, + "<<": 16, + "JK_CACHE_PROBES": 1, + "JK_INIT_CACHE_AGE": 1, + "JK_TOKENBUFFER_SIZE": 1, + "JK_STACK_OBJS": 1, + "JK_JSONBUFFER_SIZE": 1, + "JK_UTF8BUFFER_SIZE": 1, + "JK_ENCODE_CACHE_SLOTS": 1, + "__GNUC__": 14, + "JK_ATTRIBUTES": 15, + "attr": 3, + "...": 11, + "__attribute__": 3, + "##__VA_ARGS__": 7, + "JK_EXPECTED": 4, + "cond": 12, + "expect": 3, + "__builtin_expect": 1, + "long": 71, + "JK_EXPECT_T": 22, + "U": 2, + "JK_EXPECT_F": 14, + "JK_PREFETCH": 2, + "ptr": 3, + "__builtin_prefetch": 1, + "JK_STATIC_INLINE": 10, + "__inline__": 1, + "always_inline": 1, + "JK_ALIGNED": 1, + "aligned": 1, + "JK_UNUSED_ARG": 2, + "unused": 3, + "JK_WARN_UNUSED": 1, + "warn_unused_result": 9, + "JK_WARN_UNUSED_CONST": 1, + "JK_WARN_UNUSED_PURE": 1, + "pure": 2, + "JK_WARN_UNUSED_SENTINEL": 1, + "sentinel": 1, + "JK_NONNULL_ARGS": 1, + "nonnull": 6, + "JK_WARN_UNUSED_NONNULL_ARGS": 1, + "JK_WARN_UNUSED_CONST_NONNULL_ARGS": 1, + "JK_WARN_UNUSED_PURE_NONNULL_ARGS": 1, + "__GNUC_MINOR__": 3, + "JK_ALLOC_SIZE_NON_NULL_ARGS_WARN_UNUSED": 2, + "nn": 4, + "alloc_size": 1, + "JKArray": 14, + "JKDictionaryEnumerator": 4, + "JKDictionary": 22, + "JSONNumberStateStart": 1, + "JSONNumberStateFinished": 1, + "JSONNumberStateError": 1, + "JSONNumberStateWholeNumberStart": 1, + "JSONNumberStateWholeNumberMinus": 1, + "JSONNumberStateWholeNumberZero": 1, + "JSONNumberStateWholeNumber": 1, + "JSONNumberStatePeriod": 1, + "JSONNumberStateFractionalNumberStart": 1, + "JSONNumberStateFractionalNumber": 1, + "JSONNumberStateExponentStart": 1, + "JSONNumberStateExponentPlusMinus": 1, + "JSONNumberStateExponent": 1, + "JSONStringStateStart": 1, + "JSONStringStateParsing": 1, + "JSONStringStateFinished": 1, + "JSONStringStateError": 1, + "JSONStringStateEscape": 1, + "JSONStringStateEscapedUnicode1": 1, + "JSONStringStateEscapedUnicode2": 1, + "JSONStringStateEscapedUnicode3": 1, + "JSONStringStateEscapedUnicode4": 1, + "JSONStringStateEscapedUnicodeSurrogate1": 1, + "JSONStringStateEscapedUnicodeSurrogate2": 1, + "JSONStringStateEscapedUnicodeSurrogate3": 1, + "JSONStringStateEscapedUnicodeSurrogate4": 1, + "JSONStringStateEscapedNeedEscapeForSurrogate": 1, + "JSONStringStateEscapedNeedEscapedUForSurrogate": 1, + "JKParseAcceptValue": 2, + "JKParseAcceptComma": 2, + "JKParseAcceptEnd": 3, + "JKParseAcceptValueOrEnd": 1, + "JKParseAcceptCommaOrEnd": 1, + "JKClassUnknown": 1, + "JKClassString": 1, + "JKClassNumber": 1, + "JKClassArray": 1, + "JKClassDictionary": 1, + "JKClassNull": 1, + "JKManagedBufferOnStack": 1, + "JKManagedBufferOnHeap": 1, + "JKManagedBufferLocationMask": 1, + "JKManagedBufferLocationShift": 1, + "JKManagedBufferMustFree": 1, + "JKFlags": 5, + "JKManagedBufferFlags": 1, + "JKObjectStackOnStack": 1, + "JKObjectStackOnHeap": 1, + "JKObjectStackLocationMask": 1, + "JKObjectStackLocationShift": 1, + "JKObjectStackMustFree": 1, + "JKObjectStackFlags": 1, + "JKTokenTypeInvalid": 1, + "JKTokenTypeNumber": 1, + "JKTokenTypeString": 1, + "JKTokenTypeObjectBegin": 1, + "JKTokenTypeObjectEnd": 1, + "JKTokenTypeArrayBegin": 1, + "JKTokenTypeArrayEnd": 1, + "JKTokenTypeSeparator": 1, + "JKTokenTypeComma": 1, + "JKTokenTypeTrue": 1, + "JKTokenTypeFalse": 1, + "JKTokenTypeNull": 1, + "JKTokenTypeWhiteSpace": 1, + "JKTokenType": 2, + "JKValueTypeNone": 1, + "JKValueTypeString": 1, + "JKValueTypeLongLong": 1, + "JKValueTypeUnsignedLongLong": 1, + "JKValueTypeDouble": 1, + "JKValueType": 1, + "JKEncodeOptionAsData": 1, + "JKEncodeOptionAsString": 1, + "JKEncodeOptionAsTypeMask": 1, + "JKEncodeOptionCollectionObj": 1, + "JKEncodeOptionStringObj": 1, + "JKEncodeOptionStringObjTrimQuotes": 1, + "JKEncodeOptionType": 2, + "JKHash": 4, + "JKTokenCacheItem": 2, + "JKTokenCache": 2, + "JKTokenValue": 2, + "JKParseToken": 2, + "JKPtrRange": 2, + "JKObjectStack": 5, + "JKBuffer": 2, + "JKConstBuffer": 2, + "JKConstPtrRange": 2, + "JKRange": 2, + "JKManagedBuffer": 5, + "JKFastClassLookup": 2, + "JKEncodeCache": 6, + "JKEncodeState": 11, + "JKObjCImpCache": 2, + "JKHashTableEntry": 21, + "serializeObject": 1, + "object": 36, + "JKSerializeOptionFlags": 16, + "optionFlags": 1, + "encodeOption": 2, + "JKSERIALIZER_BLOCKS_PROTO": 1, + "selector": 12, + "SEL": 19, + "**": 27, + "releaseState": 1, + "keyHash": 21, + "uint32_t": 1, + "UTF32": 11, + "uint16_t": 1, + "UTF16": 1, + "uint8_t": 1, + "UTF8": 2, + "conversionOK": 1, + "sourceExhausted": 1, + "targetExhausted": 1, + "sourceIllegal": 1, + "ConversionResult": 1, + "UNI_REPLACEMENT_CHAR": 1, + "FFFD": 1, + "UNI_MAX_BMP": 1, + "FFFF": 3, + "UNI_MAX_UTF16": 1, + "UNI_MAX_UTF32": 1, + "FFFFFFF": 1, + "UNI_MAX_LEGAL_UTF32": 1, + "UNI_SUR_HIGH_START": 1, + "xD800": 1, + "UNI_SUR_HIGH_END": 1, + "xDBFF": 1, + "UNI_SUR_LOW_START": 1, + "xDC00": 1, + "UNI_SUR_LOW_END": 1, + "xDFFF": 1, + "char": 19, + "trailingBytesForUTF8": 1, + "offsetsFromUTF8": 1, + "E2080UL": 1, + "C82080UL": 1, + "xFA082080UL": 1, + "firstByteMark": 1, + "xC0": 1, + "xE0": 1, + "xF0": 1, + "xF8": 1, + "xFC": 1, + "JK_AT_STRING_PTR": 1, + "&": 36, + "stringBuffer.bytes.ptr": 2, + "atIndex": 6, + "JK_END_STRING_PTR": 1, + "stringBuffer.bytes.length": 1, + "*_JKArrayCreate": 2, + "*objects": 5, + "count": 99, + "mutableCollection": 7, + "_JKArrayInsertObjectAtIndex": 3, + "*array": 9, + "newObject": 12, + "objectIndex": 48, + "_JKArrayReplaceObjectAtIndexWithObject": 3, + "_JKArrayRemoveObjectAtIndex": 3, + "_JKDictionaryCapacityForCount": 4, + "*_JKDictionaryCreate": 2, + "*keys": 2, + "*keyHashes": 2, + "*_JKDictionaryHashEntry": 2, + "*dictionary": 13, + "_JKDictionaryCapacity": 3, + "_JKDictionaryResizeIfNeccessary": 3, + "_JKDictionaryRemoveObjectWithEntry": 3, + "*entry": 4, + "_JKDictionaryAddObject": 4, + "*_JKDictionaryHashTableEntryForKey": 2, + "aKey": 13, + "_JSONDecoderCleanup": 1, + "JSONDecoder": 2, + "*decoder": 1, + "_NSStringObjectFromJSONString": 1, + "*jsonString": 1, + "JKParseOptionFlags": 12, + "parseOptionFlags": 11, + "**error": 1, + "jk_managedBuffer_release": 1, + "*managedBuffer": 3, + "jk_managedBuffer_setToStackBuffer": 1, + "*ptr": 2, + "size_t": 23, + "length": 32, + "*jk_managedBuffer_resize": 1, + "newSize": 1, + "jk_objectStack_release": 1, + "*objectStack": 3, + "jk_objectStack_setToStackBuffer": 1, + "**objects": 1, + "**keys": 1, + "CFHashCode": 1, + "*cfHashes": 1, + "jk_objectStack_resize": 1, + "newCount": 1, + "jk_error": 1, + "JKParseState": 18, + "*parseState": 16, + "*format": 7, + "jk_parse_string": 1, + "jk_parse_number": 1, + "jk_parse_is_newline": 1, + "*atCharacterPtr": 1, + "jk_parse_skip_newline": 1, + "jk_parse_skip_whitespace": 1, + "jk_parse_next_token": 1, + "jk_error_parse_accept_or3": 1, + "*or1String": 1, + "*or2String": 1, + "*or3String": 1, + "*jk_create_dictionary": 1, + "startingObjectIndex": 1, + "*jk_parse_dictionary": 1, + "*jk_parse_array": 1, + "*jk_object_for_token": 1, + "*jk_cachedObjects": 1, + "jk_cache_age": 1, + "jk_set_parsed_token": 1, + "type": 5, + "advanceBy": 1, + "jk_encode_error": 1, + "*encodeState": 9, + "jk_encode_printf": 1, + "*cacheSlot": 4, + "startingAtIndex": 4, + "jk_encode_write": 1, + "jk_encode_writePrettyPrintWhiteSpace": 1, + "jk_encode_write1slow": 2, + "ssize_t": 2, + "depthChange": 2, + "jk_encode_write1fast": 2, + "jk_encode_writen": 1, + "jk_encode_object_hash": 1, + "*objectPtr": 2, + "jk_encode_updateCache": 1, + "jk_encode_add_atom_to_buffer": 1, + "jk_encode_write1": 1, + "es": 3, + "dc": 3, + "f": 8, + "_jk_encode_prettyPrint": 1, + "jk_min": 1, + "b": 4, + "jk_max": 3, + "jk_calculateHash": 1, + "currentHash": 1, + "c": 7, + "Class": 3, + "_JKArrayClass": 5, + "NULL": 152, + "_JKArrayInstanceSize": 4, + "_JKDictionaryClass": 5, + "_JKDictionaryInstanceSize": 4, + "_jk_NSNumberClass": 2, + "NSNumberAllocImp": 2, + "_jk_NSNumberAllocImp": 2, + "NSNumberInitWithUnsignedLongLongImp": 2, + "_jk_NSNumberInitWithUnsignedLongLongImp": 2, + "extern": 6, + "jk_collectionClassLoadTimeInitialization": 2, + "constructor": 1, + "NSAutoreleasePool": 2, + "*pool": 1, + "Though": 1, + "technically": 1, + "required": 2, + "run": 1, + "time": 9, + "environment": 1, + "load": 1, + "initialization": 1, + "may": 8, + "less": 1, + "than": 9, + "ideal.": 1, + "objc_getClass": 2, + "class_getInstanceSize": 2, + "NSNumber": 11, + "class": 30, + "methodForSelector": 2, + "temp_NSNumber": 4, + "initWithUnsignedLongLong": 1, + "release": 66, + "pool": 2, + "NSMutableArray": 31, + "": 2, + "NSMutableCopying": 2, + "NSFastEnumeration": 2, + "capacity": 51, + "mutations": 20, + "allocWithZone": 4, + "NSZone": 4, + "zone": 8, + "NSException": 19, + "raise": 18, + "NSInvalidArgumentException": 6, + "format": 18, + "NSStringFromClass": 18, + "NSStringFromSelector": 16, + "_cmd": 16, + "NSCParameterAssert": 19, + "objects": 58, + "array": 84, + "calloc": 5, + "Directly": 2, + "allocate": 2, + "instance": 2, + "via": 5, + "calloc.": 2, + "isa": 2, + "malloc": 1, + "sizeof": 13, + "autorelease": 21, + "memcpy": 2, + "NO": 30, + "<=>": 15, + "*newObjects": 1, + "newObjects": 2, + "realloc": 1, + "NSMallocException": 2, + "memset": 1, + "<": 56, + "memmove": 2, + "CFRelease": 19, + "atObject": 12, + "for": 99, + "free": 4, + "NSParameterAssert": 15, + "getObjects": 2, + "objectsPtr": 3, + "NSRange": 1, + "NSMaxRange": 4, + "NSRangeException": 6, + "range.location": 2, + "range.length": 1, + "objectAtIndex": 8, + "countByEnumeratingWithState": 2, + "NSFastEnumerationState": 2, + "stackbuf": 8, + "len": 6, + "mutationsPtr": 2, + "itemsPtr": 2, + "enumeratedCount": 8, + "while": 11, + "insertObject": 1, + "anObject": 16, + "NSInternalInconsistencyException": 4, + "__clang_analyzer__": 3, + "Stupid": 2, + "clang": 3, + "analyzer...": 2, + "Issue": 2, + "#19.": 2, + "removeObjectAtIndex": 1, + "replaceObjectAtIndex": 1, + "withObject": 10, + "copyWithZone": 1, + "initWithObjects": 2, + "mutableCopyWithZone": 1, + "NSEnumerator": 2, + "collection": 11, + "nextObject": 6, + "initWithJKDictionary": 3, + "initDictionary": 4, + "allObjects": 2, + "CFRetain": 4, + "arrayWithObjects": 1, + "_JKDictionaryHashEntry": 2, + "returnObject": 3, + "entry": 41, + ".key": 11, + "jk_dictionaryCapacities": 4, + "mid": 5, + "tableSize": 2, + "lround": 1, + "floor": 1, + "dictionary": 64, + "capacityForCount": 4, + "resize": 3, + "oldCapacity": 2, + "NS_BLOCK_ASSERTIONS": 1, + "oldCount": 2, + "*oldEntry": 1, + "idx": 33, + "oldEntry": 9, + ".keyHash": 2, + ".object": 7, + "keys": 5, + "keyHashes": 2, + "atEntry": 45, + "removeIdx": 3, + "entryIdx": 4, + "*atEntry": 3, + "addKeyEntry": 2, + "addIdx": 5, + "*atAddEntry": 1, + "atAddEntry": 6, + "keyEntry": 4, + "CFEqual": 2, + "CFHash": 1, + "If": 30, + "was": 4, + "in": 42, + "we": 73, + "would": 2, + "have": 15, + "found": 4, + "by": 12, + "now.": 1, + "objectForKey": 29, + "entryForKey": 3, + "_JKDictionaryHashTableEntryForKey": 1, + "andKeys": 1, + "arrayIdx": 5, + "keyEnumerator": 1, + "setObject": 9, + "forKey": 9, + "Why": 1, + "earth": 1, + "complain": 1, + "that": 23, + "but": 5, + "doesn": 1, + "Internal": 2, + "Unable": 2, + "temporary": 2, + "buffer.": 2, + "line": 2, + "#": 2, + "ld": 2, + "Invalid": 1, + "character": 1, + "string": 9, + "x.": 1, + "n": 7, + "r": 6, + "t": 15, + "A": 4, + "F": 1, + ".": 2, + "e": 1, + "double": 3, + "Unexpected": 1, + "token": 1, + "wanted": 1, + "Expected": 3, + "TARGET_OS_IPHONE": 11, + "": 1, + "": 1, + "*ASIHTTPRequestVersion": 2, + "*defaultUserAgent": 1, + "NetworkRequestErrorDomain": 12, + "*ASIHTTPRequestRunLoopMode": 1, + "CFOptionFlags": 1, + "kNetworkEvents": 1, + "kCFStreamEventHasBytesAvailable": 1, + "kCFStreamEventEndEncountered": 1, + "kCFStreamEventErrorOccurred": 1, + "*sessionCredentialsStore": 1, + "*sessionProxyCredentialsStore": 1, + "NSRecursiveLock": 13, + "*sessionCredentialsLock": 1, + "*sessionCookies": 1, + "RedirectionLimit": 1, + "NSTimeInterval": 10, + "defaultTimeOutSeconds": 3, + "ReadStreamClientCallBack": 1, + "CFReadStreamRef": 5, + "readStream": 5, + "CFStreamEventType": 2, + "*clientCallBackInfo": 1, + "ASIHTTPRequest*": 1, + "clientCallBackInfo": 1, + "handleNetworkEvent": 2, + "*progressLock": 1, + "*ASIRequestCancelledError": 1, + "*ASIRequestTimedOutError": 1, + "*ASIAuthenticationError": 1, + "*ASIUnableToCreateRequestError": 1, + "*ASITooMuchRedirectionError": 1, + "*bandwidthUsageTracker": 1, + "averageBandwidthUsedPerSecond": 2, + "nextConnectionNumberToCreate": 1, + "*persistentConnectionsPool": 1, + "*connectionsLock": 1, + "nextRequestID": 1, + "bandwidthUsedInLastSecond": 1, + "NSDate": 9, + "*bandwidthMeasurementDate": 1, + "NSLock": 2, + "*bandwidthThrottlingLock": 1, + "maxBandwidthPerSecond": 2, + "ASIWWANBandwidthThrottleAmount": 2, + "isBandwidthThrottled": 2, + "shouldThrottleBandwidthForWWANOnly": 1, + "*sessionCookiesLock": 1, + "*delegateAuthenticationLock": 1, + "*throttleWakeUpTime": 1, + "": 9, + "defaultCache": 3, + "runningRequestCount": 1, + "shouldUpdateNetworkActivityIndicator": 1, + "NSThread": 4, + "*networkThread": 1, + "NSOperationQueue": 4, + "*sharedQueue": 1, + "ASIHTTPRequest": 31, + "cancelLoad": 3, + "destroyReadStream": 3, + "scheduleReadStream": 1, + "unscheduleReadStream": 1, + "willAskDelegateForCredentials": 1, + "willAskDelegateForProxyCredentials": 1, + "askDelegateForProxyCredentials": 1, + "askDelegateForCredentials": 1, + "failAuthentication": 1, + "measureBandwidthUsage": 1, + "recordBandwidthUsage": 1, + "startRequest": 3, + "updateStatus": 2, + "NSTimer": 5, + "timer": 5, + "checkRequestStatus": 2, + "reportFailure": 3, + "reportFinished": 1, + "markAsFinished": 4, + "performRedirect": 1, + "shouldTimeOut": 2, + "willRedirect": 1, + "willAskDelegateToConfirmRedirect": 1, + "performInvocation": 2, + "NSInvocation": 4, + "invocation": 4, + "onTarget": 7, + "target": 5, + "releasingObject": 2, + "objectToRelease": 1, + "hideNetworkActivityIndicatorAfterDelay": 1, + "hideNetworkActivityIndicatorIfNeeeded": 1, + "runRequests": 1, + "configureProxies": 2, + "fetchPACFile": 1, + "finishedDownloadingPACFile": 1, + "theRequest": 1, + "runPACScript": 1, + "script": 1, + "timeOutPACRead": 1, + "useDataFromCache": 2, + "updatePartialDownloadSize": 1, + "registerForNetworkReachabilityNotifications": 1, + "unsubscribeFromNetworkReachabilityNotifications": 1, + "reachabilityChanged": 1, + "NSNotification": 2, + "note": 1, + "NS_BLOCKS_AVAILABLE": 8, + "performBlockOnMainThread": 2, + "ASIBasicBlock": 15, + "releaseBlocksOnMainThread": 4, + "releaseBlocks": 3, + "blocks": 16, + "callBlock": 1, + "complete": 12, + "*responseCookies": 3, + "responseStatusCode": 3, + "*lastActivityTime": 2, + "partialDownloadSize": 8, + "uploadBufferSize": 6, + "NSOutputStream": 6, + "*postBodyWriteStream": 1, + "NSInputStream": 7, + "*postBodyReadStream": 1, + "lastBytesRead": 3, + "lastBytesSent": 3, + "*cancelledLock": 2, + "*fileDownloadOutputStream": 2, + "*inflatedFileDownloadOutputStream": 2, + "authenticationRetryCount": 2, + "proxyAuthenticationRetryCount": 4, + "updatedProgress": 3, + "needsRedirect": 3, + "redirectCount": 2, + "*compressedPostBody": 1, + "*compressedPostBodyFilePath": 1, + "*authenticationRealm": 2, + "*proxyAuthenticationRealm": 3, + "*responseStatusMessage": 3, + "inProgress": 4, + "retryCount": 3, + "willRetryRequest": 1, + "connectionCanBeReused": 4, + "*connectionInfo": 2, + "*readStream": 1, + "ASIAuthenticationState": 5, + "authenticationNeeded": 3, + "readStreamIsScheduled": 1, + "downloadComplete": 2, + "*requestID": 3, + "*runLoopMode": 2, + "*statusTimer": 2, + "didUseCachedResponse": 3, + "NSURL": 21, + "*redirectURL": 2, + "isPACFileRequest": 3, + "*PACFileRequest": 2, + "*PACFileReadStream": 2, + "NSMutableData": 5, + "*PACFileData": 2, + "setter": 2, + "setSynchronous": 2, + "isSynchronous": 2, + "initialize": 1, + "persistentConnectionsPool": 3, + "connectionsLock": 3, + "progressLock": 1, + "bandwidthThrottlingLock": 1, + "sessionCookiesLock": 1, + "sessionCredentialsLock": 1, + "delegateAuthenticationLock": 1, + "bandwidthUsageTracker": 1, + "initWithCapacity": 2, + "ASIRequestTimedOutError": 1, + "initWithDomain": 5, + "ASIRequestTimedOutErrorType": 2, + "ASIAuthenticationError": 1, + "ASIAuthenticationErrorType": 3, + "ASIRequestCancelledError": 2, + "ASIRequestCancelledErrorType": 2, + "ASIUnableToCreateRequestError": 3, + "ASIUnableToCreateRequestErrorType": 2, + "ASITooMuchRedirectionError": 1, + "ASITooMuchRedirectionErrorType": 3, + "sharedQueue": 4, + "setMaxConcurrentOperationCount": 1, + "initWithURL": 4, + "newURL": 16, + "setRequestMethod": 3, + "setRunLoopMode": 2, + "NSDefaultRunLoopMode": 2, + "setShouldAttemptPersistentConnection": 2, + "setPersistentConnectionTimeoutSeconds": 2, + "setShouldPresentCredentialsBeforeChallenge": 1, + "setShouldRedirect": 1, + "setShowAccurateProgress": 1, + "setShouldResetDownloadProgress": 1, + "setShouldResetUploadProgress": 1, + "setAllowCompressedResponse": 1, + "setShouldWaitToInflateCompressedResponses": 1, + "setDefaultResponseEncoding": 1, + "NSISOLatin1StringEncoding": 2, + "setShouldPresentProxyAuthenticationDialog": 1, + "setTimeOutSeconds": 1, + "setUseSessionPersistence": 1, + "setUseCookiePersistence": 1, + "setValidatesSecureCertificate": 1, + "setRequestCookies": 2, + "setDidStartSelector": 1, + "requestStarted": 3, + "setDidReceiveResponseHeadersSelector": 1, + "request": 113, + "didReceiveResponseHeaders": 2, + "setWillRedirectSelector": 1, + "willRedirectToURL": 1, + "setDidFinishSelector": 1, + "requestFinished": 4, + "setDidFailSelector": 1, + "requestFailed": 2, + "setDidReceiveDataSelector": 1, + "didReceiveData": 2, + "setURL": 3, + "setCancelledLock": 1, + "setDownloadCache": 3, + "requestWithURL": 7, + "usingCache": 5, + "cache": 17, + "andCachePolicy": 3, + "ASIUseDefaultCachePolicy": 1, + "ASICachePolicy": 4, + "policy": 7, + "*request": 1, + "setCachePolicy": 1, + "setAuthenticationNeeded": 2, + "ASINoAuthenticationNeededYet": 3, + "requestAuthentication": 7, + "proxyAuthentication": 7, + "clientCertificateIdentity": 5, + "redirectURL": 1, + "statusTimer": 3, + "invalidate": 2, + "queue": 12, + "postBody": 11, + "compressedPostBody": 4, + "requestHeaders": 6, + "requestCookies": 1, + "downloadDestinationPath": 11, + "temporaryFileDownloadPath": 2, + "temporaryUncompressedDataDownloadPath": 3, + "fileDownloadOutputStream": 1, + "inflatedFileDownloadOutputStream": 1, + "username": 8, + "password": 11, + "domain": 2, + "authenticationRealm": 4, + "authenticationScheme": 4, + "requestCredentials": 1, + "proxyHost": 2, + "proxyType": 1, + "proxyUsername": 3, + "proxyPassword": 3, + "proxyDomain": 1, + "proxyAuthenticationRealm": 2, + "proxyAuthenticationScheme": 2, + "proxyCredentials": 1, + "url": 24, + "originalURL": 1, + "lastActivityTime": 1, + "responseCookies": 1, + "rawResponseData": 4, + "responseHeaders": 5, + "requestMethod": 13, + "cancelledLock": 37, + "postBodyFilePath": 7, + "compressedPostBodyFilePath": 4, + "postBodyWriteStream": 7, + "postBodyReadStream": 2, + "PACurl": 1, + "clientCertificates": 2, + "responseStatusMessage": 1, + "connectionInfo": 13, + "requestID": 2, + "dataDecompressor": 1, + "userAgentString": 1, + "*blocks": 1, + "completionBlock": 5, + "addObject": 16, + "failureBlock": 5, + "startedBlock": 5, + "headersReceivedBlock": 5, + "bytesReceivedBlock": 8, + "bytesSentBlock": 5, + "downloadSizeIncrementedBlock": 5, + "uploadSizeIncrementedBlock": 5, + "dataReceivedBlock": 5, + "proxyAuthenticationNeededBlock": 5, + "authenticationNeededBlock": 5, + "requestRedirectedBlock": 5, + "performSelectorOnMainThread": 2, + "waitUntilDone": 4, + "isMainThread": 2, + "Blocks": 1, + "will": 57, + "released": 2, + "when": 46, "method": 5, +<<<<<<< HEAD "uri": 5, "start_line.split": 1, "version.startswith": 1, @@ -57653,344 +93552,1782 @@ "exp": 1, "rowMeans": 1, "log": 5, +======= + "exits": 1, + "setup": 2, + "addRequestHeader": 5, + "header": 20, + "setRequestHeaders": 2, + "dictionaryWithCapacity": 2, + "buildPostBody": 3, + "haveBuiltPostBody": 3, + "Are": 1, + "submitting": 1, + "body": 8, + "from": 18, + "file": 14, + "disk": 1, + "were": 5, + "writing": 2, + "post": 2, + "appendPostData": 3, + "appendPostDataFromFile": 3, + "close": 5, + "write": 4, + "stream": 13, + "setPostBodyWriteStream": 2, + "*path": 1, + "shouldCompressRequestBody": 6, + "setCompressedPostBodyFilePath": 1, + "NSTemporaryDirectory": 2, + "stringByAppendingPathComponent": 2, + "NSProcessInfo": 2, + "processInfo": 2, + "globallyUniqueString": 2, + "*err": 3, + "ASIDataCompressor": 2, + "compressDataFromFile": 1, + "toFile": 1, + "err": 8, + "failWithError": 11, + "setPostLength": 3, + "NSFileManager": 1, + "attributesOfItemAtPath": 1, + "fileSize": 1, + "ASIFileManagementError": 2, + "NSUnderlyingErrorKey": 3, + "Otherwise": 2, + "an": 20, + "memory": 3, + "*compressedBody": 1, + "compressData": 1, + "setCompressedPostBody": 1, + "compressedBody": 1, + "postLength": 6, + "setHaveBuiltPostBody": 1, + "setupPostBody": 3, + "shouldStreamPostDataFromDisk": 4, + "setPostBodyFilePath": 1, + "setDidCreateTemporaryPostDataFile": 1, + "initToFileAtPath": 1, + "append": 1, + "open": 2, + "setPostBody": 1, + "bytes": 8, + "maxLength": 3, + "appendData": 2, + "*stream": 1, + "initWithFileAtPath": 1, + "bytesRead": 5, + "hasBytesAvailable": 1, + "buffer": 7, + "*256": 1, + "read": 3, + "dataWithBytes": 1, + "lock": 19, + "*m": 1, + "unlock": 20, + "m": 1, + "newRequestMethod": 3, + "*u": 1, + "isEqual": 4, + "setRedirectURL": 2, + "d": 11, + "setDelegate": 4, + "newDelegate": 6, + "q": 2, + "setQueue": 2, + "newQueue": 3, + "get": 4, + "information": 5, + "about": 4, + "cancelOnRequestThread": 2, + "DEBUG_REQUEST_STATUS": 4, + "ASI_DEBUG_LOG": 11, + "isCancelled": 6, + "setComplete": 3, + "willChangeValueForKey": 1, + "cancelled": 5, + "didChangeValueForKey": 1, + "cancel": 5, + "performSelector": 7, + "onThread": 2, + "threadForRequest": 3, + "clearDelegatesAndCancel": 2, + "Clear": 3, + "delegates": 2, + "setDownloadProgressDelegate": 2, + "setUploadProgressDelegate": 2, + "result": 4, + "responseString": 3, + "*data": 2, + "responseData": 5, + "initWithBytes": 1, + "encoding": 7, + "responseEncoding": 3, + "isResponseCompressed": 3, + "*encoding": 1, + "rangeOfString": 1, + ".location": 1, + "NSNotFound": 1, + "shouldWaitToInflateCompressedResponses": 4, + "ASIDataDecompressor": 4, + "uncompressData": 1, + "running": 4, + "startSynchronous": 2, + "DEBUG_THROTTLING": 2, + "ASIHTTPRequestRunLoopMode": 2, + "setInProgress": 3, + "main": 8, + "NSRunLoop": 2, + "currentRunLoop": 2, + "runMode": 1, + "runLoopMode": 2, + "beforeDate": 1, + "distantFuture": 1, + "start": 3, + "startAsynchronous": 2, + "addOperation": 1, + "concurrency": 1, + "isConcurrent": 1, + "isFinished": 1, + "finished": 3, + "isExecuting": 1, + "logic": 1, + "@try": 1, + "__IPHONE_OS_VERSION_MAX_ALLOWED": 4, + "__IPHONE_4_0": 6, + "isMultitaskingSupported": 2, + "shouldContinueWhenAppEntersBackground": 3, + "backgroundTask": 7, + "UIBackgroundTaskInvalid": 3, + "UIApplication": 2, + "sharedApplication": 2, + "beginBackgroundTaskWithExpirationHandler": 1, + "dispatch_async": 1, + "dispatch_get_main_queue": 1, + "endBackgroundTask": 1, + "HEAD": 10, + "generated": 3, + "ASINetworkQueue": 4, + "set": 24, + "already.": 1, + "so": 15, + "should": 8, + "proceed.": 1, + "setDidUseCachedResponse": 1, + "Must": 1, + "call": 8, + "before": 6, + "create": 1, + "needs": 1, + "mainRequest": 9, + "ll": 6, + "already": 4, + "CFHTTPMessageRef": 3, + "Create": 1, + "new": 10, + "HTTP": 9, + "request.": 1, + "CFHTTPMessageCreateRequest": 1, + "kCFAllocatorDefault": 3, + "CFStringRef": 1, + "CFURLRef": 1, + "useHTTPVersionOne": 3, + "kCFHTTPVersion1_0": 1, + "kCFHTTPVersion1_1": 1, + "//If": 2, + "need": 10, + "let": 8, + "generate": 1, + "its": 9, + "first": 9, + "use": 26, + "them": 10, + "buildRequestHeaders": 3, + "Even": 1, + "still": 2, + "give": 2, + "subclasses": 2, + "chance": 2, + "add": 5, + "their": 3, + "own": 3, + "requests": 21, + "ASIS3Request": 1, + "downloadCache": 5, + "default": 8, + "download": 9, + "downloading": 5, + "proxy": 11, + "PAC": 7, + "once": 3, + "process": 1, + "@catch": 1, + "*exception": 1, + "*underlyingError": 1, + "ASIUnhandledExceptionError": 3, + "exception": 3, + "reason": 1, + "NSLocalizedFailureReasonErrorKey": 1, + "underlyingError": 1, + "@finally": 1, + "applyAuthorizationHeader": 2, + "Do": 3, + "want": 5, + "send": 2, + "credentials": 35, + "are": 15, + "asked": 3, + "shouldPresentCredentialsBeforeChallenge": 4, + "DEBUG_HTTP_AUTHENTICATION": 4, + "*credentials": 1, + "auth": 2, + "basic": 3, + "authentication": 18, + "explicitly": 2, + "kCFHTTPAuthenticationSchemeBasic": 2, + "addBasicAuthenticationHeaderWithUsername": 2, + "andPassword": 2, + "See": 5, + "any": 3, + "cached": 2, + "session": 5, + "store": 4, + "useSessionPersistence": 6, + "findSessionAuthenticationCredentials": 2, + "When": 15, + "Authentication": 3, + "stored": 9, + "challenge": 1, + "CFNetwork": 3, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "apply": 2, - "2": 1, - "cnts": 2, - "median": 1, - "library": 1, - "print_usage": 2, - "file": 4, - "stderr": 1, - "cat": 1, - "spec": 2, - "matrix": 3, - "byrow": 3, - "ncol": 3, - "opt": 23, - "getopt": 1, - "help": 1, - "stdout": 1, - "status": 1, - "height": 7, - "out": 4, - "res": 6, - "width": 7, - "ylim": 7, - "read.table": 1, - "header": 1, - "sep": 4, - "quote": 1, - "nsamp": 8, - "dim": 1, - "outfile": 4, - "sprintf": 2, - "png": 2, - "h": 13, - "hist": 4, - "plot": 7, - "FALSE": 9, - "mids": 4, - "density": 4, - "type": 3, - "col": 4, - "rainbow": 4, - "main": 2, - "xlab": 2, - "ylab": 2, - "for": 4, - "i": 6, - "in": 8, - "lines": 6, - "devnum": 2, - "dev.off": 2, - "size.factors": 2, - "data.matrix": 1, - "data.norm": 3, - "t": 1, - "x": 3, - "/": 1, - "ParseDates": 2, - "dates": 3, - "unlist": 2, - "strsplit": 3, - "days": 2, - "times": 2, - "hours": 2, - "all.days": 2, - "all.hours": 2, - "data.frame": 1, - "Day": 2, - "factor": 2, - "levels": 2, - "Hour": 2, - "Main": 2, - "system": 1, - "intern": 1, - "punchcard": 4, - "as.data.frame": 1, - "table": 1, - "ggplot2": 6, - "ggplot": 1, - "aes": 2, - "y": 1, - "geom_point": 1, - "size": 1, - "Freq": 1, - "scale_size": 1, - "range": 1, - "ggsave": 1, - "filename": 1, - "hello": 2, - "print": 1, - "module": 25, - "code": 21, - "available": 1, - "via": 1, - "the": 16, - "environment": 4, + "Digest": 2, + "NTLM": 6, + "always": 2, "like": 1, - "it": 3, - "returns.": 1, - "@param": 2, - "an": 1, - "identifier": 1, - "specifying": 1, - "full": 1, - "path": 9, - "search": 5, - "see": 1, - "Details": 1, - "even": 1, - "attach": 11, - "is": 7, - "optionally": 1, - "attached": 2, - "to": 9, - "of": 2, + "CFHTTPMessageApplyCredentialDictionary": 2, + "CFHTTPAuthenticationRef": 2, + "CFDictionaryRef": 1, + "setAuthenticationScheme": 1, + "removeAuthenticationCredentialsFromSessionStore": 3, + "these": 3, + "previous": 2, + "passed": 2, + "re": 9, + "retrying": 1, + "using": 8, + "our": 6, + "custom": 2, + "measure": 1, + "bandwidth": 3, + "throttled": 1, + "necessary": 2, + "setPostBodyReadStream": 2, + "ASIInputStream": 2, + "inputStreamWithData": 2, + "setReadStream": 2, + "NSMakeCollectable": 3, + "CFReadStreamCreateForStreamedHTTPRequest": 1, + "CFReadStreamCreateForHTTPRequest": 1, + "ASIInternalErrorWhileBuildingRequestType": 3, + "scheme": 5, + "lowercaseString": 1, + "validatesSecureCertificate": 3, + "*sslProperties": 2, + "initWithObjectsAndKeys": 1, + "numberWithBool": 3, + "kCFStreamSSLAllowsExpiredCertificates": 1, + "kCFStreamSSLAllowsAnyRoot": 1, + "kCFStreamSSLValidatesCertificateChain": 1, + "kCFNull": 1, + "kCFStreamSSLPeerName": 1, + "CFReadStreamSetProperty": 1, + "kCFStreamPropertySSLSettings": 1, + "CFTypeRef": 1, + "sslProperties": 2, + "*certificates": 1, + "arrayWithCapacity": 2, + "The": 15, + "SecIdentityRef": 3, + "certificates": 2, + "ve": 7, + "opened": 3, + "*oldStream": 1, + "Use": 6, + "persistent": 5, + "connection": 17, + "possible": 3, + "shouldAttemptPersistentConnection": 2, + "redirecting": 2, "current": 2, - "scope": 1, - "defaults": 1, - ".": 7, - "However": 1, - "interactive": 2, - "invoked": 1, + "connecting": 2, + "server": 8, + "host": 9, + "intValue": 4, + "port": 17, + "setConnectionInfo": 2, + "Check": 1, + "expired": 1, + "timeIntervalSinceNow": 1, + "DEBUG_PERSISTENT_CONNECTIONS": 3, + "removeObject": 2, + "//Some": 1, + "other": 3, + "reused": 2, + "previously": 1, + "there": 1, + "one": 1, + "We": 7, + "just": 4, + "make": 3, + "old": 5, + "http": 4, + "//lists.apple.com/archives/Macnetworkprog/2006/Mar/msg00119.html": 1, + "oldStream": 4, + "streamSuccessfullyOpened": 1, + "setConnectionCanBeReused": 2, + "shouldResetUploadProgress": 3, + "showAccurateProgress": 7, + "incrementUploadSizeBy": 3, + "updateProgressIndicator": 4, + "uploadProgressDelegate": 8, + "withProgress": 4, + "ofTotal": 4, + "shouldResetDownloadProgress": 3, + "downloadProgressDelegate": 10, + "Record": 1, + "started": 1, + "timeout": 6, + "nothing": 2, + "setLastActivityTime": 1, + "date": 3, + "setStatusTimer": 2, + "timerWithTimeInterval": 1, + "repeats": 1, + "addTimer": 1, + "forMode": 1, + "here": 2, + "sent": 6, + "more": 5, + "upload": 4, + "safely": 1, + "totalBytesSent": 5, + "***Black": 1, + "magic": 1, + "warning***": 1, + "reliable": 1, + "way": 1, + "track": 1, + "progress": 13, + "KB": 4, + "iPhone": 3, + "Mac": 2, + "very": 2, + "slow.": 1, + "secondsSinceLastActivity": 1, + "timeOutSeconds": 3, + "*1.5": 1, + "won": 3, + "updating": 1, + "checking": 1, + "told": 1, + "us": 2, + "performThrottling": 2, + "auto": 2, + "retry": 3, + "numberOfTimesToRetryOnTimeout": 2, + "resuming": 1, + "update": 6, + "Range": 1, + "take": 1, + "account": 1, + "perhaps": 1, + "uploaded": 2, + "far": 2, + "setTotalBytesSent": 1, + "CFReadStreamCopyProperty": 2, + "kCFStreamPropertyHTTPRequestBytesWrittenCount": 1, + "unsignedLongLongValue": 1, + "middle": 1, + "said": 1, + "might": 4, + "resume": 2, + "used": 16, + "preset": 2, + "content": 5, + "updateUploadProgress": 3, + "updateDownloadProgress": 3, + "NSProgressIndicator": 4, + "MaxValue": 2, + "UIProgressView": 2, + "max": 7, + "setMaxValue": 2, + "amount": 12, + "callerToRetain": 7, + "examined": 1, + "since": 1, + "authenticate": 1, + "contentLength": 6, + "bytesReadSoFar": 3, + "totalBytesRead": 4, + "setUpdatedProgress": 1, + "didReceiveBytes": 2, + "totalSize": 2, + "setLastBytesRead": 1, + "pass": 5, + "pointer": 2, "directly": 1, - "from": 5, - "terminal": 1, - "only": 1, - "i.e.": 1, - "not": 4, - "within": 1, - "modules": 4, - "import.attach": 1, - "can": 3, - "be": 8, - "set": 2, - "or": 1, - "depending": 1, - "on": 2, - "user": 1, - "s": 2, - "preference.": 1, - "attach_operators": 3, - "causes": 1, - "emph": 3, - "operators": 3, - "by": 2, - "default": 1, - "path.": 1, - "Not": 1, - "attaching": 1, - "them": 1, - "therefore": 1, - "drastically": 1, - "limits": 1, - "a": 6, - "usefulness.": 1, - "Modules": 1, - "are": 4, - "searched": 1, - "options": 1, - "priority.": 1, - "The": 5, - "directory": 1, - "always": 1, - "considered": 1, - "first.": 1, - "That": 1, - "local": 3, - "./a.r": 1, - "will": 2, - "loaded.": 1, - "Module": 1, - "names": 2, - "fully": 1, - "qualified": 1, - "refer": 1, - "nested": 1, - "paths.": 1, - "See": 1, - "import": 5, - "executed": 1, - "global": 1, - "effect": 1, - "same.": 1, - "When": 1, - "used": 2, - "globally": 1, - "inside": 1, - "newly": 2, - "outside": 1, - "nor": 1, - "other": 2, - "which": 3, - "might": 1, - "loaded": 4, - "@examples": 1, - "@seealso": 3, - "reload": 3, - "@export": 2, - "substitute": 2, - "stopifnot": 3, - "missing": 1, - "&&": 2, - "module_name": 7, - "getOption": 1, - "else": 4, - "class": 4, - "module_path": 15, - "find_module": 1, - "stop": 1, - "attr": 2, - "message": 1, - "containing_modules": 3, - "module_init_files": 1, - "mapply": 1, - "do_import": 4, - "mod_ns": 5, - "as.character": 3, - "module_parent": 8, - "parent.frame": 2, - "mod_env": 7, - "exhibit_namespace": 3, - "identical": 2, - ".GlobalEnv": 2, - "name": 10, - "environmentName": 2, - "parent.env": 4, - "export_operators": 2, - "invisible": 1, - "is_module_loaded": 1, - "get_loaded_module": 1, - "namespace": 13, - "structure": 3, - "new.env": 1, - "parent": 9, - ".BaseNamespaceEnv": 1, - "paste": 3, - "source": 3, - "chdir": 1, - "envir": 5, - "cache_module": 1, - "exported_functions": 2, - "lsf.str": 2, - "list2env": 2, - "sapply": 2, - "get": 2, - "ops": 2, - "is_predefined": 2, - "%": 2, - "is_op": 2, - "prefix": 3, - "||": 1, - "grepl": 1, - "Filter": 1, - "op_env": 4, - "cache.": 1, - "@note": 1, - "Any": 1, - "references": 1, + "number": 2, + "itself": 1, + "rather": 4, + "setArgument": 4, + "argumentNumber": 1, + "callback": 3, + "NSMethodSignature": 1, + "*cbSignature": 1, + "methodSignatureForSelector": 1, + "*cbInvocation": 1, + "invocationWithMethodSignature": 1, + "cbSignature": 1, + "cbInvocation": 5, + "setSelector": 1, + "setTarget": 1, + "Used": 13, + "until": 2, + "forget": 2, + "know": 3, + "attempt": 3, + "reuse": 3, + "theError": 6, + "removeObjectForKey": 1, + "dateWithTimeIntervalSinceNow": 1, + "persistentConnectionTimeoutSeconds": 4, + "ignore": 1, + "ASIFallbackToCacheIfLoadFailsCachePolicy": 2, + "cachePolicy": 3, + "canUseCachedDataForRequest": 1, + "setError": 2, + "*failedRequest": 1, + "created": 3, + "compatible": 1, + "fail": 1, + "failedRequest": 4, + "parsing": 2, + "response": 17, + "readResponseHeaders": 2, + "message": 2, + "kCFStreamPropertyHTTPResponseHeader": 1, + "Make": 1, + "sure": 1, + "didn": 3, + "tells": 1, + "keepAliveHeader": 2, + "NSScanner": 2, + "*scanner": 1, + "scannerWithString": 1, + "scanner": 5, + "scanString": 2, + "intoString": 3, + "scanInt": 2, + "scanUpToString": 1, + "probably": 4, + "what": 3, + "you": 10, + "hard": 1, + "keep": 2, + "throw": 1, + "away.": 1, + "*userAgentHeader": 1, + "*acceptHeader": 1, + "userAgentHeader": 2, + "acceptHeader": 2, + "setHaveBuiltRequestHeaders": 1, + "Force": 2, + "rebuild": 2, + "cookie": 1, + "incase": 1, + "got": 1, + "some": 1, + "cookies": 5, + "All": 2, "remain": 1, - "unchanged": 1, - "and": 5, - "files": 1, - "would": 1, - "have": 1, - "happened": 1, - "without": 1, - "unload": 2, - "should": 2, - "production": 1, - "code.": 1, - "does": 1, - "currently": 1, - "detach": 1, - "environments.": 1, - "Reload": 1, - "given": 1, - "Remove": 1, - "cache": 1, - "forcing": 1, - "reload.": 1, - "reloaded": 1, - "reference": 1, - "unloaded": 1, - "still": 1, - "work.": 1, - "Reloading": 1, - "primarily": 1, - "useful": 1, - "testing": 1, - "during": 1, - "module_ref": 3, - "rm": 1, - "list": 1, - ".loaded_modules": 1, - "whatnot.": 1, - "assign": 1, - "##polyg": 1, - "vector": 2, - "##numpoints": 1, - "number": 1, - "##output": 1, - "output": 1, - "##": 1, - "Example": 1, - "scripts": 1, - "group": 1, - "pts": 1, - "spsample": 1, - "polyg": 1, - "numpoints": 1, - "docType": 1, - "package": 5, - "scholar": 6, - "alias": 2, - "title": 1, - "reads": 1, - "url": 2, - "http": 2, - "//scholar.google.com": 1, - "Dates": 1, - "citation": 2, - "counts": 1, - "estimated": 1, - "determined": 1, - "automatically": 1, - "computer": 1, - "program.": 1, - "Use": 1, - "at": 2, - "your": 1, - "own": 1, - "risk.": 1, - "description": 1, - "provides": 1, - "functions": 3, + "they": 6, + "redirects": 2, + "applyCookieHeader": 2, + "redirected": 2, + "ones": 3, + "URLWithString": 1, + "valueForKey": 2, + "relativeToURL": 1, + "absoluteURL": 1, + "setNeedsRedirect": 1, + "This": 7, + "means": 1, + "manually": 1, + "redirect": 4, + "those": 1, + "global": 1, + "But": 1, + "safest": 1, + "option": 1, + "different": 4, + "responseCode": 1, + "parseStringEncodingFromHeaders": 2, + "Handle": 1, + "NSStringEncoding": 6, + "charset": 5, + "*mimeType": 1, + "parseMimeType": 2, + "mimeType": 2, + "andResponseEncoding": 2, + "fromContentType": 2, + "setResponseEncoding": 2, + "defaultResponseEncoding": 4, + "saveProxyCredentialsToKeychain": 1, + "newCredentials": 16, + "NSURLCredential": 8, + "*authenticationCredentials": 2, + "credentialWithUser": 2, + "kCFHTTPAuthenticationUsername": 2, + "kCFHTTPAuthenticationPassword": 2, + "persistence": 2, + "NSURLCredentialPersistencePermanent": 2, + "authenticationCredentials": 4, + "saveCredentials": 4, + "forProxy": 2, + "proxyPort": 2, + "realm": 14, + "saveCredentialsToKeychain": 3, + "forHost": 2, + "protocol": 10, + "applyProxyCredentials": 2, + "setProxyAuthenticationRetryCount": 1, + "Apply": 1, + "whatever": 1, + "ok": 1, + "built": 2, + "CFMutableDictionaryRef": 1, + "save": 3, + "keychain": 7, + "useKeychainPersistence": 4, + "*sessionCredentials": 1, + "sessionCredentials": 6, + "storeAuthenticationCredentialsInSessionStore": 2, + "setRequestCredentials": 1, + "findProxyCredentials": 2, + "*newCredentials": 1, + "*user": 1, + "*pass": 1, + "*theRequest": 1, + "try": 3, + "user": 6, + "connect": 1, + "website": 1, + "kCFHTTPAuthenticationSchemeNTLM": 1, + "Ok": 1, + "For": 2, + "authenticating": 2, + "proxies": 3, "extract": 1, - "Google": 2, - "Scholar.": 1, + "NSArray*": 1, + "ntlmComponents": 1, + "componentsSeparatedByString": 1, + "AUTH": 6, + "Request": 6, + "parent": 1, + "properties": 1, + "received": 5, + "ASIAuthenticationDialog": 2, + "had": 1, + "argc": 1, + "*argv": 1, + "window": 1, + "applicationDidFinishLaunching": 1, + "aNotification": 1, + "HEADER_Z_POSITION": 2, + "beginning": 1, + "height": 19, + "TUITableViewRowInfo": 3, + "TUITableViewSection": 16, + "*_tableView": 1, + "*_headerView": 1, + "Not": 2, + "reusable": 1, + "similar": 1, + "UITableView": 1, + "sectionIndex": 23, + "numberOfRows": 13, + "sectionHeight": 9, + "sectionOffset": 8, + "*rowInfo": 1, + "initWithNumberOfRows": 2, + "_tableView": 3, + "rowInfo": 7, + "_setupRowHeights": 2, + "*header": 1, + "self.headerView": 2, + "roundf": 2, + "header.frame.size.height": 1, + "i": 41, + "h": 3, + "_tableView.delegate": 1, + ".offset": 2, + "rowHeight": 2, + "sectionRowOffset": 2, + "tableRowOffset": 2, + "headerHeight": 4, + "self.headerView.frame.size.height": 1, + "headerView": 14, + "_tableView.dataSource": 3, + "respondsToSelector": 8, + "_headerView.autoresizingMask": 1, + "TUIViewAutoresizingFlexibleWidth": 1, + "_headerView.layer.zPosition": 1, + "Private": 1, + "_updateSectionInfo": 2, + "_updateDerepeaterViews": 2, + "pullDownView": 1, + "_tableFlags.animateSelectionChanges": 3, + "_tableFlags.delegateTableViewWillDisplayCellForRowAtIndexPath": 1, + "setDataSource": 1, + "_tableFlags.dataSourceNumberOfSectionsInTableView": 2, + "setAnimateSelectionChanges": 1, + "*s": 3, + "y": 12, + "CGRectMake": 8, + "self.bounds.size.width": 4, + "indexPath.section": 3, + "indexPath.row": 1, + "*section": 8, + "removeFromSuperview": 4, + "removeAllIndexes": 2, + "*sections": 1, + "bounds": 2, + ".size.height": 1, + "self.contentInset.top*2": 1, + "section.sectionOffset": 1, + "sections": 4, + "self.contentInset.bottom": 1, + "_enqueueReusableCell": 2, + "*identifier": 1, + "cell.reuseIdentifier": 1, + "*c": 1, + "lastObject": 1, + "removeLastObject": 1, + "prepareForReuse": 1, + "allValues": 1, + "SortCells": 1, + "*a": 2, + "*b": 2, + "*ctx": 1, + "a.frame.origin.y": 2, + "b.frame.origin.y": 2, + "*v": 2, + "v": 4, + "sortedArrayUsingComparator": 1, + "NSComparator": 1, + "NSComparisonResult": 1, + "INDEX_PATHS_FOR_VISIBLE_ROWS": 4, + "allKeys": 1, + "*i": 4, + "*cell": 7, + "*indexes": 2, + "CGRectIntersectsRect": 5, + "indexes": 4, + "addIndex": 3, + "*indexPaths": 1, + "cellRect": 7, + "indexPaths": 2, + "CGRectContainsPoint": 1, + "cellRect.origin.y": 1, + "origin": 1, + "brief": 1, + "Obtain": 1, + "whose": 2, + "specified": 1, + "exists": 1, + "negative": 1, + "returned": 1, + "param": 1, + "location": 3, + "p": 3, + "0": 2, + "width": 1, + "point.y": 1, + "section.headerView": 9, + "sectionLowerBound": 2, + "fromIndexPath.section": 1, + "sectionUpperBound": 3, + "toIndexPath.section": 1, + "rowLowerBound": 2, + "fromIndexPath.row": 1, + "rowUpperBound": 3, + "toIndexPath.row": 1, + "irow": 3, + "lower": 1, + "bound": 1, + "iteration...": 1, + "rowCount": 3, + "j": 5, + "stop": 4, + "FALSE": 2, + "...then": 1, + "zero": 1, + "subsequent": 2, + "iterations": 1, + "_topVisibleIndexPath": 1, + "*topVisibleIndex": 1, + "sortedArrayUsingSelector": 1, + "compare": 4, + "topVisibleIndex": 2, + "setFrame": 2, + "_tableFlags.forceSaveScrollPosition": 1, + "setContentOffset": 2, + "_tableFlags.didFirstLayout": 1, + "prevent": 2, + "during": 4, + "layout": 3, + "pinned": 5, + "isKindOfClass": 2, + "TUITableViewSectionHeader": 5, + ".pinnedToViewport": 2, + "TRUE": 1, + "pinnedHeader": 1, + "CGRectGetMaxY": 2, + "headerFrame": 4, + "pinnedHeader.frame.origin.y": 1, + "intersecting": 1, + "push": 1, + "upwards.": 1, + "pinnedHeaderFrame": 2, + "pinnedHeader.frame": 2, + "pinnedHeaderFrame.origin.y": 1, + "notify": 3, + "section.headerView.frame": 1, + "setNeedsLayout": 3, + "section.headerView.superview": 1, + "remove": 4, + "offscreen": 2, + "toRemove": 1, + "enumerateIndexesUsingBlock": 1, + "removeIndex": 1, + "_layoutCells": 3, + "visibleCellsNeedRelayout": 5, + "remaining": 1, + "cells": 7, + "needed": 3, + "cell.frame": 1, + "cell.layer.zPosition": 1, + "visibleRect": 3, + "Example": 1, + "*oldVisibleIndexPaths": 1, + "*newVisibleIndexPaths": 1, + "*indexPathsToRemove": 1, + "oldVisibleIndexPaths": 2, + "mutableCopy": 2, + "indexPathsToRemove": 2, + "removeObjectsInArray": 2, + "newVisibleIndexPaths": 2, + "*indexPathsToAdd": 1, + "indexPathsToAdd": 2, + "don": 2, + "newly": 1, + "superview": 1, + "bringSubviewToFront": 1, + "self.contentSize": 3, + "headerViewRect": 3, + "s.height": 3, + "_headerView.frame.size.height": 2, + "visible.size.width": 3, + "_headerView.frame": 1, + "_headerView.hidden": 4, + "show": 2, + "pullDownRect": 4, + "_pullDownView.frame.size.height": 2, + "_pullDownView.hidden": 4, + "_pullDownView.frame": 1, + "self.delegate": 10, + "recycle": 1, + "all": 3, + "regenerated": 3, + "layoutSubviews": 5, + "because": 1, + "dragged": 1, + "clear": 3, + "removeAllObjects": 1, + "laid": 1, + "next": 2, + "_tableFlags.layoutSubviewsReentrancyGuard": 3, + "setAnimationsEnabled": 1, + "CATransaction": 3, + "begin": 1, + "setDisableActions": 1, + "_preLayoutCells": 2, + "munge": 2, + "contentOffset": 2, + "_layoutSectionHeaders": 2, + "_tableFlags.derepeaterEnabled": 1, + "commit": 1, + "has": 6, + "selected": 2, + "being": 4, + "overlapped": 1, + "r.size.height": 4, + "headerFrame.size.height": 1, + "do": 5, + "r.origin.y": 1, + "v.size.height": 2, + "scrollRectToVisible": 2, + "sec": 3, + "_makeRowAtIndexPathFirstResponder": 2, + "accept": 2, + "responder": 2, + "made": 1, + "acceptsFirstResponder": 1, + "self.nsWindow": 3, + "makeFirstResponderIfNotAlreadyInResponderChain": 1, + "futureMakeFirstResponderRequestToken": 1, + "*oldIndexPath": 1, + "oldIndexPath": 2, + "setSelected": 2, + "setNeedsDisplay": 2, + "selection": 3, + "actually": 2, + "changes": 4, + "NSResponder": 1, + "*firstResponder": 1, + "firstResponder": 3, + "indexPathForFirstVisibleRow": 2, + "*firstIndexPath": 1, + "firstIndexPath": 4, + "indexPathForLastVisibleRow": 2, + "*lastIndexPath": 5, + "lastIndexPath": 8, + "performKeyAction": 2, + "repeative": 1, + "press": 1, + "noCurrentSelection": 2, + "isARepeat": 1, + "TUITableViewCalculateNextIndexPathBlock": 3, + "selectValidIndexPath": 3, + "*startForNoSelection": 2, + "calculateNextIndexPath": 4, + "foundValidNextRow": 4, + "*newIndexPath": 1, + "newIndexPath": 6, + "startForNoSelection": 1, + "_delegate": 2, + "self.animateSelectionChanges": 1, + "charactersIgnoringModifiers": 1, + "characterAtIndex": 1, + "NSUpArrowFunctionKey": 1, + "lastIndexPath.section": 2, + "lastIndexPath.row": 2, + "rowsInSection": 7, + "NSDownArrowFunctionKey": 1, + "_tableFlags.maintainContentOffsetAfterReload": 2, + "setMaintainContentOffsetAfterReload": 1, + "newValue": 2, + "indexPathWithIndexes": 1, + "indexAtPosition": 2, + "TTViewController": 1, + "": 1, + "": 1, + "Necessary": 1, + "background": 1, + "task": 1, + "__IPHONE_3_2": 2, + "__MAC_10_5": 2, + "__MAC_10_6": 2, + "_ASIAuthenticationState": 1, + "ASIHTTPAuthenticationNeeded": 1, + "ASIProxyAuthenticationNeeded": 1, + "_ASINetworkErrorType": 1, + "ASIConnectionFailureErrorType": 2, + "ASIInternalErrorWhileApplyingCredentialsType": 1, + "ASICompressionError": 1, + "ASINetworkErrorType": 1, + "ASIHeadersBlock": 3, + "*responseHeaders": 2, + "ASISizeBlock": 5, + "ASIProgressBlock": 5, + "total": 4, + "ASIDataBlock": 3, + "NSOperation": 1, + "": 1, + "operation": 2, + "include": 1, + "GET": 1, + "params": 1, + "query": 1, + "where": 1, + "appropriate": 4, + "*url": 2, + "Will": 7, + "contain": 4, + "original": 2, + "making": 1, + "change": 2, + "*originalURL": 2, + "Temporarily": 1, + "stores": 1, + "to.": 2, + "again": 1, + "notified": 2, + "various": 1, + "ASIHTTPRequestDelegate": 1, + "": 1, + "Another": 1, + "also": 1, + "status": 4, + "updates": 2, + "Generally": 1, + "likely": 1, + "sessionCookies": 2, + "*requestCookies": 2, + "populated": 1, + "useCookiePersistence": 3, + "network": 4, + "present": 3, + "successfully": 4, + "presented": 2, + "duration": 1, + "clearSession": 2, + "allowCompressedResponse": 3, + "inform": 1, + "compressed": 2, + "automatically": 2, + "decompress": 1, + "gzipped": 7, + "responses.": 1, + "Default": 10, + "true.": 1, + "gzipped.": 1, + "false.": 1, + "You": 1, + "enable": 1, + "feature": 1, + "your": 2, + "webserver": 1, + "work.": 1, + "Tested": 1, + "apache": 1, + "only.": 1, + "downloaded": 6, + "*downloadDestinationPath": 2, + "files": 5, + "Once": 2, + "decompressed": 3, + "moved": 2, + "*temporaryFileDownloadPath": 2, + "containing": 1, + "inflated": 6, + "comes": 3, + "*temporaryUncompressedDataDownloadPath": 2, + "fails": 2, + "completes": 6, + "occurs": 1, + "Connection": 1, + "failure": 1, + "occurred": 1, + "inspect": 1, + "Username": 2, + "*username": 2, + "*password": 2, + "User": 1, + "Agent": 1, + "*userAgentString": 2, + "Domain": 2, + "*domain": 2, + "*proxyUsername": 2, + "*proxyPassword": 2, + "*proxyDomain": 2, + "Delegate": 2, + "displaying": 2, + "usually": 2, + "supply": 2, + "handle": 4, + "yourself": 4, + "": 2, + "Whether": 1, + "hassle": 1, + "adding": 1, + "apps": 1, + "shouldPresentProxyAuthenticationDialog": 2, + "*proxyCredentials": 2, + "Basic": 2, + "*proxyAuthenticationScheme": 2, + "Realm": 1, + "eg": 2, + "OK": 1, + "etc": 1, + "Description": 1, + "Size": 3, + "partially": 1, + "POST": 2, + "payload": 1, + "Last": 2, + "incrementing": 2, + "prevents": 1, + "inopportune": 1, + "moment": 1, + "Called": 6, + "starts.": 1, + "didStartSelector": 2, + "receives": 3, + "headers.": 1, + "didReceiveResponseHeadersSelector": 2, + "Location": 1, + "shouldRedirect": 3, + "then": 1, + "restart": 1, + "calling": 1, + "redirectToURL": 2, + "simply": 1, + "willRedirectSelector": 2, + "successfully.": 1, + "didFinishSelector": 2, + "fails.": 1, + "didFailSelector": 2, + "data.": 1, + "implement": 1, + "populate": 1, + "didReceiveDataSelector": 2, + "recording": 1, + "something": 1, + "last": 1, + "happened": 1, + "Number": 1, + "seconds": 2, + "wait": 1, + "timing": 1, + "starts": 2, + "*mainRequest": 2, + "indicator": 4, + "according": 2, + "how": 2, + "much": 2, + "Also": 1, + "see": 1, + "comments": 1, + "ASINetworkQueue.h": 1, + "ensure": 1, + "incremented": 4, + "Prevents": 1, + "largely": 1, + "internally": 3, + "reflect": 1, + "internal": 2, + "PUT": 1, + "operations": 1, + "sizes": 1, + "greater": 1, + "unless": 2, + "been": 1, + "Likely": 1, + "OS": 1, + "X": 1, + "Leopard": 1, + "Text": 1, + "responses": 5, + "Content": 1, + "Type": 1, + "value.": 1, + "Defaults": 2, + "set.": 1, + "Tells": 1, + "delete": 1, + "partial": 2, + "downloads": 1, + "allows": 1, + "existing": 1, + "download.": 1, + "NO.": 1, + "allowResumeForFileDownloads": 2, + "Custom": 1, + "associated": 1, + "*userInfo": 2, + "tag": 2, + "defaults": 2, + "tell": 2, + "loop": 1, + "Incremented": 1, + "every": 3, + "redirects.": 1, + "reaches": 1, + "check": 1, + "secure": 1, + "certificate": 2, + "signed": 1, + "development": 1, + "DO": 1, + "NOT": 1, + "USE": 1, + "IN": 1, + "PRODUCTION": 1, + "*clientCertificates": 2, + "Details": 1, + "could": 1, + "best": 1, + "local": 1, + "*PACurl": 2, + "values": 3, + "above.": 1, + "No": 1, + "yet": 1, + "ASIHTTPRequests": 1, + "avoids": 1, + "extra": 1, + "round": 1, + "trip": 1, + "succeeded": 1, + "which": 1, + "efficient": 1, + "authenticated": 1, + "large": 1, + "bodies": 1, + "slower": 1, + "connections": 3, + "Set": 4, + "affects": 1, + "YES.": 1, + "Credentials": 1, + "never": 1, + "asks": 1, + "hasn": 1, + "doing": 1, + "anything": 1, + "expires": 1, + "yes": 1, + "alive": 1, + "Stores": 1, + "use.": 1, + "expire": 2, + "connection.": 2, + "These": 1, + "determine": 1, + "whether": 1, + "match": 1, + "An": 2, + "determining": 1, + "available": 1, + "reference": 1, + "one.": 1, + "closed": 1, + "either": 1, + "another": 1, + "fires": 1, + "automatic": 1, + "standard": 1, + "follow": 1, + "behaviour": 2, + "most": 1, + "browsers": 1, + "shouldUseRFC2616RedirectBehaviour": 2, + "record": 1, + "ID": 1, + "uniquely": 1, + "identifies": 1, + "primarily": 1, + "debugging": 1, + "synchronous": 1, + "checks": 1, + "setDefaultCache": 2, + "configure": 2, + "ASICacheDelegate.h": 2, + "storage": 2, + "ASICacheStoragePolicy": 2, + "cacheStoragePolicy": 2, + "pulled": 1, + "secondsToCache": 3, + "interval": 1, + "expiring": 1, + "UIBackgroundTaskIdentifier": 1, + "helper": 1, + "inflate": 2, + "*dataDecompressor": 2, + "Controls": 1, + "without": 1, + "raw": 3, + "discarded": 1, + "normal": 1, + "contents": 1, + "into": 1, + "Setting": 1, + "especially": 1, + "useful": 1, + "users": 1, + "conjunction": 1, + "streaming": 1, + "allow": 1, + "behind": 1, + "scenes": 1, + "https": 1, + "webservers": 1, + "asynchronously": 1, + "reading": 1, + "URLs": 2, + "storing": 1, + "startSynchronous.": 1, + "Currently": 1, + "detection": 2, + "synchronously": 1, + "//block": 12, + "execute": 4, + "handling": 4, + "redirections": 1, + "setStartedBlock": 1, + "aStartedBlock": 1, + "setHeadersReceivedBlock": 1, + "aReceivedBlock": 2, + "setCompletionBlock": 1, + "aCompletionBlock": 1, + "setFailedBlock": 1, + "aFailedBlock": 1, + "setBytesReceivedBlock": 1, + "aBytesReceivedBlock": 1, + "setBytesSentBlock": 1, + "aBytesSentBlock": 1, + "setDownloadSizeIncrementedBlock": 1, + "aDownloadSizeIncrementedBlock": 1, + "setUploadSizeIncrementedBlock": 1, + "anUploadSizeIncrementedBlock": 1, + "setDataReceivedBlock": 1, + "setAuthenticationNeededBlock": 1, + "anAuthenticationBlock": 1, + "setProxyAuthenticationNeededBlock": 1, + "aProxyAuthenticationBlock": 1, + "setRequestRedirectedBlock": 1, + "aRedirectBlock": 1, + "HEADRequest": 1, + "upload/download": 1, + "updateProgressIndicators": 1, + "removeUploadProgressSoFar": 1, + "incrementDownloadSizeBy": 1, + "caller": 1, + "talking": 1, + "requestReceivedResponseHeaders": 1, + "newHeaders": 1, + "retryUsingNewConnection": 1, + "stringEncoding": 1, + "contentType": 1, + "stuff": 1, + "applyCredentials": 1, + "findCredentials": 1, + "retryUsingSuppliedCredentials": 1, + "cancelAuthentication": 1, + "attemptToApplyCredentialsAndResume": 1, + "attemptToApplyProxyCredentialsAndResume": 1, + "showProxyAuthenticationDialog": 1, + "showAuthenticationDialog": 1, + "theUsername": 1, + "thePassword": 1, + "handlers": 1, + "handleBytesAvailable": 1, + "handleStreamComplete": 1, + "handleStreamError": 1, + "cleanup": 1, + "removeTemporaryDownloadFile": 1, + "removeTemporaryUncompressedDownloadFile": 1, + "removeTemporaryUploadFile": 1, + "removeTemporaryCompressedUploadFile": 1, + "removeFileAtPath": 1, + "connectionID": 1, + "expirePersistentConnections": 1, + "setDefaultTimeOutSeconds": 1, + "newTimeOutSeconds": 1, + "client": 1, + "setClientCertificateIdentity": 1, + "anIdentity": 1, + "sessionProxyCredentialsStore": 1, + "sessionCredentialsStore": 1, + "storeProxyAuthenticationCredentialsInSessionStore": 1, + "removeProxyAuthenticationCredentialsFromSessionStore": 1, + "findSessionProxyAuthenticationCredentials": 1, + "savedCredentialsForHost": 1, + "savedCredentialsForProxy": 1, + "removeCredentialsForHost": 1, + "removeCredentialsForProxy": 1, + "setSessionCookies": 1, + "newSessionCookies": 1, + "addSessionCookie": 1, + "NSHTTPCookie": 1, + "newCookie": 1, + "agent": 2, + "defaultUserAgentString": 1, + "setDefaultUserAgentString": 1, + "mime": 1, + "mimeTypeForFileAtPath": 1, + "measurement": 1, + "throttling": 1, + "setMaxBandwidthPerSecond": 1, + "incrementBandwidthUsedInLastSecond": 1, + "setShouldThrottleBandwidthForWWAN": 1, + "throttle": 1, + "throttleBandwidthForWWANUsingLimit": 1, + "limit": 1, + "reachability": 1, + "isNetworkReachableViaWWAN": 1, + "maxUploadReadLength": 1, + "activity": 1, + "isNetworkInUse": 1, + "setShouldUpdateNetworkActivityIndicator": 1, + "shouldUpdate": 1, + "showNetworkActivityIndicator": 1, + "hideNetworkActivityIndicator": 1, + "miscellany": 1, + "base64forData": 1, + "theData": 1, + "expiryDateForRequest": 1, + "maxAge": 2, + "dateFromRFC1123String": 1, + "threading": 1, + "*proxyHost": 1, + "*proxyType": 1, + "*requestHeaders": 1, + "*requestCredentials": 1, + "*rawResponseData": 1, + "*requestMethod": 1, + "*postBody": 1, + "*postBodyFilePath": 1, + "didCreateTemporaryPostDataFile": 1, + "*authenticationScheme": 1, + "shouldPresentAuthenticationDialog": 1, + "haveBuiltRequestHeaders": 1, + "": 1, + "": 1, + "": 1, + "__OBJC__": 4, + "": 1, + "": 1, + "__cplusplus": 2, + "NSINTEGER_DEFINED": 3, + "NS_BUILD_32_LIKE_64": 3, + "_JSONKIT_H_": 3, + "__APPLE_CC__": 2, + "JK_DEPRECATED_ATTRIBUTE": 6, + "deprecated": 1, + "JSONKIT_VERSION_MAJOR": 1, + "JSONKIT_VERSION_MINOR": 1, + "JKParseOptionNone": 1, + "JKParseOptionStrict": 1, + "JKParseOptionComments": 2, + "JKParseOptionUnicodeNewlines": 2, + "JKParseOptionLooseUnicode": 2, + "JKParseOptionPermitTextAfterValidJSON": 2, + "JKParseOptionValidFlags": 1, + "JKSerializeOptionNone": 3, + "JKSerializeOptionPretty": 2, + "JKSerializeOptionEscapeUnicode": 2, + "JKSerializeOptionEscapeForwardSlashes": 2, + "JKSerializeOptionValidFlags": 1, + "Opaque": 1, + "private": 1, + "decoder": 1, + "decoderWithParseOptions": 1, + "initWithParseOptions": 1, + "clearCache": 1, + "parseUTF8String": 2, + "Deprecated": 4, + "v1.4.": 4, + "objectWithUTF8String": 4, + "instead.": 4, + "parseJSONData": 2, + "jsonData": 6, + "mutableObjectWithUTF8String": 2, + "mutableObjectWithData": 2, + "////////////": 4, + "Deserializing": 1, + "methods": 2, + "JSONKitDeserializing": 2, + "objectFromJSONString": 1, + "objectFromJSONStringWithParseOptions": 2, + "mutableObjectFromJSONString": 1, + "mutableObjectFromJSONStringWithParseOptions": 2, + "objectFromJSONData": 1, + "objectFromJSONDataWithParseOptions": 2, + "mutableObjectFromJSONData": 1, + "mutableObjectFromJSONDataWithParseOptions": 2, + "Serializing": 1, + "JSONKitSerializing": 3, + "JSONData": 3, + "Invokes": 2, + "JSONDataWithOptions": 8, + "includeQuotes": 6, + "serializeOptions": 14, + "JSONString": 3, + "JSONStringWithOptions": 8, + "serializeUnsupportedClassesUsingDelegate": 4, + "__BLOCKS__": 1, + "JSONKitSerializingBlockAdditions": 2, + "serializeUnsupportedClassesUsingBlock": 4 + }, + "Stata": { + "local": 6, + "MAXDIM": 1, + "*": 25, + "Setup": 1, + "sysuse": 1, + "auto": 1, + "Fit": 2, + "a": 30, + "linear": 2, + "regression": 2, + "regress": 5, + "mpg": 1, + "weight": 4, + "foreign": 2, + "better": 1, + "from": 6, + "physics": 1, + "standpoint": 1, + "gen": 1, + "gp100m": 2, + "/mpg": 1, + "Obtain": 1, + "beta": 2, + "coefficients": 1, + "without": 2, + "refitting": 1, + "model": 1, + "Suppress": 1, + "intercept": 1, + "term": 1, + "length": 3, + "noconstant": 1, + "Model": 1, + "already": 2, + "has": 6, + "constant": 2, + "bn.foreign": 1, + "hascons": 1, + "numeric": 4, + "matrix": 3, + "tanh": 1, + "(": 60, + "u": 3, + ")": 61, + "{": 441, + "eu": 4, + "emu": 4, + "exp": 2, + "-": 42, + "return": 1, + "/": 1, + "+": 2, + "}": 440, + "smcl": 1, + "version": 2, + "Matthew": 2, + "White": 2, + "jan2014": 1, + "...": 30, + "title": 7, + "Title": 1, + "phang": 4, + "cmd": 111, + "odkmeta": 17, + "hline": 1, + "Create": 4, + "do": 22, + "file": 18, + "to": 23, + "import": 9, + "ODK": 6, + "data": 4, + "marker": 10, + "syntax": 1, + "Syntax": 1, + "p": 2, + "using": 10, + "it": 61, + "help": 27, + "filename": 3, + "opt": 25, + "csv": 9, + "csvfile": 3, + "Using": 7, + "histogram": 2, + "as": 29, + "template.": 8, + "notwithstanding": 1, + "is": 31, + "rarely": 1, + "preceded": 3, + "by": 7, + "an": 6, + "underscore.": 1, + "cmdab": 5, + "s": 10, + "urvey": 2, + "surveyfile": 5, + "odkmeta##surveyopts": 2, + "surveyopts": 4, + "cho": 2, + "ices": 2, + "choicesfile": 4, + "odkmeta##choicesopts": 2, + "choicesopts": 5, + "[": 6, + "options": 1, + "]": 6, + "odbc": 2, + "the": 67, + "position": 1, + "of": 36, + "last": 1, + "character": 1, + "in": 24, + "first": 2, + "column": 18, + "synoptset": 5, + "tabbed": 4, + "synopthdr": 4, + "synoptline": 8, + "syntab": 6, + "Main": 3, + "heckman": 2, + "p2coldent": 3, + "name": 20, + ".csv": 2, + "that": 21, + "contains": 3, + "p_end": 47, + "metadata": 5, + "survey": 14, + "worksheet": 5, + "choices": 10, + "Fields": 2, + "synopt": 16, + "drop": 1, + "attrib": 2, + "headers": 8, + "not": 8, + "field": 25, + "attributes": 10, + "with": 10, + "keep": 1, + "only": 3, + "rel": 1, + "ax": 1, + "ignore": 1, + "fields": 7, + "exist": 1, + "Lists": 1, + "ca": 1, + "oth": 1, + "er": 1, + "odkmeta##other": 1, + "other": 14, + "Stata": 5, + "value": 14, + "values": 3, + "select": 6, + "or_other": 5, + ";": 15, + "default": 8, + "max": 2, + "one": 5, + "line": 4, + "write": 1, + "each": 7, + "list": 13, + "on": 7, + "single": 1, + "Options": 1, + "replace": 7, + "overwrite": 1, + "existing": 1, + "p2colreset": 4, + "and": 18, + "are": 13, + "required.": 1, + "Change": 1, + "t": 2, + "ype": 1, + "header": 15, + "type": 7, + "attribute": 10, + "la": 2, + "bel": 2, + "label": 9, + "d": 1, + "isabled": 1, + "disabled": 4, + "li": 1, + "stname": 1, + "list_name": 6, + "maximum": 3, + "plus": 2, + "min": 2, + "minimum": 2, + "minus": 1, + "#": 6, + "for": 13, + "all": 3, + "labels": 8, + "description": 1, + "Description": 1, + "pstd": 20, + "creates": 1, + "worksheets": 1, + "XLSForm.": 1, + "The": 9, + "saved": 1, + "completes": 2, + "following": 1, + "tasks": 3, + "order": 1, + "anova": 1, + "phang2": 23, + "o": 12, + "Import": 2, + "lists": 2, + "Add": 1, + "char": 4, + "characteristics": 4, + "Split": 1, + "select_multiple": 6, + "variables": 8, + "Drop": 1, + "note": 1, + "format": 1, + "Format": 1, + "date": 1, + "time": 1, + "datetime": 1, + "Attach": 2, + "variable": 14, + "notes": 1, + "merge": 3, + "Merge": 1, + "repeat": 6, + "groups": 4, + "After": 1, + "have": 2, + "been": 1, + "split": 4, + "can": 1, + "be": 12, + "removed": 1, + "affecting": 1, + "tasks.": 1, + "User": 1, + "written": 2, + "supplements": 1, + "may": 2, + "make": 1, + "use": 3, + "any": 3, + "which": 6, + "imported": 4, + "characteristics.": 1, + "remarks": 1, + "Remarks": 1, + "uses": 3, + "helpb": 7, + "insheet": 4, + "data.": 1, + "long": 7, + "strings": 1, + "digits": 1, + "such": 2, + "simserial": 1, + "will": 9, + "even": 1, + "if": 10, + "they": 2, + "more": 1, + "than": 3, + "digits.": 1, + "As": 1, + "result": 6, + "lose": 1, + "precision": 1, + ".": 22, + "makes": 1, + "limited": 1, + "mata": 1, + "Mata": 1, + "manage": 1, + "contain": 1, + "difficult": 1, + "characters.": 2, + "starts": 1, + "definitions": 1, + "several": 1, + "macros": 1, + "these": 4, + "constants": 1, + "uses.": 1, + "For": 4, + "instance": 1, + "macro": 1, + "datemask": 1, + "varname": 1, + "constraints": 1, + "names": 16, + "Further": 1, + "files": 1, + "often": 1, + "much": 1, + "longer": 1, + "limit": 1, + "These": 2, + "differences": 1, + "convention": 1, + "lead": 1, + "three": 1, + "kinds": 1, + "problematic": 1, + "Long": 3, + "involve": 1, + "invalid": 1, + "combination": 1, + "characters": 3, + "example": 2, + "begins": 1, + "colon": 1, + "followed": 1, + "number.": 1, + "convert": 2, + "instead": 1, + "naming": 1, + "v": 6, + "concatenated": 1, + "positive": 1, + "integer": 1, + "v1": 1, + "unique": 1, + "but": 4, + "when": 1, + "converted": 3, + "truncated": 1, + "become": 3, + "duplicates.": 1, + "again": 1, + "names.": 6, + "form": 1, + "duplicates": 1, + "cannot": 2, + "chooses": 1, + "different": 1, + "Because": 1, + "problem": 2, + "recommended": 1, + "you": 1, + "If": 2, + "its": 3, + "characteristic": 2, + "odkmeta##Odk_bad_name": 1, + "Odk_bad_name": 3, + "otherwise": 1, + "Most": 1, + "depend": 1, "There": 1, +<<<<<<< HEAD "also": 1, "convenience": 1, "comparing": 1, @@ -58061,124 +95398,527 @@ "installed": 1, "you": 3, "can": 2, - "create": 1, - "using": 1, - "options": 1, - "names...": 1, - "For": 1, - "an": 1, - "up": 1, - "to": 4, - "date": 1, - "option": 1, - "summary": 1, - "type": 2, - "help": 1, - "A": 1, - "typical": 1, - "use": 1, - "might": 1, - "be": 3, - "generate": 1, - "a": 5, - "package": 1, - "of": 2, - "source": 2, - "(": 3, - "such": 1, - "as": 1, - "itself": 1, - ")": 3, - ".": 2, - "This": 2, - "generates": 1, - "all": 1, - "C": 1, - "files": 2, - "in": 4, - "below": 1, - "current": 1, - "directory.": 1, - "These": 1, - "will": 1, - "stored": 1, - "tree": 1, - "starting": 1, - "subdirectory": 1, - "doc": 1, - "You": 2, - "make": 2, - "this": 1, - "slightly": 1, - "more": 1, - "useful": 1, - "your": 1, - "readers": 1, - "by": 1, - "having": 1, - "index": 1, - "page": 1, - "contain": 1, - "primary": 1, - "file.": 1, - "In": 1, - "our": 1, - "case": 1, - "we": 1, - "could": 1, - "#": 1, - "rdoc/rdoc": 1, - "s": 1, - "OK": 1, - "file": 1, - "bug": 1, - "report": 1, - "anything": 1, - "t": 1, - "figure": 1, - "out": 1, - "how": 1, - "produce": 1, - "output": 1, - "like": 1, - "that": 1, - "is": 4, - "probably": 1, - "bug.": 1, - "License": 1, - "Copyright": 1, - "c": 2, - "Dave": 1, - "Thomas": 1, - "The": 1, - "Pragmatic": 1, - "Programmers.": 1, - "Portions": 2, - "Eric": 1, - "Hodel.": 1, - "copyright": 1, +======= + "two": 2, + "exceptions": 1, + "variables.": 1, + "error": 4, + "or": 7, + "splitting": 2, + "would": 1, + "duplicate": 4, + "reshape": 2, + "groups.": 1, + "there": 2, + "merging": 2, + "code": 1, + "datasets.": 1, + "Where": 1, + "renaming": 2, + "left": 1, + "user.": 1, + "section": 2, + "designated": 2, + "area": 2, + "renaming.": 3, + "In": 3, + "reshaping": 1, + "group": 4, + "own": 2, + "Many": 1, + "forms": 2, + "require": 1, "others": 1, - "see": 1, - "individual": 1, - "LEGAL.rdoc": 1, - "details.": 1, - "free": 1, - "software": 2, - "may": 1, - "redistributed": 1, - "under": 1, - "terms": 1, + "few": 1, + "need": 1, + "renamed": 1, + "should": 1, + "go": 1, + "areas.": 1, + "However": 1, + "some": 1, + "usually": 1, + "because": 1, + "many": 2, + "nested": 2, + "above": 1, + "this": 1, + "case": 1, + "work": 1, + "best": 1, + "Odk_group": 1, + "Odk_name": 1, + "Odk_is_other": 2, + "Odk_geopoint": 2, + "r": 2, + "varlist": 2, + "Odk_list_name": 2, + "foreach": 1, + "var": 5, + "*search": 1, + "n/a": 1, + "know": 1, + "don": 1, + "worksheet.": 1, + "requires": 1, + "comma": 1, + "separated": 2, + "text": 1, + "file.": 1, + "Strings": 1, + "embedded": 2, + "commas": 1, + "double": 3, + "quotes": 3, + "end": 4, + "must": 2, + "enclosed": 1, + "another": 1, + "quote.": 1, + "pmore": 5, + "Each": 1, + "header.": 1, + "Use": 1, + "suboptions": 1, + "specify": 1, + "alternative": 1, + "respectively.": 1, + "All": 1, + "used.": 1, + "standardized": 1, + "follows": 1, + "replaced": 9, + "select_one": 3, + "begin_group": 1, + "begin": 2, + "end_group": 1, + "begin_repeat": 1, + "end_repeat": 1, + "addition": 1, "specified": 1, - "LICENSE.rdoc.": 1, - "Warranty": 1, - "provided": 1, - "without": 2, - "any": 1, - "express": 1, - "or": 1, - "implied": 2, - "warranties": 2, + "attaches": 1, + "pmore2": 3, + "formed": 1, + "concatenating": 1, + "elements": 1, + "Odk_repeat": 1, + "nested.": 1, + "geopoint": 2, + "component": 1, + "Latitude": 1, + "Longitude": 1, + "Altitude": 1, + "Accuracy": 1, + "blank.": 1, + "imports": 4, + "XLSForm": 1, + "list.": 1, + "one.": 1, + "specifies": 4, + "vary": 1, + "definition": 1, + "rather": 1, + "multiple": 1, + "delimit": 1, + "#delimit": 1, + "dlgtab": 1, + "Other": 1, + "exists.": 1, + "examples": 1, + "Examples": 1, + "named": 1, + "import.do": 7, "including": 1, + "survey.csv": 1, + "choices.csv": 1, + "txt": 6, + "Same": 3, + "previous": 3, + "command": 3, + "appears": 2, + "fieldname": 3, + "survey_fieldname.csv": 1, + "valuename": 2, + "choices_valuename.csv": 1, + "except": 1, + "hint": 2, + "dropattrib": 2, + "does": 1, + "_all": 1, + "acknowledgements": 1, + "Acknowledgements": 1, + "Lindsey": 1, + "Shaughnessy": 1, + "Innovations": 2, + "Poverty": 2, + "Action": 2, + "assisted": 1, + "almost": 1, + "aspects": 1, + "development.": 1, + "She": 1, + "collaborated": 1, + "structure": 1, + "program": 2, + "was": 1, + "very": 1, + "helpful": 1, + "tester": 1, + "contributed": 1, + "information": 1, + "about": 1, + "ODK.": 1, + "author": 1, + "Author": 1, + "mwhite@poverty": 1, + "action.org": 1, + "hello": 1, + "vers": 1, + "display": 1, + "mar2014": 1, + "Hello": 1, + "world": 1, + "inname": 1, + "outname": 1 + }, + "Shen": { + "*": 47, + "graph.shen": 1, + "-": 747, + "a": 30, + "library": 3, + "for": 12, + "graph": 52, + "definition": 1, + "and": 16, + "manipulation": 1, + "Copyright": 2, + "(": 267, + "C": 6, + ")": 250, + "Eric": 2, + "Schulte": 2, + "***": 5, + "License": 2, + "Redistribution": 2, + "use": 2, + "in": 13, + "source": 4, + "binary": 4, + "forms": 2, + "with": 8, + "or": 2, + "without": 2, + "modification": 2, + "are": 7, + "permitted": 2, + "provided": 4, + "that": 3, + "the": 29, + "following": 6, + "conditions": 6, + "met": 2, + "Redistributions": 4, + "of": 20, + "code": 2, + "must": 4, + "retain": 2, + "above": 4, + "copyright": 4, + "notice": 4, + "this": 4, + "list": 32, + "disclaimer.": 2, + "form": 2, + "reproduce": 2, + "disclaimer": 2, + "documentation": 2, + "and/or": 2, + "other": 2, + "materials": 2, + "distribution.": 2, + "THIS": 4, + "SOFTWARE": 4, + "IS": 2, + "PROVIDED": 2, + "BY": 2, + "THE": 10, + "COPYRIGHT": 4, + "HOLDERS": 2, + "AND": 8, + "CONTRIBUTORS": 4, + "ANY": 8, + "EXPRESS": 2, + "OR": 16, + "IMPLIED": 4, + "WARRANTIES": 4, + "INCLUDING": 6, + "BUT": 4, + "NOT": 4, + "LIMITED": 4, + "TO": 4, + "OF": 16, + "MERCHANTABILITY": 2, + "FITNESS": 2, + "FOR": 4, + "A": 32, + "PARTICULAR": 2, + "PURPOSE": 2, + "ARE": 2, + "DISCLAIMED.": 2, + "IN": 6, + "NO": 2, + "EVENT": 2, + "SHALL": 2, + "HOLDER": 2, + "BE": 2, + "LIABLE": 2, + "DIRECT": 2, + "INDIRECT": 2, + "INCIDENTAL": 2, + "SPECIAL": 2, + "EXEMPLARY": 2, + "CONSEQUENTIAL": 2, + "DAMAGES": 2, + "PROCUREMENT": 2, + "SUBSTITUTE": 2, + "GOODS": 2, + "SERVICES": 2, + ";": 12, + "LOSS": 2, + "USE": 4, + "DATA": 2, + "PROFITS": 2, + "BUSINESS": 2, + "INTERRUPTION": 2, + "HOWEVER": 2, + "CAUSED": 2, + "ON": 2, + "THEORY": 2, + "LIABILITY": 4, + "WHETHER": 2, + "CONTRACT": 2, + "STRICT": 2, + "TORT": 2, + "NEGLIGENCE": 2, + "OTHERWISE": 2, + "ARISING": 2, + "WAY": 2, + "OUT": 2, + "EVEN": 2, + "IF": 2, + "ADVISED": 2, + "POSSIBILITY": 2, + "SUCH": 2, + "DAMAGE.": 2, + "Commentary": 2, + "Graphs": 1, + "represented": 1, + "as": 2, + "two": 1, + "dictionaries": 1, + "one": 2, + "vertices": 17, + "edges.": 1, + "It": 1, + "is": 5, + "important": 1, + "to": 16, + "note": 1, + "dictionary": 3, + "implementation": 1, + "used": 2, + "able": 1, + "accept": 1, + "arbitrary": 1, + "data": 17, + "structures": 1, + "keys.": 1, + "This": 1, + "structure": 2, + "technically": 1, + "encodes": 1, + "hypergraphs": 1, + "generalization": 1, + "graphs": 1, + "which": 1, + "each": 1, + "edge": 32, + "may": 1, + "contain": 2, + "any": 1, + "number": 12, + ".": 1, + "Examples": 1, + "regular": 1, + "G": 25, + "hypergraph": 1, + "H": 3, + "corresponding": 1, + "given": 4, + "below.": 1, + "": 3, + "Vertices": 11, + "Edges": 9, + "+": 33, + "Graph": 65, + "hash": 8, + "|": 103, + "key": 9, + "value": 17, + "b": 13, + "c": 11, + "g": 19, + "[": 93, + "]": 91, + "d": 12, + "e": 14, + "f": 10, + "Hypergraph": 1, + "h": 3, + "i": 3, + "j": 2, + "associated": 1, + "edge/vertex": 1, + "@p": 17, + "V": 48, + "#": 4, + "E": 20, + "edges": 17, + "M": 4, + "vertex": 29, + "associations": 1, + "size": 2, + "all": 3, + "stored": 1, + "dict": 39, + "sizeof": 4, + "int": 1, + "indices": 1, + "into": 1, + "&": 1, + "Edge": 11, + "dicts": 3, + "entry": 2, + "storage": 2, + "Vertex": 3, + "Code": 1, + "require": 2, + "sequence": 2, + "datatype": 1, + "dictoinary": 1, + "vector": 4, + "symbol": 1, + "package": 2, + "add": 25, + "has": 5, + "neighbors": 8, + "connected": 21, + "components": 8, + "partition": 7, + "bipartite": 3, + "included": 2, + "from": 3, + "take": 2, + "drop": 2, + "while": 2, + "range": 1, + "flatten": 1, + "filter": 2, + "complement": 1, + "seperate": 1, + "zip": 1, + "indexed": 1, + "reduce": 3, + "mapcon": 3, + "unique": 3, + "frequencies": 1, + "shuffle": 1, + "pick": 1, + "remove": 2, + "first": 2, + "interpose": 1, + "subset": 3, + "cartesian": 1, + "product": 1, + "<-dict>": 5, + "contents": 1, + "keys": 3, + "vals": 1, + "make": 10, + "define": 34, + "X": 4, + "<-address>": 5, + "0": 1, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method + "create": 1, + "specified": 1, + "sizes": 2, + "}": 22, + "Vertsize": 2, + "Edgesize": 2, + "let": 9, + "absvector": 1, + "do": 8, + "address": 5, + "defmacro": 3, + "macro": 3, + "return": 4, + "taking": 1, + "optional": 1, + "N": 7, + "vert": 12, + "1": 1, + "2": 3, + "{": 15, + "get": 3, + "Value": 3, + "if": 8, + "tuple": 3, + "fst": 3, + "error": 7, + "string": 3, + "resolve": 6, + "Vector": 2, + "Index": 2, + "Place": 6, + "nth": 1, + "<-vector>": 2, + "Vert": 5, + "Val": 5, + "trap": 4, + "snd": 2, + "map": 5, + "lambda": 1, + "w": 4, + "B": 2, + "Data": 2, + "w/o": 5, + "D": 4, + "update": 5, + "an": 3, + "s": 1, + "Vs": 4, + "Store": 6, + "<": 4, + "limit": 2, + "VertLst": 2, + "/.": 4, + "Contents": 5, + "adjoin": 2, + "length": 5, + "EdgeID": 3, + "EdgeLst": 2, + "p": 1, + "boolean": 4, + "Return": 1, + "Already": 5, + "New": 5, + "Reachable": 2, + "difference": 3, + "append": 1, + "including": 1, +<<<<<<< HEAD "limitation": 1, "merchantability": 1, "fitness": 1, @@ -58494,353 +96234,356 @@ "spec": 3, "datatype": 2, "test": 1, +======= + "itself": 1, + "fully": 1, + "Acc": 2, + "true": 1, + "_": 1, + "VS": 4, + "Component": 6, + "ES": 3, + "Con": 8, + "verts": 4, + "cons": 1, + "place": 3, + "partitions": 1, + "element": 2, + "simple": 3, + "CS": 3, + "Neighbors": 3, + "empty": 1, + "intersection": 1, + "check": 1, + "tests": 1, + "set": 1, + "chris": 6, + "patton": 2, + "eric": 1, + "nobody": 2, + "fail": 1, + "when": 1, + "wrapper": 1, + "function": 1, + "load": 1, + "JSON": 1, + "Lexer": 1, + "Read": 1, + "stream": 1, + "characters": 4, + "Whitespace": 4, + "not": 1, + "strings": 2, + "should": 2, + "be": 2, + "discarded.": 1, + "preserved": 1, + "Strings": 1, + "can": 1, + "escaped": 1, + "double": 1, + "quotes.": 1, + "e.g.": 2, + "whitespacep": 2, + "ASCII": 2, + "Space.": 1, + "All": 1, + "others": 1, + "whitespace": 7, + "table.": 1, + "Char": 4, + "member": 1, + "replace": 3, + "@s": 4, + "Suffix": 4, + "where": 2, + "Prefix": 2, + "fetch": 1, + "until": 1, + "unescaped": 1, + "doublequote": 1, + "c#34": 5, + "WhitespaceChar": 2, + "Chars": 4, + "strip": 2, + "chars": 2, + "tokenise": 1, + "JSONString": 2, + "CharList": 2, + "explode": 1, + "html.shen": 1, + "html": 2, + "generation": 1, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "functions": 1, - "(": 30, - "e.g.": 1, - "time": 2, - ")": 33, - "value": 1, - "any": 1, - "type": 1, + "shen": 1, "The": 1, - "native": 5, - "function": 3, - "must": 1, - "be": 1, - "defined": 1, - "first.": 1, - "This": 1, - "special": 1, - "boot": 1, - "created": 1, - "manually": 1, - "within": 1, - "C": 1, - "code.": 1, - "Creates": 2, - "internal": 2, - "usage": 2, - "only": 2, - ".": 4, - "no": 3, - "check": 2, - "required": 2, - "we": 2, - "know": 2, - "it": 2, - "correct": 2, - "action": 2, - "Rebol": 4, - "re": 20, - "func": 5, - "s": 5, - "/i": 1, - "rejoin": 1, - "compose": 1, - "either": 1, - "i": 1, - "little": 1, - "helper": 1, "standard": 1, - "grammar": 1, - "regex": 2, - "date": 6, - "naive": 1, - "string": 1, - "|": 22, - "S": 3, - "*": 7, - "<(?:[^^\\>": 1, - "d": 3, + "lisp": 1, + "conversion": 1, + "tool": 1, + "suite.": 1, + "Follows": 1, + "some": 1, + "convertions": 1, + "Clojure": 1, + "tasks": 1, + "stuff": 1, + "todo1": 1, + "today": 1, + "attributes": 1, + "AS": 1 + }, + "Mask": { + "header": 1, + "{": 10, + "img": 1, + ".logo": 1, + "src": 1, + "alt": 1, + "logo": 1, + ";": 3, + "h4": 1, + "if": 1, + "(": 3, + "currentUser": 1, + ")": 3, + ".account": 1, + "a": 1, + "href": 1, + "}": 10, + ".view": 1, + "ul": 1, + "for": 1, + "user": 1, + "index": 1, + "of": 1, + "users": 1, + "li.user": 1, + "data": 1, + "-": 3, + "id": 1, + ".name": 1, + ".count": 1, + ".date": 1, + "countdownComponent": 1, + "input": 1, + "type": 1, + "text": 1, + "dualbind": 1, + "value": 1, + "button": 1, + "x": 2, + "signal": 1, + "h5": 1, + "animation": 1, + "slot": 1, + "@model": 1, + "@next": 1, + "footer": 1, + "bazCompo": 1 + }, + "SAS": { + "libname": 1, + "source": 1, + "data": 6, + "work.working_copy": 5, + ";": 22, + "set": 3, + "source.original_file.sas7bdat": 1, + "run": 6, + "if": 2, + "Purge": 1, + "then": 2, + "delete": 1, + "ImportantVariable": 1, + ".": 1, + "MissingFlag": 1, + "proc": 2, + "surveyselect": 1, + "work.data": 1, + "out": 2, + "work.boot": 2, + "method": 1, + "urs": 1, + "reps": 1, + "seed": 2, + "sampsize": 1, + "outhits": 1, + "samplingunit": 1, + "Site": 1, + "PROC": 1, + "MI": 1, + "work.bootmi": 2, + "nimpute": 1, + "round": 1, + "By": 2, + "Replicate": 2, + "VAR": 1, + "Variable1": 2, + "Variable2": 2, + "logistic": 1, + "descending": 1, + "_Imputation_": 1, + "model": 1, + "Outcome": 1, + "/": 1, + "risklimits": 1 + }, + "Xtend": { + "package": 2, + "example6": 1, + "import": 7, + "org.junit.Test": 2, + "static": 4, + "org.junit.Assert.*": 2, + "java.io.FileReader": 1, + "java.util.Set": 1, + "extension": 2, + "com.google.common.io.CharStreams.*": 1, + "class": 4, + "Movies": 1, + "{": 14, + "@Test": 7, + "def": 7, + "void": 7, + "numberOfActionMovies": 1, + "(": 42, + ")": 42, + "assertEquals": 14, + "movies.filter": 2, + "[": 9, + "categories.contains": 1, + "]": 9, + ".size": 2, + "}": 13, + "yearOfBestMovieFrom80ies": 1, + ".contains": 1, + "year": 2, + ".sortBy": 1, + "rating": 3, + ".last.year": 1, + "sumOfVotesOfTop2": 1, + "val": 9, + "long": 2, + "movies": 3, + "movies.sortBy": 1, + "-": 5, + ".take": 1, + ".map": 1, + "numberOfVotes": 2, + ".reduce": 1, + "a": 2, + "b": 2, + "|": 2, "+": 6, - "/": 5, - "@": 1, - "%": 2, - "A": 3, - "F": 1, - "url": 1, - "PR_LITERAL": 10, - "string_url": 1, - "email": 1, - "string_email": 1, - "binary": 1, - "binary_base_two": 1, - "binary_base_sixty_four": 1, - "binary_base_sixteen": 1, - "re/i": 2, - "issue": 1, - "string_issue": 1, - "values": 1, - "value_date": 1, - "value_time": 1, - "tuple": 1, - "value_tuple": 1, - "pair": 1, - "value_pair": 1, - "number": 2, - "PR": 1, - "Za": 2, - "z0": 2, - "<[=>": 1, - "rebol": 1, - "red": 1, - "/system": 1, - "world": 1, - "topaz": 1, + "_229": 1, + "new": 2, + "FileReader": 1, + ".readLines.map": 1, + "line": 1, + "segments": 1, + "line.split": 1, + ".iterator": 2, + "return": 1, + "Movie": 2, + "segments.next": 4, + "Integer": 1, + "parseInt": 1, + "Double": 1, + "parseDouble": 1, + "Long": 1, + "parseLong": 1, + "segments.toSet": 1, + "@Data": 1, + "String": 2, + "title": 1, + "int": 1, + "double": 2, + "Set": 1, + "": 1, + "categories": 1, + "example2": 1, + "BasicExpressions": 2, + "literals": 5, + "//": 11, + "string": 1, + "work": 1, + "with": 2, + "single": 1, + "or": 1, + "quotes": 1, + "number": 1, + "big": 1, + "decimals": 1, + "in": 2, + "this": 1, + "case": 1, + "*": 1, + "bd": 3, + "boolean": 1, "true": 1, "false": 1, - "yes": 1, - "on": 1, - "off": 1, - "none": 1, - "#": 1, - "hello": 8, - "print": 4, - "author": 1 - }, - "Red": { - "Red": 3, - "[": 111, - "Title": 2, - "Author": 1, - "]": 114, - "File": 1, - "%": 2, - "console.red": 1, - "Tabs": 1, - "Rights": 1, - "License": 2, - "{": 11, - "Distributed": 1, - "under": 1, - "the": 3, - "Boost": 1, - "Software": 1, - "Version": 1, - "See": 1, - "https": 1, - "//github.com/dockimbel/Red/blob/master/BSL": 1, - "-": 74, - "License.txt": 1, - "}": 11, - "Purpose": 2, - "Language": 2, - "http": 2, - "//www.red": 2, - "lang.org/": 2, - "#system": 1, - "global": 1, - "#either": 3, - "OS": 3, - "MacOSX": 2, - "History": 1, - "library": 1, - "cdecl": 3, - "add": 2, - "history": 2, - ";": 31, - "Add": 1, - "line": 9, - "to": 2, - "history.": 1, - "c": 7, - "string": 10, - "rl": 4, - "insert": 3, - "wrapper": 2, - "func": 1, - "count": 3, - "integer": 16, - "key": 3, - "return": 10, - "Windows": 2, - "system/platform": 1, - "ret": 5, - "AttachConsole": 1, - "if": 2, - "zero": 3, - "print": 5, - "halt": 2, - "SetConsoleTitle": 1, - "as": 4, - "string/rs": 1, - "head": 1, - "str": 4, - "bind": 1, - "tab": 3, - "input": 2, - "routine": 1, - "prompt": 3, - "/local": 1, - "len": 1, - "buffer": 4, - "string/load": 1, - "+": 1, - "length": 1, - "free": 1, - "byte": 3, - "ptr": 14, - "SET_RETURN": 1, - "(": 6, - ")": 4, - "delimiters": 1, - "function": 6, - "block": 3, - "list": 1, - "copy": 2, - "none": 1, - "foreach": 1, - "case": 2, - "escaped": 2, - "no": 2, - "in": 2, - "comment": 2, - "switch": 3, - "#": 8, - "mono": 3, - "mode": 3, - "cnt/1": 1, - "red": 1, - "eval": 1, - "code": 3, - "load/all": 1, - "unless": 1, - "tail": 1, - "set/any": 1, - "not": 1, - "script/2": 1, - "do": 2, - "skip": 1, - "script": 1, - "quit": 2, - "init": 1, - "console": 2, - "Console": 1, - "alpha": 1, - "version": 3, - "only": 1, - "ASCII": 1, - "supported": 1, - "Red/System": 1, - "#include": 1, - "../common/FPU": 1, - "configuration.reds": 1, - "C": 1, - "types": 1, - "#define": 2, - "time": 2, - "long": 2, - "clock": 1, - "date": 1, - "alias": 2, - "struct": 5, - "second": 1, - "minute": 1, - "hour": 1, - "day": 1, - "month": 1, - "year": 1, - "Since": 1, - "weekday": 1, - "since": 1, - "Sunday": 1, - "yearday": 1, - "daylight": 1, - "saving": 1, - "Negative": 1, - "unknown": 1, - "#import": 1, - "LIBC": 1, - "file": 1, - "Error": 1, - "handling": 1, - "form": 1, - "error": 5, - "Return": 1, - "description.": 1, - "Print": 1, - "standard": 1, - "output.": 1, - "Memory": 1, - "management": 1, - "make": 1, - "Allocate": 1, - "filled": 1, - "memory.": 1, - "chunks": 1, - "size": 5, - "binary": 4, - "resize": 1, - "Resize": 1, - "memory": 2, - "allocation.": 1, - "JVM": 6, - "reserved0": 1, - "int": 6, - "reserved1": 1, - "reserved2": 1, - "DestroyJavaVM": 1, - "JNICALL": 5, - "vm": 5, - "jint": 5, - "AttachCurrentThread": 1, - "penv": 3, - "p": 3, - "args": 2, - "DetachCurrentThread": 1, - "GetEnv": 1, - "AttachCurrentThreadAsDaemon": 1, - "just": 2, - "some": 2, - "datatypes": 1, - "for": 1, - "testing": 1, - "#some": 1, - "hash": 1, - "FF0000": 3, - "FF000000": 2, - "with": 4, - "instead": 1, - "of": 1, - "space": 2, - "/wAAAA": 1, - "/wAAA": 2, - "A": 2, - "inside": 2, - "char": 1, - "bla": 2, - "ff": 1, - "foo": 3, - "numbers": 1, + "getClass": 1, + "typeof": 1, + "collections": 2, + "There": 1, + "are": 1, + "various": 1, + "methods": 2, + "to": 1, + "create": 1, + "and": 1, + "numerous": 1, "which": 1, - "interpreter": 1, - "path": 1, - "h": 1, - "#if": 1, - "type": 1, - "exe": 1, - "push": 3, - "system/stack/frame": 2, - "save": 1, - "previous": 1, - "frame": 2, - "pointer": 2, - "system/stack/top": 1, - "@@": 1, - "reposition": 1, - "after": 1, - "catch": 1, - "flag": 1, - "CATCH_ALL": 1, - "exceptions": 1, - "root": 1, - "barrier": 1, - "keep": 1, - "stack": 1, - "aligned": 1, - "on": 1, - "bit": 1 + "make": 1, + "working": 1, + "them": 1, + "convenient.": 1, + "list": 1, + "newArrayList": 2, + "list.map": 1, + "toUpperCase": 1, + ".head": 1, + "set": 1, + "newHashSet": 1, + "set.filter": 1, + "it": 2, + "map": 1, + "newHashMap": 1, + "map.get": 1, + "controlStructures": 1, + "looks": 1, + "like": 1, + "Java": 1, + "if": 1, + ".length": 1, + "but": 1, + "foo": 1, + "bar": 1, + "Never": 2, + "happens": 3, + "text": 2, + "never": 1, + "s": 1, + "cascades.": 1, + "Object": 1, + "someValue": 2, + "switch": 1, + "Number": 1, + "loops": 1, + "for": 2, + "loop": 2, + "var": 1, + "counter": 8, + "i": 4, + "..": 1, + "while": 2, + "iterator": 1, + "iterator.hasNext": 1, + "iterator.next": 1 }, +<<<<<<< HEAD "RobotFramework": { "***": 16, "Settings": 3, @@ -58979,55 +96722,303 @@ "It": 1, "especially": 1, "act": 1, - "as": 1, - "examples": 1, - "easily": 1, - "understood": 1, - "also": 2, - "business": 2, - "people.": 1, - "Given": 1, - "calculator": 1, - "cleared": 2, - "When": 1, - "user": 2, - "types": 2, - "pushes": 2, - "equals": 2, - "Then": 1, - "result": 2, - "Calculator": 1, - "User": 2, - "All": 1, - "contain": 1, - "constructed": 1, - "from": 1, - "Creating": 1, - "new": 1, - "or": 1, - "editing": 1, - "existing": 1, - "easy": 1, - "even": 1, - "for": 2, - "people": 2, - "without": 1, - "programming": 1, - "skills.": 1, - "normal": 1, - "automation.": 1, - "If": 1, - "understand": 1, - "may": 1, - "work": 1, - "better.": 1, - "Simple": 1, - "calculation": 2, - "Longer": 1, - "Clear": 1, - "built": 1, - "variable": 1 +======= + "Arduino": { + "void": 2, + "setup": 1, + "(": 4, + ")": 4, + "{": 2, + "Serial.begin": 1, + ";": 2, + "}": 2, + "loop": 1, + "Serial.print": 1 }, + "XProc": { + "": 1, + "version=": 2, + "encoding=": 1, + "": 1, + "xmlns": 2, + "p=": 1, + "c=": 1, + "": 1, + "port=": 2, + "": 1, + "": 1, + "Hello": 1, + "world": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1 + }, + "Haml": { + "%": 1, + "p": 1, + "Hello": 1, + "World": 1 + }, + "AspectJ": { + "package": 2, + "com.blogspot.miguelinlas3.aspectj.cache": 1, + ";": 29, + "import": 5, + "java.util.Map": 2, + "java.util.WeakHashMap": 1, + "org.aspectj.lang.JoinPoint": 1, + "com.blogspot.miguelinlas3.aspectj.cache.marker.Cachable": 1, + "public": 6, + "aspect": 2, + "CacheAspect": 1, + "{": 11, + "pointcut": 3, + "cache": 3, + "(": 46, + "Cachable": 2, + "cachable": 5, + ")": 46, + "execution": 1, + "@Cachable": 2, + "*": 2, + "..": 1, + "&&": 2, + "@annotation": 1, + "Object": 15, + "around": 2, + "String": 3, + "evaluatedKey": 6, + "this.evaluateKey": 1, + "cachable.scriptKey": 1, + "thisJoinPoint": 1, + "if": 2, + "cache.containsKey": 1, + "System.out.println": 5, + "+": 7, + "return": 5, + "this.cache.get": 1, + "}": 11, + "value": 3, + "proceed": 2, + "cache.put": 1, + "protected": 2, + "evaluateKey": 1, + "key": 2, + "JoinPoint": 1, + "joinPoint": 1, + "//": 1, + "TODO": 1, + "add": 1, + "some": 1, + "smart": 1, + "staff": 1, + "to": 1, + "allow": 1, + "simple": 1, + "scripting": 1, + "in": 1, + "annotation": 1, + "Map": 3, + "": 2, + "new": 1, + "WeakHashMap": 1, + "aspects.caching": 1, + "abstract": 3, + "OptimizeRecursionCache": 2, + "@SuppressWarnings": 3, + "private": 1, + "_cache": 2, + "getCache": 2, + "operation": 4, + "o": 16, + "topLevelOperation": 4, + "cflowbelow": 1, + "before": 1, + "cachedValue": 4, + "_cache.get": 1, + "null": 1, + "after": 2, + "returning": 2, + "result": 3, + "_cache.put": 1, + "_cache.size": 1 + }, + "RDoc": { + "RDoc": 7, + "-": 9, + "Ruby": 4, + "Documentation": 2, + "System": 1, + "home": 1, + "https": 3, + "//github.com/rdoc/rdoc": 1, + "rdoc": 7, + "http": 1, + "//docs.seattlerb.org/rdoc": 1, + "bugs": 1, + "//github.com/rdoc/rdoc/issues": 1, + "code": 1, + "quality": 1, + "{": 1, + "": 1, + "src=": 1, + "alt=": 1, + "}": 1, + "[": 3, + "//codeclimate.com/github/rdoc/rdoc": 1, + "]": 3, + "Description": 1, + "produces": 1, + "HTML": 1, + "and": 9, + "command": 4, + "line": 1, + "documentation": 8, + "for": 9, + "projects.": 1, + "includes": 1, + "the": 12, + "+": 8, + "ri": 1, + "tools": 1, + "generating": 1, + "displaying": 1, + "from": 1, + "line.": 1, + "Generating": 1, + "Once": 1, + "installed": 1, + "you": 3, + "can": 2, + "create": 1, + "using": 1, + "options": 1, + "names...": 1, + "For": 1, + "an": 1, + "up": 1, + "to": 4, + "date": 1, + "option": 1, + "summary": 1, + "type": 2, + "help": 1, + "A": 1, + "typical": 1, + "use": 1, + "might": 1, + "be": 3, + "generate": 1, + "a": 5, + "package": 1, + "of": 2, + "source": 2, + "(": 3, + "such": 1, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method + "as": 1, + "itself": 1, + ")": 3, + ".": 2, + "This": 2, + "generates": 1, + "all": 1, + "C": 1, + "files": 2, + "in": 4, + "below": 1, + "current": 1, + "directory.": 1, + "These": 1, + "will": 1, + "stored": 1, + "tree": 1, + "starting": 1, + "subdirectory": 1, + "doc": 1, + "You": 2, + "make": 2, + "this": 1, + "slightly": 1, + "more": 1, + "useful": 1, + "your": 1, + "readers": 1, + "by": 1, + "having": 1, + "index": 1, + "page": 1, + "contain": 1, + "primary": 1, + "file.": 1, + "In": 1, + "our": 1, + "case": 1, + "we": 1, + "could": 1, + "#": 1, + "rdoc/rdoc": 1, + "s": 1, + "OK": 1, + "file": 1, + "bug": 1, + "report": 1, + "anything": 1, + "t": 1, + "figure": 1, + "out": 1, + "how": 1, + "produce": 1, + "output": 1, + "like": 1, + "that": 1, + "is": 4, + "probably": 1, + "bug.": 1, + "License": 1, + "Copyright": 1, + "c": 2, + "Dave": 1, + "Thomas": 1, + "The": 1, + "Pragmatic": 1, + "Programmers.": 1, + "Portions": 2, + "Eric": 1, + "Hodel.": 1, + "copyright": 1, + "others": 1, + "see": 1, + "individual": 1, + "LEGAL.rdoc": 1, + "details.": 1, + "free": 1, + "software": 2, + "may": 1, + "redistributed": 1, + "under": 1, + "terms": 1, + "specified": 1, + "LICENSE.rdoc.": 1, + "Warranty": 1, + "provided": 1, + "without": 2, + "any": 1, + "express": 1, + "or": 1, + "implied": 2, + "warranties": 2, + "including": 1, + "limitation": 1, + "merchantability": 1, + "fitness": 1, + "particular": 1, + "purpose.": 1 + }, +<<<<<<< HEAD "Ruby": { "Pry.config.commands.import": 1, "Pry": 1, @@ -59230,48 +97221,349 @@ "self.class_s": 2, "#remove": 1, "invalid": 1, +======= + "AppleScript": { + "tell": 40, + "application": 16, + "set": 108, + "localMailboxes": 3, + "to": 128, + "every": 3, + "mailbox": 2, + "if": 50, + "(": 89, + "count": 10, + "of": 72, + ")": 88, + "is": 40, + "greater": 5, + "than": 6, + "then": 28, + "messageCountDisplay": 5, + "&": 63, + "return": 16, + "my": 3, + "getMessageCountsForMailboxes": 4, + "else": 14, + "end": 67, + "everyAccount": 2, + "account": 1, + "repeat": 19, + "with": 11, + "eachAccount": 3, + "in": 13, + "accountMailboxes": 3, + "name": 8, + "outputMessage": 2, + "make": 3, + "new": 2, + "outgoing": 2, + "message": 2, + "properties": 2, + "{": 32, + "content": 2, + "subject": 1, + "visible": 2, + "true": 8, + "}": 32, + "font": 2, + "size": 5, + "on": 18, + "theMailboxes": 2, + "-": 57, + "list": 9, + "mailboxes": 1, + "returns": 2, + "string": 17, + "displayString": 4, + "eachMailbox": 4, + "mailboxName": 2, + "messageCount": 2, + "messages": 1, + "as": 27, + "unreadCount": 2, + "unread": 1, + "padString": 3, + "theString": 4, + "fieldLength": 5, + "integer": 3, + "stringLength": 4, + "length": 1, + "paddedString": 5, + "text": 13, + "from": 9, + "character": 2, + "less": 1, + "or": 6, + "equal": 3, + "paddingLength": 2, + "times": 1, + "space": 1, + "isVoiceOverRunning": 3, + "isRunning": 3, + "false": 9, + "processes": 2, + "contains": 1, + "isVoiceOverRunningWithAppleScript": 3, + "isRunningWithAppleScript": 3, + "AppleScript": 2, + "enabled": 2, + "VoiceOver": 1, + "try": 10, + "x": 1, + "bounds": 2, + "vo": 1, + "cursor": 1, + "error": 3, + "currentDate": 3, + "current": 3, + "date": 1, + "amPM": 4, + "currentHour": 9, + "s": 3, + "minutes": 2, + "and": 7, + "<": 2, + "below": 1, + "sound": 1, + "nice": 1, + "currentMinutes": 4, + "ensure": 1, + "nn": 2, + "gets": 1, + "AM": 1, + "readjust": 1, + "for": 5, + "hour": 1, + "time": 1, + "currentTime": 3, + "day": 1, + "output": 1, + "say": 1, + "delay": 3, + "property": 7, + "type_list": 6, + "extension_list": 6, + "html": 2, + "not": 5, + "currently": 2, + "handled": 2, + "run": 4, + "FinderSelection": 4, + "the": 56, + "selection": 2, + "alias": 8, + "FS": 10, + "Ideally": 2, + "this": 2, + "could": 2, + "be": 2, + "passed": 2, + "open": 8, + "handler": 2, + "SelectionCount": 6, + "number": 6, + "userPicksFolder": 6, + "MyPath": 4, + "path": 6, + "me": 2, + "item": 13, + "If": 2, + "I": 2, + "m": 2, + "a": 4, + "double": 2, + "clicked": 2, + "droplet": 2, + "these_items": 18, + "choose": 2, + "file": 6, + "prompt": 2, + "type": 6, + "thesefiles": 2, + "item_info": 24, + "i": 10, + "this_item": 14, + "info": 4, + "folder": 10, + "processFolder": 8, + "extension": 4, + "theFilePath": 8, + "thePOSIXFilePath": 8, + "POSIX": 4, + "processFile": 8, + "process": 5, + "folders": 2, + "theFolder": 6, + "without": 2, + "invisibles": 2, + "need": 1, + "pass": 1, + "URL": 1, + "Terminal": 1, + "thePOSIXFileName": 6, + "terminalCommand": 6, + "convertCommand": 4, + "newFileName": 4, + "do": 4, + "shell": 2, + "script": 2, + "activate": 3, + "pane": 4, + "UI": 1, + "elements": 1, + "tab": 1, + "group": 1, + "window": 5, + "click": 1, + "radio": 1, + "button": 4, + "get": 1, + "value": 1, + "field": 1, + "display": 4, + "dialog": 4, + "windowWidth": 3, + "windowHeight": 3, + "delimiters": 1, + "screen_width": 2, + "JavaScript": 2, + "document": 2, + "screen_height": 2, + "myFrontMost": 3, + "first": 1, + "whose": 1, + "frontmost": 1, + "desktopTop": 2, + "desktopLeft": 1, + "desktopRight": 1, + "desktopBottom": 1, + "desktop": 1, + "w": 5, + "h": 4, + "drawer": 2, + "position": 1, + "/": 2, + "lowFontSize": 9, + "highFontSize": 6, + "messageText": 4, + "userInput": 4, + "default": 4, + "answer": 3, + "buttons": 3, + "returned": 5, + "minimumFontSize": 4, + "newFontSize": 6, + "result": 2, + "theText": 3, + "exit": 1, + "fontList": 2, + "crazyTextMessage": 2, + "eachCharacter": 4, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "characters": 1, - "then": 4, - "camelcase": 1, - "it": 1, - "name.capitalize.gsub": 1, - "/": 34, - "_.": 1, - "s": 2, - "zA": 1, - "Z0": 1, - "upcase": 1, - ".gsub": 5, - "self.names": 1, - ".map": 6, - "f": 11, - "File.basename": 2, - ".sort": 2, - "self.all": 1, - "map": 1, - "self.map": 1, - "rv": 3, - "each": 1, - "<<": 15, - "self.each": 1, - "names.each": 1, - "n": 4, - "Formula.factory": 2, - "onoe": 2, - "inspect": 2, - "self.aliases": 1, - "self.canonical_name": 1, - "name.to_s": 3, - "name.kind_of": 2, - "Pathname": 2, - "formula_with_that_name": 1, - "HOMEBREW_REPOSITORY": 4, - "possible_alias": 1, - "possible_cached_formula": 1, - "HOMEBREW_CACHE_FORMULA": 2, - "name.include": 2, - "r": 3, + "some": 1, + "random": 4, + "color": 1 + }, + "Ox": { + "nldge": 1, + "ParticleLogLikeli": 1, + "(": 119, + ")": 119, + "{": 22, + "decl": 3, + "it": 5, + "ip": 1, + "mss": 3, + "mbas": 1, + "ms": 8, + "my": 4, + "mx": 7, + "vw": 7, + "vwi": 4, + "dws": 3, + "mhi": 3, + "mhdet": 2, + "loglikeli": 4, + "mData": 4, + "vxm": 1, + "vxs": 1, + "mxm": 1, + "<": 4, + "mxsu": 1, + "mxsl": 1, + "time": 2, + "timeall": 1, + "timeran": 1, + "timelik": 1, + "timefun": 1, + "timeint": 1, + "timeres": 1, + ";": 91, + "GetData": 1, + "m_asY": 1, + "sqrt": 1, + "*M_PI": 1, + "m_cY": 1, + "*": 5, + "determinant": 2, + "m_mMSbE.": 2, + "//": 17, + "covariance": 2, + "invert": 2, + "of": 2, + "measurement": 1, + "shocks": 1, + "m_vSss": 1, + "+": 14, + "zeros": 4, + "m_cPar": 4, + "m_cS": 1, + "start": 1, + "particles": 2, + "m_vXss": 1, + "m_cX": 1, + "steady": 1, + "state": 3, + "and": 1, + "policy": 2, + "init": 1, + "likelihood": 1, + "//timeall": 1, + "timer": 3, + "for": 2, + "sizer": 1, + "rann": 1, + "m_cSS": 1, + "m_mSSbE": 1, + "noise": 1, + "fg": 1, + "&": 2, + "transition": 1, + "prior": 1, + "as": 1, + "proposal": 1, + "m_oApprox.FastInterpolate": 1, + "interpolate": 1, + "fy": 1, + "m_cMS": 1, + "evaluate": 1, + "importance": 1, + "weights": 2, + "-": 31, + "[": 25, + "]": 25, + "observation": 1, + "error": 1, + "exp": 2, + "outer": 1, + "/mhdet": 2, + "sumr": 1, + "my*mhi": 1, + ".*my": 1, ".": 3, +<<<<<<< HEAD "tapd": 1, ".downcase": 2, "tapd.find_formula": 1, @@ -59361,1144 +97653,1915 @@ "arg": 1, "arg.to_s": 1, "exec": 2, - "exit": 2, - "never": 1, - "gets": 1, - "here": 1, - "threw": 1, - "failed": 3, - "wr.close": 1, - "out": 4, - "rd.read": 1, - "until": 1, - "rd.eof": 1, - "Process.wait": 1, - ".success": 1, - "removed_ENV_variables.each": 1, - "key": 8, - "value": 4, - "ENV": 4, - "ENV.kind_of": 1, - "Hash": 3, - "BuildError.new": 1, - "args": 5, - "public": 2, - "fetch": 2, - "install_bottle": 1, - "CurlBottleDownloadStrategy.new": 1, - "mirror_list": 2, - "HOMEBREW_CACHE.mkpath": 1, - "fetched": 4, - "downloader.fetch": 1, - "CurlDownloadStrategyError": 1, - "mirror_list.empty": 1, - "mirror_list.shift.values_at": 1, - "retry": 2, - "checksum_type": 2, - "CHECKSUM_TYPES.detect": 1, - "instance_variable_defined": 2, - "verify_download_integrity": 2, - "fn": 2, - "args.length": 1, - "md5": 2, - "supplied": 4, - "instance_variable_get": 2, - "type.to_s.upcase": 1, - "hasher": 2, - "Digest.const_get": 1, - "hash": 2, - "fn.incremental_hash": 1, - "supplied.empty": 1, - "message": 2, - "EOF": 2, - "mismatch": 1, - "Expected": 1, - "Got": 1, - "Archive": 1, - "To": 1, - "an": 1, - "incomplete": 1, - "download": 1, - "remove": 1, - "the": 8, - "file": 1, - "above.": 1, - "supplied.upcase": 1, - "hash.upcase": 1, - "opoo": 1, - "private": 3, - "CHECKSUM_TYPES": 2, - "sha1": 4, - "sha256": 1, - ".freeze": 1, - "fetched.kind_of": 1, - "mktemp": 1, - "downloader.stage": 1, - "@buildpath": 2, - "Pathname.pwd": 1, - "patch_list": 1, - "Patches.new": 1, - "patch_list.empty": 1, - "patch_list.external_patches": 1, - "patch_list.download": 1, - "patch_list.each": 1, - "p": 2, - "p.compression": 1, - "gzip": 1, - "p.compressed_filename": 2, - "bzip2": 1, - "*": 3, - "p.patch_args": 1, - "v": 2, - "v.to_s.empty": 1, - "s/": 1, - "class_value": 3, - "self.class.send": 1, - "instance_variable_set": 1, - "self.method_added": 1, - "method": 4, - "self.attr_rw": 1, - "attrs": 1, - "attrs.each": 1, - "attr": 4, - "class_eval": 1, - "Q": 1, - "val": 10, - "val.nil": 3, - "@#": 2, - "attr_rw": 4, - "keg_only_reason": 1, - "skip_clean_all": 2, - "cc_failures": 1, - "stable": 2, - "&": 31, - "block": 30, - "block_given": 5, - "instance_eval": 2, - "ARGV.build_devel": 2, - "devel": 1, - "@mirrors": 3, - "clear": 1, - "from": 1, - "release": 1, - "bottle": 1, - "bottle_block": 1, - "Class.new": 2, - "self.version": 1, - "self.url": 1, - "self.sha1": 1, - "sha1.shift": 1, - "@sha1": 6, - "MacOS.cat": 1, - "String": 2, - "MacOS.lion": 1, - "self.data": 1, - "&&": 8, - "bottle_block.instance_eval": 1, - "@bottle_version": 1, - "bottle_block.data": 1, - "mirror": 1, - "@mirrors.uniq": 1, - "dependencies": 1, - "@dependencies": 1, - "DependencyCollector.new": 1, - "depends_on": 1, - "dependencies.add": 1, - "paths": 3, - "all": 1, - "@skip_clean_all": 2, - "@skip_clean_paths": 3, - ".flatten.each": 1, - "p.to_s": 2, - "@skip_clean_paths.include": 1, - "skip_clean_paths": 1, - "reason": 2, - "explanation": 1, - "@keg_only_reason": 1, - "KegOnlyReason.new": 1, - "explanation.to_s.chomp": 1, - "compiler": 3, - "@cc_failures": 2, - "CompilerFailures.new": 1, - "CompilerFailure.new": 2, - "Grit": 1, - "ActiveSupport": 1, - "Inflector": 1, - "extend": 2, - "pluralize": 3, - "word": 10, - "apply_inflections": 3, - "inflections.plurals": 1, - "singularize": 2, - "inflections.singulars": 1, - "camelize": 2, - "term": 1, - "uppercase_first_letter": 2, - "string": 4, - "term.to_s": 1, - "string.sub": 2, - "z": 7, - "d": 6, - "*/": 1, - "inflections.acronyms": 1, - ".capitalize": 1, - "inflections.acronym_regex": 2, - "b": 4, - "A": 5, - "Z_": 1, - "string.gsub": 1, - "_": 2, - "/i": 2, - "underscore": 3, - "camel_cased_word": 6, - "camel_cased_word.to_s.dup": 1, - "word.gsub": 4, - "Za": 1, - "Z": 3, - "word.tr": 1, - "word.downcase": 1, - "humanize": 2, - "lower_case_and_underscored_word": 1, - "result": 8, - "lower_case_and_underscored_word.to_s.dup": 1, - "inflections.humans.each": 1, - "rule": 4, - "replacement": 4, - "break": 4, - "result.sub": 2, - "result.gsub": 2, - "/_id": 1, - "result.tr": 1, - "match": 6, - "w/": 1, - ".upcase": 1, - "titleize": 1, - "": 1, - "capitalize": 1, - "Create": 1, - "of": 1, - "table": 2, - "like": 1, - "Rails": 1, - "does": 1, - "for": 1, - "models": 1, - "to": 1, - "names": 2, - "This": 1, - "uses": 1, - "on": 2, - "last": 4, - "in": 3, - "RawScaledScorer": 1, - "tableize": 2, - "class_name": 2, - "classify": 1, - "table_name": 1, - "table_name.to_s.sub": 1, - "/.*": 1, - "./": 1, - "dasherize": 1, - "underscored_word": 1, - "underscored_word.tr": 1, - "demodulize": 1, - "i": 2, - "path.rindex": 2, - "..": 1, - "deconstantize": 1, - "implementation": 1, - "based": 1, - "one": 1, - "facets": 1, - "id": 1, - "outside": 2, - "inside": 2, - "owned": 1, - "constant": 4, - "constant.ancestors.inject": 1, - "const": 3, - "ancestor": 3, - "Object": 1, - "ancestor.const_defined": 1, - "constant.const_get": 1, - "safe_constantize": 1, - "constantize": 1, - "e.message": 2, - "uninitialized": 1, +======= + ".NaN": 1, + "no": 2, + "can": 1, + "happen": 1, + "extrem": 1, + "sumc": 1, + "if": 5, + "return": 10, + ".Inf": 2, + "or": 1, + "extremely": 1, "wrong": 1, - "const_regexp": 3, - "e.name.to_s": 1, - "camel_cased_word.to_s": 1, - "ArgumentError": 1, - "/not": 1, - "missing": 1, - "ordinal": 1, - "number": 2, - ".include": 1, - "number.to_i.abs": 2, - "ordinalize": 1, - "nodoc": 3, - "parts": 1, - "camel_cased_word.split": 1, - "parts.pop": 1, - "parts.reverse.inject": 1, - "acc": 2, - "part": 1, - "part.empty": 1, - "rules": 1, - "word.to_s.dup": 1, - "word.empty": 1, - "inflections.uncountables.include": 1, - "result.downcase": 1, - "Z/": 1, - "rules.each": 1, - ".unshift": 1, - "File.dirname": 4, - "__FILE__": 3, - "For": 1, - "use/testing": 1, - "no": 1, - "require_all": 4, - "glob": 2, - "File.join": 6, - "Jekyll": 3, - "VERSION": 1, - "DEFAULTS": 2, - "Dir.pwd": 3, - "self.configuration": 1, - "override": 3, - "source": 2, - "config_file": 2, - "config": 3, - "YAML.load_file": 1, - "config.is_a": 1, - "stdout.puts": 1, - "err": 1, - "stderr.puts": 2, - "err.to_s": 1, - "DEFAULTS.deep_merge": 1, - ".deep_merge": 1, - "Jenkins": 1, - "Plugin": 1, - "Specification.new": 1, - "plugin.name": 1, - "plugin.display_name": 1, - "plugin.version": 1, - "plugin.description": 1, - "plugin.url": 1, - "plugin.developed_by": 1, - "plugin.uses_repository": 1, - "github": 1, - "plugin.depends_on": 1, - "#plugin.depends_on": 1, - "SHEBANG#!macruby": 1, - "object": 2, - "@user": 1, - "person": 1, - "attributes": 2, - "username": 1, - "email": 1, - "location": 1, - "created_at": 1, - "registered_at": 1, - "node": 2, - "role": 1, - "user": 1, - "user.is_admin": 1, - "child": 1, - "phone_numbers": 1, - "pnumbers": 1, - "extends": 1, - "node_numbers": 1, - "u": 1, - "partial": 1, - "u.phone_numbers": 1, - "Resque": 3, - "Helpers": 1, - "redis": 7, - "server": 11, - "/redis": 1, - "Redis.connect": 2, - "thread_safe": 2, - "namespace": 3, - "server.split": 2, - "host": 3, - "port": 4, - "db": 3, - "Redis.new": 1, - "resque": 2, - "@redis": 6, - "Redis": 3, - "Namespace.new": 2, - "Namespace": 1, - "@queues": 2, - "Hash.new": 1, - "h": 2, - "Queue.new": 1, - "coder": 3, - "@coder": 1, - "MultiJsonCoder.new": 1, - "attr_writer": 4, - "self.redis": 2, - "Redis.respond_to": 1, - "connect": 1, - "redis_id": 2, - "redis.respond_to": 2, - "redis.server": 1, - "nodes": 1, - "distributed": 1, - "redis.nodes.map": 1, - "n.id": 1, - ".join": 1, - "redis.client.id": 1, - "before_first_fork": 2, - "@before_first_fork": 2, - "before_fork": 2, - "@before_fork": 2, - "after_fork": 2, - "@after_fork": 2, - "to_s": 1, - "attr_accessor": 2, - "inline": 3, - "alias": 1, - "push": 1, - "queue": 24, - "item": 4, - "pop": 1, - ".pop": 1, - "ThreadError": 1, - "size": 3, - ".size": 1, - "peek": 1, - "start": 7, - "count": 5, - ".slice": 1, - "list_range": 1, - "decode": 2, - "redis.lindex": 1, - "Array": 2, - "redis.lrange": 1, - "queues": 3, - "redis.smembers": 1, - "remove_queue": 1, - ".destroy": 1, - "@queues.delete": 1, - "queue.to_s": 1, - "enqueue": 1, - "enqueue_to": 2, - "queue_from_class": 4, - "before_hooks": 2, - "Plugin.before_enqueue_hooks": 1, - ".collect": 2, - "hook": 9, - "klass.send": 4, - "before_hooks.any": 2, - "Job.create": 1, - "Plugin.after_enqueue_hooks": 1, - "dequeue": 1, - "Plugin.before_dequeue_hooks": 1, - "Job.destroy": 1, - "Plugin.after_dequeue_hooks": 1, - "klass.instance_variable_get": 1, - "@queue": 1, - "klass.respond_to": 1, - "klass.queue": 1, - "reserve": 1, - "Job.reserve": 1, - "validate": 1, - "NoQueueError.new": 1, - "klass.to_s.empty": 1, - "NoClassError.new": 1, - "workers": 2, - "Worker.all": 1, - "working": 2, - "Worker.working": 1, - "remove_worker": 1, - "worker_id": 2, - "worker": 1, - "Worker.find": 1, - "worker.unregister_worker": 1, - "pending": 1, - "queues.inject": 1, - "m": 3, - "k": 2, - "processed": 2, - "Stat": 2, - "queues.size": 1, - "workers.size.to_i": 1, - "working.size": 1, - "servers": 1, - "environment": 2, - "keys": 6, - "redis.keys": 1, - "key.sub": 1, - "SHEBANG#!ruby": 2, - "SHEBANG#!rake": 1, - "Sinatra": 2, - "Request": 2, - "<": 2, - "Rack": 1, - "accept": 1, - "@env": 2, - "entries": 1, - ".to_s.split": 1, - "entries.map": 1, - "accept_entry": 1, - ".sort_by": 1, - "first": 1, - "preferred_type": 1, - "self.defer": 1, - "pattern": 1, - "path.respond_to": 5, - "path.keys": 1, - "path.names": 1, - "TypeError": 1, - "URI": 3, - "URI.const_defined": 1, - "Parser": 1, - "Parser.new": 1, - "encoded": 1, - "char": 4, - "enc": 5, - "URI.escape": 1, - "helpers": 3, - "data": 1, - "reset": 1, - "set": 36, - "development": 6, - ".to_sym": 1, - "raise_errors": 1, - "Proc.new": 11, - "test": 5, - "dump_errors": 1, - "show_exceptions": 1, - "sessions": 1, - "logging": 2, - "protection": 1, - "method_override": 4, - "use_code": 1, - "default_encoding": 1, - "add_charset": 1, - "javascript": 1, - "xml": 2, - "xhtml": 1, - "json": 1, - "settings.add_charset": 1, - "text": 3, - "session_secret": 3, - "SecureRandom.hex": 1, - "NotImplementedError": 1, - "Kernel.rand": 1, - "**256": 1, - "alias_method": 2, - "methodoverride": 2, - "run": 2, - "via": 1, - "at": 1, - "running": 2, - "built": 1, - "now": 1, - "http": 1, - "webrick": 1, - "bind": 1, - "ruby_engine": 6, - "defined": 1, - "RUBY_ENGINE": 2, - "server.unshift": 6, - "ruby_engine.nil": 1, - "absolute_redirects": 1, - "prefixed_redirects": 1, - "empty_path_info": 1, - "app_file": 4, - "root": 5, - "File.expand_path": 1, - "views": 1, - "reload_templates": 1, - "lock": 1, - "threaded": 1, - "public_folder": 3, - "static": 1, - "File.exist": 1, - "static_cache_control": 1, - "error": 3, - "Exception": 1, - "response.status": 1, - "content_type": 3, - "configure": 2, - "get": 2, - "filename": 2, - "png": 1, - "send_file": 1, - "NotFound": 1, - "HTML": 2, - "": 1, - "html": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "

": 1, - "doesn": 1, - "rsquo": 1, - "know": 1, - "this": 2, - "ditty.": 1, - "

": 1, - "": 1, - "src=": 1, - "
": 1, - "id=": 1, - "Try": 1, - "
": 1,
-      "request.request_method.downcase": 1,
-      "nend": 1,
-      "
": 1, - "
": 1, - "": 1, - "": 1, - "Application": 2, - "Base": 2, - "super": 3, - "self.register": 2, - "extensions": 6, - "added_methods": 2, - "extensions.map": 1, - "m.public_instance_methods": 1, - ".flatten": 1, - "Delegator.delegate": 1, - "Delegator": 1, - "self.delegate": 1, - "methods": 1, - "methods.each": 1, - "method_name": 5, - "define_method": 1, - "respond_to": 1, - "Delegator.target.send": 1, - "delegate": 1, - "put": 1, - "post": 1, - "delete": 1, - "template": 1, - "layout": 1, - "before": 1, - "after": 1, - "not_found": 1, - "mime_type": 1, - "enable": 1, - "disable": 1, - "use": 1, - "production": 1, - "settings": 2, - "target": 1, - "self.target": 1, - "Wrapper": 1, - "stack": 2, - "instance": 2, - "@stack": 1, - "@instance": 2, - "@instance.settings": 1, - "call": 1, - "env": 2, - "@stack.call": 1, - "self.new": 1, - "base": 4, - "base.class_eval": 1, - "Delegator.target.register": 1, - "self.helpers": 1, - "Delegator.target.helpers": 1, - "self.use": 1, - "Delegator.target.use": 1, - "SHEBANG#!python": 1 - }, - "Rust": { - "//": 20, - "use": 10, - "cell": 1, - "Cell": 2, - ";": 218, - "cmp": 1, - "Eq": 2, - "option": 4, - "result": 18, - "Result": 3, - "comm": 5, - "{": 213, - "stream": 21, - "Chan": 4, - "GenericChan": 1, - "GenericPort": 1, - "Port": 3, - "SharedChan": 4, - "}": 210, - "prelude": 1, - "*": 1, - "task": 39, - "rt": 29, - "task_id": 2, - "sched_id": 2, - "rust_task": 1, - "util": 4, - "replace": 8, - "mod": 5, - "local_data_priv": 1, - "pub": 26, - "local_data": 1, - "spawn": 15, - "///": 13, - "A": 6, - "handle": 3, - "to": 6, - "a": 9, - "scheduler": 6, - "#": 61, - "[": 61, - "deriving_eq": 3, - "]": 61, - "enum": 4, - "Scheduler": 4, - "SchedulerHandle": 2, - "(": 429, - ")": 434, - "Task": 2, - "TaskHandle": 2, - "TaskResult": 4, - "Success": 6, - "Failure": 6, - "impl": 3, - "for": 10, - "pure": 2, - "fn": 89, - "eq": 1, - "&": 30, - "self": 15, - "other": 4, - "-": 33, - "bool": 6, - "match": 4, - "|": 20, - "true": 9, - "_": 4, - "false": 7, - "ne": 1, - ".eq": 1, - "modes": 1, - "SchedMode": 4, - "Run": 3, - "on": 5, - "the": 10, - "default": 1, - "DefaultScheduler": 2, - "current": 1, - "CurrentScheduler": 2, - "specific": 1, - "ExistingScheduler": 1, - "PlatformThread": 2, - "All": 1, - "tasks": 1, - "run": 1, - "in": 3, - "same": 1, - "OS": 3, - "thread": 2, - "SingleThreaded": 4, - "Tasks": 2, - "are": 2, - "distributed": 2, - "among": 2, - "available": 1, - "CPUs": 1, - "ThreadPerCore": 2, - "Each": 1, - "runs": 1, - "its": 1, - "own": 1, - "ThreadPerTask": 1, - "fixed": 1, - "number": 1, - "of": 3, - "threads": 1, - "ManualThreads": 3, - "uint": 7, - "struct": 7, - "SchedOpts": 4, - "mode": 9, - "foreign_stack_size": 3, - "Option": 4, - "": 2, - "TaskOpts": 12, - "linked": 15, - "supervised": 11, - "mut": 16, - "notify_chan": 24, - "<": 3, - "": 3, - "sched": 10, - "TaskBuilder": 21, - "opts": 21, - "gen_body": 4, - "@fn": 2, - "v": 6, - "can_not_copy": 11, - "": 1, - "consumed": 4, - "default_task_opts": 4, - "body": 6, - "Identity": 1, - "function": 1, - "None": 23, - "doc": 1, - "hidden": 1, - "FIXME": 1, - "#3538": 1, - "priv": 1, - "consume": 1, - "if": 7, - "self.consumed": 2, - "fail": 17, - "Fake": 1, - "move": 1, - "let": 84, - "self.opts.notify_chan": 7, - "self.opts.linked": 4, - "self.opts.supervised": 5, - "self.opts.sched": 6, - "self.gen_body": 2, - "unlinked": 1, - "..": 8, - "self.consume": 7, - "future_result": 1, - "blk": 2, - "self.opts.notify_chan.is_some": 1, - "notify_pipe_po": 2, - "notify_pipe_ch": 2, - "Some": 8, - "Configure": 1, - "custom": 1, - "task.": 1, - "sched_mode": 1, - "add_wrapper": 1, - "wrapper": 2, - "prev_gen_body": 2, - "f": 38, - "x": 7, - "x.opts.linked": 1, - "x.opts.supervised": 1, - "x.opts.sched": 1, - "spawn_raw": 1, - "x.gen_body": 1, - "Runs": 1, - "while": 2, - "transfering": 1, - "ownership": 1, - "one": 1, - "argument": 1, - "child.": 1, - "spawn_with": 2, - "": 2, - "arg": 5, - "do": 49, - "self.spawn": 1, - "arg.take": 1, - "try": 5, - "": 2, - "T": 2, - "": 2, - "po": 11, - "ch": 26, - "": 1, - "fr_task_builder": 1, - "self.future_result": 1, - "+": 4, - "r": 6, - "fr_task_builder.spawn": 1, - "||": 11, - "ch.send": 11, - "unwrap": 3, - ".recv": 3, - "Ok": 3, - "po.recv": 10, - "Err": 2, - ".spawn": 9, - "spawn_unlinked": 6, - ".unlinked": 3, - "spawn_supervised": 5, - ".supervised": 2, - ".spawn_with": 1, - "spawn_sched": 8, - ".sched_mode": 2, - ".try": 1, - "yield": 16, - "Yield": 1, - "control": 1, - "unsafe": 31, - "task_": 2, - "rust_get_task": 5, - "killed": 3, - "rust_task_yield": 1, + "parameters": 1, + "log": 2, + "dws/m_cPar": 1, + "loglikelihood": 1, + "contribution": 1, + "//timelik": 1, + "/100": 1, + "//time": 1, + "resample": 1, + "vw/dws": 1, + "selection": 1, + "step": 1, + "in": 1, + "c": 1, + "on": 1, + "normalized": 1, + "}": 22, + "#include": 2, + "ParallelObjective": 1, + "obj": 18, + "DONOTUSECLIENT": 2, + "isclass": 1, + "obj.p2p": 2, + "oxwarning": 1, + "obj.L": 1, + "new": 19, + "P2P": 2, + "ObjClient": 4, + "ObjServer": 7, + "this.obj": 2, + "Execute": 4, + "basetag": 2, + "STOP_TAG": 1, + "iml": 1, + "obj.NvfuncTerms": 2, + "Nparams": 6, + "obj.nstruct": 2, + "Loop": 2, + "nxtmsgsz": 2, + "//free": 1, + "param": 1, + "length": 1, + "is": 1, + "greater": 1, + "than": 1, + "Volume": 3, + "QUIET": 2, + "println": 2, + "ID": 2, + "Server": 1, + "Recv": 1, + "ANY_TAG": 1, + "//receive": 1, + "the": 1, + "ending": 1, + "parameter": 1, + "vector": 1, + "Encode": 3, + "Buffer": 8, + "//encode": 1, + "it.": 1, + "Decode": 1, + "obj.nfree": 1, + "obj.cur.V": 1, + "vfunc": 2, + "CstrServer": 3, + "SepServer": 3, + "Lagrangian": 1, + "rows": 1, + "obj.cur": 1, + "Vec": 1, + "obj.Kvar.v": 1, + "imod": 1, + "Tag": 1, + "obj.K": 1, + "TRUE": 1, + "obj.Kvar": 1, + "PDF": 1, + "Kapital": 4, + "L": 2, + "const": 4, + "N": 5, + "entrant": 8, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method + "exit": 2, + "KP": 14, + "StateVariable": 1, + "this.entrant": 1, + "this.exit": 1, + "this.KP": 1, + "actual": 2, + "Kbar*vals/": 1, + "upper": 3, + "Transit": 1, + "FeasA": 2, + "ent": 5, + "CV": 7, + "stayout": 3, + "exit.pos": 1, + "tprob": 5, + "sigu": 2, + "SigU": 2, + "v": 2, "&&": 1, - "failing": 2, - "True": 1, - "running": 2, - "has": 1, - "failed": 1, - "rust_task_is_unwinding": 1, - "get_task": 1, - "Get": 1, - "get_task_id": 1, - "get_scheduler": 1, - "rust_get_sched_id": 6, - "unkillable": 5, - "": 3, - "U": 6, - "AllowFailure": 5, - "t": 24, - "*rust_task": 6, - "drop": 3, - "rust_task_allow_kill": 3, - "self.t": 4, - "_allow_failure": 2, - "rust_task_inhibit_kill": 3, - "The": 1, - "inverse": 1, - "unkillable.": 1, - "Only": 1, - "ever": 1, - "be": 2, - "used": 1, - "nested": 1, - ".": 1, - "rekillable": 1, - "DisallowFailure": 5, - "atomically": 3, - "DeferInterrupts": 5, - "rust_task_allow_yield": 1, - "_interrupts": 1, - "rust_task_inhibit_yield": 1, - "test": 31, - "should_fail": 11, - "ignore": 16, - "cfg": 16, - "windows": 14, - "test_cant_dup_task_builder": 1, - "b": 2, - "b.spawn": 2, - "should": 2, + "<0>": 1, + "ones": 1, + "probn": 2, + "Kbe": 2, + "/sigu": 1, + "Kb0": 2, + "Kb2": 2, + "*upper": 1, + "/": 1, + "vals": 1, + "tprob.*": 1, + ".*stayout": 1, + "FirmEntry": 6, + "Run": 1, + "Initialize": 3, + "GenerateSample": 2, + "BDP": 2, + "BayesianDP": 1, + "Rust": 1, + "Reachable": 2, + "sige": 2, + "StDeviations": 1, + "<0.3,0.3>": 1, + "LaggedAction": 1, + "d": 2, + "array": 1, + "Kparams": 1, + "Positive": 4, + "Free": 1, + "Kb1": 1, + "Determined": 1, + "EndogenousStates": 1, + "K": 3, + "KN": 1, + "SetDelta": 1, + "Probability": 1, + "kcoef": 3, + "ecost": 3, + "Negative": 1, + "CreateSpaces": 1, + "LOUD": 1, + "EM": 4, + "ValueIteration": 1, + "Solve": 1, + "data": 4, + "DataSet": 1, + "Simulate": 1, + "DataN": 1, + "DataT": 1, + "FALSE": 1, + "Print": 1, + "ImaiJainChing": 1, + "delta": 1, + "*CV": 2, + "Utility": 1, + "u": 2, + "ent*CV": 1, + "*AV": 1, + "|": 1 + }, + "STON": { + "{": 15, + "[": 11, + "]": 11, + "}": 15, + "#a": 1, + "#b": 1, + "TestDomainObject": 1, + "#created": 1, + "DateAndTime": 2, + "#modified": 1, + "#integer": 1, + "#float": 1, + "#description": 1, + "#color": 1, + "#green": 1, + "#tags": 1, + "#two": 1, + "#beta": 1, + "#medium": 1, + "#bytes": 1, + "ByteArray": 1, + "#boolean": 1, + "false": 1, + "Rectangle": 1, + "#origin": 1, + "Point": 2, + "-": 2, + "#corner": 1, + "ZnResponse": 1, + "#headers": 2, + "ZnHeaders": 1, + "ZnMultiValueDictionary": 1, + "#entity": 1, + "ZnStringEntity": 1, + "#contentType": 1, + "ZnMimeType": 1, + "#main": 1, + "#sub": 1, + "#parameters": 1, + "#contentLength": 1, + "#string": 1, + "#encoder": 1, + "ZnUTF8Encoder": 1, + "#statusLine": 1, + "ZnStatusLine": 1, + "#version": 1, + "#code": 1, + "#reason": 1 + }, + "Scilab": { + "disp": 1, + "(": 7, + "%": 4, + "pi": 3, + ")": 7, + ";": 7, + "function": 1, + "[": 1, + "a": 4, + "b": 4, + "]": 1, + "myfunction": 1, + "d": 2, + "e": 4, + "f": 2, + "+": 5, + "cos": 1, + "cosh": 1, + "if": 1, + "then": 1, + "-": 2, + "e.field": 1, + "else": 1, + "home": 1, + "return": 1, + "end": 1, + "myvar": 1, + "endfunction": 1, + "assert_checkequal": 1, + "assert_checkfalse": 1 + }, + "Dart": { + "import": 1, + "as": 1, + "math": 1, + ";": 9, + "class": 1, + "Point": 5, + "{": 3, + "num": 2, + "x": 2, + "y": 2, + "(": 7, + "this.x": 1, + "this.y": 1, + ")": 7, + "distanceTo": 1, + "other": 1, + "var": 4, + "dx": 3, + "-": 2, + "other.x": 1, + "dy": 3, + "other.y": 1, + "return": 1, + "math.sqrt": 1, + "*": 2, + "+": 1, + "}": 3, + "void": 1, + "main": 1, + "p": 1, + "new": 2, + "q": 1, + "print": 1 + }, + "Nu": { + ";": 22, + "main.nu": 1, + "Entry": 1, + "point": 1, + "for": 1, + "a": 1, + "Nu": 1, + "program.": 1, + "Copyright": 1, + "(": 14, + "c": 1, + ")": 14, + "Tim": 1, + "Burks": 1, + "Neon": 1, + "Design": 1, + "Technology": 1, + "Inc.": 1, + "load": 4, + "basics": 1, + "cocoa": 1, + "definitions": 1, + "menu": 1, + "generation": 1, + "Aaron": 1, + "Hillegass": 1, + "t": 1, + "retain": 1, + "it.": 1, + "NSApplication": 2, + "sharedApplication": 2, + "setDelegate": 1, + "set": 1, + "delegate": 1, + "ApplicationDelegate": 1, + "alloc": 1, + "init": 1, + "this": 1, + "makes": 1, + "the": 3, + "application": 1, + "window": 1, + "take": 1, + "focus": 1, + "when": 1, + "we": 1, + "ve": 1, + "started": 1, + "it": 1, + "from": 1, + "terminal": 1, + "activateIgnoringOtherApps": 1, + "YES": 1, + "run": 1, + "main": 1, + "Cocoa": 1, + "event": 1, + "loop": 1, + "NSApplicationMain": 1, + "nil": 1, + "SHEBANG#!nush": 1, + "puts": 1 + }, + "Alloy": { + "module": 3, + "examples/systems/marksweepgc": 1, + "sig": 20, + "Node": 10, + "{": 54, + "}": 60, + "HeapState": 5, + "left": 3, + "right": 1, + "-": 41, + "lone": 6, + "marked": 1, + "set": 10, + "freeList": 1, + "pred": 16, + "clearMarks": 1, + "[": 82, + "hs": 16, + ".marked": 3, + ".right": 4, + "hs.right": 3, + "fun": 1, + "reachable": 1, + "n": 5, + "]": 80, + "+": 14, + "n.": 1, + "(": 12, + "hs.left": 2, + ")": 9, + "mark": 1, + "from": 2, + "hs.reachable": 1, + "setFreeList": 1, + ".freeList.*": 3, + ".left": 5, + "hs.marked": 1, + "GC": 1, + "root": 5, + "assert": 3, + "Soundness1": 2, + "all": 16, + "h": 9, + "live": 3, + "h.reachable": 1, + "|": 19, + "h.right": 1, + "Soundness2": 2, + "no": 8, + ".reachable": 2, + "h.GC": 1, + "in": 19, + ".freeList": 1, + "check": 6, + "for": 7, + "expect": 6, + "Completeness": 1, + "examples/systems/views": 1, + "open": 2, + "util/ordering": 1, + "State": 16, + "as": 2, + "so": 1, + "util/relation": 1, + "rel": 1, + "Ref": 19, + "Object": 10, + "t": 16, + "b": 13, + "v": 25, + "views": 2, + "when": 1, + "is": 1, + "view": 2, + "of": 3, + "type": 1, + "backing": 1, + "dirty": 3, + "contains": 1, + "refs": 7, + "that": 1, "have": 1, "been": 1, - "by": 1, - "previous": 1, - "call": 1, - "test_spawn_unlinked_unsup_no_fail_down": 1, - "grandchild": 1, - "sends": 1, - "port": 3, - "ch.clone": 2, - "iter": 8, - "repeat": 8, - "If": 1, - "first": 1, - "grandparent": 1, - "hangs.": 1, - "Shouldn": 1, - "leave": 1, - "child": 3, - "hanging": 1, - "around.": 1, - "test_spawn_linked_sup_fail_up": 1, - "fails": 4, - "parent": 2, - "_ch": 1, - "<()>": 6, - "opts.linked": 2, - "opts.supervised": 2, - "b0": 5, - "b1": 3, - "b1.spawn": 3, - "We": 1, - "get": 1, - "punted": 1, - "awake": 1, - "test_spawn_linked_sup_fail_down": 1, - "loop": 5, - "*both*": 1, - "mechanisms": 1, - "would": 1, - "wrong": 1, - "this": 1, - "didn": 1, - "s": 1, - "failure": 1, - "propagate": 1, - "across": 1, - "gap": 1, - "test_spawn_failure_propagate_secondborn": 1, - "test_spawn_failure_propagate_nephew_or_niece": 1, - "test_spawn_linked_sup_propagate_sibling": 1, - "test_run_basic": 1, - "Wrapper": 5, - "test_add_wrapper": 1, - "b0.add_wrapper": 1, - "ch.f.swap_unwrap": 4, - "test_future_result": 1, - ".future_result": 4, - "assert": 10, - "test_back_to_the_future_result": 1, - "test_try_success": 1, - "test_try_fail": 1, - "test_spawn_sched_no_threads": 1, - "u": 2, - "test_spawn_sched": 1, - "i": 3, - "int": 5, - "parent_sched_id": 4, - "child_sched_id": 5, - "else": 1, - "test_spawn_sched_childs_on_default_sched": 1, - "default_id": 2, - "nolink": 1, - "extern": 1, - "testrt": 9, - "rust_dbg_lock_create": 2, - "*libc": 6, - "c_void": 6, - "rust_dbg_lock_destroy": 2, - "lock": 13, - "rust_dbg_lock_lock": 3, - "rust_dbg_lock_unlock": 3, - "rust_dbg_lock_wait": 2, - "rust_dbg_lock_signal": 2, - "test_spawn_sched_blocking": 1, - "start_po": 1, - "start_ch": 1, - "fin_po": 1, - "fin_ch": 1, - "start_ch.send": 1, - "fin_ch.send": 1, - "start_po.recv": 1, - "pingpong": 3, - "": 2, - "val": 4, - "setup_po": 1, - "setup_ch": 1, - "parent_po": 2, - "parent_ch": 2, - "child_po": 2, - "child_ch": 4, - "setup_ch.send": 1, - "setup_po.recv": 1, - "child_ch.send": 1, - "fin_po.recv": 1, - "avoid_copying_the_body": 5, - "spawnfn": 2, + "invalidated": 1, + "obj": 1, + "one": 8, + "ViewType": 8, + "anyviews": 2, + "visualization": 1, + "ViewType.views": 1, + "Map": 2, + "extends": 10, + "keys": 3, + "map": 2, + "s": 6, + "Ref.map": 1, + "s.refs": 3, + "MapRef": 4, + "fact": 4, + "State.obj": 3, + "Iterator": 2, + "done": 3, + "lastRef": 2, + "IteratorRef": 5, + "Set": 2, + "elts": 2, + "SetRef": 5, + "abstract": 2, + "KeySetView": 6, + "State.views": 1, + "IteratorView": 3, + "s.views": 2, + "handle": 1, + "possibility": 1, + "modifying": 1, + "an": 1, + "object": 1, + "and": 1, + "its": 1, + "at": 1, + "once": 1, + "*": 1, + "should": 1, + "we": 1, + "limit": 1, + "frame": 1, + "conds": 1, + "to": 1, + "non": 1, + "*/": 1, + "modifies": 5, + "pre": 15, + "post": 14, + "rs": 4, + "let": 5, + "vr": 1, + "pre.views": 8, + "mods": 3, + "rs.*vr": 1, + "r": 3, + "pre.refs": 6, + "pre.obj": 10, + "post.obj": 7, + "viewFrame": 4, + "post.dirty": 1, + "pre.dirty": 1, + "some": 3, + "&&": 2, + "allocates": 5, + "&": 3, + "post.refs": 1, + ".map": 3, + ".elts": 3, + "dom": 1, + "<:>": 1, + "setRefs": 1, + "this": 14, + "MapRef.put": 1, + "k": 5, + "none": 4, + "post.views": 4, + "SetRef.iterator": 1, + "iterRef": 4, + "i": 7, + "i.left": 3, + "i.done": 1, + "i.lastRef": 1, + "IteratorRef.remove": 1, + ".lastRef": 2, + "IteratorRef.next": 1, + "ref": 3, + "IteratorRef.hasNext": 1, + "s.obj": 1, + "zippishOK": 2, + "ks": 6, + "vs": 6, + "m": 4, + "ki": 2, + "vi": 2, + "s0": 4, + "so/first": 1, + "s1": 4, + "so/next": 7, + "s2": 6, + "s3": 4, + "s4": 4, + "s5": 4, + "s6": 4, + "s7": 2, + "precondition": 2, + "s0.dirty": 1, + "ks.iterator": 1, + "vs.iterator": 1, + "ki.hasNext": 1, + "vi.hasNext": 1, + "ki.this/next": 1, + "vi.this/next": 1, + "m.put": 1, + "ki.remove": 1, + "vi.remove": 1, + "State.dirty": 1, + "ViewType.pre.views": 2, + "but": 1, + "#s.obj": 1, + "<": 1, + "examples/systems/file_system": 1, + "Name": 2, + "File": 1, + "d": 3, + "Dir": 8, + "d.entries.contents": 1, + "entries": 3, + "DirEntry": 2, + "parent": 3, + "this.": 4, + "@contents.": 1, + "@entries": 1, + "e1": 2, + "e2": 2, + "e1.name": 1, + "e2.name": 1, + "@parent": 2, + "Root": 5, + "Cur": 1, + "name": 1, + "contents": 2, + "OneParent_buggyVersion": 2, + "d.parent": 2, + "OneParent_correctVersion": 2, + "contents.d": 1, + "NoDirAliases": 3, + "o": 1, + "o.": 1 + }, + "Red": { + "Red/System": 1, + "[": 111, + "Title": 2, + "Purpose": 2, + "Language": 2, + "http": 2, + "//www.red": 2, + "-": 74, + "lang.org/": 2, + "]": 114, + "#include": 1, + "%": 2, + "../common/FPU": 1, + "configuration.reds": 1, + ";": 31, + "C": 1, + "types": 1, + "#define": 2, + "time": 2, + "long": 2, + "clock": 1, + "date": 1, + "alias": 2, + "struct": 5, + "second": 1, + "integer": 16, + "(": 6, + ")": 4, + "minute": 1, + "hour": 1, + "day": 1, + "month": 1, + "year": 1, + "Since": 1, + "weekday": 1, + "since": 1, + "Sunday": 1, + "yearday": 1, + "daylight": 1, + "saving": 1, + "Negative": 1, + "unknown": 1, + "#either": 3, + "OS": 3, + "#import": 1, + "LIBC": 1, + "file": 1, + "cdecl": 3, + "Error": 1, + "handling": 1, + "form": 1, + "error": 5, + "Return": 1, + "description.": 1, + "code": 3, + "return": 10, + "c": 7, + "string": 10, + "print": 5, + "Print": 1, + "to": 2, + "standard": 1, + "output.": 1, + "Memory": 1, + "management": 1, + "make": 1, + "Allocate": 1, + "zero": 3, + "filled": 1, + "memory.": 1, + "chunks": 1, + "size": 5, + "binary": 4, + "resize": 1, + "Resize": 1, + "memory": 2, + "allocation.": 1, + "JVM": 6, + "reserved0": 1, + "int": 6, + "ptr": 14, + "reserved1": 1, + "reserved2": 1, + "DestroyJavaVM": 1, + "function": 6, + "JNICALL": 5, + "vm": 5, + "jint": 5, + "AttachCurrentThread": 1, + "penv": 3, "p": 3, - "x_in_parent": 2, - "ptr": 2, - "addr_of": 2, - "as": 7, - "x_in_child": 4, - "p.recv": 1, - "test_avoid_copying_the_body_spawn": 1, - "test_avoid_copying_the_body_task_spawn": 1, - "test_avoid_copying_the_body_try": 1, - "test_avoid_copying_the_body_unlinked": 1, - "test_platform_thread": 1, - "test_unkillable": 1, - "pp": 2, - "*uint": 1, - "cast": 2, - "transmute": 2, - "_p": 1, - "test_unkillable_nested": 1, - "Here": 1, - "test_atomically_nested": 1, - "test_child_doesnt_ref_parent": 1, - "const": 1, - "generations": 2, - "child_no": 3, - "return": 1, - "test_sched_thread_per_core": 1, - "chan": 2, - "cores": 2, - "rust_num_threads": 1, - "reported_threads": 2, - "rust_sched_threads": 2, - "chan.send": 2, - "port.recv": 2, - "test_spawn_thread_on_demand": 1, - "max_threads": 2, - "running_threads": 2, - "rust_sched_current_nonlazy_threads": 2, - "port2": 1, - "chan2": 1, - "chan2.send": 1, - "running_threads2": 2, - "port2.recv": 1 - }, - "SAS": { - "libname": 1, - "source": 1, - "data": 6, - "work.working_copy": 5, - ";": 22, - "set": 3, - "source.original_file.sas7bdat": 1, - "run": 6, + "args": 2, + "byte": 3, + "DetachCurrentThread": 1, + "GetEnv": 1, + "version": 3, + "AttachCurrentThreadAsDaemon": 1, + "just": 2, + "some": 2, + "datatypes": 1, + "for": 1, + "testing": 1, + "#some": 1, + "hash": 1, + "quit": 2, + "#": 8, + "{": 11, + "FF0000": 3, + "}": 11, + "FF000000": 2, + "with": 4, + "tab": 3, + "instead": 1, + "of": 1, + "space": 2, + "/wAAAA": 1, + "/wAAA": 2, + "A": 2, + "inside": 2, + "char": 1, + "bla": 2, + "ff": 1, + "foo": 3, + "numbers": 1, + "which": 1, + "interpreter": 1, + "path": 1, + "copy": 2, + "h": 1, + "#if": 1, + "type": 1, + "exe": 1, + "push": 3, + "system/stack/frame": 2, + "save": 1, + "previous": 1, + "frame": 2, + "pointer": 2, + "system/stack/top": 1, + "@@": 1, + "reposition": 1, + "after": 1, + "the": 3, + "catch": 1, + "flag": 1, + "CATCH_ALL": 1, + "exceptions": 1, + "root": 1, + "barrier": 1, + "keep": 1, + "stack": 1, + "aligned": 1, + "on": 1, + "bit": 1, + "Red": 3, + "Author": 1, + "File": 1, + "console.red": 1, + "Tabs": 1, + "Rights": 1, + "License": 2, + "Distributed": 1, + "under": 1, + "Boost": 1, + "Software": 1, + "Version": 1, + "See": 1, + "https": 1, + "//github.com/dockimbel/Red/blob/master/BSL": 1, + "License.txt": 1, + "#system": 1, + "global": 1, + "MacOSX": 2, + "History": 1, + "library": 1, + "add": 2, + "history": 2, + "Add": 1, + "line": 9, + "history.": 1, + "rl": 4, + "insert": 3, + "wrapper": 2, + "func": 1, + "count": 3, + "key": 3, + "Windows": 2, + "system/platform": 1, + "ret": 5, + "AttachConsole": 1, "if": 2, - "Purge": 1, - "then": 2, - "delete": 1, - "ImportantVariable": 1, - ".": 1, - "MissingFlag": 1, - "proc": 2, - "surveyselect": 1, - "work.data": 1, - "out": 2, - "work.boot": 2, - "method": 1, - "urs": 1, - "reps": 1, - "seed": 2, - "sampsize": 1, - "outhits": 1, - "samplingunit": 1, - "Site": 1, - "PROC": 1, - "MI": 1, - "work.bootmi": 2, - "nimpute": 1, - "round": 1, - "By": 2, - "Replicate": 2, - "VAR": 1, - "Variable1": 2, - "Variable2": 2, - "logistic": 1, - "descending": 1, - "_Imputation_": 1, - "model": 1, - "Outcome": 1, - "/": 1, - "risklimits": 1 + "halt": 2, + "SetConsoleTitle": 1, + "as": 4, + "string/rs": 1, + "head": 1, + "str": 4, + "bind": 1, + "input": 2, + "routine": 1, + "prompt": 3, + "/local": 1, + "len": 1, + "buffer": 4, + "string/load": 1, + "+": 1, + "length": 1, + "free": 1, + "SET_RETURN": 1, + "delimiters": 1, + "block": 3, + "list": 1, + "none": 1, + "foreach": 1, + "case": 2, + "escaped": 2, + "no": 2, + "in": 2, + "comment": 2, + "switch": 3, + "mono": 3, + "mode": 3, + "cnt/1": 1, + "red": 1, + "eval": 1, + "load/all": 1, + "unless": 1, + "tail": 1, + "set/any": 1, + "not": 1, + "script/2": 1, + "do": 2, + "skip": 1, + "script": 1, + "init": 1, + "console": 2, + "Console": 1, + "alpha": 1, + "only": 1, + "ASCII": 1, + "supported": 1 }, + "BlitzBasic": { + "Local": 34, + "bk": 3, + "CreateBank": 5, + "(": 125, + ")": 126, + "PokeFloat": 3, + "-": 24, + "Print": 13, + "Bin": 4, + "PeekInt": 4, + "%": 6, + "Shl": 7, + "f": 5, + "ff": 1, + "+": 11, + "Hex": 2, + "FloatToHalf": 3, + "HalfToFloat": 1, + "FToI": 2, + "WaitKey": 2, + "End": 58, + ";": 57, + "Half": 1, + "precision": 2, + "bit": 2, + "arithmetic": 2, + "library": 2, + "Global": 2, + "Half_CBank_": 13, + "Function": 101, + "f#": 3, + "If": 25, + "Then": 18, + "Return": 36, + "HalfToFloat#": 1, + "h": 4, + "signBit": 6, + "exponent": 22, + "fraction": 9, + "fBits": 8, + "And": 8, + "<": 18, + "Shr": 3, + "F": 3, + "FF": 2, + "ElseIf": 1, + "Or": 4, + "PokeInt": 2, + "PeekFloat": 1, + "F800000": 1, + "FFFFF": 1, + "Abs": 1, + "*": 2, + "Sgn": 1, + "Else": 7, + "EndIf": 7, + "HalfAdd": 1, + "l": 84, + "r": 12, + "HalfSub": 1, + "HalfMul": 1, + "HalfDiv": 1, + "HalfLT": 1, + "HalfGT": 1, + "Double": 2, + "DoubleOut": 1, + "[": 2, + "]": 2, + "Double_CBank_": 1, + "DoubleToFloat#": 1, + "d": 1, + "FloatToDouble": 1, + "IntToDouble": 1, + "i": 49, + "SefToDouble": 1, + "s": 12, + "e": 4, + "DoubleAdd": 1, + "DoubleSub": 1, + "DoubleMul": 1, + "DoubleDiv": 1, + "DoubleLT": 1, + "DoubleGT": 1, + "IDEal": 3, + "Editor": 3, + "Parameters": 3, + "F#1A#20#2F": 1, + "C#Blitz3D": 3, + "linked": 2, + "list": 32, + "container": 1, + "class": 1, + "with": 3, + "thanks": 1, + "to": 11, + "MusicianKool": 3, + "for": 3, + "concept": 1, + "and": 9, + "issue": 1, + "fixes": 1, + "Type": 8, + "LList": 3, + "Field": 10, + "head_.ListNode": 1, + "tail_.ListNode": 1, + "ListNode": 8, + "pv_.ListNode": 1, + "nx_.ListNode": 1, + "Value": 37, + "Iterator": 2, + "l_.LList": 1, + "cn_.ListNode": 1, + "cni_": 8, + "Create": 4, + "a": 46, + "new": 4, + "object": 2, + "CreateList.LList": 1, + "l.LList": 20, + "New": 11, + "head_": 35, + "tail_": 34, + "nx_": 33, + "caps": 1, + "pv_": 27, + "These": 1, + "make": 1, + "it": 1, + "more": 1, + "or": 4, + "less": 1, + "safe": 1, + "iterate": 2, + "freely": 1, + "Free": 1, + "all": 3, + "elements": 4, + "not": 4, + "any": 1, + "values": 4, + "FreeList": 1, + "ClearList": 2, + "Delete": 6, + "Remove": 7, + "the": 52, + "from": 15, + "does": 1, + "free": 1, + "n.ListNode": 12, + "While": 7, + "n": 54, + "nx.ListNode": 1, + "nx": 1, + "Wend": 6, + "Count": 1, + "number": 1, + "of": 16, + "in": 4, + "slow": 3, + "ListLength": 2, + "i.Iterator": 6, + "GetIterator": 3, + "elems": 4, + "EachIn": 5, + "True": 4, + "if": 2, + "contains": 1, + "given": 7, + "value": 16, + "ListContains": 1, + "ListFindNode": 2, + "Null": 15, + "intvalues": 1, + "bank": 8, + "ListFromBank.LList": 1, + "CreateList": 2, + "size": 4, + "BankSize": 1, + "p": 7, + "For": 6, + "To": 6, + "Step": 2, + "ListAddLast": 2, + "Next": 7, + "containing": 3, + "ListToBank": 1, + "Swap": 1, + "contents": 1, + "two": 1, + "objects": 1, + "SwapLists": 1, + "l1.LList": 1, + "l2.LList": 1, + "tempH.ListNode": 1, + "l1": 4, + "tempT.ListNode": 1, + "l2": 4, + "tempH": 1, + "tempT": 1, + "same": 1, + "as": 2, + "first": 5, + "CopyList.LList": 1, + "lo.LList": 1, + "ln.LList": 1, + "lo": 1, + "ln": 2, + "Reverse": 1, + "order": 1, + "ReverseList": 1, + "n1.ListNode": 1, + "n2.ListNode": 1, + "tmp.ListNode": 1, + "n1": 5, + "n2": 6, + "tmp": 4, + "Search": 1, + "retrieve": 1, + "node": 8, + "ListFindNode.ListNode": 1, + "Append": 1, + "end": 5, + "fast": 2, + "return": 7, + "ListAddLast.ListNode": 1, + "Attach": 1, + "start": 13, + "ListAddFirst.ListNode": 1, + "occurence": 1, + "ListRemove": 1, + "RemoveListNode": 6, + "element": 4, + "at": 5, + "position": 4, + "backwards": 2, + "negative": 2, + "index": 13, + "ValueAtIndex": 1, + "ListNodeAtIndex": 3, + "invalid": 1, + "ListNodeAtIndex.ListNode": 1, + "Beyond": 1, + "valid": 2, + "Negative": 1, + "count": 1, + "backward": 1, + "Before": 3, + "Replace": 1, + "added": 2, + "by": 3, + "ReplaceValueAtIndex": 1, + "RemoveNodeAtIndex": 1, + "tval": 3, + "Retrieve": 2, + "ListFirst": 1, + "last": 2, + "ListLast": 1, + "its": 2, + "ListRemoveFirst": 1, + "val": 6, + "ListRemoveLast": 1, + "Insert": 3, + "into": 2, + "before": 2, + "specified": 2, + "InsertBeforeNode.ListNode": 1, + "bef.ListNode": 1, + "bef": 7, + "after": 1, + "then": 1, + "InsertAfterNode.ListNode": 1, + "aft.ListNode": 1, + "aft": 7, + "Get": 1, + "an": 4, + "iterator": 4, + "use": 1, + "loop": 2, + "This": 1, + "function": 1, + "means": 1, + "that": 1, + "most": 1, + "programs": 1, + "won": 1, + "available": 1, + "moment": 1, + "l_": 7, + "Exit": 1, + "there": 1, + "wasn": 1, + "t": 1, + "create": 1, + "one": 1, + "cn_": 12, + "No": 1, + "especial": 1, + "reason": 1, + "why": 1, + "this": 2, + "has": 1, + "be": 1, + "anything": 1, + "but": 1, + "meh": 1, + "Use": 1, + "argument": 1, + "over": 1, + "members": 1, + "Still": 1, + "items": 1, + "Disconnect": 1, + "having": 1, + "reached": 1, + "False": 3, + "currently": 1, + "pointed": 1, + "IteratorRemove": 1, + "temp.ListNode": 1, + "temp": 1, + "Call": 1, + "breaking": 1, + "out": 1, + "disconnect": 1, + "IteratorBreak": 1, + "F#5#A#10#18#2A#32#3E#47#4C#58#66#6F#78#8F#9B#A9#B7#BD#C5#CC": 1, + "F#E3#E9#EF#F4#F9#103#10D#11B#12B#13F#152#163": 1, + "result": 4, + "s.Sum3Obj": 2, + "Sum3Obj": 6, + "Handle": 2, + "MilliSecs": 4, + "Sum3_": 2, + "MakeSum3Obj": 2, + "Sum3": 2, + "b": 7, + "c": 7, + "isActive": 4, + "Last": 1, + "Restore": 1, + "label": 1, + "Read": 1, + "foo": 1, + ".label": 1, + "Data": 1, + "a_": 2, + "a.Sum3Obj": 1, + "Object.Sum3Obj": 1, + "return_": 2, + "First": 1 + }, + "RobotFramework": { + "***": 16, + "Settings": 3, + "Documentation": 3, + "Example": 3, + "test": 6, + "cases": 2, + "using": 4, + "the": 9, + "data": 2, + "-": 16, + "driven": 4, + "testing": 2, + "approach.": 2, + "...": 28, + "Tests": 1, + "use": 2, + "Calculate": 3, + "keyword": 5, + "created": 1, + "in": 5, + "this": 1, + "file": 1, + "that": 5, + "turn": 1, + "uses": 1, + "keywords": 3, + "CalculatorLibrary": 5, + ".": 4, + "An": 1, + "exception": 1, + "is": 6, + "last": 1, + "has": 5, + "a": 4, + "custom": 1, + "_template": 1, + "keyword_.": 1, + "The": 2, + "style": 3, + "works": 3, + "well": 3, + "when": 2, + "you": 1, + "need": 3, + "to": 5, + "repeat": 1, + "same": 1, + "workflow": 3, + "multiple": 2, + "times.": 1, + "Notice": 1, + "one": 1, + "of": 3, + "these": 1, + "tests": 5, + "fails": 1, + "on": 1, + "purpose": 1, + "show": 1, + "how": 1, + "failures": 1, + "look": 1, + "like.": 1, + "Test": 4, + "Template": 2, + "Library": 3, + "Cases": 3, + "Expression": 1, + "Expected": 1, + "Addition": 2, + "+": 6, + "Subtraction": 1, + "Multiplication": 1, + "*": 4, + "Division": 2, + "/": 5, + "Failing": 1, + "Calculation": 3, + "error": 4, + "[": 4, + "]": 4, + "should": 9, + "fail": 2, + "kekkonen": 1, + "Invalid": 2, + "button": 13, + "{": 15, + "EMPTY": 3, + "}": 15, + "expression.": 1, + "by": 3, + "zero.": 1, + "Keywords": 2, + "Arguments": 2, + "expression": 5, + "expected": 4, + "Push": 16, + "buttons": 4, + "C": 4, + "Result": 8, + "be": 9, + "Should": 2, + "cause": 1, + "equal": 1, + "#": 2, + "Using": 1, + "BuiltIn": 1, + "All": 1, + "contain": 1, + "constructed": 1, + "from": 1, + "Creating": 1, + "new": 1, + "or": 1, + "editing": 1, + "existing": 1, + "easy": 1, + "even": 1, + "for": 2, + "people": 2, + "without": 1, + "programming": 1, + "skills.": 1, + "This": 3, + "kind": 2, + "normal": 1, + "automation.": 1, + "If": 1, + "also": 2, + "business": 2, + "understand": 1, + "_gherkin_": 2, + "may": 1, + "work": 1, + "better.": 1, + "Simple": 1, + "calculation": 2, + "Longer": 1, + "Clear": 1, + "built": 1, + "variable": 1, + "case": 1, + "gherkin": 1, + "syntax.": 1, + "similar": 1, + "examples.": 1, + "difference": 1, + "higher": 1, + "abstraction": 1, + "level": 1, + "and": 2, + "their": 1, + "arguments": 1, + "are": 1, + "embedded": 1, + "into": 1, + "names.": 1, + "syntax": 1, + "been": 3, + "made": 1, + "popular": 1, + "http": 1, + "//cukes.info": 1, + "|": 1, + "Cucumber": 1, + "It": 1, + "especially": 1, + "act": 1, + "as": 1, + "examples": 1, + "easily": 1, + "understood": 1, + "people.": 1, + "Given": 1, + "calculator": 1, + "cleared": 2, + "When": 1, + "user": 2, + "types": 2, + "pushes": 2, + "equals": 2, + "Then": 1, + "result": 2, + "Calculator": 1, + "User": 2 + }, + "ApacheConf": { + "#": 182, + "ServerRoot": 2, + "#Listen": 2, + "Listen": 2, + "LoadModule": 126, + "authn_file_module": 2, + "libexec/apache2/mod_authn_file.so": 1, + "authn_dbm_module": 2, + "libexec/apache2/mod_authn_dbm.so": 1, + "authn_anon_module": 2, + "libexec/apache2/mod_authn_anon.so": 1, + "authn_dbd_module": 2, + "libexec/apache2/mod_authn_dbd.so": 1, + "authn_default_module": 2, + "libexec/apache2/mod_authn_default.so": 1, + "authz_host_module": 2, + "libexec/apache2/mod_authz_host.so": 1, + "authz_groupfile_module": 2, + "libexec/apache2/mod_authz_groupfile.so": 1, + "authz_user_module": 2, + "libexec/apache2/mod_authz_user.so": 1, + "authz_dbm_module": 2, + "libexec/apache2/mod_authz_dbm.so": 1, + "authz_owner_module": 2, + "libexec/apache2/mod_authz_owner.so": 1, + "authz_default_module": 2, + "libexec/apache2/mod_authz_default.so": 1, + "auth_basic_module": 2, + "libexec/apache2/mod_auth_basic.so": 1, + "auth_digest_module": 2, + "libexec/apache2/mod_auth_digest.so": 1, + "cache_module": 2, + "libexec/apache2/mod_cache.so": 1, + "disk_cache_module": 2, + "libexec/apache2/mod_disk_cache.so": 1, + "mem_cache_module": 2, + "libexec/apache2/mod_mem_cache.so": 1, + "dbd_module": 2, + "libexec/apache2/mod_dbd.so": 1, + "dumpio_module": 2, + "libexec/apache2/mod_dumpio.so": 1, + "reqtimeout_module": 1, + "libexec/apache2/mod_reqtimeout.so": 1, + "ext_filter_module": 2, + "libexec/apache2/mod_ext_filter.so": 1, + "include_module": 2, + "libexec/apache2/mod_include.so": 1, + "filter_module": 2, + "libexec/apache2/mod_filter.so": 1, + "substitute_module": 1, + "libexec/apache2/mod_substitute.so": 1, + "deflate_module": 2, + "libexec/apache2/mod_deflate.so": 1, + "log_config_module": 3, + "libexec/apache2/mod_log_config.so": 1, + "log_forensic_module": 2, + "libexec/apache2/mod_log_forensic.so": 1, + "logio_module": 3, + "libexec/apache2/mod_logio.so": 1, + "env_module": 2, + "libexec/apache2/mod_env.so": 1, + "mime_magic_module": 2, + "libexec/apache2/mod_mime_magic.so": 1, + "cern_meta_module": 2, + "libexec/apache2/mod_cern_meta.so": 1, + "expires_module": 2, + "libexec/apache2/mod_expires.so": 1, + "headers_module": 2, + "libexec/apache2/mod_headers.so": 1, + "ident_module": 2, + "libexec/apache2/mod_ident.so": 1, + "usertrack_module": 2, + "libexec/apache2/mod_usertrack.so": 1, + "#LoadModule": 4, + "unique_id_module": 2, + "libexec/apache2/mod_unique_id.so": 1, + "setenvif_module": 2, + "libexec/apache2/mod_setenvif.so": 1, + "version_module": 2, + "libexec/apache2/mod_version.so": 1, + "proxy_module": 2, + "libexec/apache2/mod_proxy.so": 1, + "proxy_connect_module": 2, + "libexec/apache2/mod_proxy_connect.so": 1, + "proxy_ftp_module": 2, + "libexec/apache2/mod_proxy_ftp.so": 1, + "proxy_http_module": 2, + "libexec/apache2/mod_proxy_http.so": 1, + "proxy_scgi_module": 1, + "libexec/apache2/mod_proxy_scgi.so": 1, + "proxy_ajp_module": 2, + "libexec/apache2/mod_proxy_ajp.so": 1, + "proxy_balancer_module": 2, + "libexec/apache2/mod_proxy_balancer.so": 1, + "ssl_module": 4, + "libexec/apache2/mod_ssl.so": 1, + "mime_module": 4, + "libexec/apache2/mod_mime.so": 1, + "dav_module": 2, + "libexec/apache2/mod_dav.so": 1, + "status_module": 2, + "libexec/apache2/mod_status.so": 1, + "autoindex_module": 2, + "libexec/apache2/mod_autoindex.so": 1, + "asis_module": 2, + "libexec/apache2/mod_asis.so": 1, + "info_module": 2, + "libexec/apache2/mod_info.so": 1, + "cgi_module": 2, + "libexec/apache2/mod_cgi.so": 1, + "dav_fs_module": 2, + "libexec/apache2/mod_dav_fs.so": 1, + "vhost_alias_module": 2, + "libexec/apache2/mod_vhost_alias.so": 1, + "negotiation_module": 2, + "libexec/apache2/mod_negotiation.so": 1, + "dir_module": 4, + "libexec/apache2/mod_dir.so": 1, + "imagemap_module": 2, + "libexec/apache2/mod_imagemap.so": 1, + "actions_module": 2, + "libexec/apache2/mod_actions.so": 1, + "speling_module": 2, + "libexec/apache2/mod_speling.so": 1, + "userdir_module": 2, + "libexec/apache2/mod_userdir.so": 1, + "alias_module": 4, + "libexec/apache2/mod_alias.so": 1, + "rewrite_module": 2, + "libexec/apache2/mod_rewrite.so": 1, + "perl_module": 1, + "libexec/apache2/mod_perl.so": 1, + "php5_module": 1, + "libexec/apache2/libphp5.so": 1, + "hfs_apple_module": 1, + "libexec/apache2/mod_hfs_apple.so": 1, + "": 17, + "mpm_netware_module": 2, + "mpm_winnt_module": 1, + "User": 2, + "_www": 2, + "Group": 2, + "": 17, + "ServerAdmin": 2, + "you@example.com": 2, + "#ServerName": 2, + "www.example.com": 2, + "DocumentRoot": 2, + "": 6, + "Options": 6, + "FollowSymLinks": 4, + "AllowOverride": 6, + "None": 8, + "Order": 10, + "deny": 10, + "allow": 10, + "Deny": 6, + "from": 10, + "all": 10, + "": 6, + "Library": 2, + "WebServer": 2, + "Documents": 1, + "Indexes": 2, + "MultiViews": 1, + "Allow": 4, + "DirectoryIndex": 2, + "index.html": 2, + "": 2, + "Hh": 1, + "Tt": 1, + "Dd": 1, + "Ss": 2, + "_": 1, + "Satisfy": 4, + "All": 4, + "": 2, + "": 1, + "rsrc": 1, + "": 1, + "": 1, + "namedfork": 1, + "": 1, + "ErrorLog": 2, + "LogLevel": 2, + "warn": 2, + "LogFormat": 6, + "combined": 4, + "common": 4, + "combinedio": 2, + "CustomLog": 2, + "#CustomLog": 2, + "ScriptAliasMatch": 1, + "/cgi": 2, + "-": 43, + "bin/": 2, + "(": 16, + "i": 1, + "webobjects": 1, + ")": 17, + ".*": 3, + "cgid_module": 3, + "#Scriptsock": 2, + "/private/var/run/cgisock": 1, + "CGI": 1, + "Executables": 1, + "DefaultType": 2, + "text/plain": 2, + "TypesConfig": 2, + "/private/etc/apache2/mime.types": 1, + "#AddType": 4, + "application/x": 6, + "gzip": 6, + ".tgz": 6, + "#AddEncoding": 4, + "x": 4, + "compress": 4, + ".Z": 4, + ".gz": 4, + "AddType": 4, + "#AddHandler": 4, + "cgi": 3, + "script": 2, + ".cgi": 2, + "type": 2, + "map": 2, + "var": 2, + "text/html": 2, + ".shtml": 4, + "#AddOutputFilter": 2, + "INCLUDES": 2, + "#MIMEMagicFile": 2, + "/private/etc/apache2/magic": 1, + "#ErrorDocument": 8, + "/missing.html": 2, + "http": 2, + "//www.example.com/subscription_info.html": 2, + "#MaxRanges": 1, + "unlimited": 1, + "#EnableMMAP": 2, + "off": 5, + "#EnableSendfile": 2, + "TraceEnable": 1, + "Include": 6, + "/private/etc/apache2/extra/httpd": 11, + "mpm.conf": 2, + "#Include": 17, + "multilang": 2, + "errordoc.conf": 2, + "autoindex.conf": 2, + "languages.conf": 2, + "userdir.conf": 2, + "info.conf": 2, + "vhosts.conf": 2, + "manual.conf": 2, + "dav.conf": 2, + "default.conf": 2, + "ssl.conf": 2, + "SSLRandomSeed": 4, + "startup": 2, + "builtin": 4, + "connect": 2, + "/private/etc/apache2/other/*.conf": 1, + "ServerSignature": 1, + "Off": 1, + "RewriteCond": 15, + "%": 48, + "{": 16, + "REQUEST_METHOD": 1, + "}": 16, + "HEAD": 1, + "|": 80, + "TRACE": 1, + "DELETE": 1, + "TRACK": 1, + "[": 17, + "NC": 13, + "OR": 14, + "]": 17, + "THE_REQUEST": 1, + "r": 1, + "n": 1, + "A": 6, + "D": 6, + "HTTP_REFERER": 1, + "<|>": 6, + "C": 5, + "E": 5, + "HTTP_COOKIE": 1, + "REQUEST_URI": 1, + "/": 3, + ";": 2, + "<": 1, + ".": 7, + "HTTP_USER_AGENT": 5, + "java": 1, + "curl": 2, + "wget": 2, + "winhttp": 1, + "HTTrack": 1, + "clshttp": 1, + "archiver": 1, + "loader": 1, + "email": 1, + "harvest": 1, + "extract": 1, + "grab": 1, + "miner": 1, + "libwww": 1, + "perl": 1, + "python": 1, + "nikto": 1, + "scan": 1, + "#Block": 1, + "mySQL": 1, + "injects": 1, + "QUERY_STRING": 5, + "*": 1, + "union": 1, + "select": 1, + "insert": 1, + "cast": 1, + "set": 1, + "declare": 1, + "drop": 1, + "update": 1, + "md5": 1, + "benchmark": 1, + "./": 1, + "localhost": 1, + "loopback": 1, + ".0": 2, + ".1": 1, + "a": 1, + "z0": 1, + "RewriteRule": 1, + "index.php": 1, + "F": 1, + "/usr/lib/apache2/modules/mod_authn_file.so": 1, + "/usr/lib/apache2/modules/mod_authn_dbm.so": 1, + "/usr/lib/apache2/modules/mod_authn_anon.so": 1, + "/usr/lib/apache2/modules/mod_authn_dbd.so": 1, + "/usr/lib/apache2/modules/mod_authn_default.so": 1, + "authn_alias_module": 1, + "/usr/lib/apache2/modules/mod_authn_alias.so": 1, + "/usr/lib/apache2/modules/mod_authz_host.so": 1, + "/usr/lib/apache2/modules/mod_authz_groupfile.so": 1, + "/usr/lib/apache2/modules/mod_authz_user.so": 1, + "/usr/lib/apache2/modules/mod_authz_dbm.so": 1, + "/usr/lib/apache2/modules/mod_authz_owner.so": 1, + "authnz_ldap_module": 1, + "/usr/lib/apache2/modules/mod_authnz_ldap.so": 1, + "/usr/lib/apache2/modules/mod_authz_default.so": 1, + "/usr/lib/apache2/modules/mod_auth_basic.so": 1, + "/usr/lib/apache2/modules/mod_auth_digest.so": 1, + "file_cache_module": 1, + "/usr/lib/apache2/modules/mod_file_cache.so": 1, + "/usr/lib/apache2/modules/mod_cache.so": 1, + "/usr/lib/apache2/modules/mod_disk_cache.so": 1, + "/usr/lib/apache2/modules/mod_mem_cache.so": 1, + "/usr/lib/apache2/modules/mod_dbd.so": 1, + "/usr/lib/apache2/modules/mod_dumpio.so": 1, + "/usr/lib/apache2/modules/mod_ext_filter.so": 1, + "/usr/lib/apache2/modules/mod_include.so": 1, + "/usr/lib/apache2/modules/mod_filter.so": 1, + "charset_lite_module": 1, + "/usr/lib/apache2/modules/mod_charset_lite.so": 1, + "/usr/lib/apache2/modules/mod_deflate.so": 1, + "ldap_module": 1, + "/usr/lib/apache2/modules/mod_ldap.so": 1, + "/usr/lib/apache2/modules/mod_log_forensic.so": 1, + "/usr/lib/apache2/modules/mod_env.so": 1, + "/usr/lib/apache2/modules/mod_mime_magic.so": 1, + "/usr/lib/apache2/modules/mod_cern_meta.so": 1, + "/usr/lib/apache2/modules/mod_expires.so": 1, + "/usr/lib/apache2/modules/mod_headers.so": 1, + "/usr/lib/apache2/modules/mod_ident.so": 1, + "/usr/lib/apache2/modules/mod_usertrack.so": 1, + "/usr/lib/apache2/modules/mod_unique_id.so": 1, + "/usr/lib/apache2/modules/mod_setenvif.so": 1, + "/usr/lib/apache2/modules/mod_version.so": 1, + "/usr/lib/apache2/modules/mod_proxy.so": 1, + "/usr/lib/apache2/modules/mod_proxy_connect.so": 1, + "/usr/lib/apache2/modules/mod_proxy_ftp.so": 1, + "/usr/lib/apache2/modules/mod_proxy_http.so": 1, + "/usr/lib/apache2/modules/mod_proxy_ajp.so": 1, + "/usr/lib/apache2/modules/mod_proxy_balancer.so": 1, + "/usr/lib/apache2/modules/mod_ssl.so": 1, + "/usr/lib/apache2/modules/mod_mime.so": 1, + "/usr/lib/apache2/modules/mod_dav.so": 1, + "/usr/lib/apache2/modules/mod_status.so": 1, + "/usr/lib/apache2/modules/mod_autoindex.so": 1, + "/usr/lib/apache2/modules/mod_asis.so": 1, + "/usr/lib/apache2/modules/mod_info.so": 1, + "suexec_module": 1, + "/usr/lib/apache2/modules/mod_suexec.so": 1, + "/usr/lib/apache2/modules/mod_cgid.so": 1, + "/usr/lib/apache2/modules/mod_cgi.so": 1, + "/usr/lib/apache2/modules/mod_dav_fs.so": 1, + "dav_lock_module": 1, + "/usr/lib/apache2/modules/mod_dav_lock.so": 1, + "/usr/lib/apache2/modules/mod_vhost_alias.so": 1, + "/usr/lib/apache2/modules/mod_negotiation.so": 1, + "/usr/lib/apache2/modules/mod_dir.so": 1, + "/usr/lib/apache2/modules/mod_imagemap.so": 1, + "/usr/lib/apache2/modules/mod_actions.so": 1, + "/usr/lib/apache2/modules/mod_speling.so": 1, + "/usr/lib/apache2/modules/mod_userdir.so": 1, + "/usr/lib/apache2/modules/mod_alias.so": 1, + "/usr/lib/apache2/modules/mod_rewrite.so": 1, + "daemon": 2, + "usr": 2, + "share": 1, + "apache2": 1, + "default": 1, + "site": 1, + "htdocs": 1, + "ht": 1, + "/var/log/apache2/error_log": 1, + "/var/log/apache2/access_log": 2, + "ScriptAlias": 1, + "/var/run/apache2/cgisock": 1, + "lib": 1, + "bin": 1, + "/etc/apache2/mime.types": 1, + "/etc/apache2/magic": 1, + "/etc/apache2/extra/httpd": 11 + }, + "Agda": { + "module": 3, + "NatCat": 1, + "where": 2, + "open": 2, + "import": 2, + "Relation.Binary.PropositionalEquality": 1, + "-": 21, + "If": 1, + "you": 2, + "can": 1, + "show": 1, + "that": 1, + "a": 1, + "relation": 1, + "only": 1, + "ever": 1, + "has": 1, + "one": 1, + "inhabitant": 5, + "get": 1, + "the": 1, + "category": 1, + "laws": 1, + "for": 1, + "free": 1, + "EasyCategory": 3, + "(": 36, + "obj": 4, + "Set": 2, + ")": 36, + "_": 6, + "{": 10, + "x": 34, + "y": 28, + "z": 18, + "}": 10, + "id": 9, + "single": 4, + "r": 26, + "s": 29, + "assoc": 2, + "w": 4, + "t": 6, + "Data.Nat": 1, + "same": 5, + ".0": 2, + "n": 14, + "refl": 6, + ".": 5, + "suc": 6, + "m": 6, + "cong": 1, + "trans": 5, + ".n": 1, + "zero": 1, + "Nat": 1 + }, + "Hy": { + ";": 4, + "Fibonacci": 1, + "example": 2, + "in": 2, + "Hy.": 2, + "(": 28, + "defn": 2, + "fib": 4, + "[": 10, + "n": 5, + "]": 10, + "if": 2, + "<": 1, + ")": 28, + "+": 1, + "-": 10, + "__name__": 1, + "for": 2, + "x": 3, + "print": 1, + "The": 1, + "concurrent.futures": 2, + "import": 1, + "ThreadPoolExecutor": 2, + "as": 3, + "completed": 2, + "random": 1, + "randint": 2, + "sh": 1, + "sleep": 2, + "task": 2, + "to": 2, + "do": 2, + "with": 1, + "executor": 2, + "setv": 1, + "jobs": 2, + "list": 1, + "comp": 1, + ".submit": 1, + "range": 1, + "future": 2, + ".result": 1 + }, +<<<<<<< HEAD "SCSS": { "blue": 4, "#3bbfce": 1, @@ -60748,439 +99811,1503 @@ "/": 4, "border": 3, "solid": 1, +======= + "Less": { + "@blue": 4, + "#3bbfce": 1, + ";": 7, + "@margin": 3, + "px": 1, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ".content": 1, "-": 3, "navigation": 1, + "{": 2, + "border": 2, + "color": 3, "darken": 1, "(": 1, "%": 1, - ")": 1 - }, - "Scala": { - "SHEBANG#!sh": 2, - "exec": 2, - "scala": 2, - "#": 2, - "object": 3, - "Beers": 1, - "extends": 1, - "Application": 1, - "{": 21, - "def": 10, - "bottles": 3, - "(": 67, - "qty": 12, - "Int": 11, - "f": 4, - "String": 5, - ")": 67, - "//": 29, - "higher": 1, - "-": 5, - "order": 1, - "functions": 2, - "match": 2, - "case": 8, - "+": 49, - "x": 3, - "}": 22, - "beers": 3, - "sing": 3, - "implicit": 3, - "song": 3, - "takeOne": 2, - "nextQty": 2, - "nested": 1, - "if": 2, - "else": 2, - "refrain": 2, - ".capitalize": 1, - "tail": 1, - "recursion": 1, - "val": 6, - "headOfSong": 1, - "println": 8, - "parameter": 1, - "name": 4, - "version": 1, - "organization": 1, - "libraryDependencies": 3, - "%": 12, - "Seq": 3, - "libosmVersion": 4, - "from": 1, - "maxErrors": 1, - "pollInterval": 1, - "javacOptions": 1, - "scalacOptions": 1, - "scalaVersion": 1, - "initialCommands": 2, - "in": 12, - "console": 1, - "mainClass": 2, - "Compile": 4, - "packageBin": 1, - "Some": 6, - "run": 1, - "watchSources": 1, - "<+=>": 1, - "baseDirectory": 1, - "map": 1, - "_": 2, - "input": 1, - "add": 2, - "a": 4, - "maven": 2, - "style": 2, - "repository": 2, - "resolvers": 2, - "at": 4, - "url": 3, - "sequence": 1, - "of": 1, - "repositories": 1, - "define": 1, - "the": 5, - "to": 7, - "publish": 1, - "publishTo": 1, - "set": 2, - "Ivy": 1, - "logging": 1, - "be": 1, - "highest": 1, - "level": 1, - "ivyLoggingLevel": 1, - "UpdateLogging": 1, - "Full": 1, - "disable": 1, - "updating": 1, - "dynamic": 1, - "revisions": 1, - "including": 1, - "SNAPSHOT": 1, - "versions": 1, - "offline": 1, - "true": 5, - "prompt": 1, - "for": 1, - "this": 1, - "build": 1, - "include": 1, - "project": 1, - "id": 1, - "shellPrompt": 2, - "ThisBuild": 1, - "state": 3, - "Project.extract": 1, - ".currentRef.project": 1, - "System.getProperty": 1, - "showTiming": 1, - "false": 7, - "showSuccess": 1, - "timingFormat": 1, - "import": 9, - "java.text.DateFormat": 1, - "DateFormat.getDateTimeInstance": 1, - "DateFormat.SHORT": 2, - "crossPaths": 1, - "fork": 2, - "Test": 3, - "javaOptions": 1, - "parallelExecution": 2, - "javaHome": 1, - "file": 3, - "scalaHome": 1, - "aggregate": 1, - "clean": 1, - "logLevel": 2, - "compile": 1, - "Level.Warn": 2, - "persistLogLevel": 1, - "Level.Debug": 1, - "traceLevel": 2, - "unmanagedJars": 1, - "publishArtifact": 2, - "packageDoc": 2, - "artifactClassifier": 1, - "retrieveManaged": 1, - "credentials": 2, - "Credentials": 2, - "Path.userHome": 1, + ")": 1, + "}": 2, + ".border": 1, + "padding": 1, "/": 2, - "math.random": 1, - "scala.language.postfixOps": 1, - "scala.util._": 1, - "scala.util.": 1, - "Try": 1, - "Success": 2, - "Failure": 2, - "scala.concurrent._": 1, - "duration._": 1, - "ExecutionContext.Implicits.global": 1, - "scala.concurrent.": 1, - "ExecutionContext": 1, - "CanAwait": 1, - "OnCompleteRunnable": 1, - "TimeoutException": 1, - "ExecutionException": 1, - "blocking": 3, - "node11": 1, - "Welcome": 1, - "Scala": 1, - "worksheet": 1, - "retry": 3, - "[": 11, - "T": 8, - "]": 11, - "n": 3, - "block": 8, - "Future": 5, - "ns": 1, - "Iterator": 2, - ".iterator": 1, - "attempts": 1, - "ns.map": 1, - "failed": 2, - "Future.failed": 1, - "new": 1, - "Exception": 2, - "attempts.foldLeft": 1, - "fallbackTo": 1, - "scala.concurrent.Future": 1, - "scala.concurrent.Fut": 1, - "|": 19, - "ure": 1, - "rb": 3, - "i": 9, - "Thread.sleep": 2, - "*random.toInt": 1, - "i.toString": 5, - "ri": 2, - "onComplete": 1, - "s": 1, - "s.toString": 1, - "t": 1, - "t.toString": 1, - "r": 1, - "r.toString": 1, - "Unit": 1, - "toList": 1, - ".foreach": 1, - "Iteration": 5, - "java.lang.Exception": 1, - "Hi": 10, - "HelloWorld": 1, - "main": 1, - "args": 1, - "Array": 1 + "margin": 1 }, - "Scaml": { - "%": 1, - "p": 1, - "Hello": 1, - "World": 1 + "Kit": { + "
": 1, + "

": 1, + "

": 1, + "

": 1, + "

": 1, + "
": 1 }, - "Scheme": { - "(": 366, - "import": 1, - "rnrs": 1, - ")": 380, - "only": 1, - "surfage": 4, - "s1": 1, - "lists": 1, - "filter": 4, - "-": 192, - "map": 4, - "gl": 12, - "glut": 2, - "dharmalab": 2, - "records": 1, - "define": 30, - "record": 5, - "type": 5, - "math": 1, - "basic": 2, - "agave": 4, - "glu": 1, - "compat": 1, - "geometry": 1, - "pt": 49, - "glamour": 2, - "window": 2, - "misc": 1, - "s19": 1, - "time": 24, - "s27": 1, - "random": 27, - "bits": 1, - "s42": 1, - "eager": 1, - "comprehensions": 1, - ";": 1684, - "utilities": 1, - "say": 9, - ".": 2, - "args": 2, - "for": 7, - "each": 7, - "display": 4, - "newline": 2, - "translate": 6, - "p": 6, - "glTranslated": 1, - "x": 10, - "y": 3, - "radians": 8, - "/": 7, - "pi": 2, - "degrees": 2, - "angle": 6, - "a": 19, - "cos": 1, - "sin": 1, - "current": 15, - "in": 14, - "nanoseconds": 2, - "let": 2, - "val": 3, - "+": 28, - "second": 1, - "nanosecond": 1, - "seconds": 12, - "micro": 1, - "milli": 1, - "base": 2, - "step": 1, - "score": 5, - "level": 5, - "ships": 1, - "spaceship": 5, - "fields": 4, - "mutable": 14, - "pos": 16, - "vel": 4, - "theta": 1, - "force": 1, - "particle": 8, - "birth": 2, - "lifetime": 1, - "color": 2, - "particles": 11, - "asteroid": 14, - "radius": 6, - "number": 3, - "of": 3, - "starting": 3, - "asteroids": 15, - "#f": 5, - "bullet": 16, - "pack": 12, - "is": 8, - "initialize": 1, - "size": 1, - "title": 1, - "reshape": 1, - "width": 8, - "height": 8, - "source": 2, - "randomize": 1, - "default": 1, - "wrap": 4, - "mod": 2, - "ship": 8, - "make": 11, - "ammo": 9, - "set": 19, - "list": 6, - "ec": 6, - "i": 6, - "inexact": 16, - "integer": 25, - "buffered": 1, - "procedure": 1, - "lambda": 12, - "background": 1, - "glColor3f": 5, - "matrix": 5, - "excursion": 5, - "ship.pos": 5, - "glRotated": 2, - "ship.theta": 10, - "glutWireCone": 1, - "par": 6, - "c": 4, - "vector": 6, - "ref": 3, - "glutWireSphere": 3, - "bullets": 7, - "pack.pos": 3, - "glutWireCube": 1, - "last": 3, - "dt": 7, - "update": 2, - "system": 2, - "pt*n": 8, - "ship.vel": 5, - "pack.vel": 1, - "cond": 2, - "par.birth": 1, - "par.lifetime": 1, - "else": 2, - "par.pos": 2, - "par.vel": 1, - "bullet.birth": 1, - "bullet.pos": 2, - "bullet.vel": 1, - "a.pos": 2, - "a.vel": 1, - "if": 1, + "E": { + "pragma.syntax": 1, + "(": 65, + ")": 64, + "to": 27, + "send": 1, + "message": 4, + "{": 57, + "when": 2, + "friend": 4, + "<-receive(message))>": 1, + "chatUI.showMessage": 4, + "}": 57, + "catch": 2, + "prob": 2, + "receive": 1, + "receiveFriend": 2, + "friendRcvr": 2, + "bind": 2, + "save": 1, + "file": 3, + "file.setText": 1, + "makeURIFromObject": 1, + "chatController": 2, + "load": 1, + "getObjectFromURI": 1, + "file.getText": 1, "<": 1, - "a.radius": 1, - "contact": 2, - "b": 4, - "when": 5, - "<=>": 3, - "distance": 3, - "begin": 2, - "1": 2, - "f": 1, - "append": 4, - "4": 1, - "50": 4, - "0": 7, - "100": 6, - "2": 1, - "n": 2, + "-": 2, + "def": 24, + "makeVehicle": 3, + "self": 1, + "vehicle": 2, + "milesTillEmpty": 1, + "return": 19, + "self.milesPerGallon": 1, + "*": 1, + "self.getFuelRemaining": 1, + "makeCar": 4, + "var": 6, + "fuelRemaining": 4, + "car": 8, + "extends": 2, + "milesPerGallon": 2, + "getFuelRemaining": 2, + "makeJet": 1, + "jet": 3, + "println": 2, + "The": 2, + "can": 1, + "go": 1, + "car.milesTillEmpty": 1, + "miles.": 1, + "name": 4, + "x": 3, + "y": 3, + "moveTo": 1, + "newX": 2, + "newY": 2, + "getX": 1, + "getY": 1, + "setName": 1, + "newName": 2, + "getName": 1, + "sportsCar": 1, + "sportsCar.moveTo": 1, + "sportsCar.getName": 1, + "is": 1, + "at": 1, + "X": 1, + "location": 1, + "sportsCar.getX": 1, + "makeVOCPair": 1, + "brandName": 3, + "String": 1, + "near": 6, + "myTempContents": 6, + "none": 2, + "brand": 5, + "__printOn": 4, + "out": 4, + "TextWriter": 4, + "void": 5, + "out.print": 4, + "ProveAuth": 2, + "<$brandName>": 3, + "prover": 1, + "getBrand": 4, + "coerce": 2, + "specimen": 2, + "optEjector": 3, + "sealedBox": 2, + "offerContent": 1, + "CheckAuth": 2, + "checker": 3, + "template": 1, + "match": 4, + "[": 10, + "get": 2, + "authList": 2, + "any": 2, + "]": 10, + "specimenBox": 2, "null": 1, - "10": 1, - "5": 1, - "glutIdleFunc": 1, - "glutPostRedisplay": 1, - "glutKeyboardFunc": 1, - "key": 2, - "case": 1, - "char": 1, - "#": 6, - "w": 1, - "d": 1, + "if": 2, + "specimenBox.__respondsTo": 1, + "specimenBox.offerContent": 1, + "else": 1, + "for": 3, + "auth": 3, + "in": 1, + "throw.eject": 1, + "Unmatched": 1, + "authorization": 1, + "__respondsTo": 2, + "_": 3, + "true": 1, + "false": 1, + "__getAllegedType": 1, + "null.__getAllegedType": 1, + "tempVow": 2, + "#...use": 1, + "#....": 1, + "report": 1, + "problem": 1, + "finally": 1, + "#....log": 1, + "event": 1, + "#File": 1, + "objects": 1, + "hardwired": 1, + "files": 1, + "file1": 1, + "": 1, + "file2": 1, + "": 1, + "#Using": 2, + "a": 4, + "variable": 1, + "filePath": 2, + "file3": 1, + "": 1, + "single": 1, + "character": 1, + "specify": 1, + "Windows": 1, + "drive": 1, + "file4": 1, + "": 1, + "file5": 1, + "": 1, + "file6": 1, + "": 1 + }, + "DM": { + "#define": 4, + "PI": 6, + "#if": 1, + "G": 1, + "#elif": 1, + "I": 1, + "#else": 1, + "K": 1, + "#endif": 1, + "var/GlobalCounter": 1, + "var/const/CONST_VARIABLE": 1, + "var/list/MyList": 1, + "list": 3, + "(": 17, + "new": 1, + "/datum/entity": 2, + ")": 17, + "var/list/EmptyList": 1, + "[": 2, + "]": 2, + "//": 6, + "creates": 1, + "a": 1, + "of": 1, + "null": 2, + "entries": 1, + "var/list/NullList": 1, + "var/name": 1, + "var/number": 1, + "/datum/entity/proc/myFunction": 1, + "world.log": 5, + "<<": 5, + "/datum/entity/New": 1, + "number": 2, + "GlobalCounter": 1, + "+": 3, + "/datum/entity/unit": 1, + "name": 1, + "/datum/entity/unit/New": 1, + "..": 1, + "calls": 1, + "the": 2, + "parent": 1, "s": 1, - "space": 1, - "cons": 1, - "glutMainLoop": 1, - "library": 1, - "libs": 1, - "export": 1, - "list2": 2, - "objs": 2, + "proc": 1, + ";": 3, + "equal": 1, + "to": 1, + "super": 1, + "and": 1, + "base": 1, + "in": 1, + "other": 1, + "languages": 1, + "rand": 1, + "/datum/entity/unit/myFunction": 1, + "/proc/ReverseList": 1, + "var/list/input": 1, + "var/list/output": 1, + "for": 1, + "var/i": 1, + "input.len": 1, + "i": 3, + "-": 2, + "IMPORTANT": 1, + "List": 1, + "Arrays": 1, + "count": 1, + "from": 1, + "output": 2, + "input": 1, + "is": 2, + "return": 3, + "/proc/DoStuff": 1, + "var/bitflag": 2, + "bitflag": 4, + "|": 1, + "/proc/DoOtherStuff": 1, + "bits": 1, + "maximum": 1, + "amount": 1, + "&": 1, + "/proc/DoNothing": 1, + "var/pi": 1, + "if": 2, + "pi": 2, + "else": 2, + "CONST_VARIABLE": 1, + "#undef": 1, + "Undefine": 1 + }, + "OpenCL": { + "double": 3, + "run_fftw": 1, + "(": 18, + "int": 3, + "n": 4, + "const": 4, + "float": 3, + "*": 5, + "x": 5, + "y": 4, + ")": 18, + "{": 4, + "fftwf_plan": 1, + "p1": 3, + "fftwf_plan_dft_1d": 1, + "fftwf_complex": 2, + "FFTW_FORWARD": 1, + "FFTW_ESTIMATE": 1, + ";": 12, + "nops": 3, + "t": 4, + "cl": 2, + "realTime": 2, + "for": 1, + "op": 3, + "<": 1, + "+": 4, + "fftwf_execute": 1, + "}": 4, + "-": 1, + "/": 1, + "fftwf_destroy_plan": 1, + "return": 1, + "typedef": 1, + "foo_t": 3, + "#ifndef": 1, + "ZERO": 3, + "#define": 2, + "#endif": 1, + "FOO": 1, + "__kernel": 1, + "void": 1, + "foo": 1, + "__global": 1, + "__local": 1, + "uint": 1, + "barrier": 1, + "CLK_LOCAL_MEM_FENCE": 1, + "if": 1, + "*x": 1 + }, + "ShellSession": { + "gem": 4, + "install": 4, + "nokogiri": 6, + "...": 4, + "Building": 2, + "native": 2, + "extensions.": 2, + "This": 4, + "could": 2, + "take": 2, + "a": 4, + "while...": 2, + "checking": 1, + "for": 4, + "libxml/parser.h...": 1, + "***": 2, + "extconf.rb": 1, + "failed": 1, + "Could": 2, + "not": 2, + "create": 1, + "Makefile": 1, + "due": 1, + "to": 3, + "some": 1, + "reason": 2, + "probably": 1, + "lack": 1, + "of": 2, + "necessary": 1, + "libraries": 1, + "and/or": 1, + "headers.": 1, + "Check": 1, + "the": 2, + "mkmf.log": 1, + "file": 1, + "more": 1, + "details.": 1, + "You": 1, + "may": 1, + "need": 1, + "configuration": 1, + "options.": 1, + "brew": 2, + "tap": 2, + "homebrew/dupes": 1, + "Cloning": 1, + "into": 1, + "remote": 3, + "Counting": 1, + "objects": 3, + "done.": 4, + "Compressing": 1, + "%": 5, + "(": 6, + "/591": 1, + ")": 6, + "Total": 1, + "delta": 2, + "reused": 1, + "Receiving": 1, + "/1034": 1, + "KiB": 1, + "|": 1, + "bytes/s": 1, + "Resolving": 1, + "deltas": 1, + "/560": 1, + "Checking": 1, + "connectivity...": 1, + "done": 1, + "Warning": 1, + "homebrew/dupes/lsof": 1, + "over": 1, + "mxcl/master/lsof": 1, + "Tapped": 1, + "formula": 4, + "apple": 1, + "-": 12, + "gcc42": 1, + "Downloading": 1, + "http": 2, + "//r.research.att.com/tools/gcc": 1, + "darwin11.pkg": 1, + "########################################################################": 1, + "Caveats": 1, + "NOTE": 1, + "provides": 1, + "components": 1, + "that": 1, + "were": 1, + "removed": 1, + "from": 3, + "XCode": 2, + "in": 2, + "release.": 1, + "There": 1, + "is": 2, + "no": 1, + "this": 1, + "if": 1, + "you": 1, + "are": 1, + "using": 1, + "version": 1, + "prior": 1, + "contains": 1, + "compilers": 2, + "built": 2, + "Apple": 1, + "s": 1, + "GCC": 1, + "sources": 1, + "build": 1, + "available": 1, + "//opensource.apple.com/tarballs/gcc": 1, + "All": 1, + "have": 1, + "suffix.": 1, + "A": 1, + "GFortran": 1, + "compiler": 1, + "also": 1, + "included.": 1, + "Summary": 1, + "/usr/local/Cellar/apple": 1, + "gcc42/4.2.1": 1, + "files": 1, + "M": 1, + "seconds": 1, + "v": 1, + "Fetching": 1, + "Successfully": 1, + "installed": 2, + "Installing": 2, + "ri": 1, + "documentation": 2, + "RDoc": 1, + "echo": 2, + "FOOBAR": 2, + "Hello": 2, + "World": 2 + }, + "GLSL": { + "#version": 2, + "core": 1, + "void": 31, + "main": 5, + "(": 435, + ")": 435, + "{": 82, + "}": 82, + "float": 105, + "cbar": 2, + "int": 8, + ";": 383, + "cfoo": 1, + "CB": 2, + "CD": 2, + "CA": 1, + "CC": 1, + "CBT": 5, + "CDT": 3, + "CAT": 1, + "CCT": 1, + "norA": 4, + "norB": 3, + "norC": 1, + "norD": 1, + "norE": 4, + "norF": 1, + "norG": 1, + "norH": 1, + "norI": 1, + "norcA": 2, + "norcB": 3, + "norcC": 2, + "norcD": 2, + "//": 38, + "head": 1, + "of": 1, + "cycle": 2, + "norcE": 1, + "lead": 1, + "into": 1, + "////": 4, + "High": 1, + "quality": 2, + "Some": 1, + "browsers": 1, + "may": 1, + "freeze": 1, + "or": 1, + "crash": 1, + "//#define": 10, + "HIGHQUALITY": 2, + "Medium": 1, + "Should": 1, + "be": 1, + "fine": 1, + "on": 3, + "all": 1, + "systems": 1, + "works": 1, + "Intel": 1, + "HD2000": 1, + "Win7": 1, + "but": 1, + "quite": 1, + "slow": 1, + "MEDIUMQUALITY": 2, + "Defaults": 1, + "REFLECTIONS": 3, + "#define": 13, + "SHADOWS": 5, + "GRASS": 3, + "SMALL_WAVES": 4, + "RAGGED_LEAVES": 5, + "DETAILED_NOISE": 3, + "LIGHT_AA": 3, + "sample": 2, + "SSAA": 2, + "HEAVY_AA": 2, + "x2": 5, + "RG": 1, + "TONEMAP": 5, + "Configurations": 1, + "#ifdef": 14, + "#endif": 14, + "const": 19, + "eps": 5, + "e": 4, + "-": 108, + "PI": 3, + "vec3": 165, + "sunDir": 5, + "skyCol": 4, + "sandCol": 2, + "treeCol": 2, + "grassCol": 2, + "leavesCol": 4, + "leavesPos": 4, + "sunCol": 5, + "#else": 5, + "exposure": 1, + "Only": 1, + "used": 1, + "when": 1, + "tonemapping": 1, + "mod289": 4, + "x": 11, + "return": 47, + "floor": 8, + "*": 115, + "/": 24, + "vec4": 73, + "permute": 4, + "x*34.0": 1, + "+": 108, + "*x": 3, + "taylorInvSqrt": 2, + "r": 14, + "snoise": 7, + "v": 8, + "vec2": 26, + "C": 1, + "/6.0": 1, + "/3.0": 1, + "D": 1, + "i": 38, + "dot": 30, + "C.yyy": 2, + "x0": 7, + "C.xxx": 2, + "g": 2, + "step": 2, + "x0.yzx": 1, + "x0.xyz": 1, + "l": 1, + "i1": 2, + "min": 11, + "g.xyz": 2, + "l.zxy": 2, + "i2": 2, + "max": 9, + "x1": 4, + "*C.x": 2, + "/3": 1, + "C.y": 1, + "x3": 4, + "D.yyy": 1, + "D.y": 1, + "p": 26, + "i.z": 1, + "i1.z": 1, + "i2.z": 1, + "i.y": 1, + "i1.y": 1, + "i2.y": 1, + "i.x": 1, + "i1.x": 1, + "i2.x": 1, + "n_": 2, + "/7.0": 1, + "ns": 4, + "D.wyz": 1, + "D.xzx": 1, + "j": 4, + "ns.z": 3, + "mod": 2, + "*7": 1, + "x_": 3, + "y_": 2, + "N": 1, + "*ns.x": 2, + "ns.yyyy": 2, + "y": 2, + "h": 21, + "abs": 2, + "b0": 3, + "x.xy": 1, + "y.xy": 1, + "b1": 3, + "x.zw": 1, + "y.zw": 1, + "//vec4": 3, + "s0": 2, + "lessThan": 2, + "*2.0": 4, + "s1": 2, + "sh": 1, + "a0": 1, + "b0.xzyw": 1, + "s0.xzyw*sh.xxyy": 1, + "a1": 1, + "b1.xzyw": 1, + "s1.xzyw*sh.zzww": 1, + "p0": 5, + "a0.xy": 1, + "h.x": 1, + "p1": 5, + "a0.zw": 1, + "h.y": 1, + "p2": 5, + "a1.xy": 1, + "h.z": 1, + "p3": 5, + "a1.zw": 1, + "h.w": 1, + "//Normalise": 1, + "gradients": 1, + "norm": 1, + "norm.x": 1, + "norm.y": 1, + "norm.z": 1, + "norm.w": 1, + "m": 8, + "m*m": 1, + "fbm": 2, + "final": 5, + "waterHeight": 4, + "d": 10, + "length": 7, + "p.xz": 2, + "sin": 8, + "iGlobalTime": 7, + "Island": 1, + "waves": 3, + "p*0.5": 1, + "Other": 1, + "bump": 2, + "pos": 42, + "rayDir": 43, + "s": 23, + "Fade": 1, + "out": 1, + "to": 1, + "reduce": 1, + "aliasing": 1, + "dist": 7, + "<": 23, + "sqrt": 6, + "Calculate": 1, + "normal": 7, + "from": 2, + "heightmap": 1, + "pos.x": 1, + "iGlobalTime*0.5": 1, + "pos.z": 2, + "*0.7": 1, + "*s": 4, + "normalize": 14, + "e.xyy": 1, + "e.yxy": 1, + "intersectSphere": 2, + "rpos": 5, + "rdir": 3, + "rad": 2, + "op": 5, + "b": 5, + "det": 11, + "b*b": 2, + "rad*rad": 2, + "if": 29, + "t": 44, + "rdir*t": 1, + "intersectCylinder": 1, + "rdir2": 2, + "rdir.yz": 1, + "op.yz": 3, + "rpos.yz": 2, + "rdir2*t": 2, + "pos.yz": 2, + "intersectPlane": 3, + "rayPos": 38, + "n": 18, + "sign": 1, + "rotate": 5, + "theta": 6, + "c": 6, + "cos": 4, + "p.x": 2, + "p.z": 2, + "p.y": 1, + "impulse": 2, + "k": 8, + "by": 1, + "iq": 2, + "k*x": 1, + "exp": 2, + "grass": 2, + "Optimization": 1, + "Avoid": 1, + "noise": 1, + "too": 1, + "far": 1, + "away": 1, + "pos.y": 8, + "tree": 2, + "pos.y*0.03": 2, + "mat2": 2, + "m*pos.xy": 1, + "width": 2, + "clamp": 4, + "scene": 7, + "vtree": 4, + "vgrass": 2, + ".x": 4, + "eps.xyy": 1, + "eps.yxy": 1, + "eps.yyx": 1, + "plantsShadow": 2, + "Soft": 1, + "shadow": 4, + "taken": 1, + "for": 7, + "rayDir*t": 2, + "res": 6, + "res.x": 3, + "k*res.x/t": 1, + "s*s*": 1, + "intersectWater": 2, + "rayPos.y": 1, + "rayDir.y": 1, + "intersectSand": 3, + "intersectTreasure": 2, + "intersectLeaf": 2, + "openAmount": 4, + "dir": 2, + "offset": 5, + "rayDir*res.w": 1, + "pos*0.8": 2, + "||": 3, + "res.w": 6, + "res2": 2, + "dir.xy": 1, + "dir.z": 1, + "rayDir*res2.w": 1, + "res2.w": 3, + "&&": 10, + "leaves": 7, + "e20": 3, + "sway": 5, + "fract": 1, + "upDownSway": 2, + "angleOffset": 3, + "Left": 1, + "right": 1, + "alpha": 3, + "Up": 1, + "down": 1, + "k*10.0": 1, + "p.xzy": 1, + ".xzy": 2, + "d.xzy": 1, + "Shift": 1, + "Intersect": 11, + "individual": 1, + "leaf": 1, + "res.xyz": 1, + "sand": 2, + "resSand": 2, + "//if": 1, + "resSand.w": 4, + "plants": 6, + "resLeaves": 3, + "resLeaves.w": 10, + "e7": 3, + "light": 5, + "sunDir*0.01": 2, + "col": 32, + "n.y": 3, + "lightLeaves": 3, + "ao": 5, + "sky": 5, + "res.y": 2, + "uvFact": 2, + "uv": 12, + "n.x": 1, + "tex": 6, + "texture2D": 6, + "iChannel0": 3, + ".rgb": 2, + "e8": 1, + "traceReflection": 2, + "resPlants": 2, + "resPlants.w": 6, + "resPlants.xyz": 2, + "pos.xz": 2, + "leavesPos.xz": 2, + ".r": 3, + "resLeaves.xyz": 2, + "trace": 2, + "resSand.xyz": 1, + "treasure": 1, + "chest": 1, + "resTreasure": 1, + "resTreasure.w": 4, + "resTreasure.xyz": 1, + "water": 1, + "resWater": 1, + "resWater.w": 4, + "ct": 2, + "fresnel": 2, + "pow": 3, + "trans": 2, + "reflDir": 3, + "reflect": 1, + "refl": 3, + "resWater.t": 1, + "mix": 2, + "camera": 8, + "px": 4, + "rd": 1, + "iResolution.yy": 1, + "iResolution.x/iResolution.y*0.5": 1, + "rd.x": 1, + "rd.y": 1, + "gl_FragCoord.xy": 7, + "*0.25": 4, + "*0.5": 1, + "Optimized": 1, + "Haarm": 1, + "Peter": 1, + "Duiker": 1, + "curve": 1, + "col*exposure": 1, + "x*": 2, + ".5": 1, + "gl_FragColor": 3, + "uniform": 7, + "kCoeff": 2, + "kCube": 2, + "uShift": 3, + "vShift": 3, + "chroma_red": 2, + "chroma_green": 2, + "chroma_blue": 2, + "bool": 1, + "apply_disto": 4, + "sampler2D": 1, + "input1": 4, + "adsk_input1_w": 4, + "adsk_input1_h": 3, + "adsk_input1_aspect": 1, + "adsk_input1_frameratio": 5, + "adsk_result_w": 3, + "adsk_result_h": 2, + "distortion_f": 3, + "f": 17, + "r*r": 1, + "inverse_f": 2, + "[": 29, + "]": 29, + "lut": 9, + "max_r": 2, + "incr": 2, + "lut_r": 5, + ".z": 5, + ".y": 2, + "aberrate": 4, + "chroma": 2, + "chromaticize_and_invert": 2, + "rgb_f": 5, + "px.x": 2, + "px.y": 2, + "uv.x": 11, + "uv.y": 7, + "*2": 2, + "uv.x*uv.x": 1, + "uv.y*uv.y": 1, + "else": 1, + "rgb_uvs": 12, + "rgb_f.rr": 1, + "rgb_f.gg": 1, + "rgb_f.bb": 1, + "sampled": 1, + "sampled.r": 1, + "sampled.g": 1, + ".g": 1, + "sampled.b": 1, + ".b": 1, + "gl_FragColor.rgba": 1, + "sampled.rgb": 1, + "static": 1, + "char*": 1, + "SimpleFragmentShader": 1, + "STRINGIFY": 1, + "varying": 4, + "FrontColor": 2, + "NUM_LIGHTS": 4, + "AMBIENT": 2, + "MAX_DIST": 3, + "MAX_DIST_SQUARED": 3, + "lightColor": 3, + "fragmentNormal": 2, + "cameraVector": 2, + "lightVector": 4, + "initialize": 1, + "diffuse/specular": 1, + "lighting": 1, + "diffuse": 4, + "specular": 4, + "the": 1, + "fragment": 1, + "and": 2, + "direction": 1, + "cameraDir": 2, + "loop": 1, + "through": 1, + "each": 1, + "calculate": 1, + "distance": 1, + "between": 1, + "distFactor": 3, + "lightDir": 3, + "diffuseDot": 2, + "halfAngle": 2, + "specularColor": 2, + "specularDot": 2, + "sample.rgb": 1, + "sample.a": 1 + }, + "ECL": { + "#option": 1, + "(": 32, + "true": 1, + ")": 32, + ";": 23, + "namesRecord": 4, + "RECORD": 1, + "string20": 1, + "surname": 1, + "string10": 2, + "forename": 1, + "integer2": 5, + "age": 2, + "dadAge": 1, + "mumAge": 1, + "END": 1, + "namesRecord2": 3, + "record": 1, + "extra": 1, + "end": 1, + "namesTable": 11, + "dataset": 2, + "FLAT": 2, + "namesTable2": 9, + "aveAgeL": 3, + "l": 1, + "l.dadAge": 1, + "+": 16, + "l.mumAge": 1, + "/2": 2, + "aveAgeR": 4, + "r": 1, + "r.dadAge": 1, + "r.mumAge": 1, + "output": 9, + "join": 11, + "left": 2, + "right": 3, + "//Several": 1, + "simple": 1, + "examples": 1, + "of": 1, + "sliding": 2, + "syntax": 1, + "left.age": 8, + "right.age": 12, + "-": 5, + "and": 10, + "<": 1, + "between": 7, + "//Same": 1, + "but": 1, + "on": 1, + "strings.": 1, + "Also": 1, + "includes": 1, + "to": 1, + "ensure": 1, + "sort": 1, + "is": 1, + "done": 1, + "by": 1, + "non": 1, + "before": 1, + "sliding.": 1, + "left.surname": 2, + "right.surname": 4, + "[": 4, + "]": 4, + "all": 1, + "//This": 1, "should": 1, "not": 1, - "be": 1, - "exported": 1 + "generate": 1, + "a": 1, + "self": 1 }, - "Scilab": { + "Makefile": { + "SHEBANG#!make": 1, + "%": 1, + "ls": 1, + "-": 6, + "l": 1, + "all": 1, + "hello": 4, + "main.o": 3, + "factorial.o": 3, + "hello.o": 3, + "g": 4, + "+": 8, + "o": 1, + "main.cpp": 2, + "c": 3, + "factorial.cpp": 2, + "hello.cpp": 2, + "clean": 1, + "rm": 1, + "rf": 1, + "*o": 1 + }, + "Haskell": { + "module": 2, + "Sudoku": 9, + "(": 8, + "solve": 5, + "isSolved": 4, + "pPrint": 5, + ")": 8, + "where": 4, + "import": 6, + "Data.Maybe": 2, + "Data.List": 1, + "Data.List.Split": 1, + "type": 1, + "[": 4, + "Int": 1, + "]": 3, + "-": 3, + "Maybe": 1, + "sudoku": 36, + "|": 8, + "Just": 1, + "otherwise": 2, + "do": 3, + "index": 27, + "<": 1, + "elemIndex": 1, + "let": 2, + "sudokus": 2, + "nextTest": 5, + "i": 7, + "<->": 1, + "1": 2, + "9": 7, + "checkRow": 2, + "checkColumn": 2, + "checkBox": 2, + "listToMaybe": 1, + "mapMaybe": 1, + "take": 1, + "drop": 1, + "length": 12, + "getRow": 3, + "nub": 6, + "getColumn": 3, + "getBox": 3, + "filter": 3, + "0": 3, + "chunksOf": 10, + "quot": 3, + "transpose": 4, + "mod": 2, + "map": 13, + "concat": 2, + "concatMap": 2, + "3": 4, + "27": 1, + "Bool": 1, + "product": 1, + "False": 4, + ".": 4, + "sudokuRows": 4, + "/": 3, + "sudokuColumns": 3, + "sudokuBoxes": 3, + "True": 1, + "String": 1, + "intercalate": 2, + "show": 1, + "Data.Char": 1, + "main": 4, + "IO": 2, + "hello": 2, + "putStrLn": 3, + "toUpper": 1, + "Main": 1, + "+": 2, + "fromMaybe": 1 + }, + "Slim": { + "doctype": 1, + "html": 2, + "head": 1, + "title": 1, + "Slim": 2, + "Examples": 1, + "meta": 2, + "name": 2, + "content": 2, + "author": 2, + "javascript": 1, + "alert": 1, + "(": 1, + ")": 1, + "body": 1, + "h1": 1, + "Markup": 1, + "examples": 1, + "#content": 1, + "p": 2, + "This": 1, + "example": 1, + "shows": 1, + "you": 2, + "how": 1, + "a": 1, + "basic": 1, + "file": 1, + "looks": 1, + "like.": 1, + "yield": 1, + "-": 3, + "unless": 1, + "items.empty": 1, + "table": 1, + "for": 1, + "item": 1, + "in": 1, + "items": 2, + "do": 1, + "tr": 1, + "td.name": 1, + "item.name": 1, + "td.price": 1, + "item.price": 1, + "else": 1, + "|": 2, + "No": 1, + "found.": 1, + "Please": 1, + "add": 1, + "some": 1, + "inventory.": 1, + "Thank": 1, + "div": 1, + "id": 1, + "render": 1, + "Copyright": 1, + "#": 2, + "{": 2, + "year": 1, + "}": 2 + }, + "Zephir": { + "namespace": 3, + "Test": 2, + "Router": 1, + ";": 86, + "class": 2, + "Route": 1, + "{": 56, + "protected": 9, + "_pattern": 3, + "_compiledPattern": 3, + "_paths": 3, + "_methods": 5, + "_hostname": 3, + "_converters": 3, + "_id": 2, + "_name": 3, + "_beforeMatch": 3, + "public": 22, + "function": 22, + "__construct": 1, + "(": 55, + "pattern": 37, + "paths": 7, + "null": 11, + "httpMethods": 6, + ")": 53, + "this": 28, + "-": 25, + "reConfigure": 2, + "let": 51, + "}": 50, + "compilePattern": 2, + "var": 4, + "idPattern": 6, + "if": 39, + "memstr": 10, + "str_replace": 6, + "return": 25, + ".": 5, + "via": 1, + "extractNamedParams": 2, + "string": 6, + "char": 1, + "ch": 27, + "tmp": 4, + "matches": 5, + "boolean": 1, + "notValid": 5, + "false": 3, + "int": 3, + "cursor": 4, + "cursorVar": 5, + "marker": 4, + "bracketCount": 7, + "parenthesesCount": 5, + "foundPattern": 6, + "intermediate": 4, + "numberMatches": 4, + "route": 12, + "item": 7, + "variable": 5, + "regexp": 7, + "strlen": 1, + "<=>": 5, + "0": 9, + "for": 4, + "in": 4, + "1": 3, + "else": 11, + "+": 5, + "substr": 3, + "break": 9, + "&&": 6, + "z": 2, + "Z": 2, + "true": 2, + "<='9')>": 1, + "_": 1, + "2": 2, + "continue": 1, + "[": 14, + "]": 14, + "moduleName": 5, + "controllerName": 7, + "actionName": 4, + "parts": 9, + "routePaths": 5, + "realClassName": 1, + "namespaceName": 1, + "pcrePattern": 4, + "compiledPattern": 4, + "extracted": 4, + "typeof": 2, + "throw": 1, + "new": 1, + "Exception": 1, + "explode": 1, + "switch": 1, + "count": 1, + "case": 3, + "controller": 1, + "action": 1, + "array": 1, + "The": 1, + "contains": 1, + "invalid": 1, + "#": 1, + "array_merge": 1, + "//Update": 1, + "the": 1, + "s": 1, + "name": 5, + "*": 2, + "@return": 1, + "*/": 1, + "getName": 1, + "setName": 1, + "beforeMatch": 1, + "callback": 2, + "getBeforeMatch": 1, + "getRouteId": 1, + "getPattern": 1, + "getCompiledPattern": 1, + "getPaths": 1, + "getReversedPaths": 1, + "reversed": 4, + "path": 3, + "position": 3, + "setHttpMethods": 1, + "getHttpMethods": 1, + "setHostname": 1, + "hostname": 2, + "getHostname": 1, + "convert": 1, + "converter": 2, + "getConverters": 1, + "%": 10, + "#define": 1, + "MAX_FACTOR": 3, + "#include": 1, + "static": 1, + "long": 3, + "fibonacci": 4, + "n": 5, + "<": 1, + "Cblock": 1, + "testCblock1": 1, + "a": 6, + "testCblock2": 1 + }, + "INI": { + "[": 2, + "user": 1, + "]": 2, + "name": 1, + "Josh": 1, + "Peek": 1, + "email": 1, + "josh@github.com": 1, + ";": 1, + "editorconfig.org": 1, + "root": 1, + "true": 3, + "*": 1, + "indent_style": 1, + "space": 1, + "indent_size": 1, + "end_of_line": 1, + "lf": 1, + "charset": 1, + "utf": 1, + "-": 1, + "trim_trailing_whitespace": 1, + "insert_final_newline": 1 + }, + "OCaml": { + "{": 11, + "shared": 1, + "open": 4, + "Eliom_content": 1, + "Html5.D": 1, + "Eliom_parameter": 1, + "}": 13, + "server": 2, + "module": 5, + "Example": 1, + "Eliom_registration.App": 1, + "(": 21, + "struct": 5, + "let": 13, + "application_name": 1, + "end": 5, + ")": 23, + "main": 2, + "Eliom_service.service": 1, + "path": 1, + "[": 13, + "]": 13, + "get_params": 1, + "unit": 5, + "client": 1, + "hello_popup": 2, + "Dom_html.window##alert": 1, + "Js.string": 1, + "_": 2, + "Example.register": 1, + "service": 1, + "fun": 9, + "-": 22, + "Lwt.return": 1, + "html": 1, + "head": 1, + "title": 1, + "pcdata": 4, + "body": 1, + "h1": 1, + ";": 14, + "p": 1, + "h2": 1, + "a": 4, + "a_onclick": 1, + "type": 2, + "Ops": 2, + "@": 6, + "f": 10, + "k": 21, + "|": 15, + "x": 14, + "List": 1, + "rec": 3, + "map": 3, + "l": 8, + "match": 4, + "with": 4, + "hd": 6, + "tl": 6, + "fold": 2, + "acc": 5, + "Option": 1, + "opt": 2, + "None": 5, + "Some": 5, + "Lazy": 1, + "option": 1, + "mutable": 1, + "waiters": 5, + "make": 1, + "push": 4, + "cps": 7, + "value": 3, + "force": 1, + "l.value": 2, + "when": 1, + "l.waiters": 5, + "<->": 3, "function": 1, +<<<<<<< HEAD "[": 1, "a": 4, "b": 4, @@ -61616,1058 +101743,154 @@ "else": 10, "rm": 2, "rf": 1, - "package": 1, - "PREFIX": 1, - "/usr": 1, - "DESTDIR": 1, - "Dm755": 1, - "init.stud": 1, - "mkdir": 2, - "p": 2, - "script": 1, - "dotfile": 1, - "repository": 3, - "does": 1, - "lot": 1, - "fun": 2, - "stuff": 3, - "like": 1, - "turning": 1, - "normal": 1, - "dotfiles": 1, - "eg": 1, - ".bashrc": 1, - "symlinks": 1, - "away": 1, - "optionally": 1, - "moving": 1, - "old": 4, - "files": 1, - "so": 1, - "that": 1, - "they": 1, - "preserved": 1, - "setting": 2, - "up": 1, - "cron": 1, - "automate": 1, - "aforementioned": 1, - "maybe": 1, - "some": 1, - "nocasematch": 1, - "This": 1, - "makes": 1, - "pattern": 1, - "matching": 1, - "insensitive": 1, - "POSTFIX": 1, - "URL": 1, - "PUSHURL": 1, - "overwrite": 3, - "true": 2, - "print_help": 2, - "e": 4, - "opt": 3, - "@": 3, - "k": 1, - "local": 22, - "false": 2, - "h": 3, - ".*": 2, - "o": 3, - "continue": 1, - "mv": 1, - "ln": 1, - "remote.origin.url": 1, - "remote.origin.pushurl": 1, - "crontab": 1, - ".jobs.cron": 1, - "x": 1, - "system": 1, - "exec": 3, - "rbenv": 2, - "versions": 1, - "bare": 1, - "&": 5, - "prefix": 1, - "/dev/null": 6, - "rvm_ignore_rvmrc": 1, - "declare": 22, - "rvmrc": 3, - "rvm_rvmrc_files": 3, - "ef": 1, - "+": 1, - "GREP_OPTIONS": 1, - "printf": 4, - "rvm_path": 4, - "UID": 1, - "elif": 4, - "rvm_is_not_a_shell_function": 2, - "rvm_path/scripts": 1, - "rvm": 1, - "sbt_release_version": 2, - "sbt_snapshot_version": 2, - "SNAPSHOT": 3, - "sbt_jar": 3, - "sbt_dir": 2, - "sbt_create": 2, - "sbt_snapshot": 1, - "sbt_launch_dir": 3, - "scala_version": 3, - "java_home": 1, - "sbt_explicit_version": 7, - "verbose": 6, - "debug": 11, - "quiet": 6, - "build_props_sbt": 3, - "project/build.properties": 9, - "versionLine": 2, - "sbt.version": 3, - "versionString": 3, - "versionLine##sbt.version": 1, - "update_build_props_sbt": 2, - "ver": 5, - "return": 3, - "perl": 3, - "pi": 1, - "||": 12, - "Updated": 1, - "Previous": 1, - "value": 1, - "was": 1, - "sbt_version": 8, - "echoerr": 3, - "vlog": 1, - "dlog": 8, - "get_script_path": 2, - "L": 1, - "target": 1, - "readlink": 1, - "get_mem_opts": 3, - "mem": 4, - "perm": 6, - "/": 2, - "<": 2, - "codecache": 1, - "die": 2, - "make_url": 3, - "groupid": 1, - "category": 1, - "default_jvm_opts": 1, - "default_sbt_opts": 1, - "default_sbt_mem": 2, - "noshare_opts": 1, - "sbt_opts_file": 1, - "jvm_opts_file": 1, - "latest_28": 1, - "latest_29": 1, - "latest_210": 1, - "script_path": 1, - "script_dir": 1, - "script_name": 2, - "java_cmd": 2, - "java": 2, - "sbt_mem": 5, - "residual_args": 4, - "java_args": 3, - "scalac_args": 4, - "sbt_commands": 2, - "build_props_scala": 1, - "build.scala.versions": 1, - "versionLine##build.scala.versions": 1, - "execRunner": 2, - "arg": 3, - "sbt_groupid": 3, - "*": 11, - "org.scala": 4, - "tools.sbt": 3, - "sbt": 18, - "sbt_artifactory_list": 2, - "version0": 2, - "F": 1, - "pe": 1, - "make_release_url": 2, - "releases": 1, - "make_snapshot_url": 2, - "snapshots": 1, - "head": 1, - "jar_url": 1, - "jar_file": 1, - "download_url": 2, - "jar": 3, - "dirname": 1, - "fail": 1, - "silent": 1, - "output": 1, - "wget": 2, - "O": 1, - "acquire_sbt_jar": 1, - "sbt_url": 1, - "usage": 2, - "cat": 3, - "<<": 2, - "EOM": 3, - "Usage": 1, - "print": 1, - "message": 1, - "runner": 1, - "chattier": 1, - "log": 2, - "level": 2, - "Debug": 1, - "Error": 1, - "colors": 2, - "disable": 1, - "ANSI": 1, - "color": 1, - "codes": 1, - "create": 2, - "start": 1, - "current": 1, - "contains": 2, - "project": 1, - "dir": 3, - "": 3, - "global": 1, - "settings/plugins": 1, - "default": 4, - "/.sbt/": 1, - "": 1, - "boot": 3, - "shared": 1, - "/.sbt/boot": 1, - "series": 1, - "ivy": 2, - "Ivy": 1, - "/.ivy2": 1, - "": 1, - "share": 2, - "use": 1, - "all": 1, - "caches": 1, - "sharing": 1, - "offline": 3, - "put": 1, - "mode": 2, - "jvm": 2, - "": 1, - "Turn": 1, - "JVM": 1, - "debugging": 1, - "open": 1, - "at": 1, - "given": 2, - "port.": 1, - "batch": 2, - "Disable": 1, - "interactive": 1, - "The": 1, - "way": 1, - "accomplish": 1, - "pre": 1, - "there": 2, - "build.properties": 1, - "an": 1, - "property": 1, - "disk.": 1, - "That": 1, - "scalacOptions": 3, - "S": 2, - "stripped": 1, - "In": 1, - "duplicated": 1, - "conflicting": 1, - "order": 1, - "above": 1, - "shows": 1, - "precedence": 1, - "JAVA_OPTS": 1, - "lowest": 1, - "line": 1, - "highest.": 1, - "addJava": 9, - "addSbt": 12, - "addScalac": 2, - "addResidual": 2, - "addResolver": 1, - "addDebugger": 2, - "get_jvm_opts": 2, - "process_args": 2, - "require_arg": 12, - "gt": 1, - "shift": 28, - "integer": 1, - "inc": 1, - "port": 1, - "snapshot": 1, - "launch": 1, - "scala": 3, - "home": 2, - "D*": 1, - "J*": 1, - "S*": 1, - "sbtargs": 3, - "IFS": 1, - "read": 1, - "<\"$sbt_opts_file\">": 1, - "process": 1, - "combined": 1, - "args": 2, - "reset": 1, - "residuals": 1, - "argumentCount=": 1, - "we": 1, - "were": 1, - "any": 1, - "opts": 1, - "eq": 1, - "0": 1, - "ThisBuild": 1, - "Update": 1, - "properties": 1, - "explicit": 1, - "gives": 1, - "us": 1, - "choice": 1, - "Detected": 1, - "Overriding": 1, - "alert": 1, - "them": 1, - "here": 1, - "argumentCount": 1, - "./build.sbt": 1, - "./project": 1, - "pwd": 1, - "doesn": 1, - "understand": 1, - "iflast": 1, - "#residual_args": 1, - "SHEBANG#!sh": 2, - "SHEBANG#!zsh": 2, - "name": 1, - "foodforthought.jpg": 1, - "name##*fo": 1 - }, - "ShellSession": { - "echo": 2, - "FOOBAR": 2, - "Hello": 2, - "World": 2, - "gem": 4, - "install": 4, - "nokogiri": 6, - "...": 4, - "Building": 2, - "native": 2, - "extensions.": 2, - "This": 4, - "could": 2, - "take": 2, - "a": 4, - "while...": 2, - "checking": 1, - "for": 4, - "libxml/parser.h...": 1, - "***": 2, - "extconf.rb": 1, - "failed": 1, - "Could": 2, - "not": 2, - "create": 1, - "Makefile": 1, - "due": 1, - "to": 3, - "some": 1, - "reason": 2, - "probably": 1, - "lack": 1, - "of": 2, - "necessary": 1, - "libraries": 1, - "and/or": 1, - "headers.": 1, - "Check": 1, - "the": 2, - "mkmf.log": 1, - "file": 1, - "more": 1, - "details.": 1, - "You": 1, - "may": 1, - "need": 1, - "configuration": 1, - "options.": 1, - "brew": 2, - "tap": 2, - "homebrew/dupes": 1, - "Cloning": 1, - "into": 1, - "remote": 3, - "Counting": 1, - "objects": 3, - "done.": 4, - "Compressing": 1, - "%": 5, - "(": 6, - "/591": 1, - ")": 6, - "Total": 1, - "delta": 2, - "reused": 1, - "Receiving": 1, - "/1034": 1, - "KiB": 1, - "|": 1, - "bytes/s": 1, - "Resolving": 1, - "deltas": 1, - "/560": 1, - "Checking": 1, - "connectivity...": 1, - "done": 1, - "Warning": 1, - "homebrew/dupes/lsof": 1, - "over": 1, - "mxcl/master/lsof": 1, - "Tapped": 1, - "formula": 4, - "apple": 1, - "-": 12, - "gcc42": 1, - "Downloading": 1, - "http": 2, - "//r.research.att.com/tools/gcc": 1, - "darwin11.pkg": 1, - "########################################################################": 1, - "Caveats": 1, - "NOTE": 1, - "provides": 1, - "components": 1, - "that": 1, - "were": 1, - "removed": 1, - "from": 3, - "XCode": 2, - "in": 2, - "release.": 1, - "There": 1, - "is": 2, - "no": 1, - "this": 1, - "if": 1, - "you": 1, - "are": 1, - "using": 1, - "version": 1, - "prior": 1, - "contains": 1, - "compilers": 2, - "built": 2, - "Apple": 1, - "s": 1, - "GCC": 1, - "sources": 1, - "build": 1, - "available": 1, - "//opensource.apple.com/tarballs/gcc": 1, - "All": 1, - "have": 1, - "suffix.": 1, - "A": 1, - "GFortran": 1, - "compiler": 1, - "also": 1, - "included.": 1, - "Summary": 1, - "/usr/local/Cellar/apple": 1, - "gcc42/4.2.1": 1, - "files": 1, - "M": 1, - "seconds": 1, - "v": 1, - "Fetching": 1, - "Successfully": 1, - "installed": 2, - "Installing": 2, - "ri": 1, - "documentation": 2, - "RDoc": 1 - }, - "Shen": { - "*": 47, - "graph.shen": 1, - "-": 747, - "a": 30, - "library": 3, - "for": 12, - "graph": 52, - "definition": 1, - "and": 16, - "manipulation": 1, - "Copyright": 2, - "(": 267, - "C": 6, - ")": 250, - "Eric": 2, - "Schulte": 2, - "***": 5, - "License": 2, - "Redistribution": 2, - "use": 2, - "in": 13, - "source": 4, - "binary": 4, - "forms": 2, - "with": 8, - "or": 2, - "without": 2, - "modification": 2, - "are": 7, - "permitted": 2, - "provided": 4, - "that": 3, - "the": 29, - "following": 6, - "conditions": 6, - "met": 2, - "Redistributions": 4, - "of": 20, - "code": 2, - "must": 4, - "retain": 2, - "above": 4, - "copyright": 4, - "notice": 4, - "this": 4, - "list": 32, - "disclaimer.": 2, - "form": 2, - "reproduce": 2, - "disclaimer": 2, - "documentation": 2, - "and/or": 2, - "other": 2, - "materials": 2, - "distribution.": 2, - "THIS": 4, - "SOFTWARE": 4, - "IS": 2, - "PROVIDED": 2, - "BY": 2, - "THE": 10, - "COPYRIGHT": 4, - "HOLDERS": 2, - "AND": 8, - "CONTRIBUTORS": 4, - "ANY": 8, - "EXPRESS": 2, - "OR": 16, - "IMPLIED": 4, - "WARRANTIES": 4, - "INCLUDING": 6, - "BUT": 4, - "NOT": 4, - "LIMITED": 4, - "TO": 4, - "OF": 16, - "MERCHANTABILITY": 2, - "FITNESS": 2, - "FOR": 4, - "A": 32, - "PARTICULAR": 2, - "PURPOSE": 2, - "ARE": 2, - "DISCLAIMED.": 2, - "IN": 6, - "NO": 2, - "EVENT": 2, - "SHALL": 2, - "HOLDER": 2, - "BE": 2, - "LIABLE": 2, - "DIRECT": 2, - "INDIRECT": 2, - "INCIDENTAL": 2, - "SPECIAL": 2, - "EXEMPLARY": 2, - "CONSEQUENTIAL": 2, - "DAMAGES": 2, - "PROCUREMENT": 2, - "SUBSTITUTE": 2, - "GOODS": 2, - "SERVICES": 2, - ";": 12, - "LOSS": 2, - "USE": 4, - "DATA": 2, - "PROFITS": 2, - "BUSINESS": 2, - "INTERRUPTION": 2, - "HOWEVER": 2, - "CAUSED": 2, - "ON": 2, - "THEORY": 2, - "LIABILITY": 4, - "WHETHER": 2, - "CONTRACT": 2, - "STRICT": 2, - "TORT": 2, - "NEGLIGENCE": 2, - "OTHERWISE": 2, - "ARISING": 2, - "WAY": 2, - "OUT": 2, - "EVEN": 2, - "IF": 2, - "ADVISED": 2, - "POSSIBILITY": 2, - "SUCH": 2, - "DAMAGE.": 2, - "Commentary": 2, - "Graphs": 1, - "represented": 1, - "as": 2, - "two": 1, - "dictionaries": 1, - "one": 2, - "vertices": 17, - "edges.": 1, - "It": 1, - "is": 5, - "important": 1, - "to": 16, - "note": 1, - "dictionary": 3, - "implementation": 1, - "used": 2, - "able": 1, - "accept": 1, - "arbitrary": 1, - "data": 17, - "structures": 1, - "keys.": 1, - "This": 1, - "structure": 2, - "technically": 1, - "encodes": 1, - "hypergraphs": 1, - "generalization": 1, - "graphs": 1, - "which": 1, - "each": 1, - "edge": 32, - "may": 1, - "contain": 2, - "any": 1, - "number": 12, - ".": 1, - "Examples": 1, - "regular": 1, - "G": 25, - "hypergraph": 1, - "H": 3, - "corresponding": 1, - "given": 4, - "below.": 1, - "": 3, - "Vertices": 11, - "Edges": 9, - "+": 33, - "Graph": 65, - "hash": 8, - "|": 103, - "key": 9, - "value": 17, - "b": 13, - "c": 11, - "g": 19, - "[": 93, - "]": 91, - "d": 12, - "e": 14, - "f": 10, - "Hypergraph": 1, - "h": 3, - "i": 3, - "j": 2, - "associated": 1, - "edge/vertex": 1, - "@p": 17, - "V": 48, - "#": 4, - "E": 20, - "edges": 17, - "M": 4, - "vertex": 29, - "associations": 1, - "size": 2, - "all": 3, - "stored": 1, - "dict": 39, - "sizeof": 4, - "int": 1, - "indices": 1, - "into": 1, - "&": 1, - "Edge": 11, - "dicts": 3, - "entry": 2, - "storage": 2, - "Vertex": 3, - "Code": 1, - "require": 2, - "sequence": 2, - "datatype": 1, - "dictoinary": 1, - "vector": 4, - "symbol": 1, - "package": 2, - "add": 25, - "has": 5, - "neighbors": 8, - "connected": 21, - "components": 8, - "partition": 7, - "bipartite": 3, - "included": 2, - "from": 3, - "take": 2, - "drop": 2, - "while": 2, - "range": 1, - "flatten": 1, - "filter": 2, - "complement": 1, - "seperate": 1, - "zip": 1, - "indexed": 1, - "reduce": 3, - "mapcon": 3, - "unique": 3, - "frequencies": 1, - "shuffle": 1, - "pick": 1, - "remove": 2, - "first": 2, - "interpose": 1, - "subset": 3, - "cartesian": 1, - "product": 1, - "<-dict>": 5, - "contents": 1, - "keys": 3, - "vals": 1, - "make": 10, - "define": 34, - "X": 4, - "<-address>": 5, - "0": 1, - "create": 1, - "specified": 1, - "sizes": 2, - "}": 22, - "Vertsize": 2, - "Edgesize": 2, - "let": 9, - "absvector": 1, - "do": 8, - "address": 5, - "defmacro": 3, - "macro": 3, - "return": 4, - "taking": 1, - "optional": 1, - "N": 7, - "vert": 12, - "1": 1, - "2": 3, - "{": 15, - "get": 3, - "Value": 3, - "if": 8, - "tuple": 3, - "fst": 3, - "error": 7, - "string": 3, - "resolve": 6, - "Vector": 2, - "Index": 2, - "Place": 6, - "nth": 1, - "<-vector>": 2, - "Vert": 5, - "Val": 5, - "trap": 4, - "snd": 2, - "map": 5, - "lambda": 1, - "w": 4, - "B": 2, - "Data": 2, - "w/o": 5, - "D": 4, - "update": 5, - "an": 3, - "s": 1, - "Vs": 4, - "Store": 6, - "<": 4, - "limit": 2, - "VertLst": 2, - "/.": 4, - "Contents": 5, - "adjoin": 2, - "length": 5, - "EdgeID": 3, - "EdgeLst": 2, - "p": 1, - "boolean": 4, - "Return": 1, - "Already": 5, - "New": 5, - "Reachable": 2, - "difference": 3, - "append": 1, - "including": 1, - "itself": 1, - "fully": 1, - "Acc": 2, - "true": 1, - "_": 1, - "VS": 4, - "Component": 6, - "ES": 3, - "Con": 8, - "verts": 4, - "cons": 1, - "place": 3, - "partitions": 1, - "element": 2, - "simple": 3, - "CS": 3, - "Neighbors": 3, - "empty": 1, - "intersection": 1, - "check": 1, - "tests": 1, - "set": 1, - "chris": 6, - "patton": 2, - "eric": 1, - "nobody": 2, - "fail": 1, - "when": 1, - "wrapper": 1, - "function": 1, - "html.shen": 1, - "html": 2, - "generation": 1, - "functions": 1, - "shen": 1, - "The": 1, - "standard": 1, - "lisp": 1, - "conversion": 1, - "tool": 1, - "suite.": 1, - "Follows": 1, - "some": 1, - "convertions": 1, - "Clojure": 1, - "tasks": 1, - "stuff": 1, - "todo1": 1, - "today": 1, - "attributes": 1, - "AS": 1, - "load": 1, - "JSON": 1, - "Lexer": 1, - "Read": 1, - "stream": 1, - "characters": 4, - "Whitespace": 4, - "not": 1, - "strings": 2, - "should": 2, - "be": 2, - "discarded.": 1, - "preserved": 1, - "Strings": 1, - "can": 1, - "escaped": 1, - "double": 1, - "quotes.": 1, - "e.g.": 2, - "whitespacep": 2, - "ASCII": 2, - "Space.": 1, - "All": 1, - "others": 1, - "whitespace": 7, - "table.": 1, - "Char": 4, - "member": 1, - "replace": 3, - "@s": 4, - "Suffix": 4, - "where": 2, - "Prefix": 2, - "fetch": 1, - "until": 1, - "unescaped": 1, - "doublequote": 1, - "c#34": 5, - "WhitespaceChar": 2, - "Chars": 4, - "strip": 2, - "chars": 2, - "tokenise": 1, - "JSONString": 2, - "CharList": 2, - "explode": 1 - }, - "Slash": { - "<%>": 1, - "class": 11, - "Env": 1, - "def": 18, - "init": 4, - "memory": 3, - "ptr": 9, - "0": 3, - "ptr=": 1, - "current_value": 5, - "current_value=": 1, - "value": 1, - "AST": 4, - "Next": 1, - "eval": 10, - "env": 16, - "Prev": 1, - "Inc": 1, - "Dec": 1, - "Output": 1, - "print": 1, - "char": 5, - "Input": 1, - "Sequence": 2, - "nodes": 6, - "for": 2, - "node": 2, - "in": 2, - "Loop": 1, - "seq": 4, - "while": 1, - "Parser": 1, - "str": 2, - "chars": 2, - "split": 1, - "parse": 1, - "stack": 3, - "_parse_char": 2, - "if": 1, - "length": 1, - "1": 1, - "throw": 1, - "SyntaxError": 1, - "new": 2, - "unexpected": 2, - "end": 1, - "of": 1, - "input": 1, - "last": 1, - "switch": 1, +======= + "Base.List.iter": 1, + "l.push": 1, "<": 1, - "+": 1, - "-": 1, - ".": 1, - "[": 1, - "]": 1, - ")": 7, - ";": 6, - "}": 3, - "@stack.pop": 1, - "_add": 1, - "(": 6, - "Loop.new": 1, - "Sequence.new": 1, - "src": 2, - "File.read": 1, - "ARGV.first": 1, - "ast": 1, - "Parser.new": 1, - ".parse": 1, - "ast.eval": 1, - "Env.new": 1 + "get_state": 1, + "lazy_from_val": 1 }, - "Slim": { - "doctype": 1, - "html": 2, - "head": 1, - "title": 1, - "Slim": 2, - "Examples": 1, - "meta": 2, - "name": 2, - "content": 2, - "author": 2, - "javascript": 1, - "alert": 1, - "(": 1, - ")": 1, - "body": 1, - "h1": 1, - "Markup": 1, - "examples": 1, - "#content": 1, - "p": 2, - "This": 1, - "example": 1, - "shows": 1, - "you": 2, - "how": 1, - "a": 1, - "basic": 1, - "file": 1, - "looks": 1, - "like.": 1, - "yield": 1, - "-": 3, - "unless": 1, - "items.empty": 1, - "table": 1, + "VCL": { + "sub": 23, + "vcl_recv": 2, + "{": 50, + "if": 14, + "(": 50, + "req.request": 18, + "&&": 14, + ")": 50, + "return": 33, + "pipe": 4, + ";": 48, + "}": 50, + "pass": 9, + "req.http.Authorization": 2, + "||": 4, + "req.http.Cookie": 2, + "lookup": 2, + "vcl_pipe": 2, + "vcl_pass": 2, + "vcl_hash": 2, + "set": 10, + "req.hash": 3, + "+": 17, + "req.url": 2, + "req.http.host": 4, + "else": 3, + "server.ip": 2, + "hash": 2, + "vcl_hit": 2, + "obj.cacheable": 2, + "deliver": 8, + "vcl_miss": 2, + "fetch": 3, + "vcl_fetch": 2, + "obj.http.Set": 1, + "-": 21, + "Cookie": 2, + "obj.prefetch": 1, + "s": 3, + "vcl_deliver": 2, + "vcl_discard": 1, + "discard": 2, + "vcl_prefetch": 1, + "vcl_timeout": 1, + "vcl_error": 2, + "obj.http.Content": 2, + "Type": 2, + "synthetic": 2, + "utf": 2, + "//W3C//DTD": 2, + "XHTML": 2, + "Strict//EN": 2, + "http": 3, + "//www.w3.org/TR/xhtml1/DTD/xhtml1": 2, + "strict.dtd": 2, + "obj.status": 4, + "obj.response": 6, + "req.xid": 2, + "//www.varnish": 1, + "cache.org/": 1, + "req.restarts": 1, + "req.http.x": 1, + "forwarded": 1, "for": 1, - "item": 1, - "in": 1, - "items": 2, - "do": 1, - "tr": 1, - "td.name": 1, - "item.name": 1, - "td.price": 1, - "item.price": 1, - "else": 1, - "|": 2, - "No": 1, - "found.": 1, - "Please": 1, - "add": 1, - "some": 1, - "inventory.": 1, - "Thank": 1, - "div": 1, - "id": 1, - "render": 1, - "Copyright": 1, - "#": 2, - "{": 2, - "year": 1, - "}": 2 + "req.http.X": 3, + "Forwarded": 3, + "For": 3, + "client.ip": 2, + "hash_data": 3, + "beresp.ttl": 2, + "<": 1, + "beresp.http.Set": 1, + "beresp.http.Vary": 1, + "hit_for_pass": 1, + "obj.http.Retry": 1, + "After": 1, + "vcl_init": 1, + "ok": 2, + "vcl_fini": 1 }, "Smalltalk": { - "Object": 1, + "tests": 2, + "testSimpleChainMatches": 1, + "|": 18, + "e": 11, + "eCtrl": 3, + "self": 25, + "eventKey": 3, + "e.": 1, + "ctrl": 5, + "true.": 1, + "assert": 2, + "(": 19, + ")": 19, + "matches": 4, + "{": 4, + "}": 4, + ".": 16, + "eCtrl.": 2, + "deny": 2, + "a": 1, + "Koan": 1, "subclass": 2, + "TestBasic": 1, + "[": 18, + "": 1, + "A": 1, + "collection": 1, + "of": 1, + "introductory": 1, + "testDeclarationAndAssignment": 1, + "declaration": 2, + "anotherDeclaration": 2, + "_": 1, + "expect": 10, + "fillMeIn": 10, + "toEqual": 10, + "declaration.": 1, + "anotherDeclaration.": 1, + "]": 18, + "testEqualSignIsNotAnAssignmentOperator": 1, + "variableA": 6, + "variableB": 5, + "value": 2, + "variableB.": 2, + "testMultipleStatementsInASingleLine": 1, + "variableC": 2, + "variableA.": 1, + "variableC.": 1, + "testInequality": 1, + "testLogicalOr": 1, + "expression": 4, + "<": 2, + "expression.": 2, + "testLogicalAnd": 1, + "&": 1, + "testNot": 1, + "true": 2, + "not.": 1, + "Object": 1, "#Philosophers": 1, "instanceVariableNames": 1, "classVariableNames": 1, @@ -62677,26 +101900,19 @@ "class": 1, "methodsFor": 2, "new": 4, - "self": 25, "shouldNotImplement": 1, "quantity": 2, "super": 1, "initialize": 3, "dine": 4, "seconds": 2, - "(": 19, "Delay": 3, "forSeconds": 1, - ")": 19, "wait.": 5, "philosophers": 2, "do": 1, - "[": 18, "each": 5, - "|": 18, "terminate": 1, - "]": 18, - ".": 16, "size": 4, "leftFork": 6, "n": 11, @@ -62722,7 +101938,6 @@ "status": 8, "n.": 2, "printString": 1, - "true": 2, "whileTrue": 1, "Transcript": 5, "nextPutAll": 5, @@ -62739,56 +101954,675 @@ "userBackgroundPriority": 1, "name": 1, "resume": 1, - "yourself": 1, - "Koan": 1, - "TestBasic": 1, - "": 1, - "A": 1, - "collection": 1, - "of": 1, - "introductory": 1, - "tests": 2, - "testDeclarationAndAssignment": 1, - "declaration": 2, - "anotherDeclaration": 2, - "_": 1, - "expect": 10, - "fillMeIn": 10, - "toEqual": 10, - "declaration.": 1, - "anotherDeclaration.": 1, - "testEqualSignIsNotAnAssignmentOperator": 1, - "variableA": 6, - "variableB": 5, - "value": 2, - "variableB.": 2, - "testMultipleStatementsInASingleLine": 1, - "variableC": 2, - "variableA.": 1, - "variableC.": 1, - "testInequality": 1, - "testLogicalOr": 1, - "expression": 4, - "<": 2, - "expression.": 2, - "testLogicalAnd": 1, - "&": 1, - "testNot": 1, - "not.": 1, - "testSimpleChainMatches": 1, - "e": 11, - "eCtrl": 3, - "eventKey": 3, - "e.": 1, - "ctrl": 5, - "true.": 1, - "assert": 2, - "matches": 4, + "yourself": 1 + }, + "Parrot Assembly": { + "SHEBANG#!parrot": 1, + ".pcc_sub": 1, + "main": 2, + "say": 1, + "end": 1 + }, + "Protocol Buffer": { +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method + "package": 1, + "tutorial": 1, + ";": 13, + "option": 2, + "java_package": 1, + "java_outer_classname": 1, + "message": 3, + "Person": 2, "{": 4, + "required": 3, + "string": 3, + "name": 1, + "int32": 1, + "id": 1, + "optional": 2, + "email": 1, + "enum": 1, + "PhoneType": 2, + "MOBILE": 1, + "HOME": 2, + "WORK": 1, "}": 4, - "eCtrl.": 2, - "deny": 2, - "a": 1 + "PhoneNumber": 2, + "number": 1, + "type": 1, + "[": 1, + "default": 1, + "]": 1, + "repeated": 2, + "phone": 1, + "AddressBook": 1, + "person": 1 + }, + "SQL": { + "SHOW": 2, + "WARNINGS": 2, + ";": 31, + "-": 496, + "Table": 9, + "structure": 9, + "for": 15, + "table": 17, + "articles": 4, + "CREATE": 10, + "TABLE": 10, + "IF": 13, + "NOT": 46, + "EXISTS": 12, + "(": 131, + "id": 22, + "int": 28, + ")": 131, + "NULL": 91, + "AUTO_INCREMENT": 9, + "title": 4, + "varchar": 22, + "DEFAULT": 22, + "content": 2, + "longtext": 1, + "date_posted": 4, + "datetime": 10, + "created_by": 2, + "last_modified": 2, + "last_modified_by": 2, + "ordering": 2, + "is_published": 2, + "PRIMARY": 9, + "KEY": 13, + "Dumping": 6, + "data": 6, + "INSERT": 6, + "INTO": 6, + "VALUES": 6, + "challenges": 4, + "pkg_name": 2, + "description": 2, + "text": 1, + "author": 2, + "category": 2, + "visibility": 2, + "publish": 2, + "abstract": 2, + "level": 2, + "duration": 2, + "goal": 2, + "solution": 2, + "availability": 2, + "default_points": 2, + "default_duration": 2, + "challenge_attempts": 2, + "user_id": 8, + "challenge_id": 7, + "time": 1, + "status": 1, + "challenge_attempt_count": 2, + "tries": 1, + "UNIQUE": 4, + "classes": 4, + "name": 3, + "date_created": 6, + "archive": 2, + "class_challenges": 4, + "class_id": 5, + "class_memberships": 4, + "users": 4, + "username": 3, + "full_name": 2, + "email": 2, + "password": 2, + "joined": 2, + "last_visit": 2, + "is_activated": 2, + "type": 3, + "token": 3, + "user_has_challenge_token": 3, + "DROP": 3, + "create": 2, + "FILIAL": 10, + "NUMBER": 1, + "not": 5, + "null": 4, + "title_ua": 1, + "VARCHAR2": 4, + "title_ru": 1, + "title_eng": 1, + "remove_date": 1, + "DATE": 2, + "modify_date": 1, + "modify_user": 1, + "alter": 1, + "add": 1, + "constraint": 1, + "PK_ID": 1, + "primary": 1, + "key": 1, + "ID": 2, + "grant": 8, + "select": 10, + "on": 8, + "to": 8, + "ATOLL": 1, + "CRAMER2GIS": 1, + "DMS": 1, + "HPSM2GIS": 1, + "PLANMONITOR": 1, + "SIEBEL": 1, + "VBIS": 1, + "VPORTAL": 1, + "SELECT": 4, + "*": 3, + "FROM": 1, + "DBO.SYSOBJECTS": 1, + "WHERE": 1, + "OBJECT_ID": 1, + "N": 7, + "AND": 1, + "OBJECTPROPERTY": 1, + "PROCEDURE": 1, + "dbo.AvailableInSearchSel": 2, + "GO": 4, + "Procedure": 1, + "AvailableInSearchSel": 1, + "AS": 1, + "UNION": 2, + "ALL": 2, + "DB_NAME": 1, + "BEGIN": 1, + "GRANT": 1, + "EXECUTE": 1, + "ON": 1, + "TO": 1, + "[": 1, + "rv": 1, + "]": 1, + "END": 1, + "if": 1, + "exists": 1, + "from": 2, + "sysobjects": 1, + "where": 2, + "and": 1, + "in": 1, + "exec": 1, + "%": 2, + "object_ddl": 1, + "go": 1, + "use": 1, + "translog": 1, + "VIEW": 1, + "suspendedtoday": 2, + "view": 1, + "as": 1, + "suspended": 1, + "datediff": 1, + "now": 1 + }, + "Nemerle": { + "using": 1, + "System.Console": 1, + ";": 2, + "module": 1, + "Program": 1, + "{": 2, + "Main": 1, + "(": 2, + ")": 2, + "void": 1, + "WriteLine": 1, + "}": 2 + }, + "Bluespec": { + "package": 2, + "TL": 6, + ";": 156, + "interface": 2, + "method": 42, + "Action": 17, + "ped_button_push": 4, + "(": 158, + ")": 163, + "set_car_state_N": 2, + "Bool": 32, + "x": 8, + "set_car_state_S": 2, + "set_car_state_E": 2, + "set_car_state_W": 2, + "lampRedNS": 2, + "lampAmberNS": 2, + "lampGreenNS": 2, + "lampRedE": 2, + "lampAmberE": 2, + "lampGreenE": 2, + "lampRedW": 2, + "lampAmberW": 2, + "lampGreenW": 2, + "lampRedPed": 2, + "lampAmberPed": 2, + "lampGreenPed": 2, + "endinterface": 2, + "typedef": 3, + "enum": 1, + "{": 1, + "AllRed": 4, + "GreenNS": 9, + "AmberNS": 5, + "GreenE": 8, + "AmberE": 5, + "GreenW": 8, + "AmberW": 5, + "GreenPed": 4, + "AmberPed": 3, + "}": 1, + "TLstates": 11, + "deriving": 1, + "Eq": 1, + "Bits": 1, + "UInt#": 2, + "Time32": 9, + "CtrSize": 3, + "module": 3, + "sysTL": 3, + "allRedDelay": 2, + "amberDelay": 2, + "nsGreenDelay": 2, + "ewGreenDelay": 3, + "pedGreenDelay": 1, + "pedAmberDelay": 1, + "clocks_per_sec": 2, + "Reg#": 15, + "state": 21, + "<": 44, + "-": 29, + "mkReg": 15, + "next_green": 8, + "secs": 7, + "ped_button_pushed": 4, + "False": 9, + "car_present_N": 3, + "True": 6, + "car_present_S": 3, + "car_present_E": 4, + "car_present_W": 4, + "car_present_NS": 3, + "||": 7, + "cycle_ctr": 6, + "rule": 10, + "dec_cycle_ctr": 1, + "endrule": 10, + "Rules": 5, + "low_priority_rule": 2, + "rules": 4, + "inc_sec": 1, + "+": 7, + "endrules": 4, + "function": 10, + "next_state": 8, + "ns": 4, + "action": 3, + "<=>": 3, + "0": 2, + "endaction": 3, + "endfunction": 7, + "green_seq": 7, + "case": 2, + "return": 9, + "endcase": 2, + "car_present": 4, + "make_from_green_rule": 5, + "green_state": 2, + "delay": 2, + "car_is_present": 2, + "from_green": 1, + "make_from_amber_rule": 5, + "amber_state": 2, + "ng": 2, + "from_amber": 1, + "&&": 3, + "hprs": 10, + "7": 1, + "1": 1, + "2": 1, + "3": 1, + "4": 1, + "5": 1, + "6": 1, + "fromAllRed": 2, + "if": 9, + "else": 4, + "noAction": 1, + "high_priority_rules": 4, + "[": 17, + "]": 17, + "for": 3, + "Integer": 3, + "i": 15, + "rJoin": 1, + "addRules": 1, + "preempts": 1, + "endmethod": 8, + "b": 12, + "endmodule": 3, + "endpackage": 2, + "TbTL": 1, + "import": 1, + "*": 1, + "Lamp": 3, + "changed": 2, + "show_offs": 2, + "show_ons": 2, + "reset": 2, + "mkLamp#": 1, + "String": 1, + "name": 3, + "lamp": 5, + "prev": 5, + "write": 2, + "mkTest": 1, + "let": 1, + "dut": 2, + "Bit#": 1, + "ctr": 8, + "carN": 4, + "carS": 2, + "carE": 2, + "carW": 2, + "lamps": 15, + "mkLamp": 12, + "dut.lampRedNS": 1, + "dut.lampAmberNS": 1, + "dut.lampGreenNS": 1, + "dut.lampRedE": 1, + "dut.lampAmberE": 1, + "dut.lampGreenE": 1, + "dut.lampRedW": 1, + "dut.lampAmberW": 1, + "dut.lampGreenW": 1, + "dut.lampRedPed": 1, + "dut.lampAmberPed": 1, + "dut.lampGreenPed": 1, + "start": 1, + "dumpvars": 1, + "detect_cars": 1, + "dut.set_car_state_N": 1, + "dut.set_car_state_S": 1, + "dut.set_car_state_E": 1, + "dut.set_car_state_W": 1, + "go": 1, + "12_000": 1, + "stop": 1, + "display": 2, + "finish": 1, + "do_offs": 2, + "l": 3, + "l.show_offs": 1, + "do_ons": 2, + "l.show_ons": 1, + "do_reset": 2, + "l.reset": 1, + "do_it": 4, + "f": 2, + "any_changes": 2, + ".changed": 1, + "show": 1, + "time": 1 + }, + "Swift": { + "var": 42, + "n": 5, + "while": 2, + "<": 4, + "{": 77, + "*": 7, + "}": 77, + "m": 5, + "do": 1, + "let": 43, + "optionalSquare": 2, + "Square": 7, + "(": 89, + "sideLength": 17, + "name": 21, + ")": 89, + ".sideLength": 1, + "enum": 4, + "Suit": 2, + "case": 21, + "Spades": 1, + "Hearts": 1, + "Diamonds": 1, + "Clubs": 1, + "func": 24, + "simpleDescription": 14, + "-": 21, + "String": 27, + "switch": 4, + "self": 3, + ".Spades": 2, + "return": 30, + ".Hearts": 1, + ".Diamonds": 1, + ".Clubs": 1, + "hearts": 1, + "Suit.Hearts": 1, + "heartsDescription": 1, + "hearts.simpleDescription": 1, + "interestingNumbers": 2, + "[": 18, + "]": 18, + "largest": 4, + "for": 10, + "kind": 1, + "numbers": 6, + "in": 11, + "number": 13, + "if": 6, + "greet": 2, + "day": 1, + "apples": 1, + "oranges": 1, + "appleSummary": 1, + "fruitSummary": 1, + "struct": 2, + "Card": 2, + "rank": 2, + "Rank": 2, + "suit": 2, + "threeOfSpades": 1, + ".Three": 1, + "threeOfSpadesDescription": 1, + "threeOfSpades.simpleDescription": 1, + "anyCommonElements": 2, + "": 1, + "U": 4, + "where": 2, + "T": 5, + "Sequence": 2, + "GeneratorType": 3, + "Element": 3, + "Equatable": 1, + "lhs": 2, + "rhs": 2, + "Bool": 4, + "lhsItem": 2, + "rhsItem": 2, + "true": 2, + "false": 2, + "Int": 19, + "Ace": 1, + "Two": 1, + "Three": 1, + "Four": 1, + "Five": 1, + "Six": 1, + "Seven": 1, + "Eight": 1, + "Nine": 1, + "Ten": 1, + "Jack": 1, + "Queen": 1, + "King": 1, + ".Ace": 1, + ".Jack": 1, + ".Queen": 1, + ".King": 1, + "default": 2, + "self.toRaw": 1, + "ace": 1, + "Rank.Ace": 1, + "aceRawValue": 1, + "ace.toRaw": 1, + "sort": 1, + "returnFifteen": 2, + "y": 3, + "add": 2, + "+": 15, + "class": 7, + "Shape": 2, + "numberOfSides": 4, + "emptyArray": 1, + "emptyDictionary": 1, + "Dictionary": 1, + "": 1, + "Float": 1, + "println": 1, + "extension": 1, + "ExampleProtocol": 5, + "mutating": 3, + "adjust": 4, + "EquilateralTriangle": 4, + "NamedShape": 3, + "Double": 11, + "init": 4, + "self.sideLength": 2, + "super.init": 2, + "perimeter": 1, + "get": 2, + "set": 1, + "newValue": 1, + "/": 1, + "override": 2, + "triangle": 3, + "triangle.perimeter": 2, + "triangle.sideLength": 2, + "OptionalValue": 2, + "": 1, + "None": 1, + "Some": 1, + "possibleInteger": 2, + "": 1, + ".None": 1, + ".Some": 1, + "SimpleClass": 2, + "anotherProperty": 1, + "a": 2, + "a.adjust": 1, + "aDescription": 1, + "a.simpleDescription": 1, + "SimpleStructure": 2, + "b": 1, + "b.adjust": 1, + "bDescription": 1, + "b.simpleDescription": 1, + "Counter": 2, + "count": 2, + "incrementBy": 1, + "amount": 2, + "numberOfTimes": 2, + "times": 4, + "counter": 1, + "counter.incrementBy": 1, + "getGasPrices": 2, + "myVariable": 2, + "myConstant": 1, + "convertedRank": 1, + "Rank.fromRaw": 1, + "threeDescription": 1, + "convertedRank.simpleDescription": 1, + "protocolValue": 1, + "protocolValue.simpleDescription": 1, + "sumOf": 3, + "Int...": 1, + "sum": 3, + "individualScores": 2, + "teamScore": 4, + "score": 2, + "else": 1, + "vegetable": 2, + "vegetableComment": 4, + "x": 1, + "x.hasSuffix": 1, + "optionalString": 2, + "nil": 1, + "optionalName": 2, + "greeting": 2, + "label": 2, + "width": 2, + "widthLabel": 1, + "shape": 1, + "shape.numberOfSides": 1, + "shapeDescription": 1, + "shape.simpleDescription": 1, + "self.name": 1, + "shoppingList": 3, + "occupations": 2, + "numbers.map": 2, + "result": 5, + "area": 1, + "test": 1, + "test.area": 1, + "test.simpleDescription": 1, + "makeIncrementer": 2, + "addOne": 2, + "increment": 2, + "repeat": 2, + "": 1, + "item": 4, + "ItemType": 3, + "i": 6, + "ServerResponse": 1, + "Result": 1, + "Error": 1, + "success": 2, + "ServerResponse.Result": 1, + "failure": 1, + "ServerResponse.Error": 1, + ".Result": 1, + "sunrise": 1, + "sunset": 1, + "serverResponse": 2, + ".Error": 1, + "error": 1, + "//": 1, + "Went": 1, + "shopping": 1, + "and": 1, + "bought": 1, + "everything.": 1, + "TriangleAndSquare": 2, + "willSet": 2, + "square.sideLength": 1, + "newValue.sideLength": 2, + "square": 2, + "size": 4, + "triangleAndSquare": 1, + "triangleAndSquare.square.sideLength": 1, + "triangleAndSquare.triangle.sideLength": 2, + "triangleAndSquare.square": 1, + "protocol": 1, + "firstForLoop": 3, + "secondForLoop": 3, + ";": 2, + "implicitInteger": 1, + "implicitDouble": 1, + "explicitDouble": 1, + "hasAnyMatches": 2, + "list": 2, + "condition": 2, + "lessThanTen": 2 }, "SourcePawn": { "//#define": 1, @@ -63127,6 +102961,2231 @@ "well": 1, "PushArrayCell": 1 }, + "Propeller Spin": { + "{": 26, + "Vocal": 2, + "Tract": 2, + "v1.1": 8, + "by": 17, + "Chip": 7, + "Gracey": 7, + "Copyright": 10, + "(": 356, + "c": 33, + ")": 356, + "Parallax": 10, + "Inc.": 8, + "October": 1, + "This": 3, + "object": 7, + "synthesizes": 1, + "a": 72, + "human": 1, + "vocal": 10, + "tract": 12, + "in": 53, + "real": 2, + "-": 486, + "time.": 2, + "It": 1, + "requires": 3, + "one": 4, + "cog": 39, + "and": 95, + "at": 26, + "least": 14, + "MHz.": 1, + "The": 17, + "is": 51, + "controlled": 1, + "via": 5, + "single": 2, + "byte": 27, + "parameters": 19, + "which": 16, + "must": 18, + "reside": 1, + "the": 136, + "parent": 1, + "VAR": 10, + "aa": 2, + "ga": 5, + "gp": 2, + "vp": 3, + "vr": 1, + "f1": 4, + "f2": 1, + "f3": 3, + "f4": 2, + "na": 2, + "nf": 2, + "fa": 2, + "ff": 2, + "s": 16, + "values.": 2, + "Before": 1, + "they": 2, + "were": 1, + "left": 12, + "interpolation": 1, + "point": 21, + "shy": 1, + "then": 5, + "set": 42, + "to": 191, + "last": 6, + "frame": 12, + "change": 3, + "makes": 1, + "behave": 1, + "more": 90, + "sensibly": 1, + "during": 2, + "gaps.": 1, + "}": 26, + "CON": 4, + "frame_buffers": 2, + "bytes": 2, + "per": 4, + "frame_longs": 3, + "frame_bytes": 1, + "/": 27, + "longs": 15, + "...must": 1, + "long": 122, + "dira_": 3, + "dirb_": 1, + "ctra_": 1, + "ctrb_": 3, + "frqa_": 3, + "cnt_": 1, + "many": 1, + "...contiguous": 1, + "PUB": 63, + "start": 16, + "tract_ptr": 3, + "pos_pin": 7, + "neg_pin": 6, + "fm_offset": 5, + "okay": 11, + "Start": 6, + "driver": 17, + "starts": 4, + "returns": 6, + "false": 7, + "if": 53, + "no": 7, + "available": 4, + "pointer": 14, + "positive": 1, + "delta": 10, + "modulation": 4, + "pin": 18, + "disable": 7, + "negative": 2, + "also": 1, + "be": 46, + "enabled": 2, + "offset": 14, + "frequency": 18, + "for": 70, + "fm": 6, + "aural": 13, + "subcarrier": 3, + "generation": 2, + "_500_000": 1, + "NTSC": 11, + "Remember": 1, + "If": 2, + "ready": 10, + "output": 11, + "ctrb": 4, + "duty": 2, + "mode": 7, + "[": 35, + "&": 21, + "]": 34, + "|": 22, + "<": 14, + "+": 759, + "F": 18, + "<<": 70, + "Ready": 1, + "frqa": 3, + "value": 51, + "repeat": 18, + "clkfreq": 2, + "Launch": 1, + "return": 15, + "cognew": 4, + "@entry": 3, + "@attenuation": 1, + "stop": 9, + "Stop": 6, + "frees": 6, + "Reset": 1, + "variables": 3, + "buffers": 1, + "longfill": 2, + "@index": 1, + "constant": 3, + "frame_buffer_longs": 2, + "set_attenuation": 1, + "level": 5, + "Set": 5, + "master": 2, + "attenuation": 3, + "initially": 2, + "set_pace": 2, + "percentage": 3, + "pace": 3, + "some": 3, + "go": 1, + "time": 7, + "Queue": 1, + "current": 3, + "transition": 1, + "over": 2, + "actual": 4, + "integer": 2, + "*": 143, + "#": 97, + "see": 2, + "Load": 1, + "into": 19, + "bytemove": 1, + "@frames": 1, + "index": 5, + "Increment": 1, + "full": 3, + "status": 15, + "Returns": 4, + "true": 6, + "parameter": 14, + "queue": 2, + "useful": 2, + "checking": 1, + "would": 1, + "have": 1, + "wait": 6, + "frames": 2, + "empty": 2, + "i": 24, + "detecting": 1, + "when": 3, + "finished": 1, + "from": 21, + "sample_ptr": 1, + "ptr": 5, + "address": 16, + "of": 108, + "receives": 1, + "audio": 1, + "samples": 1, + "signed": 4, + "bit": 35, + "values": 2, + "updated": 1, + "KHz": 3, + "@sample": 1, + "aural_id": 1, + "id": 2, + "executing": 1, + "algorithm": 1, + "connecting": 1, + "broadcast": 19, + "tv": 2, + "with": 8, + "DAT": 7, + "Initialization": 1, + "zero": 10, + "all": 14, + "reserved": 3, + "data": 47, + "add": 92, + "d0": 11, + "djnz": 24, + "clear_cnt": 1, + "mov": 154, + "t1": 139, + "#2*15": 1, + "saves": 2, + "hub": 1, + "memory": 2, + "minst": 3, + "d0s0": 3, + "test": 38, + "#1": 47, + "wc": 57, + "if_c": 37, + "sub": 12, + "#2": 15, + "mult_ret": 1, + "antilog_ret": 1, + "ret": 17, + "assemble": 1, + "cordic": 4, + "steps": 9, + "reserves": 2, + "cstep": 1, + "t2": 90, + "#8": 14, + "write": 36, + "instruction": 2, + "par": 20, + "get": 30, + "center": 10, + "#4": 8, + "prepare": 1, + "initial": 6, + "waitcnt": 3, + "cnt_value": 3, + "cnt_ticks": 3, + "Loop": 1, + "Wait": 2, + "next": 16, + "sample": 2, + "period": 1, + "loop": 14, + "perform": 2, + "sar": 8, + "x": 112, + "update": 7, + "cycle": 1, + "driving": 1, + "h80000000": 2, + "frqb": 2, + "White": 1, + "noise": 3, + "source": 2, + "lfsr": 1, + "lfsr_taps": 2, + "Aspiration": 1, + "vibrato": 3, + "rate": 6, + "shr": 24, + "#10": 2, + "vphase": 2, + "sum": 7, + "glottal": 2, + "pitch": 5, + "divide": 3, + "final": 3, + "mesh": 1, + "multiply": 8, + "%": 162, + "tune": 2, + "convert": 1, + "log": 2, + "phase": 2, + "gphase": 3, + "reset": 14, + "y": 80, + "formant2": 2, + "rotate": 2, + "f2x": 3, + "f2y": 3, + "call": 44, + "#cordic": 2, + "formant4": 2, + "f4x": 3, + "f4y": 3, + "subtract": 1, + "nx": 4, + "negated": 1, + "nasal": 2, + "amplitude": 3, + "#mult": 1, + "negate": 2, + "#3": 7, + "fphase": 4, + "frication": 2, + "#sine": 1, + "Handle": 1, + "jmp": 24, + "or": 43, + "cycles": 4, + "frame_ptr": 6, + "past": 1, + "miscellaneous": 2, + "frame_index": 3, + "stepsize": 2, + "step_size": 5, + "h00FFFFFF": 2, + "wz": 21, + "not": 6, + "final1": 2, + "finali": 2, + "iterate": 3, + "aa..ff": 4, + "jmpret": 5, + "#loop": 9, + "another": 7, + "insure": 2, + "accurate": 1, + "accumulation": 1, + "step_acc": 3, + "movd": 10, + "set2": 3, + "#par_curr": 1, + "set3": 2, + "#par_next": 1, + "set4": 3, + "#par_step": 1, + "new": 6, + "shl": 21, + "#24": 1, + "par_curr": 3, + "make": 16, + "absolute": 1, + "msb": 2, + "rcl": 2, + "vscl": 12, + "nr": 1, + "step": 9, + "size": 5, + "mult": 2, + "negnz": 3, + "par_step": 1, + "pointers": 2, + "frame_cnt": 2, + "step1": 2, + "stepi": 1, + "check": 5, + "done": 3, + "if_nc": 15, + "stepframe": 1, + "signal": 8, + "wrlong": 6, + "#frame_bytes": 1, + "par_next": 2, + "used": 9, + "Math": 1, + "Subroutines": 1, + "Antilog": 1, + "top": 10, + "bits": 29, + "whole": 2, + "number": 27, + "fraction": 1, + "out": 24, + "antilog": 2, + "FFEA0000": 1, + "#16": 6, + "position": 9, + "h00000FFE": 2, + "table": 9, + "base": 6, + "rdword": 10, + "insert": 2, + "leading": 1, + "Scaled": 1, + "sine": 7, + "unsigned": 3, + "scale": 7, + "angle": 23, + "h00001000": 2, + "quadrant": 3, + "negc": 1, + "read": 29, + "word": 212, + "justify": 4, + "result": 6, + "Multiply": 1, + "multiplier": 3, + "#15": 1, + "do": 26, + "mult_step": 1, + "Cordic": 1, + "rotation": 3, + "degree": 1, + "first": 9, + "#cordic_steps": 1, + "that": 10, + "gets": 1, + "assembled": 1, + "x13": 2, + "cordic_dx": 1, + "incremented": 1, + "each": 11, + "sumnc": 7, + "sumc": 4, + "cordic_a": 1, + "cordic_delta": 2, + "linear": 1, + "feedback": 2, + "shift": 7, + "register": 1, + "B901476": 1, + "constants": 2, + "greater": 1, + "than": 5, + "h40000000": 1, + "h01000000": 1, + "FFFFFF": 1, + "h00010000": 1, + "h0000D000": 1, + "D000": 1, + "h00007000": 1, + "FFE": 1, + "h00000800": 1, + "registers": 2, + "clear": 5, + "on": 12, + "startup": 2, + "Undefined": 2, + "Data": 1, + "zeroed": 1, + "initialization": 2, + "code": 3, + "cleared": 1, + "res": 89, + "f1x": 1, + "f1y": 1, + "f3x": 1, + "f3y": 1, + "aspiration": 1, + "***": 1, + "mult_steps": 1, + "assembly": 1, + "area": 1, + "w/ret": 1, + "cordic_ret": 1, + "TERMS": 9, + "OF": 49, + "USE": 19, + "MIT": 9, + "License": 9, + "Permission": 9, + "hereby": 9, + "granted": 9, + "free": 10, + "charge": 10, + "any": 15, + "person": 9, + "obtaining": 9, + "copy": 21, + "this": 26, + "software": 9, + "associated": 11, + "documentation": 9, + "files": 9, + "deal": 9, + "Software": 28, + "without": 19, + "restriction": 9, + "including": 9, + "limitation": 9, + "rights": 9, + "use": 19, + "modify": 9, + "merge": 9, + "publish": 9, + "distribute": 9, + "sublicense": 9, + "and/or": 9, + "sell": 9, + "copies": 18, + "permit": 9, + "persons": 9, + "whom": 9, + "furnished": 9, + "so": 11, + "subject": 9, + "following": 9, + "conditions": 9, + "above": 11, + "copyright": 9, + "notice": 18, + "permission": 9, + "shall": 9, + "included": 9, + "substantial": 9, + "portions": 9, + "Software.": 9, + "THE": 59, + "SOFTWARE": 19, + "IS": 10, + "PROVIDED": 9, + "WITHOUT": 10, + "WARRANTY": 10, + "ANY": 20, + "KIND": 10, + "EXPRESS": 10, + "OR": 70, + "IMPLIED": 10, + "INCLUDING": 10, + "BUT": 10, + "NOT": 11, + "LIMITED": 10, + "TO": 10, + "WARRANTIES": 10, + "MERCHANTABILITY": 10, + "FITNESS": 10, + "FOR": 20, + "A": 21, + "PARTICULAR": 10, + "PURPOSE": 10, + "AND": 10, + "NONINFRINGEMENT.": 10, + "IN": 40, + "NO": 10, + "EVENT": 10, + "SHALL": 10, + "AUTHORS": 10, + "COPYRIGHT": 10, + "HOLDERS": 10, + "BE": 10, + "LIABLE": 10, + "CLAIM": 10, + "DAMAGES": 10, + "OTHER": 20, + "LIABILITY": 10, + "WHETHER": 10, + "AN": 10, + "ACTION": 10, + "CONTRACT": 10, + "TORT": 10, + "OTHERWISE": 10, + "ARISING": 10, + "FROM": 10, + "OUT": 10, + "CONNECTION": 10, + "WITH": 10, + "DEALINGS": 10, + "SOFTWARE.": 10, + "****************************************": 4, + "Debug_Lcd": 1, + "v1.2": 2, + "Authors": 1, + "Jon": 2, + "Williams": 2, + "Jeff": 2, + "Martin": 2, + "See": 10, + "end": 12, + "file": 9, + "terms": 9, + "use.": 9, + "Debugging": 1, + "wrapper": 1, + "Serial_Lcd": 1, + "March": 1, + "Updated": 4, + "conform": 1, + "Propeller": 3, + "standards.": 1, + "April": 1, + "consistency.": 1, + "OBJ": 2, + "lcd": 2, + "string": 8, + "conversion": 1, + "init": 2, + "baud": 2, + "lines": 24, + "Initializes": 1, + "serial": 1, + "LCD": 4, + "lcd.init": 1, + "finalize": 1, + "Finalizes": 1, + "floats": 1, + "lcd.finalize": 1, + "putc": 1, + "txbyte": 2, + "Send": 1, + "terminal": 4, + "lcd.putc": 1, + "str": 3, + "strAddr": 2, + "Print": 15, + "terminated": 4, + "lcd.str": 8, + "dec": 3, + "decimal": 5, + "num.dec": 1, + "decf": 1, + "width": 9, + "Prints": 2, + "space": 1, + "padded": 2, + "fixed": 1, + "field": 4, + "num.decf": 1, + "decx": 1, + "digits": 23, + "num.decx": 1, + "hex": 3, + "hexadecimal": 4, + "num.hex": 1, + "ihex": 1, + "an": 12, + "indicated": 2, + "num.ihex": 1, + "bin": 3, + "binary": 4, + "num.bin": 1, + "ibin": 1, + "num.ibin": 1, + "cls": 1, + "Clears": 2, + "moves": 1, + "cursor": 9, + "home": 4, + "lcd.cls": 1, + "Moves": 2, + "lcd.home": 1, + "gotoxy": 1, + "col": 9, + "line": 33, + "col/line": 1, + "lcd.gotoxy": 1, + "clrln": 1, + "lcd.clrln": 1, + "type": 4, + "Selects": 1, + "off": 8, + "blink": 4, + "lcd.cursor": 1, + "display": 23, + "Controls": 1, + "visibility": 1, + ";": 2, + "hide": 1, + "contents": 3, + "clearing": 1, + "lcd.displayOn": 1, + "else": 3, + "lcd.displayOff": 1, + "custom": 2, + "char": 2, + "chrDataAddr": 3, + "Installs": 1, + "character": 6, + "map": 1, + "definition": 9, + "array": 1, + "lcd.custom": 1, + "backLight": 1, + "Enable": 1, + "backlight": 1, + "affects": 1, + "only": 63, + "backlit": 1, + "models": 1, + "lcd.backLight": 1, + "***************************************": 12, + "VGA": 8, + "Driver": 4, + "Author": 8, + "May": 2, + "pixel": 40, + "tile": 41, + "can": 4, + "now": 3, + "enable": 5, + "efficient": 2, + "vga_mode": 3, + "colortable": 7, + "inside": 2, + "vgaptr": 3, + "cogstop": 3, + "Assembly": 2, + "language": 2, + "Entry": 2, + "tasks": 6, + "Superfield": 2, + "hv": 5, + "interlace": 20, + "#0": 20, + "nz": 3, + "visible": 7, + "back": 8, + "porch": 9, + "vb": 2, + "bcolor": 3, + "#colortable": 2, + "#blank_line": 3, + "nobl": 1, + "screen": 13, + "_screen": 3, + "vertical": 29, + "tiles": 19, + "vx": 2, + "_vx": 1, + "skip": 5, + "if_nz": 18, + "tjz": 8, + "hb": 2, + "nobp": 1, + "horizontal": 21, + "hx": 5, + "pixels": 14, + "rdlong": 16, + "colors": 18, + "color": 39, + "pass": 5, + "video": 7, + "repoint": 2, + "same": 7, + "hf": 2, + "nofp": 1, + "hsync": 5, + "#blank_hsync": 1, + "expand": 3, + "ror": 4, + "linerot": 5, + "front": 4, + "vf": 1, + "nofl": 1, + "xor": 8, + "unless": 2, + "field1": 4, + "invisible": 8, + "taskptr": 3, + "#tasks": 1, + "before": 1, + "after": 2, + "_vs": 2, + "except": 1, + "#blank_vsync": 1, + "#field": 1, + "superfield": 1, + "blank_vsync": 1, + "cmp": 16, + "blank": 2, + "vsync": 4, + "h2": 2, + "if_c_and_nz": 1, + "waitvid": 3, + "task": 2, + "section": 4, + "z": 4, + "undisturbed": 2, + "blank_hsync": 1, + "_hf": 1, + "invisble": 1, + "sync": 10, + "_hb": 1, + "#hv": 1, + "blank_hsync_ret": 1, + "blank_line_ret": 1, + "blank_vsync_ret": 1, + "_status": 1, + "#paramcount": 1, + "load": 3, + "pins": 26, + "directions": 1, + "_pins": 4, + "_enable": 2, + "#disabled": 2, + "break": 6, + "later": 6, + "min": 4, + "_rate": 3, + "pllmin": 1, + "_011": 1, + "adjust": 4, + "within": 5, + "MHz": 16, + "hvbase": 5, + "muxnc": 5, + "vmask": 1, + "_mode": 7, + "hmask": 1, + "_hx": 4, + "_vt": 3, + "consider": 2, + "muxc": 5, + "lineadd": 4, + "lineinc": 3, + "movi": 3, + "vcfg": 2, + "_000": 5, + "/160": 2, + "#13": 3, + "times": 3, + "loaded": 3, + "#9": 2, + "FC": 2, + "_colors": 2, + "colormask": 1, + "andn": 7, + "d6": 3, + "keep": 2, + "loading": 2, + "multiply_ret": 2, + "Disabled": 2, + "nap": 5, + "ms": 4, + "try": 2, + "again": 2, + "ctra": 5, + "disabled": 3, + "cnt": 2, + "#entry": 1, + "Initialized": 1, + "pll": 5, + "lowest": 1, + "pllmax": 1, + "_000_000": 6, + "*16": 1, + "vco": 3, + "max": 6, + "m4": 1, + "Uninitialized": 3, + "taskret": 4, + "Parameter": 4, + "buffer": 4, + "/non": 4, + "tihv": 1, + "@long": 2, + "_ht": 2, + "_ho": 2, + "_hd": 1, + "_hs": 1, + "_vd": 1, + "fit": 2, + "underneath": 1, + "BF": 1, + "___": 1, + "/1/2": 1, + "off/visible/invisible": 1, + "vga_enable": 3, + "pppttt": 1, + "words": 5, + "vga_colors": 2, + "vga_vt": 6, + "expansion": 8, + "vga_vx": 4, + "vga_vo": 4, + "ticks": 11, + "vga_hf": 2, + "vga_hb": 2, + "vga_vf": 2, + "vga_vb": 2, + "tick": 2, + "Hz": 5, + "preceding": 2, + "may": 6, + "copied": 2, + "your": 2, + "code.": 2, + "After": 2, + "setting": 2, + "@vga_status": 1, + "driver.": 3, + "All": 2, + "are": 18, + "reloaded": 2, + "superframe": 2, + "allowing": 2, + "you": 5, + "live": 2, + "changes.": 2, + "To": 3, + "minimize": 2, + "flicker": 5, + "correlate": 2, + "changes": 3, + "vga_status.": 1, + "Experimentation": 2, + "required": 4, + "optimize": 2, + "parameters.": 2, + "descriptions": 2, + "__________": 4, + "vga_status": 1, + "sets": 3, + "indicate": 2, + "CLKFREQ": 10, + "currently": 4, + "outputting": 4, + "will": 12, + "driven": 2, + "low": 5, + "reduces": 2, + "power": 3, + "non": 3, + "________": 3, + "vga_pins": 1, + "select": 9, + "group": 7, + "example": 3, + "selects": 4, + "between": 4, + "x16": 7, + "x32": 6, + "tileheight": 4, + "controls": 4, + "progressive": 2, + "scan": 7, + "less": 5, + "good": 5, + "motion": 2, + "monitors": 1, + "interlaced": 5, + "allows": 1, + "double": 2, + "text": 9, + "polarity": 1, + "respectively": 1, + "active": 3, + "high": 7, + "vga_screen": 1, + "define": 10, + "right": 9, + "bottom": 5, + "vga_ht": 3, + "has": 4, + "two": 6, + "bitfields": 2, + "colorset": 2, + "pixelgroup": 2, + "colorset*": 2, + "pixelgroup**": 2, + "ppppppppppcccc00": 2, + "p": 8, + "colorsets": 4, + "four": 8, + "**": 2, + "pixelgroups": 2, + "": 5, + "up": 4, + "fields": 2, + "t": 10, + "care": 1, + "it": 8, + "suggested": 1, + "bits/pins": 3, + "red": 2, + "green": 1, + "blue": 3, + "bit/pin": 1, + "ohm": 10, + "resistors": 4, + "form": 7, + "V": 7, + "signals": 1, + "connect": 3, + "RED": 1, + "GREEN": 2, + "BLUE": 1, + "connector": 3, + "always": 2, + "HSYNC": 1, + "resistor": 4, + "VSYNC": 1, + "______": 14, + "vga_hx": 3, + "factor": 4, + "sure": 4, + "||": 5, + "vga_ho": 2, + "equal": 1, + "vga_hd": 2, + "does": 2, + "exceed": 1, + "vga_vd": 2, + "pos/neg": 4, + "recommended": 2, + "shifts": 4, + "right/left": 2, + "up/down": 2, + "vga_hs": 1, + "vga_vs": 1, + "vga_rate": 2, + "limit": 4, + "should": 1, + "Graphics": 3, + "v1.0": 4, + "Theory": 1, + "Operation": 2, + "launched": 1, + "processes": 1, + "commands": 1, + "routines.": 1, + "Points": 1, + "arcs": 1, + "sprites": 1, + "polygons": 1, + "rasterized": 1, + "specified": 1, + "stretch": 1, + "serves": 1, + "as": 8, + "generic": 1, + "bitmap": 15, + "buffer.": 1, + "displayed": 1, + "TV.SRC": 1, + "VGA.SRC": 1, + "GRAPHICS_DEMO.SRC": 1, + "usage": 1, + "example.": 1, + "_setup": 1, + "_color": 2, + "_width": 2, + "_plot": 2, + "_line": 2, + "_arc": 2, + "_vec": 2, + "_vecarc": 2, + "_pix": 1, + "_pixarc": 1, + "_text": 2, + "_textarc": 1, + "_textmode": 2, + "_fill": 1, + "_loop": 5, + "command": 7, + "bitmap_base": 7, + "slices": 3, + "text_xs": 1, + "text_ys": 1, + "text_sp": 1, + "text_just": 1, + "font": 3, + "instances": 1, + "@loop": 1, + "@command": 1, + "graphics": 4, + "setup": 3, + "x_tiles": 9, + "y_tiles": 9, + "x_origin": 2, + "y_origin": 2, + "base_ptr": 3, + "bases_ptr": 3, + "slices_ptr": 1, + "relative": 2, + "setcommand": 13, + "bases": 2, + "retain": 2, + "bitmap_longs": 1, + "Clear": 2, + "dest_ptr": 2, + "Copy": 1, + "buffered": 1, + "destination": 1, + "pattern": 2, + "@colors": 2, + "determine": 2, + "shape/width": 2, + "w": 8, + "pixel_width": 1, + "pixel_passes": 2, + "@w": 1, + "E": 7, + "r": 4, + "colorwidth": 1, + "plot": 17, + "Plot": 3, + "@x": 6, + "Draw": 7, + "endpoint": 1, + "arc": 21, + "xr": 7, + "yr": 7, + "anglestep": 2, + "arcmode": 2, + "radii": 3, + "FFF": 3, + "..359.956": 3, + "just": 2, + "leaves": 1, + "points": 2, + "vec": 1, + "vecscale": 5, + "vecangle": 5, + "vecdef_ptr": 5, + "vector": 12, + "sprite": 14, + "Vector": 2, + "length": 4, + "...": 5, + "vecarc": 2, + "pix": 3, + "pixrot": 3, + "pixdef_ptr": 3, + "mirror": 1, + "Pixel": 1, + "draw": 5, + "textarc": 1, + "string_ptr": 6, + "justx": 2, + "justy": 3, + "necessary": 1, + ".finish": 1, + "immediately": 1, + "afterwards": 1, + "prevent": 1, + "subsequent": 1, + "clobbering": 1, + "being": 2, + "drawn": 1, + "@justx": 1, + "@x_scale": 1, + "half": 2, + "pmin": 1, + "round/square": 1, + "corners": 1, + "y2": 7, + "x2": 6, + "fill": 3, + "pmax": 2, + "triangle": 3, + "sides": 1, + "polygon": 1, + "tri": 2, + "x3": 4, + "y3": 5, + "x4": 4, + "y4": 1, + "x1": 5, + "y1": 7, + "xy": 1, + "solid": 1, + "finish": 2, + "safe": 1, + "manually": 1, + "manipulate": 1, + "while": 5, + "primitives": 1, + "xa0": 53, + "ya1": 3, + "ya2": 1, + "ya3": 2, + "ya4": 40, + "ya5": 3, + "ya6": 21, + "ya7": 9, + "ya8": 19, + "ya9": 5, + "yaA": 18, + "yaB": 4, + "yaC": 12, + "yaD": 4, + "yaE": 1, + "yaF": 1, + "xb0": 19, + "yb1": 2, + "yb2": 1, + "yb3": 4, + "yb4": 15, + "yb5": 2, + "yb6": 7, + "yb7": 3, + "yb8": 20, + "yb9": 5, + "ybA": 8, + "ybB": 1, + "ybC": 32, + "ybD": 1, + "ybE": 1, + "ybF": 1, + "ax1": 11, + "radius": 2, + "ay2": 23, + "ay3": 6, + "ay4": 4, + "a0": 8, + "a2": 1, + "farc": 41, + "arc/line": 1, + "Round": 1, + "recipes": 1, + "C": 11, + "D": 18, + "fline": 88, + "xa2": 48, + "xb2": 26, + "xa1": 8, + "xb1": 2, + "xa3": 8, + "xb3": 6, + "xb4": 35, + "a9": 3, + "ax2": 30, + "ay1": 10, + "a7": 2, + "aE": 1, + "aC": 2, + ".": 2, + "aF": 4, + "aD": 3, + "aB": 2, + "xa4": 13, + "a8": 8, + "@": 1, + "a4": 3, + "B": 15, + "H": 1, + "J": 1, + "L": 5, + "N": 1, + "P": 6, + "R": 3, + "T": 5, + "aA": 5, + "X": 4, + "Z": 1, + "b": 1, + "d": 2, + "f": 2, + "h": 2, + "j": 2, + "l": 2, + "n": 4, + "v": 1, + "bullet": 1, + "fx": 1, + "*************************************": 2, + "org": 2, + "arguments": 1, + "t3": 10, + "arg": 3, + "arg0": 12, + "dx": 20, + "dy": 15, + "arg1": 3, + "jump": 1, + "jumps": 6, + "color_": 1, + "plot_": 2, + "arc_": 2, + "vecarc_": 1, + "pixarc_": 1, + "textarc_": 2, + "fill_": 1, + "setup_": 1, + "xlongs": 4, + "xorigin": 2, + "yorigin": 4, + "arg3": 12, + "basesptr": 4, + "arg5": 6, + "width_": 1, + "pwidth": 3, + "passes": 3, + "#plotd": 3, + "line_": 1, + "#linepd": 2, + "arg7": 6, + "exit": 5, + "px": 14, + "py": 11, + "if_z": 11, + "#plotp": 3, + "arg4": 5, + "iterations": 1, + "vecdef": 1, + "t7": 8, + "add/sub": 1, + "to/from": 1, + "t6": 7, + "#multiply": 2, + "round": 1, + "/2": 1, + "lsb": 1, + "t4": 7, + "h8000": 5, + "xwords": 1, + "ywords": 1, + "xxxxxxxx": 2, + "save": 1, + "sy": 5, + "rdbyte": 3, + "origin": 1, + "neg": 2, + "arg2": 7, + "yline": 1, + "sx": 4, + "t5": 4, + "xpixel": 2, + "rol": 1, + "pcolor": 5, + "color1": 2, + "color2": 2, + "@string": 1, + "#arcmod": 1, + "text_": 1, + "chr": 4, + "def": 2, + "extract": 4, + "_0001_1": 1, + "#fontb": 3, + "textsy": 2, + "starting": 1, + "_0011_0": 1, + "#11": 1, + "#arcd": 1, + "#fontxy": 1, + "advance": 2, + "textsx": 3, + "_0111_0": 1, + "setd_ret": 1, + "fontxy_ret": 1, + "fontb": 1, + "fontb_ret": 1, + "textmode_": 1, + "textsp": 2, + "da": 1, + "db": 1, + "db2": 1, + "linechange": 1, + "lines_minus_1": 1, + "fractions": 1, + "pre": 1, + "increment": 1, + "counter": 1, + "yloop": 2, + "integers": 1, + "base0": 17, + "base1": 10, + "cmps": 3, + "range": 2, + "ylongs": 6, + "mins": 1, + "mask": 3, + "mask0": 8, + "#5": 2, + "count": 4, + "mask1": 6, + "bits0": 6, + "bits1": 5, + "deltas": 1, + "linepd": 1, + "wr": 2, + "direction": 2, + "abs": 1, + "dominant": 2, + "axis": 1, + "ratio": 1, + "xloop": 1, + "linepd_ret": 1, + "plotd": 1, + "wide": 3, + "bounds": 2, + "#plotp_ret": 2, + "#7": 2, + "store": 1, + "writes": 1, + "pair": 1, + "account": 1, + "special": 1, + "case": 5, + "slice": 7, + "shift0": 1, + "colorize": 1, + "upper": 2, + "subx": 1, + "#wslice": 1, + "Get": 2, + "args": 5, + "move": 2, + "using": 1, + "arg6": 1, + "arcmod_ret": 1, + "arg2/t4": 1, + "arg4/t6": 1, + "arcd": 1, + "#setd": 1, + "#polarx": 1, + "Polar": 1, + "cartesian": 1, + "polarx": 1, + "sine_90": 2, + "sine_table": 1, + "sine/cosine": 1, + "sine_180": 1, + "shifted": 1, + "product": 1, + "Defined": 1, + "hFFFFFFFF": 1, + "FFFFFFFF": 1, + "fontptr": 1, + "temps": 1, + "slicesptr": 1, + "line/plot": 1, + "coordinates": 1, + "TV": 9, + "Text": 1, + "cols": 5, + "rows": 4, + "screensize": 4, + "lastrow": 2, + "tv_count": 2, + "row": 4, + "flag": 5, + "tv_status": 4, + "off/on": 3, + "tv_pins": 5, + "tccip": 3, + "chroma": 19, + "ntsc/pal": 3, + "tv_screen": 5, + "tv_ht": 5, + "tv_hx": 5, + "tv_ho": 5, + "tv_broadcast": 4, + "basepin": 3, + "setcolors": 2, + "@palette": 1, + "longmove": 2, + "@tv_status": 3, + "@tv_params": 1, + "@screen": 3, + "tv_colors": 2, + "tv.start": 1, + "tv.stop": 2, + "stringptr": 3, + "strsize": 2, + "_000_000_000": 2, + "//": 4, + "elseif": 2, + "lookupz": 2, + "..": 4, + "k": 1, + "Output": 1, + "backspace": 1, + "tab": 3, + "spaces": 1, + "follows": 4, + "Y": 2, + "others": 1, + "printable": 1, + "characters": 1, + "wordfill": 2, + "print": 2, + "A..": 1, + "newline": 3, + "other": 1, + "colorptr": 2, + "fore": 3, + "Override": 1, + "default": 1, + "palette": 2, + "list": 1, + "arranged": 3, + "scroll": 1, + "hc": 1, + "ho": 1, + "white": 2, + "dark": 2, + "BB": 1, + "yellow": 1, + "brown": 1, + "cyan": 3, + "pink": 1, + "Terminal": 1, + "REVISION": 2, + "HISTORY": 2, + "/15/2006": 2, + "instead": 1, + "method": 2, + "minimum": 2, + "x_scale": 4, + "x_spacing": 4, + "normal": 1, + "x_chr": 2, + "y_chr": 5, + "y_scale": 3, + "y_spacing": 3, + "y_offset": 2, + "x_limit": 2, + "x_screen": 1, + "y_limit": 3, + "y_screen": 4, + "y_max": 3, + "y_screen_bytes": 2, + "y_scroll": 2, + "y_scroll_longs": 4, + "y_clear": 2, + "y_clear_longs": 2, + "paramcount": 1, + "ccinp": 1, + "swap": 2, + "tv_hc": 1, + "cells": 1, + "cell": 1, + "@bitmap": 1, + "FC0": 1, + "gr.start": 2, + "gr.setup": 2, + "gr.textmode": 1, + "gr.width": 1, + "gr.stop": 1, + "schemes": 1, + "gr.color": 1, + "gr.text": 1, + "@c": 1, + "gr.finish": 2, + "PRI": 1, + "tvparams": 1, + "tvparams_pins": 1, + "_0101": 1, + "vc": 1, + "vo": 1, + "_250_000": 2, + "auralcog": 1, + "color_schemes": 1, + "BC_6C_05_02": 1, + "E_0D_0C_0A": 1, + "E_6D_6C_6A": 1, + "BE_BD_BC_BA": 1, + "*****************************************": 4, + "Inductive": 1, + "Sensor": 1, + "Demo": 1, + "Beau": 2, + "Schwabe": 2, + "Test": 2, + "Circuit": 1, + "pF": 1, + "K": 4, + "M": 1, + "FPin": 2, + "SDF": 1, + "sigma": 3, + "SDI": 1, + "input": 2, + "GND": 4, + "Coils": 1, + "Wire": 1, + "was": 2, + "about": 4, + "gauge": 1, + "Coke": 3, + "Can": 3, + "BIC": 1, + "pen": 1, + "How": 1, + "work": 2, + "Note": 1, + "reported": 2, + "resonate": 5, + "LC": 8, + "frequency.": 2, + "Instead": 1, + "where": 2, + "voltage": 5, + "produced": 1, + "circuit": 5, + "clipped.": 1, + "In": 2, + "below": 4, + "When": 1, + "apply": 1, + "small": 1, + "specific": 1, + "near": 1, + "uncommon": 1, + "measure": 1, + "amount": 1, + "applying": 1, + "circuit.": 1, + "through": 1, + "diode": 2, + "basically": 1, + "feeds": 1, + "divider": 1, + "...So": 1, + "order": 1, + "ADC": 2, + "sweep": 2, + "needs": 1, + "generate": 1, + "Volts": 1, + "ground.": 1, + "drop": 1, + "across": 1, + "since": 1, + "sensitive": 1, + "works": 1, + "divider.": 1, + "typical": 1, + "magnitude": 1, + "applied": 2, + "might": 1, + "look": 2, + "something": 1, + "like": 4, + "*****": 4, + "...With": 1, + "looks": 1, + "X****": 1, + "...The": 1, + "denotes": 1, + "location": 1, + "reason": 1, + "slightly": 1, + "reasons": 1, + "really.": 1, + "lazy": 1, + "I": 1, + "didn": 1, + "acts": 1, + "dead": 1, + "short.": 1, + "situation": 1, + "exactly": 1, + "great": 1, + "I/O": 3, + "FindResonateFrequency": 1, + "DisplayInductorValue": 2, + "Freq.Synth": 1, + "FValue": 1, + "ADC.SigmaDelta": 1, + "@FTemp": 1, + "gr.clear": 1, + "gr.copy": 2, + "display_base": 2, + "Option": 2, + "*********************************************": 2, + "Frequency": 1, + "LowerFrequency": 2, + "*100/": 1, + "UpperFrequency": 1, + "gr.colorwidth": 4, + "gr.plot": 3, + "gr.line": 3, + "FTemp/1024": 1, + "Finish": 1, + "tv_mode": 2, + "lntsc": 3, + "fpal": 2, + "_433_618": 2, + "PAL": 10, + "spal": 3, + "tvptr": 3, + "vinv": 2, + "burst": 2, + "sync_high2": 2, + "black": 2, + "leftmost": 1, + "vert": 1, + "movs": 9, + "if_z_eq_c": 1, + "#hsync": 1, + "pulses": 2, + "vsync1": 2, + "#sync_low1": 1, + "hhalf": 2, + "field2": 1, + "#superfield": 1, + "Blank": 1, + "Horizontal": 1, + "pal": 2, + "toggle": 1, + "phaseflip": 4, + "phasemask": 2, + "sync_scale1": 1, + "hsync_ret": 1, + "vsync_high": 1, + "#sync_high1": 1, + "Tasks": 1, + "performed": 1, + "sections": 1, + "#_enable": 1, + "rd": 1, + "#wtab": 1, + "ltab": 1, + "#ltab": 1, + "cancel": 1, + "_broadcast": 4, + "m8": 3, + "fcolor": 4, + "#divide": 2, + "_111": 1, + "m128": 2, + "_100": 1, + "_001": 1, + "broadcast/baseband": 1, + "strip": 3, + "baseband": 18, + "_auralcog": 1, + "colorreg": 3, + "colorloop": 1, + "m1": 4, + "outa": 2, + "reload": 1, + "d0s1": 1, + "F0F0F0F0": 1, + "pins0": 1, + "_01110000_00001111_00000111": 1, + "pins1": 1, + "_11110111_01111111_01110111": 1, + "sync_high1": 1, + "_101010_0101": 1, + "NTSC/PAL": 2, + "metrics": 1, + "tables": 1, + "wtab": 1, + "sntsc": 3, + "lpal": 3, + "hrest": 2, + "vvis": 2, + "vrep": 2, + "_8A": 1, + "_AA": 1, + "sync_scale2": 1, + "_00000000_01_10101010101010_0101": 1, + "m2": 1, + "contiguous": 1, + "tv_status.": 1, + "_________": 5, + "tv_enable": 2, + "requirement": 2, + "_______": 2, + "_0111": 6, + "_1111": 6, + "_0000": 4, + "nibble": 4, + "attach": 1, + "/560/1100": 2, + "network": 1, + "visual": 1, + "carrier": 1, + "mixing": 2, + "mix": 2, + "black/white": 2, + "composite": 1, + "doubles": 1, + "format": 1, + "_318_180": 1, + "_579_545": 1, + "_734_472": 1, + "itself": 1, + "tv_vt": 3, + "valid": 2, + "luminance": 2, + "adds/subtracts": 1, + "beware": 1, + "modulated": 1, + "produce": 1, + "saturated": 1, + "toggling": 1, + "levels": 1, + "because": 1, + "abruptly": 1, + "rather": 1, + "against": 1, + "background": 1, + "best": 1, + "appearance": 1, + "_____": 6, + "practical": 2, + "/30": 1, + "tv_vx": 2, + "tv_vo": 2, + "centered": 2, + "image": 2, + "____________": 1, + "expressed": 1, + "ie": 1, + "channel": 1, + "modulator": 2, + "turned": 2, + "broadcasting": 1, + "___________": 1, + "tv_auralcog": 1, + "supply": 1, + "uses": 2, + "selected": 1, + "bandwidth": 2, + "vary": 1, + "PS/2": 1, + "Keyboard": 1, + "v1.0.1": 2, + "Tool": 1, + "par_tail": 1, + "key": 4, + "head": 1, + "par_present": 1, + "states": 1, + "par_keys": 1, + "******************************************": 2, + "entry": 1, + "#_dpin": 1, + "masks": 1, + "dmask": 4, + "_dpin": 3, + "cmask": 2, + "_cpin": 2, + "_head": 6, + "dira": 3, + "_present/_states": 1, + "dlsb": 2, + "stat": 6, + "Update": 1, + "_head/_present/_states": 1, + "#1*4": 1, + "scancode": 2, + "state": 2, + "#receive": 1, + "AA": 1, + "extended": 1, + "if_nc_and_z": 2, + "F0": 3, + "unknown": 2, + "ignore": 2, + "#newcode": 1, + "_states": 2, + "set/clear": 1, + "#_states": 1, + "reg": 5, + "cmpsub": 4, + "shift/ctrl/alt/win": 1, + "pairs": 1, + "E0": 1, + "handle": 1, + "scrlock/capslock/numlock": 1, + "_locks": 5, + "#29": 1, + "configure": 3, + "leds": 3, + "shift1": 1, + "if_nz_and_c": 4, + "#@shift1": 1, + "@table": 1, + "#look": 1, + "alpha": 1, + "considering": 1, + "capslock": 1, + "if_nz_and_nc": 1, + "flags": 1, + "alt": 1, + "room": 1, + "enter": 1, + "FF": 3, + "#11*4": 1, + "wrword": 1, + "F3": 1, + "keyboard": 3, + "lock": 1, + "#transmit": 2, + "rev": 1, + "_present": 2, + "#update": 1, + "Lookup": 2, + "lookup": 1, + "#table": 1, + "#27": 1, + "#rand": 1, + "Transmit": 1, + "pull": 2, + "clock": 4, + "napshr": 3, + "#18": 2, + "release": 1, + "transmit_bit": 1, + "#wait_c0": 2, + "_d2": 1, + "wcond": 3, + "c1": 2, + "c0d0": 2, + "until": 3, + "#wait": 2, + "#receive_ack": 1, + "ack": 1, + "error": 1, + "#reset": 2, + "transmit_ret": 1, + "receive": 1, + "receive_bit": 1, + "pause": 1, + "us": 1, + "#nap": 1, + "_d3": 1, + "ina": 3, + "#receive_bit": 1, + "align": 1, + "isolate": 1, + "look_ret": 1, + "receive_ack_ret": 1, + "receive_ret": 1, + "wait_c0": 1, + "c0": 1, + "timeout": 1, + "wloop": 1, + "_d4": 1, + "replaced": 1, + "c0/c1/c0d0/c1d1": 1, + "if_never": 1, + "replacements": 1, + "#wloop": 3, + "if_c_or_nz": 1, + "c1d1": 1, + "if_nc_or_z": 1, + "scales": 1, + "snag": 1, + "elapses": 1, + "nap_ret": 1, + "F9": 1, + "F5": 1, + "D2": 1, + "F1": 2, + "D1": 1, + "F12": 1, + "F10": 1, + "D7": 1, + "F6": 1, + "D3": 1, + "Tab": 2, + "Alt": 2, + "F3F2": 1, + "q": 1, + "Win": 2, + "Space": 2, + "Apps": 1, + "Power": 1, + "Sleep": 1, + "EF2F": 1, + "CapsLock": 1, + "Enter": 3, + "WakeUp": 1, + "BackSpace": 1, + "C5E1": 1, + "C0E4": 1, + "Home": 1, + "Insert": 1, + "C9EA": 1, + "Down": 1, + "E5": 1, + "Right": 1, + "C2E8": 1, + "Esc": 1, + "DF": 2, + "F11": 1, + "EC": 1, + "PageDn": 1, + "ED": 1, + "PrScr": 1, + "C6E9": 1, + "ScrLock": 1, + "D6": 1, + "Key": 1, + "Codes": 1, + "keypress": 1, + "keystate": 2, + "E0..FF": 1, + "AS": 1, + "Keypad": 1, + "Reader": 1, + "capacitive": 1, + "PIN": 1, + "approach": 1, + "reading": 1, + "keypad.": 1, + "ALL": 2, + "made": 2, + "LOW": 2, + "OUTPUT": 2, + "pins.": 1, + "Then": 1, + "INPUT": 2, + "state.": 1, + "At": 1, + "HIGH": 3, + "closed": 1, + "otherwise": 1, + "returned.": 1, + "keypad": 4, + "decoding": 1, + "routine": 1, + "subroutines": 1, + "entire": 1, + "matrix": 1, + "WORD": 1, + "variable": 1, + "indicating": 1, + "buttons": 2, + "pressed.": 1, + "Multiple": 1, + "button": 2, + "presses": 1, + "allowed": 1, + "understanding": 1, + "BOX": 2, + "entries": 1, + "confused.": 1, + "An": 1, + "entry...": 1, + "etc.": 1, + "pressed": 3, + "evaluate": 1, + "even": 1, + "not.": 1, + "There": 1, + "danger": 1, + "physical": 1, + "electrical": 1, + "damage": 1, + "way": 1, + "sensing": 1, + "happens": 1, + "work.": 1, + "Schematic": 1, + "No": 2, + "capacitors.": 1, + "connections": 1, + "directly": 1, + "ReadRow": 4, + "Shift": 3, + "preset": 1, + "P0": 2, + "P7": 2, + "LOWs": 1, + "INPUTSs": 1, + "act": 1, + "tiny": 1, + "capacitors": 1, + "Pin": 1, + "OUTPUT...": 1, + "Make": 1, + "Pn": 1, + "remain": 1, + "discharged": 1 + }, + "Cirru": { + "print": 38, + "int": 36, + "float": 1, + "set": 12, + "a": 22, + "string": 7, + "(": 20, + ")": 20, + "nothing": 1, + "map": 8, + "b": 7, + "c": 9, + "array": 14, + "code": 4, + "get": 4, + "container": 3, + "self": 2, + "child": 1, + "under": 2, + "parent": 1, + "x": 2, + "just": 4, + "-": 4, + "eval": 2, + "f": 3, + "block": 1, + "call": 1, + "m": 3, + "bool": 6, + "true": 1, + "false": 1, + "yes": 1, + "no": 1, + "require": 1, + "./stdio.cr": 1 + }, + "Julia": { + "##": 5, + "Test": 1, + "case": 1, + "from": 1, + "Issue": 1, + "#445": 1, + "#STOCKCORR": 1, + "-": 11, + "The": 1, + "original": 1, + "unoptimised": 1, + "code": 1, + "that": 1, + "simulates": 1, + "two": 2, + "correlated": 1, + "assets": 1, + "function": 1, + "stockcorr": 1, + "(": 13, + ")": 13, + "Correlated": 1, + "asset": 1, + "information": 1, + "CurrentPrice": 3, + "[": 20, + "]": 20, + "#": 11, + "Initial": 1, + "Prices": 1, + "of": 6, + "the": 2, + "stocks": 1, + "Corr": 2, + ";": 1, + "Correlation": 1, + "Matrix": 2, + "T": 5, + "Number": 2, + "days": 3, + "to": 1, + "simulate": 1, + "years": 1, + "n": 4, + "simulations": 1, + "dt": 3, + "/250": 1, + "Time": 1, + "step": 1, + "year": 1, + "Div": 3, + "Dividend": 1, + "Vol": 5, + "Volatility": 1, + "Market": 1, + "Information": 1, + "r": 3, + "Risk": 1, + "free": 1, + "rate": 1, + "Define": 1, + "storages": 1, + "SimulPriceA": 5, + "zeros": 2, + "Simulated": 2, + "Price": 2, + "Asset": 2, + "A": 1, + "SimulPriceB": 5, + "B": 1, + "Generating": 1, + "paths": 1, + "stock": 1, + "prices": 1, + "by": 2, + "Geometric": 1, + "Brownian": 1, + "Motion": 1, + "UpperTriangle": 2, + "chol": 1, + "Cholesky": 1, + "decomposition": 1, + "for": 2, + "i": 5, + "Wiener": 1, + "randn": 1, + "CorrWiener": 1, + "Wiener*UpperTriangle": 1, + "j": 7, + "*exp": 2, + "/2": 2, + "*dt": 2, + "+": 2, + "*sqrt": 2, + "*CorrWiener": 2, + "end": 3, + "return": 1 + }, +<<<<<<< HEAD "Squirrel": { "//example": 1, "from": 1, @@ -63150,991 +105209,3369 @@ "(": 10, "i": 1, "val": 2, - "in": 1, - ")": 10, - "print": 2, - "typeof": 1, - "/////////////////////////////////////////////": 1, - "class": 2, - "Entity": 3, - "constructor": 2, - "etype": 2, - "entityname": 4, - "name": 2, - "type": 2, - "x": 2, - "y": 2, - "z": 2, - "null": 2, - "function": 2, - "MoveTo": 1, - "newx": 2, - "newy": 2, - "newz": 2, - "Player": 2, - "extends": 1, - "base.constructor": 1, - "DoDomething": 1, - "newplayer": 1, - "newplayer.MoveTo": 1 - }, - "Standard ML": { - "structure": 15, - "LazyBase": 4, - "LAZY_BASE": 5, - "struct": 13, - "type": 6, - "a": 78, - "exception": 2, - "Undefined": 6, - "fun": 60, - "delay": 6, - "f": 46, - "force": 18, - "(": 840, - ")": 845, - "val": 147, - "undefined": 2, - "fn": 127, - "raise": 6, - "end": 55, - "LazyMemoBase": 4, - "datatype": 29, - "|": 226, - "Done": 2, - "of": 91, - "lazy": 13, - "unit": 7, - "-": 20, - "let": 44, - "open": 9, - "B": 2, - "inject": 5, - "x": 74, - "isUndefined": 4, - "ignore": 3, - ";": 21, - "false": 32, - "handle": 4, - "true": 36, - "toString": 4, - "if": 51, - "then": 51, - "else": 51, - "eqBy": 5, - "p": 10, - "y": 50, - "eq": 3, - "op": 2, - "compare": 8, - "Ops": 3, - "map": 3, - "Lazy": 2, - "LazyFn": 4, - "LazyMemo": 2, - "signature": 2, - "sig": 2, - "LAZY": 1, - "bool": 9, - "string": 14, +======= + "Ragel in Ruby Host": { + "begin": 3, + "%": 34, + "{": 19, + "machine": 3, + "simple_tokenizer": 1, + ";": 38, + "action": 9, + "MyTs": 2, + "my_ts": 6, + "p": 8, + "}": 19, + "MyTe": 2, + "my_te": 6, + "Emit": 4, + "emit": 4, + "data": 15, + "[": 20, + "my_ts...my_te": 1, + "]": 20, + ".pack": 6, + "(": 33, + ")": 33, + "nil": 4, + "foo": 8, + "any": 4, + "+": 7, + "main": 3, + "|": 11, "*": 9, - "order": 2, - "b": 58, - "functor": 2, - "Main": 1, - "S": 2, - "MAIN_STRUCTS": 1, - "MAIN": 1, - "Compile": 3, - "Place": 1, - "t": 23, - "Files": 3, - "Generated": 4, - "MLB": 4, - "O": 4, - "OUT": 3, - "SML": 6, - "TypeCheck": 3, - "toInt": 1, - "int": 1, - "OptPred": 1, - "Target": 1, - "Yes": 1, - "Show": 1, - "Anns": 1, - "PathMap": 1, - "gcc": 5, - "ref": 45, - "arScript": 3, - "asOpts": 6, - "{": 79, - "opt": 34, - "pred": 15, - "OptPred.t": 3, - "}": 79, - "list": 10, - "[": 104, - "]": 108, - "ccOpts": 6, - "linkOpts": 6, - "buildConstants": 2, - "debugRuntime": 3, - "debugFormat": 5, - "Dwarf": 3, - "DwarfPlus": 3, - "Dwarf2": 3, - "Stabs": 3, - "StabsPlus": 3, - "option": 6, - "NONE": 47, - "expert": 3, - "explicitAlign": 3, - "Control.align": 1, - "explicitChunk": 2, - "Control.chunk": 1, - "explicitCodegen": 5, - "Native": 5, - "Explicit": 5, - "Control.codegen": 3, - "keepGenerated": 3, - "keepO": 3, - "output": 16, - "profileSet": 3, - "profileTimeSet": 3, - "runtimeArgs": 3, - "show": 2, - "Show.t": 1, - "stop": 10, - "Place.OUT": 1, - "parseMlbPathVar": 3, - "line": 9, - "String.t": 1, - "case": 83, - "String.tokens": 7, - "Char.isSpace": 8, - "var": 3, - "path": 7, - "SOME": 68, - "_": 83, - "readMlbPathMap": 2, - "file": 14, - "File.t": 12, - "not": 1, - "File.canRead": 1, - "Error.bug": 14, - "concat": 52, - "List.keepAllMap": 4, - "File.lines": 2, - "String.forall": 4, - "v": 4, - "targetMap": 5, - "arch": 11, - "MLton.Platform.Arch.t": 3, - "os": 13, - "MLton.Platform.OS.t": 3, - "target": 28, - "Promise.lazy": 1, - "targetsDir": 5, - "OS.Path.mkAbsolute": 4, - "relativeTo": 4, - "Control.libDir": 1, - "potentialTargets": 2, - "Dir.lsDirs": 1, - "targetDir": 5, - "osFile": 2, - "OS.Path.joinDirFile": 3, - "dir": 4, - "archFile": 2, - "File.contents": 2, - "List.first": 2, - "MLton.Platform.OS.fromString": 1, - "MLton.Platform.Arch.fromString": 1, - "in": 40, - "setTargetType": 3, - "usage": 48, - "List.peek": 7, - "...": 23, - "Control": 3, - "Target.arch": 2, - "Target.os": 2, - "hasCodegen": 8, - "cg": 21, - "z": 73, - "Control.Target.arch": 4, - "Control.Target.os": 2, - "Control.Format.t": 1, - "AMD64": 2, - "x86Codegen": 9, - "X86": 3, - "amd64Codegen": 8, - "<": 3, - "Darwin": 6, - "orelse": 7, - "Control.format": 3, - "Executable": 5, - "Archive": 4, - "hasNativeCodegen": 2, - "defaultAlignIs8": 3, - "Alpha": 1, - "ARM": 1, - "HPPA": 1, - "IA64": 1, - "MIPS": 1, - "Sparc": 1, - "S390": 1, - "makeOptions": 3, - "s": 168, - "Fail": 2, - "reportAnnotation": 4, - "flag": 12, - "e": 18, - "Control.Elaborate.Bad": 1, - "Control.Elaborate.Deprecated": 1, - "ids": 2, - "Control.warnDeprecated": 1, - "Out.output": 2, - "Out.error": 3, - "List.toString": 1, - "Control.Elaborate.Id.name": 1, - "Control.Elaborate.Good": 1, - "Control.Elaborate.Other": 1, - "Popt": 1, - "tokenizeOpt": 4, - "opts": 4, - "List.foreach": 5, - "tokenizeTargetOpt": 4, - "List.map": 3, - "Normal": 29, - "SpaceString": 48, - "Align4": 2, - "Align8": 2, - "Expert": 72, - "o": 8, - "List.push": 22, - "OptPred.Yes": 6, - "boolRef": 20, - "ChunkPerFunc": 1, - "OneChunk": 1, - "String.hasPrefix": 2, - "prefix": 3, - "String.dropPrefix": 1, - "Char.isDigit": 3, - "Int.fromString": 4, - "n": 4, - "Coalesce": 1, - "limit": 1, - "Bool": 10, - "closureConvertGlobalize": 1, - "closureConvertShrink": 1, - "String.concatWith": 2, - "Control.Codegen.all": 2, - "Control.Codegen.toString": 2, - "name": 7, - "value": 4, - "Compile.setCommandLineConstant": 2, - "contifyIntoMain": 1, - "debug": 4, - "Control.Elaborate.processDefault": 1, - "Control.defaultChar": 1, - "Control.defaultInt": 5, - "Control.defaultReal": 2, - "Control.defaultWideChar": 2, - "Control.defaultWord": 4, - "Regexp.fromString": 7, - "re": 34, - "Regexp.compileDFA": 4, - "diagPasses": 1, - "Control.Elaborate.processEnabled": 2, - "dropPasses": 1, - "intRef": 8, - "errorThreshhold": 1, - "emitMain": 1, - "exportHeader": 3, - "Control.Format.all": 2, - "Control.Format.toString": 2, - "gcCheck": 1, - "Limit": 1, - "First": 1, - "Every": 1, - "Native.IEEEFP": 1, - "indentation": 1, - "Int": 8, - "i": 8, - "inlineNonRec": 6, - "small": 19, - "product": 19, - "#product": 1, - "inlineIntoMain": 1, - "loops": 18, - "inlineLeafA": 6, - "repeat": 18, - "size": 19, - "inlineLeafB": 6, - "keepCoreML": 1, - "keepDot": 1, - "keepMachine": 1, - "keepRSSA": 1, - "keepSSA": 1, - "keepSSA2": 1, - "keepSXML": 1, - "keepXML": 1, - "keepPasses": 1, - "libname": 9, - "loopPasses": 1, - "Int.toString": 3, - "markCards": 1, - "maxFunctionSize": 1, - "mlbPathVars": 4, - "@": 3, - "Native.commented": 1, - "Native.copyProp": 1, - "Native.cutoff": 1, - "Native.liveTransfer": 1, - "Native.liveStack": 1, - "Native.moveHoist": 1, - "Native.optimize": 1, - "Native.split": 1, - "Native.shuffle": 1, - "err": 1, - "optimizationPasses": 1, - "il": 10, - "set": 10, - "Result.Yes": 6, - "Result.No": 5, - "polyvariance": 9, - "hofo": 12, - "rounds": 12, - "preferAbsPaths": 1, - "profPasses": 1, - "profile": 6, - "ProfileNone": 2, - "ProfileAlloc": 1, - "ProfileCallStack": 3, - "ProfileCount": 1, - "ProfileDrop": 1, - "ProfileLabel": 1, - "ProfileTimeLabel": 4, - "ProfileTimeField": 2, - "profileBranch": 1, - "Regexp": 3, - "seq": 3, - "anys": 6, - "compileDFA": 3, - "profileC": 1, - "profileInclExcl": 2, - "profileIL": 3, - "ProfileSource": 1, - "ProfileSSA": 1, - "ProfileSSA2": 1, - "profileRaise": 2, - "profileStack": 1, - "profileVal": 1, - "Show.Anns": 1, - "Show.PathMap": 1, - "showBasis": 1, - "showDefUse": 1, - "showTypes": 1, - "Control.optimizationPasses": 4, - "String.equals": 4, - "Place.Files": 2, - "Place.Generated": 2, - "Place.O": 3, - "Place.TypeCheck": 1, - "#target": 2, - "Self": 2, - "Cross": 2, - "SpaceString2": 6, - "OptPred.Target": 6, - "#1": 1, - "trace": 4, - "#2": 2, - "typeCheck": 1, - "verbosity": 4, - "Silent": 3, - "Top": 5, - "Pass": 1, - "Detail": 1, - "warnAnn": 1, - "warnDeprecated": 1, - "zoneCutDepth": 1, - "style": 6, - "arg": 3, - "desc": 3, - "mainUsage": 3, - "parse": 2, - "Popt.makeUsage": 1, - "showExpert": 1, - "commandLine": 5, - "args": 8, - "lib": 2, - "libDir": 2, - "OS.Path.mkCanonical": 1, - "result": 1, - "targetStr": 3, - "libTargetDir": 1, - "targetArch": 4, - "archStr": 1, - "String.toLower": 2, - "MLton.Platform.Arch.toString": 2, - "targetOS": 5, - "OSStr": 2, - "MLton.Platform.OS.toString": 1, - "positionIndependent": 3, - "format": 7, - "MinGW": 4, - "Cygwin": 4, - "Library": 6, - "LibArchive": 3, - "Control.positionIndependent": 1, - "align": 1, - "codegen": 4, - "CCodegen": 1, - "MLton.Rusage.measureGC": 1, - "exnHistory": 1, - "Bool.toString": 1, - "Control.profile": 1, - "Control.ProfileCallStack": 1, - "sizeMap": 1, - "Control.libTargetDir": 1, - "ty": 4, - "Bytes.toBits": 1, - "Bytes.fromInt": 1, - "lookup": 4, - "use": 2, - "on": 1, - "must": 1, - "x86": 1, - "with": 1, - "ieee": 1, - "fp": 1, - "can": 1, - "No": 1, - "Out.standard": 1, - "input": 22, - "rest": 3, - "inputFile": 1, - "File.base": 5, - "File.fileOf": 1, - "start": 6, - "base": 3, - "rec": 1, - "loop": 3, - "suf": 14, - "hasNum": 2, - "sufs": 2, - "String.hasSuffix": 2, - "suffix": 8, - "Place.t": 1, - "List.exists": 1, - "File.withIn": 1, - "csoFiles": 1, - "Place.compare": 1, - "GREATER": 5, - "Place.toString": 2, - "EQUAL": 5, - "LESS": 5, - "printVersion": 1, - "tempFiles": 3, - "tmpDir": 2, - "tmpVar": 2, - "default": 2, - "MLton.Platform.OS.host": 2, - "Process.getEnv": 1, - "d": 32, - "temp": 3, - "out": 9, - "File.temp": 1, - "OS.Path.concat": 1, - "Out.close": 2, - "maybeOut": 10, - "maybeOutBase": 4, - "File.extension": 3, - "outputBase": 2, - "ext": 1, - "OS.Path.splitBaseExt": 1, - "defLibname": 6, - "OS.Path.splitDirFile": 1, - "String.extract": 1, - "toAlNum": 2, - "c": 42, - "Char.isAlphaNum": 1, - "#": 3, - "CharVector.map": 1, - "atMLtons": 1, - "Vector.fromList": 1, - "tokenize": 1, - "rev": 2, - "gccDebug": 3, - "asDebug": 2, - "compileO": 3, - "inputs": 7, - "libOpts": 2, - "System.system": 4, - "List.concat": 4, - "linkArchives": 1, - "String.contains": 1, - "File.move": 1, - "from": 1, - "to": 1, - "mkOutputO": 3, - "Counter.t": 3, - "File.dirOf": 2, - "Counter.next": 1, - "compileC": 2, - "debugSwitches": 2, - "compileS": 2, - "compileCSO": 1, - "List.forall": 1, - "Counter.new": 1, - "oFiles": 2, - "List.fold": 1, - "ac": 4, - "extension": 6, - "Option.toString": 1, - "mkCompileSrc": 1, - "listFiles": 2, - "elaborate": 1, - "compile": 2, - "outputs": 2, - "r": 3, - "make": 1, - "Int.inc": 1, - "Out.openOut": 1, - "print": 4, - "outputHeader": 2, - "done": 3, - "Control.No": 1, - "l": 2, - "Layout.output": 1, - "Out.newline": 1, - "Vector.foreach": 1, - "String.translate": 1, - "/": 1, - "Type": 1, - "Check": 1, - ".c": 1, - ".s": 1, - "invalid": 1, - "MLton": 1, - "Exn.finally": 1, - "File.remove": 1, - "doit": 1, - "Process.makeCommandLine": 1, - "main": 1, - "mainWrapped": 1, - "OS.Process.exit": 1, - "CommandLine.arguments": 1, - "RedBlackTree": 1, - "key": 16, - "entry": 12, - "dict": 17, - "Empty": 15, - "Red": 41, - "local": 1, - "lk": 4, - "tree": 4, - "and": 2, - "zipper": 3, - "TOP": 5, - "LEFTB": 10, - "RIGHTB": 10, - "delete": 3, - "zip": 19, - "Black": 40, - "LEFTR": 8, - "RIGHTR": 9, - "bbZip": 28, - "w": 17, - "delMin": 8, - "Match": 1, - "joinRed": 3, - "needB": 2, - "del": 8, - "NotFound": 2, - "entry1": 16, - "as": 7, - "key1": 8, - "datum1": 4, - "joinBlack": 1, - "insertShadow": 3, - "datum": 1, - "oldEntry": 7, - "ins": 8, - "left": 10, - "right": 10, - "restore_left": 1, - "restore_right": 1, - "app": 3, - "ap": 7, + "end": 23, + "#": 4, + "class": 3, + "SimpleTokenizer": 1, + "attr_reader": 2, + "path": 8, + "def": 10, + "initialize": 2, + "@path": 2, + "write": 9, + "stdout.puts": 2, + "perform": 2, + "pe": 4, + "ignored": 4, + "eof": 3, + "init": 3, + "leftover": 8, + "File.open": 2, + "do": 2, + "f": 2, + "while": 2, + "chunk": 2, + "f.read": 2, + "ENV": 2, + ".to_i": 2, + "chunk.unpack": 2, + "data.length": 3, + "exec": 3, + "if": 4, + "my_ts..": 1, + "-": 5, + "else": 2, + "s": 4, + "SimpleTokenizer.new": 1, + "ARGV": 2, + "s.perform": 2, + "ephemeris_parser": 1, + "mark": 6, + "parse_start_time": 2, + "parser.start_time": 1, + "mark..p": 4, + "parse_stop_time": 2, + "parser.stop_time": 1, + "parse_step_size": 2, + "parser.step_size": 1, + "parse_ephemeris_table": 2, + "fhold": 1, + "parser.ephemeris_table": 1, + "ws": 2, + "t": 1, + "r": 1, + "n": 1, + "adbc": 2, + "year": 2, + "digit": 7, + "month": 2, + "upper": 1, + "lower": 1, + "date": 2, + "hours": 2, + "minutes": 2, + "seconds": 2, + "tz": 2, + "datetime": 3, + "time_unit": 2, + "soe": 2, + "eoe": 2, + "ephemeris_table": 3, + "alnum": 1, + "./": 1, + "start_time": 4, + "space*": 2, + "stop_time": 4, + "step_size": 3, + "ephemeris": 2, + "any*": 3, + "require": 1, + "module": 1, + "Tengai": 1, + "EPHEMERIS_DATA": 2, + "Struct.new": 1, + ".freeze": 1, + "EphemerisParser": 1, + "<": 1, + "self.parse": 1, + "parser": 2, "new": 1, - "insert": 2, - "table": 14, - "clear": 1 + "data.unpack": 1, + "data.is_a": 1, + "String": 1, + "time": 6, + "super": 2, + "parse_time": 3, + "private": 1, + "DateTime.parse": 1, + "simple_scanner": 1, + "ts": 4, + "..": 1, + "te": 1, + "SimpleScanner": 1, + "||": 1, + "ts..pe": 1, + "SimpleScanner.new": 1 }, - "Stata": { - "local": 6, - "inname": 1, - "outname": 1, - "program": 2, - "hello": 1, - "vers": 1, - "display": 1, - "end": 4, - "{": 441, - "*": 25, - "version": 2, - "mar2014": 1, - "}": 440, - "...": 30, - "Hello": 1, - "world": 1, - "p_end": 47, - "MAXDIM": 1, - "smcl": 1, - "Matthew": 2, - "White": 2, - "jan2014": 1, - "title": 7, - "Title": 1, - "phang": 4, - "cmd": 111, - "odkmeta": 17, - "hline": 1, - "Create": 4, - "a": 30, - "do": 22, - "-": 42, - "file": 18, - "to": 23, - "import": 9, - "ODK": 6, + "JSONiq": { + "(": 14, + "Query": 2, + "for": 4, + "returning": 1, + "one": 1, + "database": 2, + "entry": 1, + ")": 14, + "import": 5, + "module": 5, + "namespace": 5, + "req": 6, + ";": 9, + "catalog": 4, + "variable": 4, + "id": 3, + "param": 4, + "-": 11, + "values": 4, + "[": 5, + "]": 5, + "part": 2, + "get": 2, "data": 4, - "marker": 10, - "syntax": 1, - "Syntax": 1, - "p": 2, - "using": 10, - "it": 61, - "help": 27, - "filename": 3, - "opt": 25, - "csv": 9, - "(": 60, - "csvfile": 3, - ")": 61, - "Using": 7, - "histogram": 2, - "as": 29, - "template.": 8, - "notwithstanding": 1, - "is": 31, - "rarely": 1, - "preceded": 3, - "by": 7, - "an": 6, - "underscore.": 1, - "cmdab": 5, - "s": 10, - "urvey": 2, - "surveyfile": 5, - "odkmeta##surveyopts": 2, - "surveyopts": 4, - "cho": 2, - "ices": 2, - "choicesfile": 4, - "odkmeta##choicesopts": 2, - "choicesopts": 5, - "[": 6, + "by": 2, + "key": 1, + "searching": 1, + "the": 1, + "keywords": 1, + "index": 3, + "phrase": 2, + "limit": 2, + "integer": 1, + "result": 1, + "at": 1, + "idx": 2, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method + "in": 1, + "search": 1, + "where": 1, + "le": 1, + "let": 1, + "result.s": 1, + "result.p": 1, + "return": 1, + "{": 2, + "|": 2, + "score": 1, + "result.r": 1, + "}": 2 + }, + "TeX": { + "%": 135, + "NeedsTeXFormat": 1, + "{": 463, + "LaTeX2e": 1, + "}": 469, + "ProvidesClass": 2, + "reedthesis": 1, + "[": 81, + "/01/27": 1, + "The": 4, + "Reed": 5, + "College": 5, + "Thesis": 5, + "Class": 4, + "]": 80, + "DeclareOption*": 2, + "PassOptionsToClass": 2, + "CurrentOption": 1, + "book": 2, + "ProcessOptions": 2, + "relax": 3, + "LoadClass": 2, + "RequirePackage": 20, + "fancyhdr": 2, + "AtBeginDocument": 1, + "fancyhf": 2, + "fancyhead": 5, + "LE": 1, + "RO": 1, + "thepage": 2, + "above": 1, + "makes": 2, + "your": 1, + "headers": 6, + "in": 20, + "all": 2, + "caps.": 2, + "If": 1, + "you": 1, + "would": 1, + "like": 1, + "different": 1, + "choose": 1, + "one": 1, + "of": 14, + "the": 19, + "following": 2, "options": 1, - "]": 6, - "odbc": 2, - "the": 67, - "position": 1, - "of": 36, - "last": 1, - "character": 1, - "in": 24, - "first": 2, - "column": 18, - "+": 2, - "synoptset": 5, - "tabbed": 4, - "synopthdr": 4, - "synoptline": 8, - "syntab": 6, - "Main": 3, - "heckman": 2, - "p2coldent": 3, - "name": 20, - ".csv": 2, - "that": 21, - "contains": 3, - "metadata": 5, - "from": 6, - "survey": 14, - "worksheet": 5, - "choices": 10, - "Fields": 2, - "synopt": 16, - "drop": 1, - "attrib": 2, - "headers": 8, - "not": 8, - "field": 25, - "attributes": 10, - "with": 10, - "keep": 1, - "only": 3, - "rel": 1, - "ax": 1, - "ignore": 1, - "fields": 7, - "exist": 1, - "Lists": 1, - "ca": 1, - "oth": 1, - "er": 1, - "odkmeta##other": 1, - "other": 14, - "Stata": 5, - "value": 14, - "values": 3, - "select": 6, - "or_other": 5, - ";": 15, - "default": 8, - "max": 2, - "one": 5, - "line": 4, - "write": 1, - "each": 7, - "list": 13, - "on": 7, - "single": 1, - "Options": 1, - "replace": 7, - "overwrite": 1, - "existing": 1, - "p2colreset": 4, - "and": 18, - "are": 13, - "required.": 1, - "Change": 1, - "t": 2, - "ype": 1, - "header": 15, - "type": 7, - "attribute": 10, - "la": 2, - "bel": 2, - "label": 9, + "(": 12, + "be": 3, + "sure": 1, + "to": 16, + "remove": 1, + "symbol": 4, + "from": 5, + "both": 1, + "right": 16, + "and": 5, + "left": 15, + ")": 12, + "RE": 2, + "slshape": 2, + "nouppercase": 2, + "leftmark": 2, + "This": 2, + "on": 2, + "RIGHT": 2, + "side": 2, + "pages": 2, + "italic": 1, + "use": 1, + "lowercase": 1, + "With": 1, + "Capitals": 1, + "When": 1, + "Specified.": 1, + "LO": 2, + "rightmark": 2, + "does": 1, + "same": 1, + "thing": 1, + "LEFT": 2, + "or": 1, + "scshape": 2, + "will": 2, + "small": 8, + "And": 1, + "so": 1, + "pagestyle": 3, + "fancy": 1, + "let": 11, + "oldthebibliography": 2, + "thebibliography": 2, + "endoldthebibliography": 2, + "endthebibliography": 1, + "renewenvironment": 2, + "#1": 40, + "addcontentsline": 5, + "toc": 5, + "chapter": 9, + "bibname": 2, + "end": 12, + "things": 1, + "for": 21, + "psych": 1, + "majors": 1, + "comment": 1, + "out": 1, + "oldtheindex": 2, + "theindex": 2, + "endoldtheindex": 2, + "endtheindex": 1, + "indexname": 1, + "RToldchapter": 1, + "renewcommand": 10, + "if@openright": 1, + "RTcleardoublepage": 3, + "else": 9, + "clearpage": 4, + "fi": 15, + "thispagestyle": 5, + "empty": 6, + "global": 2, + "@topnum": 1, + "z@": 2, + "@afterindentfalse": 1, + "secdef": 1, + "@chapter": 2, + "@schapter": 1, + "def": 18, + "#2": 17, + "ifnum": 3, + "c@secnumdepth": 1, + "m@ne": 2, + "if@mainmatter": 1, + "refstepcounter": 1, + "typeout": 1, + "@chapapp": 2, + "space": 8, + "thechapter.": 1, + "thechapter": 1, + "space#1": 1, + "chaptermark": 1, + "addtocontents": 2, + "lof": 1, + "protect": 2, + "addvspace": 2, + "p@": 3, + "lot": 1, + "if@twocolumn": 3, + "@topnewpage": 1, + "@makechapterhead": 2, + "@afterheading": 1, + "newcommand": 2, + "if@twoside": 1, + "ifodd": 1, + "c@page": 1, + "hbox": 15, + "newpage": 3, + "RToldcleardoublepage": 1, + "cleardoublepage": 4, + "setlength": 12, + "oddsidemargin": 2, + ".5in": 3, + "evensidemargin": 2, + "textwidth": 4, + "textheight": 4, + "topmargin": 6, + "addtolength": 8, + "headheight": 4, + "headsep": 3, + ".6in": 1, + "pt": 5, + "division#1": 1, + "gdef": 6, + "@division": 3, + "@latex@warning@no@line": 3, + "No": 3, + "noexpand": 3, + "division": 2, + "given": 3, + "department#1": 1, + "@department": 3, + "department": 1, + "thedivisionof#1": 1, + "@thedivisionof": 3, + "Division": 2, + "approvedforthe#1": 1, + "@approvedforthe": 3, + "advisor#1": 1, + "@advisor": 3, + "advisor": 1, + "altadvisor#1": 1, + "@altadvisor": 3, + "@altadvisortrue": 1, + "@empty": 1, + "newif": 1, + "if@altadvisor": 3, + "@altadvisorfalse": 1, + "contentsname": 1, + "Table": 1, + "Contents": 1, + "References": 1, + "l@chapter": 1, + "c@tocdepth": 1, + "addpenalty": 1, + "@highpenalty": 2, + "vskip": 4, + "em": 8, + "@plus": 1, + "@tempdima": 2, + "begingroup": 1, + "parindent": 2, + "rightskip": 1, + "@pnumwidth": 3, + "parfillskip": 1, + "-": 9, + "leavevmode": 1, + "bfseries": 3, + "advance": 1, + "leftskip": 2, + "hskip": 1, + "nobreak": 2, + "normalfont": 1, + "leaders": 1, + "m@th": 1, + "mkern": 2, + "@dotsep": 2, + "mu": 2, + ".": 3, + "hfill": 3, + "hb@xt@": 1, + "hss": 1, + "par": 6, + "penalty": 1, + "endgroup": 1, + "newenvironment": 1, + "abstract": 1, + "@restonecoltrue": 1, + "onecolumn": 1, + "@restonecolfalse": 1, + "Abstract": 2, + "begin": 11, + "center": 7, + "fontsize": 7, + "selectfont": 6, + "if@restonecol": 1, + "twocolumn": 1, + "ifx": 1, + "@pdfoutput": 1, + "@undefined": 1, + "RTpercent": 3, + "@percentchar": 1, + "AtBeginDvi": 2, + "special": 2, + "LaTeX": 3, + "/12/04": 3, + "SN": 3, + "rawpostscript": 1, + "AtEndDocument": 1, + "pdfinfo": 1, + "/Creator": 1, + "maketitle": 1, + "titlepage": 2, + "footnotesize": 2, + "footnoterule": 1, + "footnote": 1, + "thanks": 1, + "baselineskip": 2, + "setbox0": 2, + "Requirements": 2, + "Degree": 2, + "setcounter": 5, + "page": 4, + "null": 3, + "vfil": 8, + "@title": 1, + "centerline": 8, + "wd0": 7, + "hrulefill": 5, + "A": 1, + "Presented": 1, + "In": 1, + "Partial": 1, + "Fulfillment": 1, + "Bachelor": 1, + "Arts": 1, + "bigskip": 2, + "lineskip": 1, + ".75em": 1, + "tabular": 2, + "t": 1, + "c": 5, + "@author": 1, + "@date": 1, + "Approved": 2, + "just": 1, + "below": 2, + "cm": 2, + "not": 2, + "copy0": 1, + "approved": 1, + "major": 1, + "sign": 1, + "makebox": 6, + "problemset": 1, + "final": 2, + "article": 2, + "DeclareOption": 2, + "worksheet": 1, + "providecommand": 45, + "@solutionvis": 3, + "expand": 1, + "@expand": 3, + "letterpaper": 1, + "top": 1, + "bottom": 1, + "geometry": 1, + "pgfkeys": 1, + "For": 13, + "mathtable": 2, + "environment.": 3, + "tabularx": 1, + "pset": 1, + "heading": 2, + "float": 1, + "Used": 6, + "floats": 1, + "tables": 1, + "figures": 1, + "etc.": 1, + "graphicx": 1, + "inserting": 3, + "images.": 1, + "enumerate": 2, + "mathtools": 2, + "Required.": 7, + "Loads": 1, + "amsmath.": 1, + "amsthm": 1, + "theorem": 1, + "environments.": 1, + "amssymb": 1, + "booktabs": 1, + "esdiff": 1, + "derivatives": 4, + "partial": 2, + "Optional.": 1, + "shortintertext.": 1, + "customizing": 1, + "headers/footers.": 1, + "lastpage": 1, + "count": 1, + "header/footer.": 1, + "xcolor": 1, + "setting": 3, + "color": 3, + "hyperlinks": 2, + "obeyFinal": 1, + "Disable": 1, + "todos": 1, + "by": 1, + "option": 1, + "class": 1, + "@todoclr": 2, + "linecolor": 1, + "red": 1, + "todonotes": 1, + "keeping": 1, + "track": 1, + "dos.": 1, + "colorlinks": 1, + "true": 1, + "linkcolor": 1, + "navy": 2, + "urlcolor": 1, + "black": 2, + "hyperref": 1, + "urls": 2, + "references": 1, + "a": 2, + "document.": 1, + "url": 2, + "Enables": 1, + "with": 5, + "tag": 1, + "hypcap": 1, + "definecolor": 2, + "gray": 1, + "To": 1, + "Dos.": 1, + "brightness": 1, + "RGB": 1, + "coloring": 1, + "parskip": 1, + "ex": 2, + "Sets": 1, + "between": 1, + "paragraphs.": 2, + "Indent": 1, + "first": 1, + "line": 2, + "new": 1, + "VERBATIM": 2, + "verbatim": 2, + "verbatim@font": 1, + "ttfamily": 1, + "usepackage": 2, + "caption": 1, + "subcaption": 1, + "captionsetup": 4, + "table": 2, + "labelformat": 4, + "simple": 3, + "labelsep": 4, + "period": 3, + "labelfont": 4, + "bf": 4, + "figure": 2, + "subtable": 1, + "parens": 1, + "subfigure": 1, + "TRUE": 1, + "FALSE": 1, + "SHOW": 3, + "HIDE": 2, + "listoftodos": 1, + "pagenumbering": 1, + "arabic": 2, + "shortname": 2, + "authorname": 2, + "coursename": 3, + "#3": 8, + "assignment": 3, + "#4": 4, + "duedate": 2, + "#5": 2, + "minipage": 4, + "flushleft": 2, + "hypertarget": 1, + "@assignment": 2, + "textbf": 5, + "flushright": 2, + "headrulewidth": 1, + "footrulewidth": 1, + "fancyplain": 4, + "lfoot": 1, + "hyperlink": 1, + "cfoot": 1, + "rfoot": 1, + "pageref": 1, + "LastPage": 1, + "newcounter": 1, + "theproblem": 3, + "Problem": 2, + "counter": 1, + "environment": 1, + "problem": 1, + "addtocounter": 2, + "equation": 1, + "noindent": 2, + "textit": 1, + "Default": 2, + "is": 2, + "omit": 1, + "pagebreaks": 1, + "after": 1, + "solution": 2, + "qqed": 2, + "rule": 1, + "mm": 2, + "pagebreak": 2, + "show": 1, + "solutions.": 1, + "vspace": 2, + "Solution.": 1, + "ifnum#1": 2, + "chap": 1, + "section": 2, + "Sum": 3, + "n": 4, + "ensuremath": 15, + "sum_": 2, + "infsum": 2, + "infty": 2, + "Infinite": 1, + "sum": 1, + "Int": 1, + "x": 4, + "int_": 1, + "mathrm": 1, "d": 1, - "isabled": 1, - "disabled": 4, - "li": 1, - "stname": 1, - "list_name": 6, - "maximum": 3, - "plus": 2, - "min": 2, - "minimum": 2, - "minus": 1, - "#": 6, - "constant": 2, - "for": 13, - "all": 3, - "labels": 8, - "description": 1, - "Description": 1, - "pstd": 20, - "creates": 1, - "worksheets": 1, - "XLSForm.": 1, - "The": 9, - "saved": 1, - "completes": 2, - "following": 1, - "tasks": 3, - "order": 1, - "anova": 1, - "phang2": 23, - "o": 12, - "Import": 2, - "lists": 2, - "Add": 1, - "char": 4, - "characteristics": 4, - "Split": 1, - "select_multiple": 6, - "variables": 8, - "Drop": 1, - "note": 1, - "format": 1, - "Format": 1, - "date": 1, + "Integrate": 1, + "respect": 1, + "Lim": 2, + "displaystyle": 2, + "lim_": 1, + "Take": 1, + "limit": 1, + "infinity": 1, + "f": 1, + "Frac": 1, + "/": 1, + "_": 1, + "Slanted": 1, + "fraction": 1, + "proper": 1, + "spacing.": 1, + "Usefule": 1, + "display": 2, + "fractions.": 1, + "eval": 1, + "vert_": 1, + "L": 1, + "hand": 2, + "sizing": 2, + "R": 1, + "D": 1, + "diff": 1, + "writing": 2, + "PD": 1, + "diffp": 1, + "full": 1, + "Forces": 1, + "style": 1, + "math": 4, + "mode": 4, + "Deg": 1, + "circ": 1, + "adding": 1, + "degree": 1, + "even": 1, + "if": 1, + "abs": 1, + "vert": 3, + "Absolute": 1, + "Value": 1, + "norm": 1, + "Vert": 2, + "Norm": 1, + "vector": 1, + "magnitude": 1, + "e": 1, + "times": 3, + "Scientific": 2, + "Notation": 2, + "E": 2, + "u": 1, + "text": 7, + "units": 1, + "Roman": 1, + "mc": 1, + "hspace": 3, + "comma": 1, + "into": 2, + "mtxt": 1, + "insterting": 1, + "either": 1, + "side.": 1, + "Option": 1, + "preceding": 1, + "punctuation.": 1, + "prob": 1, + "P": 2, + "cndprb": 1, + "right.": 1, + "cov": 1, + "Cov": 1, + "twovector": 1, + "r": 3, + "array": 6, + "threevector": 1, + "fourvector": 1, + "vecs": 4, + "vec": 2, + "bm": 2, + "bolded": 2, + "arrow": 2, + "vect": 3, + "unitvecs": 1, + "hat": 2, + "unitvect": 1, + "Div": 1, + "del": 3, + "cdot": 1, + "Curl": 1, + "Grad": 1 + }, + "XQuery": { + "(": 38, + "-": 486, + "xproc.xqm": 1, + "core": 1, + "xqm": 1, + "contains": 1, + "entry": 2, + "points": 1, + "primary": 1, + "eval": 3, + "step": 5, + "function": 3, + "and": 3, + "control": 1, + "functions.": 1, + ")": 38, + "xquery": 1, + "version": 1, + "encoding": 1, + ";": 25, + "module": 6, + "namespace": 8, + "xproc": 17, + "declare": 24, + "namespaces": 5, + "p": 2, + "c": 1, + "err": 1, + "imports": 1, + "import": 4, + "util": 1, + "at": 4, + "const": 1, + "parse": 8, + "u": 2, + "options": 2, + "boundary": 1, + "space": 1, + "preserve": 1, + "option": 1, + "saxon": 1, + "output": 1, + "functions": 1, + "variable": 13, + "run": 2, + "run#6": 1, + "choose": 1, + "try": 1, + "catch": 1, + "group": 1, + "for": 1, + "each": 1, + "viewport": 1, + "library": 1, + "pipeline": 8, + "list": 1, + "all": 1, + "declared": 1, + "enum": 3, + "{": 5, + "": 1, + "name=": 1, + "ns": 1, + "": 1, + "}": 5, + "": 1, + "": 1, + "point": 1, + "stdin": 1, + "dflag": 1, + "tflag": 1, + "bindings": 2, + "STEP": 3, + "I": 1, + "preprocess": 1, + "let": 6, + "validate": 1, + "explicit": 3, + "AST": 2, + "name": 1, + "type": 1, + "ast": 1, + "element": 1, + "parse/@*": 1, + "sort": 1, + "parse/*": 1, + "II": 1, + "eval_result": 1, + "III": 1, + "serialize": 1, + "return": 2, + "results": 1, + "serialized_result": 2 + }, + "RMarkdown": { + "Some": 1, + "text.": 1, + "##": 1, + "A": 1, + "graphic": 1, + "in": 1, + "R": 1, + "{": 1, + "r": 1, + "}": 1, + "plot": 1, + "(": 3, + ")": 3, + "hist": 1, + "rnorm": 1 + }, + "Crystal": { + "module": 1, + "Crystal": 1, + "class": 2, + "ASTNode": 4, + "def": 84, + "transform": 81, + "(": 201, + "transformer": 1, + ")": 201, + "transformer.before_transform": 1, + "self": 77, + "node": 164, + "transformer.transform": 1, + "transformer.after_transform": 1, + "end": 135, + "Transformer": 1, + "before_transform": 1, + "after_transform": 1, + "Expressions": 2, + "exps": 6, + "[": 9, + "]": 9, + "of": 3, + "node.expressions.each": 1, + "do": 26, + "|": 8, + "exp": 3, + "new_exp": 3, + "exp.transform": 3, + "if": 23, + "new_exp.is_a": 1, + "exps.concat": 1, + "new_exp.expressions": 1, + "else": 2, + "<<": 1, + "exps.length": 1, + "node.expressions": 3, + "Call": 1, + "node_obj": 1, + "node.obj": 9, + "node_obj.transform": 1, + "transform_many": 23, + "node.args": 3, + "node_block": 1, + "node.block": 2, + "node_block.transform": 1, + "node_block_arg": 1, + "node.block_arg": 6, + "node_block_arg.transform": 1, + "And": 1, + "node.left": 3, + "node.left.transform": 3, + "node.right": 3, + "node.right.transform": 3, + "Or": 1, + "StringInterpolation": 1, + "ArrayLiteral": 1, + "node.elements": 1, + "node_of": 1, + "node.of": 2, + "node_of.transform": 1, + "HashLiteral": 1, + "node.keys": 1, + "node.values": 2, + "of_key": 1, + "node.of_key": 2, + "of_key.transform": 1, + "of_value": 1, + "node.of_value": 2, + "of_value.transform": 1, + "If": 1, + "node.cond": 5, + "node.cond.transform": 5, + "node.then": 3, + "node.then.transform": 3, + "node.else": 5, + "node.else.transform": 3, + "Unless": 1, + "IfDef": 1, + "MultiAssign": 1, + "node.targets": 1, + "SimpleOr": 1, + "Def": 1, + "node.body": 12, + "node.body.transform": 10, + "receiver": 2, + "node.receiver": 4, + "receiver.transform": 2, + "block_arg": 2, + "block_arg.transform": 2, + "Macro": 1, + "PointerOf": 1, + "node.exp": 3, + "node.exp.transform": 3, + "SizeOf": 1, + "InstanceSizeOf": 1, + "IsA": 1, + "node.obj.transform": 5, + "node.const": 1, + "node.const.transform": 1, + "RespondsTo": 1, + "Case": 1, + "node.whens": 1, + "node_else": 1, + "node_else.transform": 1, + "When": 1, + "node.conds": 1, + "ImplicitObj": 1, + "ClassDef": 1, + "superclass": 1, + "node.superclass": 2, + "superclass.transform": 1, + "ModuleDef": 1, + "While": 1, + "Generic": 1, + "node.name": 5, + "node.name.transform": 5, + "node.type_vars": 1, + "ExceptionHandler": 1, + "node.rescues": 1, + "node_ensure": 1, + "node.ensure": 2, + "node_ensure.transform": 1, + "Rescue": 1, + "node.types": 2, + "Union": 1, + "Hierarchy": 1, + "Metaclass": 1, + "Arg": 1, + "default_value": 1, + "node.default_value": 2, + "default_value.transform": 1, + "restriction": 1, + "node.restriction": 2, + "restriction.transform": 1, + "BlockArg": 1, + "node.fun": 1, + "node.fun.transform": 1, + "Fun": 1, + "node.inputs": 1, + "output": 1, + "node.output": 2, + "output.transform": 1, + "Block": 1, + "node.args.map": 1, + "{": 7, + "as": 4, + "Var": 2, + "}": 7, + "FunLiteral": 1, + "node.def.body": 1, + "node.def.body.transform": 1, + "FunPointer": 1, + "obj": 1, + "obj.transform": 1, + "Return": 1, + "node.exps": 5, + "Break": 1, + "Next": 1, + "Yield": 1, + "scope": 1, + "node.scope": 2, + "scope.transform": 1, + "Include": 1, + "Extend": 1, + "RangeLiteral": 1, + "node.from": 1, + "node.from.transform": 1, + "node.to": 2, + "node.to.transform": 2, + "Assign": 1, + "node.target": 1, + "node.target.transform": 1, + "node.value": 3, + "node.value.transform": 3, + "Nop": 1, + "NilLiteral": 1, + "BoolLiteral": 1, + "NumberLiteral": 1, + "CharLiteral": 1, + "StringLiteral": 1, + "SymbolLiteral": 1, + "RegexLiteral": 1, + "MetaVar": 1, + "InstanceVar": 1, + "ClassVar": 1, + "Global": 1, + "Require": 1, + "Path": 1, + "Self": 1, + "LibDef": 1, + "FunDef": 1, + "body": 1, + "body.transform": 1, + "TypeDef": 1, + "StructDef": 1, + "UnionDef": 1, + "EnumDef": 1, + "ExternalVar": 1, + "IndirectRead": 1, + "IndirectWrite": 1, + "TypeOf": 1, + "Primitive": 1, + "Not": 1, + "TypeFilteredNode": 1, + "TupleLiteral": 1, + "Cast": 1, + "DeclareVar": 1, + "node.var": 1, + "node.var.transform": 1, + "node.declared_type": 1, + "node.declared_type.transform": 1, + "Alias": 1, + "TupleIndexer": 1, + "Attribute": 1, + "exps.map": 1, + "SHEBANG#!bin/crystal": 2, + "require": 2, + "describe": 2, + "it": 21, + "run": 14, + ".to_i.should": 11, + "eq": 16, + ".to_f32.should": 2, + ".to_b.should": 1, + "be_true": 1, + "assert_type": 7, + "int32": 8, + "union_of": 1, + "char": 1, + "result": 3, + "types": 3, + "mod": 1, + "result.program": 1, + "foo": 3, + "mod.types": 1, + "NonGenericClassType": 1, + "foo.instance_vars": 1, + ".type.should": 3, + "mod.int32": 1, + "GenericClassType": 2, + "foo_i32": 4, + "foo.instantiate": 2, + "Type": 2, + "foo_i32.lookup_instance_var": 2 + }, + "edn": { + "[": 24, + "{": 22, + "db/id": 22, + "#db/id": 22, + "db.part/db": 6, + "]": 24, + "db/ident": 3, + "object/name": 18, + "db/doc": 4, + "db/valueType": 3, + "db.type/string": 2, + "db/index": 3, + "true": 3, + "db/cardinality": 3, + "db.cardinality/one": 3, + "db.install/_attribute": 3, + "}": 22, + "object/meanRadius": 18, + "db.type/double": 1, + "data/source": 2, + "db.part/tx": 2, + "db.part/user": 17 + }, + "PowerShell": { + "Write": 2, + "-": 2, + "Host": 2, + "function": 1, + "hello": 1, + "(": 1, + ")": 1, + "{": 1, + "}": 1 + }, + "Game Maker Language": { + "var": 79, + "victim": 10, + "killer": 11, + "assistant": 16, + "damageSource": 18, + ";": 1282, + "argument0": 28, + "argument1": 10, + "argument2": 3, + "argument3": 1, + "if": 397, + "(": 1501, + "instance_exists": 8, + ")": 1502, + "noone": 7, + "//*************************************": 6, + "//*": 3, + "Scoring": 1, + "and": 155, + "Kill": 1, + "log": 1, + "recordKillInLog": 1, + "victim.stats": 1, + "[": 99, + "DEATHS": 1, + "]": 103, + "+": 206, + "{": 300, + "WEAPON_KNIFE": 1, + "||": 16, + "WEAPON_BACKSTAB": 1, + "killer.stats": 8, + "STABS": 2, + "killer.roundStats": 8, + "POINTS": 10, + "}": 307, + "victim.object.currentWeapon.object_index": 1, + "Medigun": 2, + "victim.object.currentWeapon.uberReady": 1, + "BONUS": 2, + "KILLS": 2, + "victim.object.intel": 1, + "DEFENSES": 2, + "recordEventInLog": 1, + "killer.team": 1, + "killer.name": 2, + "global.myself": 4, + "assistant.stats": 2, + "ASSISTS": 2, + "assistant.roundStats": 2, + ".5": 2, + "//SPEC": 1, + "instance_create": 20, + "victim.object.x": 3, + "victim.object.y": 3, + "Spectator": 1, + "Gibbing": 2, + "xoffset": 5, + "yoffset": 5, + "xsize": 3, + "ysize": 3, + "view_xview": 3, + "view_yview": 3, + "view_wview": 2, + "view_hview": 2, + "randomize": 1, + "with": 47, + "victim.object": 2, + "WEAPON_ROCKETLAUNCHER": 1, + "or": 78, + "WEAPON_MINEGUN": 1, + "FRAG_BOX": 2, + "WEAPON_REFLECTED_STICKY": 1, + "WEAPON_REFLECTED_ROCKET": 1, + "FINISHED_OFF_GIB": 2, + "GENERATOR_EXPLOSION": 2, + "player.class": 15, + "CLASS_QUOTE": 3, + "global.gibLevel": 14, + "distance_to_point": 3, + "xsize/2": 2, + "ysize/2": 2, + "<": 39, + "hasReward": 4, + "repeat": 7, + "*": 18, + "createGib": 14, + "x": 76, + "y": 85, + "PumpkinGib": 1, + "hspeed": 14, + "vspeed": 13, + "random": 21, + "-": 212, + "choose": 8, + "false": 85, + "true": 73, + "else": 151, + "Gib": 1, + "switch": 9, + "player.team": 8, + "case": 50, + "TEAM_BLUE": 6, + "BlueClump": 1, + "break": 58, + "TEAM_RED": 8, + "RedClump": 1, + "blood": 2, + "BloodDrop": 1, + "blood.hspeed": 1, + "blood.vspeed": 1, + "blood.sprite_index": 1, + "PumpkinJuiceS": 1, + "//All": 1, + "Classes": 1, + "gib": 1, + "head": 1, + "hands": 2, + "feet": 1, + "Headgib": 1, + "//Medic": 1, + "has": 2, + "specially": 1, + "colored": 1, + "CLASS_MEDIC": 2, + "Hand": 3, + "Feet": 1, + "//Class": 1, + "specific": 1, + "gibs": 1, + "CLASS_PYRO": 2, + "Accesory": 5, + "CLASS_SOLDIER": 2, + "CLASS_ENGINEER": 3, + "CLASS_SNIPER": 3, + "playsound": 2, + "deadbody": 2, + "DeathSnd1": 1, + "DeathSnd2": 1, + "DeadGuy": 1, + "player": 36, + "deadbody.sprite_index": 2, + "haxxyStatue": 1, + "deadbody.image_index": 2, + "sprite_index": 14, + "CHARACTER_ANIMATION_DEAD": 1, + "deadbody.hspeed": 1, + "deadbody.vspeed": 1, + "deadbody.image_xscale": 1, + "global.gg_birthday": 1, + "myHat": 2, + "PartyHat": 1, + "myHat.image_index": 2, + "victim.team": 2, + "global.xmas": 1, + "XmasHat": 1, + "instance_destroy": 7, + "Deathcam": 1, + "global.killCam": 3, + "KILL_BOX": 1, + "FINISHED_OFF": 5, + "DeathCam": 1, + "DeathCam.killedby": 1, + "DeathCam.name": 1, + "DeathCam.oldxview": 1, + "DeathCam.oldyview": 1, + "DeathCam.lastDamageSource": 1, + "DeathCam.team": 1, + "global.myself.team": 3, + "#define": 26, + "__jso_gmt_tuple": 1, + "//Position": 1, + "address": 1, + "table": 1, + "data": 4, + "pos": 2, + "addr_table": 2, + "*argument_count": 1, + "//Build": 1, + "the": 62, + "tuple": 1, + "element": 8, + "by": 5, + "i": 95, + "ca": 1, + "isstr": 1, + "datastr": 1, + "for": 26, + "argument_count": 1, + "//Check": 1, + "argument": 10, + "Unexpected": 18, + "character": 20, + "at": 23, + "position": 16, + ".": 12, + "t": 23, + "f": 5, + "end": 11, + "of": 25, + "list": 36, + "in": 21, + "JSON": 5, + "string.": 5, + "string": 13, + "Cannot": 5, + "parse": 3, + "boolean": 3, + "value": 13, + "real": 14, + "expecting": 9, + "a": 55, + "digit.": 9, + "e": 4, + "E": 4, + "dot": 1, + "an": 24, + "integer": 6, + "Expected": 6, + "least": 6, + "arguments": 26, + "got": 6, + "map": 47, + "find": 10, + "lookup.": 4, + "use": 4, + "indices": 1, + "nested": 27, + "lists": 6, + "Index": 1, + "overflow": 4, + "Recursive": 1, + "abcdef": 1, + "Invalid": 2, + "hex": 2, + "number": 7, + "return": 56, + "num": 1, + "//": 11, + "global.levelType": 22, + "//global.currLevel": 1, + "global.currLevel": 22, + "global.hadDarkLevel": 4, + "global.startRoomX": 1, + "global.startRoomY": 1, + "global.endRoomX": 1, + "global.endRoomY": 1, + "oGame.levelGen": 2, + "j": 14, + "global.roomPath": 1, + "k": 5, + "global.lake": 3, + "<=>": 3, + "1": 32, + "not": 63, + "isLevel": 1, + "999": 2, + "global": 8, + "levelType": 2, + "2": 2, + "16": 14, + "0": 21, + "656": 3, + "obj": 14, + "oDark": 2, + "invincible": 2, + "sDark": 1, + "4": 2, + "oTemple": 2, + "cityOfGold": 1, + "sTemple": 2, + "lake": 1, + "i*16": 8, + "j*16": 6, + "oLush": 2, + "obj.sprite_index": 4, + "sLush": 2, + "obj.invincible": 3, + "oBrick": 1, + "sBrick": 1, + "global.cityOfGold": 2, + "*16": 2, + "//instance_create": 2, + "oSpikes": 1, + "background_index": 1, + "bgTemple": 1, + "global.temp1": 1, + "global.gameStart": 3, + "scrLevelGen": 1, + "global.cemetary": 3, + "rand": 10, + "global.probCemetary": 1, + "oRoom": 1, + "scrRoomGen": 1, + "global.blackMarket": 3, + "scrRoomGenMarket": 1, + "scrRoomGen2": 1, + "global.yetiLair": 2, + "scrRoomGenYeti": 1, + "scrRoomGen3": 1, + "scrRoomGen4": 1, + "scrRoomGen5": 1, + "global.darkLevel": 4, + "//if": 5, + "global.noDarkLevel": 1, + "global.probDarkLevel": 1, + "oPlayer1.x": 2, + "oPlayer1.y": 2, + "oFlare": 1, + "global.genUdjatEye": 4, + "global.madeUdjatEye": 1, + "global.genMarketEntrance": 4, + "global.madeMarketEntrance": 1, + "////////////////////////////": 2, + "global.temp2": 1, + "isRoom": 3, + "scrEntityGen": 1, + "oEntrance": 1, + "global.customLevel": 1, + "oEntrance.x": 1, + "oEntrance.y": 1, + "global.snakePit": 1, + "global.alienCraft": 1, + "global.sacrificePit": 1, + "oPlayer1": 1, + "alarm": 13, + "scrSetupWalls": 3, + "global.graphicsHigh": 1, + "tile_add": 4, + "bgExtrasLush": 1, + "*rand": 12, + "bgExtrasIce": 1, + "bgExtrasTemple": 1, + "bgExtras": 1, + "global.murderer": 1, + "global.thiefLevel": 1, + "isRealLevel": 1, + "oExit": 1, + "type": 8, + "oShopkeeper": 1, + "obj.status": 1, + "oTreasure": 1, + "collision_point": 30, + "oSolid": 14, + "instance_place": 3, + "oWater": 1, + "sWaterTop": 1, + "sLavaTop": 1, + "scrCheckWaterTop": 1, + "global.temp3": 1, + "//draws": 1, + "sprite": 12, + "draw": 3, + "facing": 17, + "RIGHT": 10, + "image_xscale": 17, + "blinkToggle": 1, + "state": 50, + "CLIMBING": 5, + "sPExit": 1, + "sDamselExit": 1, + "sTunnelExit": 1, + "global.hasJetpack": 4, + "whipping": 5, + "draw_sprite_ext": 10, + "image_yscale": 14, + "image_angle": 14, + "image_blend": 2, + "image_alpha": 10, + "//draw_sprite": 1, + "draw_sprite": 9, + "sJetpackBack": 1, + "sJetpackRight": 1, + "sJetpackLeft": 1, + "redColor": 2, + "make_color_rgb": 1, + "holdArrow": 4, + "ARROW_NORM": 2, + "sArrowRight": 1, + "ARROW_BOMB": 2, + "holdArrowToggle": 2, + "sBombArrowRight": 2, + "LEFT": 7, + "sArrowLeft": 1, + "sBombArrowLeft": 2, + "exit": 10, + "xr": 19, + "yr": 19, + "round": 6, + "cloakAlpha": 1, + "team": 13, + "canCloak": 1, + "cloakAlpha/2": 1, + "invisible": 1, + "stabbing": 2, + "power": 1, + "currentWeapon.stab.alpha": 1, + "&&": 6, + "global.showHealthBar": 3, + "draw_set_alpha": 3, + "draw_healthbar": 1, + "hp*100/maxHp": 1, + "c_black": 1, + "c_red": 3, + "c_green": 1, + "mouse_x": 1, + "mouse_y": 1, + "<25)>": 1, + "cloak": 2, + "myself": 2, + "draw_set_halign": 1, + "fa_center": 1, + "draw_set_valign": 1, + "fa_bottom": 1, + "team=": 1, + "draw_set_color": 2, + "c_blue": 2, + "draw_text": 4, + "35": 1, + "name": 9, + "showTeammateStats": 1, + "weapons": 3, + "50": 3, + "Superburst": 1, + "currentWeapon": 2, + "uberCharge": 1, + "20": 1, + "Shotgun": 1, + "Nuts": 1, + "N": 1, + "Bolts": 1, + "nutsNBolts": 1, + "Minegun": 1, + "Lobbed": 1, + "Mines": 1, + "lobbed": 1, + "ubercolour": 6, + "overlaySprite": 6, + "zoomed": 1, + "SniperCrouchRedS": 1, + "SniperCrouchBlueS": 1, + "sniperCrouchOverlay": 1, + "overlay": 1, + "omnomnomnom": 2, + "draw_sprite_ext_overlay": 7, + "omnomnomnomSprite": 2, + "omnomnomnomOverlay": 2, + "omnomnomnomindex": 4, + "c_white": 13, + "ubered": 7, + "7": 4, + "taunting": 2, + "tauntsprite": 2, + "tauntOverlay": 2, + "tauntindex": 2, + "humiliated": 1, + "humiliationPoses": 1, + "floor": 11, + "animationImage": 9, + "humiliationOffset": 1, + "animationOffset": 6, + "burnDuration": 2, + "burnIntensity": 2, + "numFlames": 1, + "/": 5, + "maxIntensity": 1, + "FlameS": 1, + "flameArray_x": 1, + "flameArray_y": 1, + "maxDuration": 1, + "demon": 4, + "demonX": 5, + "median": 2, + "demonY": 4, + "demonOffset": 4, + "demonDir": 2, + "abs": 9, + "dir": 3, + "demonFrame": 5, + "sprite_get_number": 1, + "*player.team": 2, + "dir*1": 2, + "downloadHandle": 3, + "url": 62, + "tmpfile": 3, + "window_oldshowborder": 2, + "window_oldfullscreen": 2, + "timeLeft": 1, + "counter": 1, + "AudioControlPlaySong": 1, + "window_get_showborder": 1, + "window_get_fullscreen": 1, + "window_set_fullscreen": 2, + "window_set_showborder": 1, + "global.updaterBetaChannel": 3, + "UPDATE_SOURCE_BETA": 1, + "UPDATE_SOURCE": 1, + "temp_directory": 1, + "httpGet": 1, + "while": 15, + "httpRequestStatus": 1, + "download": 1, + "isn": 1, + "s": 6, + "extract": 1, + "downloaded": 1, + "file": 2, + "now.": 1, + "extractzip": 1, + "working_directory": 6, + "execute_program": 1, + "game_end": 1, + "RoomChangeObserver": 1, + "set_little_endian_global": 1, + "file_exists": 5, + "file_delete": 3, + "backupFilename": 5, + "file_find_first": 1, + "file_find_next": 1, + "file_find_close": 1, + "customMapRotationFile": 7, + "restart": 4, + "//import": 1, + "wav": 1, + "files": 1, + "music": 1, + "global.MenuMusic": 3, + "sound_add": 3, + "global.IngameMusic": 3, + "global.FaucetMusic": 3, + "sound_volume": 3, + "global.sendBuffer": 19, + "buffer_create": 7, + "global.tempBuffer": 3, + "global.HudCheck": 1, + "global.map_rotation": 19, + "ds_list_create": 5, + "global.CustomMapCollisionSprite": 1, + "window_set_region_scale": 1, + "ini_open": 2, + "global.playerName": 7, + "ini_read_string": 12, + "string_count": 2, + "string_copy": 32, + "min": 4, + "string_length": 25, + "MAX_PLAYERNAME_LENGTH": 2, + "global.fullscreen": 3, + "ini_read_real": 65, + "global.useLobbyServer": 2, + "global.hostingPort": 2, + "global.music": 2, + "MUSIC_BOTH": 1, + "global.playerLimit": 4, + "//thy": 1, + "playerlimit": 1, + "shalt": 1, + "exceed": 1, + "global.dedicatedMode": 7, + "show_message": 7, + "ini_write_real": 60, + "global.multiClientLimit": 2, + "global.particles": 2, + "PARTICLES_NORMAL": 1, + "global.monitorSync": 3, + "set_synchronization": 2, + "global.medicRadar": 2, + "global.showHealer": 2, + "global.showHealing": 2, + "global.showTeammateStats": 2, + "global.serverPluginsPrompt": 2, + "global.restartPrompt": 2, + "//user": 1, + "HUD": 1, + "settings": 1, + "global.timerPos": 2, + "global.killLogPos": 2, + "global.kothHudPos": 2, + "global.clientPassword": 1, + "global.shuffleRotation": 2, + "global.timeLimitMins": 2, + "max": 2, + "global.serverPassword": 2, + "global.mapRotationFile": 1, + "global.serverName": 2, + "global.welcomeMessage": 2, + "global.caplimit": 3, + "global.caplimitBkup": 1, + "global.autobalance": 2, + "global.Server_RespawntimeSec": 4, + "global.rewardKey": 1, + "unhex": 1, + "global.rewardId": 1, + "global.mapdownloadLimitBps": 2, + "isBetaVersion": 1, + "global.attemptPortForward": 2, + "global.serverPluginList": 3, + "global.serverPluginsRequired": 2, + "CrosshairFilename": 5, + "CrosshairRemoveBG": 4, + "global.queueJumping": 2, + "global.backgroundHash": 2, + "global.backgroundTitle": 2, + "global.backgroundURL": 2, + "global.backgroundShowVersion": 2, + "readClasslimitsFromIni": 1, + "global.currentMapArea": 1, + "global.totalMapAreas": 1, + "global.setupTimer": 1, + "global.joinedServerName": 2, + "global.serverPluginsInUse": 1, + "global.pluginPacketBuffers": 1, + "ds_map_create": 4, + "global.pluginPacketPlayers": 1, + "ini_write_string": 10, + "ini_key_delete": 1, + "global.classlimits": 10, + "CLASS_SCOUT": 1, + "CLASS_HEAVY": 2, + "CLASS_DEMOMAN": 1, + "CLASS_SPY": 1, + "//screw": 1, + "index": 11, + "we": 5, + "will": 1, + "start": 1, + "//map_truefort": 1, + "maps": 37, + "//map_2dfort": 1, + "//map_conflict": 1, + "//map_classicwell": 1, + "//map_waterway": 1, + "//map_orange": 1, + "//map_dirtbowl": 1, + "//map_egypt": 1, + "//arena_montane": 1, + "//arena_lumberyard": 1, + "//gen_destroy": 1, + "//koth_valley": 1, + "//koth_corinth": 1, + "//koth_harvest": 1, + "//dkoth_atalia": 1, + "//dkoth_sixties": 1, + "//Server": 1, + "respawn": 1, "time": 1, - "datetime": 1, - "Attach": 2, - "variable": 14, - "notes": 1, - "merge": 3, - "Merge": 1, - "repeat": 6, - "groups": 4, - "After": 1, + "calculator.": 1, + "Converts": 1, + "each": 18, + "second": 2, + "to": 62, + "frame.": 1, + "read": 1, + "multiply": 1, + "hehe": 1, + "global.Server_Respawntime": 3, + "global.mapchanging": 1, + "ini_close": 2, + "global.protocolUuid": 2, + "parseUuid": 2, + "PROTOCOL_UUID": 1, + "global.gg2lobbyId": 2, + "GG2_LOBBY_UUID": 1, + "initRewards": 1, + "IPRaw": 3, + "portRaw": 3, + "doubleCheck": 8, + "global.launchMap": 5, + "parameter_count": 1, + "parameter_string": 8, + "global.serverPort": 1, + "global.serverIP": 1, + "global.isHost": 1, + "Client": 1, + "global.customMapdesginated": 2, + "fileHandle": 6, + "mapname": 9, + "file_text_open_read": 1, + "file_text_eof": 1, + "file_text_read_string": 1, + "string_char_at": 13, + "chr": 3, + "it": 6, + "starts": 1, + "space": 4, + "tab": 2, + "string_delete": 1, + "delete": 1, + "that": 2, + "comment": 1, + "starting": 1, + "#": 3, + "ds_list_add": 23, + "file_text_readln": 1, + "file_text_close": 1, + "load": 1, + "from": 5, + "ini": 1, + "Maps": 9, + "section": 1, + "//Set": 1, + "up": 6, + "rotation": 1, + "stuff": 2, + "sort_list": 7, + "*maps": 1, + "ds_list_sort": 1, + "ds_list_size": 11, + "ds_list_find_value": 9, + "mod": 1, + "ds_list_destroy": 4, + "global.gg2Font": 2, + "font_add_sprite": 2, + "gg2FontS": 1, + "ord": 16, + "global.countFont": 1, + "countFontS": 1, + "draw_set_font": 1, + "cursor_sprite": 1, + "CrosshairS": 5, + "directory_exists": 2, + "directory_create": 2, + "AudioControl": 1, + "SSControl": 1, + "message_background": 1, + "popupBackgroundB": 1, + "message_button": 1, + "popupButtonS": 1, + "message_text_font": 1, + "message_button_font": 1, + "message_input_font": 1, + "//Key": 1, + "Mapping": 1, + "global.jump": 1, + "global.down": 1, + "global.left": 1, + "global.right": 1, + "global.attack": 1, + "MOUSE_LEFT": 1, + "global.special": 1, + "MOUSE_RIGHT": 1, + "global.taunt": 1, + "global.chat1": 1, + "global.chat2": 1, + "global.chat3": 1, + "global.medic": 1, + "global.drop": 1, + "global.changeTeam": 1, + "global.changeClass": 1, + "global.showScores": 1, + "vk_shift": 1, + "calculateMonthAndDay": 1, + "loadplugins": 1, + "registry_set_root": 1, + "HKLM": 1, + "global.NTKernelVersion": 1, + "registry_read_string_ext": 1, + "CurrentVersion": 1, + "SIC": 1, + "sprite_replace": 1, + "sprite_set_offset": 1, + "sprite_get_width": 1, + "/2": 2, + "sprite_get_height": 1, + "AudioControlToggleMute": 1, + "room_goto_fix": 2, + "Menu": 2, + "assert_true": 1, + "_assert_error_popup": 2, + "string_repeat": 2, + "_assert_newline": 2, + "assert_false": 1, + "assert_equal": 1, + "//Safe": 1, + "equality": 1, + "check": 1, + "won": 1, + "support": 1, + "show_error": 2, + "instead": 1, + "_assert_debug_value": 1, + "//String": 1, + "is_string": 2, + "os_browser": 1, + "browser_not_a_browser": 1, + "string_replace_all": 1, + "//Numeric": 1, + "GMTuple": 1, + "jso_encode_string": 1, + "failed": 56, + "encode": 8, + "escape": 2, + "jso_encode_map": 4, + "empty": 13, + "key": 17, + "one": 42, + "key1": 3, + "key2": 3, + "multi": 7, + "jso_encode_list": 3, + "three": 36, + "_jso_decode_string": 5, + "decode": 36, + "small": 1, + "The": 6, + "quick": 2, + "brown": 2, + "fox": 2, + "jumps": 3, + "over": 2, + "lazy": 2, + "dog.": 2, + "simple": 1, + "characters": 3, + "Waahoo": 1, + "negg": 1, + "mixed": 1, + "_jso_decode_boolean": 2, + "_jso_decode_real": 11, + "standard": 1, + "zero": 4, + "signed": 2, + "decimal": 1, + "digits": 1, + "positive": 7, + "negative": 7, + "exponent": 4, + "_jso_decode_integer": 3, + "_jso_decode_map": 14, + "didn": 14, + "include": 14, + "right": 14, + "prefix": 14, + "#1": 14, + "#2": 14, + "entry": 29, + "pi": 2, + "bool": 2, + "waahoo": 10, + "woohah": 8, + "mix": 4, + "_jso_decode_list": 14, + "woo": 2, + "Empty": 4, + "should": 25, + "equal": 20, + "other.": 12, + "junk": 2, + "info": 1, + "taxi": 1, + "An": 4, + "filled": 4, + "map.": 2, + "A": 24, + "B": 18, + "C": 8, + "same": 6, + "content": 4, + "entered": 4, + "different": 12, + "orders": 4, + "D": 1, + "keys": 2, + "values": 4, + "six": 1, + "corresponding": 4, + "types": 4, + "other": 4, + "crash.": 4, + "list.": 2, + "Lists": 4, + "two": 16, + "entries": 2, + "also": 2, + "jso_map_check": 9, + "existing": 9, + "single": 11, + "jso_map_lookup": 3, + "found": 21, + "wrong": 10, + "trap": 2, + "jso_map_lookup_type": 3, + "four": 21, + "inexistent": 11, + "multiple": 20, + "jso_list_check": 8, + "jso_list_lookup": 3, + "jso_list_lookup_type": 3, + "inner": 1, + "indexing": 1, + "on": 4, + "bad": 1, + "jso_cleanup_map": 1, + "one_map": 1, + "hangCountMax": 2, + "//////////////////////////////////////": 2, + "kLeft": 12, + "checkLeft": 1, + "kLeftPushedSteps": 3, + "kLeftPressed": 2, + "checkLeftPressed": 1, + "kLeftReleased": 3, + "checkLeftReleased": 1, + "kRight": 12, + "checkRight": 1, + "kRightPushedSteps": 3, + "kRightPressed": 2, + "checkRightPressed": 1, + "kRightReleased": 3, + "checkRightReleased": 1, + "kUp": 5, + "checkUp": 1, + "kDown": 5, + "checkDown": 1, + "//key": 1, + "canRun": 1, + "kRun": 2, + "kJump": 6, + "checkJump": 1, + "kJumpPressed": 11, + "checkJumpPressed": 1, + "kJumpReleased": 5, + "checkJumpReleased": 1, + "cantJump": 3, + "global.isTunnelMan": 1, + "sTunnelAttackL": 1, + "holdItem": 1, + "kAttack": 2, + "checkAttack": 2, + "kAttackPressed": 2, + "checkAttackPressed": 1, + "kAttackReleased": 2, + "checkAttackReleased": 1, + "kItemPressed": 2, + "checkItemPressed": 1, + "xPrev": 1, + "yPrev": 1, + "stunned": 3, + "dead": 3, + "//////////////////////////////////////////": 2, + "colSolidLeft": 4, + "colSolidRight": 3, + "colLeft": 6, + "colRight": 6, + "colTop": 4, + "colBot": 11, + "colLadder": 3, + "colPlatBot": 6, + "colPlat": 5, + "colWaterTop": 3, + "colIceBot": 2, + "runKey": 4, + "isCollisionMoveableSolidLeft": 1, + "isCollisionMoveableSolidRight": 1, + "isCollisionLeft": 2, + "isCollisionRight": 2, + "isCollisionTop": 1, + "isCollisionBottom": 1, + "isCollisionLadder": 1, + "isCollisionPlatformBottom": 1, + "isCollisionPlatform": 1, + "isCollisionWaterTop": 1, + "oIce": 1, + "checkRun": 1, + "runHeld": 3, + "HANGING": 10, + "approximatelyZero": 4, + "xVel": 24, + "xAcc": 12, + "platformCharacterIs": 23, + "ON_GROUND": 18, + "DUCKING": 4, + "pushTimer": 3, + "SS_IsSoundPlaying": 2, + "global.sndPush": 4, + "playSound": 3, + "runAcc": 2, + "/xVel": 1, + "oCape": 2, + "oCape.open": 6, + "kJumped": 7, + "ladderTimer": 4, + "ladder": 5, + "oLadder": 4, + "ladder.x": 3, + "oLadderTop": 2, + "yAcc": 26, + "climbAcc": 2, + "FALLING": 8, + "STANDING": 2, + "departLadderXVel": 2, + "departLadderYVel": 1, + "JUMPING": 6, + "jumpButtonReleased": 7, + "jumpTime": 8, + "IN_AIR": 5, + "gravityIntensity": 2, + "yVel": 20, + "RUNNING": 3, + "//playSound": 1, + "global.sndLand": 1, + "grav": 22, + "global.hasGloves": 3, + "hangCount": 14, + "yVel*0.3": 1, + "oWeb": 2, + "obj.life": 1, + "initialJumpAcc": 6, + "xVel/2": 3, + "gravNorm": 7, + "global.hasCape": 1, + "jetpackFuel": 2, + "fallTimer": 2, + "global.hasJordans": 1, + "yAccLimit": 2, + "global.hasSpringShoes": 1, + "global.sndJump": 1, + "jumpTimeTotal": 2, + "//let": 1, + "continue": 4, + "jump": 1, + "jumpTime/jumpTimeTotal": 1, + "looking": 2, + "UP": 1, + "LOOKING_UP": 4, + "move_snap": 6, + "oTree": 4, + "oArrow": 5, + "instance_nearest": 1, + "obj.stuck": 1, + "//the": 2, + "can": 1, + "want": 1, + "because": 2, + "is": 9, + "too": 2, + "high": 1, + "yPrevHigh": 1, + "ll": 1, + "move": 2, + "correct": 1, + "distance": 1, + "but": 2, + "need": 1, + "shorten": 1, + "out": 4, + "little": 1, + "ratio": 1, + "xVelInteger": 2, + "/dist*0.9": 1, + "//can": 1, + "be": 4, + "changed": 1, + "moveTo": 2, + "xVelInteger*ratio": 1, + "yVelInteger*ratio": 1, + "slopeChangeInY": 1, + "maxDownSlope": 1, + "floating": 1, + "just": 1, + "above": 1, + "slope": 1, + "so": 2, + "down": 1, + "upYPrev": 1, + "<=upYPrev+maxDownSlope;y+=1)>": 1, + "hit": 1, + "solid": 1, + "below": 1, + "upYPrev=": 1, + "I": 1, + "know": 1, + "this": 2, + "doesn": 1, + "seem": 1, + "make": 1, + "sense": 1, + "variable": 1, + "all": 3, + "works": 1, + "correctly": 1, + "after": 1, + "loop": 1, + "y=": 1, + "figures": 1, + "what": 1, + "characterSprite": 1, + "sets": 1, + "previous": 2, + "previously": 1, + "statePrevPrev": 1, + "statePrev": 2, + "calculates": 1, + "image_speed": 9, + "based": 1, + "velocity": 1, + "runAnimSpeed": 1, + "sqrt": 1, + "sqr": 2, + "climbAnimSpeed": 1, + "setCollisionBounds": 3, + "8": 9, + "5": 5, + "DUCKTOHANG": 1, + "image_index": 1, + "limit": 5, + "animation": 1, + "always": 1, + "looks": 1, + "good": 1, + "playerId": 11, + "commandLimitRemaining": 4, + "variable_local_exists": 4, + "commandReceiveState": 1, + "commandReceiveExpectedBytes": 1, + "commandReceiveCommand": 1, + "socket": 40, + "player.socket": 12, + "tcp_receive": 3, + "player.commandReceiveExpectedBytes": 7, + "player.commandReceiveState": 7, + "player.commandReceiveCommand": 4, + "read_ubyte": 10, + "commandBytes": 2, + "commandBytesInvalidCommand": 1, + "commandBytesPrefixLength1": 1, + "commandBytesPrefixLength2": 1, + "default": 1, + "read_ushort": 2, + "PLAYER_LEAVE": 1, + "socket_destroy": 4, + "PLAYER_CHANGECLASS": 1, + "class": 8, + "getCharacterObject": 2, + "player.object": 12, + "SpawnRoom": 2, + "lastDamageDealer": 8, + "sendEventPlayerDeath": 4, + "BID_FAREWELL": 4, + "doEventPlayerDeath": 4, + "secondToLastDamageDealer": 2, + "lastDamageDealer.object": 2, + "lastDamageDealer.object.healer": 4, + "player.alarm": 4, + "<=0)>": 1, + "checkClasslimits": 2, + "ServerPlayerChangeclass": 2, + "sendBuffer": 1, + "PLAYER_CHANGETEAM": 1, + "newTeam": 7, + "balance": 5, + "redSuperiority": 6, + "calculate": 1, + "which": 1, + "bigger": 2, + "Player": 1, + "TEAM_SPECTATOR": 1, + "newClass": 4, + "ServerPlayerChangeteam": 1, + "ServerBalanceTeams": 1, + "CHAT_BUBBLE": 2, + "bubbleImage": 5, + "global.aFirst": 1, + "write_ubyte": 20, + "setChatBubble": 1, + "BUILD_SENTRY": 2, + "collision_circle": 1, + "player.object.x": 3, + "player.object.y": 3, + "Sentry": 1, + "player.object.nutsNBolts": 1, + "player.sentry": 2, + "player.object.onCabinet": 1, + "write_ushort": 2, + "global.serializeBuffer": 3, + "player.object.x*5": 1, + "player.object.y*5": 1, + "write_byte": 1, + "player.object.image_xscale": 2, + "buildSentry": 1, + "DESTROY_SENTRY": 1, + "DROP_INTEL": 1, + "player.object.intel": 1, + "sendEventDropIntel": 1, + "doEventDropIntel": 1, + "OMNOMNOMNOM": 2, + "player.humiliated": 1, + "player.object.taunting": 1, + "player.object.omnomnomnom": 1, + "player.object.canEat": 1, + "omnomnomnomend": 2, + "xscale": 1, + "TOGGLE_ZOOM": 2, + "toggleZoom": 1, + "PLAYER_CHANGENAME": 2, + "nameLength": 4, + "socket_receivebuffer_size": 3, + "KICK": 2, + "KICK_NAME": 1, + "current_time": 2, + "lastNamechange": 2, + "read_string": 9, + "write_string": 9, + "INPUTSTATE": 1, + "keyState": 1, + "netAimDirection": 1, + "aimDirection": 1, + "netAimDirection*360/65536": 1, + "event_user": 1, + "REWARD_REQUEST": 1, + "player.rewardId": 1, + "player.challenge": 2, + "rewardCreateChallenge": 1, + "REWARD_CHALLENGE_CODE": 1, + "write_binstring": 1, + "REWARD_CHALLENGE_RESPONSE": 1, + "answer": 3, + "authbuffer": 1, + "read_binstring": 1, + "rewardAuthStart": 1, + "challenge": 1, + "rewardId": 1, + "PLUGIN_PACKET": 1, + "packetID": 3, + "buf": 5, + "success": 3, + "write_buffer_part": 3, + "_PluginPacketPush": 1, + "buffer_destroy": 8, + "KICK_BAD_PLUGIN_PACKET": 1, + "CLIENT_SETTINGS": 2, + "mirror": 4, + "player.queueJump": 1, + "__http_init": 3, + "global.__HttpClient": 4, + "object_add": 1, + "object_set_persistent": 1, + "__http_split": 3, + "text": 19, + "delimeter": 7, + "count": 4, + "string_pos": 20, + "__http_parse_url": 4, + "ds_map_add": 15, + "colonPos": 22, + "slashPos": 13, + "queryPos": 12, + "ds_map_destroy": 6, + "__http_resolve_url": 2, + "baseUrl": 3, + "refUrl": 18, + "urlParts": 15, + "refUrlParts": 5, + "canParseRefUrl": 3, + "result": 11, + "ds_map_find_value": 22, + "__http_resolve_path": 3, + "ds_map_replace": 3, + "ds_map_exists": 11, + "ds_map_delete": 1, + "path": 10, + "query": 4, + "relUrl": 1, + "__http_construct_url": 2, + "basePath": 4, + "refPath": 7, + "parts": 29, + "refParts": 5, + "lastPart": 3, + "ds_list_delete": 5, + "part": 6, + "ds_list_replace": 3, + "__http_parse_hex": 2, + "hexString": 4, + "hexValues": 3, + "digit": 4, + "__http_prepare_request": 4, + "client": 33, + "headers": 11, + "parsed": 18, + "destroyed": 3, + "CR": 10, + "LF": 5, + "CRLF": 17, + "tcp_connect": 1, + "errored": 19, + "error": 18, + "linebuf": 33, + "line": 19, + "statusCode": 6, + "reasonPhrase": 2, + "responseBody": 19, + "responseBodySize": 5, + "responseBodyProgress": 5, + "responseHeaders": 9, + "requestUrl": 2, + "requestHeaders": 2, + "ds_map_find_first": 1, + "ds_map_find_next": 1, + "socket_send": 1, + "__http_parse_header": 3, + "headerValue": 9, + "string_lower": 3, + "headerName": 4, + "__http_client_step": 2, + "socket_has_error": 1, + "socket_error": 1, + "__http_client_destroy": 20, + "available": 7, + "tcp_receive_available": 1, + "tcp_eof": 3, + "bytesRead": 6, + "c": 20, + "Reached": 2, + "HTTP": 1, + "defines": 1, + "sequence": 2, + "as": 1, + "marker": 1, + "protocol": 3, + "elements": 1, + "except": 2, + "entity": 1, + "body": 2, + "see": 1, + "appendix": 1, + "19": 1, + "3": 1, + "tolerant": 1, + "applications": 1, + "Strip": 1, + "trailing": 1, + "First": 1, + "status": 2, + "code": 2, + "first": 3, + "Response": 1, + "message": 1, + "Status": 1, + "Line": 1, + "consisting": 1, + "version": 4, + "followed": 1, + "numeric": 1, + "its": 1, + "associated": 1, + "textual": 1, + "phrase": 1, + "separated": 1, + "SP": 1, + "No": 3, + "allowed": 1, + "final": 1, + "httpVer": 2, + "spacePos": 11, + "response": 5, + "Other": 1, + "Blank": 1, + "write": 1, + "remainder": 1, + "Header": 1, + "Receiving": 1, + "write_buffer": 2, + "transfer": 6, + "encoding": 2, + "chunked": 4, + "Chunked": 1, + "let": 1, + "actualResponseBody": 8, + "actualResponseSize": 1, + "actualResponseBodySize": 3, + "Parse": 1, + "chunks": 1, + "chunk": 12, + "size": 7, + "extension": 3, + "HEX": 1, + "buffer_bytes_left": 6, + "chunkSize": 11, + "Read": 1, + "byte": 2, + "We": 1, + "semicolon": 1, + "beginning": 1, + "skip": 1, + "header": 2, + "Doesn": 1, + "did": 1, + "something": 1, + "Parsing": 1, + "was": 1, + "hexadecimal": 1, + "Is": 1, + "than": 1, + "remaining": 1, + "responseHaders": 1, + "location": 4, + "resolved": 5, + "http_new_get": 1, + "variable_global_exists": 2, + "http_new_get_ex": 1, + "http_step": 1, + "client.errored": 3, + "client.state": 3, + "http_status_code": 1, + "client.statusCode": 1, + "http_reason_phrase": 1, + "client.error": 1, + "client.reasonPhrase": 1, + "http_response_body": 1, + "client.responseBody": 1, + "http_response_body_size": 1, + "client.responseBodySize": 1, + "http_response_body_progress": 1, + "client.responseBodyProgress": 1, + "http_response_headers": 1, + "client.responseHeaders": 1, + "http_destroy": 1, + "playerObject": 1, + "playerID": 1, + "otherPlayerID": 1, + "otherPlayer": 1, + "sameVersion": 1, + "buffer": 1, + "plugins": 4, + "pluginsRequired": 2, + "usePlugins": 1, + "global.serverSocket": 10, + "gotServerHello": 2, + "room": 1, + "DownloadRoom": 1, + "keyboard_check": 1, + "vk_escape": 1, + "downloadingMap": 2, + "downloadMapBytes": 2, + "buffer_size": 2, + "downloadMapBuffer": 6, + "write_buffer_to_file": 1, + "downloadMapName": 3, + "roomchange": 2, + "do": 1, + "HELLO": 1, + "receivestring": 4, + "advertisedMapMd5": 1, + "receiveCompleteMessage": 1, + "Server": 3, + "sent": 7, + "illegal": 2, + "This": 2, + "server": 10, + "requires": 1, + "following": 2, + "play": 2, + "suggests": 1, + "optional": 1, + "Error": 2, + "ocurred": 1, + "loading": 1, + "plugins.": 1, + "Maps/": 2, + ".png": 2, + "Enter": 1, + "Password": 1, + "Incorrect": 1, + "Password.": 1, + "Incompatible": 1, + "version.": 1, + "Name": 1, + "Exploit": 1, + "plugin": 6, + "packet": 3, + "ID": 2, + "There": 1, + "are": 1, + "many": 1, + "connections": 1, + "your": 1, + "IP": 1, + "You": 1, "have": 2, "been": 1, - "split": 4, - "can": 1, - "be": 12, - "removed": 1, - "without": 2, - "affecting": 1, - "tasks.": 1, - "User": 1, - "written": 2, - "supplements": 1, - "may": 2, - "make": 1, - "use": 3, - "any": 3, - "which": 6, - "imported": 4, - "characteristics.": 1, - "remarks": 1, - "Remarks": 1, - "uses": 3, - "helpb": 7, - "insheet": 4, - "data.": 1, - "long": 7, - "strings": 1, - "digits": 1, - "such": 2, - "simserial": 1, - "will": 9, - "numeric": 4, - "even": 1, - "if": 10, - "they": 2, - "more": 1, - "than": 3, - "digits.": 1, - "As": 1, - "result": 6, - "lose": 1, - "precision": 1, - ".": 22, - "makes": 1, - "limited": 1, - "mata": 1, - "Mata": 1, - "manage": 1, - "contain": 1, - "difficult": 1, - "characters.": 2, - "starts": 1, - "definitions": 1, - "several": 1, - "macros": 1, - "these": 4, - "constants": 1, - "uses.": 1, - "For": 4, - "instance": 1, - "macro": 1, - "datemask": 1, - "varname": 1, - "constraints": 1, - "names": 16, - "Further": 1, - "files": 1, - "often": 1, - "much": 1, - "longer": 1, - "length": 3, - "limit": 1, - "These": 2, - "differences": 1, - "convention": 1, - "lead": 1, - "three": 1, - "kinds": 1, - "problematic": 1, - "Long": 3, - "involve": 1, + "kicked": 1, + "server.": 1, + "#Server": 1, + "went": 1, "invalid": 1, - "combination": 1, - "characters": 3, - "example": 2, - "begins": 1, - "colon": 1, - "followed": 1, - "number.": 1, - "convert": 2, - "instead": 1, - "naming": 1, - "v": 6, - "concatenated": 1, - "positive": 1, - "integer": 1, - "v1": 1, - "unique": 1, - "but": 4, + "internal": 1, + "#Exiting.": 1, + "full.": 1, + "ERROR": 1, "when": 1, - "converted": 3, - "truncated": 1, - "become": 3, - "duplicates.": 1, - "again": 1, - "names.": 6, - "form": 1, - "duplicates": 1, - "cannot": 2, - "chooses": 1, - "different": 1, - "Because": 1, - "problem": 2, - "recommended": 1, + "reading": 1, + "no": 1, + "such": 1, + "unexpected": 1, + "data.": 1, + "until": 1, + "hashList": 5, + "pluginname": 9, + "pluginhash": 4, + "realhash": 1, + "handle": 1, + "filesize": 1, + "progress": 1, + "tempfile": 1, + "tempdir": 1, + "lastContact": 2, + "isCached": 2, + "isDebug": 2, + "split": 1, + "checkpluginname": 1, + "ds_list_find_index": 1, + ".zip": 3, + "ServerPluginsCache": 6, + "@": 5, + ".zip.tmp": 1, + ".tmp": 2, + "ServerPluginsDebug": 1, + "Warning": 2, + "being": 2, + "loaded": 2, + "ServerPluginsDebug.": 2, + "Make": 2, + "sure": 2, + "clients": 1, + "they": 1, + "may": 2, + "unable": 2, + "connect.": 2, "you": 1, - "If": 2, - "its": 3, - "characteristic": 2, - "odkmeta##Odk_bad_name": 1, - "Odk_bad_name": 3, - "otherwise": 1, - "Most": 1, - "depend": 1, - "There": 1, - "two": 2, - "exceptions": 1, - "variables.": 1, - "error": 4, - "has": 6, - "or": 7, - "splitting": 2, - "would": 1, - "duplicate": 4, - "reshape": 2, - "groups.": 1, - "there": 2, - "merging": 2, - "code": 1, - "datasets.": 1, - "Where": 1, - "renaming": 2, - "left": 1, - "user.": 1, - "section": 2, - "designated": 2, - "area": 2, - "renaming.": 3, - "In": 3, - "reshaping": 1, - "group": 4, - "own": 2, - "Many": 1, + "Downloading": 1, + "last_plugin.log": 2, + "plugin.gml": 1 + }, + "Volt": { + "module": 1, + "main": 2, + ";": 53, + "import": 7, + "core.stdc.stdio": 1, + "core.stdc.stdlib": 1, + "watt.process": 1, + "watt.path": 1, + "results": 1, + "list": 1, + "cmd": 1, + "int": 8, + "(": 37, + ")": 37, + "{": 12, + "auto": 6, + "cmdGroup": 2, + "new": 3, + "CmdGroup": 1, + "bool": 4, + "printOk": 2, + "true": 4, + "printImprovments": 2, + "printFailing": 2, + "printRegressions": 2, + "string": 1, + "compiler": 3, + "getEnv": 1, + "if": 7, + "is": 2, + "null": 3, + "printf": 6, + ".ptr": 14, + "return": 2, + "-": 3, + "}": 12, + "///": 1, + "@todo": 1, + "Scan": 1, + "for": 4, + "files": 1, + "tests": 2, + "testList": 1, + "total": 5, + "passed": 5, + "failed": 5, + "improved": 3, + "regressed": 6, + "rets": 5, + "Result": 2, + "[": 6, + "]": 6, + "tests.length": 3, + "size_t": 3, + "i": 14, + "<": 3, + "+": 14, + ".runTest": 1, + "cmdGroup.waitAll": 1, + "ret": 1, + "ret.ok": 1, + "cast": 5, + "ret.hasPassed": 4, + "&&": 2, + "ret.test.ptr": 4, + "ret.msg.ptr": 4, + "else": 3, + "fflush": 2, + "stdout": 1, + "xml": 8, + "fopen": 1, + "fprintf": 2, + "rets.length": 1, + ".xmlLog": 1, + "fclose": 1, + "rate": 2, + "float": 2, + "/": 1, + "*": 1, + "f": 1, + "double": 1 + }, + "Monkey": { + "Strict": 1, + "sample": 1, + "class": 1, + "from": 1, + "the": 1, + "documentation": 1, + "Class": 3, + "Game": 1, + "Extends": 2, + "App": 1, + "Function": 2, + "New": 1, + "(": 12, + ")": 12, + "End": 8, + "DrawSpiral": 3, + "clock": 3, + "Local": 3, + "w": 3, + "DeviceWidth/2": 1, + "For": 1, + "i#": 1, + "Until": 1, + "w*1.5": 1, + "Step": 1, + ".2": 1, + "x#": 1, + "y#": 1, + "x": 2, + "+": 5, + "i*Sin": 1, + "i*3": 1, + "y": 2, + "i*Cos": 1, + "i*2": 1, + "DrawRect": 1, + "Next": 1, + "hitbox.Collide": 1, + "event.pos": 1, + "Field": 2, + "updateCount": 3, + "Method": 4, + "OnCreate": 1, + "Print": 2, + "SetUpdateRate": 1, + "OnUpdate": 1, + "OnRender": 1, + "Cls": 1, + "updateCount*1.1": 1, + "Enemy": 1, + "Die": 1, + "Abstract": 1, + "field": 1, + "testField": 1, + "Bool": 2, + "True": 2, + "oss": 1, + "he": 2, + "-": 2, + "killed": 1, + "me": 1, + "b": 6, + "extending": 1, + "with": 1, + "generics": 1, + "VectorNode": 1, + "Node": 1, + "": 1, + "array": 1, + "syntax": 1, + "Global": 14, + "listOfStuff": 3, + "String": 4, + "[": 6, + "]": 6, + "lessStuff": 1, + "oneStuff": 1, + "a": 3, + "comma": 1, + "separated": 1, + "sequence": 1, + "text": 1, + "worstCase": 1, + "worst.List": 1, + "": 1, + "escape": 1, + "characers": 1, + "in": 1, + "strings": 1, + "string3": 1, + "string4": 1, + "string5": 1, + "string6": 1, + "prints": 1, + ".ToUpper": 1, + "Boolean": 1, + "shorttype": 1, + "boolVariable1": 1, + "boolVariable2": 1, + "False": 1, + "preprocessor": 1, + "keywords": 1, + "#If": 1, + "TARGET": 2, + "DoStuff": 1, + "#ElseIf": 1, + "DoOtherStuff": 1, + "#End": 1, + "operators": 1, + "|": 2, + "&": 1, + "c": 1 + }, + "SystemVerilog": { + "module": 3, + "endpoint_phy_wrapper": 2, + "(": 92, + "input": 12, + "clk_sys_i": 2, + "clk_ref_i": 6, + "clk_rx_i": 3, + "rst_n_i": 3, + "IWishboneMaster.master": 2, + "src": 1, + "IWishboneSlave.slave": 1, + "snk": 1, + "sys": 1, + "output": 6, + "[": 17, + "]": 17, + "td_o": 2, + "rd_i": 2, + "txn_o": 2, + "txp_o": 2, + "rxn_i": 2, + "rxp_i": 2, + ")": 92, + ";": 32, + "wire": 12, + "rx_clock": 3, + "parameter": 2, + "g_phy_type": 6, + "gtx_data": 3, + "gtx_k": 3, + "gtx_disparity": 3, + "gtx_enc_error": 3, + "grx_data": 3, + "grx_clk": 1, + "grx_k": 3, + "grx_enc_error": 3, + "grx_bitslide": 2, + "gtp_rst": 2, + "tx_clock": 3, + "generate": 1, + "if": 5, + "begin": 4, + "assign": 2, + "wr_tbi_phy": 1, + "U_Phy": 1, + ".serdes_rst_i": 1, + ".serdes_loopen_i": 1, + "b0": 5, + ".serdes_enable_i": 1, + "b1": 2, + ".serdes_tx_data_i": 1, + ".serdes_tx_k_i": 1, + ".serdes_tx_disparity_o": 1, + ".serdes_tx_enc_err_o": 1, + ".serdes_rx_data_o": 1, + ".serdes_rx_k_o": 1, + ".serdes_rx_enc_err_o": 1, + ".serdes_rx_bitslide_o": 1, + ".tbi_refclk_i": 1, + ".tbi_rbclk_i": 1, + ".tbi_td_o": 1, + ".tbi_rd_i": 1, + ".tbi_syncen_o": 1, + ".tbi_loopen_o": 1, + ".tbi_prbsen_o": 1, + ".tbi_enable_o": 1, + "end": 4, + "else": 2, + "//": 3, + "wr_gtx_phy_virtex6": 1, + "#": 3, + ".g_simulation": 2, + "U_PHY": 1, + ".clk_ref_i": 2, + ".tx_clk_o": 1, + ".tx_data_i": 1, + ".tx_k_i": 1, + ".tx_disparity_o": 1, + ".tx_enc_err_o": 1, + ".rx_rbclk_o": 1, + ".rx_data_o": 1, + ".rx_k_o": 1, + ".rx_enc_err_o": 1, + ".rx_bitslide_o": 1, + ".rst_i": 1, + ".loopen_i": 1, + ".pad_txn0_o": 1, + ".pad_txp0_o": 1, + ".pad_rxn0_i": 1, + ".pad_rxp0_i": 1, + "endgenerate": 1, + "wr_endpoint": 1, + ".g_pcs_16bit": 1, + ".g_rx_buffer_size": 1, + ".g_with_rx_buffer": 1, + ".g_with_timestamper": 1, + ".g_with_dmtd": 1, + ".g_with_dpi_classifier": 1, + ".g_with_vlans": 1, + ".g_with_rtu": 1, + "DUT": 1, + ".clk_sys_i": 1, + ".clk_dmtd_i": 1, + ".rst_n_i": 1, + ".pps_csync_p1_i": 1, + ".src_dat_o": 1, + "snk.dat_i": 1, + ".src_adr_o": 1, + "snk.adr": 1, + ".src_sel_o": 1, + "snk.sel": 1, + ".src_cyc_o": 1, + "snk.cyc": 1, + ".src_stb_o": 1, + "snk.stb": 1, + ".src_we_o": 1, + "snk.we": 1, + ".src_stall_i": 1, + "snk.stall": 1, + ".src_ack_i": 1, + "snk.ack": 1, + ".src_err_i": 1, + ".rtu_full_i": 1, + ".rtu_rq_strobe_p1_o": 1, + ".rtu_rq_smac_o": 1, + ".rtu_rq_dmac_o": 1, + ".rtu_rq_vid_o": 1, + ".rtu_rq_has_vid_o": 1, + ".rtu_rq_prio_o": 1, + ".rtu_rq_has_prio_o": 1, + ".wb_cyc_i": 1, + "sys.cyc": 1, + ".wb_stb_i": 1, + "sys.stb": 1, + ".wb_we_i": 1, + "sys.we": 1, + ".wb_sel_i": 1, + "sys.sel": 1, + ".wb_adr_i": 1, + "sys.adr": 1, + ".wb_dat_i": 1, + "sys.dat_o": 1, + ".wb_dat_o": 1, + "sys.dat_i": 1, + ".wb_ack_o": 1, + "sys.ack": 1, + "endmodule": 2, + "priority_encoder": 1, + "INPUT_WIDTH": 3, + "OUTPUT_WIDTH": 3, + "logic": 2, + "-": 4, + "input_data": 2, + "output_data": 3, + "int": 1, + "ii": 6, + "always_comb": 1, + "for": 2, + "<": 1, + "+": 3, + "function": 1, + "integer": 2, + "log2": 4, + "x": 6, + "endfunction": 1, + "fifo": 1, + "clk_50": 1, + "clk_2": 1, + "reset_n": 1, + "data_out": 1, + "empty": 1 + }, + "Grammatical Framework": { + "-": 594, + "(": 256, + "c": 73, + ")": 256, + "Aarne": 13, + "Ranta": 13, + "under": 33, + "LGPL": 33, + "instance": 5, + "LexFoodsFin": 2, + "of": 89, + "LexFoods": 12, + "open": 23, + "SyntaxFin": 2, + "ParadigmsFin": 1, + "in": 32, + "{": 579, + "flags": 32, + "coding": 29, + "utf8": 29, + ";": 1399, + "oper": 29, + "wine_N": 7, + "mkN": 46, + "pizza_N": 7, + "cheese_N": 7, + "fish_N": 8, + "fresh_A": 7, + "mkA": 47, + "warm_A": 8, + "italian_A": 7, + "expensive_A": 7, + "delicious_A": 7, + "boring_A": 7, + "}": 580, + "abstract": 1, + "Foods": 34, + "startcat": 1, + "Comment": 31, + "cat": 1, + "Item": 31, + "Kind": 33, + "Quality": 34, + "fun": 1, + "Pred": 30, + "This": 29, + "That": 29, + "These": 28, + "Those": 28, + "Mod": 29, + "Wine": 29, + "Cheese": 29, + "Fish": 29, + "Pizza": 28, + "Very": 29, + "Fresh": 29, + "Warm": 29, + "Italian": 29, + "Expensive": 29, + "Delicious": 29, + "Boring": 29, + "Vikash": 1, + "Rauniyar": 1, + "concrete": 33, + "FoodsHin": 2, + "param": 22, + "Gender": 94, + "Masc": 67, + "|": 122, + "Fem": 65, + "Number": 207, + "Sg": 184, + "Pl": 182, + "lincat": 28, + "s": 365, + "Str": 394, + "g": 132, + "n": 206, + "lin": 28, + "item": 36, + "quality": 90, + "item.s": 24, + "+": 480, + "quality.s": 50, + "item.g": 12, + "item.n": 29, + "copula": 33, + "kind": 115, + "kind.s": 46, + "kind.g": 38, + "regN": 15, + "regAdj": 61, + "p": 11, + "table": 148, + "case": 44, + "lark": 8, + "_": 68, + "mkAdj": 27, + "ms": 4, + "mp": 4, + "f": 16, + "a": 57, + "acch": 6, + "#": 14, + "path": 14, + ".": 13, + "prelude": 2, + "Inese": 1, + "Bernsone": 1, + "FoodsLav": 1, + "Prelude": 11, + "SS": 6, + "Q": 5, + "Defin": 9, + "ss": 13, + "Q1": 5, + "Ind": 14, + "det": 86, + "Def": 21, + "noun": 51, + "qual": 8, + "q": 10, + "spec": 2, + "qual.s": 8, + "Q2": 3, + "adjective": 22, + "specAdj": 2, + "m": 9, + "cn": 11, + "cn.g": 10, + "cn.s": 8, + "man": 10, + "men": 10, + "skaists": 5, + "skaista": 2, + "skaisti": 2, + "skaistas": 2, + "skaistais": 2, + "skaistaa": 2, + "skaistie": 2, + "skaistaas": 2, + "let": 8, + "skaist": 8, + "init": 4, + "Adjective": 9, + "Type": 9, + "a.s": 8, + "Jordi": 2, + "Saludes": 2, + "LexFoodsCat": 2, + "SyntaxCat": 2, + "ParadigmsCat": 1, + "M": 1, + "MorphoCat": 1, + "M.Masc": 2, + "FoodsEng": 1, + "language": 2, + "en_US": 1, + "regNoun": 38, + "adj": 38, + "noun.s": 7, + "car": 6, + "cold": 4, + "../foods": 1, + "present": 7, + "FoodsFre": 1, + "SyntaxFre": 1, + "ParadigmsFre": 1, + "Utt": 4, + "NP": 4, + "CN": 4, + "AP": 4, + "mkUtt": 4, + "mkCl": 4, + "mkNP": 16, + "this_QuantSg": 2, + "that_QuantSg": 2, + "these_QuantPl": 2, + "those_QuantPl": 2, + "mkCN": 20, + "mkAP": 28, + "very_AdA": 4, + "masculine": 4, + "feminine": 2, + "FoodsPes": 1, + "optimize": 1, + "noexpand": 1, + "Add": 8, + "prep": 11, + "Indep": 4, + "Attr": 9, + "kind.prep": 1, + "quality.prep": 1, + "at": 3, + "a.prep": 1, + "it": 2, + "must": 1, + "be": 1, + "written": 1, + "as": 2, + "x1": 3, + "x4": 2, + "pytzA": 3, + "pytzAy": 1, + "pytzAhA": 3, + "pr": 4, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "mrd": 8, + "tAzh": 8, + "tAzhy": 2, + "interface": 1, + "Syntax": 7, + "N": 4, + "A": 6, + "LexFoodsIta": 2, + "SyntaxIta": 2, + "ParadigmsIta": 1, + "FoodsOri": 1, + "Laurette": 2, + "Pretorius": 2, + "Sr": 2, + "&": 2, + "Jr": 2, + "and": 4, + "Ansu": 2, + "Berg": 2, + "FoodsAfr": 1, + "Predef": 3, + "AdjAP": 10, + "Predic": 3, + "declNoun_e": 2, + "declNoun_aa": 2, + "declNoun_ss": 2, + "declNoun_s": 2, + "veryAdj": 2, + "smartAdj_e": 4, + "Noun": 9, + "operations": 2, + "wyn": 1, + "kaas": 1, + "vis": 1, + "pizza": 1, + "x": 74, + "v": 6, + "tk": 1, + "last": 3, + "y": 3, + "declAdj_e": 2, + "declAdj_g": 2, + "w": 15, + "declAdj_oog": 2, + "i": 2, + "x.s": 8, + "FoodsGer": 1, + "FoodsI": 6, + "with": 5, + "SyntaxGer": 2, + "LexFoodsGer": 2, + "incomplete": 1, + "this_Det": 2, + "that_Det": 2, + "these_Det": 2, + "those_Det": 2, + "../lib/src/prelude": 1, + "Zofia": 1, + "Stankiewicz": 1, + "FoodsJpn": 1, + "Style": 3, + "AdjUse": 4, + "t": 28, + "AdjType": 4, + "quality.t": 3, + "IAdj": 4, + "Plain": 3, + "APred": 8, + "Polite": 4, + "NaAdj": 4, + "na": 1, + "adjectives": 2, + "have": 2, + "different": 1, "forms": 2, +<<<<<<< HEAD "require": 1, "others": 1, "few": 1, @@ -64463,361 +108900,396 @@ "<": 4, "*": 7, "m": 5, +======= + "attributes": 1, + "predicates": 2, + "for": 6, + "phrase": 1, + "types": 1, + "can": 1, + "form": 4, + "without": 1, + "the": 7, + "cannot": 1, + "d": 6, + "sakana": 6, + "chosenna": 2, + "chosen": 2, + "akai": 2, + "FoodsTur": 1, + "Case": 10, + "softness": 4, + "Softness": 5, + "h": 4, + "Harmony": 5, + "Reason": 1, + "excluding": 1, + "plural": 3, + "In": 1, + "Turkish": 1, + "if": 1, + "subject": 1, + "is": 6, + "not": 2, + "human": 2, + "being": 1, + "then": 1, + "singular": 1, + "used": 2, + "regardless": 1, + "number": 2, + "subject.": 1, + "Since": 1, + "all": 1, + "possible": 1, + "subjects": 1, + "are": 1, + "non": 1, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "do": 1, - "firstForLoop": 3, - "i": 6, - "secondForLoop": 3, - ";": 2, - "println": 1, - "func": 24, - "greet": 2, - "day": 1, - "-": 21, - "return": 30, - "getGasPrices": 2, - "Double": 11, - "sumOf": 3, - "Int...": 1, - "Int": 19, - "sum": 3, - "returnFifteen": 2, - "y": 3, - "add": 2, - "makeIncrementer": 2, - "addOne": 2, - "increment": 2, - "hasAnyMatches": 2, - "list": 2, - "condition": 2, - "Bool": 4, - "item": 4, - "true": 2, - "false": 2, - "lessThanTen": 2, - "numbers.map": 2, - "result": 5, - "sort": 1, - "class": 7, - "Shape": 2, - "numberOfSides": 4, - "simpleDescription": 14, - "myVariable": 2, - "myConstant": 1, - "shape": 1, - "shape.numberOfSides": 1, - "shapeDescription": 1, - "shape.simpleDescription": 1, - "NamedShape": 3, - "init": 4, - "self.name": 1, - "Square": 7, - "sideLength": 17, - "self.sideLength": 2, - "super.init": 2, - "area": 1, - "override": 2, - "test": 1, - "test.area": 1, - "test.simpleDescription": 1, - "EquilateralTriangle": 4, - "perimeter": 1, - "get": 2, - "set": 1, - "newValue": 1, - "/": 1, - "triangle": 3, - "triangle.perimeter": 2, - "triangle.sideLength": 2, - "TriangleAndSquare": 2, - "willSet": 2, - "square.sideLength": 1, - "newValue.sideLength": 2, - "square": 2, - "size": 4, - "triangleAndSquare": 1, - "triangleAndSquare.square.sideLength": 1, - "triangleAndSquare.triangle.sideLength": 2, - "triangleAndSquare.square": 1, - "Counter": 2, - "count": 2, - "incrementBy": 1, - "amount": 2, - "numberOfTimes": 2, - "times": 4, - "counter": 1, - "counter.incrementBy": 1, - "optionalSquare": 2, - ".sideLength": 1, - "enum": 4, - "Rank": 2, - "Ace": 1, - "Two": 1, - "Three": 1, - "Four": 1, - "Five": 1, - "Six": 1, - "Seven": 1, - "Eight": 1, - "Nine": 1, - "Ten": 1, - "Jack": 1, - "Queen": 1, - "King": 1, - "self": 3, - ".Ace": 1, - ".Jack": 1, - ".Queen": 1, - ".King": 1, - "self.toRaw": 1, - "ace": 1, - "Rank.Ace": 1, - "aceRawValue": 1, - "ace.toRaw": 1, - "convertedRank": 1, - "Rank.fromRaw": 1, - "threeDescription": 1, - "convertedRank.simpleDescription": 1, - "Suit": 2, - "Spades": 1, - "Hearts": 1, - "Diamonds": 1, - "Clubs": 1, - ".Spades": 2, - ".Hearts": 1, - ".Diamonds": 1, - ".Clubs": 1, - "hearts": 1, - "Suit.Hearts": 1, - "heartsDescription": 1, - "hearts.simpleDescription": 1, - "implicitInteger": 1, - "implicitDouble": 1, - "explicitDouble": 1, - "struct": 2, - "Card": 2, - "rank": 2, - "suit": 2, - "threeOfSpades": 1, - ".Three": 1, - "threeOfSpadesDescription": 1, - "threeOfSpades.simpleDescription": 1, - "ServerResponse": 1, - "Result": 1, - "Error": 1, - "success": 2, - "ServerResponse.Result": 1, - "failure": 1, - "ServerResponse.Error": 1, - ".Result": 1, - "sunrise": 1, - "sunset": 1, - "serverResponse": 2, - ".Error": 1, - "error": 1, - "protocol": 1, - "ExampleProtocol": 5, - "mutating": 3, - "adjust": 4, - "SimpleClass": 2, - "anotherProperty": 1, - "a": 2, - "a.adjust": 1, - "aDescription": 1, - "a.simpleDescription": 1, - "SimpleStructure": 2, - "b": 1, - "b.adjust": 1, - "bDescription": 1, - "b.simpleDescription": 1, - "extension": 1, - "protocolValue": 1, - "protocolValue.simpleDescription": 1, - "repeat": 2, - "": 1, - "ItemType": 3, - "OptionalValue": 2, - "": 1, - "None": 1, - "Some": 1, - "T": 5, - "possibleInteger": 2, - "": 1, - ".None": 1, - ".Some": 1, - "anyCommonElements": 2, - "": 1, - "U": 4, - "Sequence": 2, - "GeneratorType": 3, - "Element": 3, - "Equatable": 1, - "lhs": 2, - "rhs": 2, - "lhsItem": 2, - "rhsItem": 2, - "label": 2, - "width": 2, - "widthLabel": 1 + "need": 1, + "to": 6, + "form.": 1, + "quality.softness": 1, + "quality.h": 1, + "quality.c": 1, + "Nom": 9, + "Gen": 5, + "a.c": 1, + "a.softness": 1, + "a.h": 1, + "I_Har": 4, + "Ih_Har": 4, + "U_Har": 4, + "Uh_Har": 4, + "Ih": 1, + "Uh": 1, + "Soft": 3, + "Hard": 3, + "num": 6, + "overload": 1, + "mkn": 1, + "peynir": 2, + "peynirler": 2, + "[": 2, + "]": 2, + "sarap": 2, + "saraplar": 2, + "sarabi": 2, + "saraplari": 2, + "italyan": 4, + "ca": 2, + "getSoftness": 2, + "getHarmony": 2, + "See": 1, + "comment": 1, + "lines": 1, + "excluded": 1, + "copula.": 1, + "base": 4, + "c@": 3, + "*": 1, + "/GF/lib/src/prelude": 1, + "Nyamsuren": 1, + "Erdenebadrakh": 1, + "FoodsMon": 1, + "prefixSS": 1, + "FoodsSwe": 1, + "SyntaxSwe": 2, + "LexFoodsSwe": 2, + "**": 1, + "sv_SE": 1, + "John": 1, + "J.": 1, + "Camilleri": 1, + "FoodsMlt": 1, + "uniAdj": 2, + "Create": 6, + "an": 2, + "full": 1, + "function": 1, + "Params": 4, + "Sing": 4, + "Plural": 2, + "iswed": 2, + "sewda": 2, + "suwed": 3, + "regular": 2, + "Param": 2, + "frisk": 4, + "eg": 1, + "tal": 1, + "buzz": 1, + "uni": 4, + "Singular": 1, + "inherent": 1, + "ktieb": 2, + "kotba": 2, + "Copula": 1, + "linking": 1, + "verb": 1, + "article": 3, + "taking": 1, + "into": 1, + "account": 1, + "first": 1, + "letter": 1, + "next": 1, + "word": 3, + "pre": 1, + "cons@": 1, + "cons": 1, + "determinant": 1, + "Sg/Pl": 1, + "string": 1, + "default": 1, + "masc": 3, + "gender": 2, + "FoodsFin": 1, + "ParadigmsSwe": 1, + "Rami": 1, + "Shashati": 1, + "FoodsPor": 1, + "mkAdjReg": 7, + "QualityT": 5, + "bonito": 2, + "bonita": 2, + "bonitos": 2, + "bonitas": 2, + "pattern": 1, + "adjSozinho": 2, + "sozinho": 3, + "sozinh": 4, + "Predef.tk": 2, + "independent": 1, + "adjUtil": 2, + "util": 3, + "uteis": 3, + "smart": 1, + "paradigm": 1, + "adjcetives": 1, + "ItemT": 2, + "KindT": 4, + "noun.g": 3, + "animal": 2, + "animais": 2, + "gen": 4, + "carro": 3, + "ParadigmsGer": 1, + "Dinesh": 1, + "Simkhada": 1, + "FoodsNep": 1, + "adjPl": 2, + "bor": 2, + "alltenses": 3, + "Dana": 1, + "Dannells": 1, + "Licensed": 1, + "FoodsHeb": 2, + "Species": 8, + "mod": 7, + "Modified": 5, + "sp": 11, + "Indef": 6, + "T": 2, + "regAdj2": 3, + "F": 2, + "Adj": 4, + "cn.mod": 2, + "gvina": 6, + "hagvina": 3, + "gvinot": 6, + "hagvinot": 3, + "defH": 7, + "replaceLastLetter": 7, + "tov": 6, + "tova": 3, + "tovim": 3, + "tovot": 3, + "italki": 3, + "italk": 4, + "Krasimir": 1, + "Angelov": 1, + "FoodsBul": 1, + "Neutr": 21, + "Agr": 3, + "ASg": 23, + "APl": 11, + "item.a": 2, + "FoodsTha": 1, + "SyntaxTha": 1, + "LexiconTha": 1, + "ParadigmsTha": 1, + "R": 4, + "ResTha": 1, + "R.thword": 4, + "Shafqat": 1, + "Virk": 1, + "FoodsUrd": 1, + "coupla": 2, + "Katerina": 2, + "Bohmova": 2, + "FoodsCze": 1, + "ResCze": 2, + "NounPhrase": 3, + "regnfAdj": 2, + "Martha": 1, + "Dis": 1, + "Brandt": 1, + "FoodsIce": 1, + "more": 1, + "commonly": 1, + "Iceland": 1, + "but": 1, + "Icelandic": 1, + "defOrInd": 2, + "order": 1, + "given": 1, + "mSg": 1, + "fSg": 1, + "nSg": 1, + "mPl": 1, + "fPl": 1, + "nPl": 1, + "mSgDef": 1, + "f/nSgDef": 1, + "_PlDef": 1, + "fem": 2, + "neutr": 2, + "x9": 1, + "ferskur": 5, + "fersk": 11, + "ferskt": 2, + "ferskir": 2, + "ferskar": 2, + "fersk_pl": 2, + "ferski": 2, + "ferska": 2, + "fersku": 2, + "": 1, + "<": 10, + "FoodsSpa": 1, + "SyntaxSpa": 1, + "StructuralSpa": 1, + "ParadigmsSpa": 1, + "FoodsChi": 1, + "quality.p": 2, + "kind.c": 11, + "geKind": 5, + "longQuality": 8, + "mkKind": 2, + "Julia": 1, + "Hammar": 1, + "FoodsEpo": 1, + "vino": 3, + "nova": 3, + "Ramona": 1, + "Enache": 1, + "FoodsRon": 1, + "NGender": 6, + "NMasc": 2, + "NFem": 3, + "NNeut": 2, + "mkTab": 5, + "mkNoun": 5, + "getAgrGender": 3, + "acesta": 2, + "aceasta": 2, + "gg": 3, + "det.s": 1, + "peste": 2, + "pesti": 2, + "scump": 2, + "scumpa": 2, + "scumpi": 2, + "scumpe": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "ng": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "FoodsTsn": 1, + "NounClass": 28, + "r": 9, + "b": 9, + "Bool": 5, + "p_form": 18, + "TType": 16, + "mkPredDescrCop": 2, + "item.c": 1, + "quality.p_form": 1, + "kind.w": 4, + "mkDemPron1": 3, + "kind.q": 4, + "mkDemPron2": 3, + "mkMod": 2, + "Lexicon": 1, + "mkNounNC14_6": 2, + "mkNounNC9_10": 4, + "smartVery": 2, + "mkVarAdj": 2, + "mkOrdAdj": 4, + "mkPerAdj": 2, + "mkVerbRel": 2, + "NC9_10": 14, + "NC14_6": 14, + "P": 4, + "V": 4, + "ModV": 4, + "y.b": 1, + "True": 3, + "y.w": 2, + "y.r": 2, + "y.c": 14, + "y.q": 4, + "smartQualRelPart": 5, + "x.t": 10, + "smartDescrCop": 5, + "False": 3, + "mkVeryAdj": 2, + "x.p_form": 2, + "mkVeryVerb": 3, + "mkQualRelPart_PName": 2, + "mkQualRelPart": 2, + "mkDescrCop_PName": 2, + "mkDescrCop": 2, + "FoodsIta": 1, + "FoodsAmh": 1, + "FoodsCat": 1, + "resource": 1, + "ne": 2, + "muz": 2, + "muzi": 2, + "msg": 3, + "fsg": 3, + "nsg": 3, + "mpl": 3, + "fpl": 3, + "npl": 3, + "mlad": 7, + "vynikajici": 7, + "Femke": 1, + "Johansson": 1, + "FoodsDut": 1, + "AForm": 4, + "AAttr": 3, + "regadj": 6, + "wijn": 3, + "koud": 3, + "duur": 2, + "dure": 2 }, - "SystemVerilog": { - "module": 3, - "endpoint_phy_wrapper": 2, - "(": 92, - "input": 12, - "clk_sys_i": 2, - "clk_ref_i": 6, - "clk_rx_i": 3, - "rst_n_i": 3, - "IWishboneMaster.master": 2, - "src": 1, - "IWishboneSlave.slave": 1, - "snk": 1, - "sys": 1, - "output": 6, - "[": 17, - "]": 17, - "td_o": 2, - "rd_i": 2, - "txn_o": 2, - "txp_o": 2, - "rxn_i": 2, - "rxp_i": 2, - ")": 92, - ";": 32, - "wire": 12, - "rx_clock": 3, - "parameter": 2, - "g_phy_type": 6, - "gtx_data": 3, - "gtx_k": 3, - "gtx_disparity": 3, - "gtx_enc_error": 3, - "grx_data": 3, - "grx_clk": 1, - "grx_k": 3, - "grx_enc_error": 3, - "grx_bitslide": 2, - "gtp_rst": 2, - "tx_clock": 3, - "generate": 1, - "if": 5, - "begin": 4, - "assign": 2, - "wr_tbi_phy": 1, - "U_Phy": 1, - ".serdes_rst_i": 1, - ".serdes_loopen_i": 1, - "b0": 5, - ".serdes_enable_i": 1, - "b1": 2, - ".serdes_tx_data_i": 1, - ".serdes_tx_k_i": 1, - ".serdes_tx_disparity_o": 1, - ".serdes_tx_enc_err_o": 1, - ".serdes_rx_data_o": 1, - ".serdes_rx_k_o": 1, - ".serdes_rx_enc_err_o": 1, - ".serdes_rx_bitslide_o": 1, - ".tbi_refclk_i": 1, - ".tbi_rbclk_i": 1, - ".tbi_td_o": 1, - ".tbi_rd_i": 1, - ".tbi_syncen_o": 1, - ".tbi_loopen_o": 1, - ".tbi_prbsen_o": 1, - ".tbi_enable_o": 1, - "end": 4, - "else": 2, - "//": 3, - "wr_gtx_phy_virtex6": 1, - "#": 3, - ".g_simulation": 2, - "U_PHY": 1, - ".clk_ref_i": 2, - ".tx_clk_o": 1, - ".tx_data_i": 1, - ".tx_k_i": 1, - ".tx_disparity_o": 1, - ".tx_enc_err_o": 1, - ".rx_rbclk_o": 1, - ".rx_data_o": 1, - ".rx_k_o": 1, - ".rx_enc_err_o": 1, - ".rx_bitslide_o": 1, - ".rst_i": 1, - ".loopen_i": 1, - ".pad_txn0_o": 1, - ".pad_txp0_o": 1, - ".pad_rxn0_i": 1, - ".pad_rxp0_i": 1, - "endgenerate": 1, - "wr_endpoint": 1, - ".g_pcs_16bit": 1, - ".g_rx_buffer_size": 1, - ".g_with_rx_buffer": 1, - ".g_with_timestamper": 1, - ".g_with_dmtd": 1, - ".g_with_dpi_classifier": 1, - ".g_with_vlans": 1, - ".g_with_rtu": 1, - "DUT": 1, - ".clk_sys_i": 1, - ".clk_dmtd_i": 1, - ".rst_n_i": 1, - ".pps_csync_p1_i": 1, - ".src_dat_o": 1, - "snk.dat_i": 1, - ".src_adr_o": 1, - "snk.adr": 1, - ".src_sel_o": 1, - "snk.sel": 1, - ".src_cyc_o": 1, - "snk.cyc": 1, - ".src_stb_o": 1, - "snk.stb": 1, - ".src_we_o": 1, - "snk.we": 1, - ".src_stall_i": 1, - "snk.stall": 1, - ".src_ack_i": 1, - "snk.ack": 1, - ".src_err_i": 1, - ".rtu_full_i": 1, - ".rtu_rq_strobe_p1_o": 1, - ".rtu_rq_smac_o": 1, - ".rtu_rq_dmac_o": 1, - ".rtu_rq_vid_o": 1, - ".rtu_rq_has_vid_o": 1, - ".rtu_rq_prio_o": 1, - ".rtu_rq_has_prio_o": 1, - ".wb_cyc_i": 1, - "sys.cyc": 1, - ".wb_stb_i": 1, - "sys.stb": 1, - ".wb_we_i": 1, - "sys.we": 1, - ".wb_sel_i": 1, - "sys.sel": 1, - ".wb_adr_i": 1, - "sys.adr": 1, - ".wb_dat_i": 1, - "sys.dat_o": 1, - ".wb_dat_o": 1, - "sys.dat_i": 1, - ".wb_ack_o": 1, - "sys.ack": 1, - "endmodule": 2, - "fifo": 1, - "clk_50": 1, - "clk_2": 1, - "reset_n": 1, - "data_out": 1, - "empty": 1, - "priority_encoder": 1, - "INPUT_WIDTH": 3, - "OUTPUT_WIDTH": 3, - "logic": 2, + "PostScript": { + "%": 23, + "PS": 1, "-": 4, +<<<<<<< HEAD "input_data": 2, "output_data": 3, "int": 1, @@ -65084,500 +109556,2829 @@ "-": 9, "dos.": 1, "colorlinks": 1, - "true": 1, - "linkcolor": 1, - "navy": 2, - "urlcolor": 1, - "black": 2, - "hyperref": 1, - "following": 2, - "urls": 2, - "references": 1, - "a": 2, - "document.": 1, - "url": 2, - "Enables": 1, - "with": 5, - "tag": 1, - "all": 2, - "hypcap": 1, - "definecolor": 2, - "gray": 1, - "To": 1, - "Dos.": 1, - "brightness": 1, - "RGB": 1, - "coloring": 1, - "setlength": 12, - "parskip": 1, - "ex": 2, - "Sets": 1, - "space": 8, - "between": 1, - "paragraphs.": 2, - "parindent": 2, - "Indent": 1, - "first": 1, - "line": 2, - "new": 1, - "let": 11, - "VERBATIM": 2, - "verbatim": 2, - "def": 18, - "verbatim@font": 1, - "small": 8, - "ttfamily": 1, - "usepackage": 2, - "caption": 1, - "footnotesize": 2, - "subcaption": 1, - "captionsetup": 4, - "table": 2, - "labelformat": 4, - "simple": 3, - "labelsep": 4, - "period": 3, - "labelfont": 4, - "bf": 4, +======= + "Adobe": 1, + "Creator": 1, + "Aaron": 1, + "Puchert": 1, + "Title": 1, + "The": 1, + "Sierpinski": 1, + "triangle": 1, + "Pages": 1, + "PageOrder": 1, + "Ascend": 1, + "BeginProlog": 1, + "/pageset": 1, + "{": 4, + "scale": 1, + "set": 1, + "cm": 1, + "translate": 1, + "setlinewidth": 1, + "}": 4, + "def": 2, + "/sierpinski": 1, + "dup": 4, + "gt": 1, + "[": 6, + "]": 6, + "concat": 5, + "sub": 3, + "sierpinski": 4, + "newpath": 1, + "moveto": 1, + "lineto": 2, + "closepath": 1, + "fill": 1, + "ifelse": 1, + "pop": 1, + "EndProlog": 1, + "BeginSetup": 1, + "<<": 1, + "/PageSize": 1, + "setpagedevice": 1, + "A4": 1, + "EndSetup": 1, + "Page": 1, + "Test": 1, + "pageset": 1, + "sqrt": 1, + "showpage": 1, + "EOF": 1 + }, + "CSS": { + ".clearfix": 8, + "{": 1661, + "*zoom": 48, + ";": 4219, + "}": 1705, + "before": 48, + "after": 96, + "display": 135, + "table": 44, + "content": 66, + "line": 97, + "-": 8839, + "height": 141, + "clear": 32, + "both": 30, + ".hide": 12, + "text": 129, + "font": 142, + "/0": 2, + "a": 268, + "color": 711, + "transparent": 148, + "shadow": 254, + "none": 128, + "background": 770, + "border": 912, + ".input": 216, + "block": 133, + "level": 2, + "width": 215, + "%": 366, + "min": 14, + "px": 2535, + "webkit": 364, + "box": 264, + "sizing": 27, + "moz": 316, + "article": 2, + "aside": 2, + "details": 2, + "figcaption": 2, "figure": 2, - "subtable": 1, - "parens": 1, - "subfigure": 1, - "TRUE": 1, - "FALSE": 1, - "SHOW": 3, - "HIDE": 2, - "thispagestyle": 5, - "empty": 6, - "listoftodos": 1, - "clearpage": 4, - "pagenumbering": 1, - "arabic": 2, - "shortname": 2, - "#1": 40, - "authorname": 2, - "#2": 17, - "coursename": 3, - "#3": 8, - "assignment": 3, - "#4": 4, - "duedate": 2, - "#5": 2, - "begin": 11, - "minipage": 4, - "textwidth": 4, - "flushleft": 2, - "hypertarget": 1, - "@assignment": 2, - "textbf": 5, - "end": 12, - "flushright": 2, - "renewcommand": 10, - "headrulewidth": 1, - "footrulewidth": 1, - "pagestyle": 3, - "fancyplain": 4, - "fancyhf": 2, - "lfoot": 1, - "hyperlink": 1, - "cfoot": 1, - "rfoot": 1, - "thepage": 2, - "pageref": 1, - "LastPage": 1, - "newcounter": 1, - "theproblem": 3, - "Problem": 2, - "counter": 1, - "environment": 1, - "problem": 1, - "addtocounter": 2, - "setcounter": 5, - "equation": 1, - "noindent": 2, - ".": 3, - "textit": 1, - "Default": 2, - "is": 2, - "omit": 1, - "pagebreaks": 1, - "after": 1, - "solution": 2, - "qqed": 2, - "hfill": 3, - "rule": 1, - "mm": 2, - "ifnum": 3, - "pagebreak": 2, - "fi": 15, - "show": 1, - "solutions.": 1, - "vspace": 2, - "em": 8, - "Solution.": 1, - "ifnum#1": 2, - "else": 9, - "chap": 1, + "footer": 2, + "header": 12, + "hgroup": 2, + "nav": 2, "section": 2, - "Sum": 3, - "n": 4, - "ensuremath": 15, - "sum_": 2, - "from": 5, - "infsum": 2, - "infty": 2, - "Infinite": 1, - "sum": 1, - "Int": 1, - "x": 4, - "int_": 1, - "mathrm": 1, - "d": 1, - "Integrate": 1, - "respect": 1, - "Lim": 2, - "displaystyle": 2, - "lim_": 1, - "Take": 1, - "limit": 1, - "infinity": 1, - "f": 1, - "Frac": 1, - "/": 1, - "_": 1, - "Slanted": 1, - "fraction": 1, - "proper": 1, - "spacing.": 1, - "Usefule": 1, - "display": 2, - "fractions.": 1, - "eval": 1, - "vert_": 1, - "L": 1, - "hand": 2, - "sizing": 2, - "R": 1, - "D": 1, - "diff": 1, - "writing": 2, - "PD": 1, - "diffp": 1, - "full": 1, - "Forces": 1, - "style": 1, - "math": 4, - "mode": 4, - "Deg": 1, - "circ": 1, - "adding": 1, - "degree": 1, - "symbol": 4, - "even": 1, - "if": 1, - "not": 2, - "abs": 1, - "vert": 3, - "Absolute": 1, - "Value": 1, - "norm": 1, - "Vert": 2, - "Norm": 1, - "vector": 1, - "magnitude": 1, - "e": 1, - "times": 3, - "Scientific": 2, - "Notation": 2, - "E": 2, - "u": 1, - "text": 7, - "units": 1, - "Roman": 1, - "mc": 1, - "hspace": 3, - "comma": 1, - "into": 2, - "mtxt": 1, - "insterting": 1, - "on": 2, - "either": 1, - "side.": 1, - "Option": 1, - "preceding": 1, - "punctuation.": 1, - "prob": 1, - "P": 2, - "cndprb": 1, - "right.": 1, - "cov": 1, - "Cov": 1, - "twovector": 1, - "r": 3, - "array": 6, - "threevector": 1, - "fourvector": 1, - "vecs": 4, - "vec": 2, - "bm": 2, - "bolded": 2, - "arrow": 2, - "vect": 3, - "unitvecs": 1, - "hat": 2, - "unitvect": 1, - "Div": 1, - "del": 3, - "cdot": 1, - "Curl": 1, - "Grad": 1, - "NeedsTeXFormat": 1, - "LaTeX2e": 1, - "reedthesis": 1, - "/01/27": 1, - "The": 4, - "Reed": 5, - "College": 5, - "Thesis": 5, - "Class": 4, - "CurrentOption": 1, - "book": 2, - "AtBeginDocument": 1, - "fancyhead": 5, - "LE": 1, - "RO": 1, - "above": 1, - "makes": 2, - "your": 1, - "headers": 6, - "caps.": 2, - "If": 1, - "you": 1, - "would": 1, - "like": 1, - "different": 1, - "choose": 1, - "one": 1, - "options": 1, - "be": 3, - "sure": 1, - "remove": 1, - "both": 1, - "RE": 2, - "slshape": 2, - "nouppercase": 2, - "leftmark": 2, - "This": 2, - "RIGHT": 2, - "side": 2, - "pages": 2, - "italic": 1, - "use": 1, - "lowercase": 1, - "With": 1, - "Capitals": 1, - "When": 1, - "Specified.": 1, - "LO": 2, - "rightmark": 2, - "does": 1, - "same": 1, - "thing": 1, - "LEFT": 2, - "or": 1, - "scshape": 2, - "will": 2, - "And": 1, - "so": 1, - "fancy": 1, - "oldthebibliography": 2, - "thebibliography": 2, - "endoldthebibliography": 2, - "endthebibliography": 1, - "renewenvironment": 2, - "addcontentsline": 5, - "toc": 5, - "chapter": 9, - "bibname": 2, - "things": 1, - "psych": 1, - "majors": 1, - "comment": 1, - "out": 1, - "oldtheindex": 2, - "theindex": 2, - "endoldtheindex": 2, - "endtheindex": 1, - "indexname": 1, - "RToldchapter": 1, - "if@openright": 1, - "RTcleardoublepage": 3, - "global": 2, - "@topnum": 1, - "z@": 2, - "@afterindentfalse": 1, - "secdef": 1, - "@chapter": 2, - "@schapter": 1, - "c@secnumdepth": 1, - "m@ne": 2, - "if@mainmatter": 1, - "refstepcounter": 1, - "typeout": 1, - "@chapapp": 2, - "thechapter.": 1, - "thechapter": 1, - "space#1": 1, - "chaptermark": 1, - "addtocontents": 2, - "lof": 1, - "protect": 2, - "addvspace": 2, - "p@": 3, - "lot": 1, - "if@twocolumn": 3, - "@topnewpage": 1, - "@makechapterhead": 2, - "@afterheading": 1, - "newcommand": 2, - "if@twoside": 1, - "ifodd": 1, - "c@page": 1, - "hbox": 15, - "newpage": 3, - "RToldcleardoublepage": 1, - "cleardoublepage": 4, - "oddsidemargin": 2, - ".5in": 3, - "evensidemargin": 2, - "textheight": 4, - "topmargin": 6, - "addtolength": 8, - "headheight": 4, - "headsep": 3, - ".6in": 1, - "division#1": 1, - "gdef": 6, - "@division": 3, - "@latex@warning@no@line": 3, - "No": 3, - "noexpand": 3, - "division": 2, - "given": 3, - "department#1": 1, - "@department": 3, - "department": 1, - "thedivisionof#1": 1, - "@thedivisionof": 3, - "Division": 2, - "approvedforthe#1": 1, - "@approvedforthe": 3, - "advisor#1": 1, - "@advisor": 3, - "advisor": 1, - "altadvisor#1": 1, - "@altadvisor": 3, - "@altadvisortrue": 1, - "@empty": 1, - "newif": 1, - "if@altadvisor": 3, - "@altadvisorfalse": 1, - "contentsname": 1, - "Table": 1, - "Contents": 1, - "References": 1, - "l@chapter": 1, - "c@tocdepth": 1, - "addpenalty": 1, - "@highpenalty": 2, - "vskip": 4, - "@plus": 1, - "@tempdima": 2, - "begingroup": 1, - "rightskip": 1, - "@pnumwidth": 3, - "parfillskip": 1, - "leavevmode": 1, - "bfseries": 3, - "advance": 1, - "leftskip": 2, - "hskip": 1, - "nobreak": 2, - "normalfont": 1, - "leaders": 1, - "m@th": 1, - "mkern": 2, - "@dotsep": 2, - "mu": 2, - "hb@xt@": 1, - "hss": 1, - "par": 6, - "penalty": 1, - "endgroup": 1, - "newenvironment": 1, - "abstract": 1, - "@restonecoltrue": 1, - "onecolumn": 1, - "@restonecolfalse": 1, - "Abstract": 2, - "center": 7, - "fontsize": 7, - "selectfont": 6, - "if@restonecol": 1, - "twocolumn": 1, - "ifx": 1, - "@pdfoutput": 1, - "@undefined": 1, - "RTpercent": 3, - "@percentchar": 1, - "AtBeginDvi": 2, - "special": 2, - "LaTeX": 3, - "/12/04": 3, - "SN": 3, - "rawpostscript": 1, - "AtEndDocument": 1, - "pdfinfo": 1, - "/Creator": 1, - "maketitle": 1, - "titlepage": 2, - "footnoterule": 1, - "footnote": 1, - "thanks": 1, - "baselineskip": 2, - "setbox0": 2, - "Requirements": 2, - "Degree": 2, - "null": 3, - "vfil": 8, - "@title": 1, - "centerline": 8, - "wd0": 7, - "hrulefill": 5, - "A": 1, - "Presented": 1, - "In": 1, - "Partial": 1, - "Fulfillment": 1, - "Bachelor": 1, - "Arts": 1, - "bigskip": 2, - "lineskip": 1, - ".75em": 1, - "tabular": 2, - "t": 1, - "c": 5, - "@author": 1, - "@date": 1, - "Approved": 2, - "just": 1, - "below": 2, + "audio": 4, + "canvas": 2, + "video": 4, + "inline": 116, + "*display": 20, + "not": 6, + "(": 748, + "[": 384, + "controls": 2, + "]": 384, + ")": 748, + "html": 4, + "size": 104, + "adjust": 6, + "ms": 13, + "focus": 232, + "outline": 30, + "thin": 8, + "dotted": 10, + "#333": 6, + "auto": 50, + "ring": 6, + "offset": 6, + "hover": 144, + "active": 46, + "sub": 4, + "sup": 4, + "position": 342, + "relative": 18, + "vertical": 56, + "align": 72, + "baseline": 4, + "top": 376, + "em": 6, + "bottom": 309, + "img": 14, + "max": 18, + "middle": 20, + "interpolation": 2, + "mode": 2, + "bicubic": 2, + "#map_canvas": 2, + ".google": 2, + "maps": 2, + "button": 18, + "input": 336, + "select": 90, + "textarea": 76, + "margin": 424, + "*overflow": 3, + "visible": 8, + "normal": 18, + "inner": 37, + "padding": 174, + "type": 174, + "appearance": 6, + "cursor": 30, + "pointer": 12, + "label": 20, + "textfield": 2, + "search": 66, + "decoration": 33, + "cancel": 2, + "overflow": 21, + "@media": 2, + "print": 4, + "*": 2, + "important": 18, + "#000": 2, + "visited": 2, + "underline": 6, + "href": 28, + "attr": 4, + "abbr": 6, + "title": 10, + ".ir": 2, + "pre": 16, + "blockquote": 14, + "solid": 93, + "#999": 6, + "page": 6, + "break": 12, + "inside": 4, + "avoid": 6, + "thead": 38, + "group": 120, + "tr": 92, + "@page": 2, "cm": 2, - "copy0": 1, - "approved": 1, - "major": 1, - "sign": 1, - "makebox": 6 + "p": 14, + "h2": 14, + "h3": 14, + "orphans": 2, + "widows": 2, + "body": 3, + "family": 10, + "Helvetica": 6, + "Arial": 6, + "sans": 6, + "serif": 6, + "#333333": 26, + "#ffffff": 136, + "#0088cc": 24, + "#005580": 8, + ".img": 6, + "rounded": 2, + "radius": 534, + "polaroid": 2, + "#fff": 10, + "#ccc": 13, + "rgba": 409, + "circle": 18, + ".row": 126, + "left": 489, + "class*": 100, + "float": 84, + ".container": 32, + ".navbar": 332, + "static": 14, + "fixed": 36, + ".span12": 4, + ".span11": 4, + ".span10": 4, + ".span9": 4, + ".span8": 4, + ".span7": 4, + ".span6": 4, + ".span5": 4, + ".span4": 4, + ".span3": 4, + ".span2": 4, + ".span1": 4, + ".offset12": 6, + ".offset11": 6, + ".offset10": 6, + ".offset9": 6, + ".offset8": 6, + ".offset7": 6, + ".offset6": 6, + ".offset5": 6, + ".offset4": 6, + ".offset3": 6, + ".offset2": 6, + ".offset1": 6, + "fluid": 126, + "*margin": 70, + "first": 179, + "child": 301, + ".controls": 28, + "row": 20, + "+": 105, + "*width": 26, + ".pull": 16, + "right": 258, + ".lead": 2, + "weight": 28, + "small": 66, + "strong": 2, + "bold": 14, + "style": 21, + "italic": 4, + "cite": 2, + ".muted": 2, + "#999999": 50, + "a.muted": 4, + "#808080": 2, + ".text": 14, + "warning": 33, + "#c09853": 14, + "a.text": 16, + "#a47e3c": 4, + "error": 10, + "#b94a48": 20, + "#953b39": 6, + "info": 37, + "#3a87ad": 18, + "#2d6987": 6, + "success": 35, + "#468847": 18, + "#356635": 6, + "center": 17, + "h1": 11, + "h4": 20, + "h5": 6, + "h6": 6, + "inherit": 8, + "rendering": 2, + "optimizelegibility": 2, + ".page": 2, + "#eeeeee": 31, + "ul": 84, + "ol": 10, + "li": 205, + "ul.unstyled": 2, + "ol.unstyled": 2, + "list": 44, + "ul.inline": 4, + "ol.inline": 4, + "dl": 2, + "dt": 6, + "dd": 6, + ".dl": 12, + "horizontal": 60, + "hidden": 9, + "ellipsis": 2, + "white": 25, + "space": 23, + "nowrap": 14, + "hr": 2, + "data": 2, + "original": 2, + "help": 2, + "abbr.initialism": 2, + "transform": 4, + "uppercase": 4, + "blockquote.pull": 10, + "q": 4, + "address": 2, + "code": 6, + "Monaco": 2, + "Menlo": 2, + "Consolas": 2, + "monospace": 2, + "#d14": 2, + "#f7f7f9": 2, + "#e1e1e8": 2, + "word": 6, + "all": 10, + "wrap": 6, + "#f5f5f5": 26, + "pre.prettyprint": 2, + ".pre": 2, + "scrollable": 2, + "y": 2, + "scroll": 2, + ".label": 30, + ".badge": 30, + "empty": 7, + "a.label": 4, + "a.badge": 4, + "#f89406": 27, + "#c67605": 4, + "inverse": 110, + "#1a1a1a": 2, + ".btn": 506, + "mini": 34, + "collapse": 12, + "spacing": 3, + ".table": 180, + "th": 70, + "td": 66, + "#dddddd": 16, + "caption": 18, + "colgroup": 18, + "tbody": 68, + "condensed": 4, + "bordered": 76, + "separate": 4, + "*border": 8, + "topleft": 16, + "last": 118, + "topright": 16, + "tfoot": 12, + "bottomleft": 16, + "bottomright": 16, + "striped": 13, + "nth": 4, + "odd": 4, + "#f9f9f9": 12, + "cell": 2, + "td.span1": 2, + "th.span1": 2, + "td.span2": 2, + "th.span2": 2, + "td.span3": 2, + "th.span3": 2, + "td.span4": 2, + "th.span4": 2, + "td.span5": 2, + "th.span5": 2, + "td.span6": 2, + "th.span6": 2, + "td.span7": 2, + "th.span7": 2, + "td.span8": 2, + "th.span8": 2, + "td.span9": 2, + "th.span9": 2, + "td.span10": 2, + "th.span10": 2, + "td.span11": 2, + "th.span11": 2, + "td.span12": 2, + "th.span12": 2, + "tr.success": 4, + "#dff0d8": 6, + "tr.error": 4, + "#f2dede": 6, + "tr.warning": 4, + "#fcf8e3": 6, + "tr.info": 4, + "#d9edf7": 6, + "#d0e9c6": 2, + "#ebcccc": 2, + "#faf2cc": 2, + "#c4e3f3": 2, + "form": 38, + "fieldset": 2, + "legend": 6, + "#e5e5e5": 28, + ".uneditable": 80, + "#555555": 18, + "#cccccc": 18, + "inset": 132, + "transition": 36, + "linear": 204, + ".2s": 16, + "o": 48, + ".075": 12, + ".6": 6, + "multiple": 2, + "#fcfcfc": 2, + "allowed": 4, + "placeholder": 18, + ".radio": 26, + ".checkbox": 26, + ".radio.inline": 6, + ".checkbox.inline": 6, + "medium": 2, + "large": 40, + "xlarge": 2, + "xxlarge": 2, + "append": 120, + "prepend": 82, + "input.span12": 4, + "textarea.span12": 2, + "input.span11": 4, + "textarea.span11": 2, + "input.span10": 4, + "textarea.span10": 2, + "input.span9": 4, + "textarea.span9": 2, + "input.span8": 4, + "textarea.span8": 2, + "input.span7": 4, + "textarea.span7": 2, + "input.span6": 4, + "textarea.span6": 2, + "input.span5": 4, + "textarea.span5": 2, + "input.span4": 4, + "textarea.span4": 2, + "input.span3": 4, + "textarea.span3": 2, + "input.span2": 4, + "textarea.span2": 2, + "input.span1": 4, + "textarea.span1": 2, + "disabled": 36, + "readonly": 10, + ".control": 150, + "group.warning": 32, + ".help": 44, + "#dbc59e": 6, + ".add": 36, + "on": 36, + "group.error": 32, + "#d59392": 6, + "group.success": 32, + "#7aba7b": 6, + "group.info": 32, + "#7ab5d3": 6, + "invalid": 12, + "#ee5f5b": 18, + "#e9322d": 2, + "#f8b9b7": 6, + ".form": 132, + "actions": 10, + "#595959": 2, + ".dropdown": 126, + "menu": 42, + ".popover": 14, + "z": 12, + "index": 14, + "toggle": 84, + ".active": 86, + "#a9dba9": 2, + "#46a546": 2, + "prepend.input": 22, + "input.search": 2, + "query": 22, + ".search": 22, + "*padding": 36, + "image": 187, + "gradient": 175, + "#e6e6e6": 20, + "from": 40, + "to": 75, + "repeat": 66, + "x": 30, + "filter": 57, + "progid": 48, + "DXImageTransform.Microsoft.gradient": 48, + "startColorstr": 30, + "endColorstr": 30, + "GradientType": 30, + "#bfbfbf": 4, + "*background": 36, + "enabled": 18, + "false": 18, + "#b3b3b3": 2, + ".3em": 6, + ".2": 12, + ".05": 24, + ".btn.active": 8, + ".btn.disabled": 4, + "#d9d9d9": 4, + "s": 25, + ".15": 24, + "default": 12, + "opacity": 15, + "alpha": 7, + "class": 26, + "primary.active": 6, + "warning.active": 6, + "danger.active": 6, + "success.active": 6, + "info.active": 6, + "inverse.active": 6, + "primary": 14, + "#006dcc": 2, + "#0044cc": 20, + "#002a80": 2, + "primary.disabled": 2, + "#003bb3": 2, + "#003399": 2, + "#faa732": 3, + "#fbb450": 16, + "#ad6704": 2, + "warning.disabled": 2, + "#df8505": 2, + "danger": 21, + "#da4f49": 2, + "#bd362f": 20, + "#802420": 2, + "danger.disabled": 2, + "#a9302a": 2, + "#942a25": 2, + "#5bb75b": 2, + "#62c462": 16, + "#51a351": 20, + "#387038": 2, + "success.disabled": 2, + "#499249": 2, + "#408140": 2, + "#49afcd": 2, + "#5bc0de": 16, + "#2f96b4": 20, + "#1f6377": 2, + "info.disabled": 2, + "#2a85a0": 2, + "#24748c": 2, + "#363636": 2, + "#444444": 10, + "#222222": 32, + "#000000": 14, + "inverse.disabled": 2, + "#151515": 12, + "#080808": 2, + "button.btn": 4, + "button.btn.btn": 6, + ".btn.btn": 6, + "link": 28, + "url": 4, + "no": 2, + ".icon": 288, + ".nav": 308, + "pills": 28, + "submenu": 8, + "glass": 2, + "music": 2, + "envelope": 2, + "heart": 2, + "star": 4, + "user": 2, + "film": 2, + "ok": 6, + "remove": 6, + "zoom": 5, + "in": 10, + "out": 10, + "off": 4, + "signal": 2, + "cog": 2, + "trash": 2, + "home": 2, + "file": 2, + "time": 2, + "road": 2, + "download": 4, + "alt": 6, + "upload": 2, + "inbox": 2, + "play": 4, + "refresh": 2, + "lock": 2, + "flag": 2, + "headphones": 2, + "volume": 6, + "down": 12, + "up": 12, + "qrcode": 2, + "barcode": 2, + "tag": 2, + "tags": 2, + "book": 2, + "bookmark": 2, + "camera": 2, + "justify": 2, + "indent": 4, + "facetime": 2, + "picture": 2, + "pencil": 2, + "map": 2, + "marker": 2, + "tint": 2, + "edit": 2, + "share": 4, + "check": 2, + "move": 2, + "step": 4, + "backward": 6, + "fast": 4, + "pause": 2, + "stop": 32, + "forward": 6, + "eject": 2, + "chevron": 8, + "plus": 4, + "sign": 16, + "minus": 4, + "question": 2, + "screenshot": 2, + "ban": 2, + "arrow": 21, + "resize": 8, + "full": 2, + "asterisk": 2, + "exclamation": 2, + "gift": 2, + "leaf": 2, + "fire": 2, + "eye": 4, + "open": 4, + "close": 4, + "plane": 2, + "calendar": 2, + "random": 2, + "comment": 2, + "magnet": 2, + "retweet": 2, + "shopping": 2, + "cart": 2, + "folder": 4, + "hdd": 2, + "bullhorn": 2, + "bell": 2, + "certificate": 2, + "thumbs": 4, + "hand": 8, + "globe": 2, + "wrench": 2, + "tasks": 2, + "briefcase": 2, + "fullscreen": 2, + "toolbar": 8, + ".btn.large": 4, + ".large.dropdown": 2, + "group.open": 18, + ".125": 6, + ".btn.dropdown": 2, + "primary.dropdown": 2, + "warning.dropdown": 2, + "danger.dropdown": 2, + "success.dropdown": 2, + "info.dropdown": 2, + "inverse.dropdown": 2, + ".caret": 70, + ".dropup": 2, + ".divider": 8, + "tabs": 94, + "#ddd": 38, + "stacked": 24, + "tabs.nav": 12, + "pills.nav": 4, + ".dropdown.active": 4, + ".open": 8, + "li.dropdown.open.active": 14, + "li.dropdown.open": 14, + ".tabs": 62, + ".tabbable": 8, + ".tab": 8, + "below": 18, + "pane": 4, + ".pill": 6, + ".disabled": 22, + "*position": 2, + "*z": 2, + "#fafafa": 2, + "#f2f2f2": 22, + "#d4d4d4": 2, + "collapse.collapse": 2, + ".brand": 14, + "#777777": 12, + ".1": 24, + ".nav.pull": 2, + "navbar": 28, + "#ededed": 2, + "navbar.active": 8, + "navbar.disabled": 4, + "bar": 21, + "absolute": 8, + "li.dropdown": 12, + "li.dropdown.active": 8, + "menu.pull": 8, + "#1b1b1b": 2, + "#111111": 18, + "#252525": 2, + "#515151": 2, + "query.focused": 2, + "#0e0e0e": 2, + "#040404": 18, + ".breadcrumb": 8, + ".pagination": 78, + "span": 38, + "centered": 2, + ".pager": 34, + ".next": 4, + ".previous": 4, + ".thumbnails": 12, + ".thumbnail": 6, + "ease": 12, + "a.thumbnail": 4, + ".caption": 2, + ".alert": 34, + "#fbeed5": 2, + ".close": 2, + "#d6e9c6": 2, + "#eed3d7": 2, + "#bce8f1": 2, + "@": 8, + "keyframes": 8, + "progress": 15, + "stripes": 15, + "@keyframes": 2, + ".progress": 22, + "#f7f7f7": 3, + ".bar": 22, + "#0e90d2": 2, + "#149bdf": 11, + "#0480be": 10, + "deg": 20, + ".progress.active": 1, + "animation": 5, + "infinite": 5, + "#dd514c": 1, + "#c43c35": 5, + "danger.progress": 1, + "#5eb95e": 1, + "#57a957": 5, + "success.progress": 1, + "#4bb1cf": 1, + "#339bb9": 5, + "info.progress": 1, + "warning.progress": 1, + ".hero": 3, + "unit": 3, + "letter": 1, + ".media": 11, + "object": 1, + "heading": 1, + ".tooltip": 7, + "visibility": 1, + ".tooltip.in": 1, + ".tooltip.top": 2, + ".tooltip.right": 2, + ".tooltip.bottom": 2, + ".tooltip.left": 2, + "clip": 3, + ".popover.top": 3, + ".popover.right": 3, + ".popover.bottom": 3, + ".popover.left": 3, + "#ebebeb": 1, + ".arrow": 12, + ".modal": 5, + "backdrop": 2, + "backdrop.fade": 1, + "backdrop.fade.in": 1 + }, + "Forth": { + "(": 88, + "Block": 2, + "words.": 6, + ")": 87, + "variable": 3, + "blk": 3, + "current": 5, + "-": 473, + "block": 8, + "n": 22, + "addr": 11, + ";": 61, + "buffer": 2, + "evaluate": 1, + "extended": 3, + "semantics": 3, + "flush": 1, + "load": 2, + "...": 4, + "dup": 10, + "save": 2, + "input": 2, + "in": 4, + "@": 13, + "source": 5, + "#source": 2, + "interpret": 1, + "restore": 1, + "buffers": 2, + "update": 1, + "extension": 4, + "empty": 2, + "scr": 2, + "list": 1, + "bounds": 1, + "do": 2, + "i": 5, + "emit": 2, + "loop": 4, + "refill": 2, + "thru": 1, + "x": 10, + "y": 5, + "+": 17, + "swap": 12, + "*": 9, + "forth": 2, + "Copyright": 3, + "Lars": 3, + "Brinkhoff": 3, + "Kernel": 4, + "#tib": 2, + "TODO": 12, + ".r": 1, + ".": 5, + "[": 16, + "char": 10, + "]": 15, + "parse": 5, + "type": 3, + "immediate": 19, + "<": 14, + "flag": 4, + "r": 18, + "x1": 5, + "x2": 5, + "R": 13, + "rot": 2, + "r@": 2, + "noname": 1, + "align": 2, + "here": 9, + "c": 3, + "allot": 2, + "lastxt": 4, + "SP": 1, + "query": 1, + "tib": 1, + "body": 1, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method + "true": 1, + "tuck": 2, + "over": 5, + "u.r": 1, + "u": 3, + "if": 9, + "drop": 4, + "false": 1, + "else": 6, + "then": 5, + "unused": 1, + "value": 1, + "create": 2, + "does": 5, + "within": 1, + "compile": 2, + "Forth2012": 2, + "core": 1, + "action": 1, + "of": 3, + "defer": 2, + "name": 1, + "s": 4, + "HELLO": 4, + "KataDiversion": 1, + "Forth": 1, + "utils": 1, + "the": 7, + "stack": 3, + "EMPTY": 1, + "DEPTH": 2, + "IF": 10, + "BEGIN": 3, + "DROP": 5, + "UNTIL": 3, + "THEN": 10, + "power": 2, + "**": 2, + "n1": 2, + "n2": 2, + "n1_pow_n2": 1, + "SWAP": 8, + "DUP": 14, + "DO": 2, + "OVER": 2, + "LOOP": 2, + "NIP": 4, + "compute": 1, + "highest": 1, + "below": 1, + "N.": 1, + "e.g.": 2, + "MAXPOW2": 2, + "log2_n": 1, + "ABORT": 1, + "ELSE": 7, + "|": 4, + "I": 5, + "i*2": 1, + "/": 3, + "kata": 1, + "test": 1, + "given": 3, + "N": 6, + "has": 1, + "two": 2, + "adjacent": 2, + "bits": 3, + "NOT": 3, + "TWO": 3, + "ADJACENT": 3, + "BITS": 3, + "bool": 1, + "word": 9, + "uses": 1, + "following": 1, + "algorithm": 1, + "return": 5, + "A": 5, + "X": 5, + "LOG2": 1, + "end": 1, + "and": 3, + "OR": 1, + "INVERT": 1, + "maximum": 1, + "number": 4, + "which": 3, + "can": 2, + "be": 2, + "made": 2, + "with": 2, + "MAX": 2, + "NB": 3, + "m": 2, + "**n": 1, + "numbers": 1, + "or": 1, + "less": 1, + "have": 1, + "not": 1, + "bits.": 1, + "see": 1, + "http": 1, + "//www.codekata.com/2007/01/code_kata_fifte.html": 1, + "HOW": 1, + "MANY": 1, + "Tools": 2, + ".s": 1, + "depth": 1, + "traverse": 1, + "dictionary": 1, + "cr": 3, + "code": 3, + "assembler": 1, + "kernel": 1, + "bye": 1, + "cs": 2, + "pick": 1, + "roll": 1, + "editor": 1, + "forget": 1, + "reveal": 1, + "state": 2, + "tools": 1, + "nr": 1, + "synonym": 1, + "undefined": 2, + "bl": 4, + "find": 2, + "nip": 2, + "defined": 1, + "postpone": 14, + "invert": 1, + "/cell": 2, + "cell": 2, + "c@": 2, + "negate": 1, + "ahead": 2, + "resolve": 4, + "literal": 4, + "nonimmediate": 1, + "caddr": 1, + "C": 9, + "cells": 1, + "postponers": 1, + "execute": 1, + "unresolved": 4, + "orig": 5, + "chars": 1, + "orig1": 1, + "orig2": 1, + "branch": 5, + "dodoes_code": 1, + "begin": 2, + "dest": 5, + "while": 2, + "repeat": 2, + "until": 1, + "recurse": 1, + "pad": 3, + "If": 1, + "necessary": 1, + "keep": 1, + "parsing.": 1, + "string": 3, + "cmove": 1, + "abort": 3, + "": 1, + "Undefined": 1, + "ok": 1 + }, + "LFE": { + ";": 213, + "Copyright": 4, + "(": 217, + "c": 4, + ")": 231, + "-": 98, + "Robert": 3, + "Virding": 3, + "Licensed": 3, + "under": 9, + "the": 36, + "Apache": 3, + "License": 12, + "Version": 3, + "you": 3, + "may": 6, + "not": 5, + "use": 6, + "this": 3, + "file": 6, + "except": 3, + "in": 10, + "compliance": 3, + "with": 8, + "License.": 6, + "You": 3, + "obtain": 3, + "a": 8, + "copy": 3, + "of": 10, + "at": 4, + "http": 4, + "//www.apache.org/licenses/LICENSE": 3, + "Unless": 3, + "required": 3, + "by": 4, + "applicable": 3, + "law": 3, + "or": 6, + "agreed": 3, + "to": 10, + "writing": 3, + "software": 3, + "distributed": 6, + "is": 5, + "on": 4, + "an": 5, + "BASIS": 3, + "WITHOUT": 3, + "WARRANTIES": 3, + "OR": 3, + "CONDITIONS": 3, + "OF": 3, + "ANY": 3, + "KIND": 3, + "either": 3, + "express": 3, + "implied.": 3, + "See": 3, + "for": 5, + "specific": 3, + "language": 3, + "governing": 3, + "permissions": 3, + "and": 7, + "limitations": 3, + "File": 4, + "mnesia_demo.lfe": 1, + "Author": 3, + "Purpose": 3, + "A": 1, + "simple": 4, + "Mnesia": 2, + "demo": 2, + "LFE.": 1, + "This": 2, + "contains": 1, + "using": 1, + "LFE": 4, + "access": 1, + "tables.": 1, + "It": 1, + "shows": 2, + "how": 2, + "emp": 1, + "XXXX": 1, + "macro": 1, + "ETS": 1, + "match": 5, + "pattern": 1, + "together": 1, + "mnesia": 8, + "match_object": 1, + "specifications": 1, + "select": 1, + "Query": 2, + "List": 2, + "Comprehensions.": 1, + "defmodule": 2, + "mnesia_demo": 1, + "export": 2, + "new": 2, + "by_place": 1, + "by_place_ms": 1, + "by_place_qlc": 2, + "defrecord": 1, + "person": 8, + "name": 8, + "place": 7, + "job": 3, + "defun": 20, + "Start": 1, + "create": 4, + "table": 2, + "we": 1, + "will": 1, + "get": 21, + "memory": 1, + "only": 1, + "schema.": 1, + "start": 1, + "create_table": 1, + "#": 3, + "attributes": 1, + "Initialise": 1, + "table.": 1, + "let": 6, + "people": 1, + "spec": 1, + "[": 3, + "n": 4, + "p": 2, + "j": 2, + "]": 3, + "when": 1, + "tuple": 1, + "transaction": 2, + "f": 3, + "Use": 1, + "Comprehensions": 1, + "records": 1, + "lambda": 18, + "q": 2, + "qlc": 2, + "lc": 1, + "<": 1, + "e": 1, + "Duncan": 4, + "McGreggor": 4, + "": 2, + "object.lfe": 1, + "Demonstrating": 2, + "OOP": 1, + "closures": 1, + "The": 4, + "object": 16, + "system": 1, + "demonstrated": 1, + "below": 3, + "do": 2, + "following": 2, + "*": 6, + "objects": 2, + "call": 2, + "methods": 5, + "those": 1, + "have": 3, + "which": 1, + "can": 1, + "other": 1, + "update": 1, + "state": 4, + "instance": 2, + "variable": 2, + "Note": 1, + "however": 1, + "that": 1, + "his": 1, + "example": 2, + "does": 1, + "demonstrate": 1, + "inheritance.": 1, + "To": 1, + "code": 2, + "cd": 1, + "examples": 1, + "../bin/lfe": 1, + "pa": 1, + "../ebin": 1, + "Load": 1, + "fish": 6, + "class": 3, + "slurp": 2, + "#Fun": 1, + "": 1, + "Execute": 1, + "some": 2, + "basic": 1, + "species": 7, + "mommy": 3, + "move": 4, + "Carp": 1, + "swam": 1, + "feet": 1, + "ok": 1, + "id": 9, + "Now": 1, + "s": 19, + "strictly": 1, + "necessary.": 1, + "When": 1, + "isn": 1, + "list": 13, + "children": 10, + "formatted": 1, + "verb": 2, + "self": 6, + "distance": 2, + "count": 7, + "erlang": 1, + "length": 1, + "method": 7, + "funcall": 23, + "define": 1, + "info": 1, + "reproduce": 1, + "Mode": 1, + "Code": 1, + "from": 2, + "Paradigms": 1, + "Artificial": 1, + "Intelligence": 1, + "Programming": 1, + "Peter": 1, + "Norvig": 1, + "gps1.lisp": 1, + "First": 1, + "version": 1, + "GPS": 1, + "General": 1, + "Problem": 1, + "Solver": 1, + "Converted": 1, + "Define": 1, + "macros": 1, + "global": 2, + "access.": 1, + "hack": 1, + "very": 1, + "naughty": 1, + "defsyntax": 2, + "defvar": 2, + "val": 2, + "v": 3, + "put": 1, + "getvar": 3, + "solved": 1, + "gps": 1, + "goals": 2, + "Set": 1, + "variables": 1, + "but": 1, + "existing": 1, + "*ops*": 1, + "*state*": 5, + "current": 1, + "conditions.": 1, + "if": 1, + "every": 1, + "fun": 1, + "achieve": 1, + "op": 8, + "action": 3, + "setvar": 2, + "set": 1, + "difference": 1, + "del": 5, + "union": 1, + "add": 3, + "drive": 1, + "son": 2, + "school": 2, + "preconds": 4, + "shop": 6, + "installs": 1, + "battery": 1, + "car": 1, + "works": 1, + "make": 2, + "communication": 2, + "telephone": 1, + "phone": 1, + "book": 1, + "give": 1, + "money": 3, + "has": 1, + "church.lfe": 1, + "church": 20, + "numerals": 1, + "calculus": 1, + "was": 1, + "used": 1, + "section": 1, + "user": 1, + "guide": 1, + "here": 1, + "//lfe.github.io/user": 1, + "guide/recursion/5.html": 1, + "Here": 1, + "usage": 1, + "five/0": 2, + "int2": 1, + "all": 1, + "zero": 2, + "x": 12, + "one": 1, + "two": 1, + "three": 1, + "four": 1, + "five": 1, + "int": 2, + "successor": 3, + "+": 2, + "int1": 1, + "numeral": 8, + "successor/1": 1, + "limit": 4, + "cond": 1, + "/": 1, + "integer": 2 + }, + "Moocode": { + ";": 505, + "while": 15, + "(": 600, + "read": 1, + "player": 2, + ")": 593, + "endwhile": 14, + "I": 1, + "M": 1, + "P": 1, + "O": 1, + "R": 1, + "T": 2, + "A": 1, + "N": 1, + "The": 2, + "following": 2, + "code": 43, + "cannot": 1, + "be": 1, + "used": 1, + "as": 28, + "is.": 1, + "You": 1, + "will": 1, + "need": 1, + "to": 1, + "rewrite": 1, + "functionality": 1, + "that": 3, + "is": 6, + "not": 2, + "present": 1, + "in": 43, + "your": 1, + "server/core.": 1, + "most": 1, + "straight": 1, + "-": 98, + "forward": 1, + "target": 7, + "other": 1, + "than": 1, + "Stunt/Improvise": 1, + "a": 12, + "server/core": 1, + "provides": 1, + "map": 5, + "datatype": 1, + "and": 1, + "anonymous": 1, + "objects.": 1, + "Installation": 1, + "my": 1, + "server": 1, + "uses": 1, + "the": 4, + "object": 1, + "numbers": 1, + "#36819": 1, + "MOOcode": 4, + "Experimental": 2, + "Language": 2, + "Package": 2, + "#36820": 1, + "Changelog": 1, + "#36821": 1, + "Dictionary": 1, + "#36822": 1, + "Compiler": 2, + "#38128": 1, + "Syntax": 4, + "Tree": 1, + "Pretty": 1, + "Printer": 1, + "#37644": 1, + "Tokenizer": 2, + "Prototype": 25, + "#37645": 1, + "Parser": 2, + "#37648": 1, + "Symbol": 2, + "#37649": 1, + "Literal": 1, + "#37650": 1, + "Statement": 8, + "#37651": 1, + "Operator": 11, + "#37652": 1, + "Control": 1, + "Flow": 1, + "#37653": 1, + "Assignment": 2, + "#38140": 1, + "Compound": 1, + "#38123": 1, + "Prefix": 1, + "#37654": 1, + "Infix": 1, + "#37655": 1, + "Name": 1, + "#37656": 1, + "Bracket": 1, + "#37657": 1, + "Brace": 1, + "#37658": 1, + "If": 1, + "#38119": 1, + "For": 1, + "#38120": 1, + "Loop": 1, + "#38126": 1, + "Fork": 1, + "#38127": 1, + "Try": 1, + "#37659": 1, + "Invocation": 1, + "#37660": 1, + "Verb": 1, + "Selector": 2, + "#37661": 1, + "Property": 1, + "#38124": 1, + "Error": 1, + "Catching": 1, + "#38122": 1, + "Positional": 1, + "#38141": 1, + "From": 1, + "#37662": 1, + "Utilities": 1, + "#36823": 1, + "Tests": 4, + "#36824": 1, + "#37646": 1, + "#37647": 1, + ".": 30, + "parent": 1, + "plastic.tokenizer_proto": 4, + "@program": 29, + "_": 4, + "_ensure_prototype": 4, + "application/x": 27, + "moocode": 27, + "typeof": 11, + "this": 114, + "OBJ": 3, + "||": 19, + "raise": 23, + "E_INVARG": 3, + "_ensure_instance": 7, + "ANON": 2, + "plastic.compiler": 3, + "_lookup": 2, + "private": 1, + "{": 112, + "name": 9, + "}": 112, + "args": 26, + "if": 90, + "value": 73, + "this.variable_map": 3, + "[": 99, + "]": 102, + "E_RANGE": 17, + "return": 61, + "else": 45, + "tostr": 51, + "random": 3, + "this.reserved_names": 1, + "endif": 93, + "compile": 1, + "source": 32, + "options": 3, + "tokenizer": 6, + "this.plastic.tokenizer_proto": 2, + "create": 16, + "parser": 89, + "this.plastic.parser_proto": 2, + "compiler": 2, + "try": 2, + "statements": 13, + "except": 2, + "ex": 4, + "ANY": 3, + ".tokenizer.row": 1, + "endtry": 2, + "for": 31, + "statement": 29, + "statement.type": 10, + "@source": 3, + "p": 82, + "@compiler": 1, + "endfor": 31, + "ticks_left": 4, + "<": 13, + "seconds_left": 4, + "&&": 39, + "suspend": 4, + "statement.value": 20, + "elseif": 41, + "_generate": 1, + "isa": 21, + "this.plastic.sign_operator_proto": 1, + "|": 9, + "statement.first": 18, + "statement.second": 13, + "this.plastic.control_flow_statement_proto": 1, + "first": 22, + "statement.id": 3, + "this.plastic.if_statement_proto": 1, + "s": 47, + "respond_to": 9, + "@code": 28, + "@this": 13, + "+": 39, + "i": 29, + "length": 11, + "LIST": 6, + "this.plastic.for_statement_proto": 1, + "statement.subtype": 2, + "this.plastic.loop_statement_proto": 1, + "prefix": 4, + "this.plastic.fork_statement_proto": 1, + "this.plastic.try_statement_proto": 1, + "x": 9, + "@x": 3, + "join": 6, + "this.plastic.assignment_operator_proto": 1, + "statement.first.type": 1, + "res": 19, + "rest": 3, + "v": 17, + "statement.first.value": 1, + "v.type": 2, + "v.first": 2, + "v.second": 1, + "this.plastic.bracket_operator_proto": 1, + "statement.third": 4, + "this.plastic.brace_operator_proto": 1, + "this.plastic.invocation_operator_proto": 1, + "@a": 2, + "statement.second.type": 2, + "this.plastic.property_selector_operator_proto": 1, + "this.plastic.error_catching_operator_proto": 1, + "second": 18, + "this.plastic.literal_proto": 1, + "toliteral": 1, + "this.plastic.positional_symbol_proto": 1, + "this.plastic.prefix_operator_proto": 3, + "this.plastic.infix_operator_proto": 1, + "this.plastic.traditional_ternary_operator_proto": 1, + "this.plastic.name_proto": 1, + "plastic.printer": 2, + "_print": 4, + "indent": 4, + "result": 7, + "item": 2, + "@result": 2, + "E_PROPNF": 1, + "print": 1, + "instance": 59, + "instance.row": 1, + "instance.column": 1, + "instance.source": 1, + "advance": 16, + "this.token": 21, + "this.source": 3, + "row": 23, + "this.row": 2, + "column": 63, + "this.column": 2, + "eol": 5, + "block_comment": 6, + "inline_comment": 4, + "loop": 14, + "len": 3, + "continue": 16, + "next_two": 4, + "column..column": 1, + "c": 44, + "break": 6, + "re": 1, + "not.": 1, + "Worse": 1, + "*": 4, + "valid": 2, + "error": 6, + "like": 4, + "E_PERM": 4, + "treated": 2, + "literal": 2, + "an": 2, + "invalid": 2, + "E_FOO": 1, + "variable.": 1, + "Any": 1, + "starts": 1, + "with": 1, + "characters": 1, + "*now*": 1, + "but": 1, + "errors": 1, + "are": 1, + "errors.": 1, + "*/": 1, + "<=>": 8, + "z": 4, + "col1": 6, + "mark": 2, + "start": 2, + "1": 13, + "9": 4, + "col2": 4, + "chars": 21, + "index": 2, + "E_": 1, + "token": 24, + "type": 9, + "this.errors": 1, + "col1..col2": 2, + "toobj": 1, + "float": 4, + "0": 1, + "cc": 1, + "e": 1, + "tofloat": 1, + "toint": 1, + "esc": 1, + "q": 1, + "col1..column": 1, + "plastic.parser_proto": 3, + "@options": 1, + "instance.tokenizer": 1, + "instance.symbols": 1, + "plastic": 1, + "this.plastic": 1, + "symbol": 65, + "plastic.name_proto": 1, + "plastic.literal_proto": 1, + "plastic.operator_proto": 10, + "plastic.prefix_operator_proto": 1, + "plastic.error_catching_operator_proto": 3, + "plastic.assignment_operator_proto": 1, + "plastic.compound_assignment_operator_proto": 5, + "plastic.traditional_ternary_operator_proto": 2, + "plastic.infix_operator_proto": 13, + "plastic.sign_operator_proto": 2, + "plastic.bracket_operator_proto": 1, + "plastic.brace_operator_proto": 1, + "plastic.control_flow_statement_proto": 3, + "plastic.if_statement_proto": 1, + "plastic.for_statement_proto": 1, + "plastic.loop_statement_proto": 2, + "plastic.fork_statement_proto": 1, + "plastic.try_statement_proto": 1, + "plastic.from_statement_proto": 2, + "plastic.verb_selector_operator_proto": 2, + "plastic.property_selector_operator_proto": 2, + "plastic.invocation_operator_proto": 1, + "id": 14, + "bp": 3, + "proto": 4, + "nothing": 1, + "this.plastic.symbol_proto": 2, + "this.symbols": 4, + "clone": 2, + "this.token.type": 1, + "this.token.value": 1, + "this.token.eol": 1, + "operator": 1, + "variable": 1, + "identifier": 1, + "keyword": 1, + "Unexpected": 1, + "end": 2, + "Expected": 1, + "t": 1, + "call": 1, + "nud": 2, + "on": 1, + "@definition": 1, + "new": 4, + "pop": 4, + "delete": 1, + "plastic.utilities": 6, + "suspend_if_necessary": 4, + "parse_map_sequence": 1, + "separator": 6, + "infix": 3, + "terminator": 6, + "symbols": 7, + "ids": 6, + "@ids": 2, + "push": 3, + "@symbol": 2, + ".id": 13, + "key": 7, + "expression": 19, + "@map": 1, + "parse_list_sequence": 2, + "list": 3, + "@list": 1, + "validate_scattering_pattern": 1, + "pattern": 5, + "state": 8, + "element": 1, + "element.type": 3, + "element.id": 2, + "element.first.type": 2, + "children": 4, + "node": 3, + "node.value": 1, + "@children": 1, + "match": 1, + "root": 2, + "keys": 3, + "matches": 3, + "stack": 4, + "next": 2, + "top": 5, + "@stack": 2, + "top.": 1, + "@matches": 1, + "plastic.symbol_proto": 2, + "opts": 2, + "instance.id": 1, + "instance.value": 1, + "instance.bp": 1, + "k": 3, + "instance.": 1, + "parents": 3, + "ancestor": 2, + "ancestors": 1, + "property": 1, + "properties": 1, + "this.type": 8, + "this.first": 8, + "import": 8, + "this.second": 7, + "left": 2, + "this.third": 3, + "sequence": 2, + "led": 4, + "this.bp": 2, + "second.type": 2, + "make_identifier": 4, + "first.id": 1, + "parser.symbols": 2, + "reserve_keyword": 2, + "this.plastic.utilities": 1, + "third": 4, + "third.id": 2, + "second.id": 1, + "std": 1, + "reserve_statement": 1, + "types": 7, + ".type": 1, + "target.type": 3, + "target.value": 3, + "target.id": 4, + "temp": 4, + "temp.id": 1, + "temp.first.id": 1, + "temp.first.type": 2, + "temp.second.type": 1, + "temp.first": 2, + "imports": 5, + "import.type": 2, + "@imports": 2, + "parser.plastic.invocation_operator_proto": 1, + "temp.type": 1, + "parser.plastic.name_proto": 2, + "temp.first.value": 1, + "temp.second": 1, + "first.type": 1, + "parser.imports": 2, + "import.id": 2, + "parser.plastic.assignment_operator_proto": 1, + "result.type": 1, + "result.first": 1, + "result.second": 1, + "toy": 3, + "wind": 1, + "this.wound": 8, + "tell": 1, + "this.name": 4, + "player.location": 1, + "announce": 1, + "player.name": 1, + "@verb": 1, + "do_the_work": 3, + "none": 1, + "object_utils": 1, + "this.location": 3, + "room": 1, + "announce_all": 2, + "continue_msg": 1, + "fork": 1, + "endfork": 1, + "wind_down_msg": 1 + }, + "Java": { + "package": 6, + "nokogiri": 6, + ";": 891, + "import": 66, + "java.util.Collections": 2, + "java.util.HashMap": 1, + "java.util.Map": 3, + "org.jruby.Ruby": 2, + "org.jruby.RubyArray": 1, + "org.jruby.RubyClass": 2, + "org.jruby.RubyFixnum": 1, + "org.jruby.RubyModule": 1, + "org.jruby.runtime.ObjectAllocator": 1, + "org.jruby.runtime.builtin.IRubyObject": 2, + "org.jruby.runtime.load.BasicLibraryService": 1, + "public": 214, + "class": 12, + "NokogiriService": 1, + "implements": 3, + "BasicLibraryService": 1, + "{": 434, + "static": 141, + "final": 78, + "String": 33, + "nokogiriClassCacheGvarName": 1, + "Map": 1, + "": 2, + "RubyClass": 92, + "nokogiriClassCache": 2, + "boolean": 36, + "basicLoad": 1, + "(": 1097, + "Ruby": 43, + "ruby": 25, + ")": 1097, + "init": 2, + "createNokogiriClassCahce": 2, + "return": 267, + "true": 21, + "}": 434, + "private": 77, + "void": 25, + "Collections.synchronizedMap": 1, + "new": 131, + "HashMap": 1, + "nokogiriClassCache.put": 26, + "ruby.getClassFromPath": 26, + "RubyModule": 18, + "ruby.defineModule": 1, + "xmlModule": 7, + "nokogiri.defineModuleUnder": 3, + "xmlSaxModule": 3, + "xmlModule.defineModuleUnder": 1, + "htmlModule": 5, + "htmlSaxModule": 3, + "htmlModule.defineModuleUnder": 1, + "xsltModule": 3, + "createNokogiriModule": 2, + "createSyntaxErrors": 2, + "xmlNode": 5, + "createXmlModule": 2, + "createHtmlModule": 2, + "createDocuments": 2, + "createSaxModule": 2, + "createXsltModule": 2, + "encHandler": 1, + "nokogiri.defineClassUnder": 2, + "ruby.getObject": 13, + "ENCODING_HANDLER_ALLOCATOR": 2, + "encHandler.defineAnnotatedMethods": 1, + "EncodingHandler.class": 1, + "syntaxError": 2, + "ruby.getStandardError": 2, + ".getAllocator": 1, + "xmlSyntaxError": 4, + "xmlModule.defineClassUnder": 23, + "XML_SYNTAXERROR_ALLOCATOR": 2, + "xmlSyntaxError.defineAnnotatedMethods": 1, + "XmlSyntaxError.class": 1, + "node": 14, + "XML_NODE_ALLOCATOR": 2, + "node.defineAnnotatedMethods": 1, + "XmlNode.class": 1, + "attr": 1, + "XML_ATTR_ALLOCATOR": 2, + "attr.defineAnnotatedMethods": 1, + "XmlAttr.class": 1, + "attrDecl": 1, + "XML_ATTRIBUTE_DECL_ALLOCATOR": 2, + "attrDecl.defineAnnotatedMethods": 1, + "XmlAttributeDecl.class": 1, + "characterData": 3, + "null": 80, + "comment": 1, + "XML_COMMENT_ALLOCATOR": 2, + "comment.defineAnnotatedMethods": 1, + "XmlComment.class": 1, + "text": 2, + "XML_TEXT_ALLOCATOR": 2, + "text.defineAnnotatedMethods": 1, + "XmlText.class": 1, + "cdata": 1, + "XML_CDATA_ALLOCATOR": 2, + "cdata.defineAnnotatedMethods": 1, + "XmlCdata.class": 1, + "dtd": 1, + "XML_DTD_ALLOCATOR": 2, + "dtd.defineAnnotatedMethods": 1, + "XmlDtd.class": 1, + "documentFragment": 1, + "XML_DOCUMENT_FRAGMENT_ALLOCATOR": 2, + "documentFragment.defineAnnotatedMethods": 1, + "XmlDocumentFragment.class": 1, + "element": 3, + "XML_ELEMENT_ALLOCATOR": 2, + "element.defineAnnotatedMethods": 1, + "XmlElement.class": 1, + "elementContent": 1, + "XML_ELEMENT_CONTENT_ALLOCATOR": 2, + "elementContent.defineAnnotatedMethods": 1, + "XmlElementContent.class": 1, + "elementDecl": 1, + "XML_ELEMENT_DECL_ALLOCATOR": 2, + "elementDecl.defineAnnotatedMethods": 1, + "XmlElementDecl.class": 1, + "entityDecl": 1, + "XML_ENTITY_DECL_ALLOCATOR": 2, + "entityDecl.defineAnnotatedMethods": 1, + "XmlEntityDecl.class": 1, + "entityDecl.defineConstant": 6, + "RubyFixnum.newFixnum": 6, + "XmlEntityDecl.INTERNAL_GENERAL": 1, + "XmlEntityDecl.EXTERNAL_GENERAL_PARSED": 1, + "XmlEntityDecl.EXTERNAL_GENERAL_UNPARSED": 1, + "XmlEntityDecl.INTERNAL_PARAMETER": 1, + "XmlEntityDecl.EXTERNAL_PARAMETER": 1, + "XmlEntityDecl.INTERNAL_PREDEFINED": 1, + "entref": 1, + "XML_ENTITY_REFERENCE_ALLOCATOR": 2, + "entref.defineAnnotatedMethods": 1, + "XmlEntityReference.class": 1, + "namespace": 1, + "XML_NAMESPACE_ALLOCATOR": 2, + "namespace.defineAnnotatedMethods": 1, + "XmlNamespace.class": 1, + "nodeSet": 1, + "XML_NODESET_ALLOCATOR": 2, + "nodeSet.defineAnnotatedMethods": 1, + "XmlNodeSet.class": 1, + "pi": 1, + "XML_PROCESSING_INSTRUCTION_ALLOCATOR": 2, + "pi.defineAnnotatedMethods": 1, + "XmlProcessingInstruction.class": 1, + "reader": 1, + "XML_READER_ALLOCATOR": 2, + "reader.defineAnnotatedMethods": 1, + "XmlReader.class": 1, + "schema": 2, + "XML_SCHEMA_ALLOCATOR": 2, + "schema.defineAnnotatedMethods": 1, + "XmlSchema.class": 1, + "relaxng": 1, + "XML_RELAXNG_ALLOCATOR": 2, + "relaxng.defineAnnotatedMethods": 1, + "XmlRelaxng.class": 1, + "xpathContext": 1, + "XML_XPATHCONTEXT_ALLOCATOR": 2, + "xpathContext.defineAnnotatedMethods": 1, + "XmlXpathContext.class": 1, + "htmlElemDesc": 1, + "htmlModule.defineClassUnder": 3, + "HTML_ELEMENT_DESCRIPTION_ALLOCATOR": 2, + "htmlElemDesc.defineAnnotatedMethods": 1, + "HtmlElementDescription.class": 1, + "htmlEntityLookup": 1, + "HTML_ENTITY_LOOKUP_ALLOCATOR": 2, + "htmlEntityLookup.defineAnnotatedMethods": 1, + "HtmlEntityLookup.class": 1, + "xmlDocument": 5, + "XML_DOCUMENT_ALLOCATOR": 2, + "xmlDocument.defineAnnotatedMethods": 1, + "XmlDocument.class": 1, + "//RubyModule": 1, + "htmlDoc": 1, + "html.defineOrGetClassUnder": 1, + "document": 5, + "htmlDocument": 6, + "HTML_DOCUMENT_ALLOCATOR": 2, + "htmlDocument.defineAnnotatedMethods": 1, + "HtmlDocument.class": 1, + "xmlSaxParserContext": 5, + "xmlSaxModule.defineClassUnder": 2, + "XML_SAXPARSER_CONTEXT_ALLOCATOR": 2, + "xmlSaxParserContext.defineAnnotatedMethods": 1, + "XmlSaxParserContext.class": 1, + "xmlSaxPushParser": 1, + "XML_SAXPUSHPARSER_ALLOCATOR": 2, + "xmlSaxPushParser.defineAnnotatedMethods": 1, + "XmlSaxPushParser.class": 1, + "htmlSaxParserContext": 4, + "htmlSaxModule.defineClassUnder": 1, + "HTML_SAXPARSER_CONTEXT_ALLOCATOR": 2, + "htmlSaxParserContext.defineAnnotatedMethods": 1, + "HtmlSaxParserContext.class": 1, + "stylesheet": 1, + "xsltModule.defineClassUnder": 1, + "XSLT_STYLESHEET_ALLOCATOR": 2, + "stylesheet.defineAnnotatedMethods": 1, + "XsltStylesheet.class": 2, + "xsltModule.defineAnnotatedMethod": 1, + "ObjectAllocator": 60, + "IRubyObject": 35, + "allocate": 30, + "runtime": 88, + "klazz": 107, + "EncodingHandler": 1, + "HtmlDocument": 7, + "if": 116, + "try": 26, + "clone": 47, + "htmlDocument.clone": 1, + "clone.setMetaClass": 23, + "catch": 27, + "CloneNotSupportedException": 23, + "e": 31, + "HtmlSaxParserContext": 5, + "htmlSaxParserContext.clone": 1, + "HtmlElementDescription": 1, + "HtmlEntityLookup": 1, + "XmlAttr": 5, + "xmlAttr": 3, + "xmlAttr.clone": 1, + "XmlCdata": 5, + "xmlCdata": 3, + "xmlCdata.clone": 1, + "XmlComment": 5, + "xmlComment": 3, + "xmlComment.clone": 1, + "XmlDocument": 8, + "xmlDocument.clone": 1, + "XmlDocumentFragment": 5, + "xmlDocumentFragment": 3, + "xmlDocumentFragment.clone": 1, + "XmlDtd": 5, + "xmlDtd": 3, + "xmlDtd.clone": 1, + "XmlElement": 5, + "xmlElement": 3, + "xmlElement.clone": 1, + "XmlElementDecl": 5, + "xmlElementDecl": 3, + "xmlElementDecl.clone": 1, + "XmlEntityReference": 5, + "xmlEntityRef": 3, + "xmlEntityRef.clone": 1, + "XmlNamespace": 5, + "xmlNamespace": 3, + "xmlNamespace.clone": 1, + "XmlNode": 5, + "xmlNode.clone": 1, + "XmlNodeSet": 5, + "xmlNodeSet": 5, + "xmlNodeSet.clone": 1, + "xmlNodeSet.setNodes": 1, + "RubyArray.newEmptyArray": 1, + "XmlProcessingInstruction": 5, + "xmlProcessingInstruction": 3, + "xmlProcessingInstruction.clone": 1, + "XmlReader": 5, + "xmlReader": 5, + "xmlReader.clone": 1, + "XmlAttributeDecl": 1, + "XmlEntityDecl": 1, + "throw": 9, + "runtime.newNotImplementedError": 1, + "XmlRelaxng": 5, + "xmlRelaxng": 3, + "xmlRelaxng.clone": 1, + "XmlSaxParserContext": 5, + "xmlSaxParserContext.clone": 1, + "XmlSaxPushParser": 1, + "XmlSchema": 5, + "xmlSchema": 3, + "xmlSchema.clone": 1, + "XmlSyntaxError": 5, + "xmlSyntaxError.clone": 1, + "XmlText": 6, + "xmlText": 3, + "xmlText.clone": 1, + "XmlXpathContext": 5, + "xmlXpathContext": 3, + "xmlXpathContext.clone": 1, + "XsltStylesheet": 4, + "xsltStylesheet": 3, + "xsltStylesheet.clone": 1, + "hudson.model": 1, + "hudson.ExtensionListView": 1, + "hudson.Functions": 1, + "hudson.Platform": 1, + "hudson.PluginManager": 1, + "hudson.cli.declarative.CLIResolver": 1, + "hudson.model.listeners.ItemListener": 1, + "hudson.slaves.ComputerListener": 1, + "hudson.util.CopyOnWriteList": 1, + "hudson.util.FormValidation": 1, + "jenkins.model.Jenkins": 1, + "org.jvnet.hudson.reactor.ReactorException": 1, + "org.kohsuke.stapler.QueryParameter": 1, + "org.kohsuke.stapler.Stapler": 1, + "org.kohsuke.stapler.StaplerRequest": 1, + "org.kohsuke.stapler.StaplerResponse": 1, + "javax.servlet.ServletContext": 1, + "javax.servlet.ServletException": 1, + "java.io.File": 1, + "java.io.IOException": 10, + "java.text.NumberFormat": 1, + "java.text.ParseException": 1, + "java.util.List": 1, + "hudson.Util.fixEmpty": 1, + "Hudson": 5, + "extends": 10, + "Jenkins": 2, + "transient": 2, + "CopyOnWriteList": 4, + "": 2, + "itemListeners": 2, + "ExtensionListView.createCopyOnWriteList": 2, + "ItemListener.class": 1, + "": 2, + "computerListeners": 2, + "ComputerListener.class": 1, + "@CLIResolver": 1, + "getInstance": 2, + "Jenkins.getInstance": 2, + "File": 2, + "root": 6, + "ServletContext": 2, + "context": 8, + "throws": 26, + "IOException": 8, + "InterruptedException": 2, + "ReactorException": 2, + "this": 16, + "PluginManager": 1, + "pluginManager": 2, + "super": 7, + "getJobListeners": 1, + "getComputerListeners": 1, + "Slave": 3, + "getSlave": 1, + "name": 10, + "Node": 1, + "n": 3, + "getNode": 1, + "instanceof": 19, + "List": 3, + "": 2, + "getSlaves": 1, + "slaves": 3, + "setSlaves": 1, + "setNodes": 1, + "TopLevelItem": 3, + "getJob": 1, + "getItem": 1, + "getJobCaseInsensitive": 1, + "match": 2, + "Functions.toEmailSafeString": 2, + "for": 16, + "item": 2, + "getItems": 1, + "item.getName": 1, + ".equalsIgnoreCase": 5, + "synchronized": 1, + "doQuietDown": 2, + "StaplerResponse": 4, + "rsp": 6, + "ServletException": 3, + ".generateResponse": 2, + "doLogRss": 1, + "StaplerRequest": 4, + "req": 6, + "qs": 3, + "req.getQueryString": 1, + "rsp.sendRedirect2": 1, + "+": 83, + "doFieldCheck": 3, + "fixEmpty": 8, + "req.getParameter": 4, + "FormValidation": 2, + "@QueryParameter": 4, + "value": 11, + "type": 3, + "errorText": 3, + "warningText": 3, + "FormValidation.error": 4, + "FormValidation.warning": 1, + "type.equalsIgnoreCase": 2, + "NumberFormat.getInstance": 2, + ".parse": 2, + "else": 33, + ".floatValue": 1, + "<=>": 1, + "0": 1, + "error": 1, + "Messages": 1, + "Hudson_NotAPositiveNumber": 1, + "equalsIgnoreCase": 1, + "number": 1, + "negative": 1, + "NumberFormat": 1, + "parse": 1, + "floatValue": 1, + "Messages.Hudson_NotANegativeNumber": 1, + "ParseException": 1, + "Messages.Hudson_NotANumber": 1, + "FormValidation.ok": 1, + "isWindows": 1, + "File.pathSeparatorChar": 1, + "isDarwin": 1, + "Platform.isDarwin": 1, + "adminCheck": 3, + "Stapler.getCurrentRequest": 1, + "Stapler.getCurrentResponse": 1, + "isAdmin": 4, + "rsp.sendError": 1, + "StaplerResponse.SC_FORBIDDEN": 1, + "false": 12, + ".getACL": 1, + ".hasPermission": 1, + "ADMINISTER": 1, + "XSTREAM.alias": 1, + "Hudson.class": 1, + "MasterComputer": 1, + "Jenkins.MasterComputer": 1, + "CloudList": 3, + "Jenkins.CloudList": 1, + "h": 2, + "//": 16, + "needed": 1, + "XStream": 1, + "deserialization": 1, + "persons": 1, + "ProtocolBuffer": 2, + "registerAllExtensions": 1, + "com.google.protobuf.ExtensionRegistry": 2, + "registry": 1, + "interface": 1, + "PersonOrBuilder": 2, + "com.google.protobuf.MessageOrBuilder": 1, + "hasName": 5, + "java.lang.String": 15, + "getName": 3, + "com.google.protobuf.ByteString": 13, + "getNameBytes": 5, + "Person": 10, + "com.google.protobuf.GeneratedMessage": 1, + "com.google.protobuf.GeneratedMessage.Builder": 2, + "": 1, + "builder": 4, + "this.unknownFields": 4, + "builder.getUnknownFields": 1, + "noInit": 1, + "com.google.protobuf.UnknownFieldSet.getDefaultInstance": 1, + "defaultInstance": 4, + "getDefaultInstance": 2, + "getDefaultInstanceForType": 2, + "com.google.protobuf.UnknownFieldSet": 2, + "unknownFields": 3, + "@java.lang.Override": 4, + "getUnknownFields": 3, + "com.google.protobuf.CodedInputStream": 5, + "input": 18, + "com.google.protobuf.ExtensionRegistryLite": 8, + "extensionRegistry": 16, + "com.google.protobuf.InvalidProtocolBufferException": 9, + "initFields": 2, + "int": 62, + "mutable_bitField0_": 1, + "com.google.protobuf.UnknownFieldSet.Builder": 1, + "com.google.protobuf.UnknownFieldSet.newBuilder": 1, + "done": 4, + "while": 10, + "tag": 3, + "input.readTag": 1, + "switch": 6, + "case": 56, + "break": 4, + "default": 6, + "parseUnknownField": 1, + "bitField0_": 15, + "|": 5, + "name_": 18, + "input.readBytes": 1, + "e.setUnfinishedMessage": 1, + "e.getMessage": 1, + ".setUnfinishedMessage": 1, + "finally": 2, + "unknownFields.build": 1, + "makeExtensionsImmutable": 1, + "com.google.protobuf.Descriptors.Descriptor": 4, + "getDescriptor": 15, + "persons.ProtocolBuffer.internal_static_persons_Person_descriptor": 3, + "protected": 8, + "com.google.protobuf.GeneratedMessage.FieldAccessorTable": 4, + "internalGetFieldAccessorTable": 2, + "persons.ProtocolBuffer.internal_static_persons_Person_fieldAccessorTable": 2, + ".ensureFieldAccessorsInitialized": 2, + "persons.ProtocolBuffer.Person.class": 2, + "persons.ProtocolBuffer.Person.Builder.class": 2, + "com.google.protobuf.Parser": 2, + "": 3, + "PARSER": 2, + "com.google.protobuf.AbstractParser": 1, + "parsePartialFrom": 1, + "getParserForType": 1, + "NAME_FIELD_NUMBER": 1, + "java.lang.Object": 7, + "&": 7, + "ref": 16, + "bs": 1, + "s": 10, + "bs.toStringUtf8": 1, + "bs.isValidUtf8": 1, + "b": 7, + "com.google.protobuf.ByteString.copyFromUtf8": 2, + "byte": 4, + "memoizedIsInitialized": 4, + "-": 15, + "isInitialized": 5, + "writeTo": 1, + "com.google.protobuf.CodedOutputStream": 2, + "output": 2, + "getSerializedSize": 2, + "output.writeBytes": 1, + ".writeTo": 1, + "memoizedSerializedSize": 3, + "size": 16, + ".computeBytesSize": 1, + ".getSerializedSize": 1, + "long": 5, + "serialVersionUID": 1, + "L": 1, + "writeReplace": 1, + "java.io.ObjectStreamException": 1, + "super.writeReplace": 1, + "persons.ProtocolBuffer.Person": 22, + "parseFrom": 8, + "data": 8, + "PARSER.parseFrom": 8, + "[": 54, + "]": 54, + "java.io.InputStream": 4, + "parseDelimitedFrom": 2, + "PARSER.parseDelimitedFrom": 2, + "Builder": 20, + "newBuilder": 5, + "Builder.create": 1, + "newBuilderForType": 2, + "prototype": 2, + ".mergeFrom": 2, + "toBuilder": 1, + "com.google.protobuf.GeneratedMessage.BuilderParent": 2, + "parent": 4, + "": 1, + "persons.ProtocolBuffer.PersonOrBuilder": 1, + "maybeForceBuilderInitialization": 3, + "com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders": 1, + "create": 2, + "clear": 1, + "super.clear": 1, + "buildPartial": 3, + "getDescriptorForType": 1, + "persons.ProtocolBuffer.Person.getDefaultInstance": 2, + "build": 1, + "result": 5, + "result.isInitialized": 1, + "newUninitializedMessageException": 1, + "from_bitField0_": 2, + "to_bitField0_": 3, + "result.name_": 1, + "result.bitField0_": 1, + "onBuilt": 1, + "mergeFrom": 5, + "com.google.protobuf.Message": 1, + "other": 6, + "super.mergeFrom": 1, + "other.hasName": 1, + "other.name_": 1, + "onChanged": 4, + "this.mergeUnknownFields": 1, + "other.getUnknownFields": 1, + "parsedMessage": 5, + "PARSER.parsePartialFrom": 1, + "e.getUnfinishedMessage": 1, + ".toStringUtf8": 1, + "setName": 1, + "NullPointerException": 3, + "clearName": 1, + ".getName": 1, + "setNameBytes": 1, + "defaultInstance.initFields": 1, + "internal_static_persons_Person_descriptor": 3, + "internal_static_persons_Person_fieldAccessorTable": 2, + "com.google.protobuf.Descriptors.FileDescriptor": 5, + "descriptor": 3, + "descriptorData": 2, + "com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner": 2, + "assigner": 2, + "assignDescriptors": 1, + ".getMessageTypes": 1, + ".get": 1, + ".internalBuildGeneratedFileFrom": 1, + "nokogiri.internals": 1, + "nokogiri.internals.NokogiriHelpers.getNokogiriClass": 1, + "nokogiri.internals.NokogiriHelpers.isNamespace": 1, + "nokogiri.internals.NokogiriHelpers.stringOrNil": 1, + "nokogiri.HtmlDocument": 1, + "nokogiri.NokogiriService": 1, + "nokogiri.XmlDocument": 1, + "org.apache.xerces.parsers.DOMParser": 1, + "org.apache.xerces.xni.Augmentations": 1, + "org.apache.xerces.xni.QName": 1, + "org.apache.xerces.xni.XMLAttributes": 1, + "org.apache.xerces.xni.XNIException": 1, + "org.apache.xerces.xni.parser.XMLDocumentFilter": 1, + "org.apache.xerces.xni.parser.XMLParserConfiguration": 1, + "org.cyberneko.html.HTMLConfiguration": 1, + "org.cyberneko.html.filters.DefaultFilter": 1, + "org.jruby.runtime.ThreadContext": 1, + "org.w3c.dom.Document": 1, + "org.w3c.dom.NamedNodeMap": 1, + "org.w3c.dom.NodeList": 1, + "HtmlDomParserContext": 3, + "XmlDomParserContext": 1, + "options": 4, + "encoding": 2, + "@Override": 6, + "initErrorHandler": 1, + "options.strict": 1, + "errorHandler": 6, + "NokogiriStrictErrorHandler": 1, + "options.noError": 2, + "options.noWarning": 2, + "NokogiriNonStrictErrorHandler4NekoHtml": 1, + "initParser": 1, + "XMLParserConfiguration": 1, + "config": 2, + "HTMLConfiguration": 1, + "XMLDocumentFilter": 3, + "removeNSAttrsFilter": 2, + "RemoveNSAttrsFilter": 2, + "elementValidityCheckFilter": 3, + "ElementValidityCheckFilter": 3, + "//XMLDocumentFilter": 1, + "filters": 3, + "config.setErrorHandler": 1, + "this.errorHandler": 2, + "parser": 1, + "DOMParser": 1, + "setProperty": 4, + "java_encoding": 2, + "setFeature": 4, + "enableDocumentFragment": 1, + "getNewEmptyDocument": 1, + "ThreadContext": 2, + "args": 6, + "XmlDocument.rbNew": 1, + "getNokogiriClass": 1, + "context.getRuntime": 3, + "wrapDocument": 1, + "Document": 2, + "NokogiriService.HTML_DOCUMENT_ALLOCATOR.allocate": 1, + "htmlDocument.setDocumentNode": 1, + "ruby_encoding.isNil": 1, + "detected_encoding": 2, + "&&": 6, + "detected_encoding.isNil": 1, + "ruby_encoding": 3, + "charset": 2, + "tryGetCharsetFromHtml5MetaTag": 2, + "stringOrNil": 1, + "htmlDocument.setEncoding": 1, + "htmlDocument.setParsedEncoding": 1, + "document.getDocumentElement": 2, + ".getNodeName": 4, + "NodeList": 2, + "list": 1, + ".getChildNodes": 2, + "i": 54, + "<": 13, + "list.getLength": 1, + "list.item": 2, + "headers": 1, + "j": 9, + "headers.getLength": 1, + "headers.item": 2, + "NamedNodeMap": 1, + "nodeMap": 1, + ".getAttributes": 1, + "k": 5, + "nodeMap.getLength": 1, + "nodeMap.item": 2, + ".getNodeValue": 1, + "DefaultFilter": 2, + "startElement": 2, + "QName": 2, + "XMLAttributes": 2, + "attrs": 4, + "Augmentations": 2, + "augs": 4, + "XNIException": 2, + "attrs.getLength": 1, + "isNamespace": 1, + "attrs.getQName": 1, + "attrs.removeAttributeAt": 1, + "element.uri": 1, + "super.startElement": 2, + "NokogiriErrorHandler": 2, + "element_names": 3, + "g": 1, + "r": 1, + "w": 1, + "x": 8, + "y": 1, + "z": 1, + "isValid": 2, + "testee": 1, + "char": 13, + "c": 21, + "testee.toCharArray": 1, + "index": 4, + "Integer": 2, + ".length": 1, + "testee.equals": 1, + "name.rawname": 2, + "errorHandler.getErrors": 1, + ".add": 1, + "Exception": 1, + "clojure.lang": 1, + "java.lang.ref.Reference": 1, + "java.math.BigInteger": 1, + "java.util.concurrent.ConcurrentHashMap": 1, + "java.lang.ref.SoftReference": 1, + "java.lang.ref.ReferenceQueue": 1, + "Util": 1, + "equiv": 17, + "Object": 31, + "k1": 40, + "k2": 38, + "Number": 9, + "Numbers.equal": 1, + "IPersistentCollection": 5, + "||": 8, + "pcequiv": 2, + "k1.equals": 2, + "double": 4, + "c1": 2, + "c2": 2, + ".equiv": 2, + "equals": 2, + "identical": 1, + "Class": 10, + "classOf": 1, + "x.getClass": 1, + "compare": 1, + "Numbers.compare": 1, + "Comparable": 1, + ".compareTo": 1, + "hash": 3, + "o": 12, + "o.hashCode": 2, + "hasheq": 1, + "Numbers.hasheq": 1, + "IHashEq": 2, + ".hasheq": 1, + "hashCombine": 1, + "seed": 5, + "//a": 1, + "la": 1, + "boost": 1, + "e3779b9": 1, + "<<": 1, + "isPrimitive": 1, + "c.isPrimitive": 2, + "Void.TYPE": 3, + "isInteger": 1, + "Long": 1, + "BigInt": 1, + "BigInteger": 1, + "ret1": 2, + "ret": 4, + "nil": 2, + "ISeq": 2, + "": 1, + "clearCache": 1, + "ReferenceQueue": 1, + "rq": 1, + "ConcurrentHashMap": 1, + "K": 2, + "Reference": 3, + "": 3, + "cache": 1, + "//cleanup": 1, + "any": 1, + "dead": 1, + "entries": 1, + "rq.poll": 2, + "Map.Entry": 1, + "cache.entrySet": 1, + "val": 3, + "e.getValue": 1, + "val.get": 1, + "cache.remove": 1, + "e.getKey": 1, + "RuntimeException": 5, + "runtimeException": 2, + "Throwable": 4, + "sneakyThrow": 1, + "t": 6, + "Util.": 1, + "": 1, + "sneakyThrow0": 2, + "@SuppressWarnings": 1, + "": 1, + "T": 2, + "clojure.asm": 1, + "java.lang.reflect.Constructor": 1, + "java.lang.reflect.Method": 1, + "Type": 42, + "VOID": 5, + "BOOLEAN": 6, + "CHAR": 6, + "BYTE": 6, + "SHORT": 6, + "INT": 6, + "FLOAT": 6, + "LONG": 7, + "DOUBLE": 7, + "ARRAY": 6, + "OBJECT": 7, + "VOID_TYPE": 3, + "BOOLEAN_TYPE": 3, + "CHAR_TYPE": 3, + "BYTE_TYPE": 3, + "SHORT_TYPE": 3, + "INT_TYPE": 3, + "FLOAT_TYPE": 3, + "LONG_TYPE": 3, + "DOUBLE_TYPE": 3, + "sort": 18, + "buf": 43, + "off": 25, + "len": 24, + "this.sort": 2, + "this.len": 2, + "this.buf": 2, + "this.off": 1, + "getType": 10, + "typeDescriptor": 1, + "typeDescriptor.toCharArray": 1, + "Integer.TYPE": 2, + "Boolean.TYPE": 2, + "Byte.TYPE": 2, + "Character.TYPE": 2, + "Short.TYPE": 2, + "Double.TYPE": 2, + "Float.TYPE": 2, + "getObjectType": 1, + "l": 5, + "name.length": 2, + "name.getChars": 1, + "getArgumentTypes": 2, + "methodDescriptor": 2, + "methodDescriptor.toCharArray": 2, + "car": 18, + ".len": 1, + "Method": 3, + "method": 2, + "classes": 2, + "method.getParameterTypes": 1, + "types": 3, + "classes.length": 2, + "getReturnType": 2, + "methodDescriptor.indexOf": 1, + "method.getReturnType": 1, + "getSort": 1, + "getDimensions": 3, + "getElementType": 2, + "getClassName": 1, + "StringBuffer": 14, + ".getClassName": 1, + "b.append": 1, + "b.toString": 1, + ".replace": 2, + "getInternalName": 2, + "buf.toString": 4, + "getMethodDescriptor": 2, + "returnType": 1, + "argumentTypes": 2, + "buf.append": 21, + "argumentTypes.length": 1, + ".getDescriptor": 1, + "returnType.getDescriptor": 1, + "c.getName": 1, + "getConstructorDescriptor": 1, + "Constructor": 1, + "parameters": 4, + "c.getParameterTypes": 1, + "parameters.length": 2, + ".toString": 1, + "m": 1, + "m.getParameterTypes": 1, + "m.getReturnType": 1, + "d": 10, + "d.isPrimitive": 1, + "d.isArray": 1, + "d.getComponentType": 1, + "d.getName": 1, + "name.charAt": 1, + "getSize": 1, + "getOpcode": 1, + "opcode": 17, + "Opcodes.IALOAD": 1, + "Opcodes.IASTORE": 1, + "t.sort": 1, + "Type.OBJECT": 2, + "Type.ARRAY": 2, + "t.len": 1, + "t.off": 1, + "end": 4, + "t.buf": 1, + "hashCode": 1, + "hc": 4, + "*": 2, + "toString": 1 }, "Tea": { "<%>": 1, @@ -65607,6 +112408,7 @@ "exit": 1, "when": 1 }, +<<<<<<< HEAD "TypeScript": { "class": 3, "Animal": 4, @@ -65635,513 +112437,2011 @@ "sam.move": 1, "tom.move": 1, "console.log": 1 +======= + "Kotlin": { + "package": 1, + "addressbook": 1, + "class": 5, + "Contact": 1, + "(": 15, + "val": 16, + "name": 2, + "String": 7, + "emails": 1, + "List": 3, + "": 1, + "addresses": 1, + "": 1, + "phonenums": 1, + "": 1, + ")": 15, + "EmailAddress": 1, + "user": 1, + "host": 1, + "PostalAddress": 1, + "streetAddress": 1, + "city": 1, + "zip": 1, + "state": 2, + "USState": 1, + "country": 3, + "Country": 7, + "{": 6, + "assert": 1, + "null": 3, + "xor": 1, + "Countries": 2, + "[": 3, + "]": 3, + "}": 6, + "PhoneNumber": 1, + "areaCode": 1, + "Int": 1, + "number": 1, + "Long": 1, + "object": 1, + "fun": 1, + "get": 2, + "id": 2, + "CountryID": 1, + "countryTable": 2, + "private": 2, + "var": 1, + "table": 5, + "Map": 2, + "": 2, + "if": 1, + "HashMap": 1, + "for": 1, + "line": 3, + "in": 1, + "TextFile": 1, + ".lines": 1, + "stripWhiteSpace": 1, + "true": 1, + "return": 1 }, - "UnrealScript": { - "//": 5, - "-": 220, - "class": 18, - "MutU2Weapons": 1, - "extends": 2, - "Mutator": 1, - "config": 18, - "(": 189, - "U2Weapons": 1, - ")": 189, - ";": 295, - "var": 30, - "string": 25, - "ReplacedWeaponClassNames0": 1, - "ReplacedWeaponClassNames1": 1, - "ReplacedWeaponClassNames2": 1, - "ReplacedWeaponClassNames3": 1, - "ReplacedWeaponClassNames4": 1, - "ReplacedWeaponClassNames5": 1, - "ReplacedWeaponClassNames6": 1, - "ReplacedWeaponClassNames7": 1, - "ReplacedWeaponClassNames8": 1, - "ReplacedWeaponClassNames9": 1, - "ReplacedWeaponClassNames10": 1, - "ReplacedWeaponClassNames11": 1, - "ReplacedWeaponClassNames12": 1, - "bool": 18, - "bConfigUseU2Weapon0": 1, - "bConfigUseU2Weapon1": 1, - "bConfigUseU2Weapon2": 1, - "bConfigUseU2Weapon3": 1, - "bConfigUseU2Weapon4": 1, - "bConfigUseU2Weapon5": 1, - "bConfigUseU2Weapon6": 1, - "bConfigUseU2Weapon7": 1, - "bConfigUseU2Weapon8": 1, - "bConfigUseU2Weapon9": 1, - "bConfigUseU2Weapon10": 1, - "bConfigUseU2Weapon11": 1, - "bConfigUseU2Weapon12": 1, - "//var": 8, - "byte": 4, - "bUseU2Weapon": 1, - "[": 125, - "]": 125, - "": 7, - "ReplacedWeaponClasses": 3, - "": 2, - "ReplacedWeaponPickupClasses": 1, - "": 3, - "ReplacedAmmoPickupClasses": 1, - "U2WeaponClasses": 2, - "//GE": 17, - "For": 3, - "default": 12, - "properties": 3, - "ONLY": 3, - "U2WeaponPickupClassNames": 1, - "U2AmmoPickupClassNames": 2, - "bIsVehicle": 4, - "bNotVehicle": 3, - "localized": 2, - "U2WeaponDisplayText": 1, - "U2WeaponDescText": 1, - "GUISelectOptions": 1, - "int": 10, - "FirePowerMode": 1, - "bExperimental": 3, - "bUseFieldGenerator": 2, - "bUseProximitySensor": 2, - "bIntegrateShieldReward": 2, - "IterationNum": 8, - "Weapons.Length": 1, - "const": 1, - "DamageMultiplier": 28, - "DamagePercentage": 3, - "bUseXMPFeel": 4, - "FlashbangModeString": 1, - "struct": 1, - "WeaponInfo": 2, - "{": 28, - "ReplacedWeaponClass": 1, - "Generated": 4, - "from": 6, - "ReplacedWeaponClassName.": 2, - "This": 3, - "is": 6, - "what": 1, - "we": 3, - "replace.": 1, - "ReplacedWeaponPickupClass": 1, - "UNUSED": 1, - "ReplacedAmmoPickupClass": 1, - "WeaponClass": 1, - "the": 31, - "weapon": 10, - "are": 1, - "going": 1, - "to": 4, - "put": 1, - "inside": 1, - "world.": 1, - "WeaponPickupClassName": 1, - "WeponClass.": 1, - "AmmoPickupClassName": 1, - "WeaponClass.": 1, - "bEnabled": 1, - "Structs": 1, - "can": 2, - "d": 1, - "thus": 1, - "still": 1, - "require": 1, - "bConfigUseU2WeaponX": 1, - "indicates": 1, - "that": 3, - "spawns": 1, - "a": 2, - "vehicle": 3, - "deployable": 1, - "turrets": 1, + "Idris": { + "module": 1, + "Prelude.Char": 1, + "import": 1, + "Builtins": 1, + "isUpper": 4, + "Char": 13, + "-": 8, + "Bool": 8, + "x": 36, + "&&": 3, + "<=>": 3, + "Z": 1, + "isLower": 4, + "z": 1, + "isAlpha": 3, + "||": 9, + "isDigit": 3, + "(": 8, + "9": 1, + "isAlphaNum": 2, + "isSpace": 2, + "isNL": 2, + "toUpper": 3, + "if": 2, + ")": 7, + "then": 2, + "prim__intToChar": 2, + "prim__charToInt": 2, + "else": 2, + "toLower": 2, + "+": 1, + "isHexDigit": 2, + "elem": 1, + "hexChars": 3, + "where": 1, + "List": 1, + "[": 1, + "]": 1 + }, + "PureScript": { + "module": 4, + "Control.Arrow": 1, + "where": 20, + "import": 32, + "Data.Tuple": 3, + "class": 4, + "Arrow": 5, + "a": 46, + "arr": 10, + "forall": 26, + "b": 49, + "c.": 3, + "(": 111, + "-": 88, + "c": 17, + ")": 115, + "first": 4, + "d.": 2, + "Tuple": 21, + "d": 6, + "instance": 12, + "arrowFunction": 1, + "f": 28, + "second": 3, + "Category": 3, + "swap": 4, + "b.": 1, + "x": 26, + "y": 2, + "infixr": 3, + "***": 2, + "&&": 3, + "&": 3, ".": 2, - "These": 1, - "only": 2, - "work": 1, - "in": 4, - "gametypes": 1, - "duh.": 1, - "Opposite": 1, - "of": 1, - "works": 1, - "non": 1, - "gametypes.": 2, - "Think": 1, - "shotgun.": 1, - "}": 27, - "Weapons": 31, - "function": 5, - "PostBeginPlay": 1, - "local": 8, - "FireMode": 8, - "x": 65, - "//local": 3, - "ReplacedWeaponPickupClassName": 1, - "//IterationNum": 1, - "ArrayCount": 2, - "Level.Game.bAllowVehicles": 4, - "He": 1, - "he": 1, - "neat": 1, - "way": 1, - "get": 1, - "required": 1, - "number.": 1, - "for": 11, - "<": 9, - "+": 18, - ".bEnabled": 3, - "GetPropertyText": 5, - "needed": 1, - "use": 1, + "g": 4, + "ArrowZero": 1, + "zeroArrow": 1, + "<+>": 2, + "ArrowPlus": 1, + "Data.Foreign": 2, + "Foreign": 12, + "..": 1, + "ForeignParser": 29, + "parseForeign": 6, + "parseJSON": 3, + "ReadForeign": 11, + "read": 10, + "prop": 3, + "Prelude": 3, + "Data.Array": 3, + "Data.Either": 1, + "Data.Maybe": 3, + "Data.Traversable": 2, + "foreign": 6, + "data": 3, + "*": 1, + "fromString": 2, + "String": 13, + "Either": 6, + "readPrimType": 5, + "a.": 6, + "readMaybeImpl": 2, + "Maybe": 5, + "readPropImpl": 2, + "showForeignImpl": 2, + "showForeign": 1, + "Prelude.Show": 1, + "show": 5, + "p": 11, + "json": 2, + "monadForeignParser": 1, + "Prelude.Monad": 1, + "return": 6, + "_": 7, + "Right": 9, + "case": 9, + "of": 9, + "Left": 8, + "err": 8, + "applicativeForeignParser": 1, + "Prelude.Applicative": 1, + "pure": 1, + "<*>": 2, + "<$>": 8, + "functorForeignParser": 1, + "Prelude.Functor": 1, + "readString": 1, + "readNumber": 1, + "Number": 1, + "readBoolean": 1, + "Boolean": 1, + "readArray": 1, + "[": 5, + "]": 5, + "let": 4, + "arrayItem": 2, + "i": 2, + "result": 4, + "+": 30, + "in": 2, + "xs": 3, + "traverse": 2, + "zip": 1, + "range": 1, + "length": 3, + "readMaybe": 1, + "<<": 4, + "<": 13, + "Just": 7, + "Nothing": 7, + "ReactiveJQueryTest": 1, + "flip": 2, + "Control.Monad": 1, + "Control.Monad.Eff": 1, + "Control.Monad.JQuery": 1, + "Control.Reactive": 1, + "Control.Reactive.JQuery": 1, + "map": 8, + "head": 2, + "Data.Foldable": 2, + "Data.Monoid": 1, + "Debug.Trace": 1, + "Global": 1, + "parseInt": 1, + "main": 1, + "do": 4, + "personDemo": 2, + "todoListDemo": 1, + "greet": 1, + "firstName": 2, + "lastName": 2, + "Create": 3, + "new": 1, + "reactive": 1, "variables": 1, + "to": 3, + "hold": 1, + "the": 3, + "user": 1, + "readRArray": 1, + "insertRArray": 1, + "{": 25, + "text": 5, + "completed": 2, + "}": 26, + "paragraph": 2, + "display": 2, + "next": 1, + "task": 4, + "nextTaskLabel": 3, + "create": 2, + "append": 2, + "nextTask": 2, + "toComputedArray": 2, + "toComputed": 2, + "bindTextOneWay": 2, + "counter": 3, + "counterLabel": 3, + "rs": 2, + "cs": 2, + "<->": 1, + "if": 1, + "then": 1, + "else": 1, + "entry": 1, + "entry.completed": 1, + "foldl": 4, + "Data.Map": 1, + "Map": 26, + "empty": 6, + "singleton": 5, + "insert": 10, + "lookup": 8, + "delete": 9, + "alter": 8, + "toList": 10, + "fromList": 3, + "union": 3, + "qualified": 1, + "as": 1, + "P": 1, + "concat": 3, + "k": 108, + "v": 57, + "Leaf": 15, + "|": 9, + "Branch": 27, + "key": 13, + "value": 8, + "left": 15, + "right": 14, + "eqMap": 1, + "P.Eq": 11, + "m1": 6, + "m2": 6, + "P.": 11, + "/": 1, + "P.not": 1, + "showMap": 1, + "P.Show": 3, + "m": 6, + "P.show": 1, + "v.": 11, + "P.Ord": 9, + "b@": 6, + "k1": 16, + "b.left": 9, + "b.right": 8, + "findMinKey": 5, + "glue": 4, + "minKey": 3, + "root": 2, + "b.key": 1, + "b.value": 2, + "v1": 3, + "v2.": 1, + "v2": 2 +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method + }, + "NetLogo": { + "patches": 7, + "-": 28, + "own": 1, + "[": 17, + "living": 6, + ";": 12, + "indicates": 1, + "if": 2, + "the": 6, + "cell": 10, + "is": 1, + "live": 4, + "neighbors": 5, + "counts": 1, + "how": 1, + "many": 1, + "neighboring": 1, + "cells": 2, + "are": 1, + "alive": 1, + "]": 17, + "to": 6, + "setup": 2, + "blank": 1, + "clear": 2, + "all": 5, + "ask": 6, + "death": 5, + "reset": 2, + "ticks": 2, + "end": 6, + "random": 2, + "ifelse": 3, + "float": 1, + "<": 1, + "initial": 1, + "density": 1, + "birth": 4, + "set": 5, + "true": 1, + "pcolor": 2, + "fgcolor": 1, + "false": 1, + "bgcolor": 1, + "go": 1, + "count": 1, + "with": 2, + "Starting": 1, + "a": 1, + "new": 1, + "here": 1, + "ensures": 1, + "that": 1, + "finish": 1, + "executing": 2, + "first": 1, + "before": 1, + "any": 1, + "of": 2, + "them": 1, + "start": 1, + "second": 1, + "ask.": 1, + "This": 1, + "keeps": 1, + "in": 2, + "synch": 1, + "each": 2, + "other": 1, + "so": 1, + "births": 1, + "and": 1, + "deaths": 1, + "at": 1, + "generation": 1, + "happen": 1, + "lockstep.": 1, + "tick": 1, + "draw": 1, + "let": 1, + "erasing": 2, + "patch": 2, + "mouse": 5, + "xcor": 2, + "ycor": 2, + "while": 1, + "down": 1, + "display": 1 + }, + "Eagle": { + "": 2, + "version=": 4, + "encoding=": 2, + "": 2, + "eagle": 4, + "SYSTEM": 2, + "dtd": 2, + "": 2, + "": 2, + "": 2, + "": 4, + "alwaysvectorfont=": 2, + "verticaltext=": 2, + "": 2, + "": 2, + "distance=": 2, + "unitdist=": 2, + "unit=": 2, + "style=": 2, + "multiple=": 2, + "display=": 2, + "altdistance=": 2, + "altunitdist=": 2, + "altunit=": 2, + "": 2, + "": 118, + "number=": 119, + "name=": 447, + "color=": 118, + "fill=": 118, + "visible=": 118, + "active=": 125, + "": 2, + "": 1, + "": 1, + "": 497, + "x1=": 630, + "y1=": 630, + "x2=": 630, + "y2=": 630, + "width=": 512, + "layer=": 822, + "": 1, + "": 2, + "": 4, + "": 60, + "&": 5501, + "lt": 2665, + ";": 5567, + "b": 64, + "gt": 2770, + "Resistors": 2, + "Capacitors": 4, + "Inductors": 2, + "/b": 64, + "p": 65, + "Based": 2, + "on": 2, + "the": 5, + "previous": 2, + "libraries": 2, + "ul": 2, + "li": 12, + "r.lbr": 2, + "cap.lbr": 2, + "cap": 2, + "-": 768, + "fe.lbr": 2, + "captant.lbr": 2, + "polcap.lbr": 2, + "ipc": 2, + "smd.lbr": 2, + "/ul": 2, + "All": 2, + "SMD": 4, + "packages": 2, + "are": 2, + "defined": 2, + "according": 2, + "to": 3, + "IPC": 2, + "specifications": 2, + "and": 5, + "CECC": 2, + "author": 3, + "Created": 3, + "by": 3, + "librarian@cadsoft.de": 3, + "/author": 3, + "for": 5, + "Electrolyt": 2, + "see": 4, + "also": 2, + "www.bccomponents.com": 2, + "www.panasonic.com": 2, + "www.kemet.com": 2, + "http": 4, + "//www.secc.co.jp/pdf/os_e/2004/e_os_all.pdf": 2, + "(": 4, + "SANYO": 2, + ")": 4, + "trimmer": 2, + "refence": 2, + "u": 2, + "www.electrospec": 2, + "inc.com/cross_references/trimpotcrossref.asp": 2, + "/u": 2, + "table": 2, + "border": 2, + "cellspacing": 2, + "cellpadding": 2, + "width": 6, + "cellpaddding": 2, + "tr": 2, + "valign": 2, + "td": 4, + "amp": 66, + "nbsp": 66, + "/td": 4, + "font": 2, + "color": 20, + "size": 2, + "TRIM": 4, + "POT": 4, + "CROSS": 4, + "REFERENCE": 4, + "/font": 2, + "P": 128, + "TABLE": 4, + "BORDER": 4, + "CELLSPACING": 4, + "CELLPADDING": 4, + "TR": 36, + "TD": 170, + "COLSPAN": 16, + "FONT": 166, + "SIZE": 166, + "FACE": 166, + "ARIAL": 166, + "B": 106, + "RECTANGULAR": 2, + "MULTI": 6, + "TURN": 10, + "/B": 90, + "/FONT": 166, + "/TD": 170, + "/TR": 36, + "ALIGN": 124, + "CENTER": 124, + "BOURNS": 6, + "BI": 10, + "TECH": 10, + "DALE": 10, + "VISHAY": 10, + "PHILIPS/MEPCO": 10, + "MURATA": 6, + "PANASONIC": 10, + "SPECTROL": 6, + "MILSPEC": 6, + "BGCOLOR": 76, + "BR": 1478, + "W": 92, + "Y": 36, + "J": 12, + "L": 18, + "X": 82, + "PH": 2, + "XH": 2, + "SLT": 2, + "ALT": 42, + "T8S": 2, + "T18/784": 2, + "/1897": 2, + "/1880": 2, + "EKP/CT20/RJ": 2, + "RJ": 14, + "EKQ": 4, + "EKR": 4, + "EKJ": 2, + "EKL": 2, + "S": 18, + "EVMCOG": 2, + "T602": 2, + "RT/RTR12": 6, + "RJ/RJR12": 6, + "SQUARE": 2, + "BOURN": 4, + "H": 24, + "Z": 16, + "T63YB": 2, + "T63XB": 2, + "T93Z": 2, + "T93YA": 2, + "T93XA": 2, + "T93YB": 2, + "T93XB": 2, + "EKP": 8, + "EKW": 6, + "EKM": 4, + "EKB": 2, + "EKN": 2, + "P/CT9P": 2, + "P/3106P": 2, + "W/3106W": 2, + "X/3106X": 2, + "Y/3106Y": 2, + "Z/3105Z": 2, + "EVMCBG": 2, + "EVMCCG": 2, + "RT/RTR22": 8, + "RJ/RJR22": 6, + "RT/RTR26": 6, + "RJ/RJR26": 12, + "RT/RTR24": 6, + "RJ/RJR24": 12, + "SINGLE": 4, + "E": 6, + "K": 4, + "T": 10, + "V": 10, + "M": 10, + "R": 6, + "U": 4, + "C": 6, + "F": 4, + "RX": 6, + "PA": 2, + "A": 16, + "XW": 2, + "XL": 2, + "PM": 2, + "PX": 2, + "RXW": 2, + "RXL": 2, + "T7YB": 2, + "T7YA": 2, + "TXD": 2, + "TYA": 2, + "TYP": 2, + "TYD": 2, + "TX": 4, + "SX": 6, + "ET6P": 2, + "ET6S": 2, + "ET6X": 2, + "W/8014EMW": 2, + "P/8014EMP": 2, + "X/8014EMX": 2, + "TM7W": 2, + "TM7P": 2, + "TM7X": 2, + "SMS": 2, + "SMB": 2, + "SMA": 2, + "CT": 12, + "EKV": 2, + "EKX": 2, + "EKZ": 2, + "N": 2, + "RVA0911V304A": 2, + "RVA0911H413A": 2, + "RVG0707V100A": 2, + "RVA0607V": 2, + "RVA1214H213A": 2, + "EVMQ0G": 4, + "EVMQIG": 2, + "EVMQ3G": 2, + "EVMS0G": 2, + "EVMG0G": 2, + "EVMK4GA00B": 2, + "EVM30GA00B": 2, + "EVMK0GA00B": 2, + "EVM38GA00B": 2, + "EVMB6": 2, + "EVLQ0": 2, + "EVMMSG": 2, + "EVMMBG": 2, + "EVMMAG": 2, + "EVMMCS": 2, + "EVMM1": 2, + "EVMM0": 2, + "EVMM3": 2, + "RJ/RJR50": 6, + "/TABLE": 4, + "TOCOS": 4, + "AUX/KYOCERA": 4, + "G": 10, + "ST63Z": 2, + "ST63Y": 2, + "ST5P": 2, + "ST5W": 2, + "ST5X": 2, + "A/B": 2, + "C/D": 2, + "W/X": 2, + "ST5YL/ST53YL": 2, + "ST5YJ/5T53YJ": 2, + "ST": 14, + "EVM": 8, + "YS": 2, + "D": 2, + "G4B": 2, + "G4A": 2, + "TR04": 2, + "S1": 4, + "TRG04": 2, + "DVR": 2, + "CVR": 4, + "A/C": 2, + "ALTERNATE": 2, + "/tr": 2, + "/table": 2, + "": 60, + "": 4, + "": 53, + "RESISTOR": 52, + "": 64, + "x=": 240, + "y=": 242, + "dx=": 64, + "dy=": 64, + "": 108, + "size=": 114, + "NAME": 52, + "": 108, + "VALUE": 52, + "": 132, + "": 52, + "": 3, + "": 3, + "Pin": 1, + "Header": 1, + "Connectors": 1, + "PIN": 1, + "HEADER": 1, + "": 39, + "drill=": 41, + "shape=": 39, + "ratio=": 41, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "language=": 2, + "EAGLE": 2, + "Design": 5, + "Rules": 5, + "Die": 1, + "Standard": 1, + "sind": 1, + "so": 2, + "gew": 1, + "hlt": 1, + "dass": 1, + "sie": 1, + "f": 1, + "r": 1, + "die": 3, + "meisten": 1, + "Anwendungen": 1, + "passen.": 1, + "Sollte": 1, + "ihre": 1, + "Platine": 1, + "besondere": 1, + "Anforderungen": 1, + "haben": 1, + "treffen": 1, + "Sie": 1, + "erforderlichen": 1, + "Einstellungen": 1, + "hier": 1, + "und": 1, + "speichern": 1, + "unter": 1, + "einem": 1, + "neuen": 1, + "Namen": 1, + "ab.": 1, + "The": 1, + "default": 1, + "have": 2, + "been": 1, + "set": 1, + "cover": 1, + "a": 2, + "wide": 1, + "range": 1, + "of": 1, + "applications.": 1, + "Your": 1, + "particular": 1, + "design": 2, + "may": 1, + "different": 1, + "requirements": 1, + "please": 1, + "make": 1, + "necessary": 1, + "adjustments": 1, + "save": 1, + "your": 1, + "customized": 1, + "rules": 1, + "under": 1, + "new": 1, + "name.": 1, + "": 142, + "value=": 145, + "": 1, + "": 1, + "": 8, + "": 8, + "refer=": 7, + "": 1, + "": 1, + "": 3, + "library=": 3, + "package=": 3, + "smashed=": 3, + "": 6, + "": 3, + "1": 1, + "778": 1, + "16": 1, + "002": 1, + "": 1, + "": 1, + "": 3, + "": 4, + "element=": 4, + "pad=": 4, + "": 1, + "extent=": 1, + "": 3, + "": 2, + "": 8, + "": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "xreflabel=": 1, + "xrefpart=": 1, + "Frames": 1, + "Sheet": 2, + "Layout": 1, + "": 1, + "": 1, + "font=": 4, + "DRAWING_NAME": 1, + "LAST_DATE_TIME": 1, + "SHEET": 1, + "": 1, + "columns=": 1, + "rows=": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "prefix=": 1, + "uservalue=": 1, + "FRAME": 1, + "DIN": 1, + "A4": 1, + "landscape": 1, + "with": 1, + "location": 1, + "doc.": 1, + "field": 1, + "": 1, + "": 1, + "symbol=": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "wave": 10, + "soldering": 10, + "Source": 2, + "//download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf": 2, + "MELF": 8, + "type": 20, + "grid": 20, + "mm": 20, + "curve=": 56, + "": 12, + "radius=": 12 + }, + "Common Lisp": { + ";": 152, + "@file": 1, + "macros": 2, + "-": 161, + "advanced.cl": 1, + "@breif": 1, + "Advanced": 1, + "macro": 5, + "practices": 1, + "defining": 1, + "your": 1, + "own": 1, + "Macro": 1, + "definition": 1, + "skeleton": 1, + "(": 365, + "defmacro": 5, + "name": 6, + "parameter*": 1, + ")": 372, + "body": 8, + "form*": 1, + "Note": 2, + "that": 5, + "backquote": 1, + "expression": 2, + "is": 6, + "most": 2, + "often": 1, + "used": 2, + "in": 23, + "the": 35, + "form": 1, + "primep": 4, + "test": 1, + "a": 7, + "number": 2, + "for": 3, + "prime": 12, + "defun": 23, + "n": 8, + "if": 14, + "<": 1, + "return": 3, + "from": 8, + "do": 9, + "i": 8, + "+": 35, + "p": 10, + "t": 7, + "not": 6, + "zerop": 1, + "mod": 1, + "sqrt": 1, + "when": 4, + "next": 11, + "bigger": 1, + "than": 1, + "specified": 2, + "The": 2, + "recommended": 1, + "procedures": 1, + "to": 4, + "writting": 1, + "new": 6, + "are": 2, + "as": 1, + "follows": 1, + "Write": 2, + "sample": 2, + "call": 2, + "and": 12, + "code": 2, + "it": 2, + "should": 1, + "expand": 1, + "into": 2, + "primes": 3, + "format": 3, + "Expected": 1, + "expanded": 1, + "codes": 1, + "generate": 1, + "hardwritten": 1, + "expansion": 2, + "arguments": 1, + "var": 49, + "range": 4, + "&": 8, + "rest": 5, + "let": 6, + "first": 5, + "start": 5, + "second": 3, + "end": 8, + "third": 2, + "@body": 4, + "More": 1, + "concise": 1, + "implementations": 1, + "with": 7, + "synonym": 1, + "also": 1, + "emits": 1, + "more": 1, + "friendly": 1, + "messages": 1, + "on": 1, + "incorrent": 1, + "input.": 1, + "Test": 1, + "result": 1, + "of": 3, + "macroexpand": 2, + "function": 2, + "gensyms": 4, + "value": 8, + "Define": 1, + "note": 1, + "how": 1, + "comma": 1, + "interpolate": 1, + "loop": 2, + "names": 2, + "collect": 1, + "gensym": 1, + "*": 2, + "lisp": 1, + "package": 1, + "foo": 2, + "Header": 1, + "comment.": 4, + "defvar": 4, + "*foo*": 1, + "eval": 6, + "execute": 1, + "compile": 1, + "toplevel": 2, + "load": 1, + "add": 1, + "x": 47, + "optional": 2, + "y": 2, + "key": 1, + "z": 2, + "declare": 1, + "ignore": 1, + "Inline": 1, + "or": 4, + "#": 15, + "|": 9, + "Multi": 1, + "line": 2, + "b": 6, + "After": 1, + "ESCUELA": 1, + "POLITECNICA": 1, + "SUPERIOR": 1, + "UNIVERSIDAD": 1, + "AUTONOMA": 1, + "DE": 1, + "MADRID": 1, + "INTELIGENCIA": 1, + "ARTIFICIAL": 1, + "Motor": 1, + "de": 2, + "inferencia": 1, + "Basado": 1, + "en": 2, + "parte": 1, + "Peter": 1, + "Norvig": 1, + "Global": 1, + "variables": 6, + "*hypothesis": 1, + "list*": 7, + "*rule": 4, + "*fact": 2, + "Constants": 1, + "defconstant": 2, + "fail": 10, + "nil": 3, + "no": 6, + "bindings": 45, + "lambda": 4, + "mapcar": 2, + "man": 3, + "luis": 1, + "pedro": 1, + "woman": 2, + "mart": 1, + "daniel": 1, + "laura": 1, + "facts": 1, + "aux": 3, + "unify": 12, + "hypothesis": 10, + "list": 9, + "____________________________________________________________________________": 5, + "FUNCTION": 3, + "FIND": 1, + "RULES": 2, + "COMMENTS": 3, + "Returns": 2, + "rules": 5, + "whose": 1, + "THENs": 1, + "term": 1, + "given": 3, + "": 2, + "satisfy": 1, + "this": 1, + "requirement": 1, + "renamed.": 1, + "EXAMPLES": 2, + "setq": 1, + "renamed": 3, + "rule": 17, + "rename": 1, + "then": 7, + "unless": 3, + "null": 1, + "equal": 4, + "VALUE": 1, + "FROM": 1, + "all": 2, + "solutions": 1, + "found": 5, + "using": 1, + "": 1, + ".": 10, + "single": 1, + "can": 4, + "have": 1, + "multiple": 1, + "solutions.": 1, + "mapcan": 1, + "R1": 2, + "pertenece": 3, + "E": 4, + "_": 8, + "R2": 2, + "Xs": 2, + "Then": 1, + "EVAL": 2, + "RULE": 2, + "PERTENECE": 6, + "E.42": 2, + "returns": 4, + "NIL": 3, + "That": 2, + "query": 4, + "be": 2, + "proven": 2, + "binding": 17, + "necessary": 2, + "fact": 4, + "has": 1, + "On": 1, + "other": 1, + "hand": 1, + "E.49": 2, + "XS.50": 2, + "R2.": 1, + "ifs": 1, + "NOT": 2, + "question": 1, + "T": 1, + "equality": 2, + "UNIFY": 1, + "Finds": 1, + "general": 1, + "unifier": 1, + "two": 2, + "input": 2, + "expressions": 2, + "taking": 1, + "account": 1, + "": 1, + "In": 1, + "case": 1, + "total": 1, + "unification.": 1, + "Otherwise": 1, + "which": 1, + "constant": 1, + "anonymous": 4, + "make": 4, + "variable": 6, + "Auxiliary": 1, + "Functions": 1, + "cond": 3, + "get": 5, + "lookup": 5, + "occurs": 5, + "extend": 2, + "symbolp": 2, + "eql": 2, + "char": 2, + "symbol": 2, + "assoc": 1, + "car": 2, + "val": 6, + "cdr": 2, + "cons": 2, + "append": 1, + "eq": 7, + "consp": 2, + "subst": 3, + "listp": 1, + "exp": 1, + "unique": 3, + "find": 6, + "anywhere": 6, + "predicate": 8, + "tree": 11, + "so": 4, + "far": 4, + "atom": 3, + "funcall": 2, + "pushnew": 1, + "gentemp": 2, + "quote": 3, + "s/reuse": 1, + "cons/cons": 1, + "expresion": 2, + "some": 1, + "EOF": 1 + }, + "Parrot Internal Representation": { + "SHEBANG#!parrot": 1, + ".sub": 1, + "main": 1, + "say": 1, + ".end": 1 + }, + "Objective-C++": { + "#import": 3, + "": 1, + "": 1, + "#if": 10, + "#ifdef": 6, + "OODEBUG": 1, + "#define": 1, + "OODEBUG_SQL": 4, + "#endif": 19, + "OOOODatabase": 1, + "OODB": 1, + ";": 494, + "static": 16, + "NSString": 25, + "*kOOObject": 1, + "@": 28, + "*kOOInsert": 1, + "*kOOUpdate": 1, + "*kOOExecSQL": 1, + "#pragma": 5, + "mark": 5, + "OORecord": 3, + "abstract": 1, + "superclass": 1, + "for": 14, + "records": 1, + "@implementation": 7, + "+": 55, + "(": 612, + "id": 19, + ")": 610, + "record": 18, + "OO_AUTORETURNS": 2, + "{": 151, + "return": 149, + "OO_AUTORELEASE": 3, + "[": 268, + "self": 70, + "alloc": 11, + "]": 266, + "init": 4, + "}": 148, + "insert": 7, + "*record": 4, + "insertWithParent": 1, + "parent": 10, + "OODatabase": 26, + "sharedInstance": 37, + "copyJoinKeysFrom": 1, + "to": 6, + "-": 175, + "delete": 4, + "void": 18, + "update": 4, + "indate": 4, + "upsert": 4, + "int": 36, + "commit": 6, + "rollback": 5, + "setNilValueForKey": 1, + "*": 34, + "key": 2, + "OOReference": 2, + "": 1, + "zeroForNull": 4, + "if": 104, + "NSNumber": 4, + "numberWithInt": 1, + "setValue": 1, + "forKey": 1, + "OOArray": 16, + "": 14, + "select": 21, + "nil": 25, + "intoClass": 11, + "joinFrom": 10, + "cOOString": 15, + "sql": 21, + "selectRecordsRelatedTo": 1, + "class": 14, + "importFrom": 1, + "OOFile": 4, + "&": 21, + "file": 2, + "delimiter": 4, + "delim": 4, + "rows": 2, + "OOMetaData": 21, + "import": 1, + "file.string": 1, + "insertArray": 3, + "BOOL": 11, + "exportTo": 1, + "file.save": 1, + "export": 1, + "bindToView": 1, + "OOView": 2, + "view": 28, + "delegate": 4, + "bindRecord": 1, + "toView": 1, + "updateFromView": 1, + "updateRecord": 1, + "fromView": 3, + "description": 6, + "*metaData": 14, + "metaDataForClass": 3, + "//": 7, + "hack": 1, + "required": 2, + "where": 1, + "contains": 1, + "a": 9, + "field": 1, + "avoid": 1, + "recursion": 1, + "OOStringArray": 6, + "ivars": 5, + "<<": 2, + "metaData": 26, + "encode": 3, + "dictionaryWithValuesForKeys": 3, + "@end": 14, + "OOAdaptor": 6, + "all": 3, + "methods": 1, + "by": 1, + "objsql": 1, + "access": 2, + "database": 12, + "@interface": 6, + "NSObject": 1, + "sqlite3": 1, + "*db": 1, + "sqlite3_stmt": 1, + "*stmt": 1, + "struct": 5, + "_str_link": 5, + "*next": 2, + "char": 9, + "str": 7, + "*strs": 1, + "OO_UNSAFE": 1, + "*owner": 3, + "initPath": 5, + "path": 9, + "prepare": 4, + "bindCols": 5, + "cOOStringArray": 3, + "columns": 7, + "values": 29, + "cOOValueDictionary": 2, + "startingAt": 5, + "pno": 13, + "bindNulls": 8, + "bindResultsIntoInstancesOfClass": 4, + "Class": 9, + "recordClass": 16, + "sqlite_int64": 2, + "lastInsertRowID": 2, + "NSData": 3, + "OOExtras": 9, + "initWithDescription": 1, + "is": 2, + "the": 5, + "low": 1, + "level": 1, + "interface": 1, + "particular": 2, + "": 1, + "sharedInstanceForPath": 2, + "OODocument": 1, + ".path": 1, + "OONil": 1, + "OO_RELEASE": 6, + "exec": 10, + "fmt": 9, + "...": 3, + "va_list": 3, + "argp": 12, + "va_start": 3, + "*sql": 5, + "initWithFormat": 3, + "arguments": 3, + "va_end": 3, + "const": 16, + "objects": 4, + "deleteArray": 2, + "object": 13, + "commitTransaction": 3, + "super": 3, + "adaptor": 1, + "registerSubclassesOf": 1, + "recordSuperClass": 2, + "numClasses": 5, + "objc_getClassList": 2, + "NULL": 4, + "*classes": 2, + "malloc": 2, + "sizeof": 2, + "": 1, + "viewClasses": 4, + "classNames": 4, + "scan": 1, + "registered": 2, + "classes": 12, + "relevant": 1, + "subclasses": 1, + "c": 14, + "<": 5, + "superClass": 5, + "class_getName": 4, + "while": 4, + "class_getSuperclass": 1, + "respondsToSelector": 2, + "@selector": 4, + "ooTableSql": 1, + "else": 11, + "tableMetaDataForClass": 8, + "break": 6, + "delay": 1, + "creation": 1, + "views": 1, + "until": 1, + "after": 1, + "tables": 1, + "": 1, + "in": 9, + "order": 1, + "free": 3, + "Register": 1, + "list": 1, + "of": 2, + "before": 1, + "using": 2, + "them": 2, + "so": 2, + "can": 1, + "determine": 1, + "relationships": 1, + "between": 1, + "registerTableClassesNamed": 1, + "tableClass": 2, + "NSBundle": 1, + "mainBundle": 1, + "classNamed": 1, + "Send": 1, + "any": 2, + "SQL": 1, + "Sql": 1, + "format": 1, + "string": 1, + "escape": 1, + "characters": 3, + "Any": 1, + "results": 3, + "returned": 1, + "are": 1, + "placed": 1, + "as": 1, "an": 1, "array": 2, - "like": 1, - "fashion.": 1, - "//bUseU2Weapon": 1, - ".ReplacedWeaponClass": 5, - "DynamicLoadObject": 2, - "//ReplacedWeaponClasses": 1, - "//ReplacedWeaponPickupClassName": 1, - ".default.PickupClass": 1, - "if": 55, - ".ReplacedWeaponClass.default.FireModeClass": 4, - "None": 10, - "&&": 15, - ".default.AmmoClass": 1, - ".default.AmmoClass.default.PickupClass": 2, - ".ReplacedAmmoPickupClass": 2, - "break": 1, - ".WeaponClass": 7, - ".WeaponPickupClassName": 1, - ".WeaponClass.default.PickupClass": 1, - ".AmmoPickupClassName": 2, - ".bIsVehicle": 2, - ".bNotVehicle": 2, - "Super.PostBeginPlay": 1, - "ValidReplacement": 6, - "return": 47, - "CheckReplacement": 1, - "Actor": 1, - "Other": 23, - "out": 2, - "bSuperRelevant": 3, - "i": 12, - "WeaponLocker": 3, - "L": 2, - "xWeaponBase": 3, - ".WeaponType": 2, - "false": 3, - "true": 5, - "Weapon": 1, - "Other.IsA": 2, - "Other.Class": 2, - "Ammo": 1, - "ReplaceWith": 1, - "L.Weapons.Length": 1, - "L.Weapons": 2, - "//STARTING": 1, - "WEAPON": 1, - "xPawn": 6, - ".RequiredEquipment": 3, - "True": 2, - "Special": 1, - "handling": 1, - "Shield": 2, - "Reward": 2, - "integration": 1, - "ShieldPack": 7, - ".SetStaticMesh": 1, - "StaticMesh": 1, - ".Skins": 1, - "Shader": 2, - ".RepSkin": 1, - ".SetDrawScale": 1, - ".SetCollisionSize": 1, - ".PickupMessage": 1, - ".PickupSound": 1, - "Sound": 1, - "Super.CheckReplacement": 1, - "GetInventoryClassOverride": 1, - "InventoryClassName": 3, - "Super.GetInventoryClassOverride": 1, - "static": 2, - "FillPlayInfo": 1, - "PlayInfo": 3, - "": 1, - "Recs": 4, - "WeaponOptions": 17, - "Super.FillPlayInfo": 1, - ".static.GetWeaponList": 1, - "Recs.Length": 1, - ".ClassName": 1, - ".FriendlyName": 1, - "PlayInfo.AddSetting": 33, - "default.RulesGroup": 33, - "default.U2WeaponDisplayText": 33, - "event": 3, - "GetDescriptionText": 1, - "PropName": 35, - "default.U2WeaponDescText": 33, - "Super.GetDescriptionText": 1, - "PreBeginPlay": 1, - "float": 3, - "k": 29, - "Multiplier.": 1, - "Super.PreBeginPlay": 1, - "/100.0": 1, - "//log": 1, - "@k": 1, - "//Sets": 1, - "various": 1, - "settings": 1, - "match": 1, - "different": 1, - "games": 1, - ".default.DamagePercentage": 1, - "//Original": 1, - "U2": 3, - "compensate": 1, - "division": 1, - "errors": 1, - "Class": 105, - ".default.DamageMin": 12, - "*": 54, - ".default.DamageMax": 12, - ".default.Damage": 27, - ".default.myDamage": 4, - "//Dampened": 1, - "already": 1, - "no": 2, - "need": 1, - "rewrite": 1, - "else": 1, - "//General": 2, - "XMP": 4, - ".default.Spread": 1, - ".default.MaxAmmo": 7, - ".default.Speed": 8, - ".default.MomentumTransfer": 4, - ".default.ClipSize": 4, - ".default.FireLastReloadTime": 3, - ".default.DamageRadius": 4, - ".default.LifeSpan": 4, - ".default.ShakeRadius": 1, - ".default.ShakeMagnitude": 1, - ".default.MaxSpeed": 5, - ".default.FireRate": 3, - ".default.ReloadTime": 3, - "//3200": 1, - "too": 1, - "much": 1, - ".default.VehicleDamageScaling": 2, - "*k": 28, - "//Experimental": 1, - "options": 1, - "lets": 1, - "you": 2, - "Unuse": 1, - "EMPimp": 1, - "projectile": 1, - "and": 3, - "fire": 1, - "two": 1, - "CAR": 1, - "barrels": 1, - "//CAR": 1, - "nothing": 1, - "U2Weapons.U2AssaultRifleFire": 1, - "U2Weapons.U2AssaultRifleAltFire": 1, - "U2ProjectileConcussionGrenade": 1, - "U2Weapons.U2AssaultRifleInv": 1, - "U2Weapons.U2WeaponEnergyRifle": 1, - "U2Weapons.U2WeaponFlameThrower": 1, - "U2Weapons.U2WeaponPistol": 1, - "U2Weapons.U2AutoTurretDeploy": 1, - "U2Weapons.U2WeaponRocketLauncher": 1, - "U2Weapons.U2WeaponGrenadeLauncher": 1, - "U2Weapons.U2WeaponSniper": 2, - "U2Weapons.U2WeaponRocketTurret": 1, - "U2Weapons.U2WeaponLandMine": 1, - "U2Weapons.U2WeaponLaserTripMine": 1, - "U2Weapons.U2WeaponShotgun": 1, - "s": 7, - "Minigun.": 1, - "Enable": 5, - "Shock": 1, - "Lance": 1, - "Energy": 2, - "Rifle": 3, - "What": 7, - "should": 7, - "be": 8, - "replaced": 8, - "with": 9, - "Rifle.": 3, - "By": 7, - "it": 7, - "Bio": 1, - "Magnum": 2, - "Pistol": 1, - "Pistol.": 1, - "Onslaught": 1, - "Grenade": 1, - "Launcher.": 2, - "Shark": 2, - "Rocket": 4, - "Launcher": 1, - "Flak": 1, - "Cannon.": 1, - "Should": 1, - "Lightning": 1, - "Gun": 2, - "Widowmaker": 2, - "Sniper": 3, - "Classic": 1, - "here.": 1, - "Turret": 2, - "delpoyable": 1, - "deployable.": 1, - "Redeemer.": 1, - "Laser": 2, - "Trip": 2, - "Mine": 1, - "Mine.": 1, - "t": 2, - "replace": 1, - "Link": 1, - "matches": 1, - "vehicles.": 1, - "Crowd": 1, - "Pleaser": 1, - "Shotgun.": 1, - "have": 1, - "shields": 1, - "or": 2, - "damage": 1, - "filtering.": 1, - "If": 1, - "checked": 1, - "mutator": 1, - "produces": 1, - "Unreal": 4, - "II": 4, - "shield": 1, - "pickups.": 1, - "Choose": 1, - "between": 2, - "white": 1, - "overlay": 3, - "depending": 2, - "on": 2, - "player": 2, - "view": 1, - "style": 1, - "distance": 1, - "foolproof": 1, - "FM_DistanceBased": 1, - "Arena": 1, - "Add": 1, - "weapons": 1, - "other": 1, - "Fully": 1, - "customisable": 1, - "choose": 1, - "behaviour.": 1, - "US3HelloWorld": 1, - "GameInfo": 1, - "InitGame": 1, - "Options": 1, - "Error": 1, - "log": 1, - "defaultproperties": 1 - }, - "VCL": { - "sub": 23, - "vcl_recv": 2, - "{": 50, - "if": 14, - "(": 50, - "req.request": 18, - "&&": 14, - ")": 50, - "return": 33, - "pipe": 4, - ";": 48, - "}": 50, - "pass": 9, - "req.http.Authorization": 2, - "||": 4, - "req.http.Cookie": 2, - "lookup": 2, - "vcl_pipe": 2, - "vcl_pass": 2, - "vcl_hash": 2, - "set": 10, - "req.hash": 3, - "+": 17, - "req.url": 2, - "req.http.host": 4, - "else": 3, - "server.ip": 2, - "hash": 2, - "vcl_hit": 2, - "obj.cacheable": 2, - "deliver": 8, - "vcl_miss": 2, - "fetch": 3, - "vcl_fetch": 2, - "obj.http.Set": 1, - "-": 21, - "Cookie": 2, - "obj.prefetch": 1, - "s": 3, - "vcl_deliver": 2, - "vcl_discard": 1, - "discard": 2, - "vcl_prefetch": 1, - "vcl_timeout": 1, - "vcl_error": 2, - "obj.http.Content": 2, - "Type": 2, - "synthetic": 2, - "utf": 2, - "//W3C//DTD": 2, - "XHTML": 2, - "Strict//EN": 2, - "http": 3, - "//www.w3.org/TR/xhtml1/DTD/xhtml1": 2, - "strict.dtd": 2, - "obj.status": 4, - "obj.response": 6, - "req.xid": 2, - "//www.varnish": 1, - "cache.org/": 1, - "req.restarts": 1, - "req.http.x": 1, - "forwarded": 1, - "for": 1, - "req.http.X": 3, - "Forwarded": 3, - "For": 3, - "client.ip": 2, - "hash_data": 3, - "beresp.ttl": 2, - "<": 1, - "beresp.http.Set": 1, - "beresp.http.Vary": 1, - "hit_for_pass": 1, - "obj.http.Retry": 1, - "After": 1, - "vcl_init": 1, - "ok": 2, - "vcl_fini": 1 + "dictionary": 1, + "results.": 1, + "*/": 1, + "errcode": 12, + "OOString": 6, + "stringForSql": 2, + "&&": 12, + "*aColumnName": 1, + "**results": 1, + "allKeys": 1, + "objectAtIndex": 1, + "OOValueDictionary": 5, + "joinValues": 4, + "sharedColumns": 5, + "*parentMetaData": 1, + "parentMetaData": 2, + "naturalJoinTo": 1, + "joinableColumns": 1, + "whereClauseFor": 2, + "qualifyNulls": 2, + "NO": 3, + "ooOrderBy": 2, + "OOFormat": 5, + "NSLog": 4, + "*joinValues": 1, + "*adaptor": 7, + "||": 18, + "": 1, + "tablesRelatedByNaturalJoinFrom": 1, + "tablesWithNaturalJoin": 5, + "i": 29, + "**tablesWithNaturalJoin": 1, + "*childMetaData": 1, + "tableMetaDataByClassName": 3, + "prepareSql": 1, + "toTable": 1, + "childMetaData": 1, + "OODictionary": 2, + "": 1, + "tmpResults": 1, + "kOOExecSQL": 1, + "*exec": 2, + "OOWarn": 9, + "errmsg": 5, + "continue": 3, + "OORef": 2, + "": 1, + "*values": 3, + "kOOObject": 3, + "isInsert": 4, + "kOOInsert": 1, + "isUpdate": 5, + "kOOUpdate": 2, + "newValues": 3, + "changedCols": 4, + "*name": 4, + "*newValues": 1, + "name": 9, + "isEqual": 1, + "tableName": 4, + "columns/": 1, + "nchanged": 4, + "*object": 1, + "lastSQL": 4, + "**changedCols": 1, + "quote": 2, + "commaQuote": 2, + "": 1, + "YES": 6, + "commited": 2, + "updateCount": 2, + "transaction": 2, + "updated": 2, + "NSMutableDictionary": 1, + "*d": 1, + "*transaction": 1, + "d": 2, + "": 1, + "#ifndef": 3, + "OO_ARC": 1, + "boxed": 1, + "valueForKey": 1, + "pointerValue": 1, + "setValuesForKeysWithDictionary": 2, + "decode": 2, + "count": 1, + "className": 3, + "createTableSQL": 2, + "*idx": 1, + "indexes": 1, + "idx": 2, + "implements": 1, + "owner": 15, + ".directory": 1, + ".mkdir": 1, + "sqlite3_open": 1, + "db": 8, + "SQLITE_OK": 6, + "*path": 1, + "sqlite3_prepare_v2": 1, + "stmt": 20, + "sqlite3_errmsg": 3, + "bindValue": 2, + "value": 26, + "asParameter": 2, + "OODEBUG_BIND": 1, + "OONull": 3, + "sqlite3_bind_null": 1, + "OOSQL_THREAD_SAFE_BUT_USES_MORE_MEMORY": 1, + "isKindOfClass": 3, + "sqlite3_bind_text": 2, + "UTF8String": 1, + "SQLITE_STATIC": 3, + "#else": 1, + "len": 4, + "lengthOfBytesUsingEncoding": 1, + "NSUTF8StringEncoding": 3, + "*str": 2, + "next": 3, + "strs": 6, + "getCString": 1, + "maxLength": 1, + "encoding": 2, + "sqlite3_bind_blob": 1, + "bytes": 5, + "length": 4, + "*type": 1, + "objCType": 1, + "type": 10, + "switch": 4, + "case": 25, + "sqlite3_bind_int": 1, + "intValue": 3, + "sqlite3_bind_int64": 1, + "longLongValue": 1, + "sqlite3_bind_double": 1, + "doubleValue": 1, + "*columns": 1, + "valuesForNextRow": 2, + "ncols": 2, + "sqlite3_column_count": 1, + "sqlite3_column_name": 1, + "sqlite3_column_type": 2, + "SQLITE_NULL": 1, + "SQLITE_INTEGER": 1, + "initWithLongLong": 1, + "sqlite3_column_int64": 1, + "SQLITE_FLOAT": 1, + "initWithDouble": 1, + "sqlite3_column_double": 1, + "SQLITE_TEXT": 1, + "unsigned": 2, + "*bytes": 2, + "sqlite3_column_text": 1, + "NSMutableString": 1, + "initWithBytes": 2, + "sqlite3_column_bytes": 2, + "SQLITE_BLOB": 1, + "sqlite3_column_blob": 1, + "default": 3, + "out": 4, + "awakeFromDB": 4, + "instancesRespondToSelector": 1, + "sqlite3_step": 1, + "SQLITE_ROW": 1, + "SQLITE_DONE": 1, + "out.alloc": 1, + "sqlite3_changes": 1, + "sqlite3_finalize": 1, + "sqlite3_last_insert_rowid": 1, + "dealloc": 1, + "sqlite3_close": 1, + "OO_DEALLOC": 1, + "instances": 1, + "represent": 1, + "table": 1, + "and": 2, + "it": 2, + "s": 2, + "l": 1, + "C": 1, + "S": 1, + "I": 1, + "L": 1, + "q": 1, + "Q": 1, + "f": 1, + "%": 2, + "_": 2, + "tag": 1, + "A": 2, + "<'>": 1, + "iptr": 4, + "*optr": 1, + "unhex": 2, + "*iptr": 1, + "*16": 1, + "hex": 1, + "initWithBytesNoCopy": 1, + "optr": 1, + "freeWhenDone": 1, + "stringValue": 4, + "charValue": 1, + "shortValue": 1, + "NSArray": 3, + "OOReplace": 2, + "reformat": 4, + "|": 3, + "NSDictionary": 2, + "__IPHONE_OS_VERSION_MIN_REQUIRED": 1, + "UISwitch": 2, + "text": 1, + "self.on": 1, + "#include": 26, + "": 1, + "": 1, + "defined": 1, + "OBJC_API_VERSION": 2, + "inline": 3, + "IMP": 4, + "method_setImplementation": 2, + "Method": 2, + "m": 3, + "oi": 2, + "method_imp": 2, + "namespace": 1, + "WebCore": 1, + "ENABLE": 10, + "DRAG_SUPPORT": 7, + "double": 1, + "EventHandler": 30, + "TextDragDelay": 1, + "RetainPtr": 4, + "": 4, + "currentNSEventSlot": 6, + "DEFINE_STATIC_LOCAL": 1, + "event": 30, + "NSEvent": 21, + "*EventHandler": 2, + "currentNSEvent": 13, + ".get": 1, + "CurrentEventScope": 14, + "WTF_MAKE_NONCOPYABLE": 1, + "public": 1, + "private": 1, + "m_savedCurrentEvent": 3, + "NDEBUG": 2, + "m_event": 3, + "*event": 11, + "ASSERT": 13, + "bool": 26, + "wheelEvent": 5, + "Page*": 7, + "page": 33, + "m_frame": 24, + "false": 40, + "scope": 6, + "PlatformWheelEvent": 2, + "chrome": 8, + "platformPageClient": 4, + "handleWheelEvent": 2, + "wheelEvent.isAccepted": 1, + "PassRefPtr": 2, + "": 1, + "currentKeyboardEvent": 1, + "NSApp": 5, + "currentEvent": 2, + "NSKeyDown": 4, + "PlatformKeyboardEvent": 6, + "platformEvent": 2, + "platformEvent.disambiguateKeyDownEvent": 1, + "RawKeyDown": 1, + "KeyboardEvent": 2, + "create": 3, + "document": 6, + "defaultView": 2, + "NSKeyUp": 3, + "keyEvent": 2, + "BEGIN_BLOCK_OBJC_EXCEPTIONS": 13, + "END_BLOCK_OBJC_EXCEPTIONS": 13, + "focusDocumentView": 1, + "FrameView*": 7, + "frameView": 4, + "NSView": 14, + "*documentView": 1, + "documentView": 2, + "focusNSView": 1, + "focusController": 1, + "setFocusedFrame": 1, + "passWidgetMouseDownEventToWidget": 3, + "MouseEventWithHitTestResults": 7, + "RenderObject*": 2, + "target": 6, + "targetNode": 3, + "renderer": 7, + "isWidget": 2, + "passMouseDownEventToWidget": 3, + "toRenderWidget": 3, + "widget": 18, + "RenderWidget*": 1, + "renderWidget": 2, + "lastEventIsMouseUp": 2, + "*currentEventAfterHandlingMouseDown": 1, + "currentEventAfterHandlingMouseDown": 3, + "NSLeftMouseUp": 3, + "timestamp": 8, + "Widget*": 3, + "pWidget": 2, + "RefPtr": 1, + "": 1, + "LOG_ERROR": 1, + "true": 29, + "platformWidget": 6, + "*nodeView": 1, + "nodeView": 9, + "superview": 5, + "*view": 4, + "hitTest": 2, + "convertPoint": 2, + "locationInWindow": 4, + "client": 3, + "firstResponder": 1, + "clickCount": 8, + "<=>": 1, + "1": 1, + "acceptsFirstResponder": 1, + "needsPanelToBecomeKey": 1, + "makeFirstResponder": 1, + "wasDeferringLoading": 3, + "defersLoading": 1, + "setDefersLoading": 2, + "m_sendingEventToSubview": 24, + "*outerView": 1, + "getOuterView": 1, + "beforeMouseDown": 1, + "outerView": 2, + "widget.get": 2, + "mouseDown": 2, + "afterMouseDown": 1, + "m_mouseDownView": 5, + "m_mouseDownWasInSubframe": 7, + "m_mousePressed": 2, + "findViewInSubviews": 3, + "*superview": 1, + "*target": 1, + "NSEnumerator": 1, + "*e": 1, + "subviews": 1, + "objectEnumerator": 1, + "*subview": 1, + "subview": 3, + "e": 1, + "nextObject": 1, + "mouseDownViewIfStillGood": 3, + "*mouseDownView": 1, + "mouseDownView": 3, + "topFrameView": 3, + "*topView": 1, + "topView": 2, + "eventLoopHandleMouseDragged": 1, + "mouseDragged": 2, + "eventLoopHandleMouseUp": 1, + "mouseUp": 2, + "passSubframeEventToSubframe": 4, + "Frame*": 5, + "subframe": 13, + "HitTestResult*": 2, + "hoveredNode": 5, + "NSLeftMouseDragged": 1, + "NSOtherMouseDragged": 1, + "NSRightMouseDragged": 1, + "dragController": 1, + "didInitiateDrag": 1, + "NSMouseMoved": 2, + "eventHandler": 6, + "handleMouseMoveEvent": 3, + "currentPlatformMouseEvent": 8, + "NSLeftMouseDown": 3, + "Node*": 1, + "node": 3, + "isFrameView": 2, + "handleMouseReleaseEvent": 3, + "originalNSScrollViewScrollWheel": 4, + "_nsScrollViewScrollWheelShouldRetainSelf": 3, + "selfRetainingNSScrollViewScrollWheel": 3, + "NSScrollView": 2, + "SEL": 2, + "nsScrollViewScrollWheelShouldRetainSelf": 2, + "isMainThread": 3, + "setNSScrollViewScrollWheelShouldRetainSelf": 3, + "shouldRetain": 2, + "method": 2, + "class_getInstanceMethod": 1, + "objc_getRequiredClass": 1, + "scrollWheel": 2, + "reinterpret_cast": 1, + "": 1, + "*self": 1, + "selector": 2, + "shouldRetainSelf": 3, + "retain": 1, + "release": 1, + "passWheelEventToWidget": 1, + "NSView*": 1, + "static_cast": 1, + "": 1, + "frame": 3, + "NSScrollWheel": 1, + "v": 6, + "loader": 1, + "resetMultipleFormSubmissionProtection": 1, + "handleMousePressEvent": 2, + "handleMouseDoubleClickEvent": 1, + "sendFakeEventsAfterWidgetTracking": 1, + "*initiatingEvent": 1, + "eventType": 5, + "initiatingEvent": 22, + "*fakeEvent": 1, + "fakeEvent": 6, + "mouseEventWithType": 2, + "location": 3, + "modifierFlags": 6, + "windowNumber": 6, + "context": 6, + "eventNumber": 3, + "pressure": 3, + "postEvent": 3, + "atStart": 3, + "keyEventWithType": 1, + "charactersIgnoringModifiers": 2, + "isARepeat": 2, + "keyCode": 2, + "window": 1, + "convertScreenToBase": 1, + "mouseLocation": 1, + "mouseMoved": 2, + "frameHasPlatformWidget": 4, + "passMousePressEventToSubframe": 1, + "mev": 6, + "mev.event": 3, + "passMouseMoveEventToSubframe": 1, + "m_mouseDownMayStartDrag": 1, + "passMouseReleaseEventToSubframe": 1, + "PlatformMouseEvent": 5, + "*windowView": 1, + "windowView": 2, + "CONTEXT_MENUS": 2, + "sendContextMenuEvent": 2, + "eventMayStartDrag": 2, + "eventActivatedView": 1, + "m_activationEventNumber": 1, + "event.eventNumber": 1, + "": 1, + "createDraggingClipboard": 1, + "NSPasteboard": 2, + "*pasteboard": 1, + "pasteboardWithName": 1, + "NSDragPboard": 1, + "pasteboard": 2, + "declareTypes": 1, + "ClipboardMac": 1, + "Clipboard": 1, + "DragAndDrop": 1, + "ClipboardWritable": 1, + "tabsToAllFormControls": 1, + "KeyboardEvent*": 1, + "KeyboardUIMode": 1, + "keyboardUIMode": 5, + "handlingOptionTab": 4, + "isKeyboardOptionTab": 1, + "KeyboardAccessTabsToLinks": 2, + "KeyboardAccessFull": 1, + "needsKeyboardEventDisambiguationQuirks": 2, + "Document*": 1, + "applicationIsSafari": 1, + "url": 2, + ".protocolIs": 2, + "Settings*": 1, + "settings": 5, + "DASHBOARD_SUPPORT": 1, + "usesDashboardBackwardCompatibilityMode": 1, + "accessKeyModifiers": 1, + "AXObjectCache": 1, + "accessibilityEnhancedUserInterfaceEnabled": 1, + "CtrlKey": 2, + "AltKey": 1 }, +<<<<<<< HEAD "VHDL": { "-": 2, "VHDL": 1, @@ -66227,432 +114527,1490 @@ "endcase": 3, "default": 2, "endmodule": 18, +======= + "Rust": { + "//": 20, + "use": 10, + "cell": 1, + "Cell": 2, + ";": 218, + "cmp": 1, + "Eq": 2, + "option": 4, + "result": 18, + "Result": 3, + "comm": 5, + "{": 213, + "stream": 21, + "Chan": 4, + "GenericChan": 1, + "GenericPort": 1, + "Port": 3, + "SharedChan": 4, + "}": 210, + "prelude": 1, + "*": 1, + "task": 39, + "rt": 29, + "task_id": 2, + "sched_id": 2, + "rust_task": 1, + "util": 4, + "replace": 8, + "mod": 5, + "local_data_priv": 1, + "pub": 26, + "local_data": 1, + "spawn": 15, + "///": 13, + "A": 6, + "handle": 3, + "to": 6, + "a": 9, + "scheduler": 6, + "#": 61, + "[": 61, + "deriving_eq": 3, + "]": 61, + "enum": 4, + "Scheduler": 4, + "SchedulerHandle": 2, + "(": 429, + ")": 434, + "Task": 2, + "TaskHandle": 2, + "TaskResult": 4, + "Success": 6, + "Failure": 6, + "impl": 3, + "for": 10, + "pure": 2, + "fn": 89, + "eq": 1, + "&": 30, + "self": 15, + "other": 4, + "-": 33, + "bool": 6, + "match": 4, + "|": 20, + "true": 9, + "_": 4, + "false": 7, + "ne": 1, + ".eq": 1, + "modes": 1, + "SchedMode": 4, + "Run": 3, + "on": 5, + "the": 10, + "default": 1, + "DefaultScheduler": 2, + "current": 1, + "CurrentScheduler": 2, + "specific": 1, + "ExistingScheduler": 1, + "PlatformThread": 2, + "All": 1, + "tasks": 1, + "run": 1, + "in": 3, + "same": 1, + "OS": 3, + "thread": 2, + "SingleThreaded": 4, + "Tasks": 2, + "are": 2, + "distributed": 2, + "among": 2, + "available": 1, + "CPUs": 1, + "ThreadPerCore": 2, + "Each": 1, + "runs": 1, + "its": 1, + "own": 1, + "ThreadPerTask": 1, + "fixed": 1, + "number": 1, + "of": 3, + "threads": 1, + "ManualThreads": 3, + "uint": 7, + "struct": 7, + "SchedOpts": 4, + "mode": 9, + "foreign_stack_size": 3, + "Option": 4, + "": 2, + "TaskOpts": 12, + "linked": 15, + "supervised": 11, + "mut": 16, + "notify_chan": 24, + "<": 3, + "": 3, + "sched": 10, + "TaskBuilder": 21, + "opts": 21, + "gen_body": 4, + "@fn": 2, + "v": 6, + "can_not_copy": 11, + "": 1, + "consumed": 4, + "default_task_opts": 4, + "body": 6, + "Identity": 1, + "function": 1, + "None": 23, + "doc": 1, + "hidden": 1, + "FIXME": 1, + "#3538": 1, + "priv": 1, + "consume": 1, + "if": 7, + "self.consumed": 2, + "fail": 17, + "Fake": 1, + "move": 1, + "let": 84, + "self.opts.notify_chan": 7, + "self.opts.linked": 4, + "self.opts.supervised": 5, + "self.opts.sched": 6, + "self.gen_body": 2, + "unlinked": 1, + "..": 8, + "self.consume": 7, + "future_result": 1, + "blk": 2, + "self.opts.notify_chan.is_some": 1, + "notify_pipe_po": 2, + "notify_pipe_ch": 2, + "Some": 8, + "Configure": 1, + "custom": 1, + "task.": 1, + "sched_mode": 1, + "add_wrapper": 1, + "wrapper": 2, + "prev_gen_body": 2, + "f": 38, + "x": 7, + "x.opts.linked": 1, + "x.opts.supervised": 1, + "x.opts.sched": 1, + "spawn_raw": 1, + "x.gen_body": 1, + "Runs": 1, + "while": 2, + "transfering": 1, + "ownership": 1, + "one": 1, + "argument": 1, + "child.": 1, + "spawn_with": 2, + "": 2, + "arg": 5, + "do": 49, + "self.spawn": 1, + "arg.take": 1, + "try": 5, + "": 2, + "T": 2, + "": 2, + "po": 11, + "ch": 26, + "": 1, + "fr_task_builder": 1, + "self.future_result": 1, + "+": 4, + "r": 6, + "fr_task_builder.spawn": 1, + "||": 11, + "ch.send": 11, + "unwrap": 3, + ".recv": 3, + "Ok": 3, + "po.recv": 10, + "Err": 2, + ".spawn": 9, + "spawn_unlinked": 6, + ".unlinked": 3, + "spawn_supervised": 5, + ".supervised": 2, + ".spawn_with": 1, + "spawn_sched": 8, + ".sched_mode": 2, + ".try": 1, + "yield": 16, + "Yield": 1, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "control": 1, - "en": 13, - "dsp_sel": 9, - "an": 6, - "wire": 67, - "a": 5, - "b": 3, - "c": 3, - "d": 3, - "e": 3, - "f": 2, - "g": 2, - "h": 2, - "i": 62, - "j": 2, - "k": 2, - "l": 2, - "assign": 23, - "FDRSE": 6, - "#": 10, - ".INIT": 6, - "b0": 27, - "Synchronous": 12, - ".S": 6, - "b1": 19, - "Initial": 6, - "value": 6, - "of": 8, - "register": 6, - "DFF2": 1, - ".Q": 6, - "Data": 13, - ".C": 6, - "Clock": 14, - ".CE": 6, - "enable": 6, - ".D": 6, - ".R": 6, - "set": 6, - "DFF0": 1, - "DFF6": 1, - "DFF4": 1, - "DFF10": 1, - "DFF8": 1, - "hex_display": 1, - "num": 5, - "hex0": 2, - "hex1": 2, - "hex2": 2, - "hex3": 2, - "seg_7": 4, - "hex_group0": 1, - ".num": 4, - ".en": 4, - ".seg": 4, - "hex_group1": 1, - "hex_group2": 1, - "hex_group3": 1, - "mux": 1, - "opA": 4, - "opB": 3, - "sum": 5, - "out": 5, - "cout": 4, - "b0000": 1, - "b01": 1, - "b11": 1, - "pipeline_registers": 1, - "BIT_WIDTH": 5, - "pipe_in": 4, - "pipe_out": 5, - "NUMBER_OF_STAGES": 7, - "generate": 3, - "genvar": 3, - "*": 4, - "BIT_WIDTH*": 5, - "pipe_gen": 6, - "for": 4, - "+": 36, - "pipeline": 2, - "BIT_WIDTH*i": 2, - "endgenerate": 3, - "ps2_mouse": 1, - "Input": 2, - "Reset": 1, - "inout": 2, - "ps2_clk": 3, - "PS2": 2, - "Bidirectional": 2, - "ps2_dat": 3, - "the_command": 2, - "Command": 1, - "to": 3, - "send": 2, - "mouse": 1, - "send_command": 2, - "Signal": 2, - "command_was_sent": 2, - "command": 1, - "finished": 1, - "sending": 1, - "error_communication_timed_out": 3, - "received_data": 2, - "Received": 1, - "data": 4, - "received_data_en": 4, - "If": 1, - "new": 1, + "unsafe": 31, + "task_": 2, + "rust_get_task": 5, + "killed": 3, + "rust_task_yield": 1, + "&&": 1, + "failing": 2, + "True": 1, + "running": 2, "has": 1, + "failed": 1, + "rust_task_is_unwinding": 1, + "get_task": 1, + "Get": 1, + "get_task_id": 1, + "get_scheduler": 1, + "rust_get_sched_id": 6, + "unkillable": 5, + "": 3, + "U": 6, + "AllowFailure": 5, + "t": 24, + "*rust_task": 6, + "drop": 3, + "rust_task_allow_kill": 3, + "self.t": 4, + "_allow_failure": 2, + "rust_task_inhibit_kill": 3, + "The": 1, + "inverse": 1, + "unkillable.": 1, + "Only": 1, + "ever": 1, + "be": 2, + "used": 1, + "nested": 1, + ".": 1, + "rekillable": 1, + "DisallowFailure": 5, + "atomically": 3, + "DeferInterrupts": 5, + "rust_task_allow_yield": 1, + "_interrupts": 1, + "rust_task_inhibit_yield": 1, + "test": 31, + "should_fail": 11, + "ignore": 16, + "cfg": 16, + "windows": 14, + "test_cant_dup_task_builder": 1, + "b": 2, + "b.spawn": 2, + "should": 2, + "have": 1, "been": 1, - "received": 1, - "start_receiving_data": 3, - "wait_for_incoming_data": 3, - "ps2_clk_posedge": 3, - "Internal": 2, - "Wires": 1, - "ps2_clk_negedge": 3, - "idle_counter": 4, - "Registers": 2, - "ps2_clk_reg": 4, - "ps2_data_reg": 5, - "last_ps2_clk": 4, - "ns_ps2_transceiver": 13, - "State": 1, - "Machine": 1, - "s_ps2_transceiver": 8, - "PS2_STATE_0_IDLE": 10, - "h1": 1, - "PS2_STATE_2_COMMAND_OUT": 2, - "h3": 1, - "PS2_STATE_4_END_DELAYED": 4, - "Defaults": 1, - "PS2_STATE_1_DATA_IN": 3, - "||": 1, - "PS2_STATE_3_END_TRANSFER": 3, - "h00": 1, - "&&": 3, - "h01": 1, - "ps2_mouse_cmdout": 1, - "mouse_cmdout": 1, - ".clk": 6, - "Inputs": 2, - ".reset": 2, - ".the_command": 1, - ".send_command": 1, - ".ps2_clk_posedge": 2, - ".ps2_clk_negedge": 2, - ".ps2_clk": 1, - "Bidirectionals": 1, - ".ps2_dat": 1, - ".command_was_sent": 1, - "Outputs": 2, - ".error_communication_timed_out": 1, - "ps2_mouse_datain": 1, - "mouse_datain": 1, - ".wait_for_incoming_data": 1, - ".start_receiving_data": 1, - ".ps2_data": 1, - ".received_data": 1, - ".received_data_en": 1, - "ns/1ps": 2, - "e0": 1, - "x": 41, - "y": 21, - "{": 11, - "}": 11, - "e1": 1, - "ch": 1, - "z": 7, - "o": 6, - "&": 6, - "maj": 1, - "|": 2, - "s0": 1, - "s1": 1, - "sign_extender": 1, - "INPUT_WIDTH": 5, - "OUTPUT_WIDTH": 4, - "original": 3, - "sign_extended_original": 2, - "sign_extend": 3, - "gen_sign_extend": 1, - "sqrt_pipelined": 3, - "start": 12, - "optional": 2, - "INPUT_BITS": 28, - "radicand": 12, - "unsigned": 2, - "data_valid": 7, - "valid": 2, - "OUTPUT_BITS": 14, - "root": 8, - "number": 2, - "bits": 2, - "any": 1, - "integer": 1, - "%": 3, - "start_gen": 7, - "propagation": 1, - "OUTPUT_BITS*INPUT_BITS": 9, - "root_gen": 15, - "values": 3, - "radicand_gen": 10, - "mask_gen": 9, - "mask": 3, - "mask_4": 1, - "is": 4, - "odd": 1, - "this": 2, - "INPUT_BITS*": 27, - "<<": 2, - "i/2": 2, - "even": 1, - "pipeline_stage": 1, - "INPUT_BITS*i": 5, - "t_button_debounce": 1, - ".CLK_FREQUENCY": 1, - ".DEBOUNCE_HZ": 1, - ".reset_n": 3, - ".button": 1, - ".debounce": 1, - "initial": 3, - "bx": 4, - "#10": 10, - "#5": 3, - "#100": 1, - "#0.1": 8, - "t_div_pipelined": 1, - "dividend": 3, - "divisor": 5, - "div_by_zero": 2, - "quotient": 2, - "quotient_correct": 1, - "BITS": 2, - "div_pipelined": 2, - ".BITS": 1, - ".dividend": 1, - ".divisor": 1, - ".quotient": 1, - ".div_by_zero": 1, - ".start": 2, - ".data_valid": 2, - "#50": 2, - "#1": 1, - "#1000": 1, - "finish": 2, - "t_sqrt_pipelined": 1, - ".INPUT_BITS": 1, - ".radicand": 1, - ".root": 1, - "#10000": 1, - "vga": 1, - "wb_clk_i": 6, - "Mhz": 1, - "VDU": 1, - "wb_rst_i": 6, - "wb_dat_i": 3, - "wb_dat_o": 2, - "wb_adr_i": 3, - "wb_we_i": 3, - "wb_tga_i": 5, - "wb_sel_i": 3, - "wb_stb_i": 2, - "wb_cyc_i": 2, - "wb_ack_o": 2, - "vga_red_o": 2, - "vga_green_o": 2, - "vga_blue_o": 2, - "horiz_sync": 2, - "vert_sync": 2, - "csrm_adr_o": 2, - "csrm_sel_o": 2, - "csrm_we_o": 2, - "csrm_dat_o": 2, - "csrm_dat_i": 2, - "csr_adr_i": 3, - "csr_stb_i": 2, - "conf_wb_dat_o": 3, - "conf_wb_ack_o": 3, - "mem_wb_dat_o": 3, - "mem_wb_ack_o": 3, - "csr_adr_o": 2, - "csr_dat_i": 3, - "csr_stb_o": 3, - "v_retrace": 3, - "vh_retrace": 3, - "w_vert_sync": 3, - "shift_reg1": 3, - "graphics_alpha": 4, - "memory_mapping1": 3, - "write_mode": 3, - "raster_op": 3, - "read_mode": 3, - "bitmask": 3, - "set_reset": 3, - "enable_set_reset": 3, - "map_mask": 3, - "x_dotclockdiv2": 3, - "chain_four": 3, - "read_map_select": 3, - "color_compare": 3, - "color_dont_care": 3, - "wbm_adr_o": 3, - "wbm_sel_o": 3, - "wbm_we_o": 3, - "wbm_dat_o": 3, - "wbm_dat_i": 3, - "wbm_stb_o": 3, - "wbm_ack_i": 3, - "stb": 4, - "cur_start": 3, - "cur_end": 3, - "start_addr": 2, - "vcursor": 3, - "hcursor": 3, - "horiz_total": 3, - "end_horiz": 3, - "st_hor_retr": 3, - "end_hor_retr": 3, - "vert_total": 3, - "end_vert": 3, - "st_ver_retr": 3, - "end_ver_retr": 3, - "pal_addr": 3, - "pal_we": 3, - "pal_read": 3, - "pal_write": 3, - "dac_we": 3, - "dac_read_data_cycle": 3, - "dac_read_data_register": 3, - "dac_read_data": 3, - "dac_write_data_cycle": 3, - "dac_write_data_register": 3, - "dac_write_data": 3, - "vga_config_iface": 1, - "config_iface": 1, - ".wb_clk_i": 2, - ".wb_rst_i": 2, - ".wb_dat_i": 2, - ".wb_dat_o": 2, - ".wb_adr_i": 2, - ".wb_we_i": 2, - ".wb_sel_i": 2, - ".wb_stb_i": 2, - ".wb_ack_o": 2, - ".shift_reg1": 2, - ".graphics_alpha": 2, - ".memory_mapping1": 2, - ".write_mode": 2, - ".raster_op": 2, - ".read_mode": 2, - ".bitmask": 2, - ".set_reset": 2, - ".enable_set_reset": 2, - ".map_mask": 2, - ".x_dotclockdiv2": 2, - ".chain_four": 2, - ".read_map_select": 2, - ".color_compare": 2, - ".color_dont_care": 2, - ".pal_addr": 2, - ".pal_we": 2, - ".pal_read": 2, - ".pal_write": 2, - ".dac_we": 2, - ".dac_read_data_cycle": 2, - ".dac_read_data_register": 2, - ".dac_read_data": 2, - ".dac_write_data_cycle": 2, - ".dac_write_data_register": 2, - ".dac_write_data": 2, - ".cur_start": 2, - ".cur_end": 2, - ".start_addr": 1, - ".vcursor": 2, - ".hcursor": 2, - ".horiz_total": 2, - ".end_horiz": 2, - ".st_hor_retr": 2, - ".end_hor_retr": 2, - ".vert_total": 2, - ".end_vert": 2, - ".st_ver_retr": 2, - ".end_ver_retr": 2, - ".v_retrace": 2, - ".vh_retrace": 2, - "vga_lcd": 1, - "lcd": 1, - ".rst": 1, - ".csr_adr_o": 1, - ".csr_dat_i": 1, - ".csr_stb_o": 1, - ".vga_red_o": 1, - ".vga_green_o": 1, - ".vga_blue_o": 1, - ".horiz_sync": 1, - ".vert_sync": 1, - "vga_cpu_mem_iface": 1, - "cpu_mem_iface": 1, - ".wbs_adr_i": 1, - ".wbs_sel_i": 1, - ".wbs_we_i": 1, - ".wbs_dat_i": 1, - ".wbs_dat_o": 1, - ".wbs_stb_i": 1, - ".wbs_ack_o": 1, - ".wbm_adr_o": 1, - ".wbm_sel_o": 1, - ".wbm_we_o": 1, - ".wbm_dat_o": 1, - ".wbm_dat_i": 1, - ".wbm_stb_o": 1, - ".wbm_ack_i": 1, - "vga_mem_arbitrer": 1, - "mem_arbitrer": 1, - ".clk_i": 1, - ".rst_i": 1, - ".csr_adr_i": 1, - ".csr_dat_o": 1, - ".csr_stb_i": 1, - ".csrm_adr_o": 1, - ".csrm_sel_o": 1, - ".csrm_we_o": 1, - ".csrm_dat_o": 1, - ".csrm_dat_i": 1 + "by": 1, + "previous": 1, + "call": 1, + "test_spawn_unlinked_unsup_no_fail_down": 1, + "grandchild": 1, + "sends": 1, + "port": 3, + "ch.clone": 2, + "iter": 8, + "repeat": 8, + "If": 1, + "first": 1, + "grandparent": 1, + "hangs.": 1, + "Shouldn": 1, + "leave": 1, + "child": 3, + "hanging": 1, + "around.": 1, + "test_spawn_linked_sup_fail_up": 1, + "fails": 4, + "parent": 2, + "_ch": 1, + "<()>": 6, + "opts.linked": 2, + "opts.supervised": 2, + "b0": 5, + "b1": 3, + "b1.spawn": 3, + "We": 1, + "get": 1, + "punted": 1, + "awake": 1, + "test_spawn_linked_sup_fail_down": 1, + "loop": 5, + "*both*": 1, + "mechanisms": 1, + "would": 1, + "wrong": 1, + "this": 1, + "didn": 1, + "s": 1, + "failure": 1, + "propagate": 1, + "across": 1, + "gap": 1, + "test_spawn_failure_propagate_secondborn": 1, + "test_spawn_failure_propagate_nephew_or_niece": 1, + "test_spawn_linked_sup_propagate_sibling": 1, + "test_run_basic": 1, + "Wrapper": 5, + "test_add_wrapper": 1, + "b0.add_wrapper": 1, + "ch.f.swap_unwrap": 4, + "test_future_result": 1, + ".future_result": 4, + "assert": 10, + "test_back_to_the_future_result": 1, + "test_try_success": 1, + "test_try_fail": 1, + "test_spawn_sched_no_threads": 1, + "u": 2, + "test_spawn_sched": 1, + "i": 3, + "int": 5, + "parent_sched_id": 4, + "child_sched_id": 5, + "else": 1, + "test_spawn_sched_childs_on_default_sched": 1, + "default_id": 2, + "nolink": 1, + "extern": 1, + "testrt": 9, + "rust_dbg_lock_create": 2, + "*libc": 6, + "c_void": 6, + "rust_dbg_lock_destroy": 2, + "lock": 13, + "rust_dbg_lock_lock": 3, + "rust_dbg_lock_unlock": 3, + "rust_dbg_lock_wait": 2, + "rust_dbg_lock_signal": 2, + "test_spawn_sched_blocking": 1, + "start_po": 1, + "start_ch": 1, + "fin_po": 1, + "fin_ch": 1, + "start_ch.send": 1, + "fin_ch.send": 1, + "start_po.recv": 1, + "pingpong": 3, + "": 2, + "val": 4, + "setup_po": 1, + "setup_ch": 1, + "parent_po": 2, + "parent_ch": 2, + "child_po": 2, + "child_ch": 4, + "setup_ch.send": 1, + "setup_po.recv": 1, + "child_ch.send": 1, + "fin_po.recv": 1, + "avoid_copying_the_body": 5, + "spawnfn": 2, + "p": 3, + "x_in_parent": 2, + "ptr": 2, + "addr_of": 2, + "as": 7, + "x_in_child": 4, + "p.recv": 1, + "test_avoid_copying_the_body_spawn": 1, + "test_avoid_copying_the_body_task_spawn": 1, + "test_avoid_copying_the_body_try": 1, + "test_avoid_copying_the_body_unlinked": 1, + "test_platform_thread": 1, + "test_unkillable": 1, + "pp": 2, + "*uint": 1, + "cast": 2, + "transmute": 2, + "_p": 1, + "test_unkillable_nested": 1, + "Here": 1, + "test_atomically_nested": 1, + "test_child_doesnt_ref_parent": 1, + "const": 1, + "generations": 2, + "child_no": 3, + "return": 1, + "test_sched_thread_per_core": 1, + "chan": 2, + "cores": 2, + "rust_num_threads": 1, + "reported_threads": 2, + "rust_sched_threads": 2, + "chan.send": 2, + "port.recv": 2, + "test_spawn_thread_on_demand": 1, + "max_threads": 2, + "running_threads": 2, + "rust_sched_current_nonlazy_threads": 2, + "port2": 1, + "chan2": 1, + "chan2.send": 1, + "running_threads2": 2, + "port2.recv": 1 }, + "Matlab": { + "function": 34, + "[": 311, + "d": 12, + "d_mean": 3, + "d_std": 3, + "]": 311, + "normalize": 1, + "(": 1379, + ")": 1380, + "mean": 2, + ";": 909, + "-": 673, + "repmat": 2, + "size": 11, + "std": 1, + "d./": 1, + "end": 150, + "clear": 13, + "all": 15, + "%": 554, + "mu": 73, + "Earth": 2, + "Moon": 2, + "xl1": 13, + "yl1": 12, + "xl2": 9, + "yl2": 8, + "xl3": 8, + "yl3": 8, + "xl4": 10, + "yl4": 9, + "xl5": 8, + "yl5": 8, + "Lagr": 6, + "C": 13, + "*Potential": 5, + "x_0": 45, + "y_0": 29, + "vx_0": 37, + "vy_0": 22, + "sqrt": 14, + "+": 169, + "T": 22, + "C_star": 1, + "*Omega": 5, + "E": 8, + "C/2": 1, + "options": 14, + "odeset": 4, + "e": 14, + "Integrate": 6, + "first": 3, + "orbit": 1, + "t0": 6, + "Y0": 6, + "ode113": 2, + "@f": 6, + "x0": 4, + "y0": 2, + "vx0": 2, + "vy0": 2, + "l0": 1, + "length": 49, + "delta_E0": 1, + "abs": 12, + "Energy": 4, + "Hill": 1, + "Edgecolor": 1, + "none": 1, + ".2f": 5, + "ok": 2, + "sg": 1, + "sr": 1, + "x_T": 25, + "y_T": 17, + "vx_T": 22, + "e_T": 7, + "filter": 14, + "Integrate_FILE": 1, + "e_0": 7, + "N": 9, + "nx": 32, + "ny": 29, + "nvx": 32, + "ne": 29, + "zeros": 61, + "vy_T": 12, + "Look": 2, + "for": 78, + "phisically": 2, + "meaningful": 6, + "points": 11, + "meaningless": 2, + "point": 14, + "only": 7, + "h": 19, + "waitbar": 6, + "i": 338, + "i/nx": 2, + "sprintf": 11, + "j": 242, + "parfor": 5, + "k": 75, + "l": 64, + "*e_0": 3, + "if": 52, + "isreal": 8, + "ci": 9, + "t": 32, + "Y": 19, + "te": 2, + "ye": 9, + "ie": 2, + "ode45": 6, + "*": 46, + "Potential": 1, + "close": 4, + "tic": 7, + "Choice": 2, + "of": 35, + "the": 14, + "mass": 2, + "parameter": 2, + "Computation": 9, + "Lagrangian": 3, + "Points": 2, + "initial": 5, + "total": 6, + "energy": 8, + "E_L1": 4, + "Omega": 7, + "Offset": 2, + "as": 4, + "in": 8, + "figure": 17, + "Initial": 3, + "conditions": 3, + "range": 2, + "x_0_min": 8, + "x_0_max": 8, + "vx_0_min": 8, + "vx_0_max": 8, + "n": 102, + "ndgrid": 2, + "linspace": 14, + "*E": 2, + "vx_0.": 2, + "E_cin": 4, + "Transforming": 1, + "into": 1, + "Hamiltonian": 1, + "variables": 2, + "px_0": 2, + "py_0": 2, + "px_T": 4, + "py_T": 4, + "filtro": 15, + "ones": 6, + "E_T": 11, + "a": 17, + "matrix": 3, + "numbers": 2, + "integration": 9, + "steps": 2, + "each": 2, + "np": 8, + "number": 2, + "integrated": 5, + "fprintf": 18, + "tolerance": 2, + "setting": 4, + "energy_tol": 6, + "inf": 1, + "Jacobian": 3, + "system": 2, + "@cr3bp_jac": 1, + "Parallel": 2, + "equations": 2, + "motion": 2, + "&&": 13, + "Check": 6, + "real": 3, + "velocity": 2, + "and": 7, + "positive": 2, + "Kinetic": 2, + "@fH": 1, + "Saving": 4, + "solutions": 2, + "final": 2, + "difference": 2, + "with": 2, + "one": 3, + "EnergyH": 1, + "delta_E": 7, + "conservation": 2, + "position": 2, + "else": 23, + "interesting": 4, + "non": 2, + "sense": 2, + "bad": 4, + "t_integrazione": 3, + "toc": 5, + "t_integr": 1, + "Back": 1, + "to": 9, + "FTLE": 14, + "dphi": 12, + "ftle": 10, + "...": 162, + "/": 59, + "Manual": 2, + "visualize": 2, + "Inf": 1, + "*T": 3, + "*log": 2, + "max": 9, + "eig": 6, + "tempo": 4, + "per": 5, + "integrare": 2, + "s": 13, + "calcolare": 2, + "var_": 2, + "_": 2, + "var_xvx_": 2, + "ode00": 2, + "_n": 2, + "_e": 1, + "_H": 1, + "save": 2, + "nome": 2, + "Call": 2, + "matlab_function": 5, + "which": 2, + "resides": 2, + "same": 2, + "directory": 2, + "value1": 4, + "semicolon": 2, + "at": 3, + "line": 15, + "is": 7, + "not": 3, + "mandatory": 2, + "suppresses": 2, + "output": 7, + "command": 2, + "line.": 2, + "value2": 4, + "result": 5, + "disp": 8, + "error": 16, + "cross_validation": 1, + "x": 46, + "y": 25, + "hyper_parameter": 3, + "num_data": 2, + "K": 4, + "indices": 2, + "crossvalind": 1, + "errors": 4, + "test_idx": 4, + "train_idx": 3, + "x_train": 2, + "y_train": 2, + "w": 6, + "train": 1, + "x_test": 3, + "y_test": 3, + "calc_cost": 1, + "calc_error": 2, + "f_x_t": 2, + "inline": 1, + "grid_min": 3, + "grid_max": 3, + "grid_width": 1, + "grid_spacing": 5, + "grid_width/": 1, + "advected_x": 12, + "advected_y": 12, + "store": 4, + "advected": 2, + "positions": 2, + "they": 2, + "would": 2, + "appear": 2, + "coords": 2, + "sigma": 6, + "compute": 2, + "phi": 13, + "*grid_width/": 4, + "find": 24, + "eigenvalue": 2, + "*phi": 2, + "log": 2, + "lambda_max": 2, + "/abs": 3, + "plot": 26, + "field": 2, + "contourf": 2, + "colorbar": 1, + "classdef": 1, + "matlab_class": 2, + "properties": 1, + "R": 1, + "G": 1, + "B": 9, + "methods": 1, + "obj": 2, + "r": 2, + "g": 5, + "b": 12, + "obj.R": 2, + "obj.G": 2, + "obj.B": 2, + "num2str": 10, + "enumeration": 1, + "red": 1, + "green": 1, + "blue": 1, + "cyan": 1, + "magenta": 1, + "yellow": 1, + "black": 1, + "white": 1, + "filtfcn": 2, + "statefcn": 2, + "makeFilter": 1, + "v": 12, + "@iirFilter": 1, + "@getState": 1, + "yn": 2, + "iirFilter": 1, + "xn": 4, + "vOut": 2, + "getState": 1, + "RK4": 3, + "fun": 5, + "tspan": 7, + "th": 1, + "order": 11, + "Runge": 1, + "Kutta": 1, + "integrator": 2, + "dim": 2, + "while": 1, + "<": 9, + "k1": 4, + "k2": 3, + "h/2": 2, + "k1*h/2": 1, + "k3": 3, + "k2*h/2": 1, + "k4": 4, + "h*k3": 1, + "h/6*": 1, + "*k2": 1, + "*k3": 1, + "z": 3, + "*vx_0": 1, + "pcolor": 2, + "shading": 3, + "flat": 3, + "settings": 3, + "overwrite_settings": 2, + "defaultSettings": 3, + "overrideSettings": 3, + "overrideNames": 2, + "fieldnames": 5, + "defaultNames": 2, + "notGiven": 5, + "setxor": 1, + "settings.": 1, + "{": 157, + "}": 157, + "defaultSettings.": 1, + "bicycle": 7, + "bicycle_state_space": 1, + "speed": 20, + "varargin": 25, + "S": 5, + "dbstack": 1, + "CURRENT_DIRECTORY": 2, + "fileparts": 1, + ".file": 1, + "par": 7, + "par_text_to_struct": 4, + "filesep": 14, + "A": 11, + "D": 7, + "whipple_pull_force_abcd": 2, + "states": 7, + "outputs": 10, + "inputs": 14, + "defaultSettings.states": 1, + "defaultSettings.inputs": 1, + "defaultSettings.outputs": 1, + "userSettings": 3, + "varargin_to_structure": 2, + "struct": 1, + "minStates": 2, + "sum": 2, + "ismember": 15, + "settings.states": 3, + "keepStates": 2, + "removeStates": 1, + "row": 6, + "col": 5, + "removeInputs": 2, + "settings.inputs": 1, + "keepOutputs": 2, + "settings.outputs": 1, + "It": 1, + "possible": 1, + "keep": 1, + "because": 1, + "it": 1, + "depends": 1, + "on": 13, + "input": 14, + "StateName": 1, + "OutputName": 1, + "InputName": 1, + "data": 27, + "load_data": 4, + "filename": 21, + "parser": 1, + "inputParser": 1, + "parser.addRequired": 1, + "parser.addParamValue": 3, + "true": 2, + "parser.parse": 1, + "args": 1, + "parser.Results": 1, + "raw": 1, + "load": 1, + "args.directory": 1, + "iddata": 1, + "raw.theta": 1, + "raw.theta_c": 1, + "args.sampleTime": 1, + "args.detrend": 1, + "detrend": 1, + "hold": 23, + "lane_change": 1, + "start": 4, + "width": 3, + "slope": 3, + "pathLength": 3, + "num": 24, + "type": 4, + "single": 1, + "double": 1, + "Double": 1, + "lane": 4, + "change": 1, + "needs": 1, + "lane.": 1, + "laneLength": 4, + "startOfSlope": 3, + "endOfSlope": 1, + "&": 4, + "<=>": 1, + "1": 1, + "downSlope": 3, + "Yc": 5, + "plant": 4, + "parallel": 2, + "choose_plant": 4, + "p": 7, + "tf": 18, + "elseif": 14, + "display": 10, + "average": 1, + "m": 44, + "|": 2, + "/length": 1, + "name": 4, + "convert_variable": 1, + "variable": 10, + "coordinates": 6, + "speeds": 21, + "get_variables": 2, + "columns": 4, + "clc": 1, + "bikes": 24, + "load_bikes": 2, + "rollData": 8, + "generate_data": 5, + "create_ieee_paper_plots": 2, + "write_gains": 1, + "pathToFile": 11, + "gains": 12, + "contents": 1, + "importdata": 1, + "speedsInFile": 5, + "contents.data": 2, + "gainsInFile": 3, + "sameSpeedIndices": 5, + "allGains": 4, + "allSpeeds": 4, + "sort": 1, + "fid": 7, + "fopen": 2, + "contents.colheaders": 1, + "fclose": 2, + "Elements": 1, + "grid": 1, + "definition": 2, + "Dimensionless": 1, + "integrating": 1, + "time": 21, + "C_L1": 3, + "*E_L1": 1, + "from": 2, + "Szebehely": 1, + "Setting": 1, + "RelTol": 2, + "AbsTol": 2, + "From": 1, + "Short": 1, + "r1": 3, + "r2": 3, + "i/n": 1, + ".": 13, + "y_0.": 2, + "./": 1, + "mu./": 1, + "@f_reg": 1, + "filtro_1": 12, + "||": 3, + "ftle_norm": 1, + "ds_x": 1, + "ds_vx": 1, + "La": 1, + "direzione": 1, + "dello": 1, + "spostamento": 1, + "la": 2, + "decide": 1, + "il": 1, + "denominatore": 1, + "TODO": 1, + "spiegarsi": 1, + "teoricamente": 1, + "come": 1, + "mai": 1, + "matrice": 1, + "pu": 1, + "essere": 1, + "ridotta": 1, + "x2": 1, + "*ds_x": 2, + "*ds_vx": 2, + "dphi*dphi": 1, + "global": 6, + "goldenRatio": 12, + "exist": 1, + "mkdir": 1, + "linestyles": 15, + "colors": 13, + "loop_shape_example": 3, + "data.Benchmark.Medium": 2, + "plot_io_roll": 3, + "open_loop_all_bikes": 1, + "handling_all_bikes": 1, + "path_plots": 1, + "var": 3, + "io": 7, + "typ": 3, + "plot_io": 1, + "phase_portraits": 2, + "eigenvalues": 2, + "bikeData": 2, + "figWidth": 24, + "figHeight": 19, + "set": 43, + "gcf": 17, + "freq": 12, + "closedLoops": 1, + "bikeData.closedLoops": 1, + "bops": 7, + "bodeoptions": 1, + "bops.FreqUnits": 1, + "strcmp": 24, + "gray": 7, + "deltaNum": 2, + "closedLoops.Delta.num": 1, + "deltaDen": 2, + "closedLoops.Delta.den": 1, + "bodeplot": 6, + "neuroNum": 2, + "neuroDen": 2, + "whichLines": 3, + "phiDotNum": 2, + "closedLoops.PhiDot.num": 1, + "phiDotDen": 2, + "closedLoops.PhiDot.den": 1, + "closedBode": 3, + "off": 10, + "opts": 4, + "getoptions": 2, + "opts.YLim": 3, + "opts.PhaseMatching": 2, + "opts.PhaseMatchingValue": 2, + "opts.Title.String": 2, + "setoptions": 2, + "lines": 17, + "findobj": 5, + "raise": 19, + "plotAxes": 22, + "curPos1": 4, + "get": 11, + "curPos2": 4, + "xLab": 8, + "legWords": 3, + "closeLeg": 2, + "legend": 7, + "axes": 9, + "db1": 4, + "text": 11, + "db2": 2, + "dArrow1": 2, + "annotation": 13, + "dArrow2": 2, + "dArrow": 2, + "print": 6, + "fix_ps_linestyle": 6, + "openLoops": 1, + "bikeData.openLoops": 1, + "openLoops.Phi.num": 1, + "den": 15, + "openLoops.Phi.den": 1, + "openLoops.Psi.num": 1, + "openLoops.Psi.den": 1, + "openLoops.Y.num": 1, + "openLoops.Y.den": 1, + "openBode": 3, + "wc": 14, + "wShift": 5, + "bikeData.handlingMetric.num": 1, + "bikeData.handlingMetric.den": 1, + "mag": 4, + "phase": 2, + "bode": 5, + "metricLine": 1, + "Linewidth": 7, + "Color": 13, + "Linestyle": 6, + "Handling": 2, + "Quality": 2, + "Metric": 2, + "Frequency": 2, + "rad/s": 4, + "Level": 6, + "benchmark": 1, + "Handling.eps": 1, + "plots": 4, + "deps2": 1, + "loose": 4, + "PaperOrientation": 3, + "portrait": 3, + "PaperUnits": 3, + "inches": 3, + "PaperPositionMode": 3, + "manual": 3, + "PaperPosition": 3, + "PaperSize": 3, + "rad/sec": 1, + "Open": 1, + "Loop": 1, + "Bode": 1, + "Diagrams": 1, + "m/s": 6, + "Latex": 1, + "LineStyle": 2, + "LineWidth": 2, + "Location": 2, + "Southwest": 1, + "Fontsize": 4, + "YColor": 2, + "XColor": 1, + "Position": 6, + "Xlabel": 1, + "Units": 1, + "normalized": 1, + "openBode.eps": 1, + "deps2c": 3, + "maxMag": 2, + "magnitudes": 1, + "area": 1, + "fillColors": 1, + "gca": 8, + "speedNames": 12, + "metricLines": 2, + "data.": 6, + ".handlingMetric.num": 1, + ".handlingMetric.den": 1, + "chil": 2, + "legLines": 1, + "Hands": 1, + "free": 1, + "@": 1, + "handling.eps": 1, + "f": 13, + "YTick": 1, + "YTickLabel": 1, + "Path": 1, + "Southeast": 1, + "Distance": 1, + "Lateral": 1, + "Deviation": 1, + "paths.eps": 1, + "like": 1, + "plot.": 1, + "names": 6, + "prettyNames": 3, + "units": 3, + "index": 6, + "data.Browser": 1, + "maxValue": 4, + "oneSpeed": 3, + "history": 7, + "oneSpeed.": 3, + "round": 1, + "pad": 10, + "yShift": 16, + "xShift": 3, + "oneSpeed.time": 2, + "oneSpeed.speed": 2, + "distance": 6, + "xAxis": 12, + "xData": 3, + "textX": 3, + "ylim": 2, + "ticks": 4, + "xlabel": 8, + "xLimits": 6, + "xlim": 8, + "loc": 3, + "l1": 2, + "l2": 2, + "ylabel": 4, + "box": 4, + "x_r": 6, + "y_r": 6, + "w_r": 5, + "h_r": 5, + "rectangle": 2, + "w_r/2": 4, + "h_r/2": 4, + "x_a": 10, + "y_a": 10, + "w_a": 7, + "h_a": 5, + "ax": 15, + "axis": 5, + "rollData.speed": 1, + "rollData.time": 1, + "path": 3, + "rollData.path": 1, + "frontWheel": 3, + "rollData.outputs": 3, + "rollAngle": 4, + "steerAngle": 4, + "rollTorque": 4, + "rollData.inputs": 1, + "subplot": 3, + "h1": 5, + "h2": 5, + "plotyy": 3, + "inset": 3, + "gainChanges": 2, + "loopNames": 4, + "xy": 7, + "xySource": 7, + "xlabels": 2, + "ylabels": 2, + "legends": 3, + "floatSpec": 3, + "twentyPercent": 1, + "nominalData": 1, + "nominalData.": 2, + "bikeData.": 2, + "twentyPercent.": 2, + "equal": 2, + "leg1": 2, + "bikeData.modelPar.": 1, + "leg2": 2, + "twentyPercent.modelPar.": 1, + "eVals": 5, + "pathToParFile": 2, + "str": 2, + "eigenValues": 1, + "zeroIndices": 3, + "maxEvals": 4, + "maxLine": 7, + "minLine": 4, + "min": 1, + "speedInd": 12, + "Conditions": 1, + "Integration": 2, + "@cross_y": 1, + "textscan": 1, + "strtrim": 2, + "vals": 2, + "regexp": 1, + "par.": 1, + "str2num": 1, + "t1": 6, + "t2": 6, + "t3": 1, + "dataPlantOne": 3, + "data.Ts": 6, + "dataAdapting": 3, + "dataPlantTwo": 3, + "guessPlantOne": 4, + "resultPlantOne": 1, + "find_structural_gains": 2, + "yh": 2, + "fit": 6, + "compare": 3, + "resultPlantOne.fit": 1, + "guessPlantTwo": 3, + "resultPlantTwo": 1, + "resultPlantTwo.fit": 1, + "kP1": 4, + "resultPlantOne.fit.par": 1, + "kP2": 3, + "resultPlantTwo.fit.par": 1, + "gainSlopeOffset": 6, + "eye": 9, + "aux.pars": 3, + "this": 2, + "uses": 1, + "tau": 1, + "through": 1, + "wfs": 1, + "aux.timeDelay": 2, + "aux.plantFirst": 2, + "aux.plantSecond": 2, + "plantOneSlopeOffset": 3, + "plantTwoSlopeOffset": 3, + "aux.m": 3, + "aux.b": 3, + "dx": 6, + "adapting_structural_model": 2, + "aux": 3, + "mod": 3, + "idnlgrey": 1, + "pem": 1, + "guess.plantOne": 3, + "guess.plantTwo": 2, + "plantNum.plantOne": 2, + "plantNum.plantTwo": 2, + "sections": 13, + "secData.": 1, + "guess.": 2, + "result.": 2, + ".fit.par": 1, + "currentGuess": 2, + ".*": 2, + "warning": 1, + "randomGuess": 1, + "The": 6, + "self": 2, + "validation": 2, + "VAF": 2, + "f.": 2, + "data/": 1, + "results.mat": 1, + "guess": 1, + "plantNum": 1, + "plots/": 1, + ".png": 1, + "task": 1, + "closed": 1, + "loop": 1, + "u.": 1, + "gain": 1, + "guesses": 1, + "identified": 1, + ".vaf": 1, + "arguments": 7, + "ischar": 1, + "options.": 1, + "value": 2, + "isterminal": 2, + "direction": 2, + "FIXME": 1, + "largest": 1, + "primary": 1, + "wnm": 11, + "zetanm": 5, + "ss": 3, + "data.modelPar.A": 1, + "data.modelPar.B": 1, + "data.modelPar.C": 1, + "data.modelPar.D": 1, + "bicycle.StateName": 2, + "bicycle.OutputName": 4, + "bicycle.InputName": 2, + "analytic": 3, + "system_state_space": 2, + "numeric": 2, + "data.system.A": 1, + "data.system.B": 1, + "data.system.C": 1, + "data.system.D": 1, + "numeric.StateName": 1, + "data.bicycle.states": 1, + "numeric.InputName": 1, + "data.bicycle.inputs": 1, + "numeric.OutputName": 1, + "data.bicycle.outputs": 1, + "pzplot": 1, + "ss2tf": 2, + "analytic.A": 3, + "analytic.B": 1, + "analytic.C": 1, + "analytic.D": 1, + "mine": 1, + "data.forceTF.PhiDot.num": 1, + "data.forceTF.PhiDot.den": 1, + "numeric.A": 2, + "numeric.B": 1, + "numeric.C": 1, + "numeric.D": 1, + "whipple_pull_force_ABCD": 1, + "bottomRow": 1, + "prod": 3, + "x_min": 3, + "x_max": 3, + "y_min": 3, + "y_max": 3, + "how": 1, + "many": 1, + "measure": 1, + "unit": 1, + "both": 1, + "ds": 1, + "x_res": 7, + "*n": 2, + "y_res": 7, + "grid_x": 3, + "grid_y": 3, + "X": 6, + "@dg": 1, + "Compute": 3, + "*ds": 4, + "location": 1, + "EastOutside": 1, + "ret": 3, + "arg1": 1, + "arg": 2, + "arrayfun": 2, + "RK4_par": 1, + "Range": 1, + "E_0": 4, + "C_L1/2": 1, + "Y_0": 4, + "dvx": 3, + "dy": 5, + "/2": 3, + "de": 4, + "Definition": 1, + "arrays": 1, + "In": 1, + "approach": 1, + "useful": 9, + "pints": 1, + "are": 1, + "stored": 1, + "v_y": 3, + "vx": 2, + "vy": 2, + "Selection": 1, + "Data": 2, + "transfer": 1, + "GPU": 3, + "x_gpu": 3, + "gpuArray": 4, + "y_gpu": 3, + "vx_gpu": 3, + "vy_gpu": 3, + "x_f": 3, + "y_f": 3, + "vx_f": 3, + "vy_f": 3, + "@RKF45_FILE_gpu": 1, + "back": 1, + "CPU": 1, + "memory": 1, + "cleaning": 1, + "gather": 4, + "Construction": 1, + "computation": 2, + "X_T": 4, + "Y_T": 4, + "VX_T": 4, + "VY_T": 3, + "filter_ftle": 11, + "Compute_FILE_gpu": 1, + "Plot": 1, + "results": 1, + "squeeze": 1, + "c1": 5, + "roots": 3, + "*mu": 6, + "c2": 5, + "c3": 3, + "u": 3, + "Yp": 2, + "human": 1, + "Ys": 1, + "feedback": 1, + "tf2ss": 1, + "Ys.num": 1, + "Ys.den": 1, + "delta_e": 3, + "Integrate_FTLE_Gawlick_ell": 1, + "ecc": 2, + "nu": 2, + "ecc*cos": 1, + "@f_ell": 1, + "Consider": 1, + "also": 1, + "negative": 1, + "goodness": 1, + "gains.Benchmark.Slow": 1, + "place": 2, + "holder": 2, + "gains.Browserins.Slow": 1, + "gains.Browser.Slow": 1, + "gains.Pista.Slow": 1, + "gains.Fisher.Slow": 1, + "gains.Yellow.Slow": 1, + "gains.Yellowrev.Slow": 1, + "gains.Benchmark.Medium": 1, + "gains.Browserins.Medium": 1, + "gains.Browser.Medium": 1, + "gains.Pista.Medium": 1, + "gains.Fisher.Medium": 1, + "gains.Yellow.Medium": 1, + "gains.Yellowrev.Medium": 1, + "gains.Benchmark.Fast": 1, + "gains.Browserins.Fast": 1, + "gains.Browser.Fast": 1, + "gains.Pista.Fast": 1, + "gains.Fisher.Fast": 1, + "gains.Yellow.Fast": 1, + "gains.Yellowrev.Fast": 1, + "gains.": 1 + }, +<<<<<<< HEAD "VimL": { "no": 1, "toolbar": 1, @@ -66748,289 +116106,231 @@ "the": 7, "Applications": 1, "list": 1, - "in": 1, - "Windows": 1, - "Task": 1, - "Manager": 1, - "App.TaskVisible": 1, - "False": 1, - "create": 1, - "tray": 1, - "icon": 1, - "Set": 5, - "myAST.create": 1, - "myMouseEventsForm.icon": 1, - "make": 1, - "myself": 1, - "easily": 2, - "found": 1, - "myMouseEventsForm.hwnd": 3, - "End": 11, - "Sub": 9, - "shutdown": 1, - "myAST.destroy": 1, - "Nothing": 2, - "Unload": 1, - "myAST_RButtonUp": 1, - "Dim": 1, - "epm": 1, - "cTP_EasyPopupMenu": 1, - "menuItemSelected": 1, - "epm.addMenuItem": 3, - "MF_STRING": 3, - "epm.addSubmenuItem": 2, - "MF_SEPARATOR": 1, - "MF_CHECKED": 1, - "route": 2, - "to": 4, - "a": 4, - "remote": 1, - "machine": 1, - "Else": 1, - "for": 4, - "moment": 1, - "just": 1, - "between": 1, - "MMFileTransports": 1, - "If": 4, - "myMMTransportIDsByRouterID.Exists": 1, - "message.toAddress.RouterID": 2, - "Then": 1, - "transport": 1, - "transport.send": 1, - "messageToBytes": 1, - "message": 1, - "directoryEntryIDString": 2, - "serviceType": 2, - "address": 1, - "VLMAddress": 1, - "&": 7, - "address.MachineID": 1, - "address.RouterID": 1, - "address.AgentID": 1, - "myMMFileTransports_disconnecting": 1, - "id": 1, - "oReceived": 2, - "Boolean": 1, - "True": 1, - "@Code": 1, - "ViewData": 1, - "Code": 1, - "@section": 1, - "featured": 1, - "
": 1, - "class=": 7, - "
": 1, - "
": 1, - "

": 1, - "@ViewData": 2, - ".": 3, - "

": 1, - "

": 1, - "

": 1, - "
": 1, - "

": 1, - "To": 1, - "learn": 1, - "more": 4, - "about": 2, - "ASP.NET": 5, - "MVC": 4, - "visit": 2, - "": 5, - "href=": 5, - "title=": 2, - "http": 1, - "//asp.net/mvc": 1, - "": 5, - "The": 1, - "page": 1, - "features": 3, - "": 1, - "videos": 1, - "tutorials": 1, - "and": 6, - "samples": 1, - "": 1, - "help": 1, - "you": 4, - "get": 1, - "most": 1, - "MVC.": 1, - "have": 1, - "any": 1, - "questions": 1, - "our": 1, - "forums": 1, - "

": 1, - "
": 1, - "
": 1, - "Section": 1, - "

": 1, - "We": 1, - "suggest": 1, - "following": 1, - "

": 1, - "
    ": 1, - "
  1. ": 3, - "
    ": 3, - "Getting": 1, - "Started": 1, - "
    ": 3, - "gives": 2, - "powerful": 1, - "patterns": 1, - "based": 1, - "way": 1, - "build": 1, - "dynamic": 1, - "websites": 1, - "that": 5, - "enables": 1, - "clean": 1, - "separation": 1, - "of": 2, - "concerns": 1, - "full": 1, - "control": 1, - "over": 1, - "markup": 1, - "enjoyable": 1, - "agile": 1, - "development.": 1, - "includes": 1, - "many": 1, - "enable": 1, - "fast": 1, - "TDD": 1, - "friendly": 1, - "development": 1, - "creating": 1, - "sophisticated": 1, - "applications": 1, - "use": 1, - "latest": 1, - "web": 2, - "standards.": 1, - "Learn": 3, - "
  2. ": 3, - "Add": 1, - "NuGet": 2, - "packages": 1, - "jump": 1, - "start": 1, - "your": 2, - "coding": 1, - "makes": 1, - "it": 1, - "easy": 1, - "install": 1, - "update": 1, - "free": 1, - "libraries": 1, - "tools.": 1, - "Find": 1, - "Web": 1, - "Hosting": 1, - "You": 1, - "can": 1, - "find": 1, - "hosting": 1, - "company": 1, - "offers": 1, - "right": 1, - "mix": 1, - "price": 1, - "applications.": 1, - "
": 1, - "Module": 2, - "Module1": 1, - "Main": 1, - "Console.Out.WriteLine": 2 - }, - "Volt": { - "module": 1, - "main": 2, - ";": 53, - "import": 7, - "core.stdc.stdio": 1, - "core.stdc.stdlib": 1, - "watt.process": 1, - "watt.path": 1, - "results": 1, - "list": 1, - "cmd": 1, - "int": 8, - "(": 37, - ")": 37, - "{": 12, - "auto": 6, - "cmdGroup": 2, - "new": 3, - "CmdGroup": 1, - "bool": 4, - "printOk": 2, - "true": 4, - "printImprovments": 2, - "printFailing": 2, - "printRegressions": 2, - "string": 1, - "compiler": 3, - "getEnv": 1, - "if": 7, - "is": 2, - "null": 3, - "printf": 6, - ".ptr": 14, +======= + "Pan": { + "object": 1, + "template": 1, + "pantest": 1, + ";": 32, + "xFF": 1, + "e": 2, + "-": 2, + "E10": 1, + "variable": 4, + "TEST": 2, + "to_string": 1, + "(": 8, + ")": 8, + "+": 2, + "value": 1, + "undef": 1, + "null": 1, + "error": 1, + "include": 1, + "{": 5, + "}": 5, + "pkg_repl": 2, + "PKG_ARCH_DEFAULT": 1, + "function": 1, + "show_things_view_for_stuff": 1, + "thing": 2, + "ARGV": 1, + "[": 2, + "]": 2, + "foreach": 1, + "i": 1, + "mything": 2, + "STUFF": 1, + "if": 1, "return": 2, - "-": 3, - "}": 12, - "///": 1, - "@todo": 1, - "Scan": 1, - "for": 4, - "files": 1, - "tests": 2, - "testList": 1, - "total": 5, - "passed": 5, - "failed": 5, - "improved": 3, - "regressed": 6, - "rets": 5, - "Result": 2, - "[": 6, - "]": 6, - "tests.length": 3, - "size_t": 3, - "i": 14, - "<": 3, - "+": 14, - ".runTest": 1, - "cmdGroup.waitAll": 1, - "ret": 1, - "ret.ok": 1, - "cast": 5, - "ret.hasPassed": 4, - "&&": 2, - "ret.test.ptr": 4, - "ret.msg.ptr": 4, - "else": 3, - "fflush": 2, - "stdout": 1, - "xml": 8, - "fopen": 1, - "fprintf": 2, - "rets.length": 1, - ".xmlLog": 1, - "fclose": 1, - "rate": 2, - "float": 2, - "/": 1, - "*": 1, - "f": 1, - "double": 1 + "true": 2, + "else": 1, + "SELF": 1, + "false": 2, + "HERE": 1, + "<<": 1, + "EOF": 2, + "This": 1, + "example": 1, + "demonstrates": 1, + "an": 1, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method + "in": 1, + "line": 1, + "heredoc": 1, + "style": 1, + "config": 1, + "file": 1, + "main": 1, + "awesome": 1, + "small": 1, + "#This": 1, + "should": 1, + "be": 1, + "highlighted": 1, + "normally": 1, + "again.": 1 }, + "PAWN": { + "//": 22, + "-": 1551, + "#include": 5, + "": 1, + "": 1, + "": 1, + "#pragma": 1, + "tabsize": 1, + "#define": 5, + "COLOR_WHITE": 2, + "xFFFFFFFF": 2, + "COLOR_NORMAL_PLAYER": 3, + "xFFBB7777": 1, + "CITY_LOS_SANTOS": 7, + "CITY_SAN_FIERRO": 4, + "CITY_LAS_VENTURAS": 6, + "new": 13, + "total_vehicles_from_files": 19, + ";": 257, + "gPlayerCitySelection": 21, + "[": 56, + "MAX_PLAYERS": 3, + "]": 56, + "gPlayerHasCitySelected": 6, + "gPlayerLastCitySelectionTick": 5, + "Text": 5, + "txtClassSelHelper": 14, + "txtLosSantos": 7, + "txtSanFierro": 7, + "txtLasVenturas": 7, + "thisanimid": 1, + "lastanimid": 1, + "main": 1, + "(": 273, + ")": 273, + "{": 39, + "print": 3, + "}": 39, + "public": 6, + "OnPlayerConnect": 1, + "playerid": 132, + "GameTextForPlayer": 1, + "SendClientMessage": 1, + "GetTickCount": 4, + "//SetPlayerColor": 2, + "//Kick": 1, + "return": 17, + "OnPlayerSpawn": 1, + "if": 28, + "IsPlayerNPC": 3, + "randSpawn": 16, + "SetPlayerInterior": 7, + "TogglePlayerClock": 2, + "ResetPlayerMoney": 3, + "GivePlayerMoney": 2, + "random": 3, + "sizeof": 3, + "gRandomSpawns_LosSantos": 5, + "SetPlayerPos": 6, + "SetPlayerFacingAngle": 6, + "else": 9, + "gRandomSpawns_SanFierro": 5, + "gRandomSpawns_LasVenturas": 5, + "SetPlayerSkillLevel": 11, + "WEAPONSKILL_PISTOL": 1, + "WEAPONSKILL_PISTOL_SILENCED": 1, + "WEAPONSKILL_DESERT_EAGLE": 1, + "WEAPONSKILL_SHOTGUN": 1, + "WEAPONSKILL_SAWNOFF_SHOTGUN": 1, + "WEAPONSKILL_SPAS12_SHOTGUN": 1, + "WEAPONSKILL_MICRO_UZI": 1, + "WEAPONSKILL_MP5": 1, + "WEAPONSKILL_AK47": 1, + "WEAPONSKILL_M4": 1, + "WEAPONSKILL_SNIPERRIFLE": 1, + "GivePlayerWeapon": 1, + "WEAPON_COLT45": 1, + "//GivePlayerWeapon": 1, + "WEAPON_MP5": 1, + "OnPlayerDeath": 1, + "killerid": 3, + "reason": 1, + "playercash": 4, + "INVALID_PLAYER_ID": 1, + "GetPlayerMoney": 1, + "ClassSel_SetupCharSelection": 2, + "SetPlayerCameraPos": 6, + "SetPlayerCameraLookAt": 6, + "ClassSel_InitCityNameText": 4, + "txtInit": 7, + "TextDrawUseBox": 2, + "TextDrawLetterSize": 2, + "TextDrawFont": 2, + "TextDrawSetShadow": 2, + "TextDrawSetOutline": 2, + "TextDrawColor": 2, + "xEEEEEEFF": 1, + "TextDrawBackgroundColor": 2, + "FF": 2, + "ClassSel_InitTextDraws": 2, + "TextDrawCreate": 4, + "TextDrawBoxColor": 1, + "BB": 1, + "TextDrawTextSize": 1, + "ClassSel_SetupSelectedCity": 3, + "TextDrawShowForPlayer": 4, + "TextDrawHideForPlayer": 10, + "ClassSel_SwitchToNextCity": 3, + "+": 19, + "PlayerPlaySound": 2, + "ClassSel_SwitchToPreviousCity": 2, + "<": 3, + "ClassSel_HandleCitySelection": 2, + "Keys": 3, + "ud": 2, + "lr": 4, + "GetPlayerKeys": 1, + "&": 1, + "KEY_FIRE": 1, + "TogglePlayerSpectating": 2, + "OnPlayerRequestClass": 1, + "classid": 1, + "GetPlayerState": 2, + "PLAYER_STATE_SPECTATING": 2, + "OnGameModeInit": 1, + "SetGameModeText": 1, + "ShowPlayerMarkers": 1, + "PLAYER_MARKERS_MODE_GLOBAL": 1, + "ShowNameTags": 1, + "SetNameTagDrawDistance": 1, + "EnableStuntBonusForAll": 1, + "DisableInteriorEnterExits": 1, + "SetWeather": 1, + "SetWorldTime": 1, + "//UsePlayerPedAnims": 1, + "//ManualVehicleEngineAndLights": 1, + "//LimitGlobalChatRadius": 1, + "AddPlayerClass": 69, + "//AddPlayerClass": 1, + "LoadStaticVehiclesFromFile": 17, + "printf": 1, + "OnPlayerUpdate": 1, + "IsPlayerConnected": 1, + "&&": 2, + "GetPlayerInterior": 1, + "GetPlayerWeapon": 2, + "SetPlayerArmedWeapon": 1, + "fists": 1, + "no": 1, + "syncing": 1, + "until": 1, + "they": 1, + "change": 1, + "their": 1, + "weapon": 1, + "WEAPON_MINIGUN": 1, + "Kick": 1 + }, +<<<<<<< HEAD "XC": { "int": 2, "main": 1, @@ -67511,407 +116811,5035 @@ "single": 2, "using": 9, "contract.": 2, - "Consider": 2, - "instead": 2, - "sending": 2, - "response": 2, - "events.": 2, - "actual": 2, - "send": 3, - "returns": 5, - "current": 10, - "logger": 2, - "allows": 15, - "log": 2, - "attached.": 1, - "data": 2, - "structure": 1, - "representation": 1, - "memoizing": 2, - "cache": 14, - "evaluate": 1, - "function": 13, - "but": 7, - "keep": 1, - "recently": 3, - "evaluated": 1, - "parameters.": 1, - "Since": 1, - "mathematical": 2, - "sense": 1, - "key": 12, - "*always*": 1, - "maps": 1, - "corresponding": 2, - "value.": 2, - "calculation": 8, - "function.": 6, - "returned": 2, - "Constructor": 2, - "whose": 7, - "results": 6, - "want": 2, - "Tag": 1, - "user": 2, - "defined": 1, - "size": 1, - "maintain": 1, - "after": 1, - "old": 1, - "start": 1, - "thrown": 1, - "out.": 1, - "result": 3, - "gets": 1, - "evicted": 2, - "because": 2, - "Invalidate": 2, - "Evaluates": 1, - "returning": 1, - "cached": 2, - "possible": 1, - "pass": 2, - "optional": 2, - "parameter.": 1, - "Ensure": 1, +======= + "Ruby": { + "module": 8, + "Foo": 1, + "end": 238, + "SHEBANG#!rake": 1, + "task": 2, + "default": 2, + "do": 37, + "puts": 12, + "SHEBANG#!macruby": 1, + "require": 58, + "Resque": 3, + "include": 3, + "Helpers": 1, + "extend": 2, + "self": 11, + "def": 143, + "redis": 7, + "(": 244, + "server": 11, + ")": 256, + "case": 5, + "when": 11, + "String": 2, + "if": 72, + "/redis": 1, + "/": 34, + "//": 3, + "Redis.connect": 2, + "url": 12, + "thread_safe": 2, + "true": 15, + "else": 25, + "namespace": 3, + "server.split": 2, + "host": 3, + "port": 4, + "db": 3, + "Redis.new": 1, + "||": 22, + "resque": 2, + "@redis": 6, + "Redis": 3, + "Namespace.new": 2, + "Namespace": 1, + "@queues": 2, + "Hash.new": 1, + "{": 68, + "|": 91, + "h": 2, + "name": 51, + "[": 56, + "]": 56, + "Queue.new": 1, + "coder": 3, + "}": 68, + "@coder": 1, + "MultiJsonCoder.new": 1, + "attr_writer": 4, + "return": 25, + "self.redis": 2, + "Redis.respond_to": 1, + "connect": 1, + "redis_id": 2, + "redis.respond_to": 2, + "redis.server": 1, + "elsif": 7, + "nodes": 1, + "#": 100, + "distributed": 1, + "redis.nodes.map": 1, + "n": 4, + "n.id": 1, + ".join": 1, + "redis.client.id": 1, + "before_first_fork": 2, + "&": 31, + "block": 30, + "@before_first_fork": 2, + "before_fork": 2, + "@before_fork": 2, + "after_fork": 2, + "@after_fork": 2, + "to_s": 1, + "attr_accessor": 2, + "inline": 3, + "alias": 1, + "push": 1, + "queue": 24, + "item": 4, + "<<": 15, + "pop": 1, + "begin": 9, + ".pop": 1, + "rescue": 13, + "ThreadError": 1, + "nil": 21, + "size": 3, + ".size": 1, + "peek": 1, + "start": 7, + "count": 5, + ".slice": 1, + "list_range": 1, + "key": 8, + "decode": 2, + "redis.lindex": 1, + "Array": 2, + "redis.lrange": 1, + "+": 47, + "-": 34, + ".map": 6, + "queues": 3, + "redis.smembers": 1, + "remove_queue": 1, + ".destroy": 1, + "@queues.delete": 1, + "queue.to_s": 1, + "name.to_s": 3, + "enqueue": 1, + "klass": 16, + "*args": 16, + "enqueue_to": 2, + "queue_from_class": 4, + "before_hooks": 2, + "Plugin.before_enqueue_hooks": 1, + ".collect": 2, + "hook": 9, + "klass.send": 4, + "before_hooks.any": 2, + "result": 8, + "false": 26, + "Job.create": 1, + "Plugin.after_enqueue_hooks": 1, + ".each": 4, + "dequeue": 1, + "Plugin.before_dequeue_hooks": 1, + "Job.destroy": 1, + "Plugin.after_dequeue_hooks": 1, + "klass.instance_variable_get": 1, + "@queue": 1, + "klass.respond_to": 1, + "and": 6, + "klass.queue": 1, + "reserve": 1, + "Job.reserve": 1, + "validate": 1, + "raise": 17, + "NoQueueError.new": 1, + "klass.to_s.empty": 1, + "NoClassError.new": 1, + "workers": 2, + "Worker.all": 1, + "working": 2, + "Worker.working": 1, + "remove_worker": 1, + "worker_id": 2, + "worker": 1, + "Worker.find": 1, + "worker.unregister_worker": 1, + "info": 2, + "pending": 1, + "queues.inject": 1, + "m": 3, + "k": 2, + "processed": 2, + "Stat": 2, + "queues.size": 1, + "workers.size.to_i": 1, + "working.size": 1, + "failed": 3, + "servers": 1, + "environment": 2, + "ENV": 4, + "keys": 6, + "redis.keys": 1, + "key.sub": 1, + "SHEBANG#!python": 1, + "Jenkins": 1, + "Plugin": 1, + "Specification.new": 1, + "plugin": 3, + "plugin.name": 1, + "plugin.display_name": 1, + "plugin.version": 1, + "plugin.description": 1, + "plugin.url": 1, + "plugin.developed_by": 1, + "plugin.uses_repository": 1, + "github": 1, + "plugin.depends_on": 1, + "#plugin.depends_on": 1, + "class": 7, + "Formula": 2, + "FileUtils": 1, + "attr_reader": 5, + "path": 16, + "version": 10, + "homepage": 2, + "specs": 14, + "downloader": 6, + "standard": 2, + "unstable": 2, + "head": 3, + "bottle_version": 2, + "bottle_url": 3, + "bottle_sha1": 2, + "buildpath": 1, + "initialize": 2, + "set_instance_variable": 12, + "@head": 4, + "not": 3, + "@url": 8, + "or": 7, + "ARGV.build_head": 2, + "@version": 10, + "@spec_to_use": 4, + "@unstable": 2, + "@standard.nil": 1, + "SoftwareSpecification.new": 3, + "@specs": 3, + "@standard": 3, + "@url.nil": 1, + "@name": 3, + "validate_variable": 7, + "@path": 1, + "path.nil": 1, + "self.class.path": 1, + "Pathname.new": 3, + "@spec_to_use.detect_version": 1, + "CHECKSUM_TYPES.each": 1, + "type": 10, + "@downloader": 2, + "download_strategy.new": 2, + "@spec_to_use.url": 1, + "@spec_to_use.specs": 1, + "@bottle_url": 2, + "bottle_base_url": 1, + "bottle_filename": 1, + "@bottle_sha1": 2, + "installed": 2, + "installed_prefix.children.length": 1, + "explicitly_requested": 1, + "ARGV.named.empty": 1, + "ARGV.formulae.include": 1, + "linked_keg": 1, + "HOMEBREW_REPOSITORY/": 2, + "/@name": 1, + "installed_prefix": 1, + "head_prefix": 2, + "HOMEBREW_CELLAR": 2, + "head_prefix.directory": 1, + "prefix": 14, + "rack": 1, + ";": 41, + "prefix.parent": 1, + "bin": 1, + "doc": 1, + "lib": 1, + "libexec": 1, + "man": 9, + "man1": 1, + "man2": 1, + "man3": 1, + "man4": 1, + "man5": 1, + "man6": 1, + "man7": 1, + "man8": 1, + "sbin": 1, + "share": 1, + "etc": 1, + "HOMEBREW_PREFIX": 2, + "var": 1, + "plist_name": 2, + "plist_path": 1, + "download_strategy": 1, + "@spec_to_use.download_strategy": 1, + "cached_download": 1, + "@downloader.cached_location": 1, + "caveats": 1, + "options": 3, + "patches": 2, + "keg_only": 2, + "self.class.keg_only_reason": 1, + "fails_with": 2, + "cc": 3, + "self.class.cc_failures.nil": 1, + "Compiler.new": 1, + "unless": 15, + "cc.is_a": 1, + "Compiler": 1, + "self.class.cc_failures.find": 1, + "failure": 1, "next": 1, - "time": 3, - "queried": 1, - "called.": 1, - "all": 4, - "Returns": 5, - "values": 4, - "currently": 2, - "MessageBus": 3, - "bus.": 1, - "scheduler": 11, - "post": 2, - "RxApp.DeferredScheduler": 2, - "default.": 2, - "Current": 1, - "RxApp": 1, - "global": 1, - "object.": 3, - "ViewModel": 8, - "another": 3, - "s": 3, - "Return": 1, - "instance": 2, - "type.": 3, - "registered": 1, - "ObservableAsPropertyHelper": 6, - "help": 1, - "backed": 1, - "read": 3, - "still": 1, - "created": 2, - "directly": 1, - "more": 16, - "ToProperty": 2, - "ObservableToProperty": 1, - "methods.": 2, - "so": 1, - "output": 1, - "chained": 2, - "example": 2, - "property.": 12, - "Constructs": 4, - "base": 3, - "on.": 6, - "action": 2, - "take": 2, - "typically": 1, - "t": 2, - "bindings": 13, - "null": 4, - "OAPH": 2, - "at": 2, - "startup.": 1, - "initial": 28, - "normally": 6, - "Dispatcher": 3, - "based": 9, - "last": 1, - "Exception": 1, - "steps": 1, - "taken": 1, - "ensure": 3, - "never": 3, - "complete": 1, - "fail.": 1, - "Converts": 2, - "automatically": 3, - "onChanged": 2, - "raise": 2, - "notification.": 2, - "equivalent": 2, - "convenient.": 1, - "Expression": 7, - "initialized": 2, - "backing": 9, - "field": 10, - "ReactiveObject": 11, - "ObservableAsyncMRUCache": 2, - "memoization": 2, - "asynchronous": 4, - "expensive": 2, - "compute": 1, - "MRU": 1, - "fixed": 1, - "limit": 5, - "cache.": 5, - "guarantees": 6, - "given": 11, - "flight": 2, - "subsequent": 1, - "requests": 4, - "wait": 3, - "first": 1, - "empty": 1, - "web": 6, - "image": 1, - "receives": 1, - "two": 1, - "concurrent": 5, - "issue": 2, - "WebRequest": 1, - "does": 1, - "mean": 1, - "request": 3, - "Concurrency": 1, - "limited": 1, - "maxConcurrent": 1, - "too": 1, - "many": 1, - "operations": 6, - "progress": 1, - "further": 1, - "queued": 1, - "slot": 1, - "available.": 1, - "performs": 1, - "asyncronous": 1, - "async": 3, - "CPU": 1, - "Observable.Return": 1, - "may": 1, - "result.": 2, - "*must*": 1, - "equivalently": 1, - "input": 2, - "being": 1, - "memoized": 1, - "calculationFunc": 2, - "depends": 1, - "varables": 1, - "than": 5, - "unpredictable.": 1, - "reached": 2, - "discarded.": 4, - "maximum": 2, - "regardless": 2, - "caches": 2, - "server.": 2, - "clean": 1, - "up": 25, - "manage": 1, - "disk": 1, + "failure.compiler": 1, + "cc.name": 1, + "failure.build.zero": 1, + "failure.build": 1, + "cc.build": 1, + "skip_clean": 2, + "self.class.skip_clean_all": 1, + "to_check": 2, + "path.relative_path_from": 1, + ".to_s": 3, + "self.class.skip_clean_paths.include": 1, + "brew": 2, + "stage": 2, + "patch": 3, + "yield": 5, + "Interrupt": 2, + "RuntimeError": 1, + "SystemCallError": 1, + "e": 8, + "don": 1, + "config.log": 2, + "t": 3, + "a": 10, + "std_autotools": 1, + "variant": 1, + "because": 1, + "autotools": 1, + "is": 3, + "lot": 1, + "std_cmake_args": 1, + "%": 10, + "W": 1, + "DCMAKE_INSTALL_PREFIX": 1, + "DCMAKE_BUILD_TYPE": 1, + "None": 1, + "DCMAKE_FIND_FRAMEWORK": 1, + "LAST": 1, + "Wno": 1, + "dev": 1, + "self.class_s": 2, + "#remove": 1, + "invalid": 1, + "characters": 1, + "then": 4, + "camelcase": 1, + "it": 1, + "name.capitalize.gsub": 1, + "_.": 1, + "s": 2, + "zA": 1, + "Z0": 1, + "upcase": 1, + ".gsub": 5, + "self.names": 1, + "Dir": 4, + "f": 11, + "File.basename": 2, + ".sort": 2, + "self.all": 1, + "map": 1, + "self.map": 1, + "rv": 3, + "each": 1, + "self.each": 1, + "names.each": 1, + "Formula.factory": 2, + "onoe": 2, + "inspect": 2, + "self.aliases": 1, + "self.canonical_name": 1, + "name.kind_of": 2, + "Pathname": 2, + "formula_with_that_name": 1, + "HOMEBREW_REPOSITORY": 4, + "possible_alias": 1, + "possible_cached_formula": 1, + "HOMEBREW_CACHE_FORMULA": 2, + "name.include": 2, + "r": 3, + ".": 3, + "tapd": 1, + ".downcase": 2, + "tapd.find_formula": 1, + "relative_pathname": 1, + "relative_pathname.stem.to_s": 1, + "tapd.directory": 1, + "formula_with_that_name.file": 1, + "formula_with_that_name.readable": 1, + "possible_alias.file": 1, + "possible_alias.realpath.basename": 1, + "possible_cached_formula.file": 1, + "possible_cached_formula.to_s": 1, + "self.factory": 1, + "https": 1, + "ftp": 1, + ".basename": 1, + "target_file": 6, + "name.basename": 1, + "HOMEBREW_CACHE_FORMULA.mkpath": 1, + "FileUtils.rm": 1, + "force": 1, + "curl": 1, + "install_type": 4, + "from_url": 1, + "Formula.canonical_name": 1, + ".rb": 1, + "path.stem": 1, + "from_path": 1, + "path.to_s": 3, + "Formula.path": 1, + "from_name": 2, + "klass_name": 2, + "Object.const_get": 1, + "NameError": 2, + "LoadError": 3, + "klass.new": 2, + "FormulaUnavailableError.new": 1, + "tap": 1, + "path.realpath.to_s": 1, + "/Library/Taps/": 1, + "w": 6, + "self.path": 1, + "mirrors": 4, + "self.class.mirrors": 1, + "deps": 1, + "self.class.dependencies.deps": 1, + "external_deps": 1, + "self.class.dependencies.external_deps": 1, + "recursive_deps": 1, + "Formula.expand_deps": 1, + ".flatten.uniq": 1, + "self.expand_deps": 1, + "f.deps.map": 1, + "dep": 3, + "f_dep": 3, + "dep.to_s": 1, + "expand_deps": 1, + "protected": 1, + "system": 1, + "cmd": 6, + "pretty_args": 1, + "args.dup": 1, + "pretty_args.delete": 1, + "ARGV.verbose": 2, + "ohai": 3, + ".strip": 1, + "removed_ENV_variables": 2, + "args.empty": 1, + "cmd.split": 1, + ".first": 1, + "ENV.remove_cc_etc": 1, + "safe_system": 4, + "rd": 1, + "wr": 3, + "IO.pipe": 1, + "pid": 1, + "fork": 1, + "rd.close": 1, + "stdout.reopen": 1, + "stderr.reopen": 1, + "args.collect": 1, + "arg": 1, + "arg.to_s": 1, + "exec": 2, + "exit": 2, + "never": 1, + "gets": 1, + "here": 1, + "threw": 1, + "wr.close": 1, + "out": 4, + "rd.read": 1, + "until": 1, + "rd.eof": 1, + "Process.wait": 1, + ".success": 1, + "removed_ENV_variables.each": 1, + "value": 4, + "ENV.kind_of": 1, + "Hash": 3, + "BuildError.new": 1, + "args": 5, + "public": 2, + "fetch": 2, + "install_bottle": 1, + "CurlBottleDownloadStrategy.new": 1, + "mirror_list": 2, + "HOMEBREW_CACHE.mkpath": 1, + "fetched": 4, + "downloader.fetch": 1, + "CurlDownloadStrategyError": 1, + "mirror_list.empty": 1, + "mirror_list.shift.values_at": 1, + "retry": 2, + "checksum_type": 2, + "CHECKSUM_TYPES.detect": 1, + "instance_variable_defined": 2, + "verify_download_integrity": 2, + "fn": 2, + "args.length": 1, + "md5": 2, + "supplied": 4, + "instance_variable_get": 2, + "type.to_s.upcase": 1, + "hasher": 2, + "Digest.const_get": 1, + "hash": 2, + "fn.incremental_hash": 1, + "supplied.empty": 1, + "message": 2, + "EOF": 2, + "mismatch": 1, + "Expected": 1, + "Got": 1, + "Archive": 1, + "To": 1, + "an": 1, + "incomplete": 1, "download": 1, - "save": 2, - "temporary": 1, - "folder": 1, - "onRelease": 1, - "delete": 1, - "file.": 1, - "run": 7, - "defaults": 1, - "TaskpoolScheduler": 2, - "Issues": 1, - "fetch": 1, - "operation.": 1, - "operation": 2, - "finishes.": 1, - "If": 6, - "immediately": 3, - "upon": 1, - "subscribing": 1, - "returned.": 2, - "provide": 2, - "synchronous": 1, - "AsyncGet": 1, - "resulting": 1, - "Works": 2, - "like": 2, - "SelectMany": 2, - "memoizes": 2, - "selector": 5, - "calls.": 2, - "addition": 3, - "no": 4, - "selectors": 2, - "running": 4, - "concurrently": 2, - "queues": 2, - "rest.": 2, - "very": 2, - "services": 2, - "avoid": 2, - "potentially": 2, - "spamming": 2, - "server": 2, - "hundreds": 2, - "requests.": 2, - "similar": 3, - "passed": 1, - "SelectMany.": 1, - "similarly": 1, - "ObservableAsyncMRUCache.AsyncGet": 1, - "must": 2, - "sense.": 1, - "flattened": 2, - "selector.": 2, - "overload": 2, - "useful": 2, - "making": 3, - "service": 1, - "several": 1, - "places": 1, - "paths": 1, - "already": 1, - "configured": 1, - "ObservableAsyncMRUCache.": 1, - "notification": 6, - "Attempts": 1, - "expression": 3, - "expression.": 1, - "entire": 1, - "able": 1, - "followed": 1, - "otherwise": 1, - "Given": 3, - "fully": 3, - "filled": 1, - "SetValueToProperty": 1, - "apply": 3, - "target.property": 1, - "This.GetValue": 1, - "observed": 1, - "onto": 1, - "convert": 2, - "stream.": 3, - "ValueIfNotDefault": 1, - "filters": 1, - "BindTo": 1, - "takes": 1, - "applies": 1, - "Conceptually": 1, - "child": 2, - "without": 1, - "checks.": 1, - "set.": 3, - "x.Foo.Bar.Baz": 1, - "disconnects": 1, - "binding.": 1, - "ReactiveCollection.": 1, - "ReactiveCollection": 1, - "existing": 3, - "list.": 2, - "list": 1, - "populate": 1, - "anything": 2, - "Change": 2, - "Tracking": 2, - "Creates": 3, - "adding": 2, - "completes": 4, - "optionally": 2, - "ensuring": 2, - "delay.": 2, - "withDelay": 2, - "leak": 2, - "Timer.": 2, - "always": 4, - "UI": 2, - "thread.": 3, - "put": 2, - "into": 2, - "populated": 4, - "faster": 2, - "delay": 2, - "Select": 3, - "item.": 3, - "creating": 2, - "collections": 1, - "updated": 1, - "respective": 1, - "Model": 1, - "updated.": 1, - "Collection.Select": 1, + "remove": 1, + "the": 8, + "file": 1, + "above.": 1, + "supplied.upcase": 1, + "hash.upcase": 1, + "opoo": 1, + "private": 3, + "CHECKSUM_TYPES": 2, + "sha1": 4, + "sha256": 1, + ".freeze": 1, + "fetched.kind_of": 1, + "mktemp": 1, + "downloader.stage": 1, + "@buildpath": 2, + "Pathname.pwd": 1, + "patch_list": 1, + "Patches.new": 1, + "patch_list.empty": 1, + "patch_list.external_patches": 1, + "patch_list.download": 1, + "patch_list.each": 1, + "p": 2, + "p.compression": 1, + "gzip": 1, + "p.compressed_filename": 2, + "bzip2": 1, + "*": 3, + "p.patch_args": 1, + "v": 2, + "v.to_s.empty": 1, + "s/": 1, + "class_value": 3, + "self.class.send": 1, + "instance_variable_set": 1, + "self.method_added": 1, + "method": 4, + "self.attr_rw": 1, + "attrs": 1, + "attrs.each": 1, + "attr": 4, + "class_eval": 1, + "Q": 1, + "val": 10, + "val.nil": 3, + "@#": 2, + "attr_rw": 4, + "keg_only_reason": 1, + "skip_clean_all": 2, + "cc_failures": 1, + "stable": 2, + "block_given": 5, + "instance_eval": 2, + "ARGV.build_devel": 2, + "devel": 1, + "@mirrors": 3, + "clear": 1, + "from": 1, + "release": 1, + "bottle": 1, + "bottle_block": 1, + "Class.new": 2, + "self.version": 1, + "self.url": 1, + "self.sha1": 1, + "sha1.shift": 1, + "@sha1": 6, + "MacOS.cat": 1, + "MacOS.lion": 1, + "self.data": 1, + "&&": 8, + "bottle_block.instance_eval": 1, + "@bottle_version": 1, + "bottle_block.data": 1, "mirror": 1, - "ObservableForProperty": 14, - "ReactiveObject.": 1, - "unlike": 13, - "Selector": 1, - "classes": 2, - "INotifyPropertyChanged.": 1, - "monitor": 1, - "RaiseAndSetIfChanged": 2, - "Setter": 2, - "write": 2, - "assumption": 4, - "named": 2, - "RxApp.GetFieldNameForPropertyNameFunc.": 2, - "almost": 2, - "keyword.": 2, - "newly": 2, - "intended": 5, - "Silverlight": 2, - "WP7": 1, - "reflection": 1, - "cannot": 1, - "private": 1, - "field.": 1, - "Reference": 1, - "Use": 15, - "custom": 4, - "raiseAndSetIfChanged": 1, + "@mirrors.uniq": 1, + "dependencies": 1, + "@dependencies": 1, + "DependencyCollector.new": 1, + "depends_on": 1, + "dependencies.add": 1, + "paths": 3, + "all": 1, + "@skip_clean_all": 2, + "@skip_clean_paths": 3, + ".flatten.each": 1, + "p.to_s": 2, + "@skip_clean_paths.include": 1, + "skip_clean_paths": 1, + "reason": 2, + "explanation": 1, + "@keg_only_reason": 1, + "KegOnlyReason.new": 1, + "explanation.to_s.chomp": 1, + "compiler": 3, + "@cc_failures": 2, + "CompilerFailures.new": 1, + "CompilerFailure.new": 2, + "Sinatra": 2, + "Request": 2, + "<": 2, + "Rack": 1, + "accept": 1, + "@env": 2, + "entries": 1, + ".to_s.split": 1, + "entries.map": 1, + "accept_entry": 1, + ".sort_by": 1, + "last": 4, + "first": 1, + "preferred_type": 1, + "self.defer": 1, + "match": 6, + "pattern": 1, + "path.respond_to": 5, + "path.keys": 1, + "names": 2, + "path.names": 1, + "TypeError": 1, + "URI": 3, + "URI.const_defined": 1, + "Parser": 1, + "Parser.new": 1, + "encoded": 1, + "char": 4, + "enc": 5, + "URI.escape": 1, + "helpers": 3, + "data": 1, + "reset": 1, + "set": 36, + "development": 6, + ".to_sym": 1, + "raise_errors": 1, + "Proc.new": 11, + "test": 5, + "dump_errors": 1, + "show_exceptions": 1, + "sessions": 1, + "logging": 2, + "protection": 1, + "method_override": 4, + "use_code": 1, + "default_encoding": 1, + "add_charset": 1, + "javascript": 1, + "xml": 2, + "xhtml": 1, + "json": 1, + "settings.add_charset": 1, + "text": 3, + "session_secret": 3, + "SecureRandom.hex": 1, + "NotImplementedError": 1, + "Kernel.rand": 1, + "**256": 1, + "alias_method": 2, + "methodoverride": 2, + "run": 2, + "via": 1, + "at": 1, + "running": 2, + "built": 1, + "in": 3, + "now": 1, + "http": 1, + "webrick": 1, + "bind": 1, + "ruby_engine": 6, + "defined": 1, + "RUBY_ENGINE": 2, + "server.unshift": 6, + "ruby_engine.nil": 1, + "absolute_redirects": 1, + "prefixed_redirects": 1, + "empty_path_info": 1, + "app_file": 4, + "root": 5, + "File.expand_path": 1, + "File.dirname": 4, + "views": 1, + "File.join": 6, + "reload_templates": 1, + "lock": 1, + "threaded": 1, + "public_folder": 3, + "static": 1, + "File.exist": 1, + "static_cache_control": 1, + "error": 3, + "Exception": 1, + "response.status": 1, + "content_type": 3, + "configure": 2, + "get": 2, + "filename": 2, + "__FILE__": 3, + "png": 1, + "send_file": 1, + "NotFound": 1, + "HTML": 2, + "": 1, + "html": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "

": 1, "doesn": 1, - "x": 1, - "x.SomeProperty": 1, - "suffice.": 1, - "RaisePropertyChanging": 2, - "mock": 4, - "scenarios": 4, - "manually": 4, - "fake": 4, - "invoke": 4, - "raisePropertyChanging": 4, - "faking": 4, - "RaisePropertyChanged": 2, - "helps": 1, - "make": 2, - "them": 1, - "compatible": 1, - "Rx.Net.": 1, - "declare": 1, - "initialize": 1, - "derive": 1, - "properties/methods": 1, - "MakeObjectReactiveHelper.": 1, - "InUnitTestRunner": 1, - "attempts": 1, + "rsquo": 1, + "know": 1, + "this": 2, + "ditty.": 1, + "

": 1, + "": 1, + "src=": 1, + "
": 1, + "id=": 1, + "Try": 1, + "
": 1,
+      "request.request_method.downcase": 1,
+      "nend": 1,
+      "
": 1, + "
": 1, + "": 1, + "": 1, + "Application": 2, + "Base": 2, + "super": 3, + "self.register": 2, + "extensions": 6, + "nodoc": 3, + "added_methods": 2, + "extensions.map": 1, + "m.public_instance_methods": 1, + ".flatten": 1, + "Delegator.delegate": 1, + "Delegator": 1, + "self.delegate": 1, + "methods": 1, + "methods.each": 1, + "method_name": 5, + "define_method": 1, + "respond_to": 1, + "Delegator.target.send": 1, + "delegate": 1, + "put": 1, + "post": 1, + "delete": 1, + "template": 1, + "layout": 1, + "before": 1, + "after": 1, + "not_found": 1, + "mime_type": 1, + "enable": 1, + "disable": 1, + "use": 1, + "production": 1, + "settings": 2, + "target": 1, + "self.target": 1, + "Wrapper": 1, + "stack": 2, + "instance": 2, + "@stack": 1, + "@instance": 2, + "@instance.settings": 1, + "call": 1, + "env": 2, + "@stack.call": 1, + "self.new": 1, + "base": 4, + "base.class_eval": 1, + "Delegator.target.register": 1, + "self.helpers": 1, + "Delegator.target.helpers": 1, + "self.use": 1, + "Delegator.target.use": 1, + "Grit": 1, + "SHEBANG#!ruby": 2, + ".unshift": 1, + "For": 1, + "use/testing": 1, + "no": 1, + "gem": 3, + "require_all": 4, + "glob": 2, + "Jekyll": 3, + "VERSION": 1, + "DEFAULTS": 2, + "Dir.pwd": 3, + "self.configuration": 1, + "override": 3, + "source": 2, + "config_file": 2, + "config": 3, + "YAML.load_file": 1, + "config.is_a": 1, + "stdout.puts": 1, + "err": 1, + "stderr.puts": 2, + "err.to_s": 1, + "DEFAULTS.deep_merge": 1, + ".deep_merge": 1, + "load": 3, + "appraise": 2, + "ActiveSupport": 1, + "Inflector": 1, + "pluralize": 3, + "word": 10, + "apply_inflections": 3, + "inflections.plurals": 1, + "singularize": 2, + "inflections.singulars": 1, + "camelize": 2, + "term": 1, + "uppercase_first_letter": 2, + "string": 4, + "term.to_s": 1, + "string.sub": 2, + "z": 7, + "d": 6, + "*/": 1, + "inflections.acronyms": 1, + ".capitalize": 1, + "inflections.acronym_regex": 2, + "b": 4, + "A": 5, + "Z_": 1, + "string.gsub": 1, + "_": 2, + "/i": 2, + "underscore": 3, + "camel_cased_word": 6, + "camel_cased_word.to_s.dup": 1, + "word.gsub": 4, + "Za": 1, + "Z": 3, + "word.tr": 1, + "word.downcase": 1, + "humanize": 2, + "lower_case_and_underscored_word": 1, + "lower_case_and_underscored_word.to_s.dup": 1, + "inflections.humans.each": 1, + "rule": 4, + "replacement": 4, + "break": 4, + "result.sub": 2, + "result.gsub": 2, + "/_id": 1, + "result.tr": 1, + "w/": 1, + ".upcase": 1, + "titleize": 1, + "": 1, + "capitalize": 1, + "Create": 1, + "of": 1, + "table": 2, + "like": 1, + "Rails": 1, + "does": 1, + "for": 1, + "models": 1, + "to": 1, + "This": 1, + "uses": 1, + "on": 2, + "RawScaledScorer": 1, + "tableize": 2, + "class_name": 2, + "classify": 1, + "table_name": 1, + "table_name.to_s.sub": 1, + "/.*": 1, + "./": 1, + "dasherize": 1, + "underscored_word": 1, + "underscored_word.tr": 1, + "demodulize": 1, + "i": 2, + "path.rindex": 2, + "..": 1, + "deconstantize": 1, + "implementation": 1, + "based": 1, + "one": 1, + "facets": 1, + "id": 1, + "outside": 2, + "inside": 2, + "owned": 1, + "constant": 4, + "constant.ancestors.inject": 1, + "const": 3, + "ancestor": 3, + "Object": 1, + "ancestor.const_defined": 1, + "constant.const_get": 1, + "safe_constantize": 1, + "constantize": 1, + "e.message": 2, + "uninitialized": 1, + "wrong": 1, + "const_regexp": 3, + "e.name.to_s": 1, + "camel_cased_word.to_s": 1, + "ArgumentError": 1, + "/not": 1, + "missing": 1, + "ordinal": 1, + "number": 2, + ".include": 1, + "number.to_i.abs": 2, + "ordinalize": 1, + "parts": 1, + "camel_cased_word.split": 1, + "parts.pop": 1, + "parts.reverse.inject": 1, + "acc": 2, + "part": 1, + "part.empty": 1, + "rules": 1, + "word.to_s.dup": 1, + "word.empty": 1, + "inflections.uncountables.include": 1, + "result.downcase": 1, + "Z/": 1, + "rules.each": 1, + "object": 2, + "@user": 1, + "person": 1, + "attributes": 2, + "username": 1, + "email": 1, + "location": 1, + "created_at": 1, + "registered_at": 1, + "node": 2, + "role": 1, + "user": 1, + "user.is_admin": 1, + "child": 1, + "phone_numbers": 1, + "pnumbers": 1, + "extends": 1, + "node_numbers": 1, + "u": 1, + "partial": 1, + "u.phone_numbers": 1 + }, + "C": { + "#include": 154, + "int": 446, + "save_commit_buffer": 3, + ";": 5465, + "const": 358, + "char": 530, + "*commit_type": 2, + "static": 455, + "struct": 360, + "commit": 59, + "*check_commit": 1, + "(": 6243, + "object": 41, + "*obj": 9, + "unsigned": 140, + "*sha1": 16, + "quiet": 5, + ")": 6245, + "{": 1531, + "if": 1015, + "obj": 48, + "-": 1803, + "type": 36, + "OBJ_COMMIT": 5, + "error": 96, + "sha1_to_hex": 8, + "sha1": 20, + "typename": 2, + "return": 529, + "NULL": 330, + "}": 1547, + "*": 261, + "*lookup_commit_reference_gently": 2, + "deref_tag": 1, + "parse_object": 1, + "check_commit": 2, + "*lookup_commit_reference": 2, + "lookup_commit_reference_gently": 1, + "*lookup_commit_or_die": 2, + "*ref_name": 2, + "*c": 69, + "lookup_commit_reference": 2, + "c": 252, + "die": 5, + "_": 3, + "ref_name": 2, + "hashcmp": 2, + "object.sha1": 8, + "warning": 1, + "*lookup_commit": 2, + "lookup_object": 2, + "create_object": 2, + "alloc_commit_node": 1, + "*lookup_commit_reference_by_name": 2, + "*name": 12, + "[": 601, + "]": 601, + "*commit": 10, + "get_sha1": 1, + "name": 28, + "||": 141, + "parse_commit": 3, + "long": 105, + "parse_commit_date": 2, + "*buf": 10, + "*tail": 2, + "*dateptr": 1, + "buf": 57, + "+": 551, + "tail": 12, + "memcmp": 6, + "while": 70, + "<": 219, + "&&": 248, + "dateptr": 2, + "strtoul": 2, + "commit_graft": 13, + "**commit_graft": 1, + "commit_graft_alloc": 4, + "commit_graft_nr": 5, + "commit_graft_pos": 2, + "lo": 6, + "hi": 5, + "mi": 5, + "/": 9, + "*graft": 3, + "cmp": 9, + "graft": 10, + "else": 190, + "register_commit_graft": 2, + "ignore_dups": 2, + "pos": 7, + "free": 62, + "alloc_nr": 1, + "xrealloc": 2, + "sizeof": 71, + "parse_commit_buffer": 3, + "*item": 10, + "void": 288, + "*buffer": 6, + "size": 120, + "buffer": 10, + "*bufptr": 1, + "parent": 7, + "commit_list": 35, + "**pptr": 1, + "item": 24, + "object.parsed": 4, + "<=>": 16, + "bufptr": 12, + "46": 1, + "tree": 3, + "5": 1, + "45": 1, + "n": 70, + "bogus": 1, + "s": 154, + "get_sha1_hex": 2, + "lookup_tree": 1, + "pptr": 5, + "&": 442, + "parents": 4, + "lookup_commit_graft": 1, + "*new_parent": 2, + "48": 1, + "7": 1, + "47": 1, + "bad": 1, + "in": 11, + "nr_parent": 3, + "grafts_replace_parents": 1, + "continue": 20, + "new_parent": 6, + "lookup_commit": 2, + "commit_list_insert": 2, + "next": 8, + "i": 410, + "for": 88, + "date": 5, + "enum": 30, + "object_type": 1, + "ret": 142, + "read_sha1_file": 1, + "find_commit_subject": 2, + "*commit_buffer": 2, + "**subject": 2, + "*eol": 1, + "*p": 9, + "commit_buffer": 1, + "a": 80, + "b_date": 3, + "b": 66, + "a_date": 2, + "*commit_list_get_next": 1, + "*a": 9, + "commit_list_set_next": 1, + "*next": 6, + "commit_list_sort_by_date": 2, + "**list": 5, + "*list": 2, + "llist_mergesort": 1, + "peel_to_type": 1, + "util": 3, + "merge_remote_desc": 3, + "*desc": 1, + "desc": 5, + "xmalloc": 2, + "strdup": 1, + "**commit_list_append": 2, + "**next": 2, + "*new": 1, + "new": 4, + "": 1, + "": 2, + "": 8, + "": 4, + "": 2, + "//": 262, + "rfUTF8_IsContinuationbyte": 1, + "": 3, + "malloc": 3, + "": 5, + "memcpy": 35, + "e.t.c.": 1, + "int32_t": 112, + "rfFReadLine_UTF8": 5, + "FILE*": 64, + "f": 184, + "char**": 7, + "utf8": 36, + "uint32_t*": 34, + "byteLength": 197, + "bufferSize": 6, + "char*": 167, + "eof": 53, + "bytesN": 98, + "uint32_t": 144, + "bIndex": 5, + "#ifdef": 66, + "RF_NEWLINE_CRLF": 1, + "newLineFound": 1, + "false": 77, + "#endif": 243, + "*bufferSize": 1, + "RF_OPTION_FGETS_READBYTESN": 5, + "RF_MALLOC": 47, + "tempBuff": 6, + "uint16_t": 12, + "RF_LF": 10, + "break": 244, + "buff": 95, + "RF_SUCCESS": 14, + "RE_FILE_EOF": 22, + "EOF": 26, + "found": 20, + "*eofReached": 14, + "true": 73, + "LOG_ERROR": 64, + "num": 24, + "RF_HEXEQ_UI": 7, + "rfFgetc_UTF32BE": 3, + "else//": 14, + "undo": 5, + "the": 91, + "peek": 5, + "ahead": 5, + "of": 44, + "file": 6, + "pointer": 5, + "fseek": 19, + "SEEK_CUR": 19, + "rfFgets_UTF32LE": 2, + "eofReached": 4, + "do": 21, + "rfFgetc_UTF32LE": 4, + "rfFgets_UTF16BE": 2, + "rfFgetc_UTF16BE": 4, + "rfFgets_UTF16LE": 2, + "rfFgetc_UTF16LE": 4, + "rfFgets_UTF8": 2, + "rfFgetc_UTF8": 3, + "RF_HEXEQ_C": 9, + "fgetc": 9, + "check": 8, + "ferror": 2, + "RE_FILE_READ": 2, + "*ret": 20, + "cp": 12, + "c2": 13, + "c3": 9, + "c4": 5, + "i_READ_CHECK": 20, + "///": 4, + "success": 4, + "cc": 24, + "we": 10, + "need": 5, + "more": 2, + "bytes": 225, + "xC0": 3, + "xC1": 1, + "RE_UTF8_INVALID_SEQUENCE_INVALID_BYTE": 6, + "RE_UTF8_INVALID_SEQUENCE_END": 6, + "rfUTF8_IsContinuationByte": 12, + "RE_UTF8_INVALID_SEQUENCE_CONBYTE": 6, + "decoded": 3, + "codepoint": 47, + "F": 38, + "|": 132, + "<<": 56, + "end": 48, + "case": 273, + "xE0": 2, + "xF": 5, + "to": 37, + "decode": 6, + "xF0": 2, + "RF_HEXGE_C": 1, + "xBF": 2, + "//invalid": 1, + "byte": 6, + "value": 9, + "are": 6, + "from": 16, + "xFF": 1, + "//if": 1, + "needing": 1, + "than": 5, + "swapE": 21, + "v1": 38, + "v2": 26, + "rfUTILS_Endianess": 24, + "RF_LITTLE_ENDIAN": 23, + "fread": 12, + "swap": 9, + "endianess": 40, + "needed": 10, + "rfUTILS_SwapEndianUS": 10, + "RF_HEXGE_US": 4, + "xD800": 8, + "RF_HEXLE_US": 4, + "xDFFF": 8, + "RF_HEXL_US": 8, + "RF_HEXG_US": 8, + "xDBFF": 4, + "RE_UTF16_INVALID_SEQUENCE": 20, + "RE_UTF16_NO_SURRPAIR": 2, + "xDC00": 4, + "user": 2, + "wants": 2, + "ff": 10, + "uint16_t*": 11, + "surrogate": 4, + "pair": 4, + "existence": 2, + "RF_BIG_ENDIAN": 10, + "rfUTILS_SwapEndianUI": 11, + "rfFback_UTF32BE": 2, + "i_FSEEK_CHECK": 14, + "rfFback_UTF32LE": 2, + "rfFback_UTF16BE": 2, + "rfFback_UTF16LE": 2, + "rfFback_UTF8": 2, + "switch": 46, + "depending": 1, + "on": 4, + "number": 19, + "read": 1, + "backwards": 1, + "default": 33, + "RE_UTF8_INVALID_SEQUENCE": 2, + "git_usage_string": 2, + "git_more_info_string": 2, + "N_": 1, + "startup_info": 3, + "git_startup_info": 2, + "use_pager": 8, + "pager_config": 3, + "*cmd": 5, + "want": 3, + "*value": 5, + "pager_command_config": 2, + "*var": 4, + "*data": 12, + "data": 69, + "prefixcmp": 3, + "var": 7, + "strcmp": 20, + "cmd": 46, + "git_config_maybe_bool": 1, + "xstrdup": 2, + "check_pager_config": 3, + "c.cmd": 1, + "c.want": 2, + "c.value": 3, + "git_config": 3, + "pager_program": 1, + "commit_pager_choice": 4, + "setenv": 1, + "setup_pager": 1, + "handle_options": 2, + "***argv": 2, + "*argc": 1, + "*envchanged": 1, + "**orig_argv": 1, + "*argv": 6, + "new_argv": 7, + "option_count": 1, + "count": 17, + "alias_command": 4, + "trace_argv_printf": 3, + "*argcp": 4, + "subdir": 3, + "chdir": 2, + "die_errno": 3, + "errno": 20, + "saved_errno": 1, + "git_version_string": 1, + "GIT_VERSION": 1, + "#define": 920, + "RUN_SETUP": 81, + "RUN_SETUP_GENTLY": 16, + "USE_PAGER": 3, + "NEED_WORK_TREE": 18, + "cmd_struct": 4, + "option": 9, + "run_builtin": 2, + "argc": 26, + "**argv": 6, + "status": 57, + "help": 4, + "stat": 3, + "st": 2, + "*prefix": 7, + "prefix": 34, + "argv": 54, + "p": 60, + "setup_git_directory": 1, + "nongit_ok": 2, + "setup_git_directory_gently": 1, + "have_repository": 1, + "trace_repo_setup": 1, + "setup_work_tree": 1, + "fn": 5, + "fstat": 1, + "fileno": 1, + "stdout": 5, + "S_ISFIFO": 1, + "st.st_mode": 2, + "S_ISSOCK": 1, + "fflush": 2, + "fclose": 5, + "handle_internal_command": 3, + "commands": 3, + "cmd_add": 2, + "cmd_annotate": 1, + "cmd_apply": 1, + "cmd_archive": 1, + "cmd_bisect__helper": 1, + "cmd_blame": 2, + "cmd_branch": 1, + "cmd_bundle": 1, + "cmd_cat_file": 1, + "cmd_check_attr": 1, + "cmd_check_ref_format": 1, + "cmd_checkout": 1, + "cmd_checkout_index": 1, + "cmd_cherry": 1, + "cmd_cherry_pick": 1, + "cmd_clean": 1, + "cmd_clone": 1, + "cmd_column": 1, + "cmd_commit": 1, + "cmd_commit_tree": 1, + "cmd_config": 1, + "cmd_count_objects": 1, + "cmd_describe": 1, + "cmd_diff": 1, + "cmd_diff_files": 1, + "cmd_diff_index": 1, + "cmd_diff_tree": 1, + "cmd_fast_export": 1, + "cmd_fetch": 1, + "cmd_fetch_pack": 1, + "cmd_fmt_merge_msg": 1, + "cmd_for_each_ref": 1, + "cmd_format_patch": 1, + "cmd_fsck": 2, + "cmd_gc": 1, + "cmd_get_tar_commit_id": 1, + "cmd_grep": 1, + "cmd_hash_object": 1, + "cmd_help": 1, + "cmd_index_pack": 1, + "cmd_init_db": 2, + "cmd_log": 1, + "cmd_ls_files": 1, + "cmd_ls_remote": 2, + "cmd_ls_tree": 1, + "cmd_mailinfo": 1, + "cmd_mailsplit": 1, + "cmd_merge": 1, + "cmd_merge_base": 1, + "cmd_merge_file": 1, + "cmd_merge_index": 1, + "cmd_merge_ours": 1, + "cmd_merge_recursive": 4, + "cmd_merge_tree": 1, + "cmd_mktag": 1, + "cmd_mktree": 1, + "cmd_mv": 1, + "cmd_name_rev": 1, + "cmd_notes": 1, + "cmd_pack_objects": 1, + "cmd_pack_redundant": 1, + "cmd_pack_refs": 1, + "cmd_patch_id": 1, + "cmd_prune": 1, + "cmd_prune_packed": 1, + "cmd_push": 1, + "cmd_read_tree": 1, + "cmd_receive_pack": 1, + "cmd_reflog": 1, + "cmd_remote": 1, + "cmd_remote_ext": 1, + "cmd_remote_fd": 1, + "cmd_replace": 1, + "cmd_repo_config": 1, + "cmd_rerere": 1, + "cmd_reset": 1, + "cmd_rev_list": 1, + "cmd_rev_parse": 1, + "cmd_revert": 1, + "cmd_rm": 1, + "cmd_send_pack": 1, + "cmd_shortlog": 1, + "cmd_show": 1, + "cmd_show_branch": 1, + "cmd_show_ref": 1, + "cmd_status": 1, + "cmd_stripspace": 1, + "cmd_symbolic_ref": 1, + "cmd_tag": 1, + "cmd_tar_tree": 1, + "cmd_unpack_file": 1, + "cmd_unpack_objects": 1, + "cmd_update_index": 1, + "cmd_update_ref": 1, + "cmd_update_server_info": 1, + "cmd_upload_archive": 1, + "cmd_upload_archive_writer": 1, + "cmd_var": 1, + "cmd_verify_pack": 1, + "cmd_verify_tag": 1, + "cmd_version": 1, + "cmd_whatchanged": 1, + "cmd_write_tree": 1, + "ext": 4, + "STRIP_EXTENSION": 1, + "strlen": 17, + "*argv0": 1, + "argv0": 2, + "ARRAY_SIZE": 1, + "exit": 20, + "execv_dashed_external": 2, + "strbuf": 12, + "STRBUF_INIT": 1, + "*tmp": 1, + "strbuf_addf": 1, + "tmp": 6, + "cmd.buf": 1, + "run_command_v_opt": 1, + "RUN_SILENT_EXEC_FAILURE": 1, + "RUN_CLEAN_ON_EXIT": 1, + "ENOENT": 3, + "strbuf_release": 1, + "run_argv": 2, + "done_alias": 4, + "argcp": 2, + "handle_alias": 1, + "main": 3, + "git_extract_argv0_path": 1, + "git_setup_gettext": 1, + "printf": 4, + "list_common_cmds_help": 1, + "setup_path": 1, + "done_help": 3, + "was_alias": 3, + "fprintf": 18, + "stderr": 15, + "help_unknown_cmd": 1, + "strerror": 4, + "": 5, + "": 2, + "": 1, + "": 1, + "": 2, + "__APPLE__": 2, + "#if": 92, + "defined": 42, + "TARGET_OS_IPHONE": 1, + "#else": 94, + "extern": 38, + "**environ": 1, + "uv__chld": 2, + "EV_P_": 1, + "ev_child*": 1, + "watcher": 4, + "revents": 2, + "rstatus": 1, + "exit_status": 3, + "term_signal": 3, + "uv_process_t": 1, + "*process": 1, + "assert": 41, + "process": 19, + "child_watcher": 5, + "EV_CHILD": 1, + "ev_child_stop": 2, + "EV_A_": 1, + "WIFEXITED": 1, + "WEXITSTATUS": 2, + "WIFSIGNALED": 2, + "WTERMSIG": 2, + "exit_cb": 3, + "uv__make_socketpair": 2, + "fds": 20, + "flags": 89, + "SOCK_NONBLOCK": 2, + "fl": 8, + "SOCK_CLOEXEC": 1, + "UV__F_NONBLOCK": 5, + "socketpair": 2, + "AF_UNIX": 2, + "SOCK_STREAM": 2, + "EINVAL": 6, + "uv__cloexec": 4, + "uv__nonblock": 5, + "uv__make_pipe": 2, + "__linux__": 3, + "UV__O_CLOEXEC": 1, + "UV__O_NONBLOCK": 1, + "uv__pipe2": 1, + "ENOSYS": 1, + "pipe": 1, + "uv__process_init_stdio": 2, + "uv_stdio_container_t*": 4, + "container": 17, + "writable": 8, + "fd": 34, + "UV_IGNORE": 2, + "UV_CREATE_PIPE": 4, + "UV_INHERIT_FD": 3, + "UV_INHERIT_STREAM": 2, + "data.stream": 7, + "UV_NAMED_PIPE": 2, + "data.fd": 1, + "uv__process_stdio_flags": 2, + "uv_pipe_t*": 1, + "ipc": 1, + "UV_STREAM_READABLE": 2, + "UV_STREAM_WRITABLE": 2, + "uv__process_open_stream": 2, + "child_fd": 3, + "close": 13, + "uv__stream_open": 1, + "uv_stream_t*": 2, + "uv__process_close_stream": 2, + "uv__stream_close": 1, + "uv__process_child_init": 2, + "uv_process_options_t": 2, + "options": 62, + "stdio_count": 7, + "int*": 22, + "pipes": 23, + "options.flags": 4, + "UV_PROCESS_DETACHED": 2, + "setsid": 2, + "close_fd": 2, + "use_fd": 7, + "open": 4, + "O_RDONLY": 1, + "O_RDWR": 2, + "perror": 5, + "_exit": 6, + "dup2": 4, + "options.cwd": 2, + "UV_PROCESS_SETGID": 2, + "setgid": 1, + "options.gid": 1, + "UV_PROCESS_SETUID": 2, + "setuid": 1, + "options.uid": 1, + "environ": 4, + "options.env": 1, + "execvp": 1, + "options.file": 2, + "options.args": 1, + "#ifndef": 89, + "SPAWN_WAIT_EXEC": 5, + "uv_spawn": 1, + "uv_loop_t*": 1, + "loop": 9, + "uv_process_t*": 3, + "save_our_env": 3, + "options.stdio_count": 4, + "signal_pipe": 7, + "pollfd": 1, + "pfd": 2, + "pid_t": 2, + "pid": 13, + "ENOMEM": 4, + "goto": 159, + "UV_PROCESS_WINDOWS_VERBATIM_ARGUMENTS": 1, + "uv__handle_init": 1, + "uv_handle_t*": 1, + "UV_PROCESS": 1, + "counters.process_init": 1, + "uv__handle_start": 1, + "options.exit_cb": 1, + "options.stdio": 3, + "fork": 2, + "pfd.fd": 1, + "pfd.events": 1, + "POLLIN": 1, + "POLLHUP": 1, + "pfd.revents": 1, + "poll": 1, + "EINTR": 1, + "ev_child_init": 1, + "ev_child_start": 1, + "ev": 2, + "child_watcher.data": 1, + "j": 206, + "uv__set_sys_error": 2, + "uv_process_kill": 1, + "signum": 4, + "r": 58, + "kill": 4, + "uv_err_t": 1, + "uv_kill": 1, + "uv__new_sys_error": 1, + "uv_ok_": 1, + "uv__process_close": 1, + "handle": 10, + "uv__handle_stop": 1, + "*blob_type": 2, + "blob": 6, + "*lookup_blob": 2, + "OBJ_BLOB": 3, + "alloc_blob_node": 1, + "parse_blob_buffer": 2, + "": 3, + "_WIN32": 3, + "strncasecmp": 2, + "_strnicmp": 1, + "REF_TABLE_SIZE": 1, + "BUFFER_BLOCK": 5, + "BUFFER_SPAN": 9, + "MKD_LI_END": 1, + "gperf_case_strncmp": 1, + "s1": 6, + "s2": 6, + "GPERF_DOWNCASE": 1, + "GPERF_CASE_STRNCMP": 1, + "link_ref": 2, + "id": 13, + "*link": 1, + "*title": 1, + "sd_markdown": 6, + "typedef": 191, + "size_t": 52, + "tag": 1, + "tag_len": 3, + "w": 6, + "is_empty": 4, + "htmlblock_end": 3, + "*curtag": 2, + "*rndr": 4, + "uint8_t": 6, + "start_of_line": 2, + "tag_size": 3, + "curtag": 8, + "end_tag": 4, + "block_lines": 3, + "htmlblock_end_tag": 1, + "rndr": 25, + "parse_htmlblock": 1, + "*ob": 3, + "do_render": 4, + "tag_end": 7, + "work": 4, + "find_block_tag": 1, + "work.size": 5, + "cb.blockhtml": 6, + "ob": 14, + "opaque": 8, + "parse_table_row": 1, + "columns": 3, + "*col_data": 1, + "header_flag": 3, + "col": 9, + "*row_work": 1, + "cb.table_cell": 3, + "cb.table_row": 2, + "row_work": 4, + "rndr_newbuf": 2, + "cell_start": 5, + "cell_end": 6, + "*cell_work": 1, + "cell_work": 3, + "_isspace": 3, + "parse_inline": 1, + "col_data": 2, + "rndr_popbuf": 2, + "empty_cell": 2, + "parse_table_header": 1, + "*columns": 2, + "**column_data": 1, + "header_end": 7, + "under_end": 1, + "*column_data": 1, + "calloc": 1, + "beg": 10, + "doc_size": 6, + "document": 9, + "UTF8_BOM": 1, + "is_ref": 1, + "md": 18, + "refs": 2, + "expand_tabs": 1, + "text": 22, + "bufputc": 2, + "bufgrow": 1, + "MARKDOWN_GROW": 1, + "cb.doc_header": 2, + "parse_block": 1, + "cb.doc_footer": 2, + "bufrelease": 3, + "free_link_refs": 1, + "work_bufs": 8, + ".size": 2, + "sd_markdown_free": 1, + "*md": 1, + ".asize": 2, + ".item": 2, + "stack_free": 2, + "sd_version": 1, + "*ver_major": 2, + "*ver_minor": 2, + "*ver_revision": 2, + "SUNDOWN_VER_MAJOR": 1, + "SUNDOWN_VER_MINOR": 1, + "SUNDOWN_VER_REVISION": 1, + "__wglew_h__": 2, + "__WGLEW_H__": 1, + "__wglext_h_": 2, + "#error": 4, + "wglext.h": 1, + "included": 2, + "before": 4, + "wglew.h": 1, + "WINAPI": 119, + "": 1, + "GLEW_STATIC": 1, + "__cplusplus": 20, + "WGL_3DFX_multisample": 2, + "WGL_SAMPLE_BUFFERS_3DFX": 1, + "WGL_SAMPLES_3DFX": 1, + "WGLEW_3DFX_multisample": 1, + "WGLEW_GET_VAR": 49, + "__WGLEW_3DFX_multisample": 2, + "WGL_3DL_stereo_control": 2, + "WGL_STEREO_EMITTER_ENABLE_3DL": 1, + "WGL_STEREO_EMITTER_DISABLE_3DL": 1, + "WGL_STEREO_POLARITY_NORMAL_3DL": 1, + "WGL_STEREO_POLARITY_INVERT_3DL": 1, + "BOOL": 84, + "PFNWGLSETSTEREOEMITTERSTATE3DLPROC": 2, + "HDC": 65, + "hDC": 33, + "UINT": 30, + "uState": 1, + "wglSetStereoEmitterState3DL": 1, + "WGLEW_GET_FUN": 120, + "__wglewSetStereoEmitterState3DL": 2, + "WGLEW_3DL_stereo_control": 1, + "__WGLEW_3DL_stereo_control": 2, + "WGL_AMD_gpu_association": 2, + "WGL_GPU_VENDOR_AMD": 1, + "F00": 1, + "WGL_GPU_RENDERER_STRING_AMD": 1, + "F01": 1, + "WGL_GPU_OPENGL_VERSION_STRING_AMD": 1, + "F02": 1, + "WGL_GPU_FASTEST_TARGET_GPUS_AMD": 1, + "A2": 2, + "WGL_GPU_RAM_AMD": 1, + "A3": 2, + "WGL_GPU_CLOCK_AMD": 1, + "A4": 2, + "WGL_GPU_NUM_PIPES_AMD": 1, + "A5": 3, + "WGL_GPU_NUM_SIMD_AMD": 1, + "A6": 2, + "WGL_GPU_NUM_RB_AMD": 1, + "A7": 2, + "WGL_GPU_NUM_SPI_AMD": 1, + "A8": 2, + "VOID": 6, + "PFNWGLBLITCONTEXTFRAMEBUFFERAMDPROC": 2, + "HGLRC": 14, + "dstCtx": 1, + "GLint": 18, + "srcX0": 1, + "srcY0": 1, + "srcX1": 1, + "srcY1": 1, + "dstX0": 1, + "dstY0": 1, + "dstX1": 1, + "dstY1": 1, + "GLbitfield": 1, + "mask": 1, + "GLenum": 8, + "filter": 1, + "PFNWGLCREATEASSOCIATEDCONTEXTAMDPROC": 2, + "PFNWGLCREATEASSOCIATEDCONTEXTATTRIBSAMDPROC": 2, + "hShareContext": 2, + "attribList": 2, + "PFNWGLDELETEASSOCIATEDCONTEXTAMDPROC": 2, + "hglrc": 5, + "PFNWGLGETCONTEXTGPUIDAMDPROC": 2, + "PFNWGLGETCURRENTASSOCIATEDCONTEXTAMDPROC": 2, + "PFNWGLGETGPUIDSAMDPROC": 2, + "maxCount": 1, + "UINT*": 6, + "ids": 1, + "INT": 3, + "PFNWGLGETGPUINFOAMDPROC": 2, + "property": 1, + "dataType": 1, + "void*": 135, + "PFNWGLMAKEASSOCIATEDCONTEXTCURRENTAMDPROC": 2, + "wglBlitContextFramebufferAMD": 1, + "__wglewBlitContextFramebufferAMD": 2, + "wglCreateAssociatedContextAMD": 1, + "__wglewCreateAssociatedContextAMD": 2, + "wglCreateAssociatedContextAttribsAMD": 1, + "__wglewCreateAssociatedContextAttribsAMD": 2, + "wglDeleteAssociatedContextAMD": 1, + "__wglewDeleteAssociatedContextAMD": 2, + "wglGetContextGPUIDAMD": 1, + "__wglewGetContextGPUIDAMD": 2, + "wglGetCurrentAssociatedContextAMD": 1, + "__wglewGetCurrentAssociatedContextAMD": 2, + "wglGetGPUIDsAMD": 1, + "__wglewGetGPUIDsAMD": 2, + "wglGetGPUInfoAMD": 1, + "__wglewGetGPUInfoAMD": 2, + "wglMakeAssociatedContextCurrentAMD": 1, + "__wglewMakeAssociatedContextCurrentAMD": 2, + "WGLEW_AMD_gpu_association": 1, + "__WGLEW_AMD_gpu_association": 2, + "WGL_ARB_buffer_region": 2, + "WGL_FRONT_COLOR_BUFFER_BIT_ARB": 1, + "WGL_BACK_COLOR_BUFFER_BIT_ARB": 1, + "WGL_DEPTH_BUFFER_BIT_ARB": 1, + "WGL_STENCIL_BUFFER_BIT_ARB": 1, + "HANDLE": 14, + "PFNWGLCREATEBUFFERREGIONARBPROC": 2, + "iLayerPlane": 5, + "uType": 1, + "PFNWGLDELETEBUFFERREGIONARBPROC": 2, + "hRegion": 3, + "PFNWGLRESTOREBUFFERREGIONARBPROC": 2, + "x": 57, + "y": 14, + "width": 3, + "height": 3, + "xSrc": 1, + "ySrc": 1, + "PFNWGLSAVEBUFFERREGIONARBPROC": 2, + "wglCreateBufferRegionARB": 1, + "__wglewCreateBufferRegionARB": 2, + "wglDeleteBufferRegionARB": 1, + "__wglewDeleteBufferRegionARB": 2, + "wglRestoreBufferRegionARB": 1, + "__wglewRestoreBufferRegionARB": 2, + "wglSaveBufferRegionARB": 1, + "__wglewSaveBufferRegionARB": 2, + "WGLEW_ARB_buffer_region": 1, + "__WGLEW_ARB_buffer_region": 2, + "WGL_ARB_create_context": 2, + "WGL_CONTEXT_DEBUG_BIT_ARB": 1, + "WGL_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB": 1, + "WGL_CONTEXT_MAJOR_VERSION_ARB": 1, + "WGL_CONTEXT_MINOR_VERSION_ARB": 1, + "WGL_CONTEXT_LAYER_PLANE_ARB": 1, + "WGL_CONTEXT_FLAGS_ARB": 1, + "ERROR_INVALID_VERSION_ARB": 1, + "ERROR_INVALID_PROFILE_ARB": 1, + "PFNWGLCREATECONTEXTATTRIBSARBPROC": 2, + "wglCreateContextAttribsARB": 1, + "__wglewCreateContextAttribsARB": 2, + "WGLEW_ARB_create_context": 1, + "__WGLEW_ARB_create_context": 2, + "WGL_ARB_create_context_profile": 2, + "WGL_CONTEXT_CORE_PROFILE_BIT_ARB": 1, + "WGL_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB": 1, + "WGL_CONTEXT_PROFILE_MASK_ARB": 1, + "WGLEW_ARB_create_context_profile": 1, + "__WGLEW_ARB_create_context_profile": 2, + "WGL_ARB_create_context_robustness": 2, + "WGL_CONTEXT_ROBUST_ACCESS_BIT_ARB": 1, + "WGL_LOSE_CONTEXT_ON_RESET_ARB": 1, + "WGL_CONTEXT_RESET_NOTIFICATION_STRATEGY_ARB": 1, + "WGL_NO_RESET_NOTIFICATION_ARB": 1, + "WGLEW_ARB_create_context_robustness": 1, + "__WGLEW_ARB_create_context_robustness": 2, + "WGL_ARB_extensions_string": 2, + "PFNWGLGETEXTENSIONSSTRINGARBPROC": 2, + "hdc": 16, + "wglGetExtensionsStringARB": 1, + "__wglewGetExtensionsStringARB": 2, + "WGLEW_ARB_extensions_string": 1, + "__WGLEW_ARB_extensions_string": 2, + "WGL_ARB_framebuffer_sRGB": 2, + "WGL_FRAMEBUFFER_SRGB_CAPABLE_ARB": 1, + "A9": 2, + "WGLEW_ARB_framebuffer_sRGB": 1, + "__WGLEW_ARB_framebuffer_sRGB": 2, + "WGL_ARB_make_current_read": 2, + "ERROR_INVALID_PIXEL_TYPE_ARB": 1, + "ERROR_INCOMPATIBLE_DEVICE_CONTEXTS_ARB": 1, + "PFNWGLGETCURRENTREADDCARBPROC": 2, + "PFNWGLMAKECONTEXTCURRENTARBPROC": 2, + "hDrawDC": 2, + "hReadDC": 2, + "wglGetCurrentReadDCARB": 1, + "__wglewGetCurrentReadDCARB": 2, + "wglMakeContextCurrentARB": 1, + "__wglewMakeContextCurrentARB": 2, + "WGLEW_ARB_make_current_read": 1, + "__WGLEW_ARB_make_current_read": 2, + "WGL_ARB_multisample": 2, + "WGL_SAMPLE_BUFFERS_ARB": 1, + "WGL_SAMPLES_ARB": 1, + "WGLEW_ARB_multisample": 1, + "__WGLEW_ARB_multisample": 2, + "WGL_ARB_pbuffer": 2, + "WGL_DRAW_TO_PBUFFER_ARB": 1, + "D": 8, + "WGL_MAX_PBUFFER_PIXELS_ARB": 1, + "E": 11, + "WGL_MAX_PBUFFER_WIDTH_ARB": 1, + "WGL_MAX_PBUFFER_HEIGHT_ARB": 1, + "WGL_PBUFFER_LARGEST_ARB": 1, + "WGL_PBUFFER_WIDTH_ARB": 1, + "WGL_PBUFFER_HEIGHT_ARB": 1, + "WGL_PBUFFER_LOST_ARB": 1, + "DECLARE_HANDLE": 6, + "HPBUFFERARB": 12, + "PFNWGLCREATEPBUFFERARBPROC": 2, + "iPixelFormat": 6, + "iWidth": 2, + "iHeight": 2, + "piAttribList": 4, + "PFNWGLDESTROYPBUFFERARBPROC": 2, + "hPbuffer": 14, + "PFNWGLGETPBUFFERDCARBPROC": 2, + "PFNWGLQUERYPBUFFERARBPROC": 2, + "iAttribute": 8, + "piValue": 8, + "PFNWGLRELEASEPBUFFERDCARBPROC": 2, + "wglCreatePbufferARB": 1, + "__wglewCreatePbufferARB": 2, + "wglDestroyPbufferARB": 1, + "__wglewDestroyPbufferARB": 2, + "wglGetPbufferDCARB": 1, + "__wglewGetPbufferDCARB": 2, + "wglQueryPbufferARB": 1, + "__wglewQueryPbufferARB": 2, + "wglReleasePbufferDCARB": 1, + "__wglewReleasePbufferDCARB": 2, + "WGLEW_ARB_pbuffer": 1, + "__WGLEW_ARB_pbuffer": 2, + "WGL_ARB_pixel_format": 2, + "WGL_NUMBER_PIXEL_FORMATS_ARB": 1, + "WGL_DRAW_TO_WINDOW_ARB": 1, + "WGL_DRAW_TO_BITMAP_ARB": 1, + "WGL_ACCELERATION_ARB": 1, + "WGL_NEED_PALETTE_ARB": 1, + "WGL_NEED_SYSTEM_PALETTE_ARB": 1, + "WGL_SWAP_LAYER_BUFFERS_ARB": 1, + "WGL_SWAP_METHOD_ARB": 1, + "WGL_NUMBER_OVERLAYS_ARB": 1, + "WGL_NUMBER_UNDERLAYS_ARB": 1, + "WGL_TRANSPARENT_ARB": 1, + "A": 11, + "WGL_SHARE_DEPTH_ARB": 1, + "C": 14, + "WGL_SHARE_STENCIL_ARB": 1, + "WGL_SHARE_ACCUM_ARB": 1, + "WGL_SUPPORT_GDI_ARB": 1, + "WGL_SUPPORT_OPENGL_ARB": 1, + "WGL_DOUBLE_BUFFER_ARB": 1, + "WGL_STEREO_ARB": 1, + "WGL_PIXEL_TYPE_ARB": 1, + "WGL_COLOR_BITS_ARB": 1, + "WGL_RED_BITS_ARB": 1, + "WGL_RED_SHIFT_ARB": 1, + "WGL_GREEN_BITS_ARB": 1, + "WGL_GREEN_SHIFT_ARB": 1, + "WGL_BLUE_BITS_ARB": 1, + "WGL_BLUE_SHIFT_ARB": 1, + "WGL_ALPHA_BITS_ARB": 1, + "B": 9, + "WGL_ALPHA_SHIFT_ARB": 1, + "WGL_ACCUM_BITS_ARB": 1, + "WGL_ACCUM_RED_BITS_ARB": 1, + "WGL_ACCUM_GREEN_BITS_ARB": 1, + "WGL_ACCUM_BLUE_BITS_ARB": 1, + "WGL_ACCUM_ALPHA_BITS_ARB": 1, + "WGL_DEPTH_BITS_ARB": 1, + "WGL_STENCIL_BITS_ARB": 1, + "WGL_AUX_BUFFERS_ARB": 1, + "WGL_NO_ACCELERATION_ARB": 1, + "WGL_GENERIC_ACCELERATION_ARB": 1, + "WGL_FULL_ACCELERATION_ARB": 1, + "WGL_SWAP_EXCHANGE_ARB": 1, + "WGL_SWAP_COPY_ARB": 1, + "WGL_SWAP_UNDEFINED_ARB": 1, + "WGL_TYPE_RGBA_ARB": 1, + "WGL_TYPE_COLORINDEX_ARB": 1, + "WGL_TRANSPARENT_RED_VALUE_ARB": 1, + "WGL_TRANSPARENT_GREEN_VALUE_ARB": 1, + "WGL_TRANSPARENT_BLUE_VALUE_ARB": 1, + "WGL_TRANSPARENT_ALPHA_VALUE_ARB": 1, + "WGL_TRANSPARENT_INDEX_VALUE_ARB": 1, + "PFNWGLCHOOSEPIXELFORMATARBPROC": 2, + "piAttribIList": 2, + "FLOAT": 4, + "*pfAttribFList": 2, + "nMaxFormats": 2, + "*piFormats": 2, + "*nNumFormats": 2, + "PFNWGLGETPIXELFORMATATTRIBFVARBPROC": 2, + "nAttributes": 4, + "piAttributes": 4, + "*pfValues": 2, + "PFNWGLGETPIXELFORMATATTRIBIVARBPROC": 2, + "*piValues": 2, + "wglChoosePixelFormatARB": 1, + "__wglewChoosePixelFormatARB": 2, + "wglGetPixelFormatAttribfvARB": 1, + "__wglewGetPixelFormatAttribfvARB": 2, + "wglGetPixelFormatAttribivARB": 1, + "__wglewGetPixelFormatAttribivARB": 2, + "WGLEW_ARB_pixel_format": 1, + "__WGLEW_ARB_pixel_format": 2, + "WGL_ARB_pixel_format_float": 2, + "WGL_TYPE_RGBA_FLOAT_ARB": 1, + "A0": 3, + "WGLEW_ARB_pixel_format_float": 1, + "__WGLEW_ARB_pixel_format_float": 2, + "WGL_ARB_render_texture": 2, + "WGL_BIND_TO_TEXTURE_RGB_ARB": 1, + "WGL_BIND_TO_TEXTURE_RGBA_ARB": 1, + "WGL_TEXTURE_FORMAT_ARB": 1, + "WGL_TEXTURE_TARGET_ARB": 1, + "WGL_MIPMAP_TEXTURE_ARB": 1, + "WGL_TEXTURE_RGB_ARB": 1, + "WGL_TEXTURE_RGBA_ARB": 1, + "WGL_NO_TEXTURE_ARB": 2, + "WGL_TEXTURE_CUBE_MAP_ARB": 1, + "WGL_TEXTURE_1D_ARB": 1, + "WGL_TEXTURE_2D_ARB": 1, + "WGL_MIPMAP_LEVEL_ARB": 1, + "WGL_CUBE_MAP_FACE_ARB": 1, + "WGL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB": 1, + "WGL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB": 1, + "WGL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB": 1, + "WGL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB": 1, + "WGL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB": 1, + "WGL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB": 1, + "WGL_FRONT_LEFT_ARB": 1, + "WGL_FRONT_RIGHT_ARB": 1, + "WGL_BACK_LEFT_ARB": 1, + "WGL_BACK_RIGHT_ARB": 1, + "WGL_AUX0_ARB": 1, + "WGL_AUX1_ARB": 1, + "WGL_AUX2_ARB": 1, + "WGL_AUX3_ARB": 1, + "WGL_AUX4_ARB": 1, + "WGL_AUX5_ARB": 1, + "WGL_AUX6_ARB": 1, + "WGL_AUX7_ARB": 1, + "WGL_AUX8_ARB": 1, + "WGL_AUX9_ARB": 1, + "PFNWGLBINDTEXIMAGEARBPROC": 2, + "iBuffer": 2, + "PFNWGLRELEASETEXIMAGEARBPROC": 2, + "PFNWGLSETPBUFFERATTRIBARBPROC": 2, + "wglBindTexImageARB": 1, + "__wglewBindTexImageARB": 2, + "wglReleaseTexImageARB": 1, + "__wglewReleaseTexImageARB": 2, + "wglSetPbufferAttribARB": 1, + "__wglewSetPbufferAttribARB": 2, + "WGLEW_ARB_render_texture": 1, + "__WGLEW_ARB_render_texture": 2, + "WGL_ATI_pixel_format_float": 2, + "WGL_TYPE_RGBA_FLOAT_ATI": 1, + "GL_RGBA_FLOAT_MODE_ATI": 1, + "GL_COLOR_CLEAR_UNCLAMPED_VALUE_ATI": 1, + "WGLEW_ATI_pixel_format_float": 1, + "__WGLEW_ATI_pixel_format_float": 2, + "WGL_ATI_render_texture_rectangle": 2, + "WGL_TEXTURE_RECTANGLE_ATI": 1, + "WGLEW_ATI_render_texture_rectangle": 1, + "__WGLEW_ATI_render_texture_rectangle": 2, + "WGL_EXT_create_context_es2_profile": 2, + "WGL_CONTEXT_ES2_PROFILE_BIT_EXT": 1, + "WGLEW_EXT_create_context_es2_profile": 1, + "__WGLEW_EXT_create_context_es2_profile": 2, + "WGL_EXT_depth_float": 2, + "WGL_DEPTH_FLOAT_EXT": 1, + "WGLEW_EXT_depth_float": 1, + "__WGLEW_EXT_depth_float": 2, + "WGL_EXT_display_color_table": 2, + "GLboolean": 53, + "PFNWGLBINDDISPLAYCOLORTABLEEXTPROC": 2, + "GLushort": 3, + "PFNWGLCREATEDISPLAYCOLORTABLEEXTPROC": 2, + "PFNWGLDESTROYDISPLAYCOLORTABLEEXTPROC": 2, + "PFNWGLLOADDISPLAYCOLORTABLEEXTPROC": 2, + "GLushort*": 1, + "table": 1, + "GLuint": 9, + "length": 58, + "wglBindDisplayColorTableEXT": 1, + "__wglewBindDisplayColorTableEXT": 2, + "wglCreateDisplayColorTableEXT": 1, + "__wglewCreateDisplayColorTableEXT": 2, + "wglDestroyDisplayColorTableEXT": 1, + "__wglewDestroyDisplayColorTableEXT": 2, + "wglLoadDisplayColorTableEXT": 1, + "__wglewLoadDisplayColorTableEXT": 2, + "WGLEW_EXT_display_color_table": 1, + "__WGLEW_EXT_display_color_table": 2, + "WGL_EXT_extensions_string": 2, + "PFNWGLGETEXTENSIONSSTRINGEXTPROC": 2, + "wglGetExtensionsStringEXT": 1, + "__wglewGetExtensionsStringEXT": 2, + "WGLEW_EXT_extensions_string": 1, + "__WGLEW_EXT_extensions_string": 2, + "WGL_EXT_framebuffer_sRGB": 2, + "WGL_FRAMEBUFFER_SRGB_CAPABLE_EXT": 1, + "WGLEW_EXT_framebuffer_sRGB": 1, + "__WGLEW_EXT_framebuffer_sRGB": 2, + "WGL_EXT_make_current_read": 2, + "ERROR_INVALID_PIXEL_TYPE_EXT": 1, + "PFNWGLGETCURRENTREADDCEXTPROC": 2, + "PFNWGLMAKECONTEXTCURRENTEXTPROC": 2, + "wglGetCurrentReadDCEXT": 1, + "__wglewGetCurrentReadDCEXT": 2, + "wglMakeContextCurrentEXT": 1, + "__wglewMakeContextCurrentEXT": 2, + "WGLEW_EXT_make_current_read": 1, + "__WGLEW_EXT_make_current_read": 2, + "WGL_EXT_multisample": 2, + "WGL_SAMPLE_BUFFERS_EXT": 1, + "WGL_SAMPLES_EXT": 1, + "WGLEW_EXT_multisample": 1, + "__WGLEW_EXT_multisample": 2, + "WGL_EXT_pbuffer": 2, + "WGL_DRAW_TO_PBUFFER_EXT": 1, + "WGL_MAX_PBUFFER_PIXELS_EXT": 1, + "WGL_MAX_PBUFFER_WIDTH_EXT": 1, + "WGL_MAX_PBUFFER_HEIGHT_EXT": 1, + "WGL_OPTIMAL_PBUFFER_WIDTH_EXT": 1, + "WGL_OPTIMAL_PBUFFER_HEIGHT_EXT": 1, + "WGL_PBUFFER_LARGEST_EXT": 1, + "WGL_PBUFFER_WIDTH_EXT": 1, + "WGL_PBUFFER_HEIGHT_EXT": 1, + "HPBUFFEREXT": 6, + "PFNWGLCREATEPBUFFEREXTPROC": 2, + "PFNWGLDESTROYPBUFFEREXTPROC": 2, + "PFNWGLGETPBUFFERDCEXTPROC": 2, + "PFNWGLQUERYPBUFFEREXTPROC": 2, + "PFNWGLRELEASEPBUFFERDCEXTPROC": 2, + "wglCreatePbufferEXT": 1, + "__wglewCreatePbufferEXT": 2, + "wglDestroyPbufferEXT": 1, + "__wglewDestroyPbufferEXT": 2, + "wglGetPbufferDCEXT": 1, + "__wglewGetPbufferDCEXT": 2, + "wglQueryPbufferEXT": 1, + "__wglewQueryPbufferEXT": 2, + "wglReleasePbufferDCEXT": 1, + "__wglewReleasePbufferDCEXT": 2, + "WGLEW_EXT_pbuffer": 1, + "__WGLEW_EXT_pbuffer": 2, + "WGL_EXT_pixel_format": 2, + "WGL_NUMBER_PIXEL_FORMATS_EXT": 1, + "WGL_DRAW_TO_WINDOW_EXT": 1, + "WGL_DRAW_TO_BITMAP_EXT": 1, + "WGL_ACCELERATION_EXT": 1, + "WGL_NEED_PALETTE_EXT": 1, + "WGL_NEED_SYSTEM_PALETTE_EXT": 1, + "WGL_SWAP_LAYER_BUFFERS_EXT": 1, + "WGL_SWAP_METHOD_EXT": 1, + "WGL_NUMBER_OVERLAYS_EXT": 1, + "WGL_NUMBER_UNDERLAYS_EXT": 1, + "WGL_TRANSPARENT_EXT": 1, + "WGL_TRANSPARENT_VALUE_EXT": 1, + "WGL_SHARE_DEPTH_EXT": 1, + "WGL_SHARE_STENCIL_EXT": 1, + "WGL_SHARE_ACCUM_EXT": 1, + "WGL_SUPPORT_GDI_EXT": 1, + "WGL_SUPPORT_OPENGL_EXT": 1, + "WGL_DOUBLE_BUFFER_EXT": 1, + "WGL_STEREO_EXT": 1, + "WGL_PIXEL_TYPE_EXT": 1, + "WGL_COLOR_BITS_EXT": 1, + "WGL_RED_BITS_EXT": 1, + "WGL_RED_SHIFT_EXT": 1, + "WGL_GREEN_BITS_EXT": 1, + "WGL_GREEN_SHIFT_EXT": 1, + "WGL_BLUE_BITS_EXT": 1, + "WGL_BLUE_SHIFT_EXT": 1, + "WGL_ALPHA_BITS_EXT": 1, + "WGL_ALPHA_SHIFT_EXT": 1, + "WGL_ACCUM_BITS_EXT": 1, + "WGL_ACCUM_RED_BITS_EXT": 1, + "WGL_ACCUM_GREEN_BITS_EXT": 1, + "WGL_ACCUM_BLUE_BITS_EXT": 1, + "WGL_ACCUM_ALPHA_BITS_EXT": 1, + "WGL_DEPTH_BITS_EXT": 1, + "WGL_STENCIL_BITS_EXT": 1, + "WGL_AUX_BUFFERS_EXT": 1, + "WGL_NO_ACCELERATION_EXT": 1, + "WGL_GENERIC_ACCELERATION_EXT": 1, + "WGL_FULL_ACCELERATION_EXT": 1, + "WGL_SWAP_EXCHANGE_EXT": 1, + "WGL_SWAP_COPY_EXT": 1, + "WGL_SWAP_UNDEFINED_EXT": 1, + "WGL_TYPE_RGBA_EXT": 1, + "WGL_TYPE_COLORINDEX_EXT": 1, + "PFNWGLCHOOSEPIXELFORMATEXTPROC": 2, + "PFNWGLGETPIXELFORMATATTRIBFVEXTPROC": 2, + "PFNWGLGETPIXELFORMATATTRIBIVEXTPROC": 2, + "wglChoosePixelFormatEXT": 1, + "__wglewChoosePixelFormatEXT": 2, + "wglGetPixelFormatAttribfvEXT": 1, + "__wglewGetPixelFormatAttribfvEXT": 2, + "wglGetPixelFormatAttribivEXT": 1, + "__wglewGetPixelFormatAttribivEXT": 2, + "WGLEW_EXT_pixel_format": 1, + "__WGLEW_EXT_pixel_format": 2, + "WGL_EXT_pixel_format_packed_float": 2, + "WGL_TYPE_RGBA_UNSIGNED_FLOAT_EXT": 1, + "WGLEW_EXT_pixel_format_packed_float": 1, + "__WGLEW_EXT_pixel_format_packed_float": 2, + "WGL_EXT_swap_control": 2, + "PFNWGLGETSWAPINTERVALEXTPROC": 2, + "PFNWGLSWAPINTERVALEXTPROC": 2, + "interval": 1, + "wglGetSwapIntervalEXT": 1, + "__wglewGetSwapIntervalEXT": 2, + "wglSwapIntervalEXT": 1, + "__wglewSwapIntervalEXT": 2, + "WGLEW_EXT_swap_control": 1, + "__WGLEW_EXT_swap_control": 2, + "WGL_I3D_digital_video_control": 2, + "WGL_DIGITAL_VIDEO_CURSOR_ALPHA_FRAMEBUFFER_I3D": 1, + "WGL_DIGITAL_VIDEO_CURSOR_ALPHA_VALUE_I3D": 1, + "WGL_DIGITAL_VIDEO_CURSOR_INCLUDED_I3D": 1, + "WGL_DIGITAL_VIDEO_GAMMA_CORRECTED_I3D": 1, + "PFNWGLGETDIGITALVIDEOPARAMETERSI3DPROC": 2, + "PFNWGLSETDIGITALVIDEOPARAMETERSI3DPROC": 2, + "wglGetDigitalVideoParametersI3D": 1, + "__wglewGetDigitalVideoParametersI3D": 2, + "wglSetDigitalVideoParametersI3D": 1, + "__wglewSetDigitalVideoParametersI3D": 2, + "WGLEW_I3D_digital_video_control": 1, + "__WGLEW_I3D_digital_video_control": 2, + "WGL_I3D_gamma": 2, + "WGL_GAMMA_TABLE_SIZE_I3D": 1, + "WGL_GAMMA_EXCLUDE_DESKTOP_I3D": 1, + "PFNWGLGETGAMMATABLEI3DPROC": 2, + "iEntries": 2, + "USHORT*": 2, + "puRed": 2, + "USHORT": 4, + "*puGreen": 2, + "*puBlue": 2, + "PFNWGLGETGAMMATABLEPARAMETERSI3DPROC": 2, + "PFNWGLSETGAMMATABLEI3DPROC": 2, + "PFNWGLSETGAMMATABLEPARAMETERSI3DPROC": 2, + "wglGetGammaTableI3D": 1, + "__wglewGetGammaTableI3D": 2, + "wglGetGammaTableParametersI3D": 1, + "__wglewGetGammaTableParametersI3D": 2, + "wglSetGammaTableI3D": 1, + "__wglewSetGammaTableI3D": 2, + "wglSetGammaTableParametersI3D": 1, + "__wglewSetGammaTableParametersI3D": 2, + "WGLEW_I3D_gamma": 1, + "__WGLEW_I3D_gamma": 2, + "WGL_I3D_genlock": 2, + "WGL_GENLOCK_SOURCE_MULTIVIEW_I3D": 1, + "WGL_GENLOCK_SOURCE_EXTERNAL_SYNC_I3D": 1, + "WGL_GENLOCK_SOURCE_EXTERNAL_FIELD_I3D": 1, + "WGL_GENLOCK_SOURCE_EXTERNAL_TTL_I3D": 1, + "WGL_GENLOCK_SOURCE_DIGITAL_SYNC_I3D": 1, + "WGL_GENLOCK_SOURCE_DIGITAL_FIELD_I3D": 1, + "WGL_GENLOCK_SOURCE_EDGE_FALLING_I3D": 1, + "WGL_GENLOCK_SOURCE_EDGE_RISING_I3D": 1, + "WGL_GENLOCK_SOURCE_EDGE_BOTH_I3D": 1, + "PFNWGLDISABLEGENLOCKI3DPROC": 2, + "PFNWGLENABLEGENLOCKI3DPROC": 2, + "PFNWGLGENLOCKSAMPLERATEI3DPROC": 2, + "uRate": 2, + "PFNWGLGENLOCKSOURCEDELAYI3DPROC": 2, + "uDelay": 2, + "PFNWGLGENLOCKSOURCEEDGEI3DPROC": 2, + "uEdge": 2, + "PFNWGLGENLOCKSOURCEI3DPROC": 2, + "uSource": 2, + "PFNWGLGETGENLOCKSAMPLERATEI3DPROC": 2, + "PFNWGLGETGENLOCKSOURCEDELAYI3DPROC": 2, + "PFNWGLGETGENLOCKSOURCEEDGEI3DPROC": 2, + "PFNWGLGETGENLOCKSOURCEI3DPROC": 2, + "PFNWGLISENABLEDGENLOCKI3DPROC": 2, + "BOOL*": 3, + "pFlag": 3, + "PFNWGLQUERYGENLOCKMAXSOURCEDELAYI3DPROC": 2, + "uMaxLineDelay": 1, + "*uMaxPixelDelay": 1, + "wglDisableGenlockI3D": 1, + "__wglewDisableGenlockI3D": 2, + "wglEnableGenlockI3D": 1, + "__wglewEnableGenlockI3D": 2, + "wglGenlockSampleRateI3D": 1, + "__wglewGenlockSampleRateI3D": 2, + "wglGenlockSourceDelayI3D": 1, + "__wglewGenlockSourceDelayI3D": 2, + "wglGenlockSourceEdgeI3D": 1, + "__wglewGenlockSourceEdgeI3D": 2, + "wglGenlockSourceI3D": 1, + "__wglewGenlockSourceI3D": 2, + "wglGetGenlockSampleRateI3D": 1, + "__wglewGetGenlockSampleRateI3D": 2, + "wglGetGenlockSourceDelayI3D": 1, + "__wglewGetGenlockSourceDelayI3D": 2, + "wglGetGenlockSourceEdgeI3D": 1, + "__wglewGetGenlockSourceEdgeI3D": 2, + "wglGetGenlockSourceI3D": 1, + "__wglewGetGenlockSourceI3D": 2, + "wglIsEnabledGenlockI3D": 1, + "__wglewIsEnabledGenlockI3D": 2, + "wglQueryGenlockMaxSourceDelayI3D": 1, + "__wglewQueryGenlockMaxSourceDelayI3D": 2, + "WGLEW_I3D_genlock": 1, + "__WGLEW_I3D_genlock": 2, + "WGL_I3D_image_buffer": 2, + "WGL_IMAGE_BUFFER_MIN_ACCESS_I3D": 1, + "WGL_IMAGE_BUFFER_LOCK_I3D": 1, + "PFNWGLASSOCIATEIMAGEBUFFEREVENTSI3DPROC": 2, + "HANDLE*": 3, + "pEvent": 1, + "LPVOID": 3, + "*pAddress": 1, + "DWORD": 5, + "*pSize": 1, + "PFNWGLCREATEIMAGEBUFFERI3DPROC": 2, + "dwSize": 1, + "uFlags": 1, + "PFNWGLDESTROYIMAGEBUFFERI3DPROC": 2, + "pAddress": 2, + "PFNWGLRELEASEIMAGEBUFFEREVENTSI3DPROC": 2, + "LPVOID*": 1, + "wglAssociateImageBufferEventsI3D": 1, + "__wglewAssociateImageBufferEventsI3D": 2, + "wglCreateImageBufferI3D": 1, + "__wglewCreateImageBufferI3D": 2, + "wglDestroyImageBufferI3D": 1, + "__wglewDestroyImageBufferI3D": 2, + "wglReleaseImageBufferEventsI3D": 1, + "__wglewReleaseImageBufferEventsI3D": 2, + "WGLEW_I3D_image_buffer": 1, + "__WGLEW_I3D_image_buffer": 2, + "WGL_I3D_swap_frame_lock": 2, + "PFNWGLDISABLEFRAMELOCKI3DPROC": 2, + "PFNWGLENABLEFRAMELOCKI3DPROC": 2, + "PFNWGLISENABLEDFRAMELOCKI3DPROC": 2, + "PFNWGLQUERYFRAMELOCKMASTERI3DPROC": 2, + "wglDisableFrameLockI3D": 1, + "__wglewDisableFrameLockI3D": 2, + "wglEnableFrameLockI3D": 1, + "__wglewEnableFrameLockI3D": 2, + "wglIsEnabledFrameLockI3D": 1, + "__wglewIsEnabledFrameLockI3D": 2, + "wglQueryFrameLockMasterI3D": 1, + "__wglewQueryFrameLockMasterI3D": 2, + "WGLEW_I3D_swap_frame_lock": 1, + "__WGLEW_I3D_swap_frame_lock": 2, + "WGL_I3D_swap_frame_usage": 2, + "PFNWGLBEGINFRAMETRACKINGI3DPROC": 2, + "PFNWGLENDFRAMETRACKINGI3DPROC": 2, + "PFNWGLGETFRAMEUSAGEI3DPROC": 2, + "float*": 1, + "pUsage": 1, + "PFNWGLQUERYFRAMETRACKINGI3DPROC": 2, + "DWORD*": 1, + "pFrameCount": 1, + "*pMissedFrames": 1, + "float": 26, + "*pLastMissedUsage": 1, + "wglBeginFrameTrackingI3D": 1, + "__wglewBeginFrameTrackingI3D": 2, + "wglEndFrameTrackingI3D": 1, + "__wglewEndFrameTrackingI3D": 2, + "wglGetFrameUsageI3D": 1, + "__wglewGetFrameUsageI3D": 2, + "wglQueryFrameTrackingI3D": 1, + "__wglewQueryFrameTrackingI3D": 2, + "WGLEW_I3D_swap_frame_usage": 1, + "__WGLEW_I3D_swap_frame_usage": 2, + "WGL_NV_DX_interop": 2, + "WGL_ACCESS_READ_ONLY_NV": 1, + "WGL_ACCESS_READ_WRITE_NV": 1, + "WGL_ACCESS_WRITE_DISCARD_NV": 1, + "PFNWGLDXCLOSEDEVICENVPROC": 2, + "hDevice": 9, + "PFNWGLDXLOCKOBJECTSNVPROC": 2, + "hObjects": 2, + "PFNWGLDXOBJECTACCESSNVPROC": 2, + "hObject": 2, + "access": 2, + "PFNWGLDXOPENDEVICENVPROC": 2, + "dxDevice": 1, + "PFNWGLDXREGISTEROBJECTNVPROC": 2, + "dxObject": 2, + "PFNWGLDXSETRESOURCESHAREHANDLENVPROC": 2, + "shareHandle": 1, + "PFNWGLDXUNLOCKOBJECTSNVPROC": 2, + "PFNWGLDXUNREGISTEROBJECTNVPROC": 2, + "wglDXCloseDeviceNV": 1, + "__wglewDXCloseDeviceNV": 2, + "wglDXLockObjectsNV": 1, + "__wglewDXLockObjectsNV": 2, + "wglDXObjectAccessNV": 1, + "__wglewDXObjectAccessNV": 2, + "wglDXOpenDeviceNV": 1, + "__wglewDXOpenDeviceNV": 2, + "wglDXRegisterObjectNV": 1, + "__wglewDXRegisterObjectNV": 2, + "wglDXSetResourceShareHandleNV": 1, + "__wglewDXSetResourceShareHandleNV": 2, + "wglDXUnlockObjectsNV": 1, + "__wglewDXUnlockObjectsNV": 2, + "wglDXUnregisterObjectNV": 1, + "__wglewDXUnregisterObjectNV": 2, + "WGLEW_NV_DX_interop": 1, + "__WGLEW_NV_DX_interop": 2, + "WGL_NV_copy_image": 2, + "PFNWGLCOPYIMAGESUBDATANVPROC": 2, + "hSrcRC": 1, + "srcName": 1, + "srcTarget": 1, + "srcLevel": 1, + "srcX": 1, + "srcY": 1, + "srcZ": 1, + "hDstRC": 1, + "dstName": 1, + "dstTarget": 1, + "dstLevel": 1, + "dstX": 1, + "dstY": 1, + "dstZ": 1, + "GLsizei": 4, + "depth": 2, + "wglCopyImageSubDataNV": 1, + "__wglewCopyImageSubDataNV": 2, + "WGLEW_NV_copy_image": 1, + "__WGLEW_NV_copy_image": 2, + "WGL_NV_float_buffer": 2, + "WGL_FLOAT_COMPONENTS_NV": 1, + "B0": 1, + "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_R_NV": 1, + "B1": 1, + "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RG_NV": 1, + "B2": 1, + "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGB_NV": 1, + "B3": 1, + "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGBA_NV": 1, + "B4": 1, + "WGL_TEXTURE_FLOAT_R_NV": 1, + "B5": 1, + "WGL_TEXTURE_FLOAT_RG_NV": 1, + "B6": 1, + "WGL_TEXTURE_FLOAT_RGB_NV": 1, + "B7": 1, + "WGL_TEXTURE_FLOAT_RGBA_NV": 1, + "B8": 1, + "WGLEW_NV_float_buffer": 1, + "__WGLEW_NV_float_buffer": 2, + "WGL_NV_gpu_affinity": 2, + "WGL_ERROR_INCOMPATIBLE_AFFINITY_MASKS_NV": 1, + "D0": 1, + "WGL_ERROR_MISSING_AFFINITY_MASK_NV": 1, + "D1": 1, + "HGPUNV": 5, + "_GPU_DEVICE": 1, + "cb": 1, + "CHAR": 2, + "DeviceName": 1, + "DeviceString": 1, + "Flags": 1, + "RECT": 1, + "rcVirtualScreen": 1, + "GPU_DEVICE": 1, + "*PGPU_DEVICE": 1, + "PFNWGLCREATEAFFINITYDCNVPROC": 2, + "*phGpuList": 1, + "PFNWGLDELETEDCNVPROC": 2, + "PFNWGLENUMGPUDEVICESNVPROC": 2, + "hGpu": 1, + "iDeviceIndex": 1, + "PGPU_DEVICE": 1, + "lpGpuDevice": 1, + "PFNWGLENUMGPUSFROMAFFINITYDCNVPROC": 2, + "hAffinityDC": 1, + "iGpuIndex": 2, + "*hGpu": 1, + "PFNWGLENUMGPUSNVPROC": 2, + "*phGpu": 1, + "wglCreateAffinityDCNV": 1, + "__wglewCreateAffinityDCNV": 2, + "wglDeleteDCNV": 1, + "__wglewDeleteDCNV": 2, + "wglEnumGpuDevicesNV": 1, + "__wglewEnumGpuDevicesNV": 2, + "wglEnumGpusFromAffinityDCNV": 1, + "__wglewEnumGpusFromAffinityDCNV": 2, + "wglEnumGpusNV": 1, + "__wglewEnumGpusNV": 2, + "WGLEW_NV_gpu_affinity": 1, + "__WGLEW_NV_gpu_affinity": 2, + "WGL_NV_multisample_coverage": 2, + "WGL_COVERAGE_SAMPLES_NV": 1, + "WGL_COLOR_SAMPLES_NV": 1, + "B9": 1, + "WGLEW_NV_multisample_coverage": 1, + "__WGLEW_NV_multisample_coverage": 2, + "WGL_NV_present_video": 2, + "WGL_NUM_VIDEO_SLOTS_NV": 1, + "F0": 1, + "HVIDEOOUTPUTDEVICENV": 2, + "PFNWGLBINDVIDEODEVICENVPROC": 2, + "hDc": 6, + "uVideoSlot": 2, + "hVideoDevice": 4, + "PFNWGLENUMERATEVIDEODEVICESNVPROC": 2, + "HVIDEOOUTPUTDEVICENV*": 1, + "phDeviceList": 2, + "PFNWGLQUERYCURRENTCONTEXTNVPROC": 2, + "wglBindVideoDeviceNV": 1, + "__wglewBindVideoDeviceNV": 2, + "wglEnumerateVideoDevicesNV": 1, + "__wglewEnumerateVideoDevicesNV": 2, + "wglQueryCurrentContextNV": 1, + "__wglewQueryCurrentContextNV": 2, + "WGLEW_NV_present_video": 1, + "__WGLEW_NV_present_video": 2, + "WGL_NV_render_depth_texture": 2, + "WGL_BIND_TO_TEXTURE_DEPTH_NV": 1, + "WGL_BIND_TO_TEXTURE_RECTANGLE_DEPTH_NV": 1, + "WGL_DEPTH_TEXTURE_FORMAT_NV": 1, + "WGL_TEXTURE_DEPTH_COMPONENT_NV": 1, + "WGL_DEPTH_COMPONENT_NV": 1, + "WGLEW_NV_render_depth_texture": 1, + "__WGLEW_NV_render_depth_texture": 2, + "WGL_NV_render_texture_rectangle": 2, + "WGL_BIND_TO_TEXTURE_RECTANGLE_RGB_NV": 1, + "WGL_BIND_TO_TEXTURE_RECTANGLE_RGBA_NV": 1, + "A1": 1, + "WGL_TEXTURE_RECTANGLE_NV": 1, + "WGLEW_NV_render_texture_rectangle": 1, + "__WGLEW_NV_render_texture_rectangle": 2, + "WGL_NV_swap_group": 2, + "PFNWGLBINDSWAPBARRIERNVPROC": 2, + "group": 3, + "barrier": 1, + "PFNWGLJOINSWAPGROUPNVPROC": 2, + "PFNWGLQUERYFRAMECOUNTNVPROC": 2, + "GLuint*": 3, + "PFNWGLQUERYMAXSWAPGROUPSNVPROC": 2, + "maxGroups": 1, + "*maxBarriers": 1, + "PFNWGLQUERYSWAPGROUPNVPROC": 2, + "*barrier": 1, + "PFNWGLRESETFRAMECOUNTNVPROC": 2, + "wglBindSwapBarrierNV": 1, + "__wglewBindSwapBarrierNV": 2, + "wglJoinSwapGroupNV": 1, + "__wglewJoinSwapGroupNV": 2, + "wglQueryFrameCountNV": 1, + "__wglewQueryFrameCountNV": 2, + "wglQueryMaxSwapGroupsNV": 1, + "__wglewQueryMaxSwapGroupsNV": 2, + "wglQuerySwapGroupNV": 1, + "__wglewQuerySwapGroupNV": 2, + "wglResetFrameCountNV": 1, + "__wglewResetFrameCountNV": 2, + "WGLEW_NV_swap_group": 1, + "__WGLEW_NV_swap_group": 2, + "WGL_NV_vertex_array_range": 2, + "PFNWGLALLOCATEMEMORYNVPROC": 2, + "GLfloat": 3, + "readFrequency": 1, + "writeFrequency": 1, + "priority": 1, + "PFNWGLFREEMEMORYNVPROC": 2, + "*pointer": 1, + "wglAllocateMemoryNV": 1, + "__wglewAllocateMemoryNV": 2, + "wglFreeMemoryNV": 1, + "__wglewFreeMemoryNV": 2, + "WGLEW_NV_vertex_array_range": 1, + "__WGLEW_NV_vertex_array_range": 2, + "WGL_NV_video_capture": 2, + "WGL_UNIQUE_ID_NV": 1, + "CE": 1, + "WGL_NUM_VIDEO_CAPTURE_SLOTS_NV": 1, + "CF": 1, + "HVIDEOINPUTDEVICENV": 5, + "PFNWGLBINDVIDEOCAPTUREDEVICENVPROC": 2, + "PFNWGLENUMERATEVIDEOCAPTUREDEVICESNVPROC": 2, + "HVIDEOINPUTDEVICENV*": 1, + "PFNWGLLOCKVIDEOCAPTUREDEVICENVPROC": 2, + "PFNWGLQUERYVIDEOCAPTUREDEVICENVPROC": 2, + "PFNWGLRELEASEVIDEOCAPTUREDEVICENVPROC": 2, + "wglBindVideoCaptureDeviceNV": 1, + "__wglewBindVideoCaptureDeviceNV": 2, + "wglEnumerateVideoCaptureDevicesNV": 1, + "__wglewEnumerateVideoCaptureDevicesNV": 2, + "wglLockVideoCaptureDeviceNV": 1, + "__wglewLockVideoCaptureDeviceNV": 2, + "wglQueryVideoCaptureDeviceNV": 1, + "__wglewQueryVideoCaptureDeviceNV": 2, + "wglReleaseVideoCaptureDeviceNV": 1, + "__wglewReleaseVideoCaptureDeviceNV": 2, + "WGLEW_NV_video_capture": 1, + "__WGLEW_NV_video_capture": 2, + "WGL_NV_video_output": 2, + "WGL_BIND_TO_VIDEO_RGB_NV": 1, + "C0": 3, + "WGL_BIND_TO_VIDEO_RGBA_NV": 1, + "C1": 1, + "WGL_BIND_TO_VIDEO_RGB_AND_DEPTH_NV": 1, + "C2": 1, + "WGL_VIDEO_OUT_COLOR_NV": 1, + "C3": 1, + "WGL_VIDEO_OUT_ALPHA_NV": 1, + "C4": 1, + "WGL_VIDEO_OUT_DEPTH_NV": 1, + "C5": 1, + "WGL_VIDEO_OUT_COLOR_AND_ALPHA_NV": 1, + "C6": 1, + "WGL_VIDEO_OUT_COLOR_AND_DEPTH_NV": 1, + "C7": 1, + "WGL_VIDEO_OUT_FRAME": 1, + "C8": 1, + "WGL_VIDEO_OUT_FIELD_1": 1, + "C9": 1, + "WGL_VIDEO_OUT_FIELD_2": 1, + "CA": 1, + "WGL_VIDEO_OUT_STACKED_FIELDS_1_2": 1, + "CB": 1, + "WGL_VIDEO_OUT_STACKED_FIELDS_2_1": 1, + "CC": 1, + "HPVIDEODEV": 4, + "PFNWGLBINDVIDEOIMAGENVPROC": 2, + "iVideoBuffer": 2, + "PFNWGLGETVIDEODEVICENVPROC": 2, + "numDevices": 1, + "HPVIDEODEV*": 1, + "PFNWGLGETVIDEOINFONVPROC": 2, + "hpVideoDevice": 1, + "long*": 2, + "pulCounterOutputPbuffer": 1, + "*pulCounterOutputVideo": 1, + "PFNWGLRELEASEVIDEODEVICENVPROC": 2, + "PFNWGLRELEASEVIDEOIMAGENVPROC": 2, + "PFNWGLSENDPBUFFERTOVIDEONVPROC": 2, + "iBufferType": 1, + "pulCounterPbuffer": 1, + "bBlock": 1, + "wglBindVideoImageNV": 1, + "__wglewBindVideoImageNV": 2, + "wglGetVideoDeviceNV": 1, + "__wglewGetVideoDeviceNV": 2, + "wglGetVideoInfoNV": 1, + "__wglewGetVideoInfoNV": 2, + "wglReleaseVideoDeviceNV": 1, + "__wglewReleaseVideoDeviceNV": 2, + "wglReleaseVideoImageNV": 1, + "__wglewReleaseVideoImageNV": 2, + "wglSendPbufferToVideoNV": 1, + "__wglewSendPbufferToVideoNV": 2, + "WGLEW_NV_video_output": 1, + "__WGLEW_NV_video_output": 2, + "WGL_OML_sync_control": 2, + "PFNWGLGETMSCRATEOMLPROC": 2, + "INT32*": 1, + "numerator": 1, + "INT32": 1, + "*denominator": 1, + "PFNWGLGETSYNCVALUESOMLPROC": 2, + "INT64*": 3, + "ust": 7, + "INT64": 18, + "*msc": 3, + "*sbc": 3, + "PFNWGLSWAPBUFFERSMSCOMLPROC": 2, + "target_msc": 3, + "divisor": 3, + "remainder": 3, + "PFNWGLSWAPLAYERBUFFERSMSCOMLPROC": 2, + "fuPlanes": 1, + "PFNWGLWAITFORMSCOMLPROC": 2, + "PFNWGLWAITFORSBCOMLPROC": 2, + "target_sbc": 1, + "wglGetMscRateOML": 1, + "__wglewGetMscRateOML": 2, + "wglGetSyncValuesOML": 1, + "__wglewGetSyncValuesOML": 2, + "wglSwapBuffersMscOML": 1, + "__wglewSwapBuffersMscOML": 2, + "wglSwapLayerBuffersMscOML": 1, + "__wglewSwapLayerBuffersMscOML": 2, + "wglWaitForMscOML": 1, + "__wglewWaitForMscOML": 2, + "wglWaitForSbcOML": 1, + "__wglewWaitForSbcOML": 2, + "WGLEW_OML_sync_control": 1, + "__WGLEW_OML_sync_control": 2, + "GLEW_MX": 4, + "WGLEW_EXPORT": 167, + "GLEWAPI": 6, + "WGLEWContextStruct": 2, + "WGLEWContext": 1, + "wglewContextInit": 2, + "WGLEWContext*": 2, + "ctx": 16, + "wglewContextIsSupported": 2, + "wglewInit": 1, + "wglewGetContext": 4, + "wglewIsSupported": 2, + "wglewGetExtension": 1, + "#undef": 7, + "PPC_SHA1": 1, + "git_hash_ctx": 7, + "SHA_CTX": 3, + "*git_hash_new_ctx": 1, + "*ctx": 5, + "git__malloc": 3, + "SHA1_Init": 4, + "git_hash_free_ctx": 1, + "git__free": 15, + "git_hash_init": 1, + "git_hash_update": 1, + "len": 30, + "SHA1_Update": 3, + "git_hash_final": 1, + "git_oid": 7, + "*out": 3, + "SHA1_Final": 3, + "out": 18, + "git_hash_buf": 1, + "git_hash_vec": 1, + "git_buf_vec": 1, + "*vec": 1, + "vec": 2, + ".data": 1, + ".len": 3, + "BLOB_H": 2, + "PY_SSIZE_T_CLEAN": 1, + "Py_PYTHON_H": 1, + "Python": 2, + "headers": 1, + "compile": 1, + "extensions": 1, + "please": 1, + "install": 1, + "development": 1, + "version": 4, + "Python.": 1, + "#elif": 14, + "PY_VERSION_HEX": 11, + "Cython": 1, + "requires": 1, + ".": 1, + "": 2, + "offsetof": 2, + "member": 2, + "type*": 1, + "WIN32": 2, + "MS_WINDOWS": 2, + "__stdcall": 2, + "__cdecl": 2, + "__fastcall": 2, + "DL_IMPORT": 2, + "t": 32, + "DL_EXPORT": 2, + "PY_LONG_LONG": 5, + "LONG_LONG": 1, + "Py_HUGE_VAL": 2, + "HUGE_VAL": 1, + "PYPY_VERSION": 1, + "CYTHON_COMPILING_IN_PYPY": 3, + "CYTHON_COMPILING_IN_CPYTHON": 6, + "Py_ssize_t": 35, + "PY_SSIZE_T_MAX": 1, + "INT_MAX": 1, + "PY_SSIZE_T_MIN": 1, + "INT_MIN": 1, + "PY_FORMAT_SIZE_T": 1, + "CYTHON_FORMAT_SSIZE_T": 2, + "PyInt_FromSsize_t": 6, + "z": 47, + "PyInt_FromLong": 3, + "PyInt_AsSsize_t": 3, + "o": 80, + "__Pyx_PyInt_AsInt": 2, + "PyNumber_Index": 1, + "PyNumber_Check": 2, + "PyFloat_Check": 2, + "PyNumber_Int": 1, + "PyErr_Format": 4, + "PyExc_TypeError": 4, + "Py_TYPE": 7, + "tp_name": 4, + "PyObject*": 24, + "__Pyx_PyIndex_Check": 3, + "PyComplex_Check": 1, + "PyIndex_Check": 2, + "PyErr_WarnEx": 1, + "category": 2, + "message": 3, + "stacklevel": 1, + "PyErr_Warn": 1, + "__PYX_BUILD_PY_SSIZE_T": 2, + "Py_REFCNT": 1, + "ob_refcnt": 1, + "ob_type": 7, + "Py_SIZE": 1, + "PyVarObject*": 1, + "ob_size": 1, + "PyVarObject_HEAD_INIT": 1, + "PyObject_HEAD_INIT": 1, + "PyType_Modified": 1, + "PyObject": 276, + "itemsize": 1, + "readonly": 1, + "ndim": 2, + "*format": 2, + "*shape": 1, + "*strides": 1, + "*suboffsets": 1, + "*internal": 1, + "Py_buffer": 6, + "PyBUF_SIMPLE": 1, + "PyBUF_WRITABLE": 3, + "PyBUF_FORMAT": 3, + "PyBUF_ND": 2, + "PyBUF_STRIDES": 6, + "PyBUF_C_CONTIGUOUS": 1, + "PyBUF_F_CONTIGUOUS": 1, + "PyBUF_ANY_CONTIGUOUS": 1, + "PyBUF_INDIRECT": 2, + "PyBUF_RECORDS": 1, + "PyBUF_FULL": 1, + "PY_MAJOR_VERSION": 13, + "__Pyx_BUILTIN_MODULE_NAME": 2, + "__Pyx_PyCode_New": 2, + "k": 15, + "l": 7, + "code": 6, + "v": 11, + "fv": 4, + "cell": 4, + "fline": 4, + "lnos": 4, + "PyCode_New": 2, + "PY_MINOR_VERSION": 1, + "PyUnicode_FromString": 2, + "PyUnicode_Decode": 1, + "Py_TPFLAGS_CHECKTYPES": 1, + "Py_TPFLAGS_HAVE_INDEX": 1, + "Py_TPFLAGS_HAVE_NEWBUFFER": 1, + "PyUnicode_KIND": 1, + "CYTHON_PEP393_ENABLED": 2, + "__Pyx_PyUnicode_READY": 2, + "op": 8, + "likely": 22, + "PyUnicode_IS_READY": 1, + "_PyUnicode_Ready": 1, + "__Pyx_PyUnicode_GET_LENGTH": 2, + "u": 18, + "PyUnicode_GET_LENGTH": 1, + "__Pyx_PyUnicode_READ_CHAR": 2, + "PyUnicode_READ_CHAR": 1, + "__Pyx_PyUnicode_READ": 2, + "d": 16, + "PyUnicode_READ": 1, + "PyUnicode_GET_SIZE": 1, + "Py_UCS4": 2, + "PyUnicode_AS_UNICODE": 1, + "Py_UNICODE*": 1, + "PyBaseString_Type": 1, + "PyUnicode_Type": 2, + "PyStringObject": 2, + "PyUnicodeObject": 1, + "PyString_Type": 2, + "PyString_Check": 2, + "PyUnicode_Check": 1, + "PyString_CheckExact": 2, + "PyUnicode_CheckExact": 1, + "PyBytesObject": 1, + "PyBytes_Type": 1, + "PyBytes_Check": 1, + "PyBytes_CheckExact": 1, + "PyBytes_FromString": 2, + "PyString_FromString": 2, + "PyBytes_FromStringAndSize": 1, + "PyString_FromStringAndSize": 1, + "PyBytes_FromFormat": 1, + "PyString_FromFormat": 1, + "PyBytes_DecodeEscape": 1, + "PyString_DecodeEscape": 1, + "PyBytes_AsString": 2, + "PyString_AsString": 1, + "PyBytes_AsStringAndSize": 1, + "PyString_AsStringAndSize": 1, + "PyBytes_Size": 1, + "PyString_Size": 1, + "PyBytes_AS_STRING": 1, + "PyString_AS_STRING": 1, + "PyBytes_GET_SIZE": 1, + "PyString_GET_SIZE": 1, + "PyBytes_Repr": 1, + "PyString_Repr": 1, + "PyBytes_Concat": 1, + "PyString_Concat": 1, + "PyBytes_ConcatAndDel": 1, + "PyString_ConcatAndDel": 1, + "PySet_Check": 1, + "PyObject_TypeCheck": 3, + "PySet_Type": 2, + "PyFrozenSet_Check": 1, + "PyFrozenSet_Type": 1, + "PySet_CheckExact": 2, + "__Pyx_TypeCheck": 1, + "PyTypeObject": 25, + "PyIntObject": 1, + "PyLongObject": 2, + "PyInt_Type": 1, + "PyLong_Type": 1, + "PyInt_Check": 1, + "PyLong_Check": 1, + "PyInt_CheckExact": 1, + "PyLong_CheckExact": 1, + "PyInt_FromString": 1, + "PyLong_FromString": 1, + "PyInt_FromUnicode": 1, + "PyLong_FromUnicode": 1, + "PyLong_FromLong": 1, + "PyInt_FromSize_t": 1, + "PyLong_FromSize_t": 1, + "PyLong_FromSsize_t": 1, + "PyInt_AsLong": 2, + "PyLong_AsLong": 1, + "PyInt_AS_LONG": 1, + "PyLong_AS_LONG": 1, + "PyLong_AsSsize_t": 1, + "PyInt_AsUnsignedLongMask": 1, + "PyLong_AsUnsignedLongMask": 1, + "PyInt_AsUnsignedLongLongMask": 1, + "PyLong_AsUnsignedLongLongMask": 1, + "PyBoolObject": 1, + "Py_hash_t": 1, + "__Pyx_PyInt_FromHash_t": 2, + "__Pyx_PyInt_AsHash_t": 2, + "__Pyx_PySequence_GetSlice": 2, + "PySequence_GetSlice": 2, + "__Pyx_PySequence_SetSlice": 2, + "PySequence_SetSlice": 2, + "__Pyx_PySequence_DelSlice": 2, + "PySequence_DelSlice": 2, + "unlikely": 54, + "PyErr_SetString": 3, + "PyExc_SystemError": 3, + "tp_as_mapping": 3, + "PyMethod_New": 2, + "func": 3, + "self": 9, + "klass": 1, + "PyInstanceMethod_New": 1, + "__Pyx_GetAttrString": 2, + "PyObject_GetAttrString": 2, + "__Pyx_SetAttrString": 2, + "PyObject_SetAttrString": 2, + "__Pyx_DelAttrString": 2, + "PyObject_DelAttrString": 2, + "__Pyx_NAMESTR": 2, + "__Pyx_DOCSTR": 2, + "__Pyx_PyNumber_Divide": 2, + "PyNumber_TrueDivide": 1, + "__Pyx_PyNumber_InPlaceDivide": 2, + "PyNumber_InPlaceTrueDivide": 1, + "PyNumber_Divide": 1, + "PyNumber_InPlaceDivide": 1, + "__PYX_EXTERN_C": 3, + "_USE_MATH_DEFINES": 1, + "": 3, + "__PYX_HAVE__sklearn__linear_model__sgd_fast": 1, + "__PYX_HAVE_API__sklearn__linear_model__sgd_fast": 1, + "_OPENMP": 1, + "": 1, + "PYREX_WITHOUT_ASSERTIONS": 1, + "CYTHON_WITHOUT_ASSERTIONS": 1, + "CYTHON_INLINE": 65, + "__GNUC__": 8, + "__inline__": 1, + "_MSC_VER": 5, + "__inline": 1, + "__STDC_VERSION__": 2, + "L": 1, + "inline": 3, + "CYTHON_UNUSED": 14, + "**p": 1, + "*s": 3, + "encoding": 14, + "is_unicode": 1, + "is_str": 1, + "intern": 1, + "__Pyx_StringTabEntry": 2, + "__Pyx_PyBytes_FromUString": 1, + "__Pyx_PyBytes_AsUString": 1, + "__Pyx_Owned_Py_None": 1, + "Py_INCREF": 10, + "Py_None": 8, + "__Pyx_PyBool_FromLong": 1, + "Py_True": 2, + "Py_False": 2, + "__Pyx_PyObject_IsTrue": 1, + "__Pyx_PyNumber_Int": 1, + "__Pyx_PyIndex_AsSsize_t": 1, + "__Pyx_PyInt_FromSize_t": 1, + "__Pyx_PyInt_AsSize_t": 1, + "__pyx_PyFloat_AsDouble": 12, + "PyFloat_CheckExact": 1, + "PyFloat_AS_DOUBLE": 1, + "PyFloat_AsDouble": 2, + "__pyx_PyFloat_AsFloat": 1, + "__GNUC_MINOR__": 2, + "__builtin_expect": 2, + "*__pyx_m": 1, + "*__pyx_b": 1, + "*__pyx_empty_tuple": 1, + "*__pyx_empty_bytes": 1, + "__pyx_lineno": 58, + "__pyx_clineno": 58, + "__pyx_cfilenm": 1, + "__FILE__": 4, + "*__pyx_filename": 7, + "CYTHON_CCOMPLEX": 12, + "_Complex_I": 3, + "": 1, + "": 1, + "__sun__": 1, + "fj": 1, + "*__pyx_f": 1, + "IS_UNSIGNED": 1, + "__Pyx_StructField_": 2, + "__PYX_BUF_FLAGS_PACKED_STRUCT": 1, + "__Pyx_StructField_*": 1, + "fields": 1, + "arraysize": 1, + "typegroup": 1, + "is_unsigned": 1, + "__Pyx_TypeInfo": 2, + "__Pyx_TypeInfo*": 2, + "offset": 1, + "__Pyx_StructField": 2, + "__Pyx_StructField*": 1, + "field": 1, + "parent_offset": 1, + "__Pyx_BufFmt_StackElem": 1, + "root": 1, + "__Pyx_BufFmt_StackElem*": 2, + "head": 3, + "fmt_offset": 1, + "new_count": 1, + "enc_count": 1, + "struct_alignment": 1, + "is_complex": 1, + "enc_type": 1, + "new_packmode": 1, + "enc_packmode": 1, + "is_valid_array": 1, + "__Pyx_BufFmt_Context": 1, + "npy_int8": 1, + "__pyx_t_5numpy_int8_t": 1, + "npy_int16": 1, + "__pyx_t_5numpy_int16_t": 1, + "npy_int32": 1, + "__pyx_t_5numpy_int32_t": 4, + "npy_int64": 1, + "__pyx_t_5numpy_int64_t": 1, + "npy_uint8": 1, + "__pyx_t_5numpy_uint8_t": 1, + "npy_uint16": 1, + "__pyx_t_5numpy_uint16_t": 1, + "npy_uint32": 1, + "__pyx_t_5numpy_uint32_t": 1, + "npy_uint64": 1, + "__pyx_t_5numpy_uint64_t": 1, + "npy_float32": 1, + "__pyx_t_5numpy_float32_t": 1, + "npy_float64": 1, + "__pyx_t_5numpy_float64_t": 4, + "npy_long": 1, + "__pyx_t_5numpy_int_t": 1, + "npy_longlong": 2, + "__pyx_t_5numpy_long_t": 1, + "__pyx_t_5numpy_longlong_t": 1, + "npy_ulong": 1, + "__pyx_t_5numpy_uint_t": 1, + "npy_ulonglong": 2, + "__pyx_t_5numpy_ulong_t": 1, + "__pyx_t_5numpy_ulonglong_t": 1, + "npy_intp": 1, + "__pyx_t_5numpy_intp_t": 1, + "npy_uintp": 1, + "__pyx_t_5numpy_uintp_t": 1, + "npy_double": 2, + "__pyx_t_5numpy_float_t": 1, + "__pyx_t_5numpy_double_t": 1, + "npy_longdouble": 1, + "__pyx_t_5numpy_longdouble_t": 1, + "__pyx_t_7sklearn_5utils_13weight_vector_DOUBLE": 2, + "__pyx_t_7sklearn_5utils_13weight_vector_INTEGER": 1, + "__pyx_t_7sklearn_5utils_11seq_dataset_DOUBLE": 7, + "__pyx_t_7sklearn_5utils_11seq_dataset_INTEGER": 7, + "__pyx_t_7sklearn_12linear_model_8sgd_fast_DOUBLE": 4, + "__pyx_t_7sklearn_12linear_model_8sgd_fast_INTEGER": 3, + "std": 8, + "complex": 2, + "__pyx_t_float_complex": 27, + "_Complex": 2, + "real": 2, + "imag": 2, + "double": 126, + "__pyx_t_double_complex": 27, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_LossFunction": 15, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Regression": 11, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Huber": 6, + "__pyx_obj_7sklearn_5utils_11seq_dataset_SequentialDataset": 5, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 6, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Classification": 7, + "__pyx_obj_7sklearn_5utils_11seq_dataset_CSRDataset": 2, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Log": 5, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Hinge": 6, + "__pyx_obj_7sklearn_5utils_11seq_dataset_ArrayDataset": 2, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 6, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_ModifiedHuber": 5, + "__pyx_obj_7sklearn_5utils_13weight_vector_WeightVector": 3, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredLoss": 5, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredEpsilonInsensitive": 6, + "npy_cfloat": 1, + "__pyx_t_5numpy_cfloat_t": 1, + "npy_cdouble": 2, + "__pyx_t_5numpy_cdouble_t": 1, + "npy_clongdouble": 1, + "__pyx_t_5numpy_clongdouble_t": 1, + "__pyx_t_5numpy_complex_t": 1, + "PyObject_HEAD": 3, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_LossFunction": 5, + "*__pyx_vtab": 3, + "__pyx_base": 18, + "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_SequentialDataset": 4, + "n_samples": 1, + "epsilon": 2, + "current_index": 2, + "stride": 2, + "*X_data_ptr": 2, + "*X_indptr_ptr": 1, + "*X_indices_ptr": 1, + "*Y_data_ptr": 2, + "PyArrayObject": 8, + "*feature_indices": 2, + "*feature_indices_ptr": 2, + "*index": 2, + "*index_data_ptr": 2, + "*sample_weight_data": 2, + "threshold": 2, + "n_features": 2, + "__pyx_vtabstruct_7sklearn_5utils_13weight_vector_WeightVector": 3, + "*w": 2, + "*w_data_ptr": 1, + "wscale": 1, + "sq_norm": 1, + "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_SequentialDataset": 1, + "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_ArrayDataset": 2, + "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_ArrayDataset": 1, + "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_CSRDataset": 2, + "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_CSRDataset": 1, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 2, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Regression": 3, + "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 1, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 2, + "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 1, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Huber": 2, + "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_Huber": 1, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Hinge": 2, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Classification": 1, + "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_Hinge": 1, + "*__pyx_vtabptr_7sklearn_5utils_13weight_vector_WeightVector": 1, + "CYTHON_REFNANNY": 3, + "__Pyx_RefNannyAPIStruct": 3, + "*__Pyx_RefNanny": 1, + "*__Pyx_RefNannyImportAPI": 1, + "*modname": 1, + "__Pyx_RefNannyDeclarations": 11, + "*__pyx_refnanny": 1, + "WITH_THREAD": 1, + "__Pyx_RefNannySetupContext": 12, + "acquire_gil": 4, + "PyGILState_STATE": 1, + "__pyx_gilstate_save": 2, + "PyGILState_Ensure": 1, + "__pyx_refnanny": 8, + "__Pyx_RefNanny": 8, + "SetupContext": 3, + "__LINE__": 50, + "PyGILState_Release": 1, + "__Pyx_RefNannyFinishContext": 14, + "FinishContext": 1, + "__Pyx_INCREF": 6, + "INCREF": 1, + "__Pyx_DECREF": 20, + "DECREF": 1, + "__Pyx_GOTREF": 24, + "GOTREF": 1, + "__Pyx_GIVEREF": 9, + "GIVEREF": 1, + "__Pyx_XINCREF": 2, + "__Pyx_XDECREF": 20, + "__Pyx_XGOTREF": 2, + "__Pyx_XGIVEREF": 5, + "Py_DECREF": 2, + "Py_XINCREF": 1, + "Py_XDECREF": 1, + "__Pyx_CLEAR": 1, + "__Pyx_XCLEAR": 1, + "*__Pyx_GetName": 1, + "*dict": 5, + "__Pyx_ErrRestore": 1, + "*type": 4, + "*tb": 2, + "__Pyx_ErrFetch": 1, + "**type": 1, + "**value": 1, + "**tb": 1, + "__Pyx_Raise": 4, + "*cause": 1, + "__Pyx_RaiseArgtupleInvalid": 7, + "func_name": 2, + "exact": 6, + "num_min": 1, + "num_max": 1, + "num_found": 1, + "__Pyx_RaiseDoubleKeywordsError": 1, + "kw_name": 1, + "__Pyx_ParseOptionalKeywords": 4, + "*kwds": 1, + "**argnames": 1, + "*kwds2": 1, + "*values": 1, + "num_pos_args": 1, + "function_name": 1, + "__Pyx_ArgTypeTest": 1, + "none_allowed": 1, + "__Pyx_GetBufferAndValidate": 1, + "Py_buffer*": 2, + "dtype": 1, + "nd": 1, + "cast": 1, + "stack": 6, + "__Pyx_SafeReleaseBuffer": 1, + "info": 64, + "__Pyx_TypeTest": 1, + "__Pyx_RaiseBufferFallbackError": 1, + "*__Pyx_GetItemInt_Generic": 1, + "*o": 8, + "*r": 7, + "PyObject_GetItem": 1, + "__Pyx_GetItemInt_List": 1, + "to_py_func": 6, + "__Pyx_GetItemInt_List_Fast": 1, + "__Pyx_GetItemInt_Generic": 6, + "*__Pyx_GetItemInt_List_Fast": 1, + "PyList_GET_SIZE": 5, + "PyList_GET_ITEM": 3, + "PySequence_GetItem": 3, + "__Pyx_GetItemInt_Tuple": 1, + "__Pyx_GetItemInt_Tuple_Fast": 1, + "*__Pyx_GetItemInt_Tuple_Fast": 1, + "PyTuple_GET_SIZE": 14, + "PyTuple_GET_ITEM": 15, + "__Pyx_GetItemInt": 1, + "__Pyx_GetItemInt_Fast": 2, + "PyList_CheckExact": 1, + "PyTuple_CheckExact": 1, + "PySequenceMethods": 1, + "*m": 1, + "tp_as_sequence": 1, + "m": 8, + "sq_item": 2, + "sq_length": 2, + "PySequence_Check": 1, + "__Pyx_RaiseTooManyValuesError": 1, + "expected": 2, + "__Pyx_RaiseNeedMoreValuesError": 1, + "index": 58, + "__Pyx_RaiseNoneNotIterableError": 1, + "__Pyx_IterFinish": 1, + "__Pyx_IternextUnpackEndCheck": 1, + "*retval": 1, + "shape": 1, + "strides": 1, + "suboffsets": 1, + "__Pyx_Buf_DimInfo": 2, + "refcount": 2, + "pybuffer": 1, + "__Pyx_Buffer": 2, + "*rcbuffer": 1, + "diminfo": 1, + "__Pyx_LocalBuf_ND": 1, + "__Pyx_GetBuffer": 2, + "*view": 2, + "__Pyx_ReleaseBuffer": 2, + "PyObject_GetBuffer": 1, + "PyBuffer_Release": 1, + "__Pyx_zeros": 1, + "__Pyx_minusones": 1, + "*__Pyx_Import": 1, + "*from_list": 1, + "level": 12, + "__Pyx_RaiseImportError": 1, + "__Pyx_Print": 1, + "__pyx_print": 1, + "__pyx_print_kwargs": 1, + "__Pyx_PrintOne": 1, + "stream": 3, + "__Pyx_CREAL": 4, + ".real": 3, + "__Pyx_CIMAG": 4, + ".imag": 3, + "__real__": 1, + "__imag__": 1, + "__Pyx_SET_CREAL": 2, + "__Pyx_SET_CIMAG": 2, + "__pyx_t_float_complex_from_parts": 1, + "__Pyx_c_eqf": 2, + "__Pyx_c_sumf": 2, + "__Pyx_c_difff": 2, + "__Pyx_c_prodf": 2, + "__Pyx_c_quotf": 2, + "__Pyx_c_negf": 2, + "__Pyx_c_is_zerof": 3, + "__Pyx_c_conjf": 3, + "conj": 3, + "__Pyx_c_absf": 3, + "abs": 2, + "__Pyx_c_powf": 3, + "pow": 2, + "conjf": 1, + "cabsf": 1, + "cpowf": 1, + "__pyx_t_double_complex_from_parts": 1, + "__Pyx_c_eq": 2, + "__Pyx_c_sum": 2, + "__Pyx_c_diff": 2, + "__Pyx_c_prod": 2, + "__Pyx_c_quot": 2, + "__Pyx_c_neg": 2, + "__Pyx_c_is_zero": 3, + "__Pyx_c_conj": 3, + "__Pyx_c_abs": 3, + "__Pyx_c_pow": 3, + "cabs": 1, + "cpow": 1, + "__Pyx_PyInt_AsUnsignedChar": 1, + "short": 6, + "__Pyx_PyInt_AsUnsignedShort": 1, + "__Pyx_PyInt_AsUnsignedInt": 1, + "__Pyx_PyInt_AsChar": 1, + "__Pyx_PyInt_AsShort": 1, + "signed": 5, + "__Pyx_PyInt_AsSignedChar": 1, + "__Pyx_PyInt_AsSignedShort": 1, + "__Pyx_PyInt_AsSignedInt": 1, + "__Pyx_PyInt_AsLongDouble": 1, + "__Pyx_PyInt_AsUnsignedLong": 1, + "__Pyx_PyInt_AsUnsignedLongLong": 1, + "__Pyx_PyInt_AsLong": 1, + "__Pyx_PyInt_AsLongLong": 1, + "__Pyx_PyInt_AsSignedLong": 1, + "__Pyx_PyInt_AsSignedLongLong": 1, + "__Pyx_WriteUnraisable": 4, + "clineno": 1, + "lineno": 1, + "*filename": 2, + "__Pyx_check_binary_version": 1, + "__Pyx_SetVtable": 1, + "*vtable": 1, + "__Pyx_PyIdentifier_FromString": 3, + "*__Pyx_ImportModule": 1, + "*__Pyx_ImportType": 1, + "*module_name": 1, + "*class_name": 1, + "strict": 2, + "__Pyx_GetVtable": 1, + "code_line": 4, + "PyCodeObject*": 2, + "code_object": 2, + "__Pyx_CodeObjectCacheEntry": 1, + "__Pyx_CodeObjectCache": 2, + "max_count": 1, + "__Pyx_CodeObjectCacheEntry*": 2, + "entries": 2, + "__pyx_code_cache": 1, + "__pyx_bisect_code_objects": 1, + "PyCodeObject": 1, + "*__pyx_find_code_object": 1, + "__pyx_insert_code_object": 1, + "__Pyx_AddTraceback": 7, + "*funcname": 1, + "c_line": 1, + "py_line": 1, + "__Pyx_InitStrings": 1, + "*t": 2, + "*__pyx_ptype_7cpython_4type_type": 1, + "*__pyx_ptype_5numpy_dtype": 1, + "*__pyx_ptype_5numpy_flatiter": 1, + "*__pyx_ptype_5numpy_broadcast": 1, + "*__pyx_ptype_5numpy_ndarray": 1, + "*__pyx_ptype_5numpy_ufunc": 1, + "*__pyx_f_5numpy__util_dtypestring": 1, + "PyArray_Descr": 1, + "*__pyx_ptype_7sklearn_5utils_13weight_vector_WeightVector": 1, + "*__pyx_ptype_7sklearn_5utils_11seq_dataset_SequentialDataset": 1, + "*__pyx_ptype_7sklearn_5utils_11seq_dataset_ArrayDataset": 1, + "*__pyx_ptype_7sklearn_5utils_11seq_dataset_CSRDataset": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_LossFunction": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Regression": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Classification": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_ModifiedHuber": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Hinge": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Log": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredLoss": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Huber": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredEpsilonInsensitive": 1, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_max": 1, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_min": 1, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_sqnorm": 1, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_l1penalty": 1, + "__Pyx_TypeInfo_nn___pyx_t_7sklearn_12linear_model_8sgd_fast_DOUBLE": 1, + "__Pyx_MODULE_NAME": 1, + "__pyx_module_is_main_sklearn__linear_model__sgd_fast": 1, + "*__pyx_builtin_NotImplementedError": 1, + "*__pyx_builtin_range": 1, + "*__pyx_builtin_ValueError": 1, + "*__pyx_builtin_RuntimeError": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 2, + "*__pyx_v_self": 52, + "__pyx_v_p": 46, + "__pyx_v_y": 46, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 2, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 2, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_2dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_14Classification_loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_14Classification_2dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_2dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_4__reduce__": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge___init__": 1, + "__pyx_v_threshold": 2, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_2loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_4dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_6__reduce__": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge___init__": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_2loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_4dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_6__reduce__": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_2dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_4__reduce__": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_2dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_4__reduce__": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber___init__": 1, + "__pyx_v_c": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_2loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_4dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_6__reduce__": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive___init__": 1, + "__pyx_v_epsilon": 2, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_2loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_4dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_6__reduce__": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive___init__": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_2loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_4dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_6__reduce__": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_plain_sgd": 1, + "*__pyx_self": 1, + "*__pyx_v_weights": 1, + "__pyx_v_intercept": 1, + "*__pyx_v_loss": 1, + "__pyx_v_penalty_type": 1, + "__pyx_v_alpha": 1, + "__pyx_v_C": 1, + "__pyx_v_rho": 1, + "*__pyx_v_dataset": 1, + "__pyx_v_n_iter": 1, + "__pyx_v_fit_intercept": 1, + "__pyx_v_verbose": 1, + "__pyx_v_shuffle": 1, + "*__pyx_v_seed": 1, + "__pyx_v_weight_pos": 1, + "__pyx_v_weight_neg": 1, + "__pyx_v_learning_rate": 1, + "__pyx_v_eta0": 1, + "__pyx_v_power_t": 1, + "__pyx_v_t": 1, + "__pyx_v_intercept_decay": 1, + "__pyx_pf_5numpy_7ndarray___getbuffer__": 1, + "*__pyx_v_info": 2, + "__pyx_v_flags": 1, + "__pyx_pf_5numpy_7ndarray_2__releasebuffer__": 1, + "__pyx_k_1": 1, + "__pyx_k_2": 1, + "__pyx_k_3": 1, + "__pyx_k_4": 1, + "__pyx_k_6": 1, + "__pyx_k_8": 1, + "__pyx_k_10": 1, + "__pyx_k_12": 1, + "__pyx_k_13": 1, + "__pyx_k_16": 1, + "__pyx_k_20": 1, + "__pyx_k_21": 1, + "__pyx_k__B": 1, + "__pyx_k__C": 1, + "__pyx_k__H": 1, + "__pyx_k__I": 1, + "__pyx_k__L": 1, + "__pyx_k__O": 1, + "__pyx_k__Q": 1, + "__pyx_k__b": 1, + "__pyx_k__c": 1, + "__pyx_k__d": 1, + "__pyx_k__f": 1, + "__pyx_k__g": 1, + "__pyx_k__h": 1, + "__pyx_k__i": 1, + "__pyx_k__l": 1, + "__pyx_k__p": 1, + "__pyx_k__q": 1, + "__pyx_k__t": 1, + "__pyx_k__u": 1, + "__pyx_k__w": 1, + "__pyx_k__y": 1, + "__pyx_k__Zd": 1, + "__pyx_k__Zf": 1, + "__pyx_k__Zg": 1, + "__pyx_k__np": 1, + "__pyx_k__any": 1, + "__pyx_k__eta": 1, + "__pyx_k__rho": 1, + "__pyx_k__sys": 1, + "__pyx_k__eta0": 1, + "__pyx_k__loss": 1, + "__pyx_k__seed": 1, + "__pyx_k__time": 1, + "__pyx_k__xnnz": 1, + "__pyx_k__alpha": 1, + "__pyx_k__count": 1, + "__pyx_k__dloss": 1, + "__pyx_k__dtype": 1, + "__pyx_k__epoch": 1, + "__pyx_k__isinf": 1, + "__pyx_k__isnan": 1, + "__pyx_k__numpy": 1, + "__pyx_k__order": 1, + "__pyx_k__range": 1, + "__pyx_k__shape": 1, + "__pyx_k__zeros": 1, + "__pyx_k__n_iter": 1, + "__pyx_k__update": 1, + "__pyx_k__dataset": 1, + "__pyx_k__epsilon": 1, + "__pyx_k__float64": 1, + "__pyx_k__nonzero": 1, + "__pyx_k__power_t": 1, + "__pyx_k__shuffle": 1, + "__pyx_k__sumloss": 1, + "__pyx_k__t_start": 1, + "__pyx_k__verbose": 1, + "__pyx_k__weights": 1, + "__pyx_k____main__": 1, + "__pyx_k____test__": 1, + "__pyx_k__is_hinge": 1, + "__pyx_k__intercept": 1, + "__pyx_k__n_samples": 1, + "__pyx_k__plain_sgd": 1, + "__pyx_k__threshold": 1, + "__pyx_k__x_ind_ptr": 1, + "__pyx_k__ValueError": 1, + "__pyx_k__n_features": 1, + "__pyx_k__q_data_ptr": 1, + "__pyx_k__weight_neg": 1, + "__pyx_k__weight_pos": 1, + "__pyx_k__x_data_ptr": 1, + "__pyx_k__RuntimeError": 1, + "__pyx_k__class_weight": 1, + "__pyx_k__penalty_type": 1, + "__pyx_k__fit_intercept": 1, + "__pyx_k__learning_rate": 1, + "__pyx_k__sample_weight": 1, + "__pyx_k__intercept_decay": 1, + "__pyx_k__NotImplementedError": 1, + "*__pyx_kp_s_1": 1, + "*__pyx_kp_u_10": 1, + "*__pyx_kp_u_12": 1, + "*__pyx_kp_u_13": 1, + "*__pyx_kp_u_16": 1, + "*__pyx_kp_s_2": 1, + "*__pyx_kp_s_20": 1, + "*__pyx_n_s_21": 1, + "*__pyx_kp_s_3": 1, + "*__pyx_kp_s_4": 1, + "*__pyx_kp_u_6": 1, + "*__pyx_kp_u_8": 1, + "*__pyx_n_s__C": 1, + "*__pyx_n_s__NotImplementedError": 1, + "*__pyx_n_s__RuntimeError": 1, + "*__pyx_n_s__ValueError": 1, + "*__pyx_n_s____main__": 1, + "*__pyx_n_s____test__": 1, + "*__pyx_n_s__alpha": 1, + "*__pyx_n_s__any": 1, + "*__pyx_n_s__c": 1, + "*__pyx_n_s__class_weight": 1, + "*__pyx_n_s__count": 1, + "*__pyx_n_s__dataset": 1, + "*__pyx_n_s__dloss": 1, + "*__pyx_n_s__dtype": 1, + "*__pyx_n_s__epoch": 1, + "*__pyx_n_s__epsilon": 1, + "*__pyx_n_s__eta": 1, + "*__pyx_n_s__eta0": 1, + "*__pyx_n_s__fit_intercept": 1, + "*__pyx_n_s__float64": 1, + "*__pyx_n_s__i": 1, + "*__pyx_n_s__intercept": 1, + "*__pyx_n_s__intercept_decay": 1, + "*__pyx_n_s__is_hinge": 1, + "*__pyx_n_s__isinf": 1, + "*__pyx_n_s__isnan": 1, + "*__pyx_n_s__learning_rate": 1, + "*__pyx_n_s__loss": 1, + "*__pyx_n_s__n_features": 1, + "*__pyx_n_s__n_iter": 1, + "*__pyx_n_s__n_samples": 1, + "*__pyx_n_s__nonzero": 1, + "*__pyx_n_s__np": 1, + "*__pyx_n_s__numpy": 1, + "*__pyx_n_s__order": 1, + "*__pyx_n_s__p": 1, + "*__pyx_n_s__penalty_type": 1, + "*__pyx_n_s__plain_sgd": 1, + "*__pyx_n_s__power_t": 1, + "*__pyx_n_s__q": 1, + "*__pyx_n_s__q_data_ptr": 1, + "*__pyx_n_s__range": 1, + "*__pyx_n_s__rho": 1, + "*__pyx_n_s__sample_weight": 1, + "*__pyx_n_s__seed": 1, + "*__pyx_n_s__shape": 1, + "*__pyx_n_s__shuffle": 1, + "*__pyx_n_s__sumloss": 1, + "*__pyx_n_s__sys": 1, + "*__pyx_n_s__t": 1, + "*__pyx_n_s__t_start": 1, + "*__pyx_n_s__threshold": 1, + "*__pyx_n_s__time": 1, + "*__pyx_n_s__u": 1, + "*__pyx_n_s__update": 1, + "*__pyx_n_s__verbose": 1, + "*__pyx_n_s__w": 1, + "*__pyx_n_s__weight_neg": 1, + "*__pyx_n_s__weight_pos": 1, + "*__pyx_n_s__weights": 1, + "*__pyx_n_s__x_data_ptr": 1, + "*__pyx_n_s__x_ind_ptr": 1, + "*__pyx_n_s__xnnz": 1, + "*__pyx_n_s__y": 1, + "*__pyx_n_s__zeros": 1, + "*__pyx_int_15": 1, + "*__pyx_k_tuple_5": 1, + "*__pyx_k_tuple_7": 1, + "*__pyx_k_tuple_9": 1, + "*__pyx_k_tuple_11": 1, + "*__pyx_k_tuple_14": 1, + "*__pyx_k_tuple_15": 1, + "*__pyx_k_tuple_17": 1, + "*__pyx_k_tuple_18": 1, + "*__pyx_k_codeobj_19": 1, + "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_1loss": 3, + "*__pyx_args": 9, + "*__pyx_kwds": 9, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, + "__pyx_skip_dispatch": 6, + "__pyx_r": 39, + "*__pyx_t_1": 6, + "*__pyx_t_2": 3, + "*__pyx_t_3": 3, + "*__pyx_t_4": 3, + "__pyx_t_5": 12, + "__pyx_v_self": 15, + "tp_dictoffset": 3, + "__pyx_t_1": 69, + "PyObject_GetAttr": 3, + "__pyx_n_s__loss": 2, + "__pyx_filename": 51, + "__pyx_f": 42, + "__pyx_L1_error": 33, + "PyCFunction_Check": 3, + "PyCFunction_GET_FUNCTION": 3, + "PyCFunction": 3, + "__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_1loss": 1, + "__pyx_t_2": 21, + "PyFloat_FromDouble": 9, + "__pyx_t_3": 39, + "__pyx_t_4": 27, + "PyTuple_New": 3, + "PyTuple_SET_ITEM": 6, + "PyObject_Call": 6, + "PyErr_Occurred": 9, + "__pyx_L0": 18, + "__pyx_builtin_NotImplementedError": 3, + "__pyx_empty_tuple": 3, + "__pyx_doc_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, + "*__pyx_r": 6, + "**__pyx_pyargnames": 3, + "__pyx_n_s__p": 6, + "__pyx_n_s__y": 6, + "values": 30, + "__pyx_kwds": 15, + "kw_args": 15, + "pos_args": 12, + "__pyx_args": 21, + "__pyx_L5_argtuple_error": 12, + "PyDict_Size": 3, + "PyDict_GetItem": 6, + "__pyx_L3_error": 18, + "__pyx_pyargnames": 3, + "__pyx_L4_argument_unpacking_done": 6, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, + "__pyx_vtab": 2, + "loss": 1, + "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_3dloss": 3, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_12LossFunction_dloss": 1, + "__pyx_n_s__dloss": 1, + "__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_3dloss": 1, + "__pyx_doc_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 1, + "dloss": 1, + "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_10Regression_1loss": 3, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 1, + "__pyx_pw_7sklearn_12linear_model_8sgd_fast_10Regression_1loss": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 1, + "__pyx_base.__pyx_vtab": 1, + "__pyx_base.loss": 1, + "": 1, + "": 2, + "local": 5, + "memory": 4, + "RF_OPTION_DEFAULT_ARGUMENTS": 24, + "RF_String*": 222, + "rfString_Create": 4, + "...": 127, + "i_rfString_Create": 3, + "READ_VSNPRINTF_ARGS": 5, + "rfUTF8_VerifySequence": 7, + "RF_FAILURE": 24, + "RE_STRING_INIT_FAILURE": 8, + "buffAllocated": 11, + "RF_String": 27, + "i_NVrfString_Create": 3, + "i_rfString_CreateLocal1": 3, + "RF_OPTION_SOURCE_ENCODING": 30, + "RF_UTF8": 8, + "characterLength": 16, + "*codepoints": 2, + "rfLMS_MacroEvalPtr": 2, + "RF_LMS": 6, + "RF_UTF16_LE": 9, + "RF_UTF16_BE": 7, + "codepoints": 44, + "i/2": 2, + "RF_UTF32_LE": 3, + "RF_UTF32_BE": 3, + "UTF16": 4, + "rfUTF16_Decode": 5, + "cleanup": 12, + "rfUTF16_Decode_swap": 5, + "RF_UTF16_BE//": 2, + "RF_UTF32_LE//": 2, + "copy": 4, + "UTF32": 4, + "into": 8, + "RF_UTF32_BE//": 2, + "": 2, + "endif": 6, + "any": 3, + "other": 16, + "UTF": 17, + "8": 15, + "encode": 2, + "and": 15, + "them": 3, + "rfUTF8_Encode": 4, + "0": 11, + "While": 2, + "attempting": 2, + "create": 2, + "temporary": 4, + "given": 5, + "sequence": 6, + "could": 2, + "not": 6, + "be": 6, + "properly": 2, + "encoded": 2, + "RE_UTF8_ENCODING": 2, + "End": 2, + "Non": 2, + "code=": 2, + "normally": 1, + "since": 5, + "here": 5, + "have": 2, + "validity": 2, + "get": 4, + "character": 11, + "Error": 2, + "at": 3, + "String": 11, + "Allocation": 2, + "due": 2, + "invalid": 2, + "rfLMS_Push": 4, + "Memory": 4, + "allocation": 3, + "Local": 2, + "Stack": 2, + "failed": 2, + "Insufficient": 2, + "space": 4, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method + "Consider": 2, + "compiling": 2, + "library": 3, + "with": 9, + "bigger": 3, + "Quitting": 2, + "proccess": 2, + "RE_LOCALMEMSTACK_INSUFFICIENT": 8, + "i_NVrfString_CreateLocal": 3, + "during": 1, + "string": 18, + "rfString_Init": 3, + "str": 162, + "i_rfString_Init": 3, + "i_NVrfString_Init": 3, + "rfString_Create_cp": 2, + "rfString_Init_cp": 3, + "RF_HEXLE_UI": 8, + "RF_HEXGE_UI": 6, + "ffff": 4, + "xFC0": 4, + "xF000": 2, + "xE": 2, + "F000": 2, + "C0000": 2, + "RE_UTF8_INVALID_CODE_POINT": 2, + "rfString_Create_i": 2, + "numLen": 8, + "max": 4, + "is": 17, + "most": 3, + "environment": 3, + "so": 4, + "chars": 3, + "will": 3, + "certainly": 3, + "fit": 3, + "it": 12, + "sprintf": 10, + "strcpy": 4, + "rfString_Init_i": 2, + "rfString_Create_f": 2, + "rfString_Init_f": 2, + "rfString_Create_UTF16": 2, + "rfString_Init_UTF16": 3, + "utf8ByteLength": 34, + "last": 1, + "utf": 1, + "null": 4, + "termination": 3, + "byteLength*2": 1, + "allocate": 1, + "same": 1, + "as": 4, + "different": 1, + "RE_INPUT": 1, + "ends": 3, + "rfString_Create_UTF32": 2, + "rfString_Init_UTF32": 3, + "off": 8, + "codeBuffer": 9, + "xFEFF": 1, + "big": 14, + "endian": 20, + "xFFFE0000": 1, + "little": 7, + "according": 1, + "standard": 1, + "no": 4, + "BOM": 1, + "means": 1, + "rfUTF32_Length": 1, + "i_rfString_Assign": 3, + "dest": 7, + "sourceP": 2, + "source": 8, + "RF_REALLOC": 9, + "rfString_Assign_char": 2, + "<5)>": 1, + "rfString_Create_nc": 3, + "i_rfString_Create_nc": 3, + "bytesWritten": 2, + "i_NVrfString_Create_nc": 3, + "rfString_Init_nc": 4, + "i_rfString_Init_nc": 3, + "i_NVrfString_Init_nc": 3, + "rfString_Destroy": 2, + "rfString_Deinit": 3, + "rfString_ToUTF16": 4, + "charsN": 5, + "rfUTF8_Decode": 2, + "rfUTF16_Encode": 1, + "rfString_ToUTF32": 4, + "rfString_Length": 5, + "RF_STRING_ITERATE_START": 9, + "RF_STRING_ITERATE_END": 9, + "rfString_GetChar": 2, + "thisstr": 210, + "codePoint": 18, + "RF_STRING_INDEX_OUT_OF_BOUNDS": 2, + "rfString_BytePosToCodePoint": 7, + "rfString_BytePosToCharPos": 4, + "thisstrP": 32, + "bytepos": 12, + "charPos": 8, + "byteI": 7, + "i_rfString_Equal": 3, + "s1P": 2, + "s2P": 2, + "i_rfString_Find": 5, + "sstrP": 6, + "optionsP": 11, + "sstr": 39, + "*optionsP": 8, + "RF_BITFLAG_ON": 5, + "RF_CASE_IGNORE": 2, + "strstr": 2, + "RF_MATCH_WORD": 5, + "": 1, + "0x5a": 1, + "match": 16, + "0x7a": 1, + "substring": 5, + "search": 1, + "zero": 2, + "equals": 1, + "then": 1, + "okay": 1, + "rfString_Equal": 4, + "RFS_": 8, + "ERANGE": 1, + "RE_STRING_TOFLOAT_UNDERFLOW": 1, + "RE_STRING_TOFLOAT": 1, + "rfString_Copy_OUT": 2, + "srcP": 6, + "src": 16, + "rfString_Copy_IN": 2, + "dst": 15, + "rfString_Copy_chars": 2, + "bytePos": 23, + "terminate": 1, + "i_rfString_ScanfAfter": 3, + "afterstrP": 2, + "format": 4, + "afterstr": 5, + "sscanf": 1, + "<=0)>": 1, + "Counts": 1, + "how": 1, + "many": 1, + "times": 1, + "occurs": 1, + "inside": 2, + "i_rfString_Count": 5, + "sstr2": 2, + "move": 12, + "rfString_FindBytePos": 10, + "i_DECLIMEX_": 121, + "rfString_Tokenize": 2, + "sep": 3, + "tokensN": 2, + "RF_String**": 2, + "tokens": 5, + "*tokensN": 1, + "rfString_Count": 4, + "lstr": 6, + "lstrP": 1, + "rstr": 24, + "rstrP": 5, + "temp": 11, + "start": 10, + "rfString_After": 4, + "result": 48, + "rfString_Beforev": 4, + "parNP": 6, + "i_rfString_Beforev": 16, + "parN": 10, + "*parNP": 2, + "minPos": 17, + "thisPos": 8, + "va_list": 3, + "argList": 8, + "va_start": 3, + "va_arg": 2, + "va_end": 3, + "i_rfString_Before": 5, + "i_rfString_After": 5, + "afterP": 2, + "after": 6, + "rfString_Afterv": 4, + "i_rfString_Afterv": 16, + "minPosLength": 3, + "go": 8, + "i_rfString_Append": 3, + "otherP": 4, + "strncat": 1, + "rfString_Append_i": 2, + "rfString_Append_f": 2, + "i_rfString_Prepend": 3, + "goes": 1, + "i_rfString_Remove": 6, + "numberP": 1, + "*numberP": 1, + "occurences": 5, + "done": 1, + "<=thisstr->": 1, + "i_rfString_KeepOnly": 3, + "keepstrP": 2, + "keepLength": 2, + "charValue": 12, + "*keepChars": 1, + "keepstr": 5, + "exists": 6, + "charBLength": 5, + "keepChars": 4, + "*keepLength": 1, + "rfString_Iterate_Start": 6, + "rfString_Iterate_End": 4, + "": 1, + "does": 1, + "exist": 2, + "back": 1, + "cover": 1, + "that": 9, + "effectively": 1, + "gets": 1, + "deleted": 1, + "rfUTF8_FromCodepoint": 1, + "this": 5, + "kind": 1, + "non": 1, + "clean": 1, + "way": 1, + "macro": 2, + "internally": 1, + "uses": 1, + "byteIndex_": 12, + "variable": 1, + "use": 1, "determine": 1, - "heuristically": 1, - "unit": 3, - "framework.": 1, - "we": 1, - "determined": 1, - "framework": 1, - "running.": 1, - "GetFieldNameForProperty": 1, - "convention": 2, - "GetFieldNameForPropertyNameFunc.": 1, + "current": 5, + "iteration": 6, + "backs": 1, + "memmove": 2, + "by": 1, + "contiuing": 1, + "make": 3, + "sure": 2, + "position": 1, + "won": 1, + "array": 1, + "rfString_PruneStart": 2, + "nBytePos": 23, + "rfString_PruneEnd": 2, + "RF_STRING_ITERATEB_START": 2, + "RF_STRING_ITERATEB_END": 2, + "rfString_PruneMiddleB": 2, + "pBytePos": 15, + "indexing": 1, + "works": 1, + "pbytePos": 2, + "pth": 2, + "include": 6, + "rfString_PruneMiddleF": 2, + "got": 1, + "all": 2, + "i_rfString_Replace": 6, + "numP": 1, + "*numP": 1, + "RF_StringX": 2, + "just": 1, + "finding": 1, + "foundN": 10, + "diff": 93, + "bSize": 4, + "bytePositions": 17, + "bSize*sizeof": 1, + "rfStringX_FromString_IN": 1, + "temp.bIndex": 2, + "temp.bytes": 1, + "temp.byteLength": 1, + "rfStringX_Deinit": 1, + "replace": 3, + "removed": 2, + "one": 2, + "orSize": 5, + "nSize": 4, + "number*diff": 1, + "strncpy": 3, + "smaller": 1, + "diff*number": 1, + "remove": 1, + "strings": 5, + "equal": 1, + "i_rfString_StripStart": 3, + "subP": 7, + "RF_String*sub": 2, + "noMatch": 8, + "*subValues": 2, + "subLength": 6, + "sub": 12, + "subValues": 8, + "*subLength": 2, + "i_rfString_StripEnd": 3, + "lastBytePos": 4, + "testity": 2, + "i_rfString_Strip": 3, + "res1": 2, + "rfString_StripStart": 3, + "res2": 2, + "rfString_StripEnd": 3, + "rfString_Create_fUTF8": 2, + "rfString_Init_fUTF8": 3, + "unused": 3, + "rfString_Assign_fUTF8": 2, + "FILE*f": 2, + "utf8BufferSize": 4, + "function": 6, + "rfString_Append_fUTF8": 2, + "rfString_Append": 5, + "rfString_Create_fUTF16": 2, + "rfString_Init_fUTF16": 3, + "rfFReadLine_UTF16LE": 4, + "rfFReadLine_UTF16BE": 6, + "rfString_Assign_fUTF16": 2, + "rfString_Append_fUTF16": 2, + "char*utf8": 3, + "rfString_Create_fUTF32": 2, + "rfString_Init_fUTF32": 3, + "rfFReadLine_UTF32LE": 4, + "<0)>": 1, + "Failure": 1, + "initialize": 1, + "reading": 1, + "Little": 1, + "Endian": 1, + "32": 1, + "bytesN=": 1, + "rfString_Assign_fUTF32": 2, + "rfString_Append_fUTF32": 2, + "i_rfString_Fwrite": 5, + "sP": 2, + "encodingP": 1, + "*utf32": 1, + "utf16": 11, + "*encodingP": 1, + "fwrite": 5, + "logging": 5, + "utf32": 10, + "i_WRITE_CHECK": 1, + "RE_FILE_WRITE": 1, + "syscalldef": 1, + "syscalldefs": 1, + "SYSCALL_OR_NUM": 3, + "SYS_restart_syscall": 1, + "MAKE_UINT16": 3, + "SYS_exit": 1, + "SYS_fork": 1, + "http_parser_h": 2, + "HTTP_PARSER_VERSION_MAJOR": 1, + "HTTP_PARSER_VERSION_MINOR": 1, + "": 2, + "__MINGW32__": 1, + "__int8": 2, + "int8_t": 3, + "__int16": 2, + "int16_t": 1, + "__int32": 2, + "__int64": 3, + "int64_t": 2, + "uint64_t": 8, + "ssize_t": 1, + "": 1, + "HTTP_PARSER_STRICT": 5, + "HTTP_PARSER_DEBUG": 4, + "HTTP_MAX_HEADER_SIZE": 2, + "*1024": 4, + "http_parser": 13, + "http_parser_settings": 5, + "HTTP_METHOD_MAP": 3, + "XX": 63, + "DELETE": 2, + "GET": 2, + "HEAD": 2, + "POST": 2, + "PUT": 2, + "CONNECT": 2, + "OPTIONS": 2, + "TRACE": 2, + "COPY": 2, + "LOCK": 2, + "MKCOL": 2, + "MOVE": 2, + "PROPFIND": 2, + "PROPPATCH": 2, + "SEARCH": 3, + "UNLOCK": 2, + "REPORT": 2, + "MKACTIVITY": 2, + "CHECKOUT": 2, + "MERGE": 2, + "MSEARCH": 1, + "M": 1, + "NOTIFY": 2, + "SUBSCRIBE": 2, + "UNSUBSCRIBE": 2, + "PATCH": 2, + "PURGE": 2, + "http_method": 4, + "HTTP_##name": 1, + "http_parser_type": 3, + "HTTP_REQUEST": 7, + "HTTP_RESPONSE": 3, + "HTTP_BOTH": 1, + "F_CHUNKED": 11, + "F_CONNECTION_KEEP_ALIVE": 3, + "F_CONNECTION_CLOSE": 3, + "F_TRAILING": 3, + "F_UPGRADE": 3, + "F_SKIPBODY": 4, + "HTTP_ERRNO_MAP": 3, + "OK": 1, + "CB_message_begin": 1, + "CB_url": 1, + "CB_header_field": 1, + "CB_header_value": 1, + "CB_headers_complete": 1, + "CB_body": 1, + "CB_message_complete": 1, + "INVALID_EOF_STATE": 1, + "HEADER_OVERFLOW": 1, + "CLOSED_CONNECTION": 1, + "INVALID_VERSION": 1, + "INVALID_STATUS": 1, + "INVALID_METHOD": 1, + "INVALID_URL": 1, + "INVALID_HOST": 1, + "INVALID_PORT": 1, + "INVALID_PATH": 1, + "INVALID_QUERY_STRING": 1, + "INVALID_FRAGMENT": 1, + "LF_EXPECTED": 1, + "INVALID_HEADER_TOKEN": 1, + "INVALID_CONTENT_LENGTH": 1, + "INVALID_CHUNK_SIZE": 1, + "INVALID_CONSTANT": 1, + "INVALID_INTERNAL_STATE": 1, + "STRICT": 1, + "PAUSED": 1, + "UNKNOWN": 1, + "HTTP_ERRNO_GEN": 3, + "HPE_##n": 1, + "http_errno": 11, + "HTTP_PARSER_ERRNO": 10, + "HTTP_PARSER_ERRNO_LINE": 2, + "error_lineno": 3, + "state": 104, + "header_state": 42, + "nread": 7, + "content_length": 27, + "http_major": 11, + "http_minor": 11, + "status_code": 8, + "method": 39, + "upgrade": 3, + "http_cb": 3, + "on_message_begin": 1, + "http_data_cb": 4, + "on_url": 1, + "on_header_field": 1, + "on_header_value": 1, + "on_headers_complete": 3, + "on_body": 1, + "on_message_complete": 1, + "http_parser_url_fields": 2, + "UF_SCHEMA": 2, + "UF_HOST": 3, + "UF_PORT": 5, + "UF_PATH": 2, + "UF_QUERY": 2, + "UF_FRAGMENT": 2, + "UF_MAX": 3, + "http_parser_url": 3, + "field_set": 5, + "port": 7, + "field_data": 5, + "http_parser_init": 2, + "*parser": 9, + "http_parser_execute": 2, + "*settings": 2, + "http_should_keep_alive": 2, + "*http_method_str": 1, + "*http_errno_name": 1, + "err": 38, + "*http_errno_description": 1, + "http_parser_parse_url": 2, + "buflen": 3, + "is_connect": 4, + "*u": 2, + "http_parser_pause": 2, + "paused": 3, + "": 2, + "ULLONG_MAX": 10, + "MIN": 3, + "SET_ERRNO": 47, + "e": 4, + "parser": 334, + "CALLBACK_NOTIFY_": 3, + "FOR": 11, + "ER": 4, + "HPE_OK": 10, + "settings": 6, + "on_##FOR": 4, + "HPE_CB_##FOR": 2, + "CALLBACK_NOTIFY": 10, + "CALLBACK_NOTIFY_NOADVANCE": 2, + "CALLBACK_DATA_": 4, + "LEN": 2, + "FOR##_mark": 7, + "CALLBACK_DATA": 10, + "CALLBACK_DATA_NOADVANCE": 6, + "MARK": 7, + "PROXY_CONNECTION": 4, + "CONNECTION": 4, + "CONTENT_LENGTH": 4, + "TRANSFER_ENCODING": 4, + "UPGRADE": 4, + "CHUNKED": 4, + "KEEP_ALIVE": 4, + "CLOSE": 4, + "*method_strings": 1, + "#string": 1, + "unhex": 3, + "normal_url_char": 3, + "T": 3, + "s_dead": 10, + "s_start_req_or_res": 4, + "s_res_or_resp_H": 3, + "s_start_res": 5, + "s_res_H": 3, + "s_res_HT": 4, + "s_res_HTT": 3, + "s_res_HTTP": 3, + "s_res_first_http_major": 3, + "s_res_http_major": 3, + "s_res_first_http_minor": 3, + "s_res_http_minor": 3, + "s_res_first_status_code": 3, + "s_res_status_code": 3, + "s_res_status": 3, + "s_res_line_almost_done": 4, + "s_start_req": 6, + "s_req_method": 4, + "s_req_spaces_before_url": 5, + "s_req_schema": 6, + "s_req_schema_slash": 6, + "s_req_schema_slash_slash": 6, + "s_req_host_start": 8, + "s_req_host_v6_start": 7, + "s_req_host_v6": 7, + "s_req_host_v6_end": 7, + "s_req_host": 8, + "s_req_port_start": 7, + "s_req_port": 6, + "s_req_path": 8, + "s_req_query_string_start": 8, + "s_req_query_string": 7, + "s_req_fragment_start": 7, + "s_req_fragment": 7, + "s_req_http_start": 3, + "s_req_http_H": 3, + "s_req_http_HT": 3, + "s_req_http_HTT": 3, + "s_req_http_HTTP": 3, + "s_req_first_http_major": 3, + "s_req_http_major": 3, + "s_req_first_http_minor": 3, + "s_req_http_minor": 3, + "s_req_line_almost_done": 4, + "s_header_field_start": 12, + "s_header_field": 4, + "s_header_value_start": 4, + "s_header_value": 5, + "s_header_value_lws": 3, + "s_header_almost_done": 6, + "s_chunk_size_start": 4, + "s_chunk_size": 3, + "s_chunk_parameters": 3, + "s_chunk_size_almost_done": 4, + "s_headers_almost_done": 4, + "s_headers_done": 4, + "s_chunk_data": 3, + "s_chunk_data_almost_done": 3, + "s_chunk_data_done": 3, + "s_body_identity": 3, + "s_body_identity_eof": 4, + "s_message_done": 3, + "PARSING_HEADER": 2, + "header_states": 1, + "h_general": 23, + "h_C": 3, + "h_CO": 3, + "h_CON": 3, + "h_matching_connection": 3, + "h_matching_proxy_connection": 3, + "h_matching_content_length": 3, + "h_matching_transfer_encoding": 3, + "h_matching_upgrade": 3, + "h_connection": 6, + "h_content_length": 5, + "h_transfer_encoding": 5, + "h_upgrade": 4, + "h_matching_transfer_encoding_chunked": 3, + "h_matching_connection_keep_alive": 3, + "h_matching_connection_close": 3, + "h_transfer_encoding_chunked": 4, + "h_connection_keep_alive": 4, + "h_connection_close": 4, + "Macros": 1, + "classes": 1, + "depends": 1, + "mode": 11, + "define": 14, + "CR": 18, + "LF": 21, + "LOWER": 7, + "0x20": 1, + "IS_ALPHA": 5, + "IS_NUM": 14, + "9": 1, + "IS_ALPHANUM": 3, + "IS_HEX": 2, + "TOKEN": 4, + "IS_URL_CHAR": 6, + "IS_HOST_CHAR": 4, + "0x80": 1, + "start_state": 1, + "cond": 1, + "HPE_STRICT": 1, + "HTTP_STRERROR_GEN": 3, + "#n": 1, + "*description": 1, + "http_strerror_tab": 7, + "http_message_needs_eof": 4, + "parse_url_char": 5, + "ch": 145, + "unhex_val": 7, + "*header_field_mark": 1, + "*header_value_mark": 1, + "*url_mark": 1, + "*body_mark": 1, + "message_complete": 7, + "HPE_INVALID_EOF_STATE": 1, + "header_field_mark": 2, + "header_value_mark": 2, + "url_mark": 2, + "HPE_HEADER_OVERFLOW": 1, + "reexecute_byte": 7, + "HPE_CLOSED_CONNECTION": 1, + "message_begin": 3, + "HPE_INVALID_CONSTANT": 3, + "HTTP_HEAD": 2, + "STRICT_CHECK": 15, + "HPE_INVALID_VERSION": 12, + "HPE_INVALID_STATUS": 3, + "HPE_INVALID_METHOD": 4, + "HTTP_CONNECT": 4, + "HTTP_DELETE": 1, + "HTTP_GET": 1, + "HTTP_LOCK": 1, + "HTTP_MKCOL": 2, + "HTTP_NOTIFY": 1, + "HTTP_OPTIONS": 1, + "HTTP_POST": 2, + "HTTP_REPORT": 1, + "HTTP_SUBSCRIBE": 2, + "HTTP_TRACE": 1, + "HTTP_UNLOCK": 2, + "*matcher": 1, + "matcher": 3, + "method_strings": 2, + "HTTP_CHECKOUT": 1, + "HTTP_COPY": 1, + "HTTP_MOVE": 1, + "HTTP_MERGE": 1, + "HTTP_MSEARCH": 1, + "HTTP_MKACTIVITY": 1, + "HTTP_SEARCH": 1, + "HTTP_PROPFIND": 2, + "HTTP_PUT": 2, + "HTTP_PATCH": 1, + "HTTP_PURGE": 1, + "HTTP_UNSUBSCRIBE": 1, + "HTTP_PROPPATCH": 1, + "url": 4, + "HPE_INVALID_URL": 4, + "HPE_LF_EXPECTED": 1, + "HPE_INVALID_HEADER_TOKEN": 2, + "header_field": 5, + "header_value": 6, + "HPE_INVALID_CONTENT_LENGTH": 4, + "NEW_MESSAGE": 6, + "HPE_CB_headers_complete": 1, + "to_read": 6, + "body": 6, + "body_mark": 2, + "HPE_INVALID_CHUNK_SIZE": 2, + "HPE_INVALID_INTERNAL_STATE": 1, + "1": 2, + "HPE_UNKNOWN": 1, + "Does": 1, + "see": 2, + "an": 2, + "find": 1, + "http_method_str": 1, + "memset": 4, + "http_errno_name": 1, + "/sizeof": 4, + ".name": 1, + "http_errno_description": 1, + ".description": 1, + "uf": 14, + "old_uf": 4, + ".off": 2, + "xffff": 1, + "HPE_PAUSED": 2, + "ATSHOME_LIBATS_DYNARRAY_CATS": 3, + "atslib_dynarray_memcpy": 1, + "atslib_dynarray_memmove": 1, + "ifndef": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "CONFIG_SMP": 1, + "DEFINE_MUTEX": 1, + "cpu_add_remove_lock": 3, + "cpu_maps_update_begin": 9, + "mutex_lock": 5, + "cpu_maps_update_done": 9, + "mutex_unlock": 6, + "RAW_NOTIFIER_HEAD": 1, + "cpu_chain": 4, + "cpu_hotplug_disabled": 7, + "CONFIG_HOTPLUG_CPU": 2, + "task_struct": 5, + "*active_writer": 1, + "mutex": 1, + "lock": 6, + "cpu_hotplug": 1, + ".active_writer": 1, + ".lock": 1, + "__MUTEX_INITIALIZER": 1, + "cpu_hotplug.lock": 8, + ".refcount": 1, + "get_online_cpus": 2, + "might_sleep": 1, + "cpu_hotplug.active_writer": 6, + "cpu_hotplug.refcount": 3, + "EXPORT_SYMBOL_GPL": 4, + "put_online_cpus": 2, + "wake_up_process": 1, + "cpu_hotplug_begin": 4, + "__set_current_state": 1, + "TASK_UNINTERRUPTIBLE": 1, + "schedule": 1, + "cpu_hotplug_done": 4, + "__ref": 6, + "register_cpu_notifier": 2, + "notifier_block": 3, + "*nb": 3, + "raw_notifier_chain_register": 1, + "nb": 2, + "__cpu_notify": 6, + "val": 20, + "*v": 3, + "nr_to_call": 2, + "*nr_calls": 1, + "__raw_notifier_call_chain": 1, + "nr_calls": 9, + "notifier_to_errno": 1, + "cpu_notify": 5, + "cpu_notify_nofail": 4, + "BUG_ON": 4, + "EXPORT_SYMBOL": 8, + "unregister_cpu_notifier": 2, + "raw_notifier_chain_unregister": 1, + "clear_tasks_mm_cpumask": 1, + "cpu": 57, + "WARN_ON": 1, + "cpu_online": 5, + "rcu_read_lock": 1, + "for_each_process": 2, + "find_lock_task_mm": 1, + "cpumask_clear_cpu": 5, + "mm_cpumask": 1, + "mm": 1, + "task_unlock": 1, + "rcu_read_unlock": 1, + "check_for_tasks": 2, + "write_lock_irq": 1, + "tasklist_lock": 2, + "task_cpu": 1, + "TASK_RUNNING": 1, + "utime": 1, + "stime": 1, + "printk": 12, + "KERN_WARNING": 3, + "comm": 1, + "task_pid_nr": 1, + "write_unlock_irq": 1, + "take_cpu_down_param": 3, + "mod": 13, + "*hcpu": 3, + "take_cpu_down": 2, + "*_param": 1, + "*param": 1, + "_param": 1, + "__cpu_disable": 1, + "CPU_DYING": 1, + "param": 2, + "hcpu": 10, + "_cpu_down": 3, + "tasks_frozen": 4, + "CPU_TASKS_FROZEN": 2, + "tcd_param": 2, + ".mod": 1, + ".hcpu": 1, + "num_online_cpus": 2, + "EBUSY": 3, + "CPU_DOWN_PREPARE": 1, + "CPU_DOWN_FAILED": 2, + "__func__": 2, + "out_release": 3, + "__stop_machine": 1, + "cpumask_of": 1, + "idle_cpu": 1, + "cpu_relax": 1, + "__cpu_die": 1, + "CPU_DEAD": 1, + "CPU_POST_DEAD": 1, + "cpu_down": 2, + "__cpuinit": 3, + "_cpu_up": 3, + "*idle": 1, + "cpu_present": 1, + "idle": 4, + "idle_thread_get": 1, + "IS_ERR": 1, + "PTR_ERR": 1, + "CPU_UP_PREPARE": 1, + "out_notify": 3, + "__cpu_up": 1, + "CPU_ONLINE": 1, + "CPU_UP_CANCELED": 1, + "cpu_up": 2, + "CONFIG_MEMORY_HOTPLUG": 2, + "nid": 5, + "pg_data_t": 1, + "*pgdat": 1, + "cpu_possible": 1, + "KERN_ERR": 5, + "CONFIG_IA64": 1, + "cpu_to_node": 1, + "node_online": 1, + "mem_online_node": 1, + "pgdat": 3, + "NODE_DATA": 1, + "node_zonelists": 1, + "_zonerefs": 1, + "zone": 1, + "zonelists_mutex": 2, + "build_all_zonelists": 1, + "CONFIG_PM_SLEEP_SMP": 2, + "cpumask_var_t": 1, + "frozen_cpus": 9, + "__weak": 4, + "arch_disable_nonboot_cpus_begin": 2, + "arch_disable_nonboot_cpus_end": 2, + "disable_nonboot_cpus": 1, + "first_cpu": 3, + "cpumask_first": 1, + "cpu_online_mask": 3, + "cpumask_clear": 2, + "for_each_online_cpu": 1, + "cpumask_set_cpu": 5, + "arch_enable_nonboot_cpus_begin": 2, + "arch_enable_nonboot_cpus_end": 2, + "enable_nonboot_cpus": 1, + "cpumask_empty": 1, + "KERN_INFO": 2, + "for_each_cpu": 1, + "__init": 2, + "alloc_frozen_cpus": 2, + "alloc_cpumask_var": 1, + "GFP_KERNEL": 1, + "__GFP_ZERO": 1, + "core_initcall": 2, + "cpu_hotplug_disable_before_freeze": 2, + "cpu_hotplug_enable_after_thaw": 2, + "cpu_hotplug_pm_callback": 2, + "action": 2, + "*ptr": 1, + "PM_SUSPEND_PREPARE": 1, + "PM_HIBERNATION_PREPARE": 1, + "PM_POST_SUSPEND": 1, + "PM_POST_HIBERNATION": 1, + "NOTIFY_DONE": 1, + "NOTIFY_OK": 1, + "cpu_hotplug_pm_sync_init": 2, + "pm_notifier": 1, + "notify_cpu_starting": 1, + "CPU_STARTING": 1, + "cpumask_test_cpu": 1, + "CPU_STARTING_FROZEN": 1, + "MASK_DECLARE_1": 3, + "UL": 1, + "MASK_DECLARE_2": 3, + "MASK_DECLARE_4": 3, + "MASK_DECLARE_8": 9, + "cpu_bit_bitmap": 2, + "BITS_PER_LONG": 2, + "BITS_TO_LONGS": 1, + "NR_CPUS": 2, + "DECLARE_BITMAP": 6, + "cpu_all_bits": 2, + "CPU_BITS_ALL": 2, + "CONFIG_INIT_ALL_POSSIBLE": 1, + "cpu_possible_bits": 6, + "CONFIG_NR_CPUS": 5, + "__read_mostly": 5, + "cpumask": 7, + "*const": 4, + "cpu_possible_mask": 2, + "to_cpumask": 15, + "cpu_online_bits": 5, + "cpu_present_bits": 5, + "cpu_present_mask": 2, + "cpu_active_bits": 4, + "cpu_active_mask": 2, + "set_cpu_possible": 1, + "bool": 6, + "possible": 2, + "set_cpu_present": 1, + "present": 2, + "set_cpu_online": 1, + "online": 2, + "set_cpu_active": 1, + "active": 2, + "init_cpu_present": 1, + "*src": 3, + "cpumask_copy": 3, + "init_cpu_possible": 1, + "init_cpu_online": 1, + "yajl_status_to_string": 1, + "yajl_status": 4, + "statStr": 6, + "yajl_status_ok": 1, + "yajl_status_client_canceled": 1, + "yajl_status_insufficient_data": 1, + "yajl_status_error": 1, + "yajl_handle": 10, + "yajl_alloc": 1, + "yajl_callbacks": 1, + "callbacks": 3, + "yajl_parser_config": 1, + "config": 4, + "yajl_alloc_funcs": 3, + "afs": 8, + "allowComments": 4, + "validateUTF8": 3, + "hand": 28, + "afsBuffer": 3, + "realloc": 1, + "yajl_set_default_alloc_funcs": 1, + "YA_MALLOC": 1, + "yajl_handle_t": 1, + "alloc": 6, + "checkUTF8": 1, + "lexer": 4, + "yajl_lex_alloc": 1, + "bytesConsumed": 2, + "decodeBuf": 2, + "yajl_buf_alloc": 1, + "yajl_bs_init": 1, + "stateStack": 3, + "yajl_bs_push": 1, + "yajl_state_start": 1, + "yajl_reset_parser": 1, + "yajl_lex_realloc": 1, + "yajl_free": 1, + "yajl_bs_free": 1, + "yajl_buf_free": 1, + "yajl_lex_free": 1, + "YA_FREE": 2, + "yajl_parse": 2, + "jsonText": 4, + "jsonTextLen": 4, + "yajl_do_parse": 1, + "yajl_parse_complete": 1, + "yajl_get_error": 1, + "verbose": 2, + "yajl_render_error_string": 1, + "yajl_get_bytes_consumed": 1, + "yajl_free_error": 1, + "REFU_USTRING_H": 2, + "": 1, + "RF_MODULE_STRINGS//": 1, + "module": 3, + "": 2, + "": 1, + "argument": 1, + "wrapping": 1, + "functionality": 1, + "": 1, + "unicode": 2, + "opening": 2, + "bracket": 4, + "calling": 4, + "xFF0FFFF": 1, + "rfUTF8_IsContinuationByte2": 1, + "b__": 3, + "0xBF": 1, + "pragma": 1, + "pack": 2, + "push": 1, + "internal": 4, + "author": 1, + "Lefteris": 1, + "09": 1, + "12": 1, + "2010": 1, + "endinternal": 1, + "brief": 1, + "representation": 2, + "The": 1, + "Refu": 2, + "Unicode": 1, + "has": 2, + "two": 1, + "versions": 1, + "One": 1, + "ref": 1, + "what": 1, + "operations": 1, + "can": 2, + "performed": 1, + "extended": 3, + "Strings": 2, + "Functions": 1, + "convert": 1, + "but": 1, + "always": 2, + "Once": 1, + "been": 1, + "created": 1, + "assumed": 1, + "valid": 1, + "every": 1, + "performs": 1, + "unless": 1, + "otherwise": 1, + "specified": 1, + "All": 1, + "functions": 2, + "which": 1, + "isinherited": 1, + "StringX": 2, + "their": 1, + "description": 1, + "used": 10, + "safely": 1, + "specific": 1, + "or": 1, "needs": 1, +<<<<<<< HEAD "found.": 1, "name.": 1, "DeferredScheduler": 1, @@ -68277,159 +122205,2287 @@ "": 1, "": 1, "": 1 - }, - "XProc": { - "": 1, - "version=": 2, - "encoding=": 1, - "": 1, - "xmlns": 2, - "p=": 1, - "c=": 1, - "": 1, - "port=": 2, - "": 1, - "": 1, - "Hello": 1, - "world": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1 - }, - "XQuery": { - "(": 38, - "-": 486, - "xproc.xqm": 1, - "core": 1, - "xqm": 1, - "contains": 1, - "entry": 2, - "points": 1, - "primary": 1, - "eval": 3, - "step": 5, - "function": 3, - "and": 3, - "control": 1, - "functions.": 1, - ")": 38, - "xquery": 1, - "version": 1, - "encoding": 1, - ";": 25, - "module": 6, - "namespace": 8, - "xproc": 17, - "declare": 24, - "namespaces": 5, - "p": 2, - "c": 1, - "err": 1, - "imports": 1, - "import": 4, - "util": 1, - "at": 4, - "const": 1, - "parse": 8, - "u": 2, - "options": 2, - "boundary": 1, - "space": 1, - "preserve": 1, - "option": 1, - "saxon": 1, - "output": 1, - "functions": 1, - "variable": 13, - "run": 2, - "run#6": 1, - "choose": 1, - "try": 1, - "catch": 1, - "group": 1, - "for": 1, - "each": 1, - "viewport": 1, - "library": 1, - "pipeline": 8, +======= + "manipulate": 1, + "Extended": 1, + "To": 1, + "documentation": 1, + "even": 1, + "clearer": 1, + "should": 2, + "marked": 1, + "notinherited": 1, + "cppcode": 1, + "constructor": 1, + "i_StringCHandle": 1, + "**": 6, + "@endcpp": 1, + "@endinternal": 1, + "*/": 1, + "#pragma": 1, + "pop": 1, + "RF_IAMHERE_FOR_DOXYGEN": 22, + "i_rfString_CreateLocal": 2, + "__VA_ARGS__": 66, + "RP_SELECT_FUNC_IF_NARGIS": 5, + "i_SELECT_RF_STRING_CREATE": 1, + "i_SELECT_RF_STRING_CREATE1": 1, + "i_SELECT_RF_STRING_CREATE0": 1, + "///Internal": 1, + "creates": 1, + "i_SELECT_RF_STRING_CREATELOCAL": 1, + "i_SELECT_RF_STRING_CREATELOCAL1": 1, + "i_SELECT_RF_STRING_CREATELOCAL0": 1, + "i_SELECT_RF_STRING_INIT": 1, + "i_SELECT_RF_STRING_INIT1": 1, + "i_SELECT_RF_STRING_INIT0": 1, + "i_SELECT_RF_STRING_CREATE_NC": 1, + "i_SELECT_RF_STRING_CREATE_NC1": 1, + "i_SELECT_RF_STRING_CREATE_NC0": 1, + "i_SELECT_RF_STRING_INIT_NC": 1, + "i_SELECT_RF_STRING_INIT_NC1": 1, + "i_SELECT_RF_STRING_INIT_NC0": 1, + "//@": 1, + "rfString_Assign": 2, + "i_DESTINATION_": 2, + "i_SOURCE_": 2, + "i_rfLMS_WRAP2": 5, + "rfString_ToUTF8": 2, + "i_STRING_": 2, + "rfString_ToCstr": 2, + "uint32_t*length": 1, + "string_": 9, + "startCharacterPos_": 4, + "characterUnicodeValue_": 4, + "j_": 6, + "//Two": 1, + "macros": 1, + "accomplish": 1, + "going": 1, + "backwards.": 1, + "This": 1, + "its": 1, + "pair.": 1, + "rfString_IterateB_Start": 1, + "characterPos_": 5, + "b_index_": 6, + "c_index_": 3, + "rfString_IterateB_End": 1, + "i_STRING1_": 2, + "i_STRING2_": 2, + "i_rfLMSX_WRAP2": 4, + "rfString_Find": 3, + "i_THISSTR_": 60, + "i_SEARCHSTR_": 26, + "i_OPTIONS_": 28, + "i_rfLMS_WRAP3": 4, + "i_RFI8_": 54, + "RF_SELECT_FUNC_IF_NARGGT": 10, + "i_NPSELECT_RF_STRING_FIND": 1, + "i_NPSELECT_RF_STRING_FIND1": 1, + "RF_COMPILE_ERROR": 33, + "i_NPSELECT_RF_STRING_FIND0": 1, + "RF_SELECT_FUNC": 10, + "i_SELECT_RF_STRING_FIND": 1, + "i_SELECT_RF_STRING_FIND2": 1, + "i_SELECT_RF_STRING_FIND3": 1, + "i_SELECT_RF_STRING_FIND1": 1, + "i_SELECT_RF_STRING_FIND0": 1, + "rfString_ToInt": 1, + "int32_t*": 1, + "rfString_ToDouble": 1, + "double*": 1, + "rfString_ScanfAfter": 2, + "i_AFTERSTR_": 8, + "i_FORMAT_": 2, + "i_VAR_": 2, + "i_rfLMSX_WRAP4": 11, + "i_NPSELECT_RF_STRING_COUNT": 1, + "i_NPSELECT_RF_STRING_COUNT1": 1, + "i_NPSELECT_RF_STRING_COUNT0": 1, + "i_SELECT_RF_STRING_COUNT": 1, + "i_SELECT_RF_STRING_COUNT2": 1, + "i_rfLMSX_WRAP3": 5, + "i_SELECT_RF_STRING_COUNT3": 1, + "i_SELECT_RF_STRING_COUNT1": 1, + "i_SELECT_RF_STRING_COUNT0": 1, + "rfString_Between": 3, + "i_rfString_Between": 4, + "i_NPSELECT_RF_STRING_BETWEEN": 1, + "i_NPSELECT_RF_STRING_BETWEEN1": 1, + "i_NPSELECT_RF_STRING_BETWEEN0": 1, + "i_SELECT_RF_STRING_BETWEEN": 1, + "i_SELECT_RF_STRING_BETWEEN4": 1, + "i_LEFTSTR_": 6, + "i_RIGHTSTR_": 6, + "i_RESULT_": 12, + "i_rfLMSX_WRAP5": 9, + "i_SELECT_RF_STRING_BETWEEN5": 1, + "i_SELECT_RF_STRING_BETWEEN3": 1, + "i_SELECT_RF_STRING_BETWEEN2": 1, + "i_SELECT_RF_STRING_BETWEEN1": 1, + "i_SELECT_RF_STRING_BETWEEN0": 1, + "i_NPSELECT_RF_STRING_BEFOREV": 1, + "i_NPSELECT_RF_STRING_BEFOREV1": 1, + "RF_SELECT_FUNC_IF_NARGGT2": 2, + "i_LIMSELECT_RF_STRING_BEFOREV": 1, + "i_NPSELECT_RF_STRING_BEFOREV0": 1, + "i_LIMSELECT_RF_STRING_BEFOREV1": 1, + "i_LIMSELECT_RF_STRING_BEFOREV0": 1, + "i_SELECT_RF_STRING_BEFOREV": 1, + "i_SELECT_RF_STRING_BEFOREV5": 1, + "i_ARG1_": 56, + "i_ARG2_": 56, + "i_ARG3_": 56, + "i_ARG4_": 56, + "i_RFUI8_": 28, + "i_SELECT_RF_STRING_BEFOREV6": 1, + "i_rfLMSX_WRAP6": 2, + "i_SELECT_RF_STRING_BEFOREV7": 1, + "i_rfLMSX_WRAP7": 2, + "i_SELECT_RF_STRING_BEFOREV8": 1, + "i_rfLMSX_WRAP8": 2, + "i_SELECT_RF_STRING_BEFOREV9": 1, + "i_rfLMSX_WRAP9": 2, + "i_SELECT_RF_STRING_BEFOREV10": 1, + "i_rfLMSX_WRAP10": 2, + "i_SELECT_RF_STRING_BEFOREV11": 1, + "i_rfLMSX_WRAP11": 2, + "i_SELECT_RF_STRING_BEFOREV12": 1, + "i_rfLMSX_WRAP12": 2, + "i_SELECT_RF_STRING_BEFOREV13": 1, + "i_rfLMSX_WRAP13": 2, + "i_SELECT_RF_STRING_BEFOREV14": 1, + "i_rfLMSX_WRAP14": 2, + "i_SELECT_RF_STRING_BEFOREV15": 1, + "i_rfLMSX_WRAP15": 2, + "i_SELECT_RF_STRING_BEFOREV16": 1, + "i_rfLMSX_WRAP16": 2, + "i_SELECT_RF_STRING_BEFOREV17": 1, + "i_rfLMSX_WRAP17": 2, + "i_SELECT_RF_STRING_BEFOREV18": 1, + "i_rfLMSX_WRAP18": 2, + "rfString_Before": 3, + "i_NPSELECT_RF_STRING_BEFORE": 1, + "i_NPSELECT_RF_STRING_BEFORE1": 1, + "i_NPSELECT_RF_STRING_BEFORE0": 1, + "i_SELECT_RF_STRING_BEFORE": 1, + "i_SELECT_RF_STRING_BEFORE3": 1, + "i_SELECT_RF_STRING_BEFORE4": 1, + "i_SELECT_RF_STRING_BEFORE2": 1, + "i_SELECT_RF_STRING_BEFORE1": 1, + "i_SELECT_RF_STRING_BEFORE0": 1, + "i_NPSELECT_RF_STRING_AFTER": 1, + "i_NPSELECT_RF_STRING_AFTER1": 1, + "i_NPSELECT_RF_STRING_AFTER0": 1, + "i_SELECT_RF_STRING_AFTER": 1, + "i_SELECT_RF_STRING_AFTER3": 1, + "i_OUTSTR_": 6, + "i_SELECT_RF_STRING_AFTER4": 1, + "i_SELECT_RF_STRING_AFTER2": 1, + "i_SELECT_RF_STRING_AFTER1": 1, + "i_SELECT_RF_STRING_AFTER0": 1, + "i_NPSELECT_RF_STRING_AFTERV": 1, + "i_NPSELECT_RF_STRING_AFTERV1": 1, + "i_LIMSELECT_RF_STRING_AFTERV": 1, + "i_NPSELECT_RF_STRING_AFTERV0": 1, + "i_LIMSELECT_RF_STRING_AFTERV1": 1, + "i_LIMSELECT_RF_STRING_AFTERV0": 1, + "i_SELECT_RF_STRING_AFTERV": 1, + "i_SELECT_RF_STRING_AFTERV5": 1, + "i_SELECT_RF_STRING_AFTERV6": 1, + "i_SELECT_RF_STRING_AFTERV7": 1, + "i_SELECT_RF_STRING_AFTERV8": 1, + "i_SELECT_RF_STRING_AFTERV9": 1, + "i_SELECT_RF_STRING_AFTERV10": 1, + "i_SELECT_RF_STRING_AFTERV11": 1, + "i_SELECT_RF_STRING_AFTERV12": 1, + "i_SELECT_RF_STRING_AFTERV13": 1, + "i_SELECT_RF_STRING_AFTERV14": 1, + "i_SELECT_RF_STRING_AFTERV15": 1, + "i_SELECT_RF_STRING_AFTERV16": 1, + "i_SELECT_RF_STRING_AFTERV17": 1, + "i_SELECT_RF_STRING_AFTERV18": 1, + "i_OTHERSTR_": 4, + "rfString_Prepend": 2, + "rfString_Remove": 3, + "i_NPSELECT_RF_STRING_REMOVE": 1, + "i_NPSELECT_RF_STRING_REMOVE1": 1, + "i_NPSELECT_RF_STRING_REMOVE0": 1, + "i_SELECT_RF_STRING_REMOVE": 1, + "i_SELECT_RF_STRING_REMOVE2": 1, + "i_REPSTR_": 16, + "i_RFUI32_": 8, + "i_SELECT_RF_STRING_REMOVE3": 1, + "i_NUMBER_": 12, + "i_SELECT_RF_STRING_REMOVE4": 1, + "i_SELECT_RF_STRING_REMOVE1": 1, + "i_SELECT_RF_STRING_REMOVE0": 1, + "rfString_KeepOnly": 2, + "I_KEEPSTR_": 2, + "rfString_Replace": 3, + "i_NPSELECT_RF_STRING_REPLACE": 1, + "i_NPSELECT_RF_STRING_REPLACE1": 1, + "i_NPSELECT_RF_STRING_REPLACE0": 1, + "i_SELECT_RF_STRING_REPLACE": 1, + "i_SELECT_RF_STRING_REPLACE3": 1, + "i_SELECT_RF_STRING_REPLACE4": 1, + "i_SELECT_RF_STRING_REPLACE5": 1, + "i_SELECT_RF_STRING_REPLACE2": 1, + "i_SELECT_RF_STRING_REPLACE1": 1, + "i_SELECT_RF_STRING_REPLACE0": 1, + "i_SUBSTR_": 6, + "rfString_Strip": 2, + "rfString_Fwrite": 2, + "i_NPSELECT_RF_STRING_FWRITE": 1, + "i_NPSELECT_RF_STRING_FWRITE1": 1, + "i_NPSELECT_RF_STRING_FWRITE0": 1, + "i_SELECT_RF_STRING_FWRITE": 1, + "i_SELECT_RF_STRING_FWRITE3": 1, + "i_STR_": 8, + "i_FILE_": 16, + "i_ENCODING_": 4, + "i_SELECT_RF_STRING_FWRITE2": 1, + "i_SELECT_RF_STRING_FWRITE1": 1, + "i_SELECT_RF_STRING_FWRITE0": 1, + "rfString_Fwrite_fUTF8": 1, + "closing": 1, + "Attempted": 1, + "manipulation": 1, + "flag": 1, + "off.": 1, + "Rebuild": 1, + "added": 1, + "you": 1, + "#endif//": 1, + "guards": 2, + "READLINE_READLINE_CATS": 3, + "": 1, + "atscntrb_readline_rl_library_version": 1, + "rl_library_version": 1, + "atscntrb_readline_rl_readline_version": 1, + "rl_readline_version": 1, + "atscntrb_readline_readline": 1, + "readline": 1, + "REFU_IO_H": 2, + "xA": 1, + "RF_CR": 1, + "xD": 1, + "REFU_WIN32_VERSION": 1, + "i_PLUSB_WIN32": 2, + "foff_rft": 2, + "off64_t": 1, + "///Fseek": 1, + "Ftelll": 1, + "definitions": 1, + "rfFseek": 2, + "i_OFFSET_": 4, + "i_WHENCE_": 4, + "_fseeki64": 1, + "rfFtell": 2, + "_ftelli64": 1, + "fseeko64": 1, + "ftello64": 1, + "rfFReadLine_UTF32BE": 1, + "rfFgets_UTF32BE": 1, + "rfPopen": 2, + "command": 2, + "i_rfPopen": 2, + "i_CMD_": 2, + "i_MODE_": 2, + "rfPclose": 1, + "///closing": 1, + "#endif//include": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 2, + "": 1, + "": 1, + "": 1, + "sharedObjectsStruct": 1, + "shared": 1, + "R_Zero": 2, + "R_PosInf": 2, + "R_NegInf": 2, + "R_Nan": 2, + "redisServer": 1, + "server": 1, + "redisCommand": 6, + "*commandTable": 1, + "redisCommandTable": 5, + "getCommand": 1, + "setCommand": 1, + "noPreloadGetKeys": 6, + "setnxCommand": 1, + "setexCommand": 1, + "psetexCommand": 1, + "appendCommand": 1, + "strlenCommand": 1, + "delCommand": 1, + "existsCommand": 1, + "setbitCommand": 1, + "getbitCommand": 1, + "setrangeCommand": 1, + "getrangeCommand": 2, + "incrCommand": 1, + "decrCommand": 1, + "mgetCommand": 1, + "rpushCommand": 1, + "lpushCommand": 1, + "rpushxCommand": 1, + "lpushxCommand": 1, + "linsertCommand": 1, + "rpopCommand": 1, + "lpopCommand": 1, + "brpopCommand": 1, + "brpoplpushCommand": 1, + "blpopCommand": 1, + "llenCommand": 1, + "lindexCommand": 1, + "lsetCommand": 1, + "lrangeCommand": 1, + "ltrimCommand": 1, + "lremCommand": 1, + "rpoplpushCommand": 1, + "saddCommand": 1, + "sremCommand": 1, + "smoveCommand": 1, + "sismemberCommand": 1, + "scardCommand": 1, + "spopCommand": 1, + "srandmemberCommand": 1, + "sinterCommand": 2, + "sinterstoreCommand": 1, + "sunionCommand": 1, + "sunionstoreCommand": 1, + "sdiffCommand": 1, + "sdiffstoreCommand": 1, + "zaddCommand": 1, + "zincrbyCommand": 1, + "zremCommand": 1, + "zremrangebyscoreCommand": 1, + "zremrangebyrankCommand": 1, + "zunionstoreCommand": 1, + "zunionInterGetKeys": 4, + "zinterstoreCommand": 1, + "zrangeCommand": 1, + "zrangebyscoreCommand": 1, + "zrevrangebyscoreCommand": 1, + "zcountCommand": 1, + "zrevrangeCommand": 1, + "zcardCommand": 1, + "zscoreCommand": 1, + "zrankCommand": 1, + "zrevrankCommand": 1, + "hsetCommand": 1, + "hsetnxCommand": 1, + "hgetCommand": 1, + "hmsetCommand": 1, + "hmgetCommand": 1, + "hincrbyCommand": 1, + "hincrbyfloatCommand": 1, + "hdelCommand": 1, + "hlenCommand": 1, + "hkeysCommand": 1, + "hvalsCommand": 1, + "hgetallCommand": 1, + "hexistsCommand": 1, + "incrbyCommand": 1, + "decrbyCommand": 1, + "incrbyfloatCommand": 1, + "getsetCommand": 1, + "msetCommand": 1, + "msetnxCommand": 1, + "randomkeyCommand": 1, + "selectCommand": 1, + "moveCommand": 1, + "renameCommand": 1, + "renameGetKeys": 2, + "renamenxCommand": 1, + "expireCommand": 1, + "expireatCommand": 1, + "pexpireCommand": 1, + "pexpireatCommand": 1, + "keysCommand": 1, + "dbsizeCommand": 1, + "authCommand": 3, + "pingCommand": 2, + "echoCommand": 2, + "saveCommand": 1, + "bgsaveCommand": 1, + "bgrewriteaofCommand": 1, + "shutdownCommand": 2, + "lastsaveCommand": 1, + "typeCommand": 1, + "multiCommand": 2, + "execCommand": 2, + "discardCommand": 2, + "syncCommand": 1, + "flushdbCommand": 1, + "flushallCommand": 1, + "sortCommand": 1, + "infoCommand": 4, + "monitorCommand": 2, + "ttlCommand": 1, + "pttlCommand": 1, + "persistCommand": 1, + "slaveofCommand": 2, + "debugCommand": 1, + "configCommand": 1, + "subscribeCommand": 2, + "unsubscribeCommand": 2, + "psubscribeCommand": 2, + "punsubscribeCommand": 2, + "publishCommand": 1, + "watchCommand": 2, + "unwatchCommand": 1, + "clusterCommand": 1, + "restoreCommand": 1, + "migrateCommand": 1, + "askingCommand": 1, + "dumpCommand": 1, + "objectCommand": 1, + "clientCommand": 1, + "evalCommand": 1, + "evalShaCommand": 1, + "slowlogCommand": 1, + "scriptCommand": 2, + "timeCommand": 2, + "bitopCommand": 1, + "bitcountCommand": 1, + "redisLogRaw": 3, + "*msg": 7, + "syslogLevelMap": 2, + "LOG_DEBUG": 1, + "LOG_INFO": 1, + "LOG_NOTICE": 1, + "LOG_WARNING": 1, + "FILE": 3, + "*fp": 3, + "rawmode": 2, + "REDIS_LOG_RAW": 2, + "xff": 3, + "server.verbosity": 4, + "fp": 13, + "server.logfile": 8, + "fopen": 3, + "msg": 10, + "timeval": 4, + "tv": 8, + "gettimeofday": 4, + "strftime": 1, + "localtime": 1, + "tv.tv_sec": 4, + "snprintf": 2, + "tv.tv_usec/1000": 1, + "getpid": 7, + "server.syslog_enabled": 3, + "syslog": 1, + "redisLog": 33, + "*fmt": 2, + "ap": 4, + "REDIS_MAX_LOGMSG_LEN": 1, + "fmt": 4, + "vsnprintf": 1, + "redisLogFromHandler": 2, + "server.daemonize": 5, + "O_APPEND": 2, + "O_CREAT": 2, + "O_WRONLY": 2, + "STDOUT_FILENO": 2, + "ll2string": 3, + "write": 7, + "time": 10, + "oom": 3, + "REDIS_WARNING": 19, + "sleep": 1, + "abort": 1, + "ustime": 7, + "*1000000": 1, + "tv.tv_usec": 3, + "mstime": 5, + "/1000": 1, + "exitFromChild": 1, + "retcode": 3, + "COVERAGE_TEST": 1, + "dictVanillaFree": 1, + "*privdata": 8, + "*val": 6, + "DICT_NOTUSED": 6, + "privdata": 8, + "zfree": 2, + "dictListDestructor": 2, + "listRelease": 1, + "list*": 1, + "dictSdsKeyCompare": 6, + "*key1": 4, + "*key2": 4, + "l1": 4, + "l2": 3, + "sdslen": 14, + "sds": 13, + "key1": 5, + "key2": 5, + "dictSdsKeyCaseCompare": 2, + "strcasecmp": 13, + "dictRedisObjectDestructor": 7, + "decrRefCount": 6, + "dictSdsDestructor": 4, + "sdsfree": 2, + "dictObjKeyCompare": 2, + "robj": 7, + "*o1": 2, + "*o2": 2, + "o1": 7, + "ptr": 18, + "o2": 7, + "dictObjHash": 2, + "*key": 5, + "key": 9, + "dictGenHashFunction": 5, + "dictSdsHash": 4, + "dictSdsCaseHash": 2, + "dictGenCaseHashFunction": 1, + "dictEncObjKeyCompare": 4, + "robj*": 3, + "REDIS_ENCODING_INT": 4, + "getDecodedObject": 3, + "dictEncObjHash": 4, + "REDIS_ENCODING_RAW": 1, + "hash": 12, + "dictType": 8, + "setDictType": 1, + "zsetDictType": 1, + "dbDictType": 2, + "keyptrDictType": 2, + "commandTableDictType": 2, + "hashDictType": 1, + "keylistDictType": 4, + "clusterNodesDictType": 1, + "htNeedsResize": 3, + "dict": 11, + "dictSlots": 3, + "dictSize": 10, + "DICT_HT_INITIAL_SIZE": 2, + "used*100/size": 1, + "REDIS_HT_MINFILL": 1, + "tryResizeHashTables": 2, + "server.dbnum": 8, + "server.db": 23, + ".dict": 9, + "dictResize": 2, + ".expires": 8, + "incrementallyRehash": 2, + "dictIsRehashing": 2, + "dictRehashMilliseconds": 2, + "updateDictResizePolicy": 2, + "server.rdb_child_pid": 12, + "server.aof_child_pid": 10, + "dictEnableResize": 1, + "dictDisableResize": 1, + "activeExpireCycle": 2, + "timelimit": 5, + "*REDIS_EXPIRELOOKUPS_TIME_PERC/REDIS_HZ/100": 1, + "expired": 4, + "redisDb": 3, + "*db": 3, + "db": 10, + "expires": 3, + "slots": 2, + "now": 5, + "num*100/slots": 1, + "REDIS_EXPIRELOOKUPS_PER_CRON": 2, + "dictEntry": 2, + "*de": 2, + "de": 12, + "dictGetRandomKey": 4, + "dictGetSignedIntegerVal": 1, + "dictGetKey": 4, + "*keyobj": 2, + "createStringObject": 11, + "propagateExpire": 2, + "keyobj": 6, + "dbDelete": 2, + "server.stat_expiredkeys": 3, + "xf": 1, + "REDIS_EXPIRELOOKUPS_PER_CRON/4": 1, + "updateLRUClock": 3, + "server.lruclock": 2, + "server.unixtime/REDIS_LRU_CLOCK_RESOLUTION": 1, + "REDIS_LRU_CLOCK_MAX": 1, + "trackOperationsPerSecond": 2, + "server.ops_sec_last_sample_time": 3, + "ops": 1, + "server.stat_numcommands": 4, + "server.ops_sec_last_sample_ops": 3, + "ops_sec": 3, + "ops*1000/t": 1, + "server.ops_sec_samples": 4, + "server.ops_sec_idx": 4, + "%": 2, + "REDIS_OPS_SEC_SAMPLES": 3, + "getOperationsPerSecond": 2, + "sum": 3, + "clientsCronHandleTimeout": 2, + "redisClient": 12, + "time_t": 4, + "server.unixtime": 10, + "server.maxidletime": 3, + "REDIS_SLAVE": 3, + "REDIS_MASTER": 2, + "REDIS_BLOCKED": 2, + "pubsub_channels": 2, + "listLength": 14, + "pubsub_patterns": 2, + "lastinteraction": 3, + "REDIS_VERBOSE": 3, + "freeClient": 1, + "bpop.timeout": 2, + "addReply": 13, + "shared.nullmultibulk": 2, + "unblockClientWaitingData": 1, + "clientsCronResizeQueryBuffer": 2, + "querybuf_size": 3, + "sdsAllocSize": 1, + "querybuf": 6, + "idletime": 2, + "REDIS_MBULK_BIG_ARG": 1, + "querybuf_size/": 1, + "querybuf_peak": 2, + "sdsavail": 1, + "sdsRemoveFreeSpace": 1, + "clientsCron": 2, + "numclients": 3, + "server.clients": 7, + "iterations": 4, + "numclients/": 1, + "REDIS_HZ*10": 1, + "listNode": 4, + "*head": 1, + "listRotate": 1, + "listFirst": 2, + "listNodeValue": 3, + "run_with_period": 6, + "_ms_": 2, + "loops": 2, + "/REDIS_HZ": 2, + "serverCron": 2, + "aeEventLoop": 2, + "*eventLoop": 2, + "*clientData": 1, + "server.cronloops": 3, + "REDIS_NOTUSED": 5, + "eventLoop": 2, + "clientData": 1, + "server.watchdog_period": 3, + "watchdogScheduleSignal": 1, + "zmalloc_used_memory": 8, + "server.stat_peak_memory": 5, + "server.shutdown_asap": 3, + "prepareForShutdown": 2, + "REDIS_OK": 23, + "vkeys": 8, + "server.activerehashing": 2, + "server.slaves": 9, + "server.aof_rewrite_scheduled": 4, + "rewriteAppendOnlyFileBackground": 2, + "statloc": 5, + "wait3": 1, + "WNOHANG": 1, + "exitcode": 3, + "bysignal": 4, + "backgroundSaveDoneHandler": 1, + "backgroundRewriteDoneHandler": 1, + "server.saveparamslen": 3, + "saveparam": 1, + "*sp": 1, + "server.saveparams": 2, + "server.dirty": 3, + "sp": 4, + "changes": 2, + "server.lastsave": 3, + "seconds": 2, + "REDIS_NOTICE": 13, + "rdbSaveBackground": 1, + "server.rdb_filename": 4, + "server.aof_rewrite_perc": 3, + "server.aof_current_size": 2, + "server.aof_rewrite_min_size": 2, + "base": 1, + "server.aof_rewrite_base_size": 4, + "growth": 3, + "server.aof_current_size*100/base": 1, + "server.aof_flush_postponed_start": 2, + "flushAppendOnlyFile": 2, + "server.masterhost": 7, + "freeClientsInAsyncFreeQueue": 1, + "replicationCron": 1, + "server.cluster_enabled": 6, + "clusterCron": 1, + "beforeSleep": 2, + "*ln": 3, + "server.unblocked_clients": 4, + "ln": 8, + "redisAssert": 1, + "listDelNode": 1, + "REDIS_UNBLOCKED": 1, + "server.current_client": 3, + "processInputBuffer": 1, + "createSharedObjects": 2, + "shared.crlf": 2, + "createObject": 31, + "REDIS_STRING": 31, + "sdsnew": 27, + "shared.ok": 3, + "shared.err": 1, + "shared.emptybulk": 1, + "shared.czero": 1, + "shared.cone": 1, + "shared.cnegone": 1, + "shared.nullbulk": 1, + "shared.emptymultibulk": 1, + "shared.pong": 2, + "shared.queued": 2, + "shared.wrongtypeerr": 1, + "shared.nokeyerr": 1, + "shared.syntaxerr": 2, + "shared.sameobjecterr": 1, + "shared.outofrangeerr": 1, + "shared.noscripterr": 1, + "shared.loadingerr": 2, + "shared.slowscripterr": 2, + "shared.masterdownerr": 2, + "shared.bgsaveerr": 2, + "shared.roslaveerr": 2, + "shared.oomerr": 2, + "shared.space": 1, + "shared.colon": 1, + "shared.plus": 1, + "REDIS_SHARED_SELECT_CMDS": 1, + "shared.select": 1, + "sdscatprintf": 24, + "sdsempty": 8, + "shared.messagebulk": 1, + "shared.pmessagebulk": 1, + "shared.subscribebulk": 1, + "shared.unsubscribebulk": 1, + "shared.psubscribebulk": 1, + "shared.punsubscribebulk": 1, + "shared.del": 1, + "shared.rpop": 1, + "shared.lpop": 1, + "REDIS_SHARED_INTEGERS": 1, + "shared.integers": 2, + "REDIS_SHARED_BULKHDR_LEN": 1, + "shared.mbulkhdr": 1, + "shared.bulkhdr": 1, + "initServerConfig": 2, + "getRandomHexChars": 1, + "server.runid": 3, + "REDIS_RUN_ID_SIZE": 2, + "server.arch_bits": 3, + "server.port": 7, + "REDIS_SERVERPORT": 1, + "server.bindaddr": 2, + "server.unixsocket": 7, + "server.unixsocketperm": 2, + "server.ipfd": 9, + "server.sofd": 9, + "REDIS_DEFAULT_DBNUM": 1, + "REDIS_MAXIDLETIME": 1, + "server.client_max_querybuf_len": 1, + "REDIS_MAX_QUERYBUF_LEN": 1, + "server.loading": 4, + "server.syslog_ident": 2, + "zstrdup": 5, + "server.syslog_facility": 2, + "LOG_LOCAL0": 1, + "server.aof_state": 7, + "REDIS_AOF_OFF": 5, + "server.aof_fsync": 1, + "AOF_FSYNC_EVERYSEC": 1, + "server.aof_no_fsync_on_rewrite": 1, + "REDIS_AOF_REWRITE_PERC": 1, + "REDIS_AOF_REWRITE_MIN_SIZE": 1, + "server.aof_last_fsync": 1, + "server.aof_rewrite_time_last": 2, + "server.aof_rewrite_time_start": 2, + "server.aof_delayed_fsync": 2, + "server.aof_fd": 4, + "server.aof_selected_db": 1, + "server.pidfile": 3, + "server.aof_filename": 3, + "server.requirepass": 4, + "server.rdb_compression": 1, + "server.rdb_checksum": 1, + "server.maxclients": 6, + "REDIS_MAX_CLIENTS": 1, + "server.bpop_blocked_clients": 2, + "server.maxmemory": 6, + "server.maxmemory_policy": 11, + "REDIS_MAXMEMORY_VOLATILE_LRU": 3, + "server.maxmemory_samples": 3, + "server.hash_max_ziplist_entries": 1, + "REDIS_HASH_MAX_ZIPLIST_ENTRIES": 1, + "server.hash_max_ziplist_value": 1, + "REDIS_HASH_MAX_ZIPLIST_VALUE": 1, + "server.list_max_ziplist_entries": 1, + "REDIS_LIST_MAX_ZIPLIST_ENTRIES": 1, + "server.list_max_ziplist_value": 1, + "REDIS_LIST_MAX_ZIPLIST_VALUE": 1, + "server.set_max_intset_entries": 1, + "REDIS_SET_MAX_INTSET_ENTRIES": 1, + "server.zset_max_ziplist_entries": 1, + "REDIS_ZSET_MAX_ZIPLIST_ENTRIES": 1, + "server.zset_max_ziplist_value": 1, + "REDIS_ZSET_MAX_ZIPLIST_VALUE": 1, + "server.repl_ping_slave_period": 1, + "REDIS_REPL_PING_SLAVE_PERIOD": 1, + "server.repl_timeout": 1, + "REDIS_REPL_TIMEOUT": 1, + "server.cluster.configfile": 1, + "server.lua_caller": 1, + "server.lua_time_limit": 1, + "REDIS_LUA_TIME_LIMIT": 1, + "server.lua_client": 1, + "server.lua_timedout": 2, + "resetServerSaveParams": 2, + "appendServerSaveParams": 3, + "*60": 1, + "server.masterauth": 1, + "server.masterport": 2, + "server.master": 3, + "server.repl_state": 6, + "REDIS_REPL_NONE": 1, + "server.repl_syncio_timeout": 1, + "REDIS_REPL_SYNCIO_TIMEOUT": 1, + "server.repl_serve_stale_data": 2, + "server.repl_slave_ro": 2, + "server.repl_down_since": 2, + "server.client_obuf_limits": 9, + "REDIS_CLIENT_LIMIT_CLASS_NORMAL": 3, + ".hard_limit_bytes": 3, + ".soft_limit_bytes": 3, + ".soft_limit_seconds": 3, + "REDIS_CLIENT_LIMIT_CLASS_SLAVE": 3, + "*1024*256": 1, + "*1024*64": 1, + "REDIS_CLIENT_LIMIT_CLASS_PUBSUB": 3, + "*1024*32": 1, + "*1024*8": 1, + "/R_Zero": 2, + "R_Zero/R_Zero": 1, + "server.commands": 1, + "dictCreate": 6, + "populateCommandTable": 2, + "server.delCommand": 1, + "lookupCommandByCString": 3, + "server.multiCommand": 1, + "server.lpushCommand": 1, + "server.slowlog_log_slower_than": 1, + "REDIS_SLOWLOG_LOG_SLOWER_THAN": 1, + "server.slowlog_max_len": 1, + "REDIS_SLOWLOG_MAX_LEN": 1, + "server.assert_failed": 1, + "server.assert_file": 1, + "server.assert_line": 1, + "server.bug_report_start": 1, + "adjustOpenFilesLimit": 2, + "rlim_t": 3, + "maxfiles": 6, + "rlimit": 1, + "limit": 3, + "getrlimit": 1, + "RLIMIT_NOFILE": 2, + "oldlimit": 5, + "limit.rlim_cur": 2, + "limit.rlim_max": 1, + "setrlimit": 1, + "initServer": 2, + "signal": 2, + "SIGHUP": 1, + "SIG_IGN": 2, + "SIGPIPE": 1, + "setupSignalHandlers": 2, + "openlog": 1, + "LOG_PID": 1, + "LOG_NDELAY": 1, + "LOG_NOWAIT": 1, + "listCreate": 6, + "server.clients_to_close": 1, + "server.monitors": 2, + "server.el": 7, + "aeCreateEventLoop": 1, + "zmalloc": 2, + "*server.dbnum": 1, + "anetTcpServer": 1, + "server.neterr": 4, + "ANET_ERR": 2, + "unlink": 3, + "anetUnixServer": 1, + ".blocking_keys": 1, + ".watched_keys": 1, + ".id": 1, + "server.pubsub_channels": 2, + "server.pubsub_patterns": 4, + "listSetFreeMethod": 1, + "freePubsubPattern": 1, + "listSetMatchMethod": 1, + "listMatchPubsubPattern": 1, + "aofRewriteBufferReset": 1, + "server.aof_buf": 3, + "server.rdb_save_time_last": 2, + "server.rdb_save_time_start": 2, + "server.stat_numconnections": 2, + "server.stat_evictedkeys": 3, + "server.stat_starttime": 2, + "server.stat_keyspace_misses": 2, + "server.stat_keyspace_hits": 2, + "server.stat_fork_time": 2, + "server.stat_rejected_conn": 2, + "server.lastbgsave_status": 3, + "server.stop_writes_on_bgsave_err": 2, + "aeCreateTimeEvent": 1, + "aeCreateFileEvent": 2, + "AE_READABLE": 2, + "acceptTcpHandler": 1, + "AE_ERR": 2, + "acceptUnixHandler": 1, + "REDIS_AOF_ON": 2, + "LL*": 1, + "REDIS_MAXMEMORY_NO_EVICTION": 2, + "clusterInit": 1, + "scriptingInit": 1, + "slowlogInit": 1, + "bioInit": 1, + "numcommands": 5, + "*f": 2, + "sflags": 1, + "retval": 3, + "arity": 3, + "addReplyErrorFormat": 1, + "authenticated": 3, + "proc": 14, + "addReplyError": 6, + "getkeys_proc": 1, + "firstkey": 1, + "hashslot": 3, + "server.cluster.state": 1, + "REDIS_CLUSTER_OK": 1, + "ask": 3, + "clusterNode": 1, + "*n": 1, + "getNodeByQuery": 1, + "server.cluster.myself": 1, + "addReplySds": 3, + "ip": 4, + "freeMemoryIfNeeded": 2, + "REDIS_CMD_DENYOOM": 1, + "REDIS_ERR": 5, + "REDIS_CMD_WRITE": 2, + "REDIS_REPL_CONNECTED": 3, + "tolower": 2, + "REDIS_MULTI": 1, + "queueMultiCommand": 1, + "call": 1, + "REDIS_CALL_FULL": 1, + "save": 2, + "REDIS_SHUTDOWN_SAVE": 1, + "nosave": 2, + "REDIS_SHUTDOWN_NOSAVE": 1, + "SIGKILL": 2, + "rdbRemoveTempFile": 1, + "aof_fsync": 1, + "rdbSave": 1, + "addReplyBulk": 1, + "addReplyMultiBulkLen": 1, + "addReplyBulkLongLong": 2, + "bytesToHuman": 3, + "n/": 3, + "LL*1024*1024": 2, + "LL*1024*1024*1024": 1, + "genRedisInfoString": 2, + "*section": 2, + "uptime": 2, + "rusage": 1, + "self_ru": 2, + "c_ru": 2, + "lol": 3, + "bib": 3, + "allsections": 12, + "defsections": 11, + "sections": 11, + "section": 14, + "getrusage": 2, + "RUSAGE_SELF": 1, + "RUSAGE_CHILDREN": 1, + "getClientsMaxBuffers": 1, + "utsname": 1, + "sdscat": 14, + "uname": 1, + "REDIS_VERSION": 4, + "redisGitSHA1": 3, + "strtol": 2, + "redisGitDirty": 3, + "name.sysname": 1, + "name.release": 1, + "name.machine": 1, + "aeGetApiName": 1, + "__GNUC_PATCHLEVEL__": 1, + "uptime/": 1, + "*24": 1, + "hmem": 3, + "peak_hmem": 3, + "zmalloc_get_rss": 1, + "lua_gc": 1, + "server.lua": 1, + "LUA_GCCOUNT": 1, + "*1024LL": 1, + "zmalloc_get_fragmentation_ratio": 1, + "ZMALLOC_LIB": 2, + "aofRewriteBufferSize": 2, + "bioPendingJobsOfType": 1, + "REDIS_BIO_AOF_FSYNC": 1, + "perc": 3, + "eta": 4, + "elapsed": 3, + "off_t": 1, + "remaining_bytes": 1, + "server.loading_total_bytes": 3, + "server.loading_loaded_bytes": 3, + "server.loading_start_time": 2, + "elapsed*remaining_bytes": 1, + "/server.loading_loaded_bytes": 1, + "REDIS_REPL_TRANSFER": 2, + "server.repl_transfer_left": 1, + "server.repl_transfer_lastio": 1, + "slaveid": 3, + "listIter": 2, + "li": 6, + "listRewind": 2, + "listNext": 2, + "*slave": 2, + "*state": 1, + "anetPeerToString": 1, + "slave": 3, + "replstate": 1, + "REDIS_REPL_WAIT_BGSAVE_START": 1, + "REDIS_REPL_WAIT_BGSAVE_END": 1, + "REDIS_REPL_SEND_BULK": 1, + "REDIS_REPL_ONLINE": 1, + "self_ru.ru_stime.tv_sec": 1, + "self_ru.ru_stime.tv_usec/1000000": 1, + "self_ru.ru_utime.tv_sec": 1, + "self_ru.ru_utime.tv_usec/1000000": 1, + "c_ru.ru_stime.tv_sec": 1, + "c_ru.ru_stime.tv_usec/1000000": 1, + "c_ru.ru_utime.tv_sec": 1, + "c_ru.ru_utime.tv_usec/1000000": 1, + "calls": 4, + "microseconds": 1, + "microseconds/c": 1, + "keys": 4, + "REDIS_MONITOR": 1, + "slaveseldb": 1, + "listAddNodeTail": 1, + "mem_used": 9, + "mem_tofree": 3, + "mem_freed": 4, + "slaves": 3, + "obuf_bytes": 3, + "getClientOutputBufferMemoryUsage": 1, + "keys_freed": 3, + "bestval": 5, + "bestkey": 9, + "REDIS_MAXMEMORY_ALLKEYS_LRU": 2, + "REDIS_MAXMEMORY_ALLKEYS_RANDOM": 2, + "REDIS_MAXMEMORY_VOLATILE_RANDOM": 1, + "thiskey": 7, + "thisval": 8, + "dictFind": 1, + "dictGetVal": 2, + "estimateObjectIdleTime": 1, + "REDIS_MAXMEMORY_VOLATILE_TTL": 1, + "delta": 54, + "flushSlavesOutputBuffers": 1, + "linuxOvercommitMemoryValue": 2, + "fgets": 1, + "atoi": 3, + "linuxOvercommitMemoryWarning": 2, + "createPidFile": 2, + "daemonize": 2, + "STDIN_FILENO": 1, + "STDERR_FILENO": 2, + "usage": 2, + "redisAsciiArt": 2, + "*16": 2, + "ascii_logo": 1, + "sigtermHandler": 2, + "sig": 2, + "sigaction": 6, + "act": 6, + "sigemptyset": 2, + "act.sa_mask": 2, + "act.sa_flags": 2, + "act.sa_handler": 1, + "SIGTERM": 1, + "HAVE_BACKTRACE": 1, + "SA_NODEFER": 1, + "SA_RESETHAND": 1, + "SA_SIGINFO": 1, + "act.sa_sigaction": 1, + "sigsegvHandler": 1, + "SIGSEGV": 1, + "SIGBUS": 1, + "SIGFPE": 1, + "SIGILL": 1, + "memtest": 2, + "megabytes": 1, + "passes": 1, + "zmalloc_enable_thread_safeness": 1, + "srand": 1, + "dictSetHashFunctionSeed": 1, + "*configfile": 1, + "configfile": 2, + "sdscatrepr": 1, + "loadServerConfig": 1, + "loadAppendOnlyFile": 1, + "/1000000": 2, + "rdbLoad": 1, + "aeSetBeforeSleepProc": 1, + "aeMain": 1, + "aeDeleteEventLoop": 1, + "BOOTSTRAP_H": 2, + "*true": 1, + "*false": 1, + "*eof": 1, + "*empty_list": 1, + "*global_enviroment": 1, + "obj_type": 1, + "scm_bool": 1, + "scm_empty_list": 1, + "scm_eof": 1, + "scm_char": 1, + "scm_int": 1, + "scm_pair": 1, + "scm_symbol": 1, + "scm_prim_fun": 1, + "scm_lambda": 1, + "scm_str": 1, + "scm_file": 1, + "*eval_proc": 1, + "*maybe_add_begin": 1, + "*code": 2, + "init_enviroment": 1, + "*env": 4, + "eval_err": 1, + "__attribute__": 1, + "noreturn": 1, + "define_var": 1, + "set_var": 1, + "*get_var": 1, + "*cond2nested_if": 1, + "*cond": 1, + "*let2lambda": 1, + "*let": 1, + "*and2nested_if": 1, + "*and": 1, + "*or2nested_if": 1, + "*or": 1, + "COMMIT_H": 2, + "*util": 1, + "indegree": 1, + "*parents": 4, + "*tree": 3, + "decoration": 1, + "name_decoration": 3, + "*commit_list_insert": 1, + "commit_list_count": 1, + "*l": 1, + "*commit_list_insert_by_date": 1, + "free_commit_list": 1, + "cmit_fmt": 3, + "CMIT_FMT_RAW": 1, + "CMIT_FMT_MEDIUM": 2, + "CMIT_FMT_DEFAULT": 1, + "CMIT_FMT_SHORT": 1, + "CMIT_FMT_FULL": 1, + "CMIT_FMT_FULLER": 1, + "CMIT_FMT_ONELINE": 1, + "CMIT_FMT_EMAIL": 1, + "CMIT_FMT_USERFORMAT": 1, + "CMIT_FMT_UNSPECIFIED": 1, + "pretty_print_context": 6, + "abbrev": 1, + "*subject": 1, + "*after_subject": 1, + "preserve_subject": 1, + "date_mode": 2, + "date_mode_explicit": 1, + "need_8bit_cte": 2, + "show_notes": 1, + "reflog_walk_info": 1, + "*reflog_info": 1, + "*output_encoding": 2, + "userformat_want": 2, + "notes": 1, + "has_non_ascii": 1, + "*text": 1, + "rev_info": 2, + "*logmsg_reencode": 1, + "*reencode_commit_message": 1, + "**encoding_p": 1, + "get_commit_format": 1, + "*arg": 1, + "*format_subject": 1, + "*sb": 7, + "*line_separator": 1, + "userformat_find_requirements": 1, + "format_commit_message": 1, + "*context": 1, + "pretty_print_commit": 1, + "*pp": 4, + "pp_commit_easy": 1, + "pp_user_info": 1, + "*what": 1, + "*line": 1, + "*encoding": 2, + "pp_title_line": 1, + "**msg_p": 2, + "pp_remainder": 1, + "indent": 1, + "*pop_most_recent_commit": 1, + "mark": 3, + "*pop_commit": 1, + "**stack": 1, + "clear_commit_marks": 1, + "clear_commit_marks_for_object_array": 1, + "object_array": 2, + "sort_in_topological_order": 1, "list": 1, - "all": 1, - "declared": 1, - "enum": 3, - "{": 5, - "": 1, - "name=": 1, - "ns": 1, - "": 1, - "}": 5, - "": 1, - "": 1, - "point": 1, - "stdin": 1, - "dflag": 1, - "tflag": 1, - "bindings": 2, - "STEP": 3, - "I": 1, - "preprocess": 1, - "let": 6, - "validate": 1, - "explicit": 3, - "AST": 2, - "name": 1, - "type": 1, - "ast": 1, - "element": 1, - "parse/@*": 1, - "sort": 1, - "parse/*": 1, - "II": 1, - "eval_result": 1, - "III": 1, - "serialize": 1, + "lifo": 1, + "FLEX_ARRAY": 1, + "*read_graft_line": 1, + "*lookup_commit_graft": 1, + "*get_merge_bases": 1, + "*rev1": 1, + "*rev2": 1, + "*get_merge_bases_many": 1, + "*one": 1, + "**twos": 1, + "*get_octopus_merge_bases": 1, + "*in": 1, + "register_shallow": 1, + "unregister_shallow": 1, + "for_each_commit_graft": 1, + "each_commit_graft_fn": 1, + "is_repository_shallow": 1, + "*get_shallow_commits": 1, + "*heads": 2, + "shallow_flag": 1, + "not_shallow_flag": 1, + "is_descendant_of": 1, + "in_merge_bases": 1, + "interactive_add": 1, + "patch": 1, + "run_add_interactive": 1, + "*revision": 1, + "*patch_mode": 1, + "**pathspec": 1, + "single_parent": 1, + "*reduce_heads": 1, + "commit_extra_header": 7, + "append_merge_tag_headers": 1, + "***tail": 1, + "commit_tree": 1, + "*author": 2, + "*sign_commit": 2, + "commit_tree_extended": 1, + "*read_commit_extra_headers": 1, + "*read_commit_extra_header_lines": 1, + "free_commit_extra_headers": 1, + "*extra": 1, + "merge_remote_util": 1, + "*get_merge_parent": 1, + "parse_signed_commit": 1, + "*message": 1, + "*signature": 1, + "git_cache_init": 1, + "git_cache": 4, + "*cache": 4, + "git_cached_obj_freeptr": 1, + "free_ptr": 2, + "git__size_t_powerof2": 1, + "cache": 26, + "size_mask": 6, + "lru_count": 1, + "free_obj": 4, + "git_mutex_init": 1, + "nodes": 10, + "git_cached_obj": 5, + "GITERR_CHECK_ALLOC": 3, + "git_cache_free": 1, + "git_cached_obj_decref": 3, + "*git_cache_get": 1, + "*oid": 2, + "*node": 2, + "*result": 1, + "oid": 17, + "git_mutex_lock": 2, + "node": 9, + "git_oid_cmp": 6, + "git_cached_obj_incref": 3, + "git_mutex_unlock": 2, + "*git_cache_try_store": 1, + "*_entry": 1, + "*entry": 2, + "_entry": 1, + "entry": 17, + "HELLO_H": 2, + "hello": 1, + "": 1, + "_Included_jni_JniLayer": 2, + "JNIEXPORT": 6, + "jlong": 6, + "JNICALL": 6, + "Java_jni_JniLayer_jni_1layer_1initialize": 1, + "JNIEnv": 6, + "jobject": 6, + "jintArray": 1, + "jint": 7, + "Java_jni_JniLayer_jni_1layer_1mainloop": 1, + "Java_jni_JniLayer_jni_1layer_1set_1button": 1, + "Java_jni_JniLayer_jni_1layer_1set_1analog": 1, + "jfloat": 1, + "Java_jni_JniLayer_jni_1layer_1report_1analog_1chg": 1, + "Java_jni_JniLayer_jni_1layer_1kill": 1, + "VALUE": 13, + "rb_cRDiscount": 4, + "rb_rdiscount_to_html": 2, + "*res": 2, + "szres": 8, + "rb_funcall": 14, + "rb_intern": 15, + "rb_str_buf_new": 2, + "Check_Type": 2, + "T_STRING": 2, + "rb_rdiscount__get_flags": 3, + "MMIOT": 2, + "*doc": 2, + "mkd_string": 2, + "RSTRING_PTR": 2, + "RSTRING_LEN": 2, + "mkd_compile": 2, + "doc": 6, + "mkd_document": 1, + "res": 4, + "rb_str_cat": 4, + "mkd_cleanup": 2, + "rb_respond_to": 1, + "rb_rdiscount_toc_content": 2, + "mkd_toc": 1, + "ruby_obj": 11, + "MKD_TABSTOP": 1, + "MKD_NOHEADER": 1, + "Qtrue": 10, + "MKD_NOPANTS": 1, + "MKD_NOHTML": 1, + "MKD_TOC": 1, + "MKD_NOIMAGE": 1, + "MKD_NOLINKS": 1, + "MKD_NOTABLES": 1, + "MKD_STRICT": 1, + "MKD_AUTOLINK": 1, + "MKD_SAFELINK": 1, + "MKD_NO_EXT": 1, + "Init_rdiscount": 1, + "rb_define_class": 1, + "rb_cObject": 1, + "rb_define_method": 2, + "*diff_prefix_from_pathspec": 1, + "git_strarray": 2, + "*pathspec": 2, + "git_buf": 3, + "GIT_BUF_INIT": 3, + "*scan": 2, + "git_buf_common_prefix": 1, + "pathspec": 15, + "scan": 4, + "prefix.ptr": 2, + "git__iswildcard": 1, + "git_buf_truncate": 1, + "prefix.size": 1, + "git_buf_detach": 1, + "git_buf_free": 4, + "diff_pathspec_is_interesting": 2, + "*str": 1, + "diff_path_matches_pathspec": 3, + "git_diff_list": 17, + "*diff": 8, + "*path": 2, + "git_attr_fnmatch": 4, + "*match": 3, + "pathspec.length": 1, + "git_vector_foreach": 4, + "p_fnmatch": 1, + "pattern": 3, + "path": 20, + "FNM_NOMATCH": 1, + "GIT_ATTR_FNMATCH_HASWILD": 1, + "strncmp": 1, + "GIT_ATTR_FNMATCH_NEGATIVE": 1, + "git_diff_delta": 19, + "*diff_delta__alloc": 1, + "git_delta_t": 5, + "*delta": 6, + "git__calloc": 3, + "old_file.path": 12, + "git_pool_strdup": 3, + "pool": 12, + "new_file.path": 6, + "opts.flags": 8, + "GIT_DIFF_REVERSE": 3, + "GIT_DELTA_ADDED": 4, + "GIT_DELTA_DELETED": 7, + "*diff_delta__dup": 1, + "*d": 1, + "git_pool": 4, + "*pool": 3, + "fail": 19, + "*diff_delta__merge_like_cgit": 1, + "*b": 6, + "*dup": 1, + "diff_delta__dup": 3, + "dup": 15, + "new_file.oid": 7, + "git_oid_cpy": 5, + "new_file.mode": 4, + "new_file.size": 3, + "new_file.flags": 4, + "old_file.oid": 3, + "GIT_DELTA_UNTRACKED": 5, + "GIT_DELTA_IGNORED": 5, + "GIT_DELTA_UNMODIFIED": 11, + "diff_delta__from_one": 5, + "git_index_entry": 8, + "GIT_DIFF_INCLUDE_IGNORED": 1, + "GIT_DIFF_INCLUDE_UNTRACKED": 1, + "diff_delta__alloc": 2, + "GIT_DELTA_MODIFIED": 3, + "old_file.mode": 2, + "old_file.size": 1, + "file_size": 6, + "old_file.flags": 2, + "GIT_DIFF_FILE_VALID_OID": 4, + "git_vector_insert": 4, + "deltas": 8, + "diff_delta__from_two": 2, + "*old_entry": 1, + "*new_entry": 1, + "*new_oid": 1, + "GIT_DIFF_INCLUDE_UNMODIFIED": 1, + "*temp": 1, + "old_entry": 5, + "new_entry": 5, + "new_oid": 3, + "git_oid_iszero": 2, + "*diff_strdup_prefix": 1, + "git_pool_strcat": 1, + "git_pool_strndup": 1, + "diff_delta__cmp": 3, + "*da": 1, + "da": 2, + "config_bool": 5, + "*cfg": 2, + "defvalue": 2, + "git_config_get_bool": 1, + "cfg": 6, + "giterr_clear": 1, + "*git_diff_list_alloc": 1, + "git_repository": 7, + "*repo": 7, + "git_diff_options": 7, + "*opts": 6, + "repo": 23, + "git_vector_init": 3, + "git_pool_init": 2, + "git_repository_config__weakptr": 1, + "diffcaps": 13, + "GIT_DIFFCAPS_HAS_SYMLINKS": 2, + "GIT_DIFFCAPS_ASSUME_UNCHANGED": 2, + "GIT_DIFFCAPS_TRUST_EXEC_BIT": 2, + "GIT_DIFFCAPS_TRUST_CTIME": 2, + "opts": 24, + "opts.pathspec": 2, + "opts.old_prefix": 4, + "diff_strdup_prefix": 2, + "old_prefix": 2, + "DIFF_OLD_PREFIX_DEFAULT": 1, + "opts.new_prefix": 4, + "new_prefix": 2, + "DIFF_NEW_PREFIX_DEFAULT": 1, + "*swap": 1, + "pathspec.count": 2, + "*pattern": 1, + "pathspec.strings": 1, + "GIT_ATTR_FNMATCH_ALLOWSPACE": 1, + "git_attr_fnmatch__parse": 1, + "GIT_ENOTFOUND": 1, + "git_diff_list_free": 3, + "deltas.contents": 1, + "git_vector_free": 3, + "pathspec.contents": 1, + "git_pool_clear": 2, + "oid_for_workdir_item": 2, + "full_path": 3, + "git_buf_joinpath": 1, + "git_repository_workdir": 1, + "S_ISLNK": 2, + "git_odb__hashlink": 1, + "full_path.ptr": 2, + "git__is_sizet": 1, + "giterr_set": 1, + "GITERR_OS": 1, + "git_futils_open_ro": 1, + "git_odb__hashfd": 1, + "GIT_OBJ_BLOB": 1, + "p_close": 1, + "EXEC_BIT_MASK": 3, + "maybe_modified": 2, + "git_iterator": 8, + "*old_iter": 2, + "*oitem": 2, + "*new_iter": 2, + "*nitem": 2, + "noid": 4, + "*use_noid": 1, + "omode": 8, + "oitem": 29, + "nmode": 10, + "nitem": 32, + "GIT_UNUSED": 1, + "old_iter": 8, + "S_ISREG": 1, + "GIT_MODE_TYPE": 3, + "GIT_MODE_PERMS_MASK": 1, + "flags_extended": 2, + "GIT_IDXENTRY_INTENT_TO_ADD": 1, + "GIT_IDXENTRY_SKIP_WORKTREE": 1, + "new_iter": 13, + "GIT_ITERATOR_WORKDIR": 2, + "ctime.seconds": 2, + "mtime.seconds": 2, + "GIT_DIFFCAPS_USE_DEV": 1, + "dev": 2, + "ino": 2, + "uid": 2, + "gid": 2, + "S_ISGITLINK": 1, + "git_submodule": 1, + "*sub": 1, + "GIT_DIFF_IGNORE_SUBMODULES": 1, + "git_submodule_lookup": 1, + "ignore": 1, + "GIT_SUBMODULE_IGNORE_ALL": 1, + "use_noid": 2, + "diff_from_iterators": 5, + "**diff_ptr": 1, + "ignore_prefix": 6, + "git_diff_list_alloc": 1, + "old_src": 1, + "new_src": 3, + "git_iterator_current": 2, + "git_iterator_advance": 5, + "delta_type": 8, + "git_buf_len": 1, + "git__prefixcmp": 2, + "git_buf_cstr": 1, + "S_ISDIR": 1, + "GIT_DIFF_RECURSE_UNTRACKED_DIRS": 1, + "git_iterator_current_is_ignored": 2, + "git_buf_sets": 1, + "git_iterator_advance_into_directory": 1, + "git_iterator_free": 4, + "*diff_ptr": 2, + "git_diff_tree_to_tree": 1, + "git_tree": 4, + "*old_tree": 3, + "*new_tree": 1, + "**diff": 4, + "diff_prefix_from_pathspec": 4, + "old_tree": 5, + "new_tree": 2, + "git_iterator_for_tree_range": 4, + "git_diff_index_to_tree": 1, + "git_iterator_for_index_range": 2, + "git_diff_workdir_to_index": 1, + "git_iterator_for_workdir_range": 2, + "git_diff_workdir_to_tree": 1, + "git_diff_merge": 1, + "*onto": 1, + "*from": 1, + "onto_pool": 7, + "git_vector": 1, + "onto_new": 6, + "onto": 7, + "deltas.length": 4, + "GIT_VECTOR_GET": 2, + "diff_delta__merge_like_cgit": 1, + "git_vector_swap": 1, + "git_pool_swap": 1 +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method + }, + "Standard ML": { + "structure": 15, + "LazyBase": 4, + "LAZY_BASE": 5, + "struct": 13, + "type": 6, + "a": 78, + "exception": 2, + "Undefined": 6, + "fun": 60, + "delay": 6, + "f": 46, + "force": 18, + "(": 840, + ")": 845, + "val": 147, + "undefined": 2, + "fn": 127, + "raise": 6, + "end": 55, + "LazyMemoBase": 4, + "datatype": 29, + "|": 226, + "Done": 2, + "of": 91, + "lazy": 13, + "unit": 7, + "-": 20, + "let": 44, + "open": 9, + "B": 2, + "inject": 5, + "x": 74, + "isUndefined": 4, + "ignore": 3, + ";": 21, + "false": 32, + "handle": 4, + "true": 36, + "toString": 4, + "if": 51, + "then": 51, + "else": 51, + "eqBy": 5, + "p": 10, + "y": 50, + "eq": 3, + "op": 2, + "compare": 8, + "Ops": 3, + "map": 3, + "Lazy": 2, + "LazyFn": 4, + "LazyMemo": 2, + "functor": 2, + "Main": 1, + "S": 2, + "MAIN_STRUCTS": 1, + "MAIN": 1, + "Compile": 3, + "Place": 1, + "t": 23, + "Files": 3, + "Generated": 4, + "MLB": 4, + "O": 4, + "OUT": 3, + "SML": 6, + "TypeCheck": 3, + "toInt": 1, + "int": 1, + "OptPred": 1, + "Target": 1, + "string": 14, + "Yes": 1, + "Show": 1, + "Anns": 1, + "PathMap": 1, + "gcc": 5, + "ref": 45, + "arScript": 3, + "asOpts": 6, + "{": 79, + "opt": 34, + "pred": 15, + "OptPred.t": 3, + "}": 79, + "list": 10, + "[": 104, + "]": 108, + "ccOpts": 6, + "linkOpts": 6, + "buildConstants": 2, + "bool": 9, + "debugRuntime": 3, + "debugFormat": 5, + "Dwarf": 3, + "DwarfPlus": 3, + "Dwarf2": 3, + "Stabs": 3, + "StabsPlus": 3, + "option": 6, + "NONE": 47, + "expert": 3, + "explicitAlign": 3, + "Control.align": 1, + "explicitChunk": 2, + "Control.chunk": 1, + "explicitCodegen": 5, + "Native": 5, + "Explicit": 5, + "Control.codegen": 3, + "keepGenerated": 3, + "keepO": 3, + "output": 16, + "profileSet": 3, + "profileTimeSet": 3, + "runtimeArgs": 3, + "show": 2, + "Show.t": 1, + "stop": 10, + "Place.OUT": 1, + "parseMlbPathVar": 3, + "line": 9, + "String.t": 1, + "case": 83, + "String.tokens": 7, + "Char.isSpace": 8, + "var": 3, + "path": 7, + "SOME": 68, + "_": 83, + "readMlbPathMap": 2, + "file": 14, + "File.t": 12, + "not": 1, + "File.canRead": 1, + "Error.bug": 14, + "concat": 52, + "List.keepAllMap": 4, + "File.lines": 2, + "String.forall": 4, + "v": 4, + "targetMap": 5, + "arch": 11, + "MLton.Platform.Arch.t": 3, + "os": 13, + "MLton.Platform.OS.t": 3, + "target": 28, + "Promise.lazy": 1, + "targetsDir": 5, + "OS.Path.mkAbsolute": 4, + "relativeTo": 4, + "Control.libDir": 1, + "potentialTargets": 2, + "Dir.lsDirs": 1, + "targetDir": 5, + "osFile": 2, + "OS.Path.joinDirFile": 3, + "dir": 4, + "archFile": 2, + "File.contents": 2, + "List.first": 2, + "MLton.Platform.OS.fromString": 1, + "MLton.Platform.Arch.fromString": 1, + "in": 40, + "setTargetType": 3, + "usage": 48, + "List.peek": 7, + "...": 23, + "Control": 3, + "Target.arch": 2, + "Target.os": 2, + "hasCodegen": 8, + "cg": 21, + "z": 73, + "Control.Target.arch": 4, + "Control.Target.os": 2, + "Control.Format.t": 1, + "AMD64": 2, + "x86Codegen": 9, + "X86": 3, + "amd64Codegen": 8, + "<": 3, + "Darwin": 6, + "orelse": 7, + "Control.format": 3, + "Executable": 5, + "Archive": 4, + "hasNativeCodegen": 2, + "defaultAlignIs8": 3, + "Alpha": 1, + "ARM": 1, + "HPPA": 1, + "IA64": 1, + "MIPS": 1, + "Sparc": 1, + "S390": 1, + "makeOptions": 3, + "s": 168, + "Fail": 2, + "reportAnnotation": 4, + "flag": 12, + "e": 18, + "Control.Elaborate.Bad": 1, + "Control.Elaborate.Deprecated": 1, + "ids": 2, + "Control.warnDeprecated": 1, + "Out.output": 2, + "Out.error": 3, + "List.toString": 1, + "Control.Elaborate.Id.name": 1, + "Control.Elaborate.Good": 1, + "Control.Elaborate.Other": 1, + "Popt": 1, + "tokenizeOpt": 4, + "opts": 4, + "List.foreach": 5, + "tokenizeTargetOpt": 4, + "List.map": 3, + "Normal": 29, + "SpaceString": 48, + "Align4": 2, + "Align8": 2, + "Expert": 72, + "o": 8, + "List.push": 22, + "OptPred.Yes": 6, + "boolRef": 20, + "ChunkPerFunc": 1, + "OneChunk": 1, + "String.hasPrefix": 2, + "prefix": 3, + "String.dropPrefix": 1, + "Char.isDigit": 3, + "Int.fromString": 4, + "n": 4, + "Coalesce": 1, + "limit": 1, + "Bool": 10, + "b": 58, + "closureConvertGlobalize": 1, + "closureConvertShrink": 1, + "String.concatWith": 2, + "Control.Codegen.all": 2, + "Control.Codegen.toString": 2, + "name": 7, + "value": 4, + "Compile.setCommandLineConstant": 2, + "contifyIntoMain": 1, + "debug": 4, + "Control.Elaborate.processDefault": 1, + "Control.defaultChar": 1, + "Control.defaultInt": 5, + "Control.defaultReal": 2, + "Control.defaultWideChar": 2, + "Control.defaultWord": 4, + "Regexp.fromString": 7, + "re": 34, + "Regexp.compileDFA": 4, + "diagPasses": 1, + "Control.Elaborate.processEnabled": 2, + "dropPasses": 1, + "intRef": 8, + "errorThreshhold": 1, + "emitMain": 1, + "exportHeader": 3, + "Control.Format.all": 2, + "Control.Format.toString": 2, + "gcCheck": 1, + "Limit": 1, + "First": 1, + "Every": 1, + "Native.IEEEFP": 1, + "indentation": 1, + "Int": 8, + "i": 8, + "inlineNonRec": 6, + "small": 19, + "product": 19, + "#product": 1, + "inlineIntoMain": 1, + "loops": 18, + "inlineLeafA": 6, + "repeat": 18, + "size": 19, + "inlineLeafB": 6, + "keepCoreML": 1, + "keepDot": 1, + "keepMachine": 1, + "keepRSSA": 1, + "keepSSA": 1, + "keepSSA2": 1, + "keepSXML": 1, + "keepXML": 1, + "keepPasses": 1, + "libname": 9, + "loopPasses": 1, + "Int.toString": 3, + "markCards": 1, + "maxFunctionSize": 1, + "mlbPathVars": 4, + "@": 3, + "Native.commented": 1, + "Native.copyProp": 1, + "Native.cutoff": 1, + "Native.liveTransfer": 1, + "Native.liveStack": 1, + "Native.moveHoist": 1, + "Native.optimize": 1, + "Native.split": 1, + "Native.shuffle": 1, + "err": 1, + "optimizationPasses": 1, + "il": 10, + "set": 10, + "Result.Yes": 6, + "Result.No": 5, + "polyvariance": 9, + "hofo": 12, + "rounds": 12, + "preferAbsPaths": 1, + "profPasses": 1, + "profile": 6, + "ProfileNone": 2, + "ProfileAlloc": 1, + "ProfileCallStack": 3, + "ProfileCount": 1, + "ProfileDrop": 1, + "ProfileLabel": 1, + "ProfileTimeLabel": 4, + "ProfileTimeField": 2, + "profileBranch": 1, + "Regexp": 3, + "seq": 3, + "anys": 6, + "compileDFA": 3, + "profileC": 1, + "profileInclExcl": 2, + "profileIL": 3, + "ProfileSource": 1, + "ProfileSSA": 1, + "ProfileSSA2": 1, + "profileRaise": 2, + "profileStack": 1, + "profileVal": 1, + "Show.Anns": 1, + "Show.PathMap": 1, + "showBasis": 1, + "showDefUse": 1, + "showTypes": 1, + "Control.optimizationPasses": 4, + "String.equals": 4, + "Place.Files": 2, + "Place.Generated": 2, + "Place.O": 3, + "Place.TypeCheck": 1, + "#target": 2, + "Self": 2, + "Cross": 2, + "SpaceString2": 6, + "OptPred.Target": 6, + "#1": 1, + "trace": 4, + "#2": 2, + "typeCheck": 1, + "verbosity": 4, + "Silent": 3, + "Top": 5, + "Pass": 1, + "Detail": 1, + "warnAnn": 1, + "warnDeprecated": 1, + "zoneCutDepth": 1, + "style": 6, + "arg": 3, + "desc": 3, + "mainUsage": 3, + "parse": 2, + "Popt.makeUsage": 1, + "showExpert": 1, + "commandLine": 5, + "args": 8, + "lib": 2, + "libDir": 2, + "OS.Path.mkCanonical": 1, + "result": 1, + "targetStr": 3, + "libTargetDir": 1, + "targetArch": 4, + "archStr": 1, + "String.toLower": 2, + "MLton.Platform.Arch.toString": 2, + "targetOS": 5, + "OSStr": 2, + "MLton.Platform.OS.toString": 1, + "positionIndependent": 3, + "format": 7, + "MinGW": 4, + "Cygwin": 4, + "Library": 6, + "LibArchive": 3, + "Control.positionIndependent": 1, + "align": 1, + "codegen": 4, + "CCodegen": 1, + "MLton.Rusage.measureGC": 1, + "exnHistory": 1, + "Bool.toString": 1, + "Control.profile": 1, + "Control.ProfileCallStack": 1, + "sizeMap": 1, + "Control.libTargetDir": 1, + "ty": 4, + "Bytes.toBits": 1, + "Bytes.fromInt": 1, + "lookup": 4, + "use": 2, + "on": 1, + "must": 1, + "x86": 1, + "with": 1, + "ieee": 1, + "fp": 1, + "can": 1, + "No": 1, + "Out.standard": 1, + "input": 22, + "rest": 3, + "inputFile": 1, + "File.base": 5, + "File.fileOf": 1, + "start": 6, + "base": 3, + "rec": 1, + "loop": 3, + "suf": 14, + "hasNum": 2, + "sufs": 2, + "String.hasSuffix": 2, + "suffix": 8, + "Place.t": 1, + "List.exists": 1, + "File.withIn": 1, + "csoFiles": 1, + "Place.compare": 1, + "GREATER": 5, + "Place.toString": 2, + "EQUAL": 5, + "LESS": 5, + "printVersion": 1, + "tempFiles": 3, + "tmpDir": 2, + "tmpVar": 2, + "default": 2, + "MLton.Platform.OS.host": 2, + "Process.getEnv": 1, + "d": 32, + "temp": 3, + "out": 9, + "File.temp": 1, + "OS.Path.concat": 1, + "Out.close": 2, + "maybeOut": 10, + "maybeOutBase": 4, + "File.extension": 3, + "outputBase": 2, + "ext": 1, + "OS.Path.splitBaseExt": 1, + "defLibname": 6, + "OS.Path.splitDirFile": 1, + "String.extract": 1, + "toAlNum": 2, + "c": 42, + "Char.isAlphaNum": 1, + "#": 3, + "CharVector.map": 1, + "atMLtons": 1, + "Vector.fromList": 1, + "tokenize": 1, + "rev": 2, + "gccDebug": 3, + "asDebug": 2, + "compileO": 3, + "inputs": 7, + "libOpts": 2, + "System.system": 4, + "List.concat": 4, + "linkArchives": 1, + "String.contains": 1, + "File.move": 1, + "from": 1, + "to": 1, + "mkOutputO": 3, + "Counter.t": 3, + "File.dirOf": 2, + "Counter.next": 1, + "compileC": 2, + "debugSwitches": 2, + "compileS": 2, + "compileCSO": 1, + "List.forall": 1, + "Counter.new": 1, + "oFiles": 2, + "List.fold": 1, + "ac": 4, + "extension": 6, + "Option.toString": 1, + "mkCompileSrc": 1, + "listFiles": 2, + "elaborate": 1, + "compile": 2, + "outputs": 2, + "r": 3, + "make": 1, + "Int.inc": 1, + "Out.openOut": 1, + "print": 4, + "outputHeader": 2, + "done": 3, + "Control.No": 1, + "l": 2, + "Layout.output": 1, + "Out.newline": 1, + "Vector.foreach": 1, + "String.translate": 1, + "/": 1, + "Type": 1, + "Check": 1, + ".c": 1, + ".s": 1, + "invalid": 1, + "MLton": 1, + "Exn.finally": 1, + "File.remove": 1, + "doit": 1, + "Process.makeCommandLine": 1, + "main": 1, + "mainWrapped": 1, + "OS.Process.exit": 1, + "CommandLine.arguments": 1, + "RedBlackTree": 1, + "key": 16, + "*": 9, + "entry": 12, + "dict": 17, + "Empty": 15, + "Red": 41, + "local": 1, + "lk": 4, + "tree": 4, + "and": 2, + "zipper": 3, + "TOP": 5, + "LEFTB": 10, + "RIGHTB": 10, + "delete": 3, + "zip": 19, + "Black": 40, + "LEFTR": 8, + "RIGHTR": 9, + "bbZip": 28, + "w": 17, + "delMin": 8, + "Match": 1, + "joinRed": 3, + "needB": 2, + "del": 8, + "NotFound": 2, + "entry1": 16, + "as": 7, + "key1": 8, + "datum1": 4, + "joinBlack": 1, + "insertShadow": 3, + "datum": 1, + "oldEntry": 7, + "ins": 8, + "left": 10, + "right": 10, + "restore_left": 1, + "restore_right": 1, + "app": 3, + "ap": 7, + "new": 1, + "insert": 2, + "table": 14, + "clear": 1, + "signature": 2, + "sig": 2, + "LAZY": 1, + "order": 2 + }, + "Logos": { + "%": 15, + "hook": 2, + "ABC": 2, + "-": 3, + "(": 8, + "id": 2, + ")": 8, + "a": 1, + "B": 1, + "b": 1, + "{": 4, + "log": 1, + ";": 8, "return": 2, - "results": 1, - "serialized_result": 2 + "orig": 2, + "nil": 2, + "}": 4, + "end": 4, + "subclass": 1, + "DEF": 1, + "NSObject": 1, + "init": 3, + "[": 2, + "c": 1, + "RuntimeAccessibleClass": 1, + "alloc": 1, + "]": 2, + "group": 1, + "OptionalHooks": 2, + "void": 1, + "release": 1, + "self": 1, + "retain": 1, + "ctor": 1, + "if": 1, + "OptionalCondition": 1 }, - "XSLT": { - "": 1, - "version=": 2, - "": 1, - "xmlns": 1, - "xsl=": 1, - "": 1, - "match=": 1, - "": 1, - "": 1, - "

": 1, - "My": 1, - "CD": 1, - "Collection": 1, - "

": 1, - "": 1, - "border=": 1, - "": 2, - "bgcolor=": 1, - "": 2, - "Artist": 1, - "": 2, - "": 1, - "select=": 3, - "": 2, - "": 1, - "
": 2, - "Title": 1, - "
": 2, - "": 2, - "
": 1, - "": 1, - "": 1, - "
": 1, - "
": 1 + "Omgrofl": { + "lol": 14, + "iz": 11, + "wtf": 1, + "liek": 1, + "lmao": 1, + "brb": 1, + "w00t": 1, + "Hello": 1, + "World": 1, + "rofl": 13, + "lool": 5, + "loool": 6, + "stfu": 1 }, +<<<<<<< HEAD "Xojo": { "#tag": 88, "Class": 3, @@ -69731,12 +125787,1095 @@ "Mask": 74, "Mathematica": 1857, "Matlab": 11942, +======= + "Opa": { + "server": 1, + "Server.one_page_server": 1, + "(": 4, + "-": 1, + "

": 2, + "Hello": 2, + "world": 2, + "

": 2, + ")": 4, + "Server.start": 1, + "Server.http": 1, + "{": 2, + "page": 1, + "function": 1, + "}": 2, + "title": 1 + }, + "Python": { + "xspacing": 4, + "#": 21, + "How": 2, + "far": 1, + "apart": 1, + "should": 1, + "each": 1, + "horizontal": 1, + "location": 1, + "be": 1, + "spaced": 1, + "maxwaves": 3, + "total": 1, + "of": 5, + "waves": 1, + "to": 5, + "add": 1, + "together": 1, + "theta": 3, + "amplitude": 3, + "[": 161, + "]": 161, + "Height": 1, + "wave": 2, + "dx": 8, + "yvalues": 7, + "def": 74, + "setup": 2, + "(": 762, + ")": 773, + "size": 2, + "frameRate": 1, + "colorMode": 1, + "RGB": 1, + "w": 2, + "width": 1, + "+": 44, + "for": 65, + "i": 13, + "in": 85, + "range": 5, + "amplitude.append": 1, + "random": 2, + "period": 2, + "many": 1, + "pixels": 1, + "before": 1, + "the": 6, + "repeats": 1, + "dx.append": 1, + "TWO_PI": 1, + "/": 26, + "*": 37, + "_": 6, + "yvalues.append": 1, + "draw": 2, + "background": 2, + "calcWave": 2, + "renderWave": 2, + "len": 11, + "j": 7, + "x": 28, + "if": 146, + "%": 33, + "sin": 1, + "else": 31, + "cos": 1, + "noStroke": 2, + "fill": 2, + "ellipseMode": 1, + "CENTER": 1, + "v": 13, + "enumerate": 2, + "ellipse": 1, + "height": 1, + "SHEBANG#!python": 4, + "print": 39, + "from": 34, + ".globals": 1, + "import": 47, + "request": 1, + "http_method_funcs": 2, + "frozenset": 2, + "class": 14, + "View": 2, + "object": 6, + "A": 1, + "which": 1, + "methods": 5, + "this": 2, + "pluggable": 1, + "view": 2, + "can": 1, + "handle.": 1, + "None": 86, + "The": 1, + "canonical": 1, + "way": 1, + "decorate": 2, + "-": 33, + "based": 1, + "views": 1, + "is": 29, + "return": 57, + "value": 9, + "as_view": 1, + ".": 1, + "However": 1, + "since": 1, + "moves": 1, + "parts": 1, + "logic": 1, + "declaration": 1, + "place": 1, + "where": 1, + "it": 1, + "s": 1, + "also": 1, + "used": 1, + "instantiating": 1, + "view.view_class": 1, + "cls": 32, + "view.__name__": 1, + "name": 39, + "view.__doc__": 1, + "cls.__doc__": 3, + "view.__module__": 1, + "cls.__module__": 1, + "view.methods": 1, + "cls.methods": 1, + "MethodViewType": 2, + "type": 6, + "__new__": 2, + "bases": 6, + "d": 5, + "rv": 2, + "type.__new__": 1, + "not": 64, + "set": 3, + "rv.methods": 2, + "or": 27, + "key": 5, + "methods.add": 1, + "key.upper": 1, + "sorted": 1, + "MethodView": 1, + "__metaclass__": 3, + "dispatch_request": 1, + "self": 100, + "*args": 4, + "**kwargs": 9, + "meth": 5, + "getattr": 30, + "request.method.lower": 1, + "and": 35, + "request.method": 2, + "assert": 7, + "args": 8, + "argparse": 1, + "matplotlib.pyplot": 1, + "as": 11, + "pl": 1, + "numpy": 1, + "np": 1, + "scipy.optimize": 1, + "op": 6, + "prettytable": 1, + "PrettyTable": 6, + "__docformat__": 1, + "S": 4, + "e": 13, + "phif": 7, + "U": 10, + "main": 4, + "options": 3, + "_parse_args": 2, + "V": 12, + "data": 22, + "np.genfromtxt": 8, + "delimiter": 8, + "t": 8, + "U_err": 7, + "offset": 13, + "np.mean": 1, + "np.linspace": 9, + "min": 10, + "max": 11, + "y": 10, + "np.ones": 11, + "x.size": 2, + "pl.plot": 9, + "**6": 6, + "label": 18, + ".format": 11, + "pl.errorbar": 8, + "yerr": 8, + "linestyle": 8, + "marker": 4, + "pl.grid": 5, + "True": 20, + "pl.legend": 5, + "loc": 5, + "pl.title": 5, + "u": 9, + "pl.xlabel": 5, + "ur": 11, + "pl.ylabel": 5, + "pl.savefig": 5, + "pl.clf": 5, + "glanz": 13, + "matt": 13, + "schwarz": 13, + "weiss": 13, + "T0": 1, + "T0_err": 2, + "glanz_phi": 4, + "matt_phi": 4, + "schwarz_phi": 4, + "weiss_phi": 4, + "T_err": 7, + "sigma": 4, + "boltzmann": 12, + "T": 6, + "epsilon": 7, + "T**4": 1, + "glanz_popt": 3, + "glanz_pconv": 1, + "op.curve_fit": 6, + "matt_popt": 3, + "matt_pconv": 1, + "schwarz_popt": 3, + "schwarz_pconv": 1, + "weiss_popt": 3, + "weiss_pconv": 1, + "glanz_x": 3, + "glanz_y": 2, + "*glanz_popt": 1, + "color": 8, + "matt_x": 3, + "matt_y": 2, + "*matt_popt": 1, + "schwarz_x": 3, + "schwarz_y": 2, + "*schwarz_popt": 1, + "weiss_x": 3, + "weiss_y": 2, + "*weiss_popt": 1, + "np.sqrt": 17, + "glanz_pconv.diagonal": 2, + "matt_pconv.diagonal": 2, + "schwarz_pconv.diagonal": 2, + "weiss_pconv.diagonal": 2, + "xerr": 6, + "U_err/S": 4, + "header": 5, + "glanz_table": 2, + "row": 10, + "zip": 8, + ".size": 4, + "*T_err": 4, + "glanz_phi.size": 1, + "*U_err/S": 4, + "glanz_table.add_row": 1, + "matt_table": 2, + "matt_phi.size": 1, + "matt_table.add_row": 1, + "schwarz_table": 2, + "schwarz_phi.size": 1, + "schwarz_table.add_row": 1, + "weiss_table": 2, + "weiss_phi.size": 1, + "weiss_table.add_row": 1, + "T0**4": 1, + "prop": 5, + "{": 25, + "}": 25, + "phi": 5, + "c": 3, + "a": 2, + "b": 11, + "a*x": 1, + "d**": 2, + "dy": 4, + "dx_err": 3, + "np.abs": 1, + "dy_err": 2, + "popt": 5, + "pconv": 2, + "*popt": 2, + "pconv.diagonal": 3, + "fields": 12, + "table": 2, + "table.align": 1, + "dy.size": 1, + "*dy_err": 1, + "table.add_row": 1, + "U1": 3, + "I1": 3, + "U2": 2, + "I_err": 2, + "p": 1, + "R": 1, + "R_err": 2, + "/I1": 1, + "**2": 2, + "U1/I1**2": 1, + "phi_err": 3, + "alpha": 2, + "beta": 1, + "R0": 6, + "R0_err": 2, + "alpha*R0": 2, + "*np.sqrt": 6, + "*beta*R": 5, + "alpha**2*R0": 5, + "*beta*R0": 7, + "*beta*R0*T0": 2, + "epsilon_err": 2, + "f1": 1, + "f2": 1, + "f3": 1, + "alpha**2": 1, + "*beta": 1, + "*beta*T0": 1, + "*beta*R0**2": 1, + "f1**2": 1, + "f2**2": 1, + "f3**2": 1, + "parser": 1, + "argparse.ArgumentParser": 1, + "description": 1, + "#parser.add_argument": 3, + "metavar": 1, + "str": 2, + "nargs": 1, + "help": 2, + "dest": 1, + "default": 1, + "action": 1, + "version": 6, + "parser.parse_args": 1, + "__name__": 2, + "__future__": 2, + "absolute_import": 1, + "division": 1, + "with_statement": 1, + "Cookie": 1, + "logging": 1, + "socket": 1, + "time": 1, + "tornado.escape": 1, + "utf8": 2, + "native_str": 4, + "parse_qs_bytes": 3, + "tornado": 3, + "httputil": 1, + "iostream": 1, + "tornado.netutil": 1, + "TCPServer": 2, + "stack_context": 1, + "tornado.util": 1, + "bytes_type": 2, + "try": 17, + "ssl": 2, + "Python": 1, + "except": 17, + "ImportError": 1, + "HTTPServer": 1, + "r": 3, + "__init__": 5, + "request_callback": 4, + "no_keep_alive": 4, + "False": 28, + "io_loop": 3, + "xheaders": 4, + "ssl_options": 3, + "self.request_callback": 5, + "self.no_keep_alive": 4, + "self.xheaders": 3, + "TCPServer.__init__": 1, + "handle_stream": 1, + "stream": 4, + "address": 4, + "HTTPConnection": 2, + "_BadRequestException": 5, + "Exception": 2, + "pass": 4, + "self.stream": 1, + "self.address": 3, + "self._request": 7, + "self._request_finished": 4, + "self._header_callback": 3, + "stack_context.wrap": 2, + "self._on_headers": 1, + "self.stream.read_until": 2, + "self._write_callback": 5, + "write": 2, + "chunk": 5, + "callback": 7, + "self.stream.closed": 1, + "self.stream.write": 2, + "self._on_write_complete": 1, + "finish": 2, + "self.stream.writing": 2, + "self._finish_request": 2, + "_on_write_complete": 1, + "_finish_request": 1, + "disconnect": 5, + "connection_header": 5, + "self._request.headers.get": 2, + "connection_header.lower": 1, + "self._request.supports_http_1_1": 1, + "elif": 4, + "self._request.headers": 1, + "self._request.method": 2, + "self.stream.close": 2, + "_on_headers": 1, + "data.decode": 1, + "eol": 3, + "data.find": 1, + "start_line": 1, + "method": 5, + "uri": 5, + "start_line.split": 1, + "ValueError": 5, + "raise": 22, + "version.startswith": 1, + "headers": 5, + "httputil.HTTPHeaders.parse": 1, + "self.stream.socket": 1, + "socket.AF_INET": 2, + "socket.AF_INET6": 1, + "remote_ip": 8, + "HTTPRequest": 2, + "connection": 5, + "content_length": 6, + "headers.get": 2, + "int": 1, + "self.stream.max_buffer_size": 1, + "self.stream.read_bytes": 1, + "self._on_request_body": 1, + "logging.info": 1, + "_on_request_body": 1, + "self._request.body": 2, + "content_type": 1, + "content_type.startswith": 2, + "arguments": 2, + "values": 13, + "arguments.iteritems": 2, + "self._request.arguments.setdefault": 1, + ".extend": 2, + "content_type.split": 1, + "field": 32, + "k": 4, + "sep": 2, + "field.strip": 1, + ".partition": 1, + "httputil.parse_multipart_form_data": 1, + "self._request.arguments": 1, + "self._request.files": 1, + "break": 2, + "logging.warning": 1, + "body": 2, + "protocol": 4, + "host": 2, + "files": 2, + "self.method": 1, + "self.uri": 2, + "self.version": 2, + "self.headers": 4, + "httputil.HTTPHeaders": 1, + "self.body": 1, + "connection.xheaders": 1, + "self.remote_ip": 4, + "self.headers.get": 5, + "self._valid_ip": 1, + "self.protocol": 7, + "isinstance": 11, + "connection.stream": 1, + "iostream.SSLIOStream": 1, + "self.host": 2, + "self.files": 1, + "self.connection": 1, + "self._start_time": 3, + "time.time": 3, + "self._finish_time": 4, + "self.path": 1, + "self.query": 2, + "uri.partition": 1, + "self.arguments": 2, + "supports_http_1_1": 1, + "@property": 1, + "cookies": 1, + "hasattr": 11, + "self._cookies": 3, + "Cookie.SimpleCookie": 1, + "self._cookies.load": 1, + "self.connection.write": 1, + "self.connection.finish": 1, + "full_url": 1, + "request_time": 1, + "get_ssl_certificate": 1, + "self.connection.stream.socket.getpeercert": 1, + "ssl.SSLError": 1, + "__repr__": 2, + "attrs": 7, + ".join": 3, + "n": 3, + "self.__class__.__name__": 3, + "dict": 3, + "_valid_ip": 1, + "ip": 2, + "res": 2, + "socket.getaddrinfo": 1, + "socket.AF_UNSPEC": 1, + "socket.SOCK_STREAM": 1, + "socket.AI_NUMERICHOST": 1, + "bool": 2, + "socket.gaierror": 1, + "e.args": 1, + "socket.EAI_NONAME": 1, + "os": 1, + "sys": 2, + "usage": 3, + "string": 1, + "command": 4, + "check": 4, + "sys.argv": 2, + "<": 1, + "sys.exit": 1, + "printDelimiter": 4, + "get": 1, + "list": 1, + "git": 1, + "directories": 1, + "specified": 1, + "parent": 5, + "gitDirectories": 2, + "getSubdirectories": 2, + "isGitDirectory": 2, + "gitDirectory": 2, + "os.chdir": 1, + "os.getcwd": 1, + "os.system": 1, + "directory": 9, + "filter": 3, + "os.path.abspath": 1, + "subdirectories": 3, + "os.walk": 1, + ".next": 1, + "os.path.isdir": 1, + "google.protobuf": 4, + "descriptor": 1, + "_descriptor": 1, + "message": 1, + "_message": 1, + "reflection": 1, + "_reflection": 1, + "descriptor_pb2": 1, + "DESCRIPTOR": 3, + "_descriptor.FileDescriptor": 1, + "package": 1, + "serialized_pb": 1, + "_PERSON": 3, + "_descriptor.Descriptor": 1, + "full_name": 2, + "filename": 1, + "file": 1, + "containing_type": 2, + "_descriptor.FieldDescriptor": 1, + "index": 1, + "number": 1, + "cpp_type": 1, + "has_default_value": 1, + "default_value": 1, + "unicode": 8, + "message_type": 1, + "enum_type": 1, + "is_extension": 1, + "extension_scope": 1, + "extensions": 1, + "nested_types": 1, + "enum_types": 1, + "is_extendable": 1, + "extension_ranges": 1, + "serialized_start": 1, + "serialized_end": 1, + "DESCRIPTOR.message_types_by_name": 1, + "Person": 1, + "_message.Message": 1, + "_reflection.GeneratedProtocolMessageType": 1, + "P3D": 1, + "lights": 1, + "camera": 1, + "mouseY": 1, + "eyeX": 1, + "eyeY": 1, + "eyeZ": 1, + "centerX": 1, + "centerY": 1, + "centerZ": 1, + "upX": 1, + "upY": 1, + "upZ": 1, + "box": 1, + "stroke": 1, + "line": 3, + "unicode_literals": 1, + "copy": 1, + "functools": 1, + "update_wrapper": 2, + "future_builtins": 1, + "django.db.models.manager": 1, + "Imported": 1, + "register": 1, + "signal": 1, + "handler.": 1, + "django.conf": 1, + "settings": 1, + "django.core.exceptions": 1, + "ObjectDoesNotExist": 2, + "MultipleObjectsReturned": 2, + "FieldError": 4, + "ValidationError": 8, + "NON_FIELD_ERRORS": 3, + "django.core": 1, + "validators": 1, + "django.db.models.fields": 1, + "AutoField": 2, + "FieldDoesNotExist": 2, + "django.db.models.fields.related": 1, + "ManyToOneRel": 3, + "OneToOneField": 3, + "add_lazy_relation": 2, + "django.db": 1, + "router": 1, + "transaction": 1, + "DatabaseError": 3, + "DEFAULT_DB_ALIAS": 2, + "django.db.models.query": 1, + "Q": 3, + "django.db.models.query_utils": 2, + "DeferredAttribute": 3, + "django.db.models.deletion": 1, + "Collector": 2, + "django.db.models.options": 1, + "Options": 2, + "django.db.models": 1, + "signals": 1, + "django.db.models.loading": 1, + "register_models": 2, + "get_model": 3, + "django.utils.translation": 1, + "ugettext_lazy": 1, + "django.utils.functional": 1, + "curry": 6, + "django.utils.encoding": 1, + "smart_str": 3, + "force_unicode": 3, + "django.utils.text": 1, + "get_text_list": 2, + "capfirst": 6, + "ModelBase": 4, + "super_new": 3, + "super": 2, + ".__new__": 1, + "parents": 8, + "module": 6, + "attrs.pop": 2, + "new_class": 9, + "attr_meta": 5, + "abstract": 3, + "meta": 12, + "base_meta": 2, + "model_module": 1, + "sys.modules": 1, + "new_class.__module__": 1, + "kwargs": 9, + "model_module.__name__.split": 1, + "new_class.add_to_class": 7, + "subclass_exception": 3, + "tuple": 3, + "x.DoesNotExist": 1, + "x._meta.abstract": 2, + "x.MultipleObjectsReturned": 1, + "base_meta.abstract": 1, + "new_class._meta.ordering": 1, + "base_meta.ordering": 1, + "new_class._meta.get_latest_by": 1, + "base_meta.get_latest_by": 1, + "is_proxy": 5, + "new_class._meta.proxy": 1, + "new_class._default_manager": 2, + "new_class._base_manager": 2, + "new_class._default_manager._copy_to_model": 1, + "new_class._base_manager._copy_to_model": 1, + "m": 3, + "new_class._meta.app_label": 3, + "seed_cache": 2, + "only_installed": 2, + "obj_name": 2, + "obj": 4, + "attrs.items": 1, + "new_fields": 2, + "new_class._meta.local_fields": 3, + "new_class._meta.local_many_to_many": 2, + "new_class._meta.virtual_fields": 1, + "field_names": 5, + "f.name": 5, + "f": 19, + "base": 13, + "parent._meta.abstract": 1, + "parent._meta.fields": 1, + "TypeError": 4, + "continue": 10, + "new_class._meta.setup_proxy": 1, + "new_class._meta.concrete_model": 2, + "base._meta.concrete_model": 2, + "o2o_map": 3, + "f.rel.to": 1, + "original_base": 1, + "parent_fields": 3, + "base._meta.local_fields": 1, + "base._meta.local_many_to_many": 1, + "field.name": 14, + "base.__name__": 2, + "base._meta.abstract": 2, + "attr_name": 3, + "base._meta.module_name": 1, + "auto_created": 1, + "parent_link": 1, + "new_class._meta.parents": 1, + "copy.deepcopy": 2, + "new_class._meta.parents.update": 1, + "base._meta.parents": 1, + "new_class.copy_managers": 2, + "base._meta.abstract_managers": 1, + "original_base._meta.concrete_managers": 1, + "base._meta.virtual_fields": 1, + "attr_meta.abstract": 1, + "new_class.Meta": 1, + "new_class._prepare": 1, + "copy_managers": 1, + "base_managers": 2, + "base_managers.sort": 1, + "mgr_name": 3, + "manager": 3, + "val": 14, + "new_manager": 2, + "manager._copy_to_model": 1, + "cls.add_to_class": 1, + "add_to_class": 1, + "value.contribute_to_class": 1, + "setattr": 14, + "_prepare": 1, + "opts": 5, + "cls._meta": 3, + "opts._prepare": 1, + "opts.order_with_respect_to": 2, + "cls.get_next_in_order": 1, + "cls._get_next_or_previous_in_order": 2, + "is_next": 9, + "cls.get_previous_in_order": 1, + "make_foreign_order_accessors": 2, + "model": 8, + "field.rel.to": 2, + "cls.__name__.lower": 2, + "method_get_order": 2, + "method_set_order": 2, + "opts.order_with_respect_to.rel.to": 1, + "cls.__name__": 1, + "f.attname": 5, + "opts.fields": 1, + "cls.get_absolute_url": 3, + "get_absolute_url": 2, + "signals.class_prepared.send": 1, + "sender": 5, + "ModelState": 2, + "db": 2, + "self.db": 1, + "self.adding": 1, + "Model": 2, + "_deferred": 1, + "signals.pre_init.send": 1, + "self.__class__": 10, + "self._state": 1, + "args_len": 2, + "self._meta.fields": 5, + "IndexError": 2, + "fields_iter": 4, + "iter": 1, + "field.attname": 17, + "kwargs.pop": 6, + "field.rel": 2, + "is_related_object": 3, + "self.__class__.__dict__.get": 2, + "rel_obj": 3, + "KeyError": 3, + "field.get_default": 3, + "field.null": 1, + "kwargs.keys": 2, + "property": 2, + "AttributeError": 1, + ".__init__": 1, + "signals.post_init.send": 1, + "instance": 5, + "UnicodeEncodeError": 1, + "UnicodeDecodeError": 1, + "__str__": 1, + ".encode": 1, + "__eq__": 1, + "other": 4, + "self._get_pk_val": 6, + "other._get_pk_val": 1, + "__ne__": 1, + "self.__eq__": 1, + "__hash__": 1, + "hash": 1, + "__reduce__": 1, + "self.__dict__": 1, + "defers": 2, + "self._deferred": 1, + "deferred_class_factory": 2, + "factory": 5, + "defers.append": 1, + "self._meta.proxy_for_model": 1, + "simple_class_factory": 2, + "model_unpickle": 2, + "_get_pk_val": 2, + "self._meta": 2, + "meta.pk.attname": 2, + "_set_pk_val": 2, + "self._meta.pk.attname": 2, + "pk": 5, + "serializable_value": 1, + "field_name": 8, + "self._meta.get_field_by_name": 1, + "save": 1, + "force_insert": 7, + "force_update": 10, + "using": 30, + "update_fields": 23, + "field.primary_key": 1, + "non_model_fields": 2, + "update_fields.difference": 1, + "self.save_base": 2, + "save.alters_data": 1, + "save_base": 1, + "raw": 9, + "origin": 7, + "router.db_for_write": 2, + "meta.proxy": 5, + "meta.auto_created": 2, + "signals.pre_save.send": 1, + "org": 3, + "meta.parents.items": 1, + "parent._meta.pk.attname": 2, + "parent._meta": 1, + "non_pks": 5, + "meta.local_fields": 2, + "f.primary_key": 2, + "pk_val": 4, + "pk_set": 5, + "record_exists": 5, + "cls._base_manager": 1, + "manager.using": 3, + ".filter": 7, + ".exists": 1, + "f.pre_save": 1, + "rows": 3, + "._update": 1, + "meta.order_with_respect_to": 2, + "order_value": 2, + ".count": 1, + "self._order": 1, + "update_pk": 3, + "meta.has_auto_field": 1, + "result": 2, + "manager._insert": 1, + "return_id": 1, + "transaction.commit_unless_managed": 2, + "self._state.db": 2, + "self._state.adding": 4, + "signals.post_save.send": 1, + "created": 1, + "save_base.alters_data": 1, + "delete": 1, + "self._meta.object_name": 1, + "collector": 1, + "collector.collect": 1, + "collector.delete": 1, + "delete.alters_data": 1, + "_get_FIELD_display": 1, + "field.flatchoices": 1, + ".get": 2, + "strings_only": 1, + "_get_next_or_previous_by_FIELD": 1, + "self.pk": 6, + "order": 5, + "param": 3, + "q": 4, + "|": 1, + "qs": 6, + "self.__class__._default_manager.using": 1, + "*kwargs": 1, + ".order_by": 2, + "self.DoesNotExist": 1, + "self.__class__._meta.object_name": 1, + "_get_next_or_previous_in_order": 1, + "cachename": 4, + "order_field": 1, + "self._meta.order_with_respect_to": 1, + "self._default_manager.filter": 1, + "order_field.name": 1, + "order_field.attname": 1, + "self._default_manager.values": 1, + "self._meta.pk.name": 1, + "prepare_database_save": 1, + "unused": 1, + "clean": 1, + "validate_unique": 1, + "exclude": 23, + "unique_checks": 6, + "date_checks": 6, + "self._get_unique_checks": 1, + "errors": 20, + "self._perform_unique_checks": 1, + "date_errors": 1, + "self._perform_date_checks": 1, + "date_errors.items": 1, + "errors.setdefault": 3, + "_get_unique_checks": 1, + "unique_togethers": 2, + "self._meta.unique_together": 1, + "parent_class": 4, + "self._meta.parents.keys": 2, + "parent_class._meta.unique_together": 2, + "unique_togethers.append": 1, + "model_class": 11, + "unique_together": 2, + "unique_checks.append": 2, + "fields_with_class": 2, + "self._meta.local_fields": 1, + "fields_with_class.append": 1, + "parent_class._meta.local_fields": 1, + "f.unique": 1, + "f.unique_for_date": 3, + "date_checks.append": 3, + "f.unique_for_year": 3, + "f.unique_for_month": 3, + "_perform_unique_checks": 1, + "unique_check": 10, + "lookup_kwargs": 8, + "self._meta.get_field": 1, + "lookup_value": 3, + "lookup_kwargs.keys": 1, + "model_class._default_manager.filter": 2, + "*lookup_kwargs": 2, + "model_class_pk": 3, + "model_class._meta": 2, + "qs.exclude": 2, + "qs.exists": 2, + ".append": 2, + "self.unique_error_message": 1, + "_perform_date_checks": 1, + "lookup_type": 7, + "unique_for": 9, + "date": 3, + "date.day": 1, + "date.month": 1, + "date.year": 1, + "self.date_error_message": 1, + "date_error_message": 1, + "opts.get_field": 4, + ".verbose_name": 3, + "unique_error_message": 1, + "model_name": 3, + "opts.verbose_name": 1, + "field_label": 2, + "field.verbose_name": 1, + "field.error_messages": 1, + "field_labels": 4, + "map": 1, + "lambda": 1, + "full_clean": 1, + "self.clean_fields": 1, + "e.update_error_dict": 3, + "self.clean": 1, + "errors.keys": 1, + "exclude.append": 1, + "self.validate_unique": 1, + "clean_fields": 1, + "raw_value": 3, + "f.blank": 1, + "validators.EMPTY_VALUES": 1, + "f.clean": 1, + "e.messages": 1, + "############################################": 2, + "ordered_obj": 2, + "id_list": 2, + "rel_val": 4, + "ordered_obj._meta.order_with_respect_to.rel.field_name": 2, + "order_name": 4, + "ordered_obj._meta.order_with_respect_to.name": 2, + "ordered_obj.objects.filter": 2, + ".update": 1, + "_order": 1, + "pk_name": 3, + "ordered_obj._meta.pk.name": 1, + ".values": 1, + "##############################################": 2, + "func": 2, + "settings.ABSOLUTE_URL_OVERRIDES.get": 1, + "opts.app_label": 1, + "opts.module_name": 1, + "########": 2, + "Empty": 1, + "cls.__new__": 1, + "model_unpickle.__safe_for_unpickle__": 1 + }, + "Handlebars": { + "
": 5, + "class=": 5, + "

": 3, + "By": 2, + "{": 16, + "fullName": 2, + "author": 2, + "}": 16, + "

": 3, + "body": 3, + "
": 5, + "Comments": 1, + "#each": 1, + "comments": 1, + "

": 1, + "

": 1, + "/each": 1, + "title": 1 + } + }, + "language_tokens": { + "Stylus": 76, + "IDL": 418, + "OpenEdge ABL": 762, + "Latte": 759, + "Racket": 331, + "Assembly": 21750, + "AsciiDoc": 103, + "Gnuplot": 1023, + "Nginx": 179, + "Dogescript": 30, + "Markdown": 1, + "Perl": 17979, + "XML": 8185, + "MTML": 93, + "Lasso": 9849, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "Max": 714, - "MediaWiki": 766, - "Mercury": 31096, - "Monkey": 207, - "Moocode": 5234, + "Awk": 544, + "JavaScript": 76970, + "Visual Basic": 581, + "GAP": 9944, + "Logtalk": 36, + "Scheme": 3515, + "C++": 34739, + "JSON5": 57, "MoonScript": 1718, +<<<<<<< HEAD "NSIS": 725, "Nemerle": 17, "NetLogo": 243, @@ -69764,11 +126903,50 @@ "Perl": 17979, "Perl6": 372, "Pike": 1835, +======= + "Mercury": 31096, + "Perl6": 372, + "VHDL": 42, + "Literate CoffeeScript": 275, + "KRL": 25, + "Nimrod": 1, + "Pascal": 30, + "C#": 278, + "Groovy Server Pages": 91, + "GAMS": 363, + "COBOL": 90, + "Cuda": 290, + "Gosu": 410, + "Prolog": 468, + "Tcl": 1133, + "Squirrel": 130, + "YAML": 77, + "Clojure": 510, + "Tea": 3, + "VimL": 20, + "M": 23615, + "NSIS": 725, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "Pod": 658, + "AutoHotkey": 3, + "TXL": 213, + "wisp": 1363, + "Mathematica": 411, + "Coq": 18259, + "GAS": 133, + "Verilog": 3778, + "Apex": 4408, + "Scala": 750, + "JSONLD": 18, + "LiveScript": 123, + "Org": 358, + "Liquid": 633, + "UnrealScript": 2873, + "Component Pascal": 825, "PogoScript": 250, - "PostScript": 107, - "PowerShell": 12, + "Creole": 134, "Processing": 74, +<<<<<<< HEAD "Prolog": 2420, "Propeller Spin": 13519, "Protocol Buffer": 63, @@ -69795,11 +126973,83 @@ "Scheme": 3515, "Scilab": 69, "Shell": 3744, - "ShellSession": 233, - "Shen": 3472, +======= + "Emacs Lisp": 1756, + "Elm": 628, + "Inform 7": 75, + "XC": 24, + "JSON": 183, + "Scaml": 4, + "Shell": 3744, + "Sass": 56, + "Oxygene": 157, + "ATS": 4558, + "SCSS": 39, + "R": 1790, + "Brightscript": 579, + "HTML": 413, + "Frege": 5564, + "Literate Agda": 478, + "Lua": 724, + "XSLT": 44, + "Zimpl": 123, + "Groovy": 93, + "Ioke": 2, + "Jade": 3, + "TypeScript": 109, + "Erlang": 2928, + "ABAP": 1500, + "Rebol": 533, + "SuperCollider": 133, + "CoffeeScript": 2951, + "PHP": 20754, + "MediaWiki": 766, + "Ceylon": 50, + "fish": 636, + "Diff": 16, "Slash": 187, + "Objective-C": 26518, + "Stata": 3133, + "Shen": 3472, + "Mask": 74, + "SAS": 93, + "Xtend": 399, + "Arduino": 20, + "XProc": 22, + "Haml": 4, + "AspectJ": 324, + "RDoc": 279, + "AppleScript": 1862, + "Ox": 1006, + "STON": 100, + "Scilab": 69, + "Dart": 74, + "Nu": 116, + "Alloy": 1143, + "Red": 816, + "BlitzBasic": 2065, + "RobotFramework": 483, + "ApacheConf": 1449, + "Agda": 376, + "Hy": 155, + "Less": 39, + "Kit": 6, + "E": 601, + "DM": 169, + "OpenCL": 144, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method + "ShellSession": 233, + "GLSL": 4033, + "ECL": 281, + "Makefile": 50, + "Haskell": 302, "Slim": 77, + "Zephir": 1026, + "INI": 27, + "OCaml": 382, + "VCL": 545, "Smalltalk": 423, +<<<<<<< HEAD "SourcePawn": 2080, "Squirrel": 130, "Standard ML": 6567, @@ -69864,8 +127114,126 @@ "CoffeeScript": 9, "Common Lisp": 3, "Component Pascal": 2, +======= + "Parrot Assembly": 6, + "Protocol Buffer": 63, + "SQL": 1485, + "Nemerle": 17, + "Bluespec": 1298, + "Swift": 1128, + "SourcePawn": 2080, + "Propeller Spin": 13519, + "Cirru": 244, + "Julia": 247, + "Ragel in Ruby Host": 593, + "JSONiq": 151, + "TeX": 2701, + "XQuery": 801, + "RMarkdown": 19, + "Crystal": 1506, + "edn": 227, + "PowerShell": 12, + "Game Maker Language": 13310, + "Volt": 388, + "Monkey": 207, + "SystemVerilog": 541, + "Grammatical Framework": 10607, + "PostScript": 107, + "CSS": 43867, + "Forth": 1516, + "LFE": 1711, + "Moocode": 5234, + "Java": 8987, + "Turing": 44, + "Kotlin": 155, + "Idris": 148, + "PureScript": 1652, + "NetLogo": 243, + "Eagle": 30089, + "Common Lisp": 2186, + "Parrot Internal Representation": 5, + "Objective-C++": 6021, + "Rust": 3566, + "Matlab": 11942, + "Pan": 130, + "PAWN": 3263, + "Ruby": 3862, + "C": 59053, + "Standard ML": 6567, + "Logos": 93, + "Omgrofl": 57, + "Opa": 28, + "Python": 5994, + "Handlebars": 69 + }, + "languages": { + "Stylus": 1, + "IDL": 4, + "OpenEdge ABL": 5, + "Latte": 2, + "Racket": 2, + "Assembly": 4, + "AsciiDoc": 3, + "Gnuplot": 6, + "Nginx": 1, + "Dogescript": 1, + "Markdown": 1, + "Perl": 15, + "XML": 13, + "MTML": 1, + "Lasso": 4, + "Max": 3, + "Awk": 1, + "JavaScript": 22, + "Visual Basic": 3, + "GAP": 7, + "Logtalk": 1, + "Scheme": 2, + "C++": 29, + "JSON5": 2, + "MoonScript": 1, + "Mercury": 9, + "Perl6": 3, + "VHDL": 1, + "Literate CoffeeScript": 1, + "KRL": 1, + "Nimrod": 1, + "Pascal": 1, + "C#": 2, + "Groovy Server Pages": 4, + "GAMS": 1, + "COBOL": 4, + "Cuda": 2, + "Gosu": 4, + "Prolog": 3, + "Tcl": 2, + "Squirrel": 1, + "YAML": 2, + "Clojure": 7, + "Tea": 1, + "VimL": 2, + "M": 29, + "NSIS": 2, + "Pod": 1, + "AutoHotkey": 1, + "TXL": 1, + "wisp": 1, + "Mathematica": 3, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "Coq": 12, + "GAS": 1, + "Verilog": 13, + "Apex": 6, + "Scala": 4, + "JSONLD": 1, + "LiveScript": 1, + "Org": 1, + "Liquid": 2, + "UnrealScript": 2, + "Component Pascal": 2, + "PogoScript": 1, "Creole": 1, +<<<<<<< HEAD "Crystal": 3, "Cuda": 2, "DM": 1, @@ -69918,12 +127286,27 @@ "Latte": 2, "Less": 1, "Liquid": 2, +======= + "Processing": 1, + "Emacs Lisp": 2, + "Elm": 3, + "Inform 7": 2, + "XC": 1, + "JSON": 4, + "Scaml": 1, + "Shell": 37, + "Sass": 2, + "Oxygene": 1, + "ATS": 10, + "SCSS": 1, + "R": 7, + "Brightscript": 1, + "HTML": 2, + "Frege": 4, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "Literate Agda": 1, - "Literate CoffeeScript": 1, - "LiveScript": 1, - "Logos": 1, - "Logtalk": 1, "Lua": 3, +<<<<<<< HEAD "M": 29, "MTML": 1, "Makefile": 2, @@ -69995,11 +127378,66 @@ "Scheme": 2, "Scilab": 3, "Shell": 37, - "ShellSession": 3, - "Shen": 3, +======= + "XSLT": 1, + "Zimpl": 1, + "Groovy": 5, + "Ioke": 1, + "Jade": 1, + "TypeScript": 3, + "Erlang": 5, + "ABAP": 1, + "Rebol": 6, + "SuperCollider": 1, + "CoffeeScript": 9, + "PHP": 10, + "MediaWiki": 1, + "Ceylon": 1, + "fish": 3, + "Diff": 1, "Slash": 1, + "Objective-C": 19, + "Stata": 7, + "Shen": 3, + "Mask": 1, + "SAS": 2, + "Xtend": 2, + "Arduino": 1, + "XProc": 1, + "Haml": 1, + "AspectJ": 2, + "RDoc": 1, + "AppleScript": 7, + "Ox": 3, + "STON": 7, + "Scilab": 3, + "Dart": 1, + "Nu": 2, + "Alloy": 3, + "Red": 2, + "BlitzBasic": 3, + "RobotFramework": 3, + "ApacheConf": 3, + "Agda": 1, + "Hy": 2, + "Less": 1, + "Kit": 1, + "E": 6, + "DM": 1, + "OpenCL": 2, +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method + "ShellSession": 3, + "GLSL": 5, + "ECL": 1, + "Makefile": 2, + "Haskell": 3, "Slim": 1, + "Zephir": 2, + "INI": 2, + "OCaml": 2, + "VCL": 2, "Smalltalk": 3, +<<<<<<< HEAD "SourcePawn": 1, "Squirrel": 1, "Standard ML": 5, @@ -70036,4 +127474,58 @@ "wisp": 1 }, "md5": "cedc5d3fde7e7b87467bdf820d674b95" +======= + "Parrot Assembly": 1, + "Protocol Buffer": 1, + "SQL": 5, + "Nemerle": 1, + "Bluespec": 2, + "Swift": 43, + "SourcePawn": 1, + "Propeller Spin": 10, + "Cirru": 9, + "Julia": 1, + "Ragel in Ruby Host": 3, + "JSONiq": 2, + "TeX": 2, + "XQuery": 1, + "RMarkdown": 1, + "Crystal": 3, + "edn": 1, + "PowerShell": 2, + "Game Maker Language": 13, + "Volt": 1, + "Monkey": 1, + "SystemVerilog": 4, + "Grammatical Framework": 41, + "PostScript": 1, + "CSS": 2, + "Forth": 7, + "LFE": 4, + "Moocode": 3, + "Java": 6, + "Turing": 1, + "Kotlin": 1, + "Idris": 1, + "PureScript": 4, + "NetLogo": 1, + "Eagle": 2, + "Common Lisp": 3, + "Parrot Internal Representation": 1, + "Objective-C++": 2, + "Rust": 1, + "Matlab": 39, + "Pan": 1, + "PAWN": 1, + "Ruby": 17, + "C": 29, + "Standard ML": 5, + "Logos": 1, + "Omgrofl": 1, + "Opa": 2, + "Python": 9, + "Handlebars": 2 + }, + "md5": "c6118389c68035913e7562d8a8e6617d" +>>>>>>> 58ae090... Sample files to test the new FileBlob.extension method } \ No newline at end of file diff --git a/samples/PHP/filenames/.php b/samples/PHP/filenames/.php new file mode 100755 index 00000000..be170195 --- /dev/null +++ b/samples/PHP/filenames/.php @@ -0,0 +1,34 @@ +#!/usr/bin/env php + diff --git a/samples/XML/filenames/.cproject b/samples/XML/filenames/.cproject new file mode 100755 index 00000000..5fbff7b7 --- /dev/null +++ b/samples/XML/filenames/.cproject @@ -0,0 +1,542 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From b1ea1fd96f17eeef63cdde09d070fee168325169 Mon Sep 17 00:00:00 2001 From: Paul Chaignon Date: Fri, 20 Jun 2014 23:30:01 +0200 Subject: [PATCH 162/268] Remove stylistic yet useless parentheses --- lib/linguist/language.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/language.rb b/lib/linguist/language.rb index ea586c73..b2245b87 100644 --- a/lib/linguist/language.rb +++ b/lib/linguist/language.rb @@ -191,7 +191,7 @@ module Linguist # Returns all matching Languages or [] if none were found. def self.find_by_filename(filename) basename = File.basename(filename) - extname = FileBlob.new(filename).extension() + extname = FileBlob.new(filename).extension langs = @filename_index[basename] + @extension_index[extname] langs.compact.uniq From f7c42a4e6a58aa21fe310eee54bd259e863c4262 Mon Sep 17 00:00:00 2001 From: Paul Chaignon Date: Sat, 21 Jun 2014 10:16:33 +0200 Subject: [PATCH 163/268] Rename file for the test on non-existing extension --- test/test_language.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_language.rb b/test/test_language.rb index 7c9b6bc0..fa92f38c 100644 --- a/test/test_language.rb +++ b/test/test_language.rb @@ -249,7 +249,7 @@ class TestLanguage < Test::Unit::TestCase assert_equal Language['Nginx'], Language.find_by_filename('nginx.conf').first assert_equal ['C', 'C++', 'Objective-C'], Language.find_by_filename('foo.h').map(&:name).sort assert_equal [], Language.find_by_filename('rb') - assert_equal [], Language.find_by_filename('.nkt') + assert_equal [], Language.find_by_filename('.null') assert_equal [Language['Shell']], Language.find_by_filename('.bashrc') assert_equal [Language['Shell']], Language.find_by_filename('bash_profile') assert_equal [Language['Shell']], Language.find_by_filename('.zshrc') From 126c2147e9f94007969472272aebd74624afc5e4 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Wed, 9 Jul 2014 12:11:25 -0500 Subject: [PATCH 164/268] Checking all files for binary? --- test/test_blob.rb | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/test/test_blob.rb b/test/test_blob.rb index aba82084..fc9e13c5 100644 --- a/test/test_blob.rb +++ b/test/test_blob.rb @@ -140,6 +140,13 @@ class TestBlob < Test::Unit::TestCase assert !blob("Perl/script.pl").binary? end + def test_all_binary + Samples.each do |sample| + blob = blob(sample[:path]) + assert ! (blob.likely_binary? || blob.binary?), "#{sample[:path]} is a binary file" + end + end + def test_text assert blob("Text/README").text? assert blob("Text/dump.sql").text? From 66b4977a67fa97d63e95dea2754e757a57e4a718 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Tue, 15 Jul 2014 11:54:59 -0700 Subject: [PATCH 165/268] Linguist v3.0.4 --- lib/linguist/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/version.rb b/lib/linguist/version.rb index 89151b75..ca873949 100644 --- a/lib/linguist/version.rb +++ b/lib/linguist/version.rb @@ -1,3 +1,3 @@ module Linguist - VERSION = "3.0.3" + VERSION = "3.0.4" end From 963c0b46a0e4918a8829fbdd1dd595faae101207 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Tue, 15 Jul 2014 11:01:41 -0700 Subject: [PATCH 166/268] Modifying Mirah search terms --- lib/linguist/languages.yml | 2 +- test/test_language.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 120cee58..5996fc8c 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1345,7 +1345,7 @@ MiniD: # Legacy Mirah: type: programming lexer: Ruby - search_term: ruby + search_term: mirah color: "#c7a938" extensions: - .druby diff --git a/test/test_language.rb b/test/test_language.rb index fa92f38c..7c81ceef 100644 --- a/test/test_language.rb +++ b/test/test_language.rb @@ -167,7 +167,7 @@ class TestLanguage < Test::Unit::TestCase assert_equal 'pot', Language['Gettext Catalog'].search_term assert_equal 'irc', Language['IRC log'].search_term assert_equal 'lhs', Language['Literate Haskell'].search_term - assert_equal 'ruby', Language['Mirah'].search_term + assert_equal 'mirah', Language['Mirah'].search_term assert_equal 'raw', Language['Raw token data'].search_term assert_equal 'bash', Language['Shell'].search_term assert_equal 'vim', Language['VimL'].search_term From 3f14d15722b1ae7c88a69ff5a80a9e0c58d14799 Mon Sep 17 00:00:00 2001 From: Josh Abernathy Date: Tue, 15 Jul 2014 12:06:55 -0700 Subject: [PATCH 167/268] Most Xcode files have a human-readable diff now! --- lib/linguist/generated.rb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/linguist/generated.rb b/lib/linguist/generated.rb index 761288f0..2074e008 100644 --- a/lib/linguist/generated.rb +++ b/lib/linguist/generated.rb @@ -54,7 +54,7 @@ module Linguist name == 'Gemfile.lock' || minified_files? || compiled_coffeescript? || - xcode_project_file? || + xcode_file? || generated_parser? || generated_net_docfile? || generated_net_designer_file? || @@ -67,14 +67,14 @@ module Linguist generated_by_zephir? end - # Internal: Is the blob an XCode project file? + # Internal: Is the blob an Xcode file? # - # Generated if the file extension is an XCode project + # Generated if the file extension is an Xcode # file extension. # # Returns true of false. - def xcode_project_file? - ['.xib', '.nib', '.storyboard', '.pbxproj', '.xcworkspacedata', '.xcuserstate'].include?(extname) + def xcode_file? + ['.nib', '.pbxproj'].include?(extname) end # Internal: Is the blob minified files? From d72f3fae33804fcee7fe2719a6c70e4f6fee4e70 Mon Sep 17 00:00:00 2001 From: Josh Abernathy Date: Tue, 15 Jul 2014 12:08:23 -0700 Subject: [PATCH 168/268] Actually let's keep those. --- lib/linguist/generated.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/generated.rb b/lib/linguist/generated.rb index 2074e008..a0f3a285 100644 --- a/lib/linguist/generated.rb +++ b/lib/linguist/generated.rb @@ -74,7 +74,7 @@ module Linguist # # Returns true of false. def xcode_file? - ['.nib', '.pbxproj'].include?(extname) + ['.nib', '.pbxproj', '.xcworkspacedata', '.xcuserstate'].include?(extname) end # Internal: Is the blob minified files? From 61c93ab08c6d32f36e425a5b956fa3888faed9f5 Mon Sep 17 00:00:00 2001 From: Josh Abernathy Date: Tue, 15 Jul 2014 12:27:35 -0700 Subject: [PATCH 169/268] pbproj's are cool too. --- lib/linguist/generated.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/linguist/generated.rb b/lib/linguist/generated.rb index a0f3a285..974fc7ae 100644 --- a/lib/linguist/generated.rb +++ b/lib/linguist/generated.rb @@ -74,7 +74,7 @@ module Linguist # # Returns true of false. def xcode_file? - ['.nib', '.pbxproj', '.xcworkspacedata', '.xcuserstate'].include?(extname) + ['.nib', '.xcworkspacedata', '.xcuserstate'].include?(extname) end # Internal: Is the blob minified files? @@ -256,3 +256,4 @@ module Linguist end end end + From f2f9b70659001ac817bdd08729d81a96a444993b Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Tue, 15 Jul 2014 16:13:46 -0700 Subject: [PATCH 170/268] Fixing broken test --- test/test_blob.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_blob.rb b/test/test_blob.rb index fc9e13c5..54e10030 100644 --- a/test/test_blob.rb +++ b/test/test_blob.rb @@ -192,9 +192,9 @@ class TestBlob < Test::Unit::TestCase assert !blob("Text/README").generated? # Xcode project files - assert blob("XML/MainMenu.xib").generated? + assert !blob("XML/MainMenu.xib").generated? assert blob("Binary/MainMenu.nib").generated? - assert blob("XML/project.pbxproj").generated? + assert !blob("XML/project.pbxproj").generated? # Gemfile.locks assert blob("Gemfile.lock").generated? From 47db1cf1ac7d6405ab89ff1044c2e88a3ca02e79 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Tue, 15 Jul 2014 16:24:17 -0700 Subject: [PATCH 171/268] Explictly load FileBlob --- lib/linguist/language.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/linguist/language.rb b/lib/linguist/language.rb index b2245b87..fa1551cb 100644 --- a/lib/linguist/language.rb +++ b/lib/linguist/language.rb @@ -9,6 +9,7 @@ end require 'linguist/classifier' require 'linguist/heuristics' require 'linguist/samples' +require 'linguist/file_blob' module Linguist # Language names that are recognizable by GitHub. Defined languages From 9fa34ab1feafa2b44edbd3db930e87b5ee4faa6f Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Tue, 22 Jul 2014 12:26:09 -0500 Subject: [PATCH 172/268] Fixing BlobHelper loading issue --- lib/linguist/blob_helper.rb | 1 - lib/linguist/language.rb | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/blob_helper.rb b/lib/linguist/blob_helper.rb index 27c4b3dd..ff2c097c 100644 --- a/lib/linguist/blob_helper.rb +++ b/lib/linguist/blob_helper.rb @@ -1,5 +1,4 @@ require 'linguist/generated' -require 'linguist/language' require 'charlock_holmes' require 'escape_utils' diff --git a/lib/linguist/language.rb b/lib/linguist/language.rb index fa1551cb..4b251834 100644 --- a/lib/linguist/language.rb +++ b/lib/linguist/language.rb @@ -10,6 +10,7 @@ require 'linguist/classifier' require 'linguist/heuristics' require 'linguist/samples' require 'linguist/file_blob' +require 'linguist/blob_helper' module Linguist # Language names that are recognizable by GitHub. Defined languages From 8d524d618e7e6db497a63dbac9127334df1decad Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Tue, 22 Jul 2014 14:42:15 -0500 Subject: [PATCH 173/268] Toy example --- lib/linguist/heuristics.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/heuristics.rb b/lib/linguist/heuristics.rb index fa5a97d7..4206ddce 100644 --- a/lib/linguist/heuristics.rb +++ b/lib/linguist/heuristics.rb @@ -42,7 +42,7 @@ module Linguist # Returns an array of Languages or [] def self.disambiguate_c(data, languages) matches = [] - matches << Language["Objective-C"] if data.include?("@interface") + matches << Language["Objective-C"] if data.include?("i") matches << Language["C++"] if data.include?("#include ") matches end From 84ea710d423ea9ba892b2a92104a22357517d77a Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Tue, 22 Jul 2014 15:33:58 -0500 Subject: [PATCH 174/268] Moving linguist detection into rake task and ignoring diff for now. --- Rakefile | 16 ++++++++++------ lib/linguist/heuristics.rb | 2 +- 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/Rakefile b/Rakefile index 3ebbed85..964e95aa 100644 --- a/Rakefile +++ b/Rakefile @@ -26,8 +26,6 @@ end namespace :benchmark do require 'git' require 'linguist/language' - require 'linguist/diff' - require 'json' git = Git.open('.') @@ -59,6 +57,7 @@ namespace :benchmark do git.reset_hard(compare) # RUN BENCHMARK AGAIN + # `rake benchmark:index` Rake::Task["benchmark:index"].execute(:commit => compare) git.branch(current_branch).checkout @@ -73,7 +72,7 @@ namespace :benchmark do desc "Build benchmark index" task :index, [:commit] do |t, args| - require 'shellwords' + require 'linguist/language' results = Hash.new languages = Dir.glob('benchmark/samples/*') @@ -86,12 +85,15 @@ namespace :benchmark do files.each do |file| next unless File.file?(file) puts " #{file}" - result = %x{bundle exec linguist #{Shellwords.escape(file)} --simple} + + blob = Linguist::FileBlob.new(file, Dir.pwd) + result = blob.language + filename = File.basename(file) - if result.chomp.empty? # No results + if result.nil? # No results results[lang][filename] = "No language" else - results[lang][filename] = result.chomp + results[lang][filename] = result.name end end end @@ -101,6 +103,8 @@ namespace :benchmark do desc "Compare results" task :results do + + # `diff -u file1 file2` reference, compare = ENV['compare'].split('...') reference_classifications_file = "benchmark/results/#{reference}_output.json" diff --git a/lib/linguist/heuristics.rb b/lib/linguist/heuristics.rb index 4206ddce..fa5a97d7 100644 --- a/lib/linguist/heuristics.rb +++ b/lib/linguist/heuristics.rb @@ -42,7 +42,7 @@ module Linguist # Returns an array of Languages or [] def self.disambiguate_c(data, languages) matches = [] - matches << Language["Objective-C"] if data.include?("i") + matches << Language["Objective-C"] if data.include?("@interface") matches << Language["C++"] if data.include?("#include ") matches end From 20154eb0493f3cd0d4a2e0039f116c47c1252e8a Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Tue, 22 Jul 2014 16:03:10 -0500 Subject: [PATCH 175/268] Rework diff slightly --- Rakefile | 1 + lib/linguist/diff.rb | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 964e95aa..2786e317 100644 --- a/Rakefile +++ b/Rakefile @@ -26,6 +26,7 @@ end namespace :benchmark do require 'git' require 'linguist/language' + require './lib/linguist/diff' git = Git.open('.') diff --git a/lib/linguist/diff.rb b/lib/linguist/diff.rb index 0cf75182..759fc7e7 100644 --- a/lib/linguist/diff.rb +++ b/lib/linguist/diff.rb @@ -1,4 +1,4 @@ -class Hash +module HashDiff def deep_diff(b) a = self (a.keys | b.keys).inject({}) do |diff, k| @@ -13,3 +13,7 @@ class Hash end end end + +class Hash + include HashDiff +end From 441caa91dd9e06391a7607ed055508e6d291e528 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Wed, 23 Jul 2014 10:34:03 -0500 Subject: [PATCH 176/268] Samples --- lib/linguist/samples.json | 78312 +++++------------------------------- 1 file changed, 10461 insertions(+), 67851 deletions(-) diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index dd56aa42..c78ed491 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -1,9 +1,8 @@ { "extnames": { - "Stylus": [ - ".styl" + "ABAP": [ + ".abap" ], -<<<<<<< HEAD "ATS": [ ".atxt", ".dats", @@ -12,113 +11,56 @@ ], "Agda": [ ".agda" -======= - "IDL": [ - ".dlm", - ".pro" ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], - "OpenEdge ABL": [ - ".cls", - ".p" + "Alloy": [ + ".als" ], - "Latte": [ - ".latte" + "Apex": [ + ".cls" ], - "Racket": [ - ".scrbl" + "AppleScript": [ + ".applescript" ], - "Assembly": [ - ".asm", - ".inc" + "Arduino": [ + ".ino" ], "AsciiDoc": [ ".adoc", ".asc", ".asciidoc" ], - "Gnuplot": [ - ".gnu", - ".gp" + "AspectJ": [ + ".aj" ], -<<<<<<< HEAD "Assembly": [ ".asm" -======= - "Dogescript": [ - ".djs" ], - "Markdown": [ - ".md" ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method - ], - "Perl": [ - ".fcgi", - ".pl", - ".pm", - ".pod", - ".script!", - ".t" - ], - "XML": [ - ".ant", - ".csproj", - ".filters", - ".fsproj", - ".ivy", - ".nproj", - ".pluginspec", - ".targets", - ".vbproj", - ".vcxproj", - ".xml" - ], - "MTML": [ - ".mtml" - ], - "Lasso": [ - ".las", - ".lasso", - ".lasso9", - ".ldml" - ], - "Max": [ - ".maxhelp", - ".maxpat", - ".mxt" + "AutoHotkey": [ + ".ahk" ], "Awk": [ ".awk" ], - "JavaScript": [ - ".frag", - ".js", - ".script!" + "BlitzBasic": [ + ".bb" ], -<<<<<<< HEAD "BlitzMax": [ ".bmx" ], "Bluespec": [ ".bsv" -======= - "Visual Basic": [ - ".cls", - ".vb", - ".vbhtml" ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], - "GAP": [ - ".g", - ".gd", - ".gi" + "Brightscript": [ + ".brs" ], - "Logtalk": [ - ".lgt" + "C": [ + ".c", + ".cats", + ".h" ], - "Scheme": [ - ".sld", - ".sps" + "C#": [ + ".cs", + ".cshtml" ], "C++": [ ".cc", @@ -128,7 +70,6 @@ ".inl", ".ipp" ], -<<<<<<< HEAD "COBOL": [ ".cbl", ".ccp", @@ -140,66 +81,43 @@ ], "Ceylon": [ ".ceylon" -======= - "JSON5": [ - ".json5" ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], - "MoonScript": [ - ".moon" + "Cirru": [ + ".cirru" ], - "Mercury": [ - ".m", - ".moo" + "Clojure": [ + ".cl2", + ".clj", + ".cljc", + ".cljs", + ".cljscm", + ".cljx", + ".hic" ], -<<<<<<< HEAD "CoffeeScript": [ ".coffee" -======= - "Perl6": [ - ".p6", - ".pm6" ], - "VHDL": [ - ".vhd" ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method + "Common Lisp": [ + ".cl", + ".lisp" ], - "Literate CoffeeScript": [ - ".litcoffee" + "Component Pascal": [ + ".cp", + ".cps" ], - "KRL": [ - ".krl" + "Coq": [ + ".v" ], - "Nimrod": [ - ".nim" + "Creole": [ + ".creole" ], - "Pascal": [ - ".dpr" + "Crystal": [ + ".cr" ], - "C#": [ - ".cs", - ".cshtml" - ], -<<<<<<< HEAD -======= - "Groovy Server Pages": [ - ".gsp" - ], - "GAMS": [ - ".gms" - ], - "COBOL": [ - ".cbl", - ".ccp", - ".cob", - ".cpy" - ], ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "Cuda": [ ".cu", ".cuh" ], -<<<<<<< HEAD "DM": [ ".dm" ], @@ -211,89 +129,46 @@ ], "Dogescript": [ ".djs" -======= - "Gosu": [ - ".gs", - ".gst", - ".gsx", - ".vark" ], - "Prolog": [ - ".ecl", - ".pl", - ".prolog" ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method + "E": [ + ".E" ], - "Tcl": [ - ".tm" - ], -<<<<<<< HEAD "ECL": [ ".ecl" ], "Eagle": [ ".brd", ".sch" -======= - "Squirrel": [ - ".nut" ], - "YAML": [ - ".yml" + "Elm": [ + ".elm" ], - "Clojure": [ - ".cl2", - ".clj", - ".cljc", - ".cljs", - ".cljscm", - ".cljx", - ".hic" ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method + "Emacs Lisp": [ + ".el" ], - "Tea": [ - ".tea" + "Erlang": [ + ".erl", + ".escript", + ".script!" ], - "M": [ - ".m" - ], - "NSIS": [ - ".nsh", - ".nsi" - ], -<<<<<<< HEAD "Forth": [ ".forth", ".fth" -======= - "Pod": [ - ".pod" ], - "AutoHotkey": [ - ".ahk" ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method + "Frege": [ + ".fr" ], - "TXL": [ - ".txl" - ], -<<<<<<< HEAD "GAMS": [ ".gms" -======= - "wisp": [ - ".wisp" ], - "Mathematica": [ - ".m" ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method - ], - "Coq": [ - ".v" + "GAP": [ + ".g", + ".gd", + ".gi" ], "GAS": [ ".s" ], -<<<<<<< HEAD "GLSL": [ ".fp", ".frag", @@ -303,95 +178,71 @@ ], "Game Maker Language": [ ".gml" -======= - "Verilog": [ - ".v" ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], - "Apex": [ - ".cls" + "Gnuplot": [ + ".gnu", + ".gp" ], - "Scala": [ - ".sbt", - ".sc", - ".script!" + "Gosu": [ + ".gs", + ".gst", + ".gsx", + ".vark" ], -<<<<<<< HEAD "Grace": [ ".grace" ], "Grammatical Framework": [ ".gf" -======= - "JSONLD": [ - ".jsonld" ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], - "LiveScript": [ - ".ls" + "Groovy": [ + ".gradle", + ".grt", + ".gtpl", + ".gvy", + ".script!" ], - "Org": [ - ".org" + "Groovy Server Pages": [ + ".gsp" ], -<<<<<<< HEAD "HTML": [ ".html", ".st" ], "Haml": [ ".haml" -======= - "Liquid": [ - ".liquid" ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], - "UnrealScript": [ - ".uc" + "Handlebars": [ + ".handlebars", + ".hbs" ], - "Component Pascal": [ - ".cp", - ".cps" + "Haskell": [ + ".hs" ], -<<<<<<< HEAD "Hy": [ ".hy" -======= - "PogoScript": [ - ".pogo" ], - "Creole": [ - ".creole" ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method + "IDL": [ + ".dlm", + ".pro" ], - "Processing": [ - ".pde" - ], - "Emacs Lisp": [ - ".el" - ], - "Elm": [ - ".elm" + "Idris": [ + ".idr" ], "Inform 7": [ ".i7x", ".ni" ], -<<<<<<< HEAD "Ioke": [ ".ik" ], "Isabelle": [ ".thy" -======= - "XC": [ - ".xc" ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], "JSON": [ ".json", ".lock" ], -<<<<<<< HEAD "JSON5": [ ".json5" ], @@ -413,75 +264,55 @@ ".script!", ".xsjs", ".xsjslib" -======= - "Scaml": [ - ".scaml" ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], - "Shell": [ - ".bash", - ".script!", - ".sh", - ".zsh" + "Julia": [ + ".jl" ], -<<<<<<< HEAD "KRL": [ ".krl" ], "Kit": [ ".kit" -======= - "Sass": [ - ".sass", - ".scss" ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], - "Oxygene": [ - ".oxygene" + "Kotlin": [ + ".kt" ], -<<<<<<< HEAD "LFE": [ ".lfe" -======= - "ATS": [ - ".atxt", - ".dats", - ".hats", - ".sats" ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], - "SCSS": [ - ".scss" + "Lasso": [ + ".las", + ".lasso", + ".lasso9", + ".ldml" ], - "R": [ - ".R", - ".Rd", - ".r", - ".rsx", - ".script!" + "Latte": [ + ".latte" ], - "Brightscript": [ - ".brs" + "Less": [ + ".less" ], -<<<<<<< HEAD "Liquid": [ ".liquid" -======= - "HTML": [ - ".html", - ".st" - ], - "Frege": [ - ".fr" ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], "Literate Agda": [ ".lagda" ], + "Literate CoffeeScript": [ + ".litcoffee" + ], + "LiveScript": [ + ".ls" + ], + "Logos": [ + ".xm" + ], + "Logtalk": [ + ".lgt" + ], "Lua": [ ".pd_lua" ], -<<<<<<< HEAD "M": [ ".m" ], @@ -490,90 +321,63 @@ ], "Makefile": [ ".script!" -======= - "XSLT": [ - ".xslt" ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], - "Zimpl": [ - ".zmpl" + "Markdown": [ + ".md" ], - "Groovy": [ - ".gradle", - ".grt", - ".gtpl", - ".gvy", - ".script!" + "Mask": [ + ".mask" ], -<<<<<<< HEAD "Mathematica": [ ".m", ".nb" -======= - "Ioke": [ - ".ik" ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], - "Jade": [ - ".jade" + "Matlab": [ + ".m" ], - "TypeScript": [ - ".ts" - ], - "Erlang": [ - ".erl", - ".escript", - ".script!" - ], - "ABAP": [ - ".abap" - ], - "Rebol": [ - ".r", - ".r2", - ".r3", - ".reb", - ".rebol" - ], - "SuperCollider": [ - ".scd" - ], - "CoffeeScript": [ - ".coffee" - ], -<<<<<<< HEAD - "NSIS": [ - ".nsh", - ".nsi" -======= - "PHP": [ - ".module", - ".php", - ".script!" ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method + "Max": [ + ".maxhelp", + ".maxpat", + ".mxt" ], "MediaWiki": [ ".mediawiki" ], - "Ceylon": [ - ".ceylon" + "Mercury": [ + ".m", + ".moo" ], - "fish": [ - ".fish" + "Monkey": [ + ".monkey" + ], + "Moocode": [ + ".moo" + ], + "MoonScript": [ + ".moon" + ], + "NSIS": [ + ".nsh", + ".nsi" + ], + "Nemerle": [ + ".n" + ], + "NetLogo": [ + ".nlogo" + ], + "Nimrod": [ + ".nim" ], -<<<<<<< HEAD "Nit": [ ".nit" ], "Nix": [ ".nix" -======= - "Diff": [ - ".patch" ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], - "Slash": [ - ".sl" + "Nu": [ + ".nu", + ".script!" ], "OCaml": [ ".eliom", @@ -583,7 +387,6 @@ ".h", ".m" ], -<<<<<<< HEAD "Objective-C++": [ ".mm" ], @@ -638,67 +441,45 @@ ".pod", ".script!", ".t" -======= - "Stata": [ - ".ado", - ".do", - ".doh", - ".ihlp", - ".mata", - ".matah", - ".sthlp" ], - "Shen": [ - ".shen" + "Perl6": [ + ".p6", + ".pm6" ], - "Mask": [ - ".mask" ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method - ], - "SAS": [ - ".sas" - ], -<<<<<<< HEAD "Pike": [ ".pike", ".pmod" -======= - "Xtend": [ - ".xtend" ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], - "Arduino": [ - ".ino" + "Pod": [ + ".pod" ], - "XProc": [ - ".xpl" + "PogoScript": [ + ".pogo" ], - "Haml": [ - ".haml" + "PostScript": [ + ".ps" ], - "AspectJ": [ - ".aj" + "PowerShell": [ + ".ps1", + ".psm1" ], - "RDoc": [ - ".rdoc" + "Processing": [ + ".pde" ], - "AppleScript": [ - ".applescript" + "Prolog": [ + ".ecl", + ".pl", + ".prolog" ], - "Ox": [ - ".ox", - ".oxh", - ".oxo" + "Propeller Spin": [ + ".spin" ], - "STON": [ - ".ston" + "Protocol Buffer": [ + ".proto" ], - "Scilab": [ - ".sce", - ".sci", - ".tst" + "PureScript": [ + ".purs" ], -<<<<<<< HEAD "Python": [ ".py", ".pyde", @@ -709,16 +490,14 @@ ".pri", ".pro", ".script!" -======= - "Dart": [ - ".dart" ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], - "Nu": [ - ".nu", + "R": [ + ".R", + ".Rd", + ".r", + ".rsx", ".script!" ], -<<<<<<< HEAD "RDoc": [ ".rdoc" ], @@ -737,16 +516,11 @@ ".r3", ".reb", ".rebol" -======= - "Alloy": [ - ".als" ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], "Red": [ ".red", ".reds" ], -<<<<<<< HEAD "RobotFramework": [ ".robot" ], @@ -779,160 +553,80 @@ "Sass": [ ".sass", ".scss" -======= - "BlitzBasic": [ - ".bb" ], - "RobotFramework": [ - ".robot" + "Scala": [ + ".sbt", + ".sc", + ".script!" ], - "Agda": [ - ".agda" ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method + "Scaml": [ + ".scaml" ], - "Hy": [ - ".hy" + "Scheme": [ + ".sld", + ".sps" ], - "Less": [ - ".less" + "Scilab": [ + ".sce", + ".sci", + ".tst" ], - "Kit": [ - ".kit" - ], - "E": [ - ".E" - ], -<<<<<<< HEAD "Shell": [ ".bash", ".script!", ".sh", ".zsh" -======= - "DM": [ - ".dm" - ], - "OpenCL": [ - ".cl" ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], "ShellSession": [ ".sh-session" ], - "GLSL": [ - ".fp", - ".frag", - ".glsl" + "Shen": [ + ".shen" ], - "ECL": [ - ".ecl" - ], - "Makefile": [ - ".script!" - ], - "Haskell": [ - ".hs" + "Slash": [ + ".sl" ], "Slim": [ ".slim" ], - "Zephir": [ - ".zep" - ], - "OCaml": [ - ".eliom", - ".ml" - ], - "VCL": [ - ".vcl" - ], "Smalltalk": [ ".st" ], - "Parrot Assembly": [ - ".pasm" - ], - "Protocol Buffer": [ - ".proto" - ], -<<<<<<< HEAD - "Squirrel": [ - ".nut" -======= - "SQL": [ - ".prc", - ".sql", - ".tab", - ".udf", - ".viw" - ], - "Nemerle": [ - ".n" ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method - ], - "Bluespec": [ - ".bsv" - ], - "Swift": [ - ".swift" - ], -<<<<<<< HEAD - "Stylus": [ - ".styl" -======= "SourcePawn": [ ".sp" ], - "Propeller Spin": [ - ".spin" ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method + "Squirrel": [ + ".nut" ], - "Cirru": [ - ".cirru" + "Standard ML": [ + ".ML", + ".fun", + ".sig", + ".sml" ], - "Julia": [ - ".jl" + "Stata": [ + ".ado", + ".do", + ".doh", + ".ihlp", + ".mata", + ".matah", + ".sthlp" ], - "Ragel in Ruby Host": [ - ".rl" + "Stylus": [ + ".styl" ], - "JSONiq": [ - ".jq" + "SuperCollider": [ + ".scd" ], - "TeX": [ - ".cls" - ], - "XQuery": [ - ".xqm" - ], - "RMarkdown": [ - ".rmd" - ], - "Crystal": [ - ".cr" - ], - "edn": [ - ".edn" - ], - "PowerShell": [ - ".ps1", - ".psm1" - ], - "Game Maker Language": [ - ".gml" - ], - "Volt": [ - ".volt" - ], - "Monkey": [ - ".monkey" + "Swift": [ + ".swift" ], "SystemVerilog": [ ".sv", ".svh", ".vh" ], -<<<<<<< HEAD "TXL": [ ".txl" ], @@ -941,29 +635,6 @@ ], "TeX": [ ".cls" -======= - "Grammatical Framework": [ - ".gf" - ], - "PostScript": [ - ".ps" - ], - "CSS": [ - ".css" - ], - "Forth": [ - ".forth", - ".fth" - ], - "LFE": [ - ".lfe" - ], - "Moocode": [ - ".moo" - ], - "Java": [ - ".java" ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], "Tea": [ ".tea" @@ -971,24 +642,15 @@ "Turing": [ ".t" ], -<<<<<<< HEAD "TypeScript": [ ".ts" -======= - "Kotlin": [ - ".kt" ], - "Idris": [ - ".idr" ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method + "UnrealScript": [ + ".uc" ], - "PureScript": [ - ".purs" + "VCL": [ + ".vcl" ], - "NetLogo": [ - ".nlogo" - ], -<<<<<<< HEAD "VHDL": [ ".vhd" ], @@ -999,23 +661,10 @@ ".cls", ".vb", ".vbhtml" -======= - "Eagle": [ - ".brd", - ".sch" ], - "Common Lisp": [ - ".cl", - ".lisp" + "Volt": [ + ".volt" ], - "Parrot Internal Representation": [ - ".pir" ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method - ], - "Objective-C++": [ - ".mm" - ], -<<<<<<< HEAD "XC": [ ".xc" ], @@ -1027,42 +676,21 @@ ".ivy", ".nproj", ".nuspec", -======= - "Rust": [ - ".rs" - ], - "Matlab": [ - ".m" - ], - "Pan": [ - ".pan" - ], - "PAWN": [ - ".pwn" - ], - "Ruby": [ ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ".pluginspec", - ".rabl", - ".rake", - ".rb", - ".script!" + ".targets", + ".vbproj", + ".vcxproj", + ".xml" ], - "C": [ - ".c", - ".cats", - ".h" + "XProc": [ + ".xpl" ], - "Standard ML": [ - ".ML", - ".fun", - ".sig", - ".sml" + "XQuery": [ + ".xqm" ], - "Logos": [ - ".xm" + "XSLT": [ + ".xslt" ], -<<<<<<< HEAD "Xojo": [ ".xojo_code", ".xojo_menu", @@ -1073,20 +701,13 @@ ], "Xtend": [ ".xtend" -======= - "Omgrofl": [ - ".omgrofl" ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], - "Opa": [ - ".opa" + "YAML": [ + ".yml" ], - "Python": [ - ".py", - ".pyde", - ".script!" + "Zephir": [ + ".zep" ], -<<<<<<< HEAD "Zimpl": [ ".zmpl" ], @@ -1098,40 +719,41 @@ ], "wisp": [ ".wisp" -======= - "Handlebars": [ - ".handlebars", - ".hbs" ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ] }, "interpreters": { }, "filenames": { + "ApacheConf": [ + ".htaccess", + "apache2.conf", + "httpd.conf" + ], + "INI": [ + ".editorconfig", + ".gitconfig" + ], + "Makefile": [ + "Makefile" + ], "Nginx": [ "nginx.conf" ], + "PHP": [ + ".php" + ], "Perl": [ "ack" ], - "XML": [ - ".cproject" + "R": [ + "expr-dist" ], -<<<<<<< HEAD "Ruby": [ ".pryrc", "Appraisals", "Capfile", "Rakefile" -======= - "YAML": [ - ".gemrc" - ], - "VimL": [ - ".gvimrc", - ".vimrc" ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ], "Shell": [ ".bash_logout", @@ -1159,10 +781,13 @@ "zshenv", "zshrc" ], - "R": [ - "expr-dist" + "VimL": [ + ".gvimrc", + ".vimrc" + ], + "XML": [ + ".cproject" ], -<<<<<<< HEAD "YAML": [ ".gemrc" ], @@ -1172,169 +797,248 @@ "exception.zep.php" ] }, - "tokens_total": 629226, - "languages_total": 867, -======= - "PHP": [ - ".php" - ], - "ApacheConf": [ - ".htaccess", - "apache2.conf", - "httpd.conf" - ], - "Makefile": [ - "Makefile" - ], - "INI": [ - ".editorconfig", - ".gitconfig" - ], - "Ruby": [ - "Appraisals", - "Capfile", - "Rakefile" - ] - }, - "tokens_total": 637393, - "languages_total": 818, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method + "tokens_total": 630435, + "languages_total": 869, "tokens": { - "Stylus": { - "border": 6, - "-": 10, - "radius": 5, - "(": 1, - ")": 1, - "webkit": 1, - "arguments": 3, - "moz": 1, - "a.button": 1, - "px": 5, - "fonts": 2, - "helvetica": 1, - "arial": 1, - "sans": 1, - "serif": 1, - "body": 1, - "{": 1, - "padding": 3, - ";": 2, - "font": 1, - "px/1.4": 1, - "}": 1, - "form": 2, - "input": 2, - "[": 2, - "type": 2, - "text": 2, - "]": 2, - "solid": 1, - "#eee": 1, - "color": 2, - "#ddd": 1, - "textarea": 1, - "@extends": 2, - "foo": 2, - "#FFF": 1, - ".bar": 1, - "background": 1, - "#000": 1 - }, - "IDL": { - "MODULE": 1, - "mg_analysis": 1, - "DESCRIPTION": 1, - "Tools": 1, - "for": 2, - "analysis": 1, - "VERSION": 1, - "SOURCE": 1, - "mgalloy": 1, - "BUILD_DATE": 1, - "January": 1, - "FUNCTION": 2, - "MG_ARRAY_EQUAL": 1, - "KEYWORDS": 1, - "MG_TOTAL": 1, - ";": 59, - "docformat": 3, - "+": 8, - "Find": 1, - "the": 7, - "greatest": 1, - "common": 1, - "denominator": 1, - "(": 26, - "GCD": 1, - ")": 26, - "two": 1, - "positive": 2, - "integers.": 1, - "Returns": 3, - "integer": 5, - "Params": 3, - "a": 4, - "in": 4, - "required": 4, - "type": 5, - "first": 1, - "b": 4, - "second": 1, - "-": 14, - "function": 4, - "mg_gcd": 2, - "compile_opt": 3, - "strictarr": 3, - "on_error": 1, - "if": 5, - "n_params": 1, - "ne": 1, - "then": 5, - "message": 2, - "mg_isinteger": 2, - "||": 1, - "begin": 2, - "endif": 2, - "_a": 3, - "abs": 2, - "_b": 3, - "minArg": 5, + "ABAP": { + "*/**": 1, + "*": 56, + "The": 2, + "MIT": 2, + "License": 1, + "(": 8, + ")": 8, + "Copyright": 1, + "c": 3, + "Ren": 1, + "van": 1, + "Mil": 1, + "Permission": 1, + "is": 2, + "hereby": 1, + "granted": 1, + "free": 1, + "of": 6, + "charge": 1, + "to": 10, + "any": 1, + "person": 1, + "obtaining": 1, + "a": 1, + "copy": 2, + "this": 2, + "software": 1, + "and": 3, + "associated": 1, + "documentation": 1, + "files": 4, + "the": 10, + "deal": 1, + "in": 3, + "Software": 3, + "without": 2, + "restriction": 1, + "including": 1, + "limitation": 1, + "rights": 1, + "use": 1, + "modify": 1, + "merge": 1, + "publish": 1, + "distribute": 1, + "sublicense": 1, + "and/or": 1, + "sell": 1, + "copies": 2, + "permit": 1, + "persons": 1, + "whom": 1, + "furnished": 1, + "do": 4, + "so": 1, + "subject": 1, + "following": 1, + "conditions": 1, + "above": 1, + "copyright": 1, + "notice": 2, + "permission": 1, + "shall": 1, + "be": 1, + "included": 1, + "all": 1, + "or": 1, + "substantial": 1, + "portions": 1, + "Software.": 1, + "THE": 6, + "SOFTWARE": 2, + "IS": 1, + "PROVIDED": 1, + "WITHOUT": 1, + "WARRANTY": 1, + "OF": 4, + "ANY": 2, + "KIND": 1, + "EXPRESS": 1, + "OR": 7, + "IMPLIED": 1, + "INCLUDING": 1, + "BUT": 1, + "NOT": 1, + "LIMITED": 1, + "TO": 2, + "WARRANTIES": 1, + "MERCHANTABILITY": 1, + "FITNESS": 1, + "FOR": 2, + "A": 1, + "PARTICULAR": 1, + "PURPOSE": 1, + "AND": 1, + "NONINFRINGEMENT.": 1, + "IN": 4, + "NO": 1, + "EVENT": 1, + "SHALL": 1, + "AUTHORS": 1, + "COPYRIGHT": 1, + "HOLDERS": 1, + "BE": 1, + "LIABLE": 1, + "CLAIM": 1, + "DAMAGES": 1, + "OTHER": 2, + "LIABILITY": 1, + "WHETHER": 1, + "AN": 1, + "ACTION": 1, + "CONTRACT": 1, + "TORT": 1, + "OTHERWISE": 1, + "ARISING": 1, + "FROM": 1, + "OUT": 1, + "CONNECTION": 1, + "WITH": 1, + "USE": 1, + "DEALINGS": 1, + "SOFTWARE.": 1, + "*/": 1, + "-": 978, + "CLASS": 2, + "CL_CSV_PARSER": 6, + "DEFINITION": 2, + "class": 2, + "cl_csv_parser": 2, + "definition": 1, + "public": 3, + "inheriting": 1, + "from": 1, + "cl_object": 1, + "final": 1, + "create": 1, + ".": 9, + "section.": 3, + "not": 3, + "include": 3, + "other": 3, + "source": 3, + "here": 3, + "type": 11, + "pools": 1, + "abap": 1, + "methods": 2, + "constructor": 2, + "importing": 1, + "delegate": 1, + "ref": 1, + "if_csv_parser_delegate": 1, + "csvstring": 1, + "string": 1, + "separator": 1, + "skip_first_line": 1, + "abap_bool": 2, + "parse": 2, + "raising": 1, + "cx_csv_parse_error": 2, + "protected": 1, + "private": 1, + "constants": 1, + "_textindicator": 1, + "value": 2, + "IMPLEMENTATION": 2, + "implementation.": 1, + "": 2, + "+": 9, + "|": 7, + "Instance": 2, + "Public": 1, + "Method": 2, + "CONSTRUCTOR": 1, + "[": 5, + "]": 5, + "DELEGATE": 1, + "TYPE": 5, + "REF": 1, + "IF_CSV_PARSER_DELEGATE": 1, + "CSVSTRING": 1, + "STRING": 1, + "SEPARATOR": 1, + "C": 1, + "SKIP_FIRST_LINE": 1, + "ABAP_BOOL": 1, + "": 2, + "method": 2, + "constructor.": 1, + "super": 1, + "_delegate": 1, + "delegate.": 1, + "_csvstring": 2, + "csvstring.": 1, + "_separator": 1, + "separator.": 1, + "_skip_first_line": 1, + "skip_first_line.": 1, + "endmethod.": 2, + "Get": 1, + "lines": 4, + "data": 3, + "is_first_line": 1, + "abap_true.": 2, + "standard": 2, + "table": 3, + "string.": 3, + "_lines": 1, + "field": 1, + "symbols": 1, + "": 3, + "loop": 1, + "at": 2, + "assigning": 1, + "Parse": 1, + "line": 1, + "values": 2, + "_parse_line": 2, + "Private": 1, + "_LINES": 1, "<": 1, - "maxArg": 3, - "eq": 2, - "return": 5, - "remainder": 3, - "mod": 1, - "end": 5, - "Inverse": 1, - "hyperbolic": 2, - "cosine.": 1, - "Uses": 1, - "formula": 1, - "text": 1, - "{": 3, - "acosh": 1, - "}": 3, - "z": 9, - "ln": 1, - "sqrt": 4, - "Examples": 2, - "The": 1, - "arc": 1, - "sine": 1, - "looks": 1, - "like": 2, - "IDL": 5, - "x": 8, - "*": 2, - "findgen": 1, - "/": 1, - "plot": 1, - "mg_acosh": 2, - "xstyle": 1, + "RETURNING": 1, + "STRINGTAB": 1, + "_lines.": 1, + "split": 1, + "cl_abap_char_utilities": 1, + "cr_lf": 1, + "into": 6, + "returning.": 1, + "Space": 2, + "concatenate": 4, + "csvvalue": 6, + "csvvalue.": 5, + "else.": 4, + "char": 2, + "endif.": 6, "This": 1, -<<<<<<< HEAD "indicates": 1, "an": 1, "error": 1, @@ -3481,662 +3185,6 @@ "All": 1, "rights": 1, "reserved.": 1, -======= - "should": 1, - "look": 1, - "..": 1, - "image": 1, - "acosh.png": 1, - "float": 1, - "double": 2, - "complex": 2, - "or": 1, - "depending": 1, - "on": 1, - "input": 2, - "numeric": 1, - "alog": 1, - "Truncate": 1, - "argument": 2, - "towards": 1, - "i.e.": 1, - "takes": 1, - "FLOOR": 1, - "of": 4, - "values": 2, - "and": 1, - "CEIL": 1, - "negative": 1, - "values.": 1, - "Try": 1, - "main": 2, - "level": 2, - "program": 2, - "at": 1, - "this": 1, - "file.": 1, - "It": 1, - "does": 1, - "print": 4, - "mg_trunc": 3, - "[": 6, - "]": 6, - "floor": 2, - "ceil": 2, - "array": 2, - "same": 1, - "as": 1, - "float/double": 1, - "containing": 1, - "to": 1, - "truncate": 1, - "result": 3, - "posInd": 3, - "where": 1, - "gt": 2, - "nposInd": 2, - "L": 1, - "example": 1 - }, - "OpenEdge ABL": { - "DEFINE": 16, - "INPUT": 11, - "PARAMETER": 3, - "objSendEmailAlg": 2, - "AS": 21, - "email.SendEmailSocket": 1, - "NO": 13, - "-": 73, - "UNDO.": 12, - "VARIABLE": 12, - "vbuffer": 9, - "MEMPTR": 2, - "vstatus": 1, - "LOGICAL": 1, - "vState": 2, - "INTEGER": 6, - "ASSIGN": 2, - "vstate": 1, - "FUNCTION": 1, - "getHostname": 1, - "RETURNS": 1, - "CHARACTER": 9, - "(": 44, - ")": 44, - "cHostname": 1, - "THROUGH": 1, - "hostname": 1, - "ECHO.": 1, - "IMPORT": 1, - "UNFORMATTED": 1, - "cHostname.": 2, - "CLOSE.": 1, - "RETURN": 7, - "END": 12, - "FUNCTION.": 1, - "PROCEDURE": 2, - "newState": 2, - "INTEGER.": 1, - "pstring": 4, - "CHARACTER.": 1, - "newState.": 1, - "IF": 2, - "THEN": 2, - "RETURN.": 1, - "SET": 5, - "SIZE": 5, - "LENGTH": 3, - "+": 21, - "PUT": 1, - "STRING": 7, - "pstring.": 1, - "SELF": 4, - "WRITE": 1, - ".": 14, - "PROCEDURE.": 2, - "ReadSocketResponse": 1, - "vlength": 5, - "str": 3, - "v": 1, - "MESSAGE": 2, - "GET": 3, - "BYTES": 2, - "AVAILABLE": 2, - "VIEW": 1, - "ALERT": 1, - "BOX.": 1, - "DO": 2, - "READ": 1, - "handleResponse": 1, - "END.": 2, - "USING": 3, - "Progress.Lang.*.": 3, - "CLASS": 2, - "email.Email": 2, - "USE": 2, - "WIDGET": 2, - "POOL": 2, - "&": 3, - "SCOPED": 1, - "QUOTES": 1, - "@#": 1, - "%": 2, - "*": 2, - "._MIME_BOUNDARY_.": 1, - "#@": 1, - "WIN": 1, - "From": 4, - "To": 8, - "CC": 2, - "BCC": 2, - "Personal": 1, - "Private": 1, - "Company": 2, - "confidential": 2, - "normal": 1, - "urgent": 2, - "non": 1, - "Cannot": 3, - "locate": 3, - "file": 6, - "in": 3, - "the": 3, - "filesystem": 3, - "R": 3, - "File": 3, - "exists": 3, - "but": 3, - "is": 3, - "not": 3, - "readable": 3, - "Error": 3, - "copying": 3, - "from": 3, - "<\">": 8, - "ttSenders": 2, - "cEmailAddress": 8, - "n": 13, - "ttToRecipients": 1, - "Reply": 3, - "ttReplyToRecipients": 1, - "Cc": 2, - "ttCCRecipients": 1, - "Bcc": 2, - "ttBCCRecipients": 1, - "Return": 1, - "Receipt": 1, - "ttDeliveryReceiptRecipients": 1, - "Disposition": 3, - "Notification": 1, - "ttReadReceiptRecipients": 1, - "Subject": 2, - "Importance": 3, - "H": 1, - "High": 1, - "L": 1, - "Low": 1, - "Sensitivity": 2, - "Priority": 2, - "Date": 4, - "By": 1, - "Expiry": 2, - "Mime": 1, - "Version": 1, - "Content": 10, - "Type": 4, - "multipart/mixed": 1, - ";": 5, - "boundary": 1, - "text/plain": 2, - "charset": 2, - "Transfer": 4, - "Encoding": 4, - "base64": 2, - "bit": 2, - "application/octet": 1, - "stream": 1, - "attachment": 2, - "filename": 2, - "ttAttachments.cFileName": 2, - "cNewLine.": 1, - "lcReturnData.": 1, - "METHOD.": 6, - "METHOD": 6, - "PUBLIC": 6, - "send": 1, - "objSendEmailAlgorithm": 1, - "sendEmail": 2, - "THIS": 1, - "OBJECT": 2, - "CLASS.": 2, - "INTERFACE": 1, - "email.SendEmailAlgorithm": 1, - "ipobjEmail": 1, - "INTERFACE.": 1, - "email.Util": 1, - "FINAL": 1, - "PRIVATE": 1, - "STATIC": 5, - "cMonthMap": 2, - "EXTENT": 1, - "INITIAL": 1, - "[": 2, - "]": 2, - "ABLDateTimeToEmail": 3, - "ipdttzDateTime": 6, - "DATETIME": 3, - "TZ": 2, - "DAY": 1, - "MONTH": 1, - "YEAR": 1, - "TRUNCATE": 2, - "MTIME": 1, - "/": 2, - "ABLTimeZoneToString": 2, - "TIMEZONE": 1, - "ipdtDateTime": 2, - "ipiTimeZone": 3, - "ABSOLUTE": 1, - "MODULO": 1, - "LONGCHAR": 4, - "ConvertDataToBase64": 1, - "iplcNonEncodedData": 2, - "lcPreBase64Data": 4, - "lcPostBase64Data": 3, - "mptrPostBase64Data": 3, - "i": 3, - "COPY": 1, - "LOB": 1, - "FROM": 1, - "TO": 2, - "mptrPostBase64Data.": 1, - "BASE64": 1, - "ENCODE": 1, - "BY": 1, - "SUBSTRING": 1, - "CHR": 2, - "lcPostBase64Data.": 1 - }, - "Latte": { - "{": 54, - "**": 1, - "*": 4, - "@param": 3, - "string": 2, - "basePath": 1, - "web": 1, - "base": 1, - "path": 1, - "robots": 2, - "tell": 1, - "how": 1, - "to": 2, - "index": 1, - "the": 1, - "content": 1, - "of": 3, - "a": 4, - "page": 1, - "(": 18, - "optional": 1, - ")": 18, - "array": 1, - "flashes": 1, - "flash": 3, - "messages": 1, - "}": 54, - "": 1, - "html": 1, - "": 1, - "": 1, - "": 6, - "charset=": 1, - "name=": 4, - "content=": 5, - "n": 8, - "ifset=": 1, - "http": 1, - "equiv=": 1, - "": 1, - "ifset": 1, - "title": 4, - "/ifset": 1, - "Translation": 1, - "report": 1, - "": 1, - "": 2, - "rel=": 2, - "media=": 1, - "href=": 4, - "": 3, - "block": 3, - "#head": 1, - "/block": 3, - "": 1, - "": 1, - "class=": 12, - "document.documentElement.className": 1, - "+": 3, - "#navbar": 1, - "include": 3, - "_navbar.latte": 1, - "
": 6, - "inner": 1, - "foreach=": 3, - "_flash.latte": 1, - "
": 7, - "#content": 1, - "
": 1, - "
": 1, - "src=": 1, - "#scripts": 1, - "": 1, - "": 1, - "var": 3, - "define": 1, - "author": 7, - "": 2, - "Author": 2, - "authorId": 2, - "-": 71, - "id": 3, - "black": 2, - "avatar": 2, - "img": 2, - "rounded": 2, - "class": 2, - "tooltip": 4, - "Total": 1, - "time": 4, - "shortName": 1, - "translated": 4, - "on": 5, - "all": 1, - "videos.": 1, - "amaraCallbackLink": 1, - "row": 2, - "col": 3, - "md": 2, - "outOf": 5, - "done": 7, - "threshold": 4, - "alert": 2, - "warning": 2, - "<=>": 2, - "Seems": 1, - "complete": 1, - "|": 6, - "out": 1, - "

": 2, - "elseif": 2, - "<": 1, - "p": 1, - "if": 7, - "Although": 1, - "is": 1, - "there": 1, - "are": 1, - "no": 1, - "English": 1, - "subtitles": 1, - "for": 1, - "comparison.": 1, - "/if": 8, - "/cache": 1, - "editor": 1, - "ksid": 2, - "new": 5, - "video": 2, - "siteId": 1, - "Video": 1, - "khanovaskola.cz": 1, - "revision": 18, - "rev": 4, - "this": 3, - "older": 1, - "#": 2, - "else": 2, - "newer": 1, - "
": 1, - "

": 1, - "diffs": 3, - "noescape": 2, - "

": 1, - "description": 1, - "text": 4, - "as": 2, - "line": 3, - "context": 1, - "splitter": 1, - "template": 1, - "bottom": 1, - "Expand": 1, - "fa": 16, - "sort": 1, - "ellipsis": 1, - "h": 1, - "success": 1, - "amaraEdit": 1, - "amaraId": 2, - "editButton": 1, - "btn": 17, - "default": 6, - "edit": 1, - "khanAcademy": 1, - "kaButton": 1, - "link": 1, - "info": 1, - "group": 4, - "approve": 1, - "thumbs": 3, - "up": 1, - "markIncomplete": 2, - "down": 2, - "redirectToAdd": 1, - "plus": 1, - "square": 1, - "table": 2, - "condensed": 1, - "revisions": 1, - "revId": 1, - "secondary": 2, - "Percent": 1, - "lines": 1, - "&": 1, - "thinsp": 1, - "%": 1, - "": 3, - "": 3, - "": 2, - "incomplete": 3, - "approved": 2, - "": 1, - "user": 1, - "loggedIn": 1, - "&&": 1, - "comments": 2, - "count": 1, - "": 2, - "": 2, - "colspan=": 1, - "": 1, - "comment": 4, - "left": 1, - "createdAt": 1, - "timeAgo": 1, - "noborder": 1, - "input": 3, - "form": 1, - "control": 1, - "Comment": 1, - "only": 1, - "visible": 1, - "other": 1, - "editors": 1, - "save": 1, - "share": 1, - "": 1, - "": 1, - "/form": 1, - "/foreach": 1, - "
": 1 - }, - "Racket": { - ";": 3, - "Clean": 1, - "simple": 1, - "and": 1, - "efficient": 1, - "code": 1, - "-": 94, - "that": 2, - "s": 1, - "the": 3, - "power": 1, - "of": 4, - "Racket": 2, - "http": 1, - "//racket": 1, - "lang.org/": 1, - "(": 23, - "define": 1, - "bottles": 4, - "n": 8, - "more": 2, - ")": 23, - "printf": 2, - "case": 1, - "[": 16, - "]": 16, - "else": 1, - "if": 1, - "for": 2, - "in": 3, - "range": 1, - "sub1": 1, - "displayln": 2, - "#lang": 1, - "scribble/manual": 1, - "@": 3, - "require": 1, - "scribble/bnf": 1, - "@title": 1, - "{": 2, - "Scribble": 3, - "The": 1, - "Documentation": 1, - "Tool": 1, - "}": 2, - "@author": 1, - "is": 3, - "a": 1, - "collection": 1, - "tools": 1, - "creating": 1, - "prose": 2, - "documents": 1, - "papers": 1, - "books": 1, - "library": 1, - "documentation": 1, - "etc.": 1, - "HTML": 1, - "or": 2, - "PDF": 1, - "via": 1, - "Latex": 1, - "form.": 1, - "More": 1, - "generally": 1, - "helps": 1, - "you": 1, - "write": 1, - "programs": 1, - "are": 1, - "rich": 1, - "textual": 1, - "content": 2, - "whether": 1, - "to": 2, - "be": 2, - "typeset": 1, - "any": 1, - "other": 1, - "form": 1, - "text": 1, - "generated": 1, - "programmatically.": 1, - "This": 1, - "document": 1, - "itself": 1, - "written": 1, - "using": 1, - "Scribble.": 1, - "You": 1, - "can": 1, - "see": 1, - "its": 1, - "source": 1, - "at": 1, - "let": 1, - "url": 3, - "link": 1, - "starting": 1, - "with": 1, - "@filepath": 1, - "scribble.scrbl": 1, - "file.": 1, - "@table": 1, - "contents": 1, - "@include": 8, - "section": 9, - "@index": 1 - }, - "Assembly": { - ";": 20, - "flat": 4, - "assembler": 6, - "interface": 2, - "for": 2, - "Win32": 2, - "Copyright": 4, - "(": 13, - "c": 4, - ")": 6, - "-": 87, - "Tomasz": 4, - "Grysztar.": 4, - "All": 4, - "rights": 4, - "reserved.": 4, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "format": 1, "PE": 1, "console": 1, @@ -4145,7 +3193,6 @@ "readable": 4, "executable": 1, "start": 1, -<<<<<<< HEAD "mov": 28, "[": 25, "con_handle": 2, @@ -4169,38 +3216,12 @@ "additional_memory": 1, "shr": 1, "display_number": 5, -======= - "mov": 1253, - "[": 2026, - "con_handle": 8, - "]": 2026, - "STD_OUTPUT_HANDLE": 2, - "esi": 619, - "_logo": 2, - "call": 845, - "display_string": 19, - "get_params": 2, - "jc": 28, - "information": 2, - "init_memory": 2, - "_memory_prefix": 2, - "eax": 510, - "memory_end": 7, - "sub": 64, - "memory_start": 4, - "add": 76, - "additional_memory_end": 9, - "additional_memory": 6, - "shr": 30, - "display_number": 8, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "_memory_suffix": 2, "GetTickCount": 3, "start_time": 3, "preprocessor": 1, "parser": 1, "formatter": 1, -<<<<<<< HEAD "display_user_messages": 1, "movzx": 1, "current_pass": 1, @@ -4237,83 +3258,30 @@ "cmp": 31, "h": 18, "je": 25, -======= - "display_user_messages": 3, - "movzx": 13, - "current_pass": 16, - "inc": 87, - "_passes_suffix": 2, - "xor": 52, - "edx": 219, - "ebx": 336, - "div": 8, - "or": 194, - "jz": 107, - "display_bytes_count": 2, - "push": 150, - "dl": 58, - "display_character": 6, - "pop": 99, - "_seconds_suffix": 2, - "written_size": 1, - "_bytes_suffix": 2, - "al": 1174, - "jmp": 450, - "exit_program": 5, - "_usage": 2, - "input_file": 4, - "output_file": 3, - "symbols_file": 4, - "memory_setting": 4, - "passes_limit": 3, - "GetCommandLine": 2, - "edi": 250, - "params": 2, - "find_command_start": 2, - "lodsb": 12, - "cmp": 1088, - "h": 376, - "je": 485, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "skip_quoted_name": 3, "skip_name": 2, "find_param": 7, "all_params": 5, "option_param": 2, -<<<<<<< HEAD "Dh": 15, "jne": 3, -======= - "Dh": 19, - "jne": 485, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "get_output_file": 2, "process_param": 3, "bad_params": 11, "string_param": 3, "copy_param": 2, -<<<<<<< HEAD "stosb": 3, -======= - "stosb": 6, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "param_end": 6, "string_param_end": 2, "memory_option": 4, "passes_option": 4, "symbols_option": 3, -<<<<<<< HEAD "stc": 2, "ret": 4, -======= - "stc": 9, - "ret": 70, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "get_option_value": 3, "get_option_digit": 2, "option_value_ok": 4, "invalid_option_value": 5, -<<<<<<< HEAD "ja": 2, "imul": 1, "jo": 1, @@ -4322,22 +3290,11 @@ "shl": 1, "jae": 1, "dx": 1, -======= - "ja": 28, - "imul": 1, - "jo": 2, - "dec": 30, - "clc": 11, - "shl": 17, - "jae": 34, - "dx": 27, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "find_symbols_file_name": 2, "include": 15, "data": 3, "writeable": 2, "_copyright": 1, -<<<<<<< HEAD "db": 30, "Ah": 9, "VERSION_STRING": 1, @@ -4350,26 +3307,11 @@ "rb": 4, "options": 1, "buffer": 1, -======= - "db": 35, - "Ah": 25, - "VERSION_STRING": 1, - "align": 1, - "dd": 22, - "bytes_count": 8, - "displayed_count": 4, - "character": 3, - "last_displayed": 5, - "rb": 4, - "options": 1, - "buffer": 14, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "stack": 1, "import": 1, "rva": 16, "kernel_name": 2, "kernel_table": 2, -<<<<<<< HEAD "ExitProcess": 1, "_ExitProcess": 2, "CreateFile": 1, @@ -30048,6087 +28990,35 @@ "scrollTo": 1, "CSS1Compat": 1, "client": 3, -======= - "ExitProcess": 2, - "_ExitProcess": 2, - "CreateFile": 3, - "_CreateFileA": 2, - "ReadFile": 2, - "_ReadFile": 2, - "WriteFile": 6, - "_WriteFile": 2, - "CloseHandle": 2, - "_CloseHandle": 2, - "SetFilePointer": 2, - "_SetFilePointer": 2, - "_GetCommandLineA": 2, - "GetEnvironmentVariable": 2, - "_GetEnvironmentVariable": 2, - "GetStdHandle": 5, - "_GetStdHandle": 2, - "VirtualAlloc": 2, - "_VirtualAlloc": 2, - "VirtualFree": 2, - "_VirtualFree": 2, - "_GetTickCount": 2, - "GetSystemTime": 2, - "_GetSystemTime": 2, - "GlobalMemoryStatus": 2, - "_GlobalMemoryStatus": 2, - "dw": 14, - "fixups": 1, - "discardable": 1, - "CREATE_NEW": 1, - "CREATE_ALWAYS": 2, - "OPEN_EXISTING": 2, - "OPEN_ALWAYS": 1, - "TRUNCATE_EXISTING": 1, - "FILE_SHARE_READ": 3, - "FILE_SHARE_WRITE": 1, - "FILE_SHARE_DELETE": 1, - "GENERIC_READ": 2, - "GENERIC_WRITE": 2, - "STD_INPUT_HANDLE": 1, - "FFFFFFF6h": 1, - "FFFFFFF5h": 1, - "STD_ERROR_HANDLE": 3, - "FFFFFFF4h": 1, - "MEM_COMMIT": 2, - "MEM_RESERVE": 1, - "MEM_DECOMMIT": 1, - "MEM_RELEASE": 2, - "MEM_FREE": 1, - "MEM_PRIVATE": 1, - "MEM_MAPPED": 1, - "MEM_RESET": 1, - "MEM_TOP_DOWN": 1, - "PAGE_NOACCESS": 1, - "PAGE_READONLY": 1, - "PAGE_READWRITE": 2, - "PAGE_WRITECOPY": 1, - "PAGE_EXECUTE": 1, - "PAGE_EXECUTE_READ": 1, - "PAGE_EXECUTE_READWRITE": 1, - "PAGE_EXECUTE_WRITECOPY": 1, - "PAGE_GUARD": 1, - "PAGE_NOCACHE": 1, - "esp": 14, - "and": 50, - "not": 42, - "FFFh": 3, - "stack_limit": 2, - "jnz": 125, - "allocate_memory": 4, - "dword": 87, - "+": 232, - "jl": 13, - "large_memory": 3, - "ecx": 153, - "not_enough_memory": 2, - "jb": 34, - "out_of_memory": 19, - "test": 95, - "do_exit": 2, - "get_environment_variable": 1, - "jbe": 11, - "buffer_for_variable_ok": 2, - "open": 2, - "file_error": 6, - "create": 1, - "write": 1, - "read": 3, - "ebp": 49, - "close": 3, - "lseek": 5, - "repne": 1, - "scasb": 1, - "neg": 4, - "bl": 124, - "display_loop": 2, - "display_digit": 3, - "digit_ok": 2, - "show_display_buffer": 2, - "line_break_ok": 4, - "make_line_break": 2, - "ax": 87, - "word": 79, - "A0Dh": 2, - "D0Ah": 1, - "display_block": 4, - "take_last_two_characters": 2, - "block_displayed": 2, - "ah": 229, - "block_ok": 2, - "fatal_error": 1, - "error_prefix": 3, - "error_suffix": 3, - "FFh": 4, - "assembler_error": 1, - "current_line": 24, - "get_error_lines": 2, - "byte": 549, - "get_next_error_line": 2, - "display_error_line": 3, - "find_definition_origin": 2, - "line_number_start": 3, - "FFFFFFFh": 2, - "line_number_ok": 2, - "line_data_start": 2, - "line_data_displayed": 2, - "lea": 8, - "get_line_data": 2, - "display_line_data": 5, - "loop": 2, - "cr_lf": 2, - "make_timestamp": 1, - "mul": 5, - "months_correction": 2, - "day_correction_ok": 4, - "b": 30, - "day_correction": 2, - "adc": 9, - "core": 2, - "simple_instruction_except64": 1, - "code_type": 106, - "illegal_instruction": 48, - "simple_instruction": 6, - "stos": 107, - "instruction_assembled": 138, - "simple_instruction_only64": 1, - "simple_instruction_16bit_except64": 1, - "simple_instruction_16bit": 2, - "size_prefix": 3, - "simple_instruction_32bit_except64": 1, - "simple_instruction_32bit": 6, - "iret_instruction": 1, - "simple_instruction_64bit": 2, - "simple_extended_instruction_64bit": 1, - "simple_extended_instruction": 1, - "Fh": 73, - "prefix_instruction": 2, - "prefixed_instruction": 11, - "continue_line": 8, - "segment_prefix": 2, - "segment_register": 7, - "store_segment_prefix": 1, - "int_instruction": 1, - "lods": 366, - "get_size_operator": 137, - "invalid_operand_size": 131, - "invalid_operand": 239, - "get_byte_value": 23, - "jns": 1, - "int_imm_ok": 2, - "recoverable_overflow": 4, - "CDh": 1, - "aa_instruction": 1, - "aa_store": 2, - "xchg": 31, - "operand_size": 121, - "basic_instruction": 1, - "base_code": 195, - "basic_reg": 2, - "basic_mem": 1, - "get_address": 62, - "basic_mem_imm": 2, - "basic_mem_reg": 1, - "convert_register": 60, - "postbyte_register": 137, - "instruction_ready": 72, - "operand_autodetect": 47, - "store_instruction": 3, - "basic_mem_imm_nosize": 2, - "basic_mem_imm_8bit": 2, - "basic_mem_imm_16bit": 2, - "basic_mem_imm_32bit": 2, - "basic_mem_imm_64bit": 1, - "size_declared": 17, - "long_immediate_not_encodable": 14, - "operand_64bit": 18, - "get_simm32": 10, - "value_type": 42, - "basic_mem_imm_32bit_ok": 2, - "recoverable_unknown_size": 19, - "value": 38, - "store_instruction_with_imm8": 11, - "operand_16bit": 25, - "get_word_value": 19, - "basic_mem_imm_16bit_store": 3, - "basic_mem_simm_8bit": 5, - "store_instruction_with_imm16": 4, - "operand_32bit": 27, - "get_dword_value": 13, - "basic_mem_imm_32bit_store": 3, - "store_instruction_with_imm32": 4, - "get_qword_value": 5, - "cdq": 11, - "value_out_of_range": 10, - "get_simm32_ok": 2, - "basic_reg_reg": 2, - "basic_reg_imm": 2, - "basic_reg_mem": 1, - "basic_reg_mem_8bit": 2, - "nomem_instruction_ready": 53, - "store_nomem_instruction": 19, - "basic_reg_imm_8bit": 2, - "basic_reg_imm_16bit": 2, - "basic_reg_imm_32bit": 2, - "basic_reg_imm_64bit": 1, - "basic_reg_imm_32bit_ok": 2, - "basic_al_imm": 2, - "basic_reg_imm_16bit_store": 3, - "basic_reg_simm_8bit": 5, - "basic_ax_imm": 2, - "basic_store_imm_16bit": 2, - "mark_relocation": 26, - "store_instruction_code": 26, - "basic_reg_imm_32bit_store": 3, - "basic_eax_imm": 2, - "basic_store_imm_32bit": 2, - "error_line": 16, - "ignore_unknown_size": 2, - "error": 7, - "operand_size_not_specified": 1, - "single_operand_instruction": 1, - "F6h": 4, - "single_reg": 2, - "single_mem": 1, - "single_mem_8bit": 2, - "single_mem_nosize": 2, - "single_reg_8bit": 2, - "mov_instruction": 1, - "mov_reg": 2, - "mov_mem": 1, - "mov_mem_imm": 2, - "mov_mem_reg": 1, - "mov_mem_general_reg": 2, - "mov_mem_sreg": 2, - "mov_mem_reg_8bit": 2, - "bh": 34, - "mov_mem_ax": 2, - "mov_mem_al": 1, - "ch": 55, - "mov_mem_address16_al": 3, - "mov_mem_address32_al": 3, - "mov_mem_address64_al": 3, - "invalid_address_size": 18, - "store_segment_prefix_if_necessary": 17, - "address_32bit_prefix": 11, - "A2h": 3, - "store_mov_address32": 4, - "store_address_32bit_value": 1, - "address_16bit_prefix": 11, - "store_mov_address16": 4, - "invalid_address": 32, - "jge": 5, - "store_mov_address64": 4, - "store_address_64bit_value": 1, - "mov_mem_address16_ax": 3, - "mov_mem_address32_ax": 3, - "mov_mem_address64_ax": 3, - "A3h": 3, - "mov_mem_sreg_store": 2, - "Ch": 11, - "mov_mem_imm_nosize": 2, - "mov_mem_imm_8bit": 2, - "mov_mem_imm_16bit": 2, - "mov_mem_imm_32bit": 2, - "mov_mem_imm_64bit": 1, - "mov_mem_imm_32bit_store": 2, - "C6h": 1, - "C7h": 4, - "F0h": 7, - "mov_sreg": 2, - "mov_reg_mem": 2, - "mov_reg_imm": 2, - "mov_reg_reg": 1, - "mov_reg_sreg": 2, - "mov_reg_reg_8bit": 2, - "mov_reg_creg": 2, - "mov_reg_dreg": 2, - "mov_reg_treg": 2, - "mov_reg_sreg64": 2, - "mov_reg_sreg32": 2, - "mov_reg_sreg_store": 3, - "extended_code": 73, - "mov_reg_xrx": 3, - "mov_reg_xrx_64bit": 2, - "mov_reg_xrx_store": 3, - "mov_reg_mem_8bit": 2, - "mov_ax_mem": 2, - "mov_al_mem": 2, - "mov_al_mem_address16": 3, - "mov_al_mem_address32": 3, - "mov_al_mem_address64": 3, - "A0h": 4, - "mov_ax_mem_address16": 3, - "mov_ax_mem_address32": 3, - "mov_ax_mem_address64": 3, - "A1h": 4, - "mov_reg_imm_8bit": 2, - "mov_reg_imm_16bit": 2, - "mov_reg_imm_32bit": 2, - "mov_reg_imm_64bit": 1, - "mov_reg_imm_64bit_store": 3, - "mov_reg_64bit_imm_32bit": 2, - "B8h": 3, - "store_mov_reg_imm_code": 5, - "B0h": 5, - "mov_store_imm_32bit": 2, - "mov_reg_imm_prefix_ok": 2, - "rex_prefix": 9, - "mov_creg": 2, - "mov_dreg": 2, - "mov_treg": 2, - "mov_sreg_mem": 2, - "mov_sreg_reg": 1, - "mov_sreg_reg_size_ok": 2, - "Eh": 8, - "mov_sreg_mem_size_ok": 2, - "mov_xrx": 3, - "mov_xrx_64bit": 2, - "mov_xrx_store": 4, - "test_instruction": 1, - "test_reg": 2, - "test_mem": 1, - "test_mem_imm": 2, - "test_mem_reg": 2, - "test_mem_reg_8bit": 2, - "test_mem_imm_nosize": 2, - "test_mem_imm_8bit": 2, - "test_mem_imm_16bit": 2, - "test_mem_imm_32bit": 2, - "test_mem_imm_64bit": 1, - "test_mem_imm_32bit_store": 2, - "F7h": 5, - "test_reg_mem": 3, - "test_reg_imm": 2, - "test_reg_reg": 1, - "test_reg_reg_8bit": 2, - "test_reg_imm_8bit": 2, - "test_reg_imm_16bit": 2, - "test_reg_imm_32bit": 2, - "test_reg_imm_64bit": 1, - "test_reg_imm_32bit_store": 2, - "test_al_imm": 2, - "A8h": 1, - "test_ax_imm": 2, - "A9h": 2, - "test_eax_imm": 2, - "test_reg_mem_8bit": 2, - "xchg_instruction": 1, - "xchg_reg": 2, - "xchg_mem": 1, - "xchg_reg_reg": 1, - "xchg_reg_reg_8bit": 2, - "xchg_ax_reg": 2, - "xchg_reg_reg_store": 3, - "xchg_ax_reg_ok": 3, - "xchg_ax_reg_store": 2, - "push_instruction": 1, - "push_size": 9, - "push_next": 2, - "push_reg": 2, - "push_imm": 2, - "push_mem": 1, - "push_mem_16bit": 3, - "push_mem_32bit": 3, - "push_mem_64bit": 3, - "push_mem_store": 4, - "push_done": 5, - "push_sreg": 2, - "push_reg_ok": 2, - "push_reg_16bit": 2, - "push_reg_32bit": 2, - "push_reg_64bit": 1, - "push_reg_store": 5, - "dh": 37, - "push_sreg16": 3, - "push_sreg32": 3, - "push_sreg64": 3, - "push_sreg_store": 4, - "push_sreg_386": 2, - "push_imm_size_ok": 3, - "push_imm_16bit": 2, - "push_imm_32bit": 2, - "push_imm_64bit": 2, - "push_imm_optimized_16bit": 3, - "push_imm_optimized_32bit": 3, - "push_imm_optimized_64bit": 2, - "push_imm_32bit_store": 8, - "push_imm_8bit": 3, - "push_imm_16bit_store": 4, - "size_override": 7, - "operand_prefix": 9, - "pop_instruction": 1, - "pop_next": 2, - "pop_reg": 2, - "pop_mem": 1, - "pop_mem_16bit": 3, - "pop_mem_32bit": 3, - "pop_mem_64bit": 3, - "pop_mem_store": 4, - "pop_done": 3, - "pop_sreg": 2, - "pop_reg_ok": 2, - "pop_reg_16bit": 2, - "pop_reg_32bit": 2, - "pop_reg_64bit": 2, - "pop_reg_store": 5, - "pop_cs": 2, - "pop_sreg16": 3, - "pop_sreg32": 3, - "pop_sreg64": 3, - "pop_sreg_store": 4, - "pop_sreg_386": 2, - "pop_cs_store": 3, - "inc_instruction": 1, - "inc_reg": 2, - "inc_mem": 2, - "inc_mem_8bit": 2, - "inc_mem_nosize": 2, - "FEh": 2, - "inc_reg_8bit": 2, - "inc_reg_long_form": 2, - "set_instruction": 1, - "set_reg": 2, - "set_mem": 1, - "arpl_instruction": 1, - "arpl_reg": 2, - "bound_instruction": 1, - "bound_store": 2, - "enter_instruction": 1, - "enter_imm16_size_ok": 2, - "next_pass_needed": 16, - "enter_imm16_ok": 2, - "invalid_use_of_symbol": 17, - "js": 3, - "enter_imm8_size_ok": 2, - "enter_imm8_ok": 2, - "C8h": 2, - "bx": 8, - "ret_instruction_only64": 1, - "ret_instruction": 5, - "ret_instruction_32bit_except64": 1, - "ret_instruction_32bit": 1, - "ret_instruction_16bit": 1, - "retf_instruction": 1, - "ret_instruction_64bit": 1, - "simple_ret": 4, - "ret_imm": 3, - "ret_imm_ok": 2, - "ret_imm_store": 2, - "lea_instruction": 1, - "ls_instruction": 1, - "les_instruction": 2, - "lds_instruction": 2, - "ls_code_ok": 2, - "C4h": 1, - "ls_short_code": 2, - "C5h": 2, - "ls_16bit": 2, - "ls_32bit": 2, - "ls_64bit": 2, - "sh_instruction": 1, - "sh_reg": 2, - "sh_mem": 1, - "sh_mem_imm": 2, - "sh_mem_reg": 1, - "sh_mem_cl_8bit": 2, - "sh_mem_cl_nosize": 2, - "D3h": 2, - "D2h": 2, - "sh_mem_imm_size_ok": 2, - "sh_mem_imm_8bit": 2, - "sh_mem_imm_nosize": 2, - "sh_mem_1": 2, - "C1h": 2, - "D1h": 2, - "sh_mem_1_8bit": 2, - "C0h": 2, - "D0h": 2, - "sh_reg_imm": 2, - "sh_reg_reg": 1, - "sh_reg_cl_8bit": 2, - "sh_reg_imm_size_ok": 2, - "sh_reg_imm_8bit": 2, - "sh_reg_1": 2, - "sh_reg_1_8bit": 2, - "shd_instruction": 1, - "shd_reg": 2, - "shd_mem": 1, - "shd_mem_reg_imm": 2, - "shd_mem_reg_imm_size_ok": 2, - "shd_reg_reg_imm": 2, - "shd_reg_reg_imm_size_ok": 2, - "movx_instruction": 1, - "movx_reg": 2, - "movx_unknown_size": 2, - "movx_mem_store": 3, - "movx_reg_8bit": 2, - "movx_reg_16bit": 2, - "movsxd_instruction": 1, - "movsxd_reg": 2, - "movsxd_mem_store": 2, - "bt_instruction": 1, - "bt_reg": 2, - "bt_mem_imm": 3, - "bt_mem_reg": 2, - "bt_mem_imm_size_ok": 2, - "bt_mem_imm_nosize": 2, - "bt_mem_imm_store": 2, - "BAh": 2, - "bt_reg_imm": 3, - "bt_reg_reg": 2, - "bt_reg_imm_size_ok": 2, - "bt_reg_imm_store": 1, - "bs_instruction": 1, - "get_reg_mem": 2, - "bs_reg_reg": 2, - "get_reg_reg": 2, - "invalid_argument": 28, - "imul_instruction": 1, - "imul_reg": 2, - "imul_mem": 1, - "imul_mem_8bit": 2, - "imul_mem_nosize": 2, - "imul_reg_": 2, - "imul_reg_8bit": 2, - "imul_reg_imm": 3, - "imul_reg_noimm": 2, - "imul_reg_reg": 2, - "imul_reg_mem": 1, - "imul_reg_mem_imm": 2, - "AFh": 2, - "imul_reg_mem_imm_16bit": 2, - "imul_reg_mem_imm_32bit": 2, - "imul_reg_mem_imm_64bit": 1, - "imul_reg_mem_imm_32bit_ok": 2, - "imul_reg_mem_imm_16bit_store": 4, - "imul_reg_mem_imm_8bit_store": 3, - "imul_reg_mem_imm_32bit_store": 4, - "Bh": 11, - "imul_reg_reg_imm": 3, - "imul_reg_reg_imm_16bit": 2, - "imul_reg_reg_imm_32bit": 2, - "imul_reg_reg_imm_64bit": 1, - "imul_reg_reg_imm_32bit_ok": 2, - "imul_reg_reg_imm_16bit_store": 4, - "imul_reg_reg_imm_8bit_store": 3, - "imul_reg_reg_imm_32bit_store": 4, - "in_instruction": 1, - "in_imm": 2, - "in_reg": 2, - "in_al_dx": 2, - "in_ax_dx": 2, - "EDh": 1, - "ECh": 1, - "in_imm_size_ok": 2, - "in_al_imm": 2, - "in_ax_imm": 2, - "E5h": 1, - "E4h": 1, - "out_instruction": 1, - "out_imm": 2, - "out_dx_al": 2, - "out_dx_ax": 2, - "EFh": 1, - "EEh": 1, - "out_imm_size_ok": 2, - "out_imm_al": 2, - "out_imm_ax": 2, - "E7h": 1, - "E6h": 1, - "call_instruction": 1, - "E8h": 3, - "process_jmp": 2, - "jmp_instruction": 1, - "E9h": 1, - "EAh": 1, - "get_jump_operator": 3, - "jmp_imm": 2, - "jmp_reg": 2, - "jmp_mem": 1, - "jump_type": 14, - "jmp_mem_size_not_specified": 2, - "jmp_mem_16bit": 3, - "jmp_mem_32bit": 2, - "jmp_mem_48bit": 2, - "jmp_mem_64bit": 2, - "jmp_mem_80bit": 2, - "jmp_mem_far": 2, - "jmp_mem_near": 2, - "jmp_mem_near_32bit": 3, - "jmp_mem_far_32bit": 4, - "jmp_mem_far_store": 3, - "jmp_reg_16bit": 2, - "jmp_reg_32bit": 2, - "jmp_reg_64bit": 1, - "invalid_value": 21, - "skip_symbol": 5, - "jmp_far": 2, - "jmp_near": 1, - "jmp_imm_16bit": 3, - "jmp_imm_32bit": 2, - "jmp_imm_64bit": 3, - "get_address_dword_value": 3, - "jmp_imm_32bit_prefix_ok": 2, - "calculate_jump_offset": 10, - "check_for_short_jump": 8, - "jmp_short": 3, - "jmp_imm_32bit_store": 2, - "jno": 2, - "jmp_imm_32bit_ok": 2, - "relative_jump_out_of_range": 6, - "get_address_qword_value": 3, - "jnc": 11, - "EBh": 1, - "get_address_word_value": 3, - "jmp_imm_16bit_prefix_ok": 2, - "cwde": 3, - "addressing_space": 17, - "calculate_relative_offset": 2, - "forced_short": 2, - "no_short_jump": 4, - "short_jump": 4, - "jmp_short_value_type_ok": 2, - "jump_out_of_range": 3, - "symbol_identifier": 4, - "jmp_far_16bit": 2, - "jmp_far_32bit": 3, - "jmp_far_segment": 2, - "conditional_jump": 1, - "conditional_jump_16bit": 3, - "conditional_jump_32bit": 2, - "conditional_jump_64bit": 3, - "conditional_jump_32bit_prefix_ok": 2, - "conditional_jump_short": 4, - "conditional_jump_32bit_store": 2, - "conditional_jump_32bit_range_ok": 2, - "conditional_jump_16bit_prefix_ok": 2, - "loop_instruction_16bit": 1, - "loop_instruction": 5, - "loop_instruction_32bit": 1, - "loop_instruction_64bit": 1, - "loop_jump_16bit": 3, - "loop_jump_32bit": 2, - "loop_jump_64bit": 3, - "loop_jump_32bit_prefix_ok": 2, - "loop_counter_size": 4, - "make_loop_jump": 3, - "scas": 10, - "loop_counter_size_ok": 2, - "loop_jump_16bit_prefix_ok": 2, - "movs_instruction": 1, - "address_sizes_do_not_agree": 2, - "movs_address_16bit": 2, - "movs_address_32bit": 2, - "movs_store": 3, - "A4h": 1, - "movs_check_size": 5, - "lods_instruction": 1, - "lods_address_16bit": 2, - "lods_address_32bit": 2, - "lods_store": 3, - "ACh": 1, - "stos_instruction": 1, - "stos_address_16bit": 2, - "stos_address_32bit": 2, - "stos_store": 3, - "cmps_instruction": 1, - "cmps_address_16bit": 2, - "cmps_address_32bit": 2, - "cmps_store": 3, - "A6h": 1, - "ins_instruction": 1, - "ins_address_16bit": 2, - "ins_address_32bit": 2, - "ins_store": 3, - "ins_check_size": 2, - "outs_instruction": 1, - "outs_address_16bit": 2, - "outs_address_32bit": 2, - "outs_store": 3, - "xlat_instruction": 1, - "xlat_address_16bit": 2, - "xlat_address_32bit": 2, - "xlat_store": 3, - "D7h": 1, - "pm_word_instruction": 1, - "pm_reg": 2, - "pm_mem": 2, - "pm_mem_store": 2, - "pm_store_word_instruction": 1, - "lgdt_instruction": 1, - "lgdt_mem_48bit": 2, - "lgdt_mem_80bit": 2, - "lgdt_mem_store": 4, - "lar_instruction": 1, - "lar_reg_reg": 2, - "lar_reg_mem": 2, - "invlpg_instruction": 1, - "swapgs_instruction": 1, - "rdtscp_instruction": 1, - "basic_486_instruction": 1, - "basic_486_reg": 2, - "basic_486_mem_reg_8bit": 2, - "basic_486_reg_reg_8bit": 2, - "bswap_instruction": 1, - "bswap_reg_code_ok": 2, - "bswap_reg64": 2, - "cmpxchgx_instruction": 1, - "cmpxchgx_size_ok": 2, - "cmpxchgx_store": 2, - "nop_instruction": 1, - "extended_nop": 4, - "extended_nop_reg": 2, - "extended_nop_store": 2, - "basic_fpu_instruction": 1, - "D8h": 2, - "basic_fpu_streg": 2, - "basic_fpu_mem": 2, - "basic_fpu_mem_32bit": 2, - "basic_fpu_mem_64bit": 2, - "DCh": 2, - "convert_fpu_register": 9, - "basic_fpu_single_streg": 3, - "basic_fpu_st0": 2, - "basic_fpu_streg_st0": 2, - "simple_fpu_instruction": 1, - "D9h": 6, - "fi_instruction": 1, - "fi_mem_16bit": 2, - "fi_mem_32bit": 2, - "DAh": 2, - "DEh": 2, - "fld_instruction": 1, - "fld_streg": 2, - "fld_mem_32bit": 2, - "fld_mem_64bit": 2, - "fld_mem_80bit": 2, - "DDh": 6, - "fld_mem_80bit_store": 3, - "DBh": 4, - "fst_streg": 2, - "fild_instruction": 1, - "fild_mem_16bit": 2, - "fild_mem_32bit": 2, - "fild_mem_64bit": 2, - "DFh": 5, - "fisttp_64bit_store": 2, - "fild_mem_64bit_store": 3, - "fbld_instruction": 1, - "fbld_mem_80bit": 3, - "faddp_instruction": 1, - "faddp_streg": 2, - "fcompp_instruction": 1, - "D9DEh": 1, - "fucompp_instruction": 1, - "E9DAh": 1, - "fxch_instruction": 1, - "fpu_single_operand": 3, - "ffreep_instruction": 1, - "ffree_instruction": 1, - "fpu_streg": 2, - "fstenv_instruction": 1, - "fldenv_instruction": 3, - "fpu_mem": 2, - "fstenv_instruction_16bit": 1, - "fldenv_instruction_16bit": 1, - "fstenv_instruction_32bit": 1, - "fldenv_instruction_32bit": 1, - "fsave_instruction_32bit": 1, - "fnsave_instruction_32bit": 1, - "fnsave_instruction": 3, - "fsave_instruction_16bit": 1, - "fnsave_instruction_16bit": 1, - "fsave_instruction": 1, - "fstcw_instruction": 1, - "fldcw_instruction": 1, - "fldcw_mem_16bit": 3, - "fstsw_instruction": 1, - "fnstsw_instruction": 1, - "fstsw_reg": 2, - "fstsw_mem_16bit": 3, - "E0DFh": 1, - "finit_instruction": 1, - "fninit_instruction": 1, - "fcmov_instruction": 1, - "fcomi_streg": 3, - "fcomi_instruction": 1, - "fcomip_instruction": 1, - "fcomi_st0_streg": 2, - "basic_mmx_instruction": 1, - "mmx_instruction": 1, - "convert_mmx_register": 18, - "make_mmx_prefix": 9, - "mmx_mmreg_mmreg": 3, - "mmx_mmreg_mem": 2, - "mmx_bit_shift_instruction": 1, - "mmx_ps_mmreg_imm8": 2, - "pmovmskb_instruction": 1, - "pmovmskb_reg_size_ok": 2, - "mmx_nomem_imm8": 7, - "mmx_imm8": 6, - "cl": 42, - "append_imm8": 2, - "pinsrw_instruction": 1, - "pinsrw_mmreg_reg": 2, - "pshufw_instruction": 1, - "mmx_size": 30, - "opcode_prefix": 30, - "pshuf_instruction": 2, - "pshufd_instruction": 1, - "pshuf_mmreg_mmreg": 2, - "movd_instruction": 1, - "movd_reg": 2, - "movd_mmreg": 2, - "movd_mmreg_reg": 2, - "vex_required": 2, - "mmx_prefix_for_vex": 2, - "no_mmx_prefix": 2, - "movq_instruction": 1, - "movq_reg": 2, - "movq_mem_xmmreg": 2, - "D6h": 2, - "movq_mmreg": 2, - "movq_mmreg_": 2, - "F3h": 7, - "movq_mmreg_reg": 2, - "movq_mmreg_mmreg": 2, - "movq_mmreg_reg_store": 2, - "movdq_instruction": 1, - "movdq_mmreg": 2, - "convert_xmm_register": 12, - "movdq_mmreg_mmreg": 2, - "lddqu_instruction": 1, - "F2h": 6, - "movdq2q_instruction": 1, - "movq2dq_": 2, - "movq2dq_instruction": 1, - "sse_ps_instruction_imm8": 1, - "immediate_size": 9, - "sse_ps_instruction": 1, - "sse_instruction": 11, - "sse_pd_instruction_imm8": 1, - "sse_pd_instruction": 1, - "sse_ss_instruction": 1, - "sse_sd_instruction": 1, - "cmp_pd_instruction": 1, - "cmp_ps_instruction": 1, - "C2h": 4, - "cmp_ss_instruction": 1, - "cmp_sx_instruction": 2, - "cmpsd_instruction": 1, - "A7h": 1, - "cmp_sd_instruction": 1, - "comiss_instruction": 1, - "comisd_instruction": 1, - "cvtdq2pd_instruction": 1, - "cvtps2pd_instruction": 1, - "cvtpd2dq_instruction": 1, - "movshdup_instruction": 1, - "sse_xmmreg": 2, - "sse_reg": 1, - "sse_xmmreg_xmmreg": 2, - "sse_reg_mem": 2, - "sse_mem_size_ok": 2, - "supplemental_code": 2, - "sse_cmp_mem_ok": 3, - "sse_ok": 2, - "take_additional_xmm0": 3, - "sse_xmmreg_xmmreg_ok": 4, - "sse_cmp_nomem_ok": 3, - "sse_nomem_ok": 2, - "additional_xmm0_ok": 2, - "pslldq_instruction": 1, - "movpd_instruction": 1, - "movps_instruction": 1, - "sse_mov_instruction": 3, - "movss_instruction": 1, - "sse_movs": 2, - "movsd_instruction": 1, - "A5h": 1, - "sse_mem": 2, - "sse_mem_xmmreg": 2, - "movlpd_instruction": 1, - "movlps_instruction": 1, - "movhlps_instruction": 1, - "maskmovq_instruction": 1, - "maskmov_instruction": 2, - "maskmovdqu_instruction": 1, - "movmskpd_instruction": 1, - "movmskps_instruction": 1, - "movmskps_reg_ok": 2, - "cvtpi2pd_instruction": 1, - "cvtpi2ps_instruction": 1, - "stub_size": 1, - "resolver_flags": 1, - "number_of_sections": 1, - "actual_fixups_size": 1, - "assembler_loop": 2, - "labels_list": 3, - "tagged_blocks": 23, - "free_additional_memory": 2, - "structures_buffer": 9, - "source_start": 1, - "code_start": 2, - "adjustment": 4, - "counter": 13, - "format_flags": 2, - "number_of_relocations": 1, - "undefined_data_end": 4, - "file_extension": 1, - "output_format": 3, - "adjustment_sign": 2, - "init_addressing_space": 6, - "pass_loop": 2, - "assemble_line": 3, - "pass_done": 2, - "missing_end_directive": 7, - "close_pass": 1, - "check_symbols": 2, - "symbols_checked": 2, - "symbol_defined_ok": 5, - "cx": 42, - "use_prediction_ok": 5, - "check_use_prediction": 2, - "use_misprediction": 3, - "check_next_symbol": 5, - "define_misprediction": 4, - "check_define_prediction": 2, - "LABEL_STRUCTURE_SIZE": 1, - "next_pass": 3, - "assemble_ok": 2, - "undefined_symbol": 2, - "error_confirmed": 3, - "error_info": 2, - "error_handler": 3, - "code_cannot_be_generated": 1, - "create_addressing_space": 1, - "assemble_instruction": 2, - "source_end": 2, - "define_label": 2, - "define_constant": 2, - "label_addressing_space": 2, - "new_line": 2, - "code_type_setting": 2, - "line_assembled": 3, - "reserved_word_used_as_symbol": 6, - "label_size": 5, - "make_label": 3, - "ds": 21, - "sbb": 9, - "jp": 2, - "label_value_ok": 2, - "address_sign": 4, - "make_virtual_label": 2, - "setnz": 5, - "finish_label": 2, - "setne": 14, - "finish_label_symbol": 2, - "label_symbol_ok": 2, - "new_label": 2, - "symbol_already_defined": 3, - "btr": 2, - "requalified_label": 2, - "label_made": 4, - "get_constant_value": 4, - "get_value": 2, - "constant_referencing_mode_ok": 2, - "make_constant": 2, - "value_sign": 3, - "constant_symbol_ok": 2, - "new_constant": 2, - "redeclare_constant": 2, - "requalified_constant": 2, - "make_addressing_space_label": 3, - "vex_register": 1, - "instruction_handler": 32, - "extra_characters_on_line": 8, - "org_directive": 1, - "in_virtual": 2, - "org_space_ok": 2, - "close_virtual_addressing_space": 3, - "org_value_ok": 2, - "bts": 1, - "label_directive": 1, - "get_label_size": 2, - "label_size_ok": 2, - "get_free_label_value": 2, - "get_address_value": 3, - "bp": 2, - "make_free_label": 1, - "address_symbol": 2, - "load_directive": 1, - "load_size_ok": 2, - "get_data_point": 3, - "value_loaded": 2, - "rep": 7, - "movs": 8, - "get_data_address": 5, - "addressing_space_unavailable": 3, - "symbol_out_of_scope": 1, - "get_addressing_space": 3, - "store_label_reference": 1, - "data_address_type_ok": 2, - "bad_data_address": 3, - "store_directive": 1, - "sized_store": 2, - "store_value_ok": 2, - "undefined_data_start": 3, - "display_directive": 2, - "display_byte": 2, - "display_next": 2, - "display_done": 3, - "display_messages": 2, - "skip_block": 2, - "times_directive": 1, - "get_count_value": 6, - "zero_times": 3, - "times_argument_ok": 2, - "counter_limit": 7, - "times_loop": 2, - "stack_overflow": 2, - "times_done": 2, - "virtual_directive": 3, - "virtual_at_current": 2, - "set_virtual": 2, - "allocate_structure_data": 5, - "find_structure_data": 6, - "scan_structures": 2, - "no_such_structure": 2, - "structure_data_found": 2, - "end_virtual": 2, - "unexpected_instruction": 18, - "remove_structure_data": 7, - "std": 2, - "cld": 2, - "addressing_space_closed": 2, - "virtual_byte_ok": 2, - "virtual_word_ok": 2, - "repeat_directive": 7, - "zero_repeat": 2, - "end_repeat": 2, - "continue_repeating": 2, - "stop_repeat": 2, - "find_end_repeat": 4, - "find_structure_end": 5, - "while_directive": 7, - "do_while": 2, - "calculate_logical_expression": 3, - "while_true": 2, - "stop_while": 2, - "find_end_while": 3, - "end_while": 2, - "too_many_repeats": 1, - "if_directive": 13, - "if_true": 2, - "find_else": 4, - "else_true": 3, - "make_if_structure": 2, - "else_directive": 3, - "found_else": 2, - "skip_else": 3, - "find_end_if": 3, - "end_if": 2, - "else_found": 2, - "find_end_directive": 10, - "no_end_directive": 2, - "skip_labels": 2, - "labels_ok": 2, - "skip_repeat": 2, - "skip_while": 2, - "skip_if": 2, - "structure_end": 4, - "end_directive": 2, - "skip_if_block": 4, - "if_block_skipped": 2, - "skip_after_else": 3, - "data_directive": 1, - "end_data": 1, - "break_directive": 1, - "find_breakable_structure": 4, - "break_repeat": 2, - "break_while": 2, - "break_if": 2, - "data_bytes": 1, - "define_data": 8, - "get_byte": 2, - "undefined_data": 7, - "get_string": 2, - "mark_undefined_data": 2, - "undefined_data_ok": 2, - "simple_data_value": 3, - "skip_expression": 1, - "duplicate_zero_times": 2, - "duplicate_single_data_value": 3, - "duplicate_data": 2, - "duplicated_values": 2, - "near": 3, - "data_defined": 5, - "skip_single_data_value": 2, - "skip_data_value": 2, - "data_unicode": 1, - "define_words": 2, - "data_words": 1, - "get_word": 2, - "word_data_value": 2, - "word_string": 2, - "jecxz": 1, - "word_string_ok": 2, - "ecx*2": 1, - "copy_word_string": 2, - "data_dwords": 1, - "get_dword": 2, - "complex_dword": 2, - "data_pwords": 1, - "get_pword": 2, - "get_pword_value": 1, - "complex_pword": 2, - "data_qwords": 1, - "get_qword": 2, - "data_twords": 1, - "get_tword": 2, - "complex_tword": 2, - "fp_zero_tword": 2, - "jg": 1, - "tword_exp_ok": 3, - "large_shift": 2, - "shrd": 1, - "tword_mantissa_shift_done": 2, - "store_shifted_mantissa": 2, - "data_file": 2, - "open_binary_file": 2, - "position_ok": 2, - "size_ok": 2, - "error_reading_file": 1, - "find_current_source_path": 2, - "get_current_path": 3, - "cut_current_path": 1, - "current_path_ok": 1, - "/": 1, - ".": 7, - "invalid_align_value": 3, - "section_not_aligned_enough": 4, - "make_alignment": 3, - "pe_alignment": 2, - "nops": 2, - "reserved_data": 2, - "nops_stosb_ok": 2, - "nops_stosw_ok": 2, - "err_directive": 1, - "invoked_error": 2, - "assert_directive": 1, - "assertion_failed": 1 - }, - "AsciiDoc": { - "Gregory": 2, - "Rom": 2, - "has": 2, - "written": 2, - "an": 2, - "AsciiDoc": 3, - "plugin": 2, - "for": 2, - "the": 2, - "Redmine": 2, - "project": 2, - "management": 2, - "application.": 2, - "https": 1, - "//github.com/foo": 1, - "-": 4, - "users/foo": 1, - "vicmd": 1, - "gif": 1, - "tag": 1, - "rom": 2, - "[": 2, - "]": 2, - "end": 1, - "berschrift": 1, - "*": 4, - "Codierungen": 1, - "sind": 1, - "verr": 1, - "ckt": 1, - "auf": 1, - "lteren": 1, - "Versionen": 1, - "von": 1, - "Ruby": 1, - "Home": 1, - "Page": 1, - "Example": 1, - "Articles": 1, - "Item": 6, - "Document": 1, - "Title": 1, - "Doc": 1, - "Writer": 1, - "": 1, - "idprefix": 1, - "id_": 1, - "Preamble": 1, - "paragraph.": 4, - "NOTE": 1, - "This": 1, - "is": 1, - "test": 1, - "only": 1, - "a": 1, - "test.": 1, - "Section": 3, - "A": 2, - "*Section": 3, - "A*": 2, - "Subsection": 1, - "B": 2, - "B*": 1, - ".Section": 1, - "list": 1 - }, - "Gnuplot": { - "set": 98, - "boxwidth": 1, - "absolute": 1, - "style": 7, - "fill": 1, - "solid": 1, - "border": 3, - "lt": 15, - "-": 102, - "key": 1, - "inside": 1, - "right": 1, - "top": 1, - "vertical": 2, - "Right": 1, - "noreverse": 13, - "noenhanced": 1, - "autotitles": 1, - "nobox": 1, - "histogram": 1, - "clustered": 1, - "gap": 1, - "title": 13, - "offset": 25, - "character": 22, - "datafile": 1, - "missing": 1, - "data": 1, - "histograms": 1, - "xtics": 3, - "in": 1, - "scale": 1, - "nomirror": 1, - "rotate": 3, - "by": 3, - "autojustify": 1, - "norangelimit": 3, - "font": 8, - "(": 52, - ")": 52, - "yrange": 4, - "[": 18, - "]": 18, - "nowriteback": 12, - "i": 1, - "plot": 3, - "using": 2, - "xtic": 1, - "ti": 4, - "col": 4, - "u": 25, - "dummy": 3, - "v": 31, - "label": 14, - "at": 14, - "left": 15, - "norotate": 18, - "back": 23, - "nopoint": 14, - "arrow": 7, - "from": 7, - "to": 7, - "head": 7, - "nofilled": 7, - "linetype": 11, - "linewidth": 11, - "parametric": 3, - "view": 3, - "samples": 3, - "isosamples": 3, - "hidden3d": 2, - "trianglepattern": 2, - "undefined": 2, - "altdiagonal": 2, - "bentover": 2, - "ztics": 2, - "xlabel": 6, - "textcolor": 13, - "xrange": 3, - "ylabel": 5, - "zlabel": 4, - "zrange": 2, - "sinc": 13, - "sin": 3, - "sqrt": 4, - "u**2": 4, - "+": 6, - "v**2": 4, - "/": 2, - "GPFUN_sinc": 2, - "xx": 2, - "dx": 2, - "x0": 4, - "x1": 4, - "x2": 4, - "x3": 4, - "x4": 4, - "x5": 4, - "x6": 4, - "x7": 4, - "x8": 4, - "x9": 4, - "splot": 3, - "<": 10, - "notitle": 15, - "rgb": 8, - "line": 4, - "linecolor": 4, - "pointtype": 4, - "pointsize": 4, - "default": 4, - "pointinterval": 4, - "noxtics": 2, - "noytics": 2, - "bmargin": 1, - "unset": 2, - "colorbox": 3, - "cos": 9, - "x": 7, - "ls": 4, - ".2": 1, - ".4": 1, - ".6": 1, - ".8": 1, - "lc": 3, - "SHEBANG#!gnuplot": 1, - "reset": 1, - "terminal": 1, - "png": 1, - "output": 1, - "#set": 2, - "xr": 1, - "yr": 1, - "pt": 2, - "xmin": 3, - "xmax": 1, - "n": 1, - "zbase": 2, - ".5": 2, - "*n": 1, - "floor": 3, - "u/3": 1, - "*dx": 1, - "%": 2, - "u/3.*dx": 1, - "/0": 1, - "angles": 1, - "degrees": 1, - "mapping": 1, - "spherical": 1, - "noztics": 1, - "urange": 1, - "vrange": 1, - "cblabel": 1, - "cbrange": 1, - "user": 1, - "origin": 1, - "screen": 2, - "size": 1, - "front": 1, - "bdefault": 1, - "*cos": 1, - "*sin": 1, - "with": 3, - "lines": 2, - "labels": 1, - "point": 1, - "lw": 1, - ".1": 1, - "tc": 1, - "pal": 1 - }, - "Nginx": { - "user": 1, - "www": 2, - ";": 35, - "worker_processes": 1, - "error_log": 1, - "logs/error.log": 1, - "pid": 1, - "logs/nginx.pid": 1, - "worker_rlimit_nofile": 1, - "events": 1, - "{": 10, - "worker_connections": 1, - "}": 10, - "http": 3, - "include": 3, - "conf/mime.types": 1, - "/etc/nginx/proxy.conf": 1, - "/etc/nginx/fastcgi.conf": 1, - "index": 1, - "index.html": 1, - "index.htm": 1, - "index.php": 1, - "default_type": 1, - "application/octet": 1, - "-": 2, - "stream": 1, - "log_format": 1, - "main": 5, - "access_log": 4, - "logs/access.log": 1, - "sendfile": 1, - "on": 2, - "tcp_nopush": 1, - "server_names_hash_bucket_size": 1, - "#": 4, - "this": 1, - "seems": 1, - "to": 1, - "be": 1, - "required": 1, - "for": 1, - "some": 1, - "vhosts": 1, - "server": 7, - "php/fastcgi": 1, - "listen": 3, - "server_name": 3, - "domain1.com": 1, - "www.domain1.com": 1, - "logs/domain1.access.log": 1, - "root": 2, - "html": 1, - "location": 4, - ".php": 1, - "fastcgi_pass": 1, - "simple": 2, - "reverse": 1, - "proxy": 1, - "domain2.com": 1, - "www.domain2.com": 1, - "logs/domain2.access.log": 1, - "/": 4, - "(": 1, - "images": 1, - "|": 6, - "javascript": 1, - "js": 1, - "css": 1, - "flash": 1, - "media": 1, - "static": 1, - ")": 1, - "/var/www/virtual/big.server.com/htdocs": 1, - "expires": 1, - "d": 1, - "proxy_pass": 2, - "//127.0.0.1": 1, - "upstream": 1, - "big_server_com": 1, - "weight": 2, - "load": 1, - "balancing": 1, - "big.server.com": 1, - "logs/big.server.access.log": 1, - "//big_server_com": 1 - }, - "Dogescript": { - "quiet": 1, - "wow": 4, - "such": 2, - "language": 3, - "very": 1, - "syntax": 1, - "github": 1, - "recognized": 1, - "loud": 1, - "much": 1, - "friendly": 2, - "rly": 1, - "is": 2, - "true": 1, - "plz": 2, - "console.loge": 2, - "with": 2, - "but": 1, - "module.exports": 1 - }, - "Markdown": { - "Tender": 1 - }, - "Perl": { - "pod": 1, - "head1": 36, - "NAME": 6, - "Catalyst": 10, - "PSGI": 10, - "-": 868, - "How": 1, - "and": 85, - "work": 3, - "together": 2, - "SYNOPSIS": 6, - "The": 22, - "L": 34, - "": 3, - "specification": 3, - "defines": 2, - "an": 16, - "interface": 1, - "between": 4, - "web": 8, - "servers": 2, - "Perl": 9, - "based": 2, - "applications": 2, - "frameworks.": 1, - "It": 3, - "supports": 1, - "the": 143, - "writing": 1, - "of": 64, - "portable": 1, - "that": 33, - "can": 30, - "be": 36, - "run": 1, - "using": 5, - "various": 2, - "methods": 4, - "(": 925, - "as": 37, - "a": 85, - "standalone": 1, - "server": 2, - "or": 49, - "mod_perl": 3, - "FastCGI": 2, - "etc.": 3, - ")": 923, - ".": 125, - "": 3, - "is": 69, - "implementation": 1, - "for": 83, - "running": 1, - "applications.": 1, - "used": 12, - "to": 95, - "contain": 3, - "entire": 3, - "set": 12, - "C": 56, - "<<": 10, - "Engine": 1, - "XXXX": 1, - "classes": 2, - "handle": 3, - "environments": 1, - "e.g.": 2, - "CGI": 6, - "This": 27, - "has": 3, - "been": 1, - "changed": 1, - "in": 36, - "so": 4, - "all": 23, - "done": 2, - "by": 16, - "implementing": 1, - "s": 35, - "possible": 2, - "do": 12, - "it": 28, - "manually": 2, - "creating": 3, - "": 1, - "file": 49, - "root": 1, - "your": 20, - "application.": 1, - "head2": 34, - "Why": 3, - "would": 5, - "I": 68, - "want": 7, - "write": 2, - "my": 404, - "own": 4, - ".psgi": 7, - "Writing": 2, - "allows": 4, - "you": 44, - "use": 83, - "alternate": 1, - "": 1, - "command": 14, - "start": 7, - "application": 15, - "add": 9, - "extensions": 1, - "implement": 2, - "": 1, - "such": 6, - "": 1, - "": 1, - "simplest": 1, - "<.psgi>": 1, - "called": 4, - "": 1, - "strict": 18, - ";": 1193, - "warnings": 18, - "TestApp": 5, - "app": 2, - "psgi_app": 3, - "@_": 43, - "Note": 5, - "will": 9, - "apply": 3, - "number": 4, - "middleware": 2, - "components": 2, - "automatically": 2, - "these": 4, - "B": 76, - "": 1, - "not": 54, - "applied": 1, - "if": 276, - "create": 3, - "psgi": 2, - "yourself.": 2, - "Details": 1, - "found": 11, - "below.": 1, - "Additional": 1, - "information": 2, - "about": 4, - "files": 42, - "at": 4, - "": 1, - "What": 1, - "generates": 2, - "default": 19, - "which": 7, - "": 1, - "setting": 2, - "on": 25, - "wrapped": 1, - "": 1, - "contains": 2, - "some": 1, - "engine": 1, - "specific": 2, - "fixes": 1, - "uniform": 1, - "behaviour": 2, - "contained": 1, - "over": 2, - "item": 44, - "": 1, - "": 1, - "back": 4, - "If": 15, - "override": 1, - "providing": 2, - "then": 4, - "none": 1, - "things": 2, - "returned": 3, - "when": 18, - "call": 2, - "MyApp": 1, - "Thus": 1, - "need": 5, - "any": 4, - "this": 22, - "functionality": 1, - "ll": 1, - "An": 1, - "apply_default_middlewares": 2, - "method": 8, - "supplied": 1, - "wrap": 1, - "middlewares": 1, - "are": 25, - "file.": 3, - "means": 3, - "auto": 1, - "generated": 1, - "no": 22, - "code": 8, - "looks": 2, - "something": 3, - "like": 13, - "SEE": 4, - "ALSO": 4, - "": 1, - "": 1, - "AUTHORS": 2, - "Contributors": 1, - "see": 5, - "Catalyst.pm": 1, - "COPYRIGHT": 7, - "library": 2, - "free": 4, - "software.": 1, - "You": 4, - "redistribute": 4, - "and/or": 4, - "modify": 4, - "under": 5, - "same": 2, - "terms": 4, - "itself.": 3, - "cut": 28, - "package": 14, - "Plack": 25, - "Request": 11, - "_001": 1, - "our": 34, - "VERSION": 15, - "eval": 8, - "HTTP": 16, - "Headers": 8, - "Carp": 11, - "Hash": 11, - "MultiValue": 9, - "Body": 2, - "Upload": 2, - "TempBuffer": 2, - "URI": 11, - "Escape": 6, - "sub": 225, - "_deprecated": 8, - "{": 1121, - "alt": 1, - "shift": 165, - "caller": 2, - "[": 159, - "]": 155, - "carp": 2, - "}": 1134, - "new": 55, - "class": 8, - "env": 76, - "croak": 3, - "q": 5, - "required": 2, - "unless": 39, - "defined": 54, - "&&": 83, - "ref": 33, - "eq": 31, - "bless": 7, - "_": 101, - "address": 2, - "REMOTE_ADDR": 1, - "remote_host": 2, - "REMOTE_HOST": 1, - "protocol": 1, - "SERVER_PROTOCOL": 1, - "REQUEST_METHOD": 1, - "port": 1, - "SERVER_PORT": 2, - "user": 4, - "REMOTE_USER": 1, - "request_uri": 1, - "REQUEST_URI": 2, - "path_info": 4, - "PATH_INFO": 3, - "path": 28, - "||": 49, - "script_name": 1, - "SCRIPT_NAME": 2, - "scheme": 3, - "secure": 2, - "body": 30, - "input": 9, - "content_length": 4, - "CONTENT_LENGTH": 3, - "content_type": 5, - "CONTENT_TYPE": 2, - "session": 1, - "session_options": 1, - "logger": 1, - "cookies": 9, - "self": 141, - "return": 157, - "HTTP_COOKIE": 3, - "%": 78, - "results": 8, - "@pairs": 2, - "grep": 17, - "/": 69, - "split": 13, - "pair": 4, - "s/": 22, - "+": 120, - "//": 9, - "key": 20, - "value": 12, - "map": 10, - "uri_unescape": 1, - "exists": 19, - "query_parameters": 3, - "uri": 11, - "query_form": 2, - "content": 8, - "_parse_request_body": 4, - "fh": 28, - "cl": 10, - "read": 6, - "seek": 4, - "raw_body": 1, - "headers": 56, - "field": 2, - "HTTPS": 1, - "_//": 1, - "|": 28, - "CONTENT": 1, - "COOKIE": 1, - "/i": 2, - "keys": 15, - "content_encoding": 5, - "header": 17, - "referer": 3, - "user_agent": 3, - "body_parameters": 3, - "parameters": 8, - "query": 4, - "flatten": 3, - "uploads": 5, - "hostname": 1, - "url_scheme": 1, - "params": 1, - "query_params": 1, - "body_params": 1, - "cookie": 6, - "name": 44, - "param": 8, - "wantarray": 3, - "get_all": 2, - "upload": 13, - "raw_uri": 1, - "base": 10, - "path_query": 1, - "_uri_base": 3, - "path_escape_class": 2, - "uri_escape": 3, - "QUERY_STRING": 3, - "ne": 9, - "m": 17, - "canonical": 2, - "HTTP_HOST": 1, - "SERVER_NAME": 1, - "new_response": 4, - "require": 12, - "Response": 16, - "ct": 3, - "cleanup": 1, - "buffer": 9, - "else": 53, - "spin": 2, - "while": 31, - "chunk": 4, - "<": 15, - "length": 1, - "print": 35, - "rewind": 1, - "from_mixed": 2, - "@uploads": 3, - "@obj": 3, - "k": 6, - "v": 19, - "splice": 2, - "push": 30, - "_make_upload": 2, - "copy": 4, - "__END__": 2, - "Portable": 2, - "request": 11, - "object": 6, - "from": 19, - "hash": 11, - "app_or_middleware": 1, - "#": 99, - "req": 28, - "res": 59, - "finalize": 5, - "DESCRIPTION": 4, - "": 2, - "provides": 1, - "consistent": 1, - "API": 2, - "objects": 2, - "across": 1, - "environments.": 1, - "CAVEAT": 1, - "module": 2, - "intended": 1, - "developers": 3, - "framework": 2, - "rather": 2, - "than": 5, - "end": 9, - "users": 4, - "directly": 1, - "certainly": 2, - "but": 4, - "recommended": 1, - "Apache": 2, - "yet": 1, - "too": 1, - "low": 1, - "level.": 1, - "re": 3, - "encouraged": 1, - "one": 9, - "frameworks": 2, - "support": 2, - "": 1, - "modules": 1, - "": 1, - "provide": 1, - "higher": 1, - "level": 1, - "top": 1, - "PSGI.": 1, - "METHODS": 2, - "Some": 1, - "earlier": 1, - "versions": 1, - "deprecated": 1, - "version": 2, - "Take": 1, - "look": 2, - "": 1, - "Unless": 1, - "otherwise": 2, - "noted": 1, - "attributes": 4, - "": 1, - "passing": 1, - "values": 5, - "accessor": 1, - "doesn": 8, - "debug": 1, - "set.": 1, - "Returns": 10, - "": 2, - "containing": 5, - "current": 5, - "request.": 1, - "reference": 8, - "uploads.": 2, - "": 2, - "": 1, - "objects.": 1, - "Shortcut": 6, - "content_encoding.": 1, - "content_length.": 1, - "content_type.": 1, - "header.": 2, - "referer.": 1, - "user_agent.": 1, - "GET": 1, - "POST": 1, - "with": 26, - "CGI.pm": 2, - "compatible": 1, - "method.": 1, - "alternative": 1, - "accessing": 1, - "parameters.": 3, - "Unlike": 1, - "does": 10, - "": 1, - "allow": 1, - "modifying": 1, - "@values": 1, - "@params": 1, - "A": 2, - "convenient": 1, - "access": 2, - "@fields": 1, - "filename": 68, - "Creates": 2, - "": 3, - "object.": 4, - "Handy": 1, - "remove": 2, - "dependency": 1, - "easy": 1, - "subclassing": 1, - "duck": 1, - "typing": 1, - "well": 2, - "overriding": 1, - "generation": 1, - "middlewares.": 1, - "Parameters": 1, - "take": 5, - "multiple": 5, - "i.e.": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "store": 1, - "plain": 2, - "where": 3, - "": 1, - "scalars": 1, - "": 2, - "array": 7, - "references": 1, - "don": 2, - "ARRAY": 1, - "foo": 6, - "t": 18, - "parse": 1, - "more": 2, - "twice": 1, - "efficiency.": 1, - "DISPATCHING": 1, - "wants": 1, - "dispatch": 1, - "route": 1, - "actions": 1, - "paths": 3, - "sure": 1, - "because": 3, - "": 1, - "gives": 2, - "virtual": 1, - "regardless": 1, - "how": 1, - "mounted.": 1, - "hosted": 1, - "scripts": 1, - "even": 4, - "multiplexed": 1, - "tools": 1, - "": 1, - "good": 2, - "idea": 1, - "subclass": 1, - "define": 1, - "uri_for": 2, - "args": 3, - "@": 38, - "So": 1, - "say": 1, - "link": 1, - "signoff": 1, - "": 1, - "empty.": 1, - "older": 1, - "behavior": 3, - "just": 2, - "instead.": 1, - "Cookie": 2, - "handling": 1, - "simplified": 1, - "always": 5, - "string": 5, - "encoding": 2, - "decoding": 1, - "them": 5, - "totally": 1, - "up": 1, - "framework.": 1, - "Also": 1, - "": 1, - "now": 1, - "returns": 4, - "": 1, - "Simple": 1, - "longer": 1, - "have": 2, - "wacky": 1, - "undef": 17, - "instead": 4, - "simply": 1, - "Tatsuhiko": 2, - "Miyagawa": 2, - "Kazuhiro": 1, - "Osawa": 1, - "Tokuhiro": 2, - "Matsuno": 2, - "": 1, - "": 1, - "LICENSE": 3, - "software": 3, - "SHEBANG#!perl": 5, - "Fast": 3, - "XML": 2, - "XS": 2, - "File": 54, - "Spec": 13, - "FindBin": 1, - "qw": 35, - "Bin": 3, - "#use": 1, - "lib": 2, - "catdir": 3, - "..": 7, - "_stop": 4, - "SIG": 3, - "exit": 16, - "ENV": 40, - "nginx": 2, - "external": 2, - "fcgi": 2, - "Ext_Request": 1, - "FCGI": 1, - "*STDIN": 2, - "*STDOUT": 6, - "*STDERR": 1, - "int": 2, - "ARGV": 2, - "conv": 2, - "use_attr": 1, - "indent": 1, - "output": 36, - "xml_decl": 1, - "tmpl_path": 2, - "tmpl": 5, - "data": 3, - "nick": 1, - "tree": 2, - "example": 5, - "parent": 5, - "id": 6, - "third_party": 1, - "artist_name": 2, - "venue": 2, - "event": 2, - "date": 2, - "zA": 1, - "Z0": 1, - "die": 38, - "e": 20, - "catfile": 4, - "qq": 18, - "Content": 2, - "type": 69, - "application/xml": 1, - "charset": 2, - "utf": 2, - "r": 14, - "n": 19, - "hash2xml": 1, - "text/html": 1, - "nError": 1, - "last": 17, - "M": 1, - "system": 1, - "Foo": 11, - "Bar": 1, - "@array": 1, - "SHEBANG#!#! perl": 4, - "i": 26, - "o": 17, - "examples/benchmarks/fib.pl": 1, - "Fibonacci": 2, - "Benchmark": 1, - "Calculates": 1, - "Number": 1, - "": 1, - "defaults": 16, - "unspecified": 1, - "fib": 4, - "N": 2, - "F": 24, - "": 1, - "App": 131, - "Ack": 136, - "Next": 27, - "Plugin": 2, - "Basic": 10, - "container": 1, - "functions": 2, - "ack": 38, - "program": 6, - "Version": 1, - "BEGIN": 7, - "types": 26, - "type_wanted": 20, - "mappings": 29, - "ignore_dirs": 12, - "input_from_pipe": 8, - "output_to_pipe": 12, - "dir_sep_chars": 10, - "is_cygwin": 6, - "is_windows": 12, - "Glob": 4, - "Getopt": 6, - "Long": 6, - "_MTN": 2, - "blib": 2, - "CVS": 5, - "RCS": 2, - "SCCS": 2, - "_darcs": 2, - "_sgbak": 2, - "_build": 2, - "actionscript": 2, - "mxml": 2, - "ada": 4, - "adb": 2, - "ads": 2, - "asm": 4, - "batch": 2, - "bat": 2, - "cmd": 2, - "binary": 3, - "Binary": 2, - "T": 2, - "op": 2, - "off": 4, - "tt": 4, - "tt2": 2, - "ttml": 2, - "vb": 4, - "bas": 2, - "cls": 2, - "frm": 2, - "ctl": 2, - "resx": 2, - "verilog": 2, - "vh": 2, - "sv": 2, - "vhdl": 4, - "vhd": 2, - "vim": 4, - "yaml": 4, - "yml": 2, - "xml": 6, - "dtd": 2, - "xsl": 2, - "xslt": 2, - "ent": 2, - "exts": 6, - "each": 14, - "ext": 14, - "mk": 2, - "mak": 2, - "p": 9, - "STDIN": 2, - "O": 4, - "/MSWin32/": 2, - "quotemeta": 5, - "know": 4, - "": 13, - "No": 4, - "serviceable": 1, - "parts": 1, - "inside.": 1, - "should": 6, - "this.": 1, - "FUNCTIONS": 1, - "read_ackrc": 4, - "Reads": 1, - "contents": 2, - ".ackrc": 1, - "arguments.": 1, - "@files": 12, - "ACKRC": 2, - "@dirs": 4, - "HOME": 4, - "USERPROFILE": 2, - "dir": 27, - "bsd_glob": 4, - "GLOB_TILDE": 2, - "open": 7, - "@lines": 21, - "/./": 2, - "s*#/": 2, - "<$fh>": 4, - "chomp": 3, - "close": 19, - "get_command_line_options": 4, - "Gets": 3, - "line": 20, - "arguments": 2, - "tweaking.": 1, - "opt": 291, - "pager": 19, - "ACK_PAGER_COLOR": 7, - "ACK_PAGER": 5, - "getopt_specs": 6, - "after_context": 16, - "before_context": 18, - "val": 26, - "break": 14, - "c": 5, - "count": 23, - "color": 38, - "ACK_COLOR_MATCH": 5, - "ACK_COLOR_FILENAME": 5, - "ACK_COLOR_LINENO": 4, - "column": 4, - "ignore": 7, - "option": 7, - "handled": 2, - "beforehand": 2, - "f": 25, - "flush": 8, - "follow": 7, - "G": 11, - "heading": 18, - "h": 6, - "H": 6, - "invert_file_match": 8, - "lines": 19, - "l": 17, - "regex": 28, - "passthru": 9, - "print0": 7, - "Q": 7, - "show_types": 4, - "smart_case": 3, - "sort_files": 11, - "u": 10, - "w": 4, - "remove_dir_sep": 7, - "delete": 10, - "print_version_statement": 2, - "show_help": 3, - "show_help_types": 2, - "Pod": 4, - "Usage": 4, - "pod2usage": 2, - "verbose": 2, - "exitval": 2, - "dummy": 2, - "wanted": 4, - "no//": 2, - "must": 5, - "later": 2, - "Unknown": 2, - "unshift": 4, - "@ARGV": 12, - "ACK_OPTIONS": 5, - "def_types_from_ARGV": 5, - "filetypes_supported": 5, - "parser": 12, - "Parser": 4, - "configure": 4, - "getoptions": 4, - "to_screen": 10, - "Win32": 9, - "Console": 2, - "ANSI": 3, - "join": 5, - "@ret": 10, - "warn": 22, - "uniq": 4, - "@uniq": 2, - "sort": 8, - "<=>": 2, - "b": 6, - "numerical": 2, - "occurs": 2, - "only": 11, - "once": 4, - "Go": 1, - "through": 6, - "<--type-set>": 1, - "foo=": 1, - "bar": 3, - "<--type-add>": 1, - "xml=": 1, - "Remove": 1, - "supported": 1, - "filetypes": 8, - "into": 6, - "@typedef": 8, - "td": 6, - "Builtin": 4, - "cannot": 4, - "changed.": 4, - "delete_type": 5, - "Type": 2, - "exist": 4, - "...": 2, - "@exts": 8, - ".//": 2, - "Cannot": 4, - "append": 2, - "Removes": 1, - "internal": 1, - "structures": 1, - "type_wanted.": 1, - "Internal": 2, - "error": 4, - "builtin": 2, - "ignoredir_filter": 5, - "Standard": 1, - "filter": 12, - "pass": 1, - "": 1, - "descend_filter.": 1, - "true": 3, - "directory": 8, - "ones": 1, - "we": 7, - "ignore.": 1, - "removes": 1, - "trailing": 1, - "separator": 4, - "there": 6, - "its": 2, - "argument": 1, - "list": 10, - "<$filename>": 1, - "could": 2, - "be.": 1, - "For": 5, - "": 1, - "filetype": 1, - "": 1, - "skipped": 2, - "avoid": 1, - "searching": 6, - "a.": 1, - "constant": 2, - "TEXT": 16, - "basename": 9, - ".*": 2, - "is_searchable": 8, - "lc_basename": 8, - "lc": 5, - "SHEBANG#!#!": 2, - "ruby": 3, - "lua": 2, - "erl": 2, - "hp": 2, - "ython": 2, - "d": 9, - "d.": 2, - "*": 8, - "b/": 4, - "ba": 2, - "z": 2, - "sh": 2, - "search": 11, - "false": 1, - "regular": 3, - "expression": 9, - "found.": 4, - "www": 2, - "U": 2, - "y": 8, - "tr/": 2, - "x": 7, - "w/": 3, - "nOo_/": 2, - "_thpppt": 3, - "_get_thpppt": 3, - "_bar": 3, - "&": 22, - "*I": 2, - "g": 7, - "#.": 6, - ".#": 4, - "I#": 2, - "#I": 6, - "#7": 4, - "results.": 2, - "interactively": 6, - "Print": 6, - "different": 2, - "files.": 6, - "group": 2, - "Same": 8, - "nogroup": 2, - "noheading": 2, - "nobreak": 2, - "Highlight": 2, - "matching": 15, - "text": 6, - "redirected": 2, - "Windows": 4, - "colour": 2, - "COLOR": 6, - "match": 21, - "lineno": 2, - "Set": 3, - "filenames": 7, - "matches": 7, - "numbers.": 2, - "Flush": 2, - "immediately": 2, - "non": 2, - "goes": 2, - "pipe": 4, - "finding": 2, - "Only": 7, - "without": 3, - "searching.": 2, - "PATTERN": 8, - "specified.": 4, - "REGEX": 2, - "REGEX.": 2, - "Sort": 2, - "lexically.": 3, - "invert": 2, - "Print/search": 2, - "g/": 2, - "G.": 2, - "show": 3, - "Show": 2, - "has.": 2, - "inclusion/exclusion": 2, - "All": 4, - "searched": 5, - "Ignores": 2, - ".svn": 3, - "other": 5, - "ignored": 6, - "directories": 9, - "unrestricted": 2, - "Add/Remove": 2, - "dirs": 2, - "R": 2, - "recurse": 2, - "Recurse": 3, - "subdirectories": 2, - "END_OF_HELP": 2, - "VMS": 2, - "vd": 2, - "Term": 6, - "ANSIColor": 8, - "black": 3, - "on_yellow": 3, - "bold": 5, - "green": 3, - "yellow": 3, - "printing": 2, - "qr/": 13, - "last_output_line": 6, - "any_output": 10, - "keep_context": 8, - "@before": 16, - "before_starts_at_line": 10, - "after": 18, - "still": 4, - "next_text": 8, - "has_lines": 4, - "scalar": 2, - "m/": 4, - "regex/": 9, - "next": 9, - "print_match_or_context": 13, - "elsif": 10, - "max": 12, - "nmatches": 61, - "show_filename": 35, - "context_overall_output_count": 6, - "print_blank_line": 2, - "is_binary": 4, - "search_resource": 7, - "is_match": 7, - "starting_line_no": 1, - "match_start": 5, - "match_end": 3, - "Prints": 4, - "out": 2, - "context": 1, - "around": 5, - "match.": 3, - "opts": 2, - "line_no": 12, - "show_column": 4, - "display_filename": 8, - "colored": 6, - "print_first_filename": 2, - "sep": 8, - "output_func": 8, - "print_separator": 2, - "print_filename": 2, - "display_line_no": 4, - "print_line_no": 2, - "regex/go": 2, - "regex/Term": 2, - "substr": 2, - "/eg": 2, - "z/": 2, - "K/": 2, - "z//": 2, - "print_column_no": 2, - "scope": 4, - "TOTAL_COUNT_SCOPE": 2, - "total_count": 10, - "get_total_count": 4, - "reset_total_count": 4, - "search_and_list": 8, - "Optimized": 1, - "lines.": 3, - "ors": 11, - "record": 3, - "show_total": 6, - "print_count": 4, - "print_count0": 2, - "filetypes_supported_set": 9, - "True/False": 1, - "print_files": 4, - "iter": 23, - "iterator": 3, - "<$regex>": 1, - "<$one>": 1, - "stop": 1, - "first.": 1, - "<$ors>": 1, - "<\"\\n\">": 1, - "what": 14, - "filename.": 1, - "print_files_with_matches": 4, - "was": 2, - "repo": 18, - "Repository": 11, - "next_resource": 6, - "print_matches": 4, - "tarballs_work": 4, - ".tar": 2, - ".gz": 2, - "Tar": 4, - "XXX": 4, - "Error": 2, - "checking": 2, - "needs_line_scan": 14, - "reset": 5, - "filetype_setup": 4, - "Minor": 1, - "housekeeping": 1, - "before": 1, - "go": 1, - "expand_filenames": 7, - "expanded": 3, - "globs": 1, - "EXPAND_FILENAMES_SCOPE": 4, - "argv": 12, - "attr": 6, - "foreach": 4, - "pattern": 10, - "@results": 14, - "didn": 2, - "ve": 2, - "tried": 2, - "load": 2, - "GetAttributes": 2, - "got": 2, - "get_starting_points": 4, - "starting": 2, - "@what": 14, - "reslash": 4, - "Assume": 2, - "start_point": 4, - "_match": 8, - "target": 6, - "invert_flag": 4, - "get_iterator": 4, - "Return": 2, - "starting_point": 10, - "g_regex": 4, - "file_filter": 12, - "g_regex/": 6, - "Maybe": 2, - "is_interesting": 4, - "descend_filter": 11, - "error_handler": 5, - "msg": 4, - "follow_symlinks": 6, - "set_up_pager": 3, - "Unable": 2, - "going": 1, - "pipe.": 1, - "exit_from_ack": 5, - "Exit": 1, - "correct": 1, - "code.": 2, - "handed": 1, - "argument.": 1, - "rc": 11, - "Copyright": 2, - "Andy": 2, - "Lester.": 2, - "Artistic": 2, - "License": 2, - "v2.0.": 2, - "End": 3, - "Util": 3, - "Accessor": 1, - "status": 17, - "Scalar": 2, - "shortcut": 2, - "location": 4, - "redirect": 1, - "url": 2, - "clone": 1, - "_finalize_cookies": 2, - "/chr": 1, - "/ge": 1, - "replace": 3, - "LWS": 1, - "single": 1, - "SP": 1, - "//g": 1, - "CR": 1, - "LF": 1, - "since": 1, - "char": 1, - "invalid": 1, - "here": 2, - "header_field_names": 1, - "_body": 2, - "blessed": 1, - "overload": 1, - "Method": 1, - "_bake_cookie": 2, - "push_header": 1, - "@cookie": 7, - "domain": 3, - "_date": 2, - "expires": 7, - "httponly": 1, - "@MON": 1, - "Jan": 1, - "Feb": 1, - "Mar": 1, - "Apr": 1, - "May": 2, - "Jun": 1, - "Jul": 1, - "Aug": 1, - "Sep": 1, - "Oct": 1, - "Nov": 1, - "Dec": 1, - "@WDAY": 1, - "Sun": 1, - "Mon": 1, - "Tue": 1, - "Wed": 1, - "Thu": 1, - "Fri": 1, - "Sat": 1, - "sec": 2, - "min": 3, - "hour": 2, - "mday": 2, - "mon": 2, - "year": 3, - "wday": 2, - "gmtime": 1, - "sprintf": 1, - "WDAY": 1, - "MON": 1, - "response": 5, - "psgi_handler": 1, - "way": 2, - "simple": 2, - "API.": 1, - "Sets": 2, - "gets": 2, - "": 1, - "alias.": 2, - "response.": 1, - "Setter": 2, - "either": 2, - "headers.": 1, - "body_str": 1, - "io": 1, - "sets": 4, - "body.": 1, - "IO": 1, - "Handle": 1, - "": 1, - "X": 2, - "text/plain": 1, - "gzip": 1, - "normalize": 1, - "given": 10, - "string.": 1, - "Users": 1, - "responsible": 1, - "properly": 1, - "": 1, - "names": 1, - "their": 1, - "corresponding": 1, - "": 2, - "everything": 1, - "": 1, - "": 2, - "": 1, - "": 1, - "": 1, - "integer": 1, - "epoch": 1, - "time": 3, - "": 1, - "convert": 1, - "formats": 1, - "<+3M>": 1, - "reference.": 1, - "AUTHOR": 1, - "MAIN": 1, - "main": 3, - "env_is_usable": 3, - "th": 1, - "pt": 1, - "@keys": 2, - "ACK_/": 1, - "@ENV": 1, - "load_colors": 1, - "ACK_SWITCHES": 1, - "Unbuffer": 1, - "mode": 1, - "build_regex": 3, - "nargs": 2, - "Resource": 5, - "file_matching": 2, - "check_regex": 2, - "finder": 1, - "options": 7, - "FILE...": 1, - "DIRECTORY...": 1, - "designed": 1, - "replacement": 1, - "uses": 2, - "": 5, - "searches": 1, - "named": 3, - "FILEs": 1, - "standard": 1, - "PATTERN.": 1, - "By": 2, - "prints": 2, - "also": 7, - "actually": 1, - "let": 1, - "advantage": 1, - ".wango": 1, - "won": 1, - "throw": 1, - "away": 1, - "times": 2, - "symlinks": 1, - "whatever": 1, - "were": 1, - "specified": 3, - "line.": 4, - "default.": 2, - "": 11, - "included": 1, - "search.": 1, - "matched": 1, - "against": 1, - "shell": 4, - "glob.": 1, - "<-i>": 5, - "<-w>": 2, - "<-v>": 3, - "<-Q>": 4, - "relative": 1, - "convenience": 1, - "<-f>": 6, - "<--group>": 2, - "<--nogroup>": 2, - "groups": 1, - "with.": 1, - "interactively.": 1, - "result": 1, - "per": 1, - "grep.": 2, - "redirected.": 1, - "<-H>": 1, - "<--with-filename>": 1, - "<-h>": 1, - "<--no-filename>": 1, - "Suppress": 1, - "prefixing": 1, - "searched.": 1, - "<--help>": 1, - "short": 1, - "help": 2, - "statement.": 1, - "<--ignore-case>": 1, - "Ignore": 3, - "case": 3, - "strings.": 1, - "applies": 3, - "regexes": 3, - "<-g>": 5, - "<-G>": 3, - "options.": 4, - "": 2, - "etc": 2, - "directories.": 2, - "mason": 1, - "may": 3, - "wish": 1, - "include": 1, - "<--ignore-dir=data>": 1, - "<--noignore-dir>": 1, - "normally": 1, - "perhaps": 1, - "research": 1, - "<.svn/props>": 1, - "name.": 1, - "Nested": 1, - "": 1, - "NOT": 1, - "supported.": 1, - "specify": 1, - "<--ignore-dir=foo>": 1, - "taken": 1, - "account": 1, - "explicitly": 1, - "": 2, - "Multiple": 1, - "<--line>": 1, - "comma": 1, - "separated": 2, - "<--line=3,5,7>": 1, - "<--line=4-7>": 1, - "works.": 1, - "ascending": 1, - "order": 2, - "matter": 1, - "<-l>": 2, - "<--files-with-matches>": 1, - "text.": 1, - "<-L>": 1, - "<--files-without-matches>": 1, - "equivalent": 2, - "specifying": 1, - "Specify": 1, - "explicitly.": 1, - "helpful": 2, - "": 1, - "via": 1, - "": 4, - "": 4, - "environment": 2, - "variables.": 1, - "Using": 3, - "suppress": 3, - "grouping": 3, - "coloring": 3, - "piping": 3, - "does.": 2, - "<--passthru>": 1, - "whether": 1, - "they": 1, - "expression.": 1, - "Highlighting": 1, - "though": 1, - "highlight": 1, - "seeing": 1, - "tail": 1, - "/access.log": 1, - "<--print0>": 1, - "works": 1, - "conjunction": 1, - "null": 1, - "byte": 1, - "usual": 1, - "newline.": 1, - "dealing": 1, - "whitespace": 1, - "html": 1, - "xargs": 2, - "rm": 1, - "<--literal>": 1, - "Quote": 1, - "metacharacters": 2, - "treated": 1, - "literal.": 1, - "<-r>": 1, - "<-R>": 1, - "<--recurse>": 1, - "compatibility": 2, - "turning": 1, - "<--no-recurse>": 1, - "off.": 1, - "<--smart-case>": 1, - "<--no-smart-case>": 1, - "strings": 1, - "uppercase": 1, - "characters.": 1, - "similar": 1, - "": 1, - "vim.": 1, - "overrides": 2, - "option.": 1, - "<--sort-files>": 1, - "Sorts": 1, - "Use": 6, - "listings": 1, - "deterministic": 1, - "runs": 1, - "<--show-types>": 1, - "Outputs": 1, - "associates": 1, - "Works": 1, - "<--thpppt>": 1, - "Display": 1, - "important": 1, - "Bill": 1, - "Cat": 1, - "logo.": 1, - "exact": 1, - "spelling": 1, - "<--thpppppt>": 1, - "important.": 1, - "make": 3, - "perl": 8, - "php": 2, - "python": 1, - "location.": 1, - "variable": 1, - "specifies": 1, - "placed": 1, - "front": 1, - "explicit": 1, - "Specifies": 4, - "recognized": 1, - "clear": 2, - "dark": 1, - "underline": 1, - "underscore": 2, - "blink": 1, - "reverse": 1, - "concealed": 1, - "red": 1, - "blue": 1, - "magenta": 1, - "on_black": 1, - "on_red": 1, - "on_green": 1, - "on_blue": 1, - "on_magenta": 1, - "on_cyan": 1, - "on_white.": 1, - "Case": 1, - "significant.": 1, - "Underline": 1, - "reset.": 1, - "alone": 1, - "foreground": 1, - "on_color": 1, - "background": 1, - "color.": 2, - "<--color-filename>": 1, - "printed": 1, - "<--color>": 1, - "mode.": 1, - "<--color-lineno>": 1, - "See": 1, - "": 1, - "specifications.": 1, - "": 1, - "": 1, - "": 1, - "send": 1, - "output.": 1, - "except": 1, - "assume": 1, - "both": 1, - "understands": 1, - "sequences.": 1, - "never": 1, - "ACK": 2, - "OTHER": 1, - "TOOLS": 1, - "Vim": 3, - "integration": 3, - "integrates": 1, - "easily": 2, - "editor.": 1, - "<.vimrc>": 1, - "grepprg": 1, - "That": 3, - "examples": 1, - "<-a>": 1, - "flags.": 1, - "Now": 1, - "step": 1, - "Dumper": 1, - "perllib": 1, - "Emacs": 1, - "Phil": 1, - "Jackson": 1, - "put": 1, - "": 1, - "extension": 1, - "": 1, - "TextMate": 2, - "Pedro": 1, - "Melo": 1, - "who": 1, - "writes": 1, - "Shell": 2, - "Code": 1, - "greater": 1, - "normal": 1, - "<$?=256>": 1, - "": 1, - "backticks.": 1, - "errors": 1, - "used.": 1, - "least": 1, - "returned.": 1, - "DEBUGGING": 1, - "PROBLEMS": 1, - "expecting": 1, - "forgotten": 1, - "<--noenv>": 1, - "<.ackrc>": 1, - "remember.": 1, - "Put": 1, - "definitions": 1, - "it.": 1, - "smart": 1, - "too.": 1, - "there.": 1, - "working": 1, - "big": 1, - "codesets": 1, - "ideal": 1, - "sending": 1, - "": 1, - "prefer": 1, - "doubt": 1, - "day": 1, - "find": 1, - "trouble": 1, - "spots": 1, - "website": 1, - "visitor.": 1, - "had": 1, - "problem": 1, - "loading": 1, - "": 1, - "took": 1, - "log": 3, - "scanned": 1, - "twice.": 1, - "aa.bb.cc.dd": 1, - "/path/to/access.log": 1, - "B5": 1, - "troublesome.gif": 1, - "first": 1, - "finds": 2, - "IP.": 1, - "second": 1, - "troublesome": 1, - "GIF": 1, - "shows": 1, - "previous": 1, - "five": 1, - "case.": 1, - "Share": 1, - "knowledge": 1, - "Join": 1, - "mailing": 1, - "list.": 1, - "Send": 1, - "me": 1, - "tips": 1, - "here.": 1, - "FAQ": 1, - "isn": 1, - "driven": 1, - "filetype.": 1, - "": 1, - "kind": 1, - "ignores": 1, - "switch": 1, - "you.": 1, - "source": 2, - "compiled": 1, - "control": 1, - "metadata": 1, - "wastes": 1, - "lot": 1, - "those": 2, - "returning": 1, - "great": 1, - "did": 1, - "only.": 1, - "perfectly": 1, - "<-p>": 1, - "<-n>": 1, - "switches.": 1, - "select": 1, - "update.": 1, - "change": 1, - "PHP": 1, - "Unix": 1, - "Can": 1, - "recognize": 1, - "<.xyz>": 1, - "already": 2, - "program/package": 1, - "ack.": 2, - "Yes": 1, - "know.": 1, - "nothing": 1, - "suggest": 1, - "symlink": 1, - "points": 1, - "": 1, - "crucial": 1, - "benefits": 1, - "having": 1, - "Regan": 1, - "Slaven": 1, - "ReziE": 1, - "<0x107>": 1, - "Mark": 1, - "Stosberg": 1, - "David": 1, - "Alan": 1, - "Pisoni": 1, - "Adriano": 1, - "Ferreira": 1, - "James": 1, - "Keenan": 1, - "Leland": 1, - "Johnson": 1, - "Ricardo": 1, - "Signes": 1, - "Pete": 1, - "Krawczyk.": 1, - "files_defaults": 3, - "skip_dirs": 3, - "CORE": 3, - "curdir": 1, - "updir": 1, - "__PACKAGE__": 1, - "parms": 15, - "@queue": 8, - "_setup": 2, - "fullpath": 12, - "local": 5, - "_candidate_files": 2, - "sort_standard": 2, - "cmp": 2, - "sort_reverse": 1, - "@parts": 3, - "passed_parms": 6, - "parm": 1, - "badkey": 1, - "dh": 4, - "opendir": 1, - "@newfiles": 5, - "sort_sub": 4, - "readdir": 1, - "has_stat": 3, - "closedir": 1, - "": 1, - "updated": 1, - "update": 1, - "message": 1, - "bak": 1, - "core": 1, - "swp": 1, - "js": 1, - "1": 1, - "str": 12, - "regex_is_lc": 2, - "S": 1, - ".*//": 1, - "_my_program": 3, - "Basename": 2, - "FAIL": 12, - "confess": 2, - "@ISA": 2, - "could_be_binary": 4, - "opened": 1, - "size": 5, - "_000": 1, - "sysread": 1, - "regex/m": 1, - "readline": 1, - "nexted": 3 - }, - "XML": { - "": 11, - "version=": 20, - "encoding=": 8, - "": 7, - "ToolsVersion=": 6, - "DefaultTargets=": 5, - "xmlns=": 7, - "": 21, - "Project=": 12, - "Condition=": 37, - "": 26, - "": 6, - "Debug": 10, - "": 6, - "": 6, - "AnyCPU": 10, - "": 6, - "": 5, - "{": 6, - "D377F": 1, - "-": 90, - "A": 20, - "A798": 1, - "B3FD04C": 1, - "}": 6, - "": 5, - "": 4, - "Exe": 4, - "": 4, - "": 1, - "vbproj_sample.Module1": 1, - "": 1, - "": 5, - "vbproj_sample": 1, - "": 5, - "": 4, - "vbproj": 3, - "sample": 6, - "": 4, - "": 3, - "": 3, - "": 1, - "Console": 3, - "": 1, - "": 5, - "v4.5.1": 5, - "": 5, - "": 3, - "true": 24, - "": 3, - "": 25, - "": 6, - "": 6, - "": 5, - "": 5, - "": 6, - "full": 4, - "": 6, - "": 2, - "": 2, - "": 2, - "": 2, - "": 8, - "bin": 11, - "": 8, - "": 5, - "sample.xml": 2, - "": 5, - "": 2, - "": 2, - "pdbonly": 3, - "false": 10, - "": 7, - "": 7, - "Release": 6, - "": 1, - "On": 2, - "": 1, - "": 1, - "Binary": 1, - "": 1, - "": 1, - "Off": 1, - "": 1, - "": 1, - "": 1, - "": 26, - "": 30, - "Include=": 78, - "": 26, - "": 10, - "": 3, - "True": 13, - "": 3, - "": 3, - "Application.myapp": 1, - "": 3, - "": 3, - "": 1, - "": 1, - "Resources.resx": 1, - "Settings.settings": 1, - "": 1, - "": 1, - "": 1, - "": 3, - "VbMyResourcesResXFileCodeGenerator": 1, - "": 3, - "": 3, - "Resources.Designer.vb": 1, - "": 3, - "": 2, - "My.Resources": 1, - "": 2, - "": 1, - "Designer": 1, - "": 1, - "": 1, - "": 5, - "MyApplicationCodeGenerator": 1, - "Application.Designer.vb": 1, - "": 2, - "SettingsSingleFileGenerator": 1, - "My": 1, - "Settings.Designer.vb": 1, - "": 7, - "": 3, - "MyCommon": 1, - "": 3, - "": 1, - "Name=": 1, - "": 1, - "Text=": 1, - "": 1, - "": 1, - "xmlns": 2, - "ea=": 2, - "": 1, - "organisation=": 3, - "module=": 3, - "revision=": 3, - "status=": 1, - "": 3, - "this": 77, - "is": 123, - "a": 128, - "easyant": 3, - "module.ivy": 1, - "file": 3, - "for": 60, - "java": 1, - "standard": 1, - "application": 2, - "": 3, - "": 1, - "": 1, - "name=": 270, - "value=": 11, - "": 1, - "": 1, - "": 1, - "": 1, - "": 2, - "visibility=": 2, - "description=": 4, - "": 1, - "": 1, - "": 4, - "org=": 1, - "rev=": 1, - "conf=": 1, - "default": 9, - "junit": 2, - "test": 7, - "/": 6, - "": 1, - "": 1, - "": 2, - "This": 21, - "module.ant": 1, - "optionnal": 1, - "and": 44, - "designed": 1, - "to": 164, - "customize": 1, - "your": 8, - "build": 1, - "with": 23, - "own": 2, - "specific": 8, - "target.": 1, - "": 2, - "": 2, - "my": 2, - "awesome": 1, - "additionnal": 1, - "target": 6, - "": 2, - "": 2, - "extensionOf=": 1, - "i": 2, - "would": 2, - "love": 1, - "could": 1, - "easily": 1, - "plug": 1, - "pre": 1, - "compile": 1, - "step": 1, - "": 1, - "": 2, - "": 2, - "cfa7a11": 1, - "a5cd": 1, - "bd7b": 1, - "b210d4d51a29": 1, - "fsproj_sample": 2, - "": 1, - "": 1, - "fsproj": 1, - "": 2, - "": 2, - "": 6, - "DEBUG": 3, - ";": 52, - "TRACE": 6, - "": 6, - "": 8, - "": 8, - "fsproj_sample.XML": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "": 5, - "": 1, - "": 1, - "": 1, - "": 1, - "": 2, - "(": 65, - "MSBuildExtensionsPath32": 2, - ")": 58, - "..": 1, - "Microsoft": 2, - "SDKs": 1, - "F#": 1, - "Framework": 1, - "v4.0": 1, - "Microsoft.FSharp.Targets": 2, - "": 2, - "": 1, - "": 1, - "VisualStudio": 1, - "v": 1, - "VisualStudioVersion": 1, - "FSharp": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "c67af951": 1, - "d8d6376993e7": 1, - "": 2, - "Properties": 3, - "": 2, - "nproj_sample": 2, - "": 1, - "": 1, - "": 1, - "Net": 1, - "": 1, - "": 1, - "ProgramFiles": 1, - "Nemerle": 3, - "": 1, - "": 1, - "NemerleBinPathRoot": 1, - "NemerleVersion": 1, - "": 1, - "nproj": 1, - "": 4, - "prompt": 4, - "": 4, - "OutputPath": 1, - "AssemblyName": 1, - ".xml": 1, - "": 3, - "": 3, - "": 1, - "False": 1, - "": 1, - "": 2, - "Nemerle.dll": 1, - "": 2, - "": 1, - "Nemerle.Linq.dll": 1, - "": 1, - "": 1, - "": 1, - "TS": 1, - "": 1, - "language=": 1, - "": 1, - "": 2, - "MainWindow": 1, - "": 2, - "": 8, - "": 8, - "filename=": 8, - "line=": 8, - "": 8, - "United": 1, - "Kingdom": 1, - "": 8, - "": 8, - "Reino": 1, - "Unido": 1, - "": 8, - "": 8, - "God": 1, - "save": 2, - "the": 261, - "Queen": 1, - "Deus": 1, - "salve": 1, - "Rainha": 1, - "England": 1, - "Inglaterra": 1, - "Wales": 1, - "Gales": 1, - "Scotland": 1, - "Esc": 1, - "cia": 1, - "Northern": 1, - "Ireland": 1, - "Irlanda": 1, - "Norte": 1, - "Portuguese": 1, - "Portugu": 1, - "s": 3, - "English": 1, - "Ingl": 1, - "": 1, - "": 1, - "": 1, - "compatVersion=": 1, - "": 1, - "FreeMedForms": 1, - "": 1, - "": 1, - "C": 1, - "by": 14, - "Eric": 1, - "MAEKER": 1, - "MD": 1, - "": 1, - "": 1, - "GPLv3": 1, - "": 1, - "": 1, - "Patient": 1, - "data": 2, - "": 1, - "The": 75, - "XML": 1, - "form": 1, - "loader/saver": 1, - "FreeMedForms.": 1, - "": 1, - "http": 1, - "//www.freemedforms.com/": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "D9BF15": 1, - "D10": 1, - "ABAD688E8B": 1, - "csproj_sample": 1, - "csproj": 1, - "": 1, - "": 1, - "ReactiveUI": 2, - "": 1, - "": 1, - "": 120, - "": 120, - "IObservedChange": 5, - "generic": 3, - "interface": 4, - "that": 94, - "replaces": 1, - "non": 1, - "PropertyChangedEventArgs.": 1, - "Note": 7, - "it": 16, - "used": 19, - "both": 2, - "Changing": 5, - "i.e.": 23, - "Changed": 4, - "Observables.": 2, - "In": 6, - "future": 2, - "will": 65, - "be": 57, - "Covariant": 1, - "which": 12, - "allow": 1, - "simpler": 1, - "casting": 1, - "between": 15, - "changes.": 2, - "": 121, - "": 120, - "object": 42, - "has": 16, - "raised": 1, - "change.": 12, - "name": 7, - "of": 75, - "property": 74, - "changed": 18, - "on": 35, - "Sender.": 1, - "value": 44, - "changed.": 9, - "IMPORTANT": 1, - "NOTE": 1, - "often": 3, - "not": 9, - "set": 41, - "performance": 1, - "reasons": 1, - "unless": 1, - "you": 20, - "have": 17, - "explicitly": 1, - "requested": 1, - "an": 88, - "Observable": 56, - "via": 8, - "method": 34, - "such": 5, - "as": 25, - "ObservableForProperty.": 1, - "To": 4, - "retrieve": 3, - "use": 5, - "Value": 3, - "extension": 2, - "method.": 2, - "IReactiveNotifyPropertyChanged": 6, - "represents": 4, - "extended": 1, - "version": 3, - "INotifyPropertyChanged": 1, - "also": 17, - "exposes": 1, - "IEnableLogger": 1, - "dummy": 1, - "attaching": 1, - "any": 11, - "class": 11, - "give": 1, - "access": 3, - "Log": 2, - "When": 5, - "called": 5, - "fire": 11, - "change": 26, - "notifications": 22, - "neither": 3, - "traditional": 3, - "nor": 3, - "until": 7, - "return": 11, - "disposed.": 3, - "": 36, - "An": 26, - "when": 38, - "disposed": 4, - "reenables": 3, - "notifications.": 5, - "": 36, - "Represents": 4, - "fires": 6, - "*before*": 2, - "about": 5, - "should": 10, - "duplicate": 2, - "if": 27, - "same": 8, - "multiple": 6, - "times.": 4, - "*after*": 2, - "TSender": 1, - "helper": 5, - "adds": 2, - "typed": 2, - "versions": 2, - "Changed.": 1, - "IReactiveCollection": 3, - "collection": 27, - "can": 11, - "notify": 3, - "its": 4, - "contents": 2, - "are": 13, - "either": 1, - "items": 27, - "added/removed": 1, - "or": 24, - "itself": 2, - "changes": 13, - ".": 20, - "It": 1, - "important": 6, - "implement": 5, - "Changing/Changed": 1, - "from": 12, - "semantically": 3, - "Fires": 14, - "added": 6, - "once": 4, - "per": 2, - "item": 19, - "added.": 4, - "Functions": 2, - "add": 2, - "AddRange": 2, - "provided": 14, - "was": 6, - "before": 8, - "going": 4, - "collection.": 6, - "been": 5, - "removed": 4, - "providing": 20, - "removed.": 4, - "whenever": 18, - "number": 9, - "in": 45, - "new": 10, - "Count.": 4, - "previous": 2, - "Provides": 4, - "Item": 4, - "implements": 8, - "IReactiveNotifyPropertyChanged.": 4, - "only": 18, - "enabled": 8, - "ChangeTrackingEnabled": 2, - "True.": 2, - "Enables": 2, - "ItemChanging": 2, - "ItemChanged": 2, - "properties": 29, - "implementing": 2, - "rebroadcast": 2, - "through": 3, - "ItemChanging/ItemChanged.": 2, - "T": 1, - "type": 23, - "specified": 7, - "Observables": 4, - "IMessageBus": 1, - "act": 2, - "simple": 2, - "way": 2, - "ViewModels": 3, - "other": 9, - "objects": 4, - "communicate": 2, - "each": 7, - "loosely": 2, - "coupled": 2, - "way.": 2, - "Specifying": 2, - "messages": 22, - "go": 2, - "where": 4, - "done": 2, - "combination": 2, - "Type": 9, - "message": 30, - "well": 2, - "additional": 3, - "parameter": 6, - "unique": 12, - "string": 13, - "distinguish": 12, - "arbitrarily": 2, - "client.": 2, - "Listen": 4, - "provides": 6, - "Message": 2, - "RegisterMessageSource": 4, - "SendMessage.": 2, - "": 12, - "listen": 6, - "to.": 7, - "": 12, - "": 84, - "identical": 11, - "types": 10, - "one": 27, - "purpose": 10, - "leave": 10, - "null.": 10, - "": 83, - "Determins": 2, - "particular": 2, - "registered.": 2, - "message.": 1, - "posted": 3, - "Type.": 2, - "Registers": 3, - "representing": 20, - "stream": 7, - "send.": 4, - "Another": 2, - "part": 2, - "code": 4, - "then": 3, - "call": 5, - "Observable.": 6, - "subscribed": 2, - "sent": 2, - "out": 4, - "provided.": 5, - "Sends": 2, - "single": 2, - "using": 9, - "contract.": 2, - "Consider": 2, - "instead": 2, - "sending": 2, - "response": 2, - "events.": 2, - "actual": 2, - "send": 3, - "returns": 5, - "current": 10, - "logger": 2, - "allows": 15, - "log": 2, - "attached.": 1, - "structure": 1, - "representation": 1, - "memoizing": 2, - "cache": 14, - "evaluate": 1, - "function": 13, - "but": 7, - "keep": 1, - "recently": 3, - "evaluated": 1, - "parameters.": 1, - "Since": 1, - "mathematical": 2, - "sense": 1, - "key": 12, - "*always*": 1, - "maps": 1, - "corresponding": 2, - "value.": 2, - "calculation": 8, - "function.": 6, - "returned": 2, - "Constructor": 2, - "whose": 7, - "results": 6, - "want": 2, - "Tag": 1, - "user": 2, - "defined": 1, - "size": 1, - "maintain": 1, - "after": 1, - "old": 1, - "start": 1, - "thrown": 1, - "out.": 1, - "result": 3, - "gets": 1, - "evicted": 2, - "because": 2, - "Invalidate": 2, - "Evaluates": 1, - "returning": 1, - "cached": 2, - "possible": 1, - "pass": 2, - "optional": 2, - "parameter.": 1, - "Ensure": 1, - "next": 1, - "time": 3, - "queried": 1, - "called.": 1, - "all": 4, - "Returns": 5, - "values": 4, - "currently": 2, - "MessageBus": 3, - "bus.": 1, - "scheduler": 11, - "post": 2, - "RxApp.DeferredScheduler": 2, - "default.": 2, - "Current": 1, - "RxApp": 1, - "global": 1, - "object.": 3, - "ViewModel": 8, - "another": 3, - "Return": 1, - "instance": 2, - "type.": 3, - "registered": 1, - "ObservableAsPropertyHelper": 6, - "help": 1, - "backed": 1, - "read": 3, - "still": 1, - "created": 2, - "directly": 1, - "more": 16, - "ToProperty": 2, - "ObservableToProperty": 1, - "methods.": 2, - "so": 1, - "output": 1, - "chained": 2, - "example": 2, - "property.": 12, - "Constructs": 4, - "base": 3, - "on.": 6, - "action": 2, - "take": 2, - "typically": 1, - "t": 2, - "bindings": 13, - "null": 4, - "OAPH": 2, - "at": 2, - "startup.": 1, - "initial": 28, - "normally": 6, - "Dispatcher": 3, - "based": 9, - "last": 1, - "Exception": 1, - "steps": 1, - "taken": 1, - "ensure": 3, - "never": 3, - "complete": 1, - "fail.": 1, - "Converts": 2, - "automatically": 3, - "onChanged": 2, - "raise": 2, - "notification.": 2, - "equivalent": 2, - "convenient.": 1, - "Expression": 7, - "initialized": 2, - "backing": 9, - "field": 10, - "ReactiveObject": 11, - "ObservableAsyncMRUCache": 2, - "memoization": 2, - "asynchronous": 4, - "expensive": 2, - "compute": 1, - "MRU": 1, - "fixed": 1, - "limit": 5, - "cache.": 5, - "guarantees": 6, - "given": 11, - "flight": 2, - "subsequent": 1, - "requests": 4, - "wait": 3, - "first": 1, - "empty": 1, - "web": 6, - "image": 1, - "receives": 1, - "two": 1, - "concurrent": 5, - "issue": 2, - "WebRequest": 1, - "does": 1, - "mean": 1, - "request": 3, - "Concurrency": 1, - "limited": 1, - "maxConcurrent": 1, - "too": 1, - "many": 1, - "operations": 6, - "progress": 1, - "further": 1, - "queued": 1, - "slot": 1, - "available.": 1, - "performs": 1, - "asyncronous": 1, - "async": 3, - "CPU": 1, - "Observable.Return": 1, - "may": 1, - "result.": 2, - "*must*": 1, - "equivalently": 1, - "input": 2, - "being": 1, - "memoized": 1, - "calculationFunc": 2, - "depends": 1, - "varables": 1, - "than": 5, - "unpredictable.": 1, - "reached": 2, - "discarded.": 4, - "maximum": 2, - "regardless": 2, - "caches": 2, - "server.": 2, - "clean": 1, - "up": 25, - "manage": 1, - "disk": 1, - "download": 1, - "temporary": 1, - "folder": 1, - "onRelease": 1, - "delete": 1, - "file.": 1, - "run": 7, - "defaults": 1, - "TaskpoolScheduler": 2, - "Issues": 1, - "fetch": 1, - "operation.": 1, - "operation": 2, - "finishes.": 1, - "If": 6, - "immediately": 3, - "upon": 1, - "subscribing": 1, - "returned.": 2, - "provide": 2, - "synchronous": 1, - "AsyncGet": 1, - "resulting": 1, - "Works": 2, - "like": 2, - "SelectMany": 2, - "memoizes": 2, - "selector": 5, - "calls.": 2, - "addition": 3, - "no": 4, - "selectors": 2, - "running": 4, - "concurrently": 2, - "queues": 2, - "rest.": 2, - "very": 2, - "services": 2, - "avoid": 2, - "potentially": 2, - "spamming": 2, - "server": 2, - "hundreds": 2, - "requests.": 2, - "similar": 3, - "passed": 1, - "SelectMany.": 1, - "similarly": 1, - "ObservableAsyncMRUCache.AsyncGet": 1, - "must": 2, - "sense.": 1, - "flattened": 2, - "selector.": 2, - "overload": 2, - "useful": 2, - "making": 3, - "service": 1, - "several": 1, - "places": 1, - "paths": 1, - "already": 1, - "configured": 1, - "ObservableAsyncMRUCache.": 1, - "notification": 6, - "Attempts": 1, - "expression": 3, - "expression.": 1, - "entire": 1, - "able": 1, - "followed": 1, - "otherwise": 1, - "Given": 3, - "fully": 3, - "filled": 1, - "SetValueToProperty": 1, - "apply": 3, - "target.property": 1, - "This.GetValue": 1, - "observed": 1, - "onto": 1, - "convert": 2, - "stream.": 3, - "ValueIfNotDefault": 1, - "filters": 1, - "BindTo": 1, - "takes": 1, - "applies": 1, - "Conceptually": 1, - "child": 2, - "without": 1, - "checks.": 1, - "set.": 3, - "x.Foo.Bar.Baz": 1, - "disconnects": 1, - "binding.": 1, - "ReactiveCollection.": 1, - "ReactiveCollection": 1, - "existing": 3, - "list.": 2, - "list": 1, - "populate": 1, - "anything": 2, - "Change": 2, - "Tracking": 2, - "Creates": 3, - "adding": 2, - "completes": 4, - "optionally": 2, - "ensuring": 2, - "delay.": 2, - "withDelay": 2, - "leak": 2, - "Timer.": 2, - "always": 4, - "UI": 2, - "thread.": 3, - "put": 2, - "into": 2, - "populated": 4, - "faster": 2, - "delay": 2, - "Select": 3, - "item.": 3, - "creating": 2, - "collections": 1, - "updated": 1, - "respective": 1, - "Model": 1, - "updated.": 1, - "Collection.Select": 1, - "mirror": 1, - "ObservableForProperty": 14, - "ReactiveObject.": 1, - "unlike": 13, - "Selector": 1, - "classes": 2, - "INotifyPropertyChanged.": 1, - "monitor": 1, - "RaiseAndSetIfChanged": 2, - "Setter": 2, - "write": 2, - "assumption": 4, - "named": 2, - "RxApp.GetFieldNameForPropertyNameFunc.": 2, - "almost": 2, - "keyword.": 2, - "newly": 2, - "intended": 5, - "Silverlight": 2, - "WP7": 1, - "reflection": 1, - "cannot": 1, - "private": 1, - "field.": 1, - "Reference": 1, - "Use": 15, - "custom": 4, - "raiseAndSetIfChanged": 1, - "doesn": 1, - "x": 1, - "x.SomeProperty": 1, - "suffice.": 1, - "RaisePropertyChanging": 2, - "mock": 4, - "scenarios": 4, - "manually": 4, - "fake": 4, - "invoke": 4, - "raisePropertyChanging": 4, - "faking": 4, - "RaisePropertyChanged": 2, - "helps": 1, - "make": 2, - "them": 1, - "compatible": 1, - "Rx.Net.": 1, - "declare": 1, - "initialize": 1, - "derive": 1, - "properties/methods": 1, - "MakeObjectReactiveHelper.": 1, - "InUnitTestRunner": 1, - "attempts": 1, - "determine": 1, - "heuristically": 1, - "unit": 3, - "framework.": 1, - "we": 1, - "determined": 1, - "framework": 1, - "running.": 1, - "GetFieldNameForProperty": 1, - "convention": 2, - "GetFieldNameForPropertyNameFunc.": 1, - "needs": 1, - "found.": 1, - "name.": 1, - "DeferredScheduler": 1, - "schedule": 2, - "work": 2, - "normal": 2, - "mode": 2, - "DispatcherScheduler": 1, - "Unit": 1, - "Test": 1, - "Immediate": 1, - "simplify": 1, - "writing": 1, - "common": 1, - "tests.": 1, - "background": 1, - "modes": 1, - "TPL": 1, - "Task": 1, - "Pool": 1, - "Threadpool": 1, - "Set": 3, - "provider": 1, - "usually": 1, - "entry": 1, - "MessageBus.Current.": 1, - "override": 1, - "naming": 1, - "one.": 1, - "WhenAny": 12, - "observe": 12, - "constructors": 12, - "need": 12, - "setup.": 12, - "": 1, - "": 1, - "": 10, - "": 3, - "FC737F1": 1, - "C7A5": 1, - "A066": 1, - "A32D752A2FF": 1, - "": 3, - "": 3, - "cpp": 1, - "c": 1, - "cc": 1, - "cxx": 1, - "def": 1, - "odl": 1, - "idl": 1, - "hpj": 1, - "bat": 1, - "asm": 1, - "asmx": 1, - "": 3, - "": 10, - "BD": 1, - "b04": 1, - "EB": 1, - "FBE52EBFB": 1, - "h": 1, - "hh": 1, - "hpp": 1, - "hxx": 1, - "hm": 1, - "inl": 1, - "inc": 1, - "xsd": 1, - "DA6AB6": 1, - "F800": 1, - "c08": 1, - "B7A": 1, - "BB121AAD01": 1, - "rc": 1, - "ico": 1, - "cur": 1, - "bmp": 1, - "dlg": 1, - "rc2": 1, - "rct": 1, - "rgs": 1, - "gif": 1, - "jpg": 1, - "jpeg": 1, - "jpe": 1, - "resx": 1, - "tiff": 1, - "tif": 1, - "png": 1, - "wav": 1, - "mfcribbon": 1, - "ms": 1, - "": 2, - "": 4, - "Header": 2, - "Files": 7, - "": 2, - "": 2, - "Resource": 2, - "": 1, - "": 8, - "Source": 3, - "": 6, - "": 2, - "": 1, - "Label=": 11, - "": 2, - "Win32": 2, - "": 2, - "BF6EED48": 1, - "BF18": 1, - "C54": 1, - "F": 1, - "BBF19EEDC7C": 1, - "": 1, - "ManagedCProj": 1, - "": 1, - "vcxprojsample": 1, - "": 2, - "Application": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "v120": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "Unicode": 2, - "": 2, - "": 4, - "": 4, - "": 2, - "": 2, - "": 2, - "Level3": 2, - "": 1, - "Disabled": 1, - "": 1, - "": 2, - "WIN32": 2, - "_DEBUG": 1, - "%": 2, - "PreprocessorDefinitions": 2, - "": 2, - "": 4, - "": 4, - "": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "NDEBUG": 1, - "Create": 2, - "standalone=": 1, - "": 1, - "4": 1, - "0": 2, - "": 1, - "storage_type_id=": 1, - "": 14, - "moduleId=": 14, - "": 2, - "id=": 141, - "buildSystemId=": 2, - "": 2, - "": 2, - "": 12, - "point=": 12, - "": 2, - "": 7, - "": 2, - "artifactName=": 2, - "buildArtefactType=": 2, - "buildProperties=": 2, - "cleanCommand=": 2, - "cdt": 2, - "managedbuild": 2, - "config": 2, - "gnu": 2, - "exe": 2, - "debug": 1, - "1803931088": 1, - "parent=": 2, - "": 2, - "resourcePath=": 2, - "": 2, - "superClass=": 42, - "": 2, - "": 2, - "buildPath=": 2, - "keepEnvironmentInBuildfile=": 2, - "managedBuildOn=": 2, - "": 12, - "": 4, - "": 8, - "": 8, - "defaultValue=": 2, - "": 4, - "kind=": 6, - "paths=": 4, - "": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "flags=": 2, - "": 2, - "": 2, - "": 2, - "release": 1, - "32754498": 1, - "projectType=": 1, - "": 5, - "enabled=": 125, - "problemReportingEnabled=": 5, - "selectedProfileId=": 5, - "": 40, - "": 40, - "": 40, - "filePath=": 40, - "": 80, - "": 40, - "": 40, - "": 40, - "arguments=": 40, - "command=": 40, - "useDefault=": 40, - "": 40, - "": 40, - "": 4, - "instanceId=": 4, - "": 4, - "": 1 - }, - "MTML": { - "<$mt:Var>": 15, - "name=": 19, - "value=": 9, - "": 1, - "op=": 8, - "setvar=": 9, - "": 1, - "<": 2, - "a": 1, - "href": 1, - "<$mt:CategoryLabel>": 1, - "remove_html=": 1, - "": 1, - "": 1, - "": 1, - "function=": 1, - "": 1, - "gt=": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 2, - "from=": 2, - "to=": 2, - "div": 1, - "class": 1, - "col_num": 1, - "": 2, - "": 1 - }, - "Lasso": { - "[": 22, - "]": 23, - "//": 169, - "-": 2248, - "": 6, - "2009": 14, - "09": 10, - "04": 8, - "JS": 126, - "Added": 40, - "content_body": 14, - "tag": 11, - "for": 65, - "compatibility": 4, - "with": 25, - "pre": 4, - "8": 6, - "5": 4, - "05": 4, - "07": 6, - "timestamp": 4, - "to": 98, - "knop_cachestore": 4, - "and": 52, - "maxage": 2, - "parameter": 8, - "knop_cachefetch": 4, - "Corrected": 8, - "construction": 2, - "of": 24, - "cache_name": 2, - "internally": 2, - "in": 46, - "the": 86, - "knop_cache": 2, - "tags": 14, - "so": 16, - "it": 20, - "will": 12, - "work": 6, - "correctly": 2, - "at": 10, - "site": 4, - "root": 2, - "2008": 6, - "11": 8, - "dummy": 2, - "knop_debug": 4, - "ctype": 2, - "be": 38, - "able": 14, - "transparently": 2, - "or": 6, - "without": 4, - "L": 2, - "Debug": 2, - "24": 2, - "knop_stripbackticks": 2, - "01": 4, - "28": 2, - "Cache": 2, - "name": 32, - "is": 35, - "now": 23, - "used": 12, - "also": 5, - "when": 10, - "using": 8, - "session": 4, - "storage": 8, - "2007": 6, - "12": 8, - "knop_cachedelete": 2, - "Created": 4, - "03": 2, - "knop_foundrows": 2, - "condition": 4, - "returning": 2, - "normal": 2, - "found_count": 11, - "For": 2, - "Lasso": 15, - "if": 76, - "lasso_tagexists": 4, - "define_tag": 48, - "namespace=": 12, - "return": 75, - "__html_reply__": 4, - "define_type": 14, - "debug": 2, - "_unknowntag": 6, - "onconvert": 2, - "stripbackticks": 2, - "description=": 2, - "priority=": 2, - "required=": 2, - "local": 116, - "output": 30, - "string": 59, - "input": 2, - "split": 2, - "(": 640, - ")": 639, - "first": 12, - ";": 573, - "@#output": 2, - "/define_tag": 36, - "description": 34, - "namespace": 16, - "priority": 8, - "Johan": 2, - "S": 2, - "lve": 2, - "integer": 30, - "#charlist": 6, - "size": 24, - "start": 5, - "current": 10, - "date": 23, - "time": 8, - "a": 52, - "mixed": 2, - "up": 4, - "format": 7, - "as": 26, - "seed": 6, - "#seed": 36, - "convert": 4, - "this": 14, - "base": 6, - "conversion": 4, - "while": 9, - "#output": 50, - "get": 12, - "%": 14, - "#base": 8, - "+": 146, - "/": 6, - "/while": 7, - "over": 2, - "new": 14, - "chunk": 2, - "millisecond": 2, - "math_random": 2, - "lower": 2, - "upper": 2, - "__lassoservice_ip__": 2, - "response_localpath": 8, - "removetrailing": 8, - "response_filepath": 8, - "http": 6, - "//tagswap.net/found_rows": 2, - "action_statement": 2, - "string_findregexp": 8, - "#sql": 42, - "find": 57, - "ignorecase": 12, - "||": 8, - "<": 7, - "maxrecords_value": 2, - "inaccurate": 2, - "must": 4, - "accurate": 2, - "/if": 53, - "Default": 2, - "method": 7, - "usually": 2, - "fastest.": 2, - "Can": 2, - "not": 10, - "GROUP": 4, - "BY": 6, - "example.": 2, - "First": 4, - "normalize": 4, - "whitespace": 3, - "around": 2, - "FROM": 2, - "expression": 6, - "string_replaceregexp": 8, - "replace": 8, - "ReplaceOnlyOne": 2, - "substring": 6, - "remove": 6, - "ORDER": 2, - "statement": 4, - "since": 4, - "causes": 4, - "problems": 2, - "field": 26, - "aliases": 2, - "we": 2, - "can": 14, - "simple": 2, - "later": 2, - "else": 32, - "query": 4, - "contains": 2, - "use": 10, - "SQL_CALC_FOUND_ROWS": 2, - "which": 2, - "much": 2, - "slower": 2, - "see": 16, - "//bugs.mysql.com/bug.php": 2, - "id": 7, - "removeleading": 2, - "inline": 4, - "sql": 2, - "exit": 2, - "here": 2, - "normally": 2, - "/inline": 2, - "fallback": 4, - "required": 10, - "optional": 36, - "local_defined": 26, - "knop_seed": 2, - "Local": 7, - "#RandChars": 4, - "Get": 2, - "Math_Random": 2, - "Min": 2, - "Max": 2, - "Size": 2, - "#value": 14, - "join": 5, - "#numericValue": 4, - "&&": 30, - "length": 8, - "#cryptvalue": 10, - "#anyChar": 2, - "Encrypt_Blowfish": 2, - "decrypt_blowfish": 2, - "String_Remove": 2, - "StartPosition": 2, - "EndPosition": 2, - "Seed": 2, - "String_IsAlphaNumeric": 2, - "self": 72, - "_date_msec": 4, - "/define_type": 4, - "type": 63, - "seconds": 4, - "map": 23, - "default": 4, - "store": 4, - "all": 6, - "page": 14, - "vars": 8, - "specified": 8, - "iterate": 12, - "keys": 6, - "var": 38, - "#item": 10, - "isa": 25, - "#type": 26, - "#data": 14, - "insert": 18, - "/iterate": 12, - "//fail_if": 6, - "session_id": 6, - "#session": 10, - "session_addvar": 4, - "#cache_name": 72, - "duration": 4, - "second": 8, - "#expires": 4, - "server_name": 6, - "initiate": 10, - "thread": 6, - "RW": 6, - "lock": 24, - "global": 40, - "Thread_RWLock": 6, - "create": 6, - "reference": 10, - "@": 8, - "writing": 6, - "#lock": 12, - "writelock": 4, - "check": 6, - "cache": 4, - "unlock": 6, - "writeunlock": 4, - "null": 26, - "#maxage": 4, - "cached": 8, - "data": 12, - "too": 4, - "old": 4, - "reading": 2, - "readlock": 2, - "readunlock": 2, - "value": 14, - "true": 12, - "false": 8, - "ignored": 2, - "//##################################################################": 4, - "knoptype": 2, - "All": 4, - "Knop": 6, - "custom": 8, - "types": 10, - "should": 4, - "have": 6, - "parent": 5, - "This": 5, - "identify": 2, - "registered": 2, - "knop": 6, - "isknoptype": 2, - "knop_knoptype": 2, - "prototype": 4, - "version": 4, - "14": 4, - "Base": 2, - "framework": 2, - "Contains": 2, - "common": 4, - "member": 10, - "Used": 2, - "boilerplate": 2, - "creating": 4, - "other": 4, - "instance": 8, - "variables": 2, - "are": 4, - "available": 2, - "well": 2, - "CHANGE": 4, - "NOTES": 4, - "Syntax": 4, - "adjustments": 4, - "9": 2, - "Changed": 6, - "error_msg": 15, - "error": 22, - "numbers": 2, - "added": 10, - "even": 2, - "language": 10, - "already": 2, - "exists.": 2, - "improved": 4, - "reporting": 2, - "messages": 6, - "such": 2, - "from": 6, - "bad": 2, - "database": 14, - "queries": 2, - "error_lang": 2, - "provide": 2, - "knop_lang": 8, - "object": 7, - "add": 12, - "localized": 2, - "any": 14, - "except": 2, - "knop_base": 8, - "html": 4, - "xhtml": 28, - "help": 10, - "nicely": 2, - "formatted": 2, - "output.": 2, - "Centralized": 2, - "error_code": 11, - "knop_base.": 2, - "Moved": 6, - "codes": 2, - "improve": 2, - "documentation.": 2, - "It": 2, - "always": 2, - "an": 8, - "list": 4, - "parameter.": 2, - "trace": 2, - "tagtime": 4, - "was": 6, - "nav": 4, - "earlier": 2, - "varname": 4, - "retreive": 2, - "variable": 8, - "that": 18, - "stored": 2, - "in.": 2, - "automatically": 2, - "sense": 2, - "doctype": 6, - "exists": 2, - "buffer.": 2, - "The": 6, - "result": 6, - "performance.": 2, - "internal": 2, - "html.": 2, - "Introduced": 2, - "_knop_data": 10, - "general": 2, - "level": 2, - "caching": 2, - "between": 2, - "different": 2, - "objects.": 2, - "TODO": 2, - "option": 2, - "Google": 2, - "Code": 2, - "Wiki": 2, - "working": 2, - "properly": 4, - "run": 2, - "by": 12, - "atbegin": 2, - "handler": 2, - "explicitly": 2, - "*/": 2, - "array": 20, - "entire": 4, - "ms": 2, - "defined": 4, - "each": 8, - "instead": 4, - "avoid": 2, - "recursion": 2, - "properties": 4, - "params": 11, - "|": 13, - "#endslash": 10, - "#tags": 2, - "#t": 2, - "doesn": 4, - "t": 8, - "p": 2, - "n": 30, - "Parameters": 4, - "nParameters": 2, - "r": 8, - "Internal.": 2, - "Finds": 2, - "out": 2, - "used.": 2, - "Looks": 2, - "unless": 2, - "array.": 2, - "variable.": 2, - "Looking": 2, - "#params": 5, - "#xhtmlparam": 4, - "boolean": 4, - "plain": 2, - "#doctype": 4, - "copy": 4, - "standard": 2, - "code": 2, - "errors": 12, - "error_data": 12, - "form": 2, - "grid": 2, - "lang": 2, - "user": 4, - "#error_lang": 12, - "addlanguage": 4, - "strings": 6, - "@#errorcodes": 2, - "#error_lang_custom": 2, - "#custom_language": 10, - "once": 4, - "one": 2, - "key": 3, - "#custom_string": 4, - "#errorcodes": 4, - "#error_code": 10, - "message": 6, - "getstring": 2, - "literal": 3, - "test": 2, - "known": 2, - "lasso": 2, - "knop_timer": 2, - "knop_unique": 2, - "look": 2, - "#varname": 6, - "loop_abort": 2, - "tag_name": 2, - "#timer": 2, - "#trace": 4, - "merge": 2, - "#eol": 8, - "2010": 4, - "23": 4, - "Custom": 2, - "interact": 2, - "databases": 2, - "Supports": 4, - "both": 2, - "MySQL": 2, - "FileMaker": 2, - "datasources": 2, - "2012": 4, - "06": 2, - "10": 2, - "SP": 4, - "Fix": 2, - "decimal": 5, - "precision": 2, - "bug": 2, - "6": 2, - "0": 2, - "1": 2, - "renderfooter": 2, - "15": 2, - "Add": 2, - "support": 6, - "host": 6, - "Thanks": 2, - "Ric": 2, - "Lewis": 2, - "settable": 4, - "removed": 2, - "table": 6, - "nextrecord": 12, - "deprecation": 2, - "warning": 2, - "corrected": 2, - "verification": 2, - "index": 4, - "before": 4, - "calling": 2, - "resultset_count": 6, - "break": 2, - "versions": 2, - "fixed": 4, - "incorrect": 2, - "debug_trace": 2, - "addrecord": 4, - "how": 2, - "keyvalue": 10, - "returned": 6, - "adding": 2, - "records": 4, - "inserting": 2, - "generated": 2, - "suppressed": 2, - "specifying": 2, - "saverecord": 8, - "deleterecord": 4, - "case.": 2, - "recorddata": 6, - "no": 2, - "longer": 2, - "touch": 2, - "current_record": 2, - "zero": 2, - "access": 2, - "occurrence": 2, - "same": 4, - "returns": 4, - "knop_databaserows": 2, - "inlinename.": 4, - "next.": 2, - "remains": 2, - "supported": 2, - "backwards": 2, - "compatibility.": 2, - "resets": 2, - "record": 20, - "pointer": 8, - "reaching": 2, - "last": 4, - "honors": 2, - "incremented": 2, - "recordindex": 4, - "specific": 2, - "found.": 2, - "getrecord": 8, - "REALLY": 2, - "works": 4, - "keyvalues": 4, - "double": 2, - "oops": 4, - "I": 4, - "thought": 2, - "but": 2, - "misplaced": 2, - "paren...": 2, - "corresponding": 2, - "resultset": 2, - "...": 3, - "/resultset": 2, - "through": 2, - "handling": 2, - "better": 2, - "knop_user": 4, - "keeplock": 4, - "updates": 2, - "datatype": 2, - "knop_databaserow": 2, - "iterated.": 2, - "When": 2, - "iterating": 2, - "row": 2, - "values.": 2, - "Addedd": 2, - "increments": 2, - "recordpointer": 2, - "called": 2, - "until": 2, - "found": 5, - "set": 10, - "reached.": 2, - "Returns": 2, - "long": 2, - "there": 2, - "more": 2, - "records.": 2, - "Useful": 2, - "loop": 2, - "example": 2, - "below": 2, - "Implemented": 2, - ".": 5, - "reset": 2, - "query.": 2, - "shortcut": 2, - "Removed": 2, - "onassign": 2, - "touble": 2, - "Extended": 2, - "field_names": 2, - "names": 4, - "db": 2, - "objects": 2, - "never": 2, - "been": 2, - "optionally": 2, - "supports": 2, - "sql.": 2, - "Make": 2, - "sure": 2, - "SQL": 2, - "includes": 2, - "relevant": 2, - "keyfield": 4, - "lockfield": 2, - "locking": 4, - "capturesearchvars": 2, - "mysteriously": 2, - "after": 2, - "operations": 2, - "caused": 2, - "errors.": 2, - "flag": 2, - "save": 2, - "locked": 2, - "releasing": 2, - "Adding": 2, - "progress.": 2, - "Done": 2, - "oncreate": 2, - "getrecord.": 2, - "documentation": 2, - "most": 2, - "existing": 2, - "it.": 2, - "Faster": 2, - "than": 2, - "scratch.": 2, - "shown_first": 2, - "again": 2, - "hoping": 2, - "s": 2, - "only": 2, - "captured": 2, - "update": 2, - "uselimit": 2, - "querys": 2, - "LIMIT": 2, - "still": 2, - "gets": 2, - "proper": 2, - "searchresult": 2, - "separate": 2, - "COUNT": 2, - "define": 20, - "trait_json_serialize": 2, - "trait": 1, - "{": 18, - "require": 1, - "asString": 3, - "}": 18, - "json_serialize": 18, - "e": 13, - "bytes": 8, - "#e": 13, - "Replace": 19, - "&": 21, - "json_literal": 1, - "asstring": 4, - "gmt": 1, - "trait_forEach": 1, - "delimit": 7, - "foreach": 1, - "#delimit": 7, - "#1": 3, - "pr": 1, - "eachPair": 1, - "select": 1, - "#pr": 2, - "json_object": 2, - "foreachpair": 1, - "serialize": 1, - "json_consume_string": 3, - "ibytes": 9, - "obytes": 3, - "temp": 12, - "#temp": 19, - "#ibytes": 17, - "export8bits": 6, - "#obytes": 5, - "import8bits": 4, - "Escape": 1, - "unescape": 1, - "//Replace": 1, - "BeginsWith": 1, - "EndsWith": 1, - "Protect": 1, - "serialization_reader": 1, - "xml": 1, - "read": 1, - "/Protect": 1, - "regexp": 1, - "d": 2, - "T": 3, - "Z": 1, - "matches": 1, - "Format": 1, - "yyyyMMdd": 2, - "HHmmssZ": 1, - "HHmmss": 1, - "json_consume_token": 2, - "marker": 4, - "Is": 1, - "end": 2, - "token": 1, - "//............................................................................": 2, - "string_IsNumeric": 1, - "json_consume_array": 3, - "While": 1, - "If": 4, - "Discard": 1, - "Else": 7, - "#key": 12, - "json_consume_object": 2, - "Loop_Abort": 1, - "/If": 3, - "/While": 1, - "Find": 3, - "Return": 7, - "Second": 1, - "json_deserialize": 1, - "removeLeading": 1, - "bom_utf8": 1, - "Reset": 1, - "on": 1, - "provided": 1, - "**/": 1, - "public": 1, - "onCreate": 1, - "..onCreate": 1, - "#rest": 1, - "json_rpccall": 1, - "#id": 2, - "#host": 4, - "Lasso_UniqueID": 1, - "Decode_JSON": 2, - "Include_URL": 1, - "PostParams": 1, - "Encode_JSON": 1, - "Map": 3, - "#method": 1, - "LassoScript": 1, - "JSON": 2, - "Encoding": 1, - "Decoding": 1, - "Copyright": 1, - "LassoSoft": 1, - "Inc.": 1, - "": 1, - "": 1, - "": 1, - "incorporated": 1, - "Lasso_TagExists": 1, - "False": 1, - "Define_Tag": 1, - "Namespace": 1, - "Required": 1, - "Optional": 1, - "f": 2, - "b": 2, - "newoptions": 1, - "options": 2, - "queue": 2, - "priorityqueue": 2, - "stack": 2, - "pair": 1, - "client_ip": 1, - "client_address": 1, - "__jsonclass__": 6, - "deserialize": 2, - "": 3, - "": 3, - "Decode_": 1, - "consume_string": 1, - "unescapes": 1, - "u": 1, - "UTF": 4, - "QT": 4, - "TZ": 2, - "consume_token": 1, - "consume_array": 1, - "consume_object": 1, - "val": 1, - "native": 2, - "comment": 2, - "//www.lassosoft.com/json": 1, - "Literal": 2, - "String": 1, - "Object": 2, - "JSON_RPCCall": 1, - "RPCCall": 1, - "JSON_": 1, - "//localhost/lassoapps.8/rpc/rpc.lasso": 1, - "request": 2, - "JSON_Records": 3, - "KeyField": 1, - "ReturnField": 1, - "ExcludeField": 1, - "Fields": 1, - "_fields": 1, - "fields": 2, - "No": 1, - "_keyfield": 4, - "ID": 1, - "_index": 1, - "_return": 1, - "returnfield": 1, - "_exclude": 1, - "excludefield": 1, - "_records": 1, - "_record": 1, - "_temp": 1, - "_field": 1, - "_output": 1, - "rows": 1, - "#_records": 1, - "@#_output": 1, - "/Define_Tag": 1 - }, - "Max": { - "max": 1, - "v2": 1, - ";": 39, - "#N": 2, - "vpatcher": 1, - "#P": 33, - "toggle": 1, - "button": 4, - "window": 2, - "setfont": 1, - "Verdana": 1, - "linecount": 1, - "newex": 8, - "r": 1, - "jojo": 2, - "#B": 2, - "color": 2, - "s": 1, - "route": 1, - "append": 1, - "toto": 1, - "%": 1, - "counter": 2, - "#X": 1, - "flags": 1, - "newobj": 1, - "metro": 1, - "t": 2, - "message": 2, - "Goodbye": 1, - "World": 2, - "Hello": 1, - "connect": 13, - "fasten": 1, - "pop": 1, - "{": 126, - "}": 126, - "[": 163, - "]": 163 - }, - "Awk": { - "SHEBANG#!awk": 1, - "BEGIN": 1, - "{": 17, - "n": 13, - ";": 55, - "printf": 1, - "network_max_bandwidth_in_byte": 3, - "network_max_packet_per_second": 3, - "last3": 3, - "last4": 3, - "last5": 3, - "last6": 3, - "}": 17, - "if": 14, - "(": 14, - "/Average/": 1, - ")": 14, - "#": 48, - "Skip": 1, - "the": 12, - "Average": 1, - "values": 1, - "next": 1, - "/all/": 1, - "This": 8, - "is": 7, - "cpu": 1, - "info": 7, - "print": 35, - "FILENAME": 35, - "-": 2, - "/eth0/": 1, - "eth0": 1, - "network": 1, - "Total": 9, - "number": 9, - "of": 22, - "packets": 4, - "received": 4, - "per": 14, - "second.": 8, - "else": 4, - "transmitted": 4, - "bytes": 4, - "/proc": 1, - "|": 4, - "cswch": 1, - "tps": 1, - "kbmemfree": 1, - "totsck/": 1, - "/": 2, - "[": 1, - "]": 1, - "proc/s": 1, - "context": 1, - "switches": 1, - "second": 6, - "disk": 1, - "total": 1, - "transfers": 1, - "read": 1, - "requests": 2, - "write": 1, - "block": 2, - "reads": 1, - "writes": 1, - "mem": 1, - "Amount": 7, - "free": 2, - "memory": 6, - "available": 1, - "in": 11, - "kilobytes.": 7, - "used": 8, - "does": 1, - "not": 1, - "take": 1, - "into": 1, - "account": 1, - "by": 4, - "kernel": 3, - "itself.": 1, - "Percentage": 2, - "memory.": 1, - "X": 1, - "shared": 1, - "system": 1, - "Always": 1, - "zero": 1, - "with": 1, - "kernels.": 1, - "as": 1, - "buffers": 1, - "to": 1, - "cache": 1, - "data": 1, - "swap": 3, - "space": 2, - "space.": 1, - "socket": 1, - "sockets.": 1, - "Number": 4, - "TCP": 1, - "sockets": 3, - "currently": 4, - "use.": 4, - "UDP": 1, - "RAW": 1, - "IP": 1, - "fragments": 1, - "END": 1 - }, - "JavaScript": { - "(": 8518, - "function": 1212, - "window": 18, - "angular": 1, - ")": 8526, - "{": 2738, - "Array.prototype.last": 1, - "return": 945, - "this": 578, - "[": 1461, - "this.length": 41, - "-": 706, - "]": 1458, - ";": 4056, - "}": 2714, - "var": 911, - "app": 3, - "angular.module": 1, - "JSON": 5, - "if": 1230, - "f": 666, - "n": 874, - "<": 209, - "+": 1135, - "typeof": 132, - "Date.prototype.toJSON": 2, - "key": 85, - "isFinite": 1, - "this.valueOf": 2, - "this.getUTCFullYear": 1, - "this.getUTCMonth": 1, - "this.getUTCDate": 1, - "this.getUTCHours": 1, - "this.getUTCMinutes": 1, - "this.getUTCSeconds": 1, - "null": 427, - "String.prototype.toJSON": 1, - "Number.prototype.toJSON": 1, - "Boolean.prototype.toJSON": 1, - "cx": 2, - "/": 290, - "u0000": 1, - "u00ad": 1, - "u0600": 1, - "u0604": 1, - "u070f": 1, - "u17b4": 1, - "u17b5": 1, - "u200c": 1, - "u200f": 1, - "u2028": 3, - "u202f": 1, - "u2060": 1, - "u206f": 1, - "ufeff": 1, - "ufff0": 1, - "uffff": 1, - "/g": 37, - "escapable": 1, - "b": 961, - "t": 436, - "r": 261, - "object": 59, - "string": 41, - "number": 13, - "boolean": 8, - "Array": 3, - "JSON.stringify": 4, - "u": 304, - "/bfnrt": 1, - "|": 206, - "a": 1489, - "fA": 2, - "F": 8, - ".replace": 38, - "*": 70, - "JSON.parse": 1, - "PUT": 1, - "DELETE": 1, - "all": 16, - "change": 16, - "id": 38, - "_id": 1, - "error": 20, - "Can": 2, - "add": 15, - "remove": 9, - "s": 290, - "ties": 1, - "to": 92, - "collection.": 1, - "_removeReference": 1, - "model": 14, - "model.collection": 2, - "delete": 39, - "model.unbind": 1, - "this._onModelEvent": 1, - "_onModelEvent": 1, - "ev": 5, - "collection": 3, - "options": 56, - "||": 648, - "&&": 1017, - "this._remove": 1, - "model.idAttribute": 2, - "this._byId": 2, - "model.previous": 1, - "model.id": 1, - "this.trigger.apply": 2, - "arguments": 83, - "methods": 8, - "_.each": 1, - "method": 30, - "Backbone.Collection.prototype": 1, - "_": 9, - ".apply": 7, - "this.models": 1, - ".concat": 3, - "_.toArray": 1, - "Backbone.Router": 1, - "options.routes": 2, - "this.routes": 4, - "this._bindRoutes": 1, - "this.initialize.apply": 2, - "namedParam": 2, - "w": 110, - "d": 771, - "splatParam": 2, - "escapeRegExp": 2, - ".": 91, - "#": 13, - "_.extend": 9, - "Backbone.Router.prototype": 1, - "Backbone.Events": 2, - "initialize": 3, - "//": 410, - "route": 18, - "name": 161, - "callback": 23, - "Backbone.history": 2, - "new": 86, - "Backbone.History": 2, - "_.isRegExp": 1, - "this._routeToRegExp": 1, - "Backbone.history.route": 1, - "_.bind": 2, - "fragment": 27, - "args": 31, - "this._extractParameters": 1, - "callback.apply": 1, - "navigate": 2, - "triggerRoute": 4, - "Backbone.history.navigate": 1, - "_bindRoutes": 1, - "routes": 4, - "for": 262, - "in": 170, - "routes.unshift": 1, - "i": 853, - "l": 312, - "routes.length": 1, - "this.route": 1, - "_routeToRegExp": 1, - "route.replace": 1, - "RegExp": 12, - "_extractParameters": 1, - "route.exec": 1, - ".slice": 6, - "this.handlers": 2, - "_.bindAll": 1, - "hashStrip": 4, - "#*": 1, - "isExplorer": 1, - "/msie": 1, - "w.": 17, - "historyStarted": 3, - "false": 142, - "Backbone.History.prototype": 1, - "interval": 3, - "getFragment": 1, - "forcePushState": 2, - "this._hasPushState": 6, - "window.location.pathname": 1, - "search": 5, - "window.location.search": 1, - "fragment.indexOf": 1, - "this.options.root": 6, - "fragment.substr": 1, - "this.options.root.length": 1, - "else": 307, - "window.location.hash": 3, - "fragment.replace": 1, - "start": 20, - "throw": 27, - "Error": 16, - "this.options": 6, - "root": 5, - "this._wantsPushState": 3, - "this.options.pushState": 2, - "window.history": 2, - "window.history.pushState": 2, - "this.getFragment": 6, - "docMode": 3, - "document.documentMode": 3, - "oldIE": 3, - "isExplorer.exec": 1, - "navigator.userAgent.toLowerCase": 1, - "this.iframe": 4, - ".hide": 2, - ".appendTo": 2, - ".contentWindow": 1, - "this.navigate": 2, - ".bind": 3, - "this.checkUrl": 3, - "setInterval": 6, - "this.interval": 1, - "this.fragment": 13, - "true": 147, - "loc": 2, - "window.location": 5, - "atRoot": 3, - "loc.pathname": 1, - "loc.hash": 1, - "loc.hash.replace": 1, - "window.history.replaceState": 1, - "document.title": 2, - "loc.protocol": 2, - "loc.host": 2, - "this.loadUrl": 4, - "this.handlers.unshift": 1, - "checkUrl": 1, - "e": 663, - "current": 7, - "this.iframe.location.hash": 3, - "decodeURIComponent": 2, - "loadUrl": 1, - "fragmentOverride": 2, - "matched": 2, - "_.any": 1, - "handler": 14, - "handler.route.test": 1, - "handler.callback": 1, - "frag": 13, - "frag.indexOf": 1, - "this.iframe.document.open": 1, - ".close": 1, - "Backbone.View": 1, - "this.cid": 3, - "_.uniqueId": 1, - "this._configure": 1, - "this._ensureElement": 1, - "this.delegateEvents": 1, - "selectorDelegate": 2, - "selector": 40, - "this.el": 10, - "eventSplitter": 2, - "S": 8, - "s*": 15, - ".*": 20, - "viewOptions": 2, - "Backbone.View.prototype": 1, - "tagName": 3, - "render": 1, - ".remove": 2, - "make": 2, - "attributes": 14, - "content": 5, - "el": 4, - "document.createElement": 26, - ".attr": 1, - ".html": 1, - "delegateEvents": 1, - "events": 18, - "this.events": 1, - ".unbind": 4, - "match": 30, - "key.match": 1, - "eventName": 21, - ".delegate": 2, - "_configure": 1, - "viewOptions.length": 1, - "attr": 13, - "_ensureElement": 1, - "attrs": 6, - "this.attributes": 1, - "this.id": 2, - "attrs.id": 1, - "this.className": 10, - "this.make": 1, - "this.tagName": 1, - "_.isString": 1, - ".get": 3, - "extend": 13, - "protoProps": 6, - "classProps": 2, - "child": 17, - "inherits": 2, - "child.extend": 1, - "this.extend": 1, - "Backbone.Model.extend": 1, - "Backbone.Collection.extend": 1, - "Backbone.Router.extend": 1, - "Backbone.View.extend": 1, - "methodMap": 2, - "Backbone.sync": 1, - "type": 49, - "params": 2, - "dataType": 6, - "processData": 3, - "params.url": 2, - "getUrl": 2, - "urlError": 2, - "params.data": 5, - "params.contentType": 2, - "model.toJSON": 1, - "Backbone.emulateJSON": 2, - "params.processData": 1, - "Backbone.emulateHTTP": 1, - "params.data._method": 1, - "params.type": 1, - "params.beforeSend": 1, - "xhr": 1, - "xhr.setRequestHeader": 1, - ".ajax": 1, - "ctor": 6, - "parent": 15, - "staticProps": 3, - "protoProps.hasOwnProperty": 1, - "protoProps.constructor": 1, - "parent.apply": 1, - "ctor.prototype": 3, - "parent.prototype": 6, - "child.prototype": 4, - "child.prototype.constructor": 1, - "child.__super__": 3, - "object.url": 4, - "_.isFunction": 1, - "wrapError": 1, - "onError": 3, - "resp": 3, - "model.trigger": 1, - "escapeHTML": 1, - "string.replace": 1, - "&": 13, - "#x": 1, - "da": 1, - "/gi": 2, - "": 1, - "lt": 55, - "replace": 8, - "#x27": 1, - "#x2F": 1, - ".call": 10, - "undefined": 328, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "document": 26, "window.document": 2, "navigator": 3, "window.navigator": 2, "location": 2, -<<<<<<< HEAD "window.location": 5, -======= ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "jQuery": 48, "context": 48, "The": 9, "is": 67, "actually": 2, "just": 2, -<<<<<<< HEAD -======= - "the": 107, - "init": 7, - "constructor": 8, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "jQuery.fn.init": 2, "rootjQuery": 8, "Map": 4, "over": 7, -<<<<<<< HEAD "of": 28, "overwrite": 4, "_jQuery": 4, "window.": 6, -======= - "case": 136, - "of": 28, - "overwrite": 4, - "_jQuery": 4, - "window.jQuery": 7, - "window.": 6, - "A": 24, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "central": 2, "reference": 5, "simple": 3, "way": 2, "check": 8, -<<<<<<< HEAD "strings": 8, "both": 2, "optimize": 3, "quickExpr": 2, -======= - "HTML": 9, - "strings": 8, - "or": 38, - "ID": 8, - "Prioritize": 1, - "#id": 3, - "": 1, - "avoid": 5, - "XSS": 1, - "via": 2, - "location.hash": 1, - "#9521": 1, - "quickExpr": 2, - "<[\\w\\W]+>": 4, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "Check": 10, "has": 9, "non": 8, @@ -36136,25 +29026,17 @@ "character": 3, "it": 112, "rnotwhite": 2, -<<<<<<< HEAD -======= - "S/": 4, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "Used": 3, "trimming": 2, "trimLeft": 4, "trimRight": 4, -<<<<<<< HEAD "digits": 3, "rdigit": 1, "d/": 3, -======= ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "Match": 3, "standalone": 2, "tag": 2, "rsingleTag": 2, -<<<<<<< HEAD "JSON": 5, "RegExp": 12, "rvalidchars": 2, @@ -36179,100 +29061,26 @@ "deferred": 25, "used": 13, "DOM": 21, -======= - "<(\\w+)\\s*\\/?>": 4, - "<\\/\\1>": 4, - "rvalidchars": 2, - "rvalidescape": 2, - "d*": 8, - "eE": 4, - "rvalidbraces": 2, - "Useragent": 2, - "rwebkit": 2, - "webkit": 6, - "ropera": 2, - "opera": 4, - ".*version": 4, - "rmsie": 2, - "msie": 4, - "rmozilla": 2, - "mozilla": 4, - "rv": 4, - "Matches": 1, - "dashed": 1, - "camelizing": 1, - "rdashAlpha": 1, - "z": 21, - "/ig": 3, - "rmsPrefix": 1, - "ms": 2, - "by": 12, - "jQuery.camelCase": 6, - "as": 11, - "fcamelCase": 1, - "letter": 3, - ".toUpperCase": 3, - "Keep": 2, - "UserAgent": 2, - "use": 10, - "with": 18, - "jQuery.browser": 4, - "userAgent": 3, - "navigator.userAgent": 3, - "For": 5, - "matching": 3, - "engine": 2, - "and": 42, - "version": 10, - "browser": 11, - "browserMatch": 3, - "deferred": 25, - "used": 13, - "on": 37, - "DOM": 21, - "ready": 31, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "readyList": 6, "event": 31, "DOMContentLoaded": 14, "Save": 2, "some": 2, "core": 2, -<<<<<<< HEAD "methods": 8, "toString": 4, "hasOwn": 2, "String.prototype.trim": 3, -======= - "toString": 4, - "Object.prototype.toString": 7, - "hasOwn": 2, - "Object.prototype.hasOwnProperty": 6, - "push": 11, - "Array.prototype.push": 4, - "slice": 10, - "Array.prototype.slice": 6, - "trim": 5, - "String.prototype.trim": 3, - "indexOf": 5, - "Array.prototype.indexOf": 4, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "Class": 2, "pairs": 2, "class2type": 3, "jQuery.fn": 4, "jQuery.prototype": 2, -<<<<<<< HEAD "match": 30, -======= - "elem": 101, - "ret": 62, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "doc": 4, "Handle": 14, "DOMElement": 2, "selector.nodeType": 2, -<<<<<<< HEAD "exists": 9, "once": 4, "finding": 2, @@ -36282,51 +29090,20 @@ "selector.length": 4, "Assume": 2, "are": 18, -======= - "this.context": 17, - "body": 22, - "element": 19, - "only": 10, - "exists": 9, - "once": 4, - "optimize": 3, - "finding": 2, - "document.body": 8, - "this.selector": 16, - "Are": 2, - "we": 25, - "dealing": 2, - "an": 12, - "selector.charAt": 4, - "selector.length": 4, - "Assume": 2, - "that": 33, - "end": 14, - "are": 18, - "skip": 5, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "regex": 3, "quickExpr.exec": 2, "Verify": 3, "no": 19, "was": 6, "specified": 4, -<<<<<<< HEAD "#id": 3, "HANDLE": 2, "array": 7, -======= - "HANDLE": 2, - "html": 10, - "array": 7, - "instanceof": 19, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "context.ownerDocument": 2, "If": 21, "single": 2, "passed": 5, "clean": 3, -<<<<<<< HEAD "like": 5, "method.": 3, "jQuery.fn.init.prototype": 2, @@ -36338,38 +29115,12 @@ "deep": 12, "situation": 2, "boolean": 8, -======= - "not": 26, - "like": 5, - "method.": 3, - "sort": 4, - ".sort": 9, - "splice": 5, - ".splice": 5, - "jQuery.fn.init.prototype": 2, - "jQuery.extend": 11, - "jQuery.fn.extend": 4, - "src": 7, - "copy": 16, - "copyIsArray": 2, - "clone": 5, - "target": 44, - "length": 48, - "arguments.length": 18, - "deep": 12, - "situation": 2, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "when": 20, "something": 3, "possible": 3, "jQuery.isFunction": 6, -<<<<<<< HEAD "extend": 13, "itself": 4, -======= - "itself": 4, - "one": 15, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "argument": 2, "Only": 5, "deal": 2, @@ -36381,36 +29132,20 @@ "never": 2, "ending": 2, "loop": 7, -<<<<<<< HEAD -======= - "continue": 18, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "Recurse": 2, "bring": 2, "Return": 2, "modified": 3, -<<<<<<< HEAD -======= - "noConflict": 4, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "Is": 2, "be": 12, "Set": 4, "occurs.": 2, -<<<<<<< HEAD -======= - "isReady": 5, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "counter": 2, "track": 2, "how": 2, "many": 3, "items": 2, "wait": 12, -<<<<<<< HEAD -======= - "before": 8, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "fires.": 2, "See": 9, "#6781": 2, @@ -36436,10 +29171,6 @@ "overzealous": 4, "ticket": 4, "#5443": 4, -<<<<<<< HEAD -======= - "setTimeout": 19, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "Remember": 2, "normal": 2, "Ready": 2, @@ -36450,32 +29181,18 @@ "functions": 6, "bound": 8, "execute": 4, -<<<<<<< HEAD "readyList.resolveWith": 1, -======= - "readyList.fireWith": 1, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "Trigger": 2, "any": 12, "jQuery.fn.trigger": 2, ".trigger": 3, -<<<<<<< HEAD ".unbind": 4, "jQuery._Deferred": 3, -======= - ".off": 1, - "bindReady": 5, - "jQuery.Callbacks": 2, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "Catch": 2, "cases": 4, "where": 2, ".ready": 2, "called": 2, -<<<<<<< HEAD -======= - "after": 7, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "already": 6, "occurred.": 2, "document.readyState": 4, @@ -36483,18 +29200,10 @@ "allow": 6, "scripts": 2, "opportunity": 2, -<<<<<<< HEAD -======= - "delay": 4, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "Mozilla": 2, "Opera": 2, "nightlies": 3, "currently": 4, -<<<<<<< HEAD -======= - "support": 13, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "document.addEventListener": 6, "Use": 7, "handy": 2, @@ -36504,10 +29213,7 @@ "always": 6, "work": 6, "window.addEventListener": 2, -<<<<<<< HEAD "model": 14, -======= ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "document.attachEvent": 6, "ensure": 2, "firing": 16, @@ -36516,23 +29222,13 @@ "late": 2, "but": 4, "safe": 3, -<<<<<<< HEAD -======= - "also": 5, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "iframes": 2, "window.attachEvent": 2, "frame": 23, "continually": 2, "see": 6, "toplevel": 7, -<<<<<<< HEAD "window.frameElement": 2, -======= - "try": 44, - "window.frameElement": 2, - "catch": 38, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "document.documentElement.doScroll": 4, "doScrollCheck": 6, "test/unit/core.js": 2, @@ -36540,7 +29236,6 @@ "concerning": 2, "isFunction.": 2, "Since": 3, -<<<<<<< HEAD "aren": 5, "pass": 7, "through": 3, @@ -36549,18 +29244,6 @@ "jQuery.type": 4, "obj.nodeType": 2, "jQuery.isWindow": 2, -======= - "alert": 11, - "aren": 5, - "pass": 7, - "through": 3, - "well": 2, - "obj": 40, - "jQuery.type": 4, - "obj.nodeType": 2, - "jQuery.isWindow": 2, - "Not": 4, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "own": 4, "property": 15, "must": 4, @@ -36568,21 +29251,10 @@ "obj.constructor": 2, "hasOwn.call": 6, "obj.constructor.prototype": 2, -<<<<<<< HEAD -======= - "IE8": 2, - "Will": 2, - "exceptions": 2, - "certain": 2, - "host": 29, - "objects": 7, - "#9897": 1, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "Own": 2, "properties": 7, "enumerated": 2, "firstly": 2, -<<<<<<< HEAD "speed": 4, "up": 4, "then": 8, @@ -36593,86 +29265,6 @@ "can": 10, "breaking": 1, "spaces": 3, -======= - "so": 8, - "speed": 4, - "up": 4, - "last": 6, - "then": 8, - "own.": 2, - "isEmptyObject": 7, - "msg": 4, - "parseJSON": 4, - "data": 145, - "leading/trailing": 2, - "removed": 3, - "can": 10, - "access": 2, - "elems": 9, - "fn": 14, - "value": 98, - "chainable": 4, - "emptyGet": 3, - "exec": 8, - "bulk": 3, - "elems.length": 1, - "Sets": 3, - "jQuery.access": 2, - "Optionally": 1, - "get": 24, - "executed": 1, - "Bulk": 1, - "operations": 1, - "iterate": 1, - "executing": 1, - "exec.call": 1, - "Otherwise": 2, - "they": 2, - "run": 1, - "against": 1, - "entire": 1, - "set": 22, - "fn.call": 2, - "value.call": 1, - "Gets": 2, - "now": 5, - "Date": 4, - ".getTime": 3, - "frowned": 1, - "upon.": 1, - "More": 1, - "http": 6, - "//docs.jquery.com/Utilities/jQuery.browser": 1, - "uaMatch": 3, - "ua": 6, - "ua.toLowerCase": 1, - "rwebkit.exec": 1, - "ropera.exec": 1, - "rmsie.exec": 1, - "ua.indexOf": 1, - "rmozilla.exec": 1, - "sub": 4, - "jQuerySub": 7, - "jQuerySub.fn.init": 2, - "jQuerySub.superclass": 1, - "jQuerySub.fn": 2, - "jQuerySub.prototype": 1, - "jQuerySub.fn.constructor": 1, - "jQuerySub.sub": 1, - "this.sub": 2, - "jQuery.fn.init.call": 1, - "rootjQuerySub": 2, - "jQuerySub.fn.init.prototype": 1, - "jQuery.each": 2, - ".split": 19, - "name.toLowerCase": 6, - "jQuery.uaMatch": 1, - "browserMatch.browser": 2, - "jQuery.browser.version": 1, - "browserMatch.version": 1, - "jQuery.browser.webkit": 1, - "jQuery.browser.safari": 1, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "rnotwhite.test": 2, "xA0": 7, "document.removeEventListener": 2, @@ -36680,7 +29272,6 @@ "trick": 2, "Diego": 2, "Perini": 2, -<<<<<<< HEAD "http": 6, "//javascript.nwbox.com/IEContentLoaded/": 2, "waiting": 2, @@ -36951,381 +29542,10 @@ "existed": 1, "Otherwise": 2, "eliminate": 2, -======= - "//javascript.nwbox.com/IEContentLoaded/": 2, - "waiting": 2, - "flagsCache": 3, - "createFlags": 2, - "flags": 13, - "flags.split": 1, - "flags.length": 1, - "Convert": 1, - "from": 7, - "String": 2, - "formatted": 2, - "cache": 45, - "first": 10, - "Actual": 2, - "list": 21, - "Stack": 1, - "fire": 4, - "calls": 1, - "repeatable": 1, - "lists": 2, - "stack": 2, - "Last": 2, - "forgettable": 1, - "memory": 8, - "Flag": 2, - "know": 3, - "First": 3, - "internally": 5, - "fireWith": 1, - "firingStart": 3, - "End": 1, - "firingLength": 4, - "Index": 1, - "needed": 2, - "firingIndex": 5, - "Add": 4, - "several": 1, - "callbacks": 10, - "actual": 1, - "args.length": 3, - "Inspect": 1, - "recursively": 1, - "unique": 2, - "mode": 1, - "flags.unique": 1, - "self.has": 1, - "list.push": 1, - "Fire": 1, - "flags.memory": 1, - "list.length": 5, - "flags.stopOnFalse": 1, - "Mark": 1, - "halted": 1, - "break": 111, - "flags.once": 1, - "stack.length": 1, - "stack.shift": 1, - "self.fireWith": 1, - "self.disable": 1, - "Callbacks": 1, - "self": 17, - "Do": 2, - "batch": 2, - "With": 1, - "/a": 1, - "top": 12, - "px": 31, - "float": 3, - "left": 14, - "opacity": 13, - ".55": 1, - "checkbox": 14, - "basic": 1, - "test": 21, - "all.length": 1, - "supports": 2, - "tests": 48, - "select": 20, - "opt": 2, - "select.appendChild": 1, - "input": 25, - "div.getElementsByTagName": 6, - "strips": 1, - "leading": 1, - ".innerHTML": 3, - "leadingWhitespace": 3, - "div.firstChild.nodeType": 1, - "tbody": 7, - "elements": 9, - "manipulated": 1, - "normalizes": 1, - "default": 21, - "hrefNormalized": 3, - "a.getAttribute": 11, - "uses": 3, - "filter": 10, - "instead": 6, - "around": 1, - "WebKit": 9, - "issue.": 1, - "#5145": 1, - "/.test": 19, - "a.style.opacity": 2, - "style": 30, - "existence": 1, - "styleFloat": 1, - "cssFloat": 4, - "a.style.cssFloat": 1, - "defaults": 3, - "checkOn": 4, - "input.value": 5, - "selected": 5, - "option": 12, - "working": 1, - "property.": 1, - "too": 1, - "marked": 1, - "disabled": 11, - "marks": 1, - "them": 3, - "select.disabled": 1, - "support.optDisabled": 1, - "opt.disabled": 1, - "Test": 3, - "handlers": 1, - "does": 9, - "support.noCloneEvent": 1, - "div.cloneNode": 1, - ".fireEvent": 3, - "radio": 17, - "maintains": 1, - "its": 2, - "being": 2, - "appended": 2, - "input.setAttribute": 5, - "support.radioValue": 2, - "#11217": 1, - "loses": 1, - "checked": 4, - "attribute": 5, - "div.appendChild": 4, - "document.createDocumentFragment": 3, - "fragment.appendChild": 2, - "div.lastChild": 1, - "doesn": 2, - "have": 6, - "conMarginTop": 3, - "paddingMarginBorder": 5, - "positionTopLeftWidthHeight": 3, - "paddingMarginBorderVisibility": 3, - "container": 4, - "container.style.cssText": 1, - "body.insertBefore": 1, - "body.firstChild": 1, - "Construct": 1, - "div": 28, - "container.appendChild": 1, - "table": 6, - "cells": 3, - "still": 4, - "offsetWidth/Height": 3, - "display": 7, - "none": 4, - "other": 3, - "visible": 1, - "row": 1, - "reliable": 1, - "determining": 3, - "been": 5, - "hidden": 12, - "directly": 2, - "using": 5, - "offsets": 1, - "don": 5, - "safety": 1, - "goggles": 1, - "bug": 3, - "#4512": 1, - "more": 6, - "information": 5, - "fails": 2, - "div.innerHTML": 7, - "tds": 6, - "isSupported": 7, - ".offsetHeight": 4, - ".style.display": 5, - "empty": 3, - "fail": 10, - "support.reliableHiddenOffsets": 1, - "explicit": 1, - "width": 32, - "margin": 8, - "right": 3, - "incorrectly": 1, - "computed": 1, - "based": 1, - "container.": 1, - "info": 2, - "#3333": 1, - "Fails": 2, - "Feb": 1, - "Bug": 1, - "getComputedStyle": 3, - "returns": 1, - "wrong": 1, - "window.getComputedStyle": 6, - "marginDiv": 5, - "marginDiv.style.width": 1, - "marginDiv.style.marginRight": 1, - "div.style.width": 2, - "support.reliableMarginRight": 1, - "parseInt": 12, - "marginRight": 2, - ".marginRight": 2, - "div.style.zoom": 2, - "natively": 1, - "block": 4, - "level": 3, - "act": 1, - "inline": 3, - "setting": 2, - "their": 3, - "giving": 1, - "layout": 2, - "div.style.padding": 1, - "div.style.border": 1, - "div.style.overflow": 2, - "div.style.display": 2, - "support.inlineBlockNeedsLayout": 1, - "div.offsetWidth": 2, - "shrink": 1, - "wrap": 2, - "children": 3, - "support.shrinkWrapBlocks": 1, - "div.style.cssText": 1, - "outer": 2, - "div.firstChild": 3, - "inner": 2, - "outer.firstChild": 1, - "td": 3, - "outer.nextSibling.firstChild.firstChild": 1, - "offsetSupport": 2, - "doesNotAddBorder": 1, - "inner.offsetTop": 4, - "doesAddBorderForTableAndCells": 1, - "td.offsetTop": 1, - "inner.style.position": 2, - "inner.style.top": 2, - "safari": 1, - "subtracts": 1, - "border": 7, - "here": 1, - "which": 8, - "offsetSupport.fixedPosition": 1, - "outer.style.overflow": 1, - "outer.style.position": 1, - "offsetSupport.subtractsBorderForOverflowNotVisible": 1, - "offsetSupport.doesNotIncludeMarginInBodyOffset": 1, - "body.offsetTop": 1, - "div.style.marginTop": 1, - "support.pixelMargin": 1, - "marginTop": 3, - ".marginTop": 1, - "container.style.zoom": 2, - "body.removeChild": 1, - "rbrace": 1, - "rmultiDash": 3, - "Z": 6, - "Please": 1, - "caution": 1, - "uuid": 2, - "Unique": 1, - "each": 17, - "page": 1, - "Non": 3, - "digits": 3, - "rinlinejQuery": 1, - "expando": 14, - "jQuery.fn.jquery": 1, - "Math.random": 2, - "D/g": 2, - "following": 1, - "uncatchable": 1, - "you": 1, - "attempt": 2, - "them.": 1, - "noData": 3, - "Ban": 1, - "except": 1, - "Flash": 1, - "handle": 15, - "expandos": 2, - "hasData": 2, - "elem.nodeType": 8, - "jQuery.cache": 3, - "jQuery.expando": 12, - "isEmptyDataObject": 3, - "pvt": 8, - "jQuery.acceptData": 2, - "privateCache": 1, - "thisCache": 15, - "internalKey": 12, - "getByName": 3, - "We": 6, - "nodes": 14, - "JS": 7, - "differently": 1, - "because": 1, - "IE6": 1, - "internal": 8, - "order": 1, - "collisions": 1, - "between": 1, - "user": 1, - "defined": 3, - "data.": 1, - "thisCache.data": 3, - "Users": 1, - "should": 1, - "inspect": 1, - "jQuery.data": 15, - "undocumented": 1, - "subject": 1, - "change.": 1, - "But": 1, - "anyone": 1, - "listen": 1, - "No.": 1, - "isEvents": 1, - "privateCache.events": 1, - "both": 2, - "converted": 2, - "camel": 2, - "names": 2, - "Try": 4, - "find": 7, - "camelCased": 1, - "removeData": 8, - "Reference": 1, - "isNode": 11, - "entry": 1, - "purpose": 1, - "continuing": 1, - ".data": 3, - "Support": 1, - "space": 1, - "separated": 1, - "keys": 11, - "jQuery.isArray": 1, - "manipulation": 1, - "split": 4, - "cased": 1, - "spaces": 3, - "unless": 2, - "name.split": 1, - "name.length": 1, - "want": 1, - "let": 1, - "destroyed": 2, - "jQuery.isEmptyObject": 1, - "Don": 1, - "care": 1, - "Ensure": 1, - "#10080": 1, - "jQuery.support.deleteExpando": 3, - "cache.setInterval": 1, - "eliminate": 2, - "node": 23, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "lookups": 2, "entries": 2, "longer": 2, "exist": 2, -<<<<<<< HEAD "does": 9, "us": 2, "nor": 2, @@ -37338,22 +29558,11 @@ "only.": 2, "_data": 3, "determining": 3, -======= - "us": 2, - "nor": 2, - "removeAttribute": 3, - "Document": 2, - "these": 2, - "elem.removeAttribute": 6, - "only.": 2, - "_data": 3, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "acceptData": 3, "elem.nodeName": 2, "jQuery.noData": 2, "elem.nodeName.toLowerCase": 2, "elem.getAttribute": 7, -<<<<<<< HEAD ".attributes": 2, "attr.length": 2, ".name": 3, @@ -37366,30 +29575,10 @@ "Try": 4, "fetch": 4, "internally": 5, -======= - "parts": 28, - "part": 8, - "jQuery._data": 2, - "elem.attributes": 1, - "attr.length": 2, - ".name": 3, - "name.indexOf": 2, - "name.substring": 2, - "dataAttr": 6, - "multiple": 7, - "this.each": 42, - "key.split": 2, - "this.triggerHandler": 6, - "fetch": 4, - "stored": 4, - "this.data": 5, - "self.triggerHandler": 2, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "jQuery.removeData": 2, "nothing": 2, "found": 10, "HTML5": 3, -<<<<<<< HEAD "attribute": 5, "key.replace": 2, "rmultiDash": 3, @@ -37398,15 +29587,6 @@ "rbrace.test": 2, "jQuery.parseJSON": 2, "isn": 2, -======= - "key.replace": 2, - ".toLowerCase": 7, - "jQuery.isNumeric": 1, - "rbrace.test": 2, - "jQuery.parseJSON": 2, - "isn": 2, - "optgroup": 5, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "option.selected": 2, "jQuery.support.optDisabled": 2, "option.disabled": 2, @@ -37414,18 +29594,10 @@ "option.parentNode.disabled": 2, "jQuery.nodeName": 3, "option.parentNode": 2, -<<<<<<< HEAD "specific": 2, "We": 6, "get/set": 2, "attributes": 14, -======= - "Get": 4, - "specific": 2, - ".val": 5, - "get/set": 2, - "text": 14, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "comment": 3, "nType": 8, "jQuery.attrFn": 2, @@ -37433,7 +29605,6 @@ "prop": 24, "supported": 2, "jQuery.prop": 2, -<<<<<<< HEAD "hooks": 14, "notxml": 8, "jQuery.isXMLDoc": 2, @@ -37449,25 +29620,10 @@ "certain": 2, "characters": 6, "rinvalidChar.test": 1, -======= - "notxml": 8, - "jQuery.isXMLDoc": 2, - "All": 1, - "lowercase": 1, - "Grab": 1, - "necessary": 1, - "hook": 1, - "hooks": 14, - "jQuery.attrHooks": 2, - "rboolean.test": 4, - "boolHook": 3, - "nodeHook": 1, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "jQuery.removeAttr": 2, "hooks.set": 2, "elem.setAttribute": 2, "hooks.get": 2, -<<<<<<< HEAD "Non": 3, "existent": 2, "normalize": 2, @@ -37482,35 +29638,6 @@ "tabIndex": 4, "readOnly": 2, "htmlFor": 2, -======= - "existent": 2, - "normalize": 2, - "removeAttr": 5, - "propName": 8, - "attrNames": 3, - "isBool": 4, - "value.toLowerCase": 2, - "rspace": 1, - "attrNames.length": 1, - "jQuery.propFix": 2, - "#9699": 1, - "explanation": 1, - "approach": 1, - "removal": 1, - "do": 15, - "#10870": 1, - "jQuery.attr": 2, - "getSetAttribute": 3, - "corresponding": 2, - "attrHooks": 3, - "changed": 3, - "button": 24, - "tabIndex": 4, - "readOnly": 2, - "htmlFor": 2, - "class": 5, - "className": 4, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "maxLength": 2, "cellSpacing": 2, "cellPadding": 2, @@ -37519,7 +29646,6 @@ "useMap": 2, "frameBorder": 2, "contentEditable": 2, -<<<<<<< HEAD "auto": 3, "&": 13, "getData": 3, @@ -57812,14584 +49938,172 @@ "weapon": 1, "WEAPON_MINIGUN": 1, "Kick": 1 -======= - "tabindex": 4, - "height": 25, - "auto": 3, - "href": 9, - "encoding": 26, - "mouseenter": 9, - "mouseleave": 9, - "mouseover": 12, - "mouseout": 12, - "**": 1, - "getData": 3, - "setData": 3, - "changeData": 3, - "click": 11, - "focus": 7, - "blur": 8, - "attrChange": 4, - "attrName": 4, - "relatedNode": 4, - "srcElement": 5, - "altKey": 4, - "bubbles": 4, - "cancelable": 4, - "ctrlKey": 6, - "currentTarget": 4, - "eventPhase": 4, - "metaKey": 5, - "relatedTarget": 6, - "shiftKey": 4, - "timeStamp": 1, - "view": 4, - "char": 2, - "charCode": 7, - "keyCode": 6, - "buttons": 1, - "clientX": 6, - "clientY": 5, - "fromElement": 6, - "offsetX": 4, - "offsetY": 4, - "pageX": 4, - "pageY": 4, - "screenX": 4, - "screenY": 4, - "toElement": 5, - "focusin": 9, - "focusout": 11, - "form": 12, - "window.Modernizr": 1, - "Modernizr": 12, - "enableClasses": 3, - "docElement": 1, - "document.documentElement": 2, - "mod": 12, - "modElem": 2, - "mStyle": 2, - "modElem.style": 1, - "inputElem": 6, - "smile": 4, - ".toString": 3, - "prefixes": 2, - "omPrefixes": 1, - "cssomPrefixes": 2, - "omPrefixes.split": 1, - "domPrefixes": 3, - "omPrefixes.toLowerCase": 1, - "ns": 1, - "inputs": 3, - "classes": 1, - "classes.slice": 1, - "featureName": 5, - "testing": 1, - "injectElementWithStyles": 9, - "rule": 5, - "testnames": 3, - "fakeBody": 4, - "while": 53, - "node.id": 1, - ".join": 14, - "div.id": 1, - "fakeBody.appendChild": 1, - "//avoid": 1, - "crashing": 1, - "background": 56, - "image": 5, - "fakeBody.style.background": 1, - "docElement.appendChild": 2, - "fakeBody.parentNode.removeChild": 1, - "div.parentNode.removeChild": 1, - "testMediaQuery": 2, - "mq": 3, - "matchMedia": 3, - "window.matchMedia": 1, - "window.msMatchMedia": 1, - ".matches": 1, - "bool": 30, - "node.currentStyle": 2, - "isEventSupported": 5, - "TAGNAMES": 2, - "element.setAttribute": 3, - "element.removeAttribute": 2, - "_hasOwnProperty": 2, - ".hasOwnProperty": 2, - "hasOwnProperty": 5, - "_hasOwnProperty.call": 2, - "object.constructor.prototype": 1, - "Function.prototype.bind": 2, - "bind": 3, - "TypeError": 2, - "slice.call": 3, - "F.prototype": 1, - "target.prototype": 1, - "result": 9, - "target.apply": 2, - "args.concat": 2, - "setCss": 7, - "str": 4, - "mStyle.cssText": 1, - "setCssAll": 2, - "str1": 6, - "str2": 4, - "prefixes.join": 3, - "contains": 8, - "substr": 2, - ".indexOf": 2, - "testProps": 3, - "props": 21, - "prefixed": 7, - "testDOMProps": 2, - "item": 4, - "item.bind": 1, - "testPropsAll": 17, - "ucProp": 5, - "prop.charAt": 1, - "prop.substr": 1, - "cssomPrefixes.join": 1, - "elem.getContext": 2, - ".getContext": 8, - ".fillText": 1, - "window.WebGLRenderingContext": 1, - "window.DocumentTouch": 1, - "DocumentTouch": 1, - "node.offsetTop": 1, - "window.postMessage": 1, - "window.openDatabase": 1, - "history.pushState": 1, - "mStyle.backgroundColor": 3, - "url": 23, - "mStyle.background": 1, - ".style.textShadow": 1, - "mStyle.opacity": 1, - "str3": 2, - "str1.length": 1, - "mStyle.backgroundImage": 1, - "docElement.style": 1, - "node.offsetLeft": 1, - "node.offsetHeight": 2, - "document.styleSheets": 1, - "document.styleSheets.length": 1, - "cssText": 4, - "style.cssRules": 3, - ".cssText": 2, - "style.cssText": 1, - "/src/i.test": 1, - "cssText.indexOf": 1, - "rule.split": 1, - "elem.canPlayType": 10, - "Boolean": 2, - "bool.ogg": 2, - "bool.h264": 1, - "bool.webm": 1, - "bool.mp3": 1, - "bool.wav": 1, - "bool.m4a": 1, - "localStorage.setItem": 1, - "localStorage.removeItem": 1, - "sessionStorage.setItem": 1, - "sessionStorage.removeItem": 1, - "window.Worker": 1, - "window.applicationCache": 1, - "document.createElementNS": 6, - "ns.svg": 4, - ".createSVGRect": 1, - "div.firstChild.namespaceURI": 1, - "/SVGAnimate/.test": 1, - "toString.call": 2, - "/SVGClipPath/.test": 1, - "webforms": 2, - "len": 11, - "props.length": 2, - "attrs.list": 2, - "window.HTMLDataListElement": 1, - "inputElemType": 5, - "defaultView": 2, - "inputElem.setAttribute": 1, - "inputElem.type": 1, - "inputElem.value": 2, - "inputElem.style.cssText": 1, - "range": 2, - "inputElem.style.WebkitAppearance": 1, - "document.defaultView": 1, - "defaultView.getComputedStyle": 2, - ".WebkitAppearance": 1, - "inputElem.offsetHeight": 1, - "docElement.removeChild": 1, - "tel": 2, - "email": 2, - "inputElem.checkValidity": 2, - "feature": 12, - "feature.toLowerCase": 2, - "classes.push": 1, - "Modernizr.input": 1, - "Modernizr.addTest": 2, - "docElement.className": 2, - "chaining.": 1, - "window.html5": 2, - "reSkip": 1, - "map": 7, - "textarea": 8, - "iframe": 3, - "/i": 22, - "saveClones": 1, - "code": 2, - "fieldset": 1, - "h1": 5, - "h2": 5, - "h3": 3, - "h4": 3, - "h5": 1, - "h6": 1, - "img": 1, - "label": 2, - "li": 19, - "link": 2, - "ol": 1, - "p": 110, - "param": 3, - "q": 34, - "script": 7, - "span": 1, - "strong": 1, - "tfoot": 1, - "th": 1, - "thead": 2, - "tr": 23, - "ul": 1, - "supportsHtml5Styles": 5, - "supportsUnknownElements": 3, - "a.innerHTML": 7, - "//if": 2, - "implemented": 1, - "assume": 1, - "Styles": 1, - "Chrome": 2, - "additional": 1, - "solve": 1, - "node.hidden": 1, - ".display": 1, - "a.childNodes.length": 1, - "frag.cloneNode": 1, - "frag.createDocumentFragment": 1, - "frag.createElement": 2, - "addStyleSheet": 2, - "ownerDocument": 9, - "ownerDocument.createElement": 3, - "ownerDocument.getElementsByTagName": 1, - "ownerDocument.documentElement": 1, - "p.innerHTML": 1, - "parent.insertBefore": 1, - "p.lastChild": 1, - "parent.firstChild": 1, - "getElements": 2, - "html5.elements": 1, - "elements.split": 1, - "shivMethods": 2, - "docCreateElement": 5, - "docCreateFragment": 2, - "ownerDocument.createDocumentFragment": 2, - "nodeName": 20, - "//abort": 1, - "shiv": 1, - "html5.shivMethods": 1, - ".cloneNode": 4, - "saveClones.test": 1, - "node.canHaveChildren": 1, - "reSkip.test": 1, - "frag.appendChild": 1, - "Function": 3, - "html5": 3, - "shivDocument": 3, - "shived": 5, - "ownerDocument.documentShived": 2, - "html5.shivCSS": 1, - "options.elements": 1, - "options.shivCSS": 1, - "options.shivMethods": 1, - "Modernizr._version": 1, - "Modernizr._prefixes": 1, - "Modernizr._domPrefixes": 1, - "Modernizr._cssomPrefixes": 1, - "Modernizr.mq": 1, - "Modernizr.hasEvent": 1, - "Modernizr.testProp": 1, - "Modernizr.testAllProps": 1, - "Modernizr.testStyles": 1, - "Modernizr.prefixed": 1, - "docElement.className.replace": 1, - "js": 1, - "classes.join": 1, - "this.document": 1, - "PEG.parser": 1, - "quote": 3, - "x": 33, - "result0": 264, - "result1": 81, - "result2": 77, - "parse_singleQuotedCharacter": 3, - "result1.push": 3, - "input.charCodeAt": 18, - "pos": 197, - "reportFailures": 64, - "matchFailed": 40, - "pos1": 63, - "offset": 21, - "chars": 1, - "chars.join": 1, - "pos0": 51, - "parse_simpleSingleQuotedCharacter": 2, - "parse_simpleEscapeSequence": 3, - "parse_zeroEscapeSequence": 3, - "parse_hexEscapeSequence": 3, - "parse_unicodeEscapeSequence": 3, - "parse_eolEscapeSequence": 3, - "pos2": 22, - "parse_eolChar": 6, - "input.length": 9, - "input.charAt": 21, - "char_": 9, - "parse_class": 1, - "result3": 35, - "result4": 12, - "result5": 4, - "parse_classCharacterRange": 3, - "parse_classCharacter": 5, - "result2.push": 1, - "parse___": 2, - "inverted": 4, - "partsConverted": 2, - "part.data": 1, - "rawText": 5, - "part.rawText": 1, - "ignoreCase": 1, - "begin": 1, - "begin.data.charCodeAt": 1, - "end.data.charCodeAt": 1, - "this.SyntaxError": 2, - "begin.rawText": 2, - "end.rawText": 2, - "begin.data": 1, - "end.data": 1, - "parse_bracketDelimitedCharacter": 2, - "quoteForRegexpClass": 1, - "parse_simpleBracketDelimitedCharacter": 2, - "parse_digit": 3, - "recognize": 1, - "input.substr": 9, - "parse_hexDigit": 7, - "String.fromCharCode": 4, - "parse_eol": 4, - "eol": 2, - "parse_letter": 1, - "parse_lowerCaseLetter": 2, - "parse_upperCaseLetter": 2, - "parse_whitespace": 3, - "parse_comment": 3, - "result0.push": 1, - "parse_singleLineComment": 2, - "parse_multiLineComment": 2, - "u2029": 2, - "x0B": 1, - "uFEFF": 1, - "u1680": 1, - "u180E": 1, - "u2000": 1, - "u200A": 1, - "u202F": 1, - "u205F": 1, - "u3000": 1, - "cleanupExpected": 2, - "expected": 12, - "expected.sort": 1, - "lastExpected": 3, - "cleanExpected": 2, - "expected.length": 4, - "cleanExpected.push": 1, - "computeErrorPosition": 2, - "line": 14, - "column": 8, - "seenCR": 5, - "Math.max": 10, - "rightmostFailuresPos": 2, - "ch": 58, - "parseFunctions": 1, - "startRule": 1, - "errorPosition": 1, - "rightmostFailuresExpected": 1, - "errorPosition.line": 1, - "errorPosition.column": 1, - "toSource": 1, - "this._source": 1, - "result.SyntaxError": 1, - "buildMessage": 2, - "expectedHumanized": 5, - "foundHumanized": 3, - "switch": 30, - "expected.slice": 1, - "this.name": 7, - "this.expected": 1, - "this.found": 1, - "this.message": 3, - "this.offset": 2, - "this.line": 3, - "this.column": 1, - "result.SyntaxError.prototype": 1, - "Error.prototype": 1, - "steelseries": 10, - "n.charAt": 1, - "n.substring": 1, - "i.substring": 3, - "this.color": 1, - "ui": 31, - "/255": 1, - "y": 101, - "t.getRed": 4, - "v": 135, - "t.getGreen": 4, - "t.getBlue": 4, - "t.getAlpha": 4, - "i.getRed": 1, - "i.getGreen": 1, - "i.getBlue": 1, - "o": 322, - "i.getAlpha": 1, - "*f": 2, - "w/r": 1, - "p/r": 1, - "c": 775, - "s/r": 1, - "h": 499, - "o/r": 1, - "e*u": 1, - ".toFixed": 3, - "l*u": 1, - "c*u": 1, - "h*u": 1, - "vr": 20, - "stop": 7, - "color": 4, - "Math.floor": 26, - "Math.log10": 1, - "n/Math.pow": 1, - "": 1, - "e=": 21, - "o=": 13, - "beginPath": 12, - "moveTo": 10, - "lineTo": 22, - "quadraticCurveTo": 4, - "closePath": 8, - "stroke": 7, - "i=": 31, - "createElement": 3, - "canvas": 22, - "width=": 17, - "height=": 17, - "ii": 29, - "u=": 12, - "getContext": 26, - "2d": 26, - "ft": 70, - "1": 97, - "fillStyle=": 13, - "rect": 3, - "0": 220, - "fill": 10, - "t=": 19, - "getImageData": 1, - "2": 66, - "3": 13, - "wt": 26, - "r=": 18, - "32": 1, - "62": 1, - "f=": 13, - "84": 1, - "s=": 12, - "94": 1, - "ar": 20, - "255": 3, - "max": 1, - "min": 2, - ".5": 7, - "u/": 3, - "/u": 3, - "f/": 1, - "vt": 50, - "n*6": 2, - "i*": 3, - "h*t": 1, - "*t": 3, - "%": 26, - "f*255": 1, - "u*255": 1, - "r*255": 1, - "st": 59, - "n/255": 1, - "t/255": 1, - "i/255": 1, - "Math.min": 5, - "f/r": 1, - "/f": 3, - "k": 302, - "<0?0:n>": 1, - "si": 23, - "ti": 39, - "Math.round": 7, - "/r": 1, - "u*r": 1, - "ni": 30, - "tt": 53, - "ei": 26, - "ot": 43, - "i.gaugeType": 6, - "steelseries.GaugeType.TYPE4": 2, - "i.size": 6, - "i.minValue": 10, - "i.maxValue": 10, - "bf": 6, - "i.niceScale": 10, - "i.threshold": 10, - "/2": 25, - "i.section": 8, - "i.area": 4, - "lu": 10, - "i.titleString": 10, - "au": 10, - "i.unitString": 10, - "hu": 11, - "i.frameDesign": 10, - "steelseries.FrameDesign.METAL": 7, - "wu": 9, - "i.frameVisible": 10, - "bt": 42, - "i.backgroundColor": 10, - "steelseries.BackgroundColor.DARK_GRAY": 7, - "bu": 11, - "i.backgroundVisible": 10, - "pt": 48, - "i.pointerType": 4, - "steelseries.PointerType.TYPE1": 3, - "i.pointerColor": 4, - "steelseries.ColorDef.RED": 7, - "ee": 2, - "i.knobType": 4, - "steelseries.KnobType.STANDARD_KNOB": 14, - "fi": 26, - "i.knobStyle": 4, - "steelseries.KnobStyle.SILVER": 4, - "i.lcdColor": 8, - "steelseries.LcdColor.STANDARD": 9, - "i.lcdVisible": 8, - "eu": 13, - "i.lcdDecimals": 8, - "ye": 2, - "i.digitalFont": 8, - "pe": 2, - "i.fractionalScaleDecimals": 4, - "br": 19, - "i.ledColor": 10, - "steelseries.LedColor.RED_LED": 7, - "ru": 14, - "i.ledVisible": 10, - "vf": 5, - "i.thresholdVisible": 8, - "kr": 17, - "i.minMeasuredValueVisible": 8, - "dr": 16, - "i.maxMeasuredValueVisible": 8, - "cf": 7, - "i.foregroundType": 6, - "steelseries.ForegroundType.TYPE1": 5, - "af": 5, - "i.foregroundVisible": 10, - "oe": 2, - "i.labelNumberFormat": 10, - "steelseries.LabelNumberFormat.STANDARD": 5, - "yr": 17, - "i.playAlarm": 10, - "uf": 5, - "i.alarmSound": 10, - "fe": 2, - "i.customLayer": 4, - "le": 1, - "i.tickLabelOrientation": 4, - "steelseries.GaugeType.TYPE1": 4, - "steelseries.TickLabelOrientation.TANGENT": 2, - "steelseries.TickLabelOrientation.NORMAL": 2, - "wr": 18, - "i.trendVisible": 4, - "hr": 17, - "i.trendColors": 4, - "steelseries.LedColor.GREEN_LED": 2, - "steelseries.LedColor.CYAN_LED": 2, - "sr": 21, - "i.useOdometer": 2, - "i.odometerParams": 2, - "wf": 4, - "i.odometerUseValue": 2, - "ki": 21, - "r.createElement": 11, - "ki.setAttribute": 2, - "yf": 3, - "ri": 24, - "ht": 34, - "ef": 5, - "steelseries.TrendState.OFF": 4, - "lr": 19, - "f*.06": 1, - "cr": 20, - "f*.29": 19, - "er": 19, - "f*.36": 4, - "ci": 29, - "et": 45, - "gi": 26, - "rr": 21, - "*lt": 9, - "r.getElementById": 7, - "u.save": 7, - "u.clearRect": 5, - "u.canvas.width": 7, - "u.canvas.height": 7, - "g": 441, - "s/2": 2, - "k/2": 1, - "pf": 4, - ".6*s": 1, - "ne": 2, - ".4*k": 1, - "pr": 16, - "s/10": 1, - "ce": 6, - "ae": 2, - "hf": 4, - "k*.13": 2, - "bi": 27, - "s*.4": 1, - "sf": 5, - "rf": 5, - "k*.57": 1, - "tf": 5, - "ve": 3, - "k*.61": 1, - "Math.PI/2": 40, - "ue": 1, - "Math.PI/180": 5, - "ff": 5, - "ir": 23, - "nr": 22, - "ai": 21, - "yt": 32, - "fr": 21, - "oi": 23, - "lf": 5, - "re": 2, - "ai/": 2, - "h/vt": 1, - "*vt": 4, - "Math.ceil": 63, - "b/vt": 1, - "vt/": 3, - "ot.type": 10, - "Math.PI": 13, - "at/yt": 4, - "*Math.PI": 10, - "*ue": 1, - "ci/2": 1, - "wi": 24, - "nf": 7, - "wi.getContext": 2, - "di": 22, - "ut": 59, - "di.getContext": 2, - "fu": 13, - "hi": 15, - "f*.093457": 10, - "uu": 13, - "hi.getContext": 6, - "gt": 32, - "nu": 11, - "gt.getContext": 3, - "iu": 14, - "f*.028037": 6, - "se": 1, - "iu.getContext": 1, - "gr": 12, - "he": 1, - "gr.getContext": 1, - "vi": 16, - "tu": 13, - "vi.getContext": 2, - "yi": 17, - "ou": 13, - "yi.getContext": 2, - "pi": 24, - "kt": 24, - "pi.getContext": 2, - "pu": 9, - "li.getContext": 6, - "gu": 9, - "du": 10, - "ku": 9, - "yu": 10, - "cu": 18, - "su": 12, - "tr.getContext": 1, - "kf": 3, - "u.textAlign": 2, - "u.strokeStyle": 2, - "ei.textColor": 2, - "u.fillStyle": 2, - "steelseries.LcdColor.STANDARD_GREEN": 4, - "u.shadowColor": 2, - "u.shadowOffsetX": 2, - "s*.007": 3, - "u.shadowOffsetY": 2, - "u.shadowBlur": 2, - "u.font": 2, - "u.fillText": 2, - "n.toFixed": 2, - "bi*.05": 1, - "hf*.5": 1, - "pr*.38": 1, - "bi*.9": 1, - "u.restore": 6, - "te": 2, - "n.save": 35, - "n.drawImage": 14, - "k*.037383": 11, - "s*.523364": 2, - "k*.130841": 1, - "s*.130841": 1, - "k*.514018": 2, - "s*.831775": 1, - "k*.831775": 1, - "s*.336448": 1, - "k*.803738": 2, - "s*.626168": 1, - "n.restore": 35, - "ie": 2, - "t.width": 2, - "f*.046728": 1, - "t.height": 2, - "t.width*.9": 4, - "t.getContext": 2, - "n.createLinearGradient": 17, - ".1": 18, - "t.height*.9": 6, - "i.addColorStop": 27, - ".3": 8, - ".59": 4, - "n.fillStyle": 36, - "n.beginPath": 39, - "n.moveTo": 37, - "t.width*.5": 4, - "n.lineTo": 33, - "t.width*.1": 2, - "n.closePath": 34, - "n.fill": 17, - "n.strokeStyle": 27, - "n.stroke": 31, - "vu": 10, - "": 1, - "": 1, - "n.lineWidth": 30, - "s*.035": 2, - "at/yt*t": 1, - "at/yt*h": 1, - "yt/at": 1, - "n.translate": 93, - "n.rotate": 53, - "n.arc": 6, - "s*.365": 2, - "n.lineWidth/2": 2, - "df": 3, - "bt.labelColor.setAlpha": 1, - "n.textAlign": 12, - "n.textBaseline": 10, - "s*.04": 1, - "n.font": 34, - "bt.labelColor.getRgbaColor": 2, - "lt*fr": 1, - "s*.38": 2, - "s*.35": 1, - "s*.355": 1, - "s*.36": 1, - "s*.3": 1, - "s*.1": 1, - "oi/2": 2, - "parseFloat": 30, - "b.toFixed": 1, - "c.toFixed": 2, - "le.type": 1, - "t.format": 7, - "n.fillText": 54, - "e.toFixed": 2, - "e.toPrecision": 1, - "n.frame": 22, - "n.background": 22, - "n.led": 20, - "n.pointer": 10, - "n.foreground": 22, - "n.trend": 4, - "n.odo": 2, - "rt": 45, - "uu.drawImage": 1, - "nu.drawImage": 3, - "se.drawImage": 1, - "steelseries.ColorDef.BLUE.dark.getRgbaColor": 6, - "he.drawImage": 1, - "steelseries.ColorDef.RED.medium.getRgbaColor": 6, - "ii.length": 2, - ".start": 12, - ".stop": 11, - ".color": 13, - "ui.length": 2, - "ct": 34, - "ut.save": 1, - "ut.translate": 3, - "ut.rotate": 1, - "ut.drawImage": 2, - "s*.475": 1, - "ut.restore": 1, - "steelseries.Odometer": 1, - "_context": 1, - "f*.075": 1, - "decimals": 1, - "wt.decimals": 1, - "wt.digits": 2, - "valueForeColor": 1, - "wt.valueForeColor": 1, - "valueBackColor": 1, - "wt.valueBackColor": 1, - "decimalForeColor": 1, - "wt.decimalForeColor": 1, - "decimalBackColor": 1, - "wt.decimalBackColor": 1, - "font": 1, - "wt.font": 1, - "tr.width": 1, - "nt": 75, - "bt.labelColor": 2, - "pt.type": 6, - "steelseries.TrendState.UP": 2, - "steelseries.TrendState.STEADY": 2, - "steelseries.TrendState.DOWN": 2, - "dt": 30, - "wi.width": 1, - "wi.height": 1, - "di.width": 1, - "di.height": 1, - "hi.width": 3, - "hi.height": 3, - "gt.width": 2, - "gt.height": 1, - "vi.width": 1, - "vi.height": 1, - "yi.width": 1, - "yi.height": 1, - "pi.width": 1, - "pi.height": 1, - "li.width": 3, - "li.height": 3, - "gf": 2, - "yf.repaint": 1, - "ur": 20, - "e3": 5, - "clearInterval": 6, - "this.setValue": 7, - "": 5, - "ki.pause": 1, - "ki.play": 1, - "this.repaint": 126, - "this.getValue": 7, - "this.setOdoValue": 1, - "this.getOdoValue": 1, - "this.setValueAnimated": 7, - "t.playing": 1, - "t.stop": 1, - "Tween": 11, - "Tween.regularEaseInOut": 6, - "t.onMotionChanged": 1, - "n.target._pos": 7, - "": 1, - "i.repaint": 1, - "t.start": 1, - "this.resetMinMeasuredValue": 4, - "this.resetMaxMeasuredValue": 4, - "this.setMinMeasuredValueVisible": 4, - "this.setMaxMeasuredValueVisible": 4, - "this.setMaxMeasuredValue": 3, - "this.setMinMeasuredValue": 3, - "this.setTitleString": 4, - "this.setUnitString": 4, - "this.setMinValue": 4, - "this.getMinValue": 3, - "this.setMaxValue": 3, - "this.getMaxValue": 4, - "this.setThreshold": 4, - "this.setArea": 1, - "foreground": 30, - "this.setSection": 4, - "this.setThresholdVisible": 4, - "this.setLcdDecimals": 3, - "this.setFrameDesign": 7, - "this.setBackgroundColor": 7, - "pointer": 28, - "this.setForegroundType": 5, - "this.setPointerType": 3, - "this.setPointerColor": 4, - "this.setLedColor": 5, - "led": 18, - "this.setLcdColor": 5, - "this.setTrend": 2, - "this.setTrendVisible": 2, - "trend": 2, - "odo": 1, - "u.drawImage": 22, - "cu.setValue": 1, - "of.state": 1, - "u.translate": 8, - "u.rotate": 4, - "u.canvas.width*.4865": 2, - "u.canvas.height*.105": 2, - "s*.006": 1, - "kt.clearRect": 1, - "kt.save": 1, - "kt.translate": 2, - "kt.rotate": 1, - "kt.drawImage": 1, - "kt.restore": 1, - "i.useSectionColors": 4, - "i.valueColor": 6, - "i.valueGradient": 4, - "i.useValueGradient": 4, - "yi.setAttribute": 2, - "e/2": 2, - "ut/2": 4, - "e/10": 3, - "ut*.13": 1, - "e*.4": 1, - "or/2": 1, - "e*.116822": 3, - "e*.485981": 3, - "s*.093457": 5, - "e*.53": 1, - "ut*.61": 1, - "s*.06": 1, - "s*.57": 1, - "dt.type": 4, - "l/Math.PI*180": 4, - "l/et": 8, - "Math.PI/3": 1, - "ft/2": 2, - "Math.PI/": 1, - "ai.getContext": 2, - "s*.060747": 2, - "s*.023364": 2, - "ri.getContext": 6, - "yt.getContext": 5, - "si.getContext": 4, - "ci/": 2, - "f/ht": 1, - "*ht": 8, - "h/ht": 1, - "ht/": 2, - "*kt": 5, - "angle": 1, - "*st": 1, - "n.value": 4, - "tu.drawImage": 1, - "gr.drawImage": 3, - "at.getImageData": 1, - "at.drawImage": 1, - "bt.length": 4, - "ii.push": 1, - "Math.abs": 19, - "ai.width": 1, - "ai.height": 1, - "ri.width": 3, - "ri.height": 3, - "yt.width": 2, - "yt.height": 2, - "si.width": 2, - "si.height": 2, - "s*.085": 1, - "e*.35514": 2, - ".107476*ut": 1, - ".897195*ut": 1, - "t.addColorStop": 6, - ".22": 1, - ".76": 1, - "s*.075": 1, - ".112149*ut": 1, - ".892523*ut": 1, - "r.addColorStop": 6, - "e*.060747": 2, - "e*.023364": 2, - "n.createRadialGradient": 4, - ".030373*e": 1, - "u.addColorStop": 14, - "i*kt": 1, - "n.rect": 4, - "n.canvas.width": 3, - "n.canvas.height": 3, - "n.canvas.width/2": 6, - "n.canvas.height/2": 4, - "u.createRadialGradient": 1, - "t.light.getRgbaColor": 2, - "t.dark.getRgbaColor": 2, - "ni.textColor": 2, - "e*.007": 5, - "oi*.05": 1, - "or*.5": 1, - "cr*.38": 1, - "oi*.9": 1, - "ei.labelColor.setAlpha": 1, - "e*.04": 1, - "ei.labelColor.getRgbaColor": 2, - "st*di": 1, - "e*.28": 1, - "e*.1": 1, - "e*.0375": 1, - "h.toFixed": 3, - "df.type": 1, - "u.toFixed": 2, - "u.toPrecision": 1, - "kf.repaint": 1, - "": 3, - "yi.pause": 1, - "yi.play": 1, - "ti.playing": 1, - "ti.stop": 1, - "ti.onMotionChanged": 1, - "t.repaint": 4, - "ti.start": 1, - "this.setValueColor": 3, - "this.setSectionActive": 2, - "this.setGradient": 2, - "this.setGradientActive": 2, - "useGradient": 2, - "n/lt*": 1, - "vi.getEnd": 1, - "vi.getStart": 1, - "s/c": 1, - "vi.getColorAt": 1, - ".getRgbaColor": 3, - "": 1, - "e.medium.getHexColor": 1, - "i.medium.getHexColor": 1, - "n*kt": 1, - "pu.state": 1, - "i.orientation": 2, - "steelseries.Orientation.NORTH": 2, - "hi.setAttribute": 2, - "steelseries.GaugeType.TYPE5": 1, - "kt/at": 2, - "f.clearRect": 2, - "f.canvas.width": 3, - "f.canvas.height": 3, - "h/2": 1, - "k*.733644": 1, - ".455*h": 1, - ".51*k": 1, - "bi/": 2, - "l/ot": 1, - "*ot": 2, - "d/ot": 1, - "ot/": 1, - "ui.getContext": 4, - "u*.093457": 10, - "ii.getContext": 5, - "st.getContext": 2, - "u*.028037": 6, - "hr.getContext": 1, - "er.getContext": 1, - "fi.getContext": 4, - "kr.type": 1, - "ft.type": 1, - "h*.44": 3, - "k*.8": 1, - "k*.16": 1, - "h*.2": 2, - "k*.446666": 2, - "h*.8": 1, - "u*.046728": 1, - "h*.035": 1, - "kt/at*t": 1, - "kt/at*l": 1, - "at/kt": 1, - "h*.365": 2, - "it.labelColor.getRgbaColor": 4, - "vertical": 1, - ".046728*h": 1, - "n.measureText": 2, - ".width": 2, - "k*.4": 1, - "h*.3": 1, - "k*.47": 1, - "it.labelColor.setAlpha": 1, - "steelseries.Orientation.WEST": 6, - "h*.04": 1, - "ht*yi": 1, - "h*.41": 1, - "h*.415": 1, - "h*.42": 1, - "h*.48": 1, - "h*.0375": 1, - "d.toFixed": 1, - "f.toFixed": 1, - "i.toFixed": 2, - "i.toPrecision": 1, - "u/2": 5, - "cr.drawImage": 3, - "ar.drawImage": 1, - "or.drawImage": 1, - "or.restore": 1, - "rr.drawImage": 1, - "rr.restore": 1, - "gt.length": 2, - "p.save": 2, - "p.translate": 8, - "p.rotate": 4, - "p.restore": 3, - "ni.length": 2, - "p.drawImage": 1, - "h*.475": 1, - "k*.32": 1, - "h*1.17": 2, - "it.labelColor": 2, - "ut.type": 6, - "ui.width": 2, - "ui.height": 2, - "ii.width": 2, - "ii.height": 2, - "st.width": 1, - "st.height": 1, - "fi.width": 2, - "fi.height": 2, - "wu.repaint": 1, - "": 2, - "hi.pause": 1, - "hi.play": 1, - "dt.playing": 2, - "dt.stop": 2, - "dt.onMotionChanged": 2, - "": 1, - "dt.start": 2, - "f.save": 5, - "f.drawImage": 9, - "f.translate": 10, - "f.rotate": 5, - "f.canvas.width*.4865": 2, - "f.canvas.height*.27": 2, - "f.restore": 5, - "h*.006": 1, - "h*1.17/2": 1, - "et.clearRect": 1, - "et.save": 1, - "et.translate": 2, - "et.rotate": 1, - "et.drawImage": 1, - "et.restore": 1, - "i.width": 6, - "i.height": 6, - "fi.setAttribute": 2, - "l.type": 26, - "y.clearRect": 2, - "y.canvas.width": 3, - "y.canvas.height": 3, - "*.05": 4, - "f/2": 13, - "it/2": 2, - ".053": 1, - ".038": 1, - "*u": 1, - "u/22": 2, - ".89*f": 2, - "u/10": 2, - "ei/": 1, - "e/ut": 1, - "*ut": 2, - "s/ut": 1, - "ut/": 1, - "kt.getContext": 2, - "rt.getContext": 2, - "dt.getContext": 1, - "ni.getContext": 4, - "lt.textColor": 2, - "n.shadowColor": 2, - "n.shadowOffsetX": 4, - "u*.003": 2, - "n.shadowOffsetY": 4, - "n.shadowBlur": 4, - "u*.004": 1, - "u*.007": 2, - "u*.009": 1, - "f*.571428": 8, - "u*.88": 2, - "u*.055": 2, - "f*.7": 2, - "f*.695": 4, - "f*.18": 4, - "u*.22": 3, - "u*.15": 2, - "t.toFixed": 2, - "i.getContext": 2, - "t.save": 2, - "t.createLinearGradient": 2, - "i.height*.9": 6, - "t.fillStyle": 2, - "t.beginPath": 4, - "t.moveTo": 4, - "i.height*.5": 2, - "t.lineTo": 8, - "i.width*.9": 6, - "t.closePath": 4, - "i.width*.5": 2, - "t.fill": 2, - "t.strokeStyle": 2, - "t.stroke": 2, - "t.restore": 2, - "w.labelColor.setAlpha": 1, - "f*.1": 5, - "w.labelColor.getRgbaColor": 2, - ".34*f": 2, - ".36*f": 6, - ".33*f": 2, - ".32*f": 2, - "u*.12864": 3, - "u*.856796": 1, - "u*.7475": 1, - "c/": 2, - ".65*u": 1, - ".63*u": 3, - ".66*u": 1, - ".67*u": 1, - "f*.142857": 4, - "f*.871012": 2, - "f*.19857": 1, - "f*.82": 1, - "v/": 1, - "tickCounter": 4, - "currentPos": 20, - "tickCounter*a": 2, - "r.toFixed": 8, - "f*.28": 6, - "r.toPrecision": 4, - "u*.73": 3, - "ui/2": 1, - "vi.drawImage": 2, - "yi.drawImage": 2, - "hr.drawImage": 2, - "k.save": 1, - ".856796": 2, - ".7475": 2, - ".12864": 2, - "u*i": 1, - "u*r*": 1, - "bt/": 1, - "k.translate": 2, - "f*.365": 2, - "nt/2": 2, - ".871012": 3, - ".82": 2, - ".142857": 5, - ".19857": 6, - "f*r*bt/": 1, - "f*": 5, - "u*.58": 1, - "k.drawImage": 3, - "k.restore": 1, - "kt.width": 1, - "b*.093457": 2, - "kt.height": 1, - "d*.093457": 2, - "rt.width": 1, - "rt.height": 1, - "ni.width": 2, - "ni.height": 2, - "hu.repaint": 1, - "w.labelColor": 1, - "i*.12864": 2, - "i*.856796": 2, - "i*.7475": 1, - "t*.871012": 1, - "t*.142857": 8, - "t*.82": 1, - "t*.19857": 1, - "steelseries.BackgroundColor.CARBON": 2, - "steelseries.BackgroundColor.PUNCHED_SHEET": 2, - "steelseries.BackgroundColor.STAINLESS": 2, - "steelseries.BackgroundColor.BRUSHED_STAINLESS": 2, - "steelseries.BackgroundColor.TURNED": 2, - "r.setAlpha": 8, - ".05": 2, - "p.addColorStop": 4, - "r.getRgbaColor": 8, - ".15": 2, - ".48": 7, - ".49": 4, - "n.fillRect": 16, - "t*.435714": 4, - "i*.435714": 4, - "i*.142857": 1, - "b.addColorStop": 4, - ".69": 1, - ".7": 1, - ".4": 2, - "t*.007142": 4, - "t*.571428": 2, - "i*.007142": 4, - "i*.571428": 2, - "t*.45": 4, - "t*.114285": 1, - "t/2": 1, - "i*.0486/2": 1, - "i*.053": 1, - "i*.45": 4, - "i*.114285": 1, - "i/2": 1, - "t*.025": 1, - "t*.053": 1, - "ut.addColorStop": 2, - "wt.medium.getRgbaColor": 3, - "wt.light.getRgbaColor": 2, - "i*.05": 2, - "t*.05": 2, - "ot.addColorStop": 2, - ".98": 1, - "Math.PI*.5": 2, - "f*.05": 2, - ".049*t": 8, - ".825*t": 9, - "n.bezierCurveTo": 42, - ".7975*t": 2, - ".0264*t": 4, - ".775*t": 3, - ".0013*t": 12, - ".85*t": 2, - ".8725*t": 3, - ".0365*t": 9, - ".8075*t": 4, - ".7925*t": 3, - ".0214*t": 13, - ".7875*t": 4, - ".7825*t": 5, - ".0189*t": 4, - ".785*t": 1, - ".8175*t": 2, - ".815*t": 1, - ".8125*t": 2, - ".8*t": 2, - ".0377*t": 2, - ".86*t": 4, - ".0415*t": 2, - ".845*t": 1, - ".0465*t": 2, - ".805*t": 2, - ".0113*t": 10, - ".0163*t": 7, - ".8025*t": 1, - ".8225*t": 3, - ".8425*t": 1, - ".03*t": 2, - ".115*t": 5, - ".1075*t": 2, - ".1025*t": 8, - ".0038*t": 2, - ".76*t": 4, - ".7675*t": 2, - ".7725*t": 6, - ".34": 1, - ".0516*t": 7, - ".8525*t": 2, - ".0289*t": 8, - ".875*t": 3, - ".044*t": 1, - ".0314*t": 5, - ".12*t": 4, - ".0875*t": 3, - ".79*t": 1, - "": 5, - "fi.pause": 1, - "fi.play": 1, - "yt.playing": 1, - "yt.stop": 1, - "yt.onMotionChanged": 1, - "t.setValue": 1, - "yt.start": 1, - "mminMeasuredValue": 1, - "": 1, - "setMaxValue=": 1, - "y.drawImage": 6, - "u*n": 2, - "u*i*": 2, - "at/": 1, - "f*.34": 3, - "gt.height/2": 2, - "f*i*at/": 1, - "u*.65": 2, - "ft/": 1, - "dt.width": 1, - "dt.height/2": 2, - ".8": 1, - ".14857": 1, - "f*i*ft/": 1, - "y.save": 1, - "y.restore": 1, - "oi.setAttribute": 2, - "v.clearRect": 2, - "v.canvas.width": 4, - "v.canvas.height": 4, - ".053*e": 1, - "e/22": 2, - "e/1.95": 1, - "u/vt": 1, - "s/vt": 1, - "g.width": 4, - "f*.121428": 2, - "g.height": 4, - "e*.012135": 2, - "f*.012135": 2, - "e*.121428": 2, - "g.getContext": 2, - "d.width": 4, - "d.height": 4, - "d.getContext": 2, - "pt.getContext": 2, - "ci.getContext": 1, - "kt.textColor": 2, - "f*.007": 2, - "f*.009": 1, - "e*.009": 1, - "e*.88": 2, - "e*.055": 2, - "e*.22": 3, - "e*.15": 2, - "k.labelColor.setAlpha": 1, - "k.labelColor.getRgbaColor": 5, - "e*.12864": 3, - "e*.856796": 3, - ".65*e": 1, - ".63*e": 3, - ".66*e": 1, - ".67*e": 1, - "g/": 1, - "tickCounter*h": 2, - "e*.73": 3, - "ti/2": 1, - "n.bargraphled": 4, - "nr.drawImage": 2, - "tr.drawImage": 2, - "nt.save": 1, - "e*.728155*": 1, - "st/": 1, - "nt.translate": 2, - "rt/2": 2, - "f*.856796": 2, - "f*.12864": 2, - "*st/": 1, - "e*.58": 1, - "nt.drawImage": 3, - "nt.restore": 1, - "f*.012135/2": 1, - "ft.push": 1, - "*c": 2, - "y*.121428": 2, - "w*.012135": 2, - "y*.012135": 2, - "w*.121428": 2, - "y*.093457": 2, - "w*.093457": 2, - "pt.width": 1, - "pt.height": 1, - "ku.repaint": 1, - "k.labelColor": 1, - "r*": 2, - "r*1.014": 5, - "t*.856796": 1, - "t*.12864": 1, - "t*.13": 3, - "r*1.035": 4, - "f.setAlpha": 8, - ".047058": 2, - "rt.addColorStop": 4, - "f.getRgbaColor": 8, - ".145098": 1, - ".149019": 1, - "t*.15": 1, - "i*.152857": 1, - ".298039": 1, - "it.addColorStop": 4, - ".686274": 1, - ".698039": 1, - "i*.851941": 1, - "t*.121428": 1, - "i*.012135": 1, - "t*.012135": 1, - "i*.121428": 1, - "*r": 4, - "o/r*": 1, - "yt.getEnd": 2, - "yt.getStart": 2, - "lt/ct": 2, - "yt.getColorAt": 2, - "": 1, - "st.medium.getHexColor": 2, - "a.medium.getHexColor": 2, - "b/2": 2, - "e/r*": 1, - "": 1, - "v.createRadialGradient": 2, - "": 5, - "oi.pause": 1, - "oi.play": 1, - "": 1, - "bargraphled": 3, - "v.drawImage": 2, - "": 1, - "n=": 10, - "856796": 4, - "728155": 2, - "34": 2, - "12864": 2, - "142857": 2, - "65": 2, - "drawImage": 12, - "save": 27, - "restore": 14, - "repaint": 23, - "dr=": 1, - "b=": 25, - "128": 2, - "y=": 5, - "48": 1, - "w=": 4, - "lcdColor": 4, - "LcdColor": 4, - "STANDARD": 3, - "pt=": 5, - "lcdDecimals": 4, - "lt=": 4, - "unitString": 4, - "at=": 3, - "unitStringVisible": 4, - "ht=": 6, - "digitalFont": 4, - "bt=": 3, - "valuesNumeric": 4, - "a=": 23, - "ct=": 5, - "autoScroll": 2, - "section": 2, - "c=": 24, - "wt=": 3, - "getElementById": 4, - "clearRect": 8, - "h=": 19, - "l=": 10, - "v=": 5, - "floor": 13, - "5": 23, - "ot=": 4, - "sans": 12, - "serif": 13, - "it=": 7, - "nt=": 5, - "et=": 6, - "kt=": 4, - "textAlign=": 7, - "strokeStyle=": 8, - "4": 4, - "clip": 1, - "font=": 28, - "measureText": 4, - "toFixed": 3, - "fillText": 23, - "38": 5, - "o*.2": 1, - "clearTimeout": 2, - "<=o-4&&(e=0,c=!1),u.fillText(n,o-2-e,h*.5+v*.38)),u.restore()},dt=function(n,i,r,u){var>": 1, - "d=": 15, - "rt=": 3, - "095": 1, - "createLinearGradient": 6, - "addColorStop": 25, - "4c4c4c": 1, - "08": 1, - "666666": 2, - "92": 1, - "e6e6e6": 1, - "g=": 15, - "gradientStartColor": 1, - "tt=": 3, - "gradientFraction1Color": 1, - "gradientFraction2Color": 1, - "gradientFraction3Color": 1, - "gradientStopColor": 1, - "yt=": 4, - "31": 26, - "k=": 11, - "p=": 5, - "ut=": 6, - "rgb": 6, - "03": 1, - "49": 1, - "57": 1, - "83": 1, - "wt.repaint": 1, - "f.length": 5, - "resetBuffers": 1, - "this.setScrolling": 1, - "w.textColor": 1, - "": 1, - "<=f[n].stop){t=et[n],i=ut[n];break}u.drawImage(t,0,0),kt(a,i)},this.repaint(),this},wr=function(n,t){t=t||{};var>": 1, - "64": 1, - "875": 2, - "textBaseline=": 4, - "textColor": 2, - "STANDARD_GREEN": 1, - "shadowColor=": 1, - "shadowOffsetX=": 1, - "05": 2, - "shadowOffsetY=": 1, - "shadowBlur=": 1, - "06": 1, - "46": 1, - "8": 2, - "setValue=": 2, - "setLcdColor=": 2, - "repaint=": 2, - "br=": 1, - "size": 6, - "200": 2, - "st=": 3, - "decimalsVisible": 2, - "gt=": 1, - "textOrientationFixed": 2, - "frameDesign": 4, - "FrameDesign": 2, - "METAL": 2, - "frameVisible": 4, - "backgroundColor": 2, - "BackgroundColor": 1, - "DARK_GRAY": 1, - "vt=": 2, - "backgroundVisible": 2, - "pointerColor": 4, - "ColorDef": 2, - "RED": 1, - "foregroundType": 4, - "ForegroundType": 2, - "TYPE1": 2, - "foregroundVisible": 4, - "PI": 54, - "180": 26, - "ni=": 1, - "labelColor": 6, - "getRgbaColor": 21, - "translate": 38, - "360": 15, - "p.labelColor.getRgbaColor": 4, - "f*.38": 7, - "f*.37": 3, - "": 1, - "rotate": 31, - "Math": 51, - "u00b0": 8, - "41": 3, - "45": 5, - "25": 9, - "085": 4, - "100": 4, - "90": 3, - "21": 2, - "u221e": 2, - "135": 1, - "225": 1, - "75": 3, - "270": 1, - "315": 1, - "ti=": 2, - "200934": 2, - "434579": 4, - "163551": 5, - "560747": 4, - "lineWidth=": 6, - "lineCap=": 5, - "lineJoin=": 5, - "471962": 4, - "205607": 1, - "523364": 5, - "799065": 2, - "836448": 5, - "794392": 1, - "ii=": 2, - "350467": 5, - "130841": 1, - "476635": 2, - "bezierCurveTo": 6, - "490654": 3, - "345794": 3, - "509345": 1, - "154205": 1, - "350466": 1, - "dark": 2, - "light": 5, - "setAlpha": 8, - "70588": 4, - "59": 3, - "dt=": 2, - "285046": 5, - "514018": 6, - "21028": 1, - "481308": 4, - "280373": 3, - "495327": 2, - "504672": 2, - "224299": 1, - "289719": 1, - "714953": 5, - "789719": 1, - "719626": 3, - "7757": 1, - "71028": 1, - "ft=": 3, - "*10": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "<-90&&e>": 2, - "<-180&&e>": 2, - "<-270&&e>": 2, - "d.playing": 2, - "d.stop": 2, - "d.onMotionChanged": 2, - "d.start": 2, - "s.save": 4, - "s.clearRect": 3, - "s.canvas.width": 4, - "s.canvas.height": 4, - "s.drawImage": 8, - "e*kt": 1, - "s.translate": 6, - "s.rotate": 3, - "s.fillStyle": 1, - "s.textAlign": 1, - "s.textBaseline": 1, - "s.restore": 6, - "s.font": 2, - "f*.15": 2, - "s.fillText": 2, - "f*.35": 26, - "f*.2": 1, - "k*Math.PI/180": 1, - "u.size": 4, - "u.frameDesign": 4, - "u.frameVisible": 4, - "u.backgroundColor": 4, - "u.backgroundVisible": 4, - "u.pointerType": 2, - "steelseries.PointerType.TYPE2": 1, - "u.pointerColor": 4, - "u.knobType": 4, - "u.knobStyle": 4, - "u.foregroundType": 4, - "u.foregroundVisible": 4, - "u.pointSymbols": 4, - "u.customLayer": 4, - "u.degreeScale": 4, - "u.roseVisible": 4, - "this.value": 4, - "ft.getContext": 2, - "ut.getContext": 2, - "it.getContext": 2, - "ot.getContext": 3, - "et.getContext": 2, - "tt.labelColor.getRgbaColor": 2, - ".08*f": 1, - "f*.033": 1, - "st*10": 2, - ".substring": 2, - ".12*f": 2, - ".06*f": 2, - "tt.symbolColor.getRgbaColor": 1, - "st*2.5": 1, - "bt.type": 1, - "f*.53271": 6, - "e*.453271": 5, - "f*.5": 17, - "e*.149532": 8, - "f*.467289": 6, - "f*.453271": 2, - "e*.462616": 2, - "f*.443925": 9, - "e*.481308": 2, - "e*.5": 10, - "f*.556074": 9, - "f*.546728": 2, - ".471962*f": 5, - ".528036*f": 5, - "o.addColorStop": 4, - "h.light.getRgbaColor": 6, - ".46": 3, - ".47": 3, - "h.medium.getRgbaColor": 6, - "h.dark.getRgbaColor": 3, - "n.lineCap": 5, - "n.lineJoin": 5, - "e*.546728": 5, - "e*.850467": 4, - "e*.537383": 2, - "e*.518691": 2, - "s.addColorStop": 4, - "e*.490654": 2, - "e*.53271": 2, - "e*.556074": 3, - "e*.495327": 4, - "f*.528037": 2, - "f*.471962": 2, - "e*.504672": 4, - ".480099": 1, - "f*.006": 2, - "ft.width": 1, - "ft.height": 1, - "ut.width": 1, - "ut.height": 1, - "it.width": 1, - "it.height": 1, - "ot.width": 1, - "ot.height": 1, - "et.width": 1, - "et.height": 1, - "Tween.elasticEaseOut": 1, - "r.repaint": 1, - "this.setPointSymbols": 1, - "p*st": 1, - "b.clearRect": 1, - "b.save": 1, - "b.translate": 2, - "b.rotate": 1, - "b.drawImage": 1, - "b.restore": 1, - "u.pointerTypeLatest": 2, - "u.pointerTypeAverage": 2, - "steelseries.PointerType.TYPE8": 1, - "u.pointerColorAverage": 2, - "steelseries.ColorDef.BLUE": 1, - "u.lcdColor": 2, - "u.lcdVisible": 2, - "u.digitalFont": 2, - "u.section": 2, - "u.area": 2, - "u.lcdTitleStrings": 2, - "u.titleString": 2, - "u.useColorLabels": 2, - "this.valueLatest": 1, - "this.valueAverage": 1, - "Math.PI*2": 1, - "e.save": 2, - "e.clearRect": 1, - "e.canvas.width": 2, - "e.canvas.height": 2, - "f/10": 1, - "f*.3": 4, - "s*.12": 1, - "s*.32": 1, - "s*.565": 1, - "bt.getContext": 1, - "at.getContext": 1, - "vt.getContext": 1, - "lt.getContext": 1, - "wt.getContext": 1, - "e.textAlign": 1, - "e.strokeStyle": 1, - "ht.textColor": 2, - "e.fillStyle": 1, - "<0&&(n+=360),n=\"00\"+Math.round(n),n=n.substring(n.length,n.length-3),(ht===steelseries.LcdColor.STANDARD||ht===steelseries.LcdColor.STANDARD_GREEN)&&(e.shadowColor=\"gray\",e.shadowOffsetX=f*.007,e.shadowOffsetY=f*.007,e.shadowBlur=f*.007),e.font=pr?gr:br,e.fillText(n+\"\\u00b0\",f/2+gt*.05,(t?or:cr)+er*.5+ui*.38,gt*.9),e.restore()},wi=function(n,t,i,r,u){n.save(),n.strokeStyle=r,n.fillStyle=r,n.lineWidth=f*.035;var>": 1, - "arc": 2, - "365": 2, - "lineWidth": 1, - "lr=": 1, - "35": 1, - "355": 1, - "36": 2, - "bold": 1, - "04": 2, - "ct*5": 1, - "k.symbolColor.getRgbaColor": 1, - "ct*2.5": 1, - "ti.length": 1, - "kt.medium.getRgbaColor": 1, - ".04*f": 1, - "s*.29": 1, - "ii.medium.getRgbaColor": 1, - "s*.71": 1, - "rr.length": 1, - ".0467*f": 1, - "s*.5": 1, - "et.length": 2, - "ft.length": 2, - "": 1, - "ci=": 1, - "li=": 1, - "ai=": 1, - "ki=": 1, - "yi=": 1, - "setValueLatest=": 1, - "getValueLatest=": 1, - "setValueAverage=": 1, - "getValueAverage=": 1, - "setValueAnimatedLatest=": 1, - "playing": 2, - "regularEaseInOut": 2, - "onMotionChanged=": 2, - "_pos": 2, - "onMotionFinished=": 2, - "setValueAnimatedAverage=": 1, - "setArea=": 1, - "setSection=": 1, - "setFrameDesign=": 1, - "pi=": 1, - "setBackgroundColor=": 1, - "setForegroundType=": 1, - "si=": 1, - "setPointerColor=": 1, - "setPointerColorAverage=": 1, - "setPointerType=": 1, - "setPointerTypeAverage=": 1, - "ri=": 1, - "setPointSymbols=": 1, - "setLcdTitleStrings=": 1, - "fi=": 1, - "006": 1, - "ei=": 1, - "ru=": 1, - "WHITE": 1, - "037383": 1, - "056074": 1, - "7fd5f0": 2, - "3c4439": 2, - "72": 1, - "Animal": 12, - "Horse": 12, - "Snake": 12, - "sam": 4, - "tom": 4, - "__hasProp": 2, - "__extends": 6, - "__hasProp.call": 2, - "this.constructor": 5, - "Animal.prototype.move": 2, - "meters": 4, - "Snake.__super__.constructor.apply": 2, - "Snake.prototype.move": 2, - "Snake.__super__.move.call": 2, - "Horse.__super__.constructor.apply": 2, - "Horse.prototype.move": 2, - "Horse.__super__.move.call": 2, - "sam.move": 2, - "tom.move": 2, - "ma": 3, - "c.isReady": 4, - "s.documentElement.doScroll": 2, - "c.ready": 7, - "Qa": 1, - "b.src": 4, - "c.ajax": 1, - "async": 5, - "c.globalEval": 1, - "b.text": 3, - "b.textContent": 2, - "b.innerHTML": 3, - "b.parentNode": 4, - "b.parentNode.removeChild": 2, - "X": 6, - "j": 265, - "a.length": 23, - "c.isFunction": 9, - "d.call": 3, - "J": 5, - "Y": 3, - "na": 1, - ".type": 2, - "c.event.handle.apply": 1, - "oa": 1, - "c.data": 12, - "a.liveFired": 4, - "i.live": 1, - "a.button": 2, - "a.type": 14, - "i.live.slice": 1, - "u.length": 3, - "i.origType.replace": 1, - "O": 6, - "f.push": 5, - "i.selector": 3, - "u.splice": 1, - "a.target": 5, - ".closest": 4, - "a.currentTarget": 4, - "j.length": 2, - ".selector": 1, - ".elem": 1, - "i.preType": 2, - "a.relatedTarget": 2, - "d.push": 1, - "handleObj": 2, - "d.length": 8, - "j.elem": 2, - "a.data": 2, - "j.handleObj.data": 1, - "a.handleObj": 2, - "j.handleObj": 1, - "j.handleObj.origHandler.apply": 1, - "pa": 1, - "b.replace": 3, - "./g": 2, - "qa": 1, - "a.parentNode": 6, - "a.parentNode.nodeType": 2, - "ra": 1, - "b.each": 1, - "this.nodeName": 4, - ".nodeName": 2, - "f.events": 1, - "e.handle": 2, - "e.events": 2, - "c.event.add": 1, - "sa": 2, - ".ownerDocument": 5, - ".length": 24, - "ta.test": 1, - "c.support.checkClone": 2, - "ua.test": 1, - "c.fragments": 2, - "b.createDocumentFragment": 1, - "c.clean": 1, - "cacheable": 2, - "K": 4, - "c.each": 2, - "va.concat.apply": 1, - "va.slice": 1, - "wa": 1, - "a.document": 3, - "a.nodeType": 27, - "a.defaultView": 2, - "a.parentWindow": 2, - "c.fn.init": 1, - "Ra": 2, - "A.jQuery": 3, - "Sa": 2, - "A.": 3, - "A.document": 1, - "T": 4, - "Ta": 1, - "Ua": 1, - "Va": 1, - "Wa": 2, - "u00A0": 2, - "Xa": 1, - "P": 4, - "xa": 3, - "Q": 6, - "L": 10, - "aa": 1, - "ba": 3, - "R": 2, - "ya": 2, - "c.fn": 2, - "c.prototype": 1, - "s.body": 2, - "Ta.exec": 1, - "b.ownerDocument": 6, - "Xa.exec": 1, - "c.isPlainObject": 3, - "s.createElement": 10, - "c.fn.attr.call": 1, - "f.createElement": 1, - "a.cacheable": 1, - "a.fragment.cloneNode": 1, - "a.fragment": 1, - ".childNodes": 2, - "c.merge": 4, - "s.getElementById": 1, - "b.id": 1, - "T.find": 1, - "s.getElementsByTagName": 2, - "b.jquery": 1, - ".find": 5, - "T.ready": 1, - "a.selector": 4, - "a.context": 2, - "c.makeArray": 3, - "jquery": 3, - "toArray": 2, - "R.call": 2, - "this.toArray": 3, - "this.slice": 5, - "pushStack": 4, - "c.isArray": 5, - "ba.apply": 1, - "f.prevObject": 1, - "f.context": 1, - "f.selector": 2, - "c.bindReady": 1, - "a.call": 17, - "Q.push": 1, - "eq": 2, - "this.eq": 4, - "this.pushStack": 12, - "R.apply": 1, - "c.map": 1, - "this.prevObject": 3, - "c.fn.init.prototype": 1, - "c.extend": 7, - "c.fn.extend": 4, - "c.fn.triggerHandler": 1, - ".triggerHandler": 1, - "s.readyState": 2, - "s.addEventListener": 3, - "A.addEventListener": 1, - "s.attachEvent": 3, - "A.attachEvent": 1, - "A.frameElement": 1, - "isFunction": 12, - "isArray": 10, - "isPlainObject": 4, - "a.setInterval": 2, - "a.constructor": 2, - "aa.call": 3, - "a.constructor.prototype": 2, - "c.trim": 3, - "a.replace": 7, - "@": 1, - "A.JSON": 1, - "A.JSON.parse": 2, - "c.error": 2, - "noop": 3, - "globalEval": 2, - "Va.test": 1, - "s.documentElement": 2, - "d.type": 2, - "c.support.scriptEval": 2, - "d.appendChild": 3, - "s.createTextNode": 2, - "d.text": 1, - "b.insertBefore": 3, - "b.firstChild": 5, - "b.removeChild": 3, - "a.nodeName": 12, - "a.nodeName.toUpperCase": 2, - "b.toUpperCase": 3, - "b.apply": 2, - "b.call": 4, - "makeArray": 3, - "ba.call": 1, - "inArray": 5, - "b.indexOf": 2, - "b.length": 12, - "merge": 2, - "grep": 6, - "f.concat.apply": 1, - "guid": 5, - "proxy": 4, - "a.apply": 2, - "b.guid": 2, - "a.guid": 7, - "c.guid": 1, - "a.toLowerCase": 4, - "/.exec": 4, - "/compatible/.test": 1, - "c.uaMatch": 1, - "P.browser": 2, - "c.browser": 1, - "c.browser.version": 1, - "P.version": 1, - "c.browser.webkit": 1, - "c.browser.safari": 1, - "c.inArray": 2, - "ya.call": 1, - "s.removeEventListener": 1, - "s.detachEvent": 1, - "c.support": 2, - "d.style.display": 5, - "d.innerHTML": 2, - "d.getElementsByTagName": 6, - "e.length": 9, - "d.firstChild.nodeType": 1, - "htmlSerialize": 3, - "/red/.test": 1, - "j.getAttribute": 2, - "j.style.opacity": 1, - "j.style.cssFloat": 1, - ".value": 1, - "optSelected": 3, - ".appendChild": 1, - ".selected": 1, - "parentNode": 10, - "d.removeChild": 1, - ".parentNode": 7, - "deleteExpando": 3, - "checkClone": 1, - "scriptEval": 1, - "noCloneEvent": 3, - "boxModel": 1, - "b.type": 4, - "b.appendChild": 1, - "a.insertBefore": 2, - "a.firstChild": 6, - "b.test": 1, - "c.support.deleteExpando": 2, - "a.removeChild": 2, - "d.attachEvent": 2, - "d.fireEvent": 1, - "c.support.noCloneEvent": 1, - "d.detachEvent": 1, - "d.cloneNode": 1, - "s.createDocumentFragment": 1, - "a.appendChild": 3, - "d.firstChild": 2, - "a.cloneNode": 3, - ".lastChild.checked": 2, - "k.style.width": 1, - "k.style.paddingLeft": 1, - "s.body.appendChild": 1, - "c.boxModel": 1, - "c.support.boxModel": 1, - "k.offsetWidth": 1, - "s.body.removeChild": 1, - "n.setAttribute": 1, - "c.support.submitBubbles": 1, - "c.support.changeBubbles": 1, - "c.props": 2, - "readonly": 3, - "maxlength": 2, - "cellspacing": 2, - "rowspan": 2, - "colspan": 2, - "usemap": 2, - "frameborder": 2, - "G": 11, - "Ya": 2, - "za": 3, - "embed": 3, - "applet": 2, - "c.noData": 2, - "a.nodeName.toLowerCase": 3, - "c.cache": 2, - "c.isEmptyObject": 1, - "c.removeData": 2, - "c.expando": 2, - "a.removeAttribute": 3, - "a.split": 4, - "this.trigger": 2, - ".each": 3, - "queue": 7, - "dequeue": 6, - "c.queue": 3, - "d.shift": 2, - "d.unshift": 2, - "f.call": 1, - "c.dequeue": 4, - "c.fx": 1, - "c.fx.speeds": 1, - "this.queue": 4, - "clearQueue": 2, - "Aa": 3, - "ca": 6, - "Za": 2, - "r/g": 2, - "/href": 1, - "style/": 1, - "ab": 1, - "bb": 2, - "cb": 16, - "area": 2, - "Ba": 3, - "/radio": 1, - "checkbox/": 1, - "c.attr": 4, - "this.nodeType": 4, - "this.removeAttribute": 1, - "addClass": 2, - "r.addClass": 1, - "r.attr": 1, - "e.nodeType": 7, - "e.className": 14, - "j.indexOf": 1, - "removeClass": 2, - "n.removeClass": 1, - "n.attr": 1, - "j.replace": 2, - "toggleClass": 2, - "j.toggleClass": 1, - "j.attr": 1, - "i.hasClass": 1, - "hasClass": 2, - "": 1, - "val": 13, - "c.nodeName": 4, - "b.attributes.value": 1, - ".specified": 1, - "b.value": 4, - "b.selectedIndex": 2, - "b.options": 1, - "": 1, - "getAttribute": 3, - "nodeType=": 6, - "call": 9, - "checked=": 1, - "this.selected": 1, - "this.selectedIndex": 1, - "attrFn": 2, - "css": 7, - "c.attrFn": 1, - "c.isXMLDoc": 1, - "a.test": 2, - "ab.test": 1, - "a.getAttributeNode": 7, - ".nodeValue": 1, - "b.specified": 2, - "bb.test": 2, - "cb.test": 1, - "a.href": 2, - "c.support.style": 1, - "a.style.cssText": 3, - "a.setAttribute": 7, - "c.support.hrefNormalized": 1, - "c.style": 1, - "db": 1, - "detail": 3, - "layerX": 3, - "layerY": 3, - "newValue": 3, - "originalTarget": 1, - "prevValue": 3, - "wheelDelta": 3, - "click.specialSubmit": 2, - "submit": 14, - "keypress.specialSubmit": 2, - "password": 5, - ".specialSubmit": 2, - "_change_data": 6, - "file": 5, - ".specialChange": 4, - "unload": 5, - "live": 8, - "lastToggle": 4, - "die": 3, - "hover": 3, - "load": 5, - "resize": 3, - "scroll": 6, - "dblclick": 3, - "mousedown": 3, - "mouseup": 3, - "mousemove": 3, - "keydown": 4, - "keypress": 4, - "keyup": 3, - "onunload": 1, - "m": 76, - "h.nodeType": 4, - "H": 8, - "M": 9, - "I": 7, - "f.exec": 2, - "p.push": 2, - "p.length": 10, - "r.exec": 1, - "n.relative": 5, - "ga": 2, - "p.shift": 4, - "n.match.ID.test": 2, - "k.find": 6, - "v.expr": 4, - "k.filter": 5, - "v.set": 5, - "expr": 2, - "p.pop": 4, - "h.parentNode": 3, - "D": 9, - "k.error": 2, - "j.call": 2, - ".nodeType": 9, - "E": 11, - "l.push": 2, - "l.push.apply": 1, - "k.uniqueSort": 5, - "B": 5, - "g.sort": 1, - "g.length": 2, - "g.splice": 2, - "k.matches": 1, - "n.order.length": 1, - "n.order": 1, - "n.leftMatch": 1, - ".exec": 2, - "q.splice": 1, - "y.substr": 1, - "y.length": 1, - "Syntax": 3, - "unrecognized": 3, - "expression": 4, - "NAME": 2, - "TAG": 2, - "u00c0": 2, - "uFFFF": 2, - "leftMatch": 2, - "attrMap": 2, - "attrHandle": 2, - "g.getAttribute": 1, - "relative": 4, - "W/.test": 1, - "h.toLowerCase": 2, - "": 1, - "previousSibling": 5, - "nth": 5, - "even": 3, - "odd": 2, - "reset": 2, - "sourceIndex": 1, - "": 4, - "name=": 2, - "href=": 2, - "": 2, - "

": 2, - "class=": 5, - "

": 2, - ".TEST": 2, - "
": 4, - "
": 3, - "CLASS": 1, - "nextSibling": 3, - "": 1, - "": 1, - "
": 1, - "
": 1, - "": 4, - "
": 5, - "": 3, - "": 3, - "": 2, - "": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "position": 7, - "absolute": 2, - "solid": 2, - "#000": 2, - "padding": 4, - "": 1, - "": 1, - "fixed": 1, - "marginLeft": 2, - "borderTopWidth": 1, - "borderLeftWidth": 1, - "static": 2, - "Left": 1, - "Top": 1, - "pageXOffset": 2, - "pageYOffset": 1, - "Height": 1, - "Width": 1, - "scrollTo": 1, - "CSS1Compat": 1, - "client": 3, - "cy": 4, - "f.isWindow": 2, - "cv": 2, - "cj": 4, - "b.css": 1, - "b.remove": 1, - "ck": 5, - "c.createElement": 12, - "ck.frameBorder": 1, - "ck.width": 1, - "ck.height": 1, - "c.body.appendChild": 1, - "cl": 3, - "ck.createElement": 1, - "ck.contentWindow": 1, - "ck.contentDocument": 1, - ".document": 1, - "cl.write": 1, - "cl.createElement": 1, - "cl.body.appendChild": 1, - "f.css": 24, - "c.body.removeChild": 1, - "f.each": 21, - "cp.concat.apply": 1, - "cp.slice": 1, - "cq": 3, - "cs": 3, - "f.now": 2, - "a.ActiveXObject": 3, - "a.XMLHttpRequest": 1, - "a.dataFilter": 2, - "a.dataType": 1, - "a.dataTypes": 2, - "a.converters": 3, - "o.split": 1, - "f.error": 4, - "m.replace": 1, - "a.contents": 1, - "a.responseFields": 1, - "f.shift": 1, - "a.mimeType": 1, - "c.getResponseHeader": 1, - ".test": 1, - "f.unshift": 2, - "b_": 4, - "f.isArray": 8, - "bF.test": 1, - "c.dataTypes": 1, - "h.length": 3, - "bU": 4, - "c.dataTypes.unshift": 1, - "bZ": 3, - "f.isFunction": 21, - "b.toLowerCase": 3, - "bQ": 3, - "h.substr": 1, - "bD": 3, - "bx": 2, - "a.offsetWidth": 6, - "a.offsetHeight": 2, - "bn": 2, - "f.ajax": 3, - "f.globalEval": 2, - "bm": 3, - "f.nodeName": 16, - "bl": 3, - "a.getElementsByTagName": 9, - "f.grep": 3, - "a.defaultChecked": 1, - "a.checked": 4, - "bk": 5, - "a.querySelectorAll": 1, - "bj": 3, - "b.nodeType": 6, - "b.clearAttributes": 2, - "b.mergeAttributes": 2, - "b.nodeName.toLowerCase": 1, - "b.outerHTML": 1, - "a.outerHTML": 1, - "b.selected": 1, - "a.defaultSelected": 1, - "b.defaultValue": 1, - "a.defaultValue": 1, - "b.defaultChecked": 1, - "b.checked": 1, - "a.value": 8, - "b.removeAttribute": 3, - "f.expando": 23, - "f.hasData": 2, - "f.data": 25, - "d.events": 1, - "f.extend": 23, - "": 1, - "bh": 1, - "getElementsByTagName": 1, - "appendChild": 1, - "nodeType": 1, - "W": 3, - "N": 2, - "f._data": 15, - "r.live": 1, - "a.target.disabled": 1, - "a.namespace": 1, - "a.namespace.split": 1, - "r.live.slice": 1, - "s.length": 2, - "g.origType.replace": 1, - "q.push": 1, - "g.selector": 3, - "s.splice": 1, - "m.selector": 1, - "n.test": 2, - "g.namespace": 1, - "m.elem.disabled": 1, - "m.elem": 1, - "g.preType": 3, - "f.contains": 5, - "m.level": 1, - "": 1, - "e.elem": 2, - "e.handleObj.data": 1, - "e.handleObj": 1, - "e.handleObj.origHandler.apply": 1, - "a.isPropagationStopped": 1, - "e.level": 1, - "a.isImmediatePropagationStopped": 1, - "e.type": 6, - "e.originalEvent": 1, - "e.liveFired": 1, - "f.event.handle.call": 1, - "e.isDefaultPrevented": 2, - ".preventDefault": 1, - "f.removeData": 4, - "i.resolve": 1, - "c.replace": 4, - "f.isNaN": 3, - "i.test": 1, - "f.parseJSON": 2, - "a.navigator": 1, - "a.location": 1, - "e.isReady": 1, - "c.documentElement.doScroll": 2, - "e.ready": 6, - "e.fn.init": 1, - "a.jQuery": 2, - "a.": 2, - "d/": 3, - "d.userAgent": 1, - "C": 4, - "e.fn": 2, - "e.prototype": 1, - "c.body": 4, - "a.charAt": 2, - "i.exec": 1, - "d.ownerDocument": 1, - "n.exec": 1, - "e.isPlainObject": 1, - "e.fn.attr.call": 1, - "k.createElement": 1, - "e.buildFragment": 1, - "j.cacheable": 1, - "e.clone": 1, - "j.fragment": 2, - "e.merge": 3, - "c.getElementById": 1, - "h.id": 1, - "f.find": 2, - "d.jquery": 1, - "e.isFunction": 5, - "f.ready": 1, - "e.makeArray": 1, - "D.call": 4, - "e.isArray": 2, - "C.apply": 1, - "d.prevObject": 1, - "d.context": 2, - "d.selector": 2, - "e.each": 2, - "e.bindReady": 1, - "y.done": 1, - "D.apply": 1, - "e.map": 1, - "e.fn.init.prototype": 1, - "e.extend": 2, - "e.fn.extend": 1, - "": 1, - "jQuery=": 2, - "isReady=": 1, - "y.resolveWith": 1, - "e.fn.trigger": 1, - "e._Deferred": 1, - "c.readyState": 2, - "c.addEventListener": 4, - "a.addEventListener": 4, - "c.attachEvent": 3, - "a.attachEvent": 6, - "a.frameElement": 1, - "Array.isArray": 7, - "isWindow": 2, - "isNaN": 6, - "m.test": 1, - "A.call": 1, - "e.isWindow": 2, - "B.call": 3, - "e.trim": 1, - "a.JSON": 1, - "a.JSON.parse": 2, - "o.test": 1, - "e.error": 2, - "parseXML": 1, - "a.DOMParser": 1, - "DOMParser": 1, - "d.parseFromString": 1, - "ActiveXObject": 1, - "c.async": 4, - "c.loadXML": 1, - "c.documentElement": 4, - "d.nodeName": 4, - "j.test": 3, - "a.execScript": 1, - "a.eval.call": 1, - "c.apply": 2, - "c.call": 3, - "E.call": 1, - "C.call": 1, - "F.call": 1, - "c.length": 8, - "": 1, - "j=": 14, - "h.concat.apply": 1, - "f.concat": 1, - "g.guid": 3, - "e.guid": 3, - "e.access": 1, - "s.exec": 1, - "t.exec": 1, - "u.exec": 1, - "a.indexOf": 2, - "v.exec": 1, - "a.fn.init": 2, - "a.superclass": 1, - "a.fn": 2, - "a.prototype": 1, - "a.fn.constructor": 1, - "a.sub": 1, - "e.fn.init.call": 1, - "a.fn.init.prototype": 1, - "e.uaMatch": 1, - "x.browser": 2, - "e.browser": 1, - "e.browser.version": 1, - "x.version": 1, - "e.browser.webkit": 1, - "e.browser.safari": 1, - "c.removeEventListener": 2, - "c.detachEvent": 1, - "_Deferred": 4, - "done": 10, - "": 1, - "resolveWith": 4, - "shift": 1, - "apply": 8, - "finally": 3, - "resolve": 7, - "isResolved": 3, - "cancel": 6, - "Deferred": 5, - "rejectWith": 2, - "reject": 4, - "isRejected": 2, - "pipe": 2, - "promise": 14, - "h.call": 2, - "g.resolveWith": 3, - "<=1&&a&&f.isFunction(a.promise)?a:f.Deferred();if(d>": 1, - ".promise": 5, - ".then": 3, - "g.reject": 1, - "g.promise": 1, - "f.support": 2, - "f.appendChild": 1, - "a.firstChild.nodeType": 2, - "/top/.test": 2, - "e.getAttribute": 2, - "e.style.opacity": 1, - "e.style.cssFloat": 1, - "h.value": 3, - "g.selected": 1, - "a.className": 1, - "submitBubbles": 3, - "changeBubbles": 3, - "focusinBubbles": 2, - "inlineBlockNeedsLayout": 3, - "shrinkWrapBlocks": 2, - "reliableMarginRight": 2, - "h.checked": 2, - "j.noCloneChecked": 1, - "h.cloneNode": 1, - ".checked": 2, - "f.disabled": 1, - "j.optDisabled": 1, - "g.disabled": 1, - "j.deleteExpando": 1, - "a.fireEvent": 1, - "j.noCloneEvent": 1, - "a.detachEvent": 1, - "h.setAttribute": 2, - "j.radioValue": 1, - "c.createDocumentFragment": 1, - "k.appendChild": 1, - "j.checkClone": 1, - "k.cloneNode": 1, - "a.style.width": 1, - "a.style.paddingLeft": 1, - "visibility": 3, - "l.style": 1, - "l.appendChild": 1, - "j.appendChecked": 1, - "j.boxModel": 1, - "a.style": 8, - "a.style.display": 3, - "a.style.zoom": 1, - "j.inlineBlockNeedsLayout": 1, - "j.shrinkWrapBlocks": 1, - "j.reliableHiddenOffsets": 1, - "c.defaultView": 2, - "c.defaultView.getComputedStyle": 3, - "i.style.width": 1, - "i.style.marginRight": 1, - "j.reliableMarginRight": 1, - "l.innerHTML": 1, - "f.boxModel": 1, - "f.support.boxModel": 4, - "f.fn.jquery": 1, - "f.cache": 5, - "f.acceptData": 4, - "f.uuid": 1, - ".toJSON": 4, - "f.noop": 4, - "f.camelCase": 5, - ".events": 1, - "f.support.deleteExpando": 3, - "f.noData": 2, - "f.fn.extend": 9, - ".attributes": 2, - "g.indexOf": 2, - "g.substring": 1, - "b.triggerHandler": 2, - "_mark": 2, - "_unmark": 3, - "f.makeArray": 5, - "e.push": 3, - "f.queue": 3, - "c.shift": 2, - "c.unshift": 1, - "f.dequeue": 4, - "f.fx": 2, - "f.fx.speeds": 1, - "d.resolveWith": 1, - "f.Deferred": 2, - "f._Deferred": 2, - "l.done": 1, - "d.promise": 1, - "rea": 1, - "autofocus": 1, - "autoplay": 1, - "controls": 1, - "defer": 1, - "open": 2, - "required": 1, - "scoped": 1, - "f.access": 3, - "f.attr": 2, - "f.removeAttr": 3, - "f.prop": 2, - "removeProp": 1, - "f.propFix": 6, - "c.addClass": 1, - "f.trim": 2, - "c.removeClass": 1, - "g.nodeType": 6, - "g.className": 4, - "h.replace": 2, - "d.toggleClass": 1, - "d.attr": 1, - "h.hasClass": 1, - "": 1, - "f.valHooks": 7, - "e.nodeName.toLowerCase": 1, - "c.get": 1, - "e.value": 1, - "e.val": 1, - "f.map": 5, - "this.nodeName.toLowerCase": 1, - "this.type": 3, - "c.set": 1, - "valHooks": 1, - "a.attributes.value": 1, - "a.text": 1, - "a.selectedIndex": 3, - "a.options": 2, - "": 3, - "optDisabled": 1, - "selected=": 1, - "attrFix": 1, - "f.attrFn": 3, - "f.isXMLDoc": 4, - "f.attrFix": 3, - "f.attrHooks": 5, - "t.test": 2, - "d.toLowerCase": 1, - "c.toLowerCase": 4, - "u.test": 1, - "i.set": 1, - "i.get": 1, - "f.support.getSetAttribute": 2, - "a.removeAttributeNode": 1, - "q.test": 1, - "f.support.radioValue": 1, - "c.specified": 1, - "c.value": 1, - "r.test": 1, - "s.test": 1, - "propFix": 1, - "cellpadding": 1, - "contenteditable": 1, - "f.propHooks": 1, - "h.set": 1, - "h.get": 1, - "propHooks": 1, - "f.attrHooks.value": 1, - "v.get": 1, - "f.attrHooks.name": 1, - "f.valHooks.button": 1, - "d.nodeValue": 3, - "f.support.hrefNormalized": 1, - "f.support.style": 1, - "f.attrHooks.style": 1, - "a.style.cssText.toLowerCase": 1, - "f.support.optSelected": 1, - "f.propHooks.selected": 2, - "b.parentNode.selectedIndex": 1, - "f.support.checkOn": 1, - "f.inArray": 4, - "s.": 1, - "f.event": 2, - "d.handler": 1, - "g.handler": 1, - "d.guid": 4, - "f.guid": 3, - "i.events": 2, - "i.handle": 2, - "f.event.triggered": 3, - "f.event.handle.apply": 1, - "k.elem": 2, - "c.split": 2, - "l.indexOf": 1, - "l.split": 1, - "n.shift": 1, - "h.namespace": 2, - "n.slice": 1, - "h.type": 1, - "h.guid": 2, - "f.event.special": 5, - "p.setup": 1, - "p.setup.call": 1, - "p.add": 1, - "p.add.call": 1, - "h.handler.guid": 2, - "o.push": 1, - "f.event.global": 2, - "global": 5, - "s.events": 1, - "c.type": 9, - "c.handler": 1, - "c.charAt": 1, - "f.event.remove": 5, - "h.indexOf": 3, - "h.split": 2, - "m.shift": 1, - "m.slice": 1, - "q.namespace": 1, - "q.handler": 1, - "p.splice": 1, - "": 1, - "elem=": 4, - "customEvent": 1, - "trigger": 4, - "h.slice": 1, - "i.shift": 1, - "i.sort": 1, - "f.event.customEvent": 1, - "f.Event": 2, - "c.exclusive": 2, - "c.namespace": 2, - "i.join": 2, - "c.namespace_re": 1, - "c.preventDefault": 3, - "c.stopPropagation": 1, - "b.events": 4, - "f.event.trigger": 6, - "b.handle.elem": 2, - "c.result": 3, - "c.target": 3, - "c.currentTarget": 2, - "m.apply": 1, - "k.parentNode": 1, - "k.ownerDocument": 1, - "c.target.ownerDocument": 1, - "c.isPropagationStopped": 1, - "c.isDefaultPrevented": 2, - "o._default": 1, - "o._default.call": 1, - "e.ownerDocument": 1, - "f.event.fix": 2, - "a.event": 1, - "Array.prototype.slice.call": 1, - "namespace_re": 1, - "namespace": 1, - "handler=": 1, - "data=": 2, - "handleObj=": 1, - "result=": 1, - "preventDefault": 4, - "stopPropagation": 5, - "isImmediatePropagationStopped": 2, - "fix": 1, - "Event": 3, - "target=": 2, - "relatedTarget=": 1, - "fromElement=": 1, - "pageX=": 2, - "documentElement": 2, - "scrollLeft": 2, - "clientLeft": 2, - "pageY=": 1, - "scrollTop": 2, - "clientTop": 2, - "which=": 3, - "metaKey=": 1, - "1e8": 1, - "special": 3, - "setup": 5, - "teardown": 6, - "origType": 2, - "beforeunload": 1, - "onbeforeunload=": 3, - "removeEvent=": 1, - "removeEventListener": 3, - "detachEvent": 2, - "Event=": 1, - "originalEvent=": 1, - "type=": 5, - "isDefaultPrevented=": 2, - "defaultPrevented": 1, - "returnValue=": 2, - "getPreventDefault": 2, - "timeStamp=": 1, - "prototype=": 2, - "originalEvent": 2, - "isPropagationStopped=": 1, - "cancelBubble=": 1, - "stopImmediatePropagation": 1, - "isImmediatePropagationStopped=": 1, - "isDefaultPrevented": 1, - "isPropagationStopped": 1, - "G=": 1, - "H=": 1, - "submit=": 1, - "specialSubmit": 3, - "closest": 3, - "keyCode=": 1, - "J=": 1, - "selectedIndex": 1, - "a.selected": 1, - "z.test": 3, - "d.readOnly": 1, - "c.liveFired": 1, - "f.event.special.change": 1, - "filters": 1, - "beforedeactivate": 1, - "K.call": 2, - "a.keyCode": 2, - "beforeactivate": 1, - "f.event.add": 2, - "f.event.special.change.filters": 1, - "I.focus": 1, - "I.beforeactivate": 1, - "f.support.focusinBubbles": 1, - "c.originalEvent": 1, - "a.preventDefault": 3, - "f.fn": 9, - "e.apply": 1, - "this.one": 1, - "unbind": 2, - "this.unbind": 2, - "delegate": 1, - "this.live": 1, - "undelegate": 1, - "this.die": 1, - "triggerHandler": 1, - "toggle": 10, - ".guid": 1, - "this.click": 1, - "this.mouseenter": 1, - ".mouseleave": 1, - "g.charAt": 1, - "n.unbind": 1, - "y.exec": 1, - "a.push": 2, - "n.length": 1, - "": 1, - "this.bind": 2, - "": 2, - "sizcache=": 4, - "sizset": 2, - "sizset=": 2, - "toLowerCase": 3, - "W/": 2, - "d.nodeType": 5, - "k.isXML": 4, - "a.exec": 2, - "x.push": 1, - "x.length": 8, - "m.exec": 1, - "l.relative": 6, - "x.shift": 4, - "l.match.ID.test": 2, - "q.expr": 4, - "q.set": 4, - "x.pop": 4, - "d.parentNode": 4, - "e.call": 1, - "f.push.apply": 1, - "k.contains": 5, - "a.sort": 1, - "": 1, - "matches=": 1, - "matchesSelector=": 1, - "l.order.length": 1, - "l.order": 1, - "l.leftMatch": 1, - "j.substr": 1, - "": 1, - "__sizzle__": 1, - "sizzle": 1, - "l.match.PSEUDO.test": 1, - "a.document.nodeType": 1, - "a.getElementsByClassName": 3, - "a.lastChild.className": 1, - "l.order.splice": 1, - "l.find.CLASS": 1, - "b.getElementsByClassName": 2, - "c.documentElement.contains": 1, - "a.contains": 2, - "c.documentElement.compareDocumentPosition": 1, - "a.compareDocumentPosition": 1, - "a.ownerDocument": 1, - ".documentElement": 1, - "b.nodeName": 2, - "l.match.PSEUDO.exec": 1, - "l.match.PSEUDO": 1, - "f.expr": 4, - "k.selectors": 1, - "f.expr.filters": 3, - "f.unique": 4, - "f.text": 2, - "k.getText": 1, - "/Until": 1, - "parents": 2, - "prevUntil": 2, - "prevAll": 2, - "U": 1, - "f.expr.match.POS": 1, - "V": 2, - "contents": 4, - "next": 9, - "prev": 2, - ".filter": 2, - "": 1, - "e.splice": 1, - "this.filter": 2, - "": 1, - "": 1, - "index": 5, - ".is": 2, - "c.push": 3, - "g.parentNode": 2, - "U.test": 1, - "": 1, - "f.find.matchesSelector": 2, - "g.ownerDocument": 1, - "this.parent": 2, - ".children": 1, - "a.jquery": 2, - "f.merge": 2, - "this.get": 1, - "andSelf": 1, - "this.add": 1, - "f.dir": 6, - "parentsUntil": 1, - "f.nth": 2, - "nextAll": 1, - "nextUntil": 1, - "siblings": 1, - "f.sibling": 2, - "a.parentNode.firstChild": 1, - "a.contentDocument": 1, - "a.contentWindow.document": 1, - "a.childNodes": 1, - "T.call": 1, - "P.test": 1, - "f.filter": 2, - "R.test": 1, - "Q.test": 1, - "e.reverse": 1, - "g.join": 1, - "f.find.matches": 1, - "dir": 1, - "sibling": 1, - "a.nextSibling": 1, - "<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:]+)[^>": 1, - "tbody/i": 1, - "bc": 1, - "bd": 1, - "/checked": 1, - "s*.checked.": 1, - "java": 1, - "ecma": 1, - "script/i": 1, - "CDATA": 1, - "bg": 3, - "legend": 1, - "col": 7, - "_default": 5, - "bg.optgroup": 1, - "bg.option": 1, - "bg.tbody": 1, - "bg.tfoot": 1, - "bg.colgroup": 1, - "bg.caption": 1, - "bg.thead": 1, - "bg.th": 1, - "bg.td": 1, - "f.support.htmlSerialize": 1, - "bg._default": 2, - "c.text": 2, - "this.empty": 3, - ".append": 6, - ".createTextNode": 1, - "wrapAll": 1, - ".wrapAll": 2, - ".eq": 1, - ".clone": 1, - "b.map": 1, - "wrapInner": 1, - ".wrapInner": 1, - "b.contents": 1, - "c.wrapAll": 1, - "b.append": 1, - "unwrap": 1, - ".replaceWith": 1, - "this.childNodes": 1, - ".end": 1, - "append": 1, - "this.domManip": 4, - "this.appendChild": 1, - "prepend": 1, - "this.insertBefore": 1, - "this.firstChild": 1, - "this.parentNode.insertBefore": 2, - "a.push.apply": 2, - "this.nextSibling": 2, - ".toArray": 1, - "f.cleanData": 4, - "d.parentNode.removeChild": 1, - "b.getElementsByTagName": 1, - "this.map": 3, - "f.clone": 2, - ".innerHTML.replace": 1, - "bc.test": 2, - "f.support.leadingWhitespace": 2, - "Z.test": 2, - "_.exec": 2, - ".getElementsByTagName": 2, - "c.html": 3, - "replaceWith": 1, - "c.replaceWith": 1, - ".detach": 1, - "this.parentNode": 1, - ".before": 1, - "detach": 1, - "this.remove": 1, - "domManip": 1, - "f.support.checkClone": 2, - "bd.test": 2, - ".domManip": 1, - "g.html": 1, - "g.domManip": 1, - "j.parentNode": 1, - "f.support.parentNode": 1, - "i.nodeType": 1, - "i.childNodes.length": 1, - "f.buildFragment": 2, - "e.fragment": 1, - "h.childNodes.length": 1, - "h.firstChild": 2, - "": 1, - "k.length": 2, - ".charAt": 1, - "f.fragments": 3, - "i.createDocumentFragment": 1, - "f.clean": 1, - "appendTo": 1, - "prependTo": 1, - "insertBefore": 1, - "insertAfter": 1, - "replaceAll": 1, - "g.childNodes.length": 1, - "this.clone": 1, - "d.concat": 1, - "e.selector": 1, - "f.support.noCloneEvent": 1, - "f.support.noCloneChecked": 1, - "b.createElement": 2, - "b.createTextNode": 2, - "k.replace": 2, - "o.innerHTML": 1, - "o.lastChild": 1, - "f.support.tbody": 1, - "ba.test": 1, - "o.firstChild": 2, - "o.firstChild.childNodes": 1, - "o.childNodes": 2, - "q.length": 1, - ".childNodes.length": 1, - ".parentNode.removeChild": 2, - "o.insertBefore": 1, - "Z.exec": 1, - "f.support.appendChecked": 1, - "k.nodeType": 1, - "h.push": 1, - "be.test": 1, - ".type.toLowerCase": 1, - "h.splice.apply": 1, - "cleanData": 1, - "j.nodeName": 1, - "j.nodeName.toLowerCase": 1, - "f.removeEvent": 1, - "b.handle": 2, - "j.removeAttribute": 2, - "bo": 2, - "/alpha": 1, - "bp": 1, - "/opacity": 1, - "bq": 2, - "bs": 2, - "bv": 2, - "de": 1, - "bw": 2, - "bz": 7, - "bA": 3, - "bB": 5, - "bC": 2, - "f.fn.css": 1, - "f.style": 4, - "cssHooks": 1, - "cssNumber": 3, - "zIndex": 1, - "fontWeight": 1, - "zoom": 1, - "lineHeight": 1, - "widows": 1, - "orphans": 1, - "cssProps": 1, - "f.support.cssFloat": 1, - "f.cssHooks": 3, - "f.cssProps": 2, - "k.get": 1, - "bu.test": 1, - "d.replace": 1, - "f.cssNumber": 1, - "k.set": 1, - "g.get": 1, - "swap": 1, - "camelCase": 3, - "f.curCSS": 1, - "f.swap": 2, - "<0||e==null){e=a.style[b];return>": 1, - "0px": 1, - "f.support.opacity": 1, - "f.cssHooks.opacity": 1, - "bp.test": 1, - "a.currentStyle": 4, - "a.currentStyle.filter": 1, - "a.style.filter": 1, - "RegExp.": 1, - "/100": 2, - "c.zoom": 1, - "b*100": 1, - "d.filter": 1, - "c.filter": 2, - "bo.test": 1, - "g.replace": 1, - "f.support.reliableMarginRight": 1, - "f.cssHooks.marginRight": 1, - "a.style.marginRight": 1, - "a.ownerDocument.defaultView": 1, - "e.getComputedStyle": 1, - "g.getPropertyValue": 1, - "a.ownerDocument.documentElement": 1, - "c.documentElement.currentStyle": 1, - "a.runtimeStyle": 2, - "bs.test": 1, - "bt.test": 1, - "f.left": 3, - "a.runtimeStyle.left": 2, - "a.currentStyle.left": 1, - "f.pixelLeft": 1, - "f.expr.filters.hidden": 2, - "f.support.reliableHiddenOffsets": 1, - "f.expr.filters.visible": 1, - "bE": 2, - "bF": 1, - "bG": 3, - "n/g": 1, - "bH": 2, - "/#.*": 1, - "bI": 1, - "/mg": 1, - "bJ": 1, - "date": 1, - "datetime": 1, - "month": 1, - "time": 1, - "week": 1, - "bK": 1, - "about": 1, - "storage": 1, - "extension": 1, - "widget": 1, - "bL": 1, - "GET": 1, - "HEAD": 3, - "bM": 2, - "bN": 2, - "bO": 2, - "<\\/script>": 2, - "bP": 1, - "bR": 2, - "*/": 2, - "bS": 1, - "bT": 2, - "f.fn.load": 1, - "bV": 3, - "bW": 5, - "bX": 8, - "e.href": 1, - "bY": 1, - "bW.href": 2, - "bS.exec": 1, - "bW.toLowerCase": 1, - "bT.apply": 1, - "a.slice": 2, - "f.param": 2, - "f.ajaxSettings.traditional": 2, - "complete": 6, - "a.responseText": 1, - "a.isResolved": 1, - "a.done": 1, - "i.html": 1, - "i.each": 1, - "serialize": 1, - "this.serializeArray": 1, - "serializeArray": 1, - "this.elements": 2, - "this.disabled": 1, - "this.checked": 1, - "bP.test": 1, - "bJ.test": 1, - ".map": 1, - "b.name": 2, - "success": 2, - "getScript": 1, - "f.get": 2, - "getJSON": 1, - "ajaxSetup": 1, - "f.ajaxSettings": 4, - "ajaxSettings": 1, - "isLocal": 1, - "bK.test": 1, - "contentType": 4, - "accepts": 5, - "xml": 3, - "json": 2, - "/xml/": 1, - "/html/": 1, - "/json/": 1, - "responseFields": 1, - "converters": 2, - "a.String": 1, - "f.parseXML": 1, - "ajaxPrefilter": 1, - "ajaxTransport": 1, - "ajax": 2, - "v.readyState": 1, - "d.ifModified": 1, - "v.getResponseHeader": 2, - "f.lastModified": 1, - "f.etag": 1, - "v.status": 1, - "v.statusText": 1, - "h.resolveWith": 1, - "h.rejectWith": 1, - "v.statusCode": 2, - "g.trigger": 2, - "i.resolveWith": 1, - "f.active": 1, - "f.ajaxSetup": 3, - "d.statusCode": 1, - "readyState": 1, - "setRequestHeader": 6, - "getAllResponseHeaders": 1, - "getResponseHeader": 1, - "bI.exec": 1, - "overrideMimeType": 1, - "d.mimeType": 1, - "abort": 4, - "p.abort": 1, - "h.promise": 1, - "v.success": 1, - "v.done": 1, - "v.error": 1, - "v.fail": 1, - "v.complete": 1, - "i.done": 1, - "<2)for(b>": 1, - "status": 3, - "url=": 1, - "dataTypes=": 1, - "crossDomain=": 2, - "80": 2, - "443": 2, - "traditional": 1, - "toUpperCase": 1, - "hasContent=": 1, - "active": 2, - "ajaxStart": 1, - "hasContent": 2, - "cache=": 1, - "x=": 1, - "1_=": 1, - "_=": 1, - "Content": 1, - "Type": 1, - "ifModified": 1, - "lastModified": 3, - "Modified": 1, - "etag": 3, - "None": 1, - "Accept": 1, - "dataTypes": 4, - "q=": 1, - "01": 1, - "headers": 41, - "beforeSend": 2, - "No": 1, - "Transport": 1, - "readyState=": 1, - "ajaxSend": 1, - "timeout": 2, - "v.abort": 1, - "d.timeout": 1, - "p.send": 1, - "encodeURIComponent": 2, - "f.isPlainObject": 1, - "d.join": 1, - "cc": 2, - "cd": 3, - "jsonp": 1, - "jsonpCallback": 1, - "f.ajaxPrefilter": 2, - "b.contentType": 1, - "b.data": 5, - "b.dataTypes": 2, - "b.jsonp": 3, - "cd.test": 2, - "b.url": 4, - "b.jsonpCallback": 4, - "d.always": 1, - "b.converters": 1, - "/javascript": 1, - "ecmascript/": 1, - "a.cache": 2, - "a.crossDomain": 2, - "a.global": 1, - "f.ajaxTransport": 2, - "c.head": 1, - "c.getElementsByTagName": 1, - "send": 2, - "d.async": 1, - "a.scriptCharset": 2, - "d.charset": 1, - "d.src": 1, - "a.url": 1, - "d.onload": 3, - "d.onreadystatechange": 2, - "d.readyState": 2, - "/loaded": 1, - "complete/.test": 1, - "e.removeChild": 1, - "e.insertBefore": 1, - "e.firstChild": 1, - "cg": 7, - "f.ajaxSettings.xhr": 2, - "this.isLocal": 1, - "cors": 1, - "f.support.ajax": 1, - "c.crossDomain": 3, - "f.support.cors": 1, - "c.xhr": 1, - "c.username": 2, - "h.open": 2, - "c.url": 2, - "c.password": 1, - "c.xhrFields": 3, - "c.mimeType": 2, - "h.overrideMimeType": 2, - "h.setRequestHeader": 1, - "h.send": 1, - "c.hasContent": 1, - "h.readyState": 3, - "h.onreadystatechange": 2, - "h.abort": 1, - "h.status": 1, - "h.getAllResponseHeaders": 1, - "h.responseXML": 1, - "n.documentElement": 1, - "m.xml": 1, - "m.text": 2, - "h.responseText": 1, - "h.statusText": 1, - "c.isLocal": 1, - ".unload": 1, - "cm": 2, - "show": 10, - "hide": 8, - "cn": 1, - "co": 5, - "cp": 1, - "a.webkitRequestAnimationFrame": 1, - "a.mozRequestAnimationFrame": 1, - "a.oRequestAnimationFrame": 1, - "this.animate": 2, - "d.style": 3, - ".style": 1, - "": 1, - "_toggle": 2, - "animate": 4, - "fadeTo": 1, - "queue=": 2, - "animatedProperties=": 1, - "animatedProperties": 2, - "specialEasing": 2, - "easing": 3, - "swing": 2, - "overflow=": 2, - "overflow": 2, - "overflowX": 1, - "overflowY": 1, - "display=": 3, - "zoom=": 1, - "fx": 10, - "m=": 2, - "cur": 6, - "custom": 5, - "timers": 3, - "slideDown": 1, - "slideUp": 1, - "slideToggle": 1, - "fadeIn": 1, - "fadeOut": 1, - "fadeToggle": 1, - "duration": 4, - "duration=": 2, - "off": 1, - "speeds": 4, - "old=": 1, - "complete=": 1, - "old": 2, - "linear": 1, - "cos": 1, - "options=": 1, - "prop=": 3, - "orig=": 1, - "orig": 3, - "step": 7, - "startTime=": 1, - "start=": 1, - "end=": 1, - "unit=": 1, - "unit": 1, - "now=": 1, - "pos=": 1, - "state=": 1, - "co=": 2, - "tick": 3, - "show=": 1, - "hide=": 1, - "e.duration": 3, - "this.startTime": 2, - "this.now": 3, - "this.end": 2, - "this.pos": 4, - "this.state": 3, - "this.update": 2, - "e.animatedProperties": 5, - "this.prop": 2, - "e.overflow": 2, - "f.support.shrinkWrapBlocks": 1, - "e.hide": 2, - "e.show": 1, - "e.orig": 1, - "e.complete.call": 1, - "Infinity": 1, - "h/e.duration": 1, - "f.easing": 1, - "this.start": 2, - "*this.pos": 1, - "f.timers": 2, - "a.splice": 1, - "f.fx.stop": 1, - "slow": 1, - "fast": 1, - "a.elem": 2, - "a.now": 4, - "a.elem.style": 3, - "a.prop": 5, - "a.unit": 1, - "f.expr.filters.animated": 1, - "b.elem": 1, - "cw": 1, - "able": 1, - "f.fn.offset": 2, - "f.offset.setOffset": 2, - "b.ownerDocument.body": 2, - "f.offset.bodyOffset": 2, - "b.getBoundingClientRect": 1, - "e.documentElement": 4, - "c.top": 4, - "c.left": 4, - "e.body": 3, - "g.clientTop": 1, - "h.clientTop": 1, - "g.clientLeft": 1, - "h.clientLeft": 1, - "i.pageYOffset": 1, - "g.scrollTop": 1, - "h.scrollTop": 2, - "i.pageXOffset": 1, - "g.scrollLeft": 1, - "h.scrollLeft": 2, - "f.offset.initialize": 3, - "b.offsetParent": 2, - "g.documentElement": 1, - "g.body": 1, - "g.defaultView": 1, - "j.getComputedStyle": 2, - "b.currentStyle": 2, - "b.offsetTop": 2, - "b.offsetLeft": 2, - "f.offset.supportsFixedPosition": 2, - "k.position": 4, - "b.scrollTop": 1, - "b.scrollLeft": 1, - "f.offset.doesNotAddBorder": 1, - "f.offset.doesAddBorderForTableAndCells": 1, - "cw.test": 1, - "c.borderTopWidth": 2, - "c.borderLeftWidth": 2, - "f.offset.subtractsBorderForOverflowNotVisible": 1, - "c.overflow": 1, - "i.offsetTop": 1, - "i.offsetLeft": 1, - "i.scrollTop": 1, - "i.scrollLeft": 1, - "f.offset": 1, - "b.style": 1, - "d.nextSibling.firstChild.firstChild": 1, - "this.doesNotAddBorder": 1, - "e.offsetTop": 4, - "this.doesAddBorderForTableAndCells": 1, - "h.offsetTop": 1, - "e.style.position": 2, - "e.style.top": 2, - "this.supportsFixedPosition": 1, - "d.style.overflow": 1, - "d.style.position": 1, - "this.subtractsBorderForOverflowNotVisible": 1, - "this.doesNotIncludeMarginInBodyOffset": 1, - "a.offsetTop": 2, - "bodyOffset": 1, - "a.offsetLeft": 1, - "f.offset.doesNotIncludeMarginInBodyOffset": 1, - "setOffset": 1, - "a.style.position": 1, - "e.offset": 1, - "e.position": 1, - "l.top": 1, - "l.left": 1, - "b.top": 2, - "k.top": 1, - "g.top": 1, - "b.left": 2, - "k.left": 1, - "g.left": 1, - "b.using.call": 1, - "e.css": 1, - "this.offsetParent": 2, - "cx.test": 2, - "b.offset": 1, - "d.top": 2, - "d.left": 2, - "offsetParent": 1, - "a.offsetParent": 1, - "g.document.documentElement": 1, - "g.document.body": 1, - "g.scrollTo": 1, - ".scrollLeft": 1, - ".scrollTop": 1, - "e.document.documentElement": 1, - "e.document.compatMode": 1, - "e.document.body": 1, - "this.css": 1, - "cubes": 4, - "math": 4, - "num": 23, - "opposite": 6, - "race": 4, - "square": 10, - "__slice": 2, - "Math.sqrt": 2, - "cube": 2, - "runners": 6, - "winner": 6, - "__slice.call": 2, - "print": 2, - "elvis": 4, - "_i": 10, - "_len": 6, - "_results": 6, - "_results.push": 2, - "math.cube": 2, - "console.log": 3, - "KEYWORDS": 2, - "array_to_hash": 11, - "RESERVED_WORDS": 2, - "KEYWORDS_BEFORE_EXPRESSION": 2, - "KEYWORDS_ATOM": 2, - "OPERATOR_CHARS": 1, - "characters": 6, - "RE_HEX_NUMBER": 1, - "RE_OCT_NUMBER": 1, - "RE_DEC_NUMBER": 1, - "OPERATORS": 2, - "WHITESPACE_CHARS": 2, - "PUNC_BEFORE_EXPRESSION": 2, - "PUNC_CHARS": 1, - "REGEXP_MODIFIERS": 1, - "UNICODE": 1, - "non_spacing_mark": 1, - "space_combining_mark": 1, - "connector_punctuation": 1, - "is_letter": 3, - "UNICODE.letter.test": 1, - "is_digit": 3, - "ch.charCodeAt": 1, - "//XXX": 1, - "out": 1, - "means": 1, - "than": 3, - "is_alphanumeric_char": 3, - "is_unicode_combining_mark": 2, - "UNICODE.non_spacing_mark.test": 1, - "UNICODE.space_combining_mark.test": 1, - "is_unicode_connector_punctuation": 2, - "UNICODE.connector_punctuation.test": 1, - "is_identifier_start": 2, - "is_identifier_char": 1, - "zero": 2, - "joiner": 2, - "": 1, - "": 1, - "my": 1, - "ECMA": 1, - "PDF": 1, - "parse_js_number": 2, - "RE_HEX_NUMBER.test": 1, - "num.substr": 2, - "RE_OCT_NUMBER.test": 1, - "RE_DEC_NUMBER.test": 1, - "JS_Parse_Error": 2, - "message": 5, - "this.col": 2, - "ex": 3, - "ex.name": 1, - "this.stack": 2, - "ex.stack": 1, - "JS_Parse_Error.prototype.toString": 1, - "js_error": 2, - "is_token": 1, - "token": 5, - "token.type": 1, - "token.value": 1, - "EX_EOF": 3, - "tokenizer": 2, - "TEXT": 1, - "TEXT.replace": 1, - "uFEFF/": 1, - "tokpos": 1, - "tokline": 1, - "tokcol": 1, - "newline_before": 1, - "regex_allowed": 1, - "comments_before": 1, - "peek": 5, - "S.text.charAt": 2, - "S.pos": 4, - "signal_eof": 4, - "S.newline_before": 3, - "S.line": 2, - "S.col": 3, - "eof": 6, - "S.peek": 1, - "what": 2, - "S.text.indexOf": 1, - "start_token": 1, - "S.tokline": 3, - "S.tokcol": 3, - "S.tokpos": 3, - "is_comment": 2, - "S.regex_allowed": 1, - "HOP": 5, - "UNARY_POSTFIX": 1, - "nlb": 1, - "ret.comments_before": 1, - "S.comments_before": 2, - "skip_whitespace": 1, - "read_while": 2, - "pred": 2, - "parse_error": 3, - "err": 5, - "read_num": 1, - "prefix": 6, - "has_e": 3, - "after_e": 5, - "has_x": 5, - "has_dot": 3, - "valid": 4, - "read_escaped_char": 1, - "hex_bytes": 3, - "digit": 3, - "<<": 4, - "read_string": 1, - "with_eof_error": 1, - "comment1": 1, - "Unterminated": 2, - "multiline": 1, - "comment2": 1, - "WARNING": 1, - "***": 1, - "Found": 1, - "warn": 3, - "tok": 1, - "read_name": 1, - "backslash": 2, - "Expecting": 1, - "UnicodeEscapeSequence": 1, - "uXXXX": 1, - "Unicode": 1, - "identifier": 1, - "regular": 1, - "regexp": 5, - "operator": 14, - "punc": 27, - "atom": 5, - "keyword": 11, - "Unexpected": 3, - "void": 1, - "<\",>": 1, - "<=\",>": 1, - "debugger": 2, - "outside": 2, - "const": 2, - "stat": 1, - "Label": 1, - "without": 1, - "statement": 1, - "inside": 3, - "defun": 1, - "Name": 1, - "Missing": 1, - "catch/finally": 1, - "blocks": 1, - "unary": 2, - "dot": 2, - "postfix": 1, - "Invalid": 2, - "binary": 1, - "conditional": 1, - "assign": 1, - "assignment": 1, - "seq": 1, - "member": 2, - "array.length": 1, - "Object.prototype.hasOwnProperty.call": 1, - "exports.tokenizer": 1, - "exports.parse": 1, - "parse": 1, - "exports.slice": 1, - "exports.curry": 1, - "curry": 1, - "exports.member": 1, - "exports.array_to_hash": 1, - "exports.PRECEDENCE": 1, - "PRECEDENCE": 1, - "exports.KEYWORDS_ATOM": 1, - "exports.RESERVED_WORDS": 1, - "exports.KEYWORDS": 1, - "exports.ATOMIC_START_TOKEN": 1, - "ATOMIC_START_TOKEN": 1, - "exports.OPERATORS": 1, - "exports.is_alphanumeric_char": 1, - "exports.set_logger": 1, - "logger": 2, - "rdigit": 1, - "readyList.resolveWith": 1, - "jQuery._Deferred": 3, - "breaking": 1, - "Promise": 1, - "promiseMethods": 3, - "Static": 1, - "sliceDeferred": 1, - "Create": 1, - "doing": 3, - "flag": 1, - "cancelled": 5, - "f1": 1, - "f2": 1, - "...": 1, - "_fired": 5, - "deferred.done.apply": 2, - "callbacks.push": 1, - "deferred.resolveWith": 5, - "given": 3, - "available": 1, - "#8421": 1, - "callbacks.shift": 1, - "Has": 1, - "resolved": 1, - "Cancel": 1, - "Full": 1, - "fledged": 1, - "two": 1, - "func": 3, - "failDeferred": 1, - "errorDeferred": 1, - "doneCallbacks": 2, - "failCallbacks": 2, - "deferred.done": 2, - ".fail": 2, - ".fail.apply": 1, - "failDeferred.done": 1, - "failDeferred.resolveWith": 1, - "failDeferred.resolve": 1, - "failDeferred.isResolved": 1, - "fnDone": 2, - "fnFail": 2, - "jQuery.Deferred": 1, - "newDefer": 3, - "action": 3, - "returned": 4, - "fn.apply": 1, - "returned.promise": 2, - "newDefer.resolve": 1, - "newDefer.reject": 1, - "provided": 1, - "aspect": 1, - "added": 1, - "promiseMethods.length": 1, - "failDeferred.cancel": 1, - "deferred.cancel": 2, - "Unexpose": 1, - "Call": 1, - "func.call": 1, - "helper": 1, - "firstParam": 6, - "count": 4, - "<=>": 1, - "resolveFunc": 2, - "sliceDeferred.call": 2, - "Strange": 1, - "FF4": 1, - "Values": 1, - "onto": 2, - "sometimes": 1, - ".when": 1, - "Cloning": 2, - "into": 2, - "fresh": 1, - "solves": 1, - "issue": 1, - "deferred.reject": 1, - "deferred.promise": 1, - "jQuery.support": 1, - "bodyStyle": 1, - "Preliminary": 1, - "div.setAttribute": 1, - "automatically": 2, - "inserted": 1, - "insert": 1, - "tables": 1, - "serialized": 3, - "correctly": 1, - "innerHTML": 1, - "This": 3, - "requires": 1, - "wrapper": 1, - "URLs": 1, - "opt.selected": 1, - "setAttribute": 1, - "class.": 1, - "works": 1, - "attrFixes": 1, - "get/setAttribute": 1, - "ie6/7": 1, - "div.className": 1, - "later": 1, - "properly": 2, - "cloned": 1, - "input.checked": 1, - "support.noCloneChecked": 1, - "input.cloneNode": 1, - "selects": 1, - "Internet": 1, - "Explorer": 1, - "div.test": 1, - "support.deleteExpando": 1, - "div.addEventListener": 1, - "div.attachEvent": 2, - "div.fireEvent": 1, - "shouldn": 2, - "GC": 2, - "references": 1, - "across": 1, - "boundary": 1, - "attached": 1, - "occur": 1, - "defining": 1, - "allows": 1, - "shortcut": 1, - "same": 1, - "path": 5, - "Avoid": 1, - "trying": 1, - "since": 1, - "ends": 1, - "jQuery.uuid": 1, - "TODO": 2, - "hack": 2, - "ONLY.": 2, - "Avoids": 2, - "exposing": 2, - "metadata": 2, - "plain": 2, - "jQuery.noop": 2, - "An": 1, - "key/value": 1, - "pair": 1, - "shallow": 1, - "copied": 1, - "existing": 1, - "Internal": 1, - "separate": 1, - "destroy": 1, - "had": 1, - "thing": 2, - "internalCache": 3, - "Browsers": 1, - "deletion": 1, - "refuse": 1, - "browsers": 2, - "faster": 1, - "iterating": 1, - "persist": 1, - "existed": 1, - "jQuery.isNaN": 1, - "Normalize": 1, - "jQuery.attrFix": 2, - "formHook": 3, - "forms": 1, - "rinvalidChar.test": 1, - "jQuery.support.getSetAttribute": 1, - "elem.removeAttributeNode": 1, - "elem.getAttributeNode": 1, - "bubbling": 1, - "live.": 2, - "hasDuplicate": 1, - "baseHasDuplicate": 2, - "rBackslash": 1, - "rNonWord": 1, - "Sizzle": 1, - "results": 4, - "seed": 1, - "origContext": 1, - "context.nodeType": 2, - "checkSet": 1, - "extra": 1, - "pop": 1, - "prune": 1, - "contextXML": 1, - "Sizzle.isXML": 1, - "soFar": 1, - "Reset": 1, - "util": 1, - "require": 9, - "net": 1, - "stream": 1, - "EventEmitter": 3, - ".EventEmitter": 1, - "FreeList": 2, - ".FreeList": 1, - "HTTPParser": 2, - "process.binding": 1, - ".HTTPParser": 1, - "assert": 8, - ".ok": 1, - "END_OF_FILE": 3, - "debug": 15, - "process.env.NODE_DEBUG": 2, - "/http/.test": 1, - "console.error": 3, - "parserOnHeaders": 2, - "this.maxHeaderPairs": 2, - "this._headers.length": 1, - "this._headers": 13, - "this._headers.concat": 1, - "this._url": 1, - "parserOnHeadersComplete": 2, - "parser": 27, - "info.headers": 1, - "info.url": 1, - "parser._headers": 6, - "parser._url": 4, - "parser.incoming": 9, - "IncomingMessage": 4, - "parser.socket": 4, - "parser.incoming.httpVersionMajor": 1, - "info.versionMajor": 2, - "parser.incoming.httpVersionMinor": 1, - "info.versionMinor": 2, - "parser.incoming.httpVersion": 1, - "parser.incoming.url": 1, - "headers.length": 2, - "parser.maxHeaderPairs": 4, - "parser.incoming._addHeaderLine": 2, - "info.method": 2, - "parser.incoming.method": 1, - "parser.incoming.statusCode": 2, - "info.statusCode": 1, - "parser.incoming.upgrade": 4, - "info.upgrade": 2, - "skipBody": 3, - "response": 3, - "CONNECT": 1, - "parser.onIncoming": 3, - "info.shouldKeepAlive": 1, - "parserOnBody": 2, - "b.slice": 1, - "parser.incoming._paused": 2, - "parser.incoming._pendings.length": 2, - "parser.incoming._pendings.push": 2, - "parser.incoming._emitData": 1, - "parserOnMessageComplete": 2, - "parser.incoming.complete": 2, - "parser.incoming.readable": 1, - "parser.incoming._emitEnd": 1, - "parser.socket.readable": 1, - "parser.socket.resume": 1, - "parsers": 2, - "HTTPParser.REQUEST": 2, - "parser.onHeaders": 1, - "parser.onHeadersComplete": 1, - "parser.onBody": 1, - "parser.onMessageComplete": 1, - "exports.parsers": 1, - "CRLF": 13, - "STATUS_CODES": 2, - "exports.STATUS_CODES": 1, - "RFC": 16, - "obsoleted": 1, - "connectionExpression": 1, - "/Connection/i": 1, - "transferEncodingExpression": 1, - "/Transfer": 1, - "Encoding/i": 1, - "closeExpression": 1, - "/close/i": 1, - "chunkExpression": 1, - "/chunk/i": 1, - "contentLengthExpression": 1, - "/Content": 1, - "Length/i": 1, - "dateExpression": 1, - "/Date/i": 1, - "expectExpression": 1, - "/Expect/i": 1, - "continueExpression": 1, - "continue/i": 1, - "dateCache": 5, - "utcDate": 2, - "d.toUTCString": 1, - "d.getMilliseconds": 1, - "socket": 26, - "stream.Stream.call": 2, - "this.socket": 10, - "this.connection": 8, - "this.httpVersion": 1, - "this.complete": 2, - "this.headers": 2, - "this.trailers": 2, - "this.readable": 1, - "this._paused": 3, - "this._pendings": 1, - "this._endEmitted": 3, - "this.url": 1, - "this.method": 2, - "this.statusCode": 3, - "this.client": 1, - "util.inherits": 7, - "stream.Stream": 2, - "exports.IncomingMessage": 1, - "IncomingMessage.prototype.destroy": 1, - "this.socket.destroy": 3, - "IncomingMessage.prototype.setEncoding": 1, - "StringDecoder": 2, - ".StringDecoder": 1, - "lazy": 1, - "this._decoder": 2, - "IncomingMessage.prototype.pause": 1, - "this.socket.pause": 1, - "IncomingMessage.prototype.resume": 1, - "this.socket.resume": 1, - "this._emitPending": 1, - "IncomingMessage.prototype._emitPending": 1, - "this._pendings.length": 1, - "process.nextTick": 1, - "self._paused": 1, - "self._pendings.length": 2, - "chunk": 14, - "self._pendings.shift": 1, - "Buffer.isBuffer": 2, - "self._emitData": 1, - "self.readable": 1, - "self._emitEnd": 1, - "IncomingMessage.prototype._emitData": 1, - "this._decoder.write": 1, - "string.length": 1, - "this.emit": 5, - "IncomingMessage.prototype._emitEnd": 1, - "IncomingMessage.prototype._addHeaderLine": 1, - "field": 36, - "dest": 12, - "field.toLowerCase": 1, - ".push": 3, - "field.slice": 1, - "OutgoingMessage": 5, - "this.output": 3, - "this.outputEncodings": 2, - "this.writable": 1, - "this._last": 3, - "this.chunkedEncoding": 6, - "this.shouldKeepAlive": 4, - "this.useChunkedEncodingByDefault": 4, - "this.sendDate": 3, - "this._hasBody": 6, - "this._trailer": 5, - "this.finished": 4, - "exports.OutgoingMessage": 1, - "OutgoingMessage.prototype.destroy": 1, - "OutgoingMessage.prototype._send": 1, - "this._headerSent": 5, - "this._header": 10, - "this.output.unshift": 1, - "this.outputEncodings.unshift": 1, - "this._writeRaw": 2, - "OutgoingMessage.prototype._writeRaw": 1, - "data.length": 3, - "this.connection._httpMessage": 3, - "this.connection.writable": 3, - "this.output.length": 5, - "this._buffer": 2, - "this.output.shift": 2, - "this.outputEncodings.shift": 2, - "this.connection.write": 4, - "OutgoingMessage.prototype._buffer": 1, - "this.output.push": 2, - "this.outputEncodings.push": 2, - "lastEncoding": 2, - "lastData": 2, - "data.constructor": 1, - "lastData.constructor": 1, - "OutgoingMessage.prototype._storeHeader": 1, - "firstLine": 2, - "sentConnectionHeader": 3, - "sentContentLengthHeader": 4, - "sentTransferEncodingHeader": 3, - "sentDateHeader": 3, - "sentExpect": 3, - "messageHeader": 7, - "store": 3, - "connectionExpression.test": 1, - "closeExpression.test": 1, - "self._last": 4, - "self.shouldKeepAlive": 4, - "transferEncodingExpression.test": 1, - "chunkExpression.test": 1, - "self.chunkedEncoding": 1, - "contentLengthExpression.test": 1, - "dateExpression.test": 1, - "expectExpression.test": 1, - "Object.keys": 5, - "keys.length": 5, - "value.length": 1, - "shouldSendKeepAlive": 2, - "this.agent": 2, - "this._send": 8, - "OutgoingMessage.prototype.setHeader": 1, - "this._headerNames": 5, - "OutgoingMessage.prototype.getHeader": 1, - "OutgoingMessage.prototype.removeHeader": 1, - "OutgoingMessage.prototype._renderHeaders": 1, - "OutgoingMessage.prototype.write": 1, - "this._implicitHeader": 2, - "chunk.length": 2, - "Buffer.byteLength": 2, - "len.toString": 2, - "OutgoingMessage.prototype.addTrailers": 1, - "OutgoingMessage.prototype.end": 1, - "hot": 3, - "this.write": 1, - "chunk.": 1, - "this._finish": 2, - "OutgoingMessage.prototype._finish": 1, - "ServerResponse": 5, - "DTRACE_HTTP_SERVER_RESPONSE": 1, - "ClientRequest": 6, - "DTRACE_HTTP_CLIENT_REQUEST": 1, - "OutgoingMessage.prototype._flush": 1, - "this.socket.writable": 2, - "XXX": 1, - "Necessary": 1, - "this.socket.write": 1, - "req": 32, - "OutgoingMessage.call": 2, - "req.method": 5, - "req.httpVersionMajor": 2, - "req.httpVersionMinor": 2, - "exports.ServerResponse": 1, - "ServerResponse.prototype.statusCode": 1, - "onServerResponseClose": 3, - "this._httpMessage.emit": 2, - "ServerResponse.prototype.assignSocket": 1, - "socket._httpMessage": 9, - "socket.on": 2, - "this._flush": 1, - "ServerResponse.prototype.detachSocket": 1, - "socket.removeListener": 5, - "ServerResponse.prototype.writeContinue": 1, - "this._sent100": 2, - "ServerResponse.prototype._implicitHeader": 1, - "this.writeHead": 1, - "ServerResponse.prototype.writeHead": 1, - "statusCode": 7, - "reasonPhrase": 4, - "headerIndex": 4, - "this._renderHeaders": 3, - "obj.length": 1, - "obj.push": 1, - "statusLine": 2, - "statusCode.toString": 1, - "this._expect_continue": 1, - "this._storeHeader": 2, - "ServerResponse.prototype.writeHeader": 1, - "this.writeHead.apply": 1, - "Agent": 5, - "self.options": 2, - "self.requests": 6, - "self.sockets": 3, - "self.maxSockets": 1, - "self.options.maxSockets": 1, - "Agent.defaultMaxSockets": 2, - "self.on": 1, - "port": 29, - "localAddress": 15, - ".shift": 1, - ".onSocket": 1, - "socket.destroy": 10, - "self.createConnection": 2, - "net.createConnection": 3, - "exports.Agent": 1, - "Agent.prototype.defaultPort": 1, - "Agent.prototype.addRequest": 1, - "this.sockets": 9, - "this.maxSockets": 1, - "req.onSocket": 1, - "this.createSocket": 2, - "this.requests": 5, - "Agent.prototype.createSocket": 1, - "util._extend": 1, - "options.port": 4, - "options.host": 4, - "options.localAddress": 3, - "onFree": 3, - "self.emit": 9, - "s.on": 4, - "onClose": 3, - "self.removeSocket": 2, - "onRemove": 3, - "s.removeListener": 3, - "Agent.prototype.removeSocket": 1, - ".emit": 1, - "globalAgent": 3, - "exports.globalAgent": 1, - "self.agent": 3, - "options.agent": 3, - "defaultPort": 3, - "options.defaultPort": 1, - "options.hostname": 1, - "options.setHost": 1, - "setHost": 2, - "self.socketPath": 4, - "options.socketPath": 1, - "self.method": 3, - "options.method": 2, - "self.path": 3, - "options.path": 2, - "self.once": 2, - "options.headers": 7, - "self.setHeader": 1, - "this.getHeader": 2, - "hostHeader": 3, - "this.setHeader": 2, - "options.auth": 2, - "//basic": 1, - "auth": 1, - "Buffer": 1, - "self.useChunkedEncodingByDefault": 2, - "self._storeHeader": 2, - "self.getHeader": 1, - "self._renderHeaders": 1, - "options.createConnection": 4, - "self.onSocket": 3, - "self.agent.addRequest": 1, - "conn": 3, - "self._deferToConnect": 1, - "self._flush": 1, - "exports.ClientRequest": 1, - "ClientRequest.prototype._implicitHeader": 1, - "this.path": 1, - "ClientRequest.prototype.abort": 1, - "this._deferToConnect": 3, - "createHangUpError": 3, - "error.code": 1, - "freeParser": 9, - "parser.socket.onend": 1, - "parser.socket.ondata": 1, - "parser.socket.parser": 1, - "parsers.free": 1, - "req.parser": 1, - "socketCloseListener": 2, - "socket.parser": 3, - "req.emit": 8, - "req.res": 8, - "req.res.readable": 1, - "req.res.emit": 1, - "res": 14, - "req.res._emitPending": 1, - "res._emitEnd": 1, - "res.emit": 1, - "req._hadError": 3, - "parser.finish": 6, - "socketErrorListener": 2, - "err.message": 1, - "err.stack": 1, - "socketOnEnd": 1, - "this._httpMessage": 3, - "this.parser": 2, - "socketOnData": 1, - "parser.execute": 2, - "bytesParsed": 4, - "socket.ondata": 3, - "socket.onend": 3, - "bodyHead": 4, - "d.slice": 2, - "req.listeners": 1, - "req.upgradeOrConnect": 1, - "socket.emit": 1, - "parserOnIncomingClient": 1, - "shouldKeepAlive": 4, - "res.upgrade": 1, - "isHeadResponse": 2, - "res.statusCode": 1, - "Clear": 1, - "upgraded": 1, - "WebSockets": 1, - "AGENT": 2, - "socket.destroySoon": 2, - "keep": 1, - "alive": 1, - "close": 2, - "free": 1, - "important": 1, - "promisy": 1, - "onSocket": 3, - "self.socket.writable": 1, - "self.socket": 5, - "arguments_": 2, - "self.socket.once": 1, - "ClientRequest.prototype.setTimeout": 1, - "msecs": 4, - "this.once": 2, - "emitTimeout": 4, - "this.socket.setTimeout": 1, - "this.socket.once": 1, - "this.setTimeout": 3, - "sock": 1, - "ClientRequest.prototype.setNoDelay": 1, - "ClientRequest.prototype.setSocketKeepAlive": 1, - "ClientRequest.prototype.clearTimeout": 1, - "exports.request": 2, - "url.parse": 1, - "options.protocol": 3, - "exports.get": 1, - "req.end": 1, - "ondrain": 3, - "httpSocketSetup": 2, - "Server": 6, - "requestListener": 6, - "net.Server.call": 1, - "allowHalfOpen": 1, - "this.addListener": 2, - "this.httpAllowHalfOpen": 1, - "connectionListener": 3, - "net.Server": 1, - "exports.Server": 1, - "exports.createServer": 1, - "outgoing": 2, - "incoming": 2, - "abortIncoming": 3, - "incoming.length": 2, - "incoming.shift": 2, - "serverSocketCloseListener": 3, - "socket.setTimeout": 1, - "minute": 1, - "socket.once": 1, - "parsers.alloc": 1, - "parser.reinitialize": 1, - "this.maxHeadersCount": 2, - "socket.addListener": 2, - "self.listeners": 2, - "req.socket": 1, - "self.httpAllowHalfOpen": 1, - "socket.writable": 2, - "socket.end": 2, - "outgoing.length": 2, - "._last": 1, - "socket._httpMessage._last": 1, - "incoming.push": 1, - "res.shouldKeepAlive": 1, - "DTRACE_HTTP_SERVER_REQUEST": 1, - "outgoing.push": 1, - "res.assignSocket": 1, - "res.on": 1, - "res.detachSocket": 1, - "res._last": 1, - "outgoing.shift": 1, - "m.assignSocket": 1, - "req.headers": 2, - "continueExpression.test": 1, - "res._expect_continue": 1, - "res.writeContinue": 1, - "response.": 1, - "exports._connectionListener": 1, - "Client": 6, - "this.host": 1, - "this.port": 1, - "maxSockets": 1, - "Client.prototype.request": 1, - "self.host": 1, - "self.port": 1, - "c.on": 2, - "exports.Client": 1, - "module.deprecate": 2, - "exports.createClient": 1, - "SHEBANG#!node": 2, - "http.createServer": 1, - "res.writeHead": 1, - "res.end": 1, - ".listen": 1, - "window.angular": 1, - "Animal.name": 1, - "_super": 4, - "Snake.name": 1, - "Horse.name": 1, - "jshint": 1, - "Modal": 2, - "this.": 2, - ".proxy": 1, - "this.hide": 1, - "Modal.prototype": 1, - "this.isShown": 3, - ".Event": 1, - "element.trigger": 1, - ".addClass": 1, - "escape.call": 1, - "backdrop.call": 1, - "transition": 1, - ".support.transition": 1, - "that.": 3, - "element.hasClass": 1, - "element.parent": 1, - "element.appendTo": 1, - "//don": 1, - "shown": 2, - "modal": 4, - "fade": 4, - "keyup.dismiss.modal": 2, - "click.modal.data": 1, - "api": 1, - ".extend": 1, - "target.data": 1, - "e.preventDefault": 1, - "target.modal": 1 }, - "Visual Basic": { - "VERSION": 1, - "CLASS": 1, - "BEGIN": 1, - "MultiUse": 1, - "-": 9, - "NotPersistable": 1, - "DataBindingBehavior": 1, - "vbNone": 1, - "MTSTransactionMode": 1, - "*************************************************************************************************************************************************************************************************************************************************": 2, - "Copyright": 1, - "(": 20, - "c": 1, - ")": 20, - "David": 1, - "Briant": 1, - "All": 1, - "rights": 1, - "reserved": 1, - "Option": 1, - "Explicit": 1, - "Private": 25, - "Declare": 3, - "Function": 5, - "apiSetProp": 4, - "Lib": 3, - "Alias": 3, - "ByVal": 6, - "hwnd": 2, - "As": 34, - "Long": 10, - "lpString": 2, - "String": 13, - "hData": 1, - "apiGlobalAddAtom": 3, - "apiSetForegroundWindow": 1, - "myMouseEventsForm": 5, - "fMouseEventsForm": 2, - "WithEvents": 3, - "myAST": 3, - "cTP_AdvSysTray": 2, - "Attribute": 3, - "myAST.VB_VarHelpID": 1, - "myClassName": 2, - "myWindowName": 2, - "Const": 9, - "TEN_MILLION": 1, - "Single": 1, - "myListener": 1, - "VLMessaging.VLMMMFileListener": 1, - "myListener.VB_VarHelpID": 1, - "myMMFileTransports": 2, - "VLMessaging.VLMMMFileTransports": 1, - "myMMFileTransports.VB_VarHelpID": 1, - "myMachineID": 1, - "myRouterSeed": 1, - "myRouterIDsByMMTransportID": 1, - "New": 6, - "Dictionary": 3, - "myMMTransportIDsByRouterID": 2, - "myDirectoryEntriesByIDString": 1, - "GET_ROUTER_ID": 1, - "GET_ROUTER_ID_REPLY": 1, - "REGISTER_SERVICE": 1, - "REGISTER_SERVICE_REPLY": 1, - "UNREGISTER_SERVICE": 1, - "UNREGISTER_SERVICE_REPLY": 1, - "GET_SERVICES": 1, - "GET_SERVICES_REPLY": 1, - "Initialize": 1, - "/": 1, - "Release": 1, - "hide": 1, - "us": 1, - "from": 2, - "the": 7, - "Applications": 1, - "list": 1, - "in": 1, - "Windows": 1, - "Task": 1, - "Manager": 1, - "App.TaskVisible": 1, - "False": 1, - "create": 1, - "tray": 1, - "icon": 1, - "Set": 5, - "myAST.create": 1, - "myMouseEventsForm.icon": 1, - "make": 1, - "myself": 1, - "easily": 2, - "found": 1, - "myMouseEventsForm.hwnd": 3, - "End": 11, - "Sub": 9, - "shutdown": 1, - "myAST.destroy": 1, - "Nothing": 2, - "Unload": 1, - "myAST_RButtonUp": 1, - "Dim": 1, - "epm": 1, - "cTP_EasyPopupMenu": 1, - "menuItemSelected": 1, - "epm.addMenuItem": 3, - "MF_STRING": 3, - "epm.addSubmenuItem": 2, - "MF_SEPARATOR": 1, - "MF_CHECKED": 1, - "route": 2, - "to": 4, - "a": 4, - "remote": 1, - "machine": 1, - "Else": 1, - "for": 4, - "moment": 1, - "just": 1, - "between": 1, - "MMFileTransports": 1, - "If": 4, - "myMMTransportIDsByRouterID.Exists": 1, - "message.toAddress.RouterID": 2, - "Then": 1, - "transport": 1, - "transport.send": 1, - "messageToBytes": 1, - "message": 1, - "directoryEntryIDString": 2, - "serviceType": 2, - "address": 1, - "VLMAddress": 1, - "&": 7, - "address.MachineID": 1, - "address.RouterID": 1, - "address.AgentID": 1, - "myMMFileTransports_disconnecting": 1, - "id": 1, - "oReceived": 2, - "Boolean": 1, - "True": 1, - "@Code": 1, - "ViewData": 1, - "Code": 1, - "@section": 1, - "featured": 1, - "
": 1, - "class=": 7, - "
": 1, - "
": 1, - "

": 1, - "@ViewData": 2, - ".": 3, - "

": 1, - "

": 1, - "

": 1, - "
": 1, - "

": 1, - "To": 1, - "learn": 1, - "more": 4, - "about": 2, - "ASP.NET": 5, - "MVC": 4, - "visit": 2, - "": 5, - "href=": 5, - "title=": 2, - "http": 1, - "//asp.net/mvc": 1, - "": 5, - "The": 1, - "page": 1, - "features": 3, - "": 1, - "videos": 1, - "tutorials": 1, - "and": 6, - "samples": 1, - "": 1, - "help": 1, - "you": 4, - "get": 1, - "most": 1, - "MVC.": 1, - "have": 1, - "any": 1, - "questions": 1, - "our": 1, - "forums": 1, - "

": 1, - "
": 1, - "
": 1, - "Section": 1, - "

": 1, - "We": 1, - "suggest": 1, - "following": 1, - "

": 1, - "
    ": 1, - "
  1. ": 3, - "
    ": 3, - "Getting": 1, - "Started": 1, - "
    ": 3, - "gives": 2, - "powerful": 1, - "patterns": 1, - "based": 1, - "way": 1, - "build": 1, - "dynamic": 1, - "websites": 1, - "that": 5, - "enables": 1, - "clean": 1, - "separation": 1, - "of": 2, - "concerns": 1, - "full": 1, - "control": 1, - "over": 1, - "markup": 1, - "enjoyable": 1, - "agile": 1, - "development.": 1, - "includes": 1, - "many": 1, - "enable": 1, - "fast": 1, - "TDD": 1, - "friendly": 1, - "development": 1, - "creating": 1, - "sophisticated": 1, - "applications": 1, - "use": 1, - "latest": 1, - "web": 2, - "standards.": 1, - "Learn": 3, - "
  2. ": 3, - "Add": 1, - "NuGet": 2, - "packages": 1, - "jump": 1, - "start": 1, - "your": 2, - "coding": 1, - "makes": 1, - "it": 1, - "easy": 1, - "install": 1, - "update": 1, - "free": 1, - "libraries": 1, - "tools.": 1, - "Find": 1, - "Web": 1, - "Hosting": 1, - "You": 1, - "can": 1, - "find": 1, - "hosting": 1, - "company": 1, - "offers": 1, - "right": 1, - "mix": 1, - "price": 1, - "applications.": 1, - "
": 1, - "Module": 2, - "Module1": 1, - "Main": 1, - "Console.Out.WriteLine": 2 - }, - "GAP": { - "#############################################################################": 63, - "##": 766, - "Magic.gi": 1, - "AutoDoc": 4, - "package": 10, - "Copyright": 6, - "Max": 2, - "Horn": 2, - "JLU": 2, - "Giessen": 2, - "Sebastian": 2, - "Gutsche": 2, - "University": 4, - "of": 114, - "Kaiserslautern": 2, - "BindGlobal": 7, - "(": 721, - "function": 37, - "str": 8, - "suffix": 3, - ")": 722, - "local": 16, - "n": 31, - "m": 8, - ";": 569, - "Length": 14, - "return": 41, - "and": 102, - "{": 21, - "[": 145, - "-": 67, - "+": 9, - "]": 169, - "}": 21, - "end": 34, - "i": 25, - "while": 5, - "<": 17, - "do": 18, - "od": 15, - "if": 103, - "then": 128, - "fi": 91, - "d": 16, - "tmp": 20, - "not": 49, - "IsDirectoryPath": 1, - "CreateDir": 2, - "#": 73, - "Note": 3, - "is": 72, - "currently": 1, - "undocumented": 1, - "fail": 18, - "Error": 7, - "LastSystemError": 1, - ".message": 1, - "false": 7, - "true": 21, - "pkg": 32, - "subdirs": 2, - "extensions": 1, - "d_rel": 6, - "files": 4, - "result": 9, - "for": 53, - "in": 64, - "DirectoriesPackageLibrary": 2, - "IsEmpty": 6, - "continue": 3, - "Directory": 5, - "DirectoryContents": 1, - "Sort": 1, - "AUTODOC_GetSuffix": 2, - "IsReadableFile": 2, - "Filename": 8, - "Add": 4, - "Make": 1, - "this": 15, - "callable": 1, - "with": 24, - "the": 136, - "package_name": 1, - "AutoDocWorksheet.": 1, - "Which": 1, - "will": 5, - "create": 1, - "a": 113, - "worksheet": 1, - "InstallGlobalFunction": 5, - "arg": 16, - "package_info": 3, - "opt": 3, - "scaffold": 12, - "gapdoc": 7, - "maketest": 12, - "autodoc": 8, - "pkg_dir": 5, - "doc_dir": 18, - "doc_dir_rel": 3, - "title_page": 7, - "tree": 8, - "is_worksheet": 13, - "position_document_class": 7, - "gapdoc_latex_option_record": 4, - "LowercaseString": 3, - "rec": 20, - "DirectoryCurrent": 1, - "else": 25, - "PackageInfo": 1, - "key": 3, - "val": 4, - "ValueOption": 1, - "opt.": 1, - "IsBound": 39, - "opt.dir": 4, - "elif": 21, - "IsString": 7, - "or": 13, - "IsDirectory": 1, - "AUTODOC_CreateDirIfMissing": 1, - "Print": 24, - "opt.scaffold": 5, - "package_info.AutoDoc": 3, - "IsRecord": 7, - "IsBool": 4, - "AUTODOC_APPEND_RECORD_WRITEONCE": 3, - "AUTODOC_WriteOnce": 10, - "opt.autodoc": 5, - "Concatenation": 15, - "package_info.Dependencies.NeededOtherPackages": 1, - "package_info.Dependencies.SuggestedOtherPackages": 1, - "ForAny": 1, - "x": 14, - "autodoc.files": 7, - "autodoc.scan_dirs": 5, - "autodoc.level": 3, - "PushOptions": 1, - "level_value": 1, - "Append": 2, - "AUTODOC_FindMatchingFiles": 2, - "opt.gapdoc": 5, - "opt.maketest": 4, - "gapdoc.main": 8, - "package_info.PackageDoc": 3, - ".BookName": 2, - "gapdoc.bookname": 4, - "#Print": 1, - "gapdoc.files": 9, - "gapdoc.scan_dirs": 3, - "Set": 1, - "Number": 1, - "ListWithIdenticalEntries": 1, - "List": 6, - "f": 11, - "DocumentationTree": 1, - "autodoc.section_intros": 2, - "AUTODOC_PROCESS_INTRO_STRINGS": 1, - "Tree": 2, - "AutoDocScanFiles": 1, - "PackageName": 2, - "scaffold.TitlePage": 4, - "scaffold.TitlePage.Title": 2, - ".TitlePage.Title": 2, - "Position": 2, - "Remove": 2, - "JoinStringsWithSeparator": 1, - "ReplacedString": 2, - "Syntax": 1, - "scaffold.document_class": 7, - "PositionSublist": 5, - "GAPDoc2LaTeXProcs.Head": 14, - "..": 6, - "scaffold.latex_header_file": 2, - "StringFile": 2, - "scaffold.gapdoc_latex_options": 4, - "RecNames": 1, - "scaffold.gapdoc_latex_options.": 5, - "IsList": 1, - "scaffold.includes": 4, - "scaffold.bib": 7, - "Unbind": 1, - "scaffold.main_xml_file": 2, - ".TitlePage": 1, - "ExtractTitleInfoFromPackageInfo": 1, - "CreateTitlePage": 1, - "scaffold.MainPage": 2, - "scaffold.dir": 1, - "scaffold.book_name": 1, - "CreateMainPage": 1, - "WriteDocumentation": 1, - "SetGapDocLaTeXOptions": 1, - "MakeGAPDocDoc": 1, - "CopyHTMLStyleFiles": 1, - "GAPDocManualLab": 1, - "maketest.folder": 3, - "maketest.scan_dir": 3, - "CreateMakeTest": 1, - "#W": 4, - "example.gd": 2, - "This": 10, - "file": 7, - "contains": 7, - "sample": 2, - "GAP": 15, - "declaration": 1, - "file.": 3, - "DeclareProperty": 2, - "IsLeftModule": 6, - "DeclareGlobalFunction": 5, - "#C": 7, - "IsQuuxFrobnicator": 1, - "": 3, - "": 28, - "": 7, - "Name=": 33, - "Arg=": 33, - "Type=": 7, - "": 28, - "Tests": 1, - "whether": 5, - "R": 5, - "quux": 1, - "frobnicator.": 1, - "": 28, - "": 28, - "DeclareSynonym": 17, - "IsField": 1, - "IsGroup": 1, - "Magic.gd": 1, - "SHEBANG#!#! @Description": 1, - "SHEBANG#!#! This": 1, - "SHEBANG#!#! any": 1, - "SHEBANG#!#! ": 1, - "SHEBANG#!#! ": 5, - "SHEBANG#!#! It": 3, - "SHEBANG#!#! That": 1, - "SHEBANG#!#! of": 1, - "SHEBANG#!#! (with": 1, - "SHEBANG#!#! main": 1, - "SHEBANG#!#! XML": 1, - "SHEBANG#!#! other": 1, - "SHEBANG#!#! as": 1, - "SHEBANG#!#! to": 2, - "SHEBANG#!#! Secondly,": 1, - "SHEBANG#!#! page": 1, - "SHEBANG#!#! (name,": 1, - "SHEBANG#!#! on": 1, - "SHEBANG#!Item>": 25, - "SHEBANG#!#! tags": 1, - "SHEBANG#!#! This": 1, - "SHEBANG#!#! produce": 1, - "SHEBANG#!#! MathJaX": 1, - "SHEBANG#!#! generated": 1, - "SHEBANG#!#! this,": 1, - "SHEBANG#!#! supplementary": 1, - "SHEBANG#!#! (see": 1, - "SHEBANG#!Enum>": 1, - "SHEBANG#!#! For": 1, - "SHEBANG#!>": 11, - "SHEBANG#!#! The": 1, - "SHEBANG#!#! ": 1, - "SHEBANG#!Mark>": 22, - "SHEBANG#!#! The": 2, - "SHEBANG#!A>": 1, - "SHEBANG#!#! ": 1, - "SHEBANG#!#! ": 4, - "SHEBANG#!#! This": 4, - "SHEBANG#!#! Directory()": 1, - "SHEBANG#!#! (i.e.": 1, - "SHEBANG#!#! Default": 1, - "SHEBANG#!#! for": 1, - "SHEBANG#!#! The": 3, - "SHEBANG#!#! record.": 3, - "SHEBANG#!#! equivalent": 3, - "SHEBANG#!#! enabled.": 3, - "SHEBANG#!#! package's": 1, - "SHEBANG#!#! In": 3, - "SHEBANG#!K>),": 3, - "SHEBANG#!#! If": 3, - "####": 34, - "TODO": 3, - "mention": 1, - "merging": 1, - "PackageInfo.AutoDoc": 1, - "SHEBANG#!#! ": 3, - "SHEBANG#!#! ": 13, - "SHEBANG#!#! A": 6, - "SHEBANG#!#! If": 2, - "SHEBANG#!#! your": 1, - "SHEBANG#!#! you": 1, - "SHEBANG#!#! to": 4, - "SHEBANG#!#! is": 1, - "SHEBANG#!#! of": 2, - "SHEBANG#!#! This": 3, - "SHEBANG#!#! i.e.": 1, - "SHEBANG#!#! The": 2, - "SHEBANG#!#! then": 1, - "The": 21, - "param": 1, - "bit": 2, - "strange.": 1, - "We": 4, - "should": 2, - "probably": 2, - "change": 1, - "it": 8, - "to": 37, - "be": 24, - "more": 3, - "general": 1, - "as": 23, - "one": 11, - "might": 1, - "want": 1, - "define": 2, - "other": 4, - "entities...": 1, - "For": 10, - "now": 1, - "we": 3, - "document": 1, - "leave": 1, - "us": 1, - "choice": 1, - "revising": 1, - "how": 1, - "works.": 1, - "": 2, - "": 117, - "entities": 2, - "": 117, - "": 2, - "": 2, - "A": 9, - "list": 16, - "names": 1, - "which": 8, - "are": 14, - "used": 10, - "corresponding": 1, - "XML": 4, - "entities.": 1, - "example": 3, - "set": 6, - "containing": 1, - "string": 6, - "": 2, - "SomePackage": 3, - "": 2, - "following": 4, - "added": 1, - "preamble": 1, - "": 2, - "CDATA": 2, - "ENTITY": 2, - "": 2, - "allows": 1, - "you": 3, - "write": 3, - "&": 37, - "amp": 1, - "your": 1, - "documentation": 2, - "reference": 1, - "that": 39, - "package.": 2, - "If": 11, - "another": 1, - "type": 2, - "entity": 1, - "desired": 1, - "can": 12, - "simply": 2, - "add": 2, - "instead": 1, - "two": 13, - "entry": 2, - "list.": 2, - "It": 1, - "handled": 3, - "so": 3, - "please": 1, - "careful.": 1, - "": 2, - "SHEBANG#!#! for": 1, - "SHEBANG#!#! statement": 1, - "SHEBANG#!#! components": 2, - "SHEBANG#!#! example,": 1, - "SHEBANG#!#! acknowledgements": 1, - "SHEBANG#!#! ": 6, - "SHEBANG#!#! by": 1, - "SHEBANG#!#! package": 1, - "SHEBANG#!#! Usually": 2, - "SHEBANG#!#! are": 2, - "SHEBANG#!#! Default": 3, - "SHEBANG#!#! When": 1, - "SHEBANG#!#! they": 1, - "Document": 1, - "section_intros": 2, - "later": 1, - "on.": 1, - "However": 2, - "note": 2, - "thanks": 1, - "new": 2, - "comment": 1, - "syntax": 1, - "only": 5, - "remaining": 1, - "use": 5, - "seems": 1, - "ability": 1, - "specify": 3, - "order": 1, - "chapters": 1, - "sections.": 1, - "TODO.": 1, - "SHEBANG#!#! files": 1, - "strictly": 1, - "speaking": 1, - "also": 3, - "scaffold.": 1, - "uses": 2, - "scaffolding": 2, - "mechanism": 4, - "really": 4, - "necessary": 2, - "custom": 1, - "name": 2, - "main": 1, - "Thus": 3, - "purpose": 1, - "parameter": 1, - "cater": 1, - "packages": 5, - "have": 3, - "existing": 1, - "using": 2, - "different": 2, - "wish": 1, - "scaffolding.": 1, - "explain": 1, - "why": 2, - "allow": 1, - "specifying": 1, - "gapdoc.main.": 1, - "code": 1, - "still": 1, - "honor": 1, - "though": 1, - "just": 1, - "case.": 1, - "SHEBANG#!#! In": 1, - "part.": 1, - "Still": 1, - "under": 1, - "construction.": 1, - "SHEBANG#!#! ": 1, - "SHEBANG#!#! The": 1, - "SHEBANG#!#! a": 1, - "SHEBANG#!#! which": 1, - "SHEBANG#!#! the": 1, - "SHEBANG#!#! ": 1, - "SHEBANG#!#! ": 2, - "SHEBANG#!#! Sets": 1, - "SHEBANG#!#! A": 1, - "SHEBANG#!#! will": 1, - "SHEBANG#!#! @Returns": 1, - "SHEBANG#!#! @Arguments": 1, - "SHEBANG#!#! @ChapterInfo": 1, - "vspc.gd": 1, - "library": 2, - "Thomas": 2, - "Breuer": 2, - "#Y": 6, - "C": 11, - "Lehrstuhl": 2, - "D": 36, - "r": 2, - "Mathematik": 2, - "RWTH": 2, - "Aachen": 2, - "Germany": 2, - "School": 2, - "Math": 2, - "Comp.": 2, - "Sci.": 2, - "St": 2, - "Andrews": 2, - "Scotland": 2, - "Group": 3, - "declares": 1, - "operations": 2, - "vector": 67, - "spaces.": 4, - "bases": 5, - "free": 3, - "left": 15, - "modules": 1, - "found": 1, - "": 10, - "lib/basis.gd": 1, - ".": 257, - "IsLeftOperatorRing": 1, - "IsLeftOperatorAdditiveGroup": 2, - "IsRing": 1, - "IsAssociativeLOpDProd": 2, - "#T": 6, - "IsLeftOperatorRingWithOne": 2, - "IsRingWithOne": 1, - "IsLeftVectorSpace": 3, - "": 38, - "IsVectorSpace": 26, - "<#GAPDoc>": 17, - "Label=": 19, - "": 12, - "space": 74, - "": 12, - "module": 2, - "see": 30, - "nbsp": 30, - "": 71, - "Func=": 40, - "over": 24, - "division": 15, - "ring": 14, - "Chapter": 3, - "Chap=": 3, - "

": 23, - "Whenever": 1, - "talk": 1, - "about": 3, - "an": 17, - "": 42, - "F": 61, - "": 41, - "V": 152, - "additive": 1, - "group": 2, - "on": 5, - "acts": 1, - "via": 6, - "multiplication": 1, - "from": 5, - "such": 4, - "action": 4, - "addition": 1, - "right": 2, - "distributive.": 1, - "accessed": 1, - "value": 9, - "attribute": 2, - "Vector": 1, - "spaces": 15, - "always": 1, - "Filt=": 4, - "synonyms.": 1, - "<#/GAPDoc>": 17, - "IsLeftActedOnByDivisionRing": 4, - "InstallTrueMethod": 4, - "IsFreeLeftModule": 3, - "#F": 17, - "IsGaussianSpace": 10, - "": 14, - "filter": 3, - "Sect=": 6, - "row": 17, - "matrix": 5, - "field": 12, - "say": 1, - "indicates": 3, - "entries": 8, - "all": 18, - "vectors": 16, - "matrices": 5, - "respectively": 1, - "contained": 4, - "In": 3, - "case": 2, - "called": 1, - "Gaussian": 19, - "space.": 5, - "Bases": 1, - "computed": 2, - "elimination": 5, - "given": 4, - "generators.": 1, - "": 12, - "": 12, - "gap": 41, - "mats": 5, - "VectorSpace": 13, - "Rationals": 13, - "E": 2, - "element": 2, - "extension": 3, - "Field": 1, - "": 12, - "DeclareFilter": 1, - "IsFullMatrixModule": 1, - "IsFullRowModule": 1, - "IsDivisionRing": 5, - "": 12, - "nontrivial": 1, - "associative": 1, - "algebra": 2, - "multiplicative": 1, - "inverse": 1, - "each": 2, - "nonzero": 3, - "element.": 1, - "every": 1, - "possibly": 1, - "itself": 1, - "being": 2, - "thus": 1, - "property": 2, - "get": 1, - "because": 2, - "usually": 1, - "represented": 1, - "coefficients": 3, - "stored": 1, - "DeclareSynonymAttr": 4, - "IsMagmaWithInversesIfNonzero": 1, - "IsNonTrivial": 1, - "IsAssociative": 1, - "IsEuclideanRing": 1, - "#A": 7, - "GeneratorsOfLeftVectorSpace": 1, - "GeneratorsOfVectorSpace": 2, - "": 7, - "Attr=": 10, - "returns": 14, - "generate": 1, - "FullRowSpace": 5, - "GeneratorsOfLeftOperatorAdditiveGroup": 2, - "CanonicalBasis": 3, - "supports": 1, - "canonical": 6, - "basis": 14, - "otherwise": 2, - "": 3, - "": 3, - "returned.": 4, - "defining": 1, - "its": 2, - "uniquely": 1, - "determined": 1, - "by": 14, - "exist": 1, - "same": 6, - "acting": 8, - "domain": 17, - "equality": 1, - "these": 5, - "decided": 1, - "comparing": 1, - "bases.": 1, - "exact": 1, - "meaning": 1, - "depends": 1, - "Canonical": 1, - "defined": 3, - "designs": 1, - "kind": 1, - "defines": 1, - "method": 4, - "installs": 1, - "must": 6, - "call": 1, - "On": 1, - "hand": 1, - "install": 1, - "calls": 1, - "": 10, - "CANONICAL_BASIS_FLAGS": 1, - "": 9, - "vecs": 4, - "B": 16, - "": 8, - "3": 5, - "generators": 16, - "BasisVectors": 4, - "DeclareAttribute": 4, - "IsRowSpace": 2, - "consists": 7, - "IsRowModule": 1, - "IsGaussianRowSpace": 1, - "scalars": 2, - "occur": 2, - "vectors.": 2, - "calculations.": 2, - "Otherwise": 3, - "non": 4, - "Gaussian.": 2, - "need": 3, - "flag": 2, - "down": 2, - "methods": 4, - "delegate": 2, - "ones.": 2, - "IsNonGaussianRowSpace": 1, - "expresses": 2, - "cannot": 2, - "compute": 3, - "nice": 4, - "way.": 2, - "Let": 4, - "K": 4, - "spanned": 4, - "Then": 1, - "/": 12, - "cap": 1, - "v": 5, - "replacing": 1, - "forming": 1, - "concatenation.": 1, - "So": 2, - "associated": 3, - "DeclareHandlingByNiceBasis": 2, - "IsMatrixSpace": 2, - "IsMatrixModule": 1, - "IsGaussianMatrixSpace": 1, - "IsNonGaussianMatrixSpace": 1, - "irrelevant": 1, - "concatenation": 1, - "rows": 1, - "necessarily": 1, - "NormedRowVectors": 2, - "normed": 1, - "finite": 5, - "those": 1, - "first": 1, - "component.": 1, - "yields": 1, - "natural": 1, - "dimensional": 5, - "subspaces": 17, - "GF": 22, - "*Z": 5, - "Z": 6, - "Action": 1, - "GL": 1, - "OnLines": 1, - "TrivialSubspace": 2, - "subspace": 7, - "zero": 4, - "triv": 2, - "0": 2, - "AsSet": 1, - "TrivialSubmodule": 1, - "": 5, - "": 2, - "collection": 3, - "gens": 16, - "elements": 7, - "optional": 3, - "argument": 1, - "empty.": 1, - "known": 5, - "linearly": 3, - "independent": 3, - "particular": 1, - "dimension": 9, - "immediately": 2, - "formed": 1, - "argument.": 1, - "2": 1, - "Subspace": 4, - "generated": 1, - "SubspaceNC": 2, - "subset": 4, - "empty": 1, - "trivial": 1, - "parent": 3, - "returned": 3, - "does": 1, - "except": 1, - "omits": 1, - "check": 5, - "both": 2, - "W": 32, - "1": 3, - "Submodule": 1, - "SubmoduleNC": 1, - "#O": 2, - "AsVectorSpace": 4, - "view": 4, - "": 2, - "domain.": 1, - "form": 2, - "Oper=": 6, - "smaller": 1, - "larger": 1, - "ring.": 3, - "Dimension": 6, - "LeftActingDomain": 29, - "9": 1, - "AsLeftModule": 6, - "AsSubspace": 5, - "": 6, - "U": 12, - "collection.": 1, - "/2": 4, - "Parent": 4, - "DeclareOperation": 2, - "IsCollection": 3, - "Intersection2Spaces": 4, - "": 2, - "": 2, - "": 2, - "takes": 1, - "arguments": 1, - "intersection": 5, - "domains": 3, - "let": 1, - "their": 1, - "intersection.": 1, - "AsStruct": 2, - "equal": 1, - "either": 2, - "Substruct": 1, - "common": 1, - "Struct": 1, - "cases": 2, - "basis.": 1, - "handle": 1, - "intersections": 1, - "algebras": 2, - "ideals": 2, - "sided": 1, - "ideals.": 1, - "": 2, - "": 2, - "nonnegative": 2, - "integer": 2, - "length": 1, - "An": 2, - "alternative": 2, - "construct": 2, - "above": 2, - "FullRowModule": 2, - "FullMatrixSpace": 2, - "": 1, - "positive": 1, - "integers": 1, - "fact": 1, - "FullMatrixModule": 3, - "IsSubspacesVectorSpace": 9, - "fixed": 1, - "lies": 1, - "category": 1, - "Subspaces": 8, - "Size": 5, - "iter": 17, - "Iterator": 5, - "NextIterator": 5, - "DeclareCategory": 1, - "IsDomain": 1, - "#M": 20, - "IsFinite": 4, - "Returns": 1, - "": 1, - "Called": 2, - "k": 17, - "Special": 1, - "provided": 1, - "domains.": 1, - "IsInt": 3, - "IsSubspace": 3, - "OrthogonalSpaceInFullRowSpace": 1, - "complement": 1, - "full": 2, - "#P": 1, - "IsVectorSpaceHomomorphism": 3, - "": 2, - "": 1, - "mapping": 2, - "homomorphism": 1, - "linear": 1, - "source": 2, - "range": 1, - "b": 8, - "s": 4, - "*": 12, - "hold": 1, - "IsGeneralMapping": 2, - "#E": 2, - "PackageInfo.g": 2, - "cvec": 1, - "template": 1, - "SetPackageInfo": 1, - "Subtitle": 1, - "Version": 1, - "Date": 1, - "dd/mm/yyyy": 1, - "format": 2, - "Information": 1, - "authors": 1, - "maintainers.": 1, - "Persons": 1, - "LastName": 1, - "FirstNames": 1, - "IsAuthor": 1, - "IsMaintainer": 1, - "Email": 1, - "WWWHome": 1, - "PostalAddress": 1, - "Place": 1, - "Institution": 1, - "Status": 2, - "information.": 1, - "Currently": 1, - "recognized": 1, - "successfully": 2, - "refereed": 2, - "developers": 1, - "agreed": 1, - "distribute": 1, - "them": 1, - "core": 1, - "system": 1, - "development": 1, - "versions": 1, - "You": 1, - "provide": 2, - "next": 6, - "status": 1, - "was": 1, - "#CommunicatedBy": 1, - "#AcceptDate": 1, - "PackageWWWHome": 1, - "README_URL": 1, - ".PackageWWWHome": 2, - "PackageInfoURL": 1, - "ArchiveURL": 1, - ".Version": 2, - "ArchiveFormats": 1, - "Here": 2, - "short": 1, - "abstract": 1, - "explaining": 1, - "content": 1, - "HTML": 1, - "overview": 1, - "Web": 1, - "page": 1, - "URL": 1, - "Webpage": 1, - "detailed": 1, - "information": 1, - "than": 1, - "few": 1, - "lines": 1, - "less": 1, - "ok": 1, - "Please": 1, - "specifing": 1, - "names.": 1, - "AbstractHTML": 1, - "PackageDoc": 1, - "BookName": 1, - "ArchiveURLSubset": 1, - "HTMLStart": 1, - "PDFFile": 1, - "SixFile": 1, - "LongTitle": 1, - "Dependencies": 1, - "NeededOtherPackages": 1, - "SuggestedOtherPackages": 1, - "ExternalConditions": 1, - "AvailabilityTest": 1, - "SHOW_STAT": 1, - "DirectoriesPackagePrograms": 1, - "#Info": 1, - "InfoWarning": 1, - "*Optional*": 2, - "but": 1, - "recommended": 1, - "path": 1, - "relative": 1, - "root": 1, - "many": 1, - "tests": 1, - "functionality": 1, - "sensible.": 1, - "#TestFile": 1, - "some": 2, - "keyword": 1, - "related": 1, - "topic": 1, - "Keywords": 1, - "implementation": 1, - "SomeOperation": 1, - "": 2, - "performs": 1, - "operation": 1, - "InstallMethod": 18, - "SomeProperty": 1, - "M": 7, - "IsTrivial": 1, - "TryNextMethod": 7, - "SomeGlobalFunction": 2, - "global": 1, - "variadic": 1, - "funfion.": 1, - "SomeFunc": 1, - "y": 8, - "z": 3, - "func": 3, - "j": 3, - "mod": 2, - "repeat": 1, - "until": 1, - "vspc.gi": 1, - "generic": 1, - "SetLeftActingDomain": 2, - "": 2, - "external": 1, - "knows": 1, - "e.g.": 1, - "tell": 1, - "InstallOtherMethod": 3, - "IsAttributeStoringRep": 2, - "IsLeftActedOnByRing": 2, - "IsObject": 1, - "extL": 2, - "HasIsDivisionRing": 1, - "SetIsLeftActedOnByDivisionRing": 1, - "IsExtLSet": 1, - "IsIdenticalObj": 5, - "difference": 1, - "between": 1, - "shall": 1, - "CallFuncList": 1, - "FreeLeftModule": 1, - "newC": 7, - "IsSubset": 4, - "SetParent": 1, - "UseIsomorphismRelation": 2, - "UseSubsetRelation": 4, - "View": 1, - "base": 5, - "gen": 5, - "loop": 2, - "newgens": 4, - "extended": 1, - "Characteristic": 2, - "Basis": 5, - "AsField": 2, - "GeneratorsOfLeftModule": 9, - "LeftModuleByGenerators": 5, - "Zero": 5, - "Intersection": 1, - "ViewObj": 4, - "print": 1, - "no.": 1, - "HasGeneratorsOfLeftModule": 2, - "HasDimension": 1, - "override": 1, - "PrintObj": 5, - "HasZero": 1, - "": 2, - "factor": 2, - "": 1, - "ImagesSource": 1, - "NaturalHomomorphismBySubspace": 1, - "AsStructure": 3, - "Substructure": 3, - "Structure": 2, - "inters": 17, - "gensV": 7, - "gensW": 7, - "VW": 3, - "sum": 1, - "Intersection2": 4, - "IsFiniteDimensional": 2, - "Coefficients": 3, - "SumIntersectionMat": 1, - "LinearCombination": 2, - "HasParent": 2, - "SetIsTrivial": 1, - "ClosureLeftModule": 2, - "": 1, - "closure": 1, - "IsCollsElms": 1, - "HasBasis": 1, - "IsVector": 1, - "w": 3, - "easily": 1, - "UseBasis": 1, - "Methods": 1, - "collections": 1, - "#R": 1, - "IsSubspacesVectorSpaceDefaultRep": 7, - "representation": 1, - "components": 1, - "means": 1, - "DeclareRepresentation": 1, - "IsComponentObjectRep": 1, - ".dimension": 9, - ".structure": 9, - "number": 2, - "q": 20, - "prod_": 2, - "frac": 3, - "recursion": 1, - "sum_": 1, - "size": 12, - "qn": 10, - "qd": 10, - "ank": 6, - "Int": 1, - "Enumerator": 2, - "Use": 1, - "iterator": 3, - "allowed": 1, - "elms": 4, - "IsDoneIterator": 3, - ".associatedIterator": 3, - ".basis": 2, - "structure": 4, - "associatedIterator": 2, - "ShallowCopy": 2, - "IteratorByFunctions": 1, - "IsDoneIterator_Subspaces": 1, - "NextIterator_Subspaces": 1, - "ShallowCopy_Subspaces": 1, - "": 1, - "dim": 2, - "Objectify": 2, - "NewType": 2, - "CollectionsFamily": 2, - "FamilyObj": 2, - "map": 4, - "S": 4, - "Source": 1, - "Range": 1, - "IsLinearMapping": 1 - }, - "Logtalk": { - "-": 3, - "object": 2, - "(": 4, - "hello_world": 1, - ")": 4, - ".": 2, - "%": 2, - "the": 2, - "initialization/1": 1, - "directive": 1, - "argument": 1, - "is": 2, - "automatically": 1, - "executed": 1, - "when": 1, - "loaded": 1, - "into": 1, - "memory": 1, - "initialization": 1, - "nl": 2, - "write": 1, - "end_object.": 1 - }, - "Scheme": { - "(": 366, - "import": 1, - "rnrs": 1, - ")": 380, - "only": 1, - "surfage": 4, - "s1": 1, - "lists": 1, - "filter": 4, - "-": 192, - "map": 4, - "gl": 12, - "glut": 2, - "dharmalab": 2, - "records": 1, - "define": 30, - "record": 5, - "type": 5, - "math": 1, - "basic": 2, - "agave": 4, - "glu": 1, - "compat": 1, - "geometry": 1, - "pt": 49, - "glamour": 2, - "window": 2, - "misc": 1, - "s19": 1, - "time": 24, - "s27": 1, - "random": 27, - "bits": 1, - "s42": 1, - "eager": 1, - "comprehensions": 1, - ";": 1684, - "utilities": 1, - "say": 9, - ".": 2, - "args": 2, - "for": 7, - "each": 7, - "display": 4, - "newline": 2, - "translate": 6, - "p": 6, - "glTranslated": 1, - "x": 10, - "y": 3, - "radians": 8, - "/": 7, - "pi": 2, - "degrees": 2, - "angle": 6, - "a": 19, - "cos": 1, - "sin": 1, - "current": 15, - "in": 14, - "nanoseconds": 2, - "let": 2, - "val": 3, - "+": 28, - "second": 1, - "nanosecond": 1, - "seconds": 12, - "micro": 1, - "milli": 1, - "base": 2, - "step": 1, - "score": 5, - "level": 5, - "ships": 1, - "spaceship": 5, - "fields": 4, - "mutable": 14, - "pos": 16, - "vel": 4, - "theta": 1, - "force": 1, - "particle": 8, - "birth": 2, - "lifetime": 1, - "color": 2, - "particles": 11, - "asteroid": 14, - "radius": 6, - "number": 3, - "of": 3, - "starting": 3, - "asteroids": 15, - "#f": 5, - "bullet": 16, - "pack": 12, - "is": 8, - "initialize": 1, - "size": 1, - "title": 1, - "reshape": 1, - "width": 8, - "height": 8, - "source": 2, - "randomize": 1, - "default": 1, - "wrap": 4, - "mod": 2, - "ship": 8, - "make": 11, - "ammo": 9, - "set": 19, - "list": 6, - "ec": 6, - "i": 6, - "inexact": 16, - "integer": 25, - "buffered": 1, - "procedure": 1, - "lambda": 12, - "background": 1, - "glColor3f": 5, - "matrix": 5, - "excursion": 5, - "ship.pos": 5, - "glRotated": 2, - "ship.theta": 10, - "glutWireCone": 1, - "par": 6, - "c": 4, - "vector": 6, - "ref": 3, - "glutWireSphere": 3, - "bullets": 7, - "pack.pos": 3, - "glutWireCube": 1, - "last": 3, - "dt": 7, - "update": 2, - "system": 2, - "pt*n": 8, - "ship.vel": 5, - "pack.vel": 1, - "cond": 2, - "par.birth": 1, - "par.lifetime": 1, - "else": 2, - "par.pos": 2, - "par.vel": 1, - "bullet.birth": 1, - "bullet.pos": 2, - "bullet.vel": 1, - "a.pos": 2, - "a.vel": 1, - "if": 1, - "<": 1, - "a.radius": 1, - "contact": 2, - "b": 4, - "when": 5, - "<=>": 3, - "distance": 3, - "begin": 2, - "1": 2, - "f": 1, - "append": 4, - "4": 1, - "50": 4, - "0": 7, - "100": 6, - "2": 1, - "n": 2, - "null": 1, - "10": 1, - "5": 1, - "glutIdleFunc": 1, - "glutPostRedisplay": 1, - "glutKeyboardFunc": 1, - "key": 2, - "case": 1, - "char": 1, - "#": 6, - "w": 1, - "d": 1, - "s": 1, - "space": 1, - "cons": 1, - "glutMainLoop": 1, - "library": 1, - "libs": 1, - "export": 1, - "list2": 2, - "objs": 2, - "should": 1, - "not": 1, - "be": 1, - "exported": 1 - }, - "C++": { - "//": 315, - "#ifndef": 29, - "BOOST_ASIO_DETAIL_IMPL_EPOLL_REACTOR_IPP": 3, - "#define": 343, - "#if": 63, - "defined": 49, - "(": 3102, - "_MSC_VER": 7, - ")": 3105, - "&&": 29, - "#endif": 110, - "#include": 129, - "": 1, - "BOOST_ASIO_HAS_EPOLL": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "BOOST_ASIO_HAS_TIMERFD": 19, - "": 1, - "namespace": 38, - "boost": 18, - "{": 726, - "asio": 14, - "detail": 5, - "epoll_reactor": 40, - "io_service": 6, - "&": 203, - "service_base": 1, - "": 1, - "io_service_": 1, - "use_service": 1, - "": 1, - "mutex_": 13, - "interrupter_": 5, - "epoll_fd_": 20, - "do_epoll_create": 3, - "timer_fd_": 21, - "do_timerfd_create": 3, - "shutdown_": 10, - "false": 48, - "epoll_event": 10, - "ev": 21, - "}": 726, - ";": 2783, - "ev.events": 13, - "EPOLLIN": 8, - "|": 40, - "EPOLLERR": 8, - "EPOLLET": 5, - "ev.data.ptr": 10, - "epoll_ctl": 12, - "EPOLL_CTL_ADD": 7, - "interrupter_.read_descriptor": 3, - "interrupter_.interrupt": 2, - "if": 359, - "-": 438, - "close": 7, - "void": 241, - "shutdown_service": 1, - "mutex": 16, - "scoped_lock": 16, - "lock": 5, - "true": 49, - "lock.unlock": 1, - "op_queue": 6, - "": 6, - "ops": 10, - "while": 17, - "descriptor_state*": 6, - "state": 33, - "registered_descriptors_.first": 2, - "for": 105, - "int": 218, - "i": 106, - "<": 255, - "max_ops": 6, - "+": 80, - "ops.push": 5, - "op_queue_": 12, - "[": 293, - "]": 292, - "registered_descriptors_.free": 2, - "timer_queues_.get_all_timers": 1, - "io_service_.abandon_operations": 1, - "fork_service": 1, - "fork_event": 1, - "fork_ev": 2, - "fork_child": 1, - "interrupter_.recreate": 1, - "update_timeout": 2, - "descriptors_lock": 3, - "registered_descriptors_mutex_": 3, - "next_": 3, - "registered_events_": 8, - "result": 8, - "descriptor_": 5, - "system": 13, - "error_code": 4, - "ec": 6, - "errno": 10, - "error": 8, - "get_system_category": 3, - "throw_error": 2, - "init_task": 1, - "io_service_.init_task": 1, - "register_descriptor": 1, - "socket_type": 7, - "descriptor": 15, - "per_descriptor_data": 8, - "descriptor_data": 60, - "allocate_descriptor_state": 3, - "descriptor_lock": 7, - "reactor_": 7, - "this": 57, - "EPOLLHUP": 3, - "EPOLLPRI": 3, - "return": 240, - "register_internal_descriptor": 1, - "op_type": 8, - "reactor_op*": 5, - "op": 28, - ".push": 2, - "move_descriptor": 1, - "target_descriptor_data": 2, - "source_descriptor_data": 3, - "start_op": 1, - "bool": 111, - "is_continuation": 5, - "allow_speculative": 2, - "ec_": 4, - "bad_descriptor": 1, - "post_immediate_completion": 2, - ".empty": 5, - "read_op": 1, - "||": 19, - "except_op": 1, - "perform": 2, - "descriptor_lock.unlock": 4, - "io_service_.post_immediate_completion": 2, - "write_op": 2, - "EPOLLOUT": 4, - "EPOLL_CTL_MOD": 3, - "else": 58, - "io_service_.work_started": 2, - "cancel_ops": 1, - ".front": 3, - "operation_aborted": 2, - ".pop": 3, - "io_service_.post_deferred_completions": 3, - "deregister_descriptor": 1, - "closing": 3, - "EPOLL_CTL_DEL": 2, - "free_descriptor_state": 3, - "deregister_internal_descriptor": 1, - "run": 2, - "block": 7, - "timeout": 5, - "get_timeout": 5, - "events": 8, - "num_events": 2, - "epoll_wait": 1, - "check_timers": 6, - "#else": 35, - "void*": 2, - "ptr": 6, - ".data.ptr": 1, - "static_cast": 14, - "": 2, - "set_ready_events": 1, - ".events": 1, - "common_lock": 1, - "timer_queues_.get_ready_timers": 1, - "itimerspec": 5, - "new_timeout": 6, - "old_timeout": 4, - "flags": 4, - "timerfd_settime": 2, - "interrupt": 3, - "EPOLL_CLOEXEC": 4, - "fd": 15, - "epoll_create1": 1, - "EINVAL": 4, - "ENOSYS": 1, - "epoll_create": 1, - "epoll_size": 1, - "fcntl": 2, - "F_SETFD": 2, - "FD_CLOEXEC": 2, - "timerfd_create": 2, - "CLOCK_MONOTONIC": 3, - "TFD_CLOEXEC": 1, - "registered_descriptors_.alloc": 1, - "s": 26, - "do_add_timer_queue": 1, - "timer_queue_base": 2, - "queue": 4, - "timer_queues_.insert": 1, - "do_remove_timer_queue": 1, - "timer_queues_.erase": 1, - "timer_queues_.wait_duration_msec": 1, - "*": 183, - "ts": 1, - "ts.it_interval.tv_sec": 1, - "ts.it_interval.tv_nsec": 1, - "long": 15, - "usec": 5, - "timer_queues_.wait_duration_usec": 1, - "ts.it_value.tv_sec": 1, - "/": 16, - "ts.it_value.tv_nsec": 1, - "%": 7, - "TFD_TIMER_ABSTIME": 1, - "struct": 13, - "perform_io_cleanup_on_block_exit": 4, - "explicit": 5, - "epoll_reactor*": 2, - "r": 38, - "first_op_": 3, - "ops_.empty": 1, - "ops_": 2, - "operation*": 4, - "descriptor_state": 5, - "operation": 2, - "do_complete": 2, - "perform_io": 2, - "uint32_t": 39, - "mutex_.lock": 1, - "io_cleanup": 1, - "adopt_lock": 1, - "static": 263, - "const": 172, - "flag": 3, - "j": 10, - "io_cleanup.ops_.push": 1, - "break": 35, - "io_cleanup.first_op_": 2, - "io_cleanup.ops_.front": 1, - "io_cleanup.ops_.pop": 1, - "io_service_impl*": 1, - "owner": 3, - "base": 8, - "std": 53, - "size_t": 6, - "bytes_transferred": 2, - "": 1, - "complete": 3, - "": 1, - "#pragma": 3, - "once": 5, - "": 2, - "typedef": 50, - "smallPrime_t": 1, - "class": 40, - "Bar": 2, - "protected": 4, - "char": 127, - "*name": 6, - "public": 33, - "hello": 2, - "INTERNAL_SUPPRESS_PROTOBUF_FIELD_DEPRECATION": 1, - "": 1, - "": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "persons": 4, - "google": 72, - "protobuf": 72, - "Descriptor*": 3, - "Person_descriptor_": 6, - "NULL": 109, - "internal": 47, - "GeneratedMessageReflection*": 1, - "Person_reflection_": 4, - "protobuf_AssignDesc_protocol_2dbuffer_2eproto": 4, - "protobuf_AddDesc_protocol_2dbuffer_2eproto": 6, - "FileDescriptor*": 1, - "file": 31, - "DescriptorPool": 3, - "generated_pool": 2, - "FindFileByName": 1, - "GOOGLE_CHECK": 1, - "message_type": 1, - "Person_offsets_": 2, - "GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET": 3, - "Person": 65, - "name_": 30, - "new": 13, - "GeneratedMessageReflection": 1, - "default_instance_": 8, - "_has_bits_": 14, - "_unknown_fields_": 5, - "MessageFactory": 3, - "generated_factory": 1, - "sizeof": 15, - "GOOGLE_PROTOBUF_DECLARE_ONCE": 1, - "protobuf_AssignDescriptors_once_": 2, - "inline": 39, - "protobuf_AssignDescriptorsOnce": 4, - "GoogleOnceInit": 1, - "protobuf_RegisterTypes": 2, - "string": 24, - "InternalRegisterGeneratedMessage": 1, - "default_instance": 3, - "protobuf_ShutdownFile_protocol_2dbuffer_2eproto": 4, - "delete": 6, - "already_here": 3, - "GOOGLE_PROTOBUF_VERIFY_VERSION": 1, - "InternalAddGeneratedFile": 1, - "InternalRegisterGeneratedFile": 1, - "InitAsDefaultInstance": 3, - "OnShutdown": 1, - "StaticDescriptorInitializer_protocol_2dbuffer_2eproto": 2, - "static_descriptor_initializer_protocol_2dbuffer_2eproto_": 1, - "kNameFieldNumber": 2, - "Message": 7, - "SharedCtor": 4, - "from": 91, - "MergeFrom": 9, - "_cached_size_": 7, - "const_cast": 3, - "string*": 11, - "kEmptyString": 12, - "memset": 3, - "SharedDtor": 3, - "SetCachedSize": 2, - "size": 13, - "GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN": 2, - "GOOGLE_SAFE_CONCURRENT_WRITES_END": 2, - "*default_instance_": 1, - "Person*": 7, - "New": 6, - "Clear": 18, - "xffu": 3, - "<<": 29, - "has_name": 6, - "clear": 3, - "mutable_unknown_fields": 4, - "MergePartialFromCodedStream": 2, - "io": 4, - "CodedInputStream*": 2, - "input": 12, - "DO_": 4, - "EXPRESSION": 2, - "uint32": 2, - "tag": 6, - "ReadTag": 1, - "switch": 3, - "WireFormatLite": 9, - "GetTagFieldNumber": 1, - "case": 34, - "GetTagWireType": 2, - "WIRETYPE_LENGTH_DELIMITED": 1, - "ReadString": 1, - "mutable_name": 3, - "WireFormat": 10, - "VerifyUTF8String": 3, - "name": 25, - ".data": 3, - ".length": 3, - "PARSE": 1, - "goto": 156, - "handle_uninterpreted": 2, - "ExpectAtEnd": 1, - "default": 14, - "WIRETYPE_END_GROUP": 1, - "SkipField": 1, - "#undef": 3, - "SerializeWithCachedSizes": 2, - "CodedOutputStream*": 2, - "output": 21, - "SERIALIZE": 2, - "WriteString": 1, - "unknown_fields": 7, - "SerializeUnknownFields": 1, - "uint8*": 4, - "SerializeWithCachedSizesToArray": 2, - "target": 6, - "WriteStringToArray": 1, - "SerializeUnknownFieldsToArray": 1, - "ByteSize": 2, - "total_size": 5, - "StringSize": 1, - "ComputeUnknownFieldsSize": 1, - "GOOGLE_CHECK_NE": 2, - "source": 12, - "dynamic_cast_if_available": 1, - "": 12, - "ReflectionOps": 1, - "Merge": 1, - "from._has_bits_": 1, - "from.has_name": 1, - "set_name": 7, - "from.name": 1, - "from.unknown_fields": 1, - "CopyFrom": 5, - "IsInitialized": 3, - "Swap": 2, - "other": 17, - "swap": 3, - "_unknown_fields_.Swap": 1, - "Metadata": 3, - "GetMetadata": 2, - "metadata": 2, - "metadata.descriptor": 1, - "metadata.reflection": 1, - "QSCIPRINTER_H": 2, - "#ifdef": 19, - "__APPLE__": 4, - "extern": 72, - "": 1, - "": 2, - "": 1, - "QT_BEGIN_NAMESPACE": 1, - "QRect": 2, - "QPainter": 2, - "QT_END_NAMESPACE": 1, - "QsciScintillaBase": 100, - "brief": 12, - "The": 50, - "QsciPrinter": 9, - "is": 102, - "a": 157, - "sub": 2, - "of": 215, - "the": 541, - "Qt": 1, - "QPrinter": 3, - "that": 36, - "able": 2, - "to": 254, - "print": 5, - "text": 5, - "Scintilla": 2, - "document.": 8, - "can": 21, - "be": 35, - "further": 1, - "classed": 1, - "alter": 2, - "layout": 1, - "adding": 2, - "headers": 3, - "and": 118, - "footers": 2, - "example.": 1, - "QSCINTILLA_EXPORT": 2, - "Constructs": 1, - "printer": 1, - "paint": 1, - "device": 7, - "with": 33, - "mode": 24, - "mode.": 4, - "PrinterMode": 1, - "ScreenResolution": 1, - "Destroys": 1, - "instance.": 2, - "virtual": 10, - "Format": 1, - "page": 5, - "by": 53, - "example": 3, - "before": 7, - "document": 16, - "drawn": 2, - "on": 55, - "it.": 3, - "painter": 4, - "used": 17, - "add": 3, - "customised": 2, - "graphics.": 2, - "drawing": 4, - "actually": 1, - "being": 4, - "rather": 2, - "than": 6, - "sized.": 1, - "methods": 2, - "must": 6, - "only": 6, - "called": 13, - "when": 22, - "true.": 2, - "area": 5, - "will": 15, - "draw": 1, - "text.": 3, - "This": 19, - "should": 10, - "modified": 3, - "it": 19, - "necessary": 1, - "reserve": 1, - "space": 2, - "any": 23, - "or": 44, - "By": 1, - "relative": 2, - "printable": 1, - "page.": 13, - "Use": 8, - "setFullPage": 1, - "because": 2, - "calling": 9, - "printRange": 2, - "you": 29, - "want": 5, - "try": 1, - "over": 1, - "whole": 2, - "pagenr": 2, - "number": 52, - "first": 13, - "numbered": 1, - "formatPage": 1, - "Return": 3, - "points": 2, - "each": 7, - "font": 2, - "printing.": 2, - "sa": 30, - "setMagnification": 2, - "magnification": 3, - "mag": 2, - "Sets": 24, - "printing": 2, - "magnification.": 1, - "Print": 2, - "range": 3, - "lines": 3, - "instance": 4, - "qsb.": 1, - "line": 11, - "negative": 2, - "value": 50, - "signifies": 2, - "last": 6, - "returned": 5, - "there": 4, - "was": 6, - "no": 7, - "error.": 1, - "*qsb": 1, - "wrap": 4, - "QsciScintilla": 7, - "WrapWord.": 1, - "setWrapMode": 2, - "WrapMode": 3, - "wrapMode": 2, - "wmode.": 1, - "wmode": 1, - "private": 16, - "operator": 10, - "V8_V8_H_": 3, - "GOOGLE3": 2, - "DEBUG": 5, - "NDEBUG": 4, - "#error": 9, - "both": 1, - "are": 36, - "set": 18, - "v8": 9, - "Deserializer": 1, - "V8": 21, - "AllStatic": 1, - "Initialize": 4, - "Deserializer*": 2, - "des": 3, - "TearDown": 5, - "IsRunning": 1, - "is_running_": 6, - "UseCrankshaft": 1, - "use_crankshaft_": 6, - "IsDead": 2, - "has_fatal_error_": 5, - "has_been_disposed_": 6, - "SetFatalError": 2, - "FatalProcessOutOfMemory": 1, - "char*": 24, - "location": 6, - "take_snapshot": 1, - "SetEntropySource": 2, - "EntropySource": 3, - "SetReturnAddressLocationResolver": 3, - "ReturnAddressLocationResolver": 2, - "resolver": 3, - "Random": 3, - "Context*": 4, - "context": 8, - "RandomPrivate": 2, - "Isolate*": 6, - "isolate": 15, - "Object*": 4, - "FillHeapNumberWithRandom": 2, - "heap_number": 4, - "IdleNotification": 3, - "hint": 3, - "AddCallCompletedCallback": 2, - "CallCompletedCallback": 4, - "callback": 7, - "RemoveCallCompletedCallback": 2, - "FireCallCompletedCallback": 2, - "InitializeOncePerProcessImpl": 3, - "InitializeOncePerProcess": 4, - "has_been_set_up_": 4, - "List": 3, - "": 3, - "call_completed_callbacks_": 16, - "enum": 17, - "NilValue": 1, - "kNullValue": 1, - "kUndefinedValue": 1, - "EqualityKind": 1, - "kStrictEquality": 1, - "kNonStrictEquality": 1, - "__OG_MATH_INL__": 2, - "og": 1, - "OG_INLINE": 41, - "Math": 41, - "Abs": 1, - "MASK_SIGNED": 2, - "y": 16, - "x": 86, - "float": 74, - "Fabs": 1, - "f": 104, - "uInt": 1, - "*pf": 1, - "reinterpret_cast": 8, - "": 1, - "pf": 1, - "fabsf": 1, - "Round": 1, - "floorf": 2, - "Floor": 1, - "Ceil": 1, - "ceilf": 1, - "Ftoi": 1, - "@todo": 1, - "needs": 4, - "testing": 2, - "note": 1, - "sse": 1, - "function": 19, - "cvttss2si": 2, - "OG_ASM_MSVC": 4, - "OG_FTOI_USE_SSE": 2, - "SysInfo": 2, - "cpu.general.SSE": 2, - "__asm": 8, - "eax": 5, - "mov": 6, - "fld": 4, - "fistp": 3, - "//__asm": 3, - "do": 13, - "we": 10, - "need": 6, - "O_o": 3, - "#elif": 7, - "OG_ASM_GNU": 4, - "__asm__": 4, - "__volatile__": 4, - "use": 37, - "c": 72, - "cast": 7, - "instead": 4, - "not": 29, - "sure": 6, - "why": 3, - "id": 4, - "did": 3, - "": 3, - "FtoiFast": 2, - "Ftol": 1, - "": 1, - "Sign": 2, - "Fmod": 1, - "numerator": 2, - "denominator": 2, - "fmodf": 1, - "Modf": 2, - "modff": 2, - "Sqrt": 2, - "sqrtf": 2, - "InvSqrt": 1, - "OG_ASSERT": 4, - "RSqrt": 1, - "g": 2, - "*reinterpret_cast": 3, - "guess": 1, - "f375a86": 1, - "": 1, - "Newtons": 1, - "calculation": 1, - "Log": 1, - "logf": 3, - "Log2": 1, - "INV_LN_2": 1, - "Log10": 1, - "INV_LN_10": 1, - "Pow": 1, - "exp": 2, - "powf": 1, - "Exp": 1, - "expf": 1, - "IsPowerOfTwo": 4, - "faster": 3, - "two": 2, - "known": 1, - "check": 4, - "moved": 1, - "beginning": 1, - "HigherPowerOfTwo": 4, - "LowerPowerOfTwo": 2, - "FloorPowerOfTwo": 1, - "CeilPowerOfTwo": 1, - "ClosestPowerOfTwo": 1, - "high": 5, - "low": 5, - "Digits": 1, - "digits": 6, - "step": 3, - "Sin": 2, - "sinf": 1, - "ASin": 1, - "<=>": 2, - "1": 4, - "0f": 2, - "HALF_PI": 2, - "asinf": 1, - "Cos": 2, - "cosf": 1, - "ACos": 1, - "PI": 1, - "acosf": 1, - "Tan": 1, - "tanf": 1, - "ATan": 2, - "atanf": 1, - "f1": 2, - "f2": 2, - "atan2f": 1, - "SinCos": 1, - "sometimes": 1, - "assembler": 1, - "just": 2, - "waaayy": 1, - "_asm": 1, - "fsincos": 1, - "ecx": 2, - "edx": 2, - "fstp": 2, - "dword": 2, - "asm": 1, - "Deg2Rad": 1, - "DEG_TO_RAD": 1, - "Rad2Deg": 1, - "RAD_TO_DEG": 1, - "Square": 1, - "v": 10, - "Cube": 1, - "Sec2Ms": 1, - "sec": 2, - "Ms2Sec": 1, - "ms": 2, - "Q_OS_LINUX": 2, - "": 1, - "QT_VERSION": 1, - "QT_VERSION_CHECK": 1, - "Something": 1, - "wrong": 1, - "setup.": 1, - "Please": 4, - "report": 3, - "mailing": 1, - "list": 3, - "main": 2, - "argc": 2, - "char**": 2, - "argv": 2, - "envp": 4, - "google_breakpad": 1, - "ExceptionHandler": 1, - "eh": 2, - "Utils": 4, - "exceptionHandler": 2, - "qInstallMsgHandler": 1, - "messageHandler": 2, - "QApplication": 1, - "app": 1, - "STATIC_BUILD": 1, - "Q_INIT_RESOURCE": 2, - "WebKit": 1, - "InspectorBackendStub": 1, - "app.setWindowIcon": 1, - "QIcon": 1, - "app.setApplicationName": 1, - "app.setOrganizationName": 1, - "app.setOrganizationDomain": 1, - "app.setApplicationVersion": 1, - "PHANTOMJS_VERSION_STRING": 1, - "Env": 13, - "parse": 3, - "Phantom": 1, - "phantom": 1, - "phantom.execute": 1, - "app.exec": 1, - "phantom.returnValue": 1, - "PY_SSIZE_T_CLEAN": 1, - "Py_PYTHON_H": 1, - "Python": 1, - "needed": 3, - "compile": 1, - "C": 6, - "extensions": 1, - "please": 2, - "install": 3, - "development": 1, - "version": 38, - "Python.": 1, - "": 1, - "offsetof": 2, - "type": 7, - "member": 2, - "type*": 1, - "WIN32": 2, - "MS_WINDOWS": 2, - "__stdcall": 2, - "__cdecl": 2, - "__fastcall": 2, - "DL_IMPORT": 2, - "t": 15, - "DL_EXPORT": 2, - "PY_LONG_LONG": 5, - "LONG_LONG": 1, - "PY_VERSION_HEX": 9, - "METH_COEXIST": 1, - "PyDict_CheckExact": 1, - "Py_TYPE": 4, - "PyDict_Type": 1, - "PyDict_Contains": 1, - "d": 8, - "o": 20, - "PySequence_Contains": 1, - "Py_ssize_t": 17, - "PY_SSIZE_T_MAX": 1, - "INT_MAX": 1, - "PY_SSIZE_T_MIN": 1, - "INT_MIN": 1, - "PY_FORMAT_SIZE_T": 1, - "PyInt_FromSsize_t": 2, - "z": 46, - "PyInt_FromLong": 13, - "PyInt_AsSsize_t": 2, - "PyInt_AsLong": 2, - "PyNumber_Index": 1, - "PyNumber_Int": 1, - "PyIndex_Check": 1, - "PyNumber_Check": 1, - "PyErr_WarnEx": 1, - "category": 2, - "message": 2, - "stacklevel": 1, - "PyErr_Warn": 1, - "Py_REFCNT": 1, - "ob": 6, - "PyObject*": 16, - "ob_refcnt": 1, - "ob_type": 7, - "Py_SIZE": 1, - "PyVarObject*": 1, - "ob_size": 1, - "PyVarObject_HEAD_INIT": 1, - "PyObject_HEAD_INIT": 1, - "PyType_Modified": 1, - "*buf": 1, - "PyObject": 221, - "*obj": 2, - "len": 15, - "itemsize": 2, - "readonly": 3, - "ndim": 2, - "*format": 1, - "*shape": 1, - "*strides": 1, - "*suboffsets": 1, - "*internal": 1, - "Py_buffer": 5, - "PyBUF_SIMPLE": 1, - "PyBUF_WRITABLE": 1, - "PyBUF_FORMAT": 1, - "PyBUF_ND": 2, - "PyBUF_STRIDES": 5, - "PyBUF_C_CONTIGUOUS": 3, - "PyBUF_F_CONTIGUOUS": 3, - "PyBUF_ANY_CONTIGUOUS": 1, - "PyBUF_INDIRECT": 1, - "PY_MAJOR_VERSION": 10, - "__Pyx_BUILTIN_MODULE_NAME": 2, - "Py_TPFLAGS_CHECKTYPES": 1, - "Py_TPFLAGS_HAVE_INDEX": 1, - "Py_TPFLAGS_HAVE_NEWBUFFER": 1, - "PyBaseString_Type": 1, - "PyUnicode_Type": 2, - "PyStringObject": 2, - "PyUnicodeObject": 1, - "PyString_Type": 2, - "PyString_Check": 2, - "PyUnicode_Check": 1, - "PyString_CheckExact": 2, - "PyUnicode_CheckExact": 1, - "PyBytesObject": 1, - "PyBytes_Type": 1, - "PyBytes_Check": 1, - "PyBytes_CheckExact": 1, - "PyBytes_FromString": 2, - "PyString_FromString": 1, - "PyBytes_FromStringAndSize": 1, - "PyString_FromStringAndSize": 1, - "PyBytes_FromFormat": 1, - "PyString_FromFormat": 1, - "PyBytes_DecodeEscape": 1, - "PyString_DecodeEscape": 1, - "PyBytes_AsString": 2, - "PyString_AsString": 1, - "PyBytes_AsStringAndSize": 1, - "PyString_AsStringAndSize": 1, - "PyBytes_Size": 1, - "PyString_Size": 1, - "PyBytes_AS_STRING": 1, - "PyString_AS_STRING": 1, - "PyBytes_GET_SIZE": 1, - "PyString_GET_SIZE": 1, - "PyBytes_Repr": 1, - "PyString_Repr": 1, - "PyBytes_Concat": 1, - "PyString_Concat": 1, - "PyBytes_ConcatAndDel": 1, - "PyString_ConcatAndDel": 1, - "PySet_Check": 1, - "obj": 42, - "PyObject_TypeCheck": 3, - "PySet_Type": 2, - "PyFrozenSet_Check": 1, - "PyFrozenSet_Type": 1, - "PySet_CheckExact": 2, - "__Pyx_TypeCheck": 1, - "PyTypeObject": 2, - "PyIntObject": 1, - "PyLongObject": 2, - "PyInt_Type": 1, - "PyLong_Type": 1, - "PyInt_Check": 1, - "PyLong_Check": 1, - "PyInt_CheckExact": 1, - "PyLong_CheckExact": 1, - "PyInt_FromString": 1, - "PyLong_FromString": 1, - "PyInt_FromUnicode": 1, - "PyLong_FromUnicode": 1, - "PyLong_FromLong": 1, - "PyInt_FromSize_t": 1, - "PyLong_FromSize_t": 1, - "PyLong_FromSsize_t": 1, - "PyLong_AsLong": 1, - "PyInt_AS_LONG": 1, - "PyLong_AS_LONG": 1, - "PyLong_AsSsize_t": 1, - "PyInt_AsUnsignedLongMask": 1, - "PyLong_AsUnsignedLongMask": 1, - "PyInt_AsUnsignedLongLongMask": 1, - "PyLong_AsUnsignedLongLongMask": 1, - "PyBoolObject": 1, - "__Pyx_PyNumber_Divide": 2, - "PyNumber_TrueDivide": 1, - "__Pyx_PyNumber_InPlaceDivide": 2, - "PyNumber_InPlaceTrueDivide": 1, - "PyNumber_Divide": 1, - "PyNumber_InPlaceDivide": 1, - "__Pyx_PySequence_GetSlice": 2, - "b": 57, - "PySequence_GetSlice": 2, - "__Pyx_PySequence_SetSlice": 2, - "PySequence_SetSlice": 2, - "__Pyx_PySequence_DelSlice": 2, - "PySequence_DelSlice": 2, - "unlikely": 69, - "PyErr_SetString": 4, - "PyExc_SystemError": 3, - "likely": 15, - "tp_as_mapping": 3, - "PyErr_Format": 4, - "PyExc_TypeError": 5, - "tp_name": 4, - "PyMethod_New": 2, - "func": 3, - "self": 5, - "klass": 1, - "PyInstanceMethod_New": 1, - "__Pyx_GetAttrString": 2, - "n": 28, - "PyObject_GetAttrString": 3, - "__Pyx_SetAttrString": 2, - "PyObject_SetAttrString": 2, - "__Pyx_DelAttrString": 2, - "PyObject_DelAttrString": 2, - "__Pyx_NAMESTR": 3, - "__Pyx_DOCSTR": 3, - "__cplusplus": 12, - "__PYX_EXTERN_C": 2, - "_USE_MATH_DEFINES": 1, - "": 1, - "__PYX_HAVE_API__wrapper_inner": 1, - "": 4, - "PYREX_WITHOUT_ASSERTIONS": 1, - "CYTHON_WITHOUT_ASSERTIONS": 1, - "CYTHON_INLINE": 68, - "__GNUC__": 5, - "__inline__": 1, - "__inline": 1, - "__STDC_VERSION__": 2, - "L": 1, - "CYTHON_UNUSED": 7, - "**p": 1, - "*s": 1, - "encoding": 1, - "is_unicode": 1, - "is_str": 1, - "intern": 1, - "__Pyx_StringTabEntry": 1, - "__Pyx_PyBytes_FromUString": 1, - "__Pyx_PyBytes_AsUString": 1, - "unsigned": 22, - "__Pyx_PyBool_FromLong": 1, - "Py_INCREF": 3, - "Py_True": 2, - "Py_False": 2, - "__Pyx_PyObject_IsTrue": 8, - "__Pyx_PyNumber_Int": 1, - "__Pyx_PyIndex_AsSsize_t": 1, - "__Pyx_PyInt_FromSize_t": 1, - "__Pyx_PyInt_AsSize_t": 1, - "__pyx_PyFloat_AsDouble": 3, - "PyFloat_CheckExact": 1, - "PyFloat_AS_DOUBLE": 1, - "PyFloat_AsDouble": 1, - "__GNUC_MINOR__": 1, - "__builtin_expect": 2, - "*__pyx_m": 1, - "*__pyx_b": 1, - "*__pyx_empty_tuple": 1, - "*__pyx_empty_bytes": 1, - "__pyx_lineno": 80, - "__pyx_clineno": 80, - "__pyx_cfilenm": 1, - "__FILE__": 2, - "*__pyx_filename": 1, - "CYTHON_CCOMPLEX": 12, - "_Complex_I": 3, - "": 1, - "": 1, - "__sun__": 1, - "fj": 1, - "*__pyx_f": 1, - "npy_int8": 1, - "__pyx_t_5numpy_int8_t": 1, - "npy_int16": 1, - "__pyx_t_5numpy_int16_t": 1, - "npy_int32": 1, - "__pyx_t_5numpy_int32_t": 1, - "npy_int64": 1, - "__pyx_t_5numpy_int64_t": 1, - "npy_uint8": 1, - "__pyx_t_5numpy_uint8_t": 1, - "npy_uint16": 1, - "__pyx_t_5numpy_uint16_t": 1, - "npy_uint32": 1, - "__pyx_t_5numpy_uint32_t": 1, - "npy_uint64": 1, - "__pyx_t_5numpy_uint64_t": 1, - "npy_float32": 1, - "__pyx_t_5numpy_float32_t": 1, - "npy_float64": 1, - "__pyx_t_5numpy_float64_t": 1, - "npy_long": 1, - "__pyx_t_5numpy_int_t": 1, - "npy_longlong": 1, - "__pyx_t_5numpy_long_t": 1, - "npy_intp": 10, - "__pyx_t_5numpy_intp_t": 1, - "npy_uintp": 1, - "__pyx_t_5numpy_uintp_t": 1, - "npy_ulong": 1, - "__pyx_t_5numpy_uint_t": 1, - "npy_ulonglong": 1, - "__pyx_t_5numpy_ulong_t": 1, - "npy_double": 2, - "__pyx_t_5numpy_float_t": 1, - "__pyx_t_5numpy_double_t": 1, - "npy_longdouble": 1, - "__pyx_t_5numpy_longdouble_t": 1, - "complex": 2, - "__pyx_t_float_complex": 27, - "_Complex": 2, - "real": 4, - "imag": 2, - "double": 25, - "__pyx_t_double_complex": 27, - "npy_cfloat": 1, - "__pyx_t_5numpy_cfloat_t": 1, - "npy_cdouble": 2, - "__pyx_t_5numpy_cdouble_t": 1, - "npy_clongdouble": 1, - "__pyx_t_5numpy_clongdouble_t": 1, - "__pyx_t_5numpy_complex_t": 1, - "CYTHON_REFNANNY": 3, - "__Pyx_RefNannyAPIStruct": 4, - "*__Pyx_RefNanny": 1, - "__Pyx_RefNannyImportAPI": 1, - "*modname": 1, - "*m": 1, - "*p": 1, - "*r": 1, - "m": 4, - "PyImport_ImportModule": 1, - "modname": 1, - "end": 23, - "p": 6, - "PyLong_AsVoidPtr": 1, - "Py_XDECREF": 3, - "__Pyx_RefNannySetupContext": 13, - "*__pyx_refnanny": 1, - "__Pyx_RefNanny": 6, - "SetupContext": 1, - "__LINE__": 84, - "__Pyx_RefNannyFinishContext": 12, - "FinishContext": 1, - "__pyx_refnanny": 5, - "__Pyx_INCREF": 36, - "INCREF": 1, - "__Pyx_DECREF": 66, - "DECREF": 1, - "__Pyx_GOTREF": 60, - "GOTREF": 1, - "__Pyx_GIVEREF": 10, - "GIVEREF": 1, - "__Pyx_XDECREF": 26, - "Py_DECREF": 1, - "__Pyx_XGIVEREF": 7, - "__Pyx_XGOTREF": 1, - "__Pyx_TypeTest": 4, - "*type": 3, - "*__Pyx_GetName": 1, - "*dict": 1, - "__Pyx_ErrRestore": 1, - "*value": 2, - "*tb": 2, - "__Pyx_ErrFetch": 1, - "**type": 1, - "**value": 1, - "**tb": 1, - "__Pyx_Raise": 8, - "__Pyx_RaiseNoneNotIterableError": 1, - "__Pyx_RaiseNeedMoreValuesError": 1, - "index": 2, - "__Pyx_RaiseTooManyValuesError": 1, - "expected": 1, - "__Pyx_UnpackTupleError": 2, - "*__Pyx_Import": 1, - "*from_list": 1, - "__Pyx_Print": 1, - "__pyx_print": 1, - "__pyx_print_kwargs": 1, - "__Pyx_PrintOne": 4, - "stream": 6, - "*o": 1, - "*__Pyx_PyInt_to_py_Py_intptr_t": 1, - "Py_intptr_t": 1, - "__Pyx_CREAL": 4, - ".real": 3, - "__Pyx_CIMAG": 4, - ".imag": 3, - "__real__": 1, - "__imag__": 1, - "_WIN32": 1, - "__Pyx_SET_CREAL": 2, - "__Pyx_SET_CIMAG": 2, - "__pyx_t_float_complex_from_parts": 1, - "__Pyx_c_eqf": 2, - "__Pyx_c_sumf": 2, - "__Pyx_c_difff": 2, - "__Pyx_c_prodf": 2, - "__Pyx_c_quotf": 2, - "__Pyx_c_negf": 2, - "__Pyx_c_is_zerof": 3, - "__Pyx_c_conjf": 3, - "conj": 3, - "__Pyx_c_absf": 3, - "abs": 2, - "__Pyx_c_powf": 3, - "pow": 2, - "conjf": 1, - "cabsf": 1, - "cpowf": 1, - "__pyx_t_double_complex_from_parts": 1, - "__Pyx_c_eq": 2, - "__Pyx_c_sum": 2, - "__Pyx_c_diff": 2, - "__Pyx_c_prod": 2, - "__Pyx_c_quot": 2, - "__Pyx_c_neg": 2, - "__Pyx_c_is_zero": 3, - "__Pyx_c_conj": 3, - "__Pyx_c_abs": 3, - "__Pyx_c_pow": 3, - "cabs": 1, - "cpow": 1, - "__Pyx_PyInt_AsUnsignedChar": 1, - "short": 5, - "__Pyx_PyInt_AsUnsignedShort": 1, - "__Pyx_PyInt_AsUnsignedInt": 1, - "__Pyx_PyInt_AsChar": 1, - "__Pyx_PyInt_AsShort": 1, - "__Pyx_PyInt_AsInt": 1, - "signed": 5, - "__Pyx_PyInt_AsSignedChar": 1, - "__Pyx_PyInt_AsSignedShort": 1, - "__Pyx_PyInt_AsSignedInt": 1, - "__Pyx_PyInt_AsLongDouble": 1, - "__Pyx_PyInt_AsUnsignedLong": 1, - "__Pyx_PyInt_AsUnsignedLongLong": 1, - "__Pyx_PyInt_AsLong": 1, - "__Pyx_PyInt_AsLongLong": 1, - "__Pyx_PyInt_AsSignedLong": 1, - "__Pyx_PyInt_AsSignedLongLong": 1, - "__Pyx_WriteUnraisable": 3, - "__Pyx_ExportFunction": 1, - "*__pyx_f_5numpy_PyArray_MultiIterNew2": 2, - "*__pyx_f_5numpy_PyArray_MultiIterNew3": 2, - "*__pyx_f_5numpy_PyArray_MultiIterNew4": 2, - "*__pyx_f_5numpy_PyArray_MultiIterNew5": 2, - "*__pyx_f_5numpy__util_dtypestring": 2, - "PyArray_Descr": 6, - "__pyx_f_5numpy_set_array_base": 1, - "PyArrayObject": 19, - "*__pyx_f_5numpy_get_array_base": 1, - "inner_work_1d": 2, - "inner_work_2d": 2, - "__Pyx_MODULE_NAME": 1, - "__pyx_module_is_main_wrapper_inner": 1, - "*__pyx_builtin_ValueError": 1, - "*__pyx_builtin_range": 1, - "*__pyx_builtin_RuntimeError": 1, - "__pyx_k_1": 1, - "__pyx_k_2": 1, - "__pyx_k_3": 1, - "__pyx_k_5": 1, - "__pyx_k_7": 1, - "__pyx_k_9": 1, - "__pyx_k_11": 1, - "__pyx_k_12": 1, - "__pyx_k_15": 1, - "__pyx_k__B": 2, - "__pyx_k__H": 2, - "__pyx_k__I": 2, - "__pyx_k__L": 2, - "__pyx_k__O": 2, - "__pyx_k__Q": 2, - "__pyx_k__b": 2, - "__pyx_k__d": 2, - "__pyx_k__f": 2, - "__pyx_k__g": 2, - "__pyx_k__h": 2, - "__pyx_k__i": 2, - "__pyx_k__l": 2, - "__pyx_k__q": 2, - "__pyx_k__Zd": 2, - "__pyx_k__Zf": 2, - "__pyx_k__Zg": 2, - "__pyx_k__np": 1, - "__pyx_k__buf": 1, - "__pyx_k__obj": 1, - "__pyx_k__base": 1, - "__pyx_k__ndim": 1, - "__pyx_k__ones": 1, - "__pyx_k__descr": 1, - "__pyx_k__names": 1, - "__pyx_k__numpy": 1, - "__pyx_k__range": 1, - "__pyx_k__shape": 1, - "__pyx_k__fields": 1, - "__pyx_k__format": 1, - "__pyx_k__strides": 1, - "__pyx_k____main__": 1, - "__pyx_k____test__": 1, - "__pyx_k__itemsize": 1, - "__pyx_k__readonly": 1, - "__pyx_k__type_num": 1, - "__pyx_k__byteorder": 1, - "__pyx_k__ValueError": 1, - "__pyx_k__suboffsets": 1, - "__pyx_k__work_module": 1, - "__pyx_k__RuntimeError": 1, - "__pyx_k__pure_py_test": 1, - "__pyx_k__wrapper_inner": 1, - "__pyx_k__do_awesome_work": 1, - "*__pyx_kp_s_1": 1, - "*__pyx_kp_u_11": 1, - "*__pyx_kp_u_12": 1, - "*__pyx_kp_u_15": 1, - "*__pyx_kp_s_2": 1, - "*__pyx_kp_s_3": 1, - "*__pyx_kp_u_5": 1, - "*__pyx_kp_u_7": 1, - "*__pyx_kp_u_9": 1, - "*__pyx_n_s__RuntimeError": 1, - "*__pyx_n_s__ValueError": 1, - "*__pyx_n_s____main__": 1, - "*__pyx_n_s____test__": 1, - "*__pyx_n_s__base": 1, - "*__pyx_n_s__buf": 1, - "*__pyx_n_s__byteorder": 1, - "*__pyx_n_s__descr": 1, - "*__pyx_n_s__do_awesome_work": 1, - "*__pyx_n_s__fields": 1, - "*__pyx_n_s__format": 1, - "*__pyx_n_s__itemsize": 1, - "*__pyx_n_s__names": 1, - "*__pyx_n_s__ndim": 1, - "*__pyx_n_s__np": 1, - "*__pyx_n_s__numpy": 1, - "*__pyx_n_s__obj": 1, - "*__pyx_n_s__ones": 1, - "*__pyx_n_s__pure_py_test": 1, - "*__pyx_n_s__range": 1, - "*__pyx_n_s__readonly": 1, - "*__pyx_n_s__shape": 1, - "*__pyx_n_s__strides": 1, - "*__pyx_n_s__suboffsets": 1, - "*__pyx_n_s__type_num": 1, - "*__pyx_n_s__work_module": 1, - "*__pyx_n_s__wrapper_inner": 1, - "*__pyx_int_5": 1, - "*__pyx_int_15": 1, - "*__pyx_k_tuple_4": 1, - "*__pyx_k_tuple_6": 1, - "*__pyx_k_tuple_8": 1, - "*__pyx_k_tuple_10": 1, - "*__pyx_k_tuple_13": 1, - "*__pyx_k_tuple_14": 1, - "*__pyx_k_tuple_16": 1, - "__pyx_v_num_x": 4, - "*__pyx_v_data_ptr": 2, - "*__pyx_v_answer_ptr": 2, - "__pyx_v_nd": 6, - "*__pyx_v_dims": 2, - "__pyx_v_typenum": 6, - "*__pyx_v_data_np": 2, - "__pyx_v_sum": 6, - "__pyx_t_1": 154, - "*__pyx_t_2": 4, - "*__pyx_t_3": 4, - "*__pyx_t_4": 3, - "__pyx_t_5": 75, - "__pyx_kp_s_1": 1, - "__pyx_filename": 79, - "__pyx_f": 79, - "__pyx_L1_error": 88, - "__pyx_v_dims": 4, - "NPY_DOUBLE": 3, - "__pyx_t_2": 120, - "PyArray_SimpleNewFromData": 2, - "__pyx_v_data_ptr": 2, - "Py_None": 38, - "__pyx_ptype_5numpy_ndarray": 2, - "__pyx_v_data_np": 10, - "__Pyx_GetName": 4, - "__pyx_m": 4, - "__pyx_n_s__work_module": 3, - "__pyx_t_3": 113, - "PyObject_GetAttr": 4, - "__pyx_n_s__do_awesome_work": 3, - "PyTuple_New": 4, - "PyTuple_SET_ITEM": 4, - "__pyx_t_4": 35, - "PyObject_Call": 11, - "PyErr_Occurred": 2, - "__pyx_v_answer_ptr": 2, - "__pyx_L0": 24, - "__pyx_v_num_y": 2, - "__pyx_kp_s_2": 1, - "*__pyx_pf_13wrapper_inner_pure_py_test": 2, - "*__pyx_self": 2, - "*unused": 2, - "PyMethodDef": 1, - "__pyx_mdef_13wrapper_inner_pure_py_test": 1, - "PyCFunction": 1, - "__pyx_pf_13wrapper_inner_pure_py_test": 1, - "METH_NOARGS": 1, - "*__pyx_v_data": 1, - "*__pyx_r": 7, - "*__pyx_t_1": 8, - "__pyx_self": 2, - "__pyx_v_data": 7, - "__pyx_kp_s_3": 1, - "__pyx_n_s__np": 1, - "__pyx_n_s__ones": 1, - "__pyx_k_tuple_4": 1, - "__pyx_r": 39, - "__Pyx_AddTraceback": 7, - "__pyx_pf_5numpy_7ndarray___getbuffer__": 2, - "*__pyx_v_self": 4, - "*__pyx_v_info": 4, - "__pyx_v_flags": 4, - "__pyx_v_copy_shape": 5, - "__pyx_v_i": 6, - "__pyx_v_ndim": 6, - "__pyx_v_endian_detector": 6, - "__pyx_v_little_endian": 8, - "__pyx_v_t": 29, - "*__pyx_v_f": 2, - "*__pyx_v_descr": 2, - "__pyx_v_offset": 9, - "__pyx_v_hasfields": 4, - "__pyx_t_6": 40, - "__pyx_t_7": 9, - "*__pyx_t_8": 1, - "*__pyx_t_9": 1, - "__pyx_v_info": 33, - "__pyx_v_self": 16, - "PyArray_NDIM": 1, - "__pyx_L5": 6, - "PyArray_CHKFLAGS": 2, - "NPY_C_CONTIGUOUS": 1, - "__pyx_builtin_ValueError": 5, - "__pyx_k_tuple_6": 1, - "__pyx_L6": 6, - "NPY_F_CONTIGUOUS": 1, - "__pyx_k_tuple_8": 1, - "__pyx_L7": 2, - "buf": 14, - "PyArray_DATA": 1, - "strides": 5, - "malloc": 2, - "shape": 3, - "PyArray_STRIDES": 2, - "PyArray_DIMS": 2, - "__pyx_L8": 2, - "suboffsets": 1, - "PyArray_ITEMSIZE": 1, - "PyArray_ISWRITEABLE": 1, - "__pyx_v_f": 31, - "descr": 2, - "__pyx_v_descr": 10, - "PyDataType_HASFIELDS": 2, - "__pyx_L11": 7, - "type_num": 2, - "byteorder": 4, - "__pyx_k_tuple_10": 1, - "__pyx_L13": 2, - "NPY_BYTE": 2, - "__pyx_L14": 18, - "NPY_UBYTE": 2, - "NPY_SHORT": 2, - "NPY_USHORT": 2, - "NPY_INT": 2, - "NPY_UINT": 2, - "NPY_LONG": 1, - "NPY_ULONG": 1, - "NPY_LONGLONG": 1, - "NPY_ULONGLONG": 1, - "NPY_FLOAT": 1, - "NPY_LONGDOUBLE": 1, - "NPY_CFLOAT": 1, - "NPY_CDOUBLE": 1, - "NPY_CLONGDOUBLE": 1, - "NPY_OBJECT": 1, - "__pyx_t_8": 16, - "PyNumber_Remainder": 1, - "__pyx_kp_u_11": 1, - "format": 6, - "__pyx_L12": 2, - "__pyx_t_9": 7, - "__pyx_f_5numpy__util_dtypestring": 1, - "__pyx_L2": 2, - "__pyx_pf_5numpy_7ndarray_1__releasebuffer__": 2, - "PyArray_HASFIELDS": 1, - "free": 4, - "*__pyx_f_5numpy_PyArray_MultiIterNew1": 1, - "*__pyx_v_a": 5, - "PyArray_MultiIterNew": 5, - "__pyx_v_a": 5, - "*__pyx_v_b": 4, - "__pyx_v_b": 4, - "*__pyx_v_c": 3, - "__pyx_v_c": 3, - "*__pyx_v_d": 2, - "__pyx_v_d": 2, - "*__pyx_v_e": 1, - "__pyx_v_e": 1, - "*__pyx_v_end": 1, - "*__pyx_v_offset": 1, - "*__pyx_v_child": 1, - "*__pyx_v_fields": 1, - "*__pyx_v_childname": 1, - "*__pyx_v_new_offset": 1, - "*__pyx_v_t": 1, - "*__pyx_t_5": 1, - "__pyx_t_10": 7, - "*__pyx_t_11": 1, - "__pyx_v_child": 8, - "__pyx_v_fields": 7, - "__pyx_v_childname": 4, - "__pyx_v_new_offset": 5, - "names": 3, - "PyTuple_GET_SIZE": 2, - "PyTuple_GET_ITEM": 3, - "PyObject_GetItem": 1, - "fields": 4, - "PyTuple_CheckExact": 1, - "tuple": 3, - "__pyx_ptype_5numpy_dtype": 1, - "__pyx_v_end": 2, - "PyNumber_Subtract": 2, - "PyObject_RichCompare": 8, - "__pyx_int_15": 1, - "Py_LT": 2, - "__pyx_builtin_RuntimeError": 2, - "__pyx_k_tuple_13": 1, - "__pyx_k_tuple_14": 1, - "elsize": 1, - "__pyx_k_tuple_16": 1, - "__pyx_L10": 2, - "Py_EQ": 6, - "QSCICOMMAND_H": 2, - "": 1, - "": 1, - "QsciCommand": 7, - "represents": 1, - "an": 23, - "editor": 1, - "command": 9, - "may": 9, - "have": 4, - "one": 73, - "keys": 3, - "bound": 4, - "Methods": 1, - "provided": 1, - "change": 3, - "remove": 2, - "key": 23, - "binding.": 1, - "Each": 1, - "has": 29, - "user": 3, - "friendly": 2, - "description": 3, - "in": 165, - "mapping": 3, - "dialogs.": 1, - "defines": 3, - "different": 5, - "commands": 1, - "assigned": 1, - "key.": 1, - "Command": 4, - "Move": 26, - "down": 12, - "line.": 33, - "LineDown": 1, - "SCI_LINEDOWN": 1, - "Extend": 33, - "selection": 39, - "LineDownExtend": 1, - "SCI_LINEDOWNEXTEND": 1, - "rectangular": 9, - "LineDownRectExtend": 1, - "SCI_LINEDOWNRECTEXTEND": 1, - "Scroll": 5, - "view": 2, - "LineScrollDown": 1, - "SCI_LINESCROLLDOWN": 1, - "up": 18, - "LineUp": 1, - "SCI_LINEUP": 1, - "LineUpExtend": 1, - "SCI_LINEUPEXTEND": 1, - "LineUpRectExtend": 1, - "SCI_LINEUPRECTEXTEND": 1, - "LineScrollUp": 1, - "SCI_LINESCROLLUP": 1, - "start": 12, - "ScrollToStart": 1, - "SCI_SCROLLTOSTART": 1, - "ScrollToEnd": 1, - "SCI_SCROLLTOEND": 1, - "vertically": 1, - "centre": 1, - "current": 26, - "VerticalCentreCaret": 1, - "SCI_VERTICALCENTRECARET": 1, - "paragraph.": 4, - "ParaDown": 1, - "SCI_PARADOWN": 1, - "ParaDownExtend": 1, - "SCI_PARADOWNEXTEND": 1, - "ParaUp": 1, - "SCI_PARAUP": 1, - "ParaUpExtend": 1, - "SCI_PARAUPEXTEND": 1, - "left": 7, - "character.": 9, - "CharLeft": 1, - "SCI_CHARLEFT": 1, - "CharLeftExtend": 1, - "SCI_CHARLEFTEXTEND": 1, - "CharLeftRectExtend": 1, - "SCI_CHARLEFTRECTEXTEND": 1, - "right": 9, - "CharRight": 1, - "SCI_CHARRIGHT": 1, - "CharRightExtend": 1, - "SCI_CHARRIGHTEXTEND": 1, - "CharRightRectExtend": 1, - "SCI_CHARRIGHTRECTEXTEND": 1, - "word.": 9, - "WordLeft": 1, - "SCI_WORDLEFT": 1, - "WordLeftExtend": 1, - "SCI_WORDLEFTEXTEND": 1, - "WordRight": 1, - "SCI_WORDRIGHT": 1, - "WordRightExtend": 1, - "SCI_WORDRIGHTEXTEND": 1, - "previous": 6, - "WordLeftEnd": 1, - "SCI_WORDLEFTEND": 1, - "WordLeftEndExtend": 1, - "SCI_WORDLEFTENDEXTEND": 1, - "next": 9, - "WordRightEnd": 1, - "SCI_WORDRIGHTEND": 1, - "WordRightEndExtend": 1, - "SCI_WORDRIGHTENDEXTEND": 1, - "word": 7, - "part.": 4, - "WordPartLeft": 1, - "SCI_WORDPARTLEFT": 1, - "WordPartLeftExtend": 1, - "SCI_WORDPARTLEFTEXTEND": 1, - "WordPartRight": 1, - "SCI_WORDPARTRIGHT": 1, - "WordPartRightExtend": 1, - "SCI_WORDPARTRIGHTEXTEND": 1, - "Home": 1, - "SCI_HOME": 1, - "HomeExtend": 1, - "SCI_HOMEEXTEND": 1, - "HomeRectExtend": 1, - "SCI_HOMERECTEXTEND": 1, - "displayed": 10, - "HomeDisplay": 1, - "SCI_HOMEDISPLAY": 1, - "HomeDisplayExtend": 1, - "SCI_HOMEDISPLAYEXTEND": 1, - "HomeWrap": 1, - "SCI_HOMEWRAP": 1, - "HomeWrapExtend": 1, - "SCI_HOMEWRAPEXTEND": 1, - "visible": 6, - "character": 10, - "VCHome": 1, - "SCI_VCHOME": 1, - "VCHomeExtend": 1, - "SCI_VCHOMEEXTEND": 1, - "VCHomeRectExtend": 1, - "SCI_VCHOMERECTEXTEND": 1, - "VCHomeWrap": 1, - "SCI_VCHOMEWRAP": 1, - "VCHomeWrapExtend": 1, - "SCI_VCHOMEWRAPEXTEND": 1, - "LineEnd": 1, - "SCI_LINEEND": 1, - "LineEndExtend": 1, - "SCI_LINEENDEXTEND": 1, - "LineEndRectExtend": 1, - "SCI_LINEENDRECTEXTEND": 1, - "LineEndDisplay": 1, - "SCI_LINEENDDISPLAY": 1, - "LineEndDisplayExtend": 1, - "SCI_LINEENDDISPLAYEXTEND": 1, - "LineEndWrap": 1, - "SCI_LINEENDWRAP": 1, - "LineEndWrapExtend": 1, - "SCI_LINEENDWRAPEXTEND": 1, - "DocumentStart": 1, - "SCI_DOCUMENTSTART": 1, - "DocumentStartExtend": 1, - "SCI_DOCUMENTSTARTEXTEND": 1, - "DocumentEnd": 1, - "SCI_DOCUMENTEND": 1, - "DocumentEndExtend": 1, - "SCI_DOCUMENTENDEXTEND": 1, - "PageUp": 1, - "SCI_PAGEUP": 1, - "PageUpExtend": 1, - "SCI_PAGEUPEXTEND": 1, - "PageUpRectExtend": 1, - "SCI_PAGEUPRECTEXTEND": 1, - "PageDown": 1, - "SCI_PAGEDOWN": 1, - "PageDownExtend": 1, - "SCI_PAGEDOWNEXTEND": 1, - "PageDownRectExtend": 1, - "SCI_PAGEDOWNRECTEXTEND": 1, - "Stuttered": 4, - "move": 2, - "StutteredPageUp": 1, - "SCI_STUTTEREDPAGEUP": 1, - "extend": 2, - "StutteredPageUpExtend": 1, - "SCI_STUTTEREDPAGEUPEXTEND": 1, - "StutteredPageDown": 1, - "SCI_STUTTEREDPAGEDOWN": 1, - "StutteredPageDownExtend": 1, - "SCI_STUTTEREDPAGEDOWNEXTEND": 1, - "Delete": 10, - "SCI_CLEAR": 1, - "DeleteBack": 1, - "SCI_DELETEBACK": 1, - "at": 20, - "DeleteBackNotLine": 1, - "SCI_DELETEBACKNOTLINE": 1, - "left.": 2, - "DeleteWordLeft": 1, - "SCI_DELWORDLEFT": 1, - "right.": 2, - "DeleteWordRight": 1, - "SCI_DELWORDRIGHT": 1, - "DeleteWordRightEnd": 1, - "SCI_DELWORDRIGHTEND": 1, - "DeleteLineLeft": 1, - "SCI_DELLINELEFT": 1, - "DeleteLineRight": 1, - "SCI_DELLINERIGHT": 1, - "LineDelete": 1, - "SCI_LINEDELETE": 1, - "Cut": 2, - "clipboard.": 5, - "LineCut": 1, - "SCI_LINECUT": 1, - "Copy": 2, - "LineCopy": 1, - "SCI_LINECOPY": 1, - "Transpose": 1, - "lines.": 1, - "LineTranspose": 1, - "SCI_LINETRANSPOSE": 1, - "Duplicate": 2, - "LineDuplicate": 1, - "SCI_LINEDUPLICATE": 1, - "Select": 49, - "SelectAll": 1, - "SCI_SELECTALL": 1, - "selected": 13, - "MoveSelectedLinesUp": 1, - "SCI_MOVESELECTEDLINESUP": 1, - "MoveSelectedLinesDown": 1, - "SCI_MOVESELECTEDLINESDOWN": 1, - "selection.": 1, - "SelectionDuplicate": 1, - "SCI_SELECTIONDUPLICATE": 1, - "Convert": 2, - "lower": 1, - "case.": 2, - "SelectionLowerCase": 1, - "SCI_LOWERCASE": 1, - "upper": 1, - "SelectionUpperCase": 1, - "SCI_UPPERCASE": 1, - "SelectionCut": 1, - "SCI_CUT": 1, - "SelectionCopy": 1, - "SCI_COPY": 1, - "Paste": 2, - "SCI_PASTE": 1, - "Toggle": 1, - "insert/overtype.": 1, - "EditToggleOvertype": 1, - "SCI_EDITTOGGLEOVERTYPE": 1, - "Insert": 2, - "platform": 2, - "dependent": 1, - "newline.": 1, - "Newline": 1, - "SCI_NEWLINE": 1, - "formfeed.": 1, - "Formfeed": 1, - "SCI_FORMFEED": 1, - "Indent": 1, - "level.": 3, - "Tab": 1, - "SCI_TAB": 1, - "De": 1, - "indent": 1, - "Backtab": 1, - "SCI_BACKTAB": 1, - "Cancel": 2, - "operation.": 2, - "SCI_CANCEL": 1, - "Undo": 2, - "command.": 5, - "SCI_UNDO": 1, - "Redo": 2, - "SCI_REDO": 1, - "Zoom": 2, - "in.": 1, - "ZoomIn": 1, - "SCI_ZOOMIN": 1, - "out.": 1, - "ZoomOut": 1, - "SCI_ZOOMOUT": 1, - "executed": 1, - "scicmd": 2, - "Execute": 1, - "execute": 3, - "Binds": 2, - "If": 11, - "then": 15, - "binding": 3, - "removed.": 2, - "invalid": 5, - "unchanged.": 1, - "Valid": 1, - "control": 17, - "Key_Down": 1, - "Key_Up": 1, - "Key_Left": 1, - "Key_Right": 1, - "Key_Home": 1, - "Key_End": 1, - "Key_PageUp": 1, - "Key_PageDown": 1, - "Key_Delete": 1, - "Key_Insert": 1, - "Key_Escape": 1, - "Key_Backspace": 1, - "Key_Tab": 1, - "Key_Return.": 1, - "Keys": 1, - "combination": 2, - "SHIFT": 1, - "CTRL": 1, - "ALT": 1, - "META.": 1, - "setAlternateKey": 3, - "validKey": 3, - "setKey": 3, - "alternate": 7, - "altkey": 3, - "alternateKey": 3, - "currently": 12, - "returned.": 4, - "qkey": 2, - "qaltkey": 2, - "valid": 2, - "QString": 20, - "friend": 10, - "QsciCommandSet": 1, - "*qs": 1, - "cmd": 1, - "*desc": 1, - "bindKey": 1, - "qk": 1, - "scik": 1, - "*qsCmd": 1, - "scikey": 1, - "scialtkey": 1, - "*descCmd": 1, - "Gui": 1, - "LIBCANIH": 2, - "": 2, - "": 2, - "": 1, - "": 1, - "int64": 1, - "//#define": 1, - "dout": 2, - "cout": 2, - "cerr": 1, - "using": 11, - "libcanister": 2, - "//the": 8, - "canmem": 22, - "object": 3, - "generic": 1, - "memory": 14, - "container": 2, - "commonly": 1, - "//throughout": 1, - "canister": 14, - "framework": 1, - "hold": 1, - "uncertain": 1, - "//length": 1, - "which": 14, - "contain": 1, - "null": 3, - "bytes.": 1, - "data": 26, - "raw": 2, - "absolute": 1, - "length": 10, - "//creates": 3, - "unallocated": 1, - "allocsize": 1, - "allocated": 2, - "blank": 1, - "strdata": 1, - "//automates": 1, - "creation": 1, - "zero": 5, - "limited": 2, - "canmems": 1, - "//cleans": 1, - "zeromem": 1, - "//overwrites": 2, - "fragmem": 1, - "fragment": 2, - "notation": 1, - "countlen": 1, - "//counts": 1, - "strings": 1, - "stores": 3, - "trim": 2, - "//removes": 1, - "nulls": 1, - "//returns": 2, - "singleton": 2, - "//contains": 2, - "information": 3, - "about": 6, - "caninfo": 2, - "path": 8, - "//physical": 1, - "internalname": 1, - "//a": 1, - "numfiles": 1, - "files": 6, - "//necessary": 1, - "as": 28, - "canfile": 7, - "//this": 1, - "holds": 2, + "PHP": { + "<": 11, + "php": 14, + "namespace": 28, + "Symfony": 24, + "Component": 24, + "Console": 17, + ";": 1383, + "use": 23, + "Input": 6, + "InputInterface": 4, + "ArgvInput": 2, + "ArrayInput": 3, + "InputDefinition": 2, + "InputOption": 15, + "InputArgument": 3, + "Output": 5, + "OutputInterface": 6, + "ConsoleOutput": 2, + "ConsoleOutputInterface": 2, + "Command": 6, + "HelpCommand": 2, + "ListCommand": 2, + "Helper": 3, + "HelperSet": 3, + "FormatterHelper": 2, + "DialogHelper": 2, + "class": 21, + "Application": 3, + "{": 974, + "private": 24, + "commands": 39, + "wantHelps": 4, + "false": 154, + "runningCommand": 5, + "name": 181, + "version": 8, + "catchExceptions": 4, + "autoExit": 4, "definition": 3, - "within": 4, - "//canister": 1, - "canister*": 1, - "parent": 1, - "//internal": 1, - "//use": 1, - "their": 6, - "own.": 1, - "newline": 2, - "delimited": 2, - "container.": 1, - "TOC": 1, - "info": 2, - "general": 1, - "canfiles": 1, - "recommended": 1, - "programs": 4, - "modify": 1, - "//these": 1, - "directly": 2, - "but": 5, - "enforced.": 1, - "canfile*": 1, - "//if": 1, - "write": 8, - "routines": 1, - "anything": 1, - "//maximum": 1, - "given": 16, - "//time": 1, - "whatever": 1, - "suits": 1, - "your": 12, - "application.": 1, - "cachemax": 2, - "cachecnt": 1, - "//number": 1, - "cache": 2, - "//both": 1, - "initialize": 1, - "physical": 4, - "fspath": 3, - "//destroys": 1, - "after": 18, - "flushing": 1, - "modded": 1, - "buffers": 3, - "course": 2, - "//open": 1, - "//does": 1, - "exist": 2, - "open": 6, - "//close": 1, - "flush": 1, - "all": 11, - "clean": 2, - "//deletes": 1, - "inside": 1, - "delFile": 1, - "//pulls": 1, - "contents": 3, - "disk": 2, - "returns": 4, - "getFile": 1, - "does": 4, - "otherwise": 1, - "overwrites": 1, - "whether": 4, - "succeeded": 2, - "writeFile": 2, - "//get": 1, - "containing": 2, - "//list": 1, - "paths": 1, - "getTOC": 1, - "//brings": 1, - "back": 1, - "limit": 1, - "//important": 1, - "sCFID": 2, - "safe": 4, - "CFID": 2, - "avoid": 1, - "uncaching": 1, - "//really": 1, - "internally": 1, - "harm.": 1, - "cacheclean": 1, - "dFlush": 1, - "Scanner": 16, - "UnicodeCache*": 4, - "unicode_cache": 3, - "unicode_cache_": 10, - "octal_pos_": 5, - "Location": 14, - "harmony_scoping_": 4, - "harmony_modules_": 4, - "Utf16CharacterStream*": 3, - "source_": 7, - "Init": 3, - "has_line_terminator_before_next_": 9, - "SkipWhiteSpace": 4, - "Scan": 5, - "uc32": 19, - "ScanHexNumber": 2, - "expected_length": 4, - "ASSERT": 17, - "prevent": 4, - "overflow": 1, - "c0_": 64, - "HexValue": 2, - "PushBack": 8, - "Advance": 44, - "STATIC_ASSERT": 5, - "Token": 212, - "NUM_TOKENS": 1, - "byte": 6, - "one_char_tokens": 2, - "ILLEGAL": 120, - "LPAREN": 2, - "RPAREN": 2, - "COMMA": 2, - "COLON": 2, - "SEMICOLON": 2, - "CONDITIONAL": 2, - "LBRACK": 2, - "RBRACK": 2, - "LBRACE": 2, - "RBRACE": 2, - "BIT_NOT": 2, - "e": 15, - "Value": 24, - "Next": 3, - "current_": 2, - "has_multiline_comment_before_next_": 5, - "": 19, - "token": 64, - "": 1, - "pos": 12, - "source_pos": 10, - "next_.token": 3, - "next_.location.beg_pos": 3, - "next_.location.end_pos": 4, - "current_.token": 4, - "IsByteOrderMark": 2, - "xFEFF": 1, - "xFFFE": 1, - "start_position": 2, - "IsWhiteSpace": 2, - "IsLineTerminator": 6, - "SkipSingleLineComment": 6, - "continue": 2, - "undo": 4, - "WHITESPACE": 6, - "SkipMultiLineComment": 3, - "ch": 5, - "ScanHtmlComment": 3, - "LT": 2, - "next_.literal_chars": 13, - "ScanString": 3, - "LTE": 1, - "ASSIGN_SHL": 1, - "SHL": 1, - "GTE": 1, - "ASSIGN_SAR": 1, - "ASSIGN_SHR": 1, - "SHR": 1, - "SAR": 1, - "GT": 1, - "EQ_STRICT": 1, - "EQ": 1, - "ASSIGN": 1, - "NE_STRICT": 1, - "NE": 1, - "NOT": 3, - "INC": 1, - "ASSIGN_ADD": 1, - "ADD": 1, - "DEC": 1, - "ASSIGN_SUB": 1, - "SUB": 1, - "ASSIGN_MUL": 1, - "MUL": 1, - "ASSIGN_MOD": 1, - "MOD": 1, - "ASSIGN_DIV": 1, - "DIV": 1, - "AND": 1, - "ASSIGN_BIT_AND": 1, - "BIT_AND": 1, - "OR": 1, - "ASSIGN_BIT_OR": 1, - "BIT_OR": 1, - "ASSIGN_BIT_XOR": 1, - "BIT_XOR": 1, - "IsDecimalDigit": 2, - "ScanNumber": 3, - "PERIOD": 1, - "IsIdentifierStart": 2, - "ScanIdentifierOrKeyword": 2, - "EOS": 1, - "SeekForward": 4, - "current_pos": 4, - "ASSERT_EQ": 1, - "ScanEscape": 2, - "IsCarriageReturn": 2, - "IsLineFeed": 2, - "fall": 2, - "through": 4, - "u": 9, - "xx": 2, - "xxx": 1, - "immediately": 1, - "octal": 1, - "escape": 1, - "quote": 3, - "consume": 2, - "LiteralScope": 4, - "literal": 2, - ".": 16, - "X": 2, - "E": 3, - "l": 1, - "w": 1, - "keyword": 1, - "Unescaped": 1, - "in_character_class": 2, - "AddLiteralCharAdvance": 3, - "literal.Complete": 2, - "ScanLiteralUnicodeEscape": 3, - "": 4, - "DEFAULT_DELIMITER": 1, - "CsvStreamer": 5, - "ofstream": 1, - "File": 1, - "vector": 16, - "row_buffer": 1, - "Buffer": 10, - "row": 12, - "flushed/written": 1, - "Number": 8, - "columns": 2, - "rows": 3, - "records": 2, - "including": 2, - "header": 7, - "delimiter": 2, - "Delimiter": 1, - "comma": 2, - "sanitize": 1, - "Returns": 2, - "ready": 1, - "into": 6, - "Empty": 1, - "CSV": 4, - "streamer...": 1, - "writing": 2, - "Same": 1, - "...": 1, - "Opens": 3, - "path/name": 3, - "Ensures": 1, - "closed": 1, - "saved": 1, - "delimiting": 1, - "add_field": 1, - "still": 3, - "adds": 1, - "field": 5, - "save_fields": 1, - "Call": 2, - "save": 1, - "writes": 2, - "append": 8, - "Appends": 5, - "quoted": 1, - "leading/trailing": 1, - "spaces": 3, - "trimmed": 1, - "Like": 1, - "specify": 1, - "either": 4, - "keep": 1, - "writeln": 1, - "Flushes": 1, - "what": 2, - "buffer": 9, - "Saves": 1, - "closes": 1, - "field_count": 1, - "Gets": 2, - "row_count": 1, - "PROTOBUF_protocol_2dbuffer_2eproto__INCLUDED": 3, - "GOOGLE_PROTOBUF_VERSION": 1, - "generated": 2, - "newer": 2, - "protoc": 2, - "incompatible": 2, - "Protocol": 2, - "headers.": 3, - "update": 1, - "GOOGLE_PROTOBUF_MIN_PROTOC_VERSION": 1, - "older": 1, - "regenerate": 1, - "protoc.": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "*this": 1, - "UnknownFieldSet": 2, - "UnknownFieldSet*": 1, - "GetCachedSize": 1, - "clear_name": 2, - "release_name": 2, - "set_allocated_name": 2, - "set_has_name": 7, - "clear_has_name": 5, - "mutable": 1, - "*name_": 1, - "assign": 3, - "temp": 2, - "SWIG": 2, - "V8_DECLARE_ONCE": 1, - "init_once": 2, - "LazyMutex": 1, - "entropy_mutex": 1, - "LAZY_MUTEX_INITIALIZER": 1, - "entropy_source": 4, - "FlagList": 1, - "EnforceFlagImplications": 1, - "Isolate": 9, - "CurrentPerIsolateThreadData": 4, - "EnterDefaultIsolate": 1, - "thread_id": 1, - ".Equals": 1, - "ThreadId": 1, - "Current": 5, - "IsDefaultIsolate": 1, - "ElementsAccessor": 2, - "LOperand": 2, - "TearDownCaches": 1, - "RegisteredExtension": 1, - "UnregisterAll": 1, - "OS": 3, - "seed_random": 2, - "uint32_t*": 7, - "FLAG_random_seed": 2, - "val": 3, - "ScopedLock": 1, - "entropy_mutex.Pointer": 1, - "random": 1, - "random_base": 3, - "xFFFF": 2, - "FFFF": 1, - "StackFrame": 1, - "IsGlobalContext": 1, - "ByteArray*": 1, - "seed": 2, - "random_seed": 1, - "": 1, - "GetDataStartAddress": 1, - "private_random_seed": 1, - "FLAG_use_idle_notification": 1, - "HEAP": 1, - "Lazy": 1, - "init.": 1, - "Add": 1, - "Remove": 1, - "HandleScopeImplementer*": 1, - "handle_scope_implementer": 5, - "CallDepthIsZero": 1, - "IncrementCallDepth": 1, - "DecrementCallDepth": 1, - "union": 1, - "double_value": 1, - "uint64_t": 8, - "uint64_t_value": 1, - "double_int_union": 2, - "random_bits": 2, - "binary_million": 3, - "r.double_value": 3, - "r.uint64_t_value": 1, - "HeapNumber": 1, - "set_value": 1, - "SetUp": 4, - "FLAG_crankshaft": 1, - "Serializer": 1, - "enabled": 4, - "CPU": 5, - "SupportsCrankshaft": 1, - "PostSetUp": 1, - "RuntimeProfiler": 1, - "GlobalSetUp": 1, - "FLAG_stress_compaction": 1, - "FLAG_force_marking_deque_overflows": 1, - "FLAG_gc_global": 1, - "FLAG_max_new_space_size": 1, - "kPageSizeBits": 1, - "SetUpCaches": 1, - "SetUpJSCallerSavedCodeData": 1, - "SamplerRegistry": 1, - "ExternalReference": 1, - "CallOnce": 1, - "endl": 1, - "///": 843, - "mainpage": 1, - "library": 14, - "Broadcom": 3, - "BCM": 14, - "Raspberry": 6, - "Pi": 5, - "RPi": 17, - "It": 7, - "provides": 3, - "access": 17, - "GPIO": 87, - "IO": 2, - "functions": 19, - "chip": 9, - "allowing": 3, - "pins": 40, - "pin": 90, - "IDE": 4, - "plug": 3, - "board": 2, - "so": 2, - "interface": 9, - "various": 4, - "external": 3, - "devices.": 1, - "reading": 3, - "digital": 2, - "inputs": 2, - "setting": 2, - "outputs": 1, - "SPI": 44, - "I2C": 29, - "accessing": 2, - "timers.": 1, - "Pin": 65, - "event": 3, - "detection": 2, - "supported": 3, - "polling": 1, - "interrupts": 1, - "compatible": 1, - "installs": 1, - "non": 2, - "shared": 2, - "Linux": 2, - "based": 4, - "distro": 1, - "clearly": 1, - "except": 2, - "another": 1, - "package": 1, - "documentation": 3, - "refers": 1, - "downloaded": 1, - "http": 11, - "//www.airspayce.com/mikem/bcm2835/bcm2835": 1, - "tar.gz": 1, - "You": 9, - "find": 2, - "latest": 2, - "//www.airspayce.com/mikem/bcm2835": 1, - "Several": 1, - "provided.": 1, - "Based": 1, - "//elinux.org/RPi_Low": 1, - "level_peripherals": 1, - "//www.raspberrypi.org/wp": 1, - "content/uploads/2012/02/BCM2835": 1, - "ARM": 5, - "Peripherals.pdf": 1, - "//www.scribd.com/doc/101830961/GPIO": 2, - "Pads": 3, - "Control2": 2, - "also": 3, - "online": 1, - "help": 1, - "discussion": 1, - "//groups.google.com/group/bcm2835": 1, - "group": 23, - "questions": 1, - "discussions": 1, - "topic.": 1, - "Do": 1, - "contact": 1, - "author": 3, - "unless": 1, - "discuss": 1, - "commercial": 1, - "licensing.": 1, - "Tested": 1, - "debian6": 1, - "wheezy": 3, - "raspbian": 3, - "Occidentalisv01": 2, - "CAUTION": 1, - "been": 14, - "observed": 1, - "detect": 3, - "enables": 3, - "such": 4, - "bcm2835_gpio_len": 5, - "pulled": 1, - "LOW": 8, - "cause": 1, - "temporary": 1, - "hangs": 1, - "Occidentalisv01.": 1, - "Reason": 1, - "yet": 1, - "determined": 1, - "suspect": 1, - "handler": 1, - "hitting": 1, - "hard": 1, - "loop": 2, - "those": 3, - "OSs.": 1, - "friends": 2, - "make": 6, - "disable": 2, - "bcm2835_gpio_cler_len": 1, - "use.": 1, - "par": 9, - "Installation": 1, - "consists": 1, - "single": 2, - "installed": 1, - "usual": 3, - "places": 1, - "code": 12, - "#": 1, - "download": 2, - "say": 1, - "bcm2835": 7, - "xx.tar.gz": 2, - "tar": 1, - "zxvf": 1, - "cd": 1, - "./configure": 1, - "sudo": 2, - "endcode": 2, - "Physical": 21, - "Addresses": 6, - "bcm2835_peri_read": 3, - "bcm2835_peri_write": 3, - "bcm2835_peri_set_bits": 2, - "level": 10, - "peripheral": 14, - "register": 17, - "functions.": 4, - "They": 1, - "designed": 3, - "addresses": 4, - "described": 1, - "section": 6, - "BCM2835": 2, - "Peripherals": 1, - "manual.": 1, - "FFFFFF": 1, - "peripherals.": 1, - "bus": 4, - "peripherals": 2, - "map": 3, - "onto": 1, - "address": 13, - "starting": 1, - "E000000.": 1, - "Thus": 1, - "advertised": 1, - "manual": 8, - "Ennnnnn": 1, - "available": 6, - "nnnnnn.": 1, - "registers": 12, - "following": 2, - "externals": 1, - "bcm2835_gpio": 2, - "bcm2835_pwm": 2, - "bcm2835_clk": 2, - "bcm2835_pads": 2, - "bcm2835_spio0": 1, - "bcm2835_st": 1, - "bcm2835_bsc0": 1, - "bcm2835_bsc1": 1, - "Numbering": 1, - "numbering": 1, - "inconsistent": 1, - "underlying": 4, - "numbering.": 1, - "//elinux.org/RPi_BCM2835_GPIOs": 1, - "some": 4, - "well": 1, - "power": 1, - "ground": 1, - "pins.": 1, - "Not": 4, - "header.": 1, - "Version": 40, - "P5": 6, - "connector": 1, - "V": 2, - "Gnd.": 1, - "passed": 4, - "_not_": 1, - "number.": 1, - "There": 1, - "symbolic": 1, - "definitions": 3, - "convenience.": 1, - "See": 7, - "ref": 32, - "RPiGPIOPin.": 22, - "Pins": 2, - "bcm2835_spi_*": 1, - "allow": 5, - "SPI0": 17, - "send": 3, - "received": 3, - "Serial": 3, - "Peripheral": 6, - "Interface": 2, - "For": 6, - "more": 4, - "see": 14, - "//en.wikipedia.org/wiki/Serial_Peripheral_Interface_Bus": 1, - "When": 12, - "bcm2835_spi_begin": 3, - "changes": 2, - "bahaviour": 1, - "behaviour": 1, - "order": 14, - "support": 4, - "SPI.": 1, - "While": 1, - "bcm2835_spi_gpio_write": 1, - "bcm2835_spi_end": 4, - "revert": 1, - "configured": 1, - "controled": 1, - "bcm2835_gpio_*": 1, - "calls.": 1, - "P1": 56, - "MOSI": 8, - "MISO": 6, - "CLK": 6, - "CE0": 5, - "CE1": 6, - "bcm2835_i2c_*": 2, - "BSC": 10, - "generically": 1, - "referred": 1, - "I": 4, - "//en.wikipedia.org/wiki/I": 1, - "C2": 1, - "B2C": 1, - "V2": 2, - "SDA": 3, - "SLC": 1, - "Real": 1, - "Time": 1, - "performance": 2, - "constraints": 2, - "i.e.": 1, - "they": 2, - "Such": 1, - "part": 1, - "kernel": 4, - "usually": 2, - "subject": 1, - "paging": 1, - "swapping": 2, - "things": 1, - "besides": 1, - "running": 1, - "program.": 1, - "means": 8, - "expect": 2, - "get": 5, - "time": 10, - "timing": 3, - "programs.": 1, - "In": 2, - "particular": 1, - "guarantee": 1, - "bcm2835_delay": 5, - "bcm2835_delayMicroseconds": 6, - "exactly": 2, - "requested.": 1, - "fact": 2, - "depending": 1, - "activity": 1, - "host": 1, - "etc": 1, - "might": 1, - "significantly": 1, - "longer": 1, - "delay": 9, - "times": 2, - "asked": 1, - "for.": 1, - "So": 1, - "dont": 1, - "request.": 1, - "Arjan": 2, - "reports": 1, - "sched_param": 1, - "sp": 4, - "sp.sched_priority": 1, - "sched_get_priority_max": 1, - "SCHED_FIFO": 2, - "sched_setscheduler": 1, - "mlockall": 1, - "MCL_CURRENT": 1, - "MCL_FUTURE": 1, - "Open": 2, - "Source": 2, - "Licensing": 2, - "GPL": 2, - "appropriate": 7, - "option": 1, - "share": 2, - "application": 2, - "everyone": 1, - "distribute": 1, - "give": 2, - "them": 1, - "who": 1, - "uses": 4, - "wish": 2, - "software": 1, - "under": 2, - "contribute": 1, - "community": 1, - "accordance": 1, - "distributed.": 1, - "//www.gnu.org/copyleft/gpl.html": 1, - "COPYING": 1, - "Acknowledgements": 1, - "Some": 1, - "inspired": 2, - "Dom": 1, - "Gert.": 1, - "Alan": 1, - "Barr.": 1, - "Revision": 1, - "History": 1, - "Initial": 1, - "release": 1, - "Minor": 1, - "bug": 1, - "fixes": 1, - "Added": 11, - "bcm2835_spi_transfern": 3, - "Fixed": 4, - "problem": 2, - "prevented": 1, - "used.": 2, - "Reported": 5, - "David": 1, - "Robinson.": 1, - "bcm2835_close": 4, - "deinit": 1, - "library.": 3, - "Suggested": 1, - "sar": 1, - "Ortiz": 1, - "Document": 1, - "Functions": 1, - "bcm2835_gpio_ren": 3, - "bcm2835_gpio_fen": 3, - "bcm2835_gpio_hen": 3, - "bcm2835_gpio_aren": 3, - "bcm2835_gpio_afen": 3, - "now": 4, - "specified.": 1, - "Other": 1, - "were": 1, - "already": 1, - "previously": 10, - "stay": 1, - "enabled.": 1, - "bcm2835_gpio_clr_ren": 2, - "bcm2835_gpio_clr_fen": 2, - "bcm2835_gpio_clr_hen": 2, - "bcm2835_gpio_clr_len": 2, - "bcm2835_gpio_clr_aren": 2, - "bcm2835_gpio_clr_afen": 2, - "enable": 3, - "individual": 1, - "suggested": 3, - "Andreas": 1, - "Sundstrom.": 1, - "bcm2835_spi_transfernb": 2, - "read": 21, - "write.": 1, - "Improvements": 3, - "barrier": 3, - "maddin.": 1, - "contributed": 1, - "mikew": 1, - "noticed": 1, - "mallocing": 1, - "mmaps": 1, - "/dev/mem.": 1, - "ve": 4, - "removed": 1, - "mallocs": 1, - "frees": 1, - "found": 1, - "nanosleep": 7, - "takes": 1, - "least": 2, - "us.": 1, - "link": 3, - "version.": 1, - "doc": 1, - "Also": 1, - "added": 2, - "define": 2, - "passwrd": 1, - "Gert": 1, - "says": 1, - "pad": 4, - "settings.": 1, - "Changed": 1, - "collisions": 1, - "wiringPi.": 1, - "Macros": 2, - "delayMicroseconds": 3, - "disabled": 2, - "defining": 1, - "BCM2835_NO_DELAY_COMPATIBILITY": 2, - "incorrect": 2, - "Hardware": 1, - "pointers": 2, - "initialisation": 2, - "externally": 1, - "bcm2835_spi0.": 1, - "Now": 4, - "compiles": 1, - "even": 2, - "CLOCK_MONOTONIC_RAW": 1, - "instead.": 1, - "errors": 1, - "divider": 15, - "frequencies": 2, - "MHz": 14, - "clock.": 6, - "Ben": 1, - "Simpson.": 1, - "examples": 1, - "Mark": 5, - "Wolfe.": 1, - "bcm2835_gpio_set_multi": 2, - "bcm2835_gpio_clr_multi": 2, - "bcm2835_gpio_write_multi": 4, - "mask": 20, - "once.": 1, - "Requested": 2, - "Sebastian": 2, - "Loncar.": 2, - "bcm2835_gpio_write_mask.": 1, - "Changes": 1, - "timer": 2, - "counter": 1, - "clock_gettime": 1, - "improved": 1, - "accuracy.": 1, - "No": 2, - "lrt": 1, - "now.": 1, - "Contributed": 1, - "van": 1, - "Vught.": 1, - "Removed": 1, - "inlines": 1, - "patch": 1, - "since": 3, - "don": 1, - "seem": 1, - "work": 1, - "everywhere.": 1, - "olly.": 1, - "Patch": 2, - "Dootson": 2, - "/dev/mem": 4, - "granted.": 1, - "susceptible": 1, - "bit": 19, - "overruns.": 1, - "courtesy": 1, - "Jeremy": 1, - "Mortis.": 1, - "BCM2835_GPFEN0": 2, - "broke": 1, - "ability": 1, - "falling": 4, - "edge": 8, - "events.": 1, - "Dootson.": 2, - "bcm2835_i2c_set_baudrate": 2, - "bcm2835_i2c_read_register_rs.": 1, - "bcm2835_i2c_read": 4, - "bcm2835_i2c_write": 4, - "fix": 1, - "ocasional": 1, - "reads": 2, - "completing.": 1, - "Patched": 1, - "atched": 1, - "his": 1, - "submitted": 1, - "load": 1, - "processes.": 1, - "Updated": 1, - "distribution": 1, - "details": 1, - "airspayce.com": 1, - "missing": 1, - "unmapmem": 1, - "pads": 7, - "leak.": 1, - "Hartmut": 1, - "Henkel.": 1, - "Mike": 1, - "McCauley": 1, - "mikem@airspayce.com": 1, - "DO": 1, - "CONTACT": 1, - "THE": 2, - "AUTHOR": 1, - "DIRECTLY": 1, - "USE": 1, - "LISTS": 1, - "BCM2835_H": 3, - "": 2, - "defgroup": 7, - "constants": 1, - "Constants": 1, - "passing": 1, - "values": 3, - "here": 1, - "@": 14, - "HIGH": 12, - "volts": 2, - "pin.": 21, - "Speed": 1, - "core": 1, - "clock": 21, - "core_clk": 1, - "BCM2835_CORE_CLK_HZ": 1, - "Base": 17, - "Address": 10, - "BCM2835_PERI_BASE": 9, - "System": 10, - "Timer": 9, - "BCM2835_ST_BASE": 1, - "BCM2835_GPIO_PADS": 2, - "Clock/timer": 1, - "BCM2835_CLOCK_BASE": 1, - "BCM2835_GPIO_BASE": 6, - "BCM2835_SPI0_BASE": 1, - "BSC0": 2, - "BCM2835_BSC0_BASE": 1, - "PWM": 2, - "BCM2835_GPIO_PWM": 1, - "C000": 1, - "BSC1": 2, - "BCM2835_BSC1_BASE": 1, - "ST": 1, - "registers.": 10, - "Available": 8, - "bcm2835_init": 11, - "volatile": 13, - "*bcm2835_st": 1, - "*bcm2835_gpio": 1, - "*bcm2835_pwm": 1, - "*bcm2835_clk": 1, - "PADS": 1, - "*bcm2835_pads": 1, - "*bcm2835_spi0": 1, - "*bcm2835_bsc0": 1, - "*bcm2835_bsc1": 1, - "Size": 2, - "BCM2835_PAGE_SIZE": 1, - "*1024": 2, - "BCM2835_BLOCK_SIZE": 1, - "offsets": 2, - "BCM2835_GPIO_BASE.": 1, - "Offsets": 1, - "bytes": 29, - "per": 3, - "Register": 1, - "View": 1, - "BCM2835_GPFSEL0": 1, - "Function": 8, - "BCM2835_GPFSEL1": 1, - "BCM2835_GPFSEL2": 1, - "BCM2835_GPFSEL3": 1, - "BCM2835_GPFSEL4": 1, - "BCM2835_GPFSEL5": 1, - "BCM2835_GPSET0": 1, - "Output": 6, - "Set": 2, - "BCM2835_GPSET1": 1, - "BCM2835_GPCLR0": 1, - "BCM2835_GPCLR1": 1, - "BCM2835_GPLEV0": 1, - "Level": 2, - "BCM2835_GPLEV1": 1, - "BCM2835_GPEDS0": 1, - "Event": 11, - "Detect": 35, - "Status": 6, - "BCM2835_GPEDS1": 1, - "BCM2835_GPREN0": 1, - "Rising": 8, - "Edge": 16, - "Enable": 38, - "BCM2835_GPREN1": 1, - "Falling": 8, - "BCM2835_GPFEN1": 1, - "BCM2835_GPHEN0": 1, - "High": 4, - "BCM2835_GPHEN1": 1, - "BCM2835_GPLEN0": 1, - "Low": 5, - "BCM2835_GPLEN1": 1, - "BCM2835_GPAREN0": 1, - "Async.": 4, - "BCM2835_GPAREN1": 1, - "BCM2835_GPAFEN0": 1, - "BCM2835_GPAFEN1": 1, - "BCM2835_GPPUD": 1, - "Pull": 11, - "up/down": 10, - "BCM2835_GPPUDCLK0": 1, - "Clock": 11, - "BCM2835_GPPUDCLK1": 1, - "bcm2835PortFunction": 1, - "Port": 1, - "select": 9, - "modes": 1, - "bcm2835_gpio_fsel": 2, - "BCM2835_GPIO_FSEL_INPT": 1, - "b000": 1, - "Input": 2, - "BCM2835_GPIO_FSEL_OUTP": 1, - "b001": 1, - "BCM2835_GPIO_FSEL_ALT0": 1, - "b100": 1, - "Alternate": 6, - "BCM2835_GPIO_FSEL_ALT1": 1, - "b101": 1, - "BCM2835_GPIO_FSEL_ALT2": 1, - "b110": 1, - "BCM2835_GPIO_FSEL_ALT3": 1, - "b111": 2, - "BCM2835_GPIO_FSEL_ALT4": 1, - "b011": 1, - "BCM2835_GPIO_FSEL_ALT5": 1, - "b010": 1, - "BCM2835_GPIO_FSEL_MASK": 1, - "bits": 11, - "bcm2835FunctionSelect": 2, - "bcm2835PUDControl": 4, - "Pullup/Pulldown": 1, - "bcm2835_gpio_pud": 5, - "BCM2835_GPIO_PUD_OFF": 1, - "b00": 1, - "Off": 3, - "pull": 1, - "BCM2835_GPIO_PUD_DOWN": 1, - "b01": 1, - "Down": 1, - "BCM2835_GPIO_PUD_UP": 1, - "b10": 1, - "Up": 1, - "Pad": 11, - "BCM2835_PADS_GPIO_0_27": 1, - "BCM2835_PADS_GPIO_28_45": 1, - "BCM2835_PADS_GPIO_46_53": 1, - "Control": 6, - "masks": 1, - "BCM2835_PAD_PASSWRD": 1, - "A": 7, - "Password": 1, - "BCM2835_PAD_SLEW_RATE_UNLIMITED": 1, - "Slew": 1, - "rate": 3, - "unlimited": 1, - "BCM2835_PAD_HYSTERESIS_ENABLED": 1, - "Hysteresis": 1, - "BCM2835_PAD_DRIVE_2mA": 1, - "mA": 8, - "drive": 8, - "BCM2835_PAD_DRIVE_4mA": 1, - "BCM2835_PAD_DRIVE_6mA": 1, - "BCM2835_PAD_DRIVE_8mA": 1, - "BCM2835_PAD_DRIVE_10mA": 1, - "BCM2835_PAD_DRIVE_12mA": 1, - "BCM2835_PAD_DRIVE_14mA": 1, - "BCM2835_PAD_DRIVE_16mA": 1, - "bcm2835PadGroup": 4, - "specification": 1, - "bcm2835_gpio_pad": 2, - "BCM2835_PAD_GROUP_GPIO_0_27": 1, - "BCM2835_PAD_GROUP_GPIO_28_45": 1, - "BCM2835_PAD_GROUP_GPIO_46_53": 1, - "Numbers": 1, - "Here": 1, - "terms": 4, - "numbers.": 1, - "These": 6, - "requiring": 1, - "bin": 1, - "connected": 1, - "adopt": 1, - "function.": 3, - "slightly": 1, - "pinouts": 1, - "these": 1, - "RPI_V2_*.": 1, - "At": 1, - "bootup": 1, - "UART0_TXD": 3, - "UART0_RXD": 3, - "ie": 3, - "alt0": 1, - "respectively": 1, - "dedicated": 1, - "cant": 1, - "controlled": 1, - "independently": 1, - "RPI_GPIO_P1_03": 6, - "RPI_GPIO_P1_05": 6, - "RPI_GPIO_P1_07": 1, - "RPI_GPIO_P1_08": 1, - "defaults": 4, - "alt": 4, - "RPI_GPIO_P1_10": 1, - "RPI_GPIO_P1_11": 1, - "RPI_GPIO_P1_12": 1, - "RPI_GPIO_P1_13": 1, - "RPI_GPIO_P1_15": 1, - "RPI_GPIO_P1_16": 1, - "RPI_GPIO_P1_18": 1, - "RPI_GPIO_P1_19": 1, - "RPI_GPIO_P1_21": 1, - "RPI_GPIO_P1_22": 1, - "RPI_GPIO_P1_23": 1, - "RPI_GPIO_P1_24": 1, - "RPI_GPIO_P1_26": 1, - "RPI_V2_GPIO_P1_03": 1, - "RPI_V2_GPIO_P1_05": 1, - "RPI_V2_GPIO_P1_07": 1, - "RPI_V2_GPIO_P1_08": 1, - "RPI_V2_GPIO_P1_10": 1, - "RPI_V2_GPIO_P1_11": 1, - "RPI_V2_GPIO_P1_12": 1, - "RPI_V2_GPIO_P1_13": 1, - "RPI_V2_GPIO_P1_15": 1, - "RPI_V2_GPIO_P1_16": 1, - "RPI_V2_GPIO_P1_18": 1, - "RPI_V2_GPIO_P1_19": 1, - "RPI_V2_GPIO_P1_21": 1, - "RPI_V2_GPIO_P1_22": 1, - "RPI_V2_GPIO_P1_23": 1, - "RPI_V2_GPIO_P1_24": 1, - "RPI_V2_GPIO_P1_26": 1, - "RPI_V2_GPIO_P5_03": 1, - "RPI_V2_GPIO_P5_04": 1, - "RPI_V2_GPIO_P5_05": 1, - "RPI_V2_GPIO_P5_06": 1, - "RPiGPIOPin": 1, - "BCM2835_SPI0_CS": 1, - "Master": 12, - "BCM2835_SPI0_FIFO": 1, - "TX": 5, - "RX": 7, - "FIFOs": 1, - "BCM2835_SPI0_CLK": 1, - "Divider": 2, - "BCM2835_SPI0_DLEN": 1, - "Data": 9, - "Length": 2, - "BCM2835_SPI0_LTOH": 1, - "LOSSI": 1, - "TOH": 1, - "BCM2835_SPI0_DC": 1, - "DMA": 3, - "DREQ": 1, - "Controls": 1, - "BCM2835_SPI0_CS_LEN_LONG": 1, - "Long": 1, - "Lossi": 2, - "DMA_LEN": 1, - "BCM2835_SPI0_CS_DMA_LEN": 1, - "BCM2835_SPI0_CS_CSPOL2": 1, - "Chip": 9, - "Polarity": 5, - "BCM2835_SPI0_CS_CSPOL1": 1, - "BCM2835_SPI0_CS_CSPOL0": 1, - "BCM2835_SPI0_CS_RXF": 1, - "RXF": 2, - "FIFO": 25, - "Full": 1, - "BCM2835_SPI0_CS_RXR": 1, - "RXR": 3, - "Reading": 1, - "full": 9, - "BCM2835_SPI0_CS_TXD": 1, - "TXD": 2, - "accept": 2, - "BCM2835_SPI0_CS_RXD": 1, - "RXD": 2, - "contains": 2, - "BCM2835_SPI0_CS_DONE": 1, - "Done": 3, - "transfer": 8, - "BCM2835_SPI0_CS_TE_EN": 1, - "Unused": 2, - "BCM2835_SPI0_CS_LMONO": 1, - "BCM2835_SPI0_CS_LEN": 1, - "LEN": 1, - "LoSSI": 1, - "BCM2835_SPI0_CS_REN": 1, - "REN": 1, - "Read": 3, - "BCM2835_SPI0_CS_ADCS": 1, - "ADCS": 1, - "Automatically": 1, - "Deassert": 1, - "BCM2835_SPI0_CS_INTR": 1, - "INTR": 1, - "Interrupt": 5, - "BCM2835_SPI0_CS_INTD": 1, - "INTD": 1, - "BCM2835_SPI0_CS_DMAEN": 1, - "DMAEN": 1, - "BCM2835_SPI0_CS_TA": 1, - "Transfer": 3, - "Active": 2, - "BCM2835_SPI0_CS_CSPOL": 1, - "BCM2835_SPI0_CS_CLEAR": 1, - "BCM2835_SPI0_CS_CLEAR_RX": 1, - "BCM2835_SPI0_CS_CLEAR_TX": 1, - "BCM2835_SPI0_CS_CPOL": 1, - "BCM2835_SPI0_CS_CPHA": 1, - "Phase": 1, - "BCM2835_SPI0_CS_CS": 1, - "bcm2835SPIBitOrder": 3, - "Bit": 1, - "Specifies": 5, - "ordering": 4, - "bcm2835_spi_setBitOrder": 2, - "BCM2835_SPI_BIT_ORDER_LSBFIRST": 1, - "LSB": 1, - "First": 2, - "BCM2835_SPI_BIT_ORDER_MSBFIRST": 1, - "MSB": 1, - "Specify": 2, - "bcm2835_spi_setDataMode": 2, - "BCM2835_SPI_MODE0": 1, - "CPOL": 4, - "CPHA": 4, - "BCM2835_SPI_MODE1": 1, - "BCM2835_SPI_MODE2": 1, - "BCM2835_SPI_MODE3": 1, - "bcm2835SPIMode": 2, - "bcm2835SPIChipSelect": 3, - "BCM2835_SPI_CS0": 1, - "BCM2835_SPI_CS1": 1, - "BCM2835_SPI_CS2": 1, - "CS1": 1, - "CS2": 1, - "asserted": 3, - "BCM2835_SPI_CS_NONE": 1, - "CS": 5, - "yourself": 1, - "bcm2835SPIClockDivider": 3, - "generate": 2, - "Figures": 1, - "below": 1, - "period": 1, - "frequency.": 1, - "divided": 2, - "nominal": 2, - "reported": 2, - "contrary": 1, - "shown": 1, - "confirmed": 1, - "measurement": 2, - "BCM2835_SPI_CLOCK_DIVIDER_65536": 1, - "us": 12, - "kHz": 10, - "BCM2835_SPI_CLOCK_DIVIDER_32768": 1, - "BCM2835_SPI_CLOCK_DIVIDER_16384": 1, - "BCM2835_SPI_CLOCK_DIVIDER_8192": 1, - "/51757813kHz": 1, - "BCM2835_SPI_CLOCK_DIVIDER_4096": 1, - "BCM2835_SPI_CLOCK_DIVIDER_2048": 1, - "BCM2835_SPI_CLOCK_DIVIDER_1024": 1, - "BCM2835_SPI_CLOCK_DIVIDER_512": 1, - "BCM2835_SPI_CLOCK_DIVIDER_256": 1, - "BCM2835_SPI_CLOCK_DIVIDER_128": 1, - "ns": 9, - "BCM2835_SPI_CLOCK_DIVIDER_64": 1, - "BCM2835_SPI_CLOCK_DIVIDER_32": 1, - "BCM2835_SPI_CLOCK_DIVIDER_16": 1, - "BCM2835_SPI_CLOCK_DIVIDER_8": 1, - "BCM2835_SPI_CLOCK_DIVIDER_4": 1, - "BCM2835_SPI_CLOCK_DIVIDER_2": 1, - "fastest": 1, - "BCM2835_SPI_CLOCK_DIVIDER_1": 1, - "same": 3, - "/65536": 1, - "BCM2835_BSC_C": 1, - "BCM2835_BSC_S": 1, - "BCM2835_BSC_DLEN": 1, - "BCM2835_BSC_A": 1, - "Slave": 1, - "BCM2835_BSC_FIFO": 1, - "BCM2835_BSC_DIV": 1, - "BCM2835_BSC_DEL": 1, - "Delay": 4, - "BCM2835_BSC_CLKT": 1, - "Stretch": 2, - "Timeout": 2, - "BCM2835_BSC_C_I2CEN": 1, - "BCM2835_BSC_C_INTR": 1, - "BCM2835_BSC_C_INTT": 1, - "BCM2835_BSC_C_INTD": 1, - "DONE": 2, - "BCM2835_BSC_C_ST": 1, - "Start": 4, - "BCM2835_BSC_C_CLEAR_1": 1, - "BCM2835_BSC_C_CLEAR_2": 1, - "BCM2835_BSC_C_READ": 1, - "BCM2835_BSC_S_CLKT": 1, - "stretch": 1, - "BCM2835_BSC_S_ERR": 1, - "ACK": 1, - "BCM2835_BSC_S_RXF": 1, - "BCM2835_BSC_S_TXE": 1, - "TXE": 1, - "BCM2835_BSC_S_RXD": 1, - "BCM2835_BSC_S_TXD": 1, - "BCM2835_BSC_S_RXR": 1, - "BCM2835_BSC_S_TXW": 1, - "TXW": 1, - "BCM2835_BSC_S_DONE": 1, - "BCM2835_BSC_S_TA": 1, - "BCM2835_BSC_FIFO_SIZE": 1, - "bcm2835I2CClockDivider": 3, - "BCM2835_I2C_CLOCK_DIVIDER_2500": 1, - "BCM2835_I2C_CLOCK_DIVIDER_626": 1, - "BCM2835_I2C_CLOCK_DIVIDER_150": 1, - "reset": 1, - "BCM2835_I2C_CLOCK_DIVIDER_148": 1, - "bcm2835I2CReasonCodes": 5, - "reason": 4, - "codes": 1, - "BCM2835_I2C_REASON_OK": 1, - "Success": 1, - "BCM2835_I2C_REASON_ERROR_NACK": 1, - "Received": 4, - "NACK": 1, - "BCM2835_I2C_REASON_ERROR_CLKT": 1, - "BCM2835_I2C_REASON_ERROR_DATA": 1, - "sent": 1, - "BCM2835_ST_CS": 1, - "Control/Status": 1, - "BCM2835_ST_CLO": 1, - "Counter": 4, - "Lower": 2, - "BCM2835_ST_CHI": 1, - "Upper": 1, - "BCM2835_PWM_CONTROL": 1, - "BCM2835_PWM_STATUS": 1, - "BCM2835_PWM0_RANGE": 1, - "BCM2835_PWM0_DATA": 1, - "BCM2835_PWM1_RANGE": 1, - "BCM2835_PWM1_DATA": 1, - "BCM2835_PWMCLK_CNTL": 1, - "BCM2835_PWMCLK_DIV": 1, - "BCM2835_PWM1_MS_MODE": 1, - "Run": 4, - "MS": 2, - "BCM2835_PWM1_USEFIFO": 1, - "BCM2835_PWM1_REVPOLAR": 1, - "Reverse": 2, - "polarity": 3, - "BCM2835_PWM1_OFFSTATE": 1, - "Ouput": 2, - "BCM2835_PWM1_REPEATFF": 1, - "Repeat": 2, - "empty": 2, - "BCM2835_PWM1_SERIAL": 1, - "serial": 2, - "BCM2835_PWM1_ENABLE": 1, - "Channel": 2, - "BCM2835_PWM0_MS_MODE": 1, - "BCM2835_PWM0_USEFIFO": 1, - "BCM2835_PWM0_REVPOLAR": 1, - "BCM2835_PWM0_OFFSTATE": 1, - "BCM2835_PWM0_REPEATFF": 1, - "BCM2835_PWM0_SERIAL": 1, - "BCM2835_PWM0_ENABLE": 1, - "init": 2, - "Library": 1, - "management": 1, - "intialise": 1, - "Initialise": 1, - "opening": 1, - "getting": 1, - "call": 4, - "successfully": 1, - "bcm2835_set_debug": 2, - "fails": 1, - "returning": 1, - "crashes": 1, - "failures.": 1, - "Prints": 1, - "messages": 1, - "stderr": 1, - "errors.": 1, - "successful": 2, - "Close": 1, - "deallocating": 1, - "debug": 6, - "prevents": 1, - "makes": 1, - "out": 5, - "would": 2, - "causes": 1, - "normal": 1, - "param": 72, - "uint8_t": 43, - "lowlevel": 2, - "provide": 1, - "generally": 1, - "Reads": 5, - "done": 3, - "twice": 3, - "therefore": 6, - "always": 3, - "precautions": 3, - "correct": 3, - "paddr": 10, - "from.": 6, - "etc.": 5, - "without": 3, - "occurred": 2, - "since.": 2, - "bcm2835_peri_read_nb": 1, - "Writes": 2, - "bcm2835_peri_write_nb": 1, - "Alters": 1, - "regsiter.": 1, - "valu": 1, - "alters": 1, - "deines": 1, - "according": 1, - "value.": 2, - "All": 1, - "unaffected.": 1, - "subset": 1, - "register.": 3, - "masked": 2, - "mask.": 1, - "Bitmask": 1, - "altered": 1, - "gpio": 1, - "interface.": 3, - "state.": 1, - "configures": 1, - "RPI_GPIO_P1_*": 21, - "Mode": 1, - "BCM2835_GPIO_FSEL_*": 1, - "specified": 27, - "HIGH.": 2, - "bcm2835_gpio_write": 3, - "bcm2835_gpio_set": 1, - "LOW.": 5, - "bcm2835_gpio_clr": 1, - "Mask": 6, - "affect.": 4, - "eg": 5, - "Works": 1, - "output.": 1, - "bcm2835_gpio_lev": 1, - "Status.": 7, - "Tests": 1, - "detected": 7, - "requested": 1, - "bcm2835_gpio_set_eds": 2, - "status": 1, - "th": 1, - "bcm2835_gpio_eds": 1, - "effect": 3, - "clearing": 1, - "flag.": 1, - "afer": 1, - "seeing": 1, - "rising": 3, - "sets": 8, - "GPRENn": 2, - "synchronous": 2, - "detection.": 2, - "signal": 4, - "sampled": 6, - "looking": 2, - "pattern": 2, - "signal.": 2, - "suppressing": 2, - "glitches.": 2, - "Disable": 6, - "Asynchronous": 6, - "incoming": 2, - "As": 2, - "edges": 2, - "very": 2, - "duration": 2, - "detected.": 2, - "bcm2835_gpio_pudclk": 3, - "resistor": 1, - "However": 3, - "convenient": 2, - "bcm2835_gpio_set_pud": 4, - "pud": 4, - "desired": 7, - "One": 3, - "BCM2835_GPIO_PUD_*": 2, - "Clocks": 3, - "earlier": 1, - "group.": 2, - "BCM2835_PAD_GROUP_GPIO_*": 2, - "BCM2835_PAD_*": 2, - "bcm2835_gpio_set_pad": 1, - "Delays": 3, - "milliseconds.": 1, - "Uses": 4, - "until": 1, - "up.": 1, - "mercy": 2, - "From": 2, - "interval": 4, - "req": 2, - "exact": 2, - "multiple": 2, - "granularity": 2, - "rounded": 2, - "multiple.": 2, - "Furthermore": 2, - "sleep": 2, - "completes": 2, - "becomes": 2, - "again": 2, - "thread.": 2, - "millis": 2, - "milliseconds": 1, - "microseconds.": 2, - "busy": 2, - "wait": 2, - "timers": 1, - "less": 1, - "microseconds": 6, - "Timer.": 1, - "RaspberryPi": 1, - "Your": 1, - "mileage": 1, - "vary.": 1, - "micros": 5, - "required": 2, - "bcm2835_gpio_write_mask": 1, - "clocking": 1, - "spi": 1, - "let": 2, - "device.": 2, - "operations.": 4, - "Forces": 2, - "ALT0": 2, - "funcitons": 1, - "End": 2, - "INPUT": 2, - "behaviour.": 2, - "NOTE": 1, - "effect.": 1, - "SPI0.": 1, - "Defaults": 1, - "BCM2835_SPI_BIT_ORDER_*": 1, - "speed.": 2, - "BCM2835_SPI_CLOCK_DIVIDER_*": 1, - "bcm2835_spi_setClockDivider": 1, - "uint16_t": 2, - "polariy": 1, - "phase": 1, - "BCM2835_SPI_MODE*": 1, - "bcm2835_spi_transfer": 5, - "made": 1, - "during": 4, - "transfer.": 4, - "cs": 4, - "activate": 1, - "slave.": 7, - "BCM2835_SPI_CS*": 1, - "bcm2835_spi_chipSelect": 4, - "occurs": 1, - "active.": 1, - "transfers": 1, - "happening": 1, - "complement": 1, - "inactive": 1, - "affect": 1, - "active": 3, - "Whether": 1, - "bcm2835_spi_setChipSelectPolarity": 1, - "Transfers": 6, - "Asserts": 3, - "simultaneously": 3, - "clocks": 2, - "MISO.": 2, - "polled": 2, - "Peripherls": 2, - "slave": 8, - "placed": 1, - "rbuf.": 1, - "rbuf": 3, - "tbuf": 4, - "send.": 5, - "put": 1, - "send/received": 2, - "bcm2835_spi_transfernb.": 1, - "replaces": 1, - "transmitted": 1, - "buffer.": 1, - "replace": 1, - "bcm2835_spi_writenb": 1, - "i2c": 1, - "Philips": 1, - "bus/interface": 1, - "January": 1, - "SCL": 2, - "bcm2835_i2c_end": 3, - "bcm2835_i2c_begin": 1, - "address.": 2, - "addr": 2, - "bcm2835_i2c_setSlaveAddress": 4, - "BCM2835_I2C_CLOCK_DIVIDER_*": 1, - "bcm2835_i2c_setClockDivider": 2, - "converting": 1, - "baudrate": 4, - "parameter": 1, - "equivalent": 1, - "divider.": 1, - "standard": 2, - "khz": 1, - "corresponds": 1, - "its": 1, - "driver.": 1, - "Of": 1, - "nothing": 1, - "driver": 1, - "receive.": 2, - "received.": 2, - "Allows": 2, - "slaves": 1, - "require": 3, - "repeated": 1, - "prior": 1, - "stop": 1, - "set.": 1, - "popular": 1, - "MPL3115A2": 1, - "pressure": 1, - "temperature": 1, - "sensor.": 1, - "Note": 1, - "combined": 1, - "better": 1, - "choice.": 1, - "Will": 1, - "regaddr": 2, - "bcm2835_i2c_read_register_rs": 1, - "st": 1, - "delays": 1, - "Counter.": 1, - "bcm2835_st_read": 1, - "offset.": 1, - "offset_micros": 2, - "Offset": 1, - "bcm2835_st_delay": 1, - "@example": 5, - "blink.c": 1, - "Blinks": 1, - "off": 1, - "input.c": 1, - "event.c": 1, - "Shows": 3, - "how": 3, - "spi.c": 1, - "spin.c": 1, - "": 1, - "": 1, - "": 2, - "*env_instance": 1, - "*Env": 1, - "env_instance": 3, - "QObject": 2, - "QCoreApplication": 1, - "**envp": 1, - "**env": 1, - "**": 2, - "envvar": 2, - "indexOfEquals": 5, - "env": 3, - "*env": 1, - "envvar.indexOf": 1, - "envvar.left": 1, - "envvar.mid": 1, - "m_map.insert": 1, - "QVariantMap": 3, - "asVariantMap": 2, - "m_map": 2, - "ENV_H": 3, - "": 1, - "Q_OBJECT": 1, - "*instance": 1, - "rpc_init": 1, - "rpc_server_loop": 1, - "BITCOIN_KEY_H": 2, - "": 1, - "": 1, - "EC_KEY": 3, - "key_error": 6, - "runtime_error": 2, - "str": 2, - "CKeyID": 5, - "uint160": 8, - "CScriptID": 3, - "CPubKey": 11, - "vchPubKey": 6, - "CKey": 26, - "vchPubKeyIn": 2, - "a.vchPubKey": 3, - "b.vchPubKey": 3, - "IMPLEMENT_SERIALIZE": 1, - "READWRITE": 1, - "GetID": 1, - "Hash160": 1, - "uint256": 10, - "GetHash": 1, - "Hash": 1, - "vchPubKey.begin": 1, - "vchPubKey.end": 1, - "IsValid": 4, - "vchPubKey.size": 3, - "IsCompressed": 2, - "Raw": 1, - "secure_allocator": 2, - "CPrivKey": 3, - "CSecret": 4, - "EC_KEY*": 1, - "pkey": 14, - "fSet": 7, - "fCompressedPubKey": 5, - "SetCompressedPubKey": 4, - "Reset": 5, - "IsNull": 1, - "MakeNewKey": 1, - "fCompressed": 3, - "SetPrivKey": 1, - "vchPrivKey": 1, - "SetSecret": 1, - "vchSecret": 1, - "GetSecret": 2, - "GetPrivKey": 1, - "SetPubKey": 1, - "GetPubKey": 5, - "hash": 20, - "vchSig": 18, - "SignCompact": 2, - "SetCompactSignature": 2, - "Verify": 2, - "VerifyCompact": 2, - "": 1, - "": 1, - "": 1, - "EC_KEY_regenerate_key": 1, - "*eckey": 2, - "BIGNUM": 9, - "*priv_key": 1, - "ok": 3, - "BN_CTX": 2, - "*ctx": 2, - "EC_POINT": 4, - "*pub_key": 1, - "eckey": 7, - "EC_GROUP": 2, - "*group": 2, - "EC_KEY_get0_group": 2, - "ctx": 26, - "BN_CTX_new": 2, - "err": 26, - "pub_key": 6, - "EC_POINT_new": 4, - "EC_POINT_mul": 3, - "priv_key": 2, - "EC_KEY_set_private_key": 1, - "EC_KEY_set_public_key": 2, - "EC_POINT_free": 4, - "BN_CTX_free": 2, - "ECDSA_SIG_recover_key_GFp": 3, - "ECDSA_SIG": 3, - "*ecsig": 1, - "*msg": 2, - "msglen": 2, - "recid": 3, - "ret": 24, - "*x": 1, - "*e": 1, - "*order": 1, - "*sor": 1, - "*eor": 1, - "*field": 1, - "*R": 1, - "*O": 1, - "*Q": 1, - "*rr": 1, - "*zero": 1, - "BN_CTX_start": 1, - "BN_CTX_get": 8, - "EC_GROUP_get_order": 1, - "BN_copy": 1, - "BN_mul_word": 1, - "BN_add": 1, - "ecsig": 3, - "EC_GROUP_get_curve_GFp": 1, - "BN_cmp": 1, - "R": 6, - "EC_POINT_set_compressed_coordinates_GFp": 1, - "O": 5, - "EC_POINT_is_at_infinity": 1, - "Q": 5, - "EC_GROUP_get_degree": 1, - "BN_bin2bn": 3, - "msg": 1, - "*msglen": 1, - "BN_rshift": 1, - "BN_zero": 1, - "BN_mod_sub": 1, - "rr": 4, - "BN_mod_inverse": 1, - "sor": 3, - "BN_mod_mul": 2, - "eor": 3, - "BN_CTX_end": 1, - "EC_KEY_set_conv_form": 1, - "POINT_CONVERSION_COMPRESSED": 1, - "EC_KEY_new_by_curve_name": 2, - "NID_secp256k1": 2, - "throw": 4, - "EC_KEY_dup": 1, - "b.pkey": 2, - "b.fSet": 2, - "EC_KEY_copy": 1, - "nSize": 2, - "vchSig.clear": 2, - "vchSig.resize": 2, - "Shrink": 1, - "fit": 1, - "actual": 1, - "fOk": 3, - "*sig": 2, - "ECDSA_do_sign": 1, - "sig": 11, - "nBitsR": 3, - "BN_num_bits": 2, - "nBitsS": 3, - "nRecId": 4, - "<4;>": 1, - "keyRec": 5, - "BN_bn2bin": 2, - "/8": 2, - "ECDSA_SIG_free": 2, - "vchSig.size": 2, - "nV": 6, - "<27>": 1, - "ECDSA_SIG_new": 1, - "EC_KEY_free": 1, - "ECDSA_verify": 1, - "key.SetCompactSignature": 1, - "key.GetPubKey": 1, - "fCompr": 3, - "secret": 2, - "key2": 1, - "key2.SetSecret": 1, - "key2.GetPubKey": 1, - "V8_SCANNER_H_": 3, - "ParsingFlags": 1, - "kNoParsingFlags": 1, - "kLanguageModeMask": 4, - "kAllowLazy": 1, - "kAllowNativesSyntax": 1, - "kAllowModules": 1, - "CLASSIC_MODE": 2, - "STRICT_MODE": 2, - "EXTENDED_MODE": 2, - "x16": 1, - "x36.": 1, - "Utf16CharacterStream": 3, - "pos_": 6, - "buffer_cursor_": 5, - "buffer_end_": 3, - "ReadBlock": 2, - "": 1, - "kEndOfInput": 2, - "code_unit_count": 7, - "buffered_chars": 2, - "SlowSeekForward": 2, - "int32_t": 1, - "code_unit": 6, - "uc16*": 3, - "UnicodeCache": 3, - "unibrow": 11, - "Utf8InputBuffer": 2, - "<1024>": 2, - "Utf8Decoder": 2, - "StaticResource": 2, - "": 2, - "utf8_decoder": 1, - "utf8_decoder_": 2, - "uchar": 4, - "kIsIdentifierStart.get": 1, - "IsIdentifierPart": 1, - "kIsIdentifierPart.get": 1, - "kIsLineTerminator.get": 1, - "kIsWhiteSpace.get": 1, - "Predicate": 4, - "": 1, - "128": 4, - "kIsIdentifierStart": 1, - "": 1, - "kIsIdentifierPart": 1, - "": 1, - "kIsLineTerminator": 1, - "": 1, - "kIsWhiteSpace": 1, - "DISALLOW_COPY_AND_ASSIGN": 2, - "LiteralBuffer": 6, - "is_ascii_": 10, - "position_": 17, - "backing_store_": 7, - "backing_store_.length": 4, - "backing_store_.Dispose": 3, - "INLINE": 2, - "AddChar": 2, - "ExpandBuffer": 2, - "kMaxAsciiCharCodeU": 1, - "": 6, - "kASCIISize": 1, - "ConvertToUtf16": 2, - "": 2, - "kUC16Size": 2, - "is_ascii": 3, - "Vector": 13, - "uc16": 5, - "utf16_literal": 3, - "backing_store_.start": 5, - "ascii_literal": 3, - "kInitialCapacity": 2, - "kGrowthFactory": 2, - "kMinConversionSlack": 1, - "kMaxGrowth": 2, - "MB": 1, - "NewCapacity": 3, - "min_capacity": 2, - "capacity": 3, - "Max": 1, - "new_capacity": 2, - "Min": 1, - "new_store": 6, - "memcpy": 1, - "new_store.start": 3, - "new_content_size": 4, - "src": 2, - "": 1, - "dst": 2, - "Scanner*": 2, - "scanner_": 5, - "complete_": 4, - "StartLiteral": 2, - "DropLiteral": 2, - "Complete": 1, - "TerminateLiteral": 2, - "beg_pos": 5, - "end_pos": 4, - "kNoOctalLocation": 1, - "scanner_contants": 1, - "current_token": 1, - "current_.location": 2, - "literal_ascii_string": 1, - "ASSERT_NOT_NULL": 9, - "current_.literal_chars": 11, - "literal_utf16_string": 1, - "is_literal_ascii": 1, - "literal_length": 1, - "literal_contains_escapes": 1, - "source_length": 3, - "location.end_pos": 1, - "location.beg_pos": 1, - "STRING": 1, - "peek": 1, - "peek_location": 1, - "next_.location": 1, - "next_literal_ascii_string": 1, - "next_literal_utf16_string": 1, - "is_next_literal_ascii": 1, - "next_literal_length": 1, - "kCharacterLookaheadBufferSize": 3, - "ScanOctalEscape": 1, - "octal_position": 1, - "clear_octal_position": 1, - "HarmonyScoping": 1, - "SetHarmonyScoping": 1, - "scoping": 2, - "HarmonyModules": 1, - "SetHarmonyModules": 1, - "modules": 2, - "HasAnyLineTerminatorBeforeNext": 1, - "ScanRegExpPattern": 1, - "seen_equal": 1, - "ScanRegExpFlags": 1, - "IsIdentifier": 1, - "CharacterStream*": 1, - "TokenDesc": 3, - "LiteralBuffer*": 2, - "literal_chars": 1, - "free_buffer": 3, - "literal_buffer1_": 3, - "literal_buffer2_": 2, - "AddLiteralChar": 2, - "tok": 2, - "else_": 2, - "ScanDecimalDigits": 1, - "seen_period": 1, - "ScanIdentifierSuffix": 1, - "LiteralScope*": 1, - "ScanIdentifierUnicodeEscape": 1, - "desc": 2, - "look": 1, - "ahead": 1, - "Field": 2, - "Free": 1, - "Black": 1, - "White": 1, - "Illegal": 1, - "Player": 1, - "NINJA_METRICS_H_": 3, - "int64_t.": 1, - "Metrics": 2, - "module": 1, - "dumps": 1, - "stats": 2, - "actions.": 1, - "To": 1, - "METRIC_RECORD": 4, - "below.": 1, - "metrics": 2, - "hit": 1, - "path.": 2, - "count": 1, - "Total": 1, - "spent": 1, - "int64_t": 3, - "sum": 1, - "scoped": 1, - "recording": 1, - "metric": 2, - "across": 1, - "body": 1, - "Used": 2, - "macro.": 1, - "ScopedMetric": 4, - "Metric*": 4, - "metric_": 1, - "Timestamp": 1, - "started.": 1, - "dependent.": 1, - "start_": 1, - "prints": 1, - "report.": 1, - "NewMetric": 2, - "summary": 1, - "stdout.": 1, - "Report": 1, - "": 1, - "metrics_": 1, - "Get": 1, - "epoch.": 1, - "Epoch": 1, - "varies": 1, - "between": 1, - "platforms": 1, - "useful": 1, - "measuring": 1, - "elapsed": 1, - "time.": 1, - "GetTimeMillis": 1, - "simple": 1, - "stopwatch": 1, - "seconds": 1, - "Restart": 3, - "called.": 1, - "Stopwatch": 2, - "started_": 4, - "Seconds": 1, - "call.": 1, - "Elapsed": 1, - "": 1, - "primary": 1, - "metrics.": 1, - "top": 1, - "recorded": 1, - "metrics_h_metric": 2, - "g_metrics": 3, - "metrics_h_scoped": 1, - "Metrics*": 1, - "UTILS_H": 3, - "": 1, - "": 1, - "": 1, - "QTemporaryFile": 1, - "showUsage": 1, - "QtMsgType": 1, - "dump_path": 1, - "minidump_id": 1, - "QVariant": 1, - "coffee2js": 1, - "script": 1, - "injectJsInFrame": 2, - "jsFilePath": 5, - "libraryPath": 5, - "QWebFrame": 4, - "*targetFrame": 4, - "startingScript": 2, - "Encoding": 3, - "jsFileEnc": 2, - "readResourceFileUtf8": 1, - "resourceFilePath": 1, - "loadJSForDebug": 2, - "autorun": 2, - "cleanupFromDebug": 1, - "findScript": 1, - "jsFromScriptFile": 1, - "scriptPath": 1, - "enc": 1, - "shouldn": 1, - "instantiated": 1, - "QTemporaryFile*": 2, - "m_tempHarness": 1, - "We": 1, - "ourselves": 1, - "m_tempWrapper": 1, - "GDSDBREADER_H": 3, - "": 1, - "GDS_DIR": 1, - "LEVEL_ONE": 1, - "LEVEL_TWO": 1, - "LEVEL_THREE": 1, - "dbDataStructure": 2, - "label": 1, - "quint32": 3, - "depth": 1, - "userIndex": 1, - "QByteArray": 1, - "COMPRESSED": 1, - "optimize": 1, - "ram": 1, - "decompressed": 1, - "quint64": 1, - "uniqueID": 1, - "QVector": 2, - "": 1, - "nextItems": 1, - "": 1, - "nextItemsIndices": 1, - "dbDataStructure*": 1, - "father": 1, - "fatherIndex": 1, - "noFatherRoot": 1, - "tell": 1, - "node": 1, - "root": 1, - "hasn": 1, - "argument": 1, - "overload.": 1, - "myclass.label": 2, - "myclass.depth": 2, - "myclass.userIndex": 2, - "qCompress": 2, - "myclass.data": 4, - "myclass.uniqueID": 2, - "myclass.nextItemsIndices": 2, - "myclass.fatherIndex": 2, - "myclass.noFatherRoot": 2, - "myclass.fileName": 2, - "myclass.firstLineData": 4, - "myclass.linesNumbers": 2, - "QDataStream": 2, - "myclass": 1, - "//Don": 1, - "qUncompress": 2 - }, - "JSON5": { - "{": 6, - "foo": 1, - "while": 1, - "true": 1, - "this": 1, - "here": 1, - "//": 2, - "inline": 1, - "comment": 1, - "hex": 1, - "xDEADbeef": 1, - "half": 1, - ".5": 1, - "delta": 1, - "+": 1, - "to": 1, - "Infinity": 1, - "and": 1, - "beyond": 1, - "finally": 1, - "oh": 1, - "[": 3, - "]": 3, - "}": 6, - "name": 1, - "version": 1, - "description": 1, - "keywords": 1, - "author": 1, - "contributors": 1, - "main": 1, - "bin": 1, - "dependencies": 1, - "devDependencies": 1, - "mocha": 1, - "scripts": 1, - "build": 1, - "test": 1, - "homepage": 1, - "repository": 1, - "type": 1, - "url": 1 - }, - "MoonScript": { - "types": 2, - "require": 5, - "util": 2, - "data": 1, - "import": 5, - "reversed": 2, - "unpack": 22, - "from": 4, - "ntype": 16, - "mtype": 3, - "build": 7, - "smart_node": 7, - "is_slice": 2, - "value_is_singular": 3, - "insert": 18, - "table": 2, - "NameProxy": 14, - "LocalName": 2, - "destructure": 1, - "local": 1, - "implicitly_return": 2, - "class": 4, - "Run": 8, - "new": 2, - "(": 54, - "@fn": 1, - ")": 54, - "self": 2, - "[": 79, - "]": 79, - "call": 3, - "state": 2, - "self.fn": 1, - "-": 51, - "transform": 2, - "the": 4, - "last": 6, - "stm": 16, - "is": 2, - "a": 4, - "list": 6, - "of": 1, - "stms": 4, - "will": 1, - "puke": 1, - "on": 1, - "group": 1, - "apply_to_last": 6, - "fn": 3, - "find": 2, - "real": 1, - "exp": 17, - "last_exp_id": 3, - "for": 20, - "i": 15, - "#stms": 1, - "if": 43, - "and": 8, - "break": 1, - "return": 11, - "in": 18, - "ipairs": 3, - "else": 22, - "body": 26, - "sindle": 1, - "expression/statement": 1, - "is_singular": 2, - "false": 2, - "#body": 1, - "true": 4, - "find_assigns": 2, - "out": 9, - "{": 135, - "}": 136, - "thing": 4, - "*body": 2, - "switch": 7, - "when": 12, - "table.insert": 3, - "extract": 1, - "names": 16, - "hoist_declarations": 1, - "assigns": 5, - "hoist": 1, - "plain": 1, - "old": 1, - "*find_assigns": 1, - "name": 31, - "*names": 3, - "type": 5, - "after": 1, - "runs": 1, - "idx": 4, - "while": 3, - "do": 2, - "+": 2, - "expand_elseif_assign": 2, - "ifstm": 5, - "#ifstm": 1, - "case": 13, - "split": 4, - "constructor_name": 2, - "with_continue_listener": 4, - "continue_name": 13, - "nil": 8, - "@listen": 1, - "unless": 6, - "@put_name": 2, - "build.group": 14, - "@splice": 1, - "lines": 2, - "Transformer": 2, - "@transformers": 3, - "@seen_nodes": 3, - "setmetatable": 1, - "__mode": 1, - "scope": 4, - "node": 68, - "...": 10, - "transformer": 3, - "res": 3, - "or": 6, - "bind": 1, - "@transform": 2, - "__call": 1, - "can_transform": 1, - "construct_comprehension": 2, - "inner": 2, - "clauses": 4, - "current_stms": 7, - "_": 10, - "clause": 4, - "t": 10, - "iter": 2, - "elseif": 1, - "cond": 11, - "error": 4, - "..t": 1, - "Statement": 2, - "root_stms": 1, - "@": 1, - "assign": 9, - "values": 10, - "bubble": 1, - "cascading": 2, - "transformed": 2, - "#values": 1, - "value": 7, - "@transform.statement": 2, - "types.cascading": 1, - "ret": 16, - "types.is_value": 1, - "destructure.has_destructure": 2, - "destructure.split_assign": 1, - "continue": 1, - "@send": 1, - "build.assign_one": 11, - "export": 1, - "they": 1, - "are": 1, - "included": 1, - "#node": 3, - "cls": 5, - "cls.name": 1, - "build.assign": 3, - "update": 1, - "op": 2, - "op_final": 3, - "match": 1, - "..op": 1, - "not": 2, - "source": 7, - "stubs": 1, - "real_names": 4, - "build.chain": 7, - "base": 8, - "stub": 4, - "*stubs": 2, - "source_name": 3, - "comprehension": 1, - "action": 4, - "decorated": 1, - "dec": 6, - "wrapped": 4, - "fail": 5, - "..": 1, - "build.declare": 1, - "*stm": 1, - "expand": 1, - "destructure.build_assign": 2, - "build.do": 2, - "apply": 1, - "decorator": 1, - "mutate": 1, - "all": 1, - "bodies": 1, - "body_idx": 3, - "with": 3, - "block": 2, - "scope_name": 5, - "named_assign": 2, - "assign_name": 1, - "@set": 1, - "foreach": 1, - "node.iter": 1, - "destructures": 5, - "node.names": 3, - "proxy": 2, - "next": 1, - "node.body": 9, - "index_name": 3, - "list_name": 6, - "slice_var": 3, - "bounds": 3, - "slice": 7, - "#list": 1, - "table.remove": 2, - "max_tmp_name": 5, - "index": 2, - "conds": 3, - "exp_name": 3, - "convert": 1, - "into": 1, - "statment": 1, - "convert_cond": 2, - "case_exps": 3, - "cond_exp": 5, - "first": 3, - "if_stm": 5, - "*conds": 1, - "if_cond": 4, - "parent_assign": 3, - "parent_val": 1, - "apart": 1, - "properties": 4, - "statements": 4, - "item": 3, - "tuple": 8, - "*item": 1, - "constructor": 7, - "*properties": 1, - "key": 3, - "parent_cls_name": 5, - "base_name": 4, - "self_name": 4, - "cls_name": 1, - "build.fndef": 3, - "args": 3, - "arrow": 1, - "then": 2, - "constructor.arrow": 1, - "real_name": 6, - "#real_name": 1, - "build.table": 2, - "look": 1, - "up": 1, - "object": 1, - "class_lookup": 3, - "cls_mt": 2, - "out_body": 1, - "make": 1, - "sure": 1, - "we": 1, - "don": 1, - "string": 1, - "parens": 2, - "colon_stub": 1, - "super": 1, - "dot": 1, - "varargs": 2, - "arg_list": 1, - "Value": 1 - }, - "Mercury": { - "%": 416, - "-": 6967, - "module": 46, - "rot13_verbose.": 1, - "interface.": 13, - "import_module": 126, - "io.": 8, - "pred": 255, - "main": 15, - "(": 3351, - "io__state": 4, - ")": 3351, - ".": 610, - "mode": 8, - "di": 54, - "uo": 58, - "is": 246, - "det.": 184, - "implementation.": 12, - "char": 10, - "int": 129, - "require.": 6, - "rot13a/2": 1, - "A": 14, - "table": 1, - "to": 16, - "map": 7, - "the": 27, - "alphabetic": 2, - "characters": 1, - "their": 1, - "rot13": 11, - "equivalents": 1, - "fails": 1, - "if": 15, - "input": 1, - "not": 7, - "rot13a": 55, - "in": 510, - "out": 337, - "semidet.": 10, - "rot13/2": 1, - "Applies": 1, - "algorithm": 1, - "a": 10, - "character.": 1, - "Char": 12, - "RotChar": 8, - "TmpChar": 2, - "then": 3, - "else": 8, - "io__read_char": 1, - "Res": 8, - "{": 27, - "ok": 3, - "}": 28, - "io__write_char": 1, - ";": 913, - "eof": 6, - "error": 7, - "ErrorCode": 4, - "io__error_message": 2, - "ErrorMessage": 4, - "io__stderr_stream": 1, - "StdErr": 8, - "io__write_string": 2, - "io__nl": 1, - "rot13_concise.": 1, - "state": 3, - "string.": 7, - "alphabet": 3, - "cycle": 4, - "rot_n": 2, - "N": 6, - "char_to_string": 1, - "CharString": 2, - "sub_string_search": 1, - "Index": 3, - "NewIndex": 2, - "+": 127, - "mod": 1, - "*": 20, - "//": 2, - "index_det": 1, - "read_char": 1, - "print": 3, - "error_message": 1, - "stderr_stream": 1, - "nl": 1, - "check_hlds.polymorphism.": 1, - "hlds.": 1, - "hlds.hlds_goal.": 2, - "hlds.hlds_module.": 2, - "hlds.hlds_pred.": 2, - "hlds.hlds_rtti.": 2, - "mdbcomp.": 1, - "mdbcomp.prim_data.": 3, - "parse_tree.": 1, - "parse_tree.prog_data.": 2, - "list.": 4, - "maybe.": 3, - "term.": 3, - "polymorphism_process_module": 2, - "module_info": 26, - "polymorphism_process_generated_pred": 2, - "pred_id": 15, - "unification_typeinfos_rtti_varmaps": 2, - "mer_type": 21, - "rtti_varmaps": 9, - "unification": 8, - "hlds_goal_info": 22, - "polymorphism_process_new_call": 2, - "pred_info": 20, - "proc_info": 11, - "proc_id": 12, - "list": 82, - "prog_var": 58, - "builtin_state": 1, - "maybe": 20, - "call_unify_context": 2, - "sym_name": 3, - "hlds_goal": 45, - "poly_info": 45, - "polymorphism_make_type_info_vars": 1, - "term.context": 3, - "polymorphism_make_type_info_var": 1, - "type": 57, - "int_or_var": 2, - "iov_int": 1, - "iov_var": 1, - "gen_extract_type_info": 1, - "tvar": 10, - "kind": 1, - "prog_varset": 14, - "vartypes": 12, - "poly_info.": 1, - "create_poly_info": 1, - "poly_info_extract": 1, - "build_typeclass_info_type": 3, - "prog_constraint": 4, - "type_is_typeclass_info": 1, - "type_is_type_info_or_ctor_type": 1, - "build_type_info_type": 1, - "get_special_proc": 1, - "special_pred_id": 2, - "get_special_proc_det": 1, - "convert_pred_to_lambda_goal": 3, - "purity": 1, - "lambda_eval_method": 1, - "unify_context": 3, - "context": 1, - "unify_rhs": 4, - "fix_undetermined_mode_lambda_goal": 2, - "rhs_lambda_goal": 7, - "init_type_info_var": 1, - "init_const_type_ctor_info_var": 1, - "type_ctor": 1, - "cons_id": 2, - "type_info_kind": 2, - "type_info": 8, - "type_ctor_info.": 1, - "new_type_info_var_raw": 1, - "check_hlds.clause_to_proc.": 1, - "check_hlds.mode_util.": 1, - "check_hlds.type_util.": 2, - "hlds.from_ground_term_util.": 1, - "hlds.const_struct.": 1, - "hlds.goal_util.": 1, - "hlds.hlds_args.": 1, - "hlds.hlds_clauses.": 1, - "hlds.hlds_code_util.": 1, - "hlds.hlds_data.": 2, - "hlds.instmap.": 2, - "hlds.passes_aux.": 1, - "hlds.pred_table.": 1, - "hlds.quantification.": 1, - "hlds.special_pred.": 1, - "libs.": 1, - "libs.globals.": 2, - "libs.options.": 3, - "mdbcomp.goal_path.": 2, - "mdbcomp.program_representation.": 1, - "parse_tree.builtin_lib_types.": 2, - "parse_tree.prog_mode.": 1, - "parse_tree.prog_type.": 2, - "parse_tree.prog_type_subst.": 1, - "parse_tree.set_of_var.": 2, - "assoc_list.": 3, - "bool.": 4, - "int.": 4, - "map.": 3, - "pair.": 3, - "set.": 4, - "solutions.": 1, - "varset.": 2, - "ModuleInfo": 49, - "module_info_get_preds": 3, - ".ModuleInfo": 8, - "Preds0": 2, - "map.keys": 3, - "PredIds0": 2, - "list.foldl": 6, - "maybe_polymorphism_process_pred": 3, - "Preds1": 2, - "PredIds1": 2, - "fixup_pred_polymorphism": 4, - "expand_class_method_bodies": 1, - "PredId": 50, - "module_info_pred_info": 6, - "PredInfo": 64, - "PredModule": 8, - "pred_info_module": 4, - "PredName": 8, - "pred_info_name": 4, - "PredArity": 6, - "pred_info_orig_arity": 3, - "no_type_info_builtin": 3, - "copy_module_clauses_to_procs": 1, - "[": 203, - "]": 203, - "polymorphism_process_pred_msg": 3, - "PredTable0": 3, - "map.lookup": 2, - "PredInfo0": 16, - "pred_info_get_clauses_info": 2, - "ClausesInfo0": 5, - "clauses_info_get_vartypes": 2, - "VarTypes0": 12, - "clauses_info_get_headvars": 2, - "HeadVars": 20, - "pred_info_get_arg_types": 7, - "TypeVarSet": 15, - "ExistQVars": 13, - "ArgTypes0": 3, - "proc_arg_vector_partition_poly_args": 1, - "ExtraHeadVarList": 2, - "OldHeadVarList": 2, - "lookup_var_types": 6, - "ExtraArgTypes": 2, - "ArgTypes": 6, - "pred_info_set_arg_types": 1, - "PredInfo1": 5, - "_": 149, - "|": 38, - "OldHeadVarTypes": 2, - "type_list_subsumes": 2, - "Subn": 3, - "map.is_empty": 1, - "pred_info_set_existq_tvar_binding": 1, - "PredInfo2": 7, - "polymorphism_introduce_exists_casts_pred": 3, - "map.det_update": 4, - "PredTable": 2, - "module_info_set_preds": 1, - "pred_info_get_procedures": 2, - ".PredInfo": 2, - "Procs0": 4, - "map.map_values_only": 1, - ".ProcInfo": 2, - "ProcInfo": 43, - "det": 21, - "introduce_exists_casts_proc": 1, - "Procs": 4, - "pred_info_set_procedures": 2, - "trace": 4, - "compiletime": 4, - "flag": 4, - "io": 6, - "IO": 4, - "write_pred_progress_message": 1, - "polymorphism_process_pred": 4, - "mutable": 3, - "selected_pred": 1, - "bool": 406, - "no": 365, - "ground": 9, - "untrailed": 2, - "level": 1, - "promise_pure": 30, - "pred_id_to_int": 1, - "impure": 2, - "set_selected_pred": 2, - "yes": 144, - "true": 3, - "polymorphism_process_clause_info": 3, - "ClausesInfo": 13, - "Info": 134, - "ExtraArgModes": 20, - "poly_info_get_module_info": 4, - "poly_info_get_const_struct_db": 1, - "ConstStructDb": 2, - "module_info_set_const_struct_db": 1, - "poly_info_get_typevarset": 4, - "pred_info_set_typevarset": 1, - "pred_info_set_clauses_info": 1, - "ProcIds": 5, - "pred_info_procids": 2, - "polymorphism_process_proc_in_table": 3, - "module_info_set_pred_info": 1, - "clauses_info": 6, - "poly_arg_vector": 9, - "mer_mode": 14, - "ModuleInfo0": 8, - "init_poly_info": 1, - ".ClausesInfo": 2, - "_VarSet": 1, - "ExplicitVarTypes": 2, - "_TVarNameMap": 1, - "_VarTypes": 1, - "HeadVars0": 5, - "ClausesRep0": 2, - "ItemNumbers": 2, - "_RttiVarMaps": 1, - "HaveForeignClauses": 2, - "setup_headvars": 3, - "UnconstrainedTVars": 15, - "ExtraTypeInfoHeadVars": 4, - "ExistTypeClassInfoHeadVars": 6, - "get_clause_list": 1, - "Clauses0": 2, - "list.map_foldl": 2, - "polymorphism_process_clause": 3, - "Clauses": 2, - "poly_info_get_varset": 4, - ".Info": 25, - "VarSet": 15, - "poly_info_get_var_types": 6, - "VarTypes": 22, - "poly_info_get_rtti_varmaps": 4, - "RttiVarMaps": 16, - "set_clause_list": 1, - "ClausesRep": 2, - "map.init": 7, - "TVarNameMap": 2, - "This": 2, - "only": 4, - "used": 2, - "while": 1, - "adding": 1, - "clauses.": 1, - "proc_arg_vector": 9, - "clause": 2, - "OldHeadVars": 2, - "NewHeadVars": 2, - "Clause": 2, - "pred_info_is_imported": 2, - "Goal0": 21, - ".Clause": 1, - "clause_body": 2, - "empty_cache_maps": 4, - "poly_info_set_num_reuses": 1, - "polymorphism_process_goal": 20, - "Goal1": 2, - "produce_existq_tvars": 3, - "Goal2": 2, - "pred_info_get_exist_quant_tvars": 1, - "fixup_quantification": 1, - "Goal": 40, - "proc_table": 2, - "ProcId": 31, - "ProcTable": 2, - ".ProcTable": 1, - "ProcInfo0": 2, - "polymorphism_process_proc": 3, - "pred_info_is_pseudo_imported": 1, - "hlds_pred.in_in_unification_proc_id": 1, - "HeadVarList": 4, - "proc_arg_vector_to_list": 2, - "clauses_info_get_rtti_varmaps": 1, - "clauses_info_get_varset": 1, - "proc_info_set_headvars": 1, - "proc_info_set_rtti_varmaps": 1, - "proc_info_set_varset": 1, - "proc_info_set_vartypes": 1, - "copy_clauses_to_proc": 1, - "proc_info_get_argmodes": 2, - "ArgModes1": 2, - "ExtraArgModesList": 2, - "poly_arg_vector_to_list": 1, - "ArgModes": 5, - "proc_info_set_argmodes": 1, - "ExtraHeadTypeInfoVars": 7, - "ExistHeadTypeClassInfoVars": 9, - "pred_info_get_origin": 1, - "Origin": 8, - "ExtraArgModes0": 3, - "poly_arg_vector_init": 1, - "origin_instance_method": 1, - "InstanceMethodConstraints": 4, - "setup_headvars_instance_method": 3, - "origin_special_pred": 1, - "origin_transformed": 1, - "origin_created": 1, - "origin_assertion": 1, - "origin_lambda": 1, - "origin_user": 1, - "pred_info_get_class_context": 4, - "ClassContext": 6, - "InstanceTVars": 7, - "InstanceUnconstrainedTVars": 2, - "InstanceUnconstrainedTypeInfoVars": 2, - "setup_headvars_2": 4, - "instance_method_constraints": 2, - "InstanceTypes": 2, - "InstanceConstraints": 3, - "type_vars_list": 5, - "get_unconstrained_tvars": 1, - "UnconstrainedInstanceTVars": 6, - "ArgTypeVarSet": 5, - "make_head_vars": 3, - "UnconstrainedInstanceTypeInfoVars": 7, - "make_typeclass_info_head_vars": 3, - "do_record_type_info_locns": 3, - "InstanceHeadTypeClassInfoVars": 4, - "proc_arg_vector_set_instance_type_infos": 1, - "proc_arg_vector_set_instance_typeclass_infos": 1, - "RttiVarMaps0": 4, - "rtti_reuse_typeclass_info_var": 3, - "poly_info_set_rtti_varmaps": 3, - "in_mode": 3, - "InMode": 3, - "list.duplicate": 6, - "list.length": 16, - "UnconstrainedInstanceTypeInfoModes": 2, - "InstanceHeadTypeClassInfoModes": 2, - "poly_arg_vector_set_instance_type_infos": 1, - "poly_arg_vector_set_instance_typeclass_infos": 1, - "prog_constraints": 1, - "AllUnconstrainedTVars": 2, - "AllExtraHeadTypeInfoVars": 2, - "constraints": 4, - "UnivConstraints": 3, - "ExistConstraints": 6, - "prog_type.constraint_list_get_tvars": 2, - "UnivConstrainedTVars": 2, - "ExistConstrainedTVars": 2, - "poly_info_get_constraint_map": 4, - "ConstraintMap": 12, - "get_improved_exists_head_constraints": 4, - "ActualExistConstraints": 9, - "pred_info_get_markers": 1, - "PredMarkers": 2, - "check_marker": 1, - "marker_class_method": 1, - "RecordExistQLocns": 3, - "do_not_record_type_info_locns": 1, - "UnivHeadTypeClassInfoVars": 4, - "HeadTypeVars": 2, - "list.delete_elems": 12, - "UnconstrainedTVars0": 2, - "UnconstrainedTVars1": 2, - "UnconstrainedTVars2": 2, - "list.remove_dups": 4, - "UnconstrainedUnivTVars": 7, - "UnconstrainedExistTVars": 6, - "ExistHeadTypeInfoVars": 5, - "UnivHeadTypeInfoVars": 4, - "list.condense": 4, - "proc_arg_vector_set_univ_type_infos": 1, - "HeadVars1": 2, - "proc_arg_vector_set_exist_type_infos": 1, - "HeadVars2": 2, - "proc_arg_vector_set_univ_typeclass_infos": 1, - "HeadVars3": 2, - "proc_arg_vector_set_exist_typeclass_infos": 1, - "In": 6, - "out_mode": 2, - "Out": 6, - "NumUnconstrainedUnivTVars": 2, - "NumUnconstrainedExistTVars": 2, - "NumUnivClassInfoVars": 2, - "NumExistClassInfoVars": 2, - "UnivTypeInfoModes": 2, - "ExistTypeInfoModes": 2, - "UnivTypeClassInfoModes": 2, - "ExistTypeClassInfoModes": 2, - "poly_arg_vector_set_univ_type_infos": 1, - "poly_arg_vector_set_exist_type_infos": 1, - "poly_arg_vector_set_univ_typeclass_infos": 1, - "poly_arg_vector_set_exist_typeclass_infos": 1, - "some": 4, - "ToLocn": 4, - "TheVar": 2, - "TheLocn": 2, - "list.map": 17, - "UnivTypeLocns": 2, - "list.foldl_corresponding": 3, - "rtti_det_insert_type_info_locn": 3, - "ExistTypeLocns": 2, - "UnconstrainedInstanceTypeLocns": 2, - ".RttiVarMaps": 1, - "TypeInfoHeadVars": 2, - "pred_info_get_tvar_kinds": 2, - "KindMap": 2, - "PredClassContext": 5, - "PredExistConstraints": 2, - "exist_constraints": 1, - "ExistQVarsForCall": 2, - "GoalInfo": 44, - "Context": 20, - "goal_info_get_context": 4, - "make_typeclass_info_vars": 3, - "ExistTypeClassVarsMCAs": 2, - "ExtraTypeClassGoals": 5, - "assoc_list.keys": 8, - "ExistTypeClassVars": 3, - "assign_var_list": 8, - "ExtraTypeClassUnifyGoals": 2, - "vartypes_is_empty": 1, - "PredToActualTypeSubst": 4, - "ActualArgTypes": 8, - "ArgTypeSubst": 2, - "apply_subst_to_tvar_list": 1, - "ActualTypes": 2, - "polymorphism_do_make_type_info_vars": 5, - "TypeInfoVarsMCAs": 2, - "ExtraTypeInfoGoals": 4, - "TypeInfoVars": 5, - "ExtraTypeInfoUnifyGoals": 2, - "GoalList": 8, - "conj_list_to_goal": 6, - "unexpected": 21, - "Var1": 5, - "Vars1": 2, - "Var2": 5, - "Vars2": 2, - "Goals": 13, - "assign_var": 3, - "true_goal": 1, - "term.context_init": 2, - "create_pure_atomic_complicated_unification": 1, - "rhs_var": 2, - "umc_explicit": 1, - "constraint_map": 1, - "NumExistConstraints": 4, - "search_hlds_constraint_list": 1, - "unproven": 3, - "goal_id": 1, - "ActualExistConstraints0": 2, - "GoalExpr0": 18, - "GoalInfo0": 41, - "generic_call": 1, - "plain_call": 5, - "ArgVars0": 23, - "polymorphism_process_call": 4, - "ExtraVars": 13, - "ExtraGoals": 13, - "ArgVars": 6, - "CallExpr": 4, - "call_args": 1, - "Call": 4, - "call_foreign_proc": 4, - "polymorphism_process_foreign_proc": 3, - "unify": 21, - "XVar": 11, - "Y": 9, - "Mode": 12, - "Unification": 16, - "UnifyContext": 15, - "polymorphism_process_unify": 4, - "conj": 5, - "ConjType": 4, - "Goals0": 13, - "plain_conj": 4, - "polymorphism_process_plain_conj": 5, - "parallel_conj": 1, - "get_cache_maps_snapshot": 11, - "InitialSnapshot": 36, - "polymorphism_process_par_conj": 5, - "GoalExpr": 19, - "disj": 2, - "polymorphism_process_disj": 6, - "set_cache_maps_snapshot": 15, - "if_then_else": 2, - "Vars": 10, - "Cond0": 2, - "Then0": 2, - "Else0": 2, - "Cond": 2, - "Then": 2, - "Else": 2, - "negation": 2, - "SubGoal0": 14, - "SubGoal": 16, - "switch": 2, - "Var": 13, - "CanFail": 4, - "Cases0": 4, - "polymorphism_process_cases": 5, - "Cases": 4, - "scope": 7, - "Reason0": 16, - "from_ground_term": 2, - "TermVar": 4, - "Kind": 5, - "from_ground_term_initial": 2, - "polymorphism_process_from_ground_term_initial": 3, - "from_ground_term_construct": 1, - "from_ground_term_deconstruct": 1, - "from_ground_term_other": 1, - "promise_solutions": 1, - "promise_purity": 1, - "require_detism": 1, - "require_complete_switch": 1, - "commit": 1, - "barrier": 1, - "loop_control": 1, - "exist_quant": 1, - "trace_goal": 1, - "shorthand": 2, - "ShortHand0": 4, - "atomic_goal": 2, - "GoalType": 2, - "Outer": 2, - "Inner": 2, - "MainGoal0": 2, - "OrElseGoals0": 2, - "OrElseInners": 2, - "MainGoal": 2, - "OrElseGoals": 2, - "ShortHand": 3, - "try_goal": 2, - "MaybeIO": 2, - "ResultVar": 2, - "SubGoalExpr0": 4, - "SubGoalInfo": 2, - "Conjuncts0": 2, - "ConjunctA0": 2, - "ConjunctB0": 2, - "ConjunctA": 2, - "ConjunctB": 2, - "Conjuncts": 2, - "SubGoalExpr": 2, - "bi_implication": 1, - "hlds_goal_expr": 2, - "SubGoalInfo0": 2, - "SubGoals0Prime": 2, - "SubGoals0": 2, - "polymorphism_process_fgti_goals": 5, - "RevMarkedSubGoals": 2, - "fgt_invariants_kept": 2, - "InvariantsStatus": 7, - "Reason": 2, - "fgt_invariants_broken": 2, - "introduce_partial_fgt_scopes": 1, - "deconstruct_top_down": 1, - "fgt_marked_goal": 2, - "fgt_invariants_status": 2, - "RevMarkedGoals": 4, - "OldInfo": 3, - "XVarPrime": 2, - "ModePrime": 2, - "UnificationPrime": 2, - "UnifyContextPrime": 2, - "rhs_functor": 5, - "ConsIdPrime": 2, - "YVarsPrime": 2, - "ConsId": 10, - "YVars": 4, - "polymorphism_process_unify_functor": 4, - "Changed": 10, - "VarSetBefore": 2, - "MaxVarBefore": 2, - "varset.max_var": 2, - "poly_info_get_num_reuses": 2, - "NumReusesBefore": 2, - "VarSetAfter": 2, - "MaxVarAfter": 2, - "NumReusesAfter": 2, - "expect": 15, - "MarkedGoal": 3, - "fgt_kept_goal": 1, - "fgt_broken_goal": 1, - ".RevMarkedGoals": 1, - "unify_mode": 2, - "Unification0": 8, - "_YVar": 1, - "lookup_var_type": 3, - "Type": 18, - "unification_typeinfos": 5, - "_Changed": 3, - "Args": 11, - "Purity": 9, - "Groundness": 6, - "PredOrFunc": 6, - "EvalMethod": 8, - "LambdaVars": 13, - "Modes": 4, - "Det": 4, - "LambdaGoal0": 5, - "LambdaGoal1": 2, - "fixup_lambda_quantification": 1, - "LambdaGoal": 6, - "NonLocalTypeInfos": 3, - "set_of_var.to_sorted_list": 1, - "NonLocalTypeInfosList": 2, - "Y1": 2, - "NonLocals0": 10, - "goal_info_get_nonlocals": 6, - "set_of_var.union": 3, - "NonLocals": 12, - "goal_info_set_nonlocals": 6, - "type_vars": 2, - "TypeVars": 8, - "get_type_info_locn": 1, - "TypeInfoLocns": 6, - "add_unification_typeinfos": 4, - "rtti_lookup_type_info_locn": 1, - "type_info_locn": 1, - "type_info_locn_var": 1, - "TypeInfoVars0": 2, - ".GoalInfo": 1, - "set_of_var.insert_list": 4, - ".Unification": 5, - "complicated_unify": 2, - "construct": 1, - "deconstruct": 2, - "assign": 46, - "simple_test": 1, - "X0": 8, - "ConsId0": 5, - "Mode0": 4, - "TypeOfX": 6, - "Arity": 5, - "closure_cons": 1, - "ShroudedPredProcId": 2, - "proc": 2, - "ProcId0": 3, - "unshroud_pred_proc_id": 1, - "type_is_higher_order_details": 1, - "_PredOrFunc": 1, - "CalleeArgTypes": 2, - "invalid_proc_id": 1, - "goal_info_add_feature": 1, - "feature_lambda_undetermined_mode": 1, - "GoalInfo1": 6, - "VarSet0": 2, - "Functor0": 6, - "poly_info_set_varset_and_types": 1, - "cons": 3, - "ConsTypeCtor": 2, - "remove_new_prefix": 1, - "OrigFunctor": 2, - "IsConstruction": 7, - "type_util.get_existq_cons_defn": 1, - "ConsDefn": 2, - "polymorphism_process_existq_unify_functor": 3, - "UnifyExpr": 2, - "Unify": 2, - "PredArgTypes": 10, - "Functor": 6, - "create_fresh_vars": 5, - "module_info_pred_proc_info": 4, - "QualifiedPName": 5, - "qualified": 1, - "cons_id_dummy_type_ctor": 1, - "RHS": 2, - "CallUnifyContext": 2, - "LambdaGoalExpr": 2, - "not_builtin": 3, - "OutsideVars": 2, - "set_of_var.list_to_set": 3, - "InsideVars": 2, - "set_of_var.intersect": 1, - "LambdaNonLocals": 2, - "GoalId": 8, - "goal_info_get_goal_id": 3, - "goal_info_init": 1, - "LambdaGoalInfo0": 2, - "goal_info_set_context": 1, - "LambdaGoalInfo1": 2, - "LambdaGoalInfo2": 2, - "goal_info_set_purity": 1, - "LambdaGoalInfo3": 2, - "goal_info_set_goal_id": 1, - "LambdaGoalInfo": 4, - "lambda_modes_and_det": 4, - "LambdaModes": 6, - "LambdaDet": 6, - "pred_info_is_pred_or_func": 1, - "ho_ground": 1, - "_LambdaModes0": 1, - "_LambdaDet0": 1, - "goal_to_conj_list": 1, - "LambdaGoalList0": 2, - "list.split_last": 1, - "LambdaGoalButLast0": 2, - "LastGoal0": 2, - "LastGoalExpr0": 2, - "LastGoalInfo0": 2, - "PredId0": 2, - "_DummyProcId": 1, - "Args0": 5, - "MaybeCallUnifyContext0": 2, - "QualifiedPName0": 2, - "LambdaGoalButLast": 2, - "LastGoalInfo": 2, - "MaybeCallUnifyContext": 4, - "LastGoalExpr": 2, - "LastGoal": 2, - "prog_vars": 1, - "determinism": 1, - "NumArgModes": 2, - "NumLambdaVars": 2, - "list.drop": 2, - "LambdaModesPrime": 2, - "proc_info_get_declared_determinism": 1, - "MaybeDet": 3, - "sorry": 1, - "Types": 6, - "varset.new_var": 1, - "add_var_type": 1, - "ctor_defn": 2, - "CtorDefn": 2, - "ActualRetType": 2, - "CtorTypeVarSet": 2, - "CtorExistQVars": 2, - "CtorKindMap": 2, - "CtorExistentialConstraints": 2, - "CtorArgTypes": 2, - "CtorRetType": 2, - "TypeVarSet0": 5, - "tvarset_merge_renaming": 3, - "CtorToParentRenaming": 6, - "apply_variable_renaming_to_tvar_list": 2, - "ParentExistQVars": 6, - "apply_variable_renaming_to_tvar_kind_map": 2, - "ParentKindMap": 7, - "apply_variable_renaming_to_prog_constraint_list": 1, - "ParentExistentialConstraints": 3, - "apply_variable_renaming_to_type_list": 4, - "ParentArgTypes": 6, - "apply_variable_renaming_to_type": 1, - "ParentRetType": 2, - "poly_info_set_typevarset": 3, - "type_list_subsumes_det": 3, - "ParentToActualTypeSubst": 6, - "NumExistentialConstraints": 3, - "lookup_hlds_constraint_list": 4, - "ActualExistentialConstraints": 4, - "ExtraTypeClassVarsMCAs": 2, - "ExtraTypeClassVars": 2, - "assumed": 2, - "make_existq_typeclass_info_vars": 2, - "constraint_list_get_tvars": 3, - "ParentExistConstrainedTVars": 4, - "ParentUnconstrainedExistQVars": 2, - "apply_rec_subst_to_tvar_list": 4, - "ActualExistentialTypes": 2, - "ExtraTypeInfoVarsMCAs": 2, - "ExtraTypeInfoVars": 2, - "ExtraTypeClassVars.": 1, - "bound": 1, - "Attributes": 2, - "ProcExtraArgs": 2, - "MaybeTraceRuntimeCond": 2, - "Impl": 14, - "foreign_arg_var": 1, - "CanOptAwayUnnamed": 11, - "polymorphism_process_foreign_proc_args": 3, - "ExtraArgs": 5, - "pragma_foreign_code_impl": 4, - "foreign_arg": 1, - "PredTypeVarSet": 8, - "UnivCs": 4, - "ExistCs": 4, - "UnivVars0": 2, - "get_constrained_vars": 2, - "UnivConstrainedVars": 2, - "ExistVars0": 2, - "ExistConstrainedVars": 2, - "PredTypeVars0": 2, - "PredTypeVars1": 2, - "PredTypeVars2": 2, - "PredTypeVars": 3, - "foreign_proc_add_typeclass_info": 4, - "ExistTypeClassArgInfos": 2, - "UnivTypeClassArgInfos": 2, - "TypeClassArgInfos": 2, - "list.filter": 1, - "X": 9, - "semidet": 2, - "list.member": 2, - "ExistUnconstrainedVars": 2, - "UnivUnconstrainedVars": 2, - "foreign_proc_add_typeinfo": 4, - "ExistTypeArgInfos": 2, - "UnivTypeArgInfos": 2, - "TypeInfoArgInfos": 2, - "ArgInfos": 2, - "TypeInfoTypes": 2, - "func": 24, - "type_info_type": 1, - "UnivTypes": 2, - "ExistTypes": 2, - "OrigArgTypes": 2, - "make_foreign_args": 1, - "tvarset": 3, - "pair": 7, - "string": 115, - "box_policy": 2, - "Constraint": 2, - "MaybeArgName": 7, - "native_if_possible": 2, - "constraint": 2, - "SymName": 4, - "Name": 4, - "sym_name_to_string_sep": 1, - "TypeVarNames": 2, - "underscore_and_tvar_name": 3, - "string.append_list": 1, - "ConstraintVarName": 3, - "foreign_code_does_not_use_variable": 4, - "TVar": 4, - "varset.search_name": 1, - "TypeVarName": 2, - "C_VarName": 3, - "VarName": 2, - "foreign_code_uses_variable": 1, - "TVarName": 2, - "varset.lookup_name": 2, - "TVarName0": 1, - "TVarName0.": 1, - "cache_maps": 3, - "case": 4, - "Case0": 2, - "Case": 2, - "MainConsId": 2, - "OtherConsIds": 2, - "PredExistQVars": 2, - "PredKindMap": 3, - "varset.is_empty": 1, - "PredToParentTypeRenaming": 6, - "ParentTVars": 4, - "apply_variable_renaming_to_prog_constraints": 1, - "ParentClassContext": 2, - "ParentUnivConstraints": 3, - "ParentExistConstraints": 3, - "ParentUnivConstrainedTVars": 2, - "ParentUnconstrainedTVars0": 2, - "ParentUnconstrainedTVars1": 2, - "ParentUnconstrainedTVars": 3, - "ParentUnconstrainedUnivTVars": 3, - "ParentUnconstrainedExistTVars": 2, - "NumUnivConstraints": 2, - "ActualUnivConstraints": 2, - "ActualExistQVarTypes": 2, - "prog_type.type_list_to_var_list": 1, - "ActualExistQVars0": 2, - "ActualExistQVars": 2, - "ExtraUnivClassVarsMCAs": 2, - "ExtraUnivClassGoals": 2, - "ExtraUnivClassVars": 2, - "ExtraExistClassVars": 2, - "ExtraExistClassGoals": 2, - "ActualUnconstrainedUnivTypes": 2, - "ExtraUnivTypeInfoVarsMCAs": 2, - "ExtraUnivTypeInfoGoals": 2, - "ExtraUnivTypeInfoVars": 2, - "ActualUnconstrainedExistTypes": 2, - "ExtraExistTypeInfoVarsMCAs": 2, - "ExtraExistTypeInfoGoals": 2, - "ExtraExistTypeInfoVars": 2, - "CalleePredInfo": 2, - "CalleeProcInfo": 3, - "CallArgs0": 3, - "BuiltinState": 2, - "TVarSet0": 2, - "ActualArgTypes0": 3, - "PredTVarSet": 2, - "_PredExistQVars": 1, - "proc_info_get_headvars": 2, - "CalleeHeadVars": 2, - "proc_info_get_rtti_varmaps": 1, - "CalleeRttiVarMaps": 2, - "NCallArgs0": 2, - "NPredArgs": 2, - "NExtraArgs": 3, - "OrigPredArgTypes0": 2, - "list.take": 1, - "CalleeExtraHeadVars0": 2, - "OrigPredArgTypes": 2, - "CalleeExtraHeadVars": 2, - "TVarSet": 2, - "PredToParentRenaming": 3, - "OrigParentArgTypes": 2, - "ParentToActualTSubst": 2, - "GetTypeInfoTypes": 2, - "ProgVar": 2, - "TypeInfoType": 2, - "rtti_varmaps_var_info": 1, - "VarInfo": 4, - "type_info_var": 1, - "typeclass_info_var": 1, - "non_rtti_var": 1, - "PredTypeInfoTypes": 2, - "ParentTypeInfoTypes": 2, - "apply_rec_subst_to_type_list": 1, - "ActualTypeInfoTypes": 2, - "Ctxt": 2, - "ExtraArgsConstArgs": 2, - "CallArgs": 2, - "NonLocals1": 2, - "CallGoalExpr": 2, - "CallGoal": 2, - "char.": 1, - "getopt_io.": 1, - "short_option": 36, - "option": 9, - "long_option": 241, - "option_defaults": 2, - "option_data": 2, - "nondet.": 1, - "special_handler": 1, - "special_data": 1, - "option_table": 5, - "maybe_option_table": 3, - "inconsequential_options": 1, - "set": 16, - "options_help": 1, - "option_table_add_mercury_library_directory": 1, - "option_table.": 2, - "option_table_add_search_library_files_directory": 1, - "quote_arg": 1, - "inhibit_warnings": 4, - "inhibit_accumulator_warnings": 3, - "halt_at_warn": 3, - "halt_at_syntax_errors": 3, - "halt_at_auto_parallel_failure": 3, - "warn_singleton_vars": 3, - "warn_overlapping_scopes": 3, - "warn_det_decls_too_lax": 3, - "warn_inferred_erroneous": 3, - "warn_nothing_exported": 3, - "warn_unused_args": 3, - "warn_interface_imports": 3, - "warn_missing_opt_files": 3, - "warn_missing_trans_opt_files": 3, - "warn_missing_trans_opt_deps": 3, - "warn_non_contiguous_clauses": 3, - "warn_non_contiguous_foreign_procs": 3, - "warn_non_stratification": 3, - "warn_unification_cannot_succeed": 3, - "warn_simple_code": 3, - "warn_duplicate_calls": 3, - "warn_missing_module_name": 3, - "warn_wrong_module_name": 3, - "warn_smart_recompilation": 3, - "warn_undefined_options_variables": 3, - "warn_non_tail_recursion": 3, - "warn_target_code": 3, - "warn_up_to_date": 3, - "warn_stubs": 3, - "warn_dead_procs": 3, - "warn_table_with_inline": 3, - "warn_non_term_special_preds": 3, - "warn_known_bad_format_calls": 3, - "warn_unknown_format_calls": 3, - "warn_obsolete": 3, - "warn_insts_without_matching_type": 3, - "warn_unused_imports": 3, - "inform_ite_instead_of_switch": 3, - "warn_unresolved_polymorphism": 3, - "warn_suspicious_foreign_procs": 3, - "warn_state_var_shadowing": 3, - "inform_inferred": 3, - "inform_inferred_types": 3, - "inform_inferred_modes": 3, - "verbose": 4, - "very_verbose": 4, - "verbose_errors": 4, - "verbose_recompilation": 3, - "find_all_recompilation_reasons": 3, - "verbose_make": 3, - "verbose_commands": 3, - "output_compile_error_lines": 3, - "report_cmd_line_args": 3, - "report_cmd_line_args_in_doterr": 3, - "statistics": 4, - "detailed_statistics": 3, - "proc_size_statistics": 3, - "debug_types": 4, - "debug_modes": 4, - "debug_modes_statistics": 3, - "debug_modes_minimal": 3, - "debug_modes_verbose": 3, - "debug_modes_pred_id": 3, - "debug_dep_par_conj": 3, - "debug_det": 4, - "debug_code_gen_pred_id": 3, - "debug_opt": 3, - "debug_term": 4, - "term": 10, - "termination": 3, - "analysis": 1, - "debug_opt_pred_id": 3, - "debug_opt_pred_name": 3, - "debug_pd": 3, - "pd": 1, - "partial": 1, - "deduction/deforestation": 1, - "debug_il_asm": 3, - "il_asm": 1, - "IL": 2, - "generation": 1, - "via": 1, - "asm": 1, - "debug_liveness": 3, - "debug_stack_opt": 3, - "debug_make": 3, - "debug_closure": 3, - "debug_trail_usage": 3, - "debug_mode_constraints": 3, - "debug_intermodule_analysis": 3, - "debug_mm_tabling_analysis": 3, - "debug_indirect_reuse": 3, - "debug_type_rep": 3, - "make_short_interface": 4, - "make_interface": 5, - "make_private_interface": 4, - "make_optimization_interface": 5, - "make_transitive_opt_interface": 5, - "make_analysis_registry": 3, - "make_xml_documentation": 5, - "generate_source_file_mapping": 4, - "generate_dependency_file": 3, - "generate_dependencies": 4, - "generate_module_order": 3, - "generate_standalone_interface": 3, - "convert_to_mercury": 6, - "typecheck_only": 4, - "errorcheck_only": 4, - "target_code_only": 10, - "compile_only": 4, - "compile_to_shared_lib": 3, - "output_grade_string": 3, - "output_link_command": 3, - "output_shared_lib_link_command": 3, - "output_libgrades": 3, - "output_cc": 3, - "output_c_compiler_type": 4, - "output_csharp_compiler_type": 3, - "output_cflags": 3, - "output_library_link_flags": 3, - "output_grade_defines": 3, - "output_c_include_directory_flags": 4, - "smart_recompilation": 3, - "generate_item_version_numbers": 2, - "generate_mmc_make_module_dependencies": 4, - "assume_gmake": 3, - "trace_level": 4, - "trace_optimized": 4, - "trace_prof": 3, - "trace_table_io": 3, - "trace_table_io_only_retry": 3, - "trace_table_io_states": 3, - "trace_table_io_require": 3, - "trace_table_io_all": 3, - "trace_goal_flags": 3, - "prof_optimized": 4, - "exec_trace_tail_rec": 3, - "suppress_trace": 3, - "force_disable_tracing": 3, - "delay_death": 3, - "delay_death_max_vars": 3, - "stack_trace_higher_order": 3, - "force_disable_ssdebug": 3, - "generate_bytecode": 3, - "line_numbers": 4, - "auto_comments": 4, - "frameopt_comments": 3, - "max_error_line_width": 3, - "show_dependency_graph": 3, - "imports_graph": 3, - "dump_trace_counts": 3, - "dump_hlds": 5, - "dump_hlds_pred_id": 3, - "dump_hlds_pred_name": 3, - "dump_hlds_alias": 4, - "dump_hlds_options": 3, - "dump_hlds_inst_limit": 3, - "dump_hlds_file_suffix": 3, - "dump_same_hlds": 3, - "dump_mlds": 4, - "verbose_dump_mlds": 4, - "mode_constraints": 3, - "simple_mode_constraints": 3, - "prop_mode_constraints": 4, - "benchmark_modes": 3, - "benchmark_modes_repeat": 3, - "sign_assembly": 3, - "separate_assemblies": 3, - "reorder_conj": 3, - "reorder_disj": 3, - "fully_strict": 3, - "strict_sequential": 3, - "allow_stubs": 3, - "infer_types": 3, - "infer_modes": 3, - "infer_det": 4, - "infer_all": 3, - "type_inference_iteration_limit": 3, - "mode_inference_iteration_limit": 3, - "event_set_file_name": 3, - "grade": 4, - "target": 14, - "il": 5, - "il_only": 4, - "compile_to_c": 4, - "c": 1, - "java": 35, - "java_only": 4, - "csharp": 6, - "csharp_only": 4, - "x86_64": 6, - "x86_64_only": 4, - "erlang": 6, - "erlang_only": 4, - "exec_trace": 3, - "decl_debug": 3, - "profiling": 5, - "profile_time": 5, - "profile_calls": 6, - "time_profiling": 3, - "memory_profiling": 3, - "profile_mem": 1, - "deep_profiling": 3, - "profile_deep": 4, - "profile_memory": 3, - "use_activation_counts": 3, - "pre_prof_transforms_simplify": 3, - "pre_implicit_parallelism_simplify": 3, - "coverage_profiling": 3, - "coverage_profiling_via_calls": 3, - "coverage_profiling_static": 3, - "profile_deep_coverage_after_goal": 3, - "profile_deep_coverage_branch_ite": 3, - "profile_deep_coverage_branch_switch": 3, - "profile_deep_coverage_branch_disj": 3, - "profile_deep_coverage_use_portcounts": 3, - "profile_deep_coverage_use_trivial": 2, - "profile_for_feedback": 2, - "use_zeroing_for_ho_cycles": 2, - "use_lots_of_ho_specialization": 2, - "deep_profile_tail_recursion": 2, - "record_term_sizes_as_words": 2, - "record_term_sizes_as_cells": 2, - "experimental_complexity": 2, - "gc": 2, - "parallel": 3, - "threadscope": 2, - "use_trail": 3, - "trail_segments": 2, - "use_minimal_model_stack_copy": 2, - "use_minimal_model_own_stacks": 2, - "minimal_model_debug": 2, - "single_prec_float": 2, - "type_layout": 2, - "maybe_thread_safe_opt": 2, - "extend_stacks_when_needed": 2, - "stack_segments": 2, - "use_regions": 2, - "use_alloc_regions": 2, - "use_regions_debug": 2, - "use_regions_profiling": 2, - "source_to_source_debug": 5, - "ssdb_trace_level": 3, - "link_ssdb_libs": 4, - "tags": 2, - "num_tag_bits": 2, - "num_reserved_addresses": 2, - "num_reserved_objects": 2, - "bits_per_word": 2, - "bytes_per_word": 2, - "conf_low_tag_bits": 2, - "unboxed_float": 3, - "unboxed_enums": 2, - "unboxed_no_tag_types": 2, - "sync_term_size": 2, - "words": 1, - "gcc_non_local_gotos": 3, - "gcc_global_registers": 2, - "asm_labels": 3, - "pic_reg": 2, - "use_float_registers": 5, - "highlevel_code": 3, - "highlevel_data": 2, - "gcc_nested_functions": 2, - "det_copy_out": 2, - "nondet_copy_out": 2, - "put_commit_in_own_func": 2, - "put_nondet_env_on_heap": 2, - "verifiable_code": 2, - "il_refany_fields": 2, - "il_funcptr_types": 2, - "il_byref_tailcalls": 2, - "backend_foreign_languages": 2, - "stack_trace": 2, - "basic_stack_layout": 2, - "agc_stack_layout": 2, - "procid_stack_layout": 2, - "trace_stack_layout": 2, - "body_typeinfo_liveness": 4, - "can_compare_constants_as_ints": 2, - "pretest_equality_cast_pointers": 2, - "can_compare_compound_values": 2, - "lexically_order_constructors": 2, - "mutable_always_boxed": 2, - "delay_partial_instantiations": 2, - "allow_defn_of_builtins": 2, - "special_preds": 2, - "type_ctor_info": 2, - "type_ctor_layout": 2, - "type_ctor_functors": 2, - "new_type_class_rtti": 2, - "rtti_line_numbers": 2, - "disable_minimal_model_stack_copy_pneg": 2, - "disable_minimal_model_stack_copy_cut": 2, - "use_minimal_model_stack_copy_pneg": 2, - "use_minimal_model_stack_copy_cut": 3, - "disable_trail_ops": 3, - "size_region_ite_fixed": 2, - "size_region_disj_fixed": 2, - "size_region_semi_disj_fixed": 1, - "size_region_commit_fixed": 2, - "size_region_ite_protect": 2, - "size_region_ite_snapshot": 2, - "size_region_semi_disj_protect": 2, - "size_region_disj_snapshot": 2, - "size_region_commit_entry": 2, - "solver_type_auto_init": 2, - "allow_multi_arm_switches": 2, - "type_check_constraints": 2, - "allow_argument_packing": 2, - "low_level_debug": 2, - "table_debug": 2, - "trad_passes": 2, - "parallel_liveness": 2, - "parallel_code_gen": 2, - "polymorphism": 2, - "reclaim_heap_on_failure": 2, - "reclaim_heap_on_semidet_failure": 2, - "reclaim_heap_on_nondet_failure": 2, - "have_delay_slot": 2, - "num_real_r_regs": 2, - "num_real_f_regs": 2, - "num_real_r_temps": 2, - "num_real_f_temps": 2, - "max_jump_table_size": 2, - "max_specialized_do_call_closure": 2, - "max_specialized_do_call_class_method": 2, - "compare_specialization": 2, - "should_pretest_equality": 2, - "fact_table_max_array_size": 2, - "fact_table_hash_percent_full": 2, - "gcc_local_labels": 2, - "prefer_switch": 2, - "opt_no_return_calls": 3, - "opt_level": 3, - "opt_level_number": 2, - "opt_space": 2, - "Default": 3, - "optimize": 3, - "time.": 1, - "intermodule_optimization": 2, - "read_opt_files_transitively": 2, - "use_opt_files": 2, - "use_trans_opt_files": 2, - "transitive_optimization": 2, - "intermodule_analysis": 2, - "analysis_repeat": 2, - "analysis_file_cache": 2, - "allow_inlining": 2, - "inlining": 2, - "inline_simple": 2, - "inline_builtins": 2, - "inline_single_use": 2, - "inline_call_cost": 2, - "inline_compound_threshold": 2, - "inline_simple_threshold": 2, - "inline_vars_threshold": 2, - "intermod_inline_simple_threshold": 2, - "from_ground_term_threshold": 2, - "enable_const_struct": 2, - "common_struct": 2, - "common_struct_preds": 2, - "common_goal": 2, - "constraint_propagation": 2, - "local_constraint_propagation": 2, - "optimize_unused_args": 2, - "intermod_unused_args": 2, - "optimize_higher_order": 2, - "higher_order_size_limit": 2, - "higher_order_arg_limit": 2, - "unneeded_code": 2, - "unneeded_code_copy_limit": 2, - "unneeded_code_debug": 2, - "unneeded_code_debug_pred_name": 2, - "type_specialization": 2, - "user_guided_type_specialization": 2, - "introduce_accumulators": 2, - "optimize_constructor_last_call_accumulator": 2, - "optimize_constructor_last_call_null": 3, - "optimize_constructor_last_call": 2, - "optimize_duplicate_calls": 2, - "constant_propagation": 2, - "excess_assign": 2, - "optimize_format_calls": 2, - "optimize_saved_vars_const": 2, - "optimize_saved_vars_cell": 2, - "optimize_saved_vars_cell_loop": 2, - "optimize_saved_vars_cell_full_path": 2, - "optimize_saved_vars_cell_on_stack": 2, - "optimize_saved_vars_cell_candidate_headvars": 2, - "optimize_saved_vars_cell_cv_store_cost": 2, - "optimize_saved_vars_cell_cv_load_cost": 2, - "optimize_saved_vars_cell_fv_store_cost": 2, - "optimize_saved_vars_cell_fv_load_cost": 2, - "optimize_saved_vars_cell_op_ratio": 2, - "optimize_saved_vars_cell_node_ratio": 2, - "optimize_saved_vars_cell_all_path_node_ratio": 2, - "optimize_saved_vars_cell_include_all_candidates": 2, - "optimize_saved_vars": 2, - "loop_invariants": 2, - "delay_construct": 2, - "follow_code": 2, - "optimize_dead_procs": 2, - "deforestation": 2, - "deforestation_depth_limit": 2, - "deforestation_cost_factor": 2, - "deforestation_vars_threshold": 2, - "deforestation_size_threshold": 2, - "analyse_trail_usage": 2, - "optimize_trail_usage": 3, - "optimize_region_ops": 3, - "analyse_mm_tabling": 2, - "untuple": 2, - "tuple": 2, - "tuple_trace_counts_file": 2, - "tuple_costs_ratio": 2, - "tuple_min_args": 2, - "inline_par_builtins": 2, - "always_specialize_in_dep_par_conjs": 2, - "allow_some_paths_only_waits": 2, - "region_analysis": 3, - "structure_sharing_analysis": 2, - "structure_sharing_widening": 2, - "structure_reuse_analysis": 2, - "structure_reuse_constraint": 2, - "structure_reuse_constraint_arg": 2, - "structure_reuse_max_conditions": 2, - "structure_reuse_repeat": 2, - "structure_reuse_free_cells": 2, - "termination_check": 2, - "verbose_check_termination": 2, - "termination_single_args": 2, - "termination_norm": 2, - "termination_error_limit": 2, - "termination_path_limit": 2, - "termination2": 2, - "check_termination2": 2, - "verbose_check_termination2": 2, - "termination2_norm": 2, - "widening_limit": 2, - "arg_size_analysis_only": 2, - "propagate_failure_constrs": 2, - "term2_maximum_matrix_size": 2, - "analyse_exceptions": 2, - "analyse_closures": 2, - "smart_indexing": 2, - "dense_switch_req_density": 2, - "lookup_switch_req_density": 2, - "dense_switch_size": 2, - "lookup_switch_size": 2, - "string_hash_switch_size": 2, - "string_binary_switch_size": 2, - "tag_switch_size": 2, - "try_switch_size": 2, - "binary_switch_size": 2, - "switch_single_rec_base_first": 2, - "switch_multi_rec_base_first": 2, - "static_ground_cells": 3, - "static_ground_floats": 3, - "static_code_addresses": 3, - "use_atomic_cells": 2, - "middle_rec": 2, - "simple_neg": 2, - "allow_hijacks": 3, - "optimize_tailcalls": 2, - "optimize_initializations": 2, - "eliminate_local_vars": 2, - "generate_trail_ops_inline": 2, - "common_data": 2, - "common_layout_data": 2, - "Also": 1, - "for": 8, - "MLDS": 2, - "optimizations.": 1, - "optimize_peep": 2, - "optimize_peep_mkword": 2, - "optimize_jumps": 2, - "optimize_fulljumps": 2, - "pessimize_tailcalls": 2, - "checked_nondet_tailcalls": 2, - "use_local_vars": 2, - "local_var_access_threshold": 2, - "standardize_labels": 2, - "optimize_labels": 2, - "optimize_dups": 2, - "optimize_proc_dups": 2, - "optimize_frames": 2, - "optimize_delay_slot": 2, - "optimize_reassign": 2, - "optimize_repeat": 2, - "layout_compression_limit": 2, - "use_macro_for_redo_fail": 2, - "emit_c_loops": 2, - "procs_per_c_function": 3, - "everything_in_one_c_function": 2, - "local_thread_engine_base": 2, - "erlang_switch_on_strings_as_atoms": 2, - "target_debug": 2, - "cc": 2, - "cflags": 2, - "quoted_cflag": 2, - "c_include_directory": 2, - "c_optimize": 2, - "ansi_c": 2, - "inline_alloc": 2, - "gcc_flags": 2, - "quoted_gcc_flag": 2, - "clang_flags": 2, - "quoted_clang_flag": 2, - "msvc_flags": 2, - "quoted_msvc_flag": 2, - "cflags_for_warnings": 2, - "cflags_for_optimization": 2, - "cflags_for_ansi": 2, - "cflags_for_regs": 2, - "cflags_for_gotos": 2, - "cflags_for_threads": 2, - "cflags_for_debug": 2, - "cflags_for_pic": 2, - "c_flag_to_name_object_file": 2, - "object_file_extension": 2, - "pic_object_file_extension": 2, - "link_with_pic_object_file_extension": 2, - "c_compiler_type": 2, - "csharp_compiler_type": 2, - "java_compiler": 2, - "java_interpreter": 2, - "java_flags": 2, - "quoted_java_flag": 2, - "java_classpath": 2, - "java_object_file_extension": 2, - "il_assembler": 2, - "ilasm_flags": 2, - "quoted_ilasm_flag": 2, - "dotnet_library_version": 2, - "support_ms_clr": 2, - "support_rotor_clr": 2, - "csharp_compiler": 2, - "csharp_flags": 2, - "quoted_csharp_flag": 2, - "cli_interpreter": 2, - "erlang_compiler": 2, - "erlang_interpreter": 2, - "erlang_flags": 2, - "quoted_erlang_flag": 2, - "erlang_include_directory": 2, - "erlang_object_file_extension": 2, - "erlang_native_code": 2, - "erlang_inhibit_trivial_warnings": 2, - "output_file_name": 3, - "ld_flags": 2, - "quoted_ld_flag": 2, - "ld_libflags": 2, - "quoted_ld_libflag": 2, - "link_library_directories": 3, - "runtime_link_library_directories": 3, - "link_libraries": 3, - "link_objects": 2, - "mercury_library_directories": 2, - "mercury_library_directory_special": 2, - "search_library_files_directories": 2, - "search_library_files_directory_special": 2, - "mercury_libraries": 2, - "mercury_library_special": 2, - "mercury_standard_library_directory": 2, - "mercury_standard_library_directory_special": 2, - "init_file_directories": 2, - "init_files": 2, - "trace_init_files": 2, - "linkage": 2, - "linkage_special": 2, - "mercury_linkage": 2, - "mercury_linkage_special": 2, - "strip": 2, - "demangle": 2, - "allow_undefined": 2, - "use_readline": 2, - "runtime_flags": 2, - "extra_initialization_functions": 2, - "frameworks": 2, - "framework_directories": 3, - "shared_library_extension": 2, - "library_extension": 2, - "executable_file_extension": 2, - "link_executable_command": 2, - "link_shared_lib_command": 2, - "create_archive_command": 2, - "create_archive_command_output_flag": 2, - "create_archive_command_flags": 2, - "ranlib_command": 2, - "ranlib_flags": 2, - "mkinit_command": 2, - "mkinit_erl_command": 2, - "demangle_command": 2, - "filtercc_command": 2, - "trace_libs": 2, - "thread_libs": 2, - "hwloc_libs": 2, - "hwloc_static_libs": 2, - "shared_libs": 2, - "math_lib": 2, - "readline_libs": 2, - "linker_opt_separator": 2, - "linker_thread_flags": 2, - "shlib_linker_thread_flags": 2, - "linker_static_flags": 2, - "linker_strip_flag": 2, - "linker_link_lib_flag": 2, - "linker_link_lib_suffix": 2, - "shlib_linker_link_lib_flag": 2, - "shlib_linker_link_lib_suffix": 2, - "linker_debug_flags": 2, - "shlib_linker_debug_flags": 2, - "linker_trace_flags": 2, - "shlib_linker_trace_flags": 2, - "linker_path_flag": 2, - "linker_rpath_flag": 2, - "linker_rpath_separator": 2, - "shlib_linker_rpath_flag": 2, - "shlib_linker_rpath_separator": 2, - "linker_allow_undefined_flag": 2, - "linker_error_undefined_flag": 2, - "shlib_linker_use_install_name": 2, - "shlib_linker_install_name_flag": 2, - "shlib_linker_install_name_path": 2, - "java_archive_command": 2, - "make": 3, - "keep_going": 3, - "rebuild": 3, - "jobs": 3, - "track_flags": 2, - "invoked_by_mmc_make": 2, - "extra_init_command": 2, - "pre_link_command": 2, - "install_prefix": 2, - "use_symlinks": 2, - "mercury_configuration_directory": 2, - "mercury_configuration_directory_special": 2, - "install_command": 2, - "install_command_dir_option": 2, - "libgrades": 2, - "libgrades_include_components": 2, - "libgrades_exclude_components": 2, - "lib_linkages": 2, - "flags_file": 2, - "options_files": 2, - "config_file": 2, - "options_search_directories": 2, - "use_subdirs": 2, - "use_grade_subdirs": 2, - "search_directories": 3, - "intermod_directories": 2, - "use_search_directories_for_intermod": 2, - "libgrade_install_check": 2, - "order_make_by_timestamp": 2, - "show_make_times": 2, - "extra_library_header": 2, - "restricted_command_line": 2, - "env_type": 2, - "host_env_type": 2, - "target_env_type": 2, - "filenames_from_stdin": 2, - "typecheck_ambiguity_warn_limit": 2, - "typecheck_ambiguity_error_limit": 2, - "help": 4, - "version": 3, - "fullarch": 2, - "cross_compiling": 2, - "local_module_id": 2, - "analysis_file_cache_dir": 2, - "compiler_sufficiently_recent": 2, - "experiment": 2, - "ignore_par_conjunctions": 2, - "control_granularity": 2, - "distance_granularity": 2, - "implicit_parallelism": 2, - "feedback_file": 2, - "par_loop_control": 2, - "par_loop_control_preserve_tail_recursion.": 1, - "libs.handle_options.": 1, - "dir.": 1, - "option_category": 2, - "warning_option": 2, - "verbosity_option": 2, - "output_option": 2, - "aux_output_option": 2, - "language_semantics_option": 2, - "compilation_model_option": 2, - "internal_use_option": 2, - "code_gen_option": 2, - "special_optimization_option": 2, - "optimization_option": 2, - "target_code_compilation_option": 2, - "link_option": 2, - "build_system_option": 2, - "miscellaneous_option.": 1, - "Option": 2, - "option_defaults_2": 18, - "_Category": 1, - "OptionsList": 2, - "multi.": 1, - "bool_special": 7, - "XXX": 3, - "should": 1, - "be": 1, - "accumulating": 49, - "maybe_string": 6, - "special": 17, - "string_special": 18, - "int_special": 1, - "maybe_string_special": 1, - "file_special": 1, - "miscellaneous_option": 1, - "par_loop_control_preserve_tail_recursion": 1, - "hello.": 1, - "io.write_string": 1, - "expr.": 1, - "token": 5, - "num": 11, - "parse": 1, - "exprn/1": 1, - "xx": 1, - "scan": 16, - "rule": 3, - "exprn": 7, - "Num": 18, - "B": 8, - "factor": 6, - "/": 1, - "Chars": 2, - "Toks": 13, - "Toks0": 11, - "list__reverse": 1, - "C": 34, - "Cs": 9, - "char__is_whitespace": 1, - "char__is_digit": 2, - "takewhile": 1, - "Digits": 2, - "Rest": 2, - "string__from_char_list": 1, - "NumStr": 2, - "string__det_to_int": 1, - "rot13_ralph.": 1, - "io__read_byte": 1, - "Result": 4, - "io__write_byte": 1, - "ErrNo": 2, - "z": 1, - "Rot13": 2, - "<": 14, - "rem": 1, - "ll_backend.code_info.": 1, - "hlds.code_model.": 1, - "hlds.hlds_llds.": 1, - "ll_backend.continuation_info.": 1, - "ll_backend.global_data.": 1, - "ll_backend.layout.": 1, - "ll_backend.llds.": 1, - "ll_backend.trace_gen.": 1, - "counter.": 1, - "set_tree234.": 1, - "backend_libs.builtin_ops.": 1, - "backend_libs.proc_label.": 1, - "hlds.arg_info.": 1, - "hlds.hlds_desc.": 1, - "libs.trace_params.": 1, - "ll_backend.code_util.": 1, - "ll_backend.opt_debug.": 1, - "ll_backend.var_locn.": 1, - "parse_tree.mercury_to_mercury.": 1, - "cord.": 1, - "stack.": 1, - "code_info.": 1, - "code_info_init": 2, - "globals": 5, - "abs_follow_vars": 3, - "static_cell_info": 4, - "const_struct_map": 3, - "resume_point_info": 11, - "trace_slot_info": 3, - "containing_goal_map": 4, - "code_info": 208, - "get_globals": 5, - "get_exprn_opts": 2, - "exprn_opts": 3, - "get_module_info": 7, - "get_pred_id": 6, - "get_proc_id": 5, - "get_pred_info": 2, - "get_proc_info": 4, - "get_varset": 3, - "get_var_types": 3, - "vartypes.": 1, - "get_maybe_trace_info": 2, - "trace_info": 3, - "get_emit_trail_ops": 2, - "add_trail_ops": 5, - "get_emit_region_ops": 2, - "add_region_ops": 6, - "get_forward_live_vars": 2, - "set_of_progvar": 10, - "set_forward_live_vars": 2, - "get_instmap": 4, - "instmap": 3, - "set_instmap": 3, - "get_par_conj_depth": 2, - "set_par_conj_depth": 2, - "get_label_counter": 3, - "counter": 6, - "get_succip_used": 2, - "get_layout_info": 4, - "proc_label_layout_info": 3, - "get_proc_trace_events": 2, - "set_proc_trace_events": 2, - "get_closure_layouts": 3, - "closure_proc_id_data": 4, - "get_max_reg_in_use_at_trace": 2, - "set_max_reg_in_use_at_trace": 2, - "get_created_temp_frame": 2, - "get_static_cell_info": 5, - "set_static_cell_info": 5, - "get_alloc_sites": 3, - "set_tree234": 3, - "alloc_site_info": 4, - "set_alloc_sites": 3, - "get_used_env_vars": 2, - "set_used_env_vars": 2, - "get_opt_trail_ops": 2, - "get_opt_region_ops": 2, - "get_auto_comments": 2, - "get_lcmc_null": 2, - "get_containing_goal_map": 3, - "get_containing_goal_map_det": 2, - "get_const_struct_map": 2, - "add_out_of_line_code": 2, - "llds_code": 21, - "get_out_of_line_code": 2, - "get_var_slot_count": 2, - "set_maybe_trace_info": 3, - "get_opt_no_return_calls": 2, - "get_zombies": 2, - "set_zombies": 2, - "get_var_locn_info": 7, - "var_locn_info": 3, - "set_var_locn_info": 4, - "get_temps_in_use": 6, - "lval": 114, - "set_temps_in_use": 4, - "get_fail_info": 13, - "fail_info": 24, - "set_fail_info": 9, - "set_label_counter": 3, - "set_succip_used": 3, - "set_layout_info": 4, - "get_max_temp_slot_count": 2, - "set_max_temp_slot_count": 2, - "get_temp_content_map": 3, - "slot_contents": 4, - "set_temp_content_map": 2, - "get_persistent_temps": 3, - "set_persistent_temps": 2, - "set_closure_layouts": 3, - "get_closure_seq_counter": 3, - "set_closure_seq_counter": 3, - "set_created_temp_frame": 2, - "code_info_static": 26, - "code_info_loc_dep": 22, - "code_info_persistent": 44, - "cis_globals": 2, - "cis_exprn_opts": 2, - "cis_module_info": 2, - "cis_pred_id": 2, - "cis_proc_id": 2, - "cis_pred_info": 2, - "cis_proc_info": 2, - "cis_proc_label": 1, - "proc_label": 2, - "cis_varset": 2, - "cis_var_slot_count": 2, - "cis_maybe_trace_info": 3, - "cis_opt_no_resume_calls": 2, - "cis_emit_trail_ops": 2, - "cis_opt_trail_ops": 2, - "cis_emit_region_ops": 2, - "cis_opt_region_ops": 2, - "cis_auto_comments": 2, - "cis_lcmc_null": 2, - "cis_containing_goal_map": 2, - "cis_const_struct_map": 2, - "cild_forward_live_vars": 3, - "cild_instmap": 3, - "cild_zombies": 3, - "cild_var_locn_info": 3, - "cild_temps_in_use": 3, - "cild_fail_info": 3, - "cild_par_conj_depth": 3, - "cip_label_num_src": 3, - "cip_store_succip": 3, - "cip_label_info": 3, - "cip_proc_trace_events": 3, - "cip_stackslot_max": 3, - "cip_temp_contents": 3, - "cip_persistent_temps": 3, - "cip_closure_layout_seq": 3, - "cip_closure_layouts": 3, - "cip_max_reg_r_used": 3, - "cip_max_reg_f_used": 2, - "cip_created_temp_frame": 3, - "cip_static_cell_info": 3, - "cip_alloc_sites": 3, - "cip_used_env_vars": 3, - "cip_ts_string_table_size": 3, - "cip_ts_rev_string_table": 4, - "cip_out_of_line_code": 4, - "SaveSuccip": 2, - "Globals": 32, - "FollowVars": 6, - "StaticCellInfo": 8, - "ConstStructMap": 2, - "ResumePoint": 13, - "TraceSlotInfo": 5, - "MaybeContainingGoalMap": 5, - "TSRevStringTable": 2, - "TSStringTableSize": 2, - "CodeInfo": 2, - "ProcLabel": 8, - "make_proc_label": 1, - "proc_info_get_initial_instmap": 1, - "InstMap": 6, - "proc_info_get_liveness_info": 1, - "Liveness": 4, - "CodeModel": 8, - "proc_info_interface_code_model": 2, - "build_input_arg_list": 1, - "ArgList": 2, - "proc_info_get_varset": 1, - "proc_info_get_vartypes": 2, - "proc_info_get_stack_slots": 1, - "StackSlots": 5, - "ExprnOpts": 4, - "init_exprn_opts": 3, - "globals.lookup_bool_option": 18, - "UseFloatRegs": 6, - "FloatRegType": 3, - "reg_f": 1, - "reg_r": 2, - "globals.get_trace_level": 1, - "TraceLevel": 5, - "eff_trace_level_is_none": 2, - "trace_fail_vars": 1, - "FailVars": 3, - "MaybeFailVars": 3, - "EffLiveness": 3, - "init_var_locn_state": 1, - "VarLocnInfo": 12, - "stack.init": 1, - "ResumePoints": 14, - "AllowHijack": 3, - "Hijack": 6, - "allowed": 6, - "not_allowed": 5, - "DummyFailInfo": 2, - "resume_point_unknown": 9, - "may_be_different": 7, - "not_inside_non_condition": 2, - "TempContentMap": 4, - "set.init": 7, - "PersistentTemps": 4, - "TempsInUse": 8, - "Zombies": 2, - "set_of_var.init": 1, - "LayoutMap": 2, - "max_var_slot": 1, - "VarSlotMax": 2, - "trace_reserved_slots": 1, - "FixedSlots": 2, - "int.max": 1, - "SlotMax": 2, - "OptNoReturnCalls": 2, - "UseTrail": 2, - "DisableTrailOps": 2, - "EmitTrailOps": 3, - "do_not_add_trail_ops": 1, - "OptTrailOps": 2, - "OptRegionOps": 2, - "UseRegions": 3, - "EmitRegionOps": 3, - "do_not_add_region_ops": 1, - "AutoComments": 2, - "LCMCNull": 2, - "CodeInfo0": 2, - "init_fail_info": 2, - "will": 1, - "override": 1, - "this": 4, - "dummy": 2, - "value": 16, - "nested": 1, - "conjunction": 1, - "depth": 1, - "counter.init": 2, - "set_tree234.init": 1, - "cord.empty": 1, - "init_maybe_trace_info": 3, - "CodeInfo1": 2, - "exprn_opts.": 1, - "OptNLG": 3, - "NLG": 3, - "have_non_local_gotos": 1, - "do_not_have_non_local_gotos": 1, - "OptASM": 3, - "ASM": 3, - "have_asm_labels": 1, - "do_not_have_asm_labels": 1, - "OptSGCell": 3, - "SGCell": 3, - "have_static_ground_cells": 1, - "do_not_have_static_ground_cells": 1, - "OptUBF": 3, - "UBF": 3, - "have_unboxed_floats": 1, - "do_not_have_unboxed_floats": 1, - "OptFloatRegs": 3, - "do_not_use_float_registers": 1, - "OptSGFloat": 3, - "SGFloat": 3, - "have_static_ground_floats": 1, - "do_not_have_static_ground_floats": 1, - "OptStaticCodeAddr": 3, - "StaticCodeAddrs": 3, - "have_static_code_addresses": 1, - "do_not_have_static_code_addresses": 1, - "CI": 294, - "proc_info_get_has_tail_call_events": 1, - "HasTailCallEvents": 3, - "tail_call_events": 1, - "get_next_label": 5, - "TailRecLabel": 2, - "MaybeTailRecLabel": 3, - "no_tail_call_events": 1, - "trace_setup": 1, - "TraceInfo": 2, - "MaxRegR": 4, - "MaxRegF": 4, - "cip_max_reg_f_used.": 1, - "TI": 4, - "LV": 2, - "IM": 2, - "Zs": 2, - "EI": 2, - "FI": 2, - "LC": 2, - "SU": 2, - "LI": 2, - "PTE": 2, - "TM": 2, - "CM": 2, - "PT": 2, - "CLS": 2, - "CG": 2, - "MR": 4, - "MF": 1, - "MF.": 1, - "SCI": 2, - "ASI": 2, - "UEV": 2, - "ContainingGoalMap": 2, - "NewCode": 2, - "Code0": 2, - ".CI": 29, - "Code": 36, - "Code.": 1, - "get_stack_slots": 2, - "stack_slots": 1, - "get_follow_var_map": 2, - "abs_follow_vars_map": 1, - "get_next_non_reserved": 2, - "reg_type": 1, - "set_follow_vars": 4, - "pre_goal_update": 3, - "has_subgoals": 2, - "post_goal_update": 3, - "variable_type": 3, - "mer_type.": 1, - "variable_is_of_dummy_type": 2, - "is_dummy_type.": 1, - "search_type_defn": 4, - "hlds_type_defn": 1, - "lookup_type_defn": 2, - "hlds_type_defn.": 1, - "lookup_cheaper_tag_test": 2, - "maybe_cheaper_tag_test.": 1, - "filter_region_vars": 2, - "set_of_progvar.": 2, - "get_proc_model": 2, - "code_model.": 1, - "get_headvars": 2, - "get_arginfo": 2, - "arg_info": 2, - "get_pred_proc_arginfo": 3, - "current_resume_point_vars": 2, - "variable_name": 2, - "make_proc_entry_label": 2, - "code_addr.": 1, - "label": 5, - "succip_is_used": 2, - "add_trace_layout_for_label": 2, - "trace_port": 1, - "forward_goal_path": 1, - "user_event_info": 1, - "layout_label_info": 2, - "get_cur_proc_label": 4, - "get_next_closure_seq_no": 2, - "add_closure_layout": 2, - "add_threadscope_string": 2, - "get_threadscope_rev_string_table": 2, - "add_scalar_static_cell": 2, - "typed_rval": 1, - "data_id": 3, - "add_scalar_static_cell_natural_types": 2, - "rval": 3, - "add_vector_static_cell": 2, - "llds_type": 1, - "add_alloc_site_info": 2, - "prog_context": 1, - "alloc_site_id": 2, - "add_resume_layout_for_label": 2, - "var_locn_get_stack_slots": 1, - "FollowVarMap": 2, - "var_locn_get_follow_var_map": 1, - "RegType": 2, - "NextNonReserved": 2, - "var_locn_get_next_non_reserved": 1, - "VarLocnInfo0": 4, - "var_locn_set_follow_vars": 1, - "HasSubGoals": 3, - "goal_info_get_resume_point": 1, - "no_resume_point": 1, - "resume_point": 1, - "goal_info_get_follow_vars": 1, - "MaybeFollowVars": 3, - "goal_info_get_pre_deaths": 1, - "PreDeaths": 3, - "rem_forward_live_vars": 3, - "maybe_make_vars_forward_dead": 2, - "goal_info_get_pre_births": 1, - "PreBirths": 2, - "add_forward_live_vars": 2, - "does_not_have_subgoals": 2, - "goal_info_get_post_deaths": 2, - "PostDeaths": 5, - "goal_info_get_post_births": 1, - "PostBirths": 3, - "make_vars_forward_live": 1, - "InstMapDelta": 2, - "goal_info_get_instmap_delta": 1, - "InstMap0": 2, - "instmap.apply_instmap_delta": 1, - "TypeInfoLiveness": 2, - "body_should_use_typeinfo_liveness": 1, - "IsDummy": 2, - "VarType": 2, - "check_dummy_type": 1, - "TypeDefn": 6, - "type_to_ctor_det": 1, - "TypeCtor": 2, - "module_info_get_type_table": 1, - "TypeTable": 2, - "search_type_ctor_defn": 1, - "TypeDefnPrime": 2, - "CheaperTagTest": 3, - "get_type_defn_body": 1, - "TypeBody": 2, - "hlds_du_type": 1, - "CheaperTagTestPrime": 2, - "no_cheaper_tag_test": 1, - "ForwardLiveVarsBeforeGoal": 6, - "RegionVars": 2, - "code_info.get_var_types": 1, - "set_of_var.filter": 1, - "is_region_var": 1, - "ArgInfo": 4, - "proc_info_arg_info": 1, - "ResumeVars": 4, - "FailInfo": 19, - "ResumePointStack": 2, - "stack.det_top": 5, - "ResumePointInfo": 2, - "pick_first_resume_point": 1, - "ResumeMap": 8, - "ResumeMapVarList": 2, - "Varset": 2, - "Immed0": 3, - "CodeAddr": 2, - "Immed": 3, - "globals.lookup_int_option": 1, - "ProcsPerFunc": 2, - "CurPredId": 2, - "CurProcId": 2, - "make_entry_label": 1, - "Label": 8, - "C0": 4, - "counter.allocate": 2, - "internal_label": 3, - "Port": 2, - "IsHidden": 2, - "GoalPath": 2, - "MaybeSolverEventInfo": 2, - "Layout": 2, - "Internals0": 8, - "Exec": 5, - "trace_port_layout_info": 1, - "LabelNum": 8, - "entry_label": 2, - "map.search": 2, - "Internal0": 4, - "internal_layout_info": 6, - "Exec0": 3, - "Resume": 5, - "Return": 6, - "Internal": 8, - "Internals": 6, - "map.det_insert": 3, - "LayoutInfo": 2, - "Resume0": 3, - "get_active_temps_data": 2, - "assoc_list": 1, - "Temps": 2, - "map.select": 1, - "TempsInUseContentMap": 2, - "map.to_assoc_list": 3, - "cis_proc_label.": 1, - "SeqNo": 2, - "ClosureLayout": 2, - "ClosureLayouts": 2, - "String": 2, - "SlotNum": 2, - "Size0": 3, - "RevTable0": 2, - "Size": 4, - "RevTable": 3, - "RevTable.": 1, - "TableSize": 2, - "cip_ts_string_table_size.": 1, - "RvalsTypes": 2, - "DataAddr": 6, - "StaticCellInfo0": 6, - "global_data.add_scalar_static_cell": 1, - "Rvals": 2, - "global_data.add_scalar_static_cell_natural_types": 1, - "Vector": 2, - "global_data.add_vector_static_cell": 1, - "AllocId": 2, - "AllocSite": 3, - "AllocSites0": 2, - "set_tree234.insert": 1, - "AllocSites": 2, - "position_info.": 1, - "branch_end_info.": 1, - "branch_end": 4, - "branch_end_info": 7, - "remember_position": 3, - "position_info": 14, - "reset_to_position": 4, - "reset_resume_known": 2, - "generate_branch_end": 2, - "abs_store_map": 3, - "after_all_branches": 2, - "save_hp_in_branch": 2, - "pos_get_fail_info": 3, - "fail_info.": 2, - "LocDep": 6, - "cild_fail_info.": 1, - "CurCI": 2, - "NextCI": 2, - "Static": 2, - "Persistent": 2, - "NextCI0": 4, - "TempsInUse0": 4, - "set.union": 2, - "BranchStart": 2, - "BranchStartFailInfo": 2, - "BSResumeKnown": 2, - "CurFailInfo": 2, - "CurFailStack": 2, - "CurCurfMaxfr": 2, - "CurCondEnv": 2, - "CurHijack": 2, - "NewFailInfo": 2, - "StoreMap": 8, - "MaybeEnd0": 3, - "MaybeEnd": 6, - "AbsVarLocs": 3, - "assoc_list.values": 1, - "AbsLocs": 2, - "code_util.max_mentioned_abs_regs": 1, - "instmap_is_reachable": 1, - "VarLocs": 2, - "assoc_list.map_values_only": 2, - "abs_locn_to_lval": 2, - "place_vars": 1, - "remake_with_store_map": 4, - "empty": 9, - "EndCodeInfo1": 5, - "EndCodeInfo0": 3, - "FailInfo0": 13, - "FailInfo1": 2, - "ResumeKnown0": 5, - "CurfrMaxfr0": 2, - "CondEnv0": 3, - "Hijack0": 2, - "R": 2, - "ResumeKnown1": 2, - "CurfrMaxfr1": 2, - "CondEnv1": 2, - "Hijack1": 2, - "resume_point_known": 15, - "Redoip0": 3, - "Redoip1": 2, - "ResumeKnown": 21, - "must_be_equal": 11, - "CurfrMaxfr": 24, - "EndCodeInfoA": 2, - "TempsInUse1": 2, - "EndCodeInfo": 2, - "BranchEnd": 2, - "BranchEndCodeInfo": 2, - "BranchEndLocDep": 2, - "VarLocns": 2, - "VarLvals": 2, - "reinit_var_locn_state": 1, - "Slot": 2, - "Pos0": 2, - "Pos": 2, - "CI0": 2, - "CIStatic0": 2, - "CILocDep0": 2, - "CIPersistent0": 2, - "LocDep0": 2, - "CI1": 2, - "save_hp": 1, - "CI2": 2, - "CIStatic": 2, - "CIPersistent": 2, - "resume_map.": 1, - "resume_point_info.": 1, - "disj_hijack_info.": 1, - "prepare_for_disj_hijack": 2, - "code_model": 3, - "disj_hijack_info": 3, - "undo_disj_hijack": 2, - "ite_hijack_info.": 1, - "prepare_for_ite_hijack": 2, - "embedded_stack_frame_id": 3, - "ite_hijack_info": 3, - "ite_enter_then": 2, - "simple_neg_info.": 1, - "enter_simple_neg": 2, - "simple_neg_info": 3, - "leave_simple_neg": 2, - "det_commit_info.": 1, - "prepare_for_det_commit": 2, - "det_commit_info": 6, - "generate_det_commit": 2, - "semi_commit_info.": 1, - "prepare_for_semi_commit": 2, - "semi_commit_info": 6, - "generate_semi_commit": 2, - "effect_resume_point": 2, - "pop_resume_point": 1, - "top_resume_point": 1, - "set_resume_point_to_unknown": 1, - "set_resume_point_and_frame_to_unknown": 1, - "generate_failure": 2, - "fail_if_rval_is_false": 1, - "failure_is_direct_branch": 1, - "code_addr": 8, - "may_use_nondet_tailcall": 1, - "nondet_tail_call": 1, - "produce_vars": 1, - "resume_map": 9, - "flush_resume_vars_to_stack": 1, - "make_resume_point": 1, - "resume_locs": 1, - "generate_resume_point": 2, - "resume_point_vars": 1, - "resume_point_stack_addr": 2, - "stack": 1, - "curfr_vs_maxfr": 2, - "condition_env": 3, - "hijack_allowed": 2, - "orig_only": 2, - "stack_only": 2, - "orig_and_stack": 1, - "stack_and_orig": 1, - "redoip_update": 2, - "has_been_done": 5, - "wont_be_done.": 1, - "resume_point_unknown.": 1, - "may_be_different.": 1, - "inside_non_condition": 6, - "not_inside_non_condition.": 1, - "not_allowed.": 1, - "disj_no_hijack": 4, - "disj_temp_frame": 4, - "disj_quarter_hijack": 4, - "disj_half_hijack": 3, - "disj_full_hijack": 3, - "HijackInfo": 29, - "CondEnv": 12, - "Allow": 12, - "model_det": 2, - "model_semi": 3, - "singleton": 28, - "llds_instr": 64, - "comment": 5, - "model_non": 2, - "create_temp_frame": 4, - "do_fail": 6, - "stack.pop": 1, - "TopResumePoint": 6, - "RestResumePoints": 2, - "stack.is_empty": 1, - "wont_be_done": 2, - "acquire_temp_slot": 15, - "slot_lval": 14, - "redoip_slot": 30, - "curfr": 18, - "non_persistent_temp_slot": 15, - "RedoipSlot": 33, - "maxfr": 42, - "redofr_slot": 14, - "RedofrSlot": 17, - "from_list": 13, - "prevfr_slot": 3, - "pick_stack_resume_point": 3, - "StackLabel": 9, - "LabelConst": 4, - "const": 10, - "llconst_code_addr": 6, - "ite_region_info": 5, - "ite_info": 3, - "ite_hijack_type": 2, - "ite_no_hijack": 3, - "ite_temp_frame": 3, - "ite_quarter_hijack": 3, - "ite_half_hijack": 3, - "ite_full_hijack": 3, - "CondCodeModel": 4, - "MaybeEmbeddedFrameId": 5, - "HijackType": 12, - "MaybeRegionInfo": 12, - "MaxfrSlot": 30, - "TempFrameCode": 4, - "MaxfrCode": 7, - "EmbeddedFrameId": 2, - "slot_success_record": 1, - "persistent_temp_slot": 1, - "SuccessRecordSlot": 6, - "InitSuccessCode": 3, - "llconst_false": 1, - "ITEResumePoint": 2, - "ThenCode": 10, - "ElseCode": 7, - "ResumePoints0": 5, - "stack.det_pop": 1, - "HijackResumeKnown": 2, - "OldCondEnv": 2, - "RegionInfo": 2, - "EmbeddedStackFrameId": 2, - "ITEStackResumeCodeAddr": 2, - "llconst_true": 1, - "AfterRegionOp": 3, - "if_val": 1, - "unop": 1, - "logical_not": 1, - "code_label": 2, - "use_and_maybe_pop_region_frame": 1, - "region_ite_nondet_cond_fail": 1, - "goto": 2, - "maybe_pick_stack_resume_point": 1, - "ResumeMap0": 2, - "make_fake_resume_map": 5, - "do_redo": 1, - "is_empty": 1, - "Locns": 2, - "set.make_singleton_set": 1, - "reg": 1, - "region_commit_stack_frame": 5, - "AddTrailOps": 4, - "AddRegionOps": 5, - "CommitGoalInfo": 4, - "DetCommitInfo": 4, - "SaveMaxfrCode": 3, - "save_maxfr": 3, - "MaybeMaxfrSlot": 6, - "maybe_save_trail_info": 2, - "MaybeTrailSlots": 8, - "SaveTrailCode": 4, - "maybe_save_region_commit_frame": 4, - "MaybeRegionCommitFrameInfo": 8, - "SaveRegionCommitFrameCode": 2, - "SaveRegionCommitFrameCode.": 2, - "RestoreMaxfrCode": 3, - "restore_maxfr": 3, - "release_temp_slot": 1, - "maybe_restore_trail_info": 2, - "CommitTrailCode": 4, - "maybe_restore_region_commit_frame": 2, - "SuccessRegionCode": 3, - "_FailureRegionCode": 1, - "SuccessRegionCode.": 1, - "commit_hijack_info": 2, - "commit_temp_frame": 3, - "commit_quarter_hijack": 3, - "commit_half_hijack": 3, - "commit_full_hijack": 3, - "SemiCommitInfo": 4, - "clone_resume_point": 1, - "NewResumePoint": 4, - "stack.push": 1, - "StackLabelConst": 7, - "UseMinimalModelStackCopyCut": 4, - "Components": 4, - "foreign_proc_raw_code": 4, - "cannot_branch_away": 4, - "proc_affects_liveness": 2, - "live_lvals_info": 4, - "proc_does_not_affect_liveness": 2, - "MD": 4, - "proc_may_duplicate": 2, - "MarkCode": 3, - "foreign_proc_code": 2, - "proc_will_not_call_mercury": 2, - "HijackCode": 5, - "UseMinimalModel": 3, - "CutCode": 4, - "SuccessUndoCode": 5, - "FailureUndoCode": 5, - "AfterCommit": 2, - "ResumePointCode": 2, - "FailCode": 2, - "RestoreTrailCode": 2, - "FailureRegionCode": 2, - "SuccLabel": 3, - "GotoSuccLabel": 2, - "SuccLabelCode": 1, - "SuccessCode": 2, - "FailureCode": 2, - "SuccLabelCode.": 1, - "_ForwardLiveVarsBeforeGoal": 1, - "store.": 1, - "typeclass": 1, - "store": 52, - "T": 52, - "where": 8, - "S": 133, - "instance": 4, - "io.state": 3, - "store.init": 2, - "generic_mutvar": 15, - "io_mutvar": 1, - "store_mutvar": 1, - "store.new_mutvar": 1, - "store.copy_mutvar": 1, - "store.get_mutvar": 1, - "store.set_mutvar": 1, - "<=>": 5, - "new_cyclic_mutvar": 2, - "Func": 4, - "Mutvar": 23, - "Create": 1, - "new": 25, - "variable": 1, - "whose": 2, - "initialized": 2, - "with": 5, - "returned": 1, - "from": 1, - "specified": 1, - "function": 3, - "The": 2, - "argument": 6, - "passed": 2, - "mutvar": 6, - "itself": 4, - "has": 4, - "yet": 1, - "been": 1, - "safe": 2, - "because": 1, - "does": 3, - "get": 2, - "so": 3, - "it": 1, - "can": 1, - "t": 5, - "examine": 1, - "uninitialized": 1, - "predicate": 1, - "useful": 1, - "creating": 1, - "self": 1, - "referential": 1, - "values": 1, - "such": 2, - "as": 5, - "circular": 1, - "linked": 1, - "lists": 1, - "For": 1, - "example": 1, - "clist": 2, - "node": 1, - "store.new_cyclic_mutvar": 1, - "generic_ref": 20, - "io_ref": 1, - "store_ref": 1, - "store.new_ref": 1, - "store.ref_functor": 1, - "store.arg_ref": 1, - "ArgT": 4, - "store.new_arg_ref": 3, - "store.set_ref": 1, - "store.set_ref_value": 1, - "store.copy_ref_value": 1, - "store.extract_ref_value": 1, - "Nasty": 1, - "performance": 2, - "hacks": 1, - "WARNING": 1, - "use": 1, - "of": 10, - "these": 1, - "procedures": 2, - "dangerous": 1, - "Use": 1, - "them": 1, - "last": 1, - "resort": 1, - "critical": 1, - "and": 6, - "shows": 1, - "that": 2, - "using": 1, - "versions": 1, - "bottleneck": 1, - "These": 1, - "may": 1, - "vanish": 1, - "future": 1, - "Mercury": 1, - "unsafe_arg_ref": 1, - "same": 2, - "arg_ref": 12, - "unsafe_new_arg_ref": 1, - "new_arg_ref": 1, - "except": 1, - "they": 4, - "doesn": 1, - "check": 1, - "errors": 1, - "don": 3, - "work": 3, - "no_tag": 1, - "types": 3, - "exactly": 2, - "one": 2, - "functor": 2, - "which": 2, - "arguments": 2, - "occupy": 1, - "word": 2, - "other": 1, - "functors.": 1, - "store.unsafe_arg_ref": 1, - "store.unsafe_new_arg_ref": 1, - "implementation": 1, - "require": 1, - "just": 1, - "real": 1, - "representation": 1, - "pragma": 41, - "foreign_type": 10, - "MR_Word": 24, - "can_pass_as_mercury_type": 5, - "equality": 5, - "store_equal": 7, - "comparison": 5, - "store_compare": 7, - "int32": 1, - "Java": 12, - "Erlang": 3, - "attempt": 2, - "two": 2, - "stores": 2, - "comparison_result": 1, - "compare": 1, - "Mutvars": 1, - "references": 1, - "are": 1, - "each": 1, - "represented": 1, - "pointer": 1, - "single": 1, - "on": 1, - "heap": 1, - "private_builtin.ref": 2, - "ref": 2, - "store.do_init": 6, - "foreign_proc": 28, - "_S0": 16, - "will_not_call_mercury": 28, - "will_not_modify_trail": 7, - "new_mutvar": 5, - "Val": 45, - "S0": 23, - "get_mutvar": 5, - "set_mutvar": 5, - "_S": 12, - "copy_mutvar": 1, - "Copy": 2, - "Value": 4, - "store.unsafe_new_uninitialized_mutvar": 1, - "unsafe_new_uninitialized_mutvar": 4, - "MR_offset_incr_hp_msg": 5, - "MR_SIZE_SLOT_SIZE": 10, - "1": 5, - "MR_ALLOC_ID": 5, - "2": 2, - "MR_define_size_slot": 5, - "0": 2, - "object": 21, - "MutVar": 4, - "Store": 5, - "apply": 1, - "Ref": 41, - "foreign_code": 2, - "public": 17, - "class": 4, - "Object": 9, - "referenced": 4, - "obj": 7, - "Specific": 2, - "field": 20, - "or": 2, - "null": 8, - "specify": 2, - "GetFields": 2, - "return": 6, - "fields": 3, - "any": 2, - "particular": 2, - "order": 2, - "really": 2, - "usable": 2, - "System": 1, - "Reflection": 1, - "FieldInfo": 1, - "Constructors": 2, - "init": 8, - "setField": 4, - "Set": 2, - "according": 2, - "given": 2, - "index": 2, - "void": 4, - "GetType": 1, - "reference": 4, - "getValue": 4, - "GetValue": 1, - "Update": 2, - "setValue": 2, - "SetValue": 1, - "static": 1, - "lang": 28, - "getDeclaredFields": 2, - "reflect": 1, - "Field": 5, + "helperSet": 6, + "public": 202, + "function": 205, + "__construct": 8, + "(": 2416, + ")": 2417, + "this": 928, + "-": 1271, + "true": 133, + "array": 296, + "getDefaultHelperSet": 2, + "getDefaultInputDefinition": 2, + "foreach": 94, + "getDefaultCommands": 2, + "as": 96, + "command": 41, + "add": 7, + "}": 972, + "run": 4, + "input": 20, + "null": 164, + "output": 60, + "if": 450, + "new": 74, "try": 3, - "getClass": 1, - "catch": 11, - "SecurityException": 1, - "se": 1, - "throw": 11, - "RuntimeException": 11, - "Security": 1, - "manager": 1, - "denied": 1, - "access": 3, - "ArrayIndexOutOfBoundsException": 1, - "e": 13, - "No": 1, - "Exception": 3, - "Unable": 3, - "getMessage": 3, - "IllegalAccessException": 2, - "inaccessible": 2, - "IllegalArgumentException": 2, - "mismatch": 2, - "NullPointerException": 2, - "new_ref": 4, - "ets": 3, - "insert": 1, - "copy_ref_value": 1, - "unsafe_ref_value": 6, - "store.unsafe_ref_value": 1, - "lookup": 1, - "ref_functor": 1, - "canonicalize": 1, - "foreign_decl": 1, - "include": 4, - "mercury_type_info": 1, - "h": 4, - "mercury_heap": 1, - "mercury_misc": 1, - "MR_fatal_error": 5, - "mercury_deconstruct": 1, - "MR_arg": 3, - "ArgNum": 7, - "ArgRef": 22, - "may_not_duplicate": 1, - "MR_TypeInfo": 10, - "arg_type_info": 6, - "exp_arg_type_info": 6, - "MR_DuArgLocn": 2, - "arg_locn": 9, - "TypeInfo_for_T": 2, - "TypeInfo_for_ArgT": 2, - "MR_save_transient_registers": 2, - "MR_NONCANON_ABORT": 2, - "number": 2, - "range": 2, - "MR_compare_type_info": 2, - "MR_COMPARE_EQUAL": 2, - "wrong": 2, - "MR_restore_transient_registers": 2, - "NULL": 2, - "MR_arg_bits": 2, - "store.ref/2": 3, - "MR_arg_value": 2, - "C#": 6, - "store.Ref": 8, - "Ref.getValue": 6, - "*arg_ref": 1, - "*arg_locn": 1, - "&": 7, - "&&": 1, - "ValRef": 1, - "Ref.setValue": 3, - "ValRef.getValue": 2, - "*Ptr": 2, - "Ptr": 4, - "MR_strip_tag": 2, - "Arg": 6 - }, - "Perl6": { - "role": 10, - "q": 5, - "{": 29, - "token": 6, - "stopper": 2, - "MAIN": 1, - "quote": 1, - ")": 19, - "}": 27, - "backslash": 3, - "sym": 3, - "<\\\\>": 1, - "": 1, - "": 1, - "": 1, - "": 1, - ".": 1, - "method": 2, - "tweak_q": 1, - "(": 16, - "v": 2, - "self.panic": 2, - "tweak_qq": 1, - "qq": 5, - "does": 7, - "b1": 1, - "c1": 1, - "s1": 1, - "a1": 1, - "h1": 1, - "f1": 1, - "Too": 2, - "late": 2, - "for": 2, - "SHEBANG#!perl": 1, - "use": 1, - "v6": 1, - ";": 19, - "my": 10, - "string": 7, - "if": 1, - "eq": 1, - "say": 10, - "regex": 2, - "http": 1, - "-": 3, - "verb": 1, - "|": 9, - "#": 13, - "multi": 2, - "line": 5, - "comment": 2, - "I": 1, - "there": 1, - "m": 2, - "even": 1, - "specialer": 1, - "nesting": 1, - "work": 1, - "<": 3, - "trying": 1, - "mixed": 1, - "delimiters": 1, - "": 1, - "arbitrary": 2, - "delimiter": 2, - "Hooray": 1, - "": 1, - "with": 9, - "whitespace": 1, - "<<": 1, - "more": 1, - "strings": 1, - "%": 1, - "hash": 1, - "Hash.new": 1, - "begin": 1, - "pod": 1, - "Here": 1, - "t": 2, - "highlighted": 1, - "table": 1, - "Of": 1, - "things": 1, - "A": 3, - "single": 3, - "declarator": 7, - "a": 8, - "keyword": 7, - "like": 7, - "Another": 2, - "block": 2, - "brace": 1, - "More": 2, - "blocks": 2, - "don": 2, - "x": 2, - "foo": 3, - "Rob": 1, - "food": 1, - "match": 1, - "sub": 1, - "something": 1, - "Str": 1, - "D": 1, - "value": 1, - "...": 1, - "s": 1, - "some": 2, - "stuff": 1, - "chars": 1, - "/": 1, - "": 1, - "": 1, - "roleq": 1, - "pod_formatting_code": 1, - "": 1, - "<[A..Z]>": 1, - "*POD_IN_FORMATTINGCODE": 1, - "": 1, - "[": 1, - "": 1, - "N*": 1 - }, - "VHDL": { - "-": 2, - "VHDL": 1, - "example": 1, - "file": 1, - "library": 1, - "ieee": 1, - ";": 7, - "use": 1, - "ieee.std_logic_1164.all": 1, - "entity": 2, - "inverter": 2, - "is": 2, - "port": 1, - "(": 1, - "a": 2, - "in": 1, - "std_logic": 2, - "b": 2, - "out": 1, - ")": 1, - "end": 2, - "architecture": 2, - "rtl": 1, - "of": 1, - "begin": 1, - "<": 1, - "not": 1 - }, - "Literate CoffeeScript": { - "The": 2, - "**Scope**": 2, - "class": 2, - "regulates": 1, - "lexical": 1, - "scoping": 1, - "within": 2, - "CoffeeScript.": 1, - "As": 1, - "you": 2, - "generate": 1, - "code": 1, - "create": 1, - "a": 8, - "tree": 1, - "of": 4, - "scopes": 1, - "in": 2, - "the": 12, - "same": 1, - "shape": 1, - "as": 3, - "nested": 1, - "function": 2, - "bodies.": 1, - "Each": 1, - "scope": 2, - "knows": 1, - "about": 1, - "variables": 3, - "declared": 2, - "it": 4, - "and": 5, - "has": 1, - "reference": 3, - "to": 8, - "its": 3, - "parent": 2, - "enclosing": 1, - "scope.": 2, - "In": 1, - "this": 3, - "way": 1, - "we": 4, - "know": 1, - "which": 3, - "are": 3, - "new": 2, - "need": 2, - "be": 2, - "with": 3, - "var": 4, - "shared": 1, - "external": 1, - "scopes.": 1, - "Import": 1, - "helpers": 1, - "plan": 1, - "use.": 1, - "{": 4, - "extend": 1, - "last": 1, - "}": 4, - "require": 1, - "exports.Scope": 1, - "Scope": 1, - "root": 1, - "is": 3, - "top": 2, - "-": 5, - "level": 1, - "object": 1, - "for": 3, - "given": 1, - "file.": 1, - "@root": 1, - "null": 1, - "Initialize": 1, - "lookups": 1, - "up": 1, - "chain": 1, - "well": 1, - "**Block**": 1, - "node": 1, - "belongs": 2, - "where": 1, - "should": 1, - "declare": 1, - "that": 2, - "to.": 1, - "constructor": 1, - "(": 5, - "@parent": 2, - "@expressions": 1, - "@method": 1, - ")": 6, - "@variables": 3, - "[": 4, - "name": 8, - "type": 5, - "]": 4, - "@positions": 4, - "Scope.root": 1, - "unless": 1, - "Adds": 1, - "variable": 1, - "or": 1, - "overrides": 1, - "an": 1, - "existing": 1, - "one.": 1, - "add": 1, - "immediate": 3, - "return": 1, - "@parent.add": 1, - "if": 2, - "@shared": 1, - "not": 1, - "Object": 1, - "hasOwnProperty.call": 1, - ".type": 1, - "else": 2, - "@variables.push": 1, - "When": 1, - "super": 1, - "called": 1, - "find": 1, - "current": 1, - "method": 1, - "param": 1, - "_": 3, - "then": 1, - "tempVars": 1, - "realVars": 1, - ".push": 1, - "v.name": 1, - "realVars.sort": 1, - ".concat": 1, - "tempVars.sort": 1, - "Return": 1, - "list": 1, - "assignments": 1, - "supposed": 1, - "made": 1, - "at": 1, - "assignedVariables": 1, - "v": 1, - "when": 1, - "v.type.assigned": 1 - }, - "KRL": { - "ruleset": 1, - "sample": 1, - "{": 3, - "meta": 1, - "name": 1, - "description": 1, - "<<": 1, - "Hello": 1, - "world": 1, - "author": 1, - "}": 3, - "rule": 1, - "hello": 1, - "select": 1, - "when": 1, - "web": 1, - "pageview": 1, - "notify": 1, - "(": 1, - ")": 1, - ";": 1 - }, - "Nimrod": { - "echo": 1 - }, - "Pascal": { - "program": 1, - "gmail": 1, - ";": 6, - "uses": 1, - "Forms": 1, - "Unit2": 1, - "in": 1, - "{": 2, - "Form2": 2, - "}": 2, - "R": 1, - "*.res": 1, - "begin": 1, - "Application.Initialize": 1, - "Application.MainFormOnTaskbar": 1, - "True": 1, - "Application.CreateForm": 1, - "(": 1, - "TForm2": 1, - ")": 1, - "Application.Run": 1, - "end.": 1 - }, - "C#": { - "using": 5, - "System": 1, - ";": 8, - "System.Collections.Generic": 1, - "System.Linq": 1, - "System.Text": 1, - "System.Threading.Tasks": 1, - "namespace": 1, - "LittleSampleApp": 1, - "{": 5, - "///": 4, - "

": 1, - "Just": 1, - "what": 1, - "it": 2, - "says": 1, - "on": 1, - "the": 5, - "tin.": 1, - "A": 1, - "little": 1, - "sample": 1, - "application": 1, - "for": 4, - "Linguist": 1, - "to": 4, - "try": 1, - "out.": 1, - "": 1, - "class": 1, - "Program": 1, - "static": 1, - "void": 1, - "Main": 1, - "(": 3, - "string": 1, - "[": 1, - "]": 1, - "args": 1, - ")": 3, - "Console.WriteLine": 2, - "}": 5, - "@": 1, - "ViewBag.Title": 1, - "@section": 1, - "featured": 1, - "
": 1, - "class=": 7, - "
": 1, - "
": 1, - "

": 1, - "@ViewBag.Title.": 1, - "

": 1, - "

": 1, - "@ViewBag.Message": 1, - "

": 1, - "
": 1, - "

": 1, - "To": 1, - "learn": 1, - "more": 4, - "about": 2, - "ASP.NET": 5, - "MVC": 4, - "visit": 2, - "": 5, - "href=": 5, - "title=": 2, - "http": 1, - "//asp.net/mvc": 1, - "": 5, - ".": 2, - "The": 1, - "page": 1, - "features": 3, - "": 1, - "videos": 1, - "tutorials": 1, - "and": 6, - "samples": 1, - "": 1, - "help": 1, - "you": 4, - "get": 1, - "most": 1, - "from": 1, - "MVC.": 1, - "If": 1, - "have": 1, - "any": 1, - "questions": 1, - "our": 1, - "forums": 1, - "

": 1, - "
": 1, - "
": 1, - "

": 1, - "We": 1, - "suggest": 1, - "following": 1, - "

": 1, - "
    ": 1, - "
  1. ": 3, - "
    ": 3, - "Getting": 1, - "Started": 1, - "
    ": 3, - "gives": 2, - "a": 3, - "powerful": 1, - "patterns": 1, - "-": 3, - "based": 1, - "way": 1, - "build": 1, - "dynamic": 1, - "websites": 1, - "that": 5, - "enables": 1, - "clean": 1, - "separation": 1, - "of": 2, - "concerns": 1, - "full": 1, - "control": 1, - "over": 1, - "markup": 1, - "enjoyable": 1, - "agile": 1, - "development.": 1, - "includes": 1, - "many": 1, - "enable": 1, - "fast": 1, - "TDD": 1, - "friendly": 1, - "development": 1, - "creating": 1, - "sophisticated": 1, - "applications": 1, - "use": 1, - "latest": 1, - "web": 2, - "standards.": 1, - "Learn": 3, - "
  2. ": 3, - "Add": 1, - "NuGet": 2, - "packages": 1, - "jump": 1, - "start": 1, - "your": 2, - "coding": 1, - "makes": 1, - "easy": 1, - "install": 1, - "update": 1, - "free": 1, - "libraries": 1, - "tools.": 1, - "Find": 1, - "Web": 1, - "Hosting": 1, - "You": 1, - "can": 1, - "easily": 1, - "find": 1, - "hosting": 1, - "company": 1, - "offers": 1, - "right": 1, - "mix": 1, - "price": 1, - "applications.": 1, - "
": 1 - }, - "Groovy Server Pages": { - "<%@>": 1, - "page": 2, - "contentType=": 1, - "": 4, - "": 4, - "": 4, - "Using": 1, - "directive": 1, - "tag": 1, - "": 4, - "": 4, - "": 4, - "": 2, - "Print": 1, - "": 4, - "": 4, - "": 4, - "http": 3, - "equiv=": 3, - "content=": 4, - "Testing": 3, - "with": 3, - "Resources": 2, - "": 2, - "module=": 2, - "SiteMesh": 2, - "and": 2, - "name=": 1, - "{": 1, - "example": 1, - "}": 1 - }, - "GAMS": { - "*Basic": 1, - "example": 2, - "of": 7, - "transport": 5, - "model": 6, - "from": 2, - "GAMS": 5, - "library": 3, - "Title": 1, - "A": 3, - "Transportation": 1, - "Problem": 1, - "(": 22, - "TRNSPORT": 1, - "SEQ": 1, - ")": 22, - "Ontext": 1, - "This": 2, - "problem": 1, - "finds": 1, - "a": 3, - "least": 1, - "cost": 4, - "shipping": 1, - "schedule": 1, - "that": 1, - "meets": 1, - "requirements": 1, - "at": 5, - "markets": 2, - "and": 2, - "supplies": 1, - "factories.": 1, - "Dantzig": 1, - "G": 1, - "B": 1, - "Chapter": 2, - "In": 2, - "Linear": 1, - "Programming": 1, - "Extensions.": 1, - "Princeton": 2, - "University": 1, - "Press": 2, - "New": 1, - "Jersey": 1, - "formulation": 1, - "is": 1, - "described": 1, - "in": 10, - "detail": 1, - "Rosenthal": 1, - "R": 1, - "E": 1, - "Tutorial.": 1, - "User": 1, - "s": 1, - "Guide.": 1, - "The": 2, - "Scientific": 1, - "Redwood": 1, - "City": 1, - "California": 1, - "line": 1, - "numbers": 1, - "will": 1, - "not": 1, - "match": 1, - "those": 1, - "the": 1, - "book": 1, - "because": 1, - "these": 1, - "comments.": 1, - "Offtext": 1, - "Sets": 1, - "i": 18, - "canning": 1, - "plants": 1, - "/": 9, - "seattle": 3, - "san": 3, - "-": 6, - "diego": 3, - "j": 18, - "new": 3, - "york": 3, - "chicago": 3, - "topeka": 3, - ";": 15, - "Parameters": 1, - "capacity": 1, - "plant": 2, - "cases": 3, - "b": 2, - "demand": 4, - "market": 2, - "Table": 1, - "d": 2, - "distance": 1, - "thousands": 3, - "miles": 2, - "Scalar": 1, - "f": 2, - "freight": 1, - "dollars": 3, - "per": 3, - "case": 2, - "thousand": 1, - "/90/": 1, - "Parameter": 1, - "c": 3, - "*": 1, - "Variables": 1, - "x": 4, - "shipment": 1, - "quantities": 1, - "z": 3, - "total": 1, - "transportation": 1, - "costs": 1, - "Positive": 1, - "Variable": 1, - "Equations": 1, - "define": 1, - "objective": 1, - "function": 1, - "supply": 3, - "observe": 1, - "limit": 1, - "satisfy": 1, - "..": 3, - "e": 1, - "sum": 3, - "*x": 1, - "l": 1, - "g": 1, - "Model": 1, - "/all/": 1, - "Solve": 1, - "using": 1, - "lp": 1, - "minimizing": 1, - "Display": 1, - "x.l": 1, - "x.m": 1, - "ontext": 1, - "#user": 1, - "stuff": 1, - "Main": 1, - "topic": 1, - "Basic": 2, - "Featured": 4, - "item": 4, - "Trnsport": 1, - "Description": 1, - "offtext": 1 ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method - }, - "COBOL": { - "IDENTIFICATION": 2, - "DIVISION.": 4, - "PROGRAM": 2, - "-": 19, - "ID.": 2, - "hello.": 3, - "PROCEDURE": 2, - "DISPLAY": 2, - ".": 3, - "STOP": 2, - "RUN.": 2, - "COBOL": 7, - "TEST": 2, - "RECORD.": 1, - "USAGES.": 1, - "COMP": 5, - "PIC": 5, - "S9": 4, - "(": 5, - ")": 5, - "COMP.": 3, - "COMP2": 2, - "program": 1, - "id.": 1, - "procedure": 1, - "division.": 1, - "display": 1, - "stop": 1, - "run.": 1 - }, - "Cuda": { - "__global__": 2, - "void": 3, - "scalarProdGPU": 1, - "(": 20, - "float": 8, - "*d_C": 1, - "*d_A": 1, - "*d_B": 1, - "int": 14, - "vectorN": 2, - "elementN": 3, - ")": 20, - "{": 8, - "//Accumulators": 1, - "cache": 1, - "__shared__": 1, - "accumResult": 5, - "[": 11, - "ACCUM_N": 4, - "]": 11, - ";": 30, - "////////////////////////////////////////////////////////////////////////////": 2, - "for": 5, - "vec": 5, - "blockIdx.x": 2, - "<": 5, + "statusCode": 14, + "doRun": 2, + "catch": 3, + "Exception": 1, + "e": 18, + "throw": 19, + "instanceof": 8, + "renderException": 3, + "getErrorOutput": 2, + "else": 70, + "getCode": 1, + "is_numeric": 7, + "&&": 119, + "exit": 7, + "return": 305, + "getCommandName": 2, + "hasParameterOption": 7, + "setDecorated": 2, + "elseif": 31, + "setInteractive": 2, + "function_exists": 4, + "getHelperSet": 3, + "has": 7, + "inputStream": 2, + "get": 12, + "getInputStream": 1, + "posix_isatty": 1, + "setVerbosity": 2, + "VERBOSITY_QUIET": 1, + "VERBOSITY_VERBOSE": 2, + "writeln": 13, + "getLongVersion": 3, + "find": 17, + "setHelperSet": 1, + "getDefinition": 2, + "getHelp": 2, + "messages": 16, + "sprintf": 27, + "getOptions": 1, + "option": 5, + "[": 672, + "]": 672, + ".": 169, + "getName": 14, + "getShortcut": 2, + "getDescription": 3, + "implode": 8, + "PHP_EOL": 3, + "setCatchExceptions": 1, + "boolean": 4, + "Boolean": 4, + "setAutoExit": 1, + "setName": 1, + "getVersion": 3, + "setVersion": 1, + "register": 1, + "addCommands": 1, + "setApplication": 2, + "isEnabled": 1, + "getAliases": 3, + "alias": 87, + "isset": 101, + "InvalidArgumentException": 9, + "helpCommand": 3, + "setCommand": 1, + "getNamespaces": 3, + "namespaces": 4, + "extractNamespace": 7, + "array_values": 5, + "array_unique": 4, + "array_filter": 2, + "findNamespace": 4, + "allNamespaces": 3, + "n": 12, + "explode": 9, + "found": 4, + "i": 36, + "part": 10, + "abbrevs": 31, + "static": 6, + "getAbbreviations": 4, + "array_map": 2, + "p": 3, + "message": 12, + "<=>": 3, + "alternatives": 10, + "findAlternativeNamespace": 2, + "count": 32, + "getAbbreviationSuggestions": 4, + "searchName": 13, + "pos": 3, + "strrpos": 2, + "substr": 6, + "namespace.substr": 1, + "suggestions": 2, + "aliases": 8, + "findAlternativeCommands": 2, + "all": 11, + "substr_count": 1, "+": 12, -<<<<<<< HEAD "names": 3, "for": 8, "len": 11, @@ -72951,6 +50665,19 @@ "base_url": 1, "php_filter_info": 1, "filters": 2, + "SHEBANG#!php": 4, + "": 1, + "aMenuLinks": 1, + "Array": 13, + "Blog": 1, + "SITE_DIR": 4, + "Photos": 1, + "photo": 1, + "About": 1, + "me": 1, + "about": 1, + "Contact": 1, + "contacts": 1, "Field": 9, "FormField": 3, "ArrayAccess": 1, @@ -73245,7 +50972,6 @@ "isUnique": 1, "is_bool": 1, "sql": 1, - "SHEBANG#!php": 3, "echo": 2, "Yii": 3, "console": 3, @@ -75554,3276 +53280,6 @@ "trylock": 1, "write_oob": 1, "@endignore": 1 -======= - "gridDim.x": 1, - "vectorBase": 3, - "IMUL": 1, - "vectorEnd": 2, - "////////////////////////////////////////////////////////////////////////": 4, - "iAccum": 10, - "threadIdx.x": 4, - "blockDim.x": 3, - "sum": 3, - "pos": 5, - "d_A": 2, - "*": 2, - "d_B": 2, - "}": 8, - "stride": 5, - "/": 2, - "__syncthreads": 1, - "if": 3, - "d_C": 2, - "#include": 2, - "": 1, - "": 1, - "vectorAdd": 2, - "const": 2, - "*A": 1, - "*B": 1, - "*C": 1, - "numElements": 4, - "i": 5, - "C": 1, - "A": 1, - "B": 1, - "main": 1, - "cudaError_t": 1, - "err": 5, - "cudaSuccess": 2, - "threadsPerBlock": 4, - "blocksPerGrid": 1, - "-": 1, - "<<": 1, - "": 1, - "cudaGetLastError": 1, - "fprintf": 1, - "stderr": 1, - "cudaGetErrorString": 1, - "exit": 1, - "EXIT_FAILURE": 1, - "cudaDeviceReset": 1, - "return": 1 - }, - "Gosu": { - "function": 11, - "hello": 1, - "(": 53, - ")": 54, - "{": 28, - "print": 3, - "}": 28, - "<%!-->": 1, - "defined": 1, - "in": 3, - "Hello": 2, - "gst": 1, - "<": 1, - "%": 2, - "@": 1, - "params": 1, - "users": 2, - "Collection": 1, - "": 1, - "<%>": 2, - "for": 2, - "user": 1, - "user.LastName": 1, - "user.FirstName": 1, - "user.Department": 1, - "package": 2, - "example": 2, - "uses": 2, - "java.util.*": 1, - "java.io.File": 1, - "class": 1, - "Person": 7, - "extends": 1, - "Contact": 1, - "implements": 1, - "IEmailable": 2, - "var": 10, - "_name": 4, - "String": 6, - "_age": 3, - "Integer": 3, - "as": 3, - "Age": 1, - "_relationship": 2, - "Relationship": 3, - "readonly": 1, - "RelationshipOfPerson": 1, - "delegate": 1, - "_emailHelper": 2, - "represents": 1, - "enum": 1, - "FRIEND": 1, - "FAMILY": 1, - "BUSINESS_CONTACT": 1, - "static": 7, - "ALL_PEOPLE": 2, - "new": 6, - "HashMap": 1, - "": 1, - "construct": 1, - "name": 4, - "age": 4, - "relationship": 2, - "EmailHelper": 1, - "this": 1, - "property": 2, - "get": 1, - "Name": 3, - "return": 4, - "set": 1, - "override": 1, - "getEmailName": 1, - "incrementAge": 1, - "+": 2, - "@Deprecated": 1, - "printPersonInfo": 1, - "addPerson": 4, - "p": 5, - "if": 4, - "ALL_PEOPLE.containsKey": 2, - ".Name": 1, - "throw": 1, - "IllegalArgumentException": 1, - "[": 4, - "p.Name": 2, - "]": 4, - "addAllPeople": 1, - "contacts": 2, - "List": 1, - "": 1, - "contact": 3, - "typeis": 1, - "and": 1, - "not": 1, - "contact.Name": 1, - "getAllPeopleOlderThanNOrderedByName": 1, - "int": 2, - "allPeople": 1, - "ALL_PEOPLE.Values": 3, - "allPeople.where": 1, - "-": 3, - "p.Age": 1, - ".orderBy": 1, - "loadPersonFromDB": 1, - "id": 1, - "using": 2, - "conn": 1, - "DBConnectionManager.getConnection": 1, - "stmt": 1, - "conn.prepareStatement": 1, - "stmt.setInt": 1, - "result": 1, - "stmt.executeQuery": 1, - "result.next": 1, - "result.getString": 2, - "result.getInt": 1, - "Relationship.valueOf": 2, - "loadFromFile": 1, - "file": 3, - "File": 2, - "file.eachLine": 1, - "line": 1, - "line.HasContent": 1, - "line.toPerson": 1, - "saveToFile": 1, - "writer": 2, - "FileWriter": 1, - "PersonCSVTemplate.renderToString": 1, - "PersonCSVTemplate.render": 1, - "enhancement": 1, - "toPerson": 1, - "vals": 4, - "this.split": 1 - }, - "Prolog": { - "-": 52, - "lib": 1, - "(": 49, - "ic": 1, - ")": 49, - ".": 25, - "vabs": 2, - "Val": 8, - "AbsVal": 10, - "#": 9, - ";": 1, - "labeling": 2, - "[": 21, - "]": 21, - "vabsIC": 1, - "or": 1, - "faitListe": 3, - "_": 2, - "First": 2, - "|": 12, - "Rest": 6, - "Taille": 2, - "Min": 2, - "Max": 2, - "Min..Max": 1, - "Taille1": 2, - "suite": 3, - "Xi": 5, - "Xi1": 7, - "Xi2": 7, - "checkRelation": 3, - "VabsXi1": 2, - "Xi.": 1, - "checkPeriode": 3, - "ListVar": 2, - "length": 1, - "Length": 2, - "<": 1, - "X1": 2, - "X2": 2, - "X3": 2, - "X4": 2, - "X5": 2, - "X6": 2, - "X7": 2, - "X8": 2, - "X9": 2, - "X10": 3, - "turing": 1, - "Tape0": 2, - "Tape": 2, - "perform": 4, - "q0": 1, - "Ls": 12, - "Rs": 16, - "reverse": 1, - "Ls1": 4, - "append": 1, - "qf": 1, - "Q0": 2, - "Ls0": 6, - "Rs0": 6, - "symbol": 3, - "Sym": 6, - "RsRest": 2, - "once": 1, - "rule": 1, - "Q1": 2, - "NewSym": 2, - "Action": 2, - "action": 4, - "Rs1": 2, - "b": 2, - "left": 4, - "stay": 1, - "right": 1, - "L": 2, - "male": 3, - "john": 2, - "peter": 3, - "female": 2, - "vick": 2, - "christie": 3, - "parents": 4, - "brother": 1, - "X": 3, - "Y": 2, - "F": 2, - "M": 2 - }, - "Tcl": { - "#": 7, - "package": 2, - "require": 2, - "Tcl": 2, - "namespace": 6, - "eval": 2, - "stream": 61, - "{": 148, - "export": 3, - "[": 76, - "a": 1, - "-": 5, - "z": 1, - "]": 76, - "*": 19, - "}": 148, - "ensemble": 1, - "create": 7, - "proc": 28, - "first": 24, - "restCmdPrefix": 2, - "return": 22, - "list": 18, - "lassign": 11, - "foldl": 1, - "cmdPrefix": 19, - "initialValue": 7, - "args": 13, - "set": 34, - "numStreams": 3, - "llength": 5, - "if": 14, - "FoldlSingleStream": 2, - "lindex": 5, - "elseif": 3, - "FoldlMultiStream": 2, - "else": 5, - "Usage": 4, - "foreach": 5, - "numArgs": 7, - "varName": 7, - "body": 8, - "ForeachSingleStream": 2, - "(": 11, - ")": 11, - "&&": 2, - "%": 1, - "end": 2, - "items": 5, - "lrange": 1, - "ForeachMultiStream": 2, - "fromList": 2, - "_list": 4, - "index": 4, - "expr": 4, - "+": 1, - "isEmpty": 10, - "map": 1, - "MapSingleStream": 3, - "MapMultiStream": 3, - "rest": 22, - "select": 2, - "while": 6, - "take": 2, - "num": 3, - "||": 1, - "<": 1, - "toList": 1, - "res": 10, - "lappend": 8, - "#################################": 2, - "acc": 9, - "streams": 5, - "firsts": 6, - "restStreams": 6, - "uplevel": 4, - "nextItems": 4, - "msg": 1, - "code": 1, - "error": 1, - "level": 1, - "XDG": 11, - "variable": 4, - "DEFAULTS": 8, - "DATA_HOME": 4, - "CONFIG_HOME": 4, - "CACHE_HOME": 4, - "RUNTIME_DIR": 3, - "DATA_DIRS": 4, - "CONFIG_DIRS": 4, - "SetDefaults": 3, - "ne": 2, - "file": 9, - "join": 9, - "env": 8, - "HOME": 3, - ".local": 1, - "share": 3, - ".config": 1, - ".cache": 1, - "/usr": 2, - "local": 1, - "/etc": 1, - "xdg": 1, - "XDGVarSet": 4, - "var": 11, - "info": 1, - "exists": 1, - "XDG_": 4, - "Dir": 4, - "subdir": 16, - "dir": 5, - "dict": 2, - "get": 2, - "Dirs": 3, - "rawDirs": 3, - "split": 1, - "outDirs": 3, - "XDG_RUNTIME_DIR": 1 - }, - "Squirrel": { - "//example": 1, - "from": 1, - "http": 1, - "//www.squirrel": 1, - "-": 1, - "lang.org/#documentation": 1, - "local": 3, - "table": 1, - "{": 10, - "a": 2, - "subtable": 1, - "array": 3, - "[": 3, - "]": 3, - "}": 10, - "+": 2, - "b": 1, - ";": 15, - "foreach": 1, - "(": 10, - "i": 1, - "val": 2, - "in": 1, - ")": 10, - "print": 2, - "typeof": 1, - "/////////////////////////////////////////////": 1, - "class": 2, - "Entity": 3, - "constructor": 2, - "etype": 2, - "entityname": 4, - "name": 2, - "type": 2, - "x": 2, - "y": 2, - "z": 2, - "null": 2, - "function": 2, - "MoveTo": 1, - "newx": 2, - "newy": 2, - "newz": 2, - "Player": 2, - "extends": 1, - "base.constructor": 1, - "DoDomething": 1, - "newplayer": 1, - "newplayer.MoveTo": 1 - }, - "YAML": { - "-": 25, - "http_interactions": 1, - "request": 1, - "method": 1, - "get": 1, - "uri": 1, - "http": 1, - "//example.com/": 1, - "body": 3, - "headers": 2, - "{": 1, - "}": 1, - "response": 2, - "status": 1, - "code": 1, - "message": 1, - "OK": 1, - "Content": 2, - "Type": 1, - "text/html": 1, - ";": 1, - "charset": 1, - "utf": 1, - "Length": 1, - "This": 1, - "is": 1, - "the": 1, - "http_version": 1, - "recorded_at": 1, - "Tue": 1, - "Nov": 1, - "GMT": 1, - "recorded_with": 1, - "VCR": 1, - "gem": 1, - "local": 1, - "gen": 1, - "rdoc": 2, - "run": 1, - "tests": 1, - "inline": 1, - "source": 1, - "line": 1, - "numbers": 1, - "gempath": 1, - "/usr/local/rubygems": 1, - "/home/gavin/.rubygems": 1 - }, - "Clojure": { - "(": 83, - "defprotocol": 1, - "ISound": 4, - "sound": 5, - "[": 41, - "]": 41, - ")": 84, - "deftype": 2, - "Cat": 1, - "_": 3, - "Dog": 1, - "extend": 1, - "-": 14, - "type": 2, - "default": 1, - ";": 8, - "clj": 1, - "ns": 2, - "c2.svg": 2, - "use": 2, - "c2.core": 2, - "only": 4, - "unify": 2, - "c2.maths": 2, - "Pi": 2, - "Tau": 2, - "radians": 2, - "per": 2, - "degree": 2, - "sin": 2, - "cos": 2, - "mean": 2, - "cljs": 3, - "require": 1, - "c2.dom": 1, - "as": 1, - "dom": 1, - "Stub": 1, - "for": 2, - "float": 2, - "fn": 2, - "which": 1, - "does": 1, - "not": 3, - "exist": 1, - "on": 1, - "runtime": 1, - "def": 1, - "identity": 1, - "defn": 4, - "xy": 1, - "coordinates": 7, - "cond": 1, - "and": 1, - "vector": 1, - "count": 3, - "map": 2, - "x": 6, - "y": 1, - "into": 2, - "array": 3, - "aseq": 8, - "nil": 1, - "let": 1, - "n": 9, - "a": 3, - "make": 1, - "loop": 1, - "seq": 1, - "i": 4, - "if": 1, - "<": 1, - "do": 1, - "aset": 1, - "first": 2, - "recur": 1, - "next": 1, - "inc": 1, - "prime": 2, - "any": 1, - "zero": 1, - "#": 1, - "rem": 2, - "%": 1, - "range": 3, - "while": 3, - "stops": 1, - "at": 1, - "the": 1, - "collection": 1, - "element": 1, - "that": 1, - "evaluates": 1, - "to": 1, - "false": 2, - "like": 1, - "take": 1, - "rand": 2, - "scm*": 1, - "random": 1, - "real": 1, - "html": 1, - "head": 1, - "meta": 1, - "{": 8, - "charset": 1, - "}": 8, - "link": 1, - "rel": 1, - "href": 1, - "script": 1, - "src": 1, - "body": 1, - "div.nav": 1, - "p": 1, - "deftest": 1, - "function": 1, - "tests": 1, - "is": 7, - "true": 2, - "contains": 1, - "foo": 6, - "bar": 4, - "select": 1, - "keys": 2, - "baz": 4, - "vals": 1, - "filter": 1 - }, - "Tea": { - "<%>": 1, - "template": 1, - "foo": 1 - }, - "VimL": { - "set": 7, - "nocompatible": 1, - "ignorecase": 1, - "incsearch": 1, - "smartcase": 1, - "showmatch": 1, - "showcmd": 1, - "syntax": 1, - "on": 1, - "no": 1, - "toolbar": 1, - "guioptions": 1, - "-": 1, - "T": 1 - }, - "M": { - ";": 1309, - "GT.M": 30, - "Digest": 2, - "Extension": 9, - "Copyright": 12, - "(": 2144, - "C": 9, - ")": 2152, - "Piotr": 7, - "Koper": 7, - "": 7, - "This": 26, - "program": 19, - "is": 88, - "free": 15, - "software": 12, - "you": 17, - "can": 20, - "redistribute": 11, - "it": 45, - "and/or": 11, - "modify": 11, - "under": 14, - "the": 223, - "terms": 11, - "of": 84, - "GNU": 33, - "Affero": 33, - "General": 33, - "Public": 33, - "License": 48, - "as": 23, - "published": 11, - "by": 35, - "Free": 11, - "Software": 11, - "Foundation": 11, - "either": 13, - "version": 16, - "or": 50, - "at": 21, - "your": 16, - "option": 12, - "any": 16, - "later": 11, - "version.": 11, - "distributed": 13, - "in": 80, - "hope": 11, - "that": 19, - "will": 23, - "be": 35, - "useful": 11, - "but": 19, - "WITHOUT": 12, - "ANY": 12, - "WARRANTY": 11, - "without": 11, - "even": 12, - "implied": 11, - "warranty": 11, - "MERCHANTABILITY": 11, - "FITNESS": 11, - "FOR": 15, - "A": 12, - "PARTICULAR": 11, - "PURPOSE.": 11, - "See": 15, - "for": 77, - "more": 13, - "details.": 12, - "You": 13, - "should": 16, - "have": 21, - "received": 11, - "a": 130, - "copy": 13, - "along": 11, - "with": 45, - "this": 39, - "program.": 9, - "If": 14, - "not": 39, - "see": 26, - "": 11, - ".": 815, - "trademark": 2, - "Fidelity": 2, - "Information": 2, - "Services": 2, - "Inc.": 2, - "-": 1605, - "http": 13, - "//sourceforge.net/projects/fis": 2, - "gtm/": 2, - "simple": 2, - "OpenSSL": 3, - "based": 1, - "digest": 19, - "extension": 3, - "rewrite": 1, - "EVP_DigestInit": 1, - "usage": 3, - "example": 5, - "additional": 5, - "M": 24, - "wrapper.": 1, - "//www.openssl.org/docs/crypto/EVP_DigestInit.html": 1, - "The": 11, - "return": 7, - "value": 72, - "from": 16, - "&": 28, - "digest.init": 3, - "usually": 1, - "when": 11, - "an": 14, - "invalid": 4, - "algorithm": 1, - "was": 5, - "specification.": 1, - "Anyway": 1, - "properly": 1, - "used": 6, - "never": 4, - "fail.": 1, - "Please": 2, - "feel": 2, - "to": 74, - "contact": 2, - "me": 2, - "if": 44, - "questions": 2, - "comments": 5, - "m": 37, - "returns": 7, - "ASCII": 2, - "HEX": 1, - "all": 8, - "one": 5, - "n": 197, - "c": 113, - "d": 381, - "s": 775, - "digest.update": 2, - ".c": 2, - ".m": 11, - "digest.final": 2, - ".d": 1, - "q": 244, - "init": 6, - "alg": 3, - "context": 1, - "handler": 9, - "try": 1, - "etc": 1, - "returned": 1, - "error": 62, - "occurs": 1, - "e.g.": 2, - "unknown": 1, - "update": 1, - "ctx": 4, - "msg": 6, - "updates": 1, - "message": 8, - ".ctx": 2, - ".msg": 1, - "final": 1, - "hex": 1, - "encoded": 8, - "frees": 1, - "memory": 1, - "allocated": 1, - "also": 4, - ".digest": 1, - "algorithms": 1, - "availability": 1, - "depends": 1, - "on": 17, - "libcrypto": 1, - "configuration": 1, - "md4": 1, - "md5": 2, - "sha": 1, - "sha1": 1, - "sha224": 1, - "sha256": 1, - "sha512": 1, - "dss1": 1, - "ripemd160": 1, - "code": 29, - "examples": 4, - "contrasting": 1, - "postconditionals": 1, - "IF": 9, - "commands": 1, - "post1": 1, - "postconditional": 3, - "set": 98, - "command": 11, - "b": 64, - "I": 43, - "purposely": 4, - "TEST": 16, - "false": 5, - "write": 59, - "<": 20, - "quit": 30, - "post2": 1, - "": 3, - "variable": 8, - "a=": 3, - "smaller": 3, - "than": 4, - "b=": 4, - "special": 2, - "after": 3, - "post": 1, - "condition": 1, - "if1": 2, - "if2": 2, - "start": 26, - "exercise": 1, - "car": 14, - "@": 8, - "part": 3, - "Keith": 1, - "Lynch": 1, - "p#f": 1, - "w": 127, - "p": 84, - "x": 96, - "+": 189, - "*8": 2, - "ZDIOUT1": 1, - "Experimental": 1, - "FileMan": 1, - "file": 10, - "output": 49, - "host": 2, - "Open": 1, - "Source": 1, - "Electronic": 1, - "Health": 1, - "Record": 1, - "Agent": 1, - "Licensed": 1, - "Apache": 1, - "Version": 1, - "may": 3, - "use": 5, - "except": 1, - "compliance": 1, - "License.": 2, - "obtain": 2, - "//www.apache.org/licenses/LICENSE": 1, - "Unless": 1, - "required": 4, - "applicable": 1, - "law": 1, - "agreed": 1, - "writing": 4, - "BASIS": 1, - "WARRANTIES": 1, - "OR": 2, - "CONDITIONS": 1, - "OF": 2, - "KIND": 1, - "express": 1, - "implied.": 1, - "specific": 3, - "language": 6, - "governing": 1, - "permissions": 2, - "and": 59, - "limitations": 1, - "N": 19, - "W": 4, - "D": 64, - "ASKFILE": 1, - "Q": 58, - "FILE": 5, - "[": 54, - "ASKDIR": 1, - "DIR": 3, - "SAVEFILE": 2, - "Save": 1, - "given": 1, - "directory": 1, - "CHECK": 1, - "FGR": 4, - "_FILE": 1, - "S": 99, - "IO": 4, - "DIR_": 1, - "P": 68, - "E": 12, - "L": 1, - "_": 127, - "FILENAME": 1, - "O": 24, - "U": 14, - "_IO_": 1, - "_P_": 1, - "NM": 1, - "contains": 2, - "non": 1, - "printing": 1, - "characters": 8, - "then": 2, - "must": 8, - "escaped": 1, - "evaluation": 1, - "RHS": 1, - "SET.": 1, - "TODO": 1, - "Caller": 1, - "define": 2, - "indentation": 1, - "level": 5, - "comment": 4, - "first": 10, - "character": 5, - "tab": 1, - "space.": 1, - "V": 2, - "%": 207, - "zewdDemo": 1, - "Tutorial": 1, - "page": 12, - "functions": 4, - "Product": 2, - "Enterprise": 5, - "Web": 5, - "Developer": 5, - "Build": 6, - "Date": 2, - "Wed": 1, - "Apr": 1, - "|": 171, - "m_apache": 3, - "M/Gateway": 4, - "Developments": 4, - "Ltd": 4, - "Reigate": 4, - "Surrey": 4, - "UK.": 4, - "All": 4, - "rights": 4, - "reserved.": 4, - "//www.mgateway.com": 4, - "Email": 4, - "rtweed@mgateway.com": 4, - "getLanguage": 1, - "sessid": 146, - "getRequestValue": 1, - "zewdAPI": 52, - "setSessionValue": 6, - "QUIT": 251, - "login": 1, - "username": 8, - "password": 8, - "getTextValue": 4, - "getPasswordValue": 2, - "trace": 24, - "_username_": 1, - "_password": 1, - "i": 465, - "logine": 1, - "textid": 1, - "errorMessage": 1, - "ewdDemo": 8, - "clearList": 2, - "appendToList": 4, - "user": 27, - "f": 93, - "o": 51, - "addUsername": 1, - "newUsername": 5, - "newUsername_": 1, - "setTextValue": 4, - "testValue": 1, - "pass": 24, - "getSelectValue": 3, - "_user": 1, - "getPassword": 1, - "g": 228, - "setPassword": 1, - "getObjDetails": 1, - "data": 43, - "_user_": 1, - "_data": 2, - "setRadioOn": 2, - "initialiseCheckbox": 2, - "setCheckboxOn": 3, - "createLanguageList": 1, - "setMultipleSelectOn": 2, - "clearTextArea": 2, - "textarea": 2, - "createTextArea": 1, - ".textarea": 1, - "userType": 4, - "selected": 4, - "setMultipleSelectValues": 1, - ".selected": 1, - "testField3": 3, - ".value": 1, - "testField2": 1, - "field3": 1, - "null": 6, - "dateTime": 1, - "compute": 2, - "miles": 4, - "gallons": 4, - "miles/gallons": 1, - "computepesimist": 1, - "miles/": 1, - "computeoptimist": 1, - "/gallons": 1, - "PRCAAPR": 1, - "WASH": 1, - "ISC@ALTOONA": 1, - "PA/RGY": 1, - "PATIENT": 5, - "ACCOUNT": 1, - "PROFILE": 1, - "CONT": 1, - "/9/94": 1, - "AM": 1, - "Accounts": 1, - "Receivable": 1, - "**198": 1, - "**": 4, - "Mar": 1, - "Per": 1, - "VHA": 1, - "Directive": 1, - "routine": 6, - "modified.": 1, - "EN": 2, - "PRCATY": 2, - "NEW": 3, - "DIC": 6, - "X": 19, - "Y": 26, - "DEBT": 10, - "PRCADB": 5, - "DA": 4, - "PRCA": 14, - "COUNT": 2, - "OUT": 2, - "SEL": 1, - "BILL": 11, - "BAT": 8, - "TRAN": 5, - "DR": 4, - "DXS": 1, - "DTOUT": 2, - "DIROUT": 1, - "DIRUT": 1, - "DUOUT": 1, - "ASK": 3, - "DPTNOFZY": 2, - "DPTNOFZK": 2, - "K": 5, - "R": 2, - "DTIME": 1, - "G": 40, - "UPPER": 1, - "VALM1": 1, - "RCD": 1, - "DISV": 2, - "DUZ": 3, - "NAM": 1, - "RCFN01": 1, - "COMP": 2, - "EN1": 1, - "PRCAATR": 1, - "Y_": 3, - "PRCADB_": 1, - "HDR": 1, - "PRCAAPR1": 3, - "HDR2": 1, - "DIS": 1, - "STAT1": 2, - "F": 10, - "_PRCATY_": 1, - "COMP1": 2, - "RCY": 5, - "]": 15, - "COMP2": 2, - "STAT": 8, - "_STAT_": 1, - "TMP": 26, - "J": 38, - "_STAT": 1, - "Compile": 2, - "payments": 1, - "_TRAN": 1, - "zmwire": 53, - "M/Wire": 4, - "Protocol": 2, - "Systems": 1, - "eg": 3, - "Cache": 3, - "By": 1, - "default": 6, - "server": 1, - "runs": 2, - "port": 4, - "For": 3, - "systems": 3, - "invoked": 2, - "via": 2, - "xinetd": 2, - "Edit": 1, - "/etc/services": 1, - "add": 5, - "line": 14, - "mwire": 2, - "/tcp": 1, - "#": 1, - "Service": 1, - "Copy": 2, - "/etc/xinetd.d/mwire": 1, - "/usr/local/gtm/zmwire": 1, - "change": 6, - "its": 1, - "executable": 1, - "These": 2, - "files": 4, - "edited": 1, - "paths": 2, - "number": 5, - "Restart": 1, - "using": 4, - "sudo": 1, - "/etc/init.d/xinetd": 1, - "restart": 3, - "On": 1, - "installed": 1, - "MGWSI": 1, - "order": 11, - "provide": 1, - "MD5": 6, - "hashing": 1, - "function": 6, - "passwords": 1, - "Alternatively": 1, - "substitute": 1, - "callout": 1, - "choice": 1, - "Daemon": 2, - "which": 4, - "running": 1, - "jobbed": 1, - "process": 3, - "job": 1, - "zmwireDaemon": 2, - "simply": 1, - "editing": 2, - "Stop": 1, - "RESJOB": 1, - "it.": 2, - "mwireVersion": 4, - "mwireDate": 2, - "July": 1, - "t": 12, - "_crlf": 22, - "build": 2, - "crlf": 6, - "response": 29, - "zewd": 17, - "_response_": 4, - "l": 84, - "_crlf_response_crlf": 4, - "zv": 6, - "authNeeded": 6, - "input": 41, - "cleardown": 2, - "zint": 1, - "j": 67, - "role": 3, - "loop": 7, - "e": 210, - "log": 1, - "halt": 3, - "auth": 2, - "k": 122, - "ignore": 12, - "pid": 36, - "monitor": 1, - "input_crlf": 1, - "lineNo": 19, - "zsy": 2, - "_pid_": 1, - "_pid": 1, - "monitoroutput": 1, - "logger": 17, - "initialise": 3, - "tot": 2, - "count": 18, - "mwireLogger": 3, - "increment": 11, - "info": 1, - "response_": 1, - "_count": 1, - "setpassword": 1, - "SETPASSWORD": 2, - "secret": 2, - "OK": 6, - "": 1, - "role=": 1, - "admin": 1, - "newrole": 4, - "getGloRef": 3, - "gloName": 1, - "gloRef": 15, - "nb": 2, - "subs": 8, - "len": 8, - "nsp": 1, - "subs_": 2, - "quot": 2, - "_data_": 3, - "subscripts": 8, - "_value_": 1, - "_error_": 1, - "ok": 14, - "kill": 3, - "xx": 16, - "yy": 19, - "No": 17, - "access": 21, - "allowed": 18, - "global": 26, - "method": 2, - "Missing": 5, - "JSON": 7, - "transaction": 6, - "document": 6, - "step": 8, - "setJSON": 4, - "json": 9, - "globalName": 7, - "GlobalName": 3, - "Global": 8, - "name": 121, - "setGlobal": 1, - "zmwire_null_value": 1, - "Invalid": 1, - "props": 1, - "arr": 2, - "getJSON": 2, - "incr": 1, - "incrbr": 1, - "class": 1, - "##": 2, - "decr": 1, - "decrby": 1, - "subscript": 7, - "direction": 1, - "{": 5, - "subscriptValue": 1, - "dataStatus": 1, - "dataValue": 1, - "}": 5, - "nextsubscript": 2, - "reverseorder": 1, - "query": 4, - "p2": 10, - "*2": 1, - "queryget": 1, - "xxyy": 2, - "zz": 2, - "numeric": 8, - "exists": 6, - "getallsubscripts": 1, - "*": 6, - "orderall": 1, - "": 3, - "note": 2, - "escaping": 1, - "world": 4, - "foo": 2, - "CacheTempEWD": 16, - "_gloRef": 1, - "zt": 20, - "@x": 4, - "i*2": 3, - "_crlf_": 1, - "j_": 1, - "params": 10, - "resp": 5, - "_crlf_resp_crlf": 2, - "_crlf_data_crlf": 2, - "mergeto": 1, - "dataLength": 4, - "key": 22, - "keyLength": 6, - "noOfRecs": 6, - "MERGETO": 1, - "myglobal": 1, - "*6": 1, - "hello": 1, - "": 2, - "length": 7, - "means": 2, - "no": 54, - "put": 1, - "top": 1, - "r": 88, - "N.N": 12, - "noOfRecs#2": 1, - "noOfRecs/2": 1, - "_i_": 5, - "gloRef1": 2, - "gloRef1_": 2, - "_gloRef1_key_": 1, - "sub": 2, - "literal": 2, - "true": 2, - "boolean": 2, - "valquot_value_valquot": 1, - "json_value_": 1, - "subscripts1": 2, - "dd": 4, - "subx": 3, - "subNo": 1, - "numsub": 1, - "json_": 2, - "removeControlChars": 2, - "zobj1": 1, - "buff": 10, - "parseJSONObject": 2, - ".buff": 2, - "subs2": 6, - "stop": 20, - "_name_": 1, - "subs2_": 2, - "value_c": 1, - "lc": 3, - "N.N1": 4, - "string": 50, - "newString": 4, - "newString_c": 1, - "utfConvert": 1, - "Unescape": 1, - "UTF": 17, - "buf": 4, - "c1": 4, - "buf_c1_": 1, - "tr": 13, - "Comment": 1, - "block": 1, - "always": 2, - "semicolon": 1, - "next": 1, - "while": 4, - "legal": 1, - "blank": 1, - "whitespace": 2, - "alone": 1, - "valid": 2, - "Comments": 1, - "graphic": 3, - "such": 1, - "@#": 1, - "/": 3, - "space": 1, - "considered": 1, - "though": 1, - "whose": 1, - "above": 3, - "below": 1, - "are": 14, - "NOT": 2, - "routine.": 1, - "multiple": 1, - "semicolons": 1, - "okay": 1, - "has": 7, - "tag": 2, - "bug": 2, - "does": 1, - "Tag1": 1, - "Tags": 2, - "uppercase": 2, - "lowercase": 1, - "alphabetic": 2, - "series": 2, - "HELO": 1, - "most": 1, - "common": 1, - "label": 5, - "LABEL": 1, - "followed": 1, - "directly": 1, - "open": 1, - "parenthesis": 2, - "formal": 1, - "list": 1, - "variables": 3, - "close": 1, - "ANOTHER": 1, - "Normally": 1, - "subroutine": 1, - "would": 2, - "ended": 1, - "we": 1, - "taking": 1, - "advantage": 1, - "rule": 1, - "END": 1, - "implicit": 1, - "PCRE": 23, - "tries": 1, - "deliver": 1, - "best": 2, - "possible": 5, - "interface": 1, - "providing": 1, - "support": 3, - "arrays": 1, - "stringified": 2, - "parameter": 1, - "names": 3, - "simplified": 1, - "API": 7, - "locales": 2, - "exceptions": 1, - "Perl5": 1, - "Match.": 1, - "pcreexamples.m": 2, - "comprehensive": 1, - "pcre": 59, - "routines": 6, - "beginner": 1, - "tips": 1, - "match": 41, - "limits": 6, - "exception": 12, - "handling": 2, - "GT.M.": 1, - "Try": 2, - "out": 2, - "known": 2, - "book": 1, - "regular": 1, - "expressions": 1, - "//regex.info/": 1, - "information": 1, - "//pcre.org/": 1, - "Initial": 2, - "release": 2, - "pkoper": 2, - "pcre.version": 1, - "config": 3, - "case": 7, - "insensitive": 7, - "protect": 11, - "erropt": 6, - "isstring": 5, - "pcre.config": 1, - ".name": 1, - ".erropt": 3, - ".isstring": 1, - ".s": 5, - ".n": 20, - "ec": 10, - "compile": 14, - "pattern": 21, - "options": 45, - "locale": 24, - "mlimit": 20, - "reclimit": 19, - "optional": 16, - "joined": 3, - "Unix": 1, - "pcre_maketables": 2, - "cases": 1, - "undefined": 1, - "called": 8, - "environment": 7, - "defined": 2, - "LANG": 4, - "LC_*": 1, - "specified": 4, - "...": 6, - "Debian": 2, - "tip": 1, - "dpkg": 1, - "reconfigure": 1, - "enable": 1, - "system": 1, - "wide": 1, - "internal": 3, - "matching": 4, - "calls": 1, - "pcre_exec": 4, - "execution": 2, - "manual": 2, - "details": 5, - "limit": 14, - "depth": 1, - "recursion": 1, - "calling": 2, - "ref": 41, - "err": 4, - "erroffset": 3, - "pcre.compile": 1, - ".pattern": 3, - ".ref": 13, - ".err": 1, - ".erroffset": 1, - "exec": 4, - "subject": 24, - "startoffset": 3, - "octets": 2, - "starts": 1, - "like": 4, - "chars": 3, - "pcre.exec": 2, - ".subject": 3, - "zl": 7, - "<0>": 2, - "ec=": 7, - "ovector": 25, - "element": 1, - "code=": 4, - "ovecsize": 5, - "fullinfo": 3, - "OPTIONS": 2, - "SIZE": 1, - "CAPTURECOUNT": 1, - "BACKREFMAX": 1, - "FIRSTBYTE": 1, - "FIRSTTABLE": 1, - "LASTLITERAL": 1, - "NAMEENTRYSIZE": 1, - "NAMECOUNT": 1, - "STUDYSIZE": 1, - "OKPARTIAL": 1, - "JCHANGED": 1, - "HASCRORLF": 1, - "MINLENGTH": 1, - "JIT": 1, - "JITSIZE": 1, - "NAME": 3, - "nametable": 4, - "1": 74, - "index": 1, - "0": 23, - "indexed": 4, - "substring": 1, - "begin": 18, - "end": 33, - "begin=": 3, - "2": 14, - "end=": 4, - "octet": 4, - "UNICODE": 1, - "so": 4, - "ze": 8, - "begin_": 1, - "_end": 1, - "store": 6, - "same": 2, - "stores": 1, - "captured": 6, - "array": 22, - "key=": 2, - "gstore": 3, - "round": 12, - "byref": 5, - "test": 6, - "ref=": 3, - "l=": 2, - "capture": 10, - "indexes": 1, - "extended": 1, - "NAMED_ONLY": 2, - "only": 9, - "named": 12, - "groups": 5, - "OVECTOR": 2, - "namedonly": 9, - "options=": 4, - "i=": 14, - "o=": 12, - "u": 6, - "namedonly=": 2, - "ovector=": 2, - "NO_AUTO_CAPTURE": 2, - "c=": 28, - "_capture_": 2, - "matches": 10, - "s=": 4, - "_s_": 1, - "GROUPED": 1, - "group": 4, - "result": 3, - "patterns": 3, - "pcredemo": 1, - "pcreccp": 1, - "cc": 1, - "procedure": 2, - "Perl": 1, - "utf8": 2, - "empty": 7, - "skip": 6, - "determine": 1, - "remove": 6, - "them": 1, - "before": 2, - "byref=": 2, - "check": 2, - "UTF8": 2, - "double": 1, - "char": 9, - "new": 15, - "utf8=": 1, - "crlf=": 3, - "NL_CRLF": 1, - "NL_ANY": 1, - "NL_ANYCRLF": 1, - "none": 1, - "NEWLINE": 1, - "..": 28, - ".start": 1, - "unwind": 1, - "call": 1, - "optimize": 1, - "do": 15, - "leave": 1, - "advance": 1, - "clear": 6, - "LF": 1, - "CR": 1, - "CRLF": 1, - "mode": 12, - "middle": 1, - ".i": 2, - ".match": 2, - ".round": 2, - ".byref": 2, - ".ovector": 2, - "replace": 27, - "subst": 3, - "last": 4, - "occurrences": 1, - "matched": 1, - "back": 4, - "th": 3, - "replaced": 1, - "where": 6, - "substitution": 2, - "begins": 1, - "substituted": 2, - "defaults": 3, - "ends": 1, - "offset": 6, - "backref": 1, - "boffset": 1, - "prepare": 1, - "reference": 2, - "stack": 8, - ".subst": 1, - ".backref": 1, - "silently": 1, - "zco": 1, - "": 1, - "s/": 6, - "b*": 7, - "/Xy/g": 6, - "print": 8, - "aa": 9, - "et": 4, - "direct": 3, - "place": 9, - "take": 1, - "setup": 3, - "trap": 10, - "source": 3, - "location": 5, - "argument": 1, - "st": 6, - "@ref": 2, - "COMPILE": 2, - "meaning": 1, - "zs": 2, - "re": 2, - "raise": 3, - "XC": 1, - "U16384": 1, - "U16385": 1, - "U16386": 1, - "U16387": 1, - "U16388": 2, - "U16389": 1, - "U16390": 1, - "U16391": 1, - "U16392": 2, - "U16393": 1, - "NOTES": 1, - "U16401": 2, - "raised": 2, - "i.e.": 3, - "NOMATCH": 2, - "ever": 1, - "uncommon": 1, - "situation": 1, - "too": 1, - "small": 1, - "considering": 1, - "size": 3, - "controlled": 1, - "here": 4, - "U16402": 1, - "U16403": 1, - "U16404": 1, - "U16405": 1, - "U16406": 1, - "U16407": 1, - "U16408": 1, - "U16409": 1, - "U16410": 1, - "U16411": 1, - "U16412": 1, - "U16414": 1, - "U16415": 1, - "U16416": 1, - "U16417": 1, - "U16418": 1, - "U16419": 1, - "U16420": 1, - "U16421": 1, - "U16423": 1, - "U16424": 1, - "U16425": 1, - "U16426": 1, - "U16427": 1, - "Fibonacci": 1, - "term": 10, - "create": 6, - "student": 14, - "zwrite": 1, - "Mumtris": 3, - "tetris": 1, - "game": 1, - "MUMPS": 1, - "fun.": 1, - "Resize": 1, - "terminal": 2, - "maximize": 1, - "PuTTY": 1, - "window": 1, - "report": 1, - "mumtris.": 1, - "setting": 3, - "ansi": 2, - "compatible": 1, - "cursor": 1, - "positioning.": 1, - "NOTICE": 1, - "uses": 1, - "making": 1, - "delays": 1, - "lower": 1, - "s.": 1, - "That": 1, - "CPU": 1, - "It": 2, - "fall": 5, - "lock": 2, - "preview": 3, - "over": 2, - "exit": 3, - "short": 1, - "circuit": 1, - "redraw": 3, - "timeout": 1, - "harddrop": 1, - "other": 1, - "ex": 5, - "hd": 3, - "*c": 1, - "<0&'d>": 1, - "t10m": 1, - "h": 39, - "q=": 6, - "d=": 1, - "zb": 2, - "3": 6, - "rotate": 5, - "right": 3, - "left": 5, - "fl=": 1, - "gr=": 1, - "hl": 2, - "help": 2, - "drop": 2, - "hd=": 1, - "matrix": 2, - "draw": 3, - "y": 33, - "ticks": 2, - "h=": 2, - "1000000000": 1, - "e=": 1, - "t10m=": 1, - "100": 2, - "n=": 1, - "ne=": 1, - "x=": 5, - "y=": 3, - "r=": 3, - "collision": 6, - "score": 5, - "k=": 1, - "4": 5, - "j=": 4, - "<1))))>": 1, - "800": 1, - "200": 1, - "lv": 5, - "lc=": 1, - "10": 1, - "mt_": 2, - "cls": 6, - "dh/2": 6, - "dw/2": 6, - "*s": 4, - "echo": 1, - "intro": 1, - "pos": 33, - "workaround": 1, - "ANSI": 1, - "driver": 1, - "NL": 1, - "some": 1, - "safe": 3, - "clearscreen": 1, - "h/2": 3, - "*w/2": 3, - "fill": 3, - "fl": 2, - "*x": 1, - "mx": 4, - "my": 5, - "**lv*sb": 1, - "*lv": 1, - "sc": 3, - "ne": 2, - "gr": 1, - "w*3": 1, - "dev": 1, - "zsh": 1, - "dw": 1, - "dh": 1, - "elements": 3, - "elemId": 3, - "rotateVersions": 1, - "rotateVersion": 2, - "bottom": 1, - "coordinate": 1, - "point": 2, - "____": 1, - "__": 2, - "||": 1, - "Implementation": 1, - "works": 1, - "ZCHSET": 2, - "please": 1, - "don": 1, - "joke.": 1, - "Serves": 1, - "well": 2, - "reverse": 1, - "engineering": 1, - "obtaining": 1, - "integer": 1, - "addition": 1, - "modulo": 1, - "division.": 1, - "//en.wikipedia.org/wiki/MD5": 1, - "#64": 1, - "msg_": 1, - "_m_": 1, - "n64": 2, - "read": 2, - ".p": 1, - "*i": 3, - "#16": 3, - "xor": 4, - "#4294967296": 6, - "n32h": 5, - "bit": 5, - "#2": 1, - "*2147483648": 2, - "a#2": 1, - "b#2": 1, - ".a": 1, - ".b": 1, - "rol": 1, - "a*": 1, - "**n": 1, - "c#4294967296": 1, - "*n": 1, - "n#256": 1, - "n#16": 2, - "two": 2, - "illustrate": 1, - "dynamic": 1, - "scope": 1, - "triangle1": 1, - "sum": 15, - "main2": 1, - "triangle2": 1, - "statement": 3, - "statements": 1, - "contrasted": 1, - "if3": 1, - "else": 7, - "clause": 2, - "if4": 1, - "bodies": 1, - "MDB": 60, - "M/DB": 2, - "Mumps": 1, - "Emulation": 1, - "Amazon": 1, - "SimpleDB": 1, - "buildDate": 1, - "indexLength": 10, - "Note": 2, - "keyId": 108, - "been": 4, - "tested": 1, - "time": 9, - "these": 1, - "methods": 2, - "To": 2, - "Initialise": 2, - "service": 1, - "//192.168.1.xxx/mdb/test.mgwsi": 1, - "Action": 2, - "addUser": 2, - "userKeyId": 6, - "userSecretKey": 6, - "requestId": 17, - "boxUsage": 11, - "startTime": 21, - ".startTime": 5, - "MDBUAF": 2, - ".boxUsage": 22, - "createDomain": 1, - "domainName": 38, - "dn": 4, - "dnx": 3, - "id": 33, - "noOfDomains": 12, - "token": 21, - "MDBConfig": 1, - "getDomainId": 3, - "found": 7, - "namex": 8, - "buildItemNameIndex": 2, - "domainId": 53, - "itemId": 41, - "itemValue": 7, - "itemValuex": 3, - "countDomains": 2, - "deleteDomain": 2, - "listDomains": 1, - "maxNoOfDomains": 2, - "nextToken": 7, - "domainList": 3, - "fullName": 3, - "decodeBase64": 1, - "encodeBase64": 1, - "itemExists": 1, - "getItemId": 2, - "getAttributeValueId": 3, - "attribId": 36, - "valuex": 13, - "putAttributes": 2, - "itemName": 16, - "attributes": 32, - "valueId": 16, - "xvalue": 4, - "Item": 1, - "Domain": 1, - "itemNamex": 4, - "parseJSON": 1, - "attributesJSON": 1, - ".attributes": 5, - "attribute": 14, - "getAttributeId": 2, - "domain": 1, - "Not": 1, - "existing": 2, - "values": 4, - "now": 1, - "name/value": 2, - "pair": 1, - "getAttributes": 2, - "suppressBoxUsage": 1, - "attrNo": 9, - "valueNo": 6, - "delete": 2, - "item": 2, - "associated": 1, - "queryIndex": 1, - "records": 2, - "pairs": 2, - "vno": 2, - "completely": 3, - "references": 1, - "maxNoOfItems": 3, - "itemList": 12, - "session": 1, - "identifier": 1, - "stored": 1, - "queryExpression": 16, - "relink": 1, - "zewdGTMRuntime": 1, - "CGIEVAR": 1, - "cgi": 1, - "unescName": 5, - "urlDecode": 2, - "KEY": 36, - "WebLink": 1, - "entry": 5, - "action": 15, - "AWSAcessKeyId": 1, - "db": 9, - "hash": 1, - "itemsAndAttrs": 2, - "secretKey": 1, - "signatureMethod": 2, - "signatureVersion": 3, - "stringToSign": 2, - "rltKey": 2, - "_action_": 2, - "h_": 3, - "mdbKey": 2, - "errorResponse": 9, - ".requestId": 7, - "createResponse": 4, - "installMDBM": 1, - "authenticate": 1, - "MDBSession": 1, - "createResponseStringToSign": 1, - "Security": 1, - "_db": 1, - "MDBAPI": 1, - "_db_": 1, - "db_": 1, - "_action": 1, - "metaData": 1, - "domainMetadata": 1, - ".metaData": 1, - "paramName": 8, - "paramValue": 5, - "Query": 1, - "DomainName": 2, - "QueryExpression": 2, - "MaxNumberOfItems": 2, - "NextToken": 3, - "QueryWithAttributes": 1, - "AttributeName.": 2, - "Select": 2, - "SelectExpression": 1, - "entering": 1, - "runSelect.": 1, - "selectExpression": 3, - "finished": 1, - "runSelect": 3, - "select": 3, - "asc": 1, - "inValue": 6, - "str": 15, - "expr": 18, - "rel": 2, - "itemStack": 3, - "between": 2, - "<=\">": 1, - "lastWord=": 7, - "inAttr=": 5, - "expr=": 10, - "thisWord=": 7, - "inAttr": 2, - "queryExpression=": 4, - "_queryExpression": 2, - "isNull": 1, - "5": 1, - "8": 1, - "isNotNull": 1, - "9": 1, - "np": 17, - "prevName": 1, - "np=": 1, - "diffNames": 6, - "_term": 3, - "expr_": 1, - "_orderBy": 1, - "runQuery": 2, - ".itemList": 4, - "escVals": 1, - "str_c": 2, - "_x_": 1, - "orderBy": 1, - "_query": 1, - "parseSelect": 1, - ".domainName": 2, - ".queryExpression": 1, - ".orderBy": 1, - ".limit": 1, - "replaceAll": 11, - "executeSelect": 1, - ".itemStack": 1, - "***": 2, - "listCopy": 3, - "escape": 7, - "externalSelect": 2, - "_keyId_": 1, - "_selectExpression": 1, - "FromStr": 6, - "ToStr": 4, - "InText": 4, - "old": 3, - "p1": 5, - "stripTrailingSpaces": 2, - "spaces": 3, - "makeString": 3, - "string_spaces": 1, - "start1": 2, - "start2": 1, - "run": 2, - "APIs": 1, - "Fri": 1, - "Nov": 1, - "getVersion": 1, - "zewdCompiler": 6, - "date": 1, - "getDate": 1, - "compilePage": 2, - "app": 13, - "technology": 9, - "outputPath": 4, - "multilingual": 4, - "maxLines": 4, - "compileAll": 2, - "templatePageName": 2, - "autoTranslate": 2, - "verbose": 2, - "zewdMgr": 1, - "startSession": 2, - "requestArray": 2, - "serverArray": 1, - "sessionArray": 5, - "filesArray": 1, - "zewdPHP": 8, - ".requestArray": 2, - ".serverArray": 1, - ".sessionArray": 3, - ".filesArray": 1, - "closeSession": 2, - "saveSession": 2, - "endOfPage": 2, - "prePageScript": 2, - "releaseLock": 2, - "tokeniseURL": 2, - "url": 2, - "zewdCompiler16": 5, - "getSessid": 1, - "isTokenExpired": 2, - "zewdSession": 39, - "initialiseSession": 1, - "deleteSession": 2, - "changeApp": 1, - "appName": 4, - "setRedirect": 1, - "toPage": 1, - "path": 4, - "getRootURL": 1, - "_sessid_": 3, - "_token_": 1, - "_nextPage": 1, - "zcvt": 11, - "nextPage": 1, - "isNextPageTokenValid": 2, - "zewdCompiler13": 10, - "isCSP": 1, - "normaliseTextValue": 1, - "text": 6, - "writeLine": 2, - "CacheTempBuffer": 2, - "displayOptions": 2, - "fieldName": 5, - "listName": 6, - "codeValue": 7, - "nnvp": 1, - "nvp": 1, - "textValue": 6, - "getSessionValue": 3, - "codeValueEsc": 7, - "textValueEsc": 7, - "htmlOutputEncode": 2, - "zewdAPI2": 5, - "_codeValueEsc_": 1, - "translationMode": 1, - "_appName": 1, - "typex": 1, - "type": 2, - "avoid": 1, - "getPhraseIndex": 1, - "zewdCompiler5": 1, - "licensed": 1, - "setWarning": 2, - "isTemp": 11, - "setWLDSymbol": 1, - "Duplicate": 1, - "performance": 1, - "wldAppName": 1, - "wldName": 1, - "wldSessid": 1, - "zzname": 1, - "extcErr": 1, - "mess": 3, - "namespace": 1, - "valueErr": 1, - "exportCustomTags": 2, - "tagList": 1, - "filepath": 10, - ".tagList": 1, - "exportAllCustomTags": 2, - "importCustomTags": 2, - "filePath": 2, - "zewdForm": 1, - "stripSpaces": 6, - "obj": 6, - "prop": 6, - "setSessionObject": 3, - "allowJSONAccess": 1, - "sessionName": 30, - "disallowJSONAccess": 1, - "JSONAccess": 1, - "existsInSession": 2, - "existsInSessionArray": 2, - "p3": 3, - "p4": 2, - "p5": 2, - "p6": 2, - "p7": 2, - "p8": 2, - "p9": 2, - "p10": 2, - "p11": 2, - "clearSessionArray": 1, - "arrayName": 35, - "setSessionArray": 1, - "getSessionArray": 1, - "clearArray": 2, - "getSessionArrayErr": 1, - "Come": 1, - "occurred": 2, - "addToSession": 2, - "@name": 4, - "mergeToSession": 1, - "mergeGlobalToSession": 2, - "mergeGlobalFromSession": 2, - "mergeArrayToSession": 1, - "mergeArrayToSessionObject": 2, - ".array": 1, - "mergeArrayFromSession": 1, - "mergeFromSession": 1, - "deleteFromSession": 1, - "deleteFromSessionObject": 1, - "sessionNameExists": 1, - "getSessionArrayValue": 2, - ".exists": 1, - "sessionArrayValueExists": 2, - "deleteSessionArrayValue": 2, - "Objects": 1, - "objectName": 13, - "propertyName": 3, - "propertyValue": 5, - "comma": 3, - "objectName_": 2, - "_propertyName": 2, - "_propertyName_": 2, - "_propertyValue_": 1, - "_p": 1, - "quoted": 1, - "removeDocument": 1, - "zewdDOM": 3, - "instanceName": 2, - "clearXMLIndex": 1, - "zewdSchemaForm": 1, - "closeDOM": 1, - "makeTokenString": 1, - "token_": 1, - "convertDateToSeconds": 1, - "hdate": 7, - "hdate*86400": 1, - "convertSecondsToDate": 1, - "secs": 2, - "secs#86400": 1, - "getTokenExpiry": 2, - "h*86400": 1, - "randChar": 1, - "lowerCase": 2, - "stripLeadingSpaces": 2, - "d1": 7, - "zd": 1, - "<10>": 1, - "dd=": 2, - "mm=": 3, - "d1=": 1, - "p1=": 1, - "mm": 7, - "p2=": 1, - "yy=": 1, - "dd_": 1, - "mm_": 1, - "inetTime": 1, - "Decode": 1, - "Internet": 1, - "Format": 1, - "Time": 1, - "H": 1, - "format": 2, - "Offset": 1, - "relative": 1, - "GMT": 1, - "hh": 4, - "ss": 4, - "_hh": 1, - "time#3600": 1, - "_mm": 1, - "time#60": 1, - "_ss": 2, - "hh_": 1, - "_mm_": 1, - "openNewFile": 2, - "openFile": 2, - "openDOM": 2, - "#39": 1, - "<\",\"<\")>": 1, - "string=": 1, - "gt": 1, - "amp": 1, - "HTML": 1, - "no2": 1, - "p1_c_p2": 1, - "getIP": 2, - "Get": 2, - "own": 2, - "IP": 1, - "address": 1, - "ajaxErrorRedirect": 2, - "classExport": 2, - "className": 2, - ".methods": 1, - "strx": 2, - "disableEwdMgr": 1, - "enableEwdMgr": 1, - "enableWLDAccess": 1, - "disableWLDAccess": 1, - "isSSOValid": 2, - "sso": 2, - "zewdMgrAjax2": 1, - "uniqueId": 1, - "nodeOID": 2, - "filename": 2, - "linkToParentSession": 2, - "zewdCompiler20": 1, - "exportToGTM": 1, - "computes": 1, - "factorial": 3, - "f*n": 1, - "main": 1, - "label1": 1, - "GMRGPNB0": 1, - "CISC/JH/RM": 1, - "NARRATIVE": 1, - "BUILDER": 1, - "TEXT": 5, - "GENERATOR": 1, - "cont.": 1, - "/20/91": 1, - "Text": 1, - "Generator": 1, - "Jan": 1, - "ENTRY": 2, - "WITH": 1, - "GMRGA": 1, - "SET": 3, - "TO": 6, - "POINT": 1, - "AT": 1, - "WHICH": 1, - "WANT": 1, - "START": 1, - "BUILDING": 1, - "GMRGE0": 11, - "GMRGADD": 4, - "GMR": 6, - "GMRGA0": 11, - "GMRGPDA": 9, - "GMRGCSW": 2, - "NOW": 1, - "DTC": 1, - "GMRGB0": 9, - "GMRGST": 6, - "GMRGPDT": 2, - "GMRGRUT0": 3, - "GMRGF0": 3, - "GMRGSTAT": 8, - "_GMRGB0_": 2, - "GMRD": 6, - "GMRGSSW": 3, - "SNT": 1, - "GMRGPNB1": 1, - "GMRGNAR": 8, - "GMRGPAR_": 2, - "_GMRGSPC_": 3, - "_GMRGRM": 2, - "_GMRGE0": 1, - "STORETXT": 1, - "GMRGRUT1": 1, - "GMRGSPC": 3, - "GMRGD0": 7, - "ALIST": 1, - "GMRGPLVL": 6, - "GMRGA0_": 1, - "_GMRGD0_": 1, - "_GMRGSSW_": 1, - "_GMRGADD": 1, - "GMRGI0": 6, - "Examples": 4, - "pcre.m": 1, - "parameters": 1, - "pcreexamples": 32, - "shining": 1, - "Test": 1, - "Simple": 2, - "zwr": 17, - "Match": 4, - "grouped": 2, - "Just": 1, - "Change": 2, - "word": 3, - "Escape": 1, - "sequence": 1, - "More": 1, - "Low": 1, - "api": 1, - "Setup": 1, - "myexception2": 2, - "st_": 1, - "zl_": 2, - ".options": 1, - "Run": 1, - ".offset": 1, - "used.": 2, - "strings": 1, - "submitted": 1, - "exact": 1, - "usable": 1, - "integers": 1, - "way": 1, - "what": 2, - "/mg": 2, - "aaa": 1, - "nbb": 1, - ".*": 1, - "discover": 1, - "stackusage": 3, - "Locale": 5, - "Support": 1, - "Polish": 1, - "I18N": 2, - "PCRE.": 1, - "Polish.": 1, - "second": 1, - "letter": 1, - "": 1, - "ISO8859": 1, - "//en.wikipedia.org/wiki/Polish_code_pages": 1, - "complete": 1, - "listing": 1, - "CHAR": 1, - "different": 3, - "modes": 1, - "In": 1, - "probably": 1, - "expected": 1, - "working": 1, - "single": 2, - "ISO": 3, - "chars.": 1, - "Use": 1, - "zch": 7, - "prepared": 1, - "GTM": 8, - "BADCHAR": 1, - "errors.": 1, - "Also": 1, - "others": 1, - "might": 1, - "expected.": 1, - "POSIX": 1, - "localization": 1, - "nolocale": 2, - "zchset": 2, - "isolocale": 2, - "utflocale": 2, - "LC_CTYPE": 1, - "Set": 2, - "results.": 1, - "envlocale": 2, - "ztrnlnm": 2, - "Notes": 1, - "Enabling": 1, - "native": 1, - "requires": 1, - "libicu": 2, - "gtm_chset": 1, - "gtm_icu_version": 1, - "recompiled": 1, - "object": 4, - "Instructions": 1, - "Install": 1, - "libicu48": 2, - "apt": 1, - "get": 2, - "install": 1, - "append": 1, - "chown": 1, - "gtm": 1, - "/opt/gtm": 1, - "Startup": 1, - "errors": 6, - "INVOBJ": 1, - "Cannot": 1, - "ZLINK": 1, - "due": 1, - "unexpected": 1, - "Object": 1, - "compiled": 1, - "CHSET": 1, - "written": 3, - "startup": 1, - "correct": 1, - "above.": 1, - "Limits": 1, - "built": 1, - "recursion.": 1, - "Those": 1, - "prevent": 1, - "engine": 1, - "very": 2, - "long": 2, - "especially": 1, - "there": 2, - "tree": 1, - "checked.": 1, - "Functions": 1, - "itself": 1, - "allows": 1, - "MATCH_LIMIT": 1, - "MATCH_LIMIT_RECURSION": 1, - "arguments": 1, - "library": 1, - "compilation": 2, - "Example": 1, - "longrun": 3, - "Equal": 1, - "corrected": 1, - "shortrun": 2, - "Enforced": 1, - "enforcedlimit": 2, - "Exception": 2, - "Handling": 1, - "Error": 1, - "conditions": 1, - "handled": 1, - "zc": 1, - "codes": 1, - "labels": 1, - "file.": 1, - "When": 2, - "neither": 1, - "nor": 1, - "within": 1, - "mechanism.": 1, - "depending": 1, - "caller": 1, - "exception.": 1, - "lead": 1, - "prompt": 1, - "terminating": 1, - "image.": 1, - "handlers.": 1, - "Handler": 1, - "nohandler": 4, - "Pattern": 1, - "failed": 1, - "unmatched": 1, - "parentheses": 1, - "<-->": 1, - "HERE": 1, - "RTSLOC": 2, - "At": 2, - "SETECODE": 1, - "Non": 1, - "assigned": 1, - "ECODE": 1, - "32": 1, - "GT": 1, - "image": 1, - "terminated": 1, - "myexception1": 3, - "zt=": 1, - "mytrap1": 2, - "zg": 2, - "mytrap3": 1, - "DETAILS": 1, - "executed": 1, - "frame": 1, - "called.": 1, - "deeper": 1, - "frames": 1, - "already": 1, - "dropped": 1, - "local": 1, - "available": 1, - "context.": 1, - "Thats": 1, - "why": 1, - "doesn": 1, - "unless": 1, - "cleared.": 1, - "Always": 1, - "done.": 2, - "Execute": 1, - "p5global": 1, - "p5replace": 1, - "p5lf": 1, - "p5nl": 1, - "newline": 1, - "utf8support": 1, - "myexception3": 1, - "PXAI": 1, - "ISL/JVS": 1, - "ISA/KWP": 1, - "ESW": 1, - "PCE": 2, - "DRIVING": 1, - "RTN": 1, - "/20/03": 1, - "am": 1, - "CARE": 1, - "ENCOUNTER": 2, - "**15": 1, - "Aug": 1, - "DATA2PCE": 1, - "PXADATA": 7, - "PXAPKG": 9, - "PXASOURC": 10, - "PXAVISIT": 8, - "PXAUSER": 6, - "PXANOT": 3, - "ERRRET": 2, - "PXAPREDT": 2, - "PXAPROB": 15, - "PXACCNT": 2, - "add/edit/delete": 1, - "PCE.": 1, - "pointer": 4, - "visit": 3, - "related.": 1, - "nodes": 1, - "needed": 1, - "lookup/create": 1, - "visit.": 1, - "adding": 1, - "data.": 1, - "displayed": 1, - "screen": 1, - "debugging": 1, - "initial": 1, - "code.": 1, - "passed": 4, - "reference.": 2, - "present": 1, - "PXKERROR": 2, - "caller.": 1, - "want": 1, - "edit": 1, - "Primary": 3, - "Provider": 1, - "moment": 1, - "being": 1, - "dangerous": 1, - "dotted": 1, - "name.": 1, - "warnings": 1, - "occur": 1, - "They": 1, - "form": 1, - "general": 1, - "description": 1, - "problem.": 1, - "ERROR1": 1, - "GENERAL": 2, - "ERRORS": 4, - "SUBSCRIPT": 5, - "PASSED": 4, - "IN": 4, - "FIELD": 2, - "FROM": 5, - "WARNING2": 1, - "WARNINGS": 2, - "WARNING3": 1, - "SERVICE": 1, - "CONNECTION": 1, - "REASON": 9, - "ERROR4": 1, - "PROBLEM": 1, - "LIST": 1, - "Returns": 2, - "PFSS": 2, - "Account": 2, - "Reference": 2, - "known.": 1, - "Returned": 1, - "located": 1, - "Order": 1, - "#100": 1, - "processed": 1, - "could": 1, - "incorrectly": 1, - "VARIABLES": 1, - "NOVSIT": 1, - "PXAK": 20, - "DFN": 1, - "PXAERRF": 3, - "PXADEC": 1, - "PXELAP": 1, - "PXASUB": 2, - "VALQUIET": 2, - "PRIMFND": 7, - "PXAERROR": 1, - "PXAERR": 7, - "PRVDR": 1, - "needs": 1, - "look": 1, - "up": 1, - "passed.": 1, - "@PXADATA@": 8, - "SOR": 1, - "SOURCE": 2, - "PKG2IEN": 1, - "VSIT": 1, - "PXAPIUTL": 2, - "TMPSOURC": 1, - "SAVES": 1, - "CREATES": 1, - "VST": 2, - "VISIT": 3, - "KILL": 1, - "VPTR": 1, - "PXAIVSTV": 1, - "ERR": 2, - "PXAIVST": 1, - "PRV": 1, - "PROVIDER": 1, - "AUPNVSIT": 1, - ".I": 4, - "..S": 7, - "status": 2, - "Secondary": 2, - ".S": 6, - "..I": 2, - "PXADI": 4, - "NODE": 5, - "SCREEN": 2, - "VA": 1, - "EXTERNAL": 2, - "INTERNAL": 2, - "ARRAY": 2, - "PXAICPTV": 1, - "SEND": 1, - "BLD": 2, - "DIALOG": 4, - ".PXAERR": 3, - "MSG": 2, - "GLOBAL": 1, - "NA": 1, - "PROVDRST": 1, - "Check": 1, - "provider": 1, - "PRVIEN": 14, - "DETS": 7, - "DIQ": 3, - "PRI": 3, - "PRVPRIM": 2, - "AUPNVPRV": 2, - ".04": 1, - "DIQ1": 1, - "POVPRM": 1, - "POVARR": 1, - "STOP": 1, - "LPXAK": 4, - "ORDX": 14, - "NDX": 7, - "ORDXP": 3, - "DX": 2, - "ICD9": 2, - "AUPNVPOV": 2, - "@POVARR@": 6, - "force": 1, - "originally": 1, - "primary": 1, - "diagnosis": 1, - "flag": 1, - ".F": 2, - "..E": 1, - "...S": 5, - "DataBallet.": 4, - "Laurent": 2, - "Parenteau": 2, - "": 2, - "DataBallet": 4, - "encode": 1, - "Return": 1, - "base64": 6, - "URL": 2, - "Filename": 1, - "alphabet": 2, - "RFC": 1, - "todrop": 2, - "Populate": 1, - "only.": 1, - "zextract": 3, - "zlength": 3, - "decode": 1, - "val": 5, - "Decoded": 1, - "Encoded": 1, - "decoded": 3, - "decoded_": 1, - "safechar": 3, - "zchar": 1, - "encoded_c": 1, - "encoded_": 2, - "FUNC": 1, - "DH": 1, - "zascii": 1, - "WVBRNOT": 1, - "HCIOFO/FT": 1, - "JR": 1, - "IHS/ANMC/MWR": 1, - "BROWSE": 1, - "NOTIFICATIONS": 1, - "/30/98": 1, - "WOMEN": 1, - "WVDATE": 8, - "WVENDDT1": 2, - "WVIEN": 13, - "..F": 2, - "WV": 8, - "WVXREF": 1, - "WVDFN": 6, - "SELECTING": 1, - "ONE": 2, - "CASE": 1, - "MANAGER": 1, - "AND": 3, - "THIS": 3, - "DOESN": 1, - "WVE": 2, - "": 2, - "STORE": 3, - "WVA": 2, - "WVBEGDT1": 1, - "NOTIFICATION": 1, - "IS": 3, - "QUEUED.": 1, - "WVB": 4, - "OPEN": 1, - "ONLY": 1, - "CLOSED.": 1, - ".Q": 1, - "EP": 4, - "ALREADY": 1, - "LL": 1, - "SORT": 3, - "ABOVE.": 1, - "DATE": 1, - "WVCHRT": 1, - "SSN": 1, - "WVUTL1": 2, - "SSN#": 1, - "WVNAME": 4, - "WVACC": 4, - "ACCESSION#": 1, - "WVSTAT": 1, - "STATUS": 2, - "WVUTL4": 1, - "WVPRIO": 5, - "PRIORITY": 1, - "WVCHRT_U_WVNAME_U_WVDATE_U_WVACC_U_WVSTAT_U_WVPRIO_U_WVIEN": 1, - "WVC": 4, - "COPYGBL": 3, - "COPY": 1, - "MAKE": 1, - "IT": 1, - "FLAT.": 1, - "...F": 1, - "....S": 1, - "DEQUEUE": 1, - "TASKMAN": 1, - "QUEUE": 1, - "PRINTOUT.": 1, - "SETVARS": 2, - "WVUTL5": 2, - "WVBRNOT1": 2, - "EXIT": 1, - "FOLLOW": 1, - "CALLED": 1, - "PROCEDURE": 1, - "FOLLOWUP": 1, - "MENU.": 1, - "WVBEGDT": 1, - "DT": 2, - "WVENDDT": 1, - "DEVICE": 1, - "WVBRNOT2": 1, - "WVPOP": 1, - "WVLOOP": 1, - "ax": 2, - "bx": 2, - "cx": 2, - "ay": 2, - "cy": 2, - "sumx": 3, - "sqrx": 3, - "sumxy": 5, - "x*x": 1, - "x*y": 1 - }, - "NSIS": { - ";": 39, - "bigtest.nsi": 1, - "This": 2, - "script": 1, - "attempts": 1, - "to": 6, - "test": 1, - "most": 1, - "of": 3, - "the": 4, - "functionality": 1, - "NSIS": 3, - "exehead.": 1, - "-": 205, - "ifdef": 2, - "HAVE_UPX": 1, - "packhdr": 1, - "tmp.dat": 1, - "endif": 4, - "NOCOMPRESS": 1, - "SetCompress": 1, - "off": 1, - "Name": 1, - "Caption": 1, - "Icon": 1, - "OutFile": 1, - "SetDateSave": 1, - "on": 6, - "SetDatablockOptimize": 1, - "CRCCheck": 1, - "SilentInstall": 1, - "normal": 1, - "BGGradient": 1, - "FFFFFF": 1, - "InstallColors": 1, - "FF8080": 1, - "XPStyle": 1, - "InstallDir": 1, - "InstallDirRegKey": 1, - "HKLM": 9, - "CheckBitmap": 1, - "LicenseText": 1, - "LicenseData": 1, - "RequestExecutionLevel": 1, - "admin": 1, - "Page": 4, - "license": 1, - "components": 1, - "directory": 3, - "instfiles": 2, - "UninstPage": 2, - "uninstConfirm": 1, - "ifndef": 2, - "NOINSTTYPES": 1, - "only": 1, - "if": 4, - "not": 2, - "defined": 1, - "InstType": 6, - "/NOCUSTOM": 1, - "/COMPONENTSONLYONCUSTOM": 1, - "AutoCloseWindow": 1, - "false": 1, - "ShowInstDetails": 1, - "show": 1, - "Section": 5, - "empty": 1, - "string": 1, - "makes": 1, - "it": 3, - "hidden": 1, - "so": 1, - "would": 1, - "starting": 1, - "with": 1, - "write": 2, - "reg": 1, - "info": 1, - "StrCpy": 2, - "DetailPrint": 1, - "WriteRegStr": 4, - "SOFTWARE": 7, - "NSISTest": 7, - "BigNSISTest": 8, - "uninstall": 2, - "strings": 1, - "SetOutPath": 3, - "INSTDIR": 15, - "File": 3, - "/a": 1, - "CreateDirectory": 1, - "recursively": 1, - "create": 1, - "a": 2, - "for": 2, - "fun.": 1, - "WriteUninstaller": 1, - "Nop": 1, - "fun": 1, - "SectionEnd": 5, - "SectionIn": 4, - "Start": 2, - "MessageBox": 11, - "MB_OK": 8, - "MB_YESNO": 3, - "IDYES": 2, - "MyLabel": 2, - "SectionGroup": 2, - "/e": 1, - "SectionGroup1": 1, - "WriteRegDword": 3, - "xdeadbeef": 1, - "WriteRegBin": 1, - "WriteINIStr": 5, - "Call": 6, - "MyFunctionTest": 1, - "DeleteINIStr": 1, - "DeleteINISec": 1, - "ReadINIStr": 1, - "StrCmp": 1, - "INIDelSuccess": 2, - "ClearErrors": 1, - "ReadRegStr": 1, - "HKCR": 1, - "xyz_cc_does_not_exist": 1, - "IfErrors": 1, - "NoError": 2, - "Goto": 1, - "ErrorYay": 2, - "CSCTest": 1, - "Group2": 1, - "BeginTestSection": 1, - "IfFileExists": 1, - "BranchTest69": 1, - "|": 3, - "MB_ICONQUESTION": 1, - "IDNO": 1, - "NoOverwrite": 1, - "skipped": 2, - "file": 4, - "doesn": 2, - "s": 1, - "icon": 1, - "start": 1, - "minimized": 1, - "and": 1, - "give": 1, - "hotkey": 1, - "(": 5, - "Ctrl": 1, - "+": 2, - "Shift": 1, - "Q": 2, - ")": 5, - "CreateShortCut": 2, - "SW_SHOWMINIMIZED": 1, - "CONTROL": 1, - "SHIFT": 1, - "MyTestVar": 1, - "myfunc": 1, - "test.ini": 2, - "MySectionIni": 1, - "Value1": 1, - "failed": 1, - "TextInSection": 1, - "will": 1, - "example2.": 1, - "Hit": 1, - "next": 1, - "continue.": 1, - "{": 8, - "NSISDIR": 1, - "}": 8, - "Contrib": 1, - "Graphics": 1, - "Icons": 1, - "nsis1": 1, - "uninstall.ico": 1, - "Uninstall": 2, - "Software": 1, - "Microsoft": 1, - "Windows": 3, - "CurrentVersion": 1, - "silent.nsi": 1, - "LogicLib.nsi": 1, - "bt": 1, - "uninst.exe": 1, - "SMPROGRAMS": 2, - "Big": 1, - "Test": 2, - "*.*": 2, - "BiG": 1, - "Would": 1, - "you": 1, - "like": 1, - "remove": 1, - "cpdest": 3, - "MyProjectFamily": 2, - "MyProject": 1, - "Note": 1, - "could": 1, - "be": 1, - "removed": 1, - "IDOK": 1, - "t": 1, - "exist": 1, - "NoErrorMsg": 1, - "x64.nsh": 1, - "A": 1, - "few": 1, - "simple": 1, - "macros": 1, - "handle": 1, - "installations": 1, - "x64": 1, - "machines.": 1, - "RunningX64": 4, - "checks": 1, - "installer": 1, - "is": 2, - "running": 1, - "x64.": 1, - "If": 1, - "EndIf": 1, - "DisableX64FSRedirection": 4, - "disables": 1, - "system": 2, - "redirection.": 2, - "EnableX64FSRedirection": 4, - "enables": 1, - "SYSDIR": 1, - "some.dll": 2, - "#": 3, - "extracts": 2, - "C": 2, - "System32": 1, - "SysWOW64": 1, - "___X64__NSH___": 3, - "define": 4, - "include": 1, - "LogicLib.nsh": 1, - "macro": 3, - "_RunningX64": 1, - "_a": 1, - "_b": 1, - "_t": 2, - "_f": 2, - "insertmacro": 2, - "_LOGICLIB_TEMP": 3, - "System": 4, - "kernel32": 4, - "GetCurrentProcess": 1, - "i.s": 1, - "IsWow64Process": 1, - "*i.s": 1, - "Pop": 1, - "_": 1, - "macroend": 3, - "Wow64EnableWow64FsRedirection": 2, - "i0": 1, - "i1": 1 ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method }, "Pod": { "Id": 1, @@ -79072,2856 +53528,174 @@ "_params": 1, "INDEX": 1 }, - "AutoHotkey": { - "MsgBox": 1, - "Hello": 1, - "World": 1 - }, - "TXL": { - "define": 12, - "program": 1, - "[": 38, - "expression": 9, - "]": 38, - "end": 12, - "term": 6, - "|": 3, - "addop": 2, - "primary": 4, - "mulop": 2, - "number": 10, - "(": 2, - ")": 2, - "-": 3, - "/": 3, - "rule": 12, - "main": 1, - "replace": 6, - "E": 3, - "construct": 1, - "NewE": 3, - "resolveAddition": 2, - "resolveSubtraction": 2, - "resolveMultiplication": 2, - "resolveDivision": 2, - "resolveParentheses": 2, - "where": 1, - "not": 1, - "by": 6, - "N1": 8, - "+": 2, - "N2": 8, - "*": 2, - "N": 2 - }, - "wisp": { - ";": 199, - "#": 2, - "wisp": 6, - "Wisp": 13, - "is": 20, - "homoiconic": 1, - "JS": 17, - "dialect": 1, - "with": 6, - "a": 24, - "clojure": 2, - "syntax": 2, - "s": 7, - "-": 33, - "expressions": 6, - "and": 9, - "macros.": 1, - "code": 3, - "compiles": 1, - "to": 21, - "human": 1, - "readable": 1, - "javascript": 1, - "which": 3, - "one": 3, - "of": 16, - "they": 3, - "key": 3, - "differences": 1, - "from": 2, - "clojurescript.": 1, - "##": 2, - "data": 1, - "structures": 1, - "nil": 4, - "just": 3, - "like": 2, - "js": 1, - "undefined": 1, - "differenc": 1, - "that": 7, - "it": 10, - "shortcut": 1, - "for": 5, - "void": 2, - "(": 77, - ")": 75, - "in": 16, - "JS.": 2, - "Booleans": 1, - "booleans": 2, - "true": 6, - "/": 1, - "false": 2, - "are": 14, - "Numbers": 1, - "numbers": 2, - "Strings": 2, - "strings": 3, - "can": 13, - "be": 15, - "multiline": 1, - "Characters": 2, - "sugar": 1, - "single": 1, - "char": 1, - "Keywords": 3, - "symbolic": 2, - "identifiers": 2, - "evaluate": 2, - "themselves.": 1, - "keyword": 1, - "Since": 1, - "string": 1, - "constats": 1, - "fulfill": 1, - "this": 2, - "purpose": 2, - "keywords": 1, - "compile": 3, - "equivalent": 2, - "strings.": 1, - "window.addEventListener": 1, - "load": 1, - "handler": 1, - "invoked": 2, - "as": 4, - "functions": 8, - "desugars": 1, - "plain": 2, - "associated": 2, - "value": 2, - "access": 1, - "bar": 4, - "foo": 6, - "[": 22, - "]": 22, - "Vectors": 1, - "vectors": 1, - "arrays.": 1, - "Note": 3, - "Commas": 2, - "white": 1, - "space": 1, - "&": 6, - "used": 1, - "if": 7, - "desired": 1, - "Maps": 2, - "hash": 1, - "maps": 1, - "objects.": 1, - "unlike": 1, - "keys": 1, - "not": 4, - "arbitary": 1, - "types.": 1, - "{": 4, - "beep": 1, - "bop": 1, - "}": 4, - "optional": 2, - "but": 7, - "come": 1, - "handy": 1, - "separating": 1, - "pairs.": 1, - "b": 5, - "In": 5, - "future": 2, - "JSONs": 1, - "may": 1, - "made": 2, - "compatible": 1, - "map": 3, - "syntax.": 1, - "Lists": 1, - "You": 1, - "up": 1, - "lists": 1, - "representing": 1, - "expressions.": 1, - "The": 1, - "first": 4, - "item": 2, - "the": 9, - "expression": 6, - "function": 7, - "being": 1, - "rest": 7, - "items": 2, - "arguments.": 2, - "baz": 2, - "Conventions": 1, - "puts": 1, - "lot": 2, - "effort": 1, - "making": 1, - "naming": 1, - "conventions": 3, - "transparent": 1, - "by": 2, - "encouraning": 1, - "lisp": 1, - "then": 1, - "translating": 1, - "them": 1, - "dash": 1, - "delimited": 1, - "dashDelimited": 1, - "predicate": 1, - "isPredicate": 1, - "__privates__": 1, - "list": 2, - "vector": 1, - "listToVector": 1, - "As": 1, - "side": 2, - "effect": 1, - "some": 2, - "names": 1, - "expressed": 3, - "few": 1, - "ways": 1, - "although": 1, - "third": 2, - "expression.": 1, - "<": 1, - "number": 3, - "Else": 1, - "missing": 1, - "conditional": 1, - "evaluates": 2, - "result": 2, - "will": 6, - ".": 6, - "monday": 1, - "today": 1, - "Compbining": 1, - "everything": 1, - "an": 1, - "sometimes": 1, - "might": 1, - "want": 2, - "compbine": 1, - "multiple": 1, - "into": 2, - "usually": 3, - "evaluating": 1, - "have": 2, - "effects": 1, - "do": 4, - "console.log": 2, - "+": 9, - "Also": 1, - "special": 4, - "form": 10, - "many.": 1, - "If": 2, - "evaluation": 1, - "nil.": 1, - "Bindings": 1, - "Let": 1, - "containing": 1, - "lexical": 1, - "context": 1, - "simbols": 1, - "bindings": 1, - "forms": 1, - "bound": 1, - "their": 2, - "respective": 1, - "results.": 1, - "let": 2, - "c": 1, - "Functions": 1, - "fn": 15, - "x": 22, - "named": 1, - "similar": 2, - "increment": 1, - "also": 2, - "contain": 1, - "documentation": 1, - "metadata.": 1, - "Docstring": 1, - "metadata": 1, - "presented": 1, - "compiled": 2, - "yet": 1, - "comments": 1, - "function.": 1, - "incerement": 1, - "added": 1, - "makes": 1, - "capturing": 1, - "arguments": 7, - "easier": 1, - "than": 1, - "argument": 1, - "follows": 1, - "simbol": 1, - "capture": 1, - "all": 4, - "args": 1, - "array.": 1, - "rest.reduce": 1, - "sum": 3, - "Overloads": 1, - "overloaded": 1, - "depending": 1, - "on": 1, - "take": 2, - "without": 2, - "introspection": 1, - "version": 1, - "y": 6, - "more": 3, - "more.reduce": 1, - "does": 1, - "has": 2, - "variadic": 1, - "overload": 1, - "passed": 1, - "throws": 1, - "exception.": 1, - "Other": 1, - "Special": 1, - "Forms": 1, - "Instantiation": 1, - "type": 2, - "instantiation": 1, - "consice": 1, - "needs": 1, - "suffixed": 1, - "character": 1, - "Type.": 1, - "options": 2, - "More": 1, - "verbose": 1, - "there": 1, - "new": 2, - "Class": 1, - "Method": 1, - "calls": 3, - "method": 2, - "no": 1, - "different": 1, - "Any": 1, - "quoted": 1, - "prevent": 1, - "doesn": 1, - "t": 1, - "unless": 5, - "or": 2, - "macro": 7, - "try": 1, - "implemting": 1, - "understand": 1, - "use": 2, - "case": 1, - "We": 1, - "execute": 1, - "body": 4, - "condition": 4, - "defn": 2, - "Although": 1, - "following": 2, - "log": 1, - "anyway": 1, - "since": 1, - "exectued": 1, - "before": 1, - "called.": 1, - "Macros": 2, - "solve": 1, - "problem": 1, - "because": 1, - "immediately.": 1, - "Instead": 1, - "you": 1, + "PogoScript": { + "httpism": 1, + "require": 3, + "async": 1, + "resolve": 2, + ".resolve": 1, + "exports.squash": 1, + "(": 38, + "url": 5, + ")": 38, + "html": 15, + "httpism.get": 2, + ".body": 2, + "squash": 2, + "callback": 2, + "replacements": 6, + "sort": 2, + "links": 2, + "in": 11, + ".concat": 1, + "scripts": 2, + "for": 2, + "each": 2, + "@": 6, + "r": 1, + "{": 3, + "r.url": 1, + "r.href": 1, + "}": 3, + "async.map": 1, "get": 2, - "choose": 1, - "when": 1, - "evaluated.": 1, - "return": 1, - "instead.": 1, - "defmacro": 3, - "less": 1, - "how": 1, - "build": 1, - "implemented.": 1, - "define": 4, - "name": 2, - "def": 1, - "@body": 1, - "Now": 1, - "we": 2, - "above": 1, - "defined": 1, - "expanded": 2, - "time": 1, - "resulting": 1, - "diff": 1, - "program": 1, - "output.": 1, - "print": 1, - "message": 2, - ".log": 1, - "console": 1, - "Not": 1, - "macros": 2, - "via": 2, - "templating": 1, - "language": 1, - "available": 1, - "at": 1, - "hand": 1, - "assemble": 1, - "form.": 1, - "For": 2, - "instance": 1, - "ease": 1, - "functional": 1, - "chanining": 1, - "popular": 1, - "chaining.": 1, - "example": 1, - "API": 1, - "pioneered": 1, - "jQuery": 1, - "very": 2, - "common": 1, - "open": 2, - "target": 1, - "keypress": 2, - "filter": 2, - "isEnterKey": 1, - "getInputText": 1, - "reduce": 3, - "render": 2, - "Unfortunately": 1, - "though": 1, - "requires": 1, - "need": 1, - "methods": 1, - "dsl": 1, - "object": 1, - "limited.": 1, - "Making": 1, - "party": 1, - "second": 1, - "class.": 1, - "Via": 1, - "achieve": 1, - "chaining": 1, - "such": 1, - "tradeoffs.": 1, - "operations": 3, - "operation": 3, - "cons": 2, - "tagret": 1, - "enter": 1, - "input": 1, - "text": 1 - }, - "Mathematica": { - "BeginPackage": 1, - "[": 74, - "]": 73, - ";": 41, - "PossiblyTrueQ": 3, - "usage": 22, - "PossiblyFalseQ": 2, - "PossiblyNonzeroQ": 3, - "Begin": 2, - "expr_": 4, - "Not": 6, - "TrueQ": 4, - "expr": 4, - "End": 2, - "AnyQ": 3, - "AnyElementQ": 4, - "AllQ": 2, - "AllElementQ": 2, - "AnyNonzeroQ": 2, - "AnyPossiblyNonzeroQ": 2, - "RealQ": 3, - "PositiveQ": 3, - "NonnegativeQ": 3, - "PositiveIntegerQ": 3, - "NonnegativeIntegerQ": 4, - "IntegerListQ": 5, - "PositiveIntegerListQ": 3, - "NonnegativeIntegerListQ": 3, - "IntegerOrListQ": 2, - "PositiveIntegerOrListQ": 2, - "NonnegativeIntegerOrListQ": 2, - "SymbolQ": 2, - "SymbolOrNumberQ": 2, - "cond_": 4, - "L_": 5, - "Fold": 3, - "Or": 1, - "False": 4, - "cond": 4, - "/@": 3, - "L": 4, - "Flatten": 1, - "And": 4, - "True": 2, - "SHEBANG#!#!=": 1, - "n_": 5, - "Im": 1, - "n": 8, - "Positive": 2, - "IntegerQ": 3, - "&&": 4, - "input_": 6, - "ListQ": 1, - "input": 11, - "MemberQ": 3, - "IntegerQ/@input": 1, - "||": 4, - "a_": 2, - "Head": 2, - "a": 3, - "Symbol": 2, - "NumericQ": 1, - "EndPackage": 1, - "Paclet": 1, - "Name": 1, - "-": 8, - "Version": 1, - "MathematicaVersion": 1, - "Description": 1, - "Creator": 1, - "Extensions": 1, - "{": 2, - "Language": 1, - "MainPage": 1, - "}": 2, - "Get": 1 - }, - "Coq": { - "Require": 17, - "Import": 11, - "Omega": 1, - "Relations": 2, - "Multiset": 2, - "SetoidList.": 1, - "Set": 4, - "Implicit": 15, - "Arguments.": 2, - "Local": 7, - "Notation": 39, - "nil.": 2, - "(": 1248, - "a": 207, - "..": 4, - "b": 89, - "[": 170, - "]": 173, - ")": 1249, - ".": 433, - "Section": 4, - "Permut.": 1, - "Variable": 7, - "A": 113, - "Type.": 3, - "eqA": 29, - "relation": 19, - "A.": 6, - "Hypothesis": 7, - "eqA_equiv": 1, - "Equivalence": 2, - "eqA.": 1, - "eqA_dec": 26, - "forall": 248, - "x": 266, - "y": 116, - "{": 39, - "}": 35, - "+": 227, - "Let": 8, - "emptyBag": 4, - "EmptyBag": 2, - "singletonBag": 10, - "SingletonBag": 2, - "_": 67, - "eqA_dec.": 2, - "Fixpoint": 36, - "list_contents": 30, - "l": 379, - "list": 78, - "multiset": 2, - "match": 70, - "with": 223, - "|": 457, - "munion": 18, - "end.": 52, - "Lemma": 51, - "list_contents_app": 5, - "m": 201, - "meq": 15, - "Proof.": 208, - "simple": 7, - "induction": 81, - ";": 375, - "simpl": 116, - "auto": 73, - "datatypes.": 47, - "intros.": 27, - "apply": 340, - "meq_trans": 10, - "l0": 7, - "Qed.": 194, - "Definition": 46, - "permutation": 43, - "permut_refl": 1, - "l.": 26, - "unfold": 58, - "permut_sym": 4, - "l1": 89, - "l2": 73, - "-": 508, - "l1.": 5, - "intros": 258, - "symmetry": 4, - "trivial.": 14, - "permut_trans": 5, - "n": 369, - "n.": 44, - "permut_cons_eq": 3, - "meq_left": 1, - "meq_singleton": 1, - "auto.": 47, - "permut_cons": 5, - "permut_app": 1, - "using": 18, - "l3": 12, - "l4": 3, - "in": 221, - "*": 59, - "specialize": 6, - "H0": 16, - "a0.": 1, - "repeat": 11, - "rewrite": 241, - "*.": 110, - "destruct": 94, - "a0": 15, - "as": 77, - "Ha": 6, - "H": 76, - "decide": 1, - "replace": 4, - "trivial": 15, - "permut_add_inside_eq": 1, - "permut_add_cons_inside": 3, - "permut_add_inside": 1, - "permut_middle": 1, - "permut_refl.": 5, - "permut_sym_app": 1, - "intro": 27, - "do": 4, - "arith.": 8, - "permut_rev": 1, - "rev": 7, - "simpl.": 70, - "permut_add_cons_inside.": 1, - "<->": 31, - "app_nil_end": 1, - "Qed": 23, - "Some": 21, - "inversion": 104, - "results": 1, - "permut_conv_inv": 1, - "e": 53, - "l2.": 8, - "generalize": 13, - "plus_reg_l.": 1, - "permut_app_inv1": 1, - "clear": 7, - "H.": 100, - "list_contents_app.": 1, - "plus_reg_l": 1, - "multiplicity": 6, - "plus_comm": 3, - "plus_comm.": 3, - "Fact": 3, - "if_eqA_then": 1, - "B": 6, - "then": 9, - "else": 9, - "Type": 86, - "if": 10, - "if_eqA_refl": 3, - "b.": 14, - "decide_left": 1, - "Global": 5, - "Instance": 7, - "if_eqA": 1, - "contradict": 3, - "transitivity": 4, - "a2": 62, - "a1": 56, - "A1": 2, - "eauto": 10, - "if_eqA_rewrite_r": 1, - "A2": 4, - "Hxx": 1, - "multiplicity_InA": 4, - "InA": 8, - "<": 76, - "a.": 6, - "split": 14, - "right.": 9, - "IHl": 8, - "multiplicity_InA_O": 2, - "multiplicity_InA_S": 1, - "multiplicity_NoDupA": 1, - "NoDupA": 3, - "inversion_clear": 6, - "H1.": 31, - "EQ": 8, - "NEQ": 1, - "constructor": 6, - "omega": 7, - "Permutation": 38, - "is": 4, - "compatible": 1, - "permut_InA_InA": 3, - "e.": 15, - "multiplicity_InA.": 1, - "meq.": 2, - "permut_cons_InA": 3, - "permut_nil": 3, - "assert": 68, - "by": 7, - "Abs": 2, - "permut_length_1": 1, - "P": 32, - "discriminate.": 2, - "permut_length_2": 1, - "b1": 35, - "b2": 23, - "/": 41, - "P.": 5, - "left": 6, - "permut_length_1.": 2, - "red": 6, - "@if_eqA_rewrite_l": 2, - "omega.": 7, - "permut_length": 1, - "length": 21, - "InA_split": 1, - "h2": 1, - "t2": 51, - "H1": 18, - "H2": 12, - "subst": 7, - "app_length.": 2, - "plus_n_Sm": 1, - "f_equal.": 1, - "app_length": 1, - "IHl1": 1, - "permut_remove_hd": 1, - "revert": 5, - "f_equal": 1, - "if_eqA_rewrite_l": 1, - "NoDupA_equivlistA_permut": 1, - "Equivalence_Reflexive.": 1, - "change": 1, - "Equivalence_Reflexive": 1, - "Forall2": 2, - "permutation_Permutation": 1, - "exists": 60, - "Forall2.": 1, - "pose": 2, - "proof": 1, - "&": 21, - "IHP": 2, - "IHA": 2, - "Forall2_app_inv_r": 1, - "Hl1": 1, - "Hl2": 1, - "split.": 17, - "Permutation_cons_app": 3, - "Forall2_app": 1, - "Forall2_cons": 1, - "Heq": 8, - "Permutation_impl_permutation": 1, - "permut_eqA": 1, - "End": 15, - "Permut_permut.": 1, - "permut_right": 1, - "only": 3, - "parsing": 3, - "permut_tran": 1, - "Export": 10, - "Imp.": 1, - "Relations.": 1, - "Inductive": 41, - "tm": 43, - "tm_const": 45, - "nat": 108, - "tm_plus": 30, - "tm.": 3, - "Tactic": 9, - "tactic": 9, - "first": 18, - "ident": 9, - "c": 70, - "Case_aux": 38, - "Module": 11, - "SimpleArith0.": 2, - "eval": 8, - "t": 93, - "SimpleArith1.": 2, - "Reserved": 4, - "at": 17, - "level": 11, - "associativity": 7, - "Prop": 17, - "E_Const": 2, - "E_Plus": 2, - "t1": 48, - "n1": 45, - "n2": 41, - "plus": 10, - "where": 6, - "Example": 37, - "test_step_1": 1, - "ST_Plus1.": 2, - "ST_PlusConstConst.": 3, - "test_step_2": 1, - "ST_Plus2.": 2, - "Theorem": 115, - "step_deterministic": 1, - "partial_function": 6, - "step.": 3, - "partial_function.": 5, - "y1": 6, - "y2": 5, - "Hy1": 2, - "Hy2.": 2, - "dependent": 6, - "y2.": 3, - "step_cases": 4, - "Case": 51, - "Hy2": 3, - "SCase.": 3, - "SCase": 24, - "reflexivity.": 199, - "H2.": 20, - "Hy1.": 5, - "IHHy1": 2, - "assumption.": 61, - "SimpleArith2.": 1, - "value": 25, - "v_const": 4, - "step": 9, - "ST_PlusConstConst": 3, - "ST_Plus1": 2, - "v1": 7, - "subst.": 43, - "H3.": 5, - "0": 5, - "reflexivity": 16, - "assumption": 10, - "strong_progress": 2, - "R": 54, - "value_not_same_as_normal_form": 2, - "normal_form": 3, - "t.": 4, - "normal_form.": 2, - "v_funny.": 1, - "not.": 3, - "Temp1.": 1, - "Temp2.": 1, - "ST_Funny": 1, - "H0.": 24, - "H4.": 2, - "Temp3.": 1, - "Temp4.": 2, - "tm_true": 8, - "tm_false": 5, - "tm_if": 10, - "v_true": 1, - "v_false": 1, - "tm_false.": 3, - "ST_IfTrue": 1, - "ST_IfFalse": 1, - "ST_If": 1, - "t3": 6, - "bool_step_prop4": 1, - "bool_step_prop4_holds": 1, - "bool_step_prop4.": 2, - "ST_ShortCut.": 1, - "constructor.": 16, - "left.": 3, - "IHt1.": 1, - "t2.": 4, - "t3.": 2, - "ST_If.": 2, - "Temp5.": 1, - "stepmany": 4, - "refl_step_closure": 11, - "normalizing": 1, - "X": 191, - "IHt2": 3, - "H11": 2, - "H12": 2, - "H21": 3, - "H22": 2, - "nf_same_as_value": 3, - "H12.": 1, - "H22.": 1, - "H11.": 1, - "rsc_trans": 4, - "stepmany_congr_1": 1, - "stepmany_congr2": 1, - "rsc_R": 2, - "r": 11, - "eval__value": 1, - "HE.": 1, - "eval_cases": 1, - "HE": 1, - "v_const.": 1, - "List": 2, - "Setoid": 1, - "Compare_dec": 1, - "Morphisms.": 2, - "ListNotations.": 1, - "Permutation.": 2, - "perm_nil": 1, - "perm_skip": 1, - "Hint": 9, - "Constructors": 3, - "Permutation_nil": 2, - "HF.": 3, - "remember": 12, - "@nil": 1, - "HF": 2, - "discriminate": 3, - "||": 1, - "Permutation_nil_cons": 1, - "nil": 46, - "Permutation_refl": 1, - "exact": 4, - "IHl.": 7, - "Permutation_sym": 1, - "Hperm": 7, - "perm_trans": 1, - "Permutation_trans": 4, - "Proper": 5, - "Logic.eq": 2, - "@Permutation": 5, - "iff": 1, - "@In": 1, - "Permutation_in.": 2, - "Permutation_app_tail": 2, - "tl": 8, - "eapply": 8, - "Permutation_app_head": 2, - "app_comm_cons": 5, - "Permutation_app": 3, - "Hpermmm": 1, - "idtac": 1, - "try": 17, - "@app": 1, - "now": 24, - "Permutation_app.": 1, - "Permutation_add_inside": 1, - "Permutation_cons_append": 1, - "Resolve": 5, - "Permutation_cons_append.": 3, - "Permutation_app_comm": 3, - "app_nil_r": 1, - "app_assoc": 2, - "Permutation_middle": 2, - "Proof": 12, - "Permutation_rev": 3, - "1": 1, - "@rev": 1, - "2": 1, - "Permutation_length": 2, - "@length": 1, - "Permutation_length.": 1, - "Permutation_ind_bis": 2, - "Hnil": 1, - "Hskip": 3, - "Hswap": 2, - "Htrans.": 1, - "Htrans": 1, - "eauto.": 7, - "Ltac": 1, - "break_list": 5, - "injection": 4, - "Permutation_nil_app_cons": 1, - "Hp": 5, - "IH": 3, - "Permutation_middle.": 3, - "perm_swap.": 2, - "perm_swap": 1, - "eq_refl": 2, - "In_split": 1, - "Permutation_app_inv": 1, - "NoDup": 4, - "incl": 3, - "N.": 1, - "E": 7, - "Hx.": 5, - "In": 6, - "Hy": 14, - "N": 1, - "Hal": 1, - "Hl": 1, - "exfalso.": 1, - "Hx": 20, - "NoDup_Permutation_bis": 2, - "intuition.": 2, - "Permutation_NoDup": 1, - "Permutation_map": 1, - "Hf": 15, - "Hy.": 3, - "injective_bounded_surjective": 1, - "f": 108, - "injective": 6, - "set": 1, - "seq": 2, - "map": 4, - "x.": 3, - "in_map_iff.": 2, - "in_seq": 4, - "arith": 4, - "NoDup_cardinal_incl": 1, - "injective_map_NoDup": 2, - "seq_NoDup": 1, - "map_length": 1, - "in_map_iff": 1, - "nat_bijection_Permutation": 1, - "let": 3, - "BD.": 1, - "seq_NoDup.": 1, - "map_length.": 1, - "Injection": 1, - "Permutation_alt": 1, - "Alternative": 1, - "characterization": 1, - "of": 4, - "via": 1, - "nth_error": 7, - "and": 1, - "nth": 2, - "adapt": 4, - "S": 186, - "le_lt_dec": 9, - "pred": 3, - "adapt_injective": 1, - "adapt.": 2, - "EQ.": 2, - "LE": 11, - "LT": 14, - "eq_add_S": 2, - "Hf.": 1, - "Lt.le_lt_or_eq": 3, - "LE.": 3, - "lt": 3, - "LT.": 5, - "Lt.S_pred": 3, - "elim": 21, - "Lt.lt_not_le": 2, - "adapt_ok": 2, - "nth_error_app1": 1, - "nth_error_app2": 1, - "Minus.minus_Sn_m": 1, - "Permutation_nth_error": 2, - "fun": 17, - "IHP2": 1, - "g": 6, - "Hg": 2, - "E.": 2, - "L12": 2, - "plus_n_Sm.": 1, - "adapt_injective.": 1, - "nth_error_None": 4, - "Hn": 1, - "Hf2": 1, - "Hf3": 2, - "Lt.le_or_lt": 1, - "d": 6, - "Lt.lt_irrefl": 2, - "Lt.lt_le_trans": 2, - "Hf1": 1, - "congruence.": 1, - "Permutation_alt.": 1, - "Permutation_app_swap": 1, - "SfLib.": 2, - "STLC.": 1, - "ty": 7, - "ty_Bool": 10, - "ty_arrow": 7, - "ty.": 2, - "tm_var": 6, - "id": 7, - "tm_app": 7, - "tm_abs": 9, - "Id": 7, - "idB": 2, - "idBB": 2, - "idBBBB": 2, - "k": 7, - "v_abs": 1, - "T": 49, - "t_true": 1, - "t_false": 1, - "value.": 1, - "s": 13, - "beq_id": 14, - "ST_App2": 1, - "step_example3": 1, - "idB.": 1, - "rsc_step.": 2, - "ST_App1.": 2, - "ST_AppAbs.": 3, - "v_abs.": 2, - "rsc_refl.": 4, - "context": 1, - "partial_map": 4, - "Context.": 1, - "option": 6, - "empty": 3, - "None": 9, - "extend": 1, - "Gamma": 10, - "has_type": 4, - "appears_free_in": 1, - "S.": 1, - "HT": 1, - "T_Var.": 1, - "extend_neq": 1, - "Heqe.": 3, - "rename": 2, - "i": 11, - "into": 2, - "y.": 15, - "T_Abs.": 1, - "context_invariance...": 2, - "beq_id_eq": 4, - "Hafi.": 2, - "extend.": 2, - "IHt.": 1, - "x0": 14, - "Coiso1.": 2, - "Coiso2.": 3, - "HeqCoiso1.": 1, - "HeqCoiso2.": 1, - "beq_id_false_not_eq.": 1, - "ex_falso_quodlibet.": 1, - "preservation": 1, - "HT.": 1, - "substitution_preserves_typing": 1, - "T11.": 4, - "HT1.": 1, - "T_App": 2, - "IHHT1.": 1, - "IHHT2.": 1, - "tm_cases": 1, - "Ht": 1, - "Ht.": 3, - "IHt1": 2, - "T11": 2, - "T0": 2, - "ST_App2.": 1, - "ty_Bool.": 1, - "T.": 9, - "IHt3": 1, - "ST_IfTrue.": 1, - "ST_IfFalse.": 1, - "types_unique": 1, - "T1": 25, - "T12": 2, - "IHhas_type.": 1, - "IHhas_type1.": 1, - "IHhas_type2.": 1, - "Sorted.": 1, - "Mergesort.": 1, - "Basics.": 2, - "NatList.": 2, - "Playground1.": 5, - "natprod": 5, - "pair": 7, - "natprod.": 1, - "fst": 3, - "p": 81, - "snd": 3, - "swap_pair": 1, - "surjective_pairing": 1, - "count": 7, - "beq_nat": 24, - "v": 28, - "remove_one": 3, - "end": 16, - "test_remove_one1": 1, - "O": 98, - "O.": 5, - "remove_all": 2, - "bag": 3, - "true": 68, - "false": 48, - "app_ass": 1, - "natlist": 7, - "l3.": 1, - "cons": 26, - "remove_decreases_count": 1, - "ble_nat": 6, - "true.": 16, - "s.": 4, - "ble_n_Sn.": 1, - "IHs.": 2, - "natoption": 5, - "natoption.": 1, - "index": 3, - "option_elim": 2, - "o": 25, - "hd_opt": 8, - "test_hd_opt1": 2, - "None.": 2, - "test_hd_opt2": 2, - "option_elim_hd": 1, - "head": 1, - "beq_natlist": 5, - "bool": 38, - "r1": 2, - "v2": 2, - "r2": 2, - "test_beq_natlist1": 1, - "test_beq_natlist2": 1, - "beq_natlist_refl": 1, - "beq_nat_refl": 3, - "silly1": 1, - "eq1": 6, - "eq2.": 9, - "eq2": 1, - "silly2a": 1, - "q": 15, - "eq1.": 5, - "silly_ex": 1, - "evenb": 5, - "oddb": 5, - "silly3": 1, - "symmetry.": 2, - "rev_exercise": 1, - "rev_involutive.": 1, - "beq_nat_sym": 2, - "IHn": 12, - "Lists.": 1, - "X.": 4, - "h": 14, - "app": 5, - "snoc": 9, - "Arguments": 11, - "list123": 1, - "right": 2, - "test_repeat1": 1, - "nil_app": 1, - "rev_snoc": 1, - "snoc_with_append": 1, - "v.": 1, - "IHl1.": 1, - "prod": 3, - "Y": 38, - "Y.": 1, - "type_scope.": 1, - "combine": 3, - "lx": 4, - "ly": 4, - "tx": 2, - "tp": 2, - "xs": 7, - "plus3": 2, - "prod_curry": 3, - "Z": 11, - "prod_uncurry": 3, - "uncurry_uncurry": 1, - "curry_uncurry": 1, - "p.": 9, - "filter": 3, - "test": 4, - "countoddmembers": 1, - "fmostlytrue": 5, - "override": 5, - "ftrue": 1, - "false.": 12, - "override_example1": 1, - "override_example2": 1, - "override_example3": 1, - "override_example4": 1, - "override_example": 1, - "constfun": 1, - "unfold_example_bad": 1, - "m.": 21, - "plus3.": 1, - "override_eq": 1, - "f.": 1, - "override.": 2, - "override_neq": 1, - "x1": 11, - "x2": 3, - "k1": 5, - "k2": 4, - "x1.": 3, - "eq.": 11, - "silly4": 1, - "silly5": 1, - "sillyex1": 1, - "z": 14, - "j": 6, - "j.": 1, - "silly6": 1, - "contra.": 19, - "silly7": 1, - "sillyex2": 1, - "z.": 6, - "beq_nat_eq": 2, - "assertion": 3, - "Hl.": 1, - "IHm": 2, - "eq": 4, - "SSCase": 3, - "beq_nat_O_l": 1, - "beq_nat_O_r": 1, - "double_injective": 1, - "double": 2, - "fold_map": 2, - "fold": 1, - "total": 2, - "fold_map_correct": 1, - "fold_map.": 1, - "forallb": 4, - "andb": 8, - "existsb": 3, - "orb": 8, - "existsb2": 2, - "negb": 10, - "existsb_correct": 1, - "existsb2.": 1, - "index_okx": 1, - "mumble": 5, - "mumble.": 1, - "grumble": 3, - "day": 9, - "monday": 5, - "tuesday": 3, - "wednesday": 3, - "thursday": 3, - "friday": 3, - "saturday": 3, - "sunday": 2, - "day.": 1, - "next_weekday": 3, - "test_next_weekday": 1, - "tuesday.": 1, - "bool.": 1, - "test_orb1": 1, - "test_orb2": 1, - "test_orb3": 1, - "test_orb4": 1, - "nandb": 5, - "test_nandb1": 1, - "test_nandb2": 1, - "test_nandb3": 1, - "test_nandb4": 1, - "andb3": 5, - "b3": 2, - "test_andb31": 1, - "test_andb32": 1, - "test_andb33": 1, - "test_andb34": 1, - "nat.": 4, - "minustwo": 1, - "test_oddb1": 1, - "test_oddb2": 1, - "mult": 3, - "minus": 3, - "exp": 2, - "base": 3, - "power": 2, - "factorial": 2, - "test_factorial1": 1, - "nat_scope.": 3, - "plus_O_n": 1, - "plus_1_1": 1, - "mult_0_1": 1, - "plus_id_example": 1, - "plus_id_exercise": 1, - "o.": 4, - "mult_0_plus": 1, - "plus_O_n.": 1, - "mult_1_plus": 1, - "plus_1_1.": 1, - "mult_1": 1, - "plus_1_neq_0": 1, - "plus_distr.": 1, - "plus_rearrange": 1, - "q.": 2, - "plus_swap": 2, - "plus_assoc.": 4, - "plus_swap.": 2, - "mult_comm": 2, - "mult_0_r.": 4, - "mult_distr": 1, - "mult_1_distr.": 1, - "mult_1.": 1, - "bad": 1, - "zero_nbeq_S": 1, - "andb_false_r": 1, - "plus_ble_compat_1": 1, - "IHp.": 2, - "S_nbeq_0": 1, - "mult_1_1": 1, - "plus_0_r.": 1, - "all3_spec": 1, - "c.": 5, - "mult_plus_1": 1, - "IHm.": 1, - "mult_mult": 1, - "IHn.": 3, - "mult_plus_1.": 1, - "mult_plus_distr_r": 1, - "mult_mult.": 3, - "plus_assoc": 1, - "H3": 4, - "mult_assoc": 1, - "mult_plus_distr_r.": 1, - "bin": 9, - "BO": 4, - "D": 9, - "M": 4, - "bin.": 1, - "incbin": 2, - "bin2un": 3, - "bin_comm": 1, - "PermutSetoid": 1, - "Sorting.": 1, - "defs.": 2, - "leA": 25, - "gtA": 1, - "leA_dec": 4, - "leA_refl": 1, - "leA_trans": 2, - "leA_antisym": 1, - "leA_refl.": 1, - "Immediate": 1, - "leA_antisym.": 1, - "Tree": 24, - "Tree_Leaf": 9, - "Tree_Node": 11, - "Tree.": 1, - "leA_Tree": 16, - "True": 1, - "T2": 20, - "leA_Tree_Leaf": 5, - "Tree_Leaf.": 1, - "leA_Tree_Node": 1, - "G": 6, - "is_heap": 18, - "nil_is_heap": 5, - "node_is_heap": 7, - "invert_heap": 3, - "T2.": 1, - "is_heap_rect": 1, - "PG": 2, - "PD": 2, - "PN.": 2, - "H4": 7, - "X0": 2, - "is_heap_rec": 1, - "low_trans": 3, - "merge_lem": 3, - "merge_exist": 5, - "Sorted": 5, - "HdRel": 4, - "@meq": 4, - "red.": 1, - "meq_trans.": 1, - "Defined.": 1, - "@munion": 1, - "meq_congr.": 1, - "merge": 5, - "fix": 2, - "Sorted_inv": 2, - "merge0.": 2, - "cons_sort": 2, - "cons_leA": 2, - "munion_ass.": 2, - "cons_leA.": 2, - "@HdRel_inv": 2, - "merge0": 1, - "setoid_rewrite": 2, - "munion_ass": 1, - "munion_comm.": 2, - "munion_comm": 1, - "contents": 12, - "equiv_Tree": 1, - "insert_spec": 3, - "insert_exist": 4, - "insert": 2, - "treesort_twist1": 1, - "T3": 2, - "HeapT3": 1, - "ConT3": 1, - "LeA.": 1, - "LeA": 1, - "treesort_twist2": 1, - "build_heap": 3, - "heap_exist": 3, - "list_to_heap": 2, - "nil_is_heap.": 1, - "meq_right": 2, - "meq_sym": 2, - "flat_spec": 3, - "flat_exist": 3, - "heap_to_list": 2, - "s1": 20, - "i1": 15, - "m1": 1, - "s2": 2, - "i2": 10, - "m2.": 1, - "meq_congr": 1, - "munion_rotate.": 1, - "treesort": 1, - "permutation.": 1, - "Logic.": 1, - "Prop.": 1, - "next_nat_partial_function": 1, - "next_nat.": 1, - "Q.": 2, - "le_not_a_partial_function": 1, - "le": 1, - "Nonsense.": 4, - "le_n.": 6, - "le_S.": 4, - "total_relation_not_partial_function": 1, - "total_relation": 1, - "total_relation1.": 2, - "empty_relation_not_partial_funcion": 1, - "empty_relation.": 1, - "reflexive": 5, - "le_reflexive": 1, - "le.": 4, - "reflexive.": 1, - "transitive": 8, - "le_trans": 4, - "Hnm": 3, - "Hmo.": 4, - "Hnm.": 3, - "IHHmo.": 1, - "lt_trans": 4, - "lt.": 2, - "transitive.": 1, - "le_S": 6, - "Hm": 1, - "le_Sn_le": 2, - "<=>": 12, - "le_S_n": 2, - "Sn_le_Sm__n_le_m.": 1, - "le_Sn_n": 5, - "not": 1, - "TODO": 1, - "Hmo": 1, - "symmetric": 2, - "antisymmetric": 3, - "le_antisymmetric": 1, - "Sn_le_Sm__n_le_m": 2, - "IHb": 1, - "equivalence": 1, - "order": 2, - "preorder": 1, - "le_order": 1, - "order.": 1, - "le_reflexive.": 1, - "le_antisymmetric.": 1, - "le_trans.": 1, - "clos_refl_trans": 8, - "rt_step": 1, - "rt_refl": 1, - "rt_trans": 3, - "next_nat_closure_is_le": 1, - "next_nat": 1, - "rt_refl.": 2, - "IHle.": 1, - "rt_step.": 2, - "nn.": 1, - "IHclos_refl_trans1.": 2, - "IHclos_refl_trans2.": 2, - "rsc_refl": 1, - "rsc_step": 4, - "r.": 3, - "IHrefl_step_closure": 1, - "rtc_rsc_coincide": 1, - "IHrefl_step_closure.": 1, - "AExp.": 2, - "aexp": 30, - "ANum": 18, - "APlus": 14, - "AMinus": 9, - "AMult": 9, - "aexp.": 1, - "bexp": 22, - "BTrue": 10, - "BFalse": 11, - "BEq": 9, - "BLe": 9, - "BNot": 9, - "BAnd": 10, - "bexp.": 1, - "aeval": 46, - "test_aeval1": 1, - "beval": 16, - "optimize_0plus": 15, - "e2": 54, - "e1": 58, - "test_optimize_0plus": 1, - "optimize_0plus_sound": 4, - "e1.": 1, - "IHe2.": 10, - "IHe1.": 11, - "aexp_cases": 3, - "IHe1": 6, - "IHe2": 6, - "optimize_0plus_all": 2, - "optimize_0plus_all_sound": 1, - "bexp_cases": 4, - "optimize_and": 5, - "optimize_and_sound": 1, - "IHe": 2, - "aevalR_first_try.": 2, - "aevalR": 18, - "E_Anum": 1, - "E_APlus": 2, - "E_AMinus": 2, - "E_AMult": 2, - "E_ANum": 1, - "bevalR": 11, - "E_BTrue": 1, - "E_BFalse": 1, - "E_BEq": 1, - "E_BLe": 1, - "E_BNot": 1, - "E_BAnd": 1, - "aeval_iff_aevalR": 9, - "IHa1": 1, - "IHa2": 1, - "beval_iff_bevalR": 1, - "IHbevalR": 1, - "IHbevalR1": 1, - "IHbevalR2": 1, - "IHa.": 1, - "IHa1.": 1, - "IHa2.": 1, - "silly_presburger_formula": 1, - "3": 2, - "id.": 1, - "id1": 2, - "id2": 2, - "beq_id_refl": 1, - "i.": 2, - "beq_nat_refl.": 1, - "i2.": 8, - "i1.": 3, - "beq_id_false_not_eq": 1, - "C.": 3, - "n0": 5, - "beq_false_not_eq": 1, - "not_eq_beq_id_false": 1, - "not_eq_beq_false.": 1, - "AId": 4, - "com_cases": 1, - "SKIP": 5, - "IFB": 4, - "WHILE": 5, - "c1": 14, - "c2": 9, - "e3": 1, - "cl": 1, - "st": 113, - "E_IfTrue": 2, - "THEN": 3, - "ELSE": 3, - "FI": 3, - "E_WhileEnd": 2, - "DO": 4, - "END": 4, - "E_WhileLoop": 2, - "ceval_cases": 1, - "E_Skip": 1, - "E_Ass": 1, - "E_Seq": 1, - "E_IfFalse": 1, - "assignment": 1, - "command": 2, - "st1": 2, - "IHi1": 3, - "Heqst1": 1, - "Hceval.": 4, - "Hceval": 2, - "bval": 2, - "ceval_step": 3, - "ceval_step_more": 7, - "x2.": 2, - "IHHce.": 2, - "%": 3, - "IHHce1.": 1, - "IHHce2.": 1, - "plus2": 1, - "nx": 3, - "ny": 2, - "XtimesYinZ": 1, - "ny.": 1, - "loop": 2, - "loopdef.": 1, - "Heqloopdef.": 8, - "contra1.": 1, - "IHcontra2.": 1, - "no_whiles": 15, - "com": 5, - "ct": 2, - "cf": 2, - "no_Whiles": 10, - "noWhilesSKIP": 1, - "noWhilesAss": 1, - "noWhilesSeq": 1, - "noWhilesIf": 1, - "no_whiles_eqv": 1, - "noWhilesSKIP.": 1, - "noWhilesAss.": 1, - "noWhilesSeq.": 1, - "IHc1.": 2, - "andb_true_elim1": 4, - "IHc2.": 2, - "andb_true_elim2": 4, - "noWhilesIf.": 1, - "andb_true_intro.": 2, - "no_whiles_terminate": 1, - "state": 6, - "st.": 7, - "update": 2, - "IHc1": 2, - "IHc2": 2, - "H5.": 1, - "Heqr.": 1, - "Heqr": 3, - "H8.": 1, - "H10": 1, - "beval_short_circuit": 5, - "beval_short_circuit_eqv": 1, - "sinstr": 8, - "SPush": 8, - "SLoad": 6, - "SPlus": 10, - "SMinus": 11, - "SMult": 11, - "sinstr.": 1, - "s_execute": 21, - "stack": 7, - "prog": 2, - "al": 3, - "bl": 3, - "s_execute1": 1, - "empty_state": 2, - "s_execute2": 1, - "s_compile": 36, - "s_compile1": 1, - "execute_theorem": 1, - "other": 20, - "other.": 4, - "app_ass.": 6, - "s_compile_correct": 1, - "app_nil_end.": 1, - "execute_theorem.": 1, - "Eqdep_dec.": 1, - "Arith.": 2, - "eq_rect_eq_nat": 2, - "Q": 3, - "eq_rect": 3, - "h.": 1, - "K_dec_set": 1, - "eq_nat_dec.": 1, - "Scheme": 1, - "le_ind": 1, - "le_n": 4, - "refl_equal": 4, - "pattern": 2, - "case": 2, - "contradiction": 8, - "m0": 1, - "HeqS": 3, - "HeqS.": 2, - "eq_rect_eq_nat.": 1, - "IHp": 2, - "dep_pair_intro": 2, - "<=n),>": 1, - "x=": 1, - "exist": 7, - "Heq.": 6, - "le_uniqueness_proof": 1, - "Hy0": 1, - "card": 2, - "card_interval": 1, - "<=n}>": 1, - "proj1_sig": 1, - "proj2_sig": 1, - "Hq": 3, - "Hpq.": 1, - "Hmn.": 1, - "Hmn": 1, - "interval_dec": 1, - "dep_pair_intro.": 3, - "eq_S.": 1, - "Hneq.": 2, - "card_inj_aux": 1, - "False.": 1, - "Hfbound": 1, - "Hfinj": 1, - "Hgsurj.": 1, - "Hgsurj": 3, - "Hfx": 2, - "le_n_O_eq.": 2, - "Hfbound.": 2, - "xSn": 21, - "bounded": 1, - "Hlefx": 1, - "Hgefx": 1, - "Hlefy": 1, - "Hgefy": 1, - "Hfinj.": 3, - "sym_not_eq.": 2, - "Heqf.": 2, - "Hneqy.": 2, - "le_lt_trans": 2, - "le_O_n.": 2, - "le_neq_lt": 2, - "Hneqx.": 2, - "pred_inj.": 1, - "lt_O_neq": 2, - "neq_dep_intro": 2, - "inj_restrict": 1, - "Heqf": 1, - "surjective": 1, - "Hlep.": 3, - "Hle": 1, - "Hlt": 3, - "Hfsurj": 2, - "le_n_S": 1, - "Hlep": 4, - "Hneq": 7, - "Heqx.": 2, - "Heqx": 4, - "Hle.": 1, - "le_not_lt": 1, - "lt_n_Sn.": 1, - "Hlt.": 1, - "lt_irrefl": 2, - "lt_le_trans": 1, - "Hneqx": 1, - "Hneqy": 1, - "Heqg": 1, - "Hdec": 3, - "Heqy": 1, - "Hginj": 1, - "HSnx.": 1, - "HSnx": 1, - "interval_discr": 1, - "<=m}>": 1, - "card_inj": 1, - "interval_dec.": 1, - "card_interval.": 2 - }, - "GAS": { - ".cstring": 1, - "LC0": 2, - ".ascii": 2, - ".text": 1, - ".globl": 2, - "_main": 2, - "LFB3": 4, - "pushq": 1, - "%": 6, - "rbp": 2, - "LCFI0": 3, - "movq": 1, - "rsp": 1, - "LCFI1": 2, - "leaq": 1, - "(": 1, - "rip": 1, - ")": 1, - "rdi": 1, - "call": 1, - "_puts": 1, - "movl": 1, - "eax": 1, - "leave": 1, - "ret": 1, - "LFE3": 2, - ".section": 1, - "__TEXT": 1, - "__eh_frame": 1, - "coalesced": 1, - "no_toc": 1, + "err": 2, + "requested": 2, + "replace": 2, + "replacements.sort": 1, + "a": 1, + "b": 1, + "a.index": 1, + "-": 1, + "b.index": 1, + "replacement": 2, + "replacement.body": 1, + "replacement.url": 1, + "i": 3, + "parts": 3, + "rep": 1, + "rep.index": 1, "+": 2, - "strip_static_syms": 1, - "live_support": 1, - "EH_frame1": 2, - ".set": 5, - "L": 10, - "set": 10, - "LECIE1": 2, - "-": 7, - "LSCIE1": 2, - ".long": 6, - ".byte": 20, - "xc": 1, - ".align": 2, - "_main.eh": 2, - "LSFDE1": 1, - "LEFDE1": 2, - "LASFDE1": 3, - ".quad": 2, - ".": 1, - "xe": 1, - "xd": 1, - ".subsections_via_symbols": 1 - }, - "Verilog": { - "////////////////////////////////////////////////////////////////////////////////": 14, - "//": 117, - "timescale": 10, - "ns": 8, - "/": 11, - "ps": 8, - "module": 18, - "button_debounce": 3, - "(": 378, - "input": 68, - "clk": 40, - "clock": 3, - "reset_n": 32, - "asynchronous": 2, - "reset": 13, - "button": 25, - "bouncy": 1, - "output": 42, - "reg": 26, - "debounce": 6, - "debounced": 1, - "-": 73, - "cycle": 1, - "signal": 3, - ")": 378, - ";": 287, - "parameter": 7, - "CLK_FREQUENCY": 4, - "DEBOUNCE_HZ": 4, - "localparam": 4, - "COUNT_VALUE": 2, - "WAIT": 6, - "FIRE": 4, - "COUNT": 4, - "[": 179, - "]": 179, - "state": 6, - "next_state": 6, - "count": 6, - "always": 23, - "@": 16, - "posedge": 11, - "or": 14, - "negedge": 8, - "<": 47, - "begin": 46, - "if": 23, - "end": 48, - "else": 22, - "case": 3, - "<=>": 4, - "1": 7, - "endcase": 3, - "default": 2, - "endmodule": 18, - "pipeline_registers": 1, - "BIT_WIDTH": 5, - "pipe_in": 4, - "pipe_out": 5, - "NUMBER_OF_STAGES": 7, - "generate": 3, - "genvar": 3, - "i": 62, - "*": 4, - "BIT_WIDTH*": 5, - "pipe_gen": 6, - "for": 4, - "+": 36, - "pipeline": 2, - "BIT_WIDTH*i": 2, - "endgenerate": 3, - "ns/1ps": 2, - "e0": 1, - "x": 41, - "y": 21, - "assign": 23, - "{": 11, - "}": 11, - "e1": 1, - "ch": 1, - "z": 7, - "o": 6, - "&": 6, - "maj": 1, + "rep.length": 1, + "html.substr": 1, + "link": 2, + "reg": 5, + "r/": 2, + "": 1, + "]": 7, + "*href": 1, + "[": 5, + "*": 2, + "/": 2, "|": 2, - "s0": 1, - "s1": 1, - "ps2_mouse": 1, - "Clock": 14, - "Input": 2, - "Reset": 1, - "inout": 2, - "ps2_clk": 3, - "PS2": 2, - "Bidirectional": 2, - "ps2_dat": 3, - "Data": 13, - "the_command": 2, - "Command": 1, - "to": 3, - "send": 2, - "mouse": 1, - "send_command": 2, - "Signal": 2, - "command_was_sent": 2, - "command": 1, - "finished": 1, - "sending": 1, - "error_communication_timed_out": 3, - "received_data": 2, - "Received": 1, - "data": 4, - "received_data_en": 4, - "If": 1, - "new": 1, - "has": 1, - "been": 1, - "received": 1, - "start_receiving_data": 3, - "wait_for_incoming_data": 3, - "wire": 67, - "ps2_clk_posedge": 3, - "Internal": 2, - "Wires": 1, - "ps2_clk_negedge": 3, - "idle_counter": 4, - "Registers": 2, - "ps2_clk_reg": 4, - "ps2_data_reg": 5, - "last_ps2_clk": 4, - "ns_ps2_transceiver": 13, - "State": 1, - "Machine": 1, - "s_ps2_transceiver": 8, - "PS2_STATE_0_IDLE": 10, - "h1": 1, - "PS2_STATE_2_COMMAND_OUT": 2, - "h3": 1, - "PS2_STATE_4_END_DELAYED": 4, - "b1": 19, - "Defaults": 1, - "PS2_STATE_1_DATA_IN": 3, - "||": 1, - "b0": 27, - "PS2_STATE_3_END_TRANSFER": 3, - "h00": 1, - "&&": 3, - "h01": 1, - "ps2_mouse_cmdout": 1, - "mouse_cmdout": 1, - ".clk": 6, - "Inputs": 2, - ".reset": 2, - ".the_command": 1, - ".send_command": 1, - ".ps2_clk_posedge": 2, - ".ps2_clk_negedge": 2, - ".ps2_clk": 1, - "Bidirectionals": 1, - ".ps2_dat": 1, - ".command_was_sent": 1, - "Outputs": 2, - ".error_communication_timed_out": 1, - "ps2_mouse_datain": 1, - "mouse_datain": 1, - ".wait_for_incoming_data": 1, - ".start_receiving_data": 1, - ".ps2_data": 1, - ".received_data": 1, - ".received_data_en": 1, - "hex_display": 1, - "num": 5, - "en": 13, - "hex0": 2, - "hex1": 2, - "hex2": 2, - "hex3": 2, - "seg_7": 4, - "hex_group0": 1, - ".num": 4, - ".en": 4, - ".seg": 4, - "hex_group1": 1, - "hex_group2": 1, - "hex_group3": 1, - "t_div_pipelined": 1, - "start": 12, - "dividend": 3, - "divisor": 5, - "data_valid": 7, - "div_by_zero": 2, - "quotient": 2, - "quotient_correct": 1, - "BITS": 2, - "div_pipelined": 2, - "#": 10, - ".BITS": 1, - ".reset_n": 3, - ".dividend": 1, - ".divisor": 1, - ".quotient": 1, - ".div_by_zero": 1, - ".start": 2, - ".data_valid": 2, - "initial": 3, - "#10": 10, - "#50": 2, - "#1": 1, - "#1000": 1, - "finish": 2, - "#5": 3, - "sqrt_pipelined": 3, - "optional": 2, - "INPUT_BITS": 28, - "radicand": 12, - "unsigned": 2, - "valid": 2, - "OUTPUT_BITS": 14, - "root": 8, - "number": 2, - "of": 8, - "bits": 2, - "any": 1, - "integer": 1, - "%": 3, - "start_gen": 7, - "propagation": 1, - "OUTPUT_BITS*INPUT_BITS": 9, - "root_gen": 15, - "values": 3, - "radicand_gen": 10, - "mask_gen": 9, - "mask": 3, - "mask_4": 1, - "is": 4, - "odd": 1, - "this": 2, - "a": 5, - "INPUT_BITS*": 27, - "<<": 2, - "i/2": 2, - "even": 1, - "pipeline_stage": 1, - "INPUT_BITS*i": 5, - "t_sqrt_pipelined": 1, - ".INPUT_BITS": 1, - ".radicand": 1, - ".root": 1, - "bx": 4, - "#10000": 1, - "vga": 1, - "wb_clk_i": 6, - "Mhz": 1, - "VDU": 1, - "wb_rst_i": 6, - "wb_dat_i": 3, - "wb_dat_o": 2, - "wb_adr_i": 3, - "wb_we_i": 3, - "wb_tga_i": 5, - "wb_sel_i": 3, - "wb_stb_i": 2, - "wb_cyc_i": 2, - "wb_ack_o": 2, - "vga_red_o": 2, - "vga_green_o": 2, - "vga_blue_o": 2, - "horiz_sync": 2, - "vert_sync": 2, - "csrm_adr_o": 2, - "csrm_sel_o": 2, - "csrm_we_o": 2, - "csrm_dat_o": 2, - "csrm_dat_i": 2, - "csr_adr_i": 3, - "csr_stb_i": 2, - "conf_wb_dat_o": 3, - "conf_wb_ack_o": 3, - "mem_wb_dat_o": 3, - "mem_wb_ack_o": 3, - "csr_adr_o": 2, - "csr_dat_i": 3, - "csr_stb_o": 3, - "v_retrace": 3, - "vh_retrace": 3, - "w_vert_sync": 3, - "shift_reg1": 3, - "graphics_alpha": 4, - "memory_mapping1": 3, - "write_mode": 3, - "raster_op": 3, - "read_mode": 3, - "bitmask": 3, - "set_reset": 3, - "enable_set_reset": 3, - "map_mask": 3, - "x_dotclockdiv2": 3, - "chain_four": 3, - "read_map_select": 3, - "color_compare": 3, - "color_dont_care": 3, - "wbm_adr_o": 3, - "wbm_sel_o": 3, - "wbm_we_o": 3, - "wbm_dat_o": 3, - "wbm_dat_i": 3, - "wbm_stb_o": 3, - "wbm_ack_i": 3, - "stb": 4, - "cur_start": 3, - "cur_end": 3, - "start_addr": 2, - "vcursor": 3, - "hcursor": 3, - "horiz_total": 3, - "end_horiz": 3, - "st_hor_retr": 3, - "end_hor_retr": 3, - "vert_total": 3, - "end_vert": 3, - "st_ver_retr": 3, - "end_ver_retr": 3, - "pal_addr": 3, - "pal_we": 3, - "pal_read": 3, - "pal_write": 3, - "dac_we": 3, - "dac_read_data_cycle": 3, - "dac_read_data_register": 3, - "dac_read_data": 3, - "dac_write_data_cycle": 3, - "dac_write_data_register": 3, - "dac_write_data": 3, - "vga_config_iface": 1, - "config_iface": 1, - ".wb_clk_i": 2, - ".wb_rst_i": 2, - ".wb_dat_i": 2, - ".wb_dat_o": 2, - ".wb_adr_i": 2, - ".wb_we_i": 2, - ".wb_sel_i": 2, - ".wb_stb_i": 2, - ".wb_ack_o": 2, - ".shift_reg1": 2, - ".graphics_alpha": 2, - ".memory_mapping1": 2, - ".write_mode": 2, - ".raster_op": 2, - ".read_mode": 2, - ".bitmask": 2, - ".set_reset": 2, - ".enable_set_reset": 2, - ".map_mask": 2, - ".x_dotclockdiv2": 2, - ".chain_four": 2, - ".read_map_select": 2, - ".color_compare": 2, - ".color_dont_care": 2, - ".pal_addr": 2, - ".pal_we": 2, - ".pal_read": 2, - ".pal_write": 2, - ".dac_we": 2, - ".dac_read_data_cycle": 2, - ".dac_read_data_register": 2, - ".dac_read_data": 2, - ".dac_write_data_cycle": 2, - ".dac_write_data_register": 2, - ".dac_write_data": 2, - ".cur_start": 2, - ".cur_end": 2, - ".start_addr": 1, - ".vcursor": 2, - ".hcursor": 2, - ".horiz_total": 2, - ".end_horiz": 2, - ".st_hor_retr": 2, - ".end_hor_retr": 2, - ".vert_total": 2, - ".end_vert": 2, - ".st_ver_retr": 2, - ".end_ver_retr": 2, - ".v_retrace": 2, - ".vh_retrace": 2, - "vga_lcd": 1, - "lcd": 1, - ".rst": 1, - ".csr_adr_o": 1, - ".csr_dat_i": 1, - ".csr_stb_o": 1, - ".vga_red_o": 1, - ".vga_green_o": 1, - ".vga_blue_o": 1, - ".horiz_sync": 1, - ".vert_sync": 1, - "vga_cpu_mem_iface": 1, - "cpu_mem_iface": 1, - ".wbs_adr_i": 1, - ".wbs_sel_i": 1, - ".wbs_we_i": 1, - ".wbs_dat_i": 1, - ".wbs_dat_o": 1, - ".wbs_stb_i": 1, - ".wbs_ack_o": 1, - ".wbm_adr_o": 1, - ".wbm_sel_o": 1, - ".wbm_we_o": 1, - ".wbm_dat_o": 1, - ".wbm_dat_i": 1, - ".wbm_stb_o": 1, - ".wbm_ack_i": 1, - "vga_mem_arbitrer": 1, - "mem_arbitrer": 1, - ".clk_i": 1, - ".rst_i": 1, - ".csr_adr_i": 1, - ".csr_dat_o": 1, - ".csr_stb_i": 1, - ".csrm_adr_o": 1, - ".csrm_sel_o": 1, - ".csrm_we_o": 1, - ".csrm_dat_o": 1, - ".csrm_dat_i": 1, - "mux": 1, - "opA": 4, - "opB": 3, - "sum": 5, - "dsp_sel": 9, - "out": 5, - "cout": 4, - "b0000": 1, - "b01": 1, - "b11": 1, - "t_button_debounce": 1, - ".CLK_FREQUENCY": 1, - ".DEBOUNCE_HZ": 1, - ".button": 1, - ".debounce": 1, - "#100": 1, - "#0.1": 8, - "sign_extender": 1, - "INPUT_WIDTH": 5, - "OUTPUT_WIDTH": 4, - "original": 3, - "sign_extended_original": 2, - "sign_extend": 3, - "gen_sign_extend": 1, - "control": 1, - "an": 6, - "b": 3, - "c": 3, - "d": 3, - "e": 3, - "f": 2, - "g": 2, - "h": 2, - "j": 2, - "k": 2, - "l": 2, - "FDRSE": 6, - ".INIT": 6, - "Synchronous": 12, - ".S": 6, - "Initial": 6, - "value": 6, - "register": 6, - "DFF2": 1, - ".Q": 6, - ".C": 6, - ".CE": 6, - "enable": 6, - ".D": 6, - ".R": 6, - "set": 6, - "DFF0": 1, - "DFF6": 1, - "DFF4": 1, - "DFF10": 1, - "DFF8": 1 + "s*": 2, + "<\\/link\\>": 1, + "/gi": 2, + "elements": 5, + "matching": 3, + "as": 3, + "script": 2, + "": 1, + "*src": 1, + "<\\/script\\>": 1, + "tag": 3, + "while": 1, + "m": 1, + "reg.exec": 1, + "elements.push": 1, + "index": 1, + "m.index": 1, + "length": 1, + "m.0.length": 1, + "href": 1, + "m.1": 1 }, - "Apex": { - "global": 70, - "class": 7, - "LanguageUtils": 1, - "{": 219, - "static": 83, - "final": 6, - "String": 60, - "HTTP_LANGUAGE_CODE_PARAMETER_KEY": 2, - ";": 308, - "DEFAULT_LANGUAGE_CODE": 3, - "Set": 6, - "": 30, - "SUPPORTED_LANGUAGE_CODES": 2, - "new": 60, - "//Chinese": 2, - "(": 481, - "Simplified": 1, - ")": 481, - "Traditional": 1, - "//Dutch": 1, - "//English": 1, - "//Finnish": 1, - "//French": 1, - "//German": 1, - "//Italian": 1, - "//Japanese": 1, - "//Korean": 1, - "//Polish": 1, - "//Portuguese": 1, - "Brazilian": 1, - "//Russian": 1, - "//Spanish": 1, - "//Swedish": 1, - "//Thai": 1, - "//Czech": 1, - "//Danish": 1, - "//Hungarian": 1, - "//Indonesian": 1, - "//Turkish": 1, - "}": 219, - "private": 10, - "Map": 33, - "": 29, - "DEFAULTS": 1, - "getLangCodeByHttpParam": 4, - "returnValue": 22, - "null": 92, - "LANGUAGE_CODE_SET": 1, - "getSuppLangCodeSet": 2, - "if": 91, - "ApexPages.currentPage": 4, - "&&": 46, - ".getParameters": 2, - "LANGUAGE_HTTP_PARAMETER": 7, - "StringUtils.lowerCase": 3, - "StringUtils.replaceChars": 2, - ".get": 4, - "//underscore": 1, - "//dash": 1, - "DEFAULTS.containsKey": 3, - "DEFAULTS.get": 3, - "StringUtils.isNotBlank": 1, - "SUPPORTED_LANGUAGE_CODES.contains": 2, - "return": 106, - "getLangCodeByBrowser": 4, - "LANGUAGES_FROM_BROWSER_AS_STRING": 2, - ".getHeaders": 1, - "List": 71, - "LANGUAGES_FROM_BROWSER_AS_LIST": 3, - "splitAndFilterAcceptLanguageHeader": 2, - "LANGUAGES_FROM_BROWSER_AS_LIST.size": 1, - "for": 24, - "languageFromBrowser": 6, - "getLangCodeByUser": 3, - "UserInfo.getLanguage": 1, - "getLangCodeByHttpParamOrIfNullThenBrowser": 1, - "StringUtils.defaultString": 4, - "getLangCodeByHttpParamOrIfNullThenUser": 1, - "getLangCodeByBrowserOrIfNullThenHttpParam": 1, - "getLangCodeByBrowserOrIfNullThenUser": 1, - "header": 2, - "returnList": 11, - "[": 102, - "]": 102, - "tokens": 3, - "StringUtils.split": 1, - "token": 7, - "token.contains": 1, - "token.substring": 1, - "token.indexOf": 1, - "returnList.add": 8, - "StringUtils.length": 1, - "StringUtils.substring": 1, - "langCodes": 2, - "langCode": 3, - "langCodes.add": 1, - "getLanguageName": 1, - "displayLanguageCode": 13, - "languageCode": 2, - "translatedLanguageNames.get": 2, - "filterLanguageCode": 4, - "getAllLanguages": 3, - "translatedLanguageNames.containsKey": 1, - "<": 32, - "translatedLanguageNames": 1, - "BooleanUtils": 1, - "Boolean": 38, - "isFalse": 1, - "bool": 32, - "false": 13, - "else": 25, - "isNotFalse": 1, - "true": 12, - "isNotTrue": 1, - "isTrue": 1, - "negate": 1, - "toBooleanDefaultIfNull": 1, - "defaultVal": 2, - "toBoolean": 2, - "Integer": 34, - "value": 10, - "strToBoolean": 1, - "StringUtils.equalsIgnoreCase": 1, - "//Converts": 1, - "an": 4, - "int": 1, - "to": 4, - "a": 6, - "boolean": 1, - "specifying": 1, - "//the": 2, - "conversion": 1, - "values.": 1, - "//Returns": 1, - "//Throws": 1, - "trueValue": 2, - "falseValue": 2, - "throw": 6, - "IllegalArgumentException": 5, - "toInteger": 1, - "toStringYesNo": 1, - "toStringYN": 1, - "toString": 3, - "trueString": 2, - "falseString": 2, - "xor": 1, - "boolArray": 4, - "||": 12, - "boolArray.size": 1, - "firstItem": 2, - "TwilioAPI": 2, - "MissingTwilioConfigCustomSettingsException": 2, - "extends": 1, - "Exception": 1, - "TwilioRestClient": 5, - "client": 2, - "public": 10, - "getDefaultClient": 2, - "TwilioConfig__c": 5, - "twilioCfg": 7, - "getTwilioConfig": 3, - "TwilioAPI.client": 2, - "twilioCfg.AccountSid__c": 3, - "twilioCfg.AuthToken__c": 3, - "TwilioAccount": 1, - "getDefaultAccount": 1, - ".getAccount": 2, - "TwilioCapability": 2, - "createCapability": 1, - "createClient": 1, - "accountSid": 2, - "authToken": 2, - "Test.isRunningTest": 1, - "//": 11, - "dummy": 2, - "sid": 1, - "TwilioConfig__c.getOrgDefaults": 1, - "@isTest": 1, - "void": 9, - "test_TwilioAPI": 1, - "System.assertEquals": 5, - "TwilioAPI.getTwilioConfig": 2, - ".AccountSid__c": 1, - ".AuthToken__c": 1, - "TwilioAPI.getDefaultClient": 2, - ".getAccountSid": 1, - ".getSid": 2, - "TwilioAPI.getDefaultAccount": 1, - "EmailUtils": 1, - "sendEmailWithStandardAttachments": 3, - "recipients": 11, - "emailSubject": 10, - "body": 8, - "useHTML": 6, - "": 1, - "attachmentIDs": 2, - "": 2, - "stdAttachments": 4, - "SELECT": 1, - "id": 1, - "name": 2, - "FROM": 1, - "Attachment": 2, - "WHERE": 1, - "Id": 1, - "IN": 1, - "": 3, - "fileAttachments": 5, - "attachment": 1, - "Messaging.EmailFileAttachment": 2, - "fileAttachment": 2, - "fileAttachment.setFileName": 1, - "attachment.Name": 1, - "fileAttachment.setBody": 1, - "attachment.Body": 1, - "fileAttachments.add": 1, - "sendEmail": 4, - "sendTextEmail": 1, - "textBody": 2, - "sendHTMLEmail": 1, - "htmlBody": 2, - "recipients.size": 1, - "Messaging.SingleEmailMessage": 3, - "mail": 2, - "email": 1, - "is": 5, - "not": 3, - "saved": 1, - "as": 1, - "activity.": 1, - "mail.setSaveAsActivity": 1, - "mail.setToAddresses": 1, - "mail.setSubject": 1, - "mail.setBccSender": 1, - "mail.setUseSignature": 1, - "mail.setHtmlBody": 1, - "mail.setPlainTextBody": 1, - "fileAttachments.size": 1, - "mail.setFileAttachments": 1, - "Messaging.sendEmail": 1, - "isValidEmailAddress": 2, - "str": 10, - "str.trim": 3, - ".length": 2, - "split": 5, - "str.split": 1, - "split.size": 2, - ".split": 1, - "isNotValidEmailAddress": 1, - "ArrayUtils": 1, - "EMPTY_STRING_ARRAY": 1, - "MAX_NUMBER_OF_ELEMENTS_IN_LIST": 5, - "get": 4, - "objectToString": 1, - "": 22, - "objects": 3, - "strings": 3, - "objects.size": 1, - "Object": 23, - "obj": 3, - "instanceof": 1, - "strings.add": 1, - "reverse": 2, - "anArray": 14, - "i": 55, - "j": 10, - "anArray.size": 2, - "-": 18, - "tmp": 6, - "while": 8, - "+": 75, - "SObject": 19, - "lowerCase": 1, - "strs": 9, - "strs.size": 3, - "returnValue.add": 3, - "str.toLowerCase": 1, - "upperCase": 1, - "str.toUpperCase": 1, - "trim": 1, - "mergex": 2, - "array1": 8, - "array2": 9, - "merged": 6, - "array1.size": 4, - "array2.size": 2, - "": 19, - "sObj": 4, - "merged.add": 2, - "isEmpty": 7, - "objectArray": 17, - "objectArray.size": 6, - "isNotEmpty": 4, - "pluck": 1, - "fieldName": 3, - "fieldName.trim": 2, - "plucked": 3, - "assertArraysAreEqual": 2, - "expected": 16, - "actual": 16, - "//check": 2, - "see": 2, - "one": 2, - "param": 2, - "but": 2, - "the": 4, - "other": 2, - "System.assert": 6, - "ArrayUtils.toString": 12, - "expected.size": 4, - "actual.size": 2, - "merg": 2, - "list1": 15, - "list2": 9, - "list1.size": 6, - "list2.size": 2, - "elmt": 8, - "subset": 6, - "aList": 4, - "count": 10, - "startIndex": 9, - "<=>": 2, - "size": 2, - "1": 2, - "list1.get": 2, - "//LIST/ARRAY": 1, - "SORTING": 1, - "//FOR": 2, - "FORCE.COM": 1, - "PRIMITIVES": 1, - "Double": 1, - "ID": 1, - "etc.": 1, - "qsort": 18, - "theList": 72, - "PrimitiveComparator": 2, - "sortAsc": 24, - "ObjectComparator": 3, - "comparator": 14, - "theList.size": 2, - "SALESFORCE": 1, - "OBJECTS": 1, - "sObjects": 1, - "ISObjectComparator": 3, - "lo0": 6, - "hi0": 8, - "lo": 42, - "hi": 50, - "comparator.compare": 12, - "prs": 8, - "pivot": 14, - "/": 4, - "GeoUtils": 1, - "generate": 1, - "KML": 1, - "string": 7, - "given": 2, - "page": 1, - "reference": 1, - "call": 1, - "getContent": 1, - "then": 1, - "cleanup": 1, - "output.": 1, - "generateFromContent": 1, - "PageReference": 2, - "pr": 1, - "ret": 7, - "try": 1, - "pr.getContent": 1, - ".toString": 1, - "ret.replaceAll": 4, - "content": 1, - "produces": 1, - "quote": 1, - "chars": 1, - "we": 1, - "need": 1, - "escape": 1, - "these": 2, - "in": 1, - "node": 1, - "catch": 1, - "exception": 1, - "e": 2, - "system.debug": 2, - "must": 1, - "use": 1, - "ALL": 1, - "since": 1, - "many": 1, - "line": 1, - "may": 1, - "also": 1, - "": 2, - "geo_response": 1, - "accountAddressString": 2, - "account": 2, - "acct": 1, - "form": 1, - "address": 1, - "object": 1, - "adr": 9, - "acct.billingstreet": 1, - "acct.billingcity": 1, - "acct.billingstate": 1, - "acct.billingpostalcode": 2, - "acct.billingcountry": 2, - "adr.replaceAll": 4, - "testmethod": 1, - "t1": 1, - "pageRef": 3, - "Page.kmlPreviewTemplate": 1, - "Test.setCurrentPage": 1, - "system.assert": 1, - "GeoUtils.generateFromContent": 1, - "Account": 2, - "billingstreet": 1, - "billingcity": 1, - "billingstate": 1, - "billingpostalcode": 1, - "billingcountry": 1, - "insert": 1, - "system.assertEquals": 1 + "PostScript": { + "%": 23, + "PS": 1, + "-": 4, + "Adobe": 1, + "Creator": 1, + "Aaron": 1, + "Puchert": 1, + "Title": 1, + "The": 1, + "Sierpinski": 1, + "triangle": 1, + "Pages": 1, + "PageOrder": 1, + "Ascend": 1, + "BeginProlog": 1, + "/pageset": 1, + "{": 4, + "scale": 1, + "set": 1, + "cm": 1, + "translate": 1, + "setlinewidth": 1, + "}": 4, + "def": 2, + "/sierpinski": 1, + "dup": 4, + "gt": 1, + "[": 6, + "]": 6, + "concat": 5, + "sub": 3, + "sierpinski": 4, + "newpath": 1, + "moveto": 1, + "lineto": 2, + "closepath": 1, + "fill": 1, + "ifelse": 1, + "pop": 1, + "EndProlog": 1, + "BeginSetup": 1, + "<<": 1, + "/PageSize": 1, + "setpagedevice": 1, + "A4": 1, + "EndSetup": 1, + "Page": 1, + "Test": 1, + "pageset": 1, + "sqrt": 1, + "showpage": 1, + "EOF": 1 + }, + "PowerShell": { + "Write": 2, + "-": 2, + "Host": 2, + "function": 1, + "hello": 1, + "(": 1, + ")": 1, + "{": 1, + "}": 1 + }, + "Processing": { + "void": 2, + "setup": 1, + "(": 17, + ")": 17, + "{": 2, + "size": 1, + ";": 15, + "background": 1, + "noStroke": 1, + "}": 2, + "draw": 1, + "fill": 6, + "triangle": 2, + "rect": 1, + "quad": 1, + "ellipse": 1, + "arc": 1, + "PI": 1, + "TWO_PI": 1 }, -<<<<<<< HEAD "Prolog": { "-": 161, "module": 3, @@ -82305,8157 +54079,2348 @@ "stay": 1, "right": 1, "L": 2 -======= - "Scala": { - "SHEBANG#!sh": 2, - "exec": 2, - "scala": 2, - "#": 2, - "object": 3, - "HelloWorld": 1, - "{": 21, - "def": 10, - "main": 1, - "(": 67, - "args": 1, - "Array": 1, - "[": 11, - "String": 5, - "]": 11, - ")": 67, - "println": 8, - "}": 22, - "name": 4, - "version": 1, - "organization": 1, - "libraryDependencies": 3, - "+": 49, - "%": 12, - "Seq": 3, - "val": 6, - "libosmVersion": 4, - "from": 1, - "maxErrors": 1, - "pollInterval": 1, - "javacOptions": 1, - "scalacOptions": 1, - "scalaVersion": 1, - "initialCommands": 2, - "in": 12, - "console": 1, - "mainClass": 2, - "Compile": 4, - "packageBin": 1, - "Some": 6, - "run": 1, - "watchSources": 1, - "<+=>": 1, - "baseDirectory": 1, - "map": 1, - "_": 2, - "input": 1, - "add": 2, - "a": 4, - "maven": 2, - "style": 2, - "repository": 2, - "resolvers": 2, - "at": 4, - "url": 3, - "sequence": 1, - "of": 1, - "repositories": 1, - "define": 1, - "the": 5, - "to": 7, - "publish": 1, - "publishTo": 1, - "set": 2, - "Ivy": 1, - "logging": 1, - "be": 1, - "highest": 1, - "level": 1, - "ivyLoggingLevel": 1, - "UpdateLogging": 1, - "Full": 1, - "disable": 1, - "updating": 1, - "dynamic": 1, - "revisions": 1, - "including": 1, - "SNAPSHOT": 1, - "versions": 1, - "offline": 1, - "true": 5, - "prompt": 1, - "for": 1, - "this": 1, - "build": 1, - "include": 1, - "project": 1, - "id": 1, - "shellPrompt": 2, - "ThisBuild": 1, - "state": 3, - "Project.extract": 1, - ".currentRef.project": 1, - "System.getProperty": 1, - "showTiming": 1, - "false": 7, - "showSuccess": 1, - "timingFormat": 1, - "import": 9, - "java.text.DateFormat": 1, - "DateFormat.getDateTimeInstance": 1, - "DateFormat.SHORT": 2, - "crossPaths": 1, - "fork": 2, - "Test": 3, - "javaOptions": 1, - "parallelExecution": 2, - "javaHome": 1, - "file": 3, - "scalaHome": 1, - "aggregate": 1, - "clean": 1, - "logLevel": 2, - "compile": 1, - "Level.Warn": 2, - "persistLogLevel": 1, - "Level.Debug": 1, - "traceLevel": 2, - "unmanagedJars": 1, - "publishArtifact": 2, - "packageDoc": 2, - "artifactClassifier": 1, - "retrieveManaged": 1, - "credentials": 2, - "Credentials": 2, - "Path.userHome": 1, - "/": 2, - "Beers": 1, - "extends": 1, - "Application": 1, - "bottles": 3, - "qty": 12, - "Int": 11, - "f": 4, - "//": 29, - "higher": 1, - "-": 5, - "order": 1, - "functions": 2, - "match": 2, - "case": 8, - "x": 3, - "beers": 3, - "sing": 3, - "implicit": 3, - "song": 3, - "takeOne": 2, - "nextQty": 2, - "nested": 1, - "if": 2, - "else": 2, - "refrain": 2, - ".capitalize": 1, - "tail": 1, - "recursion": 1, - "headOfSong": 1, - "parameter": 1, - "math.random": 1, - "scala.language.postfixOps": 1, - "scala.util._": 1, - "scala.util.": 1, - "Try": 1, - "Success": 2, - "Failure": 2, - "scala.concurrent._": 1, - "duration._": 1, - "ExecutionContext.Implicits.global": 1, - "scala.concurrent.": 1, - "ExecutionContext": 1, - "CanAwait": 1, - "OnCompleteRunnable": 1, - "TimeoutException": 1, - "ExecutionException": 1, - "blocking": 3, - "node11": 1, - "Welcome": 1, - "Scala": 1, - "worksheet": 1, - "retry": 3, - "T": 8, - "n": 3, - "block": 8, - "Future": 5, - "ns": 1, - "Iterator": 2, - ".iterator": 1, - "attempts": 1, - "ns.map": 1, - "failed": 2, - "Future.failed": 1, - "new": 1, - "Exception": 2, - "attempts.foldLeft": 1, - "fallbackTo": 1, - "scala.concurrent.Future": 1, - "scala.concurrent.Fut": 1, - "|": 19, - "ure": 1, - "rb": 3, - "i": 9, - "Thread.sleep": 2, - "*random.toInt": 1, - "i.toString": 5, - "ri": 2, - "onComplete": 1, - "s": 1, - "s.toString": 1, - "t": 1, - "t.toString": 1, - "r": 1, - "r.toString": 1, - "Unit": 1, - "toList": 1, - ".foreach": 1, - "Iteration": 5, - "java.lang.Exception": 1, - "Hi": 10 }, - "JSONLD": { - "{": 7, - "}": 7, - "[": 1, - "null": 2, - "]": 1 - }, - "LiveScript": { - "a": 8, - "-": 25, - "const": 1, - "b": 3, - "var": 1, - "c": 3, - "d": 3, - "_000_000km": 1, - "*": 1, - "ms": 1, - "e": 2, - "(": 9, - ")": 10, - "dashes": 1, - "identifiers": 1, - "underscores_i": 1, - "/regexp1/": 1, - "and": 3, - "//regexp2//g": 1, - "strings": 1, - "[": 2, - "til": 1, - "]": 2, - "or": 2, - "to": 2, - "|": 3, - "map": 1, - "filter": 1, - "fold": 1, - "+": 1, - "class": 1, - "Class": 1, - "extends": 1, - "Anc": 1, - "est": 1, - "args": 1, - "copy": 1, - "from": 1, - "callback": 4, - "error": 6, - "data": 2, - "<": 1, - "read": 1, - "file": 2, - "return": 2, - "if": 2, - "<~>": 1, - "write": 1 ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method - }, - "Org": { - "#": 13, - "+": 13, - "OPTIONS": 1, - "H": 1, - "num": 1, - "nil": 4, - "toc": 2, - "n": 1, - "@": 1, - "t": 10, - "|": 4, - "-": 30, - "f": 2, - "*": 3, - "TeX": 1, - "LaTeX": 1, - "skip": 1, - "d": 2, - "(": 11, - "HIDE": 1, - ")": 11, - "tags": 2, - "not": 1, - "in": 2, - "STARTUP": 1, - "align": 1, - "fold": 1, - "nodlcheck": 1, - "hidestars": 1, - "oddeven": 1, - "lognotestate": 1, - "SEQ_TODO": 1, - "TODO": 1, - "INPROGRESS": 1, - "i": 1, - "WAITING": 1, - "w@": 1, - "DONE": 1, - "CANCELED": 1, - "c@": 1, - "TAGS": 1, - "Write": 1, - "w": 1, - "Update": 1, - "u": 1, - "Fix": 1, - "Check": 1, - "c": 1, - "TITLE": 1, - "org": 10, - "ruby": 6, - "AUTHOR": 1, - "Brian": 1, - "Dewey": 1, - "EMAIL": 1, - "bdewey@gmail.com": 1, - "LANGUAGE": 1, - "en": 1, - "PRIORITIES": 1, - "A": 1, - "C": 1, - "B": 1, - "CATEGORY": 1, - "worg": 1, - "{": 1, - "Back": 1, - "to": 8, - "Worg": 1, - "rubygems": 2, - "ve": 1, - "already": 1, - "created": 1, - "a": 4, - "site.": 1, - "Make": 1, - "sure": 1, - "you": 2, - "have": 1, - "installed": 1, - "sudo": 1, - "gem": 1, - "install": 1, - ".": 1, - "You": 1, - "need": 1, - "register": 1, - "new": 2, - "Webby": 3, - "filter": 3, - "handle": 1, - "mode": 2, - "content.": 2, - "makes": 1, - "this": 2, - "easy.": 1, - "In": 1, - "the": 6, - "lib/": 1, - "folder": 1, - "of": 2, - "your": 2, - "site": 1, - "create": 1, - "file": 1, - "orgmode.rb": 1, - "BEGIN_EXAMPLE": 2, - "require": 1, - "Filters.register": 1, - "do": 2, - "input": 3, - "Orgmode": 2, - "Parser.new": 1, - ".to_html": 1, - "end": 1, - "END_EXAMPLE": 1, - "This": 2, - "code": 1, - "creates": 1, - "that": 1, - "will": 1, - "use": 1, - "parser": 1, - "translate": 1, - "into": 1, - "HTML.": 1, - "Create": 1, - "For": 1, - "example": 1, - "title": 2, - "Parser": 1, - "created_at": 1, - "status": 2, - "Under": 1, - "development": 1, - "erb": 1, - "orgmode": 3, - "<%=>": 2, - "page": 2, - "Status": 1, - "Description": 1, - "Helpful": 1, - "Ruby": 1, - "routines": 1, - "for": 3, - "parsing": 1, - "files.": 1, - "The": 3, - "most": 1, - "significant": 1, - "thing": 2, - "library": 1, - "does": 1, - "today": 1, - "is": 5, - "convert": 1, - "files": 1, - "textile.": 1, - "Currently": 1, - "cannot": 1, - "much": 1, - "customize": 1, - "conversion.": 1, - "supplied": 1, - "textile": 1, - "conversion": 1, - "optimized": 1, - "extracting": 1, - "from": 1, - "orgfile": 1, - "as": 1, - "opposed": 1, - "History": 1, - "**": 1, - "Version": 1, - "first": 1, - "output": 2, - "HTML": 2, - "gets": 1, - "class": 1, - "now": 1, - "indented": 1, - "Proper": 1, - "support": 1, - "multi": 1, - "paragraph": 2, - "list": 1, - "items.": 1, - "See": 1, - "part": 1, - "last": 1, - "bullet.": 1, - "Fixed": 1, - "bugs": 1, - "wouldn": 1, - "s": 1, - "all": 1, - "there": 1, - "it": 1 - }, - "Liquid": { - "": 1, - "html": 1, - "PUBLIC": 1, - "W3C": 1, - "DTD": 2, - "XHTML": 1, - "1": 1, - "0": 1, - "Transitional": 1, - "EN": 1, - "http": 2, - "www": 1, - "w3": 1, - "org": 1, - "TR": 1, - "xhtml1": 2, - "transitional": 1, - "dtd": 1, - "": 1, - "xmlns=": 1, - "xml": 1, - "lang=": 2, - "": 1, - "": 1, - "equiv=": 1, - "content=": 1, - "": 1, - "{": 89, - "shop.name": 2, - "}": 89, - "-": 4, - "page_title": 1, - "": 1, - "|": 31, - "global_asset_url": 5, - "stylesheet_tag": 3, - "script_tag": 5, - "shopify_asset_url": 1, - "asset_url": 2, - "content_for_header": 1, - "": 1, - "": 1, - "id=": 28, - "

": 1, - "class=": 14, - "": 9, - "href=": 9, - "Skip": 1, - "to": 1, - "navigation.": 1, - "": 9, - "

": 1, - "%": 46, - "if": 5, - "cart.item_count": 7, - "
": 23, - "style=": 5, - "

": 3, - "There": 1, - "pluralize": 3, - "in": 8, - "title=": 3, - "your": 1, - "cart": 1, - "

": 3, - "

": 1, - "Your": 1, - "subtotal": 1, - "is": 1, - "cart.total_price": 2, - "money": 5, - ".": 3, - "

": 1, - "for": 6, - "item": 1, - "cart.items": 1, - "onMouseover=": 2, - "onMouseout=": 2, - "": 4, - "src=": 5, - "
": 23, - "endfor": 6, - "
": 2, - "endif": 5, - "

": 1, - "

": 1, - "onclick=": 1, - "View": 1, - "Mini": 1, - "Cart": 1, - "(": 1, - ")": 1, - "
": 3, - "content_for_layout": 1, - "
    ": 5, - "link": 2, - "linklists.main": 1, - "menu.links": 1, - "
  • ": 5, - "link.title": 2, - "link_to": 2, - "link.url": 2, - "
  • ": 5, - "
": 5, - "tags": 1, - "tag": 4, - "collection.tags": 1, - "": 1, - "link_to_add_tag": 1, - "": 1, - "highlight_active_tag": 1, - "link_to_tag": 1, - "linklists.footer.links": 1, - "All": 1, - "prices": 1, - "are": 1, - "shop.currency": 1, - "Powered": 1, - "by": 1, - "Shopify": 1, - "": 1, - "": 1, - "

": 1, - "We": 1, - "have": 1, - "wonderful": 1, - "products": 1, - "

": 1, - "image": 1, - "product.images": 1, - "forloop.first": 1, - "rel=": 2, - "alt=": 2, - "else": 1, - "product.title": 1, - "Vendor": 1, - "product.vendor": 1, - "link_to_vendor": 1, - "Type": 1, - "product.type": 1, - "link_to_type": 1, - "": 1, - "product.price_min": 1, - "product.price_varies": 1, - "product.price_max": 1, - "": 1, - "
": 1, - "action=": 1, - "method=": 1, - "": 1, - "": 1, - "type=": 2, - "
": 1, - "product.description": 1, - "": 1 - }, - "UnrealScript": { - "//": 5, - "-": 220, - "class": 18, - "MutU2Weapons": 1, - "extends": 2, - "Mutator": 1, - "config": 18, - "(": 189, - "U2Weapons": 1, - ")": 189, - ";": 295, - "var": 30, - "string": 25, - "ReplacedWeaponClassNames0": 1, - "ReplacedWeaponClassNames1": 1, - "ReplacedWeaponClassNames2": 1, - "ReplacedWeaponClassNames3": 1, - "ReplacedWeaponClassNames4": 1, - "ReplacedWeaponClassNames5": 1, - "ReplacedWeaponClassNames6": 1, - "ReplacedWeaponClassNames7": 1, - "ReplacedWeaponClassNames8": 1, - "ReplacedWeaponClassNames9": 1, - "ReplacedWeaponClassNames10": 1, - "ReplacedWeaponClassNames11": 1, - "ReplacedWeaponClassNames12": 1, - "bool": 18, - "bConfigUseU2Weapon0": 1, - "bConfigUseU2Weapon1": 1, - "bConfigUseU2Weapon2": 1, - "bConfigUseU2Weapon3": 1, - "bConfigUseU2Weapon4": 1, - "bConfigUseU2Weapon5": 1, - "bConfigUseU2Weapon6": 1, - "bConfigUseU2Weapon7": 1, - "bConfigUseU2Weapon8": 1, - "bConfigUseU2Weapon9": 1, - "bConfigUseU2Weapon10": 1, - "bConfigUseU2Weapon11": 1, - "bConfigUseU2Weapon12": 1, - "//var": 8, - "byte": 4, - "bUseU2Weapon": 1, - "[": 125, - "]": 125, - "": 7, - "ReplacedWeaponClasses": 3, - "": 2, - "ReplacedWeaponPickupClasses": 1, - "": 3, - "ReplacedAmmoPickupClasses": 1, - "U2WeaponClasses": 2, - "//GE": 17, - "For": 3, - "default": 12, - "properties": 3, - "ONLY": 3, - "U2WeaponPickupClassNames": 1, - "U2AmmoPickupClassNames": 2, - "bIsVehicle": 4, - "bNotVehicle": 3, - "localized": 2, - "U2WeaponDisplayText": 1, - "U2WeaponDescText": 1, - "GUISelectOptions": 1, - "int": 10, - "FirePowerMode": 1, - "bExperimental": 3, - "bUseFieldGenerator": 2, - "bUseProximitySensor": 2, - "bIntegrateShieldReward": 2, - "IterationNum": 8, - "Weapons.Length": 1, - "const": 1, - "DamageMultiplier": 28, - "DamagePercentage": 3, - "bUseXMPFeel": 4, - "FlashbangModeString": 1, - "struct": 1, - "WeaponInfo": 2, - "{": 28, - "ReplacedWeaponClass": 1, - "Generated": 4, - "from": 6, - "ReplacedWeaponClassName.": 2, - "This": 3, - "is": 6, - "what": 1, - "we": 3, - "replace.": 1, - "ReplacedWeaponPickupClass": 1, - "UNUSED": 1, - "ReplacedAmmoPickupClass": 1, - "WeaponClass": 1, - "the": 31, - "weapon": 10, - "are": 1, - "going": 1, - "to": 4, - "put": 1, - "inside": 1, - "world.": 1, - "WeaponPickupClassName": 1, - "WeponClass.": 1, - "AmmoPickupClassName": 1, - "WeaponClass.": 1, - "bEnabled": 1, - "Structs": 1, - "can": 2, - "d": 1, - "thus": 1, - "still": 1, - "require": 1, - "bConfigUseU2WeaponX": 1, - "indicates": 1, - "that": 3, - "spawns": 1, - "a": 2, - "vehicle": 3, - "deployable": 1, - "turrets": 1, - ".": 2, - "These": 1, - "only": 2, - "work": 1, - "in": 4, - "gametypes": 1, - "duh.": 1, - "Opposite": 1, - "of": 1, - "works": 1, - "non": 1, - "gametypes.": 2, - "Think": 1, - "shotgun.": 1, - "}": 27, - "Weapons": 31, - "function": 5, - "PostBeginPlay": 1, - "local": 8, - "FireMode": 8, - "x": 65, - "//local": 3, - "ReplacedWeaponPickupClassName": 1, - "//IterationNum": 1, - "ArrayCount": 2, - "Level.Game.bAllowVehicles": 4, - "He": 1, - "he": 1, - "neat": 1, - "way": 1, - "get": 1, - "required": 1, - "number.": 1, - "for": 11, - "<": 9, - "+": 18, - ".bEnabled": 3, - "GetPropertyText": 5, - "needed": 1, - "use": 1, - "variables": 1, - "an": 1, - "array": 2, - "like": 1, - "fashion.": 1, - "//bUseU2Weapon": 1, - ".ReplacedWeaponClass": 5, - "DynamicLoadObject": 2, - "//ReplacedWeaponClasses": 1, - "//ReplacedWeaponPickupClassName": 1, - ".default.PickupClass": 1, - "if": 55, - ".ReplacedWeaponClass.default.FireModeClass": 4, - "None": 10, - "&&": 15, - ".default.AmmoClass": 1, - ".default.AmmoClass.default.PickupClass": 2, - ".ReplacedAmmoPickupClass": 2, - "break": 1, - ".WeaponClass": 7, - ".WeaponPickupClassName": 1, - ".WeaponClass.default.PickupClass": 1, - ".AmmoPickupClassName": 2, - ".bIsVehicle": 2, - ".bNotVehicle": 2, - "Super.PostBeginPlay": 1, - "ValidReplacement": 6, - "return": 47, - "CheckReplacement": 1, - "Actor": 1, - "Other": 23, - "out": 2, - "bSuperRelevant": 3, - "i": 12, - "WeaponLocker": 3, - "L": 2, - "xWeaponBase": 3, - ".WeaponType": 2, - "false": 3, - "true": 5, - "Weapon": 1, - "Other.IsA": 2, - "Other.Class": 2, - "Ammo": 1, - "ReplaceWith": 1, - "L.Weapons.Length": 1, - "L.Weapons": 2, - "//STARTING": 1, - "WEAPON": 1, - "xPawn": 6, - ".RequiredEquipment": 3, - "True": 2, - "Special": 1, - "handling": 1, - "Shield": 2, - "Reward": 2, - "integration": 1, - "ShieldPack": 7, - ".SetStaticMesh": 1, - "StaticMesh": 1, - ".Skins": 1, - "Shader": 2, - ".RepSkin": 1, - ".SetDrawScale": 1, - ".SetCollisionSize": 1, - ".PickupMessage": 1, - ".PickupSound": 1, - "Sound": 1, - "Super.CheckReplacement": 1, - "GetInventoryClassOverride": 1, - "InventoryClassName": 3, - "Super.GetInventoryClassOverride": 1, - "static": 2, - "FillPlayInfo": 1, - "PlayInfo": 3, - "": 1, - "Recs": 4, - "WeaponOptions": 17, - "Super.FillPlayInfo": 1, - ".static.GetWeaponList": 1, - "Recs.Length": 1, - ".ClassName": 1, - ".FriendlyName": 1, - "PlayInfo.AddSetting": 33, - "default.RulesGroup": 33, - "default.U2WeaponDisplayText": 33, - "event": 3, - "GetDescriptionText": 1, - "PropName": 35, - "default.U2WeaponDescText": 33, - "Super.GetDescriptionText": 1, - "PreBeginPlay": 1, - "float": 3, - "k": 29, - "Multiplier.": 1, - "Super.PreBeginPlay": 1, - "/100.0": 1, - "//log": 1, - "@k": 1, - "//Sets": 1, - "various": 1, - "settings": 1, - "match": 1, - "different": 1, - "games": 1, - ".default.DamagePercentage": 1, - "//Original": 1, - "U2": 3, - "compensate": 1, - "division": 1, - "errors": 1, - "Class": 105, - ".default.DamageMin": 12, - "*": 54, - ".default.DamageMax": 12, - ".default.Damage": 27, - ".default.myDamage": 4, - "//Dampened": 1, - "already": 1, - "no": 2, - "need": 1, - "rewrite": 1, - "else": 1, - "//General": 2, - "XMP": 4, - ".default.Spread": 1, - ".default.MaxAmmo": 7, - ".default.Speed": 8, - ".default.MomentumTransfer": 4, - ".default.ClipSize": 4, - ".default.FireLastReloadTime": 3, - ".default.DamageRadius": 4, - ".default.LifeSpan": 4, - ".default.ShakeRadius": 1, - ".default.ShakeMagnitude": 1, - ".default.MaxSpeed": 5, - ".default.FireRate": 3, - ".default.ReloadTime": 3, - "//3200": 1, - "too": 1, - "much": 1, - ".default.VehicleDamageScaling": 2, - "*k": 28, - "//Experimental": 1, - "options": 1, - "lets": 1, - "you": 2, - "Unuse": 1, - "EMPimp": 1, - "projectile": 1, - "and": 3, - "fire": 1, - "two": 1, - "CAR": 1, - "barrels": 1, - "//CAR": 1, - "nothing": 1, - "U2Weapons.U2AssaultRifleFire": 1, - "U2Weapons.U2AssaultRifleAltFire": 1, - "U2ProjectileConcussionGrenade": 1, - "U2Weapons.U2AssaultRifleInv": 1, - "U2Weapons.U2WeaponEnergyRifle": 1, - "U2Weapons.U2WeaponFlameThrower": 1, - "U2Weapons.U2WeaponPistol": 1, - "U2Weapons.U2AutoTurretDeploy": 1, - "U2Weapons.U2WeaponRocketLauncher": 1, - "U2Weapons.U2WeaponGrenadeLauncher": 1, - "U2Weapons.U2WeaponSniper": 2, - "U2Weapons.U2WeaponRocketTurret": 1, - "U2Weapons.U2WeaponLandMine": 1, - "U2Weapons.U2WeaponLaserTripMine": 1, - "U2Weapons.U2WeaponShotgun": 1, - "s": 7, - "Minigun.": 1, - "Enable": 5, - "Shock": 1, - "Lance": 1, - "Energy": 2, - "Rifle": 3, - "What": 7, - "should": 7, - "be": 8, - "replaced": 8, - "with": 9, - "Rifle.": 3, - "By": 7, - "it": 7, - "Bio": 1, - "Magnum": 2, - "Pistol": 1, - "Pistol.": 1, - "Onslaught": 1, - "Grenade": 1, - "Launcher.": 2, - "Shark": 2, - "Rocket": 4, - "Launcher": 1, - "Flak": 1, - "Cannon.": 1, - "Should": 1, - "Lightning": 1, - "Gun": 2, - "Widowmaker": 2, - "Sniper": 3, - "Classic": 1, - "here.": 1, - "Turret": 2, - "delpoyable": 1, - "deployable.": 1, - "Redeemer.": 1, - "Laser": 2, - "Trip": 2, - "Mine": 1, - "Mine.": 1, - "t": 2, - "replace": 1, - "Link": 1, - "matches": 1, - "vehicles.": 1, - "Crowd": 1, - "Pleaser": 1, - "Shotgun.": 1, - "have": 1, - "shields": 1, - "or": 2, - "damage": 1, - "filtering.": 1, - "If": 1, - "checked": 1, - "mutator": 1, - "produces": 1, - "Unreal": 4, - "II": 4, - "shield": 1, - "pickups.": 1, - "Choose": 1, - "between": 2, - "white": 1, - "overlay": 3, - "depending": 2, - "on": 2, - "player": 2, - "view": 1, - "style": 1, - "distance": 1, - "foolproof": 1, - "FM_DistanceBased": 1, - "Arena": 1, - "Add": 1, - "weapons": 1, - "other": 1, - "Fully": 1, - "customisable": 1, - "choose": 1, - "behaviour.": 1, - "US3HelloWorld": 1, - "GameInfo": 1, - "InitGame": 1, - "Options": 1, - "Error": 1, - "log": 1, - "defaultproperties": 1 - }, - "Component Pascal": { - "MODULE": 2, - "ObxControls": 1, - ";": 123, - "IMPORT": 2, - "Dialog": 1, - "Ports": 1, - "Properties": 1, - "Views": 1, - "CONST": 1, - "beginner": 5, - "advanced": 3, - "expert": 1, - "guru": 2, - "TYPE": 1, - "View": 6, - "POINTER": 2, - "TO": 2, - "RECORD": 2, - "(": 91, - "Views.View": 2, - ")": 94, - "size": 1, - "INTEGER": 10, - "END": 31, - "VAR": 9, - "data*": 1, - "class*": 1, - "list*": 1, - "Dialog.List": 1, - "width*": 1, - "predef": 12, - "ARRAY": 2, - "OF": 2, - "PROCEDURE": 12, - "SetList": 4, - "BEGIN": 13, - "IF": 11, - "data.class": 5, - "THEN": 12, - "data.list.SetLen": 3, - "data.list.SetItem": 11, - "ELSIF": 1, - "ELSE": 3, - "v": 6, - "CopyFromSimpleView": 2, - "source": 2, - "v.size": 10, - ".size": 1, - "Restore": 2, - "f": 1, - "Views.Frame": 1, - "l": 1, - "t": 1, - "r": 7, - "b": 1, - "[": 13, - "]": 13, - "f.DrawRect": 1, - "Ports.fill": 1, - "Ports.red": 1, - "HandlePropMsg": 2, - "msg": 2, - "Views.PropMessage": 1, - "WITH": 1, - "Properties.SizePref": 1, - "DO": 4, - "msg.w": 1, - "msg.h": 1, - "ClassNotify*": 1, - "op": 4, - "from": 2, - "to": 5, - "Dialog.changed": 2, - "OR": 4, - "&": 8, - "data.list.index": 3, - "data.width": 4, - "Dialog.Update": 2, - "data": 2, - "Dialog.UpdateList": 1, - "data.list": 1, - "ClassNotify": 1, - "ListNotify*": 1, - "ListNotify": 1, - "ListGuard*": 1, - "par": 2, - "Dialog.Par": 2, - "par.disabled": 1, - "ListGuard": 1, - "WidthGuard*": 1, - "par.readOnly": 1, - "#": 3, - "WidthGuard": 1, - "Open*": 1, - "NEW": 2, - "*": 1, - "Ports.mm": 1, - "Views.OpenAux": 1, - "Open": 1, - "ObxControls.": 1, - "ObxFact": 1, - "Stores": 1, - "Models": 1, - "TextModels": 1, - "TextControllers": 1, - "Integers": 1, - "Read": 3, - "TextModels.Reader": 2, - "x": 15, - "Integers.Integer": 3, - "i": 17, - "len": 5, - "beg": 11, - "ch": 14, - "CHAR": 3, - "buf": 5, - "r.ReadChar": 5, - "WHILE": 3, - "r.eot": 4, - "<=>": 1, - "ReadChar": 1, - "ASSERT": 1, - "eot": 1, - "<": 8, - "r.Pos": 2, - "-": 1, - "REPEAT": 3, - "INC": 4, - "UNTIL": 3, - "+": 1, - "r.SetPos": 2, - "X": 1, - "Integers.ConvertFromString": 1, - "Write": 3, - "w": 4, - "TextModels.Writer": 2, - "Integers.Sign": 2, - "w.WriteChar": 3, - "Integers.Digits10Of": 1, - "DEC": 1, - "Integers.ThisDigit10": 1, - "Compute*": 1, - "end": 6, - "n": 3, - "s": 3, - "Stores.Operation": 1, - "attr": 3, - "TextModels.Attributes": 1, - "c": 3, - "TextControllers.Controller": 1, - "TextControllers.Focus": 1, - "NIL": 3, - "c.HasSelection": 1, - "c.GetSelection": 1, - "c.text.NewReader": 1, - "r.ReadPrev": 2, - "r.attr": 1, - "Integers.Compare": 1, - "Integers.Long": 3, - "MAX": 1, - "LONGINT": 1, - "SHORT": 1, - "Integers.Short": 1, - "Integers.Product": 1, - "Models.BeginScript": 1, - "c.text": 2, - "c.text.Delete": 1, - "c.text.NewWriter": 1, - "w.SetPos": 1, - "w.SetAttr": 1, - "Models.EndScript": 1, - "Compute": 1, - "ObxFact.": 1 - }, - "PogoScript": { - "httpism": 1, - "require": 3, - "async": 1, - "resolve": 2, - ".resolve": 1, - "exports.squash": 1, - "(": 38, - "url": 5, - ")": 38, - "html": 15, - "httpism.get": 2, - ".body": 2, - "squash": 2, - "callback": 2, - "replacements": 6, - "sort": 2, - "links": 2, - "in": 11, - ".concat": 1, - "scripts": 2, - "for": 2, - "each": 2, - "@": 6, - "r": 1, - "{": 3, - "r.url": 1, - "r.href": 1, - "}": 3, - "async.map": 1, - "get": 2, - "err": 2, - "requested": 2, - "replace": 2, - "replacements.sort": 1, - "a": 1, - "b": 1, - "a.index": 1, - "-": 1, - "b.index": 1, - "replacement": 2, - "replacement.body": 1, - "replacement.url": 1, - "i": 3, - "parts": 3, - "rep": 1, - "rep.index": 1, - "+": 2, - "rep.length": 1, - "html.substr": 1, - "link": 2, - "reg": 5, - "r/": 2, - "": 1, - "]": 7, - "*href": 1, - "[": 5, - "*": 2, - "/": 2, - "|": 2, - "s*": 2, - "<\\/link\\>": 1, - "/gi": 2, - "elements": 5, - "matching": 3, - "as": 3, - "script": 2, - "": 1, - "*src": 1, - "<\\/script\\>": 1, - "tag": 3, - "while": 1, - "m": 1, - "reg.exec": 1, - "elements.push": 1, - "index": 1, - "m.index": 1, - "length": 1, - "m.0.length": 1, - "href": 1, - "m.1": 1 - }, - "Creole": { - "Creole": 6, - "is": 3, - "a": 2, - "-": 5, - "to": 2, - "HTML": 1, - "converter": 2, - "for": 1, - "the": 5, - "lightweight": 1, - "markup": 1, - "language": 1, - "(": 5, - "http": 4, - "//wikicreole.org/": 1, - ")": 5, - ".": 1, - "Github": 1, - "uses": 1, - "this": 1, - "render": 1, - "*.creole": 1, - "files.": 1, - "Project": 1, - "page": 1, - "on": 2, - "github": 1, - "*": 5, - "//github.com/minad/creole": 1, - "Travis": 1, - "CI": 1, - "https": 1, - "//travis": 1, - "ci.org/minad/creole": 1, - "RDOC": 1, - "//rdoc.info/projects/minad/creole": 1, - "INSTALLATION": 1, - "{": 6, - "gem": 1, - "install": 1, - "creole": 1, - "}": 6, - "SYNOPSIS": 1, - "require": 1, - "html": 1, - "Creole.creolize": 1, - "BUGS": 1, - "If": 1, - "you": 1, - "found": 1, - "bug": 1, - "please": 1, - "report": 1, - "it": 1, - "at": 1, - "project": 1, - "s": 1, - "tracker": 1, - "GitHub": 1, - "//github.com/minad/creole/issues": 1, - "AUTHORS": 1, - "Lars": 2, - "Christensen": 2, - "larsch": 1, - "Daniel": 2, - "Mendler": 1, - "minad": 1, - "LICENSE": 1, - "Copyright": 1, - "c": 1, - "Mendler.": 1, - "It": 1, - "free": 1, - "software": 1, - "and": 1, - "may": 1, - "be": 1, - "redistributed": 1, - "under": 1, - "terms": 1, - "specified": 1, - "in": 1, - "README": 1, - "file": 1, - "of": 1, - "Ruby": 1, - "distribution.": 1 - }, - "Processing": { - "void": 2, - "setup": 1, - "(": 17, - ")": 17, - "{": 2, - "size": 1, - ";": 15, - "background": 1, - "noStroke": 1, - "}": 2, - "draw": 1, - "fill": 6, - "triangle": 2, - "rect": 1, - "quad": 1, - "ellipse": 1, - "arc": 1, - "PI": 1, - "TWO_PI": 1 - }, - "Emacs Lisp": { - ";": 333, - "ess": 48, - "-": 294, - "julia.el": 2, - "ESS": 5, - "julia": 39, - "mode": 12, - "and": 3, - "inferior": 13, - "interaction": 1, - "Copyright": 1, - "(": 156, - "C": 2, - ")": 144, - "Vitalie": 3, - "Spinu.": 1, - "Filename": 1, - "Author": 1, - "Spinu": 2, - "based": 1, - "on": 2, - "mode.el": 1, - "from": 3, - "lang": 1, - "project": 1, - "Maintainer": 1, - "Created": 1, - "Keywords": 1, - "This": 4, - "file": 10, - "is": 5, - "*NOT*": 1, - "part": 2, - "of": 8, - "GNU": 4, - "Emacs.": 1, - "program": 6, - "free": 1, - "software": 1, - "you": 1, - "can": 1, - "redistribute": 1, - "it": 3, - "and/or": 1, - "modify": 5, - "under": 1, - "the": 10, - "terms": 1, - "General": 3, - "Public": 3, - "License": 3, - "as": 1, - "published": 1, - "by": 1, - "Free": 2, - "Software": 2, - "Foundation": 2, - "either": 1, - "version": 2, - "any": 1, - "later": 1, - "version.": 1, - "distributed": 1, - "in": 3, - "hope": 1, - "that": 2, - "will": 1, - "be": 2, - "useful": 1, - "but": 2, - "WITHOUT": 1, - "ANY": 1, - "WARRANTY": 1, - "without": 1, - "even": 1, - "implied": 1, - "warranty": 1, - "MERCHANTABILITY": 1, - "or": 3, - "FITNESS": 1, - "FOR": 1, - "A": 1, - "PARTICULAR": 1, - "PURPOSE.": 1, - "See": 1, - "for": 8, - "more": 1, - "details.": 1, - "You": 1, - "should": 2, - "have": 1, - "received": 1, - "a": 4, - "copy": 2, - "along": 1, - "with": 4, - "this": 1, - "see": 2, - "COPYING.": 1, - "If": 1, - "not": 1, - "write": 2, - "to": 4, - "Inc.": 1, - "Franklin": 1, - "Street": 1, - "Fifth": 1, - "Floor": 1, - "Boston": 1, - "MA": 1, - "USA.": 1, - "Commentary": 1, - "customise": 1, - "name": 8, - "point": 6, - "your": 1, - "release": 1, - "basic": 1, - "start": 13, - "M": 2, - "x": 2, - "julia.": 2, - "require": 2, - "auto": 1, - "alist": 9, - "table": 9, - "character": 1, - "quote": 2, - "transpose": 1, - "syntax": 7, - "entry": 4, - ".": 40, - "Syntax": 3, - "inside": 1, - "char": 6, - "defvar": 5, - "let": 3, - "make": 4, - "defconst": 5, - "regex": 5, - "unquote": 1, - "forloop": 1, - "subset": 2, - "regexp": 6, - "font": 6, - "lock": 6, - "defaults": 2, - "list": 3, - "identity": 1, - "keyword": 2, - "face": 4, - "constant": 1, - "cons": 1, - "function": 7, - "keep": 2, - "string": 8, - "paragraph": 3, - "concat": 7, - "page": 2, - "delimiter": 2, - "separate": 1, - "ignore": 2, - "fill": 1, - "prefix": 2, - "t": 6, - "final": 1, - "newline": 1, - "comment": 6, - "add": 4, - "skip": 1, - "column": 1, - "indent": 8, - "S": 2, - "line": 5, - "calculate": 1, - "parse": 1, - "sexp": 1, - "comments": 1, - "style": 2, - "default": 1, - "ignored": 1, - "local": 6, - "process": 5, - "nil": 12, - "dump": 2, - "files": 1, - "_": 1, - "autoload": 1, - "defun": 5, - "send": 3, - "visibly": 1, - "temporary": 1, - "directory": 2, - "temp": 2, - "insert": 1, - "format": 3, - "load": 1, - "command": 5, - "get": 3, - "help": 3, - "topics": 1, - "&": 3, - "optional": 3, - "proc": 3, - "words": 1, - "vector": 1, - "com": 1, - "error": 6, - "s": 5, - "*in": 1, - "[": 3, - "n": 1, - "]": 3, - "*": 1, - "at": 5, - ".*": 2, - "+": 5, - "w*": 1, - "http": 1, - "//docs.julialang.org/en/latest/search/": 1, - "q": 1, - "%": 1, - "include": 1, - "funargs": 1, - "re": 2, - "args": 10, - "language": 1, - "STERM": 1, - "editor": 2, - "R": 2, - "pager": 2, - "versions": 1, - "Julia": 1, - "made": 1, - "available.": 1, - "String": 1, - "arguments": 2, - "used": 1, - "when": 2, - "starting": 1, - "group": 1, - "###autoload": 2, - "interactive": 2, - "setq": 2, - "customize": 5, - "emacs": 1, - "<": 1, - "hook": 4, - "complete": 1, - "object": 2, - "completion": 4, - "functions": 2, - "first": 1, - "if": 4, - "fboundp": 1, - "end": 1, - "workaround": 1, - "set": 3, - "variable": 3, - "post": 1, - "run": 2, - "settings": 1, - "notably": 1, - "null": 1, - "dribble": 1, - "buffer": 3, - "debugging": 1, - "only": 1, - "dialect": 1, - "current": 2, - "arg": 1, - "let*": 2, - "jl": 2, - "space": 1, - "just": 1, - "case": 1, - "read": 1, - "..": 3, - "multi": 1, - "...": 1, - "tb": 1, - "logo": 1, - "goto": 2, - "min": 1, - "while": 1, - "search": 1, - "forward": 1, - "replace": 1, - "match": 1, - "max": 1, - "inject": 1, - "code": 1, - "etc": 1, - "hooks": 1, - "busy": 1, - "funname": 5, - "eldoc": 1, - "show": 1, - "symbol": 2, - "aggressive": 1, - "car": 1, - "funname.start": 1, - "sequence": 1, - "nth": 1, - "W": 1, - "window": 2, - "width": 1, - "minibuffer": 1, - "length": 1, - "doc": 1, - "propertize": 1, - "use": 1, - "classes": 1, - "screws": 1, - "egrep": 1, - "print": 1 - }, - "Elm": { - "data": 1, - "Tree": 3, - "a": 5, - "Node": 8, - "(": 119, - ")": 116, - "|": 3, - "Empty": 8, - "empty": 2, - "singleton": 2, - "v": 8, - "insert": 4, - "x": 13, - "tree": 7, - "case": 5, - "of": 7, - "-": 11, - "y": 7, - "left": 7, - "right": 8, - "if": 2, - "then": 2, - "else": 2, - "<": 1, - "fromList": 3, - "xs": 9, - "foldl": 1, - "depth": 5, - "+": 14, - "max": 1, - "map": 11, - "f": 8, - "t1": 2, - "[": 31, - "]": 31, - "t2": 3, - "main": 3, - "flow": 4, - "down": 3, - "display": 4, - "name": 6, - "text": 4, - ".": 9, - "monospace": 1, - "toText": 6, - "concat": 1, - "show": 2, - "asText": 1, - "qsort": 4, - "lst": 6, - "filter": 2, - "<)x)>": 1, - "import": 3, - "List": 1, - "intercalate": 2, - "intersperse": 3, - "Website.Skeleton": 1, - "Website.ColorScheme": 1, - "addFolder": 4, - "folder": 2, - "let": 2, - "add": 2, - "in": 2, - "n": 2, - "elements": 2, - "functional": 2, - "reactive": 2, - "example": 3, - "loc": 2, - "Text.link": 1, - "toLinks": 2, - "title": 2, - "links": 2, - "width": 3, - "italic": 1, - "bold": 2, - "Text.color": 1, - "accent4": 1, - "insertSpace": 2, - "{": 1, - "spacer": 2, - ";": 1, - "}": 1, - "subsection": 2, - "w": 7, - "info": 2, - "words": 2, - "markdown": 1, - "###": 1, - "Basic": 1, - "Examples": 1, - "Each": 1, - "listed": 1, - "below": 1, - "focuses": 1, - "on": 1, - "single": 1, - "function": 1, - "or": 1, - "concept.": 1, - "These": 1, - "examples": 1, - "demonstrate": 1, - "all": 1, - "the": 1, - "basic": 1, - "building": 1, - "blocks": 1, - "Elm.": 1, - "content": 2, - "exampleSets": 2, - "plainText": 1, - "lift": 1, - "skeleton": 1, - "Window.width": 1 - }, - "Inform 7": { - "Version": 1, - "of": 3, - "Trivial": 3, - "Extension": 3, - "by": 3, - "Andrew": 3, - "Plotkin": 1, - "begins": 1, - "here.": 2, - "A": 3, - "cow": 3, - "is": 4, - "a": 2, - "kind": 1, - "animal.": 1, - "can": 1, - "be": 1, - "purple.": 1, - "ends": 1, - "Plotkin.": 2, - "Include": 1, - "The": 1, - "Kitchen": 1, - "room.": 1, - "[": 1, - "This": 1, - "kitchen": 1, - "modelled": 1, - "after": 1, - "the": 4, - "one": 1, - "in": 2, - "Zork": 1, - "although": 1, - "it": 1, - "lacks": 1, - "detail": 1, - "to": 2, - "establish": 1, - "this": 1, - "player.": 1, - "]": 1, - "purple": 1, - "called": 1, - "Gelett": 2, - "Kitchen.": 1, - "Instead": 1, - "examining": 1, - "say": 1 - }, - "XC": { - "int": 2, - "main": 1, - "(": 1, - ")": 1, - "{": 2, - "x": 3, - ";": 4, - "chan": 1, - "c": 3, - "par": 1, - "<:>": 1, - "0": 1, - "}": 2, - "return": 1 - }, - "JSON": { - "{": 73, - "}": 73, - "[": 17, - "]": 17, - "true": 3 - }, - "Scaml": { - "%": 1, - "p": 1, - "Hello": 1, - "World": 1 - }, - "Shell": { - "SHEBANG#!sh": 2, - "echo": 71, - "SHEBANG#!bash": 8, - "#": 53, - "declare": 22, - "-": 391, - "r": 17, - "sbt_release_version": 2, - "sbt_snapshot_version": 2, - "SNAPSHOT": 3, - "unset": 10, - "sbt_jar": 3, - "sbt_dir": 2, - "sbt_create": 2, - "sbt_snapshot": 1, - "sbt_launch_dir": 3, - "scala_version": 3, - "java_home": 1, - "sbt_explicit_version": 7, - "verbose": 6, - "debug": 11, - "quiet": 6, - "build_props_sbt": 3, - "(": 107, - ")": 154, - "{": 63, - "if": 39, - "[": 85, - "f": 68, - "project/build.properties": 9, - "]": 85, - ";": 138, - "then": 41, - "versionLine": 2, - "grep": 8, - "sbt.version": 3, - "versionString": 3, - "versionLine##sbt.version": 1, - "}": 61, - "fi": 34, - "update_build_props_sbt": 2, - "local": 22, - "ver": 5, - "old": 4, - "return": 3, - "elif": 4, - "perl": 3, - "pi": 1, - "e": 4, - "q": 8, - "||": 12, - "Updated": 1, + "Propeller Spin": { + "{": 26, + "*****************************************": 4, + "*": 143, + "x4": 4, + "Keypad": 1, + "Reader": 1, + "v1.0": 4, + "Author": 8, + "Beau": 2, + "Schwabe": 2, + "Copyright": 10, + "(": 356, + "c": 33, + ")": 356, + "Parallax": 10, + "See": 10, + "end": 12, + "of": 108, "file": 9, - "setting": 2, - "to": 33, - "Previous": 1, - "value": 1, - "was": 1, - "sbt_version": 8, - "n": 22, - "else": 10, - "v": 11, - "echoerr": 3, - "&": 5, - "vlog": 1, - "&&": 65, - "dlog": 8, - "get_script_path": 2, - "path": 13, - "L": 1, - "target": 1, - "readlink": 1, - "get_mem_opts": 3, - "mem": 4, - "perm": 6, - "/": 2, - "<": 2, - "codecache": 1, - "die": 2, - "exit": 10, - "make_url": 3, - "groupid": 1, - "category": 1, - "version": 12, - "default_jvm_opts": 1, - "default_sbt_opts": 1, - "default_sbt_mem": 2, - "noshare_opts": 1, - "sbt_opts_file": 1, - "jvm_opts_file": 1, - "latest_28": 1, - "latest_29": 1, - "latest_210": 1, - "script_path": 1, - "script_dir": 1, - "script_name": 2, - "java_cmd": 2, - "java": 2, - "sbt_mem": 5, - "a": 12, - "residual_args": 4, - "java_args": 3, - "scalac_args": 4, - "sbt_commands": 2, - "build_props_scala": 1, - "build.scala.versions": 1, - "versionLine##build.scala.versions": 1, - "%": 5, - ".*": 2, - "execRunner": 2, - "for": 7, - "arg": 3, - "do": 8, - "printf": 4, - "|": 17, - "done": 8, - "exec": 3, - "sbt_groupid": 3, - "case": 9, - "in": 25, - "*": 11, - "org.scala": 4, - "tools.sbt": 3, - "sbt": 18, - "esac": 7, - "sbt_artifactory_list": 2, - "version0": 2, - "url": 4, - "curl": 8, - "s": 14, - "list": 3, - "only": 6, - "F": 1, - "pe": 1, - "make_release_url": 2, - "releases": 1, - "make_snapshot_url": 2, - "snapshots": 1, - "head": 1, - "/dev/null": 6, - "jar_url": 1, - "jar_file": 1, - "download_url": 2, - "jar": 3, - "mkdir": 2, - "p": 2, - "dirname": 1, - "which": 10, - "fail": 1, - "silent": 1, - "output": 1, - "wget": 2, - "O": 1, - "acquire_sbt_jar": 1, - "sbt_url": 1, - "usage": 2, - "cat": 3, - "<<": 2, - "EOM": 3, - "Usage": 1, - "options": 8, - "h": 3, - "help": 5, - "print": 1, - "this": 6, - "message": 1, - "runner": 1, - "is": 11, - "chattier": 1, - "d": 9, - "set": 21, - "log": 2, - "level": 2, - "Debug": 1, - "Error": 1, - "no": 16, - "colors": 2, - "disable": 1, - "ANSI": 1, - "color": 1, - "codes": 1, - "create": 2, - "start": 1, - "even": 3, - "current": 1, - "directory": 5, - "contains": 2, - "project": 1, - "dir": 3, - "": 3, - "global": 1, - "settings/plugins": 1, - "default": 4, - "/.sbt/": 1, - "": 1, - "boot": 3, - "shared": 1, - "/.sbt/boot": 1, - "series": 1, - "ivy": 2, - "Ivy": 1, - "repository": 3, - "/.ivy2": 1, - "": 1, - "memory": 3, - "share": 2, - "use": 1, - "all": 1, - "caches": 1, - "sharing": 1, - "offline": 3, - "put": 1, - "mode": 2, - "jvm": 2, - "": 1, - "Turn": 1, - "on": 4, - "JVM": 1, - "debugging": 1, - "open": 1, - "at": 1, - "the": 17, - "given": 2, - "port.": 1, - "batch": 2, - "Disable": 1, - "interactive": 1, - "The": 1, - "way": 1, - "accomplish": 1, - "pre": 1, - "there": 2, - "build.properties": 1, - "an": 1, - "property": 1, - "update": 2, - "disk.": 1, - "That": 1, - "scalacOptions": 3, - "S": 2, - "stripped": 1, - "In": 1, - "of": 6, - "duplicated": 1, - "or": 3, - "conflicting": 1, - "order": 1, - "above": 1, - "shows": 1, - "precedence": 1, - "JAVA_OPTS": 1, - "lowest": 1, - "command": 5, - "line": 1, - "highest.": 1, - "addJava": 9, - "addSbt": 12, - "addScalac": 2, - "addResidual": 2, - "addResolver": 1, - "addDebugger": 2, - "get_jvm_opts": 2, - "process_args": 2, - "require_arg": 12, - "type": 5, - "opt": 3, - "z": 12, - "while": 3, - "gt": 1, - "shift": 28, - "integer": 1, - "inc": 1, - "port": 1, - "true": 2, - "snapshot": 1, - "launch": 1, - "scala": 3, - "home": 2, - "D*": 1, - "J*": 1, - "S*": 1, - "sbtargs": 3, - "IFS": 1, - "read": 1, - "<\"$sbt_opts_file\">": 1, - "process": 1, - "combined": 1, - "args": 2, - "reset": 1, - "residuals": 1, - "argumentCount=": 1, - "we": 1, - "were": 1, - "any": 1, - "opts": 1, - "eq": 1, - "0": 1, - "ThisBuild": 1, - "Update": 1, - "build": 2, - "properties": 1, - "disk": 5, - "explicit": 1, - "gives": 1, - "us": 1, - "choice": 1, - "Detected": 1, - "Overriding": 1, - "alert": 1, - "them": 1, - "stuff": 3, - "here": 1, - "argumentCount": 1, - "./build.sbt": 1, - "./project": 1, - "pwd": 1, - "doesn": 1, - "t": 3, - "understand": 1, - "iflast": 1, - "#residual_args": 1, - "@": 3, - "name": 1, - "foodforthought.jpg": 1, - "name##*fo": 1, - "rvm_ignore_rvmrc": 1, - "rvmrc": 3, - "rvm_rvmrc_files": 3, - "ef": 1, - "+": 1, - "GREP_OPTIONS": 1, - "source": 7, - "export": 25, - "rvm_path": 4, - "UID": 1, - "rvm_is_not_a_shell_function": 2, - "rvm_path/scripts": 1, - "rvm": 1, - "typeset": 5, - "i": 2, - "bottles": 6, - "Bash": 3, - "script": 1, - "dotfile": 1, - "does": 1, - "lot": 1, - "fun": 2, - "like": 1, - "turning": 1, - "normal": 1, - "dotfiles": 1, - "eg": 1, - ".bashrc": 1, - "into": 3, - "symlinks": 1, - "git": 16, - "pull": 3, - "away": 1, - "optionally": 1, - "moving": 1, - "files": 1, - "so": 1, - "that": 1, - "they": 1, - "can": 3, - "be": 3, - "preserved": 1, - "up": 1, - "cron": 1, - "job": 3, - "automate": 1, - "aforementioned": 1, - "and": 5, - "maybe": 1, - "some": 1, - "more": 3, - "shopt": 13, - "nocasematch": 1, - "This": 1, - "makes": 1, - "pattern": 1, - "matching": 1, - "insensitive": 1, - "POSTFIX": 1, - "URL": 1, - "PUSHURL": 1, - "overwrite": 3, - "print_help": 2, - "k": 1, - "keep": 3, - "false": 2, - "o": 3, - "continue": 1, - "mv": 1, - "rm": 2, - "ln": 1, - "config": 4, - "remote.origin.url": 1, - "remote.origin.pushurl": 1, - "crontab": 1, - ".jobs.cron": 1, - "/.bashrc": 3, - "x": 1, - "system": 1, - "rbenv": 2, - "versions": 1, - "bare": 1, - "prefix": 1, - "SHEBANG#!zsh": 2, - "##############################################################################": 16, - "#Import": 2, - "shell": 4, - "agnostic": 2, - "Zsh": 2, - "environment": 2, - "/.profile": 2, - "HISTSIZE": 2, - "#How": 2, - "many": 2, - "lines": 2, - "history": 18, - "HISTFILE": 2, - "/.zsh_history": 2, - "#Where": 2, - "save": 4, - "SAVEHIST": 2, - "#Number": 2, - "entries": 2, - "HISTDUP": 2, - "erase": 2, - "#Erase": 2, - "duplicates": 2, - "setopt": 8, - "appendhistory": 2, - "#Append": 2, - "overwriting": 2, - "sharehistory": 2, - "#Share": 2, - "across": 2, - "terminals": 2, - "incappendhistory": 2, - "#Immediately": 2, - "append": 2, - "not": 2, - "just": 2, - "when": 2, - "term": 2, - "killed": 2, - "#.": 2, - "/.dotfiles/z": 4, - "zsh/z.sh": 2, - "#function": 2, - "precmd": 2, - ".": 5, - "rupa/z.sh": 2, - "/usr/bin/clear": 2, - "PATH": 14, - "fpath": 6, - "HOME/.zsh/func": 2, - "U": 2, - "umask": 2, - "/opt/local/bin": 2, - "/opt/local/sbin": 2, - "/bin": 4, - "/usr/bin": 8, - "prompt": 2, - "endif": 2, - "dirpersiststore": 2, - "stty": 2, - "istrip": 2, - "##": 28, - "SCREENDIR": 2, - "/usr/local/bin": 6, - "/usr/local/sbin": 6, - "/usr/xpg4/bin": 4, - "/usr/sbin": 6, - "/usr/sfw/bin": 4, - "/usr/ccs/bin": 4, - "/usr/openwin/bin": 4, - "/opt/mysql/current/bin": 4, - "MANPATH": 2, - "/usr/local/man": 2, - "/usr/share/man": 2, - "Random": 2, - "ENV...": 2, - "TERM": 4, - "COLORTERM": 2, - "CLICOLOR": 2, - "anything": 2, - "actually": 2, - "DISPLAY": 2, - "pkgname": 1, - "stud": 4, - "pkgver": 1, - "pkgrel": 1, - "pkgdesc": 1, - "arch": 1, - "i686": 1, - "x86_64": 1, - "license": 1, - "depends": 1, - "libev": 1, - "openssl": 1, - "makedepends": 1, - "provides": 1, - "conflicts": 1, - "_gitroot": 1, - "https": 2, - "//github.com/bumptech/stud.git": 1, - "_gitname": 1, - "cd": 11, - "msg": 4, - "origin": 1, - "clone": 5, - "rf": 1, - "make": 6, - "package": 1, - "PREFIX": 1, - "/usr": 1, - "DESTDIR": 1, - "install": 8, - "Dm755": 1, - "init.stud": 1, - "docker": 1, - "from": 1, - "ubuntu": 1, - "maintainer": 1, - "Solomon": 1, - "Hykes": 1, - "": 1, - "run": 13, - "apt": 6, - "get": 6, - "y": 5, - "//go.googlecode.com/files/go1.1.1.linux": 1, - "amd64.tar.gz": 1, - "tar": 1, - "C": 1, - "/usr/local": 1, - "xz": 1, - "env": 4, - "/usr/local/go/bin": 2, - "/sbin": 2, - "GOPATH": 1, - "/go": 1, - "CGO_ENABLED": 1, - "/tmp": 1, - "t.go": 1, - "go": 2, - "test": 1, - "PKG": 12, - "github.com/kr/pty": 1, - "REV": 6, - "c699": 1, - "http": 3, - "//": 3, - "/go/src/": 6, - "checkout": 3, - "github.com/gorilla/context/": 1, - "d61e5": 1, - "github.com/gorilla/mux/": 1, - "b36453141c": 1, - "iptables": 1, - "/etc/apt/sources.list": 1, - "lxc": 1, - "aufs": 1, - "tools": 1, - "add": 1, - "/go/src/github.com/dotcloud/docker": 1, - "/go/src/github.com/dotcloud/docker/docker": 1, - "ldflags": 1, - "/go/bin": 1, - "cmd": 1, - "function": 6, - "ls": 6, - "Fh": 2, - "l": 8, - "long": 2, - "format...": 2, - "ll": 2, - "less": 2, - "XF": 2, - "pipe": 2, - "#CDPATH": 2, - "HISTIGNORE": 2, - "HISTCONTROL": 2, - "ignoreboth": 2, - "cdspell": 2, - "extglob": 2, - "progcomp": 2, - "complete": 82, - "X": 54, - "bunzip2": 2, - "bzcat": 2, - "bzcmp": 2, - "bzdiff": 2, - "bzegrep": 2, - "bzfgrep": 2, - "bzgrep": 2, - "unzip": 2, - "zipinfo": 2, - "compress": 2, - "znew": 2, - "gunzip": 2, - "zcmp": 2, - "zdiff": 2, - "zcat": 2, - "zegrep": 2, - "zfgrep": 2, - "zgrep": 2, - "zless": 2, - "zmore": 2, - "uncompress": 2, - "ee": 2, - "display": 2, - "xv": 2, - "qiv": 2, - "gv": 2, - "ggv": 2, - "xdvi": 2, - "dvips": 2, - "dviselect": 2, - "dvitype": 2, - "acroread": 2, - "xpdf": 2, - "makeinfo": 2, - "texi2html": 2, - "tex": 2, - "latex": 2, - "slitex": 2, - "jadetex": 2, - "pdfjadetex": 2, - "pdftex": 2, - "pdflatex": 2, - "texi2dvi": 2, - "mpg123": 2, - "mpg321": 2, - "xine": 2, - "aviplay": 2, - "realplay": 2, - "xanim": 2, - "ogg123": 2, - "gqmpeg": 2, - "freeamp": 2, - "xmms": 2, - "xfig": 2, - "timidity": 2, - "playmidi": 2, - "vi": 2, - "vim": 2, - "gvim": 2, - "rvim": 2, - "view": 2, - "rview": 2, - "rgvim": 2, - "rgview": 2, - "gview": 2, - "emacs": 2, - "wine": 2, - "bzme": 2, - "netscape": 2, - "mozilla": 2, - "lynx": 2, - "opera": 2, - "w3m": 2, - "galeon": 2, - "dillo": 2, - "elinks": 2, - "links": 2, - "u": 2, - "su": 2, - "passwd": 2, - "groups": 2, - "user": 2, - "commands": 8, - "see": 4, - "users": 2, - "A": 10, - "stopped": 4, - "P": 4, - "bg": 4, - "completes": 10, - "with": 12, - "jobs": 4, - "j": 2, - "fg": 2, - "disown": 2, - "other": 2, - "readonly": 4, - "variables": 2, - "helptopic": 2, - "helptopics": 2, - "unalias": 4, - "aliases": 2, - "binding": 2, - "bind": 4, - "readline": 2, - "bindings": 2, - "intelligent": 2, - "c": 2, - "man": 6, - "#sudo": 2, - "pushd": 2, - "rmdir": 2, - "Make": 2, - "directories": 2, - "W": 2, - "alias": 42, - "filenames": 2, - "PS1": 2, - "..": 2, - "cd..": 2, - "csh": 2, - "same": 2, - "as": 2, - "bash...": 2, - "quit": 2, - "shorter": 2, - "D": 2, - "rehash": 2, - "after": 2, - "I": 2, - "edit": 2, - "it": 2, - "pg": 2, - "patch": 2, - "sed": 2, - "awk": 2, - "diff": 2, - "find": 2, - "ps": 2, - "whoami": 2, - "ping": 2, - "histappend": 2, - "PROMPT_COMMAND": 2 - }, - "Sass": { - "blue": 7, - "#3bbfce": 2, - ";": 6, - "margin": 8, - "px": 3, - ".content_navigation": 1, - "{": 2, - "color": 4, - "}": 2, - ".border": 2, - "padding": 2, - "/": 4, - "border": 3, - "solid": 1, - ".content": 1, - "-": 3, - "navigation": 1, - "darken": 1, - "(": 1, - "%": 1, - ")": 1 - }, - "Oxygene": { - "": 1, - "DefaultTargets=": 1, - "xmlns=": 1, - "": 3, - "": 1, - "Loops": 2, - "": 1, - "": 1, - "exe": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "False": 4, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "Properties": 1, - "App.ico": 1, - "": 1, - "": 1, - "Condition=": 3, - "Release": 2, - "": 1, - "": 1, - "{": 1, - "BD89C": 1, - "-": 4, - "B610": 1, - "CEE": 1, - "CAF": 1, - "C515D88E2C94": 1, - "}": 1, - "": 1, - "": 3, - "": 1, - "DEBUG": 1, - ";": 2, - "TRACE": 1, - "": 1, - "": 2, - ".": 2, - "bin": 2, - "Debug": 1, - "": 2, - "": 1, - "True": 3, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "Project=": 1, - "": 2, - "": 5, - "Include=": 12, - "": 5, - "(": 5, - "Framework": 5, - ")": 5, - "mscorlib.dll": 1, - "": 5, - "": 5, - "System.dll": 1, - "ProgramFiles": 1, - "Reference": 1, - "Assemblies": 1, - "Microsoft": 1, - "v3.5": 1, - "System.Core.dll": 1, - "": 1, - "": 1, - "System.Data.dll": 1, - "System.Xml.dll": 1, - "": 2, - "": 4, - "": 1, - "": 1, - "": 2, - "ResXFileCodeGenerator": 1, - "": 2, - "": 1, - "": 1, - "SettingsSingleFileGenerator": 1, - "": 1, - "": 1 - }, - "ATS": { - "//": 211, - "#include": 16, - "staload": 25, - "_": 25, - "sortdef": 2, - "ftype": 13, - "type": 30, - "-": 49, - "infixr": 2, - "(": 562, - ")": 567, - "typedef": 10, - "a": 200, - "b": 26, - "": 2, - "functor": 12, - "F": 34, - "{": 142, - "}": 141, - "list0": 9, - "extern": 13, - "val": 95, - "functor_list0": 7, - "implement": 55, - "f": 22, - "lam": 20, - "xs": 82, - "list0_map": 2, - "": 14, - "": 3, - "option0": 3, - "functor_option0": 2, - "opt": 6, - "option0_map": 1, - "functor_homres": 2, - "c": 3, - "r": 25, - "x": 48, - "fun": 56, - "Yoneda_phi": 3, - "Yoneda_psi": 3, - "ftor": 9, - "fx": 8, - "m": 4, - "mf": 4, - "natrans": 3, - "G": 2, - "Yoneda_phi_nat": 2, - "Yoneda_psi_nat": 2, - "*": 2, - "datatype": 4, - "bool": 27, - "True": 7, - "|": 22, - "False": 8, - "boxed": 2, - "boolean": 2, - "bool2string": 4, - "string": 2, - "case": 9, - "+": 20, - "of": 59, - "fprint_val": 2, - "": 2, - "out": 8, - "fprint": 3, - "myboolist0": 9, - "list_t": 1, - "g0ofg1_list": 1, - "Yoneda_bool_list0": 3, - "myboolist1": 2, - "fprintln": 3, - "stdout_ref": 4, - "main0": 3, - "UN": 3, - "code": 6, - "reuse": 2, - "assume": 2, - "set_vtype": 3, - "elt": 2, - "t@ype": 2, - "List0_vt": 5, - "linset_nil": 2, - "list_vt_nil": 16, - "linset_make_nil": 2, - "linset_sing": 2, - "list_vt_cons": 17, - "linset_make_sing": 2, - "linset_is_nil": 2, - "list_vt_is_nil": 1, - "linset_isnot_nil": 2, - "list_vt_is_cons": 1, - "linset_size": 2, - "let": 34, - "n": 51, - "list_vt_length": 1, - "in": 48, - "i2sz": 4, - "end": 73, - "linset_is_member": 3, - "x0": 22, - "aux": 4, - "nat": 4, - ".": 14, - "": 3, - "list_vt": 7, - "<": 14, - "sgn": 9, - "compare_elt_elt": 4, - "if": 7, - "then": 11, - "false": 6, - "else": 7, - "true": 5, - "[": 49, - "]": 48, - "linset_copy": 2, - "list_vt_copy": 2, - "linset_free": 2, - "list_vt_free": 1, - "linset_insert": 3, - "mynode_cons": 4, - "nx": 22, - "mynode1": 6, - "xs1": 15, - "UN.castvwtp0": 8, - "List1_vt": 5, - "@list_vt_cons": 5, - "xs2": 3, - "prval": 20, - "UN.cast2void": 5, - ";": 4, - "fold@": 8, - "ins": 3, - "tail": 1, - "recursive": 1, - "&": 17, - "n1": 4, - "#": 7, - "<=>": 1, - "1": 3, - "mynode_make_elt": 4, - "ans": 2, - "is": 26, - "found": 1, - "effmask_all": 3, - "free@": 1, - "xs1_": 3, - "rem": 1, - "linset_remove": 2, - "linset_choose": 3, - "opt_some": 1, - "opt_none": 1, - "env": 11, - "linset_foreach_env": 3, - "list_vt_foreach": 1, - "fwork": 3, - "": 3, - "linset_foreach": 3, - "list_vt_foreach_env": 1, - "linset_listize": 2, - "linset_listize1": 2, - "mynode_null": 5, - "mynode": 3, - "null": 1, - "the_null_ptr": 1, - "mynode_free": 1, - "where": 6, - "nx2": 4, - "mynode_get_elt": 1, - "nx1": 7, - "UN.castvwtp1": 2, - "mynode_set_elt": 1, - "l": 3, - "__assert": 2, - "praxi": 1, - "void": 14, - "mynode_getfree_elt": 1, - "linset_takeout_ngc": 2, - "set": 34, - "takeout": 3, - "mynode0": 1, - "pf_x": 6, - "view@x": 3, - "pf_xs1": 6, - "view@xs1": 3, - "res": 9, - "linset_takeoutmax_ngc": 2, - "xs_": 4, - "@list_vt_nil": 1, - "linset_takeoutmin_ngc": 2, - "unsnoc": 4, - "pos": 1, - "": 16, - "and": 10, - "fold@xs": 1, - "CoYoneda": 7, - "CoYoneda_phi": 2, - "CoYoneda_psi": 3, - "int0": 4, - "I": 8, - "int": 2, - "int2bool": 2, - "i": 6, - "myintlist0": 2, - "g0ofg1": 1, - "list": 1, - "%": 7, - "#define": 4, - "NPHIL": 6, - "nphil": 13, - "natLt": 2, - "phil_left": 3, - "phil_right": 3, - "phil_loop": 10, - "cleaner_loop": 6, - "absvtype": 2, - "fork_vtype": 3, - "ptr": 2, - "vtypedef": 2, - "fork": 16, - "fork_get_num": 4, - "phil_dine": 3, - "lf": 5, - "rf": 5, - "phil_think": 3, - "cleaner_wash": 3, - "cleaner_return": 4, - "fork_changet": 5, - "channel": 11, - "forktray_changet": 4, - "": 1, - "html": 1, - "PUBLIC": 1, - "W3C": 1, - "DTD": 2, - "XHTML": 1, - "EN": 1, - "http": 2, - "www": 1, - "w3": 1, - "org": 1, - "TR": 1, - "xhtml11": 2, - "dtd": 1, - "": 1, - "xmlns=": 1, - "": 1, - "": 1, - "equiv=": 1, - "content=": 1, - "": 1, - "EFFECTIVATS": 1, - "DiningPhil2": 1, - "": 1, - "#patscode_style": 1, - "": 1, - "": 1, - "

": 1, - "Effective": 1, - "ATS": 2, - "Dining": 2, - "Philosophers": 2, - "

": 1, - "In": 2, - "this": 2, - "article": 2, - "present": 1, - "an": 6, - "implementation": 3, - "slight": 1, - "variant": 1, - "the": 30, - "famous": 1, - "problem": 1, - "by": 4, - "Dijkstra": 1, - "that": 8, - "makes": 1, - "simple": 1, - "but": 1, - "convincing": 1, - "use": 1, - "linear": 2, - "types.": 1, - "

": 8, - "The": 8, - "Original": 2, - "Problem": 2, - "

": 8, - "There": 3, - "are": 7, - "five": 1, - "philosophers": 1, - "sitting": 1, - "around": 1, - "table": 3, - "there": 3, - "also": 3, - "forks": 7, - "placed": 1, - "on": 8, - "such": 1, - "each": 2, - "located": 2, - "between": 1, - "left": 3, - "hand": 6, - "philosopher": 5, - "right": 3, - "another": 1, - "philosopher.": 1, - "Each": 4, - "does": 1, - "following": 6, - "routine": 1, - "repeatedly": 1, - "thinking": 1, - "dining.": 1, - "order": 1, - "to": 16, - "dine": 1, - "needs": 2, - "first": 2, - "acquire": 1, - "two": 3, - "one": 3, - "his": 4, - "side": 2, - "other": 2, - "side.": 2, - "After": 2, - "finishing": 1, - "dining": 1, - "puts": 2, - "acquired": 1, - "onto": 1, - "A": 6, - "Variant": 1, - "twist": 1, - "added": 1, - "original": 1, - "version": 1, - "

": 1, - "used": 1, - "it": 2, - "becomes": 1, - "be": 9, - "put": 1, - "tray": 2, - "for": 15, - "dirty": 2, - "forks.": 1, - "cleaner": 2, - "who": 1, - "cleans": 1, - "them": 2, - "back": 1, - "table.": 1, - "Channels": 1, - "Communication": 1, - "just": 1, - "shared": 1, - "queue": 1, - "fixed": 1, - "capacity.": 1, - "functions": 1, - "inserting": 1, - "element": 5, - "into": 3, - "taking": 1, - "given": 4, - "

": 7,
-      "class=": 6,
-      "#pats2xhtml_sats": 3,
-      "
": 7, + "for": 70, + "terms": 9, + "use.": 9, + "}": 26, + "Operation": 2, + "This": 3, + "object": 7, + "uses": 2, + "a": 72, + "capacitive": 1, + "PIN": 1, + "approach": 1, + "to": 191, + "reading": 1, + "the": 136, + "keypad.": 1, + "To": 3, + "do": 26, + "so": 11, + "ALL": 2, + "pins": 26, + "are": 18, + "made": 2, + "LOW": 2, + "and": 95, + "an": 12, + "OUTPUT": 2, + "I/O": 3, + "pins.": 1, + "Then": 1, + "set": 42, + "INPUT": 2, + "state.": 1, + "At": 1, + "this": 26, + "point": 21, + "only": 63, + "one": 4, + "pin": 18, + "is": 51, + "HIGH": 3, + "at": 26, + "time.": 2, "If": 2, - "channel_insert": 5, - "called": 2, - "full": 4, - "caller": 2, - "blocked": 3, - "until": 2, - "taken": 1, - "channel.": 2, - "channel_takeout": 4, - "empty": 1, - "inserted": 1, - "Channel": 2, - "Fork": 3, - "Forks": 1, - "resources": 1, - "type.": 1, - "initially": 1, - "stored": 2, - "which": 2, - "can": 4, - "obtained": 2, - "calling": 2, - "function": 3, - "defined": 1, - "natural": 1, - "numbers": 1, - "less": 1, - "than": 1, - "channels": 4, - "storing": 3, - "chosen": 3, - "capacity": 3, - "reason": 1, - "store": 1, - "at": 2, - "most": 1, - "guarantee": 1, - "these": 1, - "never": 2, - "so": 2, - "no": 2, - "attempt": 1, - "made": 1, - "send": 1, - "signals": 1, - "awake": 1, - "callers": 1, - "supposedly": 1, - "being": 2, - "due": 1, - "Tray": 1, - "instead": 1, - "become": 1, - "as": 4, - "only": 1, - "total": 1, - "Philosopher": 1, - "Loop": 2, - "implemented": 2, - "loop": 2, - "#pats2xhtml_dats": 3, - "It": 2, - "should": 3, - "straighforward": 2, - "follow": 2, - "Cleaner": 1, - "finds": 1, - "number": 2, - "uses": 1, - "locate": 1, - "fork.": 1, - "Its": 1, - "actual": 1, - "follows": 1, - "now": 1, - "Testing": 1, + "closed": 1, + "then": 5, + "will": 12, + "be": 46, + "read": 29, + "on": 12, + "input": 2, + "otherwise": 1, + "returned.": 1, + "The": 17, + "keypad": 4, + "decoding": 1, + "routine": 1, + "requires": 3, + "two": 6, + "subroutines": 1, + "returns": 6, "entire": 1, - "files": 1, - "DiningPhil2.sats": 1, - "DiningPhil2.dats": 1, - "DiningPhil2_fork.dats": 1, - "DiningPhil2_thread.dats": 1, - "Makefile": 1, - "available": 1, - "compiling": 1, - "source": 1, - "excutable": 1, - "testing.": 1, - "One": 1, - "able": 1, - "encounter": 1, - "deadlock": 2, - "after": 1, - "running": 1, - "simulation": 1, - "while.": 1, - "
": 1, - "size=": 1, - "This": 1, - "written": 1, - "href=": 1, - "Hongwei": 1, - "Xi": 1, - "
": 1, - "": 1, - "": 1, - "main": 1, - "fprint_filsub": 1, - "t0p": 31, - "x1": 1, - "x2": 1, - "linset_make_list": 1, - "List": 1, - "INV": 24, - "size_t": 1, - "linset_isnot_member": 1, - "linset_takeout": 1, - "endfun": 1, - "linset_takeout_opt": 1, - "Option_vt": 4, - "linset_choose_opt": 1, - "linset_takeoutmax": 1, - "linset_takeoutmax_opt": 1, - "linset_takeoutmin": 1, - "linset_takeoutmin_opt": 1, - "fprint_linset": 3, - "sep": 1, - "FILEref": 2, - "overload": 1, - "with": 1, - "vt0p": 2, - "ATS_PACKNAME": 1, - "ATS_STALOADFLAG": 1, - "static": 1, - "loading": 1, - "run": 1, - "time": 1, - "castfn": 1, - "linset2list": 1, - "local": 10, - "datavtype": 1, - "FORK": 3, - "the_forkarray": 2, - "t": 1, - "array_tabulate": 1, - "fopr": 1, - "": 2, - "ch": 7, - "UN.cast": 2, - "channel_create_exn": 2, - "": 2, - "arrayref_tabulate": 1, - "the_forktray": 2, - "nmod": 1, - "randsleep": 6, - "intGte": 1, - "ignoret": 2, - "sleep": 2, - "uInt": 1, - "rand": 1, - "mod": 1, - "println": 9, - "nl": 2, - "nr": 2, - "ch_lfork": 2, - "ch_rfork": 2, - "HX": 1, - "try": 1, - "actively": 1, - "induce": 1, - "ch_forktray": 3, - "f0": 3, - "dynload": 3, - "mythread_create_cloptr": 6, - "llam": 6, - "while": 1 - }, - "SCSS": { - "blue": 4, - "#3bbfce": 1, - ";": 7, - "margin": 4, - "px": 1, - ".content": 1, - "-": 3, - "navigation": 1, - "{": 2, - "border": 2, - "color": 3, - "darken": 1, - "(": 1, - "%": 1, - ")": 1, - "}": 2, - ".border": 1, - "padding": 1, - "/": 2 - }, - "R": { - "df.residual.mira": 1, - "<": 46, - "-": 53, - "function": 18, - "(": 219, - "object": 12, - "...": 4, - ")": 220, - "{": 58, - "fit": 2, - "analyses": 1, - "[": 23, - "]": 24, - "return": 8, - "df.residual": 2, - "}": 58, - "df.residual.lme": 1, - "fixDF": 1, - "df.residual.mer": 1, - "sum": 1, - "object@dims": 1, - "*": 2, - "c": 11, - "+": 4, - "df.residual.default": 1, - "q": 3, - "df": 3, - "if": 19, - "is.null": 8, - "mk": 2, - "try": 3, - "coef": 1, - "silent": 3, - "TRUE": 14, - "mn": 2, - "f": 9, - "fitted": 1, - "inherits": 6, - "|": 3, - "NULL": 2, - "n": 3, - "ifelse": 1, - "is.data.frame": 1, - "is.matrix": 1, - "nrow": 1, - "length": 3, - "k": 3, - "max": 1, - "##polyg": 1, - "vector": 2, - "##numpoints": 1, - "number": 1, - "##output": 1, - "output": 1, - "##": 1, - "Example": 1, - "scripts": 1, - "group": 1, - "pts": 1, - "spsample": 1, - "polyg": 1, - "numpoints": 1, - "type": 3, - "SHEBANG#!Rscript": 2, - "ParseDates": 2, - "lines": 6, - "dates": 3, - "matrix": 3, - "unlist": 2, - "strsplit": 3, - "ncol": 3, - "byrow": 3, - "days": 2, - "times": 2, - "hours": 2, - "all.days": 2, - "all.hours": 2, - "data.frame": 1, - "Day": 2, - "factor": 2, - "levels": 2, - "Hour": 2, - "Main": 2, - "system": 1, - "intern": 1, - "punchcard": 4, - "as.data.frame": 1, - "table": 1, - "ggplot2": 6, - "ggplot": 1, - "aes": 2, - "y": 1, - "x": 3, - "geom_point": 1, - "size": 1, - "Freq": 1, - "scale_size": 1, - "range": 1, - "ggsave": 1, - "filename": 1, - "plot": 7, - "width": 7, - "height": 7, - "docType": 1, - "package": 5, - "name": 10, - "scholar": 6, - "alias": 2, - "title": 1, - "source": 3, - "The": 5, - "reads": 1, - "data": 13, - "from": 5, - "url": 2, - "http": 2, - "//scholar.google.com": 1, - ".": 7, - "Dates": 1, - "and": 5, - "citation": 2, - "counts": 1, - "are": 4, - "estimated": 1, - "determined": 1, - "automatically": 1, - "by": 2, - "a": 6, - "computer": 1, - "program.": 1, - "Use": 1, - "at": 2, - "your": 1, - "own": 1, - "risk.": 1, - "description": 1, - "code": 21, - "provides": 1, - "functions": 3, - "to": 9, - "extract": 1, - "Google": 2, - "Scholar.": 1, - "There": 1, - "also": 1, - "convenience": 1, - "for": 4, - "comparing": 1, - "multiple": 1, - "scholars": 1, - "predicting": 1, - "h": 13, - "index": 1, - "scores": 1, - "based": 1, - "on": 2, - "past": 1, - "publication": 1, - "records.": 1, - "note": 1, - "A": 1, - "complementary": 1, - "set": 2, - "of": 2, - "Scholar": 1, - "can": 3, - "be": 8, - "found": 1, - "//biostat.jhsph.edu/": 1, - "jleek/code/googleCite.r": 1, - "was": 1, - "developed": 1, - "independently.": 1, - "#": 45, - "module": 25, - "available": 1, - "via": 1, - "the": 16, - "environment": 4, - "like": 1, - "it": 3, - "returns.": 1, - "@param": 2, - "an": 1, - "identifier": 1, - "specifying": 1, - "full": 1, - "path": 9, - "search": 5, - "see": 1, - "Details": 1, + "matrix": 1, + "into": 19, + "single": 2, + "WORD": 1, + "variable": 1, + "indicating": 1, + "which": 16, + "buttons": 2, + "pressed.": 1, + "Multiple": 1, + "button": 2, + "presses": 1, + "allowed": 1, + "with": 8, + "understanding": 1, + "that": 10, + "BOX": 2, + "entries": 1, + "can": 4, + "confused.": 1, + "An": 1, + "example": 3, + "entry...": 1, + "or": 43, + "#": 97, + "etc.": 1, + "where": 2, + "any": 15, + "pressed": 3, + "evaluate": 1, + "non": 3, + "as": 8, + "being": 2, "even": 1, - "attach": 11, - "is": 7, - "FALSE": 9, - "optionally": 1, - "attached": 2, - "current": 2, - "scope": 1, - "defaults": 1, - "However": 1, - "in": 8, - "interactive": 2, - "invoked": 1, + "when": 3, + "they": 2, + "not.": 1, + "There": 1, + "no": 7, + "danger": 1, + "physical": 1, + "electrical": 1, + "damage": 1, + "s": 16, + "just": 2, + "way": 1, + "sensing": 1, + "method": 2, + "happens": 1, + "work.": 1, + "Schematic": 1, + "No": 2, + "resistors": 4, + "capacitors.": 1, + "connections": 1, "directly": 1, - "terminal": 1, - "only": 1, - "i.e.": 1, - "not": 4, - "within": 1, - "modules": 4, - "import.attach": 1, - "or": 1, - "depending": 1, - "user": 1, - "s": 2, - "preference.": 1, - "attach_operators": 3, - "causes": 1, - "emph": 3, - "operators": 3, - "default": 1, - "path.": 1, - "Not": 1, - "attaching": 1, - "them": 1, - "therefore": 1, - "drastically": 1, - "limits": 1, - "usefulness.": 1, - "Modules": 1, - "searched": 1, - "options": 1, - "priority.": 1, - "directory": 1, - "always": 1, - "considered": 1, - "first.": 1, - "That": 1, - "local": 3, - "file": 4, - "./a.r": 1, - "will": 2, - "loaded.": 1, - "Module": 1, - "names": 2, - "fully": 1, - "qualified": 1, - "refer": 1, - "nested": 1, - "paths.": 1, - "See": 1, - "import": 5, - "executed": 1, - "global": 1, - "effect": 1, - "same.": 1, - "When": 1, - "used": 2, - "globally": 1, - "inside": 1, - "newly": 2, - "outside": 1, - "nor": 1, - "other": 2, - "which": 3, - "might": 1, - "loaded": 4, - "@examples": 1, - "@seealso": 3, - "reload": 3, - "@export": 2, - "substitute": 2, - "stopifnot": 3, - "missing": 1, - "&&": 2, - "module_name": 7, - "getOption": 1, - "else": 4, - "class": 4, - "module_path": 15, - "find_module": 1, - "stop": 1, - "attr": 2, - "message": 1, - "containing_modules": 3, - "module_init_files": 1, - "mapply": 1, - "do_import": 4, - "mod_ns": 5, - "as.character": 3, - "module_parent": 8, - "parent.frame": 2, - "mod_env": 7, - "exhibit_namespace": 3, - "identical": 2, - ".GlobalEnv": 2, - "environmentName": 2, - "parent.env": 4, - "export_operators": 2, - "invisible": 1, - "is_module_loaded": 1, - "get_loaded_module": 1, - "namespace": 13, - "structure": 3, - "new.env": 1, - "parent": 9, - ".BaseNamespaceEnv": 1, - "paste": 3, - "sep": 4, - "chdir": 1, - "envir": 5, - "cache_module": 1, - "exported_functions": 2, - "lsf.str": 2, - "list2env": 2, - "sapply": 2, - "get": 2, - "ops": 2, - "is_predefined": 2, - "%": 2, - "is_op": 2, - "prefix": 3, - "||": 1, - "grepl": 1, - "Filter": 1, - "op_env": 4, - "cache.": 1, - "@note": 1, - "Any": 1, - "references": 1, + "from": 21, + "Clear": 2, + "value": 51, + "ReadRow": 4, + "Shift": 3, + "left": 12, + "by": 17, + "preset": 1, + "P0": 2, + "P7": 2, + "LOWs": 1, + "dira": 3, + "[": 35, + "]": 34, + "make": 16, + "INPUTSs": 1, + "...": 5, + "now": 3, + "act": 1, + "like": 4, + "tiny": 1, + "capacitors": 1, + "outa": 2, + "n": 4, + "Pin": 1, + "OUTPUT...": 1, + "Make": 1, + ";": 2, + "charge": 10, + "+": 759, + "ina": 3, + "Pn": 1, "remain": 1, - "unchanged": 1, - "files": 1, + "discharged": 1, + "DAT": 7, + "TERMS": 9, + "OF": 49, + "USE": 19, + "MIT": 9, + "License": 9, + "Permission": 9, + "hereby": 9, + "granted": 9, + "free": 10, + "person": 9, + "obtaining": 9, + "copy": 21, + "software": 9, + "associated": 11, + "documentation": 9, + "files": 9, + "deal": 9, + "in": 53, + "Software": 28, + "without": 19, + "restriction": 9, + "including": 9, + "limitation": 9, + "rights": 9, + "use": 19, + "modify": 9, + "merge": 9, + "publish": 9, + "distribute": 9, + "sublicense": 9, + "and/or": 9, + "sell": 9, + "copies": 18, + "permit": 9, + "persons": 9, + "whom": 9, + "furnished": 9, + "subject": 9, + "following": 9, + "conditions": 9, + "above": 11, + "copyright": 9, + "notice": 18, + "permission": 9, + "shall": 9, + "included": 9, + "all": 14, + "substantial": 9, + "portions": 9, + "Software.": 9, + "THE": 59, + "SOFTWARE": 19, + "IS": 10, + "PROVIDED": 9, + "WITHOUT": 10, + "WARRANTY": 10, + "ANY": 20, + "KIND": 10, + "EXPRESS": 10, + "OR": 70, + "IMPLIED": 10, + "INCLUDING": 10, + "BUT": 10, + "NOT": 11, + "LIMITED": 10, + "TO": 10, + "WARRANTIES": 10, + "MERCHANTABILITY": 10, + "FITNESS": 10, + "FOR": 20, + "A": 21, + "PARTICULAR": 10, + "PURPOSE": 10, + "AND": 10, + "NONINFRINGEMENT.": 10, + "IN": 40, + "NO": 10, + "EVENT": 10, + "SHALL": 10, + "AUTHORS": 10, + "COPYRIGHT": 10, + "HOLDERS": 10, + "BE": 10, + "LIABLE": 10, + "CLAIM": 10, + "DAMAGES": 10, + "OTHER": 20, + "LIABILITY": 10, + "WHETHER": 10, + "AN": 10, + "ACTION": 10, + "CONTRACT": 10, + "TORT": 10, + "OTHERWISE": 10, + "ARISING": 10, + "FROM": 10, + "OUT": 10, + "CONNECTION": 10, + "WITH": 10, + "DEALINGS": 10, + "SOFTWARE.": 10, + "****************************************": 4, + "Debug_Lcd": 1, + "v1.2": 2, + "Authors": 1, + "Jon": 2, + "Williams": 2, + "Jeff": 2, + "Martin": 2, + "Inc.": 8, + "Debugging": 1, + "wrapper": 1, + "Serial_Lcd": 1, + "-": 486, + "March": 1, + "Updated": 4, + "conform": 1, + "Propeller": 3, + "initialization": 2, + "standards.": 1, + "v1.1": 8, + "April": 1, + "consistency.": 1, + "OBJ": 2, + "lcd": 2, + "number": 27, + "string": 8, + "conversion": 1, + "PUB": 63, + "init": 2, + "baud": 2, + "lines": 24, + "okay": 11, + "Initializes": 1, + "serial": 1, + "LCD": 4, + "true": 6, + "if": 53, + "parameters": 19, + "lcd.init": 1, + "finalize": 1, + "Finalizes": 1, + "frees": 6, + "floats": 1, + "lcd.finalize": 1, + "putc": 1, + "txbyte": 2, + "Send": 1, + "byte": 27, + "terminal": 4, + "lcd.putc": 1, + "str": 3, + "strAddr": 2, + "Print": 15, + "zero": 10, + "terminated": 4, + "lcd.str": 8, + "dec": 3, + "signed": 4, + "decimal": 5, + "num.dec": 1, + "decf": 1, + "width": 9, + "Prints": 2, + "space": 1, + "padded": 2, + "fixed": 1, + "field": 4, + "num.decf": 1, + "decx": 1, + "digits": 23, + "negative": 2, + "num.decx": 1, + "hex": 3, + "hexadecimal": 4, + "num.hex": 1, + "ihex": 1, + "indicated": 2, + "num.ihex": 1, + "bin": 3, + "binary": 4, + "num.bin": 1, + "ibin": 1, + "%": 162, + "num.ibin": 1, + "cls": 1, + "Clears": 2, + "moves": 1, + "cursor": 9, + "home": 4, + "position": 9, + "lcd.cls": 1, + "Moves": 2, + "lcd.home": 1, + "gotoxy": 1, + "col": 9, + "line": 33, + "col/line": 1, + "lcd.gotoxy": 1, + "clrln": 1, + "lcd.clrln": 1, + "type": 4, + "Selects": 1, + "off": 8, + "blink": 4, + "lcd.cursor": 1, + "display": 23, + "status": 15, + "Controls": 1, + "visibility": 1, + "false": 7, + "hide": 1, + "contents": 3, + "clearing": 1, + "lcd.displayOn": 1, + "else": 3, + "lcd.displayOff": 1, + "custom": 2, + "char": 2, + "chrDataAddr": 3, + "Installs": 1, + "character": 6, + "map": 1, + "address": 16, + "definition": 9, + "array": 1, + "lcd.custom": 1, + "backLight": 1, + "Enable": 1, + "disable": 7, + "backlight": 1, + "affects": 1, + "backlit": 1, + "models": 1, + "lcd.backLight": 1, + "***************************************": 12, + "Graphics": 3, + "Driver": 4, + "Chip": 7, + "Gracey": 7, + "Theory": 1, + "cog": 39, + "launched": 1, + "processes": 1, + "commands": 1, + "via": 5, + "routines.": 1, + "Points": 1, + "arcs": 1, + "sprites": 1, + "text": 9, + "polygons": 1, + "rasterized": 1, + "specified": 1, + "stretch": 1, + "memory": 2, + "serves": 1, + "generic": 1, + "bitmap": 15, + "buffer.": 1, + "displayed": 1, + "TV.SRC": 1, + "VGA.SRC": 1, + "driver.": 3, + "GRAPHICS_DEMO.SRC": 1, + "usage": 1, + "example.": 1, + "CON": 4, + "#1": 47, + "_setup": 1, + "_color": 2, + "_width": 2, + "_plot": 2, + "_line": 2, + "_arc": 2, + "_vec": 2, + "_vecarc": 2, + "_pix": 1, + "_pixarc": 1, + "_text": 2, + "_textarc": 1, + "_textmode": 2, + "_fill": 1, + "_loop": 5, + "VAR": 10, + "long": 122, + "command": 7, + "bitmap_base": 7, + "pixel": 40, + "data": 47, + "slices": 3, + "text_xs": 1, + "text_ys": 1, + "text_sp": 1, + "text_just": 1, + "font": 3, + "pointer": 14, + "same": 7, + "instances": 1, + "stop": 9, + "cognew": 4, + "@loop": 1, + "@command": 1, + "Stop": 6, + "graphics": 4, + "driver": 17, + "cogstop": 3, + "setup": 3, + "x_tiles": 9, + "y_tiles": 9, + "x_origin": 2, + "y_origin": 2, + "base_ptr": 3, + "|": 22, + "bases_ptr": 3, + "slices_ptr": 1, + "Set": 5, + "x": 112, + "tiles": 19, + "x16": 7, + "pixels": 14, + "each": 11, + "y": 80, + "relative": 2, + "center": 10, + "base": 6, + "setcommand": 13, + "write": 36, + "bases": 2, + "<<": 70, + "retain": 2, + "high": 7, + "level": 5, + "bitmap_longs": 1, + "clear": 5, + "dest_ptr": 2, + "Copy": 1, + "double": 2, + "buffered": 1, + "flicker": 5, + "destination": 1, + "color": 39, + "bit": 35, + "pattern": 2, + "code": 3, + "bits": 29, + "@colors": 2, + "&": 21, + "determine": 2, + "shape/width": 2, + "w": 8, + "F": 18, + "pixel_width": 1, + "pixel_passes": 2, + "@w": 1, + "update": 7, + "new": 6, + "repeat": 18, + "i": 24, + "p": 8, + "E": 7, + "r": 4, + "<": 14, + "colorwidth": 1, + "plot": 17, + "Plot": 3, + "@x": 6, + "Draw": 7, + "endpoint": 1, + "arc": 21, + "xr": 7, + "yr": 7, + "angle": 23, + "anglestep": 2, + "steps": 9, + "arcmode": 2, + "radii": 3, + "initial": 6, + "FFF": 3, + "..359.956": 3, + "step": 9, + "leaves": 1, + "between": 4, + "points": 2, + "vec": 1, + "vecscale": 5, + "vecangle": 5, + "vecdef_ptr": 5, + "vector": 12, + "sprite": 14, + "scale": 7, + "rotation": 3, + "Vector": 2, + "word": 212, + "length": 4, + "vecarc": 2, + "pix": 3, + "pixrot": 3, + "pixdef_ptr": 3, + "mirror": 1, + "Pixel": 1, + "justify": 4, + "draw": 5, + "textarc": 1, + "string_ptr": 6, + "justx": 2, + "justy": 3, + "it": 8, + "may": 6, + "necessary": 1, + "call": 44, + ".finish": 1, + "immediately": 1, + "afterwards": 1, + "prevent": 1, + "subsequent": 1, + "clobbering": 1, + "drawn": 1, + "@justx": 1, + "@x_scale": 1, + "get": 30, + "half": 2, + "min": 4, + "max": 6, + "pmin": 1, + "round/square": 1, + "corners": 1, + "y2": 7, + "x2": 6, + "fill": 3, + "pmax": 2, + "triangle": 3, + "sides": 1, + "polygon": 1, + "tri": 2, + "x3": 4, + "y3": 5, + "y4": 1, + "x1": 5, + "y1": 7, + "xy": 1, + "solid": 1, + "/": 27, + "finish": 2, + "Wait": 2, + "current": 3, + "insure": 2, + "safe": 1, + "manually": 1, + "manipulate": 1, + "while": 5, + "primitives": 1, + "xa0": 53, + "start": 16, + "ya1": 3, + "ya2": 1, + "ya3": 2, + "ya4": 40, + "ya5": 3, + "ya6": 21, + "ya7": 9, + "ya8": 19, + "ya9": 5, + "yaA": 18, + "yaB": 4, + "yaC": 12, + "yaD": 4, + "yaE": 1, + "yaF": 1, + "xb0": 19, + "yb1": 2, + "yb2": 1, + "yb3": 4, + "yb4": 15, + "yb5": 2, + "yb6": 7, + "yb7": 3, + "yb8": 20, + "yb9": 5, + "ybA": 8, + "ybB": 1, + "ybC": 32, + "ybD": 1, + "ybE": 1, + "ybF": 1, + "ax1": 11, + "radius": 2, + "ay2": 23, + "ay3": 6, + "ay4": 4, + "a0": 8, + "a2": 1, + "farc": 41, + "another": 7, + "arc/line": 1, + "Round": 1, + "recipes": 1, + "C": 11, + "D": 18, + "fline": 88, + "xa2": 48, + "xb2": 26, + "xa1": 8, + "xb1": 2, + "more": 90, + "xa3": 8, + "xb3": 6, + "xb4": 35, + "a9": 3, + "ax2": 30, + "ay1": 10, + "a7": 2, + "aE": 1, + "aC": 2, + ".": 2, + "aF": 4, + "aD": 3, + "aB": 2, + "xa4": 13, + "a8": 8, + "@": 1, + "a4": 3, + "B": 15, + "H": 1, + "J": 1, + "L": 5, + "N": 1, + "P": 6, + "R": 3, + "T": 5, + "aA": 5, + "V": 7, + "X": 4, + "Z": 1, + "b": 1, + "d": 2, + "f": 2, + "h": 2, + "j": 2, + "l": 2, + "t": 10, + "v": 1, + "z": 4, + "delta": 10, + "bullet": 1, + "fx": 1, + "*************************************": 2, + "org": 2, + "loop": 14, + "rdlong": 16, + "t1": 139, + "par": 20, + "wz": 21, + "arguments": 1, + "mov": 154, + "t2": 90, + "t3": 10, + "#8": 14, + "arg": 3, + "arg0": 12, + "add": 92, + "d0": 11, + "#4": 8, + "djnz": 24, + "wrlong": 6, + "dx": 20, + "dy": 15, + "arg1": 3, + "ror": 4, + "#16": 6, + "jump": 1, + "jumps": 6, + "color_": 1, + "plot_": 2, + "arc_": 2, + "vecarc_": 1, + "pixarc_": 1, + "textarc_": 2, + "fill_": 1, + "setup_": 1, + "xlongs": 4, + "xorigin": 2, + "yorigin": 4, + "arg3": 12, + "basesptr": 4, + "arg5": 6, + "jmp": 24, + "#loop": 9, + "width_": 1, + "pwidth": 3, + "passes": 3, + "#plotd": 3, + "line_": 1, + "#linepd": 2, + "arg7": 6, + "#3": 7, + "cmp": 16, + "exit": 5, + "px": 14, + "py": 11, + "mode": 7, + "if_z": 11, + "#plotp": 3, + "test": 38, + "arg4": 5, + "iterations": 1, + "vecdef": 1, + "rdword": 10, + "t7": 8, + "add/sub": 1, + "to/from": 1, + "t6": 7, + "sumc": 4, + "#multiply": 2, + "round": 1, + "up": 4, + "/2": 1, + "lsb": 1, + "shr": 24, + "t4": 7, + "if_nc": 15, + "h8000": 5, + "wc": 57, + "if_c": 37, + "xwords": 1, + "ywords": 1, + "xxxxxxxx": 2, + "save": 1, + "actual": 4, + "sy": 5, + "rdbyte": 3, + "origin": 1, + "adjust": 4, + "neg": 2, + "sub": 12, + "arg2": 7, + "sumnc": 7, + "if_nz": 18, + "yline": 1, + "sx": 4, + "#0": 20, + "next": 16, + "#2": 15, + "shl": 21, + "t5": 4, + "xpixel": 2, + "rol": 1, + "muxc": 5, + "pcolor": 5, + "color1": 2, + "color2": 2, + "@string": 1, + "#arcmod": 1, + "text_": 1, + "chr": 4, + "done": 3, + "scan": 7, + "tjz": 8, + "def": 2, + "extract": 4, + "_0001_1": 1, + "#fontb": 3, + "textsy": 2, + "starting": 1, + "_0011_0": 1, + "#11": 1, + "#arcd": 1, + "#fontxy": 1, + "advance": 2, + "textsx": 3, + "_0111_0": 1, + "setd_ret": 1, + "fontxy_ret": 1, + "ret": 17, + "fontb": 1, + "multiply": 8, + "fontb_ret": 1, + "textmode_": 1, + "textsp": 2, + "da": 1, + "db": 1, + "db2": 1, + "linechange": 1, + "lines_minus_1": 1, + "right": 9, + "fractions": 1, + "pre": 1, + "increment": 1, + "counter": 1, + "yloop": 2, + "integers": 1, + "base0": 17, + "base1": 10, + "sar": 8, + "cmps": 3, + "out": 24, + "range": 2, + "ylongs": 6, + "skip": 5, + "mins": 1, + "mask": 3, + "mask0": 8, + "#5": 2, + "ready": 10, + "count": 4, + "mask1": 6, + "bits0": 6, + "bits1": 5, + "pass": 5, + "not": 6, + "full": 3, + "longs": 15, + "deltas": 1, + "linepd": 1, + "wr": 2, + "direction": 2, + "abs": 1, + "dominant": 2, + "axis": 1, + "last": 6, + "ratio": 1, + "xloop": 1, + "linepd_ret": 1, + "plotd": 1, + "wide": 3, + "bounds": 2, + "#plotp_ret": 2, + "#7": 2, + "store": 1, + "writes": 1, + "pair": 1, + "account": 1, + "special": 1, + "case": 5, + "andn": 7, + "slice": 7, + "shift0": 1, + "colorize": 1, + "upper": 2, + "subx": 1, + "#wslice": 1, + "offset": 14, + "Get": 2, + "args": 5, + "move": 2, + "using": 1, + "first": 9, + "arg6": 1, + "arcmod_ret": 1, + "arg2/t4": 1, + "arg4/t6": 1, + "arcd": 1, + "#setd": 1, + "#polarx": 1, + "Polar": 1, + "cartesian": 1, + "polarx": 1, + "sine_90": 2, + "sine": 7, + "quadrant": 3, + "nz": 3, + "negate": 2, + "table": 9, + "sine_table": 1, + "shift": 7, + "final": 3, + "sine/cosine": 1, + "integer": 2, + "negnz": 3, + "sine_180": 1, + "shifted": 1, + "multiplier": 3, + "product": 1, + "Defined": 1, + "constants": 2, + "hFFFFFFFF": 1, + "FFFFFFFF": 1, + "fontptr": 1, + "Undefined": 2, + "temps": 1, + "res": 89, + "pointers": 2, + "slicesptr": 1, + "line/plot": 1, + "coordinates": 1, + "Inductive": 1, + "Sensor": 1, + "Demo": 1, + "Test": 2, + "Circuit": 1, + "pF": 1, + "K": 4, + "M": 1, + "FPin": 2, + "SDF": 1, + "sigma": 3, + "feedback": 2, + "SDI": 1, + "GND": 4, + "Coils": 1, + "Wire": 1, + "used": 9, + "was": 2, + "GREEN": 2, + "about": 4, + "gauge": 1, + "Coke": 3, + "Can": 3, + "form": 7, + "MHz": 16, + "BIC": 1, + "pen": 1, + "How": 1, + "does": 2, + "work": 2, + "Note": 1, + "reported": 2, + "resonate": 5, + "frequency": 18, + "LC": 8, + "frequency.": 2, + "Instead": 1, + "voltage": 5, + "produced": 1, + "circuit": 5, + "clipped.": 1, + "In": 2, + "below": 4, + "When": 1, + "you": 5, + "apply": 1, + "small": 1, + "specific": 1, + "near": 1, + "uncommon": 1, + "measure": 1, + "times": 3, + "amount": 1, + "applying": 1, + "circuit.": 1, + "through": 1, + "diode": 2, + "basically": 1, + "feeds": 1, + "divide": 3, + "divider": 1, + "...So": 1, + "order": 1, + "see": 2, + "ADC": 2, + "sweep": 2, + "result": 6, + "output": 11, + "needs": 1, + "generate": 1, + "Volts": 1, + "ground.": 1, + "drop": 1, + "across": 1, + "since": 1, + "sensitive": 1, + "works": 1, + "after": 2, + "divider.": 1, + "typical": 1, + "magnitude": 1, + "applied": 2, + "might": 1, + "look": 2, + "something": 1, + "*****": 4, + "...With": 1, + "looks": 1, + "X****": 1, + "...The": 1, + "denotes": 1, + "location": 1, + "reason": 1, + "slightly": 1, + "reasons": 1, + "really.": 1, + "lazy": 1, + "I": 1, + "didn": 1, + "acts": 1, + "dead": 1, + "short.": 1, + "situation": 1, + "exactly": 1, + "great": 1, + "gr.start": 2, + "gr.setup": 2, + "FindResonateFrequency": 1, + "DisplayInductorValue": 2, + "Freq.Synth": 1, + "FValue": 1, + "ADC.SigmaDelta": 1, + "@FTemp": 1, + "gr.clear": 1, + "gr.copy": 2, + "display_base": 2, + "Option": 2, + "Start": 6, + "*********************************************": 2, + "Frequency": 1, + "LowerFrequency": 2, + "*100/": 1, + "UpperFrequency": 1, + "gr.colorwidth": 4, + "gr.plot": 3, + "gr.line": 3, + "FTemp/1024": 1, + "Finish": 1, + "PS/2": 1, + "Keyboard": 1, + "v1.0.1": 2, + "REVISION": 2, + "HISTORY": 2, + "/15/2006": 2, + "Tool": 1, + "par_tail": 1, + "key": 4, + "buffer": 4, + "head": 1, + "par_present": 1, + "states": 1, + "par_keys": 1, + "******************************************": 2, + "entry": 1, + "movd": 10, + "#_dpin": 1, + "masks": 1, + "dmask": 4, + "_dpin": 3, + "cmask": 2, + "_cpin": 2, + "reset": 14, + "parameter": 14, + "_head": 6, + "_present/_states": 1, + "dlsb": 2, + "stat": 6, + "Update": 1, + "_head/_present/_states": 1, + "#1*4": 1, + "scancode": 2, + "state": 2, + "#receive": 1, + "AA": 1, + "extended": 1, + "if_nc_and_z": 2, + "F0": 3, + "unknown": 2, + "ignore": 2, + "#newcode": 1, + "_states": 2, + "set/clear": 1, + "#_states": 1, + "reg": 5, + "muxnc": 5, + "cmpsub": 4, + "shift/ctrl/alt/win": 1, + "pairs": 1, + "E0": 1, + "handle": 1, + "scrlock/capslock/numlock": 1, + "_000": 5, + "_locks": 5, + "#29": 1, + "change": 3, + "configure": 3, + "flag": 5, + "leds": 3, + "check": 5, + "shift1": 1, + "if_nz_and_c": 4, + "#@shift1": 1, + "@table": 1, + "#look": 1, + "alpha": 1, + "considering": 1, + "capslock": 1, + "if_nz_and_nc": 1, + "xor": 8, + "flags": 1, + "alt": 1, + "room": 1, + "valid": 2, + "enter": 1, + "FF": 3, + "#11*4": 1, + "wrword": 1, + "F3": 1, + "keyboard": 3, + "lock": 1, + "#transmit": 2, + "rev": 1, + "rcl": 2, + "_present": 2, + "#update": 1, + "Lookup": 2, + "perform": 2, + "lookup": 1, + "movs": 9, + "#table": 1, + "#27": 1, + "#rand": 1, + "Transmit": 1, + "pull": 2, + "clock": 4, + "low": 5, + "napshr": 3, + "#13": 3, + "#18": 2, + "release": 1, + "transmit_bit": 1, + "#wait_c0": 2, + "_d2": 1, + "wcond": 3, + "c1": 2, + "c0d0": 2, + "wait": 6, + "until": 3, + "#wait": 2, + "#receive_ack": 1, + "ack": 1, + "error": 1, + "#reset": 2, + "transmit_ret": 1, + "receive": 1, + "receive_bit": 1, + "pause": 1, + "us": 1, + "#nap": 1, + "_d3": 1, + "#receive_bit": 1, + "align": 1, + "isolate": 1, + "look_ret": 1, + "receive_ack_ret": 1, + "receive_ret": 1, + "wait_c0": 1, + "c0": 1, + "timeout": 1, + "ms": 4, + "wloop": 1, + "required": 4, + "_d4": 1, + "replaced": 1, + "c0/c1/c0d0/c1d1": 1, + "if_never": 1, + "replacements": 1, + "#wloop": 3, + "if_c_or_nz": 1, + "c1d1": 1, + "if_nc_or_z": 1, + "nap": 5, + "scales": 1, + "time": 7, + "snag": 1, + "cnt": 2, + "elapses": 1, + "nap_ret": 1, + "F9": 1, + "F5": 1, + "D2": 1, + "F1": 2, + "D1": 1, + "F12": 1, + "F10": 1, + "D7": 1, + "F6": 1, + "D3": 1, + "Tab": 2, + "Alt": 2, + "F3F2": 1, + "q": 1, + "Win": 2, + "Space": 2, + "Apps": 1, + "Power": 1, + "Sleep": 1, + "EF2F": 1, + "CapsLock": 1, + "Enter": 3, + "WakeUp": 1, + "BackSpace": 1, + "C5E1": 1, + "C0E4": 1, + "Home": 1, + "Insert": 1, + "C9EA": 1, + "Down": 1, + "E5": 1, + "Right": 1, + "C2E8": 1, + "Esc": 1, + "DF": 2, + "F11": 1, + "EC": 1, + "PageDn": 1, + "ED": 1, + "PrScr": 1, + "C6E9": 1, + "ScrLock": 1, + "D6": 1, + "Uninitialized": 3, + "_________": 5, + "Key": 1, + "Codes": 1, + "keypress": 1, + "keystate": 2, + "E0..FF": 1, + "AS": 1, + "TV": 9, + "May": 2, + "tile": 41, + "size": 5, + "enable": 5, + "efficient": 2, + "tv_mode": 2, + "NTSC": 11, + "lntsc": 3, + "cycles": 4, + "per": 4, + "sync": 10, + "fpal": 2, + "_433_618": 2, + "PAL": 10, + "spal": 3, + "colortable": 7, + "inside": 2, + "tvptr": 3, + "starts": 4, + "available": 4, + "@entry": 3, + "Assembly": 2, + "language": 2, + "Entry": 2, + "tasks": 6, + "#10": 2, + "Superfield": 2, + "_mode": 7, + "interlace": 20, + "vinv": 2, + "hsync": 5, + "waitvid": 3, + "burst": 2, + "sync_high2": 2, + "task": 2, + "section": 4, + "undisturbed": 2, + "black": 2, + "visible": 7, + "vb": 2, + "leftmost": 1, + "_vt": 3, + "vertical": 29, + "expand": 3, + "vert": 1, + "vscl": 12, + "hb": 2, + "horizontal": 21, + "hx": 5, + "colors": 18, + "screen": 13, + "video": 7, + "repoint": 2, + "hf": 2, + "linerot": 5, + "field1": 4, + "unless": 2, + "invisible": 8, + "if_z_eq_c": 1, + "#hsync": 1, + "vsync": 4, + "pulses": 2, + "vsync1": 2, + "#sync_low1": 1, + "hhalf": 2, + "field2": 1, + "#superfield": 1, + "Blank": 1, + "Horizontal": 1, + "pal": 2, + "toggle": 1, + "phaseflip": 4, + "phasemask": 2, + "sync_scale1": 1, + "blank": 2, + "hsync_ret": 1, + "vsync_high": 1, + "#sync_high1": 1, + "Tasks": 1, + "performed": 1, + "sections": 1, + "during": 2, + "back": 8, + "porch": 9, + "load": 3, + "#_enable": 1, + "_pins": 4, + "_enable": 2, + "#disabled": 2, + "break": 6, + "return": 15, + "later": 6, + "rd": 1, + "#wtab": 1, + "ltab": 1, + "#ltab": 1, + "CLKFREQ": 10, + "cancel": 1, + "_broadcast": 4, + "m8": 3, + "jmpret": 5, + "taskptr": 3, + "taskret": 4, + "ctra": 5, + "pll": 5, + "fcolor": 4, + "#divide": 2, + "vco": 3, + "movi": 3, + "_111": 1, + "ctrb": 4, + "limit": 4, + "m128": 2, + "_100": 1, + "within": 5, + "_001": 1, + "frqb": 2, + "swap": 2, + "broadcast/baseband": 1, + "strip": 3, + "chroma": 19, + "baseband": 18, + "_auralcog": 1, + "_hx": 4, + "consider": 2, + "lineadd": 4, + "lineinc": 3, + "/160": 2, + "loaded": 3, + "#9": 2, + "FC": 2, + "_colors": 2, + "colorreg": 3, + "d6": 3, + "colorloop": 1, + "keep": 2, + "loading": 2, + "m1": 4, + "multiply_ret": 2, + "Disabled": 2, + "try": 2, + "again": 2, + "reload": 1, + "_000_000": 6, + "d0s1": 1, + "F0F0F0F0": 1, + "pins0": 1, + "_01110000_00001111_00000111": 1, + "pins1": 1, + "_11110111_01111111_01110111": 1, + "sync_high1": 1, + "_101010_0101": 1, + "NTSC/PAL": 2, + "metrics": 1, + "tables": 1, + "wtab": 1, + "sntsc": 3, + "lpal": 3, + "hrest": 2, + "vvis": 2, + "vrep": 2, + "_8A": 1, + "_AA": 1, + "sync_scale2": 1, + "_00000000_01_10101010101010_0101": 1, + "m2": 1, + "Parameter": 4, + "/non": 4, + "tccip": 3, + "_screen": 3, + "@long": 2, + "_ht": 2, + "_ho": 2, + "fit": 2, + "contiguous": 1, + "tv_status": 4, + "off/on": 3, + "tv_pins": 5, + "ntsc/pal": 3, + "tv_screen": 5, + "tv_ht": 5, + "tv_hx": 5, + "expansion": 8, + "tv_ho": 5, + "tv_broadcast": 4, + "aural": 13, + "fm": 6, + "preceding": 2, + "copied": 2, + "your": 2, + "code.": 2, + "After": 2, + "setting": 2, + "variables": 3, + "@tv_status": 3, + "All": 2, + "reloaded": 2, + "superframe": 2, + "allowing": 2, + "live": 2, + "changes.": 2, + "minimize": 2, + "correlate": 2, + "changes": 3, + "tv_status.": 1, + "Experimentation": 2, + "optimize": 2, + "some": 3, + "parameters.": 2, + "descriptions": 2, + "sets": 3, + "indicate": 2, + "disabled": 3, + "tv_enable": 2, + "requirement": 2, + "currently": 4, + "outputting": 4, + "driven": 2, + "reduces": 2, + "power": 3, + "_______": 2, + "select": 9, + "group": 7, + "_0111": 6, + "broadcast": 19, + "_1111": 6, + "_0000": 4, + "active": 3, + "top": 10, + "nibble": 4, + "bottom": 5, + "signal": 8, + "arranged": 3, + "attach": 1, + "ohm": 10, + "resistor": 4, + "sum": 7, + "/560/1100": 2, + "subcarrier": 3, + "network": 1, + "visual": 1, + "carrier": 1, + "selects": 4, + "x32": 6, + "tileheight": 4, + "controls": 4, + "mixing": 2, + "mix": 2, + "black/white": 2, + "composite": 1, + "progressive": 2, + "less": 5, + "good": 5, + "motion": 2, + "interlaced": 5, + "doubles": 1, + "format": 1, + "ticks": 11, + "must": 18, + "least": 14, + "_318_180": 1, + "_579_545": 1, + "Hz": 5, + "_734_472": 1, + "itself": 1, + "words": 5, + "define": 10, + "tv_vt": 3, + "has": 4, + "bitfields": 2, + "colorset": 2, + "ptr": 5, + "pixelgroup": 2, + "colorset*": 2, + "pixelgroup**": 2, + "ppppppppppcccc00": 2, + "colorsets": 4, + "four": 8, + "**": 2, + "pixelgroups": 2, + "": 5, + "tv_colors": 2, + "fields": 2, + "values": 2, + "luminance": 2, + "modulation": 4, + "adds/subtracts": 1, + "beware": 1, + "modulated": 1, + "produce": 1, + "saturated": 1, + "toggling": 1, + "levels": 1, + "because": 1, + "abruptly": 1, + "rather": 1, + "against": 1, + "white": 2, + "background": 1, + "best": 1, + "appearance": 1, + "_____": 6, + "practical": 2, + "/30": 1, + "factor": 4, + "sure": 4, + "||": 5, + "than": 5, + "tv_vx": 2, + "tv_vo": 2, + "pos/neg": 4, + "centered": 2, + "image": 2, + "shifts": 4, + "right/left": 2, + "up/down": 2, + "____________": 1, + "expressed": 1, + "ie": 1, + "channel": 1, + "_250_000": 2, + "modulator": 2, + "turned": 2, + "saves": 2, + "broadcasting": 1, + "___________": 1, + "tv_auralcog": 1, + "supply": 1, + "selected": 1, + "bandwidth": 2, + "KHz": 3, + "vary": 1, + "Terminal": 1, + "instead": 1, + "minimum": 2, + "x_scale": 4, + "x_spacing": 4, + "normal": 1, + "x_chr": 2, + "y_chr": 5, + "y_scale": 3, + "y_spacing": 3, + "y_offset": 2, + "x_limit": 2, + "x_screen": 1, + "y_limit": 3, + "y_screen": 4, + "y_max": 3, + "y_screen_bytes": 2, + "y_scroll": 2, + "y_scroll_longs": 4, + "y_clear": 2, + "y_clear_longs": 2, + "paramcount": 1, + "ccinp": 1, + "tv_hc": 1, + "cells": 1, + "cell": 1, + "@bitmap": 1, + "FC0": 1, + "gr.textmode": 1, + "gr.width": 1, + "tv.stop": 2, + "gr.stop": 1, + "schemes": 1, + "tab": 3, + "gr.color": 1, + "gr.text": 1, + "@c": 1, + "gr.finish": 2, + "newline": 3, + "strsize": 2, + "_000_000_000": 2, + "//": 4, + "elseif": 2, + "lookupz": 2, + "..": 4, + "PRI": 1, + "longmove": 2, + "longfill": 2, + "tvparams": 1, + "tvparams_pins": 1, + "_0101": 1, + "vc": 1, + "vx": 2, + "vo": 1, + "auralcog": 1, + "color_schemes": 1, + "BC_6C_05_02": 1, + "E_0D_0C_0A": 1, + "E_6D_6C_6A": 1, + "BE_BD_BC_BA": 1, + "Text": 1, + "x13": 2, + "cols": 5, + "rows": 4, + "screensize": 4, + "lastrow": 2, + "tv_count": 2, + "row": 4, + "tv": 2, + "basepin": 3, + "setcolors": 2, + "@palette": 1, + "@tv_params": 1, + "@screen": 3, + "tv.start": 1, + "stringptr": 3, + "k": 1, + "Output": 1, + "backspace": 1, + "spaces": 1, + "follows": 4, + "Y": 2, + "others": 1, + "printable": 1, + "characters": 1, + "wordfill": 2, + "print": 2, + "A..": 1, + "other": 1, + "colorptr": 2, + "fore": 3, + "Override": 1, + "default": 1, + "palette": 2, + "list": 1, + "scroll": 1, + "hc": 1, + "ho": 1, + "dark": 2, + "blue": 3, + "BB": 1, + "yellow": 1, + "brown": 1, + "cyan": 3, + "red": 2, + "pink": 1, + "VGA": 8, + "vga_mode": 3, + "vgaptr": 3, + "hv": 5, + "bcolor": 3, + "#colortable": 2, + "#blank_line": 3, + "nobl": 1, + "_vx": 1, + "nobp": 1, + "nofp": 1, + "#blank_hsync": 1, + "front": 4, + "vf": 1, + "nofl": 1, + "#tasks": 1, + "before": 1, + "_vs": 2, + "except": 1, + "#blank_vsync": 1, + "#field": 1, + "superfield": 1, + "blank_vsync": 1, + "h2": 2, + "if_c_and_nz": 1, + "blank_hsync": 1, + "_hf": 1, + "invisble": 1, + "_hb": 1, + "#hv": 1, + "blank_hsync_ret": 1, + "blank_line_ret": 1, + "blank_vsync_ret": 1, + "_status": 1, + "#paramcount": 1, + "directions": 1, + "_rate": 3, + "pllmin": 1, + "_011": 1, + "rate": 6, + "hvbase": 5, + "frqa": 3, + "vmask": 1, + "hmask": 1, + "vcfg": 2, + "colormask": 1, + "waitcnt": 3, + "#entry": 1, + "Initialized": 1, + "lowest": 1, + "pllmax": 1, + "*16": 1, + "m4": 1, + "tihv": 1, + "_hd": 1, + "_hs": 1, + "_vd": 1, + "underneath": 1, + "BF": 1, + "___": 1, + "/1/2": 1, + "off/visible/invisible": 1, + "vga_enable": 3, + "pppttt": 1, + "vga_colors": 2, + "vga_vt": 6, + "vga_vx": 4, + "vga_vo": 4, + "vga_hf": 2, + "vga_hb": 2, + "vga_vf": 2, + "vga_vb": 2, + "tick": 2, + "@vga_status": 1, + "vga_status.": 1, + "__________": 4, + "vga_status": 1, + "________": 3, + "vga_pins": 1, + "monitors": 1, + "allows": 1, + "polarity": 1, + "respectively": 1, + "vga_screen": 1, + "vga_ht": 3, + "care": 1, + "suggested": 1, + "bits/pins": 3, + "green": 1, + "bit/pin": 1, + "signals": 1, + "connect": 3, + "RED": 1, + "BLUE": 1, + "connector": 3, + "always": 2, + "HSYNC": 1, + "VSYNC": 1, + "______": 14, + "vga_hx": 3, + "vga_ho": 2, + "equal": 1, + "vga_hd": 2, + "exceed": 1, + "vga_vd": 2, + "recommended": 2, + "vga_hs": 1, + "vga_vs": 1, + "vga_rate": 2, + "should": 1, + "Vocal": 2, + "Tract": 2, + "October": 1, + "synthesizes": 1, + "human": 1, + "vocal": 10, + "tract": 12, + "real": 2, + "It": 1, + "MHz.": 1, + "controlled": 1, + "reside": 1, + "parent": 1, + "aa": 2, + "ga": 5, + "gp": 2, + "vp": 3, + "vr": 1, + "f1": 4, + "f2": 1, + "f3": 3, + "f4": 2, + "na": 2, + "nf": 2, + "fa": 2, + "ff": 2, + "values.": 2, + "Before": 1, + "were": 1, + "interpolation": 1, + "shy": 1, + "frame": 12, + "makes": 1, + "behave": 1, + "sensibly": 1, + "gaps.": 1, + "frame_buffers": 2, + "bytes": 2, + "frame_longs": 3, + "frame_bytes": 1, + "...must": 1, + "dira_": 3, + "dirb_": 1, + "ctra_": 1, + "ctrb_": 3, + "frqa_": 3, + "cnt_": 1, + "many": 1, + "...contiguous": 1, + "tract_ptr": 3, + "pos_pin": 7, + "neg_pin": 6, + "fm_offset": 5, + "positive": 1, + "also": 1, + "enabled": 2, + "generation": 2, + "_500_000": 1, + "Remember": 1, + "duty": 2, + "Ready": 1, + "clkfreq": 2, + "Launch": 1, + "@attenuation": 1, + "Reset": 1, + "buffers": 1, + "@index": 1, + "constant": 3, + "frame_buffer_longs": 2, + "set_attenuation": 1, + "master": 2, + "attenuation": 3, + "initially": 2, + "set_pace": 2, + "percentage": 3, + "pace": 3, + "go": 1, + "Queue": 1, + "transition": 1, + "over": 2, + "Load": 1, + "bytemove": 1, + "@frames": 1, + "index": 5, + "Increment": 1, + "Returns": 4, + "queue": 2, + "useful": 2, + "checking": 1, "would": 1, "have": 1, - "happened": 1, - "without": 1, - "unload": 2, - "should": 2, - "production": 1, - "code.": 1, - "does": 1, - "currently": 1, - "detach": 1, - "environments.": 1, - "Reload": 1, - "given": 1, - "Remove": 1, - "cache": 1, - "forcing": 1, - "reload.": 1, - "reloaded": 1, - "reference": 1, - "unloaded": 1, - "still": 1, - "work.": 1, - "Reloading": 1, - "primarily": 1, - "useful": 1, - "testing": 1, - "during": 1, - "module_ref": 3, - "rm": 1, - "list": 1, - ".loaded_modules": 1, - "whatnot.": 1, - "assign": 1, - "hello": 2, - "print": 1, - "MedianNorm": 2, - "geomeans": 3, - "<->": 1, - "exp": 1, - "rowMeans": 1, - "log": 5, - "apply": 2, - "2": 1, - "cnts": 2, - "median": 1, - "library": 1, - "print_usage": 2, - "stderr": 1, - "cat": 1, - "spec": 2, - "opt": 23, - "getopt": 1, - "help": 1, - "stdout": 1, - "status": 1, - "out": 4, - "res": 6, - "ylim": 7, - "read.table": 1, - "header": 1, - "quote": 1, - "nsamp": 8, - "dim": 1, - "outfile": 4, - "sprintf": 2, - "png": 2, - "hist": 4, - "mids": 4, - "density": 4, - "col": 4, - "rainbow": 4, - "main": 2, - "xlab": 2, - "ylab": 2, - "i": 6, - "devnum": 2, - "dev.off": 2, - "size.factors": 2, - "data.matrix": 1, - "data.norm": 3, - "t": 1, - "/": 1 - }, - "Brightscript": { - "**": 17, - "Simple": 1, - "Grid": 2, - "Screen": 2, - "Demonstration": 1, - "App": 1, - "Copyright": 1, - "(": 32, - "c": 1, - ")": 31, - "Roku": 1, - "Inc.": 1, - "All": 3, - "Rights": 1, - "Reserved.": 1, - "************************************************************": 2, - "Sub": 2, - "Main": 1, - "set": 2, - "to": 10, - "go": 1, - "time": 1, - "get": 1, - "started": 1, - "while": 4, - "gridstyle": 7, - "<": 1, - "print": 7, - ";": 10, - "screen": 5, - "preShowGridScreen": 2, - "showGridScreen": 2, - "end": 2, - "End": 4, - "Set": 1, - "the": 17, - "configurable": 1, - "theme": 3, - "attributes": 2, - "for": 10, - "application": 1, - "Configure": 1, - "custom": 1, - "overhang": 1, - "and": 4, - "Logo": 1, - "are": 2, - "artwork": 2, - "colors": 1, - "offsets": 1, - "specific": 1, - "app": 1, - "******************************************************": 4, - "Screens": 1, - "can": 2, - "make": 1, - "slight": 1, - "adjustments": 1, - "default": 1, - "individual": 1, - "attributes.": 1, - "these": 1, - "greyscales": 1, - "theme.GridScreenBackgroundColor": 1, - "theme.GridScreenMessageColor": 1, - "theme.GridScreenRetrievingColor": 1, - "theme.GridScreenListNameColor": 1, - "used": 1, - "in": 3, - "theme.CounterTextLeft": 1, - "theme.CounterSeparator": 1, - "theme.CounterTextRight": 1, - "theme.GridScreenLogoHD": 1, - "theme.GridScreenLogoOffsetHD_X": 1, - "theme.GridScreenLogoOffsetHD_Y": 1, - "theme.GridScreenOverhangHeightHD": 1, - "theme.GridScreenLogoSD": 1, - "theme.GridScreenOverhangHeightSD": 1, - "theme.GridScreenLogoOffsetSD_X": 1, - "theme.GridScreenLogoOffsetSD_Y": 1, - "theme.GridScreenFocusBorderSD": 1, - "theme.GridScreenFocusBorderHD": 1, - "use": 1, - "your": 1, - "own": 1, - "description": 1, - "background": 1, - "theme.GridScreenDescriptionOffsetSD": 1, - "theme.GridScreenDescriptionOffsetHD": 1, - "return": 5, - "Function": 5, - "Perform": 1, - "any": 1, - "startup/initialization": 1, - "stuff": 1, - "prior": 1, - "style": 6, - "as": 2, - "string": 3, - "As": 3, - "Object": 2, - "m.port": 3, - "CreateObject": 2, - "screen.SetMessagePort": 1, - "screen.": 1, - "The": 1, - "will": 3, - "show": 1, - "retreiving": 1, - "categoryList": 4, - "getCategoryList": 1, - "[": 3, - "]": 4, - "+": 1, - "screen.setupLists": 1, - "categoryList.count": 2, - "screen.SetListNames": 1, - "StyleButtons": 3, - "getGridControlButtons": 1, - "screen.SetContentList": 2, - "i": 3, - "-": 15, - "getShowsForCategoryItem": 1, - "screen.Show": 1, - "true": 1, - "msg": 3, - "wait": 1, - "getmessageport": 1, - "does": 1, - "not": 2, - "work": 1, - "on": 1, - "gridscreen": 1, - "type": 2, - "if": 3, - "then": 3, - "msg.GetMessage": 1, - "msg.GetIndex": 3, - "msg.getData": 2, - "msg.isListItemFocused": 1, - "else": 1, - "msg.isListItemSelected": 1, - "row": 2, - "selection": 3, - "yes": 1, - "so": 2, - "we": 3, - "come": 1, - "back": 1, - "with": 2, - "new": 1, - ".Title": 1, - "endif": 1, - "**********************************************************": 1, - "this": 3, - "function": 1, - "passing": 1, - "an": 1, - "roAssociativeArray": 2, - "be": 2, - "sufficient": 1, - "springboard": 2, - "display": 2, - "add": 1, - "code": 1, - "create": 1, - "now": 1, - "do": 1, - "nothing": 1, - "Return": 1, - "list": 1, - "of": 5, - "categories": 1, - "filter": 1, - "all": 1, - "categories.": 1, - "just": 2, - "static": 1, - "data": 2, - "example.": 1, - "********************************************************************": 1, - "ContentMetaData": 1, - "objects": 1, - "shows": 1, - "category.": 1, - "For": 1, - "example": 1, - "cheat": 1, - "but": 2, - "ideally": 1, - "you": 1, - "dynamically": 1, - "content": 2, - "each": 1, - "category": 1, - "is": 1, - "dynamic": 1, - "s": 1, - "one": 3, - "small": 1, - "step": 1, - "a": 4, - "man": 1, - "giant": 1, - "leap": 1, - "mankind.": 1, - "http": 14, - "//upload.wikimedia.org/wikipedia/commons/1/1e/Apollo_11_first_step.jpg": 2, - "I": 2, - "have": 2, - "Dream": 1, - "PG": 1, - "dream": 1, - "that": 1, - "my": 1, - "four": 1, - "little": 1, - "children": 1, - "day": 1, - "live": 1, - "nation": 1, - "where": 1, - "they": 1, - "judged": 1, - "by": 2, - "color": 1, - "their": 2, - "skin": 1, - "character.": 1, - "//upload.wikimedia.org/wikipedia/commons/8/81/Martin_Luther_King_": 2, - "_March_on_Washington.jpg": 2, - "Flat": 6, - "Movie": 2, - "HD": 6, - "x2": 4, - "SD": 5, - "Netflix": 1, - "//upload.wikimedia.org/wikipedia/commons/4/43/Gold_star_on_blue.gif": 2, - "Landscape": 1, - "x3": 6, - "Channel": 1, - "Store": 1, - "//upload.wikimedia.org/wikipedia/commons/thumb/9/96/Dunkery_Hill.jpg/800px": 2, - "Dunkery_Hill.jpg": 2, - "Portrait": 1, - "x4": 1, - "posters": 3, - "//upload.wikimedia.org/wikipedia/commons/9/9f/Kane_George_Gurnett.jpg": 2, - "Square": 1, - "x1": 1, - "//upload.wikimedia.org/wikipedia/commons/thumb/d/de/SQUARE_SHAPE.svg/536px": 2, - "SQUARE_SHAPE.svg.png": 2, - "x9": 1, - "//upload.wikimedia.org/wikipedia/commons/thumb/2/22/": 2, - "%": 8, - "C3": 4, - "cran_TV_plat.svg/200px": 2, - "cran_TV_plat.svg.png": 2, - "}": 1, - "buttons": 1 - }, - "HTML": { - "": 2, - "html": 1, - "PUBLIC": 2, - "W3C": 2, - "DTD": 3, - "XHTML": 1, - "1": 1, - "0": 2, - "Transitional": 1, - "EN": 2, - "http": 3, - "www": 2, - "w3": 2, - "org": 2, - "TR": 2, - "xhtml1": 2, - "transitional": 1, - "dtd": 2, - "": 2, - "xmlns=": 1, - "": 2, - "": 1, - "equiv=": 1, - "content=": 1, - "": 2, - "Related": 2, - "Pages": 2, - "": 2, - "": 1, - "href=": 9, - "rel=": 1, - "type=": 1, - "": 1, - "": 2, - "
": 10, - "class=": 22, - "": 8, - "Main": 1, - "Page": 1, - "": 8, - "&": 3, - "middot": 3, - ";": 3, - "Class": 2, - "Overview": 2, - "Hierarchy": 1, - "All": 1, - "Classes": 1, - "
": 11, - "Here": 1, - "is": 1, - "a": 4, - "list": 1, - "of": 5, - "all": 1, - "related": 1, - "documentation": 1, - "pages": 1, - "": 1, - "": 2, - "id=": 2, - "": 4, - "": 2, - "16": 1, - "The": 2, - "Layout": 1, - "System": 1, - "
": 4, - "": 2, - "src=": 2, - "alt=": 2, - "width=": 1, - "height=": 2, - "target=": 3, - "
": 1, - "Generated": 1, - "with": 1, - "Doxygen": 1, - "": 2, - "": 2, - "HTML": 2, - "4": 1, - "Frameset": 1, - "REC": 1, - "html40": 1, - "frameset": 1, - "Common_meta": 1, - "(": 14, - ")": 14, - "Android": 5, - "API": 7, - "Differences": 2, - "Report": 2, - "Header": 1, - "

": 1, - "

": 1, - "

": 3, - "This": 1, - "document": 1, - "details": 1, - "the": 11, - "changes": 2, - "in": 4, - "framework": 2, - "API.": 3, - "It": 2, - "shows": 1, - "additions": 1, - "modifications": 1, - "and": 5, - "removals": 2, - "for": 2, - "packages": 1, - "classes": 1, - "methods": 1, - "fields.": 1, - "Each": 1, - "reference": 1, - "to": 3, - "an": 3, - "change": 2, - "includes": 1, - "brief": 1, - "description": 1, - "explanation": 1, - "suggested": 1, - "workaround": 1, - "where": 1, - "available.": 1, - "

": 3, - "differences": 2, - "described": 1, - "this": 2, - "report": 1, - "are": 3, - "based": 1, - "comparison": 1, - "APIs": 1, - "whose": 1, - "versions": 1, - "specified": 1, - "upper": 1, - "-": 1, - "right": 1, - "corner": 1, - "page.": 1, - "compares": 1, - "newer": 1, - "older": 2, - "version": 1, - "noting": 1, - "any": 1, - "relative": 1, - "So": 1, - "example": 1, - "indicated": 1, - "no": 1, - "longer": 1, - "present": 1, - "For": 1, - "more": 1, - "information": 1, - "about": 1, - "SDK": 1, - "see": 1, - "product": 1, - "site": 1, - ".": 1, - "if": 4, - "no_delta": 1, - "

": 1, - "Congratulation": 1, - "

": 1, - "No": 1, - "were": 1, - "detected": 1, - "between": 1, - "two": 1, - "provided": 1, - "APIs.": 1, - "endif": 4, - "removed_packages": 2, - "Table": 3, - "name": 3, - "rows": 3, - "{": 3, - "it.from": 1, - "ModelElementRow": 1, - "}": 3, - "
": 3, - "added_packages": 2, - "it.to": 2, - "PackageAddedLink": 1, - "SimpleTableRow": 2, - "changed_packages": 2, - "PackageChangedLink": 1 - }, - "Frege": { - "package": 2, - "examples.SwingExamples": 1, - "where": 39, - "import": 7, - "Java.Awt": 1, - "(": 339, - "ActionListener": 2, - ")": 345, - "Java.Swing": 1, - "main": 11, - "_": 60, - "do": 38, - "rs": 2, - "<": 84, - "-": 730, - "mapM": 3, - "Runnable.new": 1, - "[": 120, - "helloWorldGUI": 2, - "buttonDemoGUI": 2, - "celsiusConverterGUI": 2, - "]": 116, - "mapM_": 5, - "invokeLater": 1, - "println": 25, - "s": 21, - "getLine": 2, - "return": 17, - "tempTextField": 2, - "JTextField.new": 1, - "celsiusLabel": 1, - "JLabel.new": 3, - "convertButton": 1, - "JButton.new": 3, - "fahrenheitLabel": 1, - "frame": 3, - "JFrame.new": 3, - "frame.setDefaultCloseOperation": 3, - "JFrame.dispose_on_close": 3, - "frame.setTitle": 1, - "celsiusLabel.setText": 1, - "convertButton.setText": 1, - "let": 8, - "convertButtonActionPerformed": 2, - "celsius": 3, - "<->": 35, - "getText": 1, - "case": 6, - "double": 1, - "of": 32, - "Left": 5, - "fahrenheitLabel.setText": 3, - "+": 200, - "Right": 6, - "c": 33, - "show": 24, - "c*1.8": 1, - ".long": 1, - "ActionListener.new": 2, - "convertButton.addActionListener": 1, - "contentPane": 2, - "frame.getContentPane": 2, - "layout": 2, - "GroupLayout.new": 1, - "contentPane.setLayout": 1, - "TODO": 1, - "continue": 1, - "http": 3, - "//docs.oracle.com/javase/tutorial/displayCode.html": 1, - "code": 1, - "//docs.oracle.com/javase/tutorial/uiswing/examples/learn/CelsiusConverterProject/src/learn/CelsiusConverterGUI.java": 1, - "frame.pack": 3, - "frame.setVisible": 3, - "true": 16, - "label": 2, - "cp": 3, - "cp.add": 1, - "newContentPane": 2, - "JPanel.new": 1, - "b1": 11, - "JButton": 4, - "b1.setVerticalTextPosition": 1, - "SwingConstants.center": 2, - "b1.setHorizontalTextPosition": 1, - "SwingConstants.leading": 2, - "b2": 10, - "b2.setVerticalTextPosition": 1, - "b2.setHorizontalTextPosition": 1, - "b3": 7, - "new": 9, - "Enable": 1, - "middle": 2, - "button": 1, - "setVerticalTextPosition": 1, - "SwingConstants": 2, - "center": 1, - "setHorizontalTextPosition": 1, - "leading": 1, - "setEnabled": 7, - "false": 13, - "action1": 2, - "action3": 2, - "b1.addActionListener": 1, - "b3.addActionListener": 1, - "newContentPane.add": 3, - "newContentPane.setOpaque": 1, - "frame.setContentPane": 1, - "examples.Sudoku": 1, - "Data.TreeMap": 1, - "Tree": 4, - "keys": 2, - "Data.List": 1, - "as": 33, - "DL": 1, - "hiding": 1, - "find": 20, - "union": 10, - "type": 8, - "Element": 6, - "Int": 6, - "Zelle": 8, - "set": 4, - "candidates": 18, - "Position": 22, - "Feld": 3, - "Brett": 13, - "data": 3, - "for": 25, - "assumptions": 10, - "and": 14, - "conclusions": 2, - "Assumption": 21, - "ISNOT": 14, - "|": 62, - "IS": 16, - "derive": 2, - "Eq": 1, - "Ord": 1, - "instance": 1, - "Show": 1, - "p": 72, - "e": 15, - "pname": 10, - "e.show": 2, - "showcs": 5, - "cs": 27, - "joined": 4, - "map": 49, - "Assumption.show": 1, - "elements": 12, - "all": 22, - "possible": 2, - "..": 1, - "positions": 16, - "rowstarts": 4, - "a": 99, - "row": 20, - "is": 24, - "starting": 3, - "colstarts": 3, - "column": 2, - "boxstarts": 3, - "box": 15, - "boxmuster": 3, - "pattern": 1, - "by": 3, - "adding": 1, - "upper": 2, - "left": 4, - "position": 9, - "results": 1, - "in": 22, - "real": 1, - "extract": 2, - "field": 9, - "getf": 16, - "f": 19, - "fs": 22, - "fst": 9, - "otherwise": 8, - "cell": 24, - "getc": 12, - "b": 113, - "snd": 20, - "compute": 5, - "the": 20, - "list": 7, - "that": 18, - "belong": 3, - "to": 13, - "same": 8, - "given": 3, - "z..": 1, - "z": 12, - "quot": 1, - "*": 5, - "col": 17, - "mod": 3, - "ri": 2, - "div": 3, - "or": 15, - "depending": 1, - "on": 4, - "ci": 3, - "index": 3, - "right": 4, - "check": 2, - "if": 5, - "candidate": 10, - "has": 2, - "exactly": 2, - "one": 2, - "member": 1, - "i.e.": 1, - "been": 1, - "solved": 1, - "single": 9, - "Bool": 2, - "unsolved": 10, - "rows": 4, - "cols": 6, - "boxes": 1, - "allrows": 8, - "allcols": 5, - "allboxs": 5, - "allrcb": 5, - "zip": 7, - "repeat": 3, - "containers": 6, - "String": 9, - "PRINTING": 1, - "printable": 1, - "coordinate": 1, - "a1": 3, - "lower": 1, - "i9": 1, - "packed": 1, - "chr": 2, - "ord": 6, - "print": 25, - "board": 41, - "printb": 4, - "p1line": 2, - "pfld": 4, - "line": 2, - "brief": 1, - "no": 4, - ".": 41, - "some": 2, - "x": 45, - "zs": 1, - "initial/final": 1, - "result": 11, - "msg": 6, - "res012": 2, - "concatMap": 1, - "a*100": 1, - "b*10": 1, - "BOARD": 1, - "ALTERATION": 1, - "ACTIONS": 1, - "message": 1, - "about": 1, - "what": 1, - "done": 1, - "turnoff1": 3, - "IO": 13, - "i": 16, - "off": 11, - "nc": 7, - "head": 19, - "newb": 7, - "filter": 26, - "notElem": 7, - "turnoff": 11, - "turnoffh": 1, - "ps": 8, - "foldM": 2, - "toh": 2, - "setto": 3, - "n": 38, - "cname": 4, - "nf": 2, - "SOLVING": 1, - "STRATEGIES": 1, - "reduce": 3, - "sets": 2, - "contains": 1, - "numbers": 1, - "already": 1, - "This": 2, - "finds": 1, - "logs": 1, - "NAKED": 5, - "SINGLEs": 1, - "passing.": 1, - "sss": 3, - "each": 2, - "with": 15, - "more": 2, - "than": 2, - "fields": 6, - "are": 6, - "rcb": 16, - "elem": 16, - "collect": 1, - "remove": 3, - "from": 7, - "look": 10, - "number": 4, - "appears": 1, - "container": 9, - "this": 2, - "can": 9, - "go": 1, - "other": 2, - "place": 1, - "HIDDEN": 6, - "SINGLE": 1, - "hiddenSingle": 2, - "select": 1, - "containername": 1, - "FOR": 11, - "IN": 9, - "occurs": 5, - "length": 20, - "PAIRS": 8, - "TRIPLES": 8, - "QUADS": 2, - "nakedPair": 4, - "t": 14, - "nm": 6, - "SELECT": 3, - "pos": 5, - "tuple": 2, - "name": 2, - "//": 8, - "u": 6, - "fold": 7, - "non": 2, - "outof": 6, - "tuples": 2, - "hit": 7, - "subset": 3, - "any": 3, - "hiddenPair": 4, - "minus": 2, - "uniq": 4, - "sort": 4, - "common": 4, - "1": 2, - "bs": 7, - "undefined": 1, - "cannot": 1, - "happen": 1, - "because": 1, - "either": 1, - "empty": 4, - "not": 5, - "intersectionlist": 2, - "intersections": 2, - "reason": 8, - "reson": 1, - "cpos": 7, - "WHERE": 2, - "tail": 2, - "intersection": 1, - "we": 5, - "occurences": 1, - "but": 2, - "an": 6, - "XY": 2, - "Wing": 2, - "there": 6, - "exists": 6, - "A": 7, - "X": 5, - "Y": 4, - "B": 5, - "Z": 6, - "shares": 2, - "C": 6, - "reasoning": 1, - "will": 4, - "be": 9, - "since": 1, - "indeed": 1, - "thus": 1, - "see": 1, - "xyWing": 2, - "y": 15, - "rcba": 4, - "share": 1, - "&&": 9, - "||": 2, - "then": 1, - "else": 1, - "c1": 4, - "c2": 3, - "N": 5, - "Fish": 1, - "Swordfish": 1, - "Jellyfish": 1, - "When": 2, - "particular": 1, - "digit": 1, - "located": 2, - "only": 1, - "columns": 2, - "eliminate": 1, - "those": 2, - "which": 2, - "fish": 7, - "fishname": 5, - "rset": 4, - "take": 13, - "certain": 1, - "rflds": 2, - "rowset": 1, - "colss": 3, - "must": 4, - "appear": 1, - "at": 3, - "least": 3, - "cstart": 2, - "immediate": 1, - "consequences": 6, - "assumption": 8, - "form": 1, - "conseq": 3, - "two": 1, - "contradict": 2, - "contradicts": 7, - "get": 3, - "aPos": 5, - "List": 1, - "turned": 1, - "when": 2, - "true/false": 1, - "toClear": 7, - "whose": 1, - "implications": 5, - "themself": 1, - "chain": 2, - "paths": 12, - "solution": 6, - "reverse": 4, - "css": 7, - "yields": 1, - "contradictory": 1, - "chainContra": 2, - "pro": 7, - "contra": 4, - "ALL": 2, - "conlusions": 1, - "uniqBy": 2, - "using": 2, - "sortBy": 2, - "comparing": 2, - "conslusion": 1, - "chains": 4, - "LET": 1, - "BE": 1, - "final": 2, - "conclusion": 4, - "THE": 1, - "FIRST": 1, - "con": 3, - "implication": 2, - "ai": 2, - "so": 1, - "a0": 1, - "OR": 7, - "a2": 2, - "...": 2, - "IMPLIES": 1, - "For": 2, - "cells": 1, - "pi": 2, - "have": 1, - "construct": 2, - "p0": 1, - "p1": 1, - "c0": 1, - "cellRegionChain": 2, - "os": 3, - "cellas": 2, - "regionas": 2, - "iss": 3, - "ass": 2, - "first": 2, - "candidates@": 1, - "region": 2, - "oss": 2, - "Liste": 1, - "aller": 1, - "Annahmen": 1, - "r": 7, - "ein": 1, - "bestimmtes": 1, - "acstree": 3, - "Tree.fromList": 1, - "bypass": 1, - "maybe": 1, - "tree": 1, - "lookup": 2, - "Just": 2, - "error": 1, - "performance": 1, - "resons": 1, - "confine": 1, - "ourselves": 1, - "20": 1, - "per": 1, - "mkPaths": 3, - "acst": 3, - "impl": 2, - "{": 1, - "a3": 1, - "ordered": 1, - "impls": 2, - "ns": 2, - "concat": 1, - "takeUntil": 1, - "null": 1, - "iterate": 1, - "expandchain": 3, - "avoid": 1, - "loops": 1, - "uni": 3, - "SOLVE": 1, - "SUDOKU": 1, - "Apply": 1, - "available": 1, - "strategies": 1, - "until": 1, - "nothing": 2, - "changes": 1, - "anymore": 1, - "Strategy": 1, - "functions": 2, - "supposed": 1, - "applied": 1, - "give": 2, - "changed": 1, - "board.": 1, - "strategy": 2, - "does": 2, - "anything": 1, - "alter": 1, - "it": 2, - "returns": 2, - "next": 1, - "tried.": 1, - "solve": 19, - "res@": 16, - "apply": 17, - "res": 16, - "smallest": 1, - "comment": 16, - "SINGLES": 1, - "locked": 1, - "2": 3, - "QUADRUPELS": 6, - "3": 3, - "4": 3, - "WINGS": 1, - "FISH": 3, - "pcomment": 2, - "9": 5, - "forcing": 1, - "allow": 1, - "infer": 1, - "both": 1, - "brd": 2, - "com": 5, - "stderr": 3, - "<<": 4, - "log": 1, - "turn": 1, - "string": 3, - "into": 1, - "mkrow": 2, - "mkrow1": 2, - "xs": 4, - "make": 1, - "sure": 1, - "unpacked": 2, - "<=>": 1, - "0": 2, - "ignored": 1, - "h": 1, - "help": 1, - "usage": 1, - "java": 5, - "Sudoku": 2, - "file": 4, - "81": 3, - "char": 1, - "consisting": 1, - "digits": 2, - "One": 1, - "such": 1, - "going": 1, - "www": 1, - "sudokuoftheday": 1, - "pages": 1, - "o": 1, - "d": 3, - "php": 1, - "click": 1, - "puzzle": 1, - "open": 1, - "tab": 1, - "Copy": 1, - "URL": 2, - "address": 1, - "your": 1, - "browser": 1, - "There": 1, - "also": 1, - "hard": 1, - "sudokus": 1, - "examples": 1, - "top95": 1, - "txt": 1, - "W": 1, - "felder": 2, - "decode": 4, - "files": 2, - "forM_": 1, - "sudoku": 2, - "br": 4, - "openReader": 1, - "lines": 2, - "BufferedReader.getLines": 1, - "process": 5, - "ss": 8, - "sum": 2, - "candi": 2, - "consider": 3, - "acht": 4, - "stderr.println": 3, - "neun": 2, - "module": 2, - "examples.CommandLineClock": 1, - "Date": 5, - "native": 4, - "java.util.Date": 1, - "MutableIO": 1, - "toString": 2, - "Mutable": 1, - "ST": 1, - "d.toString": 1, - "action": 2, - "us": 1, - "current": 4, - "time": 1, - "lang": 2, - "Thread": 2, - "sleep": 4, - "takes": 1, - "long": 4, - "may": 1, - "throw": 1, - "InterruptedException": 4, - "without": 1, - "doubt": 1, - "public": 1, - "static": 1, - "void": 2, - "millis": 1, - "throws": 4, - "Encoded": 1, - "Frege": 1, - "argument": 1, - "Long": 3, - "defined": 1, - "frege": 1, - "Lang": 1, - "args": 2, - "forever": 1, - "stdout.flush": 1, - "Thread.sleep": 4, - "examples.Concurrent": 1, - "System.Random": 1, - "Java.Net": 1, - "Control.Concurrent": 1, - "main2": 1, - "m": 2, - "newEmptyMVar": 1, - "forkIO": 11, - "m.put": 3, - "replicateM_": 3, - "m.take": 1, - "example1": 1, - "putChar": 2, - "example2": 2, - "setReminder": 3, - "L*n": 1, - "table": 1, - "mainPhil": 2, - "fork1": 3, - "fork2": 3, - "fork3": 3, - "fork4": 3, - "fork5": 3, - "MVar": 3, - "5": 1, - "philosopher": 7, - "Kant": 1, - "Locke": 1, - "Wittgenstein": 1, - "Nozick": 1, - "Mises": 1, - "me": 13, - "g": 4, - "Random.newStdGen": 1, - "phil": 4, - "tT": 2, - "g1": 2, - "Random.randomR": 2, - "L": 6, - "eT": 2, - "g2": 3, - "thinkTime": 3, - "eatTime": 3, - "fl": 4, - "left.take": 1, - "rFork": 2, - "poll": 1, - "fr": 3, - "right.put": 1, - "left.put": 2, - "table.notifyAll": 2, - "Nothing": 2, - "table.wait": 1, - "inter": 3, - "catch": 2, - "getURL": 4, - "xx": 2, - "url": 1, - "URL.new": 1, - "url.openConnection": 1, - "con.connect": 1, - "con.getInputStream": 1, - "typ": 5, - "con.getContentType": 1, - "ir": 2, - "InputStreamReader.new": 2, - "fromMaybe": 1, - "charset": 2, - "unsupportedEncoding": 3, - "BufferedReader": 1, - "getLines": 1, - "InputStream": 1, - "UnsupportedEncodingException": 1, - "InputStreamReader": 1, - "x.catched": 1, - "ctyp": 2, - "charset=": 1, - "m.group": 1, - "SomeException": 2, - "Throwable": 1, - "m1": 1, - "MVar.newEmpty": 3, - "m2": 1, - "m3": 2, - "catchAll": 3, - "m1.put": 1, - "m2.put": 1, - "m3.put": 1, - "r1": 2, - "m1.take": 1, - "r2": 3, - "m2.take": 1, - "r3": 3, - "putStrLn": 2, - "x.getClass.getName": 1 - }, - "Literate Agda": { - "documentclass": 1, - "{": 35, - "article": 1, - "}": 35, - "usepackage": 7, - "amssymb": 1, - "bbm": 1, - "[": 2, - "greek": 1, - "english": 1, - "]": 2, - "babel": 1, - "ucs": 1, - "utf8x": 1, - "inputenc": 1, - "autofe": 1, - "DeclareUnicodeCharacter": 3, - "ensuremath": 3, - "ulcorner": 1, - "urcorner": 1, - "overline": 1, - "equiv": 1, - "fancyvrb": 1, - "DefineVerbatimEnvironment": 1, - "code": 3, - "Verbatim": 1, - "%": 1, - "Add": 1, - "fancy": 1, - "options": 1, - "here": 1, - "if": 1, - "you": 3, - "like.": 1, - "begin": 2, - "document": 2, - "module": 3, - "NatCat": 1, - "where": 2, - "open": 2, - "import": 2, - "Relation.Binary.PropositionalEquality": 1, - "-": 21, - "If": 1, - "can": 1, - "show": 1, - "that": 1, - "a": 1, - "relation": 1, - "only": 1, - "ever": 1, - "has": 1, - "one": 1, - "inhabitant": 5, - "get": 1, - "the": 1, - "category": 1, - "laws": 1, - "for": 1, - "free": 1, - "EasyCategory": 3, - "(": 36, - "obj": 4, - "Set": 2, - ")": 36, - "_": 6, - "x": 34, - "y": 28, - "z": 18, - "id": 9, - "single": 4, - "r": 26, - "s": 29, - "assoc": 2, - "w": 4, - "t": 6, - "Data.Nat": 1, - "same": 5, - ".0": 2, - "n": 14, - "refl": 6, - ".": 5, - "suc": 6, - "m": 6, - "cong": 1, - "trans": 5, - ".n": 1, - "zero": 1, - "Nat": 1, - "end": 2 - }, - "Lua": { - "local": 11, - "FileListParser": 5, - "pd.Class": 3, - "new": 3, - "(": 56, - ")": 56, - "register": 3, - "function": 16, - "initialize": 3, - "sel": 3, - "atoms": 3, - "-": 60, - "Base": 1, - "filename": 2, - "File": 2, - "extension": 2, - "Number": 4, - "of": 9, - "files": 1, - "in": 7, - "batch": 2, - "self.inlets": 3, - "To": 3, - "[": 17, - "list": 1, - "trim": 1, - "]": 17, - "binfile": 3, - "vidya": 1, - "file": 8, - "modder": 1, - "s": 5, - "mechanisms": 1, - "self.outlets": 3, - "self.extension": 3, - "the": 7, - "last": 1, - "self.batchlimit": 3, - "return": 3, - "true": 3, - "end": 26, - "in_1_symbol": 1, - "for": 9, - "i": 10, - "do": 8, - "self": 10, - "outlet": 10, - "{": 16, - "}": 16, - "..": 7, - "in_2_list": 1, - "d": 9, - "in_3_float": 1, - "f": 12, - "A": 1, - "simple": 1, - "counting": 1, - "object": 1, - "that": 1, - "increments": 1, - "an": 1, - "internal": 1, - "counter": 1, - "whenever": 1, - "it": 2, - "receives": 2, - "a": 5, - "bang": 3, - "at": 2, - "its": 2, - "first": 1, - "inlet": 2, - "or": 2, - "changes": 1, - "to": 8, - "whatever": 1, - "number": 3, - "second": 1, - "inlet.": 1, - "HelloCounter": 4, - "self.num": 5, - "in_1_bang": 2, - "+": 3, - "in_2_float": 2, - "FileModder": 10, - "Object": 1, - "triggering": 1, - "Incoming": 1, - "single": 1, - "data": 2, - "bytes": 3, - "from": 3, - "Total": 1, - "route": 1, - "buflength": 1, - "Glitch": 3, - "type": 2, - "point": 2, - "times": 2, - "glitch": 2, - "Toggle": 1, - "randomized": 1, - "glitches": 3, - "within": 2, - "bounds": 2, - "Active": 1, - "get": 1, - "next": 1, - "byte": 2, - "clear": 2, - "buffer": 2, - "FLOAT": 1, - "write": 3, - "Currently": 1, - "active": 2, - "namedata": 1, - "self.filedata": 4, - "pattern": 1, - "random": 3, - "splice": 1, - "self.glitchtype": 5, - "Minimum": 1, - "image": 1, - "self.glitchpoint": 6, - "repeat": 1, - "on": 1, - "given": 1, - "self.randrepeat": 5, - "Toggles": 1, - "whether": 1, - "repeating": 1, - "should": 1, - "be": 1, - "self.randtoggle": 3, - "Hold": 1, - "all": 1, - "which": 1, - "are": 1, - "converted": 1, - "ints": 1, - "range": 1, - "self.bytebuffer": 8, - "Buffer": 1, - "length": 1, - "currently": 1, - "self.buflength": 7, - "if": 2, - "then": 4, - "plen": 2, - "math.random": 8, - "patbuffer": 3, - "table.insert": 4, - "%": 1, - "#patbuffer": 1, - "elseif": 2, - "randlimit": 4, - "else": 1, - "sloc": 3, - "schunksize": 2, - "splicebuffer": 3, - "table.remove": 1, - "insertpoint": 2, - "#self.bytebuffer": 1, - "_": 2, - "v": 4, - "ipairs": 2, - "outname": 3, - "pd.post": 1, - "in_3_list": 1, - "Shift": 1, - "indexed": 2, - "in_4_list": 1, - "in_5_float": 1, - "in_6_float": 1, - "in_7_list": 1, - "in_8_list": 1 - }, - "XSLT": { - "": 1, - "version=": 2, - "": 1, - "xmlns": 1, - "xsl=": 1, - "": 1, - "match=": 1, - "": 1, - "": 1, - "

": 1, - "My": 1, - "CD": 1, - "Collection": 1, - "

": 1, - "": 1, - "border=": 1, - "": 2, - "bgcolor=": 1, - "": 2, - "Artist": 1, - "": 2, - "": 1, - "select=": 3, - "": 2, - "": 1, - "
": 2, - "Title": 1, - "
": 2, - "": 2, - "
": 1, - "": 1, - "": 1, - "
": 1, - "
": 1 - }, - "Zimpl": { - "#": 2, - "param": 1, - "columns": 2, - ";": 7, - "set": 3, - "I": 3, - "{": 2, - "..": 1, - "}": 2, - "IxI": 6, - "*": 2, - "TABU": 4, - "[": 8, - "": 3, - "in": 5, - "]": 8, - "": 2, - "with": 1, - "(": 6, - "m": 4, - "i": 8, - "or": 3, - "n": 4, - "j": 8, - ")": 6, - "and": 1, - "abs": 2, - "-": 3, - "var": 1, - "x": 4, - "binary": 1, - "maximize": 1, - "queens": 1, - "sum": 2, - "subto": 1, - "c1": 1, - "forall": 1, - "do": 1, - "card": 2 - }, - "Groovy": { - "SHEBANG#!groovy": 2, - "println": 3, - "task": 1, - "echoDirListViaAntBuilder": 1, - "(": 7, - ")": 7, - "{": 9, - "description": 1, - "//Docs": 1, - "http": 1, - "//ant.apache.org/manual/Types/fileset.html": 1, - "//Echo": 1, - "the": 3, - "Gradle": 1, - "project": 1, - "name": 1, - "via": 1, - "ant": 1, - "echo": 1, - "plugin": 1, - "ant.echo": 3, - "message": 1, - "project.name": 1, - "path": 2, - "//Gather": 1, - "list": 1, - "of": 1, - "files": 1, - "in": 1, - "a": 1, - "subdirectory": 1, - "ant.fileScanner": 1, - "fileset": 1, - "dir": 1, - "}": 9, - ".each": 1, - "//Print": 1, - "each": 1, - "file": 1, - "to": 1, - "screen": 1, - "with": 1, - "CWD": 1, - "projectDir": 1, - "removed.": 1, - "it.toString": 1, - "-": 1, - "html": 3, - "head": 2, - "component": 1, - "title": 2, - "body": 1, - "p": 1 - }, - "Ioke": { - "SHEBANG#!ioke": 1, - "println": 1 - }, - "Jade": { - "p.": 1, - "Hello": 1, - "World": 1 - }, - "TypeScript": { - "class": 3, - "Animal": 4, - "{": 9, - "constructor": 3, - "(": 18, - "public": 1, - "name": 5, - ")": 18, - "}": 9, - "move": 3, - "meters": 2, - "alert": 3, - "this.name": 1, - "+": 3, - ";": 8, - "Snake": 2, - "extends": 2, - "super": 2, - "super.move": 2, - "Horse": 2, - "var": 2, - "sam": 1, - "new": 2, - "tom": 1, - "sam.move": 1, - "tom.move": 1, - "console.log": 1 - }, - "Erlang": { - "%": 134, - "This": 2, - "is": 1, - "auto": 1, - "generated": 1, - "file.": 1, - "Please": 1, - "don": 1, - "t": 1, - "edit": 1, - "it": 2, - "-": 262, - "module": 2, - "(": 236, - "record_utils": 1, - ")": 230, - ".": 37, - "compile": 2, - "export_all": 1, - "include": 1, - "fields": 4, - "abstract_message": 21, - "[": 66, - "]": 61, - ";": 56, - "async_message": 12, - "+": 214, - "fields_atom": 4, - "lists": 11, - "flatten": 6, - "clientId": 5, - "destination": 5, - "messageId": 5, - "timestamp": 5, - "timeToLive": 5, - "headers": 5, - "body": 5, - "correlationId": 5, - "correlationIdBytes": 5, - "get": 12, - "Obj": 49, - "when": 29, - "is_record": 25, - "{": 109, - "ok": 34, - "Obj#abstract_message.body": 1, - "}": 109, - "Obj#abstract_message.clientId": 1, - "Obj#abstract_message.destination": 1, - "Obj#abstract_message.headers": 1, - "Obj#abstract_message.messageId": 1, - "Obj#abstract_message.timeToLive": 1, - "Obj#abstract_message.timestamp": 1, - "Obj#async_message.correlationId": 1, - "Obj#async_message.correlationIdBytes": 1, - "parent": 5, - "Obj#async_message.parent": 3, - "ParentProperty": 6, - "and": 8, - "is_atom": 2, - "set": 13, - "Value": 35, - "NewObj": 20, - "Obj#abstract_message": 7, - "Obj#async_message": 3, - "NewParentObject": 2, - "_": 52, - "type": 6, - "undefined.": 1, - "SHEBANG#!escript": 3, - "*": 9, - "Mode": 1, - "erlang": 5, - "coding": 1, - "utf": 1, - "tab": 1, - "width": 1, - "c": 2, - "basic": 1, - "offset": 1, - "indent": 1, - "tabs": 1, - "mode": 2, - "BSD": 1, - "LICENSE": 1, - "Copyright": 1, - "Michael": 2, - "Truog": 2, - "": 1, - "at": 1, - "gmail": 1, - "dot": 1, - "com": 1, - "All": 2, - "rights": 1, - "reserved.": 1, - "Redistribution": 1, - "use": 2, - "in": 3, + "frames": 2, + "empty": 2, + "detecting": 1, + "finished": 1, + "sample_ptr": 1, + "receives": 1, + "audio": 1, + "samples": 1, + "updated": 1, + "@sample": 1, + "aural_id": 1, + "id": 2, + "executing": 1, + "algorithm": 1, + "connecting": 1, + "Initialization": 1, + "reserved": 3, + "clear_cnt": 1, + "#2*15": 1, + "hub": 1, + "minst": 3, + "d0s0": 3, + "mult_ret": 1, + "antilog_ret": 1, + "assemble": 1, + "cordic": 4, + "reserves": 2, + "cstep": 1, + "instruction": 2, + "prepare": 1, + "cnt_value": 3, + "cnt_ticks": 3, + "Loop": 1, + "sample": 2, + "period": 1, + "cycle": 1, + "driving": 1, + "h80000000": 2, + "White": 1, + "noise": 3, "source": 2, - "binary": 2, - "forms": 1, - "with": 2, - "or": 3, - "without": 2, - "modification": 1, - "are": 3, - "permitted": 1, - "provided": 2, - "that": 1, - "the": 9, - "following": 4, - "conditions": 3, - "met": 1, - "Redistributions": 2, - "of": 9, - "code": 2, - "must": 3, - "retain": 1, - "above": 2, - "copyright": 2, - "notice": 2, - "this": 4, - "list": 2, - "disclaimer.": 1, - "form": 1, - "reproduce": 1, - "disclaimer": 1, - "documentation": 1, - "and/or": 1, - "other": 1, - "materials": 2, - "distribution.": 1, - "advertising": 1, - "mentioning": 1, - "features": 1, - "software": 3, - "display": 1, - "acknowledgment": 1, - "product": 1, - "includes": 1, - "developed": 1, - "by": 1, - "The": 1, - "name": 1, - "author": 2, - "may": 1, - "not": 1, - "be": 1, - "used": 1, - "to": 2, - "endorse": 1, - "promote": 1, - "products": 1, - "derived": 1, - "from": 1, - "specific": 1, - "prior": 1, - "written": 1, - "permission": 1, - "THIS": 2, - "SOFTWARE": 2, - "IS": 1, - "PROVIDED": 1, - "BY": 1, - "THE": 5, - "COPYRIGHT": 2, - "HOLDERS": 1, - "AND": 4, - "CONTRIBUTORS": 2, - "ANY": 4, - "EXPRESS": 1, - "OR": 8, - "IMPLIED": 2, - "WARRANTIES": 2, - "INCLUDING": 3, - "BUT": 2, - "NOT": 2, - "LIMITED": 2, - "TO": 2, - "OF": 8, - "MERCHANTABILITY": 1, - "FITNESS": 1, - "FOR": 2, - "A": 5, - "PARTICULAR": 1, - "PURPOSE": 1, - "ARE": 1, - "DISCLAIMED.": 1, - "IN": 3, - "NO": 1, - "EVENT": 1, - "SHALL": 1, - "OWNER": 1, - "BE": 1, - "LIABLE": 1, - "DIRECT": 1, - "INDIRECT": 1, - "INCIDENTAL": 1, - "SPECIAL": 1, - "EXEMPLARY": 1, - "CONSEQUENTIAL": 1, - "DAMAGES": 1, - "PROCUREMENT": 1, - "SUBSTITUTE": 1, - "GOODS": 1, - "SERVICES": 1, - "LOSS": 1, - "USE": 2, - "DATA": 1, - "PROFITS": 1, - "BUSINESS": 1, - "INTERRUPTION": 1, - "HOWEVER": 1, - "CAUSED": 1, - "ON": 1, - "THEORY": 1, - "LIABILITY": 2, - "WHETHER": 1, - "CONTRACT": 1, - "STRICT": 1, - "TORT": 1, - "NEGLIGENCE": 1, - "OTHERWISE": 1, - "ARISING": 1, - "WAY": 1, - "OUT": 1, - "EVEN": 1, - "IF": 1, - "ADVISED": 1, - "POSSIBILITY": 1, - "SUCH": 1, - "DAMAGE.": 1, - "main": 4, - "sys": 2, - "RelToolConfig": 5, - "target_dir": 2, - "TargetDir": 14, - "overlay": 2, - "OverlayConfig": 4, - "file": 6, - "consult": 1, - "Spec": 2, - "reltool": 2, - "get_target_spec": 1, - "case": 3, - "make_dir": 1, - "error": 4, - "eexist": 1, - "io": 5, - "format": 7, - "exit_code": 3, - "end": 3, - "eval_target_spec": 1, - "root_dir": 1, - "process_overlay": 2, - "shell": 3, - "Command": 3, - "Arguments": 3, - "CommandSuffix": 2, - "reverse": 4, - "os": 1, - "cmd": 1, - "io_lib": 2, - "|": 25, - "end.": 3, - "boot_rel_vsn": 2, - "Config": 2, - "_RelToolConfig": 1, - "rel": 2, - "_Name": 1, - "Ver": 1, - "proplists": 1, - "lookup": 1, - "Ver.": 1, - "minimal": 2, - "parsing": 1, - "for": 1, - "handling": 1, - "mustache": 11, - "syntax": 1, - "Body": 2, - "Context": 11, - "Result": 10, - "_Context": 1, - "KeyStr": 6, - "mustache_key": 4, - "C": 4, - "Rest": 10, - "Key": 2, - "list_to_existing_atom": 1, - "dict": 2, - "find": 1, - "support": 1, - "based": 1, - "on": 1, - "rebar": 1, - "overlays": 1, - "BootRelVsn": 2, - "OverlayVars": 2, - "from_list": 1, - "erts_vsn": 1, - "system_info": 1, - "version": 1, - "rel_vsn": 1, - "hostname": 1, - "net_adm": 1, - "localhost": 1, - "BaseDir": 7, - "get_cwd": 1, - "execute_overlay": 6, - "_Vars": 1, - "_BaseDir": 1, - "_TargetDir": 1, - "mkdir": 1, - "Out": 4, - "Vars": 7, - "OutDir": 4, - "filename": 3, - "join": 3, - "copy": 1, - "In": 2, - "InFile": 3, - "OutFile": 2, - "true": 3, - "filelib": 1, - "is_file": 1, - "ExitCode": 2, - "halt": 2, - "flush": 1, - "For": 1, - "each": 1, - "header": 1, - "scans": 1, - "thru": 1, - "all": 1, - "records": 1, - "create": 1, - "helper": 1, - "functions": 2, - "Helper": 1, - "setters": 1, - "getters": 1, - "record_helper": 1, - "export": 2, - "make/1": 1, - "make/2": 1, - "make": 3, - "HeaderFiles": 5, - "atom_to_list": 18, - "X": 12, - "||": 6, - "<->": 5, - "hrl": 1, - "relative": 1, - "current": 1, - "dir": 1, - "ModuleName": 3, - "HeaderComment": 2, - "ModuleDeclaration": 2, - "<": 1, - "Src": 10, - "format_src": 8, - "sort": 1, - "read": 2, - "generate_type_default_function": 2, - "write_file": 1, - "erl": 1, - "list_to_binary": 1, - "HeaderFile": 4, - "try": 2, - "epp": 1, - "parse_file": 1, - "Tree": 4, - "parse": 2, - "Error": 4, - "catch": 2, - "catched_error": 1, - "T": 24, - "length": 6, - "Type": 3, - "B": 4, - "NSrc": 4, - "_Type": 1, - "Type1": 2, - "parse_record": 3, - "attribute": 1, - "record": 4, - "RecordInfo": 2, - "RecordName": 41, - "RecordFields": 10, - "if": 1, - "generate_setter_getter_function": 5, - "generate_type_function": 3, - "generate_fields_function": 2, - "generate_fields_atom_function": 2, - "parse_field_name": 5, - "record_field": 9, - "atom": 9, - "FieldName": 26, - "field": 4, - "_FieldName": 2, - "ParentRecordName": 8, - "parent_field": 2, - "parse_field_name_atom": 5, - "concat": 5, - "_S": 3, - "F": 16, - "S": 6, - "concat_ext": 4, - "parse_field": 6, - "AccFields": 6, - "AccParentFields": 6, - "Field": 2, - "PField": 2, - "parse_field_atom": 4, - "zzz": 1, - "Fields": 4, - "field_atom": 1, - "to_setter_getter_function": 5, - "setter": 2, - "getter": 2, - "smp": 1, - "enable": 1, - "sname": 1, - "factorial": 1, - "mnesia": 1, - "debug": 1, - "verbose": 1, - "String": 2, - "N": 6, - "list_to_integer": 1, - "fac": 4, - "usage": 3, - "main/1": 1 + "lfsr": 1, + "lfsr_taps": 2, + "Aspiration": 1, + "vibrato": 3, + "vphase": 2, + "glottal": 2, + "pitch": 5, + "mesh": 1, + "tune": 2, + "convert": 1, + "log": 2, + "phase": 2, + "gphase": 3, + "formant2": 2, + "rotate": 2, + "f2x": 3, + "f2y": 3, + "#cordic": 2, + "formant4": 2, + "f4x": 3, + "f4y": 3, + "subtract": 1, + "nx": 4, + "negated": 1, + "nasal": 2, + "amplitude": 3, + "#mult": 1, + "fphase": 4, + "frication": 2, + "#sine": 1, + "Handle": 1, + "frame_ptr": 6, + "past": 1, + "miscellaneous": 2, + "frame_index": 3, + "stepsize": 2, + "step_size": 5, + "h00FFFFFF": 2, + "final1": 2, + "finali": 2, + "iterate": 3, + "aa..ff": 4, + "accurate": 1, + "accumulation": 1, + "step_acc": 3, + "set2": 3, + "#par_curr": 1, + "set3": 2, + "#par_next": 1, + "set4": 3, + "#par_step": 1, + "#24": 1, + "par_curr": 3, + "absolute": 1, + "msb": 2, + "nr": 1, + "mult": 2, + "par_step": 1, + "frame_cnt": 2, + "step1": 2, + "stepi": 1, + "stepframe": 1, + "#frame_bytes": 1, + "par_next": 2, + "Math": 1, + "Subroutines": 1, + "Antilog": 1, + "whole": 2, + "fraction": 1, + "antilog": 2, + "FFEA0000": 1, + "h00000FFE": 2, + "insert": 2, + "leading": 1, + "Scaled": 1, + "unsigned": 3, + "h00001000": 2, + "negc": 1, + "Multiply": 1, + "#15": 1, + "mult_step": 1, + "Cordic": 1, + "degree": 1, + "#cordic_steps": 1, + "gets": 1, + "assembled": 1, + "cordic_dx": 1, + "incremented": 1, + "cordic_a": 1, + "cordic_delta": 2, + "linear": 1, + "register": 1, + "B901476": 1, + "greater": 1, + "h40000000": 1, + "h01000000": 1, + "FFFFFF": 1, + "h00010000": 1, + "h0000D000": 1, + "D000": 1, + "h00007000": 1, + "FFE": 1, + "h00000800": 1, + "registers": 2, + "startup": 2, + "Data": 1, + "zeroed": 1, + "cleared": 1, + "f1x": 1, + "f1y": 1, + "f3x": 1, + "f3y": 1, + "aspiration": 1, + "***": 1, + "mult_steps": 1, + "assembly": 1, + "area": 1, + "w/ret": 1, + "cordic_ret": 1 }, - "ABAP": { - "*/**": 1, - "*": 56, - "The": 2, - "MIT": 2, - "License": 1, - "(": 8, - ")": 8, - "Copyright": 1, - "c": 3, - "Ren": 1, - "van": 1, - "Mil": 1, - "Permission": 1, - "is": 2, - "hereby": 1, - "granted": 1, - "free": 1, - "of": 6, - "charge": 1, - "to": 10, - "any": 1, - "person": 1, - "obtaining": 1, - "a": 1, - "copy": 2, - "this": 2, - "software": 1, - "and": 3, - "associated": 1, - "documentation": 1, - "files": 4, - "the": 10, - "deal": 1, - "in": 3, - "Software": 3, - "without": 2, - "restriction": 1, - "including": 1, - "limitation": 1, - "rights": 1, - "use": 1, - "modify": 1, - "merge": 1, - "publish": 1, - "distribute": 1, - "sublicense": 1, - "and/or": 1, - "sell": 1, - "copies": 2, - "permit": 1, - "persons": 1, - "whom": 1, - "furnished": 1, - "do": 4, - "so": 1, - "subject": 1, - "following": 1, - "conditions": 1, - "above": 1, - "copyright": 1, - "notice": 2, - "permission": 1, - "shall": 1, - "be": 1, - "included": 1, - "all": 1, - "or": 1, - "substantial": 1, - "portions": 1, - "Software.": 1, - "THE": 6, - "SOFTWARE": 2, - "IS": 1, - "PROVIDED": 1, - "WITHOUT": 1, - "WARRANTY": 1, - "OF": 4, - "ANY": 2, - "KIND": 1, - "EXPRESS": 1, - "OR": 7, - "IMPLIED": 1, - "INCLUDING": 1, - "BUT": 1, - "NOT": 1, - "LIMITED": 1, - "TO": 2, - "WARRANTIES": 1, - "MERCHANTABILITY": 1, - "FITNESS": 1, - "FOR": 2, - "A": 1, - "PARTICULAR": 1, - "PURPOSE": 1, - "AND": 1, - "NONINFRINGEMENT.": 1, - "IN": 4, - "NO": 1, - "EVENT": 1, - "SHALL": 1, - "AUTHORS": 1, - "COPYRIGHT": 1, - "HOLDERS": 1, - "BE": 1, - "LIABLE": 1, - "CLAIM": 1, - "DAMAGES": 1, - "OTHER": 2, - "LIABILITY": 1, - "WHETHER": 1, - "AN": 1, - "ACTION": 1, - "CONTRACT": 1, - "TORT": 1, - "OTHERWISE": 1, - "ARISING": 1, - "FROM": 1, - "OUT": 1, - "CONNECTION": 1, - "WITH": 1, - "USE": 1, - "DEALINGS": 1, - "SOFTWARE.": 1, - "*/": 1, - "-": 978, - "CLASS": 2, - "CL_CSV_PARSER": 6, - "DEFINITION": 2, - "class": 2, - "cl_csv_parser": 2, - "definition": 1, - "public": 3, - "inheriting": 1, - "from": 1, - "cl_object": 1, - "final": 1, - "create": 1, - ".": 9, - "section.": 3, - "not": 3, - "include": 3, - "other": 3, - "source": 3, - "here": 3, - "type": 11, - "pools": 1, - "abap": 1, - "methods": 2, - "constructor": 2, - "importing": 1, - "delegate": 1, - "ref": 1, - "if_csv_parser_delegate": 1, - "csvstring": 1, - "string": 1, - "separator": 1, - "skip_first_line": 1, - "abap_bool": 2, - "parse": 2, - "raising": 1, - "cx_csv_parse_error": 2, - "protected": 1, - "private": 1, - "constants": 1, - "_textindicator": 1, - "value": 2, - "IMPLEMENTATION": 2, - "implementation.": 1, - "": 2, - "+": 9, - "|": 7, - "Instance": 2, - "Public": 1, - "Method": 2, - "CONSTRUCTOR": 1, + "Protocol Buffer": { + "package": 1, + "tutorial": 1, + ";": 13, + "option": 2, + "java_package": 1, + "java_outer_classname": 1, + "message": 3, + "Person": 2, + "{": 4, + "required": 3, + "string": 3, + "name": 1, + "int32": 1, + "id": 1, + "optional": 2, + "email": 1, + "enum": 1, + "PhoneType": 2, + "MOBILE": 1, + "HOME": 2, + "WORK": 1, + "}": 4, + "PhoneNumber": 2, + "number": 1, + "type": 1, + "[": 1, + "default": 1, + "]": 1, + "repeated": 2, + "phone": 1, + "AddressBook": 1, + "person": 1 + }, + "PureScript": { + "module": 4, + "Control.Arrow": 1, + "where": 20, + "import": 32, + "Data.Tuple": 3, + "class": 4, + "Arrow": 5, + "a": 46, + "arr": 10, + "forall": 26, + "b": 49, + "c.": 3, + "(": 111, + "-": 88, + "c": 17, + ")": 115, + "first": 4, + "d.": 2, + "Tuple": 21, + "d": 6, + "instance": 12, + "arrowFunction": 1, + "f": 28, + "second": 3, + "Category": 3, + "swap": 4, + "b.": 1, + "x": 26, + "y": 2, + "infixr": 3, + "***": 2, + "&&": 3, + "&": 3, + ".": 2, + "g": 4, + "ArrowZero": 1, + "zeroArrow": 1, + "<+>": 2, + "ArrowPlus": 1, + "Data.Foreign": 2, + "Foreign": 12, + "..": 1, + "ForeignParser": 29, + "parseForeign": 6, + "parseJSON": 3, + "ReadForeign": 11, + "read": 10, + "prop": 3, + "Prelude": 3, + "Data.Array": 3, + "Data.Either": 1, + "Data.Maybe": 3, + "Data.Traversable": 2, + "foreign": 6, + "data": 3, + "*": 1, + "fromString": 2, + "String": 13, + "Either": 6, + "readPrimType": 5, + "a.": 6, + "readMaybeImpl": 2, + "Maybe": 5, + "readPropImpl": 2, + "showForeignImpl": 2, + "showForeign": 1, + "Prelude.Show": 1, + "show": 5, + "p": 11, + "json": 2, + "monadForeignParser": 1, + "Prelude.Monad": 1, + "return": 6, + "_": 7, + "Right": 9, + "case": 9, + "of": 9, + "Left": 8, + "err": 8, + "applicativeForeignParser": 1, + "Prelude.Applicative": 1, + "pure": 1, + "<*>": 2, + "<$>": 8, + "functorForeignParser": 1, + "Prelude.Functor": 1, + "readString": 1, + "readNumber": 1, + "Number": 1, + "readBoolean": 1, + "Boolean": 1, + "readArray": 1, "[": 5, "]": 5, - "DELEGATE": 1, - "TYPE": 5, - "REF": 1, - "IF_CSV_PARSER_DELEGATE": 1, - "CSVSTRING": 1, - "STRING": 1, - "SEPARATOR": 1, - "C": 1, - "SKIP_FIRST_LINE": 1, - "ABAP_BOOL": 1, - "": 2, - "method": 2, - "constructor.": 1, - "super": 1, - "_delegate": 1, - "delegate.": 1, - "_csvstring": 2, - "csvstring.": 1, - "_separator": 1, - "separator.": 1, - "_skip_first_line": 1, - "skip_first_line.": 1, - "endmethod.": 2, - "Get": 1, - "lines": 4, - "data": 3, - "is_first_line": 1, - "abap_true.": 2, - "standard": 2, - "table": 3, - "string.": 3, - "_lines": 1, - "field": 1, - "symbols": 1, - "": 3, - "loop": 1, - "at": 2, - "assigning": 1, - "Parse": 1, - "line": 1, - "values": 2, - "_parse_line": 2, - "Private": 1, - "_LINES": 1, - "<": 1, - "RETURNING": 1, - "STRINGTAB": 1, - "_lines.": 1, - "split": 1, - "cl_abap_char_utilities": 1, - "cr_lf": 1, - "into": 6, - "returning.": 1, - "Space": 2, - "concatenate": 4, - "csvvalue": 6, - "csvvalue.": 5, - "else.": 4, - "char": 2, - "endif.": 6, - "This": 1, - "indicates": 1, - "an": 1, - "error": 1, - "CSV": 1, - "formatting": 1, - "text_ended": 1, - "message": 2, - "e003": 1, - "csv": 1, - "msg.": 2, - "raise": 1, - "exception": 1, - "exporting": 1, - "endwhile.": 2, - "append": 2, - "csvvalues.": 2, - "clear": 1, - "pos": 2, - "endclass.": 1 - }, - "Rebol": { - "Rebol": 4, - "[": 54, - "]": 61, - "hello": 8, - "func": 5, - "print": 4, - "REBOL": 5, - "System": 1, - "Title": 2, - "Rights": 1, - "{": 8, - "Copyright": 1, - "Technologies": 2, - "is": 4, - "a": 2, - "trademark": 1, - "of": 1, - "}": 8, - "License": 2, - "Licensed": 1, - "under": 1, - "the": 3, - "Apache": 1, - "Version": 1, - "See": 1, - "http": 1, - "//www.apache.org/licenses/LICENSE": 1, - "-": 26, - "Purpose": 1, - "These": 1, - "are": 2, - "used": 3, - "to": 2, - "define": 1, - "natives": 1, - "and": 2, - "actions.": 1, - "Bind": 1, - "attributes": 1, - "for": 4, - "this": 1, - "block": 5, - "BIND_SET": 1, - "SHALLOW": 1, - ";": 19, - "Special": 1, - "as": 1, - "spec": 3, - "datatype": 2, - "test": 1, - "functions": 1, - "(": 30, - "e.g.": 1, - "time": 2, - ")": 33, - "value": 1, - "any": 1, - "type": 1, - "The": 1, - "native": 5, - "function": 3, - "must": 1, - "be": 1, - "defined": 1, - "first.": 1, - "This": 1, - "special": 1, - "boot": 1, - "created": 1, - "manually": 1, - "within": 1, - "C": 1, - "code.": 1, - "Creates": 2, - "internal": 2, - "usage": 2, - "only": 2, - ".": 4, - "no": 3, - "check": 2, - "required": 2, - "we": 2, - "know": 2, - "it": 2, - "correct": 2, - "action": 2, - "re": 20, - "s": 5, - "/i": 1, - "rejoin": 1, - "compose": 1, - "either": 1, - "i": 1, - "little": 1, - "helper": 1, - "standard": 1, - "grammar": 1, - "regex": 2, - "date": 6, - "naive": 1, - "string": 1, - "|": 22, - "S": 3, - "*": 7, - "<(?:[^^\\>": 1, - "d": 3, - "+": 6, - "/": 5, - "@": 1, - "%": 2, - "A": 3, - "F": 1, - "url": 1, - "PR_LITERAL": 10, - "string_url": 1, - "email": 1, - "string_email": 1, - "binary": 1, - "binary_base_two": 1, - "binary_base_sixty_four": 1, - "binary_base_sixteen": 1, - "re/i": 2, - "issue": 1, - "string_issue": 1, - "values": 1, - "value_date": 1, - "value_time": 1, - "tuple": 1, - "value_tuple": 1, - "pair": 1, - "value_pair": 1, - "number": 2, - "PR": 1, - "Za": 2, - "z0": 2, - "<[=>": 1, - "rebol": 1, - "red": 1, - "/system": 1, - "world": 1, - "topaz": 1, - "true": 1, - "false": 1, - "yes": 1, - "on": 1, - "off": 1, - "none": 1, - "#": 1, - "author": 1 - }, - "SuperCollider": { - "//boot": 1, - "server": 1, - "s.boot": 1, - ";": 18, - "(": 22, - "SynthDef": 1, - "{": 5, - "var": 1, - "sig": 7, - "resfreq": 3, - "Saw.ar": 1, - ")": 22, - "SinOsc.kr": 1, - "*": 3, - "+": 1, - "RLPF.ar": 1, - "Out.ar": 1, - "}": 5, - ".play": 2, - "do": 2, - "arg": 1, - "i": 1, - "Pan2.ar": 1, - "SinOsc.ar": 1, - "exprand": 1, - "LFNoise2.kr": 2, - "rrand": 2, - ".range": 2, - "**": 1, - "rand2": 1, - "a": 2, - "Env.perc": 1, - "-": 1, - "b": 1, - "a.delay": 2, - "a.test.plot": 1, - "b.test.plot": 1, - "Env": 1, - "[": 2, - "]": 2, - ".plot": 2, - "e": 1, - "Env.sine.asStream": 1, - "e.next.postln": 1, - "wait": 1, - ".fork": 1 - }, - "CoffeeScript": { - "dnsserver": 1, - "require": 21, - "exports.Server": 1, - "class": 11, - "Server": 2, - "extends": 6, - "dnsserver.Server": 1, - "NS_T_A": 3, - "NS_T_NS": 2, - "NS_T_CNAME": 1, - "NS_T_SOA": 2, - "NS_C_IN": 5, - "NS_RCODE_NXDOMAIN": 2, - "constructor": 6, - "(": 193, - "domain": 6, - "@rootAddress": 2, - ")": 196, - "-": 107, - "super": 4, - "@domain": 3, - "domain.toLowerCase": 1, - "@soa": 2, - "createSOA": 2, - "@on": 1, - "@handleRequest": 1, - "handleRequest": 1, - "req": 4, - "res": 3, - "question": 5, - "req.question": 1, - "subdomain": 10, - "@extractSubdomain": 1, - "question.name": 3, - "if": 102, - "and": 20, - "isARequest": 2, - "res.addRR": 2, - "subdomain.getAddress": 1, - "else": 53, - ".isEmpty": 1, - "isNSRequest": 2, - "true": 8, - "res.header.rcode": 1, - "res.send": 1, - "extractSubdomain": 1, - "name": 5, - "Subdomain.extract": 1, - "question.type": 2, - "is": 36, - "question.class": 2, - "mname": 2, - "rname": 2, - "serial": 2, - "parseInt": 5, - "new": 12, - "Date": 1, - ".getTime": 1, - "/": 44, - "refresh": 2, - "retry": 2, - "expire": 2, - "minimum": 2, - "dnsserver.createSOA": 1, - "exports.createServer": 1, - "address": 4, - "exports.Subdomain": 1, - "Subdomain": 4, - "@extract": 1, - "return": 29, - "unless": 19, - "name.toLowerCase": 1, - "offset": 4, - "name.length": 1, - "domain.length": 1, - "name.slice": 2, - "then": 24, - "null": 15, - "@for": 2, - "IPAddressSubdomain.pattern.test": 1, - "IPAddressSubdomain": 2, - "EncodedSubdomain.pattern.test": 1, - "EncodedSubdomain": 2, - "@subdomain": 1, - "@address": 2, - "@labels": 2, - ".split": 1, - "[": 134, - "]": 134, - "@length": 3, - "@labels.length": 1, - "isEmpty": 1, - "getAddress": 3, - "@pattern": 2, - "///": 12, - "|": 21, - ".": 13, - "{": 31, - "}": 34, - "@labels.slice": 1, - ".join": 2, - "a": 2, - "z0": 2, - "decode": 2, - "exports.encode": 1, - "encode": 1, - "ip": 2, - "value": 25, - "for": 14, - "byte": 2, - "index": 4, - "in": 32, - "ip.split": 1, - "+": 31, - "<<": 1, - "*": 21, - ".toString": 3, - "PATTERN": 1, - "exports.decode": 1, - "string": 9, - "PATTERN.test": 1, - "i": 8, - "ip.push": 1, - "&": 4, - "xFF": 1, - "ip.join": 1, - "#": 35, - "fs": 2, - "path": 3, - "Lexer": 3, - "RESERVED": 3, - "parser": 1, - "vm": 1, - "require.extensions": 3, - "module": 1, - "filename": 6, - "content": 4, - "compile": 5, - "fs.readFileSync": 1, - "module._compile": 1, - "require.registerExtension": 2, - "exports.VERSION": 1, - "exports.RESERVED": 1, - "exports.helpers": 2, - "exports.compile": 1, - "code": 20, - "options": 16, - "merge": 1, - "try": 3, - "js": 5, - "parser.parse": 3, - "lexer.tokenize": 3, - ".compile": 1, - "options.header": 1, - "catch": 2, - "err": 20, - "err.message": 2, - "options.filename": 5, - "throw": 3, - "header": 1, - "exports.tokens": 1, - "exports.nodes": 1, - "source": 5, - "typeof": 2, - "exports.run": 1, - "mainModule": 1, - "require.main": 1, - "mainModule.filename": 4, - "process.argv": 1, - "fs.realpathSync": 2, - "mainModule.moduleCache": 1, - "mainModule.paths": 1, - "._nodeModulePaths": 1, - "path.dirname": 2, - "path.extname": 1, - "isnt": 7, - "or": 22, - "mainModule._compile": 2, - "exports.eval": 1, - "code.trim": 1, - "Script": 2, - "vm.Script": 1, - "options.sandbox": 4, - "instanceof": 2, - "Script.createContext": 2, - ".constructor": 1, - "sandbox": 8, - "k": 4, - "v": 4, - "own": 2, - "of": 7, - "sandbox.global": 1, - "sandbox.root": 1, - "sandbox.GLOBAL": 1, - "global": 3, - "sandbox.__filename": 3, - "||": 3, - "sandbox.__dirname": 1, - "sandbox.module": 2, - "sandbox.require": 2, - "Module": 2, - "_module": 3, - "options.modulename": 1, - "_require": 2, - "Module._load": 1, - "_module.filename": 1, - "r": 4, - "Object.getOwnPropertyNames": 1, - "when": 16, - "_require.paths": 1, - "_module.paths": 1, - "Module._nodeModulePaths": 1, - "process.cwd": 1, - "_require.resolve": 1, - "request": 2, - "Module._resolveFilename": 1, - "o": 4, - "o.bare": 1, - "on": 3, - "ensure": 1, - "vm.runInThisContext": 1, - "vm.runInContext": 1, - "lexer": 1, - "parser.lexer": 1, - "lex": 1, - "tag": 33, - "@yytext": 1, - "@yylineno": 1, - "@tokens": 7, - "@pos": 2, - "setInput": 1, - "upcomingInput": 1, - "parser.yy": 1, - "number": 13, - "opposite": 2, - "square": 4, - "x": 6, - "list": 2, - "math": 1, - "root": 1, - "Math.sqrt": 1, - "cube": 1, - "race": 1, - "winner": 2, - "runners...": 1, - "print": 1, - "runners": 1, - "alert": 4, - "elvis": 1, - "cubes": 1, - "math.cube": 1, - "num": 2, - "async": 1, - "nack": 1, - "bufferLines": 3, - "pause": 2, - "sourceScriptEnv": 3, - "join": 8, - "exists": 5, - "basename": 2, - "resolve": 2, - "module.exports": 1, - "RackApplication": 1, - "@configuration": 1, - "@root": 8, - "@firstHost": 1, - "@logger": 1, - "@configuration.getLogger": 1, - "@readyCallbacks": 3, - "@quitCallbacks": 3, - "@statCallbacks": 3, - "ready": 1, - "callback": 35, - "@state": 11, - "@readyCallbacks.push": 1, - "@initialize": 2, - "quit": 1, - "@quitCallbacks.push": 1, - "@terminate": 2, - "queryRestartFile": 1, - "fs.stat": 1, - "stats": 1, - "@mtime": 5, - "false": 4, - "lastMtime": 2, - "stats.mtime.getTime": 1, - "setPoolRunOnceFlag": 1, - "@statCallbacks.length": 1, - "alwaysRestart": 2, - "@pool.runOnce": 1, - "statCallback": 2, - "@statCallbacks.push": 1, - "loadScriptEnvironment": 1, - "env": 18, - "async.reduce": 1, - "script": 7, - "scriptExists": 2, - "loadRvmEnvironment": 1, - "rvmrcExists": 2, - "rvm": 1, - "@configuration.rvmPath": 1, - "rvmExists": 2, - "libexecPath": 1, - "before": 2, - ".trim": 1, - "loadEnvironment": 1, - "@queryRestartFile": 2, - "@loadScriptEnvironment": 1, - "@configuration.env": 1, - "@loadRvmEnvironment": 1, - "initialize": 1, - "@quit": 3, - "@loadEnvironment": 1, - "@logger.error": 3, - "@pool": 2, - "nack.createPool": 1, - "size": 1, - ".POW_WORKERS": 1, - "@configuration.workers": 1, - "idle": 1, - ".POW_TIMEOUT": 1, - "@configuration.timeout": 1, - "@pool.stdout": 1, - "line": 6, - "@logger.info": 1, - "@pool.stderr": 1, - "@logger.warning": 1, - "@pool.on": 2, - "process": 2, - "@logger.debug": 2, - "readyCallback": 2, - "terminate": 1, - "@ready": 3, - "@pool.quit": 1, - "quitCallback": 2, - "handle": 1, - "next": 3, - "resume": 2, - "@setPoolRunOnceFlag": 1, - "@restartIfNecessary": 1, - "req.proxyMetaVariables": 1, - "SERVER_PORT": 1, - "@configuration.dstPort.toString": 1, - "@pool.proxy": 1, - "finally": 2, - "restart": 1, - "restartIfNecessary": 1, - "mtimeChanged": 2, - "@restart": 1, - "writeRvmBoilerplate": 1, - "powrc": 3, - "boilerplate": 2, - "@constructor.rvmBoilerplate": 1, - "fs.readFile": 1, - "contents": 2, - "contents.indexOf": 1, - "fs.writeFile": 1, - "@rvmBoilerplate": 1, - "CoffeeScript": 1, - "CoffeeScript.require": 1, - "CoffeeScript.eval": 1, - "options.bare": 2, - "eval": 2, - "CoffeeScript.compile": 2, - "CoffeeScript.run": 3, - "Function": 1, - "window": 1, - "CoffeeScript.load": 2, - "url": 2, - "xhr": 2, - "window.ActiveXObject": 1, - "XMLHttpRequest": 1, - "xhr.open": 1, - "xhr.overrideMimeType": 1, - "xhr.onreadystatechange": 1, - "xhr.readyState": 1, - "xhr.status": 1, - "xhr.responseText": 1, - "Error": 1, - "xhr.send": 1, - "runScripts": 3, - "scripts": 2, - "document.getElementsByTagName": 1, - "coffees": 2, - "s": 10, - "s.type": 1, - "length": 4, - "coffees.length": 1, - "do": 2, - "execute": 3, - ".type": 1, - "script.src": 2, - "script.innerHTML": 1, - "window.addEventListener": 1, - "addEventListener": 1, - "no": 3, - "attachEvent": 1, - "Rewriter": 2, - "INVERSES": 2, - "count": 5, - "starts": 1, - "compact": 1, - "last": 3, - "exports.Lexer": 1, - "tokenize": 1, - "opts": 1, - "WHITESPACE.test": 1, - "code.replace": 1, - "r/g": 1, - ".replace": 3, - "TRAILING_SPACES": 2, - "@code": 1, - "The": 7, - "remainder": 1, - "the": 4, - "code.": 1, - "@line": 4, - "opts.line": 1, - "current": 5, - "line.": 1, - "@indent": 3, - "indentation": 3, - "level.": 3, - "@indebt": 1, - "over": 1, - "at": 2, - "@outdebt": 1, - "under": 1, - "outdentation": 1, - "@indents": 1, - "stack": 4, - "all": 1, - "levels.": 1, - "@ends": 1, - "pairing": 1, - "up": 1, - "tokens.": 1, - "Stream": 1, - "parsed": 1, - "tokens": 5, - "form": 1, - "while": 4, - "@chunk": 9, - "i..": 1, - "@identifierToken": 1, - "@commentToken": 1, - "@whitespaceToken": 1, - "@lineToken": 1, - "@heredocToken": 1, - "@stringToken": 1, - "@numberToken": 1, - "@regexToken": 1, - "@jsToken": 1, - "@literalToken": 1, - "@closeIndentation": 1, - "@error": 10, - "@ends.pop": 1, - "opts.rewrite": 1, - "off": 1, - ".rewrite": 1, - "identifierToken": 1, - "match": 23, - "IDENTIFIER.exec": 1, - "input": 1, - "id": 16, - "colon": 3, - "@tag": 3, - "@token": 12, - "id.length": 1, - "forcedIdentifier": 4, - "prev": 17, - "not": 4, - "prev.spaced": 3, - "JS_KEYWORDS": 1, - "COFFEE_KEYWORDS": 1, - "id.toUpperCase": 1, - "LINE_BREAK": 2, - "@seenFor": 4, - "yes": 5, - "UNARY": 4, - "RELATION": 3, - "@value": 1, - "@tokens.pop": 1, - "JS_FORBIDDEN": 1, - "String": 1, - "id.reserved": 1, - "COFFEE_ALIAS_MAP": 1, - "COFFEE_ALIASES": 1, - "switch": 7, - "input.length": 1, - "numberToken": 1, - "NUMBER.exec": 1, - "BOX": 1, - "/.test": 4, - "/E/.test": 1, - "x/.test": 1, - "d*": 1, - "d": 2, - "lexedLength": 2, - "number.length": 1, - "octalLiteral": 2, - "/.exec": 2, - "binaryLiteral": 2, - "b": 1, - "stringToken": 1, - "@chunk.charAt": 3, - "SIMPLESTR.exec": 1, - "MULTILINER": 2, - "@balancedString": 1, - "<": 6, - "string.indexOf": 1, - "@interpolateString": 2, - "@escapeLines": 1, - "octalEsc": 1, - "string.length": 1, - "heredocToken": 1, - "HEREDOC.exec": 1, - "heredoc": 4, - "quote": 5, - "heredoc.charAt": 1, - "doc": 11, - "@sanitizeHeredoc": 2, - "indent": 7, - "<=>": 1, - "indexOf": 1, - "interpolateString": 1, - "token": 1, - "STRING": 2, - "makeString": 1, - "n": 16, - "Matches": 1, - "consumes": 1, - "comments": 1, - "commentToken": 1, - "@chunk.match": 1, - "COMMENT": 2, - "comment": 2, - "here": 3, - "herecomment": 4, - "Array": 1, - "comment.length": 1, - "jsToken": 1, - "JSTOKEN.exec": 1, - "script.length": 1, - "regexToken": 1, - "HEREGEX.exec": 1, - "@heregexToken": 1, - "NOT_REGEX": 2, - "NOT_SPACED_REGEX": 2, - "REGEX.exec": 1, - "regex": 5, - "flags": 2, - "..1": 1, - "match.length": 1, - "heregexToken": 1, - "heregex": 1, - "body": 2, - "body.indexOf": 1, - "re": 1, - "body.replace": 1, - "HEREGEX_OMIT": 3, - "//g": 1, - "re.match": 1, - "*/": 2, - "heregex.length": 1, - "@tokens.push": 1, - "tokens.push": 1, - "value...": 1, - "continue": 3, - "value.replace": 2, - "/g": 3, - "spaced": 1, - "reserved": 1, - "word": 1, - "value.length": 2, - "MATH": 3, - "COMPARE": 3, - "COMPOUND_ASSIGN": 2, - "SHIFT": 3, - "LOGIC": 3, - ".spaced": 1, - "CALLABLE": 2, - "INDEXABLE": 2, - "@ends.push": 1, - "@pair": 1, - "sanitizeHeredoc": 1, - "HEREDOC_ILLEGAL.test": 1, - "doc.indexOf": 1, - "HEREDOC_INDENT.exec": 1, - "attempt": 2, - "attempt.length": 1, - "indent.length": 1, - "doc.replace": 2, - "///g": 1, - "n/": 1, - "tagParameters": 1, - "this": 6, - "tokens.length": 1, - "tok": 5, - "stack.push": 1, - "stack.length": 1, - "stack.pop": 2, - "closeIndentation": 1, - "@outdentToken": 1, - "balancedString": 1, - "str": 1, - "end": 2, - "continueCount": 3, - "str.length": 1, - "letter": 1, - "str.charAt": 1, - "missing": 1, - "starting": 1, - "Hello": 1, - "name.capitalize": 1, - "OUTDENT": 1, - "THROW": 1, - "EXTENDS": 1, - "delete": 1, - "break": 1, - "debugger": 1, - "undefined": 1, - "until": 1, - "loop": 1, - "by": 1, - "&&": 1, - "case": 1, - "default": 1, - "function": 2, - "var": 1, - "void": 1, - "with": 1, - "const": 1, - "let": 2, - "enum": 1, - "export": 1, - "import": 1, - "native": 1, - "__hasProp": 1, - "__extends": 1, - "__slice": 1, - "__bind": 1, - "__indexOf": 1, - "implements": 1, - "interface": 1, - "package": 1, - "private": 1, - "protected": 1, - "public": 1, - "static": 1, - "yield": 1, - "arguments": 1, - "S": 10, - "OPERATOR": 1, - "%": 1, - "compound": 1, - "assign": 1, - "compare": 1, - "zero": 1, - "fill": 1, - "right": 1, - "shift": 2, - "doubles": 1, - "logic": 1, - "soak": 1, - "access": 1, + "let": 4, + "arrayItem": 2, + "i": 2, + "result": 4, + "+": 30, + "in": 2, + "xs": 3, + "traverse": 2, + "zip": 1, "range": 1, - "splat": 1, - "WHITESPACE": 1, - "###": 3, - "s*#": 1, - "##": 1, - ".*": 1, - "CODE": 1, - "MULTI_DENT": 1, - "SIMPLESTR": 1, - "JSTOKEN": 1, - "REGEX": 1, - "disallow": 1, - "leading": 1, - "whitespace": 1, - "equals": 1, - "signs": 1, - "every": 1, - "other": 1, - "thing": 1, - "anything": 1, - "escaped": 1, - "character": 1, - "imgy": 2, - "w": 2, - "HEREGEX": 1, - "#.*": 1, - "n/g": 1, - "HEREDOC_INDENT": 1, - "HEREDOC_ILLEGAL": 1, - "//": 1, - "LINE_CONTINUER": 1, - "s*": 1, - "BOOL": 1, - "NOT_REGEX.concat": 1, - "CALLABLE.concat": 1, - "console.log": 1, - "Animal": 3, - "@name": 2, - "move": 3, - "meters": 2, - "Snake": 2, - "Horse": 2, - "sam": 1, - "tom": 1, - "sam.move": 1, - "tom.move": 1 - }, - "PHP": { - "<": 11, - "php": 14, - "namespace": 28, - "Symfony": 24, - "Component": 24, - "Console": 17, - ";": 1383, - "use": 23, - "Input": 6, - "InputInterface": 4, - "ArgvInput": 2, - "ArrayInput": 3, - "InputDefinition": 2, - "InputOption": 15, - "InputArgument": 3, - "Output": 5, - "OutputInterface": 6, - "ConsoleOutput": 2, - "ConsoleOutputInterface": 2, - "Command": 6, - "HelpCommand": 2, - "ListCommand": 2, - "Helper": 3, - "HelperSet": 3, - "FormatterHelper": 2, - "DialogHelper": 2, - "class": 21, - "Application": 3, - "{": 974, - "private": 24, - "commands": 39, - "wantHelps": 4, - "false": 154, - "runningCommand": 5, - "name": 181, - "version": 8, - "catchExceptions": 4, - "autoExit": 4, - "definition": 3, - "helperSet": 6, - "public": 202, - "function": 205, - "__construct": 8, - "(": 2416, - ")": 2417, - "this": 928, - "-": 1271, - "true": 133, - "array": 296, - "getDefaultHelperSet": 2, - "getDefaultInputDefinition": 2, - "foreach": 94, - "getDefaultCommands": 2, - "as": 96, - "command": 41, - "add": 7, - "}": 972, - "run": 4, - "input": 20, - "null": 164, - "output": 60, - "if": 450, - "new": 74, - "try": 3, - "statusCode": 14, - "doRun": 2, - "catch": 3, - "Exception": 1, - "e": 18, - "throw": 19, - "instanceof": 8, - "renderException": 3, - "getErrorOutput": 2, - "else": 70, - "getCode": 1, - "is_numeric": 7, - "&&": 119, - "exit": 7, - "return": 305, - "getCommandName": 2, - "hasParameterOption": 7, - "setDecorated": 2, - "elseif": 31, - "setInteractive": 2, - "function_exists": 4, - "getHelperSet": 3, - "has": 7, - "inputStream": 2, - "get": 12, - "getInputStream": 1, - "posix_isatty": 1, - "setVerbosity": 2, - "VERBOSITY_QUIET": 1, - "VERBOSITY_VERBOSE": 2, - "writeln": 13, - "getLongVersion": 3, - "find": 17, - "setHelperSet": 1, - "getDefinition": 2, - "getHelp": 2, - "messages": 16, - "sprintf": 27, - "getOptions": 1, - "option": 5, - "[": 672, - "]": 672, - ".": 169, - "getName": 14, - "getShortcut": 2, - "getDescription": 3, - "implode": 8, - "PHP_EOL": 3, - "setCatchExceptions": 1, - "boolean": 4, - "Boolean": 4, - "setAutoExit": 1, - "setName": 1, - "getVersion": 3, - "setVersion": 1, - "register": 1, - "addCommands": 1, - "setApplication": 2, - "isEnabled": 1, - "getAliases": 3, - "alias": 87, - "isset": 101, - "InvalidArgumentException": 9, - "helpCommand": 3, - "setCommand": 1, - "getNamespaces": 3, - "namespaces": 4, - "extractNamespace": 7, - "array_values": 5, - "array_unique": 4, - "array_filter": 2, - "findNamespace": 4, - "allNamespaces": 3, - "n": 12, - "explode": 9, - "found": 4, - "i": 36, - "part": 10, - "abbrevs": 31, - "static": 6, - "getAbbreviations": 4, - "array_map": 2, - "p": 3, - "message": 12, - "<=>": 3, - "alternatives": 10, - "findAlternativeNamespace": 2, - "count": 32, - "getAbbreviationSuggestions": 4, - "searchName": 13, - "pos": 3, - "strrpos": 2, - "substr": 6, - "namespace.substr": 1, - "suggestions": 2, - "aliases": 8, - "findAlternativeCommands": 2, - "all": 11, - "substr_count": 1, - "+": 12, - "names": 3, - "for": 8, - "len": 11, - "strlen": 14, - "abbrev": 4, - "asText": 1, - "raw": 2, - "width": 7, - "sortCommands": 4, - "space": 5, - "space.": 1, - "asXml": 2, - "asDom": 2, - "dom": 12, - "DOMDocument": 2, - "formatOutput": 1, - "appendChild": 10, - "xml": 5, - "createElement": 6, - "commandsXML": 3, - "setAttribute": 2, - "namespacesXML": 3, - "namespaceArrayXML": 4, - "continue": 7, - "commandXML": 3, - "createTextNode": 1, - "node": 42, - "getElementsByTagName": 1, - "item": 9, - "importNode": 3, - "saveXml": 1, - "string": 5, - "encoding": 2, - "mb_detect_encoding": 1, - "mb_strlen": 1, - "do": 2, - "title": 3, - "get_class": 4, - "getTerminalWidth": 3, - "PHP_INT_MAX": 1, - "lines": 3, - "preg_split": 1, - "getMessage": 1, - "line": 10, - "str_split": 1, - "max": 2, - "str_repeat": 2, - "title.str_repeat": 1, - "line.str_repeat": 1, - "message.": 1, - "getVerbosity": 1, - "trace": 12, - "getTrace": 1, - "array_unshift": 2, - "getFile": 2, - "getLine": 2, - "type": 62, - "file": 3, - "while": 6, - "getPrevious": 1, - "getSynopsis": 1, - "protected": 59, - "defined": 5, - "ansicon": 4, - "getenv": 2, - "preg_replace": 4, - "preg_match": 6, - "getSttyColumns": 3, - "match": 4, - "getTerminalHeight": 1, - "trim": 3, - "getFirstArgument": 1, - "REQUIRED": 1, - "VALUE_NONE": 7, - "descriptorspec": 2, - "process": 10, - "proc_open": 1, - "pipes": 4, - "is_resource": 1, - "info": 5, - "stream_get_contents": 1, - "fclose": 2, - "proc_close": 1, - "namespacedCommands": 5, - "key": 64, - "ksort": 2, - "&": 19, - "limit": 3, - "parts": 4, - "array_pop": 1, - "array_slice": 1, - "callback": 5, - "findAlternatives": 3, - "collection": 3, - "call_user_func": 2, - "lev": 6, - "levenshtein": 2, - "3": 1, - "strpos": 15, - "values": 53, - "/": 1, - "||": 52, - "value": 53, - "asort": 1, - "array_keys": 7, - "": 3, - "CakePHP": 6, - "tm": 6, - "Rapid": 2, - "Development": 2, - "Framework": 2, - "http": 14, - "cakephp": 4, - "org": 10, - "Copyright": 5, - "2005": 4, - "2012": 4, - "Cake": 7, - "Software": 5, - "Foundation": 4, - "Inc": 4, - "cakefoundation": 4, - "Licensed": 2, - "under": 2, - "The": 4, - "MIT": 4, - "License": 4, - "Redistributions": 2, - "of": 10, - "files": 7, - "must": 2, - "retain": 2, - "the": 11, - "above": 2, - "copyright": 5, - "notice": 2, - "link": 10, - "Project": 2, - "package": 2, - "Controller": 4, - "since": 2, - "v": 17, - "0": 4, - "2": 2, - "9": 1, - "license": 6, - "www": 4, - "opensource": 2, - "licenses": 2, - "mit": 2, - "App": 20, - "uses": 46, - "CakeResponse": 2, - "Network": 1, - "ClassRegistry": 9, - "Utility": 6, - "ComponentCollection": 2, - "View": 9, - "CakeEvent": 13, - "Event": 6, - "CakeEventListener": 4, - "CakeEventManager": 5, - "controller": 3, - "organization": 1, - "business": 1, - "logic": 1, - "Provides": 1, - "basic": 1, - "functionality": 1, - "such": 1, - "rendering": 1, - "views": 1, - "inside": 1, - "layouts": 1, - "automatic": 1, - "model": 34, - "availability": 1, - "redirection": 2, - "callbacks": 4, - "and": 5, - "more": 1, - "Controllers": 2, - "should": 1, - "provide": 1, - "a": 11, - "number": 1, - "action": 7, - "methods": 5, - "These": 1, - "are": 5, - "on": 4, - "that": 2, - "not": 2, - "prefixed": 1, - "with": 5, - "_": 1, - "Each": 1, - "serves": 1, - "an": 1, - "endpoint": 1, - "performing": 2, - "specific": 1, - "resource": 1, - "or": 9, - "resources": 1, - "For": 2, - "example": 2, - "adding": 1, - "editing": 1, - "object": 14, - "listing": 1, - "set": 26, - "objects": 5, - "You": 2, - "can": 2, - "access": 1, - "request": 76, - "parameters": 4, - "using": 2, - "contains": 1, - "POST": 1, - "GET": 1, - "FILES": 1, - "*": 25, - "were": 1, - "request.": 1, - "After": 1, - "required": 2, - "actions": 2, - "controllers": 2, - "responsible": 1, - "creating": 1, - "response.": 2, - "This": 1, - "usually": 1, - "takes": 1, - "form": 7, - "generated": 1, - "possibly": 1, - "to": 6, - "another": 1, - "action.": 1, - "In": 1, - "either": 1, - "case": 31, - "response": 33, - "allows": 1, - "you": 1, - "manipulate": 1, - "aspects": 1, - "created": 8, - "by": 2, - "Dispatcher": 1, - "based": 2, - "routing.": 1, - "By": 1, - "default": 9, - "conventional": 1, - "names.": 1, - "/posts/index": 1, - "maps": 1, - "PostsController": 1, - "index": 5, - "re": 1, - "map": 1, - "urls": 1, - "Router": 5, - "connect": 1, - "@package": 2, - "Cake.Controller": 1, - "@property": 8, - "AclComponent": 1, - "Acl": 1, - "AuthComponent": 1, - "Auth": 1, - "CookieComponent": 1, - "Cookie": 1, - "EmailComponent": 1, - "Email": 1, - "PaginatorComponent": 1, - "Paginator": 1, - "RequestHandlerComponent": 1, - "RequestHandler": 1, - "SecurityComponent": 1, - "Security": 1, - "SessionComponent": 1, - "Session": 1, - "@link": 2, - "//book.cakephp.org/2.0/en/controllers.html": 1, - "*/": 2, - "extends": 3, - "Object": 4, - "implements": 3, - "helpers": 1, - "_responseClass": 1, - "viewPath": 3, - "layoutPath": 1, - "viewVars": 3, - "view": 5, - "layout": 5, - "autoRender": 6, - "autoLayout": 2, - "Components": 7, - "components": 1, - "viewClass": 10, - "ext": 1, - "plugin": 31, - "cacheAction": 1, - "passedArgs": 2, - "scaffold": 2, - "modelClass": 25, - "modelKey": 2, - "validationErrors": 50, - "_mergeParent": 4, - "_eventManager": 12, - "Inflector": 12, - "singularize": 4, - "underscore": 3, - "childMethods": 2, - "get_class_methods": 2, - "parentMethods": 2, - "array_diff": 3, - "CakeRequest": 5, - "setRequest": 2, - "parent": 14, - "__isset": 2, - "switch": 6, - "is_array": 37, - "list": 29, - "pluginSplit": 12, - "loadModel": 3, - "__get": 2, - "params": 34, - "load": 3, - "settings": 2, - "__set": 1, - "camelize": 3, - "array_merge": 32, - "array_key_exists": 11, - "empty": 96, - "invokeAction": 1, - "method": 31, - "ReflectionMethod": 2, - "_isPrivateAction": 2, - "PrivateActionException": 1, - "invokeArgs": 1, - "ReflectionException": 1, - "_getScaffold": 2, - "MissingActionException": 1, - "privateAction": 4, - "isPublic": 1, - "in_array": 26, - "prefixes": 4, - "prefix": 2, - "Scaffold": 1, - "_mergeControllerVars": 2, - "pluginController": 9, - "pluginDot": 4, - "mergeParent": 2, - "is_subclass_of": 3, - "pluginVars": 3, - "appVars": 6, - "merge": 12, - "_mergeVars": 5, - "get_class_vars": 2, - "_mergeUses": 3, - "implementedEvents": 2, - "constructClasses": 1, - "init": 4, - "current": 4, - "getEventManager": 13, - "attach": 4, - "startupProcess": 1, - "dispatch": 11, - "shutdownProcess": 1, - "httpCodes": 3, - "code": 4, - "id": 82, - "MissingModelException": 1, - "redirect": 6, - "url": 18, - "status": 15, - "extract": 9, - "EXTR_OVERWRITE": 3, - "event": 35, - "//TODO": 1, - "Remove": 1, - "following": 1, - "when": 1, - "events": 1, - "fully": 1, - "migrated": 1, - "break": 19, - "breakOn": 4, - "collectReturn": 1, - "isStopped": 4, - "result": 21, - "_parseBeforeRedirect": 2, - "session_write_close": 1, - "header": 3, - "is_string": 7, - "codes": 3, - "array_flip": 1, - "send": 1, - "_stop": 1, - "resp": 6, - "compact": 8, - "one": 19, - "two": 6, - "data": 187, - "array_combine": 2, - "setAction": 1, - "args": 5, - "func_get_args": 5, - "unset": 22, - "call_user_func_array": 3, - "validate": 9, - "errors": 9, - "validateErrors": 1, - "invalidFields": 2, - "render": 3, - "className": 27, - "models": 6, - "keys": 19, - "currentModel": 2, - "currentObject": 6, - "getObject": 1, - "is_a": 1, - "location": 1, - "body": 1, - "referer": 5, - "local": 2, - "disableCache": 2, - "flash": 1, - "pause": 2, - "postConditions": 1, - "op": 9, - "bool": 5, - "exclusive": 2, - "cond": 5, - "arrayOp": 2, - "fields": 60, - "field": 88, - "fieldOp": 11, - "strtoupper": 3, - "paginate": 3, - "scope": 2, - "whitelist": 14, - "beforeFilter": 1, - "beforeRender": 1, - "beforeRedirect": 1, - "afterFilter": 1, - "beforeScaffold": 2, - "_beforeScaffold": 1, - "afterScaffoldSave": 2, - "_afterScaffoldSave": 1, - "afterScaffoldSaveError": 2, - "_afterScaffoldSaveError": 1, - "scaffoldError": 2, - "_scaffoldError": 1, - "SHEBANG#!php": 4, - "echo": 2, - "BrowserKit": 1, - "DomCrawler": 5, - "Crawler": 2, - "Link": 3, - "Form": 4, - "Process": 1, - "PhpProcess": 2, - "abstract": 2, - "Client": 1, - "history": 15, - "cookieJar": 9, - "server": 20, - "crawler": 7, - "insulated": 7, - "followRedirects": 5, - "History": 2, - "CookieJar": 2, - "setServerParameters": 2, - "followRedirect": 4, - "insulate": 1, - "class_exists": 2, - "RuntimeException": 2, - "setServerParameter": 1, - "getServerParameter": 1, - "getHistory": 1, - "getCookieJar": 1, - "getCrawler": 1, - "getResponse": 1, - "getRequest": 1, - "click": 1, - "submit": 2, - "getMethod": 6, - "getUri": 8, - "setValues": 2, - "getPhpValues": 2, - "getPhpFiles": 2, - "uri": 23, - "content": 4, - "changeHistory": 4, - "getAbsoluteUri": 2, - "isEmpty": 2, - "parse_url": 3, - "PHP_URL_HOST": 1, - "PHP_URL_SCHEME": 1, - "Request": 3, - "allValues": 1, - "filterRequest": 2, - "doRequestInProcess": 2, - "doRequest": 2, - "filterResponse": 2, - "updateFromResponse": 1, - "getHeader": 2, - "createCrawlerFromContent": 2, - "getContent": 2, - "getScript": 2, - "sys_get_temp_dir": 2, - "isSuccessful": 1, - "getOutput": 3, - "unserialize": 1, - "LogicException": 4, - "addContent": 1, - "back": 2, - "requestFromRequest": 4, - "forward": 2, - "reload": 1, - "restart": 1, - "clear": 2, - "currentUri": 7, - "path": 20, - "PHP_URL_PATH": 1, - "path.": 1, - "getParameters": 1, - "getFiles": 3, - "getServer": 1, - "relational": 2, - "mapper": 2, - "DBO": 2, - "backed": 2, - "mapping": 1, - "database": 2, - "tables": 5, - "PHP": 1, - "versions": 1, - "5": 1, - "Model": 5, - "10": 1, - "Validation": 1, - "String": 5, - "Set": 9, - "BehaviorCollection": 2, - "ModelBehavior": 1, - "ConnectionManager": 2, - "Xml": 2, - "Automatically": 1, - "selects": 1, - "table": 21, - "pluralized": 1, - "lowercase": 1, - "User": 1, - "is": 1, - "have": 2, - "at": 1, - "least": 1, - "primary": 3, - "key.": 1, - "Cake.Model": 1, - "//book.cakephp.org/2.0/en/models.html": 1, - "useDbConfig": 7, - "useTable": 12, - "displayField": 4, - "schemaName": 1, - "primaryKey": 38, - "_schema": 11, - "validationDomain": 1, - "tablePrefix": 8, - "tableToModel": 4, - "cacheQueries": 1, - "belongsTo": 7, - "hasOne": 2, - "hasMany": 2, - "hasAndBelongsToMany": 24, - "actsAs": 2, - "Behaviors": 6, - "cacheSources": 7, - "findQueryType": 3, - "recursive": 9, - "order": 4, - "virtualFields": 8, - "_associationKeys": 2, - "_associations": 5, - "__backAssociation": 22, - "__backInnerAssociation": 1, - "__backOriginalAssociation": 1, - "__backContainableAssociation": 1, - "_insertID": 1, - "_sourceConfigured": 1, - "findMethods": 3, - "ds": 3, - "addObject": 2, - "parentClass": 3, - "get_parent_class": 1, - "tableize": 2, - "_createLinks": 3, - "__call": 1, - "dispatchMethod": 1, - "getDataSource": 15, - "query": 102, - "k": 7, - "relation": 7, - "assocKey": 13, - "dynamic": 2, - "isKeySet": 1, - "AppModel": 1, - "_constructLinkedModel": 2, - "schema": 11, - "hasField": 7, - "setDataSource": 2, - "property_exists": 3, - "bindModel": 1, - "reset": 6, - "assoc": 75, - "assocName": 6, - "unbindModel": 1, - "_generateAssociation": 2, - "dynamicWith": 3, - "sort": 1, - "setSource": 1, - "tableName": 4, - "db": 45, - "method_exists": 5, - "sources": 3, - "listSources": 1, - "strtolower": 1, - "MissingTableException": 1, - "is_object": 2, - "SimpleXMLElement": 1, - "DOMNode": 3, - "_normalizeXmlData": 3, - "toArray": 1, - "reverse": 1, - "_setAliasData": 2, - "modelName": 3, - "fieldSet": 3, - "fieldName": 6, - "fieldValue": 7, - "deconstruct": 2, - "getAssociated": 4, - "getColumnType": 4, - "useNewDate": 2, - "dateFields": 5, - "timeFields": 2, - "date": 9, - "val": 27, - "format": 3, - "columns": 5, - "str_replace": 3, - "describe": 1, - "getColumnTypes": 1, - "trigger_error": 1, - "__d": 1, - "E_USER_WARNING": 1, - "cols": 7, - "column": 10, - "startQuote": 4, - "endQuote": 4, - "checkVirtual": 3, - "isVirtualField": 3, - "hasMethod": 2, - "getVirtualField": 1, - "create": 13, - "filterKey": 2, - "defaults": 6, - "properties": 4, - "read": 2, - "conditions": 41, - "array_shift": 5, - "saveField": 1, - "options": 85, - "save": 9, - "fieldList": 1, - "_whitelist": 4, - "keyPresentAndEmpty": 2, - "exists": 6, - "validates": 60, - "updateCol": 6, - "colType": 4, - "time": 3, - "strtotime": 1, - "joined": 5, - "x": 4, - "y": 2, - "success": 10, - "cache": 2, - "_prepareUpdateFields": 2, - "update": 2, - "fInfo": 4, - "isUUID": 5, - "j": 2, - "array_search": 1, - "uuid": 3, - "updateCounterCache": 6, - "_saveMulti": 2, - "_clearCache": 2, - "join": 22, - "joinModel": 8, - "keyInfo": 4, - "withModel": 4, - "pluginName": 1, - "dbMulti": 6, - "newData": 5, - "newValues": 8, - "newJoins": 7, - "primaryAdded": 3, - "idField": 3, - "row": 17, - "keepExisting": 3, - "associationForeignKey": 5, - "links": 4, - "oldLinks": 4, + "length": 3, + "readMaybe": 1, + "<<": 4, + "<": 13, + "Just": 7, + "Nothing": 7, + "Data.Map": 1, + "Map": 26, + "empty": 6, + "singleton": 5, + "insert": 10, + "lookup": 8, "delete": 9, - "oldJoin": 4, - "insertMulti": 1, - "foreignKey": 11, - "fkQuoted": 3, - "escapeField": 6, - "intval": 4, - "updateAll": 3, - "foreignKeys": 3, - "included": 3, - "array_intersect": 1, - "old": 2, - "saveAll": 1, - "numeric": 1, - "validateMany": 4, - "saveMany": 3, - "validateAssociated": 5, - "saveAssociated": 5, - "transactionBegun": 4, - "begin": 2, - "record": 10, - "saved": 18, - "commit": 2, - "rollback": 2, - "associations": 9, - "association": 47, - "notEmpty": 4, - "_return": 3, - "recordData": 2, - "cascade": 10, - "_deleteDependent": 3, - "_deleteLinks": 3, - "_collectForeignKeys": 2, - "savedAssociatons": 3, - "deleteAll": 2, - "records": 6, - "ids": 8, - "_id": 2, - "getID": 2, - "hasAny": 1, - "buildQuery": 2, - "is_null": 1, - "results": 22, - "resetAssociations": 3, - "_filterResults": 2, - "ucfirst": 2, - "modParams": 2, - "_findFirst": 1, - "state": 15, - "_findCount": 1, - "calculate": 2, - "expression": 1, - "_findList": 1, - "tokenize": 1, - "lst": 4, - "combine": 1, - "_findNeighbors": 1, - "prevVal": 2, - "return2": 6, - "_findThreaded": 1, - "nest": 1, - "isUnique": 1, - "is_bool": 1, - "sql": 1, - "php_help": 1, - "arg": 1, - "t": 26, - "php_permission": 1, - "TRUE": 1, - "php_eval": 1, - "global": 2, - "theme_path": 5, - "theme_info": 3, - "conf": 2, - "old_theme_path": 2, - "drupal_get_path": 1, - "dirname": 1, - "filename": 1, - "ob_start": 1, - "print": 1, - "eval": 1, - "ob_get_contents": 1, - "ob_end_clean": 1, - "_php_filter_tips": 1, - "filter": 1, - "long": 2, - "FALSE": 2, - "base_url": 1, - "php_filter_info": 1, - "filters": 2, - "Field": 9, - "FormField": 3, - "ArrayAccess": 1, - "button": 6, - "initialize": 2, - "getFormNode": 1, - "getValues": 3, - "isDisabled": 2, - "FileFormField": 3, - "hasValue": 1, - "getValue": 2, - "qs": 4, - "http_build_query": 3, - "parse_str": 2, - "queryString": 2, - "sep": 1, - "sep.": 1, - "getRawUri": 1, - "getAttribute": 10, - "remove": 4, - "offsetExists": 1, - "offsetGet": 1, - "offsetSet": 1, - "offsetUnset": 1, - "setNode": 1, - "nodeName": 13, - "parentNode": 1, - "FormFieldRegistry": 2, - "document": 6, - "root": 4, - "xpath": 2, - "DOMXPath": 1, - "hasAttribute": 1, - "InputFormField": 2, - "ChoiceFormField": 2, - "addChoice": 1, - "TextareaFormField": 1, - "base": 8, - "segments": 13, - "getSegments": 4, - "target": 20, - "self": 1, - "setValue": 1, - "walk": 3, - "registry": 4, - "m": 5, - "": 1, - "aMenuLinks": 1, - "Array": 13, - "Blog": 1, - "SITE_DIR": 4, - "Photos": 1, - "photo": 1, - "About": 1, - "me": 1, - "about": 1, - "Contact": 1, - "contacts": 1, - "Yii": 3, - "console": 3, - "bootstrap": 1, - "yiiframework": 2, - "com": 2, - "c": 1, - "2008": 1, - "LLC": 1, - "YII_DEBUG": 2, - "define": 2, - "fcgi": 1, - "doesn": 1, - "STDIN": 3, - "fopen": 1, - "stdin": 1, - "r": 1, - "require": 3, - "__DIR__": 3, - "vendor": 2, - "yiisoft": 1, - "yii2": 1, - "yii": 2, - "autoload": 1, - "config": 3, - "application": 2 + "alter": 8, + "toList": 10, + "fromList": 3, + "union": 3, + "map": 8, + "qualified": 1, + "as": 1, + "P": 1, + "concat": 3, + "Data.Foldable": 2, + "foldl": 4, + "k": 108, + "v": 57, + "Leaf": 15, + "|": 9, + "Branch": 27, + "{": 25, + "key": 13, + "value": 8, + "left": 15, + "right": 14, + "}": 26, + "eqMap": 1, + "P.Eq": 11, + "m1": 6, + "m2": 6, + "P.": 11, + "/": 1, + "P.not": 1, + "showMap": 1, + "P.Show": 3, + "m": 6, + "P.show": 1, + "v.": 11, + "P.Ord": 9, + "b@": 6, + "k1": 16, + "b.left": 9, + "b.right": 8, + "findMinKey": 5, + "glue": 4, + "minKey": 3, + "root": 2, + "b.key": 1, + "b.value": 2, + "v1": 3, + "v2.": 1, + "v2": 2, + "ReactiveJQueryTest": 1, + "flip": 2, + "Control.Monad": 1, + "Control.Monad.Eff": 1, + "Control.Monad.JQuery": 1, + "Control.Reactive": 1, + "Control.Reactive.JQuery": 1, + "head": 2, + "Data.Monoid": 1, + "Debug.Trace": 1, + "Global": 1, + "parseInt": 1, + "main": 1, + "do": 4, + "personDemo": 2, + "todoListDemo": 1, + "greet": 1, + "firstName": 2, + "lastName": 2, + "Create": 3, + "new": 1, + "reactive": 1, + "variables": 1, + "to": 3, + "hold": 1, + "the": 3, + "user": 1, + "readRArray": 1, + "insertRArray": 1, + "text": 5, + "completed": 2, + "paragraph": 2, + "display": 2, + "next": 1, + "task": 4, + "nextTaskLabel": 3, + "create": 2, + "append": 2, + "nextTask": 2, + "toComputedArray": 2, + "toComputed": 2, + "bindTextOneWay": 2, + "counter": 3, + "counterLabel": 3, + "rs": 2, + "cs": 2, + "<->": 1, + "if": 1, + "then": 1, + "else": 1, + "entry": 1, + "entry.completed": 1 }, -<<<<<<< HEAD "Python": { "xspacing": 4, "#": 28, @@ -91390,1964 +57355,118 @@ "I1": 3, "U2": 2, "I_err": 2, -======= - "MediaWiki": { - "Overview": 1, - "The": 17, - "GDB": 15, - "Tracepoint": 4, - "Analysis": 1, - "feature": 3, - "is": 9, - "an": 3, - "extension": 1, - "to": 12, - "the": 72, - "Tracing": 3, - "and": 20, - "Monitoring": 1, - "Framework": 1, - "that": 4, - "allows": 2, - "visualization": 1, - "analysis": 1, - "of": 8, - "C/C": 10, - "+": 20, - "tracepoint": 5, - "data": 5, - "collected": 2, - "by": 10, - "stored": 1, - "a": 12, - "log": 1, - "file.": 1, - "Getting": 1, - "Started": 1, - "can": 9, - "be": 18, - "installed": 2, - "from": 8, - "Eclipse": 1, - "update": 2, - "site": 1, - "selecting": 1, - ".": 8, - "requires": 1, - "version": 1, - "or": 8, - "later": 1, - "on": 3, - "local": 1, - "host.": 1, - "executable": 3, - "program": 1, - "must": 3, - "found": 1, - "in": 15, - "path.": 1, - "Trace": 9, - "Perspective": 1, - "To": 1, - "open": 1, - "perspective": 2, - "select": 5, - "includes": 1, - "following": 1, - "views": 2, - "default": 2, - "*": 6, - "This": 7, - "view": 7, - "shows": 7, - "projects": 1, - "workspace": 2, - "used": 1, - "create": 1, - "manage": 1, - "projects.": 1, - "running": 1, - "Postmortem": 5, - "Debugger": 4, - "instances": 1, - "displays": 2, - "thread": 1, - "stack": 2, - "trace": 17, - "associated": 1, - "with": 4, - "tracepoint.": 3, - "status": 1, - "debugger": 1, - "navigation": 1, - "records.": 1, - "console": 1, - "output": 1, - "Debugger.": 1, - "editor": 7, - "area": 2, - "contains": 1, - "editors": 1, - "when": 1, - "opened.": 1, - "[": 11, - "Image": 2, - "images/GDBTracePerspective.png": 1, - "]": 11, - "Collecting": 2, - "Data": 4, - "outside": 2, - "scope": 1, - "this": 5, - "feature.": 1, - "It": 1, - "done": 2, - "command": 1, - "line": 2, - "using": 3, - "CDT": 3, - "debug": 1, - "component": 1, - "within": 1, - "Eclipse.": 1, - "See": 1, - "FAQ": 2, - "entry": 2, - "#References": 2, - "|": 2, - "References": 3, - "section.": 2, - "Importing": 2, - "Some": 1, - "information": 1, - "section": 1, - "redundant": 1, - "LTTng": 3, - "User": 3, - "Guide.": 1, - "For": 1, - "further": 1, - "details": 1, - "see": 1, - "Guide": 2, - "Creating": 1, - "Project": 1, - "In": 5, - "right": 3, - "-": 8, - "click": 8, - "context": 4, - "menu.": 4, - "dialog": 1, - "name": 2, - "your": 2, - "project": 2, - "tracing": 1, - "folder": 5, - "Browse": 2, - "enter": 2, - "source": 2, - "directory.": 1, - "Select": 1, - "file": 6, - "tree.": 1, - "Optionally": 1, - "set": 1, - "type": 2, - "Click": 1, - "Alternatively": 1, - "drag": 1, - "&": 1, - "dropped": 1, - "any": 2, - "external": 1, - "manager.": 1, - "Selecting": 2, - "Type": 1, - "Right": 2, - "imported": 1, - "choose": 2, - "step": 1, - "omitted": 1, - "if": 1, - "was": 2, - "selected": 3, - "at": 3, - "import.": 1, - "will": 6, - "updated": 2, - "icon": 1, - "images/gdb_icon16.png": 1, - "Executable": 1, - "created": 1, - "identified": 1, - "so": 2, - "launched": 1, - "properly.": 1, - "path": 1, - "press": 1, - "recognized": 1, - "as": 1, - "executable.": 1, - "Visualizing": 1, - "Opening": 1, - "double": 1, - "it": 3, - "opened": 2, - "Events": 5, - "instance": 1, - "launched.": 1, - "If": 2, - "available": 1, - "code": 1, - "corresponding": 1, - "first": 1, - "record": 2, - "also": 2, - "editor.": 2, - "At": 1, - "point": 1, - "recommended": 1, - "relocate": 1, - "not": 1, - "hidden": 1, - "Viewing": 1, - "table": 1, - "shown": 1, - "one": 1, - "row": 1, - "for": 2, - "each": 1, - "record.": 2, - "column": 6, - "sequential": 1, - "number.": 1, - "number": 2, - "assigned": 1, - "collection": 1, - "time": 2, - "method": 1, - "where": 1, - "set.": 1, - "run": 1, - "Searching": 1, - "filtering": 1, - "entering": 1, - "regular": 1, - "expression": 1, - "header.": 1, - "Navigating": 1, - "records": 1, - "keyboard": 1, - "mouse.": 1, - "show": 1, - "current": 1, - "navigated": 1, - "clicking": 1, - "buttons.": 1, - "updated.": 1, - "http": 4, - "//wiki.eclipse.org/index.php/Linux_Tools_Project/LTTng2/User_Guide": 1, - "//wiki.eclipse.org/CDT/User/FAQ#How_can_I_trace_my_application_using_C.2FC.2B.2B_Tracepoints.3F": 1, - "How": 1, - "I": 1, - "my": 1, - "application": 1, - "Tracepoints": 1, - "Updating": 1, - "Document": 1, - "document": 2, - "maintained": 1, - "collaborative": 1, - "wiki.": 1, - "you": 1, - "wish": 1, - "modify": 1, - "please": 1, - "visit": 1, - "//wiki.eclipse.org/index.php/Linux_Tools_Project/GDB_Tracepoint_Analysis/User_Guide": 1, - "//wiki.eclipse.org/Linux_Tools_Project/GDB_Tracepoint_Analysis/User_Guide": 1 - }, - "Ceylon": { - "doc": 2, - "by": 1, - "shared": 5, - "void": 1, - "test": 1, - "(": 4, - ")": 4, - "{": 3, - "print": 1, - ";": 4, - "}": 3, - "class": 1, - "Test": 2, - "name": 4, - "satisfies": 1, - "Comparable": 1, - "": 1, - "String": 2, - "actual": 2, - "string": 1, - "Comparison": 1, - "compare": 1, - "other": 1, - "return": 1, - "<=>": 1, - "other.name": 1 - }, - "fish": { - "function": 6, - "eval": 5, - "-": 102, - "S": 1, - "d": 3, - "#": 18, - "If": 2, - "we": 2, - "are": 1, - "in": 2, - "an": 1, - "interactive": 8, - "shell": 1, - "should": 2, - "enable": 1, - "full": 4, - "job": 5, - "control": 5, - "since": 1, - "it": 1, - "behave": 1, - "like": 2, - "the": 1, - "real": 1, - "code": 1, - "was": 1, - "executed.": 1, - "don": 1, - "t": 2, - "do": 1, - "this": 1, - "commands": 1, - "that": 1, - "expect": 1, - "to": 1, - "be": 1, - "used": 1, - "interactively": 1, - "less": 1, - "wont": 1, - "work": 1, - "using": 1, - "eval.": 1, - "set": 49, - "l": 15, - "mode": 5, - "if": 21, - "status": 7, - "is": 3, - "else": 3, - "none": 1, - "end": 33, - "echo": 3, - "|": 3, - ".": 2, - "<": 1, - "&": 1, - "res": 2, - "return": 6, - "funced": 3, - "description": 2, - "editor": 7, - "EDITOR": 1, - "funcname": 14, - "while": 2, - "q": 9, - "argv": 9, - "[": 13, - "]": 13, - "switch": 3, - "case": 9, - "h": 1, - "help": 1, - "__fish_print_help": 1, - "e": 6, - "i": 5, - "set_color": 4, - "red": 2, - "printf": 3, - "(": 7, - "_": 3, - ")": 7, - "normal": 2, - "begin": 2, - ";": 7, - "or": 3, - "not": 8, - "test": 7, - "init": 5, - "n": 5, - "nend": 2, - "editor_cmd": 2, - "type": 1, - "f": 3, - "/dev/null": 2, - "fish": 3, - "z": 1, - "IFS": 4, - "functions": 5, - "fish_indent": 2, - "no": 2, - "indent": 1, - "prompt": 2, - "read": 1, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "p": 1, - "c": 1, - "s": 1, - "cmd": 2, - "TMPDIR": 2, - "/tmp": 1, - "tmpname": 8, - "%": 2, - "self": 2, - "random": 2, - "stat": 2, - "rm": 1, - "g": 1, - "configdir": 2, - "/.config": 1, - "XDG_CONFIG_HOME": 2, - "fish_function_path": 4, - "configdir/fish/functions": 1, - "__fish_sysconfdir/functions": 1, - "__fish_datadir/functions": 3, - "contains": 4, - "fish_complete_path": 4, - "configdir/fish/completions": 1, - "__fish_sysconfdir/completions": 1, - "__fish_datadir/completions": 3, - "/usr/xpg4/bin": 3, - "PATH": 6, - "path_list": 4, - "/bin": 1, - "/usr/bin": 1, - "/usr/X11R6/bin": 1, - "/usr/local/bin": 1, - "__fish_bin_dir": 1, - "USER": 1, - "root": 1, - "/sbin": 1, - "/usr/sbin": 1, - "/usr/local/sbin": 1, - "for": 1, - "fish_sigtrap_handler": 1, - "on": 2, - "signal": 1, - "TRAP": 1, - "scope": 1, - "shadowing": 1, - "breakpoint": 1, - "__fish_on_interactive": 2, - "event": 1, - "fish_prompt": 1, - "__fish_config_interactive": 1 - }, - "Diff": { - "diff": 1, - "-": 5, - "git": 1, - "a/lib/linguist.rb": 2, - "b/lib/linguist.rb": 2, - "index": 1, - "d472341..8ad9ffb": 1, - "+": 3 - }, - "Slash": { - "<%>": 1, - "class": 11, - "Env": 1, - "def": 18, - "init": 4, - "memory": 3, - "ptr": 9, - "0": 3, - "ptr=": 1, - "current_value": 5, - "current_value=": 1, - "value": 1, - "AST": 4, - "Next": 1, - "eval": 10, - "env": 16, - "Prev": 1, - "Inc": 1, - "Dec": 1, - "Output": 1, - "print": 1, - "char": 5, - "Input": 1, - "Sequence": 2, - "nodes": 6, - "for": 2, - "node": 2, - "in": 2, - "Loop": 1, - "seq": 4, - "while": 1, - "Parser": 1, - "str": 2, - "chars": 2, - "split": 1, - "parse": 1, - "stack": 3, - "_parse_char": 2, - "if": 1, - "length": 1, - "1": 1, - "throw": 1, - "SyntaxError": 1, - "new": 2, - "unexpected": 2, - "end": 1, - "of": 1, - "input": 1, - "last": 1, - "switch": 1, - "<": 1, - "+": 1, - "-": 1, - ".": 1, - "[": 1, - "]": 1, - ")": 7, - ";": 6, - "}": 3, - "@stack.pop": 1, - "_add": 1, - "(": 6, - "Loop.new": 1, - "Sequence.new": 1, - "src": 2, - "File.read": 1, - "ARGV.first": 1, - "ast": 1, - "Parser.new": 1, - ".parse": 1, - "ast.eval": 1, - "Env.new": 1 - }, - "Objective-C": { - "#import": 53, - "": 2, - "@interface": 23, - "FooAppDelegate": 2, - "NSObject": 5, - "": 1, - "{": 541, - "@private": 2, - "NSWindow": 2, - "*window": 2, - ";": 2003, - "}": 532, - "@property": 150, - "(": 2109, - "assign": 84, - ")": 2106, - "IBOutlet": 1, - "@end": 37, - "//": 317, - "MainMenuViewController": 2, - "TTTableViewController": 1, - "typedef": 47, - "enum": 17, - "TUITableViewStylePlain": 2, - "regular": 1, - "table": 7, - "view": 11, - "TUITableViewStyleGrouped": 1, - "grouped": 1, - "headers": 11, - "stick": 1, - "to": 115, - "the": 197, - "top": 8, - "of": 34, - "and": 44, - "scroll": 3, - "with": 19, - "it": 28, - "TUITableViewStyle": 4, - "TUITableViewScrollPositionNone": 2, - "TUITableViewScrollPositionTop": 2, - "TUITableViewScrollPositionMiddle": 1, - "TUITableViewScrollPositionBottom": 1, - "TUITableViewScrollPositionToVisible": 3, - "currently": 4, - "only": 12, - "supported": 1, - "arg": 11, - "TUITableViewScrollPosition": 5, - "TUITableViewInsertionMethodBeforeIndex": 1, - "NSOrderedAscending": 4, - "TUITableViewInsertionMethodAtIndex": 1, - "NSOrderedSame": 1, - "TUITableViewInsertionMethodAfterIndex": 1, - "NSOrderedDescending": 4, - "TUITableViewInsertionMethod": 3, - "@class": 4, - "TUITableViewCell": 23, - "@protocol": 3, - "TUITableViewDataSource": 2, - "TUITableView": 25, - "TUITableViewDelegate": 1, - "": 1, - "TUIScrollViewDelegate": 1, - "-": 595, - "CGFloat": 44, - "tableView": 45, - "*": 311, - "heightForRowAtIndexPath": 2, - "TUIFastIndexPath": 89, - "indexPath": 47, - "@optional": 2, - "void": 253, - "willDisplayCell": 2, - "cell": 21, - "forRowAtIndexPath": 2, - "called": 3, - "after": 5, - "s": 35, - "added": 5, - "as": 17, - "a": 78, - "subview": 1, - "didSelectRowAtIndexPath": 3, - "happens": 4, - "on": 26, - "left/right": 2, - "mouse": 2, - "down": 1, - "key": 32, - "up/down": 1, - "didDeselectRowAtIndexPath": 3, - "didClickRowAtIndexPath": 1, - "withEvent": 2, - "NSEvent": 3, - "event": 8, - "up": 4, - "can": 20, - "look": 1, - "at": 10, - "clickCount": 1, - "BOOL": 137, - "TUITableView*": 1, - "shouldSelectRowAtIndexPath": 3, - "TUIFastIndexPath*": 1, - "forEvent": 3, - "NSEvent*": 1, - "YES": 62, - "if": 297, - "not": 29, - "implemented": 7, - "NSMenu": 1, - "menuForRowAtIndexPath": 1, - "tableViewWillReloadData": 3, - "tableViewDidReloadData": 3, - "targetIndexPathForMoveFromRowAtIndexPath": 1, - "fromPath": 1, - "toProposedIndexPath": 1, - "proposedPath": 1, - "TUIScrollView": 1, - "_style": 8, - "__unsafe_unretained": 2, - "id": 170, - "": 4, - "_dataSource": 6, - "weak": 2, - "NSArray": 27, - "_sectionInfo": 27, - "TUIView": 17, - "_pullDownView": 4, - "_headerView": 8, - "CGSize": 5, - "_lastSize": 1, - "_contentHeight": 7, - "NSMutableIndexSet": 6, - "_visibleSectionHeaders": 6, - "NSMutableDictionary": 18, - "_visibleItems": 14, - "_reusableTableCells": 5, - "_selectedIndexPath": 9, - "_indexPathShouldBeFirstResponder": 2, - "NSInteger": 56, - "_futureMakeFirstResponderToken": 2, - "_keepVisibleIndexPathForReload": 2, - "_relativeOffsetForReload": 2, - "drag": 1, - "reorder": 1, - "state": 35, - "_dragToReorderCell": 5, - "CGPoint": 7, - "_currentDragToReorderLocation": 1, - "_currentDragToReorderMouseOffset": 1, - "_currentDragToReorderIndexPath": 1, - "_currentDragToReorderInsertionMethod": 1, - "_previousDragToReorderIndexPath": 1, - "_previousDragToReorderInsertionMethod": 1, - "struct": 20, - "unsigned": 62, - "int": 55, - "animateSelectionChanges": 3, - "forceSaveScrollPosition": 1, - "derepeaterEnabled": 1, - "layoutSubviewsReentrancyGuard": 1, - "didFirstLayout": 1, - "dataSourceNumberOfSectionsInTableView": 1, - "delegateTableViewWillDisplayCellForRowAtIndexPath": 1, - "maintainContentOffsetAfterReload": 3, - "_tableFlags": 1, - "initWithFrame": 12, - "CGRect": 41, - "frame": 38, - "style": 29, - "must": 6, - "specify": 2, - "creation.": 1, - "calls": 1, - "this": 50, - "UITableViewStylePlain": 1, - "nonatomic": 40, - "unsafe_unretained": 2, - "dataSource": 2, - "": 4, - "delegate": 29, - "readwrite": 1, - "reloadData": 3, - "reloadDataMaintainingVisibleIndexPath": 2, - "relativeOffset": 5, - "reloadLayout": 2, - "numberOfSections": 10, - "numberOfRowsInSection": 9, - "section": 60, - "rectForHeaderOfSection": 4, - "rectForSection": 3, - "rectForRowAtIndexPath": 7, - "NSIndexSet": 4, - "indexesOfSectionsInRect": 2, - "rect": 10, - "indexesOfSectionHeadersInRect": 2, - "indexPathForCell": 2, - "returns": 4, - "nil": 131, - "is": 77, - "visible": 16, - "indexPathsForRowsInRect": 3, - "valid": 5, - "indexPathForRowAtPoint": 2, - "point": 11, - "indexPathForRowAtVerticalOffset": 2, - "offset": 23, - "indexOfSectionWithHeaderAtPoint": 2, - "indexOfSectionWithHeaderAtVerticalOffset": 2, - "enumerateIndexPathsUsingBlock": 2, - "*indexPath": 11, - "*stop": 7, - "block": 18, - "enumerateIndexPathsWithOptions": 2, - "NSEnumerationOptions": 4, - "options": 6, - "usingBlock": 6, - "enumerateIndexPathsFromIndexPath": 4, - "fromIndexPath": 6, - "toIndexPath": 12, - "withOptions": 4, - "headerViewForSection": 6, - "cellForRowAtIndexPath": 9, - "or": 18, - "index": 11, - "path": 11, - "out": 7, - "range": 8, - "visibleCells": 3, - "no": 7, - "particular": 2, - "order": 1, - "sortedVisibleCells": 2, - "bottom": 6, - "indexPathsForVisibleRows": 2, - "scrollToRowAtIndexPath": 3, - "atScrollPosition": 3, - "scrollPosition": 9, - "animated": 27, - "indexPathForSelectedRow": 4, - "return": 165, - "representing": 1, - "row": 36, - "selection.": 1, - "indexPathForFirstRow": 2, - "indexPathForLastRow": 2, - "selectRowAtIndexPath": 3, - "deselectRowAtIndexPath": 3, - "strong": 4, - "*pullDownView": 1, - "pullDownViewIsVisible": 3, - "*headerView": 6, - "dequeueReusableCellWithIdentifier": 2, - "NSString": 127, - "identifier": 7, - "": 1, - "@required": 1, - "canMoveRowAtIndexPath": 2, - "moveRowAtIndexPath": 2, - "numberOfSectionsInTableView": 3, - "NSIndexPath": 5, - "+": 195, - "indexPathForRow": 11, - "NSUInteger": 93, - "inSection": 11, - "readonly": 19, - "NSString*": 13, - "kTextStyleType": 2, - "@": 258, - "kViewStyleType": 2, - "kImageStyleType": 2, - "///////////////////////////////////////////////////////////////////////////////////////////////////": 24, - "@implementation": 13, - "StyleViewController": 2, - "initWithStyleName": 1, - "name": 7, - "styleType": 3, - "self": 500, - "[": 1227, - "super": 25, - "initWithNibName": 3, - "bundle": 3, - "]": 1227, - "self.title": 2, - "TTStyleSheet": 4, - "globalStyleSheet": 4, - "styleWithSelector": 4, - "retain": 73, - "_styleHighlight": 6, - "forState": 4, - "UIControlStateHighlighted": 1, - "_styleDisabled": 6, - "UIControlStateDisabled": 1, - "_styleSelected": 6, - "UIControlStateSelected": 1, - "_styleType": 6, - "copy": 4, - "dealloc": 13, - "TT_RELEASE_SAFELY": 12, - "#pragma": 44, - "mark": 42, - "UIViewController": 2, - "addTextView": 5, - "title": 2, - "TTStyle*": 7, - "textFrame": 3, - "TTRectInset": 3, - "UIEdgeInsetsMake": 3, - "StyleView*": 2, - "text": 12, - "StyleView": 2, - "alloc": 47, - "text.text": 1, - "TTStyleContext*": 1, - "context": 4, - "TTStyleContext": 1, - "init": 34, - "context.frame": 1, - "context.delegate": 1, - "context.font": 1, - "UIFont": 3, - "systemFontOfSize": 2, - "systemFontSize": 1, - "size": 12, - "addToSize": 1, - "CGSizeZero": 1, - "size.width": 1, - "size.height": 1, - "textFrame.size": 1, - "text.frame": 1, - "text.style": 1, - "text.backgroundColor": 1, - "UIColor": 3, - "colorWithRed": 3, - "green": 3, - "blue": 3, - "alpha": 3, - "text.autoresizingMask": 1, - "UIViewAutoresizingFlexibleWidth": 4, - "|": 13, - "UIViewAutoresizingFlexibleBottomMargin": 3, - "self.view": 4, - "addSubview": 8, - "addView": 5, - "viewFrame": 4, - "view.style": 2, - "view.backgroundColor": 2, - "view.autoresizingMask": 2, - "addImageView": 5, - "TTImageView*": 1, - "TTImageView": 1, - "view.urlPath": 1, - "imageFrame": 2, - "view.frame": 2, - "imageFrame.size": 1, - "view.image.size": 1, - "loadView": 4, - "self.view.bounds": 2, - "frame.size.height": 15, - "/": 18, - "isEqualToString": 13, - "frame.origin.y": 16, - "else": 35, - "Foo": 2, - "": 4, - "SBJsonParser": 2, - "maxDepth": 2, - "*error": 3, - "objectWithData": 7, - "NSData*": 1, - "data": 27, - "objectWithString": 5, - "repr": 5, - "jsonText": 1, - "error": 75, - "NSError**": 2, - "nibNameOrNil": 1, - "NSBundle": 1, - "nibBundleOrNil": 1, - "//self.variableHeightRows": 1, - "self.tableViewStyle": 1, - "UITableViewStyleGrouped": 1, - "self.dataSource": 1, - "TTSectionedDataSource": 1, - "dataSourceWithObjects": 1, - "TTTableTextItem": 48, - "itemWithText": 48, - "URL": 48, - "@synthesize": 7, - "self.maxDepth": 2, - "u": 4, - "Methods": 1, - "NSData": 28, - "self.error": 3, - "SBJsonStreamParserAccumulator": 2, - "*accumulator": 1, - "SBJsonStreamParserAdapter": 2, - "*adapter": 1, - "adapter.delegate": 1, - "accumulator": 1, - "SBJsonStreamParser": 2, - "*parser": 1, - "parser.maxDepth": 1, - "parser.delegate": 1, - "adapter": 1, - "switch": 3, - "parser": 3, - "parse": 1, - "case": 8, - "SBJsonStreamParserComplete": 1, - "accumulator.value": 1, - "break": 13, - "SBJsonStreamParserWaitingForData": 1, - "SBJsonStreamParserError": 1, - "parser.error": 1, - "dataUsingEncoding": 2, - "NSUTF8StringEncoding": 2, - "error_": 2, - "tmp": 3, - "NSDictionary": 37, - "*ui": 1, - "dictionaryWithObjectsAndKeys": 10, - "NSLocalizedDescriptionKey": 10, - "*error_": 1, - "NSError": 51, - "errorWithDomain": 6, - "code": 16, - "userInfo": 15, - "ui": 1, - "PlaygroundViewController": 2, - "UIScrollView*": 1, - "_scrollView": 9, - "": 1, - "static": 102, - "const": 28, - "kFramePadding": 7, - "kElementSpacing": 3, - "kGroupSpacing": 5, - "addHeader": 5, - "yOffset": 42, - "UILabel*": 2, - "label": 6, - "UILabel": 2, - "CGRectZero": 5, - "label.text": 2, - "label.font": 3, - "label.numberOfLines": 2, - "label.frame": 4, - "frame.origin.x": 3, - "frame.size.width": 4, - "sizeWithFont": 2, - "constrainedToSize": 2, - "CGSizeMake": 3, - ".height": 4, - "label.frame.size.height": 2, - "addText": 5, - "UIScrollView": 1, - "_scrollView.autoresizingMask": 1, - "UIViewAutoresizingFlexibleHeight": 1, - "NSLocalizedString": 9, - "UIButton*": 1, - "button": 5, - "UIButton": 1, - "buttonWithType": 1, - "UIButtonTypeRoundedRect": 1, - "setTitle": 1, - "UIControlStateNormal": 1, - "addTarget": 1, + "R": 1, + "R_err": 2, + "/I1": 1, + "**2": 2, + "U1/I1**2": 1, + "phi_err": 3, + "alpha": 2, + "beta": 1, + "R0": 6, + "R0_err": 2, + "alpha*R0": 2, + "*np.sqrt": 6, + "*beta*R": 5, + "alpha**2*R0": 5, + "*beta*R0": 7, + "*beta*R0*T0": 2, + "epsilon_err": 2, + "f1": 1, + "f2": 1, + "f3": 1, + "alpha**2": 1, + "*beta": 1, + "*beta*T0": 1, + "*beta*R0**2": 1, + "f1**2": 1, + "f2**2": 1, + "f3**2": 1, + "parser": 1, + "argparse.ArgumentParser": 1, + "description": 1, + "#parser.add_argument": 3, + "metavar": 1, + "nargs": 1, + "help": 2, + "dest": 1, + "default": 1, "action": 1, - "@selector": 28, - "debugTestAction": 2, - "forControlEvents": 1, - "UIControlEventTouchUpInside": 1, - "sizeToFit": 1, - "button.frame": 2, - "stringWithFormat": 6, - "TTCurrentLocale": 2, - "displayNameForKey": 1, - "NSLocaleIdentifier": 1, - "value": 21, - "localeIdentifier": 1, - "TTPathForBundleResource": 1, - "TTPathForDocumentsResource": 1, - "md5Hash": 1, - "setContentSize": 1, - "viewDidUnload": 2, - "viewDidAppear": 2, - "flashScrollIndicators": 1, - "#ifdef": 10, - "DEBUG": 1, - "NSLog": 4, - "#else": 8, - "#endif": 59, - "TTDPRINTMETHODNAME": 1, - "TTDPRINT": 9, - "TTMAXLOGLEVEL": 1, - "TTDERROR": 1, - "TTLOGLEVEL_ERROR": 1, - "TTDWARNING": 1, - "TTLOGLEVEL_WARNING": 1, - "TTDINFO": 1, - "TTLOGLEVEL_INFO": 1, - "TTDCONDITIONLOG": 3, - "true": 9, - "false": 3, - "rand": 1, - "%": 30, - "TTDASSERT": 2, - "#include": 18, - "": 2, - "": 1, - "": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "": 2, - "": 1, - "//#include": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "//#import": 1, - "": 2, - "": 1, - "": 2, - "": 2, - "": 1, - "": 1, - "": 2, - "#ifndef": 9, - "__has_feature": 3, - "#define": 65, - "x": 10, - "JK_ENABLE_CF_TRANSFER_OWNERSHIP_CALLBACKS": 2, - "#warning": 1, - "As": 1, - "JSONKit": 11, - "v1.4": 1, - "longer": 2, - "required.": 1, - "It": 2, - "option.": 1, - "__OBJC_GC__": 1, - "#error": 6, - "does": 3, - "support": 4, - "Objective": 2, - "C": 6, - "Garbage": 1, - "Collection": 1, - "#if": 41, - "objc_arc": 1, - "Automatic": 1, - "Reference": 1, - "Counting": 1, - "ARC": 1, - "UINT_MAX": 3, - "xffffffffU": 1, - "||": 42, - "INT_MIN": 3, - "fffffff": 1, - "ULLONG_MAX": 1, - "xffffffffffffffffULL": 1, - "LLONG_MIN": 1, - "fffffffffffffffLL": 1, - "LL": 1, - "requires": 4, - "types": 2, - "be": 49, - "bits": 1, - "respectively.": 1, - "defined": 16, - "__LP64__": 4, - "&&": 123, - "ULONG_MAX": 3, - "INT_MAX": 2, - "LONG_MAX": 3, - "LONG_MIN": 3, - "WORD_BIT": 1, - "LONG_BIT": 1, - "same": 6, - "bit": 1, - "architectures.": 1, - "NSUIntegerMax": 7, - "NSIntegerMax": 4, - "NSIntegerMin": 3, - "type.": 3, - "SIZE_MAX": 1, - "SSIZE_MAX": 1, - "JK_HASH_INIT": 1, - "UL": 138, - "JK_FAST_TRAILING_BYTES": 2, - "JK_CACHE_SLOTS_BITS": 2, - "JK_CACHE_SLOTS": 1, - "<<": 16, - "JK_CACHE_PROBES": 1, - "JK_INIT_CACHE_AGE": 1, - "JK_TOKENBUFFER_SIZE": 1, - "JK_STACK_OBJS": 1, - "JK_JSONBUFFER_SIZE": 1, - "JK_UTF8BUFFER_SIZE": 1, - "JK_ENCODE_CACHE_SLOTS": 1, - "__GNUC__": 14, - "JK_ATTRIBUTES": 15, - "attr": 3, - "...": 11, - "__attribute__": 3, - "##__VA_ARGS__": 7, - "JK_EXPECTED": 4, - "cond": 12, - "expect": 3, - "__builtin_expect": 1, - "long": 71, - "JK_EXPECT_T": 22, - "U": 2, - "JK_EXPECT_F": 14, - "JK_PREFETCH": 2, - "ptr": 3, - "__builtin_prefetch": 1, - "JK_STATIC_INLINE": 10, - "__inline__": 1, - "always_inline": 1, - "JK_ALIGNED": 1, - "aligned": 1, - "JK_UNUSED_ARG": 2, - "unused": 3, - "JK_WARN_UNUSED": 1, - "warn_unused_result": 9, - "JK_WARN_UNUSED_CONST": 1, - "JK_WARN_UNUSED_PURE": 1, - "pure": 2, - "JK_WARN_UNUSED_SENTINEL": 1, - "sentinel": 1, - "JK_NONNULL_ARGS": 1, - "nonnull": 6, - "JK_WARN_UNUSED_NONNULL_ARGS": 1, - "JK_WARN_UNUSED_CONST_NONNULL_ARGS": 1, - "JK_WARN_UNUSED_PURE_NONNULL_ARGS": 1, - "__GNUC_MINOR__": 3, - "JK_ALLOC_SIZE_NON_NULL_ARGS_WARN_UNUSED": 2, - "nn": 4, - "alloc_size": 1, - "JKArray": 14, - "JKDictionaryEnumerator": 4, - "JKDictionary": 22, - "JSONNumberStateStart": 1, - "JSONNumberStateFinished": 1, - "JSONNumberStateError": 1, - "JSONNumberStateWholeNumberStart": 1, - "JSONNumberStateWholeNumberMinus": 1, - "JSONNumberStateWholeNumberZero": 1, - "JSONNumberStateWholeNumber": 1, - "JSONNumberStatePeriod": 1, - "JSONNumberStateFractionalNumberStart": 1, - "JSONNumberStateFractionalNumber": 1, - "JSONNumberStateExponentStart": 1, - "JSONNumberStateExponentPlusMinus": 1, - "JSONNumberStateExponent": 1, - "JSONStringStateStart": 1, - "JSONStringStateParsing": 1, - "JSONStringStateFinished": 1, - "JSONStringStateError": 1, - "JSONStringStateEscape": 1, - "JSONStringStateEscapedUnicode1": 1, - "JSONStringStateEscapedUnicode2": 1, - "JSONStringStateEscapedUnicode3": 1, - "JSONStringStateEscapedUnicode4": 1, - "JSONStringStateEscapedUnicodeSurrogate1": 1, - "JSONStringStateEscapedUnicodeSurrogate2": 1, - "JSONStringStateEscapedUnicodeSurrogate3": 1, - "JSONStringStateEscapedUnicodeSurrogate4": 1, - "JSONStringStateEscapedNeedEscapeForSurrogate": 1, - "JSONStringStateEscapedNeedEscapedUForSurrogate": 1, - "JKParseAcceptValue": 2, - "JKParseAcceptComma": 2, - "JKParseAcceptEnd": 3, - "JKParseAcceptValueOrEnd": 1, - "JKParseAcceptCommaOrEnd": 1, - "JKClassUnknown": 1, - "JKClassString": 1, - "JKClassNumber": 1, - "JKClassArray": 1, - "JKClassDictionary": 1, - "JKClassNull": 1, - "JKManagedBufferOnStack": 1, - "JKManagedBufferOnHeap": 1, - "JKManagedBufferLocationMask": 1, - "JKManagedBufferLocationShift": 1, - "JKManagedBufferMustFree": 1, - "JKFlags": 5, - "JKManagedBufferFlags": 1, - "JKObjectStackOnStack": 1, - "JKObjectStackOnHeap": 1, - "JKObjectStackLocationMask": 1, - "JKObjectStackLocationShift": 1, - "JKObjectStackMustFree": 1, - "JKObjectStackFlags": 1, - "JKTokenTypeInvalid": 1, - "JKTokenTypeNumber": 1, - "JKTokenTypeString": 1, - "JKTokenTypeObjectBegin": 1, - "JKTokenTypeObjectEnd": 1, - "JKTokenTypeArrayBegin": 1, - "JKTokenTypeArrayEnd": 1, - "JKTokenTypeSeparator": 1, - "JKTokenTypeComma": 1, - "JKTokenTypeTrue": 1, - "JKTokenTypeFalse": 1, - "JKTokenTypeNull": 1, - "JKTokenTypeWhiteSpace": 1, - "JKTokenType": 2, - "JKValueTypeNone": 1, - "JKValueTypeString": 1, - "JKValueTypeLongLong": 1, - "JKValueTypeUnsignedLongLong": 1, - "JKValueTypeDouble": 1, - "JKValueType": 1, - "JKEncodeOptionAsData": 1, - "JKEncodeOptionAsString": 1, - "JKEncodeOptionAsTypeMask": 1, - "JKEncodeOptionCollectionObj": 1, - "JKEncodeOptionStringObj": 1, - "JKEncodeOptionStringObjTrimQuotes": 1, - "JKEncodeOptionType": 2, - "JKHash": 4, - "JKTokenCacheItem": 2, - "JKTokenCache": 2, - "JKTokenValue": 2, - "JKParseToken": 2, - "JKPtrRange": 2, - "JKObjectStack": 5, - "JKBuffer": 2, - "JKConstBuffer": 2, - "JKConstPtrRange": 2, - "JKRange": 2, - "JKManagedBuffer": 5, - "JKFastClassLookup": 2, - "JKEncodeCache": 6, - "JKEncodeState": 11, - "JKObjCImpCache": 2, - "JKHashTableEntry": 21, - "serializeObject": 1, - "object": 36, - "JKSerializeOptionFlags": 16, - "optionFlags": 1, - "encodeOption": 2, - "JKSERIALIZER_BLOCKS_PROTO": 1, - "selector": 12, - "SEL": 19, - "**": 27, - "releaseState": 1, - "keyHash": 21, - "uint32_t": 1, - "UTF32": 11, - "uint16_t": 1, - "UTF16": 1, - "uint8_t": 1, - "UTF8": 2, - "conversionOK": 1, - "sourceExhausted": 1, - "targetExhausted": 1, - "sourceIllegal": 1, - "ConversionResult": 1, - "UNI_REPLACEMENT_CHAR": 1, - "FFFD": 1, - "UNI_MAX_BMP": 1, - "FFFF": 3, - "UNI_MAX_UTF16": 1, - "UNI_MAX_UTF32": 1, - "FFFFFFF": 1, - "UNI_MAX_LEGAL_UTF32": 1, - "UNI_SUR_HIGH_START": 1, - "xD800": 1, - "UNI_SUR_HIGH_END": 1, - "xDBFF": 1, - "UNI_SUR_LOW_START": 1, - "xDC00": 1, - "UNI_SUR_LOW_END": 1, - "xDFFF": 1, - "char": 19, - "trailingBytesForUTF8": 1, - "offsetsFromUTF8": 1, - "E2080UL": 1, - "C82080UL": 1, - "xFA082080UL": 1, - "firstByteMark": 1, - "xC0": 1, - "xE0": 1, - "xF0": 1, - "xF8": 1, - "xFC": 1, - "JK_AT_STRING_PTR": 1, - "&": 36, - "stringBuffer.bytes.ptr": 2, - "atIndex": 6, - "JK_END_STRING_PTR": 1, - "stringBuffer.bytes.length": 1, - "*_JKArrayCreate": 2, - "*objects": 5, - "count": 99, - "mutableCollection": 7, - "_JKArrayInsertObjectAtIndex": 3, - "*array": 9, - "newObject": 12, - "objectIndex": 48, - "_JKArrayReplaceObjectAtIndexWithObject": 3, - "_JKArrayRemoveObjectAtIndex": 3, - "_JKDictionaryCapacityForCount": 4, - "*_JKDictionaryCreate": 2, - "*keys": 2, - "*keyHashes": 2, - "*_JKDictionaryHashEntry": 2, - "*dictionary": 13, - "_JKDictionaryCapacity": 3, - "_JKDictionaryResizeIfNeccessary": 3, - "_JKDictionaryRemoveObjectWithEntry": 3, - "*entry": 4, - "_JKDictionaryAddObject": 4, - "*_JKDictionaryHashTableEntryForKey": 2, - "aKey": 13, - "_JSONDecoderCleanup": 1, - "JSONDecoder": 2, - "*decoder": 1, - "_NSStringObjectFromJSONString": 1, - "*jsonString": 1, - "JKParseOptionFlags": 12, - "parseOptionFlags": 11, - "**error": 1, - "jk_managedBuffer_release": 1, - "*managedBuffer": 3, - "jk_managedBuffer_setToStackBuffer": 1, - "*ptr": 2, - "size_t": 23, - "length": 32, - "*jk_managedBuffer_resize": 1, - "newSize": 1, - "jk_objectStack_release": 1, - "*objectStack": 3, - "jk_objectStack_setToStackBuffer": 1, - "**objects": 1, - "**keys": 1, - "CFHashCode": 1, - "*cfHashes": 1, - "jk_objectStack_resize": 1, - "newCount": 1, - "jk_error": 1, - "JKParseState": 18, - "*parseState": 16, - "*format": 7, - "jk_parse_string": 1, - "jk_parse_number": 1, - "jk_parse_is_newline": 1, - "*atCharacterPtr": 1, - "jk_parse_skip_newline": 1, - "jk_parse_skip_whitespace": 1, - "jk_parse_next_token": 1, - "jk_error_parse_accept_or3": 1, - "*or1String": 1, - "*or2String": 1, - "*or3String": 1, - "*jk_create_dictionary": 1, - "startingObjectIndex": 1, - "*jk_parse_dictionary": 1, - "*jk_parse_array": 1, - "*jk_object_for_token": 1, - "*jk_cachedObjects": 1, - "jk_cache_age": 1, - "jk_set_parsed_token": 1, - "type": 5, - "advanceBy": 1, - "jk_encode_error": 1, - "*encodeState": 9, - "jk_encode_printf": 1, - "*cacheSlot": 4, - "startingAtIndex": 4, - "jk_encode_write": 1, - "jk_encode_writePrettyPrintWhiteSpace": 1, - "jk_encode_write1slow": 2, - "ssize_t": 2, - "depthChange": 2, - "jk_encode_write1fast": 2, - "jk_encode_writen": 1, - "jk_encode_object_hash": 1, - "*objectPtr": 2, - "jk_encode_updateCache": 1, - "jk_encode_add_atom_to_buffer": 1, - "jk_encode_write1": 1, - "es": 3, - "dc": 3, - "f": 8, - "_jk_encode_prettyPrint": 1, - "jk_min": 1, - "b": 4, - "jk_max": 3, - "jk_calculateHash": 1, - "currentHash": 1, - "c": 7, - "Class": 3, - "_JKArrayClass": 5, - "NULL": 152, - "_JKArrayInstanceSize": 4, - "_JKDictionaryClass": 5, - "_JKDictionaryInstanceSize": 4, - "_jk_NSNumberClass": 2, - "NSNumberAllocImp": 2, - "_jk_NSNumberAllocImp": 2, - "NSNumberInitWithUnsignedLongLongImp": 2, - "_jk_NSNumberInitWithUnsignedLongLongImp": 2, - "extern": 6, - "jk_collectionClassLoadTimeInitialization": 2, - "constructor": 1, - "NSAutoreleasePool": 2, - "*pool": 1, - "Though": 1, - "technically": 1, - "required": 2, - "run": 1, - "time": 9, - "environment": 1, - "load": 1, - "initialization": 1, - "may": 8, - "less": 1, - "than": 9, - "ideal.": 1, - "objc_getClass": 2, - "class_getInstanceSize": 2, - "NSNumber": 11, - "class": 30, - "methodForSelector": 2, - "temp_NSNumber": 4, - "initWithUnsignedLongLong": 1, - "release": 66, - "pool": 2, - "NSMutableArray": 31, - "": 2, - "NSMutableCopying": 2, - "NSFastEnumeration": 2, - "capacity": 51, - "mutations": 20, - "allocWithZone": 4, - "NSZone": 4, - "zone": 8, - "NSException": 19, - "raise": 18, - "NSInvalidArgumentException": 6, - "format": 18, - "NSStringFromClass": 18, - "NSStringFromSelector": 16, - "_cmd": 16, - "NSCParameterAssert": 19, - "objects": 58, - "array": 84, - "calloc": 5, - "Directly": 2, - "allocate": 2, - "instance": 2, - "via": 5, - "calloc.": 2, - "isa": 2, - "malloc": 1, - "sizeof": 13, - "autorelease": 21, - "memcpy": 2, - "NO": 30, - "<=>": 15, - "*newObjects": 1, - "newObjects": 2, - "realloc": 1, - "NSMallocException": 2, - "memset": 1, - "<": 56, - "memmove": 2, - "CFRelease": 19, - "atObject": 12, - "for": 99, - "free": 4, - "NSParameterAssert": 15, - "getObjects": 2, - "objectsPtr": 3, - "NSRange": 1, - "NSMaxRange": 4, - "NSRangeException": 6, - "range.location": 2, - "range.length": 1, - "objectAtIndex": 8, - "countByEnumeratingWithState": 2, - "NSFastEnumerationState": 2, - "stackbuf": 8, - "len": 6, - "mutationsPtr": 2, - "itemsPtr": 2, - "enumeratedCount": 8, - "while": 11, - "insertObject": 1, - "anObject": 16, - "NSInternalInconsistencyException": 4, - "__clang_analyzer__": 3, - "Stupid": 2, - "clang": 3, - "analyzer...": 2, - "Issue": 2, - "#19.": 2, - "removeObjectAtIndex": 1, - "replaceObjectAtIndex": 1, - "withObject": 10, - "copyWithZone": 1, - "initWithObjects": 2, - "mutableCopyWithZone": 1, - "NSEnumerator": 2, - "collection": 11, - "nextObject": 6, - "initWithJKDictionary": 3, - "initDictionary": 4, - "allObjects": 2, - "CFRetain": 4, - "arrayWithObjects": 1, - "_JKDictionaryHashEntry": 2, - "returnObject": 3, - "entry": 41, - ".key": 11, - "jk_dictionaryCapacities": 4, - "mid": 5, - "tableSize": 2, - "lround": 1, - "floor": 1, - "dictionary": 64, - "capacityForCount": 4, - "resize": 3, - "oldCapacity": 2, - "NS_BLOCK_ASSERTIONS": 1, - "oldCount": 2, - "*oldEntry": 1, - "idx": 33, - "oldEntry": 9, - ".keyHash": 2, - ".object": 7, - "keys": 5, - "keyHashes": 2, - "atEntry": 45, - "removeIdx": 3, - "entryIdx": 4, - "*atEntry": 3, - "addKeyEntry": 2, - "addIdx": 5, - "*atAddEntry": 1, - "atAddEntry": 6, - "keyEntry": 4, - "CFEqual": 2, - "CFHash": 1, - "If": 30, - "was": 4, - "in": 42, - "we": 73, - "would": 2, - "have": 15, - "found": 4, - "by": 12, - "now.": 1, - "objectForKey": 29, - "entryForKey": 3, - "_JKDictionaryHashTableEntryForKey": 1, - "andKeys": 1, - "arrayIdx": 5, - "keyEnumerator": 1, - "setObject": 9, - "forKey": 9, - "Why": 1, - "earth": 1, - "complain": 1, - "that": 23, - "but": 5, - "doesn": 1, - "Internal": 2, - "Unable": 2, - "temporary": 2, - "buffer.": 2, - "line": 2, - "#": 2, - "ld": 2, - "Invalid": 1, - "character": 1, - "string": 9, - "x.": 1, - "n": 7, - "r": 6, - "t": 15, - "A": 4, - "F": 1, - ".": 2, - "e": 1, - "double": 3, - "Unexpected": 1, - "token": 1, - "wanted": 1, - "Expected": 3, - "TARGET_OS_IPHONE": 11, - "": 1, - "": 1, - "*ASIHTTPRequestVersion": 2, - "*defaultUserAgent": 1, - "NetworkRequestErrorDomain": 12, - "*ASIHTTPRequestRunLoopMode": 1, - "CFOptionFlags": 1, - "kNetworkEvents": 1, - "kCFStreamEventHasBytesAvailable": 1, - "kCFStreamEventEndEncountered": 1, - "kCFStreamEventErrorOccurred": 1, - "*sessionCredentialsStore": 1, - "*sessionProxyCredentialsStore": 1, - "NSRecursiveLock": 13, - "*sessionCredentialsLock": 1, - "*sessionCookies": 1, - "RedirectionLimit": 1, - "NSTimeInterval": 10, - "defaultTimeOutSeconds": 3, - "ReadStreamClientCallBack": 1, - "CFReadStreamRef": 5, - "readStream": 5, - "CFStreamEventType": 2, - "*clientCallBackInfo": 1, - "ASIHTTPRequest*": 1, - "clientCallBackInfo": 1, - "handleNetworkEvent": 2, - "*progressLock": 1, - "*ASIRequestCancelledError": 1, - "*ASIRequestTimedOutError": 1, - "*ASIAuthenticationError": 1, - "*ASIUnableToCreateRequestError": 1, - "*ASITooMuchRedirectionError": 1, - "*bandwidthUsageTracker": 1, - "averageBandwidthUsedPerSecond": 2, - "nextConnectionNumberToCreate": 1, - "*persistentConnectionsPool": 1, - "*connectionsLock": 1, - "nextRequestID": 1, - "bandwidthUsedInLastSecond": 1, - "NSDate": 9, - "*bandwidthMeasurementDate": 1, - "NSLock": 2, - "*bandwidthThrottlingLock": 1, - "maxBandwidthPerSecond": 2, - "ASIWWANBandwidthThrottleAmount": 2, - "isBandwidthThrottled": 2, - "shouldThrottleBandwidthForWWANOnly": 1, - "*sessionCookiesLock": 1, - "*delegateAuthenticationLock": 1, - "*throttleWakeUpTime": 1, - "": 9, - "defaultCache": 3, - "runningRequestCount": 1, - "shouldUpdateNetworkActivityIndicator": 1, - "NSThread": 4, - "*networkThread": 1, - "NSOperationQueue": 4, - "*sharedQueue": 1, - "ASIHTTPRequest": 31, - "cancelLoad": 3, - "destroyReadStream": 3, - "scheduleReadStream": 1, - "unscheduleReadStream": 1, - "willAskDelegateForCredentials": 1, - "willAskDelegateForProxyCredentials": 1, - "askDelegateForProxyCredentials": 1, - "askDelegateForCredentials": 1, - "failAuthentication": 1, - "measureBandwidthUsage": 1, - "recordBandwidthUsage": 1, - "startRequest": 3, - "updateStatus": 2, - "NSTimer": 5, - "timer": 5, - "checkRequestStatus": 2, - "reportFailure": 3, - "reportFinished": 1, - "markAsFinished": 4, - "performRedirect": 1, - "shouldTimeOut": 2, - "willRedirect": 1, - "willAskDelegateToConfirmRedirect": 1, - "performInvocation": 2, - "NSInvocation": 4, - "invocation": 4, - "onTarget": 7, - "target": 5, - "releasingObject": 2, - "objectToRelease": 1, - "hideNetworkActivityIndicatorAfterDelay": 1, - "hideNetworkActivityIndicatorIfNeeeded": 1, - "runRequests": 1, - "configureProxies": 2, - "fetchPACFile": 1, - "finishedDownloadingPACFile": 1, - "theRequest": 1, - "runPACScript": 1, - "script": 1, - "timeOutPACRead": 1, - "useDataFromCache": 2, - "updatePartialDownloadSize": 1, - "registerForNetworkReachabilityNotifications": 1, - "unsubscribeFromNetworkReachabilityNotifications": 1, - "reachabilityChanged": 1, - "NSNotification": 2, - "note": 1, - "NS_BLOCKS_AVAILABLE": 8, - "performBlockOnMainThread": 2, - "ASIBasicBlock": 15, - "releaseBlocksOnMainThread": 4, - "releaseBlocks": 3, - "blocks": 16, - "callBlock": 1, - "complete": 12, - "*responseCookies": 3, - "responseStatusCode": 3, - "*lastActivityTime": 2, - "partialDownloadSize": 8, - "uploadBufferSize": 6, - "NSOutputStream": 6, - "*postBodyWriteStream": 1, - "NSInputStream": 7, - "*postBodyReadStream": 1, - "lastBytesRead": 3, - "lastBytesSent": 3, - "*cancelledLock": 2, - "*fileDownloadOutputStream": 2, - "*inflatedFileDownloadOutputStream": 2, - "authenticationRetryCount": 2, - "proxyAuthenticationRetryCount": 4, - "updatedProgress": 3, - "needsRedirect": 3, - "redirectCount": 2, - "*compressedPostBody": 1, - "*compressedPostBodyFilePath": 1, - "*authenticationRealm": 2, - "*proxyAuthenticationRealm": 3, - "*responseStatusMessage": 3, - "inProgress": 4, - "retryCount": 3, - "willRetryRequest": 1, - "connectionCanBeReused": 4, - "*connectionInfo": 2, - "*readStream": 1, - "ASIAuthenticationState": 5, - "authenticationNeeded": 3, - "readStreamIsScheduled": 1, - "downloadComplete": 2, - "*requestID": 3, - "*runLoopMode": 2, - "*statusTimer": 2, - "didUseCachedResponse": 3, - "NSURL": 21, - "*redirectURL": 2, - "isPACFileRequest": 3, - "*PACFileRequest": 2, - "*PACFileReadStream": 2, - "NSMutableData": 5, - "*PACFileData": 2, - "setter": 2, - "setSynchronous": 2, - "isSynchronous": 2, - "initialize": 1, - "persistentConnectionsPool": 3, - "connectionsLock": 3, - "progressLock": 1, - "bandwidthThrottlingLock": 1, - "sessionCookiesLock": 1, - "sessionCredentialsLock": 1, - "delegateAuthenticationLock": 1, - "bandwidthUsageTracker": 1, - "initWithCapacity": 2, - "ASIRequestTimedOutError": 1, - "initWithDomain": 5, - "ASIRequestTimedOutErrorType": 2, - "ASIAuthenticationError": 1, - "ASIAuthenticationErrorType": 3, - "ASIRequestCancelledError": 2, - "ASIRequestCancelledErrorType": 2, - "ASIUnableToCreateRequestError": 3, - "ASIUnableToCreateRequestErrorType": 2, - "ASITooMuchRedirectionError": 1, - "ASITooMuchRedirectionErrorType": 3, - "sharedQueue": 4, - "setMaxConcurrentOperationCount": 1, - "initWithURL": 4, - "newURL": 16, - "setRequestMethod": 3, - "setRunLoopMode": 2, - "NSDefaultRunLoopMode": 2, - "setShouldAttemptPersistentConnection": 2, - "setPersistentConnectionTimeoutSeconds": 2, - "setShouldPresentCredentialsBeforeChallenge": 1, - "setShouldRedirect": 1, - "setShowAccurateProgress": 1, - "setShouldResetDownloadProgress": 1, - "setShouldResetUploadProgress": 1, - "setAllowCompressedResponse": 1, - "setShouldWaitToInflateCompressedResponses": 1, - "setDefaultResponseEncoding": 1, - "NSISOLatin1StringEncoding": 2, - "setShouldPresentProxyAuthenticationDialog": 1, - "setTimeOutSeconds": 1, - "setUseSessionPersistence": 1, - "setUseCookiePersistence": 1, - "setValidatesSecureCertificate": 1, - "setRequestCookies": 2, - "setDidStartSelector": 1, - "requestStarted": 3, - "setDidReceiveResponseHeadersSelector": 1, - "request": 113, - "didReceiveResponseHeaders": 2, - "setWillRedirectSelector": 1, - "willRedirectToURL": 1, - "setDidFinishSelector": 1, - "requestFinished": 4, - "setDidFailSelector": 1, - "requestFailed": 2, - "setDidReceiveDataSelector": 1, - "didReceiveData": 2, - "setURL": 3, - "setCancelledLock": 1, - "setDownloadCache": 3, - "requestWithURL": 7, - "usingCache": 5, - "cache": 17, - "andCachePolicy": 3, - "ASIUseDefaultCachePolicy": 1, - "ASICachePolicy": 4, - "policy": 7, - "*request": 1, - "setCachePolicy": 1, - "setAuthenticationNeeded": 2, - "ASINoAuthenticationNeededYet": 3, - "requestAuthentication": 7, - "proxyAuthentication": 7, - "clientCertificateIdentity": 5, - "redirectURL": 1, - "statusTimer": 3, - "invalidate": 2, - "queue": 12, - "postBody": 11, - "compressedPostBody": 4, - "requestHeaders": 6, - "requestCookies": 1, - "downloadDestinationPath": 11, - "temporaryFileDownloadPath": 2, - "temporaryUncompressedDataDownloadPath": 3, - "fileDownloadOutputStream": 1, - "inflatedFileDownloadOutputStream": 1, - "username": 8, - "password": 11, - "domain": 2, - "authenticationRealm": 4, - "authenticationScheme": 4, - "requestCredentials": 1, - "proxyHost": 2, - "proxyType": 1, - "proxyUsername": 3, - "proxyPassword": 3, - "proxyDomain": 1, - "proxyAuthenticationRealm": 2, - "proxyAuthenticationScheme": 2, - "proxyCredentials": 1, - "url": 24, - "originalURL": 1, - "lastActivityTime": 1, - "responseCookies": 1, - "rawResponseData": 4, - "responseHeaders": 5, - "requestMethod": 13, - "cancelledLock": 37, - "postBodyFilePath": 7, - "compressedPostBodyFilePath": 4, - "postBodyWriteStream": 7, - "postBodyReadStream": 2, - "PACurl": 1, - "clientCertificates": 2, - "responseStatusMessage": 1, - "connectionInfo": 13, - "requestID": 2, - "dataDecompressor": 1, - "userAgentString": 1, - "*blocks": 1, - "completionBlock": 5, - "addObject": 16, - "failureBlock": 5, - "startedBlock": 5, - "headersReceivedBlock": 5, - "bytesReceivedBlock": 8, - "bytesSentBlock": 5, - "downloadSizeIncrementedBlock": 5, - "uploadSizeIncrementedBlock": 5, - "dataReceivedBlock": 5, - "proxyAuthenticationNeededBlock": 5, - "authenticationNeededBlock": 5, - "requestRedirectedBlock": 5, - "performSelectorOnMainThread": 2, - "waitUntilDone": 4, - "isMainThread": 2, - "Blocks": 1, - "will": 57, - "released": 2, - "when": 46, + "version": 6, + "parser.parse_args": 1, + "absolute_import": 1, + "division": 1, + "with_statement": 1, + "Cookie": 1, + "logging": 1, + "socket": 1, + "time": 1, + "tornado.escape": 1, + "utf8": 2, + "native_str": 4, + "parse_qs_bytes": 3, + "tornado": 3, + "httputil": 1, + "iostream": 1, + "tornado.netutil": 1, + "TCPServer": 2, + "stack_context": 1, + "tornado.util": 1, + "bytes_type": 2, + "ssl": 2, + "Python": 1, + "ImportError": 1, + "HTTPServer": 1, + "request_callback": 4, + "no_keep_alive": 4, + "io_loop": 3, + "xheaders": 4, + "ssl_options": 3, + "self.request_callback": 5, + "self.no_keep_alive": 4, + "self.xheaders": 3, + "TCPServer.__init__": 1, + "handle_stream": 1, + "stream": 4, + "address": 4, + "HTTPConnection": 2, + "_BadRequestException": 5, + "Exception": 2, + "self.stream": 1, + "self.address": 3, + "self._request": 7, + "self._request_finished": 4, + "self._header_callback": 3, + "stack_context.wrap": 2, + "self._on_headers": 1, + "self.stream.read_until": 2, + "self._write_callback": 5, + "write": 2, + "chunk": 5, + "callback": 7, + "self.stream.closed": 1, + "self.stream.write": 2, + "self._on_write_complete": 1, + "finish": 2, + "self.stream.writing": 2, + "self._finish_request": 2, + "_on_write_complete": 1, + "_finish_request": 1, + "disconnect": 5, + "connection_header": 5, + "self._request.headers.get": 2, + "connection_header.lower": 1, + "self._request.supports_http_1_1": 1, + "self._request.headers": 1, + "self._request.method": 2, + "self.stream.close": 2, + "_on_headers": 1, + "data.decode": 1, + "eol": 3, + "data.find": 1, + "start_line": 1, "method": 5, -<<<<<<< HEAD "uri": 5, "start_line.split": 1, "version.startswith": 1, @@ -93552,1782 +57671,344 @@ "exp": 1, "rowMeans": 1, "log": 5, -======= - "exits": 1, - "setup": 2, - "addRequestHeader": 5, - "header": 20, - "setRequestHeaders": 2, - "dictionaryWithCapacity": 2, - "buildPostBody": 3, - "haveBuiltPostBody": 3, - "Are": 1, - "submitting": 1, - "body": 8, - "from": 18, - "file": 14, - "disk": 1, - "were": 5, - "writing": 2, - "post": 2, - "appendPostData": 3, - "appendPostDataFromFile": 3, - "close": 5, - "write": 4, - "stream": 13, - "setPostBodyWriteStream": 2, - "*path": 1, - "shouldCompressRequestBody": 6, - "setCompressedPostBodyFilePath": 1, - "NSTemporaryDirectory": 2, - "stringByAppendingPathComponent": 2, - "NSProcessInfo": 2, - "processInfo": 2, - "globallyUniqueString": 2, - "*err": 3, - "ASIDataCompressor": 2, - "compressDataFromFile": 1, - "toFile": 1, - "err": 8, - "failWithError": 11, - "setPostLength": 3, - "NSFileManager": 1, - "attributesOfItemAtPath": 1, - "fileSize": 1, - "ASIFileManagementError": 2, - "NSUnderlyingErrorKey": 3, - "Otherwise": 2, - "an": 20, - "memory": 3, - "*compressedBody": 1, - "compressData": 1, - "setCompressedPostBody": 1, - "compressedBody": 1, - "postLength": 6, - "setHaveBuiltPostBody": 1, - "setupPostBody": 3, - "shouldStreamPostDataFromDisk": 4, - "setPostBodyFilePath": 1, - "setDidCreateTemporaryPostDataFile": 1, - "initToFileAtPath": 1, - "append": 1, - "open": 2, - "setPostBody": 1, - "bytes": 8, - "maxLength": 3, - "appendData": 2, - "*stream": 1, - "initWithFileAtPath": 1, - "bytesRead": 5, - "hasBytesAvailable": 1, - "buffer": 7, - "*256": 1, - "read": 3, - "dataWithBytes": 1, - "lock": 19, - "*m": 1, - "unlock": 20, - "m": 1, - "newRequestMethod": 3, - "*u": 1, - "isEqual": 4, - "setRedirectURL": 2, - "d": 11, - "setDelegate": 4, - "newDelegate": 6, - "q": 2, - "setQueue": 2, - "newQueue": 3, - "get": 4, - "information": 5, - "about": 4, - "cancelOnRequestThread": 2, - "DEBUG_REQUEST_STATUS": 4, - "ASI_DEBUG_LOG": 11, - "isCancelled": 6, - "setComplete": 3, - "willChangeValueForKey": 1, - "cancelled": 5, - "didChangeValueForKey": 1, - "cancel": 5, - "performSelector": 7, - "onThread": 2, - "threadForRequest": 3, - "clearDelegatesAndCancel": 2, - "Clear": 3, - "delegates": 2, - "setDownloadProgressDelegate": 2, - "setUploadProgressDelegate": 2, - "result": 4, - "responseString": 3, - "*data": 2, - "responseData": 5, - "initWithBytes": 1, - "encoding": 7, - "responseEncoding": 3, - "isResponseCompressed": 3, - "*encoding": 1, - "rangeOfString": 1, - ".location": 1, - "NSNotFound": 1, - "shouldWaitToInflateCompressedResponses": 4, - "ASIDataDecompressor": 4, - "uncompressData": 1, - "running": 4, - "startSynchronous": 2, - "DEBUG_THROTTLING": 2, - "ASIHTTPRequestRunLoopMode": 2, - "setInProgress": 3, - "main": 8, - "NSRunLoop": 2, - "currentRunLoop": 2, - "runMode": 1, - "runLoopMode": 2, - "beforeDate": 1, - "distantFuture": 1, - "start": 3, - "startAsynchronous": 2, - "addOperation": 1, - "concurrency": 1, - "isConcurrent": 1, - "isFinished": 1, - "finished": 3, - "isExecuting": 1, - "logic": 1, - "@try": 1, - "__IPHONE_OS_VERSION_MAX_ALLOWED": 4, - "__IPHONE_4_0": 6, - "isMultitaskingSupported": 2, - "shouldContinueWhenAppEntersBackground": 3, - "backgroundTask": 7, - "UIBackgroundTaskInvalid": 3, - "UIApplication": 2, - "sharedApplication": 2, - "beginBackgroundTaskWithExpirationHandler": 1, - "dispatch_async": 1, - "dispatch_get_main_queue": 1, - "endBackgroundTask": 1, - "HEAD": 10, - "generated": 3, - "ASINetworkQueue": 4, - "set": 24, - "already.": 1, - "so": 15, - "should": 8, - "proceed.": 1, - "setDidUseCachedResponse": 1, - "Must": 1, - "call": 8, - "before": 6, - "create": 1, - "needs": 1, - "mainRequest": 9, - "ll": 6, - "already": 4, - "CFHTTPMessageRef": 3, - "Create": 1, - "new": 10, - "HTTP": 9, - "request.": 1, - "CFHTTPMessageCreateRequest": 1, - "kCFAllocatorDefault": 3, - "CFStringRef": 1, - "CFURLRef": 1, - "useHTTPVersionOne": 3, - "kCFHTTPVersion1_0": 1, - "kCFHTTPVersion1_1": 1, - "//If": 2, - "need": 10, - "let": 8, - "generate": 1, - "its": 9, - "first": 9, - "use": 26, - "them": 10, - "buildRequestHeaders": 3, - "Even": 1, - "still": 2, - "give": 2, - "subclasses": 2, - "chance": 2, - "add": 5, - "their": 3, - "own": 3, - "requests": 21, - "ASIS3Request": 1, - "downloadCache": 5, - "default": 8, - "download": 9, - "downloading": 5, - "proxy": 11, - "PAC": 7, - "once": 3, - "process": 1, - "@catch": 1, - "*exception": 1, - "*underlyingError": 1, - "ASIUnhandledExceptionError": 3, - "exception": 3, - "reason": 1, - "NSLocalizedFailureReasonErrorKey": 1, - "underlyingError": 1, - "@finally": 1, - "applyAuthorizationHeader": 2, - "Do": 3, - "want": 5, - "send": 2, - "credentials": 35, - "are": 15, - "asked": 3, - "shouldPresentCredentialsBeforeChallenge": 4, - "DEBUG_HTTP_AUTHENTICATION": 4, - "*credentials": 1, - "auth": 2, - "basic": 3, - "authentication": 18, - "explicitly": 2, - "kCFHTTPAuthenticationSchemeBasic": 2, - "addBasicAuthenticationHeaderWithUsername": 2, - "andPassword": 2, - "See": 5, - "any": 3, - "cached": 2, - "session": 5, - "store": 4, - "useSessionPersistence": 6, - "findSessionAuthenticationCredentials": 2, - "When": 15, - "Authentication": 3, - "stored": 9, - "challenge": 1, - "CFNetwork": 3, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "apply": 2, - "Digest": 2, - "NTLM": 6, - "always": 2, - "like": 1, - "CFHTTPMessageApplyCredentialDictionary": 2, - "CFHTTPAuthenticationRef": 2, - "CFDictionaryRef": 1, - "setAuthenticationScheme": 1, - "removeAuthenticationCredentialsFromSessionStore": 3, - "these": 3, - "previous": 2, - "passed": 2, - "re": 9, - "retrying": 1, - "using": 8, - "our": 6, - "custom": 2, - "measure": 1, - "bandwidth": 3, - "throttled": 1, - "necessary": 2, - "setPostBodyReadStream": 2, - "ASIInputStream": 2, - "inputStreamWithData": 2, - "setReadStream": 2, - "NSMakeCollectable": 3, - "CFReadStreamCreateForStreamedHTTPRequest": 1, - "CFReadStreamCreateForHTTPRequest": 1, - "ASIInternalErrorWhileBuildingRequestType": 3, - "scheme": 5, - "lowercaseString": 1, - "validatesSecureCertificate": 3, - "*sslProperties": 2, - "initWithObjectsAndKeys": 1, - "numberWithBool": 3, - "kCFStreamSSLAllowsExpiredCertificates": 1, - "kCFStreamSSLAllowsAnyRoot": 1, - "kCFStreamSSLValidatesCertificateChain": 1, - "kCFNull": 1, - "kCFStreamSSLPeerName": 1, - "CFReadStreamSetProperty": 1, - "kCFStreamPropertySSLSettings": 1, - "CFTypeRef": 1, - "sslProperties": 2, - "*certificates": 1, - "arrayWithCapacity": 2, - "The": 15, - "SecIdentityRef": 3, - "certificates": 2, - "ve": 7, - "opened": 3, - "*oldStream": 1, - "Use": 6, - "persistent": 5, - "connection": 17, - "possible": 3, - "shouldAttemptPersistentConnection": 2, - "redirecting": 2, - "current": 2, - "connecting": 2, - "server": 8, - "host": 9, - "intValue": 4, - "port": 17, - "setConnectionInfo": 2, - "Check": 1, - "expired": 1, - "timeIntervalSinceNow": 1, - "DEBUG_PERSISTENT_CONNECTIONS": 3, - "removeObject": 2, - "//Some": 1, - "other": 3, - "reused": 2, - "previously": 1, - "there": 1, - "one": 1, - "We": 7, - "just": 4, - "make": 3, - "old": 5, - "http": 4, - "//lists.apple.com/archives/Macnetworkprog/2006/Mar/msg00119.html": 1, - "oldStream": 4, - "streamSuccessfullyOpened": 1, - "setConnectionCanBeReused": 2, - "shouldResetUploadProgress": 3, - "showAccurateProgress": 7, - "incrementUploadSizeBy": 3, - "updateProgressIndicator": 4, - "uploadProgressDelegate": 8, - "withProgress": 4, - "ofTotal": 4, - "shouldResetDownloadProgress": 3, - "downloadProgressDelegate": 10, - "Record": 1, - "started": 1, - "timeout": 6, - "nothing": 2, - "setLastActivityTime": 1, - "date": 3, - "setStatusTimer": 2, - "timerWithTimeInterval": 1, - "repeats": 1, - "addTimer": 1, - "forMode": 1, - "here": 2, - "sent": 6, - "more": 5, - "upload": 4, - "safely": 1, - "totalBytesSent": 5, - "***Black": 1, - "magic": 1, - "warning***": 1, - "reliable": 1, - "way": 1, - "track": 1, - "progress": 13, - "KB": 4, - "iPhone": 3, - "Mac": 2, - "very": 2, - "slow.": 1, - "secondsSinceLastActivity": 1, - "timeOutSeconds": 3, - "*1.5": 1, - "won": 3, - "updating": 1, - "checking": 1, - "told": 1, - "us": 2, - "performThrottling": 2, - "auto": 2, - "retry": 3, - "numberOfTimesToRetryOnTimeout": 2, - "resuming": 1, - "update": 6, - "Range": 1, - "take": 1, - "account": 1, - "perhaps": 1, - "uploaded": 2, - "far": 2, - "setTotalBytesSent": 1, - "CFReadStreamCopyProperty": 2, - "kCFStreamPropertyHTTPRequestBytesWrittenCount": 1, - "unsignedLongLongValue": 1, - "middle": 1, - "said": 1, - "might": 4, - "resume": 2, - "used": 16, - "preset": 2, - "content": 5, - "updateUploadProgress": 3, - "updateDownloadProgress": 3, - "NSProgressIndicator": 4, - "MaxValue": 2, - "UIProgressView": 2, - "max": 7, - "setMaxValue": 2, - "amount": 12, - "callerToRetain": 7, - "examined": 1, - "since": 1, - "authenticate": 1, - "contentLength": 6, - "bytesReadSoFar": 3, - "totalBytesRead": 4, - "setUpdatedProgress": 1, - "didReceiveBytes": 2, - "totalSize": 2, - "setLastBytesRead": 1, - "pass": 5, - "pointer": 2, - "directly": 1, - "number": 2, - "itself": 1, - "rather": 4, - "setArgument": 4, - "argumentNumber": 1, - "callback": 3, - "NSMethodSignature": 1, - "*cbSignature": 1, - "methodSignatureForSelector": 1, - "*cbInvocation": 1, - "invocationWithMethodSignature": 1, - "cbSignature": 1, - "cbInvocation": 5, - "setSelector": 1, - "setTarget": 1, - "Used": 13, - "until": 2, - "forget": 2, - "know": 3, - "attempt": 3, - "reuse": 3, - "theError": 6, - "removeObjectForKey": 1, - "dateWithTimeIntervalSinceNow": 1, - "persistentConnectionTimeoutSeconds": 4, - "ignore": 1, - "ASIFallbackToCacheIfLoadFailsCachePolicy": 2, - "cachePolicy": 3, - "canUseCachedDataForRequest": 1, - "setError": 2, - "*failedRequest": 1, - "created": 3, - "compatible": 1, - "fail": 1, - "failedRequest": 4, - "parsing": 2, - "response": 17, - "readResponseHeaders": 2, - "message": 2, - "kCFStreamPropertyHTTPResponseHeader": 1, - "Make": 1, - "sure": 1, - "didn": 3, - "tells": 1, - "keepAliveHeader": 2, - "NSScanner": 2, - "*scanner": 1, - "scannerWithString": 1, - "scanner": 5, - "scanString": 2, - "intoString": 3, - "scanInt": 2, - "scanUpToString": 1, - "probably": 4, - "what": 3, - "you": 10, - "hard": 1, - "keep": 2, - "throw": 1, - "away.": 1, - "*userAgentHeader": 1, - "*acceptHeader": 1, - "userAgentHeader": 2, - "acceptHeader": 2, - "setHaveBuiltRequestHeaders": 1, - "Force": 2, - "rebuild": 2, - "cookie": 1, - "incase": 1, - "got": 1, - "some": 1, - "cookies": 5, - "All": 2, - "remain": 1, - "they": 6, - "redirects": 2, - "applyCookieHeader": 2, - "redirected": 2, - "ones": 3, - "URLWithString": 1, - "valueForKey": 2, - "relativeToURL": 1, - "absoluteURL": 1, - "setNeedsRedirect": 1, - "This": 7, - "means": 1, - "manually": 1, - "redirect": 4, - "those": 1, - "global": 1, - "But": 1, - "safest": 1, - "option": 1, - "different": 4, - "responseCode": 1, - "parseStringEncodingFromHeaders": 2, - "Handle": 1, - "NSStringEncoding": 6, - "charset": 5, - "*mimeType": 1, - "parseMimeType": 2, - "mimeType": 2, - "andResponseEncoding": 2, - "fromContentType": 2, - "setResponseEncoding": 2, - "defaultResponseEncoding": 4, - "saveProxyCredentialsToKeychain": 1, - "newCredentials": 16, - "NSURLCredential": 8, - "*authenticationCredentials": 2, - "credentialWithUser": 2, - "kCFHTTPAuthenticationUsername": 2, - "kCFHTTPAuthenticationPassword": 2, - "persistence": 2, - "NSURLCredentialPersistencePermanent": 2, - "authenticationCredentials": 4, - "saveCredentials": 4, - "forProxy": 2, - "proxyPort": 2, - "realm": 14, - "saveCredentialsToKeychain": 3, - "forHost": 2, - "protocol": 10, - "applyProxyCredentials": 2, - "setProxyAuthenticationRetryCount": 1, - "Apply": 1, - "whatever": 1, - "ok": 1, - "built": 2, - "CFMutableDictionaryRef": 1, - "save": 3, - "keychain": 7, - "useKeychainPersistence": 4, - "*sessionCredentials": 1, - "sessionCredentials": 6, - "storeAuthenticationCredentialsInSessionStore": 2, - "setRequestCredentials": 1, - "findProxyCredentials": 2, - "*newCredentials": 1, - "*user": 1, - "*pass": 1, - "*theRequest": 1, - "try": 3, - "user": 6, - "connect": 1, - "website": 1, - "kCFHTTPAuthenticationSchemeNTLM": 1, - "Ok": 1, - "For": 2, - "authenticating": 2, - "proxies": 3, - "extract": 1, - "NSArray*": 1, - "ntlmComponents": 1, - "componentsSeparatedByString": 1, - "AUTH": 6, - "Request": 6, - "parent": 1, - "properties": 1, - "received": 5, - "ASIAuthenticationDialog": 2, - "had": 1, - "argc": 1, - "*argv": 1, - "window": 1, - "applicationDidFinishLaunching": 1, - "aNotification": 1, - "HEADER_Z_POSITION": 2, - "beginning": 1, - "height": 19, - "TUITableViewRowInfo": 3, - "TUITableViewSection": 16, - "*_tableView": 1, - "*_headerView": 1, - "Not": 2, - "reusable": 1, - "similar": 1, - "UITableView": 1, - "sectionIndex": 23, - "numberOfRows": 13, - "sectionHeight": 9, - "sectionOffset": 8, - "*rowInfo": 1, - "initWithNumberOfRows": 2, - "_tableView": 3, - "rowInfo": 7, - "_setupRowHeights": 2, - "*header": 1, - "self.headerView": 2, - "roundf": 2, - "header.frame.size.height": 1, - "i": 41, - "h": 3, - "_tableView.delegate": 1, - ".offset": 2, - "rowHeight": 2, - "sectionRowOffset": 2, - "tableRowOffset": 2, - "headerHeight": 4, - "self.headerView.frame.size.height": 1, - "headerView": 14, - "_tableView.dataSource": 3, - "respondsToSelector": 8, - "_headerView.autoresizingMask": 1, - "TUIViewAutoresizingFlexibleWidth": 1, - "_headerView.layer.zPosition": 1, - "Private": 1, - "_updateSectionInfo": 2, - "_updateDerepeaterViews": 2, - "pullDownView": 1, - "_tableFlags.animateSelectionChanges": 3, - "_tableFlags.delegateTableViewWillDisplayCellForRowAtIndexPath": 1, - "setDataSource": 1, - "_tableFlags.dataSourceNumberOfSectionsInTableView": 2, - "setAnimateSelectionChanges": 1, - "*s": 3, - "y": 12, - "CGRectMake": 8, - "self.bounds.size.width": 4, - "indexPath.section": 3, - "indexPath.row": 1, - "*section": 8, - "removeFromSuperview": 4, - "removeAllIndexes": 2, - "*sections": 1, - "bounds": 2, - ".size.height": 1, - "self.contentInset.top*2": 1, - "section.sectionOffset": 1, - "sections": 4, - "self.contentInset.bottom": 1, - "_enqueueReusableCell": 2, - "*identifier": 1, - "cell.reuseIdentifier": 1, - "*c": 1, - "lastObject": 1, - "removeLastObject": 1, - "prepareForReuse": 1, - "allValues": 1, - "SortCells": 1, - "*a": 2, - "*b": 2, - "*ctx": 1, - "a.frame.origin.y": 2, - "b.frame.origin.y": 2, - "*v": 2, - "v": 4, - "sortedArrayUsingComparator": 1, - "NSComparator": 1, - "NSComparisonResult": 1, - "INDEX_PATHS_FOR_VISIBLE_ROWS": 4, - "allKeys": 1, - "*i": 4, - "*cell": 7, - "*indexes": 2, - "CGRectIntersectsRect": 5, - "indexes": 4, - "addIndex": 3, - "*indexPaths": 1, - "cellRect": 7, - "indexPaths": 2, - "CGRectContainsPoint": 1, - "cellRect.origin.y": 1, - "origin": 1, - "brief": 1, - "Obtain": 1, - "whose": 2, - "specified": 1, - "exists": 1, - "negative": 1, - "returned": 1, - "param": 1, - "location": 3, - "p": 3, - "0": 2, - "width": 1, - "point.y": 1, - "section.headerView": 9, - "sectionLowerBound": 2, - "fromIndexPath.section": 1, - "sectionUpperBound": 3, - "toIndexPath.section": 1, - "rowLowerBound": 2, - "fromIndexPath.row": 1, - "rowUpperBound": 3, - "toIndexPath.row": 1, - "irow": 3, - "lower": 1, - "bound": 1, - "iteration...": 1, - "rowCount": 3, - "j": 5, - "stop": 4, - "FALSE": 2, - "...then": 1, - "zero": 1, - "subsequent": 2, - "iterations": 1, - "_topVisibleIndexPath": 1, - "*topVisibleIndex": 1, - "sortedArrayUsingSelector": 1, - "compare": 4, - "topVisibleIndex": 2, - "setFrame": 2, - "_tableFlags.forceSaveScrollPosition": 1, - "setContentOffset": 2, - "_tableFlags.didFirstLayout": 1, - "prevent": 2, - "during": 4, - "layout": 3, - "pinned": 5, - "isKindOfClass": 2, - "TUITableViewSectionHeader": 5, - ".pinnedToViewport": 2, - "TRUE": 1, - "pinnedHeader": 1, - "CGRectGetMaxY": 2, - "headerFrame": 4, - "pinnedHeader.frame.origin.y": 1, - "intersecting": 1, - "push": 1, - "upwards.": 1, - "pinnedHeaderFrame": 2, - "pinnedHeader.frame": 2, - "pinnedHeaderFrame.origin.y": 1, - "notify": 3, - "section.headerView.frame": 1, - "setNeedsLayout": 3, - "section.headerView.superview": 1, - "remove": 4, - "offscreen": 2, - "toRemove": 1, - "enumerateIndexesUsingBlock": 1, - "removeIndex": 1, - "_layoutCells": 3, - "visibleCellsNeedRelayout": 5, - "remaining": 1, - "cells": 7, - "needed": 3, - "cell.frame": 1, - "cell.layer.zPosition": 1, - "visibleRect": 3, - "Example": 1, - "*oldVisibleIndexPaths": 1, - "*newVisibleIndexPaths": 1, - "*indexPathsToRemove": 1, - "oldVisibleIndexPaths": 2, - "mutableCopy": 2, - "indexPathsToRemove": 2, - "removeObjectsInArray": 2, - "newVisibleIndexPaths": 2, - "*indexPathsToAdd": 1, - "indexPathsToAdd": 2, - "don": 2, - "newly": 1, - "superview": 1, - "bringSubviewToFront": 1, - "self.contentSize": 3, - "headerViewRect": 3, - "s.height": 3, - "_headerView.frame.size.height": 2, - "visible.size.width": 3, - "_headerView.frame": 1, - "_headerView.hidden": 4, - "show": 2, - "pullDownRect": 4, - "_pullDownView.frame.size.height": 2, - "_pullDownView.hidden": 4, - "_pullDownView.frame": 1, - "self.delegate": 10, - "recycle": 1, - "all": 3, - "regenerated": 3, - "layoutSubviews": 5, - "because": 1, - "dragged": 1, - "clear": 3, - "removeAllObjects": 1, - "laid": 1, - "next": 2, - "_tableFlags.layoutSubviewsReentrancyGuard": 3, - "setAnimationsEnabled": 1, - "CATransaction": 3, - "begin": 1, - "setDisableActions": 1, - "_preLayoutCells": 2, - "munge": 2, - "contentOffset": 2, - "_layoutSectionHeaders": 2, - "_tableFlags.derepeaterEnabled": 1, - "commit": 1, - "has": 6, - "selected": 2, - "being": 4, - "overlapped": 1, - "r.size.height": 4, - "headerFrame.size.height": 1, - "do": 5, - "r.origin.y": 1, - "v.size.height": 2, - "scrollRectToVisible": 2, - "sec": 3, - "_makeRowAtIndexPathFirstResponder": 2, - "accept": 2, - "responder": 2, - "made": 1, - "acceptsFirstResponder": 1, - "self.nsWindow": 3, - "makeFirstResponderIfNotAlreadyInResponderChain": 1, - "futureMakeFirstResponderRequestToken": 1, - "*oldIndexPath": 1, - "oldIndexPath": 2, - "setSelected": 2, - "setNeedsDisplay": 2, - "selection": 3, - "actually": 2, - "changes": 4, - "NSResponder": 1, - "*firstResponder": 1, - "firstResponder": 3, - "indexPathForFirstVisibleRow": 2, - "*firstIndexPath": 1, - "firstIndexPath": 4, - "indexPathForLastVisibleRow": 2, - "*lastIndexPath": 5, - "lastIndexPath": 8, - "performKeyAction": 2, - "repeative": 1, - "press": 1, - "noCurrentSelection": 2, - "isARepeat": 1, - "TUITableViewCalculateNextIndexPathBlock": 3, - "selectValidIndexPath": 3, - "*startForNoSelection": 2, - "calculateNextIndexPath": 4, - "foundValidNextRow": 4, - "*newIndexPath": 1, - "newIndexPath": 6, - "startForNoSelection": 1, - "_delegate": 2, - "self.animateSelectionChanges": 1, - "charactersIgnoringModifiers": 1, - "characterAtIndex": 1, - "NSUpArrowFunctionKey": 1, - "lastIndexPath.section": 2, - "lastIndexPath.row": 2, - "rowsInSection": 7, - "NSDownArrowFunctionKey": 1, - "_tableFlags.maintainContentOffsetAfterReload": 2, - "setMaintainContentOffsetAfterReload": 1, - "newValue": 2, - "indexPathWithIndexes": 1, - "indexAtPosition": 2, - "TTViewController": 1, - "": 1, - "": 1, - "Necessary": 1, - "background": 1, - "task": 1, - "__IPHONE_3_2": 2, - "__MAC_10_5": 2, - "__MAC_10_6": 2, - "_ASIAuthenticationState": 1, - "ASIHTTPAuthenticationNeeded": 1, - "ASIProxyAuthenticationNeeded": 1, - "_ASINetworkErrorType": 1, - "ASIConnectionFailureErrorType": 2, - "ASIInternalErrorWhileApplyingCredentialsType": 1, - "ASICompressionError": 1, - "ASINetworkErrorType": 1, - "ASIHeadersBlock": 3, - "*responseHeaders": 2, - "ASISizeBlock": 5, - "ASIProgressBlock": 5, - "total": 4, - "ASIDataBlock": 3, - "NSOperation": 1, - "": 1, - "operation": 2, - "include": 1, - "GET": 1, - "params": 1, - "query": 1, - "where": 1, - "appropriate": 4, - "*url": 2, - "Will": 7, - "contain": 4, - "original": 2, - "making": 1, - "change": 2, - "*originalURL": 2, - "Temporarily": 1, - "stores": 1, - "to.": 2, - "again": 1, - "notified": 2, - "various": 1, - "ASIHTTPRequestDelegate": 1, - "": 1, - "Another": 1, - "also": 1, - "status": 4, - "updates": 2, - "Generally": 1, - "likely": 1, - "sessionCookies": 2, - "*requestCookies": 2, - "populated": 1, - "useCookiePersistence": 3, - "network": 4, - "present": 3, - "successfully": 4, - "presented": 2, - "duration": 1, - "clearSession": 2, - "allowCompressedResponse": 3, - "inform": 1, - "compressed": 2, - "automatically": 2, - "decompress": 1, - "gzipped": 7, - "responses.": 1, - "Default": 10, - "true.": 1, - "gzipped.": 1, - "false.": 1, - "You": 1, - "enable": 1, - "feature": 1, - "your": 2, - "webserver": 1, - "work.": 1, - "Tested": 1, - "apache": 1, - "only.": 1, - "downloaded": 6, - "*downloadDestinationPath": 2, - "files": 5, - "Once": 2, - "decompressed": 3, - "moved": 2, - "*temporaryFileDownloadPath": 2, - "containing": 1, - "inflated": 6, - "comes": 3, - "*temporaryUncompressedDataDownloadPath": 2, - "fails": 2, - "completes": 6, - "occurs": 1, - "Connection": 1, - "failure": 1, - "occurred": 1, - "inspect": 1, - "Username": 2, - "*username": 2, - "*password": 2, - "User": 1, - "Agent": 1, - "*userAgentString": 2, - "Domain": 2, - "*domain": 2, - "*proxyUsername": 2, - "*proxyPassword": 2, - "*proxyDomain": 2, - "Delegate": 2, - "displaying": 2, - "usually": 2, - "supply": 2, - "handle": 4, - "yourself": 4, - "": 2, - "Whether": 1, - "hassle": 1, - "adding": 1, - "apps": 1, - "shouldPresentProxyAuthenticationDialog": 2, - "*proxyCredentials": 2, - "Basic": 2, - "*proxyAuthenticationScheme": 2, - "Realm": 1, - "eg": 2, - "OK": 1, - "etc": 1, - "Description": 1, - "Size": 3, - "partially": 1, - "POST": 2, - "payload": 1, - "Last": 2, - "incrementing": 2, - "prevents": 1, - "inopportune": 1, - "moment": 1, - "Called": 6, - "starts.": 1, - "didStartSelector": 2, - "receives": 3, - "headers.": 1, - "didReceiveResponseHeadersSelector": 2, - "Location": 1, - "shouldRedirect": 3, - "then": 1, - "restart": 1, - "calling": 1, - "redirectToURL": 2, - "simply": 1, - "willRedirectSelector": 2, - "successfully.": 1, - "didFinishSelector": 2, - "fails.": 1, - "didFailSelector": 2, - "data.": 1, - "implement": 1, - "populate": 1, - "didReceiveDataSelector": 2, - "recording": 1, - "something": 1, - "last": 1, - "happened": 1, - "Number": 1, - "seconds": 2, - "wait": 1, - "timing": 1, - "starts": 2, - "*mainRequest": 2, - "indicator": 4, - "according": 2, - "how": 2, - "much": 2, - "Also": 1, - "see": 1, - "comments": 1, - "ASINetworkQueue.h": 1, - "ensure": 1, - "incremented": 4, - "Prevents": 1, - "largely": 1, - "internally": 3, - "reflect": 1, - "internal": 2, - "PUT": 1, - "operations": 1, - "sizes": 1, - "greater": 1, - "unless": 2, - "been": 1, - "Likely": 1, - "OS": 1, - "X": 1, - "Leopard": 1, - "Text": 1, - "responses": 5, - "Content": 1, - "Type": 1, - "value.": 1, - "Defaults": 2, - "set.": 1, - "Tells": 1, - "delete": 1, - "partial": 2, - "downloads": 1, - "allows": 1, - "existing": 1, - "download.": 1, - "NO.": 1, - "allowResumeForFileDownloads": 2, - "Custom": 1, - "associated": 1, - "*userInfo": 2, - "tag": 2, - "defaults": 2, - "tell": 2, - "loop": 1, - "Incremented": 1, - "every": 3, - "redirects.": 1, - "reaches": 1, - "check": 1, - "secure": 1, - "certificate": 2, - "signed": 1, - "development": 1, - "DO": 1, - "NOT": 1, - "USE": 1, - "IN": 1, - "PRODUCTION": 1, - "*clientCertificates": 2, - "Details": 1, - "could": 1, - "best": 1, - "local": 1, - "*PACurl": 2, - "values": 3, - "above.": 1, - "No": 1, - "yet": 1, - "ASIHTTPRequests": 1, - "avoids": 1, - "extra": 1, - "round": 1, - "trip": 1, - "succeeded": 1, - "which": 1, - "efficient": 1, - "authenticated": 1, - "large": 1, - "bodies": 1, - "slower": 1, - "connections": 3, - "Set": 4, - "affects": 1, - "YES.": 1, - "Credentials": 1, - "never": 1, - "asks": 1, - "hasn": 1, - "doing": 1, - "anything": 1, - "expires": 1, - "yes": 1, - "alive": 1, - "Stores": 1, - "use.": 1, - "expire": 2, - "connection.": 2, - "These": 1, - "determine": 1, - "whether": 1, - "match": 1, - "An": 2, - "determining": 1, - "available": 1, - "reference": 1, - "one.": 1, - "closed": 1, - "either": 1, - "another": 1, - "fires": 1, - "automatic": 1, - "standard": 1, - "follow": 1, - "behaviour": 2, - "most": 1, - "browsers": 1, - "shouldUseRFC2616RedirectBehaviour": 2, - "record": 1, - "ID": 1, - "uniquely": 1, - "identifies": 1, - "primarily": 1, - "debugging": 1, - "synchronous": 1, - "checks": 1, - "setDefaultCache": 2, - "configure": 2, - "ASICacheDelegate.h": 2, - "storage": 2, - "ASICacheStoragePolicy": 2, - "cacheStoragePolicy": 2, - "pulled": 1, - "secondsToCache": 3, - "interval": 1, - "expiring": 1, - "UIBackgroundTaskIdentifier": 1, - "helper": 1, - "inflate": 2, - "*dataDecompressor": 2, - "Controls": 1, - "without": 1, - "raw": 3, - "discarded": 1, - "normal": 1, - "contents": 1, - "into": 1, - "Setting": 1, - "especially": 1, - "useful": 1, - "users": 1, - "conjunction": 1, - "streaming": 1, - "allow": 1, - "behind": 1, - "scenes": 1, - "https": 1, - "webservers": 1, - "asynchronously": 1, - "reading": 1, - "URLs": 2, - "storing": 1, - "startSynchronous.": 1, - "Currently": 1, - "detection": 2, - "synchronously": 1, - "//block": 12, - "execute": 4, - "handling": 4, - "redirections": 1, - "setStartedBlock": 1, - "aStartedBlock": 1, - "setHeadersReceivedBlock": 1, - "aReceivedBlock": 2, - "setCompletionBlock": 1, - "aCompletionBlock": 1, - "setFailedBlock": 1, - "aFailedBlock": 1, - "setBytesReceivedBlock": 1, - "aBytesReceivedBlock": 1, - "setBytesSentBlock": 1, - "aBytesSentBlock": 1, - "setDownloadSizeIncrementedBlock": 1, - "aDownloadSizeIncrementedBlock": 1, - "setUploadSizeIncrementedBlock": 1, - "anUploadSizeIncrementedBlock": 1, - "setDataReceivedBlock": 1, - "setAuthenticationNeededBlock": 1, - "anAuthenticationBlock": 1, - "setProxyAuthenticationNeededBlock": 1, - "aProxyAuthenticationBlock": 1, - "setRequestRedirectedBlock": 1, - "aRedirectBlock": 1, - "HEADRequest": 1, - "upload/download": 1, - "updateProgressIndicators": 1, - "removeUploadProgressSoFar": 1, - "incrementDownloadSizeBy": 1, - "caller": 1, - "talking": 1, - "requestReceivedResponseHeaders": 1, - "newHeaders": 1, - "retryUsingNewConnection": 1, - "stringEncoding": 1, - "contentType": 1, - "stuff": 1, - "applyCredentials": 1, - "findCredentials": 1, - "retryUsingSuppliedCredentials": 1, - "cancelAuthentication": 1, - "attemptToApplyCredentialsAndResume": 1, - "attemptToApplyProxyCredentialsAndResume": 1, - "showProxyAuthenticationDialog": 1, - "showAuthenticationDialog": 1, - "theUsername": 1, - "thePassword": 1, - "handlers": 1, - "handleBytesAvailable": 1, - "handleStreamComplete": 1, - "handleStreamError": 1, - "cleanup": 1, - "removeTemporaryDownloadFile": 1, - "removeTemporaryUncompressedDownloadFile": 1, - "removeTemporaryUploadFile": 1, - "removeTemporaryCompressedUploadFile": 1, - "removeFileAtPath": 1, - "connectionID": 1, - "expirePersistentConnections": 1, - "setDefaultTimeOutSeconds": 1, - "newTimeOutSeconds": 1, - "client": 1, - "setClientCertificateIdentity": 1, - "anIdentity": 1, - "sessionProxyCredentialsStore": 1, - "sessionCredentialsStore": 1, - "storeProxyAuthenticationCredentialsInSessionStore": 1, - "removeProxyAuthenticationCredentialsFromSessionStore": 1, - "findSessionProxyAuthenticationCredentials": 1, - "savedCredentialsForHost": 1, - "savedCredentialsForProxy": 1, - "removeCredentialsForHost": 1, - "removeCredentialsForProxy": 1, - "setSessionCookies": 1, - "newSessionCookies": 1, - "addSessionCookie": 1, - "NSHTTPCookie": 1, - "newCookie": 1, - "agent": 2, - "defaultUserAgentString": 1, - "setDefaultUserAgentString": 1, - "mime": 1, - "mimeTypeForFileAtPath": 1, - "measurement": 1, - "throttling": 1, - "setMaxBandwidthPerSecond": 1, - "incrementBandwidthUsedInLastSecond": 1, - "setShouldThrottleBandwidthForWWAN": 1, - "throttle": 1, - "throttleBandwidthForWWANUsingLimit": 1, - "limit": 1, - "reachability": 1, - "isNetworkReachableViaWWAN": 1, - "maxUploadReadLength": 1, - "activity": 1, - "isNetworkInUse": 1, - "setShouldUpdateNetworkActivityIndicator": 1, - "shouldUpdate": 1, - "showNetworkActivityIndicator": 1, - "hideNetworkActivityIndicator": 1, - "miscellany": 1, - "base64forData": 1, - "theData": 1, - "expiryDateForRequest": 1, - "maxAge": 2, - "dateFromRFC1123String": 1, - "threading": 1, - "*proxyHost": 1, - "*proxyType": 1, - "*requestHeaders": 1, - "*requestCredentials": 1, - "*rawResponseData": 1, - "*requestMethod": 1, - "*postBody": 1, - "*postBodyFilePath": 1, - "didCreateTemporaryPostDataFile": 1, - "*authenticationScheme": 1, - "shouldPresentAuthenticationDialog": 1, - "haveBuiltRequestHeaders": 1, - "": 1, - "": 1, - "": 1, - "__OBJC__": 4, - "": 1, - "": 1, - "__cplusplus": 2, - "NSINTEGER_DEFINED": 3, - "NS_BUILD_32_LIKE_64": 3, - "_JSONKIT_H_": 3, - "__APPLE_CC__": 2, - "JK_DEPRECATED_ATTRIBUTE": 6, - "deprecated": 1, - "JSONKIT_VERSION_MAJOR": 1, - "JSONKIT_VERSION_MINOR": 1, - "JKParseOptionNone": 1, - "JKParseOptionStrict": 1, - "JKParseOptionComments": 2, - "JKParseOptionUnicodeNewlines": 2, - "JKParseOptionLooseUnicode": 2, - "JKParseOptionPermitTextAfterValidJSON": 2, - "JKParseOptionValidFlags": 1, - "JKSerializeOptionNone": 3, - "JKSerializeOptionPretty": 2, - "JKSerializeOptionEscapeUnicode": 2, - "JKSerializeOptionEscapeForwardSlashes": 2, - "JKSerializeOptionValidFlags": 1, - "Opaque": 1, - "private": 1, - "decoder": 1, - "decoderWithParseOptions": 1, - "initWithParseOptions": 1, - "clearCache": 1, - "parseUTF8String": 2, - "Deprecated": 4, - "v1.4.": 4, - "objectWithUTF8String": 4, - "instead.": 4, - "parseJSONData": 2, - "jsonData": 6, - "mutableObjectWithUTF8String": 2, - "mutableObjectWithData": 2, - "////////////": 4, - "Deserializing": 1, - "methods": 2, - "JSONKitDeserializing": 2, - "objectFromJSONString": 1, - "objectFromJSONStringWithParseOptions": 2, - "mutableObjectFromJSONString": 1, - "mutableObjectFromJSONStringWithParseOptions": 2, - "objectFromJSONData": 1, - "objectFromJSONDataWithParseOptions": 2, - "mutableObjectFromJSONData": 1, - "mutableObjectFromJSONDataWithParseOptions": 2, - "Serializing": 1, - "JSONKitSerializing": 3, - "JSONData": 3, - "Invokes": 2, - "JSONDataWithOptions": 8, - "includeQuotes": 6, - "serializeOptions": 14, - "JSONString": 3, - "JSONStringWithOptions": 8, - "serializeUnsupportedClassesUsingDelegate": 4, - "__BLOCKS__": 1, - "JSONKitSerializingBlockAdditions": 2, - "serializeUnsupportedClassesUsingBlock": 4 - }, - "Stata": { - "local": 6, - "MAXDIM": 1, - "*": 25, - "Setup": 1, - "sysuse": 1, - "auto": 1, - "Fit": 2, - "a": 30, - "linear": 2, - "regression": 2, - "regress": 5, - "mpg": 1, - "weight": 4, - "foreign": 2, - "better": 1, - "from": 6, - "physics": 1, - "standpoint": 1, - "gen": 1, - "gp100m": 2, - "/mpg": 1, - "Obtain": 1, - "beta": 2, - "coefficients": 1, - "without": 2, - "refitting": 1, - "model": 1, - "Suppress": 1, - "intercept": 1, - "term": 1, - "length": 3, - "noconstant": 1, - "Model": 1, - "already": 2, - "has": 6, - "constant": 2, - "bn.foreign": 1, - "hascons": 1, - "numeric": 4, + "2": 1, + "cnts": 2, + "median": 1, + "library": 1, + "print_usage": 2, + "file": 4, + "stderr": 1, + "cat": 1, + "spec": 2, "matrix": 3, - "tanh": 1, - "(": 60, - "u": 3, - ")": 61, - "{": 441, - "eu": 4, - "emu": 4, - "exp": 2, - "-": 42, - "return": 1, + "byrow": 3, + "ncol": 3, + "opt": 23, + "getopt": 1, + "help": 1, + "stdout": 1, + "status": 1, + "height": 7, + "out": 4, + "res": 6, + "width": 7, + "ylim": 7, + "read.table": 1, + "header": 1, + "sep": 4, + "quote": 1, + "nsamp": 8, + "dim": 1, + "outfile": 4, + "sprintf": 2, + "png": 2, + "h": 13, + "hist": 4, + "plot": 7, + "FALSE": 9, + "mids": 4, + "density": 4, + "type": 3, + "col": 4, + "rainbow": 4, + "main": 2, + "xlab": 2, + "ylab": 2, + "for": 4, + "i": 6, + "in": 8, + "lines": 6, + "devnum": 2, + "dev.off": 2, + "size.factors": 2, + "data.matrix": 1, + "data.norm": 3, + "t": 1, + "x": 3, "/": 1, - "+": 2, - "}": 440, - "smcl": 1, - "version": 2, - "Matthew": 2, - "White": 2, - "jan2014": 1, - "...": 30, - "title": 7, - "Title": 1, - "phang": 4, - "cmd": 111, - "odkmeta": 17, - "hline": 1, - "Create": 4, - "do": 22, - "file": 18, - "to": 23, - "import": 9, - "ODK": 6, - "data": 4, - "marker": 10, - "syntax": 1, - "Syntax": 1, - "p": 2, - "using": 10, - "it": 61, - "help": 27, - "filename": 3, - "opt": 25, - "csv": 9, - "csvfile": 3, - "Using": 7, - "histogram": 2, - "as": 29, - "template.": 8, - "notwithstanding": 1, - "is": 31, - "rarely": 1, - "preceded": 3, - "by": 7, - "an": 6, - "underscore.": 1, - "cmdab": 5, - "s": 10, - "urvey": 2, - "surveyfile": 5, - "odkmeta##surveyopts": 2, - "surveyopts": 4, - "cho": 2, - "ices": 2, - "choicesfile": 4, - "odkmeta##choicesopts": 2, - "choicesopts": 5, - "[": 6, - "options": 1, - "]": 6, - "odbc": 2, - "the": 67, - "position": 1, - "of": 36, - "last": 1, - "character": 1, - "in": 24, - "first": 2, - "column": 18, - "synoptset": 5, - "tabbed": 4, - "synopthdr": 4, - "synoptline": 8, - "syntab": 6, - "Main": 3, - "heckman": 2, - "p2coldent": 3, - "name": 20, - ".csv": 2, - "that": 21, - "contains": 3, - "p_end": 47, - "metadata": 5, - "survey": 14, - "worksheet": 5, - "choices": 10, - "Fields": 2, - "synopt": 16, - "drop": 1, - "attrib": 2, - "headers": 8, - "not": 8, - "field": 25, - "attributes": 10, - "with": 10, - "keep": 1, - "only": 3, - "rel": 1, - "ax": 1, - "ignore": 1, - "fields": 7, - "exist": 1, - "Lists": 1, - "ca": 1, - "oth": 1, - "er": 1, - "odkmeta##other": 1, - "other": 14, - "Stata": 5, - "value": 14, - "values": 3, - "select": 6, - "or_other": 5, - ";": 15, - "default": 8, - "max": 2, - "one": 5, - "line": 4, - "write": 1, - "each": 7, - "list": 13, - "on": 7, - "single": 1, - "Options": 1, - "replace": 7, - "overwrite": 1, - "existing": 1, - "p2colreset": 4, - "and": 18, - "are": 13, - "required.": 1, - "Change": 1, - "t": 2, - "ype": 1, - "header": 15, - "type": 7, - "attribute": 10, - "la": 2, - "bel": 2, - "label": 9, - "d": 1, - "isabled": 1, - "disabled": 4, - "li": 1, - "stname": 1, - "list_name": 6, - "maximum": 3, - "plus": 2, - "min": 2, - "minimum": 2, - "minus": 1, - "#": 6, - "for": 13, - "all": 3, - "labels": 8, - "description": 1, - "Description": 1, - "pstd": 20, - "creates": 1, - "worksheets": 1, - "XLSForm.": 1, - "The": 9, - "saved": 1, - "completes": 2, - "following": 1, - "tasks": 3, - "order": 1, - "anova": 1, - "phang2": 23, - "o": 12, - "Import": 2, - "lists": 2, - "Add": 1, - "char": 4, - "characteristics": 4, - "Split": 1, - "select_multiple": 6, - "variables": 8, - "Drop": 1, - "note": 1, - "format": 1, - "Format": 1, - "date": 1, - "time": 1, - "datetime": 1, - "Attach": 2, - "variable": 14, - "notes": 1, - "merge": 3, - "Merge": 1, - "repeat": 6, - "groups": 4, - "After": 1, - "have": 2, - "been": 1, - "split": 4, - "can": 1, - "be": 12, - "removed": 1, - "affecting": 1, - "tasks.": 1, - "User": 1, - "written": 2, - "supplements": 1, - "may": 2, - "make": 1, - "use": 3, - "any": 3, - "which": 6, - "imported": 4, - "characteristics.": 1, - "remarks": 1, - "Remarks": 1, - "uses": 3, - "helpb": 7, - "insheet": 4, - "data.": 1, - "long": 7, - "strings": 1, - "digits": 1, - "such": 2, - "simserial": 1, - "will": 9, + "ParseDates": 2, + "dates": 3, + "unlist": 2, + "strsplit": 3, + "days": 2, + "times": 2, + "hours": 2, + "all.days": 2, + "all.hours": 2, + "data.frame": 1, + "Day": 2, + "factor": 2, + "levels": 2, + "Hour": 2, + "Main": 2, + "system": 1, + "intern": 1, + "punchcard": 4, + "as.data.frame": 1, + "table": 1, + "ggplot2": 6, + "ggplot": 1, + "aes": 2, + "y": 1, + "geom_point": 1, + "size": 1, + "Freq": 1, + "scale_size": 1, + "range": 1, + "ggsave": 1, + "filename": 1, + "hello": 2, + "print": 1, + "module": 25, + "code": 21, + "available": 1, + "via": 1, + "the": 16, + "environment": 4, + "like": 1, + "it": 3, + "returns.": 1, + "@param": 2, + "an": 1, + "identifier": 1, + "specifying": 1, + "full": 1, + "path": 9, + "search": 5, + "see": 1, + "Details": 1, "even": 1, - "if": 10, - "they": 2, - "more": 1, - "than": 3, - "digits.": 1, - "As": 1, - "result": 6, - "lose": 1, - "precision": 1, - ".": 22, - "makes": 1, - "limited": 1, - "mata": 1, - "Mata": 1, - "manage": 1, - "contain": 1, - "difficult": 1, - "characters.": 2, - "starts": 1, - "definitions": 1, - "several": 1, - "macros": 1, - "these": 4, - "constants": 1, - "uses.": 1, - "For": 4, - "instance": 1, - "macro": 1, - "datemask": 1, - "varname": 1, - "constraints": 1, - "names": 16, - "Further": 1, + "attach": 11, + "is": 7, + "optionally": 1, + "attached": 2, + "to": 9, + "of": 2, + "current": 2, + "scope": 1, + "defaults": 1, + ".": 7, + "However": 1, + "interactive": 2, + "invoked": 1, + "directly": 1, + "from": 5, + "terminal": 1, + "only": 1, + "i.e.": 1, + "not": 4, + "within": 1, + "modules": 4, + "import.attach": 1, + "can": 3, + "be": 8, + "set": 2, + "or": 1, + "depending": 1, + "on": 2, + "user": 1, + "s": 2, + "preference.": 1, + "attach_operators": 3, + "causes": 1, + "emph": 3, + "operators": 3, + "by": 2, + "default": 1, + "path.": 1, + "Not": 1, + "attaching": 1, + "them": 1, + "therefore": 1, + "drastically": 1, + "limits": 1, + "a": 6, + "usefulness.": 1, + "Modules": 1, + "are": 4, + "searched": 1, + "options": 1, + "priority.": 1, + "The": 5, + "directory": 1, + "always": 1, + "considered": 1, + "first.": 1, + "That": 1, + "local": 3, + "./a.r": 1, + "will": 2, + "loaded.": 1, + "Module": 1, + "names": 2, + "fully": 1, + "qualified": 1, + "refer": 1, + "nested": 1, + "paths.": 1, + "See": 1, + "import": 5, + "executed": 1, + "global": 1, + "effect": 1, + "same.": 1, + "When": 1, + "used": 2, + "globally": 1, + "inside": 1, + "newly": 2, + "outside": 1, + "nor": 1, + "other": 2, + "which": 3, + "might": 1, + "loaded": 4, + "@examples": 1, + "@seealso": 3, + "reload": 3, + "@export": 2, + "substitute": 2, + "stopifnot": 3, + "missing": 1, + "&&": 2, + "module_name": 7, + "getOption": 1, + "else": 4, + "class": 4, + "module_path": 15, + "find_module": 1, + "stop": 1, + "attr": 2, + "message": 1, + "containing_modules": 3, + "module_init_files": 1, + "mapply": 1, + "do_import": 4, + "mod_ns": 5, + "as.character": 3, + "module_parent": 8, + "parent.frame": 2, + "mod_env": 7, + "exhibit_namespace": 3, + "identical": 2, + ".GlobalEnv": 2, + "name": 10, + "environmentName": 2, + "parent.env": 4, + "export_operators": 2, + "invisible": 1, + "is_module_loaded": 1, + "get_loaded_module": 1, + "namespace": 13, + "structure": 3, + "new.env": 1, + "parent": 9, + ".BaseNamespaceEnv": 1, + "paste": 3, + "source": 3, + "chdir": 1, + "envir": 5, + "cache_module": 1, + "exported_functions": 2, + "lsf.str": 2, + "list2env": 2, + "sapply": 2, + "get": 2, + "ops": 2, + "is_predefined": 2, + "%": 2, + "is_op": 2, + "prefix": 3, + "||": 1, + "grepl": 1, + "Filter": 1, + "op_env": 4, + "cache.": 1, + "@note": 1, + "Any": 1, + "references": 1, + "remain": 1, + "unchanged": 1, + "and": 5, "files": 1, - "often": 1, - "much": 1, - "longer": 1, - "limit": 1, - "These": 2, - "differences": 1, - "convention": 1, - "lead": 1, - "three": 1, - "kinds": 1, - "problematic": 1, - "Long": 3, - "involve": 1, - "invalid": 1, - "combination": 1, - "characters": 3, - "example": 2, - "begins": 1, - "colon": 1, - "followed": 1, - "number.": 1, - "convert": 2, - "instead": 1, - "naming": 1, - "v": 6, - "concatenated": 1, - "positive": 1, - "integer": 1, - "v1": 1, - "unique": 1, - "but": 4, - "when": 1, - "converted": 3, - "truncated": 1, - "become": 3, - "duplicates.": 1, - "again": 1, - "names.": 6, - "form": 1, - "duplicates": 1, - "cannot": 2, - "chooses": 1, - "different": 1, - "Because": 1, - "problem": 2, - "recommended": 1, - "you": 1, - "If": 2, - "its": 3, - "characteristic": 2, - "odkmeta##Odk_bad_name": 1, - "Odk_bad_name": 3, - "otherwise": 1, - "Most": 1, - "depend": 1, + "would": 1, + "have": 1, + "happened": 1, + "without": 1, + "unload": 2, + "should": 2, + "production": 1, + "code.": 1, + "does": 1, + "currently": 1, + "detach": 1, + "environments.": 1, + "Reload": 1, + "given": 1, + "Remove": 1, + "cache": 1, + "forcing": 1, + "reload.": 1, + "reloaded": 1, + "reference": 1, + "unloaded": 1, + "still": 1, + "work.": 1, + "Reloading": 1, + "primarily": 1, + "useful": 1, + "testing": 1, + "during": 1, + "module_ref": 3, + "rm": 1, + "list": 1, + ".loaded_modules": 1, + "whatnot.": 1, + "assign": 1, + "##polyg": 1, + "vector": 2, + "##numpoints": 1, + "number": 1, + "##output": 1, + "output": 1, + "##": 1, + "Example": 1, + "scripts": 1, + "group": 1, + "pts": 1, + "spsample": 1, + "polyg": 1, + "numpoints": 1, + "docType": 1, + "package": 5, + "scholar": 6, + "alias": 2, + "title": 1, + "reads": 1, + "url": 2, + "http": 2, + "//scholar.google.com": 1, + "Dates": 1, + "citation": 2, + "counts": 1, + "estimated": 1, + "determined": 1, + "automatically": 1, + "computer": 1, + "program.": 1, + "Use": 1, + "at": 2, + "your": 1, + "own": 1, + "risk.": 1, + "description": 1, + "provides": 1, + "functions": 3, + "extract": 1, + "Google": 2, + "Scholar.": 1, "There": 1, -<<<<<<< HEAD "also": 1, "convenience": 1, "comparing": 1, @@ -95398,527 +58079,124 @@ "installed": 1, "you": 3, "can": 2, -======= - "two": 2, - "exceptions": 1, - "variables.": 1, - "error": 4, - "or": 7, - "splitting": 2, - "would": 1, - "duplicate": 4, - "reshape": 2, - "groups.": 1, - "there": 2, - "merging": 2, - "code": 1, - "datasets.": 1, - "Where": 1, - "renaming": 2, - "left": 1, - "user.": 1, - "section": 2, - "designated": 2, - "area": 2, - "renaming.": 3, - "In": 3, - "reshaping": 1, - "group": 4, - "own": 2, - "Many": 1, - "forms": 2, - "require": 1, - "others": 1, - "few": 1, - "need": 1, - "renamed": 1, - "should": 1, - "go": 1, - "areas.": 1, - "However": 1, - "some": 1, - "usually": 1, - "because": 1, - "many": 2, - "nested": 2, - "above": 1, - "this": 1, - "case": 1, - "work": 1, - "best": 1, - "Odk_group": 1, - "Odk_name": 1, - "Odk_is_other": 2, - "Odk_geopoint": 2, - "r": 2, - "varlist": 2, - "Odk_list_name": 2, - "foreach": 1, - "var": 5, - "*search": 1, - "n/a": 1, - "know": 1, - "don": 1, - "worksheet.": 1, - "requires": 1, - "comma": 1, - "separated": 2, - "text": 1, - "file.": 1, - "Strings": 1, - "embedded": 2, - "commas": 1, - "double": 3, - "quotes": 3, - "end": 4, - "must": 2, - "enclosed": 1, - "another": 1, - "quote.": 1, - "pmore": 5, - "Each": 1, - "header.": 1, - "Use": 1, - "suboptions": 1, - "specify": 1, - "alternative": 1, - "respectively.": 1, - "All": 1, - "used.": 1, - "standardized": 1, - "follows": 1, - "replaced": 9, - "select_one": 3, - "begin_group": 1, - "begin": 2, - "end_group": 1, - "begin_repeat": 1, - "end_repeat": 1, - "addition": 1, - "specified": 1, - "attaches": 1, - "pmore2": 3, - "formed": 1, - "concatenating": 1, - "elements": 1, - "Odk_repeat": 1, - "nested.": 1, - "geopoint": 2, - "component": 1, - "Latitude": 1, - "Longitude": 1, - "Altitude": 1, - "Accuracy": 1, - "blank.": 1, - "imports": 4, - "XLSForm": 1, - "list.": 1, - "one.": 1, - "specifies": 4, - "vary": 1, - "definition": 1, - "rather": 1, - "multiple": 1, - "delimit": 1, - "#delimit": 1, - "dlgtab": 1, - "Other": 1, - "exists.": 1, - "examples": 1, - "Examples": 1, - "named": 1, - "import.do": 7, - "including": 1, - "survey.csv": 1, - "choices.csv": 1, - "txt": 6, - "Same": 3, - "previous": 3, - "command": 3, - "appears": 2, - "fieldname": 3, - "survey_fieldname.csv": 1, - "valuename": 2, - "choices_valuename.csv": 1, - "except": 1, - "hint": 2, - "dropattrib": 2, - "does": 1, - "_all": 1, - "acknowledgements": 1, - "Acknowledgements": 1, - "Lindsey": 1, - "Shaughnessy": 1, - "Innovations": 2, - "Poverty": 2, - "Action": 2, - "assisted": 1, - "almost": 1, - "aspects": 1, - "development.": 1, - "She": 1, - "collaborated": 1, - "structure": 1, - "program": 2, - "was": 1, - "very": 1, - "helpful": 1, - "tester": 1, - "contributed": 1, - "information": 1, - "about": 1, - "ODK.": 1, - "author": 1, - "Author": 1, - "mwhite@poverty": 1, - "action.org": 1, - "hello": 1, - "vers": 1, - "display": 1, - "mar2014": 1, - "Hello": 1, - "world": 1, - "inname": 1, - "outname": 1 - }, - "Shen": { - "*": 47, - "graph.shen": 1, - "-": 747, - "a": 30, - "library": 3, - "for": 12, - "graph": 52, - "definition": 1, - "and": 16, - "manipulation": 1, - "Copyright": 2, - "(": 267, - "C": 6, - ")": 250, - "Eric": 2, - "Schulte": 2, - "***": 5, - "License": 2, - "Redistribution": 2, - "use": 2, - "in": 13, - "source": 4, - "binary": 4, - "forms": 2, - "with": 8, - "or": 2, - "without": 2, - "modification": 2, - "are": 7, - "permitted": 2, - "provided": 4, - "that": 3, - "the": 29, - "following": 6, - "conditions": 6, - "met": 2, - "Redistributions": 4, - "of": 20, - "code": 2, - "must": 4, - "retain": 2, - "above": 4, - "copyright": 4, - "notice": 4, - "this": 4, - "list": 32, - "disclaimer.": 2, - "form": 2, - "reproduce": 2, - "disclaimer": 2, - "documentation": 2, - "and/or": 2, - "other": 2, - "materials": 2, - "distribution.": 2, - "THIS": 4, - "SOFTWARE": 4, - "IS": 2, - "PROVIDED": 2, - "BY": 2, - "THE": 10, - "COPYRIGHT": 4, - "HOLDERS": 2, - "AND": 8, - "CONTRIBUTORS": 4, - "ANY": 8, - "EXPRESS": 2, - "OR": 16, - "IMPLIED": 4, - "WARRANTIES": 4, - "INCLUDING": 6, - "BUT": 4, - "NOT": 4, - "LIMITED": 4, - "TO": 4, - "OF": 16, - "MERCHANTABILITY": 2, - "FITNESS": 2, - "FOR": 4, - "A": 32, - "PARTICULAR": 2, - "PURPOSE": 2, - "ARE": 2, - "DISCLAIMED.": 2, - "IN": 6, - "NO": 2, - "EVENT": 2, - "SHALL": 2, - "HOLDER": 2, - "BE": 2, - "LIABLE": 2, - "DIRECT": 2, - "INDIRECT": 2, - "INCIDENTAL": 2, - "SPECIAL": 2, - "EXEMPLARY": 2, - "CONSEQUENTIAL": 2, - "DAMAGES": 2, - "PROCUREMENT": 2, - "SUBSTITUTE": 2, - "GOODS": 2, - "SERVICES": 2, - ";": 12, - "LOSS": 2, - "USE": 4, - "DATA": 2, - "PROFITS": 2, - "BUSINESS": 2, - "INTERRUPTION": 2, - "HOWEVER": 2, - "CAUSED": 2, - "ON": 2, - "THEORY": 2, - "LIABILITY": 4, - "WHETHER": 2, - "CONTRACT": 2, - "STRICT": 2, - "TORT": 2, - "NEGLIGENCE": 2, - "OTHERWISE": 2, - "ARISING": 2, - "WAY": 2, - "OUT": 2, - "EVEN": 2, - "IF": 2, - "ADVISED": 2, - "POSSIBILITY": 2, - "SUCH": 2, - "DAMAGE.": 2, - "Commentary": 2, - "Graphs": 1, - "represented": 1, - "as": 2, - "two": 1, - "dictionaries": 1, - "one": 2, - "vertices": 17, - "edges.": 1, - "It": 1, - "is": 5, - "important": 1, - "to": 16, - "note": 1, - "dictionary": 3, - "implementation": 1, - "used": 2, - "able": 1, - "accept": 1, - "arbitrary": 1, - "data": 17, - "structures": 1, - "keys.": 1, - "This": 1, - "structure": 2, - "technically": 1, - "encodes": 1, - "hypergraphs": 1, - "generalization": 1, - "graphs": 1, - "which": 1, - "each": 1, - "edge": 32, - "may": 1, - "contain": 2, - "any": 1, - "number": 12, - ".": 1, - "Examples": 1, - "regular": 1, - "G": 25, - "hypergraph": 1, - "H": 3, - "corresponding": 1, - "given": 4, - "below.": 1, - "": 3, - "Vertices": 11, - "Edges": 9, - "+": 33, - "Graph": 65, - "hash": 8, - "|": 103, - "key": 9, - "value": 17, - "b": 13, - "c": 11, - "g": 19, - "[": 93, - "]": 91, - "d": 12, - "e": 14, - "f": 10, - "Hypergraph": 1, - "h": 3, - "i": 3, - "j": 2, - "associated": 1, - "edge/vertex": 1, - "@p": 17, - "V": 48, - "#": 4, - "E": 20, - "edges": 17, - "M": 4, - "vertex": 29, - "associations": 1, - "size": 2, - "all": 3, - "stored": 1, - "dict": 39, - "sizeof": 4, - "int": 1, - "indices": 1, - "into": 1, - "&": 1, - "Edge": 11, - "dicts": 3, - "entry": 2, - "storage": 2, - "Vertex": 3, - "Code": 1, - "require": 2, - "sequence": 2, - "datatype": 1, - "dictoinary": 1, - "vector": 4, - "symbol": 1, - "package": 2, - "add": 25, - "has": 5, - "neighbors": 8, - "connected": 21, - "components": 8, - "partition": 7, - "bipartite": 3, - "included": 2, - "from": 3, - "take": 2, - "drop": 2, - "while": 2, - "range": 1, - "flatten": 1, - "filter": 2, - "complement": 1, - "seperate": 1, - "zip": 1, - "indexed": 1, - "reduce": 3, - "mapcon": 3, - "unique": 3, - "frequencies": 1, - "shuffle": 1, - "pick": 1, - "remove": 2, - "first": 2, - "interpose": 1, - "subset": 3, - "cartesian": 1, - "product": 1, - "<-dict>": 5, - "contents": 1, - "keys": 3, - "vals": 1, - "make": 10, - "define": 34, - "X": 4, - "<-address>": 5, - "0": 1, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "create": 1, - "specified": 1, - "sizes": 2, - "}": 22, - "Vertsize": 2, - "Edgesize": 2, - "let": 9, - "absvector": 1, - "do": 8, - "address": 5, - "defmacro": 3, - "macro": 3, - "return": 4, - "taking": 1, - "optional": 1, - "N": 7, - "vert": 12, - "1": 1, - "2": 3, - "{": 15, - "get": 3, - "Value": 3, - "if": 8, - "tuple": 3, - "fst": 3, - "error": 7, - "string": 3, - "resolve": 6, - "Vector": 2, - "Index": 2, - "Place": 6, - "nth": 1, - "<-vector>": 2, - "Vert": 5, - "Val": 5, - "trap": 4, - "snd": 2, - "map": 5, - "lambda": 1, - "w": 4, - "B": 2, - "Data": 2, - "w/o": 5, - "D": 4, - "update": 5, - "an": 3, + "using": 1, + "options": 1, + "names...": 1, + "For": 1, + "an": 1, + "up": 1, + "to": 4, + "date": 1, + "option": 1, + "summary": 1, + "type": 2, + "help": 1, + "A": 1, + "typical": 1, + "use": 1, + "might": 1, + "be": 3, + "generate": 1, + "a": 5, + "package": 1, + "of": 2, + "source": 2, + "(": 3, + "such": 1, + "as": 1, + "itself": 1, + ")": 3, + ".": 2, + "This": 2, + "generates": 1, + "all": 1, + "C": 1, + "files": 2, + "in": 4, + "below": 1, + "current": 1, + "directory.": 1, + "These": 1, + "will": 1, + "stored": 1, + "tree": 1, + "starting": 1, + "subdirectory": 1, + "doc": 1, + "You": 2, + "make": 2, + "this": 1, + "slightly": 1, + "more": 1, + "useful": 1, + "your": 1, + "readers": 1, + "by": 1, + "having": 1, + "index": 1, + "page": 1, + "contain": 1, + "primary": 1, + "file.": 1, + "In": 1, + "our": 1, + "case": 1, + "we": 1, + "could": 1, + "#": 1, + "rdoc/rdoc": 1, "s": 1, - "Vs": 4, - "Store": 6, - "<": 4, - "limit": 2, - "VertLst": 2, - "/.": 4, - "Contents": 5, - "adjoin": 2, - "length": 5, - "EdgeID": 3, - "EdgeLst": 2, - "p": 1, - "boolean": 4, - "Return": 1, - "Already": 5, - "New": 5, - "Reachable": 2, - "difference": 3, - "append": 1, + "OK": 1, + "file": 1, + "bug": 1, + "report": 1, + "anything": 1, + "t": 1, + "figure": 1, + "out": 1, + "how": 1, + "produce": 1, + "output": 1, + "like": 1, + "that": 1, + "is": 4, + "probably": 1, + "bug.": 1, + "License": 1, + "Copyright": 1, + "c": 2, + "Dave": 1, + "Thomas": 1, + "The": 1, + "Pragmatic": 1, + "Programmers.": 1, + "Portions": 2, + "Eric": 1, + "Hodel.": 1, + "copyright": 1, + "others": 1, + "see": 1, + "individual": 1, + "LEGAL.rdoc": 1, + "details.": 1, + "free": 1, + "software": 2, + "may": 1, + "redistributed": 1, + "under": 1, + "terms": 1, + "specified": 1, + "LICENSE.rdoc.": 1, + "Warranty": 1, + "provided": 1, + "without": 2, + "any": 1, + "express": 1, + "or": 1, + "implied": 2, + "warranties": 2, "including": 1, -<<<<<<< HEAD "limitation": 1, "merchantability": 1, "fitness": 1, @@ -96234,356 +58512,353 @@ "spec": 3, "datatype": 2, "test": 1, -======= - "itself": 1, - "fully": 1, - "Acc": 2, - "true": 1, - "_": 1, - "VS": 4, - "Component": 6, - "ES": 3, - "Con": 8, - "verts": 4, - "cons": 1, - "place": 3, - "partitions": 1, - "element": 2, - "simple": 3, - "CS": 3, - "Neighbors": 3, - "empty": 1, - "intersection": 1, - "check": 1, - "tests": 1, - "set": 1, - "chris": 6, - "patton": 2, - "eric": 1, - "nobody": 2, - "fail": 1, - "when": 1, - "wrapper": 1, - "function": 1, - "load": 1, - "JSON": 1, - "Lexer": 1, - "Read": 1, - "stream": 1, - "characters": 4, - "Whitespace": 4, - "not": 1, - "strings": 2, - "should": 2, - "be": 2, - "discarded.": 1, - "preserved": 1, - "Strings": 1, - "can": 1, - "escaped": 1, - "double": 1, - "quotes.": 1, - "e.g.": 2, - "whitespacep": 2, - "ASCII": 2, - "Space.": 1, - "All": 1, - "others": 1, - "whitespace": 7, - "table.": 1, - "Char": 4, - "member": 1, - "replace": 3, - "@s": 4, - "Suffix": 4, - "where": 2, - "Prefix": 2, - "fetch": 1, - "until": 1, - "unescaped": 1, - "doublequote": 1, - "c#34": 5, - "WhitespaceChar": 2, - "Chars": 4, - "strip": 2, - "chars": 2, - "tokenise": 1, - "JSONString": 2, - "CharList": 2, - "explode": 1, - "html.shen": 1, - "html": 2, - "generation": 1, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "functions": 1, - "shen": 1, - "The": 1, - "standard": 1, - "lisp": 1, - "conversion": 1, - "tool": 1, - "suite.": 1, - "Follows": 1, - "some": 1, - "convertions": 1, - "Clojure": 1, - "tasks": 1, - "stuff": 1, - "todo1": 1, - "today": 1, - "attributes": 1, - "AS": 1 - }, - "Mask": { - "header": 1, - "{": 10, - "img": 1, - ".logo": 1, - "src": 1, - "alt": 1, - "logo": 1, - ";": 3, - "h4": 1, - "if": 1, - "(": 3, - "currentUser": 1, - ")": 3, - ".account": 1, - "a": 1, - "href": 1, - "}": 10, - ".view": 1, - "ul": 1, - "for": 1, - "user": 1, - "index": 1, - "of": 1, - "users": 1, - "li.user": 1, - "data": 1, - "-": 3, - "id": 1, - ".name": 1, - ".count": 1, - ".date": 1, - "countdownComponent": 1, - "input": 1, - "type": 1, - "text": 1, - "dualbind": 1, + "(": 30, + "e.g.": 1, + "time": 2, + ")": 33, "value": 1, - "button": 1, - "x": 2, - "signal": 1, - "h5": 1, - "animation": 1, - "slot": 1, - "@model": 1, - "@next": 1, - "footer": 1, - "bazCompo": 1 - }, - "SAS": { - "libname": 1, - "source": 1, - "data": 6, - "work.working_copy": 5, - ";": 22, - "set": 3, - "source.original_file.sas7bdat": 1, - "run": 6, - "if": 2, - "Purge": 1, - "then": 2, - "delete": 1, - "ImportantVariable": 1, - ".": 1, - "MissingFlag": 1, - "proc": 2, - "surveyselect": 1, - "work.data": 1, - "out": 2, - "work.boot": 2, - "method": 1, - "urs": 1, - "reps": 1, - "seed": 2, - "sampsize": 1, - "outhits": 1, - "samplingunit": 1, - "Site": 1, - "PROC": 1, - "MI": 1, - "work.bootmi": 2, - "nimpute": 1, - "round": 1, - "By": 2, - "Replicate": 2, - "VAR": 1, - "Variable1": 2, - "Variable2": 2, - "logistic": 1, - "descending": 1, - "_Imputation_": 1, - "model": 1, - "Outcome": 1, - "/": 1, - "risklimits": 1 - }, - "Xtend": { - "package": 2, - "example6": 1, - "import": 7, - "org.junit.Test": 2, - "static": 4, - "org.junit.Assert.*": 2, - "java.io.FileReader": 1, - "java.util.Set": 1, - "extension": 2, - "com.google.common.io.CharStreams.*": 1, - "class": 4, - "Movies": 1, - "{": 14, - "@Test": 7, - "def": 7, - "void": 7, - "numberOfActionMovies": 1, - "(": 42, - ")": 42, - "assertEquals": 14, - "movies.filter": 2, - "[": 9, - "categories.contains": 1, - "]": 9, - ".size": 2, - "}": 13, - "yearOfBestMovieFrom80ies": 1, - ".contains": 1, - "year": 2, - ".sortBy": 1, - "rating": 3, - ".last.year": 1, - "sumOfVotesOfTop2": 1, - "val": 9, - "long": 2, - "movies": 3, - "movies.sortBy": 1, - "-": 5, - ".take": 1, - ".map": 1, - "numberOfVotes": 2, - ".reduce": 1, - "a": 2, - "b": 2, - "|": 2, - "+": 6, - "_229": 1, - "new": 2, - "FileReader": 1, - ".readLines.map": 1, - "line": 1, - "segments": 1, - "line.split": 1, - ".iterator": 2, - "return": 1, - "Movie": 2, - "segments.next": 4, - "Integer": 1, - "parseInt": 1, - "Double": 1, - "parseDouble": 1, - "Long": 1, - "parseLong": 1, - "segments.toSet": 1, - "@Data": 1, - "String": 2, - "title": 1, - "int": 1, - "double": 2, - "Set": 1, - "": 1, - "categories": 1, - "example2": 1, - "BasicExpressions": 2, - "literals": 5, - "//": 11, + "any": 1, + "type": 1, + "The": 1, + "native": 5, + "function": 3, + "must": 1, + "be": 1, + "defined": 1, + "first.": 1, + "This": 1, + "special": 1, + "boot": 1, + "created": 1, + "manually": 1, + "within": 1, + "C": 1, + "code.": 1, + "Creates": 2, + "internal": 2, + "usage": 2, + "only": 2, + ".": 4, + "no": 3, + "check": 2, + "required": 2, + "we": 2, + "know": 2, + "it": 2, + "correct": 2, + "action": 2, + "Rebol": 4, + "re": 20, + "func": 5, + "s": 5, + "/i": 1, + "rejoin": 1, + "compose": 1, + "either": 1, + "i": 1, + "little": 1, + "helper": 1, + "standard": 1, + "grammar": 1, + "regex": 2, + "date": 6, + "naive": 1, "string": 1, - "work": 1, - "with": 2, - "single": 1, - "or": 1, - "quotes": 1, - "number": 1, - "big": 1, - "decimals": 1, - "in": 2, - "this": 1, - "case": 1, - "*": 1, - "bd": 3, - "boolean": 1, + "|": 22, + "S": 3, + "*": 7, + "<(?:[^^\\>": 1, + "d": 3, + "+": 6, + "/": 5, + "@": 1, + "%": 2, + "A": 3, + "F": 1, + "url": 1, + "PR_LITERAL": 10, + "string_url": 1, + "email": 1, + "string_email": 1, + "binary": 1, + "binary_base_two": 1, + "binary_base_sixty_four": 1, + "binary_base_sixteen": 1, + "re/i": 2, + "issue": 1, + "string_issue": 1, + "values": 1, + "value_date": 1, + "value_time": 1, + "tuple": 1, + "value_tuple": 1, + "pair": 1, + "value_pair": 1, + "number": 2, + "PR": 1, + "Za": 2, + "z0": 2, + "<[=>": 1, + "rebol": 1, + "red": 1, + "/system": 1, + "world": 1, + "topaz": 1, "true": 1, "false": 1, - "getClass": 1, - "typeof": 1, - "collections": 2, - "There": 1, - "are": 1, - "various": 1, - "methods": 2, - "to": 1, - "create": 1, - "and": 1, - "numerous": 1, - "which": 1, - "make": 1, - "working": 1, - "them": 1, - "convenient.": 1, - "list": 1, - "newArrayList": 2, - "list.map": 1, - "toUpperCase": 1, - ".head": 1, - "set": 1, - "newHashSet": 1, - "set.filter": 1, - "it": 2, - "map": 1, - "newHashMap": 1, - "map.get": 1, - "controlStructures": 1, - "looks": 1, - "like": 1, - "Java": 1, - "if": 1, - ".length": 1, - "but": 1, - "foo": 1, - "bar": 1, - "Never": 2, - "happens": 3, - "text": 2, - "never": 1, - "s": 1, - "cascades.": 1, - "Object": 1, - "someValue": 2, - "switch": 1, - "Number": 1, - "loops": 1, - "for": 2, - "loop": 2, - "var": 1, - "counter": 8, - "i": 4, - "..": 1, - "while": 2, - "iterator": 1, - "iterator.hasNext": 1, - "iterator.next": 1 + "yes": 1, + "on": 1, + "off": 1, + "none": 1, + "#": 1, + "hello": 8, + "print": 4, + "author": 1 + }, + "Red": { + "Red": 3, + "[": 111, + "Title": 2, + "Author": 1, + "]": 114, + "File": 1, + "%": 2, + "console.red": 1, + "Tabs": 1, + "Rights": 1, + "License": 2, + "{": 11, + "Distributed": 1, + "under": 1, + "the": 3, + "Boost": 1, + "Software": 1, + "Version": 1, + "See": 1, + "https": 1, + "//github.com/dockimbel/Red/blob/master/BSL": 1, + "-": 74, + "License.txt": 1, + "}": 11, + "Purpose": 2, + "Language": 2, + "http": 2, + "//www.red": 2, + "lang.org/": 2, + "#system": 1, + "global": 1, + "#either": 3, + "OS": 3, + "MacOSX": 2, + "History": 1, + "library": 1, + "cdecl": 3, + "add": 2, + "history": 2, + ";": 31, + "Add": 1, + "line": 9, + "to": 2, + "history.": 1, + "c": 7, + "string": 10, + "rl": 4, + "insert": 3, + "wrapper": 2, + "func": 1, + "count": 3, + "integer": 16, + "key": 3, + "return": 10, + "Windows": 2, + "system/platform": 1, + "ret": 5, + "AttachConsole": 1, + "if": 2, + "zero": 3, + "print": 5, + "halt": 2, + "SetConsoleTitle": 1, + "as": 4, + "string/rs": 1, + "head": 1, + "str": 4, + "bind": 1, + "tab": 3, + "input": 2, + "routine": 1, + "prompt": 3, + "/local": 1, + "len": 1, + "buffer": 4, + "string/load": 1, + "+": 1, + "length": 1, + "free": 1, + "byte": 3, + "ptr": 14, + "SET_RETURN": 1, + "(": 6, + ")": 4, + "delimiters": 1, + "function": 6, + "block": 3, + "list": 1, + "copy": 2, + "none": 1, + "foreach": 1, + "case": 2, + "escaped": 2, + "no": 2, + "in": 2, + "comment": 2, + "switch": 3, + "#": 8, + "mono": 3, + "mode": 3, + "cnt/1": 1, + "red": 1, + "eval": 1, + "code": 3, + "load/all": 1, + "unless": 1, + "tail": 1, + "set/any": 1, + "not": 1, + "script/2": 1, + "do": 2, + "skip": 1, + "script": 1, + "quit": 2, + "init": 1, + "console": 2, + "Console": 1, + "alpha": 1, + "version": 3, + "only": 1, + "ASCII": 1, + "supported": 1, + "Red/System": 1, + "#include": 1, + "../common/FPU": 1, + "configuration.reds": 1, + "C": 1, + "types": 1, + "#define": 2, + "time": 2, + "long": 2, + "clock": 1, + "date": 1, + "alias": 2, + "struct": 5, + "second": 1, + "minute": 1, + "hour": 1, + "day": 1, + "month": 1, + "year": 1, + "Since": 1, + "weekday": 1, + "since": 1, + "Sunday": 1, + "yearday": 1, + "daylight": 1, + "saving": 1, + "Negative": 1, + "unknown": 1, + "#import": 1, + "LIBC": 1, + "file": 1, + "Error": 1, + "handling": 1, + "form": 1, + "error": 5, + "Return": 1, + "description.": 1, + "Print": 1, + "standard": 1, + "output.": 1, + "Memory": 1, + "management": 1, + "make": 1, + "Allocate": 1, + "filled": 1, + "memory.": 1, + "chunks": 1, + "size": 5, + "binary": 4, + "resize": 1, + "Resize": 1, + "memory": 2, + "allocation.": 1, + "JVM": 6, + "reserved0": 1, + "int": 6, + "reserved1": 1, + "reserved2": 1, + "DestroyJavaVM": 1, + "JNICALL": 5, + "vm": 5, + "jint": 5, + "AttachCurrentThread": 1, + "penv": 3, + "p": 3, + "args": 2, + "DetachCurrentThread": 1, + "GetEnv": 1, + "AttachCurrentThreadAsDaemon": 1, + "just": 2, + "some": 2, + "datatypes": 1, + "for": 1, + "testing": 1, + "#some": 1, + "hash": 1, + "FF0000": 3, + "FF000000": 2, + "with": 4, + "instead": 1, + "of": 1, + "space": 2, + "/wAAAA": 1, + "/wAAA": 2, + "A": 2, + "inside": 2, + "char": 1, + "bla": 2, + "ff": 1, + "foo": 3, + "numbers": 1, + "which": 1, + "interpreter": 1, + "path": 1, + "h": 1, + "#if": 1, + "type": 1, + "exe": 1, + "push": 3, + "system/stack/frame": 2, + "save": 1, + "previous": 1, + "frame": 2, + "pointer": 2, + "system/stack/top": 1, + "@@": 1, + "reposition": 1, + "after": 1, + "catch": 1, + "flag": 1, + "CATCH_ALL": 1, + "exceptions": 1, + "root": 1, + "barrier": 1, + "keep": 1, + "stack": 1, + "aligned": 1, + "on": 1, + "bit": 1 }, -<<<<<<< HEAD "RobotFramework": { "***": 16, "Settings": 3, @@ -96722,303 +58997,55 @@ "It": 1, "especially": 1, "act": 1, -======= - "Arduino": { - "void": 2, - "setup": 1, - "(": 4, - ")": 4, - "{": 2, - "Serial.begin": 1, - ";": 2, - "}": 2, - "loop": 1, - "Serial.print": 1 - }, - "XProc": { - "": 1, - "version=": 2, - "encoding=": 1, - "": 1, - "xmlns": 2, - "p=": 1, - "c=": 1, - "": 1, - "port=": 2, - "": 1, - "": 1, - "Hello": 1, - "world": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1 - }, - "Haml": { - "%": 1, - "p": 1, - "Hello": 1, - "World": 1 - }, - "AspectJ": { - "package": 2, - "com.blogspot.miguelinlas3.aspectj.cache": 1, - ";": 29, - "import": 5, - "java.util.Map": 2, - "java.util.WeakHashMap": 1, - "org.aspectj.lang.JoinPoint": 1, - "com.blogspot.miguelinlas3.aspectj.cache.marker.Cachable": 1, - "public": 6, - "aspect": 2, - "CacheAspect": 1, - "{": 11, - "pointcut": 3, - "cache": 3, - "(": 46, - "Cachable": 2, - "cachable": 5, - ")": 46, - "execution": 1, - "@Cachable": 2, - "*": 2, - "..": 1, - "&&": 2, - "@annotation": 1, - "Object": 15, - "around": 2, - "String": 3, - "evaluatedKey": 6, - "this.evaluateKey": 1, - "cachable.scriptKey": 1, - "thisJoinPoint": 1, - "if": 2, - "cache.containsKey": 1, - "System.out.println": 5, - "+": 7, - "return": 5, - "this.cache.get": 1, - "}": 11, - "value": 3, - "proceed": 2, - "cache.put": 1, - "protected": 2, - "evaluateKey": 1, - "key": 2, - "JoinPoint": 1, - "joinPoint": 1, - "//": 1, - "TODO": 1, - "add": 1, - "some": 1, - "smart": 1, - "staff": 1, - "to": 1, - "allow": 1, - "simple": 1, - "scripting": 1, - "in": 1, - "annotation": 1, - "Map": 3, - "": 2, - "new": 1, - "WeakHashMap": 1, - "aspects.caching": 1, - "abstract": 3, - "OptimizeRecursionCache": 2, - "@SuppressWarnings": 3, - "private": 1, - "_cache": 2, - "getCache": 2, - "operation": 4, - "o": 16, - "topLevelOperation": 4, - "cflowbelow": 1, - "before": 1, - "cachedValue": 4, - "_cache.get": 1, - "null": 1, - "after": 2, - "returning": 2, - "result": 3, - "_cache.put": 1, - "_cache.size": 1 - }, - "RDoc": { - "RDoc": 7, - "-": 9, - "Ruby": 4, - "Documentation": 2, - "System": 1, - "home": 1, - "https": 3, - "//github.com/rdoc/rdoc": 1, - "rdoc": 7, - "http": 1, - "//docs.seattlerb.org/rdoc": 1, - "bugs": 1, - "//github.com/rdoc/rdoc/issues": 1, - "code": 1, - "quality": 1, - "{": 1, - "": 1, - "src=": 1, - "alt=": 1, - "}": 1, - "[": 3, - "//codeclimate.com/github/rdoc/rdoc": 1, - "]": 3, - "Description": 1, - "produces": 1, - "HTML": 1, - "and": 9, - "command": 4, - "line": 1, - "documentation": 8, - "for": 9, - "projects.": 1, - "includes": 1, - "the": 12, - "+": 8, - "ri": 1, - "tools": 1, - "generating": 1, - "displaying": 1, - "from": 1, - "line.": 1, - "Generating": 1, - "Once": 1, - "installed": 1, - "you": 3, - "can": 2, - "create": 1, - "using": 1, - "options": 1, - "names...": 1, - "For": 1, - "an": 1, - "up": 1, - "to": 4, - "date": 1, - "option": 1, - "summary": 1, - "type": 2, - "help": 1, - "A": 1, - "typical": 1, - "use": 1, - "might": 1, - "be": 3, - "generate": 1, - "a": 5, - "package": 1, - "of": 2, - "source": 2, - "(": 3, - "such": 1, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "as": 1, - "itself": 1, - ")": 3, - ".": 2, - "This": 2, - "generates": 1, - "all": 1, - "C": 1, - "files": 2, - "in": 4, - "below": 1, - "current": 1, - "directory.": 1, - "These": 1, - "will": 1, - "stored": 1, - "tree": 1, - "starting": 1, - "subdirectory": 1, - "doc": 1, - "You": 2, - "make": 2, - "this": 1, - "slightly": 1, - "more": 1, - "useful": 1, - "your": 1, - "readers": 1, - "by": 1, - "having": 1, - "index": 1, - "page": 1, + "examples": 1, + "easily": 1, + "understood": 1, + "also": 2, + "business": 2, + "people.": 1, + "Given": 1, + "calculator": 1, + "cleared": 2, + "When": 1, + "user": 2, + "types": 2, + "pushes": 2, + "equals": 2, + "Then": 1, + "result": 2, + "Calculator": 1, + "User": 2, + "All": 1, "contain": 1, - "primary": 1, - "file.": 1, - "In": 1, - "our": 1, - "case": 1, - "we": 1, - "could": 1, - "#": 1, - "rdoc/rdoc": 1, - "s": 1, - "OK": 1, - "file": 1, - "bug": 1, - "report": 1, - "anything": 1, - "t": 1, - "figure": 1, - "out": 1, - "how": 1, - "produce": 1, - "output": 1, - "like": 1, - "that": 1, - "is": 4, - "probably": 1, - "bug.": 1, - "License": 1, - "Copyright": 1, - "c": 2, - "Dave": 1, - "Thomas": 1, - "The": 1, - "Pragmatic": 1, - "Programmers.": 1, - "Portions": 2, - "Eric": 1, - "Hodel.": 1, - "copyright": 1, - "others": 1, - "see": 1, - "individual": 1, - "LEGAL.rdoc": 1, - "details.": 1, - "free": 1, - "software": 2, - "may": 1, - "redistributed": 1, - "under": 1, - "terms": 1, - "specified": 1, - "LICENSE.rdoc.": 1, - "Warranty": 1, - "provided": 1, - "without": 2, - "any": 1, - "express": 1, + "constructed": 1, + "from": 1, + "Creating": 1, + "new": 1, "or": 1, - "implied": 2, - "warranties": 2, - "including": 1, - "limitation": 1, - "merchantability": 1, - "fitness": 1, - "particular": 1, - "purpose.": 1 + "editing": 1, + "existing": 1, + "easy": 1, + "even": 1, + "for": 2, + "people": 2, + "without": 1, + "programming": 1, + "skills.": 1, + "normal": 1, + "automation.": 1, + "If": 1, + "understand": 1, + "may": 1, + "work": 1, + "better.": 1, + "Simple": 1, + "calculation": 2, + "Longer": 1, + "Clear": 1, + "built": 1, + "variable": 1 }, -<<<<<<< HEAD "Ruby": { "Pry.config.commands.import": 1, "Pry": 1, @@ -97221,349 +59248,48 @@ "self.class_s": 2, "#remove": 1, "invalid": 1, -======= - "AppleScript": { - "tell": 40, - "application": 16, - "set": 108, - "localMailboxes": 3, - "to": 128, - "every": 3, - "mailbox": 2, - "if": 50, - "(": 89, - "count": 10, - "of": 72, - ")": 88, - "is": 40, - "greater": 5, - "than": 6, - "then": 28, - "messageCountDisplay": 5, - "&": 63, - "return": 16, - "my": 3, - "getMessageCountsForMailboxes": 4, - "else": 14, - "end": 67, - "everyAccount": 2, - "account": 1, - "repeat": 19, - "with": 11, - "eachAccount": 3, - "in": 13, - "accountMailboxes": 3, - "name": 8, - "outputMessage": 2, - "make": 3, - "new": 2, - "outgoing": 2, - "message": 2, - "properties": 2, - "{": 32, - "content": 2, - "subject": 1, - "visible": 2, - "true": 8, - "}": 32, - "font": 2, - "size": 5, - "on": 18, - "theMailboxes": 2, - "-": 57, - "list": 9, - "mailboxes": 1, - "returns": 2, - "string": 17, - "displayString": 4, - "eachMailbox": 4, - "mailboxName": 2, - "messageCount": 2, - "messages": 1, - "as": 27, - "unreadCount": 2, - "unread": 1, - "padString": 3, - "theString": 4, - "fieldLength": 5, - "integer": 3, - "stringLength": 4, - "length": 1, - "paddedString": 5, - "text": 13, - "from": 9, - "character": 2, - "less": 1, - "or": 6, - "equal": 3, - "paddingLength": 2, - "times": 1, - "space": 1, - "isVoiceOverRunning": 3, - "isRunning": 3, - "false": 9, - "processes": 2, - "contains": 1, - "isVoiceOverRunningWithAppleScript": 3, - "isRunningWithAppleScript": 3, - "AppleScript": 2, - "enabled": 2, - "VoiceOver": 1, - "try": 10, - "x": 1, - "bounds": 2, - "vo": 1, - "cursor": 1, - "error": 3, - "currentDate": 3, - "current": 3, - "date": 1, - "amPM": 4, - "currentHour": 9, - "s": 3, - "minutes": 2, - "and": 7, - "<": 2, - "below": 1, - "sound": 1, - "nice": 1, - "currentMinutes": 4, - "ensure": 1, - "nn": 2, - "gets": 1, - "AM": 1, - "readjust": 1, - "for": 5, - "hour": 1, - "time": 1, - "currentTime": 3, - "day": 1, - "output": 1, - "say": 1, - "delay": 3, - "property": 7, - "type_list": 6, - "extension_list": 6, - "html": 2, - "not": 5, - "currently": 2, - "handled": 2, - "run": 4, - "FinderSelection": 4, - "the": 56, - "selection": 2, - "alias": 8, - "FS": 10, - "Ideally": 2, - "this": 2, - "could": 2, - "be": 2, - "passed": 2, - "open": 8, - "handler": 2, - "SelectionCount": 6, - "number": 6, - "userPicksFolder": 6, - "MyPath": 4, - "path": 6, - "me": 2, - "item": 13, - "If": 2, - "I": 2, - "m": 2, - "a": 4, - "double": 2, - "clicked": 2, - "droplet": 2, - "these_items": 18, - "choose": 2, - "file": 6, - "prompt": 2, - "type": 6, - "thesefiles": 2, - "item_info": 24, - "i": 10, - "this_item": 14, - "info": 4, - "folder": 10, - "processFolder": 8, - "extension": 4, - "theFilePath": 8, - "thePOSIXFilePath": 8, - "POSIX": 4, - "processFile": 8, - "process": 5, - "folders": 2, - "theFolder": 6, - "without": 2, - "invisibles": 2, - "need": 1, - "pass": 1, - "URL": 1, - "Terminal": 1, - "thePOSIXFileName": 6, - "terminalCommand": 6, - "convertCommand": 4, - "newFileName": 4, - "do": 4, - "shell": 2, - "script": 2, - "activate": 3, - "pane": 4, - "UI": 1, - "elements": 1, - "tab": 1, - "group": 1, - "window": 5, - "click": 1, - "radio": 1, - "button": 4, - "get": 1, - "value": 1, - "field": 1, - "display": 4, - "dialog": 4, - "windowWidth": 3, - "windowHeight": 3, - "delimiters": 1, - "screen_width": 2, - "JavaScript": 2, - "document": 2, - "screen_height": 2, - "myFrontMost": 3, - "first": 1, - "whose": 1, - "frontmost": 1, - "desktopTop": 2, - "desktopLeft": 1, - "desktopRight": 1, - "desktopBottom": 1, - "desktop": 1, - "w": 5, - "h": 4, - "drawer": 2, - "position": 1, - "/": 2, - "lowFontSize": 9, - "highFontSize": 6, - "messageText": 4, - "userInput": 4, - "default": 4, - "answer": 3, - "buttons": 3, - "returned": 5, - "minimumFontSize": 4, - "newFontSize": 6, - "result": 2, - "theText": 3, - "exit": 1, - "fontList": 2, - "crazyTextMessage": 2, - "eachCharacter": 4, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "characters": 1, - "some": 1, - "random": 4, - "color": 1 - }, - "Ox": { - "nldge": 1, - "ParticleLogLikeli": 1, - "(": 119, - ")": 119, - "{": 22, - "decl": 3, - "it": 5, - "ip": 1, - "mss": 3, - "mbas": 1, - "ms": 8, - "my": 4, - "mx": 7, - "vw": 7, - "vwi": 4, - "dws": 3, - "mhi": 3, - "mhdet": 2, - "loglikeli": 4, - "mData": 4, - "vxm": 1, - "vxs": 1, - "mxm": 1, - "<": 4, - "mxsu": 1, - "mxsl": 1, - "time": 2, - "timeall": 1, - "timeran": 1, - "timelik": 1, - "timefun": 1, - "timeint": 1, - "timeres": 1, - ";": 91, - "GetData": 1, - "m_asY": 1, - "sqrt": 1, - "*M_PI": 1, - "m_cY": 1, - "*": 5, - "determinant": 2, - "m_mMSbE.": 2, - "//": 17, - "covariance": 2, - "invert": 2, - "of": 2, - "measurement": 1, - "shocks": 1, - "m_vSss": 1, - "+": 14, - "zeros": 4, - "m_cPar": 4, - "m_cS": 1, - "start": 1, - "particles": 2, - "m_vXss": 1, - "m_cX": 1, - "steady": 1, - "state": 3, - "and": 1, - "policy": 2, - "init": 1, - "likelihood": 1, - "//timeall": 1, - "timer": 3, - "for": 2, - "sizer": 1, - "rann": 1, - "m_cSS": 1, - "m_mSSbE": 1, - "noise": 1, - "fg": 1, - "&": 2, - "transition": 1, - "prior": 1, - "as": 1, - "proposal": 1, - "m_oApprox.FastInterpolate": 1, - "interpolate": 1, - "fy": 1, - "m_cMS": 1, - "evaluate": 1, - "importance": 1, - "weights": 2, - "-": 31, - "[": 25, - "]": 25, - "observation": 1, - "error": 1, - "exp": 2, - "outer": 1, - "/mhdet": 2, - "sumr": 1, - "my*mhi": 1, - ".*my": 1, + "then": 4, + "camelcase": 1, + "it": 1, + "name.capitalize.gsub": 1, + "/": 34, + "_.": 1, + "s": 2, + "zA": 1, + "Z0": 1, + "upcase": 1, + ".gsub": 5, + "self.names": 1, + ".map": 6, + "f": 11, + "File.basename": 2, + ".sort": 2, + "self.all": 1, + "map": 1, + "self.map": 1, + "rv": 3, + "each": 1, + "<<": 15, + "self.each": 1, + "names.each": 1, + "n": 4, + "Formula.factory": 2, + "onoe": 2, + "inspect": 2, + "self.aliases": 1, + "self.canonical_name": 1, + "name.to_s": 3, + "name.kind_of": 2, + "Pathname": 2, + "formula_with_that_name": 1, + "HOMEBREW_REPOSITORY": 4, + "possible_alias": 1, + "possible_cached_formula": 1, + "HOMEBREW_CACHE_FORMULA": 2, + "name.include": 2, + "r": 3, ".": 3, -<<<<<<< HEAD "tapd": 1, ".downcase": 2, "tapd.find_formula": 1, @@ -97653,1915 +59379,1144 @@ "arg": 1, "arg.to_s": 1, "exec": 2, -======= - ".NaN": 1, - "no": 2, - "can": 1, - "happen": 1, - "extrem": 1, - "sumc": 1, - "if": 5, - "return": 10, - ".Inf": 2, - "or": 1, - "extremely": 1, - "wrong": 1, - "parameters": 1, - "log": 2, - "dws/m_cPar": 1, - "loglikelihood": 1, - "contribution": 1, - "//timelik": 1, - "/100": 1, - "//time": 1, - "resample": 1, - "vw/dws": 1, - "selection": 1, - "step": 1, - "in": 1, - "c": 1, - "on": 1, - "normalized": 1, - "}": 22, - "#include": 2, - "ParallelObjective": 1, - "obj": 18, - "DONOTUSECLIENT": 2, - "isclass": 1, - "obj.p2p": 2, - "oxwarning": 1, - "obj.L": 1, - "new": 19, - "P2P": 2, - "ObjClient": 4, - "ObjServer": 7, - "this.obj": 2, - "Execute": 4, - "basetag": 2, - "STOP_TAG": 1, - "iml": 1, - "obj.NvfuncTerms": 2, - "Nparams": 6, - "obj.nstruct": 2, - "Loop": 2, - "nxtmsgsz": 2, - "//free": 1, - "param": 1, - "length": 1, - "is": 1, - "greater": 1, - "than": 1, - "Volume": 3, - "QUIET": 2, - "println": 2, - "ID": 2, - "Server": 1, - "Recv": 1, - "ANY_TAG": 1, - "//receive": 1, - "the": 1, - "ending": 1, - "parameter": 1, - "vector": 1, - "Encode": 3, - "Buffer": 8, - "//encode": 1, - "it.": 1, - "Decode": 1, - "obj.nfree": 1, - "obj.cur.V": 1, - "vfunc": 2, - "CstrServer": 3, - "SepServer": 3, - "Lagrangian": 1, - "rows": 1, - "obj.cur": 1, - "Vec": 1, - "obj.Kvar.v": 1, - "imod": 1, - "Tag": 1, - "obj.K": 1, - "TRUE": 1, - "obj.Kvar": 1, - "PDF": 1, - "Kapital": 4, - "L": 2, - "const": 4, - "N": 5, - "entrant": 8, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "exit": 2, - "KP": 14, - "StateVariable": 1, - "this.entrant": 1, - "this.exit": 1, - "this.KP": 1, - "actual": 2, - "Kbar*vals/": 1, - "upper": 3, - "Transit": 1, - "FeasA": 2, - "ent": 5, - "CV": 7, - "stayout": 3, - "exit.pos": 1, - "tprob": 5, - "sigu": 2, - "SigU": 2, + "never": 1, + "gets": 1, + "here": 1, + "threw": 1, + "failed": 3, + "wr.close": 1, + "out": 4, + "rd.read": 1, + "until": 1, + "rd.eof": 1, + "Process.wait": 1, + ".success": 1, + "removed_ENV_variables.each": 1, + "key": 8, + "value": 4, + "ENV": 4, + "ENV.kind_of": 1, + "Hash": 3, + "BuildError.new": 1, + "args": 5, + "public": 2, + "fetch": 2, + "install_bottle": 1, + "CurlBottleDownloadStrategy.new": 1, + "mirror_list": 2, + "HOMEBREW_CACHE.mkpath": 1, + "fetched": 4, + "downloader.fetch": 1, + "CurlDownloadStrategyError": 1, + "mirror_list.empty": 1, + "mirror_list.shift.values_at": 1, + "retry": 2, + "checksum_type": 2, + "CHECKSUM_TYPES.detect": 1, + "instance_variable_defined": 2, + "verify_download_integrity": 2, + "fn": 2, + "args.length": 1, + "md5": 2, + "supplied": 4, + "instance_variable_get": 2, + "type.to_s.upcase": 1, + "hasher": 2, + "Digest.const_get": 1, + "hash": 2, + "fn.incremental_hash": 1, + "supplied.empty": 1, + "message": 2, + "EOF": 2, + "mismatch": 1, + "Expected": 1, + "Got": 1, + "Archive": 1, + "To": 1, + "an": 1, + "incomplete": 1, + "download": 1, + "remove": 1, + "the": 8, + "file": 1, + "above.": 1, + "supplied.upcase": 1, + "hash.upcase": 1, + "opoo": 1, + "private": 3, + "CHECKSUM_TYPES": 2, + "sha1": 4, + "sha256": 1, + ".freeze": 1, + "fetched.kind_of": 1, + "mktemp": 1, + "downloader.stage": 1, + "@buildpath": 2, + "Pathname.pwd": 1, + "patch_list": 1, + "Patches.new": 1, + "patch_list.empty": 1, + "patch_list.external_patches": 1, + "patch_list.download": 1, + "patch_list.each": 1, + "p": 2, + "p.compression": 1, + "gzip": 1, + "p.compressed_filename": 2, + "bzip2": 1, + "*": 3, + "p.patch_args": 1, "v": 2, - "&&": 1, - "<0>": 1, - "ones": 1, - "probn": 2, - "Kbe": 2, - "/sigu": 1, - "Kb0": 2, - "Kb2": 2, - "*upper": 1, - "/": 1, - "vals": 1, - "tprob.*": 1, - ".*stayout": 1, - "FirmEntry": 6, - "Run": 1, - "Initialize": 3, - "GenerateSample": 2, - "BDP": 2, - "BayesianDP": 1, - "Rust": 1, - "Reachable": 2, - "sige": 2, - "StDeviations": 1, - "<0.3,0.3>": 1, - "LaggedAction": 1, - "d": 2, - "array": 1, - "Kparams": 1, - "Positive": 4, - "Free": 1, - "Kb1": 1, - "Determined": 1, - "EndogenousStates": 1, - "K": 3, - "KN": 1, - "SetDelta": 1, - "Probability": 1, - "kcoef": 3, - "ecost": 3, - "Negative": 1, - "CreateSpaces": 1, - "LOUD": 1, - "EM": 4, - "ValueIteration": 1, - "Solve": 1, - "data": 4, - "DataSet": 1, - "Simulate": 1, - "DataN": 1, - "DataT": 1, - "FALSE": 1, - "Print": 1, - "ImaiJainChing": 1, - "delta": 1, - "*CV": 2, - "Utility": 1, - "u": 2, - "ent*CV": 1, - "*AV": 1, - "|": 1 - }, - "STON": { - "{": 15, - "[": 11, - "]": 11, - "}": 15, - "#a": 1, - "#b": 1, - "TestDomainObject": 1, - "#created": 1, - "DateAndTime": 2, - "#modified": 1, - "#integer": 1, - "#float": 1, - "#description": 1, - "#color": 1, - "#green": 1, - "#tags": 1, - "#two": 1, - "#beta": 1, - "#medium": 1, - "#bytes": 1, - "ByteArray": 1, - "#boolean": 1, - "false": 1, - "Rectangle": 1, - "#origin": 1, - "Point": 2, - "-": 2, - "#corner": 1, - "ZnResponse": 1, - "#headers": 2, - "ZnHeaders": 1, - "ZnMultiValueDictionary": 1, - "#entity": 1, - "ZnStringEntity": 1, - "#contentType": 1, - "ZnMimeType": 1, - "#main": 1, - "#sub": 1, - "#parameters": 1, - "#contentLength": 1, - "#string": 1, - "#encoder": 1, - "ZnUTF8Encoder": 1, - "#statusLine": 1, - "ZnStatusLine": 1, - "#version": 1, - "#code": 1, - "#reason": 1 - }, - "Scilab": { - "disp": 1, - "(": 7, - "%": 4, - "pi": 3, - ")": 7, - ";": 7, - "function": 1, - "[": 1, - "a": 4, - "b": 4, - "]": 1, - "myfunction": 1, - "d": 2, - "e": 4, - "f": 2, - "+": 5, - "cos": 1, - "cosh": 1, - "if": 1, - "then": 1, - "-": 2, - "e.field": 1, - "else": 1, - "home": 1, - "return": 1, - "end": 1, - "myvar": 1, - "endfunction": 1, - "assert_checkequal": 1, - "assert_checkfalse": 1 - }, - "Dart": { - "import": 1, - "as": 1, - "math": 1, - ";": 9, - "class": 1, - "Point": 5, - "{": 3, - "num": 2, - "x": 2, - "y": 2, - "(": 7, - "this.x": 1, - "this.y": 1, - ")": 7, - "distanceTo": 1, - "other": 1, - "var": 4, - "dx": 3, - "-": 2, - "other.x": 1, - "dy": 3, - "other.y": 1, - "return": 1, - "math.sqrt": 1, - "*": 2, - "+": 1, - "}": 3, - "void": 1, - "main": 1, - "p": 1, - "new": 2, - "q": 1, - "print": 1 - }, - "Nu": { - ";": 22, - "main.nu": 1, - "Entry": 1, - "point": 1, - "for": 1, - "a": 1, - "Nu": 1, - "program.": 1, - "Copyright": 1, - "(": 14, - "c": 1, - ")": 14, - "Tim": 1, - "Burks": 1, - "Neon": 1, - "Design": 1, - "Technology": 1, - "Inc.": 1, - "load": 4, - "basics": 1, - "cocoa": 1, - "definitions": 1, - "menu": 1, - "generation": 1, - "Aaron": 1, - "Hillegass": 1, - "t": 1, - "retain": 1, - "it.": 1, - "NSApplication": 2, - "sharedApplication": 2, - "setDelegate": 1, - "set": 1, - "delegate": 1, - "ApplicationDelegate": 1, - "alloc": 1, - "init": 1, - "this": 1, - "makes": 1, - "the": 3, - "application": 1, - "window": 1, - "take": 1, - "focus": 1, - "when": 1, - "we": 1, - "ve": 1, - "started": 1, - "it": 1, + "v.to_s.empty": 1, + "s/": 1, + "class_value": 3, + "self.class.send": 1, + "instance_variable_set": 1, + "self.method_added": 1, + "method": 4, + "self.attr_rw": 1, + "attrs": 1, + "attrs.each": 1, + "attr": 4, + "class_eval": 1, + "Q": 1, + "val": 10, + "val.nil": 3, + "@#": 2, + "attr_rw": 4, + "keg_only_reason": 1, + "skip_clean_all": 2, + "cc_failures": 1, + "stable": 2, + "&": 31, + "block": 30, + "block_given": 5, + "instance_eval": 2, + "ARGV.build_devel": 2, + "devel": 1, + "@mirrors": 3, + "clear": 1, "from": 1, - "terminal": 1, - "activateIgnoringOtherApps": 1, - "YES": 1, - "run": 1, - "main": 1, - "Cocoa": 1, - "event": 1, - "loop": 1, - "NSApplicationMain": 1, - "nil": 1, - "SHEBANG#!nush": 1, - "puts": 1 - }, - "Alloy": { - "module": 3, - "examples/systems/marksweepgc": 1, - "sig": 20, - "Node": 10, - "{": 54, - "}": 60, - "HeapState": 5, - "left": 3, - "right": 1, - "-": 41, - "lone": 6, - "marked": 1, - "set": 10, - "freeList": 1, - "pred": 16, - "clearMarks": 1, - "[": 82, - "hs": 16, - ".marked": 3, - ".right": 4, - "hs.right": 3, - "fun": 1, - "reachable": 1, - "n": 5, - "]": 80, - "+": 14, - "n.": 1, - "(": 12, - "hs.left": 2, - ")": 9, - "mark": 1, - "from": 2, - "hs.reachable": 1, - "setFreeList": 1, - ".freeList.*": 3, - ".left": 5, - "hs.marked": 1, - "GC": 1, + "release": 1, + "bottle": 1, + "bottle_block": 1, + "Class.new": 2, + "self.version": 1, + "self.url": 1, + "self.sha1": 1, + "sha1.shift": 1, + "@sha1": 6, + "MacOS.cat": 1, + "String": 2, + "MacOS.lion": 1, + "self.data": 1, + "&&": 8, + "bottle_block.instance_eval": 1, + "@bottle_version": 1, + "bottle_block.data": 1, + "mirror": 1, + "@mirrors.uniq": 1, + "dependencies": 1, + "@dependencies": 1, + "DependencyCollector.new": 1, + "depends_on": 1, + "dependencies.add": 1, + "paths": 3, + "all": 1, + "@skip_clean_all": 2, + "@skip_clean_paths": 3, + ".flatten.each": 1, + "p.to_s": 2, + "@skip_clean_paths.include": 1, + "skip_clean_paths": 1, + "reason": 2, + "explanation": 1, + "@keg_only_reason": 1, + "KegOnlyReason.new": 1, + "explanation.to_s.chomp": 1, + "compiler": 3, + "@cc_failures": 2, + "CompilerFailures.new": 1, + "CompilerFailure.new": 2, + "Grit": 1, + "ActiveSupport": 1, + "Inflector": 1, + "extend": 2, + "pluralize": 3, + "word": 10, + "apply_inflections": 3, + "inflections.plurals": 1, + "singularize": 2, + "inflections.singulars": 1, + "camelize": 2, + "term": 1, + "uppercase_first_letter": 2, + "string": 4, + "term.to_s": 1, + "string.sub": 2, + "z": 7, + "d": 6, + "*/": 1, + "inflections.acronyms": 1, + ".capitalize": 1, + "inflections.acronym_regex": 2, + "b": 4, + "A": 5, + "Z_": 1, + "string.gsub": 1, + "_": 2, + "/i": 2, + "underscore": 3, + "camel_cased_word": 6, + "camel_cased_word.to_s.dup": 1, + "word.gsub": 4, + "Za": 1, + "Z": 3, + "word.tr": 1, + "word.downcase": 1, + "humanize": 2, + "lower_case_and_underscored_word": 1, + "result": 8, + "lower_case_and_underscored_word.to_s.dup": 1, + "inflections.humans.each": 1, + "rule": 4, + "replacement": 4, + "break": 4, + "result.sub": 2, + "result.gsub": 2, + "/_id": 1, + "result.tr": 1, + "match": 6, + "w/": 1, + ".upcase": 1, + "titleize": 1, + "": 1, + "capitalize": 1, + "Create": 1, + "of": 1, + "table": 2, + "like": 1, + "Rails": 1, + "does": 1, + "for": 1, + "models": 1, + "to": 1, + "names": 2, + "This": 1, + "uses": 1, + "on": 2, + "last": 4, + "in": 3, + "RawScaledScorer": 1, + "tableize": 2, + "class_name": 2, + "classify": 1, + "table_name": 1, + "table_name.to_s.sub": 1, + "/.*": 1, + "./": 1, + "dasherize": 1, + "underscored_word": 1, + "underscored_word.tr": 1, + "demodulize": 1, + "i": 2, + "path.rindex": 2, + "..": 1, + "deconstantize": 1, + "implementation": 1, + "based": 1, + "one": 1, + "facets": 1, + "id": 1, + "outside": 2, + "inside": 2, + "owned": 1, + "constant": 4, + "constant.ancestors.inject": 1, + "const": 3, + "ancestor": 3, + "Object": 1, + "ancestor.const_defined": 1, + "constant.const_get": 1, + "safe_constantize": 1, + "constantize": 1, + "e.message": 2, + "uninitialized": 1, + "wrong": 1, + "const_regexp": 3, + "e.name.to_s": 1, + "camel_cased_word.to_s": 1, + "ArgumentError": 1, + "/not": 1, + "missing": 1, + "ordinal": 1, + "number": 2, + ".include": 1, + "number.to_i.abs": 2, + "ordinalize": 1, + "nodoc": 3, + "parts": 1, + "camel_cased_word.split": 1, + "parts.pop": 1, + "parts.reverse.inject": 1, + "acc": 2, + "part": 1, + "part.empty": 1, + "rules": 1, + "word.to_s.dup": 1, + "word.empty": 1, + "inflections.uncountables.include": 1, + "result.downcase": 1, + "Z/": 1, + "rules.each": 1, + ".unshift": 1, + "File.dirname": 4, + "__FILE__": 3, + "For": 1, + "use/testing": 1, + "no": 1, + "require_all": 4, + "glob": 2, + "File.join": 6, + "Jekyll": 3, + "VERSION": 1, + "DEFAULTS": 2, + "Dir.pwd": 3, + "self.configuration": 1, + "override": 3, + "source": 2, + "config_file": 2, + "config": 3, + "YAML.load_file": 1, + "config.is_a": 1, + "stdout.puts": 1, + "err": 1, + "stderr.puts": 2, + "err.to_s": 1, + "DEFAULTS.deep_merge": 1, + ".deep_merge": 1, + "Jenkins": 1, + "Plugin": 1, + "Specification.new": 1, + "plugin.name": 1, + "plugin.display_name": 1, + "plugin.version": 1, + "plugin.description": 1, + "plugin.url": 1, + "plugin.developed_by": 1, + "plugin.uses_repository": 1, + "github": 1, + "plugin.depends_on": 1, + "#plugin.depends_on": 1, + "SHEBANG#!macruby": 1, + "object": 2, + "@user": 1, + "person": 1, + "attributes": 2, + "username": 1, + "email": 1, + "location": 1, + "created_at": 1, + "registered_at": 1, + "node": 2, + "role": 1, + "user": 1, + "user.is_admin": 1, + "child": 1, + "phone_numbers": 1, + "pnumbers": 1, + "extends": 1, + "node_numbers": 1, + "u": 1, + "partial": 1, + "u.phone_numbers": 1, + "Resque": 3, + "Helpers": 1, + "redis": 7, + "server": 11, + "/redis": 1, + "Redis.connect": 2, + "thread_safe": 2, + "namespace": 3, + "server.split": 2, + "host": 3, + "port": 4, + "db": 3, + "Redis.new": 1, + "resque": 2, + "@redis": 6, + "Redis": 3, + "Namespace.new": 2, + "Namespace": 1, + "@queues": 2, + "Hash.new": 1, + "h": 2, + "Queue.new": 1, + "coder": 3, + "@coder": 1, + "MultiJsonCoder.new": 1, + "attr_writer": 4, + "self.redis": 2, + "Redis.respond_to": 1, + "connect": 1, + "redis_id": 2, + "redis.respond_to": 2, + "redis.server": 1, + "nodes": 1, + "distributed": 1, + "redis.nodes.map": 1, + "n.id": 1, + ".join": 1, + "redis.client.id": 1, + "before_first_fork": 2, + "@before_first_fork": 2, + "before_fork": 2, + "@before_fork": 2, + "after_fork": 2, + "@after_fork": 2, + "to_s": 1, + "attr_accessor": 2, + "inline": 3, + "alias": 1, + "push": 1, + "queue": 24, + "item": 4, + "pop": 1, + ".pop": 1, + "ThreadError": 1, + "size": 3, + ".size": 1, + "peek": 1, + "start": 7, + "count": 5, + ".slice": 1, + "list_range": 1, + "decode": 2, + "redis.lindex": 1, + "Array": 2, + "redis.lrange": 1, + "queues": 3, + "redis.smembers": 1, + "remove_queue": 1, + ".destroy": 1, + "@queues.delete": 1, + "queue.to_s": 1, + "enqueue": 1, + "enqueue_to": 2, + "queue_from_class": 4, + "before_hooks": 2, + "Plugin.before_enqueue_hooks": 1, + ".collect": 2, + "hook": 9, + "klass.send": 4, + "before_hooks.any": 2, + "Job.create": 1, + "Plugin.after_enqueue_hooks": 1, + "dequeue": 1, + "Plugin.before_dequeue_hooks": 1, + "Job.destroy": 1, + "Plugin.after_dequeue_hooks": 1, + "klass.instance_variable_get": 1, + "@queue": 1, + "klass.respond_to": 1, + "klass.queue": 1, + "reserve": 1, + "Job.reserve": 1, + "validate": 1, + "NoQueueError.new": 1, + "klass.to_s.empty": 1, + "NoClassError.new": 1, + "workers": 2, + "Worker.all": 1, + "working": 2, + "Worker.working": 1, + "remove_worker": 1, + "worker_id": 2, + "worker": 1, + "Worker.find": 1, + "worker.unregister_worker": 1, + "pending": 1, + "queues.inject": 1, + "m": 3, + "k": 2, + "processed": 2, + "Stat": 2, + "queues.size": 1, + "workers.size.to_i": 1, + "working.size": 1, + "servers": 1, + "environment": 2, + "keys": 6, + "redis.keys": 1, + "key.sub": 1, + "SHEBANG#!ruby": 2, + "SHEBANG#!rake": 1, + "Sinatra": 2, + "Request": 2, + "<": 2, + "Rack": 1, + "accept": 1, + "@env": 2, + "entries": 1, + ".to_s.split": 1, + "entries.map": 1, + "accept_entry": 1, + ".sort_by": 1, + "first": 1, + "preferred_type": 1, + "self.defer": 1, + "pattern": 1, + "path.respond_to": 5, + "path.keys": 1, + "path.names": 1, + "TypeError": 1, + "URI": 3, + "URI.const_defined": 1, + "Parser": 1, + "Parser.new": 1, + "encoded": 1, + "char": 4, + "enc": 5, + "URI.escape": 1, + "helpers": 3, + "data": 1, + "reset": 1, + "set": 36, + "development": 6, + ".to_sym": 1, + "raise_errors": 1, + "Proc.new": 11, + "test": 5, + "dump_errors": 1, + "show_exceptions": 1, + "sessions": 1, + "logging": 2, + "protection": 1, + "method_override": 4, + "use_code": 1, + "default_encoding": 1, + "add_charset": 1, + "javascript": 1, + "xml": 2, + "xhtml": 1, + "json": 1, + "settings.add_charset": 1, + "text": 3, + "session_secret": 3, + "SecureRandom.hex": 1, + "NotImplementedError": 1, + "Kernel.rand": 1, + "**256": 1, + "alias_method": 2, + "methodoverride": 2, + "run": 2, + "via": 1, + "at": 1, + "running": 2, + "built": 1, + "now": 1, + "http": 1, + "webrick": 1, + "bind": 1, + "ruby_engine": 6, + "defined": 1, + "RUBY_ENGINE": 2, + "server.unshift": 6, + "ruby_engine.nil": 1, + "absolute_redirects": 1, + "prefixed_redirects": 1, + "empty_path_info": 1, + "app_file": 4, "root": 5, - "assert": 3, - "Soundness1": 2, - "all": 16, - "h": 9, - "live": 3, - "h.reachable": 1, - "|": 19, - "h.right": 1, - "Soundness2": 2, - "no": 8, - ".reachable": 2, - "h.GC": 1, - "in": 19, - ".freeList": 1, - "check": 6, - "for": 7, - "expect": 6, - "Completeness": 1, - "examples/systems/views": 1, - "open": 2, - "util/ordering": 1, - "State": 16, - "as": 2, - "so": 1, - "util/relation": 1, - "rel": 1, - "Ref": 19, - "Object": 10, - "t": 16, - "b": 13, - "v": 25, - "views": 2, - "when": 1, - "is": 1, - "view": 2, + "File.expand_path": 1, + "views": 1, + "reload_templates": 1, + "lock": 1, + "threaded": 1, + "public_folder": 3, + "static": 1, + "File.exist": 1, + "static_cache_control": 1, + "error": 3, + "Exception": 1, + "response.status": 1, + "content_type": 3, + "configure": 2, + "get": 2, + "filename": 2, + "png": 1, + "send_file": 1, + "NotFound": 1, + "HTML": 2, + "": 1, + "html": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "

": 1, + "doesn": 1, + "rsquo": 1, + "know": 1, + "this": 2, + "ditty.": 1, + "

": 1, + "": 1, + "src=": 1, + "
": 1, + "id=": 1, + "Try": 1, + "
": 1,
+      "request.request_method.downcase": 1,
+      "nend": 1,
+      "
": 1, + "
": 1, + "": 1, + "": 1, + "Application": 2, + "Base": 2, + "super": 3, + "self.register": 2, + "extensions": 6, + "added_methods": 2, + "extensions.map": 1, + "m.public_instance_methods": 1, + ".flatten": 1, + "Delegator.delegate": 1, + "Delegator": 1, + "self.delegate": 1, + "methods": 1, + "methods.each": 1, + "method_name": 5, + "define_method": 1, + "respond_to": 1, + "Delegator.target.send": 1, + "delegate": 1, + "put": 1, + "post": 1, + "delete": 1, + "template": 1, + "layout": 1, + "before": 1, + "after": 1, + "not_found": 1, + "mime_type": 1, + "enable": 1, + "disable": 1, + "use": 1, + "production": 1, + "settings": 2, + "target": 1, + "self.target": 1, + "Wrapper": 1, + "stack": 2, + "instance": 2, + "@stack": 1, + "@instance": 2, + "@instance.settings": 1, + "call": 1, + "env": 2, + "@stack.call": 1, + "self.new": 1, + "base": 4, + "base.class_eval": 1, + "Delegator.target.register": 1, + "self.helpers": 1, + "Delegator.target.helpers": 1, + "self.use": 1, + "Delegator.target.use": 1, + "SHEBANG#!python": 1 + }, + "Rust": { + "//": 20, + "use": 10, + "cell": 1, + "Cell": 2, + ";": 218, + "cmp": 1, + "Eq": 2, + "option": 4, + "result": 18, + "Result": 3, + "comm": 5, + "{": 213, + "stream": 21, + "Chan": 4, + "GenericChan": 1, + "GenericPort": 1, + "Port": 3, + "SharedChan": 4, + "}": 210, + "prelude": 1, + "*": 1, + "task": 39, + "rt": 29, + "task_id": 2, + "sched_id": 2, + "rust_task": 1, + "util": 4, + "replace": 8, + "mod": 5, + "local_data_priv": 1, + "pub": 26, + "local_data": 1, + "spawn": 15, + "///": 13, + "A": 6, + "handle": 3, + "to": 6, + "a": 9, + "scheduler": 6, + "#": 61, + "[": 61, + "deriving_eq": 3, + "]": 61, + "enum": 4, + "Scheduler": 4, + "SchedulerHandle": 2, + "(": 429, + ")": 434, + "Task": 2, + "TaskHandle": 2, + "TaskResult": 4, + "Success": 6, + "Failure": 6, + "impl": 3, + "for": 10, + "pure": 2, + "fn": 89, + "eq": 1, + "&": 30, + "self": 15, + "other": 4, + "-": 33, + "bool": 6, + "match": 4, + "|": 20, + "true": 9, + "_": 4, + "false": 7, + "ne": 1, + ".eq": 1, + "modes": 1, + "SchedMode": 4, + "Run": 3, + "on": 5, + "the": 10, + "default": 1, + "DefaultScheduler": 2, + "current": 1, + "CurrentScheduler": 2, + "specific": 1, + "ExistingScheduler": 1, + "PlatformThread": 2, + "All": 1, + "tasks": 1, + "run": 1, + "in": 3, + "same": 1, + "OS": 3, + "thread": 2, + "SingleThreaded": 4, + "Tasks": 2, + "are": 2, + "distributed": 2, + "among": 2, + "available": 1, + "CPUs": 1, + "ThreadPerCore": 2, + "Each": 1, + "runs": 1, + "its": 1, + "own": 1, + "ThreadPerTask": 1, + "fixed": 1, + "number": 1, "of": 3, - "type": 1, - "backing": 1, - "dirty": 3, - "contains": 1, - "refs": 7, - "that": 1, + "threads": 1, + "ManualThreads": 3, + "uint": 7, + "struct": 7, + "SchedOpts": 4, + "mode": 9, + "foreign_stack_size": 3, + "Option": 4, + "": 2, + "TaskOpts": 12, + "linked": 15, + "supervised": 11, + "mut": 16, + "notify_chan": 24, + "<": 3, + "": 3, + "sched": 10, + "TaskBuilder": 21, + "opts": 21, + "gen_body": 4, + "@fn": 2, + "v": 6, + "can_not_copy": 11, + "": 1, + "consumed": 4, + "default_task_opts": 4, + "body": 6, + "Identity": 1, + "function": 1, + "None": 23, + "doc": 1, + "hidden": 1, + "FIXME": 1, + "#3538": 1, + "priv": 1, + "consume": 1, + "if": 7, + "self.consumed": 2, + "fail": 17, + "Fake": 1, + "move": 1, + "let": 84, + "self.opts.notify_chan": 7, + "self.opts.linked": 4, + "self.opts.supervised": 5, + "self.opts.sched": 6, + "self.gen_body": 2, + "unlinked": 1, + "..": 8, + "self.consume": 7, + "future_result": 1, + "blk": 2, + "self.opts.notify_chan.is_some": 1, + "notify_pipe_po": 2, + "notify_pipe_ch": 2, + "Some": 8, + "Configure": 1, + "custom": 1, + "task.": 1, + "sched_mode": 1, + "add_wrapper": 1, + "wrapper": 2, + "prev_gen_body": 2, + "f": 38, + "x": 7, + "x.opts.linked": 1, + "x.opts.supervised": 1, + "x.opts.sched": 1, + "spawn_raw": 1, + "x.gen_body": 1, + "Runs": 1, + "while": 2, + "transfering": 1, + "ownership": 1, + "one": 1, + "argument": 1, + "child.": 1, + "spawn_with": 2, + "": 2, + "arg": 5, + "do": 49, + "self.spawn": 1, + "arg.take": 1, + "try": 5, + "": 2, + "T": 2, + "": 2, + "po": 11, + "ch": 26, + "": 1, + "fr_task_builder": 1, + "self.future_result": 1, + "+": 4, + "r": 6, + "fr_task_builder.spawn": 1, + "||": 11, + "ch.send": 11, + "unwrap": 3, + ".recv": 3, + "Ok": 3, + "po.recv": 10, + "Err": 2, + ".spawn": 9, + "spawn_unlinked": 6, + ".unlinked": 3, + "spawn_supervised": 5, + ".supervised": 2, + ".spawn_with": 1, + "spawn_sched": 8, + ".sched_mode": 2, + ".try": 1, + "yield": 16, + "Yield": 1, + "control": 1, + "unsafe": 31, + "task_": 2, + "rust_get_task": 5, + "killed": 3, + "rust_task_yield": 1, + "&&": 1, + "failing": 2, + "True": 1, + "running": 2, + "has": 1, + "failed": 1, + "rust_task_is_unwinding": 1, + "get_task": 1, + "Get": 1, + "get_task_id": 1, + "get_scheduler": 1, + "rust_get_sched_id": 6, + "unkillable": 5, + "": 3, + "U": 6, + "AllowFailure": 5, + "t": 24, + "*rust_task": 6, + "drop": 3, + "rust_task_allow_kill": 3, + "self.t": 4, + "_allow_failure": 2, + "rust_task_inhibit_kill": 3, + "The": 1, + "inverse": 1, + "unkillable.": 1, + "Only": 1, + "ever": 1, + "be": 2, + "used": 1, + "nested": 1, + ".": 1, + "rekillable": 1, + "DisallowFailure": 5, + "atomically": 3, + "DeferInterrupts": 5, + "rust_task_allow_yield": 1, + "_interrupts": 1, + "rust_task_inhibit_yield": 1, + "test": 31, + "should_fail": 11, + "ignore": 16, + "cfg": 16, + "windows": 14, + "test_cant_dup_task_builder": 1, + "b": 2, + "b.spawn": 2, + "should": 2, "have": 1, "been": 1, - "invalidated": 1, - "obj": 1, - "one": 8, - "ViewType": 8, - "anyviews": 2, - "visualization": 1, - "ViewType.views": 1, - "Map": 2, - "extends": 10, - "keys": 3, - "map": 2, - "s": 6, - "Ref.map": 1, - "s.refs": 3, - "MapRef": 4, - "fact": 4, - "State.obj": 3, - "Iterator": 2, - "done": 3, - "lastRef": 2, - "IteratorRef": 5, - "Set": 2, - "elts": 2, - "SetRef": 5, - "abstract": 2, - "KeySetView": 6, - "State.views": 1, - "IteratorView": 3, - "s.views": 2, - "handle": 1, - "possibility": 1, - "modifying": 1, - "an": 1, - "object": 1, - "and": 1, - "its": 1, - "at": 1, - "once": 1, - "*": 1, - "should": 1, - "we": 1, - "limit": 1, - "frame": 1, - "conds": 1, - "to": 1, - "non": 1, - "*/": 1, - "modifies": 5, - "pre": 15, - "post": 14, - "rs": 4, - "let": 5, - "vr": 1, - "pre.views": 8, - "mods": 3, - "rs.*vr": 1, - "r": 3, - "pre.refs": 6, - "pre.obj": 10, - "post.obj": 7, - "viewFrame": 4, - "post.dirty": 1, - "pre.dirty": 1, - "some": 3, - "&&": 2, - "allocates": 5, - "&": 3, - "post.refs": 1, - ".map": 3, - ".elts": 3, - "dom": 1, - "<:>": 1, - "setRefs": 1, - "this": 14, - "MapRef.put": 1, - "k": 5, - "none": 4, - "post.views": 4, - "SetRef.iterator": 1, - "iterRef": 4, - "i": 7, - "i.left": 3, - "i.done": 1, - "i.lastRef": 1, - "IteratorRef.remove": 1, - ".lastRef": 2, - "IteratorRef.next": 1, - "ref": 3, - "IteratorRef.hasNext": 1, - "s.obj": 1, - "zippishOK": 2, - "ks": 6, - "vs": 6, - "m": 4, - "ki": 2, - "vi": 2, - "s0": 4, - "so/first": 1, - "s1": 4, - "so/next": 7, - "s2": 6, - "s3": 4, - "s4": 4, - "s5": 4, - "s6": 4, - "s7": 2, - "precondition": 2, - "s0.dirty": 1, - "ks.iterator": 1, - "vs.iterator": 1, - "ki.hasNext": 1, - "vi.hasNext": 1, - "ki.this/next": 1, - "vi.this/next": 1, - "m.put": 1, - "ki.remove": 1, - "vi.remove": 1, - "State.dirty": 1, - "ViewType.pre.views": 2, - "but": 1, - "#s.obj": 1, - "<": 1, - "examples/systems/file_system": 1, - "Name": 2, - "File": 1, - "d": 3, - "Dir": 8, - "d.entries.contents": 1, - "entries": 3, - "DirEntry": 2, - "parent": 3, - "this.": 4, - "@contents.": 1, - "@entries": 1, - "e1": 2, - "e2": 2, - "e1.name": 1, - "e2.name": 1, - "@parent": 2, - "Root": 5, - "Cur": 1, - "name": 1, - "contents": 2, - "OneParent_buggyVersion": 2, - "d.parent": 2, - "OneParent_correctVersion": 2, - "contents.d": 1, - "NoDirAliases": 3, - "o": 1, - "o.": 1 - }, - "Red": { - "Red/System": 1, - "[": 111, - "Title": 2, - "Purpose": 2, - "Language": 2, - "http": 2, - "//www.red": 2, - "-": 74, - "lang.org/": 2, - "]": 114, - "#include": 1, - "%": 2, - "../common/FPU": 1, - "configuration.reds": 1, - ";": 31, - "C": 1, - "types": 1, - "#define": 2, - "time": 2, - "long": 2, - "clock": 1, - "date": 1, - "alias": 2, - "struct": 5, - "second": 1, - "integer": 16, - "(": 6, - ")": 4, - "minute": 1, - "hour": 1, - "day": 1, - "month": 1, - "year": 1, - "Since": 1, - "weekday": 1, - "since": 1, - "Sunday": 1, - "yearday": 1, - "daylight": 1, - "saving": 1, - "Negative": 1, - "unknown": 1, - "#either": 3, - "OS": 3, - "#import": 1, - "LIBC": 1, - "file": 1, - "cdecl": 3, - "Error": 1, - "handling": 1, - "form": 1, - "error": 5, - "Return": 1, - "description.": 1, - "code": 3, - "return": 10, - "c": 7, - "string": 10, - "print": 5, - "Print": 1, - "to": 2, - "standard": 1, - "output.": 1, - "Memory": 1, - "management": 1, - "make": 1, - "Allocate": 1, - "zero": 3, - "filled": 1, - "memory.": 1, - "chunks": 1, - "size": 5, - "binary": 4, - "resize": 1, - "Resize": 1, - "memory": 2, - "allocation.": 1, - "JVM": 6, - "reserved0": 1, - "int": 6, - "ptr": 14, - "reserved1": 1, - "reserved2": 1, - "DestroyJavaVM": 1, - "function": 6, - "JNICALL": 5, - "vm": 5, - "jint": 5, - "AttachCurrentThread": 1, - "penv": 3, - "p": 3, - "args": 2, - "byte": 3, - "DetachCurrentThread": 1, - "GetEnv": 1, - "version": 3, - "AttachCurrentThreadAsDaemon": 1, - "just": 2, - "some": 2, - "datatypes": 1, - "for": 1, - "testing": 1, - "#some": 1, - "hash": 1, - "quit": 2, - "#": 8, - "{": 11, - "FF0000": 3, - "}": 11, - "FF000000": 2, - "with": 4, - "tab": 3, - "instead": 1, - "of": 1, - "space": 2, - "/wAAAA": 1, - "/wAAA": 2, - "A": 2, - "inside": 2, - "char": 1, - "bla": 2, - "ff": 1, - "foo": 3, - "numbers": 1, - "which": 1, - "interpreter": 1, - "path": 1, - "copy": 2, - "h": 1, - "#if": 1, - "type": 1, - "exe": 1, - "push": 3, - "system/stack/frame": 2, - "save": 1, + "by": 1, "previous": 1, - "frame": 2, - "pointer": 2, - "system/stack/top": 1, - "@@": 1, - "reposition": 1, - "after": 1, - "the": 3, - "catch": 1, - "flag": 1, - "CATCH_ALL": 1, - "exceptions": 1, - "root": 1, - "barrier": 1, - "keep": 1, - "stack": 1, - "aligned": 1, - "on": 1, - "bit": 1, - "Red": 3, - "Author": 1, - "File": 1, - "console.red": 1, - "Tabs": 1, - "Rights": 1, - "License": 2, - "Distributed": 1, - "under": 1, - "Boost": 1, - "Software": 1, - "Version": 1, - "See": 1, - "https": 1, - "//github.com/dockimbel/Red/blob/master/BSL": 1, - "License.txt": 1, - "#system": 1, - "global": 1, - "MacOSX": 2, - "History": 1, - "library": 1, - "add": 2, - "history": 2, - "Add": 1, - "line": 9, - "history.": 1, - "rl": 4, - "insert": 3, - "wrapper": 2, - "func": 1, - "count": 3, - "key": 3, - "Windows": 2, - "system/platform": 1, - "ret": 5, - "AttachConsole": 1, - "if": 2, - "halt": 2, - "SetConsoleTitle": 1, - "as": 4, - "string/rs": 1, - "head": 1, - "str": 4, - "bind": 1, - "input": 2, - "routine": 1, - "prompt": 3, - "/local": 1, - "len": 1, - "buffer": 4, - "string/load": 1, - "+": 1, - "length": 1, - "free": 1, - "SET_RETURN": 1, - "delimiters": 1, - "block": 3, - "list": 1, - "none": 1, - "foreach": 1, - "case": 2, - "escaped": 2, - "no": 2, - "in": 2, - "comment": 2, - "switch": 3, - "mono": 3, - "mode": 3, - "cnt/1": 1, - "red": 1, - "eval": 1, - "load/all": 1, - "unless": 1, - "tail": 1, - "set/any": 1, - "not": 1, - "script/2": 1, - "do": 2, - "skip": 1, - "script": 1, - "init": 1, - "console": 2, - "Console": 1, - "alpha": 1, - "only": 1, - "ASCII": 1, - "supported": 1 - }, - "BlitzBasic": { - "Local": 34, - "bk": 3, - "CreateBank": 5, - "(": 125, - ")": 126, - "PokeFloat": 3, - "-": 24, - "Print": 13, - "Bin": 4, - "PeekInt": 4, - "%": 6, - "Shl": 7, - "f": 5, - "ff": 1, - "+": 11, - "Hex": 2, - "FloatToHalf": 3, - "HalfToFloat": 1, - "FToI": 2, - "WaitKey": 2, - "End": 58, - ";": 57, - "Half": 1, - "precision": 2, - "bit": 2, - "arithmetic": 2, - "library": 2, - "Global": 2, - "Half_CBank_": 13, - "Function": 101, - "f#": 3, - "If": 25, - "Then": 18, - "Return": 36, - "HalfToFloat#": 1, - "h": 4, - "signBit": 6, - "exponent": 22, - "fraction": 9, - "fBits": 8, - "And": 8, - "<": 18, - "Shr": 3, - "F": 3, - "FF": 2, - "ElseIf": 1, - "Or": 4, - "PokeInt": 2, - "PeekFloat": 1, - "F800000": 1, - "FFFFF": 1, - "Abs": 1, - "*": 2, - "Sgn": 1, - "Else": 7, - "EndIf": 7, - "HalfAdd": 1, - "l": 84, - "r": 12, - "HalfSub": 1, - "HalfMul": 1, - "HalfDiv": 1, - "HalfLT": 1, - "HalfGT": 1, - "Double": 2, - "DoubleOut": 1, - "[": 2, - "]": 2, - "Double_CBank_": 1, - "DoubleToFloat#": 1, - "d": 1, - "FloatToDouble": 1, - "IntToDouble": 1, - "i": 49, - "SefToDouble": 1, - "s": 12, - "e": 4, - "DoubleAdd": 1, - "DoubleSub": 1, - "DoubleMul": 1, - "DoubleDiv": 1, - "DoubleLT": 1, - "DoubleGT": 1, - "IDEal": 3, - "Editor": 3, - "Parameters": 3, - "F#1A#20#2F": 1, - "C#Blitz3D": 3, - "linked": 2, - "list": 32, - "container": 1, - "class": 1, - "with": 3, - "thanks": 1, - "to": 11, - "MusicianKool": 3, - "for": 3, - "concept": 1, - "and": 9, - "issue": 1, - "fixes": 1, - "Type": 8, - "LList": 3, - "Field": 10, - "head_.ListNode": 1, - "tail_.ListNode": 1, - "ListNode": 8, - "pv_.ListNode": 1, - "nx_.ListNode": 1, - "Value": 37, - "Iterator": 2, - "l_.LList": 1, - "cn_.ListNode": 1, - "cni_": 8, - "Create": 4, - "a": 46, - "new": 4, - "object": 2, - "CreateList.LList": 1, - "l.LList": 20, - "New": 11, - "head_": 35, - "tail_": 34, - "nx_": 33, - "caps": 1, - "pv_": 27, - "These": 1, - "make": 1, - "it": 1, - "more": 1, - "or": 4, - "less": 1, - "safe": 1, - "iterate": 2, - "freely": 1, - "Free": 1, - "all": 3, - "elements": 4, - "not": 4, - "any": 1, - "values": 4, - "FreeList": 1, - "ClearList": 2, - "Delete": 6, - "Remove": 7, - "the": 52, - "from": 15, - "does": 1, - "free": 1, - "n.ListNode": 12, - "While": 7, - "n": 54, - "nx.ListNode": 1, - "nx": 1, - "Wend": 6, - "Count": 1, - "number": 1, - "of": 16, - "in": 4, - "slow": 3, - "ListLength": 2, - "i.Iterator": 6, - "GetIterator": 3, - "elems": 4, - "EachIn": 5, - "True": 4, - "if": 2, - "contains": 1, - "given": 7, - "value": 16, - "ListContains": 1, - "ListFindNode": 2, - "Null": 15, - "intvalues": 1, - "bank": 8, - "ListFromBank.LList": 1, - "CreateList": 2, - "size": 4, - "BankSize": 1, - "p": 7, - "For": 6, - "To": 6, - "Step": 2, - "ListAddLast": 2, - "Next": 7, - "containing": 3, - "ListToBank": 1, - "Swap": 1, - "contents": 1, - "two": 1, - "objects": 1, - "SwapLists": 1, - "l1.LList": 1, - "l2.LList": 1, - "tempH.ListNode": 1, - "l1": 4, - "tempT.ListNode": 1, - "l2": 4, - "tempH": 1, - "tempT": 1, - "same": 1, - "as": 2, - "first": 5, - "CopyList.LList": 1, - "lo.LList": 1, - "ln.LList": 1, - "lo": 1, - "ln": 2, - "Reverse": 1, - "order": 1, - "ReverseList": 1, - "n1.ListNode": 1, - "n2.ListNode": 1, - "tmp.ListNode": 1, - "n1": 5, - "n2": 6, - "tmp": 4, - "Search": 1, - "retrieve": 1, - "node": 8, - "ListFindNode.ListNode": 1, - "Append": 1, - "end": 5, - "fast": 2, - "return": 7, - "ListAddLast.ListNode": 1, - "Attach": 1, - "start": 13, - "ListAddFirst.ListNode": 1, - "occurence": 1, - "ListRemove": 1, - "RemoveListNode": 6, - "element": 4, - "at": 5, - "position": 4, - "backwards": 2, - "negative": 2, - "index": 13, - "ValueAtIndex": 1, - "ListNodeAtIndex": 3, - "invalid": 1, - "ListNodeAtIndex.ListNode": 1, - "Beyond": 1, - "valid": 2, - "Negative": 1, - "count": 1, - "backward": 1, - "Before": 3, - "Replace": 1, - "added": 2, - "by": 3, - "ReplaceValueAtIndex": 1, - "RemoveNodeAtIndex": 1, - "tval": 3, - "Retrieve": 2, - "ListFirst": 1, - "last": 2, - "ListLast": 1, - "its": 2, - "ListRemoveFirst": 1, - "val": 6, - "ListRemoveLast": 1, - "Insert": 3, - "into": 2, - "before": 2, - "specified": 2, - "InsertBeforeNode.ListNode": 1, - "bef.ListNode": 1, - "bef": 7, - "after": 1, - "then": 1, - "InsertAfterNode.ListNode": 1, - "aft.ListNode": 1, - "aft": 7, - "Get": 1, - "an": 4, - "iterator": 4, - "use": 1, - "loop": 2, - "This": 1, - "function": 1, - "means": 1, - "that": 1, - "most": 1, - "programs": 1, - "won": 1, - "available": 1, - "moment": 1, - "l_": 7, - "Exit": 1, - "there": 1, - "wasn": 1, - "t": 1, - "create": 1, - "one": 1, - "cn_": 12, - "No": 1, - "especial": 1, - "reason": 1, - "why": 1, - "this": 2, - "has": 1, - "be": 1, - "anything": 1, - "but": 1, - "meh": 1, - "Use": 1, - "argument": 1, - "over": 1, - "members": 1, - "Still": 1, - "items": 1, - "Disconnect": 1, - "having": 1, - "reached": 1, - "False": 3, - "currently": 1, - "pointed": 1, - "IteratorRemove": 1, - "temp.ListNode": 1, - "temp": 1, - "Call": 1, - "breaking": 1, - "out": 1, - "disconnect": 1, - "IteratorBreak": 1, - "F#5#A#10#18#2A#32#3E#47#4C#58#66#6F#78#8F#9B#A9#B7#BD#C5#CC": 1, - "F#E3#E9#EF#F4#F9#103#10D#11B#12B#13F#152#163": 1, - "result": 4, - "s.Sum3Obj": 2, - "Sum3Obj": 6, - "Handle": 2, - "MilliSecs": 4, - "Sum3_": 2, - "MakeSum3Obj": 2, - "Sum3": 2, - "b": 7, - "c": 7, - "isActive": 4, - "Last": 1, - "Restore": 1, - "label": 1, - "Read": 1, - "foo": 1, - ".label": 1, - "Data": 1, - "a_": 2, - "a.Sum3Obj": 1, - "Object.Sum3Obj": 1, - "return_": 2, - "First": 1 - }, - "RobotFramework": { - "***": 16, - "Settings": 3, - "Documentation": 3, - "Example": 3, - "test": 6, - "cases": 2, - "using": 4, - "the": 9, - "data": 2, - "-": 16, - "driven": 4, - "testing": 2, - "approach.": 2, - "...": 28, - "Tests": 1, - "use": 2, - "Calculate": 3, - "keyword": 5, - "created": 1, - "in": 5, - "this": 1, - "file": 1, - "that": 5, - "turn": 1, - "uses": 1, - "keywords": 3, - "CalculatorLibrary": 5, - ".": 4, - "An": 1, - "exception": 1, - "is": 6, - "last": 1, - "has": 5, - "a": 4, - "custom": 1, - "_template": 1, - "keyword_.": 1, - "The": 2, - "style": 3, - "works": 3, - "well": 3, - "when": 2, - "you": 1, - "need": 3, - "to": 5, - "repeat": 1, - "same": 1, - "workflow": 3, - "multiple": 2, - "times.": 1, - "Notice": 1, - "one": 1, - "of": 3, - "these": 1, - "tests": 5, - "fails": 1, - "on": 1, - "purpose": 1, - "show": 1, - "how": 1, - "failures": 1, - "look": 1, - "like.": 1, - "Test": 4, - "Template": 2, - "Library": 3, - "Cases": 3, - "Expression": 1, - "Expected": 1, - "Addition": 2, - "+": 6, - "Subtraction": 1, - "Multiplication": 1, - "*": 4, - "Division": 2, - "/": 5, - "Failing": 1, - "Calculation": 3, - "error": 4, - "[": 4, - "]": 4, - "should": 9, - "fail": 2, - "kekkonen": 1, - "Invalid": 2, - "button": 13, - "{": 15, - "EMPTY": 3, - "}": 15, - "expression.": 1, - "by": 3, - "zero.": 1, - "Keywords": 2, - "Arguments": 2, - "expression": 5, - "expected": 4, - "Push": 16, - "buttons": 4, - "C": 4, - "Result": 8, - "be": 9, - "Should": 2, - "cause": 1, - "equal": 1, - "#": 2, - "Using": 1, - "BuiltIn": 1, - "All": 1, - "contain": 1, - "constructed": 1, - "from": 1, - "Creating": 1, - "new": 1, - "or": 1, - "editing": 1, - "existing": 1, - "easy": 1, - "even": 1, - "for": 2, - "people": 2, - "without": 1, - "programming": 1, - "skills.": 1, - "This": 3, - "kind": 2, - "normal": 1, - "automation.": 1, + "call": 1, + "test_spawn_unlinked_unsup_no_fail_down": 1, + "grandchild": 1, + "sends": 1, + "port": 3, + "ch.clone": 2, + "iter": 8, + "repeat": 8, "If": 1, - "also": 2, - "business": 2, - "understand": 1, - "_gherkin_": 2, - "may": 1, - "work": 1, - "better.": 1, - "Simple": 1, - "calculation": 2, - "Longer": 1, - "Clear": 1, - "built": 1, - "variable": 1, - "case": 1, - "gherkin": 1, - "syntax.": 1, - "similar": 1, - "examples.": 1, - "difference": 1, - "higher": 1, - "abstraction": 1, - "level": 1, - "and": 2, - "their": 1, - "arguments": 1, - "are": 1, - "embedded": 1, - "into": 1, - "names.": 1, - "syntax": 1, - "been": 3, - "made": 1, - "popular": 1, - "http": 1, - "//cukes.info": 1, - "|": 1, - "Cucumber": 1, - "It": 1, - "especially": 1, - "act": 1, - "as": 1, - "examples": 1, - "easily": 1, - "understood": 1, - "people.": 1, - "Given": 1, - "calculator": 1, - "cleared": 2, - "When": 1, - "user": 2, - "types": 2, - "pushes": 2, - "equals": 2, - "Then": 1, - "result": 2, - "Calculator": 1, - "User": 2 - }, - "ApacheConf": { - "#": 182, - "ServerRoot": 2, - "#Listen": 2, - "Listen": 2, - "LoadModule": 126, - "authn_file_module": 2, - "libexec/apache2/mod_authn_file.so": 1, - "authn_dbm_module": 2, - "libexec/apache2/mod_authn_dbm.so": 1, - "authn_anon_module": 2, - "libexec/apache2/mod_authn_anon.so": 1, - "authn_dbd_module": 2, - "libexec/apache2/mod_authn_dbd.so": 1, - "authn_default_module": 2, - "libexec/apache2/mod_authn_default.so": 1, - "authz_host_module": 2, - "libexec/apache2/mod_authz_host.so": 1, - "authz_groupfile_module": 2, - "libexec/apache2/mod_authz_groupfile.so": 1, - "authz_user_module": 2, - "libexec/apache2/mod_authz_user.so": 1, - "authz_dbm_module": 2, - "libexec/apache2/mod_authz_dbm.so": 1, - "authz_owner_module": 2, - "libexec/apache2/mod_authz_owner.so": 1, - "authz_default_module": 2, - "libexec/apache2/mod_authz_default.so": 1, - "auth_basic_module": 2, - "libexec/apache2/mod_auth_basic.so": 1, - "auth_digest_module": 2, - "libexec/apache2/mod_auth_digest.so": 1, - "cache_module": 2, - "libexec/apache2/mod_cache.so": 1, - "disk_cache_module": 2, - "libexec/apache2/mod_disk_cache.so": 1, - "mem_cache_module": 2, - "libexec/apache2/mod_mem_cache.so": 1, - "dbd_module": 2, - "libexec/apache2/mod_dbd.so": 1, - "dumpio_module": 2, - "libexec/apache2/mod_dumpio.so": 1, - "reqtimeout_module": 1, - "libexec/apache2/mod_reqtimeout.so": 1, - "ext_filter_module": 2, - "libexec/apache2/mod_ext_filter.so": 1, - "include_module": 2, - "libexec/apache2/mod_include.so": 1, - "filter_module": 2, - "libexec/apache2/mod_filter.so": 1, - "substitute_module": 1, - "libexec/apache2/mod_substitute.so": 1, - "deflate_module": 2, - "libexec/apache2/mod_deflate.so": 1, - "log_config_module": 3, - "libexec/apache2/mod_log_config.so": 1, - "log_forensic_module": 2, - "libexec/apache2/mod_log_forensic.so": 1, - "logio_module": 3, - "libexec/apache2/mod_logio.so": 1, - "env_module": 2, - "libexec/apache2/mod_env.so": 1, - "mime_magic_module": 2, - "libexec/apache2/mod_mime_magic.so": 1, - "cern_meta_module": 2, - "libexec/apache2/mod_cern_meta.so": 1, - "expires_module": 2, - "libexec/apache2/mod_expires.so": 1, - "headers_module": 2, - "libexec/apache2/mod_headers.so": 1, - "ident_module": 2, - "libexec/apache2/mod_ident.so": 1, - "usertrack_module": 2, - "libexec/apache2/mod_usertrack.so": 1, - "#LoadModule": 4, - "unique_id_module": 2, - "libexec/apache2/mod_unique_id.so": 1, - "setenvif_module": 2, - "libexec/apache2/mod_setenvif.so": 1, - "version_module": 2, - "libexec/apache2/mod_version.so": 1, - "proxy_module": 2, - "libexec/apache2/mod_proxy.so": 1, - "proxy_connect_module": 2, - "libexec/apache2/mod_proxy_connect.so": 1, - "proxy_ftp_module": 2, - "libexec/apache2/mod_proxy_ftp.so": 1, - "proxy_http_module": 2, - "libexec/apache2/mod_proxy_http.so": 1, - "proxy_scgi_module": 1, - "libexec/apache2/mod_proxy_scgi.so": 1, - "proxy_ajp_module": 2, - "libexec/apache2/mod_proxy_ajp.so": 1, - "proxy_balancer_module": 2, - "libexec/apache2/mod_proxy_balancer.so": 1, - "ssl_module": 4, - "libexec/apache2/mod_ssl.so": 1, - "mime_module": 4, - "libexec/apache2/mod_mime.so": 1, - "dav_module": 2, - "libexec/apache2/mod_dav.so": 1, - "status_module": 2, - "libexec/apache2/mod_status.so": 1, - "autoindex_module": 2, - "libexec/apache2/mod_autoindex.so": 1, - "asis_module": 2, - "libexec/apache2/mod_asis.so": 1, - "info_module": 2, - "libexec/apache2/mod_info.so": 1, - "cgi_module": 2, - "libexec/apache2/mod_cgi.so": 1, - "dav_fs_module": 2, - "libexec/apache2/mod_dav_fs.so": 1, - "vhost_alias_module": 2, - "libexec/apache2/mod_vhost_alias.so": 1, - "negotiation_module": 2, - "libexec/apache2/mod_negotiation.so": 1, - "dir_module": 4, - "libexec/apache2/mod_dir.so": 1, - "imagemap_module": 2, - "libexec/apache2/mod_imagemap.so": 1, - "actions_module": 2, - "libexec/apache2/mod_actions.so": 1, - "speling_module": 2, - "libexec/apache2/mod_speling.so": 1, - "userdir_module": 2, - "libexec/apache2/mod_userdir.so": 1, - "alias_module": 4, - "libexec/apache2/mod_alias.so": 1, - "rewrite_module": 2, - "libexec/apache2/mod_rewrite.so": 1, - "perl_module": 1, - "libexec/apache2/mod_perl.so": 1, - "php5_module": 1, - "libexec/apache2/libphp5.so": 1, - "hfs_apple_module": 1, - "libexec/apache2/mod_hfs_apple.so": 1, - "": 17, - "mpm_netware_module": 2, - "mpm_winnt_module": 1, - "User": 2, - "_www": 2, - "Group": 2, - "": 17, - "ServerAdmin": 2, - "you@example.com": 2, - "#ServerName": 2, - "www.example.com": 2, - "DocumentRoot": 2, - "": 6, - "Options": 6, - "FollowSymLinks": 4, - "AllowOverride": 6, - "None": 8, - "Order": 10, - "deny": 10, - "allow": 10, - "Deny": 6, - "from": 10, - "all": 10, - "": 6, - "Library": 2, - "WebServer": 2, - "Documents": 1, - "Indexes": 2, - "MultiViews": 1, - "Allow": 4, - "DirectoryIndex": 2, - "index.html": 2, - "": 2, - "Hh": 1, - "Tt": 1, - "Dd": 1, - "Ss": 2, - "_": 1, - "Satisfy": 4, - "All": 4, - "": 2, - "": 1, - "rsrc": 1, - "": 1, - "": 1, - "namedfork": 1, - "": 1, - "ErrorLog": 2, - "LogLevel": 2, - "warn": 2, - "LogFormat": 6, - "combined": 4, - "common": 4, - "combinedio": 2, - "CustomLog": 2, - "#CustomLog": 2, - "ScriptAliasMatch": 1, - "/cgi": 2, - "-": 43, - "bin/": 2, - "(": 16, - "i": 1, - "webobjects": 1, - ")": 17, - ".*": 3, - "cgid_module": 3, - "#Scriptsock": 2, - "/private/var/run/cgisock": 1, - "CGI": 1, - "Executables": 1, - "DefaultType": 2, - "text/plain": 2, - "TypesConfig": 2, - "/private/etc/apache2/mime.types": 1, - "#AddType": 4, - "application/x": 6, - "gzip": 6, - ".tgz": 6, - "#AddEncoding": 4, - "x": 4, - "compress": 4, - ".Z": 4, - ".gz": 4, - "AddType": 4, - "#AddHandler": 4, - "cgi": 3, - "script": 2, - ".cgi": 2, - "type": 2, - "map": 2, - "var": 2, - "text/html": 2, - ".shtml": 4, - "#AddOutputFilter": 2, - "INCLUDES": 2, - "#MIMEMagicFile": 2, - "/private/etc/apache2/magic": 1, - "#ErrorDocument": 8, - "/missing.html": 2, - "http": 2, - "//www.example.com/subscription_info.html": 2, - "#MaxRanges": 1, - "unlimited": 1, - "#EnableMMAP": 2, - "off": 5, - "#EnableSendfile": 2, - "TraceEnable": 1, - "Include": 6, - "/private/etc/apache2/extra/httpd": 11, - "mpm.conf": 2, - "#Include": 17, - "multilang": 2, - "errordoc.conf": 2, - "autoindex.conf": 2, - "languages.conf": 2, - "userdir.conf": 2, - "info.conf": 2, - "vhosts.conf": 2, - "manual.conf": 2, - "dav.conf": 2, - "default.conf": 2, - "ssl.conf": 2, - "SSLRandomSeed": 4, - "startup": 2, - "builtin": 4, - "connect": 2, - "/private/etc/apache2/other/*.conf": 1, - "ServerSignature": 1, - "Off": 1, - "RewriteCond": 15, - "%": 48, - "{": 16, - "REQUEST_METHOD": 1, - "}": 16, - "HEAD": 1, - "|": 80, - "TRACE": 1, - "DELETE": 1, - "TRACK": 1, - "[": 17, - "NC": 13, - "OR": 14, - "]": 17, - "THE_REQUEST": 1, - "r": 1, - "n": 1, - "A": 6, - "D": 6, - "HTTP_REFERER": 1, - "<|>": 6, - "C": 5, - "E": 5, - "HTTP_COOKIE": 1, - "REQUEST_URI": 1, - "/": 3, - ";": 2, - "<": 1, - ".": 7, - "HTTP_USER_AGENT": 5, - "java": 1, - "curl": 2, - "wget": 2, - "winhttp": 1, - "HTTrack": 1, - "clshttp": 1, - "archiver": 1, - "loader": 1, - "email": 1, - "harvest": 1, - "extract": 1, - "grab": 1, - "miner": 1, - "libwww": 1, - "perl": 1, - "python": 1, - "nikto": 1, - "scan": 1, - "#Block": 1, - "mySQL": 1, - "injects": 1, - "QUERY_STRING": 5, - "*": 1, - "union": 1, - "select": 1, - "insert": 1, - "cast": 1, - "set": 1, - "declare": 1, - "drop": 1, - "update": 1, - "md5": 1, - "benchmark": 1, - "./": 1, - "localhost": 1, - "loopback": 1, - ".0": 2, - ".1": 1, - "a": 1, - "z0": 1, - "RewriteRule": 1, - "index.php": 1, - "F": 1, - "/usr/lib/apache2/modules/mod_authn_file.so": 1, - "/usr/lib/apache2/modules/mod_authn_dbm.so": 1, - "/usr/lib/apache2/modules/mod_authn_anon.so": 1, - "/usr/lib/apache2/modules/mod_authn_dbd.so": 1, - "/usr/lib/apache2/modules/mod_authn_default.so": 1, - "authn_alias_module": 1, - "/usr/lib/apache2/modules/mod_authn_alias.so": 1, - "/usr/lib/apache2/modules/mod_authz_host.so": 1, - "/usr/lib/apache2/modules/mod_authz_groupfile.so": 1, - "/usr/lib/apache2/modules/mod_authz_user.so": 1, - "/usr/lib/apache2/modules/mod_authz_dbm.so": 1, - "/usr/lib/apache2/modules/mod_authz_owner.so": 1, - "authnz_ldap_module": 1, - "/usr/lib/apache2/modules/mod_authnz_ldap.so": 1, - "/usr/lib/apache2/modules/mod_authz_default.so": 1, - "/usr/lib/apache2/modules/mod_auth_basic.so": 1, - "/usr/lib/apache2/modules/mod_auth_digest.so": 1, - "file_cache_module": 1, - "/usr/lib/apache2/modules/mod_file_cache.so": 1, - "/usr/lib/apache2/modules/mod_cache.so": 1, - "/usr/lib/apache2/modules/mod_disk_cache.so": 1, - "/usr/lib/apache2/modules/mod_mem_cache.so": 1, - "/usr/lib/apache2/modules/mod_dbd.so": 1, - "/usr/lib/apache2/modules/mod_dumpio.so": 1, - "/usr/lib/apache2/modules/mod_ext_filter.so": 1, - "/usr/lib/apache2/modules/mod_include.so": 1, - "/usr/lib/apache2/modules/mod_filter.so": 1, - "charset_lite_module": 1, - "/usr/lib/apache2/modules/mod_charset_lite.so": 1, - "/usr/lib/apache2/modules/mod_deflate.so": 1, - "ldap_module": 1, - "/usr/lib/apache2/modules/mod_ldap.so": 1, - "/usr/lib/apache2/modules/mod_log_forensic.so": 1, - "/usr/lib/apache2/modules/mod_env.so": 1, - "/usr/lib/apache2/modules/mod_mime_magic.so": 1, - "/usr/lib/apache2/modules/mod_cern_meta.so": 1, - "/usr/lib/apache2/modules/mod_expires.so": 1, - "/usr/lib/apache2/modules/mod_headers.so": 1, - "/usr/lib/apache2/modules/mod_ident.so": 1, - "/usr/lib/apache2/modules/mod_usertrack.so": 1, - "/usr/lib/apache2/modules/mod_unique_id.so": 1, - "/usr/lib/apache2/modules/mod_setenvif.so": 1, - "/usr/lib/apache2/modules/mod_version.so": 1, - "/usr/lib/apache2/modules/mod_proxy.so": 1, - "/usr/lib/apache2/modules/mod_proxy_connect.so": 1, - "/usr/lib/apache2/modules/mod_proxy_ftp.so": 1, - "/usr/lib/apache2/modules/mod_proxy_http.so": 1, - "/usr/lib/apache2/modules/mod_proxy_ajp.so": 1, - "/usr/lib/apache2/modules/mod_proxy_balancer.so": 1, - "/usr/lib/apache2/modules/mod_ssl.so": 1, - "/usr/lib/apache2/modules/mod_mime.so": 1, - "/usr/lib/apache2/modules/mod_dav.so": 1, - "/usr/lib/apache2/modules/mod_status.so": 1, - "/usr/lib/apache2/modules/mod_autoindex.so": 1, - "/usr/lib/apache2/modules/mod_asis.so": 1, - "/usr/lib/apache2/modules/mod_info.so": 1, - "suexec_module": 1, - "/usr/lib/apache2/modules/mod_suexec.so": 1, - "/usr/lib/apache2/modules/mod_cgid.so": 1, - "/usr/lib/apache2/modules/mod_cgi.so": 1, - "/usr/lib/apache2/modules/mod_dav_fs.so": 1, - "dav_lock_module": 1, - "/usr/lib/apache2/modules/mod_dav_lock.so": 1, - "/usr/lib/apache2/modules/mod_vhost_alias.so": 1, - "/usr/lib/apache2/modules/mod_negotiation.so": 1, - "/usr/lib/apache2/modules/mod_dir.so": 1, - "/usr/lib/apache2/modules/mod_imagemap.so": 1, - "/usr/lib/apache2/modules/mod_actions.so": 1, - "/usr/lib/apache2/modules/mod_speling.so": 1, - "/usr/lib/apache2/modules/mod_userdir.so": 1, - "/usr/lib/apache2/modules/mod_alias.so": 1, - "/usr/lib/apache2/modules/mod_rewrite.so": 1, - "daemon": 2, - "usr": 2, - "share": 1, - "apache2": 1, - "default": 1, - "site": 1, - "htdocs": 1, - "ht": 1, - "/var/log/apache2/error_log": 1, - "/var/log/apache2/access_log": 2, - "ScriptAlias": 1, - "/var/run/apache2/cgisock": 1, - "lib": 1, - "bin": 1, - "/etc/apache2/mime.types": 1, - "/etc/apache2/magic": 1, - "/etc/apache2/extra/httpd": 11 - }, - "Agda": { - "module": 3, - "NatCat": 1, - "where": 2, - "open": 2, - "import": 2, - "Relation.Binary.PropositionalEquality": 1, - "-": 21, - "If": 1, - "you": 2, - "can": 1, - "show": 1, - "that": 1, - "a": 1, - "relation": 1, - "only": 1, - "ever": 1, - "has": 1, - "one": 1, - "inhabitant": 5, + "first": 1, + "grandparent": 1, + "hangs.": 1, + "Shouldn": 1, + "leave": 1, + "child": 3, + "hanging": 1, + "around.": 1, + "test_spawn_linked_sup_fail_up": 1, + "fails": 4, + "parent": 2, + "_ch": 1, + "<()>": 6, + "opts.linked": 2, + "opts.supervised": 2, + "b0": 5, + "b1": 3, + "b1.spawn": 3, + "We": 1, "get": 1, - "the": 1, - "category": 1, - "laws": 1, - "for": 1, - "free": 1, - "EasyCategory": 3, - "(": 36, - "obj": 4, - "Set": 2, - ")": 36, - "_": 6, - "{": 10, - "x": 34, - "y": 28, - "z": 18, - "}": 10, - "id": 9, - "single": 4, - "r": 26, - "s": 29, - "assoc": 2, - "w": 4, - "t": 6, - "Data.Nat": 1, - "same": 5, - ".0": 2, - "n": 14, - "refl": 6, - ".": 5, - "suc": 6, - "m": 6, - "cong": 1, - "trans": 5, - ".n": 1, - "zero": 1, - "Nat": 1 + "punted": 1, + "awake": 1, + "test_spawn_linked_sup_fail_down": 1, + "loop": 5, + "*both*": 1, + "mechanisms": 1, + "would": 1, + "wrong": 1, + "this": 1, + "didn": 1, + "s": 1, + "failure": 1, + "propagate": 1, + "across": 1, + "gap": 1, + "test_spawn_failure_propagate_secondborn": 1, + "test_spawn_failure_propagate_nephew_or_niece": 1, + "test_spawn_linked_sup_propagate_sibling": 1, + "test_run_basic": 1, + "Wrapper": 5, + "test_add_wrapper": 1, + "b0.add_wrapper": 1, + "ch.f.swap_unwrap": 4, + "test_future_result": 1, + ".future_result": 4, + "assert": 10, + "test_back_to_the_future_result": 1, + "test_try_success": 1, + "test_try_fail": 1, + "test_spawn_sched_no_threads": 1, + "u": 2, + "test_spawn_sched": 1, + "i": 3, + "int": 5, + "parent_sched_id": 4, + "child_sched_id": 5, + "else": 1, + "test_spawn_sched_childs_on_default_sched": 1, + "default_id": 2, + "nolink": 1, + "extern": 1, + "testrt": 9, + "rust_dbg_lock_create": 2, + "*libc": 6, + "c_void": 6, + "rust_dbg_lock_destroy": 2, + "lock": 13, + "rust_dbg_lock_lock": 3, + "rust_dbg_lock_unlock": 3, + "rust_dbg_lock_wait": 2, + "rust_dbg_lock_signal": 2, + "test_spawn_sched_blocking": 1, + "start_po": 1, + "start_ch": 1, + "fin_po": 1, + "fin_ch": 1, + "start_ch.send": 1, + "fin_ch.send": 1, + "start_po.recv": 1, + "pingpong": 3, + "": 2, + "val": 4, + "setup_po": 1, + "setup_ch": 1, + "parent_po": 2, + "parent_ch": 2, + "child_po": 2, + "child_ch": 4, + "setup_ch.send": 1, + "setup_po.recv": 1, + "child_ch.send": 1, + "fin_po.recv": 1, + "avoid_copying_the_body": 5, + "spawnfn": 2, + "p": 3, + "x_in_parent": 2, + "ptr": 2, + "addr_of": 2, + "as": 7, + "x_in_child": 4, + "p.recv": 1, + "test_avoid_copying_the_body_spawn": 1, + "test_avoid_copying_the_body_task_spawn": 1, + "test_avoid_copying_the_body_try": 1, + "test_avoid_copying_the_body_unlinked": 1, + "test_platform_thread": 1, + "test_unkillable": 1, + "pp": 2, + "*uint": 1, + "cast": 2, + "transmute": 2, + "_p": 1, + "test_unkillable_nested": 1, + "Here": 1, + "test_atomically_nested": 1, + "test_child_doesnt_ref_parent": 1, + "const": 1, + "generations": 2, + "child_no": 3, + "return": 1, + "test_sched_thread_per_core": 1, + "chan": 2, + "cores": 2, + "rust_num_threads": 1, + "reported_threads": 2, + "rust_sched_threads": 2, + "chan.send": 2, + "port.recv": 2, + "test_spawn_thread_on_demand": 1, + "max_threads": 2, + "running_threads": 2, + "rust_sched_current_nonlazy_threads": 2, + "port2": 1, + "chan2": 1, + "chan2.send": 1, + "running_threads2": 2, + "port2.recv": 1 }, - "Hy": { - ";": 4, - "Fibonacci": 1, - "example": 2, - "in": 2, - "Hy.": 2, - "(": 28, - "defn": 2, - "fib": 4, - "[": 10, - "n": 5, - "]": 10, + "SAS": { + "libname": 1, + "source": 1, + "data": 6, + "work.working_copy": 5, + ";": 22, + "set": 3, + "source.original_file.sas7bdat": 1, + "run": 6, "if": 2, - "<": 1, - ")": 28, - "+": 1, - "-": 10, - "__name__": 1, - "for": 2, - "x": 3, - "print": 1, - "The": 1, - "concurrent.futures": 2, - "import": 1, - "ThreadPoolExecutor": 2, - "as": 3, - "completed": 2, - "random": 1, - "randint": 2, - "sh": 1, - "sleep": 2, - "task": 2, - "to": 2, - "do": 2, - "with": 1, - "executor": 2, - "setv": 1, - "jobs": 2, - "list": 1, - "comp": 1, - ".submit": 1, - "range": 1, - "future": 2, - ".result": 1 + "Purge": 1, + "then": 2, + "delete": 1, + "ImportantVariable": 1, + ".": 1, + "MissingFlag": 1, + "proc": 2, + "surveyselect": 1, + "work.data": 1, + "out": 2, + "work.boot": 2, + "method": 1, + "urs": 1, + "reps": 1, + "seed": 2, + "sampsize": 1, + "outhits": 1, + "samplingunit": 1, + "Site": 1, + "PROC": 1, + "MI": 1, + "work.bootmi": 2, + "nimpute": 1, + "round": 1, + "By": 2, + "Replicate": 2, + "VAR": 1, + "Variable1": 2, + "Variable2": 2, + "logistic": 1, + "descending": 1, + "_Imputation_": 1, + "model": 1, + "Outcome": 1, + "/": 1, + "risklimits": 1 }, -<<<<<<< HEAD "SCSS": { "blue": 4, "#3bbfce": 1, @@ -99811,1503 +60766,439 @@ "/": 4, "border": 3, "solid": 1, -======= - "Less": { - "@blue": 4, - "#3bbfce": 1, - ";": 7, - "@margin": 3, - "px": 1, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method ".content": 1, "-": 3, "navigation": 1, - "{": 2, - "border": 2, - "color": 3, "darken": 1, "(": 1, "%": 1, - ")": 1, - "}": 2, - ".border": 1, - "padding": 1, - "/": 2, - "margin": 1 + ")": 1 }, - "Kit": { - "
": 1, - "

": 1, - "

": 1, - "

": 1, - "

": 1, - "
": 1 - }, - "E": { - "pragma.syntax": 1, - "(": 65, - ")": 64, - "to": 27, - "send": 1, - "message": 4, - "{": 57, - "when": 2, - "friend": 4, - "<-receive(message))>": 1, - "chatUI.showMessage": 4, - "}": 57, - "catch": 2, - "prob": 2, - "receive": 1, - "receiveFriend": 2, - "friendRcvr": 2, - "bind": 2, - "save": 1, - "file": 3, - "file.setText": 1, - "makeURIFromObject": 1, - "chatController": 2, - "load": 1, - "getObjectFromURI": 1, - "file.getText": 1, - "<": 1, - "-": 2, - "def": 24, - "makeVehicle": 3, - "self": 1, - "vehicle": 2, - "milesTillEmpty": 1, - "return": 19, - "self.milesPerGallon": 1, - "*": 1, - "self.getFuelRemaining": 1, - "makeCar": 4, - "var": 6, - "fuelRemaining": 4, - "car": 8, - "extends": 2, - "milesPerGallon": 2, - "getFuelRemaining": 2, - "makeJet": 1, - "jet": 3, - "println": 2, - "The": 2, - "can": 1, - "go": 1, - "car.milesTillEmpty": 1, - "miles.": 1, - "name": 4, - "x": 3, - "y": 3, - "moveTo": 1, - "newX": 2, - "newY": 2, - "getX": 1, - "getY": 1, - "setName": 1, - "newName": 2, - "getName": 1, - "sportsCar": 1, - "sportsCar.moveTo": 1, - "sportsCar.getName": 1, - "is": 1, - "at": 1, - "X": 1, - "location": 1, - "sportsCar.getX": 1, - "makeVOCPair": 1, - "brandName": 3, - "String": 1, - "near": 6, - "myTempContents": 6, - "none": 2, - "brand": 5, - "__printOn": 4, - "out": 4, - "TextWriter": 4, - "void": 5, - "out.print": 4, - "ProveAuth": 2, - "<$brandName>": 3, - "prover": 1, - "getBrand": 4, - "coerce": 2, - "specimen": 2, - "optEjector": 3, - "sealedBox": 2, - "offerContent": 1, - "CheckAuth": 2, - "checker": 3, - "template": 1, - "match": 4, - "[": 10, - "get": 2, - "authList": 2, - "any": 2, - "]": 10, - "specimenBox": 2, - "null": 1, - "if": 2, - "specimenBox.__respondsTo": 1, - "specimenBox.offerContent": 1, - "else": 1, - "for": 3, - "auth": 3, - "in": 1, - "throw.eject": 1, - "Unmatched": 1, - "authorization": 1, - "__respondsTo": 2, - "_": 3, - "true": 1, - "false": 1, - "__getAllegedType": 1, - "null.__getAllegedType": 1, - "tempVow": 2, - "#...use": 1, - "#....": 1, - "report": 1, - "problem": 1, - "finally": 1, - "#....log": 1, - "event": 1, - "#File": 1, - "objects": 1, - "hardwired": 1, - "files": 1, - "file1": 1, - "": 1, - "file2": 1, - "": 1, - "#Using": 2, - "a": 4, - "variable": 1, - "filePath": 2, - "file3": 1, - "": 1, - "single": 1, - "character": 1, - "specify": 1, - "Windows": 1, - "drive": 1, - "file4": 1, - "": 1, - "file5": 1, - "": 1, - "file6": 1, - "": 1 - }, - "DM": { - "#define": 4, - "PI": 6, - "#if": 1, - "G": 1, - "#elif": 1, - "I": 1, - "#else": 1, - "K": 1, - "#endif": 1, - "var/GlobalCounter": 1, - "var/const/CONST_VARIABLE": 1, - "var/list/MyList": 1, - "list": 3, - "(": 17, - "new": 1, - "/datum/entity": 2, - ")": 17, - "var/list/EmptyList": 1, - "[": 2, - "]": 2, - "//": 6, - "creates": 1, - "a": 1, - "of": 1, - "null": 2, - "entries": 1, - "var/list/NullList": 1, - "var/name": 1, - "var/number": 1, - "/datum/entity/proc/myFunction": 1, - "world.log": 5, - "<<": 5, - "/datum/entity/New": 1, - "number": 2, - "GlobalCounter": 1, - "+": 3, - "/datum/entity/unit": 1, - "name": 1, - "/datum/entity/unit/New": 1, - "..": 1, - "calls": 1, - "the": 2, - "parent": 1, - "s": 1, - "proc": 1, - ";": 3, - "equal": 1, - "to": 1, - "super": 1, - "and": 1, - "base": 1, - "in": 1, - "other": 1, - "languages": 1, - "rand": 1, - "/datum/entity/unit/myFunction": 1, - "/proc/ReverseList": 1, - "var/list/input": 1, - "var/list/output": 1, - "for": 1, - "var/i": 1, - "input.len": 1, - "i": 3, - "-": 2, - "IMPORTANT": 1, - "List": 1, - "Arrays": 1, - "count": 1, - "from": 1, - "output": 2, - "input": 1, - "is": 2, - "return": 3, - "/proc/DoStuff": 1, - "var/bitflag": 2, - "bitflag": 4, - "|": 1, - "/proc/DoOtherStuff": 1, - "bits": 1, - "maximum": 1, - "amount": 1, - "&": 1, - "/proc/DoNothing": 1, - "var/pi": 1, - "if": 2, - "pi": 2, - "else": 2, - "CONST_VARIABLE": 1, - "#undef": 1, - "Undefine": 1 - }, - "OpenCL": { - "double": 3, - "run_fftw": 1, - "(": 18, - "int": 3, - "n": 4, - "const": 4, - "float": 3, - "*": 5, - "x": 5, - "y": 4, - ")": 18, - "{": 4, - "fftwf_plan": 1, - "p1": 3, - "fftwf_plan_dft_1d": 1, - "fftwf_complex": 2, - "FFTW_FORWARD": 1, - "FFTW_ESTIMATE": 1, - ";": 12, - "nops": 3, - "t": 4, - "cl": 2, - "realTime": 2, - "for": 1, - "op": 3, - "<": 1, - "+": 4, - "fftwf_execute": 1, - "}": 4, - "-": 1, - "/": 1, - "fftwf_destroy_plan": 1, - "return": 1, - "typedef": 1, - "foo_t": 3, - "#ifndef": 1, - "ZERO": 3, - "#define": 2, - "#endif": 1, - "FOO": 1, - "__kernel": 1, - "void": 1, - "foo": 1, - "__global": 1, - "__local": 1, - "uint": 1, - "barrier": 1, - "CLK_LOCAL_MEM_FENCE": 1, - "if": 1, - "*x": 1 - }, - "ShellSession": { - "gem": 4, - "install": 4, - "nokogiri": 6, - "...": 4, - "Building": 2, - "native": 2, - "extensions.": 2, - "This": 4, - "could": 2, - "take": 2, - "a": 4, - "while...": 2, - "checking": 1, - "for": 4, - "libxml/parser.h...": 1, - "***": 2, - "extconf.rb": 1, - "failed": 1, - "Could": 2, - "not": 2, - "create": 1, - "Makefile": 1, - "due": 1, - "to": 3, - "some": 1, - "reason": 2, - "probably": 1, - "lack": 1, - "of": 2, - "necessary": 1, - "libraries": 1, - "and/or": 1, - "headers.": 1, - "Check": 1, - "the": 2, - "mkmf.log": 1, - "file": 1, - "more": 1, - "details.": 1, - "You": 1, - "may": 1, - "need": 1, - "configuration": 1, - "options.": 1, - "brew": 2, - "tap": 2, - "homebrew/dupes": 1, - "Cloning": 1, - "into": 1, - "remote": 3, - "Counting": 1, - "objects": 3, - "done.": 4, - "Compressing": 1, - "%": 5, - "(": 6, - "/591": 1, - ")": 6, - "Total": 1, - "delta": 2, - "reused": 1, - "Receiving": 1, - "/1034": 1, - "KiB": 1, - "|": 1, - "bytes/s": 1, - "Resolving": 1, - "deltas": 1, - "/560": 1, - "Checking": 1, - "connectivity...": 1, - "done": 1, - "Warning": 1, - "homebrew/dupes/lsof": 1, - "over": 1, - "mxcl/master/lsof": 1, - "Tapped": 1, - "formula": 4, - "apple": 1, - "-": 12, - "gcc42": 1, - "Downloading": 1, - "http": 2, - "//r.research.att.com/tools/gcc": 1, - "darwin11.pkg": 1, - "########################################################################": 1, - "Caveats": 1, - "NOTE": 1, - "provides": 1, - "components": 1, - "that": 1, - "were": 1, - "removed": 1, - "from": 3, - "XCode": 2, - "in": 2, - "release.": 1, - "There": 1, - "is": 2, - "no": 1, - "this": 1, - "if": 1, - "you": 1, - "are": 1, - "using": 1, - "version": 1, - "prior": 1, - "contains": 1, - "compilers": 2, - "built": 2, - "Apple": 1, - "s": 1, - "GCC": 1, - "sources": 1, - "build": 1, - "available": 1, - "//opensource.apple.com/tarballs/gcc": 1, - "All": 1, - "have": 1, - "suffix.": 1, - "A": 1, - "GFortran": 1, - "compiler": 1, - "also": 1, - "included.": 1, - "Summary": 1, - "/usr/local/Cellar/apple": 1, - "gcc42/4.2.1": 1, - "files": 1, - "M": 1, - "seconds": 1, - "v": 1, - "Fetching": 1, - "Successfully": 1, - "installed": 2, - "Installing": 2, - "ri": 1, - "documentation": 2, - "RDoc": 1, - "echo": 2, - "FOOBAR": 2, - "Hello": 2, - "World": 2 - }, - "GLSL": { - "#version": 2, - "core": 1, - "void": 31, - "main": 5, - "(": 435, - ")": 435, - "{": 82, - "}": 82, - "float": 105, - "cbar": 2, - "int": 8, - ";": 383, - "cfoo": 1, - "CB": 2, - "CD": 2, - "CA": 1, - "CC": 1, - "CBT": 5, - "CDT": 3, - "CAT": 1, - "CCT": 1, - "norA": 4, - "norB": 3, - "norC": 1, - "norD": 1, - "norE": 4, - "norF": 1, - "norG": 1, - "norH": 1, - "norI": 1, - "norcA": 2, - "norcB": 3, - "norcC": 2, - "norcD": 2, - "//": 38, - "head": 1, - "of": 1, - "cycle": 2, - "norcE": 1, - "lead": 1, - "into": 1, - "////": 4, - "High": 1, - "quality": 2, - "Some": 1, - "browsers": 1, - "may": 1, - "freeze": 1, - "or": 1, - "crash": 1, - "//#define": 10, - "HIGHQUALITY": 2, - "Medium": 1, - "Should": 1, - "be": 1, - "fine": 1, - "on": 3, - "all": 1, - "systems": 1, - "works": 1, - "Intel": 1, - "HD2000": 1, - "Win7": 1, - "but": 1, - "quite": 1, - "slow": 1, - "MEDIUMQUALITY": 2, - "Defaults": 1, - "REFLECTIONS": 3, - "#define": 13, - "SHADOWS": 5, - "GRASS": 3, - "SMALL_WAVES": 4, - "RAGGED_LEAVES": 5, - "DETAILED_NOISE": 3, - "LIGHT_AA": 3, - "sample": 2, - "SSAA": 2, - "HEAVY_AA": 2, - "x2": 5, - "RG": 1, - "TONEMAP": 5, - "Configurations": 1, - "#ifdef": 14, - "#endif": 14, - "const": 19, - "eps": 5, - "e": 4, - "-": 108, - "PI": 3, - "vec3": 165, - "sunDir": 5, - "skyCol": 4, - "sandCol": 2, - "treeCol": 2, - "grassCol": 2, - "leavesCol": 4, - "leavesPos": 4, - "sunCol": 5, - "#else": 5, - "exposure": 1, - "Only": 1, - "used": 1, - "when": 1, - "tonemapping": 1, - "mod289": 4, - "x": 11, - "return": 47, - "floor": 8, - "*": 115, - "/": 24, - "vec4": 73, - "permute": 4, - "x*34.0": 1, - "+": 108, - "*x": 3, - "taylorInvSqrt": 2, - "r": 14, - "snoise": 7, - "v": 8, - "vec2": 26, - "C": 1, - "/6.0": 1, - "/3.0": 1, - "D": 1, - "i": 38, - "dot": 30, - "C.yyy": 2, - "x0": 7, - "C.xxx": 2, - "g": 2, - "step": 2, - "x0.yzx": 1, - "x0.xyz": 1, - "l": 1, - "i1": 2, - "min": 11, - "g.xyz": 2, - "l.zxy": 2, - "i2": 2, - "max": 9, - "x1": 4, - "*C.x": 2, - "/3": 1, - "C.y": 1, - "x3": 4, - "D.yyy": 1, - "D.y": 1, - "p": 26, - "i.z": 1, - "i1.z": 1, - "i2.z": 1, - "i.y": 1, - "i1.y": 1, - "i2.y": 1, - "i.x": 1, - "i1.x": 1, - "i2.x": 1, - "n_": 2, - "/7.0": 1, - "ns": 4, - "D.wyz": 1, - "D.xzx": 1, - "j": 4, - "ns.z": 3, - "mod": 2, - "*7": 1, - "x_": 3, - "y_": 2, - "N": 1, - "*ns.x": 2, - "ns.yyyy": 2, - "y": 2, - "h": 21, - "abs": 2, - "b0": 3, - "x.xy": 1, - "y.xy": 1, - "b1": 3, - "x.zw": 1, - "y.zw": 1, - "//vec4": 3, - "s0": 2, - "lessThan": 2, - "*2.0": 4, - "s1": 2, - "sh": 1, - "a0": 1, - "b0.xzyw": 1, - "s0.xzyw*sh.xxyy": 1, - "a1": 1, - "b1.xzyw": 1, - "s1.xzyw*sh.zzww": 1, - "p0": 5, - "a0.xy": 1, - "h.x": 1, - "p1": 5, - "a0.zw": 1, - "h.y": 1, - "p2": 5, - "a1.xy": 1, - "h.z": 1, - "p3": 5, - "a1.zw": 1, - "h.w": 1, - "//Normalise": 1, - "gradients": 1, - "norm": 1, - "norm.x": 1, - "norm.y": 1, - "norm.z": 1, - "norm.w": 1, - "m": 8, - "m*m": 1, - "fbm": 2, - "final": 5, - "waterHeight": 4, - "d": 10, - "length": 7, - "p.xz": 2, - "sin": 8, - "iGlobalTime": 7, - "Island": 1, - "waves": 3, - "p*0.5": 1, - "Other": 1, - "bump": 2, - "pos": 42, - "rayDir": 43, - "s": 23, - "Fade": 1, - "out": 1, - "to": 1, - "reduce": 1, - "aliasing": 1, - "dist": 7, - "<": 23, - "sqrt": 6, - "Calculate": 1, - "normal": 7, - "from": 2, - "heightmap": 1, - "pos.x": 1, - "iGlobalTime*0.5": 1, - "pos.z": 2, - "*0.7": 1, - "*s": 4, - "normalize": 14, - "e.xyy": 1, - "e.yxy": 1, - "intersectSphere": 2, - "rpos": 5, - "rdir": 3, - "rad": 2, - "op": 5, - "b": 5, - "det": 11, - "b*b": 2, - "rad*rad": 2, - "if": 29, - "t": 44, - "rdir*t": 1, - "intersectCylinder": 1, - "rdir2": 2, - "rdir.yz": 1, - "op.yz": 3, - "rpos.yz": 2, - "rdir2*t": 2, - "pos.yz": 2, - "intersectPlane": 3, - "rayPos": 38, - "n": 18, - "sign": 1, - "rotate": 5, - "theta": 6, - "c": 6, - "cos": 4, - "p.x": 2, - "p.z": 2, - "p.y": 1, - "impulse": 2, - "k": 8, - "by": 1, - "iq": 2, - "k*x": 1, - "exp": 2, - "grass": 2, - "Optimization": 1, - "Avoid": 1, - "noise": 1, - "too": 1, - "far": 1, - "away": 1, - "pos.y": 8, - "tree": 2, - "pos.y*0.03": 2, - "mat2": 2, - "m*pos.xy": 1, - "width": 2, - "clamp": 4, - "scene": 7, - "vtree": 4, - "vgrass": 2, - ".x": 4, - "eps.xyy": 1, - "eps.yxy": 1, - "eps.yyx": 1, - "plantsShadow": 2, - "Soft": 1, - "shadow": 4, - "taken": 1, - "for": 7, - "rayDir*t": 2, - "res": 6, - "res.x": 3, - "k*res.x/t": 1, - "s*s*": 1, - "intersectWater": 2, - "rayPos.y": 1, - "rayDir.y": 1, - "intersectSand": 3, - "intersectTreasure": 2, - "intersectLeaf": 2, - "openAmount": 4, - "dir": 2, - "offset": 5, - "rayDir*res.w": 1, - "pos*0.8": 2, - "||": 3, - "res.w": 6, - "res2": 2, - "dir.xy": 1, - "dir.z": 1, - "rayDir*res2.w": 1, - "res2.w": 3, - "&&": 10, - "leaves": 7, - "e20": 3, - "sway": 5, - "fract": 1, - "upDownSway": 2, - "angleOffset": 3, - "Left": 1, - "right": 1, - "alpha": 3, - "Up": 1, - "down": 1, - "k*10.0": 1, - "p.xzy": 1, - ".xzy": 2, - "d.xzy": 1, - "Shift": 1, - "Intersect": 11, - "individual": 1, - "leaf": 1, - "res.xyz": 1, - "sand": 2, - "resSand": 2, - "//if": 1, - "resSand.w": 4, - "plants": 6, - "resLeaves": 3, - "resLeaves.w": 10, - "e7": 3, - "light": 5, - "sunDir*0.01": 2, - "col": 32, - "n.y": 3, - "lightLeaves": 3, - "ao": 5, - "sky": 5, - "res.y": 2, - "uvFact": 2, - "uv": 12, - "n.x": 1, - "tex": 6, - "texture2D": 6, - "iChannel0": 3, - ".rgb": 2, - "e8": 1, - "traceReflection": 2, - "resPlants": 2, - "resPlants.w": 6, - "resPlants.xyz": 2, - "pos.xz": 2, - "leavesPos.xz": 2, - ".r": 3, - "resLeaves.xyz": 2, - "trace": 2, - "resSand.xyz": 1, - "treasure": 1, - "chest": 1, - "resTreasure": 1, - "resTreasure.w": 4, - "resTreasure.xyz": 1, - "water": 1, - "resWater": 1, - "resWater.w": 4, - "ct": 2, - "fresnel": 2, - "pow": 3, - "trans": 2, - "reflDir": 3, - "reflect": 1, - "refl": 3, - "resWater.t": 1, - "mix": 2, - "camera": 8, - "px": 4, - "rd": 1, - "iResolution.yy": 1, - "iResolution.x/iResolution.y*0.5": 1, - "rd.x": 1, - "rd.y": 1, - "gl_FragCoord.xy": 7, - "*0.25": 4, - "*0.5": 1, - "Optimized": 1, - "Haarm": 1, - "Peter": 1, - "Duiker": 1, - "curve": 1, - "col*exposure": 1, - "x*": 2, - ".5": 1, - "gl_FragColor": 3, - "uniform": 7, - "kCoeff": 2, - "kCube": 2, - "uShift": 3, - "vShift": 3, - "chroma_red": 2, - "chroma_green": 2, - "chroma_blue": 2, - "bool": 1, - "apply_disto": 4, - "sampler2D": 1, - "input1": 4, - "adsk_input1_w": 4, - "adsk_input1_h": 3, - "adsk_input1_aspect": 1, - "adsk_input1_frameratio": 5, - "adsk_result_w": 3, - "adsk_result_h": 2, - "distortion_f": 3, - "f": 17, - "r*r": 1, - "inverse_f": 2, - "[": 29, - "]": 29, - "lut": 9, - "max_r": 2, - "incr": 2, - "lut_r": 5, - ".z": 5, - ".y": 2, - "aberrate": 4, - "chroma": 2, - "chromaticize_and_invert": 2, - "rgb_f": 5, - "px.x": 2, - "px.y": 2, - "uv.x": 11, - "uv.y": 7, - "*2": 2, - "uv.x*uv.x": 1, - "uv.y*uv.y": 1, - "else": 1, - "rgb_uvs": 12, - "rgb_f.rr": 1, - "rgb_f.gg": 1, - "rgb_f.bb": 1, - "sampled": 1, - "sampled.r": 1, - "sampled.g": 1, - ".g": 1, - "sampled.b": 1, - ".b": 1, - "gl_FragColor.rgba": 1, - "sampled.rgb": 1, - "static": 1, - "char*": 1, - "SimpleFragmentShader": 1, - "STRINGIFY": 1, - "varying": 4, - "FrontColor": 2, - "NUM_LIGHTS": 4, - "AMBIENT": 2, - "MAX_DIST": 3, - "MAX_DIST_SQUARED": 3, - "lightColor": 3, - "fragmentNormal": 2, - "cameraVector": 2, - "lightVector": 4, - "initialize": 1, - "diffuse/specular": 1, - "lighting": 1, - "diffuse": 4, - "specular": 4, - "the": 1, - "fragment": 1, - "and": 2, - "direction": 1, - "cameraDir": 2, - "loop": 1, - "through": 1, - "each": 1, - "calculate": 1, - "distance": 1, - "between": 1, - "distFactor": 3, - "lightDir": 3, - "diffuseDot": 2, - "halfAngle": 2, - "specularColor": 2, - "specularDot": 2, - "sample.rgb": 1, - "sample.a": 1 - }, - "ECL": { - "#option": 1, - "(": 32, - "true": 1, - ")": 32, - ";": 23, - "namesRecord": 4, - "RECORD": 1, - "string20": 1, - "surname": 1, - "string10": 2, - "forename": 1, - "integer2": 5, - "age": 2, - "dadAge": 1, - "mumAge": 1, - "END": 1, - "namesRecord2": 3, - "record": 1, - "extra": 1, - "end": 1, - "namesTable": 11, - "dataset": 2, - "FLAT": 2, - "namesTable2": 9, - "aveAgeL": 3, - "l": 1, - "l.dadAge": 1, - "+": 16, - "l.mumAge": 1, - "/2": 2, - "aveAgeR": 4, - "r": 1, - "r.dadAge": 1, - "r.mumAge": 1, - "output": 9, - "join": 11, - "left": 2, - "right": 3, - "//Several": 1, - "simple": 1, - "examples": 1, - "of": 1, - "sliding": 2, - "syntax": 1, - "left.age": 8, - "right.age": 12, + "Scala": { + "SHEBANG#!sh": 2, + "exec": 2, + "scala": 2, + "#": 2, + "object": 3, + "Beers": 1, + "extends": 1, + "Application": 1, + "{": 21, + "def": 10, + "bottles": 3, + "(": 67, + "qty": 12, + "Int": 11, + "f": 4, + "String": 5, + ")": 67, + "//": 29, + "higher": 1, "-": 5, - "and": 10, + "order": 1, + "functions": 2, + "match": 2, + "case": 8, + "+": 49, + "x": 3, + "}": 22, + "beers": 3, + "sing": 3, + "implicit": 3, + "song": 3, + "takeOne": 2, + "nextQty": 2, + "nested": 1, + "if": 2, + "else": 2, + "refrain": 2, + ".capitalize": 1, + "tail": 1, + "recursion": 1, + "val": 6, + "headOfSong": 1, + "println": 8, + "parameter": 1, + "name": 4, + "version": 1, + "organization": 1, + "libraryDependencies": 3, + "%": 12, + "Seq": 3, + "libosmVersion": 4, + "from": 1, + "maxErrors": 1, + "pollInterval": 1, + "javacOptions": 1, + "scalacOptions": 1, + "scalaVersion": 1, + "initialCommands": 2, + "in": 12, + "console": 1, + "mainClass": 2, + "Compile": 4, + "packageBin": 1, + "Some": 6, + "run": 1, + "watchSources": 1, + "<+=>": 1, + "baseDirectory": 1, + "map": 1, + "_": 2, + "input": 1, + "add": 2, + "a": 4, + "maven": 2, + "style": 2, + "repository": 2, + "resolvers": 2, + "at": 4, + "url": 3, + "sequence": 1, + "of": 1, + "repositories": 1, + "define": 1, + "the": 5, + "to": 7, + "publish": 1, + "publishTo": 1, + "set": 2, + "Ivy": 1, + "logging": 1, + "be": 1, + "highest": 1, + "level": 1, + "ivyLoggingLevel": 1, + "UpdateLogging": 1, + "Full": 1, + "disable": 1, + "updating": 1, + "dynamic": 1, + "revisions": 1, + "including": 1, + "SNAPSHOT": 1, + "versions": 1, + "offline": 1, + "true": 5, + "prompt": 1, + "for": 1, + "this": 1, + "build": 1, + "include": 1, + "project": 1, + "id": 1, + "shellPrompt": 2, + "ThisBuild": 1, + "state": 3, + "Project.extract": 1, + ".currentRef.project": 1, + "System.getProperty": 1, + "showTiming": 1, + "false": 7, + "showSuccess": 1, + "timingFormat": 1, + "import": 9, + "java.text.DateFormat": 1, + "DateFormat.getDateTimeInstance": 1, + "DateFormat.SHORT": 2, + "crossPaths": 1, + "fork": 2, + "Test": 3, + "javaOptions": 1, + "parallelExecution": 2, + "javaHome": 1, + "file": 3, + "scalaHome": 1, + "aggregate": 1, + "clean": 1, + "logLevel": 2, + "compile": 1, + "Level.Warn": 2, + "persistLogLevel": 1, + "Level.Debug": 1, + "traceLevel": 2, + "unmanagedJars": 1, + "publishArtifact": 2, + "packageDoc": 2, + "artifactClassifier": 1, + "retrieveManaged": 1, + "credentials": 2, + "Credentials": 2, + "Path.userHome": 1, + "/": 2, + "math.random": 1, + "scala.language.postfixOps": 1, + "scala.util._": 1, + "scala.util.": 1, + "Try": 1, + "Success": 2, + "Failure": 2, + "scala.concurrent._": 1, + "duration._": 1, + "ExecutionContext.Implicits.global": 1, + "scala.concurrent.": 1, + "ExecutionContext": 1, + "CanAwait": 1, + "OnCompleteRunnable": 1, + "TimeoutException": 1, + "ExecutionException": 1, + "blocking": 3, + "node11": 1, + "Welcome": 1, + "Scala": 1, + "worksheet": 1, + "retry": 3, + "[": 11, + "T": 8, + "]": 11, + "n": 3, + "block": 8, + "Future": 5, + "ns": 1, + "Iterator": 2, + ".iterator": 1, + "attempts": 1, + "ns.map": 1, + "failed": 2, + "Future.failed": 1, + "new": 1, + "Exception": 2, + "attempts.foldLeft": 1, + "fallbackTo": 1, + "scala.concurrent.Future": 1, + "scala.concurrent.Fut": 1, + "|": 19, + "ure": 1, + "rb": 3, + "i": 9, + "Thread.sleep": 2, + "*random.toInt": 1, + "i.toString": 5, + "ri": 2, + "onComplete": 1, + "s": 1, + "s.toString": 1, + "t": 1, + "t.toString": 1, + "r": 1, + "r.toString": 1, + "Unit": 1, + "toList": 1, + ".foreach": 1, + "Iteration": 5, + "java.lang.Exception": 1, + "Hi": 10, + "HelloWorld": 1, + "main": 1, + "args": 1, + "Array": 1 + }, + "Scaml": { + "%": 1, + "p": 1, + "Hello": 1, + "World": 1 + }, + "Scheme": { + "(": 366, + "import": 1, + "rnrs": 1, + ")": 380, + "only": 1, + "surfage": 4, + "s1": 1, + "lists": 1, + "filter": 4, + "-": 192, + "map": 4, + "gl": 12, + "glut": 2, + "dharmalab": 2, + "records": 1, + "define": 30, + "record": 5, + "type": 5, + "math": 1, + "basic": 2, + "agave": 4, + "glu": 1, + "compat": 1, + "geometry": 1, + "pt": 49, + "glamour": 2, + "window": 2, + "misc": 1, + "s19": 1, + "time": 24, + "s27": 1, + "random": 27, + "bits": 1, + "s42": 1, + "eager": 1, + "comprehensions": 1, + ";": 1684, + "utilities": 1, + "say": 9, + ".": 2, + "args": 2, + "for": 7, + "each": 7, + "display": 4, + "newline": 2, + "translate": 6, + "p": 6, + "glTranslated": 1, + "x": 10, + "y": 3, + "radians": 8, + "/": 7, + "pi": 2, + "degrees": 2, + "angle": 6, + "a": 19, + "cos": 1, + "sin": 1, + "current": 15, + "in": 14, + "nanoseconds": 2, + "let": 2, + "val": 3, + "+": 28, + "second": 1, + "nanosecond": 1, + "seconds": 12, + "micro": 1, + "milli": 1, + "base": 2, + "step": 1, + "score": 5, + "level": 5, + "ships": 1, + "spaceship": 5, + "fields": 4, + "mutable": 14, + "pos": 16, + "vel": 4, + "theta": 1, + "force": 1, + "particle": 8, + "birth": 2, + "lifetime": 1, + "color": 2, + "particles": 11, + "asteroid": 14, + "radius": 6, + "number": 3, + "of": 3, + "starting": 3, + "asteroids": 15, + "#f": 5, + "bullet": 16, + "pack": 12, + "is": 8, + "initialize": 1, + "size": 1, + "title": 1, + "reshape": 1, + "width": 8, + "height": 8, + "source": 2, + "randomize": 1, + "default": 1, + "wrap": 4, + "mod": 2, + "ship": 8, + "make": 11, + "ammo": 9, + "set": 19, + "list": 6, + "ec": 6, + "i": 6, + "inexact": 16, + "integer": 25, + "buffered": 1, + "procedure": 1, + "lambda": 12, + "background": 1, + "glColor3f": 5, + "matrix": 5, + "excursion": 5, + "ship.pos": 5, + "glRotated": 2, + "ship.theta": 10, + "glutWireCone": 1, + "par": 6, + "c": 4, + "vector": 6, + "ref": 3, + "glutWireSphere": 3, + "bullets": 7, + "pack.pos": 3, + "glutWireCube": 1, + "last": 3, + "dt": 7, + "update": 2, + "system": 2, + "pt*n": 8, + "ship.vel": 5, + "pack.vel": 1, + "cond": 2, + "par.birth": 1, + "par.lifetime": 1, + "else": 2, + "par.pos": 2, + "par.vel": 1, + "bullet.birth": 1, + "bullet.pos": 2, + "bullet.vel": 1, + "a.pos": 2, + "a.vel": 1, + "if": 1, "<": 1, - "between": 7, - "//Same": 1, - "but": 1, - "on": 1, - "strings.": 1, - "Also": 1, - "includes": 1, - "to": 1, - "ensure": 1, - "sort": 1, - "is": 1, - "done": 1, - "by": 1, - "non": 1, - "before": 1, - "sliding.": 1, - "left.surname": 2, - "right.surname": 4, - "[": 4, - "]": 4, - "all": 1, - "//This": 1, + "a.radius": 1, + "contact": 2, + "b": 4, + "when": 5, + "<=>": 3, + "distance": 3, + "begin": 2, + "1": 2, + "f": 1, + "append": 4, + "4": 1, + "50": 4, + "0": 7, + "100": 6, + "2": 1, + "n": 2, + "null": 1, + "10": 1, + "5": 1, + "glutIdleFunc": 1, + "glutPostRedisplay": 1, + "glutKeyboardFunc": 1, + "key": 2, + "case": 1, + "char": 1, + "#": 6, + "w": 1, + "d": 1, + "s": 1, + "space": 1, + "cons": 1, + "glutMainLoop": 1, + "library": 1, + "libs": 1, + "export": 1, + "list2": 2, + "objs": 2, "should": 1, "not": 1, - "generate": 1, - "a": 1, - "self": 1 + "be": 1, + "exported": 1 }, - "Makefile": { - "SHEBANG#!make": 1, - "%": 1, - "ls": 1, - "-": 6, - "l": 1, - "all": 1, - "hello": 4, - "main.o": 3, - "factorial.o": 3, - "hello.o": 3, - "g": 4, - "+": 8, - "o": 1, - "main.cpp": 2, - "c": 3, - "factorial.cpp": 2, - "hello.cpp": 2, - "clean": 1, - "rm": 1, - "rf": 1, - "*o": 1 - }, - "Haskell": { - "module": 2, - "Sudoku": 9, - "(": 8, - "solve": 5, - "isSolved": 4, - "pPrint": 5, - ")": 8, - "where": 4, - "import": 6, - "Data.Maybe": 2, - "Data.List": 1, - "Data.List.Split": 1, - "type": 1, - "[": 4, - "Int": 1, - "]": 3, - "-": 3, - "Maybe": 1, - "sudoku": 36, - "|": 8, - "Just": 1, - "otherwise": 2, - "do": 3, - "index": 27, - "<": 1, - "elemIndex": 1, - "let": 2, - "sudokus": 2, - "nextTest": 5, - "i": 7, - "<->": 1, - "1": 2, - "9": 7, - "checkRow": 2, - "checkColumn": 2, - "checkBox": 2, - "listToMaybe": 1, - "mapMaybe": 1, - "take": 1, - "drop": 1, - "length": 12, - "getRow": 3, - "nub": 6, - "getColumn": 3, - "getBox": 3, - "filter": 3, - "0": 3, - "chunksOf": 10, - "quot": 3, - "transpose": 4, - "mod": 2, - "map": 13, - "concat": 2, - "concatMap": 2, - "3": 4, - "27": 1, - "Bool": 1, - "product": 1, - "False": 4, - ".": 4, - "sudokuRows": 4, - "/": 3, - "sudokuColumns": 3, - "sudokuBoxes": 3, - "True": 1, - "String": 1, - "intercalate": 2, - "show": 1, - "Data.Char": 1, - "main": 4, - "IO": 2, - "hello": 2, - "putStrLn": 3, - "toUpper": 1, - "Main": 1, - "+": 2, - "fromMaybe": 1 - }, - "Slim": { - "doctype": 1, - "html": 2, - "head": 1, - "title": 1, - "Slim": 2, - "Examples": 1, - "meta": 2, - "name": 2, - "content": 2, - "author": 2, - "javascript": 1, - "alert": 1, - "(": 1, - ")": 1, - "body": 1, - "h1": 1, - "Markup": 1, - "examples": 1, - "#content": 1, - "p": 2, - "This": 1, - "example": 1, - "shows": 1, - "you": 2, - "how": 1, - "a": 1, - "basic": 1, - "file": 1, - "looks": 1, - "like.": 1, - "yield": 1, - "-": 3, - "unless": 1, - "items.empty": 1, - "table": 1, - "for": 1, - "item": 1, - "in": 1, - "items": 2, - "do": 1, - "tr": 1, - "td.name": 1, - "item.name": 1, - "td.price": 1, - "item.price": 1, - "else": 1, - "|": 2, - "No": 1, - "found.": 1, - "Please": 1, - "add": 1, - "some": 1, - "inventory.": 1, - "Thank": 1, - "div": 1, - "id": 1, - "render": 1, - "Copyright": 1, - "#": 2, - "{": 2, - "year": 1, - "}": 2 - }, - "Zephir": { - "namespace": 3, - "Test": 2, - "Router": 1, - ";": 86, - "class": 2, - "Route": 1, - "{": 56, - "protected": 9, - "_pattern": 3, - "_compiledPattern": 3, - "_paths": 3, - "_methods": 5, - "_hostname": 3, - "_converters": 3, - "_id": 2, - "_name": 3, - "_beforeMatch": 3, - "public": 22, - "function": 22, - "__construct": 1, - "(": 55, - "pattern": 37, - "paths": 7, - "null": 11, - "httpMethods": 6, - ")": 53, - "this": 28, - "-": 25, - "reConfigure": 2, - "let": 51, - "}": 50, - "compilePattern": 2, - "var": 4, - "idPattern": 6, - "if": 39, - "memstr": 10, - "str_replace": 6, - "return": 25, - ".": 5, - "via": 1, - "extractNamedParams": 2, - "string": 6, - "char": 1, - "ch": 27, - "tmp": 4, - "matches": 5, - "boolean": 1, - "notValid": 5, - "false": 3, - "int": 3, - "cursor": 4, - "cursorVar": 5, - "marker": 4, - "bracketCount": 7, - "parenthesesCount": 5, - "foundPattern": 6, - "intermediate": 4, - "numberMatches": 4, - "route": 12, - "item": 7, - "variable": 5, - "regexp": 7, - "strlen": 1, - "<=>": 5, - "0": 9, - "for": 4, - "in": 4, - "1": 3, - "else": 11, - "+": 5, - "substr": 3, - "break": 9, - "&&": 6, - "z": 2, - "Z": 2, - "true": 2, - "<='9')>": 1, - "_": 1, - "2": 2, - "continue": 1, - "[": 14, - "]": 14, - "moduleName": 5, - "controllerName": 7, - "actionName": 4, - "parts": 9, - "routePaths": 5, - "realClassName": 1, - "namespaceName": 1, - "pcrePattern": 4, - "compiledPattern": 4, - "extracted": 4, - "typeof": 2, - "throw": 1, - "new": 1, - "Exception": 1, - "explode": 1, - "switch": 1, - "count": 1, - "case": 3, - "controller": 1, - "action": 1, - "array": 1, - "The": 1, - "contains": 1, - "invalid": 1, - "#": 1, - "array_merge": 1, - "//Update": 1, - "the": 1, - "s": 1, - "name": 5, - "*": 2, - "@return": 1, - "*/": 1, - "getName": 1, - "setName": 1, - "beforeMatch": 1, - "callback": 2, - "getBeforeMatch": 1, - "getRouteId": 1, - "getPattern": 1, - "getCompiledPattern": 1, - "getPaths": 1, - "getReversedPaths": 1, - "reversed": 4, - "path": 3, - "position": 3, - "setHttpMethods": 1, - "getHttpMethods": 1, - "setHostname": 1, - "hostname": 2, - "getHostname": 1, - "convert": 1, - "converter": 2, - "getConverters": 1, - "%": 10, - "#define": 1, - "MAX_FACTOR": 3, - "#include": 1, - "static": 1, - "long": 3, - "fibonacci": 4, - "n": 5, - "<": 1, - "Cblock": 1, - "testCblock1": 1, - "a": 6, - "testCblock2": 1 - }, - "INI": { - "[": 2, - "user": 1, - "]": 2, - "name": 1, - "Josh": 1, - "Peek": 1, - "email": 1, - "josh@github.com": 1, - ";": 1, - "editorconfig.org": 1, - "root": 1, - "true": 3, - "*": 1, - "indent_style": 1, - "space": 1, - "indent_size": 1, - "end_of_line": 1, - "lf": 1, - "charset": 1, - "utf": 1, - "-": 1, - "trim_trailing_whitespace": 1, - "insert_final_newline": 1 - }, - "OCaml": { - "{": 11, - "shared": 1, - "open": 4, - "Eliom_content": 1, - "Html5.D": 1, - "Eliom_parameter": 1, - "}": 13, - "server": 2, - "module": 5, - "Example": 1, - "Eliom_registration.App": 1, - "(": 21, - "struct": 5, - "let": 13, - "application_name": 1, - "end": 5, - ")": 23, - "main": 2, - "Eliom_service.service": 1, - "path": 1, - "[": 13, - "]": 13, - "get_params": 1, - "unit": 5, - "client": 1, - "hello_popup": 2, - "Dom_html.window##alert": 1, - "Js.string": 1, - "_": 2, - "Example.register": 1, - "service": 1, - "fun": 9, - "-": 22, - "Lwt.return": 1, - "html": 1, - "head": 1, - "title": 1, - "pcdata": 4, - "body": 1, - "h1": 1, - ";": 14, - "p": 1, - "h2": 1, - "a": 4, - "a_onclick": 1, - "type": 2, - "Ops": 2, - "@": 6, - "f": 10, - "k": 21, - "|": 15, - "x": 14, - "List": 1, - "rec": 3, - "map": 3, - "l": 8, - "match": 4, - "with": 4, - "hd": 6, - "tl": 6, - "fold": 2, - "acc": 5, - "Option": 1, - "opt": 2, - "None": 5, - "Some": 5, - "Lazy": 1, - "option": 1, - "mutable": 1, - "waiters": 5, - "make": 1, - "push": 4, - "cps": 7, - "value": 3, - "force": 1, - "l.value": 2, - "when": 1, - "l.waiters": 5, - "<->": 3, + "Scilab": { "function": 1, -<<<<<<< HEAD "[": 1, "a": 4, "b": 4, @@ -101743,154 +61634,1058 @@ "else": 10, "rm": 2, "rf": 1, -======= - "Base.List.iter": 1, - "l.push": 1, - "<": 1, - "get_state": 1, - "lazy_from_val": 1 + "package": 1, + "PREFIX": 1, + "/usr": 1, + "DESTDIR": 1, + "Dm755": 1, + "init.stud": 1, + "mkdir": 2, + "p": 2, + "script": 1, + "dotfile": 1, + "repository": 3, + "does": 1, + "lot": 1, + "fun": 2, + "stuff": 3, + "like": 1, + "turning": 1, + "normal": 1, + "dotfiles": 1, + "eg": 1, + ".bashrc": 1, + "symlinks": 1, + "away": 1, + "optionally": 1, + "moving": 1, + "old": 4, + "files": 1, + "so": 1, + "that": 1, + "they": 1, + "preserved": 1, + "setting": 2, + "up": 1, + "cron": 1, + "automate": 1, + "aforementioned": 1, + "maybe": 1, + "some": 1, + "nocasematch": 1, + "This": 1, + "makes": 1, + "pattern": 1, + "matching": 1, + "insensitive": 1, + "POSTFIX": 1, + "URL": 1, + "PUSHURL": 1, + "overwrite": 3, + "true": 2, + "print_help": 2, + "e": 4, + "opt": 3, + "@": 3, + "k": 1, + "local": 22, + "false": 2, + "h": 3, + ".*": 2, + "o": 3, + "continue": 1, + "mv": 1, + "ln": 1, + "remote.origin.url": 1, + "remote.origin.pushurl": 1, + "crontab": 1, + ".jobs.cron": 1, + "x": 1, + "system": 1, + "exec": 3, + "rbenv": 2, + "versions": 1, + "bare": 1, + "&": 5, + "prefix": 1, + "/dev/null": 6, + "rvm_ignore_rvmrc": 1, + "declare": 22, + "rvmrc": 3, + "rvm_rvmrc_files": 3, + "ef": 1, + "+": 1, + "GREP_OPTIONS": 1, + "printf": 4, + "rvm_path": 4, + "UID": 1, + "elif": 4, + "rvm_is_not_a_shell_function": 2, + "rvm_path/scripts": 1, + "rvm": 1, + "sbt_release_version": 2, + "sbt_snapshot_version": 2, + "SNAPSHOT": 3, + "sbt_jar": 3, + "sbt_dir": 2, + "sbt_create": 2, + "sbt_snapshot": 1, + "sbt_launch_dir": 3, + "scala_version": 3, + "java_home": 1, + "sbt_explicit_version": 7, + "verbose": 6, + "debug": 11, + "quiet": 6, + "build_props_sbt": 3, + "project/build.properties": 9, + "versionLine": 2, + "sbt.version": 3, + "versionString": 3, + "versionLine##sbt.version": 1, + "update_build_props_sbt": 2, + "ver": 5, + "return": 3, + "perl": 3, + "pi": 1, + "||": 12, + "Updated": 1, + "Previous": 1, + "value": 1, + "was": 1, + "sbt_version": 8, + "echoerr": 3, + "vlog": 1, + "dlog": 8, + "get_script_path": 2, + "L": 1, + "target": 1, + "readlink": 1, + "get_mem_opts": 3, + "mem": 4, + "perm": 6, + "/": 2, + "<": 2, + "codecache": 1, + "die": 2, + "make_url": 3, + "groupid": 1, + "category": 1, + "default_jvm_opts": 1, + "default_sbt_opts": 1, + "default_sbt_mem": 2, + "noshare_opts": 1, + "sbt_opts_file": 1, + "jvm_opts_file": 1, + "latest_28": 1, + "latest_29": 1, + "latest_210": 1, + "script_path": 1, + "script_dir": 1, + "script_name": 2, + "java_cmd": 2, + "java": 2, + "sbt_mem": 5, + "residual_args": 4, + "java_args": 3, + "scalac_args": 4, + "sbt_commands": 2, + "build_props_scala": 1, + "build.scala.versions": 1, + "versionLine##build.scala.versions": 1, + "execRunner": 2, + "arg": 3, + "sbt_groupid": 3, + "*": 11, + "org.scala": 4, + "tools.sbt": 3, + "sbt": 18, + "sbt_artifactory_list": 2, + "version0": 2, + "F": 1, + "pe": 1, + "make_release_url": 2, + "releases": 1, + "make_snapshot_url": 2, + "snapshots": 1, + "head": 1, + "jar_url": 1, + "jar_file": 1, + "download_url": 2, + "jar": 3, + "dirname": 1, + "fail": 1, + "silent": 1, + "output": 1, + "wget": 2, + "O": 1, + "acquire_sbt_jar": 1, + "sbt_url": 1, + "usage": 2, + "cat": 3, + "<<": 2, + "EOM": 3, + "Usage": 1, + "print": 1, + "message": 1, + "runner": 1, + "chattier": 1, + "log": 2, + "level": 2, + "Debug": 1, + "Error": 1, + "colors": 2, + "disable": 1, + "ANSI": 1, + "color": 1, + "codes": 1, + "create": 2, + "start": 1, + "current": 1, + "contains": 2, + "project": 1, + "dir": 3, + "": 3, + "global": 1, + "settings/plugins": 1, + "default": 4, + "/.sbt/": 1, + "": 1, + "boot": 3, + "shared": 1, + "/.sbt/boot": 1, + "series": 1, + "ivy": 2, + "Ivy": 1, + "/.ivy2": 1, + "": 1, + "share": 2, + "use": 1, + "all": 1, + "caches": 1, + "sharing": 1, + "offline": 3, + "put": 1, + "mode": 2, + "jvm": 2, + "": 1, + "Turn": 1, + "JVM": 1, + "debugging": 1, + "open": 1, + "at": 1, + "given": 2, + "port.": 1, + "batch": 2, + "Disable": 1, + "interactive": 1, + "The": 1, + "way": 1, + "accomplish": 1, + "pre": 1, + "there": 2, + "build.properties": 1, + "an": 1, + "property": 1, + "disk.": 1, + "That": 1, + "scalacOptions": 3, + "S": 2, + "stripped": 1, + "In": 1, + "duplicated": 1, + "conflicting": 1, + "order": 1, + "above": 1, + "shows": 1, + "precedence": 1, + "JAVA_OPTS": 1, + "lowest": 1, + "line": 1, + "highest.": 1, + "addJava": 9, + "addSbt": 12, + "addScalac": 2, + "addResidual": 2, + "addResolver": 1, + "addDebugger": 2, + "get_jvm_opts": 2, + "process_args": 2, + "require_arg": 12, + "gt": 1, + "shift": 28, + "integer": 1, + "inc": 1, + "port": 1, + "snapshot": 1, + "launch": 1, + "scala": 3, + "home": 2, + "D*": 1, + "J*": 1, + "S*": 1, + "sbtargs": 3, + "IFS": 1, + "read": 1, + "<\"$sbt_opts_file\">": 1, + "process": 1, + "combined": 1, + "args": 2, + "reset": 1, + "residuals": 1, + "argumentCount=": 1, + "we": 1, + "were": 1, + "any": 1, + "opts": 1, + "eq": 1, + "0": 1, + "ThisBuild": 1, + "Update": 1, + "properties": 1, + "explicit": 1, + "gives": 1, + "us": 1, + "choice": 1, + "Detected": 1, + "Overriding": 1, + "alert": 1, + "them": 1, + "here": 1, + "argumentCount": 1, + "./build.sbt": 1, + "./project": 1, + "pwd": 1, + "doesn": 1, + "understand": 1, + "iflast": 1, + "#residual_args": 1, + "SHEBANG#!sh": 2, + "SHEBANG#!zsh": 2, + "name": 1, + "foodforthought.jpg": 1, + "name##*fo": 1 }, - "VCL": { - "sub": 23, - "vcl_recv": 2, - "{": 50, - "if": 14, - "(": 50, - "req.request": 18, - "&&": 14, - ")": 50, - "return": 33, - "pipe": 4, - ";": 48, - "}": 50, - "pass": 9, - "req.http.Authorization": 2, - "||": 4, - "req.http.Cookie": 2, - "lookup": 2, - "vcl_pipe": 2, - "vcl_pass": 2, - "vcl_hash": 2, - "set": 10, - "req.hash": 3, - "+": 17, - "req.url": 2, - "req.http.host": 4, - "else": 3, - "server.ip": 2, - "hash": 2, - "vcl_hit": 2, - "obj.cacheable": 2, - "deliver": 8, - "vcl_miss": 2, - "fetch": 3, - "vcl_fetch": 2, - "obj.http.Set": 1, - "-": 21, - "Cookie": 2, - "obj.prefetch": 1, - "s": 3, - "vcl_deliver": 2, - "vcl_discard": 1, - "discard": 2, - "vcl_prefetch": 1, - "vcl_timeout": 1, - "vcl_error": 2, - "obj.http.Content": 2, - "Type": 2, - "synthetic": 2, - "utf": 2, - "//W3C//DTD": 2, - "XHTML": 2, - "Strict//EN": 2, - "http": 3, - "//www.w3.org/TR/xhtml1/DTD/xhtml1": 2, - "strict.dtd": 2, - "obj.status": 4, - "obj.response": 6, - "req.xid": 2, - "//www.varnish": 1, - "cache.org/": 1, - "req.restarts": 1, - "req.http.x": 1, - "forwarded": 1, - "for": 1, - "req.http.X": 3, - "Forwarded": 3, - "For": 3, - "client.ip": 2, - "hash_data": 3, - "beresp.ttl": 2, + "ShellSession": { + "echo": 2, + "FOOBAR": 2, + "Hello": 2, + "World": 2, + "gem": 4, + "install": 4, + "nokogiri": 6, + "...": 4, + "Building": 2, + "native": 2, + "extensions.": 2, + "This": 4, + "could": 2, + "take": 2, + "a": 4, + "while...": 2, + "checking": 1, + "for": 4, + "libxml/parser.h...": 1, + "***": 2, + "extconf.rb": 1, + "failed": 1, + "Could": 2, + "not": 2, + "create": 1, + "Makefile": 1, + "due": 1, + "to": 3, + "some": 1, + "reason": 2, + "probably": 1, + "lack": 1, + "of": 2, + "necessary": 1, + "libraries": 1, + "and/or": 1, + "headers.": 1, + "Check": 1, + "the": 2, + "mkmf.log": 1, + "file": 1, + "more": 1, + "details.": 1, + "You": 1, + "may": 1, + "need": 1, + "configuration": 1, + "options.": 1, + "brew": 2, + "tap": 2, + "homebrew/dupes": 1, + "Cloning": 1, + "into": 1, + "remote": 3, + "Counting": 1, + "objects": 3, + "done.": 4, + "Compressing": 1, + "%": 5, + "(": 6, + "/591": 1, + ")": 6, + "Total": 1, + "delta": 2, + "reused": 1, + "Receiving": 1, + "/1034": 1, + "KiB": 1, + "|": 1, + "bytes/s": 1, + "Resolving": 1, + "deltas": 1, + "/560": 1, + "Checking": 1, + "connectivity...": 1, + "done": 1, + "Warning": 1, + "homebrew/dupes/lsof": 1, + "over": 1, + "mxcl/master/lsof": 1, + "Tapped": 1, + "formula": 4, + "apple": 1, + "-": 12, + "gcc42": 1, + "Downloading": 1, + "http": 2, + "//r.research.att.com/tools/gcc": 1, + "darwin11.pkg": 1, + "########################################################################": 1, + "Caveats": 1, + "NOTE": 1, + "provides": 1, + "components": 1, + "that": 1, + "were": 1, + "removed": 1, + "from": 3, + "XCode": 2, + "in": 2, + "release.": 1, + "There": 1, + "is": 2, + "no": 1, + "this": 1, + "if": 1, + "you": 1, + "are": 1, + "using": 1, + "version": 1, + "prior": 1, + "contains": 1, + "compilers": 2, + "built": 2, + "Apple": 1, + "s": 1, + "GCC": 1, + "sources": 1, + "build": 1, + "available": 1, + "//opensource.apple.com/tarballs/gcc": 1, + "All": 1, + "have": 1, + "suffix.": 1, + "A": 1, + "GFortran": 1, + "compiler": 1, + "also": 1, + "included.": 1, + "Summary": 1, + "/usr/local/Cellar/apple": 1, + "gcc42/4.2.1": 1, + "files": 1, + "M": 1, + "seconds": 1, + "v": 1, + "Fetching": 1, + "Successfully": 1, + "installed": 2, + "Installing": 2, + "ri": 1, + "documentation": 2, + "RDoc": 1 + }, + "Shen": { + "*": 47, + "graph.shen": 1, + "-": 747, + "a": 30, + "library": 3, + "for": 12, + "graph": 52, + "definition": 1, + "and": 16, + "manipulation": 1, + "Copyright": 2, + "(": 267, + "C": 6, + ")": 250, + "Eric": 2, + "Schulte": 2, + "***": 5, + "License": 2, + "Redistribution": 2, + "use": 2, + "in": 13, + "source": 4, + "binary": 4, + "forms": 2, + "with": 8, + "or": 2, + "without": 2, + "modification": 2, + "are": 7, + "permitted": 2, + "provided": 4, + "that": 3, + "the": 29, + "following": 6, + "conditions": 6, + "met": 2, + "Redistributions": 4, + "of": 20, + "code": 2, + "must": 4, + "retain": 2, + "above": 4, + "copyright": 4, + "notice": 4, + "this": 4, + "list": 32, + "disclaimer.": 2, + "form": 2, + "reproduce": 2, + "disclaimer": 2, + "documentation": 2, + "and/or": 2, + "other": 2, + "materials": 2, + "distribution.": 2, + "THIS": 4, + "SOFTWARE": 4, + "IS": 2, + "PROVIDED": 2, + "BY": 2, + "THE": 10, + "COPYRIGHT": 4, + "HOLDERS": 2, + "AND": 8, + "CONTRIBUTORS": 4, + "ANY": 8, + "EXPRESS": 2, + "OR": 16, + "IMPLIED": 4, + "WARRANTIES": 4, + "INCLUDING": 6, + "BUT": 4, + "NOT": 4, + "LIMITED": 4, + "TO": 4, + "OF": 16, + "MERCHANTABILITY": 2, + "FITNESS": 2, + "FOR": 4, + "A": 32, + "PARTICULAR": 2, + "PURPOSE": 2, + "ARE": 2, + "DISCLAIMED.": 2, + "IN": 6, + "NO": 2, + "EVENT": 2, + "SHALL": 2, + "HOLDER": 2, + "BE": 2, + "LIABLE": 2, + "DIRECT": 2, + "INDIRECT": 2, + "INCIDENTAL": 2, + "SPECIAL": 2, + "EXEMPLARY": 2, + "CONSEQUENTIAL": 2, + "DAMAGES": 2, + "PROCUREMENT": 2, + "SUBSTITUTE": 2, + "GOODS": 2, + "SERVICES": 2, + ";": 12, + "LOSS": 2, + "USE": 4, + "DATA": 2, + "PROFITS": 2, + "BUSINESS": 2, + "INTERRUPTION": 2, + "HOWEVER": 2, + "CAUSED": 2, + "ON": 2, + "THEORY": 2, + "LIABILITY": 4, + "WHETHER": 2, + "CONTRACT": 2, + "STRICT": 2, + "TORT": 2, + "NEGLIGENCE": 2, + "OTHERWISE": 2, + "ARISING": 2, + "WAY": 2, + "OUT": 2, + "EVEN": 2, + "IF": 2, + "ADVISED": 2, + "POSSIBILITY": 2, + "SUCH": 2, + "DAMAGE.": 2, + "Commentary": 2, + "Graphs": 1, + "represented": 1, + "as": 2, + "two": 1, + "dictionaries": 1, + "one": 2, + "vertices": 17, + "edges.": 1, + "It": 1, + "is": 5, + "important": 1, + "to": 16, + "note": 1, + "dictionary": 3, + "implementation": 1, + "used": 2, + "able": 1, + "accept": 1, + "arbitrary": 1, + "data": 17, + "structures": 1, + "keys.": 1, + "This": 1, + "structure": 2, + "technically": 1, + "encodes": 1, + "hypergraphs": 1, + "generalization": 1, + "graphs": 1, + "which": 1, + "each": 1, + "edge": 32, + "may": 1, + "contain": 2, + "any": 1, + "number": 12, + ".": 1, + "Examples": 1, + "regular": 1, + "G": 25, + "hypergraph": 1, + "H": 3, + "corresponding": 1, + "given": 4, + "below.": 1, + "": 3, + "Vertices": 11, + "Edges": 9, + "+": 33, + "Graph": 65, + "hash": 8, + "|": 103, + "key": 9, + "value": 17, + "b": 13, + "c": 11, + "g": 19, + "[": 93, + "]": 91, + "d": 12, + "e": 14, + "f": 10, + "Hypergraph": 1, + "h": 3, + "i": 3, + "j": 2, + "associated": 1, + "edge/vertex": 1, + "@p": 17, + "V": 48, + "#": 4, + "E": 20, + "edges": 17, + "M": 4, + "vertex": 29, + "associations": 1, + "size": 2, + "all": 3, + "stored": 1, + "dict": 39, + "sizeof": 4, + "int": 1, + "indices": 1, + "into": 1, + "&": 1, + "Edge": 11, + "dicts": 3, + "entry": 2, + "storage": 2, + "Vertex": 3, + "Code": 1, + "require": 2, + "sequence": 2, + "datatype": 1, + "dictoinary": 1, + "vector": 4, + "symbol": 1, + "package": 2, + "add": 25, + "has": 5, + "neighbors": 8, + "connected": 21, + "components": 8, + "partition": 7, + "bipartite": 3, + "included": 2, + "from": 3, + "take": 2, + "drop": 2, + "while": 2, + "range": 1, + "flatten": 1, + "filter": 2, + "complement": 1, + "seperate": 1, + "zip": 1, + "indexed": 1, + "reduce": 3, + "mapcon": 3, + "unique": 3, + "frequencies": 1, + "shuffle": 1, + "pick": 1, + "remove": 2, + "first": 2, + "interpose": 1, + "subset": 3, + "cartesian": 1, + "product": 1, + "<-dict>": 5, + "contents": 1, + "keys": 3, + "vals": 1, + "make": 10, + "define": 34, + "X": 4, + "<-address>": 5, + "0": 1, + "create": 1, + "specified": 1, + "sizes": 2, + "}": 22, + "Vertsize": 2, + "Edgesize": 2, + "let": 9, + "absvector": 1, + "do": 8, + "address": 5, + "defmacro": 3, + "macro": 3, + "return": 4, + "taking": 1, + "optional": 1, + "N": 7, + "vert": 12, + "1": 1, + "2": 3, + "{": 15, + "get": 3, + "Value": 3, + "if": 8, + "tuple": 3, + "fst": 3, + "error": 7, + "string": 3, + "resolve": 6, + "Vector": 2, + "Index": 2, + "Place": 6, + "nth": 1, + "<-vector>": 2, + "Vert": 5, + "Val": 5, + "trap": 4, + "snd": 2, + "map": 5, + "lambda": 1, + "w": 4, + "B": 2, + "Data": 2, + "w/o": 5, + "D": 4, + "update": 5, + "an": 3, + "s": 1, + "Vs": 4, + "Store": 6, + "<": 4, + "limit": 2, + "VertLst": 2, + "/.": 4, + "Contents": 5, + "adjoin": 2, + "length": 5, + "EdgeID": 3, + "EdgeLst": 2, + "p": 1, + "boolean": 4, + "Return": 1, + "Already": 5, + "New": 5, + "Reachable": 2, + "difference": 3, + "append": 1, + "including": 1, + "itself": 1, + "fully": 1, + "Acc": 2, + "true": 1, + "_": 1, + "VS": 4, + "Component": 6, + "ES": 3, + "Con": 8, + "verts": 4, + "cons": 1, + "place": 3, + "partitions": 1, + "element": 2, + "simple": 3, + "CS": 3, + "Neighbors": 3, + "empty": 1, + "intersection": 1, + "check": 1, + "tests": 1, + "set": 1, + "chris": 6, + "patton": 2, + "eric": 1, + "nobody": 2, + "fail": 1, + "when": 1, + "wrapper": 1, + "function": 1, + "html.shen": 1, + "html": 2, + "generation": 1, + "functions": 1, + "shen": 1, + "The": 1, + "standard": 1, + "lisp": 1, + "conversion": 1, + "tool": 1, + "suite.": 1, + "Follows": 1, + "some": 1, + "convertions": 1, + "Clojure": 1, + "tasks": 1, + "stuff": 1, + "todo1": 1, + "today": 1, + "attributes": 1, + "AS": 1, + "load": 1, + "JSON": 1, + "Lexer": 1, + "Read": 1, + "stream": 1, + "characters": 4, + "Whitespace": 4, + "not": 1, + "strings": 2, + "should": 2, + "be": 2, + "discarded.": 1, + "preserved": 1, + "Strings": 1, + "can": 1, + "escaped": 1, + "double": 1, + "quotes.": 1, + "e.g.": 2, + "whitespacep": 2, + "ASCII": 2, + "Space.": 1, + "All": 1, + "others": 1, + "whitespace": 7, + "table.": 1, + "Char": 4, + "member": 1, + "replace": 3, + "@s": 4, + "Suffix": 4, + "where": 2, + "Prefix": 2, + "fetch": 1, + "until": 1, + "unescaped": 1, + "doublequote": 1, + "c#34": 5, + "WhitespaceChar": 2, + "Chars": 4, + "strip": 2, + "chars": 2, + "tokenise": 1, + "JSONString": 2, + "CharList": 2, + "explode": 1 + }, + "Slash": { + "<%>": 1, + "class": 11, + "Env": 1, + "def": 18, + "init": 4, + "memory": 3, + "ptr": 9, + "0": 3, + "ptr=": 1, + "current_value": 5, + "current_value=": 1, + "value": 1, + "AST": 4, + "Next": 1, + "eval": 10, + "env": 16, + "Prev": 1, + "Inc": 1, + "Dec": 1, + "Output": 1, + "print": 1, + "char": 5, + "Input": 1, + "Sequence": 2, + "nodes": 6, + "for": 2, + "node": 2, + "in": 2, + "Loop": 1, + "seq": 4, + "while": 1, + "Parser": 1, + "str": 2, + "chars": 2, + "split": 1, + "parse": 1, + "stack": 3, + "_parse_char": 2, + "if": 1, + "length": 1, + "1": 1, + "throw": 1, + "SyntaxError": 1, + "new": 2, + "unexpected": 2, + "end": 1, + "of": 1, + "input": 1, + "last": 1, + "switch": 1, "<": 1, - "beresp.http.Set": 1, - "beresp.http.Vary": 1, - "hit_for_pass": 1, - "obj.http.Retry": 1, - "After": 1, - "vcl_init": 1, - "ok": 2, - "vcl_fini": 1 + "+": 1, + "-": 1, + ".": 1, + "[": 1, + "]": 1, + ")": 7, + ";": 6, + "}": 3, + "@stack.pop": 1, + "_add": 1, + "(": 6, + "Loop.new": 1, + "Sequence.new": 1, + "src": 2, + "File.read": 1, + "ARGV.first": 1, + "ast": 1, + "Parser.new": 1, + ".parse": 1, + "ast.eval": 1, + "Env.new": 1 + }, + "Slim": { + "doctype": 1, + "html": 2, + "head": 1, + "title": 1, + "Slim": 2, + "Examples": 1, + "meta": 2, + "name": 2, + "content": 2, + "author": 2, + "javascript": 1, + "alert": 1, + "(": 1, + ")": 1, + "body": 1, + "h1": 1, + "Markup": 1, + "examples": 1, + "#content": 1, + "p": 2, + "This": 1, + "example": 1, + "shows": 1, + "you": 2, + "how": 1, + "a": 1, + "basic": 1, + "file": 1, + "looks": 1, + "like.": 1, + "yield": 1, + "-": 3, + "unless": 1, + "items.empty": 1, + "table": 1, + "for": 1, + "item": 1, + "in": 1, + "items": 2, + "do": 1, + "tr": 1, + "td.name": 1, + "item.name": 1, + "td.price": 1, + "item.price": 1, + "else": 1, + "|": 2, + "No": 1, + "found.": 1, + "Please": 1, + "add": 1, + "some": 1, + "inventory.": 1, + "Thank": 1, + "div": 1, + "id": 1, + "render": 1, + "Copyright": 1, + "#": 2, + "{": 2, + "year": 1, + "}": 2 }, "Smalltalk": { - "tests": 2, - "testSimpleChainMatches": 1, - "|": 18, - "e": 11, - "eCtrl": 3, - "self": 25, - "eventKey": 3, - "e.": 1, - "ctrl": 5, - "true.": 1, - "assert": 2, - "(": 19, - ")": 19, - "matches": 4, - "{": 4, - "}": 4, - ".": 16, - "eCtrl.": 2, - "deny": 2, - "a": 1, - "Koan": 1, - "subclass": 2, - "TestBasic": 1, - "[": 18, - "": 1, - "A": 1, - "collection": 1, - "of": 1, - "introductory": 1, - "testDeclarationAndAssignment": 1, - "declaration": 2, - "anotherDeclaration": 2, - "_": 1, - "expect": 10, - "fillMeIn": 10, - "toEqual": 10, - "declaration.": 1, - "anotherDeclaration.": 1, - "]": 18, - "testEqualSignIsNotAnAssignmentOperator": 1, - "variableA": 6, - "variableB": 5, - "value": 2, - "variableB.": 2, - "testMultipleStatementsInASingleLine": 1, - "variableC": 2, - "variableA.": 1, - "variableC.": 1, - "testInequality": 1, - "testLogicalOr": 1, - "expression": 4, - "<": 2, - "expression.": 2, - "testLogicalAnd": 1, - "&": 1, - "testNot": 1, - "true": 2, - "not.": 1, "Object": 1, + "subclass": 2, "#Philosophers": 1, "instanceVariableNames": 1, "classVariableNames": 1, @@ -101900,19 +62695,26 @@ "class": 1, "methodsFor": 2, "new": 4, + "self": 25, "shouldNotImplement": 1, "quantity": 2, "super": 1, "initialize": 3, "dine": 4, "seconds": 2, + "(": 19, "Delay": 3, "forSeconds": 1, + ")": 19, "wait.": 5, "philosophers": 2, "do": 1, + "[": 18, "each": 5, + "|": 18, "terminate": 1, + "]": 18, + ".": 16, "size": 4, "leftFork": 6, "n": 11, @@ -101938,6 +62740,7 @@ "status": 8, "n.": 2, "printString": 1, + "true": 2, "whileTrue": 1, "Transcript": 5, "nextPutAll": 5, @@ -101954,675 +62757,56 @@ "userBackgroundPriority": 1, "name": 1, "resume": 1, - "yourself": 1 - }, - "Parrot Assembly": { - "SHEBANG#!parrot": 1, - ".pcc_sub": 1, - "main": 2, - "say": 1, - "end": 1 - }, - "Protocol Buffer": { ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method - "package": 1, - "tutorial": 1, - ";": 13, - "option": 2, - "java_package": 1, - "java_outer_classname": 1, - "message": 3, - "Person": 2, + "yourself": 1, + "Koan": 1, + "TestBasic": 1, + "": 1, + "A": 1, + "collection": 1, + "of": 1, + "introductory": 1, + "tests": 2, + "testDeclarationAndAssignment": 1, + "declaration": 2, + "anotherDeclaration": 2, + "_": 1, + "expect": 10, + "fillMeIn": 10, + "toEqual": 10, + "declaration.": 1, + "anotherDeclaration.": 1, + "testEqualSignIsNotAnAssignmentOperator": 1, + "variableA": 6, + "variableB": 5, + "value": 2, + "variableB.": 2, + "testMultipleStatementsInASingleLine": 1, + "variableC": 2, + "variableA.": 1, + "variableC.": 1, + "testInequality": 1, + "testLogicalOr": 1, + "expression": 4, + "<": 2, + "expression.": 2, + "testLogicalAnd": 1, + "&": 1, + "testNot": 1, + "not.": 1, + "testSimpleChainMatches": 1, + "e": 11, + "eCtrl": 3, + "eventKey": 3, + "e.": 1, + "ctrl": 5, + "true.": 1, + "assert": 2, + "matches": 4, "{": 4, - "required": 3, - "string": 3, - "name": 1, - "int32": 1, - "id": 1, - "optional": 2, - "email": 1, - "enum": 1, - "PhoneType": 2, - "MOBILE": 1, - "HOME": 2, - "WORK": 1, "}": 4, - "PhoneNumber": 2, - "number": 1, - "type": 1, - "[": 1, - "default": 1, - "]": 1, - "repeated": 2, - "phone": 1, - "AddressBook": 1, - "person": 1 - }, - "SQL": { - "SHOW": 2, - "WARNINGS": 2, - ";": 31, - "-": 496, - "Table": 9, - "structure": 9, - "for": 15, - "table": 17, - "articles": 4, - "CREATE": 10, - "TABLE": 10, - "IF": 13, - "NOT": 46, - "EXISTS": 12, - "(": 131, - "id": 22, - "int": 28, - ")": 131, - "NULL": 91, - "AUTO_INCREMENT": 9, - "title": 4, - "varchar": 22, - "DEFAULT": 22, - "content": 2, - "longtext": 1, - "date_posted": 4, - "datetime": 10, - "created_by": 2, - "last_modified": 2, - "last_modified_by": 2, - "ordering": 2, - "is_published": 2, - "PRIMARY": 9, - "KEY": 13, - "Dumping": 6, - "data": 6, - "INSERT": 6, - "INTO": 6, - "VALUES": 6, - "challenges": 4, - "pkg_name": 2, - "description": 2, - "text": 1, - "author": 2, - "category": 2, - "visibility": 2, - "publish": 2, - "abstract": 2, - "level": 2, - "duration": 2, - "goal": 2, - "solution": 2, - "availability": 2, - "default_points": 2, - "default_duration": 2, - "challenge_attempts": 2, - "user_id": 8, - "challenge_id": 7, - "time": 1, - "status": 1, - "challenge_attempt_count": 2, - "tries": 1, - "UNIQUE": 4, - "classes": 4, - "name": 3, - "date_created": 6, - "archive": 2, - "class_challenges": 4, - "class_id": 5, - "class_memberships": 4, - "users": 4, - "username": 3, - "full_name": 2, - "email": 2, - "password": 2, - "joined": 2, - "last_visit": 2, - "is_activated": 2, - "type": 3, - "token": 3, - "user_has_challenge_token": 3, - "DROP": 3, - "create": 2, - "FILIAL": 10, - "NUMBER": 1, - "not": 5, - "null": 4, - "title_ua": 1, - "VARCHAR2": 4, - "title_ru": 1, - "title_eng": 1, - "remove_date": 1, - "DATE": 2, - "modify_date": 1, - "modify_user": 1, - "alter": 1, - "add": 1, - "constraint": 1, - "PK_ID": 1, - "primary": 1, - "key": 1, - "ID": 2, - "grant": 8, - "select": 10, - "on": 8, - "to": 8, - "ATOLL": 1, - "CRAMER2GIS": 1, - "DMS": 1, - "HPSM2GIS": 1, - "PLANMONITOR": 1, - "SIEBEL": 1, - "VBIS": 1, - "VPORTAL": 1, - "SELECT": 4, - "*": 3, - "FROM": 1, - "DBO.SYSOBJECTS": 1, - "WHERE": 1, - "OBJECT_ID": 1, - "N": 7, - "AND": 1, - "OBJECTPROPERTY": 1, - "PROCEDURE": 1, - "dbo.AvailableInSearchSel": 2, - "GO": 4, - "Procedure": 1, - "AvailableInSearchSel": 1, - "AS": 1, - "UNION": 2, - "ALL": 2, - "DB_NAME": 1, - "BEGIN": 1, - "GRANT": 1, - "EXECUTE": 1, - "ON": 1, - "TO": 1, - "[": 1, - "rv": 1, - "]": 1, - "END": 1, - "if": 1, - "exists": 1, - "from": 2, - "sysobjects": 1, - "where": 2, - "and": 1, - "in": 1, - "exec": 1, - "%": 2, - "object_ddl": 1, - "go": 1, - "use": 1, - "translog": 1, - "VIEW": 1, - "suspendedtoday": 2, - "view": 1, - "as": 1, - "suspended": 1, - "datediff": 1, - "now": 1 - }, - "Nemerle": { - "using": 1, - "System.Console": 1, - ";": 2, - "module": 1, - "Program": 1, - "{": 2, - "Main": 1, - "(": 2, - ")": 2, - "void": 1, - "WriteLine": 1, - "}": 2 - }, - "Bluespec": { - "package": 2, - "TL": 6, - ";": 156, - "interface": 2, - "method": 42, - "Action": 17, - "ped_button_push": 4, - "(": 158, - ")": 163, - "set_car_state_N": 2, - "Bool": 32, - "x": 8, - "set_car_state_S": 2, - "set_car_state_E": 2, - "set_car_state_W": 2, - "lampRedNS": 2, - "lampAmberNS": 2, - "lampGreenNS": 2, - "lampRedE": 2, - "lampAmberE": 2, - "lampGreenE": 2, - "lampRedW": 2, - "lampAmberW": 2, - "lampGreenW": 2, - "lampRedPed": 2, - "lampAmberPed": 2, - "lampGreenPed": 2, - "endinterface": 2, - "typedef": 3, - "enum": 1, - "{": 1, - "AllRed": 4, - "GreenNS": 9, - "AmberNS": 5, - "GreenE": 8, - "AmberE": 5, - "GreenW": 8, - "AmberW": 5, - "GreenPed": 4, - "AmberPed": 3, - "}": 1, - "TLstates": 11, - "deriving": 1, - "Eq": 1, - "Bits": 1, - "UInt#": 2, - "Time32": 9, - "CtrSize": 3, - "module": 3, - "sysTL": 3, - "allRedDelay": 2, - "amberDelay": 2, - "nsGreenDelay": 2, - "ewGreenDelay": 3, - "pedGreenDelay": 1, - "pedAmberDelay": 1, - "clocks_per_sec": 2, - "Reg#": 15, - "state": 21, - "<": 44, - "-": 29, - "mkReg": 15, - "next_green": 8, - "secs": 7, - "ped_button_pushed": 4, - "False": 9, - "car_present_N": 3, - "True": 6, - "car_present_S": 3, - "car_present_E": 4, - "car_present_W": 4, - "car_present_NS": 3, - "||": 7, - "cycle_ctr": 6, - "rule": 10, - "dec_cycle_ctr": 1, - "endrule": 10, - "Rules": 5, - "low_priority_rule": 2, - "rules": 4, - "inc_sec": 1, - "+": 7, - "endrules": 4, - "function": 10, - "next_state": 8, - "ns": 4, - "action": 3, - "<=>": 3, - "0": 2, - "endaction": 3, - "endfunction": 7, - "green_seq": 7, - "case": 2, - "return": 9, - "endcase": 2, - "car_present": 4, - "make_from_green_rule": 5, - "green_state": 2, - "delay": 2, - "car_is_present": 2, - "from_green": 1, - "make_from_amber_rule": 5, - "amber_state": 2, - "ng": 2, - "from_amber": 1, - "&&": 3, - "hprs": 10, - "7": 1, - "1": 1, - "2": 1, - "3": 1, - "4": 1, - "5": 1, - "6": 1, - "fromAllRed": 2, - "if": 9, - "else": 4, - "noAction": 1, - "high_priority_rules": 4, - "[": 17, - "]": 17, - "for": 3, - "Integer": 3, - "i": 15, - "rJoin": 1, - "addRules": 1, - "preempts": 1, - "endmethod": 8, - "b": 12, - "endmodule": 3, - "endpackage": 2, - "TbTL": 1, - "import": 1, - "*": 1, - "Lamp": 3, - "changed": 2, - "show_offs": 2, - "show_ons": 2, - "reset": 2, - "mkLamp#": 1, - "String": 1, - "name": 3, - "lamp": 5, - "prev": 5, - "write": 2, - "mkTest": 1, - "let": 1, - "dut": 2, - "Bit#": 1, - "ctr": 8, - "carN": 4, - "carS": 2, - "carE": 2, - "carW": 2, - "lamps": 15, - "mkLamp": 12, - "dut.lampRedNS": 1, - "dut.lampAmberNS": 1, - "dut.lampGreenNS": 1, - "dut.lampRedE": 1, - "dut.lampAmberE": 1, - "dut.lampGreenE": 1, - "dut.lampRedW": 1, - "dut.lampAmberW": 1, - "dut.lampGreenW": 1, - "dut.lampRedPed": 1, - "dut.lampAmberPed": 1, - "dut.lampGreenPed": 1, - "start": 1, - "dumpvars": 1, - "detect_cars": 1, - "dut.set_car_state_N": 1, - "dut.set_car_state_S": 1, - "dut.set_car_state_E": 1, - "dut.set_car_state_W": 1, - "go": 1, - "12_000": 1, - "stop": 1, - "display": 2, - "finish": 1, - "do_offs": 2, - "l": 3, - "l.show_offs": 1, - "do_ons": 2, - "l.show_ons": 1, - "do_reset": 2, - "l.reset": 1, - "do_it": 4, - "f": 2, - "any_changes": 2, - ".changed": 1, - "show": 1, - "time": 1 - }, - "Swift": { - "var": 42, - "n": 5, - "while": 2, - "<": 4, - "{": 77, - "*": 7, - "}": 77, - "m": 5, - "do": 1, - "let": 43, - "optionalSquare": 2, - "Square": 7, - "(": 89, - "sideLength": 17, - "name": 21, - ")": 89, - ".sideLength": 1, - "enum": 4, - "Suit": 2, - "case": 21, - "Spades": 1, - "Hearts": 1, - "Diamonds": 1, - "Clubs": 1, - "func": 24, - "simpleDescription": 14, - "-": 21, - "String": 27, - "switch": 4, - "self": 3, - ".Spades": 2, - "return": 30, - ".Hearts": 1, - ".Diamonds": 1, - ".Clubs": 1, - "hearts": 1, - "Suit.Hearts": 1, - "heartsDescription": 1, - "hearts.simpleDescription": 1, - "interestingNumbers": 2, - "[": 18, - "]": 18, - "largest": 4, - "for": 10, - "kind": 1, - "numbers": 6, - "in": 11, - "number": 13, - "if": 6, - "greet": 2, - "day": 1, - "apples": 1, - "oranges": 1, - "appleSummary": 1, - "fruitSummary": 1, - "struct": 2, - "Card": 2, - "rank": 2, - "Rank": 2, - "suit": 2, - "threeOfSpades": 1, - ".Three": 1, - "threeOfSpadesDescription": 1, - "threeOfSpades.simpleDescription": 1, - "anyCommonElements": 2, - "": 1, - "U": 4, - "where": 2, - "T": 5, - "Sequence": 2, - "GeneratorType": 3, - "Element": 3, - "Equatable": 1, - "lhs": 2, - "rhs": 2, - "Bool": 4, - "lhsItem": 2, - "rhsItem": 2, - "true": 2, - "false": 2, - "Int": 19, - "Ace": 1, - "Two": 1, - "Three": 1, - "Four": 1, - "Five": 1, - "Six": 1, - "Seven": 1, - "Eight": 1, - "Nine": 1, - "Ten": 1, - "Jack": 1, - "Queen": 1, - "King": 1, - ".Ace": 1, - ".Jack": 1, - ".Queen": 1, - ".King": 1, - "default": 2, - "self.toRaw": 1, - "ace": 1, - "Rank.Ace": 1, - "aceRawValue": 1, - "ace.toRaw": 1, - "sort": 1, - "returnFifteen": 2, - "y": 3, - "add": 2, - "+": 15, - "class": 7, - "Shape": 2, - "numberOfSides": 4, - "emptyArray": 1, - "emptyDictionary": 1, - "Dictionary": 1, - "": 1, - "Float": 1, - "println": 1, - "extension": 1, - "ExampleProtocol": 5, - "mutating": 3, - "adjust": 4, - "EquilateralTriangle": 4, - "NamedShape": 3, - "Double": 11, - "init": 4, - "self.sideLength": 2, - "super.init": 2, - "perimeter": 1, - "get": 2, - "set": 1, - "newValue": 1, - "/": 1, - "override": 2, - "triangle": 3, - "triangle.perimeter": 2, - "triangle.sideLength": 2, - "OptionalValue": 2, - "": 1, - "None": 1, - "Some": 1, - "possibleInteger": 2, - "": 1, - ".None": 1, - ".Some": 1, - "SimpleClass": 2, - "anotherProperty": 1, - "a": 2, - "a.adjust": 1, - "aDescription": 1, - "a.simpleDescription": 1, - "SimpleStructure": 2, - "b": 1, - "b.adjust": 1, - "bDescription": 1, - "b.simpleDescription": 1, - "Counter": 2, - "count": 2, - "incrementBy": 1, - "amount": 2, - "numberOfTimes": 2, - "times": 4, - "counter": 1, - "counter.incrementBy": 1, - "getGasPrices": 2, - "myVariable": 2, - "myConstant": 1, - "convertedRank": 1, - "Rank.fromRaw": 1, - "threeDescription": 1, - "convertedRank.simpleDescription": 1, - "protocolValue": 1, - "protocolValue.simpleDescription": 1, - "sumOf": 3, - "Int...": 1, - "sum": 3, - "individualScores": 2, - "teamScore": 4, - "score": 2, - "else": 1, - "vegetable": 2, - "vegetableComment": 4, - "x": 1, - "x.hasSuffix": 1, - "optionalString": 2, - "nil": 1, - "optionalName": 2, - "greeting": 2, - "label": 2, - "width": 2, - "widthLabel": 1, - "shape": 1, - "shape.numberOfSides": 1, - "shapeDescription": 1, - "shape.simpleDescription": 1, - "self.name": 1, - "shoppingList": 3, - "occupations": 2, - "numbers.map": 2, - "result": 5, - "area": 1, - "test": 1, - "test.area": 1, - "test.simpleDescription": 1, - "makeIncrementer": 2, - "addOne": 2, - "increment": 2, - "repeat": 2, - "": 1, - "item": 4, - "ItemType": 3, - "i": 6, - "ServerResponse": 1, - "Result": 1, - "Error": 1, - "success": 2, - "ServerResponse.Result": 1, - "failure": 1, - "ServerResponse.Error": 1, - ".Result": 1, - "sunrise": 1, - "sunset": 1, - "serverResponse": 2, - ".Error": 1, - "error": 1, - "//": 1, - "Went": 1, - "shopping": 1, - "and": 1, - "bought": 1, - "everything.": 1, - "TriangleAndSquare": 2, - "willSet": 2, - "square.sideLength": 1, - "newValue.sideLength": 2, - "square": 2, - "size": 4, - "triangleAndSquare": 1, - "triangleAndSquare.square.sideLength": 1, - "triangleAndSquare.triangle.sideLength": 2, - "triangleAndSquare.square": 1, - "protocol": 1, - "firstForLoop": 3, - "secondForLoop": 3, - ";": 2, - "implicitInteger": 1, - "implicitDouble": 1, - "explicitDouble": 1, - "hasAnyMatches": 2, - "list": 2, - "condition": 2, - "lessThanTen": 2 + "eCtrl.": 2, + "deny": 2, + "a": 1 }, "SourcePawn": { "//#define": 1, @@ -102961,2231 +63145,6 @@ "well": 1, "PushArrayCell": 1 }, - "Propeller Spin": { - "{": 26, - "Vocal": 2, - "Tract": 2, - "v1.1": 8, - "by": 17, - "Chip": 7, - "Gracey": 7, - "Copyright": 10, - "(": 356, - "c": 33, - ")": 356, - "Parallax": 10, - "Inc.": 8, - "October": 1, - "This": 3, - "object": 7, - "synthesizes": 1, - "a": 72, - "human": 1, - "vocal": 10, - "tract": 12, - "in": 53, - "real": 2, - "-": 486, - "time.": 2, - "It": 1, - "requires": 3, - "one": 4, - "cog": 39, - "and": 95, - "at": 26, - "least": 14, - "MHz.": 1, - "The": 17, - "is": 51, - "controlled": 1, - "via": 5, - "single": 2, - "byte": 27, - "parameters": 19, - "which": 16, - "must": 18, - "reside": 1, - "the": 136, - "parent": 1, - "VAR": 10, - "aa": 2, - "ga": 5, - "gp": 2, - "vp": 3, - "vr": 1, - "f1": 4, - "f2": 1, - "f3": 3, - "f4": 2, - "na": 2, - "nf": 2, - "fa": 2, - "ff": 2, - "s": 16, - "values.": 2, - "Before": 1, - "they": 2, - "were": 1, - "left": 12, - "interpolation": 1, - "point": 21, - "shy": 1, - "then": 5, - "set": 42, - "to": 191, - "last": 6, - "frame": 12, - "change": 3, - "makes": 1, - "behave": 1, - "more": 90, - "sensibly": 1, - "during": 2, - "gaps.": 1, - "}": 26, - "CON": 4, - "frame_buffers": 2, - "bytes": 2, - "per": 4, - "frame_longs": 3, - "frame_bytes": 1, - "/": 27, - "longs": 15, - "...must": 1, - "long": 122, - "dira_": 3, - "dirb_": 1, - "ctra_": 1, - "ctrb_": 3, - "frqa_": 3, - "cnt_": 1, - "many": 1, - "...contiguous": 1, - "PUB": 63, - "start": 16, - "tract_ptr": 3, - "pos_pin": 7, - "neg_pin": 6, - "fm_offset": 5, - "okay": 11, - "Start": 6, - "driver": 17, - "starts": 4, - "returns": 6, - "false": 7, - "if": 53, - "no": 7, - "available": 4, - "pointer": 14, - "positive": 1, - "delta": 10, - "modulation": 4, - "pin": 18, - "disable": 7, - "negative": 2, - "also": 1, - "be": 46, - "enabled": 2, - "offset": 14, - "frequency": 18, - "for": 70, - "fm": 6, - "aural": 13, - "subcarrier": 3, - "generation": 2, - "_500_000": 1, - "NTSC": 11, - "Remember": 1, - "If": 2, - "ready": 10, - "output": 11, - "ctrb": 4, - "duty": 2, - "mode": 7, - "[": 35, - "&": 21, - "]": 34, - "|": 22, - "<": 14, - "+": 759, - "F": 18, - "<<": 70, - "Ready": 1, - "frqa": 3, - "value": 51, - "repeat": 18, - "clkfreq": 2, - "Launch": 1, - "return": 15, - "cognew": 4, - "@entry": 3, - "@attenuation": 1, - "stop": 9, - "Stop": 6, - "frees": 6, - "Reset": 1, - "variables": 3, - "buffers": 1, - "longfill": 2, - "@index": 1, - "constant": 3, - "frame_buffer_longs": 2, - "set_attenuation": 1, - "level": 5, - "Set": 5, - "master": 2, - "attenuation": 3, - "initially": 2, - "set_pace": 2, - "percentage": 3, - "pace": 3, - "some": 3, - "go": 1, - "time": 7, - "Queue": 1, - "current": 3, - "transition": 1, - "over": 2, - "actual": 4, - "integer": 2, - "*": 143, - "#": 97, - "see": 2, - "Load": 1, - "into": 19, - "bytemove": 1, - "@frames": 1, - "index": 5, - "Increment": 1, - "full": 3, - "status": 15, - "Returns": 4, - "true": 6, - "parameter": 14, - "queue": 2, - "useful": 2, - "checking": 1, - "would": 1, - "have": 1, - "wait": 6, - "frames": 2, - "empty": 2, - "i": 24, - "detecting": 1, - "when": 3, - "finished": 1, - "from": 21, - "sample_ptr": 1, - "ptr": 5, - "address": 16, - "of": 108, - "receives": 1, - "audio": 1, - "samples": 1, - "signed": 4, - "bit": 35, - "values": 2, - "updated": 1, - "KHz": 3, - "@sample": 1, - "aural_id": 1, - "id": 2, - "executing": 1, - "algorithm": 1, - "connecting": 1, - "broadcast": 19, - "tv": 2, - "with": 8, - "DAT": 7, - "Initialization": 1, - "zero": 10, - "all": 14, - "reserved": 3, - "data": 47, - "add": 92, - "d0": 11, - "djnz": 24, - "clear_cnt": 1, - "mov": 154, - "t1": 139, - "#2*15": 1, - "saves": 2, - "hub": 1, - "memory": 2, - "minst": 3, - "d0s0": 3, - "test": 38, - "#1": 47, - "wc": 57, - "if_c": 37, - "sub": 12, - "#2": 15, - "mult_ret": 1, - "antilog_ret": 1, - "ret": 17, - "assemble": 1, - "cordic": 4, - "steps": 9, - "reserves": 2, - "cstep": 1, - "t2": 90, - "#8": 14, - "write": 36, - "instruction": 2, - "par": 20, - "get": 30, - "center": 10, - "#4": 8, - "prepare": 1, - "initial": 6, - "waitcnt": 3, - "cnt_value": 3, - "cnt_ticks": 3, - "Loop": 1, - "Wait": 2, - "next": 16, - "sample": 2, - "period": 1, - "loop": 14, - "perform": 2, - "sar": 8, - "x": 112, - "update": 7, - "cycle": 1, - "driving": 1, - "h80000000": 2, - "frqb": 2, - "White": 1, - "noise": 3, - "source": 2, - "lfsr": 1, - "lfsr_taps": 2, - "Aspiration": 1, - "vibrato": 3, - "rate": 6, - "shr": 24, - "#10": 2, - "vphase": 2, - "sum": 7, - "glottal": 2, - "pitch": 5, - "divide": 3, - "final": 3, - "mesh": 1, - "multiply": 8, - "%": 162, - "tune": 2, - "convert": 1, - "log": 2, - "phase": 2, - "gphase": 3, - "reset": 14, - "y": 80, - "formant2": 2, - "rotate": 2, - "f2x": 3, - "f2y": 3, - "call": 44, - "#cordic": 2, - "formant4": 2, - "f4x": 3, - "f4y": 3, - "subtract": 1, - "nx": 4, - "negated": 1, - "nasal": 2, - "amplitude": 3, - "#mult": 1, - "negate": 2, - "#3": 7, - "fphase": 4, - "frication": 2, - "#sine": 1, - "Handle": 1, - "jmp": 24, - "or": 43, - "cycles": 4, - "frame_ptr": 6, - "past": 1, - "miscellaneous": 2, - "frame_index": 3, - "stepsize": 2, - "step_size": 5, - "h00FFFFFF": 2, - "wz": 21, - "not": 6, - "final1": 2, - "finali": 2, - "iterate": 3, - "aa..ff": 4, - "jmpret": 5, - "#loop": 9, - "another": 7, - "insure": 2, - "accurate": 1, - "accumulation": 1, - "step_acc": 3, - "movd": 10, - "set2": 3, - "#par_curr": 1, - "set3": 2, - "#par_next": 1, - "set4": 3, - "#par_step": 1, - "new": 6, - "shl": 21, - "#24": 1, - "par_curr": 3, - "make": 16, - "absolute": 1, - "msb": 2, - "rcl": 2, - "vscl": 12, - "nr": 1, - "step": 9, - "size": 5, - "mult": 2, - "negnz": 3, - "par_step": 1, - "pointers": 2, - "frame_cnt": 2, - "step1": 2, - "stepi": 1, - "check": 5, - "done": 3, - "if_nc": 15, - "stepframe": 1, - "signal": 8, - "wrlong": 6, - "#frame_bytes": 1, - "par_next": 2, - "used": 9, - "Math": 1, - "Subroutines": 1, - "Antilog": 1, - "top": 10, - "bits": 29, - "whole": 2, - "number": 27, - "fraction": 1, - "out": 24, - "antilog": 2, - "FFEA0000": 1, - "#16": 6, - "position": 9, - "h00000FFE": 2, - "table": 9, - "base": 6, - "rdword": 10, - "insert": 2, - "leading": 1, - "Scaled": 1, - "sine": 7, - "unsigned": 3, - "scale": 7, - "angle": 23, - "h00001000": 2, - "quadrant": 3, - "negc": 1, - "read": 29, - "word": 212, - "justify": 4, - "result": 6, - "Multiply": 1, - "multiplier": 3, - "#15": 1, - "do": 26, - "mult_step": 1, - "Cordic": 1, - "rotation": 3, - "degree": 1, - "first": 9, - "#cordic_steps": 1, - "that": 10, - "gets": 1, - "assembled": 1, - "x13": 2, - "cordic_dx": 1, - "incremented": 1, - "each": 11, - "sumnc": 7, - "sumc": 4, - "cordic_a": 1, - "cordic_delta": 2, - "linear": 1, - "feedback": 2, - "shift": 7, - "register": 1, - "B901476": 1, - "constants": 2, - "greater": 1, - "than": 5, - "h40000000": 1, - "h01000000": 1, - "FFFFFF": 1, - "h00010000": 1, - "h0000D000": 1, - "D000": 1, - "h00007000": 1, - "FFE": 1, - "h00000800": 1, - "registers": 2, - "clear": 5, - "on": 12, - "startup": 2, - "Undefined": 2, - "Data": 1, - "zeroed": 1, - "initialization": 2, - "code": 3, - "cleared": 1, - "res": 89, - "f1x": 1, - "f1y": 1, - "f3x": 1, - "f3y": 1, - "aspiration": 1, - "***": 1, - "mult_steps": 1, - "assembly": 1, - "area": 1, - "w/ret": 1, - "cordic_ret": 1, - "TERMS": 9, - "OF": 49, - "USE": 19, - "MIT": 9, - "License": 9, - "Permission": 9, - "hereby": 9, - "granted": 9, - "free": 10, - "charge": 10, - "any": 15, - "person": 9, - "obtaining": 9, - "copy": 21, - "this": 26, - "software": 9, - "associated": 11, - "documentation": 9, - "files": 9, - "deal": 9, - "Software": 28, - "without": 19, - "restriction": 9, - "including": 9, - "limitation": 9, - "rights": 9, - "use": 19, - "modify": 9, - "merge": 9, - "publish": 9, - "distribute": 9, - "sublicense": 9, - "and/or": 9, - "sell": 9, - "copies": 18, - "permit": 9, - "persons": 9, - "whom": 9, - "furnished": 9, - "so": 11, - "subject": 9, - "following": 9, - "conditions": 9, - "above": 11, - "copyright": 9, - "notice": 18, - "permission": 9, - "shall": 9, - "included": 9, - "substantial": 9, - "portions": 9, - "Software.": 9, - "THE": 59, - "SOFTWARE": 19, - "IS": 10, - "PROVIDED": 9, - "WITHOUT": 10, - "WARRANTY": 10, - "ANY": 20, - "KIND": 10, - "EXPRESS": 10, - "OR": 70, - "IMPLIED": 10, - "INCLUDING": 10, - "BUT": 10, - "NOT": 11, - "LIMITED": 10, - "TO": 10, - "WARRANTIES": 10, - "MERCHANTABILITY": 10, - "FITNESS": 10, - "FOR": 20, - "A": 21, - "PARTICULAR": 10, - "PURPOSE": 10, - "AND": 10, - "NONINFRINGEMENT.": 10, - "IN": 40, - "NO": 10, - "EVENT": 10, - "SHALL": 10, - "AUTHORS": 10, - "COPYRIGHT": 10, - "HOLDERS": 10, - "BE": 10, - "LIABLE": 10, - "CLAIM": 10, - "DAMAGES": 10, - "OTHER": 20, - "LIABILITY": 10, - "WHETHER": 10, - "AN": 10, - "ACTION": 10, - "CONTRACT": 10, - "TORT": 10, - "OTHERWISE": 10, - "ARISING": 10, - "FROM": 10, - "OUT": 10, - "CONNECTION": 10, - "WITH": 10, - "DEALINGS": 10, - "SOFTWARE.": 10, - "****************************************": 4, - "Debug_Lcd": 1, - "v1.2": 2, - "Authors": 1, - "Jon": 2, - "Williams": 2, - "Jeff": 2, - "Martin": 2, - "See": 10, - "end": 12, - "file": 9, - "terms": 9, - "use.": 9, - "Debugging": 1, - "wrapper": 1, - "Serial_Lcd": 1, - "March": 1, - "Updated": 4, - "conform": 1, - "Propeller": 3, - "standards.": 1, - "April": 1, - "consistency.": 1, - "OBJ": 2, - "lcd": 2, - "string": 8, - "conversion": 1, - "init": 2, - "baud": 2, - "lines": 24, - "Initializes": 1, - "serial": 1, - "LCD": 4, - "lcd.init": 1, - "finalize": 1, - "Finalizes": 1, - "floats": 1, - "lcd.finalize": 1, - "putc": 1, - "txbyte": 2, - "Send": 1, - "terminal": 4, - "lcd.putc": 1, - "str": 3, - "strAddr": 2, - "Print": 15, - "terminated": 4, - "lcd.str": 8, - "dec": 3, - "decimal": 5, - "num.dec": 1, - "decf": 1, - "width": 9, - "Prints": 2, - "space": 1, - "padded": 2, - "fixed": 1, - "field": 4, - "num.decf": 1, - "decx": 1, - "digits": 23, - "num.decx": 1, - "hex": 3, - "hexadecimal": 4, - "num.hex": 1, - "ihex": 1, - "an": 12, - "indicated": 2, - "num.ihex": 1, - "bin": 3, - "binary": 4, - "num.bin": 1, - "ibin": 1, - "num.ibin": 1, - "cls": 1, - "Clears": 2, - "moves": 1, - "cursor": 9, - "home": 4, - "lcd.cls": 1, - "Moves": 2, - "lcd.home": 1, - "gotoxy": 1, - "col": 9, - "line": 33, - "col/line": 1, - "lcd.gotoxy": 1, - "clrln": 1, - "lcd.clrln": 1, - "type": 4, - "Selects": 1, - "off": 8, - "blink": 4, - "lcd.cursor": 1, - "display": 23, - "Controls": 1, - "visibility": 1, - ";": 2, - "hide": 1, - "contents": 3, - "clearing": 1, - "lcd.displayOn": 1, - "else": 3, - "lcd.displayOff": 1, - "custom": 2, - "char": 2, - "chrDataAddr": 3, - "Installs": 1, - "character": 6, - "map": 1, - "definition": 9, - "array": 1, - "lcd.custom": 1, - "backLight": 1, - "Enable": 1, - "backlight": 1, - "affects": 1, - "only": 63, - "backlit": 1, - "models": 1, - "lcd.backLight": 1, - "***************************************": 12, - "VGA": 8, - "Driver": 4, - "Author": 8, - "May": 2, - "pixel": 40, - "tile": 41, - "can": 4, - "now": 3, - "enable": 5, - "efficient": 2, - "vga_mode": 3, - "colortable": 7, - "inside": 2, - "vgaptr": 3, - "cogstop": 3, - "Assembly": 2, - "language": 2, - "Entry": 2, - "tasks": 6, - "Superfield": 2, - "hv": 5, - "interlace": 20, - "#0": 20, - "nz": 3, - "visible": 7, - "back": 8, - "porch": 9, - "vb": 2, - "bcolor": 3, - "#colortable": 2, - "#blank_line": 3, - "nobl": 1, - "screen": 13, - "_screen": 3, - "vertical": 29, - "tiles": 19, - "vx": 2, - "_vx": 1, - "skip": 5, - "if_nz": 18, - "tjz": 8, - "hb": 2, - "nobp": 1, - "horizontal": 21, - "hx": 5, - "pixels": 14, - "rdlong": 16, - "colors": 18, - "color": 39, - "pass": 5, - "video": 7, - "repoint": 2, - "same": 7, - "hf": 2, - "nofp": 1, - "hsync": 5, - "#blank_hsync": 1, - "expand": 3, - "ror": 4, - "linerot": 5, - "front": 4, - "vf": 1, - "nofl": 1, - "xor": 8, - "unless": 2, - "field1": 4, - "invisible": 8, - "taskptr": 3, - "#tasks": 1, - "before": 1, - "after": 2, - "_vs": 2, - "except": 1, - "#blank_vsync": 1, - "#field": 1, - "superfield": 1, - "blank_vsync": 1, - "cmp": 16, - "blank": 2, - "vsync": 4, - "h2": 2, - "if_c_and_nz": 1, - "waitvid": 3, - "task": 2, - "section": 4, - "z": 4, - "undisturbed": 2, - "blank_hsync": 1, - "_hf": 1, - "invisble": 1, - "sync": 10, - "_hb": 1, - "#hv": 1, - "blank_hsync_ret": 1, - "blank_line_ret": 1, - "blank_vsync_ret": 1, - "_status": 1, - "#paramcount": 1, - "load": 3, - "pins": 26, - "directions": 1, - "_pins": 4, - "_enable": 2, - "#disabled": 2, - "break": 6, - "later": 6, - "min": 4, - "_rate": 3, - "pllmin": 1, - "_011": 1, - "adjust": 4, - "within": 5, - "MHz": 16, - "hvbase": 5, - "muxnc": 5, - "vmask": 1, - "_mode": 7, - "hmask": 1, - "_hx": 4, - "_vt": 3, - "consider": 2, - "muxc": 5, - "lineadd": 4, - "lineinc": 3, - "movi": 3, - "vcfg": 2, - "_000": 5, - "/160": 2, - "#13": 3, - "times": 3, - "loaded": 3, - "#9": 2, - "FC": 2, - "_colors": 2, - "colormask": 1, - "andn": 7, - "d6": 3, - "keep": 2, - "loading": 2, - "multiply_ret": 2, - "Disabled": 2, - "nap": 5, - "ms": 4, - "try": 2, - "again": 2, - "ctra": 5, - "disabled": 3, - "cnt": 2, - "#entry": 1, - "Initialized": 1, - "pll": 5, - "lowest": 1, - "pllmax": 1, - "_000_000": 6, - "*16": 1, - "vco": 3, - "max": 6, - "m4": 1, - "Uninitialized": 3, - "taskret": 4, - "Parameter": 4, - "buffer": 4, - "/non": 4, - "tihv": 1, - "@long": 2, - "_ht": 2, - "_ho": 2, - "_hd": 1, - "_hs": 1, - "_vd": 1, - "fit": 2, - "underneath": 1, - "BF": 1, - "___": 1, - "/1/2": 1, - "off/visible/invisible": 1, - "vga_enable": 3, - "pppttt": 1, - "words": 5, - "vga_colors": 2, - "vga_vt": 6, - "expansion": 8, - "vga_vx": 4, - "vga_vo": 4, - "ticks": 11, - "vga_hf": 2, - "vga_hb": 2, - "vga_vf": 2, - "vga_vb": 2, - "tick": 2, - "Hz": 5, - "preceding": 2, - "may": 6, - "copied": 2, - "your": 2, - "code.": 2, - "After": 2, - "setting": 2, - "@vga_status": 1, - "driver.": 3, - "All": 2, - "are": 18, - "reloaded": 2, - "superframe": 2, - "allowing": 2, - "you": 5, - "live": 2, - "changes.": 2, - "To": 3, - "minimize": 2, - "flicker": 5, - "correlate": 2, - "changes": 3, - "vga_status.": 1, - "Experimentation": 2, - "required": 4, - "optimize": 2, - "parameters.": 2, - "descriptions": 2, - "__________": 4, - "vga_status": 1, - "sets": 3, - "indicate": 2, - "CLKFREQ": 10, - "currently": 4, - "outputting": 4, - "will": 12, - "driven": 2, - "low": 5, - "reduces": 2, - "power": 3, - "non": 3, - "________": 3, - "vga_pins": 1, - "select": 9, - "group": 7, - "example": 3, - "selects": 4, - "between": 4, - "x16": 7, - "x32": 6, - "tileheight": 4, - "controls": 4, - "progressive": 2, - "scan": 7, - "less": 5, - "good": 5, - "motion": 2, - "monitors": 1, - "interlaced": 5, - "allows": 1, - "double": 2, - "text": 9, - "polarity": 1, - "respectively": 1, - "active": 3, - "high": 7, - "vga_screen": 1, - "define": 10, - "right": 9, - "bottom": 5, - "vga_ht": 3, - "has": 4, - "two": 6, - "bitfields": 2, - "colorset": 2, - "pixelgroup": 2, - "colorset*": 2, - "pixelgroup**": 2, - "ppppppppppcccc00": 2, - "p": 8, - "colorsets": 4, - "four": 8, - "**": 2, - "pixelgroups": 2, - "": 5, - "up": 4, - "fields": 2, - "t": 10, - "care": 1, - "it": 8, - "suggested": 1, - "bits/pins": 3, - "red": 2, - "green": 1, - "blue": 3, - "bit/pin": 1, - "ohm": 10, - "resistors": 4, - "form": 7, - "V": 7, - "signals": 1, - "connect": 3, - "RED": 1, - "GREEN": 2, - "BLUE": 1, - "connector": 3, - "always": 2, - "HSYNC": 1, - "resistor": 4, - "VSYNC": 1, - "______": 14, - "vga_hx": 3, - "factor": 4, - "sure": 4, - "||": 5, - "vga_ho": 2, - "equal": 1, - "vga_hd": 2, - "does": 2, - "exceed": 1, - "vga_vd": 2, - "pos/neg": 4, - "recommended": 2, - "shifts": 4, - "right/left": 2, - "up/down": 2, - "vga_hs": 1, - "vga_vs": 1, - "vga_rate": 2, - "limit": 4, - "should": 1, - "Graphics": 3, - "v1.0": 4, - "Theory": 1, - "Operation": 2, - "launched": 1, - "processes": 1, - "commands": 1, - "routines.": 1, - "Points": 1, - "arcs": 1, - "sprites": 1, - "polygons": 1, - "rasterized": 1, - "specified": 1, - "stretch": 1, - "serves": 1, - "as": 8, - "generic": 1, - "bitmap": 15, - "buffer.": 1, - "displayed": 1, - "TV.SRC": 1, - "VGA.SRC": 1, - "GRAPHICS_DEMO.SRC": 1, - "usage": 1, - "example.": 1, - "_setup": 1, - "_color": 2, - "_width": 2, - "_plot": 2, - "_line": 2, - "_arc": 2, - "_vec": 2, - "_vecarc": 2, - "_pix": 1, - "_pixarc": 1, - "_text": 2, - "_textarc": 1, - "_textmode": 2, - "_fill": 1, - "_loop": 5, - "command": 7, - "bitmap_base": 7, - "slices": 3, - "text_xs": 1, - "text_ys": 1, - "text_sp": 1, - "text_just": 1, - "font": 3, - "instances": 1, - "@loop": 1, - "@command": 1, - "graphics": 4, - "setup": 3, - "x_tiles": 9, - "y_tiles": 9, - "x_origin": 2, - "y_origin": 2, - "base_ptr": 3, - "bases_ptr": 3, - "slices_ptr": 1, - "relative": 2, - "setcommand": 13, - "bases": 2, - "retain": 2, - "bitmap_longs": 1, - "Clear": 2, - "dest_ptr": 2, - "Copy": 1, - "buffered": 1, - "destination": 1, - "pattern": 2, - "@colors": 2, - "determine": 2, - "shape/width": 2, - "w": 8, - "pixel_width": 1, - "pixel_passes": 2, - "@w": 1, - "E": 7, - "r": 4, - "colorwidth": 1, - "plot": 17, - "Plot": 3, - "@x": 6, - "Draw": 7, - "endpoint": 1, - "arc": 21, - "xr": 7, - "yr": 7, - "anglestep": 2, - "arcmode": 2, - "radii": 3, - "FFF": 3, - "..359.956": 3, - "just": 2, - "leaves": 1, - "points": 2, - "vec": 1, - "vecscale": 5, - "vecangle": 5, - "vecdef_ptr": 5, - "vector": 12, - "sprite": 14, - "Vector": 2, - "length": 4, - "...": 5, - "vecarc": 2, - "pix": 3, - "pixrot": 3, - "pixdef_ptr": 3, - "mirror": 1, - "Pixel": 1, - "draw": 5, - "textarc": 1, - "string_ptr": 6, - "justx": 2, - "justy": 3, - "necessary": 1, - ".finish": 1, - "immediately": 1, - "afterwards": 1, - "prevent": 1, - "subsequent": 1, - "clobbering": 1, - "being": 2, - "drawn": 1, - "@justx": 1, - "@x_scale": 1, - "half": 2, - "pmin": 1, - "round/square": 1, - "corners": 1, - "y2": 7, - "x2": 6, - "fill": 3, - "pmax": 2, - "triangle": 3, - "sides": 1, - "polygon": 1, - "tri": 2, - "x3": 4, - "y3": 5, - "x4": 4, - "y4": 1, - "x1": 5, - "y1": 7, - "xy": 1, - "solid": 1, - "finish": 2, - "safe": 1, - "manually": 1, - "manipulate": 1, - "while": 5, - "primitives": 1, - "xa0": 53, - "ya1": 3, - "ya2": 1, - "ya3": 2, - "ya4": 40, - "ya5": 3, - "ya6": 21, - "ya7": 9, - "ya8": 19, - "ya9": 5, - "yaA": 18, - "yaB": 4, - "yaC": 12, - "yaD": 4, - "yaE": 1, - "yaF": 1, - "xb0": 19, - "yb1": 2, - "yb2": 1, - "yb3": 4, - "yb4": 15, - "yb5": 2, - "yb6": 7, - "yb7": 3, - "yb8": 20, - "yb9": 5, - "ybA": 8, - "ybB": 1, - "ybC": 32, - "ybD": 1, - "ybE": 1, - "ybF": 1, - "ax1": 11, - "radius": 2, - "ay2": 23, - "ay3": 6, - "ay4": 4, - "a0": 8, - "a2": 1, - "farc": 41, - "arc/line": 1, - "Round": 1, - "recipes": 1, - "C": 11, - "D": 18, - "fline": 88, - "xa2": 48, - "xb2": 26, - "xa1": 8, - "xb1": 2, - "xa3": 8, - "xb3": 6, - "xb4": 35, - "a9": 3, - "ax2": 30, - "ay1": 10, - "a7": 2, - "aE": 1, - "aC": 2, - ".": 2, - "aF": 4, - "aD": 3, - "aB": 2, - "xa4": 13, - "a8": 8, - "@": 1, - "a4": 3, - "B": 15, - "H": 1, - "J": 1, - "L": 5, - "N": 1, - "P": 6, - "R": 3, - "T": 5, - "aA": 5, - "X": 4, - "Z": 1, - "b": 1, - "d": 2, - "f": 2, - "h": 2, - "j": 2, - "l": 2, - "n": 4, - "v": 1, - "bullet": 1, - "fx": 1, - "*************************************": 2, - "org": 2, - "arguments": 1, - "t3": 10, - "arg": 3, - "arg0": 12, - "dx": 20, - "dy": 15, - "arg1": 3, - "jump": 1, - "jumps": 6, - "color_": 1, - "plot_": 2, - "arc_": 2, - "vecarc_": 1, - "pixarc_": 1, - "textarc_": 2, - "fill_": 1, - "setup_": 1, - "xlongs": 4, - "xorigin": 2, - "yorigin": 4, - "arg3": 12, - "basesptr": 4, - "arg5": 6, - "width_": 1, - "pwidth": 3, - "passes": 3, - "#plotd": 3, - "line_": 1, - "#linepd": 2, - "arg7": 6, - "exit": 5, - "px": 14, - "py": 11, - "if_z": 11, - "#plotp": 3, - "arg4": 5, - "iterations": 1, - "vecdef": 1, - "t7": 8, - "add/sub": 1, - "to/from": 1, - "t6": 7, - "#multiply": 2, - "round": 1, - "/2": 1, - "lsb": 1, - "t4": 7, - "h8000": 5, - "xwords": 1, - "ywords": 1, - "xxxxxxxx": 2, - "save": 1, - "sy": 5, - "rdbyte": 3, - "origin": 1, - "neg": 2, - "arg2": 7, - "yline": 1, - "sx": 4, - "t5": 4, - "xpixel": 2, - "rol": 1, - "pcolor": 5, - "color1": 2, - "color2": 2, - "@string": 1, - "#arcmod": 1, - "text_": 1, - "chr": 4, - "def": 2, - "extract": 4, - "_0001_1": 1, - "#fontb": 3, - "textsy": 2, - "starting": 1, - "_0011_0": 1, - "#11": 1, - "#arcd": 1, - "#fontxy": 1, - "advance": 2, - "textsx": 3, - "_0111_0": 1, - "setd_ret": 1, - "fontxy_ret": 1, - "fontb": 1, - "fontb_ret": 1, - "textmode_": 1, - "textsp": 2, - "da": 1, - "db": 1, - "db2": 1, - "linechange": 1, - "lines_minus_1": 1, - "fractions": 1, - "pre": 1, - "increment": 1, - "counter": 1, - "yloop": 2, - "integers": 1, - "base0": 17, - "base1": 10, - "cmps": 3, - "range": 2, - "ylongs": 6, - "mins": 1, - "mask": 3, - "mask0": 8, - "#5": 2, - "count": 4, - "mask1": 6, - "bits0": 6, - "bits1": 5, - "deltas": 1, - "linepd": 1, - "wr": 2, - "direction": 2, - "abs": 1, - "dominant": 2, - "axis": 1, - "ratio": 1, - "xloop": 1, - "linepd_ret": 1, - "plotd": 1, - "wide": 3, - "bounds": 2, - "#plotp_ret": 2, - "#7": 2, - "store": 1, - "writes": 1, - "pair": 1, - "account": 1, - "special": 1, - "case": 5, - "slice": 7, - "shift0": 1, - "colorize": 1, - "upper": 2, - "subx": 1, - "#wslice": 1, - "Get": 2, - "args": 5, - "move": 2, - "using": 1, - "arg6": 1, - "arcmod_ret": 1, - "arg2/t4": 1, - "arg4/t6": 1, - "arcd": 1, - "#setd": 1, - "#polarx": 1, - "Polar": 1, - "cartesian": 1, - "polarx": 1, - "sine_90": 2, - "sine_table": 1, - "sine/cosine": 1, - "sine_180": 1, - "shifted": 1, - "product": 1, - "Defined": 1, - "hFFFFFFFF": 1, - "FFFFFFFF": 1, - "fontptr": 1, - "temps": 1, - "slicesptr": 1, - "line/plot": 1, - "coordinates": 1, - "TV": 9, - "Text": 1, - "cols": 5, - "rows": 4, - "screensize": 4, - "lastrow": 2, - "tv_count": 2, - "row": 4, - "flag": 5, - "tv_status": 4, - "off/on": 3, - "tv_pins": 5, - "tccip": 3, - "chroma": 19, - "ntsc/pal": 3, - "tv_screen": 5, - "tv_ht": 5, - "tv_hx": 5, - "tv_ho": 5, - "tv_broadcast": 4, - "basepin": 3, - "setcolors": 2, - "@palette": 1, - "longmove": 2, - "@tv_status": 3, - "@tv_params": 1, - "@screen": 3, - "tv_colors": 2, - "tv.start": 1, - "tv.stop": 2, - "stringptr": 3, - "strsize": 2, - "_000_000_000": 2, - "//": 4, - "elseif": 2, - "lookupz": 2, - "..": 4, - "k": 1, - "Output": 1, - "backspace": 1, - "tab": 3, - "spaces": 1, - "follows": 4, - "Y": 2, - "others": 1, - "printable": 1, - "characters": 1, - "wordfill": 2, - "print": 2, - "A..": 1, - "newline": 3, - "other": 1, - "colorptr": 2, - "fore": 3, - "Override": 1, - "default": 1, - "palette": 2, - "list": 1, - "arranged": 3, - "scroll": 1, - "hc": 1, - "ho": 1, - "white": 2, - "dark": 2, - "BB": 1, - "yellow": 1, - "brown": 1, - "cyan": 3, - "pink": 1, - "Terminal": 1, - "REVISION": 2, - "HISTORY": 2, - "/15/2006": 2, - "instead": 1, - "method": 2, - "minimum": 2, - "x_scale": 4, - "x_spacing": 4, - "normal": 1, - "x_chr": 2, - "y_chr": 5, - "y_scale": 3, - "y_spacing": 3, - "y_offset": 2, - "x_limit": 2, - "x_screen": 1, - "y_limit": 3, - "y_screen": 4, - "y_max": 3, - "y_screen_bytes": 2, - "y_scroll": 2, - "y_scroll_longs": 4, - "y_clear": 2, - "y_clear_longs": 2, - "paramcount": 1, - "ccinp": 1, - "swap": 2, - "tv_hc": 1, - "cells": 1, - "cell": 1, - "@bitmap": 1, - "FC0": 1, - "gr.start": 2, - "gr.setup": 2, - "gr.textmode": 1, - "gr.width": 1, - "gr.stop": 1, - "schemes": 1, - "gr.color": 1, - "gr.text": 1, - "@c": 1, - "gr.finish": 2, - "PRI": 1, - "tvparams": 1, - "tvparams_pins": 1, - "_0101": 1, - "vc": 1, - "vo": 1, - "_250_000": 2, - "auralcog": 1, - "color_schemes": 1, - "BC_6C_05_02": 1, - "E_0D_0C_0A": 1, - "E_6D_6C_6A": 1, - "BE_BD_BC_BA": 1, - "*****************************************": 4, - "Inductive": 1, - "Sensor": 1, - "Demo": 1, - "Beau": 2, - "Schwabe": 2, - "Test": 2, - "Circuit": 1, - "pF": 1, - "K": 4, - "M": 1, - "FPin": 2, - "SDF": 1, - "sigma": 3, - "SDI": 1, - "input": 2, - "GND": 4, - "Coils": 1, - "Wire": 1, - "was": 2, - "about": 4, - "gauge": 1, - "Coke": 3, - "Can": 3, - "BIC": 1, - "pen": 1, - "How": 1, - "work": 2, - "Note": 1, - "reported": 2, - "resonate": 5, - "LC": 8, - "frequency.": 2, - "Instead": 1, - "where": 2, - "voltage": 5, - "produced": 1, - "circuit": 5, - "clipped.": 1, - "In": 2, - "below": 4, - "When": 1, - "apply": 1, - "small": 1, - "specific": 1, - "near": 1, - "uncommon": 1, - "measure": 1, - "amount": 1, - "applying": 1, - "circuit.": 1, - "through": 1, - "diode": 2, - "basically": 1, - "feeds": 1, - "divider": 1, - "...So": 1, - "order": 1, - "ADC": 2, - "sweep": 2, - "needs": 1, - "generate": 1, - "Volts": 1, - "ground.": 1, - "drop": 1, - "across": 1, - "since": 1, - "sensitive": 1, - "works": 1, - "divider.": 1, - "typical": 1, - "magnitude": 1, - "applied": 2, - "might": 1, - "look": 2, - "something": 1, - "like": 4, - "*****": 4, - "...With": 1, - "looks": 1, - "X****": 1, - "...The": 1, - "denotes": 1, - "location": 1, - "reason": 1, - "slightly": 1, - "reasons": 1, - "really.": 1, - "lazy": 1, - "I": 1, - "didn": 1, - "acts": 1, - "dead": 1, - "short.": 1, - "situation": 1, - "exactly": 1, - "great": 1, - "I/O": 3, - "FindResonateFrequency": 1, - "DisplayInductorValue": 2, - "Freq.Synth": 1, - "FValue": 1, - "ADC.SigmaDelta": 1, - "@FTemp": 1, - "gr.clear": 1, - "gr.copy": 2, - "display_base": 2, - "Option": 2, - "*********************************************": 2, - "Frequency": 1, - "LowerFrequency": 2, - "*100/": 1, - "UpperFrequency": 1, - "gr.colorwidth": 4, - "gr.plot": 3, - "gr.line": 3, - "FTemp/1024": 1, - "Finish": 1, - "tv_mode": 2, - "lntsc": 3, - "fpal": 2, - "_433_618": 2, - "PAL": 10, - "spal": 3, - "tvptr": 3, - "vinv": 2, - "burst": 2, - "sync_high2": 2, - "black": 2, - "leftmost": 1, - "vert": 1, - "movs": 9, - "if_z_eq_c": 1, - "#hsync": 1, - "pulses": 2, - "vsync1": 2, - "#sync_low1": 1, - "hhalf": 2, - "field2": 1, - "#superfield": 1, - "Blank": 1, - "Horizontal": 1, - "pal": 2, - "toggle": 1, - "phaseflip": 4, - "phasemask": 2, - "sync_scale1": 1, - "hsync_ret": 1, - "vsync_high": 1, - "#sync_high1": 1, - "Tasks": 1, - "performed": 1, - "sections": 1, - "#_enable": 1, - "rd": 1, - "#wtab": 1, - "ltab": 1, - "#ltab": 1, - "cancel": 1, - "_broadcast": 4, - "m8": 3, - "fcolor": 4, - "#divide": 2, - "_111": 1, - "m128": 2, - "_100": 1, - "_001": 1, - "broadcast/baseband": 1, - "strip": 3, - "baseband": 18, - "_auralcog": 1, - "colorreg": 3, - "colorloop": 1, - "m1": 4, - "outa": 2, - "reload": 1, - "d0s1": 1, - "F0F0F0F0": 1, - "pins0": 1, - "_01110000_00001111_00000111": 1, - "pins1": 1, - "_11110111_01111111_01110111": 1, - "sync_high1": 1, - "_101010_0101": 1, - "NTSC/PAL": 2, - "metrics": 1, - "tables": 1, - "wtab": 1, - "sntsc": 3, - "lpal": 3, - "hrest": 2, - "vvis": 2, - "vrep": 2, - "_8A": 1, - "_AA": 1, - "sync_scale2": 1, - "_00000000_01_10101010101010_0101": 1, - "m2": 1, - "contiguous": 1, - "tv_status.": 1, - "_________": 5, - "tv_enable": 2, - "requirement": 2, - "_______": 2, - "_0111": 6, - "_1111": 6, - "_0000": 4, - "nibble": 4, - "attach": 1, - "/560/1100": 2, - "network": 1, - "visual": 1, - "carrier": 1, - "mixing": 2, - "mix": 2, - "black/white": 2, - "composite": 1, - "doubles": 1, - "format": 1, - "_318_180": 1, - "_579_545": 1, - "_734_472": 1, - "itself": 1, - "tv_vt": 3, - "valid": 2, - "luminance": 2, - "adds/subtracts": 1, - "beware": 1, - "modulated": 1, - "produce": 1, - "saturated": 1, - "toggling": 1, - "levels": 1, - "because": 1, - "abruptly": 1, - "rather": 1, - "against": 1, - "background": 1, - "best": 1, - "appearance": 1, - "_____": 6, - "practical": 2, - "/30": 1, - "tv_vx": 2, - "tv_vo": 2, - "centered": 2, - "image": 2, - "____________": 1, - "expressed": 1, - "ie": 1, - "channel": 1, - "modulator": 2, - "turned": 2, - "broadcasting": 1, - "___________": 1, - "tv_auralcog": 1, - "supply": 1, - "uses": 2, - "selected": 1, - "bandwidth": 2, - "vary": 1, - "PS/2": 1, - "Keyboard": 1, - "v1.0.1": 2, - "Tool": 1, - "par_tail": 1, - "key": 4, - "head": 1, - "par_present": 1, - "states": 1, - "par_keys": 1, - "******************************************": 2, - "entry": 1, - "#_dpin": 1, - "masks": 1, - "dmask": 4, - "_dpin": 3, - "cmask": 2, - "_cpin": 2, - "_head": 6, - "dira": 3, - "_present/_states": 1, - "dlsb": 2, - "stat": 6, - "Update": 1, - "_head/_present/_states": 1, - "#1*4": 1, - "scancode": 2, - "state": 2, - "#receive": 1, - "AA": 1, - "extended": 1, - "if_nc_and_z": 2, - "F0": 3, - "unknown": 2, - "ignore": 2, - "#newcode": 1, - "_states": 2, - "set/clear": 1, - "#_states": 1, - "reg": 5, - "cmpsub": 4, - "shift/ctrl/alt/win": 1, - "pairs": 1, - "E0": 1, - "handle": 1, - "scrlock/capslock/numlock": 1, - "_locks": 5, - "#29": 1, - "configure": 3, - "leds": 3, - "shift1": 1, - "if_nz_and_c": 4, - "#@shift1": 1, - "@table": 1, - "#look": 1, - "alpha": 1, - "considering": 1, - "capslock": 1, - "if_nz_and_nc": 1, - "flags": 1, - "alt": 1, - "room": 1, - "enter": 1, - "FF": 3, - "#11*4": 1, - "wrword": 1, - "F3": 1, - "keyboard": 3, - "lock": 1, - "#transmit": 2, - "rev": 1, - "_present": 2, - "#update": 1, - "Lookup": 2, - "lookup": 1, - "#table": 1, - "#27": 1, - "#rand": 1, - "Transmit": 1, - "pull": 2, - "clock": 4, - "napshr": 3, - "#18": 2, - "release": 1, - "transmit_bit": 1, - "#wait_c0": 2, - "_d2": 1, - "wcond": 3, - "c1": 2, - "c0d0": 2, - "until": 3, - "#wait": 2, - "#receive_ack": 1, - "ack": 1, - "error": 1, - "#reset": 2, - "transmit_ret": 1, - "receive": 1, - "receive_bit": 1, - "pause": 1, - "us": 1, - "#nap": 1, - "_d3": 1, - "ina": 3, - "#receive_bit": 1, - "align": 1, - "isolate": 1, - "look_ret": 1, - "receive_ack_ret": 1, - "receive_ret": 1, - "wait_c0": 1, - "c0": 1, - "timeout": 1, - "wloop": 1, - "_d4": 1, - "replaced": 1, - "c0/c1/c0d0/c1d1": 1, - "if_never": 1, - "replacements": 1, - "#wloop": 3, - "if_c_or_nz": 1, - "c1d1": 1, - "if_nc_or_z": 1, - "scales": 1, - "snag": 1, - "elapses": 1, - "nap_ret": 1, - "F9": 1, - "F5": 1, - "D2": 1, - "F1": 2, - "D1": 1, - "F12": 1, - "F10": 1, - "D7": 1, - "F6": 1, - "D3": 1, - "Tab": 2, - "Alt": 2, - "F3F2": 1, - "q": 1, - "Win": 2, - "Space": 2, - "Apps": 1, - "Power": 1, - "Sleep": 1, - "EF2F": 1, - "CapsLock": 1, - "Enter": 3, - "WakeUp": 1, - "BackSpace": 1, - "C5E1": 1, - "C0E4": 1, - "Home": 1, - "Insert": 1, - "C9EA": 1, - "Down": 1, - "E5": 1, - "Right": 1, - "C2E8": 1, - "Esc": 1, - "DF": 2, - "F11": 1, - "EC": 1, - "PageDn": 1, - "ED": 1, - "PrScr": 1, - "C6E9": 1, - "ScrLock": 1, - "D6": 1, - "Key": 1, - "Codes": 1, - "keypress": 1, - "keystate": 2, - "E0..FF": 1, - "AS": 1, - "Keypad": 1, - "Reader": 1, - "capacitive": 1, - "PIN": 1, - "approach": 1, - "reading": 1, - "keypad.": 1, - "ALL": 2, - "made": 2, - "LOW": 2, - "OUTPUT": 2, - "pins.": 1, - "Then": 1, - "INPUT": 2, - "state.": 1, - "At": 1, - "HIGH": 3, - "closed": 1, - "otherwise": 1, - "returned.": 1, - "keypad": 4, - "decoding": 1, - "routine": 1, - "subroutines": 1, - "entire": 1, - "matrix": 1, - "WORD": 1, - "variable": 1, - "indicating": 1, - "buttons": 2, - "pressed.": 1, - "Multiple": 1, - "button": 2, - "presses": 1, - "allowed": 1, - "understanding": 1, - "BOX": 2, - "entries": 1, - "confused.": 1, - "An": 1, - "entry...": 1, - "etc.": 1, - "pressed": 3, - "evaluate": 1, - "even": 1, - "not.": 1, - "There": 1, - "danger": 1, - "physical": 1, - "electrical": 1, - "damage": 1, - "way": 1, - "sensing": 1, - "happens": 1, - "work.": 1, - "Schematic": 1, - "No": 2, - "capacitors.": 1, - "connections": 1, - "directly": 1, - "ReadRow": 4, - "Shift": 3, - "preset": 1, - "P0": 2, - "P7": 2, - "LOWs": 1, - "INPUTSs": 1, - "act": 1, - "tiny": 1, - "capacitors": 1, - "Pin": 1, - "OUTPUT...": 1, - "Make": 1, - "Pn": 1, - "remain": 1, - "discharged": 1 - }, - "Cirru": { - "print": 38, - "int": 36, - "float": 1, - "set": 12, - "a": 22, - "string": 7, - "(": 20, - ")": 20, - "nothing": 1, - "map": 8, - "b": 7, - "c": 9, - "array": 14, - "code": 4, - "get": 4, - "container": 3, - "self": 2, - "child": 1, - "under": 2, - "parent": 1, - "x": 2, - "just": 4, - "-": 4, - "eval": 2, - "f": 3, - "block": 1, - "call": 1, - "m": 3, - "bool": 6, - "true": 1, - "false": 1, - "yes": 1, - "no": 1, - "require": 1, - "./stdio.cr": 1 - }, - "Julia": { - "##": 5, - "Test": 1, - "case": 1, - "from": 1, - "Issue": 1, - "#445": 1, - "#STOCKCORR": 1, - "-": 11, - "The": 1, - "original": 1, - "unoptimised": 1, - "code": 1, - "that": 1, - "simulates": 1, - "two": 2, - "correlated": 1, - "assets": 1, - "function": 1, - "stockcorr": 1, - "(": 13, - ")": 13, - "Correlated": 1, - "asset": 1, - "information": 1, - "CurrentPrice": 3, - "[": 20, - "]": 20, - "#": 11, - "Initial": 1, - "Prices": 1, - "of": 6, - "the": 2, - "stocks": 1, - "Corr": 2, - ";": 1, - "Correlation": 1, - "Matrix": 2, - "T": 5, - "Number": 2, - "days": 3, - "to": 1, - "simulate": 1, - "years": 1, - "n": 4, - "simulations": 1, - "dt": 3, - "/250": 1, - "Time": 1, - "step": 1, - "year": 1, - "Div": 3, - "Dividend": 1, - "Vol": 5, - "Volatility": 1, - "Market": 1, - "Information": 1, - "r": 3, - "Risk": 1, - "free": 1, - "rate": 1, - "Define": 1, - "storages": 1, - "SimulPriceA": 5, - "zeros": 2, - "Simulated": 2, - "Price": 2, - "Asset": 2, - "A": 1, - "SimulPriceB": 5, - "B": 1, - "Generating": 1, - "paths": 1, - "stock": 1, - "prices": 1, - "by": 2, - "Geometric": 1, - "Brownian": 1, - "Motion": 1, - "UpperTriangle": 2, - "chol": 1, - "Cholesky": 1, - "decomposition": 1, - "for": 2, - "i": 5, - "Wiener": 1, - "randn": 1, - "CorrWiener": 1, - "Wiener*UpperTriangle": 1, - "j": 7, - "*exp": 2, - "/2": 2, - "*dt": 2, - "+": 2, - "*sqrt": 2, - "*CorrWiener": 2, - "end": 3, - "return": 1 - }, -<<<<<<< HEAD "Squirrel": { "//example": 1, "from": 1, @@ -105209,3369 +63168,991 @@ "(": 10, "i": 1, "val": 2, -======= - "Ragel in Ruby Host": { - "begin": 3, - "%": 34, - "{": 19, - "machine": 3, - "simple_tokenizer": 1, - ";": 38, - "action": 9, - "MyTs": 2, - "my_ts": 6, - "p": 8, - "}": 19, - "MyTe": 2, - "my_te": 6, - "Emit": 4, - "emit": 4, - "data": 15, - "[": 20, - "my_ts...my_te": 1, - "]": 20, - ".pack": 6, - "(": 33, - ")": 33, - "nil": 4, - "foo": 8, - "any": 4, - "+": 7, - "main": 3, - "|": 11, - "*": 9, - "end": 23, - "#": 4, - "class": 3, - "SimpleTokenizer": 1, - "attr_reader": 2, - "path": 8, - "def": 10, - "initialize": 2, - "@path": 2, - "write": 9, - "stdout.puts": 2, - "perform": 2, - "pe": 4, - "ignored": 4, - "eof": 3, - "init": 3, - "leftover": 8, - "File.open": 2, - "do": 2, - "f": 2, - "while": 2, - "chunk": 2, - "f.read": 2, - "ENV": 2, - ".to_i": 2, - "chunk.unpack": 2, - "data.length": 3, - "exec": 3, - "if": 4, - "my_ts..": 1, - "-": 5, - "else": 2, - "s": 4, - "SimpleTokenizer.new": 1, - "ARGV": 2, - "s.perform": 2, - "ephemeris_parser": 1, - "mark": 6, - "parse_start_time": 2, - "parser.start_time": 1, - "mark..p": 4, - "parse_stop_time": 2, - "parser.stop_time": 1, - "parse_step_size": 2, - "parser.step_size": 1, - "parse_ephemeris_table": 2, - "fhold": 1, - "parser.ephemeris_table": 1, - "ws": 2, - "t": 1, - "r": 1, - "n": 1, - "adbc": 2, - "year": 2, - "digit": 7, - "month": 2, - "upper": 1, - "lower": 1, - "date": 2, - "hours": 2, - "minutes": 2, - "seconds": 2, - "tz": 2, - "datetime": 3, - "time_unit": 2, - "soe": 2, - "eoe": 2, - "ephemeris_table": 3, - "alnum": 1, - "./": 1, - "start_time": 4, - "space*": 2, - "stop_time": 4, - "step_size": 3, - "ephemeris": 2, - "any*": 3, - "require": 1, - "module": 1, - "Tengai": 1, - "EPHEMERIS_DATA": 2, - "Struct.new": 1, - ".freeze": 1, - "EphemerisParser": 1, - "<": 1, - "self.parse": 1, - "parser": 2, - "new": 1, - "data.unpack": 1, - "data.is_a": 1, - "String": 1, - "time": 6, - "super": 2, - "parse_time": 3, - "private": 1, - "DateTime.parse": 1, - "simple_scanner": 1, - "ts": 4, - "..": 1, - "te": 1, - "SimpleScanner": 1, - "||": 1, - "ts..pe": 1, - "SimpleScanner.new": 1 - }, - "JSONiq": { - "(": 14, - "Query": 2, - "for": 4, - "returning": 1, - "one": 1, - "database": 2, - "entry": 1, - ")": 14, - "import": 5, - "module": 5, - "namespace": 5, - "req": 6, - ";": 9, - "catalog": 4, - "variable": 4, - "id": 3, - "param": 4, - "-": 11, - "values": 4, - "[": 5, - "]": 5, - "part": 2, - "get": 2, - "data": 4, - "by": 2, - "key": 1, - "searching": 1, - "the": 1, - "keywords": 1, - "index": 3, - "phrase": 2, - "limit": 2, - "integer": 1, - "result": 1, - "at": 1, - "idx": 2, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "in": 1, - "search": 1, - "where": 1, - "le": 1, - "let": 1, - "result.s": 1, - "result.p": 1, - "return": 1, - "{": 2, - "|": 2, - "score": 1, - "result.r": 1, - "}": 2 - }, - "TeX": { - "%": 135, - "NeedsTeXFormat": 1, - "{": 463, - "LaTeX2e": 1, - "}": 469, - "ProvidesClass": 2, - "reedthesis": 1, - "[": 81, - "/01/27": 1, - "The": 4, - "Reed": 5, - "College": 5, - "Thesis": 5, - "Class": 4, - "]": 80, - "DeclareOption*": 2, - "PassOptionsToClass": 2, - "CurrentOption": 1, - "book": 2, - "ProcessOptions": 2, - "relax": 3, - "LoadClass": 2, - "RequirePackage": 20, - "fancyhdr": 2, - "AtBeginDocument": 1, - "fancyhf": 2, - "fancyhead": 5, - "LE": 1, - "RO": 1, - "thepage": 2, - "above": 1, - "makes": 2, - "your": 1, - "headers": 6, - "in": 20, - "all": 2, - "caps.": 2, - "If": 1, - "you": 1, - "would": 1, - "like": 1, - "different": 1, - "choose": 1, - "one": 1, - "of": 14, - "the": 19, - "following": 2, - "options": 1, - "(": 12, - "be": 3, - "sure": 1, - "to": 16, - "remove": 1, - "symbol": 4, - "from": 5, - "both": 1, - "right": 16, - "and": 5, - "left": 15, - ")": 12, - "RE": 2, - "slshape": 2, - "nouppercase": 2, - "leftmark": 2, - "This": 2, - "on": 2, - "RIGHT": 2, - "side": 2, - "pages": 2, - "italic": 1, - "use": 1, - "lowercase": 1, - "With": 1, - "Capitals": 1, - "When": 1, - "Specified.": 1, - "LO": 2, - "rightmark": 2, - "does": 1, - "same": 1, - "thing": 1, - "LEFT": 2, - "or": 1, - "scshape": 2, - "will": 2, - "small": 8, - "And": 1, - "so": 1, - "pagestyle": 3, - "fancy": 1, - "let": 11, - "oldthebibliography": 2, - "thebibliography": 2, - "endoldthebibliography": 2, - "endthebibliography": 1, - "renewenvironment": 2, - "#1": 40, - "addcontentsline": 5, - "toc": 5, - "chapter": 9, - "bibname": 2, - "end": 12, - "things": 1, - "for": 21, - "psych": 1, - "majors": 1, - "comment": 1, - "out": 1, - "oldtheindex": 2, - "theindex": 2, - "endoldtheindex": 2, - "endtheindex": 1, - "indexname": 1, - "RToldchapter": 1, - "renewcommand": 10, - "if@openright": 1, - "RTcleardoublepage": 3, - "else": 9, - "clearpage": 4, - "fi": 15, - "thispagestyle": 5, - "empty": 6, - "global": 2, - "@topnum": 1, - "z@": 2, - "@afterindentfalse": 1, - "secdef": 1, - "@chapter": 2, - "@schapter": 1, - "def": 18, - "#2": 17, - "ifnum": 3, - "c@secnumdepth": 1, - "m@ne": 2, - "if@mainmatter": 1, - "refstepcounter": 1, - "typeout": 1, - "@chapapp": 2, - "space": 8, - "thechapter.": 1, - "thechapter": 1, - "space#1": 1, - "chaptermark": 1, - "addtocontents": 2, - "lof": 1, - "protect": 2, - "addvspace": 2, - "p@": 3, - "lot": 1, - "if@twocolumn": 3, - "@topnewpage": 1, - "@makechapterhead": 2, - "@afterheading": 1, - "newcommand": 2, - "if@twoside": 1, - "ifodd": 1, - "c@page": 1, - "hbox": 15, - "newpage": 3, - "RToldcleardoublepage": 1, - "cleardoublepage": 4, - "setlength": 12, - "oddsidemargin": 2, - ".5in": 3, - "evensidemargin": 2, - "textwidth": 4, - "textheight": 4, - "topmargin": 6, - "addtolength": 8, - "headheight": 4, - "headsep": 3, - ".6in": 1, - "pt": 5, - "division#1": 1, - "gdef": 6, - "@division": 3, - "@latex@warning@no@line": 3, - "No": 3, - "noexpand": 3, - "division": 2, - "given": 3, - "department#1": 1, - "@department": 3, - "department": 1, - "thedivisionof#1": 1, - "@thedivisionof": 3, - "Division": 2, - "approvedforthe#1": 1, - "@approvedforthe": 3, - "advisor#1": 1, - "@advisor": 3, - "advisor": 1, - "altadvisor#1": 1, - "@altadvisor": 3, - "@altadvisortrue": 1, - "@empty": 1, - "newif": 1, - "if@altadvisor": 3, - "@altadvisorfalse": 1, - "contentsname": 1, - "Table": 1, - "Contents": 1, - "References": 1, - "l@chapter": 1, - "c@tocdepth": 1, - "addpenalty": 1, - "@highpenalty": 2, - "vskip": 4, - "em": 8, - "@plus": 1, - "@tempdima": 2, - "begingroup": 1, - "parindent": 2, - "rightskip": 1, - "@pnumwidth": 3, - "parfillskip": 1, - "-": 9, - "leavevmode": 1, - "bfseries": 3, - "advance": 1, - "leftskip": 2, - "hskip": 1, - "nobreak": 2, - "normalfont": 1, - "leaders": 1, - "m@th": 1, - "mkern": 2, - "@dotsep": 2, - "mu": 2, - ".": 3, - "hfill": 3, - "hb@xt@": 1, - "hss": 1, - "par": 6, - "penalty": 1, - "endgroup": 1, - "newenvironment": 1, - "abstract": 1, - "@restonecoltrue": 1, - "onecolumn": 1, - "@restonecolfalse": 1, - "Abstract": 2, - "begin": 11, - "center": 7, - "fontsize": 7, - "selectfont": 6, - "if@restonecol": 1, - "twocolumn": 1, - "ifx": 1, - "@pdfoutput": 1, - "@undefined": 1, - "RTpercent": 3, - "@percentchar": 1, - "AtBeginDvi": 2, - "special": 2, - "LaTeX": 3, - "/12/04": 3, - "SN": 3, - "rawpostscript": 1, - "AtEndDocument": 1, - "pdfinfo": 1, - "/Creator": 1, - "maketitle": 1, - "titlepage": 2, - "footnotesize": 2, - "footnoterule": 1, - "footnote": 1, - "thanks": 1, - "baselineskip": 2, - "setbox0": 2, - "Requirements": 2, - "Degree": 2, - "setcounter": 5, - "page": 4, - "null": 3, - "vfil": 8, - "@title": 1, - "centerline": 8, - "wd0": 7, - "hrulefill": 5, - "A": 1, - "Presented": 1, - "In": 1, - "Partial": 1, - "Fulfillment": 1, - "Bachelor": 1, - "Arts": 1, - "bigskip": 2, - "lineskip": 1, - ".75em": 1, - "tabular": 2, - "t": 1, - "c": 5, - "@author": 1, - "@date": 1, - "Approved": 2, - "just": 1, - "below": 2, - "cm": 2, - "not": 2, - "copy0": 1, - "approved": 1, - "major": 1, - "sign": 1, - "makebox": 6, - "problemset": 1, - "final": 2, - "article": 2, - "DeclareOption": 2, - "worksheet": 1, - "providecommand": 45, - "@solutionvis": 3, - "expand": 1, - "@expand": 3, - "letterpaper": 1, - "top": 1, - "bottom": 1, - "geometry": 1, - "pgfkeys": 1, - "For": 13, - "mathtable": 2, - "environment.": 3, - "tabularx": 1, - "pset": 1, - "heading": 2, - "float": 1, - "Used": 6, - "floats": 1, - "tables": 1, - "figures": 1, - "etc.": 1, - "graphicx": 1, - "inserting": 3, - "images.": 1, - "enumerate": 2, - "mathtools": 2, - "Required.": 7, - "Loads": 1, - "amsmath.": 1, - "amsthm": 1, - "theorem": 1, - "environments.": 1, - "amssymb": 1, - "booktabs": 1, - "esdiff": 1, - "derivatives": 4, - "partial": 2, - "Optional.": 1, - "shortintertext.": 1, - "customizing": 1, - "headers/footers.": 1, - "lastpage": 1, - "count": 1, - "header/footer.": 1, - "xcolor": 1, - "setting": 3, - "color": 3, - "hyperlinks": 2, - "obeyFinal": 1, - "Disable": 1, - "todos": 1, - "by": 1, - "option": 1, - "class": 1, - "@todoclr": 2, - "linecolor": 1, - "red": 1, - "todonotes": 1, - "keeping": 1, - "track": 1, - "dos.": 1, - "colorlinks": 1, - "true": 1, - "linkcolor": 1, - "navy": 2, - "urlcolor": 1, - "black": 2, - "hyperref": 1, - "urls": 2, - "references": 1, - "a": 2, - "document.": 1, - "url": 2, - "Enables": 1, - "with": 5, - "tag": 1, - "hypcap": 1, - "definecolor": 2, - "gray": 1, - "To": 1, - "Dos.": 1, - "brightness": 1, - "RGB": 1, - "coloring": 1, - "parskip": 1, - "ex": 2, - "Sets": 1, - "between": 1, - "paragraphs.": 2, - "Indent": 1, - "first": 1, - "line": 2, - "new": 1, - "VERBATIM": 2, - "verbatim": 2, - "verbatim@font": 1, - "ttfamily": 1, - "usepackage": 2, - "caption": 1, - "subcaption": 1, - "captionsetup": 4, - "table": 2, - "labelformat": 4, - "simple": 3, - "labelsep": 4, - "period": 3, - "labelfont": 4, - "bf": 4, - "figure": 2, - "subtable": 1, - "parens": 1, - "subfigure": 1, - "TRUE": 1, - "FALSE": 1, - "SHOW": 3, - "HIDE": 2, - "listoftodos": 1, - "pagenumbering": 1, - "arabic": 2, - "shortname": 2, - "authorname": 2, - "coursename": 3, - "#3": 8, - "assignment": 3, - "#4": 4, - "duedate": 2, - "#5": 2, - "minipage": 4, - "flushleft": 2, - "hypertarget": 1, - "@assignment": 2, - "textbf": 5, - "flushright": 2, - "headrulewidth": 1, - "footrulewidth": 1, - "fancyplain": 4, - "lfoot": 1, - "hyperlink": 1, - "cfoot": 1, - "rfoot": 1, - "pageref": 1, - "LastPage": 1, - "newcounter": 1, - "theproblem": 3, - "Problem": 2, - "counter": 1, - "environment": 1, - "problem": 1, - "addtocounter": 2, - "equation": 1, - "noindent": 2, - "textit": 1, - "Default": 2, - "is": 2, - "omit": 1, - "pagebreaks": 1, - "after": 1, - "solution": 2, - "qqed": 2, - "rule": 1, - "mm": 2, - "pagebreak": 2, - "show": 1, - "solutions.": 1, - "vspace": 2, - "Solution.": 1, - "ifnum#1": 2, - "chap": 1, - "section": 2, - "Sum": 3, - "n": 4, - "ensuremath": 15, - "sum_": 2, - "infsum": 2, - "infty": 2, - "Infinite": 1, - "sum": 1, - "Int": 1, - "x": 4, - "int_": 1, - "mathrm": 1, - "d": 1, - "Integrate": 1, - "respect": 1, - "Lim": 2, - "displaystyle": 2, - "lim_": 1, - "Take": 1, - "limit": 1, - "infinity": 1, - "f": 1, - "Frac": 1, - "/": 1, - "_": 1, - "Slanted": 1, - "fraction": 1, - "proper": 1, - "spacing.": 1, - "Usefule": 1, - "display": 2, - "fractions.": 1, - "eval": 1, - "vert_": 1, - "L": 1, - "hand": 2, - "sizing": 2, - "R": 1, - "D": 1, - "diff": 1, - "writing": 2, - "PD": 1, - "diffp": 1, - "full": 1, - "Forces": 1, - "style": 1, - "math": 4, - "mode": 4, - "Deg": 1, - "circ": 1, - "adding": 1, - "degree": 1, - "even": 1, - "if": 1, - "abs": 1, - "vert": 3, - "Absolute": 1, - "Value": 1, - "norm": 1, - "Vert": 2, - "Norm": 1, - "vector": 1, - "magnitude": 1, - "e": 1, - "times": 3, - "Scientific": 2, - "Notation": 2, - "E": 2, - "u": 1, - "text": 7, - "units": 1, - "Roman": 1, - "mc": 1, - "hspace": 3, - "comma": 1, - "into": 2, - "mtxt": 1, - "insterting": 1, - "either": 1, - "side.": 1, - "Option": 1, - "preceding": 1, - "punctuation.": 1, - "prob": 1, - "P": 2, - "cndprb": 1, - "right.": 1, - "cov": 1, - "Cov": 1, - "twovector": 1, - "r": 3, - "array": 6, - "threevector": 1, - "fourvector": 1, - "vecs": 4, - "vec": 2, - "bm": 2, - "bolded": 2, - "arrow": 2, - "vect": 3, - "unitvecs": 1, - "hat": 2, - "unitvect": 1, - "Div": 1, - "del": 3, - "cdot": 1, - "Curl": 1, - "Grad": 1 - }, - "XQuery": { - "(": 38, - "-": 486, - "xproc.xqm": 1, - "core": 1, - "xqm": 1, - "contains": 1, - "entry": 2, - "points": 1, - "primary": 1, - "eval": 3, - "step": 5, - "function": 3, - "and": 3, - "control": 1, - "functions.": 1, - ")": 38, - "xquery": 1, - "version": 1, - "encoding": 1, - ";": 25, - "module": 6, - "namespace": 8, - "xproc": 17, - "declare": 24, - "namespaces": 5, - "p": 2, - "c": 1, - "err": 1, - "imports": 1, - "import": 4, - "util": 1, - "at": 4, - "const": 1, - "parse": 8, - "u": 2, - "options": 2, - "boundary": 1, - "space": 1, - "preserve": 1, - "option": 1, - "saxon": 1, - "output": 1, - "functions": 1, - "variable": 13, - "run": 2, - "run#6": 1, - "choose": 1, - "try": 1, - "catch": 1, - "group": 1, - "for": 1, - "each": 1, - "viewport": 1, - "library": 1, - "pipeline": 8, - "list": 1, - "all": 1, - "declared": 1, - "enum": 3, - "{": 5, - "": 1, - "name=": 1, - "ns": 1, - "": 1, - "}": 5, - "": 1, - "": 1, - "point": 1, - "stdin": 1, - "dflag": 1, - "tflag": 1, - "bindings": 2, - "STEP": 3, - "I": 1, - "preprocess": 1, - "let": 6, - "validate": 1, - "explicit": 3, - "AST": 2, - "name": 1, - "type": 1, - "ast": 1, - "element": 1, - "parse/@*": 1, - "sort": 1, - "parse/*": 1, - "II": 1, - "eval_result": 1, - "III": 1, - "serialize": 1, - "return": 2, - "results": 1, - "serialized_result": 2 - }, - "RMarkdown": { - "Some": 1, - "text.": 1, - "##": 1, - "A": 1, - "graphic": 1, - "in": 1, - "R": 1, - "{": 1, - "r": 1, - "}": 1, - "plot": 1, - "(": 3, - ")": 3, - "hist": 1, - "rnorm": 1 - }, - "Crystal": { - "module": 1, - "Crystal": 1, + ")": 10, + "print": 2, + "typeof": 1, + "/////////////////////////////////////////////": 1, "class": 2, - "ASTNode": 4, - "def": 84, - "transform": 81, - "(": 201, - "transformer": 1, - ")": 201, - "transformer.before_transform": 1, - "self": 77, - "node": 164, - "transformer.transform": 1, - "transformer.after_transform": 1, - "end": 135, - "Transformer": 1, - "before_transform": 1, - "after_transform": 1, - "Expressions": 2, - "exps": 6, - "[": 9, - "]": 9, - "of": 3, - "node.expressions.each": 1, - "do": 26, - "|": 8, - "exp": 3, - "new_exp": 3, - "exp.transform": 3, - "if": 23, - "new_exp.is_a": 1, - "exps.concat": 1, - "new_exp.expressions": 1, - "else": 2, - "<<": 1, - "exps.length": 1, - "node.expressions": 3, - "Call": 1, - "node_obj": 1, - "node.obj": 9, - "node_obj.transform": 1, - "transform_many": 23, - "node.args": 3, - "node_block": 1, - "node.block": 2, - "node_block.transform": 1, - "node_block_arg": 1, - "node.block_arg": 6, - "node_block_arg.transform": 1, - "And": 1, - "node.left": 3, - "node.left.transform": 3, - "node.right": 3, - "node.right.transform": 3, - "Or": 1, - "StringInterpolation": 1, - "ArrayLiteral": 1, - "node.elements": 1, - "node_of": 1, - "node.of": 2, - "node_of.transform": 1, - "HashLiteral": 1, - "node.keys": 1, - "node.values": 2, - "of_key": 1, - "node.of_key": 2, - "of_key.transform": 1, - "of_value": 1, - "node.of_value": 2, - "of_value.transform": 1, - "If": 1, - "node.cond": 5, - "node.cond.transform": 5, - "node.then": 3, - "node.then.transform": 3, - "node.else": 5, - "node.else.transform": 3, - "Unless": 1, - "IfDef": 1, - "MultiAssign": 1, - "node.targets": 1, - "SimpleOr": 1, - "Def": 1, - "node.body": 12, - "node.body.transform": 10, - "receiver": 2, - "node.receiver": 4, - "receiver.transform": 2, - "block_arg": 2, - "block_arg.transform": 2, - "Macro": 1, - "PointerOf": 1, - "node.exp": 3, - "node.exp.transform": 3, - "SizeOf": 1, - "InstanceSizeOf": 1, - "IsA": 1, - "node.obj.transform": 5, - "node.const": 1, - "node.const.transform": 1, - "RespondsTo": 1, - "Case": 1, - "node.whens": 1, - "node_else": 1, - "node_else.transform": 1, - "When": 1, - "node.conds": 1, - "ImplicitObj": 1, - "ClassDef": 1, - "superclass": 1, - "node.superclass": 2, - "superclass.transform": 1, - "ModuleDef": 1, - "While": 1, - "Generic": 1, - "node.name": 5, - "node.name.transform": 5, - "node.type_vars": 1, - "ExceptionHandler": 1, - "node.rescues": 1, - "node_ensure": 1, - "node.ensure": 2, - "node_ensure.transform": 1, - "Rescue": 1, - "node.types": 2, - "Union": 1, - "Hierarchy": 1, - "Metaclass": 1, - "Arg": 1, - "default_value": 1, - "node.default_value": 2, - "default_value.transform": 1, - "restriction": 1, - "node.restriction": 2, - "restriction.transform": 1, - "BlockArg": 1, - "node.fun": 1, - "node.fun.transform": 1, - "Fun": 1, - "node.inputs": 1, - "output": 1, - "node.output": 2, - "output.transform": 1, - "Block": 1, - "node.args.map": 1, - "{": 7, - "as": 4, - "Var": 2, - "}": 7, - "FunLiteral": 1, - "node.def.body": 1, - "node.def.body.transform": 1, - "FunPointer": 1, - "obj": 1, - "obj.transform": 1, - "Return": 1, - "node.exps": 5, - "Break": 1, - "Next": 1, - "Yield": 1, - "scope": 1, - "node.scope": 2, - "scope.transform": 1, - "Include": 1, - "Extend": 1, - "RangeLiteral": 1, - "node.from": 1, - "node.from.transform": 1, - "node.to": 2, - "node.to.transform": 2, - "Assign": 1, - "node.target": 1, - "node.target.transform": 1, - "node.value": 3, - "node.value.transform": 3, - "Nop": 1, - "NilLiteral": 1, - "BoolLiteral": 1, - "NumberLiteral": 1, - "CharLiteral": 1, - "StringLiteral": 1, - "SymbolLiteral": 1, - "RegexLiteral": 1, - "MetaVar": 1, - "InstanceVar": 1, - "ClassVar": 1, - "Global": 1, - "Require": 1, - "Path": 1, - "Self": 1, - "LibDef": 1, - "FunDef": 1, - "body": 1, - "body.transform": 1, - "TypeDef": 1, - "StructDef": 1, - "UnionDef": 1, - "EnumDef": 1, - "ExternalVar": 1, - "IndirectRead": 1, - "IndirectWrite": 1, - "TypeOf": 1, - "Primitive": 1, - "Not": 1, - "TypeFilteredNode": 1, - "TupleLiteral": 1, - "Cast": 1, - "DeclareVar": 1, - "node.var": 1, - "node.var.transform": 1, - "node.declared_type": 1, - "node.declared_type.transform": 1, - "Alias": 1, - "TupleIndexer": 1, - "Attribute": 1, - "exps.map": 1, - "SHEBANG#!bin/crystal": 2, - "require": 2, - "describe": 2, - "it": 21, - "run": 14, - ".to_i.should": 11, - "eq": 16, - ".to_f32.should": 2, - ".to_b.should": 1, - "be_true": 1, - "assert_type": 7, - "int32": 8, - "union_of": 1, - "char": 1, - "result": 3, - "types": 3, - "mod": 1, - "result.program": 1, - "foo": 3, - "mod.types": 1, - "NonGenericClassType": 1, - "foo.instance_vars": 1, - ".type.should": 3, - "mod.int32": 1, - "GenericClassType": 2, - "foo_i32": 4, - "foo.instantiate": 2, - "Type": 2, - "foo_i32.lookup_instance_var": 2 + "Entity": 3, + "constructor": 2, + "etype": 2, + "entityname": 4, + "name": 2, + "type": 2, + "x": 2, + "y": 2, + "z": 2, + "null": 2, + "function": 2, + "MoveTo": 1, + "newx": 2, + "newy": 2, + "newz": 2, + "Player": 2, + "extends": 1, + "base.constructor": 1, + "DoDomething": 1, + "newplayer": 1, + "newplayer.MoveTo": 1 }, - "edn": { - "[": 24, - "{": 22, - "db/id": 22, - "#db/id": 22, - "db.part/db": 6, - "]": 24, - "db/ident": 3, - "object/name": 18, - "db/doc": 4, - "db/valueType": 3, - "db.type/string": 2, - "db/index": 3, - "true": 3, - "db/cardinality": 3, - "db.cardinality/one": 3, - "db.install/_attribute": 3, - "}": 22, - "object/meanRadius": 18, - "db.type/double": 1, - "data/source": 2, - "db.part/tx": 2, - "db.part/user": 17 - }, - "PowerShell": { - "Write": 2, - "-": 2, - "Host": 2, - "function": 1, - "hello": 1, - "(": 1, - ")": 1, - "{": 1, - "}": 1 - }, - "Game Maker Language": { - "var": 79, - "victim": 10, - "killer": 11, - "assistant": 16, - "damageSource": 18, - ";": 1282, - "argument0": 28, - "argument1": 10, - "argument2": 3, - "argument3": 1, - "if": 397, - "(": 1501, - "instance_exists": 8, - ")": 1502, - "noone": 7, - "//*************************************": 6, - "//*": 3, - "Scoring": 1, - "and": 155, - "Kill": 1, - "log": 1, - "recordKillInLog": 1, - "victim.stats": 1, - "[": 99, - "DEATHS": 1, - "]": 103, - "+": 206, - "{": 300, - "WEAPON_KNIFE": 1, - "||": 16, - "WEAPON_BACKSTAB": 1, - "killer.stats": 8, - "STABS": 2, - "killer.roundStats": 8, - "POINTS": 10, - "}": 307, - "victim.object.currentWeapon.object_index": 1, - "Medigun": 2, - "victim.object.currentWeapon.uberReady": 1, - "BONUS": 2, - "KILLS": 2, - "victim.object.intel": 1, - "DEFENSES": 2, - "recordEventInLog": 1, - "killer.team": 1, - "killer.name": 2, - "global.myself": 4, - "assistant.stats": 2, - "ASSISTS": 2, - "assistant.roundStats": 2, - ".5": 2, - "//SPEC": 1, - "instance_create": 20, - "victim.object.x": 3, - "victim.object.y": 3, - "Spectator": 1, - "Gibbing": 2, - "xoffset": 5, - "yoffset": 5, - "xsize": 3, - "ysize": 3, - "view_xview": 3, - "view_yview": 3, - "view_wview": 2, - "view_hview": 2, - "randomize": 1, - "with": 47, - "victim.object": 2, - "WEAPON_ROCKETLAUNCHER": 1, - "or": 78, - "WEAPON_MINEGUN": 1, - "FRAG_BOX": 2, - "WEAPON_REFLECTED_STICKY": 1, - "WEAPON_REFLECTED_ROCKET": 1, - "FINISHED_OFF_GIB": 2, - "GENERATOR_EXPLOSION": 2, - "player.class": 15, - "CLASS_QUOTE": 3, - "global.gibLevel": 14, - "distance_to_point": 3, - "xsize/2": 2, - "ysize/2": 2, - "<": 39, - "hasReward": 4, - "repeat": 7, - "*": 18, - "createGib": 14, - "x": 76, - "y": 85, - "PumpkinGib": 1, - "hspeed": 14, - "vspeed": 13, - "random": 21, - "-": 212, - "choose": 8, - "false": 85, - "true": 73, - "else": 151, - "Gib": 1, - "switch": 9, - "player.team": 8, - "case": 50, - "TEAM_BLUE": 6, - "BlueClump": 1, - "break": 58, - "TEAM_RED": 8, - "RedClump": 1, - "blood": 2, - "BloodDrop": 1, - "blood.hspeed": 1, - "blood.vspeed": 1, - "blood.sprite_index": 1, - "PumpkinJuiceS": 1, - "//All": 1, - "Classes": 1, - "gib": 1, - "head": 1, - "hands": 2, - "feet": 1, - "Headgib": 1, - "//Medic": 1, - "has": 2, - "specially": 1, - "colored": 1, - "CLASS_MEDIC": 2, - "Hand": 3, - "Feet": 1, - "//Class": 1, - "specific": 1, - "gibs": 1, - "CLASS_PYRO": 2, - "Accesory": 5, - "CLASS_SOLDIER": 2, - "CLASS_ENGINEER": 3, - "CLASS_SNIPER": 3, - "playsound": 2, - "deadbody": 2, - "DeathSnd1": 1, - "DeathSnd2": 1, - "DeadGuy": 1, - "player": 36, - "deadbody.sprite_index": 2, - "haxxyStatue": 1, - "deadbody.image_index": 2, - "sprite_index": 14, - "CHARACTER_ANIMATION_DEAD": 1, - "deadbody.hspeed": 1, - "deadbody.vspeed": 1, - "deadbody.image_xscale": 1, - "global.gg_birthday": 1, - "myHat": 2, - "PartyHat": 1, - "myHat.image_index": 2, - "victim.team": 2, - "global.xmas": 1, - "XmasHat": 1, - "instance_destroy": 7, - "Deathcam": 1, - "global.killCam": 3, - "KILL_BOX": 1, - "FINISHED_OFF": 5, - "DeathCam": 1, - "DeathCam.killedby": 1, - "DeathCam.name": 1, - "DeathCam.oldxview": 1, - "DeathCam.oldyview": 1, - "DeathCam.lastDamageSource": 1, - "DeathCam.team": 1, - "global.myself.team": 3, - "#define": 26, - "__jso_gmt_tuple": 1, - "//Position": 1, - "address": 1, - "table": 1, - "data": 4, - "pos": 2, - "addr_table": 2, - "*argument_count": 1, - "//Build": 1, - "the": 62, - "tuple": 1, - "element": 8, - "by": 5, - "i": 95, - "ca": 1, - "isstr": 1, - "datastr": 1, - "for": 26, - "argument_count": 1, - "//Check": 1, - "argument": 10, - "Unexpected": 18, - "character": 20, - "at": 23, - "position": 16, - ".": 12, + "Standard ML": { + "structure": 15, + "LazyBase": 4, + "LAZY_BASE": 5, + "struct": 13, + "type": 6, + "a": 78, + "exception": 2, + "Undefined": 6, + "fun": 60, + "delay": 6, + "f": 46, + "force": 18, + "(": 840, + ")": 845, + "val": 147, + "undefined": 2, + "fn": 127, + "raise": 6, + "end": 55, + "LazyMemoBase": 4, + "datatype": 29, + "|": 226, + "Done": 2, + "of": 91, + "lazy": 13, + "unit": 7, + "-": 20, + "let": 44, + "open": 9, + "B": 2, + "inject": 5, + "x": 74, + "isUndefined": 4, + "ignore": 3, + ";": 21, + "false": 32, + "handle": 4, + "true": 36, + "toString": 4, + "if": 51, + "then": 51, + "else": 51, + "eqBy": 5, + "p": 10, + "y": 50, + "eq": 3, + "op": 2, + "compare": 8, + "Ops": 3, + "map": 3, + "Lazy": 2, + "LazyFn": 4, + "LazyMemo": 2, + "signature": 2, + "sig": 2, + "LAZY": 1, + "bool": 9, + "string": 14, + "*": 9, + "order": 2, + "b": 58, + "functor": 2, + "Main": 1, + "S": 2, + "MAIN_STRUCTS": 1, + "MAIN": 1, + "Compile": 3, + "Place": 1, "t": 23, - "f": 5, - "end": 11, - "of": 25, - "list": 36, - "in": 21, - "JSON": 5, - "string.": 5, - "string": 13, - "Cannot": 5, - "parse": 3, - "boolean": 3, - "value": 13, - "real": 14, - "expecting": 9, - "a": 55, - "digit.": 9, - "e": 4, - "E": 4, - "dot": 1, - "an": 24, - "integer": 6, - "Expected": 6, - "least": 6, - "arguments": 26, - "got": 6, - "map": 47, - "find": 10, - "lookup.": 4, - "use": 4, - "indices": 1, - "nested": 27, - "lists": 6, - "Index": 1, - "overflow": 4, - "Recursive": 1, - "abcdef": 1, - "Invalid": 2, - "hex": 2, - "number": 7, - "return": 56, - "num": 1, - "//": 11, - "global.levelType": 22, - "//global.currLevel": 1, - "global.currLevel": 22, - "global.hadDarkLevel": 4, - "global.startRoomX": 1, - "global.startRoomY": 1, - "global.endRoomX": 1, - "global.endRoomY": 1, - "oGame.levelGen": 2, - "j": 14, - "global.roomPath": 1, - "k": 5, - "global.lake": 3, - "<=>": 3, - "1": 32, - "not": 63, - "isLevel": 1, - "999": 2, - "global": 8, - "levelType": 2, - "2": 2, - "16": 14, - "0": 21, - "656": 3, - "obj": 14, - "oDark": 2, - "invincible": 2, - "sDark": 1, - "4": 2, - "oTemple": 2, - "cityOfGold": 1, - "sTemple": 2, - "lake": 1, - "i*16": 8, - "j*16": 6, - "oLush": 2, - "obj.sprite_index": 4, - "sLush": 2, - "obj.invincible": 3, - "oBrick": 1, - "sBrick": 1, - "global.cityOfGold": 2, - "*16": 2, - "//instance_create": 2, - "oSpikes": 1, - "background_index": 1, - "bgTemple": 1, - "global.temp1": 1, - "global.gameStart": 3, - "scrLevelGen": 1, - "global.cemetary": 3, - "rand": 10, - "global.probCemetary": 1, - "oRoom": 1, - "scrRoomGen": 1, - "global.blackMarket": 3, - "scrRoomGenMarket": 1, - "scrRoomGen2": 1, - "global.yetiLair": 2, - "scrRoomGenYeti": 1, - "scrRoomGen3": 1, - "scrRoomGen4": 1, - "scrRoomGen5": 1, - "global.darkLevel": 4, - "//if": 5, - "global.noDarkLevel": 1, - "global.probDarkLevel": 1, - "oPlayer1.x": 2, - "oPlayer1.y": 2, - "oFlare": 1, - "global.genUdjatEye": 4, - "global.madeUdjatEye": 1, - "global.genMarketEntrance": 4, - "global.madeMarketEntrance": 1, - "////////////////////////////": 2, - "global.temp2": 1, - "isRoom": 3, - "scrEntityGen": 1, - "oEntrance": 1, - "global.customLevel": 1, - "oEntrance.x": 1, - "oEntrance.y": 1, - "global.snakePit": 1, - "global.alienCraft": 1, - "global.sacrificePit": 1, - "oPlayer1": 1, - "alarm": 13, - "scrSetupWalls": 3, - "global.graphicsHigh": 1, - "tile_add": 4, - "bgExtrasLush": 1, - "*rand": 12, - "bgExtrasIce": 1, - "bgExtrasTemple": 1, - "bgExtras": 1, - "global.murderer": 1, - "global.thiefLevel": 1, - "isRealLevel": 1, - "oExit": 1, - "type": 8, - "oShopkeeper": 1, - "obj.status": 1, - "oTreasure": 1, - "collision_point": 30, - "oSolid": 14, - "instance_place": 3, - "oWater": 1, - "sWaterTop": 1, - "sLavaTop": 1, - "scrCheckWaterTop": 1, - "global.temp3": 1, - "//draws": 1, - "sprite": 12, - "draw": 3, - "facing": 17, - "RIGHT": 10, - "image_xscale": 17, - "blinkToggle": 1, - "state": 50, - "CLIMBING": 5, - "sPExit": 1, - "sDamselExit": 1, - "sTunnelExit": 1, - "global.hasJetpack": 4, - "whipping": 5, - "draw_sprite_ext": 10, - "image_yscale": 14, - "image_angle": 14, - "image_blend": 2, - "image_alpha": 10, - "//draw_sprite": 1, - "draw_sprite": 9, - "sJetpackBack": 1, - "sJetpackRight": 1, - "sJetpackLeft": 1, - "redColor": 2, - "make_color_rgb": 1, - "holdArrow": 4, - "ARROW_NORM": 2, - "sArrowRight": 1, - "ARROW_BOMB": 2, - "holdArrowToggle": 2, - "sBombArrowRight": 2, - "LEFT": 7, - "sArrowLeft": 1, - "sBombArrowLeft": 2, - "exit": 10, - "xr": 19, - "yr": 19, - "round": 6, - "cloakAlpha": 1, - "team": 13, - "canCloak": 1, - "cloakAlpha/2": 1, - "invisible": 1, - "stabbing": 2, - "power": 1, - "currentWeapon.stab.alpha": 1, - "&&": 6, - "global.showHealthBar": 3, - "draw_set_alpha": 3, - "draw_healthbar": 1, - "hp*100/maxHp": 1, - "c_black": 1, - "c_red": 3, - "c_green": 1, - "mouse_x": 1, - "mouse_y": 1, - "<25)>": 1, - "cloak": 2, - "myself": 2, - "draw_set_halign": 1, - "fa_center": 1, - "draw_set_valign": 1, - "fa_bottom": 1, - "team=": 1, - "draw_set_color": 2, - "c_blue": 2, - "draw_text": 4, - "35": 1, - "name": 9, - "showTeammateStats": 1, - "weapons": 3, - "50": 3, - "Superburst": 1, - "currentWeapon": 2, - "uberCharge": 1, - "20": 1, - "Shotgun": 1, - "Nuts": 1, - "N": 1, - "Bolts": 1, - "nutsNBolts": 1, - "Minegun": 1, - "Lobbed": 1, - "Mines": 1, - "lobbed": 1, - "ubercolour": 6, - "overlaySprite": 6, - "zoomed": 1, - "SniperCrouchRedS": 1, - "SniperCrouchBlueS": 1, - "sniperCrouchOverlay": 1, - "overlay": 1, - "omnomnomnom": 2, - "draw_sprite_ext_overlay": 7, - "omnomnomnomSprite": 2, - "omnomnomnomOverlay": 2, - "omnomnomnomindex": 4, - "c_white": 13, - "ubered": 7, - "7": 4, - "taunting": 2, - "tauntsprite": 2, - "tauntOverlay": 2, - "tauntindex": 2, - "humiliated": 1, - "humiliationPoses": 1, - "floor": 11, - "animationImage": 9, - "humiliationOffset": 1, - "animationOffset": 6, - "burnDuration": 2, - "burnIntensity": 2, - "numFlames": 1, - "/": 5, - "maxIntensity": 1, - "FlameS": 1, - "flameArray_x": 1, - "flameArray_y": 1, - "maxDuration": 1, - "demon": 4, - "demonX": 5, - "median": 2, - "demonY": 4, - "demonOffset": 4, - "demonDir": 2, - "abs": 9, - "dir": 3, - "demonFrame": 5, - "sprite_get_number": 1, - "*player.team": 2, - "dir*1": 2, - "downloadHandle": 3, - "url": 62, - "tmpfile": 3, - "window_oldshowborder": 2, - "window_oldfullscreen": 2, - "timeLeft": 1, - "counter": 1, - "AudioControlPlaySong": 1, - "window_get_showborder": 1, - "window_get_fullscreen": 1, - "window_set_fullscreen": 2, - "window_set_showborder": 1, - "global.updaterBetaChannel": 3, - "UPDATE_SOURCE_BETA": 1, - "UPDATE_SOURCE": 1, - "temp_directory": 1, - "httpGet": 1, - "while": 15, - "httpRequestStatus": 1, - "download": 1, - "isn": 1, - "s": 6, - "extract": 1, - "downloaded": 1, - "file": 2, - "now.": 1, - "extractzip": 1, - "working_directory": 6, - "execute_program": 1, - "game_end": 1, - "RoomChangeObserver": 1, - "set_little_endian_global": 1, - "file_exists": 5, - "file_delete": 3, - "backupFilename": 5, - "file_find_first": 1, - "file_find_next": 1, - "file_find_close": 1, - "customMapRotationFile": 7, - "restart": 4, - "//import": 1, - "wav": 1, - "files": 1, - "music": 1, - "global.MenuMusic": 3, - "sound_add": 3, - "global.IngameMusic": 3, - "global.FaucetMusic": 3, - "sound_volume": 3, - "global.sendBuffer": 19, - "buffer_create": 7, - "global.tempBuffer": 3, - "global.HudCheck": 1, - "global.map_rotation": 19, - "ds_list_create": 5, - "global.CustomMapCollisionSprite": 1, - "window_set_region_scale": 1, - "ini_open": 2, - "global.playerName": 7, - "ini_read_string": 12, - "string_count": 2, - "string_copy": 32, - "min": 4, - "string_length": 25, - "MAX_PLAYERNAME_LENGTH": 2, - "global.fullscreen": 3, - "ini_read_real": 65, - "global.useLobbyServer": 2, - "global.hostingPort": 2, - "global.music": 2, - "MUSIC_BOTH": 1, - "global.playerLimit": 4, - "//thy": 1, - "playerlimit": 1, - "shalt": 1, - "exceed": 1, - "global.dedicatedMode": 7, - "show_message": 7, - "ini_write_real": 60, - "global.multiClientLimit": 2, - "global.particles": 2, - "PARTICLES_NORMAL": 1, - "global.monitorSync": 3, - "set_synchronization": 2, - "global.medicRadar": 2, - "global.showHealer": 2, - "global.showHealing": 2, - "global.showTeammateStats": 2, - "global.serverPluginsPrompt": 2, - "global.restartPrompt": 2, - "//user": 1, - "HUD": 1, - "settings": 1, - "global.timerPos": 2, - "global.killLogPos": 2, - "global.kothHudPos": 2, - "global.clientPassword": 1, - "global.shuffleRotation": 2, - "global.timeLimitMins": 2, - "max": 2, - "global.serverPassword": 2, - "global.mapRotationFile": 1, - "global.serverName": 2, - "global.welcomeMessage": 2, - "global.caplimit": 3, - "global.caplimitBkup": 1, - "global.autobalance": 2, - "global.Server_RespawntimeSec": 4, - "global.rewardKey": 1, - "unhex": 1, - "global.rewardId": 1, - "global.mapdownloadLimitBps": 2, - "isBetaVersion": 1, - "global.attemptPortForward": 2, - "global.serverPluginList": 3, - "global.serverPluginsRequired": 2, - "CrosshairFilename": 5, - "CrosshairRemoveBG": 4, - "global.queueJumping": 2, - "global.backgroundHash": 2, - "global.backgroundTitle": 2, - "global.backgroundURL": 2, - "global.backgroundShowVersion": 2, - "readClasslimitsFromIni": 1, - "global.currentMapArea": 1, - "global.totalMapAreas": 1, - "global.setupTimer": 1, - "global.joinedServerName": 2, - "global.serverPluginsInUse": 1, - "global.pluginPacketBuffers": 1, - "ds_map_create": 4, - "global.pluginPacketPlayers": 1, - "ini_write_string": 10, - "ini_key_delete": 1, - "global.classlimits": 10, - "CLASS_SCOUT": 1, - "CLASS_HEAVY": 2, - "CLASS_DEMOMAN": 1, - "CLASS_SPY": 1, - "//screw": 1, - "index": 11, - "we": 5, - "will": 1, - "start": 1, - "//map_truefort": 1, - "maps": 37, - "//map_2dfort": 1, - "//map_conflict": 1, - "//map_classicwell": 1, - "//map_waterway": 1, - "//map_orange": 1, - "//map_dirtbowl": 1, - "//map_egypt": 1, - "//arena_montane": 1, - "//arena_lumberyard": 1, - "//gen_destroy": 1, - "//koth_valley": 1, - "//koth_corinth": 1, - "//koth_harvest": 1, - "//dkoth_atalia": 1, - "//dkoth_sixties": 1, - "//Server": 1, - "respawn": 1, - "time": 1, - "calculator.": 1, - "Converts": 1, - "each": 18, - "second": 2, - "to": 62, - "frame.": 1, - "read": 1, - "multiply": 1, - "hehe": 1, - "global.Server_Respawntime": 3, - "global.mapchanging": 1, - "ini_close": 2, - "global.protocolUuid": 2, - "parseUuid": 2, - "PROTOCOL_UUID": 1, - "global.gg2lobbyId": 2, - "GG2_LOBBY_UUID": 1, - "initRewards": 1, - "IPRaw": 3, - "portRaw": 3, - "doubleCheck": 8, - "global.launchMap": 5, - "parameter_count": 1, - "parameter_string": 8, - "global.serverPort": 1, - "global.serverIP": 1, - "global.isHost": 1, - "Client": 1, - "global.customMapdesginated": 2, - "fileHandle": 6, - "mapname": 9, - "file_text_open_read": 1, - "file_text_eof": 1, - "file_text_read_string": 1, - "string_char_at": 13, - "chr": 3, - "it": 6, - "starts": 1, - "space": 4, - "tab": 2, - "string_delete": 1, - "delete": 1, - "that": 2, - "comment": 1, - "starting": 1, - "#": 3, - "ds_list_add": 23, - "file_text_readln": 1, - "file_text_close": 1, - "load": 1, - "from": 5, - "ini": 1, - "Maps": 9, - "section": 1, - "//Set": 1, - "up": 6, - "rotation": 1, - "stuff": 2, - "sort_list": 7, - "*maps": 1, - "ds_list_sort": 1, - "ds_list_size": 11, - "ds_list_find_value": 9, - "mod": 1, - "ds_list_destroy": 4, - "global.gg2Font": 2, - "font_add_sprite": 2, - "gg2FontS": 1, - "ord": 16, - "global.countFont": 1, - "countFontS": 1, - "draw_set_font": 1, - "cursor_sprite": 1, - "CrosshairS": 5, - "directory_exists": 2, - "directory_create": 2, - "AudioControl": 1, - "SSControl": 1, - "message_background": 1, - "popupBackgroundB": 1, - "message_button": 1, - "popupButtonS": 1, - "message_text_font": 1, - "message_button_font": 1, - "message_input_font": 1, - "//Key": 1, - "Mapping": 1, - "global.jump": 1, - "global.down": 1, - "global.left": 1, - "global.right": 1, - "global.attack": 1, - "MOUSE_LEFT": 1, - "global.special": 1, - "MOUSE_RIGHT": 1, - "global.taunt": 1, - "global.chat1": 1, - "global.chat2": 1, - "global.chat3": 1, - "global.medic": 1, - "global.drop": 1, - "global.changeTeam": 1, - "global.changeClass": 1, - "global.showScores": 1, - "vk_shift": 1, - "calculateMonthAndDay": 1, - "loadplugins": 1, - "registry_set_root": 1, - "HKLM": 1, - "global.NTKernelVersion": 1, - "registry_read_string_ext": 1, - "CurrentVersion": 1, - "SIC": 1, - "sprite_replace": 1, - "sprite_set_offset": 1, - "sprite_get_width": 1, - "/2": 2, - "sprite_get_height": 1, - "AudioControlToggleMute": 1, - "room_goto_fix": 2, - "Menu": 2, - "assert_true": 1, - "_assert_error_popup": 2, - "string_repeat": 2, - "_assert_newline": 2, - "assert_false": 1, - "assert_equal": 1, - "//Safe": 1, - "equality": 1, - "check": 1, - "won": 1, - "support": 1, - "show_error": 2, - "instead": 1, - "_assert_debug_value": 1, - "//String": 1, - "is_string": 2, - "os_browser": 1, - "browser_not_a_browser": 1, - "string_replace_all": 1, - "//Numeric": 1, - "GMTuple": 1, - "jso_encode_string": 1, - "failed": 56, - "encode": 8, - "escape": 2, - "jso_encode_map": 4, - "empty": 13, - "key": 17, - "one": 42, - "key1": 3, - "key2": 3, - "multi": 7, - "jso_encode_list": 3, - "three": 36, - "_jso_decode_string": 5, - "decode": 36, - "small": 1, - "The": 6, - "quick": 2, - "brown": 2, - "fox": 2, - "jumps": 3, - "over": 2, - "lazy": 2, - "dog.": 2, - "simple": 1, - "characters": 3, - "Waahoo": 1, - "negg": 1, - "mixed": 1, - "_jso_decode_boolean": 2, - "_jso_decode_real": 11, - "standard": 1, - "zero": 4, - "signed": 2, - "decimal": 1, - "digits": 1, - "positive": 7, - "negative": 7, - "exponent": 4, - "_jso_decode_integer": 3, - "_jso_decode_map": 14, - "didn": 14, - "include": 14, - "right": 14, - "prefix": 14, - "#1": 14, - "#2": 14, - "entry": 29, - "pi": 2, - "bool": 2, - "waahoo": 10, - "woohah": 8, - "mix": 4, - "_jso_decode_list": 14, - "woo": 2, - "Empty": 4, - "should": 25, - "equal": 20, - "other.": 12, - "junk": 2, - "info": 1, - "taxi": 1, - "An": 4, - "filled": 4, - "map.": 2, - "A": 24, - "B": 18, - "C": 8, - "same": 6, - "content": 4, - "entered": 4, - "different": 12, - "orders": 4, - "D": 1, - "keys": 2, - "values": 4, - "six": 1, - "corresponding": 4, - "types": 4, - "other": 4, - "crash.": 4, - "list.": 2, - "Lists": 4, - "two": 16, - "entries": 2, - "also": 2, - "jso_map_check": 9, - "existing": 9, - "single": 11, - "jso_map_lookup": 3, - "found": 21, - "wrong": 10, - "trap": 2, - "jso_map_lookup_type": 3, - "four": 21, - "inexistent": 11, - "multiple": 20, - "jso_list_check": 8, - "jso_list_lookup": 3, - "jso_list_lookup_type": 3, - "inner": 1, - "indexing": 1, - "on": 4, - "bad": 1, - "jso_cleanup_map": 1, - "one_map": 1, - "hangCountMax": 2, - "//////////////////////////////////////": 2, - "kLeft": 12, - "checkLeft": 1, - "kLeftPushedSteps": 3, - "kLeftPressed": 2, - "checkLeftPressed": 1, - "kLeftReleased": 3, - "checkLeftReleased": 1, - "kRight": 12, - "checkRight": 1, - "kRightPushedSteps": 3, - "kRightPressed": 2, - "checkRightPressed": 1, - "kRightReleased": 3, - "checkRightReleased": 1, - "kUp": 5, - "checkUp": 1, - "kDown": 5, - "checkDown": 1, - "//key": 1, - "canRun": 1, - "kRun": 2, - "kJump": 6, - "checkJump": 1, - "kJumpPressed": 11, - "checkJumpPressed": 1, - "kJumpReleased": 5, - "checkJumpReleased": 1, - "cantJump": 3, - "global.isTunnelMan": 1, - "sTunnelAttackL": 1, - "holdItem": 1, - "kAttack": 2, - "checkAttack": 2, - "kAttackPressed": 2, - "checkAttackPressed": 1, - "kAttackReleased": 2, - "checkAttackReleased": 1, - "kItemPressed": 2, - "checkItemPressed": 1, - "xPrev": 1, - "yPrev": 1, - "stunned": 3, - "dead": 3, - "//////////////////////////////////////////": 2, - "colSolidLeft": 4, - "colSolidRight": 3, - "colLeft": 6, - "colRight": 6, - "colTop": 4, - "colBot": 11, - "colLadder": 3, - "colPlatBot": 6, - "colPlat": 5, - "colWaterTop": 3, - "colIceBot": 2, - "runKey": 4, - "isCollisionMoveableSolidLeft": 1, - "isCollisionMoveableSolidRight": 1, - "isCollisionLeft": 2, - "isCollisionRight": 2, - "isCollisionTop": 1, - "isCollisionBottom": 1, - "isCollisionLadder": 1, - "isCollisionPlatformBottom": 1, - "isCollisionPlatform": 1, - "isCollisionWaterTop": 1, - "oIce": 1, - "checkRun": 1, - "runHeld": 3, - "HANGING": 10, - "approximatelyZero": 4, - "xVel": 24, - "xAcc": 12, - "platformCharacterIs": 23, - "ON_GROUND": 18, - "DUCKING": 4, - "pushTimer": 3, - "SS_IsSoundPlaying": 2, - "global.sndPush": 4, - "playSound": 3, - "runAcc": 2, - "/xVel": 1, - "oCape": 2, - "oCape.open": 6, - "kJumped": 7, - "ladderTimer": 4, - "ladder": 5, - "oLadder": 4, - "ladder.x": 3, - "oLadderTop": 2, - "yAcc": 26, - "climbAcc": 2, - "FALLING": 8, - "STANDING": 2, - "departLadderXVel": 2, - "departLadderYVel": 1, - "JUMPING": 6, - "jumpButtonReleased": 7, - "jumpTime": 8, - "IN_AIR": 5, - "gravityIntensity": 2, - "yVel": 20, - "RUNNING": 3, - "//playSound": 1, - "global.sndLand": 1, - "grav": 22, - "global.hasGloves": 3, - "hangCount": 14, - "yVel*0.3": 1, - "oWeb": 2, - "obj.life": 1, - "initialJumpAcc": 6, - "xVel/2": 3, - "gravNorm": 7, - "global.hasCape": 1, - "jetpackFuel": 2, - "fallTimer": 2, - "global.hasJordans": 1, - "yAccLimit": 2, - "global.hasSpringShoes": 1, - "global.sndJump": 1, - "jumpTimeTotal": 2, - "//let": 1, - "continue": 4, - "jump": 1, - "jumpTime/jumpTimeTotal": 1, - "looking": 2, - "UP": 1, - "LOOKING_UP": 4, - "move_snap": 6, - "oTree": 4, - "oArrow": 5, - "instance_nearest": 1, - "obj.stuck": 1, - "//the": 2, - "can": 1, - "want": 1, - "because": 2, - "is": 9, - "too": 2, - "high": 1, - "yPrevHigh": 1, - "ll": 1, - "move": 2, - "correct": 1, - "distance": 1, - "but": 2, - "need": 1, - "shorten": 1, - "out": 4, - "little": 1, - "ratio": 1, - "xVelInteger": 2, - "/dist*0.9": 1, - "//can": 1, - "be": 4, - "changed": 1, - "moveTo": 2, - "xVelInteger*ratio": 1, - "yVelInteger*ratio": 1, - "slopeChangeInY": 1, - "maxDownSlope": 1, - "floating": 1, - "just": 1, - "above": 1, - "slope": 1, - "so": 2, - "down": 1, - "upYPrev": 1, - "<=upYPrev+maxDownSlope;y+=1)>": 1, - "hit": 1, - "solid": 1, - "below": 1, - "upYPrev=": 1, - "I": 1, - "know": 1, - "this": 2, - "doesn": 1, - "seem": 1, - "make": 1, - "sense": 1, - "variable": 1, - "all": 3, - "works": 1, - "correctly": 1, - "after": 1, - "loop": 1, - "y=": 1, - "figures": 1, - "what": 1, - "characterSprite": 1, - "sets": 1, - "previous": 2, - "previously": 1, - "statePrevPrev": 1, - "statePrev": 2, - "calculates": 1, - "image_speed": 9, - "based": 1, - "velocity": 1, - "runAnimSpeed": 1, - "sqrt": 1, - "sqr": 2, - "climbAnimSpeed": 1, - "setCollisionBounds": 3, - "8": 9, - "5": 5, - "DUCKTOHANG": 1, - "image_index": 1, - "limit": 5, - "animation": 1, - "always": 1, - "looks": 1, - "good": 1, - "playerId": 11, - "commandLimitRemaining": 4, - "variable_local_exists": 4, - "commandReceiveState": 1, - "commandReceiveExpectedBytes": 1, - "commandReceiveCommand": 1, - "socket": 40, - "player.socket": 12, - "tcp_receive": 3, - "player.commandReceiveExpectedBytes": 7, - "player.commandReceiveState": 7, - "player.commandReceiveCommand": 4, - "read_ubyte": 10, - "commandBytes": 2, - "commandBytesInvalidCommand": 1, - "commandBytesPrefixLength1": 1, - "commandBytesPrefixLength2": 1, - "default": 1, - "read_ushort": 2, - "PLAYER_LEAVE": 1, - "socket_destroy": 4, - "PLAYER_CHANGECLASS": 1, - "class": 8, - "getCharacterObject": 2, - "player.object": 12, - "SpawnRoom": 2, - "lastDamageDealer": 8, - "sendEventPlayerDeath": 4, - "BID_FAREWELL": 4, - "doEventPlayerDeath": 4, - "secondToLastDamageDealer": 2, - "lastDamageDealer.object": 2, - "lastDamageDealer.object.healer": 4, - "player.alarm": 4, - "<=0)>": 1, - "checkClasslimits": 2, - "ServerPlayerChangeclass": 2, - "sendBuffer": 1, - "PLAYER_CHANGETEAM": 1, - "newTeam": 7, - "balance": 5, - "redSuperiority": 6, - "calculate": 1, - "which": 1, - "bigger": 2, - "Player": 1, - "TEAM_SPECTATOR": 1, - "newClass": 4, - "ServerPlayerChangeteam": 1, - "ServerBalanceTeams": 1, - "CHAT_BUBBLE": 2, - "bubbleImage": 5, - "global.aFirst": 1, - "write_ubyte": 20, - "setChatBubble": 1, - "BUILD_SENTRY": 2, - "collision_circle": 1, - "player.object.x": 3, - "player.object.y": 3, - "Sentry": 1, - "player.object.nutsNBolts": 1, - "player.sentry": 2, - "player.object.onCabinet": 1, - "write_ushort": 2, - "global.serializeBuffer": 3, - "player.object.x*5": 1, - "player.object.y*5": 1, - "write_byte": 1, - "player.object.image_xscale": 2, - "buildSentry": 1, - "DESTROY_SENTRY": 1, - "DROP_INTEL": 1, - "player.object.intel": 1, - "sendEventDropIntel": 1, - "doEventDropIntel": 1, - "OMNOMNOMNOM": 2, - "player.humiliated": 1, - "player.object.taunting": 1, - "player.object.omnomnomnom": 1, - "player.object.canEat": 1, - "omnomnomnomend": 2, - "xscale": 1, - "TOGGLE_ZOOM": 2, - "toggleZoom": 1, - "PLAYER_CHANGENAME": 2, - "nameLength": 4, - "socket_receivebuffer_size": 3, - "KICK": 2, - "KICK_NAME": 1, - "current_time": 2, - "lastNamechange": 2, - "read_string": 9, - "write_string": 9, - "INPUTSTATE": 1, - "keyState": 1, - "netAimDirection": 1, - "aimDirection": 1, - "netAimDirection*360/65536": 1, - "event_user": 1, - "REWARD_REQUEST": 1, - "player.rewardId": 1, - "player.challenge": 2, - "rewardCreateChallenge": 1, - "REWARD_CHALLENGE_CODE": 1, - "write_binstring": 1, - "REWARD_CHALLENGE_RESPONSE": 1, - "answer": 3, - "authbuffer": 1, - "read_binstring": 1, - "rewardAuthStart": 1, - "challenge": 1, - "rewardId": 1, - "PLUGIN_PACKET": 1, - "packetID": 3, - "buf": 5, - "success": 3, - "write_buffer_part": 3, - "_PluginPacketPush": 1, - "buffer_destroy": 8, - "KICK_BAD_PLUGIN_PACKET": 1, - "CLIENT_SETTINGS": 2, - "mirror": 4, - "player.queueJump": 1, - "__http_init": 3, - "global.__HttpClient": 4, - "object_add": 1, - "object_set_persistent": 1, - "__http_split": 3, - "text": 19, - "delimeter": 7, - "count": 4, - "string_pos": 20, - "__http_parse_url": 4, - "ds_map_add": 15, - "colonPos": 22, - "slashPos": 13, - "queryPos": 12, - "ds_map_destroy": 6, - "__http_resolve_url": 2, - "baseUrl": 3, - "refUrl": 18, - "urlParts": 15, - "refUrlParts": 5, - "canParseRefUrl": 3, - "result": 11, - "ds_map_find_value": 22, - "__http_resolve_path": 3, - "ds_map_replace": 3, - "ds_map_exists": 11, - "ds_map_delete": 1, - "path": 10, - "query": 4, - "relUrl": 1, - "__http_construct_url": 2, - "basePath": 4, - "refPath": 7, - "parts": 29, - "refParts": 5, - "lastPart": 3, - "ds_list_delete": 5, - "part": 6, - "ds_list_replace": 3, - "__http_parse_hex": 2, - "hexString": 4, - "hexValues": 3, - "digit": 4, - "__http_prepare_request": 4, - "client": 33, - "headers": 11, - "parsed": 18, - "destroyed": 3, - "CR": 10, - "LF": 5, - "CRLF": 17, - "tcp_connect": 1, - "errored": 19, - "error": 18, - "linebuf": 33, - "line": 19, - "statusCode": 6, - "reasonPhrase": 2, - "responseBody": 19, - "responseBodySize": 5, - "responseBodyProgress": 5, - "responseHeaders": 9, - "requestUrl": 2, - "requestHeaders": 2, - "ds_map_find_first": 1, - "ds_map_find_next": 1, - "socket_send": 1, - "__http_parse_header": 3, - "headerValue": 9, - "string_lower": 3, - "headerName": 4, - "__http_client_step": 2, - "socket_has_error": 1, - "socket_error": 1, - "__http_client_destroy": 20, - "available": 7, - "tcp_receive_available": 1, - "tcp_eof": 3, - "bytesRead": 6, - "c": 20, - "Reached": 2, - "HTTP": 1, - "defines": 1, - "sequence": 2, - "as": 1, - "marker": 1, - "protocol": 3, - "elements": 1, - "except": 2, - "entity": 1, - "body": 2, - "see": 1, - "appendix": 1, - "19": 1, - "3": 1, - "tolerant": 1, - "applications": 1, - "Strip": 1, - "trailing": 1, + "Files": 3, + "Generated": 4, + "MLB": 4, + "O": 4, + "OUT": 3, + "SML": 6, + "TypeCheck": 3, + "toInt": 1, + "int": 1, + "OptPred": 1, + "Target": 1, + "Yes": 1, + "Show": 1, + "Anns": 1, + "PathMap": 1, + "gcc": 5, + "ref": 45, + "arScript": 3, + "asOpts": 6, + "{": 79, + "opt": 34, + "pred": 15, + "OptPred.t": 3, + "}": 79, + "list": 10, + "[": 104, + "]": 108, + "ccOpts": 6, + "linkOpts": 6, + "buildConstants": 2, + "debugRuntime": 3, + "debugFormat": 5, + "Dwarf": 3, + "DwarfPlus": 3, + "Dwarf2": 3, + "Stabs": 3, + "StabsPlus": 3, + "option": 6, + "NONE": 47, + "expert": 3, + "explicitAlign": 3, + "Control.align": 1, + "explicitChunk": 2, + "Control.chunk": 1, + "explicitCodegen": 5, + "Native": 5, + "Explicit": 5, + "Control.codegen": 3, + "keepGenerated": 3, + "keepO": 3, + "output": 16, + "profileSet": 3, + "profileTimeSet": 3, + "runtimeArgs": 3, + "show": 2, + "Show.t": 1, + "stop": 10, + "Place.OUT": 1, + "parseMlbPathVar": 3, + "line": 9, + "String.t": 1, + "case": 83, + "String.tokens": 7, + "Char.isSpace": 8, + "var": 3, + "path": 7, + "SOME": 68, + "_": 83, + "readMlbPathMap": 2, + "file": 14, + "File.t": 12, + "not": 1, + "File.canRead": 1, + "Error.bug": 14, + "concat": 52, + "List.keepAllMap": 4, + "File.lines": 2, + "String.forall": 4, + "v": 4, + "targetMap": 5, + "arch": 11, + "MLton.Platform.Arch.t": 3, + "os": 13, + "MLton.Platform.OS.t": 3, + "target": 28, + "Promise.lazy": 1, + "targetsDir": 5, + "OS.Path.mkAbsolute": 4, + "relativeTo": 4, + "Control.libDir": 1, + "potentialTargets": 2, + "Dir.lsDirs": 1, + "targetDir": 5, + "osFile": 2, + "OS.Path.joinDirFile": 3, + "dir": 4, + "archFile": 2, + "File.contents": 2, + "List.first": 2, + "MLton.Platform.OS.fromString": 1, + "MLton.Platform.Arch.fromString": 1, + "in": 40, + "setTargetType": 3, + "usage": 48, + "List.peek": 7, + "...": 23, + "Control": 3, + "Target.arch": 2, + "Target.os": 2, + "hasCodegen": 8, + "cg": 21, + "z": 73, + "Control.Target.arch": 4, + "Control.Target.os": 2, + "Control.Format.t": 1, + "AMD64": 2, + "x86Codegen": 9, + "X86": 3, + "amd64Codegen": 8, + "<": 3, + "Darwin": 6, + "orelse": 7, + "Control.format": 3, + "Executable": 5, + "Archive": 4, + "hasNativeCodegen": 2, + "defaultAlignIs8": 3, + "Alpha": 1, + "ARM": 1, + "HPPA": 1, + "IA64": 1, + "MIPS": 1, + "Sparc": 1, + "S390": 1, + "makeOptions": 3, + "s": 168, + "Fail": 2, + "reportAnnotation": 4, + "flag": 12, + "e": 18, + "Control.Elaborate.Bad": 1, + "Control.Elaborate.Deprecated": 1, + "ids": 2, + "Control.warnDeprecated": 1, + "Out.output": 2, + "Out.error": 3, + "List.toString": 1, + "Control.Elaborate.Id.name": 1, + "Control.Elaborate.Good": 1, + "Control.Elaborate.Other": 1, + "Popt": 1, + "tokenizeOpt": 4, + "opts": 4, + "List.foreach": 5, + "tokenizeTargetOpt": 4, + "List.map": 3, + "Normal": 29, + "SpaceString": 48, + "Align4": 2, + "Align8": 2, + "Expert": 72, + "o": 8, + "List.push": 22, + "OptPred.Yes": 6, + "boolRef": 20, + "ChunkPerFunc": 1, + "OneChunk": 1, + "String.hasPrefix": 2, + "prefix": 3, + "String.dropPrefix": 1, + "Char.isDigit": 3, + "Int.fromString": 4, + "n": 4, + "Coalesce": 1, + "limit": 1, + "Bool": 10, + "closureConvertGlobalize": 1, + "closureConvertShrink": 1, + "String.concatWith": 2, + "Control.Codegen.all": 2, + "Control.Codegen.toString": 2, + "name": 7, + "value": 4, + "Compile.setCommandLineConstant": 2, + "contifyIntoMain": 1, + "debug": 4, + "Control.Elaborate.processDefault": 1, + "Control.defaultChar": 1, + "Control.defaultInt": 5, + "Control.defaultReal": 2, + "Control.defaultWideChar": 2, + "Control.defaultWord": 4, + "Regexp.fromString": 7, + "re": 34, + "Regexp.compileDFA": 4, + "diagPasses": 1, + "Control.Elaborate.processEnabled": 2, + "dropPasses": 1, + "intRef": 8, + "errorThreshhold": 1, + "emitMain": 1, + "exportHeader": 3, + "Control.Format.all": 2, + "Control.Format.toString": 2, + "gcCheck": 1, + "Limit": 1, "First": 1, - "status": 2, - "code": 2, - "first": 3, - "Response": 1, - "message": 1, - "Status": 1, - "Line": 1, - "consisting": 1, - "version": 4, - "followed": 1, - "numeric": 1, - "its": 1, - "associated": 1, - "textual": 1, - "phrase": 1, - "separated": 1, - "SP": 1, - "No": 3, - "allowed": 1, - "final": 1, - "httpVer": 2, - "spacePos": 11, - "response": 5, - "Other": 1, - "Blank": 1, + "Every": 1, + "Native.IEEEFP": 1, + "indentation": 1, + "Int": 8, + "i": 8, + "inlineNonRec": 6, + "small": 19, + "product": 19, + "#product": 1, + "inlineIntoMain": 1, + "loops": 18, + "inlineLeafA": 6, + "repeat": 18, + "size": 19, + "inlineLeafB": 6, + "keepCoreML": 1, + "keepDot": 1, + "keepMachine": 1, + "keepRSSA": 1, + "keepSSA": 1, + "keepSSA2": 1, + "keepSXML": 1, + "keepXML": 1, + "keepPasses": 1, + "libname": 9, + "loopPasses": 1, + "Int.toString": 3, + "markCards": 1, + "maxFunctionSize": 1, + "mlbPathVars": 4, + "@": 3, + "Native.commented": 1, + "Native.copyProp": 1, + "Native.cutoff": 1, + "Native.liveTransfer": 1, + "Native.liveStack": 1, + "Native.moveHoist": 1, + "Native.optimize": 1, + "Native.split": 1, + "Native.shuffle": 1, + "err": 1, + "optimizationPasses": 1, + "il": 10, + "set": 10, + "Result.Yes": 6, + "Result.No": 5, + "polyvariance": 9, + "hofo": 12, + "rounds": 12, + "preferAbsPaths": 1, + "profPasses": 1, + "profile": 6, + "ProfileNone": 2, + "ProfileAlloc": 1, + "ProfileCallStack": 3, + "ProfileCount": 1, + "ProfileDrop": 1, + "ProfileLabel": 1, + "ProfileTimeLabel": 4, + "ProfileTimeField": 2, + "profileBranch": 1, + "Regexp": 3, + "seq": 3, + "anys": 6, + "compileDFA": 3, + "profileC": 1, + "profileInclExcl": 2, + "profileIL": 3, + "ProfileSource": 1, + "ProfileSSA": 1, + "ProfileSSA2": 1, + "profileRaise": 2, + "profileStack": 1, + "profileVal": 1, + "Show.Anns": 1, + "Show.PathMap": 1, + "showBasis": 1, + "showDefUse": 1, + "showTypes": 1, + "Control.optimizationPasses": 4, + "String.equals": 4, + "Place.Files": 2, + "Place.Generated": 2, + "Place.O": 3, + "Place.TypeCheck": 1, + "#target": 2, + "Self": 2, + "Cross": 2, + "SpaceString2": 6, + "OptPred.Target": 6, + "#1": 1, + "trace": 4, + "#2": 2, + "typeCheck": 1, + "verbosity": 4, + "Silent": 3, + "Top": 5, + "Pass": 1, + "Detail": 1, + "warnAnn": 1, + "warnDeprecated": 1, + "zoneCutDepth": 1, + "style": 6, + "arg": 3, + "desc": 3, + "mainUsage": 3, + "parse": 2, + "Popt.makeUsage": 1, + "showExpert": 1, + "commandLine": 5, + "args": 8, + "lib": 2, + "libDir": 2, + "OS.Path.mkCanonical": 1, + "result": 1, + "targetStr": 3, + "libTargetDir": 1, + "targetArch": 4, + "archStr": 1, + "String.toLower": 2, + "MLton.Platform.Arch.toString": 2, + "targetOS": 5, + "OSStr": 2, + "MLton.Platform.OS.toString": 1, + "positionIndependent": 3, + "format": 7, + "MinGW": 4, + "Cygwin": 4, + "Library": 6, + "LibArchive": 3, + "Control.positionIndependent": 1, + "align": 1, + "codegen": 4, + "CCodegen": 1, + "MLton.Rusage.measureGC": 1, + "exnHistory": 1, + "Bool.toString": 1, + "Control.profile": 1, + "Control.ProfileCallStack": 1, + "sizeMap": 1, + "Control.libTargetDir": 1, + "ty": 4, + "Bytes.toBits": 1, + "Bytes.fromInt": 1, + "lookup": 4, + "use": 2, + "on": 1, + "must": 1, + "x86": 1, + "with": 1, + "ieee": 1, + "fp": 1, + "can": 1, + "No": 1, + "Out.standard": 1, + "input": 22, + "rest": 3, + "inputFile": 1, + "File.base": 5, + "File.fileOf": 1, + "start": 6, + "base": 3, + "rec": 1, + "loop": 3, + "suf": 14, + "hasNum": 2, + "sufs": 2, + "String.hasSuffix": 2, + "suffix": 8, + "Place.t": 1, + "List.exists": 1, + "File.withIn": 1, + "csoFiles": 1, + "Place.compare": 1, + "GREATER": 5, + "Place.toString": 2, + "EQUAL": 5, + "LESS": 5, + "printVersion": 1, + "tempFiles": 3, + "tmpDir": 2, + "tmpVar": 2, + "default": 2, + "MLton.Platform.OS.host": 2, + "Process.getEnv": 1, + "d": 32, + "temp": 3, + "out": 9, + "File.temp": 1, + "OS.Path.concat": 1, + "Out.close": 2, + "maybeOut": 10, + "maybeOutBase": 4, + "File.extension": 3, + "outputBase": 2, + "ext": 1, + "OS.Path.splitBaseExt": 1, + "defLibname": 6, + "OS.Path.splitDirFile": 1, + "String.extract": 1, + "toAlNum": 2, + "c": 42, + "Char.isAlphaNum": 1, + "#": 3, + "CharVector.map": 1, + "atMLtons": 1, + "Vector.fromList": 1, + "tokenize": 1, + "rev": 2, + "gccDebug": 3, + "asDebug": 2, + "compileO": 3, + "inputs": 7, + "libOpts": 2, + "System.system": 4, + "List.concat": 4, + "linkArchives": 1, + "String.contains": 1, + "File.move": 1, + "from": 1, + "to": 1, + "mkOutputO": 3, + "Counter.t": 3, + "File.dirOf": 2, + "Counter.next": 1, + "compileC": 2, + "debugSwitches": 2, + "compileS": 2, + "compileCSO": 1, + "List.forall": 1, + "Counter.new": 1, + "oFiles": 2, + "List.fold": 1, + "ac": 4, + "extension": 6, + "Option.toString": 1, + "mkCompileSrc": 1, + "listFiles": 2, + "elaborate": 1, + "compile": 2, + "outputs": 2, + "r": 3, + "make": 1, + "Int.inc": 1, + "Out.openOut": 1, + "print": 4, + "outputHeader": 2, + "done": 3, + "Control.No": 1, + "l": 2, + "Layout.output": 1, + "Out.newline": 1, + "Vector.foreach": 1, + "String.translate": 1, + "/": 1, + "Type": 1, + "Check": 1, + ".c": 1, + ".s": 1, + "invalid": 1, + "MLton": 1, + "Exn.finally": 1, + "File.remove": 1, + "doit": 1, + "Process.makeCommandLine": 1, + "main": 1, + "mainWrapped": 1, + "OS.Process.exit": 1, + "CommandLine.arguments": 1, + "RedBlackTree": 1, + "key": 16, + "entry": 12, + "dict": 17, + "Empty": 15, + "Red": 41, + "local": 1, + "lk": 4, + "tree": 4, + "and": 2, + "zipper": 3, + "TOP": 5, + "LEFTB": 10, + "RIGHTB": 10, + "delete": 3, + "zip": 19, + "Black": 40, + "LEFTR": 8, + "RIGHTR": 9, + "bbZip": 28, + "w": 17, + "delMin": 8, + "Match": 1, + "joinRed": 3, + "needB": 2, + "del": 8, + "NotFound": 2, + "entry1": 16, + "as": 7, + "key1": 8, + "datum1": 4, + "joinBlack": 1, + "insertShadow": 3, + "datum": 1, + "oldEntry": 7, + "ins": 8, + "left": 10, + "right": 10, + "restore_left": 1, + "restore_right": 1, + "app": 3, + "ap": 7, + "new": 1, + "insert": 2, + "table": 14, + "clear": 1 + }, + "Stata": { + "local": 6, + "inname": 1, + "outname": 1, + "program": 2, + "hello": 1, + "vers": 1, + "display": 1, + "end": 4, + "{": 441, + "*": 25, + "version": 2, + "mar2014": 1, + "}": 440, + "...": 30, + "Hello": 1, + "world": 1, + "p_end": 47, + "MAXDIM": 1, + "smcl": 1, + "Matthew": 2, + "White": 2, + "jan2014": 1, + "title": 7, + "Title": 1, + "phang": 4, + "cmd": 111, + "odkmeta": 17, + "hline": 1, + "Create": 4, + "a": 30, + "do": 22, + "-": 42, + "file": 18, + "to": 23, + "import": 9, + "ODK": 6, + "data": 4, + "marker": 10, + "syntax": 1, + "Syntax": 1, + "p": 2, + "using": 10, + "it": 61, + "help": 27, + "filename": 3, + "opt": 25, + "csv": 9, + "(": 60, + "csvfile": 3, + ")": 61, + "Using": 7, + "histogram": 2, + "as": 29, + "template.": 8, + "notwithstanding": 1, + "is": 31, + "rarely": 1, + "preceded": 3, + "by": 7, + "an": 6, + "underscore.": 1, + "cmdab": 5, + "s": 10, + "urvey": 2, + "surveyfile": 5, + "odkmeta##surveyopts": 2, + "surveyopts": 4, + "cho": 2, + "ices": 2, + "choicesfile": 4, + "odkmeta##choicesopts": 2, + "choicesopts": 5, + "[": 6, + "options": 1, + "]": 6, + "odbc": 2, + "the": 67, + "position": 1, + "of": 36, + "last": 1, + "character": 1, + "in": 24, + "first": 2, + "column": 18, + "+": 2, + "synoptset": 5, + "tabbed": 4, + "synopthdr": 4, + "synoptline": 8, + "syntab": 6, + "Main": 3, + "heckman": 2, + "p2coldent": 3, + "name": 20, + ".csv": 2, + "that": 21, + "contains": 3, + "metadata": 5, + "from": 6, + "survey": 14, + "worksheet": 5, + "choices": 10, + "Fields": 2, + "synopt": 16, + "drop": 1, + "attrib": 2, + "headers": 8, + "not": 8, + "field": 25, + "attributes": 10, + "with": 10, + "keep": 1, + "only": 3, + "rel": 1, + "ax": 1, + "ignore": 1, + "fields": 7, + "exist": 1, + "Lists": 1, + "ca": 1, + "oth": 1, + "er": 1, + "odkmeta##other": 1, + "other": 14, + "Stata": 5, + "value": 14, + "values": 3, + "select": 6, + "or_other": 5, + ";": 15, + "default": 8, + "max": 2, + "one": 5, + "line": 4, "write": 1, - "remainder": 1, - "Header": 1, - "Receiving": 1, - "write_buffer": 2, - "transfer": 6, - "encoding": 2, - "chunked": 4, - "Chunked": 1, - "let": 1, - "actualResponseBody": 8, - "actualResponseSize": 1, - "actualResponseBodySize": 3, - "Parse": 1, - "chunks": 1, - "chunk": 12, - "size": 7, - "extension": 3, - "HEX": 1, - "buffer_bytes_left": 6, - "chunkSize": 11, - "Read": 1, - "byte": 2, - "We": 1, - "semicolon": 1, - "beginning": 1, - "skip": 1, - "header": 2, - "Doesn": 1, - "did": 1, - "something": 1, - "Parsing": 1, - "was": 1, - "hexadecimal": 1, - "Is": 1, - "than": 1, - "remaining": 1, - "responseHaders": 1, - "location": 4, - "resolved": 5, - "http_new_get": 1, - "variable_global_exists": 2, - "http_new_get_ex": 1, - "http_step": 1, - "client.errored": 3, - "client.state": 3, - "http_status_code": 1, - "client.statusCode": 1, - "http_reason_phrase": 1, - "client.error": 1, - "client.reasonPhrase": 1, - "http_response_body": 1, - "client.responseBody": 1, - "http_response_body_size": 1, - "client.responseBodySize": 1, - "http_response_body_progress": 1, - "client.responseBodyProgress": 1, - "http_response_headers": 1, - "client.responseHeaders": 1, - "http_destroy": 1, - "playerObject": 1, - "playerID": 1, - "otherPlayerID": 1, - "otherPlayer": 1, - "sameVersion": 1, - "buffer": 1, - "plugins": 4, - "pluginsRequired": 2, - "usePlugins": 1, - "global.serverSocket": 10, - "gotServerHello": 2, - "room": 1, - "DownloadRoom": 1, - "keyboard_check": 1, - "vk_escape": 1, - "downloadingMap": 2, - "downloadMapBytes": 2, - "buffer_size": 2, - "downloadMapBuffer": 6, - "write_buffer_to_file": 1, - "downloadMapName": 3, - "roomchange": 2, - "do": 1, - "HELLO": 1, - "receivestring": 4, - "advertisedMapMd5": 1, - "receiveCompleteMessage": 1, - "Server": 3, - "sent": 7, - "illegal": 2, - "This": 2, - "server": 10, - "requires": 1, - "following": 2, - "play": 2, - "suggests": 1, - "optional": 1, - "Error": 2, - "ocurred": 1, - "loading": 1, - "plugins.": 1, - "Maps/": 2, - ".png": 2, - "Enter": 1, - "Password": 1, - "Incorrect": 1, - "Password.": 1, - "Incompatible": 1, - "version.": 1, - "Name": 1, - "Exploit": 1, - "plugin": 6, - "packet": 3, - "ID": 2, - "There": 1, - "are": 1, - "many": 1, - "connections": 1, - "your": 1, - "IP": 1, - "You": 1, + "each": 7, + "list": 13, + "on": 7, + "single": 1, + "Options": 1, + "replace": 7, + "overwrite": 1, + "existing": 1, + "p2colreset": 4, + "and": 18, + "are": 13, + "required.": 1, + "Change": 1, + "t": 2, + "ype": 1, + "header": 15, + "type": 7, + "attribute": 10, + "la": 2, + "bel": 2, + "label": 9, + "d": 1, + "isabled": 1, + "disabled": 4, + "li": 1, + "stname": 1, + "list_name": 6, + "maximum": 3, + "plus": 2, + "min": 2, + "minimum": 2, + "minus": 1, + "#": 6, + "constant": 2, + "for": 13, + "all": 3, + "labels": 8, + "description": 1, + "Description": 1, + "pstd": 20, + "creates": 1, + "worksheets": 1, + "XLSForm.": 1, + "The": 9, + "saved": 1, + "completes": 2, + "following": 1, + "tasks": 3, + "order": 1, + "anova": 1, + "phang2": 23, + "o": 12, + "Import": 2, + "lists": 2, + "Add": 1, + "char": 4, + "characteristics": 4, + "Split": 1, + "select_multiple": 6, + "variables": 8, + "Drop": 1, + "note": 1, + "format": 1, + "Format": 1, + "date": 1, + "time": 1, + "datetime": 1, + "Attach": 2, + "variable": 14, + "notes": 1, + "merge": 3, + "Merge": 1, + "repeat": 6, + "groups": 4, + "After": 1, "have": 2, "been": 1, - "kicked": 1, - "server.": 1, - "#Server": 1, - "went": 1, - "invalid": 1, - "internal": 1, - "#Exiting.": 1, - "full.": 1, - "ERROR": 1, - "when": 1, - "reading": 1, - "no": 1, - "such": 1, - "unexpected": 1, - "data.": 1, - "until": 1, - "hashList": 5, - "pluginname": 9, - "pluginhash": 4, - "realhash": 1, - "handle": 1, - "filesize": 1, - "progress": 1, - "tempfile": 1, - "tempdir": 1, - "lastContact": 2, - "isCached": 2, - "isDebug": 2, - "split": 1, - "checkpluginname": 1, - "ds_list_find_index": 1, - ".zip": 3, - "ServerPluginsCache": 6, - "@": 5, - ".zip.tmp": 1, - ".tmp": 2, - "ServerPluginsDebug": 1, - "Warning": 2, - "being": 2, - "loaded": 2, - "ServerPluginsDebug.": 2, - "Make": 2, - "sure": 2, - "clients": 1, - "they": 1, + "split": 4, + "can": 1, + "be": 12, + "removed": 1, + "without": 2, + "affecting": 1, + "tasks.": 1, + "User": 1, + "written": 2, + "supplements": 1, "may": 2, - "unable": 2, - "connect.": 2, - "you": 1, - "Downloading": 1, - "last_plugin.log": 2, - "plugin.gml": 1 - }, - "Volt": { - "module": 1, - "main": 2, - ";": 53, - "import": 7, - "core.stdc.stdio": 1, - "core.stdc.stdlib": 1, - "watt.process": 1, - "watt.path": 1, - "results": 1, - "list": 1, - "cmd": 1, - "int": 8, - "(": 37, - ")": 37, - "{": 12, - "auto": 6, - "cmdGroup": 2, - "new": 3, - "CmdGroup": 1, - "bool": 4, - "printOk": 2, - "true": 4, - "printImprovments": 2, - "printFailing": 2, - "printRegressions": 2, - "string": 1, - "compiler": 3, - "getEnv": 1, - "if": 7, - "is": 2, - "null": 3, - "printf": 6, - ".ptr": 14, - "return": 2, - "-": 3, - "}": 12, - "///": 1, - "@todo": 1, - "Scan": 1, - "for": 4, - "files": 1, - "tests": 2, - "testList": 1, - "total": 5, - "passed": 5, - "failed": 5, - "improved": 3, - "regressed": 6, - "rets": 5, - "Result": 2, - "[": 6, - "]": 6, - "tests.length": 3, - "size_t": 3, - "i": 14, - "<": 3, - "+": 14, - ".runTest": 1, - "cmdGroup.waitAll": 1, - "ret": 1, - "ret.ok": 1, - "cast": 5, - "ret.hasPassed": 4, - "&&": 2, - "ret.test.ptr": 4, - "ret.msg.ptr": 4, - "else": 3, - "fflush": 2, - "stdout": 1, - "xml": 8, - "fopen": 1, - "fprintf": 2, - "rets.length": 1, - ".xmlLog": 1, - "fclose": 1, - "rate": 2, - "float": 2, - "/": 1, - "*": 1, - "f": 1, - "double": 1 - }, - "Monkey": { - "Strict": 1, - "sample": 1, - "class": 1, - "from": 1, - "the": 1, - "documentation": 1, - "Class": 3, - "Game": 1, - "Extends": 2, - "App": 1, - "Function": 2, - "New": 1, - "(": 12, - ")": 12, - "End": 8, - "DrawSpiral": 3, - "clock": 3, - "Local": 3, - "w": 3, - "DeviceWidth/2": 1, - "For": 1, - "i#": 1, - "Until": 1, - "w*1.5": 1, - "Step": 1, - ".2": 1, - "x#": 1, - "y#": 1, - "x": 2, - "+": 5, - "i*Sin": 1, - "i*3": 1, - "y": 2, - "i*Cos": 1, - "i*2": 1, - "DrawRect": 1, - "Next": 1, - "hitbox.Collide": 1, - "event.pos": 1, - "Field": 2, - "updateCount": 3, - "Method": 4, - "OnCreate": 1, - "Print": 2, - "SetUpdateRate": 1, - "OnUpdate": 1, - "OnRender": 1, - "Cls": 1, - "updateCount*1.1": 1, - "Enemy": 1, - "Die": 1, - "Abstract": 1, - "field": 1, - "testField": 1, - "Bool": 2, - "True": 2, - "oss": 1, - "he": 2, - "-": 2, - "killed": 1, - "me": 1, - "b": 6, - "extending": 1, - "with": 1, - "generics": 1, - "VectorNode": 1, - "Node": 1, - "": 1, - "array": 1, - "syntax": 1, - "Global": 14, - "listOfStuff": 3, - "String": 4, - "[": 6, - "]": 6, - "lessStuff": 1, - "oneStuff": 1, - "a": 3, - "comma": 1, - "separated": 1, - "sequence": 1, - "text": 1, - "worstCase": 1, - "worst.List": 1, - "": 1, - "escape": 1, - "characers": 1, - "in": 1, + "make": 1, + "use": 3, + "any": 3, + "which": 6, + "imported": 4, + "characteristics.": 1, + "remarks": 1, + "Remarks": 1, + "uses": 3, + "helpb": 7, + "insheet": 4, + "data.": 1, + "long": 7, "strings": 1, - "string3": 1, - "string4": 1, - "string5": 1, - "string6": 1, - "prints": 1, - ".ToUpper": 1, - "Boolean": 1, - "shorttype": 1, - "boolVariable1": 1, - "boolVariable2": 1, - "False": 1, - "preprocessor": 1, - "keywords": 1, - "#If": 1, - "TARGET": 2, - "DoStuff": 1, - "#ElseIf": 1, - "DoOtherStuff": 1, - "#End": 1, - "operators": 1, - "|": 2, - "&": 1, - "c": 1 - }, - "SystemVerilog": { - "module": 3, - "endpoint_phy_wrapper": 2, - "(": 92, - "input": 12, - "clk_sys_i": 2, - "clk_ref_i": 6, - "clk_rx_i": 3, - "rst_n_i": 3, - "IWishboneMaster.master": 2, - "src": 1, - "IWishboneSlave.slave": 1, - "snk": 1, - "sys": 1, - "output": 6, - "[": 17, - "]": 17, - "td_o": 2, - "rd_i": 2, - "txn_o": 2, - "txp_o": 2, - "rxn_i": 2, - "rxp_i": 2, - ")": 92, - ";": 32, - "wire": 12, - "rx_clock": 3, - "parameter": 2, - "g_phy_type": 6, - "gtx_data": 3, - "gtx_k": 3, - "gtx_disparity": 3, - "gtx_enc_error": 3, - "grx_data": 3, - "grx_clk": 1, - "grx_k": 3, - "grx_enc_error": 3, - "grx_bitslide": 2, - "gtp_rst": 2, - "tx_clock": 3, - "generate": 1, - "if": 5, - "begin": 4, - "assign": 2, - "wr_tbi_phy": 1, - "U_Phy": 1, - ".serdes_rst_i": 1, - ".serdes_loopen_i": 1, - "b0": 5, - ".serdes_enable_i": 1, - "b1": 2, - ".serdes_tx_data_i": 1, - ".serdes_tx_k_i": 1, - ".serdes_tx_disparity_o": 1, - ".serdes_tx_enc_err_o": 1, - ".serdes_rx_data_o": 1, - ".serdes_rx_k_o": 1, - ".serdes_rx_enc_err_o": 1, - ".serdes_rx_bitslide_o": 1, - ".tbi_refclk_i": 1, - ".tbi_rbclk_i": 1, - ".tbi_td_o": 1, - ".tbi_rd_i": 1, - ".tbi_syncen_o": 1, - ".tbi_loopen_o": 1, - ".tbi_prbsen_o": 1, - ".tbi_enable_o": 1, - "end": 4, - "else": 2, - "//": 3, - "wr_gtx_phy_virtex6": 1, - "#": 3, - ".g_simulation": 2, - "U_PHY": 1, - ".clk_ref_i": 2, - ".tx_clk_o": 1, - ".tx_data_i": 1, - ".tx_k_i": 1, - ".tx_disparity_o": 1, - ".tx_enc_err_o": 1, - ".rx_rbclk_o": 1, - ".rx_data_o": 1, - ".rx_k_o": 1, - ".rx_enc_err_o": 1, - ".rx_bitslide_o": 1, - ".rst_i": 1, - ".loopen_i": 1, - ".pad_txn0_o": 1, - ".pad_txp0_o": 1, - ".pad_rxn0_i": 1, - ".pad_rxp0_i": 1, - "endgenerate": 1, - "wr_endpoint": 1, - ".g_pcs_16bit": 1, - ".g_rx_buffer_size": 1, - ".g_with_rx_buffer": 1, - ".g_with_timestamper": 1, - ".g_with_dmtd": 1, - ".g_with_dpi_classifier": 1, - ".g_with_vlans": 1, - ".g_with_rtu": 1, - "DUT": 1, - ".clk_sys_i": 1, - ".clk_dmtd_i": 1, - ".rst_n_i": 1, - ".pps_csync_p1_i": 1, - ".src_dat_o": 1, - "snk.dat_i": 1, - ".src_adr_o": 1, - "snk.adr": 1, - ".src_sel_o": 1, - "snk.sel": 1, - ".src_cyc_o": 1, - "snk.cyc": 1, - ".src_stb_o": 1, - "snk.stb": 1, - ".src_we_o": 1, - "snk.we": 1, - ".src_stall_i": 1, - "snk.stall": 1, - ".src_ack_i": 1, - "snk.ack": 1, - ".src_err_i": 1, - ".rtu_full_i": 1, - ".rtu_rq_strobe_p1_o": 1, - ".rtu_rq_smac_o": 1, - ".rtu_rq_dmac_o": 1, - ".rtu_rq_vid_o": 1, - ".rtu_rq_has_vid_o": 1, - ".rtu_rq_prio_o": 1, - ".rtu_rq_has_prio_o": 1, - ".wb_cyc_i": 1, - "sys.cyc": 1, - ".wb_stb_i": 1, - "sys.stb": 1, - ".wb_we_i": 1, - "sys.we": 1, - ".wb_sel_i": 1, - "sys.sel": 1, - ".wb_adr_i": 1, - "sys.adr": 1, - ".wb_dat_i": 1, - "sys.dat_o": 1, - ".wb_dat_o": 1, - "sys.dat_i": 1, - ".wb_ack_o": 1, - "sys.ack": 1, - "endmodule": 2, - "priority_encoder": 1, - "INPUT_WIDTH": 3, - "OUTPUT_WIDTH": 3, - "logic": 2, - "-": 4, - "input_data": 2, - "output_data": 3, - "int": 1, - "ii": 6, - "always_comb": 1, - "for": 2, - "<": 1, - "+": 3, - "function": 1, - "integer": 2, - "log2": 4, - "x": 6, - "endfunction": 1, - "fifo": 1, - "clk_50": 1, - "clk_2": 1, - "reset_n": 1, - "data_out": 1, - "empty": 1 - }, - "Grammatical Framework": { - "-": 594, - "(": 256, - "c": 73, - ")": 256, - "Aarne": 13, - "Ranta": 13, - "under": 33, - "LGPL": 33, - "instance": 5, - "LexFoodsFin": 2, - "of": 89, - "LexFoods": 12, - "open": 23, - "SyntaxFin": 2, - "ParadigmsFin": 1, - "in": 32, - "{": 579, - "flags": 32, - "coding": 29, - "utf8": 29, - ";": 1399, - "oper": 29, - "wine_N": 7, - "mkN": 46, - "pizza_N": 7, - "cheese_N": 7, - "fish_N": 8, - "fresh_A": 7, - "mkA": 47, - "warm_A": 8, - "italian_A": 7, - "expensive_A": 7, - "delicious_A": 7, - "boring_A": 7, - "}": 580, - "abstract": 1, - "Foods": 34, - "startcat": 1, - "Comment": 31, - "cat": 1, - "Item": 31, - "Kind": 33, - "Quality": 34, - "fun": 1, - "Pred": 30, - "This": 29, - "That": 29, - "These": 28, - "Those": 28, - "Mod": 29, - "Wine": 29, - "Cheese": 29, - "Fish": 29, - "Pizza": 28, - "Very": 29, - "Fresh": 29, - "Warm": 29, - "Italian": 29, - "Expensive": 29, - "Delicious": 29, - "Boring": 29, - "Vikash": 1, - "Rauniyar": 1, - "concrete": 33, - "FoodsHin": 2, - "param": 22, - "Gender": 94, - "Masc": 67, - "|": 122, - "Fem": 65, - "Number": 207, - "Sg": 184, - "Pl": 182, - "lincat": 28, - "s": 365, - "Str": 394, - "g": 132, - "n": 206, - "lin": 28, - "item": 36, - "quality": 90, - "item.s": 24, - "+": 480, - "quality.s": 50, - "item.g": 12, - "item.n": 29, - "copula": 33, - "kind": 115, - "kind.s": 46, - "kind.g": 38, - "regN": 15, - "regAdj": 61, - "p": 11, - "table": 148, - "case": 44, - "lark": 8, - "_": 68, - "mkAdj": 27, - "ms": 4, - "mp": 4, - "f": 16, - "a": 57, - "acch": 6, - "#": 14, - "path": 14, - ".": 13, - "prelude": 2, - "Inese": 1, - "Bernsone": 1, - "FoodsLav": 1, - "Prelude": 11, - "SS": 6, - "Q": 5, - "Defin": 9, - "ss": 13, - "Q1": 5, - "Ind": 14, - "det": 86, - "Def": 21, - "noun": 51, - "qual": 8, - "q": 10, - "spec": 2, - "qual.s": 8, - "Q2": 3, - "adjective": 22, - "specAdj": 2, - "m": 9, - "cn": 11, - "cn.g": 10, - "cn.s": 8, - "man": 10, - "men": 10, - "skaists": 5, - "skaista": 2, - "skaisti": 2, - "skaistas": 2, - "skaistais": 2, - "skaistaa": 2, - "skaistie": 2, - "skaistaas": 2, - "let": 8, - "skaist": 8, - "init": 4, - "Adjective": 9, - "Type": 9, - "a.s": 8, - "Jordi": 2, - "Saludes": 2, - "LexFoodsCat": 2, - "SyntaxCat": 2, - "ParadigmsCat": 1, - "M": 1, - "MorphoCat": 1, - "M.Masc": 2, - "FoodsEng": 1, - "language": 2, - "en_US": 1, - "regNoun": 38, - "adj": 38, - "noun.s": 7, - "car": 6, - "cold": 4, - "../foods": 1, - "present": 7, - "FoodsFre": 1, - "SyntaxFre": 1, - "ParadigmsFre": 1, - "Utt": 4, - "NP": 4, - "CN": 4, - "AP": 4, - "mkUtt": 4, - "mkCl": 4, - "mkNP": 16, - "this_QuantSg": 2, - "that_QuantSg": 2, - "these_QuantPl": 2, - "those_QuantPl": 2, - "mkCN": 20, - "mkAP": 28, - "very_AdA": 4, - "masculine": 4, - "feminine": 2, - "FoodsPes": 1, - "optimize": 1, - "noexpand": 1, - "Add": 8, - "prep": 11, - "Indep": 4, - "Attr": 9, - "kind.prep": 1, - "quality.prep": 1, - "at": 3, - "a.prep": 1, - "it": 2, - "must": 1, - "be": 1, - "written": 1, - "as": 2, - "x1": 3, - "x4": 2, - "pytzA": 3, - "pytzAy": 1, - "pytzAhA": 3, - "pr": 4, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "mrd": 8, - "tAzh": 8, - "tAzhy": 2, - "interface": 1, - "Syntax": 7, - "N": 4, - "A": 6, - "LexFoodsIta": 2, - "SyntaxIta": 2, - "ParadigmsIta": 1, - "FoodsOri": 1, - "Laurette": 2, - "Pretorius": 2, - "Sr": 2, - "&": 2, - "Jr": 2, - "and": 4, - "Ansu": 2, - "Berg": 2, - "FoodsAfr": 1, - "Predef": 3, - "AdjAP": 10, - "Predic": 3, - "declNoun_e": 2, - "declNoun_aa": 2, - "declNoun_ss": 2, - "declNoun_s": 2, - "veryAdj": 2, - "smartAdj_e": 4, - "Noun": 9, - "operations": 2, - "wyn": 1, - "kaas": 1, - "vis": 1, - "pizza": 1, - "x": 74, + "digits": 1, + "such": 2, + "simserial": 1, + "will": 9, + "numeric": 4, + "even": 1, + "if": 10, + "they": 2, + "more": 1, + "than": 3, + "digits.": 1, + "As": 1, + "result": 6, + "lose": 1, + "precision": 1, + ".": 22, + "makes": 1, + "limited": 1, + "mata": 1, + "Mata": 1, + "manage": 1, + "contain": 1, + "difficult": 1, + "characters.": 2, + "starts": 1, + "definitions": 1, + "several": 1, + "macros": 1, + "these": 4, + "constants": 1, + "uses.": 1, + "For": 4, + "instance": 1, + "macro": 1, + "datemask": 1, + "varname": 1, + "constraints": 1, + "names": 16, + "Further": 1, + "files": 1, + "often": 1, + "much": 1, + "longer": 1, + "length": 3, + "limit": 1, + "These": 2, + "differences": 1, + "convention": 1, + "lead": 1, + "three": 1, + "kinds": 1, + "problematic": 1, + "Long": 3, + "involve": 1, + "invalid": 1, + "combination": 1, + "characters": 3, + "example": 2, + "begins": 1, + "colon": 1, + "followed": 1, + "number.": 1, + "convert": 2, + "instead": 1, + "naming": 1, "v": 6, - "tk": 1, - "last": 3, - "y": 3, - "declAdj_e": 2, - "declAdj_g": 2, - "w": 15, - "declAdj_oog": 2, - "i": 2, - "x.s": 8, - "FoodsGer": 1, - "FoodsI": 6, - "with": 5, - "SyntaxGer": 2, - "LexFoodsGer": 2, - "incomplete": 1, - "this_Det": 2, - "that_Det": 2, - "these_Det": 2, - "those_Det": 2, - "../lib/src/prelude": 1, - "Zofia": 1, - "Stankiewicz": 1, - "FoodsJpn": 1, - "Style": 3, - "AdjUse": 4, - "t": 28, - "AdjType": 4, - "quality.t": 3, - "IAdj": 4, - "Plain": 3, - "APred": 8, - "Polite": 4, - "NaAdj": 4, - "na": 1, - "adjectives": 2, - "have": 2, + "concatenated": 1, + "positive": 1, + "integer": 1, + "v1": 1, + "unique": 1, + "but": 4, + "when": 1, + "converted": 3, + "truncated": 1, + "become": 3, + "duplicates.": 1, + "again": 1, + "names.": 6, + "form": 1, + "duplicates": 1, + "cannot": 2, + "chooses": 1, "different": 1, + "Because": 1, + "problem": 2, + "recommended": 1, + "you": 1, + "If": 2, + "its": 3, + "characteristic": 2, + "odkmeta##Odk_bad_name": 1, + "Odk_bad_name": 3, + "otherwise": 1, + "Most": 1, + "depend": 1, + "There": 1, + "two": 2, + "exceptions": 1, + "variables.": 1, + "error": 4, + "has": 6, + "or": 7, + "splitting": 2, + "would": 1, + "duplicate": 4, + "reshape": 2, + "groups.": 1, + "there": 2, + "merging": 2, + "code": 1, + "datasets.": 1, + "Where": 1, + "renaming": 2, + "left": 1, + "user.": 1, + "section": 2, + "designated": 2, + "area": 2, + "renaming.": 3, + "In": 3, + "reshaping": 1, + "group": 4, + "own": 2, + "Many": 1, "forms": 2, -<<<<<<< HEAD "require": 1, "others": 1, "few": 1, @@ -108900,396 +64481,361 @@ "<": 4, "*": 7, "m": 5, -======= - "attributes": 1, - "predicates": 2, - "for": 6, - "phrase": 1, - "types": 1, - "can": 1, - "form": 4, - "without": 1, - "the": 7, - "cannot": 1, - "d": 6, - "sakana": 6, - "chosenna": 2, - "chosen": 2, - "akai": 2, - "FoodsTur": 1, - "Case": 10, - "softness": 4, - "Softness": 5, - "h": 4, - "Harmony": 5, - "Reason": 1, - "excluding": 1, - "plural": 3, - "In": 1, - "Turkish": 1, - "if": 1, - "subject": 1, - "is": 6, - "not": 2, - "human": 2, - "being": 1, - "then": 1, - "singular": 1, - "used": 2, - "regardless": 1, - "number": 2, - "subject.": 1, - "Since": 1, - "all": 1, - "possible": 1, - "subjects": 1, - "are": 1, - "non": 1, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "do": 1, - "need": 1, - "to": 6, - "form.": 1, - "quality.softness": 1, - "quality.h": 1, - "quality.c": 1, - "Nom": 9, - "Gen": 5, - "a.c": 1, - "a.softness": 1, - "a.h": 1, - "I_Har": 4, - "Ih_Har": 4, - "U_Har": 4, - "Uh_Har": 4, - "Ih": 1, - "Uh": 1, - "Soft": 3, - "Hard": 3, - "num": 6, - "overload": 1, - "mkn": 1, - "peynir": 2, - "peynirler": 2, - "[": 2, - "]": 2, - "sarap": 2, - "saraplar": 2, - "sarabi": 2, - "saraplari": 2, - "italyan": 4, - "ca": 2, - "getSoftness": 2, - "getHarmony": 2, - "See": 1, - "comment": 1, - "lines": 1, - "excluded": 1, - "copula.": 1, - "base": 4, - "c@": 3, - "*": 1, - "/GF/lib/src/prelude": 1, - "Nyamsuren": 1, - "Erdenebadrakh": 1, - "FoodsMon": 1, - "prefixSS": 1, - "FoodsSwe": 1, - "SyntaxSwe": 2, - "LexFoodsSwe": 2, - "**": 1, - "sv_SE": 1, - "John": 1, - "J.": 1, - "Camilleri": 1, - "FoodsMlt": 1, - "uniAdj": 2, - "Create": 6, - "an": 2, - "full": 1, - "function": 1, - "Params": 4, - "Sing": 4, - "Plural": 2, - "iswed": 2, - "sewda": 2, - "suwed": 3, - "regular": 2, - "Param": 2, - "frisk": 4, - "eg": 1, - "tal": 1, - "buzz": 1, - "uni": 4, - "Singular": 1, - "inherent": 1, - "ktieb": 2, - "kotba": 2, - "Copula": 1, - "linking": 1, - "verb": 1, - "article": 3, - "taking": 1, - "into": 1, - "account": 1, - "first": 1, - "letter": 1, - "next": 1, - "word": 3, - "pre": 1, - "cons@": 1, - "cons": 1, - "determinant": 1, - "Sg/Pl": 1, - "string": 1, - "default": 1, - "masc": 3, - "gender": 2, - "FoodsFin": 1, - "ParadigmsSwe": 1, - "Rami": 1, - "Shashati": 1, - "FoodsPor": 1, - "mkAdjReg": 7, - "QualityT": 5, - "bonito": 2, - "bonita": 2, - "bonitos": 2, - "bonitas": 2, - "pattern": 1, - "adjSozinho": 2, - "sozinho": 3, - "sozinh": 4, - "Predef.tk": 2, - "independent": 1, - "adjUtil": 2, - "util": 3, - "uteis": 3, - "smart": 1, - "paradigm": 1, - "adjcetives": 1, - "ItemT": 2, - "KindT": 4, - "noun.g": 3, - "animal": 2, - "animais": 2, - "gen": 4, - "carro": 3, - "ParadigmsGer": 1, - "Dinesh": 1, - "Simkhada": 1, - "FoodsNep": 1, - "adjPl": 2, - "bor": 2, - "alltenses": 3, - "Dana": 1, - "Dannells": 1, - "Licensed": 1, - "FoodsHeb": 2, - "Species": 8, - "mod": 7, - "Modified": 5, - "sp": 11, - "Indef": 6, - "T": 2, - "regAdj2": 3, - "F": 2, - "Adj": 4, - "cn.mod": 2, - "gvina": 6, - "hagvina": 3, - "gvinot": 6, - "hagvinot": 3, - "defH": 7, - "replaceLastLetter": 7, - "tov": 6, - "tova": 3, - "tovim": 3, - "tovot": 3, - "italki": 3, - "italk": 4, - "Krasimir": 1, - "Angelov": 1, - "FoodsBul": 1, - "Neutr": 21, - "Agr": 3, - "ASg": 23, - "APl": 11, - "item.a": 2, - "FoodsTha": 1, - "SyntaxTha": 1, - "LexiconTha": 1, - "ParadigmsTha": 1, - "R": 4, - "ResTha": 1, - "R.thword": 4, - "Shafqat": 1, - "Virk": 1, - "FoodsUrd": 1, - "coupla": 2, - "Katerina": 2, - "Bohmova": 2, - "FoodsCze": 1, - "ResCze": 2, - "NounPhrase": 3, - "regnfAdj": 2, - "Martha": 1, - "Dis": 1, - "Brandt": 1, - "FoodsIce": 1, - "more": 1, - "commonly": 1, - "Iceland": 1, - "but": 1, - "Icelandic": 1, - "defOrInd": 2, - "order": 1, - "given": 1, - "mSg": 1, - "fSg": 1, - "nSg": 1, - "mPl": 1, - "fPl": 1, - "nPl": 1, - "mSgDef": 1, - "f/nSgDef": 1, - "_PlDef": 1, - "fem": 2, - "neutr": 2, - "x9": 1, - "ferskur": 5, - "fersk": 11, - "ferskt": 2, - "ferskir": 2, - "ferskar": 2, - "fersk_pl": 2, - "ferski": 2, - "ferska": 2, - "fersku": 2, - "": 1, - "<": 10, - "FoodsSpa": 1, - "SyntaxSpa": 1, - "StructuralSpa": 1, - "ParadigmsSpa": 1, - "FoodsChi": 1, - "quality.p": 2, - "kind.c": 11, - "geKind": 5, - "longQuality": 8, - "mkKind": 2, - "Julia": 1, - "Hammar": 1, - "FoodsEpo": 1, - "vino": 3, - "nova": 3, - "Ramona": 1, - "Enache": 1, - "FoodsRon": 1, - "NGender": 6, - "NMasc": 2, - "NFem": 3, - "NNeut": 2, - "mkTab": 5, - "mkNoun": 5, - "getAgrGender": 3, - "acesta": 2, - "aceasta": 2, - "gg": 3, - "det.s": 1, - "peste": 2, - "pesti": 2, - "scump": 2, - "scumpa": 2, - "scumpi": 2, - "scumpe": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "ng": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "FoodsTsn": 1, - "NounClass": 28, - "r": 9, - "b": 9, - "Bool": 5, - "p_form": 18, - "TType": 16, - "mkPredDescrCop": 2, - "item.c": 1, - "quality.p_form": 1, - "kind.w": 4, - "mkDemPron1": 3, - "kind.q": 4, - "mkDemPron2": 3, - "mkMod": 2, - "Lexicon": 1, - "mkNounNC14_6": 2, - "mkNounNC9_10": 4, - "smartVery": 2, - "mkVarAdj": 2, - "mkOrdAdj": 4, - "mkPerAdj": 2, - "mkVerbRel": 2, - "NC9_10": 14, - "NC14_6": 14, - "P": 4, - "V": 4, - "ModV": 4, - "y.b": 1, - "True": 3, - "y.w": 2, - "y.r": 2, - "y.c": 14, - "y.q": 4, - "smartQualRelPart": 5, - "x.t": 10, - "smartDescrCop": 5, - "False": 3, - "mkVeryAdj": 2, - "x.p_form": 2, - "mkVeryVerb": 3, - "mkQualRelPart_PName": 2, - "mkQualRelPart": 2, - "mkDescrCop_PName": 2, - "mkDescrCop": 2, - "FoodsIta": 1, - "FoodsAmh": 1, - "FoodsCat": 1, - "resource": 1, - "ne": 2, - "muz": 2, - "muzi": 2, - "msg": 3, - "fsg": 3, - "nsg": 3, - "mpl": 3, - "fpl": 3, - "npl": 3, - "mlad": 7, - "vynikajici": 7, - "Femke": 1, - "Johansson": 1, - "FoodsDut": 1, - "AForm": 4, - "AAttr": 3, - "regadj": 6, - "wijn": 3, - "koud": 3, - "duur": 2, - "dure": 2 + "firstForLoop": 3, + "i": 6, + "secondForLoop": 3, + ";": 2, + "println": 1, + "func": 24, + "greet": 2, + "day": 1, + "-": 21, + "return": 30, + "getGasPrices": 2, + "Double": 11, + "sumOf": 3, + "Int...": 1, + "Int": 19, + "sum": 3, + "returnFifteen": 2, + "y": 3, + "add": 2, + "makeIncrementer": 2, + "addOne": 2, + "increment": 2, + "hasAnyMatches": 2, + "list": 2, + "condition": 2, + "Bool": 4, + "item": 4, + "true": 2, + "false": 2, + "lessThanTen": 2, + "numbers.map": 2, + "result": 5, + "sort": 1, + "class": 7, + "Shape": 2, + "numberOfSides": 4, + "simpleDescription": 14, + "myVariable": 2, + "myConstant": 1, + "shape": 1, + "shape.numberOfSides": 1, + "shapeDescription": 1, + "shape.simpleDescription": 1, + "NamedShape": 3, + "init": 4, + "self.name": 1, + "Square": 7, + "sideLength": 17, + "self.sideLength": 2, + "super.init": 2, + "area": 1, + "override": 2, + "test": 1, + "test.area": 1, + "test.simpleDescription": 1, + "EquilateralTriangle": 4, + "perimeter": 1, + "get": 2, + "set": 1, + "newValue": 1, + "/": 1, + "triangle": 3, + "triangle.perimeter": 2, + "triangle.sideLength": 2, + "TriangleAndSquare": 2, + "willSet": 2, + "square.sideLength": 1, + "newValue.sideLength": 2, + "square": 2, + "size": 4, + "triangleAndSquare": 1, + "triangleAndSquare.square.sideLength": 1, + "triangleAndSquare.triangle.sideLength": 2, + "triangleAndSquare.square": 1, + "Counter": 2, + "count": 2, + "incrementBy": 1, + "amount": 2, + "numberOfTimes": 2, + "times": 4, + "counter": 1, + "counter.incrementBy": 1, + "optionalSquare": 2, + ".sideLength": 1, + "enum": 4, + "Rank": 2, + "Ace": 1, + "Two": 1, + "Three": 1, + "Four": 1, + "Five": 1, + "Six": 1, + "Seven": 1, + "Eight": 1, + "Nine": 1, + "Ten": 1, + "Jack": 1, + "Queen": 1, + "King": 1, + "self": 3, + ".Ace": 1, + ".Jack": 1, + ".Queen": 1, + ".King": 1, + "self.toRaw": 1, + "ace": 1, + "Rank.Ace": 1, + "aceRawValue": 1, + "ace.toRaw": 1, + "convertedRank": 1, + "Rank.fromRaw": 1, + "threeDescription": 1, + "convertedRank.simpleDescription": 1, + "Suit": 2, + "Spades": 1, + "Hearts": 1, + "Diamonds": 1, + "Clubs": 1, + ".Spades": 2, + ".Hearts": 1, + ".Diamonds": 1, + ".Clubs": 1, + "hearts": 1, + "Suit.Hearts": 1, + "heartsDescription": 1, + "hearts.simpleDescription": 1, + "implicitInteger": 1, + "implicitDouble": 1, + "explicitDouble": 1, + "struct": 2, + "Card": 2, + "rank": 2, + "suit": 2, + "threeOfSpades": 1, + ".Three": 1, + "threeOfSpadesDescription": 1, + "threeOfSpades.simpleDescription": 1, + "ServerResponse": 1, + "Result": 1, + "Error": 1, + "success": 2, + "ServerResponse.Result": 1, + "failure": 1, + "ServerResponse.Error": 1, + ".Result": 1, + "sunrise": 1, + "sunset": 1, + "serverResponse": 2, + ".Error": 1, + "error": 1, + "protocol": 1, + "ExampleProtocol": 5, + "mutating": 3, + "adjust": 4, + "SimpleClass": 2, + "anotherProperty": 1, + "a": 2, + "a.adjust": 1, + "aDescription": 1, + "a.simpleDescription": 1, + "SimpleStructure": 2, + "b": 1, + "b.adjust": 1, + "bDescription": 1, + "b.simpleDescription": 1, + "extension": 1, + "protocolValue": 1, + "protocolValue.simpleDescription": 1, + "repeat": 2, + "": 1, + "ItemType": 3, + "OptionalValue": 2, + "": 1, + "None": 1, + "Some": 1, + "T": 5, + "possibleInteger": 2, + "": 1, + ".None": 1, + ".Some": 1, + "anyCommonElements": 2, + "": 1, + "U": 4, + "Sequence": 2, + "GeneratorType": 3, + "Element": 3, + "Equatable": 1, + "lhs": 2, + "rhs": 2, + "lhsItem": 2, + "rhsItem": 2, + "label": 2, + "width": 2, + "widthLabel": 1 }, - "PostScript": { - "%": 23, - "PS": 1, + "SystemVerilog": { + "module": 3, + "endpoint_phy_wrapper": 2, + "(": 92, + "input": 12, + "clk_sys_i": 2, + "clk_ref_i": 6, + "clk_rx_i": 3, + "rst_n_i": 3, + "IWishboneMaster.master": 2, + "src": 1, + "IWishboneSlave.slave": 1, + "snk": 1, + "sys": 1, + "output": 6, + "[": 17, + "]": 17, + "td_o": 2, + "rd_i": 2, + "txn_o": 2, + "txp_o": 2, + "rxn_i": 2, + "rxp_i": 2, + ")": 92, + ";": 32, + "wire": 12, + "rx_clock": 3, + "parameter": 2, + "g_phy_type": 6, + "gtx_data": 3, + "gtx_k": 3, + "gtx_disparity": 3, + "gtx_enc_error": 3, + "grx_data": 3, + "grx_clk": 1, + "grx_k": 3, + "grx_enc_error": 3, + "grx_bitslide": 2, + "gtp_rst": 2, + "tx_clock": 3, + "generate": 1, + "if": 5, + "begin": 4, + "assign": 2, + "wr_tbi_phy": 1, + "U_Phy": 1, + ".serdes_rst_i": 1, + ".serdes_loopen_i": 1, + "b0": 5, + ".serdes_enable_i": 1, + "b1": 2, + ".serdes_tx_data_i": 1, + ".serdes_tx_k_i": 1, + ".serdes_tx_disparity_o": 1, + ".serdes_tx_enc_err_o": 1, + ".serdes_rx_data_o": 1, + ".serdes_rx_k_o": 1, + ".serdes_rx_enc_err_o": 1, + ".serdes_rx_bitslide_o": 1, + ".tbi_refclk_i": 1, + ".tbi_rbclk_i": 1, + ".tbi_td_o": 1, + ".tbi_rd_i": 1, + ".tbi_syncen_o": 1, + ".tbi_loopen_o": 1, + ".tbi_prbsen_o": 1, + ".tbi_enable_o": 1, + "end": 4, + "else": 2, + "//": 3, + "wr_gtx_phy_virtex6": 1, + "#": 3, + ".g_simulation": 2, + "U_PHY": 1, + ".clk_ref_i": 2, + ".tx_clk_o": 1, + ".tx_data_i": 1, + ".tx_k_i": 1, + ".tx_disparity_o": 1, + ".tx_enc_err_o": 1, + ".rx_rbclk_o": 1, + ".rx_data_o": 1, + ".rx_k_o": 1, + ".rx_enc_err_o": 1, + ".rx_bitslide_o": 1, + ".rst_i": 1, + ".loopen_i": 1, + ".pad_txn0_o": 1, + ".pad_txp0_o": 1, + ".pad_rxn0_i": 1, + ".pad_rxp0_i": 1, + "endgenerate": 1, + "wr_endpoint": 1, + ".g_pcs_16bit": 1, + ".g_rx_buffer_size": 1, + ".g_with_rx_buffer": 1, + ".g_with_timestamper": 1, + ".g_with_dmtd": 1, + ".g_with_dpi_classifier": 1, + ".g_with_vlans": 1, + ".g_with_rtu": 1, + "DUT": 1, + ".clk_sys_i": 1, + ".clk_dmtd_i": 1, + ".rst_n_i": 1, + ".pps_csync_p1_i": 1, + ".src_dat_o": 1, + "snk.dat_i": 1, + ".src_adr_o": 1, + "snk.adr": 1, + ".src_sel_o": 1, + "snk.sel": 1, + ".src_cyc_o": 1, + "snk.cyc": 1, + ".src_stb_o": 1, + "snk.stb": 1, + ".src_we_o": 1, + "snk.we": 1, + ".src_stall_i": 1, + "snk.stall": 1, + ".src_ack_i": 1, + "snk.ack": 1, + ".src_err_i": 1, + ".rtu_full_i": 1, + ".rtu_rq_strobe_p1_o": 1, + ".rtu_rq_smac_o": 1, + ".rtu_rq_dmac_o": 1, + ".rtu_rq_vid_o": 1, + ".rtu_rq_has_vid_o": 1, + ".rtu_rq_prio_o": 1, + ".rtu_rq_has_prio_o": 1, + ".wb_cyc_i": 1, + "sys.cyc": 1, + ".wb_stb_i": 1, + "sys.stb": 1, + ".wb_we_i": 1, + "sys.we": 1, + ".wb_sel_i": 1, + "sys.sel": 1, + ".wb_adr_i": 1, + "sys.adr": 1, + ".wb_dat_i": 1, + "sys.dat_o": 1, + ".wb_dat_o": 1, + "sys.dat_i": 1, + ".wb_ack_o": 1, + "sys.ack": 1, + "endmodule": 2, + "fifo": 1, + "clk_50": 1, + "clk_2": 1, + "reset_n": 1, + "data_out": 1, + "empty": 1, + "priority_encoder": 1, + "INPUT_WIDTH": 3, + "OUTPUT_WIDTH": 3, + "logic": 2, "-": 4, -<<<<<<< HEAD "input_data": 2, "output_data": 3, "int": 1, @@ -109556,2829 +65102,500 @@ "-": 9, "dos.": 1, "colorlinks": 1, -======= - "Adobe": 1, - "Creator": 1, - "Aaron": 1, - "Puchert": 1, - "Title": 1, - "The": 1, - "Sierpinski": 1, - "triangle": 1, - "Pages": 1, - "PageOrder": 1, - "Ascend": 1, - "BeginProlog": 1, - "/pageset": 1, - "{": 4, - "scale": 1, - "set": 1, - "cm": 1, - "translate": 1, - "setlinewidth": 1, - "}": 4, - "def": 2, - "/sierpinski": 1, - "dup": 4, - "gt": 1, - "[": 6, - "]": 6, - "concat": 5, - "sub": 3, - "sierpinski": 4, - "newpath": 1, - "moveto": 1, - "lineto": 2, - "closepath": 1, - "fill": 1, - "ifelse": 1, - "pop": 1, - "EndProlog": 1, - "BeginSetup": 1, - "<<": 1, - "/PageSize": 1, - "setpagedevice": 1, - "A4": 1, - "EndSetup": 1, - "Page": 1, - "Test": 1, - "pageset": 1, - "sqrt": 1, - "showpage": 1, - "EOF": 1 - }, - "CSS": { - ".clearfix": 8, - "{": 1661, - "*zoom": 48, - ";": 4219, - "}": 1705, - "before": 48, - "after": 96, - "display": 135, - "table": 44, - "content": 66, - "line": 97, - "-": 8839, - "height": 141, - "clear": 32, - "both": 30, - ".hide": 12, - "text": 129, - "font": 142, - "/0": 2, - "a": 268, - "color": 711, - "transparent": 148, - "shadow": 254, - "none": 128, - "background": 770, - "border": 912, - ".input": 216, - "block": 133, - "level": 2, - "width": 215, - "%": 366, - "min": 14, - "px": 2535, - "webkit": 364, - "box": 264, - "sizing": 27, - "moz": 316, - "article": 2, - "aside": 2, - "details": 2, - "figcaption": 2, - "figure": 2, - "footer": 2, - "header": 12, - "hgroup": 2, - "nav": 2, - "section": 2, - "audio": 4, - "canvas": 2, - "video": 4, - "inline": 116, - "*display": 20, - "not": 6, - "(": 748, - "[": 384, - "controls": 2, - "]": 384, - ")": 748, - "html": 4, - "size": 104, - "adjust": 6, - "ms": 13, - "focus": 232, - "outline": 30, - "thin": 8, - "dotted": 10, - "#333": 6, - "auto": 50, - "ring": 6, - "offset": 6, - "hover": 144, - "active": 46, - "sub": 4, - "sup": 4, - "position": 342, - "relative": 18, - "vertical": 56, - "align": 72, - "baseline": 4, - "top": 376, - "em": 6, - "bottom": 309, - "img": 14, - "max": 18, - "middle": 20, - "interpolation": 2, - "mode": 2, - "bicubic": 2, - "#map_canvas": 2, - ".google": 2, - "maps": 2, - "button": 18, - "input": 336, - "select": 90, - "textarea": 76, - "margin": 424, - "*overflow": 3, - "visible": 8, - "normal": 18, - "inner": 37, - "padding": 174, - "type": 174, - "appearance": 6, - "cursor": 30, - "pointer": 12, - "label": 20, - "textfield": 2, - "search": 66, - "decoration": 33, - "cancel": 2, - "overflow": 21, - "@media": 2, - "print": 4, - "*": 2, - "important": 18, - "#000": 2, - "visited": 2, - "underline": 6, - "href": 28, - "attr": 4, - "abbr": 6, - "title": 10, - ".ir": 2, - "pre": 16, - "blockquote": 14, - "solid": 93, - "#999": 6, - "page": 6, - "break": 12, - "inside": 4, - "avoid": 6, - "thead": 38, - "group": 120, - "tr": 92, - "@page": 2, - "cm": 2, - "p": 14, - "h2": 14, - "h3": 14, - "orphans": 2, - "widows": 2, - "body": 3, - "family": 10, - "Helvetica": 6, - "Arial": 6, - "sans": 6, - "serif": 6, - "#333333": 26, - "#ffffff": 136, - "#0088cc": 24, - "#005580": 8, - ".img": 6, - "rounded": 2, - "radius": 534, - "polaroid": 2, - "#fff": 10, - "#ccc": 13, - "rgba": 409, - "circle": 18, - ".row": 126, - "left": 489, - "class*": 100, - "float": 84, - ".container": 32, - ".navbar": 332, - "static": 14, - "fixed": 36, - ".span12": 4, - ".span11": 4, - ".span10": 4, - ".span9": 4, - ".span8": 4, - ".span7": 4, - ".span6": 4, - ".span5": 4, - ".span4": 4, - ".span3": 4, - ".span2": 4, - ".span1": 4, - ".offset12": 6, - ".offset11": 6, - ".offset10": 6, - ".offset9": 6, - ".offset8": 6, - ".offset7": 6, - ".offset6": 6, - ".offset5": 6, - ".offset4": 6, - ".offset3": 6, - ".offset2": 6, - ".offset1": 6, - "fluid": 126, - "*margin": 70, - "first": 179, - "child": 301, - ".controls": 28, - "row": 20, - "+": 105, - "*width": 26, - ".pull": 16, - "right": 258, - ".lead": 2, - "weight": 28, - "small": 66, - "strong": 2, - "bold": 14, - "style": 21, - "italic": 4, - "cite": 2, - ".muted": 2, - "#999999": 50, - "a.muted": 4, - "#808080": 2, - ".text": 14, - "warning": 33, - "#c09853": 14, - "a.text": 16, - "#a47e3c": 4, - "error": 10, - "#b94a48": 20, - "#953b39": 6, - "info": 37, - "#3a87ad": 18, - "#2d6987": 6, - "success": 35, - "#468847": 18, - "#356635": 6, - "center": 17, - "h1": 11, - "h4": 20, - "h5": 6, - "h6": 6, - "inherit": 8, - "rendering": 2, - "optimizelegibility": 2, - ".page": 2, - "#eeeeee": 31, - "ul": 84, - "ol": 10, - "li": 205, - "ul.unstyled": 2, - "ol.unstyled": 2, - "list": 44, - "ul.inline": 4, - "ol.inline": 4, - "dl": 2, - "dt": 6, - "dd": 6, - ".dl": 12, - "horizontal": 60, - "hidden": 9, - "ellipsis": 2, - "white": 25, - "space": 23, - "nowrap": 14, - "hr": 2, - "data": 2, - "original": 2, - "help": 2, - "abbr.initialism": 2, - "transform": 4, - "uppercase": 4, - "blockquote.pull": 10, - "q": 4, - "address": 2, - "code": 6, - "Monaco": 2, - "Menlo": 2, - "Consolas": 2, - "monospace": 2, - "#d14": 2, - "#f7f7f9": 2, - "#e1e1e8": 2, - "word": 6, - "all": 10, - "wrap": 6, - "#f5f5f5": 26, - "pre.prettyprint": 2, - ".pre": 2, - "scrollable": 2, - "y": 2, - "scroll": 2, - ".label": 30, - ".badge": 30, - "empty": 7, - "a.label": 4, - "a.badge": 4, - "#f89406": 27, - "#c67605": 4, - "inverse": 110, - "#1a1a1a": 2, - ".btn": 506, - "mini": 34, - "collapse": 12, - "spacing": 3, - ".table": 180, - "th": 70, - "td": 66, - "#dddddd": 16, - "caption": 18, - "colgroup": 18, - "tbody": 68, - "condensed": 4, - "bordered": 76, - "separate": 4, - "*border": 8, - "topleft": 16, - "last": 118, - "topright": 16, - "tfoot": 12, - "bottomleft": 16, - "bottomright": 16, - "striped": 13, - "nth": 4, - "odd": 4, - "#f9f9f9": 12, - "cell": 2, - "td.span1": 2, - "th.span1": 2, - "td.span2": 2, - "th.span2": 2, - "td.span3": 2, - "th.span3": 2, - "td.span4": 2, - "th.span4": 2, - "td.span5": 2, - "th.span5": 2, - "td.span6": 2, - "th.span6": 2, - "td.span7": 2, - "th.span7": 2, - "td.span8": 2, - "th.span8": 2, - "td.span9": 2, - "th.span9": 2, - "td.span10": 2, - "th.span10": 2, - "td.span11": 2, - "th.span11": 2, - "td.span12": 2, - "th.span12": 2, - "tr.success": 4, - "#dff0d8": 6, - "tr.error": 4, - "#f2dede": 6, - "tr.warning": 4, - "#fcf8e3": 6, - "tr.info": 4, - "#d9edf7": 6, - "#d0e9c6": 2, - "#ebcccc": 2, - "#faf2cc": 2, - "#c4e3f3": 2, - "form": 38, - "fieldset": 2, - "legend": 6, - "#e5e5e5": 28, - ".uneditable": 80, - "#555555": 18, - "#cccccc": 18, - "inset": 132, - "transition": 36, - "linear": 204, - ".2s": 16, - "o": 48, - ".075": 12, - ".6": 6, - "multiple": 2, - "#fcfcfc": 2, - "allowed": 4, - "placeholder": 18, - ".radio": 26, - ".checkbox": 26, - ".radio.inline": 6, - ".checkbox.inline": 6, - "medium": 2, - "large": 40, - "xlarge": 2, - "xxlarge": 2, - "append": 120, - "prepend": 82, - "input.span12": 4, - "textarea.span12": 2, - "input.span11": 4, - "textarea.span11": 2, - "input.span10": 4, - "textarea.span10": 2, - "input.span9": 4, - "textarea.span9": 2, - "input.span8": 4, - "textarea.span8": 2, - "input.span7": 4, - "textarea.span7": 2, - "input.span6": 4, - "textarea.span6": 2, - "input.span5": 4, - "textarea.span5": 2, - "input.span4": 4, - "textarea.span4": 2, - "input.span3": 4, - "textarea.span3": 2, - "input.span2": 4, - "textarea.span2": 2, - "input.span1": 4, - "textarea.span1": 2, - "disabled": 36, - "readonly": 10, - ".control": 150, - "group.warning": 32, - ".help": 44, - "#dbc59e": 6, - ".add": 36, - "on": 36, - "group.error": 32, - "#d59392": 6, - "group.success": 32, - "#7aba7b": 6, - "group.info": 32, - "#7ab5d3": 6, - "invalid": 12, - "#ee5f5b": 18, - "#e9322d": 2, - "#f8b9b7": 6, - ".form": 132, - "actions": 10, - "#595959": 2, - ".dropdown": 126, - "menu": 42, - ".popover": 14, - "z": 12, - "index": 14, - "toggle": 84, - ".active": 86, - "#a9dba9": 2, - "#46a546": 2, - "prepend.input": 22, - "input.search": 2, - "query": 22, - ".search": 22, - "*padding": 36, - "image": 187, - "gradient": 175, - "#e6e6e6": 20, - "from": 40, - "to": 75, - "repeat": 66, - "x": 30, - "filter": 57, - "progid": 48, - "DXImageTransform.Microsoft.gradient": 48, - "startColorstr": 30, - "endColorstr": 30, - "GradientType": 30, - "#bfbfbf": 4, - "*background": 36, - "enabled": 18, - "false": 18, - "#b3b3b3": 2, - ".3em": 6, - ".2": 12, - ".05": 24, - ".btn.active": 8, - ".btn.disabled": 4, - "#d9d9d9": 4, - "s": 25, - ".15": 24, - "default": 12, - "opacity": 15, - "alpha": 7, - "class": 26, - "primary.active": 6, - "warning.active": 6, - "danger.active": 6, - "success.active": 6, - "info.active": 6, - "inverse.active": 6, - "primary": 14, - "#006dcc": 2, - "#0044cc": 20, - "#002a80": 2, - "primary.disabled": 2, - "#003bb3": 2, - "#003399": 2, - "#faa732": 3, - "#fbb450": 16, - "#ad6704": 2, - "warning.disabled": 2, - "#df8505": 2, - "danger": 21, - "#da4f49": 2, - "#bd362f": 20, - "#802420": 2, - "danger.disabled": 2, - "#a9302a": 2, - "#942a25": 2, - "#5bb75b": 2, - "#62c462": 16, - "#51a351": 20, - "#387038": 2, - "success.disabled": 2, - "#499249": 2, - "#408140": 2, - "#49afcd": 2, - "#5bc0de": 16, - "#2f96b4": 20, - "#1f6377": 2, - "info.disabled": 2, - "#2a85a0": 2, - "#24748c": 2, - "#363636": 2, - "#444444": 10, - "#222222": 32, - "#000000": 14, - "inverse.disabled": 2, - "#151515": 12, - "#080808": 2, - "button.btn": 4, - "button.btn.btn": 6, - ".btn.btn": 6, - "link": 28, - "url": 4, - "no": 2, - ".icon": 288, - ".nav": 308, - "pills": 28, - "submenu": 8, - "glass": 2, - "music": 2, - "envelope": 2, - "heart": 2, - "star": 4, - "user": 2, - "film": 2, - "ok": 6, - "remove": 6, - "zoom": 5, - "in": 10, - "out": 10, - "off": 4, - "signal": 2, - "cog": 2, - "trash": 2, - "home": 2, - "file": 2, - "time": 2, - "road": 2, - "download": 4, - "alt": 6, - "upload": 2, - "inbox": 2, - "play": 4, - "refresh": 2, - "lock": 2, - "flag": 2, - "headphones": 2, - "volume": 6, - "down": 12, - "up": 12, - "qrcode": 2, - "barcode": 2, - "tag": 2, - "tags": 2, - "book": 2, - "bookmark": 2, - "camera": 2, - "justify": 2, - "indent": 4, - "facetime": 2, - "picture": 2, - "pencil": 2, - "map": 2, - "marker": 2, - "tint": 2, - "edit": 2, - "share": 4, - "check": 2, - "move": 2, - "step": 4, - "backward": 6, - "fast": 4, - "pause": 2, - "stop": 32, - "forward": 6, - "eject": 2, - "chevron": 8, - "plus": 4, - "sign": 16, - "minus": 4, - "question": 2, - "screenshot": 2, - "ban": 2, - "arrow": 21, - "resize": 8, - "full": 2, - "asterisk": 2, - "exclamation": 2, - "gift": 2, - "leaf": 2, - "fire": 2, - "eye": 4, - "open": 4, - "close": 4, - "plane": 2, - "calendar": 2, - "random": 2, - "comment": 2, - "magnet": 2, - "retweet": 2, - "shopping": 2, - "cart": 2, - "folder": 4, - "hdd": 2, - "bullhorn": 2, - "bell": 2, - "certificate": 2, - "thumbs": 4, - "hand": 8, - "globe": 2, - "wrench": 2, - "tasks": 2, - "briefcase": 2, - "fullscreen": 2, - "toolbar": 8, - ".btn.large": 4, - ".large.dropdown": 2, - "group.open": 18, - ".125": 6, - ".btn.dropdown": 2, - "primary.dropdown": 2, - "warning.dropdown": 2, - "danger.dropdown": 2, - "success.dropdown": 2, - "info.dropdown": 2, - "inverse.dropdown": 2, - ".caret": 70, - ".dropup": 2, - ".divider": 8, - "tabs": 94, - "#ddd": 38, - "stacked": 24, - "tabs.nav": 12, - "pills.nav": 4, - ".dropdown.active": 4, - ".open": 8, - "li.dropdown.open.active": 14, - "li.dropdown.open": 14, - ".tabs": 62, - ".tabbable": 8, - ".tab": 8, - "below": 18, - "pane": 4, - ".pill": 6, - ".disabled": 22, - "*position": 2, - "*z": 2, - "#fafafa": 2, - "#f2f2f2": 22, - "#d4d4d4": 2, - "collapse.collapse": 2, - ".brand": 14, - "#777777": 12, - ".1": 24, - ".nav.pull": 2, - "navbar": 28, - "#ededed": 2, - "navbar.active": 8, - "navbar.disabled": 4, - "bar": 21, - "absolute": 8, - "li.dropdown": 12, - "li.dropdown.active": 8, - "menu.pull": 8, - "#1b1b1b": 2, - "#111111": 18, - "#252525": 2, - "#515151": 2, - "query.focused": 2, - "#0e0e0e": 2, - "#040404": 18, - ".breadcrumb": 8, - ".pagination": 78, - "span": 38, - "centered": 2, - ".pager": 34, - ".next": 4, - ".previous": 4, - ".thumbnails": 12, - ".thumbnail": 6, - "ease": 12, - "a.thumbnail": 4, - ".caption": 2, - ".alert": 34, - "#fbeed5": 2, - ".close": 2, - "#d6e9c6": 2, - "#eed3d7": 2, - "#bce8f1": 2, - "@": 8, - "keyframes": 8, - "progress": 15, - "stripes": 15, - "@keyframes": 2, - ".progress": 22, - "#f7f7f7": 3, - ".bar": 22, - "#0e90d2": 2, - "#149bdf": 11, - "#0480be": 10, - "deg": 20, - ".progress.active": 1, - "animation": 5, - "infinite": 5, - "#dd514c": 1, - "#c43c35": 5, - "danger.progress": 1, - "#5eb95e": 1, - "#57a957": 5, - "success.progress": 1, - "#4bb1cf": 1, - "#339bb9": 5, - "info.progress": 1, - "warning.progress": 1, - ".hero": 3, - "unit": 3, - "letter": 1, - ".media": 11, - "object": 1, - "heading": 1, - ".tooltip": 7, - "visibility": 1, - ".tooltip.in": 1, - ".tooltip.top": 2, - ".tooltip.right": 2, - ".tooltip.bottom": 2, - ".tooltip.left": 2, - "clip": 3, - ".popover.top": 3, - ".popover.right": 3, - ".popover.bottom": 3, - ".popover.left": 3, - "#ebebeb": 1, - ".arrow": 12, - ".modal": 5, - "backdrop": 2, - "backdrop.fade": 1, - "backdrop.fade.in": 1 - }, - "Forth": { - "(": 88, - "Block": 2, - "words.": 6, - ")": 87, - "variable": 3, - "blk": 3, - "current": 5, - "-": 473, - "block": 8, - "n": 22, - "addr": 11, - ";": 61, - "buffer": 2, - "evaluate": 1, - "extended": 3, - "semantics": 3, - "flush": 1, - "load": 2, - "...": 4, - "dup": 10, - "save": 2, - "input": 2, - "in": 4, - "@": 13, - "source": 5, - "#source": 2, - "interpret": 1, - "restore": 1, - "buffers": 2, - "update": 1, - "extension": 4, - "empty": 2, - "scr": 2, - "list": 1, - "bounds": 1, - "do": 2, - "i": 5, - "emit": 2, - "loop": 4, - "refill": 2, - "thru": 1, - "x": 10, - "y": 5, - "+": 17, - "swap": 12, - "*": 9, - "forth": 2, - "Copyright": 3, - "Lars": 3, - "Brinkhoff": 3, - "Kernel": 4, - "#tib": 2, - "TODO": 12, - ".r": 1, - ".": 5, - "[": 16, - "char": 10, - "]": 15, - "parse": 5, - "type": 3, - "immediate": 19, - "<": 14, - "flag": 4, - "r": 18, - "x1": 5, - "x2": 5, - "R": 13, - "rot": 2, - "r@": 2, - "noname": 1, - "align": 2, - "here": 9, - "c": 3, - "allot": 2, - "lastxt": 4, - "SP": 1, - "query": 1, - "tib": 1, - "body": 1, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "true": 1, - "tuck": 2, - "over": 5, - "u.r": 1, - "u": 3, - "if": 9, - "drop": 4, - "false": 1, - "else": 6, - "then": 5, - "unused": 1, - "value": 1, - "create": 2, - "does": 5, - "within": 1, - "compile": 2, - "Forth2012": 2, - "core": 1, - "action": 1, - "of": 3, - "defer": 2, - "name": 1, - "s": 4, - "HELLO": 4, - "KataDiversion": 1, - "Forth": 1, - "utils": 1, - "the": 7, - "stack": 3, - "EMPTY": 1, - "DEPTH": 2, - "IF": 10, - "BEGIN": 3, - "DROP": 5, - "UNTIL": 3, - "THEN": 10, - "power": 2, - "**": 2, - "n1": 2, - "n2": 2, - "n1_pow_n2": 1, - "SWAP": 8, - "DUP": 14, - "DO": 2, - "OVER": 2, - "LOOP": 2, - "NIP": 4, - "compute": 1, - "highest": 1, - "below": 1, - "N.": 1, - "e.g.": 2, - "MAXPOW2": 2, - "log2_n": 1, - "ABORT": 1, - "ELSE": 7, - "|": 4, - "I": 5, - "i*2": 1, - "/": 3, - "kata": 1, - "test": 1, - "given": 3, - "N": 6, - "has": 1, - "two": 2, - "adjacent": 2, - "bits": 3, - "NOT": 3, - "TWO": 3, - "ADJACENT": 3, - "BITS": 3, - "bool": 1, - "word": 9, - "uses": 1, - "following": 1, - "algorithm": 1, - "return": 5, - "A": 5, - "X": 5, - "LOG2": 1, - "end": 1, - "and": 3, - "OR": 1, - "INVERT": 1, - "maximum": 1, - "number": 4, - "which": 3, - "can": 2, - "be": 2, - "made": 2, - "with": 2, - "MAX": 2, - "NB": 3, - "m": 2, - "**n": 1, - "numbers": 1, - "or": 1, - "less": 1, - "have": 1, - "not": 1, - "bits.": 1, - "see": 1, - "http": 1, - "//www.codekata.com/2007/01/code_kata_fifte.html": 1, - "HOW": 1, - "MANY": 1, - "Tools": 2, - ".s": 1, - "depth": 1, - "traverse": 1, - "dictionary": 1, - "cr": 3, - "code": 3, - "assembler": 1, - "kernel": 1, - "bye": 1, - "cs": 2, - "pick": 1, - "roll": 1, - "editor": 1, - "forget": 1, - "reveal": 1, - "state": 2, - "tools": 1, - "nr": 1, - "synonym": 1, - "undefined": 2, - "bl": 4, - "find": 2, - "nip": 2, - "defined": 1, - "postpone": 14, - "invert": 1, - "/cell": 2, - "cell": 2, - "c@": 2, - "negate": 1, - "ahead": 2, - "resolve": 4, - "literal": 4, - "nonimmediate": 1, - "caddr": 1, - "C": 9, - "cells": 1, - "postponers": 1, - "execute": 1, - "unresolved": 4, - "orig": 5, - "chars": 1, - "orig1": 1, - "orig2": 1, - "branch": 5, - "dodoes_code": 1, - "begin": 2, - "dest": 5, - "while": 2, - "repeat": 2, - "until": 1, - "recurse": 1, - "pad": 3, - "If": 1, - "necessary": 1, - "keep": 1, - "parsing.": 1, - "string": 3, - "cmove": 1, - "abort": 3, - "": 1, - "Undefined": 1, - "ok": 1 - }, - "LFE": { - ";": 213, - "Copyright": 4, - "(": 217, - "c": 4, - ")": 231, - "-": 98, - "Robert": 3, - "Virding": 3, - "Licensed": 3, - "under": 9, - "the": 36, - "Apache": 3, - "License": 12, - "Version": 3, - "you": 3, - "may": 6, - "not": 5, - "use": 6, - "this": 3, - "file": 6, - "except": 3, - "in": 10, - "compliance": 3, - "with": 8, - "License.": 6, - "You": 3, - "obtain": 3, - "a": 8, - "copy": 3, - "of": 10, - "at": 4, - "http": 4, - "//www.apache.org/licenses/LICENSE": 3, - "Unless": 3, - "required": 3, - "by": 4, - "applicable": 3, - "law": 3, - "or": 6, - "agreed": 3, - "to": 10, - "writing": 3, - "software": 3, - "distributed": 6, - "is": 5, - "on": 4, - "an": 5, - "BASIS": 3, - "WITHOUT": 3, - "WARRANTIES": 3, - "OR": 3, - "CONDITIONS": 3, - "OF": 3, - "ANY": 3, - "KIND": 3, - "either": 3, - "express": 3, - "implied.": 3, - "See": 3, - "for": 5, - "specific": 3, - "language": 3, - "governing": 3, - "permissions": 3, - "and": 7, - "limitations": 3, - "File": 4, - "mnesia_demo.lfe": 1, - "Author": 3, - "Purpose": 3, - "A": 1, - "simple": 4, - "Mnesia": 2, - "demo": 2, - "LFE.": 1, - "This": 2, - "contains": 1, - "using": 1, - "LFE": 4, - "access": 1, - "tables.": 1, - "It": 1, - "shows": 2, - "how": 2, - "emp": 1, - "XXXX": 1, - "macro": 1, - "ETS": 1, - "match": 5, - "pattern": 1, - "together": 1, - "mnesia": 8, - "match_object": 1, - "specifications": 1, - "select": 1, - "Query": 2, - "List": 2, - "Comprehensions.": 1, - "defmodule": 2, - "mnesia_demo": 1, - "export": 2, - "new": 2, - "by_place": 1, - "by_place_ms": 1, - "by_place_qlc": 2, - "defrecord": 1, - "person": 8, - "name": 8, - "place": 7, - "job": 3, - "defun": 20, - "Start": 1, - "create": 4, - "table": 2, - "we": 1, - "will": 1, - "get": 21, - "memory": 1, - "only": 1, - "schema.": 1, - "start": 1, - "create_table": 1, - "#": 3, - "attributes": 1, - "Initialise": 1, - "table.": 1, - "let": 6, - "people": 1, - "spec": 1, - "[": 3, - "n": 4, - "p": 2, - "j": 2, - "]": 3, - "when": 1, - "tuple": 1, - "transaction": 2, - "f": 3, - "Use": 1, - "Comprehensions": 1, - "records": 1, - "lambda": 18, - "q": 2, - "qlc": 2, - "lc": 1, - "<": 1, - "e": 1, - "Duncan": 4, - "McGreggor": 4, - "": 2, - "object.lfe": 1, - "Demonstrating": 2, - "OOP": 1, - "closures": 1, - "The": 4, - "object": 16, - "system": 1, - "demonstrated": 1, - "below": 3, - "do": 2, + "linkcolor": 1, + "navy": 2, + "urlcolor": 1, + "black": 2, + "hyperref": 1, "following": 2, - "*": 6, - "objects": 2, - "call": 2, - "methods": 5, - "those": 1, - "have": 3, - "which": 1, - "can": 1, - "other": 1, - "update": 1, - "state": 4, - "instance": 2, - "variable": 2, - "Note": 1, - "however": 1, - "that": 1, - "his": 1, - "example": 2, - "does": 1, - "demonstrate": 1, - "inheritance.": 1, + "urls": 2, + "references": 1, + "a": 2, + "document.": 1, + "url": 2, + "Enables": 1, + "with": 5, + "tag": 1, + "all": 2, + "hypcap": 1, + "definecolor": 2, + "gray": 1, "To": 1, - "code": 2, - "cd": 1, - "examples": 1, - "../bin/lfe": 1, - "pa": 1, - "../ebin": 1, - "Load": 1, - "fish": 6, - "class": 3, - "slurp": 2, - "#Fun": 1, - "": 1, - "Execute": 1, - "some": 2, - "basic": 1, - "species": 7, - "mommy": 3, - "move": 4, - "Carp": 1, - "swam": 1, - "feet": 1, - "ok": 1, - "id": 9, - "Now": 1, - "s": 19, - "strictly": 1, - "necessary.": 1, - "When": 1, - "isn": 1, - "list": 13, - "children": 10, - "formatted": 1, - "verb": 2, - "self": 6, - "distance": 2, - "count": 7, - "erlang": 1, - "length": 1, - "method": 7, - "funcall": 23, - "define": 1, - "info": 1, - "reproduce": 1, - "Mode": 1, - "Code": 1, - "from": 2, - "Paradigms": 1, - "Artificial": 1, - "Intelligence": 1, - "Programming": 1, - "Peter": 1, - "Norvig": 1, - "gps1.lisp": 1, - "First": 1, - "version": 1, - "GPS": 1, - "General": 1, - "Problem": 1, - "Solver": 1, - "Converted": 1, - "Define": 1, - "macros": 1, - "global": 2, - "access.": 1, - "hack": 1, - "very": 1, - "naughty": 1, - "defsyntax": 2, - "defvar": 2, - "val": 2, - "v": 3, - "put": 1, - "getvar": 3, - "solved": 1, - "gps": 1, - "goals": 2, - "Set": 1, - "variables": 1, - "but": 1, - "existing": 1, - "*ops*": 1, - "*state*": 5, - "current": 1, - "conditions.": 1, - "if": 1, - "every": 1, - "fun": 1, - "achieve": 1, - "op": 8, - "action": 3, - "setvar": 2, - "set": 1, - "difference": 1, - "del": 5, - "union": 1, - "add": 3, - "drive": 1, - "son": 2, - "school": 2, - "preconds": 4, - "shop": 6, - "installs": 1, - "battery": 1, - "car": 1, - "works": 1, - "make": 2, - "communication": 2, - "telephone": 1, - "phone": 1, - "book": 1, - "give": 1, - "money": 3, - "has": 1, - "church.lfe": 1, - "church": 20, - "numerals": 1, - "calculus": 1, - "was": 1, - "used": 1, - "section": 1, - "user": 1, - "guide": 1, - "here": 1, - "//lfe.github.io/user": 1, - "guide/recursion/5.html": 1, - "Here": 1, - "usage": 1, - "five/0": 2, - "int2": 1, - "all": 1, - "zero": 2, - "x": 12, - "one": 1, - "two": 1, - "three": 1, - "four": 1, - "five": 1, - "int": 2, - "successor": 3, - "+": 2, - "int1": 1, - "numeral": 8, - "successor/1": 1, - "limit": 4, - "cond": 1, + "Dos.": 1, + "brightness": 1, + "RGB": 1, + "coloring": 1, + "setlength": 12, + "parskip": 1, + "ex": 2, + "Sets": 1, + "space": 8, + "between": 1, + "paragraphs.": 2, + "parindent": 2, + "Indent": 1, + "first": 1, + "line": 2, + "new": 1, + "let": 11, + "VERBATIM": 2, + "verbatim": 2, + "def": 18, + "verbatim@font": 1, + "small": 8, + "ttfamily": 1, + "usepackage": 2, + "caption": 1, + "footnotesize": 2, + "subcaption": 1, + "captionsetup": 4, + "table": 2, + "labelformat": 4, + "simple": 3, + "labelsep": 4, + "period": 3, + "labelfont": 4, + "bf": 4, + "figure": 2, + "subtable": 1, + "parens": 1, + "subfigure": 1, + "TRUE": 1, + "FALSE": 1, + "SHOW": 3, + "HIDE": 2, + "thispagestyle": 5, + "empty": 6, + "listoftodos": 1, + "clearpage": 4, + "pagenumbering": 1, + "arabic": 2, + "shortname": 2, + "#1": 40, + "authorname": 2, + "#2": 17, + "coursename": 3, + "#3": 8, + "assignment": 3, + "#4": 4, + "duedate": 2, + "#5": 2, + "begin": 11, + "minipage": 4, + "textwidth": 4, + "flushleft": 2, + "hypertarget": 1, + "@assignment": 2, + "textbf": 5, + "end": 12, + "flushright": 2, + "renewcommand": 10, + "headrulewidth": 1, + "footrulewidth": 1, + "pagestyle": 3, + "fancyplain": 4, + "fancyhf": 2, + "lfoot": 1, + "hyperlink": 1, + "cfoot": 1, + "rfoot": 1, + "thepage": 2, + "pageref": 1, + "LastPage": 1, + "newcounter": 1, + "theproblem": 3, + "Problem": 2, + "counter": 1, + "environment": 1, + "problem": 1, + "addtocounter": 2, + "setcounter": 5, + "equation": 1, + "noindent": 2, + ".": 3, + "textit": 1, + "Default": 2, + "is": 2, + "omit": 1, + "pagebreaks": 1, + "after": 1, + "solution": 2, + "qqed": 2, + "hfill": 3, + "rule": 1, + "mm": 2, + "ifnum": 3, + "pagebreak": 2, + "fi": 15, + "show": 1, + "solutions.": 1, + "vspace": 2, + "em": 8, + "Solution.": 1, + "ifnum#1": 2, + "else": 9, + "chap": 1, + "section": 2, + "Sum": 3, + "n": 4, + "ensuremath": 15, + "sum_": 2, + "from": 5, + "infsum": 2, + "infty": 2, + "Infinite": 1, + "sum": 1, + "Int": 1, + "x": 4, + "int_": 1, + "mathrm": 1, + "d": 1, + "Integrate": 1, + "respect": 1, + "Lim": 2, + "displaystyle": 2, + "lim_": 1, + "Take": 1, + "limit": 1, + "infinity": 1, + "f": 1, + "Frac": 1, "/": 1, - "integer": 2 - }, - "Moocode": { - ";": 505, - "while": 15, - "(": 600, - "read": 1, - "player": 2, - ")": 593, - "endwhile": 14, - "I": 1, - "M": 1, - "P": 1, - "O": 1, - "R": 1, - "T": 2, - "A": 1, - "N": 1, - "The": 2, - "following": 2, - "code": 43, - "cannot": 1, - "be": 1, - "used": 1, - "as": 28, - "is.": 1, - "You": 1, - "will": 1, - "need": 1, - "to": 1, - "rewrite": 1, - "functionality": 1, - "that": 3, - "is": 6, - "not": 2, - "present": 1, - "in": 43, - "your": 1, - "server/core.": 1, - "most": 1, - "straight": 1, - "-": 98, - "forward": 1, - "target": 7, - "other": 1, - "than": 1, - "Stunt/Improvise": 1, - "a": 12, - "server/core": 1, - "provides": 1, - "map": 5, - "datatype": 1, - "and": 1, - "anonymous": 1, - "objects.": 1, - "Installation": 1, - "my": 1, - "server": 1, - "uses": 1, - "the": 4, - "object": 1, - "numbers": 1, - "#36819": 1, - "MOOcode": 4, - "Experimental": 2, - "Language": 2, - "Package": 2, - "#36820": 1, - "Changelog": 1, - "#36821": 1, - "Dictionary": 1, - "#36822": 1, - "Compiler": 2, - "#38128": 1, - "Syntax": 4, - "Tree": 1, - "Pretty": 1, - "Printer": 1, - "#37644": 1, - "Tokenizer": 2, - "Prototype": 25, - "#37645": 1, - "Parser": 2, - "#37648": 1, - "Symbol": 2, - "#37649": 1, - "Literal": 1, - "#37650": 1, - "Statement": 8, - "#37651": 1, - "Operator": 11, - "#37652": 1, - "Control": 1, - "Flow": 1, - "#37653": 1, - "Assignment": 2, - "#38140": 1, - "Compound": 1, - "#38123": 1, - "Prefix": 1, - "#37654": 1, - "Infix": 1, - "#37655": 1, - "Name": 1, - "#37656": 1, - "Bracket": 1, - "#37657": 1, - "Brace": 1, - "#37658": 1, - "If": 1, - "#38119": 1, - "For": 1, - "#38120": 1, - "Loop": 1, - "#38126": 1, - "Fork": 1, - "#38127": 1, - "Try": 1, - "#37659": 1, - "Invocation": 1, - "#37660": 1, - "Verb": 1, - "Selector": 2, - "#37661": 1, - "Property": 1, - "#38124": 1, - "Error": 1, - "Catching": 1, - "#38122": 1, - "Positional": 1, - "#38141": 1, - "From": 1, - "#37662": 1, - "Utilities": 1, - "#36823": 1, - "Tests": 4, - "#36824": 1, - "#37646": 1, - "#37647": 1, - ".": 30, - "parent": 1, - "plastic.tokenizer_proto": 4, - "@program": 29, - "_": 4, - "_ensure_prototype": 4, - "application/x": 27, - "moocode": 27, - "typeof": 11, - "this": 114, - "OBJ": 3, - "||": 19, - "raise": 23, - "E_INVARG": 3, - "_ensure_instance": 7, - "ANON": 2, - "plastic.compiler": 3, - "_lookup": 2, - "private": 1, - "{": 112, - "name": 9, - "}": 112, - "args": 26, - "if": 90, - "value": 73, - "this.variable_map": 3, - "[": 99, - "]": 102, - "E_RANGE": 17, - "return": 61, - "else": 45, - "tostr": 51, - "random": 3, - "this.reserved_names": 1, - "endif": 93, - "compile": 1, - "source": 32, - "options": 3, - "tokenizer": 6, - "this.plastic.tokenizer_proto": 2, - "create": 16, - "parser": 89, - "this.plastic.parser_proto": 2, - "compiler": 2, - "try": 2, - "statements": 13, - "except": 2, - "ex": 4, - "ANY": 3, - ".tokenizer.row": 1, - "endtry": 2, - "for": 31, - "statement": 29, - "statement.type": 10, - "@source": 3, - "p": 82, - "@compiler": 1, - "endfor": 31, - "ticks_left": 4, - "<": 13, - "seconds_left": 4, - "&&": 39, - "suspend": 4, - "statement.value": 20, - "elseif": 41, - "_generate": 1, - "isa": 21, - "this.plastic.sign_operator_proto": 1, - "|": 9, - "statement.first": 18, - "statement.second": 13, - "this.plastic.control_flow_statement_proto": 1, - "first": 22, - "statement.id": 3, - "this.plastic.if_statement_proto": 1, - "s": 47, - "respond_to": 9, - "@code": 28, - "@this": 13, - "+": 39, - "i": 29, - "length": 11, - "LIST": 6, - "this.plastic.for_statement_proto": 1, - "statement.subtype": 2, - "this.plastic.loop_statement_proto": 1, - "prefix": 4, - "this.plastic.fork_statement_proto": 1, - "this.plastic.try_statement_proto": 1, - "x": 9, - "@x": 3, - "join": 6, - "this.plastic.assignment_operator_proto": 1, - "statement.first.type": 1, - "res": 19, - "rest": 3, - "v": 17, - "statement.first.value": 1, - "v.type": 2, - "v.first": 2, - "v.second": 1, - "this.plastic.bracket_operator_proto": 1, - "statement.third": 4, - "this.plastic.brace_operator_proto": 1, - "this.plastic.invocation_operator_proto": 1, - "@a": 2, - "statement.second.type": 2, - "this.plastic.property_selector_operator_proto": 1, - "this.plastic.error_catching_operator_proto": 1, - "second": 18, - "this.plastic.literal_proto": 1, - "toliteral": 1, - "this.plastic.positional_symbol_proto": 1, - "this.plastic.prefix_operator_proto": 3, - "this.plastic.infix_operator_proto": 1, - "this.plastic.traditional_ternary_operator_proto": 1, - "this.plastic.name_proto": 1, - "plastic.printer": 2, - "_print": 4, - "indent": 4, - "result": 7, - "item": 2, - "@result": 2, - "E_PROPNF": 1, - "print": 1, - "instance": 59, - "instance.row": 1, - "instance.column": 1, - "instance.source": 1, - "advance": 16, - "this.token": 21, - "this.source": 3, - "row": 23, - "this.row": 2, - "column": 63, - "this.column": 2, - "eol": 5, - "block_comment": 6, - "inline_comment": 4, - "loop": 14, - "len": 3, - "continue": 16, - "next_two": 4, - "column..column": 1, - "c": 44, - "break": 6, - "re": 1, - "not.": 1, - "Worse": 1, - "*": 4, - "valid": 2, - "error": 6, - "like": 4, - "E_PERM": 4, - "treated": 2, - "literal": 2, - "an": 2, - "invalid": 2, - "E_FOO": 1, - "variable.": 1, - "Any": 1, - "starts": 1, - "with": 1, - "characters": 1, - "*now*": 1, - "but": 1, - "errors": 1, - "are": 1, - "errors.": 1, - "*/": 1, - "<=>": 8, - "z": 4, - "col1": 6, - "mark": 2, - "start": 2, - "1": 13, - "9": 4, - "col2": 4, - "chars": 21, - "index": 2, - "E_": 1, - "token": 24, - "type": 9, - "this.errors": 1, - "col1..col2": 2, - "toobj": 1, - "float": 4, - "0": 1, - "cc": 1, - "e": 1, - "tofloat": 1, - "toint": 1, - "esc": 1, - "q": 1, - "col1..column": 1, - "plastic.parser_proto": 3, - "@options": 1, - "instance.tokenizer": 1, - "instance.symbols": 1, - "plastic": 1, - "this.plastic": 1, - "symbol": 65, - "plastic.name_proto": 1, - "plastic.literal_proto": 1, - "plastic.operator_proto": 10, - "plastic.prefix_operator_proto": 1, - "plastic.error_catching_operator_proto": 3, - "plastic.assignment_operator_proto": 1, - "plastic.compound_assignment_operator_proto": 5, - "plastic.traditional_ternary_operator_proto": 2, - "plastic.infix_operator_proto": 13, - "plastic.sign_operator_proto": 2, - "plastic.bracket_operator_proto": 1, - "plastic.brace_operator_proto": 1, - "plastic.control_flow_statement_proto": 3, - "plastic.if_statement_proto": 1, - "plastic.for_statement_proto": 1, - "plastic.loop_statement_proto": 2, - "plastic.fork_statement_proto": 1, - "plastic.try_statement_proto": 1, - "plastic.from_statement_proto": 2, - "plastic.verb_selector_operator_proto": 2, - "plastic.property_selector_operator_proto": 2, - "plastic.invocation_operator_proto": 1, - "id": 14, - "bp": 3, - "proto": 4, - "nothing": 1, - "this.plastic.symbol_proto": 2, - "this.symbols": 4, - "clone": 2, - "this.token.type": 1, - "this.token.value": 1, - "this.token.eol": 1, - "operator": 1, - "variable": 1, - "identifier": 1, - "keyword": 1, - "Unexpected": 1, - "end": 2, - "Expected": 1, - "t": 1, - "call": 1, - "nud": 2, - "on": 1, - "@definition": 1, - "new": 4, - "pop": 4, - "delete": 1, - "plastic.utilities": 6, - "suspend_if_necessary": 4, - "parse_map_sequence": 1, - "separator": 6, - "infix": 3, - "terminator": 6, - "symbols": 7, - "ids": 6, - "@ids": 2, - "push": 3, - "@symbol": 2, - ".id": 13, - "key": 7, - "expression": 19, - "@map": 1, - "parse_list_sequence": 2, - "list": 3, - "@list": 1, - "validate_scattering_pattern": 1, - "pattern": 5, - "state": 8, - "element": 1, - "element.type": 3, - "element.id": 2, - "element.first.type": 2, - "children": 4, - "node": 3, - "node.value": 1, - "@children": 1, - "match": 1, - "root": 2, - "keys": 3, - "matches": 3, - "stack": 4, - "next": 2, - "top": 5, - "@stack": 2, - "top.": 1, - "@matches": 1, - "plastic.symbol_proto": 2, - "opts": 2, - "instance.id": 1, - "instance.value": 1, - "instance.bp": 1, - "k": 3, - "instance.": 1, - "parents": 3, - "ancestor": 2, - "ancestors": 1, - "property": 1, - "properties": 1, - "this.type": 8, - "this.first": 8, - "import": 8, - "this.second": 7, - "left": 2, - "this.third": 3, - "sequence": 2, - "led": 4, - "this.bp": 2, - "second.type": 2, - "make_identifier": 4, - "first.id": 1, - "parser.symbols": 2, - "reserve_keyword": 2, - "this.plastic.utilities": 1, - "third": 4, - "third.id": 2, - "second.id": 1, - "std": 1, - "reserve_statement": 1, - "types": 7, - ".type": 1, - "target.type": 3, - "target.value": 3, - "target.id": 4, - "temp": 4, - "temp.id": 1, - "temp.first.id": 1, - "temp.first.type": 2, - "temp.second.type": 1, - "temp.first": 2, - "imports": 5, - "import.type": 2, - "@imports": 2, - "parser.plastic.invocation_operator_proto": 1, - "temp.type": 1, - "parser.plastic.name_proto": 2, - "temp.first.value": 1, - "temp.second": 1, - "first.type": 1, - "parser.imports": 2, - "import.id": 2, - "parser.plastic.assignment_operator_proto": 1, - "result.type": 1, - "result.first": 1, - "result.second": 1, - "toy": 3, - "wind": 1, - "this.wound": 8, - "tell": 1, - "this.name": 4, - "player.location": 1, - "announce": 1, - "player.name": 1, - "@verb": 1, - "do_the_work": 3, - "none": 1, - "object_utils": 1, - "this.location": 3, - "room": 1, - "announce_all": 2, - "continue_msg": 1, - "fork": 1, - "endfork": 1, - "wind_down_msg": 1 - }, - "Java": { - "package": 6, - "nokogiri": 6, - ";": 891, - "import": 66, - "java.util.Collections": 2, - "java.util.HashMap": 1, - "java.util.Map": 3, - "org.jruby.Ruby": 2, - "org.jruby.RubyArray": 1, - "org.jruby.RubyClass": 2, - "org.jruby.RubyFixnum": 1, - "org.jruby.RubyModule": 1, - "org.jruby.runtime.ObjectAllocator": 1, - "org.jruby.runtime.builtin.IRubyObject": 2, - "org.jruby.runtime.load.BasicLibraryService": 1, - "public": 214, - "class": 12, - "NokogiriService": 1, - "implements": 3, - "BasicLibraryService": 1, - "{": 434, - "static": 141, - "final": 78, - "String": 33, - "nokogiriClassCacheGvarName": 1, - "Map": 1, - "": 2, - "RubyClass": 92, - "nokogiriClassCache": 2, - "boolean": 36, - "basicLoad": 1, - "(": 1097, - "Ruby": 43, - "ruby": 25, - ")": 1097, - "init": 2, - "createNokogiriClassCahce": 2, - "return": 267, - "true": 21, - "}": 434, - "private": 77, - "void": 25, - "Collections.synchronizedMap": 1, - "new": 131, - "HashMap": 1, - "nokogiriClassCache.put": 26, - "ruby.getClassFromPath": 26, - "RubyModule": 18, - "ruby.defineModule": 1, - "xmlModule": 7, - "nokogiri.defineModuleUnder": 3, - "xmlSaxModule": 3, - "xmlModule.defineModuleUnder": 1, - "htmlModule": 5, - "htmlSaxModule": 3, - "htmlModule.defineModuleUnder": 1, - "xsltModule": 3, - "createNokogiriModule": 2, - "createSyntaxErrors": 2, - "xmlNode": 5, - "createXmlModule": 2, - "createHtmlModule": 2, - "createDocuments": 2, - "createSaxModule": 2, - "createXsltModule": 2, - "encHandler": 1, - "nokogiri.defineClassUnder": 2, - "ruby.getObject": 13, - "ENCODING_HANDLER_ALLOCATOR": 2, - "encHandler.defineAnnotatedMethods": 1, - "EncodingHandler.class": 1, - "syntaxError": 2, - "ruby.getStandardError": 2, - ".getAllocator": 1, - "xmlSyntaxError": 4, - "xmlModule.defineClassUnder": 23, - "XML_SYNTAXERROR_ALLOCATOR": 2, - "xmlSyntaxError.defineAnnotatedMethods": 1, - "XmlSyntaxError.class": 1, - "node": 14, - "XML_NODE_ALLOCATOR": 2, - "node.defineAnnotatedMethods": 1, - "XmlNode.class": 1, - "attr": 1, - "XML_ATTR_ALLOCATOR": 2, - "attr.defineAnnotatedMethods": 1, - "XmlAttr.class": 1, - "attrDecl": 1, - "XML_ATTRIBUTE_DECL_ALLOCATOR": 2, - "attrDecl.defineAnnotatedMethods": 1, - "XmlAttributeDecl.class": 1, - "characterData": 3, - "null": 80, - "comment": 1, - "XML_COMMENT_ALLOCATOR": 2, - "comment.defineAnnotatedMethods": 1, - "XmlComment.class": 1, - "text": 2, - "XML_TEXT_ALLOCATOR": 2, - "text.defineAnnotatedMethods": 1, - "XmlText.class": 1, - "cdata": 1, - "XML_CDATA_ALLOCATOR": 2, - "cdata.defineAnnotatedMethods": 1, - "XmlCdata.class": 1, - "dtd": 1, - "XML_DTD_ALLOCATOR": 2, - "dtd.defineAnnotatedMethods": 1, - "XmlDtd.class": 1, - "documentFragment": 1, - "XML_DOCUMENT_FRAGMENT_ALLOCATOR": 2, - "documentFragment.defineAnnotatedMethods": 1, - "XmlDocumentFragment.class": 1, - "element": 3, - "XML_ELEMENT_ALLOCATOR": 2, - "element.defineAnnotatedMethods": 1, - "XmlElement.class": 1, - "elementContent": 1, - "XML_ELEMENT_CONTENT_ALLOCATOR": 2, - "elementContent.defineAnnotatedMethods": 1, - "XmlElementContent.class": 1, - "elementDecl": 1, - "XML_ELEMENT_DECL_ALLOCATOR": 2, - "elementDecl.defineAnnotatedMethods": 1, - "XmlElementDecl.class": 1, - "entityDecl": 1, - "XML_ENTITY_DECL_ALLOCATOR": 2, - "entityDecl.defineAnnotatedMethods": 1, - "XmlEntityDecl.class": 1, - "entityDecl.defineConstant": 6, - "RubyFixnum.newFixnum": 6, - "XmlEntityDecl.INTERNAL_GENERAL": 1, - "XmlEntityDecl.EXTERNAL_GENERAL_PARSED": 1, - "XmlEntityDecl.EXTERNAL_GENERAL_UNPARSED": 1, - "XmlEntityDecl.INTERNAL_PARAMETER": 1, - "XmlEntityDecl.EXTERNAL_PARAMETER": 1, - "XmlEntityDecl.INTERNAL_PREDEFINED": 1, - "entref": 1, - "XML_ENTITY_REFERENCE_ALLOCATOR": 2, - "entref.defineAnnotatedMethods": 1, - "XmlEntityReference.class": 1, - "namespace": 1, - "XML_NAMESPACE_ALLOCATOR": 2, - "namespace.defineAnnotatedMethods": 1, - "XmlNamespace.class": 1, - "nodeSet": 1, - "XML_NODESET_ALLOCATOR": 2, - "nodeSet.defineAnnotatedMethods": 1, - "XmlNodeSet.class": 1, - "pi": 1, - "XML_PROCESSING_INSTRUCTION_ALLOCATOR": 2, - "pi.defineAnnotatedMethods": 1, - "XmlProcessingInstruction.class": 1, - "reader": 1, - "XML_READER_ALLOCATOR": 2, - "reader.defineAnnotatedMethods": 1, - "XmlReader.class": 1, - "schema": 2, - "XML_SCHEMA_ALLOCATOR": 2, - "schema.defineAnnotatedMethods": 1, - "XmlSchema.class": 1, - "relaxng": 1, - "XML_RELAXNG_ALLOCATOR": 2, - "relaxng.defineAnnotatedMethods": 1, - "XmlRelaxng.class": 1, - "xpathContext": 1, - "XML_XPATHCONTEXT_ALLOCATOR": 2, - "xpathContext.defineAnnotatedMethods": 1, - "XmlXpathContext.class": 1, - "htmlElemDesc": 1, - "htmlModule.defineClassUnder": 3, - "HTML_ELEMENT_DESCRIPTION_ALLOCATOR": 2, - "htmlElemDesc.defineAnnotatedMethods": 1, - "HtmlElementDescription.class": 1, - "htmlEntityLookup": 1, - "HTML_ENTITY_LOOKUP_ALLOCATOR": 2, - "htmlEntityLookup.defineAnnotatedMethods": 1, - "HtmlEntityLookup.class": 1, - "xmlDocument": 5, - "XML_DOCUMENT_ALLOCATOR": 2, - "xmlDocument.defineAnnotatedMethods": 1, - "XmlDocument.class": 1, - "//RubyModule": 1, - "htmlDoc": 1, - "html.defineOrGetClassUnder": 1, - "document": 5, - "htmlDocument": 6, - "HTML_DOCUMENT_ALLOCATOR": 2, - "htmlDocument.defineAnnotatedMethods": 1, - "HtmlDocument.class": 1, - "xmlSaxParserContext": 5, - "xmlSaxModule.defineClassUnder": 2, - "XML_SAXPARSER_CONTEXT_ALLOCATOR": 2, - "xmlSaxParserContext.defineAnnotatedMethods": 1, - "XmlSaxParserContext.class": 1, - "xmlSaxPushParser": 1, - "XML_SAXPUSHPARSER_ALLOCATOR": 2, - "xmlSaxPushParser.defineAnnotatedMethods": 1, - "XmlSaxPushParser.class": 1, - "htmlSaxParserContext": 4, - "htmlSaxModule.defineClassUnder": 1, - "HTML_SAXPARSER_CONTEXT_ALLOCATOR": 2, - "htmlSaxParserContext.defineAnnotatedMethods": 1, - "HtmlSaxParserContext.class": 1, - "stylesheet": 1, - "xsltModule.defineClassUnder": 1, - "XSLT_STYLESHEET_ALLOCATOR": 2, - "stylesheet.defineAnnotatedMethods": 1, - "XsltStylesheet.class": 2, - "xsltModule.defineAnnotatedMethod": 1, - "ObjectAllocator": 60, - "IRubyObject": 35, - "allocate": 30, - "runtime": 88, - "klazz": 107, - "EncodingHandler": 1, - "HtmlDocument": 7, - "if": 116, - "try": 26, - "clone": 47, - "htmlDocument.clone": 1, - "clone.setMetaClass": 23, - "catch": 27, - "CloneNotSupportedException": 23, - "e": 31, - "HtmlSaxParserContext": 5, - "htmlSaxParserContext.clone": 1, - "HtmlElementDescription": 1, - "HtmlEntityLookup": 1, - "XmlAttr": 5, - "xmlAttr": 3, - "xmlAttr.clone": 1, - "XmlCdata": 5, - "xmlCdata": 3, - "xmlCdata.clone": 1, - "XmlComment": 5, - "xmlComment": 3, - "xmlComment.clone": 1, - "XmlDocument": 8, - "xmlDocument.clone": 1, - "XmlDocumentFragment": 5, - "xmlDocumentFragment": 3, - "xmlDocumentFragment.clone": 1, - "XmlDtd": 5, - "xmlDtd": 3, - "xmlDtd.clone": 1, - "XmlElement": 5, - "xmlElement": 3, - "xmlElement.clone": 1, - "XmlElementDecl": 5, - "xmlElementDecl": 3, - "xmlElementDecl.clone": 1, - "XmlEntityReference": 5, - "xmlEntityRef": 3, - "xmlEntityRef.clone": 1, - "XmlNamespace": 5, - "xmlNamespace": 3, - "xmlNamespace.clone": 1, - "XmlNode": 5, - "xmlNode.clone": 1, - "XmlNodeSet": 5, - "xmlNodeSet": 5, - "xmlNodeSet.clone": 1, - "xmlNodeSet.setNodes": 1, - "RubyArray.newEmptyArray": 1, - "XmlProcessingInstruction": 5, - "xmlProcessingInstruction": 3, - "xmlProcessingInstruction.clone": 1, - "XmlReader": 5, - "xmlReader": 5, - "xmlReader.clone": 1, - "XmlAttributeDecl": 1, - "XmlEntityDecl": 1, - "throw": 9, - "runtime.newNotImplementedError": 1, - "XmlRelaxng": 5, - "xmlRelaxng": 3, - "xmlRelaxng.clone": 1, - "XmlSaxParserContext": 5, - "xmlSaxParserContext.clone": 1, - "XmlSaxPushParser": 1, - "XmlSchema": 5, - "xmlSchema": 3, - "xmlSchema.clone": 1, - "XmlSyntaxError": 5, - "xmlSyntaxError.clone": 1, - "XmlText": 6, - "xmlText": 3, - "xmlText.clone": 1, - "XmlXpathContext": 5, - "xmlXpathContext": 3, - "xmlXpathContext.clone": 1, - "XsltStylesheet": 4, - "xsltStylesheet": 3, - "xsltStylesheet.clone": 1, - "hudson.model": 1, - "hudson.ExtensionListView": 1, - "hudson.Functions": 1, - "hudson.Platform": 1, - "hudson.PluginManager": 1, - "hudson.cli.declarative.CLIResolver": 1, - "hudson.model.listeners.ItemListener": 1, - "hudson.slaves.ComputerListener": 1, - "hudson.util.CopyOnWriteList": 1, - "hudson.util.FormValidation": 1, - "jenkins.model.Jenkins": 1, - "org.jvnet.hudson.reactor.ReactorException": 1, - "org.kohsuke.stapler.QueryParameter": 1, - "org.kohsuke.stapler.Stapler": 1, - "org.kohsuke.stapler.StaplerRequest": 1, - "org.kohsuke.stapler.StaplerResponse": 1, - "javax.servlet.ServletContext": 1, - "javax.servlet.ServletException": 1, - "java.io.File": 1, - "java.io.IOException": 10, - "java.text.NumberFormat": 1, - "java.text.ParseException": 1, - "java.util.List": 1, - "hudson.Util.fixEmpty": 1, - "Hudson": 5, - "extends": 10, - "Jenkins": 2, - "transient": 2, - "CopyOnWriteList": 4, - "": 2, - "itemListeners": 2, - "ExtensionListView.createCopyOnWriteList": 2, - "ItemListener.class": 1, - "": 2, - "computerListeners": 2, - "ComputerListener.class": 1, - "@CLIResolver": 1, - "getInstance": 2, - "Jenkins.getInstance": 2, - "File": 2, - "root": 6, - "ServletContext": 2, - "context": 8, - "throws": 26, - "IOException": 8, - "InterruptedException": 2, - "ReactorException": 2, - "this": 16, - "PluginManager": 1, - "pluginManager": 2, - "super": 7, - "getJobListeners": 1, - "getComputerListeners": 1, - "Slave": 3, - "getSlave": 1, - "name": 10, - "Node": 1, - "n": 3, - "getNode": 1, - "instanceof": 19, - "List": 3, - "": 2, - "getSlaves": 1, - "slaves": 3, - "setSlaves": 1, - "setNodes": 1, - "TopLevelItem": 3, - "getJob": 1, - "getItem": 1, - "getJobCaseInsensitive": 1, - "match": 2, - "Functions.toEmailSafeString": 2, - "for": 16, - "item": 2, - "getItems": 1, - "item.getName": 1, - ".equalsIgnoreCase": 5, - "synchronized": 1, - "doQuietDown": 2, - "StaplerResponse": 4, - "rsp": 6, - "ServletException": 3, - ".generateResponse": 2, - "doLogRss": 1, - "StaplerRequest": 4, - "req": 6, - "qs": 3, - "req.getQueryString": 1, - "rsp.sendRedirect2": 1, - "+": 83, - "doFieldCheck": 3, - "fixEmpty": 8, - "req.getParameter": 4, - "FormValidation": 2, - "@QueryParameter": 4, - "value": 11, - "type": 3, - "errorText": 3, - "warningText": 3, - "FormValidation.error": 4, - "FormValidation.warning": 1, - "type.equalsIgnoreCase": 2, - "NumberFormat.getInstance": 2, - ".parse": 2, - "else": 33, - ".floatValue": 1, - "<=>": 1, - "0": 1, - "error": 1, - "Messages": 1, - "Hudson_NotAPositiveNumber": 1, - "equalsIgnoreCase": 1, - "number": 1, - "negative": 1, - "NumberFormat": 1, - "parse": 1, - "floatValue": 1, - "Messages.Hudson_NotANegativeNumber": 1, - "ParseException": 1, - "Messages.Hudson_NotANumber": 1, - "FormValidation.ok": 1, - "isWindows": 1, - "File.pathSeparatorChar": 1, - "isDarwin": 1, - "Platform.isDarwin": 1, - "adminCheck": 3, - "Stapler.getCurrentRequest": 1, - "Stapler.getCurrentResponse": 1, - "isAdmin": 4, - "rsp.sendError": 1, - "StaplerResponse.SC_FORBIDDEN": 1, - "false": 12, - ".getACL": 1, - ".hasPermission": 1, - "ADMINISTER": 1, - "XSTREAM.alias": 1, - "Hudson.class": 1, - "MasterComputer": 1, - "Jenkins.MasterComputer": 1, - "CloudList": 3, - "Jenkins.CloudList": 1, - "h": 2, - "//": 16, - "needed": 1, - "XStream": 1, - "deserialization": 1, - "persons": 1, - "ProtocolBuffer": 2, - "registerAllExtensions": 1, - "com.google.protobuf.ExtensionRegistry": 2, - "registry": 1, - "interface": 1, - "PersonOrBuilder": 2, - "com.google.protobuf.MessageOrBuilder": 1, - "hasName": 5, - "java.lang.String": 15, - "getName": 3, - "com.google.protobuf.ByteString": 13, - "getNameBytes": 5, - "Person": 10, - "com.google.protobuf.GeneratedMessage": 1, - "com.google.protobuf.GeneratedMessage.Builder": 2, - "": 1, - "builder": 4, - "this.unknownFields": 4, - "builder.getUnknownFields": 1, - "noInit": 1, - "com.google.protobuf.UnknownFieldSet.getDefaultInstance": 1, - "defaultInstance": 4, - "getDefaultInstance": 2, - "getDefaultInstanceForType": 2, - "com.google.protobuf.UnknownFieldSet": 2, - "unknownFields": 3, - "@java.lang.Override": 4, - "getUnknownFields": 3, - "com.google.protobuf.CodedInputStream": 5, - "input": 18, - "com.google.protobuf.ExtensionRegistryLite": 8, - "extensionRegistry": 16, - "com.google.protobuf.InvalidProtocolBufferException": 9, - "initFields": 2, - "int": 62, - "mutable_bitField0_": 1, - "com.google.protobuf.UnknownFieldSet.Builder": 1, - "com.google.protobuf.UnknownFieldSet.newBuilder": 1, - "done": 4, - "while": 10, - "tag": 3, - "input.readTag": 1, - "switch": 6, - "case": 56, - "break": 4, - "default": 6, - "parseUnknownField": 1, - "bitField0_": 15, - "|": 5, - "name_": 18, - "input.readBytes": 1, - "e.setUnfinishedMessage": 1, - "e.getMessage": 1, - ".setUnfinishedMessage": 1, - "finally": 2, - "unknownFields.build": 1, - "makeExtensionsImmutable": 1, - "com.google.protobuf.Descriptors.Descriptor": 4, - "getDescriptor": 15, - "persons.ProtocolBuffer.internal_static_persons_Person_descriptor": 3, - "protected": 8, - "com.google.protobuf.GeneratedMessage.FieldAccessorTable": 4, - "internalGetFieldAccessorTable": 2, - "persons.ProtocolBuffer.internal_static_persons_Person_fieldAccessorTable": 2, - ".ensureFieldAccessorsInitialized": 2, - "persons.ProtocolBuffer.Person.class": 2, - "persons.ProtocolBuffer.Person.Builder.class": 2, - "com.google.protobuf.Parser": 2, - "": 3, - "PARSER": 2, - "com.google.protobuf.AbstractParser": 1, - "parsePartialFrom": 1, - "getParserForType": 1, - "NAME_FIELD_NUMBER": 1, - "java.lang.Object": 7, - "&": 7, - "ref": 16, - "bs": 1, - "s": 10, - "bs.toStringUtf8": 1, - "bs.isValidUtf8": 1, - "b": 7, - "com.google.protobuf.ByteString.copyFromUtf8": 2, - "byte": 4, - "memoizedIsInitialized": 4, - "-": 15, - "isInitialized": 5, - "writeTo": 1, - "com.google.protobuf.CodedOutputStream": 2, - "output": 2, - "getSerializedSize": 2, - "output.writeBytes": 1, - ".writeTo": 1, - "memoizedSerializedSize": 3, - "size": 16, - ".computeBytesSize": 1, - ".getSerializedSize": 1, - "long": 5, - "serialVersionUID": 1, + "_": 1, + "Slanted": 1, + "fraction": 1, + "proper": 1, + "spacing.": 1, + "Usefule": 1, + "display": 2, + "fractions.": 1, + "eval": 1, + "vert_": 1, "L": 1, - "writeReplace": 1, - "java.io.ObjectStreamException": 1, - "super.writeReplace": 1, - "persons.ProtocolBuffer.Person": 22, - "parseFrom": 8, - "data": 8, - "PARSER.parseFrom": 8, - "[": 54, - "]": 54, - "java.io.InputStream": 4, - "parseDelimitedFrom": 2, - "PARSER.parseDelimitedFrom": 2, - "Builder": 20, - "newBuilder": 5, - "Builder.create": 1, - "newBuilderForType": 2, - "prototype": 2, - ".mergeFrom": 2, - "toBuilder": 1, - "com.google.protobuf.GeneratedMessage.BuilderParent": 2, - "parent": 4, - "": 1, - "persons.ProtocolBuffer.PersonOrBuilder": 1, - "maybeForceBuilderInitialization": 3, - "com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders": 1, - "create": 2, - "clear": 1, - "super.clear": 1, - "buildPartial": 3, - "getDescriptorForType": 1, - "persons.ProtocolBuffer.Person.getDefaultInstance": 2, - "build": 1, - "result": 5, - "result.isInitialized": 1, - "newUninitializedMessageException": 1, - "from_bitField0_": 2, - "to_bitField0_": 3, - "result.name_": 1, - "result.bitField0_": 1, - "onBuilt": 1, - "mergeFrom": 5, - "com.google.protobuf.Message": 1, - "other": 6, - "super.mergeFrom": 1, - "other.hasName": 1, - "other.name_": 1, - "onChanged": 4, - "this.mergeUnknownFields": 1, - "other.getUnknownFields": 1, - "parsedMessage": 5, - "PARSER.parsePartialFrom": 1, - "e.getUnfinishedMessage": 1, - ".toStringUtf8": 1, - "setName": 1, - "NullPointerException": 3, - "clearName": 1, - ".getName": 1, - "setNameBytes": 1, - "defaultInstance.initFields": 1, - "internal_static_persons_Person_descriptor": 3, - "internal_static_persons_Person_fieldAccessorTable": 2, - "com.google.protobuf.Descriptors.FileDescriptor": 5, - "descriptor": 3, - "descriptorData": 2, - "com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner": 2, - "assigner": 2, - "assignDescriptors": 1, - ".getMessageTypes": 1, - ".get": 1, - ".internalBuildGeneratedFileFrom": 1, - "nokogiri.internals": 1, - "nokogiri.internals.NokogiriHelpers.getNokogiriClass": 1, - "nokogiri.internals.NokogiriHelpers.isNamespace": 1, - "nokogiri.internals.NokogiriHelpers.stringOrNil": 1, - "nokogiri.HtmlDocument": 1, - "nokogiri.NokogiriService": 1, - "nokogiri.XmlDocument": 1, - "org.apache.xerces.parsers.DOMParser": 1, - "org.apache.xerces.xni.Augmentations": 1, - "org.apache.xerces.xni.QName": 1, - "org.apache.xerces.xni.XMLAttributes": 1, - "org.apache.xerces.xni.XNIException": 1, - "org.apache.xerces.xni.parser.XMLDocumentFilter": 1, - "org.apache.xerces.xni.parser.XMLParserConfiguration": 1, - "org.cyberneko.html.HTMLConfiguration": 1, - "org.cyberneko.html.filters.DefaultFilter": 1, - "org.jruby.runtime.ThreadContext": 1, - "org.w3c.dom.Document": 1, - "org.w3c.dom.NamedNodeMap": 1, - "org.w3c.dom.NodeList": 1, - "HtmlDomParserContext": 3, - "XmlDomParserContext": 1, - "options": 4, - "encoding": 2, - "@Override": 6, - "initErrorHandler": 1, - "options.strict": 1, - "errorHandler": 6, - "NokogiriStrictErrorHandler": 1, - "options.noError": 2, - "options.noWarning": 2, - "NokogiriNonStrictErrorHandler4NekoHtml": 1, - "initParser": 1, - "XMLParserConfiguration": 1, - "config": 2, - "HTMLConfiguration": 1, - "XMLDocumentFilter": 3, - "removeNSAttrsFilter": 2, - "RemoveNSAttrsFilter": 2, - "elementValidityCheckFilter": 3, - "ElementValidityCheckFilter": 3, - "//XMLDocumentFilter": 1, - "filters": 3, - "config.setErrorHandler": 1, - "this.errorHandler": 2, - "parser": 1, - "DOMParser": 1, - "setProperty": 4, - "java_encoding": 2, - "setFeature": 4, - "enableDocumentFragment": 1, - "getNewEmptyDocument": 1, - "ThreadContext": 2, - "args": 6, - "XmlDocument.rbNew": 1, - "getNokogiriClass": 1, - "context.getRuntime": 3, - "wrapDocument": 1, - "Document": 2, - "NokogiriService.HTML_DOCUMENT_ALLOCATOR.allocate": 1, - "htmlDocument.setDocumentNode": 1, - "ruby_encoding.isNil": 1, - "detected_encoding": 2, - "&&": 6, - "detected_encoding.isNil": 1, - "ruby_encoding": 3, - "charset": 2, - "tryGetCharsetFromHtml5MetaTag": 2, - "stringOrNil": 1, - "htmlDocument.setEncoding": 1, - "htmlDocument.setParsedEncoding": 1, - "document.getDocumentElement": 2, - ".getNodeName": 4, - "NodeList": 2, - "list": 1, - ".getChildNodes": 2, - "i": 54, - "<": 13, - "list.getLength": 1, - "list.item": 2, - "headers": 1, - "j": 9, - "headers.getLength": 1, - "headers.item": 2, - "NamedNodeMap": 1, - "nodeMap": 1, - ".getAttributes": 1, - "k": 5, - "nodeMap.getLength": 1, - "nodeMap.item": 2, - ".getNodeValue": 1, - "DefaultFilter": 2, - "startElement": 2, - "QName": 2, - "XMLAttributes": 2, - "attrs": 4, - "Augmentations": 2, - "augs": 4, - "XNIException": 2, - "attrs.getLength": 1, - "isNamespace": 1, - "attrs.getQName": 1, - "attrs.removeAttributeAt": 1, - "element.uri": 1, - "super.startElement": 2, - "NokogiriErrorHandler": 2, - "element_names": 3, - "g": 1, - "r": 1, - "w": 1, - "x": 8, - "y": 1, - "z": 1, - "isValid": 2, - "testee": 1, - "char": 13, - "c": 21, - "testee.toCharArray": 1, - "index": 4, - "Integer": 2, - ".length": 1, - "testee.equals": 1, - "name.rawname": 2, - "errorHandler.getErrors": 1, - ".add": 1, - "Exception": 1, - "clojure.lang": 1, - "java.lang.ref.Reference": 1, - "java.math.BigInteger": 1, - "java.util.concurrent.ConcurrentHashMap": 1, - "java.lang.ref.SoftReference": 1, - "java.lang.ref.ReferenceQueue": 1, - "Util": 1, - "equiv": 17, - "Object": 31, - "k1": 40, - "k2": 38, - "Number": 9, - "Numbers.equal": 1, - "IPersistentCollection": 5, - "||": 8, - "pcequiv": 2, - "k1.equals": 2, - "double": 4, - "c1": 2, - "c2": 2, - ".equiv": 2, - "equals": 2, - "identical": 1, - "Class": 10, - "classOf": 1, - "x.getClass": 1, - "compare": 1, - "Numbers.compare": 1, - "Comparable": 1, - ".compareTo": 1, - "hash": 3, - "o": 12, - "o.hashCode": 2, - "hasheq": 1, - "Numbers.hasheq": 1, - "IHashEq": 2, - ".hasheq": 1, - "hashCombine": 1, - "seed": 5, - "//a": 1, - "la": 1, - "boost": 1, - "e3779b9": 1, - "<<": 1, - "isPrimitive": 1, - "c.isPrimitive": 2, - "Void.TYPE": 3, - "isInteger": 1, - "Long": 1, - "BigInt": 1, - "BigInteger": 1, - "ret1": 2, - "ret": 4, - "nil": 2, - "ISeq": 2, - "": 1, - "clearCache": 1, - "ReferenceQueue": 1, - "rq": 1, - "ConcurrentHashMap": 1, - "K": 2, - "Reference": 3, - "": 3, - "cache": 1, - "//cleanup": 1, - "any": 1, - "dead": 1, - "entries": 1, - "rq.poll": 2, - "Map.Entry": 1, - "cache.entrySet": 1, - "val": 3, - "e.getValue": 1, - "val.get": 1, - "cache.remove": 1, - "e.getKey": 1, - "RuntimeException": 5, - "runtimeException": 2, - "Throwable": 4, - "sneakyThrow": 1, - "t": 6, - "Util.": 1, - "": 1, - "sneakyThrow0": 2, - "@SuppressWarnings": 1, - "": 1, - "T": 2, - "clojure.asm": 1, - "java.lang.reflect.Constructor": 1, - "java.lang.reflect.Method": 1, - "Type": 42, - "VOID": 5, - "BOOLEAN": 6, - "CHAR": 6, - "BYTE": 6, - "SHORT": 6, - "INT": 6, - "FLOAT": 6, - "LONG": 7, - "DOUBLE": 7, - "ARRAY": 6, - "OBJECT": 7, - "VOID_TYPE": 3, - "BOOLEAN_TYPE": 3, - "CHAR_TYPE": 3, - "BYTE_TYPE": 3, - "SHORT_TYPE": 3, - "INT_TYPE": 3, - "FLOAT_TYPE": 3, - "LONG_TYPE": 3, - "DOUBLE_TYPE": 3, - "sort": 18, - "buf": 43, - "off": 25, - "len": 24, - "this.sort": 2, - "this.len": 2, - "this.buf": 2, - "this.off": 1, - "getType": 10, - "typeDescriptor": 1, - "typeDescriptor.toCharArray": 1, - "Integer.TYPE": 2, - "Boolean.TYPE": 2, - "Byte.TYPE": 2, - "Character.TYPE": 2, - "Short.TYPE": 2, - "Double.TYPE": 2, - "Float.TYPE": 2, - "getObjectType": 1, - "l": 5, - "name.length": 2, - "name.getChars": 1, - "getArgumentTypes": 2, - "methodDescriptor": 2, - "methodDescriptor.toCharArray": 2, - "car": 18, - ".len": 1, - "Method": 3, - "method": 2, - "classes": 2, - "method.getParameterTypes": 1, - "types": 3, - "classes.length": 2, - "getReturnType": 2, - "methodDescriptor.indexOf": 1, - "method.getReturnType": 1, - "getSort": 1, - "getDimensions": 3, - "getElementType": 2, - "getClassName": 1, - "StringBuffer": 14, - ".getClassName": 1, - "b.append": 1, - "b.toString": 1, - ".replace": 2, - "getInternalName": 2, - "buf.toString": 4, - "getMethodDescriptor": 2, - "returnType": 1, - "argumentTypes": 2, - "buf.append": 21, - "argumentTypes.length": 1, - ".getDescriptor": 1, - "returnType.getDescriptor": 1, - "c.getName": 1, - "getConstructorDescriptor": 1, - "Constructor": 1, - "parameters": 4, - "c.getParameterTypes": 1, - "parameters.length": 2, - ".toString": 1, - "m": 1, - "m.getParameterTypes": 1, - "m.getReturnType": 1, - "d": 10, - "d.isPrimitive": 1, - "d.isArray": 1, - "d.getComponentType": 1, - "d.getName": 1, - "name.charAt": 1, - "getSize": 1, - "getOpcode": 1, - "opcode": 17, - "Opcodes.IALOAD": 1, - "Opcodes.IASTORE": 1, - "t.sort": 1, - "Type.OBJECT": 2, - "Type.ARRAY": 2, - "t.len": 1, - "t.off": 1, - "end": 4, - "t.buf": 1, - "hashCode": 1, - "hc": 4, - "*": 2, - "toString": 1 + "hand": 2, + "sizing": 2, + "R": 1, + "D": 1, + "diff": 1, + "writing": 2, + "PD": 1, + "diffp": 1, + "full": 1, + "Forces": 1, + "style": 1, + "math": 4, + "mode": 4, + "Deg": 1, + "circ": 1, + "adding": 1, + "degree": 1, + "symbol": 4, + "even": 1, + "if": 1, + "not": 2, + "abs": 1, + "vert": 3, + "Absolute": 1, + "Value": 1, + "norm": 1, + "Vert": 2, + "Norm": 1, + "vector": 1, + "magnitude": 1, + "e": 1, + "times": 3, + "Scientific": 2, + "Notation": 2, + "E": 2, + "u": 1, + "text": 7, + "units": 1, + "Roman": 1, + "mc": 1, + "hspace": 3, + "comma": 1, + "into": 2, + "mtxt": 1, + "insterting": 1, + "on": 2, + "either": 1, + "side.": 1, + "Option": 1, + "preceding": 1, + "punctuation.": 1, + "prob": 1, + "P": 2, + "cndprb": 1, + "right.": 1, + "cov": 1, + "Cov": 1, + "twovector": 1, + "r": 3, + "array": 6, + "threevector": 1, + "fourvector": 1, + "vecs": 4, + "vec": 2, + "bm": 2, + "bolded": 2, + "arrow": 2, + "vect": 3, + "unitvecs": 1, + "hat": 2, + "unitvect": 1, + "Div": 1, + "del": 3, + "cdot": 1, + "Curl": 1, + "Grad": 1, + "NeedsTeXFormat": 1, + "LaTeX2e": 1, + "reedthesis": 1, + "/01/27": 1, + "The": 4, + "Reed": 5, + "College": 5, + "Thesis": 5, + "Class": 4, + "CurrentOption": 1, + "book": 2, + "AtBeginDocument": 1, + "fancyhead": 5, + "LE": 1, + "RO": 1, + "above": 1, + "makes": 2, + "your": 1, + "headers": 6, + "caps.": 2, + "If": 1, + "you": 1, + "would": 1, + "like": 1, + "different": 1, + "choose": 1, + "one": 1, + "options": 1, + "be": 3, + "sure": 1, + "remove": 1, + "both": 1, + "RE": 2, + "slshape": 2, + "nouppercase": 2, + "leftmark": 2, + "This": 2, + "RIGHT": 2, + "side": 2, + "pages": 2, + "italic": 1, + "use": 1, + "lowercase": 1, + "With": 1, + "Capitals": 1, + "When": 1, + "Specified.": 1, + "LO": 2, + "rightmark": 2, + "does": 1, + "same": 1, + "thing": 1, + "LEFT": 2, + "or": 1, + "scshape": 2, + "will": 2, + "And": 1, + "so": 1, + "fancy": 1, + "oldthebibliography": 2, + "thebibliography": 2, + "endoldthebibliography": 2, + "endthebibliography": 1, + "renewenvironment": 2, + "addcontentsline": 5, + "toc": 5, + "chapter": 9, + "bibname": 2, + "things": 1, + "psych": 1, + "majors": 1, + "comment": 1, + "out": 1, + "oldtheindex": 2, + "theindex": 2, + "endoldtheindex": 2, + "endtheindex": 1, + "indexname": 1, + "RToldchapter": 1, + "if@openright": 1, + "RTcleardoublepage": 3, + "global": 2, + "@topnum": 1, + "z@": 2, + "@afterindentfalse": 1, + "secdef": 1, + "@chapter": 2, + "@schapter": 1, + "c@secnumdepth": 1, + "m@ne": 2, + "if@mainmatter": 1, + "refstepcounter": 1, + "typeout": 1, + "@chapapp": 2, + "thechapter.": 1, + "thechapter": 1, + "space#1": 1, + "chaptermark": 1, + "addtocontents": 2, + "lof": 1, + "protect": 2, + "addvspace": 2, + "p@": 3, + "lot": 1, + "if@twocolumn": 3, + "@topnewpage": 1, + "@makechapterhead": 2, + "@afterheading": 1, + "newcommand": 2, + "if@twoside": 1, + "ifodd": 1, + "c@page": 1, + "hbox": 15, + "newpage": 3, + "RToldcleardoublepage": 1, + "cleardoublepage": 4, + "oddsidemargin": 2, + ".5in": 3, + "evensidemargin": 2, + "textheight": 4, + "topmargin": 6, + "addtolength": 8, + "headheight": 4, + "headsep": 3, + ".6in": 1, + "division#1": 1, + "gdef": 6, + "@division": 3, + "@latex@warning@no@line": 3, + "No": 3, + "noexpand": 3, + "division": 2, + "given": 3, + "department#1": 1, + "@department": 3, + "department": 1, + "thedivisionof#1": 1, + "@thedivisionof": 3, + "Division": 2, + "approvedforthe#1": 1, + "@approvedforthe": 3, + "advisor#1": 1, + "@advisor": 3, + "advisor": 1, + "altadvisor#1": 1, + "@altadvisor": 3, + "@altadvisortrue": 1, + "@empty": 1, + "newif": 1, + "if@altadvisor": 3, + "@altadvisorfalse": 1, + "contentsname": 1, + "Table": 1, + "Contents": 1, + "References": 1, + "l@chapter": 1, + "c@tocdepth": 1, + "addpenalty": 1, + "@highpenalty": 2, + "vskip": 4, + "@plus": 1, + "@tempdima": 2, + "begingroup": 1, + "rightskip": 1, + "@pnumwidth": 3, + "parfillskip": 1, + "leavevmode": 1, + "bfseries": 3, + "advance": 1, + "leftskip": 2, + "hskip": 1, + "nobreak": 2, + "normalfont": 1, + "leaders": 1, + "m@th": 1, + "mkern": 2, + "@dotsep": 2, + "mu": 2, + "hb@xt@": 1, + "hss": 1, + "par": 6, + "penalty": 1, + "endgroup": 1, + "newenvironment": 1, + "abstract": 1, + "@restonecoltrue": 1, + "onecolumn": 1, + "@restonecolfalse": 1, + "Abstract": 2, + "center": 7, + "fontsize": 7, + "selectfont": 6, + "if@restonecol": 1, + "twocolumn": 1, + "ifx": 1, + "@pdfoutput": 1, + "@undefined": 1, + "RTpercent": 3, + "@percentchar": 1, + "AtBeginDvi": 2, + "special": 2, + "LaTeX": 3, + "/12/04": 3, + "SN": 3, + "rawpostscript": 1, + "AtEndDocument": 1, + "pdfinfo": 1, + "/Creator": 1, + "maketitle": 1, + "titlepage": 2, + "footnoterule": 1, + "footnote": 1, + "thanks": 1, + "baselineskip": 2, + "setbox0": 2, + "Requirements": 2, + "Degree": 2, + "null": 3, + "vfil": 8, + "@title": 1, + "centerline": 8, + "wd0": 7, + "hrulefill": 5, + "A": 1, + "Presented": 1, + "In": 1, + "Partial": 1, + "Fulfillment": 1, + "Bachelor": 1, + "Arts": 1, + "bigskip": 2, + "lineskip": 1, + ".75em": 1, + "tabular": 2, + "t": 1, + "c": 5, + "@author": 1, + "@date": 1, + "Approved": 2, + "just": 1, + "below": 2, + "cm": 2, + "copy0": 1, + "approved": 1, + "major": 1, + "sign": 1, + "makebox": 6 }, "Tea": { "<%>": 1, @@ -112408,7 +65625,6 @@ "exit": 1, "when": 1 }, -<<<<<<< HEAD "TypeScript": { "class": 3, "Animal": 4, @@ -112437,2011 +65653,513 @@ "sam.move": 1, "tom.move": 1, "console.log": 1 -======= - "Kotlin": { - "package": 1, - "addressbook": 1, - "class": 5, - "Contact": 1, - "(": 15, - "val": 16, - "name": 2, - "String": 7, - "emails": 1, - "List": 3, - "": 1, - "addresses": 1, - "": 1, - "phonenums": 1, - "": 1, - ")": 15, - "EmailAddress": 1, - "user": 1, - "host": 1, - "PostalAddress": 1, - "streetAddress": 1, - "city": 1, - "zip": 1, - "state": 2, - "USState": 1, - "country": 3, - "Country": 7, - "{": 6, - "assert": 1, - "null": 3, - "xor": 1, - "Countries": 2, - "[": 3, - "]": 3, - "}": 6, - "PhoneNumber": 1, - "areaCode": 1, - "Int": 1, - "number": 1, - "Long": 1, - "object": 1, - "fun": 1, - "get": 2, - "id": 2, - "CountryID": 1, - "countryTable": 2, - "private": 2, - "var": 1, - "table": 5, - "Map": 2, - "": 2, - "if": 1, - "HashMap": 1, - "for": 1, - "line": 3, - "in": 1, - "TextFile": 1, - ".lines": 1, - "stripWhiteSpace": 1, - "true": 1, - "return": 1 }, - "Idris": { - "module": 1, - "Prelude.Char": 1, - "import": 1, - "Builtins": 1, - "isUpper": 4, - "Char": 13, - "-": 8, - "Bool": 8, - "x": 36, - "&&": 3, - "<=>": 3, - "Z": 1, - "isLower": 4, - "z": 1, - "isAlpha": 3, - "||": 9, - "isDigit": 3, - "(": 8, - "9": 1, - "isAlphaNum": 2, - "isSpace": 2, - "isNL": 2, - "toUpper": 3, - "if": 2, - ")": 7, - "then": 2, - "prim__intToChar": 2, - "prim__charToInt": 2, - "else": 2, - "toLower": 2, - "+": 1, - "isHexDigit": 2, - "elem": 1, - "hexChars": 3, - "where": 1, - "List": 1, - "[": 1, - "]": 1 - }, - "PureScript": { - "module": 4, - "Control.Arrow": 1, - "where": 20, - "import": 32, - "Data.Tuple": 3, - "class": 4, - "Arrow": 5, - "a": 46, - "arr": 10, - "forall": 26, - "b": 49, - "c.": 3, - "(": 111, - "-": 88, - "c": 17, - ")": 115, - "first": 4, - "d.": 2, - "Tuple": 21, - "d": 6, - "instance": 12, - "arrowFunction": 1, - "f": 28, - "second": 3, - "Category": 3, - "swap": 4, - "b.": 1, - "x": 26, - "y": 2, - "infixr": 3, - "***": 2, - "&&": 3, - "&": 3, - ".": 2, - "g": 4, - "ArrowZero": 1, - "zeroArrow": 1, - "<+>": 2, - "ArrowPlus": 1, - "Data.Foreign": 2, - "Foreign": 12, - "..": 1, - "ForeignParser": 29, - "parseForeign": 6, - "parseJSON": 3, - "ReadForeign": 11, - "read": 10, - "prop": 3, - "Prelude": 3, - "Data.Array": 3, - "Data.Either": 1, - "Data.Maybe": 3, - "Data.Traversable": 2, - "foreign": 6, - "data": 3, - "*": 1, - "fromString": 2, - "String": 13, - "Either": 6, - "readPrimType": 5, - "a.": 6, - "readMaybeImpl": 2, - "Maybe": 5, - "readPropImpl": 2, - "showForeignImpl": 2, - "showForeign": 1, - "Prelude.Show": 1, - "show": 5, - "p": 11, - "json": 2, - "monadForeignParser": 1, - "Prelude.Monad": 1, - "return": 6, - "_": 7, - "Right": 9, - "case": 9, - "of": 9, - "Left": 8, - "err": 8, - "applicativeForeignParser": 1, - "Prelude.Applicative": 1, - "pure": 1, - "<*>": 2, - "<$>": 8, - "functorForeignParser": 1, - "Prelude.Functor": 1, - "readString": 1, - "readNumber": 1, - "Number": 1, - "readBoolean": 1, - "Boolean": 1, - "readArray": 1, - "[": 5, - "]": 5, - "let": 4, - "arrayItem": 2, - "i": 2, - "result": 4, - "+": 30, - "in": 2, - "xs": 3, - "traverse": 2, - "zip": 1, - "range": 1, - "length": 3, - "readMaybe": 1, - "<<": 4, - "<": 13, - "Just": 7, - "Nothing": 7, - "ReactiveJQueryTest": 1, - "flip": 2, - "Control.Monad": 1, - "Control.Monad.Eff": 1, - "Control.Monad.JQuery": 1, - "Control.Reactive": 1, - "Control.Reactive.JQuery": 1, - "map": 8, - "head": 2, - "Data.Foldable": 2, - "Data.Monoid": 1, - "Debug.Trace": 1, - "Global": 1, - "parseInt": 1, - "main": 1, - "do": 4, - "personDemo": 2, - "todoListDemo": 1, - "greet": 1, - "firstName": 2, - "lastName": 2, - "Create": 3, - "new": 1, - "reactive": 1, - "variables": 1, - "to": 3, - "hold": 1, - "the": 3, - "user": 1, - "readRArray": 1, - "insertRArray": 1, - "{": 25, - "text": 5, - "completed": 2, - "}": 26, - "paragraph": 2, - "display": 2, - "next": 1, - "task": 4, - "nextTaskLabel": 3, - "create": 2, - "append": 2, - "nextTask": 2, - "toComputedArray": 2, - "toComputed": 2, - "bindTextOneWay": 2, - "counter": 3, - "counterLabel": 3, - "rs": 2, - "cs": 2, - "<->": 1, - "if": 1, - "then": 1, - "else": 1, - "entry": 1, - "entry.completed": 1, - "foldl": 4, - "Data.Map": 1, - "Map": 26, - "empty": 6, - "singleton": 5, - "insert": 10, - "lookup": 8, - "delete": 9, - "alter": 8, - "toList": 10, - "fromList": 3, - "union": 3, - "qualified": 1, - "as": 1, - "P": 1, - "concat": 3, - "k": 108, - "v": 57, - "Leaf": 15, - "|": 9, - "Branch": 27, - "key": 13, - "value": 8, - "left": 15, - "right": 14, - "eqMap": 1, - "P.Eq": 11, - "m1": 6, - "m2": 6, - "P.": 11, - "/": 1, - "P.not": 1, - "showMap": 1, - "P.Show": 3, - "m": 6, - "P.show": 1, - "v.": 11, - "P.Ord": 9, - "b@": 6, - "k1": 16, - "b.left": 9, - "b.right": 8, - "findMinKey": 5, - "glue": 4, - "minKey": 3, - "root": 2, - "b.key": 1, - "b.value": 2, - "v1": 3, - "v2.": 1, - "v2": 2 ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method - }, - "NetLogo": { - "patches": 7, - "-": 28, - "own": 1, - "[": 17, - "living": 6, - ";": 12, - "indicates": 1, - "if": 2, - "the": 6, - "cell": 10, - "is": 1, - "live": 4, - "neighbors": 5, - "counts": 1, - "how": 1, - "many": 1, - "neighboring": 1, - "cells": 2, - "are": 1, - "alive": 1, - "]": 17, - "to": 6, - "setup": 2, - "blank": 1, - "clear": 2, - "all": 5, - "ask": 6, - "death": 5, - "reset": 2, - "ticks": 2, - "end": 6, - "random": 2, - "ifelse": 3, - "float": 1, - "<": 1, - "initial": 1, - "density": 1, - "birth": 4, - "set": 5, - "true": 1, - "pcolor": 2, - "fgcolor": 1, - "false": 1, - "bgcolor": 1, - "go": 1, - "count": 1, - "with": 2, - "Starting": 1, - "a": 1, - "new": 1, - "here": 1, - "ensures": 1, - "that": 1, - "finish": 1, - "executing": 2, - "first": 1, - "before": 1, - "any": 1, - "of": 2, - "them": 1, - "start": 1, - "second": 1, - "ask.": 1, - "This": 1, - "keeps": 1, - "in": 2, - "synch": 1, - "each": 2, - "other": 1, - "so": 1, - "births": 1, - "and": 1, - "deaths": 1, - "at": 1, - "generation": 1, - "happen": 1, - "lockstep.": 1, - "tick": 1, - "draw": 1, - "let": 1, - "erasing": 2, - "patch": 2, - "mouse": 5, - "xcor": 2, - "ycor": 2, - "while": 1, - "down": 1, - "display": 1 - }, - "Eagle": { - "": 2, - "version=": 4, - "encoding=": 2, - "": 2, - "eagle": 4, - "SYSTEM": 2, - "dtd": 2, - "": 2, - "": 2, - "": 2, - "": 4, - "alwaysvectorfont=": 2, - "verticaltext=": 2, - "": 2, - "": 2, - "distance=": 2, - "unitdist=": 2, - "unit=": 2, - "style=": 2, - "multiple=": 2, - "display=": 2, - "altdistance=": 2, - "altunitdist=": 2, - "altunit=": 2, - "": 2, - "": 118, - "number=": 119, - "name=": 447, - "color=": 118, - "fill=": 118, - "visible=": 118, - "active=": 125, - "": 2, - "": 1, - "": 1, - "": 497, - "x1=": 630, - "y1=": 630, - "x2=": 630, - "y2=": 630, - "width=": 512, - "layer=": 822, - "": 1, - "": 2, - "": 4, - "": 60, - "&": 5501, - "lt": 2665, - ";": 5567, - "b": 64, - "gt": 2770, - "Resistors": 2, - "Capacitors": 4, - "Inductors": 2, - "/b": 64, - "p": 65, - "Based": 2, - "on": 2, - "the": 5, - "previous": 2, - "libraries": 2, - "ul": 2, - "li": 12, - "r.lbr": 2, - "cap.lbr": 2, - "cap": 2, - "-": 768, - "fe.lbr": 2, - "captant.lbr": 2, - "polcap.lbr": 2, - "ipc": 2, - "smd.lbr": 2, - "/ul": 2, - "All": 2, - "SMD": 4, - "packages": 2, - "are": 2, - "defined": 2, - "according": 2, - "to": 3, - "IPC": 2, - "specifications": 2, - "and": 5, - "CECC": 2, - "author": 3, - "Created": 3, - "by": 3, - "librarian@cadsoft.de": 3, - "/author": 3, - "for": 5, - "Electrolyt": 2, - "see": 4, - "also": 2, - "www.bccomponents.com": 2, - "www.panasonic.com": 2, - "www.kemet.com": 2, - "http": 4, - "//www.secc.co.jp/pdf/os_e/2004/e_os_all.pdf": 2, - "(": 4, - "SANYO": 2, - ")": 4, - "trimmer": 2, - "refence": 2, - "u": 2, - "www.electrospec": 2, - "inc.com/cross_references/trimpotcrossref.asp": 2, - "/u": 2, - "table": 2, - "border": 2, - "cellspacing": 2, - "cellpadding": 2, - "width": 6, - "cellpaddding": 2, - "tr": 2, - "valign": 2, - "td": 4, - "amp": 66, - "nbsp": 66, - "/td": 4, - "font": 2, - "color": 20, - "size": 2, - "TRIM": 4, - "POT": 4, - "CROSS": 4, - "REFERENCE": 4, - "/font": 2, - "P": 128, - "TABLE": 4, - "BORDER": 4, - "CELLSPACING": 4, - "CELLPADDING": 4, - "TR": 36, - "TD": 170, - "COLSPAN": 16, - "FONT": 166, - "SIZE": 166, - "FACE": 166, - "ARIAL": 166, - "B": 106, - "RECTANGULAR": 2, - "MULTI": 6, - "TURN": 10, - "/B": 90, - "/FONT": 166, - "/TD": 170, - "/TR": 36, - "ALIGN": 124, - "CENTER": 124, - "BOURNS": 6, - "BI": 10, - "TECH": 10, - "DALE": 10, - "VISHAY": 10, - "PHILIPS/MEPCO": 10, - "MURATA": 6, - "PANASONIC": 10, - "SPECTROL": 6, - "MILSPEC": 6, - "BGCOLOR": 76, - "BR": 1478, - "W": 92, - "Y": 36, - "J": 12, - "L": 18, - "X": 82, - "PH": 2, - "XH": 2, - "SLT": 2, - "ALT": 42, - "T8S": 2, - "T18/784": 2, - "/1897": 2, - "/1880": 2, - "EKP/CT20/RJ": 2, - "RJ": 14, - "EKQ": 4, - "EKR": 4, - "EKJ": 2, - "EKL": 2, - "S": 18, - "EVMCOG": 2, - "T602": 2, - "RT/RTR12": 6, - "RJ/RJR12": 6, - "SQUARE": 2, - "BOURN": 4, - "H": 24, - "Z": 16, - "T63YB": 2, - "T63XB": 2, - "T93Z": 2, - "T93YA": 2, - "T93XA": 2, - "T93YB": 2, - "T93XB": 2, - "EKP": 8, - "EKW": 6, - "EKM": 4, - "EKB": 2, - "EKN": 2, - "P/CT9P": 2, - "P/3106P": 2, - "W/3106W": 2, - "X/3106X": 2, - "Y/3106Y": 2, - "Z/3105Z": 2, - "EVMCBG": 2, - "EVMCCG": 2, - "RT/RTR22": 8, - "RJ/RJR22": 6, - "RT/RTR26": 6, - "RJ/RJR26": 12, - "RT/RTR24": 6, - "RJ/RJR24": 12, - "SINGLE": 4, - "E": 6, - "K": 4, - "T": 10, - "V": 10, - "M": 10, - "R": 6, - "U": 4, - "C": 6, - "F": 4, - "RX": 6, - "PA": 2, - "A": 16, - "XW": 2, - "XL": 2, - "PM": 2, - "PX": 2, - "RXW": 2, - "RXL": 2, - "T7YB": 2, - "T7YA": 2, - "TXD": 2, - "TYA": 2, - "TYP": 2, - "TYD": 2, - "TX": 4, - "SX": 6, - "ET6P": 2, - "ET6S": 2, - "ET6X": 2, - "W/8014EMW": 2, - "P/8014EMP": 2, - "X/8014EMX": 2, - "TM7W": 2, - "TM7P": 2, - "TM7X": 2, - "SMS": 2, - "SMB": 2, - "SMA": 2, - "CT": 12, - "EKV": 2, - "EKX": 2, - "EKZ": 2, - "N": 2, - "RVA0911V304A": 2, - "RVA0911H413A": 2, - "RVG0707V100A": 2, - "RVA0607V": 2, - "RVA1214H213A": 2, - "EVMQ0G": 4, - "EVMQIG": 2, - "EVMQ3G": 2, - "EVMS0G": 2, - "EVMG0G": 2, - "EVMK4GA00B": 2, - "EVM30GA00B": 2, - "EVMK0GA00B": 2, - "EVM38GA00B": 2, - "EVMB6": 2, - "EVLQ0": 2, - "EVMMSG": 2, - "EVMMBG": 2, - "EVMMAG": 2, - "EVMMCS": 2, - "EVMM1": 2, - "EVMM0": 2, - "EVMM3": 2, - "RJ/RJR50": 6, - "/TABLE": 4, - "TOCOS": 4, - "AUX/KYOCERA": 4, - "G": 10, - "ST63Z": 2, - "ST63Y": 2, - "ST5P": 2, - "ST5W": 2, - "ST5X": 2, - "A/B": 2, - "C/D": 2, - "W/X": 2, - "ST5YL/ST53YL": 2, - "ST5YJ/5T53YJ": 2, - "ST": 14, - "EVM": 8, - "YS": 2, - "D": 2, - "G4B": 2, - "G4A": 2, - "TR04": 2, - "S1": 4, - "TRG04": 2, - "DVR": 2, - "CVR": 4, - "A/C": 2, - "ALTERNATE": 2, - "/tr": 2, - "/table": 2, - "": 60, - "": 4, - "": 53, - "RESISTOR": 52, - "": 64, - "x=": 240, - "y=": 242, - "dx=": 64, - "dy=": 64, - "": 108, - "size=": 114, - "NAME": 52, - "": 108, - "VALUE": 52, - "": 132, - "": 52, - "": 3, - "": 3, - "Pin": 1, - "Header": 1, - "Connectors": 1, - "PIN": 1, - "HEADER": 1, - "": 39, - "drill=": 41, - "shape=": 39, - "ratio=": 41, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "language=": 2, - "EAGLE": 2, - "Design": 5, - "Rules": 5, - "Die": 1, - "Standard": 1, - "sind": 1, - "so": 2, - "gew": 1, - "hlt": 1, - "dass": 1, - "sie": 1, - "f": 1, - "r": 1, - "die": 3, - "meisten": 1, - "Anwendungen": 1, - "passen.": 1, - "Sollte": 1, - "ihre": 1, - "Platine": 1, - "besondere": 1, - "Anforderungen": 1, - "haben": 1, - "treffen": 1, - "Sie": 1, - "erforderlichen": 1, - "Einstellungen": 1, - "hier": 1, - "und": 1, - "speichern": 1, - "unter": 1, - "einem": 1, - "neuen": 1, - "Namen": 1, - "ab.": 1, - "The": 1, - "default": 1, - "have": 2, - "been": 1, - "set": 1, - "cover": 1, - "a": 2, - "wide": 1, - "range": 1, - "of": 1, - "applications.": 1, - "Your": 1, - "particular": 1, - "design": 2, - "may": 1, - "different": 1, - "requirements": 1, - "please": 1, - "make": 1, - "necessary": 1, - "adjustments": 1, - "save": 1, - "your": 1, - "customized": 1, - "rules": 1, - "under": 1, - "new": 1, - "name.": 1, - "": 142, - "value=": 145, - "": 1, - "": 1, - "": 8, - "": 8, - "refer=": 7, - "": 1, - "": 1, - "": 3, - "library=": 3, - "package=": 3, - "smashed=": 3, - "": 6, - "": 3, - "1": 1, - "778": 1, - "16": 1, - "002": 1, - "": 1, - "": 1, - "": 3, - "": 4, - "element=": 4, - "pad=": 4, - "": 1, - "extent=": 1, - "": 3, - "": 2, - "": 8, - "": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "xreflabel=": 1, - "xrefpart=": 1, - "Frames": 1, - "Sheet": 2, - "Layout": 1, - "": 1, - "": 1, - "font=": 4, - "DRAWING_NAME": 1, - "LAST_DATE_TIME": 1, - "SHEET": 1, - "": 1, - "columns=": 1, - "rows=": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "prefix=": 1, - "uservalue=": 1, - "FRAME": 1, - "DIN": 1, - "A4": 1, - "landscape": 1, - "with": 1, - "location": 1, - "doc.": 1, - "field": 1, - "": 1, - "": 1, - "symbol=": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "wave": 10, - "soldering": 10, - "Source": 2, - "//download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf": 2, - "MELF": 8, - "type": 20, - "grid": 20, - "mm": 20, - "curve=": 56, - "": 12, - "radius=": 12 - }, - "Common Lisp": { - ";": 152, - "@file": 1, - "macros": 2, - "-": 161, - "advanced.cl": 1, - "@breif": 1, - "Advanced": 1, - "macro": 5, - "practices": 1, - "defining": 1, - "your": 1, - "own": 1, - "Macro": 1, - "definition": 1, - "skeleton": 1, - "(": 365, - "defmacro": 5, - "name": 6, - "parameter*": 1, - ")": 372, - "body": 8, - "form*": 1, - "Note": 2, - "that": 5, - "backquote": 1, - "expression": 2, + "UnrealScript": { + "//": 5, + "-": 220, + "class": 18, + "MutU2Weapons": 1, + "extends": 2, + "Mutator": 1, + "config": 18, + "(": 189, + "U2Weapons": 1, + ")": 189, + ";": 295, + "var": 30, + "string": 25, + "ReplacedWeaponClassNames0": 1, + "ReplacedWeaponClassNames1": 1, + "ReplacedWeaponClassNames2": 1, + "ReplacedWeaponClassNames3": 1, + "ReplacedWeaponClassNames4": 1, + "ReplacedWeaponClassNames5": 1, + "ReplacedWeaponClassNames6": 1, + "ReplacedWeaponClassNames7": 1, + "ReplacedWeaponClassNames8": 1, + "ReplacedWeaponClassNames9": 1, + "ReplacedWeaponClassNames10": 1, + "ReplacedWeaponClassNames11": 1, + "ReplacedWeaponClassNames12": 1, + "bool": 18, + "bConfigUseU2Weapon0": 1, + "bConfigUseU2Weapon1": 1, + "bConfigUseU2Weapon2": 1, + "bConfigUseU2Weapon3": 1, + "bConfigUseU2Weapon4": 1, + "bConfigUseU2Weapon5": 1, + "bConfigUseU2Weapon6": 1, + "bConfigUseU2Weapon7": 1, + "bConfigUseU2Weapon8": 1, + "bConfigUseU2Weapon9": 1, + "bConfigUseU2Weapon10": 1, + "bConfigUseU2Weapon11": 1, + "bConfigUseU2Weapon12": 1, + "//var": 8, + "byte": 4, + "bUseU2Weapon": 1, + "[": 125, + "]": 125, + "": 7, + "ReplacedWeaponClasses": 3, + "": 2, + "ReplacedWeaponPickupClasses": 1, + "": 3, + "ReplacedAmmoPickupClasses": 1, + "U2WeaponClasses": 2, + "//GE": 17, + "For": 3, + "default": 12, + "properties": 3, + "ONLY": 3, + "U2WeaponPickupClassNames": 1, + "U2AmmoPickupClassNames": 2, + "bIsVehicle": 4, + "bNotVehicle": 3, + "localized": 2, + "U2WeaponDisplayText": 1, + "U2WeaponDescText": 1, + "GUISelectOptions": 1, + "int": 10, + "FirePowerMode": 1, + "bExperimental": 3, + "bUseFieldGenerator": 2, + "bUseProximitySensor": 2, + "bIntegrateShieldReward": 2, + "IterationNum": 8, + "Weapons.Length": 1, + "const": 1, + "DamageMultiplier": 28, + "DamagePercentage": 3, + "bUseXMPFeel": 4, + "FlashbangModeString": 1, + "struct": 1, + "WeaponInfo": 2, + "{": 28, + "ReplacedWeaponClass": 1, + "Generated": 4, + "from": 6, + "ReplacedWeaponClassName.": 2, + "This": 3, "is": 6, - "most": 2, - "often": 1, - "used": 2, - "in": 23, - "the": 35, - "form": 1, - "primep": 4, - "test": 1, - "a": 7, - "number": 2, - "for": 3, - "prime": 12, - "defun": 23, - "n": 8, - "if": 14, - "<": 1, - "return": 3, - "from": 8, - "do": 9, - "i": 8, - "+": 35, - "p": 10, - "t": 7, - "not": 6, - "zerop": 1, - "mod": 1, - "sqrt": 1, - "when": 4, - "next": 11, - "bigger": 1, - "than": 1, - "specified": 2, - "The": 2, - "recommended": 1, - "procedures": 1, - "to": 4, - "writting": 1, - "new": 6, - "are": 2, - "as": 1, - "follows": 1, - "Write": 2, - "sample": 2, - "call": 2, - "and": 12, - "code": 2, - "it": 2, - "should": 1, - "expand": 1, - "into": 2, - "primes": 3, - "format": 3, - "Expected": 1, - "expanded": 1, - "codes": 1, - "generate": 1, - "hardwritten": 1, - "expansion": 2, - "arguments": 1, - "var": 49, - "range": 4, - "&": 8, - "rest": 5, - "let": 6, - "first": 5, - "start": 5, - "second": 3, - "end": 8, - "third": 2, - "@body": 4, - "More": 1, - "concise": 1, - "implementations": 1, - "with": 7, - "synonym": 1, - "also": 1, - "emits": 1, - "more": 1, - "friendly": 1, - "messages": 1, - "on": 1, - "incorrent": 1, - "input.": 1, - "Test": 1, - "result": 1, - "of": 3, - "macroexpand": 2, - "function": 2, - "gensyms": 4, - "value": 8, - "Define": 1, - "note": 1, - "how": 1, - "comma": 1, - "interpolate": 1, - "loop": 2, - "names": 2, - "collect": 1, - "gensym": 1, - "*": 2, - "lisp": 1, - "package": 1, - "foo": 2, - "Header": 1, - "comment.": 4, - "defvar": 4, - "*foo*": 1, - "eval": 6, - "execute": 1, - "compile": 1, - "toplevel": 2, - "load": 1, - "add": 1, - "x": 47, - "optional": 2, - "y": 2, - "key": 1, - "z": 2, - "declare": 1, - "ignore": 1, - "Inline": 1, - "or": 4, - "#": 15, - "|": 9, - "Multi": 1, - "line": 2, - "b": 6, - "After": 1, - "ESCUELA": 1, - "POLITECNICA": 1, - "SUPERIOR": 1, - "UNIVERSIDAD": 1, - "AUTONOMA": 1, - "DE": 1, - "MADRID": 1, - "INTELIGENCIA": 1, - "ARTIFICIAL": 1, - "Motor": 1, - "de": 2, - "inferencia": 1, - "Basado": 1, - "en": 2, - "parte": 1, - "Peter": 1, - "Norvig": 1, - "Global": 1, - "variables": 6, - "*hypothesis": 1, - "list*": 7, - "*rule": 4, - "*fact": 2, - "Constants": 1, - "defconstant": 2, - "fail": 10, - "nil": 3, - "no": 6, - "bindings": 45, - "lambda": 4, - "mapcar": 2, - "man": 3, - "luis": 1, - "pedro": 1, - "woman": 2, - "mart": 1, - "daniel": 1, - "laura": 1, - "facts": 1, - "aux": 3, - "unify": 12, - "hypothesis": 10, - "list": 9, - "____________________________________________________________________________": 5, - "FUNCTION": 3, - "FIND": 1, - "RULES": 2, - "COMMENTS": 3, - "Returns": 2, - "rules": 5, - "whose": 1, - "THENs": 1, - "term": 1, - "given": 3, - "": 2, - "satisfy": 1, - "this": 1, - "requirement": 1, - "renamed.": 1, - "EXAMPLES": 2, - "setq": 1, - "renamed": 3, - "rule": 17, - "rename": 1, - "then": 7, - "unless": 3, - "null": 1, - "equal": 4, - "VALUE": 1, - "FROM": 1, - "all": 2, - "solutions": 1, - "found": 5, - "using": 1, - "": 1, - ".": 10, - "single": 1, - "can": 4, - "have": 1, - "multiple": 1, - "solutions.": 1, - "mapcan": 1, - "R1": 2, - "pertenece": 3, - "E": 4, - "_": 8, - "R2": 2, - "Xs": 2, - "Then": 1, - "EVAL": 2, - "RULE": 2, - "PERTENECE": 6, - "E.42": 2, - "returns": 4, - "NIL": 3, - "That": 2, - "query": 4, - "be": 2, - "proven": 2, - "binding": 17, - "necessary": 2, - "fact": 4, - "has": 1, - "On": 1, - "other": 1, - "hand": 1, - "E.49": 2, - "XS.50": 2, - "R2.": 1, - "ifs": 1, - "NOT": 2, - "question": 1, - "T": 1, - "equality": 2, - "UNIFY": 1, - "Finds": 1, - "general": 1, - "unifier": 1, - "two": 2, - "input": 2, - "expressions": 2, - "taking": 1, - "account": 1, - "": 1, - "In": 1, - "case": 1, - "total": 1, - "unification.": 1, - "Otherwise": 1, - "which": 1, - "constant": 1, - "anonymous": 4, - "make": 4, - "variable": 6, - "Auxiliary": 1, - "Functions": 1, - "cond": 3, - "get": 5, - "lookup": 5, - "occurs": 5, - "extend": 2, - "symbolp": 2, - "eql": 2, - "char": 2, - "symbol": 2, - "assoc": 1, - "car": 2, - "val": 6, - "cdr": 2, - "cons": 2, - "append": 1, - "eq": 7, - "consp": 2, - "subst": 3, - "listp": 1, - "exp": 1, - "unique": 3, - "find": 6, - "anywhere": 6, - "predicate": 8, - "tree": 11, - "so": 4, - "far": 4, - "atom": 3, - "funcall": 2, - "pushnew": 1, - "gentemp": 2, - "quote": 3, - "s/reuse": 1, - "cons/cons": 1, - "expresion": 2, - "some": 1, - "EOF": 1 - }, - "Parrot Internal Representation": { - "SHEBANG#!parrot": 1, - ".sub": 1, - "main": 1, - "say": 1, - ".end": 1 - }, - "Objective-C++": { - "#import": 3, - "": 1, - "": 1, - "#if": 10, - "#ifdef": 6, - "OODEBUG": 1, - "#define": 1, - "OODEBUG_SQL": 4, - "#endif": 19, - "OOOODatabase": 1, - "OODB": 1, - ";": 494, - "static": 16, - "NSString": 25, - "*kOOObject": 1, - "@": 28, - "*kOOInsert": 1, - "*kOOUpdate": 1, - "*kOOExecSQL": 1, - "#pragma": 5, - "mark": 5, - "OORecord": 3, - "abstract": 1, - "superclass": 1, - "for": 14, - "records": 1, - "@implementation": 7, - "+": 55, - "(": 612, - "id": 19, - ")": 610, - "record": 18, - "OO_AUTORETURNS": 2, - "{": 151, - "return": 149, - "OO_AUTORELEASE": 3, - "[": 268, - "self": 70, - "alloc": 11, - "]": 266, - "init": 4, - "}": 148, - "insert": 7, - "*record": 4, - "insertWithParent": 1, - "parent": 10, - "OODatabase": 26, - "sharedInstance": 37, - "copyJoinKeysFrom": 1, - "to": 6, - "-": 175, - "delete": 4, - "void": 18, - "update": 4, - "indate": 4, - "upsert": 4, - "int": 36, - "commit": 6, - "rollback": 5, - "setNilValueForKey": 1, - "*": 34, - "key": 2, - "OOReference": 2, - "": 1, - "zeroForNull": 4, - "if": 104, - "NSNumber": 4, - "numberWithInt": 1, - "setValue": 1, - "forKey": 1, - "OOArray": 16, - "": 14, - "select": 21, - "nil": 25, - "intoClass": 11, - "joinFrom": 10, - "cOOString": 15, - "sql": 21, - "selectRecordsRelatedTo": 1, - "class": 14, - "importFrom": 1, - "OOFile": 4, - "&": 21, - "file": 2, - "delimiter": 4, - "delim": 4, - "rows": 2, - "OOMetaData": 21, - "import": 1, - "file.string": 1, - "insertArray": 3, - "BOOL": 11, - "exportTo": 1, - "file.save": 1, - "export": 1, - "bindToView": 1, - "OOView": 2, - "view": 28, - "delegate": 4, - "bindRecord": 1, - "toView": 1, - "updateFromView": 1, - "updateRecord": 1, - "fromView": 3, - "description": 6, - "*metaData": 14, - "metaDataForClass": 3, - "//": 7, - "hack": 1, - "required": 2, - "where": 1, - "contains": 1, - "a": 9, - "field": 1, - "avoid": 1, - "recursion": 1, - "OOStringArray": 6, - "ivars": 5, - "<<": 2, - "metaData": 26, - "encode": 3, - "dictionaryWithValuesForKeys": 3, - "@end": 14, - "OOAdaptor": 6, - "all": 3, - "methods": 1, - "by": 1, - "objsql": 1, - "access": 2, - "database": 12, - "@interface": 6, - "NSObject": 1, - "sqlite3": 1, - "*db": 1, - "sqlite3_stmt": 1, - "*stmt": 1, - "struct": 5, - "_str_link": 5, - "*next": 2, - "char": 9, - "str": 7, - "*strs": 1, - "OO_UNSAFE": 1, - "*owner": 3, - "initPath": 5, - "path": 9, - "prepare": 4, - "bindCols": 5, - "cOOStringArray": 3, - "columns": 7, - "values": 29, - "cOOValueDictionary": 2, - "startingAt": 5, - "pno": 13, - "bindNulls": 8, - "bindResultsIntoInstancesOfClass": 4, - "Class": 9, - "recordClass": 16, - "sqlite_int64": 2, - "lastInsertRowID": 2, - "NSData": 3, - "OOExtras": 9, - "initWithDescription": 1, - "is": 2, - "the": 5, - "low": 1, - "level": 1, - "interface": 1, - "particular": 2, - "": 1, - "sharedInstanceForPath": 2, - "OODocument": 1, - ".path": 1, - "OONil": 1, - "OO_RELEASE": 6, - "exec": 10, - "fmt": 9, - "...": 3, - "va_list": 3, - "argp": 12, - "va_start": 3, - "*sql": 5, - "initWithFormat": 3, - "arguments": 3, - "va_end": 3, - "const": 16, - "objects": 4, - "deleteArray": 2, - "object": 13, - "commitTransaction": 3, - "super": 3, - "adaptor": 1, - "registerSubclassesOf": 1, - "recordSuperClass": 2, - "numClasses": 5, - "objc_getClassList": 2, - "NULL": 4, - "*classes": 2, - "malloc": 2, - "sizeof": 2, - "": 1, - "viewClasses": 4, - "classNames": 4, - "scan": 1, - "registered": 2, - "classes": 12, - "relevant": 1, - "subclasses": 1, - "c": 14, - "<": 5, - "superClass": 5, - "class_getName": 4, - "while": 4, - "class_getSuperclass": 1, - "respondsToSelector": 2, - "@selector": 4, - "ooTableSql": 1, - "else": 11, - "tableMetaDataForClass": 8, - "break": 6, - "delay": 1, - "creation": 1, - "views": 1, - "until": 1, - "after": 1, - "tables": 1, - "": 1, - "in": 9, - "order": 1, - "free": 3, - "Register": 1, - "list": 1, - "of": 2, - "before": 1, - "using": 2, - "them": 2, - "so": 2, - "can": 1, - "determine": 1, - "relationships": 1, - "between": 1, - "registerTableClassesNamed": 1, - "tableClass": 2, - "NSBundle": 1, - "mainBundle": 1, - "classNamed": 1, - "Send": 1, - "any": 2, - "SQL": 1, - "Sql": 1, - "format": 1, - "string": 1, - "escape": 1, - "characters": 3, - "Any": 1, - "results": 3, - "returned": 1, + "what": 1, + "we": 3, + "replace.": 1, + "ReplacedWeaponPickupClass": 1, + "UNUSED": 1, + "ReplacedAmmoPickupClass": 1, + "WeaponClass": 1, + "the": 31, + "weapon": 10, "are": 1, - "placed": 1, - "as": 1, + "going": 1, + "to": 4, + "put": 1, + "inside": 1, + "world.": 1, + "WeaponPickupClassName": 1, + "WeponClass.": 1, + "AmmoPickupClassName": 1, + "WeaponClass.": 1, + "bEnabled": 1, + "Structs": 1, + "can": 2, + "d": 1, + "thus": 1, + "still": 1, + "require": 1, + "bConfigUseU2WeaponX": 1, + "indicates": 1, + "that": 3, + "spawns": 1, + "a": 2, + "vehicle": 3, + "deployable": 1, + "turrets": 1, + ".": 2, + "These": 1, + "only": 2, + "work": 1, + "in": 4, + "gametypes": 1, + "duh.": 1, + "Opposite": 1, + "of": 1, + "works": 1, + "non": 1, + "gametypes.": 2, + "Think": 1, + "shotgun.": 1, + "}": 27, + "Weapons": 31, + "function": 5, + "PostBeginPlay": 1, + "local": 8, + "FireMode": 8, + "x": 65, + "//local": 3, + "ReplacedWeaponPickupClassName": 1, + "//IterationNum": 1, + "ArrayCount": 2, + "Level.Game.bAllowVehicles": 4, + "He": 1, + "he": 1, + "neat": 1, + "way": 1, + "get": 1, + "required": 1, + "number.": 1, + "for": 11, + "<": 9, + "+": 18, + ".bEnabled": 3, + "GetPropertyText": 5, + "needed": 1, + "use": 1, + "variables": 1, "an": 1, "array": 2, - "dictionary": 1, - "results.": 1, - "*/": 1, - "errcode": 12, - "OOString": 6, - "stringForSql": 2, - "&&": 12, - "*aColumnName": 1, - "**results": 1, - "allKeys": 1, - "objectAtIndex": 1, - "OOValueDictionary": 5, - "joinValues": 4, - "sharedColumns": 5, - "*parentMetaData": 1, - "parentMetaData": 2, - "naturalJoinTo": 1, - "joinableColumns": 1, - "whereClauseFor": 2, - "qualifyNulls": 2, - "NO": 3, - "ooOrderBy": 2, - "OOFormat": 5, - "NSLog": 4, - "*joinValues": 1, - "*adaptor": 7, - "||": 18, - "": 1, - "tablesRelatedByNaturalJoinFrom": 1, - "tablesWithNaturalJoin": 5, - "i": 29, - "**tablesWithNaturalJoin": 1, - "*childMetaData": 1, - "tableMetaDataByClassName": 3, - "prepareSql": 1, - "toTable": 1, - "childMetaData": 1, - "OODictionary": 2, - "": 1, - "tmpResults": 1, - "kOOExecSQL": 1, - "*exec": 2, - "OOWarn": 9, - "errmsg": 5, - "continue": 3, - "OORef": 2, - "": 1, - "*values": 3, - "kOOObject": 3, - "isInsert": 4, - "kOOInsert": 1, - "isUpdate": 5, - "kOOUpdate": 2, - "newValues": 3, - "changedCols": 4, - "*name": 4, - "*newValues": 1, - "name": 9, - "isEqual": 1, - "tableName": 4, - "columns/": 1, - "nchanged": 4, - "*object": 1, - "lastSQL": 4, - "**changedCols": 1, - "quote": 2, - "commaQuote": 2, - "": 1, - "YES": 6, - "commited": 2, - "updateCount": 2, - "transaction": 2, - "updated": 2, - "NSMutableDictionary": 1, - "*d": 1, - "*transaction": 1, - "d": 2, - "": 1, - "#ifndef": 3, - "OO_ARC": 1, - "boxed": 1, - "valueForKey": 1, - "pointerValue": 1, - "setValuesForKeysWithDictionary": 2, - "decode": 2, - "count": 1, - "className": 3, - "createTableSQL": 2, - "*idx": 1, - "indexes": 1, - "idx": 2, - "implements": 1, - "owner": 15, - ".directory": 1, - ".mkdir": 1, - "sqlite3_open": 1, - "db": 8, - "SQLITE_OK": 6, - "*path": 1, - "sqlite3_prepare_v2": 1, - "stmt": 20, - "sqlite3_errmsg": 3, - "bindValue": 2, - "value": 26, - "asParameter": 2, - "OODEBUG_BIND": 1, - "OONull": 3, - "sqlite3_bind_null": 1, - "OOSQL_THREAD_SAFE_BUT_USES_MORE_MEMORY": 1, - "isKindOfClass": 3, - "sqlite3_bind_text": 2, - "UTF8String": 1, - "SQLITE_STATIC": 3, - "#else": 1, - "len": 4, - "lengthOfBytesUsingEncoding": 1, - "NSUTF8StringEncoding": 3, - "*str": 2, - "next": 3, - "strs": 6, - "getCString": 1, - "maxLength": 1, - "encoding": 2, - "sqlite3_bind_blob": 1, - "bytes": 5, - "length": 4, - "*type": 1, - "objCType": 1, - "type": 10, - "switch": 4, - "case": 25, - "sqlite3_bind_int": 1, - "intValue": 3, - "sqlite3_bind_int64": 1, - "longLongValue": 1, - "sqlite3_bind_double": 1, - "doubleValue": 1, - "*columns": 1, - "valuesForNextRow": 2, - "ncols": 2, - "sqlite3_column_count": 1, - "sqlite3_column_name": 1, - "sqlite3_column_type": 2, - "SQLITE_NULL": 1, - "SQLITE_INTEGER": 1, - "initWithLongLong": 1, - "sqlite3_column_int64": 1, - "SQLITE_FLOAT": 1, - "initWithDouble": 1, - "sqlite3_column_double": 1, - "SQLITE_TEXT": 1, - "unsigned": 2, - "*bytes": 2, - "sqlite3_column_text": 1, - "NSMutableString": 1, - "initWithBytes": 2, - "sqlite3_column_bytes": 2, - "SQLITE_BLOB": 1, - "sqlite3_column_blob": 1, - "default": 3, - "out": 4, - "awakeFromDB": 4, - "instancesRespondToSelector": 1, - "sqlite3_step": 1, - "SQLITE_ROW": 1, - "SQLITE_DONE": 1, - "out.alloc": 1, - "sqlite3_changes": 1, - "sqlite3_finalize": 1, - "sqlite3_last_insert_rowid": 1, - "dealloc": 1, - "sqlite3_close": 1, - "OO_DEALLOC": 1, - "instances": 1, - "represent": 1, - "table": 1, - "and": 2, - "it": 2, - "s": 2, - "l": 1, - "C": 1, - "S": 1, - "I": 1, - "L": 1, - "q": 1, - "Q": 1, - "f": 1, - "%": 2, - "_": 2, - "tag": 1, - "A": 2, - "<'>": 1, - "iptr": 4, - "*optr": 1, - "unhex": 2, - "*iptr": 1, - "*16": 1, - "hex": 1, - "initWithBytesNoCopy": 1, - "optr": 1, - "freeWhenDone": 1, - "stringValue": 4, - "charValue": 1, - "shortValue": 1, - "NSArray": 3, - "OOReplace": 2, - "reformat": 4, - "|": 3, - "NSDictionary": 2, - "__IPHONE_OS_VERSION_MIN_REQUIRED": 1, - "UISwitch": 2, - "text": 1, - "self.on": 1, - "#include": 26, - "": 1, - "": 1, - "defined": 1, - "OBJC_API_VERSION": 2, - "inline": 3, - "IMP": 4, - "method_setImplementation": 2, - "Method": 2, - "m": 3, - "oi": 2, - "method_imp": 2, - "namespace": 1, - "WebCore": 1, - "ENABLE": 10, - "DRAG_SUPPORT": 7, - "double": 1, - "EventHandler": 30, - "TextDragDelay": 1, - "RetainPtr": 4, - "": 4, - "currentNSEventSlot": 6, - "DEFINE_STATIC_LOCAL": 1, - "event": 30, - "NSEvent": 21, - "*EventHandler": 2, - "currentNSEvent": 13, - ".get": 1, - "CurrentEventScope": 14, - "WTF_MAKE_NONCOPYABLE": 1, - "public": 1, - "private": 1, - "m_savedCurrentEvent": 3, - "NDEBUG": 2, - "m_event": 3, - "*event": 11, - "ASSERT": 13, - "bool": 26, - "wheelEvent": 5, - "Page*": 7, - "page": 33, - "m_frame": 24, - "false": 40, - "scope": 6, - "PlatformWheelEvent": 2, - "chrome": 8, - "platformPageClient": 4, - "handleWheelEvent": 2, - "wheelEvent.isAccepted": 1, - "PassRefPtr": 2, - "": 1, - "currentKeyboardEvent": 1, - "NSApp": 5, - "currentEvent": 2, - "NSKeyDown": 4, - "PlatformKeyboardEvent": 6, - "platformEvent": 2, - "platformEvent.disambiguateKeyDownEvent": 1, - "RawKeyDown": 1, - "KeyboardEvent": 2, - "create": 3, - "document": 6, - "defaultView": 2, - "NSKeyUp": 3, - "keyEvent": 2, - "BEGIN_BLOCK_OBJC_EXCEPTIONS": 13, - "END_BLOCK_OBJC_EXCEPTIONS": 13, - "focusDocumentView": 1, - "FrameView*": 7, - "frameView": 4, - "NSView": 14, - "*documentView": 1, - "documentView": 2, - "focusNSView": 1, - "focusController": 1, - "setFocusedFrame": 1, - "passWidgetMouseDownEventToWidget": 3, - "MouseEventWithHitTestResults": 7, - "RenderObject*": 2, - "target": 6, - "targetNode": 3, - "renderer": 7, - "isWidget": 2, - "passMouseDownEventToWidget": 3, - "toRenderWidget": 3, - "widget": 18, - "RenderWidget*": 1, - "renderWidget": 2, - "lastEventIsMouseUp": 2, - "*currentEventAfterHandlingMouseDown": 1, - "currentEventAfterHandlingMouseDown": 3, - "NSLeftMouseUp": 3, - "timestamp": 8, - "Widget*": 3, - "pWidget": 2, - "RefPtr": 1, - "": 1, - "LOG_ERROR": 1, - "true": 29, - "platformWidget": 6, - "*nodeView": 1, - "nodeView": 9, - "superview": 5, - "*view": 4, - "hitTest": 2, - "convertPoint": 2, - "locationInWindow": 4, - "client": 3, - "firstResponder": 1, - "clickCount": 8, - "<=>": 1, - "1": 1, - "acceptsFirstResponder": 1, - "needsPanelToBecomeKey": 1, - "makeFirstResponder": 1, - "wasDeferringLoading": 3, - "defersLoading": 1, - "setDefersLoading": 2, - "m_sendingEventToSubview": 24, - "*outerView": 1, - "getOuterView": 1, - "beforeMouseDown": 1, - "outerView": 2, - "widget.get": 2, - "mouseDown": 2, - "afterMouseDown": 1, - "m_mouseDownView": 5, - "m_mouseDownWasInSubframe": 7, - "m_mousePressed": 2, - "findViewInSubviews": 3, - "*superview": 1, - "*target": 1, - "NSEnumerator": 1, - "*e": 1, - "subviews": 1, - "objectEnumerator": 1, - "*subview": 1, - "subview": 3, - "e": 1, - "nextObject": 1, - "mouseDownViewIfStillGood": 3, - "*mouseDownView": 1, - "mouseDownView": 3, - "topFrameView": 3, - "*topView": 1, - "topView": 2, - "eventLoopHandleMouseDragged": 1, - "mouseDragged": 2, - "eventLoopHandleMouseUp": 1, - "mouseUp": 2, - "passSubframeEventToSubframe": 4, - "Frame*": 5, - "subframe": 13, - "HitTestResult*": 2, - "hoveredNode": 5, - "NSLeftMouseDragged": 1, - "NSOtherMouseDragged": 1, - "NSRightMouseDragged": 1, - "dragController": 1, - "didInitiateDrag": 1, - "NSMouseMoved": 2, - "eventHandler": 6, - "handleMouseMoveEvent": 3, - "currentPlatformMouseEvent": 8, - "NSLeftMouseDown": 3, - "Node*": 1, - "node": 3, - "isFrameView": 2, - "handleMouseReleaseEvent": 3, - "originalNSScrollViewScrollWheel": 4, - "_nsScrollViewScrollWheelShouldRetainSelf": 3, - "selfRetainingNSScrollViewScrollWheel": 3, - "NSScrollView": 2, - "SEL": 2, - "nsScrollViewScrollWheelShouldRetainSelf": 2, - "isMainThread": 3, - "setNSScrollViewScrollWheelShouldRetainSelf": 3, - "shouldRetain": 2, - "method": 2, - "class_getInstanceMethod": 1, - "objc_getRequiredClass": 1, - "scrollWheel": 2, - "reinterpret_cast": 1, - "": 1, - "*self": 1, - "selector": 2, - "shouldRetainSelf": 3, - "retain": 1, - "release": 1, - "passWheelEventToWidget": 1, - "NSView*": 1, - "static_cast": 1, - "": 1, - "frame": 3, - "NSScrollWheel": 1, - "v": 6, - "loader": 1, - "resetMultipleFormSubmissionProtection": 1, - "handleMousePressEvent": 2, - "handleMouseDoubleClickEvent": 1, - "sendFakeEventsAfterWidgetTracking": 1, - "*initiatingEvent": 1, - "eventType": 5, - "initiatingEvent": 22, - "*fakeEvent": 1, - "fakeEvent": 6, - "mouseEventWithType": 2, - "location": 3, - "modifierFlags": 6, - "windowNumber": 6, - "context": 6, - "eventNumber": 3, - "pressure": 3, - "postEvent": 3, - "atStart": 3, - "keyEventWithType": 1, - "charactersIgnoringModifiers": 2, - "isARepeat": 2, - "keyCode": 2, - "window": 1, - "convertScreenToBase": 1, - "mouseLocation": 1, - "mouseMoved": 2, - "frameHasPlatformWidget": 4, - "passMousePressEventToSubframe": 1, - "mev": 6, - "mev.event": 3, - "passMouseMoveEventToSubframe": 1, - "m_mouseDownMayStartDrag": 1, - "passMouseReleaseEventToSubframe": 1, - "PlatformMouseEvent": 5, - "*windowView": 1, - "windowView": 2, - "CONTEXT_MENUS": 2, - "sendContextMenuEvent": 2, - "eventMayStartDrag": 2, - "eventActivatedView": 1, - "m_activationEventNumber": 1, - "event.eventNumber": 1, - "": 1, - "createDraggingClipboard": 1, - "NSPasteboard": 2, - "*pasteboard": 1, - "pasteboardWithName": 1, - "NSDragPboard": 1, - "pasteboard": 2, - "declareTypes": 1, - "ClipboardMac": 1, - "Clipboard": 1, - "DragAndDrop": 1, - "ClipboardWritable": 1, - "tabsToAllFormControls": 1, - "KeyboardEvent*": 1, - "KeyboardUIMode": 1, - "keyboardUIMode": 5, - "handlingOptionTab": 4, - "isKeyboardOptionTab": 1, - "KeyboardAccessTabsToLinks": 2, - "KeyboardAccessFull": 1, - "needsKeyboardEventDisambiguationQuirks": 2, - "Document*": 1, - "applicationIsSafari": 1, - "url": 2, - ".protocolIs": 2, - "Settings*": 1, - "settings": 5, - "DASHBOARD_SUPPORT": 1, - "usesDashboardBackwardCompatibilityMode": 1, - "accessKeyModifiers": 1, - "AXObjectCache": 1, - "accessibilityEnhancedUserInterfaceEnabled": 1, - "CtrlKey": 2, - "AltKey": 1 + "like": 1, + "fashion.": 1, + "//bUseU2Weapon": 1, + ".ReplacedWeaponClass": 5, + "DynamicLoadObject": 2, + "//ReplacedWeaponClasses": 1, + "//ReplacedWeaponPickupClassName": 1, + ".default.PickupClass": 1, + "if": 55, + ".ReplacedWeaponClass.default.FireModeClass": 4, + "None": 10, + "&&": 15, + ".default.AmmoClass": 1, + ".default.AmmoClass.default.PickupClass": 2, + ".ReplacedAmmoPickupClass": 2, + "break": 1, + ".WeaponClass": 7, + ".WeaponPickupClassName": 1, + ".WeaponClass.default.PickupClass": 1, + ".AmmoPickupClassName": 2, + ".bIsVehicle": 2, + ".bNotVehicle": 2, + "Super.PostBeginPlay": 1, + "ValidReplacement": 6, + "return": 47, + "CheckReplacement": 1, + "Actor": 1, + "Other": 23, + "out": 2, + "bSuperRelevant": 3, + "i": 12, + "WeaponLocker": 3, + "L": 2, + "xWeaponBase": 3, + ".WeaponType": 2, + "false": 3, + "true": 5, + "Weapon": 1, + "Other.IsA": 2, + "Other.Class": 2, + "Ammo": 1, + "ReplaceWith": 1, + "L.Weapons.Length": 1, + "L.Weapons": 2, + "//STARTING": 1, + "WEAPON": 1, + "xPawn": 6, + ".RequiredEquipment": 3, + "True": 2, + "Special": 1, + "handling": 1, + "Shield": 2, + "Reward": 2, + "integration": 1, + "ShieldPack": 7, + ".SetStaticMesh": 1, + "StaticMesh": 1, + ".Skins": 1, + "Shader": 2, + ".RepSkin": 1, + ".SetDrawScale": 1, + ".SetCollisionSize": 1, + ".PickupMessage": 1, + ".PickupSound": 1, + "Sound": 1, + "Super.CheckReplacement": 1, + "GetInventoryClassOverride": 1, + "InventoryClassName": 3, + "Super.GetInventoryClassOverride": 1, + "static": 2, + "FillPlayInfo": 1, + "PlayInfo": 3, + "": 1, + "Recs": 4, + "WeaponOptions": 17, + "Super.FillPlayInfo": 1, + ".static.GetWeaponList": 1, + "Recs.Length": 1, + ".ClassName": 1, + ".FriendlyName": 1, + "PlayInfo.AddSetting": 33, + "default.RulesGroup": 33, + "default.U2WeaponDisplayText": 33, + "event": 3, + "GetDescriptionText": 1, + "PropName": 35, + "default.U2WeaponDescText": 33, + "Super.GetDescriptionText": 1, + "PreBeginPlay": 1, + "float": 3, + "k": 29, + "Multiplier.": 1, + "Super.PreBeginPlay": 1, + "/100.0": 1, + "//log": 1, + "@k": 1, + "//Sets": 1, + "various": 1, + "settings": 1, + "match": 1, + "different": 1, + "games": 1, + ".default.DamagePercentage": 1, + "//Original": 1, + "U2": 3, + "compensate": 1, + "division": 1, + "errors": 1, + "Class": 105, + ".default.DamageMin": 12, + "*": 54, + ".default.DamageMax": 12, + ".default.Damage": 27, + ".default.myDamage": 4, + "//Dampened": 1, + "already": 1, + "no": 2, + "need": 1, + "rewrite": 1, + "else": 1, + "//General": 2, + "XMP": 4, + ".default.Spread": 1, + ".default.MaxAmmo": 7, + ".default.Speed": 8, + ".default.MomentumTransfer": 4, + ".default.ClipSize": 4, + ".default.FireLastReloadTime": 3, + ".default.DamageRadius": 4, + ".default.LifeSpan": 4, + ".default.ShakeRadius": 1, + ".default.ShakeMagnitude": 1, + ".default.MaxSpeed": 5, + ".default.FireRate": 3, + ".default.ReloadTime": 3, + "//3200": 1, + "too": 1, + "much": 1, + ".default.VehicleDamageScaling": 2, + "*k": 28, + "//Experimental": 1, + "options": 1, + "lets": 1, + "you": 2, + "Unuse": 1, + "EMPimp": 1, + "projectile": 1, + "and": 3, + "fire": 1, + "two": 1, + "CAR": 1, + "barrels": 1, + "//CAR": 1, + "nothing": 1, + "U2Weapons.U2AssaultRifleFire": 1, + "U2Weapons.U2AssaultRifleAltFire": 1, + "U2ProjectileConcussionGrenade": 1, + "U2Weapons.U2AssaultRifleInv": 1, + "U2Weapons.U2WeaponEnergyRifle": 1, + "U2Weapons.U2WeaponFlameThrower": 1, + "U2Weapons.U2WeaponPistol": 1, + "U2Weapons.U2AutoTurretDeploy": 1, + "U2Weapons.U2WeaponRocketLauncher": 1, + "U2Weapons.U2WeaponGrenadeLauncher": 1, + "U2Weapons.U2WeaponSniper": 2, + "U2Weapons.U2WeaponRocketTurret": 1, + "U2Weapons.U2WeaponLandMine": 1, + "U2Weapons.U2WeaponLaserTripMine": 1, + "U2Weapons.U2WeaponShotgun": 1, + "s": 7, + "Minigun.": 1, + "Enable": 5, + "Shock": 1, + "Lance": 1, + "Energy": 2, + "Rifle": 3, + "What": 7, + "should": 7, + "be": 8, + "replaced": 8, + "with": 9, + "Rifle.": 3, + "By": 7, + "it": 7, + "Bio": 1, + "Magnum": 2, + "Pistol": 1, + "Pistol.": 1, + "Onslaught": 1, + "Grenade": 1, + "Launcher.": 2, + "Shark": 2, + "Rocket": 4, + "Launcher": 1, + "Flak": 1, + "Cannon.": 1, + "Should": 1, + "Lightning": 1, + "Gun": 2, + "Widowmaker": 2, + "Sniper": 3, + "Classic": 1, + "here.": 1, + "Turret": 2, + "delpoyable": 1, + "deployable.": 1, + "Redeemer.": 1, + "Laser": 2, + "Trip": 2, + "Mine": 1, + "Mine.": 1, + "t": 2, + "replace": 1, + "Link": 1, + "matches": 1, + "vehicles.": 1, + "Crowd": 1, + "Pleaser": 1, + "Shotgun.": 1, + "have": 1, + "shields": 1, + "or": 2, + "damage": 1, + "filtering.": 1, + "If": 1, + "checked": 1, + "mutator": 1, + "produces": 1, + "Unreal": 4, + "II": 4, + "shield": 1, + "pickups.": 1, + "Choose": 1, + "between": 2, + "white": 1, + "overlay": 3, + "depending": 2, + "on": 2, + "player": 2, + "view": 1, + "style": 1, + "distance": 1, + "foolproof": 1, + "FM_DistanceBased": 1, + "Arena": 1, + "Add": 1, + "weapons": 1, + "other": 1, + "Fully": 1, + "customisable": 1, + "choose": 1, + "behaviour.": 1, + "US3HelloWorld": 1, + "GameInfo": 1, + "InitGame": 1, + "Options": 1, + "Error": 1, + "log": 1, + "defaultproperties": 1 + }, + "VCL": { + "sub": 23, + "vcl_recv": 2, + "{": 50, + "if": 14, + "(": 50, + "req.request": 18, + "&&": 14, + ")": 50, + "return": 33, + "pipe": 4, + ";": 48, + "}": 50, + "pass": 9, + "req.http.Authorization": 2, + "||": 4, + "req.http.Cookie": 2, + "lookup": 2, + "vcl_pipe": 2, + "vcl_pass": 2, + "vcl_hash": 2, + "set": 10, + "req.hash": 3, + "+": 17, + "req.url": 2, + "req.http.host": 4, + "else": 3, + "server.ip": 2, + "hash": 2, + "vcl_hit": 2, + "obj.cacheable": 2, + "deliver": 8, + "vcl_miss": 2, + "fetch": 3, + "vcl_fetch": 2, + "obj.http.Set": 1, + "-": 21, + "Cookie": 2, + "obj.prefetch": 1, + "s": 3, + "vcl_deliver": 2, + "vcl_discard": 1, + "discard": 2, + "vcl_prefetch": 1, + "vcl_timeout": 1, + "vcl_error": 2, + "obj.http.Content": 2, + "Type": 2, + "synthetic": 2, + "utf": 2, + "//W3C//DTD": 2, + "XHTML": 2, + "Strict//EN": 2, + "http": 3, + "//www.w3.org/TR/xhtml1/DTD/xhtml1": 2, + "strict.dtd": 2, + "obj.status": 4, + "obj.response": 6, + "req.xid": 2, + "//www.varnish": 1, + "cache.org/": 1, + "req.restarts": 1, + "req.http.x": 1, + "forwarded": 1, + "for": 1, + "req.http.X": 3, + "Forwarded": 3, + "For": 3, + "client.ip": 2, + "hash_data": 3, + "beresp.ttl": 2, + "<": 1, + "beresp.http.Set": 1, + "beresp.http.Vary": 1, + "hit_for_pass": 1, + "obj.http.Retry": 1, + "After": 1, + "vcl_init": 1, + "ok": 2, + "vcl_fini": 1 }, -<<<<<<< HEAD "VHDL": { "-": 2, "VHDL": 1, @@ -114527,1490 +66245,432 @@ "endcase": 3, "default": 2, "endmodule": 18, -======= - "Rust": { - "//": 20, - "use": 10, - "cell": 1, - "Cell": 2, - ";": 218, - "cmp": 1, - "Eq": 2, - "option": 4, - "result": 18, - "Result": 3, - "comm": 5, - "{": 213, - "stream": 21, - "Chan": 4, - "GenericChan": 1, - "GenericPort": 1, - "Port": 3, - "SharedChan": 4, - "}": 210, - "prelude": 1, - "*": 1, - "task": 39, - "rt": 29, - "task_id": 2, - "sched_id": 2, - "rust_task": 1, - "util": 4, - "replace": 8, - "mod": 5, - "local_data_priv": 1, - "pub": 26, - "local_data": 1, - "spawn": 15, - "///": 13, - "A": 6, - "handle": 3, - "to": 6, - "a": 9, - "scheduler": 6, - "#": 61, - "[": 61, - "deriving_eq": 3, - "]": 61, - "enum": 4, - "Scheduler": 4, - "SchedulerHandle": 2, - "(": 429, - ")": 434, - "Task": 2, - "TaskHandle": 2, - "TaskResult": 4, - "Success": 6, - "Failure": 6, - "impl": 3, - "for": 10, - "pure": 2, - "fn": 89, - "eq": 1, - "&": 30, - "self": 15, - "other": 4, - "-": 33, - "bool": 6, - "match": 4, - "|": 20, - "true": 9, - "_": 4, - "false": 7, - "ne": 1, - ".eq": 1, - "modes": 1, - "SchedMode": 4, - "Run": 3, - "on": 5, - "the": 10, - "default": 1, - "DefaultScheduler": 2, - "current": 1, - "CurrentScheduler": 2, - "specific": 1, - "ExistingScheduler": 1, - "PlatformThread": 2, - "All": 1, - "tasks": 1, - "run": 1, - "in": 3, - "same": 1, - "OS": 3, - "thread": 2, - "SingleThreaded": 4, - "Tasks": 2, - "are": 2, - "distributed": 2, - "among": 2, - "available": 1, - "CPUs": 1, - "ThreadPerCore": 2, - "Each": 1, - "runs": 1, - "its": 1, - "own": 1, - "ThreadPerTask": 1, - "fixed": 1, - "number": 1, - "of": 3, - "threads": 1, - "ManualThreads": 3, - "uint": 7, - "struct": 7, - "SchedOpts": 4, - "mode": 9, - "foreign_stack_size": 3, - "Option": 4, - "": 2, - "TaskOpts": 12, - "linked": 15, - "supervised": 11, - "mut": 16, - "notify_chan": 24, - "<": 3, - "": 3, - "sched": 10, - "TaskBuilder": 21, - "opts": 21, - "gen_body": 4, - "@fn": 2, - "v": 6, - "can_not_copy": 11, - "": 1, - "consumed": 4, - "default_task_opts": 4, - "body": 6, - "Identity": 1, - "function": 1, - "None": 23, - "doc": 1, - "hidden": 1, - "FIXME": 1, - "#3538": 1, - "priv": 1, - "consume": 1, - "if": 7, - "self.consumed": 2, - "fail": 17, - "Fake": 1, - "move": 1, - "let": 84, - "self.opts.notify_chan": 7, - "self.opts.linked": 4, - "self.opts.supervised": 5, - "self.opts.sched": 6, - "self.gen_body": 2, - "unlinked": 1, - "..": 8, - "self.consume": 7, - "future_result": 1, - "blk": 2, - "self.opts.notify_chan.is_some": 1, - "notify_pipe_po": 2, - "notify_pipe_ch": 2, - "Some": 8, - "Configure": 1, - "custom": 1, - "task.": 1, - "sched_mode": 1, - "add_wrapper": 1, - "wrapper": 2, - "prev_gen_body": 2, - "f": 38, - "x": 7, - "x.opts.linked": 1, - "x.opts.supervised": 1, - "x.opts.sched": 1, - "spawn_raw": 1, - "x.gen_body": 1, - "Runs": 1, - "while": 2, - "transfering": 1, - "ownership": 1, - "one": 1, - "argument": 1, - "child.": 1, - "spawn_with": 2, - "": 2, - "arg": 5, - "do": 49, - "self.spawn": 1, - "arg.take": 1, - "try": 5, - "": 2, - "T": 2, - "": 2, - "po": 11, - "ch": 26, - "": 1, - "fr_task_builder": 1, - "self.future_result": 1, - "+": 4, - "r": 6, - "fr_task_builder.spawn": 1, - "||": 11, - "ch.send": 11, - "unwrap": 3, - ".recv": 3, - "Ok": 3, - "po.recv": 10, - "Err": 2, - ".spawn": 9, - "spawn_unlinked": 6, - ".unlinked": 3, - "spawn_supervised": 5, - ".supervised": 2, - ".spawn_with": 1, - "spawn_sched": 8, - ".sched_mode": 2, - ".try": 1, - "yield": 16, - "Yield": 1, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "control": 1, - "unsafe": 31, - "task_": 2, - "rust_get_task": 5, - "killed": 3, - "rust_task_yield": 1, - "&&": 1, - "failing": 2, - "True": 1, - "running": 2, - "has": 1, - "failed": 1, - "rust_task_is_unwinding": 1, - "get_task": 1, - "Get": 1, - "get_task_id": 1, - "get_scheduler": 1, - "rust_get_sched_id": 6, - "unkillable": 5, - "": 3, - "U": 6, - "AllowFailure": 5, - "t": 24, - "*rust_task": 6, - "drop": 3, - "rust_task_allow_kill": 3, - "self.t": 4, - "_allow_failure": 2, - "rust_task_inhibit_kill": 3, - "The": 1, - "inverse": 1, - "unkillable.": 1, - "Only": 1, - "ever": 1, - "be": 2, - "used": 1, - "nested": 1, - ".": 1, - "rekillable": 1, - "DisallowFailure": 5, - "atomically": 3, - "DeferInterrupts": 5, - "rust_task_allow_yield": 1, - "_interrupts": 1, - "rust_task_inhibit_yield": 1, - "test": 31, - "should_fail": 11, - "ignore": 16, - "cfg": 16, - "windows": 14, - "test_cant_dup_task_builder": 1, - "b": 2, - "b.spawn": 2, - "should": 2, - "have": 1, - "been": 1, - "by": 1, - "previous": 1, - "call": 1, - "test_spawn_unlinked_unsup_no_fail_down": 1, - "grandchild": 1, - "sends": 1, - "port": 3, - "ch.clone": 2, - "iter": 8, - "repeat": 8, + "en": 13, + "dsp_sel": 9, + "an": 6, + "wire": 67, + "a": 5, + "b": 3, + "c": 3, + "d": 3, + "e": 3, + "f": 2, + "g": 2, + "h": 2, + "i": 62, + "j": 2, + "k": 2, + "l": 2, + "assign": 23, + "FDRSE": 6, + "#": 10, + ".INIT": 6, + "b0": 27, + "Synchronous": 12, + ".S": 6, + "b1": 19, + "Initial": 6, + "value": 6, + "of": 8, + "register": 6, + "DFF2": 1, + ".Q": 6, + "Data": 13, + ".C": 6, + "Clock": 14, + ".CE": 6, + "enable": 6, + ".D": 6, + ".R": 6, + "set": 6, + "DFF0": 1, + "DFF6": 1, + "DFF4": 1, + "DFF10": 1, + "DFF8": 1, + "hex_display": 1, + "num": 5, + "hex0": 2, + "hex1": 2, + "hex2": 2, + "hex3": 2, + "seg_7": 4, + "hex_group0": 1, + ".num": 4, + ".en": 4, + ".seg": 4, + "hex_group1": 1, + "hex_group2": 1, + "hex_group3": 1, + "mux": 1, + "opA": 4, + "opB": 3, + "sum": 5, + "out": 5, + "cout": 4, + "b0000": 1, + "b01": 1, + "b11": 1, + "pipeline_registers": 1, + "BIT_WIDTH": 5, + "pipe_in": 4, + "pipe_out": 5, + "NUMBER_OF_STAGES": 7, + "generate": 3, + "genvar": 3, + "*": 4, + "BIT_WIDTH*": 5, + "pipe_gen": 6, + "for": 4, + "+": 36, + "pipeline": 2, + "BIT_WIDTH*i": 2, + "endgenerate": 3, + "ps2_mouse": 1, + "Input": 2, + "Reset": 1, + "inout": 2, + "ps2_clk": 3, + "PS2": 2, + "Bidirectional": 2, + "ps2_dat": 3, + "the_command": 2, + "Command": 1, + "to": 3, + "send": 2, + "mouse": 1, + "send_command": 2, + "Signal": 2, + "command_was_sent": 2, + "command": 1, + "finished": 1, + "sending": 1, + "error_communication_timed_out": 3, + "received_data": 2, + "Received": 1, + "data": 4, + "received_data_en": 4, "If": 1, - "first": 1, - "grandparent": 1, - "hangs.": 1, - "Shouldn": 1, - "leave": 1, - "child": 3, - "hanging": 1, - "around.": 1, - "test_spawn_linked_sup_fail_up": 1, - "fails": 4, - "parent": 2, - "_ch": 1, - "<()>": 6, - "opts.linked": 2, - "opts.supervised": 2, - "b0": 5, - "b1": 3, - "b1.spawn": 3, - "We": 1, - "get": 1, - "punted": 1, - "awake": 1, - "test_spawn_linked_sup_fail_down": 1, - "loop": 5, - "*both*": 1, - "mechanisms": 1, - "would": 1, - "wrong": 1, - "this": 1, - "didn": 1, - "s": 1, - "failure": 1, - "propagate": 1, - "across": 1, - "gap": 1, - "test_spawn_failure_propagate_secondborn": 1, - "test_spawn_failure_propagate_nephew_or_niece": 1, - "test_spawn_linked_sup_propagate_sibling": 1, - "test_run_basic": 1, - "Wrapper": 5, - "test_add_wrapper": 1, - "b0.add_wrapper": 1, - "ch.f.swap_unwrap": 4, - "test_future_result": 1, - ".future_result": 4, - "assert": 10, - "test_back_to_the_future_result": 1, - "test_try_success": 1, - "test_try_fail": 1, - "test_spawn_sched_no_threads": 1, - "u": 2, - "test_spawn_sched": 1, - "i": 3, - "int": 5, - "parent_sched_id": 4, - "child_sched_id": 5, - "else": 1, - "test_spawn_sched_childs_on_default_sched": 1, - "default_id": 2, - "nolink": 1, - "extern": 1, - "testrt": 9, - "rust_dbg_lock_create": 2, - "*libc": 6, - "c_void": 6, - "rust_dbg_lock_destroy": 2, - "lock": 13, - "rust_dbg_lock_lock": 3, - "rust_dbg_lock_unlock": 3, - "rust_dbg_lock_wait": 2, - "rust_dbg_lock_signal": 2, - "test_spawn_sched_blocking": 1, - "start_po": 1, - "start_ch": 1, - "fin_po": 1, - "fin_ch": 1, - "start_ch.send": 1, - "fin_ch.send": 1, - "start_po.recv": 1, - "pingpong": 3, - "": 2, - "val": 4, - "setup_po": 1, - "setup_ch": 1, - "parent_po": 2, - "parent_ch": 2, - "child_po": 2, - "child_ch": 4, - "setup_ch.send": 1, - "setup_po.recv": 1, - "child_ch.send": 1, - "fin_po.recv": 1, - "avoid_copying_the_body": 5, - "spawnfn": 2, - "p": 3, - "x_in_parent": 2, - "ptr": 2, - "addr_of": 2, - "as": 7, - "x_in_child": 4, - "p.recv": 1, - "test_avoid_copying_the_body_spawn": 1, - "test_avoid_copying_the_body_task_spawn": 1, - "test_avoid_copying_the_body_try": 1, - "test_avoid_copying_the_body_unlinked": 1, - "test_platform_thread": 1, - "test_unkillable": 1, - "pp": 2, - "*uint": 1, - "cast": 2, - "transmute": 2, - "_p": 1, - "test_unkillable_nested": 1, - "Here": 1, - "test_atomically_nested": 1, - "test_child_doesnt_ref_parent": 1, - "const": 1, - "generations": 2, - "child_no": 3, - "return": 1, - "test_sched_thread_per_core": 1, - "chan": 2, - "cores": 2, - "rust_num_threads": 1, - "reported_threads": 2, - "rust_sched_threads": 2, - "chan.send": 2, - "port.recv": 2, - "test_spawn_thread_on_demand": 1, - "max_threads": 2, - "running_threads": 2, - "rust_sched_current_nonlazy_threads": 2, - "port2": 1, - "chan2": 1, - "chan2.send": 1, - "running_threads2": 2, - "port2.recv": 1 - }, - "Matlab": { - "function": 34, - "[": 311, - "d": 12, - "d_mean": 3, - "d_std": 3, - "]": 311, - "normalize": 1, - "(": 1379, - ")": 1380, - "mean": 2, - ";": 909, - "-": 673, - "repmat": 2, - "size": 11, - "std": 1, - "d./": 1, - "end": 150, - "clear": 13, - "all": 15, - "%": 554, - "mu": 73, - "Earth": 2, - "Moon": 2, - "xl1": 13, - "yl1": 12, - "xl2": 9, - "yl2": 8, - "xl3": 8, - "yl3": 8, - "xl4": 10, - "yl4": 9, - "xl5": 8, - "yl5": 8, - "Lagr": 6, - "C": 13, - "*Potential": 5, - "x_0": 45, - "y_0": 29, - "vx_0": 37, - "vy_0": 22, - "sqrt": 14, - "+": 169, - "T": 22, - "C_star": 1, - "*Omega": 5, - "E": 8, - "C/2": 1, - "options": 14, - "odeset": 4, - "e": 14, - "Integrate": 6, - "first": 3, - "orbit": 1, - "t0": 6, - "Y0": 6, - "ode113": 2, - "@f": 6, - "x0": 4, - "y0": 2, - "vx0": 2, - "vy0": 2, - "l0": 1, - "length": 49, - "delta_E0": 1, - "abs": 12, - "Energy": 4, - "Hill": 1, - "Edgecolor": 1, - "none": 1, - ".2f": 5, - "ok": 2, - "sg": 1, - "sr": 1, - "x_T": 25, - "y_T": 17, - "vx_T": 22, - "e_T": 7, - "filter": 14, - "Integrate_FILE": 1, - "e_0": 7, - "N": 9, - "nx": 32, - "ny": 29, - "nvx": 32, - "ne": 29, - "zeros": 61, - "vy_T": 12, - "Look": 2, - "for": 78, - "phisically": 2, - "meaningful": 6, - "points": 11, - "meaningless": 2, - "point": 14, - "only": 7, - "h": 19, - "waitbar": 6, - "i": 338, - "i/nx": 2, - "sprintf": 11, - "j": 242, - "parfor": 5, - "k": 75, - "l": 64, - "*e_0": 3, - "if": 52, - "isreal": 8, - "ci": 9, - "t": 32, - "Y": 19, - "te": 2, - "ye": 9, - "ie": 2, - "ode45": 6, - "*": 46, - "Potential": 1, - "close": 4, - "tic": 7, - "Choice": 2, - "of": 35, - "the": 14, - "mass": 2, - "parameter": 2, - "Computation": 9, - "Lagrangian": 3, - "Points": 2, - "initial": 5, - "total": 6, - "energy": 8, - "E_L1": 4, - "Omega": 7, - "Offset": 2, - "as": 4, - "in": 8, - "figure": 17, - "Initial": 3, - "conditions": 3, - "range": 2, - "x_0_min": 8, - "x_0_max": 8, - "vx_0_min": 8, - "vx_0_max": 8, - "n": 102, - "ndgrid": 2, - "linspace": 14, - "*E": 2, - "vx_0.": 2, - "E_cin": 4, - "Transforming": 1, - "into": 1, - "Hamiltonian": 1, - "variables": 2, - "px_0": 2, - "py_0": 2, - "px_T": 4, - "py_T": 4, - "filtro": 15, - "ones": 6, - "E_T": 11, - "a": 17, - "matrix": 3, - "numbers": 2, - "integration": 9, - "steps": 2, - "each": 2, - "np": 8, - "number": 2, - "integrated": 5, - "fprintf": 18, - "tolerance": 2, - "setting": 4, - "energy_tol": 6, - "inf": 1, - "Jacobian": 3, - "system": 2, - "@cr3bp_jac": 1, - "Parallel": 2, - "equations": 2, - "motion": 2, - "&&": 13, - "Check": 6, - "real": 3, - "velocity": 2, - "and": 7, - "positive": 2, - "Kinetic": 2, - "@fH": 1, - "Saving": 4, - "solutions": 2, - "final": 2, - "difference": 2, - "with": 2, - "one": 3, - "EnergyH": 1, - "delta_E": 7, - "conservation": 2, - "position": 2, - "else": 23, - "interesting": 4, - "non": 2, - "sense": 2, - "bad": 4, - "t_integrazione": 3, - "toc": 5, - "t_integr": 1, - "Back": 1, - "to": 9, - "FTLE": 14, - "dphi": 12, - "ftle": 10, - "...": 162, - "/": 59, - "Manual": 2, - "visualize": 2, - "Inf": 1, - "*T": 3, - "*log": 2, - "max": 9, - "eig": 6, - "tempo": 4, - "per": 5, - "integrare": 2, - "s": 13, - "calcolare": 2, - "var_": 2, - "_": 2, - "var_xvx_": 2, - "ode00": 2, - "_n": 2, - "_e": 1, - "_H": 1, - "save": 2, - "nome": 2, - "Call": 2, - "matlab_function": 5, - "which": 2, - "resides": 2, - "same": 2, - "directory": 2, - "value1": 4, - "semicolon": 2, - "at": 3, - "line": 15, - "is": 7, - "not": 3, - "mandatory": 2, - "suppresses": 2, - "output": 7, - "command": 2, - "line.": 2, - "value2": 4, - "result": 5, - "disp": 8, - "error": 16, - "cross_validation": 1, - "x": 46, - "y": 25, - "hyper_parameter": 3, - "num_data": 2, - "K": 4, - "indices": 2, - "crossvalind": 1, - "errors": 4, - "test_idx": 4, - "train_idx": 3, - "x_train": 2, - "y_train": 2, - "w": 6, - "train": 1, - "x_test": 3, - "y_test": 3, - "calc_cost": 1, - "calc_error": 2, - "f_x_t": 2, - "inline": 1, - "grid_min": 3, - "grid_max": 3, - "grid_width": 1, - "grid_spacing": 5, - "grid_width/": 1, - "advected_x": 12, - "advected_y": 12, - "store": 4, - "advected": 2, - "positions": 2, - "they": 2, - "would": 2, - "appear": 2, - "coords": 2, - "sigma": 6, - "compute": 2, - "phi": 13, - "*grid_width/": 4, - "find": 24, - "eigenvalue": 2, - "*phi": 2, - "log": 2, - "lambda_max": 2, - "/abs": 3, - "plot": 26, - "field": 2, - "contourf": 2, - "colorbar": 1, - "classdef": 1, - "matlab_class": 2, - "properties": 1, - "R": 1, - "G": 1, - "B": 9, - "methods": 1, - "obj": 2, - "r": 2, - "g": 5, - "b": 12, - "obj.R": 2, - "obj.G": 2, - "obj.B": 2, - "num2str": 10, - "enumeration": 1, - "red": 1, - "green": 1, - "blue": 1, - "cyan": 1, - "magenta": 1, - "yellow": 1, - "black": 1, - "white": 1, - "filtfcn": 2, - "statefcn": 2, - "makeFilter": 1, - "v": 12, - "@iirFilter": 1, - "@getState": 1, - "yn": 2, - "iirFilter": 1, - "xn": 4, - "vOut": 2, - "getState": 1, - "RK4": 3, - "fun": 5, - "tspan": 7, - "th": 1, - "order": 11, - "Runge": 1, - "Kutta": 1, - "integrator": 2, - "dim": 2, - "while": 1, - "<": 9, - "k1": 4, - "k2": 3, - "h/2": 2, - "k1*h/2": 1, - "k3": 3, - "k2*h/2": 1, - "k4": 4, - "h*k3": 1, - "h/6*": 1, - "*k2": 1, - "*k3": 1, - "z": 3, - "*vx_0": 1, - "pcolor": 2, - "shading": 3, - "flat": 3, - "settings": 3, - "overwrite_settings": 2, - "defaultSettings": 3, - "overrideSettings": 3, - "overrideNames": 2, - "fieldnames": 5, - "defaultNames": 2, - "notGiven": 5, - "setxor": 1, - "settings.": 1, - "{": 157, - "}": 157, - "defaultSettings.": 1, - "bicycle": 7, - "bicycle_state_space": 1, - "speed": 20, - "varargin": 25, - "S": 5, - "dbstack": 1, - "CURRENT_DIRECTORY": 2, - "fileparts": 1, - ".file": 1, - "par": 7, - "par_text_to_struct": 4, - "filesep": 14, - "A": 11, - "D": 7, - "whipple_pull_force_abcd": 2, - "states": 7, - "outputs": 10, - "inputs": 14, - "defaultSettings.states": 1, - "defaultSettings.inputs": 1, - "defaultSettings.outputs": 1, - "userSettings": 3, - "varargin_to_structure": 2, - "struct": 1, - "minStates": 2, - "sum": 2, - "ismember": 15, - "settings.states": 3, - "keepStates": 2, - "removeStates": 1, - "row": 6, - "col": 5, - "removeInputs": 2, - "settings.inputs": 1, - "keepOutputs": 2, - "settings.outputs": 1, - "It": 1, - "possible": 1, - "keep": 1, - "because": 1, - "it": 1, - "depends": 1, - "on": 13, - "input": 14, - "StateName": 1, - "OutputName": 1, - "InputName": 1, - "data": 27, - "load_data": 4, - "filename": 21, - "parser": 1, - "inputParser": 1, - "parser.addRequired": 1, - "parser.addParamValue": 3, - "true": 2, - "parser.parse": 1, - "args": 1, - "parser.Results": 1, - "raw": 1, - "load": 1, - "args.directory": 1, - "iddata": 1, - "raw.theta": 1, - "raw.theta_c": 1, - "args.sampleTime": 1, - "args.detrend": 1, - "detrend": 1, - "hold": 23, - "lane_change": 1, - "start": 4, - "width": 3, - "slope": 3, - "pathLength": 3, - "num": 24, - "type": 4, - "single": 1, - "double": 1, - "Double": 1, - "lane": 4, - "change": 1, - "needs": 1, - "lane.": 1, - "laneLength": 4, - "startOfSlope": 3, - "endOfSlope": 1, - "&": 4, - "<=>": 1, - "1": 1, - "downSlope": 3, - "Yc": 5, - "plant": 4, - "parallel": 2, - "choose_plant": 4, - "p": 7, - "tf": 18, - "elseif": 14, - "display": 10, - "average": 1, - "m": 44, + "new": 1, + "has": 1, + "been": 1, + "received": 1, + "start_receiving_data": 3, + "wait_for_incoming_data": 3, + "ps2_clk_posedge": 3, + "Internal": 2, + "Wires": 1, + "ps2_clk_negedge": 3, + "idle_counter": 4, + "Registers": 2, + "ps2_clk_reg": 4, + "ps2_data_reg": 5, + "last_ps2_clk": 4, + "ns_ps2_transceiver": 13, + "State": 1, + "Machine": 1, + "s_ps2_transceiver": 8, + "PS2_STATE_0_IDLE": 10, + "h1": 1, + "PS2_STATE_2_COMMAND_OUT": 2, + "h3": 1, + "PS2_STATE_4_END_DELAYED": 4, + "Defaults": 1, + "PS2_STATE_1_DATA_IN": 3, + "||": 1, + "PS2_STATE_3_END_TRANSFER": 3, + "h00": 1, + "&&": 3, + "h01": 1, + "ps2_mouse_cmdout": 1, + "mouse_cmdout": 1, + ".clk": 6, + "Inputs": 2, + ".reset": 2, + ".the_command": 1, + ".send_command": 1, + ".ps2_clk_posedge": 2, + ".ps2_clk_negedge": 2, + ".ps2_clk": 1, + "Bidirectionals": 1, + ".ps2_dat": 1, + ".command_was_sent": 1, + "Outputs": 2, + ".error_communication_timed_out": 1, + "ps2_mouse_datain": 1, + "mouse_datain": 1, + ".wait_for_incoming_data": 1, + ".start_receiving_data": 1, + ".ps2_data": 1, + ".received_data": 1, + ".received_data_en": 1, + "ns/1ps": 2, + "e0": 1, + "x": 41, + "y": 21, + "{": 11, + "}": 11, + "e1": 1, + "ch": 1, + "z": 7, + "o": 6, + "&": 6, + "maj": 1, "|": 2, - "/length": 1, - "name": 4, - "convert_variable": 1, - "variable": 10, - "coordinates": 6, - "speeds": 21, - "get_variables": 2, - "columns": 4, - "clc": 1, - "bikes": 24, - "load_bikes": 2, - "rollData": 8, - "generate_data": 5, - "create_ieee_paper_plots": 2, - "write_gains": 1, - "pathToFile": 11, - "gains": 12, - "contents": 1, - "importdata": 1, - "speedsInFile": 5, - "contents.data": 2, - "gainsInFile": 3, - "sameSpeedIndices": 5, - "allGains": 4, - "allSpeeds": 4, - "sort": 1, - "fid": 7, - "fopen": 2, - "contents.colheaders": 1, - "fclose": 2, - "Elements": 1, - "grid": 1, - "definition": 2, - "Dimensionless": 1, - "integrating": 1, - "time": 21, - "C_L1": 3, - "*E_L1": 1, - "from": 2, - "Szebehely": 1, - "Setting": 1, - "RelTol": 2, - "AbsTol": 2, - "From": 1, - "Short": 1, - "r1": 3, - "r2": 3, - "i/n": 1, - ".": 13, - "y_0.": 2, - "./": 1, - "mu./": 1, - "@f_reg": 1, - "filtro_1": 12, - "||": 3, - "ftle_norm": 1, - "ds_x": 1, - "ds_vx": 1, - "La": 1, - "direzione": 1, - "dello": 1, - "spostamento": 1, - "la": 2, - "decide": 1, - "il": 1, - "denominatore": 1, - "TODO": 1, - "spiegarsi": 1, - "teoricamente": 1, - "come": 1, - "mai": 1, - "matrice": 1, - "pu": 1, - "essere": 1, - "ridotta": 1, - "x2": 1, - "*ds_x": 2, - "*ds_vx": 2, - "dphi*dphi": 1, - "global": 6, - "goldenRatio": 12, - "exist": 1, - "mkdir": 1, - "linestyles": 15, - "colors": 13, - "loop_shape_example": 3, - "data.Benchmark.Medium": 2, - "plot_io_roll": 3, - "open_loop_all_bikes": 1, - "handling_all_bikes": 1, - "path_plots": 1, - "var": 3, - "io": 7, - "typ": 3, - "plot_io": 1, - "phase_portraits": 2, - "eigenvalues": 2, - "bikeData": 2, - "figWidth": 24, - "figHeight": 19, - "set": 43, - "gcf": 17, - "freq": 12, - "closedLoops": 1, - "bikeData.closedLoops": 1, - "bops": 7, - "bodeoptions": 1, - "bops.FreqUnits": 1, - "strcmp": 24, - "gray": 7, - "deltaNum": 2, - "closedLoops.Delta.num": 1, - "deltaDen": 2, - "closedLoops.Delta.den": 1, - "bodeplot": 6, - "neuroNum": 2, - "neuroDen": 2, - "whichLines": 3, - "phiDotNum": 2, - "closedLoops.PhiDot.num": 1, - "phiDotDen": 2, - "closedLoops.PhiDot.den": 1, - "closedBode": 3, - "off": 10, - "opts": 4, - "getoptions": 2, - "opts.YLim": 3, - "opts.PhaseMatching": 2, - "opts.PhaseMatchingValue": 2, - "opts.Title.String": 2, - "setoptions": 2, - "lines": 17, - "findobj": 5, - "raise": 19, - "plotAxes": 22, - "curPos1": 4, - "get": 11, - "curPos2": 4, - "xLab": 8, - "legWords": 3, - "closeLeg": 2, - "legend": 7, - "axes": 9, - "db1": 4, - "text": 11, - "db2": 2, - "dArrow1": 2, - "annotation": 13, - "dArrow2": 2, - "dArrow": 2, - "print": 6, - "fix_ps_linestyle": 6, - "openLoops": 1, - "bikeData.openLoops": 1, - "openLoops.Phi.num": 1, - "den": 15, - "openLoops.Phi.den": 1, - "openLoops.Psi.num": 1, - "openLoops.Psi.den": 1, - "openLoops.Y.num": 1, - "openLoops.Y.den": 1, - "openBode": 3, - "wc": 14, - "wShift": 5, - "bikeData.handlingMetric.num": 1, - "bikeData.handlingMetric.den": 1, - "mag": 4, - "phase": 2, - "bode": 5, - "metricLine": 1, - "Linewidth": 7, - "Color": 13, - "Linestyle": 6, - "Handling": 2, - "Quality": 2, - "Metric": 2, - "Frequency": 2, - "rad/s": 4, - "Level": 6, - "benchmark": 1, - "Handling.eps": 1, - "plots": 4, - "deps2": 1, - "loose": 4, - "PaperOrientation": 3, - "portrait": 3, - "PaperUnits": 3, - "inches": 3, - "PaperPositionMode": 3, - "manual": 3, - "PaperPosition": 3, - "PaperSize": 3, - "rad/sec": 1, - "Open": 1, - "Loop": 1, - "Bode": 1, - "Diagrams": 1, - "m/s": 6, - "Latex": 1, - "LineStyle": 2, - "LineWidth": 2, - "Location": 2, - "Southwest": 1, - "Fontsize": 4, - "YColor": 2, - "XColor": 1, - "Position": 6, - "Xlabel": 1, - "Units": 1, - "normalized": 1, - "openBode.eps": 1, - "deps2c": 3, - "maxMag": 2, - "magnitudes": 1, - "area": 1, - "fillColors": 1, - "gca": 8, - "speedNames": 12, - "metricLines": 2, - "data.": 6, - ".handlingMetric.num": 1, - ".handlingMetric.den": 1, - "chil": 2, - "legLines": 1, - "Hands": 1, - "free": 1, - "@": 1, - "handling.eps": 1, - "f": 13, - "YTick": 1, - "YTickLabel": 1, - "Path": 1, - "Southeast": 1, - "Distance": 1, - "Lateral": 1, - "Deviation": 1, - "paths.eps": 1, - "like": 1, - "plot.": 1, - "names": 6, - "prettyNames": 3, - "units": 3, - "index": 6, - "data.Browser": 1, - "maxValue": 4, - "oneSpeed": 3, - "history": 7, - "oneSpeed.": 3, - "round": 1, - "pad": 10, - "yShift": 16, - "xShift": 3, - "oneSpeed.time": 2, - "oneSpeed.speed": 2, - "distance": 6, - "xAxis": 12, - "xData": 3, - "textX": 3, - "ylim": 2, - "ticks": 4, - "xlabel": 8, - "xLimits": 6, - "xlim": 8, - "loc": 3, - "l1": 2, - "l2": 2, - "ylabel": 4, - "box": 4, - "x_r": 6, - "y_r": 6, - "w_r": 5, - "h_r": 5, - "rectangle": 2, - "w_r/2": 4, - "h_r/2": 4, - "x_a": 10, - "y_a": 10, - "w_a": 7, - "h_a": 5, - "ax": 15, - "axis": 5, - "rollData.speed": 1, - "rollData.time": 1, - "path": 3, - "rollData.path": 1, - "frontWheel": 3, - "rollData.outputs": 3, - "rollAngle": 4, - "steerAngle": 4, - "rollTorque": 4, - "rollData.inputs": 1, - "subplot": 3, - "h1": 5, - "h2": 5, - "plotyy": 3, - "inset": 3, - "gainChanges": 2, - "loopNames": 4, - "xy": 7, - "xySource": 7, - "xlabels": 2, - "ylabels": 2, - "legends": 3, - "floatSpec": 3, - "twentyPercent": 1, - "nominalData": 1, - "nominalData.": 2, - "bikeData.": 2, - "twentyPercent.": 2, - "equal": 2, - "leg1": 2, - "bikeData.modelPar.": 1, - "leg2": 2, - "twentyPercent.modelPar.": 1, - "eVals": 5, - "pathToParFile": 2, - "str": 2, - "eigenValues": 1, - "zeroIndices": 3, - "maxEvals": 4, - "maxLine": 7, - "minLine": 4, - "min": 1, - "speedInd": 12, - "Conditions": 1, - "Integration": 2, - "@cross_y": 1, - "textscan": 1, - "strtrim": 2, - "vals": 2, - "regexp": 1, - "par.": 1, - "str2num": 1, - "t1": 6, - "t2": 6, - "t3": 1, - "dataPlantOne": 3, - "data.Ts": 6, - "dataAdapting": 3, - "dataPlantTwo": 3, - "guessPlantOne": 4, - "resultPlantOne": 1, - "find_structural_gains": 2, - "yh": 2, - "fit": 6, - "compare": 3, - "resultPlantOne.fit": 1, - "guessPlantTwo": 3, - "resultPlantTwo": 1, - "resultPlantTwo.fit": 1, - "kP1": 4, - "resultPlantOne.fit.par": 1, - "kP2": 3, - "resultPlantTwo.fit.par": 1, - "gainSlopeOffset": 6, - "eye": 9, - "aux.pars": 3, + "s0": 1, + "s1": 1, + "sign_extender": 1, + "INPUT_WIDTH": 5, + "OUTPUT_WIDTH": 4, + "original": 3, + "sign_extended_original": 2, + "sign_extend": 3, + "gen_sign_extend": 1, + "sqrt_pipelined": 3, + "start": 12, + "optional": 2, + "INPUT_BITS": 28, + "radicand": 12, + "unsigned": 2, + "data_valid": 7, + "valid": 2, + "OUTPUT_BITS": 14, + "root": 8, + "number": 2, + "bits": 2, + "any": 1, + "integer": 1, + "%": 3, + "start_gen": 7, + "propagation": 1, + "OUTPUT_BITS*INPUT_BITS": 9, + "root_gen": 15, + "values": 3, + "radicand_gen": 10, + "mask_gen": 9, + "mask": 3, + "mask_4": 1, + "is": 4, + "odd": 1, "this": 2, - "uses": 1, - "tau": 1, - "through": 1, - "wfs": 1, - "aux.timeDelay": 2, - "aux.plantFirst": 2, - "aux.plantSecond": 2, - "plantOneSlopeOffset": 3, - "plantTwoSlopeOffset": 3, - "aux.m": 3, - "aux.b": 3, - "dx": 6, - "adapting_structural_model": 2, - "aux": 3, - "mod": 3, - "idnlgrey": 1, - "pem": 1, - "guess.plantOne": 3, - "guess.plantTwo": 2, - "plantNum.plantOne": 2, - "plantNum.plantTwo": 2, - "sections": 13, - "secData.": 1, - "guess.": 2, - "result.": 2, - ".fit.par": 1, - "currentGuess": 2, - ".*": 2, - "warning": 1, - "randomGuess": 1, - "The": 6, - "self": 2, - "validation": 2, - "VAF": 2, - "f.": 2, - "data/": 1, - "results.mat": 1, - "guess": 1, - "plantNum": 1, - "plots/": 1, - ".png": 1, - "task": 1, - "closed": 1, - "loop": 1, - "u.": 1, - "gain": 1, - "guesses": 1, - "identified": 1, - ".vaf": 1, - "arguments": 7, - "ischar": 1, - "options.": 1, - "value": 2, - "isterminal": 2, - "direction": 2, - "FIXME": 1, - "largest": 1, - "primary": 1, - "wnm": 11, - "zetanm": 5, - "ss": 3, - "data.modelPar.A": 1, - "data.modelPar.B": 1, - "data.modelPar.C": 1, - "data.modelPar.D": 1, - "bicycle.StateName": 2, - "bicycle.OutputName": 4, - "bicycle.InputName": 2, - "analytic": 3, - "system_state_space": 2, - "numeric": 2, - "data.system.A": 1, - "data.system.B": 1, - "data.system.C": 1, - "data.system.D": 1, - "numeric.StateName": 1, - "data.bicycle.states": 1, - "numeric.InputName": 1, - "data.bicycle.inputs": 1, - "numeric.OutputName": 1, - "data.bicycle.outputs": 1, - "pzplot": 1, - "ss2tf": 2, - "analytic.A": 3, - "analytic.B": 1, - "analytic.C": 1, - "analytic.D": 1, - "mine": 1, - "data.forceTF.PhiDot.num": 1, - "data.forceTF.PhiDot.den": 1, - "numeric.A": 2, - "numeric.B": 1, - "numeric.C": 1, - "numeric.D": 1, - "whipple_pull_force_ABCD": 1, - "bottomRow": 1, - "prod": 3, - "x_min": 3, - "x_max": 3, - "y_min": 3, - "y_max": 3, - "how": 1, - "many": 1, - "measure": 1, - "unit": 1, - "both": 1, - "ds": 1, - "x_res": 7, - "*n": 2, - "y_res": 7, - "grid_x": 3, - "grid_y": 3, - "X": 6, - "@dg": 1, - "Compute": 3, - "*ds": 4, - "location": 1, - "EastOutside": 1, - "ret": 3, - "arg1": 1, - "arg": 2, - "arrayfun": 2, - "RK4_par": 1, - "Range": 1, - "E_0": 4, - "C_L1/2": 1, - "Y_0": 4, - "dvx": 3, - "dy": 5, - "/2": 3, - "de": 4, - "Definition": 1, - "arrays": 1, - "In": 1, - "approach": 1, - "useful": 9, - "pints": 1, - "are": 1, - "stored": 1, - "v_y": 3, - "vx": 2, - "vy": 2, - "Selection": 1, - "Data": 2, - "transfer": 1, - "GPU": 3, - "x_gpu": 3, - "gpuArray": 4, - "y_gpu": 3, - "vx_gpu": 3, - "vy_gpu": 3, - "x_f": 3, - "y_f": 3, - "vx_f": 3, - "vy_f": 3, - "@RKF45_FILE_gpu": 1, - "back": 1, - "CPU": 1, - "memory": 1, - "cleaning": 1, - "gather": 4, - "Construction": 1, - "computation": 2, - "X_T": 4, - "Y_T": 4, - "VX_T": 4, - "VY_T": 3, - "filter_ftle": 11, - "Compute_FILE_gpu": 1, - "Plot": 1, - "results": 1, - "squeeze": 1, - "c1": 5, - "roots": 3, - "*mu": 6, - "c2": 5, - "c3": 3, - "u": 3, - "Yp": 2, - "human": 1, - "Ys": 1, - "feedback": 1, - "tf2ss": 1, - "Ys.num": 1, - "Ys.den": 1, - "delta_e": 3, - "Integrate_FTLE_Gawlick_ell": 1, - "ecc": 2, - "nu": 2, - "ecc*cos": 1, - "@f_ell": 1, - "Consider": 1, - "also": 1, - "negative": 1, - "goodness": 1, - "gains.Benchmark.Slow": 1, - "place": 2, - "holder": 2, - "gains.Browserins.Slow": 1, - "gains.Browser.Slow": 1, - "gains.Pista.Slow": 1, - "gains.Fisher.Slow": 1, - "gains.Yellow.Slow": 1, - "gains.Yellowrev.Slow": 1, - "gains.Benchmark.Medium": 1, - "gains.Browserins.Medium": 1, - "gains.Browser.Medium": 1, - "gains.Pista.Medium": 1, - "gains.Fisher.Medium": 1, - "gains.Yellow.Medium": 1, - "gains.Yellowrev.Medium": 1, - "gains.Benchmark.Fast": 1, - "gains.Browserins.Fast": 1, - "gains.Browser.Fast": 1, - "gains.Pista.Fast": 1, - "gains.Fisher.Fast": 1, - "gains.Yellow.Fast": 1, - "gains.Yellowrev.Fast": 1, - "gains.": 1 + "INPUT_BITS*": 27, + "<<": 2, + "i/2": 2, + "even": 1, + "pipeline_stage": 1, + "INPUT_BITS*i": 5, + "t_button_debounce": 1, + ".CLK_FREQUENCY": 1, + ".DEBOUNCE_HZ": 1, + ".reset_n": 3, + ".button": 1, + ".debounce": 1, + "initial": 3, + "bx": 4, + "#10": 10, + "#5": 3, + "#100": 1, + "#0.1": 8, + "t_div_pipelined": 1, + "dividend": 3, + "divisor": 5, + "div_by_zero": 2, + "quotient": 2, + "quotient_correct": 1, + "BITS": 2, + "div_pipelined": 2, + ".BITS": 1, + ".dividend": 1, + ".divisor": 1, + ".quotient": 1, + ".div_by_zero": 1, + ".start": 2, + ".data_valid": 2, + "#50": 2, + "#1": 1, + "#1000": 1, + "finish": 2, + "t_sqrt_pipelined": 1, + ".INPUT_BITS": 1, + ".radicand": 1, + ".root": 1, + "#10000": 1, + "vga": 1, + "wb_clk_i": 6, + "Mhz": 1, + "VDU": 1, + "wb_rst_i": 6, + "wb_dat_i": 3, + "wb_dat_o": 2, + "wb_adr_i": 3, + "wb_we_i": 3, + "wb_tga_i": 5, + "wb_sel_i": 3, + "wb_stb_i": 2, + "wb_cyc_i": 2, + "wb_ack_o": 2, + "vga_red_o": 2, + "vga_green_o": 2, + "vga_blue_o": 2, + "horiz_sync": 2, + "vert_sync": 2, + "csrm_adr_o": 2, + "csrm_sel_o": 2, + "csrm_we_o": 2, + "csrm_dat_o": 2, + "csrm_dat_i": 2, + "csr_adr_i": 3, + "csr_stb_i": 2, + "conf_wb_dat_o": 3, + "conf_wb_ack_o": 3, + "mem_wb_dat_o": 3, + "mem_wb_ack_o": 3, + "csr_adr_o": 2, + "csr_dat_i": 3, + "csr_stb_o": 3, + "v_retrace": 3, + "vh_retrace": 3, + "w_vert_sync": 3, + "shift_reg1": 3, + "graphics_alpha": 4, + "memory_mapping1": 3, + "write_mode": 3, + "raster_op": 3, + "read_mode": 3, + "bitmask": 3, + "set_reset": 3, + "enable_set_reset": 3, + "map_mask": 3, + "x_dotclockdiv2": 3, + "chain_four": 3, + "read_map_select": 3, + "color_compare": 3, + "color_dont_care": 3, + "wbm_adr_o": 3, + "wbm_sel_o": 3, + "wbm_we_o": 3, + "wbm_dat_o": 3, + "wbm_dat_i": 3, + "wbm_stb_o": 3, + "wbm_ack_i": 3, + "stb": 4, + "cur_start": 3, + "cur_end": 3, + "start_addr": 2, + "vcursor": 3, + "hcursor": 3, + "horiz_total": 3, + "end_horiz": 3, + "st_hor_retr": 3, + "end_hor_retr": 3, + "vert_total": 3, + "end_vert": 3, + "st_ver_retr": 3, + "end_ver_retr": 3, + "pal_addr": 3, + "pal_we": 3, + "pal_read": 3, + "pal_write": 3, + "dac_we": 3, + "dac_read_data_cycle": 3, + "dac_read_data_register": 3, + "dac_read_data": 3, + "dac_write_data_cycle": 3, + "dac_write_data_register": 3, + "dac_write_data": 3, + "vga_config_iface": 1, + "config_iface": 1, + ".wb_clk_i": 2, + ".wb_rst_i": 2, + ".wb_dat_i": 2, + ".wb_dat_o": 2, + ".wb_adr_i": 2, + ".wb_we_i": 2, + ".wb_sel_i": 2, + ".wb_stb_i": 2, + ".wb_ack_o": 2, + ".shift_reg1": 2, + ".graphics_alpha": 2, + ".memory_mapping1": 2, + ".write_mode": 2, + ".raster_op": 2, + ".read_mode": 2, + ".bitmask": 2, + ".set_reset": 2, + ".enable_set_reset": 2, + ".map_mask": 2, + ".x_dotclockdiv2": 2, + ".chain_four": 2, + ".read_map_select": 2, + ".color_compare": 2, + ".color_dont_care": 2, + ".pal_addr": 2, + ".pal_we": 2, + ".pal_read": 2, + ".pal_write": 2, + ".dac_we": 2, + ".dac_read_data_cycle": 2, + ".dac_read_data_register": 2, + ".dac_read_data": 2, + ".dac_write_data_cycle": 2, + ".dac_write_data_register": 2, + ".dac_write_data": 2, + ".cur_start": 2, + ".cur_end": 2, + ".start_addr": 1, + ".vcursor": 2, + ".hcursor": 2, + ".horiz_total": 2, + ".end_horiz": 2, + ".st_hor_retr": 2, + ".end_hor_retr": 2, + ".vert_total": 2, + ".end_vert": 2, + ".st_ver_retr": 2, + ".end_ver_retr": 2, + ".v_retrace": 2, + ".vh_retrace": 2, + "vga_lcd": 1, + "lcd": 1, + ".rst": 1, + ".csr_adr_o": 1, + ".csr_dat_i": 1, + ".csr_stb_o": 1, + ".vga_red_o": 1, + ".vga_green_o": 1, + ".vga_blue_o": 1, + ".horiz_sync": 1, + ".vert_sync": 1, + "vga_cpu_mem_iface": 1, + "cpu_mem_iface": 1, + ".wbs_adr_i": 1, + ".wbs_sel_i": 1, + ".wbs_we_i": 1, + ".wbs_dat_i": 1, + ".wbs_dat_o": 1, + ".wbs_stb_i": 1, + ".wbs_ack_o": 1, + ".wbm_adr_o": 1, + ".wbm_sel_o": 1, + ".wbm_we_o": 1, + ".wbm_dat_o": 1, + ".wbm_dat_i": 1, + ".wbm_stb_o": 1, + ".wbm_ack_i": 1, + "vga_mem_arbitrer": 1, + "mem_arbitrer": 1, + ".clk_i": 1, + ".rst_i": 1, + ".csr_adr_i": 1, + ".csr_dat_o": 1, + ".csr_stb_i": 1, + ".csrm_adr_o": 1, + ".csrm_sel_o": 1, + ".csrm_we_o": 1, + ".csrm_dat_o": 1, + ".csrm_dat_i": 1 }, -<<<<<<< HEAD "VimL": { "no": 1, "toolbar": 1, @@ -116106,231 +66766,289 @@ "the": 7, "Applications": 1, "list": 1, -======= - "Pan": { - "object": 1, - "template": 1, - "pantest": 1, - ";": 32, - "xFF": 1, - "e": 2, - "-": 2, - "E10": 1, - "variable": 4, - "TEST": 2, - "to_string": 1, - "(": 8, - ")": 8, - "+": 2, - "value": 1, - "undef": 1, - "null": 1, - "error": 1, - "include": 1, - "{": 5, - "}": 5, - "pkg_repl": 2, - "PKG_ARCH_DEFAULT": 1, - "function": 1, - "show_things_view_for_stuff": 1, - "thing": 2, - "ARGV": 1, - "[": 2, - "]": 2, - "foreach": 1, - "i": 1, - "mything": 2, - "STUFF": 1, - "if": 1, - "return": 2, - "true": 2, - "else": 1, - "SELF": 1, - "false": 2, - "HERE": 1, - "<<": 1, - "EOF": 2, - "This": 1, - "example": 1, - "demonstrates": 1, - "an": 1, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "in": 1, - "line": 1, - "heredoc": 1, - "style": 1, - "config": 1, - "file": 1, - "main": 1, - "awesome": 1, - "small": 1, - "#This": 1, - "should": 1, - "be": 1, - "highlighted": 1, - "normally": 1, - "again.": 1 + "Windows": 1, + "Task": 1, + "Manager": 1, + "App.TaskVisible": 1, + "False": 1, + "create": 1, + "tray": 1, + "icon": 1, + "Set": 5, + "myAST.create": 1, + "myMouseEventsForm.icon": 1, + "make": 1, + "myself": 1, + "easily": 2, + "found": 1, + "myMouseEventsForm.hwnd": 3, + "End": 11, + "Sub": 9, + "shutdown": 1, + "myAST.destroy": 1, + "Nothing": 2, + "Unload": 1, + "myAST_RButtonUp": 1, + "Dim": 1, + "epm": 1, + "cTP_EasyPopupMenu": 1, + "menuItemSelected": 1, + "epm.addMenuItem": 3, + "MF_STRING": 3, + "epm.addSubmenuItem": 2, + "MF_SEPARATOR": 1, + "MF_CHECKED": 1, + "route": 2, + "to": 4, + "a": 4, + "remote": 1, + "machine": 1, + "Else": 1, + "for": 4, + "moment": 1, + "just": 1, + "between": 1, + "MMFileTransports": 1, + "If": 4, + "myMMTransportIDsByRouterID.Exists": 1, + "message.toAddress.RouterID": 2, + "Then": 1, + "transport": 1, + "transport.send": 1, + "messageToBytes": 1, + "message": 1, + "directoryEntryIDString": 2, + "serviceType": 2, + "address": 1, + "VLMAddress": 1, + "&": 7, + "address.MachineID": 1, + "address.RouterID": 1, + "address.AgentID": 1, + "myMMFileTransports_disconnecting": 1, + "id": 1, + "oReceived": 2, + "Boolean": 1, + "True": 1, + "@Code": 1, + "ViewData": 1, + "Code": 1, + "@section": 1, + "featured": 1, + "
": 1, + "class=": 7, + "
": 1, + "
": 1, + "

": 1, + "@ViewData": 2, + ".": 3, + "

": 1, + "

": 1, + "

": 1, + "
": 1, + "

": 1, + "To": 1, + "learn": 1, + "more": 4, + "about": 2, + "ASP.NET": 5, + "MVC": 4, + "visit": 2, + "": 5, + "href=": 5, + "title=": 2, + "http": 1, + "//asp.net/mvc": 1, + "": 5, + "The": 1, + "page": 1, + "features": 3, + "": 1, + "videos": 1, + "tutorials": 1, + "and": 6, + "samples": 1, + "": 1, + "help": 1, + "you": 4, + "get": 1, + "most": 1, + "MVC.": 1, + "have": 1, + "any": 1, + "questions": 1, + "our": 1, + "forums": 1, + "

": 1, + "
": 1, + "
": 1, + "Section": 1, + "

": 1, + "We": 1, + "suggest": 1, + "following": 1, + "

": 1, + "
    ": 1, + "
  1. ": 3, + "
    ": 3, + "Getting": 1, + "Started": 1, + "
    ": 3, + "gives": 2, + "powerful": 1, + "patterns": 1, + "based": 1, + "way": 1, + "build": 1, + "dynamic": 1, + "websites": 1, + "that": 5, + "enables": 1, + "clean": 1, + "separation": 1, + "of": 2, + "concerns": 1, + "full": 1, + "control": 1, + "over": 1, + "markup": 1, + "enjoyable": 1, + "agile": 1, + "development.": 1, + "includes": 1, + "many": 1, + "enable": 1, + "fast": 1, + "TDD": 1, + "friendly": 1, + "development": 1, + "creating": 1, + "sophisticated": 1, + "applications": 1, + "use": 1, + "latest": 1, + "web": 2, + "standards.": 1, + "Learn": 3, + "
  2. ": 3, + "Add": 1, + "NuGet": 2, + "packages": 1, + "jump": 1, + "start": 1, + "your": 2, + "coding": 1, + "makes": 1, + "it": 1, + "easy": 1, + "install": 1, + "update": 1, + "free": 1, + "libraries": 1, + "tools.": 1, + "Find": 1, + "Web": 1, + "Hosting": 1, + "You": 1, + "can": 1, + "find": 1, + "hosting": 1, + "company": 1, + "offers": 1, + "right": 1, + "mix": 1, + "price": 1, + "applications.": 1, + "
": 1, + "Module": 2, + "Module1": 1, + "Main": 1, + "Console.Out.WriteLine": 2 }, - "PAWN": { - "//": 22, - "-": 1551, - "#include": 5, - "": 1, - "": 1, - "": 1, - "#pragma": 1, - "tabsize": 1, - "#define": 5, - "COLOR_WHITE": 2, - "xFFFFFFFF": 2, - "COLOR_NORMAL_PLAYER": 3, - "xFFBB7777": 1, - "CITY_LOS_SANTOS": 7, - "CITY_SAN_FIERRO": 4, - "CITY_LAS_VENTURAS": 6, - "new": 13, - "total_vehicles_from_files": 19, - ";": 257, - "gPlayerCitySelection": 21, - "[": 56, - "MAX_PLAYERS": 3, - "]": 56, - "gPlayerHasCitySelected": 6, - "gPlayerLastCitySelectionTick": 5, - "Text": 5, - "txtClassSelHelper": 14, - "txtLosSantos": 7, - "txtSanFierro": 7, - "txtLasVenturas": 7, - "thisanimid": 1, - "lastanimid": 1, - "main": 1, - "(": 273, - ")": 273, - "{": 39, - "print": 3, - "}": 39, - "public": 6, - "OnPlayerConnect": 1, - "playerid": 132, - "GameTextForPlayer": 1, - "SendClientMessage": 1, - "GetTickCount": 4, - "//SetPlayerColor": 2, - "//Kick": 1, - "return": 17, - "OnPlayerSpawn": 1, - "if": 28, - "IsPlayerNPC": 3, - "randSpawn": 16, - "SetPlayerInterior": 7, - "TogglePlayerClock": 2, - "ResetPlayerMoney": 3, - "GivePlayerMoney": 2, - "random": 3, - "sizeof": 3, - "gRandomSpawns_LosSantos": 5, - "SetPlayerPos": 6, - "SetPlayerFacingAngle": 6, - "else": 9, - "gRandomSpawns_SanFierro": 5, - "gRandomSpawns_LasVenturas": 5, - "SetPlayerSkillLevel": 11, - "WEAPONSKILL_PISTOL": 1, - "WEAPONSKILL_PISTOL_SILENCED": 1, - "WEAPONSKILL_DESERT_EAGLE": 1, - "WEAPONSKILL_SHOTGUN": 1, - "WEAPONSKILL_SAWNOFF_SHOTGUN": 1, - "WEAPONSKILL_SPAS12_SHOTGUN": 1, - "WEAPONSKILL_MICRO_UZI": 1, - "WEAPONSKILL_MP5": 1, - "WEAPONSKILL_AK47": 1, - "WEAPONSKILL_M4": 1, - "WEAPONSKILL_SNIPERRIFLE": 1, - "GivePlayerWeapon": 1, - "WEAPON_COLT45": 1, - "//GivePlayerWeapon": 1, - "WEAPON_MP5": 1, - "OnPlayerDeath": 1, - "killerid": 3, - "reason": 1, - "playercash": 4, - "INVALID_PLAYER_ID": 1, - "GetPlayerMoney": 1, - "ClassSel_SetupCharSelection": 2, - "SetPlayerCameraPos": 6, - "SetPlayerCameraLookAt": 6, - "ClassSel_InitCityNameText": 4, - "txtInit": 7, - "TextDrawUseBox": 2, - "TextDrawLetterSize": 2, - "TextDrawFont": 2, - "TextDrawSetShadow": 2, - "TextDrawSetOutline": 2, - "TextDrawColor": 2, - "xEEEEEEFF": 1, - "TextDrawBackgroundColor": 2, - "FF": 2, - "ClassSel_InitTextDraws": 2, - "TextDrawCreate": 4, - "TextDrawBoxColor": 1, - "BB": 1, - "TextDrawTextSize": 1, - "ClassSel_SetupSelectedCity": 3, - "TextDrawShowForPlayer": 4, - "TextDrawHideForPlayer": 10, - "ClassSel_SwitchToNextCity": 3, - "+": 19, - "PlayerPlaySound": 2, - "ClassSel_SwitchToPreviousCity": 2, + "Volt": { + "module": 1, + "main": 2, + ";": 53, + "import": 7, + "core.stdc.stdio": 1, + "core.stdc.stdlib": 1, + "watt.process": 1, + "watt.path": 1, + "results": 1, + "list": 1, + "cmd": 1, + "int": 8, + "(": 37, + ")": 37, + "{": 12, + "auto": 6, + "cmdGroup": 2, + "new": 3, + "CmdGroup": 1, + "bool": 4, + "printOk": 2, + "true": 4, + "printImprovments": 2, + "printFailing": 2, + "printRegressions": 2, + "string": 1, + "compiler": 3, + "getEnv": 1, + "if": 7, + "is": 2, + "null": 3, + "printf": 6, + ".ptr": 14, + "return": 2, + "-": 3, + "}": 12, + "///": 1, + "@todo": 1, + "Scan": 1, + "for": 4, + "files": 1, + "tests": 2, + "testList": 1, + "total": 5, + "passed": 5, + "failed": 5, + "improved": 3, + "regressed": 6, + "rets": 5, + "Result": 2, + "[": 6, + "]": 6, + "tests.length": 3, + "size_t": 3, + "i": 14, "<": 3, - "ClassSel_HandleCitySelection": 2, - "Keys": 3, - "ud": 2, - "lr": 4, - "GetPlayerKeys": 1, - "&": 1, - "KEY_FIRE": 1, - "TogglePlayerSpectating": 2, - "OnPlayerRequestClass": 1, - "classid": 1, - "GetPlayerState": 2, - "PLAYER_STATE_SPECTATING": 2, - "OnGameModeInit": 1, - "SetGameModeText": 1, - "ShowPlayerMarkers": 1, - "PLAYER_MARKERS_MODE_GLOBAL": 1, - "ShowNameTags": 1, - "SetNameTagDrawDistance": 1, - "EnableStuntBonusForAll": 1, - "DisableInteriorEnterExits": 1, - "SetWeather": 1, - "SetWorldTime": 1, - "//UsePlayerPedAnims": 1, - "//ManualVehicleEngineAndLights": 1, - "//LimitGlobalChatRadius": 1, - "AddPlayerClass": 69, - "//AddPlayerClass": 1, - "LoadStaticVehiclesFromFile": 17, - "printf": 1, - "OnPlayerUpdate": 1, - "IsPlayerConnected": 1, + "+": 14, + ".runTest": 1, + "cmdGroup.waitAll": 1, + "ret": 1, + "ret.ok": 1, + "cast": 5, + "ret.hasPassed": 4, "&&": 2, - "GetPlayerInterior": 1, - "GetPlayerWeapon": 2, - "SetPlayerArmedWeapon": 1, - "fists": 1, - "no": 1, - "syncing": 1, - "until": 1, - "they": 1, - "change": 1, - "their": 1, - "weapon": 1, - "WEAPON_MINIGUN": 1, - "Kick": 1 + "ret.test.ptr": 4, + "ret.msg.ptr": 4, + "else": 3, + "fflush": 2, + "stdout": 1, + "xml": 8, + "fopen": 1, + "fprintf": 2, + "rets.length": 1, + ".xmlLog": 1, + "fclose": 1, + "rate": 2, + "float": 2, + "/": 1, + "*": 1, + "f": 1, + "double": 1 }, -<<<<<<< HEAD "XC": { "int": 2, "main": 1, @@ -116348,9 +67066,9 @@ "return": 1 }, "XML": { - "": 11, - "version=": 17, - "encoding=": 7, + "": 12, + "version=": 21, + "encoding=": 8, "": 7, "ToolsVersion=": 6, "DefaultTargets=": 5, @@ -116427,6 +67145,94 @@ "": 10, "": 5, "": 7, + "standalone=": 1, + "": 1, + "4": 1, + "0": 2, + "": 1, + "storage_type_id=": 1, + "": 14, + "moduleId=": 14, + "": 2, + "id=": 141, + "buildSystemId=": 2, + "name=": 270, + "": 2, + "": 2, + "": 12, + "point=": 12, + "": 2, + "": 7, + "": 2, + "artifactName=": 2, + "buildArtefactType=": 2, + "buildProperties=": 2, + "cleanCommand=": 2, + "description=": 4, + "cdt": 2, + "managedbuild": 2, + "config": 2, + "gnu": 2, + "exe": 2, + "debug": 1, + "1803931088": 1, + "parent=": 2, + "": 2, + "resourcePath=": 2, + "": 2, + "superClass=": 42, + "": 2, + "": 2, + "buildPath=": 2, + "keepEnvironmentInBuildfile=": 2, + "managedBuildOn=": 2, + "": 12, + "": 4, + "": 8, + "": 8, + "defaultValue=": 2, + "": 4, + "kind=": 6, + "paths=": 4, + "": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "flags=": 2, + "": 2, + "": 2, + "": 2, + "release": 1, + "32754498": 1, + "": 2, + "projectType=": 1, + "": 5, + "enabled=": 125, + "problemReportingEnabled=": 5, + "selectedProfileId=": 5, + "": 40, + "": 40, + "": 40, + "filePath=": 40, + "": 80, + "": 40, + "": 40, + "": 40, + "arguments=": 40, + "command=": 40, + "useDefault=": 40, + "": 40, + "": 40, + "": 4, + "instanceId=": 4, + "": 4, + "": 1, "": 2, "": 2, "cfa7a11": 1, @@ -116474,8 +67280,6 @@ "FSharp": 1, "": 1, "": 1, - "": 1, - "name=": 227, "xmlns": 2, "ea=": 2, "": 4, @@ -116530,14 +67334,12 @@ "application": 2, "": 1, "": 1, - "value=": 1, "": 1, "": 1, "": 1, "": 1, "": 2, "visibility=": 2, - "description=": 2, "": 1, "": 1, "": 4, @@ -116811,5035 +67613,407 @@ "single": 2, "using": 9, "contract.": 2, -======= - "Ruby": { - "module": 8, - "Foo": 1, - "end": 238, - "SHEBANG#!rake": 1, - "task": 2, - "default": 2, - "do": 37, - "puts": 12, - "SHEBANG#!macruby": 1, - "require": 58, - "Resque": 3, - "include": 3, - "Helpers": 1, - "extend": 2, - "self": 11, - "def": 143, - "redis": 7, - "(": 244, - "server": 11, - ")": 256, - "case": 5, - "when": 11, - "String": 2, - "if": 72, - "/redis": 1, - "/": 34, - "//": 3, - "Redis.connect": 2, - "url": 12, - "thread_safe": 2, - "true": 15, - "else": 25, - "namespace": 3, - "server.split": 2, - "host": 3, - "port": 4, - "db": 3, - "Redis.new": 1, - "||": 22, - "resque": 2, - "@redis": 6, - "Redis": 3, - "Namespace.new": 2, - "Namespace": 1, - "@queues": 2, - "Hash.new": 1, - "{": 68, - "|": 91, - "h": 2, - "name": 51, - "[": 56, - "]": 56, - "Queue.new": 1, - "coder": 3, - "}": 68, - "@coder": 1, - "MultiJsonCoder.new": 1, - "attr_writer": 4, - "return": 25, - "self.redis": 2, - "Redis.respond_to": 1, - "connect": 1, - "redis_id": 2, - "redis.respond_to": 2, - "redis.server": 1, - "elsif": 7, - "nodes": 1, - "#": 100, - "distributed": 1, - "redis.nodes.map": 1, - "n": 4, - "n.id": 1, - ".join": 1, - "redis.client.id": 1, - "before_first_fork": 2, - "&": 31, - "block": 30, - "@before_first_fork": 2, - "before_fork": 2, - "@before_fork": 2, - "after_fork": 2, - "@after_fork": 2, - "to_s": 1, - "attr_accessor": 2, - "inline": 3, - "alias": 1, - "push": 1, - "queue": 24, - "item": 4, - "<<": 15, - "pop": 1, - "begin": 9, - ".pop": 1, - "rescue": 13, - "ThreadError": 1, - "nil": 21, - "size": 3, - ".size": 1, - "peek": 1, - "start": 7, - "count": 5, - ".slice": 1, - "list_range": 1, - "key": 8, - "decode": 2, - "redis.lindex": 1, - "Array": 2, - "redis.lrange": 1, - "+": 47, - "-": 34, - ".map": 6, - "queues": 3, - "redis.smembers": 1, - "remove_queue": 1, - ".destroy": 1, - "@queues.delete": 1, - "queue.to_s": 1, - "name.to_s": 3, - "enqueue": 1, - "klass": 16, - "*args": 16, - "enqueue_to": 2, - "queue_from_class": 4, - "before_hooks": 2, - "Plugin.before_enqueue_hooks": 1, - ".collect": 2, - "hook": 9, - "klass.send": 4, - "before_hooks.any": 2, - "result": 8, - "false": 26, - "Job.create": 1, - "Plugin.after_enqueue_hooks": 1, - ".each": 4, - "dequeue": 1, - "Plugin.before_dequeue_hooks": 1, - "Job.destroy": 1, - "Plugin.after_dequeue_hooks": 1, - "klass.instance_variable_get": 1, - "@queue": 1, - "klass.respond_to": 1, - "and": 6, - "klass.queue": 1, - "reserve": 1, - "Job.reserve": 1, - "validate": 1, - "raise": 17, - "NoQueueError.new": 1, - "klass.to_s.empty": 1, - "NoClassError.new": 1, - "workers": 2, - "Worker.all": 1, - "working": 2, - "Worker.working": 1, - "remove_worker": 1, - "worker_id": 2, - "worker": 1, - "Worker.find": 1, - "worker.unregister_worker": 1, - "info": 2, - "pending": 1, - "queues.inject": 1, - "m": 3, - "k": 2, - "processed": 2, - "Stat": 2, - "queues.size": 1, - "workers.size.to_i": 1, - "working.size": 1, - "failed": 3, - "servers": 1, - "environment": 2, - "ENV": 4, - "keys": 6, - "redis.keys": 1, - "key.sub": 1, - "SHEBANG#!python": 1, - "Jenkins": 1, - "Plugin": 1, - "Specification.new": 1, - "plugin": 3, - "plugin.name": 1, - "plugin.display_name": 1, - "plugin.version": 1, - "plugin.description": 1, - "plugin.url": 1, - "plugin.developed_by": 1, - "plugin.uses_repository": 1, - "github": 1, - "plugin.depends_on": 1, - "#plugin.depends_on": 1, - "class": 7, - "Formula": 2, - "FileUtils": 1, - "attr_reader": 5, - "path": 16, - "version": 10, - "homepage": 2, - "specs": 14, - "downloader": 6, - "standard": 2, - "unstable": 2, - "head": 3, - "bottle_version": 2, - "bottle_url": 3, - "bottle_sha1": 2, - "buildpath": 1, - "initialize": 2, - "set_instance_variable": 12, - "@head": 4, - "not": 3, - "@url": 8, - "or": 7, - "ARGV.build_head": 2, - "@version": 10, - "@spec_to_use": 4, - "@unstable": 2, - "@standard.nil": 1, - "SoftwareSpecification.new": 3, - "@specs": 3, - "@standard": 3, - "@url.nil": 1, - "@name": 3, - "validate_variable": 7, - "@path": 1, - "path.nil": 1, - "self.class.path": 1, - "Pathname.new": 3, - "@spec_to_use.detect_version": 1, - "CHECKSUM_TYPES.each": 1, - "type": 10, - "@downloader": 2, - "download_strategy.new": 2, - "@spec_to_use.url": 1, - "@spec_to_use.specs": 1, - "@bottle_url": 2, - "bottle_base_url": 1, - "bottle_filename": 1, - "@bottle_sha1": 2, - "installed": 2, - "installed_prefix.children.length": 1, - "explicitly_requested": 1, - "ARGV.named.empty": 1, - "ARGV.formulae.include": 1, - "linked_keg": 1, - "HOMEBREW_REPOSITORY/": 2, - "/@name": 1, - "installed_prefix": 1, - "head_prefix": 2, - "HOMEBREW_CELLAR": 2, - "head_prefix.directory": 1, - "prefix": 14, - "rack": 1, - ";": 41, - "prefix.parent": 1, - "bin": 1, - "doc": 1, - "lib": 1, - "libexec": 1, - "man": 9, - "man1": 1, - "man2": 1, - "man3": 1, - "man4": 1, - "man5": 1, - "man6": 1, - "man7": 1, - "man8": 1, - "sbin": 1, - "share": 1, - "etc": 1, - "HOMEBREW_PREFIX": 2, - "var": 1, - "plist_name": 2, - "plist_path": 1, - "download_strategy": 1, - "@spec_to_use.download_strategy": 1, - "cached_download": 1, - "@downloader.cached_location": 1, - "caveats": 1, - "options": 3, - "patches": 2, - "keg_only": 2, - "self.class.keg_only_reason": 1, - "fails_with": 2, - "cc": 3, - "self.class.cc_failures.nil": 1, - "Compiler.new": 1, - "unless": 15, - "cc.is_a": 1, - "Compiler": 1, - "self.class.cc_failures.find": 1, - "failure": 1, - "next": 1, - "failure.compiler": 1, - "cc.name": 1, - "failure.build.zero": 1, - "failure.build": 1, - "cc.build": 1, - "skip_clean": 2, - "self.class.skip_clean_all": 1, - "to_check": 2, - "path.relative_path_from": 1, - ".to_s": 3, - "self.class.skip_clean_paths.include": 1, - "brew": 2, - "stage": 2, - "patch": 3, - "yield": 5, - "Interrupt": 2, - "RuntimeError": 1, - "SystemCallError": 1, - "e": 8, - "don": 1, - "config.log": 2, - "t": 3, - "a": 10, - "std_autotools": 1, - "variant": 1, - "because": 1, - "autotools": 1, - "is": 3, - "lot": 1, - "std_cmake_args": 1, - "%": 10, - "W": 1, - "DCMAKE_INSTALL_PREFIX": 1, - "DCMAKE_BUILD_TYPE": 1, - "None": 1, - "DCMAKE_FIND_FRAMEWORK": 1, - "LAST": 1, - "Wno": 1, - "dev": 1, - "self.class_s": 2, - "#remove": 1, - "invalid": 1, - "characters": 1, - "then": 4, - "camelcase": 1, - "it": 1, - "name.capitalize.gsub": 1, - "_.": 1, - "s": 2, - "zA": 1, - "Z0": 1, - "upcase": 1, - ".gsub": 5, - "self.names": 1, - "Dir": 4, - "f": 11, - "File.basename": 2, - ".sort": 2, - "self.all": 1, - "map": 1, - "self.map": 1, - "rv": 3, - "each": 1, - "self.each": 1, - "names.each": 1, - "Formula.factory": 2, - "onoe": 2, - "inspect": 2, - "self.aliases": 1, - "self.canonical_name": 1, - "name.kind_of": 2, - "Pathname": 2, - "formula_with_that_name": 1, - "HOMEBREW_REPOSITORY": 4, - "possible_alias": 1, - "possible_cached_formula": 1, - "HOMEBREW_CACHE_FORMULA": 2, - "name.include": 2, - "r": 3, - ".": 3, - "tapd": 1, - ".downcase": 2, - "tapd.find_formula": 1, - "relative_pathname": 1, - "relative_pathname.stem.to_s": 1, - "tapd.directory": 1, - "formula_with_that_name.file": 1, - "formula_with_that_name.readable": 1, - "possible_alias.file": 1, - "possible_alias.realpath.basename": 1, - "possible_cached_formula.file": 1, - "possible_cached_formula.to_s": 1, - "self.factory": 1, - "https": 1, - "ftp": 1, - ".basename": 1, - "target_file": 6, - "name.basename": 1, - "HOMEBREW_CACHE_FORMULA.mkpath": 1, - "FileUtils.rm": 1, - "force": 1, - "curl": 1, - "install_type": 4, - "from_url": 1, - "Formula.canonical_name": 1, - ".rb": 1, - "path.stem": 1, - "from_path": 1, - "path.to_s": 3, - "Formula.path": 1, - "from_name": 2, - "klass_name": 2, - "Object.const_get": 1, - "NameError": 2, - "LoadError": 3, - "klass.new": 2, - "FormulaUnavailableError.new": 1, - "tap": 1, - "path.realpath.to_s": 1, - "/Library/Taps/": 1, - "w": 6, - "self.path": 1, - "mirrors": 4, - "self.class.mirrors": 1, - "deps": 1, - "self.class.dependencies.deps": 1, - "external_deps": 1, - "self.class.dependencies.external_deps": 1, - "recursive_deps": 1, - "Formula.expand_deps": 1, - ".flatten.uniq": 1, - "self.expand_deps": 1, - "f.deps.map": 1, - "dep": 3, - "f_dep": 3, - "dep.to_s": 1, - "expand_deps": 1, - "protected": 1, - "system": 1, - "cmd": 6, - "pretty_args": 1, - "args.dup": 1, - "pretty_args.delete": 1, - "ARGV.verbose": 2, - "ohai": 3, - ".strip": 1, - "removed_ENV_variables": 2, - "args.empty": 1, - "cmd.split": 1, - ".first": 1, - "ENV.remove_cc_etc": 1, - "safe_system": 4, - "rd": 1, - "wr": 3, - "IO.pipe": 1, - "pid": 1, - "fork": 1, - "rd.close": 1, - "stdout.reopen": 1, - "stderr.reopen": 1, - "args.collect": 1, - "arg": 1, - "arg.to_s": 1, - "exec": 2, - "exit": 2, - "never": 1, - "gets": 1, - "here": 1, - "threw": 1, - "wr.close": 1, - "out": 4, - "rd.read": 1, - "until": 1, - "rd.eof": 1, - "Process.wait": 1, - ".success": 1, - "removed_ENV_variables.each": 1, - "value": 4, - "ENV.kind_of": 1, - "Hash": 3, - "BuildError.new": 1, - "args": 5, - "public": 2, - "fetch": 2, - "install_bottle": 1, - "CurlBottleDownloadStrategy.new": 1, - "mirror_list": 2, - "HOMEBREW_CACHE.mkpath": 1, - "fetched": 4, - "downloader.fetch": 1, - "CurlDownloadStrategyError": 1, - "mirror_list.empty": 1, - "mirror_list.shift.values_at": 1, - "retry": 2, - "checksum_type": 2, - "CHECKSUM_TYPES.detect": 1, - "instance_variable_defined": 2, - "verify_download_integrity": 2, - "fn": 2, - "args.length": 1, - "md5": 2, - "supplied": 4, - "instance_variable_get": 2, - "type.to_s.upcase": 1, - "hasher": 2, - "Digest.const_get": 1, - "hash": 2, - "fn.incremental_hash": 1, - "supplied.empty": 1, - "message": 2, - "EOF": 2, - "mismatch": 1, - "Expected": 1, - "Got": 1, - "Archive": 1, - "To": 1, - "an": 1, - "incomplete": 1, - "download": 1, - "remove": 1, - "the": 8, - "file": 1, - "above.": 1, - "supplied.upcase": 1, - "hash.upcase": 1, - "opoo": 1, - "private": 3, - "CHECKSUM_TYPES": 2, - "sha1": 4, - "sha256": 1, - ".freeze": 1, - "fetched.kind_of": 1, - "mktemp": 1, - "downloader.stage": 1, - "@buildpath": 2, - "Pathname.pwd": 1, - "patch_list": 1, - "Patches.new": 1, - "patch_list.empty": 1, - "patch_list.external_patches": 1, - "patch_list.download": 1, - "patch_list.each": 1, - "p": 2, - "p.compression": 1, - "gzip": 1, - "p.compressed_filename": 2, - "bzip2": 1, - "*": 3, - "p.patch_args": 1, - "v": 2, - "v.to_s.empty": 1, - "s/": 1, - "class_value": 3, - "self.class.send": 1, - "instance_variable_set": 1, - "self.method_added": 1, - "method": 4, - "self.attr_rw": 1, - "attrs": 1, - "attrs.each": 1, - "attr": 4, - "class_eval": 1, - "Q": 1, - "val": 10, - "val.nil": 3, - "@#": 2, - "attr_rw": 4, - "keg_only_reason": 1, - "skip_clean_all": 2, - "cc_failures": 1, - "stable": 2, - "block_given": 5, - "instance_eval": 2, - "ARGV.build_devel": 2, - "devel": 1, - "@mirrors": 3, - "clear": 1, - "from": 1, - "release": 1, - "bottle": 1, - "bottle_block": 1, - "Class.new": 2, - "self.version": 1, - "self.url": 1, - "self.sha1": 1, - "sha1.shift": 1, - "@sha1": 6, - "MacOS.cat": 1, - "MacOS.lion": 1, - "self.data": 1, - "&&": 8, - "bottle_block.instance_eval": 1, - "@bottle_version": 1, - "bottle_block.data": 1, - "mirror": 1, - "@mirrors.uniq": 1, - "dependencies": 1, - "@dependencies": 1, - "DependencyCollector.new": 1, - "depends_on": 1, - "dependencies.add": 1, - "paths": 3, - "all": 1, - "@skip_clean_all": 2, - "@skip_clean_paths": 3, - ".flatten.each": 1, - "p.to_s": 2, - "@skip_clean_paths.include": 1, - "skip_clean_paths": 1, - "reason": 2, - "explanation": 1, - "@keg_only_reason": 1, - "KegOnlyReason.new": 1, - "explanation.to_s.chomp": 1, - "compiler": 3, - "@cc_failures": 2, - "CompilerFailures.new": 1, - "CompilerFailure.new": 2, - "Sinatra": 2, - "Request": 2, - "<": 2, - "Rack": 1, - "accept": 1, - "@env": 2, - "entries": 1, - ".to_s.split": 1, - "entries.map": 1, - "accept_entry": 1, - ".sort_by": 1, - "last": 4, - "first": 1, - "preferred_type": 1, - "self.defer": 1, - "match": 6, - "pattern": 1, - "path.respond_to": 5, - "path.keys": 1, - "names": 2, - "path.names": 1, - "TypeError": 1, - "URI": 3, - "URI.const_defined": 1, - "Parser": 1, - "Parser.new": 1, - "encoded": 1, - "char": 4, - "enc": 5, - "URI.escape": 1, - "helpers": 3, - "data": 1, - "reset": 1, - "set": 36, - "development": 6, - ".to_sym": 1, - "raise_errors": 1, - "Proc.new": 11, - "test": 5, - "dump_errors": 1, - "show_exceptions": 1, - "sessions": 1, - "logging": 2, - "protection": 1, - "method_override": 4, - "use_code": 1, - "default_encoding": 1, - "add_charset": 1, - "javascript": 1, - "xml": 2, - "xhtml": 1, - "json": 1, - "settings.add_charset": 1, - "text": 3, - "session_secret": 3, - "SecureRandom.hex": 1, - "NotImplementedError": 1, - "Kernel.rand": 1, - "**256": 1, - "alias_method": 2, - "methodoverride": 2, - "run": 2, - "via": 1, - "at": 1, - "running": 2, - "built": 1, - "in": 3, - "now": 1, - "http": 1, - "webrick": 1, - "bind": 1, - "ruby_engine": 6, - "defined": 1, - "RUBY_ENGINE": 2, - "server.unshift": 6, - "ruby_engine.nil": 1, - "absolute_redirects": 1, - "prefixed_redirects": 1, - "empty_path_info": 1, - "app_file": 4, - "root": 5, - "File.expand_path": 1, - "File.dirname": 4, - "views": 1, - "File.join": 6, - "reload_templates": 1, - "lock": 1, - "threaded": 1, - "public_folder": 3, - "static": 1, - "File.exist": 1, - "static_cache_control": 1, - "error": 3, - "Exception": 1, - "response.status": 1, - "content_type": 3, - "configure": 2, - "get": 2, - "filename": 2, - "__FILE__": 3, - "png": 1, - "send_file": 1, - "NotFound": 1, - "HTML": 2, - "": 1, - "html": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "

": 1, - "doesn": 1, - "rsquo": 1, - "know": 1, - "this": 2, - "ditty.": 1, - "

": 1, - "": 1, - "src=": 1, - "
": 1, - "id=": 1, - "Try": 1, - "
": 1,
-      "request.request_method.downcase": 1,
-      "nend": 1,
-      "
": 1, - "
": 1, - "": 1, - "": 1, - "Application": 2, - "Base": 2, - "super": 3, - "self.register": 2, - "extensions": 6, - "nodoc": 3, - "added_methods": 2, - "extensions.map": 1, - "m.public_instance_methods": 1, - ".flatten": 1, - "Delegator.delegate": 1, - "Delegator": 1, - "self.delegate": 1, - "methods": 1, - "methods.each": 1, - "method_name": 5, - "define_method": 1, - "respond_to": 1, - "Delegator.target.send": 1, - "delegate": 1, - "put": 1, - "post": 1, - "delete": 1, - "template": 1, - "layout": 1, - "before": 1, - "after": 1, - "not_found": 1, - "mime_type": 1, - "enable": 1, - "disable": 1, - "use": 1, - "production": 1, - "settings": 2, - "target": 1, - "self.target": 1, - "Wrapper": 1, - "stack": 2, - "instance": 2, - "@stack": 1, - "@instance": 2, - "@instance.settings": 1, - "call": 1, - "env": 2, - "@stack.call": 1, - "self.new": 1, - "base": 4, - "base.class_eval": 1, - "Delegator.target.register": 1, - "self.helpers": 1, - "Delegator.target.helpers": 1, - "self.use": 1, - "Delegator.target.use": 1, - "Grit": 1, - "SHEBANG#!ruby": 2, - ".unshift": 1, - "For": 1, - "use/testing": 1, - "no": 1, - "gem": 3, - "require_all": 4, - "glob": 2, - "Jekyll": 3, - "VERSION": 1, - "DEFAULTS": 2, - "Dir.pwd": 3, - "self.configuration": 1, - "override": 3, - "source": 2, - "config_file": 2, - "config": 3, - "YAML.load_file": 1, - "config.is_a": 1, - "stdout.puts": 1, - "err": 1, - "stderr.puts": 2, - "err.to_s": 1, - "DEFAULTS.deep_merge": 1, - ".deep_merge": 1, - "load": 3, - "appraise": 2, - "ActiveSupport": 1, - "Inflector": 1, - "pluralize": 3, - "word": 10, - "apply_inflections": 3, - "inflections.plurals": 1, - "singularize": 2, - "inflections.singulars": 1, - "camelize": 2, - "term": 1, - "uppercase_first_letter": 2, - "string": 4, - "term.to_s": 1, - "string.sub": 2, - "z": 7, - "d": 6, - "*/": 1, - "inflections.acronyms": 1, - ".capitalize": 1, - "inflections.acronym_regex": 2, - "b": 4, - "A": 5, - "Z_": 1, - "string.gsub": 1, - "_": 2, - "/i": 2, - "underscore": 3, - "camel_cased_word": 6, - "camel_cased_word.to_s.dup": 1, - "word.gsub": 4, - "Za": 1, - "Z": 3, - "word.tr": 1, - "word.downcase": 1, - "humanize": 2, - "lower_case_and_underscored_word": 1, - "lower_case_and_underscored_word.to_s.dup": 1, - "inflections.humans.each": 1, - "rule": 4, - "replacement": 4, - "break": 4, - "result.sub": 2, - "result.gsub": 2, - "/_id": 1, - "result.tr": 1, - "w/": 1, - ".upcase": 1, - "titleize": 1, - "": 1, - "capitalize": 1, - "Create": 1, - "of": 1, - "table": 2, - "like": 1, - "Rails": 1, - "does": 1, - "for": 1, - "models": 1, - "to": 1, - "This": 1, - "uses": 1, - "on": 2, - "RawScaledScorer": 1, - "tableize": 2, - "class_name": 2, - "classify": 1, - "table_name": 1, - "table_name.to_s.sub": 1, - "/.*": 1, - "./": 1, - "dasherize": 1, - "underscored_word": 1, - "underscored_word.tr": 1, - "demodulize": 1, - "i": 2, - "path.rindex": 2, - "..": 1, - "deconstantize": 1, - "implementation": 1, - "based": 1, - "one": 1, - "facets": 1, - "id": 1, - "outside": 2, - "inside": 2, - "owned": 1, - "constant": 4, - "constant.ancestors.inject": 1, - "const": 3, - "ancestor": 3, - "Object": 1, - "ancestor.const_defined": 1, - "constant.const_get": 1, - "safe_constantize": 1, - "constantize": 1, - "e.message": 2, - "uninitialized": 1, - "wrong": 1, - "const_regexp": 3, - "e.name.to_s": 1, - "camel_cased_word.to_s": 1, - "ArgumentError": 1, - "/not": 1, - "missing": 1, - "ordinal": 1, - "number": 2, - ".include": 1, - "number.to_i.abs": 2, - "ordinalize": 1, - "parts": 1, - "camel_cased_word.split": 1, - "parts.pop": 1, - "parts.reverse.inject": 1, - "acc": 2, - "part": 1, - "part.empty": 1, - "rules": 1, - "word.to_s.dup": 1, - "word.empty": 1, - "inflections.uncountables.include": 1, - "result.downcase": 1, - "Z/": 1, - "rules.each": 1, - "object": 2, - "@user": 1, - "person": 1, - "attributes": 2, - "username": 1, - "email": 1, - "location": 1, - "created_at": 1, - "registered_at": 1, - "node": 2, - "role": 1, - "user": 1, - "user.is_admin": 1, - "child": 1, - "phone_numbers": 1, - "pnumbers": 1, - "extends": 1, - "node_numbers": 1, - "u": 1, - "partial": 1, - "u.phone_numbers": 1 - }, - "C": { - "#include": 154, - "int": 446, - "save_commit_buffer": 3, - ";": 5465, - "const": 358, - "char": 530, - "*commit_type": 2, - "static": 455, - "struct": 360, - "commit": 59, - "*check_commit": 1, - "(": 6243, - "object": 41, - "*obj": 9, - "unsigned": 140, - "*sha1": 16, - "quiet": 5, - ")": 6245, - "{": 1531, - "if": 1015, - "obj": 48, - "-": 1803, - "type": 36, - "OBJ_COMMIT": 5, - "error": 96, - "sha1_to_hex": 8, - "sha1": 20, - "typename": 2, - "return": 529, - "NULL": 330, - "}": 1547, - "*": 261, - "*lookup_commit_reference_gently": 2, - "deref_tag": 1, - "parse_object": 1, - "check_commit": 2, - "*lookup_commit_reference": 2, - "lookup_commit_reference_gently": 1, - "*lookup_commit_or_die": 2, - "*ref_name": 2, - "*c": 69, - "lookup_commit_reference": 2, - "c": 252, - "die": 5, - "_": 3, - "ref_name": 2, - "hashcmp": 2, - "object.sha1": 8, - "warning": 1, - "*lookup_commit": 2, - "lookup_object": 2, - "create_object": 2, - "alloc_commit_node": 1, - "*lookup_commit_reference_by_name": 2, - "*name": 12, - "[": 601, - "]": 601, - "*commit": 10, - "get_sha1": 1, - "name": 28, - "||": 141, - "parse_commit": 3, - "long": 105, - "parse_commit_date": 2, - "*buf": 10, - "*tail": 2, - "*dateptr": 1, - "buf": 57, - "+": 551, - "tail": 12, - "memcmp": 6, - "while": 70, - "<": 219, - "&&": 248, - "dateptr": 2, - "strtoul": 2, - "commit_graft": 13, - "**commit_graft": 1, - "commit_graft_alloc": 4, - "commit_graft_nr": 5, - "commit_graft_pos": 2, - "lo": 6, - "hi": 5, - "mi": 5, - "/": 9, - "*graft": 3, - "cmp": 9, - "graft": 10, - "else": 190, - "register_commit_graft": 2, - "ignore_dups": 2, - "pos": 7, - "free": 62, - "alloc_nr": 1, - "xrealloc": 2, - "sizeof": 71, - "parse_commit_buffer": 3, - "*item": 10, - "void": 288, - "*buffer": 6, - "size": 120, - "buffer": 10, - "*bufptr": 1, - "parent": 7, - "commit_list": 35, - "**pptr": 1, - "item": 24, - "object.parsed": 4, - "<=>": 16, - "bufptr": 12, - "46": 1, - "tree": 3, - "5": 1, - "45": 1, - "n": 70, - "bogus": 1, - "s": 154, - "get_sha1_hex": 2, - "lookup_tree": 1, - "pptr": 5, - "&": 442, - "parents": 4, - "lookup_commit_graft": 1, - "*new_parent": 2, - "48": 1, - "7": 1, - "47": 1, - "bad": 1, - "in": 11, - "nr_parent": 3, - "grafts_replace_parents": 1, - "continue": 20, - "new_parent": 6, - "lookup_commit": 2, - "commit_list_insert": 2, - "next": 8, - "i": 410, - "for": 88, - "date": 5, - "enum": 30, - "object_type": 1, - "ret": 142, - "read_sha1_file": 1, - "find_commit_subject": 2, - "*commit_buffer": 2, - "**subject": 2, - "*eol": 1, - "*p": 9, - "commit_buffer": 1, - "a": 80, - "b_date": 3, - "b": 66, - "a_date": 2, - "*commit_list_get_next": 1, - "*a": 9, - "commit_list_set_next": 1, - "*next": 6, - "commit_list_sort_by_date": 2, - "**list": 5, - "*list": 2, - "llist_mergesort": 1, - "peel_to_type": 1, - "util": 3, - "merge_remote_desc": 3, - "*desc": 1, - "desc": 5, - "xmalloc": 2, - "strdup": 1, - "**commit_list_append": 2, - "**next": 2, - "*new": 1, - "new": 4, - "": 1, - "": 2, - "": 8, - "": 4, - "": 2, - "//": 262, - "rfUTF8_IsContinuationbyte": 1, - "": 3, - "malloc": 3, - "": 5, - "memcpy": 35, - "e.t.c.": 1, - "int32_t": 112, - "rfFReadLine_UTF8": 5, - "FILE*": 64, - "f": 184, - "char**": 7, - "utf8": 36, - "uint32_t*": 34, - "byteLength": 197, - "bufferSize": 6, - "char*": 167, - "eof": 53, - "bytesN": 98, - "uint32_t": 144, - "bIndex": 5, - "#ifdef": 66, - "RF_NEWLINE_CRLF": 1, - "newLineFound": 1, - "false": 77, - "#endif": 243, - "*bufferSize": 1, - "RF_OPTION_FGETS_READBYTESN": 5, - "RF_MALLOC": 47, - "tempBuff": 6, - "uint16_t": 12, - "RF_LF": 10, - "break": 244, - "buff": 95, - "RF_SUCCESS": 14, - "RE_FILE_EOF": 22, - "EOF": 26, - "found": 20, - "*eofReached": 14, - "true": 73, - "LOG_ERROR": 64, - "num": 24, - "RF_HEXEQ_UI": 7, - "rfFgetc_UTF32BE": 3, - "else//": 14, - "undo": 5, - "the": 91, - "peek": 5, - "ahead": 5, - "of": 44, - "file": 6, - "pointer": 5, - "fseek": 19, - "SEEK_CUR": 19, - "rfFgets_UTF32LE": 2, - "eofReached": 4, - "do": 21, - "rfFgetc_UTF32LE": 4, - "rfFgets_UTF16BE": 2, - "rfFgetc_UTF16BE": 4, - "rfFgets_UTF16LE": 2, - "rfFgetc_UTF16LE": 4, - "rfFgets_UTF8": 2, - "rfFgetc_UTF8": 3, - "RF_HEXEQ_C": 9, - "fgetc": 9, - "check": 8, - "ferror": 2, - "RE_FILE_READ": 2, - "*ret": 20, - "cp": 12, - "c2": 13, - "c3": 9, - "c4": 5, - "i_READ_CHECK": 20, - "///": 4, - "success": 4, - "cc": 24, - "we": 10, - "need": 5, - "more": 2, - "bytes": 225, - "xC0": 3, - "xC1": 1, - "RE_UTF8_INVALID_SEQUENCE_INVALID_BYTE": 6, - "RE_UTF8_INVALID_SEQUENCE_END": 6, - "rfUTF8_IsContinuationByte": 12, - "RE_UTF8_INVALID_SEQUENCE_CONBYTE": 6, - "decoded": 3, - "codepoint": 47, - "F": 38, - "|": 132, - "<<": 56, - "end": 48, - "case": 273, - "xE0": 2, - "xF": 5, - "to": 37, - "decode": 6, - "xF0": 2, - "RF_HEXGE_C": 1, - "xBF": 2, - "//invalid": 1, - "byte": 6, - "value": 9, - "are": 6, - "from": 16, - "xFF": 1, - "//if": 1, - "needing": 1, - "than": 5, - "swapE": 21, - "v1": 38, - "v2": 26, - "rfUTILS_Endianess": 24, - "RF_LITTLE_ENDIAN": 23, - "fread": 12, - "swap": 9, - "endianess": 40, - "needed": 10, - "rfUTILS_SwapEndianUS": 10, - "RF_HEXGE_US": 4, - "xD800": 8, - "RF_HEXLE_US": 4, - "xDFFF": 8, - "RF_HEXL_US": 8, - "RF_HEXG_US": 8, - "xDBFF": 4, - "RE_UTF16_INVALID_SEQUENCE": 20, - "RE_UTF16_NO_SURRPAIR": 2, - "xDC00": 4, - "user": 2, - "wants": 2, - "ff": 10, - "uint16_t*": 11, - "surrogate": 4, - "pair": 4, - "existence": 2, - "RF_BIG_ENDIAN": 10, - "rfUTILS_SwapEndianUI": 11, - "rfFback_UTF32BE": 2, - "i_FSEEK_CHECK": 14, - "rfFback_UTF32LE": 2, - "rfFback_UTF16BE": 2, - "rfFback_UTF16LE": 2, - "rfFback_UTF8": 2, - "switch": 46, - "depending": 1, - "on": 4, - "number": 19, - "read": 1, - "backwards": 1, - "default": 33, - "RE_UTF8_INVALID_SEQUENCE": 2, - "git_usage_string": 2, - "git_more_info_string": 2, - "N_": 1, - "startup_info": 3, - "git_startup_info": 2, - "use_pager": 8, - "pager_config": 3, - "*cmd": 5, - "want": 3, - "*value": 5, - "pager_command_config": 2, - "*var": 4, - "*data": 12, - "data": 69, - "prefixcmp": 3, - "var": 7, - "strcmp": 20, - "cmd": 46, - "git_config_maybe_bool": 1, - "xstrdup": 2, - "check_pager_config": 3, - "c.cmd": 1, - "c.want": 2, - "c.value": 3, - "git_config": 3, - "pager_program": 1, - "commit_pager_choice": 4, - "setenv": 1, - "setup_pager": 1, - "handle_options": 2, - "***argv": 2, - "*argc": 1, - "*envchanged": 1, - "**orig_argv": 1, - "*argv": 6, - "new_argv": 7, - "option_count": 1, - "count": 17, - "alias_command": 4, - "trace_argv_printf": 3, - "*argcp": 4, - "subdir": 3, - "chdir": 2, - "die_errno": 3, - "errno": 20, - "saved_errno": 1, - "git_version_string": 1, - "GIT_VERSION": 1, - "#define": 920, - "RUN_SETUP": 81, - "RUN_SETUP_GENTLY": 16, - "USE_PAGER": 3, - "NEED_WORK_TREE": 18, - "cmd_struct": 4, - "option": 9, - "run_builtin": 2, - "argc": 26, - "**argv": 6, - "status": 57, - "help": 4, - "stat": 3, - "st": 2, - "*prefix": 7, - "prefix": 34, - "argv": 54, - "p": 60, - "setup_git_directory": 1, - "nongit_ok": 2, - "setup_git_directory_gently": 1, - "have_repository": 1, - "trace_repo_setup": 1, - "setup_work_tree": 1, - "fn": 5, - "fstat": 1, - "fileno": 1, - "stdout": 5, - "S_ISFIFO": 1, - "st.st_mode": 2, - "S_ISSOCK": 1, - "fflush": 2, - "fclose": 5, - "handle_internal_command": 3, - "commands": 3, - "cmd_add": 2, - "cmd_annotate": 1, - "cmd_apply": 1, - "cmd_archive": 1, - "cmd_bisect__helper": 1, - "cmd_blame": 2, - "cmd_branch": 1, - "cmd_bundle": 1, - "cmd_cat_file": 1, - "cmd_check_attr": 1, - "cmd_check_ref_format": 1, - "cmd_checkout": 1, - "cmd_checkout_index": 1, - "cmd_cherry": 1, - "cmd_cherry_pick": 1, - "cmd_clean": 1, - "cmd_clone": 1, - "cmd_column": 1, - "cmd_commit": 1, - "cmd_commit_tree": 1, - "cmd_config": 1, - "cmd_count_objects": 1, - "cmd_describe": 1, - "cmd_diff": 1, - "cmd_diff_files": 1, - "cmd_diff_index": 1, - "cmd_diff_tree": 1, - "cmd_fast_export": 1, - "cmd_fetch": 1, - "cmd_fetch_pack": 1, - "cmd_fmt_merge_msg": 1, - "cmd_for_each_ref": 1, - "cmd_format_patch": 1, - "cmd_fsck": 2, - "cmd_gc": 1, - "cmd_get_tar_commit_id": 1, - "cmd_grep": 1, - "cmd_hash_object": 1, - "cmd_help": 1, - "cmd_index_pack": 1, - "cmd_init_db": 2, - "cmd_log": 1, - "cmd_ls_files": 1, - "cmd_ls_remote": 2, - "cmd_ls_tree": 1, - "cmd_mailinfo": 1, - "cmd_mailsplit": 1, - "cmd_merge": 1, - "cmd_merge_base": 1, - "cmd_merge_file": 1, - "cmd_merge_index": 1, - "cmd_merge_ours": 1, - "cmd_merge_recursive": 4, - "cmd_merge_tree": 1, - "cmd_mktag": 1, - "cmd_mktree": 1, - "cmd_mv": 1, - "cmd_name_rev": 1, - "cmd_notes": 1, - "cmd_pack_objects": 1, - "cmd_pack_redundant": 1, - "cmd_pack_refs": 1, - "cmd_patch_id": 1, - "cmd_prune": 1, - "cmd_prune_packed": 1, - "cmd_push": 1, - "cmd_read_tree": 1, - "cmd_receive_pack": 1, - "cmd_reflog": 1, - "cmd_remote": 1, - "cmd_remote_ext": 1, - "cmd_remote_fd": 1, - "cmd_replace": 1, - "cmd_repo_config": 1, - "cmd_rerere": 1, - "cmd_reset": 1, - "cmd_rev_list": 1, - "cmd_rev_parse": 1, - "cmd_revert": 1, - "cmd_rm": 1, - "cmd_send_pack": 1, - "cmd_shortlog": 1, - "cmd_show": 1, - "cmd_show_branch": 1, - "cmd_show_ref": 1, - "cmd_status": 1, - "cmd_stripspace": 1, - "cmd_symbolic_ref": 1, - "cmd_tag": 1, - "cmd_tar_tree": 1, - "cmd_unpack_file": 1, - "cmd_unpack_objects": 1, - "cmd_update_index": 1, - "cmd_update_ref": 1, - "cmd_update_server_info": 1, - "cmd_upload_archive": 1, - "cmd_upload_archive_writer": 1, - "cmd_var": 1, - "cmd_verify_pack": 1, - "cmd_verify_tag": 1, - "cmd_version": 1, - "cmd_whatchanged": 1, - "cmd_write_tree": 1, - "ext": 4, - "STRIP_EXTENSION": 1, - "strlen": 17, - "*argv0": 1, - "argv0": 2, - "ARRAY_SIZE": 1, - "exit": 20, - "execv_dashed_external": 2, - "strbuf": 12, - "STRBUF_INIT": 1, - "*tmp": 1, - "strbuf_addf": 1, - "tmp": 6, - "cmd.buf": 1, - "run_command_v_opt": 1, - "RUN_SILENT_EXEC_FAILURE": 1, - "RUN_CLEAN_ON_EXIT": 1, - "ENOENT": 3, - "strbuf_release": 1, - "run_argv": 2, - "done_alias": 4, - "argcp": 2, - "handle_alias": 1, - "main": 3, - "git_extract_argv0_path": 1, - "git_setup_gettext": 1, - "printf": 4, - "list_common_cmds_help": 1, - "setup_path": 1, - "done_help": 3, - "was_alias": 3, - "fprintf": 18, - "stderr": 15, - "help_unknown_cmd": 1, - "strerror": 4, - "": 5, - "": 2, - "": 1, - "": 1, - "": 2, - "__APPLE__": 2, - "#if": 92, - "defined": 42, - "TARGET_OS_IPHONE": 1, - "#else": 94, - "extern": 38, - "**environ": 1, - "uv__chld": 2, - "EV_P_": 1, - "ev_child*": 1, - "watcher": 4, - "revents": 2, - "rstatus": 1, - "exit_status": 3, - "term_signal": 3, - "uv_process_t": 1, - "*process": 1, - "assert": 41, - "process": 19, - "child_watcher": 5, - "EV_CHILD": 1, - "ev_child_stop": 2, - "EV_A_": 1, - "WIFEXITED": 1, - "WEXITSTATUS": 2, - "WIFSIGNALED": 2, - "WTERMSIG": 2, - "exit_cb": 3, - "uv__make_socketpair": 2, - "fds": 20, - "flags": 89, - "SOCK_NONBLOCK": 2, - "fl": 8, - "SOCK_CLOEXEC": 1, - "UV__F_NONBLOCK": 5, - "socketpair": 2, - "AF_UNIX": 2, - "SOCK_STREAM": 2, - "EINVAL": 6, - "uv__cloexec": 4, - "uv__nonblock": 5, - "uv__make_pipe": 2, - "__linux__": 3, - "UV__O_CLOEXEC": 1, - "UV__O_NONBLOCK": 1, - "uv__pipe2": 1, - "ENOSYS": 1, - "pipe": 1, - "uv__process_init_stdio": 2, - "uv_stdio_container_t*": 4, - "container": 17, - "writable": 8, - "fd": 34, - "UV_IGNORE": 2, - "UV_CREATE_PIPE": 4, - "UV_INHERIT_FD": 3, - "UV_INHERIT_STREAM": 2, - "data.stream": 7, - "UV_NAMED_PIPE": 2, - "data.fd": 1, - "uv__process_stdio_flags": 2, - "uv_pipe_t*": 1, - "ipc": 1, - "UV_STREAM_READABLE": 2, - "UV_STREAM_WRITABLE": 2, - "uv__process_open_stream": 2, - "child_fd": 3, - "close": 13, - "uv__stream_open": 1, - "uv_stream_t*": 2, - "uv__process_close_stream": 2, - "uv__stream_close": 1, - "uv__process_child_init": 2, - "uv_process_options_t": 2, - "options": 62, - "stdio_count": 7, - "int*": 22, - "pipes": 23, - "options.flags": 4, - "UV_PROCESS_DETACHED": 2, - "setsid": 2, - "close_fd": 2, - "use_fd": 7, - "open": 4, - "O_RDONLY": 1, - "O_RDWR": 2, - "perror": 5, - "_exit": 6, - "dup2": 4, - "options.cwd": 2, - "UV_PROCESS_SETGID": 2, - "setgid": 1, - "options.gid": 1, - "UV_PROCESS_SETUID": 2, - "setuid": 1, - "options.uid": 1, - "environ": 4, - "options.env": 1, - "execvp": 1, - "options.file": 2, - "options.args": 1, - "#ifndef": 89, - "SPAWN_WAIT_EXEC": 5, - "uv_spawn": 1, - "uv_loop_t*": 1, - "loop": 9, - "uv_process_t*": 3, - "save_our_env": 3, - "options.stdio_count": 4, - "signal_pipe": 7, - "pollfd": 1, - "pfd": 2, - "pid_t": 2, - "pid": 13, - "ENOMEM": 4, - "goto": 159, - "UV_PROCESS_WINDOWS_VERBATIM_ARGUMENTS": 1, - "uv__handle_init": 1, - "uv_handle_t*": 1, - "UV_PROCESS": 1, - "counters.process_init": 1, - "uv__handle_start": 1, - "options.exit_cb": 1, - "options.stdio": 3, - "fork": 2, - "pfd.fd": 1, - "pfd.events": 1, - "POLLIN": 1, - "POLLHUP": 1, - "pfd.revents": 1, - "poll": 1, - "EINTR": 1, - "ev_child_init": 1, - "ev_child_start": 1, - "ev": 2, - "child_watcher.data": 1, - "j": 206, - "uv__set_sys_error": 2, - "uv_process_kill": 1, - "signum": 4, - "r": 58, - "kill": 4, - "uv_err_t": 1, - "uv_kill": 1, - "uv__new_sys_error": 1, - "uv_ok_": 1, - "uv__process_close": 1, - "handle": 10, - "uv__handle_stop": 1, - "*blob_type": 2, - "blob": 6, - "*lookup_blob": 2, - "OBJ_BLOB": 3, - "alloc_blob_node": 1, - "parse_blob_buffer": 2, - "": 3, - "_WIN32": 3, - "strncasecmp": 2, - "_strnicmp": 1, - "REF_TABLE_SIZE": 1, - "BUFFER_BLOCK": 5, - "BUFFER_SPAN": 9, - "MKD_LI_END": 1, - "gperf_case_strncmp": 1, - "s1": 6, - "s2": 6, - "GPERF_DOWNCASE": 1, - "GPERF_CASE_STRNCMP": 1, - "link_ref": 2, - "id": 13, - "*link": 1, - "*title": 1, - "sd_markdown": 6, - "typedef": 191, - "size_t": 52, - "tag": 1, - "tag_len": 3, - "w": 6, - "is_empty": 4, - "htmlblock_end": 3, - "*curtag": 2, - "*rndr": 4, - "uint8_t": 6, - "start_of_line": 2, - "tag_size": 3, - "curtag": 8, - "end_tag": 4, - "block_lines": 3, - "htmlblock_end_tag": 1, - "rndr": 25, - "parse_htmlblock": 1, - "*ob": 3, - "do_render": 4, - "tag_end": 7, - "work": 4, - "find_block_tag": 1, - "work.size": 5, - "cb.blockhtml": 6, - "ob": 14, - "opaque": 8, - "parse_table_row": 1, - "columns": 3, - "*col_data": 1, - "header_flag": 3, - "col": 9, - "*row_work": 1, - "cb.table_cell": 3, - "cb.table_row": 2, - "row_work": 4, - "rndr_newbuf": 2, - "cell_start": 5, - "cell_end": 6, - "*cell_work": 1, - "cell_work": 3, - "_isspace": 3, - "parse_inline": 1, - "col_data": 2, - "rndr_popbuf": 2, - "empty_cell": 2, - "parse_table_header": 1, - "*columns": 2, - "**column_data": 1, - "header_end": 7, - "under_end": 1, - "*column_data": 1, - "calloc": 1, - "beg": 10, - "doc_size": 6, - "document": 9, - "UTF8_BOM": 1, - "is_ref": 1, - "md": 18, - "refs": 2, - "expand_tabs": 1, - "text": 22, - "bufputc": 2, - "bufgrow": 1, - "MARKDOWN_GROW": 1, - "cb.doc_header": 2, - "parse_block": 1, - "cb.doc_footer": 2, - "bufrelease": 3, - "free_link_refs": 1, - "work_bufs": 8, - ".size": 2, - "sd_markdown_free": 1, - "*md": 1, - ".asize": 2, - ".item": 2, - "stack_free": 2, - "sd_version": 1, - "*ver_major": 2, - "*ver_minor": 2, - "*ver_revision": 2, - "SUNDOWN_VER_MAJOR": 1, - "SUNDOWN_VER_MINOR": 1, - "SUNDOWN_VER_REVISION": 1, - "__wglew_h__": 2, - "__WGLEW_H__": 1, - "__wglext_h_": 2, - "#error": 4, - "wglext.h": 1, - "included": 2, - "before": 4, - "wglew.h": 1, - "WINAPI": 119, - "": 1, - "GLEW_STATIC": 1, - "__cplusplus": 20, - "WGL_3DFX_multisample": 2, - "WGL_SAMPLE_BUFFERS_3DFX": 1, - "WGL_SAMPLES_3DFX": 1, - "WGLEW_3DFX_multisample": 1, - "WGLEW_GET_VAR": 49, - "__WGLEW_3DFX_multisample": 2, - "WGL_3DL_stereo_control": 2, - "WGL_STEREO_EMITTER_ENABLE_3DL": 1, - "WGL_STEREO_EMITTER_DISABLE_3DL": 1, - "WGL_STEREO_POLARITY_NORMAL_3DL": 1, - "WGL_STEREO_POLARITY_INVERT_3DL": 1, - "BOOL": 84, - "PFNWGLSETSTEREOEMITTERSTATE3DLPROC": 2, - "HDC": 65, - "hDC": 33, - "UINT": 30, - "uState": 1, - "wglSetStereoEmitterState3DL": 1, - "WGLEW_GET_FUN": 120, - "__wglewSetStereoEmitterState3DL": 2, - "WGLEW_3DL_stereo_control": 1, - "__WGLEW_3DL_stereo_control": 2, - "WGL_AMD_gpu_association": 2, - "WGL_GPU_VENDOR_AMD": 1, - "F00": 1, - "WGL_GPU_RENDERER_STRING_AMD": 1, - "F01": 1, - "WGL_GPU_OPENGL_VERSION_STRING_AMD": 1, - "F02": 1, - "WGL_GPU_FASTEST_TARGET_GPUS_AMD": 1, - "A2": 2, - "WGL_GPU_RAM_AMD": 1, - "A3": 2, - "WGL_GPU_CLOCK_AMD": 1, - "A4": 2, - "WGL_GPU_NUM_PIPES_AMD": 1, - "A5": 3, - "WGL_GPU_NUM_SIMD_AMD": 1, - "A6": 2, - "WGL_GPU_NUM_RB_AMD": 1, - "A7": 2, - "WGL_GPU_NUM_SPI_AMD": 1, - "A8": 2, - "VOID": 6, - "PFNWGLBLITCONTEXTFRAMEBUFFERAMDPROC": 2, - "HGLRC": 14, - "dstCtx": 1, - "GLint": 18, - "srcX0": 1, - "srcY0": 1, - "srcX1": 1, - "srcY1": 1, - "dstX0": 1, - "dstY0": 1, - "dstX1": 1, - "dstY1": 1, - "GLbitfield": 1, - "mask": 1, - "GLenum": 8, - "filter": 1, - "PFNWGLCREATEASSOCIATEDCONTEXTAMDPROC": 2, - "PFNWGLCREATEASSOCIATEDCONTEXTATTRIBSAMDPROC": 2, - "hShareContext": 2, - "attribList": 2, - "PFNWGLDELETEASSOCIATEDCONTEXTAMDPROC": 2, - "hglrc": 5, - "PFNWGLGETCONTEXTGPUIDAMDPROC": 2, - "PFNWGLGETCURRENTASSOCIATEDCONTEXTAMDPROC": 2, - "PFNWGLGETGPUIDSAMDPROC": 2, - "maxCount": 1, - "UINT*": 6, - "ids": 1, - "INT": 3, - "PFNWGLGETGPUINFOAMDPROC": 2, - "property": 1, - "dataType": 1, - "void*": 135, - "PFNWGLMAKEASSOCIATEDCONTEXTCURRENTAMDPROC": 2, - "wglBlitContextFramebufferAMD": 1, - "__wglewBlitContextFramebufferAMD": 2, - "wglCreateAssociatedContextAMD": 1, - "__wglewCreateAssociatedContextAMD": 2, - "wglCreateAssociatedContextAttribsAMD": 1, - "__wglewCreateAssociatedContextAttribsAMD": 2, - "wglDeleteAssociatedContextAMD": 1, - "__wglewDeleteAssociatedContextAMD": 2, - "wglGetContextGPUIDAMD": 1, - "__wglewGetContextGPUIDAMD": 2, - "wglGetCurrentAssociatedContextAMD": 1, - "__wglewGetCurrentAssociatedContextAMD": 2, - "wglGetGPUIDsAMD": 1, - "__wglewGetGPUIDsAMD": 2, - "wglGetGPUInfoAMD": 1, - "__wglewGetGPUInfoAMD": 2, - "wglMakeAssociatedContextCurrentAMD": 1, - "__wglewMakeAssociatedContextCurrentAMD": 2, - "WGLEW_AMD_gpu_association": 1, - "__WGLEW_AMD_gpu_association": 2, - "WGL_ARB_buffer_region": 2, - "WGL_FRONT_COLOR_BUFFER_BIT_ARB": 1, - "WGL_BACK_COLOR_BUFFER_BIT_ARB": 1, - "WGL_DEPTH_BUFFER_BIT_ARB": 1, - "WGL_STENCIL_BUFFER_BIT_ARB": 1, - "HANDLE": 14, - "PFNWGLCREATEBUFFERREGIONARBPROC": 2, - "iLayerPlane": 5, - "uType": 1, - "PFNWGLDELETEBUFFERREGIONARBPROC": 2, - "hRegion": 3, - "PFNWGLRESTOREBUFFERREGIONARBPROC": 2, - "x": 57, - "y": 14, - "width": 3, - "height": 3, - "xSrc": 1, - "ySrc": 1, - "PFNWGLSAVEBUFFERREGIONARBPROC": 2, - "wglCreateBufferRegionARB": 1, - "__wglewCreateBufferRegionARB": 2, - "wglDeleteBufferRegionARB": 1, - "__wglewDeleteBufferRegionARB": 2, - "wglRestoreBufferRegionARB": 1, - "__wglewRestoreBufferRegionARB": 2, - "wglSaveBufferRegionARB": 1, - "__wglewSaveBufferRegionARB": 2, - "WGLEW_ARB_buffer_region": 1, - "__WGLEW_ARB_buffer_region": 2, - "WGL_ARB_create_context": 2, - "WGL_CONTEXT_DEBUG_BIT_ARB": 1, - "WGL_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB": 1, - "WGL_CONTEXT_MAJOR_VERSION_ARB": 1, - "WGL_CONTEXT_MINOR_VERSION_ARB": 1, - "WGL_CONTEXT_LAYER_PLANE_ARB": 1, - "WGL_CONTEXT_FLAGS_ARB": 1, - "ERROR_INVALID_VERSION_ARB": 1, - "ERROR_INVALID_PROFILE_ARB": 1, - "PFNWGLCREATECONTEXTATTRIBSARBPROC": 2, - "wglCreateContextAttribsARB": 1, - "__wglewCreateContextAttribsARB": 2, - "WGLEW_ARB_create_context": 1, - "__WGLEW_ARB_create_context": 2, - "WGL_ARB_create_context_profile": 2, - "WGL_CONTEXT_CORE_PROFILE_BIT_ARB": 1, - "WGL_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB": 1, - "WGL_CONTEXT_PROFILE_MASK_ARB": 1, - "WGLEW_ARB_create_context_profile": 1, - "__WGLEW_ARB_create_context_profile": 2, - "WGL_ARB_create_context_robustness": 2, - "WGL_CONTEXT_ROBUST_ACCESS_BIT_ARB": 1, - "WGL_LOSE_CONTEXT_ON_RESET_ARB": 1, - "WGL_CONTEXT_RESET_NOTIFICATION_STRATEGY_ARB": 1, - "WGL_NO_RESET_NOTIFICATION_ARB": 1, - "WGLEW_ARB_create_context_robustness": 1, - "__WGLEW_ARB_create_context_robustness": 2, - "WGL_ARB_extensions_string": 2, - "PFNWGLGETEXTENSIONSSTRINGARBPROC": 2, - "hdc": 16, - "wglGetExtensionsStringARB": 1, - "__wglewGetExtensionsStringARB": 2, - "WGLEW_ARB_extensions_string": 1, - "__WGLEW_ARB_extensions_string": 2, - "WGL_ARB_framebuffer_sRGB": 2, - "WGL_FRAMEBUFFER_SRGB_CAPABLE_ARB": 1, - "A9": 2, - "WGLEW_ARB_framebuffer_sRGB": 1, - "__WGLEW_ARB_framebuffer_sRGB": 2, - "WGL_ARB_make_current_read": 2, - "ERROR_INVALID_PIXEL_TYPE_ARB": 1, - "ERROR_INCOMPATIBLE_DEVICE_CONTEXTS_ARB": 1, - "PFNWGLGETCURRENTREADDCARBPROC": 2, - "PFNWGLMAKECONTEXTCURRENTARBPROC": 2, - "hDrawDC": 2, - "hReadDC": 2, - "wglGetCurrentReadDCARB": 1, - "__wglewGetCurrentReadDCARB": 2, - "wglMakeContextCurrentARB": 1, - "__wglewMakeContextCurrentARB": 2, - "WGLEW_ARB_make_current_read": 1, - "__WGLEW_ARB_make_current_read": 2, - "WGL_ARB_multisample": 2, - "WGL_SAMPLE_BUFFERS_ARB": 1, - "WGL_SAMPLES_ARB": 1, - "WGLEW_ARB_multisample": 1, - "__WGLEW_ARB_multisample": 2, - "WGL_ARB_pbuffer": 2, - "WGL_DRAW_TO_PBUFFER_ARB": 1, - "D": 8, - "WGL_MAX_PBUFFER_PIXELS_ARB": 1, - "E": 11, - "WGL_MAX_PBUFFER_WIDTH_ARB": 1, - "WGL_MAX_PBUFFER_HEIGHT_ARB": 1, - "WGL_PBUFFER_LARGEST_ARB": 1, - "WGL_PBUFFER_WIDTH_ARB": 1, - "WGL_PBUFFER_HEIGHT_ARB": 1, - "WGL_PBUFFER_LOST_ARB": 1, - "DECLARE_HANDLE": 6, - "HPBUFFERARB": 12, - "PFNWGLCREATEPBUFFERARBPROC": 2, - "iPixelFormat": 6, - "iWidth": 2, - "iHeight": 2, - "piAttribList": 4, - "PFNWGLDESTROYPBUFFERARBPROC": 2, - "hPbuffer": 14, - "PFNWGLGETPBUFFERDCARBPROC": 2, - "PFNWGLQUERYPBUFFERARBPROC": 2, - "iAttribute": 8, - "piValue": 8, - "PFNWGLRELEASEPBUFFERDCARBPROC": 2, - "wglCreatePbufferARB": 1, - "__wglewCreatePbufferARB": 2, - "wglDestroyPbufferARB": 1, - "__wglewDestroyPbufferARB": 2, - "wglGetPbufferDCARB": 1, - "__wglewGetPbufferDCARB": 2, - "wglQueryPbufferARB": 1, - "__wglewQueryPbufferARB": 2, - "wglReleasePbufferDCARB": 1, - "__wglewReleasePbufferDCARB": 2, - "WGLEW_ARB_pbuffer": 1, - "__WGLEW_ARB_pbuffer": 2, - "WGL_ARB_pixel_format": 2, - "WGL_NUMBER_PIXEL_FORMATS_ARB": 1, - "WGL_DRAW_TO_WINDOW_ARB": 1, - "WGL_DRAW_TO_BITMAP_ARB": 1, - "WGL_ACCELERATION_ARB": 1, - "WGL_NEED_PALETTE_ARB": 1, - "WGL_NEED_SYSTEM_PALETTE_ARB": 1, - "WGL_SWAP_LAYER_BUFFERS_ARB": 1, - "WGL_SWAP_METHOD_ARB": 1, - "WGL_NUMBER_OVERLAYS_ARB": 1, - "WGL_NUMBER_UNDERLAYS_ARB": 1, - "WGL_TRANSPARENT_ARB": 1, - "A": 11, - "WGL_SHARE_DEPTH_ARB": 1, - "C": 14, - "WGL_SHARE_STENCIL_ARB": 1, - "WGL_SHARE_ACCUM_ARB": 1, - "WGL_SUPPORT_GDI_ARB": 1, - "WGL_SUPPORT_OPENGL_ARB": 1, - "WGL_DOUBLE_BUFFER_ARB": 1, - "WGL_STEREO_ARB": 1, - "WGL_PIXEL_TYPE_ARB": 1, - "WGL_COLOR_BITS_ARB": 1, - "WGL_RED_BITS_ARB": 1, - "WGL_RED_SHIFT_ARB": 1, - "WGL_GREEN_BITS_ARB": 1, - "WGL_GREEN_SHIFT_ARB": 1, - "WGL_BLUE_BITS_ARB": 1, - "WGL_BLUE_SHIFT_ARB": 1, - "WGL_ALPHA_BITS_ARB": 1, - "B": 9, - "WGL_ALPHA_SHIFT_ARB": 1, - "WGL_ACCUM_BITS_ARB": 1, - "WGL_ACCUM_RED_BITS_ARB": 1, - "WGL_ACCUM_GREEN_BITS_ARB": 1, - "WGL_ACCUM_BLUE_BITS_ARB": 1, - "WGL_ACCUM_ALPHA_BITS_ARB": 1, - "WGL_DEPTH_BITS_ARB": 1, - "WGL_STENCIL_BITS_ARB": 1, - "WGL_AUX_BUFFERS_ARB": 1, - "WGL_NO_ACCELERATION_ARB": 1, - "WGL_GENERIC_ACCELERATION_ARB": 1, - "WGL_FULL_ACCELERATION_ARB": 1, - "WGL_SWAP_EXCHANGE_ARB": 1, - "WGL_SWAP_COPY_ARB": 1, - "WGL_SWAP_UNDEFINED_ARB": 1, - "WGL_TYPE_RGBA_ARB": 1, - "WGL_TYPE_COLORINDEX_ARB": 1, - "WGL_TRANSPARENT_RED_VALUE_ARB": 1, - "WGL_TRANSPARENT_GREEN_VALUE_ARB": 1, - "WGL_TRANSPARENT_BLUE_VALUE_ARB": 1, - "WGL_TRANSPARENT_ALPHA_VALUE_ARB": 1, - "WGL_TRANSPARENT_INDEX_VALUE_ARB": 1, - "PFNWGLCHOOSEPIXELFORMATARBPROC": 2, - "piAttribIList": 2, - "FLOAT": 4, - "*pfAttribFList": 2, - "nMaxFormats": 2, - "*piFormats": 2, - "*nNumFormats": 2, - "PFNWGLGETPIXELFORMATATTRIBFVARBPROC": 2, - "nAttributes": 4, - "piAttributes": 4, - "*pfValues": 2, - "PFNWGLGETPIXELFORMATATTRIBIVARBPROC": 2, - "*piValues": 2, - "wglChoosePixelFormatARB": 1, - "__wglewChoosePixelFormatARB": 2, - "wglGetPixelFormatAttribfvARB": 1, - "__wglewGetPixelFormatAttribfvARB": 2, - "wglGetPixelFormatAttribivARB": 1, - "__wglewGetPixelFormatAttribivARB": 2, - "WGLEW_ARB_pixel_format": 1, - "__WGLEW_ARB_pixel_format": 2, - "WGL_ARB_pixel_format_float": 2, - "WGL_TYPE_RGBA_FLOAT_ARB": 1, - "A0": 3, - "WGLEW_ARB_pixel_format_float": 1, - "__WGLEW_ARB_pixel_format_float": 2, - "WGL_ARB_render_texture": 2, - "WGL_BIND_TO_TEXTURE_RGB_ARB": 1, - "WGL_BIND_TO_TEXTURE_RGBA_ARB": 1, - "WGL_TEXTURE_FORMAT_ARB": 1, - "WGL_TEXTURE_TARGET_ARB": 1, - "WGL_MIPMAP_TEXTURE_ARB": 1, - "WGL_TEXTURE_RGB_ARB": 1, - "WGL_TEXTURE_RGBA_ARB": 1, - "WGL_NO_TEXTURE_ARB": 2, - "WGL_TEXTURE_CUBE_MAP_ARB": 1, - "WGL_TEXTURE_1D_ARB": 1, - "WGL_TEXTURE_2D_ARB": 1, - "WGL_MIPMAP_LEVEL_ARB": 1, - "WGL_CUBE_MAP_FACE_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB": 1, - "WGL_FRONT_LEFT_ARB": 1, - "WGL_FRONT_RIGHT_ARB": 1, - "WGL_BACK_LEFT_ARB": 1, - "WGL_BACK_RIGHT_ARB": 1, - "WGL_AUX0_ARB": 1, - "WGL_AUX1_ARB": 1, - "WGL_AUX2_ARB": 1, - "WGL_AUX3_ARB": 1, - "WGL_AUX4_ARB": 1, - "WGL_AUX5_ARB": 1, - "WGL_AUX6_ARB": 1, - "WGL_AUX7_ARB": 1, - "WGL_AUX8_ARB": 1, - "WGL_AUX9_ARB": 1, - "PFNWGLBINDTEXIMAGEARBPROC": 2, - "iBuffer": 2, - "PFNWGLRELEASETEXIMAGEARBPROC": 2, - "PFNWGLSETPBUFFERATTRIBARBPROC": 2, - "wglBindTexImageARB": 1, - "__wglewBindTexImageARB": 2, - "wglReleaseTexImageARB": 1, - "__wglewReleaseTexImageARB": 2, - "wglSetPbufferAttribARB": 1, - "__wglewSetPbufferAttribARB": 2, - "WGLEW_ARB_render_texture": 1, - "__WGLEW_ARB_render_texture": 2, - "WGL_ATI_pixel_format_float": 2, - "WGL_TYPE_RGBA_FLOAT_ATI": 1, - "GL_RGBA_FLOAT_MODE_ATI": 1, - "GL_COLOR_CLEAR_UNCLAMPED_VALUE_ATI": 1, - "WGLEW_ATI_pixel_format_float": 1, - "__WGLEW_ATI_pixel_format_float": 2, - "WGL_ATI_render_texture_rectangle": 2, - "WGL_TEXTURE_RECTANGLE_ATI": 1, - "WGLEW_ATI_render_texture_rectangle": 1, - "__WGLEW_ATI_render_texture_rectangle": 2, - "WGL_EXT_create_context_es2_profile": 2, - "WGL_CONTEXT_ES2_PROFILE_BIT_EXT": 1, - "WGLEW_EXT_create_context_es2_profile": 1, - "__WGLEW_EXT_create_context_es2_profile": 2, - "WGL_EXT_depth_float": 2, - "WGL_DEPTH_FLOAT_EXT": 1, - "WGLEW_EXT_depth_float": 1, - "__WGLEW_EXT_depth_float": 2, - "WGL_EXT_display_color_table": 2, - "GLboolean": 53, - "PFNWGLBINDDISPLAYCOLORTABLEEXTPROC": 2, - "GLushort": 3, - "PFNWGLCREATEDISPLAYCOLORTABLEEXTPROC": 2, - "PFNWGLDESTROYDISPLAYCOLORTABLEEXTPROC": 2, - "PFNWGLLOADDISPLAYCOLORTABLEEXTPROC": 2, - "GLushort*": 1, - "table": 1, - "GLuint": 9, - "length": 58, - "wglBindDisplayColorTableEXT": 1, - "__wglewBindDisplayColorTableEXT": 2, - "wglCreateDisplayColorTableEXT": 1, - "__wglewCreateDisplayColorTableEXT": 2, - "wglDestroyDisplayColorTableEXT": 1, - "__wglewDestroyDisplayColorTableEXT": 2, - "wglLoadDisplayColorTableEXT": 1, - "__wglewLoadDisplayColorTableEXT": 2, - "WGLEW_EXT_display_color_table": 1, - "__WGLEW_EXT_display_color_table": 2, - "WGL_EXT_extensions_string": 2, - "PFNWGLGETEXTENSIONSSTRINGEXTPROC": 2, - "wglGetExtensionsStringEXT": 1, - "__wglewGetExtensionsStringEXT": 2, - "WGLEW_EXT_extensions_string": 1, - "__WGLEW_EXT_extensions_string": 2, - "WGL_EXT_framebuffer_sRGB": 2, - "WGL_FRAMEBUFFER_SRGB_CAPABLE_EXT": 1, - "WGLEW_EXT_framebuffer_sRGB": 1, - "__WGLEW_EXT_framebuffer_sRGB": 2, - "WGL_EXT_make_current_read": 2, - "ERROR_INVALID_PIXEL_TYPE_EXT": 1, - "PFNWGLGETCURRENTREADDCEXTPROC": 2, - "PFNWGLMAKECONTEXTCURRENTEXTPROC": 2, - "wglGetCurrentReadDCEXT": 1, - "__wglewGetCurrentReadDCEXT": 2, - "wglMakeContextCurrentEXT": 1, - "__wglewMakeContextCurrentEXT": 2, - "WGLEW_EXT_make_current_read": 1, - "__WGLEW_EXT_make_current_read": 2, - "WGL_EXT_multisample": 2, - "WGL_SAMPLE_BUFFERS_EXT": 1, - "WGL_SAMPLES_EXT": 1, - "WGLEW_EXT_multisample": 1, - "__WGLEW_EXT_multisample": 2, - "WGL_EXT_pbuffer": 2, - "WGL_DRAW_TO_PBUFFER_EXT": 1, - "WGL_MAX_PBUFFER_PIXELS_EXT": 1, - "WGL_MAX_PBUFFER_WIDTH_EXT": 1, - "WGL_MAX_PBUFFER_HEIGHT_EXT": 1, - "WGL_OPTIMAL_PBUFFER_WIDTH_EXT": 1, - "WGL_OPTIMAL_PBUFFER_HEIGHT_EXT": 1, - "WGL_PBUFFER_LARGEST_EXT": 1, - "WGL_PBUFFER_WIDTH_EXT": 1, - "WGL_PBUFFER_HEIGHT_EXT": 1, - "HPBUFFEREXT": 6, - "PFNWGLCREATEPBUFFEREXTPROC": 2, - "PFNWGLDESTROYPBUFFEREXTPROC": 2, - "PFNWGLGETPBUFFERDCEXTPROC": 2, - "PFNWGLQUERYPBUFFEREXTPROC": 2, - "PFNWGLRELEASEPBUFFERDCEXTPROC": 2, - "wglCreatePbufferEXT": 1, - "__wglewCreatePbufferEXT": 2, - "wglDestroyPbufferEXT": 1, - "__wglewDestroyPbufferEXT": 2, - "wglGetPbufferDCEXT": 1, - "__wglewGetPbufferDCEXT": 2, - "wglQueryPbufferEXT": 1, - "__wglewQueryPbufferEXT": 2, - "wglReleasePbufferDCEXT": 1, - "__wglewReleasePbufferDCEXT": 2, - "WGLEW_EXT_pbuffer": 1, - "__WGLEW_EXT_pbuffer": 2, - "WGL_EXT_pixel_format": 2, - "WGL_NUMBER_PIXEL_FORMATS_EXT": 1, - "WGL_DRAW_TO_WINDOW_EXT": 1, - "WGL_DRAW_TO_BITMAP_EXT": 1, - "WGL_ACCELERATION_EXT": 1, - "WGL_NEED_PALETTE_EXT": 1, - "WGL_NEED_SYSTEM_PALETTE_EXT": 1, - "WGL_SWAP_LAYER_BUFFERS_EXT": 1, - "WGL_SWAP_METHOD_EXT": 1, - "WGL_NUMBER_OVERLAYS_EXT": 1, - "WGL_NUMBER_UNDERLAYS_EXT": 1, - "WGL_TRANSPARENT_EXT": 1, - "WGL_TRANSPARENT_VALUE_EXT": 1, - "WGL_SHARE_DEPTH_EXT": 1, - "WGL_SHARE_STENCIL_EXT": 1, - "WGL_SHARE_ACCUM_EXT": 1, - "WGL_SUPPORT_GDI_EXT": 1, - "WGL_SUPPORT_OPENGL_EXT": 1, - "WGL_DOUBLE_BUFFER_EXT": 1, - "WGL_STEREO_EXT": 1, - "WGL_PIXEL_TYPE_EXT": 1, - "WGL_COLOR_BITS_EXT": 1, - "WGL_RED_BITS_EXT": 1, - "WGL_RED_SHIFT_EXT": 1, - "WGL_GREEN_BITS_EXT": 1, - "WGL_GREEN_SHIFT_EXT": 1, - "WGL_BLUE_BITS_EXT": 1, - "WGL_BLUE_SHIFT_EXT": 1, - "WGL_ALPHA_BITS_EXT": 1, - "WGL_ALPHA_SHIFT_EXT": 1, - "WGL_ACCUM_BITS_EXT": 1, - "WGL_ACCUM_RED_BITS_EXT": 1, - "WGL_ACCUM_GREEN_BITS_EXT": 1, - "WGL_ACCUM_BLUE_BITS_EXT": 1, - "WGL_ACCUM_ALPHA_BITS_EXT": 1, - "WGL_DEPTH_BITS_EXT": 1, - "WGL_STENCIL_BITS_EXT": 1, - "WGL_AUX_BUFFERS_EXT": 1, - "WGL_NO_ACCELERATION_EXT": 1, - "WGL_GENERIC_ACCELERATION_EXT": 1, - "WGL_FULL_ACCELERATION_EXT": 1, - "WGL_SWAP_EXCHANGE_EXT": 1, - "WGL_SWAP_COPY_EXT": 1, - "WGL_SWAP_UNDEFINED_EXT": 1, - "WGL_TYPE_RGBA_EXT": 1, - "WGL_TYPE_COLORINDEX_EXT": 1, - "PFNWGLCHOOSEPIXELFORMATEXTPROC": 2, - "PFNWGLGETPIXELFORMATATTRIBFVEXTPROC": 2, - "PFNWGLGETPIXELFORMATATTRIBIVEXTPROC": 2, - "wglChoosePixelFormatEXT": 1, - "__wglewChoosePixelFormatEXT": 2, - "wglGetPixelFormatAttribfvEXT": 1, - "__wglewGetPixelFormatAttribfvEXT": 2, - "wglGetPixelFormatAttribivEXT": 1, - "__wglewGetPixelFormatAttribivEXT": 2, - "WGLEW_EXT_pixel_format": 1, - "__WGLEW_EXT_pixel_format": 2, - "WGL_EXT_pixel_format_packed_float": 2, - "WGL_TYPE_RGBA_UNSIGNED_FLOAT_EXT": 1, - "WGLEW_EXT_pixel_format_packed_float": 1, - "__WGLEW_EXT_pixel_format_packed_float": 2, - "WGL_EXT_swap_control": 2, - "PFNWGLGETSWAPINTERVALEXTPROC": 2, - "PFNWGLSWAPINTERVALEXTPROC": 2, - "interval": 1, - "wglGetSwapIntervalEXT": 1, - "__wglewGetSwapIntervalEXT": 2, - "wglSwapIntervalEXT": 1, - "__wglewSwapIntervalEXT": 2, - "WGLEW_EXT_swap_control": 1, - "__WGLEW_EXT_swap_control": 2, - "WGL_I3D_digital_video_control": 2, - "WGL_DIGITAL_VIDEO_CURSOR_ALPHA_FRAMEBUFFER_I3D": 1, - "WGL_DIGITAL_VIDEO_CURSOR_ALPHA_VALUE_I3D": 1, - "WGL_DIGITAL_VIDEO_CURSOR_INCLUDED_I3D": 1, - "WGL_DIGITAL_VIDEO_GAMMA_CORRECTED_I3D": 1, - "PFNWGLGETDIGITALVIDEOPARAMETERSI3DPROC": 2, - "PFNWGLSETDIGITALVIDEOPARAMETERSI3DPROC": 2, - "wglGetDigitalVideoParametersI3D": 1, - "__wglewGetDigitalVideoParametersI3D": 2, - "wglSetDigitalVideoParametersI3D": 1, - "__wglewSetDigitalVideoParametersI3D": 2, - "WGLEW_I3D_digital_video_control": 1, - "__WGLEW_I3D_digital_video_control": 2, - "WGL_I3D_gamma": 2, - "WGL_GAMMA_TABLE_SIZE_I3D": 1, - "WGL_GAMMA_EXCLUDE_DESKTOP_I3D": 1, - "PFNWGLGETGAMMATABLEI3DPROC": 2, - "iEntries": 2, - "USHORT*": 2, - "puRed": 2, - "USHORT": 4, - "*puGreen": 2, - "*puBlue": 2, - "PFNWGLGETGAMMATABLEPARAMETERSI3DPROC": 2, - "PFNWGLSETGAMMATABLEI3DPROC": 2, - "PFNWGLSETGAMMATABLEPARAMETERSI3DPROC": 2, - "wglGetGammaTableI3D": 1, - "__wglewGetGammaTableI3D": 2, - "wglGetGammaTableParametersI3D": 1, - "__wglewGetGammaTableParametersI3D": 2, - "wglSetGammaTableI3D": 1, - "__wglewSetGammaTableI3D": 2, - "wglSetGammaTableParametersI3D": 1, - "__wglewSetGammaTableParametersI3D": 2, - "WGLEW_I3D_gamma": 1, - "__WGLEW_I3D_gamma": 2, - "WGL_I3D_genlock": 2, - "WGL_GENLOCK_SOURCE_MULTIVIEW_I3D": 1, - "WGL_GENLOCK_SOURCE_EXTERNAL_SYNC_I3D": 1, - "WGL_GENLOCK_SOURCE_EXTERNAL_FIELD_I3D": 1, - "WGL_GENLOCK_SOURCE_EXTERNAL_TTL_I3D": 1, - "WGL_GENLOCK_SOURCE_DIGITAL_SYNC_I3D": 1, - "WGL_GENLOCK_SOURCE_DIGITAL_FIELD_I3D": 1, - "WGL_GENLOCK_SOURCE_EDGE_FALLING_I3D": 1, - "WGL_GENLOCK_SOURCE_EDGE_RISING_I3D": 1, - "WGL_GENLOCK_SOURCE_EDGE_BOTH_I3D": 1, - "PFNWGLDISABLEGENLOCKI3DPROC": 2, - "PFNWGLENABLEGENLOCKI3DPROC": 2, - "PFNWGLGENLOCKSAMPLERATEI3DPROC": 2, - "uRate": 2, - "PFNWGLGENLOCKSOURCEDELAYI3DPROC": 2, - "uDelay": 2, - "PFNWGLGENLOCKSOURCEEDGEI3DPROC": 2, - "uEdge": 2, - "PFNWGLGENLOCKSOURCEI3DPROC": 2, - "uSource": 2, - "PFNWGLGETGENLOCKSAMPLERATEI3DPROC": 2, - "PFNWGLGETGENLOCKSOURCEDELAYI3DPROC": 2, - "PFNWGLGETGENLOCKSOURCEEDGEI3DPROC": 2, - "PFNWGLGETGENLOCKSOURCEI3DPROC": 2, - "PFNWGLISENABLEDGENLOCKI3DPROC": 2, - "BOOL*": 3, - "pFlag": 3, - "PFNWGLQUERYGENLOCKMAXSOURCEDELAYI3DPROC": 2, - "uMaxLineDelay": 1, - "*uMaxPixelDelay": 1, - "wglDisableGenlockI3D": 1, - "__wglewDisableGenlockI3D": 2, - "wglEnableGenlockI3D": 1, - "__wglewEnableGenlockI3D": 2, - "wglGenlockSampleRateI3D": 1, - "__wglewGenlockSampleRateI3D": 2, - "wglGenlockSourceDelayI3D": 1, - "__wglewGenlockSourceDelayI3D": 2, - "wglGenlockSourceEdgeI3D": 1, - "__wglewGenlockSourceEdgeI3D": 2, - "wglGenlockSourceI3D": 1, - "__wglewGenlockSourceI3D": 2, - "wglGetGenlockSampleRateI3D": 1, - "__wglewGetGenlockSampleRateI3D": 2, - "wglGetGenlockSourceDelayI3D": 1, - "__wglewGetGenlockSourceDelayI3D": 2, - "wglGetGenlockSourceEdgeI3D": 1, - "__wglewGetGenlockSourceEdgeI3D": 2, - "wglGetGenlockSourceI3D": 1, - "__wglewGetGenlockSourceI3D": 2, - "wglIsEnabledGenlockI3D": 1, - "__wglewIsEnabledGenlockI3D": 2, - "wglQueryGenlockMaxSourceDelayI3D": 1, - "__wglewQueryGenlockMaxSourceDelayI3D": 2, - "WGLEW_I3D_genlock": 1, - "__WGLEW_I3D_genlock": 2, - "WGL_I3D_image_buffer": 2, - "WGL_IMAGE_BUFFER_MIN_ACCESS_I3D": 1, - "WGL_IMAGE_BUFFER_LOCK_I3D": 1, - "PFNWGLASSOCIATEIMAGEBUFFEREVENTSI3DPROC": 2, - "HANDLE*": 3, - "pEvent": 1, - "LPVOID": 3, - "*pAddress": 1, - "DWORD": 5, - "*pSize": 1, - "PFNWGLCREATEIMAGEBUFFERI3DPROC": 2, - "dwSize": 1, - "uFlags": 1, - "PFNWGLDESTROYIMAGEBUFFERI3DPROC": 2, - "pAddress": 2, - "PFNWGLRELEASEIMAGEBUFFEREVENTSI3DPROC": 2, - "LPVOID*": 1, - "wglAssociateImageBufferEventsI3D": 1, - "__wglewAssociateImageBufferEventsI3D": 2, - "wglCreateImageBufferI3D": 1, - "__wglewCreateImageBufferI3D": 2, - "wglDestroyImageBufferI3D": 1, - "__wglewDestroyImageBufferI3D": 2, - "wglReleaseImageBufferEventsI3D": 1, - "__wglewReleaseImageBufferEventsI3D": 2, - "WGLEW_I3D_image_buffer": 1, - "__WGLEW_I3D_image_buffer": 2, - "WGL_I3D_swap_frame_lock": 2, - "PFNWGLDISABLEFRAMELOCKI3DPROC": 2, - "PFNWGLENABLEFRAMELOCKI3DPROC": 2, - "PFNWGLISENABLEDFRAMELOCKI3DPROC": 2, - "PFNWGLQUERYFRAMELOCKMASTERI3DPROC": 2, - "wglDisableFrameLockI3D": 1, - "__wglewDisableFrameLockI3D": 2, - "wglEnableFrameLockI3D": 1, - "__wglewEnableFrameLockI3D": 2, - "wglIsEnabledFrameLockI3D": 1, - "__wglewIsEnabledFrameLockI3D": 2, - "wglQueryFrameLockMasterI3D": 1, - "__wglewQueryFrameLockMasterI3D": 2, - "WGLEW_I3D_swap_frame_lock": 1, - "__WGLEW_I3D_swap_frame_lock": 2, - "WGL_I3D_swap_frame_usage": 2, - "PFNWGLBEGINFRAMETRACKINGI3DPROC": 2, - "PFNWGLENDFRAMETRACKINGI3DPROC": 2, - "PFNWGLGETFRAMEUSAGEI3DPROC": 2, - "float*": 1, - "pUsage": 1, - "PFNWGLQUERYFRAMETRACKINGI3DPROC": 2, - "DWORD*": 1, - "pFrameCount": 1, - "*pMissedFrames": 1, - "float": 26, - "*pLastMissedUsage": 1, - "wglBeginFrameTrackingI3D": 1, - "__wglewBeginFrameTrackingI3D": 2, - "wglEndFrameTrackingI3D": 1, - "__wglewEndFrameTrackingI3D": 2, - "wglGetFrameUsageI3D": 1, - "__wglewGetFrameUsageI3D": 2, - "wglQueryFrameTrackingI3D": 1, - "__wglewQueryFrameTrackingI3D": 2, - "WGLEW_I3D_swap_frame_usage": 1, - "__WGLEW_I3D_swap_frame_usage": 2, - "WGL_NV_DX_interop": 2, - "WGL_ACCESS_READ_ONLY_NV": 1, - "WGL_ACCESS_READ_WRITE_NV": 1, - "WGL_ACCESS_WRITE_DISCARD_NV": 1, - "PFNWGLDXCLOSEDEVICENVPROC": 2, - "hDevice": 9, - "PFNWGLDXLOCKOBJECTSNVPROC": 2, - "hObjects": 2, - "PFNWGLDXOBJECTACCESSNVPROC": 2, - "hObject": 2, - "access": 2, - "PFNWGLDXOPENDEVICENVPROC": 2, - "dxDevice": 1, - "PFNWGLDXREGISTEROBJECTNVPROC": 2, - "dxObject": 2, - "PFNWGLDXSETRESOURCESHAREHANDLENVPROC": 2, - "shareHandle": 1, - "PFNWGLDXUNLOCKOBJECTSNVPROC": 2, - "PFNWGLDXUNREGISTEROBJECTNVPROC": 2, - "wglDXCloseDeviceNV": 1, - "__wglewDXCloseDeviceNV": 2, - "wglDXLockObjectsNV": 1, - "__wglewDXLockObjectsNV": 2, - "wglDXObjectAccessNV": 1, - "__wglewDXObjectAccessNV": 2, - "wglDXOpenDeviceNV": 1, - "__wglewDXOpenDeviceNV": 2, - "wglDXRegisterObjectNV": 1, - "__wglewDXRegisterObjectNV": 2, - "wglDXSetResourceShareHandleNV": 1, - "__wglewDXSetResourceShareHandleNV": 2, - "wglDXUnlockObjectsNV": 1, - "__wglewDXUnlockObjectsNV": 2, - "wglDXUnregisterObjectNV": 1, - "__wglewDXUnregisterObjectNV": 2, - "WGLEW_NV_DX_interop": 1, - "__WGLEW_NV_DX_interop": 2, - "WGL_NV_copy_image": 2, - "PFNWGLCOPYIMAGESUBDATANVPROC": 2, - "hSrcRC": 1, - "srcName": 1, - "srcTarget": 1, - "srcLevel": 1, - "srcX": 1, - "srcY": 1, - "srcZ": 1, - "hDstRC": 1, - "dstName": 1, - "dstTarget": 1, - "dstLevel": 1, - "dstX": 1, - "dstY": 1, - "dstZ": 1, - "GLsizei": 4, - "depth": 2, - "wglCopyImageSubDataNV": 1, - "__wglewCopyImageSubDataNV": 2, - "WGLEW_NV_copy_image": 1, - "__WGLEW_NV_copy_image": 2, - "WGL_NV_float_buffer": 2, - "WGL_FLOAT_COMPONENTS_NV": 1, - "B0": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_R_NV": 1, - "B1": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RG_NV": 1, - "B2": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGB_NV": 1, - "B3": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGBA_NV": 1, - "B4": 1, - "WGL_TEXTURE_FLOAT_R_NV": 1, - "B5": 1, - "WGL_TEXTURE_FLOAT_RG_NV": 1, - "B6": 1, - "WGL_TEXTURE_FLOAT_RGB_NV": 1, - "B7": 1, - "WGL_TEXTURE_FLOAT_RGBA_NV": 1, - "B8": 1, - "WGLEW_NV_float_buffer": 1, - "__WGLEW_NV_float_buffer": 2, - "WGL_NV_gpu_affinity": 2, - "WGL_ERROR_INCOMPATIBLE_AFFINITY_MASKS_NV": 1, - "D0": 1, - "WGL_ERROR_MISSING_AFFINITY_MASK_NV": 1, - "D1": 1, - "HGPUNV": 5, - "_GPU_DEVICE": 1, - "cb": 1, - "CHAR": 2, - "DeviceName": 1, - "DeviceString": 1, - "Flags": 1, - "RECT": 1, - "rcVirtualScreen": 1, - "GPU_DEVICE": 1, - "*PGPU_DEVICE": 1, - "PFNWGLCREATEAFFINITYDCNVPROC": 2, - "*phGpuList": 1, - "PFNWGLDELETEDCNVPROC": 2, - "PFNWGLENUMGPUDEVICESNVPROC": 2, - "hGpu": 1, - "iDeviceIndex": 1, - "PGPU_DEVICE": 1, - "lpGpuDevice": 1, - "PFNWGLENUMGPUSFROMAFFINITYDCNVPROC": 2, - "hAffinityDC": 1, - "iGpuIndex": 2, - "*hGpu": 1, - "PFNWGLENUMGPUSNVPROC": 2, - "*phGpu": 1, - "wglCreateAffinityDCNV": 1, - "__wglewCreateAffinityDCNV": 2, - "wglDeleteDCNV": 1, - "__wglewDeleteDCNV": 2, - "wglEnumGpuDevicesNV": 1, - "__wglewEnumGpuDevicesNV": 2, - "wglEnumGpusFromAffinityDCNV": 1, - "__wglewEnumGpusFromAffinityDCNV": 2, - "wglEnumGpusNV": 1, - "__wglewEnumGpusNV": 2, - "WGLEW_NV_gpu_affinity": 1, - "__WGLEW_NV_gpu_affinity": 2, - "WGL_NV_multisample_coverage": 2, - "WGL_COVERAGE_SAMPLES_NV": 1, - "WGL_COLOR_SAMPLES_NV": 1, - "B9": 1, - "WGLEW_NV_multisample_coverage": 1, - "__WGLEW_NV_multisample_coverage": 2, - "WGL_NV_present_video": 2, - "WGL_NUM_VIDEO_SLOTS_NV": 1, - "F0": 1, - "HVIDEOOUTPUTDEVICENV": 2, - "PFNWGLBINDVIDEODEVICENVPROC": 2, - "hDc": 6, - "uVideoSlot": 2, - "hVideoDevice": 4, - "PFNWGLENUMERATEVIDEODEVICESNVPROC": 2, - "HVIDEOOUTPUTDEVICENV*": 1, - "phDeviceList": 2, - "PFNWGLQUERYCURRENTCONTEXTNVPROC": 2, - "wglBindVideoDeviceNV": 1, - "__wglewBindVideoDeviceNV": 2, - "wglEnumerateVideoDevicesNV": 1, - "__wglewEnumerateVideoDevicesNV": 2, - "wglQueryCurrentContextNV": 1, - "__wglewQueryCurrentContextNV": 2, - "WGLEW_NV_present_video": 1, - "__WGLEW_NV_present_video": 2, - "WGL_NV_render_depth_texture": 2, - "WGL_BIND_TO_TEXTURE_DEPTH_NV": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_DEPTH_NV": 1, - "WGL_DEPTH_TEXTURE_FORMAT_NV": 1, - "WGL_TEXTURE_DEPTH_COMPONENT_NV": 1, - "WGL_DEPTH_COMPONENT_NV": 1, - "WGLEW_NV_render_depth_texture": 1, - "__WGLEW_NV_render_depth_texture": 2, - "WGL_NV_render_texture_rectangle": 2, - "WGL_BIND_TO_TEXTURE_RECTANGLE_RGB_NV": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_RGBA_NV": 1, - "A1": 1, - "WGL_TEXTURE_RECTANGLE_NV": 1, - "WGLEW_NV_render_texture_rectangle": 1, - "__WGLEW_NV_render_texture_rectangle": 2, - "WGL_NV_swap_group": 2, - "PFNWGLBINDSWAPBARRIERNVPROC": 2, - "group": 3, - "barrier": 1, - "PFNWGLJOINSWAPGROUPNVPROC": 2, - "PFNWGLQUERYFRAMECOUNTNVPROC": 2, - "GLuint*": 3, - "PFNWGLQUERYMAXSWAPGROUPSNVPROC": 2, - "maxGroups": 1, - "*maxBarriers": 1, - "PFNWGLQUERYSWAPGROUPNVPROC": 2, - "*barrier": 1, - "PFNWGLRESETFRAMECOUNTNVPROC": 2, - "wglBindSwapBarrierNV": 1, - "__wglewBindSwapBarrierNV": 2, - "wglJoinSwapGroupNV": 1, - "__wglewJoinSwapGroupNV": 2, - "wglQueryFrameCountNV": 1, - "__wglewQueryFrameCountNV": 2, - "wglQueryMaxSwapGroupsNV": 1, - "__wglewQueryMaxSwapGroupsNV": 2, - "wglQuerySwapGroupNV": 1, - "__wglewQuerySwapGroupNV": 2, - "wglResetFrameCountNV": 1, - "__wglewResetFrameCountNV": 2, - "WGLEW_NV_swap_group": 1, - "__WGLEW_NV_swap_group": 2, - "WGL_NV_vertex_array_range": 2, - "PFNWGLALLOCATEMEMORYNVPROC": 2, - "GLfloat": 3, - "readFrequency": 1, - "writeFrequency": 1, - "priority": 1, - "PFNWGLFREEMEMORYNVPROC": 2, - "*pointer": 1, - "wglAllocateMemoryNV": 1, - "__wglewAllocateMemoryNV": 2, - "wglFreeMemoryNV": 1, - "__wglewFreeMemoryNV": 2, - "WGLEW_NV_vertex_array_range": 1, - "__WGLEW_NV_vertex_array_range": 2, - "WGL_NV_video_capture": 2, - "WGL_UNIQUE_ID_NV": 1, - "CE": 1, - "WGL_NUM_VIDEO_CAPTURE_SLOTS_NV": 1, - "CF": 1, - "HVIDEOINPUTDEVICENV": 5, - "PFNWGLBINDVIDEOCAPTUREDEVICENVPROC": 2, - "PFNWGLENUMERATEVIDEOCAPTUREDEVICESNVPROC": 2, - "HVIDEOINPUTDEVICENV*": 1, - "PFNWGLLOCKVIDEOCAPTUREDEVICENVPROC": 2, - "PFNWGLQUERYVIDEOCAPTUREDEVICENVPROC": 2, - "PFNWGLRELEASEVIDEOCAPTUREDEVICENVPROC": 2, - "wglBindVideoCaptureDeviceNV": 1, - "__wglewBindVideoCaptureDeviceNV": 2, - "wglEnumerateVideoCaptureDevicesNV": 1, - "__wglewEnumerateVideoCaptureDevicesNV": 2, - "wglLockVideoCaptureDeviceNV": 1, - "__wglewLockVideoCaptureDeviceNV": 2, - "wglQueryVideoCaptureDeviceNV": 1, - "__wglewQueryVideoCaptureDeviceNV": 2, - "wglReleaseVideoCaptureDeviceNV": 1, - "__wglewReleaseVideoCaptureDeviceNV": 2, - "WGLEW_NV_video_capture": 1, - "__WGLEW_NV_video_capture": 2, - "WGL_NV_video_output": 2, - "WGL_BIND_TO_VIDEO_RGB_NV": 1, - "C0": 3, - "WGL_BIND_TO_VIDEO_RGBA_NV": 1, - "C1": 1, - "WGL_BIND_TO_VIDEO_RGB_AND_DEPTH_NV": 1, - "C2": 1, - "WGL_VIDEO_OUT_COLOR_NV": 1, - "C3": 1, - "WGL_VIDEO_OUT_ALPHA_NV": 1, - "C4": 1, - "WGL_VIDEO_OUT_DEPTH_NV": 1, - "C5": 1, - "WGL_VIDEO_OUT_COLOR_AND_ALPHA_NV": 1, - "C6": 1, - "WGL_VIDEO_OUT_COLOR_AND_DEPTH_NV": 1, - "C7": 1, - "WGL_VIDEO_OUT_FRAME": 1, - "C8": 1, - "WGL_VIDEO_OUT_FIELD_1": 1, - "C9": 1, - "WGL_VIDEO_OUT_FIELD_2": 1, - "CA": 1, - "WGL_VIDEO_OUT_STACKED_FIELDS_1_2": 1, - "CB": 1, - "WGL_VIDEO_OUT_STACKED_FIELDS_2_1": 1, - "CC": 1, - "HPVIDEODEV": 4, - "PFNWGLBINDVIDEOIMAGENVPROC": 2, - "iVideoBuffer": 2, - "PFNWGLGETVIDEODEVICENVPROC": 2, - "numDevices": 1, - "HPVIDEODEV*": 1, - "PFNWGLGETVIDEOINFONVPROC": 2, - "hpVideoDevice": 1, - "long*": 2, - "pulCounterOutputPbuffer": 1, - "*pulCounterOutputVideo": 1, - "PFNWGLRELEASEVIDEODEVICENVPROC": 2, - "PFNWGLRELEASEVIDEOIMAGENVPROC": 2, - "PFNWGLSENDPBUFFERTOVIDEONVPROC": 2, - "iBufferType": 1, - "pulCounterPbuffer": 1, - "bBlock": 1, - "wglBindVideoImageNV": 1, - "__wglewBindVideoImageNV": 2, - "wglGetVideoDeviceNV": 1, - "__wglewGetVideoDeviceNV": 2, - "wglGetVideoInfoNV": 1, - "__wglewGetVideoInfoNV": 2, - "wglReleaseVideoDeviceNV": 1, - "__wglewReleaseVideoDeviceNV": 2, - "wglReleaseVideoImageNV": 1, - "__wglewReleaseVideoImageNV": 2, - "wglSendPbufferToVideoNV": 1, - "__wglewSendPbufferToVideoNV": 2, - "WGLEW_NV_video_output": 1, - "__WGLEW_NV_video_output": 2, - "WGL_OML_sync_control": 2, - "PFNWGLGETMSCRATEOMLPROC": 2, - "INT32*": 1, - "numerator": 1, - "INT32": 1, - "*denominator": 1, - "PFNWGLGETSYNCVALUESOMLPROC": 2, - "INT64*": 3, - "ust": 7, - "INT64": 18, - "*msc": 3, - "*sbc": 3, - "PFNWGLSWAPBUFFERSMSCOMLPROC": 2, - "target_msc": 3, - "divisor": 3, - "remainder": 3, - "PFNWGLSWAPLAYERBUFFERSMSCOMLPROC": 2, - "fuPlanes": 1, - "PFNWGLWAITFORMSCOMLPROC": 2, - "PFNWGLWAITFORSBCOMLPROC": 2, - "target_sbc": 1, - "wglGetMscRateOML": 1, - "__wglewGetMscRateOML": 2, - "wglGetSyncValuesOML": 1, - "__wglewGetSyncValuesOML": 2, - "wglSwapBuffersMscOML": 1, - "__wglewSwapBuffersMscOML": 2, - "wglSwapLayerBuffersMscOML": 1, - "__wglewSwapLayerBuffersMscOML": 2, - "wglWaitForMscOML": 1, - "__wglewWaitForMscOML": 2, - "wglWaitForSbcOML": 1, - "__wglewWaitForSbcOML": 2, - "WGLEW_OML_sync_control": 1, - "__WGLEW_OML_sync_control": 2, - "GLEW_MX": 4, - "WGLEW_EXPORT": 167, - "GLEWAPI": 6, - "WGLEWContextStruct": 2, - "WGLEWContext": 1, - "wglewContextInit": 2, - "WGLEWContext*": 2, - "ctx": 16, - "wglewContextIsSupported": 2, - "wglewInit": 1, - "wglewGetContext": 4, - "wglewIsSupported": 2, - "wglewGetExtension": 1, - "#undef": 7, - "PPC_SHA1": 1, - "git_hash_ctx": 7, - "SHA_CTX": 3, - "*git_hash_new_ctx": 1, - "*ctx": 5, - "git__malloc": 3, - "SHA1_Init": 4, - "git_hash_free_ctx": 1, - "git__free": 15, - "git_hash_init": 1, - "git_hash_update": 1, - "len": 30, - "SHA1_Update": 3, - "git_hash_final": 1, - "git_oid": 7, - "*out": 3, - "SHA1_Final": 3, - "out": 18, - "git_hash_buf": 1, - "git_hash_vec": 1, - "git_buf_vec": 1, - "*vec": 1, - "vec": 2, - ".data": 1, - ".len": 3, - "BLOB_H": 2, - "PY_SSIZE_T_CLEAN": 1, - "Py_PYTHON_H": 1, - "Python": 2, - "headers": 1, - "compile": 1, - "extensions": 1, - "please": 1, - "install": 1, - "development": 1, - "version": 4, - "Python.": 1, - "#elif": 14, - "PY_VERSION_HEX": 11, - "Cython": 1, - "requires": 1, - ".": 1, - "": 2, - "offsetof": 2, - "member": 2, - "type*": 1, - "WIN32": 2, - "MS_WINDOWS": 2, - "__stdcall": 2, - "__cdecl": 2, - "__fastcall": 2, - "DL_IMPORT": 2, - "t": 32, - "DL_EXPORT": 2, - "PY_LONG_LONG": 5, - "LONG_LONG": 1, - "Py_HUGE_VAL": 2, - "HUGE_VAL": 1, - "PYPY_VERSION": 1, - "CYTHON_COMPILING_IN_PYPY": 3, - "CYTHON_COMPILING_IN_CPYTHON": 6, - "Py_ssize_t": 35, - "PY_SSIZE_T_MAX": 1, - "INT_MAX": 1, - "PY_SSIZE_T_MIN": 1, - "INT_MIN": 1, - "PY_FORMAT_SIZE_T": 1, - "CYTHON_FORMAT_SSIZE_T": 2, - "PyInt_FromSsize_t": 6, - "z": 47, - "PyInt_FromLong": 3, - "PyInt_AsSsize_t": 3, - "o": 80, - "__Pyx_PyInt_AsInt": 2, - "PyNumber_Index": 1, - "PyNumber_Check": 2, - "PyFloat_Check": 2, - "PyNumber_Int": 1, - "PyErr_Format": 4, - "PyExc_TypeError": 4, - "Py_TYPE": 7, - "tp_name": 4, - "PyObject*": 24, - "__Pyx_PyIndex_Check": 3, - "PyComplex_Check": 1, - "PyIndex_Check": 2, - "PyErr_WarnEx": 1, - "category": 2, - "message": 3, - "stacklevel": 1, - "PyErr_Warn": 1, - "__PYX_BUILD_PY_SSIZE_T": 2, - "Py_REFCNT": 1, - "ob_refcnt": 1, - "ob_type": 7, - "Py_SIZE": 1, - "PyVarObject*": 1, - "ob_size": 1, - "PyVarObject_HEAD_INIT": 1, - "PyObject_HEAD_INIT": 1, - "PyType_Modified": 1, - "PyObject": 276, - "itemsize": 1, - "readonly": 1, - "ndim": 2, - "*format": 2, - "*shape": 1, - "*strides": 1, - "*suboffsets": 1, - "*internal": 1, - "Py_buffer": 6, - "PyBUF_SIMPLE": 1, - "PyBUF_WRITABLE": 3, - "PyBUF_FORMAT": 3, - "PyBUF_ND": 2, - "PyBUF_STRIDES": 6, - "PyBUF_C_CONTIGUOUS": 1, - "PyBUF_F_CONTIGUOUS": 1, - "PyBUF_ANY_CONTIGUOUS": 1, - "PyBUF_INDIRECT": 2, - "PyBUF_RECORDS": 1, - "PyBUF_FULL": 1, - "PY_MAJOR_VERSION": 13, - "__Pyx_BUILTIN_MODULE_NAME": 2, - "__Pyx_PyCode_New": 2, - "k": 15, - "l": 7, - "code": 6, - "v": 11, - "fv": 4, - "cell": 4, - "fline": 4, - "lnos": 4, - "PyCode_New": 2, - "PY_MINOR_VERSION": 1, - "PyUnicode_FromString": 2, - "PyUnicode_Decode": 1, - "Py_TPFLAGS_CHECKTYPES": 1, - "Py_TPFLAGS_HAVE_INDEX": 1, - "Py_TPFLAGS_HAVE_NEWBUFFER": 1, - "PyUnicode_KIND": 1, - "CYTHON_PEP393_ENABLED": 2, - "__Pyx_PyUnicode_READY": 2, - "op": 8, - "likely": 22, - "PyUnicode_IS_READY": 1, - "_PyUnicode_Ready": 1, - "__Pyx_PyUnicode_GET_LENGTH": 2, - "u": 18, - "PyUnicode_GET_LENGTH": 1, - "__Pyx_PyUnicode_READ_CHAR": 2, - "PyUnicode_READ_CHAR": 1, - "__Pyx_PyUnicode_READ": 2, - "d": 16, - "PyUnicode_READ": 1, - "PyUnicode_GET_SIZE": 1, - "Py_UCS4": 2, - "PyUnicode_AS_UNICODE": 1, - "Py_UNICODE*": 1, - "PyBaseString_Type": 1, - "PyUnicode_Type": 2, - "PyStringObject": 2, - "PyUnicodeObject": 1, - "PyString_Type": 2, - "PyString_Check": 2, - "PyUnicode_Check": 1, - "PyString_CheckExact": 2, - "PyUnicode_CheckExact": 1, - "PyBytesObject": 1, - "PyBytes_Type": 1, - "PyBytes_Check": 1, - "PyBytes_CheckExact": 1, - "PyBytes_FromString": 2, - "PyString_FromString": 2, - "PyBytes_FromStringAndSize": 1, - "PyString_FromStringAndSize": 1, - "PyBytes_FromFormat": 1, - "PyString_FromFormat": 1, - "PyBytes_DecodeEscape": 1, - "PyString_DecodeEscape": 1, - "PyBytes_AsString": 2, - "PyString_AsString": 1, - "PyBytes_AsStringAndSize": 1, - "PyString_AsStringAndSize": 1, - "PyBytes_Size": 1, - "PyString_Size": 1, - "PyBytes_AS_STRING": 1, - "PyString_AS_STRING": 1, - "PyBytes_GET_SIZE": 1, - "PyString_GET_SIZE": 1, - "PyBytes_Repr": 1, - "PyString_Repr": 1, - "PyBytes_Concat": 1, - "PyString_Concat": 1, - "PyBytes_ConcatAndDel": 1, - "PyString_ConcatAndDel": 1, - "PySet_Check": 1, - "PyObject_TypeCheck": 3, - "PySet_Type": 2, - "PyFrozenSet_Check": 1, - "PyFrozenSet_Type": 1, - "PySet_CheckExact": 2, - "__Pyx_TypeCheck": 1, - "PyTypeObject": 25, - "PyIntObject": 1, - "PyLongObject": 2, - "PyInt_Type": 1, - "PyLong_Type": 1, - "PyInt_Check": 1, - "PyLong_Check": 1, - "PyInt_CheckExact": 1, - "PyLong_CheckExact": 1, - "PyInt_FromString": 1, - "PyLong_FromString": 1, - "PyInt_FromUnicode": 1, - "PyLong_FromUnicode": 1, - "PyLong_FromLong": 1, - "PyInt_FromSize_t": 1, - "PyLong_FromSize_t": 1, - "PyLong_FromSsize_t": 1, - "PyInt_AsLong": 2, - "PyLong_AsLong": 1, - "PyInt_AS_LONG": 1, - "PyLong_AS_LONG": 1, - "PyLong_AsSsize_t": 1, - "PyInt_AsUnsignedLongMask": 1, - "PyLong_AsUnsignedLongMask": 1, - "PyInt_AsUnsignedLongLongMask": 1, - "PyLong_AsUnsignedLongLongMask": 1, - "PyBoolObject": 1, - "Py_hash_t": 1, - "__Pyx_PyInt_FromHash_t": 2, - "__Pyx_PyInt_AsHash_t": 2, - "__Pyx_PySequence_GetSlice": 2, - "PySequence_GetSlice": 2, - "__Pyx_PySequence_SetSlice": 2, - "PySequence_SetSlice": 2, - "__Pyx_PySequence_DelSlice": 2, - "PySequence_DelSlice": 2, - "unlikely": 54, - "PyErr_SetString": 3, - "PyExc_SystemError": 3, - "tp_as_mapping": 3, - "PyMethod_New": 2, - "func": 3, - "self": 9, - "klass": 1, - "PyInstanceMethod_New": 1, - "__Pyx_GetAttrString": 2, - "PyObject_GetAttrString": 2, - "__Pyx_SetAttrString": 2, - "PyObject_SetAttrString": 2, - "__Pyx_DelAttrString": 2, - "PyObject_DelAttrString": 2, - "__Pyx_NAMESTR": 2, - "__Pyx_DOCSTR": 2, - "__Pyx_PyNumber_Divide": 2, - "PyNumber_TrueDivide": 1, - "__Pyx_PyNumber_InPlaceDivide": 2, - "PyNumber_InPlaceTrueDivide": 1, - "PyNumber_Divide": 1, - "PyNumber_InPlaceDivide": 1, - "__PYX_EXTERN_C": 3, - "_USE_MATH_DEFINES": 1, - "": 3, - "__PYX_HAVE__sklearn__linear_model__sgd_fast": 1, - "__PYX_HAVE_API__sklearn__linear_model__sgd_fast": 1, - "_OPENMP": 1, - "": 1, - "PYREX_WITHOUT_ASSERTIONS": 1, - "CYTHON_WITHOUT_ASSERTIONS": 1, - "CYTHON_INLINE": 65, - "__GNUC__": 8, - "__inline__": 1, - "_MSC_VER": 5, - "__inline": 1, - "__STDC_VERSION__": 2, - "L": 1, - "inline": 3, - "CYTHON_UNUSED": 14, - "**p": 1, - "*s": 3, - "encoding": 14, - "is_unicode": 1, - "is_str": 1, - "intern": 1, - "__Pyx_StringTabEntry": 2, - "__Pyx_PyBytes_FromUString": 1, - "__Pyx_PyBytes_AsUString": 1, - "__Pyx_Owned_Py_None": 1, - "Py_INCREF": 10, - "Py_None": 8, - "__Pyx_PyBool_FromLong": 1, - "Py_True": 2, - "Py_False": 2, - "__Pyx_PyObject_IsTrue": 1, - "__Pyx_PyNumber_Int": 1, - "__Pyx_PyIndex_AsSsize_t": 1, - "__Pyx_PyInt_FromSize_t": 1, - "__Pyx_PyInt_AsSize_t": 1, - "__pyx_PyFloat_AsDouble": 12, - "PyFloat_CheckExact": 1, - "PyFloat_AS_DOUBLE": 1, - "PyFloat_AsDouble": 2, - "__pyx_PyFloat_AsFloat": 1, - "__GNUC_MINOR__": 2, - "__builtin_expect": 2, - "*__pyx_m": 1, - "*__pyx_b": 1, - "*__pyx_empty_tuple": 1, - "*__pyx_empty_bytes": 1, - "__pyx_lineno": 58, - "__pyx_clineno": 58, - "__pyx_cfilenm": 1, - "__FILE__": 4, - "*__pyx_filename": 7, - "CYTHON_CCOMPLEX": 12, - "_Complex_I": 3, - "": 1, - "": 1, - "__sun__": 1, - "fj": 1, - "*__pyx_f": 1, - "IS_UNSIGNED": 1, - "__Pyx_StructField_": 2, - "__PYX_BUF_FLAGS_PACKED_STRUCT": 1, - "__Pyx_StructField_*": 1, - "fields": 1, - "arraysize": 1, - "typegroup": 1, - "is_unsigned": 1, - "__Pyx_TypeInfo": 2, - "__Pyx_TypeInfo*": 2, - "offset": 1, - "__Pyx_StructField": 2, - "__Pyx_StructField*": 1, - "field": 1, - "parent_offset": 1, - "__Pyx_BufFmt_StackElem": 1, - "root": 1, - "__Pyx_BufFmt_StackElem*": 2, - "head": 3, - "fmt_offset": 1, - "new_count": 1, - "enc_count": 1, - "struct_alignment": 1, - "is_complex": 1, - "enc_type": 1, - "new_packmode": 1, - "enc_packmode": 1, - "is_valid_array": 1, - "__Pyx_BufFmt_Context": 1, - "npy_int8": 1, - "__pyx_t_5numpy_int8_t": 1, - "npy_int16": 1, - "__pyx_t_5numpy_int16_t": 1, - "npy_int32": 1, - "__pyx_t_5numpy_int32_t": 4, - "npy_int64": 1, - "__pyx_t_5numpy_int64_t": 1, - "npy_uint8": 1, - "__pyx_t_5numpy_uint8_t": 1, - "npy_uint16": 1, - "__pyx_t_5numpy_uint16_t": 1, - "npy_uint32": 1, - "__pyx_t_5numpy_uint32_t": 1, - "npy_uint64": 1, - "__pyx_t_5numpy_uint64_t": 1, - "npy_float32": 1, - "__pyx_t_5numpy_float32_t": 1, - "npy_float64": 1, - "__pyx_t_5numpy_float64_t": 4, - "npy_long": 1, - "__pyx_t_5numpy_int_t": 1, - "npy_longlong": 2, - "__pyx_t_5numpy_long_t": 1, - "__pyx_t_5numpy_longlong_t": 1, - "npy_ulong": 1, - "__pyx_t_5numpy_uint_t": 1, - "npy_ulonglong": 2, - "__pyx_t_5numpy_ulong_t": 1, - "__pyx_t_5numpy_ulonglong_t": 1, - "npy_intp": 1, - "__pyx_t_5numpy_intp_t": 1, - "npy_uintp": 1, - "__pyx_t_5numpy_uintp_t": 1, - "npy_double": 2, - "__pyx_t_5numpy_float_t": 1, - "__pyx_t_5numpy_double_t": 1, - "npy_longdouble": 1, - "__pyx_t_5numpy_longdouble_t": 1, - "__pyx_t_7sklearn_5utils_13weight_vector_DOUBLE": 2, - "__pyx_t_7sklearn_5utils_13weight_vector_INTEGER": 1, - "__pyx_t_7sklearn_5utils_11seq_dataset_DOUBLE": 7, - "__pyx_t_7sklearn_5utils_11seq_dataset_INTEGER": 7, - "__pyx_t_7sklearn_12linear_model_8sgd_fast_DOUBLE": 4, - "__pyx_t_7sklearn_12linear_model_8sgd_fast_INTEGER": 3, - "std": 8, - "complex": 2, - "__pyx_t_float_complex": 27, - "_Complex": 2, - "real": 2, - "imag": 2, - "double": 126, - "__pyx_t_double_complex": 27, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_LossFunction": 15, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Regression": 11, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Huber": 6, - "__pyx_obj_7sklearn_5utils_11seq_dataset_SequentialDataset": 5, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 6, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Classification": 7, - "__pyx_obj_7sklearn_5utils_11seq_dataset_CSRDataset": 2, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Log": 5, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Hinge": 6, - "__pyx_obj_7sklearn_5utils_11seq_dataset_ArrayDataset": 2, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 6, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_ModifiedHuber": 5, - "__pyx_obj_7sklearn_5utils_13weight_vector_WeightVector": 3, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredLoss": 5, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredEpsilonInsensitive": 6, - "npy_cfloat": 1, - "__pyx_t_5numpy_cfloat_t": 1, - "npy_cdouble": 2, - "__pyx_t_5numpy_cdouble_t": 1, - "npy_clongdouble": 1, - "__pyx_t_5numpy_clongdouble_t": 1, - "__pyx_t_5numpy_complex_t": 1, - "PyObject_HEAD": 3, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_LossFunction": 5, - "*__pyx_vtab": 3, - "__pyx_base": 18, - "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_SequentialDataset": 4, - "n_samples": 1, - "epsilon": 2, - "current_index": 2, - "stride": 2, - "*X_data_ptr": 2, - "*X_indptr_ptr": 1, - "*X_indices_ptr": 1, - "*Y_data_ptr": 2, - "PyArrayObject": 8, - "*feature_indices": 2, - "*feature_indices_ptr": 2, - "*index": 2, - "*index_data_ptr": 2, - "*sample_weight_data": 2, - "threshold": 2, - "n_features": 2, - "__pyx_vtabstruct_7sklearn_5utils_13weight_vector_WeightVector": 3, - "*w": 2, - "*w_data_ptr": 1, - "wscale": 1, - "sq_norm": 1, - "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_SequentialDataset": 1, - "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_ArrayDataset": 2, - "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_ArrayDataset": 1, - "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_CSRDataset": 2, - "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_CSRDataset": 1, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 2, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Regression": 3, - "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 1, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 2, - "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 1, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Huber": 2, - "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_Huber": 1, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Hinge": 2, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Classification": 1, - "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_Hinge": 1, - "*__pyx_vtabptr_7sklearn_5utils_13weight_vector_WeightVector": 1, - "CYTHON_REFNANNY": 3, - "__Pyx_RefNannyAPIStruct": 3, - "*__Pyx_RefNanny": 1, - "*__Pyx_RefNannyImportAPI": 1, - "*modname": 1, - "__Pyx_RefNannyDeclarations": 11, - "*__pyx_refnanny": 1, - "WITH_THREAD": 1, - "__Pyx_RefNannySetupContext": 12, - "acquire_gil": 4, - "PyGILState_STATE": 1, - "__pyx_gilstate_save": 2, - "PyGILState_Ensure": 1, - "__pyx_refnanny": 8, - "__Pyx_RefNanny": 8, - "SetupContext": 3, - "__LINE__": 50, - "PyGILState_Release": 1, - "__Pyx_RefNannyFinishContext": 14, - "FinishContext": 1, - "__Pyx_INCREF": 6, - "INCREF": 1, - "__Pyx_DECREF": 20, - "DECREF": 1, - "__Pyx_GOTREF": 24, - "GOTREF": 1, - "__Pyx_GIVEREF": 9, - "GIVEREF": 1, - "__Pyx_XINCREF": 2, - "__Pyx_XDECREF": 20, - "__Pyx_XGOTREF": 2, - "__Pyx_XGIVEREF": 5, - "Py_DECREF": 2, - "Py_XINCREF": 1, - "Py_XDECREF": 1, - "__Pyx_CLEAR": 1, - "__Pyx_XCLEAR": 1, - "*__Pyx_GetName": 1, - "*dict": 5, - "__Pyx_ErrRestore": 1, - "*type": 4, - "*tb": 2, - "__Pyx_ErrFetch": 1, - "**type": 1, - "**value": 1, - "**tb": 1, - "__Pyx_Raise": 4, - "*cause": 1, - "__Pyx_RaiseArgtupleInvalid": 7, - "func_name": 2, - "exact": 6, - "num_min": 1, - "num_max": 1, - "num_found": 1, - "__Pyx_RaiseDoubleKeywordsError": 1, - "kw_name": 1, - "__Pyx_ParseOptionalKeywords": 4, - "*kwds": 1, - "**argnames": 1, - "*kwds2": 1, - "*values": 1, - "num_pos_args": 1, - "function_name": 1, - "__Pyx_ArgTypeTest": 1, - "none_allowed": 1, - "__Pyx_GetBufferAndValidate": 1, - "Py_buffer*": 2, - "dtype": 1, - "nd": 1, - "cast": 1, - "stack": 6, - "__Pyx_SafeReleaseBuffer": 1, - "info": 64, - "__Pyx_TypeTest": 1, - "__Pyx_RaiseBufferFallbackError": 1, - "*__Pyx_GetItemInt_Generic": 1, - "*o": 8, - "*r": 7, - "PyObject_GetItem": 1, - "__Pyx_GetItemInt_List": 1, - "to_py_func": 6, - "__Pyx_GetItemInt_List_Fast": 1, - "__Pyx_GetItemInt_Generic": 6, - "*__Pyx_GetItemInt_List_Fast": 1, - "PyList_GET_SIZE": 5, - "PyList_GET_ITEM": 3, - "PySequence_GetItem": 3, - "__Pyx_GetItemInt_Tuple": 1, - "__Pyx_GetItemInt_Tuple_Fast": 1, - "*__Pyx_GetItemInt_Tuple_Fast": 1, - "PyTuple_GET_SIZE": 14, - "PyTuple_GET_ITEM": 15, - "__Pyx_GetItemInt": 1, - "__Pyx_GetItemInt_Fast": 2, - "PyList_CheckExact": 1, - "PyTuple_CheckExact": 1, - "PySequenceMethods": 1, - "*m": 1, - "tp_as_sequence": 1, - "m": 8, - "sq_item": 2, - "sq_length": 2, - "PySequence_Check": 1, - "__Pyx_RaiseTooManyValuesError": 1, - "expected": 2, - "__Pyx_RaiseNeedMoreValuesError": 1, - "index": 58, - "__Pyx_RaiseNoneNotIterableError": 1, - "__Pyx_IterFinish": 1, - "__Pyx_IternextUnpackEndCheck": 1, - "*retval": 1, - "shape": 1, - "strides": 1, - "suboffsets": 1, - "__Pyx_Buf_DimInfo": 2, - "refcount": 2, - "pybuffer": 1, - "__Pyx_Buffer": 2, - "*rcbuffer": 1, - "diminfo": 1, - "__Pyx_LocalBuf_ND": 1, - "__Pyx_GetBuffer": 2, - "*view": 2, - "__Pyx_ReleaseBuffer": 2, - "PyObject_GetBuffer": 1, - "PyBuffer_Release": 1, - "__Pyx_zeros": 1, - "__Pyx_minusones": 1, - "*__Pyx_Import": 1, - "*from_list": 1, - "level": 12, - "__Pyx_RaiseImportError": 1, - "__Pyx_Print": 1, - "__pyx_print": 1, - "__pyx_print_kwargs": 1, - "__Pyx_PrintOne": 1, - "stream": 3, - "__Pyx_CREAL": 4, - ".real": 3, - "__Pyx_CIMAG": 4, - ".imag": 3, - "__real__": 1, - "__imag__": 1, - "__Pyx_SET_CREAL": 2, - "__Pyx_SET_CIMAG": 2, - "__pyx_t_float_complex_from_parts": 1, - "__Pyx_c_eqf": 2, - "__Pyx_c_sumf": 2, - "__Pyx_c_difff": 2, - "__Pyx_c_prodf": 2, - "__Pyx_c_quotf": 2, - "__Pyx_c_negf": 2, - "__Pyx_c_is_zerof": 3, - "__Pyx_c_conjf": 3, - "conj": 3, - "__Pyx_c_absf": 3, - "abs": 2, - "__Pyx_c_powf": 3, - "pow": 2, - "conjf": 1, - "cabsf": 1, - "cpowf": 1, - "__pyx_t_double_complex_from_parts": 1, - "__Pyx_c_eq": 2, - "__Pyx_c_sum": 2, - "__Pyx_c_diff": 2, - "__Pyx_c_prod": 2, - "__Pyx_c_quot": 2, - "__Pyx_c_neg": 2, - "__Pyx_c_is_zero": 3, - "__Pyx_c_conj": 3, - "__Pyx_c_abs": 3, - "__Pyx_c_pow": 3, - "cabs": 1, - "cpow": 1, - "__Pyx_PyInt_AsUnsignedChar": 1, - "short": 6, - "__Pyx_PyInt_AsUnsignedShort": 1, - "__Pyx_PyInt_AsUnsignedInt": 1, - "__Pyx_PyInt_AsChar": 1, - "__Pyx_PyInt_AsShort": 1, - "signed": 5, - "__Pyx_PyInt_AsSignedChar": 1, - "__Pyx_PyInt_AsSignedShort": 1, - "__Pyx_PyInt_AsSignedInt": 1, - "__Pyx_PyInt_AsLongDouble": 1, - "__Pyx_PyInt_AsUnsignedLong": 1, - "__Pyx_PyInt_AsUnsignedLongLong": 1, - "__Pyx_PyInt_AsLong": 1, - "__Pyx_PyInt_AsLongLong": 1, - "__Pyx_PyInt_AsSignedLong": 1, - "__Pyx_PyInt_AsSignedLongLong": 1, - "__Pyx_WriteUnraisable": 4, - "clineno": 1, - "lineno": 1, - "*filename": 2, - "__Pyx_check_binary_version": 1, - "__Pyx_SetVtable": 1, - "*vtable": 1, - "__Pyx_PyIdentifier_FromString": 3, - "*__Pyx_ImportModule": 1, - "*__Pyx_ImportType": 1, - "*module_name": 1, - "*class_name": 1, - "strict": 2, - "__Pyx_GetVtable": 1, - "code_line": 4, - "PyCodeObject*": 2, - "code_object": 2, - "__Pyx_CodeObjectCacheEntry": 1, - "__Pyx_CodeObjectCache": 2, - "max_count": 1, - "__Pyx_CodeObjectCacheEntry*": 2, - "entries": 2, - "__pyx_code_cache": 1, - "__pyx_bisect_code_objects": 1, - "PyCodeObject": 1, - "*__pyx_find_code_object": 1, - "__pyx_insert_code_object": 1, - "__Pyx_AddTraceback": 7, - "*funcname": 1, - "c_line": 1, - "py_line": 1, - "__Pyx_InitStrings": 1, - "*t": 2, - "*__pyx_ptype_7cpython_4type_type": 1, - "*__pyx_ptype_5numpy_dtype": 1, - "*__pyx_ptype_5numpy_flatiter": 1, - "*__pyx_ptype_5numpy_broadcast": 1, - "*__pyx_ptype_5numpy_ndarray": 1, - "*__pyx_ptype_5numpy_ufunc": 1, - "*__pyx_f_5numpy__util_dtypestring": 1, - "PyArray_Descr": 1, - "*__pyx_ptype_7sklearn_5utils_13weight_vector_WeightVector": 1, - "*__pyx_ptype_7sklearn_5utils_11seq_dataset_SequentialDataset": 1, - "*__pyx_ptype_7sklearn_5utils_11seq_dataset_ArrayDataset": 1, - "*__pyx_ptype_7sklearn_5utils_11seq_dataset_CSRDataset": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_LossFunction": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Regression": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Classification": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_ModifiedHuber": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Hinge": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Log": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredLoss": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Huber": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredEpsilonInsensitive": 1, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_max": 1, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_min": 1, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_sqnorm": 1, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_l1penalty": 1, - "__Pyx_TypeInfo_nn___pyx_t_7sklearn_12linear_model_8sgd_fast_DOUBLE": 1, - "__Pyx_MODULE_NAME": 1, - "__pyx_module_is_main_sklearn__linear_model__sgd_fast": 1, - "*__pyx_builtin_NotImplementedError": 1, - "*__pyx_builtin_range": 1, - "*__pyx_builtin_ValueError": 1, - "*__pyx_builtin_RuntimeError": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 2, - "*__pyx_v_self": 52, - "__pyx_v_p": 46, - "__pyx_v_y": 46, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 2, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 2, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_2dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_14Classification_loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_14Classification_2dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_2dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_4__reduce__": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge___init__": 1, - "__pyx_v_threshold": 2, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_2loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_4dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_6__reduce__": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge___init__": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_2loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_4dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_6__reduce__": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_2dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_4__reduce__": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_2dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_4__reduce__": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber___init__": 1, - "__pyx_v_c": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_2loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_4dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_6__reduce__": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive___init__": 1, - "__pyx_v_epsilon": 2, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_2loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_4dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_6__reduce__": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive___init__": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_2loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_4dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_6__reduce__": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_plain_sgd": 1, - "*__pyx_self": 1, - "*__pyx_v_weights": 1, - "__pyx_v_intercept": 1, - "*__pyx_v_loss": 1, - "__pyx_v_penalty_type": 1, - "__pyx_v_alpha": 1, - "__pyx_v_C": 1, - "__pyx_v_rho": 1, - "*__pyx_v_dataset": 1, - "__pyx_v_n_iter": 1, - "__pyx_v_fit_intercept": 1, - "__pyx_v_verbose": 1, - "__pyx_v_shuffle": 1, - "*__pyx_v_seed": 1, - "__pyx_v_weight_pos": 1, - "__pyx_v_weight_neg": 1, - "__pyx_v_learning_rate": 1, - "__pyx_v_eta0": 1, - "__pyx_v_power_t": 1, - "__pyx_v_t": 1, - "__pyx_v_intercept_decay": 1, - "__pyx_pf_5numpy_7ndarray___getbuffer__": 1, - "*__pyx_v_info": 2, - "__pyx_v_flags": 1, - "__pyx_pf_5numpy_7ndarray_2__releasebuffer__": 1, - "__pyx_k_1": 1, - "__pyx_k_2": 1, - "__pyx_k_3": 1, - "__pyx_k_4": 1, - "__pyx_k_6": 1, - "__pyx_k_8": 1, - "__pyx_k_10": 1, - "__pyx_k_12": 1, - "__pyx_k_13": 1, - "__pyx_k_16": 1, - "__pyx_k_20": 1, - "__pyx_k_21": 1, - "__pyx_k__B": 1, - "__pyx_k__C": 1, - "__pyx_k__H": 1, - "__pyx_k__I": 1, - "__pyx_k__L": 1, - "__pyx_k__O": 1, - "__pyx_k__Q": 1, - "__pyx_k__b": 1, - "__pyx_k__c": 1, - "__pyx_k__d": 1, - "__pyx_k__f": 1, - "__pyx_k__g": 1, - "__pyx_k__h": 1, - "__pyx_k__i": 1, - "__pyx_k__l": 1, - "__pyx_k__p": 1, - "__pyx_k__q": 1, - "__pyx_k__t": 1, - "__pyx_k__u": 1, - "__pyx_k__w": 1, - "__pyx_k__y": 1, - "__pyx_k__Zd": 1, - "__pyx_k__Zf": 1, - "__pyx_k__Zg": 1, - "__pyx_k__np": 1, - "__pyx_k__any": 1, - "__pyx_k__eta": 1, - "__pyx_k__rho": 1, - "__pyx_k__sys": 1, - "__pyx_k__eta0": 1, - "__pyx_k__loss": 1, - "__pyx_k__seed": 1, - "__pyx_k__time": 1, - "__pyx_k__xnnz": 1, - "__pyx_k__alpha": 1, - "__pyx_k__count": 1, - "__pyx_k__dloss": 1, - "__pyx_k__dtype": 1, - "__pyx_k__epoch": 1, - "__pyx_k__isinf": 1, - "__pyx_k__isnan": 1, - "__pyx_k__numpy": 1, - "__pyx_k__order": 1, - "__pyx_k__range": 1, - "__pyx_k__shape": 1, - "__pyx_k__zeros": 1, - "__pyx_k__n_iter": 1, - "__pyx_k__update": 1, - "__pyx_k__dataset": 1, - "__pyx_k__epsilon": 1, - "__pyx_k__float64": 1, - "__pyx_k__nonzero": 1, - "__pyx_k__power_t": 1, - "__pyx_k__shuffle": 1, - "__pyx_k__sumloss": 1, - "__pyx_k__t_start": 1, - "__pyx_k__verbose": 1, - "__pyx_k__weights": 1, - "__pyx_k____main__": 1, - "__pyx_k____test__": 1, - "__pyx_k__is_hinge": 1, - "__pyx_k__intercept": 1, - "__pyx_k__n_samples": 1, - "__pyx_k__plain_sgd": 1, - "__pyx_k__threshold": 1, - "__pyx_k__x_ind_ptr": 1, - "__pyx_k__ValueError": 1, - "__pyx_k__n_features": 1, - "__pyx_k__q_data_ptr": 1, - "__pyx_k__weight_neg": 1, - "__pyx_k__weight_pos": 1, - "__pyx_k__x_data_ptr": 1, - "__pyx_k__RuntimeError": 1, - "__pyx_k__class_weight": 1, - "__pyx_k__penalty_type": 1, - "__pyx_k__fit_intercept": 1, - "__pyx_k__learning_rate": 1, - "__pyx_k__sample_weight": 1, - "__pyx_k__intercept_decay": 1, - "__pyx_k__NotImplementedError": 1, - "*__pyx_kp_s_1": 1, - "*__pyx_kp_u_10": 1, - "*__pyx_kp_u_12": 1, - "*__pyx_kp_u_13": 1, - "*__pyx_kp_u_16": 1, - "*__pyx_kp_s_2": 1, - "*__pyx_kp_s_20": 1, - "*__pyx_n_s_21": 1, - "*__pyx_kp_s_3": 1, - "*__pyx_kp_s_4": 1, - "*__pyx_kp_u_6": 1, - "*__pyx_kp_u_8": 1, - "*__pyx_n_s__C": 1, - "*__pyx_n_s__NotImplementedError": 1, - "*__pyx_n_s__RuntimeError": 1, - "*__pyx_n_s__ValueError": 1, - "*__pyx_n_s____main__": 1, - "*__pyx_n_s____test__": 1, - "*__pyx_n_s__alpha": 1, - "*__pyx_n_s__any": 1, - "*__pyx_n_s__c": 1, - "*__pyx_n_s__class_weight": 1, - "*__pyx_n_s__count": 1, - "*__pyx_n_s__dataset": 1, - "*__pyx_n_s__dloss": 1, - "*__pyx_n_s__dtype": 1, - "*__pyx_n_s__epoch": 1, - "*__pyx_n_s__epsilon": 1, - "*__pyx_n_s__eta": 1, - "*__pyx_n_s__eta0": 1, - "*__pyx_n_s__fit_intercept": 1, - "*__pyx_n_s__float64": 1, - "*__pyx_n_s__i": 1, - "*__pyx_n_s__intercept": 1, - "*__pyx_n_s__intercept_decay": 1, - "*__pyx_n_s__is_hinge": 1, - "*__pyx_n_s__isinf": 1, - "*__pyx_n_s__isnan": 1, - "*__pyx_n_s__learning_rate": 1, - "*__pyx_n_s__loss": 1, - "*__pyx_n_s__n_features": 1, - "*__pyx_n_s__n_iter": 1, - "*__pyx_n_s__n_samples": 1, - "*__pyx_n_s__nonzero": 1, - "*__pyx_n_s__np": 1, - "*__pyx_n_s__numpy": 1, - "*__pyx_n_s__order": 1, - "*__pyx_n_s__p": 1, - "*__pyx_n_s__penalty_type": 1, - "*__pyx_n_s__plain_sgd": 1, - "*__pyx_n_s__power_t": 1, - "*__pyx_n_s__q": 1, - "*__pyx_n_s__q_data_ptr": 1, - "*__pyx_n_s__range": 1, - "*__pyx_n_s__rho": 1, - "*__pyx_n_s__sample_weight": 1, - "*__pyx_n_s__seed": 1, - "*__pyx_n_s__shape": 1, - "*__pyx_n_s__shuffle": 1, - "*__pyx_n_s__sumloss": 1, - "*__pyx_n_s__sys": 1, - "*__pyx_n_s__t": 1, - "*__pyx_n_s__t_start": 1, - "*__pyx_n_s__threshold": 1, - "*__pyx_n_s__time": 1, - "*__pyx_n_s__u": 1, - "*__pyx_n_s__update": 1, - "*__pyx_n_s__verbose": 1, - "*__pyx_n_s__w": 1, - "*__pyx_n_s__weight_neg": 1, - "*__pyx_n_s__weight_pos": 1, - "*__pyx_n_s__weights": 1, - "*__pyx_n_s__x_data_ptr": 1, - "*__pyx_n_s__x_ind_ptr": 1, - "*__pyx_n_s__xnnz": 1, - "*__pyx_n_s__y": 1, - "*__pyx_n_s__zeros": 1, - "*__pyx_int_15": 1, - "*__pyx_k_tuple_5": 1, - "*__pyx_k_tuple_7": 1, - "*__pyx_k_tuple_9": 1, - "*__pyx_k_tuple_11": 1, - "*__pyx_k_tuple_14": 1, - "*__pyx_k_tuple_15": 1, - "*__pyx_k_tuple_17": 1, - "*__pyx_k_tuple_18": 1, - "*__pyx_k_codeobj_19": 1, - "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_1loss": 3, - "*__pyx_args": 9, - "*__pyx_kwds": 9, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, - "__pyx_skip_dispatch": 6, - "__pyx_r": 39, - "*__pyx_t_1": 6, - "*__pyx_t_2": 3, - "*__pyx_t_3": 3, - "*__pyx_t_4": 3, - "__pyx_t_5": 12, - "__pyx_v_self": 15, - "tp_dictoffset": 3, - "__pyx_t_1": 69, - "PyObject_GetAttr": 3, - "__pyx_n_s__loss": 2, - "__pyx_filename": 51, - "__pyx_f": 42, - "__pyx_L1_error": 33, - "PyCFunction_Check": 3, - "PyCFunction_GET_FUNCTION": 3, - "PyCFunction": 3, - "__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_1loss": 1, - "__pyx_t_2": 21, - "PyFloat_FromDouble": 9, - "__pyx_t_3": 39, - "__pyx_t_4": 27, - "PyTuple_New": 3, - "PyTuple_SET_ITEM": 6, - "PyObject_Call": 6, - "PyErr_Occurred": 9, - "__pyx_L0": 18, - "__pyx_builtin_NotImplementedError": 3, - "__pyx_empty_tuple": 3, - "__pyx_doc_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, - "*__pyx_r": 6, - "**__pyx_pyargnames": 3, - "__pyx_n_s__p": 6, - "__pyx_n_s__y": 6, - "values": 30, - "__pyx_kwds": 15, - "kw_args": 15, - "pos_args": 12, - "__pyx_args": 21, - "__pyx_L5_argtuple_error": 12, - "PyDict_Size": 3, - "PyDict_GetItem": 6, - "__pyx_L3_error": 18, - "__pyx_pyargnames": 3, - "__pyx_L4_argument_unpacking_done": 6, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, - "__pyx_vtab": 2, - "loss": 1, - "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_3dloss": 3, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_12LossFunction_dloss": 1, - "__pyx_n_s__dloss": 1, - "__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_3dloss": 1, - "__pyx_doc_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 1, - "dloss": 1, - "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_10Regression_1loss": 3, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 1, - "__pyx_pw_7sklearn_12linear_model_8sgd_fast_10Regression_1loss": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 1, - "__pyx_base.__pyx_vtab": 1, - "__pyx_base.loss": 1, - "": 1, - "": 2, - "local": 5, - "memory": 4, - "RF_OPTION_DEFAULT_ARGUMENTS": 24, - "RF_String*": 222, - "rfString_Create": 4, - "...": 127, - "i_rfString_Create": 3, - "READ_VSNPRINTF_ARGS": 5, - "rfUTF8_VerifySequence": 7, - "RF_FAILURE": 24, - "RE_STRING_INIT_FAILURE": 8, - "buffAllocated": 11, - "RF_String": 27, - "i_NVrfString_Create": 3, - "i_rfString_CreateLocal1": 3, - "RF_OPTION_SOURCE_ENCODING": 30, - "RF_UTF8": 8, - "characterLength": 16, - "*codepoints": 2, - "rfLMS_MacroEvalPtr": 2, - "RF_LMS": 6, - "RF_UTF16_LE": 9, - "RF_UTF16_BE": 7, - "codepoints": 44, - "i/2": 2, - "RF_UTF32_LE": 3, - "RF_UTF32_BE": 3, - "UTF16": 4, - "rfUTF16_Decode": 5, - "cleanup": 12, - "rfUTF16_Decode_swap": 5, - "RF_UTF16_BE//": 2, - "RF_UTF32_LE//": 2, - "copy": 4, - "UTF32": 4, - "into": 8, - "RF_UTF32_BE//": 2, - "": 2, - "endif": 6, - "any": 3, - "other": 16, - "UTF": 17, - "8": 15, - "encode": 2, - "and": 15, - "them": 3, - "rfUTF8_Encode": 4, - "0": 11, - "While": 2, - "attempting": 2, - "create": 2, - "temporary": 4, - "given": 5, - "sequence": 6, - "could": 2, - "not": 6, - "be": 6, - "properly": 2, - "encoded": 2, - "RE_UTF8_ENCODING": 2, - "End": 2, - "Non": 2, - "code=": 2, - "normally": 1, - "since": 5, - "here": 5, - "have": 2, - "validity": 2, - "get": 4, - "character": 11, - "Error": 2, - "at": 3, - "String": 11, - "Allocation": 2, - "due": 2, - "invalid": 2, - "rfLMS_Push": 4, - "Memory": 4, - "allocation": 3, - "Local": 2, - "Stack": 2, - "failed": 2, - "Insufficient": 2, - "space": 4, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "Consider": 2, - "compiling": 2, - "library": 3, - "with": 9, - "bigger": 3, - "Quitting": 2, - "proccess": 2, - "RE_LOCALMEMSTACK_INSUFFICIENT": 8, - "i_NVrfString_CreateLocal": 3, - "during": 1, - "string": 18, - "rfString_Init": 3, - "str": 162, - "i_rfString_Init": 3, - "i_NVrfString_Init": 3, - "rfString_Create_cp": 2, - "rfString_Init_cp": 3, - "RF_HEXLE_UI": 8, - "RF_HEXGE_UI": 6, - "ffff": 4, - "xFC0": 4, - "xF000": 2, - "xE": 2, - "F000": 2, - "C0000": 2, - "RE_UTF8_INVALID_CODE_POINT": 2, - "rfString_Create_i": 2, - "numLen": 8, - "max": 4, - "is": 17, - "most": 3, - "environment": 3, - "so": 4, - "chars": 3, - "will": 3, - "certainly": 3, - "fit": 3, - "it": 12, - "sprintf": 10, - "strcpy": 4, - "rfString_Init_i": 2, - "rfString_Create_f": 2, - "rfString_Init_f": 2, - "rfString_Create_UTF16": 2, - "rfString_Init_UTF16": 3, - "utf8ByteLength": 34, - "last": 1, - "utf": 1, - "null": 4, - "termination": 3, - "byteLength*2": 1, - "allocate": 1, - "same": 1, - "as": 4, - "different": 1, - "RE_INPUT": 1, - "ends": 3, - "rfString_Create_UTF32": 2, - "rfString_Init_UTF32": 3, - "off": 8, - "codeBuffer": 9, - "xFEFF": 1, - "big": 14, - "endian": 20, - "xFFFE0000": 1, - "little": 7, - "according": 1, - "standard": 1, - "no": 4, - "BOM": 1, - "means": 1, - "rfUTF32_Length": 1, - "i_rfString_Assign": 3, - "dest": 7, - "sourceP": 2, - "source": 8, - "RF_REALLOC": 9, - "rfString_Assign_char": 2, - "<5)>": 1, - "rfString_Create_nc": 3, - "i_rfString_Create_nc": 3, - "bytesWritten": 2, - "i_NVrfString_Create_nc": 3, - "rfString_Init_nc": 4, - "i_rfString_Init_nc": 3, - "i_NVrfString_Init_nc": 3, - "rfString_Destroy": 2, - "rfString_Deinit": 3, - "rfString_ToUTF16": 4, - "charsN": 5, - "rfUTF8_Decode": 2, - "rfUTF16_Encode": 1, - "rfString_ToUTF32": 4, - "rfString_Length": 5, - "RF_STRING_ITERATE_START": 9, - "RF_STRING_ITERATE_END": 9, - "rfString_GetChar": 2, - "thisstr": 210, - "codePoint": 18, - "RF_STRING_INDEX_OUT_OF_BOUNDS": 2, - "rfString_BytePosToCodePoint": 7, - "rfString_BytePosToCharPos": 4, - "thisstrP": 32, - "bytepos": 12, - "charPos": 8, - "byteI": 7, - "i_rfString_Equal": 3, - "s1P": 2, - "s2P": 2, - "i_rfString_Find": 5, - "sstrP": 6, - "optionsP": 11, - "sstr": 39, - "*optionsP": 8, - "RF_BITFLAG_ON": 5, - "RF_CASE_IGNORE": 2, - "strstr": 2, - "RF_MATCH_WORD": 5, - "": 1, - "0x5a": 1, - "match": 16, - "0x7a": 1, - "substring": 5, - "search": 1, - "zero": 2, - "equals": 1, - "then": 1, - "okay": 1, - "rfString_Equal": 4, - "RFS_": 8, - "ERANGE": 1, - "RE_STRING_TOFLOAT_UNDERFLOW": 1, - "RE_STRING_TOFLOAT": 1, - "rfString_Copy_OUT": 2, - "srcP": 6, - "src": 16, - "rfString_Copy_IN": 2, - "dst": 15, - "rfString_Copy_chars": 2, - "bytePos": 23, - "terminate": 1, - "i_rfString_ScanfAfter": 3, - "afterstrP": 2, - "format": 4, - "afterstr": 5, - "sscanf": 1, - "<=0)>": 1, - "Counts": 1, - "how": 1, - "many": 1, - "times": 1, - "occurs": 1, - "inside": 2, - "i_rfString_Count": 5, - "sstr2": 2, - "move": 12, - "rfString_FindBytePos": 10, - "i_DECLIMEX_": 121, - "rfString_Tokenize": 2, - "sep": 3, - "tokensN": 2, - "RF_String**": 2, - "tokens": 5, - "*tokensN": 1, - "rfString_Count": 4, - "lstr": 6, - "lstrP": 1, - "rstr": 24, - "rstrP": 5, - "temp": 11, - "start": 10, - "rfString_After": 4, - "result": 48, - "rfString_Beforev": 4, - "parNP": 6, - "i_rfString_Beforev": 16, - "parN": 10, - "*parNP": 2, - "minPos": 17, - "thisPos": 8, - "va_list": 3, - "argList": 8, - "va_start": 3, - "va_arg": 2, - "va_end": 3, - "i_rfString_Before": 5, - "i_rfString_After": 5, - "afterP": 2, - "after": 6, - "rfString_Afterv": 4, - "i_rfString_Afterv": 16, - "minPosLength": 3, - "go": 8, - "i_rfString_Append": 3, - "otherP": 4, - "strncat": 1, - "rfString_Append_i": 2, - "rfString_Append_f": 2, - "i_rfString_Prepend": 3, - "goes": 1, - "i_rfString_Remove": 6, - "numberP": 1, - "*numberP": 1, - "occurences": 5, - "done": 1, - "<=thisstr->": 1, - "i_rfString_KeepOnly": 3, - "keepstrP": 2, - "keepLength": 2, - "charValue": 12, - "*keepChars": 1, - "keepstr": 5, - "exists": 6, - "charBLength": 5, - "keepChars": 4, - "*keepLength": 1, - "rfString_Iterate_Start": 6, - "rfString_Iterate_End": 4, - "": 1, - "does": 1, - "exist": 2, - "back": 1, - "cover": 1, - "that": 9, - "effectively": 1, + "instead": 2, + "sending": 2, + "response": 2, + "events.": 2, + "actual": 2, + "send": 3, + "returns": 5, + "current": 10, + "logger": 2, + "allows": 15, + "log": 2, + "attached.": 1, + "data": 2, + "structure": 1, + "representation": 1, + "memoizing": 2, + "cache": 14, + "evaluate": 1, + "function": 13, + "but": 7, + "keep": 1, + "recently": 3, + "evaluated": 1, + "parameters.": 1, + "Since": 1, + "mathematical": 2, + "sense": 1, + "key": 12, + "*always*": 1, + "maps": 1, + "corresponding": 2, + "value.": 2, + "calculation": 8, + "function.": 6, + "returned": 2, + "Constructor": 2, + "whose": 7, + "results": 6, + "want": 2, + "Tag": 1, + "user": 2, + "defined": 1, + "size": 1, + "maintain": 1, + "after": 1, + "old": 1, + "start": 1, + "thrown": 1, + "out.": 1, + "result": 3, "gets": 1, - "deleted": 1, - "rfUTF8_FromCodepoint": 1, - "this": 5, - "kind": 1, - "non": 1, - "clean": 1, - "way": 1, - "macro": 2, - "internally": 1, - "uses": 1, - "byteIndex_": 12, - "variable": 1, - "use": 1, - "determine": 1, - "current": 5, - "iteration": 6, - "backs": 1, - "memmove": 2, - "by": 1, - "contiuing": 1, - "make": 3, - "sure": 2, - "position": 1, - "won": 1, - "array": 1, - "rfString_PruneStart": 2, - "nBytePos": 23, - "rfString_PruneEnd": 2, - "RF_STRING_ITERATEB_START": 2, - "RF_STRING_ITERATEB_END": 2, - "rfString_PruneMiddleB": 2, - "pBytePos": 15, - "indexing": 1, - "works": 1, - "pbytePos": 2, - "pth": 2, - "include": 6, - "rfString_PruneMiddleF": 2, - "got": 1, - "all": 2, - "i_rfString_Replace": 6, - "numP": 1, - "*numP": 1, - "RF_StringX": 2, - "just": 1, - "finding": 1, - "foundN": 10, - "diff": 93, - "bSize": 4, - "bytePositions": 17, - "bSize*sizeof": 1, - "rfStringX_FromString_IN": 1, - "temp.bIndex": 2, - "temp.bytes": 1, - "temp.byteLength": 1, - "rfStringX_Deinit": 1, - "replace": 3, - "removed": 2, - "one": 2, - "orSize": 5, - "nSize": 4, - "number*diff": 1, - "strncpy": 3, - "smaller": 1, - "diff*number": 1, - "remove": 1, - "strings": 5, - "equal": 1, - "i_rfString_StripStart": 3, - "subP": 7, - "RF_String*sub": 2, - "noMatch": 8, - "*subValues": 2, - "subLength": 6, - "sub": 12, - "subValues": 8, - "*subLength": 2, - "i_rfString_StripEnd": 3, - "lastBytePos": 4, - "testity": 2, - "i_rfString_Strip": 3, - "res1": 2, - "rfString_StripStart": 3, - "res2": 2, - "rfString_StripEnd": 3, - "rfString_Create_fUTF8": 2, - "rfString_Init_fUTF8": 3, - "unused": 3, - "rfString_Assign_fUTF8": 2, - "FILE*f": 2, - "utf8BufferSize": 4, - "function": 6, - "rfString_Append_fUTF8": 2, - "rfString_Append": 5, - "rfString_Create_fUTF16": 2, - "rfString_Init_fUTF16": 3, - "rfFReadLine_UTF16LE": 4, - "rfFReadLine_UTF16BE": 6, - "rfString_Assign_fUTF16": 2, - "rfString_Append_fUTF16": 2, - "char*utf8": 3, - "rfString_Create_fUTF32": 2, - "rfString_Init_fUTF32": 3, - "rfFReadLine_UTF32LE": 4, - "<0)>": 1, - "Failure": 1, - "initialize": 1, - "reading": 1, - "Little": 1, - "Endian": 1, - "32": 1, - "bytesN=": 1, - "rfString_Assign_fUTF32": 2, - "rfString_Append_fUTF32": 2, - "i_rfString_Fwrite": 5, - "sP": 2, - "encodingP": 1, - "*utf32": 1, - "utf16": 11, - "*encodingP": 1, - "fwrite": 5, - "logging": 5, - "utf32": 10, - "i_WRITE_CHECK": 1, - "RE_FILE_WRITE": 1, - "syscalldef": 1, - "syscalldefs": 1, - "SYSCALL_OR_NUM": 3, - "SYS_restart_syscall": 1, - "MAKE_UINT16": 3, - "SYS_exit": 1, - "SYS_fork": 1, - "http_parser_h": 2, - "HTTP_PARSER_VERSION_MAJOR": 1, - "HTTP_PARSER_VERSION_MINOR": 1, - "": 2, - "__MINGW32__": 1, - "__int8": 2, - "int8_t": 3, - "__int16": 2, - "int16_t": 1, - "__int32": 2, - "__int64": 3, - "int64_t": 2, - "uint64_t": 8, - "ssize_t": 1, - "": 1, - "HTTP_PARSER_STRICT": 5, - "HTTP_PARSER_DEBUG": 4, - "HTTP_MAX_HEADER_SIZE": 2, - "*1024": 4, - "http_parser": 13, - "http_parser_settings": 5, - "HTTP_METHOD_MAP": 3, - "XX": 63, - "DELETE": 2, - "GET": 2, - "HEAD": 2, - "POST": 2, - "PUT": 2, - "CONNECT": 2, - "OPTIONS": 2, - "TRACE": 2, - "COPY": 2, - "LOCK": 2, - "MKCOL": 2, - "MOVE": 2, - "PROPFIND": 2, - "PROPPATCH": 2, - "SEARCH": 3, - "UNLOCK": 2, - "REPORT": 2, - "MKACTIVITY": 2, - "CHECKOUT": 2, - "MERGE": 2, - "MSEARCH": 1, - "M": 1, - "NOTIFY": 2, - "SUBSCRIBE": 2, - "UNSUBSCRIBE": 2, - "PATCH": 2, - "PURGE": 2, - "http_method": 4, - "HTTP_##name": 1, - "http_parser_type": 3, - "HTTP_REQUEST": 7, - "HTTP_RESPONSE": 3, - "HTTP_BOTH": 1, - "F_CHUNKED": 11, - "F_CONNECTION_KEEP_ALIVE": 3, - "F_CONNECTION_CLOSE": 3, - "F_TRAILING": 3, - "F_UPGRADE": 3, - "F_SKIPBODY": 4, - "HTTP_ERRNO_MAP": 3, - "OK": 1, - "CB_message_begin": 1, - "CB_url": 1, - "CB_header_field": 1, - "CB_header_value": 1, - "CB_headers_complete": 1, - "CB_body": 1, - "CB_message_complete": 1, - "INVALID_EOF_STATE": 1, - "HEADER_OVERFLOW": 1, - "CLOSED_CONNECTION": 1, - "INVALID_VERSION": 1, - "INVALID_STATUS": 1, - "INVALID_METHOD": 1, - "INVALID_URL": 1, - "INVALID_HOST": 1, - "INVALID_PORT": 1, - "INVALID_PATH": 1, - "INVALID_QUERY_STRING": 1, - "INVALID_FRAGMENT": 1, - "LF_EXPECTED": 1, - "INVALID_HEADER_TOKEN": 1, - "INVALID_CONTENT_LENGTH": 1, - "INVALID_CHUNK_SIZE": 1, - "INVALID_CONSTANT": 1, - "INVALID_INTERNAL_STATE": 1, - "STRICT": 1, - "PAUSED": 1, - "UNKNOWN": 1, - "HTTP_ERRNO_GEN": 3, - "HPE_##n": 1, - "http_errno": 11, - "HTTP_PARSER_ERRNO": 10, - "HTTP_PARSER_ERRNO_LINE": 2, - "error_lineno": 3, - "state": 104, - "header_state": 42, - "nread": 7, - "content_length": 27, - "http_major": 11, - "http_minor": 11, - "status_code": 8, - "method": 39, - "upgrade": 3, - "http_cb": 3, - "on_message_begin": 1, - "http_data_cb": 4, - "on_url": 1, - "on_header_field": 1, - "on_header_value": 1, - "on_headers_complete": 3, - "on_body": 1, - "on_message_complete": 1, - "http_parser_url_fields": 2, - "UF_SCHEMA": 2, - "UF_HOST": 3, - "UF_PORT": 5, - "UF_PATH": 2, - "UF_QUERY": 2, - "UF_FRAGMENT": 2, - "UF_MAX": 3, - "http_parser_url": 3, - "field_set": 5, - "port": 7, - "field_data": 5, - "http_parser_init": 2, - "*parser": 9, - "http_parser_execute": 2, - "*settings": 2, - "http_should_keep_alive": 2, - "*http_method_str": 1, - "*http_errno_name": 1, - "err": 38, - "*http_errno_description": 1, - "http_parser_parse_url": 2, - "buflen": 3, - "is_connect": 4, - "*u": 2, - "http_parser_pause": 2, - "paused": 3, - "": 2, - "ULLONG_MAX": 10, - "MIN": 3, - "SET_ERRNO": 47, - "e": 4, - "parser": 334, - "CALLBACK_NOTIFY_": 3, - "FOR": 11, - "ER": 4, - "HPE_OK": 10, - "settings": 6, - "on_##FOR": 4, - "HPE_CB_##FOR": 2, - "CALLBACK_NOTIFY": 10, - "CALLBACK_NOTIFY_NOADVANCE": 2, - "CALLBACK_DATA_": 4, - "LEN": 2, - "FOR##_mark": 7, - "CALLBACK_DATA": 10, - "CALLBACK_DATA_NOADVANCE": 6, - "MARK": 7, - "PROXY_CONNECTION": 4, - "CONNECTION": 4, - "CONTENT_LENGTH": 4, - "TRANSFER_ENCODING": 4, - "UPGRADE": 4, - "CHUNKED": 4, - "KEEP_ALIVE": 4, - "CLOSE": 4, - "*method_strings": 1, - "#string": 1, - "unhex": 3, - "normal_url_char": 3, - "T": 3, - "s_dead": 10, - "s_start_req_or_res": 4, - "s_res_or_resp_H": 3, - "s_start_res": 5, - "s_res_H": 3, - "s_res_HT": 4, - "s_res_HTT": 3, - "s_res_HTTP": 3, - "s_res_first_http_major": 3, - "s_res_http_major": 3, - "s_res_first_http_minor": 3, - "s_res_http_minor": 3, - "s_res_first_status_code": 3, - "s_res_status_code": 3, - "s_res_status": 3, - "s_res_line_almost_done": 4, - "s_start_req": 6, - "s_req_method": 4, - "s_req_spaces_before_url": 5, - "s_req_schema": 6, - "s_req_schema_slash": 6, - "s_req_schema_slash_slash": 6, - "s_req_host_start": 8, - "s_req_host_v6_start": 7, - "s_req_host_v6": 7, - "s_req_host_v6_end": 7, - "s_req_host": 8, - "s_req_port_start": 7, - "s_req_port": 6, - "s_req_path": 8, - "s_req_query_string_start": 8, - "s_req_query_string": 7, - "s_req_fragment_start": 7, - "s_req_fragment": 7, - "s_req_http_start": 3, - "s_req_http_H": 3, - "s_req_http_HT": 3, - "s_req_http_HTT": 3, - "s_req_http_HTTP": 3, - "s_req_first_http_major": 3, - "s_req_http_major": 3, - "s_req_first_http_minor": 3, - "s_req_http_minor": 3, - "s_req_line_almost_done": 4, - "s_header_field_start": 12, - "s_header_field": 4, - "s_header_value_start": 4, - "s_header_value": 5, - "s_header_value_lws": 3, - "s_header_almost_done": 6, - "s_chunk_size_start": 4, - "s_chunk_size": 3, - "s_chunk_parameters": 3, - "s_chunk_size_almost_done": 4, - "s_headers_almost_done": 4, - "s_headers_done": 4, - "s_chunk_data": 3, - "s_chunk_data_almost_done": 3, - "s_chunk_data_done": 3, - "s_body_identity": 3, - "s_body_identity_eof": 4, - "s_message_done": 3, - "PARSING_HEADER": 2, - "header_states": 1, - "h_general": 23, - "h_C": 3, - "h_CO": 3, - "h_CON": 3, - "h_matching_connection": 3, - "h_matching_proxy_connection": 3, - "h_matching_content_length": 3, - "h_matching_transfer_encoding": 3, - "h_matching_upgrade": 3, - "h_connection": 6, - "h_content_length": 5, - "h_transfer_encoding": 5, - "h_upgrade": 4, - "h_matching_transfer_encoding_chunked": 3, - "h_matching_connection_keep_alive": 3, - "h_matching_connection_close": 3, - "h_transfer_encoding_chunked": 4, - "h_connection_keep_alive": 4, - "h_connection_close": 4, - "Macros": 1, - "classes": 1, - "depends": 1, - "mode": 11, - "define": 14, - "CR": 18, - "LF": 21, - "LOWER": 7, - "0x20": 1, - "IS_ALPHA": 5, - "IS_NUM": 14, - "9": 1, - "IS_ALPHANUM": 3, - "IS_HEX": 2, - "TOKEN": 4, - "IS_URL_CHAR": 6, - "IS_HOST_CHAR": 4, - "0x80": 1, - "start_state": 1, - "cond": 1, - "HPE_STRICT": 1, - "HTTP_STRERROR_GEN": 3, - "#n": 1, - "*description": 1, - "http_strerror_tab": 7, - "http_message_needs_eof": 4, - "parse_url_char": 5, - "ch": 145, - "unhex_val": 7, - "*header_field_mark": 1, - "*header_value_mark": 1, - "*url_mark": 1, - "*body_mark": 1, - "message_complete": 7, - "HPE_INVALID_EOF_STATE": 1, - "header_field_mark": 2, - "header_value_mark": 2, - "url_mark": 2, - "HPE_HEADER_OVERFLOW": 1, - "reexecute_byte": 7, - "HPE_CLOSED_CONNECTION": 1, - "message_begin": 3, - "HPE_INVALID_CONSTANT": 3, - "HTTP_HEAD": 2, - "STRICT_CHECK": 15, - "HPE_INVALID_VERSION": 12, - "HPE_INVALID_STATUS": 3, - "HPE_INVALID_METHOD": 4, - "HTTP_CONNECT": 4, - "HTTP_DELETE": 1, - "HTTP_GET": 1, - "HTTP_LOCK": 1, - "HTTP_MKCOL": 2, - "HTTP_NOTIFY": 1, - "HTTP_OPTIONS": 1, - "HTTP_POST": 2, - "HTTP_REPORT": 1, - "HTTP_SUBSCRIBE": 2, - "HTTP_TRACE": 1, - "HTTP_UNLOCK": 2, - "*matcher": 1, - "matcher": 3, - "method_strings": 2, - "HTTP_CHECKOUT": 1, - "HTTP_COPY": 1, - "HTTP_MOVE": 1, - "HTTP_MERGE": 1, - "HTTP_MSEARCH": 1, - "HTTP_MKACTIVITY": 1, - "HTTP_SEARCH": 1, - "HTTP_PROPFIND": 2, - "HTTP_PUT": 2, - "HTTP_PATCH": 1, - "HTTP_PURGE": 1, - "HTTP_UNSUBSCRIBE": 1, - "HTTP_PROPPATCH": 1, - "url": 4, - "HPE_INVALID_URL": 4, - "HPE_LF_EXPECTED": 1, - "HPE_INVALID_HEADER_TOKEN": 2, - "header_field": 5, - "header_value": 6, - "HPE_INVALID_CONTENT_LENGTH": 4, - "NEW_MESSAGE": 6, - "HPE_CB_headers_complete": 1, - "to_read": 6, - "body": 6, - "body_mark": 2, - "HPE_INVALID_CHUNK_SIZE": 2, - "HPE_INVALID_INTERNAL_STATE": 1, - "1": 2, - "HPE_UNKNOWN": 1, - "Does": 1, - "see": 2, - "an": 2, - "find": 1, - "http_method_str": 1, - "memset": 4, - "http_errno_name": 1, - "/sizeof": 4, - ".name": 1, - "http_errno_description": 1, - ".description": 1, - "uf": 14, - "old_uf": 4, - ".off": 2, - "xffff": 1, - "HPE_PAUSED": 2, - "ATSHOME_LIBATS_DYNARRAY_CATS": 3, - "atslib_dynarray_memcpy": 1, - "atslib_dynarray_memmove": 1, - "ifndef": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "CONFIG_SMP": 1, - "DEFINE_MUTEX": 1, - "cpu_add_remove_lock": 3, - "cpu_maps_update_begin": 9, - "mutex_lock": 5, - "cpu_maps_update_done": 9, - "mutex_unlock": 6, - "RAW_NOTIFIER_HEAD": 1, - "cpu_chain": 4, - "cpu_hotplug_disabled": 7, - "CONFIG_HOTPLUG_CPU": 2, - "task_struct": 5, - "*active_writer": 1, - "mutex": 1, - "lock": 6, - "cpu_hotplug": 1, - ".active_writer": 1, - ".lock": 1, - "__MUTEX_INITIALIZER": 1, - "cpu_hotplug.lock": 8, - ".refcount": 1, - "get_online_cpus": 2, - "might_sleep": 1, - "cpu_hotplug.active_writer": 6, - "cpu_hotplug.refcount": 3, - "EXPORT_SYMBOL_GPL": 4, - "put_online_cpus": 2, - "wake_up_process": 1, - "cpu_hotplug_begin": 4, - "__set_current_state": 1, - "TASK_UNINTERRUPTIBLE": 1, - "schedule": 1, - "cpu_hotplug_done": 4, - "__ref": 6, - "register_cpu_notifier": 2, - "notifier_block": 3, - "*nb": 3, - "raw_notifier_chain_register": 1, - "nb": 2, - "__cpu_notify": 6, - "val": 20, - "*v": 3, - "nr_to_call": 2, - "*nr_calls": 1, - "__raw_notifier_call_chain": 1, - "nr_calls": 9, - "notifier_to_errno": 1, - "cpu_notify": 5, - "cpu_notify_nofail": 4, - "BUG_ON": 4, - "EXPORT_SYMBOL": 8, - "unregister_cpu_notifier": 2, - "raw_notifier_chain_unregister": 1, - "clear_tasks_mm_cpumask": 1, - "cpu": 57, - "WARN_ON": 1, - "cpu_online": 5, - "rcu_read_lock": 1, - "for_each_process": 2, - "find_lock_task_mm": 1, - "cpumask_clear_cpu": 5, - "mm_cpumask": 1, - "mm": 1, - "task_unlock": 1, - "rcu_read_unlock": 1, - "check_for_tasks": 2, - "write_lock_irq": 1, - "tasklist_lock": 2, - "task_cpu": 1, - "TASK_RUNNING": 1, - "utime": 1, - "stime": 1, - "printk": 12, - "KERN_WARNING": 3, - "comm": 1, - "task_pid_nr": 1, - "write_unlock_irq": 1, - "take_cpu_down_param": 3, - "mod": 13, - "*hcpu": 3, - "take_cpu_down": 2, - "*_param": 1, - "*param": 1, - "_param": 1, - "__cpu_disable": 1, - "CPU_DYING": 1, - "param": 2, - "hcpu": 10, - "_cpu_down": 3, - "tasks_frozen": 4, - "CPU_TASKS_FROZEN": 2, - "tcd_param": 2, - ".mod": 1, - ".hcpu": 1, - "num_online_cpus": 2, - "EBUSY": 3, - "CPU_DOWN_PREPARE": 1, - "CPU_DOWN_FAILED": 2, - "__func__": 2, - "out_release": 3, - "__stop_machine": 1, - "cpumask_of": 1, - "idle_cpu": 1, - "cpu_relax": 1, - "__cpu_die": 1, - "CPU_DEAD": 1, - "CPU_POST_DEAD": 1, - "cpu_down": 2, - "__cpuinit": 3, - "_cpu_up": 3, - "*idle": 1, - "cpu_present": 1, - "idle": 4, - "idle_thread_get": 1, - "IS_ERR": 1, - "PTR_ERR": 1, - "CPU_UP_PREPARE": 1, - "out_notify": 3, - "__cpu_up": 1, - "CPU_ONLINE": 1, - "CPU_UP_CANCELED": 1, - "cpu_up": 2, - "CONFIG_MEMORY_HOTPLUG": 2, - "nid": 5, - "pg_data_t": 1, - "*pgdat": 1, - "cpu_possible": 1, - "KERN_ERR": 5, - "CONFIG_IA64": 1, - "cpu_to_node": 1, - "node_online": 1, - "mem_online_node": 1, - "pgdat": 3, - "NODE_DATA": 1, - "node_zonelists": 1, - "_zonerefs": 1, - "zone": 1, - "zonelists_mutex": 2, - "build_all_zonelists": 1, - "CONFIG_PM_SLEEP_SMP": 2, - "cpumask_var_t": 1, - "frozen_cpus": 9, - "__weak": 4, - "arch_disable_nonboot_cpus_begin": 2, - "arch_disable_nonboot_cpus_end": 2, - "disable_nonboot_cpus": 1, - "first_cpu": 3, - "cpumask_first": 1, - "cpu_online_mask": 3, - "cpumask_clear": 2, - "for_each_online_cpu": 1, - "cpumask_set_cpu": 5, - "arch_enable_nonboot_cpus_begin": 2, - "arch_enable_nonboot_cpus_end": 2, - "enable_nonboot_cpus": 1, - "cpumask_empty": 1, - "KERN_INFO": 2, - "for_each_cpu": 1, - "__init": 2, - "alloc_frozen_cpus": 2, - "alloc_cpumask_var": 1, - "GFP_KERNEL": 1, - "__GFP_ZERO": 1, - "core_initcall": 2, - "cpu_hotplug_disable_before_freeze": 2, - "cpu_hotplug_enable_after_thaw": 2, - "cpu_hotplug_pm_callback": 2, + "evicted": 2, + "because": 2, + "Invalidate": 2, + "Evaluates": 1, + "returning": 1, + "cached": 2, + "possible": 1, + "pass": 2, + "optional": 2, + "parameter.": 1, + "Ensure": 1, + "next": 1, + "time": 3, + "queried": 1, + "called.": 1, + "all": 4, + "Returns": 5, + "values": 4, + "currently": 2, + "MessageBus": 3, + "bus.": 1, + "scheduler": 11, + "post": 2, + "RxApp.DeferredScheduler": 2, + "default.": 2, + "Current": 1, + "RxApp": 1, + "global": 1, + "object.": 3, + "ViewModel": 8, + "another": 3, + "s": 3, + "Return": 1, + "instance": 2, + "type.": 3, + "registered": 1, + "ObservableAsPropertyHelper": 6, + "help": 1, + "backed": 1, + "read": 3, + "still": 1, + "created": 2, + "directly": 1, + "more": 16, + "ToProperty": 2, + "ObservableToProperty": 1, + "methods.": 2, + "so": 1, + "output": 1, + "chained": 2, + "example": 2, + "property.": 12, + "Constructs": 4, + "base": 3, + "on.": 6, "action": 2, - "*ptr": 1, - "PM_SUSPEND_PREPARE": 1, - "PM_HIBERNATION_PREPARE": 1, - "PM_POST_SUSPEND": 1, - "PM_POST_HIBERNATION": 1, - "NOTIFY_DONE": 1, - "NOTIFY_OK": 1, - "cpu_hotplug_pm_sync_init": 2, - "pm_notifier": 1, - "notify_cpu_starting": 1, - "CPU_STARTING": 1, - "cpumask_test_cpu": 1, - "CPU_STARTING_FROZEN": 1, - "MASK_DECLARE_1": 3, - "UL": 1, - "MASK_DECLARE_2": 3, - "MASK_DECLARE_4": 3, - "MASK_DECLARE_8": 9, - "cpu_bit_bitmap": 2, - "BITS_PER_LONG": 2, - "BITS_TO_LONGS": 1, - "NR_CPUS": 2, - "DECLARE_BITMAP": 6, - "cpu_all_bits": 2, - "CPU_BITS_ALL": 2, - "CONFIG_INIT_ALL_POSSIBLE": 1, - "cpu_possible_bits": 6, - "CONFIG_NR_CPUS": 5, - "__read_mostly": 5, - "cpumask": 7, - "*const": 4, - "cpu_possible_mask": 2, - "to_cpumask": 15, - "cpu_online_bits": 5, - "cpu_present_bits": 5, - "cpu_present_mask": 2, - "cpu_active_bits": 4, - "cpu_active_mask": 2, - "set_cpu_possible": 1, - "bool": 6, - "possible": 2, - "set_cpu_present": 1, - "present": 2, - "set_cpu_online": 1, - "online": 2, - "set_cpu_active": 1, - "active": 2, - "init_cpu_present": 1, - "*src": 3, - "cpumask_copy": 3, - "init_cpu_possible": 1, - "init_cpu_online": 1, - "yajl_status_to_string": 1, - "yajl_status": 4, - "statStr": 6, - "yajl_status_ok": 1, - "yajl_status_client_canceled": 1, - "yajl_status_insufficient_data": 1, - "yajl_status_error": 1, - "yajl_handle": 10, - "yajl_alloc": 1, - "yajl_callbacks": 1, - "callbacks": 3, - "yajl_parser_config": 1, - "config": 4, - "yajl_alloc_funcs": 3, - "afs": 8, - "allowComments": 4, - "validateUTF8": 3, - "hand": 28, - "afsBuffer": 3, - "realloc": 1, - "yajl_set_default_alloc_funcs": 1, - "YA_MALLOC": 1, - "yajl_handle_t": 1, - "alloc": 6, - "checkUTF8": 1, - "lexer": 4, - "yajl_lex_alloc": 1, - "bytesConsumed": 2, - "decodeBuf": 2, - "yajl_buf_alloc": 1, - "yajl_bs_init": 1, - "stateStack": 3, - "yajl_bs_push": 1, - "yajl_state_start": 1, - "yajl_reset_parser": 1, - "yajl_lex_realloc": 1, - "yajl_free": 1, - "yajl_bs_free": 1, - "yajl_buf_free": 1, - "yajl_lex_free": 1, - "YA_FREE": 2, - "yajl_parse": 2, - "jsonText": 4, - "jsonTextLen": 4, - "yajl_do_parse": 1, - "yajl_parse_complete": 1, - "yajl_get_error": 1, - "verbose": 2, - "yajl_render_error_string": 1, - "yajl_get_bytes_consumed": 1, - "yajl_free_error": 1, - "REFU_USTRING_H": 2, - "": 1, - "RF_MODULE_STRINGS//": 1, - "module": 3, - "": 2, - "": 1, - "argument": 1, - "wrapping": 1, - "functionality": 1, - "": 1, - "unicode": 2, - "opening": 2, - "bracket": 4, - "calling": 4, - "xFF0FFFF": 1, - "rfUTF8_IsContinuationByte2": 1, - "b__": 3, - "0xBF": 1, - "pragma": 1, - "pack": 2, - "push": 1, - "internal": 4, - "author": 1, - "Lefteris": 1, - "09": 1, - "12": 1, - "2010": 1, - "endinternal": 1, - "brief": 1, - "representation": 2, - "The": 1, - "Refu": 2, - "Unicode": 1, - "has": 2, + "take": 2, + "typically": 1, + "t": 2, + "bindings": 13, + "null": 4, + "OAPH": 2, + "at": 2, + "startup.": 1, + "initial": 28, + "normally": 6, + "Dispatcher": 3, + "based": 9, + "last": 1, + "Exception": 1, + "steps": 1, + "taken": 1, + "ensure": 3, + "never": 3, + "complete": 1, + "fail.": 1, + "Converts": 2, + "automatically": 3, + "onChanged": 2, + "raise": 2, + "notification.": 2, + "equivalent": 2, + "convenient.": 1, + "Expression": 7, + "initialized": 2, + "backing": 9, + "field": 10, + "ReactiveObject": 11, + "ObservableAsyncMRUCache": 2, + "memoization": 2, + "asynchronous": 4, + "expensive": 2, + "compute": 1, + "MRU": 1, + "fixed": 1, + "limit": 5, + "cache.": 5, + "guarantees": 6, + "given": 11, + "flight": 2, + "subsequent": 1, + "requests": 4, + "wait": 3, + "first": 1, + "empty": 1, + "web": 6, + "image": 1, + "receives": 1, "two": 1, - "versions": 1, - "One": 1, - "ref": 1, - "what": 1, - "operations": 1, - "can": 2, - "performed": 1, - "extended": 3, - "Strings": 2, - "Functions": 1, - "convert": 1, - "but": 1, - "always": 2, - "Once": 1, - "been": 1, - "created": 1, - "assumed": 1, - "valid": 1, - "every": 1, + "concurrent": 5, + "issue": 2, + "WebRequest": 1, + "does": 1, + "mean": 1, + "request": 3, + "Concurrency": 1, + "limited": 1, + "maxConcurrent": 1, + "too": 1, + "many": 1, + "operations": 6, + "progress": 1, + "further": 1, + "queued": 1, + "slot": 1, + "available.": 1, "performs": 1, - "unless": 1, + "asyncronous": 1, + "async": 3, + "CPU": 1, + "Observable.Return": 1, + "may": 1, + "result.": 2, + "*must*": 1, + "equivalently": 1, + "input": 2, + "being": 1, + "memoized": 1, + "calculationFunc": 2, + "depends": 1, + "varables": 1, + "than": 5, + "unpredictable.": 1, + "reached": 2, + "discarded.": 4, + "maximum": 2, + "regardless": 2, + "caches": 2, + "server.": 2, + "clean": 1, + "up": 25, + "manage": 1, + "disk": 1, + "download": 1, + "save": 2, + "temporary": 1, + "folder": 1, + "onRelease": 1, + "delete": 1, + "file.": 1, + "run": 7, + "defaults": 1, + "TaskpoolScheduler": 2, + "Issues": 1, + "fetch": 1, + "operation.": 1, + "operation": 2, + "finishes.": 1, + "If": 6, + "immediately": 3, + "upon": 1, + "subscribing": 1, + "returned.": 2, + "provide": 2, + "synchronous": 1, + "AsyncGet": 1, + "resulting": 1, + "Works": 2, + "like": 2, + "SelectMany": 2, + "memoizes": 2, + "selector": 5, + "calls.": 2, + "addition": 3, + "no": 4, + "selectors": 2, + "running": 4, + "concurrently": 2, + "queues": 2, + "rest.": 2, + "very": 2, + "services": 2, + "avoid": 2, + "potentially": 2, + "spamming": 2, + "server": 2, + "hundreds": 2, + "requests.": 2, + "similar": 3, + "passed": 1, + "SelectMany.": 1, + "similarly": 1, + "ObservableAsyncMRUCache.AsyncGet": 1, + "must": 2, + "sense.": 1, + "flattened": 2, + "selector.": 2, + "overload": 2, + "useful": 2, + "making": 3, + "service": 1, + "several": 1, + "places": 1, + "paths": 1, + "already": 1, + "configured": 1, + "ObservableAsyncMRUCache.": 1, + "notification": 6, + "Attempts": 1, + "expression": 3, + "expression.": 1, + "entire": 1, + "able": 1, + "followed": 1, "otherwise": 1, - "specified": 1, - "All": 1, - "functions": 2, - "which": 1, - "isinherited": 1, - "StringX": 2, - "their": 1, - "description": 1, - "used": 10, - "safely": 1, - "specific": 1, - "or": 1, + "Given": 3, + "fully": 3, + "filled": 1, + "SetValueToProperty": 1, + "apply": 3, + "target.property": 1, + "This.GetValue": 1, + "observed": 1, + "onto": 1, + "convert": 2, + "stream.": 3, + "ValueIfNotDefault": 1, + "filters": 1, + "BindTo": 1, + "takes": 1, + "applies": 1, + "Conceptually": 1, + "child": 2, + "without": 1, + "checks.": 1, + "set.": 3, + "x.Foo.Bar.Baz": 1, + "disconnects": 1, + "binding.": 1, + "ReactiveCollection.": 1, + "ReactiveCollection": 1, + "existing": 3, + "list.": 2, + "list": 1, + "populate": 1, + "anything": 2, + "Change": 2, + "Tracking": 2, + "Creates": 3, + "adding": 2, + "completes": 4, + "optionally": 2, + "ensuring": 2, + "delay.": 2, + "withDelay": 2, + "leak": 2, + "Timer.": 2, + "always": 4, + "UI": 2, + "thread.": 3, + "put": 2, + "into": 2, + "populated": 4, + "faster": 2, + "delay": 2, + "Select": 3, + "item.": 3, + "creating": 2, + "collections": 1, + "updated": 1, + "respective": 1, + "Model": 1, + "updated.": 1, + "Collection.Select": 1, + "mirror": 1, + "ObservableForProperty": 14, + "ReactiveObject.": 1, + "unlike": 13, + "Selector": 1, + "classes": 2, + "INotifyPropertyChanged.": 1, + "monitor": 1, + "RaiseAndSetIfChanged": 2, + "Setter": 2, + "write": 2, + "assumption": 4, + "named": 2, + "RxApp.GetFieldNameForPropertyNameFunc.": 2, + "almost": 2, + "keyword.": 2, + "newly": 2, + "intended": 5, + "Silverlight": 2, + "WP7": 1, + "reflection": 1, + "cannot": 1, + "private": 1, + "field.": 1, + "Reference": 1, + "Use": 15, + "custom": 4, + "raiseAndSetIfChanged": 1, + "doesn": 1, + "x": 1, + "x.SomeProperty": 1, + "suffice.": 1, + "RaisePropertyChanging": 2, + "mock": 4, + "scenarios": 4, + "manually": 4, + "fake": 4, + "invoke": 4, + "raisePropertyChanging": 4, + "faking": 4, + "RaisePropertyChanged": 2, + "helps": 1, + "make": 2, + "them": 1, + "compatible": 1, + "Rx.Net.": 1, + "declare": 1, + "initialize": 1, + "derive": 1, + "properties/methods": 1, + "MakeObjectReactiveHelper.": 1, + "InUnitTestRunner": 1, + "attempts": 1, + "determine": 1, + "heuristically": 1, + "unit": 3, + "framework.": 1, + "we": 1, + "determined": 1, + "framework": 1, + "running.": 1, + "GetFieldNameForProperty": 1, + "convention": 2, + "GetFieldNameForPropertyNameFunc.": 1, "needs": 1, -<<<<<<< HEAD "found.": 1, "name.": 1, "DeferredScheduler": 1, @@ -122205,2287 +68379,159 @@ "": 1, "": 1, "": 1 -======= - "manipulate": 1, - "Extended": 1, - "To": 1, - "documentation": 1, - "even": 1, - "clearer": 1, - "should": 2, - "marked": 1, - "notinherited": 1, - "cppcode": 1, - "constructor": 1, - "i_StringCHandle": 1, - "**": 6, - "@endcpp": 1, - "@endinternal": 1, - "*/": 1, - "#pragma": 1, - "pop": 1, - "RF_IAMHERE_FOR_DOXYGEN": 22, - "i_rfString_CreateLocal": 2, - "__VA_ARGS__": 66, - "RP_SELECT_FUNC_IF_NARGIS": 5, - "i_SELECT_RF_STRING_CREATE": 1, - "i_SELECT_RF_STRING_CREATE1": 1, - "i_SELECT_RF_STRING_CREATE0": 1, - "///Internal": 1, - "creates": 1, - "i_SELECT_RF_STRING_CREATELOCAL": 1, - "i_SELECT_RF_STRING_CREATELOCAL1": 1, - "i_SELECT_RF_STRING_CREATELOCAL0": 1, - "i_SELECT_RF_STRING_INIT": 1, - "i_SELECT_RF_STRING_INIT1": 1, - "i_SELECT_RF_STRING_INIT0": 1, - "i_SELECT_RF_STRING_CREATE_NC": 1, - "i_SELECT_RF_STRING_CREATE_NC1": 1, - "i_SELECT_RF_STRING_CREATE_NC0": 1, - "i_SELECT_RF_STRING_INIT_NC": 1, - "i_SELECT_RF_STRING_INIT_NC1": 1, - "i_SELECT_RF_STRING_INIT_NC0": 1, - "//@": 1, - "rfString_Assign": 2, - "i_DESTINATION_": 2, - "i_SOURCE_": 2, - "i_rfLMS_WRAP2": 5, - "rfString_ToUTF8": 2, - "i_STRING_": 2, - "rfString_ToCstr": 2, - "uint32_t*length": 1, - "string_": 9, - "startCharacterPos_": 4, - "characterUnicodeValue_": 4, - "j_": 6, - "//Two": 1, - "macros": 1, - "accomplish": 1, - "going": 1, - "backwards.": 1, - "This": 1, - "its": 1, - "pair.": 1, - "rfString_IterateB_Start": 1, - "characterPos_": 5, - "b_index_": 6, - "c_index_": 3, - "rfString_IterateB_End": 1, - "i_STRING1_": 2, - "i_STRING2_": 2, - "i_rfLMSX_WRAP2": 4, - "rfString_Find": 3, - "i_THISSTR_": 60, - "i_SEARCHSTR_": 26, - "i_OPTIONS_": 28, - "i_rfLMS_WRAP3": 4, - "i_RFI8_": 54, - "RF_SELECT_FUNC_IF_NARGGT": 10, - "i_NPSELECT_RF_STRING_FIND": 1, - "i_NPSELECT_RF_STRING_FIND1": 1, - "RF_COMPILE_ERROR": 33, - "i_NPSELECT_RF_STRING_FIND0": 1, - "RF_SELECT_FUNC": 10, - "i_SELECT_RF_STRING_FIND": 1, - "i_SELECT_RF_STRING_FIND2": 1, - "i_SELECT_RF_STRING_FIND3": 1, - "i_SELECT_RF_STRING_FIND1": 1, - "i_SELECT_RF_STRING_FIND0": 1, - "rfString_ToInt": 1, - "int32_t*": 1, - "rfString_ToDouble": 1, - "double*": 1, - "rfString_ScanfAfter": 2, - "i_AFTERSTR_": 8, - "i_FORMAT_": 2, - "i_VAR_": 2, - "i_rfLMSX_WRAP4": 11, - "i_NPSELECT_RF_STRING_COUNT": 1, - "i_NPSELECT_RF_STRING_COUNT1": 1, - "i_NPSELECT_RF_STRING_COUNT0": 1, - "i_SELECT_RF_STRING_COUNT": 1, - "i_SELECT_RF_STRING_COUNT2": 1, - "i_rfLMSX_WRAP3": 5, - "i_SELECT_RF_STRING_COUNT3": 1, - "i_SELECT_RF_STRING_COUNT1": 1, - "i_SELECT_RF_STRING_COUNT0": 1, - "rfString_Between": 3, - "i_rfString_Between": 4, - "i_NPSELECT_RF_STRING_BETWEEN": 1, - "i_NPSELECT_RF_STRING_BETWEEN1": 1, - "i_NPSELECT_RF_STRING_BETWEEN0": 1, - "i_SELECT_RF_STRING_BETWEEN": 1, - "i_SELECT_RF_STRING_BETWEEN4": 1, - "i_LEFTSTR_": 6, - "i_RIGHTSTR_": 6, - "i_RESULT_": 12, - "i_rfLMSX_WRAP5": 9, - "i_SELECT_RF_STRING_BETWEEN5": 1, - "i_SELECT_RF_STRING_BETWEEN3": 1, - "i_SELECT_RF_STRING_BETWEEN2": 1, - "i_SELECT_RF_STRING_BETWEEN1": 1, - "i_SELECT_RF_STRING_BETWEEN0": 1, - "i_NPSELECT_RF_STRING_BEFOREV": 1, - "i_NPSELECT_RF_STRING_BEFOREV1": 1, - "RF_SELECT_FUNC_IF_NARGGT2": 2, - "i_LIMSELECT_RF_STRING_BEFOREV": 1, - "i_NPSELECT_RF_STRING_BEFOREV0": 1, - "i_LIMSELECT_RF_STRING_BEFOREV1": 1, - "i_LIMSELECT_RF_STRING_BEFOREV0": 1, - "i_SELECT_RF_STRING_BEFOREV": 1, - "i_SELECT_RF_STRING_BEFOREV5": 1, - "i_ARG1_": 56, - "i_ARG2_": 56, - "i_ARG3_": 56, - "i_ARG4_": 56, - "i_RFUI8_": 28, - "i_SELECT_RF_STRING_BEFOREV6": 1, - "i_rfLMSX_WRAP6": 2, - "i_SELECT_RF_STRING_BEFOREV7": 1, - "i_rfLMSX_WRAP7": 2, - "i_SELECT_RF_STRING_BEFOREV8": 1, - "i_rfLMSX_WRAP8": 2, - "i_SELECT_RF_STRING_BEFOREV9": 1, - "i_rfLMSX_WRAP9": 2, - "i_SELECT_RF_STRING_BEFOREV10": 1, - "i_rfLMSX_WRAP10": 2, - "i_SELECT_RF_STRING_BEFOREV11": 1, - "i_rfLMSX_WRAP11": 2, - "i_SELECT_RF_STRING_BEFOREV12": 1, - "i_rfLMSX_WRAP12": 2, - "i_SELECT_RF_STRING_BEFOREV13": 1, - "i_rfLMSX_WRAP13": 2, - "i_SELECT_RF_STRING_BEFOREV14": 1, - "i_rfLMSX_WRAP14": 2, - "i_SELECT_RF_STRING_BEFOREV15": 1, - "i_rfLMSX_WRAP15": 2, - "i_SELECT_RF_STRING_BEFOREV16": 1, - "i_rfLMSX_WRAP16": 2, - "i_SELECT_RF_STRING_BEFOREV17": 1, - "i_rfLMSX_WRAP17": 2, - "i_SELECT_RF_STRING_BEFOREV18": 1, - "i_rfLMSX_WRAP18": 2, - "rfString_Before": 3, - "i_NPSELECT_RF_STRING_BEFORE": 1, - "i_NPSELECT_RF_STRING_BEFORE1": 1, - "i_NPSELECT_RF_STRING_BEFORE0": 1, - "i_SELECT_RF_STRING_BEFORE": 1, - "i_SELECT_RF_STRING_BEFORE3": 1, - "i_SELECT_RF_STRING_BEFORE4": 1, - "i_SELECT_RF_STRING_BEFORE2": 1, - "i_SELECT_RF_STRING_BEFORE1": 1, - "i_SELECT_RF_STRING_BEFORE0": 1, - "i_NPSELECT_RF_STRING_AFTER": 1, - "i_NPSELECT_RF_STRING_AFTER1": 1, - "i_NPSELECT_RF_STRING_AFTER0": 1, - "i_SELECT_RF_STRING_AFTER": 1, - "i_SELECT_RF_STRING_AFTER3": 1, - "i_OUTSTR_": 6, - "i_SELECT_RF_STRING_AFTER4": 1, - "i_SELECT_RF_STRING_AFTER2": 1, - "i_SELECT_RF_STRING_AFTER1": 1, - "i_SELECT_RF_STRING_AFTER0": 1, - "i_NPSELECT_RF_STRING_AFTERV": 1, - "i_NPSELECT_RF_STRING_AFTERV1": 1, - "i_LIMSELECT_RF_STRING_AFTERV": 1, - "i_NPSELECT_RF_STRING_AFTERV0": 1, - "i_LIMSELECT_RF_STRING_AFTERV1": 1, - "i_LIMSELECT_RF_STRING_AFTERV0": 1, - "i_SELECT_RF_STRING_AFTERV": 1, - "i_SELECT_RF_STRING_AFTERV5": 1, - "i_SELECT_RF_STRING_AFTERV6": 1, - "i_SELECT_RF_STRING_AFTERV7": 1, - "i_SELECT_RF_STRING_AFTERV8": 1, - "i_SELECT_RF_STRING_AFTERV9": 1, - "i_SELECT_RF_STRING_AFTERV10": 1, - "i_SELECT_RF_STRING_AFTERV11": 1, - "i_SELECT_RF_STRING_AFTERV12": 1, - "i_SELECT_RF_STRING_AFTERV13": 1, - "i_SELECT_RF_STRING_AFTERV14": 1, - "i_SELECT_RF_STRING_AFTERV15": 1, - "i_SELECT_RF_STRING_AFTERV16": 1, - "i_SELECT_RF_STRING_AFTERV17": 1, - "i_SELECT_RF_STRING_AFTERV18": 1, - "i_OTHERSTR_": 4, - "rfString_Prepend": 2, - "rfString_Remove": 3, - "i_NPSELECT_RF_STRING_REMOVE": 1, - "i_NPSELECT_RF_STRING_REMOVE1": 1, - "i_NPSELECT_RF_STRING_REMOVE0": 1, - "i_SELECT_RF_STRING_REMOVE": 1, - "i_SELECT_RF_STRING_REMOVE2": 1, - "i_REPSTR_": 16, - "i_RFUI32_": 8, - "i_SELECT_RF_STRING_REMOVE3": 1, - "i_NUMBER_": 12, - "i_SELECT_RF_STRING_REMOVE4": 1, - "i_SELECT_RF_STRING_REMOVE1": 1, - "i_SELECT_RF_STRING_REMOVE0": 1, - "rfString_KeepOnly": 2, - "I_KEEPSTR_": 2, - "rfString_Replace": 3, - "i_NPSELECT_RF_STRING_REPLACE": 1, - "i_NPSELECT_RF_STRING_REPLACE1": 1, - "i_NPSELECT_RF_STRING_REPLACE0": 1, - "i_SELECT_RF_STRING_REPLACE": 1, - "i_SELECT_RF_STRING_REPLACE3": 1, - "i_SELECT_RF_STRING_REPLACE4": 1, - "i_SELECT_RF_STRING_REPLACE5": 1, - "i_SELECT_RF_STRING_REPLACE2": 1, - "i_SELECT_RF_STRING_REPLACE1": 1, - "i_SELECT_RF_STRING_REPLACE0": 1, - "i_SUBSTR_": 6, - "rfString_Strip": 2, - "rfString_Fwrite": 2, - "i_NPSELECT_RF_STRING_FWRITE": 1, - "i_NPSELECT_RF_STRING_FWRITE1": 1, - "i_NPSELECT_RF_STRING_FWRITE0": 1, - "i_SELECT_RF_STRING_FWRITE": 1, - "i_SELECT_RF_STRING_FWRITE3": 1, - "i_STR_": 8, - "i_FILE_": 16, - "i_ENCODING_": 4, - "i_SELECT_RF_STRING_FWRITE2": 1, - "i_SELECT_RF_STRING_FWRITE1": 1, - "i_SELECT_RF_STRING_FWRITE0": 1, - "rfString_Fwrite_fUTF8": 1, - "closing": 1, - "Attempted": 1, - "manipulation": 1, - "flag": 1, - "off.": 1, - "Rebuild": 1, - "added": 1, - "you": 1, - "#endif//": 1, - "guards": 2, - "READLINE_READLINE_CATS": 3, - "": 1, - "atscntrb_readline_rl_library_version": 1, - "rl_library_version": 1, - "atscntrb_readline_rl_readline_version": 1, - "rl_readline_version": 1, - "atscntrb_readline_readline": 1, - "readline": 1, - "REFU_IO_H": 2, - "xA": 1, - "RF_CR": 1, - "xD": 1, - "REFU_WIN32_VERSION": 1, - "i_PLUSB_WIN32": 2, - "foff_rft": 2, - "off64_t": 1, - "///Fseek": 1, - "Ftelll": 1, - "definitions": 1, - "rfFseek": 2, - "i_OFFSET_": 4, - "i_WHENCE_": 4, - "_fseeki64": 1, - "rfFtell": 2, - "_ftelli64": 1, - "fseeko64": 1, - "ftello64": 1, - "rfFReadLine_UTF32BE": 1, - "rfFgets_UTF32BE": 1, - "rfPopen": 2, - "command": 2, - "i_rfPopen": 2, - "i_CMD_": 2, - "i_MODE_": 2, - "rfPclose": 1, - "///closing": 1, - "#endif//include": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 2, - "": 1, - "": 1, - "": 1, - "sharedObjectsStruct": 1, - "shared": 1, - "R_Zero": 2, - "R_PosInf": 2, - "R_NegInf": 2, - "R_Nan": 2, - "redisServer": 1, - "server": 1, - "redisCommand": 6, - "*commandTable": 1, - "redisCommandTable": 5, - "getCommand": 1, - "setCommand": 1, - "noPreloadGetKeys": 6, - "setnxCommand": 1, - "setexCommand": 1, - "psetexCommand": 1, - "appendCommand": 1, - "strlenCommand": 1, - "delCommand": 1, - "existsCommand": 1, - "setbitCommand": 1, - "getbitCommand": 1, - "setrangeCommand": 1, - "getrangeCommand": 2, - "incrCommand": 1, - "decrCommand": 1, - "mgetCommand": 1, - "rpushCommand": 1, - "lpushCommand": 1, - "rpushxCommand": 1, - "lpushxCommand": 1, - "linsertCommand": 1, - "rpopCommand": 1, - "lpopCommand": 1, - "brpopCommand": 1, - "brpoplpushCommand": 1, - "blpopCommand": 1, - "llenCommand": 1, - "lindexCommand": 1, - "lsetCommand": 1, - "lrangeCommand": 1, - "ltrimCommand": 1, - "lremCommand": 1, - "rpoplpushCommand": 1, - "saddCommand": 1, - "sremCommand": 1, - "smoveCommand": 1, - "sismemberCommand": 1, - "scardCommand": 1, - "spopCommand": 1, - "srandmemberCommand": 1, - "sinterCommand": 2, - "sinterstoreCommand": 1, - "sunionCommand": 1, - "sunionstoreCommand": 1, - "sdiffCommand": 1, - "sdiffstoreCommand": 1, - "zaddCommand": 1, - "zincrbyCommand": 1, - "zremCommand": 1, - "zremrangebyscoreCommand": 1, - "zremrangebyrankCommand": 1, - "zunionstoreCommand": 1, - "zunionInterGetKeys": 4, - "zinterstoreCommand": 1, - "zrangeCommand": 1, - "zrangebyscoreCommand": 1, - "zrevrangebyscoreCommand": 1, - "zcountCommand": 1, - "zrevrangeCommand": 1, - "zcardCommand": 1, - "zscoreCommand": 1, - "zrankCommand": 1, - "zrevrankCommand": 1, - "hsetCommand": 1, - "hsetnxCommand": 1, - "hgetCommand": 1, - "hmsetCommand": 1, - "hmgetCommand": 1, - "hincrbyCommand": 1, - "hincrbyfloatCommand": 1, - "hdelCommand": 1, - "hlenCommand": 1, - "hkeysCommand": 1, - "hvalsCommand": 1, - "hgetallCommand": 1, - "hexistsCommand": 1, - "incrbyCommand": 1, - "decrbyCommand": 1, - "incrbyfloatCommand": 1, - "getsetCommand": 1, - "msetCommand": 1, - "msetnxCommand": 1, - "randomkeyCommand": 1, - "selectCommand": 1, - "moveCommand": 1, - "renameCommand": 1, - "renameGetKeys": 2, - "renamenxCommand": 1, - "expireCommand": 1, - "expireatCommand": 1, - "pexpireCommand": 1, - "pexpireatCommand": 1, - "keysCommand": 1, - "dbsizeCommand": 1, - "authCommand": 3, - "pingCommand": 2, - "echoCommand": 2, - "saveCommand": 1, - "bgsaveCommand": 1, - "bgrewriteaofCommand": 1, - "shutdownCommand": 2, - "lastsaveCommand": 1, - "typeCommand": 1, - "multiCommand": 2, - "execCommand": 2, - "discardCommand": 2, - "syncCommand": 1, - "flushdbCommand": 1, - "flushallCommand": 1, - "sortCommand": 1, - "infoCommand": 4, - "monitorCommand": 2, - "ttlCommand": 1, - "pttlCommand": 1, - "persistCommand": 1, - "slaveofCommand": 2, - "debugCommand": 1, - "configCommand": 1, - "subscribeCommand": 2, - "unsubscribeCommand": 2, - "psubscribeCommand": 2, - "punsubscribeCommand": 2, - "publishCommand": 1, - "watchCommand": 2, - "unwatchCommand": 1, - "clusterCommand": 1, - "restoreCommand": 1, - "migrateCommand": 1, - "askingCommand": 1, - "dumpCommand": 1, - "objectCommand": 1, - "clientCommand": 1, - "evalCommand": 1, - "evalShaCommand": 1, - "slowlogCommand": 1, - "scriptCommand": 2, - "timeCommand": 2, - "bitopCommand": 1, - "bitcountCommand": 1, - "redisLogRaw": 3, - "*msg": 7, - "syslogLevelMap": 2, - "LOG_DEBUG": 1, - "LOG_INFO": 1, - "LOG_NOTICE": 1, - "LOG_WARNING": 1, - "FILE": 3, - "*fp": 3, - "rawmode": 2, - "REDIS_LOG_RAW": 2, - "xff": 3, - "server.verbosity": 4, - "fp": 13, - "server.logfile": 8, - "fopen": 3, - "msg": 10, - "timeval": 4, - "tv": 8, - "gettimeofday": 4, - "strftime": 1, - "localtime": 1, - "tv.tv_sec": 4, - "snprintf": 2, - "tv.tv_usec/1000": 1, - "getpid": 7, - "server.syslog_enabled": 3, - "syslog": 1, - "redisLog": 33, - "*fmt": 2, - "ap": 4, - "REDIS_MAX_LOGMSG_LEN": 1, - "fmt": 4, - "vsnprintf": 1, - "redisLogFromHandler": 2, - "server.daemonize": 5, - "O_APPEND": 2, - "O_CREAT": 2, - "O_WRONLY": 2, - "STDOUT_FILENO": 2, - "ll2string": 3, - "write": 7, - "time": 10, - "oom": 3, - "REDIS_WARNING": 19, - "sleep": 1, - "abort": 1, - "ustime": 7, - "*1000000": 1, - "tv.tv_usec": 3, - "mstime": 5, - "/1000": 1, - "exitFromChild": 1, - "retcode": 3, - "COVERAGE_TEST": 1, - "dictVanillaFree": 1, - "*privdata": 8, - "*val": 6, - "DICT_NOTUSED": 6, - "privdata": 8, - "zfree": 2, - "dictListDestructor": 2, - "listRelease": 1, - "list*": 1, - "dictSdsKeyCompare": 6, - "*key1": 4, - "*key2": 4, - "l1": 4, - "l2": 3, - "sdslen": 14, - "sds": 13, - "key1": 5, - "key2": 5, - "dictSdsKeyCaseCompare": 2, - "strcasecmp": 13, - "dictRedisObjectDestructor": 7, - "decrRefCount": 6, - "dictSdsDestructor": 4, - "sdsfree": 2, - "dictObjKeyCompare": 2, - "robj": 7, - "*o1": 2, - "*o2": 2, - "o1": 7, - "ptr": 18, - "o2": 7, - "dictObjHash": 2, - "*key": 5, - "key": 9, - "dictGenHashFunction": 5, - "dictSdsHash": 4, - "dictSdsCaseHash": 2, - "dictGenCaseHashFunction": 1, - "dictEncObjKeyCompare": 4, - "robj*": 3, - "REDIS_ENCODING_INT": 4, - "getDecodedObject": 3, - "dictEncObjHash": 4, - "REDIS_ENCODING_RAW": 1, - "hash": 12, - "dictType": 8, - "setDictType": 1, - "zsetDictType": 1, - "dbDictType": 2, - "keyptrDictType": 2, - "commandTableDictType": 2, - "hashDictType": 1, - "keylistDictType": 4, - "clusterNodesDictType": 1, - "htNeedsResize": 3, - "dict": 11, - "dictSlots": 3, - "dictSize": 10, - "DICT_HT_INITIAL_SIZE": 2, - "used*100/size": 1, - "REDIS_HT_MINFILL": 1, - "tryResizeHashTables": 2, - "server.dbnum": 8, - "server.db": 23, - ".dict": 9, - "dictResize": 2, - ".expires": 8, - "incrementallyRehash": 2, - "dictIsRehashing": 2, - "dictRehashMilliseconds": 2, - "updateDictResizePolicy": 2, - "server.rdb_child_pid": 12, - "server.aof_child_pid": 10, - "dictEnableResize": 1, - "dictDisableResize": 1, - "activeExpireCycle": 2, - "timelimit": 5, - "*REDIS_EXPIRELOOKUPS_TIME_PERC/REDIS_HZ/100": 1, - "expired": 4, - "redisDb": 3, - "*db": 3, - "db": 10, - "expires": 3, - "slots": 2, - "now": 5, - "num*100/slots": 1, - "REDIS_EXPIRELOOKUPS_PER_CRON": 2, - "dictEntry": 2, - "*de": 2, - "de": 12, - "dictGetRandomKey": 4, - "dictGetSignedIntegerVal": 1, - "dictGetKey": 4, - "*keyobj": 2, - "createStringObject": 11, - "propagateExpire": 2, - "keyobj": 6, - "dbDelete": 2, - "server.stat_expiredkeys": 3, - "xf": 1, - "REDIS_EXPIRELOOKUPS_PER_CRON/4": 1, - "updateLRUClock": 3, - "server.lruclock": 2, - "server.unixtime/REDIS_LRU_CLOCK_RESOLUTION": 1, - "REDIS_LRU_CLOCK_MAX": 1, - "trackOperationsPerSecond": 2, - "server.ops_sec_last_sample_time": 3, - "ops": 1, - "server.stat_numcommands": 4, - "server.ops_sec_last_sample_ops": 3, - "ops_sec": 3, - "ops*1000/t": 1, - "server.ops_sec_samples": 4, - "server.ops_sec_idx": 4, - "%": 2, - "REDIS_OPS_SEC_SAMPLES": 3, - "getOperationsPerSecond": 2, - "sum": 3, - "clientsCronHandleTimeout": 2, - "redisClient": 12, - "time_t": 4, - "server.unixtime": 10, - "server.maxidletime": 3, - "REDIS_SLAVE": 3, - "REDIS_MASTER": 2, - "REDIS_BLOCKED": 2, - "pubsub_channels": 2, - "listLength": 14, - "pubsub_patterns": 2, - "lastinteraction": 3, - "REDIS_VERBOSE": 3, - "freeClient": 1, - "bpop.timeout": 2, - "addReply": 13, - "shared.nullmultibulk": 2, - "unblockClientWaitingData": 1, - "clientsCronResizeQueryBuffer": 2, - "querybuf_size": 3, - "sdsAllocSize": 1, - "querybuf": 6, - "idletime": 2, - "REDIS_MBULK_BIG_ARG": 1, - "querybuf_size/": 1, - "querybuf_peak": 2, - "sdsavail": 1, - "sdsRemoveFreeSpace": 1, - "clientsCron": 2, - "numclients": 3, - "server.clients": 7, - "iterations": 4, - "numclients/": 1, - "REDIS_HZ*10": 1, - "listNode": 4, - "*head": 1, - "listRotate": 1, - "listFirst": 2, - "listNodeValue": 3, - "run_with_period": 6, - "_ms_": 2, - "loops": 2, - "/REDIS_HZ": 2, - "serverCron": 2, - "aeEventLoop": 2, - "*eventLoop": 2, - "*clientData": 1, - "server.cronloops": 3, - "REDIS_NOTUSED": 5, - "eventLoop": 2, - "clientData": 1, - "server.watchdog_period": 3, - "watchdogScheduleSignal": 1, - "zmalloc_used_memory": 8, - "server.stat_peak_memory": 5, - "server.shutdown_asap": 3, - "prepareForShutdown": 2, - "REDIS_OK": 23, - "vkeys": 8, - "server.activerehashing": 2, - "server.slaves": 9, - "server.aof_rewrite_scheduled": 4, - "rewriteAppendOnlyFileBackground": 2, - "statloc": 5, - "wait3": 1, - "WNOHANG": 1, - "exitcode": 3, - "bysignal": 4, - "backgroundSaveDoneHandler": 1, - "backgroundRewriteDoneHandler": 1, - "server.saveparamslen": 3, - "saveparam": 1, - "*sp": 1, - "server.saveparams": 2, - "server.dirty": 3, - "sp": 4, - "changes": 2, - "server.lastsave": 3, - "seconds": 2, - "REDIS_NOTICE": 13, - "rdbSaveBackground": 1, - "server.rdb_filename": 4, - "server.aof_rewrite_perc": 3, - "server.aof_current_size": 2, - "server.aof_rewrite_min_size": 2, - "base": 1, - "server.aof_rewrite_base_size": 4, - "growth": 3, - "server.aof_current_size*100/base": 1, - "server.aof_flush_postponed_start": 2, - "flushAppendOnlyFile": 2, - "server.masterhost": 7, - "freeClientsInAsyncFreeQueue": 1, - "replicationCron": 1, - "server.cluster_enabled": 6, - "clusterCron": 1, - "beforeSleep": 2, - "*ln": 3, - "server.unblocked_clients": 4, - "ln": 8, - "redisAssert": 1, - "listDelNode": 1, - "REDIS_UNBLOCKED": 1, - "server.current_client": 3, - "processInputBuffer": 1, - "createSharedObjects": 2, - "shared.crlf": 2, - "createObject": 31, - "REDIS_STRING": 31, - "sdsnew": 27, - "shared.ok": 3, - "shared.err": 1, - "shared.emptybulk": 1, - "shared.czero": 1, - "shared.cone": 1, - "shared.cnegone": 1, - "shared.nullbulk": 1, - "shared.emptymultibulk": 1, - "shared.pong": 2, - "shared.queued": 2, - "shared.wrongtypeerr": 1, - "shared.nokeyerr": 1, - "shared.syntaxerr": 2, - "shared.sameobjecterr": 1, - "shared.outofrangeerr": 1, - "shared.noscripterr": 1, - "shared.loadingerr": 2, - "shared.slowscripterr": 2, - "shared.masterdownerr": 2, - "shared.bgsaveerr": 2, - "shared.roslaveerr": 2, - "shared.oomerr": 2, - "shared.space": 1, - "shared.colon": 1, - "shared.plus": 1, - "REDIS_SHARED_SELECT_CMDS": 1, - "shared.select": 1, - "sdscatprintf": 24, - "sdsempty": 8, - "shared.messagebulk": 1, - "shared.pmessagebulk": 1, - "shared.subscribebulk": 1, - "shared.unsubscribebulk": 1, - "shared.psubscribebulk": 1, - "shared.punsubscribebulk": 1, - "shared.del": 1, - "shared.rpop": 1, - "shared.lpop": 1, - "REDIS_SHARED_INTEGERS": 1, - "shared.integers": 2, - "REDIS_SHARED_BULKHDR_LEN": 1, - "shared.mbulkhdr": 1, - "shared.bulkhdr": 1, - "initServerConfig": 2, - "getRandomHexChars": 1, - "server.runid": 3, - "REDIS_RUN_ID_SIZE": 2, - "server.arch_bits": 3, - "server.port": 7, - "REDIS_SERVERPORT": 1, - "server.bindaddr": 2, - "server.unixsocket": 7, - "server.unixsocketperm": 2, - "server.ipfd": 9, - "server.sofd": 9, - "REDIS_DEFAULT_DBNUM": 1, - "REDIS_MAXIDLETIME": 1, - "server.client_max_querybuf_len": 1, - "REDIS_MAX_QUERYBUF_LEN": 1, - "server.loading": 4, - "server.syslog_ident": 2, - "zstrdup": 5, - "server.syslog_facility": 2, - "LOG_LOCAL0": 1, - "server.aof_state": 7, - "REDIS_AOF_OFF": 5, - "server.aof_fsync": 1, - "AOF_FSYNC_EVERYSEC": 1, - "server.aof_no_fsync_on_rewrite": 1, - "REDIS_AOF_REWRITE_PERC": 1, - "REDIS_AOF_REWRITE_MIN_SIZE": 1, - "server.aof_last_fsync": 1, - "server.aof_rewrite_time_last": 2, - "server.aof_rewrite_time_start": 2, - "server.aof_delayed_fsync": 2, - "server.aof_fd": 4, - "server.aof_selected_db": 1, - "server.pidfile": 3, - "server.aof_filename": 3, - "server.requirepass": 4, - "server.rdb_compression": 1, - "server.rdb_checksum": 1, - "server.maxclients": 6, - "REDIS_MAX_CLIENTS": 1, - "server.bpop_blocked_clients": 2, - "server.maxmemory": 6, - "server.maxmemory_policy": 11, - "REDIS_MAXMEMORY_VOLATILE_LRU": 3, - "server.maxmemory_samples": 3, - "server.hash_max_ziplist_entries": 1, - "REDIS_HASH_MAX_ZIPLIST_ENTRIES": 1, - "server.hash_max_ziplist_value": 1, - "REDIS_HASH_MAX_ZIPLIST_VALUE": 1, - "server.list_max_ziplist_entries": 1, - "REDIS_LIST_MAX_ZIPLIST_ENTRIES": 1, - "server.list_max_ziplist_value": 1, - "REDIS_LIST_MAX_ZIPLIST_VALUE": 1, - "server.set_max_intset_entries": 1, - "REDIS_SET_MAX_INTSET_ENTRIES": 1, - "server.zset_max_ziplist_entries": 1, - "REDIS_ZSET_MAX_ZIPLIST_ENTRIES": 1, - "server.zset_max_ziplist_value": 1, - "REDIS_ZSET_MAX_ZIPLIST_VALUE": 1, - "server.repl_ping_slave_period": 1, - "REDIS_REPL_PING_SLAVE_PERIOD": 1, - "server.repl_timeout": 1, - "REDIS_REPL_TIMEOUT": 1, - "server.cluster.configfile": 1, - "server.lua_caller": 1, - "server.lua_time_limit": 1, - "REDIS_LUA_TIME_LIMIT": 1, - "server.lua_client": 1, - "server.lua_timedout": 2, - "resetServerSaveParams": 2, - "appendServerSaveParams": 3, - "*60": 1, - "server.masterauth": 1, - "server.masterport": 2, - "server.master": 3, - "server.repl_state": 6, - "REDIS_REPL_NONE": 1, - "server.repl_syncio_timeout": 1, - "REDIS_REPL_SYNCIO_TIMEOUT": 1, - "server.repl_serve_stale_data": 2, - "server.repl_slave_ro": 2, - "server.repl_down_since": 2, - "server.client_obuf_limits": 9, - "REDIS_CLIENT_LIMIT_CLASS_NORMAL": 3, - ".hard_limit_bytes": 3, - ".soft_limit_bytes": 3, - ".soft_limit_seconds": 3, - "REDIS_CLIENT_LIMIT_CLASS_SLAVE": 3, - "*1024*256": 1, - "*1024*64": 1, - "REDIS_CLIENT_LIMIT_CLASS_PUBSUB": 3, - "*1024*32": 1, - "*1024*8": 1, - "/R_Zero": 2, - "R_Zero/R_Zero": 1, - "server.commands": 1, - "dictCreate": 6, - "populateCommandTable": 2, - "server.delCommand": 1, - "lookupCommandByCString": 3, - "server.multiCommand": 1, - "server.lpushCommand": 1, - "server.slowlog_log_slower_than": 1, - "REDIS_SLOWLOG_LOG_SLOWER_THAN": 1, - "server.slowlog_max_len": 1, - "REDIS_SLOWLOG_MAX_LEN": 1, - "server.assert_failed": 1, - "server.assert_file": 1, - "server.assert_line": 1, - "server.bug_report_start": 1, - "adjustOpenFilesLimit": 2, - "rlim_t": 3, - "maxfiles": 6, - "rlimit": 1, - "limit": 3, - "getrlimit": 1, - "RLIMIT_NOFILE": 2, - "oldlimit": 5, - "limit.rlim_cur": 2, - "limit.rlim_max": 1, - "setrlimit": 1, - "initServer": 2, - "signal": 2, - "SIGHUP": 1, - "SIG_IGN": 2, - "SIGPIPE": 1, - "setupSignalHandlers": 2, - "openlog": 1, - "LOG_PID": 1, - "LOG_NDELAY": 1, - "LOG_NOWAIT": 1, - "listCreate": 6, - "server.clients_to_close": 1, - "server.monitors": 2, - "server.el": 7, - "aeCreateEventLoop": 1, - "zmalloc": 2, - "*server.dbnum": 1, - "anetTcpServer": 1, - "server.neterr": 4, - "ANET_ERR": 2, - "unlink": 3, - "anetUnixServer": 1, - ".blocking_keys": 1, - ".watched_keys": 1, - ".id": 1, - "server.pubsub_channels": 2, - "server.pubsub_patterns": 4, - "listSetFreeMethod": 1, - "freePubsubPattern": 1, - "listSetMatchMethod": 1, - "listMatchPubsubPattern": 1, - "aofRewriteBufferReset": 1, - "server.aof_buf": 3, - "server.rdb_save_time_last": 2, - "server.rdb_save_time_start": 2, - "server.stat_numconnections": 2, - "server.stat_evictedkeys": 3, - "server.stat_starttime": 2, - "server.stat_keyspace_misses": 2, - "server.stat_keyspace_hits": 2, - "server.stat_fork_time": 2, - "server.stat_rejected_conn": 2, - "server.lastbgsave_status": 3, - "server.stop_writes_on_bgsave_err": 2, - "aeCreateTimeEvent": 1, - "aeCreateFileEvent": 2, - "AE_READABLE": 2, - "acceptTcpHandler": 1, - "AE_ERR": 2, - "acceptUnixHandler": 1, - "REDIS_AOF_ON": 2, - "LL*": 1, - "REDIS_MAXMEMORY_NO_EVICTION": 2, - "clusterInit": 1, - "scriptingInit": 1, - "slowlogInit": 1, - "bioInit": 1, - "numcommands": 5, - "*f": 2, - "sflags": 1, - "retval": 3, - "arity": 3, - "addReplyErrorFormat": 1, - "authenticated": 3, - "proc": 14, - "addReplyError": 6, - "getkeys_proc": 1, - "firstkey": 1, - "hashslot": 3, - "server.cluster.state": 1, - "REDIS_CLUSTER_OK": 1, - "ask": 3, - "clusterNode": 1, - "*n": 1, - "getNodeByQuery": 1, - "server.cluster.myself": 1, - "addReplySds": 3, - "ip": 4, - "freeMemoryIfNeeded": 2, - "REDIS_CMD_DENYOOM": 1, - "REDIS_ERR": 5, - "REDIS_CMD_WRITE": 2, - "REDIS_REPL_CONNECTED": 3, - "tolower": 2, - "REDIS_MULTI": 1, - "queueMultiCommand": 1, - "call": 1, - "REDIS_CALL_FULL": 1, - "save": 2, - "REDIS_SHUTDOWN_SAVE": 1, - "nosave": 2, - "REDIS_SHUTDOWN_NOSAVE": 1, - "SIGKILL": 2, - "rdbRemoveTempFile": 1, - "aof_fsync": 1, - "rdbSave": 1, - "addReplyBulk": 1, - "addReplyMultiBulkLen": 1, - "addReplyBulkLongLong": 2, - "bytesToHuman": 3, - "n/": 3, - "LL*1024*1024": 2, - "LL*1024*1024*1024": 1, - "genRedisInfoString": 2, - "*section": 2, - "uptime": 2, - "rusage": 1, - "self_ru": 2, - "c_ru": 2, - "lol": 3, - "bib": 3, - "allsections": 12, - "defsections": 11, - "sections": 11, - "section": 14, - "getrusage": 2, - "RUSAGE_SELF": 1, - "RUSAGE_CHILDREN": 1, - "getClientsMaxBuffers": 1, - "utsname": 1, - "sdscat": 14, - "uname": 1, - "REDIS_VERSION": 4, - "redisGitSHA1": 3, - "strtol": 2, - "redisGitDirty": 3, - "name.sysname": 1, - "name.release": 1, - "name.machine": 1, - "aeGetApiName": 1, - "__GNUC_PATCHLEVEL__": 1, - "uptime/": 1, - "*24": 1, - "hmem": 3, - "peak_hmem": 3, - "zmalloc_get_rss": 1, - "lua_gc": 1, - "server.lua": 1, - "LUA_GCCOUNT": 1, - "*1024LL": 1, - "zmalloc_get_fragmentation_ratio": 1, - "ZMALLOC_LIB": 2, - "aofRewriteBufferSize": 2, - "bioPendingJobsOfType": 1, - "REDIS_BIO_AOF_FSYNC": 1, - "perc": 3, - "eta": 4, - "elapsed": 3, - "off_t": 1, - "remaining_bytes": 1, - "server.loading_total_bytes": 3, - "server.loading_loaded_bytes": 3, - "server.loading_start_time": 2, - "elapsed*remaining_bytes": 1, - "/server.loading_loaded_bytes": 1, - "REDIS_REPL_TRANSFER": 2, - "server.repl_transfer_left": 1, - "server.repl_transfer_lastio": 1, - "slaveid": 3, - "listIter": 2, - "li": 6, - "listRewind": 2, - "listNext": 2, - "*slave": 2, - "*state": 1, - "anetPeerToString": 1, - "slave": 3, - "replstate": 1, - "REDIS_REPL_WAIT_BGSAVE_START": 1, - "REDIS_REPL_WAIT_BGSAVE_END": 1, - "REDIS_REPL_SEND_BULK": 1, - "REDIS_REPL_ONLINE": 1, - "self_ru.ru_stime.tv_sec": 1, - "self_ru.ru_stime.tv_usec/1000000": 1, - "self_ru.ru_utime.tv_sec": 1, - "self_ru.ru_utime.tv_usec/1000000": 1, - "c_ru.ru_stime.tv_sec": 1, - "c_ru.ru_stime.tv_usec/1000000": 1, - "c_ru.ru_utime.tv_sec": 1, - "c_ru.ru_utime.tv_usec/1000000": 1, - "calls": 4, - "microseconds": 1, - "microseconds/c": 1, - "keys": 4, - "REDIS_MONITOR": 1, - "slaveseldb": 1, - "listAddNodeTail": 1, - "mem_used": 9, - "mem_tofree": 3, - "mem_freed": 4, - "slaves": 3, - "obuf_bytes": 3, - "getClientOutputBufferMemoryUsage": 1, - "keys_freed": 3, - "bestval": 5, - "bestkey": 9, - "REDIS_MAXMEMORY_ALLKEYS_LRU": 2, - "REDIS_MAXMEMORY_ALLKEYS_RANDOM": 2, - "REDIS_MAXMEMORY_VOLATILE_RANDOM": 1, - "thiskey": 7, - "thisval": 8, - "dictFind": 1, - "dictGetVal": 2, - "estimateObjectIdleTime": 1, - "REDIS_MAXMEMORY_VOLATILE_TTL": 1, - "delta": 54, - "flushSlavesOutputBuffers": 1, - "linuxOvercommitMemoryValue": 2, - "fgets": 1, - "atoi": 3, - "linuxOvercommitMemoryWarning": 2, - "createPidFile": 2, - "daemonize": 2, - "STDIN_FILENO": 1, - "STDERR_FILENO": 2, - "usage": 2, - "redisAsciiArt": 2, - "*16": 2, - "ascii_logo": 1, - "sigtermHandler": 2, - "sig": 2, - "sigaction": 6, - "act": 6, - "sigemptyset": 2, - "act.sa_mask": 2, - "act.sa_flags": 2, - "act.sa_handler": 1, - "SIGTERM": 1, - "HAVE_BACKTRACE": 1, - "SA_NODEFER": 1, - "SA_RESETHAND": 1, - "SA_SIGINFO": 1, - "act.sa_sigaction": 1, - "sigsegvHandler": 1, - "SIGSEGV": 1, - "SIGBUS": 1, - "SIGFPE": 1, - "SIGILL": 1, - "memtest": 2, - "megabytes": 1, - "passes": 1, - "zmalloc_enable_thread_safeness": 1, - "srand": 1, - "dictSetHashFunctionSeed": 1, - "*configfile": 1, - "configfile": 2, - "sdscatrepr": 1, - "loadServerConfig": 1, - "loadAppendOnlyFile": 1, - "/1000000": 2, - "rdbLoad": 1, - "aeSetBeforeSleepProc": 1, - "aeMain": 1, - "aeDeleteEventLoop": 1, - "BOOTSTRAP_H": 2, - "*true": 1, - "*false": 1, - "*eof": 1, - "*empty_list": 1, - "*global_enviroment": 1, - "obj_type": 1, - "scm_bool": 1, - "scm_empty_list": 1, - "scm_eof": 1, - "scm_char": 1, - "scm_int": 1, - "scm_pair": 1, - "scm_symbol": 1, - "scm_prim_fun": 1, - "scm_lambda": 1, - "scm_str": 1, - "scm_file": 1, - "*eval_proc": 1, - "*maybe_add_begin": 1, - "*code": 2, - "init_enviroment": 1, - "*env": 4, - "eval_err": 1, - "__attribute__": 1, - "noreturn": 1, - "define_var": 1, - "set_var": 1, - "*get_var": 1, - "*cond2nested_if": 1, - "*cond": 1, - "*let2lambda": 1, - "*let": 1, - "*and2nested_if": 1, - "*and": 1, - "*or2nested_if": 1, - "*or": 1, - "COMMIT_H": 2, - "*util": 1, - "indegree": 1, - "*parents": 4, - "*tree": 3, - "decoration": 1, - "name_decoration": 3, - "*commit_list_insert": 1, - "commit_list_count": 1, - "*l": 1, - "*commit_list_insert_by_date": 1, - "free_commit_list": 1, - "cmit_fmt": 3, - "CMIT_FMT_RAW": 1, - "CMIT_FMT_MEDIUM": 2, - "CMIT_FMT_DEFAULT": 1, - "CMIT_FMT_SHORT": 1, - "CMIT_FMT_FULL": 1, - "CMIT_FMT_FULLER": 1, - "CMIT_FMT_ONELINE": 1, - "CMIT_FMT_EMAIL": 1, - "CMIT_FMT_USERFORMAT": 1, - "CMIT_FMT_UNSPECIFIED": 1, - "pretty_print_context": 6, - "abbrev": 1, - "*subject": 1, - "*after_subject": 1, - "preserve_subject": 1, - "date_mode": 2, - "date_mode_explicit": 1, - "need_8bit_cte": 2, - "show_notes": 1, - "reflog_walk_info": 1, - "*reflog_info": 1, - "*output_encoding": 2, - "userformat_want": 2, - "notes": 1, - "has_non_ascii": 1, - "*text": 1, - "rev_info": 2, - "*logmsg_reencode": 1, - "*reencode_commit_message": 1, - "**encoding_p": 1, - "get_commit_format": 1, - "*arg": 1, - "*format_subject": 1, - "*sb": 7, - "*line_separator": 1, - "userformat_find_requirements": 1, - "format_commit_message": 1, - "*context": 1, - "pretty_print_commit": 1, - "*pp": 4, - "pp_commit_easy": 1, - "pp_user_info": 1, - "*what": 1, - "*line": 1, - "*encoding": 2, - "pp_title_line": 1, - "**msg_p": 2, - "pp_remainder": 1, - "indent": 1, - "*pop_most_recent_commit": 1, - "mark": 3, - "*pop_commit": 1, - "**stack": 1, - "clear_commit_marks": 1, - "clear_commit_marks_for_object_array": 1, - "object_array": 2, - "sort_in_topological_order": 1, - "list": 1, - "lifo": 1, - "FLEX_ARRAY": 1, - "*read_graft_line": 1, - "*lookup_commit_graft": 1, - "*get_merge_bases": 1, - "*rev1": 1, - "*rev2": 1, - "*get_merge_bases_many": 1, - "*one": 1, - "**twos": 1, - "*get_octopus_merge_bases": 1, - "*in": 1, - "register_shallow": 1, - "unregister_shallow": 1, - "for_each_commit_graft": 1, - "each_commit_graft_fn": 1, - "is_repository_shallow": 1, - "*get_shallow_commits": 1, - "*heads": 2, - "shallow_flag": 1, - "not_shallow_flag": 1, - "is_descendant_of": 1, - "in_merge_bases": 1, - "interactive_add": 1, - "patch": 1, - "run_add_interactive": 1, - "*revision": 1, - "*patch_mode": 1, - "**pathspec": 1, - "single_parent": 1, - "*reduce_heads": 1, - "commit_extra_header": 7, - "append_merge_tag_headers": 1, - "***tail": 1, - "commit_tree": 1, - "*author": 2, - "*sign_commit": 2, - "commit_tree_extended": 1, - "*read_commit_extra_headers": 1, - "*read_commit_extra_header_lines": 1, - "free_commit_extra_headers": 1, - "*extra": 1, - "merge_remote_util": 1, - "*get_merge_parent": 1, - "parse_signed_commit": 1, - "*message": 1, - "*signature": 1, - "git_cache_init": 1, - "git_cache": 4, - "*cache": 4, - "git_cached_obj_freeptr": 1, - "free_ptr": 2, - "git__size_t_powerof2": 1, - "cache": 26, - "size_mask": 6, - "lru_count": 1, - "free_obj": 4, - "git_mutex_init": 1, - "nodes": 10, - "git_cached_obj": 5, - "GITERR_CHECK_ALLOC": 3, - "git_cache_free": 1, - "git_cached_obj_decref": 3, - "*git_cache_get": 1, - "*oid": 2, - "*node": 2, - "*result": 1, - "oid": 17, - "git_mutex_lock": 2, - "node": 9, - "git_oid_cmp": 6, - "git_cached_obj_incref": 3, - "git_mutex_unlock": 2, - "*git_cache_try_store": 1, - "*_entry": 1, - "*entry": 2, - "_entry": 1, - "entry": 17, - "HELLO_H": 2, - "hello": 1, - "": 1, - "_Included_jni_JniLayer": 2, - "JNIEXPORT": 6, - "jlong": 6, - "JNICALL": 6, - "Java_jni_JniLayer_jni_1layer_1initialize": 1, - "JNIEnv": 6, - "jobject": 6, - "jintArray": 1, - "jint": 7, - "Java_jni_JniLayer_jni_1layer_1mainloop": 1, - "Java_jni_JniLayer_jni_1layer_1set_1button": 1, - "Java_jni_JniLayer_jni_1layer_1set_1analog": 1, - "jfloat": 1, - "Java_jni_JniLayer_jni_1layer_1report_1analog_1chg": 1, - "Java_jni_JniLayer_jni_1layer_1kill": 1, - "VALUE": 13, - "rb_cRDiscount": 4, - "rb_rdiscount_to_html": 2, - "*res": 2, - "szres": 8, - "rb_funcall": 14, - "rb_intern": 15, - "rb_str_buf_new": 2, - "Check_Type": 2, - "T_STRING": 2, - "rb_rdiscount__get_flags": 3, - "MMIOT": 2, - "*doc": 2, - "mkd_string": 2, - "RSTRING_PTR": 2, - "RSTRING_LEN": 2, - "mkd_compile": 2, - "doc": 6, - "mkd_document": 1, - "res": 4, - "rb_str_cat": 4, - "mkd_cleanup": 2, - "rb_respond_to": 1, - "rb_rdiscount_toc_content": 2, - "mkd_toc": 1, - "ruby_obj": 11, - "MKD_TABSTOP": 1, - "MKD_NOHEADER": 1, - "Qtrue": 10, - "MKD_NOPANTS": 1, - "MKD_NOHTML": 1, - "MKD_TOC": 1, - "MKD_NOIMAGE": 1, - "MKD_NOLINKS": 1, - "MKD_NOTABLES": 1, - "MKD_STRICT": 1, - "MKD_AUTOLINK": 1, - "MKD_SAFELINK": 1, - "MKD_NO_EXT": 1, - "Init_rdiscount": 1, - "rb_define_class": 1, - "rb_cObject": 1, - "rb_define_method": 2, - "*diff_prefix_from_pathspec": 1, - "git_strarray": 2, - "*pathspec": 2, - "git_buf": 3, - "GIT_BUF_INIT": 3, - "*scan": 2, - "git_buf_common_prefix": 1, - "pathspec": 15, - "scan": 4, - "prefix.ptr": 2, - "git__iswildcard": 1, - "git_buf_truncate": 1, - "prefix.size": 1, - "git_buf_detach": 1, - "git_buf_free": 4, - "diff_pathspec_is_interesting": 2, - "*str": 1, - "diff_path_matches_pathspec": 3, - "git_diff_list": 17, - "*diff": 8, - "*path": 2, - "git_attr_fnmatch": 4, - "*match": 3, - "pathspec.length": 1, - "git_vector_foreach": 4, - "p_fnmatch": 1, - "pattern": 3, - "path": 20, - "FNM_NOMATCH": 1, - "GIT_ATTR_FNMATCH_HASWILD": 1, - "strncmp": 1, - "GIT_ATTR_FNMATCH_NEGATIVE": 1, - "git_diff_delta": 19, - "*diff_delta__alloc": 1, - "git_delta_t": 5, - "*delta": 6, - "git__calloc": 3, - "old_file.path": 12, - "git_pool_strdup": 3, - "pool": 12, - "new_file.path": 6, - "opts.flags": 8, - "GIT_DIFF_REVERSE": 3, - "GIT_DELTA_ADDED": 4, - "GIT_DELTA_DELETED": 7, - "*diff_delta__dup": 1, - "*d": 1, - "git_pool": 4, - "*pool": 3, - "fail": 19, - "*diff_delta__merge_like_cgit": 1, - "*b": 6, - "*dup": 1, - "diff_delta__dup": 3, - "dup": 15, - "new_file.oid": 7, - "git_oid_cpy": 5, - "new_file.mode": 4, - "new_file.size": 3, - "new_file.flags": 4, - "old_file.oid": 3, - "GIT_DELTA_UNTRACKED": 5, - "GIT_DELTA_IGNORED": 5, - "GIT_DELTA_UNMODIFIED": 11, - "diff_delta__from_one": 5, - "git_index_entry": 8, - "GIT_DIFF_INCLUDE_IGNORED": 1, - "GIT_DIFF_INCLUDE_UNTRACKED": 1, - "diff_delta__alloc": 2, - "GIT_DELTA_MODIFIED": 3, - "old_file.mode": 2, - "old_file.size": 1, - "file_size": 6, - "old_file.flags": 2, - "GIT_DIFF_FILE_VALID_OID": 4, - "git_vector_insert": 4, - "deltas": 8, - "diff_delta__from_two": 2, - "*old_entry": 1, - "*new_entry": 1, - "*new_oid": 1, - "GIT_DIFF_INCLUDE_UNMODIFIED": 1, - "*temp": 1, - "old_entry": 5, - "new_entry": 5, - "new_oid": 3, - "git_oid_iszero": 2, - "*diff_strdup_prefix": 1, - "git_pool_strcat": 1, - "git_pool_strndup": 1, - "diff_delta__cmp": 3, - "*da": 1, - "da": 2, - "config_bool": 5, - "*cfg": 2, - "defvalue": 2, - "git_config_get_bool": 1, - "cfg": 6, - "giterr_clear": 1, - "*git_diff_list_alloc": 1, - "git_repository": 7, - "*repo": 7, - "git_diff_options": 7, - "*opts": 6, - "repo": 23, - "git_vector_init": 3, - "git_pool_init": 2, - "git_repository_config__weakptr": 1, - "diffcaps": 13, - "GIT_DIFFCAPS_HAS_SYMLINKS": 2, - "GIT_DIFFCAPS_ASSUME_UNCHANGED": 2, - "GIT_DIFFCAPS_TRUST_EXEC_BIT": 2, - "GIT_DIFFCAPS_TRUST_CTIME": 2, - "opts": 24, - "opts.pathspec": 2, - "opts.old_prefix": 4, - "diff_strdup_prefix": 2, - "old_prefix": 2, - "DIFF_OLD_PREFIX_DEFAULT": 1, - "opts.new_prefix": 4, - "new_prefix": 2, - "DIFF_NEW_PREFIX_DEFAULT": 1, - "*swap": 1, - "pathspec.count": 2, - "*pattern": 1, - "pathspec.strings": 1, - "GIT_ATTR_FNMATCH_ALLOWSPACE": 1, - "git_attr_fnmatch__parse": 1, - "GIT_ENOTFOUND": 1, - "git_diff_list_free": 3, - "deltas.contents": 1, - "git_vector_free": 3, - "pathspec.contents": 1, - "git_pool_clear": 2, - "oid_for_workdir_item": 2, - "full_path": 3, - "git_buf_joinpath": 1, - "git_repository_workdir": 1, - "S_ISLNK": 2, - "git_odb__hashlink": 1, - "full_path.ptr": 2, - "git__is_sizet": 1, - "giterr_set": 1, - "GITERR_OS": 1, - "git_futils_open_ro": 1, - "git_odb__hashfd": 1, - "GIT_OBJ_BLOB": 1, - "p_close": 1, - "EXEC_BIT_MASK": 3, - "maybe_modified": 2, - "git_iterator": 8, - "*old_iter": 2, - "*oitem": 2, - "*new_iter": 2, - "*nitem": 2, - "noid": 4, - "*use_noid": 1, - "omode": 8, - "oitem": 29, - "nmode": 10, - "nitem": 32, - "GIT_UNUSED": 1, - "old_iter": 8, - "S_ISREG": 1, - "GIT_MODE_TYPE": 3, - "GIT_MODE_PERMS_MASK": 1, - "flags_extended": 2, - "GIT_IDXENTRY_INTENT_TO_ADD": 1, - "GIT_IDXENTRY_SKIP_WORKTREE": 1, - "new_iter": 13, - "GIT_ITERATOR_WORKDIR": 2, - "ctime.seconds": 2, - "mtime.seconds": 2, - "GIT_DIFFCAPS_USE_DEV": 1, - "dev": 2, - "ino": 2, - "uid": 2, - "gid": 2, - "S_ISGITLINK": 1, - "git_submodule": 1, - "*sub": 1, - "GIT_DIFF_IGNORE_SUBMODULES": 1, - "git_submodule_lookup": 1, - "ignore": 1, - "GIT_SUBMODULE_IGNORE_ALL": 1, - "use_noid": 2, - "diff_from_iterators": 5, - "**diff_ptr": 1, - "ignore_prefix": 6, - "git_diff_list_alloc": 1, - "old_src": 1, - "new_src": 3, - "git_iterator_current": 2, - "git_iterator_advance": 5, - "delta_type": 8, - "git_buf_len": 1, - "git__prefixcmp": 2, - "git_buf_cstr": 1, - "S_ISDIR": 1, - "GIT_DIFF_RECURSE_UNTRACKED_DIRS": 1, - "git_iterator_current_is_ignored": 2, - "git_buf_sets": 1, - "git_iterator_advance_into_directory": 1, - "git_iterator_free": 4, - "*diff_ptr": 2, - "git_diff_tree_to_tree": 1, - "git_tree": 4, - "*old_tree": 3, - "*new_tree": 1, - "**diff": 4, - "diff_prefix_from_pathspec": 4, - "old_tree": 5, - "new_tree": 2, - "git_iterator_for_tree_range": 4, - "git_diff_index_to_tree": 1, - "git_iterator_for_index_range": 2, - "git_diff_workdir_to_index": 1, - "git_iterator_for_workdir_range": 2, - "git_diff_workdir_to_tree": 1, - "git_diff_merge": 1, - "*onto": 1, - "*from": 1, - "onto_pool": 7, - "git_vector": 1, - "onto_new": 6, - "onto": 7, - "deltas.length": 4, - "GIT_VECTOR_GET": 2, - "diff_delta__merge_like_cgit": 1, - "git_vector_swap": 1, - "git_pool_swap": 1 ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method }, - "Standard ML": { - "structure": 15, - "LazyBase": 4, - "LAZY_BASE": 5, - "struct": 13, - "type": 6, - "a": 78, - "exception": 2, - "Undefined": 6, - "fun": 60, - "delay": 6, - "f": 46, - "force": 18, - "(": 840, - ")": 845, - "val": 147, - "undefined": 2, - "fn": 127, - "raise": 6, - "end": 55, - "LazyMemoBase": 4, - "datatype": 29, - "|": 226, - "Done": 2, - "of": 91, - "lazy": 13, - "unit": 7, - "-": 20, - "let": 44, - "open": 9, - "B": 2, - "inject": 5, - "x": 74, - "isUndefined": 4, - "ignore": 3, - ";": 21, - "false": 32, - "handle": 4, - "true": 36, - "toString": 4, - "if": 51, - "then": 51, - "else": 51, - "eqBy": 5, - "p": 10, - "y": 50, - "eq": 3, - "op": 2, - "compare": 8, - "Ops": 3, - "map": 3, - "Lazy": 2, - "LazyFn": 4, - "LazyMemo": 2, - "functor": 2, - "Main": 1, - "S": 2, - "MAIN_STRUCTS": 1, - "MAIN": 1, - "Compile": 3, - "Place": 1, - "t": 23, - "Files": 3, - "Generated": 4, - "MLB": 4, - "O": 4, - "OUT": 3, - "SML": 6, - "TypeCheck": 3, - "toInt": 1, - "int": 1, - "OptPred": 1, - "Target": 1, - "string": 14, - "Yes": 1, - "Show": 1, - "Anns": 1, - "PathMap": 1, - "gcc": 5, - "ref": 45, - "arScript": 3, - "asOpts": 6, - "{": 79, - "opt": 34, - "pred": 15, - "OptPred.t": 3, - "}": 79, - "list": 10, - "[": 104, - "]": 108, - "ccOpts": 6, - "linkOpts": 6, - "buildConstants": 2, - "bool": 9, - "debugRuntime": 3, - "debugFormat": 5, - "Dwarf": 3, - "DwarfPlus": 3, - "Dwarf2": 3, - "Stabs": 3, - "StabsPlus": 3, - "option": 6, - "NONE": 47, - "expert": 3, - "explicitAlign": 3, - "Control.align": 1, - "explicitChunk": 2, - "Control.chunk": 1, - "explicitCodegen": 5, - "Native": 5, - "Explicit": 5, - "Control.codegen": 3, - "keepGenerated": 3, - "keepO": 3, - "output": 16, - "profileSet": 3, - "profileTimeSet": 3, - "runtimeArgs": 3, - "show": 2, - "Show.t": 1, - "stop": 10, - "Place.OUT": 1, - "parseMlbPathVar": 3, - "line": 9, - "String.t": 1, - "case": 83, - "String.tokens": 7, - "Char.isSpace": 8, - "var": 3, - "path": 7, - "SOME": 68, - "_": 83, - "readMlbPathMap": 2, - "file": 14, - "File.t": 12, - "not": 1, - "File.canRead": 1, - "Error.bug": 14, - "concat": 52, - "List.keepAllMap": 4, - "File.lines": 2, - "String.forall": 4, - "v": 4, - "targetMap": 5, - "arch": 11, - "MLton.Platform.Arch.t": 3, - "os": 13, - "MLton.Platform.OS.t": 3, - "target": 28, - "Promise.lazy": 1, - "targetsDir": 5, - "OS.Path.mkAbsolute": 4, - "relativeTo": 4, - "Control.libDir": 1, - "potentialTargets": 2, - "Dir.lsDirs": 1, - "targetDir": 5, - "osFile": 2, - "OS.Path.joinDirFile": 3, - "dir": 4, - "archFile": 2, - "File.contents": 2, - "List.first": 2, - "MLton.Platform.OS.fromString": 1, - "MLton.Platform.Arch.fromString": 1, - "in": 40, - "setTargetType": 3, - "usage": 48, - "List.peek": 7, - "...": 23, - "Control": 3, - "Target.arch": 2, - "Target.os": 2, - "hasCodegen": 8, - "cg": 21, - "z": 73, - "Control.Target.arch": 4, - "Control.Target.os": 2, - "Control.Format.t": 1, - "AMD64": 2, - "x86Codegen": 9, - "X86": 3, - "amd64Codegen": 8, - "<": 3, - "Darwin": 6, - "orelse": 7, - "Control.format": 3, - "Executable": 5, - "Archive": 4, - "hasNativeCodegen": 2, - "defaultAlignIs8": 3, - "Alpha": 1, - "ARM": 1, - "HPPA": 1, - "IA64": 1, - "MIPS": 1, - "Sparc": 1, - "S390": 1, - "makeOptions": 3, - "s": 168, - "Fail": 2, - "reportAnnotation": 4, - "flag": 12, - "e": 18, - "Control.Elaborate.Bad": 1, - "Control.Elaborate.Deprecated": 1, - "ids": 2, - "Control.warnDeprecated": 1, - "Out.output": 2, - "Out.error": 3, - "List.toString": 1, - "Control.Elaborate.Id.name": 1, - "Control.Elaborate.Good": 1, - "Control.Elaborate.Other": 1, - "Popt": 1, - "tokenizeOpt": 4, - "opts": 4, - "List.foreach": 5, - "tokenizeTargetOpt": 4, - "List.map": 3, - "Normal": 29, - "SpaceString": 48, - "Align4": 2, - "Align8": 2, - "Expert": 72, - "o": 8, - "List.push": 22, - "OptPred.Yes": 6, - "boolRef": 20, - "ChunkPerFunc": 1, - "OneChunk": 1, - "String.hasPrefix": 2, - "prefix": 3, - "String.dropPrefix": 1, - "Char.isDigit": 3, - "Int.fromString": 4, - "n": 4, - "Coalesce": 1, - "limit": 1, - "Bool": 10, - "b": 58, - "closureConvertGlobalize": 1, - "closureConvertShrink": 1, - "String.concatWith": 2, - "Control.Codegen.all": 2, - "Control.Codegen.toString": 2, - "name": 7, - "value": 4, - "Compile.setCommandLineConstant": 2, - "contifyIntoMain": 1, - "debug": 4, - "Control.Elaborate.processDefault": 1, - "Control.defaultChar": 1, - "Control.defaultInt": 5, - "Control.defaultReal": 2, - "Control.defaultWideChar": 2, - "Control.defaultWord": 4, - "Regexp.fromString": 7, - "re": 34, - "Regexp.compileDFA": 4, - "diagPasses": 1, - "Control.Elaborate.processEnabled": 2, - "dropPasses": 1, - "intRef": 8, - "errorThreshhold": 1, - "emitMain": 1, - "exportHeader": 3, - "Control.Format.all": 2, - "Control.Format.toString": 2, - "gcCheck": 1, - "Limit": 1, - "First": 1, - "Every": 1, - "Native.IEEEFP": 1, - "indentation": 1, - "Int": 8, - "i": 8, - "inlineNonRec": 6, - "small": 19, - "product": 19, - "#product": 1, - "inlineIntoMain": 1, - "loops": 18, - "inlineLeafA": 6, - "repeat": 18, - "size": 19, - "inlineLeafB": 6, - "keepCoreML": 1, - "keepDot": 1, - "keepMachine": 1, - "keepRSSA": 1, - "keepSSA": 1, - "keepSSA2": 1, - "keepSXML": 1, - "keepXML": 1, - "keepPasses": 1, - "libname": 9, - "loopPasses": 1, - "Int.toString": 3, - "markCards": 1, - "maxFunctionSize": 1, - "mlbPathVars": 4, - "@": 3, - "Native.commented": 1, - "Native.copyProp": 1, - "Native.cutoff": 1, - "Native.liveTransfer": 1, - "Native.liveStack": 1, - "Native.moveHoist": 1, - "Native.optimize": 1, - "Native.split": 1, - "Native.shuffle": 1, - "err": 1, - "optimizationPasses": 1, - "il": 10, - "set": 10, - "Result.Yes": 6, - "Result.No": 5, - "polyvariance": 9, - "hofo": 12, - "rounds": 12, - "preferAbsPaths": 1, - "profPasses": 1, - "profile": 6, - "ProfileNone": 2, - "ProfileAlloc": 1, - "ProfileCallStack": 3, - "ProfileCount": 1, - "ProfileDrop": 1, - "ProfileLabel": 1, - "ProfileTimeLabel": 4, - "ProfileTimeField": 2, - "profileBranch": 1, - "Regexp": 3, - "seq": 3, - "anys": 6, - "compileDFA": 3, - "profileC": 1, - "profileInclExcl": 2, - "profileIL": 3, - "ProfileSource": 1, - "ProfileSSA": 1, - "ProfileSSA2": 1, - "profileRaise": 2, - "profileStack": 1, - "profileVal": 1, - "Show.Anns": 1, - "Show.PathMap": 1, - "showBasis": 1, - "showDefUse": 1, - "showTypes": 1, - "Control.optimizationPasses": 4, - "String.equals": 4, - "Place.Files": 2, - "Place.Generated": 2, - "Place.O": 3, - "Place.TypeCheck": 1, - "#target": 2, - "Self": 2, - "Cross": 2, - "SpaceString2": 6, - "OptPred.Target": 6, - "#1": 1, - "trace": 4, - "#2": 2, - "typeCheck": 1, - "verbosity": 4, - "Silent": 3, - "Top": 5, - "Pass": 1, - "Detail": 1, - "warnAnn": 1, - "warnDeprecated": 1, - "zoneCutDepth": 1, - "style": 6, - "arg": 3, - "desc": 3, - "mainUsage": 3, - "parse": 2, - "Popt.makeUsage": 1, - "showExpert": 1, - "commandLine": 5, - "args": 8, - "lib": 2, - "libDir": 2, - "OS.Path.mkCanonical": 1, - "result": 1, - "targetStr": 3, - "libTargetDir": 1, - "targetArch": 4, - "archStr": 1, - "String.toLower": 2, - "MLton.Platform.Arch.toString": 2, - "targetOS": 5, - "OSStr": 2, - "MLton.Platform.OS.toString": 1, - "positionIndependent": 3, - "format": 7, - "MinGW": 4, - "Cygwin": 4, - "Library": 6, - "LibArchive": 3, - "Control.positionIndependent": 1, - "align": 1, - "codegen": 4, - "CCodegen": 1, - "MLton.Rusage.measureGC": 1, - "exnHistory": 1, - "Bool.toString": 1, - "Control.profile": 1, - "Control.ProfileCallStack": 1, - "sizeMap": 1, - "Control.libTargetDir": 1, - "ty": 4, - "Bytes.toBits": 1, - "Bytes.fromInt": 1, - "lookup": 4, - "use": 2, - "on": 1, - "must": 1, - "x86": 1, - "with": 1, - "ieee": 1, - "fp": 1, - "can": 1, - "No": 1, - "Out.standard": 1, - "input": 22, - "rest": 3, - "inputFile": 1, - "File.base": 5, - "File.fileOf": 1, - "start": 6, - "base": 3, - "rec": 1, - "loop": 3, - "suf": 14, - "hasNum": 2, - "sufs": 2, - "String.hasSuffix": 2, - "suffix": 8, - "Place.t": 1, - "List.exists": 1, - "File.withIn": 1, - "csoFiles": 1, - "Place.compare": 1, - "GREATER": 5, - "Place.toString": 2, - "EQUAL": 5, - "LESS": 5, - "printVersion": 1, - "tempFiles": 3, - "tmpDir": 2, - "tmpVar": 2, - "default": 2, - "MLton.Platform.OS.host": 2, - "Process.getEnv": 1, - "d": 32, - "temp": 3, - "out": 9, - "File.temp": 1, - "OS.Path.concat": 1, - "Out.close": 2, - "maybeOut": 10, - "maybeOutBase": 4, - "File.extension": 3, - "outputBase": 2, - "ext": 1, - "OS.Path.splitBaseExt": 1, - "defLibname": 6, - "OS.Path.splitDirFile": 1, - "String.extract": 1, - "toAlNum": 2, - "c": 42, - "Char.isAlphaNum": 1, - "#": 3, - "CharVector.map": 1, - "atMLtons": 1, - "Vector.fromList": 1, - "tokenize": 1, - "rev": 2, - "gccDebug": 3, - "asDebug": 2, - "compileO": 3, - "inputs": 7, - "libOpts": 2, - "System.system": 4, - "List.concat": 4, - "linkArchives": 1, - "String.contains": 1, - "File.move": 1, - "from": 1, - "to": 1, - "mkOutputO": 3, - "Counter.t": 3, - "File.dirOf": 2, - "Counter.next": 1, - "compileC": 2, - "debugSwitches": 2, - "compileS": 2, - "compileCSO": 1, - "List.forall": 1, - "Counter.new": 1, - "oFiles": 2, - "List.fold": 1, - "ac": 4, - "extension": 6, - "Option.toString": 1, - "mkCompileSrc": 1, - "listFiles": 2, - "elaborate": 1, - "compile": 2, - "outputs": 2, - "r": 3, - "make": 1, - "Int.inc": 1, - "Out.openOut": 1, - "print": 4, - "outputHeader": 2, - "done": 3, - "Control.No": 1, - "l": 2, - "Layout.output": 1, - "Out.newline": 1, - "Vector.foreach": 1, - "String.translate": 1, - "/": 1, - "Type": 1, - "Check": 1, - ".c": 1, - ".s": 1, - "invalid": 1, - "MLton": 1, - "Exn.finally": 1, - "File.remove": 1, - "doit": 1, - "Process.makeCommandLine": 1, - "main": 1, - "mainWrapped": 1, - "OS.Process.exit": 1, - "CommandLine.arguments": 1, - "RedBlackTree": 1, - "key": 16, - "*": 9, - "entry": 12, - "dict": 17, - "Empty": 15, - "Red": 41, - "local": 1, - "lk": 4, - "tree": 4, - "and": 2, - "zipper": 3, - "TOP": 5, - "LEFTB": 10, - "RIGHTB": 10, - "delete": 3, - "zip": 19, - "Black": 40, - "LEFTR": 8, - "RIGHTR": 9, - "bbZip": 28, - "w": 17, - "delMin": 8, - "Match": 1, - "joinRed": 3, - "needB": 2, - "del": 8, - "NotFound": 2, - "entry1": 16, - "as": 7, - "key1": 8, - "datum1": 4, - "joinBlack": 1, - "insertShadow": 3, - "datum": 1, - "oldEntry": 7, - "ins": 8, - "left": 10, - "right": 10, - "restore_left": 1, - "restore_right": 1, - "app": 3, - "ap": 7, - "new": 1, - "insert": 2, - "table": 14, - "clear": 1, - "signature": 2, - "sig": 2, - "LAZY": 1, - "order": 2 - }, - "Logos": { - "%": 15, - "hook": 2, - "ABC": 2, - "-": 3, - "(": 8, - "id": 2, - ")": 8, - "a": 1, - "B": 1, - "b": 1, - "{": 4, - "log": 1, - ";": 8, - "return": 2, - "orig": 2, - "nil": 2, - "}": 4, - "end": 4, - "subclass": 1, - "DEF": 1, - "NSObject": 1, - "init": 3, - "[": 2, - "c": 1, - "RuntimeAccessibleClass": 1, - "alloc": 1, - "]": 2, - "group": 1, - "OptionalHooks": 2, - "void": 1, - "release": 1, - "self": 1, - "retain": 1, - "ctor": 1, - "if": 1, - "OptionalCondition": 1 - }, - "Omgrofl": { - "lol": 14, - "iz": 11, - "wtf": 1, - "liek": 1, - "lmao": 1, - "brb": 1, - "w00t": 1, + "XProc": { + "": 1, + "version=": 2, + "encoding=": 1, + "": 1, + "xmlns": 2, + "p=": 1, + "c=": 1, + "": 1, + "port=": 2, + "": 1, + "": 1, "Hello": 1, - "World": 1, - "rofl": 13, - "lool": 5, - "loool": 6, - "stfu": 1 + "world": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1 + }, + "XQuery": { + "(": 38, + "-": 486, + "xproc.xqm": 1, + "core": 1, + "xqm": 1, + "contains": 1, + "entry": 2, + "points": 1, + "primary": 1, + "eval": 3, + "step": 5, + "function": 3, + "and": 3, + "control": 1, + "functions.": 1, + ")": 38, + "xquery": 1, + "version": 1, + "encoding": 1, + ";": 25, + "module": 6, + "namespace": 8, + "xproc": 17, + "declare": 24, + "namespaces": 5, + "p": 2, + "c": 1, + "err": 1, + "imports": 1, + "import": 4, + "util": 1, + "at": 4, + "const": 1, + "parse": 8, + "u": 2, + "options": 2, + "boundary": 1, + "space": 1, + "preserve": 1, + "option": 1, + "saxon": 1, + "output": 1, + "functions": 1, + "variable": 13, + "run": 2, + "run#6": 1, + "choose": 1, + "try": 1, + "catch": 1, + "group": 1, + "for": 1, + "each": 1, + "viewport": 1, + "library": 1, + "pipeline": 8, + "list": 1, + "all": 1, + "declared": 1, + "enum": 3, + "{": 5, + "": 1, + "name=": 1, + "ns": 1, + "": 1, + "}": 5, + "": 1, + "": 1, + "point": 1, + "stdin": 1, + "dflag": 1, + "tflag": 1, + "bindings": 2, + "STEP": 3, + "I": 1, + "preprocess": 1, + "let": 6, + "validate": 1, + "explicit": 3, + "AST": 2, + "name": 1, + "type": 1, + "ast": 1, + "element": 1, + "parse/@*": 1, + "sort": 1, + "parse/*": 1, + "II": 1, + "eval_result": 1, + "III": 1, + "serialize": 1, + "return": 2, + "results": 1, + "serialized_result": 2 + }, + "XSLT": { + "": 1, + "version=": 2, + "": 1, + "xmlns": 1, + "xsl=": 1, + "": 1, + "match=": 1, + "": 1, + "": 1, + "

": 1, + "My": 1, + "CD": 1, + "Collection": 1, + "

": 1, + "": 1, + "border=": 1, + "": 2, + "bgcolor=": 1, + "": 2, + "Artist": 1, + "": 2, + "": 1, + "select=": 3, + "": 2, + "": 1, + "
": 2, + "Title": 1, + "
": 2, + "": 2, + "
": 1, + "": 1, + "": 1, + "
": 1, + "
": 1 }, -<<<<<<< HEAD "Xojo": { "#tag": 88, "Class": 3, @@ -125787,1095 +69833,12 @@ "Mask": 74, "Mathematica": 1857, "Matlab": 11942, -======= - "Opa": { - "server": 1, - "Server.one_page_server": 1, - "(": 4, - "-": 1, - "

": 2, - "Hello": 2, - "world": 2, - "

": 2, - ")": 4, - "Server.start": 1, - "Server.http": 1, - "{": 2, - "page": 1, - "function": 1, - "}": 2, - "title": 1 - }, - "Python": { - "xspacing": 4, - "#": 21, - "How": 2, - "far": 1, - "apart": 1, - "should": 1, - "each": 1, - "horizontal": 1, - "location": 1, - "be": 1, - "spaced": 1, - "maxwaves": 3, - "total": 1, - "of": 5, - "waves": 1, - "to": 5, - "add": 1, - "together": 1, - "theta": 3, - "amplitude": 3, - "[": 161, - "]": 161, - "Height": 1, - "wave": 2, - "dx": 8, - "yvalues": 7, - "def": 74, - "setup": 2, - "(": 762, - ")": 773, - "size": 2, - "frameRate": 1, - "colorMode": 1, - "RGB": 1, - "w": 2, - "width": 1, - "+": 44, - "for": 65, - "i": 13, - "in": 85, - "range": 5, - "amplitude.append": 1, - "random": 2, - "period": 2, - "many": 1, - "pixels": 1, - "before": 1, - "the": 6, - "repeats": 1, - "dx.append": 1, - "TWO_PI": 1, - "/": 26, - "*": 37, - "_": 6, - "yvalues.append": 1, - "draw": 2, - "background": 2, - "calcWave": 2, - "renderWave": 2, - "len": 11, - "j": 7, - "x": 28, - "if": 146, - "%": 33, - "sin": 1, - "else": 31, - "cos": 1, - "noStroke": 2, - "fill": 2, - "ellipseMode": 1, - "CENTER": 1, - "v": 13, - "enumerate": 2, - "ellipse": 1, - "height": 1, - "SHEBANG#!python": 4, - "print": 39, - "from": 34, - ".globals": 1, - "import": 47, - "request": 1, - "http_method_funcs": 2, - "frozenset": 2, - "class": 14, - "View": 2, - "object": 6, - "A": 1, - "which": 1, - "methods": 5, - "this": 2, - "pluggable": 1, - "view": 2, - "can": 1, - "handle.": 1, - "None": 86, - "The": 1, - "canonical": 1, - "way": 1, - "decorate": 2, - "-": 33, - "based": 1, - "views": 1, - "is": 29, - "return": 57, - "value": 9, - "as_view": 1, - ".": 1, - "However": 1, - "since": 1, - "moves": 1, - "parts": 1, - "logic": 1, - "declaration": 1, - "place": 1, - "where": 1, - "it": 1, - "s": 1, - "also": 1, - "used": 1, - "instantiating": 1, - "view.view_class": 1, - "cls": 32, - "view.__name__": 1, - "name": 39, - "view.__doc__": 1, - "cls.__doc__": 3, - "view.__module__": 1, - "cls.__module__": 1, - "view.methods": 1, - "cls.methods": 1, - "MethodViewType": 2, - "type": 6, - "__new__": 2, - "bases": 6, - "d": 5, - "rv": 2, - "type.__new__": 1, - "not": 64, - "set": 3, - "rv.methods": 2, - "or": 27, - "key": 5, - "methods.add": 1, - "key.upper": 1, - "sorted": 1, - "MethodView": 1, - "__metaclass__": 3, - "dispatch_request": 1, - "self": 100, - "*args": 4, - "**kwargs": 9, - "meth": 5, - "getattr": 30, - "request.method.lower": 1, - "and": 35, - "request.method": 2, - "assert": 7, - "args": 8, - "argparse": 1, - "matplotlib.pyplot": 1, - "as": 11, - "pl": 1, - "numpy": 1, - "np": 1, - "scipy.optimize": 1, - "op": 6, - "prettytable": 1, - "PrettyTable": 6, - "__docformat__": 1, - "S": 4, - "e": 13, - "phif": 7, - "U": 10, - "main": 4, - "options": 3, - "_parse_args": 2, - "V": 12, - "data": 22, - "np.genfromtxt": 8, - "delimiter": 8, - "t": 8, - "U_err": 7, - "offset": 13, - "np.mean": 1, - "np.linspace": 9, - "min": 10, - "max": 11, - "y": 10, - "np.ones": 11, - "x.size": 2, - "pl.plot": 9, - "**6": 6, - "label": 18, - ".format": 11, - "pl.errorbar": 8, - "yerr": 8, - "linestyle": 8, - "marker": 4, - "pl.grid": 5, - "True": 20, - "pl.legend": 5, - "loc": 5, - "pl.title": 5, - "u": 9, - "pl.xlabel": 5, - "ur": 11, - "pl.ylabel": 5, - "pl.savefig": 5, - "pl.clf": 5, - "glanz": 13, - "matt": 13, - "schwarz": 13, - "weiss": 13, - "T0": 1, - "T0_err": 2, - "glanz_phi": 4, - "matt_phi": 4, - "schwarz_phi": 4, - "weiss_phi": 4, - "T_err": 7, - "sigma": 4, - "boltzmann": 12, - "T": 6, - "epsilon": 7, - "T**4": 1, - "glanz_popt": 3, - "glanz_pconv": 1, - "op.curve_fit": 6, - "matt_popt": 3, - "matt_pconv": 1, - "schwarz_popt": 3, - "schwarz_pconv": 1, - "weiss_popt": 3, - "weiss_pconv": 1, - "glanz_x": 3, - "glanz_y": 2, - "*glanz_popt": 1, - "color": 8, - "matt_x": 3, - "matt_y": 2, - "*matt_popt": 1, - "schwarz_x": 3, - "schwarz_y": 2, - "*schwarz_popt": 1, - "weiss_x": 3, - "weiss_y": 2, - "*weiss_popt": 1, - "np.sqrt": 17, - "glanz_pconv.diagonal": 2, - "matt_pconv.diagonal": 2, - "schwarz_pconv.diagonal": 2, - "weiss_pconv.diagonal": 2, - "xerr": 6, - "U_err/S": 4, - "header": 5, - "glanz_table": 2, - "row": 10, - "zip": 8, - ".size": 4, - "*T_err": 4, - "glanz_phi.size": 1, - "*U_err/S": 4, - "glanz_table.add_row": 1, - "matt_table": 2, - "matt_phi.size": 1, - "matt_table.add_row": 1, - "schwarz_table": 2, - "schwarz_phi.size": 1, - "schwarz_table.add_row": 1, - "weiss_table": 2, - "weiss_phi.size": 1, - "weiss_table.add_row": 1, - "T0**4": 1, - "prop": 5, - "{": 25, - "}": 25, - "phi": 5, - "c": 3, - "a": 2, - "b": 11, - "a*x": 1, - "d**": 2, - "dy": 4, - "dx_err": 3, - "np.abs": 1, - "dy_err": 2, - "popt": 5, - "pconv": 2, - "*popt": 2, - "pconv.diagonal": 3, - "fields": 12, - "table": 2, - "table.align": 1, - "dy.size": 1, - "*dy_err": 1, - "table.add_row": 1, - "U1": 3, - "I1": 3, - "U2": 2, - "I_err": 2, - "p": 1, - "R": 1, - "R_err": 2, - "/I1": 1, - "**2": 2, - "U1/I1**2": 1, - "phi_err": 3, - "alpha": 2, - "beta": 1, - "R0": 6, - "R0_err": 2, - "alpha*R0": 2, - "*np.sqrt": 6, - "*beta*R": 5, - "alpha**2*R0": 5, - "*beta*R0": 7, - "*beta*R0*T0": 2, - "epsilon_err": 2, - "f1": 1, - "f2": 1, - "f3": 1, - "alpha**2": 1, - "*beta": 1, - "*beta*T0": 1, - "*beta*R0**2": 1, - "f1**2": 1, - "f2**2": 1, - "f3**2": 1, - "parser": 1, - "argparse.ArgumentParser": 1, - "description": 1, - "#parser.add_argument": 3, - "metavar": 1, - "str": 2, - "nargs": 1, - "help": 2, - "dest": 1, - "default": 1, - "action": 1, - "version": 6, - "parser.parse_args": 1, - "__name__": 2, - "__future__": 2, - "absolute_import": 1, - "division": 1, - "with_statement": 1, - "Cookie": 1, - "logging": 1, - "socket": 1, - "time": 1, - "tornado.escape": 1, - "utf8": 2, - "native_str": 4, - "parse_qs_bytes": 3, - "tornado": 3, - "httputil": 1, - "iostream": 1, - "tornado.netutil": 1, - "TCPServer": 2, - "stack_context": 1, - "tornado.util": 1, - "bytes_type": 2, - "try": 17, - "ssl": 2, - "Python": 1, - "except": 17, - "ImportError": 1, - "HTTPServer": 1, - "r": 3, - "__init__": 5, - "request_callback": 4, - "no_keep_alive": 4, - "False": 28, - "io_loop": 3, - "xheaders": 4, - "ssl_options": 3, - "self.request_callback": 5, - "self.no_keep_alive": 4, - "self.xheaders": 3, - "TCPServer.__init__": 1, - "handle_stream": 1, - "stream": 4, - "address": 4, - "HTTPConnection": 2, - "_BadRequestException": 5, - "Exception": 2, - "pass": 4, - "self.stream": 1, - "self.address": 3, - "self._request": 7, - "self._request_finished": 4, - "self._header_callback": 3, - "stack_context.wrap": 2, - "self._on_headers": 1, - "self.stream.read_until": 2, - "self._write_callback": 5, - "write": 2, - "chunk": 5, - "callback": 7, - "self.stream.closed": 1, - "self.stream.write": 2, - "self._on_write_complete": 1, - "finish": 2, - "self.stream.writing": 2, - "self._finish_request": 2, - "_on_write_complete": 1, - "_finish_request": 1, - "disconnect": 5, - "connection_header": 5, - "self._request.headers.get": 2, - "connection_header.lower": 1, - "self._request.supports_http_1_1": 1, - "elif": 4, - "self._request.headers": 1, - "self._request.method": 2, - "self.stream.close": 2, - "_on_headers": 1, - "data.decode": 1, - "eol": 3, - "data.find": 1, - "start_line": 1, - "method": 5, - "uri": 5, - "start_line.split": 1, - "ValueError": 5, - "raise": 22, - "version.startswith": 1, - "headers": 5, - "httputil.HTTPHeaders.parse": 1, - "self.stream.socket": 1, - "socket.AF_INET": 2, - "socket.AF_INET6": 1, - "remote_ip": 8, - "HTTPRequest": 2, - "connection": 5, - "content_length": 6, - "headers.get": 2, - "int": 1, - "self.stream.max_buffer_size": 1, - "self.stream.read_bytes": 1, - "self._on_request_body": 1, - "logging.info": 1, - "_on_request_body": 1, - "self._request.body": 2, - "content_type": 1, - "content_type.startswith": 2, - "arguments": 2, - "values": 13, - "arguments.iteritems": 2, - "self._request.arguments.setdefault": 1, - ".extend": 2, - "content_type.split": 1, - "field": 32, - "k": 4, - "sep": 2, - "field.strip": 1, - ".partition": 1, - "httputil.parse_multipart_form_data": 1, - "self._request.arguments": 1, - "self._request.files": 1, - "break": 2, - "logging.warning": 1, - "body": 2, - "protocol": 4, - "host": 2, - "files": 2, - "self.method": 1, - "self.uri": 2, - "self.version": 2, - "self.headers": 4, - "httputil.HTTPHeaders": 1, - "self.body": 1, - "connection.xheaders": 1, - "self.remote_ip": 4, - "self.headers.get": 5, - "self._valid_ip": 1, - "self.protocol": 7, - "isinstance": 11, - "connection.stream": 1, - "iostream.SSLIOStream": 1, - "self.host": 2, - "self.files": 1, - "self.connection": 1, - "self._start_time": 3, - "time.time": 3, - "self._finish_time": 4, - "self.path": 1, - "self.query": 2, - "uri.partition": 1, - "self.arguments": 2, - "supports_http_1_1": 1, - "@property": 1, - "cookies": 1, - "hasattr": 11, - "self._cookies": 3, - "Cookie.SimpleCookie": 1, - "self._cookies.load": 1, - "self.connection.write": 1, - "self.connection.finish": 1, - "full_url": 1, - "request_time": 1, - "get_ssl_certificate": 1, - "self.connection.stream.socket.getpeercert": 1, - "ssl.SSLError": 1, - "__repr__": 2, - "attrs": 7, - ".join": 3, - "n": 3, - "self.__class__.__name__": 3, - "dict": 3, - "_valid_ip": 1, - "ip": 2, - "res": 2, - "socket.getaddrinfo": 1, - "socket.AF_UNSPEC": 1, - "socket.SOCK_STREAM": 1, - "socket.AI_NUMERICHOST": 1, - "bool": 2, - "socket.gaierror": 1, - "e.args": 1, - "socket.EAI_NONAME": 1, - "os": 1, - "sys": 2, - "usage": 3, - "string": 1, - "command": 4, - "check": 4, - "sys.argv": 2, - "<": 1, - "sys.exit": 1, - "printDelimiter": 4, - "get": 1, - "list": 1, - "git": 1, - "directories": 1, - "specified": 1, - "parent": 5, - "gitDirectories": 2, - "getSubdirectories": 2, - "isGitDirectory": 2, - "gitDirectory": 2, - "os.chdir": 1, - "os.getcwd": 1, - "os.system": 1, - "directory": 9, - "filter": 3, - "os.path.abspath": 1, - "subdirectories": 3, - "os.walk": 1, - ".next": 1, - "os.path.isdir": 1, - "google.protobuf": 4, - "descriptor": 1, - "_descriptor": 1, - "message": 1, - "_message": 1, - "reflection": 1, - "_reflection": 1, - "descriptor_pb2": 1, - "DESCRIPTOR": 3, - "_descriptor.FileDescriptor": 1, - "package": 1, - "serialized_pb": 1, - "_PERSON": 3, - "_descriptor.Descriptor": 1, - "full_name": 2, - "filename": 1, - "file": 1, - "containing_type": 2, - "_descriptor.FieldDescriptor": 1, - "index": 1, - "number": 1, - "cpp_type": 1, - "has_default_value": 1, - "default_value": 1, - "unicode": 8, - "message_type": 1, - "enum_type": 1, - "is_extension": 1, - "extension_scope": 1, - "extensions": 1, - "nested_types": 1, - "enum_types": 1, - "is_extendable": 1, - "extension_ranges": 1, - "serialized_start": 1, - "serialized_end": 1, - "DESCRIPTOR.message_types_by_name": 1, - "Person": 1, - "_message.Message": 1, - "_reflection.GeneratedProtocolMessageType": 1, - "P3D": 1, - "lights": 1, - "camera": 1, - "mouseY": 1, - "eyeX": 1, - "eyeY": 1, - "eyeZ": 1, - "centerX": 1, - "centerY": 1, - "centerZ": 1, - "upX": 1, - "upY": 1, - "upZ": 1, - "box": 1, - "stroke": 1, - "line": 3, - "unicode_literals": 1, - "copy": 1, - "functools": 1, - "update_wrapper": 2, - "future_builtins": 1, - "django.db.models.manager": 1, - "Imported": 1, - "register": 1, - "signal": 1, - "handler.": 1, - "django.conf": 1, - "settings": 1, - "django.core.exceptions": 1, - "ObjectDoesNotExist": 2, - "MultipleObjectsReturned": 2, - "FieldError": 4, - "ValidationError": 8, - "NON_FIELD_ERRORS": 3, - "django.core": 1, - "validators": 1, - "django.db.models.fields": 1, - "AutoField": 2, - "FieldDoesNotExist": 2, - "django.db.models.fields.related": 1, - "ManyToOneRel": 3, - "OneToOneField": 3, - "add_lazy_relation": 2, - "django.db": 1, - "router": 1, - "transaction": 1, - "DatabaseError": 3, - "DEFAULT_DB_ALIAS": 2, - "django.db.models.query": 1, - "Q": 3, - "django.db.models.query_utils": 2, - "DeferredAttribute": 3, - "django.db.models.deletion": 1, - "Collector": 2, - "django.db.models.options": 1, - "Options": 2, - "django.db.models": 1, - "signals": 1, - "django.db.models.loading": 1, - "register_models": 2, - "get_model": 3, - "django.utils.translation": 1, - "ugettext_lazy": 1, - "django.utils.functional": 1, - "curry": 6, - "django.utils.encoding": 1, - "smart_str": 3, - "force_unicode": 3, - "django.utils.text": 1, - "get_text_list": 2, - "capfirst": 6, - "ModelBase": 4, - "super_new": 3, - "super": 2, - ".__new__": 1, - "parents": 8, - "module": 6, - "attrs.pop": 2, - "new_class": 9, - "attr_meta": 5, - "abstract": 3, - "meta": 12, - "base_meta": 2, - "model_module": 1, - "sys.modules": 1, - "new_class.__module__": 1, - "kwargs": 9, - "model_module.__name__.split": 1, - "new_class.add_to_class": 7, - "subclass_exception": 3, - "tuple": 3, - "x.DoesNotExist": 1, - "x._meta.abstract": 2, - "x.MultipleObjectsReturned": 1, - "base_meta.abstract": 1, - "new_class._meta.ordering": 1, - "base_meta.ordering": 1, - "new_class._meta.get_latest_by": 1, - "base_meta.get_latest_by": 1, - "is_proxy": 5, - "new_class._meta.proxy": 1, - "new_class._default_manager": 2, - "new_class._base_manager": 2, - "new_class._default_manager._copy_to_model": 1, - "new_class._base_manager._copy_to_model": 1, - "m": 3, - "new_class._meta.app_label": 3, - "seed_cache": 2, - "only_installed": 2, - "obj_name": 2, - "obj": 4, - "attrs.items": 1, - "new_fields": 2, - "new_class._meta.local_fields": 3, - "new_class._meta.local_many_to_many": 2, - "new_class._meta.virtual_fields": 1, - "field_names": 5, - "f.name": 5, - "f": 19, - "base": 13, - "parent._meta.abstract": 1, - "parent._meta.fields": 1, - "TypeError": 4, - "continue": 10, - "new_class._meta.setup_proxy": 1, - "new_class._meta.concrete_model": 2, - "base._meta.concrete_model": 2, - "o2o_map": 3, - "f.rel.to": 1, - "original_base": 1, - "parent_fields": 3, - "base._meta.local_fields": 1, - "base._meta.local_many_to_many": 1, - "field.name": 14, - "base.__name__": 2, - "base._meta.abstract": 2, - "attr_name": 3, - "base._meta.module_name": 1, - "auto_created": 1, - "parent_link": 1, - "new_class._meta.parents": 1, - "copy.deepcopy": 2, - "new_class._meta.parents.update": 1, - "base._meta.parents": 1, - "new_class.copy_managers": 2, - "base._meta.abstract_managers": 1, - "original_base._meta.concrete_managers": 1, - "base._meta.virtual_fields": 1, - "attr_meta.abstract": 1, - "new_class.Meta": 1, - "new_class._prepare": 1, - "copy_managers": 1, - "base_managers": 2, - "base_managers.sort": 1, - "mgr_name": 3, - "manager": 3, - "val": 14, - "new_manager": 2, - "manager._copy_to_model": 1, - "cls.add_to_class": 1, - "add_to_class": 1, - "value.contribute_to_class": 1, - "setattr": 14, - "_prepare": 1, - "opts": 5, - "cls._meta": 3, - "opts._prepare": 1, - "opts.order_with_respect_to": 2, - "cls.get_next_in_order": 1, - "cls._get_next_or_previous_in_order": 2, - "is_next": 9, - "cls.get_previous_in_order": 1, - "make_foreign_order_accessors": 2, - "model": 8, - "field.rel.to": 2, - "cls.__name__.lower": 2, - "method_get_order": 2, - "method_set_order": 2, - "opts.order_with_respect_to.rel.to": 1, - "cls.__name__": 1, - "f.attname": 5, - "opts.fields": 1, - "cls.get_absolute_url": 3, - "get_absolute_url": 2, - "signals.class_prepared.send": 1, - "sender": 5, - "ModelState": 2, - "db": 2, - "self.db": 1, - "self.adding": 1, - "Model": 2, - "_deferred": 1, - "signals.pre_init.send": 1, - "self.__class__": 10, - "self._state": 1, - "args_len": 2, - "self._meta.fields": 5, - "IndexError": 2, - "fields_iter": 4, - "iter": 1, - "field.attname": 17, - "kwargs.pop": 6, - "field.rel": 2, - "is_related_object": 3, - "self.__class__.__dict__.get": 2, - "rel_obj": 3, - "KeyError": 3, - "field.get_default": 3, - "field.null": 1, - "kwargs.keys": 2, - "property": 2, - "AttributeError": 1, - ".__init__": 1, - "signals.post_init.send": 1, - "instance": 5, - "UnicodeEncodeError": 1, - "UnicodeDecodeError": 1, - "__str__": 1, - ".encode": 1, - "__eq__": 1, - "other": 4, - "self._get_pk_val": 6, - "other._get_pk_val": 1, - "__ne__": 1, - "self.__eq__": 1, - "__hash__": 1, - "hash": 1, - "__reduce__": 1, - "self.__dict__": 1, - "defers": 2, - "self._deferred": 1, - "deferred_class_factory": 2, - "factory": 5, - "defers.append": 1, - "self._meta.proxy_for_model": 1, - "simple_class_factory": 2, - "model_unpickle": 2, - "_get_pk_val": 2, - "self._meta": 2, - "meta.pk.attname": 2, - "_set_pk_val": 2, - "self._meta.pk.attname": 2, - "pk": 5, - "serializable_value": 1, - "field_name": 8, - "self._meta.get_field_by_name": 1, - "save": 1, - "force_insert": 7, - "force_update": 10, - "using": 30, - "update_fields": 23, - "field.primary_key": 1, - "non_model_fields": 2, - "update_fields.difference": 1, - "self.save_base": 2, - "save.alters_data": 1, - "save_base": 1, - "raw": 9, - "origin": 7, - "router.db_for_write": 2, - "meta.proxy": 5, - "meta.auto_created": 2, - "signals.pre_save.send": 1, - "org": 3, - "meta.parents.items": 1, - "parent._meta.pk.attname": 2, - "parent._meta": 1, - "non_pks": 5, - "meta.local_fields": 2, - "f.primary_key": 2, - "pk_val": 4, - "pk_set": 5, - "record_exists": 5, - "cls._base_manager": 1, - "manager.using": 3, - ".filter": 7, - ".exists": 1, - "f.pre_save": 1, - "rows": 3, - "._update": 1, - "meta.order_with_respect_to": 2, - "order_value": 2, - ".count": 1, - "self._order": 1, - "update_pk": 3, - "meta.has_auto_field": 1, - "result": 2, - "manager._insert": 1, - "return_id": 1, - "transaction.commit_unless_managed": 2, - "self._state.db": 2, - "self._state.adding": 4, - "signals.post_save.send": 1, - "created": 1, - "save_base.alters_data": 1, - "delete": 1, - "self._meta.object_name": 1, - "collector": 1, - "collector.collect": 1, - "collector.delete": 1, - "delete.alters_data": 1, - "_get_FIELD_display": 1, - "field.flatchoices": 1, - ".get": 2, - "strings_only": 1, - "_get_next_or_previous_by_FIELD": 1, - "self.pk": 6, - "order": 5, - "param": 3, - "q": 4, - "|": 1, - "qs": 6, - "self.__class__._default_manager.using": 1, - "*kwargs": 1, - ".order_by": 2, - "self.DoesNotExist": 1, - "self.__class__._meta.object_name": 1, - "_get_next_or_previous_in_order": 1, - "cachename": 4, - "order_field": 1, - "self._meta.order_with_respect_to": 1, - "self._default_manager.filter": 1, - "order_field.name": 1, - "order_field.attname": 1, - "self._default_manager.values": 1, - "self._meta.pk.name": 1, - "prepare_database_save": 1, - "unused": 1, - "clean": 1, - "validate_unique": 1, - "exclude": 23, - "unique_checks": 6, - "date_checks": 6, - "self._get_unique_checks": 1, - "errors": 20, - "self._perform_unique_checks": 1, - "date_errors": 1, - "self._perform_date_checks": 1, - "date_errors.items": 1, - "errors.setdefault": 3, - "_get_unique_checks": 1, - "unique_togethers": 2, - "self._meta.unique_together": 1, - "parent_class": 4, - "self._meta.parents.keys": 2, - "parent_class._meta.unique_together": 2, - "unique_togethers.append": 1, - "model_class": 11, - "unique_together": 2, - "unique_checks.append": 2, - "fields_with_class": 2, - "self._meta.local_fields": 1, - "fields_with_class.append": 1, - "parent_class._meta.local_fields": 1, - "f.unique": 1, - "f.unique_for_date": 3, - "date_checks.append": 3, - "f.unique_for_year": 3, - "f.unique_for_month": 3, - "_perform_unique_checks": 1, - "unique_check": 10, - "lookup_kwargs": 8, - "self._meta.get_field": 1, - "lookup_value": 3, - "lookup_kwargs.keys": 1, - "model_class._default_manager.filter": 2, - "*lookup_kwargs": 2, - "model_class_pk": 3, - "model_class._meta": 2, - "qs.exclude": 2, - "qs.exists": 2, - ".append": 2, - "self.unique_error_message": 1, - "_perform_date_checks": 1, - "lookup_type": 7, - "unique_for": 9, - "date": 3, - "date.day": 1, - "date.month": 1, - "date.year": 1, - "self.date_error_message": 1, - "date_error_message": 1, - "opts.get_field": 4, - ".verbose_name": 3, - "unique_error_message": 1, - "model_name": 3, - "opts.verbose_name": 1, - "field_label": 2, - "field.verbose_name": 1, - "field.error_messages": 1, - "field_labels": 4, - "map": 1, - "lambda": 1, - "full_clean": 1, - "self.clean_fields": 1, - "e.update_error_dict": 3, - "self.clean": 1, - "errors.keys": 1, - "exclude.append": 1, - "self.validate_unique": 1, - "clean_fields": 1, - "raw_value": 3, - "f.blank": 1, - "validators.EMPTY_VALUES": 1, - "f.clean": 1, - "e.messages": 1, - "############################################": 2, - "ordered_obj": 2, - "id_list": 2, - "rel_val": 4, - "ordered_obj._meta.order_with_respect_to.rel.field_name": 2, - "order_name": 4, - "ordered_obj._meta.order_with_respect_to.name": 2, - "ordered_obj.objects.filter": 2, - ".update": 1, - "_order": 1, - "pk_name": 3, - "ordered_obj._meta.pk.name": 1, - ".values": 1, - "##############################################": 2, - "func": 2, - "settings.ABSOLUTE_URL_OVERRIDES.get": 1, - "opts.app_label": 1, - "opts.module_name": 1, - "########": 2, - "Empty": 1, - "cls.__new__": 1, - "model_unpickle.__safe_for_unpickle__": 1 - }, - "Handlebars": { - "
": 5, - "class=": 5, - "

": 3, - "By": 2, - "{": 16, - "fullName": 2, - "author": 2, - "}": 16, - "

": 3, - "body": 3, - "
": 5, - "Comments": 1, - "#each": 1, - "comments": 1, - "

": 1, - "

": 1, - "/each": 1, - "title": 1 - } - }, - "language_tokens": { - "Stylus": 76, - "IDL": 418, - "OpenEdge ABL": 762, - "Latte": 759, - "Racket": 331, - "Assembly": 21750, - "AsciiDoc": 103, - "Gnuplot": 1023, - "Nginx": 179, - "Dogescript": 30, - "Markdown": 1, - "Perl": 17979, - "XML": 8185, - "MTML": 93, - "Lasso": 9849, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "Max": 714, - "Awk": 544, - "JavaScript": 76970, - "Visual Basic": 581, - "GAP": 9944, - "Logtalk": 36, - "Scheme": 3515, - "C++": 34739, - "JSON5": 57, + "MediaWiki": 766, + "Mercury": 31096, + "Monkey": 207, + "Moocode": 5234, "MoonScript": 1718, -<<<<<<< HEAD "NSIS": 725, "Nemerle": 17, "NetLogo": 243, @@ -126895,7 +69858,7 @@ "Ox": 1006, "Oxygene": 157, "PAWN": 3263, - "PHP": 20724, + "PHP": 20754, "Pan": 130, "Parrot Assembly": 6, "Parrot Internal Representation": 5, @@ -126903,50 +69866,11 @@ "Perl": 17979, "Perl6": 372, "Pike": 1835, -======= - "Mercury": 31096, - "Perl6": 372, - "VHDL": 42, - "Literate CoffeeScript": 275, - "KRL": 25, - "Nimrod": 1, - "Pascal": 30, - "C#": 278, - "Groovy Server Pages": 91, - "GAMS": 363, - "COBOL": 90, - "Cuda": 290, - "Gosu": 410, - "Prolog": 468, - "Tcl": 1133, - "Squirrel": 130, - "YAML": 77, - "Clojure": 510, - "Tea": 3, - "VimL": 20, - "M": 23615, - "NSIS": 725, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "Pod": 658, - "AutoHotkey": 3, - "TXL": 213, - "wisp": 1363, - "Mathematica": 411, - "Coq": 18259, - "GAS": 133, - "Verilog": 3778, - "Apex": 4408, - "Scala": 750, - "JSONLD": 18, - "LiveScript": 123, - "Org": 358, - "Liquid": 633, - "UnrealScript": 2873, - "Component Pascal": 825, "PogoScript": 250, - "Creole": 134, + "PostScript": 107, + "PowerShell": 12, "Processing": 74, -<<<<<<< HEAD "Prolog": 2420, "Propeller Spin": 13519, "Protocol Buffer": 63, @@ -126973,83 +69897,11 @@ "Scheme": 3515, "Scilab": 69, "Shell": 3744, -======= - "Emacs Lisp": 1756, - "Elm": 628, - "Inform 7": 75, - "XC": 24, - "JSON": 183, - "Scaml": 4, - "Shell": 3744, - "Sass": 56, - "Oxygene": 157, - "ATS": 4558, - "SCSS": 39, - "R": 1790, - "Brightscript": 579, - "HTML": 413, - "Frege": 5564, - "Literate Agda": 478, - "Lua": 724, - "XSLT": 44, - "Zimpl": 123, - "Groovy": 93, - "Ioke": 2, - "Jade": 3, - "TypeScript": 109, - "Erlang": 2928, - "ABAP": 1500, - "Rebol": 533, - "SuperCollider": 133, - "CoffeeScript": 2951, - "PHP": 20754, - "MediaWiki": 766, - "Ceylon": 50, - "fish": 636, - "Diff": 16, - "Slash": 187, - "Objective-C": 26518, - "Stata": 3133, - "Shen": 3472, - "Mask": 74, - "SAS": 93, - "Xtend": 399, - "Arduino": 20, - "XProc": 22, - "Haml": 4, - "AspectJ": 324, - "RDoc": 279, - "AppleScript": 1862, - "Ox": 1006, - "STON": 100, - "Scilab": 69, - "Dart": 74, - "Nu": 116, - "Alloy": 1143, - "Red": 816, - "BlitzBasic": 2065, - "RobotFramework": 483, - "ApacheConf": 1449, - "Agda": 376, - "Hy": 155, - "Less": 39, - "Kit": 6, - "E": 601, - "DM": 169, - "OpenCL": 144, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "ShellSession": 233, - "GLSL": 4033, - "ECL": 281, - "Makefile": 50, - "Haskell": 302, + "Shen": 3472, + "Slash": 187, "Slim": 77, - "Zephir": 1026, - "INI": 27, - "OCaml": 382, - "VCL": 545, "Smalltalk": 423, -<<<<<<< HEAD "SourcePawn": 2080, "Squirrel": 130, "Standard ML": 6567, @@ -127072,7 +69924,7 @@ "Visual Basic": 581, "Volt": 388, "XC": 24, - "XML": 7057, + "XML": 8236, "XProc": 22, "XQuery": 801, "XSLT": 44, @@ -127114,126 +69966,8 @@ "CoffeeScript": 9, "Common Lisp": 3, "Component Pascal": 2, -======= - "Parrot Assembly": 6, - "Protocol Buffer": 63, - "SQL": 1485, - "Nemerle": 17, - "Bluespec": 1298, - "Swift": 1128, - "SourcePawn": 2080, - "Propeller Spin": 13519, - "Cirru": 244, - "Julia": 247, - "Ragel in Ruby Host": 593, - "JSONiq": 151, - "TeX": 2701, - "XQuery": 801, - "RMarkdown": 19, - "Crystal": 1506, - "edn": 227, - "PowerShell": 12, - "Game Maker Language": 13310, - "Volt": 388, - "Monkey": 207, - "SystemVerilog": 541, - "Grammatical Framework": 10607, - "PostScript": 107, - "CSS": 43867, - "Forth": 1516, - "LFE": 1711, - "Moocode": 5234, - "Java": 8987, - "Turing": 44, - "Kotlin": 155, - "Idris": 148, - "PureScript": 1652, - "NetLogo": 243, - "Eagle": 30089, - "Common Lisp": 2186, - "Parrot Internal Representation": 5, - "Objective-C++": 6021, - "Rust": 3566, - "Matlab": 11942, - "Pan": 130, - "PAWN": 3263, - "Ruby": 3862, - "C": 59053, - "Standard ML": 6567, - "Logos": 93, - "Omgrofl": 57, - "Opa": 28, - "Python": 5994, - "Handlebars": 69 - }, - "languages": { - "Stylus": 1, - "IDL": 4, - "OpenEdge ABL": 5, - "Latte": 2, - "Racket": 2, - "Assembly": 4, - "AsciiDoc": 3, - "Gnuplot": 6, - "Nginx": 1, - "Dogescript": 1, - "Markdown": 1, - "Perl": 15, - "XML": 13, - "MTML": 1, - "Lasso": 4, - "Max": 3, - "Awk": 1, - "JavaScript": 22, - "Visual Basic": 3, - "GAP": 7, - "Logtalk": 1, - "Scheme": 2, - "C++": 29, - "JSON5": 2, - "MoonScript": 1, - "Mercury": 9, - "Perl6": 3, - "VHDL": 1, - "Literate CoffeeScript": 1, - "KRL": 1, - "Nimrod": 1, - "Pascal": 1, - "C#": 2, - "Groovy Server Pages": 4, - "GAMS": 1, - "COBOL": 4, - "Cuda": 2, - "Gosu": 4, - "Prolog": 3, - "Tcl": 2, - "Squirrel": 1, - "YAML": 2, - "Clojure": 7, - "Tea": 1, - "VimL": 2, - "M": 29, - "NSIS": 2, - "Pod": 1, - "AutoHotkey": 1, - "TXL": 1, - "wisp": 1, - "Mathematica": 3, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "Coq": 12, - "GAS": 1, - "Verilog": 13, - "Apex": 6, - "Scala": 4, - "JSONLD": 1, - "LiveScript": 1, - "Org": 1, - "Liquid": 2, - "UnrealScript": 2, - "Component Pascal": 2, - "PogoScript": 1, "Creole": 1, -<<<<<<< HEAD "Crystal": 3, "Cuda": 2, "DM": 1, @@ -127286,27 +70020,12 @@ "Latte": 2, "Less": 1, "Liquid": 2, -======= - "Processing": 1, - "Emacs Lisp": 2, - "Elm": 3, - "Inform 7": 2, - "XC": 1, - "JSON": 4, - "Scaml": 1, - "Shell": 37, - "Sass": 2, - "Oxygene": 1, - "ATS": 10, - "SCSS": 1, - "R": 7, - "Brightscript": 1, - "HTML": 2, - "Frege": 4, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "Literate Agda": 1, + "Literate CoffeeScript": 1, + "LiveScript": 1, + "Logos": 1, + "Logtalk": 1, "Lua": 3, -<<<<<<< HEAD "M": 29, "MTML": 1, "Makefile": 2, @@ -127339,7 +70058,7 @@ "Ox": 3, "Oxygene": 1, "PAWN": 1, - "PHP": 9, + "PHP": 10, "Pan": 1, "Parrot Assembly": 1, "Parrot Internal Representation": 1, @@ -127378,66 +70097,11 @@ "Scheme": 2, "Scilab": 3, "Shell": 37, -======= - "XSLT": 1, - "Zimpl": 1, - "Groovy": 5, - "Ioke": 1, - "Jade": 1, - "TypeScript": 3, - "Erlang": 5, - "ABAP": 1, - "Rebol": 6, - "SuperCollider": 1, - "CoffeeScript": 9, - "PHP": 10, - "MediaWiki": 1, - "Ceylon": 1, - "fish": 3, - "Diff": 1, - "Slash": 1, - "Objective-C": 19, - "Stata": 7, - "Shen": 3, - "Mask": 1, - "SAS": 2, - "Xtend": 2, - "Arduino": 1, - "XProc": 1, - "Haml": 1, - "AspectJ": 2, - "RDoc": 1, - "AppleScript": 7, - "Ox": 3, - "STON": 7, - "Scilab": 3, - "Dart": 1, - "Nu": 2, - "Alloy": 3, - "Red": 2, - "BlitzBasic": 3, - "RobotFramework": 3, - "ApacheConf": 3, - "Agda": 1, - "Hy": 2, - "Less": 1, - "Kit": 1, - "E": 6, - "DM": 1, - "OpenCL": 2, ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method "ShellSession": 3, - "GLSL": 5, - "ECL": 1, - "Makefile": 2, - "Haskell": 3, + "Shen": 3, + "Slash": 1, "Slim": 1, - "Zephir": 2, - "INI": 2, - "OCaml": 2, - "VCL": 2, "Smalltalk": 3, -<<<<<<< HEAD "SourcePawn": 1, "Squirrel": 1, "Standard ML": 5, @@ -127460,7 +70124,7 @@ "Visual Basic": 3, "Volt": 1, "XC": 1, - "XML": 13, + "XML": 14, "XProc": 1, "XQuery": 1, "XSLT": 1, @@ -127473,59 +70137,5 @@ "fish": 3, "wisp": 1 }, - "md5": "cedc5d3fde7e7b87467bdf820d674b95" -======= - "Parrot Assembly": 1, - "Protocol Buffer": 1, - "SQL": 5, - "Nemerle": 1, - "Bluespec": 2, - "Swift": 43, - "SourcePawn": 1, - "Propeller Spin": 10, - "Cirru": 9, - "Julia": 1, - "Ragel in Ruby Host": 3, - "JSONiq": 2, - "TeX": 2, - "XQuery": 1, - "RMarkdown": 1, - "Crystal": 3, - "edn": 1, - "PowerShell": 2, - "Game Maker Language": 13, - "Volt": 1, - "Monkey": 1, - "SystemVerilog": 4, - "Grammatical Framework": 41, - "PostScript": 1, - "CSS": 2, - "Forth": 7, - "LFE": 4, - "Moocode": 3, - "Java": 6, - "Turing": 1, - "Kotlin": 1, - "Idris": 1, - "PureScript": 4, - "NetLogo": 1, - "Eagle": 2, - "Common Lisp": 3, - "Parrot Internal Representation": 1, - "Objective-C++": 2, - "Rust": 1, - "Matlab": 39, - "Pan": 1, - "PAWN": 1, - "Ruby": 17, - "C": 29, - "Standard ML": 5, - "Logos": 1, - "Omgrofl": 1, - "Opa": 2, - "Python": 9, - "Handlebars": 2 - }, - "md5": "c6118389c68035913e7562d8a8e6617d" ->>>>>>> 58ae090... Sample files to test the new FileBlob.extension method + "md5": "1edee1d2c454fb877027ae980cd163ef" } \ No newline at end of file From c4c479578a13ee52068b5e2a5247a7a94faa0bb8 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Wed, 23 Jul 2014 10:37:50 -0500 Subject: [PATCH 177/268] Heuristics off --- lib/linguist/heuristics.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/heuristics.rb b/lib/linguist/heuristics.rb index fa5a97d7..cd71e8b0 100644 --- a/lib/linguist/heuristics.rb +++ b/lib/linguist/heuristics.rb @@ -1,7 +1,7 @@ module Linguist # A collection of simple heuristics that can be used to better analyze languages. class Heuristics - ACTIVE = true + ACTIVE = false # Public: Given an array of String language names, # apply heuristics against the given data and return an array From 6ed0a05b445e8788647dbb42417a0c79ec65e2ac Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Wed, 23 Jul 2014 10:49:29 -0500 Subject: [PATCH 178/268] Reporting errors in classifications --- Rakefile | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 2786e317..77f04a25 100644 --- a/Rakefile +++ b/Rakefile @@ -116,6 +116,32 @@ namespace :benchmark do reference_classifications = JSON.parse(File.read(reference_classifications_file)) compare_classifications = JSON.parse(File.read(compare_classifications_file)) + # Check if samples don't match current classification + puts "Potential misclassifications for #{reference}" + reference_classifications.each do |lang, files| + language_name = lang.split('/').last + + files.each do |name, classification| + unless classification == language_name + puts " #{name} is classified as #{classification} but #{language_name} was expected" + end + end + end + + # Check if samples don't match current classification + # TODO DRY this up. + puts "Potential misclassifications for #{compare}" + compare_classifications.each do |lang, files| + language_name = lang.split('/').last + + files.each do |name, classification| + unless classification == language_name + puts " #{name} is classified as #{classification} but #{language_name} was expected" + end + end + end + + puts "" puts "Changes between #{reference}...#{compare}" changes = reference_classifications.deep_diff(compare_classifications) @@ -140,7 +166,7 @@ namespace :benchmark do end end else - puts "No changes" + puts " No changes" end end end From 7d13b9eb9957c0f38520e18d3ad38af557c4a65f Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Wed, 23 Jul 2014 10:59:10 -0500 Subject: [PATCH 179/268] Formatting --- Rakefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Rakefile b/Rakefile index 77f04a25..0e527e4c 100644 --- a/Rakefile +++ b/Rakefile @@ -117,6 +117,7 @@ namespace :benchmark do compare_classifications = JSON.parse(File.read(compare_classifications_file)) # Check if samples don't match current classification + puts "" puts "Potential misclassifications for #{reference}" reference_classifications.each do |lang, files| language_name = lang.split('/').last @@ -130,6 +131,7 @@ namespace :benchmark do # Check if samples don't match current classification # TODO DRY this up. + puts "" puts "Potential misclassifications for #{compare}" compare_classifications.each do |lang, files| language_name = lang.split('/').last From 61faea02985b6263d4eb297fe295d6293ab8a6c0 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Wed, 23 Jul 2014 11:20:31 -0500 Subject: [PATCH 180/268] Fixing up bin/linguist --- bin/linguist | 3 ++- lib/linguist/blob_helper.rb | 1 - 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/linguist b/bin/linguist index e086dcea..6ac8f0a7 100755 --- a/bin/linguist +++ b/bin/linguist @@ -4,6 +4,7 @@ # usage: linguist [<--breakdown>] require 'linguist/file_blob' +require 'linguist/language' require 'linguist/repository' require 'rugged' @@ -30,7 +31,7 @@ if File.directory?(path) puts file_breakdown = repo.breakdown_by_file file_breakdown.each do |lang, files| - puts "#{lang}:" + puts "#{lang}:" files.each do |file| puts file end diff --git a/lib/linguist/blob_helper.rb b/lib/linguist/blob_helper.rb index ff2c097c..84aa2281 100644 --- a/lib/linguist/blob_helper.rb +++ b/lib/linguist/blob_helper.rb @@ -1,5 +1,4 @@ require 'linguist/generated' - require 'charlock_holmes' require 'escape_utils' require 'mime/types' From e376fe921bfa6e36d6a5c3251a95a82a5e93beb8 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Wed, 23 Jul 2014 11:30:25 -0500 Subject: [PATCH 181/268] Skipping Text and Binary dirs --- Rakefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Rakefile b/Rakefile index 0e527e4c..68e7ee89 100644 --- a/Rakefile +++ b/Rakefile @@ -123,6 +123,8 @@ namespace :benchmark do language_name = lang.split('/').last files.each do |name, classification| + # FIXME Don't want to report stuff from these dirs for now + next if ['Binary', 'Text'].include?(language_name) unless classification == language_name puts " #{name} is classified as #{classification} but #{language_name} was expected" end @@ -137,6 +139,8 @@ namespace :benchmark do language_name = lang.split('/').last files.each do |name, classification| + # FIXME Don't want to report stuff from these dirs for now + next if ['Binary', 'Text'].include?(language_name) unless classification == language_name puts " #{name} is classified as #{classification} but #{language_name} was expected" end From 149f8967adba64c17595c8b96f973865391e9116 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Wed, 23 Jul 2014 11:20:31 -0500 Subject: [PATCH 182/268] Fixing up bin/linguist --- bin/linguist | 3 ++- lib/linguist/blob_helper.rb | 1 - 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/linguist b/bin/linguist index e086dcea..6ac8f0a7 100755 --- a/bin/linguist +++ b/bin/linguist @@ -4,6 +4,7 @@ # usage: linguist [<--breakdown>] require 'linguist/file_blob' +require 'linguist/language' require 'linguist/repository' require 'rugged' @@ -30,7 +31,7 @@ if File.directory?(path) puts file_breakdown = repo.breakdown_by_file file_breakdown.each do |lang, files| - puts "#{lang}:" + puts "#{lang}:" files.each do |file| puts file end diff --git a/lib/linguist/blob_helper.rb b/lib/linguist/blob_helper.rb index ff2c097c..84aa2281 100644 --- a/lib/linguist/blob_helper.rb +++ b/lib/linguist/blob_helper.rb @@ -1,5 +1,4 @@ require 'linguist/generated' - require 'charlock_holmes' require 'escape_utils' require 'mime/types' From 0100b76412d054d67d66011cd92aa044059b5e15 Mon Sep 17 00:00:00 2001 From: Sean Coyne Date: Thu, 24 Jul 2014 20:48:50 -0400 Subject: [PATCH 183/268] distinguish between ColdFusion HTML and ColdFusion CFCs allows for using both ColdFusion Lexers provided by pigments and allows for proper syntax highlighting of cfscript based CFCs Signed-off-by: Sean Coyne --- lib/linguist/languages.yml | 13 ++ lib/linguist/samples.json | 234 +++++++++++++++++++++- samples/ColdFusion CFC/exampleScript.cfc | 239 +++++++++++++++++++++++ samples/ColdFusion CFC/exampleTag.cfc | 18 ++ samples/ColdFusion/example.cfm | 50 +++++ 5 files changed, 551 insertions(+), 3 deletions(-) create mode 100644 samples/ColdFusion CFC/exampleScript.cfc create mode 100644 samples/ColdFusion CFC/exampleTag.cfc create mode 100644 samples/ColdFusion/example.cfm diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 5996fc8c..5cd0c9a4 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -403,14 +403,27 @@ CoffeeScript: ColdFusion: type: programming + group: ColdFusion lexer: Coldfusion HTML ace_mode: coldfusion color: "#ed2cd6" search_term: cfm aliases: - cfm + - cfml extensions: - .cfm + +ColdFusion CFC: + type: programming + group: ColdFusion + lexer: Coldfusion CFC + ace_mode: coldfusion + color: "#ed2cd6" + search_term: cfc + aliases: + - cfc + extensions: - .cfc Common Lisp: diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index c78ed491..890010af 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -97,6 +97,12 @@ "CoffeeScript": [ ".coffee" ], + "ColdFusion": [ + ".cfm" + ], + "ColdFusion CFC": [ + ".cfc" + ], "Common Lisp": [ ".cl", ".lisp" @@ -797,8 +803,8 @@ "exception.zep.php" ] }, - "tokens_total": 630435, - "languages_total": 869, + "tokens_total": 631177, + "languages_total": 872, "tokens": { "ABAP": { "*/**": 1, @@ -16022,6 +16028,224 @@ "xFF": 1, "ip.join": 1 }, + "ColdFusion": { + "-": 12, + "": 1, + "": 1, + "": 1, + "Date": 1, + "Functions": 1, + "": 1, + "": 1, + "": 1, + "": 15, + "RightNow": 7, + "Now": 1, + "": 3, + "#RightNow#": 1, + "
": 8, + "#DateFormat": 2, + "(": 8, + ")": 8, + "#": 8, + "#TimeFormat": 2, + "#IsDate": 3, + "#DaysInMonth": 1, + "
": 3, + "x=": 1, + "y=": 1, + "z=": 1, + "group=": 1, + "#x#": 1, + "#y#": 1, + "#z#": 1, + "": 1, + "": 1, + "person": 2, + "Paul": 1, + "greeting": 2, + "Hello": 2, + "world": 1, + "a": 7, + "5": 1, + "b": 7, + "10": 1, + "c": 6, + "MOD": 1, + "comment": 1 + }, + "ColdFusion CFC": { + "component": 1, + "extends": 1, + "singleton": 1, + "{": 22, + "//": 16, + "DI": 1, + "property": 10, + "name": 10, + "inject": 10, + ";": 55, + "ContentService": 1, + "function": 12, + "init": 2, + "(": 58, + "entityName": 2, + ")": 58, + "it": 1, + "super.init": 1, + "arguments.entityName": 1, + "useQueryCaching": 1, + "true": 12, + "Test": 1, + "scope": 1, + "coloring": 1, + "in": 1, + "pygments": 1, + "this.colorTestVar": 1, + "cookie.colorTestVar": 1, + "client.colorTestVar": 1, + "session.colorTestVar": 1, + "application.colorTestVar": 1, + "return": 11, + "this": 10, + "}": 22, + "clearAllCaches": 1, + "boolean": 6, + "async": 7, + "false": 7, + "var": 15, + "settings": 6, + "settingService.getAllSettings": 6, + "asStruct": 6, + "Get": 6, + "appropriate": 6, + "cache": 12, + "provider": 6, + "cacheBox.getCache": 6, + "settings.cb_content_cacheName": 6, + "cache.clearByKeySnippet": 3, + "keySnippet": 3, + "arguments.async": 3, + "clearAllPageWrapperCaches": 1, + "clearPageWrapperCaches": 1, + "required": 5, + "any": 5, + "slug": 2, + "clearPageWrapper": 1, + "cache.clear": 3, + "searchContent": 1, + "searchTerm": 1, + "numeric": 2, + "max": 2, + "offset": 2, + "asQuery": 2, + "sortOrder": 2, + "isPublished": 1, + "searchActiveContent": 1, + "results": 2, + "c": 1, + "newCriteria": 1, + "only": 1, + "published": 1, + "content": 2, + "if": 4, + "isBoolean": 1, + "arguments.isPublished": 3, + "Published": 2, + "bit": 1, + "c.isEq": 1, + "javaCast": 1, + "eq": 1, + "evaluate": 1, + "other": 1, + "params": 1, + "c.isLt": 1, + "now": 2, + ".": 1, + "or": 3, + "c.restrictions.isNull": 1, + "c.restrictions.isGT": 1, + ".isEq": 1, + "Search": 1, + "Criteria": 1, + "len": 1, + "arguments.searchTerm": 1, + "like": 1, + "disjunctions": 1, + "c.createAlias": 1, + "Do": 1, + "we": 1, + "search": 1, + "title": 2, + "and": 2, + "active": 1, + "just": 1, + "arguments.searchActiveContent": 1, + "c.": 1, + "c.restrictions.like": 2, + "else": 1, + "c.like": 1, + "run": 1, + "criteria": 1, + "query": 1, + "projections": 1, + "count": 1, + "results.count": 1, + "c.count": 1, + "results.content": 1, + "c.resultTransformer": 1, + "c.DISTINCT_ROOT_ENTITY": 1, + ".list": 1, + "arguments.offset": 1, + "arguments.max": 1, + "arguments.sortOrder": 1, + "arguments.asQuery": 1, + "private": 4, + "syncUpdateHits": 1, + "contentID": 1, + "q": 1, + "new": 1, + "Query": 1, + "sql": 1, + ".execute": 1, + "closureTest": 1, + "methodCall": 1, + "param1": 2, + "arg1": 4, + "arg2": 2, + "StructliteralTest": 1, + "foo": 3, + "bar": 1, + "brad": 3, + "func": 1, + "array": 1, + "[": 2, + "wood": 2, + "null": 2, + "]": 2, + "last": 1, + "arrayliteralTest": 1, + "": 1, + "": 2, + "name=": 4, + "access=": 2, + "returntype=": 2, + "": 2, + "type=": 2, + "required=": 2, + "": 2, + "myVariable": 1, + "arguments": 2, + "": 1, + "": 2, + "": 1, + "structKeyExists": 1, + "writeoutput": 1, + "Argument": 1, + "exists": 1, + "": 1, + "": 1 + }, "Common Lisp": { ";": 152, "@file": 1, @@ -69764,6 +69988,8 @@ "Cirru": 244, "Clojure": 510, "CoffeeScript": 2951, + "ColdFusion": 131, + "ColdFusion CFC": 611, "Common Lisp": 2186, "Component Pascal": 825, "Coq": 18259, @@ -69964,6 +70190,8 @@ "Cirru": 9, "Clojure": 7, "CoffeeScript": 9, + "ColdFusion": 1, + "ColdFusion CFC": 2, "Common Lisp": 3, "Component Pascal": 2, "Coq": 12, @@ -70137,5 +70365,5 @@ "fish": 3, "wisp": 1 }, - "md5": "1edee1d2c454fb877027ae980cd163ef" + "md5": "9f2e70b08b9943b57c05e7ce6196827f" } \ No newline at end of file diff --git a/samples/ColdFusion CFC/exampleScript.cfc b/samples/ColdFusion CFC/exampleScript.cfc new file mode 100644 index 00000000..33ec70ef --- /dev/null +++ b/samples/ColdFusion CFC/exampleScript.cfc @@ -0,0 +1,239 @@ +/** +******************************************************************************** +ContentBox - A Modular Content Platform +Copyright 2012 by Luis Majano and Ortus Solutions, Corp +www.gocontentbox.org | www.luismajano.com | www.ortussolutions.com +******************************************************************************** +Apache License, Version 2.0 + +Copyright Since [2012] [Luis Majano and Ortus Solutions,Corp] + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +******************************************************************************** +* A generic content service for content objects +*/ +component extends="coldbox.system.orm.hibernate.VirtualEntityService" singleton{ + + // DI + property name="settingService" inject="id:settingService@cb"; + property name="cacheBox" inject="cachebox"; + property name="log" inject="logbox:logger:{this}"; + property name="customFieldService" inject="customFieldService@cb"; + property name="categoryService" inject="categoryService@cb"; + property name="commentService" inject="commentService@cb"; + property name="contentVersionService" inject="contentVersionService@cb"; + property name="authorService" inject="authorService@cb"; + property name="populator" inject="wirebox:populator"; + property name="systemUtil" inject="SystemUtil@cb"; + + /* + * Constructor + * @entityName.hint The content entity name to bind this service to. + */ + ContentService function init(entityName="cbContent"){ + // init it + super.init(entityName=arguments.entityName, useQueryCaching=true); + + // Test scope coloring in pygments + this.colorTestVar = "Just for testing pygments!"; + cookie.colorTestVar = ""; + client.colorTestVar = "" + session.colorTestVar = ""; + application.colorTestVar = ""; + + return this; + } + + /** + * Clear all content caches + * @async.hint Run it asynchronously or not, defaults to false + */ + function clearAllCaches(boolean async=false){ + var settings = settingService.getAllSettings(asStruct=true); + // Get appropriate cache provider + var cache = cacheBox.getCache( settings.cb_content_cacheName ); + cache.clearByKeySnippet(keySnippet="cb-content",async=arguments.async); + return this; + } + + /** + * Clear all page wrapper caches + * @async.hint Run it asynchronously or not, defaults to false + */ + function clearAllPageWrapperCaches(boolean async=false){ + var settings = settingService.getAllSettings(asStruct=true); + // Get appropriate cache provider + var cache = cacheBox.getCache( settings.cb_content_cacheName ); + cache.clearByKeySnippet(keySnippet="cb-content-pagewrapper",async=arguments.async); + return this; + } + + /** + * Clear all page wrapper caches + * @slug.hint The slug partial to clean on + * @async.hint Run it asynchronously or not, defaults to false + */ + function clearPageWrapperCaches(required any slug, boolean async=false){ + var settings = settingService.getAllSettings(asStruct=true); + // Get appropriate cache provider + var cache = cacheBox.getCache( settings.cb_content_cacheName ); + cache.clearByKeySnippet(keySnippet="cb-content-pagewrapper-#arguments.slug#",async=arguments.async); + return this; + } + + /** + * Clear a page wrapper cache + * @slug.hint The slug to clean + * @async.hint Run it asynchronously or not, defaults to false + */ + function clearPageWrapper(required any slug, boolean async=false){ + var settings = settingService.getAllSettings(asStruct=true); + // Get appropriate cache provider + var cache = cacheBox.getCache( settings.cb_content_cacheName ); + cache.clear("cb-content-pagewrapper-#arguments.slug#/"); + return this; + } + + /** + * Searches published content with cool paramters, remember published content only + * @searchTerm.hint The search term to search + * @max.hint The maximum number of records to paginate + * @offset.hint The offset in the pagination + * @asQuery.hint Return as query or array of objects, defaults to array of objects + * @sortOrder.hint The sorting of the search results, defaults to publishedDate DESC + * @isPublished.hint Search for published, non-published or both content objects [true, false, 'all'] + * @searchActiveContent.hint Search only content titles or both title and active content. Defaults to both. + */ + function searchContent( + any searchTerm="", + numeric max=0, + numeric offset=0, + boolean asQuery=false, + any sortOrder="publishedDate DESC", + any isPublished=true, + boolean searchActiveContent=true){ + + var results = {}; + var c = newCriteria(); + + // only published content + if( isBoolean( arguments.isPublished ) ){ + // Published bit + c.isEq( "isPublished", javaCast( "Boolean", arguments.isPublished ) ); + // Published eq true evaluate other params + if( arguments.isPublished ){ + c.isLt("publishedDate", now() ) + .$or( c.restrictions.isNull("expireDate"), c.restrictions.isGT("expireDate", now() ) ) + .isEq("passwordProtection",""); + } + } + + // Search Criteria + if( len( arguments.searchTerm ) ){ + // like disjunctions + c.createAlias("activeContent","ac"); + // Do we search title and active content or just title? + if( arguments.searchActiveContent ){ + c.$or( c.restrictions.like("title","%#arguments.searchTerm#%"), + c.restrictions.like("ac.content", "%#arguments.searchTerm#%") ); + } + else{ + c.like( "title", "%#arguments.searchTerm#%" ); + } + } + + // run criteria query and projections count + results.count = c.count( "contentID" ); + results.content = c.resultTransformer( c.DISTINCT_ROOT_ENTITY ) + .list(offset=arguments.offset, max=arguments.max, sortOrder=arguments.sortOrder, asQuery=arguments.asQuery); + + return results; + } + +/********************************************* PRIVATE *********************************************/ + + + /** + * Update the content hits + * @contentID.hint The content id to update + */ + private function syncUpdateHits(required contentID){ + var q = new Query(sql="UPDATE cb_content SET hits = hits + 1 WHERE contentID = #arguments.contentID#").execute(); + return this; + } + + + private function closureTest(){ + methodCall( + param1, + function( arg1, required arg2 ){ + var settings = settingService.getAllSettings(asStruct=true); + // Get appropriate cache provider + var cache = cacheBox.getCache( settings.cb_content_cacheName ); + cache.clear("cb-content-pagewrapper-#arguments.slug#/"); + return this; + }, + param1 + ); + } + + private function StructliteralTest(){ + return { + foo = bar, + brad = 'Wood', + func = function( arg1, required arg2 ){ + var settings = settingService.getAllSettings(asStruct=true); + // Get appropriate cache provider + var cache = cacheBox.getCache( settings.cb_content_cacheName ); + cache.clear("cb-content-pagewrapper-#arguments.slug#/"); + return this; + }, + array = [ + 1, + 2, + 3, + 4, + 5, + 'test', + 'testing', + 'testerton', + { + foo = true, + brad = false, + wood = null + } + ], + last = "final" + }; + } + + private function arrayliteralTest(){ + return [ + 1, + 2, + 3, + 4, + 5, + 'test', + 'testing', + 'testerton', + { + foo = true, + brad = false, + wood = null + }, + 'testy-von-testavich' + ]; + } + +} \ No newline at end of file diff --git a/samples/ColdFusion CFC/exampleTag.cfc b/samples/ColdFusion CFC/exampleTag.cfc new file mode 100644 index 00000000..ad82c571 --- /dev/null +++ b/samples/ColdFusion CFC/exampleTag.cfc @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/samples/ColdFusion/example.cfm b/samples/ColdFusion/example.cfm new file mode 100644 index 00000000..f436c793 --- /dev/null +++ b/samples/ColdFusion/example.cfm @@ -0,0 +1,50 @@ + + ---> + +---> + + + +Date Functions + + + + + #RightNow#
+ #DateFormat(RightNow)#
+ #DateFormat(RightNow,"mm/dd/yy")#
+ #TimeFormat(RightNow)#
+ #TimeFormat(RightNow,"hh:mm tt")#
+ #IsDate(RightNow)#
+ #IsDate("January 31, 2007")#
+ #IsDate("foo")#
+ #DaysInMonth(RightNow)# +
+ + + + + #x# + #y# + #z# + + + + + + + + + + + + + + + + + ---> comment ---> \ No newline at end of file From 5a044b1c07e78e89d2990be899ab45d5b2888f9a Mon Sep 17 00:00:00 2001 From: Ryan Batchelder Date: Sat, 26 Jul 2014 14:05:13 -0700 Subject: [PATCH 184/268] Ignore Bourbon SCSS mixin library to avoid high CSS percentages --- lib/linguist/vendor.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/linguist/vendor.yml b/lib/linguist/vendor.yml index c497960c..13b7eeb2 100644 --- a/lib/linguist/vendor.yml +++ b/lib/linguist/vendor.yml @@ -43,6 +43,10 @@ # Normalize.css - normalize.css +# Bourbon SCSS +- (^|/)[Bb]ourbon/*\.css +- (^|/)[Bb]ourbon/*\.scss + # Vendored dependencies - thirdparty/ - vendors?/ From 8761dc4e17d53480feb953da7f323f02234a720c Mon Sep 17 00:00:00 2001 From: Ryan Batchelder Date: Sun, 27 Jul 2014 10:02:54 -0700 Subject: [PATCH 185/268] Missed escaping a slash Added EoL match Thanks for pchaigno --- lib/linguist/vendor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/linguist/vendor.yml b/lib/linguist/vendor.yml index 13b7eeb2..1da5b60c 100644 --- a/lib/linguist/vendor.yml +++ b/lib/linguist/vendor.yml @@ -44,8 +44,8 @@ - normalize.css # Bourbon SCSS -- (^|/)[Bb]ourbon/*\.css -- (^|/)[Bb]ourbon/*\.scss +- (^|/)[Bb]ourbon/.*\.css$ +- (^|/)[Bb]ourbon/.*\.scss$ # Vendored dependencies - thirdparty/ From f10154a782ea9e71cf56e444a974e5a27914c69c Mon Sep 17 00:00:00 2001 From: KoffeinFlummi Date: Sun, 27 Jul 2014 20:11:00 +0200 Subject: [PATCH 186/268] Added SQF support --- lib/linguist/languages.yml | 8 ++++ samples/SQF/fn_remoteExecFnc.sqf | 68 ++++++++++++++++++++++++++++++++ 2 files changed, 76 insertions(+) create mode 100644 samples/SQF/fn_remoteExecFnc.sqf diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 5996fc8c..73ebacfe 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1931,6 +1931,14 @@ SCSS: extensions: - .scss +SQF: + type: programming + color: "#FFCB1F" + lexer: C++ + extensions: + - .sqf + - .hqf + SQL: type: data ace_mode: sql diff --git a/samples/SQF/fn_remoteExecFnc.sqf b/samples/SQF/fn_remoteExecFnc.sqf new file mode 100644 index 00000000..f9cf08ca --- /dev/null +++ b/samples/SQF/fn_remoteExecFnc.sqf @@ -0,0 +1,68 @@ +/* + * Author: commy2 + * + * Execute a function on a remote machine in mp. + * + * Argument: + * 0: Function arguments (Array) + * 1: Function to execute, has to be defined on the remote machine first (String) + * 2: The function will be executed where this unit is local OR the mode were this function should be executed. (Object OR Number, optional default: 2) + * Mode 0: execute on this machine only + * Mode 1: execute on server + * Mode 2: execute on all clients + server + * Mode 3: execute on dedicated only + * + * Return value: + * Nothing + */ + +private ["_arguments", "_function", "_unit", "_id"]; + +AGM_Core_remoteFnc = _this; + +_arguments = _this select 0; +_function = call compile (_this select 1); +_unit = _this select 2; + +if (isNil "_unit") then { + _unit = 2; +}; + +if (typeName _unit == "SCALAR") exitWith { + switch (_unit) do { + case 0 : { + _arguments call _function; + }; + case 1 : { + if (isServer) then { + _arguments call _function; + } else { + publicVariableServer "AGM_Core_remoteFnc"; + }; + }; + case 2 : { + _arguments call _function; + + AGM_Core_remoteFnc set [2, 0]; + publicVariable "AGM_Core_remoteFnc"; + }; + case 3 : { + if (isDedicated) then { + _arguments call _function; + } else { + if (!isServer) then {publicVariableServer "AGM_Core_remoteFnc"}; + }; + }; + }; +}; + +if (local _unit) then { + _arguments call _function; +} else { + if (isServer) then { + _id = owner _unit; + _id publicVariableClient "AGM_Core_remoteFnc"; + } else { + publicVariableServer "AGM_Core_remoteFnc"; + }; +}; \ No newline at end of file From 7fc39dc8d13994c882b358a883103dd92368c86d Mon Sep 17 00:00:00 2001 From: KoffeinFlummi Date: Sun, 27 Jul 2014 21:26:34 +0200 Subject: [PATCH 187/268] Properly added sample. --- lib/linguist/samples.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index c78ed491..13957d4e 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -540,6 +540,9 @@ "SCSS": [ ".scss" ], + "SQF": [ + ".sqf" + ], "SQL": [ ".prc", ".sql", From 4e83a6ad2314ba1054a93f1b5ef027e264f4fb4c Mon Sep 17 00:00:00 2001 From: KoffeinFlummi Date: Mon, 28 Jul 2014 00:38:07 +0200 Subject: [PATCH 188/268] Added .hqf sample. --- lib/linguist/samples.json | 3 ++- samples/SQF/macros.hqf | 19 +++++++++++++++++++ 2 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 samples/SQF/macros.hqf diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index 13957d4e..fccacf37 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -541,7 +541,8 @@ ".scss" ], "SQF": [ - ".sqf" + ".sqf", + ".hqf" ], "SQL": [ ".prc", diff --git a/samples/SQF/macros.hqf b/samples/SQF/macros.hqf new file mode 100644 index 00000000..6f53296c --- /dev/null +++ b/samples/SQF/macros.hqf @@ -0,0 +1,19 @@ +#include + +#define SET(VAR,VALUE) private #VAR; VAR = VALUE; +#define CONV(VAR,ARRAY,POOL) VAR = ARRAY select (POOL find VAR); + +#define ALL_HITPOINTS_MAN [ \ + "HitHead", "HitBody", \ + "HitLeftArm", "HitRightArm", \ + "HitLeftLeg","HitRightLeg" \ +] + +#define ALL_HITPOINTS_VEH [ \ + "HitBody", "HitHull", "HitEngine", "HitFuel", \ + "HitTurret", "HitGun", \ + "HitLTrack", "HitRTrack", \ + "HitLFWheel", "HitRFWheel", "HitLF2Wheel", "HitRF2Wheel", "HitLMWheel", "HitRMWheel", "HitLBWheel", "HitRBWheel", \ + "HitAvionics", "HitHRotor", "HitVRotor", \ + "HitRGlass", "HitLGlass", "HitGlass1", "HitGlass2", "HitGlass3", "HitGlass4", "HitGlass5", "HitGlass6" \ +] From d61f31d3ed6d7aec2252ac6bc8d62d010a807087 Mon Sep 17 00:00:00 2001 From: "G. Wade Johnson" Date: Sun, 27 Jul 2014 21:17:36 -0500 Subject: [PATCH 189/268] Add minimal support for recognizing OpenSCAD files. As 3D printing becomes more popular, more OpenSCAD projects will appear on github. This change allows linguist to recognize those projects. Hopefully, this will make finding projects easier. --- lib/linguist/languages.yml | 6 + lib/linguist/samples.json | 56985 +++++++++++++++-------------- samples/OpenSCAD/not_simple.scad | 13 + samples/OpenSCAD/simple.scad | 3 + 4 files changed, 28528 insertions(+), 28479 deletions(-) create mode 100644 samples/OpenSCAD/not_simple.scad create mode 100644 samples/OpenSCAD/simple.scad diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 5996fc8c..d16886dc 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1509,6 +1509,12 @@ OpenEdge ABL: extensions: - .p +OpenSCAD: + type: programming + lexer: Text only + extensions: + - .scad + Org: type: prose lexer: Text only diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index c78ed491..1c03a80a 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -403,6 +403,9 @@ ".cls", ".p" ], + "OpenSCAD": [ + ".scad" + ], "Org": [ ".org" ], @@ -797,8 +800,8 @@ "exception.zep.php" ] }, - "tokens_total": 630435, - "languages_total": 869, + "tokens_total": 630502, + "languages_total": 871, "tokens": { "ABAP": { "*/**": 1, @@ -1061,169 +1064,37 @@ }, "ATS": { "//": 211, - "#include": 16, - "staload": 25, - "_": 25, - "sortdef": 2, - "ftype": 13, - "type": 30, - "-": 49, - "infixr": 2, - "(": 562, - ")": 567, - "typedef": 10, - "a": 200, - "b": 26, - "": 2, - "functor": 12, - "F": 34, - "{": 142, - "}": 141, - "list0": 9, - "extern": 13, - "val": 95, - "functor_list0": 7, - "implement": 55, - "f": 22, - "lam": 20, - "xs": 82, - "list0_map": 2, - "": 14, - "": 3, - "datatype": 4, - "CoYoneda": 7, - "r": 25, - "of": 59, - "fun": 56, - "CoYoneda_phi": 2, - "CoYoneda_psi": 3, - "ftor": 9, - "fx": 8, - "x": 48, - "int0": 4, - "I": 8, - "int": 2, - "bool": 27, - "True": 7, - "|": 22, - "False": 8, - "boxed": 2, - "boolean": 2, - "bool2string": 4, - "string": 2, - "case": 9, - "+": 20, - "fprint_val": 2, - "": 2, - "out": 8, - "fprint": 3, - "int2bool": 2, - "i": 6, - "let": 34, - "in": 48, - "if": 7, - "then": 11, - "else": 7, - "end": 73, - "myintlist0": 2, - "g0ofg1": 1, - "list": 1, - "myboolist0": 9, - "fprintln": 3, - "stdout_ref": 4, - "main0": 3, - "UN": 3, - "phil_left": 3, - "n": 51, - "phil_right": 3, - "nmod": 1, - "NPHIL": 6, - "randsleep": 6, - "intGte": 1, - "void": 14, - "ignoret": 2, - "sleep": 2, - "UN.cast": 2, - "uInt": 1, - "rand": 1, - "mod": 1, - "phil_think": 3, - "println": 9, - "phil_dine": 3, - "lf": 5, - "rf": 5, - "phil_loop": 10, - "nl": 2, - "nr": 2, - "ch_lfork": 2, - "fork_changet": 5, - "ch_rfork": 2, - "channel_takeout": 4, - "HX": 1, - "try": 1, - "to": 16, - "actively": 1, - "induce": 1, - "deadlock": 2, - "ch_forktray": 3, - "forktray_changet": 4, - "channel_insert": 5, - "[": 49, - "]": 48, - "cleaner_wash": 3, - "fork_get_num": 4, - "cleaner_return": 4, - "ch": 7, - "cleaner_loop": 6, - "f0": 3, - "dynload": 3, - "local": 10, - "mythread_create_cloptr": 6, - "llam": 6, - "while": 1, - "true": 5, - "%": 7, - "#": 7, - "#define": 4, - "nphil": 13, - "natLt": 2, "absvtype": 2, - "fork_vtype": 3, + "set_vtype": 3, + "(": 562, + "a": 200, + "t@ype": 2, + "+": 20, + ")": 567, "ptr": 2, "vtypedef": 2, - "fork": 16, - "channel": 11, - "datavtype": 1, - "FORK": 3, - "assume": 2, - "the_forkarray": 2, - "t": 1, - "array_tabulate": 1, - "fopr": 1, - "": 2, - "where": 6, - "channel_create_exn": 2, - "": 2, - "i2sz": 4, - "arrayref_tabulate": 1, - "the_forktray": 2, - "set_vtype": 3, - "t@ype": 2, "set": 34, "t0p": 31, + "fun": 56, + "{": 142, + "}": 141, "compare_elt_elt": 4, "x1": 1, "x2": 1, "<": 14, + "int": 2, "linset_nil": 2, "linset_make_nil": 2, "linset_sing": 2, + "x": 48, "": 16, "linset_make_sing": 2, "linset_make_list": 1, + "xs": 82, "List": 1, "INV": 24, "linset_is_nil": 2, + "bool": 27, "linset_isnot_nil": 2, "linset_size": 2, "size_t": 1, @@ -1232,11 +1103,17 @@ "linset_isnot_member": 1, "linset_copy": 2, "linset_free": 2, + "void": 14, "linset_insert": 3, "&": 17, + "_": 25, "linset_takeout": 1, "res": 9, "opt": 6, + "b": 26, + "#": 7, + "[": 49, + "]": 48, "endfun": 1, "linset_takeout_opt": 1, "Option_vt": 4, @@ -1250,7 +1127,9 @@ "fprint_linset": 3, "sep": 1, "FILEref": 2, + "out": 8, "overload": 1, + "fprint": 3, "with": 1, "env": 11, "vt0p": 2, @@ -1260,7 +1139,411 @@ "linset_listize": 2, "List0_vt": 5, "linset_listize1": 2, + "%": 7, + "#include": 16, + "": 1, + "html": 1, + "PUBLIC": 1, + "W3C": 1, + "DTD": 2, + "XHTML": 1, + "1": 3, + "EN": 1, + "http": 2, + "www": 1, + "w3": 1, + "org": 1, + "TR": 1, + "xhtml11": 2, + "dtd": 1, + "": 1, + "xmlns=": 1, + "": 1, + "": 1, + "equiv=": 1, + "content=": 1, + "": 1, + "EFFECTIVATS": 1, + "-": 49, + "DiningPhil2": 1, + "": 1, + "#patscode_style": 1, + "": 1, + "": 1, + "

": 1, + "Effective": 1, + "ATS": 2, + "Dining": 2, + "Philosophers": 2, + "

": 1, + "In": 2, + "this": 2, + "article": 2, + "I": 8, + "present": 1, + "an": 6, + "implementation": 3, + "of": 59, + "slight": 1, + "variant": 1, + "the": 30, + "famous": 1, + "problem": 1, + "by": 4, + "Dijkstra": 1, + "that": 8, + "makes": 1, + "simple": 1, + "but": 1, + "convincing": 1, + "use": 1, + "linear": 2, + "types.": 1, + "

": 8, + "The": 8, + "Original": 2, + "Problem": 2, + "

": 8, + "There": 3, + "are": 7, + "five": 1, + "philosophers": 1, + "sitting": 1, + "around": 1, + "table": 3, + "and": 10, + "there": 3, + "also": 3, + "forks": 7, + "placed": 1, + "on": 8, + "such": 1, + "each": 2, + "fork": 16, + "is": 26, + "located": 2, + "between": 1, + "left": 3, + "hand": 6, + "philosopher": 5, + "right": 3, + "another": 1, + "philosopher.": 1, + "Each": 4, + "does": 1, + "following": 6, + "routine": 1, + "repeatedly": 1, + "thinking": 1, + "dining.": 1, + "order": 1, + "to": 16, + "dine": 1, + "needs": 2, + "first": 2, + "acquire": 1, + "two": 3, + "one": 3, + "his": 4, + "side": 2, + "other": 2, + "side.": 2, + "After": 2, + "finishing": 1, + "dining": 1, + "puts": 2, + "acquired": 1, + "onto": 1, + "A": 6, + "Variant": 1, + "twist": 1, + "added": 1, + "original": 1, + "version": 1, + "

": 1, + "used": 1, + "it": 2, + "becomes": 1, + "be": 9, + "put": 1, + "in": 48, + "tray": 2, + "for": 15, + "dirty": 2, + "forks.": 1, + "cleaner": 2, + "who": 1, + "cleans": 1, + "then": 11, + "them": 2, + "back": 1, + "table.": 1, + "Channels": 1, + "Communication": 1, + "channel": 11, + "just": 1, + "shared": 1, + "queue": 1, + "fixed": 1, + "capacity.": 1, + "functions": 1, + "inserting": 1, + "element": 5, + "into": 3, + "taking": 1, + "given": 4, + "

": 7,
+      "class=": 6,
+      "#pats2xhtml_sats": 3,
+      "
": 7, + "If": 2, + "channel_insert": 5, + "called": 2, + "full": 4, + "caller": 2, + "blocked": 3, + "until": 2, + "taken": 1, + "channel.": 2, + "channel_takeout": 4, + "empty": 1, + "inserted": 1, + "Channel": 2, + "Fork": 3, + "Forks": 1, + "resources": 1, + "type.": 1, + "initially": 1, + "stored": 2, + "which": 2, + "can": 4, + "obtained": 2, + "calling": 2, + "function": 3, + "where": 6, + "type": 30, + "nphil": 13, + "defined": 1, + "natLt": 2, + "natural": 1, + "numbers": 1, + "less": 1, + "than": 1, + ".": 14, + "channels": 4, + "storing": 3, + "chosen": 3, + "capacity": 3, + "reason": 1, + "store": 1, + "at": 2, + "most": 1, + "guarantee": 1, + "these": 1, + "never": 2, + "so": 2, + "no": 2, + "attempt": 1, + "made": 1, + "send": 1, + "signals": 1, + "awake": 1, + "callers": 1, + "supposedly": 1, + "being": 2, + "due": 1, + "Tray": 1, + "instead": 1, + "become": 1, + "as": 4, + "only": 1, + "total": 1, + "Philosopher": 1, + "Loop": 2, + "implemented": 2, + "loop": 2, + "#pats2xhtml_dats": 3, + "It": 2, + "should": 3, + "straighforward": 2, + "follow": 2, "code": 6, + "phil_loop": 10, + "Cleaner": 1, + "cleaner_return": 4, + "finds": 1, + "number": 2, + "uses": 1, + "locate": 1, + "fork.": 1, + "Its": 1, + "actual": 1, + "follows": 1, + "now": 1, + "cleaner_loop": 6, + "Testing": 1, + "entire": 1, + "files": 1, + "DiningPhil2.sats": 1, + "DiningPhil2.dats": 1, + "DiningPhil2_fork.dats": 1, + "DiningPhil2_thread.dats": 1, + "Makefile": 1, + "available": 1, + "compiling": 1, + "source": 1, + "excutable": 1, + "testing.": 1, + "One": 1, + "able": 1, + "encounter": 1, + "deadlock": 2, + "after": 1, + "running": 1, + "simulation": 1, + "while.": 1, + "
": 1, + "size=": 1, + "This": 1, + "written": 1, + "
": 14, + "href=": 1, + "Hongwei": 1, + "Xi": 1, + "": 1, + "": 1, + "": 1, + "implement": 55, + "main": 1, + "fprint_filsub": 1, + "stdout_ref": 4, + "staload": 25, + "#define": 4, + "NPHIL": 6, + "end": 73, + "typedef": 10, + "phil_left": 3, + "n": 51, + "phil_right": 3, + "fork_vtype": 3, + "fork_get_num": 4, + "phil_dine": 3, + "lf": 5, + "rf": 5, + "phil_think": 3, + "cleaner_wash": 3, + "f": 22, + "fork_changet": 5, + "forktray_changet": 4, + "sortdef": 2, + "ftype": 13, + "infixr": 2, + "": 2, + "functor": 12, + "F": 34, + "list0": 9, + "extern": 13, + "val": 95, + "functor_list0": 7, + "lam": 20, + "list0_map": 2, + "": 3, + "datatype": 4, + "CoYoneda": 7, + "r": 25, + "CoYoneda_phi": 2, + "CoYoneda_psi": 3, + "ftor": 9, + "fx": 8, + "int0": 4, + "True": 7, + "|": 22, + "False": 8, + "boxed": 2, + "boolean": 2, + "bool2string": 4, + "string": 2, + "case": 9, + "fprint_val": 2, + "": 2, + "int2bool": 2, + "i": 6, + "let": 34, + "if": 7, + "else": 7, + "myintlist0": 2, + "g0ofg1": 1, + "list": 1, + "myboolist0": 9, + "fprintln": 3, + "main0": 3, + "local": 10, + "ATS_PACKNAME": 1, + "ATS_STALOADFLAG": 1, + "static": 1, + "loading": 1, + "run": 1, + "time": 1, + "castfn": 1, + "linset2list": 1, + "option0": 3, + "functor_option0": 2, + "option0_map": 1, + "functor_homres": 2, + "c": 3, + "Yoneda_phi": 3, + "Yoneda_psi": 3, + "m": 4, + "mf": 4, + "natrans": 3, + "G": 2, + "Yoneda_phi_nat": 2, + "Yoneda_psi_nat": 2, + "*": 2, + "list_t": 1, + "g0ofg1_list": 1, + "Yoneda_bool_list0": 3, + "myboolist1": 2, + "UN": 3, + "nmod": 1, + "randsleep": 6, + "intGte": 1, + "ignoret": 2, + "sleep": 2, + "UN.cast": 2, + "uInt": 1, + "rand": 1, + "mod": 1, + "println": 9, + "nl": 2, + "nr": 2, + "ch_lfork": 2, + "ch_rfork": 2, + "HX": 1, + "try": 1, + "actively": 1, + "induce": 1, + "ch_forktray": 3, + "ch": 7, + "f0": 3, + "dynload": 3, + "mythread_create_cloptr": 6, + "llam": 6, + "while": 1, + "true": 5, + "datavtype": 1, + "FORK": 3, + "assume": 2, + "the_forkarray": 2, + "t": 1, + "array_tabulate": 1, + "fopr": 1, + "": 2, + "channel_create_exn": 2, + "": 2, + "i2sz": 4, + "arrayref_tabulate": 1, + "the_forktray": 2, "reuse": 2, "elt": 2, "list_vt_nil": 16, @@ -1270,7 +1553,6 @@ "list_vt_length": 1, "aux": 4, "nat": 4, - ".": 14, "": 3, "list_vt": 7, "sgn": 9, @@ -1294,16 +1576,13 @@ "recursive": 1, "n1": 4, "<=>": 1, - "1": 3, "mynode_make_elt": 4, "ans": 2, - "is": 26, "found": 1, "effmask_all": 3, "free@": 1, "xs1_": 3, "rem": 1, - "*": 2, "opt_some": 1, "opt_none": 1, "list_vt_foreach": 1, @@ -1336,283 +1615,7 @@ "linset_takeoutmin_ngc": 2, "unsnoc": 4, "pos": 1, - "and": 10, - "fold@xs": 1, - "ATS_PACKNAME": 1, - "ATS_STALOADFLAG": 1, - "no": 2, - "static": 1, - "loading": 1, - "at": 2, - "run": 1, - "time": 1, - "castfn": 1, - "linset2list": 1, - "": 1, - "html": 1, - "PUBLIC": 1, - "W3C": 1, - "DTD": 2, - "XHTML": 1, - "EN": 1, - "http": 2, - "www": 1, - "w3": 1, - "org": 1, - "TR": 1, - "xhtml11": 2, - "dtd": 1, - "": 1, - "xmlns=": 1, - "": 1, - "": 1, - "equiv=": 1, - "content=": 1, - "": 1, - "EFFECTIVATS": 1, - "DiningPhil2": 1, - "": 1, - "#patscode_style": 1, - "": 1, - "": 1, - "

": 1, - "Effective": 1, - "ATS": 2, - "Dining": 2, - "Philosophers": 2, - "

": 1, - "In": 2, - "this": 2, - "article": 2, - "present": 1, - "an": 6, - "implementation": 3, - "slight": 1, - "variant": 1, - "the": 30, - "famous": 1, - "problem": 1, - "by": 4, - "Dijkstra": 1, - "that": 8, - "makes": 1, - "simple": 1, - "but": 1, - "convincing": 1, - "use": 1, - "linear": 2, - "types.": 1, - "

": 8, - "The": 8, - "Original": 2, - "Problem": 2, - "

": 8, - "There": 3, - "are": 7, - "five": 1, - "philosophers": 1, - "sitting": 1, - "around": 1, - "table": 3, - "there": 3, - "also": 3, - "forks": 7, - "placed": 1, - "on": 8, - "such": 1, - "each": 2, - "located": 2, - "between": 1, - "left": 3, - "hand": 6, - "philosopher": 5, - "right": 3, - "another": 1, - "philosopher.": 1, - "Each": 4, - "does": 1, - "following": 6, - "routine": 1, - "repeatedly": 1, - "thinking": 1, - "dining.": 1, - "order": 1, - "dine": 1, - "needs": 2, - "first": 2, - "acquire": 1, - "two": 3, - "one": 3, - "his": 4, - "side": 2, - "other": 2, - "side.": 2, - "After": 2, - "finishing": 1, - "dining": 1, - "puts": 2, - "acquired": 1, - "onto": 1, - "A": 6, - "Variant": 1, - "twist": 1, - "added": 1, - "original": 1, - "version": 1, - "

": 1, - "used": 1, - "it": 2, - "becomes": 1, - "be": 9, - "put": 1, - "tray": 2, - "for": 15, - "dirty": 2, - "forks.": 1, - "cleaner": 2, - "who": 1, - "cleans": 1, - "them": 2, - "back": 1, - "table.": 1, - "Channels": 1, - "Communication": 1, - "just": 1, - "shared": 1, - "queue": 1, - "fixed": 1, - "capacity.": 1, - "functions": 1, - "inserting": 1, - "element": 5, - "into": 3, - "taking": 1, - "given": 4, - "

": 7,
-      "class=": 6,
-      "#pats2xhtml_sats": 3,
-      "
": 7, - "If": 2, - "called": 2, - "full": 4, - "caller": 2, - "blocked": 3, - "until": 2, - "taken": 1, - "channel.": 2, - "empty": 1, - "inserted": 1, - "Channel": 2, - "Fork": 3, - "Forks": 1, - "resources": 1, - "type.": 1, - "initially": 1, - "stored": 2, - "which": 2, - "can": 4, - "obtained": 2, - "calling": 2, - "function": 3, - "defined": 1, - "natural": 1, - "numbers": 1, - "less": 1, - "than": 1, - "channels": 4, - "storing": 3, - "chosen": 3, - "capacity": 3, - "reason": 1, - "store": 1, - "most": 1, - "guarantee": 1, - "these": 1, - "never": 2, - "so": 2, - "attempt": 1, - "made": 1, - "send": 1, - "signals": 1, - "awake": 1, - "callers": 1, - "supposedly": 1, - "being": 2, - "due": 1, - "Tray": 1, - "instead": 1, - "become": 1, - "as": 4, - "only": 1, - "total": 1, - "Philosopher": 1, - "Loop": 2, - "implemented": 2, - "loop": 2, - "#pats2xhtml_dats": 3, - "It": 2, - "should": 3, - "straighforward": 2, - "follow": 2, - "Cleaner": 1, - "finds": 1, - "number": 2, - "uses": 1, - "locate": 1, - "fork.": 1, - "Its": 1, - "actual": 1, - "follows": 1, - "now": 1, - "Testing": 1, - "entire": 1, - "files": 1, - "DiningPhil2.sats": 1, - "DiningPhil2.dats": 1, - "DiningPhil2_fork.dats": 1, - "DiningPhil2_thread.dats": 1, - "Makefile": 1, - "available": 1, - "compiling": 1, - "source": 1, - "excutable": 1, - "testing.": 1, - "One": 1, - "able": 1, - "encounter": 1, - "after": 1, - "running": 1, - "simulation": 1, - "while.": 1, - "
": 1, - "size=": 1, - "This": 1, - "written": 1, - "href=": 1, - "Hongwei": 1, - "Xi": 1, - "": 1, - "": 1, - "": 1, - "main": 1, - "fprint_filsub": 1, - "option0": 3, - "functor_option0": 2, - "option0_map": 1, - "functor_homres": 2, - "c": 3, - "Yoneda_phi": 3, - "Yoneda_psi": 3, - "m": 4, - "mf": 4, - "natrans": 3, - "G": 2, - "Yoneda_phi_nat": 2, - "Yoneda_psi_nat": 2, - "list_t": 1, - "g0ofg1_list": 1, - "Yoneda_bool_list0": 3, - "myboolist1": 2 + "fold@xs": 1 }, "Agda": { "module": 3, @@ -1725,50 +1728,12 @@ "check": 6, "for": 7, "expect": 6, - "examples/systems/marksweepgc": 1, - "Node": 10, - "HeapState": 5, - "left": 3, - "right": 1, - "marked": 1, - "freeList": 1, - "clearMarks": 1, - "[": 82, - "hs": 16, - ".marked": 3, - ".right": 4, - "hs.right": 3, - "fun": 1, - "reachable": 1, - "n": 5, - "]": 80, - "+": 14, - "n.": 1, - "hs.left": 2, - "mark": 1, - "from": 2, - "hs.reachable": 1, - "setFreeList": 1, - ".freeList.*": 3, - ".left": 5, - "hs.marked": 1, - "GC": 1, - "root": 5, - "assert": 3, - "Soundness1": 2, - "h": 9, - "live": 3, - "h.reachable": 1, - "h.right": 1, - "Soundness2": 2, - ".reachable": 2, - "h.GC": 1, - ".freeList": 1, - "Completeness": 1, "examples/systems/views": 1, "open": 2, "util/ordering": 1, + "[": 82, "State": 16, + "]": 80, "as": 2, "so": 1, "util/relation": 1, @@ -1800,12 +1765,14 @@ "keys": 3, "map": 2, "s": 6, + "+": 14, "Ref.map": 1, "s.refs": 3, "MapRef": 4, "fact": 4, "State.obj": 3, "Iterator": 2, + "left": 3, "done": 3, "lastRef": 2, "IteratorRef": 5, @@ -1857,6 +1824,7 @@ ".elts": 3, "dom": 1, "<:>": 1, + ".left": 5, "setRefs": 1, "MapRef.put": 1, "k": 5, @@ -1874,6 +1842,7 @@ "ref": 3, "IteratorRef.hasNext": 1, "s.obj": 1, + "assert": 3, "zippishOK": 2, "ks": 6, "vs": 6, @@ -1905,88 +1874,43 @@ "ViewType.pre.views": 2, "but": 1, "#s.obj": 1, - "<": 1 + "<": 1, + "examples/systems/marksweepgc": 1, + "Node": 10, + "HeapState": 5, + "right": 1, + "marked": 1, + "freeList": 1, + "clearMarks": 1, + "hs": 16, + ".marked": 3, + ".right": 4, + "hs.right": 3, + "fun": 1, + "reachable": 1, + "n": 5, + "n.": 1, + "hs.left": 2, + "mark": 1, + "from": 2, + "hs.reachable": 1, + "setFreeList": 1, + ".freeList.*": 3, + "hs.marked": 1, + "GC": 1, + "root": 5, + "Soundness1": 2, + "h": 9, + "live": 3, + "h.reachable": 1, + "h.right": 1, + "Soundness2": 2, + ".reachable": 2, + "h.GC": 1, + ".freeList": 1, + "Completeness": 1 }, "ApacheConf": { - "ServerSignature": 1, - "Off": 1, - "RewriteCond": 15, - "%": 48, - "{": 16, - "REQUEST_METHOD": 1, - "}": 16, - "(": 16, - "HEAD": 1, - "|": 80, - "TRACE": 1, - "DELETE": 1, - "TRACK": 1, - ")": 17, - "[": 17, - "NC": 13, - "OR": 14, - "]": 17, - "THE_REQUEST": 1, - "r": 1, - "n": 1, - "A": 6, - "D": 6, - "HTTP_REFERER": 1, - "<|>": 6, - "C": 5, - "E": 5, - "HTTP_COOKIE": 1, - "REQUEST_URI": 1, - "/": 3, - ";": 2, - "<": 1, - ".": 7, - "HTTP_USER_AGENT": 5, - "java": 1, - "curl": 2, - "wget": 2, - "winhttp": 1, - "HTTrack": 1, - "clshttp": 1, - "archiver": 1, - "loader": 1, - "email": 1, - "harvest": 1, - "extract": 1, - "grab": 1, - "miner": 1, - "libwww": 1, - "-": 43, - "perl": 1, - "python": 1, - "nikto": 1, - "scan": 1, - "#Block": 1, - "mySQL": 1, - "injects": 1, - "QUERY_STRING": 5, - ".*": 3, - "*": 1, - "union": 1, - "select": 1, - "insert": 1, - "cast": 1, - "set": 1, - "declare": 1, - "drop": 1, - "update": 1, - "md5": 1, - "benchmark": 1, - "./": 1, - "localhost": 1, - "loopback": 1, - ".0": 2, - ".1": 1, - "a": 1, - "z0": 1, - "RewriteRule": 1, - "index.php": 1, - "F": 1, "#": 182, "ServerRoot": 2, "#Listen": 2, @@ -2175,6 +2099,7 @@ "#CustomLog": 2, "ScriptAlias": 1, "/cgi": 2, + "-": 43, "bin/": 2, "#Scriptsock": 2, "/var/run/apache2/cgisock": 1, @@ -2232,6 +2157,84 @@ "startup": 2, "builtin": 4, "connect": 2, + "ServerSignature": 1, + "Off": 1, + "RewriteCond": 15, + "%": 48, + "{": 16, + "REQUEST_METHOD": 1, + "}": 16, + "(": 16, + "HEAD": 1, + "|": 80, + "TRACE": 1, + "DELETE": 1, + "TRACK": 1, + ")": 17, + "[": 17, + "NC": 13, + "OR": 14, + "]": 17, + "THE_REQUEST": 1, + "r": 1, + "n": 1, + "A": 6, + "D": 6, + "HTTP_REFERER": 1, + "<|>": 6, + "C": 5, + "E": 5, + "HTTP_COOKIE": 1, + "REQUEST_URI": 1, + "/": 3, + ";": 2, + "<": 1, + ".": 7, + "HTTP_USER_AGENT": 5, + "java": 1, + "curl": 2, + "wget": 2, + "winhttp": 1, + "HTTrack": 1, + "clshttp": 1, + "archiver": 1, + "loader": 1, + "email": 1, + "harvest": 1, + "extract": 1, + "grab": 1, + "miner": 1, + "libwww": 1, + "perl": 1, + "python": 1, + "nikto": 1, + "scan": 1, + "#Block": 1, + "mySQL": 1, + "injects": 1, + "QUERY_STRING": 5, + ".*": 3, + "*": 1, + "union": 1, + "select": 1, + "insert": 1, + "cast": 1, + "set": 1, + "declare": 1, + "drop": 1, + "update": 1, + "md5": 1, + "benchmark": 1, + "./": 1, + "localhost": 1, + "loopback": 1, + ".0": 2, + ".1": 1, + "a": 1, + "z0": 1, + "RewriteRule": 1, + "index.php": 1, + "F": 1, "libexec/apache2/mod_authn_file.so": 1, "libexec/apache2/mod_authn_dbm.so": 1, "libexec/apache2/mod_authn_anon.so": 1, @@ -2337,206 +2340,128 @@ "/private/etc/apache2/other/*.conf": 1 }, "Apex": { - "global": 70, + "public": 10, "class": 7, - "ArrayUtils": 1, + "GeoUtils": 1, "{": 219, - "static": 83, - "String": 60, - "[": 102, - "]": 102, - "EMPTY_STRING_ARRAY": 1, - "new": 60, - "}": 219, - ";": 308, - "Integer": 34, - "MAX_NUMBER_OF_ELEMENTS_IN_LIST": 5, - "get": 4, - "return": 106, - "List": 71, - "": 30, - "objectToString": 1, - "(": 481, - "": 22, - "objects": 3, - ")": 481, - "strings": 3, - "null": 92, - "if": 91, - "objects.size": 1, - "for": 24, - "Object": 23, - "obj": 3, - "instanceof": 1, - "strings.add": 1, - "reverse": 2, - "anArray": 14, - "i": 55, - "j": 10, - "anArray.size": 2, - "-": 18, - "tmp": 6, - "while": 8, - "+": 75, - "SObject": 19, - "lowerCase": 1, - "strs": 9, - "returnValue": 22, - "strs.size": 3, - "str": 10, - "returnValue.add": 3, - "str.toLowerCase": 1, - "upperCase": 1, - "str.toUpperCase": 1, - "trim": 1, - "str.trim": 3, - "mergex": 2, - "array1": 8, - "array2": 9, - "merged": 6, - "array1.size": 4, - "array2.size": 2, - "<": 32, - "": 19, - "sObj": 4, - "merged.add": 2, - "Boolean": 38, - "isEmpty": 7, - "objectArray": 17, - "true": 12, - "objectArray.size": 6, - "isNotEmpty": 4, - "pluck": 1, - "fieldName": 3, - "||": 12, - "fieldName.trim": 2, - ".length": 2, - "plucked": 3, - ".get": 4, - "toString": 3, - "void": 9, - "assertArraysAreEqual": 2, - "expected": 16, - "actual": 16, - "//check": 2, - "to": 4, - "see": 2, - "one": 2, - "param": 2, - "is": 5, - "but": 2, - "the": 4, - "other": 2, - "not": 3, - "System.assert": 6, - "&&": 46, - "ArrayUtils.toString": 12, - "expected.size": 4, - "actual.size": 2, - "merg": 2, - "list1": 15, - "list2": 9, - "returnList": 11, - "list1.size": 6, - "list2.size": 2, - "throw": 6, - "IllegalArgumentException": 5, - "elmt": 8, - "returnList.add": 8, - "subset": 6, - "aList": 4, - "count": 10, - "startIndex": 9, - "<=>": 2, - "size": 2, - "1": 2, - "list1.get": 2, "//": 11, - "//LIST/ARRAY": 1, - "SORTING": 1, - "//FOR": 2, - "FORCE.COM": 1, - "PRIMITIVES": 1, - "Double": 1, - "ID": 1, - "etc.": 1, - "qsort": 18, - "theList": 72, - "PrimitiveComparator": 2, - "sortAsc": 24, - "ObjectComparator": 3, - "comparator": 14, - "theList.size": 2, - "SALESFORCE": 1, - "OBJECTS": 1, - "sObjects": 1, - "ISObjectComparator": 3, - "private": 10, - "lo0": 6, - "hi0": 8, - "lo": 42, - "hi": 50, - "else": 25, - "comparator.compare": 12, - "prs": 8, - "pivot": 14, - "/": 4, - "BooleanUtils": 1, - "isFalse": 1, - "bool": 32, - "false": 13, - "isNotFalse": 1, - "isNotTrue": 1, - "isTrue": 1, - "negate": 1, - "toBooleanDefaultIfNull": 1, - "defaultVal": 2, - "toBoolean": 2, - "value": 10, - "strToBoolean": 1, - "StringUtils.equalsIgnoreCase": 1, - "//Converts": 1, - "an": 4, - "int": 1, + "generate": 1, "a": 6, - "boolean": 1, - "specifying": 1, - "//the": 2, - "conversion": 1, - "values.": 1, - "//Returns": 1, - "//Throws": 1, - "trueValue": 2, - "falseValue": 2, - "toInteger": 1, - "toStringYesNo": 1, - "toStringYN": 1, - "trueString": 2, - "falseString": 2, - "xor": 1, - "boolArray": 4, - "boolArray.size": 1, - "firstItem": 2, + "KML": 1, + "string": 7, + "given": 2, + "page": 1, + "reference": 1, + "call": 1, + "getContent": 1, + "(": 481, + ")": 481, + "then": 1, + "cleanup": 1, + "the": 4, + "output.": 1, + "static": 83, + "generateFromContent": 1, + "PageReference": 2, + "pr": 1, + "ret": 7, + ";": 308, + "try": 1, + "pr.getContent": 1, + ".toString": 1, + "ret.replaceAll": 4, + "get": 4, + "content": 1, + "produces": 1, + "quote": 1, + "chars": 1, + "we": 1, + "need": 1, + "to": 4, + "escape": 1, + "these": 2, + "in": 1, + "node": 1, + "value": 10, + "}": 219, + "catch": 1, + "exception": 1, + "e": 2, + "system.debug": 2, + "+": 75, + "must": 1, + "use": 1, + "ALL": 1, + "since": 1, + "many": 1, + "new": 60, + "line": 1, + "may": 1, + "also": 1, + "return": 106, + "Map": 33, + "": 2, + "String": 60, + "geo_response": 1, + "accountAddressString": 2, + "account": 2, + "acct": 1, + "form": 1, + "an": 4, + "address": 1, + "object": 1, + "adr": 9, + "acct.billingstreet": 1, + "acct.billingcity": 1, + "acct.billingstate": 1, + "if": 91, + "acct.billingpostalcode": 2, + "null": 92, + "acct.billingcountry": 2, + "adr.replaceAll": 4, + "testmethod": 1, + "void": 9, + "t1": 1, + "pageRef": 3, + "Page.kmlPreviewTemplate": 1, + "Test.setCurrentPage": 1, + "system.assert": 1, + "GeoUtils.generateFromContent": 1, + "Account": 2, + "name": 2, + "billingstreet": 1, + "billingcity": 1, + "billingstate": 1, + "billingpostalcode": 1, + "billingcountry": 1, + "insert": 1, + "system.assertEquals": 1, + "global": 70, "EmailUtils": 1, "sendEmailWithStandardAttachments": 3, + "List": 71, + "": 30, "recipients": 11, "emailSubject": 10, "body": 8, + "Boolean": 38, "useHTML": 6, "": 1, "attachmentIDs": 2, "": 2, "stdAttachments": 4, + "[": 102, "SELECT": 1, "id": 1, - "name": 2, "FROM": 1, "Attachment": 2, "WHERE": 1, "Id": 1, "IN": 1, + "]": 102, "": 3, "fileAttachments": 5, + "for": 24, "attachment": 1, "Messaging.EmailFileAttachment": 2, "fileAttachment": 2, @@ -2548,12 +2473,17 @@ "sendEmail": 4, "sendTextEmail": 1, "textBody": 2, + "false": 13, "sendHTMLEmail": 1, "htmlBody": 2, + "true": 12, "recipients.size": 1, "Messaging.SingleEmailMessage": 3, "mail": 2, + "//the": 2, "email": 1, + "is": 5, + "not": 3, "saved": 1, "as": 1, "activity.": 1, @@ -2563,90 +2493,21 @@ "mail.setBccSender": 1, "mail.setUseSignature": 1, "mail.setHtmlBody": 1, + "else": 25, "mail.setPlainTextBody": 1, + "&&": 46, "fileAttachments.size": 1, "mail.setFileAttachments": 1, "Messaging.sendEmail": 1, "isValidEmailAddress": 2, + "str": 10, + "str.trim": 3, + ".length": 2, "split": 5, "str.split": 1, "split.size": 2, ".split": 1, "isNotValidEmailAddress": 1, - "public": 10, - "GeoUtils": 1, - "generate": 1, - "KML": 1, - "string": 7, - "given": 2, - "page": 1, - "reference": 1, - "call": 1, - "getContent": 1, - "then": 1, - "cleanup": 1, - "output.": 1, - "generateFromContent": 1, - "PageReference": 2, - "pr": 1, - "ret": 7, - "try": 1, - "pr.getContent": 1, - ".toString": 1, - "ret.replaceAll": 4, - "content": 1, - "produces": 1, - "quote": 1, - "chars": 1, - "we": 1, - "need": 1, - "escape": 1, - "these": 2, - "in": 1, - "node": 1, - "catch": 1, - "exception": 1, - "e": 2, - "system.debug": 2, - "must": 1, - "use": 1, - "ALL": 1, - "since": 1, - "many": 1, - "line": 1, - "may": 1, - "also": 1, - "Map": 33, - "": 2, - "geo_response": 1, - "accountAddressString": 2, - "account": 2, - "acct": 1, - "form": 1, - "address": 1, - "object": 1, - "adr": 9, - "acct.billingstreet": 1, - "acct.billingcity": 1, - "acct.billingstate": 1, - "acct.billingpostalcode": 2, - "acct.billingcountry": 2, - "adr.replaceAll": 4, - "testmethod": 1, - "t1": 1, - "pageRef": 3, - "Page.kmlPreviewTemplate": 1, - "Test.setCurrentPage": 1, - "system.assert": 1, - "GeoUtils.generateFromContent": 1, - "Account": 2, - "billingstreet": 1, - "billingcity": 1, - "billingstate": 1, - "billingpostalcode": 1, - "billingcountry": 1, - "insert": 1, - "system.assertEquals": 1, "LanguageUtils": 1, "final": 6, "HTTP_LANGUAGE_CODE_PARAMETER_KEY": 2, @@ -2676,9 +2537,11 @@ "//Hungarian": 1, "//Indonesian": 1, "//Turkish": 1, + "private": 10, "": 29, "DEFAULTS": 1, "getLangCodeByHttpParam": 4, + "returnValue": 22, "LANGUAGE_CODE_SET": 1, "getSuppLangCodeSet": 2, "ApexPages.currentPage": 4, @@ -2686,6 +2549,7 @@ "LANGUAGE_HTTP_PARAMETER": 7, "StringUtils.lowerCase": 3, "StringUtils.replaceChars": 2, + ".get": 4, "//underscore": 1, "//dash": 1, "DEFAULTS.containsKey": 3, @@ -2707,12 +2571,14 @@ "getLangCodeByBrowserOrIfNullThenHttpParam": 1, "getLangCodeByBrowserOrIfNullThenUser": 1, "header": 2, + "returnList": 11, "tokens": 3, "StringUtils.split": 1, "token": 7, "token.contains": 1, "token.substring": 1, "token.indexOf": 1, + "returnList.add": 8, "StringUtils.length": 1, "StringUtils.substring": 1, "langCodes": 2, @@ -2725,7 +2591,144 @@ "filterLanguageCode": 4, "getAllLanguages": 3, "translatedLanguageNames.containsKey": 1, + "<": 32, "translatedLanguageNames": 1, + "BooleanUtils": 1, + "isFalse": 1, + "bool": 32, + "isNotFalse": 1, + "isNotTrue": 1, + "isTrue": 1, + "negate": 1, + "toBooleanDefaultIfNull": 1, + "defaultVal": 2, + "toBoolean": 2, + "Integer": 34, + "strToBoolean": 1, + "StringUtils.equalsIgnoreCase": 1, + "//Converts": 1, + "int": 1, + "boolean": 1, + "specifying": 1, + "conversion": 1, + "values.": 1, + "//Returns": 1, + "//Throws": 1, + "trueValue": 2, + "falseValue": 2, + "throw": 6, + "IllegalArgumentException": 5, + "toInteger": 1, + "toStringYesNo": 1, + "toStringYN": 1, + "toString": 3, + "trueString": 2, + "falseString": 2, + "xor": 1, + "boolArray": 4, + "||": 12, + "boolArray.size": 1, + "firstItem": 2, + "ArrayUtils": 1, + "EMPTY_STRING_ARRAY": 1, + "MAX_NUMBER_OF_ELEMENTS_IN_LIST": 5, + "objectToString": 1, + "": 22, + "objects": 3, + "strings": 3, + "objects.size": 1, + "Object": 23, + "obj": 3, + "instanceof": 1, + "strings.add": 1, + "reverse": 2, + "anArray": 14, + "i": 55, + "j": 10, + "anArray.size": 2, + "-": 18, + "tmp": 6, + "while": 8, + "SObject": 19, + "lowerCase": 1, + "strs": 9, + "strs.size": 3, + "returnValue.add": 3, + "str.toLowerCase": 1, + "upperCase": 1, + "str.toUpperCase": 1, + "trim": 1, + "mergex": 2, + "array1": 8, + "array2": 9, + "merged": 6, + "array1.size": 4, + "array2.size": 2, + "": 19, + "sObj": 4, + "merged.add": 2, + "isEmpty": 7, + "objectArray": 17, + "objectArray.size": 6, + "isNotEmpty": 4, + "pluck": 1, + "fieldName": 3, + "fieldName.trim": 2, + "plucked": 3, + "assertArraysAreEqual": 2, + "expected": 16, + "actual": 16, + "//check": 2, + "see": 2, + "one": 2, + "param": 2, + "but": 2, + "other": 2, + "System.assert": 6, + "ArrayUtils.toString": 12, + "expected.size": 4, + "actual.size": 2, + "merg": 2, + "list1": 15, + "list2": 9, + "list1.size": 6, + "list2.size": 2, + "elmt": 8, + "subset": 6, + "aList": 4, + "count": 10, + "startIndex": 9, + "<=>": 2, + "size": 2, + "1": 2, + "list1.get": 2, + "//LIST/ARRAY": 1, + "SORTING": 1, + "//FOR": 2, + "FORCE.COM": 1, + "PRIMITIVES": 1, + "Double": 1, + "ID": 1, + "etc.": 1, + "qsort": 18, + "theList": 72, + "PrimitiveComparator": 2, + "sortAsc": 24, + "ObjectComparator": 3, + "comparator": 14, + "theList.size": 2, + "SALESFORCE": 1, + "OBJECTS": 1, + "sObjects": 1, + "ISObjectComparator": 3, + "lo0": 6, + "hi0": 8, + "lo": 42, + "hi": 50, + "comparator.compare": 12, + "prs": 8, + "pivot": 14, + "/": 4, "TwilioAPI": 2, "MissingTwilioConfigCustomSettingsException": 2, "extends": 1, @@ -2763,56 +2766,140 @@ "TwilioAPI.getDefaultAccount": 1 }, "AppleScript": { - "set": 108, - "windowWidth": 3, - "to": 128, - "windowHeight": 3, - "delay": 3, - "AppleScript": 2, - "s": 3, - "text": 13, - "item": 13, - "delimiters": 1, "tell": 40, "application": 16, - "screen_width": 2, + "set": 108, + "localMailboxes": 3, + "to": 128, + "every": 3, + "mailbox": 2, + "if": 50, "(": 89, - "do": 4, - "JavaScript": 2, - "in": 13, - "document": 2, - ")": 88, - "screen_height": 2, - "end": 67, - "myFrontMost": 3, - "name": 8, + "count": 10, "of": 72, - "first": 1, - "processes": 2, - "whose": 1, - "frontmost": 1, + ")": 88, "is": 40, - "true": 8, + "greater": 5, + "than": 6, + "then": 28, + "messageCountDisplay": 5, + "&": 63, + "return": 16, + "my": 3, + "getMessageCountsForMailboxes": 4, + "else": 14, + "end": 67, + "everyAccount": 2, + "account": 1, + "repeat": 19, + "with": 11, + "eachAccount": 3, + "in": 13, + "accountMailboxes": 3, + "name": 8, + "outputMessage": 2, + "make": 3, + "new": 2, + "outgoing": 2, + "message": 2, + "properties": 2, "{": 32, - "desktopTop": 2, - "desktopLeft": 1, - "desktopRight": 1, - "desktopBottom": 1, + "content": 2, + "subject": 1, + "visible": 2, + "true": 8, "}": 32, - "bounds": 2, - "desktop": 1, - "try": 10, - "process": 5, - "w": 5, - "h": 4, + "font": 2, "size": 5, - "drawer": 2, - "window": 5, "on": 18, - "error": 3, - "position": 1, + "theMailboxes": 2, "-": 57, - "/": 2, + "list": 9, + "mailboxes": 1, + "returns": 2, + "string": 17, + "displayString": 4, + "eachMailbox": 4, + "mailboxName": 2, + "messageCount": 2, + "messages": 1, + "as": 27, + "unreadCount": 2, + "unread": 1, + "padString": 3, + "theString": 4, + "fieldLength": 5, + "integer": 3, + "stringLength": 4, + "length": 1, + "paddedString": 5, + "text": 13, + "from": 9, + "character": 2, + "less": 1, + "or": 6, + "equal": 3, + "paddingLength": 2, + "times": 1, + "space": 1, + "activate": 3, + "current": 3, + "pane": 4, + "UI": 1, + "elements": 1, + "enabled": 2, + "tab": 1, + "group": 1, + "window": 5, + "process": 5, + "click": 1, + "radio": 1, + "button": 4, + "delay": 3, + "get": 1, + "value": 1, + "field": 1, + "display": 4, + "dialog": 4, + "isVoiceOverRunning": 3, + "isRunning": 3, + "false": 9, + "processes": 2, + "contains": 1, + "isVoiceOverRunningWithAppleScript": 3, + "isRunningWithAppleScript": 3, + "AppleScript": 2, + "VoiceOver": 1, + "try": 10, + "x": 1, + "bounds": 2, + "vo": 1, + "cursor": 1, + "error": 3, + "currentDate": 3, + "date": 1, + "amPM": 4, + "currentHour": 9, + "s": 3, + "minutes": 2, + "and": 7, + "<": 2, + "below": 1, + "sound": 1, + "nice": 1, + "currentMinutes": 4, + "ensure": 1, + "nn": 2, + "gets": 1, + "AM": 1, + "readjust": 1, + "for": 5, + "hour": 1, + "time": 1, + "currentTime": 3, + "day": 1, + "output": 1, + "say": 1, "property": 7, "type_list": 6, "extension_list": 6, @@ -2824,9 +2911,7 @@ "FinderSelection": 4, "the": 56, "selection": 2, - "as": 27, "alias": 8, - "list": 9, "FS": 10, "Ideally": 2, "this": 2, @@ -2837,14 +2922,11 @@ "handler": 2, "SelectionCount": 6, "number": 6, - "count": 10, - "if": 50, - "then": 28, "userPicksFolder": 6, - "else": 14, "MyPath": 4, "path": 6, "me": 2, + "item": 13, "If": 2, "I": 2, "m": 2, @@ -2855,25 +2937,17 @@ "these_items": 18, "choose": 2, "file": 6, - "with": 11, "prompt": 2, "type": 6, "thesefiles": 2, "item_info": 24, - "repeat": 19, "i": 10, - "from": 9, "this_item": 14, "info": 4, - "for": 5, "folder": 10, "processFolder": 8, - "false": 9, - "and": 7, - "or": 6, "extension": 4, "theFilePath": 8, - "string": 17, "thePOSIXFilePath": 8, "POSIX": 4, "processFile": 8, @@ -2881,73 +2955,20 @@ "theFolder": 6, "without": 2, "invisibles": 2, - "&": 63, "thePOSIXFileName": 6, "terminalCommand": 6, "convertCommand": 4, "newFileName": 4, + "do": 4, "shell": 2, "script": 2, - "need": 1, - "pass": 1, - "URL": 1, - "Terminal": 1, - "localMailboxes": 3, - "every": 3, - "mailbox": 2, - "greater": 5, - "than": 6, - "messageCountDisplay": 5, - "return": 16, - "my": 3, - "getMessageCountsForMailboxes": 4, - "everyAccount": 2, - "account": 1, - "eachAccount": 3, - "accountMailboxes": 3, - "outputMessage": 2, - "make": 3, - "new": 2, - "outgoing": 2, - "message": 2, - "properties": 2, - "content": 2, - "subject": 1, - "visible": 2, - "font": 2, - "theMailboxes": 2, - "mailboxes": 1, - "returns": 2, - "displayString": 4, - "eachMailbox": 4, - "mailboxName": 2, - "messageCount": 2, - "messages": 1, - "unreadCount": 2, - "unread": 1, - "padString": 3, - "theString": 4, - "fieldLength": 5, - "integer": 3, - "stringLength": 4, - "length": 1, - "paddedString": 5, - "character": 2, - "less": 1, - "equal": 3, - "paddingLength": 2, - "times": 1, - "space": 1, "lowFontSize": 9, "highFontSize": 6, "messageText": 4, "userInput": 4, - "display": 4, - "dialog": 4, "default": 4, "answer": 3, "buttons": 3, - "button": 4, "returned": 5, "minimumFontSize": 4, "newFontSize": 6, @@ -2955,55 +2976,37 @@ "theText": 3, "exit": 1, "fontList": 2, - "activate": 3, "crazyTextMessage": 2, "eachCharacter": 4, "characters": 1, "some": 1, "random": 4, "color": 1, - "current": 3, - "pane": 4, - "UI": 1, - "elements": 1, - "enabled": 2, - "tab": 1, - "group": 1, - "click": 1, - "radio": 1, - "get": 1, - "value": 1, - "field": 1, - "isVoiceOverRunning": 3, - "isRunning": 3, - "contains": 1, - "isVoiceOverRunningWithAppleScript": 3, - "isRunningWithAppleScript": 3, - "VoiceOver": 1, - "x": 1, - "vo": 1, - "cursor": 1, - "currentDate": 3, - "date": 1, - "amPM": 4, - "currentHour": 9, - "minutes": 2, - "<": 2, - "below": 1, - "sound": 1, - "nice": 1, - "currentMinutes": 4, - "ensure": 1, - "nn": 2, - "gets": 1, - "AM": 1, - "readjust": 1, - "hour": 1, - "time": 1, - "currentTime": 3, - "day": 1, - "output": 1, - "say": 1 + "windowWidth": 3, + "windowHeight": 3, + "delimiters": 1, + "screen_width": 2, + "JavaScript": 2, + "document": 2, + "screen_height": 2, + "myFrontMost": 3, + "first": 1, + "whose": 1, + "frontmost": 1, + "desktopTop": 2, + "desktopLeft": 1, + "desktopRight": 1, + "desktopBottom": 1, + "desktop": 1, + "w": 5, + "h": 4, + "drawer": 2, + "position": 1, + "/": 2, + "need": 1, + "pass": 1, + "URL": 1, + "Terminal": 1 }, "Arduino": { "void": 2, @@ -3018,45 +3021,12 @@ "Serial.print": 1 }, "AsciiDoc": { - "Gregory": 2, - "Rom": 2, - "has": 2, - "written": 2, - "an": 2, "AsciiDoc": 3, - "plugin": 2, - "for": 2, - "the": 2, - "Redmine": 2, - "project": 2, - "management": 2, - "application.": 2, - "https": 1, - "//github.com/foo": 1, - "-": 4, - "users/foo": 1, - "vicmd": 1, - "gif": 1, - "tag": 1, - "rom": 2, - "[": 2, - "]": 2, - "end": 1, - "berschrift": 1, - "*": 4, - "Codierungen": 1, - "sind": 1, - "verr": 1, - "ckt": 1, - "auf": 1, - "lteren": 1, - "Versionen": 1, - "von": 1, - "Ruby": 1, "Home": 1, "Page": 1, "Example": 1, "Articles": 1, + "-": 4, "Item": 6, "Document": 1, "Title": 1, @@ -3082,7 +3052,40 @@ "B": 2, "B*": 1, ".Section": 1, - "list": 1 + "list": 1, + "*": 4, + "Gregory": 2, + "Rom": 2, + "has": 2, + "written": 2, + "an": 2, + "plugin": 2, + "for": 2, + "the": 2, + "Redmine": 2, + "project": 2, + "management": 2, + "application.": 2, + "https": 1, + "//github.com/foo": 1, + "users/foo": 1, + "vicmd": 1, + "gif": 1, + "tag": 1, + "rom": 2, + "[": 2, + "]": 2, + "end": 1, + "berschrift": 1, + "Codierungen": 1, + "sind": 1, + "verr": 1, + "ckt": 1, + "auf": 1, + "lteren": 1, + "Versionen": 1, + "von": 1, + "Ruby": 1 }, "AspectJ": { "package": 2, @@ -3461,94 +3464,9 @@ "END": 1 }, "BlitzBasic": { - "Local": 34, - "bk": 3, - "CreateBank": 5, - "(": 125, - ")": 126, - "PokeFloat": 3, - "-": 24, - "Print": 13, - "Bin": 4, - "PeekInt": 4, - "%": 6, - "Shl": 7, - "f": 5, - "ff": 1, - "+": 11, - "Hex": 2, - "FloatToHalf": 3, - "HalfToFloat": 1, - "FToI": 2, - "WaitKey": 2, - "End": 58, ";": 57, - "Half": 1, - "precision": 2, - "bit": 2, - "arithmetic": 2, - "library": 2, - "Global": 2, - "Half_CBank_": 13, - "Function": 101, - "f#": 3, - "If": 25, - "Then": 18, - "Return": 36, - "HalfToFloat#": 1, - "h": 4, - "signBit": 6, - "exponent": 22, - "fraction": 9, - "fBits": 8, - "And": 8, - "<": 18, - "Shr": 3, - "F": 3, - "FF": 2, - "ElseIf": 1, - "Or": 4, - "PokeInt": 2, - "PeekFloat": 1, - "F800000": 1, - "FFFFF": 1, - "Abs": 1, - "*": 2, - "Sgn": 1, - "Else": 7, - "EndIf": 7, - "HalfAdd": 1, - "l": 84, - "r": 12, - "HalfSub": 1, - "HalfMul": 1, - "HalfDiv": 1, - "HalfLT": 1, - "HalfGT": 1, "Double": 2, - "DoubleOut": 1, - "[": 2, - "]": 2, - "Double_CBank_": 1, - "DoubleToFloat#": 1, - "d": 1, - "FloatToDouble": 1, - "IntToDouble": 1, - "i": 49, - "SefToDouble": 1, - "s": 12, - "e": 4, - "DoubleAdd": 1, - "DoubleSub": 1, - "DoubleMul": 1, - "DoubleDiv": 1, - "DoubleLT": 1, - "DoubleGT": 1, - "IDEal": 3, - "Editor": 3, - "Parameters": 3, - "F#1A#20#2F": 1, - "C#Blitz3D": 3, + "-": 24, "linked": 2, "list": 32, "container": 1, @@ -3567,6 +3485,7 @@ "Field": 10, "head_.ListNode": 1, "tail_.ListNode": 1, + "End": 58, "ListNode": 8, "pv_.ListNode": 1, "nx_.ListNode": 1, @@ -3579,9 +3498,14 @@ "a": 46, "new": 4, "object": 2, + "Function": 101, "CreateList.LList": 1, + "(": 125, + ")": 126, + "Local": 34, "l.LList": 20, "New": 11, + "l": 84, "head_": 35, "tail_": 34, "nx_": 33, @@ -3596,6 +3520,7 @@ "safe": 1, "iterate": 2, "freely": 1, + "Return": 36, "Free": 1, "all": 3, "elements": 4, @@ -3613,6 +3538,7 @@ "n.ListNode": 12, "While": 7, "n": 54, + "<": 18, "nx.ListNode": 1, "nx": 1, "Wend": 6, @@ -3626,6 +3552,8 @@ "GetIterator": 3, "elems": 4, "EachIn": 5, + "i": 49, + "+": 11, "True": 4, "if": 2, "contains": 1, @@ -3645,9 +3573,13 @@ "To": 6, "Step": 2, "ListAddLast": 2, + "PeekInt": 4, "Next": 7, "containing": 3, "ListToBank": 1, + "*": 2, + "CreateBank": 5, + "PokeInt": 2, "Swap": 1, "contents": 1, "two": 1, @@ -3682,6 +3614,8 @@ "retrieve": 1, "node": 8, "ListFindNode.ListNode": 1, + "If": 25, + "Then": 18, "Append": 1, "end": 5, "fast": 2, @@ -3701,14 +3635,17 @@ "index": 13, "ValueAtIndex": 1, "ListNodeAtIndex": 3, + "Else": 7, "invalid": 1, "ListNodeAtIndex.ListNode": 1, + "e": 4, "Beyond": 1, "valid": 2, "Negative": 1, "count": 1, "backward": 1, "Before": 3, + "EndIf": 7, "Replace": 1, "added": 2, "by": 3, @@ -3747,6 +3684,7 @@ "most": 1, "programs": 1, "won": 1, + "s": 12, "available": 1, "moment": 1, "l_": 7, @@ -3780,6 +3718,7 @@ "currently": 1, "pointed": 1, "IteratorRemove": 1, + "And": 8, "temp.ListNode": 1, "temp": 1, "Call": 1, @@ -3787,8 +3726,12 @@ "out": 1, "disconnect": 1, "IteratorBreak": 1, + "IDEal": 3, + "Editor": 3, + "Parameters": 3, "F#5#A#10#18#2A#32#3E#47#4C#58#66#6F#78#8F#9B#A9#B7#BD#C5#CC": 1, "F#E3#E9#EF#F4#F9#103#10D#11B#12B#13F#152#163": 1, + "C#Blitz3D": 3, "result": 4, "s.Sum3Obj": 2, "Sum3Obj": 6, @@ -3796,7 +3739,9 @@ "MilliSecs": 4, "Sum3_": 2, "MakeSum3Obj": 2, + "Print": 13, "Sum3": 2, + "WaitKey": 2, "b": 7, "c": 7, "isActive": 4, @@ -3811,7 +3756,65 @@ "a.Sum3Obj": 1, "Object.Sum3Obj": 1, "return_": 2, - "First": 1 + "First": 1, + "bk": 3, + "PokeFloat": 3, + "Bin": 4, + "%": 6, + "Shl": 7, + "f": 5, + "ff": 1, + "Hex": 2, + "FloatToHalf": 3, + "HalfToFloat": 1, + "FToI": 2, + "Half": 1, + "precision": 2, + "bit": 2, + "arithmetic": 2, + "library": 2, + "Global": 2, + "Half_CBank_": 13, + "f#": 3, + "HalfToFloat#": 1, + "h": 4, + "signBit": 6, + "exponent": 22, + "fraction": 9, + "fBits": 8, + "Shr": 3, + "F": 3, + "FF": 2, + "ElseIf": 1, + "Or": 4, + "PeekFloat": 1, + "F800000": 1, + "FFFFF": 1, + "Abs": 1, + "Sgn": 1, + "HalfAdd": 1, + "r": 12, + "HalfSub": 1, + "HalfMul": 1, + "HalfDiv": 1, + "HalfLT": 1, + "HalfGT": 1, + "DoubleOut": 1, + "[": 2, + "]": 2, + "Double_CBank_": 1, + "DoubleToFloat#": 1, + "d": 1, + "FloatToDouble": 1, + "IntToDouble": 1, + "SefToDouble": 1, + "DoubleAdd": 1, + "DoubleSub": 1, + "DoubleMul": 1, + "DoubleDiv": 1, + "DoubleLT": 1, + "DoubleGT": 1, + "F#1A#20#2F": 1 }, "BlitzMax": { "SuperStrict": 1, @@ -3841,108 +3844,16 @@ }, "Bluespec": { "package": 2, - "TbTL": 1, - ";": 156, - "import": 1, "TL": 6, - "*": 1, + ";": 156, "interface": 2, - "Lamp": 3, "method": 42, - "Bool": 32, - "changed": 2, "Action": 17, - "show_offs": 2, - "show_ons": 2, - "reset": 2, - "endinterface": 2, - "module": 3, - "mkLamp#": 1, - "(": 158, - "String": 1, - "name": 3, - "lamp": 5, - ")": 163, - "Reg#": 15, - "prev": 5, - "<": 44, - "-": 29, - "mkReg": 15, - "False": 9, - "if": 9, - "&&": 3, - "write": 2, - "+": 7, - "endmethod": 8, - "endmodule": 3, - "mkTest": 1, - "let": 1, - "dut": 2, - "sysTL": 3, - "Bit#": 1, - "ctr": 8, - "carN": 4, - "carS": 2, - "carE": 2, - "carW": 2, - "lamps": 15, - "[": 17, - "]": 17, - "mkLamp": 12, - "dut.lampRedNS": 1, - "dut.lampAmberNS": 1, - "dut.lampGreenNS": 1, - "dut.lampRedE": 1, - "dut.lampAmberE": 1, - "dut.lampGreenE": 1, - "dut.lampRedW": 1, - "dut.lampAmberW": 1, - "dut.lampGreenW": 1, - "dut.lampRedPed": 1, - "dut.lampAmberPed": 1, - "dut.lampGreenPed": 1, - "rule": 10, - "start": 1, - "dumpvars": 1, - "endrule": 10, - "detect_cars": 1, - "dut.set_car_state_N": 1, - "dut.set_car_state_S": 1, - "dut.set_car_state_E": 1, - "dut.set_car_state_W": 1, - "go": 1, - "True": 6, - "<=>": 3, - "12_000": 1, "ped_button_push": 4, - "stop": 1, - "display": 2, - "finish": 1, - "function": 10, - "do_offs": 2, - "l": 3, - "l.show_offs": 1, - "do_ons": 2, - "l.show_ons": 1, - "do_reset": 2, - "l.reset": 1, - "do_it": 4, - "f": 2, - "action": 3, - "for": 3, - "Integer": 3, - "i": 15, - "endaction": 3, - "endfunction": 7, - "any_changes": 2, - "b": 12, - "||": 7, - ".changed": 1, - "return": 9, - "show": 1, - "time": 1, - "endpackage": 2, + "(": 158, + ")": 163, "set_car_state_N": 2, + "Bool": 32, "x": 8, "set_car_state_S": 2, "set_car_state_E": 2, @@ -3959,6 +3870,7 @@ "lampRedPed": 2, "lampAmberPed": 2, "lampGreenPed": 2, + "endinterface": 2, "typedef": 3, "enum": 1, "{": 1, @@ -3979,6 +3891,8 @@ "UInt#": 2, "Time32": 9, "CtrSize": 3, + "module": 3, + "sysTL": 3, "allRedDelay": 2, "amberDelay": 2, "nsGreenDelay": 2, @@ -3986,27 +3900,43 @@ "pedGreenDelay": 1, "pedAmberDelay": 1, "clocks_per_sec": 2, + "Reg#": 15, "state": 21, + "<": 44, + "-": 29, + "mkReg": 15, "next_green": 8, "secs": 7, "ped_button_pushed": 4, + "False": 9, "car_present_N": 3, + "True": 6, "car_present_S": 3, "car_present_E": 4, "car_present_W": 4, "car_present_NS": 3, + "||": 7, "cycle_ctr": 6, + "rule": 10, "dec_cycle_ctr": 1, + "endrule": 10, "Rules": 5, "low_priority_rule": 2, "rules": 4, "inc_sec": 1, + "+": 7, "endrules": 4, + "function": 10, "next_state": 8, "ns": 4, + "action": 3, + "<=>": 3, "0": 2, + "endaction": 3, + "endfunction": 7, "green_seq": 7, "case": 2, + "return": 9, "endcase": 2, "car_present": 4, "make_from_green_rule": 5, @@ -4018,6 +3948,7 @@ "amber_state": 2, "ng": 2, "from_amber": 1, + "&&": 3, "hprs": 10, "7": 1, "1": 1, @@ -4027,12 +3958,84 @@ "5": 1, "6": 1, "fromAllRed": 2, + "if": 9, "else": 4, "noAction": 1, "high_priority_rules": 4, + "[": 17, + "]": 17, + "for": 3, + "Integer": 3, + "i": 15, "rJoin": 1, "addRules": 1, - "preempts": 1 + "preempts": 1, + "endmethod": 8, + "b": 12, + "endmodule": 3, + "endpackage": 2, + "TbTL": 1, + "import": 1, + "*": 1, + "Lamp": 3, + "changed": 2, + "show_offs": 2, + "show_ons": 2, + "reset": 2, + "mkLamp#": 1, + "String": 1, + "name": 3, + "lamp": 5, + "prev": 5, + "write": 2, + "mkTest": 1, + "let": 1, + "dut": 2, + "Bit#": 1, + "ctr": 8, + "carN": 4, + "carS": 2, + "carE": 2, + "carW": 2, + "lamps": 15, + "mkLamp": 12, + "dut.lampRedNS": 1, + "dut.lampAmberNS": 1, + "dut.lampGreenNS": 1, + "dut.lampRedE": 1, + "dut.lampAmberE": 1, + "dut.lampGreenE": 1, + "dut.lampRedW": 1, + "dut.lampAmberW": 1, + "dut.lampGreenW": 1, + "dut.lampRedPed": 1, + "dut.lampAmberPed": 1, + "dut.lampGreenPed": 1, + "start": 1, + "dumpvars": 1, + "detect_cars": 1, + "dut.set_car_state_N": 1, + "dut.set_car_state_S": 1, + "dut.set_car_state_E": 1, + "dut.set_car_state_W": 1, + "go": 1, + "12_000": 1, + "stop": 1, + "display": 2, + "finish": 1, + "do_offs": 2, + "l": 3, + "l.show_offs": 1, + "do_ons": 2, + "l.show_ons": 1, + "do_reset": 2, + "l.reset": 1, + "do_it": 4, + "f": 2, + "any_changes": 2, + ".changed": 1, + "show": 1, + "time": 1 }, "Brightscript": { "**": 17, @@ -4297,154 +4300,221 @@ "buttons": 1 }, "C": { - "#include": 154, - "const": 358, - "char": 530, - "*blob_type": 2, - ";": 5465, - "struct": 360, - "blob": 6, - "*lookup_blob": 2, - "(": 6243, - "unsigned": 140, - "*sha1": 16, - ")": 6245, - "{": 1531, - "object": 41, - "*obj": 9, - "lookup_object": 2, - "sha1": 20, - "if": 1015, - "obj": 48, - "return": 529, - "create_object": 2, - "OBJ_BLOB": 3, - "alloc_blob_node": 1, - "-": 1803, - "type": 36, - "error": 96, - "sha1_to_hex": 8, - "typename": 2, - "NULL": 330, - "}": 1547, - "*": 261, - "int": 446, - "parse_blob_buffer": 2, - "*item": 10, - "void": 288, - "*buffer": 6, - "long": 105, - "size": 120, - "item": 24, - "object.parsed": 4, "#ifndef": 89, - "BLOB_H": 2, + "http_parser_h": 2, "#define": 920, + "#ifdef": 66, + "__cplusplus": 20, "extern": 38, + "{": 1531, "#endif": 243, - "BOOTSTRAP_H": 2, - "": 8, - "__GNUC__": 8, - "typedef": 191, - "*true": 1, - "*false": 1, - "*eof": 1, - "*empty_list": 1, - "*global_enviroment": 1, - "enum": 30, - "obj_type": 1, - "scm_bool": 1, - "scm_empty_list": 1, - "scm_eof": 1, - "scm_char": 1, - "scm_int": 1, - "scm_pair": 1, - "scm_symbol": 1, - "scm_prim_fun": 1, - "scm_lambda": 1, - "scm_str": 1, - "scm_file": 1, - "*eval_proc": 1, - "*maybe_add_begin": 1, - "*code": 2, - "init_enviroment": 1, - "*env": 4, - "eval_err": 1, - "*msg": 7, - "__attribute__": 1, - "noreturn": 1, - "define_var": 1, - "*var": 4, - "*val": 6, - "set_var": 1, - "*get_var": 1, - "*cond2nested_if": 1, - "*cond": 1, - "*let2lambda": 1, - "*let": 1, - "*and2nested_if": 1, - "*and": 1, - "*or2nested_if": 1, - "*or": 1, - "git_cache_init": 1, - "git_cache": 4, - "*cache": 4, - "size_t": 52, - "git_cached_obj_freeptr": 1, - "free_ptr": 2, + "HTTP_PARSER_VERSION_MAJOR": 1, + "HTTP_PARSER_VERSION_MINOR": 1, + "#include": 154, + "": 2, + "#if": 92, + "defined": 42, + "(": 6243, + "_WIN32": 3, + ")": 6245, + "&&": 248, + "__MINGW32__": 1, + "_MSC_VER": 5, + "||": 141, "<": 219, - "git__size_t_powerof2": 1, - "cache": 26, - "size_mask": 6, - "lru_count": 1, - "free_obj": 4, - "git_mutex_init": 1, - "&": 442, - "lock": 6, - "nodes": 10, - "git__malloc": 3, - "sizeof": 71, - "git_cached_obj": 5, - "GITERR_CHECK_ALLOC": 3, - "memset": 4, - "git_cache_free": 1, - "i": 410, - "for": 88, - "+": 551, + "typedef": 191, + "__int8": 2, + "int8_t": 3, + ";": 5465, + "unsigned": 140, + "uint8_t": 6, + "__int16": 2, + "int16_t": 1, + "uint16_t": 12, + "__int32": 2, + "int32_t": 112, + "uint32_t": 144, + "__int64": 3, + "int64_t": 2, + "uint64_t": 8, + "int": 446, + "size_t": 52, + "ssize_t": 1, + "#else": 94, + "": 1, + "HTTP_PARSER_STRICT": 5, + "HTTP_PARSER_DEBUG": 4, + "HTTP_MAX_HEADER_SIZE": 2, + "*1024": 4, + "struct": 360, + "http_parser": 13, + "http_parser_settings": 5, + "HTTP_METHOD_MAP": 3, + "XX": 63, + "DELETE": 2, + "GET": 2, + "HEAD": 2, + "POST": 2, + "PUT": 2, + "CONNECT": 2, + "OPTIONS": 2, + "TRACE": 2, + "COPY": 2, + "LOCK": 2, + "MKCOL": 2, + "MOVE": 2, + "PROPFIND": 2, + "PROPPATCH": 2, + "SEARCH": 3, + "UNLOCK": 2, + "REPORT": 2, + "MKACTIVITY": 2, + "CHECKOUT": 2, + "MERGE": 2, + "MSEARCH": 1, + "M": 1, + "-": 1803, + "NOTIFY": 2, + "SUBSCRIBE": 2, + "UNSUBSCRIBE": 2, + "PATCH": 2, + "PURGE": 2, + "enum": 30, + "http_method": 4, + "num": 24, + "name": 28, + "string": 18, + "HTTP_##name": 1, + "#undef": 7, + "}": 1547, + "http_parser_type": 3, + "HTTP_REQUEST": 7, + "HTTP_RESPONSE": 3, + "HTTP_BOTH": 1, + "flags": 89, + "F_CHUNKED": 11, + "<<": 56, + "F_CONNECTION_KEEP_ALIVE": 3, + "F_CONNECTION_CLOSE": 3, + "F_TRAILING": 3, + "F_UPGRADE": 3, + "F_SKIPBODY": 4, + "HTTP_ERRNO_MAP": 3, + "OK": 1, + "CB_message_begin": 1, + "CB_url": 1, + "CB_header_field": 1, + "CB_header_value": 1, + "CB_headers_complete": 1, + "CB_body": 1, + "CB_message_complete": 1, + "INVALID_EOF_STATE": 1, + "HEADER_OVERFLOW": 1, + "CLOSED_CONNECTION": 1, + "INVALID_VERSION": 1, + "INVALID_STATUS": 1, + "INVALID_METHOD": 1, + "INVALID_URL": 1, + "INVALID_HOST": 1, + "INVALID_PORT": 1, + "INVALID_PATH": 1, + "INVALID_QUERY_STRING": 1, + "INVALID_FRAGMENT": 1, + "LF_EXPECTED": 1, + "INVALID_HEADER_TOKEN": 1, + "INVALID_CONTENT_LENGTH": 1, + "INVALID_CHUNK_SIZE": 1, + "INVALID_CONSTANT": 1, + "INVALID_INTERNAL_STATE": 1, + "STRICT": 1, + "PAUSED": 1, + "UNKNOWN": 1, + "HTTP_ERRNO_GEN": 3, + "n": 70, + "s": 154, + "HPE_##n": 1, + "http_errno": 11, + "HTTP_PARSER_ERRNO": 10, + "p": 60, + "HTTP_PARSER_ERRNO_LINE": 2, + "error_lineno": 3, + "char": 530, + "type": 36, + "state": 104, + "header_state": 42, + "index": 58, + "nread": 7, + "content_length": 27, + "short": 6, + "http_major": 11, + "http_minor": 11, + "status_code": 8, + "method": 39, + "upgrade": 3, + "void": 288, + "*data": 12, + "http_cb": 3, + "on_message_begin": 1, + "http_data_cb": 4, + "on_url": 1, + "on_header_field": 1, + "on_header_value": 1, + "on_headers_complete": 3, + "on_body": 1, + "on_message_complete": 1, + "http_parser_url_fields": 2, + "UF_SCHEMA": 2, + "UF_HOST": 3, + "UF_PORT": 5, + "UF_PATH": 2, + "UF_QUERY": 2, + "UF_FRAGMENT": 2, + "UF_MAX": 3, + "http_parser_url": 3, + "field_set": 5, + "port": 7, + "off": 8, + "len": 30, + "field_data": 5, "[": 601, "]": 601, - "git_cached_obj_decref": 3, - "git__free": 15, - "*git_cache_get": 1, - "git_oid": 7, - "*oid": 2, - "uint32_t": 144, - "hash": 12, - "*node": 2, - "*result": 1, - "memcpy": 35, - "oid": 17, - "id": 13, - "git_mutex_lock": 2, - "node": 9, - "&&": 248, - "git_oid_cmp": 6, - "git_cached_obj_incref": 3, - "result": 48, - "git_mutex_unlock": 2, - "*git_cache_try_store": 1, - "*_entry": 1, - "*entry": 2, - "_entry": 1, - "entry": 17, - "else": 190, + "http_parser_init": 2, + "*parser": 9, + "http_parser_execute": 2, + "const": 358, + "*settings": 2, + "http_should_keep_alive": 2, + "*http_method_str": 1, + "m": 8, + "*http_errno_name": 1, + "err": 38, + "*http_errno_description": 1, + "http_parser_parse_url": 2, + "*buf": 10, + "buflen": 3, + "is_connect": 4, + "*u": 2, + "http_parser_pause": 2, + "paused": 3, "save_commit_buffer": 3, "*commit_type": 2, "static": 455, "commit": 59, "*check_commit": 1, + "object": 41, + "*obj": 9, + "*sha1": 16, "quiet": 5, + "if": 1015, + "obj": 48, "OBJ_COMMIT": 5, + "error": 96, + "sha1_to_hex": 8, + "sha1": 20, + "typename": 2, + "return": 529, + "NULL": 330, + "*": 261, "*lookup_commit_reference_gently": 2, "deref_tag": 1, "parse_object": 1, @@ -4463,19 +4533,20 @@ "object.sha1": 8, "warning": 1, "*lookup_commit": 2, + "lookup_object": 2, + "create_object": 2, "alloc_commit_node": 1, "*lookup_commit_reference_by_name": 2, "*name": 12, "*commit": 10, "get_sha1": 1, - "name": 28, - "||": 141, "parse_commit": 3, + "long": 105, "parse_commit_date": 2, - "*buf": 10, "*tail": 2, "*dateptr": 1, "buf": 57, + "+": 551, "tail": 12, "memcmp": 6, "while": 70, @@ -4493,30 +4564,36 @@ "*graft": 3, "cmp": 9, "graft": 10, + "else": 190, "register_commit_graft": 2, "ignore_dups": 2, "pos": 7, "free": 62, "alloc_nr": 1, "xrealloc": 2, + "sizeof": 71, "parse_commit_buffer": 3, + "*item": 10, + "*buffer": 6, + "size": 120, "buffer": 10, "*bufptr": 1, "parent": 7, "commit_list": 35, "**pptr": 1, + "item": 24, + "object.parsed": 4, "<=>": 16, "bufptr": 12, "46": 1, "tree": 3, "5": 1, "45": 1, - "n": 70, "bogus": 1, - "s": 154, "get_sha1_hex": 2, "lookup_tree": 1, "pptr": 5, + "&": 442, "parents": 4, "lookup_commit_graft": 1, "*new_parent": 2, @@ -4532,6 +4609,8 @@ "lookup_commit": 2, "commit_list_insert": 2, "next": 8, + "i": 410, + "for": 88, "date": 5, "object_type": 1, "ret": 142, @@ -4565,1617 +4644,97 @@ "**next": 2, "*new": 1, "new": 4, - "COMMIT_H": 2, - "*util": 1, - "indegree": 1, - "*parents": 4, - "*tree": 3, - "decoration": 1, - "name_decoration": 3, - "*commit_list_insert": 1, - "commit_list_count": 1, - "*l": 1, - "*commit_list_insert_by_date": 1, - "free_commit_list": 1, - "cmit_fmt": 3, - "CMIT_FMT_RAW": 1, - "CMIT_FMT_MEDIUM": 2, - "CMIT_FMT_DEFAULT": 1, - "CMIT_FMT_SHORT": 1, - "CMIT_FMT_FULL": 1, - "CMIT_FMT_FULLER": 1, - "CMIT_FMT_ONELINE": 1, - "CMIT_FMT_EMAIL": 1, - "CMIT_FMT_USERFORMAT": 1, - "CMIT_FMT_UNSPECIFIED": 1, - "pretty_print_context": 6, - "fmt": 4, - "abbrev": 1, - "*subject": 1, - "*after_subject": 1, - "preserve_subject": 1, - "date_mode": 2, - "date_mode_explicit": 1, - "need_8bit_cte": 2, - "show_notes": 1, - "reflog_walk_info": 1, - "*reflog_info": 1, - "*output_encoding": 2, - "userformat_want": 2, - "notes": 1, - "has_non_ascii": 1, - "*text": 1, - "rev_info": 2, - "*logmsg_reencode": 1, - "*reencode_commit_message": 1, - "**encoding_p": 1, - "get_commit_format": 1, - "*arg": 1, - "*format_subject": 1, - "strbuf": 12, - "*sb": 7, - "*line_separator": 1, - "userformat_find_requirements": 1, - "*fmt": 2, - "*w": 2, - "format_commit_message": 1, - "*format": 2, - "*context": 1, - "pretty_print_commit": 1, - "*pp": 4, - "pp_commit_easy": 1, - "pp_user_info": 1, - "*what": 1, - "*line": 1, - "*encoding": 2, - "pp_title_line": 1, - "**msg_p": 2, - "pp_remainder": 1, - "indent": 1, - "*pop_most_recent_commit": 1, - "mark": 3, - "*pop_commit": 1, - "**stack": 1, - "clear_commit_marks": 1, - "clear_commit_marks_for_object_array": 1, - "object_array": 2, - "sort_in_topological_order": 1, - "**": 6, - "list": 1, - "lifo": 1, - "FLEX_ARRAY": 1, - "*read_graft_line": 1, - "len": 30, - "*lookup_commit_graft": 1, - "*get_merge_bases": 1, - "*rev1": 1, - "*rev2": 1, - "cleanup": 12, - "*get_merge_bases_many": 1, - "*one": 1, - "**twos": 1, - "*get_octopus_merge_bases": 1, - "*in": 1, - "register_shallow": 1, - "unregister_shallow": 1, - "for_each_commit_graft": 1, - "each_commit_graft_fn": 1, - "is_repository_shallow": 1, - "*get_shallow_commits": 1, - "*heads": 2, - "depth": 2, - "shallow_flag": 1, - "not_shallow_flag": 1, - "is_descendant_of": 1, - "in_merge_bases": 1, - "interactive_add": 1, - "argc": 26, - "**argv": 6, - "*prefix": 7, - "patch": 1, - "run_add_interactive": 1, - "*revision": 1, - "*patch_mode": 1, - "**pathspec": 1, - "inline": 3, - "single_parent": 1, - "*reduce_heads": 1, - "commit_extra_header": 7, - "*key": 5, - "*value": 5, - "append_merge_tag_headers": 1, - "***tail": 1, - "commit_tree": 1, - "*ret": 20, - "*author": 2, - "*sign_commit": 2, - "commit_tree_extended": 1, - "*read_commit_extra_headers": 1, - "*read_commit_extra_header_lines": 1, - "free_commit_extra_headers": 1, - "*extra": 1, - "merge_remote_util": 1, - "*get_merge_parent": 1, - "parse_signed_commit": 1, - "*message": 1, - "*signature": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "#ifdef": 66, - "CONFIG_SMP": 1, - "DEFINE_MUTEX": 1, - "cpu_add_remove_lock": 3, - "cpu_maps_update_begin": 9, - "mutex_lock": 5, - "cpu_maps_update_done": 9, - "mutex_unlock": 6, - "RAW_NOTIFIER_HEAD": 1, - "cpu_chain": 4, - "cpu_hotplug_disabled": 7, - "CONFIG_HOTPLUG_CPU": 2, - "task_struct": 5, - "*active_writer": 1, - "mutex": 1, - "refcount": 2, - "cpu_hotplug": 1, - ".active_writer": 1, - ".lock": 1, - "__MUTEX_INITIALIZER": 1, - "cpu_hotplug.lock": 8, - ".refcount": 1, - "get_online_cpus": 2, - "might_sleep": 1, - "cpu_hotplug.active_writer": 6, - "current": 5, - "cpu_hotplug.refcount": 3, - "EXPORT_SYMBOL_GPL": 4, - "put_online_cpus": 2, - "unlikely": 54, - "wake_up_process": 1, - "cpu_hotplug_begin": 4, - "likely": 22, - "break": 244, - "__set_current_state": 1, - "TASK_UNINTERRUPTIBLE": 1, - "schedule": 1, - "cpu_hotplug_done": 4, - "#else": 94, - "__ref": 6, - "register_cpu_notifier": 2, - "notifier_block": 3, - "*nb": 3, - "raw_notifier_chain_register": 1, - "nb": 2, - "__cpu_notify": 6, - "val": 20, - "*v": 3, - "nr_to_call": 2, - "*nr_calls": 1, - "__raw_notifier_call_chain": 1, - "v": 11, - "nr_calls": 9, - "notifier_to_errno": 1, - "cpu_notify": 5, - "cpu_notify_nofail": 4, - "BUG_ON": 4, - "EXPORT_SYMBOL": 8, - "unregister_cpu_notifier": 2, - "raw_notifier_chain_unregister": 1, - "clear_tasks_mm_cpumask": 1, - "cpu": 57, - "WARN_ON": 1, - "cpu_online": 5, - "rcu_read_lock": 1, - "for_each_process": 2, - "p": 60, - "*t": 2, - "t": 32, - "find_lock_task_mm": 1, - "cpumask_clear_cpu": 5, - "mm_cpumask": 1, - "mm": 1, - "task_unlock": 1, - "rcu_read_unlock": 1, - "check_for_tasks": 2, - "write_lock_irq": 1, - "tasklist_lock": 2, - "task_cpu": 1, - "state": 104, - "TASK_RUNNING": 1, - "utime": 1, - "stime": 1, - "printk": 12, - "KERN_WARNING": 3, - "comm": 1, - "task_pid_nr": 1, - "flags": 89, - "write_unlock_irq": 1, - "take_cpu_down_param": 3, - "mod": 13, - "*hcpu": 3, - "take_cpu_down": 2, - "*_param": 1, - "*param": 1, - "_param": 1, - "err": 38, - "__cpu_disable": 1, - "CPU_DYING": 1, - "|": 132, - "param": 2, - "hcpu": 10, - "_cpu_down": 3, - "tasks_frozen": 4, - "CPU_TASKS_FROZEN": 2, - "tcd_param": 2, - ".mod": 1, - ".hcpu": 1, - "num_online_cpus": 2, - "EBUSY": 3, - "EINVAL": 6, - "CPU_DOWN_PREPARE": 1, - "CPU_DOWN_FAILED": 2, - "__func__": 2, - "goto": 159, - "out_release": 3, - "__stop_machine": 1, - "cpumask_of": 1, - "idle_cpu": 1, - "cpu_relax": 1, - "__cpu_die": 1, - "CPU_DEAD": 1, - "CPU_POST_DEAD": 1, - "cpu_down": 2, - "out": 18, - "__cpuinit": 3, - "_cpu_up": 3, - "*idle": 1, - "cpu_present": 1, - "idle": 4, - "idle_thread_get": 1, - "IS_ERR": 1, - "PTR_ERR": 1, - "CPU_UP_PREPARE": 1, - "out_notify": 3, - "__cpu_up": 1, - "CPU_ONLINE": 1, - "CPU_UP_CANCELED": 1, - "cpu_up": 2, - "CONFIG_MEMORY_HOTPLUG": 2, - "nid": 5, - "pg_data_t": 1, - "*pgdat": 1, - "cpu_possible": 1, - "KERN_ERR": 5, - "#if": 92, - "defined": 42, - "CONFIG_IA64": 1, - "cpu_to_node": 1, - "node_online": 1, - "mem_online_node": 1, - "pgdat": 3, - "NODE_DATA": 1, - "ENOMEM": 4, - "node_zonelists": 1, - "_zonerefs": 1, - "zone": 1, - "zonelists_mutex": 2, - "build_all_zonelists": 1, - "CONFIG_PM_SLEEP_SMP": 2, - "cpumask_var_t": 1, - "frozen_cpus": 9, - "__weak": 4, - "arch_disable_nonboot_cpus_begin": 2, - "arch_disable_nonboot_cpus_end": 2, - "disable_nonboot_cpus": 1, - "first_cpu": 3, - "cpumask_first": 1, - "cpu_online_mask": 3, - "cpumask_clear": 2, - "for_each_online_cpu": 1, - "cpumask_set_cpu": 5, - "arch_enable_nonboot_cpus_begin": 2, - "arch_enable_nonboot_cpus_end": 2, - "enable_nonboot_cpus": 1, - "cpumask_empty": 1, - "KERN_INFO": 2, - "for_each_cpu": 1, - "__init": 2, - "alloc_frozen_cpus": 2, - "alloc_cpumask_var": 1, - "GFP_KERNEL": 1, - "__GFP_ZERO": 1, - "core_initcall": 2, - "cpu_hotplug_disable_before_freeze": 2, - "cpu_hotplug_enable_after_thaw": 2, - "cpu_hotplug_pm_callback": 2, - "action": 2, - "*ptr": 1, - "switch": 46, - "case": 273, - "PM_SUSPEND_PREPARE": 1, - "PM_HIBERNATION_PREPARE": 1, - "PM_POST_SUSPEND": 1, - "PM_POST_HIBERNATION": 1, - "default": 33, - "NOTIFY_DONE": 1, - "NOTIFY_OK": 1, - "cpu_hotplug_pm_sync_init": 2, - "pm_notifier": 1, - "notify_cpu_starting": 1, - "CPU_STARTING": 1, - "cpumask_test_cpu": 1, - "CPU_STARTING_FROZEN": 1, - "MASK_DECLARE_1": 3, - "x": 57, - "UL": 1, - "<<": 56, - "MASK_DECLARE_2": 3, - "MASK_DECLARE_4": 3, - "MASK_DECLARE_8": 9, - "cpu_bit_bitmap": 2, - "BITS_PER_LONG": 2, - "BITS_TO_LONGS": 1, - "NR_CPUS": 2, - "DECLARE_BITMAP": 6, - "cpu_all_bits": 2, - "CPU_BITS_ALL": 2, - "CONFIG_INIT_ALL_POSSIBLE": 1, - "cpu_possible_bits": 6, - "CONFIG_NR_CPUS": 5, - "__read_mostly": 5, - "cpumask": 7, - "*const": 4, - "cpu_possible_mask": 2, - "to_cpumask": 15, - "cpu_online_bits": 5, - "cpu_present_bits": 5, - "cpu_present_mask": 2, - "cpu_active_bits": 4, - "cpu_active_mask": 2, - "set_cpu_possible": 1, - "bool": 6, - "possible": 2, - "set_cpu_present": 1, - "present": 2, - "set_cpu_online": 1, - "online": 2, - "set_cpu_active": 1, - "active": 2, - "init_cpu_present": 1, - "*src": 3, - "cpumask_copy": 3, - "src": 16, - "init_cpu_possible": 1, - "init_cpu_online": 1, - "*diff_prefix_from_pathspec": 1, - "git_strarray": 2, - "*pathspec": 2, - "git_buf": 3, - "prefix": 34, - "GIT_BUF_INIT": 3, - "*scan": 2, - "git_buf_common_prefix": 1, - "pathspec": 15, - "scan": 4, - "prefix.ptr": 2, - "git__iswildcard": 1, - "git_buf_truncate": 1, - "prefix.size": 1, - "git_buf_detach": 1, - "git_buf_free": 4, - "diff_pathspec_is_interesting": 2, - "*str": 1, - "count": 17, - "false": 77, - "true": 73, - "str": 162, - "strings": 5, - "diff_path_matches_pathspec": 3, - "git_diff_list": 17, - "*diff": 8, - "*path": 2, - "git_attr_fnmatch": 4, - "*match": 3, - "diff": 93, - "pathspec.length": 1, - "git_vector_foreach": 4, - "match": 16, - "p_fnmatch": 1, - "pattern": 3, - "path": 20, - "FNM_NOMATCH": 1, - "GIT_ATTR_FNMATCH_HASWILD": 1, - "strncmp": 1, - "length": 58, - "GIT_ATTR_FNMATCH_NEGATIVE": 1, - "git_diff_delta": 19, - "*diff_delta__alloc": 1, - "git_delta_t": 5, - "status": 57, - "*delta": 6, - "git__calloc": 3, - "delta": 54, - "old_file.path": 12, - "git_pool_strdup": 3, - "pool": 12, - "new_file.path": 6, - "opts.flags": 8, - "GIT_DIFF_REVERSE": 3, - "GIT_DELTA_ADDED": 4, - "GIT_DELTA_DELETED": 7, - "*diff_delta__dup": 1, - "*d": 1, - "git_pool": 4, - "*pool": 3, - "d": 16, - "fail": 19, - "*diff_delta__merge_like_cgit": 1, - "*b": 6, - "*dup": 1, - "diff_delta__dup": 3, - "dup": 15, - "new_file.oid": 7, - "git_oid_cpy": 5, - "new_file.mode": 4, - "new_file.size": 3, - "new_file.flags": 4, - "old_file.oid": 3, - "GIT_DELTA_UNTRACKED": 5, - "GIT_DELTA_IGNORED": 5, - "GIT_DELTA_UNMODIFIED": 11, - "diff_delta__from_one": 5, - "git_index_entry": 8, - "GIT_DIFF_INCLUDE_IGNORED": 1, - "GIT_DIFF_INCLUDE_UNTRACKED": 1, - "diff_delta__alloc": 2, - "assert": 41, - "GIT_DELTA_MODIFIED": 3, - "old_file.mode": 2, - "mode": 11, - "old_file.size": 1, - "file_size": 6, - "old_file.flags": 2, - "GIT_DIFF_FILE_VALID_OID": 4, - "git_vector_insert": 4, - "deltas": 8, - "diff_delta__from_two": 2, - "*old_entry": 1, - "*new_entry": 1, - "*new_oid": 1, - "GIT_DIFF_INCLUDE_UNMODIFIED": 1, - "*temp": 1, - "old_entry": 5, - "new_entry": 5, - "temp": 11, - "new_oid": 3, - "git_oid_iszero": 2, - "*diff_strdup_prefix": 1, - "strlen": 17, - "git_pool_strcat": 1, - "git_pool_strndup": 1, - "diff_delta__cmp": 3, - "*da": 1, - "*db": 3, - "strcmp": 20, - "da": 2, - "db": 10, - "config_bool": 5, - "git_config": 3, - "*cfg": 2, - "defvalue": 2, - "git_config_get_bool": 1, - "cfg": 6, - "giterr_clear": 1, - "*git_diff_list_alloc": 1, - "git_repository": 7, - "*repo": 7, - "git_diff_options": 7, - "*opts": 6, - "repo": 23, - "git_vector_init": 3, - "git_pool_init": 2, - "git_repository_config__weakptr": 1, - "diffcaps": 13, - "GIT_DIFFCAPS_HAS_SYMLINKS": 2, - "GIT_DIFFCAPS_ASSUME_UNCHANGED": 2, - "GIT_DIFFCAPS_TRUST_EXEC_BIT": 2, - "GIT_DIFFCAPS_TRUST_CTIME": 2, - "opts": 24, - "opts.pathspec": 2, - "opts.old_prefix": 4, - "diff_strdup_prefix": 2, - "old_prefix": 2, - "DIFF_OLD_PREFIX_DEFAULT": 1, - "opts.new_prefix": 4, - "new_prefix": 2, - "DIFF_NEW_PREFIX_DEFAULT": 1, - "*swap": 1, - "swap": 9, - "pathspec.count": 2, - "*pattern": 1, - "pathspec.strings": 1, - "GIT_ATTR_FNMATCH_ALLOWSPACE": 1, - "git_attr_fnmatch__parse": 1, - "GIT_ENOTFOUND": 1, - "git_diff_list_free": 3, - "deltas.contents": 1, - "git_vector_free": 3, - "pathspec.contents": 1, - "git_pool_clear": 2, - "oid_for_workdir_item": 2, - "full_path": 3, - "git_buf_joinpath": 1, - "git_repository_workdir": 1, - "S_ISLNK": 2, - "git_odb__hashlink": 1, - "full_path.ptr": 2, - "git__is_sizet": 1, - "giterr_set": 1, - "GITERR_OS": 1, - "fd": 34, - "git_futils_open_ro": 1, - "git_odb__hashfd": 1, - "GIT_OBJ_BLOB": 1, - "p_close": 1, - "EXEC_BIT_MASK": 3, - "maybe_modified": 2, - "git_iterator": 8, - "*old_iter": 2, - "*oitem": 2, - "*new_iter": 2, - "*nitem": 2, - "noid": 4, - "*use_noid": 1, - "omode": 8, - "oitem": 29, - "nmode": 10, - "nitem": 32, - "GIT_UNUSED": 1, - "old_iter": 8, - "S_ISREG": 1, - "GIT_MODE_TYPE": 3, - "GIT_MODE_PERMS_MASK": 1, - "flags_extended": 2, - "GIT_IDXENTRY_INTENT_TO_ADD": 1, - "GIT_IDXENTRY_SKIP_WORKTREE": 1, - "new_iter": 13, - "GIT_ITERATOR_WORKDIR": 2, - "ctime.seconds": 2, - "mtime.seconds": 2, - "GIT_DIFFCAPS_USE_DEV": 1, - "dev": 2, - "ino": 2, - "uid": 2, - "gid": 2, - "S_ISGITLINK": 1, - "git_submodule": 1, - "*sub": 1, - "GIT_DIFF_IGNORE_SUBMODULES": 1, - "git_submodule_lookup": 1, - "sub": 12, - "ignore": 1, - "GIT_SUBMODULE_IGNORE_ALL": 1, - "use_noid": 2, - "diff_from_iterators": 5, - "**diff_ptr": 1, - "ignore_prefix": 6, - "git_diff_list_alloc": 1, - "old_src": 1, - "new_src": 3, - "git_iterator_current": 2, - "git_iterator_advance": 5, - "delta_type": 8, - "git_buf_len": 1, - "git__prefixcmp": 2, - "git_buf_cstr": 1, - "S_ISDIR": 1, - "GIT_DIFF_RECURSE_UNTRACKED_DIRS": 1, - "git_iterator_current_is_ignored": 2, - "git_buf_sets": 1, - "git_iterator_advance_into_directory": 1, - "git_iterator_free": 4, - "*diff_ptr": 2, - "git_diff_tree_to_tree": 1, - "git_tree": 4, - "*old_tree": 3, - "*new_tree": 1, - "**diff": 4, - "diff_prefix_from_pathspec": 4, - "old_tree": 5, - "new_tree": 2, - "git_iterator_for_tree_range": 4, - "git_diff_index_to_tree": 1, - "git_iterator_for_index_range": 2, - "git_diff_workdir_to_index": 1, - "git_iterator_for_workdir_range": 2, - "git_diff_workdir_to_tree": 1, - "git_diff_merge": 1, - "*onto": 1, - "*from": 1, - "onto_pool": 7, - "git_vector": 1, - "onto_new": 6, - "j": 206, - "onto": 7, - "from": 16, - "deltas.length": 4, - "*o": 8, - "GIT_VECTOR_GET": 2, - "*f": 2, - "f": 184, - "o": 80, - "diff_delta__merge_like_cgit": 1, - "git_vector_swap": 1, - "git_pool_swap": 1, - "ATSHOME_LIBATS_DYNARRAY_CATS": 3, - "": 5, - "atslib_dynarray_memcpy": 1, - "atslib_dynarray_memmove": 1, - "memmove": 2, + "REFU_IO_H": 2, + "": 2, + "": 8, "//": 262, - "ifndef": 2, - "git_usage_string": 2, - "git_more_info_string": 2, - "N_": 1, - "startup_info": 3, - "git_startup_info": 2, - "use_pager": 8, - "pager_config": 3, - "*cmd": 5, - "want": 3, - "pager_command_config": 2, - "*data": 12, - "data": 69, - "prefixcmp": 3, - "var": 7, - "cmd": 46, - "git_config_maybe_bool": 1, - "value": 9, - "xstrdup": 2, - "check_pager_config": 3, - "c.cmd": 1, - "c.want": 2, - "c.value": 3, - "pager_program": 1, - "commit_pager_choice": 4, - "setenv": 1, - "setup_pager": 1, - "handle_options": 2, - "***argv": 2, - "*argc": 1, - "*envchanged": 1, - "**orig_argv": 1, - "*argv": 6, - "new_argv": 7, - "option_count": 1, - "alias_command": 4, - "trace_argv_printf": 3, - "*argcp": 4, - "subdir": 3, - "chdir": 2, - "die_errno": 3, - "errno": 20, - "saved_errno": 1, - "git_version_string": 1, - "GIT_VERSION": 1, - "RUN_SETUP": 81, - "RUN_SETUP_GENTLY": 16, - "USE_PAGER": 3, - "NEED_WORK_TREE": 18, - "cmd_struct": 4, - "option": 9, - "run_builtin": 2, - "help": 4, - "stat": 3, - "st": 2, - "argv": 54, - "setup_git_directory": 1, - "nongit_ok": 2, - "setup_git_directory_gently": 1, - "have_repository": 1, - "trace_repo_setup": 1, - "setup_work_tree": 1, - "fn": 5, - "fstat": 1, - "fileno": 1, - "stdout": 5, - "S_ISFIFO": 1, - "st.st_mode": 2, - "S_ISSOCK": 1, - "fflush": 2, - "ferror": 2, - "fclose": 5, - "handle_internal_command": 3, - "commands": 3, - "cmd_add": 2, - "cmd_annotate": 1, - "cmd_apply": 1, - "cmd_archive": 1, - "cmd_bisect__helper": 1, - "cmd_blame": 2, - "cmd_branch": 1, - "cmd_bundle": 1, - "cmd_cat_file": 1, - "cmd_check_attr": 1, - "cmd_check_ref_format": 1, - "cmd_checkout": 1, - "cmd_checkout_index": 1, - "cmd_cherry": 1, - "cmd_cherry_pick": 1, - "cmd_clean": 1, - "cmd_clone": 1, - "cmd_column": 1, - "cmd_commit": 1, - "cmd_commit_tree": 1, - "cmd_config": 1, - "cmd_count_objects": 1, - "cmd_describe": 1, - "cmd_diff": 1, - "cmd_diff_files": 1, - "cmd_diff_index": 1, - "cmd_diff_tree": 1, - "cmd_fast_export": 1, - "cmd_fetch": 1, - "cmd_fetch_pack": 1, - "cmd_fmt_merge_msg": 1, - "cmd_for_each_ref": 1, - "cmd_format_patch": 1, - "cmd_fsck": 2, - "cmd_gc": 1, - "cmd_get_tar_commit_id": 1, - "cmd_grep": 1, - "cmd_hash_object": 1, - "cmd_help": 1, - "cmd_index_pack": 1, - "cmd_init_db": 2, - "cmd_log": 1, - "cmd_ls_files": 1, - "cmd_ls_remote": 2, - "cmd_ls_tree": 1, - "cmd_mailinfo": 1, - "cmd_mailsplit": 1, - "cmd_merge": 1, - "cmd_merge_base": 1, - "cmd_merge_file": 1, - "cmd_merge_index": 1, - "cmd_merge_ours": 1, - "cmd_merge_recursive": 4, - "cmd_merge_tree": 1, - "cmd_mktag": 1, - "cmd_mktree": 1, - "cmd_mv": 1, - "cmd_name_rev": 1, - "cmd_notes": 1, - "cmd_pack_objects": 1, - "cmd_pack_redundant": 1, - "cmd_pack_refs": 1, - "cmd_patch_id": 1, - "cmd_prune": 1, - "cmd_prune_packed": 1, - "cmd_push": 1, - "cmd_read_tree": 1, - "cmd_receive_pack": 1, - "cmd_reflog": 1, - "cmd_remote": 1, - "cmd_remote_ext": 1, - "cmd_remote_fd": 1, - "cmd_replace": 1, - "cmd_repo_config": 1, - "cmd_rerere": 1, - "cmd_reset": 1, - "cmd_rev_list": 1, - "cmd_rev_parse": 1, - "cmd_revert": 1, - "cmd_rm": 1, - "cmd_send_pack": 1, - "cmd_shortlog": 1, - "cmd_show": 1, - "cmd_show_branch": 1, - "cmd_show_ref": 1, - "cmd_status": 1, - "cmd_stripspace": 1, - "cmd_symbolic_ref": 1, - "cmd_tag": 1, - "cmd_tar_tree": 1, - "cmd_unpack_file": 1, - "cmd_unpack_objects": 1, - "cmd_update_index": 1, - "cmd_update_ref": 1, - "cmd_update_server_info": 1, - "cmd_upload_archive": 1, - "cmd_upload_archive_writer": 1, - "cmd_var": 1, - "cmd_verify_pack": 1, - "cmd_verify_tag": 1, - "cmd_version": 1, - "cmd_whatchanged": 1, - "cmd_write_tree": 1, - "ext": 4, - "STRIP_EXTENSION": 1, - "*argv0": 1, - "argv0": 2, - "ARRAY_SIZE": 1, - "exit": 20, - "execv_dashed_external": 2, - "STRBUF_INIT": 1, - "*tmp": 1, - "strbuf_addf": 1, - "tmp": 6, - "cmd.buf": 1, - "run_command_v_opt": 1, - "RUN_SILENT_EXEC_FAILURE": 1, - "RUN_CLEAN_ON_EXIT": 1, - "ENOENT": 3, - "strbuf_release": 1, - "run_argv": 2, - "done_alias": 4, - "argcp": 2, - "handle_alias": 1, - "main": 3, - "git_extract_argv0_path": 1, - "git_setup_gettext": 1, - "printf": 4, - "list_common_cmds_help": 1, - "setup_path": 1, - "done_help": 3, - "was_alias": 3, - "fprintf": 18, - "stderr": 15, - "help_unknown_cmd": 1, - "strerror": 4, - "PPC_SHA1": 1, - "git_hash_ctx": 7, - "SHA_CTX": 3, - "*git_hash_new_ctx": 1, - "*ctx": 5, - "ctx": 16, - "SHA1_Init": 4, - "git_hash_free_ctx": 1, - "git_hash_init": 1, - "git_hash_update": 1, - "SHA1_Update": 3, - "git_hash_final": 1, - "*out": 3, - "SHA1_Final": 3, - "git_hash_buf": 1, - "git_hash_vec": 1, - "git_buf_vec": 1, - "*vec": 1, - "vec": 2, - ".data": 1, - ".len": 3, - "HELLO_H": 2, - "hello": 1, - "": 5, - "": 2, - "": 3, - "": 3, - "": 2, - "ULLONG_MAX": 10, - "MIN": 3, - "HTTP_PARSER_DEBUG": 4, - "SET_ERRNO": 47, - "e": 4, - "do": 21, - "parser": 334, - "http_errno": 11, - "error_lineno": 3, - "__LINE__": 50, - "CALLBACK_NOTIFY_": 3, - "FOR": 11, - "ER": 4, - "HTTP_PARSER_ERRNO": 10, - "HPE_OK": 10, - "settings": 6, - "on_##FOR": 4, - "HPE_CB_##FOR": 2, - "CALLBACK_NOTIFY": 10, - "CALLBACK_NOTIFY_NOADVANCE": 2, - "CALLBACK_DATA_": 4, - "LEN": 2, - "FOR##_mark": 7, - "CALLBACK_DATA": 10, - "CALLBACK_DATA_NOADVANCE": 6, - "MARK": 7, - "PROXY_CONNECTION": 4, - "CONNECTION": 4, - "CONTENT_LENGTH": 4, - "TRANSFER_ENCODING": 4, - "UPGRADE": 4, - "CHUNKED": 4, - "KEEP_ALIVE": 4, - "CLOSE": 4, - "*method_strings": 1, - "XX": 63, - "num": 24, - "string": 18, - "#string": 1, - "HTTP_METHOD_MAP": 3, - "#undef": 7, - "tokens": 5, - "int8_t": 3, - "unhex": 3, - "HTTP_PARSER_STRICT": 5, - "uint8_t": 6, - "normal_url_char": 3, - "T": 3, - "s_dead": 10, - "s_start_req_or_res": 4, - "s_res_or_resp_H": 3, - "s_start_res": 5, - "s_res_H": 3, - "s_res_HT": 4, - "s_res_HTT": 3, - "s_res_HTTP": 3, - "s_res_first_http_major": 3, - "s_res_http_major": 3, - "s_res_first_http_minor": 3, - "s_res_http_minor": 3, - "s_res_first_status_code": 3, - "s_res_status_code": 3, - "s_res_status": 3, - "s_res_line_almost_done": 4, - "s_start_req": 6, - "s_req_method": 4, - "s_req_spaces_before_url": 5, - "s_req_schema": 6, - "s_req_schema_slash": 6, - "s_req_schema_slash_slash": 6, - "s_req_host_start": 8, - "s_req_host_v6_start": 7, - "s_req_host_v6": 7, - "s_req_host_v6_end": 7, - "s_req_host": 8, - "s_req_port_start": 7, - "s_req_port": 6, - "s_req_path": 8, - "s_req_query_string_start": 8, - "s_req_query_string": 7, - "s_req_fragment_start": 7, - "s_req_fragment": 7, - "s_req_http_start": 3, - "s_req_http_H": 3, - "s_req_http_HT": 3, - "s_req_http_HTT": 3, - "s_req_http_HTTP": 3, - "s_req_first_http_major": 3, - "s_req_http_major": 3, - "s_req_first_http_minor": 3, - "s_req_http_minor": 3, - "s_req_line_almost_done": 4, - "s_header_field_start": 12, - "s_header_field": 4, - "s_header_value_start": 4, - "s_header_value": 5, - "s_header_value_lws": 3, - "s_header_almost_done": 6, - "s_chunk_size_start": 4, - "s_chunk_size": 3, - "s_chunk_parameters": 3, - "s_chunk_size_almost_done": 4, - "s_headers_almost_done": 4, - "s_headers_done": 4, - "s_chunk_data": 3, - "s_chunk_data_almost_done": 3, - "s_chunk_data_done": 3, - "s_body_identity": 3, - "s_body_identity_eof": 4, - "s_message_done": 3, - "PARSING_HEADER": 2, - "header_states": 1, - "h_general": 23, - "0": 11, - "h_C": 3, - "h_CO": 3, - "h_CON": 3, - "h_matching_connection": 3, - "h_matching_proxy_connection": 3, - "h_matching_content_length": 3, - "h_matching_transfer_encoding": 3, - "h_matching_upgrade": 3, - "h_connection": 6, - "h_content_length": 5, - "h_transfer_encoding": 5, - "h_upgrade": 4, - "h_matching_transfer_encoding_chunked": 3, - "h_matching_connection_keep_alive": 3, - "h_matching_connection_close": 3, - "h_transfer_encoding_chunked": 4, - "h_connection_keep_alive": 4, - "h_connection_close": 4, - "Macros": 1, - "character": 11, - "classes": 1, - "depends": 1, - "on": 4, - "strict": 2, - "define": 14, - "CR": 18, - "r": 58, - "LF": 21, - "LOWER": 7, - "0x20": 1, - "IS_ALPHA": 5, - "z": 47, - "IS_NUM": 14, - "9": 1, - "IS_ALPHANUM": 3, - "IS_HEX": 2, - "TOKEN": 4, - "IS_URL_CHAR": 6, - "IS_HOST_CHAR": 4, - "0x80": 1, - "endif": 6, - "start_state": 1, - "HTTP_REQUEST": 7, - "cond": 1, - "HPE_STRICT": 1, - "HTTP_STRERROR_GEN": 3, - "#n": 1, - "*description": 1, - "http_strerror_tab": 7, - "HTTP_ERRNO_MAP": 3, - "http_message_needs_eof": 4, - "http_parser": 13, - "*parser": 9, - "parse_url_char": 5, - "ch": 145, - "http_parser_execute": 2, - "http_parser_settings": 5, - "*settings": 2, - "unhex_val": 7, - "*header_field_mark": 1, - "*header_value_mark": 1, - "*url_mark": 1, - "*body_mark": 1, - "message_complete": 7, - "HPE_INVALID_EOF_STATE": 1, - "header_field_mark": 2, - "header_value_mark": 2, - "url_mark": 2, - "nread": 7, - "HTTP_MAX_HEADER_SIZE": 2, - "HPE_HEADER_OVERFLOW": 1, - "reexecute_byte": 7, - "HPE_CLOSED_CONNECTION": 1, - "content_length": 27, - "message_begin": 3, - "HTTP_RESPONSE": 3, - "HPE_INVALID_CONSTANT": 3, - "method": 39, - "HTTP_HEAD": 2, - "index": 58, - "STRICT_CHECK": 15, - "HPE_INVALID_VERSION": 12, - "http_major": 11, - "http_minor": 11, - "HPE_INVALID_STATUS": 3, - "status_code": 8, - "HPE_INVALID_METHOD": 4, - "http_method": 4, - "HTTP_CONNECT": 4, - "HTTP_DELETE": 1, - "HTTP_GET": 1, - "HTTP_LOCK": 1, - "HTTP_MKCOL": 2, - "HTTP_NOTIFY": 1, - "HTTP_OPTIONS": 1, - "HTTP_POST": 2, - "HTTP_REPORT": 1, - "HTTP_SUBSCRIBE": 2, - "HTTP_TRACE": 1, - "HTTP_UNLOCK": 2, - "*matcher": 1, - "matcher": 3, - "method_strings": 2, - "HTTP_CHECKOUT": 1, - "HTTP_COPY": 1, - "HTTP_MOVE": 1, - "HTTP_MERGE": 1, - "HTTP_MSEARCH": 1, - "HTTP_MKACTIVITY": 1, - "HTTP_SEARCH": 1, - "HTTP_PROPFIND": 2, - "HTTP_PUT": 2, - "HTTP_PATCH": 1, - "HTTP_PURGE": 1, - "HTTP_UNSUBSCRIBE": 1, - "HTTP_PROPPATCH": 1, - "url": 4, - "HPE_INVALID_URL": 4, - "HPE_LF_EXPECTED": 1, - "HPE_INVALID_HEADER_TOKEN": 2, - "header_field": 5, - "header_state": 42, - "header_value": 6, - "F_UPGRADE": 3, - "HPE_INVALID_CONTENT_LENGTH": 4, - "uint64_t": 8, - "F_CONNECTION_KEEP_ALIVE": 3, - "F_CONNECTION_CLOSE": 3, - "F_CHUNKED": 11, - "F_TRAILING": 3, - "NEW_MESSAGE": 6, - "upgrade": 3, - "on_headers_complete": 3, - "F_SKIPBODY": 4, - "HPE_CB_headers_complete": 1, - "to_read": 6, - "body": 6, - "body_mark": 2, - "HPE_INVALID_CHUNK_SIZE": 2, - "HPE_INVALID_INTERNAL_STATE": 1, - "1": 2, - "HPE_UNKNOWN": 1, - "Does": 1, - "the": 91, - "need": 5, - "to": 37, - "see": 2, - "an": 2, - "EOF": 26, - "find": 1, - "end": 48, - "of": 44, - "message": 3, - "http_should_keep_alive": 2, - "http_method_str": 1, - "m": 8, - "http_parser_init": 2, - "http_parser_type": 3, - "http_errno_name": 1, - "/sizeof": 4, - ".name": 1, - "http_errno_description": 1, - ".description": 1, - "http_parser_parse_url": 2, - "buflen": 3, - "is_connect": 4, - "http_parser_url": 3, - "*u": 2, - "http_parser_url_fields": 2, - "uf": 14, - "old_uf": 4, - "u": 18, - "port": 7, - "field_set": 5, - "UF_MAX": 3, - "UF_SCHEMA": 2, - "UF_HOST": 3, - "UF_PORT": 5, - "UF_PATH": 2, - "UF_QUERY": 2, - "UF_FRAGMENT": 2, - "field_data": 5, - ".off": 2, - "xffff": 1, - "uint16_t": 12, - "http_parser_pause": 2, - "paused": 3, - "HPE_PAUSED": 2, - "http_parser_h": 2, - "__cplusplus": 20, - "HTTP_PARSER_VERSION_MAJOR": 1, - "HTTP_PARSER_VERSION_MINOR": 1, - "": 2, - "_WIN32": 3, - "__MINGW32__": 1, - "_MSC_VER": 5, - "__int8": 2, - "__int16": 2, - "int16_t": 1, - "__int32": 2, - "int32_t": 112, - "__int64": 3, - "int64_t": 2, - "ssize_t": 1, - "": 1, - "*1024": 4, - "DELETE": 2, - "GET": 2, - "HEAD": 2, - "POST": 2, - "PUT": 2, - "CONNECT": 2, - "OPTIONS": 2, - "TRACE": 2, - "COPY": 2, - "LOCK": 2, - "MKCOL": 2, - "MOVE": 2, - "PROPFIND": 2, - "PROPPATCH": 2, - "SEARCH": 3, - "UNLOCK": 2, - "REPORT": 2, - "MKACTIVITY": 2, - "CHECKOUT": 2, - "MERGE": 2, - "MSEARCH": 1, - "M": 1, - "NOTIFY": 2, - "SUBSCRIBE": 2, - "UNSUBSCRIBE": 2, - "PATCH": 2, - "PURGE": 2, - "HTTP_##name": 1, - "HTTP_BOTH": 1, - "OK": 1, - "CB_message_begin": 1, - "CB_url": 1, - "CB_header_field": 1, - "CB_header_value": 1, - "CB_headers_complete": 1, - "CB_body": 1, - "CB_message_complete": 1, - "INVALID_EOF_STATE": 1, - "HEADER_OVERFLOW": 1, - "CLOSED_CONNECTION": 1, - "INVALID_VERSION": 1, - "INVALID_STATUS": 1, - "INVALID_METHOD": 1, - "INVALID_URL": 1, - "INVALID_HOST": 1, - "INVALID_PORT": 1, - "INVALID_PATH": 1, - "INVALID_QUERY_STRING": 1, - "INVALID_FRAGMENT": 1, - "LF_EXPECTED": 1, - "INVALID_HEADER_TOKEN": 1, - "INVALID_CONTENT_LENGTH": 1, - "INVALID_CHUNK_SIZE": 1, - "INVALID_CONSTANT": 1, - "INVALID_INTERNAL_STATE": 1, - "STRICT": 1, - "PAUSED": 1, - "UNKNOWN": 1, - "HTTP_ERRNO_GEN": 3, - "HPE_##n": 1, - "HTTP_PARSER_ERRNO_LINE": 2, - "short": 6, - "http_cb": 3, - "on_message_begin": 1, - "http_data_cb": 4, - "on_url": 1, - "on_header_field": 1, - "on_header_value": 1, - "on_body": 1, - "on_message_complete": 1, - "off": 8, - "*http_method_str": 1, - "*http_errno_name": 1, - "*http_errno_description": 1, - "": 1, - "_Included_jni_JniLayer": 2, - "JNIEXPORT": 6, - "jlong": 6, - "JNICALL": 6, - "Java_jni_JniLayer_jni_1layer_1initialize": 1, - "JNIEnv": 6, - "jobject": 6, - "jintArray": 1, - "jint": 7, - "Java_jni_JniLayer_jni_1layer_1mainloop": 1, - "Java_jni_JniLayer_jni_1layer_1set_1button": 1, - "Java_jni_JniLayer_jni_1layer_1set_1analog": 1, - "jfloat": 1, - "Java_jni_JniLayer_jni_1layer_1report_1analog_1chg": 1, - "Java_jni_JniLayer_jni_1layer_1kill": 1, - "strncasecmp": 2, - "_strnicmp": 1, - "REF_TABLE_SIZE": 1, - "BUFFER_BLOCK": 5, - "BUFFER_SPAN": 9, - "MKD_LI_END": 1, - "gperf_case_strncmp": 1, - "s1": 6, - "s2": 6, - "GPERF_DOWNCASE": 1, - "GPERF_CASE_STRNCMP": 1, - "link_ref": 2, - "*link": 1, - "*title": 1, - "sd_markdown": 6, - "tag": 1, - "tag_len": 3, - "w": 6, - "is_empty": 4, - "htmlblock_end": 3, - "*curtag": 2, - "*rndr": 4, - "start_of_line": 2, - "tag_size": 3, - "curtag": 8, - "end_tag": 4, - "block_lines": 3, - "htmlblock_end_tag": 1, - "rndr": 25, - "parse_htmlblock": 1, - "*ob": 3, - "do_render": 4, - "tag_end": 7, - "work": 4, - "find_block_tag": 1, - "work.size": 5, - "cb.blockhtml": 6, - "ob": 14, - "opaque": 8, - "parse_table_row": 1, - "columns": 3, - "*col_data": 1, - "header_flag": 3, - "col": 9, - "*row_work": 1, - "cb.table_cell": 3, - "cb.table_row": 2, - "row_work": 4, - "rndr_newbuf": 2, - "cell_start": 5, - "cell_end": 6, - "*cell_work": 1, - "cell_work": 3, - "_isspace": 3, - "parse_inline": 1, - "col_data": 2, - "rndr_popbuf": 2, - "empty_cell": 2, - "parse_table_header": 1, - "*columns": 2, - "**column_data": 1, - "pipes": 23, - "header_end": 7, - "under_end": 1, - "*column_data": 1, - "calloc": 1, - "beg": 10, - "doc_size": 6, - "document": 9, - "UTF8_BOM": 1, - "is_ref": 1, - "md": 18, - "refs": 2, - "expand_tabs": 1, - "text": 22, - "bufputc": 2, - "bufgrow": 1, - "MARKDOWN_GROW": 1, - "cb.doc_header": 2, - "parse_block": 1, - "cb.doc_footer": 2, - "bufrelease": 3, - "free_link_refs": 1, - "work_bufs": 8, - ".size": 2, - "sd_markdown_free": 1, - "*md": 1, - ".asize": 2, - ".item": 2, - "stack_free": 2, - "sd_version": 1, - "*ver_major": 2, - "*ver_minor": 2, - "*ver_revision": 2, - "SUNDOWN_VER_MAJOR": 1, - "SUNDOWN_VER_MINOR": 1, - "SUNDOWN_VER_REVISION": 1, - "": 4, - "": 2, - "": 1, - "": 1, - "": 2, - "__APPLE__": 2, - "TARGET_OS_IPHONE": 1, - "**environ": 1, - "uv__chld": 2, - "EV_P_": 1, - "ev_child*": 1, - "watcher": 4, - "revents": 2, - "rstatus": 1, - "exit_status": 3, - "term_signal": 3, - "uv_process_t": 1, - "*process": 1, - "process": 19, - "child_watcher": 5, - "EV_CHILD": 1, - "ev_child_stop": 2, - "EV_A_": 1, - "WIFEXITED": 1, - "WEXITSTATUS": 2, - "WIFSIGNALED": 2, - "WTERMSIG": 2, - "exit_cb": 3, - "uv__make_socketpair": 2, - "fds": 20, - "SOCK_NONBLOCK": 2, - "fl": 8, - "SOCK_CLOEXEC": 1, - "UV__F_NONBLOCK": 5, - "socketpair": 2, - "AF_UNIX": 2, - "SOCK_STREAM": 2, - "uv__cloexec": 4, - "uv__nonblock": 5, - "uv__make_pipe": 2, - "__linux__": 3, - "UV__O_CLOEXEC": 1, - "UV__O_NONBLOCK": 1, - "uv__pipe2": 1, - "ENOSYS": 1, - "pipe": 1, - "uv__process_init_stdio": 2, - "uv_stdio_container_t*": 4, - "container": 17, - "writable": 8, - "UV_IGNORE": 2, - "UV_CREATE_PIPE": 4, - "UV_INHERIT_FD": 3, - "UV_INHERIT_STREAM": 2, - "data.stream": 7, - "UV_NAMED_PIPE": 2, - "data.fd": 1, - "uv__process_stdio_flags": 2, - "uv_pipe_t*": 1, - "ipc": 1, - "UV_STREAM_READABLE": 2, - "UV_STREAM_WRITABLE": 2, - "uv__process_open_stream": 2, - "child_fd": 3, - "close": 13, - "uv__stream_open": 1, - "uv_stream_t*": 2, - "uv__process_close_stream": 2, - "uv__stream_close": 1, - "uv__process_child_init": 2, - "uv_process_options_t": 2, - "options": 62, - "stdio_count": 7, - "int*": 22, - "options.flags": 4, - "UV_PROCESS_DETACHED": 2, - "setsid": 2, - "close_fd": 2, - "use_fd": 7, - "open": 4, - "O_RDONLY": 1, - "O_RDWR": 2, - "perror": 5, - "_exit": 6, - "dup2": 4, - "options.cwd": 2, - "UV_PROCESS_SETGID": 2, - "setgid": 1, - "options.gid": 1, - "UV_PROCESS_SETUID": 2, - "setuid": 1, - "options.uid": 1, - "environ": 4, - "options.env": 1, - "execvp": 1, - "options.file": 2, - "options.args": 1, - "SPAWN_WAIT_EXEC": 5, - "uv_spawn": 1, - "uv_loop_t*": 1, - "loop": 9, - "uv_process_t*": 3, + "opening": 2, + "bracket": 4, + "calling": 4, + "from": 16, + "C": 14, + "RF_LF": 10, + "xA": 1, + "RF_CR": 1, + "xD": 1, + "REFU_WIN32_VERSION": 1, + "i_PLUSB_WIN32": 2, + "foff_rft": 2, + "off64_t": 1, + "///Fseek": 1, + "and": 15, + "Ftelll": 1, + "definitions": 1, + "rfFseek": 2, + "i_FILE_": 16, + "i_OFFSET_": 4, + "i_WHENCE_": 4, + "_fseeki64": 1, + "rfFtell": 2, + "_ftelli64": 1, + "fseeko64": 1, + "ftello64": 1, + "i_DECLIMEX_": 121, + "rfFReadLine_UTF8": 5, + "FILE*": 64, + "f": 184, "char**": 7, - "save_our_env": 3, - "options.stdio_count": 4, - "malloc": 3, - "signal_pipe": 7, - "pollfd": 1, - "pfd": 2, - "pid_t": 2, - "pid": 13, - "UV_PROCESS_WINDOWS_VERBATIM_ARGUMENTS": 1, - "uv__handle_init": 1, - "uv_handle_t*": 1, - "UV_PROCESS": 1, - "counters.process_init": 1, - "uv__handle_start": 1, - "options.exit_cb": 1, - "options.stdio": 3, - "fork": 2, - "pfd.fd": 1, - "pfd.events": 1, - "POLLIN": 1, - "POLLHUP": 1, - "pfd.revents": 1, - "poll": 1, - "EINTR": 1, - "ev_child_init": 1, - "ev_child_start": 1, - "ev": 2, - "child_watcher.data": 1, - "uv__set_sys_error": 2, - "uv_process_kill": 1, - "signum": 4, - "kill": 4, - "uv_err_t": 1, - "uv_kill": 1, - "uv__new_sys_error": 1, - "uv_ok_": 1, - "uv__process_close": 1, - "handle": 10, - "uv__handle_stop": 1, - "VALUE": 13, - "rb_cRDiscount": 4, - "rb_rdiscount_to_html": 2, - "self": 9, - "*res": 2, - "szres": 8, - "encoding": 14, - "rb_funcall": 14, - "rb_intern": 15, - "rb_str_buf_new": 2, - "Check_Type": 2, - "T_STRING": 2, - "rb_rdiscount__get_flags": 3, - "MMIOT": 2, - "*doc": 2, - "mkd_string": 2, - "RSTRING_PTR": 2, - "RSTRING_LEN": 2, - "mkd_compile": 2, - "doc": 6, - "mkd_document": 1, - "res": 4, - "rb_str_cat": 4, - "mkd_cleanup": 2, - "rb_respond_to": 1, - "rb_rdiscount_toc_content": 2, - "mkd_toc": 1, - "ruby_obj": 11, - "MKD_TABSTOP": 1, - "MKD_NOHEADER": 1, - "Qtrue": 10, - "MKD_NOPANTS": 1, - "MKD_NOHTML": 1, - "MKD_TOC": 1, - "MKD_NOIMAGE": 1, - "MKD_NOLINKS": 1, - "MKD_NOTABLES": 1, - "MKD_STRICT": 1, - "MKD_AUTOLINK": 1, - "MKD_SAFELINK": 1, - "MKD_NO_EXT": 1, - "Init_rdiscount": 1, - "rb_define_class": 1, - "rb_cObject": 1, - "rb_define_method": 2, - "READLINE_READLINE_CATS": 3, - "": 1, - "atscntrb_readline_rl_library_version": 1, + "utf8": 36, + "uint32_t*": 34, + "byteLength": 197, + "bufferSize": 6, "char*": 167, - "rl_library_version": 1, - "atscntrb_readline_rl_readline_version": 1, - "rl_readline_version": 1, - "atscntrb_readline_readline": 1, - "readline": 1, + "eof": 53, + "rfFReadLine_UTF16BE": 6, + "rfFReadLine_UTF16LE": 4, + "rfFReadLine_UTF32BE": 1, + "rfFReadLine_UTF32LE": 4, + "rfFgets_UTF32BE": 1, + "buff": 95, + "rfFgets_UTF32LE": 2, + "rfFgets_UTF16BE": 2, + "rfFgets_UTF16LE": 2, + "rfFgets_UTF8": 2, + "rfFgetc_UTF8": 3, + "cp": 12, + "rfFgetc_UTF16BE": 4, + "rfFgetc_UTF16LE": 4, + "rfFgetc_UTF32LE": 4, + "rfFgetc_UTF32BE": 3, + "rfFback_UTF32BE": 2, + "rfFback_UTF32LE": 2, + "rfFback_UTF16BE": 2, + "rfFback_UTF16LE": 2, + "rfFback_UTF8": 2, + "RF_IAMHERE_FOR_DOXYGEN": 22, + "rfPopen": 2, + "void*": 135, + "command": 2, + "mode": 11, + "i_rfPopen": 2, + "i_CMD_": 2, + "i_MODE_": 2, + "i_rfLMS_WRAP2": 5, + "rfPclose": 1, + "stream": 3, + "///closing": 1, + "#endif//include": 1, + "guards": 2, + "end": 48, "": 1, "": 1, + "": 2, + "": 4, + "": 5, + "": 3, "": 1, "": 1, "": 1, + "": 2, "": 1, "": 2, "": 1, + "": 2, "": 1, "": 3, "": 1, @@ -6333,6 +4892,7 @@ "bitcountCommand": 1, "redisLogRaw": 3, "level": 12, + "*msg": 7, "syslogLevelMap": 2, "LOG_DEBUG": 1, "LOG_INFO": 1, @@ -6346,7 +4906,9 @@ "server.verbosity": 4, "fp": 13, "server.logfile": 8, + "stdout": 5, "fopen": 3, + "fprintf": 18, "msg": 10, "timeval": 4, "tv": 8, @@ -6357,25 +4919,35 @@ "snprintf": 2, "tv.tv_usec/1000": 1, "getpid": 7, + "fflush": 2, + "fclose": 5, "server.syslog_enabled": 3, "syslog": 1, "redisLog": 33, + "*fmt": 2, "...": 127, "va_list": 3, "ap": 4, "REDIS_MAX_LOGMSG_LEN": 1, "va_start": 3, + "fmt": 4, "vsnprintf": 1, "va_end": 3, "redisLogFromHandler": 2, + "fd": 34, "server.daemonize": 5, + "open": 4, "O_APPEND": 2, + "|": 132, "O_CREAT": 2, "O_WRONLY": 2, "STDOUT_FILENO": 2, "ll2string": 3, "write": 7, + "goto": 159, + "strlen": 17, "time": 10, + "close": 13, "oom": 3, "REDIS_WARNING": 19, "sleep": 1, @@ -6389,11 +4961,15 @@ "exitFromChild": 1, "retcode": 3, "COVERAGE_TEST": 1, + "exit": 20, + "_exit": 6, "dictVanillaFree": 1, "*privdata": 8, + "*val": 6, "DICT_NOTUSED": 6, "privdata": 8, "zfree": 2, + "val": 20, "dictListDestructor": 2, "listRelease": 1, "list*": 1, @@ -6420,17 +4996,22 @@ "ptr": 18, "o2": 7, "dictObjHash": 2, + "*key": 5, + "*o": 8, "key": 9, "dictGenHashFunction": 5, + "o": 80, "dictSdsHash": 4, "dictSdsCaseHash": 2, "dictGenCaseHashFunction": 1, "dictEncObjKeyCompare": 4, "robj*": 3, + "encoding": 14, "REDIS_ENCODING_INT": 4, "getDecodedObject": 3, "dictEncObjHash": 4, "REDIS_ENCODING_RAW": 1, + "hash": 12, "dictType": 8, "setDictType": 1, "zsetDictType": 1, @@ -6450,6 +5031,7 @@ "used*100/size": 1, "REDIS_HT_MINFILL": 1, "tryResizeHashTables": 2, + "j": 206, "server.dbnum": 8, "server.db": 23, ".dict": 9, @@ -6458,6 +5040,7 @@ "incrementallyRehash": 2, "dictIsRehashing": 2, "dictRehashMilliseconds": 2, + "break": 244, "updateDictResizePolicy": 2, "server.rdb_child_pid": 12, "server.aof_child_pid": 10, @@ -6470,6 +5053,9 @@ "*REDIS_EXPIRELOOKUPS_TIME_PERC/REDIS_HZ/100": 1, "expired": 4, "redisDb": 3, + "*db": 3, + "do": 21, + "db": 10, "expires": 3, "slots": 2, "now": 5, @@ -6477,6 +5063,7 @@ "REDIS_EXPIRELOOKUPS_PER_CRON": 2, "dictEntry": 2, "*de": 2, + "t": 32, "de": 12, "dictGetRandomKey": 4, "dictGetSignedIntegerVal": 1, @@ -6553,6 +5140,7 @@ "serverCron": 2, "aeEventLoop": 2, "*eventLoop": 2, + "id": 13, "*clientData": 1, "server.cronloops": 3, "REDIS_NOTUSED": 5, @@ -6571,10 +5159,15 @@ "server.aof_rewrite_scheduled": 4, "rewriteAppendOnlyFileBackground": 2, "statloc": 5, + "pid_t": 2, + "pid": 13, "wait3": 1, "WNOHANG": 1, "exitcode": 3, + "WEXITSTATUS": 2, "bysignal": 4, + "WIFSIGNALED": 2, + "WTERMSIG": 2, "backgroundSaveDoneHandler": 1, "backgroundRewriteDoneHandler": 1, "server.saveparamslen": 3, @@ -6608,6 +5201,7 @@ "server.unblocked_clients": 4, "ln": 8, "redisAssert": 1, + "value": 9, "listDelNode": 1, "REDIS_UNBLOCKED": 1, "server.current_client": 3, @@ -6657,7 +5251,6 @@ "shared.lpop": 1, "REDIS_SHARED_INTEGERS": 1, "shared.integers": 2, - "void*": 135, "REDIS_SHARED_BULKHDR_LEN": 1, "shared.mbulkhdr": 1, "shared.bulkhdr": 1, @@ -6779,6 +5372,8 @@ "limit": 3, "getrlimit": 1, "RLIMIT_NOFILE": 2, + "strerror": 4, + "errno": 20, "oldlimit": 5, "limit.rlim_cur": 2, "limit.rlim_max": 1, @@ -6825,6 +5420,7 @@ "server.stat_keyspace_hits": 2, "server.stat_fork_time": 2, "server.stat_rejected_conn": 2, + "memset": 4, "server.lastbgsave_status": 3, "server.stop_writes_on_bgsave_err": 2, "aeCreateTimeEvent": 1, @@ -6841,9 +5437,14 @@ "slowlogInit": 1, "bioInit": 1, "numcommands": 5, + "/sizeof": 4, + "*f": 2, "sflags": 1, "retval": 3, + "argv": 54, + "cmd": 46, "arity": 3, + "argc": 26, "addReplyErrorFormat": 1, "authenticated": 3, "proc": 14, @@ -6874,15 +5475,18 @@ "REDIS_SHUTDOWN_SAVE": 1, "nosave": 2, "REDIS_SHUTDOWN_NOSAVE": 1, + "kill": 4, "SIGKILL": 2, "rdbRemoveTempFile": 1, "aof_fsync": 1, "rdbSave": 1, + "strcmp": 20, "addReplyBulk": 1, "addReplyMultiBulkLen": 1, "addReplyBulkLongLong": 2, "bytesToHuman": 3, "*s": 3, + "d": 16, "sprintf": 10, "n/": 3, "LL*1024*1024": 2, @@ -6915,6 +5519,7 @@ "name.release": 1, "name.machine": 1, "aeGetApiName": 1, + "__GNUC__": 8, "__GNUC_MINOR__": 2, "__GNUC_PATCHLEVEL__": 1, "uptime/": 1, @@ -6953,7 +5558,9 @@ "*state": 1, "anetPeerToString": 1, "slave": 3, + "switch": 46, "replstate": 1, + "case": 273, "REDIS_REPL_WAIT_BGSAVE_START": 1, "REDIS_REPL_WAIT_BGSAVE_END": 1, "REDIS_REPL_SEND_BULK": 1, @@ -6993,17 +5600,25 @@ "dictGetVal": 2, "estimateObjectIdleTime": 1, "REDIS_MAXMEMORY_VOLATILE_TTL": 1, + "delta": 54, "flushSlavesOutputBuffers": 1, + "__linux__": 3, "linuxOvercommitMemoryValue": 2, "fgets": 1, "atoi": 3, "linuxOvercommitMemoryWarning": 2, "createPidFile": 2, "daemonize": 2, + "fork": 2, + "setsid": 2, + "O_RDWR": 2, + "dup2": 4, "STDIN_FILENO": 1, "STDERR_FILENO": 2, "version": 4, + "printf": 4, "usage": 2, + "stderr": 15, "redisAsciiArt": 2, "*16": 2, "ascii_logo": 1, @@ -7029,9 +5644,12 @@ "memtest": 2, "megabytes": 1, "passes": 1, + "main": 3, + "**argv": 6, "zmalloc_enable_thread_safeness": 1, "srand": 1, "dictSetHashFunctionSeed": 1, + "options": 62, "*configfile": 1, "configfile": 2, "sdscatrepr": 1, @@ -7039,600 +5657,34 @@ "loadAppendOnlyFile": 1, "/1000000": 2, "rdbLoad": 1, + "ENOENT": 3, "aeSetBeforeSleepProc": 1, "aeMain": 1, "aeDeleteEventLoop": 1, - "": 1, - "": 2, - "": 2, - "rfUTF8_IsContinuationbyte": 1, - "e.t.c.": 1, - "rfFReadLine_UTF8": 5, - "FILE*": 64, - "utf8": 36, - "uint32_t*": 34, - "byteLength": 197, - "bufferSize": 6, - "eof": 53, - "bytesN": 98, - "bIndex": 5, - "RF_NEWLINE_CRLF": 1, - "newLineFound": 1, - "*bufferSize": 1, - "RF_OPTION_FGETS_READBYTESN": 5, - "RF_MALLOC": 47, - "tempBuff": 6, - "RF_LF": 10, - "buff": 95, - "RF_SUCCESS": 14, - "RE_FILE_EOF": 22, - "found": 20, - "*eofReached": 14, - "LOG_ERROR": 64, - "RF_HEXEQ_UI": 7, - "rfFgetc_UTF32BE": 3, - "else//": 14, - "undo": 5, - "peek": 5, - "ahead": 5, - "file": 6, - "pointer": 5, - "fseek": 19, - "SEEK_CUR": 19, - "rfFgets_UTF32LE": 2, - "eofReached": 4, - "rfFgetc_UTF32LE": 4, - "rfFgets_UTF16BE": 2, - "rfFgetc_UTF16BE": 4, - "rfFgets_UTF16LE": 2, - "rfFgetc_UTF16LE": 4, - "rfFgets_UTF8": 2, - "rfFgetc_UTF8": 3, - "RF_HEXEQ_C": 9, - "fgetc": 9, - "check": 8, - "RE_FILE_READ": 2, - "cp": 12, - "c2": 13, - "c3": 9, - "c4": 5, - "i_READ_CHECK": 20, - "///": 4, - "success": 4, - "cc": 24, - "we": 10, - "more": 2, - "bytes": 225, - "xC0": 3, - "xC1": 1, - "RE_UTF8_INVALID_SEQUENCE_INVALID_BYTE": 6, - "RE_UTF8_INVALID_SEQUENCE_END": 6, - "rfUTF8_IsContinuationByte": 12, - "RE_UTF8_INVALID_SEQUENCE_CONBYTE": 6, - "decoded": 3, - "codepoint": 47, - "F": 38, - "xE0": 2, - "xF": 5, - "decode": 6, - "xF0": 2, - "RF_HEXGE_C": 1, - "xBF": 2, - "//invalid": 1, - "byte": 6, - "are": 6, - "xFF": 1, - "//if": 1, - "needing": 1, - "than": 5, - "swapE": 21, - "v1": 38, - "v2": 26, - "rfUTILS_Endianess": 24, - "RF_LITTLE_ENDIAN": 23, - "fread": 12, - "endianess": 40, - "needed": 10, - "rfUTILS_SwapEndianUS": 10, - "RF_HEXGE_US": 4, - "xD800": 8, - "RF_HEXLE_US": 4, - "xDFFF": 8, - "RF_HEXL_US": 8, - "RF_HEXG_US": 8, - "xDBFF": 4, - "RE_UTF16_INVALID_SEQUENCE": 20, - "RE_UTF16_NO_SURRPAIR": 2, - "xDC00": 4, - "user": 2, - "wants": 2, - "ff": 10, - "uint16_t*": 11, - "surrogate": 4, - "pair": 4, - "existence": 2, - "RF_BIG_ENDIAN": 10, - "rfUTILS_SwapEndianUI": 11, - "rfFback_UTF32BE": 2, - "i_FSEEK_CHECK": 14, - "rfFback_UTF32LE": 2, - "rfFback_UTF16BE": 2, - "rfFback_UTF16LE": 2, - "rfFback_UTF8": 2, - "depending": 1, - "number": 19, - "read": 1, - "backwards": 1, - "RE_UTF8_INVALID_SEQUENCE": 2, - "REFU_IO_H": 2, - "": 2, - "opening": 2, - "bracket": 4, - "calling": 4, - "C": 14, - "xA": 1, - "RF_CR": 1, - "xD": 1, - "REFU_WIN32_VERSION": 1, - "i_PLUSB_WIN32": 2, - "foff_rft": 2, - "off64_t": 1, - "///Fseek": 1, - "and": 15, - "Ftelll": 1, - "definitions": 1, - "rfFseek": 2, - "i_FILE_": 16, - "i_OFFSET_": 4, - "i_WHENCE_": 4, - "_fseeki64": 1, - "rfFtell": 2, - "_ftelli64": 1, - "fseeko64": 1, - "ftello64": 1, - "i_DECLIMEX_": 121, - "rfFReadLine_UTF16BE": 6, - "rfFReadLine_UTF16LE": 4, - "rfFReadLine_UTF32BE": 1, - "rfFReadLine_UTF32LE": 4, - "rfFgets_UTF32BE": 1, - "RF_IAMHERE_FOR_DOXYGEN": 22, - "rfPopen": 2, - "command": 2, - "i_rfPopen": 2, - "i_CMD_": 2, - "i_MODE_": 2, - "i_rfLMS_WRAP2": 5, - "rfPclose": 1, - "stream": 3, - "///closing": 1, - "#endif//include": 1, - "guards": 2, - "": 1, - "": 2, - "local": 5, - "stack": 6, - "memory": 4, - "RF_OPTION_DEFAULT_ARGUMENTS": 24, - "RF_String*": 222, - "rfString_Create": 4, - "i_rfString_Create": 3, - "READ_VSNPRINTF_ARGS": 5, - "rfUTF8_VerifySequence": 7, - "RF_FAILURE": 24, - "RE_STRING_INIT_FAILURE": 8, - "buffAllocated": 11, - "RF_String": 27, - "i_NVrfString_Create": 3, - "i_rfString_CreateLocal1": 3, - "RF_OPTION_SOURCE_ENCODING": 30, - "RF_UTF8": 8, - "characterLength": 16, - "*codepoints": 2, - "rfLMS_MacroEvalPtr": 2, - "RF_LMS": 6, - "RF_UTF16_LE": 9, - "RF_UTF16_BE": 7, - "codepoints": 44, - "i/2": 2, - "#elif": 14, - "RF_UTF32_LE": 3, - "RF_UTF32_BE": 3, - "UTF16": 4, - "rfUTF16_Decode": 5, - "rfUTF16_Decode_swap": 5, - "RF_UTF16_BE//": 2, - "RF_UTF32_LE//": 2, - "copy": 4, - "UTF32": 4, - "into": 8, - "RF_UTF32_BE//": 2, - "": 2, - "any": 3, - "other": 16, - "UTF": 17, - "8": 15, - "encode": 2, - "them": 3, - "rfUTF8_Encode": 4, - "While": 2, - "attempting": 2, - "create": 2, - "temporary": 4, - "given": 5, - "sequence": 6, - "could": 2, - "not": 6, - "be": 6, - "properly": 2, - "encoded": 2, - "RE_UTF8_ENCODING": 2, - "End": 2, - "Non": 2, - "code=": 2, - "normally": 1, - "since": 5, - "here": 5, - "have": 2, - "validity": 2, - "get": 4, - "Error": 2, - "at": 3, - "String": 11, - "Allocation": 2, - "due": 2, - "invalid": 2, - "rfLMS_Push": 4, - "Memory": 4, - "allocation": 3, - "Local": 2, - "Stack": 2, - "failed": 2, - "Insufficient": 2, - "space": 4, - "Consider": 2, - "compiling": 2, - "library": 3, - "with": 9, - "bigger": 3, - "Quitting": 2, - "proccess": 2, - "RE_LOCALMEMSTACK_INSUFFICIENT": 8, - "i_NVrfString_CreateLocal": 3, - "during": 1, - "rfString_Init": 3, - "i_rfString_Init": 3, - "i_NVrfString_Init": 3, - "rfString_Create_cp": 2, - "rfString_Init_cp": 3, - "RF_HEXLE_UI": 8, - "RF_HEXGE_UI": 6, - "C0": 3, - "ffff": 4, - "xFC0": 4, - "xF000": 2, - "xE": 2, - "F000": 2, - "C0000": 2, - "E": 11, - "RE_UTF8_INVALID_CODE_POINT": 2, - "rfString_Create_i": 2, - "numLen": 8, - "max": 4, - "is": 17, - "most": 3, - "environment": 3, - "so": 4, - "chars": 3, - "will": 3, - "certainly": 3, - "fit": 3, - "it": 12, - "strcpy": 4, - "rfString_Init_i": 2, - "rfString_Create_f": 2, - "rfString_Init_f": 2, - "rfString_Create_UTF16": 2, - "rfString_Init_UTF16": 3, - "utf8ByteLength": 34, - "last": 1, - "utf": 1, - "null": 4, - "termination": 3, - "byteLength*2": 1, - "allocate": 1, - "same": 1, - "as": 4, - "different": 1, - "RE_INPUT": 1, - "ends": 3, - "rfString_Create_UTF32": 2, - "rfString_Init_UTF32": 3, - "codeBuffer": 9, - "xFEFF": 1, - "big": 14, - "endian": 20, - "xFFFE0000": 1, - "little": 7, - "according": 1, - "standard": 1, - "no": 4, - "BOM": 1, - "means": 1, - "rfUTF32_Length": 1, - "i_rfString_Assign": 3, - "dest": 7, - "sourceP": 2, - "source": 8, - "RF_REALLOC": 9, - "rfString_Assign_char": 2, - "<5)>": 1, - "rfString_Create_nc": 3, - "i_rfString_Create_nc": 3, - "bytesWritten": 2, - "i_NVrfString_Create_nc": 3, - "rfString_Init_nc": 4, - "i_rfString_Init_nc": 3, - "i_NVrfString_Init_nc": 3, - "rfString_Destroy": 2, - "rfString_Deinit": 3, - "rfString_ToUTF16": 4, - "charsN": 5, - "rfUTF8_Decode": 2, - "rfUTF16_Encode": 1, - "rfString_ToUTF32": 4, - "rfString_Length": 5, - "RF_STRING_ITERATE_START": 9, - "RF_STRING_ITERATE_END": 9, - "rfString_GetChar": 2, - "thisstr": 210, - "codePoint": 18, - "RF_STRING_INDEX_OUT_OF_BOUNDS": 2, - "rfString_BytePosToCodePoint": 7, - "rfString_BytePosToCharPos": 4, - "thisstrP": 32, - "bytepos": 12, - "before": 4, - "charPos": 8, - "byteI": 7, - "i_rfString_Equal": 3, - "s1P": 2, - "s2P": 2, - "i_rfString_Find": 5, - "sstrP": 6, - "optionsP": 11, - "sstr": 39, - "*optionsP": 8, - "RF_BITFLAG_ON": 5, - "RF_CASE_IGNORE": 2, - "strstr": 2, - "RF_MATCH_WORD": 5, - "exact": 6, - "": 1, - "0x5a": 1, - "0x7a": 1, - "substring": 5, - "search": 1, - "zero": 2, - "equals": 1, - "then": 1, - "okay": 1, - "rfString_Equal": 4, - "RFS_": 8, - "ERANGE": 1, - "RE_STRING_TOFLOAT_UNDERFLOW": 1, - "RE_STRING_TOFLOAT": 1, - "rfString_Copy_OUT": 2, - "srcP": 6, - "rfString_Copy_IN": 2, - "dst": 15, - "rfString_Copy_chars": 2, - "bytePos": 23, - "terminate": 1, - "i_rfString_ScanfAfter": 3, - "afterstrP": 2, - "format": 4, - "afterstr": 5, - "sscanf": 1, - "<=0)>": 1, - "Counts": 1, - "how": 1, - "many": 1, - "times": 1, - "occurs": 1, - "inside": 2, - "i_rfString_Count": 5, - "sstr2": 2, - "move": 12, - "rfString_FindBytePos": 10, - "rfString_Tokenize": 2, - "sep": 3, - "tokensN": 2, - "RF_String**": 2, - "*tokensN": 1, - "rfString_Count": 4, - "lstr": 6, - "lstrP": 1, - "rstr": 24, - "rstrP": 5, - "rfString_After": 4, - "rfString_Beforev": 4, - "parNP": 6, - "i_rfString_Beforev": 16, - "parN": 10, - "*parNP": 2, - "minPos": 17, - "thisPos": 8, - "argList": 8, - "va_arg": 2, - "i_rfString_Before": 5, - "i_rfString_After": 5, - "afterP": 2, - "after": 6, - "rfString_Afterv": 4, - "i_rfString_Afterv": 16, - "minPosLength": 3, - "go": 8, - "i_rfString_Append": 3, - "otherP": 4, - "strncat": 1, - "rfString_Append_i": 2, - "rfString_Append_f": 2, - "i_rfString_Prepend": 3, - "goes": 1, - "i_rfString_Remove": 6, - "numberP": 1, - "*numberP": 1, - "occurences": 5, - "done": 1, - "<=thisstr->": 1, - "i_rfString_KeepOnly": 3, - "keepstrP": 2, - "keepLength": 2, - "charValue": 12, - "*keepChars": 1, - "keepstr": 5, - "exists": 6, - "charBLength": 5, - "keepChars": 4, - "*keepLength": 1, - "rfString_Iterate_Start": 6, - "rfString_Iterate_End": 4, - "": 1, - "does": 1, - "exist": 2, - "back": 1, - "cover": 1, - "that": 9, - "effectively": 1, - "gets": 1, - "deleted": 1, - "rfUTF8_FromCodepoint": 1, - "this": 5, - "kind": 1, - "non": 1, - "clean": 1, - "way": 1, - "macro": 2, - "internally": 1, - "uses": 1, - "byteIndex_": 12, - "variable": 1, - "use": 1, - "determine": 1, - "backs": 1, - "by": 1, - "contiuing": 1, - "make": 3, - "sure": 2, - "position": 1, - "won": 1, - "array": 1, - "rfString_PruneStart": 2, - "nBytePos": 23, - "rfString_PruneEnd": 2, - "RF_STRING_ITERATEB_START": 2, - "RF_STRING_ITERATEB_END": 2, - "rfString_PruneMiddleB": 2, - "pBytePos": 15, - "indexing": 1, - "works": 1, - "pbytePos": 2, - "pth": 2, - "include": 6, - "rfString_PruneMiddleF": 2, - "got": 1, - "all": 2, - "i_rfString_Replace": 6, - "numP": 1, - "*numP": 1, - "RF_StringX": 2, - "just": 1, - "finding": 1, - "foundN": 10, - "bSize": 4, - "bytePositions": 17, - "bSize*sizeof": 1, - "rfStringX_FromString_IN": 1, - "temp.bIndex": 2, - "temp.bytes": 1, - "temp.byteLength": 1, - "rfStringX_Deinit": 1, - "replace": 3, - "removed": 2, - "one": 2, - "orSize": 5, - "nSize": 4, - "number*diff": 1, - "strncpy": 3, - "smaller": 1, - "diff*number": 1, - "remove": 1, - "equal": 1, - "i_rfString_StripStart": 3, - "subP": 7, - "RF_String*sub": 2, - "noMatch": 8, - "*subValues": 2, - "subLength": 6, - "subValues": 8, - "*subLength": 2, - "i_rfString_StripEnd": 3, - "lastBytePos": 4, - "testity": 2, - "i_rfString_Strip": 3, - "res1": 2, - "rfString_StripStart": 3, - "res2": 2, - "rfString_StripEnd": 3, - "rfString_Create_fUTF8": 2, - "rfString_Init_fUTF8": 3, - "unused": 3, - "rfString_Assign_fUTF8": 2, - "FILE*f": 2, - "utf8BufferSize": 4, - "function": 6, - "rfString_Append_fUTF8": 2, - "rfString_Append": 5, - "rfString_Create_fUTF16": 2, - "rfString_Init_fUTF16": 3, - "rfString_Assign_fUTF16": 2, - "rfString_Append_fUTF16": 2, - "char*utf8": 3, - "rfString_Create_fUTF32": 2, - "rfString_Init_fUTF32": 3, - "<0)>": 1, - "Failure": 1, - "initialize": 1, - "reading": 1, - "Little": 1, - "Endian": 1, - "32": 1, - "bytesN=": 1, - "rfString_Assign_fUTF32": 2, - "rfString_Append_fUTF32": 2, - "i_rfString_Fwrite": 5, - "sP": 2, - "encodingP": 1, - "*utf32": 1, - "utf16": 11, - "*encodingP": 1, - "fwrite": 5, - "logging": 5, - "utf32": 10, - "i_WRITE_CHECK": 1, - "RE_FILE_WRITE": 1, "REFU_USTRING_H": 2, "": 1, "RF_MODULE_STRINGS//": 1, + "check": 8, + "the": 91, + "strings": 5, + "are": 6, "included": 2, + "as": 4, "module": 3, "": 1, "argument": 1, + "count": 17, + "": 2, + "local": 5, + "memory": 4, + "function": 6, "wrapping": 1, "functionality": 1, "": 1, "unicode": 2, + "RF_CASE_IGNORE": 2, + "RF_MATCH_WORD": 5, + "RF_STRING_INDEX_OUT_OF_BOUNDS": 2, "xFF0FFFF": 1, "rfUTF8_IsContinuationByte2": 1, "b__": 3, @@ -7640,6 +5692,7 @@ "pragma": 1, "pack": 2, "push": 1, + "1": 2, "internal": 4, "author": 1, "Lefteris": 1, @@ -7649,30 +5702,51 @@ "endinternal": 1, "brief": 1, "A": 11, + "String": 11, + "with": 9, + "UTF": 17, + "8": 15, "representation": 2, "The": 1, "Refu": 2, + "is": 17, "Unicode": 1, + "that": 9, "has": 2, "two": 1, "versions": 1, "One": 1, + "this": 5, + "other": 16, "ref": 1, + "RF_StringX": 2, + "to": 37, + "see": 2, "what": 1, "operations": 1, "can": 2, + "be": 6, "performed": 1, + "on": 4, "extended": 3, "Strings": 2, "Functions": 1, "convert": 1, + "all": 2, + "exists": 6, "but": 1, "always": 2, + "at": 3, "Once": 1, "been": 1, "created": 1, + "it": 12, "assumed": 1, + "of": 44, + "bytes": 225, + "inside": 2, "valid": 1, + "since": 5, "every": 1, "performs": 1, "unless": 1, @@ -7681,70 +5755,130 @@ "All": 1, "functions": 2, "which": 1, + "have": 2, "isinherited": 1, "StringX": 2, "their": 1, "description": 1, "safely": 1, + "no": 4, "specific": 1, "or": 1, "needs": 1, + "exist": 2, "manipulate": 1, "Extended": 1, "To": 1, + "make": 3, "documentation": 1, "even": 1, "clearer": 1, "should": 2, + "not": 6, "marked": 1, "notinherited": 1, "cppcode": 1, + "default": 33, "constructor": 1, "i_StringCHandle": 1, + "rfString_Create": 4, + "**": 6, "@endcpp": 1, "@endinternal": 1, "*/": 1, + "RF_String": 27, "#pragma": 1, "pop": 1, + "RF_String*": 222, + "RFS_": 8, "i_rfString_CreateLocal": 2, "__VA_ARGS__": 66, + "RF_OPTION_DEFAULT_ARGUMENTS": 24, + "i_rfString_Create": 3, + "i_NVrfString_Create": 3, "RP_SELECT_FUNC_IF_NARGIS": 5, "i_SELECT_RF_STRING_CREATE": 1, "i_SELECT_RF_STRING_CREATE1": 1, "i_SELECT_RF_STRING_CREATE0": 1, "///Internal": 1, "creates": 1, + "temporary": 4, + "i_rfString_CreateLocal1": 3, + "i_NVrfString_CreateLocal": 3, "i_SELECT_RF_STRING_CREATELOCAL": 1, "i_SELECT_RF_STRING_CREATELOCAL1": 1, "i_SELECT_RF_STRING_CREATELOCAL0": 1, + "rfString_Init": 3, + "str": 162, + "i_rfString_Init": 3, + "i_NVrfString_Init": 3, "i_SELECT_RF_STRING_INIT": 1, "i_SELECT_RF_STRING_INIT1": 1, "i_SELECT_RF_STRING_INIT0": 1, + "rfString_Create_cp": 2, "code": 6, + "rfString_Init_cp": 3, + "rfString_Create_nc": 3, + "i_rfString_Create_nc": 3, + "i_NVrfString_Create_nc": 3, "i_SELECT_RF_STRING_CREATE_NC": 1, "i_SELECT_RF_STRING_CREATE_NC1": 1, "i_SELECT_RF_STRING_CREATE_NC0": 1, + "rfString_Init_nc": 4, + "i_rfString_Init_nc": 3, + "i_NVrfString_Init_nc": 3, "i_SELECT_RF_STRING_INIT_NC": 1, "i_SELECT_RF_STRING_INIT_NC1": 1, "i_SELECT_RF_STRING_INIT_NC0": 1, + "rfString_Create_i": 2, + "rfString_Init_i": 2, + "rfString_Create_f": 2, + "rfString_Init_f": 2, + "rfString_Create_UTF16": 2, + "endianess": 40, + "rfString_Init_UTF16": 3, + "rfString_Create_UTF32": 2, + "rfString_Init_UTF32": 3, "//@": 1, "rfString_Assign": 2, + "dest": 7, + "source": 8, + "i_rfString_Assign": 3, "i_DESTINATION_": 2, "i_SOURCE_": 2, + "rfString_Assign_char": 2, + "thisstr": 210, + "character": 11, + "rfString_Destroy": 2, + "rfString_Deinit": 3, "rfString_ToUTF8": 2, "i_STRING_": 2, "rfString_ToCstr": 2, + "uint16_t*": 11, + "rfString_ToUTF16": 4, + "length": 58, + "rfString_ToUTF32": 4, "uint32_t*length": 1, + "rfString_Iterate_Start": 6, "string_": 9, "startCharacterPos_": 4, "characterUnicodeValue_": 4, + "byteIndex_": 12, "j_": 6, + "rfUTF8_IsContinuationByte": 12, + "false": 77, + "rfString_BytePosToCodePoint": 7, + "rfString_Iterate_End": 4, "//Two": 1, "macros": 1, "accomplish": 1, + "an": 2, + "any": 3, + "given": 5, "going": 1, "backwards.": 1, "This": 1, + "macro": 2, "its": 1, "pair.": 1, "rfString_IterateB_Start": 1, @@ -7752,10 +5886,21 @@ "b_index_": 6, "c_index_": 3, "rfString_IterateB_End": 1, + "rfString_Length": 5, + "rfString_GetChar": 2, + "bytepos": 12, + "rfString_BytePosToCharPos": 4, + "before": 4, + "rfString_Equal": 4, + "s1": 6, + "s2": 6, + "i_rfString_Equal": 3, "i_STRING1_": 2, "i_STRING2_": 2, "i_rfLMSX_WRAP2": 4, "rfString_Find": 3, + "sstr": 39, + "i_rfString_Find": 5, "i_THISSTR_": 60, "i_SEARCHSTR_": 26, "i_OPTIONS_": 28, @@ -7774,13 +5919,25 @@ "i_SELECT_RF_STRING_FIND0": 1, "rfString_ToInt": 1, "int32_t*": 1, + "v": 11, "rfString_ToDouble": 1, "double*": 1, + "rfString_Copy_OUT": 2, + "src": 16, + "rfString_Copy_IN": 2, + "dst": 15, + "rfString_Copy_chars": 2, "rfString_ScanfAfter": 2, + "afterstr": 5, + "format": 4, + "var": 7, + "i_rfString_ScanfAfter": 3, "i_AFTERSTR_": 8, "i_FORMAT_": 2, "i_VAR_": 2, "i_rfLMSX_WRAP4": 11, + "rfString_Count": 4, + "i_rfString_Count": 5, "i_NPSELECT_RF_STRING_COUNT": 1, "i_NPSELECT_RF_STRING_COUNT1": 1, "i_NPSELECT_RF_STRING_COUNT0": 1, @@ -7790,7 +5947,15 @@ "i_SELECT_RF_STRING_COUNT3": 1, "i_SELECT_RF_STRING_COUNT1": 1, "i_SELECT_RF_STRING_COUNT0": 1, + "rfString_Tokenize": 2, + "sep": 3, + "tokensN": 2, + "RF_String**": 2, + "tokens": 5, "rfString_Between": 3, + "lstr": 6, + "rstr": 24, + "result": 48, "i_rfString_Between": 4, "i_NPSELECT_RF_STRING_BETWEEN": 1, "i_NPSELECT_RF_STRING_BETWEEN1": 1, @@ -7806,6 +5971,9 @@ "i_SELECT_RF_STRING_BETWEEN2": 1, "i_SELECT_RF_STRING_BETWEEN1": 1, "i_SELECT_RF_STRING_BETWEEN0": 1, + "rfString_Beforev": 4, + "parN": 10, + "i_rfString_Beforev": 16, "i_NPSELECT_RF_STRING_BEFOREV": 1, "i_NPSELECT_RF_STRING_BEFOREV1": 1, "RF_SELECT_FUNC_IF_NARGGT2": 2, @@ -7847,6 +6015,7 @@ "i_SELECT_RF_STRING_BEFOREV18": 1, "i_rfLMSX_WRAP18": 2, "rfString_Before": 3, + "i_rfString_Before": 5, "i_NPSELECT_RF_STRING_BEFORE": 1, "i_NPSELECT_RF_STRING_BEFORE1": 1, "i_NPSELECT_RF_STRING_BEFORE0": 1, @@ -7856,6 +6025,10 @@ "i_SELECT_RF_STRING_BEFORE2": 1, "i_SELECT_RF_STRING_BEFORE1": 1, "i_SELECT_RF_STRING_BEFORE0": 1, + "rfString_After": 4, + "after": 6, + "out": 18, + "i_rfString_After": 5, "i_NPSELECT_RF_STRING_AFTER": 1, "i_NPSELECT_RF_STRING_AFTER1": 1, "i_NPSELECT_RF_STRING_AFTER0": 1, @@ -7866,6 +6039,8 @@ "i_SELECT_RF_STRING_AFTER2": 1, "i_SELECT_RF_STRING_AFTER1": 1, "i_SELECT_RF_STRING_AFTER0": 1, + "rfString_Afterv": 4, + "i_rfString_Afterv": 16, "i_NPSELECT_RF_STRING_AFTERV": 1, "i_NPSELECT_RF_STRING_AFTERV1": 1, "i_LIMSELECT_RF_STRING_AFTERV": 1, @@ -7887,9 +6062,16 @@ "i_SELECT_RF_STRING_AFTERV16": 1, "i_SELECT_RF_STRING_AFTERV17": 1, "i_SELECT_RF_STRING_AFTERV18": 1, + "rfString_Append": 5, + "i_rfString_Append": 3, "i_OTHERSTR_": 4, + "rfString_Append_i": 2, + "rfString_Append_f": 2, "rfString_Prepend": 2, + "i_rfString_Prepend": 3, "rfString_Remove": 3, + "number": 19, + "i_rfString_Remove": 6, "i_NPSELECT_RF_STRING_REMOVE": 1, "i_NPSELECT_RF_STRING_REMOVE1": 1, "i_NPSELECT_RF_STRING_REMOVE0": 1, @@ -7903,8 +6085,15 @@ "i_SELECT_RF_STRING_REMOVE1": 1, "i_SELECT_RF_STRING_REMOVE0": 1, "rfString_KeepOnly": 2, + "keepstr": 5, + "i_rfString_KeepOnly": 3, "I_KEEPSTR_": 2, + "rfString_PruneStart": 2, + "rfString_PruneEnd": 2, + "rfString_PruneMiddleB": 2, + "rfString_PruneMiddleF": 2, "rfString_Replace": 3, + "i_rfString_Replace": 6, "i_NPSELECT_RF_STRING_REPLACE": 1, "i_NPSELECT_RF_STRING_REPLACE1": 1, "i_NPSELECT_RF_STRING_REPLACE0": 1, @@ -7915,9 +6104,28 @@ "i_SELECT_RF_STRING_REPLACE2": 1, "i_SELECT_RF_STRING_REPLACE1": 1, "i_SELECT_RF_STRING_REPLACE0": 1, + "rfString_StripStart": 3, + "sub": 12, + "i_rfString_StripStart": 3, "i_SUBSTR_": 6, + "rfString_StripEnd": 3, + "i_rfString_StripEnd": 3, "rfString_Strip": 2, + "i_rfString_Strip": 3, + "rfString_Create_fUTF8": 2, + "rfString_Init_fUTF8": 3, + "rfString_Assign_fUTF8": 2, + "rfString_Append_fUTF8": 2, + "rfString_Create_fUTF16": 2, + "rfString_Init_fUTF16": 3, + "rfString_Append_fUTF16": 2, + "rfString_Assign_fUTF16": 2, + "rfString_Create_fUTF32": 2, + "rfString_Init_fUTF32": 3, + "rfString_Assign_fUTF32": 2, + "rfString_Append_fUTF32": 2, "rfString_Fwrite": 2, + "i_rfString_Fwrite": 5, "i_NPSELECT_RF_STRING_FWRITE": 1, "i_NPSELECT_RF_STRING_FWRITE1": 1, "i_NPSELECT_RF_STRING_FWRITE0": 1, @@ -7926,1001 +6134,727 @@ "i_STR_": 8, "i_ENCODING_": 4, "i_SELECT_RF_STRING_FWRITE2": 1, + "RF_UTF8": 8, "i_SELECT_RF_STRING_FWRITE1": 1, "i_SELECT_RF_STRING_FWRITE0": 1, "rfString_Fwrite_fUTF8": 1, "closing": 1, + "include": 6, "#error": 4, "Attempted": 1, "manipulation": 1, "flag": 1, "off.": 1, "Rebuild": 1, + "library": 3, + "option": 9, "added": 1, "you": 1, + "need": 5, + "them": 3, "#endif//": 1, - "PY_SSIZE_T_CLEAN": 1, - "Py_PYTHON_H": 1, - "Python": 2, - "headers": 1, - "compile": 1, - "extensions": 1, - "please": 1, - "install": 1, - "development": 1, - "Python.": 1, - "PY_VERSION_HEX": 11, - "Cython": 1, - "requires": 1, - ".": 1, - "offsetof": 2, - "member": 2, - "type*": 1, - "WIN32": 2, - "MS_WINDOWS": 2, - "__stdcall": 2, - "__cdecl": 2, - "__fastcall": 2, - "DL_IMPORT": 2, - "DL_EXPORT": 2, - "PY_LONG_LONG": 5, - "LONG_LONG": 1, - "Py_HUGE_VAL": 2, - "HUGE_VAL": 1, - "PYPY_VERSION": 1, - "CYTHON_COMPILING_IN_PYPY": 3, - "CYTHON_COMPILING_IN_CPYTHON": 6, - "Py_ssize_t": 35, - "PY_SSIZE_T_MAX": 1, - "INT_MAX": 1, - "PY_SSIZE_T_MIN": 1, - "INT_MIN": 1, - "PY_FORMAT_SIZE_T": 1, - "CYTHON_FORMAT_SSIZE_T": 2, - "PyInt_FromSsize_t": 6, - "PyInt_FromLong": 3, - "PyInt_AsSsize_t": 3, - "__Pyx_PyInt_AsInt": 2, - "PyNumber_Index": 1, - "PyNumber_Check": 2, - "PyFloat_Check": 2, - "PyNumber_Int": 1, - "PyErr_Format": 4, - "PyExc_TypeError": 4, - "Py_TYPE": 7, - "tp_name": 4, - "PyObject*": 24, - "__Pyx_PyIndex_Check": 3, - "PyComplex_Check": 1, - "PyIndex_Check": 2, - "PyErr_WarnEx": 1, - "category": 2, - "stacklevel": 1, - "PyErr_Warn": 1, - "__PYX_BUILD_PY_SSIZE_T": 2, - "Py_REFCNT": 1, - "ob_refcnt": 1, - "ob_type": 7, - "Py_SIZE": 1, - "PyVarObject*": 1, - "ob_size": 1, - "PyVarObject_HEAD_INIT": 1, - "PyObject_HEAD_INIT": 1, - "PyType_Modified": 1, - "PyObject": 276, - "itemsize": 1, - "readonly": 1, - "ndim": 2, - "*shape": 1, - "*strides": 1, - "*suboffsets": 1, - "*internal": 1, - "Py_buffer": 6, - "PyBUF_SIMPLE": 1, - "PyBUF_WRITABLE": 3, - "PyBUF_FORMAT": 3, - "PyBUF_ND": 2, - "PyBUF_STRIDES": 6, - "PyBUF_C_CONTIGUOUS": 1, - "PyBUF_F_CONTIGUOUS": 1, - "PyBUF_ANY_CONTIGUOUS": 1, - "PyBUF_INDIRECT": 2, - "PyBUF_RECORDS": 1, - "PyBUF_FULL": 1, - "PY_MAJOR_VERSION": 13, - "__Pyx_BUILTIN_MODULE_NAME": 2, - "__Pyx_PyCode_New": 2, - "l": 7, - "fv": 4, - "cell": 4, - "fline": 4, - "lnos": 4, - "PyCode_New": 2, - "PY_MINOR_VERSION": 1, - "PyUnicode_FromString": 2, - "PyUnicode_Decode": 1, - "Py_TPFLAGS_CHECKTYPES": 1, - "Py_TPFLAGS_HAVE_INDEX": 1, - "Py_TPFLAGS_HAVE_NEWBUFFER": 1, - "PyUnicode_KIND": 1, - "CYTHON_PEP393_ENABLED": 2, - "__Pyx_PyUnicode_READY": 2, - "op": 8, - "PyUnicode_IS_READY": 1, - "_PyUnicode_Ready": 1, - "__Pyx_PyUnicode_GET_LENGTH": 2, - "PyUnicode_GET_LENGTH": 1, - "__Pyx_PyUnicode_READ_CHAR": 2, - "PyUnicode_READ_CHAR": 1, - "__Pyx_PyUnicode_READ": 2, - "PyUnicode_READ": 1, - "PyUnicode_GET_SIZE": 1, - "Py_UCS4": 2, - "PyUnicode_AS_UNICODE": 1, - "Py_UNICODE*": 1, - "PyBaseString_Type": 1, - "PyUnicode_Type": 2, - "PyStringObject": 2, - "PyUnicodeObject": 1, - "PyString_Type": 2, - "PyString_Check": 2, - "PyUnicode_Check": 1, - "PyString_CheckExact": 2, - "PyUnicode_CheckExact": 1, - "PyBytesObject": 1, - "PyBytes_Type": 1, - "PyBytes_Check": 1, - "PyBytes_CheckExact": 1, - "PyBytes_FromString": 2, - "PyString_FromString": 2, - "PyBytes_FromStringAndSize": 1, - "PyString_FromStringAndSize": 1, - "PyBytes_FromFormat": 1, - "PyString_FromFormat": 1, - "PyBytes_DecodeEscape": 1, - "PyString_DecodeEscape": 1, - "PyBytes_AsString": 2, - "PyString_AsString": 1, - "PyBytes_AsStringAndSize": 1, - "PyString_AsStringAndSize": 1, - "PyBytes_Size": 1, - "PyString_Size": 1, - "PyBytes_AS_STRING": 1, - "PyString_AS_STRING": 1, - "PyBytes_GET_SIZE": 1, - "PyString_GET_SIZE": 1, - "PyBytes_Repr": 1, - "PyString_Repr": 1, - "PyBytes_Concat": 1, - "PyString_Concat": 1, - "PyBytes_ConcatAndDel": 1, - "PyString_ConcatAndDel": 1, - "PySet_Check": 1, - "PyObject_TypeCheck": 3, - "PySet_Type": 2, - "PyFrozenSet_Check": 1, - "PyFrozenSet_Type": 1, - "PySet_CheckExact": 2, - "__Pyx_TypeCheck": 1, - "PyTypeObject": 25, - "PyIntObject": 1, - "PyLongObject": 2, - "PyInt_Type": 1, - "PyLong_Type": 1, - "PyInt_Check": 1, - "PyLong_Check": 1, - "PyInt_CheckExact": 1, - "PyLong_CheckExact": 1, - "PyInt_FromString": 1, - "PyLong_FromString": 1, - "PyInt_FromUnicode": 1, - "PyLong_FromUnicode": 1, - "PyLong_FromLong": 1, - "PyInt_FromSize_t": 1, - "PyLong_FromSize_t": 1, - "PyLong_FromSsize_t": 1, - "PyInt_AsLong": 2, - "PyLong_AsLong": 1, - "PyInt_AS_LONG": 1, - "PyLong_AS_LONG": 1, - "PyLong_AsSsize_t": 1, - "PyInt_AsUnsignedLongMask": 1, - "PyLong_AsUnsignedLongMask": 1, - "PyInt_AsUnsignedLongLongMask": 1, - "PyLong_AsUnsignedLongLongMask": 1, - "PyBoolObject": 1, - "Py_hash_t": 1, - "__Pyx_PyInt_FromHash_t": 2, - "__Pyx_PyInt_AsHash_t": 2, - "__Pyx_PySequence_GetSlice": 2, - "PySequence_GetSlice": 2, - "__Pyx_PySequence_SetSlice": 2, - "PySequence_SetSlice": 2, - "__Pyx_PySequence_DelSlice": 2, - "PySequence_DelSlice": 2, - "PyErr_SetString": 3, - "PyExc_SystemError": 3, - "tp_as_mapping": 3, - "PyMethod_New": 2, - "func": 3, - "klass": 1, - "PyInstanceMethod_New": 1, - "__Pyx_GetAttrString": 2, - "PyObject_GetAttrString": 2, - "__Pyx_SetAttrString": 2, - "PyObject_SetAttrString": 2, - "__Pyx_DelAttrString": 2, - "PyObject_DelAttrString": 2, - "__Pyx_NAMESTR": 2, - "__Pyx_DOCSTR": 2, - "__Pyx_PyNumber_Divide": 2, - "y": 14, - "PyNumber_TrueDivide": 1, - "__Pyx_PyNumber_InPlaceDivide": 2, - "PyNumber_InPlaceTrueDivide": 1, - "PyNumber_Divide": 1, - "PyNumber_InPlaceDivide": 1, - "__PYX_EXTERN_C": 3, - "_USE_MATH_DEFINES": 1, - "__PYX_HAVE__sklearn__linear_model__sgd_fast": 1, - "__PYX_HAVE_API__sklearn__linear_model__sgd_fast": 1, - "_OPENMP": 1, - "": 1, - "PYREX_WITHOUT_ASSERTIONS": 1, - "CYTHON_WITHOUT_ASSERTIONS": 1, - "CYTHON_INLINE": 65, - "__inline__": 1, - "__inline": 1, - "__STDC_VERSION__": 2, - "L": 1, - "CYTHON_UNUSED": 14, - "**p": 1, - "is_unicode": 1, - "is_str": 1, - "intern": 1, - "__Pyx_StringTabEntry": 2, - "__Pyx_PyBytes_FromUString": 1, - "__Pyx_PyBytes_AsUString": 1, - "__Pyx_Owned_Py_None": 1, - "Py_INCREF": 10, - "Py_None": 8, - "__Pyx_PyBool_FromLong": 1, - "Py_True": 2, - "Py_False": 2, - "__Pyx_PyObject_IsTrue": 1, - "__Pyx_PyNumber_Int": 1, - "__Pyx_PyIndex_AsSsize_t": 1, - "__Pyx_PyInt_FromSize_t": 1, - "__Pyx_PyInt_AsSize_t": 1, - "__pyx_PyFloat_AsDouble": 12, - "PyFloat_CheckExact": 1, - "PyFloat_AS_DOUBLE": 1, - "PyFloat_AsDouble": 2, - "__pyx_PyFloat_AsFloat": 1, - "__builtin_expect": 2, - "*__pyx_m": 1, - "*__pyx_b": 1, - "*__pyx_empty_tuple": 1, - "*__pyx_empty_bytes": 1, - "__pyx_lineno": 58, - "__pyx_clineno": 58, - "__pyx_cfilenm": 1, - "__FILE__": 4, - "*__pyx_filename": 7, - "CYTHON_CCOMPLEX": 12, - "_Complex_I": 3, - "": 1, - "": 1, - "__sun__": 1, - "fj": 1, - "*__pyx_f": 1, - "IS_UNSIGNED": 1, - "__Pyx_StructField_": 2, - "__PYX_BUF_FLAGS_PACKED_STRUCT": 1, - "__Pyx_StructField_*": 1, - "fields": 1, - "arraysize": 1, - "typegroup": 1, - "is_unsigned": 1, - "__Pyx_TypeInfo": 2, - "__Pyx_TypeInfo*": 2, - "offset": 1, - "__Pyx_StructField": 2, - "__Pyx_StructField*": 1, - "field": 1, - "parent_offset": 1, - "__Pyx_BufFmt_StackElem": 1, - "root": 1, - "__Pyx_BufFmt_StackElem*": 2, - "fmt_offset": 1, - "new_count": 1, - "enc_count": 1, - "struct_alignment": 1, - "is_complex": 1, - "enc_type": 1, - "new_packmode": 1, - "enc_packmode": 1, - "is_valid_array": 1, - "__Pyx_BufFmt_Context": 1, - "npy_int8": 1, - "__pyx_t_5numpy_int8_t": 1, - "npy_int16": 1, - "__pyx_t_5numpy_int16_t": 1, - "npy_int32": 1, - "__pyx_t_5numpy_int32_t": 4, - "npy_int64": 1, - "__pyx_t_5numpy_int64_t": 1, - "npy_uint8": 1, - "__pyx_t_5numpy_uint8_t": 1, - "npy_uint16": 1, - "__pyx_t_5numpy_uint16_t": 1, - "npy_uint32": 1, - "__pyx_t_5numpy_uint32_t": 1, - "npy_uint64": 1, - "__pyx_t_5numpy_uint64_t": 1, - "npy_float32": 1, - "__pyx_t_5numpy_float32_t": 1, - "npy_float64": 1, - "__pyx_t_5numpy_float64_t": 4, - "npy_long": 1, - "__pyx_t_5numpy_int_t": 1, - "npy_longlong": 2, - "__pyx_t_5numpy_long_t": 1, - "__pyx_t_5numpy_longlong_t": 1, - "npy_ulong": 1, - "__pyx_t_5numpy_uint_t": 1, - "npy_ulonglong": 2, - "__pyx_t_5numpy_ulong_t": 1, - "__pyx_t_5numpy_ulonglong_t": 1, - "npy_intp": 1, - "__pyx_t_5numpy_intp_t": 1, - "npy_uintp": 1, - "__pyx_t_5numpy_uintp_t": 1, - "npy_double": 2, - "__pyx_t_5numpy_float_t": 1, - "__pyx_t_5numpy_double_t": 1, - "npy_longdouble": 1, - "__pyx_t_5numpy_longdouble_t": 1, - "__pyx_t_7sklearn_5utils_13weight_vector_DOUBLE": 2, - "__pyx_t_7sklearn_5utils_13weight_vector_INTEGER": 1, - "__pyx_t_7sklearn_5utils_11seq_dataset_DOUBLE": 7, - "__pyx_t_7sklearn_5utils_11seq_dataset_INTEGER": 7, - "__pyx_t_7sklearn_12linear_model_8sgd_fast_DOUBLE": 4, - "__pyx_t_7sklearn_12linear_model_8sgd_fast_INTEGER": 3, - "std": 8, - "complex": 2, - "__pyx_t_float_complex": 27, - "_Complex": 2, - "real": 2, - "imag": 2, - "__pyx_t_double_complex": 27, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_LossFunction": 15, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Regression": 11, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Huber": 6, - "__pyx_obj_7sklearn_5utils_11seq_dataset_SequentialDataset": 5, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 6, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Classification": 7, - "__pyx_obj_7sklearn_5utils_11seq_dataset_CSRDataset": 2, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Log": 5, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Hinge": 6, - "__pyx_obj_7sklearn_5utils_11seq_dataset_ArrayDataset": 2, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 6, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_ModifiedHuber": 5, - "__pyx_obj_7sklearn_5utils_13weight_vector_WeightVector": 3, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredLoss": 5, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredEpsilonInsensitive": 6, - "npy_cfloat": 1, - "__pyx_t_5numpy_cfloat_t": 1, - "npy_cdouble": 2, - "__pyx_t_5numpy_cdouble_t": 1, - "npy_clongdouble": 1, - "__pyx_t_5numpy_clongdouble_t": 1, - "__pyx_t_5numpy_complex_t": 1, - "PyObject_HEAD": 3, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_LossFunction": 5, - "*__pyx_vtab": 3, - "__pyx_base": 18, - "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_SequentialDataset": 4, - "n_samples": 1, - "epsilon": 2, - "current_index": 2, - "stride": 2, - "*X_data_ptr": 2, - "*X_indptr_ptr": 1, - "*X_indices_ptr": 1, - "*Y_data_ptr": 2, - "PyArrayObject": 8, - "*feature_indices": 2, - "*feature_indices_ptr": 2, - "*index": 2, - "*index_data_ptr": 2, - "*sample_weight_data": 2, - "threshold": 2, - "n_features": 2, - "__pyx_vtabstruct_7sklearn_5utils_13weight_vector_WeightVector": 3, - "*w_data_ptr": 1, - "wscale": 1, - "sq_norm": 1, - "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_SequentialDataset": 1, - "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_ArrayDataset": 2, - "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_ArrayDataset": 1, - "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_CSRDataset": 2, - "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_CSRDataset": 1, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 2, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Regression": 3, - "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 1, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 2, - "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 1, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Huber": 2, - "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_Huber": 1, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Hinge": 2, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Classification": 1, - "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_Hinge": 1, - "*__pyx_vtabptr_7sklearn_5utils_13weight_vector_WeightVector": 1, - "CYTHON_REFNANNY": 3, - "__Pyx_RefNannyAPIStruct": 3, - "*__Pyx_RefNanny": 1, - "*__Pyx_RefNannyImportAPI": 1, - "*modname": 1, - "__Pyx_RefNannyDeclarations": 11, - "*__pyx_refnanny": 1, - "WITH_THREAD": 1, - "__Pyx_RefNannySetupContext": 12, - "acquire_gil": 4, - "PyGILState_STATE": 1, - "__pyx_gilstate_save": 2, - "PyGILState_Ensure": 1, - "__pyx_refnanny": 8, - "__Pyx_RefNanny": 8, - "SetupContext": 3, - "PyGILState_Release": 1, - "__Pyx_RefNannyFinishContext": 14, - "FinishContext": 1, - "__Pyx_INCREF": 6, - "INCREF": 1, - "__Pyx_DECREF": 20, - "DECREF": 1, - "__Pyx_GOTREF": 24, - "GOTREF": 1, - "__Pyx_GIVEREF": 9, - "GIVEREF": 1, - "__Pyx_XINCREF": 2, - "__Pyx_XDECREF": 20, - "__Pyx_XGOTREF": 2, - "__Pyx_XGIVEREF": 5, - "Py_DECREF": 2, - "Py_XINCREF": 1, - "Py_XDECREF": 1, - "__Pyx_CLEAR": 1, - "__Pyx_XCLEAR": 1, - "*__Pyx_GetName": 1, - "__Pyx_ErrRestore": 1, - "*type": 4, - "*tb": 2, - "__Pyx_ErrFetch": 1, - "**type": 1, - "**value": 1, - "**tb": 1, - "__Pyx_Raise": 4, - "*cause": 1, - "__Pyx_RaiseArgtupleInvalid": 7, - "func_name": 2, - "num_min": 1, - "num_max": 1, - "num_found": 1, - "__Pyx_RaiseDoubleKeywordsError": 1, - "kw_name": 1, - "__Pyx_ParseOptionalKeywords": 4, - "*kwds": 1, - "**argnames": 1, - "*kwds2": 1, - "*values": 1, - "num_pos_args": 1, - "function_name": 1, - "__Pyx_ArgTypeTest": 1, - "none_allowed": 1, - "__Pyx_GetBufferAndValidate": 1, - "Py_buffer*": 2, - "dtype": 1, - "nd": 1, - "cast": 1, - "__Pyx_SafeReleaseBuffer": 1, - "__Pyx_TypeTest": 1, - "__Pyx_RaiseBufferFallbackError": 1, - "*__Pyx_GetItemInt_Generic": 1, - "*r": 7, - "PyObject_GetItem": 1, - "__Pyx_GetItemInt_List": 1, - "to_py_func": 6, - "__Pyx_GetItemInt_List_Fast": 1, - "__Pyx_GetItemInt_Generic": 6, - "*__Pyx_GetItemInt_List_Fast": 1, - "PyList_GET_SIZE": 5, - "PyList_GET_ITEM": 3, - "PySequence_GetItem": 3, - "__Pyx_GetItemInt_Tuple": 1, - "__Pyx_GetItemInt_Tuple_Fast": 1, - "*__Pyx_GetItemInt_Tuple_Fast": 1, - "PyTuple_GET_SIZE": 14, - "PyTuple_GET_ITEM": 15, - "__Pyx_GetItemInt": 1, - "__Pyx_GetItemInt_Fast": 2, - "PyList_CheckExact": 1, - "PyTuple_CheckExact": 1, - "PySequenceMethods": 1, - "*m": 1, - "tp_as_sequence": 1, - "sq_item": 2, - "sq_length": 2, - "PySequence_Check": 1, - "__Pyx_RaiseTooManyValuesError": 1, - "expected": 2, - "__Pyx_RaiseNeedMoreValuesError": 1, - "__Pyx_RaiseNoneNotIterableError": 1, - "__Pyx_IterFinish": 1, - "__Pyx_IternextUnpackEndCheck": 1, - "*retval": 1, - "shape": 1, - "strides": 1, - "suboffsets": 1, - "__Pyx_Buf_DimInfo": 2, - "pybuffer": 1, - "__Pyx_Buffer": 2, - "*rcbuffer": 1, - "diminfo": 1, - "__Pyx_LocalBuf_ND": 1, - "__Pyx_GetBuffer": 2, - "*view": 2, - "__Pyx_ReleaseBuffer": 2, - "PyObject_GetBuffer": 1, - "PyBuffer_Release": 1, - "__Pyx_zeros": 1, - "__Pyx_minusones": 1, - "*__Pyx_Import": 1, - "*from_list": 1, - "__Pyx_RaiseImportError": 1, - "__Pyx_Print": 1, - "__pyx_print": 1, - "__pyx_print_kwargs": 1, - "__Pyx_PrintOne": 1, - "__Pyx_CREAL": 4, - ".real": 3, - "__Pyx_CIMAG": 4, - ".imag": 3, - "__real__": 1, - "__imag__": 1, - "__Pyx_SET_CREAL": 2, - "__Pyx_SET_CIMAG": 2, - "__pyx_t_float_complex_from_parts": 1, - "__Pyx_c_eqf": 2, - "__Pyx_c_sumf": 2, - "__Pyx_c_difff": 2, - "__Pyx_c_prodf": 2, - "__Pyx_c_quotf": 2, - "__Pyx_c_negf": 2, - "__Pyx_c_is_zerof": 3, - "__Pyx_c_conjf": 3, - "conj": 3, - "__Pyx_c_absf": 3, - "abs": 2, - "__Pyx_c_powf": 3, - "pow": 2, - "conjf": 1, - "cabsf": 1, - "cpowf": 1, - "__pyx_t_double_complex_from_parts": 1, - "__Pyx_c_eq": 2, - "__Pyx_c_sum": 2, - "__Pyx_c_diff": 2, - "__Pyx_c_prod": 2, - "__Pyx_c_quot": 2, - "__Pyx_c_neg": 2, - "__Pyx_c_is_zero": 3, - "__Pyx_c_conj": 3, - "__Pyx_c_abs": 3, - "__Pyx_c_pow": 3, - "cabs": 1, - "cpow": 1, - "__Pyx_PyInt_AsUnsignedChar": 1, - "__Pyx_PyInt_AsUnsignedShort": 1, - "__Pyx_PyInt_AsUnsignedInt": 1, - "__Pyx_PyInt_AsChar": 1, - "__Pyx_PyInt_AsShort": 1, - "signed": 5, - "__Pyx_PyInt_AsSignedChar": 1, - "__Pyx_PyInt_AsSignedShort": 1, - "__Pyx_PyInt_AsSignedInt": 1, - "__Pyx_PyInt_AsLongDouble": 1, - "__Pyx_PyInt_AsUnsignedLong": 1, - "__Pyx_PyInt_AsUnsignedLongLong": 1, - "__Pyx_PyInt_AsLong": 1, - "__Pyx_PyInt_AsLongLong": 1, - "__Pyx_PyInt_AsSignedLong": 1, - "__Pyx_PyInt_AsSignedLongLong": 1, - "__Pyx_WriteUnraisable": 4, - "clineno": 1, - "lineno": 1, - "*filename": 2, - "__Pyx_check_binary_version": 1, - "__Pyx_SetVtable": 1, - "*vtable": 1, - "__Pyx_PyIdentifier_FromString": 3, - "*__Pyx_ImportModule": 1, - "*__Pyx_ImportType": 1, - "*module_name": 1, - "*class_name": 1, - "__Pyx_GetVtable": 1, - "code_line": 4, - "PyCodeObject*": 2, - "code_object": 2, - "__Pyx_CodeObjectCacheEntry": 1, - "__Pyx_CodeObjectCache": 2, - "max_count": 1, - "__Pyx_CodeObjectCacheEntry*": 2, - "entries": 2, - "__pyx_code_cache": 1, - "__pyx_bisect_code_objects": 1, - "PyCodeObject": 1, - "*__pyx_find_code_object": 1, - "__pyx_insert_code_object": 1, - "__Pyx_AddTraceback": 7, - "*funcname": 1, - "c_line": 1, - "py_line": 1, - "__Pyx_InitStrings": 1, - "*__pyx_ptype_7cpython_4type_type": 1, - "*__pyx_ptype_5numpy_dtype": 1, - "*__pyx_ptype_5numpy_flatiter": 1, - "*__pyx_ptype_5numpy_broadcast": 1, - "*__pyx_ptype_5numpy_ndarray": 1, - "*__pyx_ptype_5numpy_ufunc": 1, - "*__pyx_f_5numpy__util_dtypestring": 1, - "PyArray_Descr": 1, - "*__pyx_ptype_7sklearn_5utils_13weight_vector_WeightVector": 1, - "*__pyx_ptype_7sklearn_5utils_11seq_dataset_SequentialDataset": 1, - "*__pyx_ptype_7sklearn_5utils_11seq_dataset_ArrayDataset": 1, - "*__pyx_ptype_7sklearn_5utils_11seq_dataset_CSRDataset": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_LossFunction": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Regression": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Classification": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_ModifiedHuber": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Hinge": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Log": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredLoss": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Huber": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredEpsilonInsensitive": 1, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_max": 1, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_min": 1, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_sqnorm": 1, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_l1penalty": 1, - "__Pyx_TypeInfo_nn___pyx_t_7sklearn_12linear_model_8sgd_fast_DOUBLE": 1, - "__Pyx_MODULE_NAME": 1, - "__pyx_module_is_main_sklearn__linear_model__sgd_fast": 1, - "*__pyx_builtin_NotImplementedError": 1, - "*__pyx_builtin_range": 1, - "*__pyx_builtin_ValueError": 1, - "*__pyx_builtin_RuntimeError": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 2, - "*__pyx_v_self": 52, - "__pyx_v_p": 46, - "__pyx_v_y": 46, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 2, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 2, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_2dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_14Classification_loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_14Classification_2dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_2dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_4__reduce__": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge___init__": 1, - "__pyx_v_threshold": 2, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_2loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_4dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_6__reduce__": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge___init__": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_2loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_4dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_6__reduce__": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_2dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_4__reduce__": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_2dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_4__reduce__": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber___init__": 1, - "__pyx_v_c": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_2loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_4dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_6__reduce__": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive___init__": 1, - "__pyx_v_epsilon": 2, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_2loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_4dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_6__reduce__": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive___init__": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_2loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_4dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_6__reduce__": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_plain_sgd": 1, - "*__pyx_self": 1, - "*__pyx_v_weights": 1, - "__pyx_v_intercept": 1, - "*__pyx_v_loss": 1, - "__pyx_v_penalty_type": 1, - "__pyx_v_alpha": 1, - "__pyx_v_C": 1, - "__pyx_v_rho": 1, - "*__pyx_v_dataset": 1, - "__pyx_v_n_iter": 1, - "__pyx_v_fit_intercept": 1, - "__pyx_v_verbose": 1, - "__pyx_v_shuffle": 1, - "*__pyx_v_seed": 1, - "__pyx_v_weight_pos": 1, - "__pyx_v_weight_neg": 1, - "__pyx_v_learning_rate": 1, - "__pyx_v_eta0": 1, - "__pyx_v_power_t": 1, - "__pyx_v_t": 1, - "__pyx_v_intercept_decay": 1, - "__pyx_pf_5numpy_7ndarray___getbuffer__": 1, - "*__pyx_v_info": 2, - "__pyx_v_flags": 1, - "__pyx_pf_5numpy_7ndarray_2__releasebuffer__": 1, - "__pyx_k_1": 1, - "__pyx_k_2": 1, - "__pyx_k_3": 1, - "__pyx_k_4": 1, - "__pyx_k_6": 1, - "__pyx_k_8": 1, - "__pyx_k_10": 1, - "__pyx_k_12": 1, - "__pyx_k_13": 1, - "__pyx_k_16": 1, - "__pyx_k_20": 1, - "__pyx_k_21": 1, - "__pyx_k__B": 1, - "__pyx_k__C": 1, - "__pyx_k__H": 1, - "__pyx_k__I": 1, - "__pyx_k__L": 1, - "__pyx_k__O": 1, - "__pyx_k__Q": 1, - "__pyx_k__b": 1, - "__pyx_k__c": 1, - "__pyx_k__d": 1, - "__pyx_k__f": 1, - "__pyx_k__g": 1, - "__pyx_k__h": 1, - "__pyx_k__i": 1, - "__pyx_k__l": 1, - "__pyx_k__p": 1, - "__pyx_k__q": 1, - "__pyx_k__t": 1, - "__pyx_k__u": 1, - "__pyx_k__w": 1, - "__pyx_k__y": 1, - "__pyx_k__Zd": 1, - "__pyx_k__Zf": 1, - "__pyx_k__Zg": 1, - "__pyx_k__np": 1, - "__pyx_k__any": 1, - "__pyx_k__eta": 1, - "__pyx_k__rho": 1, - "__pyx_k__sys": 1, - "__pyx_k__eta0": 1, - "__pyx_k__loss": 1, - "__pyx_k__seed": 1, - "__pyx_k__time": 1, - "__pyx_k__xnnz": 1, - "__pyx_k__alpha": 1, - "__pyx_k__count": 1, - "__pyx_k__dloss": 1, - "__pyx_k__dtype": 1, - "__pyx_k__epoch": 1, - "__pyx_k__isinf": 1, - "__pyx_k__isnan": 1, - "__pyx_k__numpy": 1, - "__pyx_k__order": 1, - "__pyx_k__range": 1, - "__pyx_k__shape": 1, - "__pyx_k__zeros": 1, - "__pyx_k__n_iter": 1, - "__pyx_k__update": 1, - "__pyx_k__dataset": 1, - "__pyx_k__epsilon": 1, - "__pyx_k__float64": 1, - "__pyx_k__nonzero": 1, - "__pyx_k__power_t": 1, - "__pyx_k__shuffle": 1, - "__pyx_k__sumloss": 1, - "__pyx_k__t_start": 1, - "__pyx_k__verbose": 1, - "__pyx_k__weights": 1, - "__pyx_k____main__": 1, - "__pyx_k____test__": 1, - "__pyx_k__is_hinge": 1, - "__pyx_k__intercept": 1, - "__pyx_k__n_samples": 1, - "__pyx_k__plain_sgd": 1, - "__pyx_k__threshold": 1, - "__pyx_k__x_ind_ptr": 1, - "__pyx_k__ValueError": 1, - "__pyx_k__n_features": 1, - "__pyx_k__q_data_ptr": 1, - "__pyx_k__weight_neg": 1, - "__pyx_k__weight_pos": 1, - "__pyx_k__x_data_ptr": 1, - "__pyx_k__RuntimeError": 1, - "__pyx_k__class_weight": 1, - "__pyx_k__penalty_type": 1, - "__pyx_k__fit_intercept": 1, - "__pyx_k__learning_rate": 1, - "__pyx_k__sample_weight": 1, - "__pyx_k__intercept_decay": 1, - "__pyx_k__NotImplementedError": 1, - "*__pyx_kp_s_1": 1, - "*__pyx_kp_u_10": 1, - "*__pyx_kp_u_12": 1, - "*__pyx_kp_u_13": 1, - "*__pyx_kp_u_16": 1, - "*__pyx_kp_s_2": 1, - "*__pyx_kp_s_20": 1, - "*__pyx_n_s_21": 1, - "*__pyx_kp_s_3": 1, - "*__pyx_kp_s_4": 1, - "*__pyx_kp_u_6": 1, - "*__pyx_kp_u_8": 1, - "*__pyx_n_s__C": 1, - "*__pyx_n_s__NotImplementedError": 1, - "*__pyx_n_s__RuntimeError": 1, - "*__pyx_n_s__ValueError": 1, - "*__pyx_n_s____main__": 1, - "*__pyx_n_s____test__": 1, - "*__pyx_n_s__alpha": 1, - "*__pyx_n_s__any": 1, - "*__pyx_n_s__c": 1, - "*__pyx_n_s__class_weight": 1, - "*__pyx_n_s__count": 1, - "*__pyx_n_s__dataset": 1, - "*__pyx_n_s__dloss": 1, - "*__pyx_n_s__dtype": 1, - "*__pyx_n_s__epoch": 1, - "*__pyx_n_s__epsilon": 1, - "*__pyx_n_s__eta": 1, - "*__pyx_n_s__eta0": 1, - "*__pyx_n_s__fit_intercept": 1, - "*__pyx_n_s__float64": 1, - "*__pyx_n_s__i": 1, - "*__pyx_n_s__intercept": 1, - "*__pyx_n_s__intercept_decay": 1, - "*__pyx_n_s__is_hinge": 1, - "*__pyx_n_s__isinf": 1, - "*__pyx_n_s__isnan": 1, - "*__pyx_n_s__learning_rate": 1, - "*__pyx_n_s__loss": 1, - "*__pyx_n_s__n_features": 1, - "*__pyx_n_s__n_iter": 1, - "*__pyx_n_s__n_samples": 1, - "*__pyx_n_s__nonzero": 1, - "*__pyx_n_s__np": 1, - "*__pyx_n_s__numpy": 1, - "*__pyx_n_s__order": 1, - "*__pyx_n_s__p": 1, - "*__pyx_n_s__penalty_type": 1, - "*__pyx_n_s__plain_sgd": 1, - "*__pyx_n_s__power_t": 1, - "*__pyx_n_s__q": 1, - "*__pyx_n_s__q_data_ptr": 1, - "*__pyx_n_s__range": 1, - "*__pyx_n_s__rho": 1, - "*__pyx_n_s__sample_weight": 1, - "*__pyx_n_s__seed": 1, - "*__pyx_n_s__shape": 1, - "*__pyx_n_s__shuffle": 1, - "*__pyx_n_s__sumloss": 1, - "*__pyx_n_s__sys": 1, - "*__pyx_n_s__t": 1, - "*__pyx_n_s__t_start": 1, - "*__pyx_n_s__threshold": 1, - "*__pyx_n_s__time": 1, - "*__pyx_n_s__u": 1, - "*__pyx_n_s__update": 1, - "*__pyx_n_s__verbose": 1, - "*__pyx_n_s__w": 1, - "*__pyx_n_s__weight_neg": 1, - "*__pyx_n_s__weight_pos": 1, - "*__pyx_n_s__weights": 1, - "*__pyx_n_s__x_data_ptr": 1, - "*__pyx_n_s__x_ind_ptr": 1, - "*__pyx_n_s__xnnz": 1, - "*__pyx_n_s__y": 1, - "*__pyx_n_s__zeros": 1, - "*__pyx_int_15": 1, - "*__pyx_k_tuple_5": 1, - "*__pyx_k_tuple_7": 1, - "*__pyx_k_tuple_9": 1, - "*__pyx_k_tuple_11": 1, - "*__pyx_k_tuple_14": 1, - "*__pyx_k_tuple_15": 1, - "*__pyx_k_tuple_17": 1, - "*__pyx_k_tuple_18": 1, - "*__pyx_k_codeobj_19": 1, - "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_1loss": 3, - "*__pyx_args": 9, - "*__pyx_kwds": 9, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, - "__pyx_skip_dispatch": 6, - "__pyx_r": 39, - "*__pyx_t_1": 6, - "*__pyx_t_2": 3, - "*__pyx_t_3": 3, - "*__pyx_t_4": 3, - "__pyx_t_5": 12, - "__pyx_v_self": 15, - "tp_dictoffset": 3, - "__pyx_t_1": 69, - "PyObject_GetAttr": 3, - "__pyx_n_s__loss": 2, - "__pyx_filename": 51, - "__pyx_f": 42, - "__pyx_L1_error": 33, - "PyCFunction_Check": 3, - "PyCFunction_GET_FUNCTION": 3, - "PyCFunction": 3, - "__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_1loss": 1, - "__pyx_t_2": 21, - "PyFloat_FromDouble": 9, - "__pyx_t_3": 39, - "__pyx_t_4": 27, - "PyTuple_New": 3, - "PyTuple_SET_ITEM": 6, - "PyObject_Call": 6, - "PyErr_Occurred": 9, - "__pyx_L0": 18, - "__pyx_builtin_NotImplementedError": 3, - "__pyx_empty_tuple": 3, - "__pyx_doc_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, - "*__pyx_r": 6, - "**__pyx_pyargnames": 3, - "__pyx_n_s__p": 6, - "__pyx_n_s__y": 6, - "values": 30, - "__pyx_kwds": 15, - "kw_args": 15, - "pos_args": 12, - "__pyx_args": 21, - "__pyx_L5_argtuple_error": 12, - "PyDict_Size": 3, - "PyDict_GetItem": 6, - "__pyx_L3_error": 18, - "__pyx_pyargnames": 3, - "__pyx_L4_argument_unpacking_done": 6, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, - "__pyx_vtab": 2, - "loss": 1, - "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_3dloss": 3, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_12LossFunction_dloss": 1, - "__pyx_n_s__dloss": 1, - "__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_3dloss": 1, - "__pyx_doc_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 1, - "dloss": 1, - "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_10Regression_1loss": 3, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 1, - "__pyx_pw_7sklearn_12linear_model_8sgd_fast_10Regression_1loss": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 1, - "__pyx_base.__pyx_vtab": 1, - "__pyx_base.loss": 1, - "syscalldef": 1, - "syscalldefs": 1, - "SYSCALL_OR_NUM": 3, - "SYS_restart_syscall": 1, - "MAKE_UINT16": 3, - "SYS_exit": 1, - "SYS_fork": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "CONFIG_SMP": 1, + "DEFINE_MUTEX": 1, + "cpu_add_remove_lock": 3, + "cpu_maps_update_begin": 9, + "mutex_lock": 5, + "cpu_maps_update_done": 9, + "mutex_unlock": 6, + "RAW_NOTIFIER_HEAD": 1, + "cpu_chain": 4, + "cpu_hotplug_disabled": 7, + "CONFIG_HOTPLUG_CPU": 2, + "task_struct": 5, + "*active_writer": 1, + "mutex": 1, + "lock": 6, + "refcount": 2, + "cpu_hotplug": 1, + ".active_writer": 1, + ".lock": 1, + "__MUTEX_INITIALIZER": 1, + "cpu_hotplug.lock": 8, + ".refcount": 1, + "get_online_cpus": 2, + "might_sleep": 1, + "cpu_hotplug.active_writer": 6, + "current": 5, + "cpu_hotplug.refcount": 3, + "EXPORT_SYMBOL_GPL": 4, + "put_online_cpus": 2, + "unlikely": 54, + "wake_up_process": 1, + "cpu_hotplug_begin": 4, + "likely": 22, + "__set_current_state": 1, + "TASK_UNINTERRUPTIBLE": 1, + "schedule": 1, + "cpu_hotplug_done": 4, + "__ref": 6, + "register_cpu_notifier": 2, + "notifier_block": 3, + "*nb": 3, + "raw_notifier_chain_register": 1, + "nb": 2, + "__cpu_notify": 6, + "*v": 3, + "nr_to_call": 2, + "*nr_calls": 1, + "__raw_notifier_call_chain": 1, + "nr_calls": 9, + "notifier_to_errno": 1, + "cpu_notify": 5, + "cpu_notify_nofail": 4, + "BUG_ON": 4, + "EXPORT_SYMBOL": 8, + "unregister_cpu_notifier": 2, + "raw_notifier_chain_unregister": 1, + "clear_tasks_mm_cpumask": 1, + "cpu": 57, + "WARN_ON": 1, + "cpu_online": 5, + "rcu_read_lock": 1, + "for_each_process": 2, + "*t": 2, + "find_lock_task_mm": 1, + "cpumask_clear_cpu": 5, + "mm_cpumask": 1, + "mm": 1, + "task_unlock": 1, + "rcu_read_unlock": 1, + "inline": 3, + "check_for_tasks": 2, + "write_lock_irq": 1, + "tasklist_lock": 2, + "task_cpu": 1, + "TASK_RUNNING": 1, + "utime": 1, + "stime": 1, + "printk": 12, + "KERN_WARNING": 3, + "comm": 1, + "task_pid_nr": 1, + "write_unlock_irq": 1, + "take_cpu_down_param": 3, + "mod": 13, + "*hcpu": 3, + "take_cpu_down": 2, + "*_param": 1, + "*param": 1, + "_param": 1, + "__cpu_disable": 1, + "CPU_DYING": 1, + "param": 2, + "hcpu": 10, + "_cpu_down": 3, + "tasks_frozen": 4, + "CPU_TASKS_FROZEN": 2, + "tcd_param": 2, + ".mod": 1, + ".hcpu": 1, + "num_online_cpus": 2, + "EBUSY": 3, + "EINVAL": 6, + "CPU_DOWN_PREPARE": 1, + "CPU_DOWN_FAILED": 2, + "__func__": 2, + "out_release": 3, + "__stop_machine": 1, + "cpumask_of": 1, + "idle_cpu": 1, + "cpu_relax": 1, + "__cpu_die": 1, + "CPU_DEAD": 1, + "CPU_POST_DEAD": 1, + "cpu_down": 2, + "__cpuinit": 3, + "_cpu_up": 3, + "*idle": 1, + "cpu_present": 1, + "idle": 4, + "idle_thread_get": 1, + "IS_ERR": 1, + "PTR_ERR": 1, + "CPU_UP_PREPARE": 1, + "out_notify": 3, + "__cpu_up": 1, + "CPU_ONLINE": 1, + "CPU_UP_CANCELED": 1, + "cpu_up": 2, + "CONFIG_MEMORY_HOTPLUG": 2, + "nid": 5, + "pg_data_t": 1, + "*pgdat": 1, + "cpu_possible": 1, + "KERN_ERR": 5, + "CONFIG_IA64": 1, + "cpu_to_node": 1, + "node_online": 1, + "mem_online_node": 1, + "pgdat": 3, + "NODE_DATA": 1, + "ENOMEM": 4, + "node_zonelists": 1, + "_zonerefs": 1, + "zone": 1, + "zonelists_mutex": 2, + "build_all_zonelists": 1, + "CONFIG_PM_SLEEP_SMP": 2, + "cpumask_var_t": 1, + "frozen_cpus": 9, + "__weak": 4, + "arch_disable_nonboot_cpus_begin": 2, + "arch_disable_nonboot_cpus_end": 2, + "disable_nonboot_cpus": 1, + "first_cpu": 3, + "cpumask_first": 1, + "cpu_online_mask": 3, + "cpumask_clear": 2, + "for_each_online_cpu": 1, + "cpumask_set_cpu": 5, + "arch_enable_nonboot_cpus_begin": 2, + "arch_enable_nonboot_cpus_end": 2, + "enable_nonboot_cpus": 1, + "cpumask_empty": 1, + "KERN_INFO": 2, + "for_each_cpu": 1, + "__init": 2, + "alloc_frozen_cpus": 2, + "alloc_cpumask_var": 1, + "GFP_KERNEL": 1, + "__GFP_ZERO": 1, + "core_initcall": 2, + "cpu_hotplug_disable_before_freeze": 2, + "cpu_hotplug_enable_after_thaw": 2, + "cpu_hotplug_pm_callback": 2, + "action": 2, + "*ptr": 1, + "PM_SUSPEND_PREPARE": 1, + "PM_HIBERNATION_PREPARE": 1, + "PM_POST_SUSPEND": 1, + "PM_POST_HIBERNATION": 1, + "NOTIFY_DONE": 1, + "NOTIFY_OK": 1, + "cpu_hotplug_pm_sync_init": 2, + "pm_notifier": 1, + "notify_cpu_starting": 1, + "CPU_STARTING": 1, + "cpumask_test_cpu": 1, + "CPU_STARTING_FROZEN": 1, + "MASK_DECLARE_1": 3, + "x": 57, + "UL": 1, + "MASK_DECLARE_2": 3, + "MASK_DECLARE_4": 3, + "MASK_DECLARE_8": 9, + "cpu_bit_bitmap": 2, + "BITS_PER_LONG": 2, + "BITS_TO_LONGS": 1, + "NR_CPUS": 2, + "DECLARE_BITMAP": 6, + "cpu_all_bits": 2, + "CPU_BITS_ALL": 2, + "CONFIG_INIT_ALL_POSSIBLE": 1, + "cpu_possible_bits": 6, + "CONFIG_NR_CPUS": 5, + "__read_mostly": 5, + "cpumask": 7, + "*const": 4, + "cpu_possible_mask": 2, + "to_cpumask": 15, + "cpu_online_bits": 5, + "cpu_present_bits": 5, + "cpu_present_mask": 2, + "cpu_active_bits": 4, + "cpu_active_mask": 2, + "set_cpu_possible": 1, + "bool": 6, + "possible": 2, + "set_cpu_present": 1, + "present": 2, + "set_cpu_online": 1, + "online": 2, + "set_cpu_active": 1, + "active": 2, + "init_cpu_present": 1, + "*src": 3, + "cpumask_copy": 3, + "init_cpu_possible": 1, + "init_cpu_online": 1, + "BLOB_H": 2, + "*blob_type": 2, + "blob": 6, + "*lookup_blob": 2, + "parse_blob_buffer": 2, + "ATSHOME_LIBATS_DYNARRAY_CATS": 3, + "": 5, + "atslib_dynarray_memcpy": 1, + "memcpy": 35, + "atslib_dynarray_memmove": 1, + "memmove": 2, + "ifndef": 2, + "": 3, + "yajl_status_to_string": 1, + "yajl_status": 4, + "stat": 3, + "statStr": 6, + "yajl_status_ok": 1, + "yajl_status_client_canceled": 1, + "yajl_status_insufficient_data": 1, + "yajl_status_error": 1, + "yajl_handle": 10, + "yajl_alloc": 1, + "yajl_callbacks": 1, + "callbacks": 3, + "yajl_parser_config": 1, + "config": 4, + "yajl_alloc_funcs": 3, + "afs": 8, + "ctx": 16, + "allowComments": 4, + "validateUTF8": 3, + "hand": 28, + "afsBuffer": 3, + "malloc": 3, + "realloc": 1, + "yajl_set_default_alloc_funcs": 1, + "YA_MALLOC": 1, + "yajl_handle_t": 1, + "alloc": 6, + "checkUTF8": 1, + "lexer": 4, + "yajl_lex_alloc": 1, + "bytesConsumed": 2, + "decodeBuf": 2, + "yajl_buf_alloc": 1, + "yajl_bs_init": 1, + "stateStack": 3, + "yajl_bs_push": 1, + "yajl_state_start": 1, + "yajl_reset_parser": 1, + "yajl_lex_realloc": 1, + "yajl_free": 1, + "handle": 10, + "yajl_bs_free": 1, + "yajl_buf_free": 1, + "yajl_lex_free": 1, + "YA_FREE": 2, + "yajl_parse": 2, + "jsonText": 4, + "jsonTextLen": 4, + "status": 57, + "yajl_do_parse": 1, + "yajl_parse_complete": 1, + "yajl_get_error": 1, + "verbose": 2, + "yajl_render_error_string": 1, + "yajl_get_bytes_consumed": 1, + "yajl_free_error": 1, + "PPC_SHA1": 1, + "git_hash_ctx": 7, + "SHA_CTX": 3, + "*git_hash_new_ctx": 1, + "*ctx": 5, + "git__malloc": 3, + "SHA1_Init": 4, + "git_hash_free_ctx": 1, + "git__free": 15, + "git_hash_init": 1, + "assert": 41, + "git_hash_update": 1, + "SHA1_Update": 3, + "data": 69, + "git_hash_final": 1, + "git_oid": 7, + "*out": 3, + "SHA1_Final": 3, + "git_hash_buf": 1, + "git_hash_vec": 1, + "git_buf_vec": 1, + "*vec": 1, + "vec": 2, + ".data": 1, + ".len": 3, + "": 2, + "": 2, + "": 1, + "stack": 6, + "READ_VSNPRINTF_ARGS": 5, + "rfUTF8_VerifySequence": 7, + "RF_FAILURE": 24, + "LOG_ERROR": 64, + "RE_STRING_INIT_FAILURE": 8, + "buffAllocated": 11, + "true": 73, + "RF_MALLOC": 47, + "RF_OPTION_SOURCE_ENCODING": 30, + "characterLength": 16, + "*codepoints": 2, + "rfLMS_MacroEvalPtr": 2, + "RF_LMS": 6, + "RF_UTF16_LE": 9, + "RF_UTF16_BE": 7, + "codepoints": 44, + "i/2": 2, + "#elif": 14, + "RF_UTF32_LE": 3, + "RF_UTF32_BE": 3, + "decode": 6, + "UTF16": 4, + "rfUTILS_Endianess": 24, + "RF_LITTLE_ENDIAN": 23, + "rfUTF16_Decode": 5, + "cleanup": 12, + "rfUTF16_Decode_swap": 5, + "RF_UTF16_BE//": 2, + "RF_UTF32_LE//": 2, + "copy": 4, + "UTF32": 4, + "into": 8, + "codepoint": 47, + "rfUTILS_SwapEndianUI": 11, + "RF_UTF32_BE//": 2, + "RF_BIG_ENDIAN": 10, + "": 2, + "endif": 6, + "than": 5, + "encode": 2, + "rfUTF8_Encode": 4, + "0": 11, + "While": 2, + "attempting": 2, + "create": 2, + "byte": 6, + "sequence": 6, + "could": 2, + "properly": 2, + "encoded": 2, + "RE_UTF8_ENCODING": 2, + "End": 2, + "Non": 2, + "code=": 2, + "normally": 1, + "here": 5, + "we": 10, + "validity": 2, + "get": 4, + "Error": 2, + "Allocation": 2, + "due": 2, + "invalid": 2, + "rfLMS_Push": 4, + "Memory": 4, + "allocation": 3, + "Local": 2, + "Stack": 2, + "failed": 2, + "Insufficient": 2, + "space": 4, + "Consider": 2, + "compiling": 2, + "bigger": 3, + "Quitting": 2, + "proccess": 2, + "RE_LOCALMEMSTACK_INSUFFICIENT": 8, + "RE_UTF16_INVALID_SEQUENCE": 20, + "during": 1, + "RF_HEXLE_UI": 8, + "RF_HEXGE_UI": 6, + "ff": 10, + "F": 38, + "C0": 3, + "ffff": 4, + "xFC0": 4, + "xF000": 2, + "xE": 2, + "F000": 2, + "C0000": 2, + "E": 11, + "RE_UTF8_INVALID_CODE_POINT": 2, + "numLen": 8, + "max": 4, + "most": 3, + "environment": 3, + "so": 4, + "chars": 3, + "will": 3, + "certainly": 3, + "fit": 3, + "strcpy": 4, + "utf8ByteLength": 34, + "last": 1, + "utf": 1, + "null": 4, + "termination": 3, + "byteLength*2": 1, + "allocate": 1, + "same": 1, + "else//": 14, + "different": 1, + "RE_INPUT": 1, + "ends": 3, + "swapE": 21, + "codeBuffer": 9, + "RF_HEXEQ_UI": 7, + "xFEFF": 1, + "big": 14, + "endian": 20, + "xFFFE0000": 1, + "little": 7, + "according": 1, + "standard": 1, + "BOM": 1, + "means": 1, + "rfUTF32_Length": 1, + "sourceP": 2, + "RF_REALLOC": 9, + "<5)>": 1, + "bytesWritten": 2, + "charsN": 5, + "rfUTF8_Decode": 2, + "rfUTF16_Encode": 1, + "RF_STRING_ITERATE_START": 9, + "RF_STRING_ITERATE_END": 9, + "codePoint": 18, + "RF_HEXEQ_C": 9, + "xC0": 3, + "xE0": 2, + "xF": 5, + "xF0": 2, + "thisstrP": 32, + "charPos": 8, + "byteI": 7, + "s1P": 2, + "s2P": 2, + "sstrP": 6, + "optionsP": 11, + "*optionsP": 8, + "found": 20, + "RF_BITFLAG_ON": 5, + "strstr": 2, + "exact": 6, + "": 1, + "0x5a": 1, + "match": 16, + "0x7a": 1, + "substring": 5, + "search": 1, + "loop": 9, + "zero": 2, + "equals": 1, + "then": 1, + "okay": 1, + "RF_SUCCESS": 14, + "ERANGE": 1, + "RE_STRING_TOFLOAT_UNDERFLOW": 1, + "RE_STRING_TOFLOAT": 1, + "srcP": 6, + "bytePos": 23, + "terminate": 1, + "afterstrP": 2, + "sscanf": 1, + "<=0)>": 1, + "Counts": 1, + "how": 1, + "many": 1, + "times": 1, + "occurs": 1, + "sstr2": 2, + "move": 12, + "rfString_FindBytePos": 10, + "*tokensN": 1, + "lstrP": 1, + "rstrP": 5, + "temp": 11, + "parNP": 6, + "*parNP": 2, + "minPos": 17, + "thisPos": 8, + "argList": 8, + "va_arg": 2, + "afterP": 2, + "minPosLength": 3, + "go": 8, + "otherP": 4, + "strncat": 1, + "goes": 1, + "numberP": 1, + "*numberP": 1, + "occurences": 5, + "done": 1, + "<=thisstr->": 1, + "keepstrP": 2, + "keepLength": 2, + "charValue": 12, + "*keepChars": 1, + "charBLength": 5, + "keepChars": 4, + "*keepLength": 1, + "": 1, + "does": 1, + "back": 1, + "cover": 1, + "effectively": 1, + "gets": 1, + "deleted": 1, + "rfUTF8_FromCodepoint": 1, + "kind": 1, + "non": 1, + "clean": 1, + "way": 1, + "internally": 1, + "uses": 1, + "variable": 1, + "use": 1, + "determine": 1, + "backs": 1, + "by": 1, + "contiuing": 1, + "sure": 2, + "position": 1, + "won": 1, + "array": 1, + "nBytePos": 23, + "RF_STRING_ITERATEB_START": 2, + "RF_STRING_ITERATEB_END": 2, + "pBytePos": 15, + "indexing": 1, + "works": 1, + "pbytePos": 2, + "pth": 2, + "got": 1, + "needed": 10, + "numP": 1, + "*numP": 1, + "just": 1, + "finding": 1, + "foundN": 10, + "diff": 93, + "bSize": 4, + "bytePositions": 17, + "bSize*sizeof": 1, + "rfStringX_FromString_IN": 1, + "temp.bIndex": 2, + "temp.bytes": 1, + "temp.byteLength": 1, + "rfStringX_Deinit": 1, + "replace": 3, + "removed": 2, + "one": 2, + "orSize": 5, + "nSize": 4, + "number*diff": 1, + "strncpy": 3, + "smaller": 1, + "diff*number": 1, + "remove": 1, + "equal": 1, + "subP": 7, + "RF_String*sub": 2, + "noMatch": 8, + "*subValues": 2, + "subLength": 6, + "subValues": 8, + "*subLength": 2, + "lastBytePos": 4, + "testity": 2, + "res1": 2, + "res2": 2, + "bytesN": 98, + "unused": 3, + "FILE*f": 2, + "utf8BufferSize": 4, + "char*utf8": 3, + "<0)>": 1, + "Failure": 1, + "initialize": 1, + "reading": 1, + "Little": 1, + "Endian": 1, + "32": 1, + "file": 6, + "bytesN=": 1, + "sP": 2, + "encodingP": 1, + "*utf32": 1, + "utf16": 11, + "*encodingP": 1, + "fwrite": 5, + "logging": 5, + "rfUTILS_SwapEndianUS": 10, + "utf32": 10, + "i_WRITE_CHECK": 1, + "RE_FILE_WRITE": 1, + "": 1, + "_Included_jni_JniLayer": 2, + "JNIEXPORT": 6, + "jlong": 6, + "JNICALL": 6, + "Java_jni_JniLayer_jni_1layer_1initialize": 1, + "JNIEnv": 6, + "jobject": 6, + "jintArray": 1, + "jint": 7, + "Java_jni_JniLayer_jni_1layer_1mainloop": 1, + "Java_jni_JniLayer_jni_1layer_1set_1button": 1, + "Java_jni_JniLayer_jni_1layer_1set_1analog": 1, + "jfloat": 1, + "Java_jni_JniLayer_jni_1layer_1report_1analog_1chg": 1, + "Java_jni_JniLayer_jni_1layer_1kill": 1, + "BOOTSTRAP_H": 2, + "*true": 1, + "*false": 1, + "*eof": 1, + "*empty_list": 1, + "*global_enviroment": 1, + "obj_type": 1, + "scm_bool": 1, + "scm_empty_list": 1, + "scm_eof": 1, + "scm_char": 1, + "scm_int": 1, + "scm_pair": 1, + "scm_symbol": 1, + "scm_prim_fun": 1, + "scm_lambda": 1, + "scm_str": 1, + "scm_file": 1, + "*eval_proc": 1, + "*maybe_add_begin": 1, + "*code": 2, + "init_enviroment": 1, + "*env": 4, + "eval_err": 1, + "__attribute__": 1, + "noreturn": 1, + "define_var": 1, + "*var": 4, + "set_var": 1, + "*get_var": 1, + "*cond2nested_if": 1, + "*cond": 1, + "*let2lambda": 1, + "*let": 1, + "*and2nested_if": 1, + "*and": 1, + "*or2nested_if": 1, + "*or": 1, "__wglew_h__": 2, "__WGLEW_H__": 1, "__wglext_h_": 2, @@ -8992,6 +6926,7 @@ "PFNWGLCREATEASSOCIATEDCONTEXTAMDPROC": 2, "PFNWGLCREATEASSOCIATEDCONTEXTATTRIBSAMDPROC": 2, "hShareContext": 2, + "int*": 22, "attribList": 2, "PFNWGLDELETEASSOCIATEDCONTEXTAMDPROC": 2, "hglrc": 5, @@ -9038,6 +6973,7 @@ "PFNWGLDELETEBUFFERREGIONARBPROC": 2, "hRegion": 3, "PFNWGLRESTOREBUFFERREGIONARBPROC": 2, + "y": 14, "width": 3, "height": 3, "xSrc": 1, @@ -9640,6 +7576,7 @@ "dstY": 1, "dstZ": 1, "GLsizei": 4, + "depth": 2, "wglCopyImageSubDataNV": 1, "__wglewCopyImageSubDataNV": 2, "WGLEW_NV_copy_image": 1, @@ -9916,57 +7853,2123 @@ "wglewGetContext": 4, "wglewIsSupported": 2, "wglewGetExtension": 1, - "yajl_status_to_string": 1, - "yajl_status": 4, - "statStr": 6, - "yajl_status_ok": 1, - "yajl_status_client_canceled": 1, - "yajl_status_insufficient_data": 1, - "yajl_status_error": 1, - "yajl_handle": 10, - "yajl_alloc": 1, - "yajl_callbacks": 1, - "callbacks": 3, - "yajl_parser_config": 1, - "config": 4, - "yajl_alloc_funcs": 3, - "afs": 8, - "allowComments": 4, - "validateUTF8": 3, - "hand": 28, - "afsBuffer": 3, - "realloc": 1, - "yajl_set_default_alloc_funcs": 1, - "YA_MALLOC": 1, - "yajl_handle_t": 1, - "alloc": 6, - "checkUTF8": 1, - "lexer": 4, - "yajl_lex_alloc": 1, - "bytesConsumed": 2, - "decodeBuf": 2, - "yajl_buf_alloc": 1, - "yajl_bs_init": 1, - "stateStack": 3, - "yajl_bs_push": 1, - "yajl_state_start": 1, - "yajl_reset_parser": 1, - "yajl_lex_realloc": 1, - "yajl_free": 1, - "yajl_bs_free": 1, - "yajl_buf_free": 1, - "yajl_lex_free": 1, - "YA_FREE": 2, - "yajl_parse": 2, - "jsonText": 4, - "jsonTextLen": 4, - "yajl_do_parse": 1, - "yajl_parse_complete": 1, - "yajl_get_error": 1, - "verbose": 2, - "yajl_render_error_string": 1, - "yajl_get_bytes_consumed": 1, - "yajl_free_error": 1 + "syscalldef": 1, + "syscalldefs": 1, + "SYSCALL_OR_NUM": 3, + "SYS_restart_syscall": 1, + "MAKE_UINT16": 3, + "SYS_exit": 1, + "SYS_fork": 1, + "git_usage_string": 2, + "git_more_info_string": 2, + "N_": 1, + "startup_info": 3, + "git_startup_info": 2, + "use_pager": 8, + "pager_config": 3, + "*cmd": 5, + "want": 3, + "*value": 5, + "pager_command_config": 2, + "prefixcmp": 3, + "git_config_maybe_bool": 1, + "xstrdup": 2, + "check_pager_config": 3, + "c.cmd": 1, + "c.want": 2, + "c.value": 3, + "git_config": 3, + "pager_program": 1, + "commit_pager_choice": 4, + "setenv": 1, + "setup_pager": 1, + "handle_options": 2, + "***argv": 2, + "*argc": 1, + "*envchanged": 1, + "**orig_argv": 1, + "*argv": 6, + "new_argv": 7, + "option_count": 1, + "alias_command": 4, + "trace_argv_printf": 3, + "*argcp": 4, + "subdir": 3, + "chdir": 2, + "die_errno": 3, + "saved_errno": 1, + "git_version_string": 1, + "GIT_VERSION": 1, + "RUN_SETUP": 81, + "RUN_SETUP_GENTLY": 16, + "USE_PAGER": 3, + "NEED_WORK_TREE": 18, + "cmd_struct": 4, + "run_builtin": 2, + "help": 4, + "st": 2, + "*prefix": 7, + "prefix": 34, + "setup_git_directory": 1, + "nongit_ok": 2, + "setup_git_directory_gently": 1, + "have_repository": 1, + "trace_repo_setup": 1, + "setup_work_tree": 1, + "fn": 5, + "fstat": 1, + "fileno": 1, + "S_ISFIFO": 1, + "st.st_mode": 2, + "S_ISSOCK": 1, + "ferror": 2, + "handle_internal_command": 3, + "commands": 3, + "cmd_add": 2, + "cmd_annotate": 1, + "cmd_apply": 1, + "cmd_archive": 1, + "cmd_bisect__helper": 1, + "cmd_blame": 2, + "cmd_branch": 1, + "cmd_bundle": 1, + "cmd_cat_file": 1, + "cmd_check_attr": 1, + "cmd_check_ref_format": 1, + "cmd_checkout": 1, + "cmd_checkout_index": 1, + "cmd_cherry": 1, + "cmd_cherry_pick": 1, + "cmd_clean": 1, + "cmd_clone": 1, + "cmd_column": 1, + "cmd_commit": 1, + "cmd_commit_tree": 1, + "cmd_config": 1, + "cmd_count_objects": 1, + "cmd_describe": 1, + "cmd_diff": 1, + "cmd_diff_files": 1, + "cmd_diff_index": 1, + "cmd_diff_tree": 1, + "cmd_fast_export": 1, + "cmd_fetch": 1, + "cmd_fetch_pack": 1, + "cmd_fmt_merge_msg": 1, + "cmd_for_each_ref": 1, + "cmd_format_patch": 1, + "cmd_fsck": 2, + "cmd_gc": 1, + "cmd_get_tar_commit_id": 1, + "cmd_grep": 1, + "cmd_hash_object": 1, + "cmd_help": 1, + "cmd_index_pack": 1, + "cmd_init_db": 2, + "cmd_log": 1, + "cmd_ls_files": 1, + "cmd_ls_remote": 2, + "cmd_ls_tree": 1, + "cmd_mailinfo": 1, + "cmd_mailsplit": 1, + "cmd_merge": 1, + "cmd_merge_base": 1, + "cmd_merge_file": 1, + "cmd_merge_index": 1, + "cmd_merge_ours": 1, + "cmd_merge_recursive": 4, + "cmd_merge_tree": 1, + "cmd_mktag": 1, + "cmd_mktree": 1, + "cmd_mv": 1, + "cmd_name_rev": 1, + "cmd_notes": 1, + "cmd_pack_objects": 1, + "cmd_pack_redundant": 1, + "cmd_pack_refs": 1, + "cmd_patch_id": 1, + "cmd_prune": 1, + "cmd_prune_packed": 1, + "cmd_push": 1, + "cmd_read_tree": 1, + "cmd_receive_pack": 1, + "cmd_reflog": 1, + "cmd_remote": 1, + "cmd_remote_ext": 1, + "cmd_remote_fd": 1, + "cmd_replace": 1, + "cmd_repo_config": 1, + "cmd_rerere": 1, + "cmd_reset": 1, + "cmd_rev_list": 1, + "cmd_rev_parse": 1, + "cmd_revert": 1, + "cmd_rm": 1, + "cmd_send_pack": 1, + "cmd_shortlog": 1, + "cmd_show": 1, + "cmd_show_branch": 1, + "cmd_show_ref": 1, + "cmd_status": 1, + "cmd_stripspace": 1, + "cmd_symbolic_ref": 1, + "cmd_tag": 1, + "cmd_tar_tree": 1, + "cmd_unpack_file": 1, + "cmd_unpack_objects": 1, + "cmd_update_index": 1, + "cmd_update_ref": 1, + "cmd_update_server_info": 1, + "cmd_upload_archive": 1, + "cmd_upload_archive_writer": 1, + "cmd_var": 1, + "cmd_verify_pack": 1, + "cmd_verify_tag": 1, + "cmd_version": 1, + "cmd_whatchanged": 1, + "cmd_write_tree": 1, + "ext": 4, + "STRIP_EXTENSION": 1, + "*argv0": 1, + "argv0": 2, + "ARRAY_SIZE": 1, + "execv_dashed_external": 2, + "strbuf": 12, + "STRBUF_INIT": 1, + "*tmp": 1, + "strbuf_addf": 1, + "tmp": 6, + "cmd.buf": 1, + "run_command_v_opt": 1, + "RUN_SILENT_EXEC_FAILURE": 1, + "RUN_CLEAN_ON_EXIT": 1, + "strbuf_release": 1, + "run_argv": 2, + "done_alias": 4, + "argcp": 2, + "handle_alias": 1, + "git_extract_argv0_path": 1, + "git_setup_gettext": 1, + "list_common_cmds_help": 1, + "setup_path": 1, + "done_help": 3, + "was_alias": 3, + "help_unknown_cmd": 1, + "HELLO_H": 2, + "hello": 1, + "": 1, + "rfUTF8_IsContinuationbyte": 1, + "e.t.c.": 1, + "bIndex": 5, + "RF_NEWLINE_CRLF": 1, + "newLineFound": 1, + "*bufferSize": 1, + "RF_OPTION_FGETS_READBYTESN": 5, + "tempBuff": 6, + "RE_FILE_EOF": 22, + "EOF": 26, + "*eofReached": 14, + "undo": 5, + "peek": 5, + "ahead": 5, + "pointer": 5, + "fseek": 19, + "SEEK_CUR": 19, + "eofReached": 4, + "fgetc": 9, + "RE_FILE_READ": 2, + "*ret": 20, + "c2": 13, + "c3": 9, + "c4": 5, + "i_READ_CHECK": 20, + "///": 4, + "success": 4, + "cc": 24, + "more": 2, + "xC1": 1, + "RE_UTF8_INVALID_SEQUENCE_INVALID_BYTE": 6, + "RE_UTF8_INVALID_SEQUENCE_END": 6, + "RE_UTF8_INVALID_SEQUENCE_CONBYTE": 6, + "decoded": 3, + "RF_HEXGE_C": 1, + "xBF": 2, + "//invalid": 1, + "xFF": 1, + "//if": 1, + "needing": 1, + "v1": 38, + "v2": 26, + "fread": 12, + "swap": 9, + "RF_HEXGE_US": 4, + "xD800": 8, + "RF_HEXLE_US": 4, + "xDFFF": 8, + "RF_HEXL_US": 8, + "RF_HEXG_US": 8, + "xDBFF": 4, + "RE_UTF16_NO_SURRPAIR": 2, + "xDC00": 4, + "user": 2, + "wants": 2, + "surrogate": 4, + "pair": 4, + "existence": 2, + "i_FSEEK_CHECK": 14, + "depending": 1, + "read": 1, + "backwards": 1, + "RE_UTF8_INVALID_SEQUENCE": 2, + "*diff_prefix_from_pathspec": 1, + "git_strarray": 2, + "*pathspec": 2, + "git_buf": 3, + "GIT_BUF_INIT": 3, + "*scan": 2, + "git_buf_common_prefix": 1, + "pathspec": 15, + "scan": 4, + "prefix.ptr": 2, + "git__iswildcard": 1, + "git_buf_truncate": 1, + "prefix.size": 1, + "git_buf_detach": 1, + "git_buf_free": 4, + "diff_pathspec_is_interesting": 2, + "*str": 1, + "diff_path_matches_pathspec": 3, + "git_diff_list": 17, + "*diff": 8, + "*path": 2, + "git_attr_fnmatch": 4, + "*match": 3, + "pathspec.length": 1, + "git_vector_foreach": 4, + "p_fnmatch": 1, + "pattern": 3, + "path": 20, + "FNM_NOMATCH": 1, + "GIT_ATTR_FNMATCH_HASWILD": 1, + "strncmp": 1, + "GIT_ATTR_FNMATCH_NEGATIVE": 1, + "git_diff_delta": 19, + "*diff_delta__alloc": 1, + "git_delta_t": 5, + "*delta": 6, + "git__calloc": 3, + "old_file.path": 12, + "git_pool_strdup": 3, + "pool": 12, + "new_file.path": 6, + "opts.flags": 8, + "GIT_DIFF_REVERSE": 3, + "GIT_DELTA_ADDED": 4, + "GIT_DELTA_DELETED": 7, + "*diff_delta__dup": 1, + "*d": 1, + "git_pool": 4, + "*pool": 3, + "fail": 19, + "*diff_delta__merge_like_cgit": 1, + "*b": 6, + "*dup": 1, + "diff_delta__dup": 3, + "dup": 15, + "git_oid_cmp": 6, + "new_file.oid": 7, + "git_oid_cpy": 5, + "new_file.mode": 4, + "new_file.size": 3, + "new_file.flags": 4, + "old_file.oid": 3, + "GIT_DELTA_UNTRACKED": 5, + "GIT_DELTA_IGNORED": 5, + "GIT_DELTA_UNMODIFIED": 11, + "diff_delta__from_one": 5, + "git_index_entry": 8, + "*entry": 2, + "GIT_DIFF_INCLUDE_IGNORED": 1, + "GIT_DIFF_INCLUDE_UNTRACKED": 1, + "entry": 17, + "diff_delta__alloc": 2, + "GITERR_CHECK_ALLOC": 3, + "GIT_DELTA_MODIFIED": 3, + "old_file.mode": 2, + "old_file.size": 1, + "file_size": 6, + "oid": 17, + "old_file.flags": 2, + "GIT_DIFF_FILE_VALID_OID": 4, + "git_vector_insert": 4, + "deltas": 8, + "diff_delta__from_two": 2, + "*old_entry": 1, + "*new_entry": 1, + "*new_oid": 1, + "GIT_DIFF_INCLUDE_UNMODIFIED": 1, + "*temp": 1, + "old_entry": 5, + "new_entry": 5, + "new_oid": 3, + "git_oid_iszero": 2, + "*diff_strdup_prefix": 1, + "git_pool_strcat": 1, + "git_pool_strndup": 1, + "diff_delta__cmp": 3, + "*da": 1, + "da": 2, + "config_bool": 5, + "*cfg": 2, + "defvalue": 2, + "git_config_get_bool": 1, + "cfg": 6, + "giterr_clear": 1, + "*git_diff_list_alloc": 1, + "git_repository": 7, + "*repo": 7, + "git_diff_options": 7, + "*opts": 6, + "repo": 23, + "git_vector_init": 3, + "git_pool_init": 2, + "git_repository_config__weakptr": 1, + "diffcaps": 13, + "GIT_DIFFCAPS_HAS_SYMLINKS": 2, + "GIT_DIFFCAPS_ASSUME_UNCHANGED": 2, + "GIT_DIFFCAPS_TRUST_EXEC_BIT": 2, + "GIT_DIFFCAPS_TRUST_CTIME": 2, + "opts": 24, + "opts.pathspec": 2, + "opts.old_prefix": 4, + "diff_strdup_prefix": 2, + "old_prefix": 2, + "DIFF_OLD_PREFIX_DEFAULT": 1, + "opts.new_prefix": 4, + "new_prefix": 2, + "DIFF_NEW_PREFIX_DEFAULT": 1, + "*swap": 1, + "pathspec.count": 2, + "*pattern": 1, + "pathspec.strings": 1, + "GIT_ATTR_FNMATCH_ALLOWSPACE": 1, + "git_attr_fnmatch__parse": 1, + "GIT_ENOTFOUND": 1, + "git_diff_list_free": 3, + "deltas.contents": 1, + "git_vector_free": 3, + "pathspec.contents": 1, + "git_pool_clear": 2, + "oid_for_workdir_item": 2, + "*oid": 2, + "full_path": 3, + "git_buf_joinpath": 1, + "git_repository_workdir": 1, + "S_ISLNK": 2, + "git_odb__hashlink": 1, + "full_path.ptr": 2, + "git__is_sizet": 1, + "giterr_set": 1, + "GITERR_OS": 1, + "git_futils_open_ro": 1, + "git_odb__hashfd": 1, + "GIT_OBJ_BLOB": 1, + "p_close": 1, + "EXEC_BIT_MASK": 3, + "maybe_modified": 2, + "git_iterator": 8, + "*old_iter": 2, + "*oitem": 2, + "*new_iter": 2, + "*nitem": 2, + "noid": 4, + "*use_noid": 1, + "omode": 8, + "oitem": 29, + "nmode": 10, + "nitem": 32, + "GIT_UNUSED": 1, + "old_iter": 8, + "S_ISREG": 1, + "GIT_MODE_TYPE": 3, + "GIT_MODE_PERMS_MASK": 1, + "flags_extended": 2, + "GIT_IDXENTRY_INTENT_TO_ADD": 1, + "GIT_IDXENTRY_SKIP_WORKTREE": 1, + "new_iter": 13, + "GIT_ITERATOR_WORKDIR": 2, + "ctime.seconds": 2, + "mtime.seconds": 2, + "GIT_DIFFCAPS_USE_DEV": 1, + "dev": 2, + "ino": 2, + "uid": 2, + "gid": 2, + "S_ISGITLINK": 1, + "git_submodule": 1, + "*sub": 1, + "GIT_DIFF_IGNORE_SUBMODULES": 1, + "git_submodule_lookup": 1, + "ignore": 1, + "GIT_SUBMODULE_IGNORE_ALL": 1, + "use_noid": 2, + "diff_from_iterators": 5, + "**diff_ptr": 1, + "ignore_prefix": 6, + "git_diff_list_alloc": 1, + "old_src": 1, + "new_src": 3, + "git_iterator_current": 2, + "git_iterator_advance": 5, + "delta_type": 8, + "git_buf_len": 1, + "git__prefixcmp": 2, + "git_buf_cstr": 1, + "S_ISDIR": 1, + "GIT_DIFF_RECURSE_UNTRACKED_DIRS": 1, + "git_iterator_current_is_ignored": 2, + "git_buf_sets": 1, + "git_iterator_advance_into_directory": 1, + "git_iterator_free": 4, + "*diff_ptr": 2, + "git_diff_tree_to_tree": 1, + "git_tree": 4, + "*old_tree": 3, + "*new_tree": 1, + "**diff": 4, + "diff_prefix_from_pathspec": 4, + "old_tree": 5, + "new_tree": 2, + "git_iterator_for_tree_range": 4, + "git_diff_index_to_tree": 1, + "git_iterator_for_index_range": 2, + "git_diff_workdir_to_index": 1, + "git_iterator_for_workdir_range": 2, + "git_diff_workdir_to_tree": 1, + "git_diff_merge": 1, + "*onto": 1, + "*from": 1, + "onto_pool": 7, + "git_vector": 1, + "onto_new": 6, + "onto": 7, + "deltas.length": 4, + "GIT_VECTOR_GET": 2, + "diff_delta__merge_like_cgit": 1, + "git_vector_swap": 1, + "git_pool_swap": 1, + "git_cache_init": 1, + "git_cache": 4, + "*cache": 4, + "git_cached_obj_freeptr": 1, + "free_ptr": 2, + "git__size_t_powerof2": 1, + "cache": 26, + "size_mask": 6, + "lru_count": 1, + "free_obj": 4, + "git_mutex_init": 1, + "nodes": 10, + "git_cached_obj": 5, + "git_cache_free": 1, + "git_cached_obj_decref": 3, + "*git_cache_get": 1, + "*node": 2, + "*result": 1, + "git_mutex_lock": 2, + "node": 9, + "git_cached_obj_incref": 3, + "git_mutex_unlock": 2, + "*git_cache_try_store": 1, + "*_entry": 1, + "_entry": 1, + "VALUE": 13, + "rb_cRDiscount": 4, + "rb_rdiscount_to_html": 2, + "self": 9, + "*res": 2, + "szres": 8, + "text": 22, + "rb_funcall": 14, + "rb_intern": 15, + "rb_str_buf_new": 2, + "Check_Type": 2, + "T_STRING": 2, + "rb_rdiscount__get_flags": 3, + "MMIOT": 2, + "*doc": 2, + "mkd_string": 2, + "RSTRING_PTR": 2, + "RSTRING_LEN": 2, + "mkd_compile": 2, + "doc": 6, + "mkd_document": 1, + "res": 4, + "rb_str_cat": 4, + "mkd_cleanup": 2, + "rb_respond_to": 1, + "rb_rdiscount_toc_content": 2, + "mkd_toc": 1, + "ruby_obj": 11, + "MKD_TABSTOP": 1, + "MKD_NOHEADER": 1, + "Qtrue": 10, + "MKD_NOPANTS": 1, + "MKD_NOHTML": 1, + "MKD_TOC": 1, + "MKD_NOIMAGE": 1, + "MKD_NOLINKS": 1, + "MKD_NOTABLES": 1, + "MKD_STRICT": 1, + "MKD_AUTOLINK": 1, + "MKD_SAFELINK": 1, + "MKD_NO_EXT": 1, + "Init_rdiscount": 1, + "rb_define_class": 1, + "rb_cObject": 1, + "rb_define_method": 2, + "": 1, + "": 1, + "__APPLE__": 2, + "TARGET_OS_IPHONE": 1, + "**environ": 1, + "uv__chld": 2, + "EV_P_": 1, + "ev_child*": 1, + "watcher": 4, + "revents": 2, + "rstatus": 1, + "exit_status": 3, + "term_signal": 3, + "uv_process_t": 1, + "*process": 1, + "process": 19, + "child_watcher": 5, + "EV_CHILD": 1, + "ev_child_stop": 2, + "EV_A_": 1, + "WIFEXITED": 1, + "exit_cb": 3, + "uv__make_socketpair": 2, + "fds": 20, + "SOCK_NONBLOCK": 2, + "fl": 8, + "SOCK_CLOEXEC": 1, + "UV__F_NONBLOCK": 5, + "socketpair": 2, + "AF_UNIX": 2, + "SOCK_STREAM": 2, + "uv__cloexec": 4, + "uv__nonblock": 5, + "uv__make_pipe": 2, + "UV__O_CLOEXEC": 1, + "UV__O_NONBLOCK": 1, + "uv__pipe2": 1, + "ENOSYS": 1, + "pipe": 1, + "uv__process_init_stdio": 2, + "uv_stdio_container_t*": 4, + "container": 17, + "writable": 8, + "UV_IGNORE": 2, + "UV_CREATE_PIPE": 4, + "UV_INHERIT_FD": 3, + "UV_INHERIT_STREAM": 2, + "data.stream": 7, + "UV_NAMED_PIPE": 2, + "data.fd": 1, + "uv__process_stdio_flags": 2, + "uv_pipe_t*": 1, + "ipc": 1, + "UV_STREAM_READABLE": 2, + "UV_STREAM_WRITABLE": 2, + "uv__process_open_stream": 2, + "child_fd": 3, + "uv__stream_open": 1, + "uv_stream_t*": 2, + "uv__process_close_stream": 2, + "uv__stream_close": 1, + "uv__process_child_init": 2, + "uv_process_options_t": 2, + "stdio_count": 7, + "pipes": 23, + "options.flags": 4, + "UV_PROCESS_DETACHED": 2, + "close_fd": 2, + "use_fd": 7, + "O_RDONLY": 1, + "perror": 5, + "options.cwd": 2, + "UV_PROCESS_SETGID": 2, + "setgid": 1, + "options.gid": 1, + "UV_PROCESS_SETUID": 2, + "setuid": 1, + "options.uid": 1, + "environ": 4, + "options.env": 1, + "execvp": 1, + "options.file": 2, + "options.args": 1, + "SPAWN_WAIT_EXEC": 5, + "uv_spawn": 1, + "uv_loop_t*": 1, + "uv_process_t*": 3, + "save_our_env": 3, + "options.stdio_count": 4, + "signal_pipe": 7, + "pollfd": 1, + "pfd": 2, + "UV_PROCESS_WINDOWS_VERBATIM_ARGUMENTS": 1, + "uv__handle_init": 1, + "uv_handle_t*": 1, + "UV_PROCESS": 1, + "counters.process_init": 1, + "uv__handle_start": 1, + "options.exit_cb": 1, + "options.stdio": 3, + "pfd.fd": 1, + "pfd.events": 1, + "POLLIN": 1, + "POLLHUP": 1, + "pfd.revents": 1, + "poll": 1, + "EINTR": 1, + "ev_child_init": 1, + "ev_child_start": 1, + "ev": 2, + "child_watcher.data": 1, + "uv__set_sys_error": 2, + "uv_process_kill": 1, + "signum": 4, + "r": 58, + "uv_err_t": 1, + "uv_kill": 1, + "uv__new_sys_error": 1, + "uv_ok_": 1, + "uv__process_close": 1, + "uv__handle_stop": 1, + "PY_SSIZE_T_CLEAN": 1, + "Py_PYTHON_H": 1, + "Python": 2, + "headers": 1, + "compile": 1, + "extensions": 1, + "please": 1, + "install": 1, + "development": 1, + "Python.": 1, + "PY_VERSION_HEX": 11, + "Cython": 1, + "requires": 1, + ".": 1, + "": 2, + "offsetof": 2, + "member": 2, + "type*": 1, + "WIN32": 2, + "MS_WINDOWS": 2, + "__stdcall": 2, + "__cdecl": 2, + "__fastcall": 2, + "DL_IMPORT": 2, + "DL_EXPORT": 2, + "PY_LONG_LONG": 5, + "LONG_LONG": 1, + "Py_HUGE_VAL": 2, + "HUGE_VAL": 1, + "PYPY_VERSION": 1, + "CYTHON_COMPILING_IN_PYPY": 3, + "CYTHON_COMPILING_IN_CPYTHON": 6, + "Py_ssize_t": 35, + "PY_SSIZE_T_MAX": 1, + "INT_MAX": 1, + "PY_SSIZE_T_MIN": 1, + "INT_MIN": 1, + "PY_FORMAT_SIZE_T": 1, + "CYTHON_FORMAT_SSIZE_T": 2, + "PyInt_FromSsize_t": 6, + "z": 47, + "PyInt_FromLong": 3, + "PyInt_AsSsize_t": 3, + "__Pyx_PyInt_AsInt": 2, + "PyNumber_Index": 1, + "PyNumber_Check": 2, + "PyFloat_Check": 2, + "PyNumber_Int": 1, + "PyErr_Format": 4, + "PyExc_TypeError": 4, + "Py_TYPE": 7, + "tp_name": 4, + "PyObject*": 24, + "__Pyx_PyIndex_Check": 3, + "PyComplex_Check": 1, + "PyIndex_Check": 2, + "PyErr_WarnEx": 1, + "category": 2, + "message": 3, + "stacklevel": 1, + "PyErr_Warn": 1, + "__PYX_BUILD_PY_SSIZE_T": 2, + "Py_REFCNT": 1, + "ob": 14, + "ob_refcnt": 1, + "ob_type": 7, + "Py_SIZE": 1, + "PyVarObject*": 1, + "ob_size": 1, + "PyVarObject_HEAD_INIT": 1, + "PyObject_HEAD_INIT": 1, + "PyType_Modified": 1, + "PyObject": 276, + "itemsize": 1, + "readonly": 1, + "ndim": 2, + "*format": 2, + "*shape": 1, + "*strides": 1, + "*suboffsets": 1, + "*internal": 1, + "Py_buffer": 6, + "PyBUF_SIMPLE": 1, + "PyBUF_WRITABLE": 3, + "PyBUF_FORMAT": 3, + "PyBUF_ND": 2, + "PyBUF_STRIDES": 6, + "PyBUF_C_CONTIGUOUS": 1, + "PyBUF_F_CONTIGUOUS": 1, + "PyBUF_ANY_CONTIGUOUS": 1, + "PyBUF_INDIRECT": 2, + "PyBUF_RECORDS": 1, + "PyBUF_FULL": 1, + "PY_MAJOR_VERSION": 13, + "__Pyx_BUILTIN_MODULE_NAME": 2, + "__Pyx_PyCode_New": 2, + "l": 7, + "fv": 4, + "cell": 4, + "fline": 4, + "lnos": 4, + "PyCode_New": 2, + "PY_MINOR_VERSION": 1, + "PyUnicode_FromString": 2, + "PyUnicode_Decode": 1, + "Py_TPFLAGS_CHECKTYPES": 1, + "Py_TPFLAGS_HAVE_INDEX": 1, + "Py_TPFLAGS_HAVE_NEWBUFFER": 1, + "PyUnicode_KIND": 1, + "CYTHON_PEP393_ENABLED": 2, + "__Pyx_PyUnicode_READY": 2, + "op": 8, + "PyUnicode_IS_READY": 1, + "_PyUnicode_Ready": 1, + "__Pyx_PyUnicode_GET_LENGTH": 2, + "u": 18, + "PyUnicode_GET_LENGTH": 1, + "__Pyx_PyUnicode_READ_CHAR": 2, + "PyUnicode_READ_CHAR": 1, + "__Pyx_PyUnicode_READ": 2, + "PyUnicode_READ": 1, + "PyUnicode_GET_SIZE": 1, + "Py_UCS4": 2, + "PyUnicode_AS_UNICODE": 1, + "Py_UNICODE*": 1, + "PyBaseString_Type": 1, + "PyUnicode_Type": 2, + "PyStringObject": 2, + "PyUnicodeObject": 1, + "PyString_Type": 2, + "PyString_Check": 2, + "PyUnicode_Check": 1, + "PyString_CheckExact": 2, + "PyUnicode_CheckExact": 1, + "PyBytesObject": 1, + "PyBytes_Type": 1, + "PyBytes_Check": 1, + "PyBytes_CheckExact": 1, + "PyBytes_FromString": 2, + "PyString_FromString": 2, + "PyBytes_FromStringAndSize": 1, + "PyString_FromStringAndSize": 1, + "PyBytes_FromFormat": 1, + "PyString_FromFormat": 1, + "PyBytes_DecodeEscape": 1, + "PyString_DecodeEscape": 1, + "PyBytes_AsString": 2, + "PyString_AsString": 1, + "PyBytes_AsStringAndSize": 1, + "PyString_AsStringAndSize": 1, + "PyBytes_Size": 1, + "PyString_Size": 1, + "PyBytes_AS_STRING": 1, + "PyString_AS_STRING": 1, + "PyBytes_GET_SIZE": 1, + "PyString_GET_SIZE": 1, + "PyBytes_Repr": 1, + "PyString_Repr": 1, + "PyBytes_Concat": 1, + "PyString_Concat": 1, + "PyBytes_ConcatAndDel": 1, + "PyString_ConcatAndDel": 1, + "PySet_Check": 1, + "PyObject_TypeCheck": 3, + "PySet_Type": 2, + "PyFrozenSet_Check": 1, + "PyFrozenSet_Type": 1, + "PySet_CheckExact": 2, + "__Pyx_TypeCheck": 1, + "PyTypeObject": 25, + "PyIntObject": 1, + "PyLongObject": 2, + "PyInt_Type": 1, + "PyLong_Type": 1, + "PyInt_Check": 1, + "PyLong_Check": 1, + "PyInt_CheckExact": 1, + "PyLong_CheckExact": 1, + "PyInt_FromString": 1, + "PyLong_FromString": 1, + "PyInt_FromUnicode": 1, + "PyLong_FromUnicode": 1, + "PyLong_FromLong": 1, + "PyInt_FromSize_t": 1, + "PyLong_FromSize_t": 1, + "PyLong_FromSsize_t": 1, + "PyInt_AsLong": 2, + "PyLong_AsLong": 1, + "PyInt_AS_LONG": 1, + "PyLong_AS_LONG": 1, + "PyLong_AsSsize_t": 1, + "PyInt_AsUnsignedLongMask": 1, + "PyLong_AsUnsignedLongMask": 1, + "PyInt_AsUnsignedLongLongMask": 1, + "PyLong_AsUnsignedLongLongMask": 1, + "PyBoolObject": 1, + "Py_hash_t": 1, + "__Pyx_PyInt_FromHash_t": 2, + "__Pyx_PyInt_AsHash_t": 2, + "__Pyx_PySequence_GetSlice": 2, + "PySequence_GetSlice": 2, + "__Pyx_PySequence_SetSlice": 2, + "PySequence_SetSlice": 2, + "__Pyx_PySequence_DelSlice": 2, + "PySequence_DelSlice": 2, + "PyErr_SetString": 3, + "PyExc_SystemError": 3, + "tp_as_mapping": 3, + "PyMethod_New": 2, + "func": 3, + "klass": 1, + "PyInstanceMethod_New": 1, + "__Pyx_GetAttrString": 2, + "PyObject_GetAttrString": 2, + "__Pyx_SetAttrString": 2, + "PyObject_SetAttrString": 2, + "__Pyx_DelAttrString": 2, + "PyObject_DelAttrString": 2, + "__Pyx_NAMESTR": 2, + "__Pyx_DOCSTR": 2, + "__Pyx_PyNumber_Divide": 2, + "PyNumber_TrueDivide": 1, + "__Pyx_PyNumber_InPlaceDivide": 2, + "PyNumber_InPlaceTrueDivide": 1, + "PyNumber_Divide": 1, + "PyNumber_InPlaceDivide": 1, + "__PYX_EXTERN_C": 3, + "_USE_MATH_DEFINES": 1, + "__PYX_HAVE__sklearn__linear_model__sgd_fast": 1, + "__PYX_HAVE_API__sklearn__linear_model__sgd_fast": 1, + "_OPENMP": 1, + "": 1, + "PYREX_WITHOUT_ASSERTIONS": 1, + "CYTHON_WITHOUT_ASSERTIONS": 1, + "CYTHON_INLINE": 65, + "__inline__": 1, + "__inline": 1, + "__STDC_VERSION__": 2, + "L": 1, + "CYTHON_UNUSED": 14, + "**p": 1, + "is_unicode": 1, + "is_str": 1, + "intern": 1, + "__Pyx_StringTabEntry": 2, + "__Pyx_PyBytes_FromUString": 1, + "__Pyx_PyBytes_AsUString": 1, + "__Pyx_Owned_Py_None": 1, + "Py_INCREF": 10, + "Py_None": 8, + "__Pyx_PyBool_FromLong": 1, + "Py_True": 2, + "Py_False": 2, + "__Pyx_PyObject_IsTrue": 1, + "__Pyx_PyNumber_Int": 1, + "__Pyx_PyIndex_AsSsize_t": 1, + "__Pyx_PyInt_FromSize_t": 1, + "__Pyx_PyInt_AsSize_t": 1, + "__pyx_PyFloat_AsDouble": 12, + "PyFloat_CheckExact": 1, + "PyFloat_AS_DOUBLE": 1, + "PyFloat_AsDouble": 2, + "__pyx_PyFloat_AsFloat": 1, + "__builtin_expect": 2, + "*__pyx_m": 1, + "*__pyx_b": 1, + "*__pyx_empty_tuple": 1, + "*__pyx_empty_bytes": 1, + "__pyx_lineno": 58, + "__pyx_clineno": 58, + "__pyx_cfilenm": 1, + "__FILE__": 4, + "*__pyx_filename": 7, + "CYTHON_CCOMPLEX": 12, + "_Complex_I": 3, + "": 1, + "": 1, + "__sun__": 1, + "fj": 1, + "*__pyx_f": 1, + "IS_UNSIGNED": 1, + "__Pyx_StructField_": 2, + "__PYX_BUF_FLAGS_PACKED_STRUCT": 1, + "__Pyx_StructField_*": 1, + "fields": 1, + "arraysize": 1, + "typegroup": 1, + "is_unsigned": 1, + "__Pyx_TypeInfo": 2, + "__Pyx_TypeInfo*": 2, + "offset": 1, + "__Pyx_StructField": 2, + "__Pyx_StructField*": 1, + "field": 1, + "parent_offset": 1, + "__Pyx_BufFmt_StackElem": 1, + "root": 1, + "__Pyx_BufFmt_StackElem*": 2, + "fmt_offset": 1, + "new_count": 1, + "enc_count": 1, + "struct_alignment": 1, + "is_complex": 1, + "enc_type": 1, + "new_packmode": 1, + "enc_packmode": 1, + "is_valid_array": 1, + "__Pyx_BufFmt_Context": 1, + "npy_int8": 1, + "__pyx_t_5numpy_int8_t": 1, + "npy_int16": 1, + "__pyx_t_5numpy_int16_t": 1, + "npy_int32": 1, + "__pyx_t_5numpy_int32_t": 4, + "npy_int64": 1, + "__pyx_t_5numpy_int64_t": 1, + "npy_uint8": 1, + "__pyx_t_5numpy_uint8_t": 1, + "npy_uint16": 1, + "__pyx_t_5numpy_uint16_t": 1, + "npy_uint32": 1, + "__pyx_t_5numpy_uint32_t": 1, + "npy_uint64": 1, + "__pyx_t_5numpy_uint64_t": 1, + "npy_float32": 1, + "__pyx_t_5numpy_float32_t": 1, + "npy_float64": 1, + "__pyx_t_5numpy_float64_t": 4, + "npy_long": 1, + "__pyx_t_5numpy_int_t": 1, + "npy_longlong": 2, + "__pyx_t_5numpy_long_t": 1, + "__pyx_t_5numpy_longlong_t": 1, + "npy_ulong": 1, + "__pyx_t_5numpy_uint_t": 1, + "npy_ulonglong": 2, + "__pyx_t_5numpy_ulong_t": 1, + "__pyx_t_5numpy_ulonglong_t": 1, + "npy_intp": 1, + "__pyx_t_5numpy_intp_t": 1, + "npy_uintp": 1, + "__pyx_t_5numpy_uintp_t": 1, + "npy_double": 2, + "__pyx_t_5numpy_float_t": 1, + "__pyx_t_5numpy_double_t": 1, + "npy_longdouble": 1, + "__pyx_t_5numpy_longdouble_t": 1, + "__pyx_t_7sklearn_5utils_13weight_vector_DOUBLE": 2, + "__pyx_t_7sklearn_5utils_13weight_vector_INTEGER": 1, + "__pyx_t_7sklearn_5utils_11seq_dataset_DOUBLE": 7, + "__pyx_t_7sklearn_5utils_11seq_dataset_INTEGER": 7, + "__pyx_t_7sklearn_12linear_model_8sgd_fast_DOUBLE": 4, + "__pyx_t_7sklearn_12linear_model_8sgd_fast_INTEGER": 3, + "std": 8, + "complex": 2, + "__pyx_t_float_complex": 27, + "_Complex": 2, + "real": 2, + "imag": 2, + "__pyx_t_double_complex": 27, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_LossFunction": 15, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Regression": 11, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Huber": 6, + "__pyx_obj_7sklearn_5utils_11seq_dataset_SequentialDataset": 5, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 6, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Classification": 7, + "__pyx_obj_7sklearn_5utils_11seq_dataset_CSRDataset": 2, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Log": 5, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Hinge": 6, + "__pyx_obj_7sklearn_5utils_11seq_dataset_ArrayDataset": 2, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 6, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_ModifiedHuber": 5, + "__pyx_obj_7sklearn_5utils_13weight_vector_WeightVector": 3, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredLoss": 5, + "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredEpsilonInsensitive": 6, + "npy_cfloat": 1, + "__pyx_t_5numpy_cfloat_t": 1, + "npy_cdouble": 2, + "__pyx_t_5numpy_cdouble_t": 1, + "npy_clongdouble": 1, + "__pyx_t_5numpy_clongdouble_t": 1, + "__pyx_t_5numpy_complex_t": 1, + "PyObject_HEAD": 3, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_LossFunction": 5, + "*__pyx_vtab": 3, + "__pyx_base": 18, + "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_SequentialDataset": 4, + "n_samples": 1, + "epsilon": 2, + "current_index": 2, + "stride": 2, + "*X_data_ptr": 2, + "*X_indptr_ptr": 1, + "*X_indices_ptr": 1, + "*Y_data_ptr": 2, + "PyArrayObject": 8, + "*feature_indices": 2, + "*feature_indices_ptr": 2, + "*index": 2, + "*index_data_ptr": 2, + "*sample_weight_data": 2, + "threshold": 2, + "n_features": 2, + "__pyx_vtabstruct_7sklearn_5utils_13weight_vector_WeightVector": 3, + "*w": 2, + "*w_data_ptr": 1, + "wscale": 1, + "sq_norm": 1, + "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_SequentialDataset": 1, + "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_ArrayDataset": 2, + "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_ArrayDataset": 1, + "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_CSRDataset": 2, + "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_CSRDataset": 1, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 2, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Regression": 3, + "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 1, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 2, + "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 1, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Huber": 2, + "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_Huber": 1, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Hinge": 2, + "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Classification": 1, + "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_Hinge": 1, + "*__pyx_vtabptr_7sklearn_5utils_13weight_vector_WeightVector": 1, + "CYTHON_REFNANNY": 3, + "__Pyx_RefNannyAPIStruct": 3, + "*__Pyx_RefNanny": 1, + "*__Pyx_RefNannyImportAPI": 1, + "*modname": 1, + "__Pyx_RefNannyDeclarations": 11, + "*__pyx_refnanny": 1, + "WITH_THREAD": 1, + "__Pyx_RefNannySetupContext": 12, + "acquire_gil": 4, + "PyGILState_STATE": 1, + "__pyx_gilstate_save": 2, + "PyGILState_Ensure": 1, + "__pyx_refnanny": 8, + "__Pyx_RefNanny": 8, + "SetupContext": 3, + "__LINE__": 50, + "PyGILState_Release": 1, + "__Pyx_RefNannyFinishContext": 14, + "FinishContext": 1, + "__Pyx_INCREF": 6, + "INCREF": 1, + "__Pyx_DECREF": 20, + "DECREF": 1, + "__Pyx_GOTREF": 24, + "GOTREF": 1, + "__Pyx_GIVEREF": 9, + "GIVEREF": 1, + "__Pyx_XINCREF": 2, + "__Pyx_XDECREF": 20, + "__Pyx_XGOTREF": 2, + "__Pyx_XGIVEREF": 5, + "Py_DECREF": 2, + "Py_XINCREF": 1, + "Py_XDECREF": 1, + "__Pyx_CLEAR": 1, + "__Pyx_XCLEAR": 1, + "*__Pyx_GetName": 1, + "__Pyx_ErrRestore": 1, + "*type": 4, + "*tb": 2, + "__Pyx_ErrFetch": 1, + "**type": 1, + "**value": 1, + "**tb": 1, + "__Pyx_Raise": 4, + "*cause": 1, + "__Pyx_RaiseArgtupleInvalid": 7, + "func_name": 2, + "num_min": 1, + "num_max": 1, + "num_found": 1, + "__Pyx_RaiseDoubleKeywordsError": 1, + "kw_name": 1, + "__Pyx_ParseOptionalKeywords": 4, + "*kwds": 1, + "**argnames": 1, + "*kwds2": 1, + "*values": 1, + "num_pos_args": 1, + "function_name": 1, + "__Pyx_ArgTypeTest": 1, + "none_allowed": 1, + "__Pyx_GetBufferAndValidate": 1, + "Py_buffer*": 2, + "dtype": 1, + "nd": 1, + "cast": 1, + "__Pyx_SafeReleaseBuffer": 1, + "__Pyx_TypeTest": 1, + "__Pyx_RaiseBufferFallbackError": 1, + "*__Pyx_GetItemInt_Generic": 1, + "*r": 7, + "PyObject_GetItem": 1, + "__Pyx_GetItemInt_List": 1, + "to_py_func": 6, + "__Pyx_GetItemInt_List_Fast": 1, + "__Pyx_GetItemInt_Generic": 6, + "*__Pyx_GetItemInt_List_Fast": 1, + "PyList_GET_SIZE": 5, + "PyList_GET_ITEM": 3, + "PySequence_GetItem": 3, + "__Pyx_GetItemInt_Tuple": 1, + "__Pyx_GetItemInt_Tuple_Fast": 1, + "*__Pyx_GetItemInt_Tuple_Fast": 1, + "PyTuple_GET_SIZE": 14, + "PyTuple_GET_ITEM": 15, + "__Pyx_GetItemInt": 1, + "__Pyx_GetItemInt_Fast": 2, + "PyList_CheckExact": 1, + "PyTuple_CheckExact": 1, + "PySequenceMethods": 1, + "*m": 1, + "tp_as_sequence": 1, + "sq_item": 2, + "sq_length": 2, + "PySequence_Check": 1, + "__Pyx_RaiseTooManyValuesError": 1, + "expected": 2, + "__Pyx_RaiseNeedMoreValuesError": 1, + "__Pyx_RaiseNoneNotIterableError": 1, + "__Pyx_IterFinish": 1, + "__Pyx_IternextUnpackEndCheck": 1, + "*retval": 1, + "shape": 1, + "strides": 1, + "suboffsets": 1, + "__Pyx_Buf_DimInfo": 2, + "pybuffer": 1, + "__Pyx_Buffer": 2, + "*rcbuffer": 1, + "diminfo": 1, + "__Pyx_LocalBuf_ND": 1, + "__Pyx_GetBuffer": 2, + "*view": 2, + "__Pyx_ReleaseBuffer": 2, + "PyObject_GetBuffer": 1, + "PyBuffer_Release": 1, + "__Pyx_zeros": 1, + "__Pyx_minusones": 1, + "*__Pyx_Import": 1, + "*from_list": 1, + "__Pyx_RaiseImportError": 1, + "__Pyx_Print": 1, + "__pyx_print": 1, + "__pyx_print_kwargs": 1, + "__Pyx_PrintOne": 1, + "__Pyx_CREAL": 4, + ".real": 3, + "__Pyx_CIMAG": 4, + ".imag": 3, + "__real__": 1, + "__imag__": 1, + "__Pyx_SET_CREAL": 2, + "__Pyx_SET_CIMAG": 2, + "__pyx_t_float_complex_from_parts": 1, + "__Pyx_c_eqf": 2, + "__Pyx_c_sumf": 2, + "__Pyx_c_difff": 2, + "__Pyx_c_prodf": 2, + "__Pyx_c_quotf": 2, + "__Pyx_c_negf": 2, + "__Pyx_c_is_zerof": 3, + "__Pyx_c_conjf": 3, + "conj": 3, + "__Pyx_c_absf": 3, + "abs": 2, + "__Pyx_c_powf": 3, + "pow": 2, + "conjf": 1, + "cabsf": 1, + "cpowf": 1, + "__pyx_t_double_complex_from_parts": 1, + "__Pyx_c_eq": 2, + "__Pyx_c_sum": 2, + "__Pyx_c_diff": 2, + "__Pyx_c_prod": 2, + "__Pyx_c_quot": 2, + "__Pyx_c_neg": 2, + "__Pyx_c_is_zero": 3, + "__Pyx_c_conj": 3, + "__Pyx_c_abs": 3, + "__Pyx_c_pow": 3, + "cabs": 1, + "cpow": 1, + "__Pyx_PyInt_AsUnsignedChar": 1, + "__Pyx_PyInt_AsUnsignedShort": 1, + "__Pyx_PyInt_AsUnsignedInt": 1, + "__Pyx_PyInt_AsChar": 1, + "__Pyx_PyInt_AsShort": 1, + "signed": 5, + "__Pyx_PyInt_AsSignedChar": 1, + "__Pyx_PyInt_AsSignedShort": 1, + "__Pyx_PyInt_AsSignedInt": 1, + "__Pyx_PyInt_AsLongDouble": 1, + "__Pyx_PyInt_AsUnsignedLong": 1, + "__Pyx_PyInt_AsUnsignedLongLong": 1, + "__Pyx_PyInt_AsLong": 1, + "__Pyx_PyInt_AsLongLong": 1, + "__Pyx_PyInt_AsSignedLong": 1, + "__Pyx_PyInt_AsSignedLongLong": 1, + "__Pyx_WriteUnraisable": 4, + "clineno": 1, + "lineno": 1, + "*filename": 2, + "__Pyx_check_binary_version": 1, + "__Pyx_SetVtable": 1, + "*vtable": 1, + "__Pyx_PyIdentifier_FromString": 3, + "*__Pyx_ImportModule": 1, + "*__Pyx_ImportType": 1, + "*module_name": 1, + "*class_name": 1, + "strict": 2, + "__Pyx_GetVtable": 1, + "code_line": 4, + "PyCodeObject*": 2, + "code_object": 2, + "__Pyx_CodeObjectCacheEntry": 1, + "__Pyx_CodeObjectCache": 2, + "max_count": 1, + "__Pyx_CodeObjectCacheEntry*": 2, + "entries": 2, + "__pyx_code_cache": 1, + "__pyx_bisect_code_objects": 1, + "PyCodeObject": 1, + "*__pyx_find_code_object": 1, + "__pyx_insert_code_object": 1, + "__Pyx_AddTraceback": 7, + "*funcname": 1, + "c_line": 1, + "py_line": 1, + "__Pyx_InitStrings": 1, + "*__pyx_ptype_7cpython_4type_type": 1, + "*__pyx_ptype_5numpy_dtype": 1, + "*__pyx_ptype_5numpy_flatiter": 1, + "*__pyx_ptype_5numpy_broadcast": 1, + "*__pyx_ptype_5numpy_ndarray": 1, + "*__pyx_ptype_5numpy_ufunc": 1, + "*__pyx_f_5numpy__util_dtypestring": 1, + "PyArray_Descr": 1, + "*__pyx_ptype_7sklearn_5utils_13weight_vector_WeightVector": 1, + "*__pyx_ptype_7sklearn_5utils_11seq_dataset_SequentialDataset": 1, + "*__pyx_ptype_7sklearn_5utils_11seq_dataset_ArrayDataset": 1, + "*__pyx_ptype_7sklearn_5utils_11seq_dataset_CSRDataset": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_LossFunction": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Regression": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Classification": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_ModifiedHuber": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Hinge": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Log": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredLoss": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Huber": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 1, + "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredEpsilonInsensitive": 1, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_max": 1, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_min": 1, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_sqnorm": 1, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_l1penalty": 1, + "__Pyx_TypeInfo_nn___pyx_t_7sklearn_12linear_model_8sgd_fast_DOUBLE": 1, + "__Pyx_MODULE_NAME": 1, + "__pyx_module_is_main_sklearn__linear_model__sgd_fast": 1, + "*__pyx_builtin_NotImplementedError": 1, + "*__pyx_builtin_range": 1, + "*__pyx_builtin_ValueError": 1, + "*__pyx_builtin_RuntimeError": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 2, + "*__pyx_v_self": 52, + "__pyx_v_p": 46, + "__pyx_v_y": 46, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 2, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 2, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_2dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_14Classification_loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_14Classification_2dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_2dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_4__reduce__": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge___init__": 1, + "__pyx_v_threshold": 2, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_2loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_4dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_6__reduce__": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge___init__": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_2loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_4dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_6__reduce__": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_2dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_4__reduce__": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_2dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_4__reduce__": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber___init__": 1, + "__pyx_v_c": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_2loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_4dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_6__reduce__": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive___init__": 1, + "__pyx_v_epsilon": 2, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_2loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_4dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_6__reduce__": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive___init__": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_2loss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_4dloss": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_6__reduce__": 1, + "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_plain_sgd": 1, + "*__pyx_self": 1, + "*__pyx_v_weights": 1, + "__pyx_v_intercept": 1, + "*__pyx_v_loss": 1, + "__pyx_v_penalty_type": 1, + "__pyx_v_alpha": 1, + "__pyx_v_C": 1, + "__pyx_v_rho": 1, + "*__pyx_v_dataset": 1, + "__pyx_v_n_iter": 1, + "__pyx_v_fit_intercept": 1, + "__pyx_v_verbose": 1, + "__pyx_v_shuffle": 1, + "*__pyx_v_seed": 1, + "__pyx_v_weight_pos": 1, + "__pyx_v_weight_neg": 1, + "__pyx_v_learning_rate": 1, + "__pyx_v_eta0": 1, + "__pyx_v_power_t": 1, + "__pyx_v_t": 1, + "__pyx_v_intercept_decay": 1, + "__pyx_pf_5numpy_7ndarray___getbuffer__": 1, + "*__pyx_v_info": 2, + "__pyx_v_flags": 1, + "__pyx_pf_5numpy_7ndarray_2__releasebuffer__": 1, + "__pyx_k_1": 1, + "__pyx_k_2": 1, + "__pyx_k_3": 1, + "__pyx_k_4": 1, + "__pyx_k_6": 1, + "__pyx_k_8": 1, + "__pyx_k_10": 1, + "__pyx_k_12": 1, + "__pyx_k_13": 1, + "__pyx_k_16": 1, + "__pyx_k_20": 1, + "__pyx_k_21": 1, + "__pyx_k__B": 1, + "__pyx_k__C": 1, + "__pyx_k__H": 1, + "__pyx_k__I": 1, + "__pyx_k__L": 1, + "__pyx_k__O": 1, + "__pyx_k__Q": 1, + "__pyx_k__b": 1, + "__pyx_k__c": 1, + "__pyx_k__d": 1, + "__pyx_k__f": 1, + "__pyx_k__g": 1, + "__pyx_k__h": 1, + "__pyx_k__i": 1, + "__pyx_k__l": 1, + "__pyx_k__p": 1, + "__pyx_k__q": 1, + "__pyx_k__t": 1, + "__pyx_k__u": 1, + "__pyx_k__w": 1, + "__pyx_k__y": 1, + "__pyx_k__Zd": 1, + "__pyx_k__Zf": 1, + "__pyx_k__Zg": 1, + "__pyx_k__np": 1, + "__pyx_k__any": 1, + "__pyx_k__eta": 1, + "__pyx_k__rho": 1, + "__pyx_k__sys": 1, + "__pyx_k__eta0": 1, + "__pyx_k__loss": 1, + "__pyx_k__seed": 1, + "__pyx_k__time": 1, + "__pyx_k__xnnz": 1, + "__pyx_k__alpha": 1, + "__pyx_k__count": 1, + "__pyx_k__dloss": 1, + "__pyx_k__dtype": 1, + "__pyx_k__epoch": 1, + "__pyx_k__isinf": 1, + "__pyx_k__isnan": 1, + "__pyx_k__numpy": 1, + "__pyx_k__order": 1, + "__pyx_k__range": 1, + "__pyx_k__shape": 1, + "__pyx_k__zeros": 1, + "__pyx_k__n_iter": 1, + "__pyx_k__update": 1, + "__pyx_k__dataset": 1, + "__pyx_k__epsilon": 1, + "__pyx_k__float64": 1, + "__pyx_k__nonzero": 1, + "__pyx_k__power_t": 1, + "__pyx_k__shuffle": 1, + "__pyx_k__sumloss": 1, + "__pyx_k__t_start": 1, + "__pyx_k__verbose": 1, + "__pyx_k__weights": 1, + "__pyx_k____main__": 1, + "__pyx_k____test__": 1, + "__pyx_k__is_hinge": 1, + "__pyx_k__intercept": 1, + "__pyx_k__n_samples": 1, + "__pyx_k__plain_sgd": 1, + "__pyx_k__threshold": 1, + "__pyx_k__x_ind_ptr": 1, + "__pyx_k__ValueError": 1, + "__pyx_k__n_features": 1, + "__pyx_k__q_data_ptr": 1, + "__pyx_k__weight_neg": 1, + "__pyx_k__weight_pos": 1, + "__pyx_k__x_data_ptr": 1, + "__pyx_k__RuntimeError": 1, + "__pyx_k__class_weight": 1, + "__pyx_k__penalty_type": 1, + "__pyx_k__fit_intercept": 1, + "__pyx_k__learning_rate": 1, + "__pyx_k__sample_weight": 1, + "__pyx_k__intercept_decay": 1, + "__pyx_k__NotImplementedError": 1, + "*__pyx_kp_s_1": 1, + "*__pyx_kp_u_10": 1, + "*__pyx_kp_u_12": 1, + "*__pyx_kp_u_13": 1, + "*__pyx_kp_u_16": 1, + "*__pyx_kp_s_2": 1, + "*__pyx_kp_s_20": 1, + "*__pyx_n_s_21": 1, + "*__pyx_kp_s_3": 1, + "*__pyx_kp_s_4": 1, + "*__pyx_kp_u_6": 1, + "*__pyx_kp_u_8": 1, + "*__pyx_n_s__C": 1, + "*__pyx_n_s__NotImplementedError": 1, + "*__pyx_n_s__RuntimeError": 1, + "*__pyx_n_s__ValueError": 1, + "*__pyx_n_s____main__": 1, + "*__pyx_n_s____test__": 1, + "*__pyx_n_s__alpha": 1, + "*__pyx_n_s__any": 1, + "*__pyx_n_s__c": 1, + "*__pyx_n_s__class_weight": 1, + "*__pyx_n_s__count": 1, + "*__pyx_n_s__dataset": 1, + "*__pyx_n_s__dloss": 1, + "*__pyx_n_s__dtype": 1, + "*__pyx_n_s__epoch": 1, + "*__pyx_n_s__epsilon": 1, + "*__pyx_n_s__eta": 1, + "*__pyx_n_s__eta0": 1, + "*__pyx_n_s__fit_intercept": 1, + "*__pyx_n_s__float64": 1, + "*__pyx_n_s__i": 1, + "*__pyx_n_s__intercept": 1, + "*__pyx_n_s__intercept_decay": 1, + "*__pyx_n_s__is_hinge": 1, + "*__pyx_n_s__isinf": 1, + "*__pyx_n_s__isnan": 1, + "*__pyx_n_s__learning_rate": 1, + "*__pyx_n_s__loss": 1, + "*__pyx_n_s__n_features": 1, + "*__pyx_n_s__n_iter": 1, + "*__pyx_n_s__n_samples": 1, + "*__pyx_n_s__nonzero": 1, + "*__pyx_n_s__np": 1, + "*__pyx_n_s__numpy": 1, + "*__pyx_n_s__order": 1, + "*__pyx_n_s__p": 1, + "*__pyx_n_s__penalty_type": 1, + "*__pyx_n_s__plain_sgd": 1, + "*__pyx_n_s__power_t": 1, + "*__pyx_n_s__q": 1, + "*__pyx_n_s__q_data_ptr": 1, + "*__pyx_n_s__range": 1, + "*__pyx_n_s__rho": 1, + "*__pyx_n_s__sample_weight": 1, + "*__pyx_n_s__seed": 1, + "*__pyx_n_s__shape": 1, + "*__pyx_n_s__shuffle": 1, + "*__pyx_n_s__sumloss": 1, + "*__pyx_n_s__sys": 1, + "*__pyx_n_s__t": 1, + "*__pyx_n_s__t_start": 1, + "*__pyx_n_s__threshold": 1, + "*__pyx_n_s__time": 1, + "*__pyx_n_s__u": 1, + "*__pyx_n_s__update": 1, + "*__pyx_n_s__verbose": 1, + "*__pyx_n_s__w": 1, + "*__pyx_n_s__weight_neg": 1, + "*__pyx_n_s__weight_pos": 1, + "*__pyx_n_s__weights": 1, + "*__pyx_n_s__x_data_ptr": 1, + "*__pyx_n_s__x_ind_ptr": 1, + "*__pyx_n_s__xnnz": 1, + "*__pyx_n_s__y": 1, + "*__pyx_n_s__zeros": 1, + "*__pyx_int_15": 1, + "*__pyx_k_tuple_5": 1, + "*__pyx_k_tuple_7": 1, + "*__pyx_k_tuple_9": 1, + "*__pyx_k_tuple_11": 1, + "*__pyx_k_tuple_14": 1, + "*__pyx_k_tuple_15": 1, + "*__pyx_k_tuple_17": 1, + "*__pyx_k_tuple_18": 1, + "*__pyx_k_codeobj_19": 1, + "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_1loss": 3, + "*__pyx_args": 9, + "*__pyx_kwds": 9, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, + "__pyx_skip_dispatch": 6, + "__pyx_r": 39, + "*__pyx_t_1": 6, + "*__pyx_t_2": 3, + "*__pyx_t_3": 3, + "*__pyx_t_4": 3, + "__pyx_t_5": 12, + "__pyx_v_self": 15, + "tp_dictoffset": 3, + "__pyx_t_1": 69, + "PyObject_GetAttr": 3, + "__pyx_n_s__loss": 2, + "__pyx_filename": 51, + "__pyx_f": 42, + "__pyx_L1_error": 33, + "PyCFunction_Check": 3, + "PyCFunction_GET_FUNCTION": 3, + "PyCFunction": 3, + "__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_1loss": 1, + "__pyx_t_2": 21, + "PyFloat_FromDouble": 9, + "__pyx_t_3": 39, + "__pyx_t_4": 27, + "PyTuple_New": 3, + "PyTuple_SET_ITEM": 6, + "PyObject_Call": 6, + "PyErr_Occurred": 9, + "__pyx_L0": 18, + "__pyx_builtin_NotImplementedError": 3, + "__pyx_empty_tuple": 3, + "__pyx_doc_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, + "*__pyx_r": 6, + "**__pyx_pyargnames": 3, + "__pyx_n_s__p": 6, + "__pyx_n_s__y": 6, + "values": 30, + "__pyx_kwds": 15, + "kw_args": 15, + "pos_args": 12, + "__pyx_args": 21, + "__pyx_L5_argtuple_error": 12, + "PyDict_Size": 3, + "PyDict_GetItem": 6, + "__pyx_L3_error": 18, + "__pyx_pyargnames": 3, + "__pyx_L4_argument_unpacking_done": 6, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, + "__pyx_vtab": 2, + "loss": 1, + "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_3dloss": 3, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_12LossFunction_dloss": 1, + "__pyx_n_s__dloss": 1, + "__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_3dloss": 1, + "__pyx_doc_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 1, + "dloss": 1, + "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_10Regression_1loss": 3, + "__pyx_f_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 1, + "__pyx_pw_7sklearn_12linear_model_8sgd_fast_10Regression_1loss": 1, + "__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 1, + "__pyx_base.__pyx_vtab": 1, + "__pyx_base.loss": 1, + "READLINE_READLINE_CATS": 3, + "": 1, + "atscntrb_readline_rl_library_version": 1, + "rl_library_version": 1, + "atscntrb_readline_rl_readline_version": 1, + "rl_readline_version": 1, + "atscntrb_readline_readline": 1, + "readline": 1, + "strncasecmp": 2, + "_strnicmp": 1, + "REF_TABLE_SIZE": 1, + "BUFFER_BLOCK": 5, + "BUFFER_SPAN": 9, + "MKD_LI_END": 1, + "gperf_case_strncmp": 1, + "GPERF_DOWNCASE": 1, + "GPERF_CASE_STRNCMP": 1, + "link_ref": 2, + "*link": 1, + "*title": 1, + "sd_markdown": 6, + "tag": 1, + "tag_len": 3, + "w": 6, + "is_empty": 4, + "htmlblock_end": 3, + "*curtag": 2, + "*rndr": 4, + "start_of_line": 2, + "tag_size": 3, + "curtag": 8, + "end_tag": 4, + "block_lines": 3, + "htmlblock_end_tag": 1, + "rndr": 25, + "parse_htmlblock": 1, + "*ob": 3, + "do_render": 4, + "tag_end": 7, + "work": 4, + "find_block_tag": 1, + "work.size": 5, + "cb.blockhtml": 6, + "opaque": 8, + "parse_table_row": 1, + "columns": 3, + "*col_data": 1, + "header_flag": 3, + "col": 9, + "*row_work": 1, + "cb.table_cell": 3, + "cb.table_row": 2, + "row_work": 4, + "rndr_newbuf": 2, + "cell_start": 5, + "cell_end": 6, + "*cell_work": 1, + "cell_work": 3, + "_isspace": 3, + "parse_inline": 1, + "col_data": 2, + "rndr_popbuf": 2, + "empty_cell": 2, + "parse_table_header": 1, + "*columns": 2, + "**column_data": 1, + "header_end": 7, + "under_end": 1, + "*column_data": 1, + "calloc": 1, + "beg": 10, + "doc_size": 6, + "document": 9, + "UTF8_BOM": 1, + "is_ref": 1, + "md": 18, + "refs": 2, + "expand_tabs": 1, + "bufputc": 2, + "bufgrow": 1, + "MARKDOWN_GROW": 1, + "cb.doc_header": 2, + "parse_block": 1, + "cb.doc_footer": 2, + "bufrelease": 3, + "free_link_refs": 1, + "work_bufs": 8, + ".size": 2, + "sd_markdown_free": 1, + "*md": 1, + ".asize": 2, + ".item": 2, + "stack_free": 2, + "sd_version": 1, + "*ver_major": 2, + "*ver_minor": 2, + "*ver_revision": 2, + "SUNDOWN_VER_MAJOR": 1, + "SUNDOWN_VER_MINOR": 1, + "SUNDOWN_VER_REVISION": 1, + "COMMIT_H": 2, + "*util": 1, + "indegree": 1, + "*parents": 4, + "*tree": 3, + "decoration": 1, + "name_decoration": 3, + "*commit_list_insert": 1, + "commit_list_count": 1, + "*l": 1, + "*commit_list_insert_by_date": 1, + "free_commit_list": 1, + "cmit_fmt": 3, + "CMIT_FMT_RAW": 1, + "CMIT_FMT_MEDIUM": 2, + "CMIT_FMT_DEFAULT": 1, + "CMIT_FMT_SHORT": 1, + "CMIT_FMT_FULL": 1, + "CMIT_FMT_FULLER": 1, + "CMIT_FMT_ONELINE": 1, + "CMIT_FMT_EMAIL": 1, + "CMIT_FMT_USERFORMAT": 1, + "CMIT_FMT_UNSPECIFIED": 1, + "pretty_print_context": 6, + "abbrev": 1, + "*subject": 1, + "*after_subject": 1, + "preserve_subject": 1, + "date_mode": 2, + "date_mode_explicit": 1, + "need_8bit_cte": 2, + "show_notes": 1, + "reflog_walk_info": 1, + "*reflog_info": 1, + "*output_encoding": 2, + "userformat_want": 2, + "notes": 1, + "has_non_ascii": 1, + "*text": 1, + "rev_info": 2, + "*logmsg_reencode": 1, + "*reencode_commit_message": 1, + "**encoding_p": 1, + "get_commit_format": 1, + "*arg": 1, + "*format_subject": 1, + "*sb": 7, + "*line_separator": 1, + "userformat_find_requirements": 1, + "format_commit_message": 1, + "*context": 1, + "pretty_print_commit": 1, + "*pp": 4, + "pp_commit_easy": 1, + "pp_user_info": 1, + "*what": 1, + "*line": 1, + "*encoding": 2, + "pp_title_line": 1, + "**msg_p": 2, + "pp_remainder": 1, + "indent": 1, + "*pop_most_recent_commit": 1, + "mark": 3, + "*pop_commit": 1, + "**stack": 1, + "clear_commit_marks": 1, + "clear_commit_marks_for_object_array": 1, + "object_array": 2, + "sort_in_topological_order": 1, + "list": 1, + "lifo": 1, + "FLEX_ARRAY": 1, + "*read_graft_line": 1, + "*lookup_commit_graft": 1, + "*get_merge_bases": 1, + "*rev1": 1, + "*rev2": 1, + "*get_merge_bases_many": 1, + "*one": 1, + "**twos": 1, + "*get_octopus_merge_bases": 1, + "*in": 1, + "register_shallow": 1, + "unregister_shallow": 1, + "for_each_commit_graft": 1, + "each_commit_graft_fn": 1, + "is_repository_shallow": 1, + "*get_shallow_commits": 1, + "*heads": 2, + "shallow_flag": 1, + "not_shallow_flag": 1, + "is_descendant_of": 1, + "in_merge_bases": 1, + "interactive_add": 1, + "patch": 1, + "run_add_interactive": 1, + "*revision": 1, + "*patch_mode": 1, + "**pathspec": 1, + "single_parent": 1, + "*reduce_heads": 1, + "commit_extra_header": 7, + "append_merge_tag_headers": 1, + "***tail": 1, + "commit_tree": 1, + "*author": 2, + "*sign_commit": 2, + "commit_tree_extended": 1, + "*read_commit_extra_headers": 1, + "*read_commit_extra_header_lines": 1, + "free_commit_extra_headers": 1, + "*extra": 1, + "merge_remote_util": 1, + "*get_merge_parent": 1, + "parse_signed_commit": 1, + "*message": 1, + "*signature": 1, + "ULLONG_MAX": 10, + "MIN": 3, + "SET_ERRNO": 47, + "e": 4, + "parser": 334, + "CALLBACK_NOTIFY_": 3, + "FOR": 11, + "ER": 4, + "HPE_OK": 10, + "settings": 6, + "on_##FOR": 4, + "HPE_CB_##FOR": 2, + "CALLBACK_NOTIFY": 10, + "CALLBACK_NOTIFY_NOADVANCE": 2, + "CALLBACK_DATA_": 4, + "LEN": 2, + "FOR##_mark": 7, + "CALLBACK_DATA": 10, + "CALLBACK_DATA_NOADVANCE": 6, + "MARK": 7, + "PROXY_CONNECTION": 4, + "CONNECTION": 4, + "CONTENT_LENGTH": 4, + "TRANSFER_ENCODING": 4, + "UPGRADE": 4, + "CHUNKED": 4, + "KEEP_ALIVE": 4, + "CLOSE": 4, + "*method_strings": 1, + "#string": 1, + "unhex": 3, + "normal_url_char": 3, + "T": 3, + "s_dead": 10, + "s_start_req_or_res": 4, + "s_res_or_resp_H": 3, + "s_start_res": 5, + "s_res_H": 3, + "s_res_HT": 4, + "s_res_HTT": 3, + "s_res_HTTP": 3, + "s_res_first_http_major": 3, + "s_res_http_major": 3, + "s_res_first_http_minor": 3, + "s_res_http_minor": 3, + "s_res_first_status_code": 3, + "s_res_status_code": 3, + "s_res_status": 3, + "s_res_line_almost_done": 4, + "s_start_req": 6, + "s_req_method": 4, + "s_req_spaces_before_url": 5, + "s_req_schema": 6, + "s_req_schema_slash": 6, + "s_req_schema_slash_slash": 6, + "s_req_host_start": 8, + "s_req_host_v6_start": 7, + "s_req_host_v6": 7, + "s_req_host_v6_end": 7, + "s_req_host": 8, + "s_req_port_start": 7, + "s_req_port": 6, + "s_req_path": 8, + "s_req_query_string_start": 8, + "s_req_query_string": 7, + "s_req_fragment_start": 7, + "s_req_fragment": 7, + "s_req_http_start": 3, + "s_req_http_H": 3, + "s_req_http_HT": 3, + "s_req_http_HTT": 3, + "s_req_http_HTTP": 3, + "s_req_first_http_major": 3, + "s_req_http_major": 3, + "s_req_first_http_minor": 3, + "s_req_http_minor": 3, + "s_req_line_almost_done": 4, + "s_header_field_start": 12, + "s_header_field": 4, + "s_header_value_start": 4, + "s_header_value": 5, + "s_header_value_lws": 3, + "s_header_almost_done": 6, + "s_chunk_size_start": 4, + "s_chunk_size": 3, + "s_chunk_parameters": 3, + "s_chunk_size_almost_done": 4, + "s_headers_almost_done": 4, + "s_headers_done": 4, + "s_chunk_data": 3, + "s_chunk_data_almost_done": 3, + "s_chunk_data_done": 3, + "s_body_identity": 3, + "s_body_identity_eof": 4, + "s_message_done": 3, + "PARSING_HEADER": 2, + "header_states": 1, + "h_general": 23, + "h_C": 3, + "h_CO": 3, + "h_CON": 3, + "h_matching_connection": 3, + "h_matching_proxy_connection": 3, + "h_matching_content_length": 3, + "h_matching_transfer_encoding": 3, + "h_matching_upgrade": 3, + "h_connection": 6, + "h_content_length": 5, + "h_transfer_encoding": 5, + "h_upgrade": 4, + "h_matching_transfer_encoding_chunked": 3, + "h_matching_connection_keep_alive": 3, + "h_matching_connection_close": 3, + "h_transfer_encoding_chunked": 4, + "h_connection_keep_alive": 4, + "h_connection_close": 4, + "Macros": 1, + "classes": 1, + "depends": 1, + "define": 14, + "CR": 18, + "LF": 21, + "LOWER": 7, + "0x20": 1, + "IS_ALPHA": 5, + "IS_NUM": 14, + "9": 1, + "IS_ALPHANUM": 3, + "IS_HEX": 2, + "TOKEN": 4, + "IS_URL_CHAR": 6, + "IS_HOST_CHAR": 4, + "0x80": 1, + "start_state": 1, + "cond": 1, + "HPE_STRICT": 1, + "HTTP_STRERROR_GEN": 3, + "#n": 1, + "*description": 1, + "http_strerror_tab": 7, + "http_message_needs_eof": 4, + "parse_url_char": 5, + "ch": 145, + "unhex_val": 7, + "*header_field_mark": 1, + "*header_value_mark": 1, + "*url_mark": 1, + "*body_mark": 1, + "message_complete": 7, + "HPE_INVALID_EOF_STATE": 1, + "header_field_mark": 2, + "header_value_mark": 2, + "url_mark": 2, + "HPE_HEADER_OVERFLOW": 1, + "reexecute_byte": 7, + "HPE_CLOSED_CONNECTION": 1, + "message_begin": 3, + "HPE_INVALID_CONSTANT": 3, + "HTTP_HEAD": 2, + "STRICT_CHECK": 15, + "HPE_INVALID_VERSION": 12, + "HPE_INVALID_STATUS": 3, + "HPE_INVALID_METHOD": 4, + "HTTP_CONNECT": 4, + "HTTP_DELETE": 1, + "HTTP_GET": 1, + "HTTP_LOCK": 1, + "HTTP_MKCOL": 2, + "HTTP_NOTIFY": 1, + "HTTP_OPTIONS": 1, + "HTTP_POST": 2, + "HTTP_REPORT": 1, + "HTTP_SUBSCRIBE": 2, + "HTTP_TRACE": 1, + "HTTP_UNLOCK": 2, + "*matcher": 1, + "matcher": 3, + "method_strings": 2, + "HTTP_CHECKOUT": 1, + "HTTP_COPY": 1, + "HTTP_MOVE": 1, + "HTTP_MERGE": 1, + "HTTP_MSEARCH": 1, + "HTTP_MKACTIVITY": 1, + "HTTP_SEARCH": 1, + "HTTP_PROPFIND": 2, + "HTTP_PUT": 2, + "HTTP_PATCH": 1, + "HTTP_PURGE": 1, + "HTTP_UNSUBSCRIBE": 1, + "HTTP_PROPPATCH": 1, + "url": 4, + "HPE_INVALID_URL": 4, + "HPE_LF_EXPECTED": 1, + "HPE_INVALID_HEADER_TOKEN": 2, + "header_field": 5, + "header_value": 6, + "HPE_INVALID_CONTENT_LENGTH": 4, + "NEW_MESSAGE": 6, + "HPE_CB_headers_complete": 1, + "to_read": 6, + "body": 6, + "body_mark": 2, + "HPE_INVALID_CHUNK_SIZE": 2, + "HPE_INVALID_INTERNAL_STATE": 1, + "HPE_UNKNOWN": 1, + "Does": 1, + "find": 1, + "http_method_str": 1, + "http_errno_name": 1, + ".name": 1, + "http_errno_description": 1, + ".description": 1, + "uf": 14, + "old_uf": 4, + ".off": 2, + "xffff": 1, + "HPE_PAUSED": 2, + "OBJ_BLOB": 3, + "alloc_blob_node": 1 }, "C#": { "@": 1, @@ -10146,2092 +10149,233 @@ "Console.WriteLine": 2 }, "C++": { - "class": 40, - "Bar": 2, - "{": 726, - "protected": 4, - "char": 127, - "*name": 6, - ";": 2783, - "public": 33, - "void": 241, - "hello": 2, - "(": 3102, - ")": 3105, - "}": 726, "//": 315, - "///": 843, - "mainpage": 1, - "C": 6, - "library": 14, - "for": 105, - "Broadcom": 3, - "BCM": 14, - "as": 28, - "used": 17, - "in": 165, - "Raspberry": 6, - "Pi": 5, - "This": 19, - "is": 102, - "a": 157, - "RPi": 17, - ".": 16, - "It": 7, - "provides": 3, - "access": 17, - "to": 254, - "GPIO": 87, - "and": 118, - "other": 17, - "IO": 2, - "functions": 19, - "on": 55, - "the": 541, - "chip": 9, - "allowing": 3, - "pins": 40, - "pin": 90, - "IDE": 4, - "plug": 3, - "board": 2, - "so": 2, - "you": 29, - "can": 21, - "control": 17, - "interface": 9, - "with": 33, - "various": 4, - "external": 3, - "devices.": 1, - "reading": 3, - "digital": 2, - "inputs": 2, - "setting": 2, - "outputs": 1, - "using": 11, - "SPI": 44, - "I2C": 29, - "accessing": 2, - "system": 13, - "timers.": 1, - "Pin": 65, - "event": 3, - "detection": 2, - "supported": 3, - "by": 53, - "polling": 1, - "interrupts": 1, - "are": 36, - "not": 29, - "+": 80, - "compatible": 1, - "installs": 1, - "header": 7, - "file": 31, - "non": 2, + "#include": 129, + "namespace": 38, + "v8": 9, + "{": 726, + "internal": 47, + "V8_DECLARE_ONCE": 1, + "(": 3102, + "init_once": 2, + ")": 3105, + ";": 2783, + "bool": 111, + "V8": 21, + "is_running_": 6, + "false": 48, + "has_been_set_up_": 4, + "has_been_disposed_": 6, + "has_fatal_error_": 5, + "use_crankshaft_": 6, + "true": 49, + "List": 3, + "": 3, + "*": 183, + "call_completed_callbacks_": 16, + "NULL": 109, + "static": 263, + "LazyMutex": 1, + "entropy_mutex": 1, + "LAZY_MUTEX_INITIALIZER": 1, + "EntropySource": 3, + "entropy_source": 4, + "Initialize": 4, + "Deserializer*": 2, + "des": 3, + "FlagList": 1, + "EnforceFlagImplications": 1, + "InitializeOncePerProcess": 4, + "if": 359, + "i": 106, + "Isolate": 9, + "CurrentPerIsolateThreadData": 4, + "EnterDefaultIsolate": 1, + "}": 726, + "ASSERT": 17, "-": 438, - "shared": 2, - "any": 23, - "Linux": 2, - "based": 4, - "distro": 1, - "but": 5, - "clearly": 1, - "no": 7, - "use": 37, - "except": 2, - "or": 44, - "another": 1, - "The": 50, - "version": 38, - "of": 215, - "package": 1, - "that": 36, - "this": 57, - "documentation": 3, - "refers": 1, - "be": 35, - "downloaded": 1, - "from": 91, - "http": 11, - "//www.airspayce.com/mikem/bcm2835/bcm2835": 1, - "tar.gz": 1, - "You": 9, - "find": 2, - "latest": 2, - "at": 20, - "//www.airspayce.com/mikem/bcm2835": 1, - "Several": 1, - "example": 3, - "programs": 4, - "provided.": 1, - "Based": 1, - "data": 26, - "//elinux.org/RPi_Low": 1, - "level_peripherals": 1, - "//www.raspberrypi.org/wp": 1, - "content/uploads/2012/02/BCM2835": 1, - "ARM": 5, - "Peripherals.pdf": 1, - "//www.scribd.com/doc/101830961/GPIO": 2, - "Pads": 3, - "Control2": 2, - "also": 3, - "online": 1, - "help": 1, - "discussion": 1, - "//groups.google.com/group/bcm2835": 1, - "Please": 4, - "group": 23, - "all": 11, - "questions": 1, - "discussions": 1, - "topic.": 1, - "Do": 1, - "contact": 1, - "author": 3, - "directly": 2, - "unless": 1, - "it": 19, - "discuss": 1, - "commercial": 1, - "licensing.": 1, - "Tested": 1, - "debian6": 1, - "wheezy": 3, - "raspbian": 3, - "Occidentalisv01": 2, - "CAUTION": 1, - "has": 29, - "been": 14, - "observed": 1, - "when": 22, - "detect": 3, - "enables": 3, - "such": 4, - "bcm2835_gpio_len": 5, - "pulled": 1, - "LOW": 8, - "cause": 1, - "temporary": 1, - "hangs": 1, - "Occidentalisv01.": 1, - "Reason": 1, - "yet": 1, - "determined": 1, - "suspect": 1, - "an": 23, - "interrupt": 3, - "handler": 1, - "hitting": 1, - "hard": 1, - "loop": 2, - "those": 3, - "OSs.": 1, - "If": 11, - "must": 6, - "friends": 2, - "make": 6, - "sure": 6, - "disable": 2, - "bcm2835_gpio_cler_len": 1, - "after": 18, - "use.": 1, - "par": 9, - "Installation": 1, - "consists": 1, - "single": 2, - "which": 14, - "will": 15, - "installed": 1, - "usual": 3, - "places": 1, - "install": 3, - "code": 12, - "#": 1, - "download": 2, - "say": 1, - "bcm2835": 7, - "xx.tar.gz": 2, - "then": 15, - "tar": 1, - "zxvf": 1, - "cd": 1, - "xx": 2, - "./configure": 1, - "sudo": 2, - "check": 4, - "endcode": 2, - "Physical": 21, - "Addresses": 6, - "bcm2835_peri_read": 3, - "bcm2835_peri_write": 3, - "bcm2835_peri_set_bits": 2, - "low": 5, - "level": 10, - "peripheral": 14, - "register": 17, - "functions.": 4, - "They": 1, - "designed": 3, - "physical": 4, - "addresses": 4, - "described": 1, - "section": 6, - "BCM2835": 2, - "Peripherals": 1, - "manual.": 1, - "range": 3, - "FFFFFF": 1, - "peripherals.": 1, - "bus": 4, - "peripherals": 2, - "set": 18, - "up": 18, - "map": 3, - "onto": 1, - "address": 13, - "starting": 1, - "E000000.": 1, - "Thus": 1, - "advertised": 1, - "manual": 8, - "Ennnnnn": 1, - "available": 6, - "nnnnnn.": 1, - "base": 8, - "registers": 12, - "following": 2, - "externals": 1, - "bcm2835_gpio": 2, - "bcm2835_pwm": 2, - "bcm2835_clk": 2, - "bcm2835_pads": 2, - "bcm2835_spio0": 1, - "bcm2835_st": 1, - "bcm2835_bsc0": 1, - "bcm2835_bsc1": 1, - "Numbering": 1, - "numbering": 1, - "different": 5, - "inconsistent": 1, - "underlying": 4, - "numbering.": 1, - "//elinux.org/RPi_BCM2835_GPIOs": 1, - "some": 4, - "well": 1, - "power": 1, - "ground": 1, - "pins.": 1, - "Not": 4, - "header.": 1, - "Version": 40, - "P5": 6, - "connector": 1, - "V": 2, - "Gnd.": 1, - "passed": 4, - "number": 52, - "_not_": 1, - "number.": 1, - "There": 1, - "symbolic": 1, - "definitions": 3, - "each": 7, - "should": 10, - "convenience.": 1, - "See": 7, - "ref": 32, - "RPiGPIOPin.": 22, - "Pins": 2, - "bcm2835_spi_*": 1, - "allow": 5, - "SPI0": 17, - "send": 3, - "received": 3, - "Serial": 3, - "Peripheral": 6, - "Interface": 2, - "For": 6, - "more": 4, - "information": 3, - "about": 6, - "see": 14, - "//en.wikipedia.org/wiki/Serial_Peripheral_Interface_Bus": 1, - "When": 12, - "bcm2835_spi_begin": 3, - "called": 13, - "changes": 2, - "bahaviour": 1, - "their": 6, - "default": 14, - "behaviour": 1, - "order": 14, - "support": 4, - "SPI.": 1, - "While": 1, - "able": 2, - "state": 33, - "through": 4, - "bcm2835_spi_gpio_write": 1, - "bcm2835_spi_end": 4, - "revert": 1, - "configured": 1, - "controled": 1, - "bcm2835_gpio_*": 1, - "calls.": 1, - "P1": 56, - "MOSI": 8, - "MISO": 6, - "CLK": 6, - "CE0": 5, - "CE1": 6, - "bcm2835_i2c_*": 2, - "BSC": 10, - "generically": 1, - "referred": 1, - "I": 4, - "//en.wikipedia.org/wiki/I": 1, - "%": 7, - "C2": 1, - "B2C": 1, - "V2": 2, - "SDA": 3, - "SLC": 1, - "Real": 1, - "Time": 1, - "performance": 2, - "constraints": 2, - "user": 3, - "i.e.": 1, - "they": 2, - "run": 2, - "Such": 1, - "part": 1, - "kernel": 4, - "usually": 2, - "subject": 1, - "paging": 1, - "swapping": 2, - "while": 17, - "does": 4, - "things": 1, - "besides": 1, - "running": 1, - "your": 12, - "program.": 1, - "means": 8, - "expect": 2, - "get": 5, - "real": 4, - "time": 10, - "timing": 3, - "programs.": 1, - "In": 2, - "particular": 1, - "there": 4, - "guarantee": 1, - "bcm2835_delay": 5, - "bcm2835_delayMicroseconds": 6, + "thread_id": 1, + ".Equals": 1, + "ThreadId": 1, + "Current": 5, + "isolate": 15, + "IsDead": 2, "return": 240, - "exactly": 2, - "requested.": 1, - "fact": 2, - "depending": 1, - "activity": 1, - "host": 1, - "etc": 1, - "might": 1, - "significantly": 1, - "longer": 1, - "delay": 9, - "times": 2, - "than": 6, - "one": 73, - "asked": 1, - "for.": 1, - "So": 1, - "please": 2, - "dont": 1, - "request.": 1, - "Arjan": 2, - "reports": 1, - "prevent": 4, - "fragment": 2, - "struct": 13, - "sched_param": 1, - "sp": 4, - "memset": 3, + "Isolate*": 6, + "IsInitialized": 3, + "Init": 3, + "void": 241, + "SetFatalError": 2, + "TearDown": 5, + "IsDefaultIsolate": 1, + "||": 19, + "ElementsAccessor": 2, + "LOperand": 2, + "TearDownCaches": 1, + "RegisteredExtension": 1, + "UnregisterAll": 1, + "delete": 6, + "OS": 3, + "seed_random": 2, + "uint32_t*": 7, + "state": 33, + "for": 105, + "int": 218, + "<": 255, + "+": 80, + "FLAG_random_seed": 2, + "[": 293, + "]": 292, + "else": 58, + "uint32_t": 39, + "val": 3, + "ScopedLock": 1, + "lock": 5, + "entropy_mutex.Pointer": 1, + "reinterpret_cast": 8, + "": 19, + "char": 127, "&": 203, "sizeof": 15, - "sp.sched_priority": 1, - "sched_get_priority_max": 1, - "SCHED_FIFO": 2, - "sched_setscheduler": 1, - "mlockall": 1, - "MCL_CURRENT": 1, - "|": 40, - "MCL_FUTURE": 1, - "Open": 2, - "Source": 2, - "Licensing": 2, - "GPL": 2, - "appropriate": 7, - "option": 1, - "if": 359, - "want": 5, - "share": 2, - "source": 12, - "application": 2, - "everyone": 1, - "distribute": 1, - "give": 2, - "them": 1, - "right": 9, - "who": 1, - "uses": 4, - "it.": 3, - "wish": 2, - "software": 1, - "under": 2, - "contribute": 1, - "open": 6, - "community": 1, - "accordance": 1, - "distributed.": 1, - "//www.gnu.org/copyleft/gpl.html": 1, - "COPYING": 1, - "Acknowledgements": 1, - "Some": 1, - "inspired": 2, - "Dom": 1, - "Gert.": 1, - "Alan": 1, - "Barr.": 1, - "Revision": 1, - "History": 1, - "Initial": 1, - "release": 1, - "Minor": 1, - "bug": 1, - "fixes": 1, - "Added": 11, - "bcm2835_spi_transfern": 3, - "Fixed": 4, - "problem": 2, - "prevented": 1, - "being": 4, - "used.": 2, - "Reported": 5, - "David": 1, - "Robinson.": 1, - "bcm2835_close": 4, - "deinit": 1, - "library.": 3, - "Suggested": 1, - "sar": 1, - "Ortiz": 1, - "Document": 1, - "testing": 2, - "Functions": 1, - "bcm2835_gpio_ren": 3, - "bcm2835_gpio_fen": 3, - "bcm2835_gpio_hen": 3, - "bcm2835_gpio_aren": 3, - "bcm2835_gpio_afen": 3, - "now": 4, - "only": 6, - "specified.": 1, - "Other": 1, - "were": 1, - "already": 1, - "previously": 10, - "enabled": 4, - "stay": 1, - "enabled.": 1, - "bcm2835_gpio_clr_ren": 2, - "bcm2835_gpio_clr_fen": 2, - "bcm2835_gpio_clr_hen": 2, - "bcm2835_gpio_clr_len": 2, - "bcm2835_gpio_clr_aren": 2, - "bcm2835_gpio_clr_afen": 2, - "clear": 3, - "enable": 3, - "individual": 1, - "suggested": 3, - "Andreas": 1, - "Sundstrom.": 1, - "bcm2835_spi_transfernb": 2, - "buffers": 3, - "read": 21, - "write.": 1, - "Improvements": 3, - "barrier": 3, - "maddin.": 1, - "contributed": 1, - "mikew": 1, - "noticed": 1, - "was": 6, - "mallocing": 1, - "memory": 14, - "mmaps": 1, - "/dev/mem.": 1, - "ve": 4, - "removed": 1, - "mallocs": 1, - "frees": 1, - "found": 1, - "calling": 9, - "nanosleep": 7, - "takes": 1, - "least": 2, - "us.": 1, - "need": 6, - "link": 3, - "version.": 1, - "s": 26, - "doc": 1, - "Also": 1, - "added": 2, - "define": 2, - "passwrd": 1, - "value": 50, - "Gert": 1, - "says": 1, - "needed": 3, - "change": 3, - "pad": 4, - "settings.": 1, - "Changed": 1, - "names": 3, - "collisions": 1, - "wiringPi.": 1, - "Macros": 2, - "delayMicroseconds": 3, - "disabled": 2, - "defining": 1, - "BCM2835_NO_DELAY_COMPATIBILITY": 2, - "incorrect": 2, - "New": 6, - "mapping": 3, - "Hardware": 1, - "pointers": 2, - "initialisation": 2, - "externally": 1, - "bcm2835_spi0.": 1, - "Now": 4, - "compiles": 1, - "even": 2, - "CLOCK_MONOTONIC_RAW": 1, - "CLOCK_MONOTONIC": 3, - "instead.": 1, - "errors": 1, - "divider": 15, - "frequencies": 2, - "MHz": 14, - "clock.": 6, - "Ben": 1, - "Simpson.": 1, - "end": 23, - "examples": 1, - "Mark": 5, - "Wolfe.": 1, - "bcm2835_gpio_set_multi": 2, - "bcm2835_gpio_clr_multi": 2, - "bcm2835_gpio_write_multi": 4, - "mask": 20, - "once.": 1, - "Requested": 2, - "Sebastian": 2, - "Loncar.": 2, - "bcm2835_gpio_write_mask.": 1, - "Changes": 1, - "timer": 2, - "counter": 1, - "instead": 4, - "clock_gettime": 1, - "improved": 1, - "accuracy.": 1, - "No": 2, - "lrt": 1, - "now.": 1, - "Contributed": 1, - "van": 1, - "Vught.": 1, - "Removed": 1, - "inlines": 1, - "previous": 6, - "patch": 1, - "since": 3, - "don": 1, - "t": 15, - "seem": 1, - "work": 1, - "everywhere.": 1, - "olly.": 1, - "Patch": 2, - "Dootson": 2, - "close": 7, - "/dev/mem": 4, - "granted.": 1, - "susceptible": 1, - "bit": 19, - "overruns.": 1, - "courtesy": 1, - "Jeremy": 1, - "Mortis.": 1, - "definition": 3, - "BCM2835_GPFEN0": 2, - "broke": 1, - "ability": 1, - "falling": 4, - "edge": 8, - "events.": 1, - "Dootson.": 2, - "bcm2835_i2c_set_baudrate": 2, - "bcm2835_i2c_read_register_rs.": 1, - "bcm2835_i2c_read": 4, - "bcm2835_i2c_write": 4, - "fix": 1, - "ocasional": 1, - "reads": 2, - "completing.": 1, - "Patched": 1, - "p": 6, - "[": 293, - "atched": 1, - "his": 1, - "submitted": 1, - "high": 5, - "load": 1, - "processes.": 1, - "Updated": 1, - "distribution": 1, - "location": 6, - "details": 1, - "airspayce.com": 1, - "missing": 1, - "unmapmem": 1, - "pads": 7, - "leak.": 1, - "Hartmut": 1, - "Henkel.": 1, - "Mike": 1, - "McCauley": 1, - "mikem@airspayce.com": 1, - "DO": 1, - "NOT": 3, - "CONTACT": 1, - "THE": 2, - "AUTHOR": 1, - "DIRECTLY": 1, - "USE": 1, - "LISTS": 1, - "#ifndef": 29, - "BCM2835_H": 3, - "#define": 343, - "#include": 129, - "": 2, - "defgroup": 7, - "constants": 1, - "Constants": 1, - "passing": 1, - "values": 3, - "here": 1, - "@": 14, - "HIGH": 12, - "true": 49, - "volts": 2, - "pin.": 21, - "false": 48, - "Speed": 1, - "core": 1, - "clock": 21, - "core_clk": 1, - "BCM2835_CORE_CLK_HZ": 1, - "<": 255, - "Base": 17, - "Address": 10, - "BCM2835_PERI_BASE": 9, - "System": 10, - "Timer": 9, - "BCM2835_ST_BASE": 1, - "BCM2835_GPIO_PADS": 2, - "Clock/timer": 1, - "BCM2835_CLOCK_BASE": 1, - "BCM2835_GPIO_BASE": 6, - "BCM2835_SPI0_BASE": 1, - "BSC0": 2, - "BCM2835_BSC0_BASE": 1, - "PWM": 2, - "BCM2835_GPIO_PWM": 1, - "C000": 1, - "BSC1": 2, - "BCM2835_BSC1_BASE": 1, - "ST": 1, - "registers.": 10, - "Available": 8, - "bcm2835_init": 11, - "extern": 72, - "volatile": 13, - "uint32_t": 39, - "*bcm2835_st": 1, - "*bcm2835_gpio": 1, - "*bcm2835_pwm": 1, - "*bcm2835_clk": 1, - "PADS": 1, - "*bcm2835_pads": 1, - "*bcm2835_spi0": 1, - "*bcm2835_bsc0": 1, - "*bcm2835_bsc1": 1, - "Size": 2, - "page": 5, - "BCM2835_PAGE_SIZE": 1, - "*1024": 2, - "block": 7, - "BCM2835_BLOCK_SIZE": 1, - "offsets": 2, - "BCM2835_GPIO_BASE.": 1, - "Offsets": 1, - "into": 6, - "bytes": 29, - "per": 3, - "Register": 1, - "View": 1, - "BCM2835_GPFSEL0": 1, - "Function": 8, - "Select": 49, - "BCM2835_GPFSEL1": 1, - "BCM2835_GPFSEL2": 1, - "BCM2835_GPFSEL3": 1, - "c": 72, - "BCM2835_GPFSEL4": 1, - "BCM2835_GPFSEL5": 1, - "BCM2835_GPSET0": 1, - "Output": 6, - "Set": 2, - "BCM2835_GPSET1": 1, - "BCM2835_GPCLR0": 1, - "Clear": 18, - "BCM2835_GPCLR1": 1, - "BCM2835_GPLEV0": 1, - "Level": 2, - "BCM2835_GPLEV1": 1, - "BCM2835_GPEDS0": 1, - "Event": 11, - "Detect": 35, - "Status": 6, - "BCM2835_GPEDS1": 1, - "BCM2835_GPREN0": 1, - "Rising": 8, - "Edge": 16, - "Enable": 38, - "BCM2835_GPREN1": 1, - "Falling": 8, - "BCM2835_GPFEN1": 1, - "BCM2835_GPHEN0": 1, - "High": 4, - "BCM2835_GPHEN1": 1, - "BCM2835_GPLEN0": 1, - "Low": 5, - "BCM2835_GPLEN1": 1, - "BCM2835_GPAREN0": 1, - "Async.": 4, - "BCM2835_GPAREN1": 1, - "BCM2835_GPAFEN0": 1, - "BCM2835_GPAFEN1": 1, - "BCM2835_GPPUD": 1, - "Pull": 11, - "up/down": 10, - "BCM2835_GPPUDCLK0": 1, - "Clock": 11, - "BCM2835_GPPUDCLK1": 1, - "brief": 12, - "bcm2835PortFunction": 1, - "Port": 1, - "function": 19, - "select": 9, - "modes": 1, - "bcm2835_gpio_fsel": 2, - "typedef": 50, - "enum": 17, - "BCM2835_GPIO_FSEL_INPT": 1, - "b000": 1, - "Input": 2, - "BCM2835_GPIO_FSEL_OUTP": 1, - "b001": 1, - "BCM2835_GPIO_FSEL_ALT0": 1, - "b100": 1, - "Alternate": 6, - "BCM2835_GPIO_FSEL_ALT1": 1, - "b101": 1, - "BCM2835_GPIO_FSEL_ALT2": 1, - "b110": 1, - "BCM2835_GPIO_FSEL_ALT3": 1, - "b111": 2, - "BCM2835_GPIO_FSEL_ALT4": 1, - "b011": 1, - "BCM2835_GPIO_FSEL_ALT5": 1, - "b010": 1, - "BCM2835_GPIO_FSEL_MASK": 1, - "bits": 11, - "bcm2835FunctionSelect": 2, - "bcm2835PUDControl": 4, - "Pullup/Pulldown": 1, - "defines": 3, - "bcm2835_gpio_pud": 5, - "BCM2835_GPIO_PUD_OFF": 1, - "b00": 1, - "Off": 3, - "pull": 1, - "BCM2835_GPIO_PUD_DOWN": 1, - "b01": 1, - "Down": 1, - "BCM2835_GPIO_PUD_UP": 1, - "b10": 1, - "Up": 1, - "Pad": 11, - "BCM2835_PADS_GPIO_0_27": 1, - "BCM2835_PADS_GPIO_28_45": 1, - "BCM2835_PADS_GPIO_46_53": 1, - "Control": 6, - "masks": 1, - "BCM2835_PAD_PASSWRD": 1, - "A": 7, + "random": 1, + "random_base": 3, + "xFFFF": 2, "<<": 29, - "Password": 1, - "BCM2835_PAD_SLEW_RATE_UNLIMITED": 1, - "Slew": 1, - "rate": 3, - "unlimited": 1, - "BCM2835_PAD_HYSTERESIS_ENABLED": 1, - "Hysteresis": 1, - "BCM2835_PAD_DRIVE_2mA": 1, - "mA": 8, - "drive": 8, - "current": 26, - "BCM2835_PAD_DRIVE_4mA": 1, - "BCM2835_PAD_DRIVE_6mA": 1, - "BCM2835_PAD_DRIVE_8mA": 1, - "BCM2835_PAD_DRIVE_10mA": 1, - "BCM2835_PAD_DRIVE_12mA": 1, - "BCM2835_PAD_DRIVE_14mA": 1, - "BCM2835_PAD_DRIVE_16mA": 1, - "bcm2835PadGroup": 4, - "specification": 1, - "bcm2835_gpio_pad": 2, - "BCM2835_PAD_GROUP_GPIO_0_27": 1, - "BCM2835_PAD_GROUP_GPIO_28_45": 1, - "BCM2835_PAD_GROUP_GPIO_46_53": 1, - "Numbers": 1, - "Here": 1, - "we": 10, - "terms": 4, - "numbers.": 1, - "These": 6, - "requiring": 1, - "bin": 1, - "connected": 1, - "adopt": 1, - "alternate": 7, - "function.": 3, - "slightly": 1, - "pinouts": 1, - "these": 1, - "RPI_V2_*.": 1, - "At": 1, - "bootup": 1, - "UART0_TXD": 3, - "UART0_RXD": 3, - "ie": 3, - "alt0": 1, - "respectively": 1, - "dedicated": 1, - "cant": 1, - "controlled": 1, - "independently": 1, - "RPI_GPIO_P1_03": 6, - "RPI_GPIO_P1_05": 6, - "RPI_GPIO_P1_07": 1, - "RPI_GPIO_P1_08": 1, - "defaults": 4, - "alt": 4, - "RPI_GPIO_P1_10": 1, - "RPI_GPIO_P1_11": 1, - "RPI_GPIO_P1_12": 1, - "RPI_GPIO_P1_13": 1, - "RPI_GPIO_P1_15": 1, - "RPI_GPIO_P1_16": 1, - "RPI_GPIO_P1_18": 1, - "RPI_GPIO_P1_19": 1, - "RPI_GPIO_P1_21": 1, - "RPI_GPIO_P1_22": 1, - "RPI_GPIO_P1_23": 1, - "RPI_GPIO_P1_24": 1, - "RPI_GPIO_P1_26": 1, - "RPI_V2_GPIO_P1_03": 1, - "RPI_V2_GPIO_P1_05": 1, - "RPI_V2_GPIO_P1_07": 1, - "RPI_V2_GPIO_P1_08": 1, - "RPI_V2_GPIO_P1_10": 1, - "RPI_V2_GPIO_P1_11": 1, - "RPI_V2_GPIO_P1_12": 1, - "RPI_V2_GPIO_P1_13": 1, - "RPI_V2_GPIO_P1_15": 1, - "RPI_V2_GPIO_P1_16": 1, - "RPI_V2_GPIO_P1_18": 1, - "RPI_V2_GPIO_P1_19": 1, - "RPI_V2_GPIO_P1_21": 1, - "RPI_V2_GPIO_P1_22": 1, - "RPI_V2_GPIO_P1_23": 1, - "RPI_V2_GPIO_P1_24": 1, - "RPI_V2_GPIO_P1_26": 1, - "RPI_V2_GPIO_P5_03": 1, - "RPI_V2_GPIO_P5_04": 1, - "RPI_V2_GPIO_P5_05": 1, - "RPI_V2_GPIO_P5_06": 1, - "RPiGPIOPin": 1, - "BCM2835_SPI0_CS": 1, - "Master": 12, - "BCM2835_SPI0_FIFO": 1, - "TX": 5, - "RX": 7, - "FIFOs": 1, - "BCM2835_SPI0_CLK": 1, - "Divider": 2, - "BCM2835_SPI0_DLEN": 1, - "Data": 9, - "Length": 2, - "BCM2835_SPI0_LTOH": 1, - "LOSSI": 1, - "mode": 24, - "TOH": 1, - "BCM2835_SPI0_DC": 1, - "DMA": 3, - "DREQ": 1, - "Controls": 1, - "BCM2835_SPI0_CS_LEN_LONG": 1, - "Long": 1, - "word": 7, - "Lossi": 2, - "DMA_LEN": 1, - "BCM2835_SPI0_CS_DMA_LEN": 1, - "BCM2835_SPI0_CS_CSPOL2": 1, - "Chip": 9, - "Polarity": 5, - "BCM2835_SPI0_CS_CSPOL1": 1, - "BCM2835_SPI0_CS_CSPOL0": 1, - "BCM2835_SPI0_CS_RXF": 1, - "RXF": 2, - "FIFO": 25, - "Full": 1, - "BCM2835_SPI0_CS_RXR": 1, - "RXR": 3, - "needs": 4, - "Reading": 1, - "full": 9, - "BCM2835_SPI0_CS_TXD": 1, - "TXD": 2, - "accept": 2, - "BCM2835_SPI0_CS_RXD": 1, - "RXD": 2, - "contains": 2, - "BCM2835_SPI0_CS_DONE": 1, - "Done": 3, - "transfer": 8, - "BCM2835_SPI0_CS_TE_EN": 1, - "Unused": 2, - "BCM2835_SPI0_CS_LMONO": 1, - "BCM2835_SPI0_CS_LEN": 1, - "LEN": 1, - "LoSSI": 1, - "BCM2835_SPI0_CS_REN": 1, - "REN": 1, - "Read": 3, - "BCM2835_SPI0_CS_ADCS": 1, - "ADCS": 1, - "Automatically": 1, - "Deassert": 1, - "BCM2835_SPI0_CS_INTR": 1, - "INTR": 1, - "Interrupt": 5, - "BCM2835_SPI0_CS_INTD": 1, - "INTD": 1, - "BCM2835_SPI0_CS_DMAEN": 1, - "DMAEN": 1, - "BCM2835_SPI0_CS_TA": 1, - "Transfer": 3, - "Active": 2, - "BCM2835_SPI0_CS_CSPOL": 1, - "BCM2835_SPI0_CS_CLEAR": 1, - "BCM2835_SPI0_CS_CLEAR_RX": 1, - "BCM2835_SPI0_CS_CLEAR_TX": 1, - "BCM2835_SPI0_CS_CPOL": 1, - "BCM2835_SPI0_CS_CPHA": 1, - "Phase": 1, - "BCM2835_SPI0_CS_CS": 1, - "bcm2835SPIBitOrder": 3, - "Bit": 1, - "Specifies": 5, - "ordering": 4, - "bcm2835_spi_setBitOrder": 2, - "BCM2835_SPI_BIT_ORDER_LSBFIRST": 1, - "LSB": 1, - "First": 2, - "BCM2835_SPI_BIT_ORDER_MSBFIRST": 1, - "MSB": 1, - "Specify": 2, - "bcm2835_spi_setDataMode": 2, - "BCM2835_SPI_MODE0": 1, - "CPOL": 4, - "CPHA": 4, - "BCM2835_SPI_MODE1": 1, - "BCM2835_SPI_MODE2": 1, - "BCM2835_SPI_MODE3": 1, - "bcm2835SPIMode": 2, - "bcm2835SPIChipSelect": 3, - "BCM2835_SPI_CS0": 1, - "BCM2835_SPI_CS1": 1, - "BCM2835_SPI_CS2": 1, - "CS1": 1, - "CS2": 1, - "asserted": 3, - "BCM2835_SPI_CS_NONE": 1, - "CS": 5, - "yourself": 1, - "bcm2835SPIClockDivider": 3, - "generate": 2, - "Figures": 1, - "below": 1, - "period": 1, - "frequency.": 1, - "divided": 2, - "nominal": 2, - "reported": 2, - "contrary": 1, - "may": 9, - "shown": 1, - "have": 4, - "confirmed": 1, - "measurement": 2, - "BCM2835_SPI_CLOCK_DIVIDER_65536": 1, - "us": 12, - "kHz": 10, - "BCM2835_SPI_CLOCK_DIVIDER_32768": 1, - "BCM2835_SPI_CLOCK_DIVIDER_16384": 1, - "BCM2835_SPI_CLOCK_DIVIDER_8192": 1, - "/51757813kHz": 1, - "BCM2835_SPI_CLOCK_DIVIDER_4096": 1, - "BCM2835_SPI_CLOCK_DIVIDER_2048": 1, - "BCM2835_SPI_CLOCK_DIVIDER_1024": 1, - "BCM2835_SPI_CLOCK_DIVIDER_512": 1, - "BCM2835_SPI_CLOCK_DIVIDER_256": 1, - "BCM2835_SPI_CLOCK_DIVIDER_128": 1, - "ns": 9, - "BCM2835_SPI_CLOCK_DIVIDER_64": 1, - "BCM2835_SPI_CLOCK_DIVIDER_32": 1, - "BCM2835_SPI_CLOCK_DIVIDER_16": 1, - "BCM2835_SPI_CLOCK_DIVIDER_8": 1, - "BCM2835_SPI_CLOCK_DIVIDER_4": 1, - "BCM2835_SPI_CLOCK_DIVIDER_2": 1, - "fastest": 1, - "BCM2835_SPI_CLOCK_DIVIDER_1": 1, - "same": 3, - "/65536": 1, - "BCM2835_BSC_C": 1, - "BCM2835_BSC_S": 1, - "BCM2835_BSC_DLEN": 1, - "BCM2835_BSC_A": 1, - "Slave": 1, - "BCM2835_BSC_FIFO": 1, - "BCM2835_BSC_DIV": 1, - "BCM2835_BSC_DEL": 1, - "Delay": 4, - "BCM2835_BSC_CLKT": 1, - "Stretch": 2, - "Timeout": 2, - "BCM2835_BSC_C_I2CEN": 1, - "BCM2835_BSC_C_INTR": 1, - "BCM2835_BSC_C_INTT": 1, - "BCM2835_BSC_C_INTD": 1, - "DONE": 2, - "BCM2835_BSC_C_ST": 1, - "Start": 4, + "FFFF": 1, + "SetEntropySource": 2, + "source": 12, + "SetReturnAddressLocationResolver": 3, + "ReturnAddressLocationResolver": 2, + "resolver": 3, + "StackFrame": 1, + "Random": 3, + "Context*": 4, + "context": 8, + "IsGlobalContext": 1, + "ByteArray*": 1, + "seed": 2, + "random_seed": 1, + "": 1, + "GetDataStartAddress": 1, + "RandomPrivate": 2, + "private_random_seed": 1, + "IdleNotification": 3, + "hint": 3, + "FLAG_use_idle_notification": 1, + "HEAP": 1, + "AddCallCompletedCallback": 2, + "CallCompletedCallback": 4, + "callback": 7, + "Lazy": 1, + "init.": 1, "new": 13, - "BCM2835_BSC_C_CLEAR_1": 1, - "BCM2835_BSC_C_CLEAR_2": 1, - "BCM2835_BSC_C_READ": 1, - "BCM2835_BSC_S_CLKT": 1, - "stretch": 1, - "timeout": 5, - "BCM2835_BSC_S_ERR": 1, - "ACK": 1, - "error": 8, - "BCM2835_BSC_S_RXF": 1, - "BCM2835_BSC_S_TXE": 1, - "TXE": 1, - "BCM2835_BSC_S_RXD": 1, - "BCM2835_BSC_S_TXD": 1, - "BCM2835_BSC_S_RXR": 1, - "BCM2835_BSC_S_TXW": 1, - "TXW": 1, - "writing": 2, - "BCM2835_BSC_S_DONE": 1, - "BCM2835_BSC_S_TA": 1, - "BCM2835_BSC_FIFO_SIZE": 1, - "size": 13, - "bcm2835I2CClockDivider": 3, - "BCM2835_I2C_CLOCK_DIVIDER_2500": 1, - "BCM2835_I2C_CLOCK_DIVIDER_626": 1, - "BCM2835_I2C_CLOCK_DIVIDER_150": 1, - "reset": 1, - "BCM2835_I2C_CLOCK_DIVIDER_148": 1, - "bcm2835I2CReasonCodes": 5, - "reason": 4, - "codes": 1, - "BCM2835_I2C_REASON_OK": 1, - "Success": 1, - "BCM2835_I2C_REASON_ERROR_NACK": 1, - "Received": 4, - "NACK": 1, - "BCM2835_I2C_REASON_ERROR_CLKT": 1, - "BCM2835_I2C_REASON_ERROR_DATA": 1, - "sent": 1, - "/": 16, - "BCM2835_ST_CS": 1, - "Control/Status": 1, - "BCM2835_ST_CLO": 1, - "Counter": 4, - "Lower": 2, - "BCM2835_ST_CHI": 1, - "Upper": 1, - "BCM2835_PWM_CONTROL": 1, - "BCM2835_PWM_STATUS": 1, - "BCM2835_PWM0_RANGE": 1, - "BCM2835_PWM0_DATA": 1, - "BCM2835_PWM1_RANGE": 1, - "BCM2835_PWM1_DATA": 1, - "BCM2835_PWMCLK_CNTL": 1, - "BCM2835_PWMCLK_DIV": 1, - "BCM2835_PWM1_MS_MODE": 1, - "Run": 4, - "MS": 2, - "BCM2835_PWM1_USEFIFO": 1, - "BCM2835_PWM1_REVPOLAR": 1, - "Reverse": 2, - "polarity": 3, - "BCM2835_PWM1_OFFSTATE": 1, - "Ouput": 2, - "BCM2835_PWM1_REPEATFF": 1, - "Repeat": 2, - "last": 6, - "empty": 2, - "BCM2835_PWM1_SERIAL": 1, - "serial": 2, - "BCM2835_PWM1_ENABLE": 1, - "Channel": 2, - "BCM2835_PWM0_MS_MODE": 1, - "BCM2835_PWM0_USEFIFO": 1, - "BCM2835_PWM0_REVPOLAR": 1, - "BCM2835_PWM0_OFFSTATE": 1, - "BCM2835_PWM0_REPEATFF": 1, - "BCM2835_PWM0_SERIAL": 1, - "BCM2835_PWM0_ENABLE": 1, - "x": 86, - "#endif": 110, - "#ifdef": 19, - "__cplusplus": 12, - "init": 2, - "Library": 1, - "management": 1, - "intialise": 1, - "Initialise": 1, - "opening": 1, - "getting": 1, - "internal": 47, - "device": 7, - "call": 4, - "successfully": 1, - "before": 7, - "bcm2835_set_debug": 2, - "fails": 1, - "returning": 1, - "result": 8, - "crashes": 1, - "failures.": 1, - "Prints": 1, - "messages": 1, - "stderr": 1, - "case": 34, - "errors.": 1, - "successful": 2, - "else": 58, - "int": 218, - "Close": 1, - "deallocating": 1, - "allocated": 2, - "closing": 3, - "Sets": 24, - "debug": 6, - "prevents": 1, - "makes": 1, - "print": 5, - "out": 5, - "what": 2, - "would": 2, - "do": 13, - "rather": 2, - "causes": 1, - "normal": 1, - "operation.": 2, - "Call": 2, - "param": 72, - "]": 292, - "level.": 3, - "uint8_t": 43, - "lowlevel": 2, - "provide": 1, - "generally": 1, - "Reads": 5, - "done": 3, - "twice": 3, - "therefore": 6, - "always": 3, - "safe": 4, - "precautions": 3, - "correct": 3, - "paddr": 10, - "from.": 6, - "etc.": 5, - "sa": 30, - "uint32_t*": 7, - "without": 3, - "within": 4, - "occurred": 2, - "since.": 2, - "bcm2835_peri_read_nb": 1, - "Writes": 2, - "write": 8, - "bcm2835_peri_write_nb": 1, - "Alters": 1, - "regsiter.": 1, - "valu": 1, - "alters": 1, - "deines": 1, - "according": 1, - "value.": 2, - "All": 1, - "unaffected.": 1, - "Use": 8, - "alter": 2, - "subset": 1, - "register.": 3, - "masked": 2, - "mask.": 1, - "Bitmask": 1, - "altered": 1, - "gpio": 1, - "interface.": 3, - "input": 12, - "output": 21, - "state.": 1, - "given": 16, - "configures": 1, - "RPI_GPIO_P1_*": 21, - "Mode": 1, - "BCM2835_GPIO_FSEL_*": 1, - "specified": 27, - "HIGH.": 2, - "bcm2835_gpio_write": 3, - "bcm2835_gpio_set": 1, - "LOW.": 5, - "bcm2835_gpio_clr": 1, - "first": 13, - "Mask": 6, - "affect.": 4, - "eg": 5, - "returns": 4, - "either": 4, - "Works": 1, - "whether": 4, - "output.": 1, - "bcm2835_gpio_lev": 1, - "Status.": 7, - "Tests": 1, - "detected": 7, - "requested": 1, - "flag": 3, - "bcm2835_gpio_set_eds": 2, - "status": 1, - "th": 1, - "true.": 2, - "bcm2835_gpio_eds": 1, - "effect": 3, - "clearing": 1, - "flag.": 1, - "afer": 1, - "seeing": 1, - "rising": 3, - "sets": 8, - "GPRENn": 2, - "synchronous": 2, - "detection.": 2, - "signal": 4, - "sampled": 6, - "looking": 2, - "pattern": 2, - "signal.": 2, - "suppressing": 2, - "glitches.": 2, - "Disable": 6, - "Asynchronous": 6, - "incoming": 2, - "As": 2, - "edges": 2, - "very": 2, - "short": 5, - "duration": 2, - "detected.": 2, - "bcm2835_gpio_pudclk": 3, - "resistor": 1, - "However": 3, - "convenient": 2, - "bcm2835_gpio_set_pud": 4, - "pud": 4, - "desired": 7, - "mode.": 4, - "One": 3, - "BCM2835_GPIO_PUD_*": 2, - "Clocks": 3, - "earlier": 1, - "remove": 2, - "group.": 2, - "BCM2835_PAD_GROUP_GPIO_*": 2, - "BCM2835_PAD_*": 2, - "bcm2835_gpio_set_pad": 1, - "Delays": 3, - "milliseconds.": 1, - "Uses": 4, - "CPU": 5, - "until": 1, - "up.": 1, - "mercy": 2, - "From": 2, - "interval": 4, - "req": 2, - "exact": 2, - "multiple": 2, - "granularity": 2, - "rounded": 2, - "next": 9, - "multiple.": 2, - "Furthermore": 2, - "sleep": 2, - "completes": 2, - "still": 3, - "becomes": 2, - "free": 4, - "once": 5, - "again": 2, - "execute": 3, - "thread.": 2, - "millis": 2, - "milliseconds": 1, - "unsigned": 22, - "microseconds.": 2, - "combination": 2, - "busy": 2, - "wait": 2, - "timers": 1, - "less": 1, - "microseconds": 6, - "Timer.": 1, - "RaspberryPi": 1, - "Your": 1, - "mileage": 1, - "vary.": 1, - "micros": 5, - "uint64_t": 8, - "required": 2, - "bcm2835_gpio_write_mask": 1, - "clocking": 1, - "spi": 1, - "let": 2, - "device.": 2, - "operations.": 4, - "Forces": 2, - "ALT0": 2, - "funcitons": 1, - "complete": 3, - "End": 2, - "returned": 5, - "INPUT": 2, - "behaviour.": 2, - "NOTE": 1, - "effect.": 1, - "SPI0.": 1, - "Defaults": 1, - "BCM2835_SPI_BIT_ORDER_*": 1, - "speed.": 2, - "BCM2835_SPI_CLOCK_DIVIDER_*": 1, - "bcm2835_spi_setClockDivider": 1, - "uint16_t": 2, - "polariy": 1, - "phase": 1, - "BCM2835_SPI_MODE*": 1, - "bcm2835_spi_transfer": 5, - "made": 1, - "selected": 13, - "during": 4, - "transfer.": 4, - "cs": 4, - "activate": 1, - "slave.": 7, - "BCM2835_SPI_CS*": 1, - "bcm2835_spi_chipSelect": 4, - "occurs": 1, - "currently": 12, - "active.": 1, - "transfers": 1, - "happening": 1, - "complement": 1, - "inactive": 1, - "affect": 1, - "active": 3, - "Whether": 1, - "bcm2835_spi_setChipSelectPolarity": 1, - "Transfers": 6, - "byte": 6, - "Asserts": 3, - "simultaneously": 3, - "clocks": 2, - "MISO.": 2, - "Returns": 2, - "polled": 2, - "Peripherls": 2, - "len": 15, - "slave": 8, - "placed": 1, - "rbuf.": 1, - "rbuf": 3, - "long": 15, - "tbuf": 4, - "Buffer": 10, - "send.": 5, - "put": 1, - "buffer": 9, - "Number": 8, - "send/received": 2, - "char*": 24, - "bcm2835_spi_transfernb.": 1, - "replaces": 1, - "transmitted": 1, - "buffer.": 1, - "buf": 14, - "replace": 1, - "contents": 3, - "eh": 2, - "bcm2835_spi_writenb": 1, - "i2c": 1, - "Philips": 1, - "bus/interface": 1, - "January": 1, - "SCL": 2, - "bcm2835_i2c_end": 3, - "bcm2835_i2c_begin": 1, - "address.": 2, - "addr": 2, - "bcm2835_i2c_setSlaveAddress": 4, - "BCM2835_I2C_CLOCK_DIVIDER_*": 1, - "bcm2835_i2c_setClockDivider": 2, - "converting": 1, - "baudrate": 4, - "parameter": 1, - "equivalent": 1, - "divider.": 1, - "standard": 2, - "khz": 1, - "corresponds": 1, - "its": 1, - "driver.": 1, - "Of": 1, - "course": 2, - "nothing": 1, - "driver": 1, - "const": 172, - "*": 183, - "receive.": 2, - "received.": 2, - "Allows": 2, - "slaves": 1, - "require": 3, - "repeated": 1, - "start": 12, - "prior": 1, - "stop": 1, - "set.": 1, - "popular": 1, - "MPL3115A2": 1, - "pressure": 1, - "temperature": 1, - "sensor.": 1, - "Note": 1, - "combined": 1, - "better": 1, - "choice.": 1, - "Will": 1, - "regaddr": 2, - "containing": 2, - "bcm2835_i2c_read_register_rs": 1, - "st": 1, - "delays": 1, - "Counter.": 1, - "bcm2835_st_read": 1, - "offset.": 1, - "offset_micros": 2, - "Offset": 1, - "bcm2835_st_delay": 1, - "@example": 5, - "blink.c": 1, - "Blinks": 1, - "off": 1, - "input.c": 1, - "event.c": 1, - "Shows": 3, - "how": 3, - "spi.c": 1, - "spin.c": 1, - "#pragma": 3, - "": 4, - "": 4, - "": 2, - "namespace": 38, - "std": 53, - "DEFAULT_DELIMITER": 1, - "CsvStreamer": 5, - "private": 16, - "ofstream": 1, - "File": 1, - "stream": 6, - "vector": 16, - "row_buffer": 1, - "stores": 3, - "row": 12, - "flushed/written": 1, - "fields": 4, - "columns": 2, - "rows": 3, - "records": 2, - "including": 2, - "delimiter": 2, - "Delimiter": 1, - "character": 10, - "comma": 2, - "string": 24, - "sanitize": 1, - "ready": 1, - "Empty": 1, - "CSV": 4, - "streamer...": 1, - "Same": 1, - "...": 1, - "Opens": 3, - "path/name": 3, - "Ensures": 1, - "closed": 1, - "saved": 1, - "delimiting": 1, - "add_field": 1, - "line": 11, - "adds": 1, - "field": 5, - "save_fields": 1, - "save": 1, - "writes": 2, - "append": 8, - "Appends": 5, - "quoted": 1, - "leading/trailing": 1, - "spaces": 3, - "trimmed": 1, - "bool": 111, - "Like": 1, - "specify": 1, - "trim": 2, - "keep": 1, - "float": 74, + "length": 10, + "at": 20, + "Add": 1, + "RemoveCallCompletedCallback": 2, + "Remove": 1, + "FireCallCompletedCallback": 2, + "HandleScopeImplementer*": 1, + "handle_scope_implementer": 5, + "CallDepthIsZero": 1, + "IncrementCallDepth": 1, + "DecrementCallDepth": 1, + "typedef": 50, + "union": 1, "double": 25, - "writeln": 1, - "Flushes": 1, - "Saves": 1, - "closes": 1, - "field_count": 1, - "Gets": 2, - "row_count": 1, - "": 1, - "": 1, - "": 2, - "static": 263, - "Env": 13, - "*env_instance": 1, - "NULL": 109, - "*Env": 1, - "instance": 4, - "env_instance": 3, - "QObject": 2, - "QCoreApplication": 1, - "parse": 3, - "**envp": 1, - "**env": 1, - "**": 2, - "QString": 20, - "envvar": 2, - "name": 25, - "indexOfEquals": 5, - "env": 3, - "envp": 4, - "*env": 1, - "envvar.indexOf": 1, - "continue": 2, - "envvar.left": 1, - "envvar.mid": 1, - "m_map.insert": 1, - "QVariantMap": 3, - "asVariantMap": 2, - "m_map": 2, - "ENV_H": 3, - "": 1, - "Q_OBJECT": 1, - "*instance": 1, - "BOOST_ASIO_DETAIL_IMPL_EPOLL_REACTOR_IPP": 3, - "#if": 63, - "defined": 49, - "_MSC_VER": 7, - "&&": 29, - "": 1, - "BOOST_ASIO_HAS_EPOLL": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "BOOST_ASIO_HAS_TIMERFD": 19, - "": 1, - "boost": 18, - "asio": 14, - "detail": 5, - "epoll_reactor": 40, - "io_service": 6, - "service_base": 1, - "": 1, - "io_service_": 1, - "use_service": 1, - "": 1, - "mutex_": 13, - "interrupter_": 5, - "epoll_fd_": 20, - "do_epoll_create": 3, - "timer_fd_": 21, - "do_timerfd_create": 3, - "shutdown_": 10, - "epoll_event": 10, - "ev": 21, - "ev.events": 13, - "EPOLLIN": 8, - "EPOLLERR": 8, - "EPOLLET": 5, - "ev.data.ptr": 10, - "epoll_ctl": 12, - "EPOLL_CTL_ADD": 7, - "interrupter_.read_descriptor": 3, - "interrupter_.interrupt": 2, - "shutdown_service": 1, - "mutex": 16, - "scoped_lock": 16, - "lock": 5, - "lock.unlock": 1, - "op_queue": 6, - "": 6, - "ops": 10, - "descriptor_state*": 6, - "registered_descriptors_.first": 2, - "i": 106, - "max_ops": 6, - "ops.push": 5, - "op_queue_": 12, - "registered_descriptors_.free": 2, - "timer_queues_.get_all_timers": 1, - "io_service_.abandon_operations": 1, - "fork_service": 1, - "fork_event": 1, - "fork_ev": 2, - "fork_child": 1, - "interrupter_.recreate": 1, - "update_timeout": 2, - "descriptors_lock": 3, - "registered_descriptors_mutex_": 3, - "next_": 3, - "registered_events_": 8, - "descriptor_": 5, - "error_code": 4, - "ec": 6, - "errno": 10, - "get_system_category": 3, - "throw_error": 2, - "init_task": 1, - "io_service_.init_task": 1, - "register_descriptor": 1, - "socket_type": 7, - "descriptor": 15, - "per_descriptor_data": 8, - "descriptor_data": 60, - "allocate_descriptor_state": 3, - "descriptor_lock": 7, - "reactor_": 7, - "EPOLLHUP": 3, - "EPOLLPRI": 3, - "register_internal_descriptor": 1, - "op_type": 8, - "reactor_op*": 5, - "op": 28, - ".push": 2, - "move_descriptor": 1, - "target_descriptor_data": 2, - "source_descriptor_data": 3, - "start_op": 1, - "is_continuation": 5, - "allow_speculative": 2, - "ec_": 4, - "bad_descriptor": 1, - "post_immediate_completion": 2, - ".empty": 5, - "read_op": 1, - "||": 19, - "except_op": 1, - "perform": 2, - "descriptor_lock.unlock": 4, - "io_service_.post_immediate_completion": 2, - "write_op": 2, - "EPOLLOUT": 4, - "EPOLL_CTL_MOD": 3, - "io_service_.work_started": 2, - "cancel_ops": 1, - ".front": 3, - "operation_aborted": 2, - ".pop": 3, - "io_service_.post_deferred_completions": 3, - "deregister_descriptor": 1, - "EPOLL_CTL_DEL": 2, - "free_descriptor_state": 3, - "deregister_internal_descriptor": 1, - "get_timeout": 5, - "events": 8, - "num_events": 2, - "epoll_wait": 1, - "check_timers": 6, - "#else": 35, - "void*": 2, - "ptr": 6, - ".data.ptr": 1, - "static_cast": 14, - "": 2, - "set_ready_events": 1, - ".events": 1, - "common_lock": 1, - "timer_queues_.get_ready_timers": 1, - "itimerspec": 5, - "new_timeout": 6, - "old_timeout": 4, - "flags": 4, - "timerfd_settime": 2, - "EPOLL_CLOEXEC": 4, - "fd": 15, - "epoll_create1": 1, - "EINVAL": 4, - "ENOSYS": 1, - "epoll_create": 1, - "epoll_size": 1, - "fcntl": 2, - "F_SETFD": 2, - "FD_CLOEXEC": 2, - "timerfd_create": 2, - "TFD_CLOEXEC": 1, - "registered_descriptors_.alloc": 1, - "do_add_timer_queue": 1, - "timer_queue_base": 2, - "queue": 4, - "timer_queues_.insert": 1, - "do_remove_timer_queue": 1, - "timer_queues_.erase": 1, - "timer_queues_.wait_duration_msec": 1, - "ts": 1, - "ts.it_interval.tv_sec": 1, - "ts.it_interval.tv_nsec": 1, - "usec": 5, - "timer_queues_.wait_duration_usec": 1, - "ts.it_value.tv_sec": 1, - "ts.it_value.tv_nsec": 1, - "TFD_TIMER_ABSTIME": 1, - "perform_io_cleanup_on_block_exit": 4, - "explicit": 5, - "epoll_reactor*": 2, + "double_value": 1, + "uint64_t": 8, + "uint64_t_value": 1, + "double_int_union": 2, + "Object*": 4, + "FillHeapNumberWithRandom": 2, + "heap_number": 4, "r": 38, - "first_op_": 3, - "ops_.empty": 1, - "ops_": 2, - "operation*": 4, - "descriptor_state": 5, - "operation": 2, - "do_complete": 2, - "perform_io": 2, - "mutex_.lock": 1, - "io_cleanup": 1, - "adopt_lock": 1, - "j": 10, - "io_cleanup.ops_.push": 1, - "break": 35, - "io_cleanup.first_op_": 2, - "io_cleanup.ops_.front": 1, - "io_cleanup.ops_.pop": 1, - "io_service_impl*": 1, - "owner": 3, - "size_t": 6, - "bytes_transferred": 2, - "": 1, - "": 1, - "Field": 2, - "Free": 1, - "Black": 1, - "White": 1, - "Illegal": 1, - "Player": 1, - "GDSDBREADER_H": 3, - "": 1, - "GDS_DIR": 1, - "LEVEL_ONE": 1, - "LEVEL_TWO": 1, - "LEVEL_THREE": 1, - "dbDataStructure": 2, - "label": 1, - "quint32": 3, - "depth": 1, - "userIndex": 1, - "QByteArray": 1, - "COMPRESSED": 1, - "optimize": 1, - "ram": 1, - "disk": 2, - "space": 2, - "decompressed": 1, - "quint64": 1, - "uniqueID": 1, - "QVector": 2, - "": 1, - "nextItems": 1, - "": 1, - "nextItemsIndices": 1, - "dbDataStructure*": 1, - "father": 1, - "fatherIndex": 1, - "noFatherRoot": 1, - "Used": 2, - "tell": 1, - "node": 1, - "root": 1, - "hasn": 1, - "argument": 1, - "list": 3, - "operator": 10, - "overload.": 1, - "friend": 10, - "myclass.label": 2, - "myclass.depth": 2, - "myclass.userIndex": 2, - "qCompress": 2, - "myclass.data": 4, - "myclass.uniqueID": 2, - "myclass.nextItemsIndices": 2, - "myclass.fatherIndex": 2, - "myclass.noFatherRoot": 2, - "myclass.fileName": 2, - "myclass.firstLineData": 4, - "myclass.linesNumbers": 2, - "QDataStream": 2, - "myclass": 1, - "//Don": 1, - "qUncompress": 2, - "": 2, - "main": 2, - "cout": 2, - "endl": 1, - "": 1, - "": 1, - "": 1, - "EC_KEY_regenerate_key": 1, - "EC_KEY": 3, - "*eckey": 2, - "BIGNUM": 9, - "*priv_key": 1, - "ok": 3, - "BN_CTX": 2, - "*ctx": 2, - "EC_POINT": 4, - "*pub_key": 1, - "eckey": 7, - "EC_GROUP": 2, - "*group": 2, - "EC_KEY_get0_group": 2, - "ctx": 26, - "BN_CTX_new": 2, - "goto": 156, - "err": 26, - "pub_key": 6, - "EC_POINT_new": 4, - "EC_POINT_mul": 3, - "priv_key": 2, - "EC_KEY_set_private_key": 1, - "EC_KEY_set_public_key": 2, - "EC_POINT_free": 4, - "BN_CTX_free": 2, - "ECDSA_SIG_recover_key_GFp": 3, - "ECDSA_SIG": 3, - "*ecsig": 1, - "*msg": 2, - "msglen": 2, - "recid": 3, - "ret": 24, - "*x": 1, - "*e": 1, - "*order": 1, - "*sor": 1, - "*eor": 1, - "*field": 1, - "*R": 1, - "*O": 1, - "*Q": 1, - "*rr": 1, - "*zero": 1, - "n": 28, - "BN_CTX_start": 1, - "BN_CTX_get": 8, - "EC_GROUP_get_order": 1, - "BN_copy": 1, - "BN_mul_word": 1, - "BN_add": 1, - "ecsig": 3, - "EC_GROUP_get_curve_GFp": 1, - "BN_cmp": 1, - "R": 6, - "EC_POINT_set_compressed_coordinates_GFp": 1, - "O": 5, - "EC_POINT_is_at_infinity": 1, - "Q": 5, - "EC_GROUP_get_degree": 1, - "e": 15, - "BN_bin2bn": 3, - "msg": 1, - "*msglen": 1, - "BN_rshift": 1, - "zero": 5, - "BN_zero": 1, - "BN_mod_sub": 1, - "rr": 4, - "BN_mod_inverse": 1, - "sor": 3, - "BN_mod_mul": 2, - "eor": 3, - "BN_CTX_end": 1, - "CKey": 26, - "SetCompressedPubKey": 4, - "EC_KEY_set_conv_form": 1, - "pkey": 14, - "POINT_CONVERSION_COMPRESSED": 1, - "fCompressedPubKey": 5, - "Reset": 5, - "EC_KEY_new_by_curve_name": 2, - "NID_secp256k1": 2, - "throw": 4, - "key_error": 6, - "fSet": 7, - "b": 57, - "EC_KEY_dup": 1, - "b.pkey": 2, - "b.fSet": 2, - "EC_KEY_copy": 1, - "hash": 20, - "vchSig": 18, - "nSize": 2, - "vchSig.clear": 2, - "vchSig.resize": 2, - "Shrink": 1, - "fit": 1, - "actual": 1, - "SignCompact": 2, - "uint256": 10, - "": 19, - "fOk": 3, - "*sig": 2, - "ECDSA_do_sign": 1, - "sig": 11, - "nBitsR": 3, - "BN_num_bits": 2, - "nBitsS": 3, - "nRecId": 4, - "<4;>": 1, - "keyRec": 5, - "1": 4, - "GetPubKey": 5, - "BN_bn2bin": 2, - "/8": 2, - "ECDSA_SIG_free": 2, - "SetCompactSignature": 2, - "vchSig.size": 2, - "nV": 6, - "<27>": 1, - "ECDSA_SIG_new": 1, - "EC_KEY_free": 1, - "Verify": 2, - "ECDSA_verify": 1, - "VerifyCompact": 2, - "key": 23, - "key.SetCompactSignature": 1, - "key.GetPubKey": 1, - "IsValid": 4, - "fCompr": 3, - "CSecret": 4, - "secret": 2, - "GetSecret": 2, - "key2": 1, - "key2.SetSecret": 1, - "key2.GetPubKey": 1, + "random_bits": 2, + "const": 172, + "binary_million": 3, + "r.double_value": 3, + "r.uint64_t_value": 1, + "|": 40, + "HeapNumber": 1, + "cast": 7, + "set_value": 1, + "InitializeOncePerProcessImpl": 3, + "SetUp": 4, + "FLAG_crankshaft": 1, + "Serializer": 1, + "enabled": 4, + "CPU": 5, + "SupportsCrankshaft": 1, + "PostSetUp": 1, + "RuntimeProfiler": 1, + "GlobalSetUp": 1, + "FLAG_stress_compaction": 1, + "FLAG_force_marking_deque_overflows": 1, + "FLAG_gc_global": 1, + "FLAG_max_new_space_size": 1, + "kPageSizeBits": 1, + "SetUpCaches": 1, + "SetUpJSCallerSavedCodeData": 1, + "SamplerRegistry": 1, + "ExternalReference": 1, + "CallOnce": 1, + "#ifndef": 29, "BITCOIN_KEY_H": 2, + "#define": 343, "": 1, + "": 4, "": 1, + "EC_KEY": 3, + "definition": 3, + "class": 40, + "key_error": 6, + "public": 33, + "std": 53, "runtime_error": 2, + "explicit": 5, + "string": 24, "str": 2, "CKeyID": 5, "uint160": 8, + "in": 165, "CScriptID": 3, "CPubKey": 11, + "private": 16, + "vector": 16, "vchPubKey": 6, + "friend": 10, + "CKey": 26, "vchPubKeyIn": 2, + "operator": 10, + "a": 157, + "b": 57, "a.vchPubKey": 3, "b.vchPubKey": 3, "IMPLEMENT_SERIALIZE": 1, "READWRITE": 1, "GetID": 1, "Hash160": 1, + "uint256": 10, "GetHash": 1, "Hash": 1, "vchPubKey.begin": 1, "vchPubKey.end": 1, + "IsValid": 4, "vchPubKey.size": 3, "IsCompressed": 2, "Raw": 1, + "unsigned": 22, "secure_allocator": 2, "CPrivKey": 3, + "CSecret": 4, + "protected": 4, "EC_KEY*": 1, + "pkey": 14, + "fSet": 7, + "fCompressedPubKey": 5, + "SetCompressedPubKey": 4, + "Reset": 5, "IsNull": 1, "MakeNewKey": 1, "fCompressed": 3, @@ -12239,569 +10383,72 @@ "vchPrivKey": 1, "SetSecret": 1, "vchSecret": 1, + "GetSecret": 2, "GetPrivKey": 1, "SetPubKey": 1, + "GetPubKey": 5, "Sign": 2, - "LIBCANIH": 2, - "": 1, - "": 1, - "int64": 1, - "//#define": 1, - "DEBUG": 5, - "dout": 2, - "cerr": 1, - "libcanister": 2, - "//the": 8, - "canmem": 22, - "object": 3, - "generic": 1, - "container": 2, - "commonly": 1, - "//throughout": 1, - "canister": 14, - "framework": 1, - "hold": 1, - "uncertain": 1, - "//length": 1, - "contain": 1, - "null": 3, - "bytes.": 1, - "raw": 2, - "absolute": 1, - "length": 10, - "//creates": 3, - "unallocated": 1, - "allocsize": 1, - "blank": 1, - "strdata": 1, - "//automates": 1, - "creation": 1, - "limited": 2, - "canmems": 1, - "//cleans": 1, - "zeromem": 1, - "//overwrites": 2, - "fragmem": 1, - "notation": 1, - "countlen": 1, - "//counts": 1, - "strings": 1, - "//removes": 1, - "nulls": 1, - "//returns": 2, - "singleton": 2, - "//contains": 2, - "caninfo": 2, - "path": 8, - "//physical": 1, - "internalname": 1, - "//a": 1, - "numfiles": 1, - "files": 6, - "//necessary": 1, - "type": 7, - "canfile": 7, - "//this": 1, - "holds": 2, - "//canister": 1, - "canister*": 1, - "parent": 1, - "//internal": 1, - "id": 4, - "//use": 1, - "own.": 1, - "newline": 2, - "delimited": 2, - "container.": 1, - "TOC": 1, - "info": 2, - "general": 1, - "canfiles": 1, - "recommended": 1, - "modify": 1, - "//these": 1, - "enforced.": 1, - "canfile*": 1, - "readonly": 3, - "//if": 1, - "routines": 1, - "anything": 1, - "//maximum": 1, - "//time": 1, - "whatever": 1, - "suits": 1, - "application.": 1, - "cachemax": 2, - "cachecnt": 1, - "//number": 1, - "cache": 2, - "modified": 3, - "//both": 1, - "initialize": 1, - "fspath": 3, - "//destroys": 1, - "flushing": 1, - "modded": 1, - "//open": 1, - "//does": 1, - "exist": 2, - "//close": 1, - "flush": 1, - "clean": 2, - "//deletes": 1, - "inside": 1, - "delFile": 1, - "//pulls": 1, - "getFile": 1, - "otherwise": 1, - "overwrites": 1, - "succeeded": 2, - "writeFile": 2, - "//get": 1, - "//list": 1, - "paths": 1, - "getTOC": 1, - "//brings": 1, - "back": 1, - "limit": 1, - "//important": 1, - "sCFID": 2, - "CFID": 2, - "avoid": 1, - "uncaching": 1, - "//really": 1, - "just": 2, - "internally": 1, - "harm.": 1, - "cacheclean": 1, - "dFlush": 1, - "Q_OS_LINUX": 2, - "": 1, - "QT_VERSION": 1, - "QT_VERSION_CHECK": 1, - "#error": 9, - "Something": 1, - "wrong": 1, - "setup.": 1, - "report": 3, - "mailing": 1, - "argc": 2, - "char**": 2, - "argv": 2, - "google_breakpad": 1, - "ExceptionHandler": 1, - "Utils": 4, - "exceptionHandler": 2, - "qInstallMsgHandler": 1, - "messageHandler": 2, - "QApplication": 1, - "app": 1, - "STATIC_BUILD": 1, - "Q_INIT_RESOURCE": 2, - "WebKit": 1, - "InspectorBackendStub": 1, - "app.setWindowIcon": 1, - "QIcon": 1, - "app.setApplicationName": 1, - "app.setOrganizationName": 1, - "app.setOrganizationDomain": 1, - "app.setApplicationVersion": 1, - "PHANTOMJS_VERSION_STRING": 1, - "Phantom": 1, - "phantom": 1, - "phantom.execute": 1, - "app.exec": 1, - "phantom.returnValue": 1, - "__OG_MATH_INL__": 2, - "og": 1, - "OG_INLINE": 41, - "Math": 41, - "Abs": 1, - "MASK_SIGNED": 2, - "y": 16, - "Fabs": 1, - "f": 104, - "uInt": 1, - "*pf": 1, - "reinterpret_cast": 8, - "": 1, - "pf": 1, - "fabsf": 1, - "Round": 1, - "floorf": 2, - "Floor": 1, - "Ceil": 1, - "ceilf": 1, - "Ftoi": 1, - "@todo": 1, - "note": 1, - "sse": 1, - "cvttss2si": 2, - "OG_ASM_MSVC": 4, - "OG_FTOI_USE_SSE": 2, - "SysInfo": 2, - "cpu.general.SSE": 2, - "__asm": 8, - "eax": 5, - "mov": 6, - "fld": 4, - "fistp": 3, - "//__asm": 3, - "O_o": 3, - "#elif": 7, - "OG_ASM_GNU": 4, - "__asm__": 4, - "__volatile__": 4, - "cast": 7, - "why": 3, - "did": 3, - "": 3, - "FtoiFast": 2, - "Ftol": 1, - "": 1, - "Fmod": 1, - "numerator": 2, - "denominator": 2, - "fmodf": 1, - "Modf": 2, - "modff": 2, - "Sqrt": 2, - "sqrtf": 2, - "InvSqrt": 1, - "OG_ASSERT": 4, - "RSqrt": 1, - "g": 2, - "*reinterpret_cast": 3, - "guess": 1, - "f375a86": 1, - "": 1, - "Newtons": 1, - "calculation": 1, - "Log": 1, - "logf": 3, - "Log2": 1, - "INV_LN_2": 1, - "Log10": 1, - "INV_LN_10": 1, - "Pow": 1, - "exp": 2, - "powf": 1, - "Exp": 1, - "expf": 1, - "IsPowerOfTwo": 4, - "faster": 3, - "two": 2, - "known": 1, - "methods": 2, - "moved": 1, - "beginning": 1, - "HigherPowerOfTwo": 4, - "LowerPowerOfTwo": 2, - "FloorPowerOfTwo": 1, - "CeilPowerOfTwo": 1, - "ClosestPowerOfTwo": 1, - "Digits": 1, - "digits": 6, - "step": 3, - "Sin": 2, - "sinf": 1, - "ASin": 1, - "<=>": 2, - "0f": 2, - "HALF_PI": 2, - "asinf": 1, - "Cos": 2, - "cosf": 1, - "ACos": 1, - "PI": 1, - "acosf": 1, - "Tan": 1, - "tanf": 1, - "ATan": 2, - "atanf": 1, - "f1": 2, - "f2": 2, - "atan2f": 1, - "SinCos": 1, - "sometimes": 1, - "assembler": 1, - "waaayy": 1, - "_asm": 1, - "fsincos": 1, - "ecx": 2, - "edx": 2, - "fstp": 2, - "dword": 2, - "asm": 1, - "Deg2Rad": 1, - "DEG_TO_RAD": 1, - "Rad2Deg": 1, - "RAD_TO_DEG": 1, - "Square": 1, - "v": 10, - "Cube": 1, - "Sec2Ms": 1, - "sec": 2, - "Ms2Sec": 1, - "ms": 2, - "NINJA_METRICS_H_": 3, - "int64_t.": 1, - "Metrics": 2, - "module": 1, - "dumps": 1, - "stats": 2, - "actions.": 1, - "To": 1, - "METRIC_RECORD": 4, - "below.": 1, - "metrics": 2, - "hit": 1, - "path.": 2, - "count": 1, - "Total": 1, - "spent": 1, - "int64_t": 3, - "sum": 1, - "scoped": 1, - "recording": 1, - "metric": 2, - "across": 1, - "body": 1, - "macro.": 1, - "ScopedMetric": 4, - "Metric*": 4, - "metric_": 1, - "Timestamp": 1, - "started.": 1, - "Value": 24, - "platform": 2, - "dependent.": 1, - "start_": 1, - "prints": 1, - "report.": 1, - "NewMetric": 2, - "Print": 2, - "summary": 1, - "stdout.": 1, - "Report": 1, - "": 1, - "metrics_": 1, - "Get": 1, - "relative": 2, - "epoch.": 1, - "Epoch": 1, - "varies": 1, - "between": 1, - "platforms": 1, - "useful": 1, - "measuring": 1, - "elapsed": 1, - "time.": 1, - "GetTimeMillis": 1, - "simple": 1, - "stopwatch": 1, - "seconds": 1, - "Restart": 3, - "called.": 1, - "Stopwatch": 2, - "started_": 4, - "Seconds": 1, - "call.": 1, - "Elapsed": 1, - "": 1, - "primary": 1, - "metrics.": 1, - "top": 1, - "recorded": 1, - "metrics_h_metric": 2, - "g_metrics": 3, - "metrics_h_scoped": 1, - "Metrics*": 1, - "INTERNAL_SUPPRESS_PROTOBUF_FIELD_DEPRECATION": 1, - "": 1, - "": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "persons": 4, - "google": 72, - "protobuf": 72, - "Descriptor*": 3, - "Person_descriptor_": 6, - "GeneratedMessageReflection*": 1, - "Person_reflection_": 4, - "protobuf_AssignDesc_protocol_2dbuffer_2eproto": 4, - "protobuf_AddDesc_protocol_2dbuffer_2eproto": 6, - "FileDescriptor*": 1, - "DescriptorPool": 3, - "generated_pool": 2, - "FindFileByName": 1, - "GOOGLE_CHECK": 1, - "message_type": 1, - "Person_offsets_": 2, - "GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET": 3, - "Person": 65, - "name_": 30, - "GeneratedMessageReflection": 1, - "default_instance_": 8, - "_has_bits_": 14, - "_unknown_fields_": 5, - "MessageFactory": 3, - "generated_factory": 1, - "GOOGLE_PROTOBUF_DECLARE_ONCE": 1, - "protobuf_AssignDescriptors_once_": 2, - "inline": 39, - "protobuf_AssignDescriptorsOnce": 4, - "GoogleOnceInit": 1, - "protobuf_RegisterTypes": 2, - "InternalRegisterGeneratedMessage": 1, - "default_instance": 3, - "protobuf_ShutdownFile_protocol_2dbuffer_2eproto": 4, - "delete": 6, - "already_here": 3, - "GOOGLE_PROTOBUF_VERIFY_VERSION": 1, - "InternalAddGeneratedFile": 1, - "InternalRegisterGeneratedFile": 1, - "InitAsDefaultInstance": 3, - "OnShutdown": 1, - "StaticDescriptorInitializer_protocol_2dbuffer_2eproto": 2, - "static_descriptor_initializer_protocol_2dbuffer_2eproto_": 1, - "kNameFieldNumber": 2, - "Message": 7, - "SharedCtor": 4, - "MergeFrom": 9, - "_cached_size_": 7, - "const_cast": 3, - "string*": 11, - "kEmptyString": 12, - "SharedDtor": 3, - "SetCachedSize": 2, - "GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN": 2, - "GOOGLE_SAFE_CONCURRENT_WRITES_END": 2, - "*default_instance_": 1, - "Person*": 7, - "xffu": 3, - "has_name": 6, - "mutable_unknown_fields": 4, - "MergePartialFromCodedStream": 2, - "io": 4, - "CodedInputStream*": 2, - "DO_": 4, - "EXPRESSION": 2, - "uint32": 2, - "tag": 6, - "ReadTag": 1, - "switch": 3, - "WireFormatLite": 9, - "GetTagFieldNumber": 1, - "GetTagWireType": 2, - "WIRETYPE_LENGTH_DELIMITED": 1, - "ReadString": 1, - "mutable_name": 3, - "WireFormat": 10, - "VerifyUTF8String": 3, - ".data": 3, - ".length": 3, - "PARSE": 1, - "handle_uninterpreted": 2, - "ExpectAtEnd": 1, - "WIRETYPE_END_GROUP": 1, - "SkipField": 1, - "#undef": 3, - "SerializeWithCachedSizes": 2, - "CodedOutputStream*": 2, - "SERIALIZE": 2, - "WriteString": 1, - "unknown_fields": 7, - "SerializeUnknownFields": 1, - "uint8*": 4, - "SerializeWithCachedSizesToArray": 2, - "target": 6, - "WriteStringToArray": 1, - "SerializeUnknownFieldsToArray": 1, - "ByteSize": 2, - "total_size": 5, - "StringSize": 1, - "ComputeUnknownFieldsSize": 1, - "GOOGLE_CHECK_NE": 2, - "dynamic_cast_if_available": 1, - "": 12, - "ReflectionOps": 1, - "Merge": 1, - "from._has_bits_": 1, - "from.has_name": 1, - "set_name": 7, - "from.name": 1, - "from.unknown_fields": 1, - "CopyFrom": 5, - "IsInitialized": 3, - "Swap": 2, - "swap": 3, - "_unknown_fields_.Swap": 1, - "Metadata": 3, - "GetMetadata": 2, - "metadata": 2, - "metadata.descriptor": 1, - "metadata.reflection": 1, - "PROTOBUF_protocol_2dbuffer_2eproto__INCLUDED": 3, - "GOOGLE_PROTOBUF_VERSION": 1, - "generated": 2, - "newer": 2, - "protoc": 2, - "incompatible": 2, - "Protocol": 2, - "headers.": 3, - "update": 1, - "GOOGLE_PROTOBUF_MIN_PROTOC_VERSION": 1, - "older": 1, - "regenerate": 1, - "protoc.": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "virtual": 10, - "*this": 1, - "UnknownFieldSet": 2, - "UnknownFieldSet*": 1, - "GetCachedSize": 1, - "clear_name": 2, - "release_name": 2, - "set_allocated_name": 2, - "set_has_name": 7, - "clear_has_name": 5, - "mutable": 1, - "u": 9, - "*name_": 1, - "assign": 3, - "temp": 2, - "SWIG": 2, + "hash": 20, + "vchSig": 18, + "SignCompact": 2, + "SetCompactSignature": 2, + "Verify": 2, + "VerifyCompact": 2, + "#endif": 110, + "Bar": 2, + "*name": 6, + "hello": 2, "QSCICOMMAND_H": 2, + "#ifdef": 19, "__APPLE__": 4, + "extern": 72, "": 1, "": 2, "": 1, "QsciScintilla": 7, + "brief": 12, + "The": 50, "QsciCommand": 7, "represents": 1, + "an": 23, "editor": 1, "command": 9, + "that": 36, + "may": 9, + "have": 4, + "one": 73, + "or": 44, + "two": 2, "keys": 3, "bound": 4, + "to": 254, + "it.": 3, "Methods": 1, + "are": 36, "provided": 1, + "change": 3, + "the": 541, + "and": 118, + "remove": 2, + "key": 23, "binding.": 1, "Each": 1, + "has": 29, + "user": 3, "friendly": 2, "description": 3, + "of": 215, + "use": 37, + "mapping": 3, "dialogs.": 1, "QSCINTILLA_EXPORT": 2, + "This": 19, + "enum": 17, + "defines": 3, + "different": 5, "commands": 1, + "can": 21, + "be": 35, "assigned": 1, "key.": 1, "Command": 4, @@ -12822,6 +10469,7 @@ "view": 2, "LineScrollDown": 1, "SCI_LINESCROLLDOWN": 1, + "up": 18, "LineUp": 1, "SCI_LINEUP": 1, "LineUpExtend": 1, @@ -12830,13 +10478,16 @@ "SCI_LINEUPRECTEXTEND": 1, "LineScrollUp": 1, "SCI_LINESCROLLUP": 1, + "start": 12, "document.": 8, "ScrollToStart": 1, "SCI_SCROLLTOSTART": 1, + "end": 23, "ScrollToEnd": 1, "SCI_SCROLLTOEND": 1, "vertically": 1, "centre": 1, + "current": 26, "VerticalCentreCaret": 1, "SCI_VERTICALCENTRECARET": 1, "paragraph.": 4, @@ -12856,6 +10507,7 @@ "SCI_CHARLEFTEXTEND": 1, "CharLeftRectExtend": 1, "SCI_CHARLEFTRECTEXTEND": 1, + "right": 9, "CharRight": 1, "SCI_CHARRIGHT": 1, "CharRightExtend": 1, @@ -12871,14 +10523,17 @@ "SCI_WORDRIGHT": 1, "WordRightExtend": 1, "SCI_WORDRIGHTEXTEND": 1, + "previous": 6, "WordLeftEnd": 1, "SCI_WORDLEFTEND": 1, "WordLeftEndExtend": 1, "SCI_WORDLEFTENDEXTEND": 1, + "next": 9, "WordRightEnd": 1, "SCI_WORDRIGHTEND": 1, "WordRightEndExtend": 1, "SCI_WORDRIGHTENDEXTEND": 1, + "word": 7, "part.": 4, "WordPartLeft": 1, "SCI_WORDPARTLEFT": 1, @@ -12904,7 +10559,9 @@ "SCI_HOMEWRAP": 1, "HomeWrapExtend": 1, "SCI_HOMEWRAPEXTEND": 1, + "first": 13, "visible": 6, + "character": 10, "VCHome": 1, "SCI_VCHOME": 1, "VCHomeExtend": 1, @@ -12965,6 +10622,7 @@ "SCI_CLEAR": 1, "DeleteBack": 1, "SCI_DELETEBACK": 1, + "not": 29, "DeleteBackNotLine": 1, "SCI_DELETEBACKNOTLINE": 1, "left.": 2, @@ -12975,6 +10633,7 @@ "SCI_DELWORDRIGHT": 1, "DeleteWordRightEnd": 1, "SCI_DELWORDRIGHTEND": 1, + "line": 11, "DeleteLineLeft": 1, "SCI_DELLINELEFT": 1, "DeleteLineRight": 1, @@ -12995,9 +10654,11 @@ "Duplicate": 2, "LineDuplicate": 1, "SCI_LINEDUPLICATE": 1, + "Select": 49, "whole": 2, "SelectAll": 1, "SCI_SELECTALL": 1, + "selected": 13, "lines": 3, "MoveSelectedLinesUp": 1, "SCI_MOVESELECTEDLINESUP": 1, @@ -13019,12 +10680,14 @@ "SelectionCopy": 1, "SCI_COPY": 1, "Paste": 2, + "from": 91, "SCI_PASTE": 1, "Toggle": 1, "insert/overtype.": 1, "EditToggleOvertype": 1, "SCI_EDITTOGGLEOVERTYPE": 1, "Insert": 2, + "platform": 2, "dependent": 1, "newline.": 1, "Newline": 1, @@ -13033,6 +10696,7 @@ "Formfeed": 1, "SCI_FORMFEED": 1, "Indent": 1, + "level.": 3, "Tab": 1, "SCI_TAB": 1, "De": 1, @@ -13040,8 +10704,11 @@ "Backtab": 1, "SCI_BACKTAB": 1, "Cancel": 2, + "any": 23, + "operation.": 2, "SCI_CANCEL": 1, "Undo": 2, + "last": 6, "command.": 5, "SCI_UNDO": 1, "Redo": 2, @@ -13054,16 +10721,25 @@ "ZoomOut": 1, "SCI_ZOOMOUT": 1, "Return": 3, + "will": 15, "executed": 1, + "by": 53, + "this": 57, "instance.": 2, "scicmd": 2, "Execute": 1, + "execute": 3, "Binds": 2, + "If": 11, + "is": 102, + "then": 15, "binding": 3, "removed.": 2, "invalid": 5, "unchanged.": 1, "Valid": 1, + "control": 17, + "c": 72, "Key_Down": 1, "Key_Up": 1, "Key_Left": 1, @@ -13079,19 +10755,26 @@ "Key_Tab": 1, "Key_Return.": 1, "Keys": 1, + "modified": 3, + "with": 33, + "combination": 2, "SHIFT": 1, "CTRL": 1, "ALT": 1, "META.": 1, + "sa": 30, "setAlternateKey": 3, "validKey": 3, "setKey": 3, + "alternate": 7, "altkey": 3, "alternateKey": 3, + "currently": 12, "returned.": 4, "qkey": 2, "qaltkey": 2, "valid": 2, + "QString": 20, "QsciCommandSet": 1, "*qs": 1, "cmd": 1, @@ -13103,6 +10786,347 @@ "scikey": 1, "scialtkey": 1, "*descCmd": 1, + "GDSDBREADER_H": 3, + "": 1, + "GDS_DIR": 1, + "level": 10, + "LEVEL_ONE": 1, + "LEVEL_TWO": 1, + "LEVEL_THREE": 1, + "dbDataStructure": 2, + "label": 1, + "quint32": 3, + "depth": 1, + "userIndex": 1, + "QByteArray": 1, + "data": 26, + "COMPRESSED": 1, + "optimize": 1, + "ram": 1, + "disk": 2, + "space": 2, + "decompressed": 1, + "quint64": 1, + "uniqueID": 1, + "QVector": 2, + "": 1, + "nextItems": 1, + "": 1, + "nextItemsIndices": 1, + "dbDataStructure*": 1, + "father": 1, + "fatherIndex": 1, + "noFatherRoot": 1, + "Used": 2, + "tell": 1, + "node": 1, + "root": 1, + "so": 2, + "hasn": 1, + "t": 15, + "argument": 1, + "list": 3, + "overload.": 1, + "A": 7, + "stream": 6, + "myclass.label": 2, + "myclass.depth": 2, + "myclass.userIndex": 2, + "qCompress": 2, + "myclass.data": 4, + "myclass.uniqueID": 2, + "myclass.nextItemsIndices": 2, + "myclass.fatherIndex": 2, + "myclass.noFatherRoot": 2, + "myclass.fileName": 2, + "myclass.firstLineData": 4, + "myclass.linesNumbers": 2, + "QDataStream": 2, + "myclass": 1, + "//Don": 1, + "read": 21, + "it": 19, + "either": 4, + "qUncompress": 2, + "V8_V8_H_": 3, + "#if": 63, + "defined": 49, + "GOOGLE3": 2, + "DEBUG": 5, + "&&": 29, + "NDEBUG": 4, + "#undef": 3, + "#error": 9, + "both": 1, + "set": 18, + "Deserializer": 1, + "AllStatic": 1, + "IsRunning": 1, + "UseCrankshaft": 1, + "FatalProcessOutOfMemory": 1, + "char*": 24, + "location": 6, + "take_snapshot": 1, + "NilValue": 1, + "kNullValue": 1, + "kUndefinedValue": 1, + "EqualityKind": 1, + "kStrictEquality": 1, + "kNonStrictEquality": 1, + "__OG_MATH_INL__": 2, + "og": 1, + "OG_INLINE": 41, + "Math": 41, + "Abs": 1, + "MASK_SIGNED": 2, + "#else": 35, + "y": 16, + "x": 86, + "float": 74, + "Fabs": 1, + "f": 104, + "uInt": 1, + "*pf": 1, + "": 1, + "pf": 1, + "fabsf": 1, + "Round": 1, + "floorf": 2, + "Floor": 1, + "Ceil": 1, + "ceilf": 1, + "Ftoi": 1, + "@todo": 1, + "needs": 4, + "testing": 2, + "note": 1, + "sse": 1, + "function": 19, + "cvttss2si": 2, + "OG_ASM_MSVC": 4, + "OG_FTOI_USE_SSE": 2, + "SysInfo": 2, + "cpu.general.SSE": 2, + "__asm": 8, + "eax": 5, + "mov": 6, + "fld": 4, + "fistp": 3, + "//__asm": 3, + "do": 13, + "we": 10, + "need": 6, + "O_o": 3, + "#elif": 7, + "OG_ASM_GNU": 4, + "__asm__": 4, + "__volatile__": 4, + "instead": 4, + "sure": 6, + "why": 3, + "id": 4, + "did": 3, + "static_cast": 14, + "": 3, + "FtoiFast": 2, + "long": 15, + "Ftol": 1, + "": 1, + "Fmod": 1, + "numerator": 2, + "denominator": 2, + "fmodf": 1, + "Modf": 2, + "modff": 2, + "Sqrt": 2, + "sqrtf": 2, + "InvSqrt": 1, + "OG_ASSERT": 4, + "/": 16, + "RSqrt": 1, + "g": 2, + "*reinterpret_cast": 3, + "guess": 1, + "f375a86": 1, + "": 1, + "Newtons": 1, + "calculation": 1, + "Log": 1, + "logf": 3, + "Log2": 1, + "INV_LN_2": 1, + "Log10": 1, + "INV_LN_10": 1, + "Pow": 1, + "base": 8, + "exp": 2, + "powf": 1, + "Exp": 1, + "expf": 1, + "IsPowerOfTwo": 4, + "faster": 3, + "known": 1, + "methods": 2, + "check": 4, + "moved": 1, + "beginning": 1, + "HigherPowerOfTwo": 4, + "LowerPowerOfTwo": 2, + "FloorPowerOfTwo": 1, + "CeilPowerOfTwo": 1, + "ClosestPowerOfTwo": 1, + "high": 5, + "low": 5, + "Digits": 1, + "digits": 6, + "step": 3, + "while": 17, + "Sin": 2, + "sinf": 1, + "ASin": 1, + "<=>": 2, + "1": 4, + "0f": 2, + "HALF_PI": 2, + "asinf": 1, + "Cos": 2, + "cosf": 1, + "ACos": 1, + "PI": 1, + "acosf": 1, + "Tan": 1, + "tanf": 1, + "ATan": 2, + "atanf": 1, + "f1": 2, + "f2": 2, + "atan2f": 1, + "SinCos": 1, + "s": 26, + "sometimes": 1, + "assembler": 1, + "just": 2, + "waaayy": 1, + "_asm": 1, + "fsincos": 1, + "ecx": 2, + "edx": 2, + "fstp": 2, + "dword": 2, + "ptr": 6, + "asm": 1, + "than": 6, + "calling": 9, + "Deg2Rad": 1, + "DEG_TO_RAD": 1, + "Rad2Deg": 1, + "RAD_TO_DEG": 1, + "Square": 1, + "v": 10, + "Cube": 1, + "Sec2Ms": 1, + "sec": 2, + "Ms2Sec": 1, + "ms": 2, + "PROTOBUF_protocol_2dbuffer_2eproto__INCLUDED": 3, + "": 4, + "": 2, + "GOOGLE_PROTOBUF_VERSION": 1, + "file": 31, + "was": 6, + "generated": 2, + "newer": 2, + "version": 38, + "protoc": 2, + "which": 14, + "incompatible": 2, + "your": 12, + "Protocol": 2, + "Buffer": 10, + "headers.": 3, + "Please": 4, + "update": 1, + "GOOGLE_PROTOBUF_MIN_PROTOC_VERSION": 1, + "older": 1, + "regenerate": 1, + "protoc.": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "persons": 4, + "protobuf_AddDesc_protocol_2dbuffer_2eproto": 6, + "protobuf_AssignDesc_protocol_2dbuffer_2eproto": 4, + "protobuf_ShutdownFile_protocol_2dbuffer_2eproto": 4, + "Person": 65, + "google": 72, + "protobuf": 72, + "Message": 7, + "virtual": 10, + "inline": 39, + "CopyFrom": 5, + "*this": 1, + "UnknownFieldSet": 2, + "unknown_fields": 7, + "_unknown_fields_": 5, + "UnknownFieldSet*": 1, + "mutable_unknown_fields": 4, + "Descriptor*": 3, + "descriptor": 15, + "default_instance": 3, + "Swap": 2, + "Person*": 7, + "other": 17, + "New": 6, + "MergeFrom": 9, + "Clear": 18, + "ByteSize": 2, + "MergePartialFromCodedStream": 2, + "io": 4, + "CodedInputStream*": 2, + "input": 12, + "SerializeWithCachedSizes": 2, + "CodedOutputStream*": 2, + "output": 21, + "uint8*": 4, + "SerializeWithCachedSizesToArray": 2, + "GetCachedSize": 1, + "_cached_size_": 7, + "SharedCtor": 4, + "SharedDtor": 3, + "SetCachedSize": 2, + "size": 13, + "Metadata": 3, + "GetMetadata": 2, + "has_name": 6, + "clear_name": 2, + "kNameFieldNumber": 2, + "name": 25, + "set_name": 7, + "value": 50, + "size_t": 6, + "string*": 11, + "mutable_name": 3, + "release_name": 2, + "set_allocated_name": 2, + "set_has_name": 7, + "clear_has_name": 5, + "name_": 30, + "mutable": 1, + "uint32": 2, + "_has_bits_": 14, + "InitAsDefaultInstance": 3, + "default_instance_": 8, + "u": 9, + "kEmptyString": 12, + "clear": 3, + "*name_": 1, + "assign": 3, + "": 12, + "temp": 2, + "const_cast": 3, + "SWIG": 2, "QSCIPRINTER_H": 2, "": 1, "": 1, @@ -13114,10 +11138,13 @@ "sub": 2, "Qt": 1, "QPrinter": 3, + "able": 2, + "print": 5, "text": 5, "Scintilla": 2, "further": 1, "classed": 1, + "alter": 2, "layout": 1, "adding": 2, "headers": 3, @@ -13126,44 +11153,74 @@ "Constructs": 1, "printer": 1, "paint": 1, + "device": 7, + "mode": 24, + "mode.": 4, "PrinterMode": 1, "ScreenResolution": 1, "Destroys": 1, "Format": 1, + "page": 5, + "example": 3, + "before": 7, "drawn": 2, + "on": 55, "painter": 4, + "used": 17, "add": 3, "customised": 2, "graphics.": 2, "drawing": 4, "actually": 1, + "being": 4, + "rather": 2, "sized.": 1, + "must": 6, + "only": 6, + "called": 13, + "when": 22, + "true.": 2, "area": 5, "draw": 1, "text.": 3, + "should": 10, "necessary": 1, "reserve": 1, "By": 1, + "default": 14, + "relative": 2, "printable": 1, + "Use": 8, "setFullPage": 1, "because": 2, "printRange": 2, + "you": 29, + "want": 5, "try": 1, "over": 1, "pagenr": 2, + "number": 52, "numbered": 1, "formatPage": 1, "points": 2, + "each": 7, "font": 2, "printing.": 2, "setMagnification": 2, "magnification": 3, "mag": 2, + "Sets": 24, "printing": 2, "magnification.": 1, + "Print": 2, + "range": 3, + "instance": 4, "qsb.": 1, "negative": 2, "signifies": 2, + "returned": 5, + "there": 4, + "no": 7, "error.": 1, "*qsb": 1, "wrap": 4, @@ -13173,474 +11230,23 @@ "wrapMode": 2, "wmode.": 1, "wmode": 1, - "": 2, - "Gui": 1, + "": 2, "rpc_init": 1, "rpc_server_loop": 1, - "v8": 9, - "Scanner": 16, - "UnicodeCache*": 4, - "unicode_cache": 3, - "unicode_cache_": 10, - "octal_pos_": 5, - "Location": 14, - "harmony_scoping_": 4, - "harmony_modules_": 4, - "Initialize": 4, - "Utf16CharacterStream*": 3, - "source_": 7, - "Init": 3, - "has_line_terminator_before_next_": 9, - "SkipWhiteSpace": 4, - "Scan": 5, - "uc32": 19, - "ScanHexNumber": 2, - "expected_length": 4, - "ASSERT": 17, - "overflow": 1, - "c0_": 64, - "d": 8, - "HexValue": 2, - "PushBack": 8, - "Advance": 44, - "STATIC_ASSERT": 5, - "Token": 212, - "NUM_TOKENS": 1, - "one_char_tokens": 2, - "ILLEGAL": 120, - "LPAREN": 2, - "RPAREN": 2, - "COMMA": 2, - "COLON": 2, - "SEMICOLON": 2, - "CONDITIONAL": 2, - "LBRACK": 2, - "RBRACK": 2, - "LBRACE": 2, - "RBRACE": 2, - "BIT_NOT": 2, - "Next": 3, - "current_": 2, - "has_multiline_comment_before_next_": 5, - "token": 64, - "": 1, - "pos": 12, - "source_pos": 10, - "next_.token": 3, - "next_.location.beg_pos": 3, - "next_.location.end_pos": 4, - "current_.token": 4, - "IsByteOrderMark": 2, - "xFEFF": 1, - "xFFFE": 1, - "start_position": 2, - "IsWhiteSpace": 2, - "IsLineTerminator": 6, - "SkipSingleLineComment": 6, - "undo": 4, - "WHITESPACE": 6, - "SkipMultiLineComment": 3, - "ch": 5, - "ScanHtmlComment": 3, - "LT": 2, - "next_.literal_chars": 13, - "ScanString": 3, - "LTE": 1, - "ASSIGN_SHL": 1, - "SHL": 1, - "GTE": 1, - "ASSIGN_SAR": 1, - "ASSIGN_SHR": 1, - "SHR": 1, - "SAR": 1, - "GT": 1, - "EQ_STRICT": 1, - "EQ": 1, - "ASSIGN": 1, - "NE_STRICT": 1, - "NE": 1, - "INC": 1, - "ASSIGN_ADD": 1, - "ADD": 1, - "DEC": 1, - "ASSIGN_SUB": 1, - "SUB": 1, - "ASSIGN_MUL": 1, - "MUL": 1, - "ASSIGN_MOD": 1, - "MOD": 1, - "ASSIGN_DIV": 1, - "DIV": 1, - "AND": 1, - "ASSIGN_BIT_AND": 1, - "BIT_AND": 1, - "OR": 1, - "ASSIGN_BIT_OR": 1, - "BIT_OR": 1, - "ASSIGN_BIT_XOR": 1, - "BIT_XOR": 1, - "IsDecimalDigit": 2, - "ScanNumber": 3, - "PERIOD": 1, - "IsIdentifierStart": 2, - "ScanIdentifierOrKeyword": 2, - "EOS": 1, - "SeekForward": 4, - "current_pos": 4, - "ASSERT_EQ": 1, - "ScanEscape": 2, - "IsCarriageReturn": 2, - "IsLineFeed": 2, - "fall": 2, - "xxx": 1, - "immediately": 1, - "octal": 1, - "escape": 1, - "quote": 3, - "consume": 2, - "LiteralScope": 4, - "literal": 2, - "X": 2, - "E": 3, - "l": 1, - "w": 1, - "keyword": 1, - "Unescaped": 1, - "in_character_class": 2, - "AddLiteralCharAdvance": 3, - "literal.Complete": 2, - "ScanLiteralUnicodeEscape": 3, - "V8_SCANNER_H_": 3, - "ParsingFlags": 1, - "kNoParsingFlags": 1, - "kLanguageModeMask": 4, - "kAllowLazy": 1, - "kAllowNativesSyntax": 1, - "kAllowModules": 1, - "CLASSIC_MODE": 2, - "STRICT_MODE": 2, - "EXTENDED_MODE": 2, - "x16": 1, - "x36.": 1, - "Utf16CharacterStream": 3, - "pos_": 6, - "buffer_cursor_": 5, - "buffer_end_": 3, - "ReadBlock": 2, - "": 1, - "kEndOfInput": 2, - "code_unit_count": 7, - "buffered_chars": 2, - "SlowSeekForward": 2, - "int32_t": 1, - "code_unit": 6, - "uc16*": 3, - "UnicodeCache": 3, - "unibrow": 11, - "Utf8InputBuffer": 2, - "<1024>": 2, - "Utf8Decoder": 2, - "StaticResource": 2, - "": 2, - "utf8_decoder": 1, - "utf8_decoder_": 2, - "uchar": 4, - "kIsIdentifierStart.get": 1, - "IsIdentifierPart": 1, - "kIsIdentifierPart.get": 1, - "kIsLineTerminator.get": 1, - "kIsWhiteSpace.get": 1, - "Predicate": 4, - "": 1, - "128": 4, - "kIsIdentifierStart": 1, - "": 1, - "kIsIdentifierPart": 1, - "": 1, - "kIsLineTerminator": 1, - "": 1, - "kIsWhiteSpace": 1, - "DISALLOW_COPY_AND_ASSIGN": 2, - "LiteralBuffer": 6, - "is_ascii_": 10, - "position_": 17, - "backing_store_": 7, - "backing_store_.length": 4, - "backing_store_.Dispose": 3, - "INLINE": 2, - "AddChar": 2, - "ExpandBuffer": 2, - "kMaxAsciiCharCodeU": 1, - "": 6, - "kASCIISize": 1, - "ConvertToUtf16": 2, - "": 2, - "kUC16Size": 2, - "is_ascii": 3, - "Vector": 13, - "uc16": 5, - "utf16_literal": 3, - "backing_store_.start": 5, - "ascii_literal": 3, - "kInitialCapacity": 2, - "kGrowthFactory": 2, - "kMinConversionSlack": 1, - "kMaxGrowth": 2, - "MB": 1, - "NewCapacity": 3, - "min_capacity": 2, - "capacity": 3, - "Max": 1, - "new_capacity": 2, - "Min": 1, - "new_store": 6, - "memcpy": 1, - "new_store.start": 3, - "new_content_size": 4, - "src": 2, - "": 1, - "dst": 2, - "Scanner*": 2, - "self": 5, - "scanner_": 5, - "complete_": 4, - "StartLiteral": 2, - "DropLiteral": 2, - "Complete": 1, - "TerminateLiteral": 2, - "beg_pos": 5, - "end_pos": 4, - "kNoOctalLocation": 1, - "scanner_contants": 1, - "current_token": 1, - "current_.location": 2, - "literal_ascii_string": 1, - "ASSERT_NOT_NULL": 9, - "current_.literal_chars": 11, - "literal_utf16_string": 1, - "is_literal_ascii": 1, - "literal_length": 1, - "literal_contains_escapes": 1, - "source_length": 3, - "location.end_pos": 1, - "location.beg_pos": 1, - "STRING": 1, - "peek": 1, - "peek_location": 1, - "next_.location": 1, - "next_literal_ascii_string": 1, - "next_literal_utf16_string": 1, - "is_next_literal_ascii": 1, - "next_literal_length": 1, - "kCharacterLookaheadBufferSize": 3, - "ScanOctalEscape": 1, - "octal_position": 1, - "clear_octal_position": 1, - "HarmonyScoping": 1, - "SetHarmonyScoping": 1, - "scoping": 2, - "HarmonyModules": 1, - "SetHarmonyModules": 1, - "modules": 2, - "HasAnyLineTerminatorBeforeNext": 1, - "ScanRegExpPattern": 1, - "seen_equal": 1, - "ScanRegExpFlags": 1, - "IsIdentifier": 1, - "CharacterStream*": 1, - "TokenDesc": 3, - "LiteralBuffer*": 2, - "literal_chars": 1, - "free_buffer": 3, - "literal_buffer1_": 3, - "literal_buffer2_": 2, - "AddLiteralChar": 2, - "tok": 2, - "else_": 2, - "ScanDecimalDigits": 1, - "seen_period": 1, - "ScanIdentifierSuffix": 1, - "LiteralScope*": 1, - "ScanIdentifierUnicodeEscape": 1, - "desc": 2, - "look": 1, - "ahead": 1, - "smallPrime_t": 1, - "UTILS_H": 3, - "": 1, - "": 1, - "": 1, - "QTemporaryFile": 1, - "showUsage": 1, - "QtMsgType": 1, - "dump_path": 1, - "minidump_id": 1, - "context": 8, - "QVariant": 1, - "coffee2js": 1, - "script": 1, - "injectJsInFrame": 2, - "jsFilePath": 5, - "libraryPath": 5, - "QWebFrame": 4, - "*targetFrame": 4, - "startingScript": 2, - "Encoding": 3, - "jsFileEnc": 2, - "readResourceFileUtf8": 1, - "resourceFilePath": 1, - "loadJSForDebug": 2, - "autorun": 2, - "cleanupFromDebug": 1, - "findScript": 1, - "jsFromScriptFile": 1, - "scriptPath": 1, - "enc": 1, - "shouldn": 1, - "instantiated": 1, - "QTemporaryFile*": 2, - "m_tempHarness": 1, - "We": 1, - "ourselves": 1, - "m_tempWrapper": 1, - "V8_DECLARE_ONCE": 1, - "init_once": 2, - "V8": 21, - "is_running_": 6, - "has_been_set_up_": 4, - "has_been_disposed_": 6, - "has_fatal_error_": 5, - "use_crankshaft_": 6, - "List": 3, - "": 3, - "call_completed_callbacks_": 16, - "LazyMutex": 1, - "entropy_mutex": 1, - "LAZY_MUTEX_INITIALIZER": 1, - "EntropySource": 3, - "entropy_source": 4, - "Deserializer*": 2, - "des": 3, - "FlagList": 1, - "EnforceFlagImplications": 1, - "InitializeOncePerProcess": 4, - "Isolate": 9, - "CurrentPerIsolateThreadData": 4, - "EnterDefaultIsolate": 1, - "thread_id": 1, - ".Equals": 1, - "ThreadId": 1, - "Current": 5, - "isolate": 15, - "IsDead": 2, - "Isolate*": 6, - "SetFatalError": 2, - "TearDown": 5, - "IsDefaultIsolate": 1, - "ElementsAccessor": 2, - "LOperand": 2, - "TearDownCaches": 1, - "RegisteredExtension": 1, - "UnregisterAll": 1, - "OS": 3, - "seed_random": 2, - "FLAG_random_seed": 2, - "val": 3, - "ScopedLock": 1, - "entropy_mutex.Pointer": 1, - "random": 1, - "random_base": 3, - "xFFFF": 2, - "FFFF": 1, - "SetEntropySource": 2, - "SetReturnAddressLocationResolver": 3, - "ReturnAddressLocationResolver": 2, - "resolver": 3, - "StackFrame": 1, - "Random": 3, - "Context*": 4, - "IsGlobalContext": 1, - "ByteArray*": 1, - "seed": 2, - "random_seed": 1, - "": 1, - "GetDataStartAddress": 1, - "RandomPrivate": 2, - "private_random_seed": 1, - "IdleNotification": 3, - "hint": 3, - "FLAG_use_idle_notification": 1, - "HEAP": 1, - "AddCallCompletedCallback": 2, - "CallCompletedCallback": 4, - "callback": 7, - "Lazy": 1, - "init.": 1, - "Add": 1, - "RemoveCallCompletedCallback": 2, - "Remove": 1, - "FireCallCompletedCallback": 2, - "HandleScopeImplementer*": 1, - "handle_scope_implementer": 5, - "CallDepthIsZero": 1, - "IncrementCallDepth": 1, - "DecrementCallDepth": 1, - "union": 1, - "double_value": 1, - "uint64_t_value": 1, - "double_int_union": 2, - "Object*": 4, - "FillHeapNumberWithRandom": 2, - "heap_number": 4, - "random_bits": 2, - "binary_million": 3, - "r.double_value": 3, - "r.uint64_t_value": 1, - "HeapNumber": 1, - "set_value": 1, - "InitializeOncePerProcessImpl": 3, - "SetUp": 4, - "FLAG_crankshaft": 1, - "Serializer": 1, - "SupportsCrankshaft": 1, - "PostSetUp": 1, - "RuntimeProfiler": 1, - "GlobalSetUp": 1, - "FLAG_stress_compaction": 1, - "FLAG_force_marking_deque_overflows": 1, - "FLAG_gc_global": 1, - "FLAG_max_new_space_size": 1, - "kPageSizeBits": 1, - "SetUpCaches": 1, - "SetUpJSCallerSavedCodeData": 1, - "SamplerRegistry": 1, - "ExternalReference": 1, - "CallOnce": 1, - "V8_V8_H_": 3, - "GOOGLE3": 2, - "NDEBUG": 4, - "both": 1, - "Deserializer": 1, - "AllStatic": 1, - "IsRunning": 1, - "UseCrankshaft": 1, - "FatalProcessOutOfMemory": 1, - "take_snapshot": 1, - "NilValue": 1, - "kNullValue": 1, - "kUndefinedValue": 1, - "EqualityKind": 1, - "kStrictEquality": 1, - "kNonStrictEquality": 1, "PY_SSIZE_T_CLEAN": 1, "Py_PYTHON_H": 1, "Python": 1, + "needed": 3, "compile": 1, + "C": 6, "extensions": 1, + "please": 2, + "install": 3, "development": 1, "Python.": 1, "": 1, "offsetof": 2, + "type": 7, "member": 2, "type*": 1, "WIN32": 2, @@ -13655,9 +11261,11 @@ "PY_VERSION_HEX": 9, "METH_COEXIST": 1, "PyDict_CheckExact": 1, + "op": 28, "Py_TYPE": 4, "PyDict_Type": 1, "PyDict_Contains": 1, + "d": 8, "o": 20, "PySequence_Contains": 1, "Py_ssize_t": 17, @@ -13691,10 +11299,13 @@ "PyVarObject_HEAD_INIT": 1, "PyObject_HEAD_INIT": 1, "PyType_Modified": 1, + "struct": 13, "*buf": 1, "PyObject": 221, "*obj": 2, + "len": 15, "itemsize": 2, + "readonly": 3, "ndim": 2, "*format": 1, "*shape": 1, @@ -13809,9 +11420,11 @@ "tp_name": 4, "PyMethod_New": 2, "func": 3, + "self": 5, "klass": 1, "PyInstanceMethod_New": 1, "__Pyx_GetAttrString": 2, + "n": 28, "PyObject_GetAttrString": 3, "__Pyx_SetAttrString": 2, "PyObject_SetAttrString": 2, @@ -13819,6 +11432,7 @@ "PyObject_DelAttrString": 2, "__Pyx_NAMESTR": 3, "__Pyx_DOCSTR": 3, + "__cplusplus": 12, "__PYX_EXTERN_C": 2, "_USE_MATH_DEFINES": 1, "": 1, @@ -13828,6 +11442,7 @@ "CYTHON_INLINE": 68, "__GNUC__": 5, "__inline__": 1, + "_MSC_VER": 7, "__inline": 1, "__STDC_VERSION__": 2, "L": 1, @@ -13912,6 +11527,7 @@ "complex": 2, "__pyx_t_float_complex": 27, "_Complex": 2, + "real": 4, "imag": 2, "__pyx_t_double_complex": 27, "npy_cfloat": 1, @@ -13932,6 +11548,8 @@ "m": 4, "PyImport_ImportModule": 1, "modname": 1, + "goto": 156, + "p": 6, "PyLong_AsVoidPtr": 1, "Py_XDECREF": 3, "__Pyx_RefNannySetupContext": 13, @@ -14021,6 +11639,7 @@ "cabs": 1, "cpow": 1, "__Pyx_PyInt_AsUnsignedChar": 1, + "short": 5, "__Pyx_PyInt_AsUnsignedShort": 1, "__Pyx_PyInt_AsUnsignedInt": 1, "__Pyx_PyInt_AsChar": 1, @@ -14242,6 +11861,7 @@ "NPY_F_CONTIGUOUS": 1, "__pyx_k_tuple_8": 1, "__pyx_L7": 2, + "buf": 14, "PyArray_DATA": 1, "strides": 5, "malloc": 2, @@ -14288,6 +11908,7 @@ "__pyx_L2": 2, "__pyx_pf_5numpy_7ndarray_1__releasebuffer__": 2, "PyArray_HASFIELDS": 1, + "free": 4, "*__pyx_f_5numpy_PyArray_MultiIterNew1": 1, "*__pyx_v_a": 5, "PyArray_MultiIterNew": 5, @@ -14314,9 +11935,12 @@ "__pyx_v_fields": 7, "__pyx_v_childname": 4, "__pyx_v_new_offset": 5, + "names": 3, "PyTuple_GET_SIZE": 2, + "break": 35, "PyTuple_GET_ITEM": 3, "PyObject_GetItem": 1, + "fields": 4, "PyTuple_CheckExact": 1, "tuple": 3, "__pyx_ptype_5numpy_dtype": 1, @@ -14331,27 +11955,2406 @@ "elsize": 1, "__pyx_k_tuple_16": 1, "__pyx_L10": 2, - "Py_EQ": 6 + "Py_EQ": 6, + "BOOST_ASIO_DETAIL_IMPL_EPOLL_REACTOR_IPP": 3, + "": 1, + "BOOST_ASIO_HAS_EPOLL": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "BOOST_ASIO_HAS_TIMERFD": 19, + "": 1, + "boost": 18, + "asio": 14, + "detail": 5, + "epoll_reactor": 40, + "io_service": 6, + "service_base": 1, + "": 1, + "io_service_": 1, + "use_service": 1, + "": 1, + "mutex_": 13, + "interrupter_": 5, + "epoll_fd_": 20, + "do_epoll_create": 3, + "timer_fd_": 21, + "do_timerfd_create": 3, + "shutdown_": 10, + "epoll_event": 10, + "ev": 21, + "ev.events": 13, + "EPOLLIN": 8, + "EPOLLERR": 8, + "EPOLLET": 5, + "ev.data.ptr": 10, + "epoll_ctl": 12, + "EPOLL_CTL_ADD": 7, + "interrupter_.read_descriptor": 3, + "interrupter_.interrupt": 2, + "close": 7, + "shutdown_service": 1, + "mutex": 16, + "scoped_lock": 16, + "lock.unlock": 1, + "op_queue": 6, + "": 6, + "ops": 10, + "descriptor_state*": 6, + "registered_descriptors_.first": 2, + "max_ops": 6, + "ops.push": 5, + "op_queue_": 12, + "registered_descriptors_.free": 2, + "timer_queues_.get_all_timers": 1, + "io_service_.abandon_operations": 1, + "fork_service": 1, + "fork_event": 1, + "fork_ev": 2, + "fork_child": 1, + "interrupter_.recreate": 1, + "update_timeout": 2, + "descriptors_lock": 3, + "registered_descriptors_mutex_": 3, + "next_": 3, + "registered_events_": 8, + "result": 8, + "descriptor_": 5, + "system": 13, + "error_code": 4, + "ec": 6, + "errno": 10, + "error": 8, + "get_system_category": 3, + "throw_error": 2, + "init_task": 1, + "io_service_.init_task": 1, + "register_descriptor": 1, + "socket_type": 7, + "per_descriptor_data": 8, + "descriptor_data": 60, + "allocate_descriptor_state": 3, + "descriptor_lock": 7, + "reactor_": 7, + "EPOLLHUP": 3, + "EPOLLPRI": 3, + "register_internal_descriptor": 1, + "op_type": 8, + "reactor_op*": 5, + ".push": 2, + "move_descriptor": 1, + "target_descriptor_data": 2, + "source_descriptor_data": 3, + "start_op": 1, + "is_continuation": 5, + "allow_speculative": 2, + "ec_": 4, + "bad_descriptor": 1, + "post_immediate_completion": 2, + ".empty": 5, + "read_op": 1, + "except_op": 1, + "perform": 2, + "descriptor_lock.unlock": 4, + "io_service_.post_immediate_completion": 2, + "write_op": 2, + "EPOLLOUT": 4, + "EPOLL_CTL_MOD": 3, + "io_service_.work_started": 2, + "cancel_ops": 1, + ".front": 3, + "operation_aborted": 2, + ".pop": 3, + "io_service_.post_deferred_completions": 3, + "deregister_descriptor": 1, + "closing": 3, + "EPOLL_CTL_DEL": 2, + "free_descriptor_state": 3, + "deregister_internal_descriptor": 1, + "run": 2, + "block": 7, + "timeout": 5, + "get_timeout": 5, + "events": 8, + "num_events": 2, + "epoll_wait": 1, + "check_timers": 6, + "void*": 2, + ".data.ptr": 1, + "": 2, + "set_ready_events": 1, + ".events": 1, + "common_lock": 1, + "timer_queues_.get_ready_timers": 1, + "itimerspec": 5, + "new_timeout": 6, + "old_timeout": 4, + "flags": 4, + "timerfd_settime": 2, + "interrupt": 3, + "EPOLL_CLOEXEC": 4, + "fd": 15, + "epoll_create1": 1, + "EINVAL": 4, + "ENOSYS": 1, + "epoll_create": 1, + "epoll_size": 1, + "fcntl": 2, + "F_SETFD": 2, + "FD_CLOEXEC": 2, + "timerfd_create": 2, + "CLOCK_MONOTONIC": 3, + "TFD_CLOEXEC": 1, + "registered_descriptors_.alloc": 1, + "do_add_timer_queue": 1, + "timer_queue_base": 2, + "queue": 4, + "timer_queues_.insert": 1, + "do_remove_timer_queue": 1, + "timer_queues_.erase": 1, + "timer_queues_.wait_duration_msec": 1, + "ts": 1, + "ts.it_interval.tv_sec": 1, + "ts.it_interval.tv_nsec": 1, + "usec": 5, + "timer_queues_.wait_duration_usec": 1, + "ts.it_value.tv_sec": 1, + "ts.it_value.tv_nsec": 1, + "%": 7, + "TFD_TIMER_ABSTIME": 1, + "perform_io_cleanup_on_block_exit": 4, + "epoll_reactor*": 2, + "first_op_": 3, + "ops_.empty": 1, + "ops_": 2, + "operation*": 4, + "descriptor_state": 5, + "operation": 2, + "do_complete": 2, + "perform_io": 2, + "mutex_.lock": 1, + "io_cleanup": 1, + "adopt_lock": 1, + "flag": 3, + "j": 10, + "io_cleanup.ops_.push": 1, + "io_cleanup.first_op_": 2, + "io_cleanup.ops_.front": 1, + "io_cleanup.ops_.pop": 1, + "io_service_impl*": 1, + "owner": 3, + "bytes_transferred": 2, + "": 1, + "complete": 3, + "": 1, + "Q_OS_LINUX": 2, + "": 1, + "QT_VERSION": 1, + "QT_VERSION_CHECK": 1, + "Something": 1, + "wrong": 1, + "setup.": 1, + "report": 3, + "mailing": 1, + "main": 2, + "argc": 2, + "char**": 2, + "argv": 2, + "envp": 4, + "google_breakpad": 1, + "ExceptionHandler": 1, + "eh": 2, + "Utils": 4, + "exceptionHandler": 2, + "qInstallMsgHandler": 1, + "messageHandler": 2, + "QApplication": 1, + "app": 1, + "STATIC_BUILD": 1, + "Q_INIT_RESOURCE": 2, + "WebKit": 1, + "InspectorBackendStub": 1, + "app.setWindowIcon": 1, + "QIcon": 1, + "app.setApplicationName": 1, + "app.setOrganizationName": 1, + "app.setOrganizationDomain": 1, + "app.setApplicationVersion": 1, + "PHANTOMJS_VERSION_STRING": 1, + "Env": 13, + "parse": 3, + "Phantom": 1, + "phantom": 1, + "phantom.execute": 1, + "app.exec": 1, + "phantom.returnValue": 1, + "#pragma": 3, + "once": 5, + "": 2, + "using": 11, + "DEFAULT_DELIMITER": 1, + "CsvStreamer": 5, + "ofstream": 1, + "File": 1, + "row_buffer": 1, + "stores": 3, + "row": 12, + "flushed/written": 1, + "Number": 8, + "columns": 2, + "rows": 3, + "records": 2, + "including": 2, + "header": 7, + "delimiter": 2, + "Delimiter": 1, + "comma": 2, + "sanitize": 1, + "Returns": 2, + "ready": 1, + "into": 6, + "Empty": 1, + "CSV": 4, + "streamer...": 1, + "open": 6, + "writing": 2, + "Same": 1, + "as": 28, + "...": 1, + "Opens": 3, + "given": 16, + "path/name": 3, + "Ensures": 1, + "closed": 1, + "saved": 1, + "delimiting": 1, + "add_field": 1, + "still": 3, + "adds": 1, + "field": 5, + "save_fields": 1, + "Call": 2, + "save": 1, + "all": 11, + "writes": 2, + "through": 4, + "append": 8, + "Appends": 5, + "quoted": 1, + "leading/trailing": 1, + "spaces": 3, + "trimmed": 1, + "Like": 1, + "but": 5, + "specify": 1, + "whether": 4, + "trim": 2, + "keep": 1, + "writeln": 1, + "Flushes": 1, + "what": 2, + "buffer": 9, + "Saves": 1, + "closes": 1, + "field_count": 1, + "Gets": 2, + "row_count": 1, + "NOT": 3, + "NINJA_METRICS_H_": 3, + "For": 6, + "int64_t.": 1, + "///": 843, + "Metrics": 2, + "module": 1, + "debug": 6, + "dumps": 1, + "timing": 3, + "stats": 2, + "various": 4, + "actions.": 1, + "To": 1, + "see": 14, + "METRIC_RECORD": 4, + "below.": 1, + "single": 2, + "metrics": 2, + "ve": 4, + "hit": 1, + "code": 12, + "path.": 2, + "count": 1, + "Total": 1, + "time": 10, + "micros": 5, + "spent": 1, + "int64_t": 3, + "sum": 1, + "scoped": 1, + "object": 3, + "recording": 1, + "metric": 2, + "across": 1, + "body": 1, + "function.": 3, + "macro.": 1, + "ScopedMetric": 4, + "Metric*": 4, + "metric_": 1, + "Timestamp": 1, + "measurement": 2, + "started.": 1, + "Value": 24, + "dependent.": 1, + "start_": 1, + "singleton": 2, + "prints": 1, + "report.": 1, + "NewMetric": 2, + "summary": 1, + "stdout.": 1, + "Report": 1, + "": 1, + "metrics_": 1, + "Get": 1, + "some": 4, + "epoch.": 1, + "Epoch": 1, + "varies": 1, + "between": 1, + "platforms": 1, + "useful": 1, + "measuring": 1, + "elapsed": 1, + "time.": 1, + "GetTimeMillis": 1, + "simple": 1, + "stopwatch": 1, + "returns": 4, + "seconds": 1, + "since": 3, + "Restart": 3, + "called.": 1, + "Stopwatch": 2, + "started_": 4, + "Seconds": 1, + "call.": 1, + "Elapsed": 1, + "e": 15, + "": 1, + "Now": 4, + "primary": 1, + "interface": 9, + "metrics.": 1, + "top": 1, + "get": 5, + "recorded": 1, + "call": 4, + "metrics_h_metric": 2, + "g_metrics": 3, + "metrics_h_scoped": 1, + "Metrics*": 1, + "": 2, + "smallPrime_t": 1, + "V8_SCANNER_H_": 3, + "ParsingFlags": 1, + "kNoParsingFlags": 1, + "kLanguageModeMask": 4, + "kAllowLazy": 1, + "kAllowNativesSyntax": 1, + "kAllowModules": 1, + "STATIC_ASSERT": 5, + "CLASSIC_MODE": 2, + "STRICT_MODE": 2, + "EXTENDED_MODE": 2, + "HexValue": 2, + "uc32": 19, + "detect": 3, + "x16": 1, + "x36.": 1, + "Utf16CharacterStream": 3, + "pos_": 6, + "Advance": 44, + "buffer_cursor_": 5, + "buffer_end_": 3, + "ReadBlock": 2, + "": 1, + "kEndOfInput": 2, + "pos": 12, + "SeekForward": 4, + "code_unit_count": 7, + "buffered_chars": 2, + "SlowSeekForward": 2, + "PushBack": 8, + "int32_t": 1, + "code_unit": 6, + "uc16*": 3, + "UnicodeCache": 3, + "unibrow": 11, + "Utf8InputBuffer": 2, + "<1024>": 2, + "Utf8Decoder": 2, + "StaticResource": 2, + "": 2, + "utf8_decoder": 1, + "utf8_decoder_": 2, + "IsIdentifierStart": 2, + "uchar": 4, + "kIsIdentifierStart.get": 1, + "IsIdentifierPart": 1, + "kIsIdentifierPart.get": 1, + "IsLineTerminator": 6, + "kIsLineTerminator.get": 1, + "IsWhiteSpace": 2, + "kIsWhiteSpace.get": 1, + "Predicate": 4, + "": 1, + "128": 4, + "kIsIdentifierStart": 1, + "": 1, + "kIsIdentifierPart": 1, + "": 1, + "kIsLineTerminator": 1, + "": 1, + "kIsWhiteSpace": 1, + "DISALLOW_COPY_AND_ASSIGN": 2, + "LiteralBuffer": 6, + "is_ascii_": 10, + "position_": 17, + "backing_store_": 7, + "backing_store_.length": 4, + "backing_store_.Dispose": 3, + "INLINE": 2, + "AddChar": 2, + "ExpandBuffer": 2, + "kMaxAsciiCharCodeU": 1, + "": 6, + "kASCIISize": 1, + "ConvertToUtf16": 2, + "": 2, + "kUC16Size": 2, + "is_ascii": 3, + "Vector": 13, + "uc16": 5, + "utf16_literal": 3, + "backing_store_.start": 5, + "ascii_literal": 3, + "kInitialCapacity": 2, + "kGrowthFactory": 2, + "kMinConversionSlack": 1, + "kMaxGrowth": 2, + "MB": 1, + "NewCapacity": 3, + "min_capacity": 2, + "capacity": 3, + "Max": 1, + "new_capacity": 2, + "Min": 1, + "new_store": 6, + "memcpy": 1, + "new_store.start": 3, + "new_content_size": 4, + "src": 2, + "": 1, + "dst": 2, + "Scanner": 16, + "LiteralScope": 4, + "Scanner*": 2, + "scanner_": 5, + "complete_": 4, + "StartLiteral": 2, + "DropLiteral": 2, + "Complete": 1, + "TerminateLiteral": 2, + "Location": 14, + "beg_pos": 5, + "end_pos": 4, + "kNoOctalLocation": 1, + "UnicodeCache*": 4, + "scanner_contants": 1, + "Utf16CharacterStream*": 3, + "Token": 212, + "Next": 3, + "current_token": 1, + "current_.token": 4, + "current_.location": 2, + "literal_ascii_string": 1, + "ASSERT_NOT_NULL": 9, + "current_.literal_chars": 11, + "literal_utf16_string": 1, + "is_literal_ascii": 1, + "literal_length": 1, + "literal_contains_escapes": 1, + "source_length": 3, + "location.end_pos": 1, + "location.beg_pos": 1, + "STRING": 1, + "peek": 1, + "next_.token": 3, + "peek_location": 1, + "next_.location": 1, + "next_literal_ascii_string": 1, + "next_.literal_chars": 13, + "next_literal_utf16_string": 1, + "is_next_literal_ascii": 1, + "next_literal_length": 1, + "unicode_cache": 3, + "unicode_cache_": 10, + "kCharacterLookaheadBufferSize": 3, + "ScanOctalEscape": 1, + "octal_position": 1, + "octal_pos_": 5, + "clear_octal_position": 1, + "HarmonyScoping": 1, + "harmony_scoping_": 4, + "SetHarmonyScoping": 1, + "scoping": 2, + "HarmonyModules": 1, + "harmony_modules_": 4, + "SetHarmonyModules": 1, + "modules": 2, + "HasAnyLineTerminatorBeforeNext": 1, + "has_line_terminator_before_next_": 9, + "has_multiline_comment_before_next_": 5, + "ScanRegExpPattern": 1, + "seen_equal": 1, + "ScanRegExpFlags": 1, + "IsIdentifier": 1, + "CharacterStream*": 1, + "TokenDesc": 3, + "token": 64, + "LiteralBuffer*": 2, + "literal_chars": 1, + "free_buffer": 3, + "literal_buffer1_": 3, + "literal_buffer2_": 2, + "AddLiteralChar": 2, + "AddLiteralCharAdvance": 3, + "c0_": 64, + "source_": 7, + "ch": 5, + "tok": 2, + "else_": 2, + "ScanHexNumber": 2, + "expected_length": 4, + "Scan": 5, + "SkipWhiteSpace": 4, + "SkipSingleLineComment": 6, + "SkipMultiLineComment": 3, + "ScanHtmlComment": 3, + "ScanDecimalDigits": 1, + "ScanNumber": 3, + "seen_period": 1, + "ScanIdentifierOrKeyword": 2, + "ScanIdentifierSuffix": 1, + "LiteralScope*": 1, + "literal": 2, + "ScanString": 3, + "ScanEscape": 2, + "ScanIdentifierUnicodeEscape": 1, + "ScanLiteralUnicodeEscape": 3, + "source_pos": 10, + "current_": 2, + "desc": 2, + "look": 1, + "ahead": 1, + "prevent": 4, + "overflow": 1, + "NUM_TOKENS": 1, + "byte": 6, + "one_char_tokens": 2, + "ILLEGAL": 120, + "LPAREN": 2, + "RPAREN": 2, + "COMMA": 2, + "COLON": 2, + "SEMICOLON": 2, + "CONDITIONAL": 2, + "LBRACK": 2, + "RBRACK": 2, + "LBRACE": 2, + "RBRACE": 2, + "BIT_NOT": 2, + "": 1, + "next_.location.beg_pos": 3, + "next_.location.end_pos": 4, + "IsByteOrderMark": 2, + "xFEFF": 1, + "xFFFE": 1, + "start_position": 2, + "continue": 2, + "undo": 4, + "WHITESPACE": 6, + "LT": 2, + "switch": 3, + "case": 34, + "LTE": 1, + "ASSIGN_SHL": 1, + "SHL": 1, + "GTE": 1, + "ASSIGN_SAR": 1, + "ASSIGN_SHR": 1, + "SHR": 1, + "SAR": 1, + "GT": 1, + "EQ_STRICT": 1, + "EQ": 1, + "ASSIGN": 1, + "NE_STRICT": 1, + "NE": 1, + "INC": 1, + "ASSIGN_ADD": 1, + "ADD": 1, + "DEC": 1, + "ASSIGN_SUB": 1, + "SUB": 1, + "ASSIGN_MUL": 1, + "MUL": 1, + "ASSIGN_MOD": 1, + "MOD": 1, + "ASSIGN_DIV": 1, + "DIV": 1, + "AND": 1, + "ASSIGN_BIT_AND": 1, + "BIT_AND": 1, + "OR": 1, + "ASSIGN_BIT_OR": 1, + "BIT_OR": 1, + "ASSIGN_BIT_XOR": 1, + "BIT_XOR": 1, + "IsDecimalDigit": 2, + "PERIOD": 1, + "EOS": 1, + "current_pos": 4, + "ASSERT_EQ": 1, + "IsCarriageReturn": 2, + "IsLineFeed": 2, + "fall": 2, + "xx": 2, + "xxx": 1, + "immediately": 1, + "octal": 1, + "escape": 1, + "quote": 3, + "consume": 2, + ".": 16, + "X": 2, + "E": 3, + "l": 1, + "w": 1, + "keyword": 1, + "Unescaped": 1, + "in_character_class": 2, + "literal.Complete": 2, + "mainpage": 1, + "library": 14, + "Broadcom": 3, + "BCM": 14, + "Raspberry": 6, + "Pi": 5, + "RPi": 17, + "It": 7, + "provides": 3, + "access": 17, + "GPIO": 87, + "IO": 2, + "functions": 19, + "chip": 9, + "allowing": 3, + "pins": 40, + "pin": 90, + "IDE": 4, + "plug": 3, + "board": 2, + "external": 3, + "devices.": 1, + "reading": 3, + "digital": 2, + "inputs": 2, + "setting": 2, + "outputs": 1, + "SPI": 44, + "I2C": 29, + "accessing": 2, + "timers.": 1, + "Pin": 65, + "event": 3, + "detection": 2, + "supported": 3, + "polling": 1, + "interrupts": 1, + "compatible": 1, + "installs": 1, + "non": 2, + "shared": 2, + "Linux": 2, + "based": 4, + "distro": 1, + "clearly": 1, + "except": 2, + "another": 1, + "package": 1, + "documentation": 3, + "refers": 1, + "downloaded": 1, + "http": 11, + "//www.airspayce.com/mikem/bcm2835/bcm2835": 1, + "tar.gz": 1, + "You": 9, + "find": 2, + "latest": 2, + "//www.airspayce.com/mikem/bcm2835": 1, + "Several": 1, + "programs": 4, + "provided.": 1, + "Based": 1, + "//elinux.org/RPi_Low": 1, + "level_peripherals": 1, + "//www.raspberrypi.org/wp": 1, + "content/uploads/2012/02/BCM2835": 1, + "ARM": 5, + "Peripherals.pdf": 1, + "//www.scribd.com/doc/101830961/GPIO": 2, + "Pads": 3, + "Control2": 2, + "also": 3, + "online": 1, + "help": 1, + "discussion": 1, + "//groups.google.com/group/bcm2835": 1, + "group": 23, + "questions": 1, + "discussions": 1, + "topic.": 1, + "Do": 1, + "contact": 1, + "author": 3, + "directly": 2, + "unless": 1, + "discuss": 1, + "commercial": 1, + "licensing.": 1, + "Tested": 1, + "debian6": 1, + "wheezy": 3, + "raspbian": 3, + "Occidentalisv01": 2, + "CAUTION": 1, + "been": 14, + "observed": 1, + "enables": 3, + "such": 4, + "bcm2835_gpio_len": 5, + "pulled": 1, + "LOW": 8, + "cause": 1, + "temporary": 1, + "hangs": 1, + "Occidentalisv01.": 1, + "Reason": 1, + "yet": 1, + "determined": 1, + "suspect": 1, + "handler": 1, + "hitting": 1, + "hard": 1, + "loop": 2, + "those": 3, + "OSs.": 1, + "friends": 2, + "make": 6, + "disable": 2, + "bcm2835_gpio_cler_len": 1, + "after": 18, + "use.": 1, + "par": 9, + "Installation": 1, + "consists": 1, + "installed": 1, + "usual": 3, + "places": 1, + "#": 1, + "download": 2, + "say": 1, + "bcm2835": 7, + "xx.tar.gz": 2, + "tar": 1, + "zxvf": 1, + "cd": 1, + "./configure": 1, + "sudo": 2, + "endcode": 2, + "Physical": 21, + "Addresses": 6, + "bcm2835_peri_read": 3, + "bcm2835_peri_write": 3, + "bcm2835_peri_set_bits": 2, + "peripheral": 14, + "register": 17, + "functions.": 4, + "They": 1, + "designed": 3, + "physical": 4, + "addresses": 4, + "described": 1, + "section": 6, + "BCM2835": 2, + "Peripherals": 1, + "manual.": 1, + "FFFFFF": 1, + "peripherals.": 1, + "bus": 4, + "peripherals": 2, + "map": 3, + "onto": 1, + "address": 13, + "starting": 1, + "E000000.": 1, + "Thus": 1, + "advertised": 1, + "manual": 8, + "Ennnnnn": 1, + "available": 6, + "nnnnnn.": 1, + "registers": 12, + "following": 2, + "externals": 1, + "bcm2835_gpio": 2, + "bcm2835_pwm": 2, + "bcm2835_clk": 2, + "bcm2835_pads": 2, + "bcm2835_spio0": 1, + "bcm2835_st": 1, + "bcm2835_bsc0": 1, + "bcm2835_bsc1": 1, + "Numbering": 1, + "numbering": 1, + "inconsistent": 1, + "underlying": 4, + "numbering.": 1, + "//elinux.org/RPi_BCM2835_GPIOs": 1, + "well": 1, + "power": 1, + "ground": 1, + "pins.": 1, + "Not": 4, + "header.": 1, + "Version": 40, + "P5": 6, + "connector": 1, + "V": 2, + "Gnd.": 1, + "passed": 4, + "_not_": 1, + "number.": 1, + "There": 1, + "symbolic": 1, + "definitions": 3, + "convenience.": 1, + "See": 7, + "ref": 32, + "RPiGPIOPin.": 22, + "Pins": 2, + "bcm2835_spi_*": 1, + "allow": 5, + "SPI0": 17, + "send": 3, + "received": 3, + "Serial": 3, + "Peripheral": 6, + "Interface": 2, + "more": 4, + "information": 3, + "about": 6, + "//en.wikipedia.org/wiki/Serial_Peripheral_Interface_Bus": 1, + "When": 12, + "bcm2835_spi_begin": 3, + "changes": 2, + "bahaviour": 1, + "their": 6, + "behaviour": 1, + "order": 14, + "support": 4, + "SPI.": 1, + "While": 1, + "bcm2835_spi_gpio_write": 1, + "bcm2835_spi_end": 4, + "revert": 1, + "configured": 1, + "controled": 1, + "bcm2835_gpio_*": 1, + "calls.": 1, + "P1": 56, + "MOSI": 8, + "MISO": 6, + "CLK": 6, + "CE0": 5, + "CE1": 6, + "bcm2835_i2c_*": 2, + "BSC": 10, + "generically": 1, + "referred": 1, + "I": 4, + "//en.wikipedia.org/wiki/I": 1, + "C2": 1, + "B2C": 1, + "V2": 2, + "SDA": 3, + "SLC": 1, + "Real": 1, + "Time": 1, + "performance": 2, + "constraints": 2, + "i.e.": 1, + "they": 2, + "Such": 1, + "part": 1, + "kernel": 4, + "usually": 2, + "subject": 1, + "paging": 1, + "swapping": 2, + "does": 4, + "things": 1, + "besides": 1, + "running": 1, + "program.": 1, + "means": 8, + "expect": 2, + "programs.": 1, + "In": 2, + "particular": 1, + "guarantee": 1, + "bcm2835_delay": 5, + "bcm2835_delayMicroseconds": 6, + "exactly": 2, + "requested.": 1, + "fact": 2, + "depending": 1, + "activity": 1, + "host": 1, + "etc": 1, + "might": 1, + "significantly": 1, + "longer": 1, + "delay": 9, + "times": 2, + "asked": 1, + "for.": 1, + "So": 1, + "dont": 1, + "request.": 1, + "Arjan": 2, + "reports": 1, + "fragment": 2, + "sched_param": 1, + "sp": 4, + "memset": 3, + "sp.sched_priority": 1, + "sched_get_priority_max": 1, + "SCHED_FIFO": 2, + "sched_setscheduler": 1, + "mlockall": 1, + "MCL_CURRENT": 1, + "MCL_FUTURE": 1, + "Open": 2, + "Source": 2, + "Licensing": 2, + "GPL": 2, + "appropriate": 7, + "option": 1, + "share": 2, + "application": 2, + "everyone": 1, + "distribute": 1, + "give": 2, + "them": 1, + "who": 1, + "uses": 4, + "wish": 2, + "software": 1, + "under": 2, + "contribute": 1, + "community": 1, + "accordance": 1, + "distributed.": 1, + "//www.gnu.org/copyleft/gpl.html": 1, + "COPYING": 1, + "Acknowledgements": 1, + "Some": 1, + "inspired": 2, + "Dom": 1, + "Gert.": 1, + "Alan": 1, + "Barr.": 1, + "Revision": 1, + "History": 1, + "Initial": 1, + "release": 1, + "Minor": 1, + "bug": 1, + "fixes": 1, + "Added": 11, + "bcm2835_spi_transfern": 3, + "Fixed": 4, + "problem": 2, + "prevented": 1, + "used.": 2, + "Reported": 5, + "David": 1, + "Robinson.": 1, + "bcm2835_close": 4, + "deinit": 1, + "library.": 3, + "Suggested": 1, + "sar": 1, + "Ortiz": 1, + "Document": 1, + "Functions": 1, + "bcm2835_gpio_ren": 3, + "bcm2835_gpio_fen": 3, + "bcm2835_gpio_hen": 3, + "bcm2835_gpio_aren": 3, + "bcm2835_gpio_afen": 3, + "now": 4, + "specified.": 1, + "Other": 1, + "were": 1, + "already": 1, + "previously": 10, + "stay": 1, + "enabled.": 1, + "bcm2835_gpio_clr_ren": 2, + "bcm2835_gpio_clr_fen": 2, + "bcm2835_gpio_clr_hen": 2, + "bcm2835_gpio_clr_len": 2, + "bcm2835_gpio_clr_aren": 2, + "bcm2835_gpio_clr_afen": 2, + "enable": 3, + "individual": 1, + "suggested": 3, + "Andreas": 1, + "Sundstrom.": 1, + "bcm2835_spi_transfernb": 2, + "buffers": 3, + "write.": 1, + "Improvements": 3, + "barrier": 3, + "maddin.": 1, + "contributed": 1, + "mikew": 1, + "noticed": 1, + "mallocing": 1, + "memory": 14, + "mmaps": 1, + "/dev/mem.": 1, + "removed": 1, + "mallocs": 1, + "frees": 1, + "found": 1, + "nanosleep": 7, + "takes": 1, + "least": 2, + "us.": 1, + "link": 3, + "version.": 1, + "doc": 1, + "Also": 1, + "added": 2, + "define": 2, + "passwrd": 1, + "Gert": 1, + "says": 1, + "pad": 4, + "settings.": 1, + "Changed": 1, + "collisions": 1, + "wiringPi.": 1, + "Macros": 2, + "delayMicroseconds": 3, + "disabled": 2, + "defining": 1, + "BCM2835_NO_DELAY_COMPATIBILITY": 2, + "incorrect": 2, + "Hardware": 1, + "pointers": 2, + "initialisation": 2, + "externally": 1, + "bcm2835_spi0.": 1, + "compiles": 1, + "even": 2, + "CLOCK_MONOTONIC_RAW": 1, + "instead.": 1, + "errors": 1, + "divider": 15, + "frequencies": 2, + "MHz": 14, + "clock.": 6, + "Ben": 1, + "Simpson.": 1, + "examples": 1, + "Mark": 5, + "Wolfe.": 1, + "bcm2835_gpio_set_multi": 2, + "bcm2835_gpio_clr_multi": 2, + "bcm2835_gpio_write_multi": 4, + "mask": 20, + "once.": 1, + "Requested": 2, + "Sebastian": 2, + "Loncar.": 2, + "bcm2835_gpio_write_mask.": 1, + "Changes": 1, + "timer": 2, + "counter": 1, + "clock_gettime": 1, + "improved": 1, + "accuracy.": 1, + "No": 2, + "lrt": 1, + "now.": 1, + "Contributed": 1, + "van": 1, + "Vught.": 1, + "Removed": 1, + "inlines": 1, + "patch": 1, + "don": 1, + "seem": 1, + "work": 1, + "everywhere.": 1, + "olly.": 1, + "Patch": 2, + "Dootson": 2, + "/dev/mem": 4, + "granted.": 1, + "susceptible": 1, + "bit": 19, + "overruns.": 1, + "courtesy": 1, + "Jeremy": 1, + "Mortis.": 1, + "BCM2835_GPFEN0": 2, + "broke": 1, + "ability": 1, + "falling": 4, + "edge": 8, + "events.": 1, + "Dootson.": 2, + "bcm2835_i2c_set_baudrate": 2, + "bcm2835_i2c_read_register_rs.": 1, + "bcm2835_i2c_read": 4, + "bcm2835_i2c_write": 4, + "fix": 1, + "ocasional": 1, + "reads": 2, + "completing.": 1, + "Patched": 1, + "atched": 1, + "his": 1, + "submitted": 1, + "load": 1, + "processes.": 1, + "Updated": 1, + "distribution": 1, + "details": 1, + "airspayce.com": 1, + "missing": 1, + "unmapmem": 1, + "pads": 7, + "leak.": 1, + "Hartmut": 1, + "Henkel.": 1, + "Mike": 1, + "McCauley": 1, + "mikem@airspayce.com": 1, + "DO": 1, + "CONTACT": 1, + "THE": 2, + "AUTHOR": 1, + "DIRECTLY": 1, + "USE": 1, + "LISTS": 1, + "BCM2835_H": 3, + "defgroup": 7, + "constants": 1, + "Constants": 1, + "passing": 1, + "values": 3, + "here": 1, + "@": 14, + "HIGH": 12, + "volts": 2, + "pin.": 21, + "Speed": 1, + "core": 1, + "clock": 21, + "core_clk": 1, + "BCM2835_CORE_CLK_HZ": 1, + "Base": 17, + "Address": 10, + "BCM2835_PERI_BASE": 9, + "System": 10, + "Timer": 9, + "BCM2835_ST_BASE": 1, + "BCM2835_GPIO_PADS": 2, + "Clock/timer": 1, + "BCM2835_CLOCK_BASE": 1, + "BCM2835_GPIO_BASE": 6, + "BCM2835_SPI0_BASE": 1, + "BSC0": 2, + "BCM2835_BSC0_BASE": 1, + "PWM": 2, + "BCM2835_GPIO_PWM": 1, + "C000": 1, + "BSC1": 2, + "BCM2835_BSC1_BASE": 1, + "ST": 1, + "registers.": 10, + "Available": 8, + "bcm2835_init": 11, + "volatile": 13, + "*bcm2835_st": 1, + "*bcm2835_gpio": 1, + "*bcm2835_pwm": 1, + "*bcm2835_clk": 1, + "PADS": 1, + "*bcm2835_pads": 1, + "*bcm2835_spi0": 1, + "*bcm2835_bsc0": 1, + "*bcm2835_bsc1": 1, + "Size": 2, + "BCM2835_PAGE_SIZE": 1, + "*1024": 2, + "BCM2835_BLOCK_SIZE": 1, + "offsets": 2, + "BCM2835_GPIO_BASE.": 1, + "Offsets": 1, + "bytes": 29, + "per": 3, + "Register": 1, + "View": 1, + "BCM2835_GPFSEL0": 1, + "Function": 8, + "BCM2835_GPFSEL1": 1, + "BCM2835_GPFSEL2": 1, + "BCM2835_GPFSEL3": 1, + "BCM2835_GPFSEL4": 1, + "BCM2835_GPFSEL5": 1, + "BCM2835_GPSET0": 1, + "Output": 6, + "Set": 2, + "BCM2835_GPSET1": 1, + "BCM2835_GPCLR0": 1, + "BCM2835_GPCLR1": 1, + "BCM2835_GPLEV0": 1, + "Level": 2, + "BCM2835_GPLEV1": 1, + "BCM2835_GPEDS0": 1, + "Event": 11, + "Detect": 35, + "Status": 6, + "BCM2835_GPEDS1": 1, + "BCM2835_GPREN0": 1, + "Rising": 8, + "Edge": 16, + "Enable": 38, + "BCM2835_GPREN1": 1, + "Falling": 8, + "BCM2835_GPFEN1": 1, + "BCM2835_GPHEN0": 1, + "High": 4, + "BCM2835_GPHEN1": 1, + "BCM2835_GPLEN0": 1, + "Low": 5, + "BCM2835_GPLEN1": 1, + "BCM2835_GPAREN0": 1, + "Async.": 4, + "BCM2835_GPAREN1": 1, + "BCM2835_GPAFEN0": 1, + "BCM2835_GPAFEN1": 1, + "BCM2835_GPPUD": 1, + "Pull": 11, + "up/down": 10, + "BCM2835_GPPUDCLK0": 1, + "Clock": 11, + "BCM2835_GPPUDCLK1": 1, + "bcm2835PortFunction": 1, + "Port": 1, + "select": 9, + "modes": 1, + "bcm2835_gpio_fsel": 2, + "BCM2835_GPIO_FSEL_INPT": 1, + "b000": 1, + "Input": 2, + "BCM2835_GPIO_FSEL_OUTP": 1, + "b001": 1, + "BCM2835_GPIO_FSEL_ALT0": 1, + "b100": 1, + "Alternate": 6, + "BCM2835_GPIO_FSEL_ALT1": 1, + "b101": 1, + "BCM2835_GPIO_FSEL_ALT2": 1, + "b110": 1, + "BCM2835_GPIO_FSEL_ALT3": 1, + "b111": 2, + "BCM2835_GPIO_FSEL_ALT4": 1, + "b011": 1, + "BCM2835_GPIO_FSEL_ALT5": 1, + "b010": 1, + "BCM2835_GPIO_FSEL_MASK": 1, + "bits": 11, + "bcm2835FunctionSelect": 2, + "bcm2835PUDControl": 4, + "Pullup/Pulldown": 1, + "bcm2835_gpio_pud": 5, + "BCM2835_GPIO_PUD_OFF": 1, + "b00": 1, + "Off": 3, + "pull": 1, + "BCM2835_GPIO_PUD_DOWN": 1, + "b01": 1, + "Down": 1, + "BCM2835_GPIO_PUD_UP": 1, + "b10": 1, + "Up": 1, + "Pad": 11, + "BCM2835_PADS_GPIO_0_27": 1, + "BCM2835_PADS_GPIO_28_45": 1, + "BCM2835_PADS_GPIO_46_53": 1, + "Control": 6, + "masks": 1, + "BCM2835_PAD_PASSWRD": 1, + "Password": 1, + "BCM2835_PAD_SLEW_RATE_UNLIMITED": 1, + "Slew": 1, + "rate": 3, + "unlimited": 1, + "BCM2835_PAD_HYSTERESIS_ENABLED": 1, + "Hysteresis": 1, + "BCM2835_PAD_DRIVE_2mA": 1, + "mA": 8, + "drive": 8, + "BCM2835_PAD_DRIVE_4mA": 1, + "BCM2835_PAD_DRIVE_6mA": 1, + "BCM2835_PAD_DRIVE_8mA": 1, + "BCM2835_PAD_DRIVE_10mA": 1, + "BCM2835_PAD_DRIVE_12mA": 1, + "BCM2835_PAD_DRIVE_14mA": 1, + "BCM2835_PAD_DRIVE_16mA": 1, + "bcm2835PadGroup": 4, + "specification": 1, + "bcm2835_gpio_pad": 2, + "BCM2835_PAD_GROUP_GPIO_0_27": 1, + "BCM2835_PAD_GROUP_GPIO_28_45": 1, + "BCM2835_PAD_GROUP_GPIO_46_53": 1, + "Numbers": 1, + "Here": 1, + "terms": 4, + "numbers.": 1, + "These": 6, + "requiring": 1, + "bin": 1, + "connected": 1, + "adopt": 1, + "slightly": 1, + "pinouts": 1, + "these": 1, + "RPI_V2_*.": 1, + "At": 1, + "bootup": 1, + "UART0_TXD": 3, + "UART0_RXD": 3, + "ie": 3, + "alt0": 1, + "respectively": 1, + "dedicated": 1, + "cant": 1, + "controlled": 1, + "independently": 1, + "RPI_GPIO_P1_03": 6, + "RPI_GPIO_P1_05": 6, + "RPI_GPIO_P1_07": 1, + "RPI_GPIO_P1_08": 1, + "defaults": 4, + "alt": 4, + "RPI_GPIO_P1_10": 1, + "RPI_GPIO_P1_11": 1, + "RPI_GPIO_P1_12": 1, + "RPI_GPIO_P1_13": 1, + "RPI_GPIO_P1_15": 1, + "RPI_GPIO_P1_16": 1, + "RPI_GPIO_P1_18": 1, + "RPI_GPIO_P1_19": 1, + "RPI_GPIO_P1_21": 1, + "RPI_GPIO_P1_22": 1, + "RPI_GPIO_P1_23": 1, + "RPI_GPIO_P1_24": 1, + "RPI_GPIO_P1_26": 1, + "RPI_V2_GPIO_P1_03": 1, + "RPI_V2_GPIO_P1_05": 1, + "RPI_V2_GPIO_P1_07": 1, + "RPI_V2_GPIO_P1_08": 1, + "RPI_V2_GPIO_P1_10": 1, + "RPI_V2_GPIO_P1_11": 1, + "RPI_V2_GPIO_P1_12": 1, + "RPI_V2_GPIO_P1_13": 1, + "RPI_V2_GPIO_P1_15": 1, + "RPI_V2_GPIO_P1_16": 1, + "RPI_V2_GPIO_P1_18": 1, + "RPI_V2_GPIO_P1_19": 1, + "RPI_V2_GPIO_P1_21": 1, + "RPI_V2_GPIO_P1_22": 1, + "RPI_V2_GPIO_P1_23": 1, + "RPI_V2_GPIO_P1_24": 1, + "RPI_V2_GPIO_P1_26": 1, + "RPI_V2_GPIO_P5_03": 1, + "RPI_V2_GPIO_P5_04": 1, + "RPI_V2_GPIO_P5_05": 1, + "RPI_V2_GPIO_P5_06": 1, + "RPiGPIOPin": 1, + "BCM2835_SPI0_CS": 1, + "Master": 12, + "BCM2835_SPI0_FIFO": 1, + "TX": 5, + "RX": 7, + "FIFOs": 1, + "BCM2835_SPI0_CLK": 1, + "Divider": 2, + "BCM2835_SPI0_DLEN": 1, + "Data": 9, + "Length": 2, + "BCM2835_SPI0_LTOH": 1, + "LOSSI": 1, + "TOH": 1, + "BCM2835_SPI0_DC": 1, + "DMA": 3, + "DREQ": 1, + "Controls": 1, + "BCM2835_SPI0_CS_LEN_LONG": 1, + "Long": 1, + "Lossi": 2, + "DMA_LEN": 1, + "BCM2835_SPI0_CS_DMA_LEN": 1, + "BCM2835_SPI0_CS_CSPOL2": 1, + "Chip": 9, + "Polarity": 5, + "BCM2835_SPI0_CS_CSPOL1": 1, + "BCM2835_SPI0_CS_CSPOL0": 1, + "BCM2835_SPI0_CS_RXF": 1, + "RXF": 2, + "FIFO": 25, + "Full": 1, + "BCM2835_SPI0_CS_RXR": 1, + "RXR": 3, + "Reading": 1, + "full": 9, + "BCM2835_SPI0_CS_TXD": 1, + "TXD": 2, + "accept": 2, + "BCM2835_SPI0_CS_RXD": 1, + "RXD": 2, + "contains": 2, + "BCM2835_SPI0_CS_DONE": 1, + "Done": 3, + "transfer": 8, + "BCM2835_SPI0_CS_TE_EN": 1, + "Unused": 2, + "BCM2835_SPI0_CS_LMONO": 1, + "BCM2835_SPI0_CS_LEN": 1, + "LEN": 1, + "LoSSI": 1, + "BCM2835_SPI0_CS_REN": 1, + "REN": 1, + "Read": 3, + "BCM2835_SPI0_CS_ADCS": 1, + "ADCS": 1, + "Automatically": 1, + "Deassert": 1, + "BCM2835_SPI0_CS_INTR": 1, + "INTR": 1, + "Interrupt": 5, + "BCM2835_SPI0_CS_INTD": 1, + "INTD": 1, + "BCM2835_SPI0_CS_DMAEN": 1, + "DMAEN": 1, + "BCM2835_SPI0_CS_TA": 1, + "Transfer": 3, + "Active": 2, + "BCM2835_SPI0_CS_CSPOL": 1, + "BCM2835_SPI0_CS_CLEAR": 1, + "BCM2835_SPI0_CS_CLEAR_RX": 1, + "BCM2835_SPI0_CS_CLEAR_TX": 1, + "BCM2835_SPI0_CS_CPOL": 1, + "BCM2835_SPI0_CS_CPHA": 1, + "Phase": 1, + "BCM2835_SPI0_CS_CS": 1, + "bcm2835SPIBitOrder": 3, + "Bit": 1, + "Specifies": 5, + "ordering": 4, + "bcm2835_spi_setBitOrder": 2, + "BCM2835_SPI_BIT_ORDER_LSBFIRST": 1, + "LSB": 1, + "First": 2, + "BCM2835_SPI_BIT_ORDER_MSBFIRST": 1, + "MSB": 1, + "Specify": 2, + "bcm2835_spi_setDataMode": 2, + "BCM2835_SPI_MODE0": 1, + "CPOL": 4, + "CPHA": 4, + "BCM2835_SPI_MODE1": 1, + "BCM2835_SPI_MODE2": 1, + "BCM2835_SPI_MODE3": 1, + "bcm2835SPIMode": 2, + "bcm2835SPIChipSelect": 3, + "BCM2835_SPI_CS0": 1, + "BCM2835_SPI_CS1": 1, + "BCM2835_SPI_CS2": 1, + "CS1": 1, + "CS2": 1, + "asserted": 3, + "BCM2835_SPI_CS_NONE": 1, + "CS": 5, + "yourself": 1, + "bcm2835SPIClockDivider": 3, + "generate": 2, + "Figures": 1, + "below": 1, + "period": 1, + "frequency.": 1, + "divided": 2, + "nominal": 2, + "reported": 2, + "contrary": 1, + "shown": 1, + "confirmed": 1, + "BCM2835_SPI_CLOCK_DIVIDER_65536": 1, + "us": 12, + "kHz": 10, + "BCM2835_SPI_CLOCK_DIVIDER_32768": 1, + "BCM2835_SPI_CLOCK_DIVIDER_16384": 1, + "BCM2835_SPI_CLOCK_DIVIDER_8192": 1, + "/51757813kHz": 1, + "BCM2835_SPI_CLOCK_DIVIDER_4096": 1, + "BCM2835_SPI_CLOCK_DIVIDER_2048": 1, + "BCM2835_SPI_CLOCK_DIVIDER_1024": 1, + "BCM2835_SPI_CLOCK_DIVIDER_512": 1, + "BCM2835_SPI_CLOCK_DIVIDER_256": 1, + "BCM2835_SPI_CLOCK_DIVIDER_128": 1, + "ns": 9, + "BCM2835_SPI_CLOCK_DIVIDER_64": 1, + "BCM2835_SPI_CLOCK_DIVIDER_32": 1, + "BCM2835_SPI_CLOCK_DIVIDER_16": 1, + "BCM2835_SPI_CLOCK_DIVIDER_8": 1, + "BCM2835_SPI_CLOCK_DIVIDER_4": 1, + "BCM2835_SPI_CLOCK_DIVIDER_2": 1, + "fastest": 1, + "BCM2835_SPI_CLOCK_DIVIDER_1": 1, + "same": 3, + "/65536": 1, + "BCM2835_BSC_C": 1, + "BCM2835_BSC_S": 1, + "BCM2835_BSC_DLEN": 1, + "BCM2835_BSC_A": 1, + "Slave": 1, + "BCM2835_BSC_FIFO": 1, + "BCM2835_BSC_DIV": 1, + "BCM2835_BSC_DEL": 1, + "Delay": 4, + "BCM2835_BSC_CLKT": 1, + "Stretch": 2, + "Timeout": 2, + "BCM2835_BSC_C_I2CEN": 1, + "BCM2835_BSC_C_INTR": 1, + "BCM2835_BSC_C_INTT": 1, + "BCM2835_BSC_C_INTD": 1, + "DONE": 2, + "BCM2835_BSC_C_ST": 1, + "Start": 4, + "BCM2835_BSC_C_CLEAR_1": 1, + "BCM2835_BSC_C_CLEAR_2": 1, + "BCM2835_BSC_C_READ": 1, + "BCM2835_BSC_S_CLKT": 1, + "stretch": 1, + "BCM2835_BSC_S_ERR": 1, + "ACK": 1, + "BCM2835_BSC_S_RXF": 1, + "BCM2835_BSC_S_TXE": 1, + "TXE": 1, + "BCM2835_BSC_S_RXD": 1, + "BCM2835_BSC_S_TXD": 1, + "BCM2835_BSC_S_RXR": 1, + "BCM2835_BSC_S_TXW": 1, + "TXW": 1, + "BCM2835_BSC_S_DONE": 1, + "BCM2835_BSC_S_TA": 1, + "BCM2835_BSC_FIFO_SIZE": 1, + "bcm2835I2CClockDivider": 3, + "BCM2835_I2C_CLOCK_DIVIDER_2500": 1, + "BCM2835_I2C_CLOCK_DIVIDER_626": 1, + "BCM2835_I2C_CLOCK_DIVIDER_150": 1, + "reset": 1, + "BCM2835_I2C_CLOCK_DIVIDER_148": 1, + "bcm2835I2CReasonCodes": 5, + "reason": 4, + "codes": 1, + "BCM2835_I2C_REASON_OK": 1, + "Success": 1, + "BCM2835_I2C_REASON_ERROR_NACK": 1, + "Received": 4, + "NACK": 1, + "BCM2835_I2C_REASON_ERROR_CLKT": 1, + "BCM2835_I2C_REASON_ERROR_DATA": 1, + "sent": 1, + "BCM2835_ST_CS": 1, + "Control/Status": 1, + "BCM2835_ST_CLO": 1, + "Counter": 4, + "Lower": 2, + "BCM2835_ST_CHI": 1, + "Upper": 1, + "BCM2835_PWM_CONTROL": 1, + "BCM2835_PWM_STATUS": 1, + "BCM2835_PWM0_RANGE": 1, + "BCM2835_PWM0_DATA": 1, + "BCM2835_PWM1_RANGE": 1, + "BCM2835_PWM1_DATA": 1, + "BCM2835_PWMCLK_CNTL": 1, + "BCM2835_PWMCLK_DIV": 1, + "BCM2835_PWM1_MS_MODE": 1, + "Run": 4, + "MS": 2, + "BCM2835_PWM1_USEFIFO": 1, + "BCM2835_PWM1_REVPOLAR": 1, + "Reverse": 2, + "polarity": 3, + "BCM2835_PWM1_OFFSTATE": 1, + "Ouput": 2, + "BCM2835_PWM1_REPEATFF": 1, + "Repeat": 2, + "empty": 2, + "BCM2835_PWM1_SERIAL": 1, + "serial": 2, + "BCM2835_PWM1_ENABLE": 1, + "Channel": 2, + "BCM2835_PWM0_MS_MODE": 1, + "BCM2835_PWM0_USEFIFO": 1, + "BCM2835_PWM0_REVPOLAR": 1, + "BCM2835_PWM0_OFFSTATE": 1, + "BCM2835_PWM0_REPEATFF": 1, + "BCM2835_PWM0_SERIAL": 1, + "BCM2835_PWM0_ENABLE": 1, + "init": 2, + "Library": 1, + "management": 1, + "intialise": 1, + "Initialise": 1, + "opening": 1, + "getting": 1, + "successfully": 1, + "bcm2835_set_debug": 2, + "fails": 1, + "returning": 1, + "crashes": 1, + "failures.": 1, + "Prints": 1, + "messages": 1, + "stderr": 1, + "errors.": 1, + "successful": 2, + "Close": 1, + "deallocating": 1, + "allocated": 2, + "prevents": 1, + "makes": 1, + "out": 5, + "would": 2, + "causes": 1, + "normal": 1, + "param": 72, + "uint8_t": 43, + "lowlevel": 2, + "provide": 1, + "generally": 1, + "Reads": 5, + "done": 3, + "twice": 3, + "therefore": 6, + "always": 3, + "safe": 4, + "precautions": 3, + "correct": 3, + "paddr": 10, + "from.": 6, + "etc.": 5, + "without": 3, + "within": 4, + "occurred": 2, + "since.": 2, + "bcm2835_peri_read_nb": 1, + "Writes": 2, + "write": 8, + "bcm2835_peri_write_nb": 1, + "Alters": 1, + "regsiter.": 1, + "valu": 1, + "alters": 1, + "deines": 1, + "according": 1, + "value.": 2, + "All": 1, + "unaffected.": 1, + "subset": 1, + "register.": 3, + "masked": 2, + "mask.": 1, + "Bitmask": 1, + "altered": 1, + "gpio": 1, + "interface.": 3, + "state.": 1, + "configures": 1, + "RPI_GPIO_P1_*": 21, + "Mode": 1, + "BCM2835_GPIO_FSEL_*": 1, + "specified": 27, + "HIGH.": 2, + "bcm2835_gpio_write": 3, + "bcm2835_gpio_set": 1, + "LOW.": 5, + "bcm2835_gpio_clr": 1, + "Mask": 6, + "affect.": 4, + "eg": 5, + "Works": 1, + "output.": 1, + "bcm2835_gpio_lev": 1, + "Status.": 7, + "Tests": 1, + "detected": 7, + "requested": 1, + "bcm2835_gpio_set_eds": 2, + "status": 1, + "th": 1, + "bcm2835_gpio_eds": 1, + "effect": 3, + "clearing": 1, + "flag.": 1, + "afer": 1, + "seeing": 1, + "rising": 3, + "sets": 8, + "GPRENn": 2, + "synchronous": 2, + "detection.": 2, + "signal": 4, + "sampled": 6, + "looking": 2, + "pattern": 2, + "signal.": 2, + "suppressing": 2, + "glitches.": 2, + "Disable": 6, + "Asynchronous": 6, + "incoming": 2, + "As": 2, + "edges": 2, + "very": 2, + "duration": 2, + "detected.": 2, + "bcm2835_gpio_pudclk": 3, + "resistor": 1, + "However": 3, + "convenient": 2, + "bcm2835_gpio_set_pud": 4, + "pud": 4, + "desired": 7, + "One": 3, + "BCM2835_GPIO_PUD_*": 2, + "Clocks": 3, + "earlier": 1, + "group.": 2, + "BCM2835_PAD_GROUP_GPIO_*": 2, + "BCM2835_PAD_*": 2, + "bcm2835_gpio_set_pad": 1, + "Delays": 3, + "milliseconds.": 1, + "Uses": 4, + "until": 1, + "up.": 1, + "mercy": 2, + "From": 2, + "interval": 4, + "req": 2, + "exact": 2, + "multiple": 2, + "granularity": 2, + "rounded": 2, + "multiple.": 2, + "Furthermore": 2, + "sleep": 2, + "completes": 2, + "becomes": 2, + "again": 2, + "thread.": 2, + "millis": 2, + "milliseconds": 1, + "microseconds.": 2, + "busy": 2, + "wait": 2, + "timers": 1, + "less": 1, + "microseconds": 6, + "Timer.": 1, + "RaspberryPi": 1, + "Your": 1, + "mileage": 1, + "vary.": 1, + "required": 2, + "bcm2835_gpio_write_mask": 1, + "clocking": 1, + "spi": 1, + "let": 2, + "device.": 2, + "operations.": 4, + "Forces": 2, + "ALT0": 2, + "funcitons": 1, + "End": 2, + "INPUT": 2, + "behaviour.": 2, + "NOTE": 1, + "effect.": 1, + "SPI0.": 1, + "Defaults": 1, + "BCM2835_SPI_BIT_ORDER_*": 1, + "speed.": 2, + "BCM2835_SPI_CLOCK_DIVIDER_*": 1, + "bcm2835_spi_setClockDivider": 1, + "uint16_t": 2, + "polariy": 1, + "phase": 1, + "BCM2835_SPI_MODE*": 1, + "bcm2835_spi_transfer": 5, + "made": 1, + "during": 4, + "transfer.": 4, + "cs": 4, + "activate": 1, + "slave.": 7, + "BCM2835_SPI_CS*": 1, + "bcm2835_spi_chipSelect": 4, + "occurs": 1, + "active.": 1, + "transfers": 1, + "happening": 1, + "complement": 1, + "inactive": 1, + "affect": 1, + "active": 3, + "Whether": 1, + "bcm2835_spi_setChipSelectPolarity": 1, + "Transfers": 6, + "Asserts": 3, + "simultaneously": 3, + "clocks": 2, + "MISO.": 2, + "polled": 2, + "Peripherls": 2, + "slave": 8, + "placed": 1, + "rbuf.": 1, + "rbuf": 3, + "tbuf": 4, + "send.": 5, + "put": 1, + "send/received": 2, + "bcm2835_spi_transfernb.": 1, + "replaces": 1, + "transmitted": 1, + "buffer.": 1, + "replace": 1, + "contents": 3, + "bcm2835_spi_writenb": 1, + "i2c": 1, + "Philips": 1, + "bus/interface": 1, + "January": 1, + "SCL": 2, + "bcm2835_i2c_end": 3, + "bcm2835_i2c_begin": 1, + "address.": 2, + "addr": 2, + "bcm2835_i2c_setSlaveAddress": 4, + "BCM2835_I2C_CLOCK_DIVIDER_*": 1, + "bcm2835_i2c_setClockDivider": 2, + "converting": 1, + "baudrate": 4, + "parameter": 1, + "equivalent": 1, + "divider.": 1, + "standard": 2, + "khz": 1, + "corresponds": 1, + "its": 1, + "driver.": 1, + "Of": 1, + "course": 2, + "nothing": 1, + "driver": 1, + "receive.": 2, + "received.": 2, + "Allows": 2, + "slaves": 1, + "require": 3, + "repeated": 1, + "prior": 1, + "stop": 1, + "set.": 1, + "popular": 1, + "MPL3115A2": 1, + "pressure": 1, + "temperature": 1, + "sensor.": 1, + "Note": 1, + "combined": 1, + "better": 1, + "choice.": 1, + "Will": 1, + "regaddr": 2, + "containing": 2, + "bcm2835_i2c_read_register_rs": 1, + "st": 1, + "delays": 1, + "Counter.": 1, + "bcm2835_st_read": 1, + "offset.": 1, + "offset_micros": 2, + "Offset": 1, + "bcm2835_st_delay": 1, + "@example": 5, + "blink.c": 1, + "Blinks": 1, + "off": 1, + "input.c": 1, + "event.c": 1, + "Shows": 3, + "how": 3, + "spi.c": 1, + "spin.c": 1, + "INTERNAL_SUPPRESS_PROTOBUF_FIELD_DEPRECATION": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "Person_descriptor_": 6, + "GeneratedMessageReflection*": 1, + "Person_reflection_": 4, + "FileDescriptor*": 1, + "DescriptorPool": 3, + "generated_pool": 2, + "FindFileByName": 1, + "GOOGLE_CHECK": 1, + "message_type": 1, + "Person_offsets_": 2, + "GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET": 3, + "GeneratedMessageReflection": 1, + "MessageFactory": 3, + "generated_factory": 1, + "GOOGLE_PROTOBUF_DECLARE_ONCE": 1, + "protobuf_AssignDescriptors_once_": 2, + "protobuf_AssignDescriptorsOnce": 4, + "GoogleOnceInit": 1, + "protobuf_RegisterTypes": 2, + "InternalRegisterGeneratedMessage": 1, + "already_here": 3, + "GOOGLE_PROTOBUF_VERIFY_VERSION": 1, + "InternalAddGeneratedFile": 1, + "InternalRegisterGeneratedFile": 1, + "OnShutdown": 1, + "StaticDescriptorInitializer_protocol_2dbuffer_2eproto": 2, + "static_descriptor_initializer_protocol_2dbuffer_2eproto_": 1, + "GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN": 2, + "GOOGLE_SAFE_CONCURRENT_WRITES_END": 2, + "*default_instance_": 1, + "xffu": 3, + "DO_": 4, + "EXPRESSION": 2, + "tag": 6, + "ReadTag": 1, + "WireFormatLite": 9, + "GetTagFieldNumber": 1, + "GetTagWireType": 2, + "WIRETYPE_LENGTH_DELIMITED": 1, + "ReadString": 1, + "WireFormat": 10, + "VerifyUTF8String": 3, + ".data": 3, + ".length": 3, + "PARSE": 1, + "handle_uninterpreted": 2, + "ExpectAtEnd": 1, + "WIRETYPE_END_GROUP": 1, + "SkipField": 1, + "SERIALIZE": 2, + "WriteString": 1, + "SerializeUnknownFields": 1, + "target": 6, + "WriteStringToArray": 1, + "SerializeUnknownFieldsToArray": 1, + "total_size": 5, + "StringSize": 1, + "ComputeUnknownFieldsSize": 1, + "GOOGLE_CHECK_NE": 2, + "dynamic_cast_if_available": 1, + "ReflectionOps": 1, + "Merge": 1, + "from._has_bits_": 1, + "from.has_name": 1, + "from.name": 1, + "from.unknown_fields": 1, + "swap": 3, + "_unknown_fields_.Swap": 1, + "metadata": 2, + "metadata.descriptor": 1, + "metadata.reflection": 1, + "UTILS_H": 3, + "": 1, + "": 1, + "": 1, + "QTemporaryFile": 1, + "showUsage": 1, + "QtMsgType": 1, + "*msg": 2, + "dump_path": 1, + "minidump_id": 1, + "succeeded": 2, + "QVariant": 1, + "coffee2js": 1, + "script": 1, + "injectJsInFrame": 2, + "jsFilePath": 5, + "libraryPath": 5, + "QWebFrame": 4, + "*targetFrame": 4, + "startingScript": 2, + "Encoding": 3, + "jsFileEnc": 2, + "readResourceFileUtf8": 1, + "resourceFilePath": 1, + "loadJSForDebug": 2, + "autorun": 2, + "cleanupFromDebug": 1, + "findScript": 1, + "jsFromScriptFile": 1, + "scriptPath": 1, + "enc": 1, + "shouldn": 1, + "instantiated": 1, + "QTemporaryFile*": 2, + "m_tempHarness": 1, + "We": 1, + "clean": 2, + "ourselves": 1, + "m_tempWrapper": 1, + "ENV_H": 3, + "": 1, + "": 2, + "QObject": 2, + "Q_OBJECT": 1, + "*instance": 1, + "**": 2, + "QVariantMap": 3, + "asVariantMap": 2, + "m_map": 2, + "Gui": 1, + "": 1, + "": 1, + "": 1, + "EC_KEY_regenerate_key": 1, + "*eckey": 2, + "BIGNUM": 9, + "*priv_key": 1, + "ok": 3, + "BN_CTX": 2, + "*ctx": 2, + "EC_POINT": 4, + "*pub_key": 1, + "eckey": 7, + "EC_GROUP": 2, + "*group": 2, + "EC_KEY_get0_group": 2, + "ctx": 26, + "BN_CTX_new": 2, + "err": 26, + "pub_key": 6, + "EC_POINT_new": 4, + "EC_POINT_mul": 3, + "priv_key": 2, + "EC_KEY_set_private_key": 1, + "EC_KEY_set_public_key": 2, + "EC_POINT_free": 4, + "BN_CTX_free": 2, + "ECDSA_SIG_recover_key_GFp": 3, + "ECDSA_SIG": 3, + "*ecsig": 1, + "msglen": 2, + "recid": 3, + "ret": 24, + "*x": 1, + "*e": 1, + "*order": 1, + "*sor": 1, + "*eor": 1, + "*field": 1, + "*R": 1, + "*O": 1, + "*Q": 1, + "*rr": 1, + "*zero": 1, + "BN_CTX_start": 1, + "BN_CTX_get": 8, + "EC_GROUP_get_order": 1, + "BN_copy": 1, + "BN_mul_word": 1, + "BN_add": 1, + "ecsig": 3, + "EC_GROUP_get_curve_GFp": 1, + "BN_cmp": 1, + "R": 6, + "EC_POINT_set_compressed_coordinates_GFp": 1, + "O": 5, + "EC_POINT_is_at_infinity": 1, + "Q": 5, + "EC_GROUP_get_degree": 1, + "BN_bin2bn": 3, + "msg": 1, + "*msglen": 1, + "BN_rshift": 1, + "zero": 5, + "BN_zero": 1, + "BN_mod_sub": 1, + "rr": 4, + "BN_mod_inverse": 1, + "sor": 3, + "BN_mod_mul": 2, + "eor": 3, + "BN_CTX_end": 1, + "EC_KEY_set_conv_form": 1, + "POINT_CONVERSION_COMPRESSED": 1, + "EC_KEY_new_by_curve_name": 2, + "NID_secp256k1": 2, + "throw": 4, + "EC_KEY_dup": 1, + "b.pkey": 2, + "b.fSet": 2, + "EC_KEY_copy": 1, + "nSize": 2, + "vchSig.clear": 2, + "vchSig.resize": 2, + "Shrink": 1, + "fit": 1, + "actual": 1, + "fOk": 3, + "*sig": 2, + "ECDSA_do_sign": 1, + "sig": 11, + "nBitsR": 3, + "BN_num_bits": 2, + "nBitsS": 3, + "nRecId": 4, + "<4;>": 1, + "keyRec": 5, + "BN_bn2bin": 2, + "/8": 2, + "ECDSA_SIG_free": 2, + "vchSig.size": 2, + "nV": 6, + "<27>": 1, + "ECDSA_SIG_new": 1, + "EC_KEY_free": 1, + "ECDSA_verify": 1, + "key.SetCompactSignature": 1, + "key.GetPubKey": 1, + "fCompr": 3, + "secret": 2, + "key2": 1, + "key2.SetSecret": 1, + "key2.GetPubKey": 1, + "": 2, + "cout": 2, + "endl": 1, + "Field": 2, + "Free": 1, + "Black": 1, + "White": 1, + "Illegal": 1, + "Player": 1, + "": 1, + "": 1, + "*env_instance": 1, + "*Env": 1, + "env_instance": 3, + "QCoreApplication": 1, + "**envp": 1, + "**env": 1, + "envvar": 2, + "indexOfEquals": 5, + "env": 3, + "*env": 1, + "envvar.indexOf": 1, + "envvar.left": 1, + "envvar.mid": 1, + "m_map.insert": 1, + "LIBCANIH": 2, + "": 1, + "": 1, + "int64": 1, + "//#define": 1, + "dout": 2, + "cerr": 1, + "libcanister": 2, + "//the": 8, + "canmem": 22, + "generic": 1, + "container": 2, + "commonly": 1, + "//throughout": 1, + "canister": 14, + "framework": 1, + "hold": 1, + "uncertain": 1, + "//length": 1, + "contain": 1, + "null": 3, + "bytes.": 1, + "raw": 2, + "absolute": 1, + "//creates": 3, + "unallocated": 1, + "allocsize": 1, + "blank": 1, + "strdata": 1, + "//automates": 1, + "creation": 1, + "limited": 2, + "canmems": 1, + "//cleans": 1, + "zeromem": 1, + "//overwrites": 2, + "fragmem": 1, + "notation": 1, + "countlen": 1, + "//counts": 1, + "strings": 1, + "//removes": 1, + "nulls": 1, + "//returns": 2, + "//contains": 2, + "caninfo": 2, + "path": 8, + "//physical": 1, + "internalname": 1, + "//a": 1, + "numfiles": 1, + "files": 6, + "//necessary": 1, + "canfile": 7, + "//this": 1, + "holds": 2, + "//canister": 1, + "canister*": 1, + "parent": 1, + "//internal": 1, + "//use": 1, + "own.": 1, + "newline": 2, + "delimited": 2, + "container.": 1, + "TOC": 1, + "info": 2, + "general": 1, + "canfiles": 1, + "recommended": 1, + "modify": 1, + "//these": 1, + "enforced.": 1, + "canfile*": 1, + "//if": 1, + "routines": 1, + "anything": 1, + "//maximum": 1, + "//time": 1, + "whatever": 1, + "suits": 1, + "application.": 1, + "cachemax": 2, + "cachecnt": 1, + "//number": 1, + "cache": 2, + "//both": 1, + "initialize": 1, + "fspath": 3, + "//destroys": 1, + "flushing": 1, + "modded": 1, + "//open": 1, + "//does": 1, + "exist": 2, + "//close": 1, + "flush": 1, + "//deletes": 1, + "inside": 1, + "delFile": 1, + "//pulls": 1, + "getFile": 1, + "otherwise": 1, + "overwrites": 1, + "writeFile": 2, + "//get": 1, + "//list": 1, + "paths": 1, + "getTOC": 1, + "//brings": 1, + "back": 1, + "limit": 1, + "//important": 1, + "sCFID": 2, + "CFID": 2, + "avoid": 1, + "uncaching": 1, + "//really": 1, + "internally": 1, + "harm.": 1, + "cacheclean": 1, + "dFlush": 1 }, "COBOL": { - "program": 1, - "-": 19, - "id.": 1, - "hello.": 3, - "procedure": 1, - "division.": 1, - "display": 1, - ".": 3, - "stop": 1, - "run.": 1, "IDENTIFICATION": 2, "DIVISION.": 4, "PROGRAM": 2, + "-": 19, "ID.": 2, + "hello.": 3, "PROCEDURE": 2, "DISPLAY": 2, + ".": 3, "STOP": 2, "RUN.": 2, + "program": 1, + "id.": 1, + "procedure": 1, + "division.": 1, + "display": 1, + "stop": 1, + "run.": 1, "COBOL": 7, "TEST": 2, "RECORD.": 1, @@ -15145,71 +15148,88 @@ "array": 14, "int": 36, "string": 7, - "set": 12, - "f": 3, - "block": 1, - "(": 20, "a": 22, + "set": 12, + "(": 20, + ")": 20, + "nothing": 1, + "map": 8, "b": 7, "c": 9, - ")": 20, - "call": 1, + "code": 4, + "get": 4, + "container": 3, "bool": 6, "true": 1, "false": 1, "yes": 1, "no": 1, - "map": 8, "m": 3, - "float": 1, + "f": 3, + "block": 1, + "call": 1, "require": 1, "./stdio.cr": 1, + "float": 1, "self": 2, "child": 1, "under": 2, "parent": 1, - "get": 4, "x": 2, "just": 4, "-": 4, - "code": 4, - "eval": 2, - "nothing": 1, - "container": 3 + "eval": 2 }, "Clojure": { + "clj": 1, "(": 83, - "defn": 4, - "prime": 2, + "ns": 2, + "c2.svg": 2, + "use": 2, "[": 41, - "n": 9, + "c2.core": 2, + "only": 4, + "unify": 2, "]": 41, - "not": 3, + "c2.maths": 2, + "Pi": 2, + "Tau": 2, + "radians": 2, "-": 14, - "any": 1, - "zero": 1, - "map": 2, - "#": 1, - "rem": 2, - "%": 1, + "per": 2, + "degree": 2, + "sin": 2, + "cos": 2, + "mean": 2, ")": 84, - "range": 3, + "cljs": 3, + "require": 1, + "c2.dom": 1, + "as": 1, + "dom": 1, ";": 8, - "while": 3, - "stops": 1, - "at": 1, - "the": 1, - "first": 2, - "collection": 1, - "element": 1, - "that": 1, - "evaluates": 1, - "to": 1, - "false": 2, - "like": 1, - "take": 1, + "Stub": 1, "for": 2, + "float": 2, + "fn": 2, + "which": 1, + "does": 1, + "not": 3, + "exist": 1, + "on": 1, + "runtime": 1, + "def": 1, + "identity": 1, + "defn": 4, + "xy": 1, + "coordinates": 7, + "cond": 1, + "and": 1, + "vector": 1, + "count": 3, + "map": 2, "x": 6, + "y": 1, "html": 1, "head": 1, "meta": 1, @@ -15224,25 +15244,27 @@ "body": 1, "div.nav": 1, "p": 1, - "into": 2, - "array": 3, - "aseq": 8, - "nil": 1, - "type": 2, - "let": 1, - "count": 3, - "a": 3, - "make": 1, - "loop": 1, - "seq": 1, - "i": 4, - "if": 1, - "<": 1, - "do": 1, - "aset": 1, - "recur": 1, - "next": 1, - "inc": 1, + "prime": 2, + "n": 9, + "any": 1, + "zero": 1, + "#": 1, + "rem": 2, + "%": 1, + "range": 3, + "while": 3, + "stops": 1, + "at": 1, + "the": 1, + "first": 2, + "collection": 1, + "element": 1, + "that": 1, + "evaluates": 1, + "to": 1, + "false": 2, + "like": 1, + "take": 1, "defprotocol": 1, "ISound": 4, "sound": 5, @@ -15251,48 +15273,12 @@ "_": 3, "Dog": 1, "extend": 1, + "type": 2, "default": 1, "rand": 2, "scm*": 1, "random": 1, "real": 1, - "clj": 1, - "ns": 2, - "c2.svg": 2, - "use": 2, - "c2.core": 2, - "only": 4, - "unify": 2, - "c2.maths": 2, - "Pi": 2, - "Tau": 2, - "radians": 2, - "per": 2, - "degree": 2, - "sin": 2, - "cos": 2, - "mean": 2, - "cljs": 3, - "require": 1, - "c2.dom": 1, - "as": 1, - "dom": 1, - "Stub": 1, - "float": 2, - "fn": 2, - "which": 1, - "does": 1, - "exist": 1, - "on": 1, - "runtime": 1, - "def": 1, - "identity": 1, - "xy": 1, - "coordinates": 7, - "cond": 1, - "and": 1, - "vector": 1, - "y": 1, "deftest": 1, "function": 1, "tests": 1, @@ -15305,7 +15291,24 @@ "keys": 2, "baz": 4, "vals": 1, - "filter": 1 + "filter": 1, + "into": 2, + "array": 3, + "aseq": 8, + "nil": 1, + "let": 1, + "a": 3, + "make": 1, + "loop": 1, + "seq": 1, + "i": 4, + "if": 1, + "<": 1, + "do": 1, + "aset": 1, + "recur": 1, + "next": 1, + "inc": 1 }, "CoffeeScript": { "CoffeeScript": 1, @@ -15376,144 +15379,7 @@ "addEventListener": 1, "no": 3, "attachEvent": 1, - "class": 11, - "Animal": 3, - "constructor": 6, - "@name": 2, - "move": 3, - "meters": 2, - "alert": 4, - "Snake": 2, - "extends": 6, - "super": 4, - "Horse": 2, - "sam": 1, - "tom": 1, - "sam.move": 1, - "tom.move": 1, "#": 35, - "fs": 2, - "path": 3, - "Lexer": 3, - "RESERVED": 3, - "parser": 1, - "vm": 1, - "require.extensions": 3, - "module": 1, - "filename": 6, - "content": 4, - "compile": 5, - "fs.readFileSync": 1, - "module._compile": 1, - "require.registerExtension": 2, - "exports.VERSION": 1, - "exports.RESERVED": 1, - "exports.helpers": 2, - "exports.compile": 1, - "merge": 1, - "try": 3, - "js": 5, - "parser.parse": 3, - "lexer.tokenize": 3, - ".compile": 1, - "options.header": 1, - "catch": 2, - "err": 20, - "err.message": 2, - "options.filename": 5, - "header": 1, - "exports.tokens": 1, - "exports.nodes": 1, - "source": 5, - "typeof": 2, - "exports.run": 1, - "mainModule": 1, - "require.main": 1, - "mainModule.filename": 4, - "process.argv": 1, - "then": 24, - "fs.realpathSync": 2, - "mainModule.moduleCache": 1, - "and": 20, - "mainModule.paths": 1, - "._nodeModulePaths": 1, - "path.dirname": 2, - "path.extname": 1, - "isnt": 7, - "mainModule._compile": 2, - "exports.eval": 1, - "code.trim": 1, - "Script": 2, - "vm.Script": 1, - "options.sandbox": 4, - "instanceof": 2, - "Script.createContext": 2, - ".constructor": 1, - "sandbox": 8, - "k": 4, - "v": 4, - "own": 2, - "sandbox.global": 1, - "sandbox.root": 1, - "sandbox.GLOBAL": 1, - "global": 3, - "sandbox.__filename": 3, - "||": 3, - "sandbox.__dirname": 1, - "sandbox.module": 2, - "sandbox.require": 2, - "Module": 2, - "_module": 3, - "options.modulename": 1, - "_require": 2, - "Module._load": 1, - "_module.filename": 1, - "r": 4, - "Object.getOwnPropertyNames": 1, - "_require.paths": 1, - "_module.paths": 1, - "Module._nodeModulePaths": 1, - "process.cwd": 1, - "_require.resolve": 1, - "request": 2, - "Module._resolveFilename": 1, - "o": 4, - "o.bare": 1, - "ensure": 1, - "value": 25, - "vm.runInThisContext": 1, - "vm.runInContext": 1, - "lexer": 1, - "parser.lexer": 1, - "lex": 1, - "tag": 33, - "@yytext": 1, - "@yylineno": 1, - "@tokens": 7, - "@pos": 2, - "setInput": 1, - "upcomingInput": 1, - "parser.yy": 1, - "console.log": 1, - "number": 13, - "opposite": 2, - "square": 4, - "x": 6, - "*": 21, - "list": 2, - "math": 1, - "root": 1, - "Math.sqrt": 1, - "cube": 1, - "race": 1, - "winner": 2, - "runners...": 1, - "print": 1, - "runners": 1, - "elvis": 1, - "cubes": 1, - "math.cube": 1, - "num": 2, "Rewriter": 2, "INVERSES": 2, "count": 5, @@ -15521,6 +15387,8 @@ "compact": 1, "last": 3, "exports.Lexer": 1, + "class": 11, + "Lexer": 3, "tokenize": 1, "opts": 1, "WHITESPACE.test": 1, @@ -15533,6 +15401,7 @@ "The": 7, "remainder": 1, "the": 4, + "source": 5, "code.": 1, "@line": 4, "opts.line": 1, @@ -15555,10 +15424,12 @@ "pairing": 1, "up": 1, "tokens.": 1, + "@tokens": 7, "Stream": 1, "parsed": 1, "tokens": 5, "form": 1, + "value": 25, "line": 6, ".": 13, "i": 8, @@ -15577,6 +15448,7 @@ "@literalToken": 1, "@closeIndentation": 1, "@error": 10, + "tag": 33, "@ends.pop": 1, "opts.rewrite": 1, "off": 1, @@ -15587,6 +15459,7 @@ "input": 1, "id": 16, "colon": 3, + "and": 20, "@tag": 3, "@token": 12, "id.length": 1, @@ -15602,17 +15475,21 @@ "yes": 5, "UNARY": 4, "RELATION": 3, + "isnt": 7, "@value": 1, "@tokens.pop": 1, "JS_FORBIDDEN": 1, "String": 1, "id.reserved": 1, + "RESERVED": 3, "COFFEE_ALIAS_MAP": 1, "COFFEE_ALIASES": 1, "switch": 7, + "then": 24, "input.length": 1, "numberToken": 1, "NUMBER.exec": 1, + "number": 13, "BOX": 1, "/.test": 4, "/E/.test": 1, @@ -15622,6 +15499,7 @@ "lexedLength": 2, "number.length": 1, "octalLiteral": 2, + "o": 4, "/.exec": 2, "parseInt": 5, ".toString": 3, @@ -15639,6 +15517,7 @@ "@escapeLines": 1, "octalEsc": 1, "|": 21, + "*": 21, "string.length": 1, "heredocToken": 1, "HEREDOC.exec": 1, @@ -15748,14 +15627,21 @@ "&": 4, "false": 4, "delete": 1, + "typeof": 2, + "instanceof": 2, "break": 1, "debugger": 1, + "try": 3, + "catch": 2, "finally": 2, + "extends": 6, + "super": 4, "undefined": 1, "until": 1, "loop": 1, "by": 1, "&&": 1, + "||": 3, "case": 1, "default": 1, "function": 2, @@ -15832,7 +15718,21 @@ "BOOL": 1, "NOT_REGEX.concat": 1, "CALLABLE.concat": 1, + "Animal": 3, + "constructor": 6, + "@name": 2, + "move": 3, + "meters": 2, + "alert": 4, + "Snake": 2, + "Horse": 2, + "sam": 1, + "tom": 1, + "sam.move": 1, + "tom.move": 1, + "console.log": 1, "async": 1, + "fs": 2, "nack": 1, "bufferLines": 3, "pause": 2, @@ -15860,6 +15760,7 @@ "@terminate": 2, "queryRestartFile": 1, "fs.stat": 1, + "err": 20, "stats": 1, "@mtime": 5, "lastMtime": 2, @@ -15873,6 +15774,7 @@ "loadScriptEnvironment": 1, "env": 18, "async.reduce": 1, + "filename": 6, "scriptExists": 2, "loadRvmEnvironment": 1, "rvmrcExists": 2, @@ -15891,6 +15793,7 @@ "@quit": 3, "@loadEnvironment": 1, "@logger.error": 3, + "err.message": 2, "@pool": 2, "nack.createPool": 1, "size": 1, @@ -15935,6 +15838,106 @@ "contents.indexOf": 1, "fs.writeFile": 1, "@rvmBoilerplate": 1, + "path": 3, + "parser": 1, + "vm": 1, + "require.extensions": 3, + "module": 1, + "content": 4, + "compile": 5, + "fs.readFileSync": 1, + "module._compile": 1, + "require.registerExtension": 2, + "exports.VERSION": 1, + "exports.RESERVED": 1, + "exports.helpers": 2, + "exports.compile": 1, + "merge": 1, + "js": 5, + "parser.parse": 3, + "lexer.tokenize": 3, + ".compile": 1, + "options.header": 1, + "options.filename": 5, + "header": 1, + "exports.tokens": 1, + "exports.nodes": 1, + "exports.run": 1, + "mainModule": 1, + "require.main": 1, + "mainModule.filename": 4, + "process.argv": 1, + "fs.realpathSync": 2, + "mainModule.moduleCache": 1, + "mainModule.paths": 1, + "._nodeModulePaths": 1, + "path.dirname": 2, + "path.extname": 1, + "mainModule._compile": 2, + "exports.eval": 1, + "code.trim": 1, + "Script": 2, + "vm.Script": 1, + "options.sandbox": 4, + "Script.createContext": 2, + ".constructor": 1, + "sandbox": 8, + "k": 4, + "v": 4, + "own": 2, + "sandbox.global": 1, + "sandbox.root": 1, + "sandbox.GLOBAL": 1, + "global": 3, + "sandbox.__filename": 3, + "sandbox.__dirname": 1, + "sandbox.module": 2, + "sandbox.require": 2, + "Module": 2, + "_module": 3, + "options.modulename": 1, + "_require": 2, + "Module._load": 1, + "_module.filename": 1, + "r": 4, + "Object.getOwnPropertyNames": 1, + "_require.paths": 1, + "_module.paths": 1, + "Module._nodeModulePaths": 1, + "process.cwd": 1, + "_require.resolve": 1, + "request": 2, + "Module._resolveFilename": 1, + "o.bare": 1, + "ensure": 1, + "vm.runInThisContext": 1, + "vm.runInContext": 1, + "lexer": 1, + "parser.lexer": 1, + "lex": 1, + "@yytext": 1, + "@yylineno": 1, + "@pos": 2, + "setInput": 1, + "upcomingInput": 1, + "parser.yy": 1, + "opposite": 2, + "square": 4, + "x": 6, + "list": 2, + "math": 1, + "root": 1, + "Math.sqrt": 1, + "cube": 1, + "race": 1, + "winner": 2, + "runners...": 1, + "print": 1, + "runners": 1, + "elvis": 1, + "cubes": 1, + "math.cube": 1, + "num": 2, "dnsserver": 1, "exports.Server": 1, "Server": 2, @@ -16024,9 +16027,48 @@ }, "Common Lisp": { ";": 152, + "-": 161, + "*": 2, + "lisp": 1, + "(": 365, + "in": 23, + "package": 1, + "foo": 2, + ")": 372, + "Header": 1, + "comment.": 4, + "defvar": 4, + "*foo*": 1, + "eval": 6, + "when": 4, + "execute": 1, + "compile": 1, + "toplevel": 2, + "load": 1, + "defun": 23, + "add": 1, + "x": 47, + "&": 8, + "optional": 2, + "y": 2, + "key": 1, + "z": 2, + "declare": 1, + "ignore": 1, + "Inline": 1, + "+": 35, + "or": 4, + "#": 15, + "|": 9, + "Multi": 1, + "line": 2, + "defmacro": 5, + "body": 8, + "b": 6, + "if": 14, + "After": 1, "@file": 1, "macros": 2, - "-": 161, "advanced.cl": 1, "@breif": 1, "Advanced": 1, @@ -16038,12 +16080,8 @@ "Macro": 1, "definition": 1, "skeleton": 1, - "(": 365, - "defmacro": 5, "name": 6, "parameter*": 1, - ")": 372, - "body": 8, "form*": 1, "Note": 2, "that": 5, @@ -16053,7 +16091,6 @@ "most": 2, "often": 1, "used": 2, - "in": 23, "the": 35, "form": 1, "primep": 4, @@ -16062,22 +16099,18 @@ "number": 2, "for": 3, "prime": 12, - "defun": 23, "n": 8, - "if": 14, "<": 1, "return": 3, "from": 8, "do": 9, "i": 8, - "+": 35, "p": 10, "t": 7, "not": 6, "zerop": 1, "mod": 1, "sqrt": 1, - "when": 4, "next": 11, "bigger": 1, "than": 1, @@ -16111,7 +16144,6 @@ "arguments": 1, "var": 49, "range": 4, - "&": 8, "rest": 5, "let": 6, "first": 5, @@ -16149,8 +16181,6 @@ "names": 2, "collect": 1, "gensym": 1, - "#": 15, - "|": 9, "ESCUELA": 1, "POLITECNICA": 1, "SUPERIOR": 1, @@ -16170,7 +16200,6 @@ "Norvig": 1, "Global": 1, "variables": 6, - "defvar": 4, "*hypothesis": 1, "list*": 7, "*rule": 4, @@ -16182,7 +16211,6 @@ "no": 6, "bindings": 45, "lambda": 4, - "b": 6, "mapcar": 2, "man": 3, "luis": 1, @@ -16192,7 +16220,6 @@ "daniel": 1, "laura": 1, "facts": 1, - "x": 47, "aux": 3, "unify": 12, "hypothesis": 10, @@ -16263,7 +16290,6 @@ "E.49": 2, "XS.50": 2, "R2.": 1, - "eval": 6, "ifs": 1, "NOT": 2, "question": 1, @@ -16292,7 +16318,6 @@ "Auxiliary": 1, "Functions": 1, "cond": 3, - "or": 4, "get": 5, "lookup": 5, "occurs": 5, @@ -16317,7 +16342,6 @@ "anywhere": 6, "predicate": 8, "tree": 11, - "optional": 2, "so": 4, "far": 4, "atom": 3, @@ -16329,28 +16353,7 @@ "cons/cons": 1, "expresion": 2, "some": 1, - "EOF": 1, - "*": 2, - "lisp": 1, - "package": 1, - "foo": 2, - "Header": 1, - "comment.": 4, - "*foo*": 1, - "execute": 1, - "compile": 1, - "toplevel": 2, - "load": 1, - "add": 1, - "y": 2, - "key": 1, - "z": 2, - "declare": 1, - "ignore": 1, - "Inline": 1, - "Multi": 1, - "line": 2, - "After": 1 + "EOF": 1 }, "Component Pascal": { "MODULE": 2, @@ -16528,371 +16531,467 @@ "ObxFact.": 1 }, "Coq": { - "Inductive": 41, - "day": 9, - "Type": 86, - "|": 457, - "monday": 5, - "tuesday": 3, - "wednesday": 3, - "thursday": 3, - "friday": 3, - "saturday": 3, - "sunday": 2, - "day.": 1, - "Definition": 46, - "next_weekday": 3, - "(": 1248, - "d": 6, - ")": 1249, - "match": 70, - "with": 223, - "end.": 52, - "Example": 37, - "test_next_weekday": 1, - "tuesday.": 1, - "Proof.": 208, - "simpl.": 70, - "reflexivity.": 199, - "Qed.": 194, - "bool": 38, - "true": 68, - "false": 48, - "bool.": 1, - "negb": 10, - "b": 89, - "andb": 8, - "b1": 35, - "b2": 23, - "orb": 8, - "test_orb1": 1, - "true.": 16, - "test_orb2": 1, - "false.": 12, - "test_orb3": 1, - "test_orb4": 1, - "nandb": 5, - "end": 16, - "test_nandb1": 1, - "test_nandb2": 1, - "test_nandb3": 1, - "test_nandb4": 1, - "andb3": 5, - "b3": 2, - "test_andb31": 1, - "test_andb32": 1, - "test_andb33": 1, - "test_andb34": 1, - "Module": 11, - "Playground1.": 5, - "nat": 108, - "O": 98, - "S": 186, - "-": 508, - "nat.": 4, - "pred": 3, - "n": 369, - "minustwo": 1, - "Fixpoint": 36, - "evenb": 5, - "oddb": 5, - ".": 433, - "test_oddb1": 1, - "test_oddb2": 1, - "plus": 10, - "m": 201, - "mult": 3, - "minus": 3, - "_": 67, - "exp": 2, - "base": 3, - "power": 2, - "p": 81, - "factorial": 2, - "test_factorial1": 1, - "Notation": 39, - "x": 266, - "y": 116, - "at": 17, - "level": 11, - "left": 6, - "associativity": 7, - "nat_scope.": 3, - "beq_nat": 24, - "forall": 248, - "+": 227, - "n.": 44, - "Theorem": 115, - "plus_O_n": 1, - "intros": 258, - "plus_1_1": 1, - "mult_0_1": 1, - "*": 59, - "O.": 5, - "plus_id_example": 1, - "m.": 21, - "H.": 100, - "rewrite": 241, - "plus_id_exercise": 1, - "o": 25, - "o.": 4, - "H": 76, - "mult_0_plus": 1, - "plus_O_n.": 1, - "mult_1_plus": 1, - "plus_1_1.": 1, - "mult_1": 1, - "induction": 81, - "as": 77, - "[": 170, - "plus_1_neq_0": 1, - "destruct": 94, - "]": 173, - "Case": 51, - "IHn": 12, - "plus_comm": 3, - "plus_distr.": 1, - "beq_nat_refl": 3, - "plus_rearrange": 1, - "q": 15, - "q.": 2, - "assert": 68, - "plus_comm.": 3, - "plus_swap": 2, - "p.": 9, - "plus_assoc.": 4, - "H2": 12, - "H2.": 20, - "plus_swap.": 2, - "<->": 31, - "IHm": 2, - "reflexivity": 16, - "Qed": 23, - "mult_comm": 2, - "Proof": 12, - "0": 5, - "simpl": 116, - "mult_0_r.": 4, - "mult_distr": 1, - "mult_1_distr.": 1, - "mult_1.": 1, - "bad": 1, - "zero_nbeq_S": 1, - "andb_false_r": 1, - "plus_ble_compat_1": 1, - "ble_nat": 6, - "IHp.": 2, - "S_nbeq_0": 1, - "mult_1_1": 1, - "plus_0_r.": 1, - "all3_spec": 1, - "c": 70, - "c.": 5, - "b.": 14, - "Lemma": 51, - "mult_plus_1": 1, - "IHm.": 1, - "mult_mult": 1, - "IHn.": 3, - "mult_plus_1.": 1, - "mult_plus_distr_r": 1, - "mult_mult.": 3, - "H1": 18, - "plus_assoc": 1, - "H1.": 31, - "H3": 4, - "H3.": 5, - "mult_assoc": 1, - "mult_plus_distr_r.": 1, - "bin": 9, - "BO": 4, - "D": 9, - "M": 4, - "bin.": 1, - "incbin": 2, - "bin2un": 3, - "bin_comm": 1, - "End": 15, "Require": 17, - "Import": 11, - "List": 2, - "Multiset": 2, - "PermutSetoid": 1, - "Relations": 2, - "Sorting.": 1, - "Section": 4, - "defs.": 2, - "Variable": 7, - "A": 113, - "Type.": 3, - "leA": 25, - "relation": 19, - "A.": 6, - "eqA": 29, - "Let": 8, - "gtA": 1, - "y.": 15, - "Hypothesis": 7, - "leA_dec": 4, - "{": 39, - "}": 35, - "eqA_dec": 26, - "leA_refl": 1, - "leA_trans": 2, - "z": 14, - "z.": 6, - "leA_antisym": 1, - "Hint": 9, - "Resolve": 5, - "leA_refl.": 1, - "Immediate": 1, - "leA_antisym.": 1, - "emptyBag": 4, - "EmptyBag": 2, - "singletonBag": 10, - "SingletonBag": 2, - "eqA_dec.": 2, - "Tree": 24, - "Tree_Leaf": 9, - "Tree_Node": 11, - "Tree.": 1, - "leA_Tree": 16, - "a": 207, - "t": 93, - "True": 1, - "T1": 25, - "T2": 20, - "leA_Tree_Leaf": 5, - "Tree_Leaf.": 1, - ";": 375, - "auto": 73, - "datatypes.": 47, - "leA_Tree_Node": 1, - "G": 6, - "is_heap": 18, - "Prop": 17, - "nil_is_heap": 5, - "node_is_heap": 7, - "invert_heap": 3, - "/": 41, - "T2.": 1, - "inversion": 104, - "is_heap_rect": 1, - "P": 32, - "T": 49, - "T.": 9, - "simple": 7, - "PG": 2, - "PD": 2, - "PN.": 2, - "elim": 21, - "H4": 7, - "intros.": 27, - "apply": 340, - "X0": 2, - "is_heap_rec": 1, - "Set": 4, - "X": 191, - "low_trans": 3, - "merge_lem": 3, - "l1": 89, - "l2": 73, - "list": 78, - "merge_exist": 5, - "l": 379, - "Sorted": 5, - "meq": 15, - "list_contents": 30, - "munion": 18, - "HdRel": 4, - "l2.": 8, - "Morphisms.": 2, - "Instance": 7, - "Equivalence": 2, - "@meq": 4, - "constructor": 6, - "red.": 1, - "meq_trans.": 1, - "Defined.": 1, - "Proper": 5, - "@munion": 1, - "now": 24, - "meq_congr.": 1, - "merge": 5, - "fix": 2, - "l1.": 5, - "rename": 2, - "into": 2, - "l.": 26, - "revert": 5, - "H0.": 24, - "a0": 15, - "l0": 7, - "Sorted_inv": 2, - "in": 221, - "H0": 16, - "clear": 7, - "merge0.": 2, - "using": 18, - "cons_sort": 2, - "cons_leA": 2, - "munion_ass.": 2, - "cons_leA.": 2, - "@HdRel_inv": 2, - "trivial": 15, - "merge0": 1, - "setoid_rewrite": 2, - "munion_ass": 1, - "munion_comm.": 2, - "repeat": 11, - "munion_comm": 1, - "contents": 12, - "multiset": 2, - "t1": 48, - "t2": 51, - "equiv_Tree": 1, - "insert_spec": 3, - "insert_exist": 4, - "insert": 2, - "unfold": 58, - "T0": 2, - "treesort_twist1": 1, - "T3": 2, - "HeapT3": 1, - "ConT3": 1, - "LeA.": 1, - "LeA": 1, - "treesort_twist2": 1, - "build_heap": 3, - "heap_exist": 3, - "list_to_heap": 2, - "nil": 46, - "exact": 4, - "nil_is_heap.": 1, - "i": 11, - "meq_trans": 10, - "meq_right": 2, - "meq_sym": 2, - "flat_spec": 3, - "flat_exist": 3, - "heap_to_list": 2, - "h": 14, - "s1": 20, - "i1": 15, - "m1": 1, - "s2": 2, - "i2": 10, - "m2.": 1, - "meq_congr": 1, - "munion_rotate.": 1, - "treesort": 1, - "&": 21, - "permutation": 43, - "intro": 27, - "permutation.": 1, - "exists": 60, "Export": 10, "SfLib.": 2, + "Module": 11, + "STLC.": 1, + "Inductive": 41, + "ty": 7, + "Type": 86, + "|": 457, + "ty_Bool": 10, + "ty_arrow": 7, + "-": 508, + "ty.": 2, + "tm": 43, + "tm_var": 6, + "id": 7, + "tm_app": 7, + "tm_abs": 9, + "tm_true": 8, + "tm_false": 5, + "tm_if": 10, + "tm.": 3, + "Tactic": 9, + "Notation": 39, + "tactic": 9, + "(": 1248, + "first": 18, + ")": 1249, + "ident": 9, + "c": 70, + ";": 375, + "[": 170, + "Case_aux": 38, + "]": 173, + ".": 433, + "a": 207, + "Id": 7, + "b": 89, + "idB": 2, + "idBB": 2, + "idBBBB": 2, + "k": 7, + "value": 25, + "Prop": 17, + "v_abs": 1, + "forall": 248, + "x": 266, + "T": 49, + "t": 93, + "t_true": 1, + "t_false": 1, + "tm_false.": 3, + "Hint": 9, + "Constructors": 3, + "value.": 1, + "Fixpoint": 36, + "subst": 7, + "s": 13, + "match": 70, + "with": 223, + "then": 9, + "else": 9, + "if": 10, + "beq_id": 14, + "t2": 51, + "t1": 48, + "ST_App2": 1, + "v1": 7, + "t3": 6, + "where": 6, + "step": 9, + "stepmany": 4, + "refl_step_closure": 11, + "at": 17, + "level": 11, + "step.": 3, + "Lemma": 51, + "step_example3": 1, + "*": 59, + "idB.": 1, + "Proof.": 208, + "eapply": 8, + "rsc_step.": 2, + "apply": 340, + "ST_App1.": 2, + "ST_AppAbs.": 3, + "v_abs.": 2, + "simpl.": 70, + "rsc_refl.": 4, + "Qed.": 194, + "Definition": 46, + "context": 1, + "partial_map": 4, + "Context.": 1, + "A": 113, + "option": 6, + "A.": 6, + "empty": 3, + "{": 39, + "}": 35, + "fun": 17, + "_": 67, + "None": 9, + "extend": 1, + "Gamma": 10, + "Some": 21, + "S": 186, + "has_type": 4, + "appears_free_in": 1, + "S.": 1, + "Proof": 12, + "auto.": 47, + "intros.": 27, + "generalize": 13, + "dependent": 6, + "HT": 1, + "T_Var.": 1, + "rewrite": 241, + "extend_neq": 1, + "in": 221, + "H2.": 20, + "assumption.": 61, + "Heqe.": 3, + "reflexivity.": 199, + "rename": 2, + "i": 11, + "into": 2, + "y.": 15, + "T_Abs.": 1, + "remember": 12, + "y": 116, + "as": 77, + "e.": 15, + "destruct": 94, + "context_invariance...": 2, + "beq_id_eq": 4, + "subst.": 43, + "intros": 258, + "Hafi.": 2, + "unfold": 58, + "extend.": 2, + "IHt.": 1, + "x0": 14, + "Coiso1.": 2, + "Coiso2.": 3, + "eauto": 10, + "HeqCoiso1.": 1, + "HeqCoiso2.": 1, + "assert": 68, + "<": 76, + "beq_id_false_not_eq.": 1, + "ex_falso_quodlibet.": 1, + "H0.": 24, + "Theorem": 115, + "preservation": 1, + "HT.": 1, + "H1.": 31, + "inversion": 104, + "substitution_preserves_typing": 1, + "T11.": 4, + "HT1.": 1, + "T_App": 2, + "IHHT1.": 1, + "IHHT2.": 1, + "H.": 100, + "/": 41, + "exists": 60, + "t.": 4, + "tm_cases": 1, + "induction": 81, + "Case": 51, + "Ht": 1, + "Ht.": 3, + "right.": 9, + "IHt1": 2, + "T11": 2, + "IHt2": 3, + "H3.": 5, + "T0": 2, + "ST_App2.": 1, + "ty_Bool.": 1, + "T.": 9, + "IHt3": 1, + "t2.": 4, + "ST_IfTrue.": 1, + "t3.": 2, + "ST_IfFalse.": 1, + "ST_If.": 2, + "types_unique": 1, + "T1": 25, + "T12": 2, + "IHhas_type.": 1, + "IHhas_type1.": 1, + "IHhas_type2.": 1, + "Logic.": 1, + "Import": 11, + "Playground1.": 5, + "relation": 19, + "X": 191, + "Prop.": 1, + "partial_function": 6, + "R": 54, + "y1": 6, + "y2": 5, + "y2.": 3, + "next_nat_partial_function": 1, + "next_nat.": 1, + "partial_function.": 5, + "P": 32, + "Q.": 2, + "P.": 5, + "le_not_a_partial_function": 1, + "le": 1, + "not.": 3, + "O": 98, + "Nonsense.": 4, + "H": 76, + "O.": 5, + "le_n.": 6, + "le_S.": 4, + "total_relation_not_partial_function": 1, + "total_relation": 1, + "total_relation1.": 2, + "empty_relation_not_partial_funcion": 1, + "empty_relation.": 1, + "reflexive": 5, + "a.": 6, + "le_reflexive": 1, + "le.": 4, + "reflexive.": 1, + "n.": 44, + "transitive": 8, + "le_trans": 4, + "n": 369, + "m": 201, + "o": 25, + "Hnm": 3, + "Hmo.": 4, + "Hnm.": 3, + "IHHmo.": 1, + "lt_trans": 4, + "lt.": 2, + "transitive.": 1, + "le_S": 6, + "Hm": 1, + "o.": 4, + "le_Sn_le": 2, + "<=>": 12, + "m.": 21, + "le_S_n": 2, + "Sn_le_Sm__n_le_m.": 1, + "le_Sn_n": 5, + "not": 1, + "IHn": 12, + "Qed": 23, + "TODO": 1, + "lt": 3, + "Hmo": 1, + "symmetric": 2, + "antisymmetric": 3, + "b.": 14, + "le_antisymmetric": 1, + "H1": 18, + "Sn_le_Sm__n_le_m": 2, + "IHb": 1, + "*.": 110, + "equivalence": 1, + "order": 2, + "preorder": 1, + "le_order": 1, + "order.": 1, + "split.": 17, + "le_reflexive.": 1, + "le_antisymmetric.": 1, + "le_trans.": 1, + "clos_refl_trans": 8, + "rt_step": 1, + "rt_refl": 1, + "rt_trans": 3, + "z": 14, + "z.": 6, + "next_nat_closure_is_le": 1, + "<->": 31, + "next_nat": 1, + "intro": 27, + "rt_refl.": 2, + "IHle.": 1, + "rt_step.": 2, + "nn.": 1, + "IHclos_refl_trans1.": 2, + "IHclos_refl_trans2.": 2, + "rsc_refl": 1, + "rsc_step": 4, + "rsc_R": 2, + "r.": 3, + "rsc_trans": 4, + "X.": 4, + "IHrefl_step_closure": 1, + "rtc_rsc_coincide": 1, + "IHrefl_step_closure.": 1, + "Imp.": 1, + "Relations.": 1, + "tm_const": 45, + "nat": 108, + "tm_plus": 30, + "SimpleArith0.": 2, + "eval": 8, + "a1": 56, + "a2": 62, + "+": 227, + "end.": 52, + "End": 15, + "SimpleArith1.": 2, + "Reserved": 4, + "left": 6, + "associativity": 7, + "E_Const": 2, + "E_Plus": 2, + "n1": 45, + "n2": 41, + "plus": 10, + "Example": 37, + "test_step_1": 1, + "ST_Plus1.": 2, + "ST_PlusConstConst.": 3, + "test_step_2": 1, + "ST_Plus2.": 2, + "step_deterministic": 1, + "Hy1": 2, + "Hy2.": 2, + "step_cases": 4, + "Hy2": 3, + "SCase.": 3, + "SCase": 24, + "H0": 16, + "Hy1.": 5, + "IHHy1": 2, + "SimpleArith2.": 1, + "v_const": 4, + "ST_PlusConstConst": 3, + "ST_Plus1": 2, + "0": 5, + "reflexivity": 16, + "assumption": 10, + "strong_progress": 2, + "value_not_same_as_normal_form": 2, + "normal_form": 3, + "normal_form.": 2, + "v_funny.": 1, + "Temp1.": 1, + "Temp2.": 1, + "ST_Funny": 1, + "H4.": 2, + "Temp3.": 1, + "Temp4.": 2, + "v_true": 1, + "v_false": 1, + "ST_IfTrue": 1, + "ST_IfFalse": 1, + "ST_If": 1, + "bool_step_prop4": 1, + "bool_step_prop4_holds": 1, + "bool_step_prop4.": 2, + "ST_ShortCut.": 1, + "constructor.": 16, + "left.": 3, + "IHt1.": 1, + "Temp5.": 1, + "normalizing": 1, + "H2": 12, + "H11": 2, + "H12": 2, + "H21": 3, + "H22": 2, + "nf_same_as_value": 3, + "H12.": 1, + "H22.": 1, + "H11.": 1, + "split": 14, + "l": 379, + "stepmany_congr_1": 1, + "stepmany_congr2": 1, + "r": 11, + "eval__value": 1, + "HE.": 1, + "eval_cases": 1, + "HE": 1, + "v_const.": 1, + "Basics.": 2, + "NatList.": 2, + "natprod": 5, + "pair": 7, + "natprod.": 1, + "fst": 3, + "p": 81, + "snd": 3, + "swap_pair": 1, + "surjective_pairing": 1, + "repeat": 11, + "count": 7, + "beq_nat": 24, + "v": 28, + "remove_one": 3, + "end": 16, + "test_remove_one1": 1, + "remove_all": 2, + "bag": 3, + "nil": 46, + "true": 68, + "false": 48, + "app_ass": 1, + "l1": 89, + "l2": 73, + "l3": 12, + "natlist": 7, + "l3.": 1, + "cons": 26, + "remove_decreases_count": 1, + "ble_nat": 6, + "true.": 16, + "s.": 4, + "ble_n_Sn.": 1, + "IHs.": 2, + "natoption": 5, + "natoption.": 1, + "index": 3, + "option_elim": 2, + "d": 6, + "hd_opt": 8, + "test_hd_opt1": 2, + "None.": 2, + "test_hd_opt2": 2, + "option_elim_hd": 1, + "head": 1, + "l.": 26, + "beq_natlist": 5, + "bool": 38, + "r1": 2, + "v2": 2, + "r2": 2, + "test_beq_natlist1": 1, + "test_beq_natlist2": 1, + "beq_natlist_refl": 1, + "beq_nat_refl": 3, + "IHl.": 7, + "silly1": 1, + "eq1": 6, + "eq2.": 9, + "eq2": 1, + "silly2a": 1, + "q": 15, + "eq1.": 5, + "silly_ex": 1, + "evenb": 5, + "oddb": 5, + "silly3": 1, + "symmetry.": 2, + "rev_exercise": 1, + "rev_involutive.": 1, + "beq_nat_sym": 2, + "l1.": 5, "AExp.": 2, "aexp": 30, "ANum": 18, @@ -16910,31 +17009,27 @@ "bexp.": 1, "aeval": 46, "e": 53, - "a1": 56, - "a2": 62, "test_aeval1": 1, "beval": 16, + "b1": 35, + "negb": 10, + "b2": 23, + "andb": 8, "optimize_0plus": 15, "e2": 54, "e1": 58, "test_optimize_0plus": 1, "optimize_0plus_sound": 4, - "e.": 15, "e1.": 1, - "SCase": 24, "SSCase": 3, "IHe2.": 10, + "simpl": 116, "IHe1.": 11, "aexp_cases": 3, "try": 17, "IHe1": 6, "IHe2": 6, "optimize_0plus_all": 2, - "Tactic": 9, - "tactic": 9, - "first": 18, - "ident": 9, - "Case_aux": 38, "optimize_0plus_all_sound": 1, "bexp_cases": 4, "optimize_and": 5, @@ -16944,13 +17039,9 @@ "aevalR": 18, "E_Anum": 1, "E_APlus": 2, - "n1": 45, - "n2": 41, "E_AMinus": 2, "E_AMult": 2, - "Reserved": 4, "E_ANum": 1, - "where": 6, "bevalR": 11, "E_BTrue": 1, "E_BFalse": 1, @@ -16959,39 +17050,28 @@ "E_BNot": 1, "E_BAnd": 1, "aeval_iff_aevalR": 9, - "split.": 17, - "subst": 7, - "generalize": 13, - "dependent": 6, + "constructor": 6, "IHa1": 1, "IHa2": 1, "beval_iff_bevalR": 1, - "*.": 110, - "subst.": 43, "IHbevalR": 1, "IHbevalR1": 1, "IHbevalR2": 1, - "a.": 6, - "constructor.": 16, - "<": 76, - "remember": 12, + "a0": 15, "IHa.": 1, "IHa1.": 1, "IHa2.": 1, "silly_presburger_formula": 1, - "<=>": 12, "3": 2, "omega": 7, - "Id": 7, - "id": 7, "id.": 1, - "beq_id": 14, "id1": 2, "id2": 2, "beq_id_refl": 1, "i.": 2, "beq_nat_refl.": 1, - "beq_id_eq": 4, + "i1": 15, + "i2": 10, "i2.": 8, "i1.": 3, "beq_nat_eq": 2, @@ -17000,8 +17080,8 @@ "n0": 5, "beq_false_not_eq": 1, "not_eq_beq_id_false": 1, + "false.": 12, "not_eq_beq_false.": 1, - "beq_nat_sym": 2, "AId": 4, "com_cases": 1, "SKIP": 5, @@ -17027,25 +17107,22 @@ "E_IfFalse": 1, "assignment": 1, "command": 2, - "if": 10, "st1": 2, "IHi1": 3, "Heqst1": 1, "Hceval.": 4, "Hceval": 2, - "assumption.": 61, "bval": 2, "ceval_step": 3, - "Some": 21, "ceval_step_more": 7, "x1.": 3, "omega.": 7, "x2.": 2, "IHHce.": 2, "%": 3, + "nat.": 4, "IHHce1.": 1, "IHHce2.": 1, - "x0": 14, "plus2": 1, "nx": 3, "Y": 38, @@ -17069,12 +17146,11 @@ "noWhilesSeq": 1, "noWhilesIf": 1, "no_whiles_eqv": 1, + "c.": 5, "noWhilesSKIP.": 1, "noWhilesAss.": 1, "noWhilesSeq.": 1, "IHc1.": 2, - "auto.": 47, - "eauto": 10, "andb_true_elim1": 4, "IHc2.": 2, "andb_true_elim2": 4, @@ -17088,16 +17164,13 @@ "IHc2": 2, "H5.": 1, "x1": 11, - "r": 11, - "r.": 3, "symmetry": 4, "Heqr.": 1, - "H4.": 2, - "s": 13, "Heqr": 3, + "H4": 7, "H8.": 1, "H10": 1, - "assumption": 10, + "H3": 4, "beval_short_circuit": 5, "beval_short_circuit_eqv": 1, "sinstr": 8, @@ -17109,23 +17182,428 @@ "sinstr.": 1, "s_execute": 21, "stack": 7, + "list": 78, "prog": 2, - "cons": 26, "al": 3, "bl": 3, "s_execute1": 1, "empty_state": 2, "s_execute2": 1, "s_compile": 36, - "v": 28, "s_compile1": 1, "execute_theorem": 1, + "s1": 20, "other": 20, "other.": 4, "app_ass.": 6, + "plus_comm": 3, + "mult_comm": 2, "s_compile_correct": 1, "app_nil_end.": 1, "execute_theorem.": 1, + "List": 2, + "Multiset": 2, + "PermutSetoid": 1, + "Relations": 2, + "Sorting.": 1, + "Section": 4, + "defs.": 2, + "Variable": 7, + "Type.": 3, + "leA": 25, + "eqA": 29, + "Let": 8, + "gtA": 1, + "Hypothesis": 7, + "leA_dec": 4, + "eqA_dec": 26, + "leA_refl": 1, + "leA_trans": 2, + "leA_antisym": 1, + "Resolve": 5, + "leA_refl.": 1, + "Immediate": 1, + "leA_antisym.": 1, + "emptyBag": 4, + "EmptyBag": 2, + "singletonBag": 10, + "SingletonBag": 2, + "eqA_dec.": 2, + "Tree": 24, + "Tree_Leaf": 9, + "Tree_Node": 11, + "Tree.": 1, + "leA_Tree": 16, + "True": 1, + "T2": 20, + "leA_Tree_Leaf": 5, + "Tree_Leaf.": 1, + "auto": 73, + "datatypes.": 47, + "leA_Tree_Node": 1, + "G": 6, + "D": 9, + "is_heap": 18, + "nil_is_heap": 5, + "node_is_heap": 7, + "invert_heap": 3, + "T2.": 1, + "is_heap_rect": 1, + "simple": 7, + "PG": 2, + "PD": 2, + "PN.": 2, + "elim": 21, + "X0": 2, + "is_heap_rec": 1, + "Set": 4, + "low_trans": 3, + "merge_lem": 3, + "merge_exist": 5, + "Sorted": 5, + "meq": 15, + "list_contents": 30, + "munion": 18, + "HdRel": 4, + "l2.": 8, + "Morphisms.": 2, + "Instance": 7, + "Equivalence": 2, + "@meq": 4, + "red.": 1, + "meq_trans.": 1, + "Defined.": 1, + "Proper": 5, + "@munion": 1, + "now": 24, + "meq_congr.": 1, + "merge": 5, + "fix": 2, + "revert": 5, + "l0": 7, + "Sorted_inv": 2, + "clear": 7, + "merge0.": 2, + "using": 18, + "cons_sort": 2, + "cons_leA": 2, + "munion_ass.": 2, + "cons_leA.": 2, + "@HdRel_inv": 2, + "trivial": 15, + "merge0": 1, + "setoid_rewrite": 2, + "munion_ass": 1, + "munion_comm.": 2, + "munion_comm": 1, + "contents": 12, + "multiset": 2, + "equiv_Tree": 1, + "insert_spec": 3, + "insert_exist": 4, + "insert": 2, + "treesort_twist1": 1, + "T3": 2, + "HeapT3": 1, + "ConT3": 1, + "LeA.": 1, + "LeA": 1, + "treesort_twist2": 1, + "build_heap": 3, + "heap_exist": 3, + "list_to_heap": 2, + "exact": 4, + "nil_is_heap.": 1, + "meq_trans": 10, + "meq_right": 2, + "meq_sym": 2, + "flat_spec": 3, + "flat_exist": 3, + "heap_to_list": 2, + "h": 14, + "m1": 1, + "s2": 2, + "m2.": 1, + "meq_congr": 1, + "munion_rotate.": 1, + "treesort": 1, + "&": 21, + "permutation": 43, + "permutation.": 1, + "Sorted.": 1, + "Mergesort.": 1, + "Omega": 1, + "SetoidList.": 1, + "Implicit": 15, + "Arguments.": 2, + "Local": 7, + "nil.": 2, + "..": 4, + "Permut.": 1, + "eqA_equiv": 1, + "eqA.": 1, + "list_contents_app": 5, + "permut_refl": 1, + "permut_sym": 4, + "trivial.": 14, + "permut_trans": 5, + "permut_cons_eq": 3, + "meq_left": 1, + "meq_singleton": 1, + "permut_cons": 5, + "permut_app": 1, + "l4": 3, + "specialize": 6, + "a0.": 1, + "Ha": 6, + "decide": 1, + "replace": 4, + "permut_add_inside_eq": 1, + "permut_add_cons_inside": 3, + "permut_add_inside": 1, + "permut_middle": 1, + "permut_refl.": 5, + "permut_sym_app": 1, + "do": 4, + "arith.": 8, + "permut_rev": 1, + "rev": 7, + "permut_add_cons_inside.": 1, + "app_nil_end": 1, + "results": 1, + "permut_conv_inv": 1, + "plus_reg_l.": 1, + "permut_app_inv1": 1, + "list_contents_app.": 1, + "plus_reg_l": 1, + "multiplicity": 6, + "plus_comm.": 3, + "Fact": 3, + "if_eqA_then": 1, + "B": 6, + "if_eqA_refl": 3, + "decide_left": 1, + "Global": 5, + "if_eqA": 1, + "contradict": 3, + "transitivity": 4, + "A1": 2, + "if_eqA_rewrite_r": 1, + "A2": 4, + "Hxx": 1, + "multiplicity_InA": 4, + "InA": 8, + "IHl": 8, + "multiplicity_InA_O": 2, + "multiplicity_InA_S": 1, + "multiplicity_NoDupA": 1, + "NoDupA": 3, + "inversion_clear": 6, + "EQ": 8, + "NEQ": 1, + "Permutation": 38, + "is": 4, + "compatible": 1, + "permut_InA_InA": 3, + "multiplicity_InA.": 1, + "meq.": 2, + "permut_cons_InA": 3, + "permut_nil": 3, + "by": 7, + "Abs": 2, + "permut_length_1": 1, + "discriminate.": 2, + "permut_length_2": 1, + "permut_length_1.": 2, + "red": 6, + "@if_eqA_rewrite_l": 2, + "permut_length": 1, + "length": 21, + "InA_split": 1, + "h2": 1, + "app_length.": 2, + "plus_n_Sm": 1, + "f_equal.": 1, + "app_length": 1, + "IHl1": 1, + "permut_remove_hd": 1, + "f_equal": 1, + "if_eqA_rewrite_l": 1, + "NoDupA_equivlistA_permut": 1, + "Equivalence_Reflexive.": 1, + "change": 1, + "Equivalence_Reflexive": 1, + "Forall2": 2, + "permutation_Permutation": 1, + "Forall2.": 1, + "pose": 2, + "proof": 1, + "IHP": 2, + "IHA": 2, + "Forall2_app_inv_r": 1, + "Hl1": 1, + "Hl2": 1, + "Permutation_cons_app": 3, + "Forall2_app": 1, + "Forall2_cons": 1, + "Heq": 8, + "Permutation_impl_permutation": 1, + "permut_eqA": 1, + "Permut_permut.": 1, + "permut_right": 1, + "only": 3, + "parsing": 3, + "permut_tran": 1, + "Setoid": 1, + "Compare_dec": 1, + "ListNotations.": 1, + "Permutation.": 2, + "perm_nil": 1, + "perm_skip": 1, + "Permutation_nil": 2, + "HF.": 3, + "@nil": 1, + "HF": 2, + "discriminate": 3, + "||": 1, + "Permutation_nil_cons": 1, + "Permutation_refl": 1, + "Permutation_sym": 1, + "Hperm": 7, + "perm_trans": 1, + "Permutation_trans": 4, + "Logic.eq": 2, + "@Permutation": 5, + "iff": 1, + "@In": 1, + "Permutation_in.": 2, + "Permutation_app_tail": 2, + "tl": 8, + "Permutation_app_head": 2, + "app_comm_cons": 5, + "Permutation_app": 3, + "Hpermmm": 1, + "idtac": 1, + "@app": 1, + "Permutation_app.": 1, + "Permutation_add_inside": 1, + "Permutation_cons_append": 1, + "Permutation_cons_append.": 3, + "Permutation_app_comm": 3, + "app_nil_r": 1, + "app_assoc": 2, + "Permutation_middle": 2, + "Permutation_rev": 3, + "1": 1, + "@rev": 1, + "2": 1, + "Permutation_length": 2, + "@length": 1, + "Permutation_length.": 1, + "Permutation_ind_bis": 2, + "Hnil": 1, + "Hskip": 3, + "Hswap": 2, + "Htrans.": 1, + "Htrans": 1, + "eauto.": 7, + "Ltac": 1, + "break_list": 5, + "injection": 4, + "Permutation_nil_app_cons": 1, + "Hp": 5, + "IH": 3, + "Permutation_middle.": 3, + "perm_swap.": 2, + "perm_swap": 1, + "eq_refl": 2, + "In_split": 1, + "Permutation_app_inv": 1, + "NoDup": 4, + "incl": 3, + "N.": 1, + "E": 7, + "Hx.": 5, + "In": 6, + "Hy": 14, + "N": 1, + "Hal": 1, + "Hl": 1, + "exfalso.": 1, + "Hx": 20, + "NoDup_Permutation_bis": 2, + "intuition.": 2, + "Permutation_NoDup": 1, + "Permutation_map": 1, + "Hf": 15, + "Hy.": 3, + "injective_bounded_surjective": 1, + "f": 108, + "injective": 6, + "set": 1, + "seq": 2, + "map": 4, + "x.": 3, + "in_map_iff.": 2, + "in_seq": 4, + "arith": 4, + "NoDup_cardinal_incl": 1, + "injective_map_NoDup": 2, + "seq_NoDup": 1, + "map_length": 1, + "in_map_iff": 1, + "nat_bijection_Permutation": 1, + "let": 3, + "BD.": 1, + "seq_NoDup.": 1, + "map_length.": 1, + "Injection": 1, + "Permutation_alt": 1, + "Alternative": 1, + "characterization": 1, + "of": 4, + "via": 1, + "nth_error": 7, + "and": 1, + "nth": 2, + "adapt": 4, + "le_lt_dec": 9, + "pred": 3, + "adapt_injective": 1, + "adapt.": 2, + "EQ.": 2, + "LE": 11, + "LT": 14, + "eq_add_S": 2, + "Hf.": 1, + "Lt.le_lt_or_eq": 3, + "LE.": 3, + "LT.": 5, + "Lt.S_pred": 3, + "Lt.lt_not_le": 2, + "adapt_ok": 2, + "nth_error_app1": 1, + "nth_error_app2": 1, + "Minus.minus_Sn_m": 1, + "Permutation_nth_error": 2, + "IHP2": 1, + "g": 6, + "Hg": 2, + "E.": 2, + "L12": 2, + "plus_n_Sm.": 1, + "adapt_injective.": 1, + "nth_error_None": 4, + "Hn": 1, + "Hf2": 1, + "Hf3": 2, + "Lt.le_or_lt": 1, + "Lt.lt_irrefl": 2, + "Lt.lt_le_trans": 2, + "Hf1": 1, + "congruence.": 1, + "Permutation_alt.": 1, + "Permutation_app_swap": 1, "Eqdep_dec.": 1, "Arith.": 2, "eq_rect_eq_nat": 2, @@ -17136,54 +17614,38 @@ "eq_nat_dec.": 1, "Scheme": 1, "le_ind": 1, - "replace": 4, + "q.": 2, "le_n": 4, - "fun": 17, "refl_equal": 4, "pattern": 2, "case": 2, - "trivial.": 14, "contradiction": 8, - "le_Sn_n": 5, - "le_S": 6, - "Heq": 8, "m0": 1, "HeqS": 3, - "injection": 4, "HeqS.": 2, "eq_rect_eq_nat.": 1, "IHp": 2, "dep_pair_intro": 2, - "Hx": 20, - "Hy": 14, "<=n),>": 1, "x=": 1, "exist": 7, - "Hy.": 3, "Heq.": 6, "le_uniqueness_proof": 1, "Hy0": 1, "card": 2, - "f": 108, "card_interval": 1, "<=n}>": 1, "proj1_sig": 1, "proj2_sig": 1, - "Hp": 5, "Hq": 3, "Hpq.": 1, "Hmn.": 1, "Hmn": 1, "interval_dec": 1, - "left.": 3, "dep_pair_intro.": 3, - "right.": 9, - "discriminate": 3, - "le_Sn_le": 2, "eq_S.": 1, "Hneq.": 2, "card_inj_aux": 1, - "g": 6, "False.": 1, "Hfbound": 1, "Hfinj": 1, @@ -17192,14 +17654,8 @@ "Hfx": 2, "le_n_O_eq.": 2, "Hfbound.": 2, - "Hx.": 5, - "le_lt_dec": 9, "xSn": 21, - "then": 9, - "else": 9, - "is": 4, "bounded": 1, - "injective": 6, "Hlefx": 1, "Hgefx": 1, "Hlefy": 1, @@ -17229,13 +17685,10 @@ "Heqx": 4, "Hle.": 1, "le_not_lt": 1, - "lt_trans": 4, "lt_n_Sn.": 1, "Hlt.": 1, "lt_irrefl": 2, "lt_le_trans": 1, - "pose": 2, - "let": 3, "Hneqx": 1, "Hneqy": 1, "Heqg": 1, @@ -17249,319 +17702,7 @@ "card_inj": 1, "interval_dec.": 1, "card_interval.": 2, - "Basics.": 2, - "NatList.": 2, - "natprod": 5, - "pair": 7, - "natprod.": 1, - "fst": 3, - "snd": 3, - "swap_pair": 1, - "surjective_pairing": 1, - "count": 7, - "remove_one": 3, - "test_remove_one1": 1, - "remove_all": 2, - "bag": 3, - "app_ass": 1, - "l3": 12, - "natlist": 7, - "l3.": 1, - "remove_decreases_count": 1, - "s.": 4, - "ble_n_Sn.": 1, - "IHs.": 2, - "natoption": 5, - "None": 9, - "natoption.": 1, - "index": 3, - "option_elim": 2, - "hd_opt": 8, - "test_hd_opt1": 2, - "None.": 2, - "test_hd_opt2": 2, - "option_elim_hd": 1, - "head": 1, - "beq_natlist": 5, - "v1": 7, - "r1": 2, - "v2": 2, - "r2": 2, - "test_beq_natlist1": 1, - "test_beq_natlist2": 1, - "beq_natlist_refl": 1, - "IHl.": 7, - "silly1": 1, - "eq1": 6, - "eq2.": 9, - "eq2": 1, - "silly2a": 1, - "eq1.": 5, - "silly_ex": 1, - "silly3": 1, - "symmetry.": 2, - "rev_exercise": 1, - "rev_involutive.": 1, - "Setoid": 1, - "Compare_dec": 1, - "ListNotations.": 1, - "Implicit": 15, - "Arguments.": 2, - "Permutation.": 2, - "Permutation": 38, - "perm_nil": 1, - "perm_skip": 1, - "Local": 7, - "Constructors": 3, - "Permutation_nil": 2, - "HF.": 3, - "@nil": 1, - "HF": 2, - "||": 1, - "Permutation_nil_cons": 1, - "discriminate.": 2, - "Permutation_refl": 1, - "Permutation_sym": 1, - "Hperm": 7, - "perm_trans": 1, - "Permutation_trans": 4, - "Logic.eq": 2, - "@Permutation": 5, - "iff": 1, - "@In": 1, - "red": 6, - "Permutation_in.": 2, - "Permutation_app_tail": 2, - "tl": 8, - "eapply": 8, - "Permutation_app_head": 2, - "app_comm_cons": 5, - "Permutation_app": 3, - "Hpermmm": 1, - "idtac": 1, - "Global": 5, - "@app": 1, - "Permutation_app.": 1, - "Permutation_add_inside": 1, - "Permutation_cons_append": 1, - "IHl": 8, - "Permutation_cons_append.": 3, - "Permutation_app_comm": 3, - "app_nil_r": 1, - "app_assoc": 2, - "Permutation_cons_app": 3, - "Permutation_middle": 2, - "Permutation_rev": 3, - "rev": 7, - "1": 1, - "@rev": 1, - "2": 1, - "Permutation_length": 2, - "length": 21, - "transitivity": 4, - "@length": 1, - "Permutation_length.": 1, - "Permutation_ind_bis": 2, - "Hnil": 1, - "Hskip": 3, - "Hswap": 2, - "Htrans.": 1, - "Htrans": 1, - "eauto.": 7, - "Ltac": 1, - "break_list": 5, - "Permutation_nil_app_cons": 1, - "l4": 3, - "P.": 5, - "IH": 3, - "Permutation_middle.": 3, - "perm_swap.": 2, - "perm_swap": 1, - "eq_refl": 2, - "In_split": 1, - "Permutation_app_inv": 1, - "NoDup": 4, - "incl": 3, - "N.": 1, - "E": 7, - "Ha": 6, - "In": 6, - "N": 1, - "Hal": 1, - "Hl": 1, - "exfalso.": 1, - "NoDup_Permutation_bis": 2, - "inversion_clear": 6, - "intuition.": 2, - "Permutation_NoDup": 1, - "Permutation_map": 1, - "Hf": 15, - "injective_bounded_surjective": 1, - "set": 1, - "seq": 2, - "map": 4, - "x.": 3, - "in_map_iff.": 2, - "in_seq": 4, - "arith": 4, - "NoDup_cardinal_incl": 1, - "injective_map_NoDup": 2, - "seq_NoDup": 1, - "map_length": 1, - "by": 7, - "in_map_iff": 1, - "split": 14, - "nat_bijection_Permutation": 1, - "BD.": 1, - "seq_NoDup.": 1, - "map_length.": 1, - "Injection": 1, - "Permutation_alt": 1, - "Alternative": 1, - "characterization": 1, - "of": 4, - "via": 1, - "nth_error": 7, - "and": 1, - "nth": 2, - "adapt": 4, - "adapt_injective": 1, - "adapt.": 2, - "EQ.": 2, - "LE": 11, - "LT": 14, - "eq_add_S": 2, - "Hf.": 1, - "Lt.le_lt_or_eq": 3, - "LE.": 3, - "EQ": 8, - "lt": 3, - "LT.": 5, - "Lt.S_pred": 3, - "Lt.lt_not_le": 2, - "adapt_ok": 2, - "nth_error_app1": 1, - "nth_error_app2": 1, - "arith.": 8, - "Minus.minus_Sn_m": 1, - "Permutation_nth_error": 2, - "IHP": 2, - "IHP2": 1, - "Hg": 2, - "E.": 2, - "L12": 2, - "app_length.": 2, - "plus_n_Sm.": 1, - "adapt_injective.": 1, - "nth_error_None": 4, - "Hn": 1, - "Hf2": 1, - "Hf3": 2, - "Lt.le_or_lt": 1, - "Lt.lt_irrefl": 2, - "Lt.lt_le_trans": 2, - "Hf1": 1, - "do": 4, - "congruence.": 1, - "Permutation_alt.": 1, - "Permutation_app_swap": 1, - "only": 3, - "parsing": 3, - "Omega": 1, - "SetoidList.": 1, - "nil.": 2, - "..": 4, - "Permut.": 1, - "eqA_equiv": 1, - "eqA.": 1, - "list_contents_app": 5, - "permut_refl": 1, - "permut_sym": 4, - "permut_trans": 5, - "permut_cons_eq": 3, - "meq_left": 1, - "meq_singleton": 1, - "permut_cons": 5, - "permut_app": 1, - "specialize": 6, - "a0.": 1, - "decide": 1, - "permut_add_inside_eq": 1, - "permut_add_cons_inside": 3, - "permut_add_inside": 1, - "permut_middle": 1, - "permut_refl.": 5, - "permut_sym_app": 1, - "permut_rev": 1, - "permut_add_cons_inside.": 1, - "app_nil_end": 1, - "results": 1, - "permut_conv_inv": 1, - "plus_reg_l.": 1, - "permut_app_inv1": 1, - "list_contents_app.": 1, - "plus_reg_l": 1, - "multiplicity": 6, - "Fact": 3, - "if_eqA_then": 1, - "B": 6, - "if_eqA_refl": 3, - "decide_left": 1, - "if_eqA": 1, - "contradict": 3, - "A1": 2, - "if_eqA_rewrite_r": 1, - "A2": 4, - "Hxx": 1, - "multiplicity_InA": 4, - "InA": 8, - "multiplicity_InA_O": 2, - "multiplicity_InA_S": 1, - "multiplicity_NoDupA": 1, - "NoDupA": 3, - "NEQ": 1, - "compatible": 1, - "permut_InA_InA": 3, - "multiplicity_InA.": 1, - "meq.": 2, - "permut_cons_InA": 3, - "permut_nil": 3, - "Abs": 2, - "permut_length_1": 1, - "permut_length_2": 1, - "permut_length_1.": 2, - "@if_eqA_rewrite_l": 2, - "permut_length": 1, - "InA_split": 1, - "h2": 1, - "plus_n_Sm": 1, - "f_equal.": 1, - "app_length": 1, - "IHl1": 1, - "permut_remove_hd": 1, - "f_equal": 1, - "if_eqA_rewrite_l": 1, - "NoDupA_equivlistA_permut": 1, - "Equivalence_Reflexive.": 1, - "change": 1, - "Equivalence_Reflexive": 1, - "Forall2": 2, - "permutation_Permutation": 1, - "Forall2.": 1, - "proof": 1, - "IHA": 2, - "Forall2_app_inv_r": 1, - "Hl1": 1, - "Hl2": 1, - "Forall2_app": 1, - "Forall2_cons": 1, - "Permutation_impl_permutation": 1, - "permut_eqA": 1, - "Permut_permut.": 1, - "permut_right": 1, - "permut_tran": 1, "Lists.": 1, - "X.": 4, "app": 5, "snoc": 9, "Arguments": 11, @@ -17580,19 +17721,17 @@ "lx": 4, "ly": 4, "tx": 2, - "ty": 7, "tp": 2, - "option": 6, "xs": 7, "plus3": 2, "prod_curry": 3, "prod_uncurry": 3, "uncurry_uncurry": 1, "curry_uncurry": 1, + "p.": 9, "filter": 3, "test": 4, "countoddmembers": 1, - "k": 7, "fmostlytrue": 5, "override": 5, "ftrue": 1, @@ -17622,6 +17761,7 @@ "sillyex2": 1, "assertion": 3, "Hl.": 1, + "IHm": 2, "eq": 4, "beq_nat_O_l": 1, "beq_nat_O_r": 1, @@ -17634,6 +17774,7 @@ "fold_map.": 1, "forallb": 4, "existsb": 3, + "orb": 8, "existsb2": 2, "existsb_correct": 1, "existsb2.": 1, @@ -17641,229 +17782,91 @@ "mumble": 5, "mumble.": 1, "grumble": 3, - "Logic.": 1, - "Prop.": 1, - "partial_function": 6, - "R": 54, - "y1": 6, - "y2": 5, - "y2.": 3, - "next_nat_partial_function": 1, - "next_nat.": 1, - "partial_function.": 5, - "Q.": 2, - "le_not_a_partial_function": 1, - "le": 1, - "not.": 3, - "Nonsense.": 4, - "le_n.": 6, - "le_S.": 4, - "total_relation_not_partial_function": 1, - "total_relation": 1, - "total_relation1.": 2, - "empty_relation_not_partial_funcion": 1, - "empty_relation.": 1, - "reflexive": 5, - "le_reflexive": 1, - "le.": 4, - "reflexive.": 1, - "transitive": 8, - "le_trans": 4, - "Hnm": 3, - "Hmo.": 4, - "Hnm.": 3, - "IHHmo.": 1, - "lt.": 2, - "transitive.": 1, - "Hm": 1, - "le_S_n": 2, - "Sn_le_Sm__n_le_m.": 1, - "not": 1, - "TODO": 1, - "Hmo": 1, - "symmetric": 2, - "antisymmetric": 3, - "le_antisymmetric": 1, - "Sn_le_Sm__n_le_m": 2, - "IHb": 1, - "equivalence": 1, - "order": 2, - "preorder": 1, - "le_order": 1, - "order.": 1, - "le_reflexive.": 1, - "le_antisymmetric.": 1, - "le_trans.": 1, - "clos_refl_trans": 8, - "rt_step": 1, - "rt_refl": 1, - "rt_trans": 3, - "next_nat_closure_is_le": 1, - "next_nat": 1, - "rt_refl.": 2, - "IHle.": 1, - "rt_step.": 2, - "nn.": 1, - "IHclos_refl_trans1.": 2, - "IHclos_refl_trans2.": 2, - "refl_step_closure": 11, - "rsc_refl": 1, - "rsc_step": 4, - "rsc_R": 2, - "rsc_refl.": 4, - "rsc_trans": 4, - "IHrefl_step_closure": 1, - "rtc_rsc_coincide": 1, - "IHrefl_step_closure.": 1, - "Imp.": 1, - "Relations.": 1, - "tm": 43, - "tm_const": 45, - "tm_plus": 30, - "tm.": 3, - "SimpleArith0.": 2, - "eval": 8, - "SimpleArith1.": 2, - "E_Const": 2, - "E_Plus": 2, - "test_step_1": 1, - "ST_Plus1.": 2, - "ST_PlusConstConst.": 3, - "test_step_2": 1, - "ST_Plus2.": 2, - "step_deterministic": 1, - "step.": 3, - "Hy1": 2, - "Hy2.": 2, - "step_cases": 4, - "Hy2": 3, - "SCase.": 3, - "Hy1.": 5, - "IHHy1": 2, - "SimpleArith2.": 1, - "value": 25, - "v_const": 4, - "step": 9, - "ST_PlusConstConst": 3, - "ST_Plus1": 2, - "strong_progress": 2, - "value_not_same_as_normal_form": 2, - "normal_form": 3, - "t.": 4, - "normal_form.": 2, - "v_funny.": 1, - "Temp1.": 1, - "Temp2.": 1, - "ST_Funny": 1, - "Temp3.": 1, - "Temp4.": 2, - "tm_true": 8, - "tm_false": 5, - "tm_if": 10, - "v_true": 1, - "v_false": 1, - "tm_false.": 3, - "ST_IfTrue": 1, - "ST_IfFalse": 1, - "ST_If": 1, - "t3": 6, - "bool_step_prop4": 1, - "bool_step_prop4_holds": 1, - "bool_step_prop4.": 2, - "ST_ShortCut.": 1, - "IHt1.": 1, - "t2.": 4, - "t3.": 2, - "ST_If.": 2, - "Temp5.": 1, - "stepmany": 4, - "normalizing": 1, - "IHt2": 3, - "H11": 2, - "H12": 2, - "H21": 3, - "H22": 2, - "nf_same_as_value": 3, - "H12.": 1, - "H22.": 1, - "H11.": 1, - "stepmany_congr_1": 1, - "stepmany_congr2": 1, - "eval__value": 1, - "HE.": 1, - "eval_cases": 1, - "HE": 1, - "v_const.": 1, - "Sorted.": 1, - "Mergesort.": 1, - "STLC.": 1, - "ty_Bool": 10, - "ty_arrow": 7, - "ty.": 2, - "tm_var": 6, - "tm_app": 7, - "tm_abs": 9, - "idB": 2, - "idBB": 2, - "idBBBB": 2, - "v_abs": 1, - "t_true": 1, - "t_false": 1, - "value.": 1, - "ST_App2": 1, - "step_example3": 1, - "idB.": 1, - "rsc_step.": 2, - "ST_App1.": 2, - "ST_AppAbs.": 3, - "v_abs.": 2, - "context": 1, - "partial_map": 4, - "Context.": 1, - "empty": 3, - "extend": 1, - "Gamma": 10, - "has_type": 4, - "appears_free_in": 1, - "S.": 1, - "HT": 1, - "T_Var.": 1, - "extend_neq": 1, - "Heqe.": 3, - "T_Abs.": 1, - "context_invariance...": 2, - "Hafi.": 2, - "extend.": 2, - "IHt.": 1, - "Coiso1.": 2, - "Coiso2.": 3, - "HeqCoiso1.": 1, - "HeqCoiso2.": 1, - "beq_id_false_not_eq.": 1, - "ex_falso_quodlibet.": 1, - "preservation": 1, - "HT.": 1, - "substitution_preserves_typing": 1, - "T11.": 4, - "HT1.": 1, - "T_App": 2, - "IHHT1.": 1, - "IHHT2.": 1, - "tm_cases": 1, - "Ht": 1, - "Ht.": 3, - "IHt1": 2, - "T11": 2, - "ST_App2.": 1, - "ty_Bool.": 1, - "IHt3": 1, - "ST_IfTrue.": 1, - "ST_IfFalse.": 1, - "types_unique": 1, - "T12": 2, - "IHhas_type.": 1, - "IHhas_type1.": 1, - "IHhas_type2.": 1 + "day": 9, + "monday": 5, + "tuesday": 3, + "wednesday": 3, + "thursday": 3, + "friday": 3, + "saturday": 3, + "sunday": 2, + "day.": 1, + "next_weekday": 3, + "test_next_weekday": 1, + "tuesday.": 1, + "bool.": 1, + "test_orb1": 1, + "test_orb2": 1, + "test_orb3": 1, + "test_orb4": 1, + "nandb": 5, + "test_nandb1": 1, + "test_nandb2": 1, + "test_nandb3": 1, + "test_nandb4": 1, + "andb3": 5, + "b3": 2, + "test_andb31": 1, + "test_andb32": 1, + "test_andb33": 1, + "test_andb34": 1, + "minustwo": 1, + "test_oddb1": 1, + "test_oddb2": 1, + "mult": 3, + "minus": 3, + "exp": 2, + "base": 3, + "power": 2, + "factorial": 2, + "test_factorial1": 1, + "nat_scope.": 3, + "plus_O_n": 1, + "plus_1_1": 1, + "mult_0_1": 1, + "plus_id_example": 1, + "plus_id_exercise": 1, + "mult_0_plus": 1, + "plus_O_n.": 1, + "mult_1_plus": 1, + "plus_1_1.": 1, + "mult_1": 1, + "plus_1_neq_0": 1, + "plus_distr.": 1, + "plus_rearrange": 1, + "plus_swap": 2, + "plus_assoc.": 4, + "plus_swap.": 2, + "mult_0_r.": 4, + "mult_distr": 1, + "mult_1_distr.": 1, + "mult_1.": 1, + "bad": 1, + "zero_nbeq_S": 1, + "andb_false_r": 1, + "plus_ble_compat_1": 1, + "IHp.": 2, + "S_nbeq_0": 1, + "mult_1_1": 1, + "plus_0_r.": 1, + "all3_spec": 1, + "mult_plus_1": 1, + "IHm.": 1, + "mult_mult": 1, + "IHn.": 3, + "mult_plus_1.": 1, + "mult_plus_distr_r": 1, + "mult_mult.": 3, + "plus_assoc": 1, + "mult_assoc": 1, + "mult_plus_distr_r.": 1, + "bin": 9, + "BO": 4, + "M": 4, + "bin.": 1, + "incbin": 2, + "bin2un": 3, + "bin_comm": 1 }, "Creole": { "Creole": 6, @@ -17960,19 +17963,13 @@ "describe": 2, "do": 26, "it": 21, - "run": 14, + "assert_type": 7, "(": 201, ")": 201, - ".to_i.should": 11, - "eq": 16, - "end": 135, - ".to_f32.should": 2, - ".to_b.should": 1, - "be_true": 1, - "assert_type": 7, "{": 7, "int32": 8, "}": 7, + "end": 135, "union_of": 1, "char": 1, "result": 3, @@ -17987,6 +17984,7 @@ "NonGenericClassType": 1, "foo.instance_vars": 1, ".type.should": 3, + "eq": 16, "mod.int32": 1, "GenericClassType": 2, "foo_i32": 4, @@ -18199,7 +18197,12 @@ "Alias": 1, "TupleIndexer": 1, "Attribute": 1, - "exps.map": 1 + "exps.map": 1, + "run": 14, + ".to_i.should": 11, + ".to_f32.should": 2, + ".to_b.should": 1, + "be_true": 1 }, "Cuda": { "__global__": 2, @@ -18439,60 +18442,19 @@ }, "E": { "def": 24, - "makeVehicle": 3, - "(": 65, - "self": 1, - ")": 64, - "{": 57, - "vehicle": 2, - "to": 27, - "milesTillEmpty": 1, - "return": 19, - "self.milesPerGallon": 1, - "*": 1, - "self.getFuelRemaining": 1, - "}": 57, - "makeCar": 4, - "var": 6, - "fuelRemaining": 4, - "car": 8, - "extends": 2, - "milesPerGallon": 2, - "getFuelRemaining": 2, - "makeJet": 1, - "jet": 3, - "println": 2, - "The": 2, - "can": 1, - "go": 1, - "car.milesTillEmpty": 1, - "miles.": 1, - "name": 4, - "x": 3, - "y": 3, - "moveTo": 1, - "newX": 2, - "newY": 2, - "getX": 1, - "getY": 1, - "setName": 1, - "newName": 2, - "getName": 1, - "sportsCar": 1, - "sportsCar.moveTo": 1, - "sportsCar.getName": 1, - "is": 1, - "at": 1, - "X": 1, - "location": 1, - "sportsCar.getX": 1, "makeVOCPair": 1, + "(": 65, "brandName": 3, "String": 1, + ")": 64, "near": 6, + "{": 57, + "var": 6, "myTempContents": 6, "none": 2, + "}": 57, "brand": 5, + "to": 27, "__printOn": 4, "out": 4, "TextWriter": 4, @@ -18502,6 +18464,7 @@ "<$brandName>": 3, "prover": 1, "getBrand": 4, + "return": 19, "coerce": 2, "specimen": 2, "optEjector": 3, @@ -18534,32 +18497,46 @@ "false": 1, "__getAllegedType": 1, "null.__getAllegedType": 1, - "#File": 1, - "objects": 1, - "hardwired": 1, - "files": 1, - "file1": 1, - "": 1, - "file2": 1, - "": 1, - "#Using": 2, - "a": 4, - "variable": 1, - "file": 3, - "filePath": 2, - "file3": 1, - "": 1, - "single": 1, - "character": 1, - "specify": 1, - "Windows": 1, - "drive": 1, - "file4": 1, - "": 1, - "file5": 1, - "": 1, - "file6": 1, - "": 1, + "makeVehicle": 3, + "self": 1, + "vehicle": 2, + "milesTillEmpty": 1, + "self.milesPerGallon": 1, + "*": 1, + "self.getFuelRemaining": 1, + "makeCar": 4, + "fuelRemaining": 4, + "car": 8, + "extends": 2, + "milesPerGallon": 2, + "getFuelRemaining": 2, + "makeJet": 1, + "jet": 3, + "println": 2, + "The": 2, + "can": 1, + "go": 1, + "car.milesTillEmpty": 1, + "miles.": 1, + "name": 4, + "x": 3, + "y": 3, + "moveTo": 1, + "newX": 2, + "newY": 2, + "getX": 1, + "getY": 1, + "setName": 1, + "newName": 2, + "getName": 1, + "sportsCar": 1, + "sportsCar.moveTo": 1, + "sportsCar.getName": 1, + "is": 1, + "at": 1, + "X": 1, + "location": 1, + "sportsCar.getX": 1, "pragma.syntax": 1, "send": 1, "message": 4, @@ -18574,6 +18551,7 @@ "friendRcvr": 2, "bind": 2, "save": 1, + "file": 3, "file.setText": 1, "makeURIFromObject": 1, "chatController": 2, @@ -18589,7 +18567,32 @@ "problem": 1, "finally": 1, "#....log": 1, - "event": 1 + "event": 1, + "#File": 1, + "objects": 1, + "hardwired": 1, + "files": 1, + "file1": 1, + "": 1, + "file2": 1, + "": 1, + "#Using": 2, + "a": 4, + "variable": 1, + "filePath": 2, + "file3": 1, + "": 1, + "single": 1, + "character": 1, + "specify": 1, + "Windows": 1, + "drive": 1, + "file4": 1, + "": 1, + "file5": 1, + "": 1, + "file6": 1, + "": 1 }, "ECL": { "#option": 1, @@ -19609,39 +19612,18 @@ }, "Erlang": { "SHEBANG#!escript": 3, - "%": 134, "-": 262, - "*": 9, - "erlang": 5, - "smp": 1, - "enable": 1, - "sname": 1, - "factorial": 1, - "mnesia": 1, - "debug": 1, - "verbose": 1, - "main": 4, + "export": 2, "(": 236, "[": 66, - "String": 2, + "main/1": 1, "]": 61, ")": 230, - "try": 2, - "N": 6, - "list_to_integer": 1, - "F": 16, - "fac": 4, + ".": 37, + "main": 4, "io": 5, "format": 7, - "catch": 2, - "_": 52, - "usage": 3, - "end": 3, - ";": 56, - ".": 37, - "halt": 2, - "export": 2, - "main/1": 1, + "%": 134, "For": 1, "each": 1, "header": 1, @@ -19694,6 +19676,7 @@ "erl": 1, "list_to_binary": 1, "HeaderFile": 4, + "try": 2, "epp": 1, "parse_file": 1, "of": 9, @@ -19702,8 +19685,11 @@ "Tree": 4, "}": 109, "parse": 2, + ";": 56, "error": 4, "Error": 4, + "catch": 2, + "_": 52, "catched_error": 1, "end.": 3, "|": 25, @@ -19728,6 +19714,7 @@ "true": 3, "generate_fields_function": 2, "generate_fields_atom_function": 2, + "end": 3, "parse_field_name": 5, "record_field": 9, "atom": 9, @@ -19739,6 +19726,7 @@ "parse_field_name_atom": 5, "concat": 5, "_S": 3, + "F": 16, "S": 6, "concat_ext": 4, "parse_field": 6, @@ -19754,54 +19742,9 @@ "to_setter_getter_function": 5, "setter": 2, "getter": 2, - "This": 2, - "is": 1, - "auto": 1, - "generated": 1, - "file.": 1, - "Please": 1, - "don": 1, - "t": 1, - "edit": 1, - "record_utils": 1, - "compile": 2, - "export_all": 1, - "include": 1, - "abstract_message": 21, - "async_message": 12, - "clientId": 5, - "destination": 5, - "messageId": 5, - "timestamp": 5, - "timeToLive": 5, - "headers": 5, - "body": 5, - "correlationId": 5, - "correlationIdBytes": 5, - "get": 12, - "Obj": 49, - "is_record": 25, - "Obj#abstract_message.body": 1, - "Obj#abstract_message.clientId": 1, - "Obj#abstract_message.destination": 1, - "Obj#abstract_message.headers": 1, - "Obj#abstract_message.messageId": 1, - "Obj#abstract_message.timeToLive": 1, - "Obj#abstract_message.timestamp": 1, - "Obj#async_message.correlationId": 1, - "Obj#async_message.correlationIdBytes": 1, - "parent": 5, - "Obj#async_message.parent": 3, - "ParentProperty": 6, - "is_atom": 2, - "set": 13, - "Value": 35, - "NewObj": 20, - "Obj#abstract_message": 7, - "Obj#async_message": 3, - "NewParentObject": 2, - "undefined.": 1, + "*": 9, "Mode": 1, + "erlang": 5, "coding": 1, "utf": 1, "tab": 1, @@ -19866,6 +19809,7 @@ "software": 3, "display": 1, "acknowledgment": 1, + "This": 2, "product": 1, "includes": 1, "developed": 1, @@ -19958,6 +19902,7 @@ "POSSIBILITY": 1, "SUCH": 1, "DAMAGE.": 1, + "compile": 2, "sys": 2, "RelToolConfig": 5, "target_dir": 2, @@ -20007,6 +19952,7 @@ "Rest": 10, "Key": 2, "list_to_existing_atom": 1, + "Value": 35, "dict": 2, "find": 1, "support": 1, @@ -20042,122 +19988,96 @@ "filelib": 1, "is_file": 1, "ExitCode": 2, - "flush": 1 + "halt": 2, + "flush": 1, + "is": 1, + "auto": 1, + "generated": 1, + "file.": 1, + "Please": 1, + "don": 1, + "t": 1, + "edit": 1, + "record_utils": 1, + "export_all": 1, + "include": 1, + "abstract_message": 21, + "async_message": 12, + "clientId": 5, + "destination": 5, + "messageId": 5, + "timestamp": 5, + "timeToLive": 5, + "headers": 5, + "body": 5, + "correlationId": 5, + "correlationIdBytes": 5, + "get": 12, + "Obj": 49, + "is_record": 25, + "Obj#abstract_message.body": 1, + "Obj#abstract_message.clientId": 1, + "Obj#abstract_message.destination": 1, + "Obj#abstract_message.headers": 1, + "Obj#abstract_message.messageId": 1, + "Obj#abstract_message.timeToLive": 1, + "Obj#abstract_message.timestamp": 1, + "Obj#async_message.correlationId": 1, + "Obj#async_message.correlationIdBytes": 1, + "parent": 5, + "Obj#async_message.parent": 3, + "ParentProperty": 6, + "is_atom": 2, + "set": 13, + "NewObj": 20, + "Obj#abstract_message": 7, + "Obj#async_message": 3, + "NewParentObject": 2, + "undefined.": 1, + "smp": 1, + "enable": 1, + "sname": 1, + "factorial": 1, + "mnesia": 1, + "debug": 1, + "verbose": 1, + "String": 2, + "N": 6, + "list_to_integer": 1, + "fac": 4, + "usage": 3 }, "Forth": { - "(": 88, - "Block": 2, - "words.": 6, - ")": 87, - "variable": 3, - "blk": 3, - "current": 5, - "-": 473, - "block": 8, - "n": 22, - "addr": 11, - ";": 61, - "buffer": 2, - "evaluate": 1, - "extended": 3, - "semantics": 3, - "flush": 1, - "load": 2, - "...": 4, - "dup": 10, - "save": 2, - "input": 2, - "in": 4, + "immediate": 19, + "lastxt": 4, "@": 13, - "source": 5, - "#source": 2, - "interpret": 1, - "restore": 1, - "buffers": 2, - "update": 1, - "extension": 4, - "empty": 2, - "scr": 2, - "list": 1, - "bounds": 1, - "do": 2, - "i": 5, - "emit": 2, - "loop": 4, - "refill": 2, - "thru": 1, - "x": 10, - "y": 5, - "+": 17, + "dup": 10, + "c@": 2, + "negate": 1, "swap": 12, - "*": 9, - "forth": 2, + "c": 3, + ";": 61, + "source": 5, + "nip": 2, + "in": 4, "Copyright": 3, "Lars": 3, "Brinkhoff": 3, - "Kernel": 4, - "#tib": 2, - "TODO": 12, - ".r": 1, - ".": 5, - "[": 16, "char": 10, - "]": 15, - "parse": 5, - "type": 3, - "immediate": 19, - "<": 14, - "flag": 4, - "r": 18, - "x1": 5, - "x2": 5, - "R": 13, - "rot": 2, - "r@": 2, - "noname": 1, - "align": 2, - "here": 9, - "c": 3, - "allot": 2, - "lastxt": 4, - "SP": 1, - "query": 1, - "tib": 1, - "body": 1, - "true": 1, - "tuck": 2, - "over": 5, - "u.r": 1, - "u": 3, - "if": 9, - "drop": 4, - "false": 1, - "else": 6, - "then": 5, - "unused": 1, - "value": 1, - "create": 2, - "does": 5, - "within": 1, - "compile": 2, - "Forth2012": 2, - "core": 1, - "action": 1, - "of": 3, - "defer": 2, - "name": 1, - "s": 4, - "c@": 2, - "negate": 1, - "nip": 2, + "(": 88, + "-": 473, + ")": 87, "bl": 4, "word": 9, + "here": 9, + "+": 17, "ahead": 2, "resolve": 4, "literal": 4, "postpone": 14, "nonimmediate": 1, "caddr": 1, + "drop": 4, "C": 9, "find": 2, "cells": 1, @@ -20168,32 +20088,137 @@ "chars": 1, "n1": 2, "n2": 2, + "else": 6, "orig1": 1, "orig2": 1, "branch": 5, + "if": 9, + "flag": 4, + "then": 5, + "[": 16, + "]": 15, + "does": 5, "dodoes_code": 1, + "over": 5, "code": 3, + "r": 18, "begin": 2, "dest": 5, "while": 2, + "x": 10, "repeat": 2, "until": 1, "recurse": 1, + "compile": 2, "pad": 3, + "addr": 11, + "parse": 5, + "n": 22, + "<": 14, + "r@": 2, + "TODO": 12, "If": 1, "necessary": 1, + "refill": 2, "and": 3, "keep": 1, "parsing.": 1, "string": 3, + "allot": 2, + "align": 2, "cmove": 1, + "s": 4, "state": 2, + "...": 4, + "R": 13, "cr": 3, + "type": 3, "abort": 3, "": 1, "Undefined": 1, "ok": 1, + "*": 9, + "forth": 2, + "Kernel": 4, + "#tib": 2, + ".r": 1, + ".": 5, + "x1": 5, + "x2": 5, + "rot": 2, + "noname": 1, + "SP": 1, + "query": 1, + "tib": 1, + "#source": 2, + "body": 1, + "true": 1, + "tuck": 2, + "y": 5, + "u.r": 1, + "u": 3, + "false": 1, + "unused": 1, + "value": 1, + "create": 2, + "within": 1, + "Forth2012": 2, + "core": 1, + "extension": 4, + "words.": 6, + "action": 1, + "of": 3, + "buffer": 2, + "defer": 2, + "name": 1, "HELLO": 4, + "Tools": 2, + ".s": 1, + "emit": 2, + "depth": 1, + "traverse": 1, + "dictionary": 1, + "assembler": 1, + "kernel": 1, + "bye": 1, + "cs": 2, + "pick": 1, + "roll": 1, + "editor": 1, + "forget": 1, + "reveal": 1, + "tools": 1, + "nr": 1, + "synonym": 1, + "undefined": 2, + "defined": 1, + "invert": 1, + "/cell": 2, + "cell": 2, + "Block": 2, + "variable": 3, + "blk": 3, + "current": 5, + "block": 8, + "evaluate": 1, + "extended": 3, + "semantics": 3, + "flush": 1, + "load": 2, + "save": 2, + "input": 2, + "interpret": 1, + "restore": 1, + "buffers": 2, + "update": 1, + "empty": 2, + "scr": 2, + "list": 1, + "bounds": 1, + "do": 2, + "i": 5, + "loop": 4, + "thru": 1, "KataDiversion": 1, "Forth": 1, "utils": 1, @@ -20272,132 +20297,54 @@ "http": 1, "//www.codekata.com/2007/01/code_kata_fifte.html": 1, "HOW": 1, - "MANY": 1, - "Tools": 2, - ".s": 1, - "depth": 1, - "traverse": 1, - "dictionary": 1, - "assembler": 1, - "kernel": 1, - "bye": 1, - "cs": 2, - "pick": 1, - "roll": 1, - "editor": 1, - "forget": 1, - "reveal": 1, - "tools": 1, - "nr": 1, - "synonym": 1, - "undefined": 2, - "defined": 1, - "invert": 1, - "/cell": 2, - "cell": 2 + "MANY": 1 }, "Frege": { "module": 2, - "examples.CommandLineClock": 1, - "where": 39, - "data": 3, - "Date": 5, - "native": 4, - "java.util.Date": 1, - "new": 9, - "(": 339, - ")": 345, - "-": 730, - "IO": 13, - "MutableIO": 1, - "toString": 2, - "Mutable": 1, - "s": 21, - "ST": 1, - "String": 9, - "d.toString": 1, - "action": 2, - "to": 13, - "give": 2, - "us": 1, - "the": 20, - "current": 4, - "time": 1, - "as": 33, - "do": 38, - "d": 3, - "<->": 35, - "java": 5, - "lang": 2, - "Thread": 2, - "sleep": 4, - "takes": 1, - "a": 99, - "long": 4, - "and": 14, - "returns": 2, - "nothing": 2, - "but": 2, - "may": 1, - "throw": 1, - "an": 6, - "InterruptedException": 4, - "This": 2, - "is": 24, - "without": 1, - "doubt": 1, - "public": 1, - "static": 1, - "void": 2, - "millis": 1, - "throws": 4, - "Encoded": 1, - "in": 22, - "Frege": 1, - "argument": 1, - "type": 8, - "Long": 3, - "result": 11, - "does": 2, - "defined": 1, - "frege": 1, - "Lang": 1, - "main": 11, - "args": 2, - "forever": 1, - "print": 25, - "stdout.flush": 1, - "Thread.sleep": 4, "examples.Concurrent": 1, + "where": 39, "import": 7, "System.Random": 1, "Java.Net": 1, + "(": 339, "URL": 2, + ")": 345, "Control.Concurrent": 1, + "as": 33, "C": 6, "main2": 1, + "args": 2, + "do": 38, "m": 2, "<": 84, + "-": 730, "newEmptyMVar": 1, "forkIO": 11, "m.put": 3, "replicateM_": 3, "c": 33, "m.take": 1, + "print": 25, "println": 25, "example1": 1, "putChar": 2, "example2": 2, + "s": 21, + "<->": 35, "getLine": 2, "case": 6, + "long": 4, "of": 32, "Right": 6, "n": 38, "setReminder": 3, "Left": 5, "_": 60, + "Long": 3, + "IO": 13, "+": 200, "show": 24, + "Thread.sleep": 4, "L*n": 1, "table": 1, "mainPhil": 2, @@ -20410,6 +20357,7 @@ "]": 116, "mapM": 3, "MVar": 3, + "new": 9, "1": 2, "5": 1, "philosopher": 7, @@ -20419,6 +20367,7 @@ "Nozick": 1, "Mises": 1, "return": 17, + "String": 9, "Int": 6, "me": 13, "left": 4, @@ -20448,6 +20397,7 @@ "Nothing": 2, "table.wait": 1, "inter": 3, + "InterruptedException": 4, "catch": 2, "getURL": 4, "xx": 2, @@ -20456,6 +20406,7 @@ "con": 3, "url.openConnection": 1, "con.connect": 1, + "is": 24, "con.getInputStream": 1, "typ": 5, "con.getContentType": 1, @@ -20476,8 +20427,10 @@ "ctyp": 2, "charset=": 1, "m.group": 1, + "type": 8, "SomeException": 2, "Throwable": 1, + "main": 11, "m1": 1, "MVar.newEmpty": 3, "m2": 1, @@ -20494,6 +20447,7 @@ "m2.take": 1, "r3": 3, "take": 13, + "result": 11, "ss": 8, "mapM_": 5, "putStrLn": 2, @@ -20520,8 +20474,10 @@ "Position": 22, "Feld": 3, "Brett": 13, + "data": 3, "for": 25, "assumptions": 10, + "and": 14, "conclusions": 2, "Assumption": 21, "ISNOT": 14, @@ -20545,6 +20501,7 @@ "..": 1, "positions": 16, "rowstarts": 4, + "a": 99, "row": 20, "starting": 3, "colstarts": 3, @@ -20558,6 +20515,7 @@ "upper": 2, "position": 9, "results": 1, + "in": 22, "real": 1, "extract": 2, "field": 9, @@ -20571,9 +20529,11 @@ "b": 113, "snd": 20, "compute": 5, + "the": 20, "list": 7, "that": 18, "belong": 3, + "to": 13, "same": 8, "given": 3, "z..": 1, @@ -20668,6 +20628,7 @@ "contains": 1, "numbers": 1, "already": 1, + "This": 2, "finds": 1, "logs": 1, "NAKED": 5, @@ -20744,6 +20705,8 @@ "intersection": 1, "we": 5, "occurences": 1, + "but": 2, + "an": 6, "XY": 2, "Wing": 2, "there": 6, @@ -20906,18 +20869,22 @@ "available": 1, "strategies": 1, "until": 1, + "nothing": 2, "changes": 1, "anymore": 1, "Strategy": 1, "functions": 2, "supposed": 1, "applied": 1, + "give": 2, "changed": 1, "board.": 1, "strategy": 2, + "does": 2, "anything": 1, "alter": 1, "it": 2, + "returns": 2, "next": 1, "tried.": 1, "solve": 19, @@ -20960,6 +20927,7 @@ "h": 1, "help": 1, "usage": 1, + "java": 5, "Sudoku": 2, "file": 4, "81": 3, @@ -20974,6 +20942,7 @@ "sudokuoftheday": 1, "pages": 1, "o": 1, + "d": 3, "php": 1, "click": 1, "puzzle": 1, @@ -21075,7 +21044,41 @@ "b3.addActionListener": 1, "newContentPane.add": 3, "newContentPane.setOpaque": 1, - "frame.setContentPane": 1 + "frame.setContentPane": 1, + "examples.CommandLineClock": 1, + "Date": 5, + "native": 4, + "java.util.Date": 1, + "MutableIO": 1, + "toString": 2, + "Mutable": 1, + "ST": 1, + "d.toString": 1, + "action": 2, + "us": 1, + "current": 4, + "time": 1, + "lang": 2, + "Thread": 2, + "sleep": 4, + "takes": 1, + "may": 1, + "throw": 1, + "without": 1, + "doubt": 1, + "public": 1, + "static": 1, + "void": 2, + "millis": 1, + "throws": 4, + "Encoded": 1, + "Frege": 1, + "argument": 1, + "defined": 1, + "frege": 1, + "Lang": 1, + "forever": 1, + "stdout.flush": 1 }, "GAMS": { "*Basic": 1, @@ -21277,66 +21280,7 @@ "IsField": 1, "and": 102, "IsGroup": 1, - "implementation": 1, - "#M": 20, - "SomeOperation": 1, - "": 2, - "performs": 1, - "some": 2, - "operation": 1, - "on": 5, - "InstallMethod": 18, - "SomeProperty": 1, - "[": 145, - "]": 169, - "function": 37, - "M": 7, - "if": 103, - "IsFreeLeftModule": 3, - "not": 49, - "IsTrivial": 1, - "then": 128, - "return": 41, - "true": 21, - "fi": 91, - "TryNextMethod": 7, - "end": 34, - "#F": 17, - "SomeGlobalFunction": 2, - "A": 9, - "global": 1, - "variadic": 1, - "funfion.": 1, - "InstallGlobalFunction": 5, - "arg": 16, - "Length": 14, - "+": 9, - "*": 12, - "elif": 21, - "-": 67, - "else": 25, - "Error": 7, - "#": 73, - "SomeFunc": 1, - "x": 14, - "y": 8, - "local": 16, - "z": 3, - "func": 3, - "tmp": 20, - "j": 3, - "mod": 2, - "List": 6, - "while": 5, - "do": 18, - "for": 53, - "in": 64, - "Print": 24, - "od": 15, - "repeat": 1, - "until": 1, - "<": 17, - "Magic.gd": 1, + "Magic.gi": 1, "AutoDoc": 4, "package": 10, "Copyright": 6, @@ -21348,6 +21292,779 @@ "Gutsche": 2, "University": 4, "Kaiserslautern": 2, + "BindGlobal": 7, + "function": 37, + "str": 8, + "suffix": 3, + "local": 16, + "n": 31, + "m": 8, + "Length": 14, + "return": 41, + "{": 21, + "[": 145, + "-": 67, + "+": 9, + "]": 169, + "}": 21, + "end": 34, + "i": 25, + "while": 5, + "<": 17, + "do": 18, + "od": 15, + "if": 103, + "then": 128, + "fi": 91, + "d": 16, + "tmp": 20, + "not": 49, + "IsDirectoryPath": 1, + "CreateDir": 2, + "#": 73, + "Note": 3, + "currently": 1, + "undocumented": 1, + "fail": 18, + "Error": 7, + "LastSystemError": 1, + ".message": 1, + "false": 7, + "true": 21, + "pkg": 32, + "subdirs": 2, + "extensions": 1, + "d_rel": 6, + "files": 4, + "result": 9, + "for": 53, + "in": 64, + "DirectoriesPackageLibrary": 2, + "IsEmpty": 6, + "continue": 3, + "Directory": 5, + "DirectoryContents": 1, + "Sort": 1, + "AUTODOC_GetSuffix": 2, + "IsReadableFile": 2, + "Filename": 8, + "Add": 4, + "Make": 1, + "this": 15, + "callable": 1, + "with": 24, + "the": 136, + "package_name": 1, + "AutoDocWorksheet.": 1, + "Which": 1, + "will": 5, + "create": 1, + "worksheet": 1, + "InstallGlobalFunction": 5, + "arg": 16, + "package_info": 3, + "opt": 3, + "scaffold": 12, + "gapdoc": 7, + "maketest": 12, + "autodoc": 8, + "pkg_dir": 5, + "doc_dir": 18, + "doc_dir_rel": 3, + "title_page": 7, + "tree": 8, + "is_worksheet": 13, + "position_document_class": 7, + "gapdoc_latex_option_record": 4, + "LowercaseString": 3, + "rec": 20, + "DirectoryCurrent": 1, + "else": 25, + "PackageInfo": 1, + "key": 3, + "val": 4, + "ValueOption": 1, + "opt.": 1, + "IsBound": 39, + "opt.dir": 4, + "elif": 21, + "IsString": 7, + "or": 13, + "IsDirectory": 1, + "AUTODOC_CreateDirIfMissing": 1, + "Print": 24, + "opt.scaffold": 5, + "package_info.AutoDoc": 3, + "IsRecord": 7, + "IsBool": 4, + "AUTODOC_APPEND_RECORD_WRITEONCE": 3, + "AUTODOC_WriteOnce": 10, + "opt.autodoc": 5, + "Concatenation": 15, + "package_info.Dependencies.NeededOtherPackages": 1, + "package_info.Dependencies.SuggestedOtherPackages": 1, + "ForAny": 1, + "x": 14, + "autodoc.files": 7, + "autodoc.scan_dirs": 5, + "autodoc.level": 3, + "PushOptions": 1, + "level_value": 1, + "Append": 2, + "AUTODOC_FindMatchingFiles": 2, + "opt.gapdoc": 5, + "opt.maketest": 4, + "gapdoc.main": 8, + "package_info.PackageDoc": 3, + ".BookName": 2, + "gapdoc.bookname": 4, + "#Print": 1, + "gapdoc.files": 9, + "gapdoc.scan_dirs": 3, + "Set": 1, + "Number": 1, + "ListWithIdenticalEntries": 1, + "List": 6, + "f": 11, + "DocumentationTree": 1, + "autodoc.section_intros": 2, + "AUTODOC_PROCESS_INTRO_STRINGS": 1, + "Tree": 2, + "AutoDocScanFiles": 1, + "PackageName": 2, + "scaffold.TitlePage": 4, + "scaffold.TitlePage.Title": 2, + ".TitlePage.Title": 2, + "Position": 2, + "Remove": 2, + "JoinStringsWithSeparator": 1, + "ReplacedString": 2, + "Syntax": 1, + "scaffold.document_class": 7, + "PositionSublist": 5, + "GAPDoc2LaTeXProcs.Head": 14, + "..": 6, + "scaffold.latex_header_file": 2, + "StringFile": 2, + "scaffold.gapdoc_latex_options": 4, + "RecNames": 1, + "scaffold.gapdoc_latex_options.": 5, + "IsList": 1, + "scaffold.includes": 4, + "scaffold.bib": 7, + "Unbind": 1, + "scaffold.main_xml_file": 2, + ".TitlePage": 1, + "ExtractTitleInfoFromPackageInfo": 1, + "CreateTitlePage": 1, + "scaffold.MainPage": 2, + "scaffold.dir": 1, + "scaffold.book_name": 1, + "CreateMainPage": 1, + "WriteDocumentation": 1, + "SetGapDocLaTeXOptions": 1, + "MakeGAPDocDoc": 1, + "CopyHTMLStyleFiles": 1, + "GAPDocManualLab": 1, + "maketest.folder": 3, + "maketest.scan_dir": 3, + "CreateMakeTest": 1, + "implementation": 1, + "#M": 20, + "SomeOperation": 1, + "": 2, + "performs": 1, + "some": 2, + "operation": 1, + "on": 5, + "InstallMethod": 18, + "SomeProperty": 1, + "M": 7, + "IsFreeLeftModule": 3, + "IsTrivial": 1, + "TryNextMethod": 7, + "#F": 17, + "SomeGlobalFunction": 2, + "A": 9, + "global": 1, + "variadic": 1, + "funfion.": 1, + "*": 12, + "SomeFunc": 1, + "y": 8, + "z": 3, + "func": 3, + "j": 3, + "mod": 2, + "repeat": 1, + "until": 1, + "vspc.gd": 1, + "library": 2, + "Thomas": 2, + "Breuer": 2, + "#Y": 6, + "C": 11, + "Lehrstuhl": 2, + "D": 36, + "r": 2, + "Mathematik": 2, + "RWTH": 2, + "Aachen": 2, + "Germany": 2, + "School": 2, + "Math": 2, + "Comp.": 2, + "Sci.": 2, + "St": 2, + "Andrews": 2, + "Scotland": 2, + "The": 21, + "Group": 3, + "declares": 1, + "operations": 2, + "vector": 67, + "spaces.": 4, + "bases": 5, + "free": 3, + "left": 15, + "modules": 1, + "can": 12, + "be": 24, + "found": 1, + "": 10, + "lib/basis.gd": 1, + ".": 257, + "IsLeftOperatorRing": 1, + "IsLeftOperatorAdditiveGroup": 2, + "IsRing": 1, + "IsAssociativeLOpDProd": 2, + "#T": 6, + "really": 4, + "IsLeftOperatorRingWithOne": 2, + "IsRingWithOne": 1, + "IsLeftVectorSpace": 3, + "": 38, + "IsVectorSpace": 26, + "<#GAPDoc>": 17, + "Label=": 19, + "": 12, + "space": 74, + "": 12, + "&": 37, + "module": 2, + "see": 30, + "nbsp": 30, + "": 71, + "Func=": 40, + "over": 24, + "division": 15, + "ring": 14, + "Chapter": 3, + "Chap=": 3, + "

": 23, + "Whenever": 1, + "we": 3, + "talk": 1, + "about": 3, + "an": 17, + "": 42, + "F": 61, + "": 41, + "": 117, + "V": 152, + "": 117, + "additive": 1, + "group": 2, + "which": 8, + "acts": 1, + "via": 6, + "multiplication": 1, + "from": 5, + "such": 4, + "that": 39, + "action": 4, + "addition": 1, + "are": 14, + "right": 2, + "distributive.": 1, + "accessed": 1, + "as": 23, + "value": 9, + "attribute": 2, + "Vector": 1, + "spaces": 15, + "always": 1, + "Filt=": 4, + "synonyms.": 1, + "<#/GAPDoc>": 17, + "IsLeftActedOnByDivisionRing": 4, + "InstallTrueMethod": 4, + "IsGaussianSpace": 10, + "": 14, + "filter": 3, + "Sect=": 6, + "row": 17, + "matrix": 5, + "field": 12, + "say": 1, + "indicates": 3, + "entries": 8, + "all": 18, + "vectors": 16, + "matrices": 5, + "respectively": 1, + "contained": 4, + "In": 3, + "case": 2, + "called": 1, + "Gaussian": 19, + "space.": 5, + "Bases": 1, + "computed": 2, + "using": 2, + "elimination": 5, + "given": 4, + "list": 16, + "generators.": 1, + "": 12, + "": 12, + "gap": 41, + "mats": 5, + "VectorSpace": 13, + "Rationals": 13, + "E": 2, + "element": 2, + "extension": 3, + "Field": 1, + "": 12, + "DeclareFilter": 1, + "IsFullMatrixModule": 1, + "IsFullRowModule": 1, + "IsDivisionRing": 5, + "": 12, + "nontrivial": 1, + "associative": 1, + "algebra": 2, + "multiplicative": 1, + "inverse": 1, + "each": 2, + "nonzero": 3, + "element.": 1, + "every": 1, + "possibly": 1, + "itself": 1, + "being": 2, + "thus": 1, + "property": 2, + "get": 1, + "because": 2, + "usually": 1, + "represented": 1, + "coefficients": 3, + "stored": 1, + "DeclareSynonymAttr": 4, + "IsMagmaWithInversesIfNonzero": 1, + "IsNonTrivial": 1, + "IsAssociative": 1, + "IsEuclideanRing": 1, + "#A": 7, + "GeneratorsOfLeftVectorSpace": 1, + "GeneratorsOfVectorSpace": 2, + "": 7, + "For": 10, + "Attr=": 10, + "returns": 14, + "generate": 1, + "FullRowSpace": 5, + "GeneratorsOfLeftOperatorAdditiveGroup": 2, + "CanonicalBasis": 3, + "If": 11, + "supports": 1, + "canonical": 6, + "basis": 14, + "otherwise": 2, + "": 3, + "": 3, + "returned.": 4, + "defining": 1, + "its": 2, + "uniquely": 1, + "determined": 1, + "by": 14, + "exist": 1, + "two": 13, + "same": 6, + "acting": 8, + "domain": 17, + "equality": 1, + "these": 5, + "decided": 1, + "comparing": 1, + "bases.": 1, + "exact": 1, + "meaning": 1, + "depends": 1, + "type": 2, + "Canonical": 1, + "defined": 3, + "example": 3, + "one": 11, + "designs": 1, + "new": 2, + "kind": 1, + "defines": 1, + "method": 4, + "installs": 1, + "must": 6, + "call": 1, + "On": 1, + "other": 4, + "hand": 1, + "probably": 2, + "should": 2, + "install": 1, + "simply": 2, + "calls": 1, + "": 10, + "CANONICAL_BASIS_FLAGS": 1, + "": 9, + "vecs": 4, + "B": 16, + "": 8, + "3": 5, + "generators": 16, + "BasisVectors": 4, + "DeclareAttribute": 4, + "IsRowSpace": 2, + "consists": 7, + "IsRowModule": 1, + "IsGaussianRowSpace": 1, + "scalars": 2, + "occur": 2, + "vectors.": 2, + "Thus": 3, + "use": 5, + "calculations.": 2, + "Otherwise": 3, + "non": 4, + "Gaussian.": 2, + "We": 4, + "need": 3, + "flag": 2, + "to": 37, + "write": 3, + "down": 2, + "methods": 4, + "delegate": 2, + "ones.": 2, + "IsNonGaussianRowSpace": 1, + "expresses": 2, + "so": 3, + "cannot": 2, + "used": 10, + "compute": 3, + "handled": 3, + "mechanism": 4, + "nice": 4, + "following": 4, + "way.": 2, + "Let": 4, + "K": 4, + "spanned": 4, + "Then": 1, + "/": 12, + "cap": 1, + "v": 5, + "replacing": 1, + "entry": 2, + "forming": 1, + "concatenation.": 1, + "So": 2, + "associated": 3, + "DeclareHandlingByNiceBasis": 2, + "IsMatrixSpace": 2, + "IsMatrixModule": 1, + "IsGaussianMatrixSpace": 1, + "IsNonGaussianMatrixSpace": 1, + "irrelevant": 1, + "concatenation": 1, + "rows": 1, + "necessarily": 1, + "NormedRowVectors": 2, + "normed": 1, + "finite": 5, + "those": 1, + "have": 3, + "first": 1, + "component.": 1, + "yields": 1, + "natural": 1, + "dimensional": 5, + "subspaces": 17, + "also": 3, + "GF": 22, + "*Z": 5, + "Z": 6, + "Action": 1, + "GL": 1, + "OnLines": 1, + "TrivialSubspace": 2, + "subspace": 7, + "zero": 4, + "triv": 2, + "0": 2, + "AsSet": 1, + "TrivialSubmodule": 1, + "": 5, + "": 2, + "collection": 3, + "gens": 16, + "elements": 7, + "optional": 3, + "argument": 1, + "specify": 3, + "empty.": 1, + "string": 6, + "known": 5, + "linearly": 3, + "independent": 3, + "particular": 1, + "dimension": 9, + "immediately": 2, + "set": 6, + "note": 2, + "formed": 1, + "argument.": 1, + "2": 1, + "Subspace": 4, + "generated": 1, + "SubspaceNC": 2, + "subset": 4, + "empty": 1, + "trivial": 1, + "parent": 3, + "returned": 3, + "does": 1, + "except": 1, + "it": 8, + "omits": 1, + "check": 5, + "both": 2, + "W": 32, + "1": 3, + "Submodule": 1, + "SubmoduleNC": 1, + "#O": 2, + "AsVectorSpace": 4, + "view": 4, + "": 2, + "domain.": 1, + "form": 2, + "Oper=": 6, + "smaller": 1, + "larger": 1, + "ring.": 3, + "Dimension": 6, + "LeftActingDomain": 29, + "9": 1, + "AsLeftModule": 6, + "AsSubspace": 5, + "": 6, + "U": 12, + "collection.": 1, + "/2": 4, + "Parent": 4, + "DeclareOperation": 2, + "IsCollection": 3, + "Intersection2Spaces": 4, + "": 2, + "": 2, + "": 2, + "takes": 1, + "arguments": 1, + "intersection": 5, + "domains": 3, + "different": 2, + "let": 1, + "their": 1, + "intersection.": 1, + "AsStruct": 2, + "equal": 1, + "either": 2, + "Substruct": 1, + "common": 1, + "Struct": 1, + "cases": 2, + "basis.": 1, + "handle": 1, + "intersections": 1, + "algebras": 2, + "ideals": 2, + "sided": 1, + "ideals.": 1, + "": 2, + "": 2, + "nonnegative": 2, + "integer": 2, + "length": 1, + "An": 2, + "alternative": 2, + "construct": 2, + "above": 2, + "FullRowModule": 2, + "FullMatrixSpace": 2, + "": 1, + "positive": 1, + "integers": 1, + "fact": 1, + "FullMatrixModule": 3, + "IsSubspacesVectorSpace": 9, + "fixed": 1, + "lies": 1, + "category": 1, + "Subspaces": 8, + "Size": 5, + "iter": 17, + "Iterator": 5, + "NextIterator": 5, + "DeclareCategory": 1, + "IsDomain": 1, + "IsFinite": 4, + "Returns": 1, + "only": 5, + "": 1, + "Called": 2, + "k": 17, + "Special": 1, + "provided": 1, + "domains.": 1, + "IsInt": 3, + "IsSubspace": 3, + "OrthogonalSpaceInFullRowSpace": 1, + "complement": 1, + "full": 2, + "#P": 1, + "IsVectorSpaceHomomorphism": 3, + "": 2, + "": 1, + "mapping": 2, + "homomorphism": 1, + "linear": 1, + "source": 2, + "range": 1, + "b": 8, + "s": 4, + "hold": 1, + "IsGeneralMapping": 2, + "#E": 2, + "PackageInfo.g": 2, + "cvec": 1, + "template": 1, + "SetPackageInfo": 1, + "Subtitle": 1, + "Version": 1, + "Date": 1, + "dd/mm/yyyy": 1, + "format": 2, + "Information": 1, + "authors": 1, + "maintainers.": 1, + "Persons": 1, + "LastName": 1, + "FirstNames": 1, + "IsAuthor": 1, + "IsMaintainer": 1, + "Email": 1, + "WWWHome": 1, + "PostalAddress": 1, + "Place": 1, + "Institution": 1, + "Status": 2, + "information.": 1, + "Currently": 1, + "recognized": 1, + "successfully": 2, + "refereed": 2, + "packages": 5, + "developers": 1, + "agreed": 1, + "distribute": 1, + "them": 1, + "core": 1, + "system": 1, + "development": 1, + "versions": 1, + "You": 1, + "provide": 2, + "next": 6, + "status": 1, + "was": 1, + "#CommunicatedBy": 1, + "#AcceptDate": 1, + "PackageWWWHome": 1, + "README_URL": 1, + ".PackageWWWHome": 2, + "PackageInfoURL": 1, + "ArchiveURL": 1, + ".Version": 2, + "ArchiveFormats": 1, + "Here": 2, + "you": 3, + "short": 1, + "abstract": 1, + "explaining": 1, + "content": 1, + "HTML": 1, + "overview": 1, + "Web": 1, + "page": 1, + "URL": 1, + "Webpage": 1, + "more": 3, + "detailed": 1, + "information": 1, + "than": 1, + "few": 1, + "lines": 1, + "less": 1, + "ok": 1, + "Please": 1, + "specifing": 1, + "names.": 1, + "AbstractHTML": 1, + "PackageDoc": 1, + "BookName": 1, + "ArchiveURLSubset": 1, + "HTMLStart": 1, + "PDFFile": 1, + "SixFile": 1, + "LongTitle": 1, + "Dependencies": 1, + "NeededOtherPackages": 1, + "SuggestedOtherPackages": 1, + "ExternalConditions": 1, + "AvailabilityTest": 1, + "SHOW_STAT": 1, + "DirectoriesPackagePrograms": 1, + "#Info": 1, + "InfoWarning": 1, + "*Optional*": 2, + "but": 1, + "recommended": 1, + "path": 1, + "relative": 1, + "root": 1, + "many": 1, + "tests": 1, + "functionality": 1, + "sensible.": 1, + "#TestFile": 1, + "keyword": 1, + "related": 1, + "topic": 1, + "package.": 2, + "Keywords": 1, + "Magic.gd": 1, "SHEBANG#!#! @Description": 1, "SHEBANG#!#! This": 1, "SHEBANG#!#! any": 1, @@ -21402,7 +22119,6 @@ "TODO": 3, "mention": 1, "merging": 1, - "with": 24, "PackageInfo.AutoDoc": 1, "SHEBANG#!#! ": 3, "SHEBANG#!#! ": 13, @@ -21417,60 +22133,35 @@ "SHEBANG#!#! i.e.": 1, "SHEBANG#!#! The": 2, "SHEBANG#!#! then": 1, - "The": 21, "param": 1, "bit": 2, "strange.": 1, - "We": 4, - "should": 2, - "probably": 2, "change": 1, - "it": 8, - "to": 37, - "be": 24, - "more": 3, "general": 1, - "as": 23, - "one": 11, "might": 1, "want": 1, "define": 2, - "other": 4, "entities...": 1, - "For": 10, "now": 1, - "we": 3, "document": 1, "leave": 1, "us": 1, - "the": 136, "choice": 1, "revising": 1, "how": 1, "works.": 1, "": 2, - "": 117, "entities": 2, - "": 117, "": 2, "": 2, - "list": 16, "names": 1, - "or": 13, - "which": 8, - "are": 14, - "used": 10, "corresponding": 1, "XML": 4, "entities.": 1, - "example": 3, - "set": 6, "containing": 1, - "string": 6, "": 2, "SomePackage": 3, "": 2, - "following": 4, "added": 1, "preamble": 1, "

": 2, @@ -21478,31 +22169,17 @@ "ENTITY": 2, "": 2, "allows": 1, - "you": 3, - "write": 3, - "&": 37, "amp": 1, "your": 1, "documentation": 2, "reference": 1, - "that": 39, - "package.": 2, - "If": 11, "another": 1, - "type": 2, "entity": 1, "desired": 1, - "can": 12, - "simply": 2, "add": 2, "instead": 1, - "two": 13, - "entry": 2, "list.": 2, "It": 1, - "will": 5, - "handled": 3, - "so": 3, "please": 1, "careful.": 1, "": 2, @@ -21537,45 +22214,30 @@ "later": 1, "on.": 1, "However": 2, - "note": 2, "thanks": 1, - "new": 2, "comment": 1, "syntax": 1, - "only": 5, "remaining": 1, - "use": 5, - "this": 15, "seems": 1, "ability": 1, - "specify": 3, "order": 1, "chapters": 1, "sections.": 1, "TODO.": 1, "SHEBANG#!#! files": 1, - "Note": 3, "strictly": 1, "speaking": 1, - "also": 3, "scaffold.": 1, "uses": 2, "scaffolding": 2, - "mechanism": 4, - "really": 4, "necessary": 2, "custom": 1, "name": 2, "main": 1, - "Thus": 3, "purpose": 1, "parameter": 1, "cater": 1, - "packages": 5, - "have": 3, "existing": 1, - "using": 2, - "different": 2, "wish": 1, "scaffolding.": 1, "explain": 1, @@ -21590,7 +22252,6 @@ "just": 1, "case.": 1, "SHEBANG#!#! In": 1, - "maketest": 12, "part.": 1, "Still": 1, "under": 1, @@ -21608,664 +22269,6 @@ "SHEBANG#!#! @Returns": 1, "SHEBANG#!#! @Arguments": 1, "SHEBANG#!#! @ChapterInfo": 1, - "Magic.gi": 1, - "BindGlobal": 7, - "str": 8, - "suffix": 3, - "n": 31, - "m": 8, - "{": 21, - "}": 21, - "i": 25, - "d": 16, - "IsDirectoryPath": 1, - "CreateDir": 2, - "currently": 1, - "undocumented": 1, - "fail": 18, - "LastSystemError": 1, - ".message": 1, - "false": 7, - "pkg": 32, - "subdirs": 2, - "extensions": 1, - "d_rel": 6, - "files": 4, - "result": 9, - "DirectoriesPackageLibrary": 2, - "IsEmpty": 6, - "continue": 3, - "Directory": 5, - "DirectoryContents": 1, - "Sort": 1, - "AUTODOC_GetSuffix": 2, - "IsReadableFile": 2, - "Filename": 8, - "Add": 4, - "Make": 1, - "callable": 1, - "package_name": 1, - "AutoDocWorksheet.": 1, - "Which": 1, - "create": 1, - "worksheet": 1, - "package_info": 3, - "opt": 3, - "scaffold": 12, - "gapdoc": 7, - "autodoc": 8, - "pkg_dir": 5, - "doc_dir": 18, - "doc_dir_rel": 3, - "title_page": 7, - "tree": 8, - "is_worksheet": 13, - "position_document_class": 7, - "gapdoc_latex_option_record": 4, - "LowercaseString": 3, - "rec": 20, - "DirectoryCurrent": 1, - "PackageInfo": 1, - "key": 3, - "val": 4, - "ValueOption": 1, - "opt.": 1, - "IsBound": 39, - "opt.dir": 4, - "IsString": 7, - "IsDirectory": 1, - "AUTODOC_CreateDirIfMissing": 1, - "opt.scaffold": 5, - "package_info.AutoDoc": 3, - "IsRecord": 7, - "IsBool": 4, - "AUTODOC_APPEND_RECORD_WRITEONCE": 3, - "AUTODOC_WriteOnce": 10, - "opt.autodoc": 5, - "Concatenation": 15, - "package_info.Dependencies.NeededOtherPackages": 1, - "package_info.Dependencies.SuggestedOtherPackages": 1, - "ForAny": 1, - "autodoc.files": 7, - "autodoc.scan_dirs": 5, - "autodoc.level": 3, - "PushOptions": 1, - "level_value": 1, - "Append": 2, - "AUTODOC_FindMatchingFiles": 2, - "opt.gapdoc": 5, - "opt.maketest": 4, - "gapdoc.main": 8, - "package_info.PackageDoc": 3, - ".BookName": 2, - "gapdoc.bookname": 4, - "#Print": 1, - "gapdoc.files": 9, - "gapdoc.scan_dirs": 3, - "Set": 1, - "Number": 1, - "ListWithIdenticalEntries": 1, - "f": 11, - "DocumentationTree": 1, - "autodoc.section_intros": 2, - "AUTODOC_PROCESS_INTRO_STRINGS": 1, - "Tree": 2, - "AutoDocScanFiles": 1, - "PackageName": 2, - "scaffold.TitlePage": 4, - "scaffold.TitlePage.Title": 2, - ".TitlePage.Title": 2, - "Position": 2, - "Remove": 2, - "JoinStringsWithSeparator": 1, - "ReplacedString": 2, - "Syntax": 1, - "scaffold.document_class": 7, - "PositionSublist": 5, - "GAPDoc2LaTeXProcs.Head": 14, - "..": 6, - "scaffold.latex_header_file": 2, - "StringFile": 2, - "scaffold.gapdoc_latex_options": 4, - "RecNames": 1, - "scaffold.gapdoc_latex_options.": 5, - "IsList": 1, - "scaffold.includes": 4, - "scaffold.bib": 7, - "Unbind": 1, - "scaffold.main_xml_file": 2, - ".TitlePage": 1, - "ExtractTitleInfoFromPackageInfo": 1, - "CreateTitlePage": 1, - "scaffold.MainPage": 2, - "scaffold.dir": 1, - "scaffold.book_name": 1, - "CreateMainPage": 1, - "WriteDocumentation": 1, - "SetGapDocLaTeXOptions": 1, - "MakeGAPDocDoc": 1, - "CopyHTMLStyleFiles": 1, - "GAPDocManualLab": 1, - "maketest.folder": 3, - "maketest.scan_dir": 3, - "CreateMakeTest": 1, - "PackageInfo.g": 2, - "cvec": 1, - "s": 4, - "template": 1, - "SetPackageInfo": 1, - "Subtitle": 1, - "Version": 1, - "Date": 1, - "dd/mm/yyyy": 1, - "format": 2, - "Information": 1, - "about": 3, - "authors": 1, - "maintainers.": 1, - "Persons": 1, - "LastName": 1, - "FirstNames": 1, - "IsAuthor": 1, - "IsMaintainer": 1, - "Email": 1, - "WWWHome": 1, - "PostalAddress": 1, - "Place": 1, - "Institution": 1, - "Status": 2, - "information.": 1, - "Currently": 1, - "cases": 2, - "recognized": 1, - "successfully": 2, - "refereed": 2, - "developers": 1, - "agreed": 1, - "distribute": 1, - "them": 1, - "core": 1, - "system": 1, - "development": 1, - "versions": 1, - "all": 18, - "You": 1, - "must": 6, - "provide": 2, - "next": 6, - "entries": 8, - "status": 1, - "because": 2, - "was": 1, - "#CommunicatedBy": 1, - "#AcceptDate": 1, - "PackageWWWHome": 1, - "README_URL": 1, - ".PackageWWWHome": 2, - "PackageInfoURL": 1, - "ArchiveURL": 1, - ".Version": 2, - "ArchiveFormats": 1, - "Here": 2, - "short": 1, - "abstract": 1, - "explaining": 1, - "content": 1, - "HTML": 1, - "overview": 1, - "Web": 1, - "page": 1, - "an": 17, - "URL": 1, - "Webpage": 1, - "detailed": 1, - "information": 1, - "than": 1, - "few": 1, - "lines": 1, - "less": 1, - "ok": 1, - "Please": 1, - "specifing": 1, - "names.": 1, - "AbstractHTML": 1, - "PackageDoc": 1, - "BookName": 1, - "ArchiveURLSubset": 1, - "HTMLStart": 1, - "PDFFile": 1, - "SixFile": 1, - "LongTitle": 1, - "Dependencies": 1, - "NeededOtherPackages": 1, - "SuggestedOtherPackages": 1, - "ExternalConditions": 1, - "AvailabilityTest": 1, - "SHOW_STAT": 1, - "DirectoriesPackagePrograms": 1, - "#Info": 1, - "InfoWarning": 1, - "*Optional*": 2, - "but": 1, - "recommended": 1, - "path": 1, - "relative": 1, - "root": 1, - "many": 1, - "tests": 1, - "functionality": 1, - "sensible.": 1, - "#TestFile": 1, - "keyword": 1, - "related": 1, - "topic": 1, - "Keywords": 1, - "vspc.gd": 1, - "library": 2, - "Thomas": 2, - "Breuer": 2, - "#Y": 6, - "C": 11, - "Lehrstuhl": 2, - "D": 36, - "r": 2, - "Mathematik": 2, - "RWTH": 2, - "Aachen": 2, - "Germany": 2, - "School": 2, - "Math": 2, - "Comp.": 2, - "Sci.": 2, - "St": 2, - "Andrews": 2, - "Scotland": 2, - "Group": 3, - "declares": 1, - "operations": 2, - "vector": 67, - "spaces.": 4, - "bases": 5, - "free": 3, - "left": 15, - "modules": 1, - "found": 1, - "": 10, - "lib/basis.gd": 1, - ".": 257, - "IsLeftOperatorRing": 1, - "IsLeftOperatorAdditiveGroup": 2, - "IsRing": 1, - "IsAssociativeLOpDProd": 2, - "#T": 6, - "IsLeftOperatorRingWithOne": 2, - "IsRingWithOne": 1, - "IsLeftVectorSpace": 3, - "": 38, - "IsVectorSpace": 26, - "<#GAPDoc>": 17, - "Label=": 19, - "": 12, - "space": 74, - "": 12, - "module": 2, - "see": 30, - "nbsp": 30, - "": 71, - "Func=": 40, - "over": 24, - "division": 15, - "ring": 14, - "Chapter": 3, - "Chap=": 3, - "

": 23, - "Whenever": 1, - "talk": 1, - "": 42, - "F": 61, - "": 41, - "V": 152, - "additive": 1, - "group": 2, - "acts": 1, - "via": 6, - "multiplication": 1, - "from": 5, - "such": 4, - "action": 4, - "addition": 1, - "right": 2, - "distributive.": 1, - "accessed": 1, - "value": 9, - "attribute": 2, - "Vector": 1, - "spaces": 15, - "always": 1, - "Filt=": 4, - "synonyms.": 1, - "<#/GAPDoc>": 17, - "IsLeftActedOnByDivisionRing": 4, - "InstallTrueMethod": 4, - "IsGaussianSpace": 10, - "": 14, - "filter": 3, - "Sect=": 6, - "row": 17, - "matrix": 5, - "field": 12, - "say": 1, - "indicates": 3, - "vectors": 16, - "matrices": 5, - "respectively": 1, - "contained": 4, - "In": 3, - "case": 2, - "called": 1, - "Gaussian": 19, - "space.": 5, - "Bases": 1, - "computed": 2, - "elimination": 5, - "given": 4, - "generators.": 1, - "": 12, - "": 12, - "gap": 41, - "mats": 5, - "VectorSpace": 13, - "Rationals": 13, - "E": 2, - "element": 2, - "extension": 3, - "Field": 1, - "": 12, - "DeclareFilter": 1, - "IsFullMatrixModule": 1, - "IsFullRowModule": 1, - "IsDivisionRing": 5, - "": 12, - "nontrivial": 1, - "associative": 1, - "algebra": 2, - "multiplicative": 1, - "inverse": 1, - "each": 2, - "nonzero": 3, - "element.": 1, - "every": 1, - "possibly": 1, - "itself": 1, - "being": 2, - "thus": 1, - "property": 2, - "get": 1, - "usually": 1, - "represented": 1, - "coefficients": 3, - "stored": 1, - "DeclareSynonymAttr": 4, - "IsMagmaWithInversesIfNonzero": 1, - "IsNonTrivial": 1, - "IsAssociative": 1, - "IsEuclideanRing": 1, - "#A": 7, - "GeneratorsOfLeftVectorSpace": 1, - "GeneratorsOfVectorSpace": 2, - "": 7, - "Attr=": 10, - "returns": 14, - "generate": 1, - "FullRowSpace": 5, - "GeneratorsOfLeftOperatorAdditiveGroup": 2, - "CanonicalBasis": 3, - "supports": 1, - "canonical": 6, - "basis": 14, - "otherwise": 2, - "": 3, - "": 3, - "returned.": 4, - "defining": 1, - "its": 2, - "uniquely": 1, - "determined": 1, - "by": 14, - "exist": 1, - "same": 6, - "acting": 8, - "domain": 17, - "equality": 1, - "these": 5, - "decided": 1, - "comparing": 1, - "bases.": 1, - "exact": 1, - "meaning": 1, - "depends": 1, - "Canonical": 1, - "defined": 3, - "designs": 1, - "kind": 1, - "defines": 1, - "method": 4, - "installs": 1, - "call": 1, - "On": 1, - "hand": 1, - "install": 1, - "calls": 1, - "": 10, - "CANONICAL_BASIS_FLAGS": 1, - "": 9, - "vecs": 4, - "B": 16, - "": 8, - "3": 5, - "generators": 16, - "BasisVectors": 4, - "DeclareAttribute": 4, - "IsRowSpace": 2, - "consists": 7, - "IsRowModule": 1, - "IsGaussianRowSpace": 1, - "scalars": 2, - "occur": 2, - "vectors.": 2, - "calculations.": 2, - "Otherwise": 3, - "non": 4, - "Gaussian.": 2, - "need": 3, - "flag": 2, - "down": 2, - "methods": 4, - "delegate": 2, - "ones.": 2, - "IsNonGaussianRowSpace": 1, - "expresses": 2, - "cannot": 2, - "compute": 3, - "nice": 4, - "way.": 2, - "Let": 4, - "K": 4, - "spanned": 4, - "Then": 1, - "/": 12, - "cap": 1, - "v": 5, - "replacing": 1, - "forming": 1, - "concatenation.": 1, - "So": 2, - "associated": 3, - "DeclareHandlingByNiceBasis": 2, - "IsMatrixSpace": 2, - "IsMatrixModule": 1, - "IsGaussianMatrixSpace": 1, - "IsNonGaussianMatrixSpace": 1, - "irrelevant": 1, - "concatenation": 1, - "rows": 1, - "necessarily": 1, - "NormedRowVectors": 2, - "normed": 1, - "finite": 5, - "those": 1, - "first": 1, - "component.": 1, - "yields": 1, - "natural": 1, - "dimensional": 5, - "subspaces": 17, - "GF": 22, - "*Z": 5, - "Z": 6, - "Action": 1, - "GL": 1, - "OnLines": 1, - "TrivialSubspace": 2, - "subspace": 7, - "zero": 4, - "triv": 2, - "0": 2, - "AsSet": 1, - "TrivialSubmodule": 1, - "": 5, - "": 2, - "collection": 3, - "gens": 16, - "elements": 7, - "optional": 3, - "argument": 1, - "empty.": 1, - "known": 5, - "linearly": 3, - "independent": 3, - "particular": 1, - "dimension": 9, - "immediately": 2, - "formed": 1, - "argument.": 1, - "2": 1, - "Subspace": 4, - "generated": 1, - "SubspaceNC": 2, - "subset": 4, - "empty": 1, - "trivial": 1, - "parent": 3, - "returned": 3, - "does": 1, - "except": 1, - "omits": 1, - "check": 5, - "both": 2, - "W": 32, - "1": 3, - "Submodule": 1, - "SubmoduleNC": 1, - "#O": 2, - "AsVectorSpace": 4, - "view": 4, - "": 2, - "domain.": 1, - "form": 2, - "Oper=": 6, - "smaller": 1, - "larger": 1, - "ring.": 3, - "Dimension": 6, - "LeftActingDomain": 29, - "9": 1, - "AsLeftModule": 6, - "AsSubspace": 5, - "": 6, - "U": 12, - "collection.": 1, - "/2": 4, - "Parent": 4, - "DeclareOperation": 2, - "IsCollection": 3, - "Intersection2Spaces": 4, - "": 2, - "": 2, - "": 2, - "takes": 1, - "arguments": 1, - "intersection": 5, - "domains": 3, - "let": 1, - "their": 1, - "intersection.": 1, - "AsStruct": 2, - "equal": 1, - "either": 2, - "Substruct": 1, - "common": 1, - "Struct": 1, - "basis.": 1, - "handle": 1, - "intersections": 1, - "algebras": 2, - "ideals": 2, - "sided": 1, - "ideals.": 1, - "": 2, - "": 2, - "nonnegative": 2, - "integer": 2, - "length": 1, - "An": 2, - "alternative": 2, - "construct": 2, - "above": 2, - "FullRowModule": 2, - "FullMatrixSpace": 2, - "": 1, - "positive": 1, - "integers": 1, - "fact": 1, - "FullMatrixModule": 3, - "IsSubspacesVectorSpace": 9, - "fixed": 1, - "lies": 1, - "category": 1, - "Subspaces": 8, - "Size": 5, - "iter": 17, - "Iterator": 5, - "NextIterator": 5, - "DeclareCategory": 1, - "IsDomain": 1, - "IsFinite": 4, - "Returns": 1, - "": 1, - "Called": 2, - "k": 17, - "Special": 1, - "provided": 1, - "domains.": 1, - "IsInt": 3, - "IsSubspace": 3, - "OrthogonalSpaceInFullRowSpace": 1, - "complement": 1, - "full": 2, - "#P": 1, - "IsVectorSpaceHomomorphism": 3, - "": 2, - "": 1, - "mapping": 2, - "homomorphism": 1, - "linear": 1, - "source": 2, - "range": 1, - "b": 8, - "hold": 1, - "IsGeneralMapping": 2, - "#E": 2, "vspc.gi": 1, "generic": 1, "SetLeftActingDomain": 2, @@ -22449,17 +22452,65 @@ ".subsections_via_symbols": 1 }, "GLSL": { + "static": 1, + "const": 19, + "char*": 1, + "SimpleFragmentShader": 1, + "STRINGIFY": 1, + "(": 437, + "varying": 6, + "vec4": 77, + "FrontColor": 2, + ";": 391, + "void": 33, + "main": 7, + ")": 437, + "{": 84, + "gl_FragColor": 4, + "}": 84, + "#version": 2, + "core": 1, + "float": 105, + "cbar": 2, + "int": 8, + "cfoo": 1, + "CB": 2, + "CD": 2, + "CA": 1, + "CC": 1, + "CBT": 5, + "CDT": 3, + "CAT": 1, + "CCT": 1, + "norA": 4, + "norB": 3, + "norC": 1, + "norD": 1, + "norE": 4, + "norF": 1, + "norG": 1, + "norH": 1, + "norI": 1, + "norcA": 2, + "norcB": 3, + "norcC": 2, + "norcD": 2, + "//": 38, + "head": 1, + "of": 1, + "cycle": 2, + "norcE": 1, + "lead": 1, + "into": 1, "////": 4, "High": 1, "quality": 2, - "(": 437, "Some": 1, "browsers": 1, "may": 1, "freeze": 1, "or": 1, "crash": 1, - ")": 437, "//#define": 10, "HIGHQUALITY": 2, "Medium": 1, @@ -22486,7 +22537,6 @@ "RAGGED_LEAVES": 5, "DETAILED_NOISE": 3, "LIGHT_AA": 3, - "//": 38, "sample": 2, "SSAA": 2, "HEAVY_AA": 2, @@ -22496,12 +22546,9 @@ "Configurations": 1, "#ifdef": 14, "#endif": 14, - "const": 19, - "float": 105, "eps": 5, "e": 4, "-": 108, - ";": 391, "PI": 3, "vec3": 165, "sunDir": 5, @@ -22520,13 +22567,10 @@ "tonemapping": 1, "mod289": 4, "x": 11, - "{": 84, "return": 47, "floor": 8, "*": 116, "/": 24, - "}": 84, - "vec4": 77, "permute": 4, "x*34.0": 1, "+": 108, @@ -22727,7 +22771,6 @@ "shadow": 4, "taken": 1, "for": 7, - "int": 8, "rayDir*t": 2, "res": 6, "res.x": 3, @@ -22830,8 +22873,6 @@ "iResolution.x/iResolution.y*0.5": 1, "rd.x": 1, "rd.y": 1, - "void": 33, - "main": 7, "gl_FragCoord.xy": 7, "*0.25": 4, "*0.5": 1, @@ -22843,47 +22884,14 @@ "col*exposure": 1, "x*": 2, ".5": 1, - "gl_FragColor": 4, - "varying": 6, - "v_color": 4, "uniform": 8, "mat4": 1, "u_MVPMatrix": 2, "attribute": 2, "a_position": 1, "a_color": 2, + "v_color": 4, "gl_Position": 1, - "#version": 2, - "core": 1, - "cbar": 2, - "cfoo": 1, - "CB": 2, - "CD": 2, - "CA": 1, - "CC": 1, - "CBT": 5, - "CDT": 3, - "CAT": 1, - "CCT": 1, - "norA": 4, - "norB": 3, - "norC": 1, - "norD": 1, - "norE": 4, - "norF": 1, - "norG": 1, - "norH": 1, - "norI": 1, - "norcA": 2, - "norcB": 3, - "norcC": 2, - "norcD": 2, - "head": 1, - "of": 1, - "cycle": 2, - "norcE": 1, - "lead": 1, - "into": 1, "NUM_LIGHTS": 4, "AMBIENT": 2, "MAX_DIST": 3, @@ -22918,11 +22926,6 @@ "specularDot": 2, "sample.rgb": 1, "sample.a": 1, - "static": 1, - "char*": 1, - "SimpleFragmentShader": 1, - "STRINGIFY": 1, - "FrontColor": 2, "kCoeff": 2, "kCube": 2, "uShift": 3, @@ -22976,48 +22979,176 @@ "sampled.rgb": 1 }, "Game Maker Language": { - "//draws": 1, - "the": 62, - "sprite": 12, - "draw": 3, - "true": 73, + "xoffset": 5, + "view_xview": 3, + "[": 99, + "]": 103, ";": 1282, + "yoffset": 5, + "view_yview": 3, + "xsize": 3, + "view_wview": 2, + "ysize": 3, + "view_hview": 2, "if": 397, "(": 1501, + "distance_to_point": 3, + "+": 206, + "xsize/2": 2, + "ysize/2": 2, + ")": 1502, + "exit": 10, + "var": 79, + "xr": 19, + "yr": 19, + "round": 6, + "x": 76, + "y": 85, + "image_alpha": 10, + "cloakAlpha": 1, + "global.myself.team": 3, + "team": 13, + "and": 155, + "canCloak": 1, + "cloakAlpha/2": 1, + "invisible": 1, + "stabbing": 2, + "-": 212, + "power": 1, + "currentWeapon.stab.alpha": 1, + "&&": 6, + "player": 36, + "global.myself": 4, + "||": 16, + "global.showHealthBar": 3, + "{": 300, + "draw_set_alpha": 3, + "draw_healthbar": 1, + "hp*100/maxHp": 1, + "c_black": 1, + "c_red": 3, + "c_green": 1, + "true": 73, + "}": 307, + "mouse_x": 1, + "mouse_y": 1, + "<25)>": 1, + "cloak": 2, + "global": 8, + "myself": 2, + "1": 32, + "draw_set_halign": 1, + "fa_center": 1, + "draw_set_valign": 1, + "fa_bottom": 1, + "team=": 1, + "draw_set_color": 2, + "else": 151, + "c_blue": 2, + "draw_text": 4, + "35": 1, + "name": 9, + "showTeammateStats": 1, + "weapons": 3, + "0": 21, + "Medigun": 2, + "50": 3, + "Superburst": 1, + "string": 13, + "currentWeapon": 2, + "uberCharge": 1, + "20": 1, + "Shotgun": 1, + "Nuts": 1, + "N": 1, + "Bolts": 1, + "nutsNBolts": 1, + "Minegun": 1, + "Lobbed": 1, + "Mines": 1, + "lobbed": 1, + "TEAM_RED": 8, + "ubercolour": 6, + "TEAM_BLUE": 6, + "sprite": 12, + "overlaySprite": 6, + "zoomed": 1, + "SniperCrouchRedS": 1, + "SniperCrouchBlueS": 1, + "sniperCrouchOverlay": 1, + "sprite_index": 14, + "overlay": 1, + "omnomnomnom": 2, + "draw_sprite_ext_overlay": 7, + "omnomnomnomSprite": 2, + "omnomnomnomOverlay": 2, + "omnomnomnomindex": 4, + "image_xscale": 17, + "image_yscale": 14, + "image_angle": 14, + "c_white": 13, + "ubered": 7, + "7": 4, + "taunting": 2, + "tauntsprite": 2, + "tauntOverlay": 2, + "tauntindex": 2, + "humiliated": 1, + "draw_sprite_ext": 10, + "humiliationPoses": 1, + "floor": 11, + "animationImage": 9, + "humiliationOffset": 1, + "animationOffset": 6, + "burnDuration": 2, + "or": 78, + "burnIntensity": 2, + "for": 26, + "i": 95, + "<": 39, + "numFlames": 1, + "*": 18, + "/": 5, + "maxIntensity": 1, + "FlameS": 1, + "alarm": 13, + "random": 21, + "flameArray_x": 1, + "flameArray_y": 1, + "maxDuration": 1, + "demon": 4, + "demonX": 5, + "median": 2, + "demonY": 4, + "demonOffset": 4, + "demonDir": 2, + "abs": 9, + "dir": 3, + "demonFrame": 5, + "sprite_get_number": 1, + "*player.team": 2, + "dir*1": 2, + "//draws": 1, + "the": 62, + "draw": 3, "facing": 17, "RIGHT": 10, - ")": 1502, - "image_xscale": 17, - "-": 212, - "else": 151, "blinkToggle": 1, - "{": 300, "state": 50, "CLIMBING": 5, - "or": 78, - "sprite_index": 14, "sPExit": 1, "sDamselExit": 1, "sTunnelExit": 1, - "and": 155, "global.hasJetpack": 4, "not": 63, "whipping": 5, - "draw_sprite_ext": 10, - "x": 76, - "y": 85, - "image_yscale": 14, - "image_angle": 14, "image_blend": 2, - "image_alpha": 10, "//draw_sprite": 1, "draw_sprite": 9, "sJetpackBack": 1, "false": 85, - "}": 307, "sJetpackRight": 1, "sJetpackLeft": 1, - "+": 206, "redColor": 2, "make_color_rgb": 1, "holdArrow": 4, @@ -23029,6 +23160,250 @@ "LEFT": 7, "sArrowLeft": 1, "sBombArrowLeft": 2, + "playerId": 11, + "commandLimitRemaining": 4, + "argument0": 28, + "argument1": 10, + "with": 47, + "variable_local_exists": 4, + "commandReceiveState": 1, + "commandReceiveExpectedBytes": 1, + "commandReceiveCommand": 1, + "while": 15, + "socket": 40, + "player.socket": 12, + "tcp_receive": 3, + "player.commandReceiveExpectedBytes": 7, + "return": 56, + "switch": 9, + "player.commandReceiveState": 7, + "case": 50, + "player.commandReceiveCommand": 4, + "read_ubyte": 10, + "commandBytes": 2, + "commandBytesInvalidCommand": 1, + "break": 58, + "commandBytesPrefixLength1": 1, + "commandBytesPrefixLength2": 1, + "default": 1, + "read_ushort": 2, + "PLAYER_LEAVE": 1, + "socket_destroy": 4, + "PLAYER_CHANGECLASS": 1, + "class": 8, + "getCharacterObject": 2, + "player.team": 8, + "player.object": 12, + "collision_point": 30, + "SpawnRoom": 2, + "instance_exists": 8, + "lastDamageDealer": 8, + "sendEventPlayerDeath": 4, + "noone": 7, + "BID_FAREWELL": 4, + "doEventPlayerDeath": 4, + "assistant": 16, + "secondToLastDamageDealer": 2, + "lastDamageDealer.object": 2, + "lastDamageDealer.object.healer": 4, + "FINISHED_OFF": 5, + "instance_destroy": 7, + "player.alarm": 4, + "<=0)>": 1, + "5": 5, + "checkClasslimits": 2, + "ServerPlayerChangeclass": 2, + "sendBuffer": 1, + "PLAYER_CHANGETEAM": 1, + "newTeam": 7, + "balance": 5, + "redSuperiority": 6, + "calculate": 1, + "which": 1, + "is": 9, + "bigger": 2, + "Player": 1, + "player.class": 15, + "TEAM_SPECTATOR": 1, + "global.Server_Respawntime": 3, + "newClass": 4, + "global.sendBuffer": 19, + "ServerPlayerChangeteam": 1, + "ServerBalanceTeams": 1, + "CHAT_BUBBLE": 2, + "bubbleImage": 5, + "global.aFirst": 1, + "write_ubyte": 20, + "setChatBubble": 1, + "BUILD_SENTRY": 2, + "CLASS_ENGINEER": 3, + "collision_circle": 1, + "player.object.x": 3, + "player.object.y": 3, + "Sentry": 1, + "player.object.nutsNBolts": 1, + "player.sentry": 2, + "player.object.onCabinet": 1, + "write_ushort": 2, + "global.serializeBuffer": 3, + "player.object.x*5": 1, + "player.object.y*5": 1, + "write_byte": 1, + "player.object.image_xscale": 2, + "buildSentry": 1, + "DESTROY_SENTRY": 1, + "DROP_INTEL": 1, + "player.object.intel": 1, + "sendEventDropIntel": 1, + "doEventDropIntel": 1, + "OMNOMNOMNOM": 2, + "player.humiliated": 1, + "player.object.taunting": 1, + "player.object.omnomnomnom": 1, + "player.object.canEat": 1, + "CLASS_HEAVY": 2, + "omnomnomnomend": 2, + "xscale": 1, + "TOGGLE_ZOOM": 2, + "CLASS_SNIPER": 3, + "toggleZoom": 1, + "PLAYER_CHANGENAME": 2, + "nameLength": 4, + "socket_receivebuffer_size": 3, + "MAX_PLAYERNAME_LENGTH": 2, + "KICK": 2, + "KICK_NAME": 1, + "current_time": 2, + "lastNamechange": 2, + "read_string": 9, + "string_count": 2, + "string_length": 25, + "write_string": 9, + "INPUTSTATE": 1, + "keyState": 1, + "netAimDirection": 1, + "aimDirection": 1, + "netAimDirection*360/65536": 1, + "event_user": 1, + "REWARD_REQUEST": 1, + "player.rewardId": 1, + "player.challenge": 2, + "rewardCreateChallenge": 1, + "REWARD_CHALLENGE_CODE": 1, + "write_binstring": 1, + "REWARD_CHALLENGE_RESPONSE": 1, + "answer": 3, + "authbuffer": 1, + "read_binstring": 1, + "rewardAuthStart": 1, + "challenge": 1, + "rewardId": 1, + "PLUGIN_PACKET": 1, + "packetID": 3, + "buf": 5, + "success": 3, + "buffer_create": 7, + "write_buffer_part": 3, + "_PluginPacketPush": 1, + "buffer_destroy": 8, + "KICK_BAD_PLUGIN_PACKET": 1, + "CLIENT_SETTINGS": 2, + "mirror": 4, + "player.queueJump": 1, + "#define": 26, + "__jso_gmt_tuple": 1, + "//Position": 1, + "address": 1, + "table": 1, + "data": 4, + "pos": 2, + "addr_table": 2, + "*argument_count": 1, + "//Build": 1, + "tuple": 1, + "element": 8, + "by": 5, + "ca": 1, + "isstr": 1, + "datastr": 1, + "argument_count": 1, + "//Check": 1, + "argument": 10, + "Unexpected": 18, + "character": 20, + "at": 23, + "position": 16, + ".": 12, + "t": 23, + "f": 5, + "end": 11, + "of": 25, + "list": 36, + "in": 21, + "JSON": 5, + "string.": 5, + "Cannot": 5, + "parse": 3, + "boolean": 3, + "value": 13, + "real": 14, + "expecting": 9, + "a": 55, + "digit.": 9, + "e": 4, + "E": 4, + "dot": 1, + "an": 24, + "integer": 6, + "Expected": 6, + "least": 6, + "arguments": 26, + "got": 6, + "map": 47, + "find": 10, + "lookup.": 4, + "use": 4, + "indices": 1, + "nested": 27, + "lists": 6, + "Index": 1, + "overflow": 4, + "Recursive": 1, + "abcdef": 1, + "Invalid": 2, + "hex": 2, + "number": 7, + "num": 1, + "downloadHandle": 3, + "url": 62, + "tmpfile": 3, + "window_oldshowborder": 2, + "window_oldfullscreen": 2, + "timeLeft": 1, + "counter": 1, + "AudioControlPlaySong": 1, + "window_get_showborder": 1, + "window_get_fullscreen": 1, + "window_set_fullscreen": 2, + "window_set_showborder": 1, + "global.updaterBetaChannel": 3, + "UPDATE_SOURCE_BETA": 1, + "UPDATE_SOURCE": 1, + "temp_directory": 1, + "httpGet": 1, + "httpRequestStatus": 1, + "//": 11, + "download": 1, + "isn": 1, + "s": 6, + "extract": 1, + "downloaded": 1, + "file": 2, + "now.": 1, + "extractzip": 1, + "working_directory": 6, + "execute_program": 1, + "game_end": 1, "hangCountMax": 2, "//////////////////////////////////////": 2, "kLeft": 12, @@ -23097,7 +23472,6 @@ "isCollisionPlatformBottom": 1, "isCollisionPlatform": 1, "isCollisionWaterTop": 1, - "collision_point": 30, "oIce": 1, "checkRun": 1, "runHeld": 3, @@ -23114,15 +23488,7 @@ "global.sndPush": 4, "playSound": 3, "runAcc": 2, - "abs": 9, - "alarm": 13, - "[": 99, - "]": 103, - "<": 39, - "floor": 11, - "/": 5, "/xVel": 1, - "instance_exists": 8, "oCape": 2, "oCape.open": 6, "kJumped": 7, @@ -23150,7 +23516,6 @@ "grav": 22, "global.hasGloves": 3, "hangCount": 14, - "*": 18, "yVel*0.3": 1, "oWeb": 2, "obj": 14, @@ -23168,7 +23533,6 @@ "global.sndJump": 1, "jumpTimeTotal": 2, "//let": 1, - "character": 20, "continue": 4, "to": 62, "jump": 1, @@ -23184,15 +23548,11 @@ "obj.stuck": 1, "//the": 2, "can": 1, - "t": 23, "want": 1, - "use": 4, "because": 2, - "is": 9, "too": 2, "high": 1, "yPrevHigh": 1, - "//": 11, "we": 5, "ll": 1, "move": 2, @@ -23202,7 +23562,6 @@ "need": 1, "shorten": 1, "out": 4, - "a": 55, "little": 1, "ratio": 1, "xVelInteger": 2, @@ -23211,7 +23570,6 @@ "be": 4, "changed": 1, "moveTo": 2, - "round": 6, "xVelInteger*ratio": 1, "yVelInteger*ratio": 1, "slopeChangeInY": 1, @@ -23223,7 +23581,6 @@ "so": 2, "down": 1, "upYPrev": 1, - "for": 26, "<=upYPrev+maxDownSlope;y+=1)>": 1, "hit": 1, "solid": 1, @@ -23237,15 +23594,12 @@ "seem": 1, "make": 1, "sense": 1, - "of": 25, - "name": 9, "variable": 1, "it": 6, "all": 3, "works": 1, "correctly": 1, "after": 1, - "break": 58, "loop": 1, "y=": 1, "figures": 1, @@ -23262,11 +23616,8 @@ "image_speed": 9, "based": 1, "on": 4, - "s": 6, "velocity": 1, "runAnimSpeed": 1, - "0": 21, - "1": 32, "sqrt": 1, "sqr": 2, "climbAnimSpeed": 1, @@ -23274,384 +23625,13 @@ "4": 2, "setCollisionBounds": 3, "8": 9, - "5": 5, "DUCKTOHANG": 1, "image_index": 1, "limit": 5, - "at": 23, "animation": 1, "always": 1, "looks": 1, "good": 1, - "var": 79, - "i": 95, - "playerObject": 1, - "playerID": 1, - "player": 36, - "otherPlayerID": 1, - "otherPlayer": 1, - "sameVersion": 1, - "buffer": 1, - "plugins": 4, - "pluginsRequired": 2, - "usePlugins": 1, - "tcp_eof": 3, - "global.serverSocket": 10, - "gotServerHello": 2, - "show_message": 7, - "instance_destroy": 7, - "exit": 10, - "room": 1, - "DownloadRoom": 1, - "keyboard_check": 1, - "vk_escape": 1, - "downloadingMap": 2, - "while": 15, - "tcp_receive": 3, - "min": 4, - "downloadMapBytes": 2, - "buffer_size": 2, - "downloadMapBuffer": 6, - "write_buffer": 2, - "write_buffer_to_file": 1, - "downloadMapName": 3, - "buffer_destroy": 8, - "roomchange": 2, - "do": 1, - "switch": 9, - "read_ubyte": 10, - "case": 50, - "HELLO": 1, - "global.joinedServerName": 2, - "receivestring": 4, - "advertisedMapMd5": 1, - "receiveCompleteMessage": 1, - "global.tempBuffer": 3, - "string_pos": 20, - "Server": 3, - "sent": 7, - "illegal": 2, - "map": 47, - "This": 2, - "server": 10, - "requires": 1, - "following": 2, - "play": 2, - "#": 3, - "suggests": 1, - "optional": 1, - "Error": 2, - "ocurred": 1, - "loading": 1, - "plugins.": 1, - "Maps/": 2, - ".png": 2, - "The": 6, - "version": 4, - "Enter": 1, - "Password": 1, - "Incorrect": 1, - "Password.": 1, - "Incompatible": 1, - "protocol": 3, - "version.": 1, - "Name": 1, - "Exploit": 1, - "Invalid": 2, - "plugin": 6, - "packet": 3, - "ID": 2, - "There": 1, - "are": 1, - "many": 1, - "connections": 1, - "from": 5, - "your": 1, - "IP": 1, - "You": 1, - "have": 2, - "been": 1, - "kicked": 1, - "server.": 1, - ".": 12, - "#Server": 1, - "went": 1, - "invalid": 1, - "internal": 1, - "#Exiting.": 1, - "full.": 1, - "noone": 7, - "ERROR": 1, - "when": 1, - "reading": 1, - "no": 1, - "such": 1, - "unexpected": 1, - "data.": 1, - "until": 1, - "downloadHandle": 3, - "url": 62, - "tmpfile": 3, - "window_oldshowborder": 2, - "window_oldfullscreen": 2, - "timeLeft": 1, - "counter": 1, - "AudioControlPlaySong": 1, - "window_get_showborder": 1, - "window_get_fullscreen": 1, - "window_set_fullscreen": 2, - "window_set_showborder": 1, - "global.updaterBetaChannel": 3, - "UPDATE_SOURCE_BETA": 1, - "UPDATE_SOURCE": 1, - "temp_directory": 1, - "httpGet": 1, - "httpRequestStatus": 1, - "download": 1, - "isn": 1, - "extract": 1, - "downloaded": 1, - "file": 2, - "now.": 1, - "extractzip": 1, - "working_directory": 6, - "execute_program": 1, - "game_end": 1, - "victim": 10, - "killer": 11, - "assistant": 16, - "damageSource": 18, - "argument0": 28, - "argument1": 10, - "argument2": 3, - "argument3": 1, - "//*************************************": 6, - "//*": 3, - "Scoring": 1, - "Kill": 1, - "log": 1, - "recordKillInLog": 1, - "victim.stats": 1, - "DEATHS": 1, - "WEAPON_KNIFE": 1, - "||": 16, - "WEAPON_BACKSTAB": 1, - "killer.stats": 8, - "STABS": 2, - "killer.roundStats": 8, - "POINTS": 10, - "victim.object.currentWeapon.object_index": 1, - "Medigun": 2, - "victim.object.currentWeapon.uberReady": 1, - "BONUS": 2, - "KILLS": 2, - "victim.object.intel": 1, - "DEFENSES": 2, - "recordEventInLog": 1, - "killer.team": 1, - "killer.name": 2, - "global.myself": 4, - "assistant.stats": 2, - "ASSISTS": 2, - "assistant.roundStats": 2, - ".5": 2, - "//SPEC": 1, - "instance_create": 20, - "victim.object.x": 3, - "victim.object.y": 3, - "Spectator": 1, - "Gibbing": 2, - "xoffset": 5, - "yoffset": 5, - "xsize": 3, - "ysize": 3, - "view_xview": 3, - "view_yview": 3, - "view_wview": 2, - "view_hview": 2, - "randomize": 1, - "with": 47, - "victim.object": 2, - "WEAPON_ROCKETLAUNCHER": 1, - "WEAPON_MINEGUN": 1, - "FRAG_BOX": 2, - "WEAPON_REFLECTED_STICKY": 1, - "WEAPON_REFLECTED_ROCKET": 1, - "FINISHED_OFF_GIB": 2, - "GENERATOR_EXPLOSION": 2, - "player.class": 15, - "CLASS_QUOTE": 3, - "global.gibLevel": 14, - "distance_to_point": 3, - "xsize/2": 2, - "ysize/2": 2, - "hasReward": 4, - "repeat": 7, - "createGib": 14, - "PumpkinGib": 1, - "hspeed": 14, - "vspeed": 13, - "random": 21, - "choose": 8, - "Gib": 1, - "player.team": 8, - "TEAM_BLUE": 6, - "BlueClump": 1, - "TEAM_RED": 8, - "RedClump": 1, - "blood": 2, - "BloodDrop": 1, - "blood.hspeed": 1, - "blood.vspeed": 1, - "blood.sprite_index": 1, - "PumpkinJuiceS": 1, - "//All": 1, - "Classes": 1, - "gib": 1, - "head": 1, - "hands": 2, - "feet": 1, - "Headgib": 1, - "//Medic": 1, - "has": 2, - "specially": 1, - "colored": 1, - "CLASS_MEDIC": 2, - "Hand": 3, - "Feet": 1, - "//Class": 1, - "specific": 1, - "gibs": 1, - "CLASS_PYRO": 2, - "Accesory": 5, - "CLASS_SOLDIER": 2, - "CLASS_ENGINEER": 3, - "CLASS_SNIPER": 3, - "playsound": 2, - "deadbody": 2, - "DeathSnd1": 1, - "DeathSnd2": 1, - "DeadGuy": 1, - "deadbody.sprite_index": 2, - "haxxyStatue": 1, - "deadbody.image_index": 2, - "CHARACTER_ANIMATION_DEAD": 1, - "deadbody.hspeed": 1, - "deadbody.vspeed": 1, - "deadbody.image_xscale": 1, - "global.gg_birthday": 1, - "myHat": 2, - "PartyHat": 1, - "myHat.image_index": 2, - "victim.team": 2, - "global.xmas": 1, - "XmasHat": 1, - "Deathcam": 1, - "global.killCam": 3, - "KILL_BOX": 1, - "FINISHED_OFF": 5, - "DeathCam": 1, - "DeathCam.killedby": 1, - "DeathCam.name": 1, - "DeathCam.oldxview": 1, - "DeathCam.oldyview": 1, - "DeathCam.lastDamageSource": 1, - "DeathCam.team": 1, - "global.myself.team": 3, - "xr": 19, - "yr": 19, - "cloakAlpha": 1, - "team": 13, - "canCloak": 1, - "cloakAlpha/2": 1, - "invisible": 1, - "stabbing": 2, - "power": 1, - "currentWeapon.stab.alpha": 1, - "&&": 6, - "global.showHealthBar": 3, - "draw_set_alpha": 3, - "draw_healthbar": 1, - "hp*100/maxHp": 1, - "c_black": 1, - "c_red": 3, - "c_green": 1, - "mouse_x": 1, - "mouse_y": 1, - "<25)>": 1, - "cloak": 2, - "global": 8, - "myself": 2, - "draw_set_halign": 1, - "fa_center": 1, - "draw_set_valign": 1, - "fa_bottom": 1, - "team=": 1, - "draw_set_color": 2, - "c_blue": 2, - "draw_text": 4, - "35": 1, - "showTeammateStats": 1, - "weapons": 3, - "50": 3, - "Superburst": 1, - "string": 13, - "currentWeapon": 2, - "uberCharge": 1, - "20": 1, - "Shotgun": 1, - "Nuts": 1, - "N": 1, - "Bolts": 1, - "nutsNBolts": 1, - "Minegun": 1, - "Lobbed": 1, - "Mines": 1, - "lobbed": 1, - "ubercolour": 6, - "overlaySprite": 6, - "zoomed": 1, - "SniperCrouchRedS": 1, - "SniperCrouchBlueS": 1, - "sniperCrouchOverlay": 1, - "overlay": 1, - "omnomnomnom": 2, - "draw_sprite_ext_overlay": 7, - "omnomnomnomSprite": 2, - "omnomnomnomOverlay": 2, - "omnomnomnomindex": 4, - "c_white": 13, - "ubered": 7, - "7": 4, - "taunting": 2, - "tauntsprite": 2, - "tauntOverlay": 2, - "tauntindex": 2, - "humiliated": 1, - "humiliationPoses": 1, - "animationImage": 9, - "humiliationOffset": 1, - "animationOffset": 6, - "burnDuration": 2, - "burnIntensity": 2, - "numFlames": 1, - "maxIntensity": 1, - "FlameS": 1, - "flameArray_x": 1, - "flameArray_y": 1, - "maxDuration": 1, - "demon": 4, - "demonX": 5, - "median": 2, - "demonY": 4, - "demonOffset": 4, - "demonDir": 2, - "dir": 3, - "demonFrame": 5, - "sprite_get_number": 1, - "*player.team": 2, - "dir*1": 2, - "#define": 26, "__http_init": 3, "global.__HttpClient": 4, "object_add": 1, @@ -23659,20 +23639,18 @@ "__http_split": 3, "text": 19, "delimeter": 7, - "list": 36, + "argument2": 3, "count": 4, "ds_list_create": 5, + "string_pos": 20, "ds_list_add": 23, "string_copy": 32, - "string_length": 25, - "return": 56, "__http_parse_url": 4, "ds_map_create": 4, "ds_map_add": 15, "colonPos": 22, "string_char_at": 13, "slashPos": 13, - "real": 14, "queryPos": 12, "ds_map_destroy": 6, "__http_resolve_url": 2, @@ -23716,7 +23694,6 @@ "chr": 3, "LF": 5, "CRLF": 17, - "socket": 40, "tcp_connect": 1, "errored": 19, "error": 18, @@ -23725,13 +23702,11 @@ "statusCode": 6, "reasonPhrase": 2, "responseBody": 19, - "buffer_create": 7, "responseBodySize": 5, "responseBodyProgress": 5, "responseHeaders": 9, "requestUrl": 2, "requestHeaders": 2, - "write_string": 9, "key": 17, "ds_map_find_first": 1, "is_string": 2, @@ -23748,16 +23723,16 @@ "__http_client_destroy": 20, "available": 7, "tcp_receive_available": 1, + "tcp_eof": 3, "bytesRead": 6, "c": 20, - "read_string": 9, "Reached": 2, - "end": 11, "HTTP": 1, "defines": 1, "sequence": 2, "as": 1, "marker": 1, + "protocol": 3, "elements": 1, "except": 2, "entity": 1, @@ -23773,27 +23748,26 @@ "First": 1, "status": 2, "code": 2, + "The": 6, "first": 3, "Response": 1, "message": 1, "Status": 1, "Line": 1, "consisting": 1, + "version": 4, "followed": 1, - "by": 5, "numeric": 1, "its": 1, "associated": 1, "textual": 1, "phrase": 1, "each": 18, - "element": 8, "separated": 1, "SP": 1, "characters": 3, "No": 3, "allowed": 1, - "in": 21, "final": 1, "httpVer": 2, "spacePos": 11, @@ -23804,9 +23778,9 @@ "Blank": 1, "write": 1, "remainder": 1, - "write_buffer_part": 3, "Header": 1, "Receiving": 1, + "write_buffer": 2, "transfer": 6, "encoding": 2, "chunked": 4, @@ -23821,7 +23795,6 @@ "chunk": 12, "size": 7, "extension": 3, - "data": 4, "HEX": 1, "buffer_bytes_left": 6, "chunkSize": 11, @@ -23841,20 +23814,18 @@ "up": 6, "Parsing": 1, "failed": 56, - "hex": 2, "was": 1, "hexadecimal": 1, "Is": 1, - "bigger": 2, "than": 1, "remaining": 1, "2": 2, "responseHaders": 1, "location": 4, "resolved": 5, - "socket_destroy": 4, "http_new_get": 1, "variable_global_exists": 2, + "instance_create": 20, "http_new_get_ex": 1, "http_step": 1, "client.errored": 3, @@ -23873,9 +23844,249 @@ "http_response_headers": 1, "client.responseHeaders": 1, "http_destroy": 1, + "assert_true": 1, + "_assert_error_popup": 2, + "string_repeat": 2, + "_assert_newline": 2, + "assert_false": 1, + "assert_equal": 1, + "//Safe": 1, + "equality": 1, + "check": 1, + "won": 1, + "support": 1, + "show_message": 7, + "instead": 1, + "_assert_debug_value": 1, + "//String": 1, + "os_browser": 1, + "browser_not_a_browser": 1, + "string_replace_all": 1, + "//Numeric": 1, + "GMTuple": 1, + "jso_encode_string": 1, + "encode": 8, + "escape": 2, + "jso_encode_map": 4, + "one": 42, + "key1": 3, + "key2": 3, + "multi": 7, + "jso_encode_list": 3, + "three": 36, + "_jso_decode_string": 5, + "small": 1, + "quick": 2, + "brown": 2, + "fox": 2, + "over": 2, + "lazy": 2, + "dog.": 2, + "simple": 1, + "Waahoo": 1, + "negg": 1, + "mixed": 1, + "_jso_decode_boolean": 2, + "_jso_decode_real": 11, + "standard": 1, + "zero": 4, + "signed": 2, + "decimal": 1, + "digits": 1, + "positive": 7, + "negative": 7, + "exponent": 4, + "_jso_decode_integer": 3, + "_jso_decode_map": 14, + "didn": 14, + "include": 14, + "right": 14, + "prefix": 14, + "#1": 14, + "#2": 14, + "entry": 29, + "pi": 2, + "bool": 2, + "waahoo": 10, + "woohah": 8, + "mix": 4, + "_jso_decode_list": 14, + "woo": 2, + "maps": 37, + "Empty": 4, + "equal": 20, + "other.": 12, + "junk": 2, + "info": 1, + "taxi": 1, + "An": 4, + "filled": 4, + "map.": 2, + "A": 24, + "B": 18, + "C": 8, + "Maps": 9, + "same": 6, + "content": 4, + "entered": 4, + "different": 12, + "orders": 4, + "D": 1, + "keys": 2, + "values": 4, + "six": 1, + "corresponding": 4, + "types": 4, + "other": 4, + "crash.": 4, + "list.": 2, + "Lists": 4, + "two": 16, + "entries": 2, + "also": 2, + "jso_map_check": 9, + "existing": 9, + "single": 11, + "jso_map_lookup": 3, + "wrong": 10, + "trap": 2, + "jso_map_lookup_type": 3, + "type": 8, + "four": 21, + "inexistent": 11, + "multiple": 20, + "jso_list_check": 8, + "jso_list_lookup": 3, + "jso_list_lookup_type": 3, + "inner": 1, + "indexing": 1, + "bad": 1, + "jso_cleanup_map": 1, + "one_map": 1, + "playerObject": 1, + "playerID": 1, + "otherPlayerID": 1, + "otherPlayer": 1, + "sameVersion": 1, + "buffer": 1, + "plugins": 4, + "pluginsRequired": 2, + "usePlugins": 1, + "global.serverSocket": 10, + "gotServerHello": 2, + "room": 1, + "DownloadRoom": 1, + "keyboard_check": 1, + "vk_escape": 1, + "downloadingMap": 2, + "min": 4, + "downloadMapBytes": 2, + "buffer_size": 2, + "downloadMapBuffer": 6, + "write_buffer_to_file": 1, + "downloadMapName": 3, + "roomchange": 2, + "do": 1, + "HELLO": 1, + "global.joinedServerName": 2, + "receivestring": 4, + "advertisedMapMd5": 1, + "receiveCompleteMessage": 1, + "global.tempBuffer": 3, + "Server": 3, + "sent": 7, + "illegal": 2, + "This": 2, + "server": 10, + "requires": 1, + "following": 2, + "play": 2, + "#": 3, + "suggests": 1, + "optional": 1, + "Error": 2, + "ocurred": 1, + "loading": 1, + "plugins.": 1, + "Maps/": 2, + ".png": 2, + "Enter": 1, + "Password": 1, + "Incorrect": 1, + "Password.": 1, + "Incompatible": 1, + "version.": 1, + "Name": 1, + "Exploit": 1, + "plugin": 6, + "packet": 3, + "ID": 2, + "There": 1, + "are": 1, + "many": 1, + "connections": 1, + "from": 5, + "your": 1, + "IP": 1, + "You": 1, + "have": 2, + "been": 1, + "kicked": 1, + "server.": 1, + "#Server": 1, + "went": 1, + "invalid": 1, + "internal": 1, + "#Exiting.": 1, + "full.": 1, + "ERROR": 1, + "when": 1, + "reading": 1, + "no": 1, + "such": 1, + "unexpected": 1, + "data.": 1, + "until": 1, + "hashList": 5, + "pluginname": 9, + "pluginhash": 4, + "realhash": 1, + "handle": 1, + "filesize": 1, + "progress": 1, + "tempfile": 1, + "tempdir": 1, + "lastContact": 2, + "isCached": 2, + "isDebug": 2, + "split": 1, + "checkpluginname": 1, + "ds_list_find_index": 1, + "file_exists": 5, + ".zip": 3, + "ServerPluginsCache": 6, + "@": 5, + ".zip.tmp": 1, + ".tmp": 2, + "ServerPluginsDebug": 1, + "Warning": 2, + "being": 2, + "loaded": 2, + "ServerPluginsDebug.": 2, + "Make": 2, + "sure": 2, + "clients": 1, + "they": 1, + "may": 2, + "unable": 2, + "connect.": 2, + "has": 2, + "you": 1, + "Downloading": 1, + "last_plugin.log": 2, + "plugin.gml": 1, "RoomChangeObserver": 1, "set_little_endian_global": 1, - "file_exists": 5, "file_delete": 3, "backupFilename": 5, "file_find_first": 1, @@ -23889,10 +24100,10 @@ "music": 1, "global.MenuMusic": 3, "sound_add": 3, + "choose": 8, "global.IngameMusic": 3, "global.FaucetMusic": 3, "sound_volume": 3, - "global.sendBuffer": 19, "global.HudCheck": 1, "global.map_rotation": 19, "global.CustomMapCollisionSprite": 1, @@ -23900,8 +24111,6 @@ "ini_open": 2, "global.playerName": 7, "ini_read_string": 12, - "string_count": 2, - "MAX_PLAYERNAME_LENGTH": 2, "global.fullscreen": 3, "ini_read_real": 65, "global.useLobbyServer": 2, @@ -23918,6 +24127,8 @@ "global.multiClientLimit": 2, "global.particles": 2, "PARTICLES_NORMAL": 1, + "global.gibLevel": 14, + "global.killCam": 3, "global.monitorSync": 3, "set_synchronization": 2, "global.medicRadar": 2, @@ -23970,14 +24181,16 @@ "ini_key_delete": 1, "global.classlimits": 10, "CLASS_SCOUT": 1, - "CLASS_HEAVY": 2, + "CLASS_PYRO": 2, + "CLASS_SOLDIER": 2, "CLASS_DEMOMAN": 1, + "CLASS_MEDIC": 2, "CLASS_SPY": 1, + "CLASS_QUOTE": 3, "//screw": 1, "will": 1, "start": 1, "//map_truefort": 1, - "maps": 37, "//map_2dfort": 1, "//map_conflict": 1, "//map_classicwell": 1, @@ -24002,7 +24215,6 @@ "read": 1, "multiply": 1, "hehe": 1, - "global.Server_Respawntime": 3, "global.mapchanging": 1, "ini_close": 2, "global.protocolUuid": 2, @@ -24037,7 +24249,6 @@ "file_text_close": 1, "load": 1, "ini": 1, - "Maps": 9, "section": 1, "//Set": 1, "rotation": 1, @@ -24100,318 +24311,6 @@ "AudioControlToggleMute": 1, "room_goto_fix": 2, "Menu": 2, - "__jso_gmt_tuple": 1, - "//Position": 1, - "address": 1, - "table": 1, - "pos": 2, - "addr_table": 2, - "*argument_count": 1, - "//Build": 1, - "tuple": 1, - "ca": 1, - "isstr": 1, - "datastr": 1, - "argument_count": 1, - "//Check": 1, - "argument": 10, - "Unexpected": 18, - "position": 16, - "f": 5, - "JSON": 5, - "string.": 5, - "Cannot": 5, - "parse": 3, - "boolean": 3, - "value": 13, - "expecting": 9, - "digit.": 9, - "e": 4, - "E": 4, - "dot": 1, - "an": 24, - "integer": 6, - "Expected": 6, - "least": 6, - "arguments": 26, - "got": 6, - "find": 10, - "lookup.": 4, - "indices": 1, - "nested": 27, - "lists": 6, - "Index": 1, - "overflow": 4, - "Recursive": 1, - "abcdef": 1, - "number": 7, - "num": 1, - "assert_true": 1, - "_assert_error_popup": 2, - "string_repeat": 2, - "_assert_newline": 2, - "assert_false": 1, - "assert_equal": 1, - "//Safe": 1, - "equality": 1, - "check": 1, - "won": 1, - "support": 1, - "instead": 1, - "_assert_debug_value": 1, - "//String": 1, - "os_browser": 1, - "browser_not_a_browser": 1, - "string_replace_all": 1, - "//Numeric": 1, - "GMTuple": 1, - "jso_encode_string": 1, - "encode": 8, - "escape": 2, - "jso_encode_map": 4, - "one": 42, - "key1": 3, - "key2": 3, - "multi": 7, - "jso_encode_list": 3, - "three": 36, - "_jso_decode_string": 5, - "small": 1, - "quick": 2, - "brown": 2, - "fox": 2, - "over": 2, - "lazy": 2, - "dog.": 2, - "simple": 1, - "Waahoo": 1, - "negg": 1, - "mixed": 1, - "_jso_decode_boolean": 2, - "_jso_decode_real": 11, - "standard": 1, - "zero": 4, - "signed": 2, - "decimal": 1, - "digits": 1, - "positive": 7, - "negative": 7, - "exponent": 4, - "_jso_decode_integer": 3, - "_jso_decode_map": 14, - "didn": 14, - "include": 14, - "right": 14, - "prefix": 14, - "#1": 14, - "#2": 14, - "entry": 29, - "pi": 2, - "bool": 2, - "waahoo": 10, - "woohah": 8, - "mix": 4, - "_jso_decode_list": 14, - "woo": 2, - "Empty": 4, - "equal": 20, - "other.": 12, - "junk": 2, - "info": 1, - "taxi": 1, - "An": 4, - "filled": 4, - "map.": 2, - "A": 24, - "B": 18, - "C": 8, - "same": 6, - "content": 4, - "entered": 4, - "different": 12, - "orders": 4, - "D": 1, - "keys": 2, - "values": 4, - "six": 1, - "corresponding": 4, - "types": 4, - "other": 4, - "crash.": 4, - "list.": 2, - "Lists": 4, - "two": 16, - "entries": 2, - "also": 2, - "jso_map_check": 9, - "existing": 9, - "single": 11, - "jso_map_lookup": 3, - "wrong": 10, - "trap": 2, - "jso_map_lookup_type": 3, - "type": 8, - "four": 21, - "inexistent": 11, - "multiple": 20, - "jso_list_check": 8, - "jso_list_lookup": 3, - "jso_list_lookup_type": 3, - "inner": 1, - "indexing": 1, - "bad": 1, - "jso_cleanup_map": 1, - "one_map": 1, - "hashList": 5, - "pluginname": 9, - "pluginhash": 4, - "realhash": 1, - "handle": 1, - "filesize": 1, - "progress": 1, - "tempfile": 1, - "tempdir": 1, - "lastContact": 2, - "isCached": 2, - "isDebug": 2, - "split": 1, - "checkpluginname": 1, - "ds_list_find_index": 1, - ".zip": 3, - "ServerPluginsCache": 6, - "@": 5, - ".zip.tmp": 1, - ".tmp": 2, - "ServerPluginsDebug": 1, - "Warning": 2, - "being": 2, - "loaded": 2, - "ServerPluginsDebug.": 2, - "Make": 2, - "sure": 2, - "clients": 1, - "they": 1, - "may": 2, - "unable": 2, - "connect.": 2, - "you": 1, - "Downloading": 1, - "last_plugin.log": 2, - "plugin.gml": 1, - "playerId": 11, - "commandLimitRemaining": 4, - "variable_local_exists": 4, - "commandReceiveState": 1, - "commandReceiveExpectedBytes": 1, - "commandReceiveCommand": 1, - "player.socket": 12, - "player.commandReceiveExpectedBytes": 7, - "player.commandReceiveState": 7, - "player.commandReceiveCommand": 4, - "commandBytes": 2, - "commandBytesInvalidCommand": 1, - "commandBytesPrefixLength1": 1, - "commandBytesPrefixLength2": 1, - "default": 1, - "read_ushort": 2, - "PLAYER_LEAVE": 1, - "PLAYER_CHANGECLASS": 1, - "class": 8, - "getCharacterObject": 2, - "player.object": 12, - "SpawnRoom": 2, - "lastDamageDealer": 8, - "sendEventPlayerDeath": 4, - "BID_FAREWELL": 4, - "doEventPlayerDeath": 4, - "secondToLastDamageDealer": 2, - "lastDamageDealer.object": 2, - "lastDamageDealer.object.healer": 4, - "player.alarm": 4, - "<=0)>": 1, - "checkClasslimits": 2, - "ServerPlayerChangeclass": 2, - "sendBuffer": 1, - "PLAYER_CHANGETEAM": 1, - "newTeam": 7, - "balance": 5, - "redSuperiority": 6, - "calculate": 1, - "which": 1, - "Player": 1, - "TEAM_SPECTATOR": 1, - "newClass": 4, - "ServerPlayerChangeteam": 1, - "ServerBalanceTeams": 1, - "CHAT_BUBBLE": 2, - "bubbleImage": 5, - "global.aFirst": 1, - "write_ubyte": 20, - "setChatBubble": 1, - "BUILD_SENTRY": 2, - "collision_circle": 1, - "player.object.x": 3, - "player.object.y": 3, - "Sentry": 1, - "player.object.nutsNBolts": 1, - "player.sentry": 2, - "player.object.onCabinet": 1, - "write_ushort": 2, - "global.serializeBuffer": 3, - "player.object.x*5": 1, - "player.object.y*5": 1, - "write_byte": 1, - "player.object.image_xscale": 2, - "buildSentry": 1, - "DESTROY_SENTRY": 1, - "DROP_INTEL": 1, - "player.object.intel": 1, - "sendEventDropIntel": 1, - "doEventDropIntel": 1, - "OMNOMNOMNOM": 2, - "player.humiliated": 1, - "player.object.taunting": 1, - "player.object.omnomnomnom": 1, - "player.object.canEat": 1, - "omnomnomnomend": 2, - "xscale": 1, - "TOGGLE_ZOOM": 2, - "toggleZoom": 1, - "PLAYER_CHANGENAME": 2, - "nameLength": 4, - "socket_receivebuffer_size": 3, - "KICK": 2, - "KICK_NAME": 1, - "current_time": 2, - "lastNamechange": 2, - "INPUTSTATE": 1, - "keyState": 1, - "netAimDirection": 1, - "aimDirection": 1, - "netAimDirection*360/65536": 1, - "event_user": 1, - "REWARD_REQUEST": 1, - "player.rewardId": 1, - "player.challenge": 2, - "rewardCreateChallenge": 1, - "REWARD_CHALLENGE_CODE": 1, - "write_binstring": 1, - "REWARD_CHALLENGE_RESPONSE": 1, - "answer": 3, - "authbuffer": 1, - "read_binstring": 1, - "rewardAuthStart": 1, - "challenge": 1, - "rewardId": 1, - "PLUGIN_PACKET": 1, - "packetID": 3, - "buf": 5, - "success": 3, - "_PluginPacketPush": 1, - "KICK_BAD_PLUGIN_PACKET": 1, - "CLIENT_SETTINGS": 2, - "mirror": 4, - "player.queueJump": 1, "global.levelType": 22, "//global.currLevel": 1, "global.currLevel": 22, @@ -24491,6 +24390,7 @@ "oPlayer1": 1, "scrSetupWalls": 3, "global.graphicsHigh": 1, + "repeat": 7, "tile_add": 4, "bgExtrasLush": 1, "*rand": 12, @@ -24508,7 +24408,110 @@ "sWaterTop": 1, "sLavaTop": 1, "scrCheckWaterTop": 1, - "global.temp3": 1 + "global.temp3": 1, + "victim": 10, + "killer": 11, + "damageSource": 18, + "argument3": 1, + "//*************************************": 6, + "//*": 3, + "Scoring": 1, + "Kill": 1, + "log": 1, + "recordKillInLog": 1, + "victim.stats": 1, + "DEATHS": 1, + "WEAPON_KNIFE": 1, + "WEAPON_BACKSTAB": 1, + "killer.stats": 8, + "STABS": 2, + "killer.roundStats": 8, + "POINTS": 10, + "victim.object.currentWeapon.object_index": 1, + "victim.object.currentWeapon.uberReady": 1, + "BONUS": 2, + "KILLS": 2, + "victim.object.intel": 1, + "DEFENSES": 2, + "recordEventInLog": 1, + "killer.team": 1, + "killer.name": 2, + "assistant.stats": 2, + "ASSISTS": 2, + "assistant.roundStats": 2, + ".5": 2, + "//SPEC": 1, + "victim.object.x": 3, + "victim.object.y": 3, + "Spectator": 1, + "Gibbing": 2, + "randomize": 1, + "victim.object": 2, + "WEAPON_ROCKETLAUNCHER": 1, + "WEAPON_MINEGUN": 1, + "FRAG_BOX": 2, + "WEAPON_REFLECTED_STICKY": 1, + "WEAPON_REFLECTED_ROCKET": 1, + "FINISHED_OFF_GIB": 2, + "GENERATOR_EXPLOSION": 2, + "hasReward": 4, + "createGib": 14, + "PumpkinGib": 1, + "hspeed": 14, + "vspeed": 13, + "Gib": 1, + "BlueClump": 1, + "RedClump": 1, + "blood": 2, + "BloodDrop": 1, + "blood.hspeed": 1, + "blood.vspeed": 1, + "blood.sprite_index": 1, + "PumpkinJuiceS": 1, + "//All": 1, + "Classes": 1, + "gib": 1, + "head": 1, + "hands": 2, + "feet": 1, + "Headgib": 1, + "//Medic": 1, + "specially": 1, + "colored": 1, + "Hand": 3, + "Feet": 1, + "//Class": 1, + "specific": 1, + "gibs": 1, + "Accesory": 5, + "playsound": 2, + "deadbody": 2, + "DeathSnd1": 1, + "DeathSnd2": 1, + "DeadGuy": 1, + "deadbody.sprite_index": 2, + "haxxyStatue": 1, + "deadbody.image_index": 2, + "CHARACTER_ANIMATION_DEAD": 1, + "deadbody.hspeed": 1, + "deadbody.vspeed": 1, + "deadbody.image_xscale": 1, + "global.gg_birthday": 1, + "myHat": 2, + "PartyHat": 1, + "myHat.image_index": 2, + "victim.team": 2, + "global.xmas": 1, + "XmasHat": 1, + "Deathcam": 1, + "KILL_BOX": 1, + "DeathCam": 1, + "DeathCam.killedby": 1, + "DeathCam.name": 1, + "DeathCam.oldxview": 1, + "DeathCam.oldyview": 1, + "DeathCam.lastDamageSource": 1, + "DeathCam.team": 1 }, "Gnuplot": { "set": 98, @@ -24593,38 +24596,56 @@ "ti": 4, "col": 4, "u": 25, - "SHEBANG#!gnuplot": 1, - "reset": 1, - "terminal": 1, - "png": 1, - "output": 1, - "ylabel": 5, - "#set": 2, - "xr": 1, - "yr": 1, - "pt": 2, - "notitle": 15, "dummy": 3, "v": 31, + "angles": 1, + "degrees": 1, + "parametric": 3, + "view": 3, + "samples": 3, + "isosamples": 3, + "mapping": 1, + "spherical": 1, + "noztics": 1, + "urange": 1, + "vrange": 1, + "cblabel": 1, + "cbrange": 1, + "user": 1, + "origin": 1, + "screen": 2, + "size": 1, + "front": 1, + "bdefault": 1, + "splot": 3, + "*cos": 1, + "*sin": 1, + "sin": 3, + "notitle": 15, + "with": 3, + "lines": 2, + "labels": 1, + "point": 1, + "pt": 2, + "lw": 1, + ".1": 1, + "tc": 1, + "pal": 1, "arrow": 7, "from": 7, "to": 7, "head": 7, "nofilled": 7, - "parametric": 3, - "view": 3, - "samples": 3, - "isosamples": 3, "hidden3d": 2, "trianglepattern": 2, "undefined": 2, "altdiagonal": 2, "bentover": 2, "ztics": 2, + "ylabel": 5, "zlabel": 4, "zrange": 2, "sinc": 13, - "sin": 3, "sqrt": 4, "u**2": 4, "+": 6, @@ -24643,8 +24664,6 @@ "x7": 4, "x8": 4, "x9": 4, - "splot": 3, - "<": 10, "xmin": 3, "xmax": 1, "n": 1, @@ -24657,31 +24676,15 @@ "%": 2, "u/3.*dx": 1, "/0": 1, - "angles": 1, - "degrees": 1, - "mapping": 1, - "spherical": 1, - "noztics": 1, - "urange": 1, - "vrange": 1, - "cblabel": 1, - "cbrange": 1, - "user": 1, - "origin": 1, - "screen": 2, - "size": 1, - "front": 1, - "bdefault": 1, - "*cos": 1, - "*sin": 1, - "with": 3, - "lines": 2, - "labels": 1, - "point": 1, - "lw": 1, - ".1": 1, - "tc": 1, - "pal": 1 + "SHEBANG#!gnuplot": 1, + "reset": 1, + "terminal": 1, + "png": 1, + "output": 1, + "#set": 2, + "xr": 1, + "yr": 1, + "<": 10 }, "Gosu": { "<%!-->": 1, @@ -24723,8 +24726,6 @@ "as": 3, "int": 2, "Relationship.valueOf": 2, - "hello": 1, - "print": 3, "uses": 2, "java.util.*": 1, "java.io.File": 1, @@ -24768,6 +24769,7 @@ "+": 2, "@Deprecated": 1, "printPersonInfo": 1, + "print": 3, "addPerson": 4, "p": 5, "if": 4, @@ -24816,26 +24818,10 @@ "writer": 2, "FileWriter": 1, "PersonCSVTemplate.renderToString": 1, - "PersonCSVTemplate.render": 1 + "PersonCSVTemplate.render": 1, + "hello": 1 }, "Grace": { - "method": 10, - "ack": 4, - "(": 215, - "m": 5, - "Number": 4, - "n": 4, - ")": 215, - "-": 16, - "{": 61, - "print": 2, - "if": 23, - "<": 5, - "then": 24, - "+": 29, - "}": 61, - "elseif": 1, - "else": 7, "import": 7, "as": 7, "gtk": 1, @@ -24849,7 +24835,9 @@ "def": 56, "window": 2, "gtk.window": 3, + "(": 215, "gtk.GTK_WINDOW_TOPLEVEL": 3, + ")": 215, "window.title": 1, "window.set_default_size": 1, "var": 33, @@ -24896,11 +24884,15 @@ "highlighter.Syntax_Highlighter.new": 1, "tEdit.buffer.on": 1, "do": 14, + "{": 61, "lighter.highlightLine": 1, + "}": 61, "completer": 1, "aComp.Auto_Completer.new": 1, + "method": 10, "deleteCompileFiles": 3, "page_num": 7, + "Number": 4, "cur_scrolled": 9, "scrolled_map.get": 8, "filename": 6, @@ -24908,10 +24900,12 @@ "filename.substringFrom": 1, "to": 1, "filename.size": 1, + "-": 16, "//Removes": 1, ".grace": 1, "extension": 1, "io.system": 13, + "+": 29, "currentConsole": 17, "//": 3, "Which": 1, @@ -24945,8 +24939,10 @@ "outputFile.read": 1, "errorFile.read": 1, "switched": 4, + "if": 23, "outText.size": 2, "&&": 4, + "then": 24, "switch_to_output": 3, "errorText.size": 2, "switch_to_errors": 3, @@ -24956,6 +24952,7 @@ "errorButton.on": 1, "popButton.on": 1, "popIn": 2, + "else": 7, "popOut": 2, "newButton.on": 1, "new_window_class": 1, @@ -24983,6 +24980,7 @@ "s_map": 2, "x": 21, "while": 3, + "<": 5, "eValue": 4, "sValue": 4, "e_map.put": 2, @@ -25037,26 +25035,74 @@ "mBox.add": 3, "window.add": 1, "exit": 2, + "print": 2, "gtk.main_quit": 1, "window.connect": 1, - "gtk.main": 1 + "gtk.main": 1, + "ack": 4, + "m": 5, + "n": 4, + "elseif": 1 }, "Grammatical Framework": { "-": 594, + "#": 14, + "path": 14, + ".": 13, + "present": 7, "(": 256, "c": 73, ")": 256, - "Aarne": 13, - "Ranta": 13, + "Jordi": 2, + "Saludes": 2, "under": 33, "LGPL": 33, - "abstract": 1, + "concrete": 33, + "FoodsCat": 1, + "of": 89, "Foods": 34, + "FoodsI": 6, + "with": 5, + "Syntax": 7, + "SyntaxCat": 2, + "LexFoods": 12, + "LexFoodsCat": 2, + ";": 1399, + "instance": 5, + "open": 23, + "ParadigmsCat": 1, + "M": 1, + "MorphoCat": 1, + "in": 32, "{": 579, "flags": 32, + "coding": 29, + "utf8": 29, + "oper": 29, + "wine_N": 7, + "mkN": 46, + "M.Masc": 2, + "pizza_N": 7, + "cheese_N": 7, + "fish_N": 8, + "fresh_A": 7, + "mkA": 47, + "warm_A": 8, + "italian_A": 7, + "expensive_A": 7, + "delicious_A": 7, + "boring_A": 7, + "}": 580, + "Aarne": 13, + "Ranta": 13, + "LexFoodsGer": 2, + "SyntaxGer": 2, + "ParadigmsGer": 1, + "feminine": 2, + "masculine": 4, + "abstract": 1, "startcat": 1, "Comment": 31, - ";": 1399, "cat": 1, "Item": 31, "Kind": 33, @@ -25079,170 +25125,21 @@ "Expensive": 29, "Delicious": 29, "Boring": 29, - "}": 580, - "Laurette": 2, - "Pretorius": 2, - "Sr": 2, - "&": 2, - "Jr": 2, - "and": 4, - "Ansu": 2, - "Berg": 2, - "concrete": 33, - "FoodsAfr": 1, - "of": 89, - "open": 23, - "Prelude": 11, - "Predef": 3, - "in": 32, - "coding": 29, - "utf8": 29, - "lincat": 28, - "s": 365, - "Str": 394, - "Number": 207, - "n": 206, - "AdjAP": 10, - "lin": 28, - "item": 36, - "quality": 90, - "item.s": 24, - "+": 480, - "quality.s": 50, - "Predic": 3, - "kind": 115, - "kind.s": 46, - "Sg": 184, - "Pl": 182, - "table": 148, - "Attr": 9, - "declNoun_e": 2, - "declNoun_aa": 2, - "declNoun_ss": 2, - "declNoun_s": 2, - "veryAdj": 2, - "regAdj": 61, - "smartAdj_e": 4, - "param": 22, - "|": 122, - "oper": 29, - "Noun": 9, - "operations": 2, - "wyn": 1, - "kaas": 1, - "vis": 1, - "pizza": 1, - "x": 74, - "let": 8, - "v": 6, - "tk": 1, - "last": 3, - "Adjective": 9, - "mkAdj": 27, - "y": 3, - "declAdj_e": 2, - "declAdj_g": 2, - "w": 15, - "init": 4, - "declAdj_oog": 2, - "i": 2, - "a": 57, - "x.s": 8, - "case": 44, - "_": 68, - "FoodsAmh": 1, - "Krasimir": 1, - "Angelov": 1, - "FoodsBul": 1, - "Gender": 94, - "Masc": 67, - "Fem": 65, - "Neutr": 21, - "Agr": 3, - "ASg": 23, - "APl": 11, - "g": 132, - "qual": 8, - "item.a": 2, - "qual.s": 8, - "kind.g": 38, - "#": 14, - "path": 14, - ".": 13, - "present": 7, - "Jordi": 2, - "Saludes": 2, - "FoodsCat": 1, - "FoodsI": 6, - "with": 5, - "Syntax": 7, - "SyntaxCat": 2, - "LexFoods": 12, - "LexFoodsCat": 2, - "FoodsChi": 1, - "p": 11, - "quality.p": 2, - "kind.c": 11, - "geKind": 5, - "longQuality": 8, - "mkKind": 2, - "Katerina": 2, - "Bohmova": 2, - "FoodsCze": 1, - "ResCze": 2, - "NounPhrase": 3, - "copula": 33, - "item.n": 29, - "item.g": 12, - "det": 86, - "noun": 51, - "regnfAdj": 2, - "Femke": 1, - "Johansson": 1, - "FoodsDut": 1, - "AForm": 4, - "APred": 8, - "AAttr": 3, - "regNoun": 38, - "f": 16, - "a.s": 8, - "regadj": 6, - "adj": 38, - "noun.s": 7, - "man": 10, - "men": 10, - "wijn": 3, - "koud": 3, - "duur": 2, - "dure": 2, - "FoodsEng": 1, - "language": 2, - "en_US": 1, - "car": 6, - "cold": 4, - "Julia": 1, - "Hammar": 1, - "FoodsEpo": 1, - "SS": 6, - "ss": 13, - "d": 6, - "cn": 11, - "cn.s": 8, - "vino": 3, - "nova": 3, - "FoodsFin": 1, - "SyntaxFin": 2, - "LexFoodsFin": 2, "../foods": 1, "FoodsFre": 1, "SyntaxFre": 1, "ParadigmsFre": 1, + "lincat": 28, "Utt": 4, "NP": 4, "CN": 4, "AP": 4, + "lin": 28, + "item": 36, + "quality": 90, "mkUtt": 4, "mkCl": 4, + "kind": 115, "mkNP": 16, "this_QuantSg": 2, "that_QuantSg": 2, @@ -25251,77 +25148,40 @@ "mkCN": 20, "mkAP": 28, "very_AdA": 4, - "mkN": 46, - "masculine": 4, - "feminine": 2, - "mkA": 47, - "FoodsGer": 1, - "SyntaxGer": 2, - "LexFoodsGer": 2, - "alltenses": 3, - "Dana": 1, - "Dannells": 1, - "Licensed": 1, - "FoodsHeb": 2, - "Species": 8, - "mod": 7, - "Modified": 5, - "sp": 11, - "Indef": 6, - "Def": 21, - "T": 2, - "regAdj2": 3, - "F": 2, - "Type": 9, - "Adj": 4, - "m": 9, - "cn.mod": 2, - "cn.g": 10, - "gvina": 6, - "hagvina": 3, - "gvinot": 6, - "hagvinot": 3, - "defH": 7, - "replaceLastLetter": 7, - "adjective": 22, - "tov": 6, - "tova": 3, - "tovim": 3, - "tovot": 3, - "to": 6, - "c@": 3, - "italki": 3, - "italk": 4, - "Vikash": 1, - "Rauniyar": 1, - "FoodsHin": 2, - "regN": 15, - "lark": 8, - "ms": 4, - "mp": 4, - "acch": 6, - "incomplete": 1, - "this_Det": 2, - "that_Det": 2, - "these_Det": 2, - "those_Det": 2, - "wine_N": 7, - "pizza_N": 7, - "cheese_N": 7, - "fish_N": 8, - "fresh_A": 7, - "warm_A": 8, - "italian_A": 7, - "expensive_A": 7, - "delicious_A": 7, - "boring_A": 7, + "LexFoodsSwe": 2, + "SyntaxSwe": 2, + "ParadigmsSwe": 1, "prelude": 2, "Martha": 1, "Dis": 1, "Brandt": 1, "FoodsIce": 1, + "Prelude": 11, + "SS": 6, + "s": 365, + "Gender": 94, + "Number": 207, "Defin": 9, + "Str": 394, + "g": 132, + "n": 206, + "ss": 13, + "item.s": 24, + "+": 480, + "copula": 33, + "item.n": 29, + "quality.s": 50, + "item.g": 12, "Ind": 14, + "det": 86, + "Sg": 184, + "Pl": 182, + "kind.g": 38, + "Def": 21, + "kind.s": 46, + "noun": 51, + "Neutr": 21, + "Masc": 67, "the": 7, "word": 3, "is": 6, @@ -25333,9 +25193,14 @@ "Icelandic": 1, "for": 6, "it": 2, + "Fem": 65, + "qual": 8, "defOrInd": 2, + "qual.s": 8, + "regAdj": 61, "order": 1, "given": 1, + "adj": 38, "forms": 2, "mSg": 1, "fSg": 1, @@ -25346,10 +25211,21 @@ "mSgDef": 1, "f/nSgDef": 1, "_PlDef": 1, + "adjective": 22, + "param": 22, + "|": 122, "masc": 3, "fem": 2, "neutr": 2, + "cn": 11, + "case": 44, + "cn.g": 10, + "cn.s": 8, + "man": 10, + "men": 10, + "table": 148, "x1": 3, + "_": 68, "x9": 1, "ferskur": 5, "fersk": 11, @@ -25363,10 +25239,67 @@ "t": 28, "": 1, "<": 10, + "let": 8, "Predef.tk": 2, - "FoodsIta": 1, - "SyntaxIta": 2, + "FoodsEng": 1, + "language": 2, + "en_US": 1, + "regNoun": 38, + "a": 57, + "a.s": 8, + "noun.s": 7, + "car": 6, + "cold": 4, + "Krasimir": 1, + "Angelov": 1, + "FoodsBul": 1, + "Agr": 3, + "ASg": 23, + "APl": 11, + "item.a": 2, + "Vikash": 1, + "Rauniyar": 1, + "FoodsHin": 2, + "regN": 15, + "p": 11, + "lark": 8, + "mkAdj": 27, + "ms": 4, + "mp": 4, + "f": 16, + "acch": 6, + "incomplete": 1, + "this_Det": 2, + "that_Det": 2, + "these_Det": 2, + "those_Det": 2, + "interface": 1, + "N": 4, + "A": 6, "LexFoodsIta": 2, + "SyntaxIta": 2, + "ParadigmsIta": 1, + "Katerina": 2, + "Bohmova": 2, + "resource": 1, + "ResCze": 2, + "NounPhrase": 3, + "Type": 9, + "Noun": 9, + "Adjective": 9, + "m": 9, + "ne": 2, + "muz": 2, + "muzi": 2, + "msg": 3, + "fsg": 3, + "nsg": 3, + "mpl": 3, + "fpl": 3, + "npl": 3, + "mlad": 7, + "regnfAdj": 2, + "vynikajici": 7, "../lib/src/prelude": 1, "Zofia": 1, "Stankiewicz": 1, @@ -25377,14 +25310,17 @@ "quality.t": 3, "IAdj": 4, "Plain": 3, + "APred": 8, "Polite": 4, "NaAdj": 4, + "Attr": 9, "na": 1, "adjectives": 2, "have": 2, "different": 1, "as": 2, "attributes": 1, + "and": 4, "predicates": 2, "phrase": 1, "types": 1, @@ -25392,10 +25328,90 @@ "form": 4, "without": 1, "cannot": 1, + "d": 6, "sakana": 6, "chosenna": 2, "chosen": 2, "akai": 2, + "LexFoodsFin": 2, + "SyntaxFin": 2, + "ParadigmsFin": 1, + "Laurette": 2, + "Pretorius": 2, + "Sr": 2, + "&": 2, + "Jr": 2, + "Ansu": 2, + "Berg": 2, + "FoodsAfr": 1, + "Predef": 3, + "AdjAP": 10, + "Predic": 3, + "declNoun_e": 2, + "declNoun_aa": 2, + "declNoun_ss": 2, + "declNoun_s": 2, + "veryAdj": 2, + "smartAdj_e": 4, + "operations": 2, + "wyn": 1, + "kaas": 1, + "vis": 1, + "pizza": 1, + "x": 74, + "v": 6, + "tk": 1, + "last": 3, + "y": 3, + "declAdj_e": 2, + "declAdj_g": 2, + "w": 15, + "init": 4, + "declAdj_oog": 2, + "i": 2, + "x.s": 8, + "Shafqat": 1, + "Virk": 1, + "FoodsUrd": 1, + "coupla": 2, + "FoodsSwe": 1, + "**": 1, + "sv_SE": 1, + "Julia": 1, + "Hammar": 1, + "FoodsEpo": 1, + "vino": 3, + "nova": 3, + "Rami": 1, + "Shashati": 1, + "FoodsPor": 1, + "mkAdjReg": 7, + "QualityT": 5, + "bonito": 2, + "bonita": 2, + "bonitos": 2, + "bonitas": 2, + "regular": 2, + "pattern": 1, + "adjSozinho": 2, + "sozinho": 3, + "sozinh": 4, + "gender": 2, + "independent": 1, + "adjUtil": 2, + "util": 3, + "uteis": 3, + "smart": 1, + "paradigm": 1, + "adjcetives": 1, + "ItemT": 2, + "KindT": 4, + "num": 6, + "noun.g": 3, + "animal": 2, + "animais": 2, + "gen": 4, + "carro": 3, "Inese": 1, "Bernsone": 1, "FoodsLav": 1, @@ -25414,62 +25430,14 @@ "skaistie": 2, "skaistaas": 2, "skaist": 8, - "John": 1, - "J.": 1, - "Camilleri": 1, - "FoodsMlt": 1, - "uniAdj": 2, - "Create": 6, - "an": 2, - "full": 1, - "function": 1, - "Params": 4, - "Sing": 4, - "Plural": 2, - "iswed": 2, - "sewda": 2, - "suwed": 3, - "regular": 2, - "Param": 2, - "frisk": 4, - "eg": 1, - "tal": 1, - "buzz": 1, - "uni": 4, - "Singular": 1, - "inherent": 1, - "ktieb": 2, - "kotba": 2, - "Copula": 1, - "linking": 1, - "verb": 1, - "article": 3, - "taking": 1, - "into": 1, - "account": 1, - "first": 1, - "letter": 1, - "next": 1, - "pre": 1, - "cons@": 1, - "cons": 1, - "determinant": 1, - "Sg/Pl": 1, - "string": 1, - "default": 1, - "gender": 2, - "number": 2, - "/GF/lib/src/prelude": 1, - "Nyamsuren": 1, - "Erdenebadrakh": 1, - "FoodsMon": 1, - "prefixSS": 1, - "Dinesh": 1, - "Simkhada": 1, - "FoodsNep": 1, - "adjPl": 2, - "bor": 2, - "FoodsOri": 1, + "alltenses": 3, + "FoodsTha": 1, + "SyntaxTha": 1, + "LexiconTha": 1, + "ParadigmsTha": 1, + "R": 4, + "ResTha": 1, + "R.thword": 4, "FoodsPes": 1, "optimize": 1, "noexpand": 1, @@ -25496,81 +25464,8 @@ "mrd": 8, "tAzh": 8, "tAzhy": 2, - "Rami": 1, - "Shashati": 1, - "FoodsPor": 1, - "mkAdjReg": 7, - "QualityT": 5, - "bonito": 2, - "bonita": 2, - "bonitos": 2, - "bonitas": 2, - "pattern": 1, - "adjSozinho": 2, - "sozinho": 3, - "sozinh": 4, - "independent": 1, - "adjUtil": 2, - "util": 3, - "uteis": 3, - "smart": 1, - "paradigm": 1, - "adjcetives": 1, - "ItemT": 2, - "KindT": 4, - "num": 6, - "noun.g": 3, - "animal": 2, - "animais": 2, - "gen": 4, - "carro": 3, - "Ramona": 1, - "Enache": 1, - "FoodsRon": 1, - "NGender": 6, - "NMasc": 2, - "NFem": 3, - "NNeut": 2, - "mkTab": 5, - "mkNoun": 5, - "getAgrGender": 3, - "acesta": 2, - "aceasta": 2, - "gg": 3, - "det.s": 1, - "peste": 2, - "pesti": 2, - "scump": 2, - "scumpa": 2, - "scumpi": 2, - "scumpe": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "ng": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "FoodsSpa": 1, - "SyntaxSpa": 1, - "StructuralSpa": 1, - "ParadigmsSpa": 1, - "FoodsSwe": 1, - "SyntaxSwe": 2, - "LexFoodsSwe": 2, - "**": 1, - "sv_SE": 1, - "FoodsTha": 1, - "SyntaxTha": 1, - "LexiconTha": 1, - "ParadigmsTha": 1, - "R": 4, - "ResTha": 1, - "R.thword": 4, + "FoodsOri": 1, + "FoodsIta": 1, "FoodsTsn": 1, "NounClass": 28, "r": 9, @@ -25583,6 +25478,7 @@ "quality.p_form": 1, "kind.w": 4, "mkDemPron1": 3, + "kind.c": 11, "kind.q": 4, "mkDemPron2": 3, "mkMod": 2, @@ -25616,6 +25512,39 @@ "mkQualRelPart": 2, "mkDescrCop_PName": 2, "mkDescrCop": 2, + "FoodsAmh": 1, + "FoodsSpa": 1, + "SyntaxSpa": 1, + "StructuralSpa": 1, + "ParadigmsSpa": 1, + "Dana": 1, + "Dannells": 1, + "Licensed": 1, + "FoodsHeb": 2, + "Species": 8, + "mod": 7, + "Modified": 5, + "sp": 11, + "Indef": 6, + "T": 2, + "regAdj2": 3, + "F": 2, + "Adj": 4, + "cn.mod": 2, + "gvina": 6, + "hagvina": 3, + "gvinot": 6, + "hagvinot": 3, + "defH": 7, + "replaceLastLetter": 7, + "tov": 6, + "tova": 3, + "tovim": 3, + "tovot": 3, + "to": 6, + "c@": 3, + "italki": 3, + "italk": 4, "FoodsTur": 1, "Case": 10, "softness": 4, @@ -25635,6 +25564,7 @@ "then": 1, "singular": 1, "regardless": 1, + "number": 2, "subject.": 1, "Since": 1, "all": 1, @@ -25682,36 +25612,111 @@ "copula.": 1, "base": 4, "*": 1, - "Shafqat": 1, - "Virk": 1, - "FoodsUrd": 1, - "coupla": 2, - "interface": 1, - "N": 4, - "A": 6, - "instance": 5, - "ParadigmsCat": 1, - "M": 1, - "MorphoCat": 1, - "M.Masc": 2, - "ParadigmsFin": 1, - "ParadigmsGer": 1, - "ParadigmsIta": 1, - "ParadigmsSwe": 1, - "resource": 1, - "ne": 2, - "muz": 2, - "muzi": 2, - "msg": 3, - "fsg": 3, - "nsg": 3, - "mpl": 3, - "fpl": 3, - "npl": 3, - "mlad": 7, - "vynikajici": 7 + "Ramona": 1, + "Enache": 1, + "FoodsRon": 1, + "NGender": 6, + "NMasc": 2, + "NFem": 3, + "NNeut": 2, + "mkTab": 5, + "mkNoun": 5, + "getAgrGender": 3, + "acesta": 2, + "aceasta": 2, + "gg": 3, + "det.s": 1, + "peste": 2, + "pesti": 2, + "scump": 2, + "scumpa": 2, + "scumpi": 2, + "scumpe": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "ng": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "FoodsCze": 1, + "John": 1, + "J.": 1, + "Camilleri": 1, + "FoodsMlt": 1, + "uniAdj": 2, + "Create": 6, + "an": 2, + "full": 1, + "function": 1, + "Params": 4, + "Sing": 4, + "Plural": 2, + "iswed": 2, + "sewda": 2, + "suwed": 3, + "Param": 2, + "frisk": 4, + "eg": 1, + "tal": 1, + "buzz": 1, + "uni": 4, + "Singular": 1, + "inherent": 1, + "ktieb": 2, + "kotba": 2, + "Copula": 1, + "linking": 1, + "verb": 1, + "article": 3, + "taking": 1, + "into": 1, + "account": 1, + "first": 1, + "letter": 1, + "next": 1, + "pre": 1, + "cons@": 1, + "cons": 1, + "determinant": 1, + "Sg/Pl": 1, + "string": 1, + "default": 1, + "FoodsGer": 1, + "FoodsChi": 1, + "quality.p": 2, + "geKind": 5, + "longQuality": 8, + "mkKind": 2, + "Dinesh": 1, + "Simkhada": 1, + "FoodsNep": 1, + "adjPl": 2, + "bor": 2, + "Femke": 1, + "Johansson": 1, + "FoodsDut": 1, + "AForm": 4, + "AAttr": 3, + "regadj": 6, + "wijn": 3, + "koud": 3, + "duur": 2, + "dure": 2, + "/GF/lib/src/prelude": 1, + "Nyamsuren": 1, + "Erdenebadrakh": 1, + "FoodsMon": 1, + "prefixSS": 1, + "FoodsFin": 1 }, "Groovy": { + "SHEBANG#!groovy": 2, + "println": 3, "task": 1, "echoDirListViaAntBuilder": 1, "(": 7, @@ -25755,16 +25760,14 @@ "CWD": 1, "projectDir": 1, "removed.": 1, - "println": 3, "it.toString": 1, "-": 1, - "SHEBANG#!groovy": 2, "html": 3, "head": 2, - "component": 1, "title": 2, "body": 1, - "p": 1 + "p": 1, + "component": 1 }, "Groovy Server Pages": { "": 4, @@ -25776,11 +25779,8 @@ "": 4, "Testing": 3, "with": 3, - "SiteMesh": 2, - "and": 2, "Resources": 2, "": 4, - "name=": 1, "": 2, "module=": 2, "": 4, @@ -25803,43 +25803,107 @@ "": 2, "": 2, "Print": 1, + "SiteMesh": 2, + "and": 2, "{": 1, "example": 1, - "}": 1 + "}": 1, + "name=": 1 }, "HTML": { "": 2, - "HTML": 2, + "html": 1, "PUBLIC": 2, "W3C": 2, "DTD": 3, - "4": 1, + "XHTML": 1, + "1": 1, "0": 2, - "Frameset": 1, + "Transitional": 1, "EN": 2, "http": 3, "www": 2, "w3": 2, "org": 2, "TR": 2, + "xhtml1": 2, + "transitional": 1, + "dtd": 2, + "": 2, + "xmlns=": 1, + "": 2, + "": 1, + "equiv=": 1, + "content=": 1, + "": 2, + "Related": 2, + "Pages": 2, + "": 2, + "": 1, + "href=": 9, + "rel=": 1, + "type=": 1, + "": 1, + "": 2, + "

": 10, + "class=": 22, + "": 8, + "Main": 1, + "Page": 1, + "": 8, + "&": 3, + "middot": 3, + ";": 3, + "Class": 2, + "Overview": 2, + "Hierarchy": 1, + "All": 1, + "Classes": 1, + "
": 11, + "Here": 1, + "is": 1, + "a": 4, + "list": 1, + "of": 5, + "all": 1, + "related": 1, + "documentation": 1, + "pages": 1, + "": 1, + "": 2, + "id=": 2, + "": 4, + "": 2, + "16": 1, + "The": 2, + "Layout": 1, + "System": 1, + "
": 4, + "": 2, + "src=": 2, + "alt=": 2, + "width=": 1, + "height=": 2, + "target=": 3, + "
": 1, + "Generated": 1, + "with": 1, + "Doxygen": 1, + "": 2, + "": 2, + "HTML": 2, + "4": 1, + "Frameset": 1, "REC": 1, "html40": 1, "frameset": 1, - "dtd": 2, - "": 2, - "": 2, "Common_meta": 1, "(": 14, ")": 14, - "": 2, "Android": 5, "API": 7, "Differences": 2, "Report": 2, - "": 2, - "": 2, - "
": 10, - "class=": 22, "Header": 1, "

": 1, "

": 1, @@ -25869,17 +25933,14 @@ "an": 3, "change": 2, "includes": 1, - "a": 4, "brief": 1, "description": 1, - "of": 5, "explanation": 1, "suggested": 1, "workaround": 1, "where": 1, "available.": 1, "

": 3, - "The": 2, "differences": 2, "described": 1, "this": 2, @@ -25915,12 +25976,8 @@ "about": 1, "SDK": 1, "see": 1, - "": 8, - "href=": 9, - "target=": 3, "product": 1, "site": 1, - "": 8, ".": 1, "if": 4, "no_delta": 1, @@ -25949,61 +26006,7 @@ "PackageAddedLink": 1, "SimpleTableRow": 2, "changed_packages": 2, - "PackageChangedLink": 1, - "
": 11, - "": 2, - "": 2, - "html": 1, - "XHTML": 1, - "1": 1, - "Transitional": 1, - "xhtml1": 2, - "transitional": 1, - "xmlns=": 1, - "": 1, - "equiv=": 1, - "content=": 1, - "Related": 2, - "Pages": 2, - "": 1, - "rel=": 1, - "type=": 1, - "": 1, - "Main": 1, - "Page": 1, - "&": 3, - "middot": 3, - ";": 3, - "Class": 2, - "Overview": 2, - "Hierarchy": 1, - "All": 1, - "Classes": 1, - "Here": 1, - "is": 1, - "list": 1, - "all": 1, - "related": 1, - "documentation": 1, - "pages": 1, - "": 1, - "": 2, - "id=": 2, - "": 4, - "": 2, - "16": 1, - "Layout": 1, - "System": 1, - "
": 4, - "": 2, - "src=": 2, - "alt=": 2, - "width=": 1, - "height=": 2, - "
": 1, - "Generated": 1, - "with": 1, - "Doxygen": 1 + "PackageChangedLink": 1 }, "Haml": { "%": 1, @@ -26032,43 +26035,33 @@ "/each": 1 }, "Haskell": { - "import": 6, - "Data.Char": 1, - "main": 4, - "IO": 2, - "(": 8, - ")": 8, - "do": 3, - "let": 2, - "hello": 2, - "putStrLn": 3, - "map": 13, - "toUpper": 1, "module": 2, - "Main": 1, - "where": 4, "Sudoku": 9, - "Data.Maybe": 2, - "sudoku": 36, - "[": 4, - "]": 3, - "pPrint": 5, - "+": 2, - "fromMaybe": 1, + "(": 8, "solve": 5, "isSolved": 4, + "pPrint": 5, + ")": 8, + "where": 4, + "import": 6, + "Data.Maybe": 2, "Data.List": 1, "Data.List.Split": 1, "type": 1, + "[": 4, "Int": 1, + "]": 3, "-": 3, "Maybe": 1, + "sudoku": 36, "|": 8, "Just": 1, "otherwise": 2, + "do": 3, "index": 27, "<": 1, "elemIndex": 1, + "let": 2, "sudokus": 2, "nextTest": 5, "i": 7, @@ -26093,6 +26086,7 @@ "quot": 3, "transpose": 4, "mod": 2, + "map": 13, "concat": 2, "concatMap": 2, "3": 4, @@ -26108,7 +26102,16 @@ "True": 1, "String": 1, "intercalate": 2, - "show": 1 + "show": 1, + "Data.Char": 1, + "main": 4, + "IO": 2, + "hello": 2, + "putStrLn": 3, + "toUpper": 1, + "Main": 1, + "+": 2, + "fromMaybe": 1 }, "Hy": { ";": 4, @@ -26159,90 +26162,33 @@ ";": 59, "docformat": 3, "+": 8, - "Inverse": 1, - "hyperbolic": 2, - "cosine.": 1, - "Uses": 1, - "the": 7, - "formula": 1, - "text": 1, - "{": 3, - "acosh": 1, - "}": 3, - "(": 26, - "z": 9, - ")": 26, - "ln": 1, - "sqrt": 4, - "-": 14, - "Examples": 2, - "The": 1, - "arc": 1, - "sine": 1, - "function": 4, - "looks": 1, - "like": 2, - "IDL": 5, - "x": 8, - "*": 2, - "findgen": 1, - "/": 1, - "plot": 1, - "mg_acosh": 2, - "xstyle": 1, - "This": 1, - "should": 1, - "look": 1, - "..": 1, - "image": 1, - "acosh.png": 1, - "Returns": 3, - "float": 1, - "double": 2, - "complex": 2, - "or": 1, - "depending": 1, - "on": 1, - "input": 2, - "Params": 3, - "in": 4, - "required": 4, - "type": 5, - "numeric": 1, - "compile_opt": 3, - "strictarr": 3, - "return": 5, - "alog": 1, - "end": 5, - "MODULE": 1, - "mg_analysis": 1, - "DESCRIPTION": 1, - "Tools": 1, - "for": 2, - "analysis": 1, - "VERSION": 1, - "SOURCE": 1, - "mgalloy": 1, - "BUILD_DATE": 1, - "January": 1, - "FUNCTION": 2, - "MG_ARRAY_EQUAL": 1, - "KEYWORDS": 1, - "MG_TOTAL": 1, "Find": 1, + "the": 7, "greatest": 1, "common": 1, "denominator": 1, + "(": 26, "GCD": 1, + ")": 26, + "for": 2, "two": 1, "positive": 2, "integers.": 1, + "Returns": 3, "integer": 5, + "Params": 3, "a": 4, + "in": 4, + "required": 4, + "type": 5, "first": 1, "b": 4, "second": 1, + "-": 14, + "function": 4, "mg_gcd": 2, + "compile_opt": 3, + "strictarr": 3, "on_error": 1, "if": 5, "n_params": 1, @@ -26260,8 +26206,10 @@ "<": 1, "maxArg": 3, "eq": 2, + "return": 5, "remainder": 3, "mod": 1, + "end": 5, "Truncate": 1, "argument": 2, "towards": 1, @@ -26274,6 +26222,7 @@ "CEIL": 1, "negative": 1, "values.": 1, + "Examples": 2, "Try": 1, "main": 2, "level": 2, @@ -26283,6 +26232,7 @@ "file.": 1, "It": 1, "does": 1, + "IDL": 5, "print": 4, "mg_trunc": 3, "[": 6, @@ -26292,6 +26242,7 @@ "array": 2, "same": 1, "as": 1, + "x": 8, "float/double": 1, "containing": 1, "to": 1, @@ -26302,7 +26253,59 @@ "gt": 2, "nposInd": 2, "L": 1, - "example": 1 + "example": 1, + "MODULE": 1, + "mg_analysis": 1, + "DESCRIPTION": 1, + "Tools": 1, + "analysis": 1, + "VERSION": 1, + "SOURCE": 1, + "mgalloy": 1, + "BUILD_DATE": 1, + "January": 1, + "FUNCTION": 2, + "MG_ARRAY_EQUAL": 1, + "KEYWORDS": 1, + "MG_TOTAL": 1, + "Inverse": 1, + "hyperbolic": 2, + "cosine.": 1, + "Uses": 1, + "formula": 1, + "text": 1, + "{": 3, + "acosh": 1, + "}": 3, + "z": 9, + "ln": 1, + "sqrt": 4, + "The": 1, + "arc": 1, + "sine": 1, + "looks": 1, + "like": 2, + "*": 2, + "findgen": 1, + "/": 1, + "plot": 1, + "mg_acosh": 2, + "xstyle": 1, + "This": 1, + "should": 1, + "look": 1, + "..": 1, + "image": 1, + "acosh.png": 1, + "float": 1, + "double": 2, + "complex": 2, + "or": 1, + "depending": 1, + "on": 1, + "input": 2, + "numeric": 1, + "alog": 1 }, "INI": { ";": 1, @@ -26370,16 +26373,29 @@ "]": 1 }, "Inform 7": { - "by": 3, - "Andrew": 3, - "Plotkin.": 2, - "Include": 1, + "Version": 1, + "of": 3, "Trivial": 3, "Extension": 3, - "The": 1, - "Kitchen": 1, + "by": 3, + "Andrew": 3, + "Plotkin": 1, + "begins": 1, + "here.": 2, + "A": 3, + "cow": 3, "is": 4, "a": 2, + "kind": 1, + "animal.": 1, + "can": 1, + "be": 1, + "purple.": 1, + "ends": 1, + "Plotkin.": 2, + "Include": 1, + "The": 1, + "Kitchen": 1, "room.": 1, "[": 1, "This": 1, @@ -26399,26 +26415,13 @@ "this": 1, "player.": 1, "]": 1, - "A": 3, "purple": 1, - "cow": 3, "called": 1, "Gelett": 2, "Kitchen.": 1, "Instead": 1, - "of": 3, "examining": 1, - "say": 1, - "Version": 1, - "Plotkin": 1, - "begins": 1, - "here.": 2, - "kind": 1, - "animal.": 1, - "can": 1, - "be": 1, - "purple.": 1, - "ends": 1 + "say": 1 }, "Ioke": { "SHEBANG#!ioke": 1, @@ -26507,10 +26510,10 @@ }, "JSON": { "{": 73, - "[": 17, - "]": 17, + "true": 3, "}": 73, - "true": 3 + "[": 17, + "]": 17 }, "JSON5": { "{": 6, @@ -26567,34 +26570,25 @@ "(": 14, "Query": 2, "for": 4, - "returning": 1, - "one": 1, + "searching": 1, + "the": 1, "database": 2, - "entry": 1, + "keywords": 1, ")": 14, "import": 5, "module": 5, "namespace": 5, - "req": 6, + "index": 3, ";": 9, "catalog": 4, + "req": 6, "variable": 4, - "id": 3, + "phrase": 2, "param": 4, "-": 11, "values": 4, "[": 5, "]": 5, - "part": 2, - "get": 2, - "data": 4, - "by": 2, - "key": 1, - "searching": 1, - "the": 1, - "keywords": 1, - "index": 3, - "phrase": 2, "limit": 2, "integer": 1, "result": 1, @@ -26605,6 +26599,10 @@ "where": 1, "le": 1, "let": 1, + "data": 4, + "get": 2, + "by": 2, + "id": 3, "result.s": 1, "result.p": 1, "return": 1, @@ -26612,7 +26610,12 @@ "|": 2, "score": 1, "result.r": 1, - "}": 2 + "}": 2, + "returning": 1, + "one": 1, + "entry": 1, + "part": 2, + "key": 1 }, "Jade": { "p.": 1, @@ -26621,200 +26624,62 @@ }, "Java": { "package": 6, - "clojure.asm": 1, + "clojure.lang": 1, ";": 891, "import": 66, - "java.lang.reflect.Constructor": 1, - "java.lang.reflect.Method": 1, - "public": 214, - "class": 12, - "Type": 42, - "{": 434, - "final": 78, - "static": 141, - "int": 62, - "VOID": 5, - "BOOLEAN": 6, - "CHAR": 6, - "BYTE": 6, - "SHORT": 6, - "INT": 6, - "FLOAT": 6, - "LONG": 7, - "DOUBLE": 7, - "ARRAY": 6, - "OBJECT": 7, - "VOID_TYPE": 3, - "new": 131, - "(": 1097, - ")": 1097, - "BOOLEAN_TYPE": 3, - "CHAR_TYPE": 3, - "BYTE_TYPE": 3, - "SHORT_TYPE": 3, - "INT_TYPE": 3, - "FLOAT_TYPE": 3, - "LONG_TYPE": 3, - "DOUBLE_TYPE": 3, - "private": 77, - "sort": 18, - "char": 13, - "[": 54, - "]": 54, - "buf": 43, - "off": 25, - "len": 24, - "this.sort": 2, - "this.len": 2, - "}": 434, - "this.buf": 2, - "this.off": 1, - "getType": 10, - "String": 33, - "typeDescriptor": 1, - "return": 267, - "typeDescriptor.toCharArray": 1, - "Class": 10, - "c": 21, - "if": 116, - "c.isPrimitive": 2, - "Integer.TYPE": 2, - "else": 33, - "Void.TYPE": 3, - "Boolean.TYPE": 2, - "Byte.TYPE": 2, - "Character.TYPE": 2, - "Short.TYPE": 2, - "Double.TYPE": 2, - "Float.TYPE": 2, - "getDescriptor": 15, - "getObjectType": 1, - "name": 10, - "l": 5, - "name.length": 2, - "+": 83, - "name.getChars": 1, - "getArgumentTypes": 2, - "methodDescriptor": 2, - "methodDescriptor.toCharArray": 2, - "size": 16, - "while": 10, - "true": 21, - "car": 18, - "break": 4, - "args": 6, - ".len": 1, - "Method": 3, - "method": 2, - "classes": 2, - "method.getParameterTypes": 1, - "types": 3, - "classes.length": 2, - "for": 16, - "i": 54, - "-": 15, - "getReturnType": 2, - "methodDescriptor.indexOf": 1, - "method.getReturnType": 1, - "switch": 6, - "case": 56, - "//": 16, - "default": 6, - "getSort": 1, - "getDimensions": 3, - "getElementType": 2, - "getClassName": 1, - "StringBuffer": 14, - "b": 7, - ".getClassName": 1, - "b.append": 1, - "b.toString": 1, - ".replace": 2, - "getInternalName": 2, - "buf.toString": 4, - "getMethodDescriptor": 2, - "returnType": 1, - "argumentTypes": 2, - "buf.append": 21, - "<": 13, - "argumentTypes.length": 1, - ".getDescriptor": 1, - "returnType.getDescriptor": 1, - "void": 25, - "c.getName": 1, - "getConstructorDescriptor": 1, - "Constructor": 1, - "parameters": 4, - "c.getParameterTypes": 1, - "parameters.length": 2, - ".toString": 1, - "m": 1, - "m.getParameterTypes": 1, - "m.getReturnType": 1, - "d": 10, - "d.isPrimitive": 1, - "d.isArray": 1, - "d.getComponentType": 1, - "d.getName": 1, - "name.charAt": 1, - "getSize": 1, - "||": 8, - "getOpcode": 1, - "opcode": 17, - "Opcodes.IALOAD": 1, - "Opcodes.IASTORE": 1, - "boolean": 36, - "equals": 2, - "Object": 31, - "o": 12, - "this": 16, - "instanceof": 19, - "false": 12, - "t": 6, - "t.sort": 1, - "Type.OBJECT": 2, - "Type.ARRAY": 2, - "t.len": 1, - "j": 9, - "t.off": 1, - "end": 4, - "t.buf": 1, - "hashCode": 1, - "hc": 4, - "*": 2, - "toString": 1, - "clojure.lang": 1, "java.lang.ref.Reference": 1, "java.math.BigInteger": 1, "java.util.Map": 3, "java.util.concurrent.ConcurrentHashMap": 1, "java.lang.ref.SoftReference": 1, "java.lang.ref.ReferenceQueue": 1, + "public": 214, + "class": 12, "Util": 1, + "{": 434, + "static": 141, + "boolean": 36, "equiv": 17, + "(": 1097, + "Object": 31, "k1": 40, "k2": 38, + ")": 1097, + "if": 116, + "return": 267, + "true": 21, "null": 80, + "instanceof": 19, "Number": 9, "&&": 6, "Numbers.equal": 1, + "else": 33, "IPersistentCollection": 5, + "||": 8, "pcequiv": 2, "k1.equals": 2, + "}": 434, + "false": 12, "long": 5, "double": 4, + "char": 13, "c1": 2, "c2": 2, ".equiv": 2, + "equals": 2, "identical": 1, + "Class": 10, "classOf": 1, "x": 8, "x.getClass": 1, + "int": 62, "compare": 1, "Numbers.compare": 1, "Comparable": 1, ".compareTo": 1, + "-": 15, "hash": 3, + "o": 12, "o.hashCode": 2, "hasheq": 1, "Numbers.hasheq": 1, @@ -26825,9 +26690,13 @@ "//a": 1, "la": 1, "boost": 1, + "+": 83, "e3779b9": 1, "<<": 1, "isPrimitive": 1, + "c": 21, + "c.isPrimitive": 2, + "Void.TYPE": 3, "isInteger": 1, "Integer": 2, "Long": 1, @@ -26838,10 +26707,12 @@ "nil": 2, "ISeq": 2, "": 1, + "void": 25, "clearCache": 1, "ReferenceQueue": 1, "rq": 1, "ConcurrentHashMap": 1, + "<": 13, "K": 2, "Reference": 3, "": 3, @@ -26851,6 +26722,8 @@ "dead": 1, "entries": 1, "rq.poll": 2, + "while": 10, + "for": 16, "Map.Entry": 1, "e": 31, "cache.entrySet": 1, @@ -26861,153 +26734,23 @@ "e.getKey": 1, "RuntimeException": 5, "runtimeException": 2, + "String": 33, "s": 10, + "new": 131, "Throwable": 4, "sneakyThrow": 1, + "t": 6, "throw": 9, "NullPointerException": 3, "Util.": 1, "": 1, "sneakyThrow0": 2, "@SuppressWarnings": 1, + "private": 77, "": 1, "extends": 10, "throws": 26, "T": 2, - "nokogiri.internals": 1, - "nokogiri.internals.NokogiriHelpers.getNokogiriClass": 1, - "nokogiri.internals.NokogiriHelpers.isNamespace": 1, - "nokogiri.internals.NokogiriHelpers.stringOrNil": 1, - "nokogiri.HtmlDocument": 1, - "nokogiri.NokogiriService": 1, - "nokogiri.XmlDocument": 1, - "org.apache.xerces.parsers.DOMParser": 1, - "org.apache.xerces.xni.Augmentations": 1, - "org.apache.xerces.xni.QName": 1, - "org.apache.xerces.xni.XMLAttributes": 1, - "org.apache.xerces.xni.XNIException": 1, - "org.apache.xerces.xni.parser.XMLDocumentFilter": 1, - "org.apache.xerces.xni.parser.XMLParserConfiguration": 1, - "org.cyberneko.html.HTMLConfiguration": 1, - "org.cyberneko.html.filters.DefaultFilter": 1, - "org.jruby.Ruby": 2, - "org.jruby.RubyClass": 2, - "org.jruby.runtime.ThreadContext": 1, - "org.jruby.runtime.builtin.IRubyObject": 2, - "org.w3c.dom.Document": 1, - "org.w3c.dom.NamedNodeMap": 1, - "org.w3c.dom.NodeList": 1, - "HtmlDomParserContext": 3, - "XmlDomParserContext": 1, - "Ruby": 43, - "runtime": 88, - "IRubyObject": 35, - "options": 4, - "super": 7, - "encoding": 2, - "@Override": 6, - "protected": 8, - "initErrorHandler": 1, - "options.strict": 1, - "errorHandler": 6, - "NokogiriStrictErrorHandler": 1, - "options.noError": 2, - "options.noWarning": 2, - "NokogiriNonStrictErrorHandler4NekoHtml": 1, - "initParser": 1, - "XMLParserConfiguration": 1, - "config": 2, - "HTMLConfiguration": 1, - "XMLDocumentFilter": 3, - "removeNSAttrsFilter": 2, - "RemoveNSAttrsFilter": 2, - "elementValidityCheckFilter": 3, - "ElementValidityCheckFilter": 3, - "//XMLDocumentFilter": 1, - "filters": 3, - "config.setErrorHandler": 1, - "this.errorHandler": 2, - "parser": 1, - "DOMParser": 1, - "setProperty": 4, - "java_encoding": 2, - "setFeature": 4, - "enableDocumentFragment": 1, - "XmlDocument": 8, - "getNewEmptyDocument": 1, - "ThreadContext": 2, - "context": 8, - "XmlDocument.rbNew": 1, - "getNokogiriClass": 1, - "context.getRuntime": 3, - "wrapDocument": 1, - "RubyClass": 92, - "klazz": 107, - "Document": 2, - "document": 5, - "HtmlDocument": 7, - "htmlDocument": 6, - "NokogiriService.HTML_DOCUMENT_ALLOCATOR.allocate": 1, - "htmlDocument.setDocumentNode": 1, - "ruby_encoding.isNil": 1, - "detected_encoding": 2, - "detected_encoding.isNil": 1, - "ruby_encoding": 3, - "charset": 2, - "tryGetCharsetFromHtml5MetaTag": 2, - "stringOrNil": 1, - "htmlDocument.setEncoding": 1, - "htmlDocument.setParsedEncoding": 1, - ".equalsIgnoreCase": 5, - "document.getDocumentElement": 2, - ".getNodeName": 4, - "NodeList": 2, - "list": 1, - ".getChildNodes": 2, - "list.getLength": 1, - "list.item": 2, - "headers": 1, - "headers.getLength": 1, - "headers.item": 2, - "NamedNodeMap": 1, - "nodeMap": 1, - ".getAttributes": 1, - "k": 5, - "nodeMap.getLength": 1, - "nodeMap.item": 2, - ".getNodeValue": 1, - "DefaultFilter": 2, - "startElement": 2, - "QName": 2, - "element": 3, - "XMLAttributes": 2, - "attrs": 4, - "Augmentations": 2, - "augs": 4, - "XNIException": 2, - "attrs.getLength": 1, - "isNamespace": 1, - "attrs.getQName": 1, - "attrs.removeAttributeAt": 1, - "element.uri": 1, - "super.startElement": 2, - "NokogiriErrorHandler": 2, - "element_names": 3, - "g": 1, - "r": 1, - "w": 1, - "y": 1, - "z": 1, - "isValid": 2, - "testee": 1, - "testee.toCharArray": 1, - "index": 4, - ".length": 1, - "testee.equals": 1, - "name.rawname": 2, - "errorHandler.getErrors": 1, - ".add": 1, - "Exception": 1, "hudson.model": 1, "hudson.ExtensionListView": 1, "hudson.Functions": 1, @@ -27036,6 +26779,7 @@ "Hudson": 5, "Jenkins": 2, "transient": 2, + "final": 78, "CopyOnWriteList": 4, "": 2, "itemListeners": 2, @@ -27050,15 +26794,19 @@ "File": 2, "root": 6, "ServletContext": 2, + "context": 8, "IOException": 8, "InterruptedException": 2, "ReactorException": 2, + "this": 16, "PluginManager": 1, "pluginManager": 2, + "super": 7, "getJobListeners": 1, "getComputerListeners": 1, "Slave": 3, "getSlave": 1, + "name": 10, "Node": 1, "n": 3, "getNode": 1, @@ -27077,6 +26825,7 @@ "item": 2, "getItems": 1, "item.getName": 1, + ".equalsIgnoreCase": 5, "synchronized": 1, "doQuietDown": 2, "StaplerResponse": 4, @@ -27141,9 +26890,420 @@ "CloudList": 3, "Jenkins.CloudList": 1, "h": 2, + "//": 16, "needed": 1, "XStream": 1, "deserialization": 1, + "nokogiri.internals": 1, + "nokogiri.internals.NokogiriHelpers.getNokogiriClass": 1, + "nokogiri.internals.NokogiriHelpers.isNamespace": 1, + "nokogiri.internals.NokogiriHelpers.stringOrNil": 1, + "nokogiri.HtmlDocument": 1, + "nokogiri.NokogiriService": 1, + "nokogiri.XmlDocument": 1, + "org.apache.xerces.parsers.DOMParser": 1, + "org.apache.xerces.xni.Augmentations": 1, + "org.apache.xerces.xni.QName": 1, + "org.apache.xerces.xni.XMLAttributes": 1, + "org.apache.xerces.xni.XNIException": 1, + "org.apache.xerces.xni.parser.XMLDocumentFilter": 1, + "org.apache.xerces.xni.parser.XMLParserConfiguration": 1, + "org.cyberneko.html.HTMLConfiguration": 1, + "org.cyberneko.html.filters.DefaultFilter": 1, + "org.jruby.Ruby": 2, + "org.jruby.RubyClass": 2, + "org.jruby.runtime.ThreadContext": 1, + "org.jruby.runtime.builtin.IRubyObject": 2, + "org.w3c.dom.Document": 1, + "org.w3c.dom.NamedNodeMap": 1, + "org.w3c.dom.NodeList": 1, + "HtmlDomParserContext": 3, + "XmlDomParserContext": 1, + "Ruby": 43, + "runtime": 88, + "IRubyObject": 35, + "options": 4, + "encoding": 2, + "@Override": 6, + "protected": 8, + "initErrorHandler": 1, + "options.strict": 1, + "errorHandler": 6, + "NokogiriStrictErrorHandler": 1, + "options.noError": 2, + "options.noWarning": 2, + "NokogiriNonStrictErrorHandler4NekoHtml": 1, + "initParser": 1, + "XMLParserConfiguration": 1, + "config": 2, + "HTMLConfiguration": 1, + "XMLDocumentFilter": 3, + "removeNSAttrsFilter": 2, + "RemoveNSAttrsFilter": 2, + "elementValidityCheckFilter": 3, + "ElementValidityCheckFilter": 3, + "//XMLDocumentFilter": 1, + "[": 54, + "]": 54, + "filters": 3, + "config.setErrorHandler": 1, + "this.errorHandler": 2, + "parser": 1, + "DOMParser": 1, + "setProperty": 4, + "java_encoding": 2, + "setFeature": 4, + "enableDocumentFragment": 1, + "XmlDocument": 8, + "getNewEmptyDocument": 1, + "ThreadContext": 2, + "args": 6, + "XmlDocument.rbNew": 1, + "getNokogiriClass": 1, + "context.getRuntime": 3, + "wrapDocument": 1, + "RubyClass": 92, + "klazz": 107, + "Document": 2, + "document": 5, + "HtmlDocument": 7, + "htmlDocument": 6, + "NokogiriService.HTML_DOCUMENT_ALLOCATOR.allocate": 1, + "htmlDocument.setDocumentNode": 1, + "ruby_encoding.isNil": 1, + "detected_encoding": 2, + "detected_encoding.isNil": 1, + "ruby_encoding": 3, + "charset": 2, + "tryGetCharsetFromHtml5MetaTag": 2, + "stringOrNil": 1, + "htmlDocument.setEncoding": 1, + "htmlDocument.setParsedEncoding": 1, + "document.getDocumentElement": 2, + ".getNodeName": 4, + "NodeList": 2, + "list": 1, + ".getChildNodes": 2, + "i": 54, + "list.getLength": 1, + "list.item": 2, + "headers": 1, + "j": 9, + "headers.getLength": 1, + "headers.item": 2, + "NamedNodeMap": 1, + "nodeMap": 1, + ".getAttributes": 1, + "k": 5, + "nodeMap.getLength": 1, + "nodeMap.item": 2, + ".getNodeValue": 1, + "DefaultFilter": 2, + "startElement": 2, + "QName": 2, + "element": 3, + "XMLAttributes": 2, + "attrs": 4, + "Augmentations": 2, + "augs": 4, + "XNIException": 2, + "attrs.getLength": 1, + "isNamespace": 1, + "attrs.getQName": 1, + "attrs.removeAttributeAt": 1, + "element.uri": 1, + "super.startElement": 2, + "NokogiriErrorHandler": 2, + "element_names": 3, + "g": 1, + "r": 1, + "w": 1, + "y": 1, + "z": 1, + "isValid": 2, + "testee": 1, + "testee.toCharArray": 1, + "index": 4, + ".length": 1, + "testee.equals": 1, + "name.rawname": 2, + "errorHandler.getErrors": 1, + ".add": 1, + "Exception": 1, + "persons": 1, + "ProtocolBuffer": 2, + "registerAllExtensions": 1, + "com.google.protobuf.ExtensionRegistry": 2, + "registry": 1, + "interface": 1, + "PersonOrBuilder": 2, + "com.google.protobuf.MessageOrBuilder": 1, + "hasName": 5, + "java.lang.String": 15, + "getName": 3, + "com.google.protobuf.ByteString": 13, + "getNameBytes": 5, + "Person": 10, + "com.google.protobuf.GeneratedMessage": 1, + "implements": 3, + "com.google.protobuf.GeneratedMessage.Builder": 2, + "": 1, + "builder": 4, + "this.unknownFields": 4, + "builder.getUnknownFields": 1, + "noInit": 1, + "com.google.protobuf.UnknownFieldSet.getDefaultInstance": 1, + "defaultInstance": 4, + "getDefaultInstance": 2, + "getDefaultInstanceForType": 2, + "com.google.protobuf.UnknownFieldSet": 2, + "unknownFields": 3, + "@java.lang.Override": 4, + "getUnknownFields": 3, + "com.google.protobuf.CodedInputStream": 5, + "input": 18, + "com.google.protobuf.ExtensionRegistryLite": 8, + "extensionRegistry": 16, + "com.google.protobuf.InvalidProtocolBufferException": 9, + "initFields": 2, + "mutable_bitField0_": 1, + "com.google.protobuf.UnknownFieldSet.Builder": 1, + "com.google.protobuf.UnknownFieldSet.newBuilder": 1, + "done": 4, + "tag": 3, + "input.readTag": 1, + "switch": 6, + "case": 56, + "break": 4, + "default": 6, + "parseUnknownField": 1, + "bitField0_": 15, + "|": 5, + "name_": 18, + "input.readBytes": 1, + "e.setUnfinishedMessage": 1, + "e.getMessage": 1, + ".setUnfinishedMessage": 1, + "finally": 2, + "unknownFields.build": 1, + "makeExtensionsImmutable": 1, + "com.google.protobuf.Descriptors.Descriptor": 4, + "getDescriptor": 15, + "persons.ProtocolBuffer.internal_static_persons_Person_descriptor": 3, + "com.google.protobuf.GeneratedMessage.FieldAccessorTable": 4, + "internalGetFieldAccessorTable": 2, + "persons.ProtocolBuffer.internal_static_persons_Person_fieldAccessorTable": 2, + ".ensureFieldAccessorsInitialized": 2, + "persons.ProtocolBuffer.Person.class": 2, + "persons.ProtocolBuffer.Person.Builder.class": 2, + "com.google.protobuf.Parser": 2, + "": 3, + "PARSER": 2, + "com.google.protobuf.AbstractParser": 1, + "parsePartialFrom": 1, + "getParserForType": 1, + "NAME_FIELD_NUMBER": 1, + "java.lang.Object": 7, + "&": 7, + "ref": 16, + "bs": 1, + "bs.toStringUtf8": 1, + "bs.isValidUtf8": 1, + "b": 7, + "com.google.protobuf.ByteString.copyFromUtf8": 2, + "byte": 4, + "memoizedIsInitialized": 4, + "isInitialized": 5, + "writeTo": 1, + "com.google.protobuf.CodedOutputStream": 2, + "output": 2, + "getSerializedSize": 2, + "output.writeBytes": 1, + ".writeTo": 1, + "memoizedSerializedSize": 3, + "size": 16, + ".computeBytesSize": 1, + ".getSerializedSize": 1, + "serialVersionUID": 1, + "L": 1, + "writeReplace": 1, + "java.io.ObjectStreamException": 1, + "super.writeReplace": 1, + "persons.ProtocolBuffer.Person": 22, + "parseFrom": 8, + "data": 8, + "PARSER.parseFrom": 8, + "java.io.InputStream": 4, + "parseDelimitedFrom": 2, + "PARSER.parseDelimitedFrom": 2, + "Builder": 20, + "newBuilder": 5, + "Builder.create": 1, + "newBuilderForType": 2, + "prototype": 2, + ".mergeFrom": 2, + "toBuilder": 1, + "com.google.protobuf.GeneratedMessage.BuilderParent": 2, + "parent": 4, + "": 1, + "persons.ProtocolBuffer.PersonOrBuilder": 1, + "maybeForceBuilderInitialization": 3, + "com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders": 1, + "create": 2, + "clear": 1, + "super.clear": 1, + "clone": 47, + "buildPartial": 3, + "getDescriptorForType": 1, + "persons.ProtocolBuffer.Person.getDefaultInstance": 2, + "build": 1, + "result": 5, + "result.isInitialized": 1, + "newUninitializedMessageException": 1, + "from_bitField0_": 2, + "to_bitField0_": 3, + "result.name_": 1, + "result.bitField0_": 1, + "onBuilt": 1, + "mergeFrom": 5, + "com.google.protobuf.Message": 1, + "other": 6, + "super.mergeFrom": 1, + "other.hasName": 1, + "other.name_": 1, + "onChanged": 4, + "this.mergeUnknownFields": 1, + "other.getUnknownFields": 1, + "parsedMessage": 5, + "PARSER.parsePartialFrom": 1, + "e.getUnfinishedMessage": 1, + ".toStringUtf8": 1, + "setName": 1, + "clearName": 1, + ".getName": 1, + "setNameBytes": 1, + "defaultInstance.initFields": 1, + "internal_static_persons_Person_descriptor": 3, + "internal_static_persons_Person_fieldAccessorTable": 2, + "com.google.protobuf.Descriptors.FileDescriptor": 5, + "descriptor": 3, + "descriptorData": 2, + "com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner": 2, + "assigner": 2, + "assignDescriptors": 1, + ".getMessageTypes": 1, + ".get": 1, + ".internalBuildGeneratedFileFrom": 1, + "clojure.asm": 1, + "java.lang.reflect.Constructor": 1, + "java.lang.reflect.Method": 1, + "Type": 42, + "VOID": 5, + "BOOLEAN": 6, + "CHAR": 6, + "BYTE": 6, + "SHORT": 6, + "INT": 6, + "FLOAT": 6, + "LONG": 7, + "DOUBLE": 7, + "ARRAY": 6, + "OBJECT": 7, + "VOID_TYPE": 3, + "BOOLEAN_TYPE": 3, + "CHAR_TYPE": 3, + "BYTE_TYPE": 3, + "SHORT_TYPE": 3, + "INT_TYPE": 3, + "FLOAT_TYPE": 3, + "LONG_TYPE": 3, + "DOUBLE_TYPE": 3, + "sort": 18, + "buf": 43, + "off": 25, + "len": 24, + "this.sort": 2, + "this.len": 2, + "this.buf": 2, + "this.off": 1, + "getType": 10, + "typeDescriptor": 1, + "typeDescriptor.toCharArray": 1, + "Integer.TYPE": 2, + "Boolean.TYPE": 2, + "Byte.TYPE": 2, + "Character.TYPE": 2, + "Short.TYPE": 2, + "Double.TYPE": 2, + "Float.TYPE": 2, + "getObjectType": 1, + "l": 5, + "name.length": 2, + "name.getChars": 1, + "getArgumentTypes": 2, + "methodDescriptor": 2, + "methodDescriptor.toCharArray": 2, + "car": 18, + ".len": 1, + "Method": 3, + "method": 2, + "classes": 2, + "method.getParameterTypes": 1, + "types": 3, + "classes.length": 2, + "getReturnType": 2, + "methodDescriptor.indexOf": 1, + "method.getReturnType": 1, + "getSort": 1, + "getDimensions": 3, + "getElementType": 2, + "getClassName": 1, + "StringBuffer": 14, + ".getClassName": 1, + "b.append": 1, + "b.toString": 1, + ".replace": 2, + "getInternalName": 2, + "buf.toString": 4, + "getMethodDescriptor": 2, + "returnType": 1, + "argumentTypes": 2, + "buf.append": 21, + "argumentTypes.length": 1, + ".getDescriptor": 1, + "returnType.getDescriptor": 1, + "c.getName": 1, + "getConstructorDescriptor": 1, + "Constructor": 1, + "parameters": 4, + "c.getParameterTypes": 1, + "parameters.length": 2, + ".toString": 1, + "m": 1, + "m.getParameterTypes": 1, + "m.getReturnType": 1, + "d": 10, + "d.isPrimitive": 1, + "d.isArray": 1, + "d.getComponentType": 1, + "d.getName": 1, + "name.charAt": 1, + "getSize": 1, + "getOpcode": 1, + "opcode": 17, + "Opcodes.IALOAD": 1, + "Opcodes.IASTORE": 1, + "t.sort": 1, + "Type.OBJECT": 2, + "Type.ARRAY": 2, + "t.len": 1, + "t.off": 1, + "end": 4, + "t.buf": 1, + "hashCode": 1, + "hc": 4, + "*": 2, + "toString": 1, "nokogiri": 6, "java.util.HashMap": 1, "org.jruby.RubyArray": 1, @@ -27152,7 +27312,6 @@ "org.jruby.runtime.ObjectAllocator": 1, "org.jruby.runtime.load.BasicLibraryService": 1, "NokogiriService": 1, - "implements": 3, "BasicLibraryService": 1, "nokogiriClassCacheGvarName": 1, "Map": 1, @@ -27328,7 +27487,6 @@ "ObjectAllocator": 60, "allocate": 30, "EncodingHandler": 1, - "clone": 47, "htmlDocument.clone": 1, "clone.setMetaClass": 23, "CloneNotSupportedException": 23, @@ -27399,2281 +27557,315 @@ "xmlXpathContext.clone": 1, "XsltStylesheet": 4, "xsltStylesheet": 3, - "xsltStylesheet.clone": 1, - "persons": 1, - "ProtocolBuffer": 2, - "registerAllExtensions": 1, - "com.google.protobuf.ExtensionRegistry": 2, - "registry": 1, - "interface": 1, - "PersonOrBuilder": 2, - "com.google.protobuf.MessageOrBuilder": 1, - "hasName": 5, - "java.lang.String": 15, - "getName": 3, - "com.google.protobuf.ByteString": 13, - "getNameBytes": 5, - "Person": 10, - "com.google.protobuf.GeneratedMessage": 1, - "com.google.protobuf.GeneratedMessage.Builder": 2, - "": 1, - "builder": 4, - "this.unknownFields": 4, - "builder.getUnknownFields": 1, - "noInit": 1, - "com.google.protobuf.UnknownFieldSet.getDefaultInstance": 1, - "defaultInstance": 4, - "getDefaultInstance": 2, - "getDefaultInstanceForType": 2, - "com.google.protobuf.UnknownFieldSet": 2, - "unknownFields": 3, - "@java.lang.Override": 4, - "getUnknownFields": 3, - "com.google.protobuf.CodedInputStream": 5, - "input": 18, - "com.google.protobuf.ExtensionRegistryLite": 8, - "extensionRegistry": 16, - "com.google.protobuf.InvalidProtocolBufferException": 9, - "initFields": 2, - "mutable_bitField0_": 1, - "com.google.protobuf.UnknownFieldSet.Builder": 1, - "com.google.protobuf.UnknownFieldSet.newBuilder": 1, - "done": 4, - "tag": 3, - "input.readTag": 1, - "parseUnknownField": 1, - "bitField0_": 15, - "|": 5, - "name_": 18, - "input.readBytes": 1, - "e.setUnfinishedMessage": 1, - "e.getMessage": 1, - ".setUnfinishedMessage": 1, - "finally": 2, - "unknownFields.build": 1, - "makeExtensionsImmutable": 1, - "com.google.protobuf.Descriptors.Descriptor": 4, - "persons.ProtocolBuffer.internal_static_persons_Person_descriptor": 3, - "com.google.protobuf.GeneratedMessage.FieldAccessorTable": 4, - "internalGetFieldAccessorTable": 2, - "persons.ProtocolBuffer.internal_static_persons_Person_fieldAccessorTable": 2, - ".ensureFieldAccessorsInitialized": 2, - "persons.ProtocolBuffer.Person.class": 2, - "persons.ProtocolBuffer.Person.Builder.class": 2, - "com.google.protobuf.Parser": 2, - "": 3, - "PARSER": 2, - "com.google.protobuf.AbstractParser": 1, - "parsePartialFrom": 1, - "getParserForType": 1, - "NAME_FIELD_NUMBER": 1, - "java.lang.Object": 7, - "&": 7, - "ref": 16, - "bs": 1, - "bs.toStringUtf8": 1, - "bs.isValidUtf8": 1, - "com.google.protobuf.ByteString.copyFromUtf8": 2, - "byte": 4, - "memoizedIsInitialized": 4, - "isInitialized": 5, - "writeTo": 1, - "com.google.protobuf.CodedOutputStream": 2, - "output": 2, - "getSerializedSize": 2, - "output.writeBytes": 1, - ".writeTo": 1, - "memoizedSerializedSize": 3, - ".computeBytesSize": 1, - ".getSerializedSize": 1, - "serialVersionUID": 1, - "L": 1, - "writeReplace": 1, - "java.io.ObjectStreamException": 1, - "super.writeReplace": 1, - "persons.ProtocolBuffer.Person": 22, - "parseFrom": 8, - "data": 8, - "PARSER.parseFrom": 8, - "java.io.InputStream": 4, - "parseDelimitedFrom": 2, - "PARSER.parseDelimitedFrom": 2, - "Builder": 20, - "newBuilder": 5, - "Builder.create": 1, - "newBuilderForType": 2, - "prototype": 2, - ".mergeFrom": 2, - "toBuilder": 1, - "com.google.protobuf.GeneratedMessage.BuilderParent": 2, - "parent": 4, - "": 1, - "persons.ProtocolBuffer.PersonOrBuilder": 1, - "maybeForceBuilderInitialization": 3, - "com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders": 1, - "create": 2, - "clear": 1, - "super.clear": 1, - "buildPartial": 3, - "getDescriptorForType": 1, - "persons.ProtocolBuffer.Person.getDefaultInstance": 2, - "build": 1, - "result": 5, - "result.isInitialized": 1, - "newUninitializedMessageException": 1, - "from_bitField0_": 2, - "to_bitField0_": 3, - "result.name_": 1, - "result.bitField0_": 1, - "onBuilt": 1, - "mergeFrom": 5, - "com.google.protobuf.Message": 1, - "other": 6, - "super.mergeFrom": 1, - "other.hasName": 1, - "other.name_": 1, - "onChanged": 4, - "this.mergeUnknownFields": 1, - "other.getUnknownFields": 1, - "parsedMessage": 5, - "PARSER.parsePartialFrom": 1, - "e.getUnfinishedMessage": 1, - ".toStringUtf8": 1, - "setName": 1, - "clearName": 1, - ".getName": 1, - "setNameBytes": 1, - "defaultInstance.initFields": 1, - "internal_static_persons_Person_descriptor": 3, - "internal_static_persons_Person_fieldAccessorTable": 2, - "com.google.protobuf.Descriptors.FileDescriptor": 5, - "descriptor": 3, - "descriptorData": 2, - "com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner": 2, - "assigner": 2, - "assignDescriptors": 1, - ".getMessageTypes": 1, - ".get": 1, - ".internalBuildGeneratedFileFrom": 1 + "xsltStylesheet.clone": 1 }, "JavaScript": { - "function": 1214, - "(": 8528, - ")": 8536, - "{": 2742, - ";": 4066, - "//": 410, - "jshint": 1, - "_": 9, "var": 916, - "Modal": 2, - "content": 5, - "options": 56, - "this.options": 6, - "this.": 2, - "element": 19, - ".delegate": 2, - ".proxy": 1, - "this.hide": 1, - "this": 578, - "}": 2718, - "Modal.prototype": 1, - "constructor": 8, - "toggle": 10, - "return": 947, + "KEYWORDS": 2, + "array_to_hash": 11, + "(": 8528, "[": 1461, - "this.isShown": 3, "]": 1458, - "show": 10, - "that": 33, - "e": 663, - ".Event": 1, - "element.trigger": 1, - "if": 1230, - "||": 648, - "e.isDefaultPrevented": 2, - ".addClass": 1, - "true": 147, - "escape.call": 1, - "backdrop.call": 1, - "transition": 1, - ".support.transition": 1, - "&&": 1017, - "that.": 3, - "element.hasClass": 1, - "element.parent": 1, - ".length": 24, - "element.appendTo": 1, - "document.body": 8, - "//don": 1, - "in": 170, - "shown": 2, - "hide": 8, - "body": 22, - "modal": 4, - "-": 706, - "open": 2, - "fade": 4, - "hidden": 12, - "
": 4, - "class=": 5, - "static": 2, - "keyup.dismiss.modal": 2, - "object": 59, - "string": 41, - "click.modal.data": 1, - "api": 1, - "data": 145, - "target": 44, - "href": 9, - ".extend": 1, - "target.data": 1, - "this.data": 5, - "e.preventDefault": 1, - "target.modal": 1, - "option": 12, - "window.jQuery": 7, - "Animal": 12, - "Horse": 12, - "Snake": 12, - "sam": 4, - "tom": 4, - "__hasProp": 2, - "Object.prototype.hasOwnProperty": 6, - "__extends": 6, - "child": 17, - "parent": 15, - "for": 262, - "key": 85, - "__hasProp.call": 2, - "ctor": 6, - "this.constructor": 5, - "ctor.prototype": 3, - "parent.prototype": 6, - "child.prototype": 4, - "new": 86, - "child.__super__": 3, - "name": 161, - "this.name": 7, - "Animal.prototype.move": 2, - "meters": 4, - "alert": 11, - "+": 1136, - "Snake.__super__.constructor.apply": 2, - "arguments": 83, - "Snake.prototype.move": 2, - "Snake.__super__.move.call": 2, - "Horse.__super__.constructor.apply": 2, - "Horse.prototype.move": 2, - "Horse.__super__.move.call": 2, - "sam.move": 2, - "tom.move": 2, - ".call": 10, - ".hasOwnProperty": 2, - "Animal.name": 1, - "_super": 4, - "Snake.name": 1, - "Horse.name": 1, - "console.log": 3, - "hanaMath": 1, - ".import": 1, + ")": 8536, + ";": 4066, + "RESERVED_WORDS": 2, + "KEYWORDS_BEFORE_EXPRESSION": 2, + "KEYWORDS_ATOM": 2, + "OPERATOR_CHARS": 1, + "characters": 6, + "RE_HEX_NUMBER": 1, + "/": 290, "x": 41, - "parseFloat": 32, - ".request.parameters.get": 2, - "y": 109, - "result": 12, - "hanaMath.multiply": 1, - "output": 2, - "title": 1, - "input": 26, - ".response.contentType": 1, - ".response.statusCode": 1, - ".net.http.OK": 1, - ".response.setBody": 1, - "JSON.stringify": 5, - "multiply": 1, - "*": 71, - "add": 16, - "util": 1, - "require": 9, - "net": 1, - "stream": 1, - "url": 23, - "EventEmitter": 3, - ".EventEmitter": 1, - "FreeList": 2, - ".FreeList": 1, - "HTTPParser": 2, - "process.binding": 1, - ".HTTPParser": 1, - "assert": 8, - ".ok": 1, - "END_OF_FILE": 3, - "debug": 15, - "process.env.NODE_DEBUG": 2, - "/http/.test": 1, - "console.error": 3, - "else": 307, - "parserOnHeaders": 2, - "headers": 41, - "this.maxHeaderPairs": 2, - "<": 209, - "this._headers.length": 1, - "this._headers": 13, - "this._headers.concat": 1, - "this._url": 1, - "parserOnHeadersComplete": 2, - "info": 2, - "parser": 27, - "info.headers": 1, - "info.url": 1, - "parser._headers": 6, - "parser._url": 4, - "parser.incoming": 9, - "IncomingMessage": 4, - "parser.socket": 4, - "parser.incoming.httpVersionMajor": 1, - "info.versionMajor": 2, - "parser.incoming.httpVersionMinor": 1, - "info.versionMinor": 2, - "parser.incoming.httpVersion": 1, - "parser.incoming.url": 1, - "n": 874, - "headers.length": 2, - "parser.maxHeaderPairs": 4, - "Math.min": 5, - "i": 853, - "k": 302, - "v": 135, - "parser.incoming._addHeaderLine": 2, - "info.method": 2, - "parser.incoming.method": 1, - "parser.incoming.statusCode": 2, - "info.statusCode": 1, - "parser.incoming.upgrade": 4, - "info.upgrade": 2, - "skipBody": 3, - "false": 142, - "response": 3, - "to": 92, - "HEAD": 3, - "or": 38, - "CONNECT": 1, - "parser.onIncoming": 3, - "info.shouldKeepAlive": 1, - "parserOnBody": 2, - "b": 961, - "start": 20, - "len": 11, - "slice": 10, - "b.slice": 1, - "parser.incoming._paused": 2, - "parser.incoming._pendings.length": 2, - "parser.incoming._pendings.push": 2, - "parser.incoming._emitData": 1, - "parserOnMessageComplete": 2, - "parser.incoming.complete": 2, - "parser.incoming.readable": 1, - "parser.incoming._emitEnd": 1, - "parser.socket.readable": 1, - "parser.socket.resume": 1, - "parsers": 2, - "HTTPParser.REQUEST": 2, - "parser.onHeaders": 1, - "parser.onHeadersComplete": 1, - "parser.onBody": 1, - "parser.onMessageComplete": 1, - "exports.parsers": 1, - "CRLF": 13, - "STATUS_CODES": 2, - "exports.STATUS_CODES": 1, - "RFC": 16, - "obsoleted": 1, - "by": 12, - "connectionExpression": 1, - "/Connection/i": 1, - "transferEncodingExpression": 1, - "/Transfer": 1, - "Encoding/i": 1, - "closeExpression": 1, - "/close/i": 1, - "chunkExpression": 1, - "/chunk/i": 1, - "contentLengthExpression": 1, - "/Content": 1, - "Length/i": 1, - "dateExpression": 1, - "/Date/i": 1, - "expectExpression": 1, - "/Expect/i": 1, - "continueExpression": 1, - "/100": 2, - "continue/i": 1, - "dateCache": 5, - "utcDate": 2, + "-": 706, + "a": 1489, + "f": 666, + "+": 1136, + "/i": 22, + "RE_OCT_NUMBER": 1, + "RE_DEC_NUMBER": 1, + "d*": 8, + ".": 91, + "e": 663, "d": 771, - "Date": 4, - "d.toUTCString": 1, - "setTimeout": 19, - "undefined": 328, - "d.getMilliseconds": 1, - "socket": 26, - "stream.Stream.call": 2, - "this.socket": 10, - "this.connection": 8, - "this.httpVersion": 1, + "|": 206, + "OPERATORS": 2, + "WHITESPACE_CHARS": 2, + "PUNC_BEFORE_EXPRESSION": 2, + "PUNC_CHARS": 1, + "REGEXP_MODIFIERS": 1, + "UNICODE": 1, + "{": 2742, + "letter": 3, + "new": 86, + "RegExp": 12, + "non_spacing_mark": 1, + "space_combining_mark": 1, + "connector_punctuation": 1, + "}": 2718, + "function": 1214, + "is_letter": 3, + "ch": 58, + "return": 947, + "UNICODE.letter.test": 1, + "is_digit": 3, + "ch.charCodeAt": 1, + "&&": 1017, + "<": 209, + "//XXX": 1, + "find": 7, + "out": 1, + "if": 1230, + "means": 1, + "something": 3, + "else": 307, + "than": 3, + "is_alphanumeric_char": 3, + "||": 648, + "is_unicode_combining_mark": 2, + "UNICODE.non_spacing_mark.test": 1, + "UNICODE.space_combining_mark.test": 1, + "is_unicode_connector_punctuation": 2, + "UNICODE.connector_punctuation.test": 1, + "is_identifier_start": 2, + "is_identifier_char": 1, + "//": 410, + "zero": 2, + "width": 32, + "non": 8, + "joiner": 2, + "": 1, + "": 1, + "in": 170, + "my": 1, + "ECMA": 1, + "PDF": 1, + "this": 578, + "is": 67, + "also": 5, + "c": 775, + "parse_js_number": 2, + "num": 23, + "RE_HEX_NUMBER.test": 1, + "parseInt": 12, + "num.substr": 2, + "RE_OCT_NUMBER.test": 1, + "RE_DEC_NUMBER.test": 1, + "parseFloat": 32, + "JS_Parse_Error": 2, + "message": 5, + "line": 14, + "col": 7, + "pos": 197, + "this.message": 3, + "this.line": 3, + "this.col": 2, + "this.pos": 4, + "try": 44, + "ex": 3, + "Error": 16, + "ex.name": 1, + "throw": 27, + "catch": 38, + "this.stack": 2, + "ex.stack": 1, + "JS_Parse_Error.prototype.toString": 1, + "js_error": 2, + "is_token": 1, + "token": 5, + "type": 49, + "val": 13, + "token.type": 1, "null": 427, - "this.complete": 2, - "this.headers": 2, - "this.trailers": 2, - "this.readable": 1, - "this._paused": 3, - "this._pendings": 1, - "this._endEmitted": 3, - "this.url": 1, - "this.method": 2, - "this.statusCode": 3, - "this.client": 1, - "util.inherits": 7, - "stream.Stream": 2, - "exports.IncomingMessage": 1, - "IncomingMessage.prototype.destroy": 1, - "error": 20, - "this.socket.destroy": 3, - "IncomingMessage.prototype.setEncoding": 1, - "encoding": 26, - "StringDecoder": 2, - ".StringDecoder": 1, - "lazy": 1, - "load": 5, - "this._decoder": 2, - "IncomingMessage.prototype.pause": 1, - "this.socket.pause": 1, - "IncomingMessage.prototype.resume": 1, - "this.socket.resume": 1, - "this._emitPending": 1, - "IncomingMessage.prototype._emitPending": 1, - "callback": 23, - "this._pendings.length": 1, - "self": 17, - "process.nextTick": 1, - "while": 53, - "self._paused": 1, - "self._pendings.length": 2, - "chunk": 14, - "self._pendings.shift": 1, - "Buffer.isBuffer": 2, - "self._emitData": 1, - "self.readable": 1, - "self._emitEnd": 1, - "IncomingMessage.prototype._emitData": 1, - "this._decoder.write": 1, - "string.length": 1, - "this.emit": 5, - "IncomingMessage.prototype._emitEnd": 1, - "IncomingMessage.prototype._addHeaderLine": 1, - "field": 36, + "token.value": 1, + "EX_EOF": 3, + "tokenizer": 2, + "TEXT": 1, + "S": 8, + "text": 14, + "TEXT.replace": 1, + "r": 261, + "n": 874, + "u2028": 3, + "u2029": 2, + "/g": 37, + ".replace": 38, + "uFEFF/": 1, + "tokpos": 1, + "tokline": 1, + "tokcol": 1, + "newline_before": 1, + "false": 142, + "regex_allowed": 1, + "comments_before": 1, + "peek": 5, + "S.text.charAt": 2, + "S.pos": 4, + "next": 9, + "signal_eof": 4, + "S.newline_before": 3, + "true": 147, + "S.line": 2, + "S.col": 3, + "eof": 6, + "S.peek": 1, + "what": 2, + "S.text.indexOf": 1, + "start_token": 1, + "S.tokline": 3, + "S.tokcol": 3, + "S.tokpos": 3, "value": 98, - "dest": 12, - "field.toLowerCase": 1, + "is_comment": 2, + "S.regex_allowed": 1, + "HOP": 5, + "UNARY_POSTFIX": 1, + "ret": 62, + "nlb": 1, + "ret.comments_before": 1, + "S.comments_before": 2, + "skip_whitespace": 1, + "while": 53, + "read_while": 2, + "pred": 2, + "i": 853, + "parse_error": 3, + "err": 5, + "read_num": 1, + "prefix": 6, + "has_e": 3, + "after_e": 5, + "has_x": 5, + "has_dot": 3, + "valid": 4, + "isNaN": 6, + "read_escaped_char": 1, "switch": 30, "case": 136, - ".push": 3, - "break": 111, + "String.fromCharCode": 4, + "hex_bytes": 3, "default": 21, - "field.slice": 1, - "OutgoingMessage": 5, - "this.output": 3, - "this.outputEncodings": 2, - "this.writable": 1, - "this._last": 3, - "this.chunkedEncoding": 6, - "this.shouldKeepAlive": 4, - "this.useChunkedEncodingByDefault": 4, - "this.sendDate": 3, - "this._hasBody": 6, - "this._trailer": 5, - "this.finished": 4, - "exports.OutgoingMessage": 1, - "OutgoingMessage.prototype.destroy": 1, - "OutgoingMessage.prototype._send": 1, - "this._headerSent": 5, - "typeof": 132, - "this._header": 10, - "this.output.unshift": 1, - "this.outputEncodings.unshift": 1, - "this._writeRaw": 2, - "OutgoingMessage.prototype._writeRaw": 1, - "data.length": 3, - "this.connection._httpMessage": 3, - "this.connection.writable": 3, - "this.output.length": 5, - "this._buffer": 2, - "c": 775, - "this.output.shift": 2, - "this.outputEncodings.shift": 2, - "this.connection.write": 4, - "OutgoingMessage.prototype._buffer": 1, - "length": 48, - "this.output.push": 2, - "this.outputEncodings.push": 2, - "lastEncoding": 2, - "lastData": 2, - "data.constructor": 1, - "lastData.constructor": 1, - "OutgoingMessage.prototype._storeHeader": 1, - "firstLine": 2, - "sentConnectionHeader": 3, - "sentContentLengthHeader": 4, - "sentTransferEncodingHeader": 3, - "sentDateHeader": 3, - "sentExpect": 3, - "messageHeader": 7, - "store": 3, - "connectionExpression.test": 1, - "closeExpression.test": 1, - "self._last": 4, - "self.shouldKeepAlive": 4, - "transferEncodingExpression.test": 1, - "chunkExpression.test": 1, - "self.chunkedEncoding": 1, - "contentLengthExpression.test": 1, - "dateExpression.test": 1, - "expectExpression.test": 1, - "keys": 11, - "Object.keys": 5, - "isArray": 10, - "Array.isArray": 7, - "l": 312, - "keys.length": 5, - "j": 265, - "value.length": 1, - "shouldSendKeepAlive": 2, - "this.agent": 2, - "this._send": 8, - "OutgoingMessage.prototype.setHeader": 1, - "arguments.length": 18, - "throw": 27, - "Error": 16, - "name.toLowerCase": 6, - "this._headerNames": 5, - "OutgoingMessage.prototype.getHeader": 1, - "OutgoingMessage.prototype.removeHeader": 1, - "delete": 39, - "OutgoingMessage.prototype._renderHeaders": 1, - "OutgoingMessage.prototype.write": 1, - "this._implicitHeader": 2, - "TypeError": 2, - "chunk.length": 2, - "ret": 62, - "Buffer.byteLength": 2, - "len.toString": 2, - "OutgoingMessage.prototype.addTrailers": 1, - "OutgoingMessage.prototype.end": 1, - "hot": 3, - ".toString": 3, - "this.write": 1, - "Last": 2, - "chunk.": 1, - "this._finish": 2, - "OutgoingMessage.prototype._finish": 1, - "instanceof": 19, - "ServerResponse": 5, - "DTRACE_HTTP_SERVER_RESPONSE": 1, - "ClientRequest": 6, - "DTRACE_HTTP_CLIENT_REQUEST": 1, - "OutgoingMessage.prototype._flush": 1, - "this.socket.writable": 2, - "XXX": 1, - "Necessary": 1, - "this.socket.write": 1, - "req": 32, - "OutgoingMessage.call": 2, - "req.method": 5, - "req.httpVersionMajor": 2, - "req.httpVersionMinor": 2, - "exports.ServerResponse": 1, - "ServerResponse.prototype.statusCode": 1, - "onServerResponseClose": 3, - "this._httpMessage.emit": 2, - "ServerResponse.prototype.assignSocket": 1, - "socket._httpMessage": 9, - "socket.on": 2, - "this._flush": 1, - "ServerResponse.prototype.detachSocket": 1, - "socket.removeListener": 5, - "ServerResponse.prototype.writeContinue": 1, - "this._sent100": 2, - "ServerResponse.prototype._implicitHeader": 1, - "this.writeHead": 1, - "ServerResponse.prototype.writeHead": 1, - "statusCode": 7, - "reasonPhrase": 4, - "headerIndex": 4, - "obj": 40, - "this._renderHeaders": 3, - "obj.length": 1, - "obj.push": 1, - "statusLine": 2, - "statusCode.toString": 1, - "this._expect_continue": 1, - "this._storeHeader": 2, - "ServerResponse.prototype.writeHeader": 1, - "this.writeHead.apply": 1, - "Agent": 5, - "self.options": 2, - "self.requests": 6, - "self.sockets": 3, - "self.maxSockets": 1, - "self.options.maxSockets": 1, - "Agent.defaultMaxSockets": 2, - "self.on": 1, - "host": 29, - "port": 29, - "localAddress": 15, - ".shift": 1, - ".onSocket": 1, - "socket.destroy": 10, - "self.createConnection": 2, - "net.createConnection": 3, - "exports.Agent": 1, - "Agent.prototype.defaultPort": 1, - "Agent.prototype.addRequest": 1, - "this.sockets": 9, - "this.maxSockets": 1, - "req.onSocket": 1, - "this.createSocket": 2, - "this.requests": 5, - "Agent.prototype.createSocket": 1, - "util._extend": 1, - "options.port": 4, - "options.host": 4, - "options.localAddress": 3, - "s": 290, - "onFree": 3, - "self.emit": 9, - "s.on": 4, - "onClose": 3, - "err": 5, - "self.removeSocket": 2, - "onRemove": 3, - "s.removeListener": 3, - "Agent.prototype.removeSocket": 1, - "index": 5, - ".indexOf": 2, - ".splice": 5, - ".emit": 1, - "globalAgent": 3, - "exports.globalAgent": 1, - "cb": 16, - "self.agent": 3, - "options.agent": 3, - "defaultPort": 3, - "options.defaultPort": 1, - "options.hostname": 1, - "options.setHost": 1, - "setHost": 2, - "self.socketPath": 4, - "options.socketPath": 1, - "method": 30, - "self.method": 3, - "options.method": 2, - ".toUpperCase": 3, - "self.path": 3, - "options.path": 2, - "self.once": 2, - "options.headers": 7, - "self.setHeader": 1, - "this.getHeader": 2, - "hostHeader": 3, - "this.setHeader": 2, - "options.auth": 2, - "//basic": 1, - "auth": 1, - "Buffer": 1, - "self.useChunkedEncodingByDefault": 2, - "self._storeHeader": 2, - "self.getHeader": 1, - "self._renderHeaders": 1, - "options.createConnection": 4, - "self.onSocket": 3, - "self.agent.addRequest": 1, - "conn": 3, - "self._deferToConnect": 1, - "self._flush": 1, - "exports.ClientRequest": 1, - "ClientRequest.prototype._implicitHeader": 1, - "this.path": 1, - "ClientRequest.prototype.abort": 1, - "this._deferToConnect": 3, - "createHangUpError": 3, - "error.code": 1, - "freeParser": 9, - "parser.socket.onend": 1, - "parser.socket.ondata": 1, - "parser.socket.parser": 1, - "parsers.free": 1, - "req.parser": 1, - "socketCloseListener": 2, - "socket.parser": 3, - "req.emit": 8, - "req.res": 8, - "req.res.readable": 1, - "req.res.emit": 1, - "res": 14, - "req.res._emitPending": 1, - "res._emitEnd": 1, - "res.emit": 1, - "req._hadError": 3, - "parser.finish": 6, - "socketErrorListener": 2, - "err.message": 1, - "err.stack": 1, - "socketOnEnd": 1, - "this._httpMessage": 3, - "this.parser": 2, - "socketOnData": 1, - "end": 14, - "parser.execute": 2, - "bytesParsed": 4, - "socket.ondata": 3, - "socket.onend": 3, - "bodyHead": 4, - "d.slice": 2, - "eventName": 21, - "req.listeners": 1, - "req.upgradeOrConnect": 1, - "socket.emit": 1, - "parserOnIncomingClient": 1, - "shouldKeepAlive": 4, - "res.upgrade": 1, - "skip": 5, - "isHeadResponse": 2, - "res.statusCode": 1, - "Clear": 1, - "so": 8, - "we": 25, - "don": 5, - "continue": 18, - "ve": 3, - "been": 5, - "upgraded": 1, - "via": 2, - "WebSockets": 1, - "also": 5, - "shouldn": 2, - "AGENT": 2, - "socket.destroySoon": 2, - "keep": 1, - "alive": 1, - "close": 2, - "free": 1, - "number": 13, - "an": 12, - "important": 1, - "promisy": 1, - "thing": 2, - "all": 16, - "the": 107, - "onSocket": 3, - "self.socket.writable": 1, - "self.socket": 5, - ".apply": 7, - "arguments_": 2, - "self.socket.once": 1, - "ClientRequest.prototype.setTimeout": 1, - "msecs": 4, - "this.once": 2, - "emitTimeout": 4, - "this.socket.setTimeout": 1, - "this.socket.once": 1, - "this.setTimeout": 3, - "sock": 1, - "ClientRequest.prototype.setNoDelay": 1, - "ClientRequest.prototype.setSocketKeepAlive": 1, - "ClientRequest.prototype.clearTimeout": 1, - "exports.request": 2, - "url.parse": 1, - "options.protocol": 3, - "exports.get": 1, - "req.end": 1, - "ondrain": 3, - "httpSocketSetup": 2, - "Server": 6, - "requestListener": 6, - "net.Server.call": 1, - "allowHalfOpen": 1, - "this.addListener": 2, - "this.httpAllowHalfOpen": 1, - "connectionListener": 3, - "net.Server": 1, - "exports.Server": 1, - "exports.createServer": 1, - "outgoing": 2, - "incoming": 2, - "abortIncoming": 3, - "incoming.length": 2, - "incoming.shift": 2, - "serverSocketCloseListener": 3, - "socket.setTimeout": 1, - "minute": 1, - "timeout": 2, - "socket.once": 1, - "parsers.alloc": 1, - "parser.reinitialize": 1, - "this.maxHeadersCount": 2, + "for": 262, + "digit": 3, "<<": 4, - "socket.addListener": 2, - "self.listeners": 2, - "req.socket": 1, - "self.httpAllowHalfOpen": 1, - "socket.writable": 2, - "socket.end": 2, - "outgoing.length": 2, - "._last": 1, - "socket._httpMessage._last": 1, - "incoming.push": 1, - "res.shouldKeepAlive": 1, - "DTRACE_HTTP_SERVER_REQUEST": 1, - "outgoing.push": 1, - "res.assignSocket": 1, - "res.on": 1, - "res.detachSocket": 1, - "res._last": 1, - "m": 76, - "outgoing.shift": 1, - "m.assignSocket": 1, - "req.headers": 2, - "continueExpression.test": 1, - "res._expect_continue": 1, - "res.writeContinue": 1, - "Not": 4, - "a": 1489, - "response.": 1, - "even": 3, - "exports._connectionListener": 1, - "Client": 6, - "this.host": 1, - "this.port": 1, - "maxSockets": 1, - "Client.prototype.request": 1, - "path": 5, - "self.host": 1, - "self.port": 1, - "c.on": 2, - "exports.Client": 1, - "module.deprecate": 2, - "exports.createClient": 1, - "cubes": 4, - "list": 21, - "math": 4, - "num": 23, - "opposite": 6, - "race": 4, - "square": 10, - "__slice": 2, - "Array.prototype.slice": 6, - "root": 5, - "Math.sqrt": 2, - "cube": 2, - "runners": 6, - "winner": 6, - "__slice.call": 2, - "print": 2, - "elvis": 4, - "_i": 10, - "_len": 6, - "_results": 6, - "list.length": 5, - "_results.push": 2, - "math.cube": 2, - ".slice": 6, - "window": 18, - "angular": 1, - "Array.prototype.last": 1, - "this.length": 41, - "app": 3, - "angular.module": 1, - "A": 24, - "w": 110, - "ma": 3, - "c.isReady": 4, - "try": 44, - "s.documentElement.doScroll": 2, - "catch": 38, - "c.ready": 7, - "Qa": 1, - "b.src": 4, - "c.ajax": 1, - "async": 5, - "dataType": 6, - "c.globalEval": 1, - "b.text": 3, - "b.textContent": 2, - "b.innerHTML": 3, - "b.parentNode": 4, - "b.parentNode.removeChild": 2, - "X": 6, - "f": 666, - "a.length": 23, - "o": 322, - "c.isFunction": 9, - "d.call": 3, - "J": 5, - ".getTime": 3, - "Y": 3, - "Z": 6, - "na": 1, - ".type": 2, - "c.event.handle.apply": 1, - "oa": 1, - "r": 261, - "c.data": 12, - "a.liveFired": 4, - "i.live": 1, - "a.button": 2, - "a.type": 14, + "read_string": 1, + "with_eof_error": 1, + "quote": 3, + "string": 41, + "comment1": 1, + "Unterminated": 2, + "multiline": 1, + "comment": 3, + "*/": 2, + "comment2": 1, + "WARNING": 1, + "at": 58, + "***": 1, + "Found": 1, + "warn": 3, + "tok": 1, + "read_name": 1, + "backslash": 2, + "name": 161, "u": 304, - "i.live.slice": 1, - "u.length": 3, - "i.origType.replace": 1, - "O": 6, - "f.push": 5, - "i.selector": 3, - "u.splice": 1, - "a.target": 5, - ".closest": 4, - "a.currentTarget": 4, - "j.length": 2, - ".selector": 1, - ".elem": 1, - "i.preType": 2, - "a.relatedTarget": 2, - "d.push": 1, - "elem": 101, - "handleObj": 2, - "d.length": 8, - "j.elem": 2, - "a.data": 2, - "j.handleObj.data": 1, - "a.handleObj": 2, - "j.handleObj": 1, - "j.handleObj.origHandler.apply": 1, - "pa": 1, - "b.replace": 3, - "/": 290, - "./g": 2, - ".replace": 38, - "/g": 37, - "qa": 1, - "a.parentNode": 6, - "a.parentNode.nodeType": 2, - "ra": 1, - "b.each": 1, - "this.nodeName": 4, - ".nodeName": 2, - "f.events": 1, - "e.handle": 2, - "e.events": 2, - "c.event.add": 1, - ".data": 3, - "sa": 2, - ".ownerDocument": 5, - "ta.test": 1, - "c.support.checkClone": 2, - "ua.test": 1, - "c.fragments": 2, - "b.createDocumentFragment": 1, - "c.clean": 1, - "fragment": 27, - "cacheable": 2, - "K": 4, - "c.each": 2, - "va.concat.apply": 1, - "va.slice": 1, - "wa": 1, - "a.document": 3, + "Expecting": 1, + "UnicodeEscapeSequence": 1, + "uXXXX": 1, + "Unicode": 1, + "char": 2, + "not": 26, + "identifier": 1, + "regular": 1, + "expression": 4, + "regexp": 5, + "operator": 14, + "*": 71, + "punc": 27, + "atom": 5, + "keyword": 11, + "Unexpected": 3, + "character": 3, + "typeof": 132, + "void": 1, + "delete": 39, + "%": 26, + "&": 13, + "<\",>": 1, + "<=\",>": 1, + "instanceof": 19, + "do": 15, + "expected": 12, + "block": 4, + "break": 111, + "continue": 18, + "debugger": 2, + "outside": 2, + "of": 28, + "const": 2, + "with": 18, + "label": 2, + "stat": 1, + "Label": 1, + "without": 1, + "matching": 3, + "loop": 7, + "or": 38, + "statement": 1, + "inside": 3, + "defun": 1, + "Name": 1, + "finally": 3, + "Missing": 1, + "catch/finally": 1, + "blocks": 1, + "unary": 2, + "undefined": 328, + "array": 7, + "get": 24, + "set": 22, + "object": 59, + "dot": 2, + "sub": 4, + "call": 9, + "postfix": 1, + "Invalid": 2, + "use": 10, + "binary": 1, + "conditional": 1, + "assign": 1, + "assignment": 1, + "seq": 1, + "toplevel": 7, + "member": 2, + "array.length": 1, + "obj": 40, + "prop": 24, + "Object.prototype.hasOwnProperty.call": 1, + "exports.tokenizer": 1, + "exports.parse": 1, + "parse": 1, + "exports.slice": 1, + "slice": 10, + "exports.curry": 1, + "curry": 1, + "exports.member": 1, + "exports.array_to_hash": 1, + "exports.PRECEDENCE": 1, + "PRECEDENCE": 1, + "exports.KEYWORDS_ATOM": 1, + "exports.RESERVED_WORDS": 1, + "exports.KEYWORDS": 1, + "exports.ATOMIC_START_TOKEN": 1, + "ATOMIC_START_TOKEN": 1, + "exports.OPERATORS": 1, + "exports.is_alphanumeric_char": 1, + "exports.set_logger": 1, + "logger": 2, + "b": 961, + "cy": 4, + "f.isWindow": 2, "a.nodeType": 27, "a.defaultView": 2, "a.parentWindow": 2, - "c.fn.init": 1, - "Ra": 2, - "A.jQuery": 3, - "Sa": 2, - "A.": 3, - "A.document": 1, - "T": 4, - "Ta": 1, - "<[\\w\\W]+>": 4, - "|": 206, - "#": 13, - "Ua": 1, - ".": 91, - "Va": 1, - "S/": 4, - "Wa": 2, - "u00A0": 2, - "Xa": 1, - "<(\\w+)\\s*\\/?>": 4, - "<\\/\\1>": 4, - "P": 4, - "navigator.userAgent": 3, - "xa": 3, - "Q": 6, - "L": 10, - "Object.prototype.toString": 7, - "aa": 1, - "ba": 3, - "Array.prototype.push": 4, - "R": 2, - "ya": 2, - "Array.prototype.indexOf": 4, - "c.fn": 2, - "c.prototype": 1, - "init": 7, - "this.context": 17, - "s.body": 2, - "this.selector": 16, - "Ta.exec": 1, - "b.ownerDocument": 6, - "Xa.exec": 1, - "c.isPlainObject": 3, - "s.createElement": 10, - "c.fn.attr.call": 1, - "f.createElement": 1, - "a.cacheable": 1, - "a.fragment.cloneNode": 1, - "a.fragment": 1, - ".childNodes": 2, - "c.merge": 4, - "s.getElementById": 1, - "b.id": 1, - "T.find": 1, - "/.test": 19, - "s.getElementsByTagName": 2, - "b.jquery": 1, - ".find": 5, - "T.ready": 1, - "a.selector": 4, - "a.context": 2, - "c.makeArray": 3, - "selector": 40, - "jquery": 3, - "size": 6, - "toArray": 2, - "R.call": 2, - "get": 24, - "this.toArray": 3, - "this.slice": 5, - "pushStack": 4, - "c.isArray": 5, - "ba.apply": 1, - "f.prevObject": 1, - "f.context": 1, - "f.selector": 2, - "each": 17, - "ready": 31, - "c.bindReady": 1, - "a.call": 17, - "Q.push": 1, - "eq": 2, - "first": 10, - "this.eq": 4, - "last": 6, - "this.pushStack": 12, - "R.apply": 1, - ".join": 14, - "map": 7, - "c.map": 1, - "this.prevObject": 3, - "push": 11, - "sort": 4, - ".sort": 9, - "splice": 5, - "c.fn.init.prototype": 1, - "c.extend": 7, - "c.fn.extend": 4, - "noConflict": 4, - "isReady": 5, - "c.fn.triggerHandler": 1, - ".triggerHandler": 1, - "bindReady": 5, - "s.readyState": 2, - "s.addEventListener": 3, - "A.addEventListener": 1, - "s.attachEvent": 3, - "A.attachEvent": 1, - "A.frameElement": 1, - "isFunction": 12, - "isPlainObject": 4, - "a.setInterval": 2, - "a.constructor": 2, - "aa.call": 3, - "a.constructor.prototype": 2, - "isEmptyObject": 7, - "parseJSON": 4, - "c.trim": 3, - "a.replace": 7, - "@": 1, - "d*": 8, - "eE": 4, - "s*": 15, - "A.JSON": 1, - "A.JSON.parse": 2, - "Function": 3, - "c.error": 2, - "noop": 3, - "globalEval": 2, - "Va.test": 1, - "s.documentElement": 2, - "d.type": 2, - "c.support.scriptEval": 2, - "d.appendChild": 3, - "s.createTextNode": 2, - "d.text": 1, - "b.insertBefore": 3, - "b.firstChild": 5, - "b.removeChild": 3, - "nodeName": 20, - "a.nodeName": 12, - "a.nodeName.toUpperCase": 2, - "b.toUpperCase": 3, - "b.apply": 2, - "b.call": 4, - "trim": 5, - "makeArray": 3, - "ba.call": 1, - "inArray": 5, - "b.indexOf": 2, - "b.length": 12, - "merge": 2, - "grep": 6, - "f.length": 5, - "f.concat.apply": 1, - "guid": 5, - "proxy": 4, - "a.apply": 2, - "b.guid": 2, - "a.guid": 7, - "c.guid": 1, - "uaMatch": 3, - "a.toLowerCase": 4, - "webkit": 6, - "w.": 17, - "/.exec": 4, - "opera": 4, - ".*version": 4, - "msie": 4, - "/compatible/.test": 1, - "mozilla": 4, - ".*": 20, - "rv": 4, - "browser": 11, - "version": 10, - "c.uaMatch": 1, - "P.browser": 2, - "c.browser": 1, - "c.browser.version": 1, - "P.version": 1, - "c.browser.webkit": 1, - "c.browser.safari": 1, - "c.inArray": 2, - "ya.call": 1, - "s.removeEventListener": 1, - "s.detachEvent": 1, - "c.support": 2, - "d.style.display": 5, - "d.innerHTML": 2, - "d.getElementsByTagName": 6, - "e.length": 9, - "leadingWhitespace": 3, - "d.firstChild.nodeType": 1, - "tbody": 7, - "htmlSerialize": 3, - "style": 30, - "/red/.test": 1, - "j.getAttribute": 2, - "hrefNormalized": 3, - "opacity": 13, - "j.style.opacity": 1, - "cssFloat": 4, - "j.style.cssFloat": 1, - "checkOn": 4, - ".value": 1, - "optSelected": 3, - ".appendChild": 1, - ".selected": 1, - "parentNode": 10, - "d.removeChild": 1, - ".parentNode": 7, - "deleteExpando": 3, - "checkClone": 1, - "scriptEval": 1, - "noCloneEvent": 3, - "boxModel": 1, - "b.type": 4, - "b.appendChild": 1, - "a.insertBefore": 2, - "a.firstChild": 6, - "b.test": 1, - "c.support.deleteExpando": 2, - "a.removeChild": 2, - "d.attachEvent": 2, - "d.fireEvent": 1, - "c.support.noCloneEvent": 1, - "d.detachEvent": 1, - "d.cloneNode": 1, - ".fireEvent": 3, - "s.createDocumentFragment": 1, - "a.appendChild": 3, - "d.firstChild": 2, - "a.cloneNode": 3, - ".cloneNode": 4, - ".lastChild.checked": 2, - "k.style.width": 1, - "k.style.paddingLeft": 1, - "s.body.appendChild": 1, - "c.boxModel": 1, - "c.support.boxModel": 1, - "k.offsetWidth": 1, - "s.body.removeChild": 1, - ".style.display": 5, - "n.setAttribute": 1, - "c.support.submitBubbles": 1, - "c.support.changeBubbles": 1, - "c.props": 2, - "readonly": 3, - "maxlength": 2, - "cellspacing": 2, - "rowspan": 2, - "colspan": 2, - "tabindex": 4, - "usemap": 2, - "frameborder": 2, - "G": 11, - "Ya": 2, - "za": 3, - "cache": 45, - "expando": 14, - "noData": 3, - "embed": 3, - "applet": 2, - "c.noData": 2, - "a.nodeName.toLowerCase": 3, - "c.cache": 2, - "removeData": 8, - "c.isEmptyObject": 1, - "c.removeData": 2, - "c.expando": 2, - "a.removeAttribute": 3, - "this.each": 42, - "a.split": 4, - "this.triggerHandler": 6, - "this.trigger": 2, - ".each": 3, - "queue": 7, - "dequeue": 6, - "c.queue": 3, - "d.shift": 2, - "d.unshift": 2, - "f.call": 1, - "c.dequeue": 4, - "delay": 4, - "c.fx": 1, - "c.fx.speeds": 1, - "this.queue": 4, - "clearQueue": 2, - "Aa": 3, - "t": 436, - "ca": 6, - "Za": 2, - "r/g": 2, - "/href": 1, - "src": 7, - "style/": 1, - "ab": 1, - "button": 24, - "/i": 22, - "bb": 2, - "select": 20, - "textarea": 8, - "area": 2, - "Ba": 3, - "/radio": 1, - "checkbox/": 1, - "attr": 13, - "c.attr": 4, - "removeAttr": 5, - "this.nodeType": 4, - "this.removeAttribute": 1, - "addClass": 2, - "r.addClass": 1, - "r.attr": 1, - ".split": 19, - "e.nodeType": 7, - "e.className": 14, - "j.indexOf": 1, - "removeClass": 2, - "n.removeClass": 1, - "n.attr": 1, - "j.replace": 2, - "toggleClass": 2, - "j.toggleClass": 1, - "j.attr": 1, - "i.hasClass": 1, - "this.className": 10, - "hasClass": 2, - "": 1, - "className": 4, - "replace": 8, - "indexOf": 5, - "val": 13, - "c.nodeName": 4, - "b.attributes.value": 1, - ".specified": 1, - "b.value": 4, - "b.selectedIndex": 2, - "b.options": 1, - "": 1, - "i=": 31, - "selected": 5, - "a=": 23, - "test": 21, - "type": 49, - "support": 13, - "getAttribute": 3, - "on": 37, - "o=": 13, - "n=": 10, - "r=": 18, - "nodeType=": 6, - "call": 9, - "checked=": 1, - "this.selected": 1, - ".val": 5, - "this.selectedIndex": 1, - "this.value": 4, - "attrFn": 2, - "css": 7, - "html": 10, - "text": 14, - "width": 32, - "height": 25, - "offset": 21, - "c.attrFn": 1, - "c.isXMLDoc": 1, - "a.test": 2, - "ab.test": 1, - "a.getAttributeNode": 7, - ".nodeValue": 1, - "b.specified": 2, - "bb.test": 2, - "cb.test": 1, - "a.href": 2, - "c.support.style": 1, - "a.style.cssText": 3, - "a.setAttribute": 7, - "c.support.hrefNormalized": 1, - "a.getAttribute": 11, - "c.style": 1, - "db": 1, - "handle": 15, - "click": 11, - "events": 18, - "altKey": 4, - "attrChange": 4, - "attrName": 4, - "bubbles": 4, - "cancelable": 4, - "charCode": 7, - "clientX": 6, - "clientY": 5, - "ctrlKey": 6, - "currentTarget": 4, - "detail": 3, - "eventPhase": 4, - "fromElement": 6, - "handler": 14, - "keyCode": 6, - "layerX": 3, - "layerY": 3, - "metaKey": 5, - "newValue": 3, - "offsetX": 4, - "offsetY": 4, - "originalTarget": 1, - "pageX": 4, - "pageY": 4, - "prevValue": 3, - "relatedNode": 4, - "relatedTarget": 6, - "screenX": 4, - "screenY": 4, - "shiftKey": 4, - "srcElement": 5, - "toElement": 5, - "view": 4, - "wheelDelta": 3, - "which": 8, - "mouseover": 12, - "mouseout": 12, - "form": 12, - "click.specialSubmit": 2, - "submit": 14, - "image": 5, - "keypress.specialSubmit": 2, - "password": 5, - ".specialSubmit": 2, - "radio": 17, - "checkbox": 14, - "multiple": 7, - "_change_data": 6, - "focusout": 11, - "change": 16, - "file": 5, - ".specialChange": 4, - "focusin": 9, - "bind": 3, - "one": 15, - "unload": 5, - "live": 8, - "lastToggle": 4, - "die": 3, - "hover": 3, - "mouseenter": 9, - "mouseleave": 9, - "focus": 7, - "blur": 8, - "resize": 3, - "scroll": 6, - "dblclick": 3, - "mousedown": 3, - "mouseup": 3, - "mousemove": 3, - "keydown": 4, - "keypress": 4, - "keyup": 3, - "onunload": 1, - "g": 441, - "h": 499, - "q": 34, - "h.nodeType": 4, - "p": 110, - "S": 8, - "H": 8, - "M": 9, - "I": 7, - "f.exec": 2, - "p.push": 2, - "p.length": 10, - "r.exec": 1, - "n.relative": 5, - "ga": 2, - "p.shift": 4, - "n.match.ID.test": 2, - "k.find": 6, - "v.expr": 4, - "k.filter": 5, - "v.set": 5, - "expr": 2, - "p.pop": 4, - "set": 22, - "z": 21, - "h.parentNode": 3, - "D": 9, - "k.error": 2, - "j.call": 2, - ".nodeType": 9, - "E": 11, - "l.push": 2, - "l.push.apply": 1, - "k.uniqueSort": 5, - "B": 5, - "g.sort": 1, - "g.length": 2, - "g.splice": 2, - "k.matches": 1, - "n.order.length": 1, - "n.order": 1, - "n.leftMatch": 1, - ".exec": 2, - "q.splice": 1, - "y.substr": 1, - "y.length": 1, - "Syntax": 3, - "unrecognized": 3, - "expression": 4, - "ID": 8, - "NAME": 2, - "TAG": 2, - "u00c0": 2, - "uFFFF": 2, - "leftMatch": 2, - "attrMap": 2, - "attrHandle": 2, - "g.getAttribute": 1, - "relative": 4, - "W/.test": 1, - "h.toLowerCase": 2, - "": 1, - "previousSibling": 5, - "nth": 5, - "odd": 2, - "not": 26, - "reset": 2, - "contains": 8, - "only": 10, - "id": 38, - "class": 5, - "Array": 3, - "sourceIndex": 1, - "div": 28, - "script": 7, - "": 4, - "name=": 2, - "href=": 2, - "": 2, - "

": 2, - "

": 2, - ".TEST": 2, - "
": 3, - "CLASS": 1, - "HTML": 9, - "find": 7, - "filter": 10, - "nextSibling": 3, - "iframe": 3, - "": 1, - "": 1, - "
": 1, - "
": 1, - "": 4, - "
": 5, - "": 3, - "": 3, - "": 2, - "": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "before": 8, - "after": 7, - "position": 7, - "absolute": 2, - "top": 12, - "left": 14, - "margin": 8, - "border": 7, - "px": 31, - "solid": 2, - "#000": 2, - "padding": 4, - "": 1, - "": 1, - "fixed": 1, - "marginTop": 3, - "marginLeft": 2, - "using": 5, - "borderTopWidth": 1, - "borderLeftWidth": 1, - "Left": 1, - "Top": 1, - "pageXOffset": 2, - "pageYOffset": 1, - "Height": 1, - "Width": 1, - "inner": 2, - "outer": 2, - "scrollTo": 1, - "CSS1Compat": 1, - "client": 3, - "document": 26, - "window.document": 2, - "navigator": 3, - "window.navigator": 2, - "location": 2, - "window.location": 5, - "jQuery": 48, - "context": 48, - "The": 9, - "is": 67, - "actually": 2, - "just": 2, - "jQuery.fn.init": 2, - "rootjQuery": 8, - "Map": 4, - "over": 7, - "of": 28, - "overwrite": 4, - "_jQuery": 4, - "window.": 6, - "central": 2, - "reference": 5, - "simple": 3, - "way": 2, - "check": 8, - "strings": 8, - "both": 2, - "optimize": 3, - "quickExpr": 2, - "Check": 10, - "has": 9, - "non": 8, - "whitespace": 7, - "character": 3, - "it": 112, - "rnotwhite": 2, - "Used": 3, - "trimming": 2, - "trimLeft": 4, - "trimRight": 4, - "digits": 3, - "rdigit": 1, - "d/": 3, - "Match": 3, - "standalone": 2, - "tag": 2, - "rsingleTag": 2, - "JSON": 5, - "RegExp": 12, - "rvalidchars": 2, - "rvalidescape": 2, - "rvalidbraces": 2, - "Useragent": 2, - "rwebkit": 2, - "ropera": 2, - "rmsie": 2, - "rmozilla": 2, - "Keep": 2, - "UserAgent": 2, - "use": 10, - "with": 18, - "jQuery.browser": 4, - "userAgent": 3, - "For": 5, - "matching": 3, - "engine": 2, - "and": 42, - "browserMatch": 3, - "deferred": 25, - "used": 13, - "DOM": 21, - "readyList": 6, - "event": 31, - "DOMContentLoaded": 14, - "Save": 2, - "some": 2, - "core": 2, - "methods": 8, - "toString": 4, - "hasOwn": 2, - "String.prototype.trim": 3, - "Class": 2, - "pairs": 2, - "class2type": 3, - "jQuery.fn": 4, - "jQuery.prototype": 2, - "match": 30, - "doc": 4, - "Handle": 14, - "DOMElement": 2, - "selector.nodeType": 2, - "exists": 9, - "once": 4, - "finding": 2, - "Are": 2, - "dealing": 2, - "selector.charAt": 4, - "selector.length": 4, - "Assume": 2, - "are": 18, - "regex": 3, - "quickExpr.exec": 2, - "Verify": 3, - "no": 19, - "was": 6, - "specified": 4, - "#id": 3, - "HANDLE": 2, - "array": 7, - "context.ownerDocument": 2, - "If": 21, - "single": 2, - "passed": 5, - "clean": 3, - "like": 5, - "method.": 3, - "jQuery.fn.init.prototype": 2, - "jQuery.extend": 11, - "jQuery.fn.extend": 4, - "copy": 16, - "copyIsArray": 2, - "clone": 5, - "deep": 12, - "situation": 2, - "boolean": 8, - "when": 20, - "something": 3, - "possible": 3, - "jQuery.isFunction": 6, - "extend": 13, - "itself": 4, - "argument": 2, - "Only": 5, - "deal": 2, - "null/undefined": 2, - "values": 10, - "Extend": 2, - "base": 2, - "Prevent": 2, - "never": 2, - "ending": 2, - "loop": 7, - "Recurse": 2, - "bring": 2, - "Return": 2, - "modified": 3, - "Is": 2, - "be": 12, - "Set": 4, - "occurs.": 2, - "counter": 2, - "track": 2, - "how": 2, - "many": 3, - "items": 2, - "wait": 12, - "fires.": 2, - "See": 9, - "#6781": 2, - "readyWait": 6, - "Hold": 2, - "release": 2, - "holdReady": 3, - "hold": 6, - "jQuery.readyWait": 6, - "jQuery.ready": 16, - "Either": 2, - "released": 2, - "DOMready/load": 2, - "yet": 2, - "jQuery.isReady": 6, - "Make": 17, - "sure": 18, - "at": 58, - "least": 4, - "IE": 28, - "gets": 6, - "little": 4, - "overzealous": 4, - "ticket": 4, - "#5443": 4, - "Remember": 2, - "normal": 2, - "Ready": 2, - "fired": 12, - "decrement": 2, - "need": 10, - "there": 6, - "functions": 6, - "bound": 8, - "execute": 4, - "readyList.resolveWith": 1, - "Trigger": 2, - "any": 12, - "jQuery.fn.trigger": 2, - ".trigger": 3, - ".unbind": 4, - "jQuery._Deferred": 3, - "Catch": 2, - "cases": 4, - "where": 2, - ".ready": 2, - "called": 2, - "already": 6, - "occurred.": 2, - "document.readyState": 4, - "asynchronously": 2, - "allow": 6, - "scripts": 2, - "opportunity": 2, - "Mozilla": 2, - "Opera": 2, - "nightlies": 3, - "currently": 4, - "document.addEventListener": 6, - "Use": 7, - "handy": 2, - "fallback": 4, - "window.onload": 4, - "will": 7, - "always": 6, - "work": 6, - "window.addEventListener": 2, - "model": 14, - "document.attachEvent": 6, - "ensure": 2, - "firing": 16, - "onload": 2, - "maybe": 2, - "late": 2, - "but": 4, - "safe": 3, - "iframes": 2, - "window.attachEvent": 2, - "frame": 23, - "continually": 2, - "see": 6, - "toplevel": 7, - "window.frameElement": 2, - "document.documentElement.doScroll": 4, - "doScrollCheck": 6, - "test/unit/core.js": 2, - "details": 3, - "concerning": 2, - "isFunction.": 2, - "Since": 3, - "aren": 5, - "pass": 7, - "through": 3, - "as": 11, - "well": 2, - "jQuery.type": 4, - "obj.nodeType": 2, - "jQuery.isWindow": 2, - "own": 4, - "property": 15, - "must": 4, - "Object": 4, - "obj.constructor": 2, - "hasOwn.call": 6, - "obj.constructor.prototype": 2, - "Own": 2, - "properties": 7, - "enumerated": 2, - "firstly": 2, - "speed": 4, - "up": 4, - "then": 8, - "own.": 2, - "msg": 4, - "leading/trailing": 2, - "removed": 3, - "can": 10, - "breaking": 1, - "spaces": 3, - "rnotwhite.test": 2, - "xA0": 7, - "document.removeEventListener": 2, - "document.detachEvent": 2, - "trick": 2, - "Diego": 2, - "Perini": 2, - "http": 6, - "//javascript.nwbox.com/IEContentLoaded/": 2, - "waiting": 2, - "Promise": 1, - "promiseMethods": 3, - "Static": 1, - "sliceDeferred": 1, - "Create": 1, - "callbacks": 10, - "_Deferred": 4, - "stored": 4, - "args": 31, - "avoid": 5, - "doing": 3, - "flag": 1, - "know": 3, - "cancelled": 5, - "done": 10, - "f1": 1, - "f2": 1, - "...": 1, - "_fired": 5, - "args.length": 3, - "deferred.done.apply": 2, - "callbacks.push": 1, - "deferred.resolveWith": 5, - "resolve": 7, - "given": 3, - "resolveWith": 4, - "make": 2, - "available": 1, - "#8421": 1, - "callbacks.shift": 1, - "finally": 3, - "Has": 1, - "resolved": 1, - "isResolved": 3, - "Cancel": 1, - "cancel": 6, - "Full": 1, - "fledged": 1, - "two": 1, - "Deferred": 5, - "func": 3, - "failDeferred": 1, - "promise": 14, - "Add": 4, - "errorDeferred": 1, - "doneCallbacks": 2, - "failCallbacks": 2, - "deferred.done": 2, - ".fail": 2, - ".fail.apply": 1, - "fail": 10, - "failDeferred.done": 1, - "rejectWith": 2, - "failDeferred.resolveWith": 1, - "reject": 4, - "failDeferred.resolve": 1, - "isRejected": 2, - "failDeferred.isResolved": 1, - "pipe": 2, - "fnDone": 2, - "fnFail": 2, - "jQuery.Deferred": 1, - "newDefer": 3, - "jQuery.each": 2, - "fn": 14, - "action": 3, - "returned": 4, - "fn.apply": 1, - "returned.promise": 2, - ".then": 3, - "newDefer.resolve": 1, - "newDefer.reject": 1, - ".promise": 5, - "Get": 4, - "provided": 1, - "aspect": 1, - "added": 1, - "promiseMethods.length": 1, - "failDeferred.cancel": 1, - "deferred.cancel": 2, - "Unexpose": 1, - "Call": 1, - "func.call": 1, - "helper": 1, - "firstParam": 6, - "count": 4, - "<=>": 1, - "1": 97, - "resolveFunc": 2, - "sliceDeferred.call": 2, - "Strange": 1, - "bug": 3, - "FF4": 1, - "Values": 1, - "changed": 3, - "onto": 2, - "sometimes": 1, - "outside": 2, - ".when": 1, - "Cloning": 2, - "into": 2, - "fresh": 1, - "solves": 1, - "issue": 1, - "deferred.reject": 1, - "deferred.promise": 1, - "jQuery.support": 1, - "document.createElement": 26, - "documentElement": 2, - "document.documentElement": 2, - "opt": 2, - "marginDiv": 5, - "bodyStyle": 1, - "tds": 6, - "isSupported": 7, - "Preliminary": 1, - "tests": 48, - "div.setAttribute": 1, - "div.innerHTML": 7, - "div.getElementsByTagName": 6, - "Can": 2, - "automatically": 2, - "inserted": 1, - "insert": 1, - "them": 3, - "empty": 3, - "tables": 1, - "link": 2, - "elements": 9, - "serialized": 3, - "correctly": 1, - "innerHTML": 1, - "This": 3, - "requires": 1, - "wrapper": 1, - "information": 5, - "from": 7, - "uses": 3, - ".cssText": 2, - "instead": 6, - "/top/.test": 2, - "URLs": 1, - "optgroup": 5, - "opt.selected": 1, - "Test": 3, - "setAttribute": 1, - "camelCase": 3, - "class.": 1, - "works": 1, - "attrFixes": 1, - "get/setAttribute": 1, - "ie6/7": 1, - "getSetAttribute": 3, - "div.className": 1, - "Will": 2, - "defined": 3, - "later": 1, - "submitBubbles": 3, - "changeBubbles": 3, - "focusinBubbles": 2, - "inlineBlockNeedsLayout": 3, - "shrinkWrapBlocks": 2, - "reliableMarginRight": 2, - "checked": 4, - "status": 3, - "properly": 2, - "cloned": 1, - "input.checked": 1, - "support.noCloneChecked": 1, - "input.cloneNode": 1, - ".checked": 2, - "inside": 3, - "disabled": 11, - "selects": 1, - "Fails": 2, - "Internet": 1, - "Explorer": 1, - "div.test": 1, - "support.deleteExpando": 1, - "div.addEventListener": 1, - "div.attachEvent": 2, - "div.fireEvent": 1, - "node": 23, - "being": 2, - "appended": 2, - "input.value": 5, - "input.setAttribute": 5, - "support.radioValue": 2, - "div.appendChild": 4, - "document.createDocumentFragment": 3, - "fragment.appendChild": 2, - "div.firstChild": 3, - "WebKit": 9, - "doesn": 2, - "inline": 3, - "display": 7, - "none": 4, - "GC": 2, - "references": 1, - "across": 1, - "JS": 7, - "boundary": 1, - "isNode": 11, - "elem.nodeType": 8, - "nodes": 14, - "global": 5, - "attached": 1, - "directly": 2, - "occur": 1, - "jQuery.cache": 3, - "defining": 1, - "objects": 7, - "its": 2, - "allows": 1, - "code": 2, - "shortcut": 1, - "same": 1, - "jQuery.expando": 12, - "Avoid": 1, - "more": 6, - "than": 3, - "trying": 1, - "pvt": 8, - "internalKey": 12, - "getByName": 3, - "unique": 2, - "since": 1, - "their": 3, - "ends": 1, - "jQuery.uuid": 1, - "TODO": 2, - "hack": 2, - "ONLY.": 2, - "Avoids": 2, - "exposing": 2, - "metadata": 2, - "plain": 2, - ".toJSON": 4, - "jQuery.noop": 2, - "An": 1, - "jQuery.data": 15, - "key/value": 1, - "pair": 1, - "shallow": 1, - "copied": 1, - "existing": 1, - "thisCache": 15, - "Internal": 1, - "separate": 1, - "destroy": 1, - "unless": 2, - "internal": 8, - "had": 1, - "isEmptyDataObject": 3, - "internalCache": 3, - "Browsers": 1, - "deletion": 1, - "refuse": 1, - "expandos": 2, - "other": 3, - "browsers": 2, - "faster": 1, - "iterating": 1, - "persist": 1, - "existed": 1, - "Otherwise": 2, - "eliminate": 2, - "lookups": 2, - "entries": 2, - "longer": 2, - "exist": 2, - "does": 9, - "us": 2, - "nor": 2, - "have": 6, - "removeAttribute": 3, - "Document": 2, - "these": 2, - "jQuery.support.deleteExpando": 3, - "elem.removeAttribute": 6, - "only.": 2, - "_data": 3, - "determining": 3, - "acceptData": 3, - "elem.nodeName": 2, - "jQuery.noData": 2, - "elem.nodeName.toLowerCase": 2, - "elem.getAttribute": 7, - ".attributes": 2, - "attr.length": 2, - ".name": 3, - "name.indexOf": 2, - "jQuery.camelCase": 6, - "name.substring": 2, - "dataAttr": 6, - "parts": 28, - "key.split": 2, - "Try": 4, - "fetch": 4, - "internally": 5, - "jQuery.removeData": 2, - "nothing": 2, - "found": 10, - "HTML5": 3, - "attribute": 5, - "key.replace": 2, - "rmultiDash": 3, - ".toLowerCase": 7, - "jQuery.isNaN": 1, - "rbrace.test": 2, - "jQuery.parseJSON": 2, - "isn": 2, - "option.selected": 2, - "jQuery.support.optDisabled": 2, - "option.disabled": 2, - "option.getAttribute": 2, - "option.parentNode.disabled": 2, - "jQuery.nodeName": 3, - "option.parentNode": 2, - "specific": 2, - "We": 6, - "get/set": 2, - "attributes": 14, - "comment": 3, - "nType": 8, - "jQuery.attrFn": 2, - "Fallback": 2, - "prop": 24, - "supported": 2, - "jQuery.prop": 2, - "hooks": 14, - "notxml": 8, - "jQuery.isXMLDoc": 2, - "Normalize": 1, - "needed": 2, - "jQuery.attrFix": 2, - "jQuery.attrHooks": 2, - "boolHook": 3, - "rboolean.test": 4, - "value.toLowerCase": 2, - "formHook": 3, - "forms": 1, - "certain": 2, - "characters": 6, - "rinvalidChar.test": 1, - "jQuery.removeAttr": 2, - "hooks.set": 2, - "elem.setAttribute": 2, - "hooks.get": 2, - "Non": 3, - "existent": 2, - "normalize": 2, - "propName": 8, - "jQuery.support.getSetAttribute": 1, - "jQuery.attr": 2, - "elem.removeAttributeNode": 1, - "elem.getAttributeNode": 1, - "corresponding": 2, - "jQuery.propFix": 2, - "attrHooks": 3, - "tabIndex": 4, - "readOnly": 2, - "htmlFor": 2, - "maxLength": 2, - "cellSpacing": 2, - "cellPadding": 2, - "rowSpan": 2, - "colSpan": 2, - "useMap": 2, - "frameBorder": 2, - "contentEditable": 2, - "auto": 3, - "&": 13, - "getData": 3, - "setData": 3, - "changeData": 3, - "bubbling": 1, - "live.": 2, - "hasDuplicate": 1, - "baseHasDuplicate": 2, - "rBackslash": 1, - "rNonWord": 1, - "W/": 2, - "Sizzle": 1, - "results": 4, - "seed": 1, - "origContext": 1, - "context.nodeType": 2, - "checkSet": 1, - "extra": 1, - "cur": 6, - "pop": 1, - "prune": 1, - "contextXML": 1, - "Sizzle.isXML": 1, - "soFar": 1, - "Reset": 1, - "cy": 4, - "f.isWindow": 2, "cv": 2, "cj": 4, ".appendTo": 2, @@ -29702,18 +27894,30 @@ "ct": 34, "cq": 3, "cs": 3, + "setTimeout": 19, "f.now": 2, "ci": 29, "a.ActiveXObject": 3, - "ch": 58, "a.XMLHttpRequest": 1, + "cb": 16, "a.dataFilter": 2, "a.dataType": 1, "a.dataTypes": 2, + "g": 441, + "h": 499, + "d.length": 8, + "j": 265, + "k": 302, + "l": 312, + "m": 76, + "o": 322, + "p": 110, "a.converters": 3, + "h.toLowerCase": 2, "o.split": 1, "f.error": 4, "m.replace": 1, + "ca": 6, "a.contents": 1, "a.responseFields": 1, "f.shift": 1, @@ -29731,21 +27935,34 @@ "bZ": 3, "f.isFunction": 21, "b.toLowerCase": 3, + ".split": 19, "bQ": 3, + "/.test": 19, "h.substr": 1, "bD": 3, "bx": 2, + "by": 12, "a.offsetWidth": 6, "a.offsetHeight": 2, "bn": 2, + "b.src": 4, "f.ajax": 3, + "url": 23, + "async": 5, + "dataType": 6, "f.globalEval": 2, + "b.text": 3, + "b.textContent": 2, + "b.innerHTML": 3, "bf": 6, + "b.parentNode": 4, + "b.parentNode.removeChild": 2, "bm": 3, "f.nodeName": 16, "bl": 3, "a.getElementsByTagName": 9, "f.grep": 3, + "a.type": 14, "a.defaultChecked": 1, "a.checked": 4, "bk": 5, @@ -29763,6 +27980,7 @@ "a.defaultValue": 1, "b.defaultChecked": 1, "b.checked": 1, + "b.value": 4, "a.value": 8, "b.removeAttribute": 3, "f.expando": 23, @@ -29771,74 +27989,152 @@ "f.data": 25, "d.events": 1, "f.extend": 23, + "e.handle": 2, + "e.events": 2, + ".length": 24, "": 1, "bh": 1, + "nodeName": 20, "table": 6, "getElementsByTagName": 1, + "tbody": 7, "0": 220, "appendChild": 1, "ownerDocument": 9, "createElement": 3, + "X": 6, "b=": 25, + "isFunction": 12, + "grep": 6, "e=": 21, "nodeType": 1, + "a=": 23, "d=": 15, + "nodeType=": 6, + "test": 21, + "filter": 10, + "inArray": 5, "W": 3, + "a.parentNode": 6, + "a.parentNode.nodeType": 2, + "O": 6, + "b.replace": 3, + "A": 24, + "B": 5, "N": 2, + "q": 34, "f._data": 15, + "a.liveFired": 4, "r.live": 1, "a.target.disabled": 1, + "a.button": 2, "a.namespace": 1, "a.namespace.split": 1, + ".join": 14, + "s": 290, "r.live.slice": 1, "s.length": 2, "g.origType.replace": 1, + "y": 109, "q.push": 1, "g.selector": 3, "s.splice": 1, + "a.target": 5, + ".closest": 4, + "a.currentTarget": 4, + "e.length": 9, "m.selector": 1, "n.test": 2, "g.namespace": 1, "m.elem.disabled": 1, "m.elem": 1, "g.preType": 3, + "a.relatedTarget": 2, "f.contains": 5, + "p.push": 2, + "elem": 101, + "handleObj": 2, "level": 3, "m.level": 1, + "p.length": 10, "": 1, "e.elem": 2, + "a.data": 2, "e.handleObj.data": 1, + "a.handleObj": 2, "e.handleObj": 1, "e.handleObj.origHandler.apply": 1, + "arguments": 83, "a.isPropagationStopped": 1, "e.level": 1, "a.isImmediatePropagationStopped": 1, + "L": 10, "e.type": 6, "e.originalEvent": 1, "e.liveFired": 1, "f.event.handle.call": 1, + "e.isDefaultPrevented": 2, ".preventDefault": 1, "F": 8, + "E": 11, "f.removeData": 4, "i.resolve": 1, "c.replace": 4, + ".toLowerCase": 7, + "a.getAttribute": 11, "f.isNaN": 3, "i.test": 1, "f.parseJSON": 2, + "a.document": 3, "a.navigator": 1, "a.location": 1, + "H": 8, "e.isReady": 1, "c.documentElement.doScroll": 2, "e.ready": 6, "e.fn.init": 1, "a.jQuery": 2, "a.": 2, + "<[\\w\\W]+>": 4, + "#": 13, + "w": 110, + "S/": 4, + "d/": 3, + "<(\\w+)\\s*\\/?>": 4, + "<\\/\\1>": 4, + "eE": 4, + "s*": 15, + "webkit": 6, + "w.": 17, + "t": 436, + "opera": 4, + ".*version": 4, + "msie": 4, + "v": 135, + "mozilla": 4, + ".*": 20, + "rv": 4, "d.userAgent": 1, + "z": 21, + "Object.prototype.toString": 7, + "Object.prototype.hasOwnProperty": 6, "C": 4, + "Array.prototype.push": 4, + "D": 9, + "Array.prototype.slice": 6, + "String.prototype.trim": 3, + "Array.prototype.indexOf": 4, + "G": 11, "e.fn": 2, "e.prototype": 1, + "constructor": 8, + "init": 7, + "this.context": 17, + "this.length": 41, "c.body": 4, + "this.selector": 16, "a.charAt": 2, + "a.length": 23, "i.exec": 1, "d.ownerDocument": 1, "n.exec": 1, @@ -29849,36 +28145,80 @@ "j.cacheable": 1, "e.clone": 1, "j.fragment": 2, + ".childNodes": 2, "e.merge": 3, "c.getElementById": 1, + "h.parentNode": 3, "h.id": 1, "f.find": 2, "d.jquery": 1, + ".find": 5, + "this.constructor": 5, "e.isFunction": 5, "f.ready": 1, + "a.selector": 4, + "a.context": 2, "e.makeArray": 1, + "selector": 40, + "jquery": 3, + "length": 48, + "size": 6, + "toArray": 2, "D.call": 4, + "this.toArray": 3, + "pushStack": 4, "e.isArray": 2, "C.apply": 1, "d.prevObject": 1, "d.context": 2, "d.selector": 2, + "each": 17, "e.each": 2, + "ready": 31, "e.bindReady": 1, "y.done": 1, + "eq": 2, + "this.slice": 5, + "first": 10, + "this.eq": 4, + "last": 6, + "this.pushStack": 12, "D.apply": 1, + "map": 7, "e.map": 1, + "a.call": 17, + "end": 14, + "this.prevObject": 3, + "push": 11, + "sort": 4, + ".sort": 9, + "splice": 5, + ".splice": 5, "e.fn.init.prototype": 1, "e.extend": 2, "e.fn.extend": 1, + "arguments.length": 18, "": 1, "f=": 13, + "i=": 31, + "isPlainObject": 4, "g=": 15, + "isArray": 10, "h=": 19, + "extend": 13, + "noConflict": 4, "jQuery=": 2, + "isReady": 5, + "1": 97, + "readyWait": 6, + "holdReady": 3, + "body": 22, "isReady=": 1, "y.resolveWith": 1, "e.fn.trigger": 1, + ".trigger": 3, + ".unbind": 4, + "bindReady": 5, "e._Deferred": 1, "c.readyState": 2, "c.addEventListener": 4, @@ -29886,17 +28226,23 @@ "c.attachEvent": 3, "a.attachEvent": 6, "a.frameElement": 1, + "Array.isArray": 7, "isWindow": 2, - "isNaN": 6, "m.test": 1, "String": 2, "A.call": 1, "e.isWindow": 2, + "a.constructor": 2, "B.call": 3, + "a.constructor.prototype": 2, + "isEmptyObject": 7, + "error": 20, + "parseJSON": 4, "e.trim": 1, "a.JSON": 1, "a.JSON.parse": 2, "o.test": 1, + "Function": 3, "e.error": 2, "parseXML": 1, "a.DOMParser": 1, @@ -29907,31 +28253,50 @@ "c.loadXML": 1, "c.documentElement": 4, "d.nodeName": 4, + "noop": 3, + "globalEval": 2, "j.test": 3, "a.execScript": 1, "a.eval.call": 1, + "a.nodeName": 12, + "a.nodeName.toUpperCase": 2, + "b.toUpperCase": 3, "c.apply": 2, "c.call": 3, + "trim": 5, "E.call": 1, + "makeArray": 3, "C.call": 1, "F.call": 1, + "b.length": 12, + "merge": 2, "c.length": 8, "": 1, "j=": 14, "k=": 11, "h.concat.apply": 1, + "guid": 5, + "proxy": 4, + "a.apply": 2, "f.concat": 1, "g.guid": 3, + "a.guid": 7, "e.guid": 3, "access": 2, "e.access": 1, + "d.call": 3, "now": 5, + "Date": 4, + ".getTime": 3, + "uaMatch": 3, + "a.toLowerCase": 4, "s.exec": 1, "t.exec": 1, "u.exec": 1, "a.indexOf": 2, "v.exec": 1, - "sub": 4, + "browser": 11, + "version": 10, "a.fn.init": 2, "a.superclass": 1, "a.fn": 2, @@ -29948,49 +28313,101 @@ "x.version": 1, "e.browser.webkit": 1, "e.browser.safari": 1, + "xA0": 7, "c.removeEventListener": 2, "c.detachEvent": 1, + ".slice": 6, + "_Deferred": 4, + "done": 10, "": 1, + "resolveWith": 4, "c=": 24, "shift": 1, "apply": 8, + "resolve": 7, + "isResolved": 3, + "cancel": 6, + "Deferred": 5, + "then": 8, + "fail": 10, + "always": 6, + "rejectWith": 2, + "reject": 4, + "isRejected": 2, + "pipe": 2, + "promise": 14, + "when": 20, "h.call": 2, "g.resolveWith": 3, "<=1&&a&&f.isFunction(a.promise)?a:f.Deferred();if(d>": 1, + ".promise": 5, + ".then": 3, "g.reject": 1, "g.promise": 1, "f.support": 2, + "a.setAttribute": 7, "a.innerHTML": 7, "f.appendChild": 1, + "leadingWhitespace": 3, "a.firstChild.nodeType": 2, + "htmlSerialize": 3, + "style": 30, + "/top/.test": 2, "e.getAttribute": 2, + "hrefNormalized": 3, + "opacity": 13, "e.style.opacity": 1, + "cssFloat": 4, "e.style.cssFloat": 1, + "checkOn": 4, "h.value": 3, + "optSelected": 3, "g.selected": 1, + "getSetAttribute": 3, "a.className": 1, + "submitBubbles": 3, + "changeBubbles": 3, + "focusinBubbles": 2, + "deleteExpando": 3, + "noCloneEvent": 3, + "inlineBlockNeedsLayout": 3, + "shrinkWrapBlocks": 2, + "reliableMarginRight": 2, "h.checked": 2, "j.noCloneChecked": 1, "h.cloneNode": 1, + ".checked": 2, "f.disabled": 1, "j.optDisabled": 1, "g.disabled": 1, + "a.test": 2, "j.deleteExpando": 1, "a.fireEvent": 1, "j.noCloneEvent": 1, "a.detachEvent": 1, + "a.cloneNode": 3, + ".fireEvent": 3, "h.setAttribute": 2, "j.radioValue": 1, + "a.appendChild": 3, "c.createDocumentFragment": 1, "k.appendChild": 1, + "a.firstChild": 6, "j.checkClone": 1, "k.cloneNode": 1, + ".cloneNode": 4, + ".lastChild.checked": 2, "a.style.width": 1, "a.style.paddingLeft": 1, "visibility": 3, + "height": 25, + "border": 7, + "margin": 8, "background": 56, "l.style": 1, "l.appendChild": 1, + "b.insertBefore": 3, + "b.firstChild": 5, "j.appendChecked": 1, "j.boxModel": 1, "a.style": 8, @@ -29999,91 +28416,157 @@ "j.inlineBlockNeedsLayout": 1, "j.shrinkWrapBlocks": 1, ".offsetHeight": 4, + ".style.display": 5, "j.reliableHiddenOffsets": 1, "c.defaultView": 2, "c.defaultView.getComputedStyle": 3, "i.style.width": 1, "i.style.marginRight": 1, "j.reliableMarginRight": 1, - "parseInt": 12, "marginRight": 2, ".marginRight": 2, "l.innerHTML": 1, + "b.removeChild": 3, + "submit": 14, + "change": 16, + "focusin": 9, "f.boxModel": 1, "f.support.boxModel": 4, + "Z": 6, + "cache": 45, "uuid": 2, + "expando": 14, "f.fn.jquery": 1, "Math.random": 2, "D/g": 2, + "noData": 3, + "embed": 3, + "applet": 2, "hasData": 2, "f.cache": 5, + "data": 145, "f.acceptData": 4, "f.uuid": 1, + ".toJSON": 4, "f.noop": 4, "f.camelCase": 5, ".events": 1, + "removeData": 8, "f.support.deleteExpando": 3, + "_data": 3, + "acceptData": 3, "f.noData": 2, + "a.nodeName.toLowerCase": 3, "f.fn.extend": 9, + ".nodeType": 9, + ".attributes": 2, + ".name": 3, "g.indexOf": 2, "g.substring": 1, + "this.each": 42, + "a.split": 4, + "this.triggerHandler": 6, + "this.data": 5, "b.triggerHandler": 2, "_mark": 2, "_unmark": 3, + "queue": 7, "f.makeArray": 5, "e.push": 3, + "dequeue": 6, "f.queue": 3, "c.shift": 2, "c.unshift": 1, "f.dequeue": 4, + "delay": 4, "f.fx": 2, "f.fx.speeds": 1, + "this.queue": 4, + "clearQueue": 2, "d.resolveWith": 1, "f.Deferred": 2, "f._Deferred": 2, "l.done": 1, "d.promise": 1, + "r/g": 2, + "button": 24, + "input": 26, + "select": 20, + "textarea": 8, "rea": 1, "autofocus": 1, "autoplay": 1, + "checked": 4, "controls": 1, "defer": 1, + "disabled": 11, + "hidden": 12, + "multiple": 7, + "open": 2, + "readonly": 3, "required": 1, "scoped": 1, + "selected": 5, + "attr": 13, "f.access": 3, "f.attr": 2, + "removeAttr": 5, "f.removeAttr": 3, "f.prop": 2, "removeProp": 1, "f.propFix": 6, + "addClass": 2, "c.addClass": 1, + "c.attr": 4, + "e.nodeType": 7, + "e.className": 14, "f.trim": 2, + "removeClass": 2, "c.removeClass": 1, "g.nodeType": 6, "g.className": 4, "h.replace": 2, + "toggleClass": 2, "d.toggleClass": 1, "d.attr": 1, "h.hasClass": 1, + "this.className": 10, + "hasClass": 2, "": 1, + "className": 4, + "replace": 8, + "indexOf": 5, "f.valHooks": 7, "e.nodeName.toLowerCase": 1, "c.get": 1, "e.value": 1, + "this.nodeType": 4, "e.val": 1, "f.map": 5, "this.nodeName.toLowerCase": 1, "this.type": 3, "c.set": 1, + "this.value": 4, "valHooks": 1, + "option": 12, "a.attributes.value": 1, + "b.specified": 2, "a.text": 1, "a.selectedIndex": 3, "a.options": 2, "": 3, + "support": 13, "optDisabled": 1, + "getAttribute": 3, + "parentNode": 10, + "optgroup": 5, "selected=": 1, + "attrFn": 2, + "css": 7, + "html": 10, + "offset": 21, "attrFix": 1, + "tabindex": 4, "f.attrFn": 3, "f.isXMLDoc": 4, "f.attrFix": 3, @@ -30095,15 +28578,26 @@ "i.set": 1, "i.get": 1, "f.support.getSetAttribute": 2, + "a.removeAttribute": 3, "a.removeAttributeNode": 1, + "a.getAttributeNode": 7, + "attrHooks": 3, "q.test": 1, "f.support.radioValue": 1, + "tabIndex": 4, "c.specified": 1, "c.value": 1, "r.test": 1, "s.test": 1, + "a.href": 2, "propFix": 1, + "maxlength": 2, + "cellspacing": 2, "cellpadding": 1, + "rowspan": 2, + "colspan": 2, + "usemap": 2, + "frameborder": 2, "contenteditable": 1, "f.propHooks": 1, "h.set": 1, @@ -30111,6 +28605,7 @@ "propHooks": 1, "f.attrHooks.value": 1, "v.get": 1, + "v.set": 5, "f.attrHooks.name": 1, "f.valHooks.button": 1, "d.nodeValue": 3, @@ -30118,13 +28613,19 @@ "f.support.style": 1, "f.attrHooks.style": 1, "a.style.cssText.toLowerCase": 1, + "a.style.cssText": 3, "f.support.optSelected": 1, "f.propHooks.selected": 2, + "b.selectedIndex": 2, "b.parentNode.selectedIndex": 1, "f.support.checkOn": 1, "f.inArray": 4, + ".val": 5, + "./g": 2, "s.": 1, + "a.replace": 7, "f.event": 2, + "add": 16, "d.handler": 1, "g.handler": 1, "d.guid": 4, @@ -30135,6 +28636,7 @@ "f.event.handle.apply": 1, "k.elem": 2, "c.split": 2, + "handler": 14, "l.indexOf": 1, "l.split": 1, "n.shift": 1, @@ -30150,6 +28652,7 @@ "h.handler.guid": 2, "o.push": 1, "f.event.global": 2, + "global": 5, "remove": 9, "s.events": 1, "c.type": 9, @@ -30165,8 +28668,13 @@ "p.splice": 1, "": 1, "u=": 12, + "handle": 15, "elem=": 4, + "events": 18, "customEvent": 1, + "getData": 3, + "setData": 3, + "changeData": 3, "trigger": 4, "h.slice": 1, "i.shift": 1, @@ -30184,9 +28692,10 @@ "b.handle.elem": 2, "c.result": 3, "c.target": 3, - "do": 15, + "d.unshift": 2, "c.currentTarget": 2, "m.apply": 1, + ".apply": 7, "k.parentNode": 1, "k.ownerDocument": 1, "c.target.ownerDocument": 1, @@ -30207,7 +28716,42 @@ "preventDefault": 4, "stopPropagation": 5, "isImmediatePropagationStopped": 2, + "result": 12, "props": 21, + "altKey": 4, + "attrChange": 4, + "attrName": 4, + "bubbles": 4, + "cancelable": 4, + "charCode": 7, + "clientX": 6, + "clientY": 5, + "ctrlKey": 6, + "currentTarget": 4, + "detail": 3, + "eventPhase": 4, + "fromElement": 6, + "keyCode": 6, + "layerX": 3, + "layerY": 3, + "metaKey": 5, + "newValue": 3, + "offsetX": 4, + "offsetY": 4, + "pageX": 4, + "pageY": 4, + "prevValue": 3, + "relatedNode": 4, + "relatedTarget": 6, + "screenX": 4, + "screenY": 4, + "shiftKey": 4, + "srcElement": 5, + "target": 44, + "toElement": 5, + "view": 4, + "wheelDelta": 3, + "which": 8, "split": 4, "fix": 1, "Event": 3, @@ -30215,6 +28759,7 @@ "relatedTarget=": 1, "fromElement=": 1, "pageX=": 2, + "documentElement": 2, "scrollLeft": 2, "clientLeft": 2, "pageY=": 1, @@ -30229,12 +28774,15 @@ "special": 3, "setup": 5, "teardown": 6, + "live": 8, + "event": 31, "origType": 2, "beforeunload": 1, "onbeforeunload=": 3, "removeEvent=": 1, "removeEventListener": 3, "detachEvent": 2, + "on": 37, "Event=": 1, "originalEvent=": 1, "type=": 5, @@ -30253,27 +28801,44 @@ "isPropagationStopped": 1, "G=": 1, "H=": 1, + "mouseenter": 9, + "mouseover": 12, + "mouseleave": 9, + "mouseout": 12, "submit=": 1, + "form": 12, + "click": 11, "specialSubmit": 3, "closest": 3, + "keypress": 4, "keyCode=": 1, + "I": 7, "J=": 1, "selectedIndex": 1, "a.selected": 1, + "K": 4, "z.test": 3, "d.readOnly": 1, + "J": 5, + "d.type": 2, "c.liveFired": 1, "f.event.special.change": 1, "filters": 1, + "focusout": 11, "beforedeactivate": 1, + "b.type": 4, "K.call": 2, + "keydown": 4, "a.keyCode": 2, "beforeactivate": 1, "f.event.add": 2, + "this.nodeName": 4, "f.event.special.change.filters": 1, "I.focus": 1, "I.beforeactivate": 1, "f.support.focusinBubbles": 1, + "focus": 7, + "blur": 8, "c.originalEvent": 1, "a.preventDefault": 3, "f.fn": 9, @@ -30286,23 +28851,37 @@ "undelegate": 1, "this.die": 1, "triggerHandler": 1, - "%": 26, + "toggle": 10, ".guid": 1, "this.click": 1, + "hover": 3, "this.mouseenter": 1, ".mouseleave": 1, + "M": 9, "g.charAt": 1, "n.unbind": 1, "y.exec": 1, "a.push": 2, "n.length": 1, "": 1, + "load": 5, + "resize": 3, + "scroll": 6, + "unload": 5, + "dblclick": 3, + "mousedown": 3, + "mouseup": 3, + "mousemove": 3, + "keyup": 3, + "fn": 14, "this.bind": 2, + "this.trigger": 2, "": 2, "sizcache=": 4, "sizset": 2, "sizset=": 2, "toLowerCase": 3, + "W/": 2, "d.nodeType": 5, "k.isXML": 4, "a.exec": 2, @@ -30312,13 +28891,19 @@ "l.relative": 6, "x.shift": 4, "l.match.ID.test": 2, + "k.find": 6, "q.expr": 4, + "k.filter": 5, "q.set": 4, + "expr": 2, "x.pop": 4, "d.parentNode": 4, + "k.error": 2, "e.call": 1, "f.push.apply": 1, "k.contains": 5, + "f.push": 5, + "k.uniqueSort": 5, "a.sort": 1, "": 1, "matches=": 1, @@ -30326,11 +28911,53 @@ "l.order.length": 1, "l.order": 1, "l.leftMatch": 1, + ".exec": 2, + "g.splice": 2, "j.substr": 1, + "j.length": 2, + "Syntax": 3, + "unrecognized": 3, + "ID": 8, + "NAME": 2, + "TAG": 2, + "u00c0": 2, + "uFFFF": 2, + "leftMatch": 2, + "attrMap": 2, + "attrHandle": 2, + "href": 9, + "relative": 4, "": 1, + "previousSibling": 5, + "nth": 5, + "even": 3, + "odd": 2, + "radio": 17, + "checkbox": 14, + "file": 5, + "password": 5, + "image": 5, + "reset": 2, + "contains": 8, + "only": 10, + "id": 38, + "class": 5, + "Array": 3, + "number": 13, + "div": 28, + "script": 7, + "": 4, + "name=": 2, + "href=": 2, + "": 2, "__sizzle__": 1, + "

": 2, + "class=": 5, + "

": 2, + ".TEST": 2, "sizzle": 1, "l.match.PSEUDO.test": 1, + "b.call": 4, "a.document.nodeType": 1, "a.getElementsByClassName": 3, "a.lastChild.className": 1, @@ -30346,29 +28973,35 @@ "b.nodeName": 2, "l.match.PSEUDO.exec": 1, "l.match.PSEUDO": 1, + "f.length": 5, "f.expr": 4, "k.selectors": 1, "f.expr.filters": 3, "f.unique": 4, "f.text": 2, "k.getText": 1, + "P": 4, "/Until": 1, + "Q": 6, "parents": 2, "prevUntil": 2, "prevAll": 2, + "R": 2, + "T": 4, "U": 1, "f.expr.match.POS": 1, "V": 2, "children": 3, "contents": 4, - "next": 9, "prev": 2, ".filter": 2, "": 1, "e.splice": 1, + "has": 9, "this.filter": 2, "": 1, "": 1, + "index": 5, ".is": 2, "c.push": 3, "g.parentNode": 2, @@ -30383,6 +29016,7 @@ "this.get": 1, "andSelf": 1, "this.add": 1, + "parent": 15, "f.dir": 6, "parentsUntil": 1, "f.nth": 2, @@ -30405,13 +29039,19 @@ "dir": 1, "sibling": 1, "a.nextSibling": 1, + "Y": 3, + "jQuery": 48, "<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:]+)[^>": 1, "/ig": 3, + "_": 9, + "ba": 3, "tbody/i": 1, + "bb": 2, "bc": 1, "bd": 1, "/checked": 1, "s*.checked.": 1, + "be": 12, "java": 1, "ecma": 1, "script/i": 1, @@ -30421,7 +29061,7 @@ "thead": 2, "tr": 23, "td": 3, - "col": 7, + "area": 2, "_default": 5, "bg.optgroup": 1, "bg.option": 1, @@ -30437,11 +29077,13 @@ "c.text": 2, "this.empty": 3, ".append": 6, + ".ownerDocument": 5, ".createTextNode": 1, "wrapAll": 1, ".wrapAll": 2, ".eq": 1, ".clone": 1, + ".parentNode": 7, "b.map": 1, "wrapInner": 1, ".wrapInner": 1, @@ -30450,6 +29092,7 @@ "b.append": 1, "wrap": 2, "unwrap": 1, + ".each": 3, ".replaceWith": 1, "this.childNodes": 1, ".end": 1, @@ -30459,13 +29102,18 @@ "prepend": 1, "this.insertBefore": 1, "this.firstChild": 1, + "before": 8, "this.parentNode.insertBefore": 2, "a.push.apply": 2, + "after": 7, "this.nextSibling": 2, ".toArray": 1, "f.cleanData": 4, + "d.getElementsByTagName": 6, "d.parentNode.removeChild": 1, + "empty": 3, "b.getElementsByTagName": 1, + "clone": 5, "this.map": 3, "f.clone": 2, ".innerHTML.replace": 1, @@ -30488,12 +29136,14 @@ "f.support.checkClone": 2, "bd.test": 2, ".domManip": 1, + "j.call": 2, "g.html": 1, "g.domManip": 1, "j.parentNode": 1, "f.support.parentNode": 1, "i.nodeType": 1, "i.childNodes.length": 1, + "fragment": 27, "f.buildFragment": 2, "e.fragment": 1, "h.childNodes.length": 1, @@ -30504,6 +29154,7 @@ "f.fragments": 3, "i.createDocumentFragment": 1, "f.clean": 1, + "cacheable": 2, "appendTo": 1, "prependTo": 1, "insertBefore": 1, @@ -30516,7 +29167,10 @@ "e.selector": 1, "f.support.noCloneEvent": 1, "f.support.noCloneChecked": 1, + "clean": 3, "b.createElement": 2, + "b.ownerDocument": 6, + "bb.test": 2, "b.createTextNode": 2, "k.replace": 2, "o.innerHTML": 1, @@ -30535,9 +29189,11 @@ "k.nodeType": 1, "h.push": 1, "be.test": 1, + ".type": 2, ".type.toLowerCase": 1, "h.splice.apply": 1, ".concat": 3, + "d.appendChild": 3, "cleanData": 1, "j.nodeName": 1, "j.nodeName.toLowerCase": 1, @@ -30552,11 +29208,14 @@ "br": 19, "ms": 2, "bs": 2, + "px": 31, "bt": 42, "bu": 11, "bv": 2, "de": 1, "bw": 2, + "position": 7, + "display": 7, "bz": 7, "bA": 3, "bB": 5, @@ -30583,9 +29242,11 @@ "k.set": 1, "g.get": 1, "swap": 1, + "camelCase": 3, "f.curCSS": 1, "f.swap": 2, "<0||e==null){e=a.style[b];return>": 1, + "auto": 3, "0px": 1, "f.support.opacity": 1, "f.cssHooks.opacity": 1, @@ -30594,6 +29255,7 @@ "a.currentStyle.filter": 1, "a.style.filter": 1, "RegExp.": 1, + "/100": 2, "c.zoom": 1, "b*100": 1, "d.filter": 1, @@ -30639,11 +29301,13 @@ "week": 1, "bK": 1, "about": 1, + "app": 3, "storage": 1, "extension": 1, "widget": 1, "bL": 1, "GET": 1, + "HEAD": 3, "bM": 2, "bN": 2, "bO": 2, @@ -30651,7 +29315,6 @@ "/gi": 2, "bP": 1, "bR": 2, - "*/": 2, "bS": 1, "bT": 2, "f.fn.load": 1, @@ -30677,6 +29340,7 @@ "this.serializeArray": 1, "serializeArray": 1, "this.elements": 2, + "this.name": 7, "this.disabled": 1, "this.checked": 1, "bP.test": 1, @@ -30689,6 +29353,7 @@ "getJSON": 1, "ajaxSetup": 1, "f.ajaxSettings": 4, + "context": 48, "ajaxSettings": 1, "isLocal": 1, "bK.test": 1, @@ -30740,10 +29405,13 @@ "v.complete": 1, "i.done": 1, "<2)for(b>": 1, + "status": 3, "url=": 1, "dataTypes=": 1, "crossDomain=": 2, + "r=": 18, "exec": 8, + "http": 6, "80": 2, "443": 2, "param": 3, @@ -30764,19 +29432,24 @@ "Type": 1, "ifModified": 1, "lastModified": 3, + "If": 21, "Modified": 1, + "Since": 3, "etag": 3, "None": 1, + "Match": 3, "Accept": 1, "dataTypes": 4, "q=": 1, "01": 1, + "headers": 41, "beforeSend": 2, "p=": 5, "No": 1, "Transport": 1, "readyState=": 1, "ajaxSend": 1, + "timeout": 2, "v.abort": 1, "d.timeout": 1, "p.send": 1, @@ -30795,6 +29468,7 @@ "cd.test": 2, "b.url": 4, "b.jsonpCallback": 4, + "j.replace": 2, "d.always": 1, "b.converters": 1, "/javascript": 1, @@ -30839,6 +29513,7 @@ "h.setRequestHeader": 1, "h.send": 1, "c.hasContent": 1, + "c.data": 12, "h.readyState": 3, "h.onreadystatechange": 2, "h.abort": 1, @@ -30853,6 +29528,8 @@ "c.isLocal": 1, ".unload": 1, "cm": 2, + "show": 10, + "hide": 8, "cn": 1, "co": 5, "cp": 1, @@ -30862,11 +29539,13 @@ "a.oRequestAnimationFrame": 1, "this.animate": 2, "d.style": 3, + "d.style.display": 5, ".style": 1, "": 1, "_toggle": 2, "animate": 4, "fadeTo": 1, + "speed": 4, "queue=": 2, "animatedProperties=": 1, "animatedProperties": 2, @@ -30877,12 +29556,17 @@ "overflow": 2, "overflowX": 1, "overflowY": 1, + "inline": 3, "float": 3, + "none": 4, "display=": 3, "zoom=": 1, "fx": 10, "l=": 10, "m=": 2, + "cur": 6, + "n=": 10, + "o=": 13, "custom": 5, "stop": 7, "timers": 3, @@ -30908,6 +29592,7 @@ "prop=": 3, "orig=": 1, "orig": 3, + "options": 56, "step": 7, "startTime=": 1, "start=": 1, @@ -30915,6 +29600,7 @@ "unit=": 1, "unit": 1, "now=": 1, + "start": 20, "pos=": 1, "state=": 1, "co=": 2, @@ -30926,7 +29612,6 @@ "this.startTime": 2, "this.now": 3, "this.end": 2, - "this.pos": 4, "this.state": 3, "this.update": 2, "e.animatedProperties": 5, @@ -30966,7 +29651,9 @@ "f.offset.bodyOffset": 2, "b.getBoundingClientRect": 1, "e.documentElement": 4, + "top": 12, "c.top": 4, + "left": 14, "c.left": 4, "e.body": 3, "g.clientTop": 1, @@ -31006,6 +29693,8 @@ "f.offset": 1, "initialize": 3, "b.style": 1, + "a.insertBefore": 2, + "d.firstChild": 2, "d.nextSibling.firstChild.firstChild": 1, "this.doesNotAddBorder": 1, "e.offsetTop": 4, @@ -31019,6 +29708,7 @@ "this.subtractsBorderForOverflowNotVisible": 1, "this.doesNotIncludeMarginInBodyOffset": 1, "a.offsetTop": 2, + "a.removeChild": 2, "bodyOffset": 1, "a.offsetLeft": 1, "f.offset.doesNotIncludeMarginInBodyOffset": 1, @@ -31039,6 +29729,7 @@ "this.offsetParent": 2, "this.offset": 2, "cx.test": 2, + ".nodeName": 2, "b.offset": 1, "d.top": 2, "d.left": 2, @@ -31053,879 +29744,7 @@ "e.document.compatMode": 1, "e.document.body": 1, "this.css": 1, - "Prioritize": 1, - "": 1, - "XSS": 1, - "location.hash": 1, - "#9521": 1, - "Matches": 1, - "dashed": 1, - "camelizing": 1, - "rdashAlpha": 1, - "rmsPrefix": 1, - "fcamelCase": 1, - "letter": 3, - "readyList.fireWith": 1, - ".off": 1, - "jQuery.Callbacks": 2, - "IE8": 2, - "exceptions": 2, - "#9897": 1, - "elems": 9, - "chainable": 4, - "emptyGet": 3, - "bulk": 3, - "elems.length": 1, - "Sets": 3, - "jQuery.access": 2, - "Optionally": 1, - "executed": 1, - "Bulk": 1, - "operations": 1, - "iterate": 1, - "executing": 1, - "exec.call": 1, - "they": 2, - "run": 1, - "against": 1, - "entire": 1, - "fn.call": 2, - "value.call": 1, - "Gets": 2, - "frowned": 1, - "upon.": 1, - "More": 1, - "//docs.jquery.com/Utilities/jQuery.browser": 1, - "ua": 6, - "ua.toLowerCase": 1, - "rwebkit.exec": 1, - "ropera.exec": 1, - "rmsie.exec": 1, - "ua.indexOf": 1, - "rmozilla.exec": 1, - "jQuerySub": 7, - "jQuerySub.fn.init": 2, - "jQuerySub.superclass": 1, - "jQuerySub.fn": 2, - "jQuerySub.prototype": 1, - "jQuerySub.fn.constructor": 1, - "jQuerySub.sub": 1, - "jQuery.fn.init.call": 1, - "rootjQuerySub": 2, - "jQuerySub.fn.init.prototype": 1, - "jQuery.uaMatch": 1, - "browserMatch.browser": 2, - "jQuery.browser.version": 1, - "browserMatch.version": 1, - "jQuery.browser.webkit": 1, - "jQuery.browser.safari": 1, - "flagsCache": 3, - "createFlags": 2, - "flags": 13, - "flags.split": 1, - "flags.length": 1, - "Convert": 1, - "formatted": 2, - "Actual": 2, - "Stack": 1, - "fire": 4, - "calls": 1, - "repeatable": 1, - "lists": 2, - "stack": 2, - "forgettable": 1, - "memory": 8, - "Flag": 2, - "First": 3, - "fireWith": 1, - "firingStart": 3, - "End": 1, - "firingLength": 4, - "Index": 1, - "firingIndex": 5, - "several": 1, - "actual": 1, - "Inspect": 1, - "recursively": 1, - "mode": 1, - "flags.unique": 1, - "self.has": 1, - "list.push": 1, - "Fire": 1, - "flags.memory": 1, - "flags.stopOnFalse": 1, - "Mark": 1, - "halted": 1, - "flags.once": 1, - "stack.length": 1, - "stack.shift": 1, - "self.fireWith": 1, - "self.disable": 1, - "Callbacks": 1, - "collection": 3, - "Do": 2, - "current": 7, - "batch": 2, - "With": 1, - "/a": 1, - ".55": 1, - "basic": 1, - "all.length": 1, - "supports": 2, - "select.appendChild": 1, - "strips": 1, - "leading": 1, - "div.firstChild.nodeType": 1, - "manipulated": 1, - "normalizes": 1, - "around": 1, - "issue.": 1, - "#5145": 1, - "existence": 1, - "styleFloat": 1, - "a.style.cssFloat": 1, - "defaults": 3, - "working": 1, - "property.": 1, - "too": 1, - "marked": 1, - "marks": 1, - "select.disabled": 1, - "support.optDisabled": 1, - "opt.disabled": 1, - "handlers": 1, - "support.noCloneEvent": 1, - "div.cloneNode": 1, - "maintains": 1, - "#11217": 1, - "loses": 1, - "div.lastChild": 1, - "conMarginTop": 3, - "paddingMarginBorder": 5, - "positionTopLeftWidthHeight": 3, - "paddingMarginBorderVisibility": 3, - "container": 4, - "container.style.cssText": 1, - "body.insertBefore": 1, - "body.firstChild": 1, - "Construct": 1, - "container.appendChild": 1, - "cells": 3, - "still": 4, - "offsetWidth/Height": 3, - "visible": 1, - "row": 1, - "reliable": 1, - "offsets": 1, - "safety": 1, - "goggles": 1, - "#4512": 1, - "fails": 2, - "support.reliableHiddenOffsets": 1, - "explicit": 1, - "right": 3, - "incorrectly": 1, - "computed": 1, - "based": 1, - "container.": 1, - "#3333": 1, - "Feb": 1, - "Bug": 1, - "getComputedStyle": 3, - "returns": 1, - "wrong": 1, - "window.getComputedStyle": 6, - "marginDiv.style.width": 1, - "marginDiv.style.marginRight": 1, - "div.style.width": 2, - "support.reliableMarginRight": 1, - "div.style.zoom": 2, - "natively": 1, - "block": 4, - "act": 1, - "setting": 2, - "giving": 1, - "layout": 2, - "div.style.padding": 1, - "div.style.border": 1, - "div.style.overflow": 2, - "div.style.display": 2, - "support.inlineBlockNeedsLayout": 1, - "div.offsetWidth": 2, - "shrink": 1, - "support.shrinkWrapBlocks": 1, - "div.style.cssText": 1, - "outer.firstChild": 1, - "outer.nextSibling.firstChild.firstChild": 1, - "offsetSupport": 2, - "doesNotAddBorder": 1, - "inner.offsetTop": 4, - "doesAddBorderForTableAndCells": 1, - "td.offsetTop": 1, - "inner.style.position": 2, - "inner.style.top": 2, - "safari": 1, - "subtracts": 1, - "here": 1, - "offsetSupport.fixedPosition": 1, - "outer.style.overflow": 1, - "outer.style.position": 1, - "offsetSupport.subtractsBorderForOverflowNotVisible": 1, - "offsetSupport.doesNotIncludeMarginInBodyOffset": 1, - "body.offsetTop": 1, - "div.style.marginTop": 1, - "support.pixelMargin": 1, - ".marginTop": 1, - "container.style.zoom": 2, - "body.removeChild": 1, - "rbrace": 1, - "Please": 1, - "caution": 1, - "Unique": 1, - "page": 1, - "rinlinejQuery": 1, - "jQuery.fn.jquery": 1, - "following": 1, - "uncatchable": 1, - "you": 1, - "attempt": 2, - "them.": 1, - "Ban": 1, - "except": 1, - "Flash": 1, - "jQuery.acceptData": 2, - "privateCache": 1, - "differently": 1, - "because": 1, - "IE6": 1, - "order": 1, - "collisions": 1, - "between": 1, - "user": 1, - "data.": 1, - "thisCache.data": 3, - "Users": 1, - "should": 1, - "inspect": 1, - "undocumented": 1, - "subject": 1, - "change.": 1, - "But": 1, - "anyone": 1, - "listen": 1, - "No.": 1, - "isEvents": 1, - "privateCache.events": 1, - "converted": 2, - "camel": 2, - "names": 2, - "camelCased": 1, - "Reference": 1, - "entry": 1, - "purpose": 1, - "continuing": 1, - "Support": 1, - "space": 1, - "separated": 1, - "jQuery.isArray": 1, - "manipulation": 1, - "cased": 1, - "name.split": 1, - "name.length": 1, - "want": 1, - "let": 1, - "destroyed": 2, - "jQuery.isEmptyObject": 1, - "Don": 1, - "care": 1, - "Ensure": 1, - "#10080": 1, - "cache.setInterval": 1, - "part": 8, - "jQuery._data": 2, - "elem.attributes": 1, - "self.triggerHandler": 2, - "jQuery.isNumeric": 1, - "All": 1, - "lowercase": 1, - "Grab": 1, - "necessary": 1, - "hook": 1, - "nodeHook": 1, - "attrNames": 3, - "isBool": 4, - "rspace": 1, - "attrNames.length": 1, - "#9699": 1, - "explanation": 1, - "approach": 1, - "removal": 1, - "#10870": 1, - "**": 1, - "timeStamp": 1, - "char": 2, - "buttons": 1, - "SHEBANG#!node": 2, - "http.createServer": 1, - "res.writeHead": 1, - "res.end": 1, - ".listen": 1, - "Date.prototype.toJSON": 2, - "isFinite": 1, - "this.valueOf": 2, - "this.getUTCFullYear": 1, - "this.getUTCMonth": 1, - "this.getUTCDate": 1, - "this.getUTCHours": 1, - "this.getUTCMinutes": 1, - "this.getUTCSeconds": 1, - "String.prototype.toJSON": 1, - "Number.prototype.toJSON": 1, - "Boolean.prototype.toJSON": 1, - "u0000": 1, - "u00ad": 1, - "u0600": 1, - "u0604": 1, - "u070f": 1, - "u17b4": 1, - "u17b5": 1, - "u200c": 1, - "u200f": 1, - "u2028": 3, - "u202f": 1, - "u2060": 1, - "u206f": 1, - "ufeff": 1, - "ufff0": 1, - "uffff": 1, - "escapable": 1, - "/bfnrt": 1, - "fA": 2, - "JSON.parse": 1, - "PUT": 1, - "DELETE": 1, - "_id": 1, - "ties": 1, - "collection.": 1, - "_removeReference": 1, - "model.collection": 2, - "model.unbind": 1, - "this._onModelEvent": 1, - "_onModelEvent": 1, - "ev": 5, - "this._remove": 1, - "model.idAttribute": 2, - "this._byId": 2, - "model.previous": 1, - "model.id": 1, - "this.trigger.apply": 2, - "_.each": 1, - "Backbone.Collection.prototype": 1, - "this.models": 1, - "_.toArray": 1, - "Backbone.Router": 1, - "options.routes": 2, - "this.routes": 4, - "this._bindRoutes": 1, - "this.initialize.apply": 2, - "namedParam": 2, - "splatParam": 2, - "escapeRegExp": 2, - "_.extend": 9, - "Backbone.Router.prototype": 1, - "Backbone.Events": 2, - "route": 18, - "Backbone.history": 2, - "Backbone.History": 2, - "_.isRegExp": 1, - "this._routeToRegExp": 1, - "Backbone.history.route": 1, - "_.bind": 2, - "this._extractParameters": 1, - "callback.apply": 1, - "navigate": 2, - "triggerRoute": 4, - "Backbone.history.navigate": 1, - "_bindRoutes": 1, - "routes": 4, - "routes.unshift": 1, - "routes.length": 1, - "this.route": 1, - "_routeToRegExp": 1, - "route.replace": 1, - "_extractParameters": 1, - "route.exec": 1, - "this.handlers": 2, - "_.bindAll": 1, - "hashStrip": 4, - "#*": 1, - "isExplorer": 1, - "/msie": 1, - "historyStarted": 3, - "Backbone.History.prototype": 1, - "getFragment": 1, - "forcePushState": 2, - "this._hasPushState": 6, - "window.location.pathname": 1, - "window.location.search": 1, - "fragment.indexOf": 1, - "this.options.root": 6, - "fragment.substr": 1, - "this.options.root.length": 1, - "window.location.hash": 3, - "fragment.replace": 1, - "this._wantsPushState": 3, - "this.options.pushState": 2, - "window.history": 2, - "window.history.pushState": 2, - "this.getFragment": 6, - "docMode": 3, - "document.documentMode": 3, - "oldIE": 3, - "isExplorer.exec": 1, - "navigator.userAgent.toLowerCase": 1, - "this.iframe": 4, - ".contentWindow": 1, - "this.navigate": 2, - ".bind": 3, - "this.checkUrl": 3, - "setInterval": 6, - "this.interval": 1, - "this.fragment": 13, - "loc": 2, - "atRoot": 3, - "loc.pathname": 1, - "loc.hash": 1, - "loc.hash.replace": 1, - "window.history.replaceState": 1, - "document.title": 2, - "loc.protocol": 2, - "loc.host": 2, - "this.loadUrl": 4, - "this.handlers.unshift": 1, - "checkUrl": 1, - "this.iframe.location.hash": 3, - "decodeURIComponent": 2, - "loadUrl": 1, - "fragmentOverride": 2, - "matched": 2, - "_.any": 1, - "handler.route.test": 1, - "handler.callback": 1, - "frag": 13, - "frag.indexOf": 1, - "this.iframe.document.open": 1, - ".close": 1, - "Backbone.View": 1, - "this.cid": 3, - "_.uniqueId": 1, - "this._configure": 1, - "this._ensureElement": 1, - "this.delegateEvents": 1, - "selectorDelegate": 2, - "this.el": 10, - "eventSplitter": 2, - "viewOptions": 2, - "Backbone.View.prototype": 1, - "tagName": 3, - "render": 1, - "el": 4, - ".attr": 1, - ".html": 1, - "delegateEvents": 1, - "this.events": 1, - "key.match": 1, - "_configure": 1, - "viewOptions.length": 1, - "_ensureElement": 1, - "attrs": 6, - "this.attributes": 1, - "this.id": 2, - "attrs.id": 1, - "this.make": 1, - "this.tagName": 1, - "_.isString": 1, - "protoProps": 6, - "classProps": 2, - "inherits": 2, - "child.extend": 1, - "this.extend": 1, - "Backbone.Model.extend": 1, - "Backbone.Collection.extend": 1, - "Backbone.Router.extend": 1, - "Backbone.View.extend": 1, - "methodMap": 2, - "Backbone.sync": 1, - "params": 2, - "params.url": 2, - "getUrl": 2, - "urlError": 2, - "params.data": 5, - "params.contentType": 2, - "model.toJSON": 1, - "Backbone.emulateJSON": 2, - "params.processData": 1, - "Backbone.emulateHTTP": 1, - "params.data._method": 1, - "params.type": 1, - "params.beforeSend": 1, - "xhr": 1, - "xhr.setRequestHeader": 1, - ".ajax": 1, - "staticProps": 3, - "protoProps.hasOwnProperty": 1, - "protoProps.constructor": 1, - "parent.apply": 1, - "child.prototype.constructor": 1, - "object.url": 4, - "_.isFunction": 1, - "wrapError": 1, - "onError": 3, - "resp": 3, - "model.trigger": 1, - "escapeHTML": 1, - "string.replace": 1, - "#x": 1, - "da": 1, - "": 1, - "lt": 55, - "#x27": 1, - "#x2F": 1, - "window.Modernizr": 1, - "Modernizr": 12, - "enableClasses": 3, - "docElement": 1, - "mod": 12, - "modElem": 2, - "mStyle": 2, - "modElem.style": 1, - "inputElem": 6, - "smile": 4, - "prefixes": 2, - "omPrefixes": 1, - "cssomPrefixes": 2, - "omPrefixes.split": 1, - "domPrefixes": 3, - "omPrefixes.toLowerCase": 1, - "ns": 1, - "inputs": 3, - "classes": 1, - "classes.slice": 1, - "featureName": 5, - "testing": 1, - "injectElementWithStyles": 9, - "rule": 5, - "testnames": 3, - "fakeBody": 4, - "node.id": 1, - "div.id": 1, - "fakeBody.appendChild": 1, - "//avoid": 1, - "crashing": 1, - "fakeBody.style.background": 1, - "docElement.appendChild": 2, - "fakeBody.parentNode.removeChild": 1, - "div.parentNode.removeChild": 1, - "testMediaQuery": 2, - "mq": 3, - "matchMedia": 3, - "window.matchMedia": 1, - "window.msMatchMedia": 1, - ".matches": 1, - "bool": 30, - "node.currentStyle": 2, - "isEventSupported": 5, - "TAGNAMES": 2, - "element.setAttribute": 3, - "element.removeAttribute": 2, - "_hasOwnProperty": 2, - "hasOwnProperty": 5, - "_hasOwnProperty.call": 2, - "object.constructor.prototype": 1, - "Function.prototype.bind": 2, - "slice.call": 3, - "F.prototype": 1, - "target.prototype": 1, - "target.apply": 2, - "args.concat": 2, - "setCss": 7, - "str": 4, - "mStyle.cssText": 1, - "setCssAll": 2, - "str1": 6, - "str2": 4, - "prefixes.join": 3, - "substr": 2, - "testProps": 3, - "prefixed": 7, - "testDOMProps": 2, - "item": 4, - "item.bind": 1, - "testPropsAll": 17, - "ucProp": 5, - "prop.charAt": 1, - "prop.substr": 1, - "cssomPrefixes.join": 1, - "elem.getContext": 2, - ".getContext": 8, - ".fillText": 1, - "window.WebGLRenderingContext": 1, - "window.DocumentTouch": 1, - "DocumentTouch": 1, - "node.offsetTop": 1, - "window.postMessage": 1, - "window.openDatabase": 1, - "history.pushState": 1, - "mStyle.backgroundColor": 3, - "mStyle.background": 1, - ".style.textShadow": 1, - "mStyle.opacity": 1, - "str3": 2, - "str1.length": 1, - "mStyle.backgroundImage": 1, - "docElement.style": 1, - "node.offsetLeft": 1, - "node.offsetHeight": 2, - "document.styleSheets": 1, - "document.styleSheets.length": 1, - "cssText": 4, - "style.cssRules": 3, - "style.cssText": 1, - "/src/i.test": 1, - "cssText.indexOf": 1, - "rule.split": 1, - "elem.canPlayType": 10, - "Boolean": 2, - "bool.ogg": 2, - "bool.h264": 1, - "bool.webm": 1, - "bool.mp3": 1, - "bool.wav": 1, - "bool.m4a": 1, - "localStorage.setItem": 1, - "localStorage.removeItem": 1, - "sessionStorage.setItem": 1, - "sessionStorage.removeItem": 1, - "window.Worker": 1, - "window.applicationCache": 1, - "document.createElementNS": 6, - "ns.svg": 4, - ".createSVGRect": 1, - "div.firstChild.namespaceURI": 1, - "/SVGAnimate/.test": 1, - "toString.call": 2, - "/SVGClipPath/.test": 1, - "webforms": 2, - "props.length": 2, - "attrs.list": 2, - "window.HTMLDataListElement": 1, - "inputElemType": 5, - "defaultView": 2, - "inputElem.setAttribute": 1, - "inputElem.type": 1, - "inputElem.value": 2, - "inputElem.style.cssText": 1, - "inputElem.style.WebkitAppearance": 1, - "document.defaultView": 1, - "defaultView.getComputedStyle": 2, - ".WebkitAppearance": 1, - "inputElem.offsetHeight": 1, - "docElement.removeChild": 1, - "inputElem.checkValidity": 2, - "feature": 12, - "feature.toLowerCase": 2, - "classes.push": 1, - "Modernizr.input": 1, - "Modernizr.addTest": 2, - "docElement.className": 2, - "chaining.": 1, - "window.html5": 2, - "reSkip": 1, - "saveClones": 1, - "fieldset": 1, - "h1": 5, - "h2": 5, - "h3": 3, - "h4": 3, - "h5": 1, - "h6": 1, - "img": 1, - "label": 2, - "li": 19, - "ol": 1, - "span": 1, - "strong": 1, - "tfoot": 1, - "th": 1, - "ul": 1, - "supportsHtml5Styles": 5, - "supportsUnknownElements": 3, - "//if": 2, - "implemented": 1, - "assume": 1, - "Styles": 1, - "Chrome": 2, - "additional": 1, - "solve": 1, - "node.hidden": 1, - ".display": 1, - "a.childNodes.length": 1, - "frag.cloneNode": 1, - "frag.createDocumentFragment": 1, - "frag.createElement": 2, - "addStyleSheet": 2, - "ownerDocument.createElement": 3, - "ownerDocument.getElementsByTagName": 1, - "ownerDocument.documentElement": 1, - "p.innerHTML": 1, - "parent.insertBefore": 1, - "p.lastChild": 1, - "parent.firstChild": 1, - "getElements": 2, - "html5.elements": 1, - "elements.split": 1, - "shivMethods": 2, - "docCreateElement": 5, - "docCreateFragment": 2, - "ownerDocument.createDocumentFragment": 2, - "//abort": 1, - "shiv": 1, - "html5.shivMethods": 1, - "saveClones.test": 1, - "node.canHaveChildren": 1, - "reSkip.test": 1, - "frag.appendChild": 1, - "html5": 3, - "shivDocument": 3, - "shived": 5, - "ownerDocument.documentShived": 2, - "html5.shivCSS": 1, - "options.elements": 1, - "options.shivCSS": 1, - "options.shivMethods": 1, - "Modernizr._version": 1, - "Modernizr._prefixes": 1, - "Modernizr._domPrefixes": 1, - "Modernizr._cssomPrefixes": 1, - "Modernizr.mq": 1, - "Modernizr.hasEvent": 1, - "Modernizr.testProp": 1, - "Modernizr.testAllProps": 1, - "Modernizr.testStyles": 1, - "Modernizr.prefixed": 1, - "docElement.className.replace": 1, - "js": 1, - "classes.join": 1, - "this.document": 1, - "window.angular": 1, - "PEG.parser": 1, - "quote": 3, - "result0": 264, - "result1": 81, - "result2": 77, - "parse_singleQuotedCharacter": 3, - "result1.push": 3, - "input.charCodeAt": 18, - "pos": 197, - "reportFailures": 64, - "matchFailed": 40, - "pos1": 63, - "chars": 1, - "chars.join": 1, - "pos0": 51, - "parse_simpleSingleQuotedCharacter": 2, - "parse_simpleEscapeSequence": 3, - "parse_zeroEscapeSequence": 3, - "parse_hexEscapeSequence": 3, - "parse_unicodeEscapeSequence": 3, - "parse_eolEscapeSequence": 3, - "pos2": 22, - "parse_eolChar": 6, - "input.length": 9, - "input.charAt": 21, - "char_": 9, - "parse_class": 1, - "result3": 35, - "result4": 12, - "result5": 4, - "parse_classCharacterRange": 3, - "parse_classCharacter": 5, - "result2.push": 1, - "parse___": 2, - "inverted": 4, - "partsConverted": 2, - "part.data": 1, - "rawText": 5, - "part.rawText": 1, - "ignoreCase": 1, - "begin": 1, - "begin.data.charCodeAt": 1, - "end.data.charCodeAt": 1, - "this.SyntaxError": 2, - "begin.rawText": 2, - "end.rawText": 2, - "begin.data": 1, - "end.data": 1, - "parse_bracketDelimitedCharacter": 2, - "quoteForRegexpClass": 1, - "parse_simpleBracketDelimitedCharacter": 2, - "parse_digit": 3, - "recognize": 1, - "input.substr": 9, - "parse_hexDigit": 7, - "String.fromCharCode": 4, - "parse_eol": 4, - "eol": 2, - "parse_letter": 1, - "parse_lowerCaseLetter": 2, - "parse_upperCaseLetter": 2, - "parse_whitespace": 3, - "parse_comment": 3, - "result0.push": 1, - "parse_singleLineComment": 2, - "parse_multiLineComment": 2, - "u2029": 2, - "x0B": 1, - "uFEFF": 1, - "u1680": 1, - "u180E": 1, - "u2000": 1, - "u200A": 1, - "u202F": 1, - "u205F": 1, - "u3000": 1, - "cleanupExpected": 2, - "expected": 12, - "expected.sort": 1, - "lastExpected": 3, - "cleanExpected": 2, - "expected.length": 4, - "cleanExpected.push": 1, - "computeErrorPosition": 2, - "line": 14, - "column": 8, - "seenCR": 5, - "rightmostFailuresPos": 2, - "parseFunctions": 1, - "startRule": 1, - "errorPosition": 1, - "rightmostFailuresExpected": 1, - "errorPosition.line": 1, - "errorPosition.column": 1, - "toSource": 1, - "this._source": 1, - "result.SyntaxError": 1, - "buildMessage": 2, - "expectedHumanized": 5, - "foundHumanized": 3, - "expected.slice": 1, - "this.expected": 1, - "this.found": 1, - "this.message": 3, - "this.line": 3, - "this.column": 1, - "result.SyntaxError.prototype": 1, - "Error.prototype": 1, + "window": 18, "steelseries": 10, "n.charAt": 1, "n.substring": 1, @@ -31998,6 +29817,7 @@ "n/255": 1, "t/255": 1, "i/255": 1, + "Math.min": 5, "f/r": 1, "/f": 3, "<0?0:n>": 1, @@ -32007,6 +29827,7 @@ "/r": 1, "u*r": 1, "ni": 30, + "document": 26, "tt": 53, "ei": 26, "ot": 43, @@ -32098,6 +29919,7 @@ "ri": 24, "ht": 34, "ef": 5, + "we": 25, "steelseries.TrendState.OFF": 4, "lr": 19, "f*.06": 1, @@ -32106,14 +29928,17 @@ "f*.36": 4, "et": 45, "gi": 26, + "lt": 55, "rr": 21, "*lt": 9, "r.getElementById": 7, + ".getContext": 8, "u.save": 7, "u.clearRect": 5, "u.canvas.width": 7, "u.canvas.height": 7, "s/2": 2, + "it": 112, "k/2": 1, "pf": 4, ".6*s": 1, @@ -32129,6 +29954,7 @@ "rf": 5, "k*.57": 1, "tf": 5, + "ve": 3, "k*.61": 1, "Math.PI/2": 40, "ue": 1, @@ -32184,6 +30010,7 @@ "pi": 24, "kt": 24, "pi.getContext": 2, + "li": 19, "pu": 9, "li.getContext": 6, "gu": 9, @@ -32312,6 +30139,7 @@ "f*.075": 1, "decimals": 1, "wt.decimals": 1, + "digits": 3, "wt.digits": 2, "valueForeColor": 1, "wt.valueForeColor": 1, @@ -32350,6 +30178,7 @@ "gf": 2, "yf.repaint": 1, "ur": 20, + "setInterval": 6, "e3": 5, "this.setValue": 7, "": 5, @@ -32378,6 +30207,7 @@ "this.setTitleString": 4, "this.setUnitString": 4, "this.setMinValue": 4, + "frame": 23, "this.getMinValue": 3, "this.setMaxValue": 3, "this.getMaxValue": 4, @@ -33408,181 +31238,2354 @@ "7fd5f0": 2, "3c4439": 2, "72": 1, - "KEYWORDS": 2, - "array_to_hash": 11, - "RESERVED_WORDS": 2, - "KEYWORDS_BEFORE_EXPRESSION": 2, - "KEYWORDS_ATOM": 2, - "OPERATOR_CHARS": 1, - "RE_HEX_NUMBER": 1, - "RE_OCT_NUMBER": 1, - "RE_DEC_NUMBER": 1, - "OPERATORS": 2, - "WHITESPACE_CHARS": 2, - "PUNC_BEFORE_EXPRESSION": 2, - "PUNC_CHARS": 1, - "REGEXP_MODIFIERS": 1, - "UNICODE": 1, - "non_spacing_mark": 1, - "space_combining_mark": 1, - "connector_punctuation": 1, - "is_letter": 3, - "UNICODE.letter.test": 1, - "is_digit": 3, - "ch.charCodeAt": 1, - "//XXX": 1, - "out": 1, - "means": 1, - "is_alphanumeric_char": 3, - "is_unicode_combining_mark": 2, - "UNICODE.non_spacing_mark.test": 1, - "UNICODE.space_combining_mark.test": 1, - "is_unicode_connector_punctuation": 2, - "UNICODE.connector_punctuation.test": 1, - "is_identifier_start": 2, - "is_identifier_char": 1, - "zero": 2, - "joiner": 2, - "": 1, - "": 1, - "my": 1, - "ECMA": 1, - "PDF": 1, - "parse_js_number": 2, - "RE_HEX_NUMBER.test": 1, - "num.substr": 2, - "RE_OCT_NUMBER.test": 1, - "RE_DEC_NUMBER.test": 1, - "JS_Parse_Error": 2, - "message": 5, - "this.col": 2, - "ex": 3, - "ex.name": 1, - "this.stack": 2, - "ex.stack": 1, - "JS_Parse_Error.prototype.toString": 1, - "js_error": 2, - "is_token": 1, - "token": 5, - "token.type": 1, - "token.value": 1, - "EX_EOF": 3, - "tokenizer": 2, - "TEXT": 1, - "TEXT.replace": 1, - "uFEFF/": 1, - "tokpos": 1, - "tokline": 1, - "tokcol": 1, - "newline_before": 1, - "regex_allowed": 1, - "comments_before": 1, - "peek": 5, - "S.text.charAt": 2, - "S.pos": 4, - "signal_eof": 4, - "S.newline_before": 3, - "S.line": 2, - "S.col": 3, - "eof": 6, - "S.peek": 1, - "what": 2, - "S.text.indexOf": 1, - "start_token": 1, - "S.tokline": 3, - "S.tokcol": 3, - "S.tokpos": 3, - "is_comment": 2, - "S.regex_allowed": 1, - "HOP": 5, - "UNARY_POSTFIX": 1, - "nlb": 1, - "ret.comments_before": 1, - "S.comments_before": 2, - "skip_whitespace": 1, - "read_while": 2, - "pred": 2, - "parse_error": 3, - "read_num": 1, - "prefix": 6, - "has_e": 3, - "after_e": 5, - "has_x": 5, - "has_dot": 3, - "valid": 4, - "read_escaped_char": 1, - "hex_bytes": 3, - "digit": 3, - "read_string": 1, - "with_eof_error": 1, - "comment1": 1, - "Unterminated": 2, - "multiline": 1, - "comment2": 1, - "WARNING": 1, - "***": 1, - "Found": 1, - "warn": 3, - "tok": 1, - "read_name": 1, - "backslash": 2, - "Expecting": 1, - "UnicodeEscapeSequence": 1, - "uXXXX": 1, - "Unicode": 1, - "identifier": 1, - "regular": 1, - "regexp": 5, - "operator": 14, - "punc": 27, - "atom": 5, - "keyword": 11, - "Unexpected": 3, - "void": 1, - "<\",>": 1, - "<=\",>": 1, - "debugger": 2, - "const": 2, - "stat": 1, - "Label": 1, - "without": 1, - "statement": 1, - "defun": 1, - "Name": 1, - "Missing": 1, - "catch/finally": 1, - "blocks": 1, - "unary": 2, - "dot": 2, - "postfix": 1, - "Invalid": 2, - "binary": 1, - "conditional": 1, - "assign": 1, - "assignment": 1, - "seq": 1, - "member": 2, - "array.length": 1, - "Object.prototype.hasOwnProperty.call": 1, - "exports.tokenizer": 1, - "exports.parse": 1, - "parse": 1, - "exports.slice": 1, - "exports.curry": 1, - "curry": 1, - "exports.member": 1, - "exports.array_to_hash": 1, - "exports.PRECEDENCE": 1, - "PRECEDENCE": 1, - "exports.KEYWORDS_ATOM": 1, - "exports.RESERVED_WORDS": 1, - "exports.KEYWORDS": 1, - "exports.ATOMIC_START_TOKEN": 1, - "ATOMIC_START_TOKEN": 1, - "exports.OPERATORS": 1, - "exports.is_alphanumeric_char": 1, - "exports.set_logger": 1, - "logger": 2 + "cubes": 4, + "list": 21, + "math": 4, + "opposite": 6, + "race": 4, + "square": 10, + "__slice": 2, + "root": 5, + "Math.sqrt": 2, + "cube": 2, + "runners": 6, + "winner": 6, + "__slice.call": 2, + "print": 2, + "elvis": 4, + "alert": 11, + "_i": 10, + "_len": 6, + "_results": 6, + "list.length": 5, + "_results.push": 2, + "math.cube": 2, + ".call": 10, + "multiply": 1, + "Animal": 12, + "Horse": 12, + "Snake": 12, + "sam": 4, + "tom": 4, + "__hasProp": 2, + "__extends": 6, + "child": 17, + "key": 85, + "__hasProp.call": 2, + "ctor": 6, + "ctor.prototype": 3, + "parent.prototype": 6, + "child.prototype": 4, + "child.__super__": 3, + "Animal.prototype.move": 2, + "meters": 4, + "Snake.__super__.constructor.apply": 2, + "Snake.prototype.move": 2, + "Snake.__super__.move.call": 2, + "Horse.__super__.constructor.apply": 2, + "Horse.prototype.move": 2, + "Horse.__super__.move.call": 2, + "sam.move": 2, + "tom.move": 2, + "SHEBANG#!node": 2, + "console.log": 3, + "ma": 3, + "c.isReady": 4, + "s.documentElement.doScroll": 2, + "c.ready": 7, + "Qa": 1, + "c.ajax": 1, + "c.globalEval": 1, + "c.isFunction": 9, + "na": 1, + "c.event.handle.apply": 1, + "oa": 1, + "i.live": 1, + "i.live.slice": 1, + "u.length": 3, + "i.origType.replace": 1, + "i.selector": 3, + "u.splice": 1, + ".selector": 1, + ".elem": 1, + "i.preType": 2, + "d.push": 1, + "j.elem": 2, + "j.handleObj.data": 1, + "j.handleObj": 1, + "j.handleObj.origHandler.apply": 1, + "pa": 1, + "qa": 1, + "ra": 1, + "b.each": 1, + "f.events": 1, + "c.event.add": 1, + ".data": 3, + "sa": 2, + "ta.test": 1, + "c.support.checkClone": 2, + "ua.test": 1, + "c.fragments": 2, + "b.createDocumentFragment": 1, + "c.clean": 1, + "c.each": 2, + "va.concat.apply": 1, + "va.slice": 1, + "wa": 1, + "c.fn.init": 1, + "Ra": 2, + "A.jQuery": 3, + "Sa": 2, + "A.": 3, + "A.document": 1, + "Ta": 1, + "Ua": 1, + "Va": 1, + "Wa": 2, + "u00A0": 2, + "Xa": 1, + "navigator.userAgent": 3, + "xa": 3, + "aa": 1, + "ya": 2, + "c.fn": 2, + "c.prototype": 1, + "s.body": 2, + "Ta.exec": 1, + "Xa.exec": 1, + "c.isPlainObject": 3, + "s.createElement": 10, + "c.fn.attr.call": 1, + "f.createElement": 1, + "a.cacheable": 1, + "a.fragment.cloneNode": 1, + "a.fragment": 1, + "c.merge": 4, + "s.getElementById": 1, + "b.id": 1, + "T.find": 1, + "s.getElementsByTagName": 2, + "b.jquery": 1, + "T.ready": 1, + "c.makeArray": 3, + "R.call": 2, + "c.isArray": 5, + "ba.apply": 1, + "f.prevObject": 1, + "f.context": 1, + "f.selector": 2, + "c.bindReady": 1, + "Q.push": 1, + "R.apply": 1, + "c.map": 1, + "c.fn.init.prototype": 1, + "c.extend": 7, + "c.fn.extend": 4, + "c.fn.triggerHandler": 1, + ".triggerHandler": 1, + "s.readyState": 2, + "s.addEventListener": 3, + "A.addEventListener": 1, + "s.attachEvent": 3, + "A.attachEvent": 1, + "A.frameElement": 1, + "a.setInterval": 2, + "aa.call": 3, + "c.trim": 3, + "@": 1, + "A.JSON": 1, + "A.JSON.parse": 2, + "c.error": 2, + "Va.test": 1, + "s.documentElement": 2, + "c.support.scriptEval": 2, + "s.createTextNode": 2, + "d.text": 1, + "b.apply": 2, + "ba.call": 1, + "b.indexOf": 2, + "f.concat.apply": 1, + "b.guid": 2, + "c.guid": 1, + "/.exec": 4, + "/compatible/.test": 1, + "c.uaMatch": 1, + "P.browser": 2, + "c.browser": 1, + "c.browser.version": 1, + "P.version": 1, + "c.browser.webkit": 1, + "c.browser.safari": 1, + "c.inArray": 2, + "ya.call": 1, + "s.removeEventListener": 1, + "s.detachEvent": 1, + "c.support": 2, + "d.innerHTML": 2, + "d.firstChild.nodeType": 1, + "/red/.test": 1, + "j.getAttribute": 2, + "j.style.opacity": 1, + "j.style.cssFloat": 1, + ".value": 1, + ".appendChild": 1, + ".selected": 1, + "d.removeChild": 1, + "checkClone": 1, + "scriptEval": 1, + "boxModel": 1, + "b.appendChild": 1, + "b.test": 1, + "c.support.deleteExpando": 2, + "d.attachEvent": 2, + "d.fireEvent": 1, + "c.support.noCloneEvent": 1, + "d.detachEvent": 1, + "d.cloneNode": 1, + "s.createDocumentFragment": 1, + "k.style.width": 1, + "k.style.paddingLeft": 1, + "s.body.appendChild": 1, + "c.boxModel": 1, + "c.support.boxModel": 1, + "k.offsetWidth": 1, + "s.body.removeChild": 1, + "n.setAttribute": 1, + "c.support.submitBubbles": 1, + "c.support.changeBubbles": 1, + "c.props": 2, + "Ya": 2, + "za": 3, + "c.noData": 2, + "c.cache": 2, + "c.isEmptyObject": 1, + "c.removeData": 2, + "c.expando": 2, + "c.queue": 3, + "d.shift": 2, + "f.call": 1, + "c.dequeue": 4, + "c.fx": 1, + "c.fx.speeds": 1, + "Aa": 3, + "Za": 2, + "/href": 1, + "src": 7, + "style/": 1, + "ab": 1, + "Ba": 3, + "/radio": 1, + "checkbox/": 1, + "this.removeAttribute": 1, + "r.addClass": 1, + "r.attr": 1, + "j.indexOf": 1, + "n.removeClass": 1, + "n.attr": 1, + "j.toggleClass": 1, + "j.attr": 1, + "i.hasClass": 1, + "": 1, + "c.nodeName": 4, + "b.attributes.value": 1, + ".specified": 1, + "b.options": 1, + "": 1, + "checked=": 1, + "this.selected": 1, + "this.selectedIndex": 1, + "c.attrFn": 1, + "c.isXMLDoc": 1, + "ab.test": 1, + ".nodeValue": 1, + "cb.test": 1, + "c.support.style": 1, + "c.support.hrefNormalized": 1, + "c.style": 1, + "db": 1, + "originalTarget": 1, + "click.specialSubmit": 2, + "keypress.specialSubmit": 2, + ".specialSubmit": 2, + "_change_data": 6, + ".specialChange": 4, + "bind": 3, + "one": 15, + "lastToggle": 4, + "die": 3, + "onunload": 1, + "h.nodeType": 4, + "f.exec": 2, + "r.exec": 1, + "n.relative": 5, + "ga": 2, + "p.shift": 4, + "n.match.ID.test": 2, + "v.expr": 4, + "p.pop": 4, + "l.push": 2, + "l.push.apply": 1, + "g.sort": 1, + "g.length": 2, + "k.matches": 1, + "n.order.length": 1, + "n.order": 1, + "n.leftMatch": 1, + "q.splice": 1, + "y.substr": 1, + "y.length": 1, + "g.getAttribute": 1, + "W/.test": 1, + "": 1, + "sourceIndex": 1, + "
": 4, + "
": 3, + "CLASS": 1, + "HTML": 9, + "nextSibling": 3, + "iframe": 3, + "": 1, + "": 1, + "
": 1, + "
": 1, + "": 4, + "
": 5, + "": 3, + "": 3, + "": 2, + "": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "absolute": 2, + "solid": 2, + "#000": 2, + "padding": 4, + "": 1, + "": 1, + "fixed": 1, + "marginTop": 3, + "marginLeft": 2, + "using": 5, + "borderTopWidth": 1, + "borderLeftWidth": 1, + "static": 2, + "Left": 1, + "Top": 1, + "pageXOffset": 2, + "pageYOffset": 1, + "Height": 1, + "Width": 1, + "inner": 2, + "outer": 2, + "scrollTo": 1, + "CSS1Compat": 1, + "client": 3, + "window.document": 2, + "navigator": 3, + "window.navigator": 2, + "location": 2, + "window.location": 5, + "The": 9, + "actually": 2, + "just": 2, + "the": 107, + "jQuery.fn.init": 2, + "rootjQuery": 8, + "Map": 4, + "over": 7, + "overwrite": 4, + "_jQuery": 4, + "window.jQuery": 7, + "window.": 6, + "central": 2, + "reference": 5, + "to": 92, + "simple": 3, + "way": 2, + "check": 8, + "strings": 8, + "both": 2, + "optimize": 3, + "quickExpr": 2, + "Check": 10, + "whitespace": 7, + "rnotwhite": 2, + "Used": 3, + "trimming": 2, + "trimLeft": 4, + "trimRight": 4, + "rdigit": 1, + "standalone": 2, + "tag": 2, + "rsingleTag": 2, + "JSON": 5, + "rvalidchars": 2, + "rvalidescape": 2, + "rvalidbraces": 2, + "Useragent": 2, + "rwebkit": 2, + "ropera": 2, + "rmsie": 2, + "rmozilla": 2, + "Keep": 2, + "UserAgent": 2, + "jQuery.browser": 4, + "userAgent": 3, + "For": 5, + "engine": 2, + "and": 42, + "browserMatch": 3, + "deferred": 25, + "used": 13, + "DOM": 21, + "readyList": 6, + "DOMContentLoaded": 14, + "Save": 2, + "some": 2, + "core": 2, + "methods": 8, + "toString": 4, + "hasOwn": 2, + "Class": 2, + "pairs": 2, + "class2type": 3, + "jQuery.fn": 4, + "jQuery.prototype": 2, + "match": 30, + "doc": 4, + "Handle": 14, + "DOMElement": 2, + "selector.nodeType": 2, + "element": 19, + "exists": 9, + "once": 4, + "finding": 2, + "document.body": 8, + "Are": 2, + "dealing": 2, + "an": 12, + "selector.charAt": 4, + "selector.length": 4, + "Assume": 2, + "that": 33, + "are": 18, + "skip": 5, + "regex": 3, + "quickExpr.exec": 2, + "Verify": 3, + "no": 19, + "was": 6, + "specified": 4, + "#id": 3, + "HANDLE": 2, + "context.ownerDocument": 2, + "single": 2, + "passed": 5, + "method": 30, + "like": 5, + "method.": 3, + "jQuery.fn.init.prototype": 2, + "jQuery.extend": 11, + "jQuery.fn.extend": 4, + "copy": 16, + "copyIsArray": 2, + "deep": 12, + "situation": 2, + "boolean": 8, + "possible": 3, + "jQuery.isFunction": 6, + "itself": 4, + "argument": 2, + "Only": 5, + "deal": 2, + "null/undefined": 2, + "values": 10, + "Extend": 2, + "base": 2, + "Prevent": 2, + "never": 2, + "ending": 2, + "Recurse": 2, + "bring": 2, + "Return": 2, + "modified": 3, + "Is": 2, + "Set": 4, + "occurs.": 2, + "counter": 2, + "track": 2, + "how": 2, + "many": 3, + "items": 2, + "wait": 12, + "fires.": 2, + "See": 9, + "#6781": 2, + "Hold": 2, + "release": 2, + "hold": 6, + "jQuery.readyWait": 6, + "jQuery.ready": 16, + "Either": 2, + "released": 2, + "DOMready/load": 2, + "yet": 2, + "jQuery.isReady": 6, + "Make": 17, + "sure": 18, + "least": 4, + "IE": 28, + "gets": 6, + "little": 4, + "overzealous": 4, + "ticket": 4, + "#5443": 4, + "Remember": 2, + "normal": 2, + "Ready": 2, + "fired": 12, + "decrement": 2, + "need": 10, + "there": 6, + "functions": 6, + "bound": 8, + "execute": 4, + "readyList.resolveWith": 1, + "Trigger": 2, + "any": 12, + "jQuery.fn.trigger": 2, + "jQuery._Deferred": 3, + "Catch": 2, + "cases": 4, + "where": 2, + ".ready": 2, + "called": 2, + "already": 6, + "occurred.": 2, + "document.readyState": 4, + "asynchronously": 2, + "allow": 6, + "scripts": 2, + "opportunity": 2, + "Mozilla": 2, + "Opera": 2, + "nightlies": 3, + "currently": 4, + "document.addEventListener": 6, + "Use": 7, + "handy": 2, + "callback": 23, + "fallback": 4, + "window.onload": 4, + "will": 7, + "work": 6, + "window.addEventListener": 2, + "model": 14, + "document.attachEvent": 6, + "ensure": 2, + "firing": 16, + "onload": 2, + "maybe": 2, + "late": 2, + "but": 4, + "safe": 3, + "iframes": 2, + "window.attachEvent": 2, + "continually": 2, + "see": 6, + "window.frameElement": 2, + "document.documentElement.doScroll": 4, + "doScrollCheck": 6, + "test/unit/core.js": 2, + "details": 3, + "concerning": 2, + "isFunction.": 2, + "aren": 5, + "pass": 7, + "through": 3, + "as": 11, + "well": 2, + "jQuery.type": 4, + "obj.nodeType": 2, + "jQuery.isWindow": 2, + "Not": 4, + "own": 4, + "property": 15, + "must": 4, + "Object": 4, + "obj.constructor": 2, + "hasOwn.call": 6, + "obj.constructor.prototype": 2, + "Own": 2, + "properties": 7, + "enumerated": 2, + "firstly": 2, + "so": 8, + "up": 4, + "all": 16, + "own.": 2, + "msg": 4, + "leading/trailing": 2, + "removed": 3, + "can": 10, + "breaking": 1, + "spaces": 3, + "rnotwhite.test": 2, + "document.removeEventListener": 2, + "document.detachEvent": 2, + "trick": 2, + "Diego": 2, + "Perini": 2, + "//javascript.nwbox.com/IEContentLoaded/": 2, + "waiting": 2, + "Promise": 1, + "promiseMethods": 3, + "Static": 1, + "sliceDeferred": 1, + "Create": 1, + "callbacks": 10, + "stored": 4, + "args": 31, + "avoid": 5, + "doing": 3, + "flag": 1, + "know": 3, + "been": 5, + "cancelled": 5, + "f1": 1, + "f2": 1, + "...": 1, + "_fired": 5, + "args.length": 3, + "deferred.done.apply": 2, + "callbacks.push": 1, + "deferred.resolveWith": 5, + "given": 3, + "make": 2, + "available": 1, + "#8421": 1, + "callbacks.shift": 1, + "Has": 1, + "resolved": 1, + "Cancel": 1, + "Full": 1, + "fledged": 1, + "two": 1, + "func": 3, + "failDeferred": 1, + "Add": 4, + "errorDeferred": 1, + "doneCallbacks": 2, + "failCallbacks": 2, + "deferred.done": 2, + ".fail": 2, + ".fail.apply": 1, + "failDeferred.done": 1, + "failDeferred.resolveWith": 1, + "failDeferred.resolve": 1, + "failDeferred.isResolved": 1, + "fnDone": 2, + "fnFail": 2, + "jQuery.Deferred": 1, + "newDefer": 3, + "jQuery.each": 2, + "action": 3, + "returned": 4, + "fn.apply": 1, + "returned.promise": 2, + "newDefer.resolve": 1, + "newDefer.reject": 1, + "Get": 4, + "provided": 1, + "aspect": 1, + "added": 1, + "promiseMethods.length": 1, + "failDeferred.cancel": 1, + "deferred.cancel": 2, + "Unexpose": 1, + "Call": 1, + "func.call": 1, + "helper": 1, + "firstParam": 6, + "count": 4, + "<=>": 1, + "resolveFunc": 2, + "sliceDeferred.call": 2, + "Strange": 1, + "bug": 3, + "FF4": 1, + "Values": 1, + "changed": 3, + "onto": 2, + "sometimes": 1, + ".when": 1, + "Cloning": 2, + "into": 2, + "fresh": 1, + "solves": 1, + "issue": 1, + "deferred.reject": 1, + "deferred.promise": 1, + "jQuery.support": 1, + "document.createElement": 26, + "document.documentElement": 2, + "opt": 2, + "marginDiv": 5, + "bodyStyle": 1, + "tds": 6, + "eventName": 21, + "isSupported": 7, + "Preliminary": 1, + "tests": 48, + "div.setAttribute": 1, + "div.innerHTML": 7, + "div.getElementsByTagName": 6, + "Can": 2, + "automatically": 2, + "inserted": 1, + "insert": 1, + "them": 3, + "tables": 1, + "link": 2, + "elements": 9, + "serialized": 3, + "correctly": 1, + "innerHTML": 1, + "This": 3, + "requires": 1, + "wrapper": 1, + "information": 5, + "from": 7, + "uses": 3, + ".cssText": 2, + "instead": 6, + "URLs": 1, + "opt.selected": 1, + "Test": 3, + "setAttribute": 1, + "class.": 1, + "works": 1, + "attrFixes": 1, + "get/setAttribute": 1, + "ie6/7": 1, + "div.className": 1, + "Will": 2, + "defined": 3, + "later": 1, + "properly": 2, + "cloned": 1, + "input.checked": 1, + "support.noCloneChecked": 1, + "input.cloneNode": 1, + "selects": 1, + "Fails": 2, + "Internet": 1, + "Explorer": 1, + "div.test": 1, + "support.deleteExpando": 1, + "div.addEventListener": 1, + "div.attachEvent": 2, + "div.fireEvent": 1, + "node": 23, + "shouldn": 2, + "being": 2, + "appended": 2, + "input.value": 5, + "input.setAttribute": 5, + "support.radioValue": 2, + "div.appendChild": 4, + "document.createDocumentFragment": 3, + "fragment.appendChild": 2, + "div.firstChild": 3, + "WebKit": 9, + "doesn": 2, + "GC": 2, + "references": 1, + "across": 1, + "JS": 7, + "boundary": 1, + "isNode": 11, + "elem.nodeType": 8, + "nodes": 14, + "attached": 1, + "directly": 2, + "occur": 1, + "jQuery.cache": 3, + "defining": 1, + "objects": 7, + "its": 2, + "allows": 1, + "code": 2, + "shortcut": 1, + "same": 1, + "path": 5, + "jQuery.expando": 12, + "Avoid": 1, + "more": 6, + "trying": 1, + "pvt": 8, + "internalKey": 12, + "getByName": 3, + "unique": 2, + "since": 1, + "their": 3, + "ends": 1, + "jQuery.uuid": 1, + "TODO": 2, + "hack": 2, + "ONLY.": 2, + "Avoids": 2, + "exposing": 2, + "metadata": 2, + "plain": 2, + "JSON.stringify": 5, + "jQuery.noop": 2, + "An": 1, + "jQuery.data": 15, + "key/value": 1, + "pair": 1, + "shallow": 1, + "copied": 1, + "existing": 1, + "thisCache": 15, + "Internal": 1, + "separate": 1, + "destroy": 1, + "unless": 2, + "internal": 8, + "had": 1, + "thing": 2, + "isEmptyDataObject": 3, + "internalCache": 3, + "Browsers": 1, + "deletion": 1, + "refuse": 1, + "expandos": 2, + "other": 3, + "browsers": 2, + "don": 5, + "faster": 1, + "iterating": 1, + "persist": 1, + "existed": 1, + "Otherwise": 2, + "eliminate": 2, + "lookups": 2, + "entries": 2, + "longer": 2, + "exist": 2, + "does": 9, + "us": 2, + "nor": 2, + "have": 6, + "removeAttribute": 3, + "Document": 2, + "these": 2, + "jQuery.support.deleteExpando": 3, + "elem.removeAttribute": 6, + "only.": 2, + "determining": 3, + "elem.nodeName": 2, + "jQuery.noData": 2, + "elem.nodeName.toLowerCase": 2, + "elem.getAttribute": 7, + "attr.length": 2, + "name.indexOf": 2, + "jQuery.camelCase": 6, + "name.substring": 2, + "dataAttr": 6, + "parts": 28, + "key.split": 2, + "Try": 4, + "fetch": 4, + "internally": 5, + "jQuery.removeData": 2, + "nothing": 2, + "found": 10, + "HTML5": 3, + "attribute": 5, + "key.replace": 2, + "rmultiDash": 3, + "jQuery.isNaN": 1, + "rbrace.test": 2, + "jQuery.parseJSON": 2, + "isn": 2, + "option.selected": 2, + "jQuery.support.optDisabled": 2, + "option.disabled": 2, + "option.getAttribute": 2, + "option.parentNode.disabled": 2, + "jQuery.nodeName": 3, + "option.parentNode": 2, + "specific": 2, + "We": 6, + "get/set": 2, + "attributes": 14, + "nType": 8, + "jQuery.attrFn": 2, + "Fallback": 2, + "supported": 2, + "jQuery.prop": 2, + "hooks": 14, + "notxml": 8, + "jQuery.isXMLDoc": 2, + "Normalize": 1, + "needed": 2, + "jQuery.attrFix": 2, + "jQuery.attrHooks": 2, + "boolHook": 3, + "rboolean.test": 4, + "value.toLowerCase": 2, + "name.toLowerCase": 6, + "formHook": 3, + "forms": 1, + "certain": 2, + "rinvalidChar.test": 1, + "jQuery.removeAttr": 2, + "hooks.set": 2, + "elem.setAttribute": 2, + "hooks.get": 2, + "Non": 3, + "existent": 2, + "normalize": 2, + "propName": 8, + "jQuery.support.getSetAttribute": 1, + "jQuery.attr": 2, + "elem.removeAttributeNode": 1, + "elem.getAttributeNode": 1, + "corresponding": 2, + "jQuery.propFix": 2, + "readOnly": 2, + "htmlFor": 2, + "maxLength": 2, + "cellSpacing": 2, + "cellPadding": 2, + "rowSpan": 2, + "colSpan": 2, + "useMap": 2, + "frameBorder": 2, + "contentEditable": 2, + "bubbling": 1, + "live.": 2, + "hasDuplicate": 1, + "baseHasDuplicate": 2, + "rBackslash": 1, + "rNonWord": 1, + "Sizzle": 1, + "results": 4, + "seed": 1, + "origContext": 1, + "context.nodeType": 2, + "checkSet": 1, + "extra": 1, + "pop": 1, + "prune": 1, + "contextXML": 1, + "Sizzle.isXML": 1, + "soFar": 1, + "Reset": 1, + "Prioritize": 1, + "": 1, + "XSS": 1, + "via": 2, + "location.hash": 1, + "#9521": 1, + "Matches": 1, + "dashed": 1, + "camelizing": 1, + "rdashAlpha": 1, + "rmsPrefix": 1, + "fcamelCase": 1, + ".toUpperCase": 3, + "readyList.fireWith": 1, + ".off": 1, + "jQuery.Callbacks": 2, + "IE8": 2, + "exceptions": 2, + "host": 29, + "#9897": 1, + "elems": 9, + "chainable": 4, + "emptyGet": 3, + "bulk": 3, + "elems.length": 1, + "Sets": 3, + "jQuery.access": 2, + "Optionally": 1, + "executed": 1, + "Bulk": 1, + "operations": 1, + "iterate": 1, + "executing": 1, + "exec.call": 1, + "they": 2, + "run": 1, + "against": 1, + "entire": 1, + "fn.call": 2, + "value.call": 1, + "Gets": 2, + "frowned": 1, + "upon.": 1, + "More": 1, + "//docs.jquery.com/Utilities/jQuery.browser": 1, + "ua": 6, + "ua.toLowerCase": 1, + "rwebkit.exec": 1, + "ropera.exec": 1, + "rmsie.exec": 1, + "ua.indexOf": 1, + "rmozilla.exec": 1, + "jQuerySub": 7, + "jQuerySub.fn.init": 2, + "jQuerySub.superclass": 1, + "jQuerySub.fn": 2, + "jQuerySub.prototype": 1, + "jQuerySub.fn.constructor": 1, + "jQuerySub.sub": 1, + "jQuery.fn.init.call": 1, + "rootjQuerySub": 2, + "jQuerySub.fn.init.prototype": 1, + "jQuery.uaMatch": 1, + "browserMatch.browser": 2, + "jQuery.browser.version": 1, + "browserMatch.version": 1, + "jQuery.browser.webkit": 1, + "jQuery.browser.safari": 1, + "flagsCache": 3, + "createFlags": 2, + "flags": 13, + "flags.split": 1, + "flags.length": 1, + "Convert": 1, + "formatted": 2, + "Actual": 2, + "Stack": 1, + "fire": 4, + "calls": 1, + "repeatable": 1, + "lists": 2, + "stack": 2, + "Last": 2, + "forgettable": 1, + "memory": 8, + "Flag": 2, + "First": 3, + "fireWith": 1, + "firingStart": 3, + "End": 1, + "firingLength": 4, + "Index": 1, + "firingIndex": 5, + "several": 1, + "actual": 1, + "Inspect": 1, + "recursively": 1, + "mode": 1, + "flags.unique": 1, + "self.has": 1, + "list.push": 1, + "Fire": 1, + "flags.memory": 1, + "flags.stopOnFalse": 1, + "Mark": 1, + "halted": 1, + "flags.once": 1, + "stack.length": 1, + "stack.shift": 1, + "self.fireWith": 1, + "self.disable": 1, + "Callbacks": 1, + "self": 17, + "collection": 3, + "Do": 2, + "current": 7, + "batch": 2, + "With": 1, + "/a": 1, + ".55": 1, + "basic": 1, + "all.length": 1, + "supports": 2, + "select.appendChild": 1, + "strips": 1, + "leading": 1, + "div.firstChild.nodeType": 1, + "manipulated": 1, + "normalizes": 1, + "around": 1, + "issue.": 1, + "#5145": 1, + "existence": 1, + "styleFloat": 1, + "a.style.cssFloat": 1, + "defaults": 3, + "working": 1, + "property.": 1, + "too": 1, + "marked": 1, + "marks": 1, + "select.disabled": 1, + "support.optDisabled": 1, + "opt.disabled": 1, + "handlers": 1, + "support.noCloneEvent": 1, + "div.cloneNode": 1, + "maintains": 1, + "#11217": 1, + "loses": 1, + "div.lastChild": 1, + "conMarginTop": 3, + "paddingMarginBorder": 5, + "positionTopLeftWidthHeight": 3, + "paddingMarginBorderVisibility": 3, + "container": 4, + "container.style.cssText": 1, + "body.insertBefore": 1, + "body.firstChild": 1, + "Construct": 1, + "container.appendChild": 1, + "cells": 3, + "still": 4, + "offsetWidth/Height": 3, + "visible": 1, + "row": 1, + "reliable": 1, + "offsets": 1, + "safety": 1, + "goggles": 1, + "#4512": 1, + "fails": 2, + "support.reliableHiddenOffsets": 1, + "explicit": 1, + "right": 3, + "incorrectly": 1, + "computed": 1, + "based": 1, + "container.": 1, + "info": 2, + "#3333": 1, + "Feb": 1, + "Bug": 1, + "getComputedStyle": 3, + "returns": 1, + "wrong": 1, + "window.getComputedStyle": 6, + "marginDiv.style.width": 1, + "marginDiv.style.marginRight": 1, + "div.style.width": 2, + "support.reliableMarginRight": 1, + "div.style.zoom": 2, + "natively": 1, + "act": 1, + "setting": 2, + "giving": 1, + "layout": 2, + "div.style.padding": 1, + "div.style.border": 1, + "div.style.overflow": 2, + "div.style.display": 2, + "support.inlineBlockNeedsLayout": 1, + "div.offsetWidth": 2, + "shrink": 1, + "support.shrinkWrapBlocks": 1, + "div.style.cssText": 1, + "outer.firstChild": 1, + "outer.nextSibling.firstChild.firstChild": 1, + "offsetSupport": 2, + "doesNotAddBorder": 1, + "inner.offsetTop": 4, + "doesAddBorderForTableAndCells": 1, + "td.offsetTop": 1, + "inner.style.position": 2, + "inner.style.top": 2, + "safari": 1, + "subtracts": 1, + "here": 1, + "offsetSupport.fixedPosition": 1, + "outer.style.overflow": 1, + "outer.style.position": 1, + "offsetSupport.subtractsBorderForOverflowNotVisible": 1, + "offsetSupport.doesNotIncludeMarginInBodyOffset": 1, + "body.offsetTop": 1, + "div.style.marginTop": 1, + "support.pixelMargin": 1, + ".marginTop": 1, + "container.style.zoom": 2, + "body.removeChild": 1, + "rbrace": 1, + "Please": 1, + "caution": 1, + "Unique": 1, + "page": 1, + "rinlinejQuery": 1, + "jQuery.fn.jquery": 1, + "following": 1, + "uncatchable": 1, + "you": 1, + "attempt": 2, + "them.": 1, + "Ban": 1, + "except": 1, + "Flash": 1, + "jQuery.acceptData": 2, + "privateCache": 1, + "differently": 1, + "because": 1, + "IE6": 1, + "order": 1, + "collisions": 1, + "between": 1, + "user": 1, + "data.": 1, + "thisCache.data": 3, + "Users": 1, + "should": 1, + "inspect": 1, + "undocumented": 1, + "subject": 1, + "change.": 1, + "But": 1, + "anyone": 1, + "listen": 1, + "No.": 1, + "isEvents": 1, + "privateCache.events": 1, + "converted": 2, + "camel": 2, + "names": 2, + "camelCased": 1, + "Reference": 1, + "entry": 1, + "purpose": 1, + "continuing": 1, + "Support": 1, + "space": 1, + "separated": 1, + "keys": 11, + "jQuery.isArray": 1, + "manipulation": 1, + "cased": 1, + "name.split": 1, + "name.length": 1, + "want": 1, + "let": 1, + "destroyed": 2, + "jQuery.isEmptyObject": 1, + "Don": 1, + "care": 1, + "Ensure": 1, + "#10080": 1, + "cache.setInterval": 1, + "part": 8, + "jQuery._data": 2, + "elem.attributes": 1, + "self.triggerHandler": 2, + "jQuery.isNumeric": 1, + "All": 1, + "lowercase": 1, + "Grab": 1, + "necessary": 1, + "hook": 1, + "nodeHook": 1, + "attrNames": 3, + "isBool": 4, + "rspace": 1, + "attrNames.length": 1, + "#9699": 1, + "explanation": 1, + "approach": 1, + "removal": 1, + "#10870": 1, + "encoding": 26, + "**": 1, + "timeStamp": 1, + "buttons": 1, + "hanaMath": 1, + ".import": 1, + ".request.parameters.get": 2, + "hanaMath.multiply": 1, + "output": 2, + "title": 1, + ".response.contentType": 1, + ".response.statusCode": 1, + ".net.http.OK": 1, + ".response.setBody": 1, + "require": 9, + "http.createServer": 1, + "req": 32, + "res": 14, + "res.writeHead": 1, + "res.end": 1, + ".listen": 1, + ".hasOwnProperty": 2, + "Animal.name": 1, + "_super": 4, + "Snake.name": 1, + "Horse.name": 1, + "Date.prototype.toJSON": 2, + "isFinite": 1, + "this.valueOf": 2, + "this.getUTCFullYear": 1, + "this.getUTCMonth": 1, + "this.getUTCDate": 1, + "this.getUTCHours": 1, + "this.getUTCMinutes": 1, + "this.getUTCSeconds": 1, + "String.prototype.toJSON": 1, + "Number.prototype.toJSON": 1, + "Boolean.prototype.toJSON": 1, + "u0000": 1, + "u00ad": 1, + "u0600": 1, + "u0604": 1, + "u070f": 1, + "u17b4": 1, + "u17b5": 1, + "u200c": 1, + "u200f": 1, + "u202f": 1, + "u2060": 1, + "u206f": 1, + "ufeff": 1, + "ufff0": 1, + "uffff": 1, + "escapable": 1, + "/bfnrt": 1, + "fA": 2, + "JSON.parse": 1, + "PUT": 1, + "DELETE": 1, + "_id": 1, + "ties": 1, + "collection.": 1, + "_removeReference": 1, + "model.collection": 2, + "model.unbind": 1, + "this._onModelEvent": 1, + "_onModelEvent": 1, + "ev": 5, + "this._remove": 1, + "model.idAttribute": 2, + "this._byId": 2, + "model.previous": 1, + "model.id": 1, + "this.trigger.apply": 2, + "_.each": 1, + "Backbone.Collection.prototype": 1, + "this.models": 1, + "_.toArray": 1, + "Backbone.Router": 1, + "options.routes": 2, + "this.routes": 4, + "this._bindRoutes": 1, + "this.initialize.apply": 2, + "namedParam": 2, + "splatParam": 2, + "escapeRegExp": 2, + "_.extend": 9, + "Backbone.Router.prototype": 1, + "Backbone.Events": 2, + "route": 18, + "Backbone.history": 2, + "Backbone.History": 2, + "_.isRegExp": 1, + "this._routeToRegExp": 1, + "Backbone.history.route": 1, + "_.bind": 2, + "this._extractParameters": 1, + "callback.apply": 1, + "navigate": 2, + "triggerRoute": 4, + "Backbone.history.navigate": 1, + "_bindRoutes": 1, + "routes": 4, + "routes.unshift": 1, + "routes.length": 1, + "this.route": 1, + "_routeToRegExp": 1, + "route.replace": 1, + "_extractParameters": 1, + "route.exec": 1, + "this.handlers": 2, + "_.bindAll": 1, + "hashStrip": 4, + "#*": 1, + "isExplorer": 1, + "/msie": 1, + "historyStarted": 3, + "Backbone.History.prototype": 1, + "getFragment": 1, + "forcePushState": 2, + "this._hasPushState": 6, + "window.location.pathname": 1, + "window.location.search": 1, + "fragment.indexOf": 1, + "this.options.root": 6, + "fragment.substr": 1, + "this.options.root.length": 1, + "window.location.hash": 3, + "fragment.replace": 1, + "this.options": 6, + "this._wantsPushState": 3, + "this.options.pushState": 2, + "window.history": 2, + "window.history.pushState": 2, + "this.getFragment": 6, + "docMode": 3, + "document.documentMode": 3, + "oldIE": 3, + "isExplorer.exec": 1, + "navigator.userAgent.toLowerCase": 1, + "this.iframe": 4, + ".contentWindow": 1, + "this.navigate": 2, + ".bind": 3, + "this.checkUrl": 3, + "this.interval": 1, + "this.fragment": 13, + "loc": 2, + "atRoot": 3, + "loc.pathname": 1, + "loc.hash": 1, + "loc.hash.replace": 1, + "window.history.replaceState": 1, + "document.title": 2, + "loc.protocol": 2, + "loc.host": 2, + "this.loadUrl": 4, + "this.handlers.unshift": 1, + "checkUrl": 1, + "this.iframe.location.hash": 3, + "decodeURIComponent": 2, + "loadUrl": 1, + "fragmentOverride": 2, + "matched": 2, + "_.any": 1, + "handler.route.test": 1, + "handler.callback": 1, + "frag": 13, + "frag.indexOf": 1, + "this.iframe.document.open": 1, + ".close": 1, + "Backbone.View": 1, + "this.cid": 3, + "_.uniqueId": 1, + "this._configure": 1, + "this._ensureElement": 1, + "this.delegateEvents": 1, + "selectorDelegate": 2, + "this.el": 10, + "eventSplitter": 2, + "viewOptions": 2, + "Backbone.View.prototype": 1, + "tagName": 3, + "render": 1, + "content": 5, + "el": 4, + ".attr": 1, + ".html": 1, + "delegateEvents": 1, + "this.events": 1, + "key.match": 1, + ".delegate": 2, + "_configure": 1, + "viewOptions.length": 1, + "_ensureElement": 1, + "attrs": 6, + "this.attributes": 1, + "this.id": 2, + "attrs.id": 1, + "this.make": 1, + "this.tagName": 1, + "_.isString": 1, + "protoProps": 6, + "classProps": 2, + "inherits": 2, + "child.extend": 1, + "this.extend": 1, + "Backbone.Model.extend": 1, + "Backbone.Collection.extend": 1, + "Backbone.Router.extend": 1, + "Backbone.View.extend": 1, + "methodMap": 2, + "Backbone.sync": 1, + "params": 2, + "params.url": 2, + "getUrl": 2, + "urlError": 2, + "params.data": 5, + "params.contentType": 2, + "model.toJSON": 1, + "Backbone.emulateJSON": 2, + "params.processData": 1, + "Backbone.emulateHTTP": 1, + "params.data._method": 1, + "params.type": 1, + "params.beforeSend": 1, + "xhr": 1, + "xhr.setRequestHeader": 1, + ".ajax": 1, + "staticProps": 3, + "protoProps.hasOwnProperty": 1, + "protoProps.constructor": 1, + "parent.apply": 1, + "child.prototype.constructor": 1, + "object.url": 4, + "_.isFunction": 1, + "wrapError": 1, + "onError": 3, + "resp": 3, + "model.trigger": 1, + "escapeHTML": 1, + "string.replace": 1, + "#x": 1, + "da": 1, + "": 1, + "#x27": 1, + "#x2F": 1, + "jshint": 1, + "Modal": 2, + "this.": 2, + ".proxy": 1, + "this.hide": 1, + "Modal.prototype": 1, + "this.isShown": 3, + ".Event": 1, + "element.trigger": 1, + ".addClass": 1, + "escape.call": 1, + "backdrop.call": 1, + "transition": 1, + ".support.transition": 1, + "that.": 3, + "element.hasClass": 1, + "element.parent": 1, + "element.appendTo": 1, + "//don": 1, + "shown": 2, + "modal": 4, + "fade": 4, + "keyup.dismiss.modal": 2, + "click.modal.data": 1, + "api": 1, + ".extend": 1, + "target.data": 1, + "e.preventDefault": 1, + "target.modal": 1, + "PEG.parser": 1, + "result0": 264, + "result1": 81, + "result2": 77, + "parse_singleQuotedCharacter": 3, + "result1.push": 3, + "input.charCodeAt": 18, + "reportFailures": 64, + "matchFailed": 40, + "pos1": 63, + "chars": 1, + "chars.join": 1, + "pos0": 51, + "parse_simpleSingleQuotedCharacter": 2, + "parse_simpleEscapeSequence": 3, + "parse_zeroEscapeSequence": 3, + "parse_hexEscapeSequence": 3, + "parse_unicodeEscapeSequence": 3, + "parse_eolEscapeSequence": 3, + "pos2": 22, + "parse_eolChar": 6, + "input.length": 9, + "input.charAt": 21, + "char_": 9, + "parse_class": 1, + "result3": 35, + "result4": 12, + "result5": 4, + "parse_classCharacterRange": 3, + "parse_classCharacter": 5, + "result2.push": 1, + "parse___": 2, + "inverted": 4, + "partsConverted": 2, + "part.data": 1, + "rawText": 5, + "part.rawText": 1, + "ignoreCase": 1, + "begin": 1, + "begin.data.charCodeAt": 1, + "end.data.charCodeAt": 1, + "this.SyntaxError": 2, + "begin.rawText": 2, + "end.rawText": 2, + "begin.data": 1, + "end.data": 1, + "parse_bracketDelimitedCharacter": 2, + "quoteForRegexpClass": 1, + "parse_simpleBracketDelimitedCharacter": 2, + "parse_digit": 3, + "recognize": 1, + "input.substr": 9, + "parse_hexDigit": 7, + "h1": 5, + "h2": 5, + "h3": 3, + "h4": 3, + "parse_eol": 4, + "eol": 2, + "parse_letter": 1, + "parse_lowerCaseLetter": 2, + "parse_upperCaseLetter": 2, + "parse_whitespace": 3, + "parse_comment": 3, + "result0.push": 1, + "parse_singleLineComment": 2, + "parse_multiLineComment": 2, + "x0B": 1, + "uFEFF": 1, + "u1680": 1, + "u180E": 1, + "u2000": 1, + "u200A": 1, + "u202F": 1, + "u205F": 1, + "u3000": 1, + "cleanupExpected": 2, + "expected.sort": 1, + "lastExpected": 3, + "cleanExpected": 2, + "expected.length": 4, + "cleanExpected.push": 1, + "computeErrorPosition": 2, + "column": 8, + "seenCR": 5, + "rightmostFailuresPos": 2, + "parseFunctions": 1, + "startRule": 1, + "errorPosition": 1, + "rightmostFailuresExpected": 1, + "errorPosition.line": 1, + "errorPosition.column": 1, + "toSource": 1, + "this._source": 1, + "result.SyntaxError": 1, + "buildMessage": 2, + "expectedHumanized": 5, + "foundHumanized": 3, + "expected.slice": 1, + "this.expected": 1, + "this.found": 1, + "this.column": 1, + "result.SyntaxError.prototype": 1, + "Error.prototype": 1, + "window.angular": 1, + "window.Modernizr": 1, + "Modernizr": 12, + "enableClasses": 3, + "docElement": 1, + "mod": 12, + "modElem": 2, + "mStyle": 2, + "modElem.style": 1, + "inputElem": 6, + "smile": 4, + ".toString": 3, + "prefixes": 2, + "omPrefixes": 1, + "cssomPrefixes": 2, + "omPrefixes.split": 1, + "domPrefixes": 3, + "omPrefixes.toLowerCase": 1, + "ns": 1, + "inputs": 3, + "classes": 1, + "classes.slice": 1, + "featureName": 5, + "testing": 1, + "injectElementWithStyles": 9, + "rule": 5, + "testnames": 3, + "fakeBody": 4, + "node.id": 1, + "div.id": 1, + "fakeBody.appendChild": 1, + "//avoid": 1, + "crashing": 1, + "fakeBody.style.background": 1, + "docElement.appendChild": 2, + "fakeBody.parentNode.removeChild": 1, + "div.parentNode.removeChild": 1, + "testMediaQuery": 2, + "mq": 3, + "matchMedia": 3, + "window.matchMedia": 1, + "window.msMatchMedia": 1, + ".matches": 1, + "bool": 30, + "node.currentStyle": 2, + "isEventSupported": 5, + "TAGNAMES": 2, + "element.setAttribute": 3, + "element.removeAttribute": 2, + "_hasOwnProperty": 2, + "hasOwnProperty": 5, + "_hasOwnProperty.call": 2, + "object.constructor.prototype": 1, + "Function.prototype.bind": 2, + "TypeError": 2, + "slice.call": 3, + "F.prototype": 1, + "target.prototype": 1, + "target.apply": 2, + "args.concat": 2, + "setCss": 7, + "str": 4, + "mStyle.cssText": 1, + "setCssAll": 2, + "str1": 6, + "str2": 4, + "prefixes.join": 3, + "substr": 2, + ".indexOf": 2, + "testProps": 3, + "prefixed": 7, + "testDOMProps": 2, + "item": 4, + "item.bind": 1, + "testPropsAll": 17, + "ucProp": 5, + "prop.charAt": 1, + "prop.substr": 1, + "cssomPrefixes.join": 1, + "elem.getContext": 2, + ".fillText": 1, + "window.WebGLRenderingContext": 1, + "window.DocumentTouch": 1, + "DocumentTouch": 1, + "node.offsetTop": 1, + "window.postMessage": 1, + "window.openDatabase": 1, + "history.pushState": 1, + "mStyle.backgroundColor": 3, + "mStyle.background": 1, + ".style.textShadow": 1, + "mStyle.opacity": 1, + "str3": 2, + "str1.length": 1, + "mStyle.backgroundImage": 1, + "docElement.style": 1, + "node.offsetLeft": 1, + "node.offsetHeight": 2, + "document.styleSheets": 1, + "document.styleSheets.length": 1, + "cssText": 4, + "style.cssRules": 3, + "style.cssText": 1, + "/src/i.test": 1, + "cssText.indexOf": 1, + "rule.split": 1, + "elem.canPlayType": 10, + "Boolean": 2, + "bool.ogg": 2, + "bool.h264": 1, + "bool.webm": 1, + "bool.mp3": 1, + "bool.wav": 1, + "bool.m4a": 1, + "localStorage.setItem": 1, + "localStorage.removeItem": 1, + "sessionStorage.setItem": 1, + "sessionStorage.removeItem": 1, + "window.Worker": 1, + "window.applicationCache": 1, + "document.createElementNS": 6, + "ns.svg": 4, + ".createSVGRect": 1, + "div.firstChild.namespaceURI": 1, + "/SVGAnimate/.test": 1, + "toString.call": 2, + "/SVGClipPath/.test": 1, + "webforms": 2, + "len": 11, + "props.length": 2, + "attrs.list": 2, + "window.HTMLDataListElement": 1, + "inputElemType": 5, + "defaultView": 2, + "inputElem.setAttribute": 1, + "inputElem.type": 1, + "inputElem.value": 2, + "inputElem.style.cssText": 1, + "inputElem.style.WebkitAppearance": 1, + "document.defaultView": 1, + "defaultView.getComputedStyle": 2, + ".WebkitAppearance": 1, + "inputElem.offsetHeight": 1, + "docElement.removeChild": 1, + "inputElem.checkValidity": 2, + "feature": 12, + "feature.toLowerCase": 2, + "classes.push": 1, + "Modernizr.input": 1, + "Modernizr.addTest": 2, + "docElement.className": 2, + "chaining.": 1, + "window.html5": 2, + "reSkip": 1, + "saveClones": 1, + "fieldset": 1, + "h5": 1, + "h6": 1, + "img": 1, + "ol": 1, + "span": 1, + "strong": 1, + "tfoot": 1, + "th": 1, + "ul": 1, + "supportsHtml5Styles": 5, + "supportsUnknownElements": 3, + "//if": 2, + "implemented": 1, + "assume": 1, + "Styles": 1, + "Chrome": 2, + "additional": 1, + "solve": 1, + "node.hidden": 1, + ".display": 1, + "a.childNodes.length": 1, + "frag.cloneNode": 1, + "frag.createDocumentFragment": 1, + "frag.createElement": 2, + "addStyleSheet": 2, + "ownerDocument.createElement": 3, + "ownerDocument.getElementsByTagName": 1, + "ownerDocument.documentElement": 1, + "p.innerHTML": 1, + "parent.insertBefore": 1, + "p.lastChild": 1, + "parent.firstChild": 1, + "getElements": 2, + "html5.elements": 1, + "elements.split": 1, + "shivMethods": 2, + "docCreateElement": 5, + "docCreateFragment": 2, + "ownerDocument.createDocumentFragment": 2, + "//abort": 1, + "shiv": 1, + "html5.shivMethods": 1, + "saveClones.test": 1, + "node.canHaveChildren": 1, + "reSkip.test": 1, + "frag.appendChild": 1, + "html5": 3, + "shivDocument": 3, + "shived": 5, + "ownerDocument.documentShived": 2, + "html5.shivCSS": 1, + "options.elements": 1, + "options.shivCSS": 1, + "options.shivMethods": 1, + "Modernizr._version": 1, + "Modernizr._prefixes": 1, + "Modernizr._domPrefixes": 1, + "Modernizr._cssomPrefixes": 1, + "Modernizr.mq": 1, + "Modernizr.hasEvent": 1, + "Modernizr.testProp": 1, + "Modernizr.testAllProps": 1, + "Modernizr.testStyles": 1, + "Modernizr.prefixed": 1, + "docElement.className.replace": 1, + "js": 1, + "classes.join": 1, + "this.document": 1, + "util": 1, + "net": 1, + "stream": 1, + "EventEmitter": 3, + ".EventEmitter": 1, + "FreeList": 2, + ".FreeList": 1, + "HTTPParser": 2, + "process.binding": 1, + ".HTTPParser": 1, + "assert": 8, + ".ok": 1, + "END_OF_FILE": 3, + "debug": 15, + "process.env.NODE_DEBUG": 2, + "/http/.test": 1, + "console.error": 3, + "parserOnHeaders": 2, + "this.maxHeaderPairs": 2, + "this._headers.length": 1, + "this._headers": 13, + "this._headers.concat": 1, + "this._url": 1, + "parserOnHeadersComplete": 2, + "parser": 27, + "info.headers": 1, + "info.url": 1, + "parser._headers": 6, + "parser._url": 4, + "parser.incoming": 9, + "IncomingMessage": 4, + "parser.socket": 4, + "parser.incoming.httpVersionMajor": 1, + "info.versionMajor": 2, + "parser.incoming.httpVersionMinor": 1, + "info.versionMinor": 2, + "parser.incoming.httpVersion": 1, + "parser.incoming.url": 1, + "headers.length": 2, + "parser.maxHeaderPairs": 4, + "parser.incoming._addHeaderLine": 2, + "info.method": 2, + "parser.incoming.method": 1, + "parser.incoming.statusCode": 2, + "info.statusCode": 1, + "parser.incoming.upgrade": 4, + "info.upgrade": 2, + "skipBody": 3, + "response": 3, + "CONNECT": 1, + "parser.onIncoming": 3, + "info.shouldKeepAlive": 1, + "parserOnBody": 2, + "b.slice": 1, + "parser.incoming._paused": 2, + "parser.incoming._pendings.length": 2, + "parser.incoming._pendings.push": 2, + "parser.incoming._emitData": 1, + "parserOnMessageComplete": 2, + "parser.incoming.complete": 2, + "parser.incoming.readable": 1, + "parser.incoming._emitEnd": 1, + "parser.socket.readable": 1, + "parser.socket.resume": 1, + "parsers": 2, + "HTTPParser.REQUEST": 2, + "parser.onHeaders": 1, + "parser.onHeadersComplete": 1, + "parser.onBody": 1, + "parser.onMessageComplete": 1, + "exports.parsers": 1, + "CRLF": 13, + "STATUS_CODES": 2, + "exports.STATUS_CODES": 1, + "RFC": 16, + "obsoleted": 1, + "connectionExpression": 1, + "/Connection/i": 1, + "transferEncodingExpression": 1, + "/Transfer": 1, + "Encoding/i": 1, + "closeExpression": 1, + "/close/i": 1, + "chunkExpression": 1, + "/chunk/i": 1, + "contentLengthExpression": 1, + "/Content": 1, + "Length/i": 1, + "dateExpression": 1, + "/Date/i": 1, + "expectExpression": 1, + "/Expect/i": 1, + "continueExpression": 1, + "continue/i": 1, + "dateCache": 5, + "utcDate": 2, + "d.toUTCString": 1, + "d.getMilliseconds": 1, + "socket": 26, + "stream.Stream.call": 2, + "this.socket": 10, + "this.connection": 8, + "this.httpVersion": 1, + "this.complete": 2, + "this.headers": 2, + "this.trailers": 2, + "this.readable": 1, + "this._paused": 3, + "this._pendings": 1, + "this._endEmitted": 3, + "this.url": 1, + "this.method": 2, + "this.statusCode": 3, + "this.client": 1, + "util.inherits": 7, + "stream.Stream": 2, + "exports.IncomingMessage": 1, + "IncomingMessage.prototype.destroy": 1, + "this.socket.destroy": 3, + "IncomingMessage.prototype.setEncoding": 1, + "StringDecoder": 2, + ".StringDecoder": 1, + "lazy": 1, + "this._decoder": 2, + "IncomingMessage.prototype.pause": 1, + "this.socket.pause": 1, + "IncomingMessage.prototype.resume": 1, + "this.socket.resume": 1, + "this._emitPending": 1, + "IncomingMessage.prototype._emitPending": 1, + "this._pendings.length": 1, + "process.nextTick": 1, + "self._paused": 1, + "self._pendings.length": 2, + "chunk": 14, + "self._pendings.shift": 1, + "Buffer.isBuffer": 2, + "self._emitData": 1, + "self.readable": 1, + "self._emitEnd": 1, + "IncomingMessage.prototype._emitData": 1, + "this._decoder.write": 1, + "string.length": 1, + "this.emit": 5, + "IncomingMessage.prototype._emitEnd": 1, + "IncomingMessage.prototype._addHeaderLine": 1, + "field": 36, + "dest": 12, + "field.toLowerCase": 1, + ".push": 3, + "field.slice": 1, + "OutgoingMessage": 5, + "this.output": 3, + "this.outputEncodings": 2, + "this.writable": 1, + "this._last": 3, + "this.chunkedEncoding": 6, + "this.shouldKeepAlive": 4, + "this.useChunkedEncodingByDefault": 4, + "this.sendDate": 3, + "this._hasBody": 6, + "this._trailer": 5, + "this.finished": 4, + "exports.OutgoingMessage": 1, + "OutgoingMessage.prototype.destroy": 1, + "OutgoingMessage.prototype._send": 1, + "this._headerSent": 5, + "this._header": 10, + "this.output.unshift": 1, + "this.outputEncodings.unshift": 1, + "this._writeRaw": 2, + "OutgoingMessage.prototype._writeRaw": 1, + "data.length": 3, + "this.connection._httpMessage": 3, + "this.connection.writable": 3, + "this.output.length": 5, + "this._buffer": 2, + "this.output.shift": 2, + "this.outputEncodings.shift": 2, + "this.connection.write": 4, + "OutgoingMessage.prototype._buffer": 1, + "this.output.push": 2, + "this.outputEncodings.push": 2, + "lastEncoding": 2, + "lastData": 2, + "data.constructor": 1, + "lastData.constructor": 1, + "OutgoingMessage.prototype._storeHeader": 1, + "firstLine": 2, + "sentConnectionHeader": 3, + "sentContentLengthHeader": 4, + "sentTransferEncodingHeader": 3, + "sentDateHeader": 3, + "sentExpect": 3, + "messageHeader": 7, + "store": 3, + "connectionExpression.test": 1, + "closeExpression.test": 1, + "self._last": 4, + "self.shouldKeepAlive": 4, + "transferEncodingExpression.test": 1, + "chunkExpression.test": 1, + "self.chunkedEncoding": 1, + "contentLengthExpression.test": 1, + "dateExpression.test": 1, + "expectExpression.test": 1, + "Object.keys": 5, + "keys.length": 5, + "value.length": 1, + "shouldSendKeepAlive": 2, + "this.agent": 2, + "this._send": 8, + "OutgoingMessage.prototype.setHeader": 1, + "this._headerNames": 5, + "OutgoingMessage.prototype.getHeader": 1, + "OutgoingMessage.prototype.removeHeader": 1, + "OutgoingMessage.prototype._renderHeaders": 1, + "OutgoingMessage.prototype.write": 1, + "this._implicitHeader": 2, + "chunk.length": 2, + "Buffer.byteLength": 2, + "len.toString": 2, + "OutgoingMessage.prototype.addTrailers": 1, + "OutgoingMessage.prototype.end": 1, + "hot": 3, + "this.write": 1, + "chunk.": 1, + "this._finish": 2, + "OutgoingMessage.prototype._finish": 1, + "ServerResponse": 5, + "DTRACE_HTTP_SERVER_RESPONSE": 1, + "ClientRequest": 6, + "DTRACE_HTTP_CLIENT_REQUEST": 1, + "OutgoingMessage.prototype._flush": 1, + "this.socket.writable": 2, + "XXX": 1, + "Necessary": 1, + "this.socket.write": 1, + "OutgoingMessage.call": 2, + "req.method": 5, + "req.httpVersionMajor": 2, + "req.httpVersionMinor": 2, + "exports.ServerResponse": 1, + "ServerResponse.prototype.statusCode": 1, + "onServerResponseClose": 3, + "this._httpMessage.emit": 2, + "ServerResponse.prototype.assignSocket": 1, + "socket._httpMessage": 9, + "socket.on": 2, + "this._flush": 1, + "ServerResponse.prototype.detachSocket": 1, + "socket.removeListener": 5, + "ServerResponse.prototype.writeContinue": 1, + "this._sent100": 2, + "ServerResponse.prototype._implicitHeader": 1, + "this.writeHead": 1, + "ServerResponse.prototype.writeHead": 1, + "statusCode": 7, + "reasonPhrase": 4, + "headerIndex": 4, + "this._renderHeaders": 3, + "obj.length": 1, + "obj.push": 1, + "statusLine": 2, + "statusCode.toString": 1, + "this._expect_continue": 1, + "this._storeHeader": 2, + "ServerResponse.prototype.writeHeader": 1, + "this.writeHead.apply": 1, + "Agent": 5, + "self.options": 2, + "self.requests": 6, + "self.sockets": 3, + "self.maxSockets": 1, + "self.options.maxSockets": 1, + "Agent.defaultMaxSockets": 2, + "self.on": 1, + "port": 29, + "localAddress": 15, + ".shift": 1, + ".onSocket": 1, + "socket.destroy": 10, + "self.createConnection": 2, + "net.createConnection": 3, + "exports.Agent": 1, + "Agent.prototype.defaultPort": 1, + "Agent.prototype.addRequest": 1, + "this.sockets": 9, + "this.maxSockets": 1, + "req.onSocket": 1, + "this.createSocket": 2, + "this.requests": 5, + "Agent.prototype.createSocket": 1, + "util._extend": 1, + "options.port": 4, + "options.host": 4, + "options.localAddress": 3, + "onFree": 3, + "self.emit": 9, + "s.on": 4, + "onClose": 3, + "self.removeSocket": 2, + "onRemove": 3, + "s.removeListener": 3, + "Agent.prototype.removeSocket": 1, + ".emit": 1, + "globalAgent": 3, + "exports.globalAgent": 1, + "self.agent": 3, + "options.agent": 3, + "defaultPort": 3, + "options.defaultPort": 1, + "options.hostname": 1, + "options.setHost": 1, + "setHost": 2, + "self.socketPath": 4, + "options.socketPath": 1, + "self.method": 3, + "options.method": 2, + "self.path": 3, + "options.path": 2, + "self.once": 2, + "options.headers": 7, + "self.setHeader": 1, + "this.getHeader": 2, + "hostHeader": 3, + "this.setHeader": 2, + "options.auth": 2, + "//basic": 1, + "auth": 1, + "Buffer": 1, + "self.useChunkedEncodingByDefault": 2, + "self._storeHeader": 2, + "self.getHeader": 1, + "self._renderHeaders": 1, + "options.createConnection": 4, + "self.onSocket": 3, + "self.agent.addRequest": 1, + "conn": 3, + "self._deferToConnect": 1, + "self._flush": 1, + "exports.ClientRequest": 1, + "ClientRequest.prototype._implicitHeader": 1, + "this.path": 1, + "ClientRequest.prototype.abort": 1, + "this._deferToConnect": 3, + "createHangUpError": 3, + "error.code": 1, + "freeParser": 9, + "parser.socket.onend": 1, + "parser.socket.ondata": 1, + "parser.socket.parser": 1, + "parsers.free": 1, + "req.parser": 1, + "socketCloseListener": 2, + "socket.parser": 3, + "req.emit": 8, + "req.res": 8, + "req.res.readable": 1, + "req.res.emit": 1, + "req.res._emitPending": 1, + "res._emitEnd": 1, + "res.emit": 1, + "req._hadError": 3, + "parser.finish": 6, + "socketErrorListener": 2, + "err.message": 1, + "err.stack": 1, + "socketOnEnd": 1, + "this._httpMessage": 3, + "this.parser": 2, + "socketOnData": 1, + "parser.execute": 2, + "bytesParsed": 4, + "socket.ondata": 3, + "socket.onend": 3, + "bodyHead": 4, + "d.slice": 2, + "req.listeners": 1, + "req.upgradeOrConnect": 1, + "socket.emit": 1, + "parserOnIncomingClient": 1, + "shouldKeepAlive": 4, + "res.upgrade": 1, + "isHeadResponse": 2, + "res.statusCode": 1, + "Clear": 1, + "upgraded": 1, + "WebSockets": 1, + "AGENT": 2, + "socket.destroySoon": 2, + "keep": 1, + "alive": 1, + "close": 2, + "free": 1, + "important": 1, + "promisy": 1, + "onSocket": 3, + "self.socket.writable": 1, + "self.socket": 5, + "arguments_": 2, + "self.socket.once": 1, + "ClientRequest.prototype.setTimeout": 1, + "msecs": 4, + "this.once": 2, + "emitTimeout": 4, + "this.socket.setTimeout": 1, + "this.socket.once": 1, + "this.setTimeout": 3, + "sock": 1, + "ClientRequest.prototype.setNoDelay": 1, + "ClientRequest.prototype.setSocketKeepAlive": 1, + "ClientRequest.prototype.clearTimeout": 1, + "exports.request": 2, + "url.parse": 1, + "options.protocol": 3, + "exports.get": 1, + "req.end": 1, + "ondrain": 3, + "httpSocketSetup": 2, + "Server": 6, + "requestListener": 6, + "net.Server.call": 1, + "allowHalfOpen": 1, + "this.addListener": 2, + "this.httpAllowHalfOpen": 1, + "connectionListener": 3, + "net.Server": 1, + "exports.Server": 1, + "exports.createServer": 1, + "outgoing": 2, + "incoming": 2, + "abortIncoming": 3, + "incoming.length": 2, + "incoming.shift": 2, + "serverSocketCloseListener": 3, + "socket.setTimeout": 1, + "minute": 1, + "socket.once": 1, + "parsers.alloc": 1, + "parser.reinitialize": 1, + "this.maxHeadersCount": 2, + "socket.addListener": 2, + "self.listeners": 2, + "req.socket": 1, + "self.httpAllowHalfOpen": 1, + "socket.writable": 2, + "socket.end": 2, + "outgoing.length": 2, + "._last": 1, + "socket._httpMessage._last": 1, + "incoming.push": 1, + "res.shouldKeepAlive": 1, + "DTRACE_HTTP_SERVER_REQUEST": 1, + "outgoing.push": 1, + "res.assignSocket": 1, + "res.on": 1, + "res.detachSocket": 1, + "res._last": 1, + "outgoing.shift": 1, + "m.assignSocket": 1, + "req.headers": 2, + "continueExpression.test": 1, + "res._expect_continue": 1, + "res.writeContinue": 1, + "response.": 1, + "exports._connectionListener": 1, + "Client": 6, + "this.host": 1, + "this.port": 1, + "maxSockets": 1, + "Client.prototype.request": 1, + "self.host": 1, + "self.port": 1, + "c.on": 2, + "exports.Client": 1, + "module.deprecate": 2, + "exports.createClient": 1, + "angular": 1, + "Array.prototype.last": 1, + "angular.module": 1 }, "Julia": { "##": 5, @@ -33901,96 +33904,18 @@ "cond": 1, "/": 1, "integer": 2, - "*": 6, - "Mode": 1, - "LFE": 4, - "Code": 1, - "Paradigms": 1, - "Artificial": 1, - "Intelligence": 1, - "Programming": 1, - "Peter": 1, - "Norvig": 1, - "gps1.lisp": 1, - "First": 1, - "version": 1, - "GPS": 1, - "General": 1, - "Problem": 1, - "Solver": 1, - "Converted": 1, "Robert": 3, "Virding": 3, - "Define": 1, - "macros": 1, - "global": 2, - "variable": 2, - "access.": 1, - "This": 2, - "hack": 1, - "very": 1, - "naughty": 1, - "defsyntax": 2, - "defvar": 2, - "[": 3, - "name": 8, - "val": 2, - "]": 3, - "let": 6, - "v": 3, - "put": 1, - "getvar": 3, - "solved": 1, - "gps": 1, - "state": 4, - "goals": 2, - "Set": 1, - "variables": 1, - "but": 1, - "existing": 1, - "*ops*": 1, - "*state*": 5, - "current": 1, - "list": 13, - "conditions.": 1, - "if": 1, - "every": 1, - "fun": 1, - "achieve": 1, - "op": 8, - "action": 3, - "setvar": 2, - "set": 1, - "difference": 1, - "del": 5, - "union": 1, - "add": 3, - "drive": 1, - "son": 2, - "school": 2, - "preconds": 4, - "shop": 6, - "installs": 1, - "battery": 1, - "car": 1, - "works": 1, - "make": 2, - "communication": 2, - "telephone": 1, - "have": 3, - "phone": 1, - "book": 1, - "give": 1, - "money": 3, - "has": 1, "mnesia_demo.lfe": 1, "A": 1, "simple": 4, "Mnesia": 2, "demo": 2, "LFE.": 1, + "This": 2, "contains": 1, "using": 1, + "LFE": 4, "access": 1, "tables.": 1, "It": 1, @@ -34017,6 +33942,7 @@ "by_place_qlc": 2, "defrecord": 1, "person": 8, + "name": 8, "place": 7, "job": 3, "Start": 1, @@ -34031,10 +33957,13 @@ "attributes": 1, "Initialise": 1, "table.": 1, + "let": 6, "people": 1, "spec": 1, + "[": 3, "p": 2, "j": 2, + "]": 3, "when": 1, "tuple": 1, "transaction": 2, @@ -34055,15 +33984,19 @@ "demonstrated": 1, "do": 2, "following": 2, + "*": 6, "objects": 2, "call": 2, "methods": 5, "those": 1, + "have": 3, "which": 1, "can": 1, "other": 1, "update": 1, + "state": 4, "instance": 2, + "variable": 2, "Note": 1, "however": 1, "that": 1, @@ -34097,6 +34030,7 @@ "necessary.": 1, "When": 1, "isn": 1, + "list": 13, "children": 10, "formatted": 1, "verb": 2, @@ -34107,264 +34041,82 @@ "method": 7, "define": 1, "info": 1, - "reproduce": 1 + "reproduce": 1, + "Mode": 1, + "Code": 1, + "Paradigms": 1, + "Artificial": 1, + "Intelligence": 1, + "Programming": 1, + "Peter": 1, + "Norvig": 1, + "gps1.lisp": 1, + "First": 1, + "version": 1, + "GPS": 1, + "General": 1, + "Problem": 1, + "Solver": 1, + "Converted": 1, + "Define": 1, + "macros": 1, + "global": 2, + "access.": 1, + "hack": 1, + "very": 1, + "naughty": 1, + "defsyntax": 2, + "defvar": 2, + "val": 2, + "v": 3, + "put": 1, + "getvar": 3, + "solved": 1, + "gps": 1, + "goals": 2, + "Set": 1, + "variables": 1, + "but": 1, + "existing": 1, + "*ops*": 1, + "*state*": 5, + "current": 1, + "conditions.": 1, + "if": 1, + "every": 1, + "fun": 1, + "achieve": 1, + "op": 8, + "action": 3, + "setvar": 2, + "set": 1, + "difference": 1, + "del": 5, + "union": 1, + "add": 3, + "drive": 1, + "son": 2, + "school": 2, + "preconds": 4, + "shop": 6, + "installs": 1, + "battery": 1, + "car": 1, + "works": 1, + "make": 2, + "communication": 2, + "telephone": 1, + "phone": 1, + "book": 1, + "give": 1, + "money": 3, + "has": 1 }, "Lasso": { - "<": 7, - "LassoScript": 1, - "//": 169, - "JSON": 2, - "Encoding": 1, - "and": 52, - "Decoding": 1, - "Copyright": 1, - "-": 2248, - "LassoSoft": 1, - "Inc.": 1, - "": 1, - "": 1, - "": 1, - "This": 5, - "tag": 11, - "is": 35, - "now": 23, - "incorporated": 1, - "in": 46, - "Lasso": 15, - "If": 4, - "(": 640, - "Lasso_TagExists": 1, - ")": 639, - "False": 1, - ";": 573, - "Define_Tag": 1, - "Namespace": 1, - "Required": 1, - "Optional": 1, - "Local": 7, - "Map": 3, - "r": 8, - "n": 30, - "t": 8, - "f": 2, - "b": 2, - "output": 30, - "newoptions": 1, - "options": 2, - "array": 20, - "set": 10, - "list": 4, - "queue": 2, - "priorityqueue": 2, - "stack": 2, - "pair": 1, - "map": 23, "[": 22, "]": 23, - "literal": 3, - "string": 59, - "integer": 30, - "decimal": 5, - "boolean": 4, - "null": 26, - "date": 23, - "temp": 12, - "object": 7, - "{": 18, - "}": 18, - "client_ip": 1, - "client_address": 1, - "__jsonclass__": 6, - "deserialize": 2, - "": 3, - "": 3, - "Decode_JSON": 2, - "Decode_": 1, - "value": 14, - "consume_string": 1, - "ibytes": 9, - "unescapes": 1, - "u": 1, - "UTF": 4, - "%": 14, - "QT": 4, - "TZ": 2, - "T": 3, - "consume_token": 1, - "obytes": 3, - "delimit": 7, - "true": 12, - "false": 8, - ".": 5, - "consume_array": 1, - "consume_object": 1, - "key": 3, - "val": 1, - "native": 2, - "comment": 2, - "http": 6, - "//www.lassosoft.com/json": 1, - "start": 5, - "Literal": 2, - "String": 1, - "Object": 2, - "JSON_RPCCall": 1, - "RPCCall": 1, - "JSON_": 1, - "method": 7, - "params": 11, - "id": 7, - "host": 6, - "//localhost/lassoapps.8/rpc/rpc.lasso": 1, - "request": 2, - "result": 6, - "JSON_Records": 3, - "KeyField": 1, - "ReturnField": 1, - "ExcludeField": 1, - "Fields": 1, - "_fields": 1, - "fields": 2, - "No": 1, - "found": 5, - "for": 65, - "_keyfield": 4, - "keyfield": 4, - "ID": 1, - "_index": 1, - "_return": 1, - "returnfield": 1, - "_exclude": 1, - "excludefield": 1, - "_records": 1, - "_record": 1, - "_temp": 1, - "_field": 1, - "_output": 1, - "error_msg": 15, - "error_code": 11, - "found_count": 11, - "rows": 1, - "#_records": 1, - "Return": 7, - "@#_output": 1, - "/Define_Tag": 1, - "/If": 3, - "define": 20, - "trait_json_serialize": 2, - "trait": 1, - "require": 1, - "asString": 3, - "json_serialize": 18, - "e": 13, - "bytes": 8, - "+": 146, - "#e": 13, - "Replace": 19, - "&": 21, - "json_literal": 1, - "asstring": 4, - "format": 7, - "gmt": 1, - "|": 13, - "trait_forEach": 1, - "local": 116, - "foreach": 1, - "#output": 50, - "#delimit": 7, - "#1": 3, - "return": 75, - "with": 25, - "pr": 1, - "eachPair": 1, - "select": 1, - "#pr": 2, - "first": 12, - "second": 8, - "join": 5, - "json_object": 2, - "foreachpair": 1, - "any": 14, - "serialize": 1, - "json_consume_string": 3, - "while": 9, - "#temp": 19, - "#ibytes": 17, - "export8bits": 6, - "#obytes": 5, - "import8bits": 4, - "Escape": 1, - "/while": 7, - "unescape": 1, - "//Replace": 1, - "if": 76, - "BeginsWith": 1, - "&&": 30, - "EndsWith": 1, - "Protect": 1, - "serialization_reader": 1, - "xml": 1, - "read": 1, - "/Protect": 1, - "else": 32, - "size": 24, - "or": 6, - "regexp": 1, - "d": 2, - "Z": 1, - "matches": 1, - "Format": 1, - "yyyyMMdd": 2, - "HHmmssZ": 1, - "HHmmss": 1, - "/if": 53, - "json_consume_token": 2, - "marker": 4, - "Is": 1, - "also": 5, - "end": 2, - "of": 24, - "token": 1, - "//............................................................................": 2, - "string_IsNumeric": 1, - "json_consume_array": 3, - "While": 1, - "Discard": 1, - "whitespace": 3, - "Else": 7, - "insert": 18, - "#key": 12, - "json_consume_object": 2, - "Loop_Abort": 1, - "/While": 1, - "Find": 3, - "isa": 25, - "First": 4, - "find": 57, - "Second": 1, - "json_deserialize": 1, - "removeLeading": 1, - "bom_utf8": 1, - "Reset": 1, - "on": 1, - "provided": 1, - "**/": 1, - "type": 63, - "parent": 5, - "public": 1, - "onCreate": 1, - "...": 3, - "..onCreate": 1, - "#rest": 1, - "json_rpccall": 1, - "#id": 2, - "#host": 4, - "Lasso_UniqueID": 1, - "Include_URL": 1, - "PostParams": 1, - "Encode_JSON": 1, - "#method": 1, - "#params": 5, + "//": 169, + "-": 2248, "": 6, "2009": 14, "09": 10, @@ -34372,7 +34124,10 @@ "JS": 126, "Added": 40, "content_body": 14, + "tag": 11, + "for": 65, "compatibility": 4, + "with": 25, "pre": 4, "8": 6, "5": 4, @@ -34381,13 +34136,16 @@ "timestamp": 4, "to": 98, "knop_cachestore": 4, + "and": 52, "maxage": 2, "parameter": 8, "knop_cachefetch": 4, "Corrected": 8, "construction": 2, + "of": 24, "cache_name": 2, "internally": 2, + "in": 46, "the": 86, "knop_cache": 2, "tags": 14, @@ -34407,6 +34165,7 @@ "be": 38, "able": 14, "transparently": 2, + "or": 6, "without": 4, "L": 2, "Debug": 2, @@ -34416,7 +34175,10 @@ "28": 2, "Cache": 2, "name": 32, + "is": 35, + "now": 23, "used": 12, + "also": 5, "when": 10, "using": 8, "session": 4, @@ -34430,10 +34192,14 @@ "condition": 4, "returning": 2, "normal": 2, + "found_count": 11, "For": 2, + "Lasso": 15, + "if": 76, "lasso_tagexists": 4, "define_tag": 48, "namespace=": 12, + "return": 75, "__html_reply__": 4, "define_type": 14, "debug": 2, @@ -34443,8 +34209,15 @@ "description=": 2, "priority=": 2, "required=": 2, + "local": 116, + "output": 30, + "string": 59, "input": 2, "split": 2, + "(": 640, + ")": 639, + "first": 12, + ";": 573, "@#output": 2, "/define_tag": 36, "description": 34, @@ -34453,12 +34226,17 @@ "Johan": 2, "S": 2, "lve": 2, + "integer": 30, "#charlist": 6, + "size": 24, + "start": 5, "current": 10, + "date": 23, "time": 8, "a": 52, "mixed": 2, "up": 4, + "format": 7, "as": 26, "seed": 6, "#seed": 36, @@ -34466,9 +34244,14 @@ "this": 14, "base": 6, "conversion": 4, + "while": 9, + "#output": 50, "get": 12, + "%": 14, "#base": 8, + "+": 146, "/": 6, + "/while": 7, "over": 2, "new": 14, "chunk": 2, @@ -34480,17 +34263,22 @@ "response_localpath": 8, "removetrailing": 8, "response_filepath": 8, + "http": 6, "//tagswap.net/found_rows": 2, "action_statement": 2, "string_findregexp": 8, "#sql": 42, + "find": 57, "ignorecase": 12, "||": 8, + "<": 7, "maxrecords_value": 2, "inaccurate": 2, "must": 4, "accurate": 2, + "/if": 53, "Default": 2, + "method": 7, "usually": 2, "fastest.": 2, "Can": 2, @@ -34498,7 +34286,9 @@ "GROUP": 4, "BY": 6, "example.": 2, + "First": 4, "normalize": 4, + "whitespace": 3, "around": 2, "FROM": 2, "expression": 6, @@ -34518,6 +34308,7 @@ "can": 14, "simple": 2, "later": 2, + "else": 32, "query": 4, "contains": 2, "use": 10, @@ -34527,6 +34318,7 @@ "slower": 2, "see": 16, "//bugs.mysql.com/bug.php": 2, + "id": 7, "removeleading": 2, "inline": 4, "sql": 2, @@ -34539,6 +34331,7 @@ "optional": 36, "local_defined": 26, "knop_seed": 2, + "Local": 7, "#RandChars": 4, "Get": 2, "Math_Random": 2, @@ -34546,7 +34339,9 @@ "Max": 2, "Size": 2, "#value": 14, + "join": 5, "#numericValue": 4, + "&&": 30, "length": 8, "#cryptvalue": 10, "#anyChar": 2, @@ -34560,7 +34355,9 @@ "self": 72, "_date_msec": 4, "/define_type": 4, + "type": 63, "seconds": 4, + "map": 23, "default": 4, "store": 4, "all": 6, @@ -34571,8 +34368,10 @@ "keys": 6, "var": 38, "#item": 10, + "isa": 25, "#type": 26, "#data": 14, + "insert": 18, "/iterate": 12, "//fail_if": 6, "session_id": 6, @@ -34580,6 +34379,7 @@ "session_addvar": 4, "#cache_name": 72, "duration": 4, + "second": 8, "#expires": 4, "server_name": 6, "initiate": 10, @@ -34598,6 +34398,7 @@ "cache": 4, "unlock": 6, "writeunlock": 4, + "null": 26, "#maxage": 4, "cached": 8, "data": 12, @@ -34606,6 +34407,9 @@ "reading": 2, "readlock": 2, "readunlock": 2, + "value": 14, + "true": 12, + "false": 8, "ignored": 2, "//##################################################################": 4, "knoptype": 2, @@ -34615,6 +34419,8 @@ "types": 10, "should": 4, "have": 6, + "parent": 5, + "This": 5, "identify": 2, "registered": 2, "knop": 6, @@ -34643,6 +34449,7 @@ "adjustments": 4, "9": 2, "Changed": 6, + "error_msg": 15, "error": 22, "numbers": 2, "added": 10, @@ -34661,8 +34468,10 @@ "error_lang": 2, "provide": 2, "knop_lang": 8, + "object": 7, "add": 12, "localized": 2, + "any": 14, "except": 2, "knop_base": 8, "html": 4, @@ -34672,6 +34481,7 @@ "formatted": 2, "output.": 2, "Centralized": 2, + "error_code": 11, "knop_base.": 2, "Moved": 6, "codes": 2, @@ -34680,6 +34490,7 @@ "It": 2, "always": 2, "an": 8, + "list": 4, "parameter.": 2, "trace": 2, "tagtime": 4, @@ -34698,6 +34509,7 @@ "exists": 2, "buffer.": 2, "The": 6, + "result": 6, "performance.": 2, "internal": 2, "html.": 2, @@ -34722,6 +34534,7 @@ "handler": 2, "explicitly": 2, "*/": 2, + "array": 20, "entire": 4, "ms": 2, "defined": 4, @@ -34730,13 +34543,18 @@ "avoid": 2, "recursion": 2, "properties": 4, + "params": 11, + "|": 13, "#endslash": 10, "#tags": 2, "#t": 2, "doesn": 4, + "t": 8, "p": 2, + "n": 30, "Parameters": 4, "nParameters": 2, + "r": 8, "Internal.": 2, "Finds": 2, "out": 2, @@ -34746,7 +34564,9 @@ "array.": 2, "variable.": 2, "Looking": 2, + "#params": 5, "#xhtmlparam": 4, + "boolean": 4, "plain": 2, "#doctype": 4, "copy": 4, @@ -34766,11 +34586,13 @@ "#custom_language": 10, "once": 4, "one": 2, + "key": 3, "#custom_string": 4, "#errorcodes": 4, "#error_code": 10, "message": 6, "getstring": 2, + "literal": 3, "test": 2, "known": 2, "lasso": 2, @@ -34799,6 +34621,7 @@ "10": 2, "SP": 4, "Fix": 2, + "decimal": 5, "precision": 2, "bug": 2, "6": 2, @@ -34808,6 +34631,7 @@ "15": 2, "Add": 2, "support": 6, + "host": 6, "Thanks": 2, "Ric": 2, "Lewis": 2, @@ -34881,6 +34705,7 @@ "paren...": 2, "corresponding": 2, "resultset": 2, + "...": 3, "/resultset": 2, "through": 2, "handling": 2, @@ -34900,6 +34725,8 @@ "recordpointer": 2, "called": 2, "until": 2, + "found": 5, + "set": 10, "reached.": 2, "Returns": 2, "long": 2, @@ -34911,6 +34738,7 @@ "example": 2, "below": 2, "Implemented": 2, + ".": 5, "reset": 2, "query.": 2, "shortcut": 2, @@ -34932,6 +34760,7 @@ "SQL": 2, "includes": 2, "relevant": 2, + "keyfield": 4, "lockfield": 2, "locking": 4, "capturesearchvars": 2, @@ -34971,114 +34800,192 @@ "proper": 2, "searchresult": 2, "separate": 2, - "COUNT": 2 + "COUNT": 2, + "LassoScript": 1, + "JSON": 2, + "Encoding": 1, + "Decoding": 1, + "Copyright": 1, + "LassoSoft": 1, + "Inc.": 1, + "": 1, + "": 1, + "": 1, + "incorporated": 1, + "If": 4, + "Lasso_TagExists": 1, + "False": 1, + "Define_Tag": 1, + "Namespace": 1, + "Required": 1, + "Optional": 1, + "Map": 3, + "f": 2, + "b": 2, + "newoptions": 1, + "options": 2, + "queue": 2, + "priorityqueue": 2, + "stack": 2, + "pair": 1, + "temp": 12, + "{": 18, + "}": 18, + "client_ip": 1, + "client_address": 1, + "__jsonclass__": 6, + "deserialize": 2, + "": 3, + "": 3, + "Decode_JSON": 2, + "Decode_": 1, + "consume_string": 1, + "ibytes": 9, + "unescapes": 1, + "u": 1, + "UTF": 4, + "QT": 4, + "TZ": 2, + "T": 3, + "consume_token": 1, + "obytes": 3, + "delimit": 7, + "consume_array": 1, + "consume_object": 1, + "val": 1, + "native": 2, + "comment": 2, + "//www.lassosoft.com/json": 1, + "Literal": 2, + "String": 1, + "Object": 2, + "JSON_RPCCall": 1, + "RPCCall": 1, + "JSON_": 1, + "//localhost/lassoapps.8/rpc/rpc.lasso": 1, + "request": 2, + "JSON_Records": 3, + "KeyField": 1, + "ReturnField": 1, + "ExcludeField": 1, + "Fields": 1, + "_fields": 1, + "fields": 2, + "No": 1, + "_keyfield": 4, + "ID": 1, + "_index": 1, + "_return": 1, + "returnfield": 1, + "_exclude": 1, + "excludefield": 1, + "_records": 1, + "_record": 1, + "_temp": 1, + "_field": 1, + "_output": 1, + "rows": 1, + "#_records": 1, + "Return": 7, + "@#_output": 1, + "/Define_Tag": 1, + "/If": 3, + "define": 20, + "trait_json_serialize": 2, + "trait": 1, + "require": 1, + "asString": 3, + "json_serialize": 18, + "e": 13, + "bytes": 8, + "#e": 13, + "Replace": 19, + "&": 21, + "json_literal": 1, + "asstring": 4, + "gmt": 1, + "trait_forEach": 1, + "foreach": 1, + "#delimit": 7, + "#1": 3, + "pr": 1, + "eachPair": 1, + "select": 1, + "#pr": 2, + "json_object": 2, + "foreachpair": 1, + "serialize": 1, + "json_consume_string": 3, + "#temp": 19, + "#ibytes": 17, + "export8bits": 6, + "#obytes": 5, + "import8bits": 4, + "Escape": 1, + "unescape": 1, + "//Replace": 1, + "BeginsWith": 1, + "EndsWith": 1, + "Protect": 1, + "serialization_reader": 1, + "xml": 1, + "read": 1, + "/Protect": 1, + "regexp": 1, + "d": 2, + "Z": 1, + "matches": 1, + "Format": 1, + "yyyyMMdd": 2, + "HHmmssZ": 1, + "HHmmss": 1, + "json_consume_token": 2, + "marker": 4, + "Is": 1, + "end": 2, + "token": 1, + "//............................................................................": 2, + "string_IsNumeric": 1, + "json_consume_array": 3, + "While": 1, + "Discard": 1, + "Else": 7, + "#key": 12, + "json_consume_object": 2, + "Loop_Abort": 1, + "/While": 1, + "Find": 3, + "Second": 1, + "json_deserialize": 1, + "removeLeading": 1, + "bom_utf8": 1, + "Reset": 1, + "on": 1, + "provided": 1, + "**/": 1, + "public": 1, + "onCreate": 1, + "..onCreate": 1, + "#rest": 1, + "json_rpccall": 1, + "#id": 2, + "#host": 4, + "Lasso_UniqueID": 1, + "Include_URL": 1, + "PostParams": 1, + "Encode_JSON": 1, + "#method": 1 }, "Latte": { "{": 54, - "**": 1, - "*": 4, - "@param": 3, - "string": 2, - "basePath": 1, - "web": 1, - "base": 1, - "path": 1, - "robots": 2, - "tell": 1, - "how": 1, - "to": 2, - "index": 1, - "the": 1, - "content": 1, - "of": 3, - "a": 4, - "page": 1, - "(": 18, - "optional": 1, - ")": 18, - "array": 1, - "flashes": 1, - "flash": 3, - "messages": 1, - "}": 54, - "": 1, - "html": 1, - "": 1, - "": 1, - "": 6, - "charset=": 1, - "name=": 4, - "content=": 5, - "n": 8, - "ifset=": 1, - "http": 1, - "equiv=": 1, - "": 1, - "ifset": 1, - "title": 4, - "/ifset": 1, - "Translation": 1, - "report": 1, - "": 1, - "": 2, - "rel=": 2, - "media=": 1, - "href=": 4, - "": 3, - "block": 3, - "#head": 1, - "/block": 3, - "": 1, - "": 1, - "class=": 12, - "document.documentElement.className": 1, - "+": 3, - "#navbar": 1, - "include": 3, - "_navbar.latte": 1, - "
": 6, - "inner": 1, - "foreach=": 3, - "_flash.latte": 1, - "
": 7, - "#content": 1, - "
": 1, - "
": 1, - "src=": 1, - "#scripts": 1, - "": 1, - "": 1, "var": 3, + "title": 4, + "}": 54, "define": 1, "author": 7, "": 2, + "n": 8, + "href=": 4, "Author": 2, "authorId": 2, "-": 71, @@ -35102,14 +35009,17 @@ "md": 2, "outOf": 5, "done": 7, + "+": 3, "threshold": 4, "alert": 2, "warning": 2, "<=>": 2, + "class=": 12, "Seems": 1, "complete": 1, "|": 6, "out": 1, + "of": 3, "

": 2, "elseif": 2, "<": 1, @@ -35135,7 +35045,9 @@ "khanovaskola.cz": 1, "revision": 18, "rev": 4, + "(": 18, "this": 3, + ")": 18, "older": 1, "#": 2, "else": 2, @@ -35145,7 +35057,10 @@ "diffs": 3, "noescape": 2, "": 1, + "
": 6, "description": 1, + "
": 7, + "foreach=": 3, "text": 4, "as": 2, "line": 3, @@ -35172,6 +35087,7 @@ "group": 4, "approve": 1, "thumbs": 3, + "o": 7, "up": 1, "markIncomplete": 2, "down": 2, @@ -35187,12 +35103,15 @@ "lines": 1, "&": 1, "thinsp": 1, + ";": 9, "%": 1, "": 3, "": 3, "": 2, "incomplete": 3, + "||": 3, "approved": 2, + "i": 9, "": 1, "user": 1, "loggedIn": 1, @@ -35214,6 +35133,7 @@ "Comment": 1, "only": 1, "visible": 1, + "to": 2, "other": 1, "editors": 1, "save": 1, @@ -35222,7 +35142,90 @@ "": 1, "/form": 1, "/foreach": 1, - "": 1 + "": 1, + "**": 1, + "*": 4, + "@param": 3, + "string": 2, + "basePath": 1, + "web": 1, + "base": 1, + "path": 1, + "robots": 2, + "tell": 1, + "how": 1, + "index": 1, + "the": 1, + "content": 1, + "a": 4, + "page": 1, + "optional": 1, + "array": 1, + "flashes": 1, + "flash": 3, + "messages": 1, + "": 1, + "html": 1, + "": 1, + "": 1, + "": 6, + "charset=": 1, + "name=": 4, + "content=": 5, + "ifset=": 1, + "http": 1, + "equiv=": 1, + "": 1, + "ifset": 1, + "/ifset": 1, + "Translation": 1, + "report": 1, + "": 1, + "": 2, + "rel=": 2, + "media=": 1, + "": 3, + "block": 3, + "#head": 1, + "/block": 3, + "": 1, + "": 1, + "document.documentElement.className": 1, + "#navbar": 1, + "include": 3, + "_navbar.latte": 1, + "inner": 1, + "_flash.latte": 1, + "#content": 1, + "
": 1, + "
": 1, + "src=": 1, + "#scripts": 1, + "": 1, + "": 1 }, "Less": { "@blue": 4, @@ -35247,6 +35250,76 @@ "margin": 1 }, "Liquid": { + "

": 1, + "We": 1, + "have": 1, + "wonderful": 1, + "products": 1, + "

": 1, + "
": 5, + "": 1, + "product.price_min": 1, + "money": 5, + "product.price_varies": 1, + "-": 4, + "product.price_max": 1, + "": 1, + "
": 1, + "action=": 1, + "method=": 1, + "": 1, + "style=": 5, + "": 1, + "type=": 2, + "
": 1, + "product.description": 1, + "": 1, "": 1, "html": 1, "PUBLIC": 1, @@ -35274,13 +35347,9 @@ "equiv=": 1, "content=": 1, "": 1, - "{": 89, "shop.name": 2, - "}": 89, - "-": 4, "page_title": 1, "": 1, - "|": 31, "global_asset_url": 5, "stylesheet_tag": 3, "script_tag": 5, @@ -35289,48 +35358,29 @@ "content_for_header": 1, "": 1, "": 1, - "id=": 28, "

": 1, - "class=": 14, - "": 9, - "href=": 9, "Skip": 1, "to": 1, "navigation.": 1, - "": 9, "

": 1, - "%": 46, - "if": 5, "cart.item_count": 7, - "
": 23, - "style=": 5, - "

": 3, "There": 1, "pluralize": 3, - "in": 8, "title=": 3, "your": 1, "cart": 1, - "

": 3, "

": 1, "Your": 1, "subtotal": 1, "is": 1, "cart.total_price": 2, - "money": 5, ".": 3, "

": 1, - "for": 6, "item": 1, "cart.items": 1, "onMouseover=": 2, "onMouseout=": 2, - "": 4, - "src=": 5, - "
": 23, - "endfor": 6, "
": 2, - "endif": 5, "

": 1, "

": 1, "onclick=": 1, @@ -35341,16 +35391,12 @@ ")": 1, "
": 3, "content_for_layout": 1, - "
    ": 5, "link": 2, "linklists.main": 1, "menu.links": 1, - "
  • ": 5, "link.title": 2, "link_to": 2, "link.url": 2, - "
  • ": 5, - "
": 5, "tags": 1, "tag": 4, "collection.tags": 1, @@ -35368,50 +35414,7 @@ "by": 1, "Shopify": 1, "": 1, - "": 1, - "

": 1, - "We": 1, - "have": 1, - "wonderful": 1, - "products": 1, - "

": 1, - "image": 1, - "product.images": 1, - "forloop.first": 1, - "rel=": 2, - "alt=": 2, - "else": 1, - "product.title": 1, - "Vendor": 1, - "product.vendor": 1, - "link_to_vendor": 1, - "Type": 1, - "product.type": 1, - "link_to_type": 1, - "": 1, - "product.price_min": 1, - "product.price_varies": 1, - "product.price_max": 1, - "": 1, - "
": 1, - "action=": 1, - "method=": 1, - "": 1, - "": 1, - "type=": 2, - "
": 1, - "product.description": 1, - "": 1 + "": 1 }, "Literate Agda": { "documentclass": 1, @@ -35769,34 +35772,8 @@ "end_object.": 1 }, "Lua": { - "-": 60, - "A": 1, - "simple": 1, - "counting": 1, - "object": 1, - "that": 1, - "increments": 1, - "an": 1, - "internal": 1, - "counter": 1, - "whenever": 1, - "it": 2, - "receives": 2, - "a": 5, - "bang": 3, - "at": 2, - "its": 2, - "first": 1, - "inlet": 2, - "or": 2, - "changes": 1, - "to": 8, - "whatever": 1, - "number": 3, - "second": 1, - "inlet.": 1, "local": 11, - "HelloCounter": 4, + "FileModder": 10, "pd.Class": 3, "new": 3, "(": 56, @@ -35806,75 +35783,45 @@ "initialize": 3, "sel": 3, "atoms": 3, - "self.inlets": 3, - "self.outlets": 3, - "self.num": 5, - "return": 3, - "true": 3, - "end": 26, - "in_1_bang": 2, - "self": 10, - "outlet": 10, - "{": 16, - "}": 16, - "+": 3, - "in_2_float": 2, - "f": 12, - "FileListParser": 5, - "Base": 1, - "filename": 2, - "File": 2, - "extension": 2, - "Number": 4, - "of": 9, - "files": 1, - "in": 7, - "batch": 2, - "To": 3, - "[": 17, - "list": 1, - "trim": 1, - "]": 17, - "binfile": 3, - "vidya": 1, - "file": 8, - "modder": 1, - "s": 5, - "mechanisms": 1, - "self.extension": 3, - "the": 7, - "last": 1, - "self.batchlimit": 3, - "in_1_symbol": 1, - "for": 9, - "i": 10, - "do": 8, - "..": 7, - "in_2_list": 1, - "d": 9, - "in_3_float": 1, - "FileModder": 10, + "-": 60, "Object": 1, "triggering": 1, + "bang": 3, "Incoming": 1, "single": 1, "data": 2, "bytes": 3, "from": 3, + "[": 17, + "binfile": 3, + "]": 17, "Total": 1, + "in": 7, + "file": 8, "route": 1, "buflength": 1, "Glitch": 3, "type": 2, "point": 2, + "Number": 4, + "of": 9, "times": 2, + "to": 8, "glitch": 2, + "a": 5, "Toggle": 1, + "for": 9, "randomized": 1, + "number": 3, "glitches": 3, "within": 2, + "the": 7, "bounds": 2, "Active": 1, + "filename": 2, + "self.inlets": 3, + "To": 3, + "inlet": 2, "get": 1, "next": 1, "byte": 2, @@ -35882,12 +35829,17 @@ "buffer": 2, "FLOAT": 1, "write": 3, + "self.outlets": 3, "Currently": 1, "active": 2, + "s": 5, "namedata": 1, "self.filedata": 4, + "{": 16, + "}": 16, "pattern": 1, "random": 3, + "or": 2, "splice": 1, "self.glitchtype": 5, "Minimum": 1, @@ -35915,6 +35867,14 @@ "length": 1, "currently": 1, "self.buflength": 7, + "return": 3, + "true": 3, + "end": 26, + "in_1_bang": 2, + "i": 10, + "do": 8, + "self": 10, + "outlet": 10, "if": 2, "then": 4, "plen": 2, @@ -35923,6 +35883,7 @@ "table.insert": 4, "%": 1, "#patbuffer": 1, + "+": 3, "elseif": 2, "randlimit": 4, "else": 1, @@ -35936,56 +35897,71 @@ "v": 4, "ipairs": 2, "outname": 3, + "..": 7, "pd.post": 1, + "in_2_float": 2, + "f": 12, "in_3_list": 1, "Shift": 1, "indexed": 2, "in_4_list": 1, + "d": 9, "in_5_float": 1, "in_6_float": 1, "in_7_list": 1, - "in_8_list": 1 + "in_8_list": 1, + "A": 1, + "simple": 1, + "counting": 1, + "object": 1, + "that": 1, + "increments": 1, + "an": 1, + "internal": 1, + "counter": 1, + "whenever": 1, + "it": 2, + "receives": 2, + "at": 2, + "its": 2, + "first": 1, + "changes": 1, + "whatever": 1, + "second": 1, + "inlet.": 1, + "HelloCounter": 4, + "self.num": 5, + "FileListParser": 5, + "Base": 1, + "File": 2, + "extension": 2, + "files": 1, + "batch": 2, + "list": 1, + "trim": 1, + "vidya": 1, + "modder": 1, + "mechanisms": 1, + "self.extension": 3, + "last": 1, + "self.batchlimit": 3, + "in_1_symbol": 1, + "in_2_list": 1, + "in_3_float": 1 }, "M": { - "%": 207, - "zewdAPI": 52, ";": 1309, - "Enterprise": 5, - "Web": 5, - "Developer": 5, - "run": 2, - "-": 1605, - "time": 9, - "functions": 4, - "and": 59, - "user": 27, - "APIs": 1, - "Product": 2, - "(": 2144, - "Build": 6, - ")": 2152, - "Date": 2, - "Fri": 1, - "Nov": 1, - "|": 171, - "for": 77, - "GT.M": 30, - "m_apache": 3, + "MD5": 6, + "Implementation": 1, + "in": 80, + "M": 24, "Copyright": 12, - "c": 113, - "M/Gateway": 4, - "Developments": 4, - "Ltd": 4, - "Reigate": 4, - "Surrey": 4, - "UK.": 4, - "All": 4, - "rights": 4, - "reserved.": 4, - "http": 13, - "//www.mgateway.com": 4, - "Email": 4, - "rtweed@mgateway.com": 4, + "(": 2144, + "C": 9, + ")": 2152, + "Piotr": 7, + "Koper": 7, + "": 7, "This": 26, "program": 19, "is": 88, @@ -36022,7 +35998,6 @@ "later": 11, "version.": 11, "distributed": 13, - "in": 80, "hope": 11, "that": 19, "will": 23, @@ -36043,6 +36018,7 @@ "PARTICULAR": 11, "PURPOSE.": 11, "See": 15, + "for": 77, "more": 13, "details.": 12, "You": 13, @@ -36060,356 +36036,149 @@ "see": 26, "": 11, ".": 815, - "QUIT": 251, - "_": 127, - "getVersion": 1, - "zewdCompiler": 6, - "date": 1, - "getDate": 1, - "compilePage": 2, - "app": 13, - "page": 12, - "mode": 12, - "technology": 9, - "outputPath": 4, - "multilingual": 4, - "maxLines": 4, - "d": 381, - "g": 228, - "compileAll": 2, - "templatePageName": 2, - "autoTranslate": 2, - "language": 6, - "verbose": 2, - "zewdMgr": 1, - "startSession": 2, - "requestArray": 2, - "serverArray": 1, - "sessionArray": 5, - "filesArray": 1, - "zewdPHP": 8, - ".requestArray": 2, - ".serverArray": 1, - ".sessionArray": 3, - ".filesArray": 1, - "closeSession": 2, - "saveSession": 2, - "endOfPage": 2, - "prePageScript": 2, - "sessid": 146, - "releaseLock": 2, - "tokeniseURL": 2, - "url": 2, - "zewdCompiler16": 5, - "getSessid": 1, - "token": 21, - "i": 465, - "isTokenExpired": 2, - "p": 84, - "zewdSession": 39, - "initialiseSession": 1, - "k": 122, - "deleteSession": 2, - "changeApp": 1, - "appName": 4, - "setSessionValue": 6, - "setRedirect": 1, - "toPage": 1, - "e": 210, - "n": 197, - "path": 4, + "It": 2, + "works": 1, + "GT.M": 30, + "ZCHSET": 2, + "please": 1, + "don": 1, "s": 775, - "getRootURL": 1, - "l": 84, - "zewd": 17, - "trace": 24, - "_sessid_": 3, - "_token_": 1, - "_nextPage": 1, - "zcvt": 11, - "nextPage": 1, - "isNextPageTokenValid": 2, - "zewdCompiler13": 10, - "isCSP": 1, - "normaliseTextValue": 1, - "text": 6, - "replaceAll": 11, - "writeLine": 2, - "line": 14, - "CacheTempBuffer": 2, - "j": 67, - "increment": 11, - "w": 127, - "displayOptions": 2, - "fieldName": 5, - "listName": 6, - "escape": 7, - "codeValue": 7, - "name": 121, - "nnvp": 1, - "nvp": 1, - "pos": 33, - "textValue": 6, - "value": 72, - "getSessionValue": 3, - "tr": 13, - "+": 189, - "f": 93, - "o": 51, - "q": 244, - "codeValueEsc": 7, - "textValueEsc": 7, - "htmlOutputEncode": 2, - "zewdAPI2": 5, - "_codeValueEsc_": 1, - "selected": 4, - "translationMode": 1, - "_appName": 1, - "typex": 1, - "type": 2, - "avoid": 1, - "Cache": 3, - "bug": 2, - "getPhraseIndex": 1, - "zewdCompiler5": 1, - "licensed": 1, - "setWarning": 2, - "isTemp": 11, - "setWLDSymbol": 1, - "Duplicate": 1, - "performance": 1, - "also": 4, - "wldAppName": 1, - "wldName": 1, - "wldSessid": 1, - "zzname": 1, - "zv": 6, - "[": 54, - "extcErr": 1, - "mess": 3, - "namespace": 1, - "zt": 20, - "valueErr": 1, - "exportCustomTags": 2, - "tagList": 1, - "filepath": 10, - ".tagList": 1, - "exportAllCustomTags": 2, - "importCustomTags": 2, - "filePath": 2, - "zewdForm": 1, - "stripSpaces": 6, - "np": 17, - "obj": 6, - "prop": 6, - "setSessionObject": 3, - "allowJSONAccess": 1, - "sessionName": 30, - "access": 21, - "disallowJSONAccess": 1, - "JSONAccess": 1, - "existsInSession": 2, - "existsInSessionArray": 2, - "p1": 5, - "p2": 10, - "p3": 3, - "p4": 2, - "p5": 2, - "p6": 2, - "p7": 2, - "p8": 2, - "p9": 2, - "p10": 2, - "p11": 2, - "clearSessionArray": 1, - "arrayName": 35, - "setSessionArray": 1, - "itemName": 16, - "itemValue": 7, - "getSessionArray": 1, - "array": 22, - "clearArray": 2, - "set": 98, - "m": 37, - "getSessionArrayErr": 1, - "Come": 1, - "here": 4, - "if": 44, - "error": 62, - "occurred": 2, - "addToSession": 2, - "@name": 4, - "mergeToSession": 1, - "mergeGlobalToSession": 2, - "globalName": 7, - "mergeGlobalFromSession": 2, - "mergeArrayToSession": 1, - "mergeArrayToSessionObject": 2, - ".array": 1, - "mergeArrayFromSession": 1, - "mergeFromSession": 1, - "deleteFromSession": 1, - "deleteFromSessionObject": 1, - "sessionNameExists": 1, - "getSessionArrayValue": 2, - "subscript": 7, - "exists": 6, - ".exists": 1, - "sessionArrayValueExists": 2, - "deleteSessionArrayValue": 2, - "Objects": 1, - "objectName": 13, - "propertyName": 3, - "propertyValue": 5, - "comma": 3, - "x": 96, - "replace": 27, - "objectName_": 2, - "_propertyName": 2, - "_propertyName_": 2, - "_propertyValue_": 1, - "_p": 1, - "quoted": 1, - "string": 50, - "FromStr": 6, - "S": 99, - "ToStr": 4, - "InText": 4, - "old": 3, - "new": 15, - "ok": 14, - "removeDocument": 1, - "zewdDOM": 3, - "instanceName": 2, - "clearXMLIndex": 1, - "zewdSchemaForm": 1, - "closeDOM": 1, - "makeTokenString": 1, - "length": 7, - "token_": 1, - "r": 88, - "makeString": 3, - "char": 9, - "len": 8, - "create": 6, - "characters": 8, - "str": 15, - "convertDateToSeconds": 1, - "hdate": 7, - "Q": 58, - "hdate*86400": 1, - "convertSecondsToDate": 1, - "secs": 2, - "secs#86400": 1, - "getTokenExpiry": 2, - "h*86400": 1, - "h": 39, - "randChar": 1, - "R": 2, - "lowerCase": 2, - "stripLeadingSpaces": 2, - "stripTrailingSpaces": 2, - "d1": 7, - "zd": 1, - "yy": 19, - "dd": 4, - "I": 43, - "<10>": 1, - "dd=": 2, - "mm=": 3, - "1": 74, - "d1=": 1, - "2": 14, - "p1=": 1, - "mm": 7, - "p2=": 1, - "yy=": 1, - "3": 6, - "dd_": 1, - "mm_": 1, - "inetTime": 1, - "Decode": 1, - "Internet": 1, - "Format": 1, - "Time": 1, + "only": 9, + "joke.": 1, + "Serves": 1, + "well": 2, + "reverse": 1, + "engineering": 1, + "example": 5, + "on": 17, + "obtaining": 1, + "boolean": 2, + "functions": 4, "from": 16, - "H": 1, - "format": 2, - "Offset": 1, - "relative": 1, - "to": 74, - "GMT": 1, - "eg": 3, - "hh": 4, - "ss": 4, + "integer": 1, + "addition": 1, + "modulo": 1, + "and": 59, + "division.": 1, + "md5": 2, + "msg": 6, + "http": 13, + "//en.wikipedia.org/wiki/MD5": 1, + "n": 197, + "m": 37, + "r": 88, + "k": 122, + "h": 39, + "i": 465, + "j": 67, + "b": 64, + "c": 113, + "d": 381, + "f": 93, + "g": 228, + "w": 127, + "t": 12, + "p": 84, + "q": 244, + "-": 1605, + "l": 84, + "#64": 1, + "+": 189, + "msg_": 1, + "_m_": 1, + "n64": 2, + "*8": 2, + "read": 2, + ".m": 11, + ".p": 1, "<": 20, - "_hh": 1, - "time#3600": 1, - "_mm": 1, - "time#60": 1, - "_ss": 2, - "hh_": 1, - "_mm_": 1, - "openNewFile": 2, - "openFile": 2, - "openDOM": 2, - "&": 28, - "#39": 1, - "<\",\"<\")>": 1, - "string=": 1, - "gt": 1, - "amp": 1, - "HTML": 1, - "quot": 2, - "stop": 20, - "no": 54, - "no2": 1, - "p1_c_p2": 1, - "getIP": 2, - "Get": 2, - "own": 2, - "IP": 1, - "address": 1, - "ajaxErrorRedirect": 2, - "classExport": 2, - "className": 2, - "methods": 2, - ".methods": 1, - "strx": 2, - "disableEwdMgr": 1, - "enableEwdMgr": 1, - "enableWLDAccess": 1, - "disableWLDAccess": 1, - "isSSOValid": 2, - "sso": 2, - "username": 8, - "password": 8, - "zewdMgrAjax2": 1, - "uniqueId": 1, - "nodeOID": 2, - "filename": 2, - "linkToParentSession": 2, - "zewdCompiler20": 1, - "exportToGTM": 1, - "routine": 6, + "..": 28, + "...": 6, + "e": 210, + "*i": 3, + "#16": 3, + "xor": 4, + "rotate": 5, + "#4294967296": 6, + "n32h": 5, + "_": 127, + "bit": 5, + "x": 96, + "#2": 1, + "*2147483648": 2, + "a#2": 1, + "b#2": 1, + ".a": 1, + ".b": 1, + "rol": 1, + "a*": 1, + "**n": 1, + "c#4294967296": 1, + "*n": 1, + "n#256": 1, + "n#16": 2, + "function": 6, + "computes": 1, + "factorial": 3, + "new": 15, + "set": 98, + "do": 15, + "quit": 30, + "f*n": 1, + "write": 59, + "main": 1, + "y": 33, + "%": 207, "zewdDemo": 1, "Tutorial": 1, + "page": 12, + "Product": 2, + "Enterprise": 5, + "Web": 5, + "Developer": 5, + "Build": 6, + "Date": 2, "Wed": 1, "Apr": 1, + "|": 171, + "m_apache": 3, + "M/Gateway": 4, + "Developments": 4, + "Ltd": 4, + "Reigate": 4, + "Surrey": 4, + "UK.": 4, + "All": 4, + "rights": 4, + "reserved.": 4, + "//www.mgateway.com": 4, + "Email": 4, + "rtweed@mgateway.com": 4, "getLanguage": 1, + "sessid": 146, + "language": 6, "getRequestValue": 1, + "zewdAPI": 52, + "setSessionValue": 6, + "QUIT": 251, "login": 1, + "username": 8, + "password": 8, "getTextValue": 4, "getPasswordValue": 2, + "trace": 24, "_username_": 1, "_password": 1, "logine": 1, + "error": 62, "message": 8, "textid": 1, "errorMessage": 1, "ewdDemo": 8, "clearList": 2, "appendToList": 4, + "user": 27, + "o": 51, "addUsername": 1, "newUsername": 5, "newUsername_": 1, @@ -36434,6 +36203,7 @@ "createTextArea": 1, ".textarea": 1, "userType": 4, + "selected": 4, "setMultipleSelectValues": 1, ".selected": 1, "testField3": 3, @@ -36444,16 +36214,16 @@ "null": 6, "dateTime": 1, "start": 26, + "create": 6, "student": 14, "zwrite": 1, - "write": 59, "order": 11, - "do": 15, - "quit": 30, - "file": 10, "part": 3, + "Keith": 1, + "Lynch": 1, + "p#f": 1, + "file": 10, "DataBallet.": 4, - "C": 9, "Laurent": 2, "Parenteau": 2, "": 2, @@ -36469,565 +36239,397 @@ "todrop": 2, "Populate": 1, "values": 4, - "on": 17, "first": 10, "use": 5, "only.": 1, + "if": 44, "zextract": 3, "zlength": 3, - "Comment": 1, - "comment": 4, - "block": 1, - "comments": 5, - "always": 2, - "semicolon": 1, - "next": 1, - "while": 4, - "legal": 1, - "blank": 1, - "whitespace": 2, - "alone": 1, - "valid": 2, - "**": 4, - "Comments": 1, - "graphic": 3, - "character": 5, - "such": 1, - "@#": 1, - "*": 6, - "{": 5, - "}": 5, - "]": 15, - "/": 3, - "space": 1, - "considered": 1, - "though": 1, - "t": 12, - "it.": 2, - "ASCII": 2, - "whose": 1, - "numeric": 8, - "code": 29, - "above": 3, - "below": 1, - "are": 14, - "NOT": 2, - "allowed": 18, - "routine.": 1, - "multiple": 1, - "semicolons": 1, - "okay": 1, - "has": 7, - "tag": 2, - "after": 3, - "does": 1, - "command": 11, - "Tag1": 1, - "Tags": 2, - "an": 14, - "uppercase": 2, - "lowercase": 1, - "alphabetic": 2, - "series": 2, - "HELO": 1, - "most": 1, - "common": 1, - "label": 5, - "LABEL": 1, - "followed": 1, - "directly": 1, - "open": 1, - "parenthesis": 2, - "formal": 1, - "list": 1, - "variables": 3, - "close": 1, - "ANOTHER": 1, - "X": 19, - "Normally": 1, - "subroutine": 1, - "would": 2, - "ended": 1, - "we": 1, - "taking": 1, - "advantage": 1, - "rule": 1, - "END": 1, - "implicit": 1, - "Digest": 2, + "PCRE": 23, "Extension": 9, - "Piotr": 7, - "Koper": 7, - "": 7, - "trademark": 2, - "Fidelity": 2, - "Information": 2, - "Services": 2, - "Inc.": 2, - "//sourceforge.net/projects/fis": 2, - "gtm/": 2, - "simple": 2, - "OpenSSL": 3, - "based": 1, - "digest": 19, - "extension": 3, - "rewrite": 1, - "EVP_DigestInit": 1, - "usage": 3, - "example": 5, - "additional": 5, - "M": 24, - "wrapper.": 1, - "//www.openssl.org/docs/crypto/EVP_DigestInit.html": 1, - "The": 11, - "return": 7, - "digest.init": 3, - "usually": 1, - "when": 11, - "invalid": 4, - "algorithm": 1, - "was": 5, - "specification.": 1, - "Anyway": 1, - "properly": 1, - "used": 6, - "never": 4, - "fail.": 1, - "Please": 2, - "feel": 2, - "contact": 2, - "me": 2, - "questions": 2, - "returns": 7, - "HEX": 1, - "all": 8, - "one": 5, - "digest.update": 2, - ".c": 2, - ".m": 11, - "digest.final": 2, - ".d": 1, - "init": 6, - "alg": 3, - "context": 1, - "handler": 9, - "try": 1, - "etc": 1, - "returned": 1, - "occurs": 1, - "e.g.": 2, - "unknown": 1, - "update": 1, - "ctx": 4, - "msg": 6, - "updates": 1, - ".ctx": 2, - ".msg": 1, - "final": 1, - "hex": 1, - "encoded": 8, - "frees": 1, - "memory": 1, - "allocated": 1, - ".digest": 1, - "algorithms": 1, - "availability": 1, - "depends": 1, - "libcrypto": 1, - "configuration": 1, - "md4": 1, - "md5": 2, - "sha": 1, - "sha1": 1, - "sha224": 1, - "sha256": 1, - "sha512": 1, - "dss1": 1, - "ripemd160": 1, - "These": 2, - "two": 2, + "Examples": 4, + "pcre.m": 1, + "comments": 5, "routines": 6, - "illustrate": 1, - "dynamic": 1, - "scope": 1, - "triangle1": 1, - "sum": 15, - "main2": 1, - "y": 33, - "triangle2": 1, - "compute": 2, - "Fibonacci": 1, - "b": 64, - "term": 10, - "start1": 2, - "entry": 5, - "start2": 1, - "function": 6, - "computes": 1, - "factorial": 3, - "f*n": 1, - "main": 1, - "GMRGPNB0": 1, - "CISC/JH/RM": 1, - "NARRATIVE": 1, - "BUILDER": 1, - "TEXT": 5, - "GENERATOR": 1, - "cont.": 1, - "/20/91": 1, - "Text": 1, - "Generator": 1, - "Jan": 1, - "ENTRY": 2, - "WITH": 1, - "GMRGA": 1, - "SET": 3, - "TO": 6, - "POINT": 1, - "AT": 1, - "WHICH": 1, - "WANT": 1, - "START": 1, - "BUILDING": 1, - "GMRGE0": 11, - "GMRGADD": 4, - "D": 64, - "GMR": 6, - "GMRGA0": 11, - "GMRGPDA": 9, - "GMRGCSW": 2, - "NOW": 1, - "DTC": 1, - "GMRGB0": 9, - "O": 24, - "GMRGST": 6, - "GMRGPDT": 2, - "STAT": 8, - "GMRGRUT0": 3, - "GMRGF0": 3, - "GMRGSTAT": 8, - "P": 68, - "_GMRGB0_": 2, - "GMRD": 6, - "GMRGSSW": 3, - "SNT": 1, - "GMRGPNB1": 1, - "GMRGNAR": 8, - "GMRGPAR_": 2, - "_GMRGSPC_": 3, - "_GMRGRM": 2, - "_GMRGE0": 1, - "STORETXT": 1, - "GMRGRUT1": 1, - "GMRGSPC": 3, - "F": 10, - "GMRGD0": 7, - "ALIST": 1, - "G": 40, - "TMP": 26, - "J": 38, - "GMRGPLVL": 6, - "GMRGA0_": 1, - "_GMRGD0_": 1, - "_GMRGSSW_": 1, - "_GMRGADD": 1, - "GMRGI0": 6, - "label1": 1, - "if1": 2, - "statement": 3, - "if2": 2, - "statements": 1, - "contrasted": 1, - "": 3, - "variable": 8, - "a=": 3, - "smaller": 3, - "than": 4, - "b=": 4, - "if3": 1, - "else": 7, - "clause": 2, - "if4": 1, - "bodies": 1, - "exercise": 1, - "car": 14, - "@": 8, - "MD5": 6, - "Implementation": 1, - "It": 2, - "works": 1, - "ZCHSET": 2, - "please": 1, - "don": 1, - "only": 9, - "joke.": 1, - "Serves": 1, - "well": 2, - "reverse": 1, - "engineering": 1, - "obtaining": 1, - "boolean": 2, - "integer": 1, - "addition": 1, - "modulo": 1, - "division.": 1, - "//en.wikipedia.org/wiki/MD5": 1, - "#64": 1, - "msg_": 1, - "_m_": 1, - "n64": 2, - "*8": 2, - "read": 2, - ".p": 1, - "..": 28, - "...": 6, - "*i": 3, - "#16": 3, - "xor": 4, - "rotate": 5, - "#4294967296": 6, - "n32h": 5, - "bit": 5, - "#2": 1, - "*2147483648": 2, - "a#2": 1, - "b#2": 1, - ".a": 1, - ".b": 1, - "rol": 1, - "a*": 1, - "**n": 1, - "c#4294967296": 1, - "*n": 1, - "n#256": 1, - "n#16": 2, - "MDB": 60, - "M/DB": 2, - "Mumps": 1, - "Emulation": 1, - "Amazon": 1, - "SimpleDB": 1, - "buildDate": 1, - "indexLength": 10, - "Note": 2, - "keyId": 108, - "been": 4, - "tested": 1, - "these": 1, - "called": 8, - "To": 2, - "Initialise": 2, - "service": 1, - "//192.168.1.xxx/mdb/test.mgwsi": 1, - "Action": 2, - "addUser": 2, - "userKeyId": 6, - "userSecretKey": 6, - "requestId": 17, - "boxUsage": 11, - "startTime": 21, - ".startTime": 5, - "MDBUAF": 2, - "end": 33, - ".boxUsage": 22, - "createDomain": 1, - "domainName": 38, - "dn": 4, - "dnx": 3, - "id": 33, - "noOfDomains": 12, - "MDBConfig": 1, - "getDomainId": 3, - "found": 7, - "namex": 8, - "buildItemNameIndex": 2, - "domainId": 53, - "itemId": 41, - "itemValuex": 3, - "countDomains": 2, - "key": 22, - "deleteDomain": 2, - "listDomains": 1, - "maxNoOfDomains": 2, - "nextToken": 7, - "domainList": 3, - "fullName": 3, - "decodeBase64": 1, - "encodeBase64": 1, - "itemExists": 1, - "getItemId": 2, - "getAttributeValueId": 3, - "attribId": 36, - "valuex": 13, - "putAttributes": 2, - "attributes": 32, - "valueId": 16, - "xvalue": 4, - "add": 5, - "Item": 1, - "Domain": 1, - "itemNamex": 4, - "parseJSON": 1, - "zmwire": 53, - "attributesJSON": 1, - ".attributes": 5, - "attribute": 14, - "getAttributeId": 2, - "domain": 1, - "Not": 1, - "same": 2, - "remove": 6, - "existing": 2, - "now": 1, - "name/value": 2, - "pair": 1, - "getAttributes": 2, - "suppressBoxUsage": 1, - "attrNo": 9, - "valueNo": 6, - "delete": 2, - "item": 2, - "associated": 1, - "queryIndex": 1, - "records": 2, - "specified": 4, - "pairs": 2, - "vno": 2, - "left": 5, - "completely": 3, - "references": 1, - "maxNoOfItems": 3, - "itemList": 12, - "session": 1, - "identifier": 1, - "stored": 1, - "queryExpression": 16, - "relink": 1, - "zewdGTMRuntime": 1, - "CGIEVAR": 1, - "cgi": 1, - "unescName": 5, - "urlDecode": 2, - "KEY": 36, - "response": 29, - "WebLink": 1, - "point": 2, - "action": 15, - "AWSAcessKeyId": 1, - "db": 9, - "hash": 1, - "itemsAndAttrs": 2, - "secretKey": 1, - "signatureMethod": 2, - "signatureVersion": 3, - "stringToSign": 2, - "rltKey": 2, - "_action_": 2, - "h_": 3, - "mdbKey": 2, - "errorResponse": 9, - "initialise": 3, - ".requestId": 7, - "createResponse": 4, - "installMDBM": 1, - "authenticate": 1, - "MDBSession": 1, - "createResponseStringToSign": 1, - "Security": 1, - "OK": 6, - "_db": 1, - "MDBAPI": 1, - "lineNo": 19, - "CacheTempEWD": 16, - "_db_": 1, - "db_": 1, - "_action": 1, - "resp": 5, - "metaData": 1, - "domainMetadata": 1, - ".metaData": 1, - "paramName": 8, - "paramValue": 5, - "_i_": 5, - "Query": 1, - "DomainName": 2, - "QueryExpression": 2, - "MaxNumberOfItems": 2, - "NextToken": 3, - "QueryWithAttributes": 1, - "AttributeName.": 2, - "Select": 2, - "SelectExpression": 1, - "entering": 1, - "runSelect.": 1, - "selectExpression": 3, - "finished": 1, - "runSelect": 3, - "count": 18, - "select": 3, - "where": 6, - "limit": 14, - "asc": 1, - "inValue": 6, - "expr": 18, - "rel": 2, - "itemStack": 3, - "between": 2, - "<=\">": 1, - "lastWord=": 7, - "inAttr=": 5, - "expr=": 10, - "thisWord=": 7, - "inAttr": 2, - "c=": 28, - "queryExpression=": 4, - "_queryExpression": 2, - "4": 5, - "isNull": 1, - "5": 1, - "8": 1, - "isNotNull": 1, - "9": 1, - "offset": 6, - "prevName": 1, - "np=": 1, - "diffNames": 6, - "_term": 3, - "expr_": 1, - "_orderBy": 1, - "runQuery": 2, - ".itemList": 4, - "escVals": 1, - "str_c": 2, - "_x_": 1, - "query": 4, - "orderBy": 1, - "_query": 1, - "parseSelect": 1, - ".domainName": 2, - ".queryExpression": 1, - ".orderBy": 1, - ".limit": 1, - "executeSelect": 1, - ".itemStack": 1, - "***": 2, - "listCopy": 3, - "N.N": 12, - "N.N1": 4, - "externalSelect": 2, - "json": 9, - "_keyId_": 1, - "_selectExpression": 1, - "spaces": 3, - "string_spaces": 1, + "parameters": 1, + "all": 8, + "possible": 5, + "options": 45, + "pcreexamples": 32, + "Initial": 2, + "release": 2, + "pkoper": 2, + "API": 7, + "The": 11, + "shining": 1, + "examples": 4, "test": 6, - "miles": 4, - "gallons": 4, - "miles/gallons": 1, - "computepesimist": 1, - "miles/": 1, - "computeoptimist": 1, - "/gallons": 1, + "Test": 1, + "subject": 24, + "match": 41, + "pcre": 59, + "Simple": 2, + ".n": 20, + "zwr": 17, + "Match": 4, + "named": 12, + "groups": 5, + "group": 4, + "limit": 14, + "output": 49, + "to": 74, + "patterns": 3, + "global": 26, + "Global": 8, + "grouped": 2, + "captured": 6, + "replace": 27, + "Just": 1, + "Change": 2, + "word": 3, + "Escape": 1, + "sequence": 1, + "More": 1, + "chars": 3, + "Low": 1, + "level": 5, + "api": 1, + "pattern": 21, + "offset": 6, + "ref": 41, + "count": 18, + "begin": 18, + "end": 33, + "name": 121, + "Setup": 1, + "exception": 12, + "trap": 10, + "myexception2": 2, + "zt": 20, + "st_": 1, + "zl_": 2, + "are": 14, + "case": 7, + "insensitive": 7, + "stringified": 2, + "names": 3, + "extension": 3, + "Compile": 2, + "compile": 14, + ".pattern": 3, + ".options": 1, + "reference": 2, + "Run": 1, + "exec": 4, + ".ref": 13, + ".subject": 3, + ".offset": 1, + "To": 2, + "access": 21, + "ovector": 25, + "array": 22, + "ovecsize": 5, + "used.": 2, + "size": 3, + "always": 2, + "*": 6, + "where": 6, + "number": 5, + "capture": 10, + "strings": 1, + "submitted": 1, + "exact": 1, + "usable": 1, + "pairs": 2, + "integers": 1, + "Get": 2, + "an": 14, + "old": 3, + "way": 1, + "i*2": 3, + "ze": 8, + "what": 2, + "aa": 9, + "print": 8, + "while": 4, + "/": 3, + "b*": 7, + "/mg": 2, + "s/": 6, + "/Xy/g": 6, + "aaa": 1, + "nbb": 1, + ".*": 1, + "stack": 8, + "usage": 3, + "discover": 1, + "procedure": 2, + "stackusage": 3, + "Locale": 5, + "Support": 1, + "Polish": 1, + "has": 7, + "been": 4, + "used": 6, + "I18N": 2, + "support": 3, + "PCRE.": 1, + "encoded": 8, + "here": 4, + "UTF": 17, + "Polish.": 1, + "second": 1, + "letter": 1, + "": 1, + "which": 4, + "ISO8859": 1, + "//en.wikipedia.org/wiki/Polish_code_pages": 1, + "complete": 1, + "listing": 1, + "Note": 2, + "CHAR": 1, + "different": 3, + "character": 5, + "modes": 1, + "In": 1, + "mode": 12, + "return": 7, + "two": 2, + "octet": 4, + "char": 9, + "probably": 1, + "expected": 1, + "result": 3, + "when": 11, + "working": 1, + "single": 2, + "ISO": 3, + "chars.": 1, + "Use": 1, + "zch": 7, + "prepared": 1, + "GTM": 8, + "E": 12, + "BADCHAR": 1, + "errors.": 1, + "Also": 1, + "others": 1, + "might": 1, + "expected.": 1, + "POSIX": 1, + "i.e.": 3, + "no": 54, + "localization": 1, + "nolocale": 2, + "zchset": 2, + "isolocale": 2, + "utflocale": 2, + "environment": 7, + "LANG": 4, + "LC_CTYPE": 1, + "Set": 2, + "obtain": 2, + "results.": 1, + "envlocale": 2, + "ztrnlnm": 2, + "Notes": 1, + "Enabling": 1, + "native": 1, + "requires": 1, + "libicu": 2, + "gtm_chset": 1, + "gtm_icu_version": 1, + "recompiled": 1, + "object": 4, + "files": 4, + "Instructions": 1, + "Debian": 2, + "Install": 1, + "libicu48": 2, + "apt": 1, + "get": 2, + "install": 1, + "append": 1, + "setup": 3, + "chown": 1, + "gtm": 1, + "/opt/gtm": 1, + "Startup": 1, + "errors": 6, + "INVOBJ": 1, + "Cannot": 1, + "ZLINK": 1, + "due": 1, + "unexpected": 1, + "format": 2, + "I": 43, + "TEXT": 5, + "Object": 1, + "compiled": 1, + "CHSET": 1, + "above": 3, + "written": 3, + "startup": 1, + "correct": 1, + "like": 4, + "step": 8, + "above.": 1, + "Limits": 1, + "built": 1, + "limits": 6, + "internal": 3, + "matching": 4, + "recursion.": 1, + "Those": 1, + "prevent": 1, + "engine": 1, + "very": 2, + "long": 2, + "runs": 2, + "especially": 1, + "there": 2, + "would": 2, + "matches": 10, + "paths": 2, + "tree": 1, + "checked.": 1, + "Functions": 1, + "using": 4, + "itself": 1, + "allows": 1, + "setting": 3, + "MATCH_LIMIT": 1, + "MATCH_LIMIT_RECURSION": 1, + "optional": 16, + "arguments": 1, + "mlimit": 20, + "reclimit": 19, + "locale": 24, + "subst": 3, + "last": 4, + "specified": 4, + "library": 1, + "compilation": 2, + "time": 9, + "defaults": 3, + "config": 3, + "Example": 1, + "run": 2, + "longrun": 3, + "Equal": 1, + "corrected": 1, + "shortrun": 2, + "Enforced": 1, + "enforcedlimit": 2, + "Exception": 2, + "Handling": 1, + "Error": 1, + "conditions": 1, + "handled": 1, + "zc": 1, + "codes": 1, + "labels": 1, + "file.": 1, + "When": 2, + "neither": 1, + "nor": 1, + "et": 4, + "default": 6, + "handler": 9, + "within": 1, + "mechanism.": 1, + "out": 2, + "details": 5, + "depending": 1, + "caller": 1, + "type": 2, + "re": 2, + "raise": 3, + "exception.": 1, + "lead": 1, + "writing": 4, + "called": 8, + "prompt": 1, + "code": 29, + "place": 9, + "routine": 6, + "was": 5, + "terminating": 1, + "image.": 1, + "define": 2, + "own": 2, + "pcreexamples.m": 2, + "handlers.": 1, + "Handler": 1, + "No": 17, + "nohandler": 4, + "ec": 10, + "COMPILE": 2, + "Pattern": 1, + "failed": 1, + "unmatched": 1, + "parentheses": 1, + "<-->": 1, + "HERE": 1, + "RTSLOC": 2, + "At": 2, + "source": 3, + "location": 5, + "2": 14, + "SETECODE": 1, + "Non": 1, + "empty": 7, + "value": 72, + "assigned": 1, + "ECODE": 1, + "defined": 2, + "32": 1, + "GT": 1, + "image": 1, + "terminated": 1, + "myexception1": 3, + "zt=": 1, + "mytrap1": 2, + "x=": 5, + "never": 4, + "ec=": 7, + "zg": 2, + "mytrap3": 1, + "U16392": 2, + "DETAILS": 1, + "executed": 1, + "frame": 1, + "called.": 1, + "deeper": 1, + "frames": 1, + "already": 1, + "dropped": 1, + "command": 11, + "so": 4, + "err": 4, + "local": 1, + "variable": 8, + "available": 1, + "context.": 1, + "Thats": 1, + "why": 1, + "doesn": 1, + "change": 6, + "st": 6, + "unless": 1, + "cleared.": 1, + "Always": 1, + "clear": 6, + "handling": 2, + "done.": 2, + "Execute": 1, + "p5global": 1, + "p5replace": 1, + "p5lf": 1, + "p5nl": 1, + "newline": 1, + "utf8support": 1, + "myexception3": 1, "Mumtris": 3, "tetris": 1, "game": 1, @@ -37035,17 +36637,15 @@ "fun.": 1, "Resize": 1, "terminal": 2, + "e.g.": 2, "maximize": 1, "PuTTY": 1, "window": 1, "restart": 3, - "so": 4, "report": 1, "true": 2, - "size": 3, "mumtris.": 1, "Try": 2, - "setting": 3, "ansi": 2, "compatible": 1, "cursor": 1, @@ -37058,17 +36658,17 @@ "s.": 1, "That": 1, "means": 2, + "one": 5, "CPU": 1, "fall": 5, "lock": 2, - "clear": 6, - "change": 6, "preview": 3, "over": 2, "exit": 3, "short": 1, "circuit": 1, "redraw": 3, + "key": 22, "timeout": 1, "harddrop": 1, "other": 1, @@ -37077,14 +36677,17 @@ "*c": 1, "<0&'d>": 1, "i=": 14, - "st": 6, + "1": 74, "t10m": 1, "0": 23, "<0>": 2, "q=": 6, "d=": 1, + "c=": 28, "zb": 2, + "3": 6, "right": 3, + "left": 5, "fl=": 1, "gr=": 1, "hl": 2, @@ -37092,22 +36695,22 @@ "drop": 2, "hd=": 1, "matrix": 2, - "stack": 8, "draw": 3, "ticks": 2, "h=": 2, "1000000000": 1, + "b=": 4, "e=": 1, "t10m=": 1, "100": 2, "n=": 1, "ne=": 1, - "x=": 5, "y=": 3, "r=": 3, "collision": 6, "score": 5, "k=": 1, + "4": 5, "j=": 4, "<1))))>": 1, "800": 1, @@ -37125,12 +36728,12 @@ "u": 6, "echo": 1, "intro": 1, + "pos": 33, "workaround": 1, "ANSI": 1, "driver": 1, "NL": 1, "some": 1, - "place": 9, "clearscreen": 1, "N": 19, "h/2": 3, @@ -37140,7 +36743,6 @@ "*x": 1, "mx": 4, "my": 5, - "step": 8, "**lv*sb": 1, "*lv": 1, "sc": 3, @@ -37149,6 +36751,7 @@ "w*3": 1, "dev": 1, "zsh": 1, + "[": 54, "dw": 1, "dh": 1, "elements": 3, @@ -37157,53 +36760,34 @@ "rotateVersion": 2, "bottom": 1, "coordinate": 1, + "point": 2, "____": 1, "__": 2, "||": 1, - "ax": 2, - "bx": 2, - "cx": 2, - "ay": 2, - "cy": 2, - "sumx": 3, - "sqrx": 3, - "sumxy": 5, - "x*x": 1, - "x*y": 1, - "PCRE": 23, + "trademark": 2, + "Fidelity": 2, + "Information": 2, + "Services": 2, + "Inc.": 2, + "//sourceforge.net/projects/fis": 2, + "gtm/": 2, "tries": 1, "deliver": 1, "best": 2, - "possible": 5, "interface": 1, "world": 4, "providing": 1, - "support": 3, "arrays": 1, - "stringified": 2, "parameter": 1, - "names": 3, "simplified": 1, - "API": 7, "locales": 2, "exceptions": 1, "Perl5": 1, - "Global": 8, "Match.": 1, - "pcreexamples.m": 2, "comprehensive": 1, - "examples": 4, - "pcre": 59, "beginner": 1, - "level": 5, "tips": 1, - "match": 41, - "limits": 6, - "exception": 12, - "handling": 2, - "UTF": 17, "GT.M.": 1, - "out": 2, "known": 2, "book": 1, "regular": 1, @@ -37212,13 +36796,13 @@ "For": 3, "information": 1, "//pcre.org/": 1, - "Initial": 2, - "release": 2, - "pkoper": 2, + "Please": 2, + "feel": 2, + "contact": 2, + "me": 2, + "questions": 2, + "&": 28, "pcre.version": 1, - "config": 3, - "case": 7, - "insensitive": 7, "protect": 11, "erropt": 6, "isstring": 5, @@ -37226,66 +36810,39 @@ ".name": 1, ".erropt": 3, ".isstring": 1, - ".n": 20, - "ec": 10, - "compile": 14, - "pattern": 21, - "options": 45, - "locale": 24, - "mlimit": 20, - "reclimit": 19, - "optional": 16, + "string": 50, "joined": 3, "Unix": 1, "pcre_maketables": 2, "cases": 1, "undefined": 1, - "environment": 7, - "defined": 2, - "LANG": 4, + "variables": 3, "LC_*": 1, - "output": 49, - "Debian": 2, "tip": 1, "dpkg": 1, "reconfigure": 1, "enable": 1, "system": 1, "wide": 1, - "number": 5, - "internal": 3, - "matching": 4, "calls": 1, "pcre_exec": 4, "execution": 2, "manual": 2, - "details": 5, "depth": 1, "recursion": 1, "calling": 2, - "ref": 41, - "err": 4, "erroffset": 3, "pcre.compile": 1, - ".pattern": 3, - ".ref": 13, ".err": 1, ".erroffset": 1, - "exec": 4, - "subject": 24, "startoffset": 3, + "length": 7, "octets": 2, "starts": 1, - "like": 4, - "chars": 3, "pcre.exec": 2, - ".subject": 3, "zl": 7, - "ec=": 7, - "ovector": 25, "element": 1, "code=": 4, - "ovecsize": 5, "fullinfo": 3, "OPTIONS": 2, "SIZE": 1, @@ -37304,36 +36861,33 @@ "JIT": 1, "JITSIZE": 1, "NAME": 3, + "also": 4, "nametable": 4, + "returns": 7, "index": 1, + "invalid": 4, "indexed": 4, "substring": 1, - "begin": 18, "begin=": 3, "end=": 4, "contains": 2, - "octet": 4, "UNICODE": 1, - "ze": 8, "begin_": 1, "_end": 1, "store": 6, + "same": 2, "stores": 1, - "captured": 6, "key=": 2, "gstore": 3, "round": 12, "byref": 5, - "global": 26, "ref=": 3, "l=": 2, - "capture": 10, "indexes": 1, "extended": 1, "NAMED_ONLY": 2, - "named": 12, - "groups": 5, "OVECTOR": 2, + "additional": 5, "namedonly": 9, "options=": 4, "o=": 12, @@ -37341,29 +36895,26 @@ "ovector=": 2, "NO_AUTO_CAPTURE": 2, "_capture_": 2, - "matches": 10, + "_i_": 5, "s=": 4, "_s_": 1, "GROUPED": 1, - "group": 4, - "result": 3, - "patterns": 3, "pcredemo": 1, "pcreccp": 1, "cc": 1, - "procedure": 2, "Perl": 1, "utf8": 2, "crlf": 6, - "empty": 7, "skip": 6, "determine": 1, + "remove": 6, "them": 1, "before": 2, "byref=": 2, "check": 2, "UTF8": 2, "double": 1, + "line": 14, "utf8=": 1, "crlf=": 3, "NL_CRLF": 1, @@ -37387,48 +36938,32 @@ ".round": 2, ".byref": 2, ".ovector": 2, - "subst": 3, - "last": 4, "occurrences": 1, "matched": 1, "back": 4, "th": 3, + "{": 5, + "}": 5, "replaced": 1, "substitution": 2, "begins": 1, "substituted": 2, - "defaults": 3, "ends": 1, "backref": 1, "boffset": 1, "prepare": 1, - "reference": 2, ".subst": 1, ".backref": 1, "silently": 1, "zco": 1, "": 1, - "s/": 6, - "b*": 7, - "/Xy/g": 6, - "print": 8, - "aa": 9, - "et": 4, "direct": 3, "take": 1, - "default": 6, - "setup": 3, - "trap": 10, - "source": 3, - "location": 5, "argument": 1, "@ref": 2, - "E": 12, - "COMPILE": 2, + "@": 8, "meaning": 1, "zs": 2, - "re": 2, - "raise": 3, "XC": 1, "specific": 3, "U16384": 1, @@ -37439,12 +36974,10 @@ "U16389": 1, "U16390": 1, "U16391": 1, - "U16392": 2, "U16393": 1, "NOTES": 1, "U16401": 2, "raised": 2, - "i.e.": 3, "NOMATCH": 2, "ever": 1, "uncommon": 1, @@ -37477,317 +37010,15 @@ "U16425": 1, "U16426": 1, "U16427": 1, - "Examples": 4, - "pcre.m": 1, - "parameters": 1, - "pcreexamples": 32, - "shining": 1, - "Test": 1, - "Simple": 2, - "zwr": 17, - "Match": 4, - "grouped": 2, - "Just": 1, - "Change": 2, - "word": 3, - "Escape": 1, - "sequence": 1, - "More": 1, - "Low": 1, - "api": 1, - "Setup": 1, - "myexception2": 2, - "st_": 1, - "zl_": 2, - "Compile": 2, - ".options": 1, - "Run": 1, - ".offset": 1, - "used.": 2, - "strings": 1, - "submitted": 1, - "exact": 1, - "usable": 1, - "integers": 1, - "way": 1, - "i*2": 3, - "what": 2, - "/mg": 2, - "aaa": 1, - "nbb": 1, - ".*": 1, - "discover": 1, - "stackusage": 3, - "Locale": 5, - "Support": 1, - "Polish": 1, - "I18N": 2, - "PCRE.": 1, - "Polish.": 1, - "second": 1, - "letter": 1, - "": 1, - "which": 4, - "ISO8859": 1, - "//en.wikipedia.org/wiki/Polish_code_pages": 1, - "complete": 1, - "listing": 1, - "CHAR": 1, - "different": 3, - "modes": 1, - "In": 1, - "probably": 1, - "expected": 1, - "working": 1, - "single": 2, - "ISO": 3, - "chars.": 1, - "Use": 1, - "zch": 7, - "prepared": 1, - "GTM": 8, - "BADCHAR": 1, - "errors.": 1, - "Also": 1, - "others": 1, - "might": 1, - "expected.": 1, - "POSIX": 1, - "localization": 1, - "nolocale": 2, - "zchset": 2, - "isolocale": 2, - "utflocale": 2, - "LC_CTYPE": 1, - "Set": 2, - "obtain": 2, - "results.": 1, - "envlocale": 2, - "ztrnlnm": 2, - "Notes": 1, - "Enabling": 1, - "native": 1, - "requires": 1, - "libicu": 2, - "gtm_chset": 1, - "gtm_icu_version": 1, - "recompiled": 1, - "object": 4, - "files": 4, - "Instructions": 1, - "Install": 1, - "libicu48": 2, - "apt": 1, - "get": 2, - "install": 1, - "append": 1, - "chown": 1, - "gtm": 1, - "/opt/gtm": 1, - "Startup": 1, - "errors": 6, - "INVOBJ": 1, - "Cannot": 1, - "ZLINK": 1, - "due": 1, - "unexpected": 1, - "Object": 1, - "compiled": 1, - "CHSET": 1, - "written": 3, - "startup": 1, - "correct": 1, - "above.": 1, - "Limits": 1, - "built": 1, - "recursion.": 1, - "Those": 1, - "prevent": 1, - "engine": 1, - "very": 2, - "long": 2, - "runs": 2, - "especially": 1, - "there": 2, - "paths": 2, - "tree": 1, - "checked.": 1, - "Functions": 1, - "using": 4, - "itself": 1, - "allows": 1, - "MATCH_LIMIT": 1, - "MATCH_LIMIT_RECURSION": 1, - "arguments": 1, - "library": 1, - "compilation": 2, - "Example": 1, - "longrun": 3, - "Equal": 1, - "corrected": 1, - "shortrun": 2, - "Enforced": 1, - "enforcedlimit": 2, - "Exception": 2, - "Handling": 1, - "Error": 1, - "conditions": 1, - "handled": 1, - "zc": 1, - "codes": 1, - "labels": 1, - "file.": 1, - "When": 2, - "neither": 1, - "nor": 1, - "within": 1, - "mechanism.": 1, - "depending": 1, - "caller": 1, - "exception.": 1, - "lead": 1, - "writing": 4, - "prompt": 1, - "terminating": 1, - "image.": 1, - "define": 2, - "handlers.": 1, - "Handler": 1, - "No": 17, - "nohandler": 4, - "Pattern": 1, - "failed": 1, - "unmatched": 1, - "parentheses": 1, - "<-->": 1, - "HERE": 1, - "RTSLOC": 2, - "At": 2, - "SETECODE": 1, - "Non": 1, - "assigned": 1, - "ECODE": 1, - "32": 1, - "GT": 1, - "image": 1, - "terminated": 1, - "myexception1": 3, - "zt=": 1, - "mytrap1": 2, - "zg": 2, - "mytrap3": 1, - "DETAILS": 1, - "executed": 1, - "frame": 1, - "called.": 1, - "deeper": 1, - "frames": 1, - "already": 1, - "dropped": 1, - "local": 1, - "available": 1, - "context.": 1, - "Thats": 1, - "why": 1, - "doesn": 1, - "unless": 1, - "cleared.": 1, - "Always": 1, - "done.": 2, - "Execute": 1, - "p5global": 1, - "p5replace": 1, - "p5lf": 1, - "p5nl": 1, - "newline": 1, - "utf8support": 1, - "myexception3": 1, - "contrasting": 1, - "postconditionals": 1, - "IF": 9, - "commands": 1, - "post1": 1, - "postconditional": 3, - "purposely": 4, - "TEST": 16, - "false": 5, - "post2": 1, - "special": 2, - "post": 1, - "condition": 1, - "PRCAAPR": 1, - "WASH": 1, - "ISC@ALTOONA": 1, - "PA/RGY": 1, - "PATIENT": 5, - "ACCOUNT": 1, - "PROFILE": 1, - "CONT": 1, - "/9/94": 1, - "AM": 1, - "V": 2, - "Accounts": 1, - "Receivable": 1, - "**198": 1, - "Mar": 1, - "Per": 1, - "VHA": 1, - "Directive": 1, - "modified.": 1, - "EN": 2, - "PRCATY": 2, - "NEW": 3, - "DIC": 6, - "Y": 26, - "DEBT": 10, - "PRCADB": 5, - "DA": 4, - "PRCA": 14, - "COUNT": 2, - "OUT": 2, - "SEL": 1, - "BILL": 11, - "BAT": 8, - "TRAN": 5, - "DR": 4, - "DXS": 1, - "DTOUT": 2, - "DIROUT": 1, - "DIRUT": 1, - "DUOUT": 1, - "ASK": 3, - "DPTNOFZY": 2, - "DPTNOFZK": 2, - "K": 5, - "DTIME": 1, - "UPPER": 1, - "VALM1": 1, - "RCD": 1, - "DISV": 2, - "DUZ": 3, - "NAM": 1, - "RCFN01": 1, - "COMP": 2, - "EN1": 1, - "PRCAATR": 1, - "Y_": 3, - "PRCADB_": 1, - "HDR": 1, - "PRCAAPR1": 3, - "HDR2": 1, - "DIS": 1, - "STAT1": 2, - "_PRCATY_": 1, - "COMP1": 2, - "RCY": 5, - "COMP2": 2, - "_STAT_": 1, - "_STAT": 1, - "payments": 1, - "_TRAN": 1, - "Keith": 1, - "Lynch": 1, - "p#f": 1, + "start1": 2, + "entry": 5, + "label": 5, + "sum": 15, + "start2": 1, + "compute": 2, + "Fibonacci": 1, + "series": 2, + "term": 10, "PXAI": 1, "ISL/JVS": 1, "ISA/KWP": 1, @@ -37797,10 +37028,13 @@ "RTN": 1, "/20/03": 1, "am": 1, + "PATIENT": 5, "CARE": 1, "ENCOUNTER": 2, "**15": 1, + "**": 4, "Aug": 1, + "Q": 58, "DATA2PCE": 1, "PXADATA": 7, "PXAPKG": 9, @@ -37852,9 +37086,11 @@ "general": 1, "description": 1, "problem.": 1, + "IF": 9, "ERROR1": 1, "GENERAL": 2, "ERRORS": 4, + "J": 38, "SUBSCRIPT": 5, "PASSED": 4, "IN": 4, @@ -37879,9 +37115,12 @@ "Order": 1, "#100": 1, "process": 3, + "completely": 3, + "occurred": 2, "processed": 1, "could": 1, "incorrectly": 1, + "NEW": 3, "VARIABLES": 1, "NOVSIT": 1, "PXAK": 20, @@ -37892,14 +37131,20 @@ "PXASUB": 2, "VALQUIET": 2, "PRIMFND": 7, + "K": 5, "PXAERROR": 1, "PXAERR": 7, "PRVDR": 1, + "S": 99, "needs": 1, "look": 1, "up": 1, "passed.": 1, + "D": 64, "@PXADATA@": 8, + "G": 40, + "DUZ": 3, + "TMP": 26, "SOR": 1, "SOURCE": 2, "PKG2IEN": 1, @@ -37917,7 +37162,10 @@ "PXAIVST": 1, "PRV": 1, "PROVIDER": 1, + "P": 68, "AUPNVSIT": 1, + "F": 10, + "O": 24, ".I": 4, "..S": 7, "status": 2, @@ -37933,11 +37181,13 @@ "ARRAY": 2, "PXAICPTV": 1, "SEND": 1, + "TO": 6, "W": 4, "BLD": 2, "DIALOG": 4, ".PXAERR": 3, "MSG": 2, + "SET": 3, "GLOBAL": 1, "NA": 1, "PROVDRST": 1, @@ -37945,12 +37195,16 @@ "provider": 1, "PRVIEN": 14, "DETS": 7, + "DIC": 6, + "DR": 4, + "DA": 4, "DIQ": 3, "PRI": 3, "PRVPRIM": 2, "AUPNVPRV": 2, "U": 14, ".04": 1, + "EN": 2, "DIQ1": 1, "POVPRM": 1, "POVARR": 1, @@ -37959,6 +37213,7 @@ "ORDX": 14, "NDX": 7, "ORDXP": 3, + "existing": 2, "DX": 2, "ICD9": 2, "AUPNVPOV": 2, @@ -37971,6 +37226,75 @@ ".F": 2, "..E": 1, "...S": 5, + "Digest": 2, + "simple": 2, + "OpenSSL": 3, + "based": 1, + "digest": 19, + "rewrite": 1, + "EVP_DigestInit": 1, + "wrapper.": 1, + "//www.openssl.org/docs/crypto/EVP_DigestInit.html": 1, + "digest.init": 3, + "usually": 1, + "algorithm": 1, + "specification.": 1, + "Anyway": 1, + "properly": 1, + "fail.": 1, + "ASCII": 2, + "HEX": 1, + "digest.update": 2, + ".c": 2, + "digest.final": 2, + ".d": 1, + "init": 6, + "alg": 3, + "context": 1, + "try": 1, + "etc": 1, + "returned": 1, + "occurs": 1, + "unknown": 1, + "update": 1, + "ctx": 4, + "updates": 1, + ".ctx": 2, + ".msg": 1, + "final": 1, + "hex": 1, + "frees": 1, + "memory": 1, + "allocated": 1, + ".digest": 1, + "algorithms": 1, + "availability": 1, + "depends": 1, + "libcrypto": 1, + "configuration": 1, + "md4": 1, + "sha": 1, + "sha1": 1, + "sha224": 1, + "sha256": 1, + "sha512": 1, + "dss1": 1, + "ripemd160": 1, + "label1": 1, + "if1": 2, + "statement": 3, + "if2": 2, + "statements": 1, + "contrasted": 1, + "": 3, + "a=": 3, + "smaller": 3, + "than": 4, + "if3": 1, + "else": 7, + "clause": 2, + "if4": 1, + "bodies": 1, "decode": 1, "val": 5, "Decoded": 1, @@ -37984,6 +37308,922 @@ "FUNC": 1, "DH": 1, "zascii": 1, + "ZDIOUT1": 1, + "Experimental": 1, + "FileMan": 1, + "host": 2, + "Open": 1, + "Source": 1, + "Electronic": 1, + "Health": 1, + "Record": 1, + "Agent": 1, + "Licensed": 1, + "Apache": 1, + "Version": 1, + "may": 3, + "except": 1, + "compliance": 1, + "License.": 2, + "//www.apache.org/licenses/LICENSE": 1, + "Unless": 1, + "applicable": 1, + "law": 1, + "agreed": 1, + "BASIS": 1, + "WARRANTIES": 1, + "OR": 2, + "CONDITIONS": 1, + "OF": 2, + "KIND": 1, + "express": 1, + "implied.": 1, + "governing": 1, + "permissions": 2, + "limitations": 1, + "ASKFILE": 1, + "FILE": 5, + "ASKDIR": 1, + "DIR": 3, + "SAVEFILE": 2, + "Save": 1, + "given": 1, + "directory": 1, + "CHECK": 1, + "FGR": 4, + "_FILE": 1, + "IO": 4, + "DIR_": 1, + "L": 1, + "FILENAME": 1, + "_IO_": 1, + "_P_": 1, + "NM": 1, + "non": 1, + "printing": 1, + "characters": 8, + "escaped": 1, + "evaluation": 1, + "RHS": 1, + "SET.": 1, + "TODO": 1, + "Caller": 1, + "indentation": 1, + "comment": 4, + "tab": 1, + "space.": 1, + "V": 2, + "miles": 4, + "gallons": 4, + "miles/gallons": 1, + "computepesimist": 1, + "miles/": 1, + "computeoptimist": 1, + "/gallons": 1, + "zmwire": 53, + "M/Wire": 4, + "Protocol": 2, + "Systems": 1, + "eg": 3, + "Cache": 3, + "By": 1, + "server": 1, + "port": 4, + "systems": 3, + "invoked": 2, + "via": 2, + "xinetd": 2, + "Edit": 1, + "/etc/services": 1, + "add": 5, + "mwire": 2, + "/tcp": 1, + "#": 1, + "Service": 1, + "Copy": 2, + "/etc/xinetd.d/mwire": 1, + "/usr/local/gtm/zmwire": 1, + "its": 1, + "executable": 1, + "These": 2, + "edited": 1, + "Restart": 1, + "sudo": 1, + "/etc/init.d/xinetd": 1, + "On": 1, + "installed": 1, + "MGWSI": 1, + "provide": 1, + "hashing": 1, + "passwords": 1, + "Alternatively": 1, + "substitute": 1, + "callout": 1, + "choice": 1, + "Daemon": 2, + "running": 1, + "jobbed": 1, + "job": 1, + "zmwireDaemon": 2, + "simply": 1, + "Stop": 1, + "RESJOB": 1, + "it.": 2, + "mwireVersion": 4, + "mwireDate": 2, + "July": 1, + "_crlf": 22, + "response": 29, + "zewd": 17, + "_response_": 4, + "_crlf_response_crlf": 4, + "zv": 6, + "authNeeded": 6, + "input": 41, + "cleardown": 2, + "zint": 1, + "role": 3, + "loop": 7, + "log": 1, + "halt": 3, + "auth": 2, + "ignore": 12, + "pid": 36, + "monitor": 1, + "input_crlf": 1, + "lineNo": 19, + "zsy": 2, + "_pid_": 1, + "_pid": 1, + "monitoroutput": 1, + "logger": 17, + "initialise": 3, + "tot": 2, + "mwireLogger": 3, + "increment": 11, + "info": 1, + "response_": 1, + "_count": 1, + "setpassword": 1, + "SETPASSWORD": 2, + "secret": 2, + "OK": 6, + "": 1, + "role=": 1, + "admin": 1, + "newrole": 4, + "getGloRef": 3, + "gloName": 1, + "gloRef": 15, + "nb": 2, + "subs": 8, + "len": 8, + "nsp": 1, + "subs_": 2, + "quot": 2, + "_data_": 3, + "subscripts": 8, + "_value_": 1, + "_error_": 1, + "ok": 14, + "kill": 3, + "xx": 16, + "yy": 19, + "allowed": 18, + "method": 2, + "Missing": 5, + "JSON": 7, + "transaction": 6, + "document": 6, + "setJSON": 4, + "json": 9, + "globalName": 7, + "GlobalName": 3, + "setGlobal": 1, + "zmwire_null_value": 1, + "]": 15, + "Invalid": 1, + "props": 1, + "arr": 2, + "getJSON": 2, + "incr": 1, + "incrbr": 1, + "class": 1, + "##": 2, + "decr": 1, + "decrby": 1, + "subscript": 7, + "direction": 1, + "subscriptValue": 1, + "dataStatus": 1, + "dataValue": 1, + "nextsubscript": 2, + "reverseorder": 1, + "query": 4, + "p2": 10, + "*2": 1, + "queryget": 1, + "xxyy": 2, + "zz": 2, + "numeric": 8, + "exists": 6, + "getallsubscripts": 1, + "orderall": 1, + "": 3, + "note": 2, + "escaping": 1, + "foo": 2, + "CacheTempEWD": 16, + "_gloRef": 1, + "@x": 4, + "_crlf_": 1, + "j_": 1, + "params": 10, + "resp": 5, + "_crlf_resp_crlf": 2, + "_crlf_data_crlf": 2, + "mergeto": 1, + "dataLength": 4, + "keyLength": 6, + "noOfRecs": 6, + "MERGETO": 1, + "myglobal": 1, + "*6": 1, + "hello": 1, + "": 2, + "put": 1, + "top": 1, + "N.N": 12, + "noOfRecs#2": 1, + "noOfRecs/2": 1, + "gloRef1": 2, + "gloRef1_": 2, + "_gloRef1_key_": 1, + "sub": 2, + "literal": 2, + "false": 5, + "valquot_value_valquot": 1, + "json_value_": 1, + "subscripts1": 2, + "dd": 4, + "subx": 3, + "subNo": 1, + "numsub": 1, + "json_": 2, + "removeControlChars": 2, + "zobj1": 1, + "buff": 10, + "parseJSONObject": 2, + ".buff": 2, + "subs2": 6, + "stop": 20, + "_name_": 1, + "subs2_": 2, + "value_c": 1, + "N.N1": 4, + "newString": 4, + "newString_c": 1, + "utfConvert": 1, + "Unescape": 1, + "buf": 4, + "c1": 4, + "buf_c1_": 1, + "tr": 13, + "exercise": 1, + "car": 14, + "GMRGPNB0": 1, + "CISC/JH/RM": 1, + "NARRATIVE": 1, + "BUILDER": 1, + "GENERATOR": 1, + "cont.": 1, + "/20/91": 1, + "Text": 1, + "Generator": 1, + "Jan": 1, + "ENTRY": 2, + "WITH": 1, + "GMRGA": 1, + "POINT": 1, + "AT": 1, + "WHICH": 1, + "WANT": 1, + "START": 1, + "BUILDING": 1, + "GMRGE0": 11, + "GMRGADD": 4, + "GMR": 6, + "GMRGA0": 11, + "GMRGPDA": 9, + "GMRGCSW": 2, + "NOW": 1, + "DTC": 1, + "GMRGB0": 9, + "GMRGST": 6, + "GMRGPDT": 2, + "STAT": 8, + "GMRGRUT0": 3, + "GMRGF0": 3, + "GMRGSTAT": 8, + "_GMRGB0_": 2, + "GMRD": 6, + "GMRGSSW": 3, + "SNT": 1, + "GMRGPNB1": 1, + "GMRGNAR": 8, + "GMRGPAR_": 2, + "_GMRGSPC_": 3, + "_GMRGRM": 2, + "_GMRGE0": 1, + "STORETXT": 1, + "GMRGRUT1": 1, + "GMRGSPC": 3, + "GMRGD0": 7, + "ALIST": 1, + "GMRGPLVL": 6, + "GMRGA0_": 1, + "_GMRGD0_": 1, + "_GMRGSSW_": 1, + "_GMRGADD": 1, + "GMRGI0": 6, + "MDB": 60, + "M/DB": 2, + "Mumps": 1, + "Emulation": 1, + "Amazon": 1, + "SimpleDB": 1, + "buildDate": 1, + "indexLength": 10, + "keyId": 108, + "tested": 1, + "valid": 2, + "these": 1, + "methods": 2, + "Initialise": 2, + "service": 1, + "//192.168.1.xxx/mdb/test.mgwsi": 1, + "Action": 2, + "addUser": 2, + "userKeyId": 6, + "userSecretKey": 6, + "requestId": 17, + "boxUsage": 11, + "startTime": 21, + ".startTime": 5, + "MDBUAF": 2, + ".boxUsage": 22, + "createDomain": 1, + "domainName": 38, + "dn": 4, + "dnx": 3, + "id": 33, + "noOfDomains": 12, + "token": 21, + "MDBConfig": 1, + "getDomainId": 3, + "found": 7, + "namex": 8, + "buildItemNameIndex": 2, + "domainId": 53, + "itemId": 41, + "itemValue": 7, + "itemValuex": 3, + "countDomains": 2, + "deleteDomain": 2, + "listDomains": 1, + "maxNoOfDomains": 2, + "nextToken": 7, + "domainList": 3, + "fullName": 3, + "decodeBase64": 1, + "encodeBase64": 1, + "itemExists": 1, + "getItemId": 2, + "getAttributeValueId": 3, + "attribId": 36, + "valuex": 13, + "putAttributes": 2, + "itemName": 16, + "attributes": 32, + "valueId": 16, + "xvalue": 4, + "Item": 1, + "Domain": 1, + "itemNamex": 4, + "parseJSON": 1, + "attributesJSON": 1, + ".attributes": 5, + "attribute": 14, + "getAttributeId": 2, + "domain": 1, + "Not": 1, + "now": 1, + "name/value": 2, + "pair": 1, + "getAttributes": 2, + "suppressBoxUsage": 1, + "attrNo": 9, + "valueNo": 6, + "delete": 2, + "item": 2, + "associated": 1, + "queryIndex": 1, + "records": 2, + "vno": 2, + "references": 1, + "maxNoOfItems": 3, + "itemList": 12, + "session": 1, + "identifier": 1, + "stored": 1, + "queryExpression": 16, + "relink": 1, + "zewdGTMRuntime": 1, + "CGIEVAR": 1, + "cgi": 1, + "unescName": 5, + "urlDecode": 2, + "KEY": 36, + "WebLink": 1, + "action": 15, + "AWSAcessKeyId": 1, + "db": 9, + "hash": 1, + "itemsAndAttrs": 2, + "secretKey": 1, + "signatureMethod": 2, + "signatureVersion": 3, + "stringToSign": 2, + "rltKey": 2, + "_action_": 2, + "h_": 3, + "mdbKey": 2, + "errorResponse": 9, + ".requestId": 7, + "createResponse": 4, + "installMDBM": 1, + "authenticate": 1, + "MDBSession": 1, + "createResponseStringToSign": 1, + "Security": 1, + "_db": 1, + "MDBAPI": 1, + "_db_": 1, + "db_": 1, + "_action": 1, + "metaData": 1, + "domainMetadata": 1, + ".metaData": 1, + "paramName": 8, + "paramValue": 5, + "Query": 1, + "DomainName": 2, + "QueryExpression": 2, + "MaxNumberOfItems": 2, + "NextToken": 3, + "QueryWithAttributes": 1, + "AttributeName.": 2, + "Select": 2, + "SelectExpression": 1, + "entering": 1, + "runSelect.": 1, + "selectExpression": 3, + "finished": 1, + "runSelect": 3, + "select": 3, + "asc": 1, + "inValue": 6, + "str": 15, + "expr": 18, + "rel": 2, + "itemStack": 3, + "between": 2, + "<=\">": 1, + "lastWord=": 7, + "inAttr=": 5, + "expr=": 10, + "thisWord=": 7, + "inAttr": 2, + "queryExpression=": 4, + "_queryExpression": 2, + "isNull": 1, + "5": 1, + "8": 1, + "isNotNull": 1, + "9": 1, + "np": 17, + "prevName": 1, + "np=": 1, + "diffNames": 6, + "_term": 3, + "expr_": 1, + "_orderBy": 1, + "runQuery": 2, + ".itemList": 4, + "escVals": 1, + "str_c": 2, + "_x_": 1, + "orderBy": 1, + "_query": 1, + "parseSelect": 1, + ".domainName": 2, + ".queryExpression": 1, + ".orderBy": 1, + ".limit": 1, + "replaceAll": 11, + "executeSelect": 1, + ".itemStack": 1, + "***": 2, + "listCopy": 3, + "escape": 7, + "externalSelect": 2, + "_keyId_": 1, + "_selectExpression": 1, + "FromStr": 6, + "ToStr": 4, + "InText": 4, + "p1": 5, + "stripTrailingSpaces": 2, + "spaces": 3, + "makeString": 3, + "string_spaces": 1, + "contrasting": 1, + "postconditionals": 1, + "commands": 1, + "post1": 1, + "postconditional": 3, + "purposely": 4, + "TEST": 16, + "post2": 1, + "special": 2, + "after": 3, + "post": 1, + "condition": 1, + "illustrate": 1, + "dynamic": 1, + "scope": 1, + "triangle1": 1, + "main2": 1, + "triangle2": 1, + "APIs": 1, + "Fri": 1, + "Nov": 1, + "getVersion": 1, + "zewdCompiler": 6, + "date": 1, + "getDate": 1, + "compilePage": 2, + "app": 13, + "technology": 9, + "outputPath": 4, + "multilingual": 4, + "maxLines": 4, + "compileAll": 2, + "templatePageName": 2, + "autoTranslate": 2, + "verbose": 2, + "zewdMgr": 1, + "startSession": 2, + "requestArray": 2, + "serverArray": 1, + "sessionArray": 5, + "filesArray": 1, + "zewdPHP": 8, + ".requestArray": 2, + ".serverArray": 1, + ".sessionArray": 3, + ".filesArray": 1, + "closeSession": 2, + "saveSession": 2, + "endOfPage": 2, + "prePageScript": 2, + "releaseLock": 2, + "tokeniseURL": 2, + "url": 2, + "zewdCompiler16": 5, + "getSessid": 1, + "isTokenExpired": 2, + "zewdSession": 39, + "initialiseSession": 1, + "deleteSession": 2, + "changeApp": 1, + "appName": 4, + "setRedirect": 1, + "toPage": 1, + "path": 4, + "getRootURL": 1, + "_sessid_": 3, + "_token_": 1, + "_nextPage": 1, + "zcvt": 11, + "nextPage": 1, + "isNextPageTokenValid": 2, + "zewdCompiler13": 10, + "isCSP": 1, + "normaliseTextValue": 1, + "text": 6, + "writeLine": 2, + "CacheTempBuffer": 2, + "displayOptions": 2, + "fieldName": 5, + "listName": 6, + "codeValue": 7, + "nnvp": 1, + "nvp": 1, + "textValue": 6, + "getSessionValue": 3, + "codeValueEsc": 7, + "textValueEsc": 7, + "htmlOutputEncode": 2, + "zewdAPI2": 5, + "_codeValueEsc_": 1, + "translationMode": 1, + "_appName": 1, + "typex": 1, + "avoid": 1, + "bug": 2, + "getPhraseIndex": 1, + "zewdCompiler5": 1, + "licensed": 1, + "setWarning": 2, + "isTemp": 11, + "setWLDSymbol": 1, + "Duplicate": 1, + "performance": 1, + "wldAppName": 1, + "wldName": 1, + "wldSessid": 1, + "zzname": 1, + "extcErr": 1, + "mess": 3, + "namespace": 1, + "valueErr": 1, + "exportCustomTags": 2, + "tagList": 1, + "filepath": 10, + ".tagList": 1, + "exportAllCustomTags": 2, + "importCustomTags": 2, + "filePath": 2, + "zewdForm": 1, + "stripSpaces": 6, + "obj": 6, + "prop": 6, + "setSessionObject": 3, + "allowJSONAccess": 1, + "sessionName": 30, + "disallowJSONAccess": 1, + "JSONAccess": 1, + "existsInSession": 2, + "existsInSessionArray": 2, + "p3": 3, + "p4": 2, + "p5": 2, + "p6": 2, + "p7": 2, + "p8": 2, + "p9": 2, + "p10": 2, + "p11": 2, + "clearSessionArray": 1, + "arrayName": 35, + "setSessionArray": 1, + "getSessionArray": 1, + "clearArray": 2, + "getSessionArrayErr": 1, + "Come": 1, + "addToSession": 2, + "@name": 4, + "mergeToSession": 1, + "mergeGlobalToSession": 2, + "mergeGlobalFromSession": 2, + "mergeArrayToSession": 1, + "mergeArrayToSessionObject": 2, + ".array": 1, + "mergeArrayFromSession": 1, + "mergeFromSession": 1, + "deleteFromSession": 1, + "deleteFromSessionObject": 1, + "sessionNameExists": 1, + "getSessionArrayValue": 2, + ".exists": 1, + "sessionArrayValueExists": 2, + "deleteSessionArrayValue": 2, + "Objects": 1, + "objectName": 13, + "propertyName": 3, + "propertyValue": 5, + "comma": 3, + "objectName_": 2, + "_propertyName": 2, + "_propertyName_": 2, + "_propertyValue_": 1, + "_p": 1, + "quoted": 1, + "removeDocument": 1, + "zewdDOM": 3, + "instanceName": 2, + "clearXMLIndex": 1, + "zewdSchemaForm": 1, + "closeDOM": 1, + "makeTokenString": 1, + "token_": 1, + "convertDateToSeconds": 1, + "hdate": 7, + "hdate*86400": 1, + "convertSecondsToDate": 1, + "secs": 2, + "secs#86400": 1, + "getTokenExpiry": 2, + "h*86400": 1, + "randChar": 1, + "R": 2, + "lowerCase": 2, + "stripLeadingSpaces": 2, + "d1": 7, + "zd": 1, + "<10>": 1, + "dd=": 2, + "mm=": 3, + "d1=": 1, + "p1=": 1, + "mm": 7, + "p2=": 1, + "yy=": 1, + "dd_": 1, + "mm_": 1, + "inetTime": 1, + "Decode": 1, + "Internet": 1, + "Format": 1, + "Time": 1, + "H": 1, + "Offset": 1, + "relative": 1, + "GMT": 1, + "hh": 4, + "ss": 4, + "_hh": 1, + "time#3600": 1, + "_mm": 1, + "time#60": 1, + "_ss": 2, + "hh_": 1, + "_mm_": 1, + "openNewFile": 2, + "openFile": 2, + "openDOM": 2, + "#39": 1, + "<\",\"<\")>": 1, + "string=": 1, + "gt": 1, + "amp": 1, + "HTML": 1, + "no2": 1, + "p1_c_p2": 1, + "getIP": 2, + "IP": 1, + "address": 1, + "ajaxErrorRedirect": 2, + "classExport": 2, + "className": 2, + ".methods": 1, + "strx": 2, + "disableEwdMgr": 1, + "enableEwdMgr": 1, + "enableWLDAccess": 1, + "disableWLDAccess": 1, + "isSSOValid": 2, + "sso": 2, + "zewdMgrAjax2": 1, + "uniqueId": 1, + "nodeOID": 2, + "filename": 2, + "linkToParentSession": 2, + "zewdCompiler20": 1, + "exportToGTM": 1, + "Comment": 1, + "block": 1, + "semicolon": 1, + "next": 1, + "legal": 1, + "blank": 1, + "whitespace": 2, + "alone": 1, + "Comments": 1, + "graphic": 3, + "such": 1, + "@#": 1, + "space": 1, + "considered": 1, + "though": 1, + "whose": 1, + "below": 1, + "NOT": 2, + "routine.": 1, + "multiple": 1, + "semicolons": 1, + "okay": 1, + "tag": 2, + "does": 1, + "Tag1": 1, + "Tags": 2, + "uppercase": 2, + "lowercase": 1, + "alphabetic": 2, + "HELO": 1, + "most": 1, + "common": 1, + "LABEL": 1, + "followed": 1, + "directly": 1, + "open": 1, + "parenthesis": 2, + "formal": 1, + "list": 1, + "close": 1, + "ANOTHER": 1, + "X": 19, + "Normally": 1, + "subroutine": 1, + "ended": 1, + "we": 1, + "taking": 1, + "advantage": 1, + "rule": 1, + "END": 1, + "implicit": 1, + "PRCAAPR": 1, + "WASH": 1, + "ISC@ALTOONA": 1, + "PA/RGY": 1, + "ACCOUNT": 1, + "PROFILE": 1, + "CONT": 1, + "/9/94": 1, + "AM": 1, + "Accounts": 1, + "Receivable": 1, + "**198": 1, + "Mar": 1, + "Per": 1, + "VHA": 1, + "Directive": 1, + "modified.": 1, + "PRCATY": 2, + "Y": 26, + "DEBT": 10, + "PRCADB": 5, + "PRCA": 14, + "COUNT": 2, + "OUT": 2, + "SEL": 1, + "BILL": 11, + "BAT": 8, + "TRAN": 5, + "DXS": 1, + "DTOUT": 2, + "DIROUT": 1, + "DIRUT": 1, + "DUOUT": 1, + "ASK": 3, + "DPTNOFZY": 2, + "DPTNOFZK": 2, + "DTIME": 1, + "UPPER": 1, + "VALM1": 1, + "RCD": 1, + "DISV": 2, + "NAM": 1, + "RCFN01": 1, + "COMP": 2, + "EN1": 1, + "PRCAATR": 1, + "Y_": 3, + "PRCADB_": 1, + "HDR": 1, + "PRCAAPR1": 3, + "HDR2": 1, + "DIS": 1, + "STAT1": 2, + "_PRCATY_": 1, + "COMP1": 2, + "RCY": 5, + "COMP2": 2, + "_STAT_": 1, + "_STAT": 1, + "payments": 1, + "_TRAN": 1, + "ax": 2, + "bx": 2, + "cx": 2, + "ay": 2, + "cy": 2, + "sumx": 3, + "sqrx": 3, + "sumxy": 5, + "x*x": 1, + "x*y": 1, "WVBRNOT": 1, "HCIOFO/FT": 1, "JR": 1, @@ -38015,7 +38255,6 @@ "IS": 3, "QUEUED.": 1, "WVB": 4, - "OR": 2, "OPEN": 1, "ONLY": 1, "CLOSED.": 1, @@ -38050,7 +38289,6 @@ "DEQUEUE": 1, "TASKMAN": 1, "QUEUE": 1, - "OF": 2, "PRINTOUT.": 1, "SETVARS": 2, "WVUTL5": 2, @@ -38067,242 +38305,7 @@ "DEVICE": 1, "WVBRNOT2": 1, "WVPOP": 1, - "WVLOOP": 1, - "ZDIOUT1": 1, - "Experimental": 1, - "FileMan": 1, - "host": 2, - "Open": 1, - "Source": 1, - "Electronic": 1, - "Health": 1, - "Record": 1, - "Agent": 1, - "Licensed": 1, - "Apache": 1, - "Version": 1, - "may": 3, - "except": 1, - "compliance": 1, - "License.": 2, - "//www.apache.org/licenses/LICENSE": 1, - "Unless": 1, - "applicable": 1, - "law": 1, - "agreed": 1, - "BASIS": 1, - "WARRANTIES": 1, - "CONDITIONS": 1, - "KIND": 1, - "express": 1, - "implied.": 1, - "governing": 1, - "permissions": 2, - "limitations": 1, - "ASKFILE": 1, - "FILE": 5, - "ASKDIR": 1, - "DIR": 3, - "SAVEFILE": 2, - "Save": 1, - "given": 1, - "directory": 1, - "CHECK": 1, - "FGR": 4, - "_FILE": 1, - "IO": 4, - "DIR_": 1, - "L": 1, - "FILENAME": 1, - "_IO_": 1, - "_P_": 1, - "NM": 1, - "non": 1, - "printing": 1, - "escaped": 1, - "evaluation": 1, - "RHS": 1, - "SET.": 1, - "TODO": 1, - "Caller": 1, - "indentation": 1, - "tab": 1, - "space.": 1, - "M/Wire": 4, - "Protocol": 2, - "Systems": 1, - "By": 1, - "server": 1, - "port": 4, - "systems": 3, - "invoked": 2, - "via": 2, - "xinetd": 2, - "Edit": 1, - "/etc/services": 1, - "mwire": 2, - "/tcp": 1, - "#": 1, - "Service": 1, - "Copy": 2, - "/etc/xinetd.d/mwire": 1, - "/usr/local/gtm/zmwire": 1, - "its": 1, - "executable": 1, - "edited": 1, - "Restart": 1, - "sudo": 1, - "/etc/init.d/xinetd": 1, - "On": 1, - "installed": 1, - "MGWSI": 1, - "provide": 1, - "hashing": 1, - "passwords": 1, - "Alternatively": 1, - "substitute": 1, - "callout": 1, - "choice": 1, - "Daemon": 2, - "running": 1, - "jobbed": 1, - "job": 1, - "zmwireDaemon": 2, - "simply": 1, - "Stop": 1, - "RESJOB": 1, - "mwireVersion": 4, - "mwireDate": 2, - "July": 1, - "_crlf": 22, - "_response_": 4, - "_crlf_response_crlf": 4, - "authNeeded": 6, - "input": 41, - "cleardown": 2, - "zint": 1, - "role": 3, - "loop": 7, - "log": 1, - "halt": 3, - "auth": 2, - "ignore": 12, - "pid": 36, - "monitor": 1, - "input_crlf": 1, - "zsy": 2, - "_pid_": 1, - "_pid": 1, - "monitoroutput": 1, - "logger": 17, - "tot": 2, - "mwireLogger": 3, - "info": 1, - "response_": 1, - "_count": 1, - "setpassword": 1, - "SETPASSWORD": 2, - "secret": 2, - "": 1, - "role=": 1, - "admin": 1, - "newrole": 4, - "getGloRef": 3, - "gloName": 1, - "gloRef": 15, - "nb": 2, - "subs": 8, - "nsp": 1, - "subs_": 2, - "_data_": 3, - "subscripts": 8, - "_value_": 1, - "_error_": 1, - "kill": 3, - "xx": 16, - "method": 2, - "Missing": 5, - "JSON": 7, - "transaction": 6, - "document": 6, - "setJSON": 4, - "GlobalName": 3, - "setGlobal": 1, - "zmwire_null_value": 1, - "Invalid": 1, - "props": 1, - "arr": 2, - "getJSON": 2, - "incr": 1, - "incrbr": 1, - "class": 1, - "##": 2, - "decr": 1, - "decrby": 1, - "direction": 1, - "subscriptValue": 1, - "dataStatus": 1, - "dataValue": 1, - "nextsubscript": 2, - "reverseorder": 1, - "*2": 1, - "queryget": 1, - "xxyy": 2, - "zz": 2, - "getallsubscripts": 1, - "orderall": 1, - "": 3, - "note": 2, - "escaping": 1, - "foo": 2, - "_gloRef": 1, - "@x": 4, - "_crlf_": 1, - "j_": 1, - "params": 10, - "_crlf_resp_crlf": 2, - "_crlf_data_crlf": 2, - "mergeto": 1, - "dataLength": 4, - "keyLength": 6, - "noOfRecs": 6, - "MERGETO": 1, - "myglobal": 1, - "*6": 1, - "hello": 1, - "": 2, - "put": 1, - "top": 1, - "noOfRecs#2": 1, - "noOfRecs/2": 1, - "gloRef1": 2, - "gloRef1_": 2, - "_gloRef1_key_": 1, - "sub": 2, - "literal": 2, - "valquot_value_valquot": 1, - "json_value_": 1, - "subscripts1": 2, - "subx": 3, - "subNo": 1, - "numsub": 1, - "json_": 2, - "removeControlChars": 2, - "zobj1": 1, - "buff": 10, - "parseJSONObject": 2, - ".buff": 2, - "subs2": 6, - "_name_": 1, - "subs2_": 2, - "value_c": 1, - "newString": 4, - "newString_c": 1, - "utfConvert": 1, - "Unescape": 1, - "buf": 4, - "c1": 4, - "buf_c1_": 1 + "WVLOOP": 1 }, "MTML": { "<$mt:Var>": 15, @@ -38339,6 +38342,11 @@ "": 1 }, "Makefile": { + "SHEBANG#!make": 1, + "%": 1, + "ls": 1, + "-": 6, + "l": 1, "all": 1, "hello": 4, "main.o": 3, @@ -38346,7 +38354,6 @@ "hello.o": 3, "g": 4, "+": 8, - "-": 6, "o": 1, "main.cpp": 2, "c": 3, @@ -38355,11 +38362,7 @@ "clean": 1, "rm": 1, "rf": 1, - "*o": 1, - "SHEBANG#!make": 1, - "%": 1, - "ls": 1, - "l": 1 + "*o": 1 }, "Markdown": { "Tender": 1 @@ -38414,48 +38417,27 @@ "bazCompo": 1 }, "Mathematica": { - "Get": 1, + "Paclet": 1, "[": 307, - "]": 286, - "Notebook": 2, + "Name": 1, + "-": 134, + "Version": 1, + "MathematicaVersion": 1, + "Description": 1, + "Creator": 1, + "Extensions": 1, "{": 227, + "Language": 1, + "MainPage": 1, + "}": 222, + "]": 286, + "Get": 1, + "Notebook": 2, "Cell": 28, "CellGroupData": 8, - "BoxData": 19, - "RowBox": 34, - "}": 222, "CellChangeTimes": 13, - "-": 134, "*": 19, - "SuperscriptBox": 1, - "MultilineFunction": 1, - "None": 8, - "Open": 7, - "NumberMarks": 3, - "False": 19, - "GraphicsBox": 2, - "Hue": 5, - "LineBox": 5, - "CompressedData": 9, - "AspectRatio": 1, - "NCache": 1, - "GoldenRatio": 1, - "(": 2, - ")": 1, - "Axes": 1, - "True": 7, - "AxesLabel": 1, - "AxesOrigin": 1, - "Method": 2, - "PlotRange": 1, - "PlotRangeClipping": 1, - "PlotRangePadding": 1, - "Scaled": 10, - "WindowSize": 1, - "WindowMargins": 1, - "Automatic": 9, - "FrontEndVersion": 1, - "StyleDefinitions": 1, + "BoxData": 19, "NamespaceBox": 1, "DynamicModuleBox": 1, "Typeset": 7, @@ -38465,9 +38447,13 @@ "Asynchronous": 1, "All": 1, "TimeConstraint": 1, + "Automatic": 9, + "Method": 2, "elements": 1, "pod1": 1, "XMLElement": 13, + "False": 19, + "True": 7, "FormBox": 4, "TagBox": 9, "GridBox": 2, @@ -38481,6 +38467,7 @@ "LineSpacing": 2, "GridBoxBackground": 1, "GrayLevel": 17, + "None": 8, "GridBoxItemSize": 2, "ColumnsEqual": 2, "RowsEqual": 2, @@ -38499,6 +38486,7 @@ "TraditionalOrder": 1, "&": 2, "pod2": 1, + "RowBox": 34, "LinebreakAdjustments": 2, "FontFamily": 1, "UnitFontFamily": 1, @@ -38510,13 +38498,17 @@ "ZeroWidthTimes": 1, "pod3": 1, "TemplateBox": 1, + "GraphicsBox": 2, "GraphicsComplexBox": 1, + "CompressedData": 9, "EdgeForm": 2, "Directive": 5, "Opacity": 2, + "Hue": 5, "GraphicsGroupBox": 2, "PolygonBox": 3, "RGBColor": 3, + "LineBox": 5, "Dashing": 1, "Small": 1, "GridLines": 1, @@ -38535,20 +38527,13 @@ "Epilog": 1, "CapForm": 1, "Offset": 8, + "Scaled": 10, "DynamicBox": 1, "ToBoxes": 1, "DynamicModule": 1, "pt": 1, + "(": 2, "NearestFunction": 1, - "Paclet": 1, - "Name": 1, - "Version": 1, - "MathematicaVersion": 1, - "Description": 1, - "Creator": 1, - "Extensions": 1, - "Language": 1, - "MainPage": 1, "BeginPackage": 1, ";": 42, "PossiblyTrueQ": 3, @@ -38616,74 +38601,208 @@ "i": 3, "+": 2, "Print": 1, - "Break": 1 + "Break": 1, + "SuperscriptBox": 1, + "MultilineFunction": 1, + "Open": 7, + "NumberMarks": 3, + "AspectRatio": 1, + "NCache": 1, + "GoldenRatio": 1, + ")": 1, + "Axes": 1, + "AxesLabel": 1, + "AxesOrigin": 1, + "PlotRange": 1, + "PlotRangeClipping": 1, + "PlotRangePadding": 1, + "WindowSize": 1, + "WindowMargins": 1, + "FrontEndVersion": 1, + "StyleDefinitions": 1 }, "Matlab": { "function": 34, - "[": 311, - "dx": 6, - "y": 25, - "]": 311, - "adapting_structural_model": 2, + "data": 27, + "load_bikes": 2, "(": 1379, - "t": 32, - "x": 46, - "u": 3, - "varargin": 25, + "bikes": 24, + "input": 14, ")": 1380, "%": 554, - "size": 11, - "aux": 3, - "{": 157, - "end": 150, - "}": 157, + "speeds": 21, + "[": 311, + "]": 311, ";": 909, - "m": 44, - "zeros": 61, - "b": 12, + "speedNames": 12, + "{": 157, + "}": 157, + "gains.Benchmark.Slow": 1, + "-": 673, + "place": 2, + "holder": 2, + "gains.Browserins.Slow": 1, + "gains.Browser.Slow": 1, + "gains.Pista.Slow": 1, + "gains.Fisher.Slow": 1, + "gains.Yellow.Slow": 1, + "gains.Yellowrev.Slow": 1, + "gains.Benchmark.Medium": 1, + "gains.Browserins.Medium": 1, + "gains.Browser.Medium": 1, + "gains.Pista.Medium": 1, + "gains.Fisher.Medium": 1, + "gains.Yellow.Medium": 1, + "gains.Yellowrev.Medium": 1, + "gains.Benchmark.Fast": 1, + "gains.Browserins.Fast": 1, + "gains.Browser.Fast": 1, + "gains.Pista.Fast": 1, + "gains.Fisher.Fast": 1, + "gains.Yellow.Fast": 1, + "gains.Yellowrev.Fast": 1, "for": 78, "i": 338, - "if": 52, - "+": 169, - "elseif": 14, - "else": 23, - "display": 10, - "aux.pars": 3, - ".*": 2, - "Yp": 2, - "human": 1, - "aux.timeDelay": 2, - "c1": 5, - "aux.m": 3, - "*": 46, - "aux.b": 3, - "e": 14, - "-": 673, - "c2": 5, - "Yc": 5, - "parallel": 2, - "plant": 4, - "aux.plantFirst": 2, - "aux.plantSecond": 2, - "Ys": 1, - "feedback": 1, - "A": 11, - "B": 9, - "C": 13, - "D": 7, - "tf2ss": 1, - "Ys.num": 1, - "Ys.den": 1, - "average": 1, + "length": 49, + "j": 242, + "data.": 6, + ".": 13, + "...": 162, + "generate_data": 5, + "gains.": 1, + "end": 150, + "tic": 7, + "clear": 13, + "Range": 1, + "definition": 2, "n": 102, - "|": 2, - "&": 4, - "error": 16, - "sum": 2, - "/length": 1, + "mu": 73, + "xl1": 13, + "yl1": 12, + "xl2": 9, + "yl2": 8, + "xl3": 8, + "yl3": 8, + "xl4": 10, + "yl4": 9, + "xl5": 8, + "yl5": 8, + "Lagr": 6, + "C_L1": 3, + "*Omega": 5, + "E_0": 4, + "C_L1/2": 1, + "+": 169, + "Y_0": 4, + "nx": 32, + "x_0_min": 8, + "x_0_max": 8, + "x_0": 45, + "linspace": 14, + "dx": 6, + "/": 59, + "nvx": 32, + "vx_0_min": 8, + "vx_0_max": 8, + "vx_0": 37, + "dvx": 3, + "ny": 29, + "dy": 5, + "/2": 3, + "y_0": 29, + "ne": 29, + "de": 4, + "e_0": 7, + "Definition": 1, + "of": 35, + "arrays": 1, + "initial": 5, + "conditions": 3, + "In": 1, + "this": 2, + "approach": 1, + "only": 7, + "useful": 9, + "pints": 1, + "are": 1, + "stored": 1, + "and": 7, + "integrated": 5, + "m": 44, + "filter": 14, + "zeros": 61, + "k": 75, + "l": 64, + "v_y": 3, + "sqrt": 14, + "*e_0": 3, + "if": 52, + "&&": 13, + "isreal": 8, + "x": 46, + "y": 25, + "vx": 2, + "e": 14, + "vy": 2, + "Selection": 1, + "points": 11, + "Data": 2, + "transfer": 1, + "to": 9, + "GPU": 3, + "x_gpu": 3, + "gpuArray": 4, + "y_gpu": 3, + "vx_gpu": 3, + "vy_gpu": 3, + "Integration": 2, + "on": 13, + "N": 9, + "t0": 6, + "x_f": 3, + "y_f": 3, + "vx_f": 3, + "vy_f": 3, + "arrayfun": 2, + "@RKF45_FILE_gpu": 1, + "back": 1, + "CPU": 1, + "memory": 1, + "cleaning": 1, + "x_T": 25, + "gather": 4, + "y_T": 17, + "vx_T": 22, + "vy_T": 12, + "Construction": 1, + "matrix": 3, + "FTLE": 14, + "computation": 2, + "X_T": 4, + "Y_T": 4, + "VX_T": 4, + "VY_T": 3, + "E_T": 11, + "*": 46, + "Omega": 7, + "Compute": 3, + "filter_ftle": 11, + "||": 3, + "ftle": 10, + "dphi": 12, + "Compute_FILE_gpu": 1, + "Plot": 1, + "results": 1, + "figure": 17, + "squeeze": 1, + "pcolor": 2, + "shading": 3, + "flat": 3, + "toc": 5, "bicycle": 7, "bicycle_state_space": 1, "speed": 20, + "varargin": 25, "S": 5, "dbstack": 1, "CURRENT_DIRECTORY": 2, @@ -38692,7 +38811,10 @@ "par": 7, "par_text_to_struct": 4, "filesep": 14, - "...": 162, + "A": 11, + "B": 9, + "C": 13, + "D": 7, "whipple_pull_force_abcd": 2, "states": 7, "outputs": 10, @@ -38700,16 +38822,20 @@ "defaultSettings.states": 1, "defaultSettings.inputs": 1, "defaultSettings.outputs": 1, + "size": 11, "userSettings": 3, "varargin_to_structure": 2, + "else": 23, "struct": 1, "settings": 3, "overwrite_settings": 2, "defaultSettings": 3, "minStates": 2, + "sum": 2, "ismember": 15, "settings.states": 3, "<": 9, + "error": 16, "keepStates": 2, "find": 24, "removeStates": 1, @@ -38726,42 +38852,467 @@ "is": 7, "not": 3, "possible": 1, - "to": 9, "keep": 1, "output": 7, "because": 1, "it": 1, "depends": 1, - "on": 13, - "input": 14, "StateName": 1, "OutputName": 1, "InputName": 1, - "x_0": 45, - "linspace": 14, - "vx_0": 37, - "z": 3, - "j": 242, - "*vx_0": 1, - "figure": 17, - "pcolor": 2, - "shading": 3, - "flat": 3, - "name": 4, + "RK4": 3, + "fun": 5, + "tspan": 7, + "ci": 9, + "th": 1, "order": 11, + "Runge": 1, + "Kutta": 1, + "integrator": 2, + "h": 19, + "t": 32, + "T": 22, + "dim": 2, + "while": 1, + "k1": 4, + "k2": 3, + "h/2": 2, + "k1*h/2": 1, + "k3": 3, + "k2*h/2": 1, + "k4": 4, + "h*k3": 1, + "h/6*": 1, + "*k2": 1, + "*k3": 1, + "name": 4, "convert_variable": 1, "variable": 10, "coordinates": 6, - "speeds": 21, "get_variables": 2, "columns": 4, - "create_ieee_paper_plots": 2, - "data": 27, + "elseif": 14, + "lane_change": 1, + "start": 4, + "width": 3, + "slope": 3, + "pathLength": 3, + "num": 24, + "type": 4, + "single": 1, + "double": 1, + "Double": 1, + "lane": 4, + "change": 1, + "needs": 1, + "lane.": 1, + "laneLength": 4, + "startOfSlope": 3, + "endOfSlope": 1, + "&": 4, + "<=>": 1, + "ones": 6, + "1": 1, + "downSlope": 3, + "load_data": 4, + "t1": 6, + "t2": 6, + "t3": 1, + "dataPlantOne": 3, + "data.Ts": 6, + "dataAdapting": 3, + "dataPlantTwo": 3, + "guessPlantOne": 4, + "resultPlantOne": 1, + "find_structural_gains": 2, + "yh": 2, + "fit": 6, + "x0": 4, + "compare": 3, + "resultPlantOne.fit": 1, + "display": 10, + "guessPlantTwo": 3, + "resultPlantTwo": 1, + "resultPlantTwo.fit": 1, + "kP1": 4, + "resultPlantOne.fit.par": 1, + "kP2": 3, + "resultPlantTwo.fit.par": 1, + "gainSlopeOffset": 6, + "eye": 9, + "aux.pars": 3, + "uses": 1, + "tau": 1, + "through": 1, + "wfs": 1, + "aux.timeDelay": 2, + "true": 2, + "aux.plantFirst": 2, + "aux.plantSecond": 2, + "plantOneSlopeOffset": 3, + "plantTwoSlopeOffset": 3, + "aux.m": 3, + "aux.b": 3, + "adapting_structural_model": 2, + "aux": 3, + "mod": 3, + "idnlgrey": 1, + "pem": 1, + "classdef": 1, + "matlab_class": 2, + "properties": 1, + "R": 1, + "G": 1, + "methods": 1, + "obj": 2, + "r": 2, + "g": 5, + "b": 12, + "obj.R": 2, + "obj.G": 2, + "obj.B": 2, + "disp": 8, + "num2str": 10, + "enumeration": 1, + "red": 1, + "green": 1, + "blue": 1, + "cyan": 1, + "magenta": 1, + "yellow": 1, + "black": 1, + "white": 1, + "value": 2, + "isterminal": 2, + "direction": 2, + "distance": 6, + "d": 12, + "FIXME": 1, + "from": 2, + "the": 14, + "largest": 1, + "primary": 1, + "all": 15, + "Choice": 2, + "mass": 2, + "parameter": 2, + "Computation": 9, + "Lagrangian": 3, + "Points": 2, + "total": 6, + "energy": 8, + "E_L1": 4, + "E": 8, + "Offset": 2, + "as": 4, + "in": 8, + "Initial": 3, + "range": 2, + "ndgrid": 2, + "vy_0": 22, + "*E": 2, + "vx_0.": 2, + "E_cin": 4, + "Transforming": 1, + "into": 1, + "Hamiltonian": 1, + "variables": 2, + "px_0": 2, + "py_0": 2, + "px_T": 4, + "py_T": 4, + "filtro": 15, + "a": 17, + "numbers": 2, + "integration": 9, + "steps": 2, + "each": 2, + "np": 8, + "number": 2, + "fprintf": 18, + "Energy": 4, + "tolerance": 2, + "setting": 4, + "energy_tol": 6, + "inf": 1, + "Jacobian": 3, + "system": 2, + "options": 14, + "odeset": 4, + "@cr3bp_jac": 1, + "Parallel": 2, + "equations": 2, + "motion": 2, + "parfor": 5, + "Check": 6, + "real": 3, + "velocity": 2, + "positive": 2, + "Kinetic": 2, + "Y": 19, + "ode45": 6, + "@fH": 1, + "Saving": 4, + "solutions": 2, + "final": 2, + "difference": 2, + "with": 2, + "one": 3, + "EnergyH": 1, + "delta_E": 7, + "conservation": 2, + "position": 2, + "point": 14, + "interesting": 4, + "non": 2, + "sense": 2, + "bad": 4, + "t_integrazione": 3, + "t_integr": 1, + "Back": 1, + "Manual": 2, + "visualize": 2, + "Inf": 1, + "*T": 3, + "*log": 2, + "max": 9, + "eig": 6, + "tempo": 4, + "per": 5, + "integrare": 2, + ".2f": 5, + "calcolare": 2, + "var_": 2, + "_": 2, + "var_xvx_": 2, + "ode00": 2, + "_n": 2, + "_e": 1, + "_H": 1, + "save": 2, + "nome": 2, + "arguments": 7, + "ischar": 1, + "options.": 1, + "ret": 3, + "matlab_function": 5, + "average": 1, + "|": 2, + "/length": 1, + "d_mean": 3, + "d_std": 3, + "normalize": 1, + "mean": 2, + "repmat": 2, + "std": 1, + "d./": 1, + "filename": 21, + "guess.plantOne": 3, + "guess.plantTwo": 2, + "plantNum.plantOne": 2, + "plantNum.plantTwo": 2, + "sections": 13, + "secData.": 1, + "strcmp": 24, + "guess.": 2, + "result.": 2, + ".fit.par": 1, + "currentGuess": 2, + ".*": 2, + "warning": 1, + "randomGuess": 1, + "The": 6, + "self": 2, + "validation": 2, + "VAF": 2, + "f.": 2, + "data/": 1, + "results.mat": 1, + "guess": 1, + "plantNum": 1, + "result": 5, + "plots/": 1, + ".png": 1, + "task": 1, + "plant": 4, + "closed": 1, + "loop": 1, + "u.": 1, + "gain": 1, + "guesses": 1, + "f": 13, + "identified": 1, + "gains": 12, + ".vaf": 1, + "x_min": 3, + "x_max": 3, + "y_min": 3, + "y_max": 3, + "how": 1, + "many": 1, + "measure": 1, + "unit": 1, + "both": 1, + "ds": 1, + "x_res": 7, + "*n": 2, + "y_res": 7, + "grid_x": 3, + "grid_y": 3, + "advected_x": 12, + "advected_y": 12, + "X": 6, + "@dg": 1, + "store": 4, + "advected": 2, + "positions": 2, + "they": 2, + "would": 2, + "appear": 2, + "coords": 2, + "sigma": 6, + "compute": 2, + "phi": 13, + "*ds": 4, + "eigenvalue": 2, + "*phi": 2, + "log": 2, + "lambda_max": 2, + "/abs": 3, + "plot": 26, + "field": 2, + "contourf": 2, + "location": 1, + "EastOutside": 1, + "axis": 5, + "equal": 2, + "Elements": 1, + "grid": 1, + "Dimensionless": 1, + "integrating": 1, + "time": 21, + "*E_L1": 1, + "Szebehely": 1, + "Setting": 1, + "RelTol": 2, + "AbsTol": 2, + "From": 1, + "Short": 1, + "waitbar": 6, + "r1": 3, + "r2": 3, + "i/n": 1, + "y_0.": 2, + "./": 1, + "mu./": 1, + "@f_reg": 1, + "close": 4, + "filtro_1": 12, + "ftle_norm": 1, + "ds_x": 1, + "ds_vx": 1, + "La": 1, + "direzione": 1, + "dello": 1, + "spostamento": 1, + "la": 2, + "decide": 1, + "il": 1, + "denominatore": 1, + "TODO": 1, + "spiegarsi": 1, + "teoricamente": 1, + "come": 1, + "mai": 1, + "matrice": 1, + "pu": 1, + "essere": 1, + "ridotta": 1, + "x2": 1, + "*ds_x": 2, + "*ds_vx": 2, + "dphi*dphi": 1, + "Conditions": 1, + "*Potential": 5, + "@cross_y": 1, + "te": 2, + "ye": 9, + "ie": 2, + "ode113": 2, + "@f": 6, + "e_T": 7, + "delta_e": 3, + "Integrate_FTLE_Gawlick_ell": 1, + "ecc": 2, + "nu": 2, + "Integrate": 6, + "Look": 2, + "phisically": 2, + "meaningful": 6, + "meaningless": 2, + "i/nx": 2, + "ecc*cos": 1, + "@f_ell": 1, + "Consider": 1, + "also": 1, + "negative": 1, + "goodness": 1, + "clc": 1, "rollData": 8, + "create_ieee_paper_plots": 2, + "f_x_t": 2, + "inline": 1, + "grid_min": 3, + "grid_max": 3, + "grid_width": 1, + "grid_spacing": 5, + "grid_width/": 1, + "*grid_width/": 4, + "colorbar": 1, + "z": 3, + "*vx_0": 1, + "filtfcn": 2, + "statefcn": 2, + "makeFilter": 1, + "v": 12, + "@iirFilter": 1, + "@getState": 1, + "yn": 2, + "iirFilter": 1, + "xn": 4, + "vOut": 2, + "getState": 1, + "Call": 2, + "which": 2, + "resides": 2, + "same": 2, + "directory": 2, + "value1": 4, + "semicolon": 2, + "at": 3, + "line": 15, + "mandatory": 2, + "suppresses": 2, + "command": 2, + "line.": 2, + "value2": 4, + "Integrate_FILE": 1, + "Potential": 1, + "overrideSettings": 3, + "overrideNames": 2, + "fieldnames": 5, + "defaultNames": 2, + "notGiven": 5, + "setxor": 1, + "settings.": 1, + "defaultSettings.": 1, + "c1": 5, + "roots": 3, + "*mu": 6, + "c2": 5, + "c3": 3, "global": 6, "goldenRatio": 12, - "sqrt": 14, - "/": 59, "exist": 1, "mkdir": 1, "linestyles": 15, @@ -38775,7 +39326,6 @@ "var": 3, "io": 7, "typ": 3, - "length": 49, "plot_io": 1, "phase_portraits": 2, "eigenvalues": 2, @@ -38786,13 +39336,11 @@ "gcf": 17, "freq": 12, "hold": 23, - "all": 15, "closedLoops": 1, "bikeData.closedLoops": 1, "bops": 7, "bodeoptions": 1, "bops.FreqUnits": 1, - "strcmp": 24, "gray": 7, "deltaNum": 2, "closedLoops.Delta.num": 1, @@ -38835,13 +39383,11 @@ "annotation": 13, "dArrow2": 2, "dArrow": 2, - "filename": 21, "pathToFile": 11, "print": 6, "fix_ps_linestyle": 6, "openLoops": 1, "bikeData.openLoops": 1, - "num": 24, "openLoops.Phi.num": 1, "den": 15, "openLoops.Phi.den": 1, @@ -38850,10 +39396,8 @@ "openLoops.Y.num": 1, "openLoops.Y.den": 1, "openBode": 3, - "line": 15, "wc": 14, "wShift": 5, - "num2str": 10, "bikeData.handlingMetric.num": 1, "bikeData.handlingMetric.den": 1, "w": 6, @@ -38861,8 +39405,6 @@ "phase": 2, "bode": 5, "metricLine": 1, - "plot": 26, - "k": 75, "Linewidth": 7, "Color": 13, "Linestyle": 6, @@ -38886,15 +39428,12 @@ "PaperPosition": 3, "PaperSize": 3, "rad/sec": 1, - "phi": 13, "Open": 1, "Loop": 1, "Bode": 1, "Diagrams": 1, - "at": 3, "m/s": 6, "Latex": 1, - "type": 4, "LineStyle": 2, "LineWidth": 2, "Location": 2, @@ -38909,16 +39448,11 @@ "openBode.eps": 1, "deps2c": 3, "maxMag": 2, - "max": 9, "magnitudes": 1, "area": 1, "fillColors": 1, "gca": 8, - "speedNames": 12, "metricLines": 2, - "bikes": 24, - "data.": 6, - ".": 13, ".handlingMetric.num": 1, ".handlingMetric.den": 1, "chil": 2, @@ -38927,7 +39461,6 @@ "free": 1, "@": 1, "handling.eps": 1, - "f": 13, "YTick": 1, "YTickLabel": 1, "Path": 1, @@ -38936,14 +39469,12 @@ "Lateral": 1, "Deviation": 1, "paths.eps": 1, - "d": 12, "like": 1, "plot.": 1, "names": 6, "prettyNames": 3, "units": 3, "index": 6, - "fieldnames": 5, "data.Browser": 1, "maxValue": 4, "oneSpeed": 3, @@ -38953,10 +39484,8 @@ "pad": 10, "yShift": 16, "xShift": 3, - "time": 21, "oneSpeed.time": 2, "oneSpeed.speed": 2, - "distance": 6, "xAxis": 12, "xData": 3, "textX": 3, @@ -38971,7 +39500,6 @@ "first": 3, "ylabel": 4, "box": 4, - "&&": 13, "x_r": 6, "y_r": 6, "w_r": 5, @@ -38984,7 +39512,6 @@ "w_a": 7, "h_a": 5, "ax": 15, - "axis": 5, "rollData.speed": 1, "rollData.time": 1, "path": 3, @@ -39009,12 +39536,10 @@ "legends": 3, "floatSpec": 3, "twentyPercent": 1, - "generate_data": 5, "nominalData": 1, "nominalData.": 2, "bikeData.": 2, "twentyPercent.": 2, - "equal": 2, "leg1": 2, "bikeData.modelPar.": 1, "leg2": 2, @@ -39023,15 +39548,24 @@ "pathToParFile": 2, "str": 2, "eigenValues": 1, - "eig": 6, - "real": 3, "zeroIndices": 3, - "ones": 6, "maxEvals": 4, "maxLine": 7, "minLine": 4, "min": 1, "speedInd": 12, + "fid": 7, + "fopen": 2, + "textscan": 1, + "fclose": 2, + "strtrim": 2, + "vals": 2, + "regexp": 1, + "par.": 1, + "str2num": 1, + "arg1": 1, + "arg": 2, + "RK4_par": 1, "cross_validation": 1, "hyper_parameter": 3, "num_data": 2, @@ -39048,455 +39582,16 @@ "y_test": 3, "calc_cost": 1, "calc_error": 2, - "mean": 2, - "value": 2, - "isterminal": 2, - "direction": 2, - "mu": 73, - "FIXME": 1, - "from": 2, - "the": 14, - "largest": 1, - "primary": 1, - "clear": 13, - "tic": 7, - "T": 22, - "x_min": 3, - "x_max": 3, - "y_min": 3, - "y_max": 3, - "how": 1, - "many": 1, - "points": 11, - "per": 5, - "one": 3, - "measure": 1, - "unit": 1, - "both": 1, - "in": 8, - "and": 7, - "ds": 1, - "x_res": 7, - "*n": 2, - "y_res": 7, - "grid_x": 3, - "grid_y": 3, - "advected_x": 12, - "advected_y": 12, - "parfor": 5, - "X": 6, - "ode45": 6, - "@dg": 1, - "store": 4, - "advected": 2, - "positions": 2, - "as": 4, - "they": 2, - "would": 2, - "appear": 2, - "coords": 2, - "Compute": 3, - "FTLE": 14, - "sigma": 6, - "compute": 2, - "Jacobian": 3, - "*ds": 4, - "eigenvalue": 2, - "of": 35, - "*phi": 2, - "log": 2, - "lambda_max": 2, - "/abs": 3, - "*T": 3, - "toc": 5, - "field": 2, - "contourf": 2, - "location": 1, - "EastOutside": 1, - "f_x_t": 2, - "inline": 1, - "grid_min": 3, - "grid_max": 3, - "grid_width": 1, - "grid_spacing": 5, - "grid_width/": 1, - "*grid_width/": 4, - "colorbar": 1, - "load_data": 4, - "t0": 6, - "t1": 6, - "t2": 6, - "t3": 1, - "dataPlantOne": 3, - "data.Ts": 6, - "dataAdapting": 3, - "dataPlantTwo": 3, - "guessPlantOne": 4, - "resultPlantOne": 1, - "find_structural_gains": 2, - "yh": 2, - "fit": 6, - "x0": 4, - "compare": 3, - "resultPlantOne.fit": 1, - "guessPlantTwo": 3, - "resultPlantTwo": 1, - "resultPlantTwo.fit": 1, - "kP1": 4, - "resultPlantOne.fit.par": 1, - "kP2": 3, - "resultPlantTwo.fit.par": 1, - "gainSlopeOffset": 6, - "eye": 9, - "this": 2, - "only": 7, - "uses": 1, - "tau": 1, - "through": 1, - "wfs": 1, - "true": 2, - "plantOneSlopeOffset": 3, - "plantTwoSlopeOffset": 3, - "mod": 3, - "idnlgrey": 1, - "pem": 1, - "guess.plantOne": 3, - "guess.plantTwo": 2, - "plantNum.plantOne": 2, - "plantNum.plantTwo": 2, - "sections": 13, - "secData.": 1, - "||": 3, - "guess.": 2, - "result.": 2, - ".fit.par": 1, - "currentGuess": 2, - "warning": 1, - "randomGuess": 1, - "The": 6, - "self": 2, - "validation": 2, - "VAF": 2, - "f.": 2, - "data/": 1, - "results.mat": 1, - "guess": 1, - "plantNum": 1, - "result": 5, - "plots/": 1, - ".png": 1, - "task": 1, - "closed": 1, - "loop": 1, - "system": 2, - "u.": 1, - "gain": 1, - "guesses": 1, - "k1": 4, - "k2": 3, - "k3": 3, - "k4": 4, - "identified": 1, - "gains": 12, - ".vaf": 1, - "Elements": 1, - "grid": 1, - "definition": 2, - "Dimensionless": 1, - "integrating": 1, - "Choice": 2, - "mass": 2, - "parameter": 2, - "Computation": 9, - "Lagrangian": 3, - "Points": 2, - "xl1": 13, - "yl1": 12, - "xl2": 9, - "yl2": 8, - "xl3": 8, - "yl3": 8, - "xl4": 10, - "yl4": 9, - "xl5": 8, - "yl5": 8, - "Lagr": 6, - "initial": 5, - "total": 6, - "energy": 8, - "E_L1": 4, - "Omega": 7, - "C_L1": 3, - "*E_L1": 1, - "Szebehely": 1, - "E": 8, - "Offset": 2, - "Initial": 3, - "conditions": 3, - "range": 2, - "x_0_min": 8, - "x_0_max": 8, - "vx_0_min": 8, - "vx_0_max": 8, - "y_0": 29, - "ndgrid": 2, - "vy_0": 22, - "*E": 2, - "*Omega": 5, - "vx_0.": 2, - "E_cin": 4, - "x_T": 25, - "y_T": 17, - "vx_T": 22, - "vy_T": 12, - "filtro": 15, - "E_T": 11, - "delta_E": 7, - "a": 17, - "matrix": 3, - "numbers": 2, - "integration": 9, - "steps": 2, - "each": 2, - "np": 8, - "number": 2, - "integrated": 5, - "fprintf": 18, - "Energy": 4, - "tolerance": 2, - "setting": 4, - "energy_tol": 6, - "Setting": 1, - "options": 14, - "integrator": 2, - "RelTol": 2, - "AbsTol": 2, - "From": 1, - "Short": 1, - "odeset": 4, - "Parallel": 2, - "equations": 2, - "motion": 2, - "h": 19, - "waitbar": 6, - "r1": 3, - "r2": 3, - "g": 5, - "i/n": 1, - "y_0.": 2, - "./": 1, - "mu./": 1, - "isreal": 8, - "Check": 6, - "velocity": 2, - "positive": 2, - "Kinetic": 2, - "Y": 19, - "@f_reg": 1, - "Saving": 4, - "solutions": 2, - "final": 2, - "difference": 2, - "with": 2, - "conservation": 2, - "position": 2, - "point": 14, - "interesting": 4, - "non": 2, - "sense": 2, - "bad": 4, - "close": 4, - "t_integrazione": 3, - "filtro_1": 12, - "dphi": 12, - "ftle": 10, - "ftle_norm": 1, - "ds_x": 1, - "ds_vx": 1, - "La": 1, - "direzione": 1, - "dello": 1, - "spostamento": 1, - "la": 2, - "decide": 1, - "il": 1, - "denominatore": 1, - "TODO": 1, - "spiegarsi": 1, - "teoricamente": 1, - "come": 1, - "mai": 1, - "matrice": 1, - "pu": 1, - "essere": 1, - "ridotta": 1, - "x2": 1, - "*ds_x": 2, - "*ds_vx": 2, - "Manual": 2, - "visualize": 2, - "*log": 2, - "dphi*dphi": 1, - "tempo": 4, - "integrare": 2, - ".2f": 5, - "calcolare": 2, - "var_": 2, - "_": 2, - "var_xvx_": 2, - "ode00": 2, - "_n": 2, - "save": 2, - "nome": 2, - "Transforming": 1, - "into": 1, - "Hamiltonian": 1, - "variables": 2, - "px_0": 2, - "py_0": 2, - "px_T": 4, - "py_T": 4, - "inf": 1, - "@cr3bp_jac": 1, - "@fH": 1, - "EnergyH": 1, - "t_integr": 1, - "Back": 1, - "Inf": 1, - "_e": 1, - "_H": 1, - "Range": 1, - "E_0": 4, - "C_L1/2": 1, - "Y_0": 4, - "nx": 32, - "nvx": 32, - "dvx": 3, - "ny": 29, - "dy": 5, - "/2": 3, - "ne": 29, - "de": 4, - "e_0": 7, - "Definition": 1, - "arrays": 1, - "In": 1, - "approach": 1, - "useful": 9, - "pints": 1, - "are": 1, - "stored": 1, - "filter": 14, - "l": 64, - "v_y": 3, - "*e_0": 3, - "vx": 2, - "vy": 2, - "Selection": 1, - "Data": 2, - "transfer": 1, - "GPU": 3, - "x_gpu": 3, - "gpuArray": 4, - "y_gpu": 3, - "vx_gpu": 3, - "vy_gpu": 3, - "Integration": 2, - "N": 9, - "x_f": 3, - "y_f": 3, - "vx_f": 3, - "vy_f": 3, - "arrayfun": 2, - "@RKF45_FILE_gpu": 1, - "back": 1, - "CPU": 1, - "memory": 1, - "cleaning": 1, - "gather": 4, - "Construction": 1, - "computation": 2, - "X_T": 4, - "Y_T": 4, - "VX_T": 4, - "VY_T": 3, - "filter_ftle": 11, - "Compute_FILE_gpu": 1, - "Plot": 1, - "results": 1, - "squeeze": 1, - "clc": 1, - "load_bikes": 2, - "e_T": 7, - "Integrate_FILE": 1, - "Integrate": 6, - "Look": 2, - "phisically": 2, - "meaningful": 6, - "meaningless": 2, - "i/nx": 2, - "*Potential": 5, - "ci": 9, - "te": 2, - "ye": 9, - "ie": 2, - "@f": 6, - "Potential": 1, - "delta_e": 3, - "Integrate_FTLE_Gawlick_ell": 1, - "ecc": 2, - "nu": 2, - "ecc*cos": 1, - "@f_ell": 1, - "Consider": 1, - "also": 1, - "negative": 1, - "goodness": 1, - "roots": 3, - "*mu": 6, - "c3": 3, - "lane_change": 1, - "start": 4, - "width": 3, - "slope": 3, - "pathLength": 3, - "single": 1, - "double": 1, - "Double": 1, - "lane": 4, - "change": 1, - "needs": 1, - "lane.": 1, - "laneLength": 4, - "startOfSlope": 3, - "endOfSlope": 1, - "<=>": 1, - "1": 1, - "downSlope": 3, - "gains.Benchmark.Slow": 1, - "place": 2, - "holder": 2, - "gains.Browserins.Slow": 1, - "gains.Browser.Slow": 1, - "gains.Pista.Slow": 1, - "gains.Fisher.Slow": 1, - "gains.Yellow.Slow": 1, - "gains.Yellowrev.Slow": 1, - "gains.Benchmark.Medium": 1, - "gains.Browserins.Medium": 1, - "gains.Browser.Medium": 1, - "gains.Pista.Medium": 1, - "gains.Fisher.Medium": 1, - "gains.Yellow.Medium": 1, - "gains.Yellowrev.Medium": 1, - "gains.Benchmark.Fast": 1, - "gains.Browserins.Fast": 1, - "gains.Browser.Fast": 1, - "gains.Pista.Fast": 1, - "gains.Fisher.Fast": 1, - "gains.Yellow.Fast": 1, - "gains.Yellowrev.Fast": 1, - "gains.": 1, + "u": 3, + "Yp": 2, + "human": 1, + "Yc": 5, + "parallel": 2, + "Ys": 1, + "feedback": 1, + "tf2ss": 1, + "Ys.num": 1, + "Ys.den": 1, "parser": 1, "inputParser": 1, "parser.addRequired": 1, @@ -39513,97 +39608,19 @@ "args.sampleTime": 1, "args.detrend": 1, "detrend": 1, - "filtfcn": 2, - "statefcn": 2, - "makeFilter": 1, - "v": 12, - "@iirFilter": 1, - "@getState": 1, - "yn": 2, - "iirFilter": 1, - "xn": 4, - "vOut": 2, - "getState": 1, - "classdef": 1, - "matlab_class": 2, - "properties": 1, - "R": 1, - "G": 1, - "methods": 1, - "obj": 2, - "r": 2, - "obj.R": 2, - "obj.G": 2, - "obj.B": 2, - "disp": 8, - "enumeration": 1, - "red": 1, - "green": 1, - "blue": 1, - "cyan": 1, - "magenta": 1, - "yellow": 1, - "black": 1, - "white": 1, - "ret": 3, - "matlab_function": 5, - "Call": 2, - "which": 2, - "resides": 2, - "same": 2, - "directory": 2, - "value1": 4, - "semicolon": 2, - "mandatory": 2, - "suppresses": 2, - "command": 2, - "line.": 2, - "value2": 4, - "d_mean": 3, - "d_std": 3, - "normalize": 1, - "repmat": 2, - "std": 1, - "d./": 1, - "overrideSettings": 3, - "overrideNames": 2, - "defaultNames": 2, - "notGiven": 5, - "setxor": 1, - "settings.": 1, - "defaultSettings.": 1, - "fid": 7, - "fopen": 2, - "textscan": 1, - "fclose": 2, - "strtrim": 2, - "vals": 2, - "regexp": 1, - "par.": 1, - "str2num": 1, "choose_plant": 4, "p": 7, - "Conditions": 1, - "@cross_y": 1, - "ode113": 2, - "RK4": 3, - "fun": 5, - "tspan": 7, - "th": 1, - "Runge": 1, - "Kutta": 1, - "dim": 2, - "while": 1, - "h/2": 2, - "k1*h/2": 1, - "k2*h/2": 1, - "h*k3": 1, - "h/6*": 1, - "*k2": 1, - "*k3": 1, - "arg1": 1, - "arg": 2, - "RK4_par": 1, + "write_gains": 1, + "contents": 1, + "importdata": 1, + "speedsInFile": 5, + "contents.data": 2, + "gainsInFile": 3, + "sameSpeedIndices": 5, + "allGains": 4, + "allSpeeds": 4, + "sort": 1, + "contents.colheaders": 1, "wnm": 11, "zetanm": 5, "ss": 3, @@ -39659,21 +39676,7 @@ "none": 1, "ok": 2, "sg": 1, - "sr": 1, - "arguments": 7, - "ischar": 1, - "options.": 1, - "write_gains": 1, - "contents": 1, - "importdata": 1, - "speedsInFile": 5, - "contents.data": 2, - "gainsInFile": 3, - "sameSpeedIndices": 5, - "allGains": 4, - "allSpeeds": 4, - "sort": 1, - "contents.colheaders": 1 + "sr": 1 }, "Max": { "{": 126, @@ -40955,727 +40958,6 @@ "NumStr": 2, "string__det_to_int": 1, "error": 7, - "hello.": 1, - "main": 15, - "io": 6, - "di": 54, - "uo": 58, - "IO": 4, - "io.write_string": 1, - "char.": 1, - "getopt_io.": 1, - "short_option": 36, - "option": 9, - "long_option": 241, - "option_defaults": 2, - "option_data": 2, - "nondet.": 1, - "special_handler": 1, - "special_data": 1, - "option_table": 5, - "maybe_option_table": 3, - "inconsequential_options": 1, - "options_help": 1, - "option_table_add_mercury_library_directory": 1, - "option_table.": 2, - "option_table_add_search_library_files_directory": 1, - "quote_arg": 1, - "inhibit_warnings": 4, - "inhibit_accumulator_warnings": 3, - "halt_at_warn": 3, - "halt_at_syntax_errors": 3, - "halt_at_auto_parallel_failure": 3, - "warn_singleton_vars": 3, - "warn_overlapping_scopes": 3, - "warn_det_decls_too_lax": 3, - "warn_inferred_erroneous": 3, - "warn_nothing_exported": 3, - "warn_unused_args": 3, - "warn_interface_imports": 3, - "warn_missing_opt_files": 3, - "warn_missing_trans_opt_files": 3, - "warn_missing_trans_opt_deps": 3, - "warn_non_contiguous_clauses": 3, - "warn_non_contiguous_foreign_procs": 3, - "warn_non_stratification": 3, - "warn_unification_cannot_succeed": 3, - "warn_simple_code": 3, - "warn_duplicate_calls": 3, - "warn_missing_module_name": 3, - "warn_wrong_module_name": 3, - "warn_smart_recompilation": 3, - "warn_undefined_options_variables": 3, - "warn_non_tail_recursion": 3, - "warn_target_code": 3, - "warn_up_to_date": 3, - "warn_stubs": 3, - "warn_dead_procs": 3, - "warn_table_with_inline": 3, - "warn_non_term_special_preds": 3, - "warn_known_bad_format_calls": 3, - "warn_unknown_format_calls": 3, - "warn_obsolete": 3, - "warn_insts_without_matching_type": 3, - "warn_unused_imports": 3, - "inform_ite_instead_of_switch": 3, - "warn_unresolved_polymorphism": 3, - "warn_suspicious_foreign_procs": 3, - "warn_state_var_shadowing": 3, - "inform_inferred": 3, - "inform_inferred_types": 3, - "inform_inferred_modes": 3, - "verbose": 4, - "very_verbose": 4, - "verbose_errors": 4, - "verbose_recompilation": 3, - "find_all_recompilation_reasons": 3, - "verbose_make": 3, - "verbose_commands": 3, - "output_compile_error_lines": 3, - "report_cmd_line_args": 3, - "report_cmd_line_args_in_doterr": 3, - "statistics": 4, - "detailed_statistics": 3, - "proc_size_statistics": 3, - "debug_types": 4, - "debug_modes": 4, - "debug_modes_statistics": 3, - "debug_modes_minimal": 3, - "debug_modes_verbose": 3, - "debug_modes_pred_id": 3, - "debug_dep_par_conj": 3, - "debug_det": 4, - "debug_code_gen_pred_id": 3, - "debug_opt": 3, - "debug_term": 4, - "constraint": 2, - "termination": 3, - "analysis": 1, - "debug_opt_pred_id": 3, - "debug_opt_pred_name": 3, - "debug_pd": 3, - "pd": 1, - "partial": 1, - "deduction/deforestation": 1, - "debug_il_asm": 3, - "il_asm": 1, - "IL": 2, - "generation": 1, - "via": 1, - "asm": 1, - "debug_liveness": 3, - "debug_stack_opt": 3, - "debug_make": 3, - "debug_closure": 3, - "debug_trail_usage": 3, - "debug_mode_constraints": 3, - "debug_intermodule_analysis": 3, - "debug_mm_tabling_analysis": 3, - "debug_indirect_reuse": 3, - "debug_type_rep": 3, - "make_short_interface": 4, - "make_interface": 5, - "make_private_interface": 4, - "make_optimization_interface": 5, - "make_transitive_opt_interface": 5, - "make_analysis_registry": 3, - "make_xml_documentation": 5, - "generate_source_file_mapping": 4, - "generate_dependency_file": 3, - "generate_dependencies": 4, - "generate_module_order": 3, - "generate_standalone_interface": 3, - "convert_to_mercury": 6, - "typecheck_only": 4, - "errorcheck_only": 4, - "target_code_only": 10, - "compile_only": 4, - "compile_to_shared_lib": 3, - "output_grade_string": 3, - "output_link_command": 3, - "output_shared_lib_link_command": 3, - "output_libgrades": 3, - "output_cc": 3, - "output_c_compiler_type": 4, - "output_csharp_compiler_type": 3, - "output_cflags": 3, - "output_library_link_flags": 3, - "output_grade_defines": 3, - "output_c_include_directory_flags": 4, - "smart_recompilation": 3, - "generate_item_version_numbers": 2, - "generate_mmc_make_module_dependencies": 4, - "assume_gmake": 3, - "trace_optimized": 4, - "trace_prof": 3, - "trace_table_io": 3, - "trace_table_io_only_retry": 3, - "trace_table_io_states": 3, - "trace_table_io_require": 3, - "trace_table_io_all": 3, - "trace_goal_flags": 3, - "prof_optimized": 4, - "exec_trace_tail_rec": 3, - "suppress_trace": 3, - "force_disable_tracing": 3, - "delay_death": 3, - "delay_death_max_vars": 3, - "stack_trace_higher_order": 3, - "force_disable_ssdebug": 3, - "generate_bytecode": 3, - "line_numbers": 4, - "frameopt_comments": 3, - "max_error_line_width": 3, - "show_dependency_graph": 3, - "imports_graph": 3, - "dump_trace_counts": 3, - "dump_hlds": 5, - "dump_hlds_pred_id": 3, - "dump_hlds_pred_name": 3, - "dump_hlds_alias": 4, - "dump_hlds_options": 3, - "dump_hlds_inst_limit": 3, - "dump_hlds_file_suffix": 3, - "dump_same_hlds": 3, - "dump_mlds": 4, - "verbose_dump_mlds": 4, - "mode_constraints": 3, - "simple_mode_constraints": 3, - "prop_mode_constraints": 4, - "benchmark_modes": 3, - "benchmark_modes_repeat": 3, - "sign_assembly": 3, - "separate_assemblies": 3, - "reorder_conj": 3, - "reorder_disj": 3, - "fully_strict": 3, - "strict_sequential": 3, - "allow_stubs": 3, - "infer_types": 3, - "infer_modes": 3, - "infer_det": 4, - "infer_all": 3, - "type_inference_iteration_limit": 3, - "mode_inference_iteration_limit": 3, - "event_set_file_name": 3, - "grade": 4, - "target": 14, - "il": 5, - "il_only": 4, - "compile_to_c": 4, - "c": 1, - "java": 35, - "java_only": 4, - "csharp": 6, - "csharp_only": 4, - "x86_64": 6, - "x86_64_only": 4, - "erlang": 6, - "erlang_only": 4, - "exec_trace": 3, - "decl_debug": 3, - "profiling": 5, - "profile_time": 5, - "profile_calls": 6, - "time_profiling": 3, - "memory_profiling": 3, - "profile_mem": 1, - "deep_profiling": 3, - "profile_deep": 4, - "profile_memory": 3, - "use_activation_counts": 3, - "pre_prof_transforms_simplify": 3, - "pre_implicit_parallelism_simplify": 3, - "coverage_profiling": 3, - "coverage_profiling_via_calls": 3, - "coverage_profiling_static": 3, - "profile_deep_coverage_after_goal": 3, - "profile_deep_coverage_branch_ite": 3, - "profile_deep_coverage_branch_switch": 3, - "profile_deep_coverage_branch_disj": 3, - "profile_deep_coverage_use_portcounts": 3, - "profile_deep_coverage_use_trivial": 2, - "profile_for_feedback": 2, - "use_zeroing_for_ho_cycles": 2, - "use_lots_of_ho_specialization": 2, - "deep_profile_tail_recursion": 2, - "record_term_sizes_as_words": 2, - "record_term_sizes_as_cells": 2, - "experimental_complexity": 2, - "gc": 2, - "threadscope": 2, - "trail_segments": 2, - "use_minimal_model_stack_copy": 2, - "use_minimal_model_own_stacks": 2, - "minimal_model_debug": 2, - "single_prec_float": 2, - "type_layout": 2, - "maybe_thread_safe_opt": 2, - "extend_stacks_when_needed": 2, - "stack_segments": 2, - "use_regions": 2, - "use_alloc_regions": 2, - "use_regions_debug": 2, - "use_regions_profiling": 2, - "source_to_source_debug": 5, - "ssdb_trace_level": 3, - "link_ssdb_libs": 4, - "tags": 2, - "num_tag_bits": 2, - "num_reserved_addresses": 2, - "num_reserved_objects": 2, - "bits_per_word": 2, - "bytes_per_word": 2, - "conf_low_tag_bits": 2, - "unboxed_enums": 2, - "unboxed_no_tag_types": 2, - "sync_term_size": 2, - "words": 1, - "gcc_global_registers": 2, - "pic_reg": 2, - "highlevel_code": 3, - "highlevel_data": 2, - "gcc_nested_functions": 2, - "det_copy_out": 2, - "nondet_copy_out": 2, - "put_commit_in_own_func": 2, - "put_nondet_env_on_heap": 2, - "verifiable_code": 2, - "il_refany_fields": 2, - "il_funcptr_types": 2, - "il_byref_tailcalls": 2, - "backend_foreign_languages": 2, - "stack_trace": 2, - "basic_stack_layout": 2, - "agc_stack_layout": 2, - "procid_stack_layout": 2, - "trace_stack_layout": 2, - "can_compare_constants_as_ints": 2, - "pretest_equality_cast_pointers": 2, - "can_compare_compound_values": 2, - "lexically_order_constructors": 2, - "mutable_always_boxed": 2, - "delay_partial_instantiations": 2, - "allow_defn_of_builtins": 2, - "special_preds": 2, - "type_ctor_info": 2, - "type_ctor_layout": 2, - "type_ctor_functors": 2, - "new_type_class_rtti": 2, - "rtti_line_numbers": 2, - "disable_minimal_model_stack_copy_pneg": 2, - "disable_minimal_model_stack_copy_cut": 2, - "use_minimal_model_stack_copy_pneg": 2, - "size_region_ite_fixed": 2, - "size_region_disj_fixed": 2, - "size_region_semi_disj_fixed": 1, - "size_region_commit_fixed": 2, - "size_region_ite_protect": 2, - "size_region_ite_snapshot": 2, - "size_region_semi_disj_protect": 2, - "size_region_disj_snapshot": 2, - "size_region_commit_entry": 2, - "solver_type_auto_init": 2, - "allow_multi_arm_switches": 2, - "type_check_constraints": 2, - "allow_argument_packing": 2, - "low_level_debug": 2, - "table_debug": 2, - "trad_passes": 2, - "parallel_liveness": 2, - "parallel_code_gen": 2, - "polymorphism": 2, - "reclaim_heap_on_failure": 2, - "reclaim_heap_on_semidet_failure": 2, - "reclaim_heap_on_nondet_failure": 2, - "have_delay_slot": 2, - "num_real_r_regs": 2, - "num_real_f_regs": 2, - "num_real_r_temps": 2, - "num_real_f_temps": 2, - "max_jump_table_size": 2, - "max_specialized_do_call_closure": 2, - "max_specialized_do_call_class_method": 2, - "compare_specialization": 2, - "should_pretest_equality": 2, - "fact_table_max_array_size": 2, - "fact_table_hash_percent_full": 2, - "gcc_local_labels": 2, - "prefer_switch": 2, - "opt_level": 3, - "opt_level_number": 2, - "opt_space": 2, - "Default": 3, - "to": 16, - "optimize": 3, - "time.": 1, - "intermodule_optimization": 2, - "read_opt_files_transitively": 2, - "use_opt_files": 2, - "use_trans_opt_files": 2, - "transitive_optimization": 2, - "intermodule_analysis": 2, - "analysis_repeat": 2, - "analysis_file_cache": 2, - "allow_inlining": 2, - "inlining": 2, - "inline_simple": 2, - "inline_builtins": 2, - "inline_single_use": 2, - "inline_call_cost": 2, - "inline_compound_threshold": 2, - "inline_simple_threshold": 2, - "inline_vars_threshold": 2, - "intermod_inline_simple_threshold": 2, - "from_ground_term_threshold": 2, - "enable_const_struct": 2, - "common_struct": 2, - "common_struct_preds": 2, - "common_goal": 2, - "constraint_propagation": 2, - "local_constraint_propagation": 2, - "optimize_unused_args": 2, - "intermod_unused_args": 2, - "optimize_higher_order": 2, - "higher_order_size_limit": 2, - "higher_order_arg_limit": 2, - "unneeded_code": 2, - "unneeded_code_copy_limit": 2, - "unneeded_code_debug": 2, - "unneeded_code_debug_pred_name": 2, - "type_specialization": 2, - "user_guided_type_specialization": 2, - "introduce_accumulators": 2, - "optimize_constructor_last_call_accumulator": 2, - "optimize_constructor_last_call": 2, - "optimize_duplicate_calls": 2, - "constant_propagation": 2, - "excess_assign": 2, - "optimize_format_calls": 2, - "optimize_saved_vars_const": 2, - "optimize_saved_vars_cell": 2, - "optimize_saved_vars_cell_loop": 2, - "optimize_saved_vars_cell_full_path": 2, - "optimize_saved_vars_cell_on_stack": 2, - "optimize_saved_vars_cell_candidate_headvars": 2, - "optimize_saved_vars_cell_cv_store_cost": 2, - "optimize_saved_vars_cell_cv_load_cost": 2, - "optimize_saved_vars_cell_fv_store_cost": 2, - "optimize_saved_vars_cell_fv_load_cost": 2, - "optimize_saved_vars_cell_op_ratio": 2, - "optimize_saved_vars_cell_node_ratio": 2, - "optimize_saved_vars_cell_all_path_node_ratio": 2, - "optimize_saved_vars_cell_include_all_candidates": 2, - "optimize_saved_vars": 2, - "loop_invariants": 2, - "delay_construct": 2, - "follow_code": 2, - "optimize_dead_procs": 2, - "deforestation": 2, - "deforestation_depth_limit": 2, - "deforestation_cost_factor": 2, - "deforestation_vars_threshold": 2, - "deforestation_size_threshold": 2, - "analyse_trail_usage": 2, - "analyse_mm_tabling": 2, - "untuple": 2, - "tuple": 2, - "tuple_trace_counts_file": 2, - "tuple_costs_ratio": 2, - "tuple_min_args": 2, - "inline_par_builtins": 2, - "always_specialize_in_dep_par_conjs": 2, - "allow_some_paths_only_waits": 2, - "structure_sharing_analysis": 2, - "structure_sharing_widening": 2, - "structure_reuse_analysis": 2, - "structure_reuse_constraint": 2, - "structure_reuse_constraint_arg": 2, - "structure_reuse_max_conditions": 2, - "structure_reuse_repeat": 2, - "structure_reuse_free_cells": 2, - "termination_check": 2, - "verbose_check_termination": 2, - "termination_single_args": 2, - "termination_norm": 2, - "termination_error_limit": 2, - "termination_path_limit": 2, - "termination2": 2, - "check_termination2": 2, - "verbose_check_termination2": 2, - "termination2_norm": 2, - "widening_limit": 2, - "arg_size_analysis_only": 2, - "propagate_failure_constrs": 2, - "term2_maximum_matrix_size": 2, - "analyse_exceptions": 2, - "analyse_closures": 2, - "smart_indexing": 2, - "dense_switch_req_density": 2, - "lookup_switch_req_density": 2, - "dense_switch_size": 2, - "lookup_switch_size": 2, - "string_hash_switch_size": 2, - "string_binary_switch_size": 2, - "tag_switch_size": 2, - "try_switch_size": 2, - "binary_switch_size": 2, - "switch_single_rec_base_first": 2, - "switch_multi_rec_base_first": 2, - "use_atomic_cells": 2, - "middle_rec": 2, - "simple_neg": 2, - "optimize_tailcalls": 2, - "optimize_initializations": 2, - "eliminate_local_vars": 2, - "generate_trail_ops_inline": 2, - "common_data": 2, - "common_layout_data": 2, - "Also": 1, - "used": 2, - "for": 8, - "MLDS": 2, - "optimizations.": 1, - "optimize_peep": 2, - "optimize_peep_mkword": 2, - "optimize_jumps": 2, - "optimize_fulljumps": 2, - "pessimize_tailcalls": 2, - "checked_nondet_tailcalls": 2, - "use_local_vars": 2, - "local_var_access_threshold": 2, - "standardize_labels": 2, - "optimize_labels": 2, - "optimize_dups": 2, - "optimize_proc_dups": 2, - "optimize_frames": 2, - "optimize_delay_slot": 2, - "optimize_reassign": 2, - "optimize_repeat": 2, - "layout_compression_limit": 2, - "use_macro_for_redo_fail": 2, - "emit_c_loops": 2, - "everything_in_one_c_function": 2, - "local_thread_engine_base": 2, - "erlang_switch_on_strings_as_atoms": 2, - "target_debug": 2, - "cc": 2, - "cflags": 2, - "quoted_cflag": 2, - "c_include_directory": 2, - "c_optimize": 2, - "ansi_c": 2, - "inline_alloc": 2, - "gcc_flags": 2, - "quoted_gcc_flag": 2, - "clang_flags": 2, - "quoted_clang_flag": 2, - "msvc_flags": 2, - "quoted_msvc_flag": 2, - "cflags_for_warnings": 2, - "cflags_for_optimization": 2, - "cflags_for_ansi": 2, - "cflags_for_regs": 2, - "cflags_for_gotos": 2, - "cflags_for_threads": 2, - "cflags_for_debug": 2, - "cflags_for_pic": 2, - "c_flag_to_name_object_file": 2, - "object_file_extension": 2, - "pic_object_file_extension": 2, - "link_with_pic_object_file_extension": 2, - "c_compiler_type": 2, - "csharp_compiler_type": 2, - "java_compiler": 2, - "java_interpreter": 2, - "java_flags": 2, - "quoted_java_flag": 2, - "java_classpath": 2, - "java_object_file_extension": 2, - "il_assembler": 2, - "ilasm_flags": 2, - "quoted_ilasm_flag": 2, - "dotnet_library_version": 2, - "support_ms_clr": 2, - "support_rotor_clr": 2, - "csharp_compiler": 2, - "csharp_flags": 2, - "quoted_csharp_flag": 2, - "cli_interpreter": 2, - "erlang_compiler": 2, - "erlang_interpreter": 2, - "erlang_flags": 2, - "quoted_erlang_flag": 2, - "erlang_include_directory": 2, - "erlang_object_file_extension": 2, - "erlang_native_code": 2, - "erlang_inhibit_trivial_warnings": 2, - "output_file_name": 3, - "ld_flags": 2, - "quoted_ld_flag": 2, - "ld_libflags": 2, - "quoted_ld_libflag": 2, - "link_library_directories": 3, - "runtime_link_library_directories": 3, - "link_libraries": 3, - "link_objects": 2, - "mercury_library_directories": 2, - "mercury_library_directory_special": 2, - "search_library_files_directories": 2, - "search_library_files_directory_special": 2, - "mercury_libraries": 2, - "mercury_library_special": 2, - "mercury_standard_library_directory": 2, - "mercury_standard_library_directory_special": 2, - "init_file_directories": 2, - "init_files": 2, - "trace_init_files": 2, - "linkage": 2, - "linkage_special": 2, - "mercury_linkage": 2, - "mercury_linkage_special": 2, - "strip": 2, - "demangle": 2, - "allow_undefined": 2, - "use_readline": 2, - "runtime_flags": 2, - "extra_initialization_functions": 2, - "frameworks": 2, - "framework_directories": 3, - "shared_library_extension": 2, - "library_extension": 2, - "executable_file_extension": 2, - "link_executable_command": 2, - "link_shared_lib_command": 2, - "create_archive_command": 2, - "create_archive_command_output_flag": 2, - "create_archive_command_flags": 2, - "ranlib_command": 2, - "ranlib_flags": 2, - "mkinit_command": 2, - "mkinit_erl_command": 2, - "demangle_command": 2, - "filtercc_command": 2, - "trace_libs": 2, - "thread_libs": 2, - "hwloc_libs": 2, - "hwloc_static_libs": 2, - "shared_libs": 2, - "math_lib": 2, - "readline_libs": 2, - "linker_opt_separator": 2, - "linker_thread_flags": 2, - "shlib_linker_thread_flags": 2, - "linker_static_flags": 2, - "linker_strip_flag": 2, - "linker_link_lib_flag": 2, - "linker_link_lib_suffix": 2, - "shlib_linker_link_lib_flag": 2, - "shlib_linker_link_lib_suffix": 2, - "linker_debug_flags": 2, - "shlib_linker_debug_flags": 2, - "linker_trace_flags": 2, - "shlib_linker_trace_flags": 2, - "linker_path_flag": 2, - "linker_rpath_flag": 2, - "linker_rpath_separator": 2, - "shlib_linker_rpath_flag": 2, - "shlib_linker_rpath_separator": 2, - "linker_allow_undefined_flag": 2, - "linker_error_undefined_flag": 2, - "shlib_linker_use_install_name": 2, - "shlib_linker_install_name_flag": 2, - "shlib_linker_install_name_path": 2, - "java_archive_command": 2, - "make": 3, - "keep_going": 3, - "rebuild": 3, - "jobs": 3, - "track_flags": 2, - "invoked_by_mmc_make": 2, - "extra_init_command": 2, - "pre_link_command": 2, - "install_prefix": 2, - "use_symlinks": 2, - "mercury_configuration_directory": 2, - "mercury_configuration_directory_special": 2, - "install_command": 2, - "install_command_dir_option": 2, - "libgrades": 2, - "libgrades_include_components": 2, - "libgrades_exclude_components": 2, - "lib_linkages": 2, - "flags_file": 2, - "options_files": 2, - "config_file": 2, - "options_search_directories": 2, - "use_subdirs": 2, - "use_grade_subdirs": 2, - "search_directories": 3, - "intermod_directories": 2, - "use_search_directories_for_intermod": 2, - "libgrade_install_check": 2, - "order_make_by_timestamp": 2, - "show_make_times": 2, - "extra_library_header": 2, - "restricted_command_line": 2, - "env_type": 2, - "host_env_type": 2, - "target_env_type": 2, - "filenames_from_stdin": 2, - "typecheck_ambiguity_warn_limit": 2, - "typecheck_ambiguity_error_limit": 2, - "help": 4, - "version": 3, - "fullarch": 2, - "cross_compiling": 2, - "local_module_id": 2, - "analysis_file_cache_dir": 2, - "compiler_sufficiently_recent": 2, - "experiment": 2, - "ignore_par_conjunctions": 2, - "control_granularity": 2, - "distance_granularity": 2, - "implicit_parallelism": 2, - "feedback_file": 2, - "par_loop_control": 2, - "par_loop_control_preserve_tail_recursion.": 1, - "libs.handle_options.": 1, - "dir.": 1, - "option_category": 2, - "warning_option": 2, - "verbosity_option": 2, - "output_option": 2, - "aux_output_option": 2, - "language_semantics_option": 2, - "compilation_model_option": 2, - "internal_use_option": 2, - "code_gen_option": 2, - "special_optimization_option": 2, - "optimization_option": 2, - "target_code_compilation_option": 2, - "link_option": 2, - "build_system_option": 2, - "miscellaneous_option.": 1, - "Option": 2, - "option_defaults_2": 18, - "_Category": 1, - "OptionsList": 2, - "list.member": 2, - "multi.": 1, - "bool_special": 7, - "XXX": 3, - "should": 1, - "be": 1, - "accumulating": 49, - "maybe_string": 6, - "special": 17, - "string_special": 18, - "int_special": 1, - "maybe_string_special": 1, - "file_special": 1, - "miscellaneous_option": 1, - "par_loop_control_preserve_tail_recursion": 1, "check_hlds.polymorphism.": 1, "hlds.": 1, "mdbcomp.": 1, @@ -41804,6 +41086,8 @@ "trace": 4, "compiletime": 4, "flag": 4, + "io": 6, + "IO": 4, "write_pred_progress_message": 1, "polymorphism_process_pred": 4, "mutable": 3, @@ -41864,6 +41148,7 @@ "TVarNameMap": 2, "This": 2, "only": 4, + "used": 2, "while": 1, "adding": 1, "the": 27, @@ -42394,6 +41679,7 @@ "list.filter": 1, "X": 9, "semidet": 2, + "list.member": 2, "ExistUnconstrainedVars": 2, "UnivUnconstrainedVars": 2, "foreign_proc_add_typeinfo": 4, @@ -42412,6 +41698,7 @@ "Constraint": 2, "MaybeArgName": 7, "native_if_possible": 2, + "constraint": 2, "SymName": 4, "sym_name_to_string_sep": 1, "TypeVarNames": 2, @@ -42509,48 +41796,31 @@ "NonLocals1": 2, "CallGoalExpr": 2, "CallGoal": 2, - "rot13_concise.": 1, - "state": 3, - "alphabet": 3, - "cycle": 4, - "rot_n": 2, - "Char": 12, - "RotChar": 8, - "char_to_string": 1, - "CharString": 2, - "if": 15, - "sub_string_search": 1, - "Index": 3, - "then": 3, - "NewIndex": 2, - "mod": 1, - "index_det": 1, - "else": 8, - "rot13": 11, - "read_char": 1, - "Res": 8, - "ok": 3, - "print": 3, - "ErrorCode": 4, - "error_message": 1, - "ErrorMessage": 4, - "stderr_stream": 1, - "StdErr": 8, - "nl": 1, + "hello.": 1, + "main": 15, + "di": 54, + "uo": 58, + "io.write_string": 1, "rot13_ralph.": 1, "io__state": 4, "io__read_byte": 1, "Result": 4, + "ok": 3, "io__write_byte": 1, + "rot13": 11, "ErrNo": 2, "io__error_message": 2, + "if": 15, "z": 1, + "then": 3, "Rot13": 2, "<": 14, + "else": 8, "rem": 1, "rot13_verbose.": 1, "rot13a/2": 1, "table": 1, + "to": 16, "alphabetic": 2, "characters": 1, "their": 1, @@ -42564,10 +41834,16 @@ "algorithm": 1, "a": 10, "character.": 1, + "Char": 12, + "RotChar": 8, "TmpChar": 2, "io__read_char": 1, + "Res": 8, "io__write_char": 1, + "ErrorCode": 4, + "ErrorMessage": 4, "io__stderr_stream": 1, + "StdErr": 8, "io__write_string": 2, "io__nl": 1, "store.": 1, @@ -42620,6 +41896,7 @@ "uninitialized": 1, "predicate": 1, "useful": 1, + "for": 8, "creating": 1, "self": 1, "referential": 1, @@ -42661,6 +41938,7 @@ "resort": 1, "critical": 1, "and": 6, + "profiling": 5, "shows": 1, "that": 2, "using": 1, @@ -42670,6 +41948,7 @@ "may": 1, "vanish": 1, "future": 1, + "version": 3, "Mercury": 1, "unsafe_arg_ref": 1, "same": 2, @@ -42698,6 +41977,7 @@ "store.unsafe_new_arg_ref": 1, "implementation": 1, "require": 1, + "state": 3, "just": 1, "real": 1, "representation": 1, @@ -42709,6 +41989,7 @@ "store_equal": 7, "comparison": 5, "store_compare": 7, + "IL": 2, "int32": 1, "Java": 12, "Erlang": 3, @@ -42767,6 +42048,7 @@ "or": 2, "null": 8, "specify": 2, + "XXX": 3, "GetFields": 2, "return": 6, "fields": 3, @@ -42793,6 +42075,7 @@ "Update": 2, "setValue": 2, "SetValue": 1, + "java": 35, "static": 1, "lang": 28, "getDeclaredFields": 2, @@ -42873,7 +42156,727 @@ "*Ptr": 2, "Ptr": 4, "MR_strip_tag": 2, - "Arg": 6 + "Arg": 6, + "rot13_concise.": 1, + "alphabet": 3, + "cycle": 4, + "rot_n": 2, + "char_to_string": 1, + "CharString": 2, + "sub_string_search": 1, + "Index": 3, + "NewIndex": 2, + "mod": 1, + "index_det": 1, + "read_char": 1, + "print": 3, + "error_message": 1, + "stderr_stream": 1, + "nl": 1, + "char.": 1, + "getopt_io.": 1, + "short_option": 36, + "option": 9, + "long_option": 241, + "option_defaults": 2, + "option_data": 2, + "nondet.": 1, + "special_handler": 1, + "special_data": 1, + "option_table": 5, + "maybe_option_table": 3, + "inconsequential_options": 1, + "options_help": 1, + "option_table_add_mercury_library_directory": 1, + "option_table.": 2, + "option_table_add_search_library_files_directory": 1, + "quote_arg": 1, + "inhibit_warnings": 4, + "inhibit_accumulator_warnings": 3, + "halt_at_warn": 3, + "halt_at_syntax_errors": 3, + "halt_at_auto_parallel_failure": 3, + "warn_singleton_vars": 3, + "warn_overlapping_scopes": 3, + "warn_det_decls_too_lax": 3, + "warn_inferred_erroneous": 3, + "warn_nothing_exported": 3, + "warn_unused_args": 3, + "warn_interface_imports": 3, + "warn_missing_opt_files": 3, + "warn_missing_trans_opt_files": 3, + "warn_missing_trans_opt_deps": 3, + "warn_non_contiguous_clauses": 3, + "warn_non_contiguous_foreign_procs": 3, + "warn_non_stratification": 3, + "warn_unification_cannot_succeed": 3, + "warn_simple_code": 3, + "warn_duplicate_calls": 3, + "warn_missing_module_name": 3, + "warn_wrong_module_name": 3, + "warn_smart_recompilation": 3, + "warn_undefined_options_variables": 3, + "warn_non_tail_recursion": 3, + "warn_target_code": 3, + "warn_up_to_date": 3, + "warn_stubs": 3, + "warn_dead_procs": 3, + "warn_table_with_inline": 3, + "warn_non_term_special_preds": 3, + "warn_known_bad_format_calls": 3, + "warn_unknown_format_calls": 3, + "warn_obsolete": 3, + "warn_insts_without_matching_type": 3, + "warn_unused_imports": 3, + "inform_ite_instead_of_switch": 3, + "warn_unresolved_polymorphism": 3, + "warn_suspicious_foreign_procs": 3, + "warn_state_var_shadowing": 3, + "inform_inferred": 3, + "inform_inferred_types": 3, + "inform_inferred_modes": 3, + "verbose": 4, + "very_verbose": 4, + "verbose_errors": 4, + "verbose_recompilation": 3, + "find_all_recompilation_reasons": 3, + "verbose_make": 3, + "verbose_commands": 3, + "output_compile_error_lines": 3, + "report_cmd_line_args": 3, + "report_cmd_line_args_in_doterr": 3, + "statistics": 4, + "detailed_statistics": 3, + "proc_size_statistics": 3, + "debug_types": 4, + "debug_modes": 4, + "debug_modes_statistics": 3, + "debug_modes_minimal": 3, + "debug_modes_verbose": 3, + "debug_modes_pred_id": 3, + "debug_dep_par_conj": 3, + "debug_det": 4, + "debug_code_gen_pred_id": 3, + "debug_opt": 3, + "debug_term": 4, + "termination": 3, + "analysis": 1, + "debug_opt_pred_id": 3, + "debug_opt_pred_name": 3, + "debug_pd": 3, + "pd": 1, + "partial": 1, + "deduction/deforestation": 1, + "debug_il_asm": 3, + "il_asm": 1, + "generation": 1, + "via": 1, + "asm": 1, + "debug_liveness": 3, + "debug_stack_opt": 3, + "debug_make": 3, + "debug_closure": 3, + "debug_trail_usage": 3, + "debug_mode_constraints": 3, + "debug_intermodule_analysis": 3, + "debug_mm_tabling_analysis": 3, + "debug_indirect_reuse": 3, + "debug_type_rep": 3, + "make_short_interface": 4, + "make_interface": 5, + "make_private_interface": 4, + "make_optimization_interface": 5, + "make_transitive_opt_interface": 5, + "make_analysis_registry": 3, + "make_xml_documentation": 5, + "generate_source_file_mapping": 4, + "generate_dependency_file": 3, + "generate_dependencies": 4, + "generate_module_order": 3, + "generate_standalone_interface": 3, + "convert_to_mercury": 6, + "typecheck_only": 4, + "errorcheck_only": 4, + "target_code_only": 10, + "compile_only": 4, + "compile_to_shared_lib": 3, + "output_grade_string": 3, + "output_link_command": 3, + "output_shared_lib_link_command": 3, + "output_libgrades": 3, + "output_cc": 3, + "output_c_compiler_type": 4, + "output_csharp_compiler_type": 3, + "output_cflags": 3, + "output_library_link_flags": 3, + "output_grade_defines": 3, + "output_c_include_directory_flags": 4, + "smart_recompilation": 3, + "generate_item_version_numbers": 2, + "generate_mmc_make_module_dependencies": 4, + "assume_gmake": 3, + "trace_optimized": 4, + "trace_prof": 3, + "trace_table_io": 3, + "trace_table_io_only_retry": 3, + "trace_table_io_states": 3, + "trace_table_io_require": 3, + "trace_table_io_all": 3, + "trace_goal_flags": 3, + "prof_optimized": 4, + "exec_trace_tail_rec": 3, + "suppress_trace": 3, + "force_disable_tracing": 3, + "delay_death": 3, + "delay_death_max_vars": 3, + "stack_trace_higher_order": 3, + "force_disable_ssdebug": 3, + "generate_bytecode": 3, + "line_numbers": 4, + "frameopt_comments": 3, + "max_error_line_width": 3, + "show_dependency_graph": 3, + "imports_graph": 3, + "dump_trace_counts": 3, + "dump_hlds": 5, + "dump_hlds_pred_id": 3, + "dump_hlds_pred_name": 3, + "dump_hlds_alias": 4, + "dump_hlds_options": 3, + "dump_hlds_inst_limit": 3, + "dump_hlds_file_suffix": 3, + "dump_same_hlds": 3, + "dump_mlds": 4, + "verbose_dump_mlds": 4, + "mode_constraints": 3, + "simple_mode_constraints": 3, + "prop_mode_constraints": 4, + "benchmark_modes": 3, + "benchmark_modes_repeat": 3, + "sign_assembly": 3, + "separate_assemblies": 3, + "reorder_conj": 3, + "reorder_disj": 3, + "fully_strict": 3, + "strict_sequential": 3, + "allow_stubs": 3, + "infer_types": 3, + "infer_modes": 3, + "infer_det": 4, + "infer_all": 3, + "type_inference_iteration_limit": 3, + "mode_inference_iteration_limit": 3, + "event_set_file_name": 3, + "grade": 4, + "target": 14, + "il": 5, + "il_only": 4, + "compile_to_c": 4, + "c": 1, + "java_only": 4, + "csharp": 6, + "csharp_only": 4, + "x86_64": 6, + "x86_64_only": 4, + "erlang": 6, + "erlang_only": 4, + "exec_trace": 3, + "decl_debug": 3, + "profile_time": 5, + "profile_calls": 6, + "time_profiling": 3, + "memory_profiling": 3, + "profile_mem": 1, + "deep_profiling": 3, + "profile_deep": 4, + "profile_memory": 3, + "use_activation_counts": 3, + "pre_prof_transforms_simplify": 3, + "pre_implicit_parallelism_simplify": 3, + "coverage_profiling": 3, + "coverage_profiling_via_calls": 3, + "coverage_profiling_static": 3, + "profile_deep_coverage_after_goal": 3, + "profile_deep_coverage_branch_ite": 3, + "profile_deep_coverage_branch_switch": 3, + "profile_deep_coverage_branch_disj": 3, + "profile_deep_coverage_use_portcounts": 3, + "profile_deep_coverage_use_trivial": 2, + "profile_for_feedback": 2, + "use_zeroing_for_ho_cycles": 2, + "use_lots_of_ho_specialization": 2, + "deep_profile_tail_recursion": 2, + "record_term_sizes_as_words": 2, + "record_term_sizes_as_cells": 2, + "experimental_complexity": 2, + "gc": 2, + "threadscope": 2, + "trail_segments": 2, + "use_minimal_model_stack_copy": 2, + "use_minimal_model_own_stacks": 2, + "minimal_model_debug": 2, + "single_prec_float": 2, + "type_layout": 2, + "maybe_thread_safe_opt": 2, + "extend_stacks_when_needed": 2, + "stack_segments": 2, + "use_regions": 2, + "use_alloc_regions": 2, + "use_regions_debug": 2, + "use_regions_profiling": 2, + "source_to_source_debug": 5, + "ssdb_trace_level": 3, + "link_ssdb_libs": 4, + "tags": 2, + "num_tag_bits": 2, + "num_reserved_addresses": 2, + "num_reserved_objects": 2, + "bits_per_word": 2, + "bytes_per_word": 2, + "conf_low_tag_bits": 2, + "unboxed_enums": 2, + "unboxed_no_tag_types": 2, + "sync_term_size": 2, + "words": 1, + "gcc_global_registers": 2, + "pic_reg": 2, + "highlevel_code": 3, + "highlevel_data": 2, + "gcc_nested_functions": 2, + "det_copy_out": 2, + "nondet_copy_out": 2, + "put_commit_in_own_func": 2, + "put_nondet_env_on_heap": 2, + "verifiable_code": 2, + "il_refany_fields": 2, + "il_funcptr_types": 2, + "il_byref_tailcalls": 2, + "backend_foreign_languages": 2, + "stack_trace": 2, + "basic_stack_layout": 2, + "agc_stack_layout": 2, + "procid_stack_layout": 2, + "trace_stack_layout": 2, + "can_compare_constants_as_ints": 2, + "pretest_equality_cast_pointers": 2, + "can_compare_compound_values": 2, + "lexically_order_constructors": 2, + "mutable_always_boxed": 2, + "delay_partial_instantiations": 2, + "allow_defn_of_builtins": 2, + "special_preds": 2, + "type_ctor_info": 2, + "type_ctor_layout": 2, + "type_ctor_functors": 2, + "new_type_class_rtti": 2, + "rtti_line_numbers": 2, + "disable_minimal_model_stack_copy_pneg": 2, + "disable_minimal_model_stack_copy_cut": 2, + "use_minimal_model_stack_copy_pneg": 2, + "size_region_ite_fixed": 2, + "size_region_disj_fixed": 2, + "size_region_semi_disj_fixed": 1, + "size_region_commit_fixed": 2, + "size_region_ite_protect": 2, + "size_region_ite_snapshot": 2, + "size_region_semi_disj_protect": 2, + "size_region_disj_snapshot": 2, + "size_region_commit_entry": 2, + "solver_type_auto_init": 2, + "allow_multi_arm_switches": 2, + "type_check_constraints": 2, + "allow_argument_packing": 2, + "low_level_debug": 2, + "table_debug": 2, + "trad_passes": 2, + "parallel_liveness": 2, + "parallel_code_gen": 2, + "polymorphism": 2, + "reclaim_heap_on_failure": 2, + "reclaim_heap_on_semidet_failure": 2, + "reclaim_heap_on_nondet_failure": 2, + "have_delay_slot": 2, + "num_real_r_regs": 2, + "num_real_f_regs": 2, + "num_real_r_temps": 2, + "num_real_f_temps": 2, + "max_jump_table_size": 2, + "max_specialized_do_call_closure": 2, + "max_specialized_do_call_class_method": 2, + "compare_specialization": 2, + "should_pretest_equality": 2, + "fact_table_max_array_size": 2, + "fact_table_hash_percent_full": 2, + "gcc_local_labels": 2, + "prefer_switch": 2, + "opt_level": 3, + "opt_level_number": 2, + "opt_space": 2, + "Default": 3, + "optimize": 3, + "time.": 1, + "intermodule_optimization": 2, + "read_opt_files_transitively": 2, + "use_opt_files": 2, + "use_trans_opt_files": 2, + "transitive_optimization": 2, + "intermodule_analysis": 2, + "analysis_repeat": 2, + "analysis_file_cache": 2, + "allow_inlining": 2, + "inlining": 2, + "inline_simple": 2, + "inline_builtins": 2, + "inline_single_use": 2, + "inline_call_cost": 2, + "inline_compound_threshold": 2, + "inline_simple_threshold": 2, + "inline_vars_threshold": 2, + "intermod_inline_simple_threshold": 2, + "from_ground_term_threshold": 2, + "enable_const_struct": 2, + "common_struct": 2, + "common_struct_preds": 2, + "common_goal": 2, + "constraint_propagation": 2, + "local_constraint_propagation": 2, + "optimize_unused_args": 2, + "intermod_unused_args": 2, + "optimize_higher_order": 2, + "higher_order_size_limit": 2, + "higher_order_arg_limit": 2, + "unneeded_code": 2, + "unneeded_code_copy_limit": 2, + "unneeded_code_debug": 2, + "unneeded_code_debug_pred_name": 2, + "type_specialization": 2, + "user_guided_type_specialization": 2, + "introduce_accumulators": 2, + "optimize_constructor_last_call_accumulator": 2, + "optimize_constructor_last_call": 2, + "optimize_duplicate_calls": 2, + "constant_propagation": 2, + "excess_assign": 2, + "optimize_format_calls": 2, + "optimize_saved_vars_const": 2, + "optimize_saved_vars_cell": 2, + "optimize_saved_vars_cell_loop": 2, + "optimize_saved_vars_cell_full_path": 2, + "optimize_saved_vars_cell_on_stack": 2, + "optimize_saved_vars_cell_candidate_headvars": 2, + "optimize_saved_vars_cell_cv_store_cost": 2, + "optimize_saved_vars_cell_cv_load_cost": 2, + "optimize_saved_vars_cell_fv_store_cost": 2, + "optimize_saved_vars_cell_fv_load_cost": 2, + "optimize_saved_vars_cell_op_ratio": 2, + "optimize_saved_vars_cell_node_ratio": 2, + "optimize_saved_vars_cell_all_path_node_ratio": 2, + "optimize_saved_vars_cell_include_all_candidates": 2, + "optimize_saved_vars": 2, + "loop_invariants": 2, + "delay_construct": 2, + "follow_code": 2, + "optimize_dead_procs": 2, + "deforestation": 2, + "deforestation_depth_limit": 2, + "deforestation_cost_factor": 2, + "deforestation_vars_threshold": 2, + "deforestation_size_threshold": 2, + "analyse_trail_usage": 2, + "analyse_mm_tabling": 2, + "untuple": 2, + "tuple": 2, + "tuple_trace_counts_file": 2, + "tuple_costs_ratio": 2, + "tuple_min_args": 2, + "inline_par_builtins": 2, + "always_specialize_in_dep_par_conjs": 2, + "allow_some_paths_only_waits": 2, + "structure_sharing_analysis": 2, + "structure_sharing_widening": 2, + "structure_reuse_analysis": 2, + "structure_reuse_constraint": 2, + "structure_reuse_constraint_arg": 2, + "structure_reuse_max_conditions": 2, + "structure_reuse_repeat": 2, + "structure_reuse_free_cells": 2, + "termination_check": 2, + "verbose_check_termination": 2, + "termination_single_args": 2, + "termination_norm": 2, + "termination_error_limit": 2, + "termination_path_limit": 2, + "termination2": 2, + "check_termination2": 2, + "verbose_check_termination2": 2, + "termination2_norm": 2, + "widening_limit": 2, + "arg_size_analysis_only": 2, + "propagate_failure_constrs": 2, + "term2_maximum_matrix_size": 2, + "analyse_exceptions": 2, + "analyse_closures": 2, + "smart_indexing": 2, + "dense_switch_req_density": 2, + "lookup_switch_req_density": 2, + "dense_switch_size": 2, + "lookup_switch_size": 2, + "string_hash_switch_size": 2, + "string_binary_switch_size": 2, + "tag_switch_size": 2, + "try_switch_size": 2, + "binary_switch_size": 2, + "switch_single_rec_base_first": 2, + "switch_multi_rec_base_first": 2, + "use_atomic_cells": 2, + "middle_rec": 2, + "simple_neg": 2, + "optimize_tailcalls": 2, + "optimize_initializations": 2, + "eliminate_local_vars": 2, + "generate_trail_ops_inline": 2, + "common_data": 2, + "common_layout_data": 2, + "Also": 1, + "MLDS": 2, + "optimizations.": 1, + "optimize_peep": 2, + "optimize_peep_mkword": 2, + "optimize_jumps": 2, + "optimize_fulljumps": 2, + "pessimize_tailcalls": 2, + "checked_nondet_tailcalls": 2, + "use_local_vars": 2, + "local_var_access_threshold": 2, + "standardize_labels": 2, + "optimize_labels": 2, + "optimize_dups": 2, + "optimize_proc_dups": 2, + "optimize_frames": 2, + "optimize_delay_slot": 2, + "optimize_reassign": 2, + "optimize_repeat": 2, + "layout_compression_limit": 2, + "use_macro_for_redo_fail": 2, + "emit_c_loops": 2, + "everything_in_one_c_function": 2, + "local_thread_engine_base": 2, + "erlang_switch_on_strings_as_atoms": 2, + "target_debug": 2, + "cc": 2, + "cflags": 2, + "quoted_cflag": 2, + "c_include_directory": 2, + "c_optimize": 2, + "ansi_c": 2, + "inline_alloc": 2, + "gcc_flags": 2, + "quoted_gcc_flag": 2, + "clang_flags": 2, + "quoted_clang_flag": 2, + "msvc_flags": 2, + "quoted_msvc_flag": 2, + "cflags_for_warnings": 2, + "cflags_for_optimization": 2, + "cflags_for_ansi": 2, + "cflags_for_regs": 2, + "cflags_for_gotos": 2, + "cflags_for_threads": 2, + "cflags_for_debug": 2, + "cflags_for_pic": 2, + "c_flag_to_name_object_file": 2, + "object_file_extension": 2, + "pic_object_file_extension": 2, + "link_with_pic_object_file_extension": 2, + "c_compiler_type": 2, + "csharp_compiler_type": 2, + "java_compiler": 2, + "java_interpreter": 2, + "java_flags": 2, + "quoted_java_flag": 2, + "java_classpath": 2, + "java_object_file_extension": 2, + "il_assembler": 2, + "ilasm_flags": 2, + "quoted_ilasm_flag": 2, + "dotnet_library_version": 2, + "support_ms_clr": 2, + "support_rotor_clr": 2, + "csharp_compiler": 2, + "csharp_flags": 2, + "quoted_csharp_flag": 2, + "cli_interpreter": 2, + "erlang_compiler": 2, + "erlang_interpreter": 2, + "erlang_flags": 2, + "quoted_erlang_flag": 2, + "erlang_include_directory": 2, + "erlang_object_file_extension": 2, + "erlang_native_code": 2, + "erlang_inhibit_trivial_warnings": 2, + "output_file_name": 3, + "ld_flags": 2, + "quoted_ld_flag": 2, + "ld_libflags": 2, + "quoted_ld_libflag": 2, + "link_library_directories": 3, + "runtime_link_library_directories": 3, + "link_libraries": 3, + "link_objects": 2, + "mercury_library_directories": 2, + "mercury_library_directory_special": 2, + "search_library_files_directories": 2, + "search_library_files_directory_special": 2, + "mercury_libraries": 2, + "mercury_library_special": 2, + "mercury_standard_library_directory": 2, + "mercury_standard_library_directory_special": 2, + "init_file_directories": 2, + "init_files": 2, + "trace_init_files": 2, + "linkage": 2, + "linkage_special": 2, + "mercury_linkage": 2, + "mercury_linkage_special": 2, + "strip": 2, + "demangle": 2, + "allow_undefined": 2, + "use_readline": 2, + "runtime_flags": 2, + "extra_initialization_functions": 2, + "frameworks": 2, + "framework_directories": 3, + "shared_library_extension": 2, + "library_extension": 2, + "executable_file_extension": 2, + "link_executable_command": 2, + "link_shared_lib_command": 2, + "create_archive_command": 2, + "create_archive_command_output_flag": 2, + "create_archive_command_flags": 2, + "ranlib_command": 2, + "ranlib_flags": 2, + "mkinit_command": 2, + "mkinit_erl_command": 2, + "demangle_command": 2, + "filtercc_command": 2, + "trace_libs": 2, + "thread_libs": 2, + "hwloc_libs": 2, + "hwloc_static_libs": 2, + "shared_libs": 2, + "math_lib": 2, + "readline_libs": 2, + "linker_opt_separator": 2, + "linker_thread_flags": 2, + "shlib_linker_thread_flags": 2, + "linker_static_flags": 2, + "linker_strip_flag": 2, + "linker_link_lib_flag": 2, + "linker_link_lib_suffix": 2, + "shlib_linker_link_lib_flag": 2, + "shlib_linker_link_lib_suffix": 2, + "linker_debug_flags": 2, + "shlib_linker_debug_flags": 2, + "linker_trace_flags": 2, + "shlib_linker_trace_flags": 2, + "linker_path_flag": 2, + "linker_rpath_flag": 2, + "linker_rpath_separator": 2, + "shlib_linker_rpath_flag": 2, + "shlib_linker_rpath_separator": 2, + "linker_allow_undefined_flag": 2, + "linker_error_undefined_flag": 2, + "shlib_linker_use_install_name": 2, + "shlib_linker_install_name_flag": 2, + "shlib_linker_install_name_path": 2, + "java_archive_command": 2, + "make": 3, + "keep_going": 3, + "rebuild": 3, + "jobs": 3, + "track_flags": 2, + "invoked_by_mmc_make": 2, + "extra_init_command": 2, + "pre_link_command": 2, + "install_prefix": 2, + "use_symlinks": 2, + "mercury_configuration_directory": 2, + "mercury_configuration_directory_special": 2, + "install_command": 2, + "install_command_dir_option": 2, + "libgrades": 2, + "libgrades_include_components": 2, + "libgrades_exclude_components": 2, + "lib_linkages": 2, + "flags_file": 2, + "options_files": 2, + "config_file": 2, + "options_search_directories": 2, + "use_subdirs": 2, + "use_grade_subdirs": 2, + "search_directories": 3, + "intermod_directories": 2, + "use_search_directories_for_intermod": 2, + "libgrade_install_check": 2, + "order_make_by_timestamp": 2, + "show_make_times": 2, + "extra_library_header": 2, + "restricted_command_line": 2, + "env_type": 2, + "host_env_type": 2, + "target_env_type": 2, + "filenames_from_stdin": 2, + "typecheck_ambiguity_warn_limit": 2, + "typecheck_ambiguity_error_limit": 2, + "help": 4, + "fullarch": 2, + "cross_compiling": 2, + "local_module_id": 2, + "analysis_file_cache_dir": 2, + "compiler_sufficiently_recent": 2, + "experiment": 2, + "ignore_par_conjunctions": 2, + "control_granularity": 2, + "distance_granularity": 2, + "implicit_parallelism": 2, + "feedback_file": 2, + "par_loop_control": 2, + "par_loop_control_preserve_tail_recursion.": 1, + "libs.handle_options.": 1, + "dir.": 1, + "option_category": 2, + "warning_option": 2, + "verbosity_option": 2, + "output_option": 2, + "aux_output_option": 2, + "language_semantics_option": 2, + "compilation_model_option": 2, + "internal_use_option": 2, + "code_gen_option": 2, + "special_optimization_option": 2, + "optimization_option": 2, + "target_code_compilation_option": 2, + "link_option": 2, + "build_system_option": 2, + "miscellaneous_option.": 1, + "Option": 2, + "option_defaults_2": 18, + "_Category": 1, + "OptionsList": 2, + "multi.": 1, + "bool_special": 7, + "should": 1, + "be": 1, + "accumulating": 49, + "maybe_string": 6, + "special": 17, + "string_special": 18, + "int_special": 1, + "maybe_string_special": 1, + "file_special": 1, + "miscellaneous_option": 1, + "par_loop_control_preserve_tail_recursion": 1 }, "Monkey": { "Strict": 1, @@ -42990,21 +42993,39 @@ "c": 1 }, "Moocode": { - "@program": 29, + "@verb": 1, "toy": 3, - "wind": 1, + "do_the_work": 3, + "this": 114, + "none": 1, + "@program": 29, + "if": 90, + "(": 600, "this.wound": 8, - "+": 39, + ")": 593, + "object_utils": 1, + "isa": 21, + "this.location": 3, + "room": 1, + "announce_all": 2, + "this.name": 4, + "continue_msg": 1, ";": 505, + "-": 98, + "fork": 1, + "endfork": 1, + "else": 45, + "wind_down_msg": 1, + "endif": 93, + "<": 13, + ".": 30, + "wind": 1, + "+": 39, "player": 2, "tell": 1, - "(": 600, - "this.name": 4, - ")": 593, "player.location": 1, "announce": 1, "player.name": 1, - ".": 30, "while": 15, "read": 1, "endwhile": 14, @@ -43039,7 +43060,6 @@ "server/core.": 1, "most": 1, "straight": 1, - "-": 98, "forward": 1, "target": 7, "other": 1, @@ -43144,7 +43164,6 @@ "application/x": 27, "moocode": 27, "typeof": 11, - "this": 114, "OBJ": 3, "||": 19, "raise": 23, @@ -43158,18 +43177,15 @@ "name": 9, "}": 112, "args": 26, - "if": 90, "value": 73, "this.variable_map": 3, "[": 99, "]": 102, "E_RANGE": 17, "return": 61, - "else": 45, "tostr": 51, "random": 3, "this.reserved_names": 1, - "endif": 93, "compile": 1, "source": 32, "options": 3, @@ -43194,14 +43210,12 @@ "@compiler": 1, "endfor": 31, "ticks_left": 4, - "<": 13, "seconds_left": 4, "&&": 39, "suspend": 4, "statement.value": 20, "elseif": 41, "_generate": 1, - "isa": 21, "this.plastic.sign_operator_proto": 1, "|": 9, "statement.first": 18, @@ -43479,18 +43493,7 @@ "parser.plastic.assignment_operator_proto": 1, "result.type": 1, "result.first": 1, - "result.second": 1, - "@verb": 1, - "do_the_work": 3, - "none": 1, - "object_utils": 1, - "this.location": 3, - "room": 1, - "announce_all": 2, - "continue_msg": 1, - "fork": 1, - "endfork": 1, - "wind_down_msg": 1 + "result.second": 1 }, "MoonScript": { "types": 2, @@ -43768,24 +43771,92 @@ }, "NSIS": { ";": 39, + "-": 205, + "x64.nsh": 1, + "A": 1, + "few": 1, + "simple": 1, + "macros": 1, + "to": 6, + "handle": 1, + "installations": 1, + "on": 6, + "x64": 1, + "machines.": 1, + "RunningX64": 4, + "checks": 1, + "if": 4, + "the": 4, + "installer": 1, + "is": 2, + "running": 1, + "x64.": 1, + "{": 8, + "If": 1, + "}": 8, + "MessageBox": 11, + "MB_OK": 8, + "EndIf": 1, + "DisableX64FSRedirection": 4, + "disables": 1, + "file": 4, + "system": 2, + "redirection.": 2, + "EnableX64FSRedirection": 4, + "enables": 1, + "SetOutPath": 3, + "SYSDIR": 1, + "File": 3, + "some.dll": 2, + "#": 3, + "extracts": 2, + "C": 2, + "Windows": 3, + "System32": 1, + "SysWOW64": 1, + "ifndef": 2, + "___X64__NSH___": 3, + "define": 4, + "include": 1, + "LogicLib.nsh": 1, + "macro": 3, + "_RunningX64": 1, + "_a": 1, + "_b": 1, + "_t": 2, + "_f": 2, + "insertmacro": 2, + "_LOGICLIB_TEMP": 3, + "System": 4, + "Call": 6, + "kernel32": 4, + "GetCurrentProcess": 1, + "(": 5, + ")": 5, + "i.s": 1, + "IsWow64Process": 1, + "*i.s": 1, + "Pop": 1, + "_": 1, + "macroend": 3, + "Wow64EnableWow64FsRedirection": 2, + "i0": 1, + "i1": 1, + "endif": 4, "bigtest.nsi": 1, "This": 2, "script": 1, "attempts": 1, - "to": 6, "test": 1, "most": 1, "of": 3, - "the": 4, "functionality": 1, "NSIS": 3, "exehead.": 1, - "-": 205, "ifdef": 2, "HAVE_UPX": 1, "packhdr": 1, "tmp.dat": 1, - "endif": 4, "NOCOMPRESS": 1, "SetCompress": 1, "off": 1, @@ -43794,7 +43865,6 @@ "Icon": 1, "OutFile": 1, "SetDateSave": 1, - "on": 6, "SetDatablockOptimize": 1, "CRCCheck": 1, "SilentInstall": 1, @@ -43819,10 +43889,8 @@ "instfiles": 2, "UninstPage": 2, "uninstConfirm": 1, - "ifndef": 2, "NOINSTTYPES": 1, "only": 1, - "if": 4, "not": 2, "defined": 1, "InstType": 6, @@ -43853,9 +43921,7 @@ "BigNSISTest": 8, "uninstall": 2, "strings": 1, - "SetOutPath": 3, "INSTDIR": 15, - "File": 3, "/a": 1, "CreateDirectory": 1, "recursively": 1, @@ -43869,8 +43935,6 @@ "SectionEnd": 5, "SectionIn": 4, "Start": 2, - "MessageBox": 11, - "MB_OK": 8, "MB_YESNO": 3, "IDYES": 2, "MyLabel": 2, @@ -43881,7 +43945,6 @@ "xdeadbeef": 1, "WriteRegBin": 1, "WriteINIStr": 5, - "Call": 6, "MyFunctionTest": 1, "DeleteINIStr": 1, "DeleteINISec": 1, @@ -43906,7 +43969,6 @@ "IDNO": 1, "NoOverwrite": 1, "skipped": 2, - "file": 4, "doesn": 2, "s": 1, "icon": 1, @@ -43915,12 +43977,10 @@ "and": 1, "give": 1, "hotkey": 1, - "(": 5, "Ctrl": 1, "+": 2, "Shift": 1, "Q": 2, - ")": 5, "CreateShortCut": 2, "SW_SHOWMINIMIZED": 1, "CONTROL": 1, @@ -43937,9 +43997,7 @@ "Hit": 1, "next": 1, "continue.": 1, - "{": 8, "NSISDIR": 1, - "}": 8, "Contrib": 1, "Graphics": 1, "Icons": 1, @@ -43948,7 +44006,6 @@ "Uninstall": 2, "Software": 1, "Microsoft": 1, - "Windows": 3, "CurrentVersion": 1, "silent.nsi": 1, "LogicLib.nsi": 1, @@ -43973,61 +44030,7 @@ "IDOK": 1, "t": 1, "exist": 1, - "NoErrorMsg": 1, - "x64.nsh": 1, - "A": 1, - "few": 1, - "simple": 1, - "macros": 1, - "handle": 1, - "installations": 1, - "x64": 1, - "machines.": 1, - "RunningX64": 4, - "checks": 1, - "installer": 1, - "is": 2, - "running": 1, - "x64.": 1, - "If": 1, - "EndIf": 1, - "DisableX64FSRedirection": 4, - "disables": 1, - "system": 2, - "redirection.": 2, - "EnableX64FSRedirection": 4, - "enables": 1, - "SYSDIR": 1, - "some.dll": 2, - "#": 3, - "extracts": 2, - "C": 2, - "System32": 1, - "SysWOW64": 1, - "___X64__NSH___": 3, - "define": 4, - "include": 1, - "LogicLib.nsh": 1, - "macro": 3, - "_RunningX64": 1, - "_a": 1, - "_b": 1, - "_t": 2, - "_f": 2, - "insertmacro": 2, - "_LOGICLIB_TEMP": 3, - "System": 4, - "kernel32": 4, - "GetCurrentProcess": 1, - "i.s": 1, - "IsWow64Process": 1, - "*i.s": 1, - "Pop": 1, - "_": 1, - "macroend": 3, - "Wow64EnableWow64FsRedirection": 2, - "i0": 1, - "i1": 1 + "NoErrorMsg": 1 }, "Nemerle": { "using": 1, @@ -44225,289 +44228,60 @@ }, "Nit": { "#": 196, - "import": 18, - "gtk": 1, - "class": 20, - "CalculatorContext": 7, - "var": 157, - "result": 16, - "nullable": 11, - "Float": 3, - "null": 39, - "last_op": 4, - "Char": 7, - "current": 26, - "after_point": 12, - "Int": 47, - "fun": 57, - "push_op": 2, - "(": 448, - "op": 11, - ")": 448, - "do": 83, - "apply_last_op_if_any": 2, - "if": 89, - "then": 81, - "self.result": 2, - "else": 63, - "store": 1, - "for": 27, - "next": 9, - "end": 117, - "prepare": 1, - "push_digit": 1, - "digit": 1, - "*": 14, - "+": 39, - "digit.to_f": 2, - "pow": 1, - "after_point.to_f": 1, - "self.after_point": 1, - "-": 70, - "self.current": 3, - "switch_to_decimals": 1, - "return": 54, - "/": 4, - "CalculatorGui": 2, - "super": 10, - "GtkCallable": 1, - "win": 2, - "GtkWindow": 2, - "container": 3, - "GtkGrid": 2, - "lbl_disp": 3, - "GtkLabel": 2, - "but_eq": 3, - "GtkButton": 2, - "but_dot": 3, - "context": 9, - "new": 164, - "redef": 30, - "signal": 1, - "sender": 3, - "user_data": 5, - "context.after_point": 1, - "after_point.abs": 1, - "isa": 12, - "is": 25, - "an": 4, - "operation": 1, - "c": 17, - "but_dot.sensitive": 2, - "false": 8, - "context.switch_to_decimals": 4, - "lbl_disp.text": 3, - "true": 6, - "context.push_op": 15, - "s": 68, - "context.result.to_precision_native": 1, - "index": 7, - "i": 20, - "in": 39, - "s.length.times": 1, - "chiffre": 3, - "s.chars": 2, - "[": 106, - "]": 80, - "and": 10, - "s.substring": 2, - "s.length": 2, - "a": 40, - "number": 7, - "n": 16, - "context.push_digit": 25, - "context.current.to_precision_native": 1, - "init": 6, - "init_gtk": 1, - "win.add": 1, - "container.attach": 7, - "digits": 1, - "but": 6, - "GtkButton.with_label": 5, - "n.to_s": 1, - "but.request_size": 2, - "but.signal_connect": 2, - "self": 41, - "%": 3, - "/3": 1, - "operators": 2, - "r": 21, - "op.to_s": 1, - "but_eq.request_size": 1, - "but_eq.signal_connect": 1, - ".": 6, - "but_dot.request_size": 1, - "but_dot.signal_connect": 1, - "#C": 1, - "but_c": 2, - "but_c.request_size": 1, - "but_c.signal_connect": 1, - "win.show_all": 1, - "context.result.to_precision": 6, - "assert": 24, - "print": 135, - "#test": 2, - "multiple": 1, - "decimals": 1, - "button": 1, - ".environ": 3, - "app": 1, - "run_gtk": 1, "module": 18, - "callback_chimpanze": 1, - "callback_monkey": 2, - "Chimpanze": 2, - "MonkeyActionCallable": 7, - "create": 1, - "monkey": 4, - "Monkey": 4, - "Invoking": 1, - "method": 17, - "which": 4, - "will": 8, - "take": 1, - "some": 1, - "time": 1, - "to": 18, - "compute": 1, - "be": 9, - "back": 1, - "wokeUp": 4, - "with": 2, - "information.": 1, - "Callback": 1, - "defined": 4, - "Interface": 1, - "monkey.wokeUpAction": 1, - "Inherit": 1, - "callback": 11, - "by": 5, - "interface": 3, - "Back": 2, - "of": 31, - "wokeUpAction": 2, - "message": 9, - "Object": 7, - "m": 5, - "m.create": 1, - "{": 14, - "#include": 2, - "": 1, - "": 1, - "typedef": 2, - "struct": 2, - "int": 4, - "id": 2, - ";": 34, - "age": 2, - "}": 14, - "CMonkey": 6, - "toCall": 6, - "MonkeyAction": 5, - "//": 13, - "Method": 1, - "reproduce": 3, - "answer": 1, - "Please": 1, - "note": 1, - "that": 2, - "function": 2, - "pointer": 2, - "only": 6, - "used": 1, - "the": 57, - "void": 3, - "cbMonkey": 2, - "*mkey": 2, - "callbackFunc": 2, - "CMonkey*": 1, - "MonkeyAction*": 1, - "*data": 3, - "sleep": 5, - "mkey": 2, - "data": 6, - "background": 1, - "treatment": 1, - "redirected": 1, - "nit_monkey_callback_func": 2, - "To": 1, - "call": 3, - "your": 1, - "signature": 1, - "must": 1, - "written": 2, - "like": 1, - "this": 2, - "": 1, - "Name": 1, - "_": 1, - "": 1, - "...": 1, - "MonkeyActionCallable_wokeUp": 1, - "abstract": 2, - "extern": 2, - "*monkey": 1, - "malloc": 2, - "sizeof": 2, - "get": 1, - "Must": 1, - "as": 1, - "Nit/C": 1, - "because": 4, - "C": 4, - "inside": 1, - "MonkeyActionCallable.wokeUp": 1, - "Allocating": 1, - "memory": 1, - "keep": 2, - "reference": 2, - "received": 1, - "parameters": 1, - "receiver": 1, - "Message": 1, - "Incrementing": 1, - "counter": 1, - "prevent": 1, - "from": 8, - "releasing": 1, - "MonkeyActionCallable_incr_ref": 1, - "Object_incr_ref": 1, - "Calling": 1, - "passing": 1, - "Receiver": 1, - "Function": 1, - "object": 2, - "Datas": 1, - "recv": 12, - "&": 1, "circular_list": 1, + "class": 20, "CircularList": 6, + "[": 106, "E": 15, + "]": 80, "Like": 1, "standard": 1, "Array": 12, "or": 9, "LinkedList": 1, + "is": 25, + "a": 40, "Sequence.": 1, + "super": 10, "Sequence": 1, "The": 11, "first": 7, "node": 10, + "of": 31, + "the": 57, "list": 10, + "if": 89, "any": 1, "special": 1, "case": 1, + "an": 4, "empty": 1, "handled": 1, + "by": 5, + "null": 39, "private": 5, + "var": 157, + "nullable": 11, "CLNode": 6, + "redef": 30, + "fun": 57, "iterator": 1, + "do": 83, + "return": 54, + "new": 164, "CircularListIterator": 2, + "(": 448, + "self": 41, + ")": 448, "self.node.item": 2, "push": 3, "e": 4, "new_node": 4, + "n": 16, "self.node": 13, + "then": 81, + "else": 63, "not": 12, "one": 3, "so": 4, @@ -44519,8 +44293,11 @@ "new_node.next": 1, "new_node.prev": 1, "old_last_node.next": 1, + "end": 117, "pop": 2, + "assert": 24, "prev": 3, + "only": 6, "n.item": 1, "detach": 1, "prev_prev": 2, @@ -44549,31 +44326,42 @@ "algorithm.": 1, "josephus": 1, "step": 2, + "Int": 47, "res": 1, "while": 4, "self.is_empty": 1, "count": 2, + "for": 27, + "i": 20, + "in": 39, "self.rotate": 1, "kill": 1, "x": 16, "self.shift": 1, "res.add": 1, "res.node": 1, + "current": 26, "item": 5, + "next": 9, "circular": 3, "list.": 4, "Because": 2, "circularity": 1, "there": 2, "always": 1, + ";": 34, "default": 2, "let": 1, "it": 1, + "be": 9, "previous": 4, "Coherence": 1, "between": 1, + "and": 10, + "to": 18, "maintained": 1, "IndexedIterator": 1, + "index": 7, "pointed.": 1, "Is": 1, "empty.": 4, @@ -44587,9 +44375,12 @@ "again": 1, "self.index": 3, "self.list.node": 1, + "+": 39, + "init": 6, "list.node": 1, "self.list": 1, "i.add_all": 1, + "print": 135, "i.first": 1, "i.join": 3, "i.push": 1, @@ -44597,360 +44388,66 @@ "i.pop": 1, "i.unshift": 1, "i.josephus": 1, - "clock": 4, - "Clock": 10, - "total": 1, - "minutes": 12, - "total_minutes": 2, - "Note": 7, - "read": 1, - "acces": 1, - "public": 1, - "write": 1, - "access": 1, - "private.": 1, - "hour": 3, - "self.total_minutes": 8, - "set": 2, - "hour.": 1, - "<": 11, - "changed": 1, - "accordinlgy": 1, - "self.hours": 1, - "hours": 9, - "updated": 1, - "h": 7, - "arrow": 2, - "interval": 1, - "hour_pos": 2, - "replace": 1, - "updated.": 1, - "to_s": 3, - "reset": 1, - "hours*60": 1, - "self.reset": 1, - "o": 5, - "type": 2, - "test": 1, - "required": 1, - "Thanks": 1, - "adaptive": 1, - "typing": 1, - "no": 1, - "downcast": 1, - "i.e.": 1, - "code": 3, - "safe": 4, - "o.total_minutes": 2, - "c.minutes": 1, - "c.hours": 1, - "c2": 2, - "c2.minutes": 1, - "clock_more": 1, - "now": 1, - "comparable": 1, - "Comparable": 1, - "Comparaison": 1, - "make": 1, - "sense": 1, - "other": 2, - "OTHER": 1, - "Comparable.": 1, - "All": 1, - "methods": 2, - "rely": 1, - "on": 1, - "c1": 1, - "c3": 1, - "c1.minutes": 1, - "curl_http": 1, - "curl": 11, - "MyHttpFetcher": 2, - "CurlCallbacks": 1, - "Curl": 4, - "our_body": 1, - "String": 14, - "self.curl": 1, - "Release": 1, - "destroy": 1, - "self.curl.destroy": 1, - "Header": 1, - "header_callback": 1, - "line": 3, - "We": 1, - "silent": 1, - "testing": 1, - "purposes": 2, - "#if": 1, - "line.has_prefix": 1, - "Body": 1, - "body_callback": 1, - "self.our_body": 1, - "Stream": 1, - "Cf": 1, - "No": 1, - "registered": 1, - "stream_callback": 1, - "buffer": 1, - "size": 8, - "args.length": 3, - "url": 2, - "args": 9, - "request": 1, - "CurlHTTPRequest": 1, - "HTTP": 3, - "Get": 2, - "Request": 3, - "request.verbose": 3, - "getResponse": 3, - "request.execute": 2, - "CurlResponseSuccess": 2, - "CurlResponseFailed": 5, - "Post": 1, - "myHttpFetcher": 2, - "request.delegate": 1, - "postDatas": 5, - "HeaderMap": 3, - "request.datas": 1, - "postResponse": 3, - "file": 1, - "headers": 3, - "request.headers": 1, - "downloadResponse": 3, - "request.download_to_file": 1, - "CurlFileResponseSuccess": 1, - "Program": 1, - "logic": 1, - "curl_mail": 1, - "mail_request": 1, - "CurlMailRequest": 1, - "response": 5, - "mail_request.set_outgoing_server": 1, - "mail_request.from": 1, - "mail_request.to": 1, - "mail_request.cc": 1, - "mail_request.bcc": 1, - "headers_body": 4, - "mail_request.headers_body": 1, - "mail_request.body": 1, - "mail_request.subject": 1, - "mail_request.verbose": 1, - "mail_request.execute": 1, - "CurlMailResponseSuccess": 1, - "draw_operation": 1, - "enum": 3, - "n_chars": 1, - "abs": 2, - "log10f": 1, - "float": 1, - "as_operator": 1, - "b": 10, - "abort": 2, - "override_dispc": 1, - "Bool": 2, - "lines": 7, - "Line": 53, - "P": 51, - "s/2": 23, - "y": 9, - "lines.add": 1, - "q4": 4, - "s/4": 1, - "l": 4, - "lines.append": 1, - "tl": 2, - "tr": 2, - "hack": 3, - "support": 1, - "bug": 1, - "evaluation": 1, - "software": 1, - "draw": 1, - "dispc": 2, - "gap": 1, - "w": 3, - "length": 2, - "*gap": 1, - "map": 8, - ".filled_with": 1, - "ci": 2, - "self.chars": 1, - "local_dispc": 4, - "c.override_dispc": 1, - "c.lines": 1, - "line.o.x": 1, - "ci*size": 1, - "ci*gap": 1, - "line.o.y": 1, - "line.len": 1, - "map.length": 3, - ".length": 1, - "line.step_x": 1, - "line.step_y": 1, - "printn": 10, - "step_x": 1, - "step_y": 1, - "len": 1, - "op_char": 3, - "disp_char": 6, - "disp_size": 6, - "disp_gap": 6, - "gets.to_i": 4, - "gets.chars": 2, - "op_char.as_operator": 1, - "len_a": 2, - "a.n_chars": 1, - "len_b": 2, - "b.n_chars": 1, - "len_res": 3, - "result.n_chars": 1, - "max_len": 5, - "len_a.max": 1, - "len_b.max": 1, - "d": 6, - "line_a": 3, - "a.to_s": 1, - "line_a.draw": 1, - "line_b": 3, - "op_char.to_s": 1, - "b.to_s": 1, - "line_b.draw": 1, - "disp_size*max_len": 1, - "*disp_gap": 1, - "line_res": 3, - "result.to_s": 1, - "line_res.draw": 1, - "drop_privileges": 1, - "privileges": 1, - "opts": 1, - "OptionContext": 1, - "opt_ug": 2, - "OptionUserAndGroup.for_dropping_privileges": 1, - "opt_ug.mandatory": 1, - "opts.add_option": 1, - "opts.parse": 1, - "opts.errors.is_empty": 1, - "opts.errors": 1, - "opts.usage": 1, - "exit": 3, - "user_group": 2, - "opt_ug.value": 1, - "user_group.drop_privileges": 1, - "extern_methods": 1, - "Returns": 1, - "th": 2, - "fibonnaci": 1, - "implemented": 1, - "here": 1, - "optimization": 1, - "fib": 5, - "Int_fib": 3, - "System": 1, - "seconds": 1, - "Return": 4, - "atan2l": 1, - "libmath": 1, - "atan_with": 2, - "atan2": 1, - "This": 1, - "Nit": 2, - "It": 1, - "use": 1, - "local": 1, - "operator": 1, - "all": 3, - "objects": 1, - "String.to_cstring": 2, - "equivalent": 1, - "char*": 1, - "foo": 3, - "long": 2, - "recv_fib": 2, - "recv_plus_fib": 2, - "Int__plus": 1, - "nit_string": 2, - "Int_to_s": 1, - "char": 1, - "*c_string": 1, - "String_to_cstring": 1, - "printf": 1, - "c_string": 1, - "Equivalent": 1, - "pure": 1, - "bar": 2, "fibonacci": 3, "Calculate": 1, + "-": 70, + "th": 2, "element": 1, "sequence.": 1, + "<": 11, ".fibonacci": 2, "usage": 3, + "exit": 3, + "args.length": 3, "args.first.to_i.fibonacci": 1, - "html": 1, - "NitHomepage": 2, - "HTMLPage": 1, - "head": 5, - "add": 35, - ".attr": 17, - ".text": 27, - "body": 1, - "open": 14, - ".add_class": 4, - "add_html": 7, - "close": 14, - "page": 1, - "page.write_to": 1, - "stdout": 2, - "page.write_to_file": 1, - "int_stack": 1, - "IntStack": 2, - "Null": 1, - "means": 1, - "stack": 3, - "ISNode": 4, - "Add": 2, - "integer": 2, - "stack.": 2, - "val": 5, - "self.head": 5, - "Remove": 1, - "pushed": 1, - "integer.": 1, - "followings": 2, - "statically": 3, - "head.val": 1, - "head.next": 1, - "sum": 12, - "integers": 1, - "sumall": 1, - "cur": 3, - "condition": 1, - "cur.val": 1, - "cur.next": 1, - "attributes": 1, - "have": 1, - "value": 2, - "free": 2, - "constructor": 2, - "implicitly": 2, - "defined.": 2, - "stored": 1, - "node.": 1, - "any.": 1, - "A": 1, - "l.push": 4, - "l.sumall": 1, + "socket_server": 1, + "import": 18, + "socket": 6, + "args.is_empty": 1, + "Socket.server": 1, + "args": 9, + ".to_i": 2, + "clients": 2, + "Socket": 1, + "max": 2, "loop": 2, - "l.pop": 5, + "fs": 1, + "SocketObserver": 1, + "true": 6, + "fs.readset.set": 2, + "c": 17, + "fs.select": 1, "break": 2, - "following": 1, - "gives": 2, - "alternative": 1, + "fs.readset.is_set": 1, + "ns": 1, + "socket.accept": 1, + "ns.write": 1, + "ns.close": 1, + "websocket_server": 1, + "websocket": 1, + "sock": 1, + "WebSocket": 1, + "msg": 8, + "String": 14, + "sock.listener.eof": 2, + "sys.errno.strerror": 1, + "sock.accept": 2, + "sock.connected": 1, + "sys.stdin.poll_in": 1, + "gets": 1, + "printn": 10, + "sock.close": 1, + "sock.disconnect_client": 1, + "sock.write": 1, + "sock.can_read": 1, + "sock.read_line": 1, "opengles2_hello_triangle": 1, "glesv2": 1, "egl": 1, "mnit_linux": 1, "sdl": 1, "x11": 1, + ".environ": 3, "window_width": 2, "window_height": 2, "##": 6, @@ -44993,6 +44490,7 @@ "surface": 5, "egl_display.create_window_surface": 1, "surface.is_ok": 1, + "context": 9, "egl_display.create_context": 1, "context.is_ok": 1, "make_current_res": 2, @@ -45011,6 +44509,7 @@ "GLProgram": 1, "program.is_ok": 1, "program.info_log": 1, + "abort": 2, "vertex_shader": 2, "GLVertexShader": 1, "vertex_shader.is_ok": 1, @@ -45046,33 +44545,6 @@ "egl_display.destroy_context": 1, "egl_display.destroy_surface": 1, "sdl_display.destroy": 1, - "print_arguments": 1, - "procedural_array": 1, - "array_sum": 2, - "array_sum_alt": 2, - "a.length": 1, - "socket_client": 1, - "socket": 6, - "Socket.client": 1, - ".to_i": 2, - "s.connected": 1, - "s.write": 1, - "s.close": 1, - "socket_server": 1, - "args.is_empty": 1, - "Socket.server": 1, - "clients": 2, - "Socket": 1, - "max": 2, - "fs": 1, - "SocketObserver": 1, - "fs.readset.set": 2, - "fs.select": 1, - "fs.readset.is_set": 1, - "ns": 1, - "socket.accept": 1, - "ns.write": 1, - "ns.close": 1, "template": 1, "###": 2, "Here": 2, @@ -45087,6 +44559,7 @@ "Detailled": 1, "composer_details": 2, "TmplComposerDetail": 3, + "Add": 2, "composer": 1, "both": 1, "add_composer": 1, @@ -45097,6 +44570,7 @@ "composers.add": 1, "composer_details.add": 1, "rendering": 3, + "add": 35, "add_all": 2, "name": 4, "self.name": 1, @@ -45108,22 +44582,551 @@ "f": 1, "f.add_composer": 3, "f.write_to": 1, - "websocket_server": 1, - "websocket": 1, - "sock": 1, - "WebSocket": 1, - "msg": 8, - "sock.listener.eof": 2, - "sys.errno.strerror": 1, - "sock.accept": 2, - "sock.connected": 1, - "sys.stdin.poll_in": 1, - "gets": 1, - "sock.close": 1, - "sock.disconnect_client": 1, - "sock.write": 1, - "sock.can_read": 1, - "sock.read_line": 1 + "stdout": 2, + "socket_client": 1, + "s": 68, + "Socket.client": 1, + "s.connected": 1, + "s.write": 1, + "s.close": 1, + "callback_monkey": 2, + "{": 14, + "#include": 2, + "": 1, + "": 1, + "typedef": 2, + "struct": 2, + "int": 4, + "id": 2, + "age": 2, + "}": 14, + "CMonkey": 6, + "MonkeyActionCallable": 7, + "toCall": 6, + "Object": 7, + "message": 9, + "MonkeyAction": 5, + "//": 13, + "Method": 1, + "which": 4, + "reproduce": 3, + "callback": 11, + "answer": 1, + "Please": 1, + "note": 1, + "that": 2, + "function": 2, + "pointer": 2, + "used": 1, + "void": 3, + "cbMonkey": 2, + "*mkey": 2, + "callbackFunc": 2, + "CMonkey*": 1, + "MonkeyAction*": 1, + "*data": 3, + "sleep": 5, + "mkey": 2, + "data": 6, + "Back": 2, + "background": 1, + "treatment": 1, + "will": 8, + "redirected": 1, + "nit_monkey_callback_func": 2, + "To": 1, + "call": 3, + "your": 1, + "method": 17, + "signature": 1, + "must": 1, + "written": 2, + "like": 1, + "this": 2, + "": 1, + "Name": 1, + "_": 1, + "": 1, + "...": 1, + "MonkeyActionCallable_wokeUp": 1, + "interface": 3, + "wokeUp": 4, + "sender": 3, + "Monkey": 4, + "abstract": 2, + "extern": 2, + "*": 14, + "*monkey": 1, + "malloc": 2, + "sizeof": 2, + "monkey": 4, + "get": 1, + "defined": 4, + "Must": 1, + "as": 1, + "Nit/C": 1, + "because": 4, + "C": 4, + "inside": 1, + "wokeUpAction": 2, + "MonkeyActionCallable.wokeUp": 1, + "Allocating": 1, + "memory": 1, + "keep": 2, + "reference": 2, + "received": 1, + "parameters": 1, + "receiver": 1, + "Message": 1, + "Incrementing": 1, + "counter": 1, + "prevent": 1, + "from": 8, + "releasing": 1, + "MonkeyActionCallable_incr_ref": 1, + "Object_incr_ref": 1, + "Calling": 1, + "passing": 1, + "Receiver": 1, + "Function": 1, + "object": 2, + "Datas": 1, + "recv": 12, + "&": 1, + "clock_more": 1, + "clock": 4, + "Clock": 10, + "now": 1, + "comparable": 1, + "Comparable": 1, + "Comparaison": 1, + "make": 1, + "sense": 1, + "with": 2, + "other": 2, + "type": 2, + "OTHER": 1, + "o": 5, + "Note": 7, + "Comparable.": 1, + "All": 1, + "operators": 2, + "methods": 2, + "rely": 1, + "on": 1, + ".": 6, + "self.total_minutes": 8, + "o.total_minutes": 2, + "c1": 1, + "c2": 2, + "c3": 1, + "c1.minutes": 1, + "callback_chimpanze": 1, + "Chimpanze": 2, + "create": 1, + "Invoking": 1, + "take": 1, + "some": 1, + "time": 1, + "compute": 1, + "back": 1, + "information.": 1, + "Callback": 1, + "Interface": 1, + "monkey.wokeUpAction": 1, + "Inherit": 1, + "m": 5, + "m.create": 1, + "curl_mail": 1, + "curl": 11, + "Curl": 4, + "mail_request": 1, + "CurlMailRequest": 1, + "response": 5, + "mail_request.set_outgoing_server": 1, + "isa": 12, + "CurlResponseFailed": 5, + "mail_request.from": 1, + "mail_request.to": 1, + "mail_request.cc": 1, + "mail_request.bcc": 1, + "headers_body": 4, + "HeaderMap": 3, + "mail_request.headers_body": 1, + "mail_request.body": 1, + "mail_request.subject": 1, + "mail_request.verbose": 1, + "false": 8, + "mail_request.execute": 1, + "CurlMailResponseSuccess": 1, + "curl_http": 1, + "MyHttpFetcher": 2, + "CurlCallbacks": 1, + "our_body": 1, + "self.curl": 1, + "Release": 1, + "destroy": 1, + "self.curl.destroy": 1, + "Header": 1, + "header_callback": 1, + "line": 3, + "We": 1, + "silent": 1, + "testing": 1, + "purposes": 2, + "#if": 1, + "line.has_prefix": 1, + "Body": 1, + "body_callback": 1, + "self.our_body": 1, + "Stream": 1, + "Cf": 1, + "No": 1, + "registered": 1, + "stream_callback": 1, + "buffer": 1, + "size": 8, + "url": 2, + "request": 1, + "CurlHTTPRequest": 1, + "HTTP": 3, + "Get": 2, + "Request": 3, + "request.verbose": 3, + "getResponse": 3, + "request.execute": 2, + "CurlResponseSuccess": 2, + "Post": 1, + "myHttpFetcher": 2, + "request.delegate": 1, + "postDatas": 5, + "request.datas": 1, + "postResponse": 3, + "file": 1, + "headers": 3, + "request.headers": 1, + "downloadResponse": 3, + "request.download_to_file": 1, + "CurlFileResponseSuccess": 1, + "Program": 1, + "logic": 1, + "print_arguments": 1, + "extern_methods": 1, + "enum": 3, + "Returns": 1, + "fibonnaci": 1, + "number": 7, + "implemented": 1, + "here": 1, + "optimization": 1, + "fib": 5, + "Int_fib": 3, + "System": 1, + "seconds": 1, + "Return": 4, + "atan2l": 1, + "libmath": 1, + "atan_with": 2, + "Float": 3, + "atan2": 1, + "This": 1, + "Nit": 2, + "code": 3, + "It": 1, + "use": 1, + "local": 1, + "operator": 1, + "to_s": 3, + "all": 3, + "objects": 1, + "String.to_cstring": 2, + "equivalent": 1, + "char*": 1, + "foo": 3, + "long": 2, + "recv_fib": 2, + "recv_plus_fib": 2, + "Int__plus": 1, + "nit_string": 2, + "Int_to_s": 1, + "char": 1, + "*c_string": 1, + "String_to_cstring": 1, + "printf": 1, + "c_string": 1, + "Equivalent": 1, + "but": 6, + "pure": 1, + "bar": 2, + "gtk": 1, + "CalculatorContext": 7, + "result": 16, + "last_op": 4, + "Char": 7, + "after_point": 12, + "push_op": 2, + "op": 11, + "apply_last_op_if_any": 2, + "self.result": 2, + "store": 1, + "prepare": 1, + "push_digit": 1, + "digit": 1, + "digit.to_f": 2, + "pow": 1, + "after_point.to_f": 1, + "self.after_point": 1, + "self.current": 3, + "switch_to_decimals": 1, + "/": 4, + "CalculatorGui": 2, + "GtkCallable": 1, + "win": 2, + "GtkWindow": 2, + "container": 3, + "GtkGrid": 2, + "lbl_disp": 3, + "GtkLabel": 2, + "but_eq": 3, + "GtkButton": 2, + "but_dot": 3, + "signal": 1, + "user_data": 5, + "context.after_point": 1, + "after_point.abs": 1, + "operation": 1, + "but_dot.sensitive": 2, + "context.switch_to_decimals": 4, + "lbl_disp.text": 3, + "context.push_op": 15, + "context.result.to_precision_native": 1, + "s.length.times": 1, + "chiffre": 3, + "s.chars": 2, + "s.substring": 2, + "s.length": 2, + "context.push_digit": 25, + "context.current.to_precision_native": 1, + "init_gtk": 1, + "win.add": 1, + "container.attach": 7, + "digits": 1, + "GtkButton.with_label": 5, + "n.to_s": 1, + "but.request_size": 2, + "but.signal_connect": 2, + "%": 3, + "/3": 1, + "r": 21, + "op.to_s": 1, + "but_eq.request_size": 1, + "but_eq.signal_connect": 1, + "but_dot.request_size": 1, + "but_dot.signal_connect": 1, + "#C": 1, + "but_c": 2, + "but_c.request_size": 1, + "but_c.signal_connect": 1, + "win.show_all": 1, + "context.result.to_precision": 6, + "#test": 2, + "multiple": 1, + "decimals": 1, + "button": 1, + "app": 1, + "run_gtk": 1, + "draw_operation": 1, + "n_chars": 1, + "abs": 2, + "log10f": 1, + "float": 1, + "as_operator": 1, + "b": 10, + "override_dispc": 1, + "Bool": 2, + "lines": 7, + "Line": 53, + "P": 51, + "s/2": 23, + "y": 9, + "lines.add": 1, + "q4": 4, + "s/4": 1, + "l": 4, + "lines.append": 1, + "tl": 2, + "tr": 2, + "hack": 3, + "support": 1, + "bug": 1, + "evaluation": 1, + "software": 1, + "draw": 1, + "dispc": 2, + "gap": 1, + "w": 3, + "length": 2, + "*gap": 1, + "h": 7, + "map": 8, + ".filled_with": 1, + "ci": 2, + "self.chars": 1, + "local_dispc": 4, + "c.override_dispc": 1, + "c.lines": 1, + "line.o.x": 1, + "ci*size": 1, + "ci*gap": 1, + "line.o.y": 1, + "line.len": 1, + "map.length": 3, + ".length": 1, + "line.step_x": 1, + "line.step_y": 1, + "step_x": 1, + "step_y": 1, + "len": 1, + "op_char": 3, + "disp_char": 6, + "disp_size": 6, + "disp_gap": 6, + "gets.to_i": 4, + "gets.chars": 2, + "op_char.as_operator": 1, + "len_a": 2, + "a.n_chars": 1, + "len_b": 2, + "b.n_chars": 1, + "len_res": 3, + "result.n_chars": 1, + "max_len": 5, + "len_a.max": 1, + "len_b.max": 1, + "d": 6, + "line_a": 3, + "a.to_s": 1, + "line_a.draw": 1, + "line_b": 3, + "op_char.to_s": 1, + "b.to_s": 1, + "line_b.draw": 1, + "disp_size*max_len": 1, + "*disp_gap": 1, + "line_res": 3, + "result.to_s": 1, + "line_res.draw": 1, + "html": 1, + "NitHomepage": 2, + "HTMLPage": 1, + "head": 5, + ".attr": 17, + ".text": 27, + "body": 1, + "open": 14, + ".add_class": 4, + "add_html": 7, + "close": 14, + "page": 1, + "page.write_to": 1, + "page.write_to_file": 1, + "procedural_array": 1, + "array_sum": 2, + "sum": 12, + "array_sum_alt": 2, + "a.length": 1, + "int_stack": 1, + "IntStack": 2, + "Null": 1, + "means": 1, + "stack": 3, + "ISNode": 4, + "integer": 2, + "stack.": 2, + "val": 5, + "self.head": 5, + "Remove": 1, + "pushed": 1, + "integer.": 1, + "followings": 2, + "statically": 3, + "safe": 4, + "head.val": 1, + "head.next": 1, + "integers": 1, + "sumall": 1, + "cur": 3, + "condition": 1, + "cur.val": 1, + "cur.next": 1, + "attributes": 1, + "have": 1, + "value": 2, + "free": 2, + "constructor": 2, + "implicitly": 2, + "defined.": 2, + "stored": 1, + "node.": 1, + "any.": 1, + "A": 1, + "l.push": 4, + "l.sumall": 1, + "l.pop": 5, + "following": 1, + "gives": 2, + "alternative": 1, + "drop_privileges": 1, + "privileges": 1, + "opts": 1, + "OptionContext": 1, + "opt_ug": 2, + "OptionUserAndGroup.for_dropping_privileges": 1, + "opt_ug.mandatory": 1, + "opts.add_option": 1, + "opts.parse": 1, + "opts.errors.is_empty": 1, + "opts.errors": 1, + "opts.usage": 1, + "user_group": 2, + "opt_ug.value": 1, + "user_group.drop_privileges": 1, + "total": 1, + "minutes": 12, + "total_minutes": 2, + "read": 1, + "acces": 1, + "public": 1, + "write": 1, + "access": 1, + "private.": 1, + "hour": 3, + "set": 2, + "hour.": 1, + "changed": 1, + "accordinlgy": 1, + "self.hours": 1, + "hours": 9, + "updated": 1, + "arrow": 2, + "interval": 1, + "hour_pos": 2, + "replace": 1, + "updated.": 1, + "reset": 1, + "hours*60": 1, + "self.reset": 1, + "test": 1, + "required": 1, + "Thanks": 1, + "adaptive": 1, + "typing": 1, + "no": 1, + "downcast": 1, + "i.e.": 1, + "c.minutes": 1, + "c.hours": 1, + "c2.minutes": 1 }, "Nix": { "{": 8, @@ -45192,10 +45195,6 @@ "inherit": 1 }, "Nu": { - "SHEBANG#!nush": 1, - "(": 14, - "puts": 1, - ")": 14, ";": 22, "main.nu": 1, "Entry": 1, @@ -45205,7 +45204,9 @@ "Nu": 1, "program.": 1, "Copyright": 1, + "(": 14, "c": 1, + ")": 14, "Tim": 1, "Burks": 1, "Neon": 1, @@ -45253,69 +45254,39 @@ "event": 1, "loop": 1, "NSApplicationMain": 1, - "nil": 1 + "nil": 1, + "SHEBANG#!nush": 1, + "puts": 1 }, "OCaml": { - "{": 11, - "shared": 1, - "open": 4, - "Eliom_content": 1, - "Html5.D": 1, - "Eliom_parameter": 1, - "}": 13, - "server": 2, + "type": 2, + "a": 4, + "-": 22, + "unit": 5, + ")": 23, "module": 5, - "Example": 1, - "Eliom_registration.App": 1, - "(": 21, + "Ops": 2, "struct": 5, "let": 13, - "application_name": 1, - "end": 5, - ")": 23, - "main": 2, - "Eliom_service.service": 1, - "path": 1, - "[": 13, - "]": 13, - "get_params": 1, - "unit": 5, - "client": 1, - "hello_popup": 2, - "Dom_html.window##alert": 1, - "Js.string": 1, - "_": 2, - "Example.register": 1, - "service": 1, - "fun": 9, - "-": 22, - "Lwt.return": 1, - "html": 1, - "head": 1, - "title": 1, - "pcdata": 4, - "body": 1, - "h1": 1, - ";": 14, - "p": 1, - "h2": 1, - "a": 4, - "a_onclick": 1, - "type": 2, - "Ops": 2, + "(": 21, "@": 6, "f": 10, "k": 21, "|": 15, "x": 14, + "end": 5, + "open": 4, "List": 1, "rec": 3, "map": 3, "l": 8, "match": 4, "with": 4, + "[": 13, + "]": 13, "hd": 6, "tl": 6, + "fun": 9, "fold": 2, "acc": 5, "Option": 1, @@ -45324,11 +45295,14 @@ "Some": 5, "Lazy": 1, "option": 1, + ";": 14, "mutable": 1, "waiters": 5, + "}": 13, "make": 1, "push": 4, "cps": 7, + "{": 11, "value": 3, "force": 1, "l.value": 2, @@ -45340,1679 +45314,556 @@ "l.push": 1, "<": 1, "get_state": 1, - "lazy_from_val": 1 + "lazy_from_val": 1, + "_": 2, + "shared": 1, + "Eliom_content": 1, + "Html5.D": 1, + "Eliom_parameter": 1, + "server": 2, + "Example": 1, + "Eliom_registration.App": 1, + "application_name": 1, + "main": 2, + "Eliom_service.service": 1, + "path": 1, + "get_params": 1, + "client": 1, + "hello_popup": 2, + "Dom_html.window##alert": 1, + "Js.string": 1, + "Example.register": 1, + "service": 1, + "Lwt.return": 1, + "html": 1, + "head": 1, + "title": 1, + "pcdata": 4, + "body": 1, + "h1": 1, + "p": 1, + "h2": 1, + "a_onclick": 1 }, "Objective-C": { - "//": 317, "#import": 53, - "": 4, - "#if": 41, - "TARGET_OS_IPHONE": 11, - "": 1, - "__IPHONE_OS_VERSION_MAX_ALLOWED": 4, - "__IPHONE_4_0": 6, - "": 1, - "Necessary": 1, - "for": 99, - "background": 1, - "task": 1, - "support": 4, - "#endif": 59, - "": 2, - "@class": 4, - "ASIDataDecompressor": 4, - ";": 2003, - "extern": 6, - "NSString": 127, - "*ASIHTTPRequestVersion": 2, - "#ifndef": 9, - "__IPHONE_3_2": 2, - "#define": 65, - "__MAC_10_5": 2, - "__MAC_10_6": 2, "typedef": 47, "enum": 17, - "_ASIAuthenticationState": 1, "{": 541, - "ASINoAuthenticationNeededYet": 3, - "ASIHTTPAuthenticationNeeded": 1, - "ASIProxyAuthenticationNeeded": 1, - "}": 532, - "ASIAuthenticationState": 5, - "_ASINetworkErrorType": 1, - "ASIConnectionFailureErrorType": 2, - "ASIRequestTimedOutErrorType": 2, - "ASIAuthenticationErrorType": 3, - "ASIRequestCancelledErrorType": 2, - "ASIUnableToCreateRequestErrorType": 2, - "ASIInternalErrorWhileBuildingRequestType": 3, - "ASIInternalErrorWhileApplyingCredentialsType": 1, - "ASIFileManagementError": 2, - "ASITooMuchRedirectionErrorType": 3, - "ASIUnhandledExceptionError": 3, - "ASICompressionError": 1, - "ASINetworkErrorType": 1, - "NSString*": 13, - "const": 28, - "NetworkRequestErrorDomain": 12, - "unsigned": 62, - "long": 71, - "ASIWWANBandwidthThrottleAmount": 2, - "NS_BLOCKS_AVAILABLE": 8, - "void": 253, - "(": 2109, - "ASIBasicBlock": 15, - ")": 2106, - "ASIHeadersBlock": 3, - "NSDictionary": 37, - "*responseHeaders": 2, - "ASISizeBlock": 5, - "size": 12, - "ASIProgressBlock": 5, - "total": 4, - "ASIDataBlock": 3, - "NSData": 28, - "*data": 2, - "@interface": 23, - "ASIHTTPRequest": 31, - "NSOperation": 1, - "": 1, - "The": 15, - "url": 24, - "this": 50, - "operation": 2, - "should": 8, - "include": 1, - "GET": 1, - "params": 1, - "in": 42, - "the": 197, - "query": 1, - "string": 9, - "where": 1, - "appropriate": 4, - "NSURL": 21, - "*url": 2, - "Will": 7, - "always": 2, - "contain": 4, - "original": 2, - "used": 16, - "making": 1, - "request": 113, - "value": 21, - "of": 34, - "can": 20, - "change": 2, - "when": 46, - "a": 78, - "is": 77, - "redirected": 2, - "*originalURL": 2, - "Temporarily": 1, - "stores": 1, - "we": 73, - "are": 15, - "about": 4, - "to": 115, - "redirect": 4, - "to.": 2, - "be": 49, - "nil": 131, - "again": 1, - "do": 5, - "*redirectURL": 2, - "delegate": 29, - "-": 595, - "will": 57, - "notified": 2, - "various": 1, - "changes": 4, - "state": 35, - "via": 5, - "ASIHTTPRequestDelegate": 1, - "protocol": 10, - "id": 170, - "": 1, - "Another": 1, - "that": 23, - "also": 1, - "status": 4, - "and": 44, - "progress": 13, - "updates": 2, - "Generally": 1, - "you": 10, - "won": 3, - "s": 35, - "more": 5, - "likely": 1, - "sessionCookies": 2, - "NSMutableArray": 31, - "*requestCookies": 2, - "populated": 1, - "with": 19, - "cookies": 5, - "NSArray": 27, - "*responseCookies": 3, - "If": 30, - "use": 26, - "useCookiePersistence": 3, - "true": 9, - "network": 4, - "requests": 21, - "present": 3, - "valid": 5, - "from": 18, - "previous": 2, - "BOOL": 137, - "useKeychainPersistence": 4, - "attempt": 3, - "read": 3, - "credentials": 35, - "keychain": 7, - "save": 3, - "them": 10, - "they": 6, - "successfully": 4, - "presented": 2, - "useSessionPersistence": 6, - "reuse": 3, - "duration": 1, - "session": 5, - "until": 2, - "clearSession": 2, - "called": 3, - "allowCompressedResponse": 3, - "inform": 1, - "server": 8, - "accept": 2, - "compressed": 2, - "data": 27, - "automatically": 2, - "decompress": 1, - "gzipped": 7, - "responses.": 1, - "Default": 10, - "true.": 1, - "shouldCompressRequestBody": 6, - "body": 8, - "gzipped.": 1, - "false.": 1, - "You": 1, - "probably": 4, - "need": 10, - "enable": 1, - "feature": 1, - "on": 26, - "your": 2, - "webserver": 1, - "make": 3, - "work.": 1, - "Tested": 1, - "apache": 1, - "only.": 1, - "When": 15, - "downloadDestinationPath": 11, - "set": 24, - "result": 4, - "downloaded": 6, - "file": 14, - "at": 10, - "location": 3, - "not": 29, - "download": 9, - "stored": 9, - "memory": 3, - "*downloadDestinationPath": 2, - "files": 5, - "Once": 2, - "complete": 12, - "decompressed": 3, - "if": 297, - "necessary": 2, - "moved": 2, - "*temporaryFileDownloadPath": 2, - "response": 17, - "shouldWaitToInflateCompressedResponses": 4, - "NO": 30, - "created": 3, - "path": 11, - "containing": 1, - "inflated": 6, - "as": 17, - "it": 28, - "comes": 3, - "*temporaryUncompressedDataDownloadPath": 2, - "Used": 13, - "writing": 2, - "NSOutputStream": 6, - "*fileDownloadOutputStream": 2, - "*inflatedFileDownloadOutputStream": 2, - "fails": 2, - "or": 18, - "completes": 6, - "finished": 3, - "cancelled": 5, - "an": 20, - "error": 75, - "occurs": 1, - "NSError": 51, - "code": 16, - "Connection": 1, - "failure": 1, - "occurred": 1, - "inspect": 1, - "[": 1227, - "userInfo": 15, - "]": 1227, - "objectForKey": 29, - "NSUnderlyingErrorKey": 3, - "information": 5, - "*error": 3, - "Username": 2, - "password": 11, - "authentication": 18, - "*username": 2, - "*password": 2, - "User": 1, - "Agent": 1, - "*userAgentString": 2, - "Domain": 2, - "NTLM": 6, - "*domain": 2, - "proxy": 11, - "*proxyUsername": 2, - "*proxyPassword": 2, - "*proxyDomain": 2, - "Delegate": 2, - "displaying": 2, - "upload": 4, - "usually": 2, - "NSProgressIndicator": 4, - "but": 5, - "supply": 2, - "different": 4, - "object": 36, - "handle": 4, - "yourself": 4, - "": 2, - "uploadProgressDelegate": 8, - "downloadProgressDelegate": 10, - "Whether": 1, - "t": 15, - "want": 5, - "hassle": 1, - "adding": 1, - "authenticating": 2, - "proxies": 3, - "their": 3, - "apps": 1, - "shouldPresentProxyAuthenticationDialog": 2, - "CFHTTPAuthenticationRef": 2, - "proxyAuthentication": 7, - "*proxyCredentials": 2, - "during": 4, - "int": 55, - "proxyAuthenticationRetryCount": 4, - "Authentication": 3, - "scheme": 5, - "Basic": 2, - "Digest": 2, - "*proxyAuthenticationScheme": 2, - "Realm": 1, - "required": 2, - "*proxyAuthenticationRealm": 3, - "HTTP": 9, - "eg": 2, - "OK": 1, - "Not": 2, - "found": 4, - "etc": 1, - "responseStatusCode": 3, - "Description": 1, - "*responseStatusMessage": 3, - "Size": 3, - "contentLength": 6, - "partially": 1, - "content": 5, - "partialDownloadSize": 8, - "POST": 2, - "payload": 1, - "postLength": 6, - "amount": 12, - "totalBytesRead": 4, - "uploaded": 2, - "totalBytesSent": 5, - "Last": 2, - "incrementing": 2, - "lastBytesRead": 3, - "sent": 6, - "lastBytesSent": 3, - "This": 7, - "lock": 19, - "prevents": 1, - "being": 4, - "inopportune": 1, - "moment": 1, - "NSRecursiveLock": 13, - "*cancelledLock": 2, - "Called": 6, - "implemented": 7, - "starts.": 1, - "requestStarted": 3, - "SEL": 19, - "didStartSelector": 2, - "receives": 3, - "headers.": 1, - "didReceiveResponseHeaders": 2, - "didReceiveResponseHeadersSelector": 2, - "Location": 1, - "header": 20, - "shouldRedirect": 3, - "YES": 62, - "then": 1, - "needed": 3, - "restart": 1, - "by": 12, - "calling": 1, - "redirectToURL": 2, - "simply": 1, - "cancel": 5, - "willRedirectSelector": 2, - "successfully.": 1, - "requestFinished": 4, - "didFinishSelector": 2, - "fails.": 1, - "requestFailed": 2, - "didFailSelector": 2, - "data.": 1, - "didReceiveData": 2, - "implement": 1, - "method": 5, - "must": 6, - "populate": 1, - "responseData": 5, - "write": 4, - "didReceiveDataSelector": 2, - "recording": 1, - "something": 1, - "last": 1, - "happened": 1, - "compare": 4, - "current": 2, - "date": 3, - "time": 9, - "out": 7, - "NSDate": 9, - "*lastActivityTime": 2, - "Number": 1, - "seconds": 2, - "wait": 1, - "before": 6, - "timing": 1, - "default": 8, - "NSTimeInterval": 10, - "timeOutSeconds": 3, - "HEAD": 10, - "length": 32, - "starts": 2, - "shouldResetUploadProgress": 3, - "shouldResetDownloadProgress": 3, - "showAccurateProgress": 7, - "preset": 2, - "*mainRequest": 2, - "only": 12, - "update": 6, - "indicator": 4, - "according": 2, - "how": 2, - "much": 2, - "has": 6, - "received": 5, - "so": 15, - "far": 2, - "Also": 1, - "see": 1, - "comments": 1, - "ASINetworkQueue.h": 1, - "ensure": 1, - "incremented": 4, - "once": 3, - "updatedProgress": 3, - "Prevents": 1, - "post": 2, - "built": 2, - "than": 9, - "largely": 1, - "subclasses": 2, - "haveBuiltPostBody": 3, - "internally": 3, - "may": 8, - "reflect": 1, - "internal": 2, - "buffer": 7, - "CFNetwork": 3, - "/": 18, - "PUT": 1, - "operations": 1, - "sizes": 1, - "greater": 1, - "uploadBufferSize": 6, - "timeout": 6, - "unless": 2, - "bytes": 8, - "have": 15, - "been": 1, - "Likely": 1, - "KB": 4, - "iPhone": 3, - "Mac": 2, - "OS": 1, - "X": 1, - "Leopard": 1, - "x": 10, - "Text": 1, - "encoding": 7, - "responses": 5, - "send": 2, - "Content": 1, - "Type": 1, - "charset": 5, - "value.": 1, - "Defaults": 2, - "NSISOLatin1StringEncoding": 2, - "NSStringEncoding": 6, - "defaultResponseEncoding": 4, - "text": 12, - "didn": 3, - "set.": 1, - "responseEncoding": 3, - "Tells": 1, - "delete": 1, - "partial": 2, - "downloads": 1, - "allows": 1, - "existing": 1, - "resume": 2, - "download.": 1, - "NO.": 1, - "allowResumeForFileDownloads": 2, - "Custom": 1, - "user": 6, - "associated": 1, - "*userInfo": 2, - "NSInteger": 56, - "tag": 2, - "Use": 6, - "rather": 4, - "defaults": 2, - "false": 3, - "useHTTPVersionOne": 3, - "get": 4, - "tell": 2, - "main": 8, - "loop": 1, - "stop": 4, - "retry": 3, - "new": 10, - "needsRedirect": 3, - "Incremented": 1, - "every": 3, - "redirects.": 1, - "reaches": 1, - "give": 2, - "up": 4, - "redirectCount": 2, - "check": 1, - "secure": 1, - "certificate": 2, - "self": 500, - "signed": 1, - "certificates": 2, - "development": 1, - "DO": 1, - "NOT": 1, - "USE": 1, - "IN": 1, - "PRODUCTION": 1, - "validatesSecureCertificate": 3, - "SecIdentityRef": 3, - "clientCertificateIdentity": 5, - "*clientCertificates": 2, - "Details": 1, - "could": 1, - "these": 3, - "best": 1, - "local": 1, - "*PACurl": 2, - "See": 5, - "values": 3, - "above.": 1, - "No": 1, - "yet": 1, - "authenticationNeeded": 3, - "ASIHTTPRequests": 1, - "store": 4, - "same": 6, - "asked": 3, - "avoids": 1, - "extra": 1, - "round": 1, - "trip": 1, - "after": 5, - "succeeded": 1, - "which": 1, - "efficient": 1, - "authenticated": 1, - "large": 1, - "bodies": 1, - "slower": 1, - "connections": 3, - "Set": 4, - "explicitly": 2, - "affects": 1, - "cache": 17, - "YES.": 1, - "Credentials": 1, - "never": 1, - "asks": 1, - "For": 2, - "using": 8, - "authenticationScheme": 4, - "*": 311, - "kCFHTTPAuthenticationSchemeBasic": 2, - "very": 2, - "first": 9, - "shouldPresentCredentialsBeforeChallenge": 4, - "hasn": 1, - "doing": 1, - "anything": 1, - "expires": 1, - "persistentConnectionTimeoutSeconds": 4, - "yes": 1, - "keep": 2, - "alive": 1, - "connectionCanBeReused": 4, - "Stores": 1, - "persistent": 5, - "connection": 17, - "currently": 4, - "use.": 1, - "It": 2, - "particular": 2, - "specify": 2, - "expire": 2, - "A": 4, - "host": 9, - "port": 17, - "connection.": 2, - "These": 1, - "determine": 1, - "whether": 1, - "reused": 2, - "subsequent": 2, - "all": 3, - "match": 1, - "An": 2, - "determining": 1, - "available": 1, - "number": 2, - "reference": 1, - "don": 2, - "ve": 7, - "opened": 3, - "one.": 1, - "stream": 13, - "closed": 1, - "+": 195, - "released": 2, - "either": 1, - "another": 1, - "timer": 5, - "fires": 1, - "NSMutableDictionary": 18, - "*connectionInfo": 2, - "automatic": 1, - "redirects": 2, - "standard": 1, - "follow": 1, - "behaviour": 2, - "most": 1, - "browsers": 1, - "shouldUseRFC2616RedirectBehaviour": 2, - "record": 1, - "downloading": 5, - "downloadComplete": 2, - "ID": 1, - "uniquely": 1, - "identifies": 1, - "primarily": 1, - "debugging": 1, - "NSNumber": 11, - "*requestID": 3, - "ASIHTTPRequestRunLoopMode": 2, - "synchronous": 1, - "NSDefaultRunLoopMode": 2, - "other": 3, - "*runLoopMode": 2, - "checks": 1, - "NSTimer": 5, - "*statusTimer": 2, - "setDefaultCache": 2, - "configure": 2, - "": 9, - "downloadCache": 5, - "policy": 7, - "ASICacheDelegate.h": 2, - "possible": 3, - "ASICachePolicy": 4, - "cachePolicy": 3, - "storage": 2, - "ASICacheStoragePolicy": 2, - "cacheStoragePolicy": 2, - "was": 4, - "pulled": 1, - "didUseCachedResponse": 3, - "secondsToCache": 3, - "custom": 2, - "interval": 1, - "expiring": 1, - "&&": 123, - "shouldContinueWhenAppEntersBackground": 3, - "UIBackgroundTaskIdentifier": 1, - "backgroundTask": 7, - "helper": 1, - "inflate": 2, - "*dataDecompressor": 2, - "Controls": 1, - "without": 1, - "responseString": 3, - "All": 2, - "no": 7, - "raw": 3, - "discarded": 1, - "rawResponseData": 4, - "temporaryFileDownloadPath": 2, - "normal": 1, - "temporaryUncompressedDataDownloadPath": 3, - "contents": 1, - "into": 1, - "Setting": 1, - "especially": 1, - "useful": 1, - "users": 1, - "conjunction": 1, - "streaming": 1, - "parser": 3, - "allow": 1, - "passed": 2, - "while": 11, - "still": 2, - "running": 4, - "behind": 1, - "scenes": 1, - "PAC": 7, - "own": 3, - "isPACFileRequest": 3, - "http": 4, - "https": 1, - "webservers": 1, - "*PACFileRequest": 2, - "asynchronously": 1, - "reading": 1, - "URLs": 2, - "NSInputStream": 7, - "*PACFileReadStream": 2, - "storing": 1, - "NSMutableData": 5, - "*PACFileData": 2, - "startSynchronous.": 1, - "Currently": 1, - "detection": 2, - "synchronously": 1, - "isSynchronous": 2, - "//block": 12, - "execute": 4, - "startedBlock": 5, + "TUITableViewStylePlain": 2, + "//": 317, + "regular": 1, + "table": 7, + "view": 11, + "TUITableViewStyleGrouped": 1, + "grouped": 1, "headers": 11, - "headersReceivedBlock": 5, - "completionBlock": 5, - "failureBlock": 5, - "bytesReceivedBlock": 8, - "bytesSentBlock": 5, - "downloadSizeIncrementedBlock": 5, - "uploadSizeIncrementedBlock": 5, - "handling": 4, - "dataReceivedBlock": 5, - "authenticationNeededBlock": 5, - "proxyAuthenticationNeededBlock": 5, - "redirections": 1, - "requestRedirectedBlock": 5, + "stick": 1, + "to": 115, + "the": 197, + "top": 8, + "of": 34, + "and": 44, + "scroll": 3, + "with": 19, + "it": 28, + "}": 532, + "TUITableViewStyle": 4, + ";": 2003, + "TUITableViewScrollPositionNone": 2, + "TUITableViewScrollPositionTop": 2, + "TUITableViewScrollPositionMiddle": 1, + "TUITableViewScrollPositionBottom": 1, + "TUITableViewScrollPositionToVisible": 3, + "currently": 4, + "only": 12, + "supported": 1, + "arg": 11, + "TUITableViewScrollPosition": 5, + "TUITableViewInsertionMethodBeforeIndex": 1, + "NSOrderedAscending": 4, + "TUITableViewInsertionMethodAtIndex": 1, + "NSOrderedSame": 1, + "TUITableViewInsertionMethodAfterIndex": 1, + "NSOrderedDescending": 4, + "TUITableViewInsertionMethod": 3, + "@class": 4, + "TUITableViewCell": 23, + "@protocol": 3, + "TUITableViewDataSource": 2, + "TUITableView": 25, + "TUITableViewDelegate": 1, + "": 1, + "TUIScrollViewDelegate": 1, + "-": 595, + "(": 2109, + "CGFloat": 44, + ")": 2106, + "tableView": 45, + "*": 311, + "heightForRowAtIndexPath": 2, + "TUIFastIndexPath": 89, + "indexPath": 47, + "@optional": 2, + "void": 253, + "willDisplayCell": 2, + "cell": 21, + "forRowAtIndexPath": 2, + "called": 3, + "after": 5, + "s": 35, + "added": 5, + "as": 17, + "a": 78, + "subview": 1, + "didSelectRowAtIndexPath": 3, + "happens": 4, + "on": 26, + "left/right": 2, + "mouse": 2, + "down": 1, + "key": 32, + "up/down": 1, + "didDeselectRowAtIndexPath": 3, + "didClickRowAtIndexPath": 1, + "withEvent": 2, + "NSEvent": 3, + "event": 8, + "up": 4, + "can": 20, + "look": 1, + "at": 10, + "clickCount": 1, + "BOOL": 137, + "TUITableView*": 1, + "shouldSelectRowAtIndexPath": 3, + "TUIFastIndexPath*": 1, + "forEvent": 3, + "NSEvent*": 1, + "YES": 62, + "if": 297, + "not": 29, + "implemented": 7, + "NSMenu": 1, + "menuForRowAtIndexPath": 1, + "tableViewWillReloadData": 3, + "tableViewDidReloadData": 3, + "targetIndexPathForMoveFromRowAtIndexPath": 1, + "fromPath": 1, + "toProposedIndexPath": 1, + "proposedPath": 1, + "@end": 37, + "@interface": 23, + "TUIScrollView": 1, + "_style": 8, + "__unsafe_unretained": 2, + "id": 170, + "": 4, + "_dataSource": 6, + "weak": 2, + "NSArray": 27, + "_sectionInfo": 27, + "TUIView": 17, + "_pullDownView": 4, + "_headerView": 8, + "CGSize": 5, + "_lastSize": 1, + "_contentHeight": 7, + "NSMutableIndexSet": 6, + "_visibleSectionHeaders": 6, + "NSMutableDictionary": 18, + "_visibleItems": 14, + "_reusableTableCells": 5, + "_selectedIndexPath": 9, + "_indexPathShouldBeFirstResponder": 2, + "NSInteger": 56, + "_futureMakeFirstResponderToken": 2, + "_keepVisibleIndexPathForReload": 2, + "_relativeOffsetForReload": 2, + "drag": 1, + "reorder": 1, + "state": 35, + "_dragToReorderCell": 5, + "CGPoint": 7, + "_currentDragToReorderLocation": 1, + "_currentDragToReorderMouseOffset": 1, + "_currentDragToReorderIndexPath": 1, + "_currentDragToReorderInsertionMethod": 1, + "_previousDragToReorderIndexPath": 1, + "_previousDragToReorderInsertionMethod": 1, + "struct": 20, + "unsigned": 62, + "int": 55, + "animateSelectionChanges": 3, + "forceSaveScrollPosition": 1, + "derepeaterEnabled": 1, + "layoutSubviewsReentrancyGuard": 1, + "didFirstLayout": 1, + "dataSourceNumberOfSectionsInTableView": 1, + "delegateTableViewWillDisplayCellForRowAtIndexPath": 1, + "maintainContentOffsetAfterReload": 3, + "_tableFlags": 1, + "initWithFrame": 12, + "CGRect": 41, + "frame": 38, + "style": 29, + "must": 6, + "specify": 2, + "creation.": 1, + "calls": 1, + "this": 50, + "UITableViewStylePlain": 1, + "@property": 150, + "nonatomic": 40, + "unsafe_unretained": 2, + "dataSource": 2, + "": 4, + "delegate": 29, + "readwrite": 1, + "assign": 84, + "reloadData": 3, + "reloadDataMaintainingVisibleIndexPath": 2, + "relativeOffset": 5, + "reloadLayout": 2, + "numberOfSections": 10, + "numberOfRowsInSection": 9, + "section": 60, + "rectForHeaderOfSection": 4, + "rectForSection": 3, + "rectForRowAtIndexPath": 7, + "NSIndexSet": 4, + "indexesOfSectionsInRect": 2, + "rect": 10, + "indexesOfSectionHeadersInRect": 2, + "indexPathForCell": 2, + "returns": 4, + "nil": 131, + "is": 77, + "visible": 16, + "indexPathsForRowsInRect": 3, + "valid": 5, + "indexPathForRowAtPoint": 2, + "point": 11, + "indexPathForRowAtVerticalOffset": 2, + "offset": 23, + "indexOfSectionWithHeaderAtPoint": 2, + "indexOfSectionWithHeaderAtVerticalOffset": 2, + "enumerateIndexPathsUsingBlock": 2, + "*indexPath": 11, + "*stop": 7, + "block": 18, + "enumerateIndexPathsWithOptions": 2, + "NSEnumerationOptions": 4, + "options": 6, + "usingBlock": 6, + "enumerateIndexPathsFromIndexPath": 4, + "fromIndexPath": 6, + "toIndexPath": 12, + "withOptions": 4, + "headerViewForSection": 6, + "cellForRowAtIndexPath": 9, + "or": 18, + "index": 11, + "path": 11, + "out": 7, + "range": 8, + "visibleCells": 3, + "no": 7, + "particular": 2, + "order": 1, + "sortedVisibleCells": 2, + "bottom": 6, + "indexPathsForVisibleRows": 2, + "scrollToRowAtIndexPath": 3, + "atScrollPosition": 3, + "scrollPosition": 9, + "animated": 27, + "indexPathForSelectedRow": 4, + "return": 165, + "representing": 1, + "row": 36, + "selection.": 1, + "indexPathForFirstRow": 2, + "indexPathForLastRow": 2, + "selectRowAtIndexPath": 3, + "deselectRowAtIndexPath": 3, + "strong": 4, + "*pullDownView": 1, + "pullDownViewIsVisible": 3, + "*headerView": 6, + "dequeueReusableCellWithIdentifier": 2, + "NSString": 127, + "identifier": 7, + "": 1, + "@required": 1, + "canMoveRowAtIndexPath": 2, + "moveRowAtIndexPath": 2, + "numberOfSectionsInTableView": 3, + "NSIndexPath": 5, + "+": 195, + "indexPathForRow": 11, + "NSUInteger": 93, + "inSection": 11, + "readonly": 19, + "NSString*": 13, + "kTextStyleType": 2, + "@": 258, + "kViewStyleType": 2, + "kImageStyleType": 2, + "///////////////////////////////////////////////////////////////////////////////////////////////////": 24, + "@implementation": 13, + "StyleViewController": 2, + "initWithStyleName": 1, + "name": 7, + "styleType": 3, + "self": 500, + "[": 1227, + "super": 25, + "initWithNibName": 3, + "bundle": 3, + "]": 1227, + "self.title": 2, + "TTStyleSheet": 4, + "globalStyleSheet": 4, + "styleWithSelector": 4, + "retain": 73, + "_styleHighlight": 6, + "forState": 4, + "UIControlStateHighlighted": 1, + "_styleDisabled": 6, + "UIControlStateDisabled": 1, + "_styleSelected": 6, + "UIControlStateSelected": 1, + "_styleType": 6, + "copy": 4, + "dealloc": 13, + "TT_RELEASE_SAFELY": 12, "#pragma": 44, "mark": 42, - "init": 34, - "dealloc": 13, - "initWithURL": 4, - "newURL": 16, - "requestWithURL": 7, - "usingCache": 5, - "andCachePolicy": 3, - "setStartedBlock": 1, - "aStartedBlock": 1, - "setHeadersReceivedBlock": 1, - "aReceivedBlock": 2, - "setCompletionBlock": 1, - "aCompletionBlock": 1, - "setFailedBlock": 1, - "aFailedBlock": 1, - "setBytesReceivedBlock": 1, - "aBytesReceivedBlock": 1, - "setBytesSentBlock": 1, - "aBytesSentBlock": 1, - "setDownloadSizeIncrementedBlock": 1, - "aDownloadSizeIncrementedBlock": 1, - "setUploadSizeIncrementedBlock": 1, - "anUploadSizeIncrementedBlock": 1, - "setDataReceivedBlock": 1, - "setAuthenticationNeededBlock": 1, - "anAuthenticationBlock": 1, - "setProxyAuthenticationNeededBlock": 1, - "aProxyAuthenticationBlock": 1, - "setRequestRedirectedBlock": 1, - "aRedirectBlock": 1, - "setup": 2, - "addRequestHeader": 5, - "applyCookieHeader": 2, - "buildRequestHeaders": 3, - "applyAuthorizationHeader": 2, - "buildPostBody": 3, - "appendPostData": 3, - "appendPostDataFromFile": 3, - "isResponseCompressed": 3, - "startSynchronous": 2, - "startAsynchronous": 2, - "clearDelegatesAndCancel": 2, - "HEADRequest": 1, - "upload/download": 1, - "updateProgressIndicators": 1, - "updateUploadProgress": 3, - "updateDownloadProgress": 3, - "removeUploadProgressSoFar": 1, - "incrementDownloadSizeBy": 1, - "incrementUploadSizeBy": 3, - "updateProgressIndicator": 4, - "withProgress": 4, - "ofTotal": 4, - "performSelector": 7, - "selector": 12, - "onTarget": 7, - "target": 5, - "withObject": 10, - "callerToRetain": 7, - "caller": 1, - "talking": 1, - "delegates": 2, - "requestReceivedResponseHeaders": 1, - "newHeaders": 1, - "failWithError": 11, - "theError": 6, - "retryUsingNewConnection": 1, - "parsing": 2, - "readResponseHeaders": 2, - "parseStringEncodingFromHeaders": 2, - "parseMimeType": 2, - "**": 27, - "mimeType": 2, - "andResponseEncoding": 2, - "stringEncoding": 1, - "fromContentType": 2, - "contentType": 1, - "stuff": 1, - "applyCredentials": 1, - "newCredentials": 16, - "applyProxyCredentials": 2, - "findCredentials": 1, - "findProxyCredentials": 2, - "retryUsingSuppliedCredentials": 1, - "cancelAuthentication": 1, - "attemptToApplyCredentialsAndResume": 1, - "attemptToApplyProxyCredentialsAndResume": 1, - "showProxyAuthenticationDialog": 1, - "showAuthenticationDialog": 1, - "addBasicAuthenticationHeaderWithUsername": 2, - "theUsername": 1, - "andPassword": 2, - "thePassword": 1, - "handlers": 1, - "handleNetworkEvent": 2, - "CFStreamEventType": 2, - "type": 5, - "handleBytesAvailable": 1, - "handleStreamComplete": 1, - "handleStreamError": 1, - "cleanup": 1, - "markAsFinished": 4, - "removeTemporaryDownloadFile": 1, - "removeTemporaryUncompressedDownloadFile": 1, - "removeTemporaryUploadFile": 1, - "removeTemporaryCompressedUploadFile": 1, - "removeFileAtPath": 1, - "err": 8, - "connectionID": 1, - "expirePersistentConnections": 1, - "defaultTimeOutSeconds": 3, - "setDefaultTimeOutSeconds": 1, - "newTimeOutSeconds": 1, - "client": 1, - "setClientCertificateIdentity": 1, - "anIdentity": 1, - "sessionProxyCredentialsStore": 1, - "sessionCredentialsStore": 1, - "storeProxyAuthenticationCredentialsInSessionStore": 1, - "storeAuthenticationCredentialsInSessionStore": 2, - "removeProxyAuthenticationCredentialsFromSessionStore": 1, - "removeAuthenticationCredentialsFromSessionStore": 3, - "findSessionProxyAuthenticationCredentials": 1, - "findSessionAuthenticationCredentials": 2, - "saveCredentialsToKeychain": 3, - "saveCredentials": 4, - "NSURLCredential": 8, - "forHost": 2, - "realm": 14, - "forProxy": 2, - "savedCredentialsForHost": 1, - "savedCredentialsForProxy": 1, - "removeCredentialsForHost": 1, - "removeCredentialsForProxy": 1, - "setSessionCookies": 1, - "newSessionCookies": 1, - "addSessionCookie": 1, - "NSHTTPCookie": 1, - "newCookie": 1, - "agent": 2, - "defaultUserAgentString": 1, - "setDefaultUserAgentString": 1, - "mime": 1, - "mimeTypeForFileAtPath": 1, - "bandwidth": 3, - "measurement": 1, - "throttling": 1, - "maxBandwidthPerSecond": 2, - "setMaxBandwidthPerSecond": 1, - "averageBandwidthUsedPerSecond": 2, - "performThrottling": 2, - "isBandwidthThrottled": 2, - "incrementBandwidthUsedInLastSecond": 1, - "setShouldThrottleBandwidthForWWAN": 1, - "throttle": 1, - "throttleBandwidthForWWANUsingLimit": 1, - "limit": 1, - "reachability": 1, - "isNetworkReachableViaWWAN": 1, - "queue": 12, - "NSOperationQueue": 4, - "sharedQueue": 4, - "defaultCache": 3, - "maxUploadReadLength": 1, - "activity": 1, - "isNetworkInUse": 1, - "setShouldUpdateNetworkActivityIndicator": 1, - "shouldUpdate": 1, - "showNetworkActivityIndicator": 1, - "hideNetworkActivityIndicator": 1, - "miscellany": 1, - "base64forData": 1, - "theData": 1, - "expiryDateForRequest": 1, - "maxAge": 2, - "dateFromRFC1123String": 1, - "isMultitaskingSupported": 2, - "threading": 1, - "NSThread": 4, - "threadForRequest": 3, - "@property": 150, - "retain": 73, - "*proxyHost": 1, - "assign": 84, - "proxyPort": 2, - "*proxyType": 1, - "setter": 2, - "setURL": 3, - "nonatomic": 40, - "readonly": 19, - "*authenticationRealm": 2, - "*requestHeaders": 1, - "*requestCredentials": 1, - "*rawResponseData": 1, - "*requestMethod": 1, - "*postBody": 1, - "*postBodyFilePath": 1, - "shouldStreamPostDataFromDisk": 4, - "didCreateTemporaryPostDataFile": 1, - "*authenticationScheme": 1, - "shouldPresentAuthenticationDialog": 1, - "authenticationRetryCount": 2, - "haveBuiltRequestHeaders": 1, - "inProgress": 4, - "numberOfTimesToRetryOnTimeout": 2, - "retryCount": 3, - "shouldAttemptPersistentConnection": 2, - "@end": 37, - "": 1, - "#else": 8, - "": 1, - "@": 258, - "static": 102, - "*defaultUserAgent": 1, - "*ASIHTTPRequestRunLoopMode": 1, - "CFOptionFlags": 1, - "kNetworkEvents": 1, - "kCFStreamEventHasBytesAvailable": 1, - "|": 13, - "kCFStreamEventEndEncountered": 1, - "kCFStreamEventErrorOccurred": 1, - "*sessionCredentialsStore": 1, - "*sessionProxyCredentialsStore": 1, - "*sessionCredentialsLock": 1, - "*sessionCookies": 1, - "RedirectionLimit": 1, - "ReadStreamClientCallBack": 1, - "CFReadStreamRef": 5, - "readStream": 5, - "*clientCallBackInfo": 1, - "ASIHTTPRequest*": 1, - "clientCallBackInfo": 1, - "*progressLock": 1, - "*ASIRequestCancelledError": 1, - "*ASIRequestTimedOutError": 1, - "*ASIAuthenticationError": 1, - "*ASIUnableToCreateRequestError": 1, - "*ASITooMuchRedirectionError": 1, - "*bandwidthUsageTracker": 1, - "nextConnectionNumberToCreate": 1, - "*persistentConnectionsPool": 1, - "*connectionsLock": 1, - "nextRequestID": 1, - "bandwidthUsedInLastSecond": 1, - "*bandwidthMeasurementDate": 1, - "NSLock": 2, - "*bandwidthThrottlingLock": 1, - "shouldThrottleBandwidthForWWANOnly": 1, - "*sessionCookiesLock": 1, - "*delegateAuthenticationLock": 1, - "*throttleWakeUpTime": 1, - "runningRequestCount": 1, - "shouldUpdateNetworkActivityIndicator": 1, - "*networkThread": 1, - "*sharedQueue": 1, - "cancelLoad": 3, - "destroyReadStream": 3, - "scheduleReadStream": 1, - "unscheduleReadStream": 1, - "willAskDelegateForCredentials": 1, - "willAskDelegateForProxyCredentials": 1, - "askDelegateForProxyCredentials": 1, - "askDelegateForCredentials": 1, - "failAuthentication": 1, - "measureBandwidthUsage": 1, - "recordBandwidthUsage": 1, - "startRequest": 3, - "updateStatus": 2, - "checkRequestStatus": 2, - "reportFailure": 3, - "reportFinished": 1, - "performRedirect": 1, - "shouldTimeOut": 2, - "willRedirect": 1, - "willAskDelegateToConfirmRedirect": 1, - "performInvocation": 2, - "NSInvocation": 4, - "invocation": 4, - "releasingObject": 2, - "objectToRelease": 1, - "hideNetworkActivityIndicatorAfterDelay": 1, - "hideNetworkActivityIndicatorIfNeeeded": 1, - "runRequests": 1, - "configureProxies": 2, - "fetchPACFile": 1, - "finishedDownloadingPACFile": 1, - "theRequest": 1, - "runPACScript": 1, - "script": 1, - "timeOutPACRead": 1, - "useDataFromCache": 2, - "updatePartialDownloadSize": 1, - "registerForNetworkReachabilityNotifications": 1, - "unsubscribeFromNetworkReachabilityNotifications": 1, - "reachabilityChanged": 1, - "NSNotification": 2, - "note": 1, - "performBlockOnMainThread": 2, - "block": 18, - "releaseBlocksOnMainThread": 4, - "releaseBlocks": 3, - "blocks": 16, - "callBlock": 1, - "*postBodyWriteStream": 1, - "*postBodyReadStream": 1, - "*compressedPostBody": 1, - "*compressedPostBodyFilePath": 1, - "willRetryRequest": 1, - "*readStream": 1, - "readStreamIsScheduled": 1, - "setSynchronous": 2, - "@implementation": 13, - "initialize": 1, - "class": 30, - "persistentConnectionsPool": 3, + "UIViewController": 2, + "addTextView": 5, + "title": 2, + "TTStyle*": 7, + "textFrame": 3, + "TTRectInset": 3, + "UIEdgeInsetsMake": 3, + "StyleView*": 2, + "text": 12, + "StyleView": 2, "alloc": 47, - "connectionsLock": 3, - "progressLock": 1, - "bandwidthThrottlingLock": 1, - "sessionCookiesLock": 1, - "sessionCredentialsLock": 1, - "delegateAuthenticationLock": 1, - "bandwidthUsageTracker": 1, - "initWithCapacity": 2, - "ASIRequestTimedOutError": 1, - "initWithDomain": 5, - "dictionaryWithObjectsAndKeys": 10, - "NSLocalizedDescriptionKey": 10, - "ASIAuthenticationError": 1, - "ASIRequestCancelledError": 2, - "ASIUnableToCreateRequestError": 3, - "ASITooMuchRedirectionError": 1, - "setMaxConcurrentOperationCount": 1, - "setRequestMethod": 3, - "setRunLoopMode": 2, - "setShouldAttemptPersistentConnection": 2, - "setPersistentConnectionTimeoutSeconds": 2, - "setShouldPresentCredentialsBeforeChallenge": 1, - "setShouldRedirect": 1, - "setShowAccurateProgress": 1, - "setShouldResetDownloadProgress": 1, - "setShouldResetUploadProgress": 1, - "setAllowCompressedResponse": 1, - "setShouldWaitToInflateCompressedResponses": 1, - "setDefaultResponseEncoding": 1, - "setShouldPresentProxyAuthenticationDialog": 1, - "setTimeOutSeconds": 1, - "setUseSessionPersistence": 1, - "setUseCookiePersistence": 1, - "setValidatesSecureCertificate": 1, - "setRequestCookies": 2, - "autorelease": 21, - "setDidStartSelector": 1, - "@selector": 28, - "setDidReceiveResponseHeadersSelector": 1, - "setWillRedirectSelector": 1, - "willRedirectToURL": 1, - "setDidFinishSelector": 1, - "setDidFailSelector": 1, - "setDidReceiveDataSelector": 1, - "setCancelledLock": 1, - "setDownloadCache": 3, - "return": 165, - "ASIUseDefaultCachePolicy": 1, - "*request": 1, - "setCachePolicy": 1, - "setAuthenticationNeeded": 2, - "requestAuthentication": 7, - "CFRelease": 19, - "redirectURL": 1, - "release": 66, - "statusTimer": 3, - "invalidate": 2, - "postBody": 11, - "compressedPostBody": 4, - "requestHeaders": 6, - "requestCookies": 1, - "fileDownloadOutputStream": 1, - "inflatedFileDownloadOutputStream": 1, - "username": 8, - "domain": 2, - "authenticationRealm": 4, - "requestCredentials": 1, - "proxyHost": 2, - "proxyType": 1, - "proxyUsername": 3, - "proxyPassword": 3, - "proxyDomain": 1, - "proxyAuthenticationRealm": 2, - "proxyAuthenticationScheme": 2, - "proxyCredentials": 1, - "originalURL": 1, - "lastActivityTime": 1, - "responseCookies": 1, - "responseHeaders": 5, - "requestMethod": 13, - "cancelledLock": 37, - "postBodyFilePath": 7, - "compressedPostBodyFilePath": 4, - "postBodyWriteStream": 7, - "postBodyReadStream": 2, - "PACurl": 1, - "clientCertificates": 2, - "responseStatusMessage": 1, - "connectionInfo": 13, - "requestID": 2, - "dataDecompressor": 1, - "userAgentString": 1, - "super": 25, - "*blocks": 1, - "array": 84, - "addObject": 16, - "performSelectorOnMainThread": 2, - "waitUntilDone": 4, - "isMainThread": 2, - "Blocks": 1, - "exits": 1, - "setRequestHeaders": 2, - "dictionaryWithCapacity": 2, - "setObject": 9, - "forKey": 9, - "Are": 1, - "submitting": 1, - "disk": 1, - "were": 5, - "close": 5, - "setPostBodyWriteStream": 2, - "*path": 1, - "setCompressedPostBodyFilePath": 1, - "NSTemporaryDirectory": 2, - "stringByAppendingPathComponent": 2, - "NSProcessInfo": 2, - "processInfo": 2, - "globallyUniqueString": 2, - "*err": 3, - "ASIDataCompressor": 2, - "compressDataFromFile": 1, - "toFile": 1, - "&": 36, - "else": 35, - "setPostLength": 3, - "NSFileManager": 1, - "attributesOfItemAtPath": 1, - "fileSize": 1, - "errorWithDomain": 6, - "stringWithFormat": 6, - "Otherwise": 2, - "*compressedBody": 1, - "compressData": 1, - "setCompressedPostBody": 1, - "compressedBody": 1, + "text.text": 1, + "TTStyleContext*": 1, + "context": 4, + "TTStyleContext": 1, + "init": 34, + "context.frame": 1, + "context.delegate": 1, + "context.font": 1, + "UIFont": 3, + "systemFontOfSize": 2, + "systemFontSize": 1, + "size": 12, + "addToSize": 1, + "CGSizeZero": 1, + "size.width": 1, + "size.height": 1, + "textFrame.size": 1, + "text.frame": 1, + "text.style": 1, + "text.backgroundColor": 1, + "UIColor": 3, + "colorWithRed": 3, + "green": 3, + "blue": 3, + "alpha": 3, + "text.autoresizingMask": 1, + "UIViewAutoresizingFlexibleWidth": 4, + "|": 13, + "UIViewAutoresizingFlexibleBottomMargin": 3, + "self.view": 4, + "addSubview": 8, + "addView": 5, + "viewFrame": 4, + "view.style": 2, + "view.backgroundColor": 2, + "view.autoresizingMask": 2, + "addImageView": 5, + "TTImageView*": 1, + "TTImageView": 1, + "view.urlPath": 1, + "imageFrame": 2, + "view.frame": 2, + "imageFrame.size": 1, + "view.image.size": 1, + "loadView": 4, + "self.view.bounds": 2, + "frame.size.height": 15, + "/": 18, "isEqualToString": 13, - "||": 42, - "setHaveBuiltPostBody": 1, - "setupPostBody": 3, - "setPostBodyFilePath": 1, - "setDidCreateTemporaryPostDataFile": 1, - "initToFileAtPath": 1, - "append": 1, - "open": 2, - "setPostBody": 1, - "maxLength": 3, - "appendData": 2, - "*stream": 1, - "initWithFileAtPath": 1, - "NSUInteger": 93, - "bytesRead": 5, - "hasBytesAvailable": 1, - "char": 19, - "*256": 1, - "sizeof": 13, - "break": 13, - "dataWithBytes": 1, - "*m": 1, - "unlock": 20, - "m": 1, - "newRequestMethod": 3, - "*u": 1, - "u": 4, - "isEqual": 4, - "NULL": 152, - "setRedirectURL": 2, - "d": 11, - "setDelegate": 4, - "newDelegate": 6, - "q": 2, - "setQueue": 2, - "newQueue": 3, - "cancelOnRequestThread": 2, - "DEBUG_REQUEST_STATUS": 4, - "ASI_DEBUG_LOG": 11, - "isCancelled": 6, - "setComplete": 3, - "CFRetain": 4, - "willChangeValueForKey": 1, - "didChangeValueForKey": 1, - "onThread": 2, - "Clear": 3, - "setDownloadProgressDelegate": 2, - "setUploadProgressDelegate": 2, - "initWithBytes": 1, - "*encoding": 1, - "rangeOfString": 1, - ".location": 1, - "NSNotFound": 1, - "uncompressData": 1, - "DEBUG_THROTTLING": 2, - "setInProgress": 3, - "NSRunLoop": 2, - "currentRunLoop": 2, - "runMode": 1, - "runLoopMode": 2, - "beforeDate": 1, - "distantFuture": 1, - "start": 3, - "addOperation": 1, - "concurrency": 1, - "isConcurrent": 1, - "isFinished": 1, - "isExecuting": 1, - "logic": 1, - "@try": 1, - "UIBackgroundTaskInvalid": 3, - "UIApplication": 2, - "sharedApplication": 2, - "beginBackgroundTaskWithExpirationHandler": 1, - "dispatch_async": 1, - "dispatch_get_main_queue": 1, - "endBackgroundTask": 1, - "generated": 3, - "ASINetworkQueue": 4, - "already.": 1, - "proceed.": 1, - "setDidUseCachedResponse": 1, - "Must": 1, - "call": 8, - "create": 1, - "needs": 1, - "mainRequest": 9, - "ll": 6, - "already": 4, - "CFHTTPMessageRef": 3, - "Create": 1, - "request.": 1, - "CFHTTPMessageCreateRequest": 1, - "kCFAllocatorDefault": 3, - "CFStringRef": 1, - "CFURLRef": 1, - "kCFHTTPVersion1_0": 1, - "kCFHTTPVersion1_1": 1, - "//If": 2, - "let": 8, - "generate": 1, - "its": 9, - "Even": 1, - "chance": 2, - "add": 5, - "ASIS3Request": 1, - "does": 3, - "process": 1, - "@catch": 1, - "NSException": 19, - "*exception": 1, - "*underlyingError": 1, - "exception": 3, - "name": 7, - "reason": 1, - "NSLocalizedFailureReasonErrorKey": 1, - "underlyingError": 1, - "@finally": 1, - "Do": 3, - "DEBUG_HTTP_AUTHENTICATION": 4, - "*credentials": 1, - "auth": 2, - "basic": 3, - "any": 3, - "cached": 2, - "key": 32, - "challenge": 1, - "apply": 2, - "like": 1, - "CFHTTPMessageApplyCredentialDictionary": 2, - "CFDictionaryRef": 1, - "setAuthenticationScheme": 1, - "happens": 4, - "%": 30, - "re": 9, - "retrying": 1, - "our": 6, - "measure": 1, - "throttled": 1, - "setPostBodyReadStream": 2, - "ASIInputStream": 2, - "inputStreamWithData": 2, - "setReadStream": 2, - "NSMakeCollectable": 3, - "CFReadStreamCreateForStreamedHTTPRequest": 1, - "CFReadStreamCreateForHTTPRequest": 1, - "lowercaseString": 1, - "*sslProperties": 2, - "initWithObjectsAndKeys": 1, - "numberWithBool": 3, - "kCFStreamSSLAllowsExpiredCertificates": 1, - "kCFStreamSSLAllowsAnyRoot": 1, - "kCFStreamSSLValidatesCertificateChain": 1, - "kCFNull": 1, - "kCFStreamSSLPeerName": 1, - "CFReadStreamSetProperty": 1, - "kCFStreamPropertySSLSettings": 1, - "CFTypeRef": 1, - "sslProperties": 2, - "*certificates": 1, - "arrayWithCapacity": 2, - "count": 99, - "*oldStream": 1, - "redirecting": 2, - "connecting": 2, - "intValue": 4, - "setConnectionInfo": 2, - "Check": 1, - "expired": 1, - "timeIntervalSinceNow": 1, - "<": 56, - "DEBUG_PERSISTENT_CONNECTIONS": 3, - "removeObject": 2, - "//Some": 1, - "previously": 1, - "there": 1, - "one": 1, - "We": 7, - "just": 4, - "old": 5, - "//lists.apple.com/archives/Macnetworkprog/2006/Mar/msg00119.html": 1, - "oldStream": 4, - "streamSuccessfullyOpened": 1, - "setConnectionCanBeReused": 2, - "Record": 1, - "started": 1, - "nothing": 2, - "setLastActivityTime": 1, - "setStatusTimer": 2, - "timerWithTimeInterval": 1, - "repeats": 1, - "addTimer": 1, - "forMode": 1, - "here": 2, - "safely": 1, - "***Black": 1, - "magic": 1, - "warning***": 1, - "reliable": 1, - "way": 1, - "track": 1, - "strong": 4, - "slow.": 1, - "secondsSinceLastActivity": 1, - "*1.5": 1, - "updating": 1, - "checking": 1, - "told": 1, - "us": 2, - "auto": 2, - "resuming": 1, - "Range": 1, - "take": 1, - "account": 1, - "perhaps": 1, - "setTotalBytesSent": 1, - "CFReadStreamCopyProperty": 2, - "kCFStreamPropertyHTTPRequestBytesWrittenCount": 1, - "unsignedLongLongValue": 1, - "middle": 1, - "said": 1, - "might": 4, - "MaxValue": 2, - "UIProgressView": 2, - "double": 3, - "max": 7, - "setMaxValue": 2, - "examined": 1, - "since": 1, - "authenticate": 1, - "bytesReadSoFar": 3, - "setUpdatedProgress": 1, - "didReceiveBytes": 2, - "totalSize": 2, - "setLastBytesRead": 1, - "pass": 5, - "pointer": 2, - "directly": 1, - "itself": 1, - "setArgument": 4, - "atIndex": 6, - "argumentNumber": 1, - "callback": 3, - "NSMethodSignature": 1, - "*cbSignature": 1, - "methodSignatureForSelector": 1, - "*cbInvocation": 1, - "invocationWithMethodSignature": 1, - "cbSignature": 1, - "cbInvocation": 5, - "setSelector": 1, - "setTarget": 1, - "forget": 2, - "know": 3, - "removeObjectForKey": 1, - "dateWithTimeIntervalSinceNow": 1, - "ignore": 1, - "ASIFallbackToCacheIfLoadFailsCachePolicy": 2, - "canUseCachedDataForRequest": 1, - "setError": 2, - "*failedRequest": 1, - "compatible": 1, - "fail": 1, - "failedRequest": 4, - "message": 2, - "kCFStreamPropertyHTTPResponseHeader": 1, - "Make": 1, - "sure": 1, - "tells": 1, - "keepAliveHeader": 2, - "NSScanner": 2, - "*scanner": 1, - "scannerWithString": 1, - "scanner": 5, - "scanString": 2, - "intoString": 3, - "scanInt": 2, - "scanUpToString": 1, - "what": 3, - "hard": 1, - "throw": 1, - "away.": 1, - "*userAgentHeader": 1, - "*acceptHeader": 1, - "userAgentHeader": 2, - "acceptHeader": 2, - "setHaveBuiltRequestHeaders": 1, - "Force": 2, - "rebuild": 2, - "cookie": 1, - "incase": 1, - "got": 1, - "some": 1, - "remain": 1, - "ones": 3, - "URLWithString": 1, - "valueForKey": 2, - "relativeToURL": 1, - "absoluteURL": 1, - "setNeedsRedirect": 1, - "means": 1, - "manually": 1, - "added": 5, - "those": 1, - "global": 1, - "But": 1, - "safest": 1, - "option": 1, - "responseCode": 1, - "Handle": 1, - "*mimeType": 1, - "setResponseEncoding": 2, - "saveProxyCredentialsToKeychain": 1, - "*authenticationCredentials": 2, - "credentialWithUser": 2, - "kCFHTTPAuthenticationUsername": 2, - "kCFHTTPAuthenticationPassword": 2, - "persistence": 2, - "NSURLCredentialPersistencePermanent": 2, - "authenticationCredentials": 4, - "setProxyAuthenticationRetryCount": 1, - "Apply": 1, - "whatever": 1, - "ok": 1, - "CFMutableDictionaryRef": 1, - "*sessionCredentials": 1, - "dictionary": 64, - "sessionCredentials": 6, - "setRequestCredentials": 1, - "*newCredentials": 1, - "*user": 1, - "*pass": 1, - "*theRequest": 1, - "try": 3, - "connect": 1, - "website": 1, - "kCFHTTPAuthenticationSchemeNTLM": 1, - "Ok": 1, - "extract": 1, - "NSArray*": 1, - "ntlmComponents": 1, - "componentsSeparatedByString": 1, - "AUTH": 6, - "Request": 6, - "parent": 1, - "properties": 1, - "ASIAuthenticationDialog": 2, - "had": 1, + "frame.origin.y": 16, + "else": 35, "Foo": 2, - "NSObject": 5, - "": 2, "FooAppDelegate": 2, - "": 1, - "@private": 2, - "NSWindow": 2, - "*window": 2, - "IBOutlet": 1, "@synthesize": 7, "window": 1, "applicationDidFinishLaunching": 1, + "NSNotification": 2, "aNotification": 1, + "SBJsonParser": 2, + "maxDepth": 2, + "error": 75, + "self.maxDepth": 2, + "u": 4, + "Methods": 1, + "objectWithData": 7, + "NSData": 28, + "data": 27, + "self.error": 3, + "SBJsonStreamParserAccumulator": 2, + "*accumulator": 1, + "SBJsonStreamParserAdapter": 2, + "*adapter": 1, + "adapter.delegate": 1, + "accumulator": 1, + "SBJsonStreamParser": 2, + "*parser": 1, + "parser.maxDepth": 1, + "parser.delegate": 1, + "adapter": 1, + "switch": 3, + "parser": 3, + "parse": 1, + "case": 8, + "SBJsonStreamParserComplete": 1, + "accumulator.value": 1, + "break": 13, + "SBJsonStreamParserWaitingForData": 1, + "SBJsonStreamParserError": 1, + "parser.error": 1, + "objectWithString": 5, + "repr": 5, + "dataUsingEncoding": 2, + "NSUTF8StringEncoding": 2, + "NSError**": 2, + "error_": 2, + "tmp": 3, + "NSDictionary": 37, + "*ui": 1, + "dictionaryWithObjectsAndKeys": 10, + "NSLocalizedDescriptionKey": 10, + "*error_": 1, + "NSError": 51, + "errorWithDomain": 6, + "code": 16, + "userInfo": 15, + "ui": 1, + "TTViewController": 1, + "@private": 2, + "": 2, + "main": 8, "argc": 1, + "char": 19, "*argv": 1, "NSLog": 4, - "#include": 18, - "": 1, - "": 2, - "": 2, - "": 1, - "": 1, + "": 1, + "static": 102, + "const": 28, + "kFramePadding": 7, + "kElementSpacing": 3, + "kGroupSpacing": 5, + "PlaygroundViewController": 2, + "addHeader": 5, + "yOffset": 42, + "UILabel*": 2, + "label": 6, + "UILabel": 2, + "CGRectZero": 5, + "label.text": 2, + "label.font": 3, + "label.numberOfLines": 2, + "label.frame": 4, + "frame.origin.x": 3, + "frame.size.width": 4, + "sizeWithFont": 2, + "constrainedToSize": 2, + "CGSizeMake": 3, + ".height": 4, + "_scrollView": 9, + "label.frame.size.height": 2, + "addText": 5, + "UIScrollView": 1, + "_scrollView.autoresizingMask": 1, + "UIViewAutoresizingFlexibleHeight": 1, + "NSLocalizedString": 9, + "UIButton*": 1, + "button": 5, + "UIButton": 1, + "buttonWithType": 1, + "UIButtonTypeRoundedRect": 1, + "setTitle": 1, + "UIControlStateNormal": 1, + "addTarget": 1, + "action": 1, + "@selector": 28, + "debugTestAction": 2, + "forControlEvents": 1, + "UIControlEventTouchUpInside": 1, + "sizeToFit": 1, + "button.frame": 2, + "stringWithFormat": 6, + "TTCurrentLocale": 2, + "displayNameForKey": 1, + "NSLocaleIdentifier": 1, + "value": 21, + "localeIdentifier": 1, + "TTPathForBundleResource": 1, + "TTPathForDocumentsResource": 1, + "md5Hash": 1, + "setContentSize": 1, + "viewDidUnload": 2, + "viewDidAppear": 2, + "flashScrollIndicators": 1, "#ifdef": 10, - "__OBJC__": 4, - "": 2, - "": 2, - "": 2, - "": 1, - "": 2, - "": 1, - "__cplusplus": 2, - "NSINTEGER_DEFINED": 3, - "defined": 16, - "__LP64__": 4, - "NS_BUILD_32_LIKE_64": 3, - "NSIntegerMin": 3, - "LONG_MIN": 3, - "NSIntegerMax": 4, - "LONG_MAX": 3, - "NSUIntegerMax": 7, - "ULONG_MAX": 3, - "INT_MIN": 3, - "INT_MAX": 2, - "UINT_MAX": 3, - "_JSONKIT_H_": 3, - "__GNUC__": 14, - "__APPLE_CC__": 2, - "JK_DEPRECATED_ATTRIBUTE": 6, - "__attribute__": 3, - "deprecated": 1, - "JSONKIT_VERSION_MAJOR": 1, - "JSONKIT_VERSION_MINOR": 1, - "JKFlags": 5, - "JKParseOptionNone": 1, - "JKParseOptionStrict": 1, - "JKParseOptionComments": 2, - "<<": 16, - "JKParseOptionUnicodeNewlines": 2, - "JKParseOptionLooseUnicode": 2, - "JKParseOptionPermitTextAfterValidJSON": 2, - "JKParseOptionValidFlags": 1, - "JKParseOptionFlags": 12, - "JKSerializeOptionNone": 3, - "JKSerializeOptionPretty": 2, - "JKSerializeOptionEscapeUnicode": 2, - "JKSerializeOptionEscapeForwardSlashes": 2, - "JKSerializeOptionValidFlags": 1, - "JKSerializeOptionFlags": 16, - "struct": 20, - "JKParseState": 18, - "Opaque": 1, - "private": 1, - "type.": 3, - "JSONDecoder": 2, - "*parseState": 16, - "decoder": 1, - "decoderWithParseOptions": 1, - "parseOptionFlags": 11, - "initWithParseOptions": 1, - "clearCache": 1, - "parseUTF8String": 2, - "size_t": 23, - "Deprecated": 4, - "JSONKit": 11, - "v1.4.": 4, - "objectWithUTF8String": 4, - "instead.": 4, - "parseJSONData": 2, - "jsonData": 6, - "objectWithData": 7, - "mutableObjectWithUTF8String": 2, - "mutableObjectWithData": 2, - "////////////": 4, - "Deserializing": 1, - "methods": 2, - "JSONKitDeserializing": 2, - "objectFromJSONString": 1, - "objectFromJSONStringWithParseOptions": 2, - "mutableObjectFromJSONString": 1, - "mutableObjectFromJSONStringWithParseOptions": 2, - "objectFromJSONData": 1, - "objectFromJSONDataWithParseOptions": 2, - "mutableObjectFromJSONData": 1, - "mutableObjectFromJSONDataWithParseOptions": 2, - "Serializing": 1, - "JSONKitSerializing": 3, - "JSONData": 3, - "Invokes": 2, - "JSONDataWithOptions": 8, - "includeQuotes": 6, - "serializeOptions": 14, - "JSONString": 3, - "JSONStringWithOptions": 8, - "serializeUnsupportedClassesUsingDelegate": 4, - "__BLOCKS__": 1, - "JSONKitSerializingBlockAdditions": 2, - "serializeUnsupportedClassesUsingBlock": 4, + "DEBUG": 1, + "#else": 8, + "#endif": 59, + "TTDPRINTMETHODNAME": 1, + "TTDPRINT": 9, + "TTMAXLOGLEVEL": 1, + "TTDERROR": 1, + "TTLOGLEVEL_ERROR": 1, + "TTDWARNING": 1, + "TTLOGLEVEL_WARNING": 1, + "TTDINFO": 1, + "TTLOGLEVEL_INFO": 1, + "TTDCONDITIONLOG": 3, + "true": 9, + "false": 3, + "rand": 1, + "%": 30, + "TTDASSERT": 2, + "MainMenuViewController": 2, + "nibNameOrNil": 1, + "NSBundle": 1, + "nibBundleOrNil": 1, + "//self.variableHeightRows": 1, + "self.tableViewStyle": 1, + "UITableViewStyleGrouped": 1, + "self.dataSource": 1, + "TTSectionedDataSource": 1, + "dataSourceWithObjects": 1, + "TTTableTextItem": 48, + "itemWithText": 48, + "URL": 48, + "#include": 18, + "": 2, "": 1, + "": 2, "": 1, "": 1, "": 1, "": 1, + "": 2, "": 1, "//#include": 1, "": 1, @@ -47021,29 +45872,45 @@ "": 1, "": 1, "//#import": 1, + "": 4, + "": 2, "": 1, + "": 2, + "": 2, "": 1, "": 1, + "": 2, + "#ifndef": 9, "__has_feature": 3, + "#define": 65, + "x": 10, "JK_ENABLE_CF_TRANSFER_OWNERSHIP_CALLBACKS": 2, "#warning": 1, "As": 1, + "JSONKit": 11, "v1.4": 1, "longer": 2, "required.": 1, + "It": 2, "option.": 1, "__OBJC_GC__": 1, "#error": 6, + "does": 3, + "support": 4, "Objective": 2, "C": 6, "Garbage": 1, "Collection": 1, + "#if": 41, "objc_arc": 1, "Automatic": 1, "Reference": 1, "Counting": 1, "ARC": 1, + "UINT_MAX": 3, "xffffffffU": 1, + "||": 42, + "INT_MIN": 3, "fffffff": 1, "ULLONG_MAX": 1, "xffffffffffffffffULL": 1, @@ -47052,12 +45919,25 @@ "LL": 1, "requires": 4, "types": 2, + "be": 49, "bits": 1, "respectively.": 1, + "defined": 16, + "__LP64__": 4, + "&&": 123, + "ULONG_MAX": 3, + "INT_MAX": 2, + "LONG_MAX": 3, + "LONG_MIN": 3, "WORD_BIT": 1, "LONG_BIT": 1, + "same": 6, "bit": 1, "architectures.": 1, + "NSUIntegerMax": 7, + "NSIntegerMax": 4, + "NSIntegerMin": 3, + "type.": 3, "SIZE_MAX": 1, "SSIZE_MAX": 1, "JK_HASH_INIT": 1, @@ -47065,6 +45945,7 @@ "JK_FAST_TRAILING_BYTES": 2, "JK_CACHE_SLOTS_BITS": 2, "JK_CACHE_SLOTS": 1, + "<<": 16, "JK_CACHE_PROBES": 1, "JK_INIT_CACHE_AGE": 1, "JK_TOKENBUFFER_SIZE": 1, @@ -47072,14 +45953,17 @@ "JK_JSONBUFFER_SIZE": 1, "JK_UTF8BUFFER_SIZE": 1, "JK_ENCODE_CACHE_SLOTS": 1, + "__GNUC__": 14, "JK_ATTRIBUTES": 15, "attr": 3, "...": 11, + "__attribute__": 3, "##__VA_ARGS__": 7, "JK_EXPECTED": 4, "cond": 12, "expect": 3, "__builtin_expect": 1, + "long": 71, "JK_EXPECT_T": 22, "U": 2, "JK_EXPECT_F": 14, @@ -47090,7 +45974,6 @@ "__inline__": 1, "always_inline": 1, "JK_ALIGNED": 1, - "arg": 11, "aligned": 1, "JK_UNUSED_ARG": 2, "unused": 3, @@ -47157,6 +46040,7 @@ "JKManagedBufferLocationMask": 1, "JKManagedBufferLocationShift": 1, "JKManagedBufferMustFree": 1, + "JKFlags": 5, "JKManagedBufferFlags": 1, "JKObjectStackOnStack": 1, "JKObjectStackOnHeap": 1, @@ -47209,10 +46093,14 @@ "JKObjCImpCache": 2, "JKHashTableEntry": 21, "serializeObject": 1, - "options": 6, + "object": 36, + "JKSerializeOptionFlags": 16, "optionFlags": 1, "encodeOption": 2, "JKSERIALIZER_BLOCKS_PROTO": 1, + "selector": 12, + "SEL": 19, + "**": 27, "releaseState": 1, "keyHash": 21, "uint32_t": 1, @@ -47254,11 +46142,14 @@ "xF8": 1, "xFC": 1, "JK_AT_STRING_PTR": 1, + "&": 36, "stringBuffer.bytes.ptr": 2, + "atIndex": 6, "JK_END_STRING_PTR": 1, "stringBuffer.bytes.length": 1, "*_JKArrayCreate": 2, "*objects": 5, + "count": 99, "mutableCollection": 7, "_JKArrayInsertObjectAtIndex": 3, "*array": 9, @@ -47280,14 +46171,19 @@ "*_JKDictionaryHashTableEntryForKey": 2, "aKey": 13, "_JSONDecoderCleanup": 1, + "JSONDecoder": 2, "*decoder": 1, "_NSStringObjectFromJSONString": 1, "*jsonString": 1, + "JKParseOptionFlags": 12, + "parseOptionFlags": 11, "**error": 1, "jk_managedBuffer_release": 1, "*managedBuffer": 3, "jk_managedBuffer_setToStackBuffer": 1, "*ptr": 2, + "size_t": 23, + "length": 32, "*jk_managedBuffer_resize": 1, "newSize": 1, "jk_objectStack_release": 1, @@ -47300,6 +46196,8 @@ "jk_objectStack_resize": 1, "newCount": 1, "jk_error": 1, + "JKParseState": 18, + "*parseState": 16, "*format": 7, "jk_parse_string": 1, "jk_parse_number": 1, @@ -47320,6 +46218,7 @@ "*jk_cachedObjects": 1, "jk_cache_age": 1, "jk_set_parsed_token": 1, + "type": 5, "advanceBy": 1, "jk_encode_error": 1, "*encodeState": 9, @@ -47350,6 +46249,7 @@ "c": 7, "Class": 3, "_JKArrayClass": 5, + "NULL": 152, "_JKArrayInstanceSize": 4, "_JKDictionaryClass": 5, "_JKDictionaryInstanceSize": 4, @@ -47358,24 +46258,33 @@ "_jk_NSNumberAllocImp": 2, "NSNumberInitWithUnsignedLongLongImp": 2, "_jk_NSNumberInitWithUnsignedLongLongImp": 2, + "extern": 6, "jk_collectionClassLoadTimeInitialization": 2, "constructor": 1, "NSAutoreleasePool": 2, "*pool": 1, "Though": 1, "technically": 1, + "required": 2, "run": 1, + "time": 9, "environment": 1, "load": 1, "initialization": 1, + "may": 8, "less": 1, + "than": 9, "ideal.": 1, "objc_getClass": 2, "class_getInstanceSize": 2, + "NSNumber": 11, + "class": 30, "methodForSelector": 2, "temp_NSNumber": 4, "initWithUnsignedLongLong": 1, + "release": 66, "pool": 2, + "NSMutableArray": 31, "": 2, "NSMutableCopying": 2, "NSFastEnumeration": 2, @@ -47384,6 +46293,7 @@ "allocWithZone": 4, "NSZone": 4, "zone": 8, + "NSException": 19, "raise": 18, "NSInvalidArgumentException": 6, "format": 18, @@ -47392,27 +46302,34 @@ "_cmd": 16, "NSCParameterAssert": 19, "objects": 58, + "array": 84, "calloc": 5, "Directly": 2, "allocate": 2, "instance": 2, + "via": 5, "calloc.": 2, "isa": 2, "malloc": 1, + "sizeof": 13, + "autorelease": 21, "memcpy": 2, + "NO": 30, "<=>": 15, "*newObjects": 1, "newObjects": 2, "realloc": 1, "NSMallocException": 2, "memset": 1, + "<": 56, "memmove": 2, + "CFRelease": 19, "atObject": 12, + "for": 99, "free": 4, "NSParameterAssert": 15, "getObjects": 2, "objectsPtr": 3, - "range": 8, "NSRange": 1, "NSMaxRange": 4, "NSRangeException": 6, @@ -47426,6 +46343,7 @@ "mutationsPtr": 2, "itemsPtr": 2, "enumeratedCount": 8, + "while": 11, "insertObject": 1, "anObject": 16, "NSInternalInconsistencyException": 4, @@ -47437,6 +46355,7 @@ "#19.": 2, "removeObjectAtIndex": 1, "replaceObjectAtIndex": 1, + "withObject": 10, "copyWithZone": 1, "initWithObjects": 2, "mutableCopyWithZone": 1, @@ -47446,18 +46365,18 @@ "initWithJKDictionary": 3, "initDictionary": 4, "allObjects": 2, + "CFRetain": 4, "arrayWithObjects": 1, "_JKDictionaryHashEntry": 2, "returnObject": 3, "entry": 41, ".key": 11, "jk_dictionaryCapacities": 4, - "bottom": 6, - "top": 8, "mid": 5, "tableSize": 2, "lround": 1, "floor": 1, + "dictionary": 64, "capacityForCount": 4, "resize": 3, "oldCapacity": 2, @@ -47481,18 +46400,28 @@ "keyEntry": 4, "CFEqual": 2, "CFHash": 1, - "table": 7, + "If": 30, + "was": 4, + "in": 42, + "we": 73, "would": 2, + "have": 15, + "found": 4, + "by": 12, "now.": 1, + "objectForKey": 29, "entryForKey": 3, "_JKDictionaryHashTableEntryForKey": 1, "andKeys": 1, "arrayIdx": 5, "keyEnumerator": 1, - "copy": 4, + "setObject": 9, + "forKey": 9, "Why": 1, "earth": 1, "complain": 1, + "that": 23, + "but": 5, "doesn": 1, "Internal": 2, "Unable": 2, @@ -47503,392 +46432,1394 @@ "ld": 2, "Invalid": 1, "character": 1, + "string": 9, "x.": 1, "n": 7, "r": 6, + "t": 15, + "A": 4, "F": 1, ".": 2, "e": 1, + "double": 3, "Unexpected": 1, "token": 1, "wanted": 1, "Expected": 3, - "MainMenuViewController": 2, - "TTTableViewController": 1, - "///////////////////////////////////////////////////////////////////////////////////////////////////": 24, - "initWithNibName": 3, - "nibNameOrNil": 1, - "bundle": 3, - "NSBundle": 1, - "nibBundleOrNil": 1, - "self.title": 2, - "//self.variableHeightRows": 1, - "self.tableViewStyle": 1, - "UITableViewStyleGrouped": 1, - "self.dataSource": 1, - "TTSectionedDataSource": 1, - "dataSourceWithObjects": 1, - "TTTableTextItem": 48, - "itemWithText": 48, - "URL": 48, - "PlaygroundViewController": 2, - "UIViewController": 2, + "TARGET_OS_IPHONE": 11, + "": 1, + "": 1, + "*ASIHTTPRequestVersion": 2, + "*defaultUserAgent": 1, + "NetworkRequestErrorDomain": 12, + "*ASIHTTPRequestRunLoopMode": 1, + "CFOptionFlags": 1, + "kNetworkEvents": 1, + "kCFStreamEventHasBytesAvailable": 1, + "kCFStreamEventEndEncountered": 1, + "kCFStreamEventErrorOccurred": 1, + "*sessionCredentialsStore": 1, + "*sessionProxyCredentialsStore": 1, + "NSRecursiveLock": 13, + "*sessionCredentialsLock": 1, + "*sessionCookies": 1, + "RedirectionLimit": 1, + "NSTimeInterval": 10, + "defaultTimeOutSeconds": 3, + "ReadStreamClientCallBack": 1, + "CFReadStreamRef": 5, + "readStream": 5, + "CFStreamEventType": 2, + "*clientCallBackInfo": 1, + "ASIHTTPRequest*": 1, + "clientCallBackInfo": 1, + "handleNetworkEvent": 2, + "*progressLock": 1, + "*ASIRequestCancelledError": 1, + "*ASIRequestTimedOutError": 1, + "*ASIAuthenticationError": 1, + "*ASIUnableToCreateRequestError": 1, + "*ASITooMuchRedirectionError": 1, + "*bandwidthUsageTracker": 1, + "averageBandwidthUsedPerSecond": 2, + "nextConnectionNumberToCreate": 1, + "*persistentConnectionsPool": 1, + "*connectionsLock": 1, + "nextRequestID": 1, + "bandwidthUsedInLastSecond": 1, + "NSDate": 9, + "*bandwidthMeasurementDate": 1, + "NSLock": 2, + "*bandwidthThrottlingLock": 1, + "maxBandwidthPerSecond": 2, + "ASIWWANBandwidthThrottleAmount": 2, + "isBandwidthThrottled": 2, + "shouldThrottleBandwidthForWWANOnly": 1, + "*sessionCookiesLock": 1, + "*delegateAuthenticationLock": 1, + "*throttleWakeUpTime": 1, + "": 9, + "defaultCache": 3, + "runningRequestCount": 1, + "shouldUpdateNetworkActivityIndicator": 1, + "NSThread": 4, + "*networkThread": 1, + "NSOperationQueue": 4, + "*sharedQueue": 1, + "ASIHTTPRequest": 31, + "cancelLoad": 3, + "destroyReadStream": 3, + "scheduleReadStream": 1, + "unscheduleReadStream": 1, + "willAskDelegateForCredentials": 1, + "willAskDelegateForProxyCredentials": 1, + "askDelegateForProxyCredentials": 1, + "askDelegateForCredentials": 1, + "failAuthentication": 1, + "measureBandwidthUsage": 1, + "recordBandwidthUsage": 1, + "startRequest": 3, + "updateStatus": 2, + "NSTimer": 5, + "timer": 5, + "checkRequestStatus": 2, + "reportFailure": 3, + "reportFinished": 1, + "markAsFinished": 4, + "performRedirect": 1, + "shouldTimeOut": 2, + "willRedirect": 1, + "willAskDelegateToConfirmRedirect": 1, + "performInvocation": 2, + "NSInvocation": 4, + "invocation": 4, + "onTarget": 7, + "target": 5, + "releasingObject": 2, + "objectToRelease": 1, + "hideNetworkActivityIndicatorAfterDelay": 1, + "hideNetworkActivityIndicatorIfNeeeded": 1, + "runRequests": 1, + "configureProxies": 2, + "fetchPACFile": 1, + "finishedDownloadingPACFile": 1, + "theRequest": 1, + "runPACScript": 1, + "script": 1, + "timeOutPACRead": 1, + "useDataFromCache": 2, + "updatePartialDownloadSize": 1, + "registerForNetworkReachabilityNotifications": 1, + "unsubscribeFromNetworkReachabilityNotifications": 1, + "reachabilityChanged": 1, + "note": 1, + "NS_BLOCKS_AVAILABLE": 8, + "performBlockOnMainThread": 2, + "ASIBasicBlock": 15, + "releaseBlocksOnMainThread": 4, + "releaseBlocks": 3, + "blocks": 16, + "callBlock": 1, + "complete": 12, + "*responseCookies": 3, + "responseStatusCode": 3, + "*lastActivityTime": 2, + "partialDownloadSize": 8, + "uploadBufferSize": 6, + "NSOutputStream": 6, + "*postBodyWriteStream": 1, + "NSInputStream": 7, + "*postBodyReadStream": 1, + "lastBytesRead": 3, + "lastBytesSent": 3, + "*cancelledLock": 2, + "*fileDownloadOutputStream": 2, + "*inflatedFileDownloadOutputStream": 2, + "authenticationRetryCount": 2, + "proxyAuthenticationRetryCount": 4, + "updatedProgress": 3, + "needsRedirect": 3, + "redirectCount": 2, + "*compressedPostBody": 1, + "*compressedPostBodyFilePath": 1, + "*authenticationRealm": 2, + "*proxyAuthenticationRealm": 3, + "*responseStatusMessage": 3, + "inProgress": 4, + "retryCount": 3, + "willRetryRequest": 1, + "connectionCanBeReused": 4, + "*connectionInfo": 2, + "*readStream": 1, + "ASIAuthenticationState": 5, + "authenticationNeeded": 3, + "readStreamIsScheduled": 1, + "downloadComplete": 2, + "*requestID": 3, + "*runLoopMode": 2, + "*statusTimer": 2, + "didUseCachedResponse": 3, + "NSURL": 21, + "*redirectURL": 2, + "isPACFileRequest": 3, + "*PACFileRequest": 2, + "*PACFileReadStream": 2, + "NSMutableData": 5, + "*PACFileData": 2, + "setter": 2, + "setSynchronous": 2, + "isSynchronous": 2, + "initialize": 1, + "persistentConnectionsPool": 3, + "connectionsLock": 3, + "progressLock": 1, + "bandwidthThrottlingLock": 1, + "sessionCookiesLock": 1, + "sessionCredentialsLock": 1, + "delegateAuthenticationLock": 1, + "bandwidthUsageTracker": 1, + "initWithCapacity": 2, + "ASIRequestTimedOutError": 1, + "initWithDomain": 5, + "ASIRequestTimedOutErrorType": 2, + "ASIAuthenticationError": 1, + "ASIAuthenticationErrorType": 3, + "ASIRequestCancelledError": 2, + "ASIRequestCancelledErrorType": 2, + "ASIUnableToCreateRequestError": 3, + "ASIUnableToCreateRequestErrorType": 2, + "ASITooMuchRedirectionError": 1, + "ASITooMuchRedirectionErrorType": 3, + "sharedQueue": 4, + "setMaxConcurrentOperationCount": 1, + "initWithURL": 4, + "newURL": 16, + "setRequestMethod": 3, + "setRunLoopMode": 2, + "NSDefaultRunLoopMode": 2, + "setShouldAttemptPersistentConnection": 2, + "setPersistentConnectionTimeoutSeconds": 2, + "setShouldPresentCredentialsBeforeChallenge": 1, + "setShouldRedirect": 1, + "setShowAccurateProgress": 1, + "setShouldResetDownloadProgress": 1, + "setShouldResetUploadProgress": 1, + "setAllowCompressedResponse": 1, + "setShouldWaitToInflateCompressedResponses": 1, + "setDefaultResponseEncoding": 1, + "NSISOLatin1StringEncoding": 2, + "setShouldPresentProxyAuthenticationDialog": 1, + "setTimeOutSeconds": 1, + "setUseSessionPersistence": 1, + "setUseCookiePersistence": 1, + "setValidatesSecureCertificate": 1, + "setRequestCookies": 2, + "setDidStartSelector": 1, + "requestStarted": 3, + "setDidReceiveResponseHeadersSelector": 1, + "request": 113, + "didReceiveResponseHeaders": 2, + "setWillRedirectSelector": 1, + "willRedirectToURL": 1, + "setDidFinishSelector": 1, + "requestFinished": 4, + "setDidFailSelector": 1, + "requestFailed": 2, + "setDidReceiveDataSelector": 1, + "didReceiveData": 2, + "setURL": 3, + "setCancelledLock": 1, + "setDownloadCache": 3, + "requestWithURL": 7, + "usingCache": 5, + "cache": 17, + "andCachePolicy": 3, + "ASIUseDefaultCachePolicy": 1, + "ASICachePolicy": 4, + "policy": 7, + "*request": 1, + "setCachePolicy": 1, + "setAuthenticationNeeded": 2, + "ASINoAuthenticationNeededYet": 3, + "requestAuthentication": 7, + "proxyAuthentication": 7, + "clientCertificateIdentity": 5, + "redirectURL": 1, + "statusTimer": 3, + "invalidate": 2, + "queue": 12, + "postBody": 11, + "compressedPostBody": 4, + "requestHeaders": 6, + "requestCookies": 1, + "downloadDestinationPath": 11, + "temporaryFileDownloadPath": 2, + "temporaryUncompressedDataDownloadPath": 3, + "fileDownloadOutputStream": 1, + "inflatedFileDownloadOutputStream": 1, + "username": 8, + "password": 11, + "domain": 2, + "authenticationRealm": 4, + "authenticationScheme": 4, + "requestCredentials": 1, + "proxyHost": 2, + "proxyType": 1, + "proxyUsername": 3, + "proxyPassword": 3, + "proxyDomain": 1, + "proxyAuthenticationRealm": 2, + "proxyAuthenticationScheme": 2, + "proxyCredentials": 1, + "url": 24, + "originalURL": 1, + "lastActivityTime": 1, + "responseCookies": 1, + "rawResponseData": 4, + "responseHeaders": 5, + "requestMethod": 13, + "cancelledLock": 37, + "postBodyFilePath": 7, + "compressedPostBodyFilePath": 4, + "postBodyWriteStream": 7, + "postBodyReadStream": 2, + "PACurl": 1, + "clientCertificates": 2, + "responseStatusMessage": 1, + "connectionInfo": 13, + "requestID": 2, + "dataDecompressor": 1, + "userAgentString": 1, + "*blocks": 1, + "completionBlock": 5, + "addObject": 16, + "failureBlock": 5, + "startedBlock": 5, + "headersReceivedBlock": 5, + "bytesReceivedBlock": 8, + "bytesSentBlock": 5, + "downloadSizeIncrementedBlock": 5, + "uploadSizeIncrementedBlock": 5, + "dataReceivedBlock": 5, + "proxyAuthenticationNeededBlock": 5, + "authenticationNeededBlock": 5, + "requestRedirectedBlock": 5, + "performSelectorOnMainThread": 2, + "waitUntilDone": 4, + "isMainThread": 2, + "Blocks": 1, + "will": 57, + "released": 2, + "when": 46, + "method": 5, + "exits": 1, + "setup": 2, + "addRequestHeader": 5, + "header": 20, + "setRequestHeaders": 2, + "dictionaryWithCapacity": 2, + "buildPostBody": 3, + "haveBuiltPostBody": 3, + "Are": 1, + "submitting": 1, + "body": 8, + "from": 18, + "file": 14, + "disk": 1, + "were": 5, + "writing": 2, + "post": 2, + "appendPostData": 3, + "appendPostDataFromFile": 3, + "close": 5, + "write": 4, + "stream": 13, + "setPostBodyWriteStream": 2, + "*path": 1, + "shouldCompressRequestBody": 6, + "setCompressedPostBodyFilePath": 1, + "NSTemporaryDirectory": 2, + "stringByAppendingPathComponent": 2, + "NSProcessInfo": 2, + "processInfo": 2, + "globallyUniqueString": 2, + "*err": 3, + "ASIDataCompressor": 2, + "compressDataFromFile": 1, + "toFile": 1, + "err": 8, + "failWithError": 11, + "setPostLength": 3, + "NSFileManager": 1, + "attributesOfItemAtPath": 1, + "fileSize": 1, + "ASIFileManagementError": 2, + "NSUnderlyingErrorKey": 3, + "Otherwise": 2, + "an": 20, + "memory": 3, + "*compressedBody": 1, + "compressData": 1, + "setCompressedPostBody": 1, + "compressedBody": 1, + "postLength": 6, + "setHaveBuiltPostBody": 1, + "setupPostBody": 3, + "shouldStreamPostDataFromDisk": 4, + "setPostBodyFilePath": 1, + "setDidCreateTemporaryPostDataFile": 1, + "initToFileAtPath": 1, + "append": 1, + "open": 2, + "setPostBody": 1, + "bytes": 8, + "maxLength": 3, + "appendData": 2, + "*stream": 1, + "initWithFileAtPath": 1, + "bytesRead": 5, + "hasBytesAvailable": 1, + "buffer": 7, + "*256": 1, + "read": 3, + "dataWithBytes": 1, + "lock": 19, + "*m": 1, + "unlock": 20, + "m": 1, + "newRequestMethod": 3, + "*u": 1, + "isEqual": 4, + "setRedirectURL": 2, + "d": 11, + "setDelegate": 4, + "newDelegate": 6, + "q": 2, + "setQueue": 2, + "newQueue": 3, + "get": 4, + "information": 5, + "about": 4, + "cancelOnRequestThread": 2, + "DEBUG_REQUEST_STATUS": 4, + "ASI_DEBUG_LOG": 11, + "isCancelled": 6, + "setComplete": 3, + "willChangeValueForKey": 1, + "cancelled": 5, + "didChangeValueForKey": 1, + "cancel": 5, + "performSelector": 7, + "onThread": 2, + "threadForRequest": 3, + "clearDelegatesAndCancel": 2, + "Clear": 3, + "delegates": 2, + "setDownloadProgressDelegate": 2, + "setUploadProgressDelegate": 2, + "result": 4, + "responseString": 3, + "*data": 2, + "responseData": 5, + "initWithBytes": 1, + "encoding": 7, + "responseEncoding": 3, + "isResponseCompressed": 3, + "*encoding": 1, + "rangeOfString": 1, + ".location": 1, + "NSNotFound": 1, + "shouldWaitToInflateCompressedResponses": 4, + "ASIDataDecompressor": 4, + "uncompressData": 1, + "running": 4, + "startSynchronous": 2, + "DEBUG_THROTTLING": 2, + "ASIHTTPRequestRunLoopMode": 2, + "setInProgress": 3, + "NSRunLoop": 2, + "currentRunLoop": 2, + "runMode": 1, + "runLoopMode": 2, + "beforeDate": 1, + "distantFuture": 1, + "start": 3, + "startAsynchronous": 2, + "addOperation": 1, + "concurrency": 1, + "isConcurrent": 1, + "isFinished": 1, + "finished": 3, + "isExecuting": 1, + "logic": 1, + "@try": 1, + "__IPHONE_OS_VERSION_MAX_ALLOWED": 4, + "__IPHONE_4_0": 6, + "isMultitaskingSupported": 2, + "shouldContinueWhenAppEntersBackground": 3, + "backgroundTask": 7, + "UIBackgroundTaskInvalid": 3, + "UIApplication": 2, + "sharedApplication": 2, + "beginBackgroundTaskWithExpirationHandler": 1, + "dispatch_async": 1, + "dispatch_get_main_queue": 1, + "endBackgroundTask": 1, + "HEAD": 10, + "generated": 3, + "ASINetworkQueue": 4, + "set": 24, + "already.": 1, + "so": 15, + "should": 8, + "proceed.": 1, + "setDidUseCachedResponse": 1, + "Must": 1, + "call": 8, + "before": 6, + "create": 1, + "needs": 1, + "mainRequest": 9, + "ll": 6, + "already": 4, + "CFHTTPMessageRef": 3, + "Create": 1, + "new": 10, + "HTTP": 9, + "request.": 1, + "CFHTTPMessageCreateRequest": 1, + "kCFAllocatorDefault": 3, + "CFStringRef": 1, + "CFURLRef": 1, + "useHTTPVersionOne": 3, + "kCFHTTPVersion1_0": 1, + "kCFHTTPVersion1_1": 1, + "//If": 2, + "need": 10, + "let": 8, + "generate": 1, + "its": 9, + "first": 9, + "use": 26, + "them": 10, + "buildRequestHeaders": 3, + "Even": 1, + "still": 2, + "give": 2, + "subclasses": 2, + "chance": 2, + "add": 5, + "their": 3, + "own": 3, + "requests": 21, + "ASIS3Request": 1, + "downloadCache": 5, + "default": 8, + "download": 9, + "downloading": 5, + "proxy": 11, + "PAC": 7, + "once": 3, + "process": 1, + "@catch": 1, + "*exception": 1, + "*underlyingError": 1, + "ASIUnhandledExceptionError": 3, + "exception": 3, + "reason": 1, + "NSLocalizedFailureReasonErrorKey": 1, + "underlyingError": 1, + "@finally": 1, + "applyAuthorizationHeader": 2, + "Do": 3, + "want": 5, + "send": 2, + "credentials": 35, + "are": 15, + "asked": 3, + "shouldPresentCredentialsBeforeChallenge": 4, + "DEBUG_HTTP_AUTHENTICATION": 4, + "*credentials": 1, + "auth": 2, + "basic": 3, + "authentication": 18, + "explicitly": 2, + "kCFHTTPAuthenticationSchemeBasic": 2, + "addBasicAuthenticationHeaderWithUsername": 2, + "andPassword": 2, + "See": 5, + "any": 3, + "cached": 2, + "session": 5, + "store": 4, + "useSessionPersistence": 6, + "findSessionAuthenticationCredentials": 2, + "When": 15, + "Authentication": 3, + "stored": 9, + "challenge": 1, + "CFNetwork": 3, + "apply": 2, + "Digest": 2, + "NTLM": 6, + "always": 2, + "like": 1, + "CFHTTPMessageApplyCredentialDictionary": 2, + "CFHTTPAuthenticationRef": 2, + "CFDictionaryRef": 1, + "setAuthenticationScheme": 1, + "removeAuthenticationCredentialsFromSessionStore": 3, + "these": 3, + "previous": 2, + "passed": 2, + "re": 9, + "retrying": 1, + "using": 8, + "our": 6, + "custom": 2, + "measure": 1, + "bandwidth": 3, + "throttled": 1, + "necessary": 2, + "setPostBodyReadStream": 2, + "ASIInputStream": 2, + "inputStreamWithData": 2, + "setReadStream": 2, + "NSMakeCollectable": 3, + "CFReadStreamCreateForStreamedHTTPRequest": 1, + "CFReadStreamCreateForHTTPRequest": 1, + "ASIInternalErrorWhileBuildingRequestType": 3, + "scheme": 5, + "lowercaseString": 1, + "validatesSecureCertificate": 3, + "*sslProperties": 2, + "initWithObjectsAndKeys": 1, + "numberWithBool": 3, + "kCFStreamSSLAllowsExpiredCertificates": 1, + "kCFStreamSSLAllowsAnyRoot": 1, + "kCFStreamSSLValidatesCertificateChain": 1, + "kCFNull": 1, + "kCFStreamSSLPeerName": 1, + "CFReadStreamSetProperty": 1, + "kCFStreamPropertySSLSettings": 1, + "CFTypeRef": 1, + "sslProperties": 2, + "*certificates": 1, + "arrayWithCapacity": 2, + "The": 15, + "SecIdentityRef": 3, + "certificates": 2, + "ve": 7, + "opened": 3, + "*oldStream": 1, + "Use": 6, + "persistent": 5, + "connection": 17, + "possible": 3, + "shouldAttemptPersistentConnection": 2, + "redirecting": 2, + "current": 2, + "connecting": 2, + "server": 8, + "host": 9, + "intValue": 4, + "port": 17, + "setConnectionInfo": 2, + "Check": 1, + "expired": 1, + "timeIntervalSinceNow": 1, + "DEBUG_PERSISTENT_CONNECTIONS": 3, + "removeObject": 2, + "//Some": 1, + "other": 3, + "reused": 2, + "previously": 1, + "there": 1, + "one": 1, + "We": 7, + "just": 4, + "make": 3, + "old": 5, + "http": 4, + "//lists.apple.com/archives/Macnetworkprog/2006/Mar/msg00119.html": 1, + "oldStream": 4, + "streamSuccessfullyOpened": 1, + "setConnectionCanBeReused": 2, + "shouldResetUploadProgress": 3, + "showAccurateProgress": 7, + "incrementUploadSizeBy": 3, + "updateProgressIndicator": 4, + "uploadProgressDelegate": 8, + "withProgress": 4, + "ofTotal": 4, + "shouldResetDownloadProgress": 3, + "downloadProgressDelegate": 10, + "Record": 1, + "started": 1, + "timeout": 6, + "nothing": 2, + "setLastActivityTime": 1, + "date": 3, + "setStatusTimer": 2, + "timerWithTimeInterval": 1, + "repeats": 1, + "addTimer": 1, + "forMode": 1, + "here": 2, + "sent": 6, + "more": 5, + "upload": 4, + "safely": 1, + "totalBytesSent": 5, + "***Black": 1, + "magic": 1, + "warning***": 1, + "reliable": 1, + "way": 1, + "track": 1, + "progress": 13, + "KB": 4, + "iPhone": 3, + "Mac": 2, + "very": 2, + "slow.": 1, + "secondsSinceLastActivity": 1, + "timeOutSeconds": 3, + "*1.5": 1, + "won": 3, + "updating": 1, + "checking": 1, + "told": 1, + "us": 2, + "performThrottling": 2, + "auto": 2, + "retry": 3, + "numberOfTimesToRetryOnTimeout": 2, + "resuming": 1, + "update": 6, + "Range": 1, + "take": 1, + "account": 1, + "perhaps": 1, + "uploaded": 2, + "far": 2, + "setTotalBytesSent": 1, + "CFReadStreamCopyProperty": 2, + "kCFStreamPropertyHTTPRequestBytesWrittenCount": 1, + "unsignedLongLongValue": 1, + "middle": 1, + "said": 1, + "might": 4, + "resume": 2, + "used": 16, + "preset": 2, + "content": 5, + "updateUploadProgress": 3, + "updateDownloadProgress": 3, + "NSProgressIndicator": 4, + "MaxValue": 2, + "UIProgressView": 2, + "max": 7, + "setMaxValue": 2, + "amount": 12, + "callerToRetain": 7, + "examined": 1, + "since": 1, + "authenticate": 1, + "contentLength": 6, + "bytesReadSoFar": 3, + "totalBytesRead": 4, + "setUpdatedProgress": 1, + "didReceiveBytes": 2, + "totalSize": 2, + "setLastBytesRead": 1, + "pass": 5, + "pointer": 2, + "directly": 1, + "number": 2, + "itself": 1, + "rather": 4, + "setArgument": 4, + "argumentNumber": 1, + "callback": 3, + "NSMethodSignature": 1, + "*cbSignature": 1, + "methodSignatureForSelector": 1, + "*cbInvocation": 1, + "invocationWithMethodSignature": 1, + "cbSignature": 1, + "cbInvocation": 5, + "setSelector": 1, + "setTarget": 1, + "Used": 13, + "until": 2, + "forget": 2, + "know": 3, + "attempt": 3, + "reuse": 3, + "theError": 6, + "removeObjectForKey": 1, + "dateWithTimeIntervalSinceNow": 1, + "persistentConnectionTimeoutSeconds": 4, + "ignore": 1, + "ASIFallbackToCacheIfLoadFailsCachePolicy": 2, + "cachePolicy": 3, + "canUseCachedDataForRequest": 1, + "setError": 2, + "*failedRequest": 1, + "created": 3, + "compatible": 1, + "fail": 1, + "failedRequest": 4, + "parsing": 2, + "response": 17, + "readResponseHeaders": 2, + "message": 2, + "kCFStreamPropertyHTTPResponseHeader": 1, + "Make": 1, + "sure": 1, + "didn": 3, + "tells": 1, + "keepAliveHeader": 2, + "NSScanner": 2, + "*scanner": 1, + "scannerWithString": 1, + "scanner": 5, + "scanString": 2, + "intoString": 3, + "scanInt": 2, + "scanUpToString": 1, + "probably": 4, + "what": 3, + "you": 10, + "hard": 1, + "keep": 2, + "throw": 1, + "away.": 1, + "*userAgentHeader": 1, + "*acceptHeader": 1, + "userAgentHeader": 2, + "acceptHeader": 2, + "setHaveBuiltRequestHeaders": 1, + "Force": 2, + "rebuild": 2, + "cookie": 1, + "incase": 1, + "got": 1, + "some": 1, + "cookies": 5, + "All": 2, + "remain": 1, + "they": 6, + "redirects": 2, + "applyCookieHeader": 2, + "redirected": 2, + "ones": 3, + "URLWithString": 1, + "valueForKey": 2, + "relativeToURL": 1, + "absoluteURL": 1, + "setNeedsRedirect": 1, + "This": 7, + "means": 1, + "manually": 1, + "redirect": 4, + "those": 1, + "global": 1, + "But": 1, + "safest": 1, + "option": 1, + "different": 4, + "responseCode": 1, + "parseStringEncodingFromHeaders": 2, + "Handle": 1, + "NSStringEncoding": 6, + "charset": 5, + "*mimeType": 1, + "parseMimeType": 2, + "mimeType": 2, + "andResponseEncoding": 2, + "fromContentType": 2, + "setResponseEncoding": 2, + "defaultResponseEncoding": 4, + "saveProxyCredentialsToKeychain": 1, + "newCredentials": 16, + "NSURLCredential": 8, + "*authenticationCredentials": 2, + "credentialWithUser": 2, + "kCFHTTPAuthenticationUsername": 2, + "kCFHTTPAuthenticationPassword": 2, + "persistence": 2, + "NSURLCredentialPersistencePermanent": 2, + "authenticationCredentials": 4, + "saveCredentials": 4, + "forProxy": 2, + "proxyPort": 2, + "realm": 14, + "saveCredentialsToKeychain": 3, + "forHost": 2, + "protocol": 10, + "applyProxyCredentials": 2, + "setProxyAuthenticationRetryCount": 1, + "Apply": 1, + "whatever": 1, + "ok": 1, + "built": 2, + "CFMutableDictionaryRef": 1, + "save": 3, + "keychain": 7, + "useKeychainPersistence": 4, + "*sessionCredentials": 1, + "sessionCredentials": 6, + "storeAuthenticationCredentialsInSessionStore": 2, + "setRequestCredentials": 1, + "findProxyCredentials": 2, + "*newCredentials": 1, + "*user": 1, + "*pass": 1, + "*theRequest": 1, + "try": 3, + "user": 6, + "connect": 1, + "website": 1, + "kCFHTTPAuthenticationSchemeNTLM": 1, + "Ok": 1, + "For": 2, + "authenticating": 2, + "proxies": 3, + "extract": 1, + "NSArray*": 1, + "ntlmComponents": 1, + "componentsSeparatedByString": 1, + "AUTH": 6, + "Request": 6, + "parent": 1, + "properties": 1, + "received": 5, + "ASIAuthenticationDialog": 2, + "had": 1, "UIScrollView*": 1, - "_scrollView": 9, - "": 1, - "CGFloat": 44, - "kFramePadding": 7, - "kElementSpacing": 3, - "kGroupSpacing": 5, - "addHeader": 5, - "yOffset": 42, - "UILabel*": 2, - "label": 6, - "UILabel": 2, - "initWithFrame": 12, - "CGRectZero": 5, - "label.text": 2, - "label.font": 3, - "UIFont": 3, - "systemFontOfSize": 2, - "label.numberOfLines": 2, - "CGRect": 41, - "frame": 38, - "label.frame": 4, - "frame.origin.x": 3, - "frame.origin.y": 16, - "frame.size.width": 4, - "frame.size.height": 15, - "sizeWithFont": 2, - "constrainedToSize": 2, - "CGSizeMake": 3, - ".height": 4, - "addSubview": 8, - "label.frame.size.height": 2, - "TT_RELEASE_SAFELY": 12, - "addText": 5, - "loadView": 4, - "UIScrollView": 1, - "self.view.bounds": 2, - "_scrollView.autoresizingMask": 1, - "UIViewAutoresizingFlexibleWidth": 4, - "UIViewAutoresizingFlexibleHeight": 1, - "self.view": 4, - "NSLocalizedString": 9, - "UIButton*": 1, - "button": 5, - "UIButton": 1, - "buttonWithType": 1, - "UIButtonTypeRoundedRect": 1, - "setTitle": 1, - "forState": 4, - "UIControlStateNormal": 1, - "addTarget": 1, - "action": 1, - "debugTestAction": 2, - "forControlEvents": 1, - "UIControlEventTouchUpInside": 1, - "sizeToFit": 1, - "button.frame": 2, - "TTCurrentLocale": 2, - "displayNameForKey": 1, - "NSLocaleIdentifier": 1, - "localeIdentifier": 1, - "TTPathForBundleResource": 1, - "TTPathForDocumentsResource": 1, - "dataUsingEncoding": 2, - "NSUTF8StringEncoding": 2, - "md5Hash": 1, - "setContentSize": 1, - "viewDidUnload": 2, - "viewDidAppear": 2, - "animated": 27, - "flashScrollIndicators": 1, - "DEBUG": 1, - "TTDPRINTMETHODNAME": 1, - "TTDPRINT": 9, - "TTMAXLOGLEVEL": 1, - "TTDERROR": 1, - "TTLOGLEVEL_ERROR": 1, - "TTDWARNING": 1, - "TTLOGLEVEL_WARNING": 1, - "TTDINFO": 1, - "TTLOGLEVEL_INFO": 1, - "TTDCONDITIONLOG": 3, - "rand": 1, - "TTDASSERT": 2, - "SBJsonParser": 2, - "maxDepth": 2, + "": 1, + "": 1, + "Necessary": 1, + "background": 1, + "task": 1, + "__IPHONE_3_2": 2, + "__MAC_10_5": 2, + "__MAC_10_6": 2, + "_ASIAuthenticationState": 1, + "ASIHTTPAuthenticationNeeded": 1, + "ASIProxyAuthenticationNeeded": 1, + "_ASINetworkErrorType": 1, + "ASIConnectionFailureErrorType": 2, + "ASIInternalErrorWhileApplyingCredentialsType": 1, + "ASICompressionError": 1, + "ASINetworkErrorType": 1, + "ASIHeadersBlock": 3, + "*responseHeaders": 2, + "ASISizeBlock": 5, + "ASIProgressBlock": 5, + "total": 4, + "ASIDataBlock": 3, + "NSOperation": 1, + "": 1, + "operation": 2, + "include": 1, + "GET": 1, + "params": 1, + "query": 1, + "where": 1, + "appropriate": 4, + "*url": 2, + "Will": 7, + "contain": 4, + "original": 2, + "making": 1, + "change": 2, + "*originalURL": 2, + "Temporarily": 1, + "stores": 1, + "to.": 2, + "again": 1, + "do": 5, + "notified": 2, + "various": 1, + "changes": 4, + "ASIHTTPRequestDelegate": 1, + "": 1, + "Another": 1, + "also": 1, + "status": 4, + "updates": 2, + "Generally": 1, + "likely": 1, + "sessionCookies": 2, + "*requestCookies": 2, + "populated": 1, + "useCookiePersistence": 3, + "network": 4, + "present": 3, + "successfully": 4, + "presented": 2, + "duration": 1, + "clearSession": 2, + "allowCompressedResponse": 3, + "inform": 1, + "accept": 2, + "compressed": 2, + "automatically": 2, + "decompress": 1, + "gzipped": 7, + "responses.": 1, + "Default": 10, + "true.": 1, + "gzipped.": 1, + "false.": 1, + "You": 1, + "enable": 1, + "feature": 1, + "your": 2, + "webserver": 1, + "work.": 1, + "Tested": 1, + "apache": 1, + "only.": 1, + "downloaded": 6, + "location": 3, + "*downloadDestinationPath": 2, + "files": 5, + "Once": 2, + "decompressed": 3, + "moved": 2, + "*temporaryFileDownloadPath": 2, + "containing": 1, + "inflated": 6, + "comes": 3, + "*temporaryUncompressedDataDownloadPath": 2, + "fails": 2, + "completes": 6, + "occurs": 1, + "Connection": 1, + "failure": 1, + "occurred": 1, + "inspect": 1, + "*error": 3, + "Username": 2, + "*username": 2, + "*password": 2, + "User": 1, + "Agent": 1, + "*userAgentString": 2, + "Domain": 2, + "*domain": 2, + "*proxyUsername": 2, + "*proxyPassword": 2, + "*proxyDomain": 2, + "Delegate": 2, + "displaying": 2, + "usually": 2, + "supply": 2, + "handle": 4, + "yourself": 4, + "": 2, + "Whether": 1, + "hassle": 1, + "adding": 1, + "apps": 1, + "shouldPresentProxyAuthenticationDialog": 2, + "*proxyCredentials": 2, + "during": 4, + "Basic": 2, + "*proxyAuthenticationScheme": 2, + "Realm": 1, + "eg": 2, + "OK": 1, + "Not": 2, + "etc": 1, + "Description": 1, + "Size": 3, + "partially": 1, + "POST": 2, + "payload": 1, + "Last": 2, + "incrementing": 2, + "prevents": 1, + "being": 4, + "inopportune": 1, + "moment": 1, + "Called": 6, + "starts.": 1, + "didStartSelector": 2, + "receives": 3, + "headers.": 1, + "didReceiveResponseHeadersSelector": 2, + "Location": 1, + "shouldRedirect": 3, + "then": 1, + "needed": 3, + "restart": 1, + "calling": 1, + "redirectToURL": 2, + "simply": 1, + "willRedirectSelector": 2, + "successfully.": 1, + "didFinishSelector": 2, + "fails.": 1, + "didFailSelector": 2, + "data.": 1, + "implement": 1, + "populate": 1, + "didReceiveDataSelector": 2, + "recording": 1, + "something": 1, + "last": 1, + "happened": 1, + "compare": 4, + "Number": 1, + "seconds": 2, + "wait": 1, + "timing": 1, + "starts": 2, + "*mainRequest": 2, + "indicator": 4, + "according": 2, + "how": 2, + "much": 2, + "has": 6, + "Also": 1, + "see": 1, + "comments": 1, + "ASINetworkQueue.h": 1, + "ensure": 1, + "incremented": 4, + "Prevents": 1, + "largely": 1, + "internally": 3, + "reflect": 1, + "internal": 2, + "PUT": 1, + "operations": 1, + "sizes": 1, + "greater": 1, + "unless": 2, + "been": 1, + "Likely": 1, + "OS": 1, + "X": 1, + "Leopard": 1, + "Text": 1, + "responses": 5, + "Content": 1, + "Type": 1, + "value.": 1, + "Defaults": 2, + "set.": 1, + "Tells": 1, + "delete": 1, + "partial": 2, + "downloads": 1, + "allows": 1, + "existing": 1, + "download.": 1, + "NO.": 1, + "allowResumeForFileDownloads": 2, + "Custom": 1, + "associated": 1, + "*userInfo": 2, + "tag": 2, + "defaults": 2, + "tell": 2, + "loop": 1, + "stop": 4, + "Incremented": 1, + "every": 3, + "redirects.": 1, + "reaches": 1, + "check": 1, + "secure": 1, + "certificate": 2, + "signed": 1, + "development": 1, + "DO": 1, + "NOT": 1, + "USE": 1, + "IN": 1, + "PRODUCTION": 1, + "*clientCertificates": 2, + "Details": 1, + "could": 1, + "best": 1, + "local": 1, + "*PACurl": 2, + "values": 3, + "above.": 1, + "No": 1, + "yet": 1, + "ASIHTTPRequests": 1, + "avoids": 1, + "extra": 1, + "round": 1, + "trip": 1, + "succeeded": 1, + "which": 1, + "efficient": 1, + "authenticated": 1, + "large": 1, + "bodies": 1, + "slower": 1, + "connections": 3, + "Set": 4, + "affects": 1, + "YES.": 1, + "Credentials": 1, + "never": 1, + "asks": 1, + "hasn": 1, + "doing": 1, + "anything": 1, + "expires": 1, + "yes": 1, + "alive": 1, + "Stores": 1, + "use.": 1, + "expire": 2, + "connection.": 2, + "These": 1, + "determine": 1, + "whether": 1, + "subsequent": 2, + "all": 3, + "match": 1, + "An": 2, + "determining": 1, + "available": 1, + "reference": 1, + "don": 2, + "one.": 1, + "closed": 1, + "either": 1, + "another": 1, + "fires": 1, + "automatic": 1, + "standard": 1, + "follow": 1, + "behaviour": 2, + "most": 1, + "browsers": 1, + "shouldUseRFC2616RedirectBehaviour": 2, + "record": 1, + "ID": 1, + "uniquely": 1, + "identifies": 1, + "primarily": 1, + "debugging": 1, + "synchronous": 1, + "checks": 1, + "setDefaultCache": 2, + "configure": 2, + "ASICacheDelegate.h": 2, + "storage": 2, + "ASICacheStoragePolicy": 2, + "cacheStoragePolicy": 2, + "pulled": 1, + "secondsToCache": 3, + "interval": 1, + "expiring": 1, + "UIBackgroundTaskIdentifier": 1, + "helper": 1, + "inflate": 2, + "*dataDecompressor": 2, + "Controls": 1, + "without": 1, + "raw": 3, + "discarded": 1, + "normal": 1, + "contents": 1, + "into": 1, + "Setting": 1, + "especially": 1, + "useful": 1, + "users": 1, + "conjunction": 1, + "streaming": 1, + "allow": 1, + "behind": 1, + "scenes": 1, + "https": 1, + "webservers": 1, + "asynchronously": 1, + "reading": 1, + "URLs": 2, + "storing": 1, + "startSynchronous.": 1, + "Currently": 1, + "detection": 2, + "synchronously": 1, + "//block": 12, + "execute": 4, + "handling": 4, + "redirections": 1, + "setStartedBlock": 1, + "aStartedBlock": 1, + "setHeadersReceivedBlock": 1, + "aReceivedBlock": 2, + "setCompletionBlock": 1, + "aCompletionBlock": 1, + "setFailedBlock": 1, + "aFailedBlock": 1, + "setBytesReceivedBlock": 1, + "aBytesReceivedBlock": 1, + "setBytesSentBlock": 1, + "aBytesSentBlock": 1, + "setDownloadSizeIncrementedBlock": 1, + "aDownloadSizeIncrementedBlock": 1, + "setUploadSizeIncrementedBlock": 1, + "anUploadSizeIncrementedBlock": 1, + "setDataReceivedBlock": 1, + "setAuthenticationNeededBlock": 1, + "anAuthenticationBlock": 1, + "setProxyAuthenticationNeededBlock": 1, + "aProxyAuthenticationBlock": 1, + "setRequestRedirectedBlock": 1, + "aRedirectBlock": 1, + "HEADRequest": 1, + "upload/download": 1, + "updateProgressIndicators": 1, + "removeUploadProgressSoFar": 1, + "incrementDownloadSizeBy": 1, + "caller": 1, + "talking": 1, + "requestReceivedResponseHeaders": 1, + "newHeaders": 1, + "retryUsingNewConnection": 1, + "stringEncoding": 1, + "contentType": 1, + "stuff": 1, + "applyCredentials": 1, + "findCredentials": 1, + "retryUsingSuppliedCredentials": 1, + "cancelAuthentication": 1, + "attemptToApplyCredentialsAndResume": 1, + "attemptToApplyProxyCredentialsAndResume": 1, + "showProxyAuthenticationDialog": 1, + "showAuthenticationDialog": 1, + "theUsername": 1, + "thePassword": 1, + "handlers": 1, + "handleBytesAvailable": 1, + "handleStreamComplete": 1, + "handleStreamError": 1, + "cleanup": 1, + "removeTemporaryDownloadFile": 1, + "removeTemporaryUncompressedDownloadFile": 1, + "removeTemporaryUploadFile": 1, + "removeTemporaryCompressedUploadFile": 1, + "removeFileAtPath": 1, + "connectionID": 1, + "expirePersistentConnections": 1, + "setDefaultTimeOutSeconds": 1, + "newTimeOutSeconds": 1, + "client": 1, + "setClientCertificateIdentity": 1, + "anIdentity": 1, + "sessionProxyCredentialsStore": 1, + "sessionCredentialsStore": 1, + "storeProxyAuthenticationCredentialsInSessionStore": 1, + "removeProxyAuthenticationCredentialsFromSessionStore": 1, + "findSessionProxyAuthenticationCredentials": 1, + "savedCredentialsForHost": 1, + "savedCredentialsForProxy": 1, + "removeCredentialsForHost": 1, + "removeCredentialsForProxy": 1, + "setSessionCookies": 1, + "newSessionCookies": 1, + "addSessionCookie": 1, + "NSHTTPCookie": 1, + "newCookie": 1, + "agent": 2, + "defaultUserAgentString": 1, + "setDefaultUserAgentString": 1, + "mime": 1, + "mimeTypeForFileAtPath": 1, + "measurement": 1, + "throttling": 1, + "setMaxBandwidthPerSecond": 1, + "incrementBandwidthUsedInLastSecond": 1, + "setShouldThrottleBandwidthForWWAN": 1, + "throttle": 1, + "throttleBandwidthForWWANUsingLimit": 1, + "limit": 1, + "reachability": 1, + "isNetworkReachableViaWWAN": 1, + "maxUploadReadLength": 1, + "activity": 1, + "isNetworkInUse": 1, + "setShouldUpdateNetworkActivityIndicator": 1, + "shouldUpdate": 1, + "showNetworkActivityIndicator": 1, + "hideNetworkActivityIndicator": 1, + "miscellany": 1, + "base64forData": 1, + "theData": 1, + "expiryDateForRequest": 1, + "maxAge": 2, + "dateFromRFC1123String": 1, + "threading": 1, + "*proxyHost": 1, + "*proxyType": 1, + "*requestHeaders": 1, + "*requestCredentials": 1, + "*rawResponseData": 1, + "*requestMethod": 1, + "*postBody": 1, + "*postBodyFilePath": 1, + "didCreateTemporaryPostDataFile": 1, + "*authenticationScheme": 1, + "shouldPresentAuthenticationDialog": 1, + "haveBuiltRequestHeaders": 1, + "NSObject": 5, "NSData*": 1, - "objectWithString": 5, - "repr": 5, "jsonText": 1, - "NSError**": 2, - "self.maxDepth": 2, - "Methods": 1, - "self.error": 3, - "SBJsonStreamParserAccumulator": 2, - "*accumulator": 1, - "SBJsonStreamParserAdapter": 2, - "*adapter": 1, - "adapter.delegate": 1, - "accumulator": 1, - "SBJsonStreamParser": 2, - "*parser": 1, - "parser.maxDepth": 1, - "parser.delegate": 1, - "adapter": 1, - "switch": 3, - "parse": 1, - "case": 8, - "SBJsonStreamParserComplete": 1, - "accumulator.value": 1, - "SBJsonStreamParserWaitingForData": 1, - "SBJsonStreamParserError": 1, - "parser.error": 1, - "error_": 2, - "tmp": 3, - "*ui": 1, - "*error_": 1, - "ui": 1, - "StyleViewController": 2, - "TTViewController": 1, - "TTStyle*": 7, - "_style": 8, - "_styleHighlight": 6, - "_styleDisabled": 6, - "_styleSelected": 6, - "_styleType": 6, - "kTextStyleType": 2, - "kViewStyleType": 2, - "kImageStyleType": 2, - "initWithStyleName": 1, - "styleType": 3, - "TTStyleSheet": 4, - "globalStyleSheet": 4, - "styleWithSelector": 4, - "UIControlStateHighlighted": 1, - "UIControlStateDisabled": 1, - "UIControlStateSelected": 1, - "addTextView": 5, - "title": 2, - "style": 29, - "textFrame": 3, - "TTRectInset": 3, - "UIEdgeInsetsMake": 3, - "StyleView*": 2, - "StyleView": 2, - "text.text": 1, - "TTStyleContext*": 1, - "context": 4, - "TTStyleContext": 1, - "context.frame": 1, - "context.delegate": 1, - "context.font": 1, - "systemFontSize": 1, - "CGSize": 5, - "addToSize": 1, - "CGSizeZero": 1, - "size.width": 1, - "size.height": 1, - "textFrame.size": 1, - "text.frame": 1, - "text.style": 1, - "text.backgroundColor": 1, - "UIColor": 3, - "colorWithRed": 3, - "green": 3, - "blue": 3, - "alpha": 3, - "text.autoresizingMask": 1, - "UIViewAutoresizingFlexibleBottomMargin": 3, - "addView": 5, - "viewFrame": 4, - "view": 11, - "view.style": 2, - "view.backgroundColor": 2, - "view.autoresizingMask": 2, - "addImageView": 5, - "TTImageView*": 1, - "TTImageView": 1, - "view.urlPath": 1, - "imageFrame": 2, - "view.frame": 2, - "imageFrame.size": 1, - "view.image.size": 1, - "TUITableViewStylePlain": 2, - "regular": 1, - "TUITableViewStyleGrouped": 1, - "grouped": 1, - "stick": 1, - "scroll": 3, - "TUITableViewStyle": 4, - "TUITableViewScrollPositionNone": 2, - "TUITableViewScrollPositionTop": 2, - "TUITableViewScrollPositionMiddle": 1, - "TUITableViewScrollPositionBottom": 1, - "TUITableViewScrollPositionToVisible": 3, - "supported": 1, - "TUITableViewScrollPosition": 5, - "TUITableViewInsertionMethodBeforeIndex": 1, - "NSOrderedAscending": 4, - "TUITableViewInsertionMethodAtIndex": 1, - "NSOrderedSame": 1, - "TUITableViewInsertionMethodAfterIndex": 1, - "NSOrderedDescending": 4, - "TUITableViewInsertionMethod": 3, - "TUITableViewCell": 23, - "@protocol": 3, - "TUITableViewDataSource": 2, - "TUITableView": 25, - "TUITableViewDelegate": 1, - "": 1, - "TUIScrollViewDelegate": 1, - "tableView": 45, - "heightForRowAtIndexPath": 2, - "TUIFastIndexPath": 89, - "indexPath": 47, - "@optional": 2, - "willDisplayCell": 2, - "cell": 21, - "forRowAtIndexPath": 2, - "subview": 1, - "didSelectRowAtIndexPath": 3, - "left/right": 2, - "mouse": 2, - "down": 1, - "up/down": 1, - "didDeselectRowAtIndexPath": 3, - "didClickRowAtIndexPath": 1, - "withEvent": 2, - "NSEvent": 3, - "event": 8, - "look": 1, - "clickCount": 1, - "TUITableView*": 1, - "shouldSelectRowAtIndexPath": 3, - "TUIFastIndexPath*": 1, - "forEvent": 3, - "NSEvent*": 1, - "NSMenu": 1, - "menuForRowAtIndexPath": 1, - "tableViewWillReloadData": 3, - "tableViewDidReloadData": 3, - "targetIndexPathForMoveFromRowAtIndexPath": 1, - "fromPath": 1, - "toProposedIndexPath": 1, - "proposedPath": 1, - "TUIScrollView": 1, - "__unsafe_unretained": 2, - "": 4, - "_dataSource": 6, - "weak": 2, - "_sectionInfo": 27, - "TUIView": 17, - "_pullDownView": 4, - "_headerView": 8, - "_lastSize": 1, - "_contentHeight": 7, - "NSMutableIndexSet": 6, - "_visibleSectionHeaders": 6, - "_visibleItems": 14, - "_reusableTableCells": 5, - "_selectedIndexPath": 9, - "_indexPathShouldBeFirstResponder": 2, - "_futureMakeFirstResponderToken": 2, - "_keepVisibleIndexPathForReload": 2, - "_relativeOffsetForReload": 2, - "drag": 1, - "reorder": 1, - "_dragToReorderCell": 5, - "CGPoint": 7, - "_currentDragToReorderLocation": 1, - "_currentDragToReorderMouseOffset": 1, - "_currentDragToReorderIndexPath": 1, - "_currentDragToReorderInsertionMethod": 1, - "_previousDragToReorderIndexPath": 1, - "_previousDragToReorderInsertionMethod": 1, - "animateSelectionChanges": 3, - "forceSaveScrollPosition": 1, - "derepeaterEnabled": 1, - "layoutSubviewsReentrancyGuard": 1, - "didFirstLayout": 1, - "dataSourceNumberOfSectionsInTableView": 1, - "delegateTableViewWillDisplayCellForRowAtIndexPath": 1, - "maintainContentOffsetAfterReload": 3, - "_tableFlags": 1, - "creation.": 1, - "calls": 1, - "UITableViewStylePlain": 1, - "unsafe_unretained": 2, - "dataSource": 2, - "": 4, - "readwrite": 1, - "reloadData": 3, - "reloadDataMaintainingVisibleIndexPath": 2, - "relativeOffset": 5, - "reloadLayout": 2, - "numberOfSections": 10, - "numberOfRowsInSection": 9, - "section": 60, - "rectForHeaderOfSection": 4, - "rectForSection": 3, - "rectForRowAtIndexPath": 7, - "NSIndexSet": 4, - "indexesOfSectionsInRect": 2, - "rect": 10, - "indexesOfSectionHeadersInRect": 2, - "indexPathForCell": 2, - "returns": 4, - "visible": 16, - "indexPathsForRowsInRect": 3, - "indexPathForRowAtPoint": 2, - "point": 11, - "indexPathForRowAtVerticalOffset": 2, - "offset": 23, - "indexOfSectionWithHeaderAtPoint": 2, - "indexOfSectionWithHeaderAtVerticalOffset": 2, - "enumerateIndexPathsUsingBlock": 2, - "*indexPath": 11, - "*stop": 7, - "enumerateIndexPathsWithOptions": 2, - "NSEnumerationOptions": 4, - "usingBlock": 6, - "enumerateIndexPathsFromIndexPath": 4, - "fromIndexPath": 6, - "toIndexPath": 12, - "withOptions": 4, - "headerViewForSection": 6, - "cellForRowAtIndexPath": 9, - "index": 11, - "visibleCells": 3, - "order": 1, - "sortedVisibleCells": 2, - "indexPathsForVisibleRows": 2, - "scrollToRowAtIndexPath": 3, - "atScrollPosition": 3, - "scrollPosition": 9, - "indexPathForSelectedRow": 4, - "representing": 1, - "row": 36, - "selection.": 1, - "indexPathForFirstRow": 2, - "indexPathForLastRow": 2, - "selectRowAtIndexPath": 3, - "deselectRowAtIndexPath": 3, - "*pullDownView": 1, - "pullDownViewIsVisible": 3, - "*headerView": 6, - "dequeueReusableCellWithIdentifier": 2, - "identifier": 7, - "": 1, - "@required": 1, - "canMoveRowAtIndexPath": 2, - "moveRowAtIndexPath": 2, - "numberOfSectionsInTableView": 3, - "NSIndexPath": 5, - "indexPathForRow": 11, - "inSection": 11, "HEADER_Z_POSITION": 2, "beginning": 1, "height": 19, @@ -48160,334 +48091,94 @@ "setMaintainContentOffsetAfterReload": 1, "newValue": 2, "indexPathWithIndexes": 1, - "indexAtPosition": 2 + "indexAtPosition": 2, + "": 1, + "": 1, + "": 1, + "__OBJC__": 4, + "": 1, + "": 1, + "__cplusplus": 2, + "NSINTEGER_DEFINED": 3, + "NS_BUILD_32_LIKE_64": 3, + "_JSONKIT_H_": 3, + "__APPLE_CC__": 2, + "JK_DEPRECATED_ATTRIBUTE": 6, + "deprecated": 1, + "JSONKIT_VERSION_MAJOR": 1, + "JSONKIT_VERSION_MINOR": 1, + "JKParseOptionNone": 1, + "JKParseOptionStrict": 1, + "JKParseOptionComments": 2, + "JKParseOptionUnicodeNewlines": 2, + "JKParseOptionLooseUnicode": 2, + "JKParseOptionPermitTextAfterValidJSON": 2, + "JKParseOptionValidFlags": 1, + "JKSerializeOptionNone": 3, + "JKSerializeOptionPretty": 2, + "JKSerializeOptionEscapeUnicode": 2, + "JKSerializeOptionEscapeForwardSlashes": 2, + "JKSerializeOptionValidFlags": 1, + "Opaque": 1, + "private": 1, + "decoder": 1, + "decoderWithParseOptions": 1, + "initWithParseOptions": 1, + "clearCache": 1, + "parseUTF8String": 2, + "Deprecated": 4, + "v1.4.": 4, + "objectWithUTF8String": 4, + "instead.": 4, + "parseJSONData": 2, + "jsonData": 6, + "mutableObjectWithUTF8String": 2, + "mutableObjectWithData": 2, + "////////////": 4, + "Deserializing": 1, + "methods": 2, + "JSONKitDeserializing": 2, + "objectFromJSONString": 1, + "objectFromJSONStringWithParseOptions": 2, + "mutableObjectFromJSONString": 1, + "mutableObjectFromJSONStringWithParseOptions": 2, + "objectFromJSONData": 1, + "objectFromJSONDataWithParseOptions": 2, + "mutableObjectFromJSONData": 1, + "mutableObjectFromJSONDataWithParseOptions": 2, + "Serializing": 1, + "JSONKitSerializing": 3, + "JSONData": 3, + "Invokes": 2, + "JSONDataWithOptions": 8, + "includeQuotes": 6, + "serializeOptions": 14, + "JSONString": 3, + "JSONStringWithOptions": 8, + "serializeUnsupportedClassesUsingDelegate": 4, + "__BLOCKS__": 1, + "JSONKitSerializingBlockAdditions": 2, + "serializeUnsupportedClassesUsingBlock": 4, + "TTTableViewController": 1, + "": 1, + "NSWindow": 2, + "*window": 2, + "IBOutlet": 1 }, "Objective-C++": { - "#include": 26, - "": 1, - "": 1, - "#if": 10, - "(": 612, - "defined": 1, - "OBJC_API_VERSION": 2, - ")": 610, - "&&": 12, - "static": 16, - "inline": 3, - "IMP": 4, - "method_setImplementation": 2, - "Method": 2, - "m": 3, - "i": 29, - "{": 151, - "oi": 2, - "-": 175, - "method_imp": 2, - ";": 494, - "return": 149, - "}": 148, - "#endif": 19, - "namespace": 1, - "WebCore": 1, - "ENABLE": 10, - "DRAG_SUPPORT": 7, - "const": 16, - "double": 1, - "EventHandler": 30, - "TextDragDelay": 1, - "RetainPtr": 4, - "": 4, - "&": 21, - "currentNSEventSlot": 6, - "DEFINE_STATIC_LOCAL": 1, - "event": 30, - "NSEvent": 21, - "*EventHandler": 2, - "currentNSEvent": 13, - ".get": 1, - "class": 14, - "CurrentEventScope": 14, - "WTF_MAKE_NONCOPYABLE": 1, - "public": 1, - "*": 34, - "private": 1, - "m_savedCurrentEvent": 3, - "#ifndef": 3, - "NDEBUG": 2, - "m_event": 3, - "*event": 11, - "ASSERT": 13, - "bool": 26, - "wheelEvent": 5, - "Page*": 7, - "page": 33, - "m_frame": 24, - "if": 104, - "false": 40, - "scope": 6, - "PlatformWheelEvent": 2, - "chrome": 8, - "platformPageClient": 4, - "handleWheelEvent": 2, - "wheelEvent.isAccepted": 1, - "PassRefPtr": 2, - "": 1, - "currentKeyboardEvent": 1, - "[": 268, - "NSApp": 5, - "currentEvent": 2, - "]": 266, - "switch": 4, - "type": 10, - "case": 25, - "NSKeyDown": 4, - "PlatformKeyboardEvent": 6, - "platformEvent": 2, - "platformEvent.disambiguateKeyDownEvent": 1, - "RawKeyDown": 1, - "KeyboardEvent": 2, - "create": 3, - "document": 6, - "defaultView": 2, - "NSKeyUp": 3, - "default": 3, - "keyEvent": 2, - "BEGIN_BLOCK_OBJC_EXCEPTIONS": 13, - "||": 18, - "END_BLOCK_OBJC_EXCEPTIONS": 13, - "void": 18, - "focusDocumentView": 1, - "FrameView*": 7, - "frameView": 4, - "view": 28, - "NSView": 14, - "*documentView": 1, - "documentView": 2, - "focusNSView": 1, - "focusController": 1, - "setFocusedFrame": 1, - "passWidgetMouseDownEventToWidget": 3, - "MouseEventWithHitTestResults": 7, - "RenderObject*": 2, - "target": 6, - "targetNode": 3, - "renderer": 7, - "isWidget": 2, - "passMouseDownEventToWidget": 3, - "toRenderWidget": 3, - "widget": 18, - "RenderWidget*": 1, - "renderWidget": 2, - "lastEventIsMouseUp": 2, - "*currentEventAfterHandlingMouseDown": 1, - "currentEventAfterHandlingMouseDown": 3, - "NSLeftMouseUp": 3, - "timestamp": 8, - "Widget*": 3, - "pWidget": 2, - "RefPtr": 1, - "": 1, - "LOG_ERROR": 1, - "true": 29, - "platformWidget": 6, - "*nodeView": 1, - "nodeView": 9, - "superview": 5, - "*view": 4, - "hitTest": 2, - "convertPoint": 2, - "locationInWindow": 4, - "fromView": 3, - "nil": 25, - "client": 3, - "firstResponder": 1, - "clickCount": 8, - "<=>": 1, - "1": 1, - "acceptsFirstResponder": 1, - "needsPanelToBecomeKey": 1, - "makeFirstResponder": 1, - "wasDeferringLoading": 3, - "defersLoading": 1, - "setDefersLoading": 2, - "m_sendingEventToSubview": 24, - "*outerView": 1, - "getOuterView": 1, - "beforeMouseDown": 1, - "outerView": 2, - "widget.get": 2, - "mouseDown": 2, - "afterMouseDown": 1, - "m_mouseDownView": 5, - "m_mouseDownWasInSubframe": 7, - "m_mousePressed": 2, - "findViewInSubviews": 3, - "*superview": 1, - "*target": 1, - "NSEnumerator": 1, - "*e": 1, - "subviews": 1, - "objectEnumerator": 1, - "*subview": 1, - "while": 4, - "subview": 3, - "e": 1, - "nextObject": 1, - "mouseDownViewIfStillGood": 3, - "*mouseDownView": 1, - "mouseDownView": 3, - "topFrameView": 3, - "*topView": 1, - "topView": 2, - "eventLoopHandleMouseDragged": 1, - "mouseDragged": 2, - "//": 7, - "eventLoopHandleMouseUp": 1, - "mouseUp": 2, - "passSubframeEventToSubframe": 4, - "Frame*": 5, - "subframe": 13, - "HitTestResult*": 2, - "hoveredNode": 5, - "NSLeftMouseDragged": 1, - "NSOtherMouseDragged": 1, - "NSRightMouseDragged": 1, - "dragController": 1, - "didInitiateDrag": 1, - "NSMouseMoved": 2, - "eventHandler": 6, - "handleMouseMoveEvent": 3, - "currentPlatformMouseEvent": 8, - "NSLeftMouseDown": 3, - "Node*": 1, - "node": 3, - "isFrameView": 2, - "handleMouseReleaseEvent": 3, - "originalNSScrollViewScrollWheel": 4, - "_nsScrollViewScrollWheelShouldRetainSelf": 3, - "selfRetainingNSScrollViewScrollWheel": 3, - "NSScrollView": 2, - "SEL": 2, - "nsScrollViewScrollWheelShouldRetainSelf": 2, - "isMainThread": 3, - "setNSScrollViewScrollWheelShouldRetainSelf": 3, - "shouldRetain": 2, - "method": 2, - "class_getInstanceMethod": 1, - "objc_getRequiredClass": 1, - "@selector": 4, - "scrollWheel": 2, - "reinterpret_cast": 1, - "": 1, - "*self": 1, - "selector": 2, - "shouldRetainSelf": 3, - "self": 70, - "retain": 1, - "release": 1, - "passWheelEventToWidget": 1, - "NSView*": 1, - "static_cast": 1, - "": 1, - "frame": 3, - "NSScrollWheel": 1, - "v": 6, - "loader": 1, - "resetMultipleFormSubmissionProtection": 1, - "handleMousePressEvent": 2, - "int": 36, - "%": 2, - "handleMouseDoubleClickEvent": 1, - "else": 11, - "sendFakeEventsAfterWidgetTracking": 1, - "*initiatingEvent": 1, - "eventType": 5, - "initiatingEvent": 22, - "*fakeEvent": 1, - "fakeEvent": 6, - "mouseEventWithType": 2, - "location": 3, - "modifierFlags": 6, - "windowNumber": 6, - "context": 6, - "eventNumber": 3, - "pressure": 3, - "postEvent": 3, - "atStart": 3, - "YES": 6, - "keyEventWithType": 1, - "characters": 3, - "charactersIgnoringModifiers": 2, - "isARepeat": 2, - "keyCode": 2, - "window": 1, - "convertScreenToBase": 1, - "mouseLocation": 1, - "mouseMoved": 2, - "frameHasPlatformWidget": 4, - "passMousePressEventToSubframe": 1, - "mev": 6, - "mev.event": 3, - "passMouseMoveEventToSubframe": 1, - "m_mouseDownMayStartDrag": 1, - "passMouseReleaseEventToSubframe": 1, - "PlatformMouseEvent": 5, - "*windowView": 1, - "windowView": 2, - "CONTEXT_MENUS": 2, - "sendContextMenuEvent": 2, - "eventMayStartDrag": 2, - "eventActivatedView": 1, - "m_activationEventNumber": 1, - "event.eventNumber": 1, - "": 1, - "createDraggingClipboard": 1, - "NSPasteboard": 2, - "*pasteboard": 1, - "pasteboardWithName": 1, - "NSDragPboard": 1, - "pasteboard": 2, - "declareTypes": 1, - "NSArray": 3, - "array": 2, - "owner": 15, - "ClipboardMac": 1, - "Clipboard": 1, - "DragAndDrop": 1, - "ClipboardWritable": 1, - "tabsToAllFormControls": 1, - "KeyboardEvent*": 1, - "KeyboardUIMode": 1, - "keyboardUIMode": 5, - "handlingOptionTab": 4, - "isKeyboardOptionTab": 1, - "KeyboardAccessTabsToLinks": 2, - "KeyboardAccessFull": 1, - "needsKeyboardEventDisambiguationQuirks": 2, - "Document*": 1, - "applicationIsSafari": 1, - "url": 2, - ".protocolIs": 2, - "Settings*": 1, - "settings": 5, - "DASHBOARD_SUPPORT": 1, - "usesDashboardBackwardCompatibilityMode": 1, - "unsigned": 2, - "accessKeyModifiers": 1, - "AXObjectCache": 1, - "accessibilityEnhancedUserInterfaceEnabled": 1, - "CtrlKey": 2, - "|": 3, - "AltKey": 1, "#import": 3, "": 1, "": 1, + "#if": 10, "#ifdef": 6, "OODEBUG": 1, "#define": 1, "OODEBUG_SQL": 4, + "#endif": 19, "OOOODatabase": 1, "OODB": 1, + ";": 494, + "static": 16, "NSString": 25, "*kOOObject": 1, "@": 28, @@ -48503,12 +48194,20 @@ "records": 1, "@implementation": 7, "+": 55, + "(": 612, "id": 19, + ")": 610, "record": 18, "OO_AUTORETURNS": 2, + "{": 151, + "return": 149, "OO_AUTORELEASE": 3, + "[": 268, + "self": 70, "alloc": 11, + "]": 266, "init": 4, + "}": 148, "insert": 7, "*record": 4, "insertWithParent": 1, @@ -48517,17 +48216,22 @@ "sharedInstance": 37, "copyJoinKeysFrom": 1, "to": 6, + "-": 175, "delete": 4, + "void": 18, "update": 4, "indate": 4, "upsert": 4, + "int": 36, "commit": 6, "rollback": 5, "setNilValueForKey": 1, + "*": 34, "key": 2, "OOReference": 2, "": 1, "zeroForNull": 4, + "if": 104, "NSNumber": 4, "numberWithInt": 1, "setValue": 1, @@ -48535,13 +48239,16 @@ "OOArray": 16, "": 14, "select": 21, + "nil": 25, "intoClass": 11, "joinFrom": 10, "cOOString": 15, "sql": 21, "selectRecordsRelatedTo": 1, + "class": 14, "importFrom": 1, "OOFile": 4, + "&": 21, "file": 2, "delimiter": 4, "delim": 4, @@ -48556,14 +48263,17 @@ "export": 1, "bindToView": 1, "OOView": 2, + "view": 28, "delegate": 4, "bindRecord": 1, "toView": 1, "updateFromView": 1, "updateRecord": 1, + "fromView": 3, "description": 6, "*metaData": 14, "metaDataForClass": 3, + "//": 7, "hack": 1, "required": 2, "where": 1, @@ -48641,6 +48351,7 @@ "initWithFormat": 3, "arguments": 3, "va_end": 3, + "const": 16, "objects": 4, "deleteArray": 2, "object": 13, @@ -48667,9 +48378,12 @@ "<": 5, "superClass": 5, "class_getName": 4, + "while": 4, "class_getSuperclass": 1, "respondsToSelector": 2, + "@selector": 4, "ooTableSql": 1, + "else": 11, "tableMetaDataForClass": 8, "break": 6, "delay": 1, @@ -48705,6 +48419,7 @@ "format": 1, "string": 1, "escape": 1, + "characters": 3, "Any": 1, "results": 3, "returned": 1, @@ -48712,12 +48427,14 @@ "placed": 1, "as": 1, "an": 1, + "array": 2, "dictionary": 1, "results.": 1, "*/": 1, "errcode": 12, "OOString": 6, "stringForSql": 2, + "&&": 12, "*aColumnName": 1, "**results": 1, "allKeys": 1, @@ -48737,9 +48454,11 @@ "NSLog": 4, "*joinValues": 1, "*adaptor": 7, + "||": 18, "": 1, "tablesRelatedByNaturalJoinFrom": 1, "tablesWithNaturalJoin": 5, + "i": 29, "**tablesWithNaturalJoin": 1, "*childMetaData": 1, "tableMetaDataByClassName": 3, @@ -48777,6 +48496,7 @@ "quote": 2, "commaQuote": 2, "": 1, + "YES": 6, "commited": 2, "updateCount": 2, "transaction": 2, @@ -48786,6 +48506,7 @@ "*transaction": 1, "d": 2, "": 1, + "#ifndef": 3, "OO_ARC": 1, "boxed": 1, "valueForKey": 1, @@ -48799,6 +48520,7 @@ "indexes": 1, "idx": 2, "implements": 1, + "owner": 15, ".directory": 1, ".mkdir": 1, "sqlite3_open": 1, @@ -48834,6 +48556,9 @@ "length": 4, "*type": 1, "objCType": 1, + "type": 10, + "switch": 4, + "case": 25, "sqlite3_bind_int": 1, "intValue": 3, "sqlite3_bind_int64": 1, @@ -48854,6 +48579,7 @@ "initWithDouble": 1, "sqlite3_column_double": 1, "SQLITE_TEXT": 1, + "unsigned": 2, "*bytes": 2, "sqlite3_column_text": 1, "NSMutableString": 1, @@ -48861,6 +48587,7 @@ "sqlite3_column_bytes": 2, "SQLITE_BLOB": 1, "sqlite3_column_blob": 1, + "default": 3, "out": 4, "awakeFromDB": 4, "instancesRespondToSelector": 1, @@ -48888,6 +48615,7 @@ "q": 1, "Q": 1, "f": 1, + "%": 2, "_": 2, "tag": 1, "A": 2, @@ -48904,13 +48632,288 @@ "stringValue": 4, "charValue": 1, "shortValue": 1, + "NSArray": 3, "OOReplace": 2, "reformat": 4, + "|": 3, "NSDictionary": 2, "__IPHONE_OS_VERSION_MIN_REQUIRED": 1, "UISwitch": 2, "text": 1, - "self.on": 1 + "self.on": 1, + "#include": 26, + "": 1, + "": 1, + "defined": 1, + "OBJC_API_VERSION": 2, + "inline": 3, + "IMP": 4, + "method_setImplementation": 2, + "Method": 2, + "m": 3, + "oi": 2, + "method_imp": 2, + "namespace": 1, + "WebCore": 1, + "ENABLE": 10, + "DRAG_SUPPORT": 7, + "double": 1, + "EventHandler": 30, + "TextDragDelay": 1, + "RetainPtr": 4, + "": 4, + "currentNSEventSlot": 6, + "DEFINE_STATIC_LOCAL": 1, + "event": 30, + "NSEvent": 21, + "*EventHandler": 2, + "currentNSEvent": 13, + ".get": 1, + "CurrentEventScope": 14, + "WTF_MAKE_NONCOPYABLE": 1, + "public": 1, + "private": 1, + "m_savedCurrentEvent": 3, + "NDEBUG": 2, + "m_event": 3, + "*event": 11, + "ASSERT": 13, + "bool": 26, + "wheelEvent": 5, + "Page*": 7, + "page": 33, + "m_frame": 24, + "false": 40, + "scope": 6, + "PlatformWheelEvent": 2, + "chrome": 8, + "platformPageClient": 4, + "handleWheelEvent": 2, + "wheelEvent.isAccepted": 1, + "PassRefPtr": 2, + "": 1, + "currentKeyboardEvent": 1, + "NSApp": 5, + "currentEvent": 2, + "NSKeyDown": 4, + "PlatformKeyboardEvent": 6, + "platformEvent": 2, + "platformEvent.disambiguateKeyDownEvent": 1, + "RawKeyDown": 1, + "KeyboardEvent": 2, + "create": 3, + "document": 6, + "defaultView": 2, + "NSKeyUp": 3, + "keyEvent": 2, + "BEGIN_BLOCK_OBJC_EXCEPTIONS": 13, + "END_BLOCK_OBJC_EXCEPTIONS": 13, + "focusDocumentView": 1, + "FrameView*": 7, + "frameView": 4, + "NSView": 14, + "*documentView": 1, + "documentView": 2, + "focusNSView": 1, + "focusController": 1, + "setFocusedFrame": 1, + "passWidgetMouseDownEventToWidget": 3, + "MouseEventWithHitTestResults": 7, + "RenderObject*": 2, + "target": 6, + "targetNode": 3, + "renderer": 7, + "isWidget": 2, + "passMouseDownEventToWidget": 3, + "toRenderWidget": 3, + "widget": 18, + "RenderWidget*": 1, + "renderWidget": 2, + "lastEventIsMouseUp": 2, + "*currentEventAfterHandlingMouseDown": 1, + "currentEventAfterHandlingMouseDown": 3, + "NSLeftMouseUp": 3, + "timestamp": 8, + "Widget*": 3, + "pWidget": 2, + "RefPtr": 1, + "": 1, + "LOG_ERROR": 1, + "true": 29, + "platformWidget": 6, + "*nodeView": 1, + "nodeView": 9, + "superview": 5, + "*view": 4, + "hitTest": 2, + "convertPoint": 2, + "locationInWindow": 4, + "client": 3, + "firstResponder": 1, + "clickCount": 8, + "<=>": 1, + "1": 1, + "acceptsFirstResponder": 1, + "needsPanelToBecomeKey": 1, + "makeFirstResponder": 1, + "wasDeferringLoading": 3, + "defersLoading": 1, + "setDefersLoading": 2, + "m_sendingEventToSubview": 24, + "*outerView": 1, + "getOuterView": 1, + "beforeMouseDown": 1, + "outerView": 2, + "widget.get": 2, + "mouseDown": 2, + "afterMouseDown": 1, + "m_mouseDownView": 5, + "m_mouseDownWasInSubframe": 7, + "m_mousePressed": 2, + "findViewInSubviews": 3, + "*superview": 1, + "*target": 1, + "NSEnumerator": 1, + "*e": 1, + "subviews": 1, + "objectEnumerator": 1, + "*subview": 1, + "subview": 3, + "e": 1, + "nextObject": 1, + "mouseDownViewIfStillGood": 3, + "*mouseDownView": 1, + "mouseDownView": 3, + "topFrameView": 3, + "*topView": 1, + "topView": 2, + "eventLoopHandleMouseDragged": 1, + "mouseDragged": 2, + "eventLoopHandleMouseUp": 1, + "mouseUp": 2, + "passSubframeEventToSubframe": 4, + "Frame*": 5, + "subframe": 13, + "HitTestResult*": 2, + "hoveredNode": 5, + "NSLeftMouseDragged": 1, + "NSOtherMouseDragged": 1, + "NSRightMouseDragged": 1, + "dragController": 1, + "didInitiateDrag": 1, + "NSMouseMoved": 2, + "eventHandler": 6, + "handleMouseMoveEvent": 3, + "currentPlatformMouseEvent": 8, + "NSLeftMouseDown": 3, + "Node*": 1, + "node": 3, + "isFrameView": 2, + "handleMouseReleaseEvent": 3, + "originalNSScrollViewScrollWheel": 4, + "_nsScrollViewScrollWheelShouldRetainSelf": 3, + "selfRetainingNSScrollViewScrollWheel": 3, + "NSScrollView": 2, + "SEL": 2, + "nsScrollViewScrollWheelShouldRetainSelf": 2, + "isMainThread": 3, + "setNSScrollViewScrollWheelShouldRetainSelf": 3, + "shouldRetain": 2, + "method": 2, + "class_getInstanceMethod": 1, + "objc_getRequiredClass": 1, + "scrollWheel": 2, + "reinterpret_cast": 1, + "": 1, + "*self": 1, + "selector": 2, + "shouldRetainSelf": 3, + "retain": 1, + "release": 1, + "passWheelEventToWidget": 1, + "NSView*": 1, + "static_cast": 1, + "": 1, + "frame": 3, + "NSScrollWheel": 1, + "v": 6, + "loader": 1, + "resetMultipleFormSubmissionProtection": 1, + "handleMousePressEvent": 2, + "handleMouseDoubleClickEvent": 1, + "sendFakeEventsAfterWidgetTracking": 1, + "*initiatingEvent": 1, + "eventType": 5, + "initiatingEvent": 22, + "*fakeEvent": 1, + "fakeEvent": 6, + "mouseEventWithType": 2, + "location": 3, + "modifierFlags": 6, + "windowNumber": 6, + "context": 6, + "eventNumber": 3, + "pressure": 3, + "postEvent": 3, + "atStart": 3, + "keyEventWithType": 1, + "charactersIgnoringModifiers": 2, + "isARepeat": 2, + "keyCode": 2, + "window": 1, + "convertScreenToBase": 1, + "mouseLocation": 1, + "mouseMoved": 2, + "frameHasPlatformWidget": 4, + "passMousePressEventToSubframe": 1, + "mev": 6, + "mev.event": 3, + "passMouseMoveEventToSubframe": 1, + "m_mouseDownMayStartDrag": 1, + "passMouseReleaseEventToSubframe": 1, + "PlatformMouseEvent": 5, + "*windowView": 1, + "windowView": 2, + "CONTEXT_MENUS": 2, + "sendContextMenuEvent": 2, + "eventMayStartDrag": 2, + "eventActivatedView": 1, + "m_activationEventNumber": 1, + "event.eventNumber": 1, + "": 1, + "createDraggingClipboard": 1, + "NSPasteboard": 2, + "*pasteboard": 1, + "pasteboardWithName": 1, + "NSDragPboard": 1, + "pasteboard": 2, + "declareTypes": 1, + "ClipboardMac": 1, + "Clipboard": 1, + "DragAndDrop": 1, + "ClipboardWritable": 1, + "tabsToAllFormControls": 1, + "KeyboardEvent*": 1, + "KeyboardUIMode": 1, + "keyboardUIMode": 5, + "handlingOptionTab": 4, + "isKeyboardOptionTab": 1, + "KeyboardAccessTabsToLinks": 2, + "KeyboardAccessFull": 1, + "needsKeyboardEventDisambiguationQuirks": 2, + "Document*": 1, + "applicationIsSafari": 1, + "url": 2, + ".protocolIs": 2, + "Settings*": 1, + "settings": 5, + "DASHBOARD_SUPPORT": 1, + "usesDashboardBackwardCompatibilityMode": 1, + "accessKeyModifiers": 1, + "AXObjectCache": 1, + "accessibilityEnhancedUserInterfaceEnabled": 1, + "CtrlKey": 2, + "AltKey": 1 }, "Omgrofl": { "lol": 14, @@ -48946,25 +48949,44 @@ "title": 1 }, "OpenCL": { + "typedef": 1, + "float": 3, + "foo_t": 3, + ";": 12, + "#ifndef": 1, + "ZERO": 3, + "#define": 2, + "(": 18, + ")": 18, + "#endif": 1, + "FOO": 1, + "x": 5, + "+": 4, + "__kernel": 1, + "void": 1, + "foo": 1, + "__global": 1, + "const": 4, + "*": 5, + "__local": 1, + "y": 4, + "uint": 1, + "n": 4, + "{": 4, + "barrier": 1, + "CLK_LOCAL_MEM_FENCE": 1, + "if": 1, + "*x": 1, + "}": 4, "double": 3, "run_fftw": 1, - "(": 18, "int": 3, - "n": 4, - "const": 4, - "float": 3, - "*": 5, - "x": 5, - "y": 4, - ")": 18, - "{": 4, "fftwf_plan": 1, "p1": 3, "fftwf_plan_dft_1d": 1, "fftwf_complex": 2, "FFTW_FORWARD": 1, "FFTW_ESTIMATE": 1, - ";": 12, "nops": 3, "t": 4, "cl": 2, @@ -48972,32 +48994,15 @@ "for": 1, "op": 3, "<": 1, - "+": 4, "fftwf_execute": 1, - "}": 4, "-": 1, "/": 1, "fftwf_destroy_plan": 1, - "return": 1, - "typedef": 1, - "foo_t": 3, - "#ifndef": 1, - "ZERO": 3, - "#define": 2, - "#endif": 1, - "FOO": 1, - "__kernel": 1, - "void": 1, - "foo": 1, - "__global": 1, - "__local": 1, - "uint": 1, - "barrier": 1, - "CLK_LOCAL_MEM_FENCE": 1, - "if": 1, - "*x": 1 + "return": 1 }, "OpenEdge ABL": { + "MESSAGE": 2, + ".": 14, "USING": 3, "Progress.Lang.*.": 3, "CLASS": 2, @@ -49106,27 +49111,70 @@ "INPUT": 11, "THIS": 1, "OBJECT": 2, - ".": 14, "CLASS.": 2, - "MESSAGE": 2, - "INTERFACE": 1, - "email.SendEmailAlgorithm": 1, - "ipobjEmail": 1, + "email.Util": 1, + "FINAL": 1, + "PRIVATE": 1, + "STATIC": 5, + "VARIABLE": 12, + "cMonthMap": 2, "AS": 21, - "INTERFACE.": 1, + "EXTENT": 1, + "INITIAL": 1, + "[": 2, + "]": 2, + "ABLDateTimeToEmail": 3, + "ipdttzDateTime": 6, + "DATETIME": 3, + "TZ": 2, + "STRING": 7, + "DAY": 1, + "MONTH": 1, + "YEAR": 1, + "INTEGER": 6, + "TRUNCATE": 2, + "MTIME": 1, + "/": 2, + "ABLTimeZoneToString": 2, + "TIMEZONE": 1, + "ipdtDateTime": 2, + "ipiTimeZone": 3, + "ABSOLUTE": 1, + "MODULO": 1, + "LONGCHAR": 4, + "ConvertDataToBase64": 1, + "iplcNonEncodedData": 2, + "lcPreBase64Data": 4, + "NO": 13, + "UNDO.": 12, + "lcPostBase64Data": 3, + "mptrPostBase64Data": 3, + "MEMPTR": 2, + "i": 3, + "COPY": 1, + "LOB": 1, + "FROM": 1, + "TO": 2, + "mptrPostBase64Data.": 1, + "BASE64": 1, + "ENCODE": 1, + "SET": 5, + "SIZE": 5, + "DO": 2, + "LENGTH": 3, + "BY": 1, + "ASSIGN": 2, + "SUBSTRING": 1, + "CHR": 2, + "END.": 2, + "lcPostBase64Data.": 1, "PARAMETER": 3, "objSendEmailAlg": 2, "email.SendEmailSocket": 1, - "NO": 13, - "UNDO.": 12, - "VARIABLE": 12, "vbuffer": 9, - "MEMPTR": 2, "vstatus": 1, "LOGICAL": 1, "vState": 2, - "INTEGER": 6, - "ASSIGN": 2, "vstate": 1, "FUNCTION": 1, "getHostname": 1, @@ -49149,11 +49197,7 @@ "IF": 2, "THEN": 2, "RETURN.": 1, - "SET": 5, - "SIZE": 5, - "LENGTH": 3, "PUT": 1, - "STRING": 7, "pstring.": 1, "SELF": 4, "WRITE": 1, @@ -49168,53 +49212,34 @@ "VIEW": 1, "ALERT": 1, "BOX.": 1, - "DO": 2, "READ": 1, "handleResponse": 1, - "END.": 2, - "email.Util": 1, - "FINAL": 1, - "PRIVATE": 1, - "STATIC": 5, - "cMonthMap": 2, - "EXTENT": 1, - "INITIAL": 1, - "[": 2, - "]": 2, - "ABLDateTimeToEmail": 3, - "ipdttzDateTime": 6, - "DATETIME": 3, - "TZ": 2, - "DAY": 1, - "MONTH": 1, - "YEAR": 1, - "TRUNCATE": 2, - "MTIME": 1, - "/": 2, - "ABLTimeZoneToString": 2, - "TIMEZONE": 1, - "ipdtDateTime": 2, - "ipiTimeZone": 3, - "ABSOLUTE": 1, - "MODULO": 1, - "LONGCHAR": 4, - "ConvertDataToBase64": 1, - "iplcNonEncodedData": 2, - "lcPreBase64Data": 4, - "lcPostBase64Data": 3, - "mptrPostBase64Data": 3, - "i": 3, - "COPY": 1, - "LOB": 1, - "FROM": 1, - "TO": 2, - "mptrPostBase64Data.": 1, - "BASE64": 1, - "ENCODE": 1, - "BY": 1, - "SUBSTRING": 1, - "CHR": 2, - "lcPostBase64Data.": 1 + "INTERFACE": 1, + "email.SendEmailAlgorithm": 1, + "ipobjEmail": 1, + "INTERFACE.": 1 + }, + "OpenSCAD": { + "sphere": 2, + "(": 11, + "r": 3, + ")": 11, + ";": 6, + "fn": 1, + "difference": 1, + "{": 2, + "union": 1, + "translate": 4, + "[": 5, + "]": 5, + "cube": 1, + "center": 3, + "true": 3, + "cylinder": 2, + "h": 2, + "r1": 1, + "r2": 1, + "}": 2 }, "Org": { "#": 13, @@ -49520,66 +49545,6 @@ "ent*CV": 1, "*AV": 1, "|": 1, - "ParallelObjective": 1, - "obj": 18, - "DONOTUSECLIENT": 2, - "isclass": 1, - "obj.p2p": 2, - "oxwarning": 1, - "obj.L": 1, - "P2P": 2, - "ObjClient": 4, - "ObjServer": 7, - "this.obj": 2, - "Execute": 4, - "basetag": 2, - "STOP_TAG": 1, - "iml": 1, - "obj.NvfuncTerms": 2, - "Nparams": 6, - "obj.nstruct": 2, - "Loop": 2, - "nxtmsgsz": 2, - "//free": 1, - "param": 1, - "length": 1, - "is": 1, - "no": 2, - "greater": 1, - "than": 1, - "QUIET": 2, - "println": 2, - "ID": 2, - "Server": 1, - "Recv": 1, - "ANY_TAG": 1, - "//receive": 1, - "the": 1, - "ending": 1, - "parameter": 1, - "vector": 1, - "Encode": 3, - "Buffer": 8, - "//encode": 1, - "it.": 1, - "Decode": 1, - "obj.nfree": 1, - "obj.cur.V": 1, - "vfunc": 2, - "CstrServer": 3, - "SepServer": 3, - "Lagrangian": 1, - "rows": 1, - "obj.cur": 1, - "Vec": 1, - "obj.Kvar.v": 1, - "imod": 1, - "Tag": 1, - "obj.K": 1, - "TRUE": 1, - "obj.Kvar": 1, - "PDF": 1, - "*": 5, "nldge": 1, "ParticleLogLikeli": 1, "it": 5, @@ -49614,6 +49579,7 @@ "sqrt": 1, "*M_PI": 1, "m_cY": 1, + "*": 5, "determinant": 2, "m_mMSbE.": 2, "covariance": 2, @@ -49665,6 +49631,7 @@ ".*my": 1, ".": 3, ".NaN": 1, + "no": 2, "can": 1, "happen": 1, "extrem": 1, @@ -49686,7 +49653,65 @@ "in": 1, "c": 1, "on": 1, - "normalized": 1 + "normalized": 1, + "ParallelObjective": 1, + "obj": 18, + "DONOTUSECLIENT": 2, + "isclass": 1, + "obj.p2p": 2, + "oxwarning": 1, + "obj.L": 1, + "P2P": 2, + "ObjClient": 4, + "ObjServer": 7, + "this.obj": 2, + "Execute": 4, + "basetag": 2, + "STOP_TAG": 1, + "iml": 1, + "obj.NvfuncTerms": 2, + "Nparams": 6, + "obj.nstruct": 2, + "Loop": 2, + "nxtmsgsz": 2, + "//free": 1, + "param": 1, + "length": 1, + "is": 1, + "greater": 1, + "than": 1, + "QUIET": 2, + "println": 2, + "ID": 2, + "Server": 1, + "Recv": 1, + "ANY_TAG": 1, + "//receive": 1, + "the": 1, + "ending": 1, + "parameter": 1, + "vector": 1, + "Encode": 3, + "Buffer": 8, + "//encode": 1, + "it.": 1, + "Decode": 1, + "obj.nfree": 1, + "obj.cur.V": 1, + "vfunc": 2, + "CstrServer": 3, + "SepServer": 3, + "Lagrangian": 1, + "rows": 1, + "obj.cur": 1, + "Vec": 1, + "obj.Kvar.v": 1, + "imod": 1, + "Tag": 1, + "obj.K": 1, + "TRUE": 1, + "obj.Kvar": 1, + "PDF": 1 }, "Oxygene": { "": 1, @@ -49945,357 +49970,165 @@ "namespace": 28, "Symfony": 24, "Component": 24, - "Console": 17, + "DomCrawler": 5, ";": 1383, "use": 23, - "Input": 6, - "InputInterface": 4, - "ArgvInput": 2, - "ArrayInput": 3, - "InputDefinition": 2, - "InputOption": 15, - "InputArgument": 3, - "Output": 5, - "OutputInterface": 6, - "ConsoleOutput": 2, - "ConsoleOutputInterface": 2, - "Command": 6, - "HelpCommand": 2, - "ListCommand": 2, - "Helper": 3, - "HelperSet": 3, - "FormatterHelper": 2, - "DialogHelper": 2, + "Field": 9, + "FormField": 3, "class": 21, - "Application": 3, + "Form": 4, + "extends": 3, + "Link": 3, + "implements": 3, + "ArrayAccess": 1, "{": 974, "private": 24, - "commands": 39, - "wantHelps": 4, - "false": 154, - "runningCommand": 5, - "name": 181, - "version": 8, - "catchExceptions": 4, - "autoExit": 4, - "definition": 3, - "helperSet": 6, + "button": 6, + "fields": 60, "public": 202, "function": 205, "__construct": 8, "(": 2416, + "DOMNode": 3, + "node": 42, + "currentUri": 7, + "method": 31, + "null": 164, ")": 2417, + "parent": 14, "this": 928, "-": 1271, - "true": 133, - "array": 296, - "getDefaultHelperSet": 2, - "getDefaultInputDefinition": 2, - "foreach": 94, - "getDefaultCommands": 2, - "as": 96, - "command": 41, - "add": 7, + "initialize": 2, "}": 972, - "run": 4, - "input": 20, - "null": 164, - "output": 60, - "if": 450, - "new": 74, - "try": 3, - "statusCode": 14, - "doRun": 2, - "catch": 3, - "Exception": 1, - "e": 18, - "throw": 19, - "instanceof": 8, - "renderException": 3, - "getErrorOutput": 2, - "else": 70, - "getCode": 1, - "is_numeric": 7, - "&&": 119, - "exit": 7, + "getFormNode": 1, "return": 305, - "getCommandName": 2, - "hasParameterOption": 7, - "setDecorated": 2, - "elseif": 31, - "setInteractive": 2, - "function_exists": 4, - "getHelperSet": 3, - "has": 7, - "inputStream": 2, - "get": 12, - "getInputStream": 1, - "posix_isatty": 1, - "setVerbosity": 2, - "VERBOSITY_QUIET": 1, - "VERBOSITY_VERBOSE": 2, - "writeln": 13, - "getLongVersion": 3, - "find": 17, - "setHelperSet": 1, - "getDefinition": 2, - "getHelp": 2, - "messages": 16, - "sprintf": 27, - "getOptions": 1, - "option": 5, + "setValues": 2, + "array": 296, + "values": 53, + "foreach": 94, + "as": 96, + "name": 181, + "value": 53, + "set": 26, + "getValues": 3, + "all": 11, + "field": 88, + "if": 450, + "isDisabled": 2, + "continue": 7, + "instanceof": 8, + "FileFormField": 3, + "&&": 119, + "hasValue": 1, "[": 672, "]": 672, - ".": 169, - "getName": 14, - "getShortcut": 2, - "getDescription": 3, - "implode": 8, - "PHP_EOL": 3, - "setCatchExceptions": 1, - "boolean": 4, - "Boolean": 4, - "setAutoExit": 1, - "setName": 1, - "getVersion": 3, - "setVersion": 1, - "register": 1, - "addCommands": 1, - "setApplication": 2, - "isEnabled": 1, - "getAliases": 3, - "alias": 87, - "isset": 101, - "InvalidArgumentException": 9, - "helpCommand": 3, - "setCommand": 1, - "getNamespaces": 3, - "namespaces": 4, - "extractNamespace": 7, - "array_values": 5, - "array_unique": 4, - "array_filter": 2, - "findNamespace": 4, - "allNamespaces": 3, - "n": 12, - "explode": 9, - "found": 4, - "i": 36, - "part": 10, - "abbrevs": 31, - "static": 6, - "getAbbreviations": 4, - "array_map": 2, - "p": 3, - "message": 12, - "<=>": 3, - "alternatives": 10, - "findAlternativeNamespace": 2, - "count": 32, - "getAbbreviationSuggestions": 4, - "searchName": 13, - "pos": 3, - "strrpos": 2, - "substr": 6, - "namespace.substr": 1, - "suggestions": 2, - "aliases": 8, - "findAlternativeCommands": 2, - "all": 11, - "substr_count": 1, - "+": 12, - "names": 3, - "for": 8, - "len": 11, - "strlen": 14, - "abbrev": 4, - "asText": 1, - "raw": 2, - "width": 7, - "sortCommands": 4, - "space": 5, - "space.": 1, - "asXml": 2, - "asDom": 2, - "dom": 12, - "DOMDocument": 2, - "formatOutput": 1, - "appendChild": 10, - "xml": 5, - "createElement": 6, - "commandsXML": 3, - "setAttribute": 2, - "namespacesXML": 3, - "namespaceArrayXML": 4, - "continue": 7, - "commandXML": 3, - "createTextNode": 1, - "node": 42, - "getElementsByTagName": 1, - "item": 9, - "importNode": 3, - "saveXml": 1, - "string": 5, - "encoding": 2, - "mb_detect_encoding": 1, - "mb_strlen": 1, - "do": 2, - "title": 3, - "get_class": 4, - "getTerminalWidth": 3, - "PHP_INT_MAX": 1, - "lines": 3, - "preg_split": 1, - "getMessage": 1, - "line": 10, - "str_split": 1, - "max": 2, - "str_repeat": 2, - "title.str_repeat": 1, - "line.str_repeat": 1, - "message.": 1, - "getVerbosity": 1, - "trace": 12, - "getTrace": 1, - "array_unshift": 2, - "getFile": 2, - "getLine": 2, - "type": 62, - "file": 3, - "while": 6, - "getPrevious": 1, - "getSynopsis": 1, - "protected": 59, - "defined": 5, - "ansicon": 4, - "getenv": 2, - "preg_replace": 4, - "preg_match": 6, - "getSttyColumns": 3, - "match": 4, - "getTerminalHeight": 1, - "trim": 3, - "getFirstArgument": 1, - "REQUIRED": 1, - "VALUE_NONE": 7, - "descriptorspec": 2, - "process": 10, - "proc_open": 1, - "pipes": 4, - "is_resource": 1, - "info": 5, - "stream_get_contents": 1, - "fclose": 2, - "proc_close": 1, - "namespacedCommands": 5, - "key": 64, - "ksort": 2, - "&": 19, - "limit": 3, - "parts": 4, - "array_pop": 1, - "array_slice": 1, - "callback": 5, - "findAlternatives": 3, - "collection": 3, - "call_user_func": 2, - "lev": 6, - "levenshtein": 2, - "3": 1, - "strpos": 15, - "values": 53, - "/": 1, - "||": 52, - "value": 53, - "asort": 1, - "array_keys": 7, - "BrowserKit": 1, - "DomCrawler": 5, - "Crawler": 2, - "Link": 3, - "Form": 4, - "Process": 1, - "PhpProcess": 2, - "abstract": 2, - "Client": 1, - "history": 15, - "cookieJar": 9, - "server": 20, - "request": 76, - "response": 33, - "crawler": 7, - "insulated": 7, - "redirect": 6, - "followRedirects": 5, - "History": 2, - "CookieJar": 2, - "setServerParameters": 2, - "followRedirect": 4, - "insulate": 1, - "class_exists": 2, - "RuntimeException": 2, - "array_merge": 32, - "setServerParameter": 1, - "getServerParameter": 1, - "default": 9, - "getHistory": 1, - "getCookieJar": 1, - "getCrawler": 1, - "getResponse": 1, - "getRequest": 1, - "click": 1, - "link": 10, - "submit": 2, - "getMethod": 6, - "getUri": 8, - "form": 7, - "setValues": 2, - "getPhpValues": 2, - "getPhpFiles": 2, - "method": 31, - "uri": 23, - "parameters": 4, - "files": 7, - "content": 4, - "changeHistory": 4, - "getAbsoluteUri": 2, - "isEmpty": 2, - "current": 4, - "parse_url": 3, - "PHP_URL_HOST": 1, - "PHP_URL_SCHEME": 1, - "Request": 3, - "allValues": 1, - "filterRequest": 2, - "doRequestInProcess": 2, - "doRequest": 2, - "filterResponse": 2, - "updateFromResponse": 1, - "getHeader": 2, - "createCrawlerFromContent": 2, - "getContent": 2, - "getScript": 2, - "sys_get_temp_dir": 2, - "isSuccessful": 1, - "getOutput": 3, - "unserialize": 1, - "LogicException": 4, - "addContent": 1, - "back": 2, - "requestFromRequest": 4, - "forward": 2, - "reload": 1, - "empty": 96, - "restart": 1, - "clear": 2, - "currentUri": 7, - "path": 20, - "PHP_URL_PATH": 1, - "path.": 1, - "getParameters": 1, + "getValue": 2, "getFiles": 3, - "getServer": 1, + "in_array": 26, + "getMethod": 6, + "files": 7, + "getPhpValues": 2, + "qs": 4, + "http_build_query": 3, + "parse_str": 2, + "getPhpFiles": 2, + "getUri": 8, + "uri": 23, + "queryString": 2, + "sep": 1, + "false": 154, + "strpos": 15, + ".": 169, + "sep.": 1, + "protected": 59, + "getRawUri": 1, + "getAttribute": 10, + "strtoupper": 3, + "has": 7, + "remove": 4, + "get": 12, + "add": 7, + "offsetExists": 1, + "offsetGet": 1, + "offsetSet": 1, + "offsetUnset": 1, + "setNode": 1, + "nodeName": 13, + "||": 52, + "do": 2, + "parentNode": 1, + "throw": 19, + "new": 74, + "LogicException": 4, + "while": 6, + "elseif": 31, + "sprintf": 27, + "FormFieldRegistry": 2, + "document": 6, + "DOMDocument": 2, + "importNode": 3, + "true": 133, + "root": 4, + "appendChild": 10, + "createElement": 6, + "xpath": 2, + "DOMXPath": 1, + "query": 102, + "hasAttribute": 1, + "InputFormField": 2, + "ChoiceFormField": 2, + "addChoice": 1, + "else": 70, + "TextareaFormField": 1, + "base": 8, + "segments": 13, + "getSegments": 4, + "getName": 14, + "target": 20, + "&": 19, + "is_array": 37, + "path": 20, + "array_shift": 5, + "count": 32, + "array_key_exists": 11, + "unset": 22, + "InvalidArgumentException": 9, + "try": 3, + "catch": 3, + "e": 18, + "self": 1, + "create": 13, + "k": 7, + "v": 17, + "setValue": 1, + "walk": 3, + "static": 6, + "registry": 4, + "output": 60, + "empty": 96, + "preg_match": 6, + "m": 5, + "SHEBANG#!php": 4, + "echo": 2, "": 3, + "Object": 4, + "relational": 2, + "mapper": 2, + "DBO": 2, + "backed": 2, + "object": 14, + "data": 187, + "model": 34, + "for": 8, + "mapping": 1, + "database": 2, + "tables": 5, + "to": 6, + "Cake": 7, + "objects": 5, + "PHP": 1, + "versions": 1, + "5": 1, "CakePHP": 6, "tm": 6, "Rapid": 2, @@ -50307,7 +50140,6 @@ "Copyright": 5, "2005": 4, "2012": 4, - "Cake": 7, "Software": 5, "Foundation": 4, "Inc": 4, @@ -50325,14 +50157,13 @@ "above": 2, "copyright": 5, "notice": 2, + "link": 10, "Project": 2, "package": 2, - "Controller": 4, + "Model": 5, "since": 2, - "v": 17, "0": 4, - "2": 2, - "9": 1, + "10": 1, "license": 6, "www": 4, "opensource": 2, @@ -50340,407 +50171,8 @@ "mit": 2, "App": 20, "uses": 46, - "CakeResponse": 2, - "Network": 1, "ClassRegistry": 9, "Utility": 6, - "ComponentCollection": 2, - "View": 9, - "CakeEvent": 13, - "Event": 6, - "CakeEventListener": 4, - "CakeEventManager": 5, - "controller": 3, - "organization": 1, - "business": 1, - "logic": 1, - "Provides": 1, - "basic": 1, - "functionality": 1, - "such": 1, - "rendering": 1, - "views": 1, - "inside": 1, - "layouts": 1, - "automatic": 1, - "model": 34, - "availability": 1, - "redirection": 2, - "callbacks": 4, - "and": 5, - "more": 1, - "Controllers": 2, - "should": 1, - "provide": 1, - "a": 11, - "number": 1, - "action": 7, - "methods": 5, - "These": 1, - "are": 5, - "on": 4, - "that": 2, - "not": 2, - "prefixed": 1, - "with": 5, - "_": 1, - "Each": 1, - "serves": 1, - "an": 1, - "endpoint": 1, - "performing": 2, - "specific": 1, - "resource": 1, - "or": 9, - "resources": 1, - "For": 2, - "example": 2, - "adding": 1, - "editing": 1, - "object": 14, - "listing": 1, - "set": 26, - "objects": 5, - "You": 2, - "can": 2, - "access": 1, - "using": 2, - "contains": 1, - "POST": 1, - "GET": 1, - "FILES": 1, - "*": 25, - "were": 1, - "request.": 1, - "After": 1, - "required": 2, - "actions": 2, - "controllers": 2, - "responsible": 1, - "creating": 1, - "response.": 2, - "This": 1, - "usually": 1, - "takes": 1, - "generated": 1, - "possibly": 1, - "to": 6, - "another": 1, - "action.": 1, - "In": 1, - "either": 1, - "case": 31, - "allows": 1, - "you": 1, - "manipulate": 1, - "aspects": 1, - "created": 8, - "by": 2, - "Dispatcher": 1, - "based": 2, - "routing.": 1, - "By": 1, - "conventional": 1, - "names.": 1, - "/posts/index": 1, - "maps": 1, - "PostsController": 1, - "index": 5, - "re": 1, - "map": 1, - "urls": 1, - "Router": 5, - "connect": 1, - "@package": 2, - "Cake.Controller": 1, - "@property": 8, - "AclComponent": 1, - "Acl": 1, - "AuthComponent": 1, - "Auth": 1, - "CookieComponent": 1, - "Cookie": 1, - "EmailComponent": 1, - "Email": 1, - "PaginatorComponent": 1, - "Paginator": 1, - "RequestHandlerComponent": 1, - "RequestHandler": 1, - "SecurityComponent": 1, - "Security": 1, - "SessionComponent": 1, - "Session": 1, - "@link": 2, - "//book.cakephp.org/2.0/en/controllers.html": 1, - "*/": 2, - "extends": 3, - "Object": 4, - "implements": 3, - "helpers": 1, - "_responseClass": 1, - "viewPath": 3, - "layoutPath": 1, - "viewVars": 3, - "view": 5, - "layout": 5, - "autoRender": 6, - "autoLayout": 2, - "Components": 7, - "components": 1, - "viewClass": 10, - "ext": 1, - "plugin": 31, - "cacheAction": 1, - "passedArgs": 2, - "scaffold": 2, - "modelClass": 25, - "modelKey": 2, - "validationErrors": 50, - "_mergeParent": 4, - "_eventManager": 12, - "Inflector": 12, - "singularize": 4, - "underscore": 3, - "childMethods": 2, - "get_class_methods": 2, - "parentMethods": 2, - "array_diff": 3, - "CakeRequest": 5, - "setRequest": 2, - "parent": 14, - "__isset": 2, - "switch": 6, - "is_array": 37, - "list": 29, - "pluginSplit": 12, - "loadModel": 3, - "__get": 2, - "params": 34, - "load": 3, - "settings": 2, - "__set": 1, - "camelize": 3, - "array_key_exists": 11, - "invokeAction": 1, - "ReflectionMethod": 2, - "_isPrivateAction": 2, - "PrivateActionException": 1, - "invokeArgs": 1, - "ReflectionException": 1, - "_getScaffold": 2, - "MissingActionException": 1, - "privateAction": 4, - "isPublic": 1, - "in_array": 26, - "prefixes": 4, - "prefix": 2, - "Scaffold": 1, - "_mergeControllerVars": 2, - "pluginController": 9, - "pluginDot": 4, - "mergeParent": 2, - "is_subclass_of": 3, - "pluginVars": 3, - "appVars": 6, - "merge": 12, - "_mergeVars": 5, - "get_class_vars": 2, - "_mergeUses": 3, - "implementedEvents": 2, - "constructClasses": 1, - "init": 4, - "getEventManager": 13, - "attach": 4, - "startupProcess": 1, - "dispatch": 11, - "shutdownProcess": 1, - "httpCodes": 3, - "code": 4, - "id": 82, - "MissingModelException": 1, - "url": 18, - "status": 15, - "extract": 9, - "EXTR_OVERWRITE": 3, - "event": 35, - "//TODO": 1, - "Remove": 1, - "following": 1, - "when": 1, - "events": 1, - "fully": 1, - "migrated": 1, - "break": 19, - "breakOn": 4, - "collectReturn": 1, - "isStopped": 4, - "result": 21, - "_parseBeforeRedirect": 2, - "session_write_close": 1, - "header": 3, - "is_string": 7, - "codes": 3, - "array_flip": 1, - "send": 1, - "_stop": 1, - "resp": 6, - "compact": 8, - "one": 19, - "two": 6, - "data": 187, - "array_combine": 2, - "setAction": 1, - "args": 5, - "func_get_args": 5, - "unset": 22, - "call_user_func_array": 3, - "validate": 9, - "errors": 9, - "validateErrors": 1, - "invalidFields": 2, - "render": 3, - "className": 27, - "models": 6, - "keys": 19, - "currentModel": 2, - "currentObject": 6, - "getObject": 1, - "is_a": 1, - "location": 1, - "body": 1, - "referer": 5, - "local": 2, - "disableCache": 2, - "flash": 1, - "pause": 2, - "postConditions": 1, - "op": 9, - "bool": 5, - "exclusive": 2, - "cond": 5, - "arrayOp": 2, - "fields": 60, - "field": 88, - "fieldOp": 11, - "strtoupper": 3, - "paginate": 3, - "scope": 2, - "whitelist": 14, - "beforeFilter": 1, - "beforeRender": 1, - "beforeRedirect": 1, - "afterFilter": 1, - "beforeScaffold": 2, - "_beforeScaffold": 1, - "afterScaffoldSave": 2, - "_afterScaffoldSave": 1, - "afterScaffoldSaveError": 2, - "_afterScaffoldSaveError": 1, - "scaffoldError": 2, - "_scaffoldError": 1, - "php_help": 1, - "arg": 1, - "t": 26, - "php_permission": 1, - "TRUE": 1, - "php_eval": 1, - "global": 2, - "theme_path": 5, - "theme_info": 3, - "conf": 2, - "old_theme_path": 2, - "drupal_get_path": 1, - "dirname": 1, - "filename": 1, - "ob_start": 1, - "print": 1, - "eval": 1, - "ob_get_contents": 1, - "ob_end_clean": 1, - "_php_filter_tips": 1, - "filter": 1, - "format": 3, - "long": 2, - "FALSE": 2, - "base_url": 1, - "php_filter_info": 1, - "filters": 2, - "SHEBANG#!php": 4, - "": 1, - "aMenuLinks": 1, - "Array": 13, - "Blog": 1, - "SITE_DIR": 4, - "Photos": 1, - "photo": 1, - "About": 1, - "me": 1, - "about": 1, - "Contact": 1, - "contacts": 1, - "Field": 9, - "FormField": 3, - "ArrayAccess": 1, - "button": 6, - "DOMNode": 3, - "initialize": 2, - "getFormNode": 1, - "getValues": 3, - "isDisabled": 2, - "FileFormField": 3, - "hasValue": 1, - "getValue": 2, - "qs": 4, - "http_build_query": 3, - "parse_str": 2, - "queryString": 2, - "sep": 1, - "sep.": 1, - "getRawUri": 1, - "getAttribute": 10, - "remove": 4, - "offsetExists": 1, - "offsetGet": 1, - "offsetSet": 1, - "offsetUnset": 1, - "setNode": 1, - "nodeName": 13, - "parentNode": 1, - "FormFieldRegistry": 2, - "document": 6, - "root": 4, - "xpath": 2, - "DOMXPath": 1, - "query": 102, - "hasAttribute": 1, - "InputFormField": 2, - "ChoiceFormField": 2, - "addChoice": 1, - "TextareaFormField": 1, - "base": 8, - "segments": 13, - "getSegments": 4, - "target": 20, - "array_shift": 5, - "self": 1, - "create": 13, - "k": 7, - "setValue": 1, - "walk": 3, - "registry": 4, - "m": 5, - "relational": 2, - "mapper": 2, - "DBO": 2, - "backed": 2, - "mapping": 1, - "database": 2, - "tables": 5, - "PHP": 1, - "versions": 1, - "5": 1, - "Model": 5, - "10": 1, "Validation": 1, "String": 5, "Set": 9, @@ -50748,28 +50180,45 @@ "ModelBehavior": 1, "ConnectionManager": 2, "Xml": 2, + "CakeEvent": 13, + "Event": 6, + "CakeEventListener": 4, + "CakeEventManager": 5, "Automatically": 1, "selects": 1, + "a": 11, "table": 21, + "based": 2, + "on": 4, "pluralized": 1, "lowercase": 1, + "i": 36, "User": 1, + "*": 25, "is": 1, + "required": 2, "have": 2, "at": 1, "least": 1, "primary": 3, "key.": 1, + "@package": 2, "Cake.Model": 1, + "@link": 2, "//book.cakephp.org/2.0/en/models.html": 1, + "*/": 2, "useDbConfig": 7, "useTable": 12, "displayField": 4, + "id": 82, "schemaName": 1, "primaryKey": 38, "_schema": 11, + "validate": 9, + "validationErrors": 50, "validationDomain": 1, "tablePrefix": 8, + "alias": 87, "tableToModel": 4, "cacheQueries": 1, "belongsTo": 7, @@ -50778,6 +50227,7 @@ "hasAndBelongsToMany": 24, "actsAs": 2, "Behaviors": 6, + "whitelist": 14, "cacheSources": 7, "findQueryType": 3, "recursive": 9, @@ -50792,22 +50242,48 @@ "_insertID": 1, "_sourceConfigured": 1, "findMethods": 3, + "_eventManager": 12, "ds": 3, + "extract": 9, + "array_merge": 32, + "isset": 101, + "get_class": 4, "addObject": 2, + "is_subclass_of": 3, + "merge": 12, "parentClass": 3, "get_parent_class": 1, + "_mergeVars": 5, + "Inflector": 12, "tableize": 2, "_createLinks": 3, + "init": 4, + "implementedEvents": 2, + "getEventManager": 13, + "attach": 4, "__call": 1, + "params": 34, + "result": 21, "dispatchMethod": 1, "getDataSource": 15, + "__isset": 2, + "className": 27, + "type": 62, + "break": 19, "relation": 7, + "key": 64, + "list": 29, + "plugin": 31, + "pluginSplit": 12, "assocKey": 13, "dynamic": 2, "isKeySet": 1, "AppModel": 1, "_constructLinkedModel": 2, "schema": 11, + "<=>": 3, + "2": 2, + "__get": 2, "hasField": 7, "setDataSource": 2, "property_exists": 3, @@ -50815,9 +50291,18 @@ "reset": 6, "assoc": 75, "assocName": 6, + "is_numeric": 7, "unbindModel": 1, + "models": 6, + "explode": 9, + "trim": 3, "_generateAssociation": 2, "dynamicWith": 3, + "switch": 6, + "case": 31, + "underscore": 3, + "singularize": 4, + "camelize": 3, "sort": 1, "setSource": 1, "tableName": 4, @@ -50826,7 +50311,10 @@ "sources": 3, "listSources": 1, "strtolower": 1, + "array_map": 2, "MissingTableException": 1, + "one": 19, + "two": 6, "is_object": 2, "SimpleXMLElement": 1, "_normalizeXmlData": 3, @@ -50838,16 +50326,24 @@ "fieldName": 6, "fieldValue": 7, "deconstruct": 2, + "array_keys": 7, "getAssociated": 4, + "xml": 5, + "substr": 6, "getColumnType": 4, "useNewDate": 2, "dateFields": 5, "timeFields": 2, "date": 9, + "+": 12, "val": 27, + "format": 3, "columns": 5, + "index": 5, "str_replace": 3, + "array_values": 5, "describe": 1, + "is_string": 7, "getColumnTypes": 1, "trigger_error": 1, "__d": 1, @@ -50857,6 +50353,7 @@ "startQuote": 4, "endQuote": 4, "checkVirtual": 3, + "n": 12, "isVirtualField": 3, "hasMethod": 2, "getVirtualField": 1, @@ -50864,7 +50361,9 @@ "defaults": 6, "properties": 4, "read": 2, + "find": 17, "conditions": 41, + "compact": 8, "saveField": 1, "options": 85, "save": 9, @@ -50874,15 +50373,23 @@ "exists": 6, "validates": 60, "updateCol": 6, + "default": 9, "colType": 4, "time": 3, "strtotime": 1, + "call_user_func": 2, + "event": 35, + "breakOn": 4, + "dispatch": 11, "joined": 5, "x": 4, "y": 2, "success": 10, + "created": 8, "cache": 2, "_prepareUpdateFields": 2, + "array_combine": 2, + "bool": 5, "update": 2, "fInfo": 4, "isUUID": 5, @@ -50895,6 +50402,7 @@ "join": 22, "joinModel": 8, "keyInfo": 4, + "with": 5, "withModel": 4, "pluginName": 1, "dbMulti": 6, @@ -50904,19 +50412,23 @@ "primaryAdded": 3, "idField": 3, "row": 17, + "strlen": 14, "keepExisting": 3, "associationForeignKey": 5, "links": 4, "oldLinks": 4, + "array_diff": 3, "delete": 9, "oldJoin": 4, "insertMulti": 1, + "keys": 19, "foreignKey": 11, "fkQuoted": 3, "escapeField": 6, "intval": 4, "updateAll": 3, "foreignKeys": 3, + "info": 5, "included": 3, "array_intersect": 1, "old": 2, @@ -50938,12 +50450,14 @@ "_return": 3, "recordData": 2, "cascade": 10, + "isStopped": 4, "_deleteDependent": 3, "_deleteLinks": 3, "_collectForeignKeys": 2, "savedAssociatons": 3, "deleteAll": 2, "records": 6, + "callbacks": 4, "ids": 8, "_id": 2, "getID": 2, @@ -50970,22 +50484,30 @@ "_findThreaded": 1, "nest": 1, "isUnique": 1, + "or": 9, + "func_get_args": 5, "is_bool": 1, "sql": 1, - "echo": 2, + "call_user_func_array": 3, + "errors": 9, + "invalidFields": 2, "Yii": 3, "console": 3, "bootstrap": 1, + "file": 3, "yiiframework": 2, "com": 2, "c": 1, "2008": 1, "LLC": 1, + "defined": 5, "YII_DEBUG": 2, "define": 2, "fcgi": 1, "doesn": 1, + "t": 26, "STDIN": 3, + "by": 2, "fopen": 1, "stdin": 1, "r": 1, @@ -50997,7 +50519,510 @@ "yii": 2, "autoload": 1, "config": 3, - "application": 2 + "application": 2, + "Application": 3, + "run": 4, + "Controller": 4, + "9": 1, + "CakeResponse": 2, + "Network": 1, + "ComponentCollection": 2, + "View": 9, + "controller": 3, + "organization": 1, + "business": 1, + "logic": 1, + "Provides": 1, + "basic": 1, + "functionality": 1, + "such": 1, + "rendering": 1, + "views": 1, + "inside": 1, + "layouts": 1, + "automatic": 1, + "availability": 1, + "redirection": 2, + "and": 5, + "more": 1, + "Controllers": 2, + "should": 1, + "provide": 1, + "number": 1, + "action": 7, + "methods": 5, + "These": 1, + "are": 5, + "that": 2, + "not": 2, + "prefixed": 1, + "_": 1, + "part": 10, + "Each": 1, + "serves": 1, + "an": 1, + "endpoint": 1, + "performing": 2, + "specific": 1, + "resource": 1, + "collection": 3, + "resources": 1, + "For": 2, + "example": 2, + "adding": 1, + "editing": 1, + "listing": 1, + "You": 2, + "can": 2, + "access": 1, + "request": 76, + "parameters": 4, + "using": 2, + "contains": 1, + "POST": 1, + "GET": 1, + "FILES": 1, + "were": 1, + "request.": 1, + "After": 1, + "actions": 2, + "controllers": 2, + "responsible": 1, + "creating": 1, + "response.": 2, + "This": 1, + "usually": 1, + "takes": 1, + "form": 7, + "generated": 1, + "possibly": 1, + "another": 1, + "action.": 1, + "In": 1, + "either": 1, + "response": 33, + "allows": 1, + "you": 1, + "manipulate": 1, + "aspects": 1, + "Dispatcher": 1, + "routing.": 1, + "By": 1, + "conventional": 1, + "names.": 1, + "/posts/index": 1, + "maps": 1, + "PostsController": 1, + "re": 1, + "map": 1, + "urls": 1, + "Router": 5, + "connect": 1, + "Cake.Controller": 1, + "@property": 8, + "AclComponent": 1, + "Acl": 1, + "AuthComponent": 1, + "Auth": 1, + "CookieComponent": 1, + "Cookie": 1, + "EmailComponent": 1, + "Email": 1, + "PaginatorComponent": 1, + "Paginator": 1, + "RequestHandlerComponent": 1, + "RequestHandler": 1, + "SecurityComponent": 1, + "Security": 1, + "SessionComponent": 1, + "Session": 1, + "//book.cakephp.org/2.0/en/controllers.html": 1, + "helpers": 1, + "_responseClass": 1, + "viewPath": 3, + "layoutPath": 1, + "viewVars": 3, + "view": 5, + "layout": 5, + "autoRender": 6, + "autoLayout": 2, + "Components": 7, + "components": 1, + "viewClass": 10, + "ext": 1, + "cacheAction": 1, + "passedArgs": 2, + "scaffold": 2, + "modelClass": 25, + "modelKey": 2, + "_mergeParent": 4, + "childMethods": 2, + "get_class_methods": 2, + "parentMethods": 2, + "CakeRequest": 5, + "setRequest": 2, + "loadModel": 3, + "load": 3, + "settings": 2, + "__set": 1, + "invokeAction": 1, + "ReflectionMethod": 2, + "_isPrivateAction": 2, + "PrivateActionException": 1, + "invokeArgs": 1, + "ReflectionException": 1, + "_getScaffold": 2, + "MissingActionException": 1, + "privateAction": 4, + "isPublic": 1, + "prefixes": 4, + "prefix": 2, + "Scaffold": 1, + "_mergeControllerVars": 2, + "pluginController": 9, + "pluginDot": 4, + "mergeParent": 2, + "pluginVars": 3, + "appVars": 6, + "get_class_vars": 2, + "array_unshift": 2, + "_mergeUses": 3, + "constructClasses": 1, + "current": 4, + "startupProcess": 1, + "shutdownProcess": 1, + "httpCodes": 3, + "code": 4, + "MissingModelException": 1, + "redirect": 6, + "url": 18, + "status": 15, + "exit": 7, + "EXTR_OVERWRITE": 3, + "//TODO": 1, + "Remove": 1, + "following": 1, + "line": 10, + "when": 1, + "events": 1, + "fully": 1, + "migrated": 1, + "collectReturn": 1, + "_parseBeforeRedirect": 2, + "function_exists": 4, + "session_write_close": 1, + "header": 3, + "codes": 3, + "array_flip": 1, + "statusCode": 14, + "send": 1, + "_stop": 1, + "resp": 6, + "setAction": 1, + "args": 5, + "validateErrors": 1, + "render": 3, + "currentModel": 2, + "currentObject": 6, + "getObject": 1, + "is_a": 1, + "location": 1, + "body": 1, + "referer": 5, + "local": 2, + "disableCache": 2, + "flash": 1, + "message": 12, + "pause": 2, + "postConditions": 1, + "op": 9, + "exclusive": 2, + "cond": 5, + "arrayOp": 2, + "fieldOp": 11, + "paginate": 3, + "scope": 2, + "beforeFilter": 1, + "beforeRender": 1, + "beforeRedirect": 1, + "afterFilter": 1, + "beforeScaffold": 2, + "_beforeScaffold": 1, + "afterScaffoldSave": 2, + "_afterScaffoldSave": 1, + "afterScaffoldSaveError": 2, + "_afterScaffoldSaveError": 1, + "scaffoldError": 2, + "_scaffoldError": 1, + "Console": 17, + "Input": 6, + "InputInterface": 4, + "ArgvInput": 2, + "ArrayInput": 3, + "InputDefinition": 2, + "InputOption": 15, + "InputArgument": 3, + "Output": 5, + "OutputInterface": 6, + "ConsoleOutput": 2, + "ConsoleOutputInterface": 2, + "Command": 6, + "HelpCommand": 2, + "ListCommand": 2, + "Helper": 3, + "HelperSet": 3, + "FormatterHelper": 2, + "DialogHelper": 2, + "commands": 39, + "wantHelps": 4, + "runningCommand": 5, + "version": 8, + "catchExceptions": 4, + "autoExit": 4, + "definition": 3, + "helperSet": 6, + "getDefaultHelperSet": 2, + "getDefaultInputDefinition": 2, + "getDefaultCommands": 2, + "command": 41, + "input": 20, + "doRun": 2, + "Exception": 1, + "renderException": 3, + "getErrorOutput": 2, + "getCode": 1, + "getCommandName": 2, + "hasParameterOption": 7, + "setDecorated": 2, + "setInteractive": 2, + "getHelperSet": 3, + "inputStream": 2, + "getInputStream": 1, + "posix_isatty": 1, + "setVerbosity": 2, + "VERBOSITY_QUIET": 1, + "VERBOSITY_VERBOSE": 2, + "writeln": 13, + "getLongVersion": 3, + "setHelperSet": 1, + "getDefinition": 2, + "getHelp": 2, + "messages": 16, + "getOptions": 1, + "option": 5, + "getShortcut": 2, + "getDescription": 3, + "implode": 8, + "PHP_EOL": 3, + "setCatchExceptions": 1, + "boolean": 4, + "Boolean": 4, + "setAutoExit": 1, + "setName": 1, + "getVersion": 3, + "setVersion": 1, + "register": 1, + "addCommands": 1, + "setApplication": 2, + "isEnabled": 1, + "getAliases": 3, + "helpCommand": 3, + "setCommand": 1, + "getNamespaces": 3, + "namespaces": 4, + "extractNamespace": 7, + "array_unique": 4, + "array_filter": 2, + "findNamespace": 4, + "allNamespaces": 3, + "found": 4, + "abbrevs": 31, + "getAbbreviations": 4, + "p": 3, + "alternatives": 10, + "findAlternativeNamespace": 2, + "getAbbreviationSuggestions": 4, + "searchName": 13, + "pos": 3, + "strrpos": 2, + "namespace.substr": 1, + "suggestions": 2, + "aliases": 8, + "findAlternativeCommands": 2, + "substr_count": 1, + "names": 3, + "len": 11, + "abbrev": 4, + "asText": 1, + "raw": 2, + "width": 7, + "sortCommands": 4, + "space": 5, + "space.": 1, + "asXml": 2, + "asDom": 2, + "dom": 12, + "formatOutput": 1, + "commandsXML": 3, + "setAttribute": 2, + "namespacesXML": 3, + "namespaceArrayXML": 4, + "commandXML": 3, + "createTextNode": 1, + "getElementsByTagName": 1, + "item": 9, + "saveXml": 1, + "string": 5, + "encoding": 2, + "mb_detect_encoding": 1, + "mb_strlen": 1, + "title": 3, + "getTerminalWidth": 3, + "PHP_INT_MAX": 1, + "lines": 3, + "preg_split": 1, + "getMessage": 1, + "str_split": 1, + "max": 2, + "str_repeat": 2, + "title.str_repeat": 1, + "line.str_repeat": 1, + "message.": 1, + "getVerbosity": 1, + "trace": 12, + "getTrace": 1, + "getFile": 2, + "getLine": 2, + "getPrevious": 1, + "getSynopsis": 1, + "ansicon": 4, + "getenv": 2, + "preg_replace": 4, + "getSttyColumns": 3, + "match": 4, + "getTerminalHeight": 1, + "getFirstArgument": 1, + "REQUIRED": 1, + "VALUE_NONE": 7, + "descriptorspec": 2, + "process": 10, + "proc_open": 1, + "pipes": 4, + "is_resource": 1, + "stream_get_contents": 1, + "fclose": 2, + "proc_close": 1, + "namespacedCommands": 5, + "ksort": 2, + "limit": 3, + "parts": 4, + "array_pop": 1, + "array_slice": 1, + "callback": 5, + "findAlternatives": 3, + "lev": 6, + "levenshtein": 2, + "3": 1, + "/": 1, + "asort": 1, + "": 1, + "aMenuLinks": 1, + "Array": 13, + "Blog": 1, + "SITE_DIR": 4, + "Photos": 1, + "photo": 1, + "About": 1, + "me": 1, + "about": 1, + "Contact": 1, + "contacts": 1, + "BrowserKit": 1, + "Crawler": 2, + "Process": 1, + "PhpProcess": 2, + "abstract": 2, + "Client": 1, + "history": 15, + "cookieJar": 9, + "server": 20, + "crawler": 7, + "insulated": 7, + "followRedirects": 5, + "History": 2, + "CookieJar": 2, + "setServerParameters": 2, + "followRedirect": 4, + "insulate": 1, + "class_exists": 2, + "RuntimeException": 2, + "setServerParameter": 1, + "getServerParameter": 1, + "getHistory": 1, + "getCookieJar": 1, + "getCrawler": 1, + "getResponse": 1, + "getRequest": 1, + "click": 1, + "submit": 2, + "content": 4, + "changeHistory": 4, + "getAbsoluteUri": 2, + "isEmpty": 2, + "parse_url": 3, + "PHP_URL_HOST": 1, + "PHP_URL_SCHEME": 1, + "Request": 3, + "allValues": 1, + "filterRequest": 2, + "doRequestInProcess": 2, + "doRequest": 2, + "filterResponse": 2, + "updateFromResponse": 1, + "getHeader": 2, + "createCrawlerFromContent": 2, + "getContent": 2, + "getScript": 2, + "sys_get_temp_dir": 2, + "isSuccessful": 1, + "getOutput": 3, + "unserialize": 1, + "addContent": 1, + "back": 2, + "requestFromRequest": 4, + "forward": 2, + "reload": 1, + "restart": 1, + "clear": 2, + "PHP_URL_PATH": 1, + "path.": 1, + "getParameters": 1, + "getServer": 1, + "php_help": 1, + "arg": 1, + "php_permission": 1, + "TRUE": 1, + "php_eval": 1, + "global": 2, + "theme_path": 5, + "theme_info": 3, + "conf": 2, + "old_theme_path": 2, + "drupal_get_path": 1, + "dirname": 1, + "filename": 1, + "ob_start": 1, + "print": 1, + "eval": 1, + "ob_get_contents": 1, + "ob_end_clean": 1, + "_php_filter_tips": 1, + "filter": 1, + "long": 2, + "FALSE": 2, + "base_url": 1, + "php_filter_info": 1, + "filters": 2 }, "Pan": { "object": 1, @@ -51101,38 +51126,354 @@ "end.": 1 }, "Perl": { + "pod": 1, + "head1": 36, + "NAME": 6, + "Catalyst": 10, + "PSGI": 10, + "-": 868, + "How": 1, + "and": 85, + "work": 3, + "together": 2, + "SYNOPSIS": 6, + "The": 22, + "L": 34, + "": 3, + "specification": 3, + "defines": 2, + "an": 16, + "interface": 1, + "between": 4, + "web": 8, + "servers": 2, + "Perl": 9, + "based": 2, + "applications": 2, + "frameworks.": 1, + "It": 3, + "supports": 1, + "the": 143, + "writing": 1, + "of": 64, + "portable": 1, + "that": 33, + "can": 30, + "be": 36, + "run": 1, + "using": 5, + "various": 2, + "methods": 4, + "(": 925, + "as": 37, + "a": 85, + "standalone": 1, + "server": 2, + "or": 49, + "mod_perl": 3, + "FastCGI": 2, + "etc.": 3, + ")": 923, + ".": 125, + "": 3, + "is": 69, + "implementation": 1, + "for": 83, + "running": 1, + "applications.": 1, + "used": 12, + "to": 95, + "contain": 3, + "entire": 3, + "set": 12, + "C": 56, + "<<": 10, + "Engine": 1, + "XXXX": 1, + "classes": 2, + "handle": 3, + "environments": 1, + "e.g.": 2, + "CGI": 6, + "This": 27, + "has": 3, + "been": 1, + "changed": 1, + "in": 36, + "so": 4, + "all": 23, + "done": 2, + "by": 16, + "implementing": 1, + "s": 35, + "possible": 2, + "do": 12, + "it": 28, + "manually": 2, + "creating": 3, + "": 1, + "file": 49, + "root": 1, + "your": 20, + "application.": 1, + "head2": 34, + "Why": 3, + "would": 5, + "I": 68, + "want": 7, + "write": 2, + "my": 404, + "own": 4, + ".psgi": 7, + "Writing": 2, + "allows": 4, + "you": 44, + "use": 83, + "alternate": 1, + "": 1, + "command": 14, + "start": 7, + "application": 15, + "add": 9, + "extensions": 1, + "implement": 2, + "": 1, + "such": 6, + "": 1, + "": 1, + "simplest": 1, + "<.psgi>": 1, + "called": 4, + "": 1, + "strict": 18, + ";": 1193, + "warnings": 18, + "TestApp": 5, + "app": 2, + "psgi_app": 3, + "@_": 43, + "Note": 5, + "will": 9, + "apply": 3, + "number": 4, + "middleware": 2, + "components": 2, + "automatically": 2, + "these": 4, + "B": 76, + "": 1, + "not": 54, + "applied": 1, + "if": 276, + "create": 3, + "psgi": 2, + "yourself.": 2, + "Details": 1, + "found": 11, + "below.": 1, + "Additional": 1, + "information": 2, + "about": 4, + "files": 42, + "at": 4, + "": 1, + "What": 1, + "generates": 2, + "default": 19, + "which": 7, + "": 1, + "setting": 2, + "on": 25, + "wrapped": 1, + "": 1, + "contains": 2, + "some": 1, + "engine": 1, + "specific": 2, + "fixes": 1, + "uniform": 1, + "behaviour": 2, + "contained": 1, + "over": 2, + "item": 44, + "": 1, + "": 1, + "back": 4, + "If": 15, + "override": 1, + "providing": 2, + "then": 4, + "none": 1, + "things": 2, + "returned": 3, + "when": 18, + "call": 2, + "MyApp": 1, + "Thus": 1, + "need": 5, + "any": 4, + "this": 22, + "functionality": 1, + "ll": 1, + "An": 1, + "apply_default_middlewares": 2, + "method": 8, + "supplied": 1, + "wrap": 1, + "middlewares": 1, + "are": 25, + "file.": 3, + "means": 3, + "auto": 1, + "generated": 1, + "no": 22, + "code": 8, + "looks": 2, + "something": 3, + "like": 13, + "SEE": 4, + "ALSO": 4, + "": 1, + "": 1, + "AUTHORS": 2, + "Contributors": 1, + "see": 5, + "Catalyst.pm": 1, + "COPYRIGHT": 7, + "library": 2, + "free": 4, + "software.": 1, + "You": 4, + "redistribute": 4, + "and/or": 4, + "modify": 4, + "under": 5, + "same": 2, + "terms": 4, + "itself.": 3, + "cut": 28, + "SHEBANG#!#! perl": 4, + "o": 17, + "new": 55, + "Foo": 11, + "i": 26, + "..": 7, + "{": 1121, + "x": 7, + "[": 159, + "]": 155, + "y": 8, + "}": 1134, + "print": 35, "package": 14, + "sub": 225, + "self": 141, + "ref": 33, + "_": 101, + "shift": 165, + "return": 157, + "bless": 7, + "Bar": 1, + "n": 19, + "name": 44, + "@array": 1, + "%": 78, + "hash": 11, + "SHEBANG#!perl": 5, + "Fast": 3, + "XML": 2, + "Hash": 11, + "XS": 2, + "File": 54, + "Spec": 13, + "FindBin": 1, + "qw": 35, + "Bin": 3, + "#use": 1, + "lib": 2, + "catdir": 3, + "_stop": 4, + "request": 11, + "SIG": 3, + "exit": 16, + "unless": 39, + "defined": 54, + "ENV": 40, + "#": 99, + "nginx": 2, + "external": 2, + "fcgi": 2, + "Ext_Request": 1, + "FCGI": 1, + "Request": 11, + "*STDIN": 2, + "*STDOUT": 6, + "*STDERR": 1, + "int": 2, + "ARGV": 2, + "||": 49, + "conv": 2, + "use_attr": 1, + "indent": 1, + "output": 36, + "xml_decl": 1, + "tmpl_path": 2, + "|": 28, + "tmpl": 5, + "data": 3, + "nick": 1, + "tree": 2, + "example": 5, + "parent": 5, + "id": 6, + "third_party": 1, + "results": 8, + "artist_name": 2, + "venue": 2, + "event": 2, + "date": 2, + "while": 31, + "eval": 8, + "m": 17, + "/": 69, + "zA": 1, + "Z0": 1, + "+": 120, + "exists": 19, + "die": 38, + "e": 20, + "catfile": 4, + "qq": 18, + "Content": 2, + "type": 69, + "application/xml": 1, + "charset": 2, + "utf": 2, + "r": 14, + "hash2xml": 1, + "@": 38, + "text/html": 1, + "nError": 1, + "undef": 17, + "last": 17, + "M": 1, + "<": 15, + "system": 1, "App": 131, "Ack": 136, - ";": 1193, - "use": 83, - "warnings": 18, - "strict": 18, - "File": 54, "Next": 27, "Plugin": 2, "Basic": 10, - "head1": 36, - "NAME": 6, - "-": 868, "A": 2, "container": 1, - "for": 83, "functions": 2, - "the": 143, "ack": 38, "program": 6, "VERSION": 15, "Version": 1, - "cut": 28, "our": 34, - "COPYRIGHT": 7, "BEGIN": 7, - "{": 1121, - "}": 1134, "fh": 28, - "*STDOUT": 6, - "%": 78, "types": 26, "type_wanted": 20, "mappings": 29, @@ -51142,9 +51483,6 @@ "dir_sep_chars": 10, "is_cygwin": 6, "is_windows": 12, - "Spec": 13, - "(": 925, - ")": 923, "Glob": 4, "Getopt": 6, "Long": 6, @@ -51157,29 +51495,19 @@ "_sgbak": 2, "_build": 2, "actionscript": 2, - "[": 159, - "qw": 35, - "as": 37, "mxml": 2, - "]": 155, "ada": 4, "adb": 2, "ads": 2, "asm": 4, - "s": 35, "batch": 2, "bat": 2, "cmd": 2, "binary": 3, "q": 5, "Binary": 2, - "files": 42, - "defined": 54, - "by": 16, - "Perl": 9, "T": 2, "op": 2, - "default": 19, "off": 4, "tt": 4, "tt2": 2, @@ -51204,20 +51532,12 @@ "xsl": 2, "xslt": 2, "ent": 2, - "while": 31, - "my": 404, - "type": 69, "exts": 6, "each": 14, - "if": 276, - "ref": 33, "ext": 14, - "@": 38, "push": 30, - "_": 101, "mk": 2, "mak": 2, - "not": 54, "t": 18, "p": 9, "STDIN": 2, @@ -51225,42 +51545,24 @@ "eq": 31, "/MSWin32/": 2, "quotemeta": 5, - "catfile": 4, - "SYNOPSIS": 6, - "If": 15, - "you": 44, - "want": 7, - "to": 95, "know": 4, - "about": 4, "F": 24, "": 13, - "see": 5, - "file": 49, - "itself.": 3, "No": 4, "user": 4, "serviceable": 1, "parts": 1, "inside.": 1, - "is": 69, - "all": 23, - "that": 33, "should": 6, "this.": 1, "FUNCTIONS": 1, - "head2": 34, "read_ackrc": 4, "Reads": 1, "contents": 2, - "of": 64, ".ackrc": 1, - "and": 85, "returns": 4, "arguments.": 1, - "sub": 225, "@files": 12, - "ENV": 40, "ACKRC": 2, "@dirs": 4, "HOME": 4, @@ -51271,39 +51573,28 @@ "GLOB_TILDE": 2, "filename": 68, "&&": 83, - "e": 20, "open": 7, - "or": 49, - "die": 38, "@lines": 21, "/./": 2, - "/": 69, "s*#/": 2, "<$fh>": 4, "chomp": 3, "close": 19, "s/": 22, - "+": 120, "//": 9, - "return": 157, "get_command_line_options": 4, "Gets": 3, - "command": 14, "line": 20, "arguments": 2, "does": 10, - "specific": 2, "tweaking.": 1, "opt": 291, "pager": 19, "ACK_PAGER_COLOR": 7, - "||": 49, "ACK_PAGER": 5, "getopt_specs": 6, - "m": 17, "after_context": 16, "before_context": 18, - "shift": 165, "val": 26, "break": 14, "c": 5, @@ -51313,11 +51604,8 @@ "ACK_COLOR_FILENAME": 5, "ACK_COLOR_LINENO": 4, "column": 4, - "#": 99, "ignore": 7, - "this": 22, "option": 7, - "it": 28, "handled": 2, "beforehand": 2, "f": 25, @@ -51327,15 +51615,10 @@ "heading": 18, "h": 6, "H": 6, - "i": 26, "invert_file_match": 8, "lines": 19, "l": 17, "regex": 28, - "n": 19, - "o": 17, - "output": 36, - "undef": 17, "passthru": 9, "print0": 7, "Q": 7, @@ -51347,9 +51630,7 @@ "remove_dir_sep": 7, "delete": 10, "print_version_statement": 2, - "exit": 16, "show_help": 3, - "@_": 43, "show_help_types": 2, "require": 12, "Pod": 4, @@ -51361,11 +51642,8 @@ "wanted": 4, "no//": 2, "must": 5, - "be": 36, "later": 2, - "exists": 19, "else": 53, - "qq": 18, "Unknown": 2, "unshift": 4, "@ARGV": 12, @@ -51375,28 +51653,23 @@ "filetypes_supported": 5, "parser": 12, "Parser": 4, - "new": 55, "configure": 4, "getoptions": 4, "to_screen": 10, "defaults": 16, - "eval": 8, "Win32": 9, "Console": 2, "ANSI": 3, "key": 20, "value": 12, - "<": 15, "join": 5, "map": 10, "@ret": 10, "from": 19, "warn": 22, - "..": 7, "uniq": 4, "@uniq": 2, "sort": 8, - "a": 85, "<=>": 2, "b": 6, "keys": 15, @@ -51407,24 +51680,19 @@ "Go": 1, "through": 6, "look": 2, - "I": 68, "<--type-set>": 1, "foo=": 1, "bar": 3, "<--type-add>": 1, "xml=": 1, - ".": 125, "Remove": 1, "them": 5, - "add": 9, "supported": 1, "filetypes": 8, "i.e.": 2, "into": 6, - "etc.": 3, "@typedef": 8, "td": 6, - "set": 12, "Builtin": 4, "cannot": 4, "changed.": 4, @@ -51432,10 +51700,8 @@ "delete_type": 5, "Type": 2, "exist": 4, - "creating": 3, "with": 26, "...": 2, - "unless": 39, "@exts": 8, ".//": 2, "Cannot": 4, @@ -51444,7 +51710,6 @@ "internal": 1, "structures": 1, "containing": 5, - "information": 2, "type_wanted.": 1, "Internal": 2, "error": 4, @@ -51453,18 +51718,14 @@ "Standard": 1, "filter": 12, "pass": 1, - "L": 34, "": 1, "descend_filter.": 1, - "It": 3, "true": 3, "directory": 8, - "any": 4, "ones": 1, "we": 7, "ignore.": 1, "path": 28, - "This": 27, "removes": 1, "trailing": 1, "separator": 4, @@ -51478,20 +51739,13 @@ "could": 2, "be.": 1, "For": 5, - "example": 5, "": 1, - "The": 22, "filetype": 1, - "will": 9, - "C": 56, "": 1, - "can": 30, "skipped": 2, - "something": 3, "avoid": 1, "searching": 6, "even": 4, - "under": 5, "a.": 1, "constant": 2, "TEXT": 16, @@ -51500,12 +51754,9 @@ "is_searchable": 8, "lc_basename": 8, "lc": 5, - "r": 14, - "B": 76, "header": 17, "SHEBANG#!#!": 2, "ruby": 3, - "|": 28, "lua": 2, "erl": 2, "hp": 2, @@ -51526,16 +51777,12 @@ "found.": 4, "www": 2, "U": 2, - "y": 8, "tr/": 2, - "x": 7, "w/": 3, "nOo_/": 2, "_thpppt": 3, "_get_thpppt": 3, - "print": 35, "_bar": 3, - "<<": 10, "&": 22, "*I": 2, "g": 7, @@ -51545,14 +51792,8 @@ "#I": 6, "#7": 4, "results.": 2, - "on": 25, - "when": 18, - "used": 12, "interactively": 6, - "no": 22, "Print": 6, - "between": 4, - "results": 8, "different": 2, "files.": 6, "group": 2, @@ -51580,7 +51821,6 @@ "pipe": 4, "finding": 2, "Only": 7, - "found": 11, "without": 3, "searching.": 2, "PATTERN": 8, @@ -51592,13 +51832,10 @@ "lexically.": 3, "invert": 2, "Print/search": 2, - "handle": 3, - "do": 12, "g/": 2, "G.": 2, "show": 3, "Show": 2, - "which": 7, "has.": 2, "inclusion/exclusion": 2, "All": 4, @@ -51609,7 +51846,6 @@ "ignored": 6, "directories": 9, "unrestricted": 2, - "name": 44, "Add/Remove": 2, "dirs": 2, "R": 2, @@ -51634,7 +51870,6 @@ "@before": 16, "before_starts_at_line": 10, "after": 18, - "number": 4, "still": 4, "res": 59, "next_text": 8, @@ -51645,7 +51880,6 @@ "next": 9, "print_match_or_context": 13, "elsif": 10, - "last": 17, "max": 12, "nmatches": 61, "show_filename": 35, @@ -51699,10 +51933,8 @@ "print_count0": 2, "filetypes_supported_set": 9, "True/False": 1, - "are": 25, "print_files": 4, "iter": 23, - "returned": 3, "iterator": 3, "<$regex>": 1, "<$one>": 1, @@ -51710,7 +51942,6 @@ "first.": 1, "<$ors>": 1, "<\"\\n\">": 1, - "defines": 2, "what": 14, "filename.": 1, "print_files_with_matches": 4, @@ -51780,49 +52011,436 @@ "pipe.": 1, "exit_from_ack": 5, "Exit": 1, - "application": 15, "correct": 1, "code.": 2, "otherwise": 2, "handed": 1, - "in": 36, "argument.": 1, "rc": 11, "LICENSE": 3, "Copyright": 2, "Andy": 2, "Lester.": 2, - "free": 4, "software": 3, - "redistribute": 4, - "and/or": 4, - "modify": 4, - "terms": 4, "Artistic": 2, "License": 2, "v2.0.": 2, "End": 3, - "SHEBANG#!#! perl": 4, - "examples/benchmarks/fib.pl": 1, - "Fibonacci": 2, - "Benchmark": 1, + "Plack": 25, + "_001": 1, + "HTTP": 16, + "Headers": 8, + "Carp": 11, + "MultiValue": 9, + "Body": 2, + "Upload": 2, + "TempBuffer": 2, + "URI": 11, + "Escape": 6, + "_deprecated": 8, + "alt": 1, + "caller": 2, + "carp": 2, + "class": 8, + "env": 76, + "croak": 3, + "required": 2, + "address": 2, + "REMOTE_ADDR": 1, + "remote_host": 2, + "REMOTE_HOST": 1, + "protocol": 1, + "SERVER_PROTOCOL": 1, + "REQUEST_METHOD": 1, + "port": 1, + "SERVER_PORT": 2, + "REMOTE_USER": 1, + "request_uri": 1, + "REQUEST_URI": 2, + "path_info": 4, + "PATH_INFO": 3, + "script_name": 1, + "SCRIPT_NAME": 2, + "scheme": 3, + "secure": 2, + "body": 30, + "input": 9, + "content_length": 4, + "CONTENT_LENGTH": 3, + "content_type": 5, + "CONTENT_TYPE": 2, + "session": 1, + "session_options": 1, + "logger": 1, + "cookies": 9, + "HTTP_COOKIE": 3, + "@pairs": 2, + "pair": 4, + "uri_unescape": 1, + "query_parameters": 3, + "uri": 11, + "query_form": 2, + "content": 8, + "_parse_request_body": 4, + "cl": 10, + "read": 6, + "seek": 4, + "raw_body": 1, + "headers": 56, + "field": 2, + "HTTPS": 1, + "_//": 1, + "CONTENT": 1, + "COOKIE": 1, + "content_encoding": 5, + "referer": 3, + "user_agent": 3, + "body_parameters": 3, + "parameters": 8, + "query": 4, + "flatten": 3, + "uploads": 5, + "hostname": 1, + "url_scheme": 1, + "params": 1, + "query_params": 1, + "body_params": 1, + "cookie": 6, + "param": 8, + "wantarray": 3, + "get_all": 2, + "upload": 13, + "raw_uri": 1, + "base": 10, + "path_query": 1, + "_uri_base": 3, + "path_escape_class": 2, + "uri_escape": 3, + "QUERY_STRING": 3, + "canonical": 2, + "HTTP_HOST": 1, + "SERVER_NAME": 1, + "new_response": 4, + "Response": 16, + "ct": 3, + "cleanup": 1, + "buffer": 9, + "spin": 2, + "chunk": 4, + "length": 1, + "rewind": 1, + "from_mixed": 2, + "@uploads": 3, + "@obj": 3, + "splice": 2, + "_make_upload": 2, + "copy": 4, + "__END__": 2, + "Portable": 2, + "object": 6, + "app_or_middleware": 1, + "req": 28, + "finalize": 5, "DESCRIPTION": 4, - "Calculates": 1, - "Number": 1, - "": 1, - "unspecified": 1, - "fib": 4, - "N": 2, - "SEE": 4, - "ALSO": 4, - "": 1, - "SHEBANG#!perl": 5, + "": 2, + "provides": 1, + "consistent": 1, + "API": 2, + "objects": 2, + "across": 1, + "environments.": 1, + "CAVEAT": 1, + "module": 2, + "intended": 1, + "developers": 3, + "framework": 2, + "rather": 2, + "than": 5, + "users": 4, + "directly": 1, + "certainly": 2, + "recommended": 1, + "Apache": 2, + "yet": 1, + "too": 1, + "low": 1, + "level.": 1, + "re": 3, + "encouraged": 1, + "frameworks": 2, + "support": 2, + "": 1, + "modules": 1, + "": 1, + "provide": 1, + "higher": 1, + "level": 1, + "top": 1, + "PSGI.": 1, + "METHODS": 2, + "Some": 1, + "earlier": 1, + "versions": 1, + "deprecated": 1, + "Take": 1, + "": 1, + "Unless": 1, + "noted": 1, + "": 1, + "passing": 1, + "values": 5, + "accessor": 1, + "doesn": 8, + "debug": 1, + "set.": 1, + "": 2, + "request.": 1, + "uploads.": 2, + "": 2, + "": 1, + "objects.": 1, + "Shortcut": 6, + "content_encoding.": 1, + "content_length.": 1, + "content_type.": 1, + "header.": 2, + "referer.": 1, + "user_agent.": 1, + "GET": 1, + "POST": 1, + "CGI.pm": 2, + "compatible": 1, + "method.": 1, + "alternative": 1, + "accessing": 1, + "parameters.": 3, + "Unlike": 1, + "": 1, + "allow": 1, + "modifying": 1, + "@values": 1, + "@params": 1, + "convenient": 1, + "access": 2, + "@fields": 1, + "Creates": 2, + "": 3, + "object.": 4, + "Handy": 1, + "remove": 2, + "dependency": 1, + "easy": 1, + "subclassing": 1, + "duck": 1, + "typing": 1, + "well": 2, + "overriding": 1, + "generation": 1, + "middlewares.": 1, + "Parameters": 1, + "take": 5, + "multiple": 5, + "": 1, + "": 1, + "": 1, + "": 1, + "store": 1, + "plain": 2, + "": 1, + "scalars": 1, + "": 2, + "references": 1, + "don": 2, + "ARRAY": 1, + "foo": 6, + "parse": 1, + "more": 2, + "twice": 1, + "efficiency.": 1, + "DISPATCHING": 1, + "wants": 1, + "dispatch": 1, + "route": 1, + "actions": 1, + "paths": 3, + "sure": 1, + "because": 3, + "": 1, + "gives": 2, + "virtual": 1, + "regardless": 1, + "how": 1, + "mounted.": 1, + "hosted": 1, + "scripts": 1, + "multiplexed": 1, + "tools": 1, + "": 1, + "good": 2, + "idea": 1, + "subclass": 1, + "define": 1, + "uri_for": 2, + "args": 3, + "So": 1, + "say": 1, + "link": 1, + "signoff": 1, + "": 1, + "empty.": 1, + "older": 1, + "behavior": 3, + "just": 2, + "instead.": 1, + "Cookie": 2, + "handling": 1, + "simplified": 1, + "always": 5, + "string": 5, + "encoding": 2, + "decoding": 1, + "totally": 1, + "up": 1, + "framework.": 1, + "Also": 1, + "": 1, + "now": 1, + "": 1, + "Simple": 1, + "longer": 1, + "have": 2, + "wacky": 1, + "instead": 4, + "simply": 1, + "Tatsuhiko": 2, + "Miyagawa": 2, + "Kazuhiro": 1, + "Osawa": 1, + "Tokuhiro": 2, + "Matsuno": 2, + "": 1, + "": 1, + "Util": 3, + "Accessor": 1, + "status": 17, + "Scalar": 2, + "shortcut": 2, + "location": 4, + "redirect": 1, + "url": 2, + "clone": 1, + "_finalize_cookies": 2, + "/chr": 1, + "/ge": 1, + "replace": 3, + "LWS": 1, + "single": 1, + "SP": 1, + "//g": 1, + "CR": 1, + "LF": 1, + "since": 1, + "char": 1, + "invalid": 1, + "here": 2, + "header_field_names": 1, + "_body": 2, + "blessed": 1, + "overload": 1, + "Method": 1, + "_bake_cookie": 2, + "push_header": 1, + "@cookie": 7, + "domain": 3, + "_date": 2, + "expires": 7, + "httponly": 1, + "@MON": 1, + "Jan": 1, + "Feb": 1, + "Mar": 1, + "Apr": 1, + "May": 2, + "Jun": 1, + "Jul": 1, + "Aug": 1, + "Sep": 1, + "Oct": 1, + "Nov": 1, + "Dec": 1, + "@WDAY": 1, + "Sun": 1, + "Mon": 1, + "Tue": 1, + "Wed": 1, + "Thu": 1, + "Fri": 1, + "Sat": 1, + "sec": 2, + "min": 3, + "hour": 2, + "mday": 2, + "mon": 2, + "year": 3, + "wday": 2, + "gmtime": 1, + "sprintf": 1, + "WDAY": 1, + "MON": 1, + "response": 5, + "psgi_handler": 1, + "way": 2, + "simple": 2, + "API.": 1, + "Sets": 2, + "gets": 2, + "": 1, + "alias.": 2, + "response.": 1, + "Setter": 2, + "either": 2, + "headers.": 1, + "body_str": 1, + "io": 1, + "sets": 4, + "body.": 1, + "IO": 1, + "Handle": 1, + "": 1, + "X": 2, + "text/plain": 1, + "gzip": 1, + "normalize": 1, + "given": 10, + "string.": 1, + "Users": 1, + "responsible": 1, + "properly": 1, + "": 1, + "names": 1, + "their": 1, + "corresponding": 1, + "": 2, + "everything": 1, + "": 1, + "": 2, + "": 1, + "": 1, + "": 1, + "integer": 1, + "epoch": 1, + "time": 3, + "": 1, + "convert": 1, + "formats": 1, + "<+3M>": 1, + "reference.": 1, + "AUTHOR": 1, "MAIN": 1, "main": 3, "env_is_usable": 3, "th": 1, "pt": 1, - "env": 76, "@keys": 2, "ACK_/": 1, "@ENV": 1, @@ -51835,7 +52453,6 @@ "Resource": 5, "file_matching": 2, "check_regex": 2, - "like": 13, "finder": 1, "options": 7, "FILE...": 1, @@ -51846,38 +52463,29 @@ "": 5, "searches": 1, "named": 3, - "input": 9, "FILEs": 1, "standard": 1, - "given": 10, "PATTERN.": 1, "By": 2, "prints": 2, "also": 7, - "would": 5, "actually": 1, "let": 1, - "take": 5, "advantage": 1, ".wango": 1, "won": 1, "throw": 1, "away": 1, - "because": 3, "times": 2, "symlinks": 1, - "than": 5, "whatever": 1, "were": 1, "specified": 3, "line.": 4, "default.": 2, - "item": 44, "": 11, - "paths": 3, "included": 1, "search.": 1, - "entire": 3, "matched": 1, "against": 1, "shell": 4, @@ -51886,10 +52494,8 @@ "<-w>": 2, "<-v>": 3, "<-Q>": 4, - "apply": 3, "relative": 1, "convenience": 1, - "shortcut": 2, "<-f>": 6, "<--group>": 2, "<--nogroup>": 2, @@ -51906,7 +52512,6 @@ "<--no-filename>": 1, "Suppress": 1, "prefixing": 1, - "multiple": 5, "searched.": 1, "<--help>": 1, "short": 1, @@ -51923,38 +52528,28 @@ "options.": 4, "": 2, "etc": 2, - "May": 2, "directories.": 2, "mason": 1, - "users": 4, "may": 3, "wish": 1, "include": 1, "<--ignore-dir=data>": 1, "<--noignore-dir>": 1, - "allows": 4, "normally": 1, "perhaps": 1, "research": 1, "<.svn/props>": 1, - "always": 5, - "simple": 2, "name.": 1, "Nested": 1, "": 1, "NOT": 1, "supported.": 1, - "You": 4, - "need": 5, "specify": 1, "<--ignore-dir=foo>": 1, - "then": 4, - "foo": 6, "taken": 1, "account": 1, "explicitly": 1, "": 2, - "file.": 3, "Multiple": 1, "<--line>": 1, "comma": 1, @@ -51967,17 +52562,14 @@ "matter": 1, "<-l>": 2, "<--files-with-matches>": 1, - "instead": 4, "text.": 1, "<-L>": 1, "<--files-without-matches>": 1, - "": 2, "equivalent": 2, "specifying": 1, "Specify": 1, "explicitly.": 1, "helpful": 2, - "don": 2, "": 1, "via": 1, "": 4, @@ -51995,9 +52587,7 @@ "they": 1, "expression.": 1, "Highlighting": 1, - "work": 3, "though": 1, - "so": 4, "highlight": 1, "seeing": 1, "tail": 1, @@ -52010,9 +52600,7 @@ "usual": 1, "newline.": 1, "dealing": 1, - "contain": 3, "whitespace": 1, - "e.g.": 2, "html": 1, "xargs": 2, "rm": 1, @@ -52024,8 +52612,6 @@ "<-r>": 1, "<-R>": 1, "<--recurse>": 1, - "just": 2, - "here": 2, "compatibility": 2, "turning": 1, "<--no-recurse>": 1, @@ -52033,7 +52619,6 @@ "<--smart-case>": 1, "<--no-smart-case>": 1, "strings": 1, - "contains": 2, "uppercase": 1, "characters.": 1, "similar": 1, @@ -52044,7 +52629,6 @@ "<--sort-files>": 1, "Sorts": 1, "Use": 6, - "your": 20, "listings": 1, "deterministic": 1, "runs": 1, @@ -52058,7 +52642,6 @@ "Bill": 1, "Cat": 1, "logo.": 1, - "Note": 5, "exact": 1, "spelling": 1, "<--thpppppt>": 1, @@ -52067,7 +52650,6 @@ "perl": 8, "php": 2, "python": 1, - "looks": 2, "location.": 1, "variable": 1, "specifies": 1, @@ -52098,7 +52680,6 @@ "Underline": 1, "reset.": 1, "alone": 1, - "sets": 4, "foreground": 1, "on_color": 1, "background": 1, @@ -52111,7 +52692,6 @@ "See": 1, "": 1, "specifications.": 1, - "such": 6, "": 1, "": 1, "": 1, @@ -52119,12 +52699,10 @@ "output.": 1, "except": 1, "assume": 1, - "support": 2, "both": 1, "understands": 1, "sequences.": 1, "never": 1, - "back": 4, "ACK": 2, "OTHER": 1, "TOOLS": 1, @@ -52147,8 +52725,6 @@ "Phil": 1, "Jackson": 1, "put": 1, - "together": 2, - "an": 16, "": 1, "extension": 1, "": 1, @@ -52161,19 +52737,15 @@ "Code": 1, "greater": 1, "normal": 1, - "code": 8, "<$?=256>": 1, "": 1, "backticks.": 1, "errors": 1, "used.": 1, - "at": 4, "least": 1, "returned.": 1, "DEBUGGING": 1, "PROBLEMS": 1, - "gives": 2, - "re": 3, "expecting": 1, "forgotten": 1, "<--noenv>": 1, @@ -52188,9 +52760,6 @@ "working": 1, "big": 1, "codesets": 1, - "more": 2, - "create": 3, - "tree": 2, "ideal": 1, "sending": 1, "": 1, @@ -52207,7 +52776,6 @@ "loading": 1, "": 1, "took": 1, - "access": 2, "log": 3, "scanned": 1, "twice.": 1, @@ -52217,7 +52785,6 @@ "troublesome.gif": 1, "first": 1, "finds": 2, - "Apache": 2, "IP.": 1, "second": 1, "troublesome": 1, @@ -52236,10 +52803,7 @@ "tips": 1, "here.": 1, "FAQ": 1, - "Why": 3, "isn": 1, - "doesn": 8, - "behavior": 3, "driven": 1, "filetype.": 1, "": 1, @@ -52249,30 +52813,19 @@ "you.": 1, "source": 2, "compiled": 1, - "object": 6, "control": 1, "metadata": 1, "wastes": 1, "lot": 1, - "time": 3, "those": 2, - "well": 2, "returning": 1, - "things": 2, "great": 1, "did": 1, - "replace": 3, - "read": 6, "only.": 1, - "has": 3, "perfectly": 1, - "good": 2, - "way": 2, - "using": 5, "<-p>": 1, "<-n>": 1, "switches.": 1, - "certainly": 2, "select": 1, "update.": 1, "change": 1, @@ -52283,7 +52836,6 @@ "<.xyz>": 1, "already": 2, "program/package": 1, - "called": 4, "ack.": 2, "Yes": 1, "know.": 1, @@ -52324,38 +52876,29 @@ "@queue": 8, "_setup": 2, "fullpath": 12, - "splice": 2, "local": 5, - "wantarray": 3, "_candidate_files": 2, "sort_standard": 2, "cmp": 2, "sort_reverse": 1, "@parts": 3, "passed_parms": 6, - "copy": 4, "parm": 1, - "hash": 11, "badkey": 1, - "caller": 2, - "start": 7, "dh": 4, "opendir": 1, "@newfiles": 5, "sort_sub": 4, "readdir": 1, "has_stat": 3, - "catdir": 3, "closedir": 1, "": 1, - "these": 4, "updated": 1, "update": 1, "message": 1, "bak": 1, "core": 1, "swp": 1, - "min": 3, "js": 1, "1": 1, "str": 12, @@ -52365,544 +52908,26 @@ "_my_program": 3, "Basename": 2, "FAIL": 12, - "Carp": 11, "confess": 2, "@ISA": 2, - "class": 8, - "self": 141, - "bless": 7, "could_be_binary": 4, "opened": 1, - "id": 6, - "*STDIN": 2, "size": 5, "_000": 1, - "buffer": 9, "sysread": 1, "regex/m": 1, - "seek": 4, "readline": 1, "nexted": 3, - "CGI": 6, - "Fast": 3, - "XML": 2, - "Hash": 11, - "XS": 2, - "FindBin": 1, - "Bin": 3, - "#use": 1, - "lib": 2, - "_stop": 4, - "request": 11, - "SIG": 3, - "nginx": 2, - "external": 2, - "fcgi": 2, - "Ext_Request": 1, - "FCGI": 1, - "Request": 11, - "*STDERR": 1, - "int": 2, - "ARGV": 2, - "conv": 2, - "use_attr": 1, - "indent": 1, - "xml_decl": 1, - "tmpl_path": 2, - "tmpl": 5, - "data": 3, - "nick": 1, - "parent": 5, - "third_party": 1, - "artist_name": 2, - "venue": 2, - "event": 2, - "date": 2, - "zA": 1, - "Z0": 1, - "Content": 2, - "application/xml": 1, - "charset": 2, - "utf": 2, - "hash2xml": 1, - "text/html": 1, - "nError": 1, - "M": 1, - "system": 1, - "Foo": 11, - "Bar": 1, - "@array": 1, - "pod": 1, - "Catalyst": 10, - "PSGI": 10, - "How": 1, - "": 3, - "specification": 3, - "interface": 1, - "web": 8, - "servers": 2, - "based": 2, - "applications": 2, - "frameworks.": 1, - "supports": 1, - "writing": 1, - "portable": 1, - "run": 1, - "various": 2, - "methods": 4, - "standalone": 1, - "server": 2, - "mod_perl": 3, - "FastCGI": 2, - "": 3, - "implementation": 1, - "running": 1, - "applications.": 1, - "Engine": 1, - "XXXX": 1, - "classes": 2, - "environments": 1, - "been": 1, - "changed": 1, - "done": 2, - "implementing": 1, - "possible": 2, - "manually": 2, - "": 1, - "root": 1, - "application.": 1, - "write": 2, - "own": 4, - ".psgi": 7, - "Writing": 2, - "alternate": 1, - "": 1, - "extensions": 1, - "implement": 2, - "": 1, - "": 1, - "": 1, - "simplest": 1, - "<.psgi>": 1, - "": 1, - "TestApp": 5, - "app": 2, - "psgi_app": 3, - "middleware": 2, - "components": 2, - "automatically": 2, - "": 1, - "applied": 1, - "psgi": 2, - "yourself.": 2, - "Details": 1, - "below.": 1, - "Additional": 1, - "": 1, - "What": 1, - "generates": 2, - "": 1, - "setting": 2, - "wrapped": 1, - "": 1, - "some": 1, - "engine": 1, - "fixes": 1, - "uniform": 1, - "behaviour": 2, - "contained": 1, - "over": 2, - "": 1, - "": 1, - "override": 1, - "providing": 2, - "none": 1, - "call": 2, - "MyApp": 1, - "Thus": 1, - "functionality": 1, - "ll": 1, - "An": 1, - "apply_default_middlewares": 2, - "method": 8, - "supplied": 1, - "wrap": 1, - "middlewares": 1, - "means": 3, - "auto": 1, - "generated": 1, - "": 1, - "": 1, - "AUTHORS": 2, - "Contributors": 1, - "Catalyst.pm": 1, - "library": 2, - "software.": 1, - "same": 2, - "Plack": 25, - "_001": 1, - "HTTP": 16, - "Headers": 8, - "MultiValue": 9, - "Body": 2, - "Upload": 2, - "TempBuffer": 2, - "URI": 11, - "Escape": 6, - "_deprecated": 8, - "alt": 1, - "carp": 2, - "croak": 3, - "required": 2, - "address": 2, - "REMOTE_ADDR": 1, - "remote_host": 2, - "REMOTE_HOST": 1, - "protocol": 1, - "SERVER_PROTOCOL": 1, - "REQUEST_METHOD": 1, - "port": 1, - "SERVER_PORT": 2, - "REMOTE_USER": 1, - "request_uri": 1, - "REQUEST_URI": 2, - "path_info": 4, - "PATH_INFO": 3, - "script_name": 1, - "SCRIPT_NAME": 2, - "scheme": 3, - "secure": 2, - "body": 30, - "content_length": 4, - "CONTENT_LENGTH": 3, - "content_type": 5, - "CONTENT_TYPE": 2, - "session": 1, - "session_options": 1, - "logger": 1, - "cookies": 9, - "HTTP_COOKIE": 3, - "@pairs": 2, - "pair": 4, - "uri_unescape": 1, - "query_parameters": 3, - "uri": 11, - "query_form": 2, - "content": 8, - "_parse_request_body": 4, - "cl": 10, - "raw_body": 1, - "headers": 56, - "field": 2, - "HTTPS": 1, - "_//": 1, - "CONTENT": 1, - "COOKIE": 1, - "content_encoding": 5, - "referer": 3, - "user_agent": 3, - "body_parameters": 3, - "parameters": 8, - "query": 4, - "flatten": 3, - "uploads": 5, - "hostname": 1, - "url_scheme": 1, - "params": 1, - "query_params": 1, - "body_params": 1, - "cookie": 6, - "param": 8, - "get_all": 2, - "upload": 13, - "raw_uri": 1, - "base": 10, - "path_query": 1, - "_uri_base": 3, - "path_escape_class": 2, - "uri_escape": 3, - "QUERY_STRING": 3, - "canonical": 2, - "HTTP_HOST": 1, - "SERVER_NAME": 1, - "new_response": 4, - "Response": 16, - "ct": 3, - "cleanup": 1, - "spin": 2, - "chunk": 4, - "length": 1, - "rewind": 1, - "from_mixed": 2, - "@uploads": 3, - "@obj": 3, - "_make_upload": 2, - "__END__": 2, - "Portable": 2, - "app_or_middleware": 1, - "req": 28, - "finalize": 5, - "": 2, - "provides": 1, - "consistent": 1, - "API": 2, - "objects": 2, - "across": 1, - "environments.": 1, - "CAVEAT": 1, - "module": 2, - "intended": 1, - "developers": 3, - "framework": 2, - "rather": 2, - "directly": 1, - "recommended": 1, - "yet": 1, - "too": 1, - "low": 1, - "level.": 1, - "encouraged": 1, - "frameworks": 2, - "": 1, - "modules": 1, - "": 1, - "provide": 1, - "higher": 1, - "level": 1, - "top": 1, - "PSGI.": 1, - "METHODS": 2, - "Some": 1, - "earlier": 1, - "versions": 1, - "deprecated": 1, - "Take": 1, - "": 1, - "Unless": 1, - "noted": 1, - "": 1, - "passing": 1, - "values": 5, - "accessor": 1, - "debug": 1, - "set.": 1, - "": 2, - "request.": 1, - "uploads.": 2, - "": 2, - "": 1, - "objects.": 1, - "Shortcut": 6, - "content_encoding.": 1, - "content_length.": 1, - "content_type.": 1, - "header.": 2, - "referer.": 1, - "user_agent.": 1, - "GET": 1, - "POST": 1, - "CGI.pm": 2, - "compatible": 1, - "method.": 1, - "alternative": 1, - "accessing": 1, - "parameters.": 3, - "Unlike": 1, - "": 1, - "allow": 1, - "modifying": 1, - "@values": 1, - "@params": 1, - "convenient": 1, - "@fields": 1, - "Creates": 2, - "": 3, - "object.": 4, - "Handy": 1, - "remove": 2, - "dependency": 1, - "easy": 1, - "subclassing": 1, - "duck": 1, - "typing": 1, - "overriding": 1, - "generation": 1, - "middlewares.": 1, - "Parameters": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "store": 1, - "plain": 2, - "": 1, - "scalars": 1, - "references": 1, - "ARRAY": 1, - "parse": 1, - "twice": 1, - "efficiency.": 1, - "DISPATCHING": 1, - "wants": 1, - "dispatch": 1, - "route": 1, - "actions": 1, - "sure": 1, - "": 1, - "virtual": 1, - "regardless": 1, - "how": 1, - "mounted.": 1, - "hosted": 1, - "scripts": 1, - "multiplexed": 1, - "tools": 1, - "": 1, - "idea": 1, - "subclass": 1, - "define": 1, - "uri_for": 2, - "args": 3, - "So": 1, - "say": 1, - "link": 1, - "signoff": 1, - "": 1, - "empty.": 1, - "older": 1, - "instead.": 1, - "Cookie": 2, - "handling": 1, - "simplified": 1, - "string": 5, - "encoding": 2, - "decoding": 1, - "totally": 1, - "up": 1, - "framework.": 1, - "Also": 1, - "": 1, - "now": 1, - "": 1, - "Simple": 1, - "longer": 1, - "have": 2, - "wacky": 1, - "simply": 1, - "Tatsuhiko": 2, - "Miyagawa": 2, - "Kazuhiro": 1, - "Osawa": 1, - "Tokuhiro": 2, - "Matsuno": 2, - "": 1, - "": 1, - "Util": 3, - "Accessor": 1, - "status": 17, - "Scalar": 2, - "location": 4, - "redirect": 1, - "url": 2, - "clone": 1, - "_finalize_cookies": 2, - "/chr": 1, - "/ge": 1, - "LWS": 1, - "single": 1, - "SP": 1, - "//g": 1, - "CR": 1, - "LF": 1, - "since": 1, - "char": 1, - "invalid": 1, - "header_field_names": 1, - "_body": 2, - "blessed": 1, - "overload": 1, - "Method": 1, - "_bake_cookie": 2, - "push_header": 1, - "@cookie": 7, - "domain": 3, - "_date": 2, - "expires": 7, - "httponly": 1, - "@MON": 1, - "Jan": 1, - "Feb": 1, - "Mar": 1, - "Apr": 1, - "Jun": 1, - "Jul": 1, - "Aug": 1, - "Sep": 1, - "Oct": 1, - "Nov": 1, - "Dec": 1, - "@WDAY": 1, - "Sun": 1, - "Mon": 1, - "Tue": 1, - "Wed": 1, - "Thu": 1, - "Fri": 1, - "Sat": 1, - "sec": 2, - "hour": 2, - "mday": 2, - "mon": 2, - "year": 3, - "wday": 2, - "gmtime": 1, - "sprintf": 1, - "WDAY": 1, - "MON": 1, - "response": 5, - "psgi_handler": 1, - "API.": 1, - "Sets": 2, - "gets": 2, - "": 1, - "alias.": 2, - "response.": 1, - "Setter": 2, - "either": 2, - "headers.": 1, - "body_str": 1, - "io": 1, - "body.": 1, - "IO": 1, - "Handle": 1, - "": 1, - "X": 2, - "text/plain": 1, - "gzip": 1, - "normalize": 1, - "string.": 1, - "Users": 1, - "responsible": 1, - "properly": 1, - "": 1, - "names": 1, - "their": 1, - "corresponding": 1, - "": 2, - "everything": 1, - "": 1, - "": 2, - "": 1, - "": 1, - "": 1, - "integer": 1, - "epoch": 1, - "": 1, - "convert": 1, - "formats": 1, - "<+3M>": 1, - "reference.": 1, - "AUTHOR": 1 + "examples/benchmarks/fib.pl": 1, + "Fibonacci": 2, + "Benchmark": 1, + "Calculates": 1, + "Number": 1, + "": 1, + "unspecified": 1, + "fib": 4, + "N": 2, + "": 1 }, "Perl6": { "token": 6, @@ -52917,37 +52942,6 @@ "": 1, "#": 13, "N*": 1, - "role": 10, - "q": 5, - "stopper": 2, - "MAIN": 1, - "quote": 1, - ")": 19, - "backslash": 3, - "sym": 3, - "<\\\\>": 1, - "": 1, - "": 1, - "": 1, - "": 1, - ".": 1, - "method": 2, - "tweak_q": 1, - "(": 16, - "v": 2, - "self.panic": 2, - "tweak_qq": 1, - "qq": 5, - "does": 7, - "b1": 1, - "c1": 1, - "s1": 1, - "a1": 1, - "h1": 1, - "f1": 1, - "Too": 2, - "late": 2, - "for": 2, "SHEBANG#!perl": 1, "use": 1, "v6": 1, @@ -52965,21 +52959,26 @@ "multi": 2, "line": 5, "comment": 2, + "(": 16, + ")": 19, "I": 1, "there": 1, "m": 2, "even": 1, "specialer": 1, + "does": 7, "nesting": 1, "work": 1, "<": 3, "trying": 1, "mixed": 1, "delimiters": 1, + "qq": 5, "": 1, "arbitrary": 2, "delimiter": 2, "Hooray": 1, + "q": 5, "": 1, "with": 9, "whitespace": 1, @@ -52996,6 +52995,7 @@ "highlighted": 1, "table": 1, "Of": 1, + "role": 10, "things": 1, "A": 3, "single": 3, @@ -53027,7 +53027,32 @@ "/": 1, "": 1, "": 1, - "roleq": 1 + "roleq": 1, + "stopper": 2, + "MAIN": 1, + "quote": 1, + "backslash": 3, + "sym": 3, + "<\\\\>": 1, + "": 1, + "": 1, + "": 1, + "": 1, + ".": 1, + "method": 2, + "tweak_q": 1, + "v": 2, + "self.panic": 2, + "tweak_qq": 1, + "b1": 1, + "c1": 1, + "s1": 1, + "a1": 1, + "h1": 1, + "f1": 1, + "Too": 2, + "late": 2, + "for": 2 }, "Pike": { "#pike": 2, @@ -53700,191 +53725,29 @@ "-": 161, "module": 3, "(": 327, - "format_spec": 12, + "func": 13, "[": 87, - "format_error/2": 1, - "format_spec/2": 1, - "format_spec//1": 1, - "spec_arity/2": 1, - "spec_types/2": 1, - "]": 87, + "op": 2, + "xfy": 2, ")": 326, + "of": 8, + "/2": 3, + "]": 87, ".": 107, "use_module": 8, "library": 8, - "dcg/basics": 1, - "eos//0": 1, - "integer//1": 1, - "string_without//2": 1, - "error": 6, - "when": 3, - "when/2": 1, - "%": 71, - "mavis": 1, - "format_error": 8, - "+": 14, - "Goal": 29, - "Error": 25, - "string": 8, - "is": 12, - "nondet.": 1, - "format": 8, - "Format": 23, - "Args": 19, - "format_error_": 5, - "_": 30, - "debug": 4, - "Spec": 10, - "is_list": 1, - "spec_types": 8, - "Types": 16, - "types_error": 3, - "length": 4, - "TypesLen": 3, - "ArgsLen": 3, - "types_error_": 4, - "Arg": 6, - "|": 25, - "Type": 3, - "ground": 5, - "is_of_type": 2, - "message_to_string": 1, - "type_error": 1, - "_Location": 1, - "multifile": 2, - "check": 3, - "checker/2.": 2, - "dynamic": 2, - "checker": 3, - "format_fail/3.": 1, - "prolog_walk_code": 1, - "module_class": 1, - "user": 5, - "infer_meta_predicates": 1, - "false": 2, - "autoload": 1, - "format/": 1, - "{": 7, - "}": 7, - "are": 3, - "always": 1, - "loaded": 1, - "undefined": 1, - "ignore": 1, - "trace_reference": 1, - "on_trace": 1, - "check_format": 3, - "retract": 1, - "format_fail": 2, - "Location": 6, - "print_message": 1, - "warning": 1, - "fail.": 3, - "iterate": 1, - "all": 1, - "errors": 2, - "checker.": 1, - "succeed": 2, - "even": 1, - "if": 1, - "no": 1, - "found": 1, - "Module": 4, - "_Caller": 1, - "predicate_property": 1, - "imported_from": 1, - "Source": 2, - "memberchk": 2, - "system": 1, - "prolog_debug": 1, - "can_check": 2, - "assert": 2, - "to": 5, - "avoid": 1, - "printing": 1, - "goals": 1, - "once": 3, - "clause": 1, - "prolog": 2, - "message": 1, - "message_location": 1, - "//": 1, - "eos.": 1, - "escape": 2, - "Numeric": 4, - "Modifier": 2, - "Action": 15, - "Rest": 12, - "numeric_argument": 5, - "modifier_argument": 3, - "action": 6, - "text": 4, - "String": 6, - ";": 12, - "Codes": 21, - "string_codes": 4, - "string_without": 1, - "list": 4, - "semidet.": 3, - "text_codes": 6, - "phrase": 3, - "spec_arity": 2, - "FormatSpec": 2, - "Arity": 3, - "positive_integer": 1, - "det.": 4, - "type": 2, - "Item": 2, - "Items": 2, - "item_types": 3, - "numeric_types": 5, - "action_types": 18, - "number": 3, - "character": 2, - "star": 2, - "nothing": 2, - "atom_codes": 4, - "Code": 2, - "Text": 1, - "codes": 5, - "Var": 5, - "var": 4, - "Atom": 3, - "atom": 6, - "N": 5, - "integer": 7, - "C": 5, - "colon": 1, - "no_colon": 1, - "is_action": 4, - "multi.": 1, - "a": 4, - "d": 3, - "e": 1, - "float": 3, - "f": 1, - "G": 2, - "I": 1, - "n": 1, - "p": 1, - "any": 3, - "r": 1, - "s": 2, - "t": 1, - "W": 1, - "func": 13, - "op": 2, - "xfy": 2, - "of": 8, - "/2": 3, "list_util": 1, "xfy_list/3": 1, "function_expansion": 5, "arithmetic": 2, + "error": 6, "wants_func": 4, "prolog_load_context": 1, + "Module": 4, + "%": 71, "we": 1, "don": 1, + "s": 2, "used": 1, "at": 3, "compile": 3, @@ -53892,11 +53755,19 @@ "for": 1, "macro": 1, "expansion.": 1, + "multifile": 2, "compile_function/4.": 1, "compile_function": 8, + "Var": 5, + "_": 30, + "var": 4, + "fail.": 3, "Expr": 5, "In": 15, "Out": 16, + "is": 12, + "+": 14, + "string": 8, "evaluable/1": 1, "throws": 1, "exception": 1, @@ -53905,13 +53776,20 @@ "evaluable": 1, "term_variables": 1, "F": 26, + "Goal": 29, "function_composition_term": 2, + "user": 5, "Functor": 8, "true": 5, "..": 6, "format_template": 7, + "atom": 6, + "format": 8, + ";": 12, "has_type": 2, + "codes": 5, "fail": 1, + "to": 5, "be": 4, "explicit": 1, "Dict": 3, @@ -53919,10 +53797,12 @@ "get_dict": 1, "Function": 5, "Argument": 1, + "det.": 4, "Apply": 1, "an": 1, "Argument.": 1, "A": 1, + "any": 3, "predicate": 4, "whose": 2, "final": 1, @@ -53949,6 +53829,7 @@ "reverse": 4, "sort": 2, "c": 2, + "d": 3, "b": 4, "meta_predicate": 2, "throw": 1, @@ -53961,12 +53842,15 @@ "until": 1, "run": 1, "P": 2, + "G": 2, "Creates": 1, + "a": 4, "new": 2, "composing": 1, "G.": 1, "The": 1, "functions": 2, + "are": 3, "composed": 1, "create": 1, "compiled": 1, @@ -53979,6 +53863,12 @@ "also": 1, "applied": 1, "/2.": 1, + "Format": 23, + "semidet.": 3, + "atom_codes": 4, + "Codes": 21, + "string_codes": 4, + "memberchk": 2, "fix": 1, "syntax": 1, "highlighting": 1, @@ -53989,11 +53879,14 @@ "Op": 3, "xfy_list": 2, "thread_state": 4, + "|": 25, "Goals": 2, "Tmp": 3, "instantiation_error": 1, + "Args": 19, "append": 2, "NewArgs": 2, + "debug": 4, "variant_sha1": 1, "Sha": 2, "current_predicate": 1, @@ -54002,14 +53895,155 @@ "Threaded": 2, "Body": 2, "Head": 2, + "assert": 2, "compile_predicates": 1, "Output": 2, "compound": 1, "setof": 1, "arg": 1, + "Arg": 6, + "N": 5, "Name": 2, "Args0": 2, "nth1": 2, + "Rest": 12, + "format_spec": 12, + "format_error/2": 1, + "format_spec/2": 1, + "format_spec//1": 1, + "spec_arity/2": 1, + "spec_types/2": 1, + "dcg/basics": 1, + "eos//0": 1, + "integer//1": 1, + "string_without//2": 1, + "when": 3, + "when/2": 1, + "mavis": 1, + "format_error": 8, + "Error": 25, + "nondet.": 1, + "format_error_": 5, + "Spec": 10, + "is_list": 1, + "spec_types": 8, + "Types": 16, + "types_error": 3, + "length": 4, + "TypesLen": 3, + "ArgsLen": 3, + "types_error_": 4, + "Type": 3, + "ground": 5, + "is_of_type": 2, + "message_to_string": 1, + "type_error": 1, + "_Location": 1, + "check": 3, + "checker/2.": 2, + "dynamic": 2, + "checker": 3, + "format_fail/3.": 1, + "prolog_walk_code": 1, + "module_class": 1, + "infer_meta_predicates": 1, + "false": 2, + "autoload": 1, + "format/": 1, + "{": 7, + "}": 7, + "always": 1, + "loaded": 1, + "undefined": 1, + "ignore": 1, + "trace_reference": 1, + "on_trace": 1, + "check_format": 3, + "retract": 1, + "format_fail": 2, + "Location": 6, + "print_message": 1, + "warning": 1, + "iterate": 1, + "all": 1, + "errors": 2, + "checker.": 1, + "succeed": 2, + "even": 1, + "if": 1, + "no": 1, + "found": 1, + "_Caller": 1, + "predicate_property": 1, + "imported_from": 1, + "Source": 2, + "system": 1, + "prolog_debug": 1, + "can_check": 2, + "avoid": 1, + "printing": 1, + "goals": 1, + "once": 3, + "clause": 1, + "prolog": 2, + "message": 1, + "message_location": 1, + "//": 1, + "eos.": 1, + "escape": 2, + "Numeric": 4, + "Modifier": 2, + "Action": 15, + "numeric_argument": 5, + "modifier_argument": 3, + "action": 6, + "text": 4, + "String": 6, + "string_without": 1, + "list": 4, + "text_codes": 6, + "phrase": 3, + "spec_arity": 2, + "FormatSpec": 2, + "Arity": 3, + "positive_integer": 1, + "type": 2, + "Item": 2, + "Items": 2, + "item_types": 3, + "numeric_types": 5, + "action_types": 18, + "number": 3, + "character": 2, + "star": 2, + "nothing": 2, + "Code": 2, + "Text": 1, + "Atom": 3, + "integer": 7, + "C": 5, + "colon": 1, + "no_colon": 1, + "is_action": 4, + "multi.": 1, + "e": 1, + "float": 3, + "f": 1, + "I": 1, + "n": 1, + "p": 1, + "r": 1, + "t": 1, + "W": 1, + "male": 3, + "john": 2, + "peter": 3, + "female": 2, + "vick": 2, + "christie": 3, + "parents": 4, + "brother": 1, + "M": 2, "lib": 1, "ic": 1, "vabs": 2, @@ -54047,15 +54081,6 @@ "X8": 2, "X9": 2, "X10": 3, - "male": 3, - "john": 2, - "peter": 3, - "female": 2, - "vick": 2, - "christie": 3, - "parents": 4, - "brother": 1, - "M": 2, "turing": 1, "Tape0": 2, "Tape": 2, @@ -54081,21 +54106,20 @@ "L": 2 }, "Propeller Spin": { - "{": 26, - "*****************************************": 4, + "***************************************": 12, "*": 143, - "x4": 4, - "Keypad": 1, - "Reader": 1, - "v1.0": 4, + "VGA": 8, + "Driver": 4, + "v1.1": 8, "Author": 8, - "Beau": 2, - "Schwabe": 2, + "Chip": 7, + "Gracey": 7, "Copyright": 10, "(": 356, "c": 33, ")": 356, "Parallax": 10, + "Inc.": 8, "See": 10, "end": 12, "of": 108, @@ -54103,156 +54127,459 @@ "for": 70, "terms": 9, "use.": 9, - "}": 26, - "Operation": 2, - "This": 3, - "object": 7, - "uses": 2, - "a": 72, - "capacitive": 1, - "PIN": 1, - "approach": 1, - "to": 191, - "reading": 1, - "the": 136, - "keypad.": 1, - "To": 3, - "do": 26, - "so": 11, - "ALL": 2, - "pins": 26, - "are": 18, - "made": 2, - "LOW": 2, - "and": 95, - "an": 12, - "OUTPUT": 2, - "I/O": 3, - "pins.": 1, - "Then": 1, - "set": 42, - "INPUT": 2, - "state.": 1, - "At": 1, - "this": 26, - "point": 21, - "only": 63, - "one": 4, - "pin": 18, - "is": 51, - "HIGH": 3, - "at": 26, - "time.": 2, - "If": 2, - "closed": 1, - "then": 5, - "will": 12, - "be": 46, - "read": 29, - "on": 12, - "input": 2, - "otherwise": 1, - "returned.": 1, - "The": 17, - "keypad": 4, - "decoding": 1, - "routine": 1, - "requires": 3, - "two": 6, - "subroutines": 1, - "returns": 6, - "entire": 1, - "matrix": 1, - "into": 19, - "single": 2, - "WORD": 1, - "variable": 1, - "indicating": 1, - "which": 16, - "buttons": 2, - "pressed.": 1, - "Multiple": 1, - "button": 2, - "presses": 1, - "allowed": 1, - "with": 8, - "understanding": 1, - "that": 10, - "BOX": 2, - "entries": 1, + "-": 486, + "May": 2, + "pixel": 40, + "tile": 41, + "size": 5, "can": 4, - "confused.": 1, - "An": 1, - "example": 3, - "entry...": 1, - "or": 43, - "#": 97, - "etc.": 1, - "where": 2, - "any": 15, - "pressed": 3, - "evaluate": 1, - "non": 3, - "as": 8, - "being": 2, - "even": 1, - "when": 3, - "they": 2, - "not.": 1, - "There": 1, - "no": 7, - "danger": 1, - "physical": 1, - "electrical": 1, - "damage": 1, - "s": 16, - "just": 2, - "way": 1, - "sensing": 1, - "method": 2, - "happens": 1, - "work.": 1, - "Schematic": 1, - "No": 2, - "resistors": 4, - "capacitors.": 1, - "connections": 1, - "directly": 1, - "from": 21, - "Clear": 2, - "value": 51, - "ReadRow": 4, - "Shift": 3, - "left": 12, - "by": 17, - "preset": 1, - "P0": 2, - "P7": 2, - "LOWs": 1, - "dira": 3, - "[": 35, - "]": 34, - "make": 16, - "INPUTSs": 1, - "...": 5, "now": 3, - "act": 1, - "like": 4, - "tiny": 1, - "capacitors": 1, - "outa": 2, - "n": 4, - "Pin": 1, - "OUTPUT...": 1, - "Make": 1, - ";": 2, - "charge": 10, + "be": 46, + "x": 112, + "to": 191, + "enable": 5, + "more": 90, + "efficient": 2, + "vga_mode": 3, + "start": 16, + "colortable": 7, + "inside": 2, + "cog": 39, + "VAR": 10, + "long": 122, + "PUB": 63, + "vgaptr": 3, + "okay": 11, + "Start": 6, + "driver": 17, + "starts": 4, + "a": 72, + "returns": 6, + "false": 7, + "if": 53, + "no": 7, + "available": 4, + "pointer": 14, + "parameters": 19, + "stop": 9, + "cognew": 4, + "@entry": 3, "+": 759, - "ina": 3, - "Pn": 1, - "remain": 1, - "discharged": 1, + "Stop": 6, + "frees": 6, + "cogstop": 3, "DAT": 7, + "Assembly": 2, + "language": 2, + "Entry": 2, + "reset": 14, + "tasks": 6, + "mov": 154, + "#8": 14, + "Superfield": 2, + "set": 42, + "hv": 5, + "interlace": 20, + "#0": 20, + "get": 30, + "into": 19, + "nz": 3, + "field": 4, + "wrlong": 6, + "visible": 7, + "par": 20, + "do": 26, + "any": 15, + "back": 8, + "porch": 9, + "lines": 24, + "vb": 2, + "movd": 10, + "bcolor": 3, + "#colortable": 2, + "call": 44, + "#blank_line": 3, + "nobl": 1, + "screen": 13, + "_screen": 3, + "vertical": 29, + "tiles": 19, + "line": 33, + "vx": 2, + "_vx": 1, + "skip": 5, + "if_nz": 18, + "tjz": 8, + "#": 97, + "hb": 2, + "nobp": 1, + "horizontal": 21, + "vscl": 12, + "hx": 5, + "read": 29, + "add": 92, + "pixels": 14, + "rdlong": 16, + "colors": 18, + "color": 39, + "#2": 15, + "pass": 5, + "and": 95, + "video": 7, + "djnz": 24, + "repoint": 2, + "first": 9, + "in": 53, + "same": 7, + "hf": 2, + "nofp": 1, + "hsync": 5, + "#blank_hsync": 1, + "expand": 3, + "ror": 4, + "linerot": 5, + "point": 21, + "next": 16, + "y": 80, + "wc": 57, + "front": 4, + "vf": 1, + "nofl": 1, + "xor": 8, + "#1": 47, + "wz": 21, + "unless": 2, + "field1": 4, + "status": 15, + "invisible": 8, + "taskptr": 3, + "#tasks": 1, + "before": 1, + "after": 2, + "_vs": 2, + "except": 1, + "last": 6, + "#blank_vsync": 1, + "jmp": 24, + "#field": 1, + "else": 3, + "new": 6, + "superfield": 1, + "blank_vsync": 1, + "cmp": 16, + "blank": 2, + "or": 43, + "vsync": 4, + "if_nc": 15, + "h2": 2, + "if_c_and_nz": 1, + "%": 162, + "if_c": 37, + "waitvid": 3, + "task": 2, + "section": 4, + "z": 4, + "undisturbed": 2, + "blank_hsync": 1, + "_hf": 1, + "invisble": 1, + "sync": 10, + "_hb": 1, + "#hv": 1, + "blank_hsync_ret": 1, + "blank_line_ret": 1, + "blank_vsync_ret": 1, + "ret": 17, + "t1": 139, + "_status": 1, + "t2": 90, + "#paramcount": 1, + "load": 3, + "#4": 8, + "d0": 11, + "pins": 26, + "directions": 1, + "shl": 21, + "_pins": 4, + "_enable": 2, + "#disabled": 2, + "break": 6, + "return": 15, + "later": 6, + "min": 4, + "_rate": 3, + "pllmin": 1, + "_011": 1, + "adjust": 4, + "rate": 6, + "within": 5, + "MHz": 16, + "shr": 24, + "hvbase": 5, + "frqa": 3, + "make": 16, + "muxnc": 5, + "vmask": 1, + "test": 38, + "_mode": 7, + "hmask": 1, + "_hx": 4, + "_vt": 3, + "consider": 2, + "muxc": 5, + "lineadd": 4, + "lineinc": 3, + "movi": 3, + "vcfg": 2, + "_000": 5, + "/160": 2, + "#13": 3, + "times": 3, + "all": 14, + "loaded": 3, + "#9": 2, + "FC": 2, + "_colors": 2, + "colormask": 1, + "andn": 7, + "d6": 3, + "loop": 14, + "keep": 2, + "loading": 2, + "multiply": 8, + "multiply_ret": 2, + "Disabled": 2, + "nap": 5, + "ms": 4, + "try": 2, + "again": 2, + "ctra": 5, + "disabled": 3, + "#3": 7, + "cnt": 2, + "waitcnt": 3, + "#entry": 1, + "Initialized": 1, + "data": 47, + "pll": 5, + "lowest": 1, + "output": 11, + "frequency": 18, + "pllmax": 1, + "_000_000": 6, + "*16": 1, + "vco": 3, + "max": 6, + "m4": 1, + "Uninitialized": 3, + "taskret": 4, + "res": 89, + "Parameter": 4, + "buffer": 4, + "/non": 4, + "only": 63, + "tihv": 1, + "@long": 2, + "_ht": 2, + "_ho": 2, + "_hd": 1, + "_hs": 1, + "_vd": 1, + "fit": 2, + "underneath": 1, + "BF": 1, + "___": 1, + "/1/2": 1, + "off/visible/invisible": 1, + "vga_enable": 3, + "pppttt": 1, + "write": 36, + "words": 5, + "vga_colors": 2, + "vga_vt": 6, + "expansion": 8, + "vga_vx": 4, + "offset": 14, + "vga_vo": 4, + "display": 23, + "ticks": 11, + "vga_hf": 2, + "vga_hb": 2, + "vga_vf": 2, + "vga_vb": 2, + "tick": 2, + "Hz": 5, + "The": 17, + "preceding": 2, + "may": 6, + "copied": 2, + "your": 2, + "code.": 2, + "After": 2, + "setting": 2, + "variables": 3, + "@vga_status": 1, + "driver.": 3, + "All": 2, + "are": 18, + "reloaded": 2, + "each": 11, + "superframe": 2, + "allowing": 2, + "you": 5, + "live": 2, + "changes.": 2, + "To": 3, + "minimize": 2, + "flicker": 5, + "correlate": 2, + "changes": 3, + "with": 8, + "vga_status.": 1, + "Experimentation": 2, + "required": 4, + "optimize": 2, + "some": 3, + "parameters.": 2, + "descriptions": 2, + "__________": 4, + "vga_status": 1, + "sets": 3, + "this": 26, + "indicate": 2, + "CLKFREQ": 10, + "<": 14, + "currently": 4, + "outputting": 4, + "disable": 7, + "will": 12, + "driven": 2, + "low": 5, + "reduces": 2, + "power": 3, + "non": 3, + "________": 3, + "vga_pins": 1, + "bits": 29, + "select": 9, + "pin": 18, + "group": 7, + "top": 10, + "example": 3, + "use": 19, + "bit": 35, + "selects": 4, + "between": 4, + "x16": 7, + "x32": 6, + "tileheight": 4, + "controls": 4, + "progressive": 2, + "scan": 7, + "less": 5, + "good": 5, + "motion": 2, + "LCD": 4, + "monitors": 1, + "interlaced": 5, + "allows": 1, + "double": 2, + "text": 9, + "polarity": 1, + "respectively": 1, + "active": 3, + "high": 7, + "vga_screen": 1, + "which": 16, + "define": 10, + "contents": 3, + "left": 12, + "right": 9, + "bottom": 5, + "number": 27, + "must": 18, + "vga_ht": 3, + "word": 212, + "has": 4, + "two": 6, + "bitfields": 2, + "colorset": 2, + "ptr": 5, + "pixelgroup": 2, + "the": 136, + "colorset*": 2, + "associated": 11, + "pixelgroup**": 2, + "address": 16, + "ppppppppppcccc00": 2, + "p": 8, + "colorsets": 4, + "longs": 15, + "four": 8, + "**": 2, + "pixelgroups": 2, + "": 5, + "that": 10, + "up": 4, + "fields": 2, + "t": 10, + "care": 1, + "used": 9, + "it": 8, + "is": 51, + "suggested": 1, + "bits/pins": 3, + "red": 2, + "green": 1, + "blue": 3, + "bit/pin": 1, + "sum": 7, + "ohm": 10, + "resistors": 4, + "form": 7, + "V": 7, + "signals": 1, + "connect": 3, + "signal": 8, + "RED": 1, + "GREEN": 2, + "BLUE": 1, + "on": 12, + "connector": 3, + "always": 2, + "HSYNC": 1, + "via": 5, + "resistor": 4, + "VSYNC": 1, + "______": 14, + "at": 26, + "least": 14, + "vga_hx": 3, + "factor": 4, + "sure": 4, + "||": 5, + "vga_ho": 2, + "equal": 1, + "than": 5, + "vga_hd": 2, + "does": 2, + "not": 6, + "exceed": 1, + "vga_vd": 2, + "/": 27, + "pos/neg": 4, + "value": 51, + "recommended": 2, + "shifts": 4, + "right/left": 2, + "up/down": 2, + "vga_hs": 1, + "vga_vs": 1, + "vga_rate": 2, + "limit": 4, + "KHz": 3, + "should": 1, + "{": 26, "TERMS": 9, "OF": 49, "USE": 19, @@ -54262,22 +54589,20 @@ "hereby": 9, "granted": 9, "free": 10, + "charge": 10, "person": 9, "obtaining": 9, "copy": 21, "software": 9, - "associated": 11, "documentation": 9, "files": 9, "deal": 9, - "in": 53, "Software": 28, "without": 19, "restriction": 9, "including": 9, "limitation": 9, "rights": 9, - "use": 19, "modify": 9, "merge": 9, "publish": 9, @@ -54290,6 +54615,7 @@ "persons": 9, "whom": 9, "furnished": 9, + "so": 11, "subject": 9, "following": 9, "conditions": 9, @@ -54299,7 +54625,6 @@ "permission": 9, "shall": 9, "included": 9, - "all": 14, "substantial": 9, "portions": 9, "Software.": 9, @@ -54354,6 +54679,123 @@ "WITH": 10, "DEALINGS": 10, "SOFTWARE.": 10, + "}": 26, + "TV": 9, + "Text": 1, + "x13": 2, + "v1.0": 4, + "CON": 4, + "cols": 5, + "rows": 4, + "screensize": 4, + "lastrow": 2, + "tv_count": 2, + "col": 9, + "row": 4, + "flag": 5, + "[": 35, + "]": 34, + "tv_status": 4, + "off/on": 3, + "tv_pins": 5, + "tccip": 3, + "chroma": 19, + "ntsc/pal": 3, + "tv_screen": 5, + "tv_ht": 5, + "tv_hx": 5, + "tv_ho": 5, + "tv_broadcast": 4, + "aural": 13, + "fm": 6, + "OBJ": 2, + "tv": 2, + "basepin": 3, + "terminal": 4, + "setcolors": 2, + "@palette": 1, + "out": 24, + "longmove": 2, + "@tv_status": 3, + "@tv_params": 1, + "&": 21, + "<<": 70, + "|": 22, + "@screen": 3, + "tv_colors": 2, + "@colors": 2, + "tv.start": 1, + "tv.stop": 2, + "str": 3, + "stringptr": 3, + "Print": 15, + "zero": 10, + "terminated": 4, + "string": 8, + "repeat": 18, + "strsize": 2, + "byte": 27, + "dec": 3, + "i": 24, + "decimal": 5, + "_000_000_000": 2, + "//": 4, + "result": 6, + "elseif": 2, + "hex": 3, + "digits": 23, + "hexadecimal": 4, + "lookupz": 2, + "F": 18, + "..": 4, + "bin": 3, + "binary": 4, + "k": 1, + "Output": 1, + "character": 6, + "clear": 5, + "home": 4, + "backspace": 1, + "tab": 3, + "spaces": 1, + "per": 4, + "X": 4, + "position": 9, + "follows": 4, + "B": 15, + "Y": 2, + "C": 11, + "D": 18, + "others": 1, + "printable": 1, + "characters": 1, + "case": 5, + "wordfill": 2, + "print": 2, + "while": 5, + "A..": 1, + "newline": 3, + "other": 1, + "colorptr": 2, + "fore": 3, + "Override": 1, + "default": 1, + "palette": 2, + "list": 1, + "arranged": 3, + "as": 8, + "scroll": 1, + "hc": 1, + "ho": 1, + "broadcast": 19, + "white": 2, + "dark": 2, + "BB": 1, + "yellow": 1, + "brown": 1, + "cyan": 3, + "E": 7, + "pink": 1, "****************************************": 4, "Debug_Lcd": 1, "v1.2": 2, @@ -54362,57 +54804,38 @@ "Williams": 2, "Jeff": 2, "Martin": 2, - "Inc.": 8, "Debugging": 1, "wrapper": 1, "Serial_Lcd": 1, - "-": 486, + "object": 7, "March": 1, "Updated": 4, + "by": 17, "conform": 1, "Propeller": 3, "initialization": 2, "standards.": 1, - "v1.1": 8, "April": 1, "consistency.": 1, - "OBJ": 2, "lcd": 2, - "number": 27, - "string": 8, "conversion": 1, - "PUB": 63, "init": 2, "baud": 2, - "lines": 24, - "okay": 11, "Initializes": 1, "serial": 1, - "LCD": 4, "true": 6, - "if": 53, - "parameters": 19, "lcd.init": 1, "finalize": 1, "Finalizes": 1, - "frees": 6, "floats": 1, "lcd.finalize": 1, "putc": 1, "txbyte": 2, "Send": 1, - "byte": 27, - "terminal": 4, "lcd.putc": 1, - "str": 3, "strAddr": 2, - "Print": 15, - "zero": 10, - "terminated": 4, "lcd.str": 8, - "dec": 3, "signed": 4, - "decimal": 5, "num.dec": 1, "decf": 1, "width": 9, @@ -54420,36 +54843,26 @@ "space": 1, "padded": 2, "fixed": 1, - "field": 4, "num.decf": 1, "decx": 1, - "digits": 23, "negative": 2, "num.decx": 1, - "hex": 3, - "hexadecimal": 4, "num.hex": 1, "ihex": 1, + "an": 12, "indicated": 2, "num.ihex": 1, - "bin": 3, - "binary": 4, "num.bin": 1, "ibin": 1, - "%": 162, "num.ibin": 1, "cls": 1, "Clears": 2, "moves": 1, "cursor": 9, - "home": 4, - "position": 9, "lcd.cls": 1, "Moves": 2, "lcd.home": 1, "gotoxy": 1, - "col": 9, - "line": 33, "col/line": 1, "lcd.gotoxy": 1, "clrln": 1, @@ -54459,51 +54872,38 @@ "off": 8, "blink": 4, "lcd.cursor": 1, - "display": 23, - "status": 15, "Controls": 1, "visibility": 1, - "false": 7, + ";": 2, "hide": 1, - "contents": 3, "clearing": 1, "lcd.displayOn": 1, - "else": 3, "lcd.displayOff": 1, "custom": 2, "char": 2, "chrDataAddr": 3, "Installs": 1, - "character": 6, "map": 1, - "address": 16, "definition": 9, "array": 1, "lcd.custom": 1, "backLight": 1, "Enable": 1, - "disable": 7, "backlight": 1, "affects": 1, "backlit": 1, "models": 1, "lcd.backLight": 1, - "***************************************": 12, "Graphics": 3, - "Driver": 4, - "Chip": 7, - "Gracey": 7, "Theory": 1, - "cog": 39, + "Operation": 2, "launched": 1, "processes": 1, "commands": 1, - "via": 5, "routines.": 1, "Points": 1, "arcs": 1, "sprites": 1, - "text": 9, "polygons": 1, "rasterized": 1, "specified": 1, @@ -54516,12 +54916,9 @@ "displayed": 1, "TV.SRC": 1, "VGA.SRC": 1, - "driver.": 3, "GRAPHICS_DEMO.SRC": 1, "usage": 1, "example.": 1, - "CON": 4, - "#1": 47, "_setup": 1, "_color": 2, "_width": 2, @@ -54537,85 +54934,51 @@ "_textmode": 2, "_fill": 1, "_loop": 5, - "VAR": 10, - "long": 122, "command": 7, "bitmap_base": 7, - "pixel": 40, - "data": 47, "slices": 3, "text_xs": 1, "text_ys": 1, "text_sp": 1, "text_just": 1, "font": 3, - "pointer": 14, - "same": 7, "instances": 1, - "stop": 9, - "cognew": 4, "@loop": 1, "@command": 1, - "Stop": 6, "graphics": 4, - "driver": 17, - "cogstop": 3, "setup": 3, "x_tiles": 9, "y_tiles": 9, "x_origin": 2, "y_origin": 2, "base_ptr": 3, - "|": 22, "bases_ptr": 3, "slices_ptr": 1, "Set": 5, - "x": 112, - "tiles": 19, - "x16": 7, - "pixels": 14, - "each": 11, - "y": 80, "relative": 2, "center": 10, "base": 6, "setcommand": 13, - "write": 36, "bases": 2, - "<<": 70, "retain": 2, - "high": 7, "level": 5, "bitmap_longs": 1, - "clear": 5, + "Clear": 2, "dest_ptr": 2, "Copy": 1, - "double": 2, "buffered": 1, - "flicker": 5, "destination": 1, - "color": 39, - "bit": 35, "pattern": 2, "code": 3, - "bits": 29, - "@colors": 2, - "&": 21, "determine": 2, "shape/width": 2, "w": 8, - "F": 18, "pixel_width": 1, "pixel_passes": 2, "@w": 1, "update": 7, - "new": 6, - "repeat": 18, - "i": 24, - "p": 8, - "E": 7, + "from": 21, "r": 4, - "<": 14, "colorwidth": 1, "plot": 17, "Plot": 3, @@ -54634,8 +54997,9 @@ "FFF": 3, "..359.956": 3, "step": 9, + "just": 2, "leaves": 1, - "between": 4, + "s": 16, "points": 2, "vec": 1, "vecscale": 5, @@ -54646,8 +55010,8 @@ "scale": 7, "rotation": 3, "Vector": 2, - "word": 212, "length": 4, + "...": 5, "vecarc": 2, "pix": 3, "pixrot": 3, @@ -54660,23 +55024,18 @@ "string_ptr": 6, "justx": 2, "justy": 3, - "it": 8, - "may": 6, "necessary": 1, - "call": 44, ".finish": 1, "immediately": 1, "afterwards": 1, "prevent": 1, "subsequent": 1, "clobbering": 1, + "being": 2, "drawn": 1, "@justx": 1, "@x_scale": 1, - "get": 30, "half": 2, - "min": 4, - "max": 6, "pmin": 1, "round/square": 1, "corners": 1, @@ -54690,12 +55049,12 @@ "tri": 2, "x3": 4, "y3": 5, + "x4": 4, "y4": 1, "x1": 5, "y1": 7, "xy": 1, "solid": 1, - "/": 27, "finish": 2, "Wait": 2, "current": 3, @@ -54703,10 +55062,8 @@ "safe": 1, "manually": 1, "manipulate": 1, - "while": 5, "primitives": 1, "xa0": 53, - "start": 16, "ya1": 3, "ya2": 1, "ya3": 2, @@ -54750,14 +55107,11 @@ "arc/line": 1, "Round": 1, "recipes": 1, - "C": 11, - "D": 18, "fline": 88, "xa2": 48, "xb2": 26, "xa1": 8, "xb1": 2, - "more": 90, "xa3": 8, "xb3": 6, "xb4": 35, @@ -54775,7 +55129,6 @@ "a8": 8, "@": 1, "a4": 3, - "B": 15, "H": 1, "J": 1, "L": 5, @@ -54784,8 +55137,6 @@ "R": 3, "T": 5, "aA": 5, - "V": 7, - "X": 4, "Z": 1, "b": 1, "d": 2, @@ -54793,35 +55144,20 @@ "h": 2, "j": 2, "l": 2, - "t": 10, + "n": 4, "v": 1, - "z": 4, "delta": 10, "bullet": 1, "fx": 1, "*************************************": 2, "org": 2, - "loop": 14, - "rdlong": 16, - "t1": 139, - "par": 20, - "wz": 21, "arguments": 1, - "mov": 154, - "t2": 90, "t3": 10, - "#8": 14, "arg": 3, "arg0": 12, - "add": 92, - "d0": 11, - "#4": 8, - "djnz": 24, - "wrlong": 6, "dx": 20, "dy": 15, "arg1": 3, - "ror": 4, "#16": 6, "jump": 1, "jumps": 6, @@ -54839,7 +55175,6 @@ "arg3": 12, "basesptr": 4, "arg5": 6, - "jmp": 24, "#loop": 9, "width_": 1, "pwidth": 3, @@ -54848,15 +55183,12 @@ "line_": 1, "#linepd": 2, "arg7": 6, - "#3": 7, - "cmp": 16, "exit": 5, "px": 14, "py": 11, "mode": 7, "if_z": 11, "#plotp": 3, - "test": 38, "arg4": 5, "iterations": 1, "vecdef": 1, @@ -54868,15 +55200,10 @@ "sumc": 4, "#multiply": 2, "round": 1, - "up": 4, "/2": 1, "lsb": 1, - "shr": 24, "t4": 7, - "if_nc": 15, "h8000": 5, - "wc": 57, - "if_c": 37, "xwords": 1, "ywords": 1, "xxxxxxxx": 2, @@ -54885,22 +55212,15 @@ "sy": 5, "rdbyte": 3, "origin": 1, - "adjust": 4, "neg": 2, "sub": 12, "arg2": 7, "sumnc": 7, - "if_nz": 18, "yline": 1, "sx": 4, - "#0": 20, - "next": 16, - "#2": 15, - "shl": 21, "t5": 4, "xpixel": 2, "rol": 1, - "muxc": 5, "pcolor": 5, "color1": 2, "color2": 2, @@ -54909,8 +55229,6 @@ "text_": 1, "chr": 4, "done": 3, - "scan": 7, - "tjz": 8, "def": 2, "extract": 4, "_0001_1": 1, @@ -54926,9 +55244,7 @@ "_0111_0": 1, "setd_ret": 1, "fontxy_ret": 1, - "ret": 17, "fontb": 1, - "multiply": 8, "fontb_ret": 1, "textmode_": 1, "textsp": 2, @@ -54937,7 +55253,6 @@ "db2": 1, "linechange": 1, "lines_minus_1": 1, - "right": 9, "fractions": 1, "pre": 1, "increment": 1, @@ -54948,10 +55263,8 @@ "base1": 10, "sar": 8, "cmps": 3, - "out": 24, "range": 2, "ylongs": 6, - "skip": 5, "mins": 1, "mask": 3, "mask0": 8, @@ -54961,10 +55274,7 @@ "mask1": 6, "bits0": 6, "bits1": 5, - "pass": 5, - "not": 6, "full": 3, - "longs": 15, "deltas": 1, "linepd": 1, "wr": 2, @@ -54972,7 +55282,6 @@ "abs": 1, "dominant": 2, "axis": 1, - "last": 6, "ratio": 1, "xloop": 1, "linepd_ret": 1, @@ -54986,20 +55295,17 @@ "pair": 1, "account": 1, "special": 1, - "case": 5, - "andn": 7, "slice": 7, "shift0": 1, "colorize": 1, "upper": 2, "subx": 1, "#wslice": 1, - "offset": 14, "Get": 2, "args": 5, + "then": 5, "move": 2, "using": 1, - "first": 9, "arg6": 1, "arcmod_ret": 1, "arg2/t4": 1, @@ -55013,7 +55319,6 @@ "sine_90": 2, "sine": 7, "quadrant": 3, - "nz": 3, "negate": 2, "table": 9, "sine_table": 1, @@ -55033,402 +55338,181 @@ "fontptr": 1, "Undefined": 2, "temps": 1, - "res": 89, "pointers": 2, "slicesptr": 1, "line/plot": 1, "coordinates": 1, - "Inductive": 1, - "Sensor": 1, - "Demo": 1, - "Test": 2, - "Circuit": 1, - "pF": 1, - "K": 4, - "M": 1, - "FPin": 2, - "SDF": 1, - "sigma": 3, - "feedback": 2, - "SDI": 1, - "GND": 4, - "Coils": 1, - "Wire": 1, - "used": 9, - "was": 2, - "GREEN": 2, - "about": 4, - "gauge": 1, - "Coke": 3, - "Can": 3, - "form": 7, - "MHz": 16, - "BIC": 1, - "pen": 1, - "How": 1, - "does": 2, - "work": 2, - "Note": 1, - "reported": 2, - "resonate": 5, - "frequency": 18, - "LC": 8, - "frequency.": 2, - "Instead": 1, - "voltage": 5, - "produced": 1, - "circuit": 5, - "clipped.": 1, - "In": 2, - "below": 4, - "When": 1, - "you": 5, - "apply": 1, - "small": 1, - "specific": 1, - "near": 1, - "uncommon": 1, - "measure": 1, - "times": 3, - "amount": 1, - "applying": 1, - "circuit.": 1, - "through": 1, - "diode": 2, - "basically": 1, - "feeds": 1, - "divide": 3, - "divider": 1, - "...So": 1, - "order": 1, - "see": 2, - "ADC": 2, - "sweep": 2, - "result": 6, - "output": 11, - "needs": 1, - "generate": 1, - "Volts": 1, - "ground.": 1, - "drop": 1, - "across": 1, - "since": 1, - "sensitive": 1, - "works": 1, - "after": 2, - "divider.": 1, - "typical": 1, - "magnitude": 1, - "applied": 2, - "might": 1, - "look": 2, - "something": 1, - "*****": 4, - "...With": 1, - "looks": 1, - "X****": 1, - "...The": 1, - "denotes": 1, - "location": 1, - "reason": 1, - "slightly": 1, - "reasons": 1, - "really.": 1, - "lazy": 1, - "I": 1, - "didn": 1, - "acts": 1, - "dead": 1, - "short.": 1, - "situation": 1, - "exactly": 1, - "great": 1, - "gr.start": 2, - "gr.setup": 2, - "FindResonateFrequency": 1, - "DisplayInductorValue": 2, - "Freq.Synth": 1, - "FValue": 1, - "ADC.SigmaDelta": 1, - "@FTemp": 1, - "gr.clear": 1, - "gr.copy": 2, - "display_base": 2, - "Option": 2, - "Start": 6, - "*********************************************": 2, - "Frequency": 1, - "LowerFrequency": 2, - "*100/": 1, - "UpperFrequency": 1, - "gr.colorwidth": 4, - "gr.plot": 3, - "gr.line": 3, - "FTemp/1024": 1, - "Finish": 1, - "PS/2": 1, - "Keyboard": 1, - "v1.0.1": 2, + "Terminal": 1, "REVISION": 2, "HISTORY": 2, "/15/2006": 2, - "Tool": 1, - "par_tail": 1, - "key": 4, - "buffer": 4, - "head": 1, - "par_present": 1, - "states": 1, - "par_keys": 1, - "******************************************": 2, - "entry": 1, - "movd": 10, - "#_dpin": 1, - "masks": 1, - "dmask": 4, - "_dpin": 3, - "cmask": 2, - "_cpin": 2, - "reset": 14, - "parameter": 14, - "_head": 6, - "_present/_states": 1, - "dlsb": 2, - "stat": 6, - "Update": 1, - "_head/_present/_states": 1, - "#1*4": 1, - "scancode": 2, - "state": 2, - "#receive": 1, - "AA": 1, - "extended": 1, - "if_nc_and_z": 2, - "F0": 3, - "unknown": 2, - "ignore": 2, - "#newcode": 1, - "_states": 2, - "set/clear": 1, - "#_states": 1, - "reg": 5, - "muxnc": 5, - "cmpsub": 4, - "shift/ctrl/alt/win": 1, - "pairs": 1, - "E0": 1, - "handle": 1, - "scrlock/capslock/numlock": 1, - "_000": 5, - "_locks": 5, - "#29": 1, - "change": 3, - "configure": 3, - "flag": 5, - "leds": 3, - "check": 5, - "shift1": 1, - "if_nz_and_c": 4, - "#@shift1": 1, - "@table": 1, - "#look": 1, - "alpha": 1, - "considering": 1, - "capslock": 1, - "if_nz_and_nc": 1, - "xor": 8, - "flags": 1, - "alt": 1, - "room": 1, - "valid": 2, - "enter": 1, - "FF": 3, - "#11*4": 1, - "wrword": 1, - "F3": 1, - "keyboard": 3, - "lock": 1, - "#transmit": 2, - "rev": 1, - "rcl": 2, - "_present": 2, - "#update": 1, - "Lookup": 2, - "perform": 2, - "lookup": 1, - "movs": 9, - "#table": 1, - "#27": 1, - "#rand": 1, - "Transmit": 1, - "pull": 2, - "clock": 4, - "low": 5, - "napshr": 3, - "#13": 3, - "#18": 2, - "release": 1, - "transmit_bit": 1, - "#wait_c0": 2, - "_d2": 1, - "wcond": 3, - "c1": 2, - "c0d0": 2, - "wait": 6, - "until": 3, - "#wait": 2, - "#receive_ack": 1, - "ack": 1, - "error": 1, - "#reset": 2, - "transmit_ret": 1, - "receive": 1, - "receive_bit": 1, - "pause": 1, - "us": 1, - "#nap": 1, - "_d3": 1, - "#receive_bit": 1, - "align": 1, - "isolate": 1, - "look_ret": 1, - "receive_ack_ret": 1, - "receive_ret": 1, - "wait_c0": 1, - "c0": 1, - "timeout": 1, - "ms": 4, - "wloop": 1, - "required": 4, - "_d4": 1, - "replaced": 1, - "c0/c1/c0d0/c1d1": 1, - "if_never": 1, - "replacements": 1, - "#wloop": 3, - "if_c_or_nz": 1, - "c1d1": 1, - "if_nc_or_z": 1, - "nap": 5, - "scales": 1, - "time": 7, - "snag": 1, - "cnt": 2, - "elapses": 1, - "nap_ret": 1, - "F9": 1, - "F5": 1, - "D2": 1, - "F1": 2, - "D1": 1, - "F12": 1, - "F10": 1, - "D7": 1, - "F6": 1, - "D3": 1, - "Tab": 2, - "Alt": 2, - "F3F2": 1, - "q": 1, - "Win": 2, - "Space": 2, - "Apps": 1, - "Power": 1, - "Sleep": 1, - "EF2F": 1, - "CapsLock": 1, - "Enter": 3, - "WakeUp": 1, - "BackSpace": 1, - "C5E1": 1, - "C0E4": 1, - "Home": 1, - "Insert": 1, - "C9EA": 1, - "Down": 1, - "E5": 1, - "Right": 1, - "C2E8": 1, - "Esc": 1, - "DF": 2, - "F11": 1, - "EC": 1, - "PageDn": 1, - "ED": 1, - "PrScr": 1, - "C6E9": 1, - "ScrLock": 1, - "D6": 1, - "Uninitialized": 3, - "_________": 5, - "Key": 1, - "Codes": 1, - "keypress": 1, - "keystate": 2, - "E0..FF": 1, - "AS": 1, - "TV": 9, - "May": 2, - "tile": 41, - "size": 5, - "enable": 5, - "efficient": 2, + "instead": 1, + "method": 2, + "minimum": 2, + "x_scale": 4, + "x_spacing": 4, + "normal": 1, + "x_chr": 2, + "y_chr": 5, + "y_scale": 3, + "y_spacing": 3, + "y_offset": 2, + "x_limit": 2, + "x_screen": 1, + "y_limit": 3, + "y_screen": 4, + "y_max": 3, + "y_screen_bytes": 2, + "y_scroll": 2, + "y_scroll_longs": 4, + "y_clear": 2, + "y_clear_longs": 2, + "paramcount": 1, + "ccinp": 1, + "swap": 2, + "tv_hc": 1, + "cells": 1, + "cell": 1, + "@bitmap": 1, + "FC0": 1, + "gr.start": 2, + "gr.setup": 2, + "gr.textmode": 1, + "gr.width": 1, + "gr.stop": 1, + "schemes": 1, + "gr.color": 1, + "gr.text": 1, + "@c": 1, + "gr.finish": 2, + "PRI": 1, + "longfill": 2, + "tvparams": 1, + "tvparams_pins": 1, + "_0101": 1, + "vc": 1, + "vo": 1, + "_250_000": 2, + "auralcog": 1, + "color_schemes": 1, + "BC_6C_05_02": 1, + "E_0D_0C_0A": 1, + "E_6D_6C_6A": 1, + "BE_BD_BC_BA": 1, + "*****************************************": 4, + "Keypad": 1, + "Reader": 1, + "Beau": 2, + "Schwabe": 2, + "This": 3, + "uses": 2, + "capacitive": 1, + "PIN": 1, + "approach": 1, + "reading": 1, + "keypad.": 1, + "ALL": 2, + "made": 2, + "LOW": 2, + "OUTPUT": 2, + "I/O": 3, + "pins.": 1, + "Then": 1, + "INPUT": 2, + "state.": 1, + "At": 1, + "one": 4, + "HIGH": 3, + "time.": 2, + "If": 2, + "closed": 1, + "input": 2, + "otherwise": 1, + "returned.": 1, + "keypad": 4, + "decoding": 1, + "routine": 1, + "requires": 3, + "subroutines": 1, + "entire": 1, + "matrix": 1, + "single": 2, + "WORD": 1, + "variable": 1, + "indicating": 1, + "buttons": 2, + "pressed.": 1, + "Multiple": 1, + "button": 2, + "presses": 1, + "allowed": 1, + "understanding": 1, + "BOX": 2, + "entries": 1, + "confused.": 1, + "An": 1, + "entry...": 1, + "etc.": 1, + "where": 2, + "pressed": 3, + "evaluate": 1, + "even": 1, + "when": 3, + "they": 2, + "not.": 1, + "There": 1, + "danger": 1, + "physical": 1, + "electrical": 1, + "damage": 1, + "way": 1, + "sensing": 1, + "happens": 1, + "work.": 1, + "Schematic": 1, + "No": 2, + "capacitors.": 1, + "connections": 1, + "directly": 1, + "ReadRow": 4, + "Shift": 3, + "preset": 1, + "P0": 2, + "P7": 2, + "LOWs": 1, + "dira": 3, + "INPUTSs": 1, + "act": 1, + "like": 4, + "tiny": 1, + "capacitors": 1, + "outa": 2, + "Pin": 1, + "OUTPUT...": 1, + "Make": 1, + "ina": 3, + "Pn": 1, + "remain": 1, + "discharged": 1, "tv_mode": 2, "NTSC": 11, "lntsc": 3, "cycles": 4, - "per": 4, - "sync": 10, "fpal": 2, "_433_618": 2, "PAL": 10, "spal": 3, - "colortable": 7, - "inside": 2, "tvptr": 3, - "starts": 4, - "available": 4, - "@entry": 3, - "Assembly": 2, - "language": 2, - "Entry": 2, - "tasks": 6, "#10": 2, - "Superfield": 2, - "_mode": 7, - "interlace": 20, "vinv": 2, - "hsync": 5, - "waitvid": 3, "burst": 2, "sync_high2": 2, - "task": 2, - "section": 4, - "undisturbed": 2, "black": 2, - "visible": 7, - "vb": 2, "leftmost": 1, - "_vt": 3, - "vertical": 29, - "expand": 3, "vert": 1, - "vscl": 12, - "hb": 2, - "horizontal": 21, - "hx": 5, - "colors": 18, - "screen": 13, - "video": 7, - "repoint": 2, - "hf": 2, - "linerot": 5, - "field1": 4, - "unless": 2, - "invisible": 8, + "movs": 9, "if_z_eq_c": 1, "#hsync": 1, - "vsync": 4, "pulses": 2, "vsync1": 2, "#sync_low1": 1, @@ -55442,7 +55526,6 @@ "phaseflip": 4, "phasemask": 2, "sync_scale1": 1, - "blank": 2, "hsync_ret": 1, "vsync_high": 1, "#sync_high1": 1, @@ -55450,68 +55533,32 @@ "performed": 1, "sections": 1, "during": 2, - "back": 8, - "porch": 9, - "load": 3, "#_enable": 1, - "_pins": 4, - "_enable": 2, - "#disabled": 2, - "break": 6, - "return": 15, - "later": 6, "rd": 1, "#wtab": 1, "ltab": 1, "#ltab": 1, - "CLKFREQ": 10, "cancel": 1, "_broadcast": 4, "m8": 3, "jmpret": 5, - "taskptr": 3, - "taskret": 4, - "ctra": 5, - "pll": 5, "fcolor": 4, "#divide": 2, - "vco": 3, - "movi": 3, "_111": 1, "ctrb": 4, - "limit": 4, "m128": 2, "_100": 1, - "within": 5, "_001": 1, "frqb": 2, - "swap": 2, "broadcast/baseband": 1, "strip": 3, - "chroma": 19, "baseband": 18, "_auralcog": 1, - "_hx": 4, - "consider": 2, - "lineadd": 4, - "lineinc": 3, - "/160": 2, - "loaded": 3, - "#9": 2, - "FC": 2, - "_colors": 2, "colorreg": 3, - "d6": 3, "colorloop": 1, - "keep": 2, - "loading": 2, + "divide": 3, "m1": 4, - "multiply_ret": 2, - "Disabled": 2, - "try": 2, - "again": 2, "reload": 1, - "_000_000": 6, "d0s1": 1, "F0F0F0F0": 1, "pins0": 1, @@ -55534,124 +55581,36 @@ "sync_scale2": 1, "_00000000_01_10101010101010_0101": 1, "m2": 1, - "Parameter": 4, - "/non": 4, - "tccip": 3, - "_screen": 3, - "@long": 2, - "_ht": 2, - "_ho": 2, - "fit": 2, "contiguous": 1, - "tv_status": 4, - "off/on": 3, - "tv_pins": 5, - "ntsc/pal": 3, - "tv_screen": 5, - "tv_ht": 5, - "tv_hx": 5, - "expansion": 8, - "tv_ho": 5, - "tv_broadcast": 4, - "aural": 13, - "fm": 6, - "preceding": 2, - "copied": 2, - "your": 2, - "code.": 2, - "After": 2, - "setting": 2, - "variables": 3, - "@tv_status": 3, - "All": 2, - "reloaded": 2, - "superframe": 2, - "allowing": 2, - "live": 2, - "changes.": 2, - "minimize": 2, - "correlate": 2, - "changes": 3, "tv_status.": 1, - "Experimentation": 2, - "optimize": 2, - "some": 3, - "parameters.": 2, - "descriptions": 2, - "sets": 3, - "indicate": 2, - "disabled": 3, + "_________": 5, "tv_enable": 2, "requirement": 2, - "currently": 4, - "outputting": 4, - "driven": 2, - "reduces": 2, - "power": 3, "_______": 2, - "select": 9, - "group": 7, "_0111": 6, - "broadcast": 19, "_1111": 6, "_0000": 4, - "active": 3, - "top": 10, "nibble": 4, - "bottom": 5, - "signal": 8, - "arranged": 3, "attach": 1, - "ohm": 10, - "resistor": 4, - "sum": 7, "/560/1100": 2, "subcarrier": 3, "network": 1, + "below": 4, "visual": 1, "carrier": 1, - "selects": 4, - "x32": 6, - "tileheight": 4, - "controls": 4, "mixing": 2, "mix": 2, "black/white": 2, "composite": 1, - "progressive": 2, - "less": 5, - "good": 5, - "motion": 2, - "interlaced": 5, "doubles": 1, "format": 1, - "ticks": 11, - "must": 18, - "least": 14, "_318_180": 1, "_579_545": 1, - "Hz": 5, "_734_472": 1, "itself": 1, - "words": 5, - "define": 10, "tv_vt": 3, - "has": 4, - "bitfields": 2, - "colorset": 2, - "ptr": 5, - "pixelgroup": 2, - "colorset*": 2, - "pixelgroup**": 2, - "ppppppppppcccc00": 2, - "colorsets": 4, - "four": 8, - "**": 2, - "pixelgroups": 2, - "": 5, - "tv_colors": 2, - "fields": 2, "values": 2, + "valid": 2, "luminance": 2, "modulation": 4, "adds/subtracts": 1, @@ -55662,33 +55621,25 @@ "toggling": 1, "levels": 1, "because": 1, + "look": 2, "abruptly": 1, "rather": 1, + "change": 3, "against": 1, - "white": 2, "background": 1, "best": 1, "appearance": 1, "_____": 6, "practical": 2, "/30": 1, - "factor": 4, - "sure": 4, - "||": 5, - "than": 5, "tv_vx": 2, "tv_vo": 2, - "pos/neg": 4, "centered": 2, "image": 2, - "shifts": 4, - "right/left": 2, - "up/down": 2, "____________": 1, "expressed": 1, "ie": 1, "channel": 1, - "_250_000": 2, "modulator": 2, "turned": 2, "saves": 2, @@ -55698,224 +55649,7 @@ "supply": 1, "selected": 1, "bandwidth": 2, - "KHz": 3, "vary": 1, - "Terminal": 1, - "instead": 1, - "minimum": 2, - "x_scale": 4, - "x_spacing": 4, - "normal": 1, - "x_chr": 2, - "y_chr": 5, - "y_scale": 3, - "y_spacing": 3, - "y_offset": 2, - "x_limit": 2, - "x_screen": 1, - "y_limit": 3, - "y_screen": 4, - "y_max": 3, - "y_screen_bytes": 2, - "y_scroll": 2, - "y_scroll_longs": 4, - "y_clear": 2, - "y_clear_longs": 2, - "paramcount": 1, - "ccinp": 1, - "tv_hc": 1, - "cells": 1, - "cell": 1, - "@bitmap": 1, - "FC0": 1, - "gr.textmode": 1, - "gr.width": 1, - "tv.stop": 2, - "gr.stop": 1, - "schemes": 1, - "tab": 3, - "gr.color": 1, - "gr.text": 1, - "@c": 1, - "gr.finish": 2, - "newline": 3, - "strsize": 2, - "_000_000_000": 2, - "//": 4, - "elseif": 2, - "lookupz": 2, - "..": 4, - "PRI": 1, - "longmove": 2, - "longfill": 2, - "tvparams": 1, - "tvparams_pins": 1, - "_0101": 1, - "vc": 1, - "vx": 2, - "vo": 1, - "auralcog": 1, - "color_schemes": 1, - "BC_6C_05_02": 1, - "E_0D_0C_0A": 1, - "E_6D_6C_6A": 1, - "BE_BD_BC_BA": 1, - "Text": 1, - "x13": 2, - "cols": 5, - "rows": 4, - "screensize": 4, - "lastrow": 2, - "tv_count": 2, - "row": 4, - "tv": 2, - "basepin": 3, - "setcolors": 2, - "@palette": 1, - "@tv_params": 1, - "@screen": 3, - "tv.start": 1, - "stringptr": 3, - "k": 1, - "Output": 1, - "backspace": 1, - "spaces": 1, - "follows": 4, - "Y": 2, - "others": 1, - "printable": 1, - "characters": 1, - "wordfill": 2, - "print": 2, - "A..": 1, - "other": 1, - "colorptr": 2, - "fore": 3, - "Override": 1, - "default": 1, - "palette": 2, - "list": 1, - "scroll": 1, - "hc": 1, - "ho": 1, - "dark": 2, - "blue": 3, - "BB": 1, - "yellow": 1, - "brown": 1, - "cyan": 3, - "red": 2, - "pink": 1, - "VGA": 8, - "vga_mode": 3, - "vgaptr": 3, - "hv": 5, - "bcolor": 3, - "#colortable": 2, - "#blank_line": 3, - "nobl": 1, - "_vx": 1, - "nobp": 1, - "nofp": 1, - "#blank_hsync": 1, - "front": 4, - "vf": 1, - "nofl": 1, - "#tasks": 1, - "before": 1, - "_vs": 2, - "except": 1, - "#blank_vsync": 1, - "#field": 1, - "superfield": 1, - "blank_vsync": 1, - "h2": 2, - "if_c_and_nz": 1, - "blank_hsync": 1, - "_hf": 1, - "invisble": 1, - "_hb": 1, - "#hv": 1, - "blank_hsync_ret": 1, - "blank_line_ret": 1, - "blank_vsync_ret": 1, - "_status": 1, - "#paramcount": 1, - "directions": 1, - "_rate": 3, - "pllmin": 1, - "_011": 1, - "rate": 6, - "hvbase": 5, - "frqa": 3, - "vmask": 1, - "hmask": 1, - "vcfg": 2, - "colormask": 1, - "waitcnt": 3, - "#entry": 1, - "Initialized": 1, - "lowest": 1, - "pllmax": 1, - "*16": 1, - "m4": 1, - "tihv": 1, - "_hd": 1, - "_hs": 1, - "_vd": 1, - "underneath": 1, - "BF": 1, - "___": 1, - "/1/2": 1, - "off/visible/invisible": 1, - "vga_enable": 3, - "pppttt": 1, - "vga_colors": 2, - "vga_vt": 6, - "vga_vx": 4, - "vga_vo": 4, - "vga_hf": 2, - "vga_hb": 2, - "vga_vf": 2, - "vga_vb": 2, - "tick": 2, - "@vga_status": 1, - "vga_status.": 1, - "__________": 4, - "vga_status": 1, - "________": 3, - "vga_pins": 1, - "monitors": 1, - "allows": 1, - "polarity": 1, - "respectively": 1, - "vga_screen": 1, - "vga_ht": 3, - "care": 1, - "suggested": 1, - "bits/pins": 3, - "green": 1, - "bit/pin": 1, - "signals": 1, - "connect": 3, - "RED": 1, - "BLUE": 1, - "connector": 3, - "always": 2, - "HSYNC": 1, - "VSYNC": 1, - "______": 14, - "vga_hx": 3, - "vga_ho": 2, - "equal": 1, - "vga_hd": 2, - "exceed": 1, - "vga_vd": 2, - "recommended": 2, - "vga_hs": 1, - "vga_vs": 1, - "vga_rate": 2, - "should": 1, "Vocal": 2, "Tract": 2, "October": 1, @@ -55993,20 +55727,24 @@ "percentage": 3, "pace": 3, "go": 1, + "time": 7, "Queue": 1, "transition": 1, "over": 2, + "see": 2, "Load": 1, "bytemove": 1, "@frames": 1, "index": 5, "Increment": 1, "Returns": 4, + "parameter": 14, "queue": 2, "useful": 2, "checking": 1, "would": 1, "have": 1, + "wait": 6, "frames": 2, "empty": 2, "detecting": 1, @@ -56042,6 +55780,7 @@ "Loop": 1, "sample": 2, "period": 1, + "perform": 2, "cycle": 1, "driving": 1, "h80000000": 2, @@ -56103,12 +55842,14 @@ "par_curr": 3, "absolute": 1, "msb": 2, + "rcl": 2, "nr": 1, "mult": 2, "par_step": 1, "frame_cnt": 2, "step1": 2, "stepi": 1, + "check": 5, "stepframe": 1, "#frame_bytes": 1, "par_next": 2, @@ -56139,6 +55880,7 @@ "cordic_a": 1, "cordic_delta": 2, "linear": 1, + "feedback": 2, "register": 1, "B901476": 1, "greater": 1, @@ -56166,7 +55908,290 @@ "assembly": 1, "area": 1, "w/ret": 1, - "cordic_ret": 1 + "cordic_ret": 1, + "PS/2": 1, + "Keyboard": 1, + "v1.0.1": 2, + "work": 2, + "Tool": 1, + "par_tail": 1, + "key": 4, + "head": 1, + "par_present": 1, + "states": 1, + "par_keys": 1, + "******************************************": 2, + "entry": 1, + "#_dpin": 1, + "masks": 1, + "dmask": 4, + "_dpin": 3, + "cmask": 2, + "_cpin": 2, + "_head": 6, + "_present/_states": 1, + "dlsb": 2, + "stat": 6, + "Update": 1, + "_head/_present/_states": 1, + "#1*4": 1, + "scancode": 2, + "state": 2, + "#receive": 1, + "AA": 1, + "extended": 1, + "if_nc_and_z": 2, + "F0": 3, + "unknown": 2, + "ignore": 2, + "#newcode": 1, + "_states": 2, + "set/clear": 1, + "#_states": 1, + "reg": 5, + "cmpsub": 4, + "shift/ctrl/alt/win": 1, + "pairs": 1, + "E0": 1, + "handle": 1, + "scrlock/capslock/numlock": 1, + "_locks": 5, + "#29": 1, + "configure": 3, + "leds": 3, + "shift1": 1, + "if_nz_and_c": 4, + "#@shift1": 1, + "@table": 1, + "#look": 1, + "alpha": 1, + "considering": 1, + "capslock": 1, + "if_nz_and_nc": 1, + "flags": 1, + "alt": 1, + "room": 1, + "enter": 1, + "FF": 3, + "#11*4": 1, + "wrword": 1, + "F3": 1, + "keyboard": 3, + "lock": 1, + "#transmit": 2, + "rev": 1, + "_present": 2, + "#update": 1, + "Lookup": 2, + "lookup": 1, + "#table": 1, + "#27": 1, + "#rand": 1, + "Transmit": 1, + "pull": 2, + "clock": 4, + "napshr": 3, + "#18": 2, + "release": 1, + "transmit_bit": 1, + "#wait_c0": 2, + "_d2": 1, + "wcond": 3, + "c1": 2, + "c0d0": 2, + "until": 3, + "#wait": 2, + "#receive_ack": 1, + "ack": 1, + "error": 1, + "#reset": 2, + "transmit_ret": 1, + "receive": 1, + "receive_bit": 1, + "pause": 1, + "us": 1, + "#nap": 1, + "_d3": 1, + "#receive_bit": 1, + "align": 1, + "isolate": 1, + "look_ret": 1, + "receive_ack_ret": 1, + "receive_ret": 1, + "wait_c0": 1, + "c0": 1, + "timeout": 1, + "wloop": 1, + "_d4": 1, + "replaced": 1, + "c0/c1/c0d0/c1d1": 1, + "if_never": 1, + "replacements": 1, + "#wloop": 3, + "if_c_or_nz": 1, + "c1d1": 1, + "if_nc_or_z": 1, + "scales": 1, + "snag": 1, + "elapses": 1, + "nap_ret": 1, + "F9": 1, + "F5": 1, + "D2": 1, + "F1": 2, + "D1": 1, + "F12": 1, + "F10": 1, + "D7": 1, + "F6": 1, + "D3": 1, + "Tab": 2, + "Alt": 2, + "F3F2": 1, + "q": 1, + "Win": 2, + "Space": 2, + "Apps": 1, + "Power": 1, + "Sleep": 1, + "EF2F": 1, + "CapsLock": 1, + "Enter": 3, + "WakeUp": 1, + "BackSpace": 1, + "C5E1": 1, + "C0E4": 1, + "Home": 1, + "Insert": 1, + "C9EA": 1, + "Down": 1, + "E5": 1, + "Right": 1, + "C2E8": 1, + "Esc": 1, + "DF": 2, + "F11": 1, + "EC": 1, + "PageDn": 1, + "ED": 1, + "PrScr": 1, + "C6E9": 1, + "ScrLock": 1, + "D6": 1, + "Key": 1, + "Codes": 1, + "keypress": 1, + "keystate": 2, + "E0..FF": 1, + "AS": 1, + "Inductive": 1, + "Sensor": 1, + "Demo": 1, + "Test": 2, + "Circuit": 1, + "pF": 1, + "K": 4, + "M": 1, + "FPin": 2, + "SDF": 1, + "sigma": 3, + "SDI": 1, + "GND": 4, + "Coils": 1, + "Wire": 1, + "was": 2, + "about": 4, + "gauge": 1, + "Coke": 3, + "Can": 3, + "BIC": 1, + "pen": 1, + "How": 1, + "Note": 1, + "reported": 2, + "resonate": 5, + "LC": 8, + "frequency.": 2, + "Instead": 1, + "voltage": 5, + "produced": 1, + "circuit": 5, + "clipped.": 1, + "In": 2, + "When": 1, + "apply": 1, + "small": 1, + "specific": 1, + "near": 1, + "uncommon": 1, + "measure": 1, + "amount": 1, + "applying": 1, + "circuit.": 1, + "through": 1, + "diode": 2, + "basically": 1, + "feeds": 1, + "divider": 1, + "...So": 1, + "order": 1, + "ADC": 2, + "sweep": 2, + "needs": 1, + "generate": 1, + "Volts": 1, + "ground.": 1, + "drop": 1, + "across": 1, + "since": 1, + "sensitive": 1, + "works": 1, + "divider.": 1, + "typical": 1, + "magnitude": 1, + "applied": 2, + "might": 1, + "something": 1, + "*****": 4, + "...With": 1, + "looks": 1, + "X****": 1, + "...The": 1, + "denotes": 1, + "location": 1, + "reason": 1, + "slightly": 1, + "reasons": 1, + "really.": 1, + "lazy": 1, + "I": 1, + "didn": 1, + "acts": 1, + "dead": 1, + "short.": 1, + "situation": 1, + "exactly": 1, + "great": 1, + "FindResonateFrequency": 1, + "DisplayInductorValue": 2, + "Freq.Synth": 1, + "FValue": 1, + "ADC.SigmaDelta": 1, + "@FTemp": 1, + "gr.clear": 1, + "gr.copy": 2, + "display_base": 2, + "Option": 2, + "*********************************************": 2, + "Frequency": 1, + "LowerFrequency": 2, + "*100/": 1, + "UpperFrequency": 1, + "gr.colorwidth": 4, + "gr.plot": 3, + "gr.line": 3, + "FTemp/1024": 1, + "Finish": 1 }, "Protocol Buffer": { "package": 1, @@ -56204,28 +56229,160 @@ }, "PureScript": { "module": 4, - "Control.Arrow": 1, + "ReactiveJQueryTest": 1, "where": 20, "import": 32, + "Prelude": 3, + "(": 111, + "+": 30, + ")": 115, + "<$>": 8, + "<*>": 2, + "<<": 4, + "<": 13, + "flip": 2, + "return": 6, + "show": 5, + "Control.Monad": 1, + "Control.Monad.Eff": 1, + "Control.Monad.JQuery": 1, + "Control.Reactive": 1, + "Control.Reactive.JQuery": 1, + "Data.Array": 3, + "map": 8, + "head": 2, + "length": 3, + "Data.Foldable": 2, + "Data.Foreign": 2, + "Data.Maybe": 3, + "Data.Monoid": 1, + "Data.Traversable": 2, + "Debug.Trace": 1, + "Global": 1, + "parseInt": 1, + "main": 1, + "do": 4, + "personDemo": 2, + "todoListDemo": 1, + "greet": 1, + "firstName": 2, + "lastName": 2, + "-": 88, + "Create": 3, + "new": 1, + "reactive": 1, + "variables": 1, + "to": 3, + "hold": 1, + "the": 3, + "user": 1, + "readRArray": 1, + "arr": 10, + "insertRArray": 1, + "{": 25, + "text": 5, + "completed": 2, + "}": 26, + "a": 46, + "paragraph": 2, + "display": 2, + "next": 1, + "task": 4, + "nextTaskLabel": 3, + "create": 2, + "append": 2, + "b": 49, + "let": 4, + "nextTask": 2, + "toComputedArray": 2, + "case": 9, + "of": 9, + "Nothing": 7, + "Just": 7, + "toComputed": 2, + "bindTextOneWay": 2, + "counter": 3, + "counterLabel": 3, + "rs": 2, + "cs": 2, + "<->": 1, + "c": 17, + "if": 1, + "then": 1, + "else": 1, + "traverse": 2, + "entry": 1, + "entry.completed": 1, + "foldl": 4, + "Data.Map": 1, + "Map": 26, + "empty": 6, + "singleton": 5, + "insert": 10, + "lookup": 8, + "delete": 9, + "alter": 8, + "toList": 10, + "fromList": 3, + "union": 3, + "qualified": 1, + "as": 1, + "P": 1, + "concat": 3, "Data.Tuple": 3, + "data": 3, + "k": 108, + "v": 57, + "Leaf": 15, + "|": 9, + "Branch": 27, + "key": 13, + "value": 8, + "left": 15, + "right": 14, + "instance": 12, + "eqMap": 1, + "P.Eq": 11, + "m1": 6, + "m2": 6, + "P.": 11, + "/": 1, + "P.not": 1, + "showMap": 1, + "P.Show": 3, + "m": 6, + "P.show": 1, + "forall": 26, + "v.": 11, + "P.Ord": 9, + "b@": 6, + "k1": 16, + "b.left": 9, + "b.right": 8, + "Maybe": 5, + "findMinKey": 5, + "Tuple": 21, + "_": 7, + "glue": 4, + "f": 28, + "minKey": 3, + "root": 2, + "in": 2, + "[": 5, + "]": 5, + "b.key": 1, + "b.value": 2, + "v1": 3, + "v2.": 1, + "v2": 2, + "Control.Arrow": 1, "class": 4, "Arrow": 5, - "a": 46, - "arr": 10, - "forall": 26, - "b": 49, "c.": 3, - "(": 111, - "-": 88, - "c": 17, - ")": 115, "first": 4, "d.": 2, - "Tuple": 21, "d": 6, - "instance": 12, "arrowFunction": 1, - "f": 28, "second": 3, "Category": 3, "swap": 4, @@ -56242,7 +56399,6 @@ "zeroArrow": 1, "<+>": 2, "ArrowPlus": 1, - "Data.Foreign": 2, "Foreign": 12, "..": 1, "ForeignParser": 29, @@ -56251,13 +56407,8 @@ "ReadForeign": 11, "read": 10, "prop": 3, - "Prelude": 3, - "Data.Array": 3, "Data.Either": 1, - "Data.Maybe": 3, - "Data.Traversable": 2, "foreign": 6, - "data": 3, "*": 1, "fromString": 2, "String": 13, @@ -56265,28 +56416,20 @@ "readPrimType": 5, "a.": 6, "readMaybeImpl": 2, - "Maybe": 5, "readPropImpl": 2, "showForeignImpl": 2, "showForeign": 1, "Prelude.Show": 1, - "show": 5, "p": 11, "json": 2, "monadForeignParser": 1, "Prelude.Monad": 1, - "return": 6, - "_": 7, "Right": 9, - "case": 9, - "of": 9, "Left": 8, "err": 8, "applicativeForeignParser": 1, "Prelude.Applicative": 1, "pure": 1, - "<*>": 2, - "<$>": 8, "functorForeignParser": 1, "Prelude.Functor": 1, "readString": 1, @@ -56295,353 +56438,339 @@ "readBoolean": 1, "Boolean": 1, "readArray": 1, - "[": 5, - "]": 5, - "let": 4, "arrayItem": 2, "i": 2, "result": 4, - "+": 30, - "in": 2, "xs": 3, - "traverse": 2, "zip": 1, "range": 1, - "length": 3, - "readMaybe": 1, - "<<": 4, - "<": 13, - "Just": 7, - "Nothing": 7, - "Data.Map": 1, - "Map": 26, - "empty": 6, - "singleton": 5, - "insert": 10, - "lookup": 8, - "delete": 9, - "alter": 8, - "toList": 10, - "fromList": 3, - "union": 3, - "map": 8, - "qualified": 1, - "as": 1, - "P": 1, - "concat": 3, - "Data.Foldable": 2, - "foldl": 4, - "k": 108, - "v": 57, - "Leaf": 15, - "|": 9, - "Branch": 27, - "{": 25, - "key": 13, - "value": 8, - "left": 15, - "right": 14, - "}": 26, - "eqMap": 1, - "P.Eq": 11, - "m1": 6, - "m2": 6, - "P.": 11, - "/": 1, - "P.not": 1, - "showMap": 1, - "P.Show": 3, - "m": 6, - "P.show": 1, - "v.": 11, - "P.Ord": 9, - "b@": 6, - "k1": 16, - "b.left": 9, - "b.right": 8, - "findMinKey": 5, - "glue": 4, - "minKey": 3, - "root": 2, - "b.key": 1, - "b.value": 2, - "v1": 3, - "v2.": 1, - "v2": 2, - "ReactiveJQueryTest": 1, - "flip": 2, - "Control.Monad": 1, - "Control.Monad.Eff": 1, - "Control.Monad.JQuery": 1, - "Control.Reactive": 1, - "Control.Reactive.JQuery": 1, - "head": 2, - "Data.Monoid": 1, - "Debug.Trace": 1, - "Global": 1, - "parseInt": 1, - "main": 1, - "do": 4, - "personDemo": 2, - "todoListDemo": 1, - "greet": 1, - "firstName": 2, - "lastName": 2, - "Create": 3, - "new": 1, - "reactive": 1, - "variables": 1, - "to": 3, - "hold": 1, - "the": 3, - "user": 1, - "readRArray": 1, - "insertRArray": 1, - "text": 5, - "completed": 2, - "paragraph": 2, - "display": 2, - "next": 1, - "task": 4, - "nextTaskLabel": 3, - "create": 2, - "append": 2, - "nextTask": 2, - "toComputedArray": 2, - "toComputed": 2, - "bindTextOneWay": 2, - "counter": 3, - "counterLabel": 3, - "rs": 2, - "cs": 2, - "<->": 1, - "if": 1, - "then": 1, - "else": 1, - "entry": 1, - "entry.completed": 1 + "readMaybe": 1 }, "Python": { - "xspacing": 4, - "#": 28, - "How": 2, - "far": 1, - "apart": 1, - "should": 1, - "each": 1, - "horizontal": 1, - "location": 1, - "be": 1, - "spaced": 1, - "maxwaves": 3, - "total": 1, - "of": 5, - "waves": 1, - "to": 5, - "add": 1, - "together": 1, - "theta": 3, - "amplitude": 3, - "[": 165, - "]": 165, - "Height": 1, - "wave": 2, - "dx": 8, - "yvalues": 7, - "def": 87, - "setup": 2, - "(": 850, - ")": 861, - "size": 5, - "frameRate": 1, - "colorMode": 1, - "RGB": 1, - "w": 2, - "width": 1, - "+": 51, - "for": 69, - "i": 13, - "in": 91, - "range": 5, - "amplitude.append": 1, - "random": 2, - "period": 2, - "many": 1, - "pixels": 1, - "before": 1, - "the": 6, - "repeats": 1, - "dx.append": 1, - "TWO_PI": 1, - "/": 26, - "*": 38, - "_": 6, - "yvalues.append": 1, - "draw": 2, - "background": 2, - "calcWave": 2, - "renderWave": 2, - "len": 11, - "j": 7, - "x": 34, - "if": 160, - "%": 33, - "sin": 1, - "else": 33, - "cos": 1, - "noStroke": 2, - "fill": 2, - "ellipseMode": 1, - "CENTER": 1, - "v": 19, - "enumerate": 2, - "ellipse": 1, - "height": 1, - "import": 55, - "os": 2, - "sys": 3, - "json": 1, - "c4d": 1, - "c4dtools": 1, - "itertools": 1, "from": 36, - "c4d.modules": 1, - "graphview": 1, + "google.protobuf": 4, + "import": 55, + "descriptor": 1, "as": 14, - "gv": 1, - "c4dtools.misc": 1, - "graphnode": 1, - "res": 3, - "importer": 1, - "c4dtools.prepare": 1, - "__file__": 1, - "__res__": 1, - "settings": 2, - "c4dtools.helpers.Attributor": 2, - "{": 27, - "res.file": 3, - "}": 27, - "align_nodes": 2, - "nodes": 11, - "mode": 5, - "spacing": 7, - "r": 9, - "modes": 3, - "not": 69, - "return": 68, - "raise": 23, - "ValueError": 6, - ".join": 4, - "get_0": 12, - "lambda": 6, - "x.x": 1, - "get_1": 4, - "x.y": 1, - "set_0": 6, - "setattr": 16, - "set_1": 4, - "graphnode.GraphNode": 1, - "n": 6, - "nodes.sort": 1, - "key": 6, - "n.position": 1, - "midpoint": 3, - "graphnode.find_nodes_mid": 1, - "first_position": 2, - ".position": 1, - "new_positions": 2, - "prev_offset": 6, - "node": 2, - "position": 12, - "node.position": 2, - "-": 36, - "node.size": 1, - "<": 2, - "new_positions.append": 1, - "bbox_size": 2, - "bbox_size_2": 2, - "itertools.izip": 1, - "align_nodes_shortcut": 3, - "master": 2, - "gv.GetMaster": 1, - "root": 3, - "master.GetRoot": 1, - "graphnode.find_selected_nodes": 1, - "master.AddUndo": 1, - "c4d.EventAdd": 1, - "True": 25, - "class": 19, - "XPAT_Options": 3, - "defaults": 1, - "__init__": 7, - "self": 113, + "_descriptor": 1, + "message": 1, + "_message": 1, + "reflection": 1, + "_reflection": 1, + "descriptor_pb2": 1, + "DESCRIPTOR": 3, + "_descriptor.FileDescriptor": 1, + "(": 850, + "name": 39, + "package": 1, + "serialized_pb": 1, + ")": 861, + "_PERSON": 3, + "_descriptor.Descriptor": 1, + "full_name": 2, "filename": 12, "None": 92, - "super": 4, - ".__init__": 3, - "self.load": 1, - "load": 1, - "is": 31, - "settings.options_filename": 2, - "os.path.isfile": 1, - "self.dict_": 2, - "self.defaults.copy": 2, - "with": 2, - "open": 2, - "fp": 4, - "self.dict_.update": 1, - "json.load": 1, - "self.save": 1, - "save": 2, - "values": 15, - "dict": 4, - "k": 7, - "self.dict_.iteritems": 1, - "self.defaults": 1, - "json.dump": 1, - "XPAT_OptionsDialog": 2, - "c4d.gui.GeDialog": 1, - "CreateLayout": 1, - "self.LoadDialogResource": 1, - "res.DLG_OPTIONS": 1, - "InitValues": 1, - "self.SetLong": 2, - "res.EDT_HSPACE": 2, - "options.hspace": 3, - "res.EDT_VSPACE": 2, - "options.vspace": 3, - "Command": 1, - "id": 2, - "msg": 1, - "res.BTN_SAVE": 1, - "self.GetLong": 2, - "options.save": 1, - "self.Close": 1, - "XPAT_Command_OpenOptionsDialog": 2, - "c4dtools.plugins.Command": 3, - "self._dialog": 4, - "@property": 2, - "dialog": 1, - "PLUGIN_ID": 3, - "PLUGIN_NAME": 3, - "res.string.XPAT_COMMAND_OPENOPTIONSDIALOG": 1, - "PLUGIN_HELP": 3, - "res.string.XPAT_COMMAND_OPENOPTIONSDIALOG_HELP": 1, - "Execute": 3, - "doc": 3, - "self.dialog.Open": 1, - "c4d.DLG_TYPE_MODAL": 1, - "XPAT_Command_AlignHorizontal": 1, - "res.string.XPAT_COMMAND_ALIGNHORIZONTAL": 1, - "PLUGIN_ICON": 2, - "res.string.XPAT_COMMAND_ALIGNHORIZONTAL_HELP": 1, - "XPAT_Command_AlignVertical": 1, - "res.string.XPAT_COMMAND_ALIGNVERTICAL": 1, - "res.string.XPAT_COMMAND_ALIGNVERTICAL_HELP": 1, + "file": 1, + "containing_type": 2, + "fields": 12, + "[": 165, + "_descriptor.FieldDescriptor": 1, + "index": 1, + "number": 1, + "type": 6, + "cpp_type": 1, + "label": 18, + "has_default_value": 1, + "False": 28, + "default_value": 1, + "unicode": 8, + "message_type": 1, + "enum_type": 1, + "is_extension": 1, + "extension_scope": 1, "options": 4, - "__name__": 3, - "c4dtools.plugins.main": 1, + "]": 165, + "extensions": 1, + "nested_types": 1, + "enum_types": 1, + "is_extendable": 1, + "extension_ranges": 1, + "serialized_start": 1, + "serialized_end": 1, + "DESCRIPTOR.message_types_by_name": 1, + "class": 19, + "Person": 1, + "_message.Message": 1, + "__metaclass__": 3, + "_reflection.GeneratedProtocolMessageType": 1, + "def": 87, + "setup": 2, + "size": 5, + "P3D": 1, + "fill": 2, + "draw": 2, + "lights": 1, + "background": 2, + "camera": 1, + "mouseY": 1, + "#": 28, + "eyeX": 1, + "eyeY": 1, + "eyeZ": 1, + "centerX": 1, + "centerY": 1, + "centerZ": 1, + "upX": 1, + "upY": 1, + "upZ": 1, + "noStroke": 2, + "box": 1, + "stroke": 1, + "line": 3, + "-": 36, + "SHEBANG#!python": 4, "__future__": 2, + "absolute_import": 1, + "division": 1, + "with_statement": 1, + "Cookie": 1, + "logging": 1, + "socket": 1, + "time": 1, + "tornado.escape": 1, + "utf8": 2, + "native_str": 4, + "parse_qs_bytes": 3, + "tornado": 3, + "httputil": 1, + "iostream": 1, + "tornado.netutil": 1, + "TCPServer": 2, + "stack_context": 1, + "tornado.util": 1, + "b": 11, + "bytes_type": 2, + "try": 17, + "ssl": 2, + "Python": 1, + "+": 51, + "except": 17, + "ImportError": 1, + "HTTPServer": 1, + "r": 9, + "__init__": 7, + "self": 113, + "request_callback": 4, + "no_keep_alive": 4, + "io_loop": 3, + "xheaders": 4, + "ssl_options": 3, + "**kwargs": 9, + "self.request_callback": 5, + "self.no_keep_alive": 4, + "self.xheaders": 3, + "TCPServer.__init__": 1, + "handle_stream": 1, + "stream": 4, + "address": 4, + "HTTPConnection": 2, + "_BadRequestException": 5, + "Exception": 2, + "pass": 4, + "object": 6, + "self.stream": 1, + "self.address": 3, + "self._request": 7, + "self._request_finished": 4, + "self._header_callback": 3, + "stack_context.wrap": 2, + "self._on_headers": 1, + "self.stream.read_until": 2, + "self._write_callback": 5, + "write": 2, + "chunk": 5, + "callback": 7, + "assert": 7, + "if": 160, + "not": 69, + "self.stream.closed": 1, + "self.stream.write": 2, + "self._on_write_complete": 1, + "finish": 2, + "True": 25, + "self.stream.writing": 2, + "self._finish_request": 2, + "_on_write_complete": 1, + "is": 31, + "and": 35, + "_finish_request": 1, + "disconnect": 5, + "else": 33, + "connection_header": 5, + "self._request.headers.get": 2, + "connection_header.lower": 1, + "self._request.supports_http_1_1": 1, + "elif": 4, + "in": 91, + "self._request.headers": 1, + "or": 27, + "self._request.method": 2, + "self.stream.close": 2, + "return": 68, + "_on_headers": 1, + "data": 22, + "data.decode": 1, + "eol": 3, + "data.find": 1, + "start_line": 1, + "method": 5, + "uri": 5, + "version": 6, + "start_line.split": 1, + "ValueError": 6, + "raise": 23, + "version.startswith": 1, + "headers": 5, + "httputil.HTTPHeaders.parse": 1, + "getattr": 30, + "self.stream.socket": 1, + "socket.AF_INET": 2, + "socket.AF_INET6": 1, + "remote_ip": 8, + "HTTPRequest": 2, + "connection": 5, + "content_length": 6, + "headers.get": 2, + "int": 1, + "self.stream.max_buffer_size": 1, + "self.stream.read_bytes": 1, + "self._on_request_body": 1, + "e": 13, + "logging.info": 1, + "_on_request_body": 1, + "self._request.body": 2, + "content_type": 1, + "content_type.startswith": 2, + "arguments": 2, + "for": 69, + "values": 15, + "arguments.iteritems": 2, + "v": 19, + "self._request.arguments.setdefault": 1, + ".extend": 2, + "content_type.split": 1, + "field": 32, + "k": 7, + "sep": 2, + "field.strip": 1, + ".partition": 1, + "httputil.parse_multipart_form_data": 1, + "self._request.arguments": 1, + "self._request.files": 1, + "break": 2, + "logging.warning": 1, + "body": 2, + "protocol": 4, + "host": 2, + "files": 2, + "self.method": 1, + "self.uri": 2, + "self.version": 2, + "self.headers": 4, + "httputil.HTTPHeaders": 1, + "self.body": 1, + "connection.xheaders": 1, + "self.remote_ip": 4, + "self.headers.get": 5, + "self._valid_ip": 1, + "self.protocol": 7, + "isinstance": 11, + "connection.stream": 1, + "iostream.SSLIOStream": 1, + "self.host": 2, + "self.files": 1, + "{": 27, + "}": 27, + "self.connection": 1, + "self._start_time": 3, + "time.time": 3, + "self._finish_time": 4, + "self.path": 1, + "self.query": 2, + "uri.partition": 1, + "self.arguments": 2, + "supports_http_1_1": 1, + "@property": 2, + "cookies": 1, + "hasattr": 11, + "self._cookies": 3, + "Cookie.SimpleCookie": 1, + "self._cookies.load": 1, + "self.connection.write": 1, + "self.connection.finish": 1, + "full_url": 1, + "request_time": 1, + "get_ssl_certificate": 1, + "self.connection.stream.socket.getpeercert": 1, + "ssl.SSLError": 1, + "__repr__": 2, + "attrs": 7, + "args": 8, + ".join": 4, + "%": 33, + "n": 6, + "self.__class__.__name__": 3, + "dict": 4, + "_valid_ip": 1, + "ip": 2, + "res": 3, + "socket.getaddrinfo": 1, + "socket.AF_UNSPEC": 1, + "socket.SOCK_STREAM": 1, + "socket.AI_NUMERICHOST": 1, + "bool": 2, + "socket.gaierror": 1, + "e.args": 1, + "socket.EAI_NONAME": 1, + "os": 2, + "sys": 3, + "main": 4, + "usage": 3, + "string": 1, + "command": 4, + "check": 4, + "len": 11, + "sys.argv": 2, + "<": 2, + "sys.exit": 1, + "printDelimiter": 4, + "print": 39, + "get": 1, + "a": 2, + "list": 1, + "of": 5, + "git": 1, + "directories": 1, + "the": 6, + "specified": 1, + "parent": 5, + "gitDirectories": 2, + "getSubdirectories": 2, + "isGitDirectory": 2, + "gitDirectory": 2, + "os.chdir": 1, + "os.getcwd": 1, + "os.system": 1, + "directory": 9, + "filter": 3, + "os.path.abspath": 1, + "subdirectories": 3, + "os.walk": 1, + ".next": 1, + "i": 13, + "os.path.isdir": 1, + "*": 38, + "__name__": 3, "unicode_literals": 1, "copy": 1, "functools": 1, @@ -56650,10 +56779,12 @@ "zip": 8, "django.db.models.manager": 1, "Imported": 1, + "to": 5, "register": 1, "signal": 1, "handler.": 1, "django.conf": 1, + "settings": 2, "django.core.exceptions": 1, "ObjectDoesNotExist": 2, "MultipleObjectsReturned": 2, @@ -56689,6 +56820,7 @@ "get_model": 3, "django.utils.translation": 1, "ugettext_lazy": 1, + "_": 6, "django.utils.functional": 1, "curry": 6, "django.utils.encoding": 1, @@ -56698,24 +56830,18 @@ "get_text_list": 2, "capfirst": 6, "ModelBase": 4, - "type": 6, "__new__": 2, "cls": 32, - "name": 39, "bases": 6, - "attrs": 7, "super_new": 3, + "super": 4, ".__new__": 1, "parents": 8, - "b": 11, - "isinstance": 11, "module": 6, "attrs.pop": 2, "new_class": 9, "attr_meta": 5, "abstract": 3, - "getattr": 30, - "False": 28, "meta": 12, "base_meta": 2, "model_module": 1, @@ -56724,14 +56850,11 @@ "kwargs": 9, "model_module.__name__.split": 1, "new_class.add_to_class": 7, - "**kwargs": 9, "subclass_exception": 3, "tuple": 3, "x.DoesNotExist": 1, - "hasattr": 11, - "and": 35, + "x": 34, "x._meta.abstract": 2, - "or": 27, "x.MultipleObjectsReturned": 1, "base_meta.abstract": 1, "new_class._meta.ordering": 1, @@ -56760,7 +56883,6 @@ "f.name": 5, "f": 19, "base": 13, - "parent": 5, "parent._meta.abstract": 1, "parent._meta.fields": 1, "TypeError": 4, @@ -56774,11 +56896,9 @@ "parent_fields": 3, "base._meta.local_fields": 1, "base._meta.local_many_to_many": 1, - "field": 32, "field.name": 14, "base.__name__": 2, "base._meta.abstract": 2, - "elif": 4, "attr_name": 3, "base._meta.module_name": 1, "auto_created": 1, @@ -56806,6 +56926,7 @@ "add_to_class": 1, "value": 9, "value.contribute_to_class": 1, + "setattr": 16, "_prepare": 1, "opts": 5, "cls._meta": 3, @@ -56831,17 +56952,14 @@ "signals.class_prepared.send": 1, "sender": 5, "ModelState": 2, - "object": 6, "db": 2, "self.db": 1, "self.adding": 1, "Model": 2, - "__metaclass__": 3, "_deferred": 1, "*args": 4, "signals.pre_init.send": 1, "self.__class__": 10, - "args": 8, "self._state": 1, "args_len": 2, "self._meta.fields": 5, @@ -56853,9 +56971,7 @@ "field.rel": 2, "is_related_object": 3, "self.__class__.__dict__.get": 2, - "try": 17, "rel_obj": 3, - "except": 17, "KeyError": 3, "field.get_default": 3, "field.null": 1, @@ -56863,15 +56979,12 @@ "kwargs.keys": 2, "property": 2, "AttributeError": 1, - "pass": 4, + ".__init__": 3, "signals.post_init.send": 1, "instance": 5, - "__repr__": 2, "u": 9, - "unicode": 8, "UnicodeEncodeError": 1, "UnicodeDecodeError": 1, - "self.__class__.__name__": 3, "__str__": 1, ".encode": 1, "__eq__": 1, @@ -56883,7 +56996,6 @@ "__hash__": 1, "hash": 1, "__reduce__": 1, - "data": 22, "self.__dict__": 1, "defers": 2, "self._deferred": 1, @@ -56902,6 +57014,7 @@ "serializable_value": 1, "field_name": 8, "self._meta.get_field_by_name": 1, + "save": 2, "force_insert": 7, "force_update": 10, "using": 30, @@ -56916,7 +57029,6 @@ "raw": 9, "origin": 7, "router.db_for_write": 2, - "assert": 7, "meta.proxy": 5, "meta.auto_created": 2, "signals.pre_save.send": 1, @@ -56941,9 +57053,7 @@ "order_value": 2, ".count": 1, "self._order": 1, - "fields": 12, "update_pk": 3, - "bool": 2, "meta.has_auto_field": 1, "result": 2, "manager._insert": 1, @@ -57000,7 +57110,6 @@ "self._perform_date_checks": 1, "date_errors.items": 1, "errors.setdefault": 3, - ".extend": 2, "_get_unique_checks": 1, "unique_togethers": 2, "self._meta.unique_together": 1, @@ -57010,8 +57119,6 @@ "unique_togethers.append": 1, "model_class": 11, "unique_together": 2, - "check": 4, - "break": 2, "unique_checks.append": 2, "fields_with_class": 2, "self._meta.local_fields": 1, @@ -57035,6 +57142,7 @@ "model_class._meta": 2, "qs.exclude": 2, "qs.exists": 2, + "key": 6, ".append": 2, "self.unique_error_message": 1, "_perform_date_checks": 1, @@ -57056,9 +57164,9 @@ "field.error_messages": 1, "field_labels": 4, "map": 1, + "lambda": 6, "full_clean": 1, "self.clean_fields": 1, - "e": 13, "e.update_error_dict": 3, "self.clean": 1, "errors.keys": 1, @@ -57077,6 +57185,8 @@ "ordered_obj._meta.order_with_respect_to.rel.field_name": 2, "order_name": 4, "ordered_obj._meta.order_with_respect_to.name": 2, + "j": 7, + "enumerate": 2, "ordered_obj.objects.filter": 2, ".update": 1, "_order": 1, @@ -57145,90 +57255,159 @@ "meth": 5, "request.method.lower": 1, "request.method": 2, - "P3D": 1, - "lights": 1, - "camera": 1, - "mouseY": 1, - "eyeX": 1, - "eyeY": 1, - "eyeZ": 1, - "centerX": 1, - "centerY": 1, - "centerZ": 1, - "upX": 1, - "upY": 1, - "upZ": 1, - "box": 1, - "stroke": 1, - "line": 3, - "google.protobuf": 4, - "descriptor": 1, - "_descriptor": 1, - "message": 1, - "_message": 1, - "reflection": 1, - "_reflection": 1, - "descriptor_pb2": 1, - "DESCRIPTOR": 3, - "_descriptor.FileDescriptor": 1, - "package": 1, - "serialized_pb": 1, - "_PERSON": 3, - "_descriptor.Descriptor": 1, - "full_name": 2, - "file": 1, - "containing_type": 2, - "_descriptor.FieldDescriptor": 1, - "index": 1, - "number": 1, - "cpp_type": 1, - "label": 18, - "has_default_value": 1, - "default_value": 1, - "message_type": 1, - "enum_type": 1, - "is_extension": 1, - "extension_scope": 1, - "extensions": 1, - "nested_types": 1, - "enum_types": 1, - "is_extendable": 1, - "extension_ranges": 1, - "serialized_start": 1, - "serialized_end": 1, - "DESCRIPTOR.message_types_by_name": 1, - "Person": 1, - "_message.Message": 1, - "_reflection.GeneratedProtocolMessageType": 1, - "SHEBANG#!python": 4, - "print": 39, - "main": 4, - "usage": 3, - "string": 1, - "command": 4, - "sys.argv": 2, - "sys.exit": 1, - "printDelimiter": 4, - "get": 1, - "a": 2, - "list": 1, - "git": 1, - "directories": 1, - "specified": 1, - "gitDirectories": 2, - "getSubdirectories": 2, - "isGitDirectory": 2, - "gitDirectory": 2, - "os.chdir": 1, - "os.getcwd": 1, - "os.system": 1, - "directory": 9, - "filter": 3, - "os.path.abspath": 1, - "subdirectories": 3, - "os.walk": 1, - ".next": 1, - "os.path.isdir": 1, + "json": 1, + "c4d": 1, + "c4dtools": 1, + "itertools": 1, + "c4d.modules": 1, + "graphview": 1, + "gv": 1, + "c4dtools.misc": 1, + "graphnode": 1, + "importer": 1, + "c4dtools.prepare": 1, + "__file__": 1, + "__res__": 1, + "c4dtools.helpers.Attributor": 2, + "res.file": 3, + "align_nodes": 2, + "nodes": 11, + "mode": 5, + "spacing": 7, + "modes": 3, + "get_0": 12, + "x.x": 1, + "get_1": 4, + "x.y": 1, + "set_0": 6, + "set_1": 4, + "graphnode.GraphNode": 1, + "nodes.sort": 1, + "n.position": 1, + "midpoint": 3, + "graphnode.find_nodes_mid": 1, + "first_position": 2, + ".position": 1, + "new_positions": 2, + "prev_offset": 6, + "node": 2, + "position": 12, + "node.position": 2, + "node.size": 1, + "new_positions.append": 1, + "bbox_size": 2, + "bbox_size_2": 2, + "itertools.izip": 1, + "align_nodes_shortcut": 3, + "master": 2, + "gv.GetMaster": 1, + "root": 3, + "master.GetRoot": 1, + "graphnode.find_selected_nodes": 1, + "master.AddUndo": 1, + "c4d.EventAdd": 1, + "XPAT_Options": 3, + "defaults": 1, + "self.load": 1, + "load": 1, + "settings.options_filename": 2, + "os.path.isfile": 1, + "self.dict_": 2, + "self.defaults.copy": 2, + "with": 2, + "open": 2, + "fp": 4, + "self.dict_.update": 1, + "json.load": 1, + "self.save": 1, + "self.dict_.iteritems": 1, + "self.defaults": 1, + "json.dump": 1, + "XPAT_OptionsDialog": 2, + "c4d.gui.GeDialog": 1, + "CreateLayout": 1, + "self.LoadDialogResource": 1, + "res.DLG_OPTIONS": 1, + "InitValues": 1, + "self.SetLong": 2, + "res.EDT_HSPACE": 2, + "options.hspace": 3, + "res.EDT_VSPACE": 2, + "options.vspace": 3, + "Command": 1, + "id": 2, + "msg": 1, + "res.BTN_SAVE": 1, + "self.GetLong": 2, + "options.save": 1, + "self.Close": 1, + "XPAT_Command_OpenOptionsDialog": 2, + "c4dtools.plugins.Command": 3, + "self._dialog": 4, + "dialog": 1, + "PLUGIN_ID": 3, + "PLUGIN_NAME": 3, + "res.string.XPAT_COMMAND_OPENOPTIONSDIALOG": 1, + "PLUGIN_HELP": 3, + "res.string.XPAT_COMMAND_OPENOPTIONSDIALOG_HELP": 1, + "Execute": 3, + "doc": 3, + "self.dialog.Open": 1, + "c4d.DLG_TYPE_MODAL": 1, + "XPAT_Command_AlignHorizontal": 1, + "res.string.XPAT_COMMAND_ALIGNHORIZONTAL": 1, + "PLUGIN_ICON": 2, + "res.string.XPAT_COMMAND_ALIGNHORIZONTAL_HELP": 1, + "XPAT_Command_AlignVertical": 1, + "res.string.XPAT_COMMAND_ALIGNVERTICAL": 1, + "res.string.XPAT_COMMAND_ALIGNVERTICAL_HELP": 1, + "c4dtools.plugins.main": 1, + "xspacing": 4, + "How": 2, + "far": 1, + "apart": 1, + "should": 1, + "each": 1, + "horizontal": 1, + "location": 1, + "be": 1, + "spaced": 1, + "maxwaves": 3, + "total": 1, + "waves": 1, + "add": 1, + "together": 1, + "theta": 3, + "amplitude": 3, + "Height": 1, + "wave": 2, + "dx": 8, + "yvalues": 7, + "frameRate": 1, + "colorMode": 1, + "RGB": 1, + "w": 2, + "width": 1, + "range": 5, + "amplitude.append": 1, + "random": 2, + "period": 2, + "many": 1, + "pixels": 1, + "before": 1, + "repeats": 1, + "dx.append": 1, + "TWO_PI": 1, + "/": 26, + "yvalues.append": 1, + "calcWave": 2, + "renderWave": 2, + "sin": 1, + "cos": 1, + "ellipseMode": 1, + "CENTER": 1, + "ellipse": 1, + "height": 1, "argparse": 1, "matplotlib.pyplot": 1, "pl": 1, @@ -57393,180 +57572,37 @@ "dest": 1, "default": 1, "action": 1, - "version": 6, - "parser.parse_args": 1, - "absolute_import": 1, - "division": 1, - "with_statement": 1, - "Cookie": 1, - "logging": 1, - "socket": 1, - "time": 1, - "tornado.escape": 1, - "utf8": 2, - "native_str": 4, - "parse_qs_bytes": 3, - "tornado": 3, - "httputil": 1, - "iostream": 1, - "tornado.netutil": 1, - "TCPServer": 2, - "stack_context": 1, - "tornado.util": 1, - "bytes_type": 2, - "ssl": 2, - "Python": 1, - "ImportError": 1, - "HTTPServer": 1, - "request_callback": 4, - "no_keep_alive": 4, - "io_loop": 3, - "xheaders": 4, - "ssl_options": 3, - "self.request_callback": 5, - "self.no_keep_alive": 4, - "self.xheaders": 3, - "TCPServer.__init__": 1, - "handle_stream": 1, - "stream": 4, - "address": 4, - "HTTPConnection": 2, - "_BadRequestException": 5, - "Exception": 2, - "self.stream": 1, - "self.address": 3, - "self._request": 7, - "self._request_finished": 4, - "self._header_callback": 3, - "stack_context.wrap": 2, - "self._on_headers": 1, - "self.stream.read_until": 2, - "self._write_callback": 5, - "write": 2, - "chunk": 5, - "callback": 7, - "self.stream.closed": 1, - "self.stream.write": 2, - "self._on_write_complete": 1, - "finish": 2, - "self.stream.writing": 2, - "self._finish_request": 2, - "_on_write_complete": 1, - "_finish_request": 1, - "disconnect": 5, - "connection_header": 5, - "self._request.headers.get": 2, - "connection_header.lower": 1, - "self._request.supports_http_1_1": 1, - "self._request.headers": 1, - "self._request.method": 2, - "self.stream.close": 2, - "_on_headers": 1, - "data.decode": 1, - "eol": 3, - "data.find": 1, - "start_line": 1, - "method": 5, - "uri": 5, - "start_line.split": 1, - "version.startswith": 1, - "headers": 5, - "httputil.HTTPHeaders.parse": 1, - "self.stream.socket": 1, - "socket.AF_INET": 2, - "socket.AF_INET6": 1, - "remote_ip": 8, - "HTTPRequest": 2, - "connection": 5, - "content_length": 6, - "headers.get": 2, - "int": 1, - "self.stream.max_buffer_size": 1, - "self.stream.read_bytes": 1, - "self._on_request_body": 1, - "logging.info": 1, - "_on_request_body": 1, - "self._request.body": 2, - "content_type": 1, - "content_type.startswith": 2, - "arguments": 2, - "arguments.iteritems": 2, - "self._request.arguments.setdefault": 1, - "content_type.split": 1, - "sep": 2, - "field.strip": 1, - ".partition": 1, - "httputil.parse_multipart_form_data": 1, - "self._request.arguments": 1, - "self._request.files": 1, - "logging.warning": 1, - "body": 2, - "protocol": 4, - "host": 2, - "files": 2, - "self.method": 1, - "self.uri": 2, - "self.version": 2, - "self.headers": 4, - "httputil.HTTPHeaders": 1, - "self.body": 1, - "connection.xheaders": 1, - "self.remote_ip": 4, - "self.headers.get": 5, - "self._valid_ip": 1, - "self.protocol": 7, - "connection.stream": 1, - "iostream.SSLIOStream": 1, - "self.host": 2, - "self.files": 1, - "self.connection": 1, - "self._start_time": 3, - "time.time": 3, - "self._finish_time": 4, - "self.path": 1, - "self.query": 2, - "uri.partition": 1, - "self.arguments": 2, - "supports_http_1_1": 1, - "cookies": 1, - "self._cookies": 3, - "Cookie.SimpleCookie": 1, - "self._cookies.load": 1, - "self.connection.write": 1, - "self.connection.finish": 1, - "full_url": 1, - "request_time": 1, - "get_ssl_certificate": 1, - "self.connection.stream.socket.getpeercert": 1, - "ssl.SSLError": 1, - "_valid_ip": 1, - "ip": 2, - "socket.getaddrinfo": 1, - "socket.AF_UNSPEC": 1, - "socket.SOCK_STREAM": 1, - "socket.AI_NUMERICHOST": 1, - "socket.gaierror": 1, - "e.args": 1, - "socket.EAI_NONAME": 1 + "parser.parse_args": 1 }, "QMake": { + "exists": 1, + "(": 8, + ".git/HEAD": 1, + ")": 8, + "{": 6, + "system": 2, + "git": 1, + "rev": 1, + "-": 1, + "parse": 1, + "HEAD": 1, + "rev.txt": 2, + "}": 6, + "else": 2, + "echo": 1, + "ThisIsNotAGitRepo": 1, "QT": 4, "+": 13, "core": 2, "gui": 2, "greaterThan": 1, - "(": 8, "QT_MAJOR_VERSION": 1, - ")": 8, "widgets": 1, "contains": 2, "QT_CONFIG": 2, "opengl": 2, "|": 1, "opengles2": 1, - "{": 6, - "}": 6, - "else": 2, "DEFINES": 1, "QT_NO_OPENGL": 1, "TEMPLATE": 2, @@ -57587,17 +57623,6 @@ "file.ui": 1, "RESOURCES": 1, "res.qrc": 1, - "exists": 1, - ".git/HEAD": 1, - "system": 2, - "git": 1, - "rev": 1, - "-": 1, - "parse": 1, - "HEAD": 1, - "rev.txt": 2, - "echo": 1, - "ThisIsNotAGitRepo": 1, "SHEBANG#!qmake": 1, "message": 1, "This": 1, @@ -57662,104 +57687,7 @@ "length": 3, "k": 3, "max": 1, - "SHEBANG#!Rscript": 2, "#": 45, - "MedianNorm": 2, - "data": 13, - "geomeans": 3, - "<->": 1, - "exp": 1, - "rowMeans": 1, - "log": 5, - "apply": 2, - "2": 1, - "cnts": 2, - "median": 1, - "library": 1, - "print_usage": 2, - "file": 4, - "stderr": 1, - "cat": 1, - "spec": 2, - "matrix": 3, - "byrow": 3, - "ncol": 3, - "opt": 23, - "getopt": 1, - "help": 1, - "stdout": 1, - "status": 1, - "height": 7, - "out": 4, - "res": 6, - "width": 7, - "ylim": 7, - "read.table": 1, - "header": 1, - "sep": 4, - "quote": 1, - "nsamp": 8, - "dim": 1, - "outfile": 4, - "sprintf": 2, - "png": 2, - "h": 13, - "hist": 4, - "plot": 7, - "FALSE": 9, - "mids": 4, - "density": 4, - "type": 3, - "col": 4, - "rainbow": 4, - "main": 2, - "xlab": 2, - "ylab": 2, - "for": 4, - "i": 6, - "in": 8, - "lines": 6, - "devnum": 2, - "dev.off": 2, - "size.factors": 2, - "data.matrix": 1, - "data.norm": 3, - "t": 1, - "x": 3, - "/": 1, - "ParseDates": 2, - "dates": 3, - "unlist": 2, - "strsplit": 3, - "days": 2, - "times": 2, - "hours": 2, - "all.days": 2, - "all.hours": 2, - "data.frame": 1, - "Day": 2, - "factor": 2, - "levels": 2, - "Hour": 2, - "Main": 2, - "system": 1, - "intern": 1, - "punchcard": 4, - "as.data.frame": 1, - "table": 1, - "ggplot2": 6, - "ggplot": 1, - "aes": 2, - "y": 1, - "geom_point": 1, - "size": 1, - "Freq": 1, - "scale_size": 1, - "range": 1, - "ggsave": 1, - "filename": 1, - "hello": 2, - "print": 1, "module": 25, "code": 21, "available": 1, @@ -57781,6 +57709,7 @@ "even": 1, "attach": 11, "is": 7, + "FALSE": 9, "optionally": 1, "attached": 2, "to": 9, @@ -57790,6 +57719,7 @@ "defaults": 1, ".": 7, "However": 1, + "in": 8, "interactive": 2, "invoked": 1, "directly": 1, @@ -57837,6 +57767,7 @@ "first.": 1, "That": 1, "local": 3, + "file": 4, "./a.r": 1, "will": 2, "loaded.": 1, @@ -57906,6 +57837,7 @@ "parent": 9, ".BaseNamespaceEnv": 1, "paste": 3, + "sep": 4, "source": 3, "chdir": 1, "envir": 5, @@ -57920,6 +57852,7 @@ "%": 2, "is_op": 2, "prefix": 3, + "strsplit": 3, "||": 1, "grepl": 1, "Filter": 1, @@ -57958,6 +57891,7 @@ "Reloading": 1, "primarily": 1, "useful": 1, + "for": 4, "testing": 1, "during": 1, "module_ref": 3, @@ -57966,6 +57900,8 @@ ".loaded_modules": 1, "whatnot.": 1, "assign": 1, + "hello": 2, + "print": 1, "##polyg": 1, "vector": 2, "##numpoints": 1, @@ -57980,6 +57916,95 @@ "spsample": 1, "polyg": 1, "numpoints": 1, + "type": 3, + "SHEBANG#!Rscript": 2, + "MedianNorm": 2, + "data": 13, + "geomeans": 3, + "<->": 1, + "exp": 1, + "rowMeans": 1, + "log": 5, + "apply": 2, + "2": 1, + "cnts": 2, + "median": 1, + "library": 1, + "print_usage": 2, + "stderr": 1, + "cat": 1, + "spec": 2, + "matrix": 3, + "byrow": 3, + "ncol": 3, + "opt": 23, + "getopt": 1, + "help": 1, + "stdout": 1, + "status": 1, + "height": 7, + "out": 4, + "res": 6, + "width": 7, + "ylim": 7, + "read.table": 1, + "header": 1, + "quote": 1, + "nsamp": 8, + "dim": 1, + "outfile": 4, + "sprintf": 2, + "png": 2, + "h": 13, + "hist": 4, + "plot": 7, + "mids": 4, + "density": 4, + "col": 4, + "rainbow": 4, + "main": 2, + "xlab": 2, + "ylab": 2, + "i": 6, + "lines": 6, + "devnum": 2, + "dev.off": 2, + "size.factors": 2, + "data.matrix": 1, + "data.norm": 3, + "t": 1, + "x": 3, + "/": 1, + "ParseDates": 2, + "dates": 3, + "unlist": 2, + "days": 2, + "times": 2, + "hours": 2, + "all.days": 2, + "all.hours": 2, + "data.frame": 1, + "Day": 2, + "factor": 2, + "levels": 2, + "Hour": 2, + "Main": 2, + "system": 1, + "intern": 1, + "punchcard": 4, + "as.data.frame": 1, + "table": 1, + "ggplot2": 6, + "ggplot": 1, + "aes": 2, + "y": 1, + "geom_point": 1, + "size": 1, + "Freq": 1, + "scale_size": 1, + "range": 1, + "ggsave": 1, + "filename": 1, "docType": 1, "package": 5, "scholar": 6, @@ -58336,21 +58361,80 @@ "%": 34, "{": 19, "machine": 3, - "ephemeris_parser": 1, + "simple_tokenizer": 1, ";": 38, "action": 9, - "mark": 6, + "MyTs": 2, + "my_ts": 6, "p": 8, "}": 19, - "parse_start_time": 2, - "parser.start_time": 1, + "MyTe": 2, + "my_te": 6, + "Emit": 4, + "emit": 4, "data": 15, "[": 20, - "mark..p": 4, + "my_ts...my_te": 1, "]": 20, ".pack": 6, "(": 33, ")": 33, + "nil": 4, + "foo": 8, + "any": 4, + "+": 7, + "main": 3, + "|": 11, + "*": 9, + "end": 23, + "#": 4, + "class": 3, + "SimpleTokenizer": 1, + "attr_reader": 2, + "path": 8, + "def": 10, + "initialize": 2, + "@path": 2, + "write": 9, + "stdout.puts": 2, + "perform": 2, + "pe": 4, + "ignored": 4, + "eof": 3, + "init": 3, + "leftover": 8, + "File.open": 2, + "do": 2, + "f": 2, + "while": 2, + "chunk": 2, + "f.read": 2, + "ENV": 2, + ".to_i": 2, + "chunk.unpack": 2, + "data.length": 3, + "exec": 3, + "if": 4, + "my_ts..": 1, + "-": 5, + "else": 2, + "s": 4, + "SimpleTokenizer.new": 1, + "ARGV": 2, + "s.perform": 2, + "simple_scanner": 1, + "ts": 4, + "..": 1, + "te": 1, + "SimpleScanner": 1, + "||": 1, + "ts..pe": 1, + "SimpleScanner.new": 1, + "ephemeris_parser": 1, + "mark": 6, + "parse_start_time": 2, + "parser.start_time": 1, + "mark..p": 4, "parse_stop_time": 2, "parser.stop_time": 1, "parse_step_size": 2, @@ -58363,7 +58447,6 @@ "r": 1, "n": 1, "adbc": 2, - "|": 11, "year": 2, "digit": 7, "month": 2, @@ -58376,109 +58459,128 @@ "tz": 2, "datetime": 3, "time_unit": 2, - "s": 4, "soe": 2, "eoe": 2, "ephemeris_table": 3, "alnum": 1, - "*": 9, - "-": 5, "./": 1, "start_time": 4, "space*": 2, "stop_time": 4, "step_size": 3, - "+": 7, "ephemeris": 2, - "main": 3, "any*": 3, - "end": 23, "require": 1, "module": 1, "Tengai": 1, "EPHEMERIS_DATA": 2, "Struct.new": 1, ".freeze": 1, - "class": 3, "EphemerisParser": 1, "<": 1, - "def": 10, "self.parse": 1, "parser": 2, "new": 1, "data.unpack": 1, - "if": 4, "data.is_a": 1, "String": 1, - "eof": 3, - "data.length": 3, - "write": 9, - "init": 3, - "exec": 3, "time": 6, "super": 2, "parse_time": 3, "private": 1, - "DateTime.parse": 1, - "simple_scanner": 1, - "Emit": 4, - "emit": 4, - "ts": 4, - "..": 1, - "te": 1, - "foo": 8, - "any": 4, - "#": 4, - "SimpleScanner": 1, - "attr_reader": 2, - "path": 8, - "initialize": 2, - "@path": 2, - "stdout.puts": 2, - "perform": 2, - "pe": 4, - "ignored": 4, - "leftover": 8, - "File.open": 2, - "do": 2, - "f": 2, - "while": 2, - "chunk": 2, - "f.read": 2, - "ENV": 2, - ".to_i": 2, - "chunk.unpack": 2, - "||": 1, - "ts..pe": 1, - "else": 2, - "SimpleScanner.new": 1, - "ARGV": 2, - "s.perform": 2, - "simple_tokenizer": 1, - "MyTs": 2, - "my_ts": 6, - "MyTe": 2, - "my_te": 6, - "my_ts...my_te": 1, - "nil": 4, - "SimpleTokenizer": 1, - "my_ts..": 1, - "SimpleTokenizer.new": 1 + "DateTime.parse": 1 }, "Rebol": { - "REBOL": 5, + "Rebol": 4, "[": 54, - "System": 1, + "]": 61, + "hello": 8, + "func": 5, + "print": 4, "Title": 2, - "Rights": 1, + "re": 20, + "s": 5, + "/i": 1, + "rejoin": 1, + "compose": 1, + "(": 30, + ")": 33, + "either": 1, + "i": 1, + ";": 19, + "little": 1, + "helper": 1, + "for": 4, + "standard": 1, + "grammar": 1, + "regex": 2, + "used": 3, + "date": 6, + "-": 26, + "naive": 1, + "string": 1, "{": 8, + "}": 8, + "|": 22, + "S": 3, + "*": 7, + "<(?:[^^\\>": 1, + ".": 4, + "d": 3, + "+": 6, + "/": 5, + "@": 1, + "%": 2, + "A": 3, + "F": 1, + "url": 1, + "PR_LITERAL": 10, + "string_url": 1, + "email": 1, + "string_email": 1, + "binary": 1, + "binary_base_two": 1, + "binary_base_sixty_four": 1, + "binary_base_sixteen": 1, + "re/i": 2, + "issue": 1, + "string_issue": 1, + "values": 1, + "value_date": 1, + "time": 2, + "value_time": 1, + "tuple": 1, + "value_tuple": 1, + "pair": 1, + "value_pair": 1, + "number": 2, + "PR": 1, + "Za": 2, + "z0": 2, + "<[=>": 1, + "rebol": 1, + "red": 1, + "/system": 1, + "world": 1, + "topaz": 1, + "true": 1, + "false": 1, + "yes": 1, + "no": 3, + "on": 1, + "off": 1, + "none": 1, + "#": 1, + "block": 5, + "REBOL": 5, + "System": 1, + "Rights": 1, "Copyright": 1, "Technologies": 2, "is": 4, "a": 2, "trademark": 1, "of": 1, - "}": 8, "License": 2, "Licensed": 1, "under": 1, @@ -58488,11 +58590,9 @@ "See": 1, "http": 1, "//www.apache.org/licenses/LICENSE": 1, - "-": 26, "Purpose": 1, "These": 1, "are": 2, - "used": 3, "to": 2, "define": 1, "natives": 1, @@ -58500,23 +58600,16 @@ "actions.": 1, "Bind": 1, "attributes": 1, - "for": 4, "this": 1, - "block": 5, "BIND_SET": 1, "SHALLOW": 1, - "]": 61, - ";": 19, "Special": 1, "as": 1, "spec": 3, "datatype": 2, "test": 1, "functions": 1, - "(": 30, "e.g.": 1, - "time": 2, - ")": 33, "value": 1, "any": 1, "type": 1, @@ -58539,8 +58632,6 @@ "internal": 2, "usage": 2, "only": 2, - ".": 4, - "no": 3, "check": 2, "required": 2, "we": 2, @@ -58548,72 +58639,6 @@ "it": 2, "correct": 2, "action": 2, - "Rebol": 4, - "re": 20, - "func": 5, - "s": 5, - "/i": 1, - "rejoin": 1, - "compose": 1, - "either": 1, - "i": 1, - "little": 1, - "helper": 1, - "standard": 1, - "grammar": 1, - "regex": 2, - "date": 6, - "naive": 1, - "string": 1, - "|": 22, - "S": 3, - "*": 7, - "<(?:[^^\\>": 1, - "d": 3, - "+": 6, - "/": 5, - "@": 1, - "%": 2, - "A": 3, - "F": 1, - "url": 1, - "PR_LITERAL": 10, - "string_url": 1, - "email": 1, - "string_email": 1, - "binary": 1, - "binary_base_two": 1, - "binary_base_sixty_four": 1, - "binary_base_sixteen": 1, - "re/i": 2, - "issue": 1, - "string_issue": 1, - "values": 1, - "value_date": 1, - "value_time": 1, - "tuple": 1, - "value_tuple": 1, - "pair": 1, - "value_pair": 1, - "number": 2, - "PR": 1, - "Za": 2, - "z0": 2, - "<[=>": 1, - "rebol": 1, - "red": 1, - "/system": 1, - "world": 1, - "topaz": 1, - "true": 1, - "false": 1, - "yes": 1, - "on": 1, - "off": 1, - "none": 1, - "#": 1, - "hello": 8, - "print": 4, "author": 1 }, "Red": { @@ -58865,115 +58890,28 @@ "Documentation": 3, "Example": 3, "test": 6, - "cases": 2, + "case": 1, "using": 4, "the": 9, - "data": 2, - "-": 16, - "driven": 4, - "testing": 2, - "approach.": 2, - "...": 28, - "Tests": 1, - "use": 2, - "Calculate": 3, - "keyword": 5, - "created": 1, - "in": 5, - "this": 1, - "file": 1, - "that": 5, - "turn": 1, - "uses": 1, - "keywords": 3, - "CalculatorLibrary": 5, - ".": 4, - "An": 1, - "exception": 1, - "is": 6, - "last": 1, - "has": 5, - "a": 4, - "custom": 1, - "_template": 1, - "keyword_.": 1, - "The": 2, - "style": 3, - "works": 3, - "well": 3, - "when": 2, - "you": 1, - "need": 3, - "to": 5, - "repeat": 1, - "same": 1, - "workflow": 3, - "multiple": 2, - "times.": 1, - "Notice": 1, - "one": 1, - "of": 3, - "these": 1, - "tests": 5, - "fails": 1, - "on": 1, - "purpose": 1, - "show": 1, - "how": 1, - "failures": 1, - "look": 1, - "like.": 1, - "Test": 4, - "Template": 2, - "Library": 3, - "Cases": 3, - "Expression": 1, - "Expected": 1, - "Addition": 2, - "+": 6, - "Subtraction": 1, - "Multiplication": 1, - "*": 4, - "Division": 2, - "/": 5, - "Failing": 1, - "Calculation": 3, - "error": 4, - "[": 4, - "]": 4, - "should": 9, - "fail": 2, - "kekkonen": 1, - "Invalid": 2, - "button": 13, - "{": 15, - "EMPTY": 3, - "}": 15, - "expression.": 1, - "by": 3, - "zero.": 1, - "Keywords": 2, - "Arguments": 2, - "expression": 5, - "expected": 4, - "Push": 16, - "buttons": 4, - "C": 4, - "Result": 8, - "be": 9, - "Should": 2, - "cause": 1, - "equal": 1, - "#": 2, - "Using": 1, - "BuiltIn": 1, - "case": 1, "gherkin": 1, "syntax.": 1, + "...": 28, "This": 3, + "has": 5, + "a": 4, + "workflow": 3, "similar": 1, + "to": 5, + "keyword": 5, + "-": 16, + "driven": 4, "examples.": 1, + "The": 2, "difference": 1, + "is": 6, + "that": 5, + "keywords": 3, + "use": 2, "higher": 1, "abstraction": 1, "level": 1, @@ -58985,25 +58923,41 @@ "into": 1, "names.": 1, "kind": 2, + "of": 3, "_gherkin_": 2, "syntax": 1, "been": 3, "made": 1, "popular": 1, + "by": 3, + "[": 4, "http": 1, "//cukes.info": 1, "|": 1, "Cucumber": 1, + "]": 4, + ".": 4, "It": 1, + "works": 3, + "well": 3, "especially": 1, + "when": 2, + "tests": 5, "act": 1, "as": 1, "examples": 1, + "need": 3, + "be": 9, "easily": 1, "understood": 1, "also": 2, "business": 2, "people.": 1, + "Library": 3, + "CalculatorLibrary": 5, + "Test": 4, + "Cases": 3, + "Addition": 2, "Given": 1, "calculator": 1, "cleared": 2, @@ -59014,8 +58968,79 @@ "equals": 2, "Then": 1, "result": 2, + "Keywords": 2, "Calculator": 1, + "Push": 16, + "button": 13, + "C": 4, "User": 2, + "buttons": 4, + "{": 15, + "expression": 5, + "}": 15, + "Result": 8, + "should": 9, + "cases": 2, + "data": 2, + "testing": 2, + "approach.": 2, + "Tests": 1, + "Calculate": 3, + "created": 1, + "in": 5, + "this": 1, + "file": 1, + "turn": 1, + "uses": 1, + "An": 1, + "exception": 1, + "last": 1, + "custom": 1, + "_template": 1, + "keyword_.": 1, + "style": 3, + "you": 1, + "repeat": 1, + "same": 1, + "multiple": 2, + "times.": 1, + "Notice": 1, + "one": 1, + "these": 1, + "fails": 1, + "on": 1, + "purpose": 1, + "show": 1, + "how": 1, + "failures": 1, + "look": 1, + "like.": 1, + "Template": 2, + "Expression": 1, + "Expected": 1, + "+": 6, + "Subtraction": 1, + "Multiplication": 1, + "*": 4, + "Division": 2, + "/": 5, + "Failing": 1, + "Calculation": 3, + "error": 4, + "fail": 2, + "kekkonen": 1, + "Invalid": 2, + "EMPTY": 3, + "expression.": 1, + "zero.": 1, + "Arguments": 2, + "expected": 4, + "Should": 2, + "cause": 1, + "equal": 1, + "#": 2, + "Using": 1, + "BuiltIn": 1, "All": 1, "contain": 1, "constructed": 1, @@ -59047,504 +59072,37 @@ "variable": 1 }, "Ruby": { - "Pry.config.commands.import": 1, - "Pry": 1, - "ExtendedCommands": 1, - "Experimental": 1, - "Pry.config.pager": 1, - "false": 29, - "Pry.config.color": 1, - "Pry.config.commands.alias_command": 1, - "Pry.config.commands.command": 1, + "Jenkins": 1, + "Plugin": 1, + "Specification.new": 1, "do": 38, "|": 93, - "*args": 17, - "output.puts": 1, - "end": 239, - "Pry.config.history.should_save": 1, - "Pry.config.prompt": 1, - "[": 58, - "proc": 2, - "{": 70, - "}": 70, - "]": 58, - "Pry.plugins": 1, - ".disable": 1, - "appraise": 2, - "gem": 3, - "load": 3, - "Dir": 4, - ".each": 4, "plugin": 3, - "(": 244, - ")": 256, - "task": 2, - "default": 2, + "plugin.name": 1, + "plugin.display_name": 1, + "plugin.version": 1, + "plugin.description": 1, + "plugin.url": 1, + "plugin.developed_by": 1, + "plugin.uses_repository": 1, + "github": 1, + "plugin.depends_on": 1, + "#plugin.depends_on": 1, + "end": 239, + "SHEBANG#!ruby": 2, "puts": 12, - "module": 8, - "Foo": 1, "require": 58, - "class": 7, - "Formula": 2, - "include": 3, - "FileUtils": 1, - "attr_reader": 5, - "name": 51, - "path": 16, - "url": 12, - "version": 10, - "homepage": 2, - "specs": 14, - "downloader": 6, - "standard": 2, - "unstable": 2, - "head": 3, - "bottle_version": 2, - "bottle_url": 3, - "bottle_sha1": 2, - "buildpath": 1, - "def": 143, - "initialize": 2, - "nil": 21, - "set_instance_variable": 12, - "if": 72, - "@head": 4, - "and": 6, - "not": 3, - "@url": 8, - "or": 7, - "ARGV.build_head": 2, - "@version": 10, - "@spec_to_use": 4, - "@unstable": 2, - "else": 25, - "@standard.nil": 1, - "SoftwareSpecification.new": 3, - "@specs": 3, - "@standard": 3, - "raise": 17, - "@url.nil": 1, - "@name": 3, - "validate_variable": 7, - "@path": 1, - "path.nil": 1, - "self.class.path": 1, - "Pathname.new": 3, - "||": 22, - "@spec_to_use.detect_version": 1, - "CHECKSUM_TYPES.each": 1, - "type": 10, - "@downloader": 2, - "download_strategy.new": 2, - "@spec_to_use.url": 1, - "@spec_to_use.specs": 1, - "@bottle_url": 2, - "bottle_base_url": 1, - "+": 47, - "bottle_filename": 1, - "self": 11, - "@bottle_sha1": 2, - "installed": 2, - "return": 25, - "installed_prefix.children.length": 1, - "rescue": 13, - "explicitly_requested": 1, - "ARGV.named.empty": 1, - "ARGV.formulae.include": 1, - "linked_keg": 1, - "HOMEBREW_REPOSITORY/": 2, - "/@name": 1, - "installed_prefix": 1, - "head_prefix": 2, - "HOMEBREW_CELLAR": 2, - "head_prefix.directory": 1, - "prefix": 14, - "rack": 1, - ";": 41, - "prefix.parent": 1, - "bin": 1, - "doc": 1, - "info": 2, - "lib": 1, - "libexec": 1, - "man": 9, - "man1": 1, - "man2": 1, - "man3": 1, - "man4": 1, - "man5": 1, - "man6": 1, - "man7": 1, - "man8": 1, - "sbin": 1, - "share": 1, - "etc": 1, - "HOMEBREW_PREFIX": 2, - "var": 1, - "plist_name": 2, - "plist_path": 1, - "download_strategy": 1, - "@spec_to_use.download_strategy": 1, - "cached_download": 1, - "@downloader.cached_location": 1, - "caveats": 1, - "options": 3, - "patches": 2, - "keg_only": 2, - "self.class.keg_only_reason": 1, - "fails_with": 2, - "cc": 3, - "self.class.cc_failures.nil": 1, - "Compiler.new": 1, - "unless": 15, - "cc.is_a": 1, - "Compiler": 1, - "self.class.cc_failures.find": 1, - "failure": 1, - "next": 1, - "failure.compiler": 1, - "cc.name": 1, - "failure.build.zero": 1, - "failure.build": 1, - "cc.build": 1, - "skip_clean": 2, - "true": 15, - "self.class.skip_clean_all": 1, - "to_check": 2, - "path.relative_path_from": 1, - ".to_s": 3, - "self.class.skip_clean_paths.include": 1, - "brew": 2, - "stage": 2, - "begin": 9, - "patch": 3, - "yield": 5, - "Interrupt": 2, - "RuntimeError": 1, - "SystemCallError": 1, - "e": 8, - "#": 100, - "don": 1, - "config.log": 2, - "t": 3, - "a": 10, - "std_autotools": 1, - "variant": 1, - "because": 1, - "autotools": 1, - "is": 3, - "lot": 1, - "std_cmake_args": 1, - "%": 10, - "W": 1, - "-": 34, - "DCMAKE_INSTALL_PREFIX": 1, - "DCMAKE_BUILD_TYPE": 1, - "None": 1, - "DCMAKE_FIND_FRAMEWORK": 1, - "LAST": 1, - "Wno": 1, - "dev": 1, - "self.class_s": 2, - "#remove": 1, - "invalid": 1, - "characters": 1, - "then": 4, - "camelcase": 1, - "it": 1, - "name.capitalize.gsub": 1, - "/": 34, - "_.": 1, - "s": 2, - "zA": 1, - "Z0": 1, - "upcase": 1, - ".gsub": 5, - "self.names": 1, - ".map": 6, - "f": 11, - "File.basename": 2, - ".sort": 2, - "self.all": 1, - "map": 1, - "self.map": 1, - "rv": 3, - "each": 1, - "<<": 15, - "self.each": 1, - "names.each": 1, - "n": 4, - "Formula.factory": 2, - "onoe": 2, - "inspect": 2, - "self.aliases": 1, - "self.canonical_name": 1, - "name.to_s": 3, - "name.kind_of": 2, - "Pathname": 2, - "formula_with_that_name": 1, - "HOMEBREW_REPOSITORY": 4, - "possible_alias": 1, - "possible_cached_formula": 1, - "HOMEBREW_CACHE_FORMULA": 2, - "name.include": 2, - "r": 3, - ".": 3, - "tapd": 1, - ".downcase": 2, - "tapd.find_formula": 1, - "relative_pathname": 1, - "relative_pathname.stem.to_s": 1, - "tapd.directory": 1, - "elsif": 7, - "formula_with_that_name.file": 1, - "formula_with_that_name.readable": 1, - "possible_alias.file": 1, - "possible_alias.realpath.basename": 1, - "possible_cached_formula.file": 1, - "possible_cached_formula.to_s": 1, - "self.factory": 1, - "https": 1, - "ftp": 1, - "//": 3, - ".basename": 1, - "target_file": 6, - "name.basename": 1, - "HOMEBREW_CACHE_FORMULA.mkpath": 1, - "FileUtils.rm": 1, - "force": 1, - "curl": 1, - "install_type": 4, - "from_url": 1, - "Formula.canonical_name": 1, - ".rb": 1, - "path.stem": 1, - "from_path": 1, - "path.to_s": 3, - "Formula.path": 1, - "from_name": 2, - "klass_name": 2, - "klass": 16, - "Object.const_get": 1, - "NameError": 2, - "LoadError": 3, - "klass.new": 2, - "FormulaUnavailableError.new": 1, - "tap": 1, - "path.realpath.to_s": 1, - "/Library/Taps/": 1, - "w": 6, - "self.path": 1, - "mirrors": 4, - "self.class.mirrors": 1, - "deps": 1, - "self.class.dependencies.deps": 1, - "external_deps": 1, - "self.class.dependencies.external_deps": 1, - "recursive_deps": 1, - "Formula.expand_deps": 1, - ".flatten.uniq": 1, - "self.expand_deps": 1, - "f.deps.map": 1, - "dep": 3, - "f_dep": 3, - "dep.to_s": 1, - "expand_deps": 1, - "protected": 1, - "system": 1, - "cmd": 6, - "pretty_args": 1, - "args.dup": 1, - "pretty_args.delete": 1, - "ARGV.verbose": 2, - "ohai": 3, - ".strip": 1, - "removed_ENV_variables": 2, - "case": 5, - "args.empty": 1, - "cmd.split": 1, - ".first": 1, - "when": 11, - "ENV.remove_cc_etc": 1, - "safe_system": 4, - "rd": 1, - "wr": 3, - "IO.pipe": 1, - "pid": 1, - "fork": 1, - "rd.close": 1, - "stdout.reopen": 1, - "stderr.reopen": 1, - "args.collect": 1, - "arg": 1, - "arg.to_s": 1, - "exec": 2, - "exit": 2, - "never": 1, - "gets": 1, - "here": 1, - "threw": 1, - "failed": 3, - "wr.close": 1, - "out": 4, - "rd.read": 1, - "until": 1, - "rd.eof": 1, - "Process.wait": 1, - ".success": 1, - "removed_ENV_variables.each": 1, - "key": 8, - "value": 4, - "ENV": 4, - "ENV.kind_of": 1, - "Hash": 3, - "BuildError.new": 1, - "args": 5, - "public": 2, - "fetch": 2, - "install_bottle": 1, - "CurlBottleDownloadStrategy.new": 1, - "mirror_list": 2, - "HOMEBREW_CACHE.mkpath": 1, - "fetched": 4, - "downloader.fetch": 1, - "CurlDownloadStrategyError": 1, - "mirror_list.empty": 1, - "mirror_list.shift.values_at": 1, - "retry": 2, - "checksum_type": 2, - "CHECKSUM_TYPES.detect": 1, - "instance_variable_defined": 2, - "verify_download_integrity": 2, - "fn": 2, - "args.length": 1, - "md5": 2, - "supplied": 4, - "instance_variable_get": 2, - "type.to_s.upcase": 1, - "hasher": 2, - "Digest.const_get": 1, - "hash": 2, - "fn.incremental_hash": 1, - "supplied.empty": 1, - "message": 2, - "EOF": 2, - "mismatch": 1, - "Expected": 1, - "Got": 1, - "Archive": 1, - "To": 1, - "an": 1, - "incomplete": 1, - "download": 1, - "remove": 1, - "the": 8, - "file": 1, - "above.": 1, - "supplied.upcase": 1, - "hash.upcase": 1, - "opoo": 1, - "private": 3, - "CHECKSUM_TYPES": 2, - "sha1": 4, - "sha256": 1, - ".freeze": 1, - "fetched.kind_of": 1, - "mktemp": 1, - "downloader.stage": 1, - "@buildpath": 2, - "Pathname.pwd": 1, - "patch_list": 1, - "Patches.new": 1, - "patch_list.empty": 1, - "patch_list.external_patches": 1, - "patch_list.download": 1, - "patch_list.each": 1, - "p": 2, - "p.compression": 1, - "gzip": 1, - "p.compressed_filename": 2, - "bzip2": 1, - "*": 3, - "p.patch_args": 1, - "v": 2, - "v.to_s.empty": 1, - "s/": 1, - "class_value": 3, - "self.class.send": 1, - "instance_variable_set": 1, - "self.method_added": 1, - "method": 4, - "self.attr_rw": 1, - "attrs": 1, - "attrs.each": 1, - "attr": 4, - "class_eval": 1, - "Q": 1, - "val": 10, - "val.nil": 3, - "@#": 2, - "attr_rw": 4, - "keg_only_reason": 1, - "skip_clean_all": 2, - "cc_failures": 1, - "stable": 2, - "&": 31, - "block": 30, - "block_given": 5, - "instance_eval": 2, - "ARGV.build_devel": 2, - "devel": 1, - "@mirrors": 3, - "clear": 1, - "from": 1, - "release": 1, - "bottle": 1, - "bottle_block": 1, - "Class.new": 2, - "self.version": 1, - "self.url": 1, - "self.sha1": 1, - "sha1.shift": 1, - "@sha1": 6, - "MacOS.cat": 1, - "String": 2, - "MacOS.lion": 1, - "self.data": 1, - "&&": 8, - "bottle_block.instance_eval": 1, - "@bottle_version": 1, - "bottle_block.data": 1, - "mirror": 1, - "@mirrors.uniq": 1, - "dependencies": 1, - "@dependencies": 1, - "DependencyCollector.new": 1, - "depends_on": 1, - "dependencies.add": 1, - "paths": 3, - "all": 1, - "@skip_clean_all": 2, - "@skip_clean_paths": 3, - ".flatten.each": 1, - "p.to_s": 2, - "@skip_clean_paths.include": 1, - "skip_clean_paths": 1, - "reason": 2, - "explanation": 1, - "@keg_only_reason": 1, - "KegOnlyReason.new": 1, - "explanation.to_s.chomp": 1, - "compiler": 3, - "@cc_failures": 2, - "CompilerFailures.new": 1, - "CompilerFailure.new": 2, - "Grit": 1, + "module": 8, "ActiveSupport": 1, + "#": 100, "Inflector": 1, "extend": 2, + "self": 11, + "def": 143, "pluralize": 3, + "(": 244, "word": 10, + ")": 256, "apply_inflections": 3, "inflections.plurals": 1, "singularize": 2, @@ -59552,27 +59110,44 @@ "camelize": 2, "term": 1, "uppercase_first_letter": 2, + "true": 15, "string": 4, "term.to_s": 1, + "if": 72, "string.sub": 2, + "/": 34, + "[": 58, + "a": 10, + "-": 34, "z": 7, "d": 6, + "]": 58, "*/": 1, + "{": 70, "inflections.acronyms": 1, + "&": 31, + "||": 22, ".capitalize": 1, + "}": 70, + "else": 25, "inflections.acronym_regex": 2, "b": 4, "A": 5, "Z_": 1, + "w": 6, + ".downcase": 2, "string.gsub": 1, "_": 2, + "*": 3, "/i": 2, + ".gsub": 5, "underscore": 3, "camel_cased_word": 6, "camel_cased_word.to_s.dup": 1, "word.gsub": 4, "Za": 1, "Z": 3, + "+": 47, "word.tr": 1, "word.downcase": 1, "humanize": 2, @@ -59594,6 +59169,8 @@ "": 1, "capitalize": 1, "Create": 1, + "the": 8, + "name": 51, "of": 1, "table": 2, "like": 1, @@ -59604,6 +59181,7 @@ "to": 1, "names": 2, "This": 1, + "method": 4, "uses": 1, "on": 2, "last": 4, @@ -59620,6 +59198,8 @@ "underscored_word": 1, "underscored_word.tr": 1, "demodulize": 1, + "path": 16, + "path.to_s": 3, "i": 2, "path.rindex": 2, "..": 1, @@ -59631,6 +59211,7 @@ "id": 1, "outside": 2, "inside": 2, + "s": 2, "owned": 1, "constant": 4, "constant.ancestors.inject": 1, @@ -59638,9 +59219,16 @@ "ancestor": 3, "Object": 1, "ancestor.const_defined": 1, + "false": 29, "constant.const_get": 1, "safe_constantize": 1, + "begin": 9, "constantize": 1, + "rescue": 13, + "NameError": 2, + "e": 8, + "raise": 17, + "unless": 15, "e.message": 2, "uninitialized": 1, "wrong": 1, @@ -59654,7 +59242,12 @@ "number": 2, ".include": 1, "number.to_i.abs": 2, + "%": 10, + "case": 5, + "when": 11, + ";": 41, "ordinalize": 1, + "private": 3, "nodoc": 3, "parts": 1, "camel_cased_word.split": 1, @@ -59670,46 +59263,6 @@ "result.downcase": 1, "Z/": 1, "rules.each": 1, - ".unshift": 1, - "File.dirname": 4, - "__FILE__": 3, - "For": 1, - "use/testing": 1, - "no": 1, - "require_all": 4, - "glob": 2, - "File.join": 6, - "Jekyll": 3, - "VERSION": 1, - "DEFAULTS": 2, - "Dir.pwd": 3, - "self.configuration": 1, - "override": 3, - "source": 2, - "config_file": 2, - "config": 3, - "YAML.load_file": 1, - "config.is_a": 1, - "stdout.puts": 1, - "err": 1, - "stderr.puts": 2, - "err.to_s": 1, - "DEFAULTS.deep_merge": 1, - ".deep_merge": 1, - "Jenkins": 1, - "Plugin": 1, - "Specification.new": 1, - "plugin.name": 1, - "plugin.display_name": 1, - "plugin.version": 1, - "plugin.description": 1, - "plugin.url": 1, - "plugin.developed_by": 1, - "plugin.uses_repository": 1, - "github": 1, - "plugin.depends_on": 1, - "#plugin.depends_on": 1, - "SHEBANG#!macruby": 1, "object": 2, "@user": 1, "person": 1, @@ -59731,12 +59284,20 @@ "u": 1, "partial": 1, "u.phone_numbers": 1, + "SHEBANG#!rake": 1, + "task": 2, + "default": 2, + "Grit": 1, "Resque": 3, + "include": 3, "Helpers": 1, "redis": 7, "server": 11, + "String": 2, "/redis": 1, + "//": 3, "Redis.connect": 2, + "url": 12, "thread_safe": 2, "namespace": 3, "server.split": 2, @@ -59757,19 +59318,23 @@ "@coder": 1, "MultiJsonCoder.new": 1, "attr_writer": 4, + "return": 25, "self.redis": 2, "Redis.respond_to": 1, "connect": 1, "redis_id": 2, "redis.respond_to": 2, "redis.server": 1, + "elsif": 7, "nodes": 1, "distributed": 1, "redis.nodes.map": 1, + "n": 4, "n.id": 1, ".join": 1, "redis.client.id": 1, "before_first_fork": 2, + "block": 30, "@before_first_fork": 2, "before_fork": 2, "@before_fork": 2, @@ -59782,9 +59347,11 @@ "push": 1, "queue": 24, "item": 4, + "<<": 15, "pop": 1, ".pop": 1, "ThreadError": 1, + "nil": 21, "size": 3, ".size": 1, "peek": 1, @@ -59792,17 +59359,22 @@ "count": 5, ".slice": 1, "list_range": 1, + "key": 8, "decode": 2, "redis.lindex": 1, "Array": 2, "redis.lrange": 1, + ".map": 6, "queues": 3, "redis.smembers": 1, "remove_queue": 1, ".destroy": 1, "@queues.delete": 1, "queue.to_s": 1, + "name.to_s": 3, "enqueue": 1, + "klass": 16, + "*args": 17, "enqueue_to": 2, "queue_from_class": 4, "before_hooks": 2, @@ -59813,6 +59385,7 @@ "before_hooks.any": 2, "Job.create": 1, "Plugin.after_enqueue_hooks": 1, + ".each": 4, "dequeue": 1, "Plugin.before_dequeue_hooks": 1, "Job.destroy": 1, @@ -59820,6 +59393,7 @@ "klass.instance_variable_get": 1, "@queue": 1, "klass.respond_to": 1, + "and": 6, "klass.queue": 1, "reserve": 1, "Job.reserve": 1, @@ -59836,6 +59410,7 @@ "worker": 1, "Worker.find": 1, "worker.unregister_worker": 1, + "info": 2, "pending": 1, "queues.inject": 1, "m": 3, @@ -59845,14 +59420,66 @@ "queues.size": 1, "workers.size.to_i": 1, "working.size": 1, + "failed": 3, "servers": 1, "environment": 2, + "ENV": 4, "keys": 6, "redis.keys": 1, "key.sub": 1, - "SHEBANG#!ruby": 2, - "SHEBANG#!rake": 1, + "SHEBANG#!python": 1, + "appraise": 2, + "gem": 3, + "Pry.config.commands.import": 1, + "Pry": 1, + "ExtendedCommands": 1, + "Experimental": 1, + "Pry.config.pager": 1, + "Pry.config.color": 1, + "Pry.config.commands.alias_command": 1, + "Pry.config.commands.command": 1, + "output.puts": 1, + "Pry.config.history.should_save": 1, + "Pry.config.prompt": 1, + "proc": 2, + "Pry.plugins": 1, + ".disable": 1, + "load": 3, + "Dir": 4, + ".unshift": 1, + "File.dirname": 4, + "__FILE__": 3, + "For": 1, + "use/testing": 1, + "no": 1, + "is": 3, + "installed": 2, + "require_all": 4, + "glob": 2, + "File.join": 6, + "f": 11, + "Jekyll": 3, + "VERSION": 1, + "DEFAULTS": 2, + "Dir.pwd": 3, + "self.configuration": 1, + "override": 3, + "source": 2, + "config_file": 2, + "config": 3, + "YAML.load_file": 1, + "config.is_a": 1, + "Hash": 3, + "stdout.puts": 1, + "err": 1, + "stderr.puts": 2, + "err.to_s": 1, + "DEFAULTS.deep_merge": 1, + ".deep_merge": 1, + "SHEBANG#!macruby": 1, + "Foo": 1, "Sinatra": 2, + "class": 7, "Request": 2, "<": 2, "Rack": 1, @@ -59865,9 +59492,11 @@ ".sort_by": 1, "first": 1, "preferred_type": 1, + "yield": 5, "self.defer": 1, "pattern": 1, "path.respond_to": 5, + "&&": 8, "path.keys": 1, "path.names": 1, "TypeError": 1, @@ -59879,6 +59508,7 @@ "char": 4, "enc": 5, "URI.escape": 1, + "public": 2, "helpers": 3, "data": 1, "reset": 1, @@ -59901,10 +59531,12 @@ "xml": 2, "xhtml": 1, "json": 1, + "t": 3, "settings.add_charset": 1, "text": 3, "session_secret": 3, "SecureRandom.hex": 1, + "LoadError": 3, "NotImplementedError": 1, "Kernel.rand": 1, "**256": 1, @@ -59913,6 +59545,7 @@ "run": 2, "via": 1, "at": 1, + "exit": 2, "running": 2, "built": 1, "now": 1, @@ -60008,12 +59641,16 @@ "methods.each": 1, "method_name": 5, "define_method": 1, + "args": 5, "respond_to": 1, "Delegator.target.send": 1, "delegate": 1, + "patch": 3, "put": 1, "post": 1, "delete": 1, + "head": 3, + "options": 3, "template": 1, "layout": 1, "before": 1, @@ -60028,6 +59665,7 @@ "target": 1, "self.target": 1, "Wrapper": 1, + "initialize": 2, "stack": 2, "instance": 2, "@stack": 1, @@ -60036,15 +59674,402 @@ "call": 1, "env": 2, "@stack.call": 1, + "inspect": 2, "self.new": 1, "base": 4, + "Class.new": 2, "base.class_eval": 1, + "block_given": 5, "Delegator.target.register": 1, "self.helpers": 1, "Delegator.target.helpers": 1, "self.use": 1, "Delegator.target.use": 1, - "SHEBANG#!python": 1 + "Formula": 2, + "FileUtils": 1, + "attr_reader": 5, + "version": 10, + "homepage": 2, + "specs": 14, + "downloader": 6, + "standard": 2, + "unstable": 2, + "bottle_version": 2, + "bottle_url": 3, + "bottle_sha1": 2, + "buildpath": 1, + "set_instance_variable": 12, + "@head": 4, + "not": 3, + "@url": 8, + "or": 7, + "ARGV.build_head": 2, + "@version": 10, + "@spec_to_use": 4, + "@unstable": 2, + "@standard.nil": 1, + "SoftwareSpecification.new": 3, + "@specs": 3, + "@standard": 3, + "@url.nil": 1, + "@name": 3, + "validate_variable": 7, + "@path": 1, + "path.nil": 1, + "self.class.path": 1, + "Pathname.new": 3, + "@spec_to_use.detect_version": 1, + "CHECKSUM_TYPES.each": 1, + "type": 10, + "@downloader": 2, + "download_strategy.new": 2, + "@spec_to_use.url": 1, + "@spec_to_use.specs": 1, + "@bottle_url": 2, + "bottle_base_url": 1, + "bottle_filename": 1, + "@bottle_sha1": 2, + "installed_prefix.children.length": 1, + "explicitly_requested": 1, + "ARGV.named.empty": 1, + "ARGV.formulae.include": 1, + "linked_keg": 1, + "HOMEBREW_REPOSITORY/": 2, + "/@name": 1, + "installed_prefix": 1, + "head_prefix": 2, + "HOMEBREW_CELLAR": 2, + "head_prefix.directory": 1, + "prefix": 14, + "rack": 1, + "prefix.parent": 1, + "bin": 1, + "doc": 1, + "lib": 1, + "libexec": 1, + "man": 9, + "man1": 1, + "man2": 1, + "man3": 1, + "man4": 1, + "man5": 1, + "man6": 1, + "man7": 1, + "man8": 1, + "sbin": 1, + "share": 1, + "etc": 1, + "HOMEBREW_PREFIX": 2, + "var": 1, + "plist_name": 2, + "plist_path": 1, + "download_strategy": 1, + "@spec_to_use.download_strategy": 1, + "cached_download": 1, + "@downloader.cached_location": 1, + "caveats": 1, + "patches": 2, + "keg_only": 2, + "self.class.keg_only_reason": 1, + "fails_with": 2, + "cc": 3, + "self.class.cc_failures.nil": 1, + "Compiler.new": 1, + "cc.is_a": 1, + "Compiler": 1, + "self.class.cc_failures.find": 1, + "failure": 1, + "next": 1, + "failure.compiler": 1, + "cc.name": 1, + "failure.build.zero": 1, + "failure.build": 1, + "cc.build": 1, + "skip_clean": 2, + "self.class.skip_clean_all": 1, + "to_check": 2, + "path.relative_path_from": 1, + ".to_s": 3, + "self.class.skip_clean_paths.include": 1, + "brew": 2, + "stage": 2, + "Interrupt": 2, + "RuntimeError": 1, + "SystemCallError": 1, + "don": 1, + "config.log": 2, + "std_autotools": 1, + "variant": 1, + "because": 1, + "autotools": 1, + "lot": 1, + "std_cmake_args": 1, + "W": 1, + "DCMAKE_INSTALL_PREFIX": 1, + "DCMAKE_BUILD_TYPE": 1, + "None": 1, + "DCMAKE_FIND_FRAMEWORK": 1, + "LAST": 1, + "Wno": 1, + "dev": 1, + "self.class_s": 2, + "#remove": 1, + "invalid": 1, + "characters": 1, + "then": 4, + "camelcase": 1, + "it": 1, + "name.capitalize.gsub": 1, + "_.": 1, + "zA": 1, + "Z0": 1, + "upcase": 1, + "self.names": 1, + "File.basename": 2, + ".sort": 2, + "self.all": 1, + "map": 1, + "self.map": 1, + "rv": 3, + "each": 1, + "self.each": 1, + "names.each": 1, + "Formula.factory": 2, + "onoe": 2, + "self.aliases": 1, + "self.canonical_name": 1, + "name.kind_of": 2, + "Pathname": 2, + "formula_with_that_name": 1, + "HOMEBREW_REPOSITORY": 4, + "possible_alias": 1, + "possible_cached_formula": 1, + "HOMEBREW_CACHE_FORMULA": 2, + "name.include": 2, + "r": 3, + ".": 3, + "tapd": 1, + "tapd.find_formula": 1, + "relative_pathname": 1, + "relative_pathname.stem.to_s": 1, + "tapd.directory": 1, + "formula_with_that_name.file": 1, + "formula_with_that_name.readable": 1, + "possible_alias.file": 1, + "possible_alias.realpath.basename": 1, + "possible_cached_formula.file": 1, + "possible_cached_formula.to_s": 1, + "self.factory": 1, + "https": 1, + "ftp": 1, + ".basename": 1, + "target_file": 6, + "name.basename": 1, + "HOMEBREW_CACHE_FORMULA.mkpath": 1, + "FileUtils.rm": 1, + "force": 1, + "curl": 1, + "install_type": 4, + "from_url": 1, + "Formula.canonical_name": 1, + ".rb": 1, + "path.stem": 1, + "from_path": 1, + "Formula.path": 1, + "from_name": 2, + "klass_name": 2, + "Object.const_get": 1, + "klass.new": 2, + "FormulaUnavailableError.new": 1, + "tap": 1, + "path.realpath.to_s": 1, + "/Library/Taps/": 1, + "self.path": 1, + "mirrors": 4, + "self.class.mirrors": 1, + "deps": 1, + "self.class.dependencies.deps": 1, + "external_deps": 1, + "self.class.dependencies.external_deps": 1, + "recursive_deps": 1, + "Formula.expand_deps": 1, + ".flatten.uniq": 1, + "self.expand_deps": 1, + "f.deps.map": 1, + "dep": 3, + "f_dep": 3, + "dep.to_s": 1, + "expand_deps": 1, + "protected": 1, + "system": 1, + "cmd": 6, + "pretty_args": 1, + "args.dup": 1, + "pretty_args.delete": 1, + "ARGV.verbose": 2, + "ohai": 3, + ".strip": 1, + "removed_ENV_variables": 2, + "args.empty": 1, + "cmd.split": 1, + ".first": 1, + "ENV.remove_cc_etc": 1, + "safe_system": 4, + "rd": 1, + "wr": 3, + "IO.pipe": 1, + "pid": 1, + "fork": 1, + "rd.close": 1, + "stdout.reopen": 1, + "stderr.reopen": 1, + "args.collect": 1, + "arg": 1, + "arg.to_s": 1, + "exec": 2, + "never": 1, + "gets": 1, + "here": 1, + "threw": 1, + "wr.close": 1, + "out": 4, + "rd.read": 1, + "until": 1, + "rd.eof": 1, + "Process.wait": 1, + ".success": 1, + "removed_ENV_variables.each": 1, + "value": 4, + "ENV.kind_of": 1, + "BuildError.new": 1, + "fetch": 2, + "install_bottle": 1, + "CurlBottleDownloadStrategy.new": 1, + "mirror_list": 2, + "HOMEBREW_CACHE.mkpath": 1, + "fetched": 4, + "downloader.fetch": 1, + "CurlDownloadStrategyError": 1, + "mirror_list.empty": 1, + "mirror_list.shift.values_at": 1, + "retry": 2, + "checksum_type": 2, + "CHECKSUM_TYPES.detect": 1, + "instance_variable_defined": 2, + "verify_download_integrity": 2, + "fn": 2, + "args.length": 1, + "md5": 2, + "supplied": 4, + "instance_variable_get": 2, + "type.to_s.upcase": 1, + "hasher": 2, + "Digest.const_get": 1, + "hash": 2, + "fn.incremental_hash": 1, + "supplied.empty": 1, + "message": 2, + "EOF": 2, + "mismatch": 1, + "Expected": 1, + "Got": 1, + "Archive": 1, + "To": 1, + "an": 1, + "incomplete": 1, + "download": 1, + "remove": 1, + "file": 1, + "above.": 1, + "supplied.upcase": 1, + "hash.upcase": 1, + "opoo": 1, + "CHECKSUM_TYPES": 2, + "sha1": 4, + "sha256": 1, + ".freeze": 1, + "fetched.kind_of": 1, + "mktemp": 1, + "downloader.stage": 1, + "@buildpath": 2, + "Pathname.pwd": 1, + "patch_list": 1, + "Patches.new": 1, + "patch_list.empty": 1, + "patch_list.external_patches": 1, + "patch_list.download": 1, + "patch_list.each": 1, + "p": 2, + "p.compression": 1, + "gzip": 1, + "p.compressed_filename": 2, + "bzip2": 1, + "p.patch_args": 1, + "v": 2, + "v.to_s.empty": 1, + "s/": 1, + "class_value": 3, + "self.class.send": 1, + "instance_variable_set": 1, + "self.method_added": 1, + "self.attr_rw": 1, + "attrs": 1, + "attrs.each": 1, + "attr": 4, + "class_eval": 1, + "Q": 1, + "val": 10, + "val.nil": 3, + "@#": 2, + "attr_rw": 4, + "keg_only_reason": 1, + "skip_clean_all": 2, + "cc_failures": 1, + "stable": 2, + "instance_eval": 2, + "ARGV.build_devel": 2, + "devel": 1, + "@mirrors": 3, + "clear": 1, + "from": 1, + "release": 1, + "bottle": 1, + "bottle_block": 1, + "self.version": 1, + "self.url": 1, + "self.sha1": 1, + "sha1.shift": 1, + "@sha1": 6, + "MacOS.cat": 1, + "MacOS.lion": 1, + "self.data": 1, + "bottle_block.instance_eval": 1, + "@bottle_version": 1, + "bottle_block.data": 1, + "mirror": 1, + "@mirrors.uniq": 1, + "dependencies": 1, + "@dependencies": 1, + "DependencyCollector.new": 1, + "depends_on": 1, + "dependencies.add": 1, + "paths": 3, + "all": 1, + "@skip_clean_all": 2, + "@skip_clean_paths": 3, + ".flatten.each": 1, + "p.to_s": 2, + "@skip_clean_paths.include": 1, + "skip_clean_paths": 1, + "reason": 2, + "explanation": 1, + "@keg_only_reason": 1, + "KegOnlyReason.new": 1, + "explanation.to_s.chomp": 1, + "compiler": 3, + "@cc_failures": 2, + "CompilerFailures.new": 1, + "CompilerFailure.new": 2 }, "Rust": { "//": 20, @@ -60471,23 +60496,9 @@ "port2.recv": 1 }, "SAS": { - "libname": 1, - "source": 1, - "data": 6, - "work.working_copy": 5, - ";": 22, - "set": 3, - "source.original_file.sas7bdat": 1, - "run": 6, - "if": 2, - "Purge": 1, - "then": 2, - "delete": 1, - "ImportantVariable": 1, - ".": 1, - "MissingFlag": 1, "proc": 2, "surveyselect": 1, + "data": 6, "work.data": 1, "out": 2, "work.boot": 2, @@ -60497,8 +60508,10 @@ "seed": 2, "sampsize": 1, "outhits": 1, + ";": 22, "samplingunit": 1, "Site": 1, + "run": 6, "PROC": 1, "MI": 1, "work.bootmi": 2, @@ -60515,7 +60528,19 @@ "model": 1, "Outcome": 1, "/": 1, - "risklimits": 1 + "risklimits": 1, + "libname": 1, + "source": 1, + "work.working_copy": 5, + "set": 3, + "source.original_file.sas7bdat": 1, + "if": 2, + "Purge": 1, + "then": 2, + "delete": 1, + "ImportantVariable": 1, + ".": 1, + "MissingFlag": 1 }, "SCSS": { "blue": 4, @@ -60539,22 +60564,37 @@ "/": 2 }, "SQL": { + "use": 1, + "translog": 1, + ";": 31, + "DROP": 3, + "VIEW": 1, "IF": 13, "EXISTS": 12, - "(": 131, - "SELECT": 4, + "suspendedtoday": 2, + "create": 2, + "view": 1, + "as": 1, + "select": 10, "*": 3, + "from": 2, + "suspended": 1, + "where": 2, + "datediff": 1, + "(": 131, + "datetime": 10, + "now": 1, + ")": 131, + "SELECT": 4, "FROM": 1, "DBO.SYSOBJECTS": 1, "WHERE": 1, "ID": 2, "OBJECT_ID": 1, "N": 7, - ")": 131, "AND": 1, "OBJECTPROPERTY": 1, "id": 22, - "DROP": 3, "PROCEDURE": 1, "dbo.AvailableInSearchSel": 2, "GO": 4, @@ -60574,9 +60614,20 @@ "rv": 1, "]": 1, "END": 1, + "if": 1, + "not": 5, + "exists": 1, + "sysobjects": 1, + "name": 3, + "and": 1, + "type": 3, + "in": 1, + "exec": 1, + "%": 2, + "object_ddl": 1, + "go": 1, "SHOW": 2, "WARNINGS": 2, - ";": 31, "-": 496, "Table": 9, "structure": 9, @@ -60594,7 +60645,6 @@ "content": 2, "longtext": 1, "date_posted": 4, - "datetime": 10, "created_by": 2, "last_modified": 2, "last_modified_by": 2, @@ -60632,7 +60682,6 @@ "tries": 1, "UNIQUE": 4, "classes": 4, - "name": 3, "date_created": 6, "archive": 2, "class_challenges": 4, @@ -60646,13 +60695,10 @@ "joined": 2, "last_visit": 2, "is_activated": 2, - "type": 3, "token": 3, "user_has_challenge_token": 3, - "create": 2, "FILIAL": 10, "NUMBER": 1, - "not": 5, "null": 4, "title_ua": 1, "VARCHAR2": 4, @@ -60669,7 +60715,6 @@ "primary": 1, "key": 1, "grant": 8, - "select": 10, "on": 8, "to": 8, "ATOLL": 1, @@ -60679,57 +60724,20 @@ "PLANMONITOR": 1, "SIEBEL": 1, "VBIS": 1, - "VPORTAL": 1, - "if": 1, - "exists": 1, - "from": 2, - "sysobjects": 1, - "where": 2, - "and": 1, - "in": 1, - "exec": 1, - "%": 2, - "object_ddl": 1, - "go": 1, - "use": 1, - "translog": 1, - "VIEW": 1, - "suspendedtoday": 2, - "view": 1, - "as": 1, - "suspended": 1, - "datediff": 1, - "now": 1 + "VPORTAL": 1 }, "STON": { "[": 11, "]": 11, "{": 15, - "#a": 1, - "#b": 1, "}": 15, "Rectangle": 1, "#origin": 1, "Point": 2, "-": 2, "#corner": 1, - "TestDomainObject": 1, - "#created": 1, - "DateAndTime": 2, - "#modified": 1, - "#integer": 1, - "#float": 1, - "#description": 1, - "#color": 1, - "#green": 1, - "#tags": 1, - "#two": 1, - "#beta": 1, - "#medium": 1, - "#bytes": 1, - "ByteArray": 1, - "#boolean": 1, - "false": 1, + "#a": 1, + "#b": 1, "ZnResponse": 1, "#headers": 2, "ZnHeaders": 1, @@ -60749,7 +60757,24 @@ "ZnStatusLine": 1, "#version": 1, "#code": 1, - "#reason": 1 + "#reason": 1, + "TestDomainObject": 1, + "#created": 1, + "DateAndTime": 2, + "#modified": 1, + "#integer": 1, + "#float": 1, + "#description": 1, + "#color": 1, + "#green": 1, + "#tags": 1, + "#two": 1, + "#beta": 1, + "#medium": 1, + "#bytes": 1, + "ByteArray": 1, + "#boolean": 1, + "false": 1 }, "Sass": { "blue": 7, @@ -60780,28 +60805,101 @@ "scala": 2, "#": 2, "object": 3, + "HelloWorld": 1, + "{": 21, + "def": 10, + "main": 1, + "(": 67, + "args": 1, + "Array": 1, + "[": 11, + "String": 5, + "]": 11, + ")": 67, + "println": 8, + "}": 22, + "import": 9, + "math.random": 1, + "scala.language.postfixOps": 1, + "scala.util._": 1, + "scala.util.": 1, + "Try": 1, + "Success": 2, + "Failure": 2, + "scala.concurrent._": 1, + "duration._": 1, + "ExecutionContext.Implicits.global": 1, + "scala.concurrent.": 1, + "ExecutionContext": 1, + "CanAwait": 1, + "OnCompleteRunnable": 1, + "TimeoutException": 1, + "ExecutionException": 1, + "blocking": 3, + "node11": 1, + "//": 29, + "Welcome": 1, + "to": 7, + "the": 5, + "Scala": 1, + "worksheet": 1, + "retry": 3, + "T": 8, + "n": 3, + "Int": 11, + "block": 8, + "Future": 5, + "val": 6, + "ns": 1, + "Iterator": 2, + ".iterator": 1, + "attempts": 1, + "ns.map": 1, + "_": 2, + "failed": 2, + "Future.failed": 1, + "new": 1, + "Exception": 2, + "attempts.foldLeft": 1, + "a": 4, + "fallbackTo": 1, + "scala.concurrent.Future": 1, + "scala.concurrent.Fut": 1, + "|": 19, + "ure": 1, + "rb": 3, + "i": 9, + "Thread.sleep": 2, + "*random.toInt": 1, + "+": 49, + "i.toString": 5, + "ri": 2, + "onComplete": 1, + "case": 8, + "s": 1, + "s.toString": 1, + "t": 1, + "t.toString": 1, + "r": 1, + "r.toString": 1, + "Unit": 1, + "toList": 1, + ".foreach": 1, + "Iteration": 5, + "java.lang.Exception": 1, + "Hi": 10, + "-": 5, "Beers": 1, "extends": 1, "Application": 1, - "{": 21, - "def": 10, "bottles": 3, - "(": 67, "qty": 12, - "Int": 11, "f": 4, - "String": 5, - ")": 67, - "//": 29, "higher": 1, - "-": 5, "order": 1, "functions": 2, "match": 2, - "case": 8, - "+": 49, "x": 3, - "}": 22, "beers": 3, "sing": 3, "implicit": 3, @@ -60815,9 +60913,7 @@ ".capitalize": 1, "tail": 1, "recursion": 1, - "val": 6, "headOfSong": 1, - "println": 8, "parameter": 1, "name": 4, "version": 1, @@ -60844,10 +60940,8 @@ "<+=>": 1, "baseDirectory": 1, "map": 1, - "_": 2, "input": 1, "add": 2, - "a": 4, "maven": 2, "style": 2, "repository": 2, @@ -60858,8 +60952,6 @@ "of": 1, "repositories": 1, "define": 1, - "the": 5, - "to": 7, "publish": 1, "publishTo": 1, "set": 2, @@ -60897,7 +60989,6 @@ "false": 7, "showSuccess": 1, "timingFormat": 1, - "import": 9, "java.text.DateFormat": 1, "DateFormat.getDateTimeInstance": 1, "DateFormat.SHORT": 2, @@ -60925,73 +61016,7 @@ "credentials": 2, "Credentials": 2, "Path.userHome": 1, - "/": 2, - "math.random": 1, - "scala.language.postfixOps": 1, - "scala.util._": 1, - "scala.util.": 1, - "Try": 1, - "Success": 2, - "Failure": 2, - "scala.concurrent._": 1, - "duration._": 1, - "ExecutionContext.Implicits.global": 1, - "scala.concurrent.": 1, - "ExecutionContext": 1, - "CanAwait": 1, - "OnCompleteRunnable": 1, - "TimeoutException": 1, - "ExecutionException": 1, - "blocking": 3, - "node11": 1, - "Welcome": 1, - "Scala": 1, - "worksheet": 1, - "retry": 3, - "[": 11, - "T": 8, - "]": 11, - "n": 3, - "block": 8, - "Future": 5, - "ns": 1, - "Iterator": 2, - ".iterator": 1, - "attempts": 1, - "ns.map": 1, - "failed": 2, - "Future.failed": 1, - "new": 1, - "Exception": 2, - "attempts.foldLeft": 1, - "fallbackTo": 1, - "scala.concurrent.Future": 1, - "scala.concurrent.Fut": 1, - "|": 19, - "ure": 1, - "rb": 3, - "i": 9, - "Thread.sleep": 2, - "*random.toInt": 1, - "i.toString": 5, - "ri": 2, - "onComplete": 1, - "s": 1, - "s.toString": 1, - "t": 1, - "t.toString": 1, - "r": 1, - "r.toString": 1, - "Unit": 1, - "toList": 1, - ".foreach": 1, - "Iteration": 5, - "java.lang.Exception": 1, - "Hi": 10, - "HelloWorld": 1, - "main": 1, - "args": 1, - "Array": 1 + "/": 2 }, "Scaml": { "%": 1, @@ -61001,25 +61026,37 @@ }, "Scheme": { "(": 366, + "define": 30, + "-": 192, + "library": 1, + "libs": 1, + "basic": 2, + ")": 380, + "export": 1, + "list2": 2, + "x": 10, + "begin": 2, + ".": 2, + "objs": 2, + "should": 1, + "not": 1, + "be": 1, + "exported": 1, "import": 1, "rnrs": 1, - ")": 380, "only": 1, "surfage": 4, "s1": 1, "lists": 1, "filter": 4, - "-": 192, "map": 4, "gl": 12, "glut": 2, "dharmalab": 2, "records": 1, - "define": 30, "record": 5, "type": 5, "math": 1, - "basic": 2, "agave": 4, "glu": 1, "compat": 1, @@ -61039,7 +61076,6 @@ ";": 1684, "utilities": 1, "say": 9, - ".": 2, "args": 2, "for": 7, "each": 7, @@ -61048,7 +61084,6 @@ "translate": 6, "p": 6, "glTranslated": 1, - "x": 10, "y": 3, "radians": 8, "/": 7, @@ -61161,7 +61196,6 @@ "when": 5, "<=>": 3, "distance": 3, - "begin": 2, "1": 2, "f": 1, "append": 4, @@ -61186,33 +61220,27 @@ "s": 1, "space": 1, "cons": 1, - "glutMainLoop": 1, - "library": 1, - "libs": 1, - "export": 1, - "list2": 2, - "objs": 2, - "should": 1, - "not": 1, - "be": 1, - "exported": 1 + "glutMainLoop": 1 }, "Scilab": { + "assert_checkequal": 1, + "(": 7, + "+": 5, + ")": 7, + ";": 7, + "assert_checkfalse": 1, + "%": 4, + "pi": 3, + "e": 4, + "disp": 1, "function": 1, "[": 1, "a": 4, "b": 4, "]": 1, "myfunction": 1, - "(": 7, "d": 2, - "e": 4, "f": 2, - ")": 7, - "+": 5, - "%": 4, - "pi": 3, - ";": 7, "cos": 1, "cosh": 1, "if": 1, @@ -61224,96 +61252,428 @@ "return": 1, "end": 1, "myvar": 1, - "endfunction": 1, - "disp": 1, - "assert_checkequal": 1, - "assert_checkfalse": 1 + "endfunction": 1 }, "Shell": { "SHEBANG#!bash": 8, - "typeset": 5, + "echo": 71, + "#": 53, + "Bash": 3, + "script": 1, + "to": 33, + "the": 17, + "dotfile": 1, + "repository": 3, + "does": 1, + "a": 12, + "lot": 1, + "of": 6, + "fun": 2, + "stuff": 3, + "like": 1, + "turning": 1, + "normal": 1, + "dotfiles": 1, + "(": 107, + "eg": 1, + ".bashrc": 1, + ")": 154, + "into": 3, + "symlinks": 1, + "this": 6, + "git": 16, + "pull": 3, + "away": 1, + "optionally": 1, + "moving": 1, + "old": 4, + "files": 1, + "so": 1, + "that": 1, + "they": 1, + "can": 3, + "be": 3, + "preserved": 1, + "setting": 2, + "up": 1, + "cron": 1, + "job": 3, + "automate": 1, + "aforementioned": 1, + "and": 5, + "maybe": 1, + "some": 1, + "more": 3, + "shopt": 13, "-": 391, + "s": 14, + "nocasematch": 1, + "This": 1, + "makes": 1, + "pattern": 1, + "matching": 1, + "case": 9, + "insensitive": 1, + "POSTFIX": 1, + "URL": 1, + "PUSHURL": 1, + "overwrite": 3, + "true": 2, + "print_help": 2, + "{": 63, + "e": 4, + "exit": 10, + "}": 61, + "for": 7, + "opt": 3, + "in": 25, + "@": 3, + ";": 138, + "do": 8, + "k": 1, + "|": 17, + "keep": 3, + "local": 22, + "false": 2, + "h": 3, + "help": 5, + "esac": 7, + "done": 8, + "f": 68, + ".*": 2, + "if": 39, + "[": 85, + "o": 3, + "]": 85, + "then": 41, + "continue": 1, + "fi": 34, + "mv": 1, + "else": 10, + "rm": 2, + "ln": 1, + "config": 4, + "remote.origin.url": 1, + "remote.origin.pushurl": 1, + "crontab": 1, + ".jobs.cron": 1, + "source": 7, + "/.bashrc": 3, + "SHEBANG#!zsh": 2, + "SHEBANG#!sh": 2, + "typeset": 5, "i": 2, "n": 22, "bottles": 6, "no": 16, "while": 3, - "[": 85, - "]": 85, - "do": 8, - "echo": 71, - "case": 9, - "{": 63, - "}": 61, - "in": 25, - ")": 154, "%": 5, - "s": 14, - ";": 138, - "esac": 7, - "done": 8, - "exit": 10, - "/usr/bin/clear": 2, - "##": 28, - "if": 39, - "z": 12, - "then": 41, - "export": 25, - "SCREENDIR": 2, - "fi": 34, - "PATH": 14, - "/usr/local/bin": 6, - "/usr/local/sbin": 6, - "/usr/xpg4/bin": 4, - "/usr/sbin": 6, - "/usr/bin": 8, - "/usr/sfw/bin": 4, - "/usr/ccs/bin": 4, - "/usr/openwin/bin": 4, - "/opt/mysql/current/bin": 4, - "MANPATH": 2, - "/usr/local/man": 2, - "/usr/share/man": 2, - "Random": 2, - "ENV...": 2, - "TERM": 4, - "COLORTERM": 2, - "CLICOLOR": 2, - "#": 53, - "can": 3, - "be": 3, - "set": 21, - "to": 33, - "anything": 2, - "actually": 2, - "DISPLAY": 2, - "r": 17, + "rvm_ignore_rvmrc": 1, + "declare": 22, + "rvmrc": 3, + "rvm_rvmrc_files": 3, "&&": 65, - ".": 5, + "ef": 1, + "+": 1, + "GREP_OPTIONS": 1, + "grep": 8, + "/dev/null": 6, + "&": 5, + "printf": 4, + "unset": 10, + "export": 25, + "rvm_path": 4, + "z": 12, + "UID": 1, + "d": 9, + "elif": 4, + "rvm_is_not_a_shell_function": 2, + "rvm_path/scripts": 1, + "rvm": 1, + "r": 17, + "sbt_release_version": 2, + "sbt_snapshot_version": 2, + "SNAPSHOT": 3, + "sbt_jar": 3, + "sbt_dir": 2, + "sbt_create": 2, + "sbt_snapshot": 1, + "sbt_launch_dir": 3, + "scala_version": 3, + "java_home": 1, + "sbt_explicit_version": 7, + "verbose": 6, + "debug": 11, + "quiet": 6, + "build_props_sbt": 3, + "project/build.properties": 9, + "versionLine": 2, + "sbt.version": 3, + "versionString": 3, + "versionLine##sbt.version": 1, + "update_build_props_sbt": 2, + "ver": 5, + "return": 3, + "perl": 3, + "pi": 1, + "q": 8, + "||": 12, + "Updated": 1, + "file": 9, + "Previous": 1, + "value": 1, + "was": 1, + "sbt_version": 8, + "v": 11, + "echoerr": 3, + "vlog": 1, + "dlog": 8, + "get_script_path": 2, + "path": 13, + "L": 1, + "target": 1, + "readlink": 1, + "get_mem_opts": 3, + "mem": 4, + "perm": 6, + "/": 2, + "<": 2, + "codecache": 1, + "die": 2, + "make_url": 3, + "groupid": 1, + "category": 1, + "version": 12, + "default_jvm_opts": 1, + "default_sbt_opts": 1, + "default_sbt_mem": 2, + "noshare_opts": 1, + "sbt_opts_file": 1, + "jvm_opts_file": 1, + "latest_28": 1, + "latest_29": 1, + "latest_210": 1, + "script_path": 1, + "script_dir": 1, + "script_name": 2, + "java_cmd": 2, + "java": 2, + "sbt_mem": 5, + "residual_args": 4, + "java_args": 3, + "scalac_args": 4, + "sbt_commands": 2, + "build_props_scala": 1, + "build.scala.versions": 1, + "versionLine##build.scala.versions": 1, + "execRunner": 2, + "arg": 3, + "exec": 3, + "sbt_groupid": 3, + "*": 11, + "org.scala": 4, + "tools.sbt": 3, + "sbt": 18, + "sbt_artifactory_list": 2, + "version0": 2, + "url": 4, + "curl": 8, + "list": 3, + "only": 6, + "F": 1, + "pe": 1, + "make_release_url": 2, + "releases": 1, + "make_snapshot_url": 2, + "snapshots": 1, + "head": 1, + "jar_url": 1, + "jar_file": 1, + "download_url": 2, + "jar": 3, + "mkdir": 2, + "p": 2, + "dirname": 1, + "which": 10, + "fail": 1, + "silent": 1, + "output": 1, + "wget": 2, + "O": 1, + "acquire_sbt_jar": 1, + "sbt_url": 1, + "usage": 2, + "cat": 3, + "<<": 2, + "EOM": 3, + "Usage": 1, + "options": 8, + "print": 1, + "message": 1, + "runner": 1, + "is": 11, + "chattier": 1, + "set": 21, + "log": 2, + "level": 2, + "Debug": 1, + "Error": 1, + "colors": 2, + "disable": 1, + "ANSI": 1, + "color": 1, + "codes": 1, + "create": 2, + "start": 1, + "even": 3, + "current": 1, + "directory": 5, + "contains": 2, + "project": 1, + "dir": 3, + "": 3, + "global": 1, + "settings/plugins": 1, + "default": 4, + "/.sbt/": 1, + "": 1, + "boot": 3, + "shared": 1, + "/.sbt/boot": 1, + "series": 1, + "ivy": 2, + "Ivy": 1, + "/.ivy2": 1, + "": 1, + "memory": 3, + "share": 2, + "use": 1, + "all": 1, + "caches": 1, + "sharing": 1, + "offline": 3, + "put": 1, + "mode": 2, + "jvm": 2, + "": 1, + "Turn": 1, + "on": 4, + "JVM": 1, + "debugging": 1, + "open": 1, + "at": 1, + "given": 2, + "port.": 1, + "batch": 2, + "Disable": 1, + "interactive": 1, + "The": 1, + "way": 1, + "accomplish": 1, + "pre": 1, + "there": 2, + "build.properties": 1, + "an": 1, + "property": 1, + "update": 2, + "disk.": 1, + "That": 1, + "scalacOptions": 3, + "S": 2, + "stripped": 1, + "In": 1, + "duplicated": 1, + "or": 3, + "conflicting": 1, + "order": 1, + "above": 1, + "shows": 1, + "precedence": 1, + "JAVA_OPTS": 1, + "lowest": 1, + "command": 5, + "line": 1, + "highest.": 1, + "addJava": 9, + "addSbt": 12, + "addScalac": 2, + "addResidual": 2, + "addResolver": 1, + "addDebugger": 2, + "get_jvm_opts": 2, + "process_args": 2, + "require_arg": 12, + "type": 5, + "gt": 1, + "shift": 28, + "integer": 1, + "inc": 1, + "port": 1, + "snapshot": 1, + "launch": 1, + "scala": 3, + "home": 2, + "D*": 1, + "J*": 1, + "S*": 1, + "sbtargs": 3, + "IFS": 1, + "read": 1, + "<\"$sbt_opts_file\">": 1, + "process": 1, + "combined": 1, + "args": 2, + "reset": 1, + "residuals": 1, + "argumentCount=": 1, + "we": 1, + "were": 1, + "any": 1, + "opts": 1, + "eq": 1, + "0": 1, + "ThisBuild": 1, + "Update": 1, + "build": 2, + "properties": 1, + "disk": 5, + "explicit": 1, + "gives": 1, + "us": 1, + "choice": 1, + "Detected": 1, + "Overriding": 1, + "alert": 1, + "them": 1, + "here": 1, + "argumentCount": 1, + "./build.sbt": 1, + "./project": 1, + "pwd": 1, + "doesn": 1, + "t": 3, + "understand": 1, + "iflast": 1, + "#residual_args": 1, + "##": 28, "function": 6, "ls": 6, - "command": 5, "Fh": 2, "l": 8, - "list": 3, "long": 2, "format...": 2, "ll": 2, - "|": 17, "less": 2, "XF": 2, "pipe": 2, - "into": 3, "#CDPATH": 2, "HISTIGNORE": 2, "HISTCONTROL": 2, "ignoreboth": 2, - "shopt": 13, "cdspell": 2, "extglob": 2, "progcomp": 2, "complete": 82, - "f": 68, "X": 54, "bunzip2": 2, "bzcat": 2, @@ -61389,7 +61749,6 @@ "opera": 2, "w3m": 2, "galeon": 2, - "curl": 8, "dillo": 2, "elinks": 2, "links": 2, @@ -61400,7 +61759,6 @@ "user": 2, "commands": 8, "see": 4, - "only": 6, "users": 2, "A": 10, "stopped": 4, @@ -61413,64 +61771,42 @@ "fg": 2, "disown": 2, "other": 2, - "job": 3, - "v": 11, "readonly": 4, - "unset": 10, - "and": 5, "shell": 4, "variables": 2, "setopt": 8, - "options": 8, "helptopic": 2, - "help": 5, "helptopics": 2, - "a": 12, "unalias": 4, "aliases": 2, "binding": 2, "bind": 4, "readline": 2, "bindings": 2, - "(": 107, "make": 6, - "this": 6, - "more": 3, "intelligent": 2, "c": 2, - "type": 5, - "which": 10, "man": 6, "#sudo": 2, - "on": 4, - "d": 9, "pushd": 2, "cd": 11, "rmdir": 2, "Make": 2, - "directory": 5, "directories": 2, "W": 2, "alias": 42, "filenames": 2, - "for": 7, "PS1": 2, "..": 2, "cd..": 2, - "t": 3, "csh": 2, - "is": 11, "same": 2, "as": 2, "bash...": 2, "quit": 2, - "q": 8, - "even": 3, "shorter": 2, "D": 2, "rehash": 2, - "source": 7, - "/.bashrc": 3, "after": 2, "I": 2, "edit": 2, @@ -61480,46 +61816,142 @@ "sed": 2, "awk": 2, "diff": 2, - "grep": 8, "find": 2, "ps": 2, "whoami": 2, "ping": 2, "histappend": 2, "PROMPT_COMMAND": 2, + "PATH": 14, + "/usr/local/bin": 6, + "/usr/local/sbin": 6, + "/usr/xpg4/bin": 4, + "/usr/sbin": 6, + "/usr/bin": 8, + "/usr/sfw/bin": 4, + "/usr/ccs/bin": 4, + "/usr/openwin/bin": 4, + "/opt/mysql/current/bin": 4, + "pkgname": 1, + "stud": 4, + "pkgver": 1, + "pkgrel": 1, + "pkgdesc": 1, + "arch": 1, + "i686": 1, + "x86_64": 1, + "license": 1, + "depends": 1, + "libev": 1, + "openssl": 1, + "makedepends": 1, + "provides": 1, + "conflicts": 1, + "_gitroot": 1, + "https": 2, + "//github.com/bumptech/stud.git": 1, + "_gitname": 1, + "msg": 4, + "origin": 1, + "clone": 5, + "rf": 1, + "package": 1, + "PREFIX": 1, + "/usr": 1, + "DESTDIR": 1, + "install": 8, + "Dm755": 1, + "init.stud": 1, "umask": 2, - "path": 13, "/opt/local/bin": 2, "/opt/local/sbin": 2, "/bin": 4, "prompt": 2, "history": 18, "endif": 2, + "fpath": 6, + "HOME/.zsh/func": 2, + "U": 2, + "docker": 1, + "from": 1, + "ubuntu": 1, + "maintainer": 1, + "Solomon": 1, + "Hykes": 1, + "": 1, + "run": 13, + "apt": 6, + "get": 6, + "y": 5, + "//go.googlecode.com/files/go1.1.1.linux": 1, + "amd64.tar.gz": 1, + "tar": 1, + "C": 1, + "/usr/local": 1, + "xz": 1, + "env": 4, + "/usr/local/go/bin": 2, + "/sbin": 2, + "GOPATH": 1, + "/go": 1, + "CGO_ENABLED": 1, + "/tmp": 1, + "t.go": 1, + "go": 2, + "test": 1, + "PKG": 12, + "github.com/kr/pty": 1, + "REV": 6, + "c699": 1, + "http": 3, + "//": 3, + "/go/src/": 6, + "checkout": 3, + "github.com/gorilla/context/": 1, + "d61e5": 1, + "github.com/gorilla/mux/": 1, + "b36453141c": 1, + "iptables": 1, + "/etc/apt/sources.list": 1, + "lxc": 1, + "aufs": 1, + "tools": 1, + "add": 1, + ".": 5, + "/go/src/github.com/dotcloud/docker": 1, + "/go/src/github.com/dotcloud/docker/docker": 1, + "ldflags": 1, + "/go/bin": 1, + "cmd": 1, + "dirpersiststore": 2, + "SCREENDIR": 2, + "MANPATH": 2, + "/usr/local/man": 2, + "/usr/share/man": 2, + "Random": 2, + "ENV...": 2, + "TERM": 4, + "COLORTERM": 2, + "CLICOLOR": 2, + "anything": 2, + "actually": 2, + "DISPLAY": 2, "stty": 2, "istrip": 2, - "dirpersiststore": 2, "##############################################################################": 16, "#Import": 2, - "the": 17, "agnostic": 2, - "Bash": 3, - "or": 3, "Zsh": 2, "environment": 2, - "config": 4, "/.profile": 2, "HISTSIZE": 2, "#How": 2, "many": 2, "lines": 2, - "of": 6, - "keep": 3, - "memory": 3, "HISTFILE": 2, "/.zsh_history": 2, "#Where": 2, "save": 4, - "disk": 5, "SAVEHIST": 2, "#Number": 2, "entries": 2, @@ -61527,7 +61959,6 @@ "erase": 2, "#Erase": 2, "duplicates": 2, - "file": 9, "appendhistory": 2, "#Append": 2, "overwriting": 2, @@ -61549,428 +61980,18 @@ "#function": 2, "precmd": 2, "rupa/z.sh": 2, - "fpath": 6, - "HOME/.zsh/func": 2, - "U": 2, - "docker": 1, - "version": 12, - "from": 1, - "ubuntu": 1, - "maintainer": 1, - "Solomon": 1, - "Hykes": 1, - "": 1, - "run": 13, - "apt": 6, - "get": 6, - "install": 8, - "y": 5, - "git": 16, - "https": 2, - "//go.googlecode.com/files/go1.1.1.linux": 1, - "amd64.tar.gz": 1, - "tar": 1, - "C": 1, - "/usr/local": 1, - "xz": 1, - "env": 4, - "/usr/local/go/bin": 2, - "/sbin": 2, - "GOPATH": 1, - "/go": 1, - "CGO_ENABLED": 1, - "/tmp": 1, - "t.go": 1, - "go": 2, - "test": 1, - "PKG": 12, - "github.com/kr/pty": 1, - "REV": 6, - "c699": 1, - "clone": 5, - "http": 3, - "//": 3, - "/go/src/": 6, - "checkout": 3, - "github.com/gorilla/context/": 1, - "d61e5": 1, - "github.com/gorilla/mux/": 1, - "b36453141c": 1, - "iptables": 1, - "/etc/apt/sources.list": 1, - "update": 2, - "lxc": 1, - "aufs": 1, - "tools": 1, - "add": 1, - "/go/src/github.com/dotcloud/docker": 1, - "/go/src/github.com/dotcloud/docker/docker": 1, - "ldflags": 1, - "/go/bin": 1, - "cmd": 1, - "pkgname": 1, - "stud": 4, - "pkgver": 1, - "pkgrel": 1, - "pkgdesc": 1, - "arch": 1, - "i686": 1, - "x86_64": 1, - "url": 4, - "license": 1, - "depends": 1, - "libev": 1, - "openssl": 1, - "makedepends": 1, - "provides": 1, - "conflicts": 1, - "_gitroot": 1, - "//github.com/bumptech/stud.git": 1, - "_gitname": 1, - "build": 2, - "msg": 4, - "pull": 3, - "origin": 1, - "else": 10, - "rm": 2, - "rf": 1, - "package": 1, - "PREFIX": 1, - "/usr": 1, - "DESTDIR": 1, - "Dm755": 1, - "init.stud": 1, - "mkdir": 2, - "p": 2, - "script": 1, - "dotfile": 1, - "repository": 3, - "does": 1, - "lot": 1, - "fun": 2, - "stuff": 3, - "like": 1, - "turning": 1, - "normal": 1, - "dotfiles": 1, - "eg": 1, - ".bashrc": 1, - "symlinks": 1, - "away": 1, - "optionally": 1, - "moving": 1, - "old": 4, - "files": 1, - "so": 1, - "that": 1, - "they": 1, - "preserved": 1, - "setting": 2, - "up": 1, - "cron": 1, - "automate": 1, - "aforementioned": 1, - "maybe": 1, - "some": 1, - "nocasematch": 1, - "This": 1, - "makes": 1, - "pattern": 1, - "matching": 1, - "insensitive": 1, - "POSTFIX": 1, - "URL": 1, - "PUSHURL": 1, - "overwrite": 3, - "true": 2, - "print_help": 2, - "e": 4, - "opt": 3, - "@": 3, - "k": 1, - "local": 22, - "false": 2, - "h": 3, - ".*": 2, - "o": 3, - "continue": 1, - "mv": 1, - "ln": 1, - "remote.origin.url": 1, - "remote.origin.pushurl": 1, - "crontab": 1, - ".jobs.cron": 1, + "/usr/bin/clear": 2, "x": 1, "system": 1, - "exec": 3, "rbenv": 2, "versions": 1, "bare": 1, - "&": 5, "prefix": 1, - "/dev/null": 6, - "rvm_ignore_rvmrc": 1, - "declare": 22, - "rvmrc": 3, - "rvm_rvmrc_files": 3, - "ef": 1, - "+": 1, - "GREP_OPTIONS": 1, - "printf": 4, - "rvm_path": 4, - "UID": 1, - "elif": 4, - "rvm_is_not_a_shell_function": 2, - "rvm_path/scripts": 1, - "rvm": 1, - "sbt_release_version": 2, - "sbt_snapshot_version": 2, - "SNAPSHOT": 3, - "sbt_jar": 3, - "sbt_dir": 2, - "sbt_create": 2, - "sbt_snapshot": 1, - "sbt_launch_dir": 3, - "scala_version": 3, - "java_home": 1, - "sbt_explicit_version": 7, - "verbose": 6, - "debug": 11, - "quiet": 6, - "build_props_sbt": 3, - "project/build.properties": 9, - "versionLine": 2, - "sbt.version": 3, - "versionString": 3, - "versionLine##sbt.version": 1, - "update_build_props_sbt": 2, - "ver": 5, - "return": 3, - "perl": 3, - "pi": 1, - "||": 12, - "Updated": 1, - "Previous": 1, - "value": 1, - "was": 1, - "sbt_version": 8, - "echoerr": 3, - "vlog": 1, - "dlog": 8, - "get_script_path": 2, - "L": 1, - "target": 1, - "readlink": 1, - "get_mem_opts": 3, - "mem": 4, - "perm": 6, - "/": 2, - "<": 2, - "codecache": 1, - "die": 2, - "make_url": 3, - "groupid": 1, - "category": 1, - "default_jvm_opts": 1, - "default_sbt_opts": 1, - "default_sbt_mem": 2, - "noshare_opts": 1, - "sbt_opts_file": 1, - "jvm_opts_file": 1, - "latest_28": 1, - "latest_29": 1, - "latest_210": 1, - "script_path": 1, - "script_dir": 1, - "script_name": 2, - "java_cmd": 2, - "java": 2, - "sbt_mem": 5, - "residual_args": 4, - "java_args": 3, - "scalac_args": 4, - "sbt_commands": 2, - "build_props_scala": 1, - "build.scala.versions": 1, - "versionLine##build.scala.versions": 1, - "execRunner": 2, - "arg": 3, - "sbt_groupid": 3, - "*": 11, - "org.scala": 4, - "tools.sbt": 3, - "sbt": 18, - "sbt_artifactory_list": 2, - "version0": 2, - "F": 1, - "pe": 1, - "make_release_url": 2, - "releases": 1, - "make_snapshot_url": 2, - "snapshots": 1, - "head": 1, - "jar_url": 1, - "jar_file": 1, - "download_url": 2, - "jar": 3, - "dirname": 1, - "fail": 1, - "silent": 1, - "output": 1, - "wget": 2, - "O": 1, - "acquire_sbt_jar": 1, - "sbt_url": 1, - "usage": 2, - "cat": 3, - "<<": 2, - "EOM": 3, - "Usage": 1, - "print": 1, - "message": 1, - "runner": 1, - "chattier": 1, - "log": 2, - "level": 2, - "Debug": 1, - "Error": 1, - "colors": 2, - "disable": 1, - "ANSI": 1, - "color": 1, - "codes": 1, - "create": 2, - "start": 1, - "current": 1, - "contains": 2, - "project": 1, - "dir": 3, - "": 3, - "global": 1, - "settings/plugins": 1, - "default": 4, - "/.sbt/": 1, - "": 1, - "boot": 3, - "shared": 1, - "/.sbt/boot": 1, - "series": 1, - "ivy": 2, - "Ivy": 1, - "/.ivy2": 1, - "": 1, - "share": 2, - "use": 1, - "all": 1, - "caches": 1, - "sharing": 1, - "offline": 3, - "put": 1, - "mode": 2, - "jvm": 2, - "": 1, - "Turn": 1, - "JVM": 1, - "debugging": 1, - "open": 1, - "at": 1, - "given": 2, - "port.": 1, - "batch": 2, - "Disable": 1, - "interactive": 1, - "The": 1, - "way": 1, - "accomplish": 1, - "pre": 1, - "there": 2, - "build.properties": 1, - "an": 1, - "property": 1, - "disk.": 1, - "That": 1, - "scalacOptions": 3, - "S": 2, - "stripped": 1, - "In": 1, - "duplicated": 1, - "conflicting": 1, - "order": 1, - "above": 1, - "shows": 1, - "precedence": 1, - "JAVA_OPTS": 1, - "lowest": 1, - "line": 1, - "highest.": 1, - "addJava": 9, - "addSbt": 12, - "addScalac": 2, - "addResidual": 2, - "addResolver": 1, - "addDebugger": 2, - "get_jvm_opts": 2, - "process_args": 2, - "require_arg": 12, - "gt": 1, - "shift": 28, - "integer": 1, - "inc": 1, - "port": 1, - "snapshot": 1, - "launch": 1, - "scala": 3, - "home": 2, - "D*": 1, - "J*": 1, - "S*": 1, - "sbtargs": 3, - "IFS": 1, - "read": 1, - "<\"$sbt_opts_file\">": 1, - "process": 1, - "combined": 1, - "args": 2, - "reset": 1, - "residuals": 1, - "argumentCount=": 1, - "we": 1, - "were": 1, - "any": 1, - "opts": 1, - "eq": 1, - "0": 1, - "ThisBuild": 1, - "Update": 1, - "properties": 1, - "explicit": 1, - "gives": 1, - "us": 1, - "choice": 1, - "Detected": 1, - "Overriding": 1, - "alert": 1, - "them": 1, - "here": 1, - "argumentCount": 1, - "./build.sbt": 1, - "./project": 1, - "pwd": 1, - "doesn": 1, - "understand": 1, - "iflast": 1, - "#residual_args": 1, - "SHEBANG#!sh": 2, - "SHEBANG#!zsh": 2, "name": 1, "foodforthought.jpg": 1, "name##*fo": 1 }, "ShellSession": { - "echo": 2, - "FOOBAR": 2, - "Hello": 2, - "World": 2, "gem": 4, "install": 4, "nokogiri": 6, @@ -62109,30 +62130,93 @@ "Installing": 2, "ri": 1, "documentation": 2, - "RDoc": 1 + "RDoc": 1, + "echo": 2, + "FOOBAR": 2, + "Hello": 2, + "World": 2 }, "Shen": { - "*": 47, - "graph.shen": 1, - "-": 747, - "a": 30, - "library": 3, - "for": 12, - "graph": 52, - "definition": 1, - "and": 16, - "manipulation": 1, - "Copyright": 2, "(": 267, - "C": 6, + "load": 1, ")": 250, + "*": 47, + "JSON": 1, + "Lexer": 1, + "Read": 1, + "a": 30, + "stream": 1, + "of": 20, + "characters": 4, + "Whitespace": 4, + "not": 1, + "in": 13, + "strings": 2, + "should": 2, + "be": 2, + "discarded.": 1, + "preserved": 1, + "Strings": 1, + "can": 1, + "contain": 2, + "escaped": 1, + "double": 1, + "quotes.": 1, + "e.g.": 2, + "define": 34, + "whitespacep": 2, + "ASCII": 2, + "#": 4, + "Space.": 1, + "All": 1, + "the": 29, + "others": 1, + "are": 7, + "whitespace": 7, + "from": 3, + "an": 3, + "table.": 1, + "Char": 4, + "-": 747, + "member": 1, + "[": 93, + "]": 91, + "replace": 3, + "@s": 4, + "Suffix": 4, + "where": 2, + "Prefix": 2, + "fetch": 1, + "until": 1, + "unescaped": 1, + "doublequote": 1, + "c#34": 5, + ";": 12, + "|": 103, + "WhitespaceChar": 2, + "Chars": 4, + "strip": 2, + "chars": 2, + "tokenise": 1, + "JSONString": 2, + "let": 9, + "CharList": 2, + "explode": 1, + "html.shen": 1, + "html": 2, + "generation": 1, + "functions": 1, + "for": 12, + "shen": 1, + "Copyright": 2, + "C": 6, "Eric": 2, "Schulte": 2, "***": 5, "License": 2, "Redistribution": 2, + "and": 16, "use": 2, - "in": 13, "source": 4, "binary": 4, "forms": 2, @@ -62140,16 +62224,13 @@ "or": 2, "without": 2, "modification": 2, - "are": 7, "permitted": 2, "provided": 4, "that": 3, - "the": 29, "following": 6, "conditions": 6, "met": 2, "Redistributions": 4, - "of": 20, "code": 2, "must": 4, "retain": 2, @@ -62214,7 +62295,6 @@ "SUBSTITUTE": 2, "GOODS": 2, "SERVICES": 2, - ";": 12, "LOSS": 2, "USE": 4, "DATA": 2, @@ -62242,6 +62322,28 @@ "SUCH": 2, "DAMAGE.": 2, "Commentary": 2, + "The": 1, + "standard": 1, + "lisp": 1, + "to": 16, + "conversion": 1, + "tool": 1, + "suite.": 1, + "Follows": 1, + "some": 1, + "convertions": 1, + "Clojure": 1, + "tasks": 1, + "stuff": 1, + "todo1": 1, + "today": 1, + "attributes": 1, + "AS": 1, + "graph.shen": 1, + "library": 3, + "graph": 52, + "definition": 1, + "manipulation": 1, "Graphs": 1, "represented": 1, "as": 2, @@ -62253,7 +62355,6 @@ "It": 1, "is": 5, "important": 1, - "to": 16, "note": 1, "dictionary": 3, "implementation": 1, @@ -62275,7 +62376,6 @@ "each": 1, "edge": 32, "may": 1, - "contain": 2, "any": 1, "number": 12, ".": 1, @@ -62293,14 +62393,11 @@ "+": 33, "Graph": 65, "hash": 8, - "|": 103, "key": 9, "value": 17, "b": 13, "c": 11, "g": 19, - "[": 93, - "]": 91, "d": 12, "e": 14, "f": 10, @@ -62312,7 +62409,6 @@ "edge/vertex": 1, "@p": 17, "V": 48, - "#": 4, "E": 20, "edges": 17, "M": 4, @@ -62348,7 +62444,6 @@ "partition": 7, "bipartite": 3, "included": 2, - "from": 3, "take": 2, "drop": 2, "while": 2, @@ -62376,7 +62471,6 @@ "keys": 3, "vals": 1, "make": 10, - "define": 34, "X": 4, "<-address>": 5, "0": 1, @@ -62386,7 +62480,6 @@ "}": 22, "Vertsize": 2, "Edgesize": 2, - "let": 9, "absvector": 1, "do": 8, "address": 5, @@ -62425,7 +62518,6 @@ "w/o": 5, "D": 4, "update": 5, - "an": 3, "s": 1, "Vs": 4, "Store": 6, @@ -62476,74 +62568,7 @@ "fail": 1, "when": 1, "wrapper": 1, - "function": 1, - "html.shen": 1, - "html": 2, - "generation": 1, - "functions": 1, - "shen": 1, - "The": 1, - "standard": 1, - "lisp": 1, - "conversion": 1, - "tool": 1, - "suite.": 1, - "Follows": 1, - "some": 1, - "convertions": 1, - "Clojure": 1, - "tasks": 1, - "stuff": 1, - "todo1": 1, - "today": 1, - "attributes": 1, - "AS": 1, - "load": 1, - "JSON": 1, - "Lexer": 1, - "Read": 1, - "stream": 1, - "characters": 4, - "Whitespace": 4, - "not": 1, - "strings": 2, - "should": 2, - "be": 2, - "discarded.": 1, - "preserved": 1, - "Strings": 1, - "can": 1, - "escaped": 1, - "double": 1, - "quotes.": 1, - "e.g.": 2, - "whitespacep": 2, - "ASCII": 2, - "Space.": 1, - "All": 1, - "others": 1, - "whitespace": 7, - "table.": 1, - "Char": 4, - "member": 1, - "replace": 3, - "@s": 4, - "Suffix": 4, - "where": 2, - "Prefix": 2, - "fetch": 1, - "until": 1, - "unescaped": 1, - "doublequote": 1, - "c#34": 5, - "WhitespaceChar": 2, - "Chars": 4, - "strip": 2, - "chars": 2, - "tokenise": 1, - "JSONString": 2, - "CharList": 2, - "explode": 1 + "function": 1 }, "Slash": { "<%>": 1, @@ -63197,54 +63222,120 @@ "newplayer.MoveTo": 1 }, "Standard ML": { + "functor": 2, + "RedBlackTree": 1, + "(": 840, + "type": 6, + "key": 16, + "*": 9, + "struct": 13, + "a": 78, + "entry": 12, + "dict": 17, + "Empty": 15, + "|": 226, + "Red": 41, + "of": 91, + "ref": 45, + "local": 1, + "fun": 60, + "lookup": 4, + "let": 44, + "lk": 4, + ")": 845, + "NONE": 47, + "tree": 4, + "and": 2, + "-": 20, + "zipper": 3, + "TOP": 5, + "LEFTB": 10, + "RIGHTB": 10, + "in": 40, + "delete": 3, + "t": 23, + "zip": 19, + "x": 74, + "b": 58, + "z": 73, + "Black": 40, + "LEFTR": 8, + "RIGHTR": 9, + "bbZip": 28, + "true": 36, + "y": 50, + "c": 42, + "d": 32, + "w": 17, + "e": 18, + "false": 32, + "delMin": 8, + "_": 83, + "raise": 6, + "Match": 1, + "joinRed": 3, + "val": 147, + "needB": 2, + "else": 51, + "if": 51, + "then": 51, + "#2": 2, + "end": 55, + "del": 8, + "NotFound": 2, + "entry1": 16, + "as": 7, + "key1": 8, + "datum1": 4, + "case": 83, + "compare": 8, + "EQUAL": 5, + "joinBlack": 1, + "LESS": 5, + "GREATER": 5, + ";": 21, + "handle": 4, + "insertShadow": 3, + "datum": 1, + "oldEntry": 7, + "ins": 8, + "left": 10, + "right": 10, + "SOME": 68, + "restore_left": 1, + "restore_right": 1, + "app": 3, + "f": 46, + "ap": 7, + "new": 1, + "n": 4, + "insert": 2, + "fn": 127, + "table": 14, + "clear": 1, "structure": 15, "LazyBase": 4, "LAZY_BASE": 5, - "struct": 13, - "type": 6, - "a": 78, "exception": 2, "Undefined": 6, - "fun": 60, "delay": 6, - "f": 46, "force": 18, - "(": 840, - ")": 845, - "val": 147, "undefined": 2, - "fn": 127, - "raise": 6, - "end": 55, "LazyMemoBase": 4, "datatype": 29, - "|": 226, "Done": 2, - "of": 91, "lazy": 13, "unit": 7, - "-": 20, - "let": 44, "open": 9, "B": 2, "inject": 5, - "x": 74, "isUndefined": 4, "ignore": 3, - ";": 21, - "false": 32, - "handle": 4, - "true": 36, "toString": 4, - "if": 51, - "then": 51, - "else": 51, "eqBy": 5, "p": 10, - "y": 50, "eq": 3, "op": 2, - "compare": 8, "Ops": 3, "map": 3, "Lazy": 2, @@ -63255,17 +63346,13 @@ "LAZY": 1, "bool": 9, "string": 14, - "*": 9, "order": 2, - "b": 58, - "functor": 2, "Main": 1, "S": 2, "MAIN_STRUCTS": 1, "MAIN": 1, "Compile": 3, "Place": 1, - "t": 23, "Files": 3, "Generated": 4, "MLB": 4, @@ -63282,7 +63369,6 @@ "Anns": 1, "PathMap": 1, "gcc": 5, - "ref": 45, "arScript": 3, "asOpts": 6, "{": 79, @@ -63304,7 +63390,6 @@ "Stabs": 3, "StabsPlus": 3, "option": 6, - "NONE": 47, "expert": 3, "explicitAlign": 3, "Control.align": 1, @@ -63327,13 +63412,10 @@ "parseMlbPathVar": 3, "line": 9, "String.t": 1, - "case": 83, "String.tokens": 7, "Char.isSpace": 8, "var": 3, "path": 7, - "SOME": 68, - "_": 83, "readMlbPathMap": 2, "file": 14, "File.t": 12, @@ -63367,7 +63449,6 @@ "List.first": 2, "MLton.Platform.OS.fromString": 1, "MLton.Platform.Arch.fromString": 1, - "in": 40, "setTargetType": 3, "usage": 48, "List.peek": 7, @@ -63377,7 +63458,6 @@ "Target.os": 2, "hasCodegen": 8, "cg": 21, - "z": 73, "Control.Target.arch": 4, "Control.Target.os": 2, "Control.Format.t": 1, @@ -63405,7 +63485,6 @@ "Fail": 2, "reportAnnotation": 4, "flag": 12, - "e": 18, "Control.Elaborate.Bad": 1, "Control.Elaborate.Deprecated": 1, "ids": 2, @@ -63438,7 +63517,6 @@ "String.dropPrefix": 1, "Char.isDigit": 3, "Int.fromString": 4, - "n": 4, "Coalesce": 1, "limit": 1, "Bool": 10, @@ -63565,7 +63643,6 @@ "OptPred.Target": 6, "#1": 1, "trace": 4, - "#2": 2, "typeCheck": 1, "verbosity": 4, "Silent": 3, @@ -63617,7 +63694,6 @@ "ty": 4, "Bytes.toBits": 1, "Bytes.fromInt": 1, - "lookup": 4, "use": 2, "on": 1, "must": 1, @@ -63647,10 +63723,7 @@ "File.withIn": 1, "csoFiles": 1, "Place.compare": 1, - "GREATER": 5, "Place.toString": 2, - "EQUAL": 5, - "LESS": 5, "printVersion": 1, "tempFiles": 3, "tmpDir": 2, @@ -63658,7 +63731,6 @@ "default": 2, "MLton.Platform.OS.host": 2, "Process.getEnv": 1, - "d": 32, "temp": 3, "out": 9, "File.temp": 1, @@ -63674,7 +63746,6 @@ "OS.Path.splitDirFile": 1, "String.extract": 1, "toAlNum": 2, - "c": 42, "Char.isAlphaNum": 1, "#": 3, "CharVector.map": 1, @@ -63741,63 +63812,9 @@ "main": 1, "mainWrapped": 1, "OS.Process.exit": 1, - "CommandLine.arguments": 1, - "RedBlackTree": 1, - "key": 16, - "entry": 12, - "dict": 17, - "Empty": 15, - "Red": 41, - "local": 1, - "lk": 4, - "tree": 4, - "and": 2, - "zipper": 3, - "TOP": 5, - "LEFTB": 10, - "RIGHTB": 10, - "delete": 3, - "zip": 19, - "Black": 40, - "LEFTR": 8, - "RIGHTR": 9, - "bbZip": 28, - "w": 17, - "delMin": 8, - "Match": 1, - "joinRed": 3, - "needB": 2, - "del": 8, - "NotFound": 2, - "entry1": 16, - "as": 7, - "key1": 8, - "datum1": 4, - "joinBlack": 1, - "insertShadow": 3, - "datum": 1, - "oldEntry": 7, - "ins": 8, - "left": 10, - "right": 10, - "restore_left": 1, - "restore_right": 1, - "app": 3, - "ap": 7, - "new": 1, - "insert": 2, - "table": 14, - "clear": 1 + "CommandLine.arguments": 1 }, "Stata": { - "local": 6, - "inname": 1, - "outname": 1, - "program": 2, - "hello": 1, - "vers": 1, - "display": 1, - "end": 4, "{": 441, "*": 25, "version": 2, @@ -63807,7 +63824,6 @@ "Hello": 1, "world": 1, "p_end": 47, - "MAXDIM": 1, "smcl": 1, "Matthew": 2, "White": 2, @@ -64054,6 +64070,7 @@ "starts": 1, "definitions": 1, "several": 1, + "local": 6, "macros": 1, "these": 4, "constants": 1, @@ -64196,6 +64213,7 @@ "commas": 1, "double": 3, "quotes": 3, + "end": 4, "must": 2, "enclosed": 1, "another": 1, @@ -64285,6 +64303,7 @@ "She": 1, "collaborated": 1, "structure": 1, + "program": 2, "was": 1, "very": 1, "helpful": 1, @@ -64297,6 +64316,11 @@ "Author": 1, "mwhite@poverty": 1, "action.org": 1, + "inname": 1, + "outname": 1, + "hello": 1, + "vers": 1, + "display": 1, "Setup": 1, "sysuse": 1, "auto": 1, @@ -64332,7 +64356,8 @@ "emu": 4, "exp": 2, "return": 1, - "/": 1 + "/": 1, + "MAXDIM": 1 }, "Stylus": { "border": 6, @@ -64424,150 +64449,44 @@ ".fork": 1 }, "Swift": { - "let": 43, - "apples": 1, - "oranges": 1, - "appleSummary": 1, - "fruitSummary": 1, - "var": 42, - "shoppingList": 3, - "[": 18, - "]": 18, - "occupations": 2, - "emptyArray": 1, - "String": 27, - "(": 89, - ")": 89, - "emptyDictionary": 1, - "Dictionary": 1, - "": 1, - "Float": 1, - "//": 1, - "Went": 1, - "shopping": 1, - "and": 1, - "bought": 1, - "everything.": 1, - "individualScores": 2, - "teamScore": 4, - "for": 10, - "score": 2, - "in": 11, - "{": 77, - "if": 6, - "+": 15, - "}": 77, - "else": 1, - "optionalString": 2, - "nil": 1, - "optionalName": 2, - "greeting": 2, - "name": 21, - "vegetable": 2, - "switch": 4, - "case": 21, - "vegetableComment": 4, - "x": 1, - "where": 2, - "x.hasSuffix": 1, - "default": 2, - "interestingNumbers": 2, - "largest": 4, - "kind": 1, - "numbers": 6, - "number": 13, - "n": 5, - "while": 2, - "<": 4, - "*": 7, - "m": 5, - "do": 1, - "firstForLoop": 3, - "i": 6, - "secondForLoop": 3, - ";": 2, - "println": 1, - "func": 24, - "greet": 2, - "day": 1, - "-": 21, - "return": 30, - "getGasPrices": 2, - "Double": 11, - "sumOf": 3, - "Int...": 1, - "Int": 19, - "sum": 3, - "returnFifteen": 2, - "y": 3, - "add": 2, - "makeIncrementer": 2, - "addOne": 2, - "increment": 2, - "hasAnyMatches": 2, - "list": 2, - "condition": 2, - "Bool": 4, - "item": 4, - "true": 2, - "false": 2, - "lessThanTen": 2, - "numbers.map": 2, - "result": 5, - "sort": 1, "class": 7, - "Shape": 2, - "numberOfSides": 4, - "simpleDescription": 14, - "myVariable": 2, - "myConstant": 1, - "shape": 1, - "shape.numberOfSides": 1, - "shapeDescription": 1, - "shape.simpleDescription": 1, - "NamedShape": 3, - "init": 4, - "self.name": 1, - "Square": 7, - "sideLength": 17, - "self.sideLength": 2, - "super.init": 2, - "area": 1, - "override": 2, - "test": 1, - "test.area": 1, - "test.simpleDescription": 1, - "EquilateralTriangle": 4, - "perimeter": 1, - "get": 2, - "set": 1, - "newValue": 1, - "/": 1, - "triangle": 3, - "triangle.perimeter": 2, - "triangle.sideLength": 2, "TriangleAndSquare": 2, + "{": 77, + "var": 42, + "triangle": 3, + "EquilateralTriangle": 4, "willSet": 2, "square.sideLength": 1, "newValue.sideLength": 2, + "}": 77, "square": 2, + "Square": 7, + "triangle.sideLength": 2, + "init": 4, + "(": 89, "size": 4, + "Double": 11, + "name": 21, + "String": 27, + ")": 89, + "sideLength": 17, "triangleAndSquare": 1, "triangleAndSquare.square.sideLength": 1, "triangleAndSquare.triangle.sideLength": 2, "triangleAndSquare.square": 1, - "Counter": 2, - "count": 2, - "incrementBy": 1, - "amount": 2, - "numberOfTimes": 2, - "times": 4, - "counter": 1, - "counter.incrementBy": 1, - "optionalSquare": 2, - ".sideLength": 1, + "extension": 1, + "Int": 19, + "ExampleProtocol": 5, + "simpleDescription": 14, + "return": 30, + "mutating": 3, + "func": 24, + "adjust": 4, + "self": 3, + "+": 15, "enum": 4, "Rank": 2, + "case": 21, "Ace": 1, "Two": 1, "Three": 1, @@ -64581,44 +64500,76 @@ "Jack": 1, "Queen": 1, "King": 1, - "self": 3, + "-": 21, + "switch": 4, ".Ace": 1, ".Jack": 1, ".Queen": 1, ".King": 1, + "default": 2, "self.toRaw": 1, + "let": 43, "ace": 1, "Rank.Ace": 1, "aceRawValue": 1, "ace.toRaw": 1, - "convertedRank": 1, - "Rank.fromRaw": 1, - "threeDescription": 1, - "convertedRank.simpleDescription": 1, - "Suit": 2, - "Spades": 1, - "Hearts": 1, - "Diamonds": 1, - "Clubs": 1, - ".Spades": 2, - ".Hearts": 1, - ".Diamonds": 1, - ".Clubs": 1, - "hearts": 1, - "Suit.Hearts": 1, - "heartsDescription": 1, - "hearts.simpleDescription": 1, + "optionalSquare": 2, + ".sideLength": 1, + "Counter": 2, + "count": 2, + "incrementBy": 1, + "amount": 2, + "numberOfTimes": 2, + "times": 4, + "*": 7, + "counter": 1, + "counter.incrementBy": 1, + "shoppingList": 3, + "[": 18, + "]": 18, + "//": 1, + "Went": 1, + "shopping": 1, + "and": 1, + "bought": 1, + "everything.": 1, + "shape": 1, + "Shape": 2, + "shape.numberOfSides": 1, + "shapeDescription": 1, + "shape.simpleDescription": 1, + "numbers.map": 2, + "number": 13, + "in": 11, + "result": 5, + "NamedShape": 3, + "self.sideLength": 2, + "super.init": 2, + "numberOfSides": 4, + "area": 1, + "override": 2, + "test": 1, + "test.area": 1, + "test.simpleDescription": 1, + "vegetable": 2, + "vegetableComment": 4, + "x": 1, + "where": 2, + "x.hasSuffix": 1, + "repeat": 2, + "": 1, + "item": 4, + "ItemType": 3, + "for": 10, + "i": 6, + "optionalString": 2, + "nil": 1, + "optionalName": 2, + "greeting": 2, + "if": 6, "implicitInteger": 1, "implicitDouble": 1, "explicitDouble": 1, - "struct": 2, - "Card": 2, - "rank": 2, - "suit": 2, - "threeOfSpades": 1, - ".Three": 1, - "threeOfSpadesDescription": 1, - "threeOfSpades.simpleDescription": 1, "ServerResponse": 1, "Result": 1, "Error": 1, @@ -64632,10 +64583,93 @@ "serverResponse": 2, ".Error": 1, "error": 1, + "occupations": 2, + "Suit": 2, + "Spades": 1, + "Hearts": 1, + "Diamonds": 1, + "Clubs": 1, + ".Spades": 2, + ".Hearts": 1, + ".Diamonds": 1, + ".Clubs": 1, + "hearts": 1, + "Suit.Hearts": 1, + "heartsDescription": 1, + "hearts.simpleDescription": 1, + "label": 2, + "width": 2, + "widthLabel": 1, + "self.name": 1, + "returnFifteen": 2, + "y": 3, + "add": 2, + "emptyArray": 1, + "emptyDictionary": 1, + "Dictionary": 1, + "": 1, + "Float": 1, + "OptionalValue": 2, + "": 1, + "None": 1, + "Some": 1, + "T": 5, + "possibleInteger": 2, + "": 1, + ".None": 1, + ".Some": 1, + "individualScores": 2, + "teamScore": 4, + "score": 2, + "else": 1, + "greet": 2, + "day": 1, "protocol": 1, - "ExampleProtocol": 5, - "mutating": 3, - "adjust": 4, + "get": 2, + "convertedRank": 1, + "Rank.fromRaw": 1, + "threeDescription": 1, + "convertedRank.simpleDescription": 1, + "struct": 2, + "Card": 2, + "rank": 2, + "suit": 2, + "threeOfSpades": 1, + ".Three": 1, + "threeOfSpadesDescription": 1, + "threeOfSpades.simpleDescription": 1, + "hasAnyMatches": 2, + "list": 2, + "condition": 2, + "Bool": 4, + "true": 2, + "false": 2, + "lessThanTen": 2, + "<": 4, + "numbers": 6, + "n": 5, + "while": 2, + "m": 5, + "do": 1, + "interestingNumbers": 2, + "largest": 4, + "kind": 1, + "myVariable": 2, + "myConstant": 1, + "sumOf": 3, + "Int...": 1, + "sum": 3, + "makeIncrementer": 2, + "addOne": 2, + "increment": 2, + "getGasPrices": 2, + "apples": 1, + "oranges": 1, + "appleSummary": 1, + "fruitSummary": 1, + "firstForLoop": 3, + "secondForLoop": 3, + ";": 2, "SimpleClass": 2, "anotherProperty": 1, "a": 2, @@ -64647,21 +64681,15 @@ "b.adjust": 1, "bDescription": 1, "b.simpleDescription": 1, - "extension": 1, "protocolValue": 1, "protocolValue.simpleDescription": 1, - "repeat": 2, - "": 1, - "ItemType": 3, - "OptionalValue": 2, - "": 1, - "None": 1, - "Some": 1, - "T": 5, - "possibleInteger": 2, - "": 1, - ".None": 1, - ".Some": 1, + "println": 1, + "perimeter": 1, + "set": 1, + "newValue": 1, + "/": 1, + "triangle.perimeter": 2, + "sort": 1, "anyCommonElements": 2, "": 1, "U": 4, @@ -64672,16 +64700,49 @@ "lhs": 2, "rhs": 2, "lhsItem": 2, - "rhsItem": 2, - "label": 2, - "width": 2, - "widthLabel": 1 + "rhsItem": 2 }, "SystemVerilog": { "module": 3, - "endpoint_phy_wrapper": 2, + "fifo": 1, "(": 92, "input": 12, + "clk_50": 1, + "clk_2": 1, + "reset_n": 1, + "output": 6, + "[": 17, + "]": 17, + "data_out": 1, + "empty": 1, + ")": 92, + ";": 32, + "function": 1, + "integer": 2, + "log2": 4, + "x": 6, + "begin": 4, + "-": 4, + "for": 2, + "+": 3, + "end": 4, + "endfunction": 1, + "priority_encoder": 1, + "#": 3, + "parameter": 2, + "INPUT_WIDTH": 3, + "OUTPUT_WIDTH": 3, + "logic": 2, + "input_data": 2, + "output_data": 3, + "int": 1, + "ii": 6, + "always_comb": 1, + "b0": 5, + "<": 1, + "if": 5, + "endmodule": 2, + "endpoint_phy_wrapper": 2, "clk_sys_i": 2, "clk_ref_i": 6, "clk_rx_i": 3, @@ -64691,20 +64752,14 @@ "IWishboneSlave.slave": 1, "snk": 1, "sys": 1, - "output": 6, - "[": 17, - "]": 17, "td_o": 2, "rd_i": 2, "txn_o": 2, "txp_o": 2, "rxn_i": 2, "rxp_i": 2, - ")": 92, - ";": 32, "wire": 12, "rx_clock": 3, - "parameter": 2, "g_phy_type": 6, "gtx_data": 3, "gtx_k": 3, @@ -64718,14 +64773,11 @@ "gtp_rst": 2, "tx_clock": 3, "generate": 1, - "if": 5, - "begin": 4, "assign": 2, "wr_tbi_phy": 1, "U_Phy": 1, ".serdes_rst_i": 1, ".serdes_loopen_i": 1, - "b0": 5, ".serdes_enable_i": 1, "b1": 2, ".serdes_tx_data_i": 1, @@ -64744,11 +64796,9 @@ ".tbi_loopen_o": 1, ".tbi_prbsen_o": 1, ".tbi_enable_o": 1, - "end": 4, "else": 2, "//": 3, "wr_gtx_phy_virtex6": 1, - "#": 3, ".g_simulation": 2, "U_PHY": 1, ".clk_ref_i": 2, @@ -64823,32 +64873,7 @@ ".wb_dat_o": 1, "sys.dat_i": 1, ".wb_ack_o": 1, - "sys.ack": 1, - "endmodule": 2, - "fifo": 1, - "clk_50": 1, - "clk_2": 1, - "reset_n": 1, - "data_out": 1, - "empty": 1, - "priority_encoder": 1, - "INPUT_WIDTH": 3, - "OUTPUT_WIDTH": 3, - "logic": 2, - "-": 4, - "input_data": 2, - "output_data": 3, - "int": 1, - "ii": 6, - "always_comb": 1, - "for": 2, - "<": 1, - "+": 3, - "function": 1, - "integer": 2, - "log2": 4, - "x": 6, - "endfunction": 1 + "sys.ack": 1 }, "TXL": { "define": 12, @@ -64894,46 +64919,86 @@ "Tcl": 2, "namespace": 6, "eval": 2, - "stream": 61, + "XDG": 11, "{": 148, + "variable": 4, + "DEFAULTS": 8, "export": 3, + "DATA_HOME": 4, + "CONFIG_HOME": 4, + "CACHE_HOME": 4, + "RUNTIME_DIR": 3, + "DATA_DIRS": 4, + "CONFIG_DIRS": 4, + "}": 148, + "proc": 28, + "SetDefaults": 3, + "if": 14, + "ne": 2, + "return": 22, + "set": 34, "[": 76, + "list": 18, + "file": 9, + "join": 9, + "env": 8, + "(": 11, + "HOME": 3, + ")": 11, + ".local": 1, + "share": 3, + "]": 76, + ".config": 1, + ".cache": 1, + "/usr": 2, + "local": 1, + "/etc": 1, + "xdg": 1, + "XDGVarSet": 4, + "var": 11, + "expr": 4, + "info": 1, + "exists": 1, + "XDG_": 4, + "&&": 2, + "Dir": 4, + "subdir": 16, + "dir": 5, + "dict": 2, + "get": 2, + "Dirs": 3, + "rawDirs": 3, + "split": 1, + "outDirs": 3, + "foreach": 5, + "lappend": 8, + "XDG_RUNTIME_DIR": 1, + "stream": 61, "a": 1, "-": 5, "z": 1, - "]": 76, "*": 19, - "}": 148, "ensemble": 1, "create": 7, - "proc": 28, "first": 24, "restCmdPrefix": 2, - "return": 22, - "list": 18, "lassign": 11, "foldl": 1, "cmdPrefix": 19, "initialValue": 7, "args": 13, - "set": 34, "numStreams": 3, "llength": 5, - "if": 14, "FoldlSingleStream": 2, "lindex": 5, "elseif": 3, "FoldlMultiStream": 2, "else": 5, "Usage": 4, - "foreach": 5, "numArgs": 7, "varName": 7, "body": 8, "ForeachSingleStream": 2, - "(": 11, - ")": 11, - "&&": 2, "%": 1, "end": 2, "items": 5, @@ -64942,7 +65007,6 @@ "fromList": 2, "_list": 4, "index": 4, - "expr": 4, "+": 1, "isEmpty": 10, "map": 1, @@ -64957,7 +65021,6 @@ "<": 1, "toList": 1, "res": 10, - "lappend": 8, "#################################": 2, "acc": 9, "streams": 5, @@ -64968,45 +65031,7 @@ "msg": 1, "code": 1, "error": 1, - "level": 1, - "XDG": 11, - "variable": 4, - "DEFAULTS": 8, - "DATA_HOME": 4, - "CONFIG_HOME": 4, - "CACHE_HOME": 4, - "RUNTIME_DIR": 3, - "DATA_DIRS": 4, - "CONFIG_DIRS": 4, - "SetDefaults": 3, - "ne": 2, - "file": 9, - "join": 9, - "env": 8, - "HOME": 3, - ".local": 1, - "share": 3, - ".config": 1, - ".cache": 1, - "/usr": 2, - "local": 1, - "/etc": 1, - "xdg": 1, - "XDGVarSet": 4, - "var": 11, - "info": 1, - "exists": 1, - "XDG_": 4, - "Dir": 4, - "subdir": 16, - "dir": 5, - "dict": 2, - "get": 2, - "Dirs": 3, - "rawDirs": 3, - "split": 1, - "outDirs": 3, - "XDG_RUNTIME_DIR": 1 + "level": 1 }, "TeX": { "%": 135, @@ -65655,19 +65680,30 @@ "console.log": 1 }, "UnrealScript": { + "class": 18, + "US3HelloWorld": 1, + "extends": 2, + "GameInfo": 1, + ";": 295, + "event": 3, + "InitGame": 1, + "(": 189, + "string": 25, + "Options": 1, + "out": 2, + "Error": 1, + ")": 189, + "{": 28, + "log": 1, + "}": 27, + "defaultproperties": 1, "//": 5, "-": 220, - "class": 18, "MutU2Weapons": 1, - "extends": 2, "Mutator": 1, "config": 18, - "(": 189, "U2Weapons": 1, - ")": 189, - ";": 295, "var": 30, - "string": 25, "ReplacedWeaponClassNames0": 1, "ReplacedWeaponClassNames1": 1, "ReplacedWeaponClassNames2": 1, @@ -65735,7 +65771,6 @@ "FlashbangModeString": 1, "struct": 1, "WeaponInfo": 2, - "{": 28, "ReplacedWeaponClass": 1, "Generated": 4, "from": 6, @@ -65790,7 +65825,6 @@ "gametypes.": 2, "Think": 1, "shotgun.": 1, - "}": 27, "Weapons": 31, "function": 5, "PostBeginPlay": 1, @@ -65847,7 +65881,6 @@ "CheckReplacement": 1, "Actor": 1, "Other": 23, - "out": 2, "bSuperRelevant": 3, "i": 12, "WeaponLocker": 3, @@ -65902,7 +65935,6 @@ "PlayInfo.AddSetting": 33, "default.RulesGroup": 33, "default.U2WeaponDisplayText": 33, - "event": 3, "GetDescriptionText": 1, "PropName": 35, "default.U2WeaponDescText": 33, @@ -66070,14 +66102,7 @@ "Fully": 1, "customisable": 1, "choose": 1, - "behaviour.": 1, - "US3HelloWorld": 1, - "GameInfo": 1, - "InitGame": 1, - "Options": 1, - "Error": 1, - "log": 1, - "defaultproperties": 1 + "behaviour.": 1 }, "VCL": { "sub": 23, @@ -66085,13 +66110,25 @@ "{": 50, "if": 14, "(": 50, - "req.request": 18, - "&&": 14, + "req.restarts": 1, ")": 50, - "return": 33, - "pipe": 4, + "req.http.x": 1, + "-": 21, + "forwarded": 1, + "for": 1, + "set": 10, + "req.http.X": 3, + "Forwarded": 3, + "For": 3, + "+": 17, + "client.ip": 2, ";": 48, "}": 50, + "else": 3, + "req.request": 18, + "&&": 14, + "return": 33, + "pipe": 4, "pass": 9, "req.http.Authorization": 2, "||": 4, @@ -66100,33 +66137,29 @@ "vcl_pipe": 2, "vcl_pass": 2, "vcl_hash": 2, - "set": 10, - "req.hash": 3, - "+": 17, + "hash_data": 3, "req.url": 2, "req.http.host": 4, - "else": 3, "server.ip": 2, "hash": 2, "vcl_hit": 2, - "obj.cacheable": 2, "deliver": 8, "vcl_miss": 2, "fetch": 3, "vcl_fetch": 2, - "obj.http.Set": 1, - "-": 21, - "Cookie": 2, - "obj.prefetch": 1, + "beresp.ttl": 2, + "<": 1, "s": 3, + "beresp.http.Set": 1, + "Cookie": 2, + "beresp.http.Vary": 1, + "hit_for_pass": 1, "vcl_deliver": 2, - "vcl_discard": 1, - "discard": 2, - "vcl_prefetch": 1, - "vcl_timeout": 1, "vcl_error": 2, "obj.http.Content": 2, "Type": 2, + "obj.http.Retry": 1, + "After": 1, "synthetic": 2, "utf": 2, "//W3C//DTD": 2, @@ -66138,27 +66171,19 @@ "obj.status": 4, "obj.response": 6, "req.xid": 2, - "//www.varnish": 1, - "cache.org/": 1, - "req.restarts": 1, - "req.http.x": 1, - "forwarded": 1, - "for": 1, - "req.http.X": 3, - "Forwarded": 3, - "For": 3, - "client.ip": 2, - "hash_data": 3, - "beresp.ttl": 2, - "<": 1, - "beresp.http.Set": 1, - "beresp.http.Vary": 1, - "hit_for_pass": 1, - "obj.http.Retry": 1, - "After": 1, "vcl_init": 1, "ok": 2, - "vcl_fini": 1 + "vcl_fini": 1, + "req.hash": 3, + "obj.cacheable": 2, + "obj.http.Set": 1, + "obj.prefetch": 1, + "vcl_discard": 1, + "discard": 2, + "vcl_prefetch": 1, + "vcl_timeout": 1, + "//www.varnish": 1, + "cache.org/": 1 }, "VHDL": { "-": 2, @@ -66190,111 +66215,21 @@ "not": 1 }, "Verilog": { - "////////////////////////////////////////////////////////////////////////////////": 14, - "//": 117, - "timescale": 10, - "ns": 8, - "/": 11, - "ps": 8, "module": 18, - "button_debounce": 3, + "hex_display": 1, "(": 378, "input": 68, - "clk": 40, - "clock": 3, - "reset_n": 32, - "asynchronous": 2, - "reset": 13, - "button": 25, - "bouncy": 1, - "output": 42, - "reg": 26, - "debounce": 6, - "debounced": 1, - "-": 73, - "cycle": 1, - "signal": 3, - ")": 378, - ";": 287, - "parameter": 7, - "CLK_FREQUENCY": 4, - "DEBOUNCE_HZ": 4, - "localparam": 4, - "COUNT_VALUE": 2, - "WAIT": 6, - "FIRE": 4, - "COUNT": 4, "[": 179, "]": 179, - "state": 6, - "next_state": 6, - "count": 6, - "always": 23, - "@": 16, - "posedge": 11, - "or": 14, - "negedge": 8, - "<": 47, - "begin": 46, - "if": 23, - "end": 48, - "else": 22, - "case": 3, - "<=>": 4, - "1": 7, - "endcase": 3, - "default": 2, - "endmodule": 18, - "control": 1, - "en": 13, - "dsp_sel": 9, - "an": 6, - "wire": 67, - "a": 5, - "b": 3, - "c": 3, - "d": 3, - "e": 3, - "f": 2, - "g": 2, - "h": 2, - "i": 62, - "j": 2, - "k": 2, - "l": 2, - "assign": 23, - "FDRSE": 6, - "#": 10, - ".INIT": 6, - "b0": 27, - "Synchronous": 12, - ".S": 6, - "b1": 19, - "Initial": 6, - "value": 6, - "of": 8, - "register": 6, - "DFF2": 1, - ".Q": 6, - "Data": 13, - ".C": 6, - "Clock": 14, - ".CE": 6, - "enable": 6, - ".D": 6, - ".R": 6, - "set": 6, - "DFF0": 1, - "DFF6": 1, - "DFF4": 1, - "DFF10": 1, - "DFF8": 1, - "hex_display": 1, "num": 5, + "en": 13, + "output": 42, "hex0": 2, "hex1": 2, "hex2": 2, "hex3": 2, + ")": 378, + ";": 287, "seg_7": 4, "hex_group0": 1, ".num": 4, @@ -66303,203 +66238,13 @@ "hex_group1": 1, "hex_group2": 1, "hex_group3": 1, - "mux": 1, - "opA": 4, - "opB": 3, - "sum": 5, - "out": 5, - "cout": 4, - "b0000": 1, - "b01": 1, - "b11": 1, - "pipeline_registers": 1, - "BIT_WIDTH": 5, - "pipe_in": 4, - "pipe_out": 5, - "NUMBER_OF_STAGES": 7, - "generate": 3, - "genvar": 3, - "*": 4, - "BIT_WIDTH*": 5, - "pipe_gen": 6, - "for": 4, - "+": 36, - "pipeline": 2, - "BIT_WIDTH*i": 2, - "endgenerate": 3, - "ps2_mouse": 1, - "Input": 2, - "Reset": 1, - "inout": 2, - "ps2_clk": 3, - "PS2": 2, - "Bidirectional": 2, - "ps2_dat": 3, - "the_command": 2, - "Command": 1, - "to": 3, - "send": 2, - "mouse": 1, - "send_command": 2, - "Signal": 2, - "command_was_sent": 2, - "command": 1, - "finished": 1, - "sending": 1, - "error_communication_timed_out": 3, - "received_data": 2, - "Received": 1, - "data": 4, - "received_data_en": 4, - "If": 1, - "new": 1, - "has": 1, - "been": 1, - "received": 1, - "start_receiving_data": 3, - "wait_for_incoming_data": 3, - "ps2_clk_posedge": 3, - "Internal": 2, - "Wires": 1, - "ps2_clk_negedge": 3, - "idle_counter": 4, - "Registers": 2, - "ps2_clk_reg": 4, - "ps2_data_reg": 5, - "last_ps2_clk": 4, - "ns_ps2_transceiver": 13, - "State": 1, - "Machine": 1, - "s_ps2_transceiver": 8, - "PS2_STATE_0_IDLE": 10, - "h1": 1, - "PS2_STATE_2_COMMAND_OUT": 2, - "h3": 1, - "PS2_STATE_4_END_DELAYED": 4, - "Defaults": 1, - "PS2_STATE_1_DATA_IN": 3, - "||": 1, - "PS2_STATE_3_END_TRANSFER": 3, - "h00": 1, - "&&": 3, - "h01": 1, - "ps2_mouse_cmdout": 1, - "mouse_cmdout": 1, - ".clk": 6, - "Inputs": 2, - ".reset": 2, - ".the_command": 1, - ".send_command": 1, - ".ps2_clk_posedge": 2, - ".ps2_clk_negedge": 2, - ".ps2_clk": 1, - "Bidirectionals": 1, - ".ps2_dat": 1, - ".command_was_sent": 1, - "Outputs": 2, - ".error_communication_timed_out": 1, - "ps2_mouse_datain": 1, - "mouse_datain": 1, - ".wait_for_incoming_data": 1, - ".start_receiving_data": 1, - ".ps2_data": 1, - ".received_data": 1, - ".received_data_en": 1, - "ns/1ps": 2, - "e0": 1, - "x": 41, - "y": 21, - "{": 11, - "}": 11, - "e1": 1, - "ch": 1, - "z": 7, - "o": 6, - "&": 6, - "maj": 1, - "|": 2, - "s0": 1, - "s1": 1, - "sign_extender": 1, - "INPUT_WIDTH": 5, - "OUTPUT_WIDTH": 4, - "original": 3, - "sign_extended_original": 2, - "sign_extend": 3, - "gen_sign_extend": 1, - "sqrt_pipelined": 3, - "start": 12, - "optional": 2, - "INPUT_BITS": 28, - "radicand": 12, - "unsigned": 2, - "data_valid": 7, - "valid": 2, - "OUTPUT_BITS": 14, - "root": 8, - "number": 2, - "bits": 2, - "any": 1, - "integer": 1, - "%": 3, - "start_gen": 7, - "propagation": 1, - "OUTPUT_BITS*INPUT_BITS": 9, - "root_gen": 15, - "values": 3, - "radicand_gen": 10, - "mask_gen": 9, - "mask": 3, - "mask_4": 1, - "is": 4, - "odd": 1, - "this": 2, - "INPUT_BITS*": 27, - "<<": 2, - "i/2": 2, - "even": 1, - "pipeline_stage": 1, - "INPUT_BITS*i": 5, - "t_button_debounce": 1, - ".CLK_FREQUENCY": 1, - ".DEBOUNCE_HZ": 1, - ".reset_n": 3, - ".button": 1, - ".debounce": 1, - "initial": 3, - "bx": 4, - "#10": 10, - "#5": 3, - "#100": 1, - "#0.1": 8, - "t_div_pipelined": 1, - "dividend": 3, - "divisor": 5, - "div_by_zero": 2, - "quotient": 2, - "quotient_correct": 1, - "BITS": 2, - "div_pipelined": 2, - ".BITS": 1, - ".dividend": 1, - ".divisor": 1, - ".quotient": 1, - ".div_by_zero": 1, - ".start": 2, - ".data_valid": 2, - "#50": 2, - "#1": 1, - "#1000": 1, - "finish": 2, - "t_sqrt_pipelined": 1, - ".INPUT_BITS": 1, - ".radicand": 1, - ".root": 1, - "#10000": 1, + "endmodule": 18, "vga": 1, "wb_clk_i": 6, + "//": 117, "Mhz": 1, "VDU": 1, + "clock": 3, "wb_rst_i": 6, "wb_dat_i": 3, "wb_dat_o": 2, @@ -66520,8 +66265,10 @@ "csrm_we_o": 2, "csrm_dat_o": 2, "csrm_dat_i": 2, + "reg": 26, "csr_adr_i": 3, "csr_stb_i": 2, + "wire": 67, "conf_wb_dat_o": 3, "conf_wb_ack_o": 3, "mem_wb_dat_o": 3, @@ -66589,6 +66336,7 @@ ".wb_we_i": 2, ".wb_sel_i": 2, ".wb_stb_i": 2, + "&": 6, ".wb_ack_o": 2, ".shift_reg1": 2, ".graphics_alpha": 2, @@ -66633,6 +66381,7 @@ ".vh_retrace": 2, "vga_lcd": 1, "lcd": 1, + ".clk": 6, ".rst": 1, ".csr_adr_o": 1, ".csr_dat_i": 1, @@ -66669,7 +66418,283 @@ ".csrm_sel_o": 1, ".csrm_we_o": 1, ".csrm_dat_o": 1, - ".csrm_dat_i": 1 + ".csrm_dat_i": 1, + "assign": 23, + "always": 23, + "@": 16, + "posedge": 11, + "<": 47, + "b0": 27, + "timescale": 10, + "ns": 8, + "/": 11, + "ps": 8, + "control": 1, + "clk": 40, + "dsp_sel": 9, + "an": 6, + "a": 5, + "b": 3, + "c": 3, + "d": 3, + "e": 3, + "f": 2, + "g": 2, + "h": 2, + "i": 62, + "j": 2, + "k": 2, + "l": 2, + "FDRSE": 6, + "#": 10, + ".INIT": 6, + "or": 14, + "Synchronous": 12, + "reset": 13, + ".S": 6, + "b1": 19, + "Initial": 6, + "value": 6, + "of": 8, + "register": 6, + "DFF2": 1, + ".Q": 6, + "Data": 13, + ".C": 6, + "Clock": 14, + ".CE": 6, + "enable": 6, + ".D": 6, + ".R": 6, + "set": 6, + "DFF0": 1, + "DFF6": 1, + "DFF4": 1, + "DFF10": 1, + "DFF8": 1, + "mux": 1, + "opA": 4, + "opB": 3, + "sum": 5, + "out": 5, + "cout": 4, + "begin": 46, + "if": 23, + "b0000": 1, + "end": 48, + "b01": 1, + "else": 22, + "b11": 1, + "ps2_mouse": 1, + "Input": 2, + "Reset": 1, + "inout": 2, + "ps2_clk": 3, + "PS2": 2, + "Bidirectional": 2, + "ps2_dat": 3, + "the_command": 2, + "Command": 1, + "to": 3, + "send": 2, + "mouse": 1, + "send_command": 2, + "Signal": 2, + "command_was_sent": 2, + "command": 1, + "finished": 1, + "sending": 1, + "error_communication_timed_out": 3, + "received_data": 2, + "Received": 1, + "data": 4, + "received_data_en": 4, + "If": 1, + "-": 73, + "new": 1, + "has": 1, + "been": 1, + "received": 1, + "start_receiving_data": 3, + "wait_for_incoming_data": 3, + "ps2_clk_posedge": 3, + "Internal": 2, + "Wires": 1, + "ps2_clk_negedge": 3, + "idle_counter": 4, + "Registers": 2, + "ps2_clk_reg": 4, + "ps2_data_reg": 5, + "last_ps2_clk": 4, + "ns_ps2_transceiver": 13, + "State": 1, + "Machine": 1, + "s_ps2_transceiver": 8, + "localparam": 4, + "PS2_STATE_0_IDLE": 10, + "h1": 1, + "PS2_STATE_2_COMMAND_OUT": 2, + "h3": 1, + "PS2_STATE_4_END_DELAYED": 4, + "Defaults": 1, + "case": 3, + "PS2_STATE_1_DATA_IN": 3, + "||": 1, + "PS2_STATE_3_END_TRANSFER": 3, + "default": 2, + "endcase": 3, + "h00": 1, + "&&": 3, + "h01": 1, + "ps2_mouse_cmdout": 1, + "mouse_cmdout": 1, + "Inputs": 2, + ".reset": 2, + ".the_command": 1, + ".send_command": 1, + ".ps2_clk_posedge": 2, + ".ps2_clk_negedge": 2, + ".ps2_clk": 1, + "Bidirectionals": 1, + ".ps2_dat": 1, + ".command_was_sent": 1, + "Outputs": 2, + ".error_communication_timed_out": 1, + "ps2_mouse_datain": 1, + "mouse_datain": 1, + ".wait_for_incoming_data": 1, + ".start_receiving_data": 1, + ".ps2_data": 1, + ".received_data": 1, + ".received_data_en": 1, + "////////////////////////////////////////////////////////////////////////////////": 14, + "sqrt_pipelined": 3, + "reset_n": 32, + "asynchronous": 2, + "start": 12, + "optional": 2, + "signal": 3, + "INPUT_BITS": 28, + "radicand": 12, + "unsigned": 2, + "data_valid": 7, + "valid": 2, + "OUTPUT_BITS": 14, + "root": 8, + "parameter": 7, + "number": 2, + "bits": 2, + "any": 1, + "integer": 1, + "+": 36, + "%": 3, + "start_gen": 7, + "propagation": 1, + "OUTPUT_BITS*INPUT_BITS": 9, + "root_gen": 15, + "values": 3, + "radicand_gen": 10, + "mask_gen": 9, + "mask": 3, + "negedge": 8, + "generate": 3, + "genvar": 3, + "for": 4, + "mask_4": 1, + "is": 4, + "odd": 1, + "this": 2, + "INPUT_BITS*": 27, + "<<": 2, + "*": 4, + "i/2": 2, + "even": 1, + "pipeline": 2, + "pipeline_stage": 1, + "INPUT_BITS*i": 5, + "<=>": 4, + "1": 7, + "endgenerate": 3, + "ns/1ps": 2, + "sign_extender": 1, + "INPUT_WIDTH": 5, + "OUTPUT_WIDTH": 4, + "original": 3, + "sign_extended_original": 2, + "sign_extend": 3, + "gen_sign_extend": 1, + "{": 11, + "}": 11, + "t_button_debounce": 1, + "CLK_FREQUENCY": 4, + "DEBOUNCE_HZ": 4, + "button": 25, + "debounce": 6, + "button_debounce": 3, + ".CLK_FREQUENCY": 1, + ".DEBOUNCE_HZ": 1, + ".reset_n": 3, + ".button": 1, + ".debounce": 1, + "initial": 3, + "bx": 4, + "#10": 10, + "#5": 3, + "#100": 1, + "#0.1": 8, + "t_div_pipelined": 1, + "dividend": 3, + "divisor": 5, + "div_by_zero": 2, + "quotient": 2, + "quotient_correct": 1, + "BITS": 2, + "div_pipelined": 2, + ".BITS": 1, + ".dividend": 1, + ".divisor": 1, + ".quotient": 1, + ".div_by_zero": 1, + ".start": 2, + ".data_valid": 2, + "#50": 2, + "#1": 1, + "#1000": 1, + "finish": 2, + "pipeline_registers": 1, + "BIT_WIDTH": 5, + "pipe_in": 4, + "pipe_out": 5, + "NUMBER_OF_STAGES": 7, + "BIT_WIDTH*": 5, + "pipe_gen": 6, + "BIT_WIDTH*i": 2, + "e0": 1, + "x": 41, + "y": 21, + "e1": 1, + "ch": 1, + "z": 7, + "o": 6, + "maj": 1, + "|": 2, + "s0": 1, + "s1": 1, + "bouncy": 1, + "debounced": 1, + "cycle": 1, + "COUNT_VALUE": 2, + "WAIT": 6, + "FIRE": 4, + "COUNT": 4, + "state": 6, + "next_state": 6, + "count": 6, + "t_sqrt_pipelined": 1, + ".INPUT_BITS": 1, + ".radicand": 1, + ".root": 1, + "#10000": 1 }, "VimL": { "no": 1, @@ -66688,6 +66713,14 @@ "on": 1 }, "Visual Basic": { + "Module": 2, + "Module1": 1, + "Sub": 9, + "Main": 1, + "(": 20, + ")": 20, + "Console.Out.WriteLine": 2, + "End": 11, "VERSION": 1, "CLASS": 1, "BEGIN": 1, @@ -66699,9 +66732,7 @@ "MTSTransactionMode": 1, "*************************************************************************************************************************************************************************************************************************************************": 2, "Copyright": 1, - "(": 20, "c": 1, - ")": 20, "David": 1, "Briant": 1, "All": 1, @@ -66783,8 +66814,6 @@ "easily": 2, "found": 1, "myMouseEventsForm.hwnd": 3, - "End": 11, - "Sub": 9, "shutdown": 1, "myAST.destroy": 1, "Nothing": 2, @@ -66960,11 +66989,7 @@ "mix": 1, "price": 1, "applications.": 1, - "": 1, - "Module": 2, - "Module1": 1, - "Main": 1, - "Console.Out.WriteLine": 2 + "": 1 }, "Volt": { "module": 1, @@ -67068,7 +67093,98 @@ "XML": { "": 12, "version=": 21, + "": 1, + "xmlns": 2, + "ea=": 2, + "": 1, + "organisation=": 3, + "module=": 3, + "revision=": 3, + "status=": 1, + "": 4, + "this": 77, + "is": 123, + "a": 128, + "easyant": 3, + "module.ivy": 1, + "sample": 6, + "file": 3, + "for": 60, + "java": 1, + "standard": 1, + "application": 2, + "": 4, + "": 1, + "": 1, + "name=": 270, + "value=": 11, + "": 1, + "": 1, + "": 1, + "": 1, + "": 2, + "visibility=": 2, + "description=": 4, + "": 1, + "": 1, + "": 4, + "org=": 1, + "rev=": 1, + "conf=": 1, + "default": 9, + "junit": 2, + "test": 7, + "-": 90, + "/": 6, + "": 1, + "": 1, "encoding=": 8, + "": 1, + "TS": 1, + "": 1, + "language=": 1, + "": 1, + "": 2, + "MainWindow": 1, + "": 2, + "": 8, + "": 8, + "filename=": 8, + "line=": 8, + "": 8, + "United": 1, + "Kingdom": 1, + "": 8, + "": 8, + "Reino": 1, + "Unido": 1, + "": 8, + "": 8, + "God": 1, + "save": 2, + "the": 261, + "Queen": 1, + "Deus": 1, + "salve": 1, + "Rainha": 1, + "England": 1, + "Inglaterra": 1, + "Wales": 1, + "Gales": 1, + "Scotland": 1, + "Esc": 1, + "cia": 1, + "Northern": 1, + "Ireland": 1, + "Irlanda": 1, + "Norte": 1, + "Portuguese": 1, + "Portugu": 1, + "s": 3, + "English": 1, + "Ingl": 1, + "": 1, + "": 1, "": 7, "ToolsVersion=": 6, "DefaultTargets=": 5, @@ -67086,7 +67202,6 @@ "": 5, "{": 6, "D9BF15": 1, - "-": 90, "D10": 1, "ABAD688E8B": 1, "}": 6, @@ -67102,7 +67217,6 @@ "": 5, "": 4, "csproj": 1, - "sample": 6, "": 4, "": 5, "v4.5.1": 5, @@ -67145,6 +67259,282 @@ "": 10, "": 5, "": 7, + "": 1, + "": 1, + "": 2, + "": 2, + "c67af951": 1, + "d8d6376993e7": 1, + "nproj_sample": 2, + "": 1, + "": 1, + "": 1, + "Net": 1, + "": 1, + "": 1, + "(": 65, + "ProgramFiles": 1, + ")": 58, + "Nemerle": 3, + "": 1, + "": 1, + "NemerleBinPathRoot": 1, + "NemerleVersion": 1, + "": 1, + "": 3, + "nproj": 1, + "": 3, + "": 5, + "OutputPath": 1, + "AssemblyName": 1, + ".xml": 1, + "": 5, + "": 3, + "": 3, + "": 5, + "": 1, + "False": 1, + "": 1, + "": 2, + "Nemerle.dll": 1, + "": 2, + "": 2, + "True": 13, + "": 2, + "": 1, + "Nemerle.Linq.dll": 1, + "": 1, + "": 1, + "MyCommon": 1, + "": 1, + "Name=": 1, + "": 1, + "Text=": 1, + "": 1, + "": 2, + "This": 21, + "module.ant": 1, + "optionnal": 1, + "and": 44, + "designed": 1, + "to": 164, + "customize": 1, + "your": 8, + "build": 1, + "with": 23, + "own": 2, + "specific": 8, + "target.": 1, + "": 2, + "": 2, + "my": 2, + "awesome": 1, + "additionnal": 1, + "target": 6, + "": 2, + "": 2, + "extensionOf=": 1, + "i": 2, + "would": 2, + "love": 1, + "could": 1, + "easily": 1, + "plug": 1, + "pre": 1, + "compile": 1, + "step": 1, + "": 1, + "": 1, + "compatVersion=": 1, + "": 1, + "FreeMedForms": 1, + "": 1, + "": 1, + "C": 1, + "by": 14, + "Eric": 1, + "MAEKER": 1, + "MD": 1, + "": 1, + "": 1, + "GPLv3": 1, + "": 1, + "": 1, + "Patient": 1, + "data": 2, + "": 1, + "The": 75, + "XML": 1, + "form": 1, + "loader/saver": 1, + "FreeMedForms.": 1, + "": 1, + "http": 2, + "//www.freemedforms.com/": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "Label=": 11, + "": 2, + "Win32": 2, + "": 2, + "BF6EED48": 1, + "BF18": 1, + "C54": 1, + "F": 1, + "BBF19EEDC7C": 1, + "": 1, + "ManagedCProj": 1, + "": 1, + "vcxprojsample": 1, + "": 2, + "Application": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "v120": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "Unicode": 2, + "": 2, + "": 4, + "": 4, + "": 2, + "": 2, + "": 2, + "": 8, + "Level3": 2, + "": 1, + "Disabled": 1, + "": 1, + "": 2, + "WIN32": 2, + "_DEBUG": 1, + "%": 2, + "PreprocessorDefinitions": 2, + "": 2, + "": 4, + "Use": 15, + "": 4, + "": 6, + "": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "Console": 3, + "": 2, + "": 2, + "": 2, + "NDEBUG": 1, + "": 2, + "": 4, + "": 2, + "Create": 2, + "": 2, + "cfa7a11": 1, + "a5cd": 1, + "bd7b": 1, + "b210d4d51a29": 1, + "fsproj_sample": 2, + "": 1, + "": 1, + "fsproj": 1, + "": 2, + "": 2, + "fsproj_sample.XML": 2, + "": 2, + "": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "": 2, + "MSBuildExtensionsPath32": 2, + "..": 1, + "Microsoft": 2, + "SDKs": 1, + "F#": 1, + "Framework": 1, + "v4.0": 1, + "Microsoft.FSharp.Targets": 2, + "": 2, + "": 1, + "": 1, + "VisualStudio": 1, + "v": 1, + "VisualStudioVersion": 1, + "FSharp": 1, + "": 1, + "": 1, + "": 10, + "": 3, + "FC737F1": 1, + "C7A5": 1, + "A066": 1, + "A32D752A2FF": 1, + "": 3, + "": 3, + "cpp": 1, + "c": 1, + "cc": 1, + "cxx": 1, + "def": 1, + "odl": 1, + "idl": 1, + "hpj": 1, + "bat": 1, + "asm": 1, + "asmx": 1, + "": 3, + "": 10, + "BD": 1, + "b04": 1, + "EB": 1, + "FBE52EBFB": 1, + "h": 1, + "hh": 1, + "hpp": 1, + "hxx": 1, + "hm": 1, + "inl": 1, + "inc": 1, + "xsd": 1, + "DA6AB6": 1, + "F800": 1, + "c08": 1, + "B7A": 1, + "BB121AAD01": 1, + "rc": 1, + "ico": 1, + "cur": 1, + "bmp": 1, + "dlg": 1, + "rc2": 1, + "rct": 1, + "rgs": 1, + "gif": 1, + "jpg": 1, + "jpeg": 1, + "jpe": 1, + "resx": 1, + "tiff": 1, + "tif": 1, + "png": 1, + "wav": 1, + "mfcribbon": 1, + "ms": 1, + "Header": 2, + "Files": 7, + "": 2, + "Resource": 2, + "": 1, + "Source": 3, + "": 1, "standalone=": 1, "": 1, "4": 1, @@ -67156,7 +67546,6 @@ "": 2, "id=": 141, "buildSystemId=": 2, - "name=": 270, "": 2, "": 2, "": 12, @@ -67168,7 +67557,6 @@ "buildArtefactType=": 2, "buildProperties=": 2, "cleanCommand=": 2, - "description=": 4, "cdt": 2, "managedbuild": 2, "config": 2, @@ -67188,7 +67576,6 @@ "managedBuildOn=": 2, "": 12, "": 2, "release": 1, "32754498": 1, - "": 2, "projectType=": 1, "": 5, "enabled=": 125, @@ -67233,130 +67619,70 @@ "instanceId=": 4, "": 4, "": 1, - "": 2, - "": 2, - "cfa7a11": 1, - "a5cd": 1, - "bd7b": 1, - "b210d4d51a29": 1, - "fsproj_sample": 2, - "": 1, - "": 1, - "": 3, - "fsproj": 1, - "": 3, - "": 2, - "": 2, - "": 5, - "fsproj_sample.XML": 2, - "": 5, - "": 2, - "": 2, - "": 2, - "True": 13, - "": 2, - "": 5, - "": 1, - "": 1, - "": 1, - "": 1, - "": 2, - "(": 65, - "MSBuildExtensionsPath32": 2, - ")": 58, - "..": 1, - "Microsoft": 2, - "SDKs": 1, - "F#": 1, - "Framework": 1, - "v4.0": 1, - "Microsoft.FSharp.Targets": 2, - "": 2, - "": 1, - "": 1, - "VisualStudio": 1, - "v": 1, - "VisualStudioVersion": 1, - "FSharp": 1, - "": 1, - "": 1, - "xmlns": 2, - "ea=": 2, - "": 4, - "This": 21, - "easyant": 3, - "module.ant": 1, - "file": 3, - "is": 123, - "optionnal": 1, - "and": 44, - "designed": 1, - "to": 164, - "customize": 1, - "your": 8, - "build": 1, - "with": 23, - "own": 2, - "specific": 8, - "target.": 1, - "": 4, - "": 2, - "": 2, - "my": 2, - "awesome": 1, - "additionnal": 1, - "target": 6, - "": 2, - "": 2, - "extensionOf=": 1, - "i": 2, - "would": 2, - "love": 1, - "could": 1, - "easily": 1, - "plug": 1, - "pre": 1, - "compile": 1, - "step": 1, - "": 1, - "": 1, - "": 1, - "organisation=": 3, - "module=": 3, - "revision=": 3, - "status=": 1, - "this": 77, - "a": 128, - "module.ivy": 1, - "for": 60, - "java": 1, - "standard": 1, - "application": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 2, - "visibility=": 2, - "": 1, - "": 1, - "": 4, - "org=": 1, - "rev=": 1, - "conf=": 1, - "default": 9, - "junit": 2, - "test": 7, - "/": 6, - "": 1, - "": 1, + "D377F": 1, + "A": 21, + "A798": 1, + "B3FD04C": 1, + "": 1, + "vbproj_sample.Module1": 1, + "": 1, + "vbproj_sample": 1, + "vbproj": 3, + "": 1, + "": 1, + "": 2, + "": 2, + "": 2, + "": 2, + "sample.xml": 2, + "": 2, + "": 2, + "": 1, + "On": 2, + "": 1, + "": 1, + "Binary": 1, + "": 1, + "": 1, + "Off": 1, + "": 1, + "": 1, + "": 1, + "": 3, + "": 3, + "": 3, + "Application.myapp": 1, + "": 3, + "": 3, + "": 1, + "": 1, + "Resources.resx": 1, + "Settings.settings": 1, + "": 1, + "": 1, + "": 1, + "": 3, + "VbMyResourcesResXFileCodeGenerator": 1, + "": 3, + "": 3, + "Resources.Designer.vb": 1, + "": 3, + "": 2, + "My.Resources": 1, + "": 2, + "": 1, + "Designer": 1, + "": 1, + "": 1, + "MyApplicationCodeGenerator": 1, + "Application.Designer.vb": 1, + "": 2, + "SettingsSingleFileGenerator": 1, + "My": 1, + "Settings.Designer.vb": 1, "": 1, "": 1, - "": 2, "ReactiveUI": 2, - "": 2, "": 1, "": 1, "": 120, @@ -67366,7 +67692,6 @@ "interface": 4, "that": 94, "replaces": 1, - "the": 261, "non": 1, "PropertyChangedEventArgs.": 1, "Note": 7, @@ -67390,7 +67715,6 @@ "changes.": 2, "": 122, "": 120, - "The": 75, "object": 42, "has": 16, "raised": 1, @@ -67569,7 +67893,6 @@ "string": 13, "distinguish": 12, "arbitrarily": 2, - "by": 14, "client.": 2, "Listen": 4, "provides": 6, @@ -67581,7 +67904,6 @@ "to.": 7, "": 12, "": 84, - "A": 21, "identical": 11, "types": 10, "one": 27, @@ -67626,7 +67948,6 @@ "allows": 15, "log": 2, "attached.": 1, - "data": 2, "structure": 1, "representation": 1, "memoizing": 2, @@ -67696,7 +68017,6 @@ "object.": 3, "ViewModel": 8, "another": 3, - "s": 3, "Return": 1, "instance": 2, "type.": 3, @@ -67819,7 +68139,6 @@ "manage": 1, "disk": 1, "download": 1, - "save": 2, "temporary": 1, "folder": 1, "onRelease": 1, @@ -67974,7 +68293,6 @@ "private": 1, "field.": 1, "Reference": 1, - "Use": 15, "custom": 4, "raiseAndSetIfChanged": 1, "doesn": 1, @@ -68050,81 +68368,6 @@ "setup.": 12, "": 1, "": 1, - "": 1, - "": 1, - "c67af951": 1, - "d8d6376993e7": 1, - "nproj_sample": 2, - "": 1, - "": 1, - "": 1, - "Net": 1, - "": 1, - "": 1, - "ProgramFiles": 1, - "Nemerle": 3, - "": 1, - "": 1, - "NemerleBinPathRoot": 1, - "NemerleVersion": 1, - "": 1, - "nproj": 1, - "OutputPath": 1, - "AssemblyName": 1, - ".xml": 1, - "": 3, - "": 3, - "": 1, - "False": 1, - "": 1, - "": 2, - "Nemerle.dll": 1, - "": 2, - "": 1, - "Nemerle.Linq.dll": 1, - "": 1, - "": 1, - "": 1, - "TS": 1, - "": 1, - "language=": 1, - "": 1, - "MainWindow": 1, - "": 8, - "": 8, - "filename=": 8, - "line=": 8, - "": 8, - "United": 1, - "Kingdom": 1, - "": 8, - "": 8, - "Reino": 1, - "Unido": 1, - "": 8, - "": 8, - "God": 1, - "Queen": 1, - "Deus": 1, - "salve": 1, - "Rainha": 1, - "England": 1, - "Inglaterra": 1, - "Wales": 1, - "Gales": 1, - "Scotland": 1, - "Esc": 1, - "cia": 1, - "Northern": 1, - "Ireland": 1, - "Irlanda": 1, - "Norte": 1, - "Portuguese": 1, - "Portugu": 1, - "English": 1, - "Ingl": 1, - "": 1, - "": 1, "": 1, "": 1, "": 1, @@ -68145,7 +68388,6 @@ "just": 1, "works": 1, "": 1, - "http": 2, "//hubot.github.com": 1, "": 1, "": 1, @@ -68161,224 +68403,7 @@ "src=": 1, "target=": 1, "": 1, - "": 1, - "MyCommon": 1, - "": 1, - "Name=": 1, - "": 1, - "Text=": 1, - "": 1, - "D377F": 1, - "A798": 1, - "B3FD04C": 1, - "": 1, - "vbproj_sample.Module1": 1, - "": 1, - "vbproj_sample": 1, - "vbproj": 3, - "": 1, - "Console": 3, - "": 1, - "": 2, - "": 2, - "": 2, - "": 2, - "sample.xml": 2, - "": 2, - "": 2, - "": 1, - "On": 2, - "": 1, - "": 1, - "Binary": 1, - "": 1, - "": 1, - "Off": 1, - "": 1, - "": 1, - "": 1, - "": 3, - "": 3, - "": 3, - "Application.myapp": 1, - "": 3, - "": 3, - "": 1, - "": 1, - "Resources.resx": 1, - "Settings.settings": 1, - "": 1, - "": 1, - "": 1, - "": 3, - "VbMyResourcesResXFileCodeGenerator": 1, - "": 3, - "": 3, - "Resources.Designer.vb": 1, - "": 3, - "": 2, - "My.Resources": 1, - "": 2, - "": 1, - "Designer": 1, - "": 1, - "": 1, - "MyApplicationCodeGenerator": 1, - "Application.Designer.vb": 1, - "": 2, - "SettingsSingleFileGenerator": 1, - "My": 1, - "Settings.Designer.vb": 1, - "Label=": 11, - "": 2, - "Win32": 2, - "": 2, - "BF6EED48": 1, - "BF18": 1, - "C54": 1, - "F": 1, - "BBF19EEDC7C": 1, - "": 1, - "ManagedCProj": 1, - "": 1, - "vcxprojsample": 1, - "": 2, - "Application": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "v120": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "Unicode": 2, - "": 2, - "": 4, - "": 4, - "": 2, - "": 2, - "": 2, - "": 8, - "Level3": 2, - "": 1, - "Disabled": 1, - "": 1, - "": 2, - "WIN32": 2, - "_DEBUG": 1, - "%": 2, - "PreprocessorDefinitions": 2, - "": 2, - "": 4, - "": 4, - "": 6, - "": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "NDEBUG": 1, - "": 2, - "": 4, - "": 2, - "Create": 2, - "": 2, - "": 10, - "": 3, - "FC737F1": 1, - "C7A5": 1, - "A066": 1, - "A32D752A2FF": 1, - "": 3, - "": 3, - "cpp": 1, - "c": 1, - "cc": 1, - "cxx": 1, - "def": 1, - "odl": 1, - "idl": 1, - "hpj": 1, - "bat": 1, - "asm": 1, - "asmx": 1, - "": 3, - "": 10, - "BD": 1, - "b04": 1, - "EB": 1, - "FBE52EBFB": 1, - "h": 1, - "hh": 1, - "hpp": 1, - "hxx": 1, - "hm": 1, - "inl": 1, - "inc": 1, - "xsd": 1, - "DA6AB6": 1, - "F800": 1, - "c08": 1, - "B7A": 1, - "BB121AAD01": 1, - "rc": 1, - "ico": 1, - "cur": 1, - "bmp": 1, - "dlg": 1, - "rc2": 1, - "rct": 1, - "rgs": 1, - "gif": 1, - "jpg": 1, - "jpeg": 1, - "jpe": 1, - "resx": 1, - "tiff": 1, - "tif": 1, - "png": 1, - "wav": 1, - "mfcribbon": 1, - "ms": 1, - "Header": 2, - "Files": 7, - "": 2, - "Resource": 2, - "": 1, - "Source": 3, - "": 1, - "": 1, - "compatVersion=": 1, - "": 1, - "FreeMedForms": 1, - "": 1, - "": 1, - "C": 1, - "Eric": 1, - "MAEKER": 1, - "MD": 1, - "": 1, - "": 1, - "GPLv3": 1, - "": 1, - "": 1, - "Patient": 1, - "": 1, - "XML": 1, - "form": 1, - "loader/saver": 1, - "FreeMedForms.": 1, - "": 1, - "//www.freemedforms.com/": 1, - "": 1, - "": 1, - "": 1, - "": 1 + "": 1 }, "XProc": { "": 1, @@ -68534,20 +68559,112 @@ }, "Xojo": { "#tag": 88, + "Window": 2, + "Begin": 23, + "Window1": 1, + "BackColor": 1, + "&": 1, + "cFFFFFF00": 1, + "Backdrop": 1, + "CloseButton": 1, + "True": 46, + "Compatibility": 2, + "Composite": 1, + "False": 14, + "Frame": 1, + "FullScreen": 1, + "FullScreenButton": 1, + "HasBackColor": 1, + "Height": 5, + "ImplicitInstance": 1, + "LiveResize": 1, + "MacProcID": 1, + "MaxHeight": 1, + "MaximizeButton": 1, + "MaxWidth": 1, + "MenuBar": 1, + "MenuBarVisible": 1, + "MinHeight": 1, + "MinimizeButton": 1, + "MinWidth": 1, + "Placement": 1, + "Resizeable": 1, + "Title": 1, + "Visible": 41, + "Width": 3, + "PushButton": 1, + "HelloWorldButton": 2, + "AutoDeactivate": 1, + "Bold": 1, + "ButtonStyle": 1, + "Cancel": 1, + "Caption": 3, + "Default": 9, + "Enabled": 1, + "HelpTag": 3, + "Index": 14, + "-": 14, + "InitialParent": 1, + "Italic": 1, + "Left": 1, + "LockBottom": 1, + "LockedInPosition": 1, + "LockLeft": 1, + "LockRight": 1, + "LockTop": 1, + "Scope": 4, + "TabIndex": 1, + "TabPanelIndex": 1, + "TabStop": 1, + "TextFont": 1, + "TextSize": 1, + "TextUnit": 1, + "Top": 1, + "Underline": 1, + "End": 27, + "EndWindow": 1, + "WindowCode": 1, + "EndWindowCode": 1, + "Events": 1, + "Event": 1, + "Sub": 2, + "Action": 1, + "(": 7, + ")": 7, + "Dim": 3, + "total": 4, + "As": 4, + "Integer": 2, + "For": 1, + "i": 2, + "To": 1, + "+": 5, + "Next": 1, + "MsgBox": 3, + "Str": 1, + "EndEvent": 1, + "EndEvents": 1, + "ViewBehavior": 2, + "ViewProperty": 28, + "Name": 31, + "true": 26, + "Group": 28, + "InitialValue": 23, + "Type": 34, + "EndViewProperty": 28, + "EditorType": 14, + "EnumValues": 2, + "EndEnumValues": 2, + "EndViewBehavior": 2, "Class": 3, "Protected": 1, "App": 1, "Inherits": 1, "Application": 1, "Constant": 3, - "Name": 31, "kEditClear": 1, - "Type": 34, "String": 3, "Dynamic": 3, - "False": 14, - "Default": 9, - "Scope": 4, "Public": 3, "#Tag": 5, "Instance": 5, @@ -68561,58 +68678,21 @@ "kFileQuitShortcut": 1, "Mac": 1, "OS": 1, - "ViewBehavior": 2, - "EndViewBehavior": 2, - "End": 27, "EndClass": 1, - "Report": 2, - "Begin": 23, - "BillingReport": 1, - "Compatibility": 2, - "Units": 1, - "Width": 3, - "PageHeader": 1, - "Height": 5, - "Body": 1, - "PageFooter": 1, - "EndReport": 1, - "ReportCode": 1, - "EndReportCode": 1, - "Dim": 3, - "dbFile": 3, - "As": 4, - "FolderItem": 1, - "db": 1, - "New": 1, - "SQLiteDatabase": 1, - "GetFolderItem": 1, - "(": 7, - ")": 7, - "db.DatabaseFile": 1, - "If": 4, - "db.Connect": 1, - "Then": 1, - "db.SQLExecute": 2, - "_": 1, - "+": 5, - "db.Error": 1, - "then": 1, - "MsgBox": 3, - "db.ErrorMessage": 2, - "db.Rollback": 1, - "Else": 2, - "db.Commit": 1, + "Toolbar": 2, + "MyToolbar": 1, + "ToolButton": 2, + "FirstItem": 1, + "Style": 2, + "SecondItem": 1, + "EndToolbar": 1, "Menu": 2, "MainMenuBar": 1, "MenuItem": 11, "FileMenu": 1, "SpecialMenu": 13, "Text": 13, - "Index": 14, - "-": 14, "AutoEnable": 13, - "True": 46, - "Visible": 41, "QuitMenuItem": 1, "FileQuit": 1, "ShortcutKey": 6, @@ -68631,121 +68711,123 @@ "AppleMenuItem": 1, "AboutItem": 1, "EndMenu": 1, - "Toolbar": 2, - "MyToolbar": 1, - "ToolButton": 2, - "FirstItem": 1, - "Caption": 3, - "HelpTag": 3, - "Style": 2, - "SecondItem": 1, - "EndToolbar": 1, - "Window": 2, - "Window1": 1, - "BackColor": 1, - "&": 1, - "cFFFFFF00": 1, - "Backdrop": 1, - "CloseButton": 1, - "Composite": 1, - "Frame": 1, - "FullScreen": 1, - "FullScreenButton": 1, - "HasBackColor": 1, - "ImplicitInstance": 1, - "LiveResize": 1, - "MacProcID": 1, - "MaxHeight": 1, - "MaximizeButton": 1, - "MaxWidth": 1, - "MenuBar": 1, - "MenuBarVisible": 1, - "MinHeight": 1, - "MinimizeButton": 1, - "MinWidth": 1, - "Placement": 1, - "Resizeable": 1, - "Title": 1, - "PushButton": 1, - "HelloWorldButton": 2, - "AutoDeactivate": 1, - "Bold": 1, - "ButtonStyle": 1, - "Cancel": 1, - "Enabled": 1, - "InitialParent": 1, - "Italic": 1, - "Left": 1, - "LockBottom": 1, - "LockedInPosition": 1, - "LockLeft": 1, - "LockRight": 1, - "LockTop": 1, - "TabIndex": 1, - "TabPanelIndex": 1, - "TabStop": 1, - "TextFont": 1, - "TextSize": 1, - "TextUnit": 1, - "Top": 1, - "Underline": 1, - "EndWindow": 1, - "WindowCode": 1, - "EndWindowCode": 1, - "Events": 1, - "Event": 1, - "Sub": 2, - "Action": 1, - "total": 4, - "Integer": 2, - "For": 1, - "i": 2, - "To": 1, - "Next": 1, - "Str": 1, - "EndEvent": 1, - "EndEvents": 1, - "ViewProperty": 28, - "true": 26, - "Group": 28, - "InitialValue": 23, - "EndViewProperty": 28, - "EditorType": 14, - "EnumValues": 2, - "EndEnumValues": 2 + "dbFile": 3, + "FolderItem": 1, + "db": 1, + "New": 1, + "SQLiteDatabase": 1, + "GetFolderItem": 1, + "db.DatabaseFile": 1, + "If": 4, + "db.Connect": 1, + "Then": 1, + "db.SQLExecute": 2, + "_": 1, + "db.Error": 1, + "then": 1, + "db.ErrorMessage": 2, + "db.Rollback": 1, + "Else": 2, + "db.Commit": 1, + "Report": 2, + "BillingReport": 1, + "Units": 1, + "PageHeader": 1, + "Body": 1, + "PageFooter": 1, + "EndReport": 1, + "ReportCode": 1, + "EndReportCode": 1 }, "Xtend": { "package": 2, - "example2": 1, + "example6": 1, "import": 7, "org.junit.Test": 2, "static": 4, "org.junit.Assert.*": 2, + "java.io.FileReader": 1, + "java.util.Set": 1, + "extension": 2, + "com.google.common.io.CharStreams.*": 1, "class": 4, - "BasicExpressions": 2, + "Movies": 1, "{": 14, "@Test": 7, "def": 7, "void": 7, - "literals": 5, + "numberOfActionMovies": 1, "(": 42, ")": 42, + "assertEquals": 14, + "movies.filter": 2, + "[": 9, + "categories.contains": 1, + "]": 9, + ".size": 2, + "}": 13, + "yearOfBestMovieFrom80ies": 1, + ".contains": 1, + "year": 2, + ".sortBy": 1, + "rating": 3, + ".last.year": 1, + "sumOfVotesOfTop2": 1, + "val": 9, + "long": 2, + "movies": 3, + "movies.sortBy": 1, + "-": 5, + ".take": 1, + ".map": 1, + "numberOfVotes": 2, + ".reduce": 1, + "a": 2, + "b": 2, + "|": 2, + "+": 6, + "_229": 1, + "new": 2, + "FileReader": 1, + ".readLines.map": 1, + "line": 1, + "segments": 1, + "line.split": 1, + ".iterator": 2, + "return": 1, + "Movie": 2, + "segments.next": 4, + "Integer": 1, + "parseInt": 1, + "Double": 1, + "parseDouble": 1, + "Long": 1, + "parseLong": 1, + "segments.toSet": 1, + "@Data": 1, + "String": 2, + "title": 1, + "int": 1, + "double": 2, + "Set": 1, + "": 1, + "categories": 1, + "example2": 1, + "BasicExpressions": 2, + "literals": 5, "//": 11, "string": 1, "work": 1, "with": 2, "single": 1, "or": 1, - "double": 2, "quotes": 1, - "assertEquals": 14, "number": 1, "big": 1, "decimals": 1, "in": 2, "this": 1, "case": 1, - "+": 6, "*": 1, "bd": 3, "boolean": 1, @@ -68753,7 +68835,6 @@ "false": 1, "getClass": 1, "typeof": 1, - "}": 13, "collections": 2, "There": 1, "are": 1, @@ -68763,28 +68844,22 @@ "create": 1, "and": 1, "numerous": 1, - "extension": 2, "which": 1, "make": 1, "working": 1, "them": 1, "convenient.": 1, - "val": 9, "list": 1, "newArrayList": 2, "list.map": 1, - "[": 9, "toUpperCase": 1, - "]": 9, ".head": 1, "set": 1, "newHashSet": 1, "set.filter": 1, "it": 2, - ".size": 2, "map": 1, "newHashMap": 1, - "-": 5, "map.get": 1, "controlStructures": 1, "looks": 1, @@ -68805,7 +68880,6 @@ "someValue": 2, "switch": 1, "Number": 1, - "String": 2, "loops": 1, "for": 2, "loop": 2, @@ -68815,73 +68889,11 @@ "..": 1, "while": 2, "iterator": 1, - ".iterator": 2, "iterator.hasNext": 1, - "iterator.next": 1, - "example6": 1, - "java.io.FileReader": 1, - "java.util.Set": 1, - "com.google.common.io.CharStreams.*": 1, - "Movies": 1, - "numberOfActionMovies": 1, - "movies.filter": 2, - "categories.contains": 1, - "yearOfBestMovieFrom80ies": 1, - ".contains": 1, - "year": 2, - ".sortBy": 1, - "rating": 3, - ".last.year": 1, - "sumOfVotesOfTop2": 1, - "long": 2, - "movies": 3, - "movies.sortBy": 1, - ".take": 1, - ".map": 1, - "numberOfVotes": 2, - ".reduce": 1, - "a": 2, - "b": 2, - "|": 2, - "_229": 1, - "new": 2, - "FileReader": 1, - ".readLines.map": 1, - "line": 1, - "segments": 1, - "line.split": 1, - "return": 1, - "Movie": 2, - "segments.next": 4, - "Integer": 1, - "parseInt": 1, - "Double": 1, - "parseDouble": 1, - "Long": 1, - "parseLong": 1, - "segments.toSet": 1, - "@Data": 1, - "title": 1, - "int": 1, - "Set": 1, - "": 1, - "categories": 1 + "iterator.next": 1 }, "YAML": { - "gem": 1, "-": 25, - "local": 1, - "gen": 1, - "rdoc": 2, - "run": 1, - "tests": 1, - "inline": 1, - "source": 1, - "line": 1, - "numbers": 1, - "gempath": 1, - "/usr/local/rubygems": 1, - "/home/gavin/.rubygems": 1, "http_interactions": 1, "request": 1, "method": 1, @@ -68914,62 +68926,29 @@ "Nov": 1, "GMT": 1, "recorded_with": 1, - "VCR": 1 + "VCR": 1, + "gem": 1, + "local": 1, + "gen": 1, + "rdoc": 2, + "run": 1, + "tests": 1, + "inline": 1, + "source": 1, + "line": 1, + "numbers": 1, + "gempath": 1, + "/usr/local/rubygems": 1, + "/home/gavin/.rubygems": 1 }, "Zephir": { - "%": 10, - "{": 58, - "#define": 1, - "MAX_FACTOR": 3, - "}": 52, "namespace": 4, "Test": 4, - ";": 91, - "#include": 9, - "static": 1, - "long": 3, - "fibonacci": 4, - "(": 59, - "n": 5, - ")": 57, - "if": 39, - "<": 2, - "return": 26, - "else": 11, - "-": 25, - "+": 5, - "class": 3, - "Cblock": 1, - "public": 22, - "function": 22, - "testCblock1": 1, - "int": 3, - "a": 6, - "testCblock2": 1, - "#ifdef": 1, - "HAVE_CONFIG_H": 1, - "#endif": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "ZEPHIR_INIT_CLASS": 2, - "Test_Router_Exception": 2, - "ZEPHIR_REGISTER_CLASS_EX": 1, "Router": 3, - "Exception": 4, - "test": 1, - "router_exception": 1, - "zend_exception_get_default": 1, - "TSRMLS_C": 1, - "NULL": 1, - "SUCCESS": 1, - "extern": 1, - "zend_class_entry": 1, - "*test_router_exception_ce": 1, - "php": 1, - "extends": 1, + ";": 91, + "class": 3, "Route": 1, + "{": 58, "protected": 9, "_pattern": 3, "_compiledPattern": 3, @@ -68980,19 +68959,27 @@ "_id": 2, "_name": 3, "_beforeMatch": 3, + "public": 22, + "function": 22, "__construct": 1, + "(": 59, "pattern": 37, "paths": 7, "null": 11, "httpMethods": 6, + ")": 57, "this": 28, + "-": 25, "reConfigure": 2, "let": 51, + "}": 52, "compilePattern": 2, "var": 4, "idPattern": 6, + "if": 39, "memstr": 10, "str_replace": 6, + "return": 26, ".": 5, "via": 1, "extractNamedParams": 2, @@ -69004,6 +68991,7 @@ "boolean": 1, "notValid": 5, "false": 3, + "int": 3, "cursor": 4, "cursorVar": 5, "marker": 4, @@ -69022,6 +69010,8 @@ "for": 4, "in": 4, "1": 3, + "else": 11, + "+": 5, "substr": 3, "break": 9, "&&": 6, @@ -69047,6 +69037,7 @@ "typeof": 2, "throw": 1, "new": 1, + "Exception": 4, "explode": 1, "switch": 1, "count": 1, @@ -69086,7 +69077,41 @@ "getHostname": 1, "convert": 1, "converter": 2, - "getConverters": 1 + "getConverters": 1, + "%": 10, + "#define": 1, + "MAX_FACTOR": 3, + "#include": 9, + "static": 1, + "long": 3, + "fibonacci": 4, + "n": 5, + "<": 2, + "Cblock": 1, + "testCblock1": 1, + "a": 6, + "testCblock2": 1, + "extern": 1, + "zend_class_entry": 1, + "*test_router_exception_ce": 1, + "ZEPHIR_INIT_CLASS": 2, + "Test_Router_Exception": 2, + "#ifdef": 1, + "HAVE_CONFIG_H": 1, + "#endif": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "ZEPHIR_REGISTER_CLASS_EX": 1, + "test": 1, + "router_exception": 1, + "zend_exception_get_default": 1, + "TSRMLS_C": 1, + "NULL": 1, + "SUCCESS": 1, + "php": 1, + "extends": 1 }, "Zimpl": { "#": 2, @@ -69154,75 +69179,85 @@ "db.part/user": 17 }, "fish": { - "#": 18, - "set": 49, + "function": 6, + "funced": 3, "-": 102, - "g": 1, - "IFS": 4, - "n": 5, - "t": 2, + "description": 2, + "set": 49, "l": 15, - "configdir": 2, - "/.config": 1, - "if": 21, + "editor": 7, + "EDITOR": 1, + "interactive": 8, + "funcname": 14, + "while": 2, "q": 9, - "XDG_CONFIG_HOME": 2, - "end": 33, - "not": 8, - "fish_function_path": 4, - "configdir/fish/functions": 1, - "__fish_sysconfdir/functions": 1, - "__fish_datadir/functions": 3, - "contains": 4, + "argv": 9, "[": 13, "]": 13, - "fish_complete_path": 4, - "configdir/fish/completions": 1, - "__fish_sysconfdir/completions": 1, - "__fish_datadir/completions": 3, - "test": 7, - "d": 3, - "/usr/xpg4/bin": 3, - "PATH": 6, - "path_list": 4, - "/bin": 1, - "/usr/bin": 1, - "/usr/X11R6/bin": 1, - "/usr/local/bin": 1, - "__fish_bin_dir": 1, "switch": 3, - "USER": 1, "case": 9, - "root": 1, - "/sbin": 1, - "/usr/sbin": 1, - "/usr/local/sbin": 1, - "for": 1, - "i": 5, - "in": 2, - "function": 6, - "fish_sigtrap_handler": 1, - "on": 2, - "signal": 1, - "TRAP": 1, - "no": 2, - "scope": 1, - "shadowing": 1, - "description": 2, - "breakpoint": 1, - "__fish_on_interactive": 2, - "event": 1, - "fish_prompt": 1, - "__fish_config_interactive": 1, - "functions": 5, + "h": 1, + "help": 1, + "__fish_print_help": 1, + "return": 6, "e": 6, + "i": 5, + "set_color": 4, + "red": 2, + "printf": 3, + "(": 7, + "_": 3, + ")": 7, + "normal": 2, + "end": 33, + "if": 21, + "begin": 2, + ";": 7, + "or": 3, + "not": 8, + "test": 7, + "init": 5, + "n": 5, + "nend": 2, + "editor_cmd": 2, "eval": 5, + "type": 1, + "f": 3, + "/dev/null": 2, + "fish": 3, + "z": 1, + "IFS": 4, + "functions": 5, + "|": 3, + "fish_indent": 2, + "no": 2, + "indent": 1, + "prompt": 2, + "read": 1, + "p": 1, + "c": 1, + "s": 1, + "cmd": 2, + "echo": 3, + "TMPDIR": 2, + "/tmp": 1, + "tmpname": 8, + "%": 2, + "self": 2, + "random": 2, + "else": 3, + ".": 2, + "stat": 2, + "status": 7, + "rm": 1, "S": 1, + "d": 3, + "#": 18, "If": 2, "we": 2, "are": 1, + "in": 2, "an": 1, - "interactive": 8, "shell": 1, "should": 2, "enable": 1, @@ -69239,6 +69274,7 @@ "was": 1, "executed.": 1, "don": 1, + "t": 2, "do": 1, "this": 1, "commands": 1, @@ -69254,60 +69290,49 @@ "using": 1, "eval.": 1, "mode": 5, - "status": 7, "is": 3, - "else": 3, "none": 1, - "echo": 3, - "|": 3, - ".": 2, "<": 1, "&": 1, "res": 2, - "return": 6, - "funced": 3, - "editor": 7, - "EDITOR": 1, - "funcname": 14, - "while": 2, - "argv": 9, - "h": 1, - "help": 1, - "__fish_print_help": 1, - "set_color": 4, - "red": 2, - "printf": 3, - "(": 7, - "_": 3, - ")": 7, - "normal": 2, - "begin": 2, - ";": 7, - "or": 3, - "init": 5, - "nend": 2, - "editor_cmd": 2, - "type": 1, - "f": 3, - "/dev/null": 2, - "fish": 3, - "z": 1, - "fish_indent": 2, - "indent": 1, - "prompt": 2, - "read": 1, - "p": 1, - "c": 1, - "s": 1, - "cmd": 2, - "TMPDIR": 2, - "/tmp": 1, - "tmpname": 8, - "%": 2, - "self": 2, - "random": 2, - "stat": 2, - "rm": 1 + "g": 1, + "configdir": 2, + "/.config": 1, + "XDG_CONFIG_HOME": 2, + "fish_function_path": 4, + "configdir/fish/functions": 1, + "__fish_sysconfdir/functions": 1, + "__fish_datadir/functions": 3, + "contains": 4, + "fish_complete_path": 4, + "configdir/fish/completions": 1, + "__fish_sysconfdir/completions": 1, + "__fish_datadir/completions": 3, + "/usr/xpg4/bin": 3, + "PATH": 6, + "path_list": 4, + "/bin": 1, + "/usr/bin": 1, + "/usr/X11R6/bin": 1, + "/usr/local/bin": 1, + "__fish_bin_dir": 1, + "USER": 1, + "root": 1, + "/sbin": 1, + "/usr/sbin": 1, + "/usr/local/sbin": 1, + "for": 1, + "fish_sigtrap_handler": 1, + "on": 2, + "signal": 1, + "TRAP": 1, + "scope": 1, + "shadowing": 1, + "breakpoint": 1, + "__fish_on_interactive": 2, + "event": 1, + "fish_prompt": 1, + "__fish_config_interactive": 1 }, "wisp": { ";": 199, @@ -69854,6 +69879,7 @@ "Opa": 28, "OpenCL": 144, "OpenEdge ABL": 762, + "OpenSCAD": 67, "Org": 358, "Ox": 1006, "Oxygene": 157, @@ -70054,6 +70080,7 @@ "Opa": 2, "OpenCL": 2, "OpenEdge ABL": 5, + "OpenSCAD": 2, "Org": 1, "Ox": 3, "Oxygene": 1, @@ -70137,5 +70164,5 @@ "fish": 3, "wisp": 1 }, - "md5": "1edee1d2c454fb877027ae980cd163ef" + "md5": "f6c98a369a08fb381a39c964ca4cf380" } \ No newline at end of file diff --git a/samples/OpenSCAD/not_simple.scad b/samples/OpenSCAD/not_simple.scad new file mode 100644 index 00000000..dd4d1301 --- /dev/null +++ b/samples/OpenSCAD/not_simple.scad @@ -0,0 +1,13 @@ +// A more complicated 3D shape in OpenSCAD +$fn=32; + +difference() { + // main shape + union() { + translate( [ 0, 0, 2 ] ) cube( [ 15, 15, 4 ], center=true ); + translate( [ 0, 0, 13 ] ) cylinder( h=25, r1=5, r2=3, center=true ); + translate( [ 0, 0, 28 ] ) sphere( r=6 ); + } + // hole through center + translate( [ 0, 0, 17 ] ) cylinder( h=35, r=2, center=true ); +} diff --git a/samples/OpenSCAD/simple.scad b/samples/OpenSCAD/simple.scad new file mode 100644 index 00000000..b3e4da5d --- /dev/null +++ b/samples/OpenSCAD/simple.scad @@ -0,0 +1,3 @@ +// Simple sphere in OpenSCAD + +sphere( r=10 ); From f6e21897392d8a61c9da70247c9d43eb61d908e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9e=20Hansson?= Date: Mon, 28 Jul 2014 13:24:10 +0200 Subject: [PATCH 190/268] Regex matching filename 'composer.lock' fixed The previous regex had an unescaped period, which matches any character between 'composer' and 'lock' in the filename. --- lib/linguist/generated.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/generated.rb b/lib/linguist/generated.rb index 974fc7ae..99863a91 100644 --- a/lib/linguist/generated.rb +++ b/lib/linguist/generated.rb @@ -235,7 +235,7 @@ module Linguist # # Returns true or false. def composer_lock? - !!name.match(/composer.lock/) + !!name.match(/composer\.lock/) end # Internal: Is the blob a generated by Zephir From dd181421a7265979ce9ceec178b36aca0698d753 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Mon, 28 Jul 2014 17:32:40 +0100 Subject: [PATCH 191/268] 3.1.1 --- lib/linguist/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/version.rb b/lib/linguist/version.rb index 217ac4f3..05d68a15 100644 --- a/lib/linguist/version.rb +++ b/lib/linguist/version.rb @@ -1,3 +1,3 @@ module Linguist - VERSION = "3.1.0" + VERSION = "3.1.1" end From fc73f5185519c956e5a66d32ff0db15ae48daa7b Mon Sep 17 00:00:00 2001 From: "Steve King, Jr" Date: Mon, 28 Jul 2014 10:37:18 -0700 Subject: [PATCH 192/268] Adding Font Awesome to vendored files. --- lib/linguist/vendor.yml | 4 ++++ test/test_blob.rb | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/lib/linguist/vendor.yml b/lib/linguist/vendor.yml index c497960c..8dc18d0c 100644 --- a/lib/linguist/vendor.yml +++ b/lib/linguist/vendor.yml @@ -36,6 +36,10 @@ # Bootstrap minified css and js - (^|/)bootstrap([^.]*)(\.min)?\.(js|css)$ +# Font Awesome +- font-awesome.min.css +- font-awesome.css + # Foundation css - foundation.min.css - foundation.css diff --git a/test/test_blob.rb b/test/test_blob.rb index 54e10030..c0cbe3f3 100644 --- a/test/test_blob.rb +++ b/test/test_blob.rb @@ -393,6 +393,10 @@ class TestBlob < Test::Unit::TestCase # NuGet Packages assert blob("packages/Modernizr.2.0.6/Content/Scripts/modernizr-2.0.6-development-only.js").vendored? + # Font Awesome + assert blob("some/asset/path/font-awesome.min.css").vendored? + assert blob("some/asset/path/font-awesome.css").vendored? + # Normalize assert blob("some/asset/path/normalize.css").vendored? From 6b5d1fe25b660f08f174e6abe815e54af1c4d644 Mon Sep 17 00:00:00 2001 From: maieul Date: Thu, 31 Jul 2014 16:03:01 +0200 Subject: [PATCH 193/268] extension for biblatex --- lib/linguist/languages.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 5996fc8c..b2b747be 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -2160,10 +2160,13 @@ TeX: extensions: - .tex - .aux + - .bbx - .bib + - .cbx - .cls - .dtx - .ins + - .lbx - .ltx - .mkii - .mkiv From 0235433b7eec017c59f72389b6776dc58e3ca482 Mon Sep 17 00:00:00 2001 From: Paul Chaignon Date: Fri, 1 Aug 2014 15:56:44 +0200 Subject: [PATCH 194/268] Support for Cycript language with .cy file extension --- lib/linguist/languages.yml | 6 + samples/Cycript/utils.cy | 580 +++++++++++++++++++++++++++++++++++++ 2 files changed, 586 insertions(+) create mode 100644 samples/Cycript/utils.cy diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 5996fc8c..c72b1857 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -479,6 +479,12 @@ Cuda: - .cu - .cuh +Cycript: + type: programming + lexer: JavaScript + extensions: + - .cy + Cython: type: programming group: Python diff --git a/samples/Cycript/utils.cy b/samples/Cycript/utils.cy new file mode 100644 index 00000000..72e677b7 --- /dev/null +++ b/samples/Cycript/utils.cy @@ -0,0 +1,580 @@ +(function(utils) { + // Load C functions declared in utils.loadFuncs + var shouldLoadCFuncs = true; + // Expose the C functions to cycript's global scope + var shouldExposeCFuncs = true; + // Expose C constants to cycript's global scope + var shouldExposeConsts = true; + // Expose functions defined here to cycript's global scope + var shouldExposeFuncs = true; + // Which functions to expose + var funcsToExpose = ["exec", "include", "sizeof", "logify", "apply", "str2voidPtr", "voidPtr2str", "double2voidPtr", "voidPtr2double", "isMemoryReadable", "isObject", "makeStruct"]; + + // C functions that utils.loadFuncs loads + var CFuncsDeclarations = [ + // + "void *calloc(size_t num, size_t size)", + // + "char *strcpy(char *restrict dst, const char *restrict src)", + "char *strdup(const char *s1)", + "void* memset(void* dest, int ch, size_t count)", + // + "FILE *fopen(const char *, const char *)", + "int fclose(FILE *)", + "size_t fread(void *restrict, size_t, size_t, FILE *restrict)", + "size_t fwrite(const void *restrict, size_t, size_t, FILE *restrict)", + // + "mach_port_t mach_task_self()", + "kern_return_t task_for_pid(mach_port_name_t target_tport, int pid, mach_port_name_t *tn)", + "kern_return_t mach_vm_protect(vm_map_t target_task, mach_vm_address_t address, mach_vm_size_t size, boolean_t set_maximum, vm_prot_t new_protection)", + "kern_return_t mach_vm_write(vm_map_t target_task, mach_vm_address_t address, vm_offset_t data, mach_msg_type_number_t dataCnt)", + "kern_return_t mach_vm_read(vm_map_t target_task, mach_vm_address_t address, mach_vm_size_t size, vm_offset_t *data, mach_msg_type_number_t *dataCnt)", + ]; + + /* + Replacement for eval that can handle @encode etc. + + Usage: + cy# utils.exec("@encode(void *(int, char))") + @encode(void*(int,char)) + */ + utils.exec = function(str) { + var mkdir = @encode(int (const char *, int))(dlsym(RTLD_DEFAULT, "mkdir")); + var tempnam = @encode(char *(const char *, const char *))(dlsym(RTLD_DEFAULT, "tempnam")); + var fopen = @encode(void *(const char *, const char *))(dlsym(RTLD_DEFAULT, "fopen")); + var fclose = @encode(int (void *))(dlsym(RTLD_DEFAULT, "fclose")); + var fwrite = @encode(int (const char *, int, int, void *))(dlsym(RTLD_DEFAULT, "fwrite")); + var symlink = @encode(int (const char *, const char *))(dlsym(RTLD_DEFAULT, "symlink")); + var unlink = @encode(int (const char *))(dlsym(RTLD_DEFAULT, "unlink")); + var getenv = @encode(const char *(const char *))(dlsym(RTLD_DEFAULT, "getenv")); + var setenv = @encode(int (const char *, const char *, int))(dlsym(RTLD_DEFAULT, "setenv")); + + var libdir = "/usr/lib/cycript0.9"; + var dir = libdir + "/tmp"; + + mkdir(dir, 0777); + + // This is needed because tempnam seems to ignore the first argument on i386 + var old_tmpdir = getenv("TMPDIR"); + setenv("TMPDIR", dir, 1); + + // No freeing :( + var f = tempnam(dir, "exec-"); + setenv("TMPDIR", old_tmpdir, 1); + if(!f) { + return false; + } + + symlink(f, f + ".cy"); + + str = "exports.result = " + str; + + var handle = fopen(f, "w"); + fwrite(str, str.length, 1, handle); + fclose(handle); + + var r; + var except = null; + try { + r = require(f.replace(libdir + "/", "")); + } catch(e) { + except = e; + } + + unlink(f + ".cy"); + unlink(f); + + if(except !== null) { + throw except; + } + + return r.result; + }; + + /* + Applies known typedefs + Used in utils.include and utils.makeStruct + + Usage: + cy# utils.applyTypedefs("mach_vm_address_t") + "uint64_t" + */ + utils.applyTypedefs = function(str) { + var typedefs = { + "struct": "", + "restrict": "", + "FILE": "void", + "size_t": "uint64_t", + "uintptr_t": "unsigned long", + "kern_return_t": "int", + "mach_port_t": "unsigned int", + "mach_port_name_t": "unsigned int", + "vm_offset_t": "unsigned long", + "vm_size_t": "unsigned long", + "mach_vm_address_t": "uint64_t", + "mach_vm_offset_t": "uint64_t", + "mach_vm_size_t": "uint64_t", + "vm_map_offset_t": "uint64_t", + "vm_map_address_t": "uint64_t", + "vm_map_size_t": "uint64_t", + "mach_port_context_t": "uint64_t", + "vm_map_t": "unsigned int", + "boolean_t": "unsigned int", + "vm_prot_t": "int", + "mach_msg_type_number_t": "unsigned int", + "cpu_type_t": "int", + "cpu_subtype_t": "int", + "cpu_threadtype_t": "int", + }; + + for(var k in typedefs) { + str = str.replace(new RegExp("(\\s|\\*|,|\\(|^)" + k + "(\\s|\\*|,|\\)|$)", "g"), "$1" + typedefs[k] + "$2"); + } + + return str; + }; + + /* + Parses a C function declaration and returns the function name and cycript type + If load is true, tries to load it into cycript using utils.exec + + Usage: + cy# var str = "void *calloc(size_t num, size_t size)"; + "void *calloc(size_t num, size_t size)" + cy# utils.include(str) + ["calloc","@encode(void *(uint64_t num, uint64_t size))(140735674376857)"] + cy# var ret = utils.include(str, true) + ["calloc",0x7fff93e0e299] + cy# ret[1].type + @encode(void*(unsigned long long int,unsigned long long int)) + cy# ret[1](100, 1) + 0x100444100 + */ + utils.include = function(str, load) { + var re = /^\s*([^(]*(?:\s+|\*))(\w*)\s*\(([^)]*)\)\s*;?\s*$/; + var match = re.exec(str); + if(!match) { + return -1; + } + var rType = utils.applyTypedefs(match[1]); + var name = match[2]; + var args = match[3]; + + var argsRe = /([^,]+)(?:,|$)/g; + var argsTypes = []; + while((match = argsRe.exec(args)) !== null) { + var type = utils.applyTypedefs(match[1]); + argsTypes.push(type); + } + + var encodeString = "@encode("; + encodeString += rType + "("; + encodeString += argsTypes.join(", ") + "))"; + + var fun = dlsym(RTLD_DEFAULT, name); + if(fun !== null) { + encodeString += "(" + fun + ")"; + if(load) { + return [name, utils.exec(encodeString)]; + } + } else if(load) { + throw "Function couldn't be found with dlsym!"; + } + + return [name, encodeString]; + }; + + /* + Loads the function declaration in the defs array using utils.exec and exposes to cycript's global scope + Is automatically called if shouldLoadCFuncs is true + */ + utils.funcs = {}; + utils.loadfuncs = function(expose) { + for(var i = 0; i < CFuncsDeclarations.length; i++) { + try { + var o = utils.include(CFuncsDeclarations[i], true); + utils.funcs[o[0]] = o[1]; + if(expose) { + Cycript.all[o[0]] = o[1]; + } + } catch(e) { + system.print("Failed to load function: " + i); + try { + system.print(utils.include(CFuncsDeclarations[i])); + } catch(e2) { + + } + } + } + }; + + /* + Calculates the size of a type like the C operator sizeof + + Usage: + cy# utils.sizeof(int) + 4 + cy# utils.sizeof(@encode(void *)) + 8 + cy# utils.sizeof("mach_vm_address_t") + 8 + */ + utils.sizeof = function(type) { + if(typeof type === "string") { + type = utils.applyTypedefs(type); + type = utils.exec("@encode(" + type + ")"); + } + + // (const) char * has "infinite" preceision + if(type.toString().slice(-1) === "*") { + return utils.sizeof(@encode(void *)); + } + + // float and double + if(type.toString() === @encode(float).toString()) { + return 4; + } else if (type.toString() === @encode(double).toString()) { + return 8; + } + + var typeInstance = type(0); + + if(typeInstance instanceof Object) { + // Arrays + if("length" in typeInstance) { + return typeInstance.length * utils.sizeof(typeInstance.type); + } + + // Structs + if(typeInstance.toString() === "[object Struct]") { + var typeStr = type.toString(); + var arrayTypeStr = "[2" + typeStr + "]"; + var arrayType = new Type(arrayTypeStr); + + var arrayInstance = new arrayType; + + return @encode(void *)(&(arrayInstance[1])) - @encode(void *)(&(arrayInstance[0])); + } + } + + for(var i = 0; i < 5; i++) { + var maxSigned = Math.pow(2, 8 * Math.pow(2, i) - 1) - 1; + if(i === 3) { + // Floating point fix ;^) + maxSigned /= 1000; + } + + // can't use !== or sizeof(void *) === 0.5 + if(type(maxSigned) != maxSigned) { + return Math.pow(2, i - 1); + } + } + }; + + /* + Logs a specific message sent to an instance of a class like logify.pl in theos + Requires Cydia Substrate (com.saurik.substrate.MS) and NSLog (org.cycript.NSLog) modules + Returns the old message returned by MS.hookMessage (Note: this is not just the old message!) + + Usage: + cy# var oldm = utils.logify(objc_getMetaClass(NSNumber), @selector(numberWithDouble:)) + ... + cy# var n = [NSNumber numberWithDouble:1.5] + 2014-07-28 02:26:39.805 cycript[71213:507] +[ numberWithDouble:1.5] + 2014-07-28 02:26:39.806 cycript[71213:507] = 1.5 + @1.5 + */ + utils.logify = function(cls, sel) { + @import com.saurik.substrate.MS; + @import org.cycript.NSLog; + + var oldm = {}; + + MS.hookMessage(cls, sel, function() { + var args = [].slice.call(arguments); + + var selFormat = sel.toString().replace(/:/g, ":%@ ").trim(); + var logFormat = "%@[<%@: 0x%@> " + selFormat + "]"; + + var standardArgs = [logFormat, class_isMetaClass(cls)? "+": "-", cls.toString(), (&this).valueOf().toString(16)]; + var logArgs = standardArgs.concat(args); + + NSLog.apply(null, logArgs); + + var r = oldm->apply(this, arguments); + + if(r !== undefined) { + NSLog(" = %@", r); + } + + return r; + }, oldm); + + return oldm; + }; + + /* + Calls a C function by providing its name and arguments + Doesn't support structs + Return value is always a void pointer + + Usage: + cy# utils.apply("printf", ["%s %.3s, %d -> %c, float: %f\n", "foo", "barrrr", 97, 97, 1.5]) + foo bar, 97 -> a, float: 1.500000 + 0x22 + */ + utils.apply = function(fun, args) { + if(!(args instanceof Array)) { + throw "Args needs to be an array!"; + } + + var argc = args.length; + var voidPtr = @encode(void *); + var argTypes = []; + for(var i = 0; i < argc; i++) { + var argType = voidPtr; + + var arg = args[i]; + if(typeof arg === "string") { + argType = @encode(char *); + } + if(typeof arg === "number" && arg % 1 !== 0) { + argType = @encode(double); + } + + argTypes.push(argType); + } + + var type = voidPtr.functionWith.apply(voidPtr, argTypes); + + if(typeof fun === "string") { + fun = dlsym(RTLD_DEFAULT, fun); + } + + if(!fun) { + throw "Function not found!"; + } + + return type(fun).apply(null, args); + }; + + /* + Converts a string (char *) to a void pointer (void *) + You can't cast to strings to void pointers and vice versa in cycript. Blame saurik. + + Usage: + cy# var voidPtr = utils.str2voidPtr("foobar") + 0x100331590 + cy# utils.voidPtr2str(voidPtr) + "foobar" + */ + utils.str2voidPtr = function(str) { + var strdup = @encode(void *(char *))(dlsym(RTLD_DEFAULT, "strdup")); + return strdup(str); + }; + + /* + The inverse function of str2voidPtr + */ + utils.voidPtr2str = function(voidPtr) { + var strdup = @encode(char *(void *))(dlsym(RTLD_DEFAULT, "strdup")); + return strdup(voidPtr); + }; + + /* + Converts a double into a void pointer + This can be used to view the binary representation of a floating point number + + Usage: + cy# var n = utils.double2voidPtr(-1.5) + 0xbff8000000000000 + cy# utils.voidPtr2double(n) + -1.5 + */ + utils.double2voidPtr = function(n) { + var doublePtr = new double; + *doublePtr = n; + + var voidPtrPtr = @encode(void **)(doublePtr); + + return *voidPtrPtr; + }; + + /* + The inverse function of double2voidPtr + */ + utils.voidPtr2double = function(voidPtr) { + var voidPtrPtr = new @encode(void **); + *voidPtrPtr = voidPtr; + + var doublePtr = @encode(double *)(voidPtrPtr); + + return *doublePtr; + }; + + /* + Determines in a safe way if a memory location is readable + + Usage: + cy# utils.isMemoryReadable(0) + false + cy# utils.isMemoryReadable(0x1337) + false + cy# utils.isMemoryReadable(NSObject) + true + cy# var a = malloc(100); utils.isMemoryReadable(a) + true + */ + utils.isMemoryReadable = function(ptr) { + if(typeof ptr === "string") { + return true; + } + + var fds = new @encode(int [2]); + utils.apply("pipe", [fds]); + var result = utils.apply("write", [fds[1], ptr, 1]) == 1; + + utils.apply("close", [fds[0]]); + utils.apply("close", [fds[1]]); + + return result; + }; + + /* + Determines in a safe way if the memory location contains an Objective-C object + + Usage: + cy# utils.isObject(0) + false + cy# utils.isObject(0x1337) + false + cy# utils.isObject(NSObject) + true + cy# utils.isObject(objc_getMetaClass(NSObject)) + true + cy# utils.isObject([new NSObject init]) + true + cy# var a = malloc(100); utils.isObject(a) + false + cy# *@encode(void **)(a) = NSObject; utils.isObject(a) + true + */ + utils.isObject = function(obj) { + obj = @encode(void *)(obj); + var lastObj = -1; + + function objc_isa_ptr(obj) { + // See http://www.sealiesoftware.com/blog/archive/2013/09/24/objc_explain_Non-pointer_isa.html + var objc_debug_isa_class_mask = 0x00000001fffffffa; + obj = (obj & 1)? (obj & objc_debug_isa_class_mask): obj; + + if((obj & (utils.sizeof(@encode(void *)) - 1)) != 0) { + return null; + } else { + return obj; + } + } + + function ptrValue(obj) { + return obj? obj.valueOf(): null; + } + + var foundMetaClass = false; + + for(obj = objc_isa_ptr(obj); utils.isMemoryReadable(obj); ) { + obj = *@encode(void **)(obj); + + if(ptrValue(obj) == ptrValue(lastObj)) { + foundMetaClass = true; + break; + } + + lastObj = obj; + } + + if(!foundMetaClass) { + return false; + } + + if(lastObj === -1 || lastObj === null) { + return false; + } + + var obj_class = objc_isa_ptr(@encode(void **)(obj)[1]); + + if(!utils.isMemoryReadable(obj_class)) { + return false; + } + + var metaclass = objc_isa_ptr(@encode(void **)(obj_class)[0]); + var superclass = objc_isa_ptr(@encode(void **)(obj_class)[1]); + + return ptrValue(obj) == ptrValue(metaclass) && superclass == null; + }; + + /* + Creates a cycript struct type from a C struct definition + + Usage: + cy# var foo = makeStruct("int a; short b; char c; uint64_t d; double e;", "foo"); + @encode(foo) + cy# var f = new foo + &{a:0,b:0,c:0,d:0,e:0} + cy# f->a = 100; f + &{a:100,b:0,c:0,d:0,e:0} + cy# *@encode(int *)(f) + 100 + */ + utils.makeStruct = function(str, name) { + var fieldRe = /(?:\s|\n)*([^;]+\s*(?:\s|\*))([^;]+)\s*;/g; + + if(!name) { + name = "struct" + Math.floor(Math.random() * 100000); + } + var typeStr = "{" + name + "="; + + while((match = fieldRe.exec(str)) !== null) { + var fieldType = utils.applyTypedefs(match[1]); + var fieldName = match[2]; + var encodedType = utils.exec("@encode(" + fieldType + ")").toString(); + + typeStr += '"' + fieldName + '"' + encodedType; + } + + typeStr += "}"; + + return new Type(typeStr); + }; + + // Various constants + utils.constants = { + VM_PROT_NONE: 0x0, + VM_PROT_READ: 0x1, + VM_PROT_WRITE: 0x2, + VM_PROT_EXECUTE: 0x4, + VM_PROT_NO_CHANGE: 0x8, + VM_PROT_COPY: 0x10, + VM_PROT_WANTS_COPY: 0x10, + VM_PROT_IS_MASK: 0x40, + }; + var c = utils.constants; + c.VM_PROT_DEFAULT = c.VM_PROT_READ | c.VM_PROT_WRITE; + c.VM_PROT_ALL = c.VM_PROT_READ | c.VM_PROT_WRITE | c.VM_PROT_EXECUTE; + + if(shouldExposeConsts) { + for(var k in c) { + Cycript.all[k] = c[k]; + } + } + + if(shouldExposeFuncs) { + for(var i = 0; i < funcsToExpose.length; i++) { + var name = funcsToExpose[i]; + Cycript.all[name] = utils[name]; + } + } + + if(shouldLoadCFuncs) { + utils.loadfuncs(shouldExposeCFuncs); + } +})(exports); From 27a621531bd61d4fe9b773683735b9a575ea1224 Mon Sep 17 00:00:00 2001 From: Paul Chaignon Date: Fri, 1 Aug 2014 16:07:52 +0200 Subject: [PATCH 195/268] Add knockout.js library as vendor file --- lib/linguist/vendor.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/linguist/vendor.yml b/lib/linguist/vendor.yml index c497960c..3911e4c9 100644 --- a/lib/linguist/vendor.yml +++ b/lib/linguist/vendor.yml @@ -112,6 +112,10 @@ - (^|/)modernizr\-\d\.\d+(\.\d+)?(\.min)?\.js$ - (^|/)modernizr\.custom\.\d+\.js$ +# Knockout +- (^|/)knockout-(\d+\.){3}(debug\.)?js$ +- knockout-min.js + ## Python ## # django From f58522d5a908a7939b3e8b8adbaae1697cb03db9 Mon Sep 17 00:00:00 2001 From: Paul Chaignon Date: Sun, 3 Aug 2014 22:53:23 +0200 Subject: [PATCH 196/268] Lexer for Handlebars --- lib/linguist/languages.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 5996fc8c..78602a78 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -902,12 +902,10 @@ Haml: Handlebars: type: markup - lexer: Text only + lexer: Handlebars extensions: - .handlebars - .hbs - - .html.handlebars - - .html.hbs Harbour: type: programming From c8bc0a5c792b39b378a6bc743ad45949ea18f13b Mon Sep 17 00:00:00 2001 From: Paul Chaignon Date: Mon, 4 Aug 2014 11:23:31 +0200 Subject: [PATCH 197/268] Remove file extensions with multiple segments --- lib/linguist/languages.yml | 14 +- lib/linguist/samples.json | 60641 ++++++++++---------- samples/Clojure/index.cljs.hl | 146 + samples/HTML+ERB/fishbowl.html.erb.deface | 31 + samples/HTML+ERB/index.html.erb | 39 + samples/Haml/buttons.html.haml.deface | 29 + 6 files changed, 30719 insertions(+), 30181 deletions(-) create mode 100644 samples/Clojure/index.cljs.hl create mode 100644 samples/HTML+ERB/fishbowl.html.erb.deface create mode 100644 samples/HTML+ERB/index.html.erb create mode 100644 samples/Haml/buttons.html.haml.deface diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 5996fc8c..7298faef 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -321,7 +321,7 @@ CLIPS: CMake: extensions: - .cmake - - .cmake.in + - .in filenames: - CMakeLists.txt @@ -380,7 +380,7 @@ Clojure: - .cljscm - .cljx - .hic - - .cljs.hl + - .hl filenames: - riemann.config @@ -857,7 +857,6 @@ HTML: extensions: - .html - .htm - - .html.hl - .st - .xhtml @@ -877,9 +876,7 @@ HTML+ERB: - erb extensions: - .erb - - .erb.deface - - .html.erb - - .html.erb.deface + - .deface HTML+PHP: type: markup @@ -897,8 +894,7 @@ Haml: type: markup extensions: - .haml - - .haml.deface - - .html.haml.deface + - .deface Handlebars: type: markup @@ -906,8 +902,6 @@ Handlebars: extensions: - .handlebars - .hbs - - .html.handlebars - - .html.hbs Harbour: type: programming diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index c78ed491..df38f390 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -92,7 +92,8 @@ ".cljs", ".cljscm", ".cljx", - ".hic" + ".hic", + ".hl" ], "CoffeeScript": [ ".coffee" @@ -209,7 +210,12 @@ ".html", ".st" ], + "HTML+ERB": [ + ".deface", + ".erb" + ], "Haml": [ + ".deface", ".haml" ], "Handlebars": [ @@ -797,8 +803,8 @@ "exception.zep.php" ] }, - "tokens_total": 630435, - "languages_total": 869, + "tokens_total": 632154, + "languages_total": 873, "tokens": { "ABAP": { "*/**": 1, @@ -1090,19 +1096,27 @@ "list0_map": 2, "": 14, "": 3, - "datatype": 4, - "CoYoneda": 7, + "option0": 3, + "functor_option0": 2, + "opt": 6, + "option0_map": 1, + "functor_homres": 2, + "c": 3, "r": 25, - "of": 59, + "x": 48, "fun": 56, - "CoYoneda_phi": 2, - "CoYoneda_psi": 3, + "Yoneda_phi": 3, + "Yoneda_psi": 3, "ftor": 9, "fx": 8, - "x": 48, - "int0": 4, - "I": 8, - "int": 2, + "m": 4, + "mf": 4, + "natrans": 3, + "G": 2, + "Yoneda_phi_nat": 2, + "Yoneda_psi_nat": 2, + "*": 2, + "datatype": 4, "bool": 27, "True": 7, "|": 22, @@ -1113,170 +1127,66 @@ "string": 2, "case": 9, "+": 20, + "of": 59, "fprint_val": 2, "": 2, "out": 8, "fprint": 3, - "int2bool": 2, - "i": 6, - "let": 34, - "in": 48, - "if": 7, - "then": 11, - "else": 7, - "end": 73, - "myintlist0": 2, - "g0ofg1": 1, - "list": 1, "myboolist0": 9, + "list_t": 1, + "g0ofg1_list": 1, + "Yoneda_bool_list0": 3, + "myboolist1": 2, "fprintln": 3, "stdout_ref": 4, "main0": 3, "UN": 3, - "phil_left": 3, - "n": 51, - "phil_right": 3, - "nmod": 1, - "NPHIL": 6, - "randsleep": 6, - "intGte": 1, - "void": 14, - "ignoret": 2, - "sleep": 2, - "UN.cast": 2, - "uInt": 1, - "rand": 1, - "mod": 1, - "phil_think": 3, - "println": 9, - "phil_dine": 3, - "lf": 5, - "rf": 5, - "phil_loop": 10, - "nl": 2, - "nr": 2, - "ch_lfork": 2, - "fork_changet": 5, - "ch_rfork": 2, - "channel_takeout": 4, - "HX": 1, - "try": 1, - "to": 16, - "actively": 1, - "induce": 1, - "deadlock": 2, - "ch_forktray": 3, - "forktray_changet": 4, - "channel_insert": 5, - "[": 49, - "]": 48, - "cleaner_wash": 3, - "fork_get_num": 4, - "cleaner_return": 4, - "ch": 7, - "cleaner_loop": 6, - "f0": 3, - "dynload": 3, - "local": 10, - "mythread_create_cloptr": 6, - "llam": 6, - "while": 1, - "true": 5, - "%": 7, - "#": 7, - "#define": 4, - "nphil": 13, - "natLt": 2, - "absvtype": 2, - "fork_vtype": 3, - "ptr": 2, - "vtypedef": 2, - "fork": 16, - "channel": 11, - "datavtype": 1, - "FORK": 3, - "assume": 2, - "the_forkarray": 2, - "t": 1, - "array_tabulate": 1, - "fopr": 1, - "": 2, - "where": 6, - "channel_create_exn": 2, - "": 2, - "i2sz": 4, - "arrayref_tabulate": 1, - "the_forktray": 2, - "set_vtype": 3, - "t@ype": 2, - "set": 34, - "t0p": 31, - "compare_elt_elt": 4, - "x1": 1, - "x2": 1, - "<": 14, - "linset_nil": 2, - "linset_make_nil": 2, - "linset_sing": 2, - "": 16, - "linset_make_sing": 2, - "linset_make_list": 1, - "List": 1, - "INV": 24, - "linset_is_nil": 2, - "linset_isnot_nil": 2, - "linset_size": 2, - "size_t": 1, - "linset_is_member": 3, - "x0": 22, - "linset_isnot_member": 1, - "linset_copy": 2, - "linset_free": 2, - "linset_insert": 3, - "&": 17, - "linset_takeout": 1, - "res": 9, - "opt": 6, - "endfun": 1, - "linset_takeout_opt": 1, - "Option_vt": 4, - "linset_remove": 2, - "linset_choose": 3, - "linset_choose_opt": 1, - "linset_takeoutmax": 1, - "linset_takeoutmax_opt": 1, - "linset_takeoutmin": 1, - "linset_takeoutmin_opt": 1, - "fprint_linset": 3, - "sep": 1, - "FILEref": 2, - "overload": 1, - "with": 1, - "env": 11, - "vt0p": 2, - "linset_foreach": 3, - "fwork": 3, - "linset_foreach_env": 3, - "linset_listize": 2, - "List0_vt": 5, - "linset_listize1": 2, "code": 6, "reuse": 2, + "assume": 2, + "set_vtype": 3, "elt": 2, + "t@ype": 2, + "List0_vt": 5, + "linset_nil": 2, "list_vt_nil": 16, + "linset_make_nil": 2, + "linset_sing": 2, "list_vt_cons": 17, + "linset_make_sing": 2, + "linset_is_nil": 2, "list_vt_is_nil": 1, + "linset_isnot_nil": 2, "list_vt_is_cons": 1, + "linset_size": 2, + "let": 34, + "n": 51, "list_vt_length": 1, + "in": 48, + "i2sz": 4, + "end": 73, + "linset_is_member": 3, + "x0": 22, "aux": 4, "nat": 4, ".": 14, "": 3, "list_vt": 7, + "<": 14, "sgn": 9, + "compare_elt_elt": 4, + "if": 7, + "then": 11, "false": 6, + "else": 7, + "true": 5, + "[": 49, + "]": 48, + "linset_copy": 2, "list_vt_copy": 2, + "linset_free": 2, "list_vt_free": 1, + "linset_insert": 3, "mynode_cons": 4, "nx": 22, "mynode1": 6, @@ -1292,7 +1202,9 @@ "ins": 3, "tail": 1, "recursive": 1, + "&": 17, "n1": 4, + "#": 7, "<=>": 1, "1": 3, "mynode_make_elt": 4, @@ -1303,17 +1215,25 @@ "free@": 1, "xs1_": 3, "rem": 1, - "*": 2, + "linset_remove": 2, + "linset_choose": 3, "opt_some": 1, "opt_none": 1, + "env": 11, + "linset_foreach_env": 3, "list_vt_foreach": 1, + "fwork": 3, "": 3, + "linset_foreach": 3, "list_vt_foreach_env": 1, + "linset_listize": 2, + "linset_listize1": 2, "mynode_null": 5, "mynode": 3, "null": 1, "the_null_ptr": 1, "mynode_free": 1, + "where": 6, "nx2": 4, "mynode_get_elt": 1, "nx1": 7, @@ -1322,32 +1242,61 @@ "l": 3, "__assert": 2, "praxi": 1, + "void": 14, "mynode_getfree_elt": 1, "linset_takeout_ngc": 2, + "set": 34, "takeout": 3, "mynode0": 1, "pf_x": 6, "view@x": 3, "pf_xs1": 6, "view@xs1": 3, + "res": 9, "linset_takeoutmax_ngc": 2, "xs_": 4, "@list_vt_nil": 1, "linset_takeoutmin_ngc": 2, "unsnoc": 4, "pos": 1, + "": 16, "and": 10, "fold@xs": 1, - "ATS_PACKNAME": 1, - "ATS_STALOADFLAG": 1, - "no": 2, - "static": 1, - "loading": 1, - "at": 2, - "run": 1, - "time": 1, - "castfn": 1, - "linset2list": 1, + "CoYoneda": 7, + "CoYoneda_phi": 2, + "CoYoneda_psi": 3, + "int0": 4, + "I": 8, + "int": 2, + "int2bool": 2, + "i": 6, + "myintlist0": 2, + "g0ofg1": 1, + "list": 1, + "%": 7, + "#define": 4, + "NPHIL": 6, + "nphil": 13, + "natLt": 2, + "phil_left": 3, + "phil_right": 3, + "phil_loop": 10, + "cleaner_loop": 6, + "absvtype": 2, + "fork_vtype": 3, + "ptr": 2, + "vtypedef": 2, + "fork": 16, + "fork_get_num": 4, + "phil_dine": 3, + "lf": 5, + "rf": 5, + "phil_think": 3, + "cleaner_wash": 3, + "cleaner_return": 4, + "fork_changet": 5, + "channel": 11, + "forktray_changet": 4, "": 1, "html": 1, "PUBLIC": 1, @@ -1437,6 +1386,7 @@ "thinking": 1, "dining.": 1, "order": 1, + "to": 16, "dine": 1, "needs": 2, "first": 2, @@ -1493,6 +1443,7 @@ "#pats2xhtml_sats": 3, "": 7, "If": 2, + "channel_insert": 5, "called": 2, "full": 4, "caller": 2, @@ -1500,6 +1451,7 @@ "until": 2, "taken": 1, "channel.": 2, + "channel_takeout": 4, "empty": 1, "inserted": 1, "Channel": 2, @@ -1525,11 +1477,13 @@ "capacity": 3, "reason": 1, "store": 1, + "at": 2, "most": 1, "guarantee": 1, "these": 1, "never": 2, "so": 2, + "no": 2, "attempt": 1, "made": 1, "send": 1, @@ -1580,6 +1534,7 @@ "One": 1, "able": 1, "encounter": 1, + "deadlock": 2, "after": 1, "running": 1, "simulation": 1, @@ -1596,23 +1551,74 @@ "": 1, "main": 1, "fprint_filsub": 1, - "option0": 3, - "functor_option0": 2, - "option0_map": 1, - "functor_homres": 2, - "c": 3, - "Yoneda_phi": 3, - "Yoneda_psi": 3, - "m": 4, - "mf": 4, - "natrans": 3, - "G": 2, - "Yoneda_phi_nat": 2, - "Yoneda_psi_nat": 2, - "list_t": 1, - "g0ofg1_list": 1, - "Yoneda_bool_list0": 3, - "myboolist1": 2 + "t0p": 31, + "x1": 1, + "x2": 1, + "linset_make_list": 1, + "List": 1, + "INV": 24, + "size_t": 1, + "linset_isnot_member": 1, + "linset_takeout": 1, + "endfun": 1, + "linset_takeout_opt": 1, + "Option_vt": 4, + "linset_choose_opt": 1, + "linset_takeoutmax": 1, + "linset_takeoutmax_opt": 1, + "linset_takeoutmin": 1, + "linset_takeoutmin_opt": 1, + "fprint_linset": 3, + "sep": 1, + "FILEref": 2, + "overload": 1, + "with": 1, + "vt0p": 2, + "ATS_PACKNAME": 1, + "ATS_STALOADFLAG": 1, + "static": 1, + "loading": 1, + "run": 1, + "time": 1, + "castfn": 1, + "linset2list": 1, + "local": 10, + "datavtype": 1, + "FORK": 3, + "the_forkarray": 2, + "t": 1, + "array_tabulate": 1, + "fopr": 1, + "": 2, + "ch": 7, + "UN.cast": 2, + "channel_create_exn": 2, + "": 2, + "arrayref_tabulate": 1, + "the_forktray": 2, + "nmod": 1, + "randsleep": 6, + "intGte": 1, + "ignoret": 2, + "sleep": 2, + "uInt": 1, + "rand": 1, + "mod": 1, + "println": 9, + "nl": 2, + "nr": 2, + "ch_lfork": 2, + "ch_rfork": 2, + "HX": 1, + "try": 1, + "actively": 1, + "induce": 1, + "ch_forktray": 3, + "f0": 3, + "dynload": 3, + "mythread_create_cloptr": 6, + "llam": 6, + "while": 1 }, "Agda": { "module": 3, @@ -1674,64 +1680,20 @@ }, "Alloy": { "module": 3, - "examples/systems/file_system": 1, - "abstract": 2, + "examples/systems/marksweepgc": 1, "sig": 20, - "Object": 10, + "Node": 10, "{": 54, "}": 60, - "Name": 2, - "File": 1, - "extends": 10, - "some": 3, - "d": 3, - "Dir": 8, - "|": 19, - "this": 14, - "in": 19, - "d.entries.contents": 1, - "entries": 3, - "set": 10, - "DirEntry": 2, - "parent": 3, - "lone": 6, - "this.": 4, - "@contents.": 1, - "@entries": 1, - "all": 16, - "e1": 2, - "e2": 2, - "e1.name": 1, - "e2.name": 1, - "@parent": 2, - "Root": 5, - "one": 8, - "no": 8, - "Cur": 1, - "name": 1, - "contents": 2, - "pred": 16, - "OneParent_buggyVersion": 2, - "-": 41, - "d.parent": 2, - "OneParent_correctVersion": 2, - "(": 12, - "&&": 2, - "contents.d": 1, - ")": 9, - "NoDirAliases": 3, - "o": 1, - "o.": 1, - "check": 6, - "for": 7, - "expect": 6, - "examples/systems/marksweepgc": 1, - "Node": 10, "HeapState": 5, "left": 3, "right": 1, + "-": 41, + "lone": 6, "marked": 1, + "set": 10, "freeList": 1, + "pred": 16, "clearMarks": 1, "[": 82, "hs": 16, @@ -1744,7 +1706,9 @@ "]": 80, "+": 14, "n.": 1, + "(": 12, "hs.left": 2, + ")": 9, "mark": 1, "from": 2, "hs.reachable": 1, @@ -1756,14 +1720,21 @@ "root": 5, "assert": 3, "Soundness1": 2, + "all": 16, "h": 9, "live": 3, "h.reachable": 1, + "|": 19, "h.right": 1, "Soundness2": 2, + "no": 8, ".reachable": 2, "h.GC": 1, + "in": 19, ".freeList": 1, + "check": 6, + "for": 7, + "expect": 6, "Completeness": 1, "examples/systems/views": 1, "open": 2, @@ -1774,6 +1745,7 @@ "util/relation": 1, "rel": 1, "Ref": 19, + "Object": 10, "t": 16, "b": 13, "v": 25, @@ -1792,11 +1764,13 @@ "been": 1, "invalidated": 1, "obj": 1, + "one": 8, "ViewType": 8, "anyviews": 2, "visualization": 1, "ViewType.views": 1, "Map": 2, + "extends": 10, "keys": 3, "map": 2, "s": 6, @@ -1812,6 +1786,7 @@ "Set": 2, "elts": 2, "SetRef": 5, + "abstract": 2, "KeySetView": 6, "State.views": 1, "IteratorView": 3, @@ -1850,6 +1825,8 @@ "viewFrame": 4, "post.dirty": 1, "pre.dirty": 1, + "some": 3, + "&&": 2, "allocates": 5, "&": 3, "post.refs": 1, @@ -1858,6 +1835,7 @@ "dom": 1, "<:>": 1, "setRefs": 1, + "this": 14, "MapRef.put": 1, "k": 5, "none": 4, @@ -1905,9 +1883,300 @@ "ViewType.pre.views": 2, "but": 1, "#s.obj": 1, - "<": 1 + "<": 1, + "examples/systems/file_system": 1, + "Name": 2, + "File": 1, + "d": 3, + "Dir": 8, + "d.entries.contents": 1, + "entries": 3, + "DirEntry": 2, + "parent": 3, + "this.": 4, + "@contents.": 1, + "@entries": 1, + "e1": 2, + "e2": 2, + "e1.name": 1, + "e2.name": 1, + "@parent": 2, + "Root": 5, + "Cur": 1, + "name": 1, + "contents": 2, + "OneParent_buggyVersion": 2, + "d.parent": 2, + "OneParent_correctVersion": 2, + "contents.d": 1, + "NoDirAliases": 3, + "o": 1, + "o.": 1 }, "ApacheConf": { + "#": 182, + "ServerRoot": 2, + "#Listen": 2, + "Listen": 2, + "LoadModule": 126, + "authn_file_module": 2, + "libexec/apache2/mod_authn_file.so": 1, + "authn_dbm_module": 2, + "libexec/apache2/mod_authn_dbm.so": 1, + "authn_anon_module": 2, + "libexec/apache2/mod_authn_anon.so": 1, + "authn_dbd_module": 2, + "libexec/apache2/mod_authn_dbd.so": 1, + "authn_default_module": 2, + "libexec/apache2/mod_authn_default.so": 1, + "authz_host_module": 2, + "libexec/apache2/mod_authz_host.so": 1, + "authz_groupfile_module": 2, + "libexec/apache2/mod_authz_groupfile.so": 1, + "authz_user_module": 2, + "libexec/apache2/mod_authz_user.so": 1, + "authz_dbm_module": 2, + "libexec/apache2/mod_authz_dbm.so": 1, + "authz_owner_module": 2, + "libexec/apache2/mod_authz_owner.so": 1, + "authz_default_module": 2, + "libexec/apache2/mod_authz_default.so": 1, + "auth_basic_module": 2, + "libexec/apache2/mod_auth_basic.so": 1, + "auth_digest_module": 2, + "libexec/apache2/mod_auth_digest.so": 1, + "cache_module": 2, + "libexec/apache2/mod_cache.so": 1, + "disk_cache_module": 2, + "libexec/apache2/mod_disk_cache.so": 1, + "mem_cache_module": 2, + "libexec/apache2/mod_mem_cache.so": 1, + "dbd_module": 2, + "libexec/apache2/mod_dbd.so": 1, + "dumpio_module": 2, + "libexec/apache2/mod_dumpio.so": 1, + "reqtimeout_module": 1, + "libexec/apache2/mod_reqtimeout.so": 1, + "ext_filter_module": 2, + "libexec/apache2/mod_ext_filter.so": 1, + "include_module": 2, + "libexec/apache2/mod_include.so": 1, + "filter_module": 2, + "libexec/apache2/mod_filter.so": 1, + "substitute_module": 1, + "libexec/apache2/mod_substitute.so": 1, + "deflate_module": 2, + "libexec/apache2/mod_deflate.so": 1, + "log_config_module": 3, + "libexec/apache2/mod_log_config.so": 1, + "log_forensic_module": 2, + "libexec/apache2/mod_log_forensic.so": 1, + "logio_module": 3, + "libexec/apache2/mod_logio.so": 1, + "env_module": 2, + "libexec/apache2/mod_env.so": 1, + "mime_magic_module": 2, + "libexec/apache2/mod_mime_magic.so": 1, + "cern_meta_module": 2, + "libexec/apache2/mod_cern_meta.so": 1, + "expires_module": 2, + "libexec/apache2/mod_expires.so": 1, + "headers_module": 2, + "libexec/apache2/mod_headers.so": 1, + "ident_module": 2, + "libexec/apache2/mod_ident.so": 1, + "usertrack_module": 2, + "libexec/apache2/mod_usertrack.so": 1, + "#LoadModule": 4, + "unique_id_module": 2, + "libexec/apache2/mod_unique_id.so": 1, + "setenvif_module": 2, + "libexec/apache2/mod_setenvif.so": 1, + "version_module": 2, + "libexec/apache2/mod_version.so": 1, + "proxy_module": 2, + "libexec/apache2/mod_proxy.so": 1, + "proxy_connect_module": 2, + "libexec/apache2/mod_proxy_connect.so": 1, + "proxy_ftp_module": 2, + "libexec/apache2/mod_proxy_ftp.so": 1, + "proxy_http_module": 2, + "libexec/apache2/mod_proxy_http.so": 1, + "proxy_scgi_module": 1, + "libexec/apache2/mod_proxy_scgi.so": 1, + "proxy_ajp_module": 2, + "libexec/apache2/mod_proxy_ajp.so": 1, + "proxy_balancer_module": 2, + "libexec/apache2/mod_proxy_balancer.so": 1, + "ssl_module": 4, + "libexec/apache2/mod_ssl.so": 1, + "mime_module": 4, + "libexec/apache2/mod_mime.so": 1, + "dav_module": 2, + "libexec/apache2/mod_dav.so": 1, + "status_module": 2, + "libexec/apache2/mod_status.so": 1, + "autoindex_module": 2, + "libexec/apache2/mod_autoindex.so": 1, + "asis_module": 2, + "libexec/apache2/mod_asis.so": 1, + "info_module": 2, + "libexec/apache2/mod_info.so": 1, + "cgi_module": 2, + "libexec/apache2/mod_cgi.so": 1, + "dav_fs_module": 2, + "libexec/apache2/mod_dav_fs.so": 1, + "vhost_alias_module": 2, + "libexec/apache2/mod_vhost_alias.so": 1, + "negotiation_module": 2, + "libexec/apache2/mod_negotiation.so": 1, + "dir_module": 4, + "libexec/apache2/mod_dir.so": 1, + "imagemap_module": 2, + "libexec/apache2/mod_imagemap.so": 1, + "actions_module": 2, + "libexec/apache2/mod_actions.so": 1, + "speling_module": 2, + "libexec/apache2/mod_speling.so": 1, + "userdir_module": 2, + "libexec/apache2/mod_userdir.so": 1, + "alias_module": 4, + "libexec/apache2/mod_alias.so": 1, + "rewrite_module": 2, + "libexec/apache2/mod_rewrite.so": 1, + "perl_module": 1, + "libexec/apache2/mod_perl.so": 1, + "php5_module": 1, + "libexec/apache2/libphp5.so": 1, + "hfs_apple_module": 1, + "libexec/apache2/mod_hfs_apple.so": 1, + "": 17, + "mpm_netware_module": 2, + "mpm_winnt_module": 1, + "User": 2, + "_www": 2, + "Group": 2, + "": 17, + "ServerAdmin": 2, + "you@example.com": 2, + "#ServerName": 2, + "www.example.com": 2, + "DocumentRoot": 2, + "": 6, + "Options": 6, + "FollowSymLinks": 4, + "AllowOverride": 6, + "None": 8, + "Order": 10, + "deny": 10, + "allow": 10, + "Deny": 6, + "from": 10, + "all": 10, + "": 6, + "Library": 2, + "WebServer": 2, + "Documents": 1, + "Indexes": 2, + "MultiViews": 1, + "Allow": 4, + "DirectoryIndex": 2, + "index.html": 2, + "": 2, + "Hh": 1, + "Tt": 1, + "Dd": 1, + "Ss": 2, + "_": 1, + "Satisfy": 4, + "All": 4, + "": 2, + "": 1, + "rsrc": 1, + "": 1, + "": 1, + "namedfork": 1, + "": 1, + "ErrorLog": 2, + "LogLevel": 2, + "warn": 2, + "LogFormat": 6, + "combined": 4, + "common": 4, + "combinedio": 2, + "CustomLog": 2, + "#CustomLog": 2, + "ScriptAliasMatch": 1, + "/cgi": 2, + "-": 43, + "bin/": 2, + "(": 16, + "i": 1, + "webobjects": 1, + ")": 17, + ".*": 3, + "cgid_module": 3, + "#Scriptsock": 2, + "/private/var/run/cgisock": 1, + "CGI": 1, + "Executables": 1, + "DefaultType": 2, + "text/plain": 2, + "TypesConfig": 2, + "/private/etc/apache2/mime.types": 1, + "#AddType": 4, + "application/x": 6, + "gzip": 6, + ".tgz": 6, + "#AddEncoding": 4, + "x": 4, + "compress": 4, + ".Z": 4, + ".gz": 4, + "AddType": 4, + "#AddHandler": 4, + "cgi": 3, + "script": 2, + ".cgi": 2, + "type": 2, + "map": 2, + "var": 2, + "text/html": 2, + ".shtml": 4, + "#AddOutputFilter": 2, + "INCLUDES": 2, + "#MIMEMagicFile": 2, + "/private/etc/apache2/magic": 1, + "#ErrorDocument": 8, + "/missing.html": 2, + "http": 2, + "//www.example.com/subscription_info.html": 2, + "#MaxRanges": 1, + "unlimited": 1, + "#EnableMMAP": 2, + "off": 5, + "#EnableSendfile": 2, + "TraceEnable": 1, + "Include": 6, + "/private/etc/apache2/extra/httpd": 11, + "mpm.conf": 2, + "#Include": 17, + "multilang": 2, + "errordoc.conf": 2, + "autoindex.conf": 2, + "languages.conf": 2, + "userdir.conf": 2, + "info.conf": 2, + "vhosts.conf": 2, + "manual.conf": 2, + "dav.conf": 2, + "default.conf": 2, + "ssl.conf": 2, + "SSLRandomSeed": 4, + "startup": 2, + "builtin": 4, + "connect": 2, + "/private/etc/apache2/other/*.conf": 1, "ServerSignature": 1, "Off": 1, "RewriteCond": 15, @@ -1915,13 +2184,11 @@ "{": 16, "REQUEST_METHOD": 1, "}": 16, - "(": 16, "HEAD": 1, "|": 80, "TRACE": 1, "DELETE": 1, "TRACK": 1, - ")": 17, "[": 17, "NC": 13, "OR": 14, @@ -1956,7 +2223,6 @@ "grab": 1, "miner": 1, "libwww": 1, - "-": 43, "perl": 1, "python": 1, "nikto": 1, @@ -1965,7 +2231,6 @@ "mySQL": 1, "injects": 1, "QUERY_STRING": 5, - ".*": 3, "*": 1, "union": 1, "select": 1, @@ -1987,517 +2252,224 @@ "RewriteRule": 1, "index.php": 1, "F": 1, - "#": 182, - "ServerRoot": 2, - "#Listen": 2, - "Listen": 2, - "LoadModule": 126, - "authn_file_module": 2, "/usr/lib/apache2/modules/mod_authn_file.so": 1, - "authn_dbm_module": 2, "/usr/lib/apache2/modules/mod_authn_dbm.so": 1, - "authn_anon_module": 2, "/usr/lib/apache2/modules/mod_authn_anon.so": 1, - "authn_dbd_module": 2, "/usr/lib/apache2/modules/mod_authn_dbd.so": 1, - "authn_default_module": 2, "/usr/lib/apache2/modules/mod_authn_default.so": 1, "authn_alias_module": 1, "/usr/lib/apache2/modules/mod_authn_alias.so": 1, - "authz_host_module": 2, "/usr/lib/apache2/modules/mod_authz_host.so": 1, - "authz_groupfile_module": 2, "/usr/lib/apache2/modules/mod_authz_groupfile.so": 1, - "authz_user_module": 2, "/usr/lib/apache2/modules/mod_authz_user.so": 1, - "authz_dbm_module": 2, "/usr/lib/apache2/modules/mod_authz_dbm.so": 1, - "authz_owner_module": 2, "/usr/lib/apache2/modules/mod_authz_owner.so": 1, "authnz_ldap_module": 1, "/usr/lib/apache2/modules/mod_authnz_ldap.so": 1, - "authz_default_module": 2, "/usr/lib/apache2/modules/mod_authz_default.so": 1, - "auth_basic_module": 2, "/usr/lib/apache2/modules/mod_auth_basic.so": 1, - "auth_digest_module": 2, "/usr/lib/apache2/modules/mod_auth_digest.so": 1, "file_cache_module": 1, "/usr/lib/apache2/modules/mod_file_cache.so": 1, - "cache_module": 2, "/usr/lib/apache2/modules/mod_cache.so": 1, - "disk_cache_module": 2, "/usr/lib/apache2/modules/mod_disk_cache.so": 1, - "mem_cache_module": 2, "/usr/lib/apache2/modules/mod_mem_cache.so": 1, - "dbd_module": 2, "/usr/lib/apache2/modules/mod_dbd.so": 1, - "dumpio_module": 2, "/usr/lib/apache2/modules/mod_dumpio.so": 1, - "ext_filter_module": 2, "/usr/lib/apache2/modules/mod_ext_filter.so": 1, - "include_module": 2, "/usr/lib/apache2/modules/mod_include.so": 1, - "filter_module": 2, "/usr/lib/apache2/modules/mod_filter.so": 1, "charset_lite_module": 1, "/usr/lib/apache2/modules/mod_charset_lite.so": 1, - "deflate_module": 2, "/usr/lib/apache2/modules/mod_deflate.so": 1, "ldap_module": 1, "/usr/lib/apache2/modules/mod_ldap.so": 1, - "log_forensic_module": 2, "/usr/lib/apache2/modules/mod_log_forensic.so": 1, - "env_module": 2, "/usr/lib/apache2/modules/mod_env.so": 1, - "mime_magic_module": 2, "/usr/lib/apache2/modules/mod_mime_magic.so": 1, - "cern_meta_module": 2, "/usr/lib/apache2/modules/mod_cern_meta.so": 1, - "expires_module": 2, "/usr/lib/apache2/modules/mod_expires.so": 1, - "headers_module": 2, "/usr/lib/apache2/modules/mod_headers.so": 1, - "ident_module": 2, "/usr/lib/apache2/modules/mod_ident.so": 1, - "usertrack_module": 2, "/usr/lib/apache2/modules/mod_usertrack.so": 1, - "unique_id_module": 2, "/usr/lib/apache2/modules/mod_unique_id.so": 1, - "setenvif_module": 2, "/usr/lib/apache2/modules/mod_setenvif.so": 1, - "version_module": 2, "/usr/lib/apache2/modules/mod_version.so": 1, - "proxy_module": 2, "/usr/lib/apache2/modules/mod_proxy.so": 1, - "proxy_connect_module": 2, "/usr/lib/apache2/modules/mod_proxy_connect.so": 1, - "proxy_ftp_module": 2, "/usr/lib/apache2/modules/mod_proxy_ftp.so": 1, - "proxy_http_module": 2, "/usr/lib/apache2/modules/mod_proxy_http.so": 1, - "proxy_ajp_module": 2, "/usr/lib/apache2/modules/mod_proxy_ajp.so": 1, - "proxy_balancer_module": 2, "/usr/lib/apache2/modules/mod_proxy_balancer.so": 1, - "ssl_module": 4, "/usr/lib/apache2/modules/mod_ssl.so": 1, - "mime_module": 4, "/usr/lib/apache2/modules/mod_mime.so": 1, - "dav_module": 2, "/usr/lib/apache2/modules/mod_dav.so": 1, - "status_module": 2, "/usr/lib/apache2/modules/mod_status.so": 1, - "autoindex_module": 2, "/usr/lib/apache2/modules/mod_autoindex.so": 1, - "asis_module": 2, "/usr/lib/apache2/modules/mod_asis.so": 1, - "info_module": 2, "/usr/lib/apache2/modules/mod_info.so": 1, "suexec_module": 1, "/usr/lib/apache2/modules/mod_suexec.so": 1, - "cgid_module": 3, "/usr/lib/apache2/modules/mod_cgid.so": 1, - "cgi_module": 2, "/usr/lib/apache2/modules/mod_cgi.so": 1, - "dav_fs_module": 2, "/usr/lib/apache2/modules/mod_dav_fs.so": 1, "dav_lock_module": 1, "/usr/lib/apache2/modules/mod_dav_lock.so": 1, - "vhost_alias_module": 2, "/usr/lib/apache2/modules/mod_vhost_alias.so": 1, - "negotiation_module": 2, "/usr/lib/apache2/modules/mod_negotiation.so": 1, - "dir_module": 4, "/usr/lib/apache2/modules/mod_dir.so": 1, - "imagemap_module": 2, "/usr/lib/apache2/modules/mod_imagemap.so": 1, - "actions_module": 2, "/usr/lib/apache2/modules/mod_actions.so": 1, - "speling_module": 2, "/usr/lib/apache2/modules/mod_speling.so": 1, - "userdir_module": 2, "/usr/lib/apache2/modules/mod_userdir.so": 1, - "alias_module": 4, "/usr/lib/apache2/modules/mod_alias.so": 1, - "rewrite_module": 2, "/usr/lib/apache2/modules/mod_rewrite.so": 1, - "": 17, - "mpm_netware_module": 2, - "User": 2, "daemon": 2, - "Group": 2, - "": 17, - "ServerAdmin": 2, - "you@example.com": 2, - "#ServerName": 2, - "www.example.com": 2, - "DocumentRoot": 2, - "": 6, - "Options": 6, - "FollowSymLinks": 4, - "AllowOverride": 6, - "None": 8, - "Order": 10, - "deny": 10, - "allow": 10, - "Deny": 6, - "from": 10, - "all": 10, - "": 6, "usr": 2, "share": 1, "apache2": 1, "default": 1, "site": 1, "htdocs": 1, - "Indexes": 2, - "Allow": 4, - "DirectoryIndex": 2, - "index.html": 2, - "": 2, "ht": 1, - "Satisfy": 4, - "All": 4, - "": 2, - "ErrorLog": 2, "/var/log/apache2/error_log": 1, - "LogLevel": 2, - "warn": 2, - "log_config_module": 3, - "LogFormat": 6, - "combined": 4, - "common": 4, - "logio_module": 3, - "combinedio": 2, - "CustomLog": 2, "/var/log/apache2/access_log": 2, - "#CustomLog": 2, "ScriptAlias": 1, - "/cgi": 2, - "bin/": 2, - "#Scriptsock": 2, "/var/run/apache2/cgisock": 1, "lib": 1, - "cgi": 3, "bin": 1, - "DefaultType": 2, - "text/plain": 2, - "TypesConfig": 2, "/etc/apache2/mime.types": 1, - "#AddType": 4, - "application/x": 6, - "gzip": 6, - ".tgz": 6, - "#AddEncoding": 4, - "x": 4, - "compress": 4, - ".Z": 4, - ".gz": 4, - "AddType": 4, - "#AddHandler": 4, - "script": 2, - ".cgi": 2, - "type": 2, - "map": 2, - "var": 2, - "text/html": 2, - ".shtml": 4, - "#AddOutputFilter": 2, - "INCLUDES": 2, - "#MIMEMagicFile": 2, "/etc/apache2/magic": 1, - "#ErrorDocument": 8, - "/missing.html": 2, - "http": 2, - "//www.example.com/subscription_info.html": 2, - "#EnableMMAP": 2, - "off": 5, - "#EnableSendfile": 2, - "#Include": 17, - "/etc/apache2/extra/httpd": 11, - "mpm.conf": 2, - "multilang": 2, - "errordoc.conf": 2, - "autoindex.conf": 2, - "languages.conf": 2, - "userdir.conf": 2, - "info.conf": 2, - "vhosts.conf": 2, - "manual.conf": 2, - "dav.conf": 2, - "default.conf": 2, - "ssl.conf": 2, - "SSLRandomSeed": 4, - "startup": 2, - "builtin": 4, - "connect": 2, - "libexec/apache2/mod_authn_file.so": 1, - "libexec/apache2/mod_authn_dbm.so": 1, - "libexec/apache2/mod_authn_anon.so": 1, - "libexec/apache2/mod_authn_dbd.so": 1, - "libexec/apache2/mod_authn_default.so": 1, - "libexec/apache2/mod_authz_host.so": 1, - "libexec/apache2/mod_authz_groupfile.so": 1, - "libexec/apache2/mod_authz_user.so": 1, - "libexec/apache2/mod_authz_dbm.so": 1, - "libexec/apache2/mod_authz_owner.so": 1, - "libexec/apache2/mod_authz_default.so": 1, - "libexec/apache2/mod_auth_basic.so": 1, - "libexec/apache2/mod_auth_digest.so": 1, - "libexec/apache2/mod_cache.so": 1, - "libexec/apache2/mod_disk_cache.so": 1, - "libexec/apache2/mod_mem_cache.so": 1, - "libexec/apache2/mod_dbd.so": 1, - "libexec/apache2/mod_dumpio.so": 1, - "reqtimeout_module": 1, - "libexec/apache2/mod_reqtimeout.so": 1, - "libexec/apache2/mod_ext_filter.so": 1, - "libexec/apache2/mod_include.so": 1, - "libexec/apache2/mod_filter.so": 1, - "substitute_module": 1, - "libexec/apache2/mod_substitute.so": 1, - "libexec/apache2/mod_deflate.so": 1, - "libexec/apache2/mod_log_config.so": 1, - "libexec/apache2/mod_log_forensic.so": 1, - "libexec/apache2/mod_logio.so": 1, - "libexec/apache2/mod_env.so": 1, - "libexec/apache2/mod_mime_magic.so": 1, - "libexec/apache2/mod_cern_meta.so": 1, - "libexec/apache2/mod_expires.so": 1, - "libexec/apache2/mod_headers.so": 1, - "libexec/apache2/mod_ident.so": 1, - "libexec/apache2/mod_usertrack.so": 1, - "#LoadModule": 4, - "libexec/apache2/mod_unique_id.so": 1, - "libexec/apache2/mod_setenvif.so": 1, - "libexec/apache2/mod_version.so": 1, - "libexec/apache2/mod_proxy.so": 1, - "libexec/apache2/mod_proxy_connect.so": 1, - "libexec/apache2/mod_proxy_ftp.so": 1, - "libexec/apache2/mod_proxy_http.so": 1, - "proxy_scgi_module": 1, - "libexec/apache2/mod_proxy_scgi.so": 1, - "libexec/apache2/mod_proxy_ajp.so": 1, - "libexec/apache2/mod_proxy_balancer.so": 1, - "libexec/apache2/mod_ssl.so": 1, - "libexec/apache2/mod_mime.so": 1, - "libexec/apache2/mod_dav.so": 1, - "libexec/apache2/mod_status.so": 1, - "libexec/apache2/mod_autoindex.so": 1, - "libexec/apache2/mod_asis.so": 1, - "libexec/apache2/mod_info.so": 1, - "libexec/apache2/mod_cgi.so": 1, - "libexec/apache2/mod_dav_fs.so": 1, - "libexec/apache2/mod_vhost_alias.so": 1, - "libexec/apache2/mod_negotiation.so": 1, - "libexec/apache2/mod_dir.so": 1, - "libexec/apache2/mod_imagemap.so": 1, - "libexec/apache2/mod_actions.so": 1, - "libexec/apache2/mod_speling.so": 1, - "libexec/apache2/mod_userdir.so": 1, - "libexec/apache2/mod_alias.so": 1, - "libexec/apache2/mod_rewrite.so": 1, - "perl_module": 1, - "libexec/apache2/mod_perl.so": 1, - "php5_module": 1, - "libexec/apache2/libphp5.so": 1, - "hfs_apple_module": 1, - "libexec/apache2/mod_hfs_apple.so": 1, - "mpm_winnt_module": 1, - "_www": 2, - "Library": 2, - "WebServer": 2, - "Documents": 1, - "MultiViews": 1, - "Hh": 1, - "Tt": 1, - "Dd": 1, - "Ss": 2, - "_": 1, - "": 1, - "rsrc": 1, - "": 1, - "": 1, - "namedfork": 1, - "": 1, - "ScriptAliasMatch": 1, - "i": 1, - "webobjects": 1, - "/private/var/run/cgisock": 1, - "CGI": 1, - "Executables": 1, - "/private/etc/apache2/mime.types": 1, - "/private/etc/apache2/magic": 1, - "#MaxRanges": 1, - "unlimited": 1, - "TraceEnable": 1, - "Include": 6, - "/private/etc/apache2/extra/httpd": 11, - "/private/etc/apache2/other/*.conf": 1 + "/etc/apache2/extra/httpd": 11 }, "Apex": { "global": 70, "class": 7, - "ArrayUtils": 1, + "LanguageUtils": 1, "{": 219, "static": 83, + "final": 6, "String": 60, + "HTTP_LANGUAGE_CODE_PARAMETER_KEY": 2, + ";": 308, + "DEFAULT_LANGUAGE_CODE": 3, + "Set": 6, + "": 30, + "SUPPORTED_LANGUAGE_CODES": 2, + "new": 60, + "//Chinese": 2, + "(": 481, + "Simplified": 1, + ")": 481, + "Traditional": 1, + "//Dutch": 1, + "//English": 1, + "//Finnish": 1, + "//French": 1, + "//German": 1, + "//Italian": 1, + "//Japanese": 1, + "//Korean": 1, + "//Polish": 1, + "//Portuguese": 1, + "Brazilian": 1, + "//Russian": 1, + "//Spanish": 1, + "//Swedish": 1, + "//Thai": 1, + "//Czech": 1, + "//Danish": 1, + "//Hungarian": 1, + "//Indonesian": 1, + "//Turkish": 1, + "}": 219, + "private": 10, + "Map": 33, + "": 29, + "DEFAULTS": 1, + "getLangCodeByHttpParam": 4, + "returnValue": 22, + "null": 92, + "LANGUAGE_CODE_SET": 1, + "getSuppLangCodeSet": 2, + "if": 91, + "ApexPages.currentPage": 4, + "&&": 46, + ".getParameters": 2, + "LANGUAGE_HTTP_PARAMETER": 7, + "StringUtils.lowerCase": 3, + "StringUtils.replaceChars": 2, + ".get": 4, + "//underscore": 1, + "//dash": 1, + "DEFAULTS.containsKey": 3, + "DEFAULTS.get": 3, + "StringUtils.isNotBlank": 1, + "SUPPORTED_LANGUAGE_CODES.contains": 2, + "return": 106, + "getLangCodeByBrowser": 4, + "LANGUAGES_FROM_BROWSER_AS_STRING": 2, + ".getHeaders": 1, + "List": 71, + "LANGUAGES_FROM_BROWSER_AS_LIST": 3, + "splitAndFilterAcceptLanguageHeader": 2, + "LANGUAGES_FROM_BROWSER_AS_LIST.size": 1, + "for": 24, + "languageFromBrowser": 6, + "getLangCodeByUser": 3, + "UserInfo.getLanguage": 1, + "getLangCodeByHttpParamOrIfNullThenBrowser": 1, + "StringUtils.defaultString": 4, + "getLangCodeByHttpParamOrIfNullThenUser": 1, + "getLangCodeByBrowserOrIfNullThenHttpParam": 1, + "getLangCodeByBrowserOrIfNullThenUser": 1, + "header": 2, + "returnList": 11, "[": 102, "]": 102, - "EMPTY_STRING_ARRAY": 1, - "new": 60, - "}": 219, - ";": 308, - "Integer": 34, - "MAX_NUMBER_OF_ELEMENTS_IN_LIST": 5, - "get": 4, - "return": 106, - "List": 71, - "": 30, - "objectToString": 1, - "(": 481, - "": 22, - "objects": 3, - ")": 481, - "strings": 3, - "null": 92, - "if": 91, - "objects.size": 1, - "for": 24, - "Object": 23, - "obj": 3, - "instanceof": 1, - "strings.add": 1, - "reverse": 2, - "anArray": 14, - "i": 55, - "j": 10, - "anArray.size": 2, - "-": 18, - "tmp": 6, - "while": 8, - "+": 75, - "SObject": 19, - "lowerCase": 1, - "strs": 9, - "returnValue": 22, - "strs.size": 3, - "str": 10, - "returnValue.add": 3, - "str.toLowerCase": 1, - "upperCase": 1, - "str.toUpperCase": 1, - "trim": 1, - "str.trim": 3, - "mergex": 2, - "array1": 8, - "array2": 9, - "merged": 6, - "array1.size": 4, - "array2.size": 2, - "<": 32, - "": 19, - "sObj": 4, - "merged.add": 2, - "Boolean": 38, - "isEmpty": 7, - "objectArray": 17, - "true": 12, - "objectArray.size": 6, - "isNotEmpty": 4, - "pluck": 1, - "fieldName": 3, - "||": 12, - "fieldName.trim": 2, - ".length": 2, - "plucked": 3, - ".get": 4, - "toString": 3, - "void": 9, - "assertArraysAreEqual": 2, - "expected": 16, - "actual": 16, - "//check": 2, - "to": 4, - "see": 2, - "one": 2, - "param": 2, - "is": 5, - "but": 2, - "the": 4, - "other": 2, - "not": 3, - "System.assert": 6, - "&&": 46, - "ArrayUtils.toString": 12, - "expected.size": 4, - "actual.size": 2, - "merg": 2, - "list1": 15, - "list2": 9, - "returnList": 11, - "list1.size": 6, - "list2.size": 2, - "throw": 6, - "IllegalArgumentException": 5, - "elmt": 8, + "tokens": 3, + "StringUtils.split": 1, + "token": 7, + "token.contains": 1, + "token.substring": 1, + "token.indexOf": 1, "returnList.add": 8, - "subset": 6, - "aList": 4, - "count": 10, - "startIndex": 9, - "<=>": 2, - "size": 2, - "1": 2, - "list1.get": 2, - "//": 11, - "//LIST/ARRAY": 1, - "SORTING": 1, - "//FOR": 2, - "FORCE.COM": 1, - "PRIMITIVES": 1, - "Double": 1, - "ID": 1, - "etc.": 1, - "qsort": 18, - "theList": 72, - "PrimitiveComparator": 2, - "sortAsc": 24, - "ObjectComparator": 3, - "comparator": 14, - "theList.size": 2, - "SALESFORCE": 1, - "OBJECTS": 1, - "sObjects": 1, - "ISObjectComparator": 3, - "private": 10, - "lo0": 6, - "hi0": 8, - "lo": 42, - "hi": 50, - "else": 25, - "comparator.compare": 12, - "prs": 8, - "pivot": 14, - "/": 4, + "StringUtils.length": 1, + "StringUtils.substring": 1, + "langCodes": 2, + "langCode": 3, + "langCodes.add": 1, + "getLanguageName": 1, + "displayLanguageCode": 13, + "languageCode": 2, + "translatedLanguageNames.get": 2, + "filterLanguageCode": 4, + "getAllLanguages": 3, + "translatedLanguageNames.containsKey": 1, + "<": 32, + "translatedLanguageNames": 1, "BooleanUtils": 1, + "Boolean": 38, "isFalse": 1, "bool": 32, "false": 13, + "else": 25, "isNotFalse": 1, + "true": 12, "isNotTrue": 1, "isTrue": 1, "negate": 1, "toBooleanDefaultIfNull": 1, "defaultVal": 2, "toBoolean": 2, + "Integer": 34, "value": 10, "strToBoolean": 1, "StringUtils.equalsIgnoreCase": 1, "//Converts": 1, "an": 4, "int": 1, + "to": 4, "a": 6, "boolean": 1, "specifying": 1, @@ -2508,15 +2480,57 @@ "//Throws": 1, "trueValue": 2, "falseValue": 2, + "throw": 6, + "IllegalArgumentException": 5, "toInteger": 1, "toStringYesNo": 1, "toStringYN": 1, + "toString": 3, "trueString": 2, "falseString": 2, "xor": 1, "boolArray": 4, + "||": 12, "boolArray.size": 1, "firstItem": 2, + "TwilioAPI": 2, + "MissingTwilioConfigCustomSettingsException": 2, + "extends": 1, + "Exception": 1, + "TwilioRestClient": 5, + "client": 2, + "public": 10, + "getDefaultClient": 2, + "TwilioConfig__c": 5, + "twilioCfg": 7, + "getTwilioConfig": 3, + "TwilioAPI.client": 2, + "twilioCfg.AccountSid__c": 3, + "twilioCfg.AuthToken__c": 3, + "TwilioAccount": 1, + "getDefaultAccount": 1, + ".getAccount": 2, + "TwilioCapability": 2, + "createCapability": 1, + "createClient": 1, + "accountSid": 2, + "authToken": 2, + "Test.isRunningTest": 1, + "//": 11, + "dummy": 2, + "sid": 1, + "TwilioConfig__c.getOrgDefaults": 1, + "@isTest": 1, + "void": 9, + "test_TwilioAPI": 1, + "System.assertEquals": 5, + "TwilioAPI.getTwilioConfig": 2, + ".AccountSid__c": 1, + ".AuthToken__c": 1, + "TwilioAPI.getDefaultClient": 2, + ".getAccountSid": 1, + ".getSid": 2, + "TwilioAPI.getDefaultAccount": 1, "EmailUtils": 1, "sendEmailWithStandardAttachments": 3, "recipients": 11, @@ -2554,6 +2568,8 @@ "Messaging.SingleEmailMessage": 3, "mail": 2, "email": 1, + "is": 5, + "not": 3, "saved": 1, "as": 1, "activity.": 1, @@ -2568,12 +2584,117 @@ "mail.setFileAttachments": 1, "Messaging.sendEmail": 1, "isValidEmailAddress": 2, + "str": 10, + "str.trim": 3, + ".length": 2, "split": 5, "str.split": 1, "split.size": 2, ".split": 1, "isNotValidEmailAddress": 1, - "public": 10, + "ArrayUtils": 1, + "EMPTY_STRING_ARRAY": 1, + "MAX_NUMBER_OF_ELEMENTS_IN_LIST": 5, + "get": 4, + "objectToString": 1, + "": 22, + "objects": 3, + "strings": 3, + "objects.size": 1, + "Object": 23, + "obj": 3, + "instanceof": 1, + "strings.add": 1, + "reverse": 2, + "anArray": 14, + "i": 55, + "j": 10, + "anArray.size": 2, + "-": 18, + "tmp": 6, + "while": 8, + "+": 75, + "SObject": 19, + "lowerCase": 1, + "strs": 9, + "strs.size": 3, + "returnValue.add": 3, + "str.toLowerCase": 1, + "upperCase": 1, + "str.toUpperCase": 1, + "trim": 1, + "mergex": 2, + "array1": 8, + "array2": 9, + "merged": 6, + "array1.size": 4, + "array2.size": 2, + "": 19, + "sObj": 4, + "merged.add": 2, + "isEmpty": 7, + "objectArray": 17, + "objectArray.size": 6, + "isNotEmpty": 4, + "pluck": 1, + "fieldName": 3, + "fieldName.trim": 2, + "plucked": 3, + "assertArraysAreEqual": 2, + "expected": 16, + "actual": 16, + "//check": 2, + "see": 2, + "one": 2, + "param": 2, + "but": 2, + "the": 4, + "other": 2, + "System.assert": 6, + "ArrayUtils.toString": 12, + "expected.size": 4, + "actual.size": 2, + "merg": 2, + "list1": 15, + "list2": 9, + "list1.size": 6, + "list2.size": 2, + "elmt": 8, + "subset": 6, + "aList": 4, + "count": 10, + "startIndex": 9, + "<=>": 2, + "size": 2, + "1": 2, + "list1.get": 2, + "//LIST/ARRAY": 1, + "SORTING": 1, + "//FOR": 2, + "FORCE.COM": 1, + "PRIMITIVES": 1, + "Double": 1, + "ID": 1, + "etc.": 1, + "qsort": 18, + "theList": 72, + "PrimitiveComparator": 2, + "sortAsc": 24, + "ObjectComparator": 3, + "comparator": 14, + "theList.size": 2, + "SALESFORCE": 1, + "OBJECTS": 1, + "sObjects": 1, + "ISObjectComparator": 3, + "lo0": 6, + "hi0": 8, + "lo": 42, + "hi": 50, + "comparator.compare": 12, + "prs": 8, + "pivot": 14, + "/": 4, "GeoUtils": 1, "generate": 1, "KML": 1, @@ -2616,7 +2737,6 @@ "line": 1, "may": 1, "also": 1, - "Map": 33, "": 2, "geo_response": 1, "accountAddressString": 2, @@ -2646,173 +2766,127 @@ "billingpostalcode": 1, "billingcountry": 1, "insert": 1, - "system.assertEquals": 1, - "LanguageUtils": 1, - "final": 6, - "HTTP_LANGUAGE_CODE_PARAMETER_KEY": 2, - "DEFAULT_LANGUAGE_CODE": 3, - "Set": 6, - "SUPPORTED_LANGUAGE_CODES": 2, - "//Chinese": 2, - "Simplified": 1, - "Traditional": 1, - "//Dutch": 1, - "//English": 1, - "//Finnish": 1, - "//French": 1, - "//German": 1, - "//Italian": 1, - "//Japanese": 1, - "//Korean": 1, - "//Polish": 1, - "//Portuguese": 1, - "Brazilian": 1, - "//Russian": 1, - "//Spanish": 1, - "//Swedish": 1, - "//Thai": 1, - "//Czech": 1, - "//Danish": 1, - "//Hungarian": 1, - "//Indonesian": 1, - "//Turkish": 1, - "": 29, - "DEFAULTS": 1, - "getLangCodeByHttpParam": 4, - "LANGUAGE_CODE_SET": 1, - "getSuppLangCodeSet": 2, - "ApexPages.currentPage": 4, - ".getParameters": 2, - "LANGUAGE_HTTP_PARAMETER": 7, - "StringUtils.lowerCase": 3, - "StringUtils.replaceChars": 2, - "//underscore": 1, - "//dash": 1, - "DEFAULTS.containsKey": 3, - "DEFAULTS.get": 3, - "StringUtils.isNotBlank": 1, - "SUPPORTED_LANGUAGE_CODES.contains": 2, - "getLangCodeByBrowser": 4, - "LANGUAGES_FROM_BROWSER_AS_STRING": 2, - ".getHeaders": 1, - "LANGUAGES_FROM_BROWSER_AS_LIST": 3, - "splitAndFilterAcceptLanguageHeader": 2, - "LANGUAGES_FROM_BROWSER_AS_LIST.size": 1, - "languageFromBrowser": 6, - "getLangCodeByUser": 3, - "UserInfo.getLanguage": 1, - "getLangCodeByHttpParamOrIfNullThenBrowser": 1, - "StringUtils.defaultString": 4, - "getLangCodeByHttpParamOrIfNullThenUser": 1, - "getLangCodeByBrowserOrIfNullThenHttpParam": 1, - "getLangCodeByBrowserOrIfNullThenUser": 1, - "header": 2, - "tokens": 3, - "StringUtils.split": 1, - "token": 7, - "token.contains": 1, - "token.substring": 1, - "token.indexOf": 1, - "StringUtils.length": 1, - "StringUtils.substring": 1, - "langCodes": 2, - "langCode": 3, - "langCodes.add": 1, - "getLanguageName": 1, - "displayLanguageCode": 13, - "languageCode": 2, - "translatedLanguageNames.get": 2, - "filterLanguageCode": 4, - "getAllLanguages": 3, - "translatedLanguageNames.containsKey": 1, - "translatedLanguageNames": 1, - "TwilioAPI": 2, - "MissingTwilioConfigCustomSettingsException": 2, - "extends": 1, - "Exception": 1, - "TwilioRestClient": 5, - "client": 2, - "getDefaultClient": 2, - "TwilioConfig__c": 5, - "twilioCfg": 7, - "getTwilioConfig": 3, - "TwilioAPI.client": 2, - "twilioCfg.AccountSid__c": 3, - "twilioCfg.AuthToken__c": 3, - "TwilioAccount": 1, - "getDefaultAccount": 1, - ".getAccount": 2, - "TwilioCapability": 2, - "createCapability": 1, - "createClient": 1, - "accountSid": 2, - "authToken": 2, - "Test.isRunningTest": 1, - "dummy": 2, - "sid": 1, - "TwilioConfig__c.getOrgDefaults": 1, - "@isTest": 1, - "test_TwilioAPI": 1, - "System.assertEquals": 5, - "TwilioAPI.getTwilioConfig": 2, - ".AccountSid__c": 1, - ".AuthToken__c": 1, - "TwilioAPI.getDefaultClient": 2, - ".getAccountSid": 1, - ".getSid": 2, - "TwilioAPI.getDefaultAccount": 1 + "system.assertEquals": 1 }, "AppleScript": { - "set": 108, - "windowWidth": 3, - "to": 128, - "windowHeight": 3, - "delay": 3, - "AppleScript": 2, - "s": 3, - "text": 13, - "item": 13, - "delimiters": 1, "tell": 40, "application": 16, - "screen_width": 2, + "set": 108, + "localMailboxes": 3, + "to": 128, + "every": 3, + "mailbox": 2, + "if": 50, "(": 89, - "do": 4, - "JavaScript": 2, - "in": 13, - "document": 2, - ")": 88, - "screen_height": 2, - "end": 67, - "myFrontMost": 3, - "name": 8, + "count": 10, "of": 72, - "first": 1, - "processes": 2, - "whose": 1, - "frontmost": 1, + ")": 88, "is": 40, - "true": 8, + "greater": 5, + "than": 6, + "then": 28, + "messageCountDisplay": 5, + "&": 63, + "return": 16, + "my": 3, + "getMessageCountsForMailboxes": 4, + "else": 14, + "end": 67, + "everyAccount": 2, + "account": 1, + "repeat": 19, + "with": 11, + "eachAccount": 3, + "in": 13, + "accountMailboxes": 3, + "name": 8, + "outputMessage": 2, + "make": 3, + "new": 2, + "outgoing": 2, + "message": 2, + "properties": 2, "{": 32, - "desktopTop": 2, - "desktopLeft": 1, - "desktopRight": 1, - "desktopBottom": 1, + "content": 2, + "subject": 1, + "visible": 2, + "true": 8, "}": 32, - "bounds": 2, - "desktop": 1, - "try": 10, - "process": 5, - "w": 5, - "h": 4, + "font": 2, "size": 5, - "drawer": 2, - "window": 5, "on": 18, - "error": 3, - "position": 1, + "theMailboxes": 2, "-": 57, - "/": 2, + "list": 9, + "mailboxes": 1, + "returns": 2, + "string": 17, + "displayString": 4, + "eachMailbox": 4, + "mailboxName": 2, + "messageCount": 2, + "messages": 1, + "as": 27, + "unreadCount": 2, + "unread": 1, + "padString": 3, + "theString": 4, + "fieldLength": 5, + "integer": 3, + "stringLength": 4, + "length": 1, + "paddedString": 5, + "text": 13, + "from": 9, + "character": 2, + "less": 1, + "or": 6, + "equal": 3, + "paddingLength": 2, + "times": 1, + "space": 1, + "isVoiceOverRunning": 3, + "isRunning": 3, + "false": 9, + "processes": 2, + "contains": 1, + "isVoiceOverRunningWithAppleScript": 3, + "isRunningWithAppleScript": 3, + "AppleScript": 2, + "enabled": 2, + "VoiceOver": 1, + "try": 10, + "x": 1, + "bounds": 2, + "vo": 1, + "cursor": 1, + "error": 3, + "currentDate": 3, + "current": 3, + "date": 1, + "amPM": 4, + "currentHour": 9, + "s": 3, + "minutes": 2, + "and": 7, + "<": 2, + "below": 1, + "sound": 1, + "nice": 1, + "currentMinutes": 4, + "ensure": 1, + "nn": 2, + "gets": 1, + "AM": 1, + "readjust": 1, + "for": 5, + "hour": 1, + "time": 1, + "currentTime": 3, + "day": 1, + "output": 1, + "say": 1, + "delay": 3, "property": 7, "type_list": 6, "extension_list": 6, @@ -2824,9 +2898,7 @@ "FinderSelection": 4, "the": 56, "selection": 2, - "as": 27, "alias": 8, - "list": 9, "FS": 10, "Ideally": 2, "this": 2, @@ -2837,14 +2909,11 @@ "handler": 2, "SelectionCount": 6, "number": 6, - "count": 10, - "if": 50, - "then": 28, "userPicksFolder": 6, - "else": 14, "MyPath": 4, "path": 6, "me": 2, + "item": 13, "If": 2, "I": 2, "m": 2, @@ -2855,99 +2924,79 @@ "these_items": 18, "choose": 2, "file": 6, - "with": 11, "prompt": 2, "type": 6, "thesefiles": 2, "item_info": 24, - "repeat": 19, "i": 10, - "from": 9, "this_item": 14, "info": 4, - "for": 5, "folder": 10, "processFolder": 8, - "false": 9, - "and": 7, - "or": 6, "extension": 4, "theFilePath": 8, - "string": 17, "thePOSIXFilePath": 8, "POSIX": 4, "processFile": 8, + "process": 5, "folders": 2, "theFolder": 6, "without": 2, "invisibles": 2, - "&": 63, - "thePOSIXFileName": 6, - "terminalCommand": 6, - "convertCommand": 4, - "newFileName": 4, - "shell": 2, - "script": 2, "need": 1, "pass": 1, "URL": 1, "Terminal": 1, - "localMailboxes": 3, - "every": 3, - "mailbox": 2, - "greater": 5, - "than": 6, - "messageCountDisplay": 5, - "return": 16, - "my": 3, - "getMessageCountsForMailboxes": 4, - "everyAccount": 2, - "account": 1, - "eachAccount": 3, - "accountMailboxes": 3, - "outputMessage": 2, - "make": 3, - "new": 2, - "outgoing": 2, - "message": 2, - "properties": 2, - "content": 2, - "subject": 1, - "visible": 2, - "font": 2, - "theMailboxes": 2, - "mailboxes": 1, - "returns": 2, - "displayString": 4, - "eachMailbox": 4, - "mailboxName": 2, - "messageCount": 2, - "messages": 1, - "unreadCount": 2, - "unread": 1, - "padString": 3, - "theString": 4, - "fieldLength": 5, - "integer": 3, - "stringLength": 4, - "length": 1, - "paddedString": 5, - "character": 2, - "less": 1, - "equal": 3, - "paddingLength": 2, - "times": 1, - "space": 1, + "thePOSIXFileName": 6, + "terminalCommand": 6, + "convertCommand": 4, + "newFileName": 4, + "do": 4, + "shell": 2, + "script": 2, + "activate": 3, + "pane": 4, + "UI": 1, + "elements": 1, + "tab": 1, + "group": 1, + "window": 5, + "click": 1, + "radio": 1, + "button": 4, + "get": 1, + "value": 1, + "field": 1, + "display": 4, + "dialog": 4, + "windowWidth": 3, + "windowHeight": 3, + "delimiters": 1, + "screen_width": 2, + "JavaScript": 2, + "document": 2, + "screen_height": 2, + "myFrontMost": 3, + "first": 1, + "whose": 1, + "frontmost": 1, + "desktopTop": 2, + "desktopLeft": 1, + "desktopRight": 1, + "desktopBottom": 1, + "desktop": 1, + "w": 5, + "h": 4, + "drawer": 2, + "position": 1, + "/": 2, "lowFontSize": 9, "highFontSize": 6, "messageText": 4, "userInput": 4, - "display": 4, - "dialog": 4, "default": 4, "answer": 3, "buttons": 3, - "button": 4, "returned": 5, "minimumFontSize": 4, "newFontSize": 6, @@ -2955,55 +3004,12 @@ "theText": 3, "exit": 1, "fontList": 2, - "activate": 3, "crazyTextMessage": 2, "eachCharacter": 4, "characters": 1, "some": 1, "random": 4, - "color": 1, - "current": 3, - "pane": 4, - "UI": 1, - "elements": 1, - "enabled": 2, - "tab": 1, - "group": 1, - "click": 1, - "radio": 1, - "get": 1, - "value": 1, - "field": 1, - "isVoiceOverRunning": 3, - "isRunning": 3, - "contains": 1, - "isVoiceOverRunningWithAppleScript": 3, - "isRunningWithAppleScript": 3, - "VoiceOver": 1, - "x": 1, - "vo": 1, - "cursor": 1, - "currentDate": 3, - "date": 1, - "amPM": 4, - "currentHour": 9, - "minutes": 2, - "<": 2, - "below": 1, - "sound": 1, - "nice": 1, - "currentMinutes": 4, - "ensure": 1, - "nn": 2, - "gets": 1, - "AM": 1, - "readjust": 1, - "hour": 1, - "time": 1, - "currentTime": 3, - "day": 1, - "output": 1, - "say": 1 + "color": 1 }, "Arduino": { "void": 2, @@ -3841,108 +3847,16 @@ }, "Bluespec": { "package": 2, - "TbTL": 1, - ";": 156, - "import": 1, "TL": 6, - "*": 1, + ";": 156, "interface": 2, - "Lamp": 3, "method": 42, - "Bool": 32, - "changed": 2, "Action": 17, - "show_offs": 2, - "show_ons": 2, - "reset": 2, - "endinterface": 2, - "module": 3, - "mkLamp#": 1, - "(": 158, - "String": 1, - "name": 3, - "lamp": 5, - ")": 163, - "Reg#": 15, - "prev": 5, - "<": 44, - "-": 29, - "mkReg": 15, - "False": 9, - "if": 9, - "&&": 3, - "write": 2, - "+": 7, - "endmethod": 8, - "endmodule": 3, - "mkTest": 1, - "let": 1, - "dut": 2, - "sysTL": 3, - "Bit#": 1, - "ctr": 8, - "carN": 4, - "carS": 2, - "carE": 2, - "carW": 2, - "lamps": 15, - "[": 17, - "]": 17, - "mkLamp": 12, - "dut.lampRedNS": 1, - "dut.lampAmberNS": 1, - "dut.lampGreenNS": 1, - "dut.lampRedE": 1, - "dut.lampAmberE": 1, - "dut.lampGreenE": 1, - "dut.lampRedW": 1, - "dut.lampAmberW": 1, - "dut.lampGreenW": 1, - "dut.lampRedPed": 1, - "dut.lampAmberPed": 1, - "dut.lampGreenPed": 1, - "rule": 10, - "start": 1, - "dumpvars": 1, - "endrule": 10, - "detect_cars": 1, - "dut.set_car_state_N": 1, - "dut.set_car_state_S": 1, - "dut.set_car_state_E": 1, - "dut.set_car_state_W": 1, - "go": 1, - "True": 6, - "<=>": 3, - "12_000": 1, "ped_button_push": 4, - "stop": 1, - "display": 2, - "finish": 1, - "function": 10, - "do_offs": 2, - "l": 3, - "l.show_offs": 1, - "do_ons": 2, - "l.show_ons": 1, - "do_reset": 2, - "l.reset": 1, - "do_it": 4, - "f": 2, - "action": 3, - "for": 3, - "Integer": 3, - "i": 15, - "endaction": 3, - "endfunction": 7, - "any_changes": 2, - "b": 12, - "||": 7, - ".changed": 1, - "return": 9, - "show": 1, - "time": 1, - "endpackage": 2, + "(": 158, + ")": 163, "set_car_state_N": 2, + "Bool": 32, "x": 8, "set_car_state_S": 2, "set_car_state_E": 2, @@ -3959,6 +3873,7 @@ "lampRedPed": 2, "lampAmberPed": 2, "lampGreenPed": 2, + "endinterface": 2, "typedef": 3, "enum": 1, "{": 1, @@ -3979,6 +3894,8 @@ "UInt#": 2, "Time32": 9, "CtrSize": 3, + "module": 3, + "sysTL": 3, "allRedDelay": 2, "amberDelay": 2, "nsGreenDelay": 2, @@ -3986,27 +3903,43 @@ "pedGreenDelay": 1, "pedAmberDelay": 1, "clocks_per_sec": 2, + "Reg#": 15, "state": 21, + "<": 44, + "-": 29, + "mkReg": 15, "next_green": 8, "secs": 7, "ped_button_pushed": 4, + "False": 9, "car_present_N": 3, + "True": 6, "car_present_S": 3, "car_present_E": 4, "car_present_W": 4, "car_present_NS": 3, + "||": 7, "cycle_ctr": 6, + "rule": 10, "dec_cycle_ctr": 1, + "endrule": 10, "Rules": 5, "low_priority_rule": 2, "rules": 4, "inc_sec": 1, + "+": 7, "endrules": 4, + "function": 10, "next_state": 8, "ns": 4, + "action": 3, + "<=>": 3, "0": 2, + "endaction": 3, + "endfunction": 7, "green_seq": 7, "case": 2, + "return": 9, "endcase": 2, "car_present": 4, "make_from_green_rule": 5, @@ -4018,6 +3951,7 @@ "amber_state": 2, "ng": 2, "from_amber": 1, + "&&": 3, "hprs": 10, "7": 1, "1": 1, @@ -4027,12 +3961,84 @@ "5": 1, "6": 1, "fromAllRed": 2, + "if": 9, "else": 4, "noAction": 1, "high_priority_rules": 4, + "[": 17, + "]": 17, + "for": 3, + "Integer": 3, + "i": 15, "rJoin": 1, "addRules": 1, - "preempts": 1 + "preempts": 1, + "endmethod": 8, + "b": 12, + "endmodule": 3, + "endpackage": 2, + "TbTL": 1, + "import": 1, + "*": 1, + "Lamp": 3, + "changed": 2, + "show_offs": 2, + "show_ons": 2, + "reset": 2, + "mkLamp#": 1, + "String": 1, + "name": 3, + "lamp": 5, + "prev": 5, + "write": 2, + "mkTest": 1, + "let": 1, + "dut": 2, + "Bit#": 1, + "ctr": 8, + "carN": 4, + "carS": 2, + "carE": 2, + "carW": 2, + "lamps": 15, + "mkLamp": 12, + "dut.lampRedNS": 1, + "dut.lampAmberNS": 1, + "dut.lampGreenNS": 1, + "dut.lampRedE": 1, + "dut.lampAmberE": 1, + "dut.lampGreenE": 1, + "dut.lampRedW": 1, + "dut.lampAmberW": 1, + "dut.lampGreenW": 1, + "dut.lampRedPed": 1, + "dut.lampAmberPed": 1, + "dut.lampGreenPed": 1, + "start": 1, + "dumpvars": 1, + "detect_cars": 1, + "dut.set_car_state_N": 1, + "dut.set_car_state_S": 1, + "dut.set_car_state_E": 1, + "dut.set_car_state_W": 1, + "go": 1, + "12_000": 1, + "stop": 1, + "display": 2, + "finish": 1, + "do_offs": 2, + "l": 3, + "l.show_offs": 1, + "do_ons": 2, + "l.show_ons": 1, + "do_reset": 2, + "l.reset": 1, + "do_it": 4, + "f": 2, + "any_changes": 2, + ".changed": 1, + "show": 1, + "time": 1 }, "Brightscript": { "**": 17, @@ -4298,153 +4304,37 @@ }, "C": { "#include": 154, + "int": 446, + "save_commit_buffer": 3, + ";": 5465, "const": 358, "char": 530, - "*blob_type": 2, - ";": 5465, + "*commit_type": 2, + "static": 455, "struct": 360, - "blob": 6, - "*lookup_blob": 2, + "commit": 59, + "*check_commit": 1, "(": 6243, - "unsigned": 140, - "*sha1": 16, - ")": 6245, - "{": 1531, "object": 41, "*obj": 9, - "lookup_object": 2, - "sha1": 20, + "unsigned": 140, + "*sha1": 16, + "quiet": 5, + ")": 6245, + "{": 1531, "if": 1015, "obj": 48, - "return": 529, - "create_object": 2, - "OBJ_BLOB": 3, - "alloc_blob_node": 1, "-": 1803, "type": 36, + "OBJ_COMMIT": 5, "error": 96, "sha1_to_hex": 8, + "sha1": 20, "typename": 2, + "return": 529, "NULL": 330, "}": 1547, "*": 261, - "int": 446, - "parse_blob_buffer": 2, - "*item": 10, - "void": 288, - "*buffer": 6, - "long": 105, - "size": 120, - "item": 24, - "object.parsed": 4, - "#ifndef": 89, - "BLOB_H": 2, - "#define": 920, - "extern": 38, - "#endif": 243, - "BOOTSTRAP_H": 2, - "": 8, - "__GNUC__": 8, - "typedef": 191, - "*true": 1, - "*false": 1, - "*eof": 1, - "*empty_list": 1, - "*global_enviroment": 1, - "enum": 30, - "obj_type": 1, - "scm_bool": 1, - "scm_empty_list": 1, - "scm_eof": 1, - "scm_char": 1, - "scm_int": 1, - "scm_pair": 1, - "scm_symbol": 1, - "scm_prim_fun": 1, - "scm_lambda": 1, - "scm_str": 1, - "scm_file": 1, - "*eval_proc": 1, - "*maybe_add_begin": 1, - "*code": 2, - "init_enviroment": 1, - "*env": 4, - "eval_err": 1, - "*msg": 7, - "__attribute__": 1, - "noreturn": 1, - "define_var": 1, - "*var": 4, - "*val": 6, - "set_var": 1, - "*get_var": 1, - "*cond2nested_if": 1, - "*cond": 1, - "*let2lambda": 1, - "*let": 1, - "*and2nested_if": 1, - "*and": 1, - "*or2nested_if": 1, - "*or": 1, - "git_cache_init": 1, - "git_cache": 4, - "*cache": 4, - "size_t": 52, - "git_cached_obj_freeptr": 1, - "free_ptr": 2, - "<": 219, - "git__size_t_powerof2": 1, - "cache": 26, - "size_mask": 6, - "lru_count": 1, - "free_obj": 4, - "git_mutex_init": 1, - "&": 442, - "lock": 6, - "nodes": 10, - "git__malloc": 3, - "sizeof": 71, - "git_cached_obj": 5, - "GITERR_CHECK_ALLOC": 3, - "memset": 4, - "git_cache_free": 1, - "i": 410, - "for": 88, - "+": 551, - "[": 601, - "]": 601, - "git_cached_obj_decref": 3, - "git__free": 15, - "*git_cache_get": 1, - "git_oid": 7, - "*oid": 2, - "uint32_t": 144, - "hash": 12, - "*node": 2, - "*result": 1, - "memcpy": 35, - "oid": 17, - "id": 13, - "git_mutex_lock": 2, - "node": 9, - "&&": 248, - "git_oid_cmp": 6, - "git_cached_obj_incref": 3, - "result": 48, - "git_mutex_unlock": 2, - "*git_cache_try_store": 1, - "*_entry": 1, - "*entry": 2, - "_entry": 1, - "entry": 17, - "else": 190, - "save_commit_buffer": 3, - "*commit_type": 2, - "static": 455, - "commit": 59, - "*check_commit": 1, - "quiet": 5, - "OBJ_COMMIT": 5, "*lookup_commit_reference_gently": 2, "deref_tag": 1, "parse_object": 1, @@ -4463,22 +4353,30 @@ "object.sha1": 8, "warning": 1, "*lookup_commit": 2, + "lookup_object": 2, + "create_object": 2, "alloc_commit_node": 1, "*lookup_commit_reference_by_name": 2, "*name": 12, + "[": 601, + "]": 601, "*commit": 10, "get_sha1": 1, "name": 28, "||": 141, "parse_commit": 3, + "long": 105, "parse_commit_date": 2, "*buf": 10, "*tail": 2, "*dateptr": 1, "buf": 57, + "+": 551, "tail": 12, "memcmp": 6, "while": 70, + "<": 219, + "&&": 248, "dateptr": 2, "strtoul": 2, "commit_graft": 13, @@ -4493,18 +4391,26 @@ "*graft": 3, "cmp": 9, "graft": 10, + "else": 190, "register_commit_graft": 2, "ignore_dups": 2, "pos": 7, "free": 62, "alloc_nr": 1, "xrealloc": 2, + "sizeof": 71, "parse_commit_buffer": 3, + "*item": 10, + "void": 288, + "*buffer": 6, + "size": 120, "buffer": 10, "*bufptr": 1, "parent": 7, "commit_list": 35, "**pptr": 1, + "item": 24, + "object.parsed": 4, "<=>": 16, "bufptr": 12, "46": 1, @@ -4517,6 +4423,7 @@ "get_sha1_hex": 2, "lookup_tree": 1, "pptr": 5, + "&": 442, "parents": 4, "lookup_commit_graft": 1, "*new_parent": 2, @@ -4532,7 +4439,10 @@ "lookup_commit": 2, "commit_list_insert": 2, "next": 8, + "i": 410, + "for": 88, "date": 5, + "enum": 30, "object_type": 1, "ret": 142, "read_sha1_file": 1, @@ -4565,669 +4475,165 @@ "**next": 2, "*new": 1, "new": 4, - "COMMIT_H": 2, - "*util": 1, - "indegree": 1, - "*parents": 4, - "*tree": 3, - "decoration": 1, - "name_decoration": 3, - "*commit_list_insert": 1, - "commit_list_count": 1, - "*l": 1, - "*commit_list_insert_by_date": 1, - "free_commit_list": 1, - "cmit_fmt": 3, - "CMIT_FMT_RAW": 1, - "CMIT_FMT_MEDIUM": 2, - "CMIT_FMT_DEFAULT": 1, - "CMIT_FMT_SHORT": 1, - "CMIT_FMT_FULL": 1, - "CMIT_FMT_FULLER": 1, - "CMIT_FMT_ONELINE": 1, - "CMIT_FMT_EMAIL": 1, - "CMIT_FMT_USERFORMAT": 1, - "CMIT_FMT_UNSPECIFIED": 1, - "pretty_print_context": 6, - "fmt": 4, - "abbrev": 1, - "*subject": 1, - "*after_subject": 1, - "preserve_subject": 1, - "date_mode": 2, - "date_mode_explicit": 1, - "need_8bit_cte": 2, - "show_notes": 1, - "reflog_walk_info": 1, - "*reflog_info": 1, - "*output_encoding": 2, - "userformat_want": 2, - "notes": 1, - "has_non_ascii": 1, - "*text": 1, - "rev_info": 2, - "*logmsg_reencode": 1, - "*reencode_commit_message": 1, - "**encoding_p": 1, - "get_commit_format": 1, - "*arg": 1, - "*format_subject": 1, - "strbuf": 12, - "*sb": 7, - "*line_separator": 1, - "userformat_find_requirements": 1, - "*fmt": 2, - "*w": 2, - "format_commit_message": 1, - "*format": 2, - "*context": 1, - "pretty_print_commit": 1, - "*pp": 4, - "pp_commit_easy": 1, - "pp_user_info": 1, - "*what": 1, - "*line": 1, - "*encoding": 2, - "pp_title_line": 1, - "**msg_p": 2, - "pp_remainder": 1, - "indent": 1, - "*pop_most_recent_commit": 1, - "mark": 3, - "*pop_commit": 1, - "**stack": 1, - "clear_commit_marks": 1, - "clear_commit_marks_for_object_array": 1, - "object_array": 2, - "sort_in_topological_order": 1, - "**": 6, - "list": 1, - "lifo": 1, - "FLEX_ARRAY": 1, - "*read_graft_line": 1, - "len": 30, - "*lookup_commit_graft": 1, - "*get_merge_bases": 1, - "*rev1": 1, - "*rev2": 1, - "cleanup": 12, - "*get_merge_bases_many": 1, - "*one": 1, - "**twos": 1, - "*get_octopus_merge_bases": 1, - "*in": 1, - "register_shallow": 1, - "unregister_shallow": 1, - "for_each_commit_graft": 1, - "each_commit_graft_fn": 1, - "is_repository_shallow": 1, - "*get_shallow_commits": 1, - "*heads": 2, - "depth": 2, - "shallow_flag": 1, - "not_shallow_flag": 1, - "is_descendant_of": 1, - "in_merge_bases": 1, - "interactive_add": 1, - "argc": 26, - "**argv": 6, - "*prefix": 7, - "patch": 1, - "run_add_interactive": 1, - "*revision": 1, - "*patch_mode": 1, - "**pathspec": 1, - "inline": 3, - "single_parent": 1, - "*reduce_heads": 1, - "commit_extra_header": 7, - "*key": 5, - "*value": 5, - "append_merge_tag_headers": 1, - "***tail": 1, - "commit_tree": 1, - "*ret": 20, - "*author": 2, - "*sign_commit": 2, - "commit_tree_extended": 1, - "*read_commit_extra_headers": 1, - "*read_commit_extra_header_lines": 1, - "free_commit_extra_headers": 1, - "*extra": 1, - "merge_remote_util": 1, - "*get_merge_parent": 1, - "parse_signed_commit": 1, - "*message": 1, - "*signature": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "#ifdef": 66, - "CONFIG_SMP": 1, - "DEFINE_MUTEX": 1, - "cpu_add_remove_lock": 3, - "cpu_maps_update_begin": 9, - "mutex_lock": 5, - "cpu_maps_update_done": 9, - "mutex_unlock": 6, - "RAW_NOTIFIER_HEAD": 1, - "cpu_chain": 4, - "cpu_hotplug_disabled": 7, - "CONFIG_HOTPLUG_CPU": 2, - "task_struct": 5, - "*active_writer": 1, - "mutex": 1, - "refcount": 2, - "cpu_hotplug": 1, - ".active_writer": 1, - ".lock": 1, - "__MUTEX_INITIALIZER": 1, - "cpu_hotplug.lock": 8, - ".refcount": 1, - "get_online_cpus": 2, - "might_sleep": 1, - "cpu_hotplug.active_writer": 6, - "current": 5, - "cpu_hotplug.refcount": 3, - "EXPORT_SYMBOL_GPL": 4, - "put_online_cpus": 2, - "unlikely": 54, - "wake_up_process": 1, - "cpu_hotplug_begin": 4, - "likely": 22, - "break": 244, - "__set_current_state": 1, - "TASK_UNINTERRUPTIBLE": 1, - "schedule": 1, - "cpu_hotplug_done": 4, - "#else": 94, - "__ref": 6, - "register_cpu_notifier": 2, - "notifier_block": 3, - "*nb": 3, - "raw_notifier_chain_register": 1, - "nb": 2, - "__cpu_notify": 6, - "val": 20, - "*v": 3, - "nr_to_call": 2, - "*nr_calls": 1, - "__raw_notifier_call_chain": 1, - "v": 11, - "nr_calls": 9, - "notifier_to_errno": 1, - "cpu_notify": 5, - "cpu_notify_nofail": 4, - "BUG_ON": 4, - "EXPORT_SYMBOL": 8, - "unregister_cpu_notifier": 2, - "raw_notifier_chain_unregister": 1, - "clear_tasks_mm_cpumask": 1, - "cpu": 57, - "WARN_ON": 1, - "cpu_online": 5, - "rcu_read_lock": 1, - "for_each_process": 2, - "p": 60, - "*t": 2, - "t": 32, - "find_lock_task_mm": 1, - "cpumask_clear_cpu": 5, - "mm_cpumask": 1, - "mm": 1, - "task_unlock": 1, - "rcu_read_unlock": 1, - "check_for_tasks": 2, - "write_lock_irq": 1, - "tasklist_lock": 2, - "task_cpu": 1, - "state": 104, - "TASK_RUNNING": 1, - "utime": 1, - "stime": 1, - "printk": 12, - "KERN_WARNING": 3, - "comm": 1, - "task_pid_nr": 1, - "flags": 89, - "write_unlock_irq": 1, - "take_cpu_down_param": 3, - "mod": 13, - "*hcpu": 3, - "take_cpu_down": 2, - "*_param": 1, - "*param": 1, - "_param": 1, - "err": 38, - "__cpu_disable": 1, - "CPU_DYING": 1, - "|": 132, - "param": 2, - "hcpu": 10, - "_cpu_down": 3, - "tasks_frozen": 4, - "CPU_TASKS_FROZEN": 2, - "tcd_param": 2, - ".mod": 1, - ".hcpu": 1, - "num_online_cpus": 2, - "EBUSY": 3, - "EINVAL": 6, - "CPU_DOWN_PREPARE": 1, - "CPU_DOWN_FAILED": 2, - "__func__": 2, - "goto": 159, - "out_release": 3, - "__stop_machine": 1, - "cpumask_of": 1, - "idle_cpu": 1, - "cpu_relax": 1, - "__cpu_die": 1, - "CPU_DEAD": 1, - "CPU_POST_DEAD": 1, - "cpu_down": 2, - "out": 18, - "__cpuinit": 3, - "_cpu_up": 3, - "*idle": 1, - "cpu_present": 1, - "idle": 4, - "idle_thread_get": 1, - "IS_ERR": 1, - "PTR_ERR": 1, - "CPU_UP_PREPARE": 1, - "out_notify": 3, - "__cpu_up": 1, - "CPU_ONLINE": 1, - "CPU_UP_CANCELED": 1, - "cpu_up": 2, - "CONFIG_MEMORY_HOTPLUG": 2, - "nid": 5, - "pg_data_t": 1, - "*pgdat": 1, - "cpu_possible": 1, - "KERN_ERR": 5, - "#if": 92, - "defined": 42, - "CONFIG_IA64": 1, - "cpu_to_node": 1, - "node_online": 1, - "mem_online_node": 1, - "pgdat": 3, - "NODE_DATA": 1, - "ENOMEM": 4, - "node_zonelists": 1, - "_zonerefs": 1, - "zone": 1, - "zonelists_mutex": 2, - "build_all_zonelists": 1, - "CONFIG_PM_SLEEP_SMP": 2, - "cpumask_var_t": 1, - "frozen_cpus": 9, - "__weak": 4, - "arch_disable_nonboot_cpus_begin": 2, - "arch_disable_nonboot_cpus_end": 2, - "disable_nonboot_cpus": 1, - "first_cpu": 3, - "cpumask_first": 1, - "cpu_online_mask": 3, - "cpumask_clear": 2, - "for_each_online_cpu": 1, - "cpumask_set_cpu": 5, - "arch_enable_nonboot_cpus_begin": 2, - "arch_enable_nonboot_cpus_end": 2, - "enable_nonboot_cpus": 1, - "cpumask_empty": 1, - "KERN_INFO": 2, - "for_each_cpu": 1, - "__init": 2, - "alloc_frozen_cpus": 2, - "alloc_cpumask_var": 1, - "GFP_KERNEL": 1, - "__GFP_ZERO": 1, - "core_initcall": 2, - "cpu_hotplug_disable_before_freeze": 2, - "cpu_hotplug_enable_after_thaw": 2, - "cpu_hotplug_pm_callback": 2, - "action": 2, - "*ptr": 1, - "switch": 46, - "case": 273, - "PM_SUSPEND_PREPARE": 1, - "PM_HIBERNATION_PREPARE": 1, - "PM_POST_SUSPEND": 1, - "PM_POST_HIBERNATION": 1, - "default": 33, - "NOTIFY_DONE": 1, - "NOTIFY_OK": 1, - "cpu_hotplug_pm_sync_init": 2, - "pm_notifier": 1, - "notify_cpu_starting": 1, - "CPU_STARTING": 1, - "cpumask_test_cpu": 1, - "CPU_STARTING_FROZEN": 1, - "MASK_DECLARE_1": 3, - "x": 57, - "UL": 1, - "<<": 56, - "MASK_DECLARE_2": 3, - "MASK_DECLARE_4": 3, - "MASK_DECLARE_8": 9, - "cpu_bit_bitmap": 2, - "BITS_PER_LONG": 2, - "BITS_TO_LONGS": 1, - "NR_CPUS": 2, - "DECLARE_BITMAP": 6, - "cpu_all_bits": 2, - "CPU_BITS_ALL": 2, - "CONFIG_INIT_ALL_POSSIBLE": 1, - "cpu_possible_bits": 6, - "CONFIG_NR_CPUS": 5, - "__read_mostly": 5, - "cpumask": 7, - "*const": 4, - "cpu_possible_mask": 2, - "to_cpumask": 15, - "cpu_online_bits": 5, - "cpu_present_bits": 5, - "cpu_present_mask": 2, - "cpu_active_bits": 4, - "cpu_active_mask": 2, - "set_cpu_possible": 1, - "bool": 6, - "possible": 2, - "set_cpu_present": 1, - "present": 2, - "set_cpu_online": 1, - "online": 2, - "set_cpu_active": 1, - "active": 2, - "init_cpu_present": 1, - "*src": 3, - "cpumask_copy": 3, - "src": 16, - "init_cpu_possible": 1, - "init_cpu_online": 1, - "*diff_prefix_from_pathspec": 1, - "git_strarray": 2, - "*pathspec": 2, - "git_buf": 3, - "prefix": 34, - "GIT_BUF_INIT": 3, - "*scan": 2, - "git_buf_common_prefix": 1, - "pathspec": 15, - "scan": 4, - "prefix.ptr": 2, - "git__iswildcard": 1, - "git_buf_truncate": 1, - "prefix.size": 1, - "git_buf_detach": 1, - "git_buf_free": 4, - "diff_pathspec_is_interesting": 2, - "*str": 1, - "count": 17, - "false": 77, - "true": 73, - "str": 162, - "strings": 5, - "diff_path_matches_pathspec": 3, - "git_diff_list": 17, - "*diff": 8, - "*path": 2, - "git_attr_fnmatch": 4, - "*match": 3, - "diff": 93, - "pathspec.length": 1, - "git_vector_foreach": 4, - "match": 16, - "p_fnmatch": 1, - "pattern": 3, - "path": 20, - "FNM_NOMATCH": 1, - "GIT_ATTR_FNMATCH_HASWILD": 1, - "strncmp": 1, - "length": 58, - "GIT_ATTR_FNMATCH_NEGATIVE": 1, - "git_diff_delta": 19, - "*diff_delta__alloc": 1, - "git_delta_t": 5, - "status": 57, - "*delta": 6, - "git__calloc": 3, - "delta": 54, - "old_file.path": 12, - "git_pool_strdup": 3, - "pool": 12, - "new_file.path": 6, - "opts.flags": 8, - "GIT_DIFF_REVERSE": 3, - "GIT_DELTA_ADDED": 4, - "GIT_DELTA_DELETED": 7, - "*diff_delta__dup": 1, - "*d": 1, - "git_pool": 4, - "*pool": 3, - "d": 16, - "fail": 19, - "*diff_delta__merge_like_cgit": 1, - "*b": 6, - "*dup": 1, - "diff_delta__dup": 3, - "dup": 15, - "new_file.oid": 7, - "git_oid_cpy": 5, - "new_file.mode": 4, - "new_file.size": 3, - "new_file.flags": 4, - "old_file.oid": 3, - "GIT_DELTA_UNTRACKED": 5, - "GIT_DELTA_IGNORED": 5, - "GIT_DELTA_UNMODIFIED": 11, - "diff_delta__from_one": 5, - "git_index_entry": 8, - "GIT_DIFF_INCLUDE_IGNORED": 1, - "GIT_DIFF_INCLUDE_UNTRACKED": 1, - "diff_delta__alloc": 2, - "assert": 41, - "GIT_DELTA_MODIFIED": 3, - "old_file.mode": 2, - "mode": 11, - "old_file.size": 1, - "file_size": 6, - "old_file.flags": 2, - "GIT_DIFF_FILE_VALID_OID": 4, - "git_vector_insert": 4, - "deltas": 8, - "diff_delta__from_two": 2, - "*old_entry": 1, - "*new_entry": 1, - "*new_oid": 1, - "GIT_DIFF_INCLUDE_UNMODIFIED": 1, - "*temp": 1, - "old_entry": 5, - "new_entry": 5, - "temp": 11, - "new_oid": 3, - "git_oid_iszero": 2, - "*diff_strdup_prefix": 1, - "strlen": 17, - "git_pool_strcat": 1, - "git_pool_strndup": 1, - "diff_delta__cmp": 3, - "*da": 1, - "*db": 3, - "strcmp": 20, - "da": 2, - "db": 10, - "config_bool": 5, - "git_config": 3, - "*cfg": 2, - "defvalue": 2, - "git_config_get_bool": 1, - "cfg": 6, - "giterr_clear": 1, - "*git_diff_list_alloc": 1, - "git_repository": 7, - "*repo": 7, - "git_diff_options": 7, - "*opts": 6, - "repo": 23, - "git_vector_init": 3, - "git_pool_init": 2, - "git_repository_config__weakptr": 1, - "diffcaps": 13, - "GIT_DIFFCAPS_HAS_SYMLINKS": 2, - "GIT_DIFFCAPS_ASSUME_UNCHANGED": 2, - "GIT_DIFFCAPS_TRUST_EXEC_BIT": 2, - "GIT_DIFFCAPS_TRUST_CTIME": 2, - "opts": 24, - "opts.pathspec": 2, - "opts.old_prefix": 4, - "diff_strdup_prefix": 2, - "old_prefix": 2, - "DIFF_OLD_PREFIX_DEFAULT": 1, - "opts.new_prefix": 4, - "new_prefix": 2, - "DIFF_NEW_PREFIX_DEFAULT": 1, - "*swap": 1, - "swap": 9, - "pathspec.count": 2, - "*pattern": 1, - "pathspec.strings": 1, - "GIT_ATTR_FNMATCH_ALLOWSPACE": 1, - "git_attr_fnmatch__parse": 1, - "GIT_ENOTFOUND": 1, - "git_diff_list_free": 3, - "deltas.contents": 1, - "git_vector_free": 3, - "pathspec.contents": 1, - "git_pool_clear": 2, - "oid_for_workdir_item": 2, - "full_path": 3, - "git_buf_joinpath": 1, - "git_repository_workdir": 1, - "S_ISLNK": 2, - "git_odb__hashlink": 1, - "full_path.ptr": 2, - "git__is_sizet": 1, - "giterr_set": 1, - "GITERR_OS": 1, - "fd": 34, - "git_futils_open_ro": 1, - "git_odb__hashfd": 1, - "GIT_OBJ_BLOB": 1, - "p_close": 1, - "EXEC_BIT_MASK": 3, - "maybe_modified": 2, - "git_iterator": 8, - "*old_iter": 2, - "*oitem": 2, - "*new_iter": 2, - "*nitem": 2, - "noid": 4, - "*use_noid": 1, - "omode": 8, - "oitem": 29, - "nmode": 10, - "nitem": 32, - "GIT_UNUSED": 1, - "old_iter": 8, - "S_ISREG": 1, - "GIT_MODE_TYPE": 3, - "GIT_MODE_PERMS_MASK": 1, - "flags_extended": 2, - "GIT_IDXENTRY_INTENT_TO_ADD": 1, - "GIT_IDXENTRY_SKIP_WORKTREE": 1, - "new_iter": 13, - "GIT_ITERATOR_WORKDIR": 2, - "ctime.seconds": 2, - "mtime.seconds": 2, - "GIT_DIFFCAPS_USE_DEV": 1, - "dev": 2, - "ino": 2, - "uid": 2, - "gid": 2, - "S_ISGITLINK": 1, - "git_submodule": 1, - "*sub": 1, - "GIT_DIFF_IGNORE_SUBMODULES": 1, - "git_submodule_lookup": 1, - "sub": 12, - "ignore": 1, - "GIT_SUBMODULE_IGNORE_ALL": 1, - "use_noid": 2, - "diff_from_iterators": 5, - "**diff_ptr": 1, - "ignore_prefix": 6, - "git_diff_list_alloc": 1, - "old_src": 1, - "new_src": 3, - "git_iterator_current": 2, - "git_iterator_advance": 5, - "delta_type": 8, - "git_buf_len": 1, - "git__prefixcmp": 2, - "git_buf_cstr": 1, - "S_ISDIR": 1, - "GIT_DIFF_RECURSE_UNTRACKED_DIRS": 1, - "git_iterator_current_is_ignored": 2, - "git_buf_sets": 1, - "git_iterator_advance_into_directory": 1, - "git_iterator_free": 4, - "*diff_ptr": 2, - "git_diff_tree_to_tree": 1, - "git_tree": 4, - "*old_tree": 3, - "*new_tree": 1, - "**diff": 4, - "diff_prefix_from_pathspec": 4, - "old_tree": 5, - "new_tree": 2, - "git_iterator_for_tree_range": 4, - "git_diff_index_to_tree": 1, - "git_iterator_for_index_range": 2, - "git_diff_workdir_to_index": 1, - "git_iterator_for_workdir_range": 2, - "git_diff_workdir_to_tree": 1, - "git_diff_merge": 1, - "*onto": 1, - "*from": 1, - "onto_pool": 7, - "git_vector": 1, - "onto_new": 6, - "j": 206, - "onto": 7, - "from": 16, - "deltas.length": 4, - "*o": 8, - "GIT_VECTOR_GET": 2, - "*f": 2, - "f": 184, - "o": 80, - "diff_delta__merge_like_cgit": 1, - "git_vector_swap": 1, - "git_pool_swap": 1, - "ATSHOME_LIBATS_DYNARRAY_CATS": 3, - "": 5, - "atslib_dynarray_memcpy": 1, - "atslib_dynarray_memmove": 1, - "memmove": 2, + "": 1, + "": 2, + "": 8, + "": 4, + "": 2, "//": 262, - "ifndef": 2, + "rfUTF8_IsContinuationbyte": 1, + "": 3, + "malloc": 3, + "": 5, + "memcpy": 35, + "e.t.c.": 1, + "int32_t": 112, + "rfFReadLine_UTF8": 5, + "FILE*": 64, + "f": 184, + "char**": 7, + "utf8": 36, + "uint32_t*": 34, + "byteLength": 197, + "bufferSize": 6, + "char*": 167, + "eof": 53, + "bytesN": 98, + "uint32_t": 144, + "bIndex": 5, + "#ifdef": 66, + "RF_NEWLINE_CRLF": 1, + "newLineFound": 1, + "false": 77, + "#endif": 243, + "*bufferSize": 1, + "RF_OPTION_FGETS_READBYTESN": 5, + "RF_MALLOC": 47, + "tempBuff": 6, + "uint16_t": 12, + "RF_LF": 10, + "break": 244, + "buff": 95, + "RF_SUCCESS": 14, + "RE_FILE_EOF": 22, + "EOF": 26, + "found": 20, + "*eofReached": 14, + "true": 73, + "LOG_ERROR": 64, + "num": 24, + "RF_HEXEQ_UI": 7, + "rfFgetc_UTF32BE": 3, + "else//": 14, + "undo": 5, + "the": 91, + "peek": 5, + "ahead": 5, + "of": 44, + "file": 6, + "pointer": 5, + "fseek": 19, + "SEEK_CUR": 19, + "rfFgets_UTF32LE": 2, + "eofReached": 4, + "do": 21, + "rfFgetc_UTF32LE": 4, + "rfFgets_UTF16BE": 2, + "rfFgetc_UTF16BE": 4, + "rfFgets_UTF16LE": 2, + "rfFgetc_UTF16LE": 4, + "rfFgets_UTF8": 2, + "rfFgetc_UTF8": 3, + "RF_HEXEQ_C": 9, + "fgetc": 9, + "check": 8, + "ferror": 2, + "RE_FILE_READ": 2, + "*ret": 20, + "cp": 12, + "c2": 13, + "c3": 9, + "c4": 5, + "i_READ_CHECK": 20, + "///": 4, + "success": 4, + "cc": 24, + "we": 10, + "need": 5, + "more": 2, + "bytes": 225, + "xC0": 3, + "xC1": 1, + "RE_UTF8_INVALID_SEQUENCE_INVALID_BYTE": 6, + "RE_UTF8_INVALID_SEQUENCE_END": 6, + "rfUTF8_IsContinuationByte": 12, + "RE_UTF8_INVALID_SEQUENCE_CONBYTE": 6, + "decoded": 3, + "codepoint": 47, + "F": 38, + "|": 132, + "<<": 56, + "end": 48, + "case": 273, + "xE0": 2, + "xF": 5, + "to": 37, + "decode": 6, + "xF0": 2, + "RF_HEXGE_C": 1, + "xBF": 2, + "//invalid": 1, + "byte": 6, + "value": 9, + "are": 6, + "from": 16, + "xFF": 1, + "//if": 1, + "needing": 1, + "than": 5, + "swapE": 21, + "v1": 38, + "v2": 26, + "rfUTILS_Endianess": 24, + "RF_LITTLE_ENDIAN": 23, + "fread": 12, + "swap": 9, + "endianess": 40, + "needed": 10, + "rfUTILS_SwapEndianUS": 10, + "RF_HEXGE_US": 4, + "xD800": 8, + "RF_HEXLE_US": 4, + "xDFFF": 8, + "RF_HEXL_US": 8, + "RF_HEXG_US": 8, + "xDBFF": 4, + "RE_UTF16_INVALID_SEQUENCE": 20, + "RE_UTF16_NO_SURRPAIR": 2, + "xDC00": 4, + "user": 2, + "wants": 2, + "ff": 10, + "uint16_t*": 11, + "surrogate": 4, + "pair": 4, + "existence": 2, + "RF_BIG_ENDIAN": 10, + "rfUTILS_SwapEndianUI": 11, + "rfFback_UTF32BE": 2, + "i_FSEEK_CHECK": 14, + "rfFback_UTF32LE": 2, + "rfFback_UTF16BE": 2, + "rfFback_UTF16LE": 2, + "rfFback_UTF8": 2, + "switch": 46, + "depending": 1, + "on": 4, + "number": 19, + "read": 1, + "backwards": 1, + "default": 33, + "RE_UTF8_INVALID_SEQUENCE": 2, "git_usage_string": 2, "git_more_info_string": 2, "N_": 1, @@ -5237,19 +4643,22 @@ "pager_config": 3, "*cmd": 5, "want": 3, + "*value": 5, "pager_command_config": 2, + "*var": 4, "*data": 12, "data": 69, "prefixcmp": 3, "var": 7, + "strcmp": 20, "cmd": 46, "git_config_maybe_bool": 1, - "value": 9, "xstrdup": 2, "check_pager_config": 3, "c.cmd": 1, "c.want": 2, "c.value": 3, + "git_config": 3, "pager_program": 1, "commit_pager_choice": 4, "setenv": 1, @@ -5262,6 +4671,7 @@ "*argv": 6, "new_argv": 7, "option_count": 1, + "count": 17, "alias_command": 4, "trace_argv_printf": 3, "*argcp": 4, @@ -5272,6 +4682,7 @@ "saved_errno": 1, "git_version_string": 1, "GIT_VERSION": 1, + "#define": 920, "RUN_SETUP": 81, "RUN_SETUP_GENTLY": 16, "USE_PAGER": 3, @@ -5279,10 +4690,16 @@ "cmd_struct": 4, "option": 9, "run_builtin": 2, + "argc": 26, + "**argv": 6, + "status": 57, "help": 4, "stat": 3, "st": 2, + "*prefix": 7, + "prefix": 34, "argv": 54, + "p": 60, "setup_git_directory": 1, "nongit_ok": 2, "setup_git_directory_gently": 1, @@ -5297,7 +4714,6 @@ "st.st_mode": 2, "S_ISSOCK": 1, "fflush": 2, - "ferror": 2, "fclose": 5, "handle_internal_command": 3, "commands": 3, @@ -5406,11 +4822,13 @@ "cmd_write_tree": 1, "ext": 4, "STRIP_EXTENSION": 1, + "strlen": 17, "*argv0": 1, "argv0": 2, "ARRAY_SIZE": 1, "exit": 20, "execv_dashed_external": 2, + "strbuf": 12, "STRBUF_INIT": 1, "*tmp": 1, "strbuf_addf": 1, @@ -5437,444 +4855,168 @@ "stderr": 15, "help_unknown_cmd": 1, "strerror": 4, - "PPC_SHA1": 1, - "git_hash_ctx": 7, - "SHA_CTX": 3, - "*git_hash_new_ctx": 1, - "*ctx": 5, - "ctx": 16, - "SHA1_Init": 4, - "git_hash_free_ctx": 1, - "git_hash_init": 1, - "git_hash_update": 1, - "SHA1_Update": 3, - "git_hash_final": 1, - "*out": 3, - "SHA1_Final": 3, - "git_hash_buf": 1, - "git_hash_vec": 1, - "git_buf_vec": 1, - "*vec": 1, - "vec": 2, - ".data": 1, - ".len": 3, - "HELLO_H": 2, - "hello": 1, "": 5, - "": 2, - "": 3, - "": 3, - "": 2, - "ULLONG_MAX": 10, - "MIN": 3, - "HTTP_PARSER_DEBUG": 4, - "SET_ERRNO": 47, - "e": 4, - "do": 21, - "parser": 334, - "http_errno": 11, - "error_lineno": 3, - "__LINE__": 50, - "CALLBACK_NOTIFY_": 3, - "FOR": 11, - "ER": 4, - "HTTP_PARSER_ERRNO": 10, - "HPE_OK": 10, - "settings": 6, - "on_##FOR": 4, - "HPE_CB_##FOR": 2, - "CALLBACK_NOTIFY": 10, - "CALLBACK_NOTIFY_NOADVANCE": 2, - "CALLBACK_DATA_": 4, - "LEN": 2, - "FOR##_mark": 7, - "CALLBACK_DATA": 10, - "CALLBACK_DATA_NOADVANCE": 6, - "MARK": 7, - "PROXY_CONNECTION": 4, - "CONNECTION": 4, - "CONTENT_LENGTH": 4, - "TRANSFER_ENCODING": 4, - "UPGRADE": 4, - "CHUNKED": 4, - "KEEP_ALIVE": 4, - "CLOSE": 4, - "*method_strings": 1, - "XX": 63, - "num": 24, - "string": 18, - "#string": 1, - "HTTP_METHOD_MAP": 3, - "#undef": 7, - "tokens": 5, - "int8_t": 3, - "unhex": 3, - "HTTP_PARSER_STRICT": 5, - "uint8_t": 6, - "normal_url_char": 3, - "T": 3, - "s_dead": 10, - "s_start_req_or_res": 4, - "s_res_or_resp_H": 3, - "s_start_res": 5, - "s_res_H": 3, - "s_res_HT": 4, - "s_res_HTT": 3, - "s_res_HTTP": 3, - "s_res_first_http_major": 3, - "s_res_http_major": 3, - "s_res_first_http_minor": 3, - "s_res_http_minor": 3, - "s_res_first_status_code": 3, - "s_res_status_code": 3, - "s_res_status": 3, - "s_res_line_almost_done": 4, - "s_start_req": 6, - "s_req_method": 4, - "s_req_spaces_before_url": 5, - "s_req_schema": 6, - "s_req_schema_slash": 6, - "s_req_schema_slash_slash": 6, - "s_req_host_start": 8, - "s_req_host_v6_start": 7, - "s_req_host_v6": 7, - "s_req_host_v6_end": 7, - "s_req_host": 8, - "s_req_port_start": 7, - "s_req_port": 6, - "s_req_path": 8, - "s_req_query_string_start": 8, - "s_req_query_string": 7, - "s_req_fragment_start": 7, - "s_req_fragment": 7, - "s_req_http_start": 3, - "s_req_http_H": 3, - "s_req_http_HT": 3, - "s_req_http_HTT": 3, - "s_req_http_HTTP": 3, - "s_req_first_http_major": 3, - "s_req_http_major": 3, - "s_req_first_http_minor": 3, - "s_req_http_minor": 3, - "s_req_line_almost_done": 4, - "s_header_field_start": 12, - "s_header_field": 4, - "s_header_value_start": 4, - "s_header_value": 5, - "s_header_value_lws": 3, - "s_header_almost_done": 6, - "s_chunk_size_start": 4, - "s_chunk_size": 3, - "s_chunk_parameters": 3, - "s_chunk_size_almost_done": 4, - "s_headers_almost_done": 4, - "s_headers_done": 4, - "s_chunk_data": 3, - "s_chunk_data_almost_done": 3, - "s_chunk_data_done": 3, - "s_body_identity": 3, - "s_body_identity_eof": 4, - "s_message_done": 3, - "PARSING_HEADER": 2, - "header_states": 1, - "h_general": 23, - "0": 11, - "h_C": 3, - "h_CO": 3, - "h_CON": 3, - "h_matching_connection": 3, - "h_matching_proxy_connection": 3, - "h_matching_content_length": 3, - "h_matching_transfer_encoding": 3, - "h_matching_upgrade": 3, - "h_connection": 6, - "h_content_length": 5, - "h_transfer_encoding": 5, - "h_upgrade": 4, - "h_matching_transfer_encoding_chunked": 3, - "h_matching_connection_keep_alive": 3, - "h_matching_connection_close": 3, - "h_transfer_encoding_chunked": 4, - "h_connection_keep_alive": 4, - "h_connection_close": 4, - "Macros": 1, - "character": 11, - "classes": 1, - "depends": 1, - "on": 4, - "strict": 2, - "define": 14, - "CR": 18, + "": 2, + "": 1, + "": 1, + "": 2, + "__APPLE__": 2, + "#if": 92, + "defined": 42, + "TARGET_OS_IPHONE": 1, + "#else": 94, + "extern": 38, + "**environ": 1, + "uv__chld": 2, + "EV_P_": 1, + "ev_child*": 1, + "watcher": 4, + "revents": 2, + "rstatus": 1, + "exit_status": 3, + "term_signal": 3, + "uv_process_t": 1, + "*process": 1, + "assert": 41, + "process": 19, + "child_watcher": 5, + "EV_CHILD": 1, + "ev_child_stop": 2, + "EV_A_": 1, + "WIFEXITED": 1, + "WEXITSTATUS": 2, + "WIFSIGNALED": 2, + "WTERMSIG": 2, + "exit_cb": 3, + "uv__make_socketpair": 2, + "fds": 20, + "flags": 89, + "SOCK_NONBLOCK": 2, + "fl": 8, + "SOCK_CLOEXEC": 1, + "UV__F_NONBLOCK": 5, + "socketpair": 2, + "AF_UNIX": 2, + "SOCK_STREAM": 2, + "EINVAL": 6, + "uv__cloexec": 4, + "uv__nonblock": 5, + "uv__make_pipe": 2, + "__linux__": 3, + "UV__O_CLOEXEC": 1, + "UV__O_NONBLOCK": 1, + "uv__pipe2": 1, + "ENOSYS": 1, + "pipe": 1, + "uv__process_init_stdio": 2, + "uv_stdio_container_t*": 4, + "container": 17, + "writable": 8, + "fd": 34, + "UV_IGNORE": 2, + "UV_CREATE_PIPE": 4, + "UV_INHERIT_FD": 3, + "UV_INHERIT_STREAM": 2, + "data.stream": 7, + "UV_NAMED_PIPE": 2, + "data.fd": 1, + "uv__process_stdio_flags": 2, + "uv_pipe_t*": 1, + "ipc": 1, + "UV_STREAM_READABLE": 2, + "UV_STREAM_WRITABLE": 2, + "uv__process_open_stream": 2, + "child_fd": 3, + "close": 13, + "uv__stream_open": 1, + "uv_stream_t*": 2, + "uv__process_close_stream": 2, + "uv__stream_close": 1, + "uv__process_child_init": 2, + "uv_process_options_t": 2, + "options": 62, + "stdio_count": 7, + "int*": 22, + "pipes": 23, + "options.flags": 4, + "UV_PROCESS_DETACHED": 2, + "setsid": 2, + "close_fd": 2, + "use_fd": 7, + "open": 4, + "O_RDONLY": 1, + "O_RDWR": 2, + "perror": 5, + "_exit": 6, + "dup2": 4, + "options.cwd": 2, + "UV_PROCESS_SETGID": 2, + "setgid": 1, + "options.gid": 1, + "UV_PROCESS_SETUID": 2, + "setuid": 1, + "options.uid": 1, + "environ": 4, + "options.env": 1, + "execvp": 1, + "options.file": 2, + "options.args": 1, + "#ifndef": 89, + "SPAWN_WAIT_EXEC": 5, + "uv_spawn": 1, + "uv_loop_t*": 1, + "loop": 9, + "uv_process_t*": 3, + "save_our_env": 3, + "options.stdio_count": 4, + "signal_pipe": 7, + "pollfd": 1, + "pfd": 2, + "pid_t": 2, + "pid": 13, + "ENOMEM": 4, + "goto": 159, + "UV_PROCESS_WINDOWS_VERBATIM_ARGUMENTS": 1, + "uv__handle_init": 1, + "uv_handle_t*": 1, + "UV_PROCESS": 1, + "counters.process_init": 1, + "uv__handle_start": 1, + "options.exit_cb": 1, + "options.stdio": 3, + "fork": 2, + "pfd.fd": 1, + "pfd.events": 1, + "POLLIN": 1, + "POLLHUP": 1, + "pfd.revents": 1, + "poll": 1, + "EINTR": 1, + "ev_child_init": 1, + "ev_child_start": 1, + "ev": 2, + "child_watcher.data": 1, + "j": 206, + "uv__set_sys_error": 2, + "uv_process_kill": 1, + "signum": 4, "r": 58, - "LF": 21, - "LOWER": 7, - "0x20": 1, - "IS_ALPHA": 5, - "z": 47, - "IS_NUM": 14, - "9": 1, - "IS_ALPHANUM": 3, - "IS_HEX": 2, - "TOKEN": 4, - "IS_URL_CHAR": 6, - "IS_HOST_CHAR": 4, - "0x80": 1, - "endif": 6, - "start_state": 1, - "HTTP_REQUEST": 7, - "cond": 1, - "HPE_STRICT": 1, - "HTTP_STRERROR_GEN": 3, - "#n": 1, - "*description": 1, - "http_strerror_tab": 7, - "HTTP_ERRNO_MAP": 3, - "http_message_needs_eof": 4, - "http_parser": 13, - "*parser": 9, - "parse_url_char": 5, - "ch": 145, - "http_parser_execute": 2, - "http_parser_settings": 5, - "*settings": 2, - "unhex_val": 7, - "*header_field_mark": 1, - "*header_value_mark": 1, - "*url_mark": 1, - "*body_mark": 1, - "message_complete": 7, - "HPE_INVALID_EOF_STATE": 1, - "header_field_mark": 2, - "header_value_mark": 2, - "url_mark": 2, - "nread": 7, - "HTTP_MAX_HEADER_SIZE": 2, - "HPE_HEADER_OVERFLOW": 1, - "reexecute_byte": 7, - "HPE_CLOSED_CONNECTION": 1, - "content_length": 27, - "message_begin": 3, - "HTTP_RESPONSE": 3, - "HPE_INVALID_CONSTANT": 3, - "method": 39, - "HTTP_HEAD": 2, - "index": 58, - "STRICT_CHECK": 15, - "HPE_INVALID_VERSION": 12, - "http_major": 11, - "http_minor": 11, - "HPE_INVALID_STATUS": 3, - "status_code": 8, - "HPE_INVALID_METHOD": 4, - "http_method": 4, - "HTTP_CONNECT": 4, - "HTTP_DELETE": 1, - "HTTP_GET": 1, - "HTTP_LOCK": 1, - "HTTP_MKCOL": 2, - "HTTP_NOTIFY": 1, - "HTTP_OPTIONS": 1, - "HTTP_POST": 2, - "HTTP_REPORT": 1, - "HTTP_SUBSCRIBE": 2, - "HTTP_TRACE": 1, - "HTTP_UNLOCK": 2, - "*matcher": 1, - "matcher": 3, - "method_strings": 2, - "HTTP_CHECKOUT": 1, - "HTTP_COPY": 1, - "HTTP_MOVE": 1, - "HTTP_MERGE": 1, - "HTTP_MSEARCH": 1, - "HTTP_MKACTIVITY": 1, - "HTTP_SEARCH": 1, - "HTTP_PROPFIND": 2, - "HTTP_PUT": 2, - "HTTP_PATCH": 1, - "HTTP_PURGE": 1, - "HTTP_UNSUBSCRIBE": 1, - "HTTP_PROPPATCH": 1, - "url": 4, - "HPE_INVALID_URL": 4, - "HPE_LF_EXPECTED": 1, - "HPE_INVALID_HEADER_TOKEN": 2, - "header_field": 5, - "header_state": 42, - "header_value": 6, - "F_UPGRADE": 3, - "HPE_INVALID_CONTENT_LENGTH": 4, - "uint64_t": 8, - "F_CONNECTION_KEEP_ALIVE": 3, - "F_CONNECTION_CLOSE": 3, - "F_CHUNKED": 11, - "F_TRAILING": 3, - "NEW_MESSAGE": 6, - "upgrade": 3, - "on_headers_complete": 3, - "F_SKIPBODY": 4, - "HPE_CB_headers_complete": 1, - "to_read": 6, - "body": 6, - "body_mark": 2, - "HPE_INVALID_CHUNK_SIZE": 2, - "HPE_INVALID_INTERNAL_STATE": 1, - "1": 2, - "HPE_UNKNOWN": 1, - "Does": 1, - "the": 91, - "need": 5, - "to": 37, - "see": 2, - "an": 2, - "EOF": 26, - "find": 1, - "end": 48, - "of": 44, - "message": 3, - "http_should_keep_alive": 2, - "http_method_str": 1, - "m": 8, - "http_parser_init": 2, - "http_parser_type": 3, - "http_errno_name": 1, - "/sizeof": 4, - ".name": 1, - "http_errno_description": 1, - ".description": 1, - "http_parser_parse_url": 2, - "buflen": 3, - "is_connect": 4, - "http_parser_url": 3, - "*u": 2, - "http_parser_url_fields": 2, - "uf": 14, - "old_uf": 4, - "u": 18, - "port": 7, - "field_set": 5, - "UF_MAX": 3, - "UF_SCHEMA": 2, - "UF_HOST": 3, - "UF_PORT": 5, - "UF_PATH": 2, - "UF_QUERY": 2, - "UF_FRAGMENT": 2, - "field_data": 5, - ".off": 2, - "xffff": 1, - "uint16_t": 12, - "http_parser_pause": 2, - "paused": 3, - "HPE_PAUSED": 2, - "http_parser_h": 2, - "__cplusplus": 20, - "HTTP_PARSER_VERSION_MAJOR": 1, - "HTTP_PARSER_VERSION_MINOR": 1, - "": 2, + "kill": 4, + "uv_err_t": 1, + "uv_kill": 1, + "uv__new_sys_error": 1, + "uv_ok_": 1, + "uv__process_close": 1, + "handle": 10, + "uv__handle_stop": 1, + "*blob_type": 2, + "blob": 6, + "*lookup_blob": 2, + "OBJ_BLOB": 3, + "alloc_blob_node": 1, + "parse_blob_buffer": 2, + "": 3, "_WIN32": 3, - "__MINGW32__": 1, - "_MSC_VER": 5, - "__int8": 2, - "__int16": 2, - "int16_t": 1, - "__int32": 2, - "int32_t": 112, - "__int64": 3, - "int64_t": 2, - "ssize_t": 1, - "": 1, - "*1024": 4, - "DELETE": 2, - "GET": 2, - "HEAD": 2, - "POST": 2, - "PUT": 2, - "CONNECT": 2, - "OPTIONS": 2, - "TRACE": 2, - "COPY": 2, - "LOCK": 2, - "MKCOL": 2, - "MOVE": 2, - "PROPFIND": 2, - "PROPPATCH": 2, - "SEARCH": 3, - "UNLOCK": 2, - "REPORT": 2, - "MKACTIVITY": 2, - "CHECKOUT": 2, - "MERGE": 2, - "MSEARCH": 1, - "M": 1, - "NOTIFY": 2, - "SUBSCRIBE": 2, - "UNSUBSCRIBE": 2, - "PATCH": 2, - "PURGE": 2, - "HTTP_##name": 1, - "HTTP_BOTH": 1, - "OK": 1, - "CB_message_begin": 1, - "CB_url": 1, - "CB_header_field": 1, - "CB_header_value": 1, - "CB_headers_complete": 1, - "CB_body": 1, - "CB_message_complete": 1, - "INVALID_EOF_STATE": 1, - "HEADER_OVERFLOW": 1, - "CLOSED_CONNECTION": 1, - "INVALID_VERSION": 1, - "INVALID_STATUS": 1, - "INVALID_METHOD": 1, - "INVALID_URL": 1, - "INVALID_HOST": 1, - "INVALID_PORT": 1, - "INVALID_PATH": 1, - "INVALID_QUERY_STRING": 1, - "INVALID_FRAGMENT": 1, - "LF_EXPECTED": 1, - "INVALID_HEADER_TOKEN": 1, - "INVALID_CONTENT_LENGTH": 1, - "INVALID_CHUNK_SIZE": 1, - "INVALID_CONSTANT": 1, - "INVALID_INTERNAL_STATE": 1, - "STRICT": 1, - "PAUSED": 1, - "UNKNOWN": 1, - "HTTP_ERRNO_GEN": 3, - "HPE_##n": 1, - "HTTP_PARSER_ERRNO_LINE": 2, - "short": 6, - "http_cb": 3, - "on_message_begin": 1, - "http_data_cb": 4, - "on_url": 1, - "on_header_field": 1, - "on_header_value": 1, - "on_body": 1, - "on_message_complete": 1, - "off": 8, - "*http_method_str": 1, - "*http_errno_name": 1, - "*http_errno_description": 1, - "": 1, - "_Included_jni_JniLayer": 2, - "JNIEXPORT": 6, - "jlong": 6, - "JNICALL": 6, - "Java_jni_JniLayer_jni_1layer_1initialize": 1, - "JNIEnv": 6, - "jobject": 6, - "jintArray": 1, - "jint": 7, - "Java_jni_JniLayer_jni_1layer_1mainloop": 1, - "Java_jni_JniLayer_jni_1layer_1set_1button": 1, - "Java_jni_JniLayer_jni_1layer_1set_1analog": 1, - "jfloat": 1, - "Java_jni_JniLayer_jni_1layer_1report_1analog_1chg": 1, - "Java_jni_JniLayer_jni_1layer_1kill": 1, "strncasecmp": 2, "_strnicmp": 1, "REF_TABLE_SIZE": 1, @@ -5887,9 +5029,12 @@ "GPERF_DOWNCASE": 1, "GPERF_CASE_STRNCMP": 1, "link_ref": 2, + "id": 13, "*link": 1, "*title": 1, "sd_markdown": 6, + "typedef": 191, + "size_t": 52, "tag": 1, "tag_len": 3, "w": 6, @@ -5897,6 +5042,7 @@ "htmlblock_end": 3, "*curtag": 2, "*rndr": 4, + "uint8_t": 6, "start_of_line": 2, "tag_size": 3, "curtag": 8, @@ -5936,7 +5082,6 @@ "parse_table_header": 1, "*columns": 2, "**column_data": 1, - "pipes": 23, "header_end": 7, "under_end": 1, "*column_data": 1, @@ -5972,1973 +5117,1044 @@ "SUNDOWN_VER_MAJOR": 1, "SUNDOWN_VER_MINOR": 1, "SUNDOWN_VER_REVISION": 1, - "": 4, - "": 2, - "": 1, - "": 1, - "": 2, - "__APPLE__": 2, - "TARGET_OS_IPHONE": 1, - "**environ": 1, - "uv__chld": 2, - "EV_P_": 1, - "ev_child*": 1, - "watcher": 4, - "revents": 2, - "rstatus": 1, - "exit_status": 3, - "term_signal": 3, - "uv_process_t": 1, - "*process": 1, - "process": 19, - "child_watcher": 5, - "EV_CHILD": 1, - "ev_child_stop": 2, - "EV_A_": 1, - "WIFEXITED": 1, - "WEXITSTATUS": 2, - "WIFSIGNALED": 2, - "WTERMSIG": 2, - "exit_cb": 3, - "uv__make_socketpair": 2, - "fds": 20, - "SOCK_NONBLOCK": 2, - "fl": 8, - "SOCK_CLOEXEC": 1, - "UV__F_NONBLOCK": 5, - "socketpair": 2, - "AF_UNIX": 2, - "SOCK_STREAM": 2, - "uv__cloexec": 4, - "uv__nonblock": 5, - "uv__make_pipe": 2, - "__linux__": 3, - "UV__O_CLOEXEC": 1, - "UV__O_NONBLOCK": 1, - "uv__pipe2": 1, - "ENOSYS": 1, - "pipe": 1, - "uv__process_init_stdio": 2, - "uv_stdio_container_t*": 4, - "container": 17, - "writable": 8, - "UV_IGNORE": 2, - "UV_CREATE_PIPE": 4, - "UV_INHERIT_FD": 3, - "UV_INHERIT_STREAM": 2, - "data.stream": 7, - "UV_NAMED_PIPE": 2, - "data.fd": 1, - "uv__process_stdio_flags": 2, - "uv_pipe_t*": 1, - "ipc": 1, - "UV_STREAM_READABLE": 2, - "UV_STREAM_WRITABLE": 2, - "uv__process_open_stream": 2, - "child_fd": 3, - "close": 13, - "uv__stream_open": 1, - "uv_stream_t*": 2, - "uv__process_close_stream": 2, - "uv__stream_close": 1, - "uv__process_child_init": 2, - "uv_process_options_t": 2, - "options": 62, - "stdio_count": 7, - "int*": 22, - "options.flags": 4, - "UV_PROCESS_DETACHED": 2, - "setsid": 2, - "close_fd": 2, - "use_fd": 7, - "open": 4, - "O_RDONLY": 1, - "O_RDWR": 2, - "perror": 5, - "_exit": 6, - "dup2": 4, - "options.cwd": 2, - "UV_PROCESS_SETGID": 2, - "setgid": 1, - "options.gid": 1, - "UV_PROCESS_SETUID": 2, - "setuid": 1, - "options.uid": 1, - "environ": 4, - "options.env": 1, - "execvp": 1, - "options.file": 2, - "options.args": 1, - "SPAWN_WAIT_EXEC": 5, - "uv_spawn": 1, - "uv_loop_t*": 1, - "loop": 9, - "uv_process_t*": 3, - "char**": 7, - "save_our_env": 3, - "options.stdio_count": 4, - "malloc": 3, - "signal_pipe": 7, - "pollfd": 1, - "pfd": 2, - "pid_t": 2, - "pid": 13, - "UV_PROCESS_WINDOWS_VERBATIM_ARGUMENTS": 1, - "uv__handle_init": 1, - "uv_handle_t*": 1, - "UV_PROCESS": 1, - "counters.process_init": 1, - "uv__handle_start": 1, - "options.exit_cb": 1, - "options.stdio": 3, - "fork": 2, - "pfd.fd": 1, - "pfd.events": 1, - "POLLIN": 1, - "POLLHUP": 1, - "pfd.revents": 1, - "poll": 1, - "EINTR": 1, - "ev_child_init": 1, - "ev_child_start": 1, - "ev": 2, - "child_watcher.data": 1, - "uv__set_sys_error": 2, - "uv_process_kill": 1, - "signum": 4, - "kill": 4, - "uv_err_t": 1, - "uv_kill": 1, - "uv__new_sys_error": 1, - "uv_ok_": 1, - "uv__process_close": 1, - "handle": 10, - "uv__handle_stop": 1, - "VALUE": 13, - "rb_cRDiscount": 4, - "rb_rdiscount_to_html": 2, - "self": 9, - "*res": 2, - "szres": 8, - "encoding": 14, - "rb_funcall": 14, - "rb_intern": 15, - "rb_str_buf_new": 2, - "Check_Type": 2, - "T_STRING": 2, - "rb_rdiscount__get_flags": 3, - "MMIOT": 2, - "*doc": 2, - "mkd_string": 2, - "RSTRING_PTR": 2, - "RSTRING_LEN": 2, - "mkd_compile": 2, - "doc": 6, - "mkd_document": 1, - "res": 4, - "rb_str_cat": 4, - "mkd_cleanup": 2, - "rb_respond_to": 1, - "rb_rdiscount_toc_content": 2, - "mkd_toc": 1, - "ruby_obj": 11, - "MKD_TABSTOP": 1, - "MKD_NOHEADER": 1, - "Qtrue": 10, - "MKD_NOPANTS": 1, - "MKD_NOHTML": 1, - "MKD_TOC": 1, - "MKD_NOIMAGE": 1, - "MKD_NOLINKS": 1, - "MKD_NOTABLES": 1, - "MKD_STRICT": 1, - "MKD_AUTOLINK": 1, - "MKD_SAFELINK": 1, - "MKD_NO_EXT": 1, - "Init_rdiscount": 1, - "rb_define_class": 1, - "rb_cObject": 1, - "rb_define_method": 2, - "READLINE_READLINE_CATS": 3, - "": 1, - "atscntrb_readline_rl_library_version": 1, - "char*": 167, - "rl_library_version": 1, - "atscntrb_readline_rl_readline_version": 1, - "rl_readline_version": 1, - "atscntrb_readline_readline": 1, - "readline": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 2, - "": 1, - "": 1, - "": 3, - "": 1, - "sharedObjectsStruct": 1, - "shared": 1, - "double": 126, - "R_Zero": 2, - "R_PosInf": 2, - "R_NegInf": 2, - "R_Nan": 2, - "redisServer": 1, - "server": 1, - "redisCommand": 6, - "*commandTable": 1, - "redisCommandTable": 5, - "getCommand": 1, - "setCommand": 1, - "noPreloadGetKeys": 6, - "setnxCommand": 1, - "setexCommand": 1, - "psetexCommand": 1, - "appendCommand": 1, - "strlenCommand": 1, - "delCommand": 1, - "existsCommand": 1, - "setbitCommand": 1, - "getbitCommand": 1, - "setrangeCommand": 1, - "getrangeCommand": 2, - "incrCommand": 1, - "decrCommand": 1, - "mgetCommand": 1, - "rpushCommand": 1, - "lpushCommand": 1, - "rpushxCommand": 1, - "lpushxCommand": 1, - "linsertCommand": 1, - "rpopCommand": 1, - "lpopCommand": 1, - "brpopCommand": 1, - "brpoplpushCommand": 1, - "blpopCommand": 1, - "llenCommand": 1, - "lindexCommand": 1, - "lsetCommand": 1, - "lrangeCommand": 1, - "ltrimCommand": 1, - "lremCommand": 1, - "rpoplpushCommand": 1, - "saddCommand": 1, - "sremCommand": 1, - "smoveCommand": 1, - "sismemberCommand": 1, - "scardCommand": 1, - "spopCommand": 1, - "srandmemberCommand": 1, - "sinterCommand": 2, - "sinterstoreCommand": 1, - "sunionCommand": 1, - "sunionstoreCommand": 1, - "sdiffCommand": 1, - "sdiffstoreCommand": 1, - "zaddCommand": 1, - "zincrbyCommand": 1, - "zremCommand": 1, - "zremrangebyscoreCommand": 1, - "zremrangebyrankCommand": 1, - "zunionstoreCommand": 1, - "zunionInterGetKeys": 4, - "zinterstoreCommand": 1, - "zrangeCommand": 1, - "zrangebyscoreCommand": 1, - "zrevrangebyscoreCommand": 1, - "zcountCommand": 1, - "zrevrangeCommand": 1, - "zcardCommand": 1, - "zscoreCommand": 1, - "zrankCommand": 1, - "zrevrankCommand": 1, - "hsetCommand": 1, - "hsetnxCommand": 1, - "hgetCommand": 1, - "hmsetCommand": 1, - "hmgetCommand": 1, - "hincrbyCommand": 1, - "hincrbyfloatCommand": 1, - "hdelCommand": 1, - "hlenCommand": 1, - "hkeysCommand": 1, - "hvalsCommand": 1, - "hgetallCommand": 1, - "hexistsCommand": 1, - "incrbyCommand": 1, - "decrbyCommand": 1, - "incrbyfloatCommand": 1, - "getsetCommand": 1, - "msetCommand": 1, - "msetnxCommand": 1, - "randomkeyCommand": 1, - "selectCommand": 1, - "moveCommand": 1, - "renameCommand": 1, - "renameGetKeys": 2, - "renamenxCommand": 1, - "expireCommand": 1, - "expireatCommand": 1, - "pexpireCommand": 1, - "pexpireatCommand": 1, - "keysCommand": 1, - "dbsizeCommand": 1, - "authCommand": 3, - "pingCommand": 2, - "echoCommand": 2, - "saveCommand": 1, - "bgsaveCommand": 1, - "bgrewriteaofCommand": 1, - "shutdownCommand": 2, - "lastsaveCommand": 1, - "typeCommand": 1, - "multiCommand": 2, - "execCommand": 2, - "discardCommand": 2, - "syncCommand": 1, - "flushdbCommand": 1, - "flushallCommand": 1, - "sortCommand": 1, - "infoCommand": 4, - "monitorCommand": 2, - "ttlCommand": 1, - "pttlCommand": 1, - "persistCommand": 1, - "slaveofCommand": 2, - "debugCommand": 1, - "configCommand": 1, - "subscribeCommand": 2, - "unsubscribeCommand": 2, - "psubscribeCommand": 2, - "punsubscribeCommand": 2, - "publishCommand": 1, - "watchCommand": 2, - "unwatchCommand": 1, - "clusterCommand": 1, - "restoreCommand": 1, - "migrateCommand": 1, - "askingCommand": 1, - "dumpCommand": 1, - "objectCommand": 1, - "clientCommand": 1, - "evalCommand": 1, - "evalShaCommand": 1, - "slowlogCommand": 1, - "scriptCommand": 2, - "timeCommand": 2, - "bitopCommand": 1, - "bitcountCommand": 1, - "redisLogRaw": 3, - "level": 12, - "syslogLevelMap": 2, - "LOG_DEBUG": 1, - "LOG_INFO": 1, - "LOG_NOTICE": 1, - "LOG_WARNING": 1, - "FILE": 3, - "*fp": 3, - "rawmode": 2, - "REDIS_LOG_RAW": 2, - "xff": 3, - "server.verbosity": 4, - "fp": 13, - "server.logfile": 8, - "fopen": 3, - "msg": 10, - "timeval": 4, - "tv": 8, - "gettimeofday": 4, - "strftime": 1, - "localtime": 1, - "tv.tv_sec": 4, - "snprintf": 2, - "tv.tv_usec/1000": 1, - "getpid": 7, - "server.syslog_enabled": 3, - "syslog": 1, - "redisLog": 33, - "...": 127, - "va_list": 3, - "ap": 4, - "REDIS_MAX_LOGMSG_LEN": 1, - "va_start": 3, - "vsnprintf": 1, - "va_end": 3, - "redisLogFromHandler": 2, - "server.daemonize": 5, - "O_APPEND": 2, - "O_CREAT": 2, - "O_WRONLY": 2, - "STDOUT_FILENO": 2, - "ll2string": 3, - "write": 7, - "time": 10, - "oom": 3, - "REDIS_WARNING": 19, - "sleep": 1, - "abort": 1, - "ustime": 7, - "ust": 7, - "*1000000": 1, - "tv.tv_usec": 3, - "mstime": 5, - "/1000": 1, - "exitFromChild": 1, - "retcode": 3, - "COVERAGE_TEST": 1, - "dictVanillaFree": 1, - "*privdata": 8, - "DICT_NOTUSED": 6, - "privdata": 8, - "zfree": 2, - "dictListDestructor": 2, - "listRelease": 1, - "list*": 1, - "dictSdsKeyCompare": 6, - "*key1": 4, - "*key2": 4, - "l1": 4, - "l2": 3, - "sdslen": 14, - "sds": 13, - "key1": 5, - "key2": 5, - "dictSdsKeyCaseCompare": 2, - "strcasecmp": 13, - "dictRedisObjectDestructor": 7, - "decrRefCount": 6, - "dictSdsDestructor": 4, - "sdsfree": 2, - "dictObjKeyCompare": 2, - "robj": 7, - "*o1": 2, - "*o2": 2, - "o1": 7, - "ptr": 18, - "o2": 7, - "dictObjHash": 2, - "key": 9, - "dictGenHashFunction": 5, - "dictSdsHash": 4, - "dictSdsCaseHash": 2, - "dictGenCaseHashFunction": 1, - "dictEncObjKeyCompare": 4, - "robj*": 3, - "REDIS_ENCODING_INT": 4, - "getDecodedObject": 3, - "dictEncObjHash": 4, - "REDIS_ENCODING_RAW": 1, - "dictType": 8, - "setDictType": 1, - "zsetDictType": 1, - "dbDictType": 2, - "keyptrDictType": 2, - "commandTableDictType": 2, - "hashDictType": 1, - "keylistDictType": 4, - "clusterNodesDictType": 1, - "htNeedsResize": 3, - "dict": 11, - "*dict": 5, - "used": 10, - "dictSlots": 3, - "dictSize": 10, - "DICT_HT_INITIAL_SIZE": 2, - "used*100/size": 1, - "REDIS_HT_MINFILL": 1, - "tryResizeHashTables": 2, - "server.dbnum": 8, - "server.db": 23, - ".dict": 9, - "dictResize": 2, - ".expires": 8, - "incrementallyRehash": 2, - "dictIsRehashing": 2, - "dictRehashMilliseconds": 2, - "updateDictResizePolicy": 2, - "server.rdb_child_pid": 12, - "server.aof_child_pid": 10, - "dictEnableResize": 1, - "dictDisableResize": 1, - "activeExpireCycle": 2, - "iteration": 6, - "start": 10, - "timelimit": 5, - "*REDIS_EXPIRELOOKUPS_TIME_PERC/REDIS_HZ/100": 1, - "expired": 4, - "redisDb": 3, - "expires": 3, - "slots": 2, - "now": 5, - "num*100/slots": 1, - "REDIS_EXPIRELOOKUPS_PER_CRON": 2, - "dictEntry": 2, - "*de": 2, - "de": 12, - "dictGetRandomKey": 4, - "dictGetSignedIntegerVal": 1, - "dictGetKey": 4, - "*keyobj": 2, - "createStringObject": 11, - "propagateExpire": 2, - "keyobj": 6, - "dbDelete": 2, - "server.stat_expiredkeys": 3, - "xf": 1, - "REDIS_EXPIRELOOKUPS_PER_CRON/4": 1, - "updateLRUClock": 3, - "server.lruclock": 2, - "server.unixtime/REDIS_LRU_CLOCK_RESOLUTION": 1, - "REDIS_LRU_CLOCK_MAX": 1, - "trackOperationsPerSecond": 2, - "server.ops_sec_last_sample_time": 3, - "ops": 1, - "server.stat_numcommands": 4, - "server.ops_sec_last_sample_ops": 3, - "ops_sec": 3, - "ops*1000/t": 1, - "server.ops_sec_samples": 4, - "server.ops_sec_idx": 4, - "%": 2, - "REDIS_OPS_SEC_SAMPLES": 3, - "getOperationsPerSecond": 2, - "sum": 3, - "clientsCronHandleTimeout": 2, - "redisClient": 12, - "time_t": 4, - "server.unixtime": 10, - "server.maxidletime": 3, - "REDIS_SLAVE": 3, - "REDIS_MASTER": 2, - "REDIS_BLOCKED": 2, - "pubsub_channels": 2, - "listLength": 14, - "pubsub_patterns": 2, - "lastinteraction": 3, - "REDIS_VERBOSE": 3, - "freeClient": 1, - "bpop.timeout": 2, - "addReply": 13, - "shared.nullmultibulk": 2, - "unblockClientWaitingData": 1, - "clientsCronResizeQueryBuffer": 2, - "querybuf_size": 3, - "sdsAllocSize": 1, - "querybuf": 6, - "idletime": 2, - "REDIS_MBULK_BIG_ARG": 1, - "querybuf_size/": 1, - "querybuf_peak": 2, - "sdsavail": 1, - "sdsRemoveFreeSpace": 1, - "clientsCron": 2, - "numclients": 3, - "server.clients": 7, - "iterations": 4, - "numclients/": 1, - "REDIS_HZ*10": 1, - "listNode": 4, - "*head": 1, - "listRotate": 1, - "head": 3, - "listFirst": 2, - "listNodeValue": 3, - "run_with_period": 6, - "_ms_": 2, - "loops": 2, - "/REDIS_HZ": 2, - "serverCron": 2, - "aeEventLoop": 2, - "*eventLoop": 2, - "*clientData": 1, - "server.cronloops": 3, - "REDIS_NOTUSED": 5, - "eventLoop": 2, - "clientData": 1, - "server.watchdog_period": 3, - "watchdogScheduleSignal": 1, - "zmalloc_used_memory": 8, - "server.stat_peak_memory": 5, - "server.shutdown_asap": 3, - "prepareForShutdown": 2, - "REDIS_OK": 23, - "vkeys": 8, - "server.activerehashing": 2, - "server.slaves": 9, - "server.aof_rewrite_scheduled": 4, - "rewriteAppendOnlyFileBackground": 2, - "statloc": 5, - "wait3": 1, - "WNOHANG": 1, - "exitcode": 3, - "bysignal": 4, - "backgroundSaveDoneHandler": 1, - "backgroundRewriteDoneHandler": 1, - "server.saveparamslen": 3, - "saveparam": 1, - "*sp": 1, - "server.saveparams": 2, - "server.dirty": 3, - "sp": 4, - "changes": 2, - "server.lastsave": 3, - "seconds": 2, - "REDIS_NOTICE": 13, - "rdbSaveBackground": 1, - "server.rdb_filename": 4, - "server.aof_rewrite_perc": 3, - "server.aof_current_size": 2, - "server.aof_rewrite_min_size": 2, - "base": 1, - "server.aof_rewrite_base_size": 4, - "growth": 3, - "server.aof_current_size*100/base": 1, - "server.aof_flush_postponed_start": 2, - "flushAppendOnlyFile": 2, - "server.masterhost": 7, - "freeClientsInAsyncFreeQueue": 1, - "replicationCron": 1, - "server.cluster_enabled": 6, - "clusterCron": 1, - "beforeSleep": 2, - "*ln": 3, - "server.unblocked_clients": 4, - "ln": 8, - "redisAssert": 1, - "listDelNode": 1, - "REDIS_UNBLOCKED": 1, - "server.current_client": 3, - "processInputBuffer": 1, - "createSharedObjects": 2, - "shared.crlf": 2, - "createObject": 31, - "REDIS_STRING": 31, - "sdsnew": 27, - "shared.ok": 3, - "shared.err": 1, - "shared.emptybulk": 1, - "shared.czero": 1, - "shared.cone": 1, - "shared.cnegone": 1, - "shared.nullbulk": 1, - "shared.emptymultibulk": 1, - "shared.pong": 2, - "shared.queued": 2, - "shared.wrongtypeerr": 1, - "shared.nokeyerr": 1, - "shared.syntaxerr": 2, - "shared.sameobjecterr": 1, - "shared.outofrangeerr": 1, - "shared.noscripterr": 1, - "shared.loadingerr": 2, - "shared.slowscripterr": 2, - "shared.masterdownerr": 2, - "shared.bgsaveerr": 2, - "shared.roslaveerr": 2, - "shared.oomerr": 2, - "shared.space": 1, - "shared.colon": 1, - "shared.plus": 1, - "REDIS_SHARED_SELECT_CMDS": 1, - "shared.select": 1, - "sdscatprintf": 24, - "sdsempty": 8, - "shared.messagebulk": 1, - "shared.pmessagebulk": 1, - "shared.subscribebulk": 1, - "shared.unsubscribebulk": 1, - "shared.psubscribebulk": 1, - "shared.punsubscribebulk": 1, - "shared.del": 1, - "shared.rpop": 1, - "shared.lpop": 1, - "REDIS_SHARED_INTEGERS": 1, - "shared.integers": 2, - "void*": 135, - "REDIS_SHARED_BULKHDR_LEN": 1, - "shared.mbulkhdr": 1, - "shared.bulkhdr": 1, - "initServerConfig": 2, - "getRandomHexChars": 1, - "server.runid": 3, - "REDIS_RUN_ID_SIZE": 2, - "server.arch_bits": 3, - "server.port": 7, - "REDIS_SERVERPORT": 1, - "server.bindaddr": 2, - "server.unixsocket": 7, - "server.unixsocketperm": 2, - "server.ipfd": 9, - "server.sofd": 9, - "REDIS_DEFAULT_DBNUM": 1, - "REDIS_MAXIDLETIME": 1, - "server.client_max_querybuf_len": 1, - "REDIS_MAX_QUERYBUF_LEN": 1, - "server.loading": 4, - "server.syslog_ident": 2, - "zstrdup": 5, - "server.syslog_facility": 2, - "LOG_LOCAL0": 1, - "server.aof_state": 7, - "REDIS_AOF_OFF": 5, - "server.aof_fsync": 1, - "AOF_FSYNC_EVERYSEC": 1, - "server.aof_no_fsync_on_rewrite": 1, - "REDIS_AOF_REWRITE_PERC": 1, - "REDIS_AOF_REWRITE_MIN_SIZE": 1, - "server.aof_last_fsync": 1, - "server.aof_rewrite_time_last": 2, - "server.aof_rewrite_time_start": 2, - "server.aof_delayed_fsync": 2, - "server.aof_fd": 4, - "server.aof_selected_db": 1, - "server.pidfile": 3, - "server.aof_filename": 3, - "server.requirepass": 4, - "server.rdb_compression": 1, - "server.rdb_checksum": 1, - "server.maxclients": 6, - "REDIS_MAX_CLIENTS": 1, - "server.bpop_blocked_clients": 2, - "server.maxmemory": 6, - "server.maxmemory_policy": 11, - "REDIS_MAXMEMORY_VOLATILE_LRU": 3, - "server.maxmemory_samples": 3, - "server.hash_max_ziplist_entries": 1, - "REDIS_HASH_MAX_ZIPLIST_ENTRIES": 1, - "server.hash_max_ziplist_value": 1, - "REDIS_HASH_MAX_ZIPLIST_VALUE": 1, - "server.list_max_ziplist_entries": 1, - "REDIS_LIST_MAX_ZIPLIST_ENTRIES": 1, - "server.list_max_ziplist_value": 1, - "REDIS_LIST_MAX_ZIPLIST_VALUE": 1, - "server.set_max_intset_entries": 1, - "REDIS_SET_MAX_INTSET_ENTRIES": 1, - "server.zset_max_ziplist_entries": 1, - "REDIS_ZSET_MAX_ZIPLIST_ENTRIES": 1, - "server.zset_max_ziplist_value": 1, - "REDIS_ZSET_MAX_ZIPLIST_VALUE": 1, - "server.repl_ping_slave_period": 1, - "REDIS_REPL_PING_SLAVE_PERIOD": 1, - "server.repl_timeout": 1, - "REDIS_REPL_TIMEOUT": 1, - "server.cluster.configfile": 1, - "server.lua_caller": 1, - "server.lua_time_limit": 1, - "REDIS_LUA_TIME_LIMIT": 1, - "server.lua_client": 1, - "server.lua_timedout": 2, - "resetServerSaveParams": 2, - "appendServerSaveParams": 3, - "*60": 1, - "server.masterauth": 1, - "server.masterport": 2, - "server.master": 3, - "server.repl_state": 6, - "REDIS_REPL_NONE": 1, - "server.repl_syncio_timeout": 1, - "REDIS_REPL_SYNCIO_TIMEOUT": 1, - "server.repl_serve_stale_data": 2, - "server.repl_slave_ro": 2, - "server.repl_down_since": 2, - "server.client_obuf_limits": 9, - "REDIS_CLIENT_LIMIT_CLASS_NORMAL": 3, - ".hard_limit_bytes": 3, - ".soft_limit_bytes": 3, - ".soft_limit_seconds": 3, - "REDIS_CLIENT_LIMIT_CLASS_SLAVE": 3, - "*1024*256": 1, - "*1024*64": 1, - "REDIS_CLIENT_LIMIT_CLASS_PUBSUB": 3, - "*1024*32": 1, - "*1024*8": 1, - "/R_Zero": 2, - "R_Zero/R_Zero": 1, - "server.commands": 1, - "dictCreate": 6, - "populateCommandTable": 2, - "server.delCommand": 1, - "lookupCommandByCString": 3, - "server.multiCommand": 1, - "server.lpushCommand": 1, - "server.slowlog_log_slower_than": 1, - "REDIS_SLOWLOG_LOG_SLOWER_THAN": 1, - "server.slowlog_max_len": 1, - "REDIS_SLOWLOG_MAX_LEN": 1, - "server.assert_failed": 1, - "server.assert_file": 1, - "server.assert_line": 1, - "server.bug_report_start": 1, - "adjustOpenFilesLimit": 2, - "rlim_t": 3, - "maxfiles": 6, - "rlimit": 1, - "limit": 3, - "getrlimit": 1, - "RLIMIT_NOFILE": 2, - "oldlimit": 5, - "limit.rlim_cur": 2, - "limit.rlim_max": 1, - "setrlimit": 1, - "initServer": 2, - "signal": 2, - "SIGHUP": 1, - "SIG_IGN": 2, - "SIGPIPE": 1, - "setupSignalHandlers": 2, - "openlog": 1, - "LOG_PID": 1, - "LOG_NDELAY": 1, - "LOG_NOWAIT": 1, - "listCreate": 6, - "server.clients_to_close": 1, - "server.monitors": 2, - "server.el": 7, - "aeCreateEventLoop": 1, - "zmalloc": 2, - "*server.dbnum": 1, - "anetTcpServer": 1, - "server.neterr": 4, - "ANET_ERR": 2, - "unlink": 3, - "anetUnixServer": 1, - ".blocking_keys": 1, - ".watched_keys": 1, - ".id": 1, - "server.pubsub_channels": 2, - "server.pubsub_patterns": 4, - "listSetFreeMethod": 1, - "freePubsubPattern": 1, - "listSetMatchMethod": 1, - "listMatchPubsubPattern": 1, - "aofRewriteBufferReset": 1, - "server.aof_buf": 3, - "server.rdb_save_time_last": 2, - "server.rdb_save_time_start": 2, - "server.stat_numconnections": 2, - "server.stat_evictedkeys": 3, - "server.stat_starttime": 2, - "server.stat_keyspace_misses": 2, - "server.stat_keyspace_hits": 2, - "server.stat_fork_time": 2, - "server.stat_rejected_conn": 2, - "server.lastbgsave_status": 3, - "server.stop_writes_on_bgsave_err": 2, - "aeCreateTimeEvent": 1, - "aeCreateFileEvent": 2, - "AE_READABLE": 2, - "acceptTcpHandler": 1, - "AE_ERR": 2, - "acceptUnixHandler": 1, - "REDIS_AOF_ON": 2, - "LL*": 1, - "REDIS_MAXMEMORY_NO_EVICTION": 2, - "clusterInit": 1, - "scriptingInit": 1, - "slowlogInit": 1, - "bioInit": 1, - "numcommands": 5, - "sflags": 1, - "retval": 3, - "arity": 3, - "addReplyErrorFormat": 1, - "authenticated": 3, - "proc": 14, - "addReplyError": 6, - "getkeys_proc": 1, - "firstkey": 1, - "hashslot": 3, - "server.cluster.state": 1, - "REDIS_CLUSTER_OK": 1, - "ask": 3, - "clusterNode": 1, - "*n": 1, - "getNodeByQuery": 1, - "server.cluster.myself": 1, - "addReplySds": 3, - "ip": 4, - "freeMemoryIfNeeded": 2, - "REDIS_CMD_DENYOOM": 1, - "REDIS_ERR": 5, - "REDIS_CMD_WRITE": 2, - "REDIS_REPL_CONNECTED": 3, - "tolower": 2, - "REDIS_MULTI": 1, - "queueMultiCommand": 1, - "call": 1, - "REDIS_CALL_FULL": 1, - "save": 2, - "REDIS_SHUTDOWN_SAVE": 1, - "nosave": 2, - "REDIS_SHUTDOWN_NOSAVE": 1, - "SIGKILL": 2, - "rdbRemoveTempFile": 1, - "aof_fsync": 1, - "rdbSave": 1, - "addReplyBulk": 1, - "addReplyMultiBulkLen": 1, - "addReplyBulkLongLong": 2, - "bytesToHuman": 3, - "*s": 3, - "sprintf": 10, - "n/": 3, - "LL*1024*1024": 2, - "LL*1024*1024*1024": 1, - "genRedisInfoString": 2, - "*section": 2, - "info": 64, - "uptime": 2, - "rusage": 1, - "self_ru": 2, - "c_ru": 2, - "lol": 3, - "bib": 3, - "allsections": 12, - "defsections": 11, - "sections": 11, - "section": 14, - "getrusage": 2, - "RUSAGE_SELF": 1, - "RUSAGE_CHILDREN": 1, - "getClientsMaxBuffers": 1, - "utsname": 1, - "sdscat": 14, - "uname": 1, - "REDIS_VERSION": 4, - "redisGitSHA1": 3, - "strtol": 2, - "redisGitDirty": 3, - "name.sysname": 1, - "name.release": 1, - "name.machine": 1, - "aeGetApiName": 1, - "__GNUC_MINOR__": 2, - "__GNUC_PATCHLEVEL__": 1, - "uptime/": 1, - "*24": 1, - "hmem": 3, - "peak_hmem": 3, - "zmalloc_get_rss": 1, - "lua_gc": 1, - "server.lua": 1, - "LUA_GCCOUNT": 1, - "*1024LL": 1, - "zmalloc_get_fragmentation_ratio": 1, - "ZMALLOC_LIB": 2, - "aofRewriteBufferSize": 2, - "bioPendingJobsOfType": 1, - "REDIS_BIO_AOF_FSYNC": 1, - "perc": 3, - "eta": 4, - "elapsed": 3, - "off_t": 1, - "remaining_bytes": 1, - "server.loading_total_bytes": 3, - "server.loading_loaded_bytes": 3, - "server.loading_start_time": 2, - "elapsed*remaining_bytes": 1, - "/server.loading_loaded_bytes": 1, - "REDIS_REPL_TRANSFER": 2, - "server.repl_transfer_left": 1, - "server.repl_transfer_lastio": 1, - "slaveid": 3, - "listIter": 2, - "li": 6, - "listRewind": 2, - "listNext": 2, - "*slave": 2, - "*state": 1, - "anetPeerToString": 1, - "slave": 3, - "replstate": 1, - "REDIS_REPL_WAIT_BGSAVE_START": 1, - "REDIS_REPL_WAIT_BGSAVE_END": 1, - "REDIS_REPL_SEND_BULK": 1, - "REDIS_REPL_ONLINE": 1, - "float": 26, - "self_ru.ru_stime.tv_sec": 1, - "self_ru.ru_stime.tv_usec/1000000": 1, - "self_ru.ru_utime.tv_sec": 1, - "self_ru.ru_utime.tv_usec/1000000": 1, - "c_ru.ru_stime.tv_sec": 1, - "c_ru.ru_stime.tv_usec/1000000": 1, - "c_ru.ru_utime.tv_sec": 1, - "c_ru.ru_utime.tv_usec/1000000": 1, - "calls": 4, - "microseconds": 1, - "microseconds/c": 1, - "keys": 4, - "REDIS_MONITOR": 1, - "slaveseldb": 1, - "listAddNodeTail": 1, - "mem_used": 9, - "mem_tofree": 3, - "mem_freed": 4, - "slaves": 3, - "obuf_bytes": 3, - "getClientOutputBufferMemoryUsage": 1, - "k": 15, - "keys_freed": 3, - "bestval": 5, - "bestkey": 9, - "REDIS_MAXMEMORY_ALLKEYS_LRU": 2, - "REDIS_MAXMEMORY_ALLKEYS_RANDOM": 2, - "REDIS_MAXMEMORY_VOLATILE_RANDOM": 1, - "thiskey": 7, - "thisval": 8, - "dictFind": 1, - "dictGetVal": 2, - "estimateObjectIdleTime": 1, - "REDIS_MAXMEMORY_VOLATILE_TTL": 1, - "flushSlavesOutputBuffers": 1, - "linuxOvercommitMemoryValue": 2, - "fgets": 1, - "atoi": 3, - "linuxOvercommitMemoryWarning": 2, - "createPidFile": 2, - "daemonize": 2, - "STDIN_FILENO": 1, - "STDERR_FILENO": 2, - "version": 4, - "usage": 2, - "redisAsciiArt": 2, - "*16": 2, - "ascii_logo": 1, - "sigtermHandler": 2, - "sig": 2, - "sigaction": 6, - "act": 6, - "sigemptyset": 2, - "act.sa_mask": 2, - "act.sa_flags": 2, - "act.sa_handler": 1, - "SIGTERM": 1, - "HAVE_BACKTRACE": 1, - "SA_NODEFER": 1, - "SA_RESETHAND": 1, - "SA_SIGINFO": 1, - "act.sa_sigaction": 1, - "sigsegvHandler": 1, - "SIGSEGV": 1, - "SIGBUS": 1, - "SIGFPE": 1, - "SIGILL": 1, - "memtest": 2, - "megabytes": 1, - "passes": 1, - "zmalloc_enable_thread_safeness": 1, - "srand": 1, - "dictSetHashFunctionSeed": 1, - "*configfile": 1, - "configfile": 2, - "sdscatrepr": 1, - "loadServerConfig": 1, - "loadAppendOnlyFile": 1, - "/1000000": 2, - "rdbLoad": 1, - "aeSetBeforeSleepProc": 1, - "aeMain": 1, - "aeDeleteEventLoop": 1, - "": 1, - "": 2, - "": 2, - "rfUTF8_IsContinuationbyte": 1, - "e.t.c.": 1, - "rfFReadLine_UTF8": 5, - "FILE*": 64, - "utf8": 36, - "uint32_t*": 34, - "byteLength": 197, - "bufferSize": 6, - "eof": 53, - "bytesN": 98, - "bIndex": 5, - "RF_NEWLINE_CRLF": 1, - "newLineFound": 1, - "*bufferSize": 1, - "RF_OPTION_FGETS_READBYTESN": 5, - "RF_MALLOC": 47, - "tempBuff": 6, - "RF_LF": 10, - "buff": 95, - "RF_SUCCESS": 14, - "RE_FILE_EOF": 22, - "found": 20, - "*eofReached": 14, - "LOG_ERROR": 64, - "RF_HEXEQ_UI": 7, - "rfFgetc_UTF32BE": 3, - "else//": 14, - "undo": 5, - "peek": 5, - "ahead": 5, - "file": 6, - "pointer": 5, - "fseek": 19, - "SEEK_CUR": 19, - "rfFgets_UTF32LE": 2, - "eofReached": 4, - "rfFgetc_UTF32LE": 4, - "rfFgets_UTF16BE": 2, - "rfFgetc_UTF16BE": 4, - "rfFgets_UTF16LE": 2, - "rfFgetc_UTF16LE": 4, - "rfFgets_UTF8": 2, - "rfFgetc_UTF8": 3, - "RF_HEXEQ_C": 9, - "fgetc": 9, - "check": 8, - "RE_FILE_READ": 2, - "cp": 12, - "c2": 13, - "c3": 9, - "c4": 5, - "i_READ_CHECK": 20, - "///": 4, - "success": 4, - "cc": 24, - "we": 10, - "more": 2, - "bytes": 225, - "xC0": 3, - "xC1": 1, - "RE_UTF8_INVALID_SEQUENCE_INVALID_BYTE": 6, - "RE_UTF8_INVALID_SEQUENCE_END": 6, - "rfUTF8_IsContinuationByte": 12, - "RE_UTF8_INVALID_SEQUENCE_CONBYTE": 6, - "decoded": 3, - "codepoint": 47, - "F": 38, - "xE0": 2, - "xF": 5, - "decode": 6, - "xF0": 2, - "RF_HEXGE_C": 1, - "xBF": 2, - "//invalid": 1, - "byte": 6, - "are": 6, - "xFF": 1, - "//if": 1, - "needing": 1, - "than": 5, - "swapE": 21, - "v1": 38, - "v2": 26, - "rfUTILS_Endianess": 24, - "RF_LITTLE_ENDIAN": 23, - "fread": 12, - "endianess": 40, - "needed": 10, - "rfUTILS_SwapEndianUS": 10, - "RF_HEXGE_US": 4, - "xD800": 8, - "RF_HEXLE_US": 4, - "xDFFF": 8, - "RF_HEXL_US": 8, - "RF_HEXG_US": 8, - "xDBFF": 4, - "RE_UTF16_INVALID_SEQUENCE": 20, - "RE_UTF16_NO_SURRPAIR": 2, - "xDC00": 4, - "user": 2, - "wants": 2, - "ff": 10, - "uint16_t*": 11, - "surrogate": 4, - "pair": 4, - "existence": 2, - "RF_BIG_ENDIAN": 10, - "rfUTILS_SwapEndianUI": 11, - "rfFback_UTF32BE": 2, - "i_FSEEK_CHECK": 14, - "rfFback_UTF32LE": 2, - "rfFback_UTF16BE": 2, - "rfFback_UTF16LE": 2, - "rfFback_UTF8": 2, - "depending": 1, - "number": 19, - "read": 1, - "backwards": 1, - "RE_UTF8_INVALID_SEQUENCE": 2, - "REFU_IO_H": 2, - "": 2, - "opening": 2, - "bracket": 4, - "calling": 4, - "C": 14, - "xA": 1, - "RF_CR": 1, - "xD": 1, - "REFU_WIN32_VERSION": 1, - "i_PLUSB_WIN32": 2, - "foff_rft": 2, - "off64_t": 1, - "///Fseek": 1, - "and": 15, - "Ftelll": 1, - "definitions": 1, - "rfFseek": 2, - "i_FILE_": 16, - "i_OFFSET_": 4, - "i_WHENCE_": 4, - "_fseeki64": 1, - "rfFtell": 2, - "_ftelli64": 1, - "fseeko64": 1, - "ftello64": 1, - "i_DECLIMEX_": 121, - "rfFReadLine_UTF16BE": 6, - "rfFReadLine_UTF16LE": 4, - "rfFReadLine_UTF32BE": 1, - "rfFReadLine_UTF32LE": 4, - "rfFgets_UTF32BE": 1, - "RF_IAMHERE_FOR_DOXYGEN": 22, - "rfPopen": 2, - "command": 2, - "i_rfPopen": 2, - "i_CMD_": 2, - "i_MODE_": 2, - "i_rfLMS_WRAP2": 5, - "rfPclose": 1, - "stream": 3, - "///closing": 1, - "#endif//include": 1, - "guards": 2, - "": 1, - "": 2, - "local": 5, - "stack": 6, - "memory": 4, - "RF_OPTION_DEFAULT_ARGUMENTS": 24, - "RF_String*": 222, - "rfString_Create": 4, - "i_rfString_Create": 3, - "READ_VSNPRINTF_ARGS": 5, - "rfUTF8_VerifySequence": 7, - "RF_FAILURE": 24, - "RE_STRING_INIT_FAILURE": 8, - "buffAllocated": 11, - "RF_String": 27, - "i_NVrfString_Create": 3, - "i_rfString_CreateLocal1": 3, - "RF_OPTION_SOURCE_ENCODING": 30, - "RF_UTF8": 8, - "characterLength": 16, - "*codepoints": 2, - "rfLMS_MacroEvalPtr": 2, - "RF_LMS": 6, - "RF_UTF16_LE": 9, - "RF_UTF16_BE": 7, - "codepoints": 44, - "i/2": 2, - "#elif": 14, - "RF_UTF32_LE": 3, - "RF_UTF32_BE": 3, - "UTF16": 4, - "rfUTF16_Decode": 5, - "rfUTF16_Decode_swap": 5, - "RF_UTF16_BE//": 2, - "RF_UTF32_LE//": 2, - "copy": 4, - "UTF32": 4, - "into": 8, - "RF_UTF32_BE//": 2, - "": 2, - "any": 3, - "other": 16, - "UTF": 17, - "8": 15, - "encode": 2, - "them": 3, - "rfUTF8_Encode": 4, - "While": 2, - "attempting": 2, - "create": 2, - "temporary": 4, - "given": 5, - "sequence": 6, - "could": 2, - "not": 6, - "be": 6, - "properly": 2, - "encoded": 2, - "RE_UTF8_ENCODING": 2, - "End": 2, - "Non": 2, - "code=": 2, - "normally": 1, - "since": 5, - "here": 5, - "have": 2, - "validity": 2, - "get": 4, - "Error": 2, - "at": 3, - "String": 11, - "Allocation": 2, - "due": 2, - "invalid": 2, - "rfLMS_Push": 4, - "Memory": 4, - "allocation": 3, - "Local": 2, - "Stack": 2, - "failed": 2, - "Insufficient": 2, - "space": 4, - "Consider": 2, - "compiling": 2, - "library": 3, - "with": 9, - "bigger": 3, - "Quitting": 2, - "proccess": 2, - "RE_LOCALMEMSTACK_INSUFFICIENT": 8, - "i_NVrfString_CreateLocal": 3, - "during": 1, - "rfString_Init": 3, - "i_rfString_Init": 3, - "i_NVrfString_Init": 3, - "rfString_Create_cp": 2, - "rfString_Init_cp": 3, - "RF_HEXLE_UI": 8, - "RF_HEXGE_UI": 6, - "C0": 3, - "ffff": 4, - "xFC0": 4, - "xF000": 2, - "xE": 2, - "F000": 2, - "C0000": 2, - "E": 11, - "RE_UTF8_INVALID_CODE_POINT": 2, - "rfString_Create_i": 2, - "numLen": 8, - "max": 4, - "is": 17, - "most": 3, - "environment": 3, - "so": 4, - "chars": 3, - "will": 3, - "certainly": 3, - "fit": 3, - "it": 12, - "strcpy": 4, - "rfString_Init_i": 2, - "rfString_Create_f": 2, - "rfString_Init_f": 2, - "rfString_Create_UTF16": 2, - "rfString_Init_UTF16": 3, - "utf8ByteLength": 34, - "last": 1, - "utf": 1, - "null": 4, - "termination": 3, - "byteLength*2": 1, - "allocate": 1, - "same": 1, - "as": 4, - "different": 1, - "RE_INPUT": 1, - "ends": 3, - "rfString_Create_UTF32": 2, - "rfString_Init_UTF32": 3, - "codeBuffer": 9, - "xFEFF": 1, - "big": 14, - "endian": 20, - "xFFFE0000": 1, - "little": 7, - "according": 1, - "standard": 1, - "no": 4, - "BOM": 1, - "means": 1, - "rfUTF32_Length": 1, - "i_rfString_Assign": 3, - "dest": 7, - "sourceP": 2, - "source": 8, - "RF_REALLOC": 9, - "rfString_Assign_char": 2, - "<5)>": 1, - "rfString_Create_nc": 3, - "i_rfString_Create_nc": 3, - "bytesWritten": 2, - "i_NVrfString_Create_nc": 3, - "rfString_Init_nc": 4, - "i_rfString_Init_nc": 3, - "i_NVrfString_Init_nc": 3, - "rfString_Destroy": 2, - "rfString_Deinit": 3, - "rfString_ToUTF16": 4, - "charsN": 5, - "rfUTF8_Decode": 2, - "rfUTF16_Encode": 1, - "rfString_ToUTF32": 4, - "rfString_Length": 5, - "RF_STRING_ITERATE_START": 9, - "RF_STRING_ITERATE_END": 9, - "rfString_GetChar": 2, - "thisstr": 210, - "codePoint": 18, - "RF_STRING_INDEX_OUT_OF_BOUNDS": 2, - "rfString_BytePosToCodePoint": 7, - "rfString_BytePosToCharPos": 4, - "thisstrP": 32, - "bytepos": 12, - "before": 4, - "charPos": 8, - "byteI": 7, - "i_rfString_Equal": 3, - "s1P": 2, - "s2P": 2, - "i_rfString_Find": 5, - "sstrP": 6, - "optionsP": 11, - "sstr": 39, - "*optionsP": 8, - "RF_BITFLAG_ON": 5, - "RF_CASE_IGNORE": 2, - "strstr": 2, - "RF_MATCH_WORD": 5, - "exact": 6, - "": 1, - "0x5a": 1, - "0x7a": 1, - "substring": 5, - "search": 1, - "zero": 2, - "equals": 1, - "then": 1, - "okay": 1, - "rfString_Equal": 4, - "RFS_": 8, - "ERANGE": 1, - "RE_STRING_TOFLOAT_UNDERFLOW": 1, - "RE_STRING_TOFLOAT": 1, - "rfString_Copy_OUT": 2, - "srcP": 6, - "rfString_Copy_IN": 2, - "dst": 15, - "rfString_Copy_chars": 2, - "bytePos": 23, - "terminate": 1, - "i_rfString_ScanfAfter": 3, - "afterstrP": 2, - "format": 4, - "afterstr": 5, - "sscanf": 1, - "<=0)>": 1, - "Counts": 1, - "how": 1, - "many": 1, - "times": 1, - "occurs": 1, - "inside": 2, - "i_rfString_Count": 5, - "sstr2": 2, - "move": 12, - "rfString_FindBytePos": 10, - "rfString_Tokenize": 2, - "sep": 3, - "tokensN": 2, - "RF_String**": 2, - "*tokensN": 1, - "rfString_Count": 4, - "lstr": 6, - "lstrP": 1, - "rstr": 24, - "rstrP": 5, - "rfString_After": 4, - "rfString_Beforev": 4, - "parNP": 6, - "i_rfString_Beforev": 16, - "parN": 10, - "*parNP": 2, - "minPos": 17, - "thisPos": 8, - "argList": 8, - "va_arg": 2, - "i_rfString_Before": 5, - "i_rfString_After": 5, - "afterP": 2, - "after": 6, - "rfString_Afterv": 4, - "i_rfString_Afterv": 16, - "minPosLength": 3, - "go": 8, - "i_rfString_Append": 3, - "otherP": 4, - "strncat": 1, - "rfString_Append_i": 2, - "rfString_Append_f": 2, - "i_rfString_Prepend": 3, - "goes": 1, - "i_rfString_Remove": 6, - "numberP": 1, - "*numberP": 1, - "occurences": 5, - "done": 1, - "<=thisstr->": 1, - "i_rfString_KeepOnly": 3, - "keepstrP": 2, - "keepLength": 2, - "charValue": 12, - "*keepChars": 1, - "keepstr": 5, - "exists": 6, - "charBLength": 5, - "keepChars": 4, - "*keepLength": 1, - "rfString_Iterate_Start": 6, - "rfString_Iterate_End": 4, - "": 1, - "does": 1, - "exist": 2, - "back": 1, - "cover": 1, - "that": 9, - "effectively": 1, - "gets": 1, - "deleted": 1, - "rfUTF8_FromCodepoint": 1, - "this": 5, - "kind": 1, - "non": 1, - "clean": 1, - "way": 1, - "macro": 2, - "internally": 1, - "uses": 1, - "byteIndex_": 12, - "variable": 1, - "use": 1, - "determine": 1, - "backs": 1, - "by": 1, - "contiuing": 1, - "make": 3, - "sure": 2, - "position": 1, - "won": 1, - "array": 1, - "rfString_PruneStart": 2, - "nBytePos": 23, - "rfString_PruneEnd": 2, - "RF_STRING_ITERATEB_START": 2, - "RF_STRING_ITERATEB_END": 2, - "rfString_PruneMiddleB": 2, - "pBytePos": 15, - "indexing": 1, - "works": 1, - "pbytePos": 2, - "pth": 2, - "include": 6, - "rfString_PruneMiddleF": 2, - "got": 1, - "all": 2, - "i_rfString_Replace": 6, - "numP": 1, - "*numP": 1, - "RF_StringX": 2, - "just": 1, - "finding": 1, - "foundN": 10, - "bSize": 4, - "bytePositions": 17, - "bSize*sizeof": 1, - "rfStringX_FromString_IN": 1, - "temp.bIndex": 2, - "temp.bytes": 1, - "temp.byteLength": 1, - "rfStringX_Deinit": 1, - "replace": 3, - "removed": 2, - "one": 2, - "orSize": 5, - "nSize": 4, - "number*diff": 1, - "strncpy": 3, - "smaller": 1, - "diff*number": 1, - "remove": 1, - "equal": 1, - "i_rfString_StripStart": 3, - "subP": 7, - "RF_String*sub": 2, - "noMatch": 8, - "*subValues": 2, - "subLength": 6, - "subValues": 8, - "*subLength": 2, - "i_rfString_StripEnd": 3, - "lastBytePos": 4, - "testity": 2, - "i_rfString_Strip": 3, - "res1": 2, - "rfString_StripStart": 3, - "res2": 2, - "rfString_StripEnd": 3, - "rfString_Create_fUTF8": 2, - "rfString_Init_fUTF8": 3, - "unused": 3, - "rfString_Assign_fUTF8": 2, - "FILE*f": 2, - "utf8BufferSize": 4, - "function": 6, - "rfString_Append_fUTF8": 2, - "rfString_Append": 5, - "rfString_Create_fUTF16": 2, - "rfString_Init_fUTF16": 3, - "rfString_Assign_fUTF16": 2, - "rfString_Append_fUTF16": 2, - "char*utf8": 3, - "rfString_Create_fUTF32": 2, - "rfString_Init_fUTF32": 3, - "<0)>": 1, - "Failure": 1, - "initialize": 1, - "reading": 1, - "Little": 1, - "Endian": 1, - "32": 1, - "bytesN=": 1, - "rfString_Assign_fUTF32": 2, - "rfString_Append_fUTF32": 2, - "i_rfString_Fwrite": 5, - "sP": 2, - "encodingP": 1, - "*utf32": 1, - "utf16": 11, - "*encodingP": 1, - "fwrite": 5, - "logging": 5, - "utf32": 10, - "i_WRITE_CHECK": 1, - "RE_FILE_WRITE": 1, - "REFU_USTRING_H": 2, - "": 1, - "RF_MODULE_STRINGS//": 1, - "included": 2, - "module": 3, - "": 1, - "argument": 1, - "wrapping": 1, - "functionality": 1, - "": 1, - "unicode": 2, - "xFF0FFFF": 1, - "rfUTF8_IsContinuationByte2": 1, - "b__": 3, - "0xBF": 1, - "pragma": 1, - "pack": 2, - "push": 1, - "internal": 4, - "author": 1, - "Lefteris": 1, - "09": 1, - "12": 1, - "2010": 1, - "endinternal": 1, - "brief": 1, - "A": 11, - "representation": 2, - "The": 1, - "Refu": 2, - "Unicode": 1, - "has": 2, - "two": 1, - "versions": 1, - "One": 1, - "ref": 1, - "what": 1, - "operations": 1, - "can": 2, - "performed": 1, - "extended": 3, - "Strings": 2, - "Functions": 1, - "convert": 1, - "but": 1, - "always": 2, - "Once": 1, - "been": 1, - "created": 1, - "assumed": 1, - "valid": 1, - "every": 1, - "performs": 1, - "unless": 1, - "otherwise": 1, - "specified": 1, - "All": 1, - "functions": 2, - "which": 1, - "isinherited": 1, - "StringX": 2, - "their": 1, - "description": 1, - "safely": 1, - "specific": 1, - "or": 1, - "needs": 1, - "manipulate": 1, - "Extended": 1, - "To": 1, - "documentation": 1, - "even": 1, - "clearer": 1, - "should": 2, - "marked": 1, - "notinherited": 1, - "cppcode": 1, - "constructor": 1, - "i_StringCHandle": 1, - "@endcpp": 1, - "@endinternal": 1, - "*/": 1, - "#pragma": 1, - "pop": 1, - "i_rfString_CreateLocal": 2, - "__VA_ARGS__": 66, - "RP_SELECT_FUNC_IF_NARGIS": 5, - "i_SELECT_RF_STRING_CREATE": 1, - "i_SELECT_RF_STRING_CREATE1": 1, - "i_SELECT_RF_STRING_CREATE0": 1, - "///Internal": 1, - "creates": 1, - "i_SELECT_RF_STRING_CREATELOCAL": 1, - "i_SELECT_RF_STRING_CREATELOCAL1": 1, - "i_SELECT_RF_STRING_CREATELOCAL0": 1, - "i_SELECT_RF_STRING_INIT": 1, - "i_SELECT_RF_STRING_INIT1": 1, - "i_SELECT_RF_STRING_INIT0": 1, - "code": 6, - "i_SELECT_RF_STRING_CREATE_NC": 1, - "i_SELECT_RF_STRING_CREATE_NC1": 1, - "i_SELECT_RF_STRING_CREATE_NC0": 1, - "i_SELECT_RF_STRING_INIT_NC": 1, - "i_SELECT_RF_STRING_INIT_NC1": 1, - "i_SELECT_RF_STRING_INIT_NC0": 1, - "//@": 1, - "rfString_Assign": 2, - "i_DESTINATION_": 2, - "i_SOURCE_": 2, - "rfString_ToUTF8": 2, - "i_STRING_": 2, - "rfString_ToCstr": 2, - "uint32_t*length": 1, - "string_": 9, - "startCharacterPos_": 4, - "characterUnicodeValue_": 4, - "j_": 6, - "//Two": 1, - "macros": 1, - "accomplish": 1, - "going": 1, - "backwards.": 1, - "This": 1, - "its": 1, - "pair.": 1, - "rfString_IterateB_Start": 1, - "characterPos_": 5, - "b_index_": 6, - "c_index_": 3, - "rfString_IterateB_End": 1, - "i_STRING1_": 2, - "i_STRING2_": 2, - "i_rfLMSX_WRAP2": 4, - "rfString_Find": 3, - "i_THISSTR_": 60, - "i_SEARCHSTR_": 26, - "i_OPTIONS_": 28, - "i_rfLMS_WRAP3": 4, - "i_RFI8_": 54, - "RF_SELECT_FUNC_IF_NARGGT": 10, - "i_NPSELECT_RF_STRING_FIND": 1, - "i_NPSELECT_RF_STRING_FIND1": 1, - "RF_COMPILE_ERROR": 33, - "i_NPSELECT_RF_STRING_FIND0": 1, - "RF_SELECT_FUNC": 10, - "i_SELECT_RF_STRING_FIND": 1, - "i_SELECT_RF_STRING_FIND2": 1, - "i_SELECT_RF_STRING_FIND3": 1, - "i_SELECT_RF_STRING_FIND1": 1, - "i_SELECT_RF_STRING_FIND0": 1, - "rfString_ToInt": 1, - "int32_t*": 1, - "rfString_ToDouble": 1, - "double*": 1, - "rfString_ScanfAfter": 2, - "i_AFTERSTR_": 8, - "i_FORMAT_": 2, - "i_VAR_": 2, - "i_rfLMSX_WRAP4": 11, - "i_NPSELECT_RF_STRING_COUNT": 1, - "i_NPSELECT_RF_STRING_COUNT1": 1, - "i_NPSELECT_RF_STRING_COUNT0": 1, - "i_SELECT_RF_STRING_COUNT": 1, - "i_SELECT_RF_STRING_COUNT2": 1, - "i_rfLMSX_WRAP3": 5, - "i_SELECT_RF_STRING_COUNT3": 1, - "i_SELECT_RF_STRING_COUNT1": 1, - "i_SELECT_RF_STRING_COUNT0": 1, - "rfString_Between": 3, - "i_rfString_Between": 4, - "i_NPSELECT_RF_STRING_BETWEEN": 1, - "i_NPSELECT_RF_STRING_BETWEEN1": 1, - "i_NPSELECT_RF_STRING_BETWEEN0": 1, - "i_SELECT_RF_STRING_BETWEEN": 1, - "i_SELECT_RF_STRING_BETWEEN4": 1, - "i_LEFTSTR_": 6, - "i_RIGHTSTR_": 6, - "i_RESULT_": 12, - "i_rfLMSX_WRAP5": 9, - "i_SELECT_RF_STRING_BETWEEN5": 1, - "i_SELECT_RF_STRING_BETWEEN3": 1, - "i_SELECT_RF_STRING_BETWEEN2": 1, - "i_SELECT_RF_STRING_BETWEEN1": 1, - "i_SELECT_RF_STRING_BETWEEN0": 1, - "i_NPSELECT_RF_STRING_BEFOREV": 1, - "i_NPSELECT_RF_STRING_BEFOREV1": 1, - "RF_SELECT_FUNC_IF_NARGGT2": 2, - "i_LIMSELECT_RF_STRING_BEFOREV": 1, - "i_NPSELECT_RF_STRING_BEFOREV0": 1, - "i_LIMSELECT_RF_STRING_BEFOREV1": 1, - "i_LIMSELECT_RF_STRING_BEFOREV0": 1, - "i_SELECT_RF_STRING_BEFOREV": 1, - "i_SELECT_RF_STRING_BEFOREV5": 1, - "i_ARG1_": 56, - "i_ARG2_": 56, - "i_ARG3_": 56, - "i_ARG4_": 56, - "i_RFUI8_": 28, - "i_SELECT_RF_STRING_BEFOREV6": 1, - "i_rfLMSX_WRAP6": 2, - "i_SELECT_RF_STRING_BEFOREV7": 1, - "i_rfLMSX_WRAP7": 2, - "i_SELECT_RF_STRING_BEFOREV8": 1, - "i_rfLMSX_WRAP8": 2, - "i_SELECT_RF_STRING_BEFOREV9": 1, - "i_rfLMSX_WRAP9": 2, - "i_SELECT_RF_STRING_BEFOREV10": 1, - "i_rfLMSX_WRAP10": 2, - "i_SELECT_RF_STRING_BEFOREV11": 1, - "i_rfLMSX_WRAP11": 2, - "i_SELECT_RF_STRING_BEFOREV12": 1, - "i_rfLMSX_WRAP12": 2, - "i_SELECT_RF_STRING_BEFOREV13": 1, - "i_rfLMSX_WRAP13": 2, - "i_SELECT_RF_STRING_BEFOREV14": 1, - "i_rfLMSX_WRAP14": 2, - "i_SELECT_RF_STRING_BEFOREV15": 1, - "i_rfLMSX_WRAP15": 2, - "i_SELECT_RF_STRING_BEFOREV16": 1, - "i_rfLMSX_WRAP16": 2, - "i_SELECT_RF_STRING_BEFOREV17": 1, - "i_rfLMSX_WRAP17": 2, - "i_SELECT_RF_STRING_BEFOREV18": 1, - "i_rfLMSX_WRAP18": 2, - "rfString_Before": 3, - "i_NPSELECT_RF_STRING_BEFORE": 1, - "i_NPSELECT_RF_STRING_BEFORE1": 1, - "i_NPSELECT_RF_STRING_BEFORE0": 1, - "i_SELECT_RF_STRING_BEFORE": 1, - "i_SELECT_RF_STRING_BEFORE3": 1, - "i_SELECT_RF_STRING_BEFORE4": 1, - "i_SELECT_RF_STRING_BEFORE2": 1, - "i_SELECT_RF_STRING_BEFORE1": 1, - "i_SELECT_RF_STRING_BEFORE0": 1, - "i_NPSELECT_RF_STRING_AFTER": 1, - "i_NPSELECT_RF_STRING_AFTER1": 1, - "i_NPSELECT_RF_STRING_AFTER0": 1, - "i_SELECT_RF_STRING_AFTER": 1, - "i_SELECT_RF_STRING_AFTER3": 1, - "i_OUTSTR_": 6, - "i_SELECT_RF_STRING_AFTER4": 1, - "i_SELECT_RF_STRING_AFTER2": 1, - "i_SELECT_RF_STRING_AFTER1": 1, - "i_SELECT_RF_STRING_AFTER0": 1, - "i_NPSELECT_RF_STRING_AFTERV": 1, - "i_NPSELECT_RF_STRING_AFTERV1": 1, - "i_LIMSELECT_RF_STRING_AFTERV": 1, - "i_NPSELECT_RF_STRING_AFTERV0": 1, - "i_LIMSELECT_RF_STRING_AFTERV1": 1, - "i_LIMSELECT_RF_STRING_AFTERV0": 1, - "i_SELECT_RF_STRING_AFTERV": 1, - "i_SELECT_RF_STRING_AFTERV5": 1, - "i_SELECT_RF_STRING_AFTERV6": 1, - "i_SELECT_RF_STRING_AFTERV7": 1, - "i_SELECT_RF_STRING_AFTERV8": 1, - "i_SELECT_RF_STRING_AFTERV9": 1, - "i_SELECT_RF_STRING_AFTERV10": 1, - "i_SELECT_RF_STRING_AFTERV11": 1, - "i_SELECT_RF_STRING_AFTERV12": 1, - "i_SELECT_RF_STRING_AFTERV13": 1, - "i_SELECT_RF_STRING_AFTERV14": 1, - "i_SELECT_RF_STRING_AFTERV15": 1, - "i_SELECT_RF_STRING_AFTERV16": 1, - "i_SELECT_RF_STRING_AFTERV17": 1, - "i_SELECT_RF_STRING_AFTERV18": 1, - "i_OTHERSTR_": 4, - "rfString_Prepend": 2, - "rfString_Remove": 3, - "i_NPSELECT_RF_STRING_REMOVE": 1, - "i_NPSELECT_RF_STRING_REMOVE1": 1, - "i_NPSELECT_RF_STRING_REMOVE0": 1, - "i_SELECT_RF_STRING_REMOVE": 1, - "i_SELECT_RF_STRING_REMOVE2": 1, - "i_REPSTR_": 16, - "i_RFUI32_": 8, - "i_SELECT_RF_STRING_REMOVE3": 1, - "i_NUMBER_": 12, - "i_SELECT_RF_STRING_REMOVE4": 1, - "i_SELECT_RF_STRING_REMOVE1": 1, - "i_SELECT_RF_STRING_REMOVE0": 1, - "rfString_KeepOnly": 2, - "I_KEEPSTR_": 2, - "rfString_Replace": 3, - "i_NPSELECT_RF_STRING_REPLACE": 1, - "i_NPSELECT_RF_STRING_REPLACE1": 1, - "i_NPSELECT_RF_STRING_REPLACE0": 1, - "i_SELECT_RF_STRING_REPLACE": 1, - "i_SELECT_RF_STRING_REPLACE3": 1, - "i_SELECT_RF_STRING_REPLACE4": 1, - "i_SELECT_RF_STRING_REPLACE5": 1, - "i_SELECT_RF_STRING_REPLACE2": 1, - "i_SELECT_RF_STRING_REPLACE1": 1, - "i_SELECT_RF_STRING_REPLACE0": 1, - "i_SUBSTR_": 6, - "rfString_Strip": 2, - "rfString_Fwrite": 2, - "i_NPSELECT_RF_STRING_FWRITE": 1, - "i_NPSELECT_RF_STRING_FWRITE1": 1, - "i_NPSELECT_RF_STRING_FWRITE0": 1, - "i_SELECT_RF_STRING_FWRITE": 1, - "i_SELECT_RF_STRING_FWRITE3": 1, - "i_STR_": 8, - "i_ENCODING_": 4, - "i_SELECT_RF_STRING_FWRITE2": 1, - "i_SELECT_RF_STRING_FWRITE1": 1, - "i_SELECT_RF_STRING_FWRITE0": 1, - "rfString_Fwrite_fUTF8": 1, - "closing": 1, + "__wglew_h__": 2, + "__WGLEW_H__": 1, + "__wglext_h_": 2, "#error": 4, - "Attempted": 1, - "manipulation": 1, - "flag": 1, - "off.": 1, - "Rebuild": 1, - "added": 1, - "you": 1, - "#endif//": 1, + "wglext.h": 1, + "included": 2, + "before": 4, + "wglew.h": 1, + "WINAPI": 119, + "": 1, + "GLEW_STATIC": 1, + "__cplusplus": 20, + "WGL_3DFX_multisample": 2, + "WGL_SAMPLE_BUFFERS_3DFX": 1, + "WGL_SAMPLES_3DFX": 1, + "WGLEW_3DFX_multisample": 1, + "WGLEW_GET_VAR": 49, + "__WGLEW_3DFX_multisample": 2, + "WGL_3DL_stereo_control": 2, + "WGL_STEREO_EMITTER_ENABLE_3DL": 1, + "WGL_STEREO_EMITTER_DISABLE_3DL": 1, + "WGL_STEREO_POLARITY_NORMAL_3DL": 1, + "WGL_STEREO_POLARITY_INVERT_3DL": 1, + "BOOL": 84, + "PFNWGLSETSTEREOEMITTERSTATE3DLPROC": 2, + "HDC": 65, + "hDC": 33, + "UINT": 30, + "uState": 1, + "wglSetStereoEmitterState3DL": 1, + "WGLEW_GET_FUN": 120, + "__wglewSetStereoEmitterState3DL": 2, + "WGLEW_3DL_stereo_control": 1, + "__WGLEW_3DL_stereo_control": 2, + "WGL_AMD_gpu_association": 2, + "WGL_GPU_VENDOR_AMD": 1, + "F00": 1, + "WGL_GPU_RENDERER_STRING_AMD": 1, + "F01": 1, + "WGL_GPU_OPENGL_VERSION_STRING_AMD": 1, + "F02": 1, + "WGL_GPU_FASTEST_TARGET_GPUS_AMD": 1, + "A2": 2, + "WGL_GPU_RAM_AMD": 1, + "A3": 2, + "WGL_GPU_CLOCK_AMD": 1, + "A4": 2, + "WGL_GPU_NUM_PIPES_AMD": 1, + "A5": 3, + "WGL_GPU_NUM_SIMD_AMD": 1, + "A6": 2, + "WGL_GPU_NUM_RB_AMD": 1, + "A7": 2, + "WGL_GPU_NUM_SPI_AMD": 1, + "A8": 2, + "VOID": 6, + "PFNWGLBLITCONTEXTFRAMEBUFFERAMDPROC": 2, + "HGLRC": 14, + "dstCtx": 1, + "GLint": 18, + "srcX0": 1, + "srcY0": 1, + "srcX1": 1, + "srcY1": 1, + "dstX0": 1, + "dstY0": 1, + "dstX1": 1, + "dstY1": 1, + "GLbitfield": 1, + "mask": 1, + "GLenum": 8, + "filter": 1, + "PFNWGLCREATEASSOCIATEDCONTEXTAMDPROC": 2, + "PFNWGLCREATEASSOCIATEDCONTEXTATTRIBSAMDPROC": 2, + "hShareContext": 2, + "attribList": 2, + "PFNWGLDELETEASSOCIATEDCONTEXTAMDPROC": 2, + "hglrc": 5, + "PFNWGLGETCONTEXTGPUIDAMDPROC": 2, + "PFNWGLGETCURRENTASSOCIATEDCONTEXTAMDPROC": 2, + "PFNWGLGETGPUIDSAMDPROC": 2, + "maxCount": 1, + "UINT*": 6, + "ids": 1, + "INT": 3, + "PFNWGLGETGPUINFOAMDPROC": 2, + "property": 1, + "dataType": 1, + "void*": 135, + "PFNWGLMAKEASSOCIATEDCONTEXTCURRENTAMDPROC": 2, + "wglBlitContextFramebufferAMD": 1, + "__wglewBlitContextFramebufferAMD": 2, + "wglCreateAssociatedContextAMD": 1, + "__wglewCreateAssociatedContextAMD": 2, + "wglCreateAssociatedContextAttribsAMD": 1, + "__wglewCreateAssociatedContextAttribsAMD": 2, + "wglDeleteAssociatedContextAMD": 1, + "__wglewDeleteAssociatedContextAMD": 2, + "wglGetContextGPUIDAMD": 1, + "__wglewGetContextGPUIDAMD": 2, + "wglGetCurrentAssociatedContextAMD": 1, + "__wglewGetCurrentAssociatedContextAMD": 2, + "wglGetGPUIDsAMD": 1, + "__wglewGetGPUIDsAMD": 2, + "wglGetGPUInfoAMD": 1, + "__wglewGetGPUInfoAMD": 2, + "wglMakeAssociatedContextCurrentAMD": 1, + "__wglewMakeAssociatedContextCurrentAMD": 2, + "WGLEW_AMD_gpu_association": 1, + "__WGLEW_AMD_gpu_association": 2, + "WGL_ARB_buffer_region": 2, + "WGL_FRONT_COLOR_BUFFER_BIT_ARB": 1, + "WGL_BACK_COLOR_BUFFER_BIT_ARB": 1, + "WGL_DEPTH_BUFFER_BIT_ARB": 1, + "WGL_STENCIL_BUFFER_BIT_ARB": 1, + "HANDLE": 14, + "PFNWGLCREATEBUFFERREGIONARBPROC": 2, + "iLayerPlane": 5, + "uType": 1, + "PFNWGLDELETEBUFFERREGIONARBPROC": 2, + "hRegion": 3, + "PFNWGLRESTOREBUFFERREGIONARBPROC": 2, + "x": 57, + "y": 14, + "width": 3, + "height": 3, + "xSrc": 1, + "ySrc": 1, + "PFNWGLSAVEBUFFERREGIONARBPROC": 2, + "wglCreateBufferRegionARB": 1, + "__wglewCreateBufferRegionARB": 2, + "wglDeleteBufferRegionARB": 1, + "__wglewDeleteBufferRegionARB": 2, + "wglRestoreBufferRegionARB": 1, + "__wglewRestoreBufferRegionARB": 2, + "wglSaveBufferRegionARB": 1, + "__wglewSaveBufferRegionARB": 2, + "WGLEW_ARB_buffer_region": 1, + "__WGLEW_ARB_buffer_region": 2, + "WGL_ARB_create_context": 2, + "WGL_CONTEXT_DEBUG_BIT_ARB": 1, + "WGL_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB": 1, + "WGL_CONTEXT_MAJOR_VERSION_ARB": 1, + "WGL_CONTEXT_MINOR_VERSION_ARB": 1, + "WGL_CONTEXT_LAYER_PLANE_ARB": 1, + "WGL_CONTEXT_FLAGS_ARB": 1, + "ERROR_INVALID_VERSION_ARB": 1, + "ERROR_INVALID_PROFILE_ARB": 1, + "PFNWGLCREATECONTEXTATTRIBSARBPROC": 2, + "wglCreateContextAttribsARB": 1, + "__wglewCreateContextAttribsARB": 2, + "WGLEW_ARB_create_context": 1, + "__WGLEW_ARB_create_context": 2, + "WGL_ARB_create_context_profile": 2, + "WGL_CONTEXT_CORE_PROFILE_BIT_ARB": 1, + "WGL_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB": 1, + "WGL_CONTEXT_PROFILE_MASK_ARB": 1, + "WGLEW_ARB_create_context_profile": 1, + "__WGLEW_ARB_create_context_profile": 2, + "WGL_ARB_create_context_robustness": 2, + "WGL_CONTEXT_ROBUST_ACCESS_BIT_ARB": 1, + "WGL_LOSE_CONTEXT_ON_RESET_ARB": 1, + "WGL_CONTEXT_RESET_NOTIFICATION_STRATEGY_ARB": 1, + "WGL_NO_RESET_NOTIFICATION_ARB": 1, + "WGLEW_ARB_create_context_robustness": 1, + "__WGLEW_ARB_create_context_robustness": 2, + "WGL_ARB_extensions_string": 2, + "PFNWGLGETEXTENSIONSSTRINGARBPROC": 2, + "hdc": 16, + "wglGetExtensionsStringARB": 1, + "__wglewGetExtensionsStringARB": 2, + "WGLEW_ARB_extensions_string": 1, + "__WGLEW_ARB_extensions_string": 2, + "WGL_ARB_framebuffer_sRGB": 2, + "WGL_FRAMEBUFFER_SRGB_CAPABLE_ARB": 1, + "A9": 2, + "WGLEW_ARB_framebuffer_sRGB": 1, + "__WGLEW_ARB_framebuffer_sRGB": 2, + "WGL_ARB_make_current_read": 2, + "ERROR_INVALID_PIXEL_TYPE_ARB": 1, + "ERROR_INCOMPATIBLE_DEVICE_CONTEXTS_ARB": 1, + "PFNWGLGETCURRENTREADDCARBPROC": 2, + "PFNWGLMAKECONTEXTCURRENTARBPROC": 2, + "hDrawDC": 2, + "hReadDC": 2, + "wglGetCurrentReadDCARB": 1, + "__wglewGetCurrentReadDCARB": 2, + "wglMakeContextCurrentARB": 1, + "__wglewMakeContextCurrentARB": 2, + "WGLEW_ARB_make_current_read": 1, + "__WGLEW_ARB_make_current_read": 2, + "WGL_ARB_multisample": 2, + "WGL_SAMPLE_BUFFERS_ARB": 1, + "WGL_SAMPLES_ARB": 1, + "WGLEW_ARB_multisample": 1, + "__WGLEW_ARB_multisample": 2, + "WGL_ARB_pbuffer": 2, + "WGL_DRAW_TO_PBUFFER_ARB": 1, + "D": 8, + "WGL_MAX_PBUFFER_PIXELS_ARB": 1, + "E": 11, + "WGL_MAX_PBUFFER_WIDTH_ARB": 1, + "WGL_MAX_PBUFFER_HEIGHT_ARB": 1, + "WGL_PBUFFER_LARGEST_ARB": 1, + "WGL_PBUFFER_WIDTH_ARB": 1, + "WGL_PBUFFER_HEIGHT_ARB": 1, + "WGL_PBUFFER_LOST_ARB": 1, + "DECLARE_HANDLE": 6, + "HPBUFFERARB": 12, + "PFNWGLCREATEPBUFFERARBPROC": 2, + "iPixelFormat": 6, + "iWidth": 2, + "iHeight": 2, + "piAttribList": 4, + "PFNWGLDESTROYPBUFFERARBPROC": 2, + "hPbuffer": 14, + "PFNWGLGETPBUFFERDCARBPROC": 2, + "PFNWGLQUERYPBUFFERARBPROC": 2, + "iAttribute": 8, + "piValue": 8, + "PFNWGLRELEASEPBUFFERDCARBPROC": 2, + "wglCreatePbufferARB": 1, + "__wglewCreatePbufferARB": 2, + "wglDestroyPbufferARB": 1, + "__wglewDestroyPbufferARB": 2, + "wglGetPbufferDCARB": 1, + "__wglewGetPbufferDCARB": 2, + "wglQueryPbufferARB": 1, + "__wglewQueryPbufferARB": 2, + "wglReleasePbufferDCARB": 1, + "__wglewReleasePbufferDCARB": 2, + "WGLEW_ARB_pbuffer": 1, + "__WGLEW_ARB_pbuffer": 2, + "WGL_ARB_pixel_format": 2, + "WGL_NUMBER_PIXEL_FORMATS_ARB": 1, + "WGL_DRAW_TO_WINDOW_ARB": 1, + "WGL_DRAW_TO_BITMAP_ARB": 1, + "WGL_ACCELERATION_ARB": 1, + "WGL_NEED_PALETTE_ARB": 1, + "WGL_NEED_SYSTEM_PALETTE_ARB": 1, + "WGL_SWAP_LAYER_BUFFERS_ARB": 1, + "WGL_SWAP_METHOD_ARB": 1, + "WGL_NUMBER_OVERLAYS_ARB": 1, + "WGL_NUMBER_UNDERLAYS_ARB": 1, + "WGL_TRANSPARENT_ARB": 1, + "A": 11, + "WGL_SHARE_DEPTH_ARB": 1, + "C": 14, + "WGL_SHARE_STENCIL_ARB": 1, + "WGL_SHARE_ACCUM_ARB": 1, + "WGL_SUPPORT_GDI_ARB": 1, + "WGL_SUPPORT_OPENGL_ARB": 1, + "WGL_DOUBLE_BUFFER_ARB": 1, + "WGL_STEREO_ARB": 1, + "WGL_PIXEL_TYPE_ARB": 1, + "WGL_COLOR_BITS_ARB": 1, + "WGL_RED_BITS_ARB": 1, + "WGL_RED_SHIFT_ARB": 1, + "WGL_GREEN_BITS_ARB": 1, + "WGL_GREEN_SHIFT_ARB": 1, + "WGL_BLUE_BITS_ARB": 1, + "WGL_BLUE_SHIFT_ARB": 1, + "WGL_ALPHA_BITS_ARB": 1, + "B": 9, + "WGL_ALPHA_SHIFT_ARB": 1, + "WGL_ACCUM_BITS_ARB": 1, + "WGL_ACCUM_RED_BITS_ARB": 1, + "WGL_ACCUM_GREEN_BITS_ARB": 1, + "WGL_ACCUM_BLUE_BITS_ARB": 1, + "WGL_ACCUM_ALPHA_BITS_ARB": 1, + "WGL_DEPTH_BITS_ARB": 1, + "WGL_STENCIL_BITS_ARB": 1, + "WGL_AUX_BUFFERS_ARB": 1, + "WGL_NO_ACCELERATION_ARB": 1, + "WGL_GENERIC_ACCELERATION_ARB": 1, + "WGL_FULL_ACCELERATION_ARB": 1, + "WGL_SWAP_EXCHANGE_ARB": 1, + "WGL_SWAP_COPY_ARB": 1, + "WGL_SWAP_UNDEFINED_ARB": 1, + "WGL_TYPE_RGBA_ARB": 1, + "WGL_TYPE_COLORINDEX_ARB": 1, + "WGL_TRANSPARENT_RED_VALUE_ARB": 1, + "WGL_TRANSPARENT_GREEN_VALUE_ARB": 1, + "WGL_TRANSPARENT_BLUE_VALUE_ARB": 1, + "WGL_TRANSPARENT_ALPHA_VALUE_ARB": 1, + "WGL_TRANSPARENT_INDEX_VALUE_ARB": 1, + "PFNWGLCHOOSEPIXELFORMATARBPROC": 2, + "piAttribIList": 2, + "FLOAT": 4, + "*pfAttribFList": 2, + "nMaxFormats": 2, + "*piFormats": 2, + "*nNumFormats": 2, + "PFNWGLGETPIXELFORMATATTRIBFVARBPROC": 2, + "nAttributes": 4, + "piAttributes": 4, + "*pfValues": 2, + "PFNWGLGETPIXELFORMATATTRIBIVARBPROC": 2, + "*piValues": 2, + "wglChoosePixelFormatARB": 1, + "__wglewChoosePixelFormatARB": 2, + "wglGetPixelFormatAttribfvARB": 1, + "__wglewGetPixelFormatAttribfvARB": 2, + "wglGetPixelFormatAttribivARB": 1, + "__wglewGetPixelFormatAttribivARB": 2, + "WGLEW_ARB_pixel_format": 1, + "__WGLEW_ARB_pixel_format": 2, + "WGL_ARB_pixel_format_float": 2, + "WGL_TYPE_RGBA_FLOAT_ARB": 1, + "A0": 3, + "WGLEW_ARB_pixel_format_float": 1, + "__WGLEW_ARB_pixel_format_float": 2, + "WGL_ARB_render_texture": 2, + "WGL_BIND_TO_TEXTURE_RGB_ARB": 1, + "WGL_BIND_TO_TEXTURE_RGBA_ARB": 1, + "WGL_TEXTURE_FORMAT_ARB": 1, + "WGL_TEXTURE_TARGET_ARB": 1, + "WGL_MIPMAP_TEXTURE_ARB": 1, + "WGL_TEXTURE_RGB_ARB": 1, + "WGL_TEXTURE_RGBA_ARB": 1, + "WGL_NO_TEXTURE_ARB": 2, + "WGL_TEXTURE_CUBE_MAP_ARB": 1, + "WGL_TEXTURE_1D_ARB": 1, + "WGL_TEXTURE_2D_ARB": 1, + "WGL_MIPMAP_LEVEL_ARB": 1, + "WGL_CUBE_MAP_FACE_ARB": 1, + "WGL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB": 1, + "WGL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB": 1, + "WGL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB": 1, + "WGL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB": 1, + "WGL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB": 1, + "WGL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB": 1, + "WGL_FRONT_LEFT_ARB": 1, + "WGL_FRONT_RIGHT_ARB": 1, + "WGL_BACK_LEFT_ARB": 1, + "WGL_BACK_RIGHT_ARB": 1, + "WGL_AUX0_ARB": 1, + "WGL_AUX1_ARB": 1, + "WGL_AUX2_ARB": 1, + "WGL_AUX3_ARB": 1, + "WGL_AUX4_ARB": 1, + "WGL_AUX5_ARB": 1, + "WGL_AUX6_ARB": 1, + "WGL_AUX7_ARB": 1, + "WGL_AUX8_ARB": 1, + "WGL_AUX9_ARB": 1, + "PFNWGLBINDTEXIMAGEARBPROC": 2, + "iBuffer": 2, + "PFNWGLRELEASETEXIMAGEARBPROC": 2, + "PFNWGLSETPBUFFERATTRIBARBPROC": 2, + "wglBindTexImageARB": 1, + "__wglewBindTexImageARB": 2, + "wglReleaseTexImageARB": 1, + "__wglewReleaseTexImageARB": 2, + "wglSetPbufferAttribARB": 1, + "__wglewSetPbufferAttribARB": 2, + "WGLEW_ARB_render_texture": 1, + "__WGLEW_ARB_render_texture": 2, + "WGL_ATI_pixel_format_float": 2, + "WGL_TYPE_RGBA_FLOAT_ATI": 1, + "GL_RGBA_FLOAT_MODE_ATI": 1, + "GL_COLOR_CLEAR_UNCLAMPED_VALUE_ATI": 1, + "WGLEW_ATI_pixel_format_float": 1, + "__WGLEW_ATI_pixel_format_float": 2, + "WGL_ATI_render_texture_rectangle": 2, + "WGL_TEXTURE_RECTANGLE_ATI": 1, + "WGLEW_ATI_render_texture_rectangle": 1, + "__WGLEW_ATI_render_texture_rectangle": 2, + "WGL_EXT_create_context_es2_profile": 2, + "WGL_CONTEXT_ES2_PROFILE_BIT_EXT": 1, + "WGLEW_EXT_create_context_es2_profile": 1, + "__WGLEW_EXT_create_context_es2_profile": 2, + "WGL_EXT_depth_float": 2, + "WGL_DEPTH_FLOAT_EXT": 1, + "WGLEW_EXT_depth_float": 1, + "__WGLEW_EXT_depth_float": 2, + "WGL_EXT_display_color_table": 2, + "GLboolean": 53, + "PFNWGLBINDDISPLAYCOLORTABLEEXTPROC": 2, + "GLushort": 3, + "PFNWGLCREATEDISPLAYCOLORTABLEEXTPROC": 2, + "PFNWGLDESTROYDISPLAYCOLORTABLEEXTPROC": 2, + "PFNWGLLOADDISPLAYCOLORTABLEEXTPROC": 2, + "GLushort*": 1, + "table": 1, + "GLuint": 9, + "length": 58, + "wglBindDisplayColorTableEXT": 1, + "__wglewBindDisplayColorTableEXT": 2, + "wglCreateDisplayColorTableEXT": 1, + "__wglewCreateDisplayColorTableEXT": 2, + "wglDestroyDisplayColorTableEXT": 1, + "__wglewDestroyDisplayColorTableEXT": 2, + "wglLoadDisplayColorTableEXT": 1, + "__wglewLoadDisplayColorTableEXT": 2, + "WGLEW_EXT_display_color_table": 1, + "__WGLEW_EXT_display_color_table": 2, + "WGL_EXT_extensions_string": 2, + "PFNWGLGETEXTENSIONSSTRINGEXTPROC": 2, + "wglGetExtensionsStringEXT": 1, + "__wglewGetExtensionsStringEXT": 2, + "WGLEW_EXT_extensions_string": 1, + "__WGLEW_EXT_extensions_string": 2, + "WGL_EXT_framebuffer_sRGB": 2, + "WGL_FRAMEBUFFER_SRGB_CAPABLE_EXT": 1, + "WGLEW_EXT_framebuffer_sRGB": 1, + "__WGLEW_EXT_framebuffer_sRGB": 2, + "WGL_EXT_make_current_read": 2, + "ERROR_INVALID_PIXEL_TYPE_EXT": 1, + "PFNWGLGETCURRENTREADDCEXTPROC": 2, + "PFNWGLMAKECONTEXTCURRENTEXTPROC": 2, + "wglGetCurrentReadDCEXT": 1, + "__wglewGetCurrentReadDCEXT": 2, + "wglMakeContextCurrentEXT": 1, + "__wglewMakeContextCurrentEXT": 2, + "WGLEW_EXT_make_current_read": 1, + "__WGLEW_EXT_make_current_read": 2, + "WGL_EXT_multisample": 2, + "WGL_SAMPLE_BUFFERS_EXT": 1, + "WGL_SAMPLES_EXT": 1, + "WGLEW_EXT_multisample": 1, + "__WGLEW_EXT_multisample": 2, + "WGL_EXT_pbuffer": 2, + "WGL_DRAW_TO_PBUFFER_EXT": 1, + "WGL_MAX_PBUFFER_PIXELS_EXT": 1, + "WGL_MAX_PBUFFER_WIDTH_EXT": 1, + "WGL_MAX_PBUFFER_HEIGHT_EXT": 1, + "WGL_OPTIMAL_PBUFFER_WIDTH_EXT": 1, + "WGL_OPTIMAL_PBUFFER_HEIGHT_EXT": 1, + "WGL_PBUFFER_LARGEST_EXT": 1, + "WGL_PBUFFER_WIDTH_EXT": 1, + "WGL_PBUFFER_HEIGHT_EXT": 1, + "HPBUFFEREXT": 6, + "PFNWGLCREATEPBUFFEREXTPROC": 2, + "PFNWGLDESTROYPBUFFEREXTPROC": 2, + "PFNWGLGETPBUFFERDCEXTPROC": 2, + "PFNWGLQUERYPBUFFEREXTPROC": 2, + "PFNWGLRELEASEPBUFFERDCEXTPROC": 2, + "wglCreatePbufferEXT": 1, + "__wglewCreatePbufferEXT": 2, + "wglDestroyPbufferEXT": 1, + "__wglewDestroyPbufferEXT": 2, + "wglGetPbufferDCEXT": 1, + "__wglewGetPbufferDCEXT": 2, + "wglQueryPbufferEXT": 1, + "__wglewQueryPbufferEXT": 2, + "wglReleasePbufferDCEXT": 1, + "__wglewReleasePbufferDCEXT": 2, + "WGLEW_EXT_pbuffer": 1, + "__WGLEW_EXT_pbuffer": 2, + "WGL_EXT_pixel_format": 2, + "WGL_NUMBER_PIXEL_FORMATS_EXT": 1, + "WGL_DRAW_TO_WINDOW_EXT": 1, + "WGL_DRAW_TO_BITMAP_EXT": 1, + "WGL_ACCELERATION_EXT": 1, + "WGL_NEED_PALETTE_EXT": 1, + "WGL_NEED_SYSTEM_PALETTE_EXT": 1, + "WGL_SWAP_LAYER_BUFFERS_EXT": 1, + "WGL_SWAP_METHOD_EXT": 1, + "WGL_NUMBER_OVERLAYS_EXT": 1, + "WGL_NUMBER_UNDERLAYS_EXT": 1, + "WGL_TRANSPARENT_EXT": 1, + "WGL_TRANSPARENT_VALUE_EXT": 1, + "WGL_SHARE_DEPTH_EXT": 1, + "WGL_SHARE_STENCIL_EXT": 1, + "WGL_SHARE_ACCUM_EXT": 1, + "WGL_SUPPORT_GDI_EXT": 1, + "WGL_SUPPORT_OPENGL_EXT": 1, + "WGL_DOUBLE_BUFFER_EXT": 1, + "WGL_STEREO_EXT": 1, + "WGL_PIXEL_TYPE_EXT": 1, + "WGL_COLOR_BITS_EXT": 1, + "WGL_RED_BITS_EXT": 1, + "WGL_RED_SHIFT_EXT": 1, + "WGL_GREEN_BITS_EXT": 1, + "WGL_GREEN_SHIFT_EXT": 1, + "WGL_BLUE_BITS_EXT": 1, + "WGL_BLUE_SHIFT_EXT": 1, + "WGL_ALPHA_BITS_EXT": 1, + "WGL_ALPHA_SHIFT_EXT": 1, + "WGL_ACCUM_BITS_EXT": 1, + "WGL_ACCUM_RED_BITS_EXT": 1, + "WGL_ACCUM_GREEN_BITS_EXT": 1, + "WGL_ACCUM_BLUE_BITS_EXT": 1, + "WGL_ACCUM_ALPHA_BITS_EXT": 1, + "WGL_DEPTH_BITS_EXT": 1, + "WGL_STENCIL_BITS_EXT": 1, + "WGL_AUX_BUFFERS_EXT": 1, + "WGL_NO_ACCELERATION_EXT": 1, + "WGL_GENERIC_ACCELERATION_EXT": 1, + "WGL_FULL_ACCELERATION_EXT": 1, + "WGL_SWAP_EXCHANGE_EXT": 1, + "WGL_SWAP_COPY_EXT": 1, + "WGL_SWAP_UNDEFINED_EXT": 1, + "WGL_TYPE_RGBA_EXT": 1, + "WGL_TYPE_COLORINDEX_EXT": 1, + "PFNWGLCHOOSEPIXELFORMATEXTPROC": 2, + "PFNWGLGETPIXELFORMATATTRIBFVEXTPROC": 2, + "PFNWGLGETPIXELFORMATATTRIBIVEXTPROC": 2, + "wglChoosePixelFormatEXT": 1, + "__wglewChoosePixelFormatEXT": 2, + "wglGetPixelFormatAttribfvEXT": 1, + "__wglewGetPixelFormatAttribfvEXT": 2, + "wglGetPixelFormatAttribivEXT": 1, + "__wglewGetPixelFormatAttribivEXT": 2, + "WGLEW_EXT_pixel_format": 1, + "__WGLEW_EXT_pixel_format": 2, + "WGL_EXT_pixel_format_packed_float": 2, + "WGL_TYPE_RGBA_UNSIGNED_FLOAT_EXT": 1, + "WGLEW_EXT_pixel_format_packed_float": 1, + "__WGLEW_EXT_pixel_format_packed_float": 2, + "WGL_EXT_swap_control": 2, + "PFNWGLGETSWAPINTERVALEXTPROC": 2, + "PFNWGLSWAPINTERVALEXTPROC": 2, + "interval": 1, + "wglGetSwapIntervalEXT": 1, + "__wglewGetSwapIntervalEXT": 2, + "wglSwapIntervalEXT": 1, + "__wglewSwapIntervalEXT": 2, + "WGLEW_EXT_swap_control": 1, + "__WGLEW_EXT_swap_control": 2, + "WGL_I3D_digital_video_control": 2, + "WGL_DIGITAL_VIDEO_CURSOR_ALPHA_FRAMEBUFFER_I3D": 1, + "WGL_DIGITAL_VIDEO_CURSOR_ALPHA_VALUE_I3D": 1, + "WGL_DIGITAL_VIDEO_CURSOR_INCLUDED_I3D": 1, + "WGL_DIGITAL_VIDEO_GAMMA_CORRECTED_I3D": 1, + "PFNWGLGETDIGITALVIDEOPARAMETERSI3DPROC": 2, + "PFNWGLSETDIGITALVIDEOPARAMETERSI3DPROC": 2, + "wglGetDigitalVideoParametersI3D": 1, + "__wglewGetDigitalVideoParametersI3D": 2, + "wglSetDigitalVideoParametersI3D": 1, + "__wglewSetDigitalVideoParametersI3D": 2, + "WGLEW_I3D_digital_video_control": 1, + "__WGLEW_I3D_digital_video_control": 2, + "WGL_I3D_gamma": 2, + "WGL_GAMMA_TABLE_SIZE_I3D": 1, + "WGL_GAMMA_EXCLUDE_DESKTOP_I3D": 1, + "PFNWGLGETGAMMATABLEI3DPROC": 2, + "iEntries": 2, + "USHORT*": 2, + "puRed": 2, + "USHORT": 4, + "*puGreen": 2, + "*puBlue": 2, + "PFNWGLGETGAMMATABLEPARAMETERSI3DPROC": 2, + "PFNWGLSETGAMMATABLEI3DPROC": 2, + "PFNWGLSETGAMMATABLEPARAMETERSI3DPROC": 2, + "wglGetGammaTableI3D": 1, + "__wglewGetGammaTableI3D": 2, + "wglGetGammaTableParametersI3D": 1, + "__wglewGetGammaTableParametersI3D": 2, + "wglSetGammaTableI3D": 1, + "__wglewSetGammaTableI3D": 2, + "wglSetGammaTableParametersI3D": 1, + "__wglewSetGammaTableParametersI3D": 2, + "WGLEW_I3D_gamma": 1, + "__WGLEW_I3D_gamma": 2, + "WGL_I3D_genlock": 2, + "WGL_GENLOCK_SOURCE_MULTIVIEW_I3D": 1, + "WGL_GENLOCK_SOURCE_EXTERNAL_SYNC_I3D": 1, + "WGL_GENLOCK_SOURCE_EXTERNAL_FIELD_I3D": 1, + "WGL_GENLOCK_SOURCE_EXTERNAL_TTL_I3D": 1, + "WGL_GENLOCK_SOURCE_DIGITAL_SYNC_I3D": 1, + "WGL_GENLOCK_SOURCE_DIGITAL_FIELD_I3D": 1, + "WGL_GENLOCK_SOURCE_EDGE_FALLING_I3D": 1, + "WGL_GENLOCK_SOURCE_EDGE_RISING_I3D": 1, + "WGL_GENLOCK_SOURCE_EDGE_BOTH_I3D": 1, + "PFNWGLDISABLEGENLOCKI3DPROC": 2, + "PFNWGLENABLEGENLOCKI3DPROC": 2, + "PFNWGLGENLOCKSAMPLERATEI3DPROC": 2, + "uRate": 2, + "PFNWGLGENLOCKSOURCEDELAYI3DPROC": 2, + "uDelay": 2, + "PFNWGLGENLOCKSOURCEEDGEI3DPROC": 2, + "uEdge": 2, + "PFNWGLGENLOCKSOURCEI3DPROC": 2, + "uSource": 2, + "PFNWGLGETGENLOCKSAMPLERATEI3DPROC": 2, + "PFNWGLGETGENLOCKSOURCEDELAYI3DPROC": 2, + "PFNWGLGETGENLOCKSOURCEEDGEI3DPROC": 2, + "PFNWGLGETGENLOCKSOURCEI3DPROC": 2, + "PFNWGLISENABLEDGENLOCKI3DPROC": 2, + "BOOL*": 3, + "pFlag": 3, + "PFNWGLQUERYGENLOCKMAXSOURCEDELAYI3DPROC": 2, + "uMaxLineDelay": 1, + "*uMaxPixelDelay": 1, + "wglDisableGenlockI3D": 1, + "__wglewDisableGenlockI3D": 2, + "wglEnableGenlockI3D": 1, + "__wglewEnableGenlockI3D": 2, + "wglGenlockSampleRateI3D": 1, + "__wglewGenlockSampleRateI3D": 2, + "wglGenlockSourceDelayI3D": 1, + "__wglewGenlockSourceDelayI3D": 2, + "wglGenlockSourceEdgeI3D": 1, + "__wglewGenlockSourceEdgeI3D": 2, + "wglGenlockSourceI3D": 1, + "__wglewGenlockSourceI3D": 2, + "wglGetGenlockSampleRateI3D": 1, + "__wglewGetGenlockSampleRateI3D": 2, + "wglGetGenlockSourceDelayI3D": 1, + "__wglewGetGenlockSourceDelayI3D": 2, + "wglGetGenlockSourceEdgeI3D": 1, + "__wglewGetGenlockSourceEdgeI3D": 2, + "wglGetGenlockSourceI3D": 1, + "__wglewGetGenlockSourceI3D": 2, + "wglIsEnabledGenlockI3D": 1, + "__wglewIsEnabledGenlockI3D": 2, + "wglQueryGenlockMaxSourceDelayI3D": 1, + "__wglewQueryGenlockMaxSourceDelayI3D": 2, + "WGLEW_I3D_genlock": 1, + "__WGLEW_I3D_genlock": 2, + "WGL_I3D_image_buffer": 2, + "WGL_IMAGE_BUFFER_MIN_ACCESS_I3D": 1, + "WGL_IMAGE_BUFFER_LOCK_I3D": 1, + "PFNWGLASSOCIATEIMAGEBUFFEREVENTSI3DPROC": 2, + "HANDLE*": 3, + "pEvent": 1, + "LPVOID": 3, + "*pAddress": 1, + "DWORD": 5, + "*pSize": 1, + "PFNWGLCREATEIMAGEBUFFERI3DPROC": 2, + "dwSize": 1, + "uFlags": 1, + "PFNWGLDESTROYIMAGEBUFFERI3DPROC": 2, + "pAddress": 2, + "PFNWGLRELEASEIMAGEBUFFEREVENTSI3DPROC": 2, + "LPVOID*": 1, + "wglAssociateImageBufferEventsI3D": 1, + "__wglewAssociateImageBufferEventsI3D": 2, + "wglCreateImageBufferI3D": 1, + "__wglewCreateImageBufferI3D": 2, + "wglDestroyImageBufferI3D": 1, + "__wglewDestroyImageBufferI3D": 2, + "wglReleaseImageBufferEventsI3D": 1, + "__wglewReleaseImageBufferEventsI3D": 2, + "WGLEW_I3D_image_buffer": 1, + "__WGLEW_I3D_image_buffer": 2, + "WGL_I3D_swap_frame_lock": 2, + "PFNWGLDISABLEFRAMELOCKI3DPROC": 2, + "PFNWGLENABLEFRAMELOCKI3DPROC": 2, + "PFNWGLISENABLEDFRAMELOCKI3DPROC": 2, + "PFNWGLQUERYFRAMELOCKMASTERI3DPROC": 2, + "wglDisableFrameLockI3D": 1, + "__wglewDisableFrameLockI3D": 2, + "wglEnableFrameLockI3D": 1, + "__wglewEnableFrameLockI3D": 2, + "wglIsEnabledFrameLockI3D": 1, + "__wglewIsEnabledFrameLockI3D": 2, + "wglQueryFrameLockMasterI3D": 1, + "__wglewQueryFrameLockMasterI3D": 2, + "WGLEW_I3D_swap_frame_lock": 1, + "__WGLEW_I3D_swap_frame_lock": 2, + "WGL_I3D_swap_frame_usage": 2, + "PFNWGLBEGINFRAMETRACKINGI3DPROC": 2, + "PFNWGLENDFRAMETRACKINGI3DPROC": 2, + "PFNWGLGETFRAMEUSAGEI3DPROC": 2, + "float*": 1, + "pUsage": 1, + "PFNWGLQUERYFRAMETRACKINGI3DPROC": 2, + "DWORD*": 1, + "pFrameCount": 1, + "*pMissedFrames": 1, + "float": 26, + "*pLastMissedUsage": 1, + "wglBeginFrameTrackingI3D": 1, + "__wglewBeginFrameTrackingI3D": 2, + "wglEndFrameTrackingI3D": 1, + "__wglewEndFrameTrackingI3D": 2, + "wglGetFrameUsageI3D": 1, + "__wglewGetFrameUsageI3D": 2, + "wglQueryFrameTrackingI3D": 1, + "__wglewQueryFrameTrackingI3D": 2, + "WGLEW_I3D_swap_frame_usage": 1, + "__WGLEW_I3D_swap_frame_usage": 2, + "WGL_NV_DX_interop": 2, + "WGL_ACCESS_READ_ONLY_NV": 1, + "WGL_ACCESS_READ_WRITE_NV": 1, + "WGL_ACCESS_WRITE_DISCARD_NV": 1, + "PFNWGLDXCLOSEDEVICENVPROC": 2, + "hDevice": 9, + "PFNWGLDXLOCKOBJECTSNVPROC": 2, + "hObjects": 2, + "PFNWGLDXOBJECTACCESSNVPROC": 2, + "hObject": 2, + "access": 2, + "PFNWGLDXOPENDEVICENVPROC": 2, + "dxDevice": 1, + "PFNWGLDXREGISTEROBJECTNVPROC": 2, + "dxObject": 2, + "PFNWGLDXSETRESOURCESHAREHANDLENVPROC": 2, + "shareHandle": 1, + "PFNWGLDXUNLOCKOBJECTSNVPROC": 2, + "PFNWGLDXUNREGISTEROBJECTNVPROC": 2, + "wglDXCloseDeviceNV": 1, + "__wglewDXCloseDeviceNV": 2, + "wglDXLockObjectsNV": 1, + "__wglewDXLockObjectsNV": 2, + "wglDXObjectAccessNV": 1, + "__wglewDXObjectAccessNV": 2, + "wglDXOpenDeviceNV": 1, + "__wglewDXOpenDeviceNV": 2, + "wglDXRegisterObjectNV": 1, + "__wglewDXRegisterObjectNV": 2, + "wglDXSetResourceShareHandleNV": 1, + "__wglewDXSetResourceShareHandleNV": 2, + "wglDXUnlockObjectsNV": 1, + "__wglewDXUnlockObjectsNV": 2, + "wglDXUnregisterObjectNV": 1, + "__wglewDXUnregisterObjectNV": 2, + "WGLEW_NV_DX_interop": 1, + "__WGLEW_NV_DX_interop": 2, + "WGL_NV_copy_image": 2, + "PFNWGLCOPYIMAGESUBDATANVPROC": 2, + "hSrcRC": 1, + "srcName": 1, + "srcTarget": 1, + "srcLevel": 1, + "srcX": 1, + "srcY": 1, + "srcZ": 1, + "hDstRC": 1, + "dstName": 1, + "dstTarget": 1, + "dstLevel": 1, + "dstX": 1, + "dstY": 1, + "dstZ": 1, + "GLsizei": 4, + "depth": 2, + "wglCopyImageSubDataNV": 1, + "__wglewCopyImageSubDataNV": 2, + "WGLEW_NV_copy_image": 1, + "__WGLEW_NV_copy_image": 2, + "WGL_NV_float_buffer": 2, + "WGL_FLOAT_COMPONENTS_NV": 1, + "B0": 1, + "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_R_NV": 1, + "B1": 1, + "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RG_NV": 1, + "B2": 1, + "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGB_NV": 1, + "B3": 1, + "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGBA_NV": 1, + "B4": 1, + "WGL_TEXTURE_FLOAT_R_NV": 1, + "B5": 1, + "WGL_TEXTURE_FLOAT_RG_NV": 1, + "B6": 1, + "WGL_TEXTURE_FLOAT_RGB_NV": 1, + "B7": 1, + "WGL_TEXTURE_FLOAT_RGBA_NV": 1, + "B8": 1, + "WGLEW_NV_float_buffer": 1, + "__WGLEW_NV_float_buffer": 2, + "WGL_NV_gpu_affinity": 2, + "WGL_ERROR_INCOMPATIBLE_AFFINITY_MASKS_NV": 1, + "D0": 1, + "WGL_ERROR_MISSING_AFFINITY_MASK_NV": 1, + "D1": 1, + "HGPUNV": 5, + "_GPU_DEVICE": 1, + "cb": 1, + "CHAR": 2, + "DeviceName": 1, + "DeviceString": 1, + "Flags": 1, + "RECT": 1, + "rcVirtualScreen": 1, + "GPU_DEVICE": 1, + "*PGPU_DEVICE": 1, + "PFNWGLCREATEAFFINITYDCNVPROC": 2, + "*phGpuList": 1, + "PFNWGLDELETEDCNVPROC": 2, + "PFNWGLENUMGPUDEVICESNVPROC": 2, + "hGpu": 1, + "iDeviceIndex": 1, + "PGPU_DEVICE": 1, + "lpGpuDevice": 1, + "PFNWGLENUMGPUSFROMAFFINITYDCNVPROC": 2, + "hAffinityDC": 1, + "iGpuIndex": 2, + "*hGpu": 1, + "PFNWGLENUMGPUSNVPROC": 2, + "*phGpu": 1, + "wglCreateAffinityDCNV": 1, + "__wglewCreateAffinityDCNV": 2, + "wglDeleteDCNV": 1, + "__wglewDeleteDCNV": 2, + "wglEnumGpuDevicesNV": 1, + "__wglewEnumGpuDevicesNV": 2, + "wglEnumGpusFromAffinityDCNV": 1, + "__wglewEnumGpusFromAffinityDCNV": 2, + "wglEnumGpusNV": 1, + "__wglewEnumGpusNV": 2, + "WGLEW_NV_gpu_affinity": 1, + "__WGLEW_NV_gpu_affinity": 2, + "WGL_NV_multisample_coverage": 2, + "WGL_COVERAGE_SAMPLES_NV": 1, + "WGL_COLOR_SAMPLES_NV": 1, + "B9": 1, + "WGLEW_NV_multisample_coverage": 1, + "__WGLEW_NV_multisample_coverage": 2, + "WGL_NV_present_video": 2, + "WGL_NUM_VIDEO_SLOTS_NV": 1, + "F0": 1, + "HVIDEOOUTPUTDEVICENV": 2, + "PFNWGLBINDVIDEODEVICENVPROC": 2, + "hDc": 6, + "uVideoSlot": 2, + "hVideoDevice": 4, + "PFNWGLENUMERATEVIDEODEVICESNVPROC": 2, + "HVIDEOOUTPUTDEVICENV*": 1, + "phDeviceList": 2, + "PFNWGLQUERYCURRENTCONTEXTNVPROC": 2, + "wglBindVideoDeviceNV": 1, + "__wglewBindVideoDeviceNV": 2, + "wglEnumerateVideoDevicesNV": 1, + "__wglewEnumerateVideoDevicesNV": 2, + "wglQueryCurrentContextNV": 1, + "__wglewQueryCurrentContextNV": 2, + "WGLEW_NV_present_video": 1, + "__WGLEW_NV_present_video": 2, + "WGL_NV_render_depth_texture": 2, + "WGL_BIND_TO_TEXTURE_DEPTH_NV": 1, + "WGL_BIND_TO_TEXTURE_RECTANGLE_DEPTH_NV": 1, + "WGL_DEPTH_TEXTURE_FORMAT_NV": 1, + "WGL_TEXTURE_DEPTH_COMPONENT_NV": 1, + "WGL_DEPTH_COMPONENT_NV": 1, + "WGLEW_NV_render_depth_texture": 1, + "__WGLEW_NV_render_depth_texture": 2, + "WGL_NV_render_texture_rectangle": 2, + "WGL_BIND_TO_TEXTURE_RECTANGLE_RGB_NV": 1, + "WGL_BIND_TO_TEXTURE_RECTANGLE_RGBA_NV": 1, + "A1": 1, + "WGL_TEXTURE_RECTANGLE_NV": 1, + "WGLEW_NV_render_texture_rectangle": 1, + "__WGLEW_NV_render_texture_rectangle": 2, + "WGL_NV_swap_group": 2, + "PFNWGLBINDSWAPBARRIERNVPROC": 2, + "group": 3, + "barrier": 1, + "PFNWGLJOINSWAPGROUPNVPROC": 2, + "PFNWGLQUERYFRAMECOUNTNVPROC": 2, + "GLuint*": 3, + "PFNWGLQUERYMAXSWAPGROUPSNVPROC": 2, + "maxGroups": 1, + "*maxBarriers": 1, + "PFNWGLQUERYSWAPGROUPNVPROC": 2, + "*barrier": 1, + "PFNWGLRESETFRAMECOUNTNVPROC": 2, + "wglBindSwapBarrierNV": 1, + "__wglewBindSwapBarrierNV": 2, + "wglJoinSwapGroupNV": 1, + "__wglewJoinSwapGroupNV": 2, + "wglQueryFrameCountNV": 1, + "__wglewQueryFrameCountNV": 2, + "wglQueryMaxSwapGroupsNV": 1, + "__wglewQueryMaxSwapGroupsNV": 2, + "wglQuerySwapGroupNV": 1, + "__wglewQuerySwapGroupNV": 2, + "wglResetFrameCountNV": 1, + "__wglewResetFrameCountNV": 2, + "WGLEW_NV_swap_group": 1, + "__WGLEW_NV_swap_group": 2, + "WGL_NV_vertex_array_range": 2, + "PFNWGLALLOCATEMEMORYNVPROC": 2, + "GLfloat": 3, + "readFrequency": 1, + "writeFrequency": 1, + "priority": 1, + "PFNWGLFREEMEMORYNVPROC": 2, + "*pointer": 1, + "wglAllocateMemoryNV": 1, + "__wglewAllocateMemoryNV": 2, + "wglFreeMemoryNV": 1, + "__wglewFreeMemoryNV": 2, + "WGLEW_NV_vertex_array_range": 1, + "__WGLEW_NV_vertex_array_range": 2, + "WGL_NV_video_capture": 2, + "WGL_UNIQUE_ID_NV": 1, + "CE": 1, + "WGL_NUM_VIDEO_CAPTURE_SLOTS_NV": 1, + "CF": 1, + "HVIDEOINPUTDEVICENV": 5, + "PFNWGLBINDVIDEOCAPTUREDEVICENVPROC": 2, + "PFNWGLENUMERATEVIDEOCAPTUREDEVICESNVPROC": 2, + "HVIDEOINPUTDEVICENV*": 1, + "PFNWGLLOCKVIDEOCAPTUREDEVICENVPROC": 2, + "PFNWGLQUERYVIDEOCAPTUREDEVICENVPROC": 2, + "PFNWGLRELEASEVIDEOCAPTUREDEVICENVPROC": 2, + "wglBindVideoCaptureDeviceNV": 1, + "__wglewBindVideoCaptureDeviceNV": 2, + "wglEnumerateVideoCaptureDevicesNV": 1, + "__wglewEnumerateVideoCaptureDevicesNV": 2, + "wglLockVideoCaptureDeviceNV": 1, + "__wglewLockVideoCaptureDeviceNV": 2, + "wglQueryVideoCaptureDeviceNV": 1, + "__wglewQueryVideoCaptureDeviceNV": 2, + "wglReleaseVideoCaptureDeviceNV": 1, + "__wglewReleaseVideoCaptureDeviceNV": 2, + "WGLEW_NV_video_capture": 1, + "__WGLEW_NV_video_capture": 2, + "WGL_NV_video_output": 2, + "WGL_BIND_TO_VIDEO_RGB_NV": 1, + "C0": 3, + "WGL_BIND_TO_VIDEO_RGBA_NV": 1, + "C1": 1, + "WGL_BIND_TO_VIDEO_RGB_AND_DEPTH_NV": 1, + "C2": 1, + "WGL_VIDEO_OUT_COLOR_NV": 1, + "C3": 1, + "WGL_VIDEO_OUT_ALPHA_NV": 1, + "C4": 1, + "WGL_VIDEO_OUT_DEPTH_NV": 1, + "C5": 1, + "WGL_VIDEO_OUT_COLOR_AND_ALPHA_NV": 1, + "C6": 1, + "WGL_VIDEO_OUT_COLOR_AND_DEPTH_NV": 1, + "C7": 1, + "WGL_VIDEO_OUT_FRAME": 1, + "C8": 1, + "WGL_VIDEO_OUT_FIELD_1": 1, + "C9": 1, + "WGL_VIDEO_OUT_FIELD_2": 1, + "CA": 1, + "WGL_VIDEO_OUT_STACKED_FIELDS_1_2": 1, + "CB": 1, + "WGL_VIDEO_OUT_STACKED_FIELDS_2_1": 1, + "CC": 1, + "HPVIDEODEV": 4, + "PFNWGLBINDVIDEOIMAGENVPROC": 2, + "iVideoBuffer": 2, + "PFNWGLGETVIDEODEVICENVPROC": 2, + "numDevices": 1, + "HPVIDEODEV*": 1, + "PFNWGLGETVIDEOINFONVPROC": 2, + "hpVideoDevice": 1, + "long*": 2, + "pulCounterOutputPbuffer": 1, + "*pulCounterOutputVideo": 1, + "PFNWGLRELEASEVIDEODEVICENVPROC": 2, + "PFNWGLRELEASEVIDEOIMAGENVPROC": 2, + "PFNWGLSENDPBUFFERTOVIDEONVPROC": 2, + "iBufferType": 1, + "pulCounterPbuffer": 1, + "bBlock": 1, + "wglBindVideoImageNV": 1, + "__wglewBindVideoImageNV": 2, + "wglGetVideoDeviceNV": 1, + "__wglewGetVideoDeviceNV": 2, + "wglGetVideoInfoNV": 1, + "__wglewGetVideoInfoNV": 2, + "wglReleaseVideoDeviceNV": 1, + "__wglewReleaseVideoDeviceNV": 2, + "wglReleaseVideoImageNV": 1, + "__wglewReleaseVideoImageNV": 2, + "wglSendPbufferToVideoNV": 1, + "__wglewSendPbufferToVideoNV": 2, + "WGLEW_NV_video_output": 1, + "__WGLEW_NV_video_output": 2, + "WGL_OML_sync_control": 2, + "PFNWGLGETMSCRATEOMLPROC": 2, + "INT32*": 1, + "numerator": 1, + "INT32": 1, + "*denominator": 1, + "PFNWGLGETSYNCVALUESOMLPROC": 2, + "INT64*": 3, + "ust": 7, + "INT64": 18, + "*msc": 3, + "*sbc": 3, + "PFNWGLSWAPBUFFERSMSCOMLPROC": 2, + "target_msc": 3, + "divisor": 3, + "remainder": 3, + "PFNWGLSWAPLAYERBUFFERSMSCOMLPROC": 2, + "fuPlanes": 1, + "PFNWGLWAITFORMSCOMLPROC": 2, + "PFNWGLWAITFORSBCOMLPROC": 2, + "target_sbc": 1, + "wglGetMscRateOML": 1, + "__wglewGetMscRateOML": 2, + "wglGetSyncValuesOML": 1, + "__wglewGetSyncValuesOML": 2, + "wglSwapBuffersMscOML": 1, + "__wglewSwapBuffersMscOML": 2, + "wglSwapLayerBuffersMscOML": 1, + "__wglewSwapLayerBuffersMscOML": 2, + "wglWaitForMscOML": 1, + "__wglewWaitForMscOML": 2, + "wglWaitForSbcOML": 1, + "__wglewWaitForSbcOML": 2, + "WGLEW_OML_sync_control": 1, + "__WGLEW_OML_sync_control": 2, + "GLEW_MX": 4, + "WGLEW_EXPORT": 167, + "GLEWAPI": 6, + "WGLEWContextStruct": 2, + "WGLEWContext": 1, + "wglewContextInit": 2, + "WGLEWContext*": 2, + "ctx": 16, + "wglewContextIsSupported": 2, + "wglewInit": 1, + "wglewGetContext": 4, + "wglewIsSupported": 2, + "wglewGetExtension": 1, + "#undef": 7, + "PPC_SHA1": 1, + "git_hash_ctx": 7, + "SHA_CTX": 3, + "*git_hash_new_ctx": 1, + "*ctx": 5, + "git__malloc": 3, + "SHA1_Init": 4, + "git_hash_free_ctx": 1, + "git__free": 15, + "git_hash_init": 1, + "git_hash_update": 1, + "len": 30, + "SHA1_Update": 3, + "git_hash_final": 1, + "git_oid": 7, + "*out": 3, + "SHA1_Final": 3, + "out": 18, + "git_hash_buf": 1, + "git_hash_vec": 1, + "git_buf_vec": 1, + "*vec": 1, + "vec": 2, + ".data": 1, + ".len": 3, + "BLOB_H": 2, "PY_SSIZE_T_CLEAN": 1, "Py_PYTHON_H": 1, "Python": 2, @@ -7948,11 +6164,14 @@ "please": 1, "install": 1, "development": 1, + "version": 4, "Python.": 1, + "#elif": 14, "PY_VERSION_HEX": 11, "Cython": 1, "requires": 1, ".": 1, + "": 2, "offsetof": 2, "member": 2, "type*": 1, @@ -7962,6 +6181,7 @@ "__cdecl": 2, "__fastcall": 2, "DL_IMPORT": 2, + "t": 32, "DL_EXPORT": 2, "PY_LONG_LONG": 5, "LONG_LONG": 1, @@ -7978,8 +6198,10 @@ "PY_FORMAT_SIZE_T": 1, "CYTHON_FORMAT_SSIZE_T": 2, "PyInt_FromSsize_t": 6, + "z": 47, "PyInt_FromLong": 3, "PyInt_AsSsize_t": 3, + "o": 80, "__Pyx_PyInt_AsInt": 2, "PyNumber_Index": 1, "PyNumber_Check": 2, @@ -7995,6 +6217,7 @@ "PyIndex_Check": 2, "PyErr_WarnEx": 1, "category": 2, + "message": 3, "stacklevel": 1, "PyErr_Warn": 1, "__PYX_BUILD_PY_SSIZE_T": 2, @@ -8011,6 +6234,7 @@ "itemsize": 1, "readonly": 1, "ndim": 2, + "*format": 2, "*shape": 1, "*strides": 1, "*suboffsets": 1, @@ -8030,7 +6254,10 @@ "PY_MAJOR_VERSION": 13, "__Pyx_BUILTIN_MODULE_NAME": 2, "__Pyx_PyCode_New": 2, + "k": 15, "l": 7, + "code": 6, + "v": 11, "fv": 4, "cell": 4, "fline": 4, @@ -8046,13 +6273,16 @@ "CYTHON_PEP393_ENABLED": 2, "__Pyx_PyUnicode_READY": 2, "op": 8, + "likely": 22, "PyUnicode_IS_READY": 1, "_PyUnicode_Ready": 1, "__Pyx_PyUnicode_GET_LENGTH": 2, + "u": 18, "PyUnicode_GET_LENGTH": 1, "__Pyx_PyUnicode_READ_CHAR": 2, "PyUnicode_READ_CHAR": 1, "__Pyx_PyUnicode_READ": 2, + "d": 16, "PyUnicode_READ": 1, "PyUnicode_GET_SIZE": 1, "Py_UCS4": 2, @@ -8138,11 +6368,13 @@ "PySequence_SetSlice": 2, "__Pyx_PySequence_DelSlice": 2, "PySequence_DelSlice": 2, + "unlikely": 54, "PyErr_SetString": 3, "PyExc_SystemError": 3, "tp_as_mapping": 3, "PyMethod_New": 2, "func": 3, + "self": 9, "klass": 1, "PyInstanceMethod_New": 1, "__Pyx_GetAttrString": 2, @@ -8154,7 +6386,6 @@ "__Pyx_NAMESTR": 2, "__Pyx_DOCSTR": 2, "__Pyx_PyNumber_Divide": 2, - "y": 14, "PyNumber_TrueDivide": 1, "__Pyx_PyNumber_InPlaceDivide": 2, "PyNumber_InPlaceTrueDivide": 1, @@ -8162,6 +6393,7 @@ "PyNumber_InPlaceDivide": 1, "__PYX_EXTERN_C": 3, "_USE_MATH_DEFINES": 1, + "": 3, "__PYX_HAVE__sklearn__linear_model__sgd_fast": 1, "__PYX_HAVE_API__sklearn__linear_model__sgd_fast": 1, "_OPENMP": 1, @@ -8169,12 +6401,17 @@ "PYREX_WITHOUT_ASSERTIONS": 1, "CYTHON_WITHOUT_ASSERTIONS": 1, "CYTHON_INLINE": 65, + "__GNUC__": 8, "__inline__": 1, + "_MSC_VER": 5, "__inline": 1, "__STDC_VERSION__": 2, "L": 1, + "inline": 3, "CYTHON_UNUSED": 14, "**p": 1, + "*s": 3, + "encoding": 14, "is_unicode": 1, "is_str": 1, "intern": 1, @@ -8197,6 +6434,7 @@ "PyFloat_AS_DOUBLE": 1, "PyFloat_AsDouble": 2, "__pyx_PyFloat_AsFloat": 1, + "__GNUC_MINOR__": 2, "__builtin_expect": 2, "*__pyx_m": 1, "*__pyx_b": 1, @@ -8232,6 +6470,7 @@ "__Pyx_BufFmt_StackElem": 1, "root": 1, "__Pyx_BufFmt_StackElem*": 2, + "head": 3, "fmt_offset": 1, "new_count": 1, "enc_count": 1, @@ -8293,6 +6532,7 @@ "_Complex": 2, "real": 2, "imag": 2, + "double": 126, "__pyx_t_double_complex": 27, "__pyx_obj_7sklearn_12linear_model_8sgd_fast_LossFunction": 15, "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Regression": 11, @@ -8338,6 +6578,7 @@ "threshold": 2, "n_features": 2, "__pyx_vtabstruct_7sklearn_5utils_13weight_vector_WeightVector": 3, + "*w": 2, "*w_data_ptr": 1, "wscale": 1, "sq_norm": 1, @@ -8373,6 +6614,7 @@ "__pyx_refnanny": 8, "__Pyx_RefNanny": 8, "SetupContext": 3, + "__LINE__": 50, "PyGILState_Release": 1, "__Pyx_RefNannyFinishContext": 14, "FinishContext": 1, @@ -8394,6 +6636,7 @@ "__Pyx_CLEAR": 1, "__Pyx_XCLEAR": 1, "*__Pyx_GetName": 1, + "*dict": 5, "__Pyx_ErrRestore": 1, "*type": 4, "*tb": 2, @@ -8405,6 +6648,7 @@ "*cause": 1, "__Pyx_RaiseArgtupleInvalid": 7, "func_name": 2, + "exact": 6, "num_min": 1, "num_max": 1, "num_found": 1, @@ -8424,10 +6668,13 @@ "dtype": 1, "nd": 1, "cast": 1, + "stack": 6, "__Pyx_SafeReleaseBuffer": 1, + "info": 64, "__Pyx_TypeTest": 1, "__Pyx_RaiseBufferFallbackError": 1, "*__Pyx_GetItemInt_Generic": 1, + "*o": 8, "*r": 7, "PyObject_GetItem": 1, "__Pyx_GetItemInt_List": 1, @@ -8450,12 +6697,14 @@ "PySequenceMethods": 1, "*m": 1, "tp_as_sequence": 1, + "m": 8, "sq_item": 2, "sq_length": 2, "PySequence_Check": 1, "__Pyx_RaiseTooManyValuesError": 1, "expected": 2, "__Pyx_RaiseNeedMoreValuesError": 1, + "index": 58, "__Pyx_RaiseNoneNotIterableError": 1, "__Pyx_IterFinish": 1, "__Pyx_IternextUnpackEndCheck": 1, @@ -8464,6 +6713,7 @@ "strides": 1, "suboffsets": 1, "__Pyx_Buf_DimInfo": 2, + "refcount": 2, "pybuffer": 1, "__Pyx_Buffer": 2, "*rcbuffer": 1, @@ -8478,11 +6728,13 @@ "__Pyx_minusones": 1, "*__Pyx_Import": 1, "*from_list": 1, + "level": 12, "__Pyx_RaiseImportError": 1, "__Pyx_Print": 1, "__pyx_print": 1, "__pyx_print_kwargs": 1, "__Pyx_PrintOne": 1, + "stream": 3, "__Pyx_CREAL": 4, ".real": 3, "__Pyx_CIMAG": 4, @@ -8522,6 +6774,7 @@ "cabs": 1, "cpow": 1, "__Pyx_PyInt_AsUnsignedChar": 1, + "short": 6, "__Pyx_PyInt_AsUnsignedShort": 1, "__Pyx_PyInt_AsUnsignedInt": 1, "__Pyx_PyInt_AsChar": 1, @@ -8549,6 +6802,7 @@ "*__Pyx_ImportType": 1, "*module_name": 1, "*class_name": 1, + "strict": 2, "__Pyx_GetVtable": 1, "code_line": 4, "PyCodeObject*": 2, @@ -8568,6 +6822,7 @@ "c_line": 1, "py_line": 1, "__Pyx_InitStrings": 1, + "*t": 2, "*__pyx_ptype_7cpython_4type_type": 1, "*__pyx_ptype_5numpy_dtype": 1, "*__pyx_ptype_5numpy_flatiter": 1, @@ -8914,6 +7169,443 @@ "__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 1, "__pyx_base.__pyx_vtab": 1, "__pyx_base.loss": 1, + "": 1, + "": 2, + "local": 5, + "memory": 4, + "RF_OPTION_DEFAULT_ARGUMENTS": 24, + "RF_String*": 222, + "rfString_Create": 4, + "...": 127, + "i_rfString_Create": 3, + "READ_VSNPRINTF_ARGS": 5, + "rfUTF8_VerifySequence": 7, + "RF_FAILURE": 24, + "RE_STRING_INIT_FAILURE": 8, + "buffAllocated": 11, + "RF_String": 27, + "i_NVrfString_Create": 3, + "i_rfString_CreateLocal1": 3, + "RF_OPTION_SOURCE_ENCODING": 30, + "RF_UTF8": 8, + "characterLength": 16, + "*codepoints": 2, + "rfLMS_MacroEvalPtr": 2, + "RF_LMS": 6, + "RF_UTF16_LE": 9, + "RF_UTF16_BE": 7, + "codepoints": 44, + "i/2": 2, + "RF_UTF32_LE": 3, + "RF_UTF32_BE": 3, + "UTF16": 4, + "rfUTF16_Decode": 5, + "cleanup": 12, + "rfUTF16_Decode_swap": 5, + "RF_UTF16_BE//": 2, + "RF_UTF32_LE//": 2, + "copy": 4, + "UTF32": 4, + "into": 8, + "RF_UTF32_BE//": 2, + "": 2, + "endif": 6, + "any": 3, + "other": 16, + "UTF": 17, + "8": 15, + "encode": 2, + "and": 15, + "them": 3, + "rfUTF8_Encode": 4, + "0": 11, + "While": 2, + "attempting": 2, + "create": 2, + "temporary": 4, + "given": 5, + "sequence": 6, + "could": 2, + "not": 6, + "be": 6, + "properly": 2, + "encoded": 2, + "RE_UTF8_ENCODING": 2, + "End": 2, + "Non": 2, + "code=": 2, + "normally": 1, + "since": 5, + "here": 5, + "have": 2, + "validity": 2, + "get": 4, + "character": 11, + "Error": 2, + "at": 3, + "String": 11, + "Allocation": 2, + "due": 2, + "invalid": 2, + "rfLMS_Push": 4, + "Memory": 4, + "allocation": 3, + "Local": 2, + "Stack": 2, + "failed": 2, + "Insufficient": 2, + "space": 4, + "Consider": 2, + "compiling": 2, + "library": 3, + "with": 9, + "bigger": 3, + "Quitting": 2, + "proccess": 2, + "RE_LOCALMEMSTACK_INSUFFICIENT": 8, + "i_NVrfString_CreateLocal": 3, + "during": 1, + "string": 18, + "rfString_Init": 3, + "str": 162, + "i_rfString_Init": 3, + "i_NVrfString_Init": 3, + "rfString_Create_cp": 2, + "rfString_Init_cp": 3, + "RF_HEXLE_UI": 8, + "RF_HEXGE_UI": 6, + "ffff": 4, + "xFC0": 4, + "xF000": 2, + "xE": 2, + "F000": 2, + "C0000": 2, + "RE_UTF8_INVALID_CODE_POINT": 2, + "rfString_Create_i": 2, + "numLen": 8, + "max": 4, + "is": 17, + "most": 3, + "environment": 3, + "so": 4, + "chars": 3, + "will": 3, + "certainly": 3, + "fit": 3, + "it": 12, + "sprintf": 10, + "strcpy": 4, + "rfString_Init_i": 2, + "rfString_Create_f": 2, + "rfString_Init_f": 2, + "rfString_Create_UTF16": 2, + "rfString_Init_UTF16": 3, + "utf8ByteLength": 34, + "last": 1, + "utf": 1, + "null": 4, + "termination": 3, + "byteLength*2": 1, + "allocate": 1, + "same": 1, + "as": 4, + "different": 1, + "RE_INPUT": 1, + "ends": 3, + "rfString_Create_UTF32": 2, + "rfString_Init_UTF32": 3, + "off": 8, + "codeBuffer": 9, + "xFEFF": 1, + "big": 14, + "endian": 20, + "xFFFE0000": 1, + "little": 7, + "according": 1, + "standard": 1, + "no": 4, + "BOM": 1, + "means": 1, + "rfUTF32_Length": 1, + "i_rfString_Assign": 3, + "dest": 7, + "sourceP": 2, + "source": 8, + "RF_REALLOC": 9, + "rfString_Assign_char": 2, + "<5)>": 1, + "rfString_Create_nc": 3, + "i_rfString_Create_nc": 3, + "bytesWritten": 2, + "i_NVrfString_Create_nc": 3, + "rfString_Init_nc": 4, + "i_rfString_Init_nc": 3, + "i_NVrfString_Init_nc": 3, + "rfString_Destroy": 2, + "rfString_Deinit": 3, + "rfString_ToUTF16": 4, + "charsN": 5, + "rfUTF8_Decode": 2, + "rfUTF16_Encode": 1, + "rfString_ToUTF32": 4, + "rfString_Length": 5, + "RF_STRING_ITERATE_START": 9, + "RF_STRING_ITERATE_END": 9, + "rfString_GetChar": 2, + "thisstr": 210, + "codePoint": 18, + "RF_STRING_INDEX_OUT_OF_BOUNDS": 2, + "rfString_BytePosToCodePoint": 7, + "rfString_BytePosToCharPos": 4, + "thisstrP": 32, + "bytepos": 12, + "charPos": 8, + "byteI": 7, + "i_rfString_Equal": 3, + "s1P": 2, + "s2P": 2, + "i_rfString_Find": 5, + "sstrP": 6, + "optionsP": 11, + "sstr": 39, + "*optionsP": 8, + "RF_BITFLAG_ON": 5, + "RF_CASE_IGNORE": 2, + "strstr": 2, + "RF_MATCH_WORD": 5, + "": 1, + "0x5a": 1, + "match": 16, + "0x7a": 1, + "substring": 5, + "search": 1, + "zero": 2, + "equals": 1, + "then": 1, + "okay": 1, + "rfString_Equal": 4, + "RFS_": 8, + "ERANGE": 1, + "RE_STRING_TOFLOAT_UNDERFLOW": 1, + "RE_STRING_TOFLOAT": 1, + "rfString_Copy_OUT": 2, + "srcP": 6, + "src": 16, + "rfString_Copy_IN": 2, + "dst": 15, + "rfString_Copy_chars": 2, + "bytePos": 23, + "terminate": 1, + "i_rfString_ScanfAfter": 3, + "afterstrP": 2, + "format": 4, + "afterstr": 5, + "sscanf": 1, + "<=0)>": 1, + "Counts": 1, + "how": 1, + "many": 1, + "times": 1, + "occurs": 1, + "inside": 2, + "i_rfString_Count": 5, + "sstr2": 2, + "move": 12, + "rfString_FindBytePos": 10, + "i_DECLIMEX_": 121, + "rfString_Tokenize": 2, + "sep": 3, + "tokensN": 2, + "RF_String**": 2, + "tokens": 5, + "*tokensN": 1, + "rfString_Count": 4, + "lstr": 6, + "lstrP": 1, + "rstr": 24, + "rstrP": 5, + "temp": 11, + "start": 10, + "rfString_After": 4, + "result": 48, + "rfString_Beforev": 4, + "parNP": 6, + "i_rfString_Beforev": 16, + "parN": 10, + "*parNP": 2, + "minPos": 17, + "thisPos": 8, + "va_list": 3, + "argList": 8, + "va_start": 3, + "va_arg": 2, + "va_end": 3, + "i_rfString_Before": 5, + "i_rfString_After": 5, + "afterP": 2, + "after": 6, + "rfString_Afterv": 4, + "i_rfString_Afterv": 16, + "minPosLength": 3, + "go": 8, + "i_rfString_Append": 3, + "otherP": 4, + "strncat": 1, + "rfString_Append_i": 2, + "rfString_Append_f": 2, + "i_rfString_Prepend": 3, + "goes": 1, + "i_rfString_Remove": 6, + "numberP": 1, + "*numberP": 1, + "occurences": 5, + "done": 1, + "<=thisstr->": 1, + "i_rfString_KeepOnly": 3, + "keepstrP": 2, + "keepLength": 2, + "charValue": 12, + "*keepChars": 1, + "keepstr": 5, + "exists": 6, + "charBLength": 5, + "keepChars": 4, + "*keepLength": 1, + "rfString_Iterate_Start": 6, + "rfString_Iterate_End": 4, + "": 1, + "does": 1, + "exist": 2, + "back": 1, + "cover": 1, + "that": 9, + "effectively": 1, + "gets": 1, + "deleted": 1, + "rfUTF8_FromCodepoint": 1, + "this": 5, + "kind": 1, + "non": 1, + "clean": 1, + "way": 1, + "macro": 2, + "internally": 1, + "uses": 1, + "byteIndex_": 12, + "variable": 1, + "use": 1, + "determine": 1, + "current": 5, + "iteration": 6, + "backs": 1, + "memmove": 2, + "by": 1, + "contiuing": 1, + "make": 3, + "sure": 2, + "position": 1, + "won": 1, + "array": 1, + "rfString_PruneStart": 2, + "nBytePos": 23, + "rfString_PruneEnd": 2, + "RF_STRING_ITERATEB_START": 2, + "RF_STRING_ITERATEB_END": 2, + "rfString_PruneMiddleB": 2, + "pBytePos": 15, + "indexing": 1, + "works": 1, + "pbytePos": 2, + "pth": 2, + "include": 6, + "rfString_PruneMiddleF": 2, + "got": 1, + "all": 2, + "i_rfString_Replace": 6, + "numP": 1, + "*numP": 1, + "RF_StringX": 2, + "just": 1, + "finding": 1, + "foundN": 10, + "diff": 93, + "bSize": 4, + "bytePositions": 17, + "bSize*sizeof": 1, + "rfStringX_FromString_IN": 1, + "temp.bIndex": 2, + "temp.bytes": 1, + "temp.byteLength": 1, + "rfStringX_Deinit": 1, + "replace": 3, + "removed": 2, + "one": 2, + "orSize": 5, + "nSize": 4, + "number*diff": 1, + "strncpy": 3, + "smaller": 1, + "diff*number": 1, + "remove": 1, + "strings": 5, + "equal": 1, + "i_rfString_StripStart": 3, + "subP": 7, + "RF_String*sub": 2, + "noMatch": 8, + "*subValues": 2, + "subLength": 6, + "sub": 12, + "subValues": 8, + "*subLength": 2, + "i_rfString_StripEnd": 3, + "lastBytePos": 4, + "testity": 2, + "i_rfString_Strip": 3, + "res1": 2, + "rfString_StripStart": 3, + "res2": 2, + "rfString_StripEnd": 3, + "rfString_Create_fUTF8": 2, + "rfString_Init_fUTF8": 3, + "unused": 3, + "rfString_Assign_fUTF8": 2, + "FILE*f": 2, + "utf8BufferSize": 4, + "function": 6, + "rfString_Append_fUTF8": 2, + "rfString_Append": 5, + "rfString_Create_fUTF16": 2, + "rfString_Init_fUTF16": 3, + "rfFReadLine_UTF16LE": 4, + "rfFReadLine_UTF16BE": 6, + "rfString_Assign_fUTF16": 2, + "rfString_Append_fUTF16": 2, + "char*utf8": 3, + "rfString_Create_fUTF32": 2, + "rfString_Init_fUTF32": 3, + "rfFReadLine_UTF32LE": 4, + "<0)>": 1, + "Failure": 1, + "initialize": 1, + "reading": 1, + "Little": 1, + "Endian": 1, + "32": 1, + "bytesN=": 1, + "rfString_Assign_fUTF32": 2, + "rfString_Append_fUTF32": 2, + "i_rfString_Fwrite": 5, + "sP": 2, + "encodingP": 1, + "*utf32": 1, + "utf16": 11, + "*encodingP": 1, + "fwrite": 5, + "logging": 5, + "utf32": 10, + "i_WRITE_CHECK": 1, + "RE_FILE_WRITE": 1, "syscalldef": 1, "syscalldefs": 1, "SYSCALL_OR_NUM": 3, @@ -8921,1001 +7613,614 @@ "MAKE_UINT16": 3, "SYS_exit": 1, "SYS_fork": 1, - "__wglew_h__": 2, - "__WGLEW_H__": 1, - "__wglext_h_": 2, - "wglext.h": 1, - "wglew.h": 1, - "WINAPI": 119, - "": 1, - "GLEW_STATIC": 1, - "WGL_3DFX_multisample": 2, - "WGL_SAMPLE_BUFFERS_3DFX": 1, - "WGL_SAMPLES_3DFX": 1, - "WGLEW_3DFX_multisample": 1, - "WGLEW_GET_VAR": 49, - "__WGLEW_3DFX_multisample": 2, - "WGL_3DL_stereo_control": 2, - "WGL_STEREO_EMITTER_ENABLE_3DL": 1, - "WGL_STEREO_EMITTER_DISABLE_3DL": 1, - "WGL_STEREO_POLARITY_NORMAL_3DL": 1, - "WGL_STEREO_POLARITY_INVERT_3DL": 1, - "BOOL": 84, - "PFNWGLSETSTEREOEMITTERSTATE3DLPROC": 2, - "HDC": 65, - "hDC": 33, - "UINT": 30, - "uState": 1, - "wglSetStereoEmitterState3DL": 1, - "WGLEW_GET_FUN": 120, - "__wglewSetStereoEmitterState3DL": 2, - "WGLEW_3DL_stereo_control": 1, - "__WGLEW_3DL_stereo_control": 2, - "WGL_AMD_gpu_association": 2, - "WGL_GPU_VENDOR_AMD": 1, - "F00": 1, - "WGL_GPU_RENDERER_STRING_AMD": 1, - "F01": 1, - "WGL_GPU_OPENGL_VERSION_STRING_AMD": 1, - "F02": 1, - "WGL_GPU_FASTEST_TARGET_GPUS_AMD": 1, - "A2": 2, - "WGL_GPU_RAM_AMD": 1, - "A3": 2, - "WGL_GPU_CLOCK_AMD": 1, - "A4": 2, - "WGL_GPU_NUM_PIPES_AMD": 1, - "A5": 3, - "WGL_GPU_NUM_SIMD_AMD": 1, - "A6": 2, - "WGL_GPU_NUM_RB_AMD": 1, - "A7": 2, - "WGL_GPU_NUM_SPI_AMD": 1, - "A8": 2, - "VOID": 6, - "PFNWGLBLITCONTEXTFRAMEBUFFERAMDPROC": 2, - "HGLRC": 14, - "dstCtx": 1, - "GLint": 18, - "srcX0": 1, - "srcY0": 1, - "srcX1": 1, - "srcY1": 1, - "dstX0": 1, - "dstY0": 1, - "dstX1": 1, - "dstY1": 1, - "GLbitfield": 1, - "mask": 1, - "GLenum": 8, - "filter": 1, - "PFNWGLCREATEASSOCIATEDCONTEXTAMDPROC": 2, - "PFNWGLCREATEASSOCIATEDCONTEXTATTRIBSAMDPROC": 2, - "hShareContext": 2, - "attribList": 2, - "PFNWGLDELETEASSOCIATEDCONTEXTAMDPROC": 2, - "hglrc": 5, - "PFNWGLGETCONTEXTGPUIDAMDPROC": 2, - "PFNWGLGETCURRENTASSOCIATEDCONTEXTAMDPROC": 2, - "PFNWGLGETGPUIDSAMDPROC": 2, - "maxCount": 1, - "UINT*": 6, - "ids": 1, - "INT": 3, - "PFNWGLGETGPUINFOAMDPROC": 2, - "property": 1, - "dataType": 1, - "PFNWGLMAKEASSOCIATEDCONTEXTCURRENTAMDPROC": 2, - "wglBlitContextFramebufferAMD": 1, - "__wglewBlitContextFramebufferAMD": 2, - "wglCreateAssociatedContextAMD": 1, - "__wglewCreateAssociatedContextAMD": 2, - "wglCreateAssociatedContextAttribsAMD": 1, - "__wglewCreateAssociatedContextAttribsAMD": 2, - "wglDeleteAssociatedContextAMD": 1, - "__wglewDeleteAssociatedContextAMD": 2, - "wglGetContextGPUIDAMD": 1, - "__wglewGetContextGPUIDAMD": 2, - "wglGetCurrentAssociatedContextAMD": 1, - "__wglewGetCurrentAssociatedContextAMD": 2, - "wglGetGPUIDsAMD": 1, - "__wglewGetGPUIDsAMD": 2, - "wglGetGPUInfoAMD": 1, - "__wglewGetGPUInfoAMD": 2, - "wglMakeAssociatedContextCurrentAMD": 1, - "__wglewMakeAssociatedContextCurrentAMD": 2, - "WGLEW_AMD_gpu_association": 1, - "__WGLEW_AMD_gpu_association": 2, - "WGL_ARB_buffer_region": 2, - "WGL_FRONT_COLOR_BUFFER_BIT_ARB": 1, - "WGL_BACK_COLOR_BUFFER_BIT_ARB": 1, - "WGL_DEPTH_BUFFER_BIT_ARB": 1, - "WGL_STENCIL_BUFFER_BIT_ARB": 1, - "HANDLE": 14, - "PFNWGLCREATEBUFFERREGIONARBPROC": 2, - "iLayerPlane": 5, - "uType": 1, - "PFNWGLDELETEBUFFERREGIONARBPROC": 2, - "hRegion": 3, - "PFNWGLRESTOREBUFFERREGIONARBPROC": 2, - "width": 3, - "height": 3, - "xSrc": 1, - "ySrc": 1, - "PFNWGLSAVEBUFFERREGIONARBPROC": 2, - "wglCreateBufferRegionARB": 1, - "__wglewCreateBufferRegionARB": 2, - "wglDeleteBufferRegionARB": 1, - "__wglewDeleteBufferRegionARB": 2, - "wglRestoreBufferRegionARB": 1, - "__wglewRestoreBufferRegionARB": 2, - "wglSaveBufferRegionARB": 1, - "__wglewSaveBufferRegionARB": 2, - "WGLEW_ARB_buffer_region": 1, - "__WGLEW_ARB_buffer_region": 2, - "WGL_ARB_create_context": 2, - "WGL_CONTEXT_DEBUG_BIT_ARB": 1, - "WGL_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB": 1, - "WGL_CONTEXT_MAJOR_VERSION_ARB": 1, - "WGL_CONTEXT_MINOR_VERSION_ARB": 1, - "WGL_CONTEXT_LAYER_PLANE_ARB": 1, - "WGL_CONTEXT_FLAGS_ARB": 1, - "ERROR_INVALID_VERSION_ARB": 1, - "ERROR_INVALID_PROFILE_ARB": 1, - "PFNWGLCREATECONTEXTATTRIBSARBPROC": 2, - "wglCreateContextAttribsARB": 1, - "__wglewCreateContextAttribsARB": 2, - "WGLEW_ARB_create_context": 1, - "__WGLEW_ARB_create_context": 2, - "WGL_ARB_create_context_profile": 2, - "WGL_CONTEXT_CORE_PROFILE_BIT_ARB": 1, - "WGL_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB": 1, - "WGL_CONTEXT_PROFILE_MASK_ARB": 1, - "WGLEW_ARB_create_context_profile": 1, - "__WGLEW_ARB_create_context_profile": 2, - "WGL_ARB_create_context_robustness": 2, - "WGL_CONTEXT_ROBUST_ACCESS_BIT_ARB": 1, - "WGL_LOSE_CONTEXT_ON_RESET_ARB": 1, - "WGL_CONTEXT_RESET_NOTIFICATION_STRATEGY_ARB": 1, - "WGL_NO_RESET_NOTIFICATION_ARB": 1, - "WGLEW_ARB_create_context_robustness": 1, - "__WGLEW_ARB_create_context_robustness": 2, - "WGL_ARB_extensions_string": 2, - "PFNWGLGETEXTENSIONSSTRINGARBPROC": 2, - "hdc": 16, - "wglGetExtensionsStringARB": 1, - "__wglewGetExtensionsStringARB": 2, - "WGLEW_ARB_extensions_string": 1, - "__WGLEW_ARB_extensions_string": 2, - "WGL_ARB_framebuffer_sRGB": 2, - "WGL_FRAMEBUFFER_SRGB_CAPABLE_ARB": 1, - "A9": 2, - "WGLEW_ARB_framebuffer_sRGB": 1, - "__WGLEW_ARB_framebuffer_sRGB": 2, - "WGL_ARB_make_current_read": 2, - "ERROR_INVALID_PIXEL_TYPE_ARB": 1, - "ERROR_INCOMPATIBLE_DEVICE_CONTEXTS_ARB": 1, - "PFNWGLGETCURRENTREADDCARBPROC": 2, - "PFNWGLMAKECONTEXTCURRENTARBPROC": 2, - "hDrawDC": 2, - "hReadDC": 2, - "wglGetCurrentReadDCARB": 1, - "__wglewGetCurrentReadDCARB": 2, - "wglMakeContextCurrentARB": 1, - "__wglewMakeContextCurrentARB": 2, - "WGLEW_ARB_make_current_read": 1, - "__WGLEW_ARB_make_current_read": 2, - "WGL_ARB_multisample": 2, - "WGL_SAMPLE_BUFFERS_ARB": 1, - "WGL_SAMPLES_ARB": 1, - "WGLEW_ARB_multisample": 1, - "__WGLEW_ARB_multisample": 2, - "WGL_ARB_pbuffer": 2, - "WGL_DRAW_TO_PBUFFER_ARB": 1, - "D": 8, - "WGL_MAX_PBUFFER_PIXELS_ARB": 1, - "WGL_MAX_PBUFFER_WIDTH_ARB": 1, - "WGL_MAX_PBUFFER_HEIGHT_ARB": 1, - "WGL_PBUFFER_LARGEST_ARB": 1, - "WGL_PBUFFER_WIDTH_ARB": 1, - "WGL_PBUFFER_HEIGHT_ARB": 1, - "WGL_PBUFFER_LOST_ARB": 1, - "DECLARE_HANDLE": 6, - "HPBUFFERARB": 12, - "PFNWGLCREATEPBUFFERARBPROC": 2, - "iPixelFormat": 6, - "iWidth": 2, - "iHeight": 2, - "piAttribList": 4, - "PFNWGLDESTROYPBUFFERARBPROC": 2, - "hPbuffer": 14, - "PFNWGLGETPBUFFERDCARBPROC": 2, - "PFNWGLQUERYPBUFFERARBPROC": 2, - "iAttribute": 8, - "piValue": 8, - "PFNWGLRELEASEPBUFFERDCARBPROC": 2, - "wglCreatePbufferARB": 1, - "__wglewCreatePbufferARB": 2, - "wglDestroyPbufferARB": 1, - "__wglewDestroyPbufferARB": 2, - "wglGetPbufferDCARB": 1, - "__wglewGetPbufferDCARB": 2, - "wglQueryPbufferARB": 1, - "__wglewQueryPbufferARB": 2, - "wglReleasePbufferDCARB": 1, - "__wglewReleasePbufferDCARB": 2, - "WGLEW_ARB_pbuffer": 1, - "__WGLEW_ARB_pbuffer": 2, - "WGL_ARB_pixel_format": 2, - "WGL_NUMBER_PIXEL_FORMATS_ARB": 1, - "WGL_DRAW_TO_WINDOW_ARB": 1, - "WGL_DRAW_TO_BITMAP_ARB": 1, - "WGL_ACCELERATION_ARB": 1, - "WGL_NEED_PALETTE_ARB": 1, - "WGL_NEED_SYSTEM_PALETTE_ARB": 1, - "WGL_SWAP_LAYER_BUFFERS_ARB": 1, - "WGL_SWAP_METHOD_ARB": 1, - "WGL_NUMBER_OVERLAYS_ARB": 1, - "WGL_NUMBER_UNDERLAYS_ARB": 1, - "WGL_TRANSPARENT_ARB": 1, - "WGL_SHARE_DEPTH_ARB": 1, - "WGL_SHARE_STENCIL_ARB": 1, - "WGL_SHARE_ACCUM_ARB": 1, - "WGL_SUPPORT_GDI_ARB": 1, - "WGL_SUPPORT_OPENGL_ARB": 1, - "WGL_DOUBLE_BUFFER_ARB": 1, - "WGL_STEREO_ARB": 1, - "WGL_PIXEL_TYPE_ARB": 1, - "WGL_COLOR_BITS_ARB": 1, - "WGL_RED_BITS_ARB": 1, - "WGL_RED_SHIFT_ARB": 1, - "WGL_GREEN_BITS_ARB": 1, - "WGL_GREEN_SHIFT_ARB": 1, - "WGL_BLUE_BITS_ARB": 1, - "WGL_BLUE_SHIFT_ARB": 1, - "WGL_ALPHA_BITS_ARB": 1, - "B": 9, - "WGL_ALPHA_SHIFT_ARB": 1, - "WGL_ACCUM_BITS_ARB": 1, - "WGL_ACCUM_RED_BITS_ARB": 1, - "WGL_ACCUM_GREEN_BITS_ARB": 1, - "WGL_ACCUM_BLUE_BITS_ARB": 1, - "WGL_ACCUM_ALPHA_BITS_ARB": 1, - "WGL_DEPTH_BITS_ARB": 1, - "WGL_STENCIL_BITS_ARB": 1, - "WGL_AUX_BUFFERS_ARB": 1, - "WGL_NO_ACCELERATION_ARB": 1, - "WGL_GENERIC_ACCELERATION_ARB": 1, - "WGL_FULL_ACCELERATION_ARB": 1, - "WGL_SWAP_EXCHANGE_ARB": 1, - "WGL_SWAP_COPY_ARB": 1, - "WGL_SWAP_UNDEFINED_ARB": 1, - "WGL_TYPE_RGBA_ARB": 1, - "WGL_TYPE_COLORINDEX_ARB": 1, - "WGL_TRANSPARENT_RED_VALUE_ARB": 1, - "WGL_TRANSPARENT_GREEN_VALUE_ARB": 1, - "WGL_TRANSPARENT_BLUE_VALUE_ARB": 1, - "WGL_TRANSPARENT_ALPHA_VALUE_ARB": 1, - "WGL_TRANSPARENT_INDEX_VALUE_ARB": 1, - "PFNWGLCHOOSEPIXELFORMATARBPROC": 2, - "piAttribIList": 2, - "FLOAT": 4, - "*pfAttribFList": 2, - "nMaxFormats": 2, - "*piFormats": 2, - "*nNumFormats": 2, - "PFNWGLGETPIXELFORMATATTRIBFVARBPROC": 2, - "nAttributes": 4, - "piAttributes": 4, - "*pfValues": 2, - "PFNWGLGETPIXELFORMATATTRIBIVARBPROC": 2, - "*piValues": 2, - "wglChoosePixelFormatARB": 1, - "__wglewChoosePixelFormatARB": 2, - "wglGetPixelFormatAttribfvARB": 1, - "__wglewGetPixelFormatAttribfvARB": 2, - "wglGetPixelFormatAttribivARB": 1, - "__wglewGetPixelFormatAttribivARB": 2, - "WGLEW_ARB_pixel_format": 1, - "__WGLEW_ARB_pixel_format": 2, - "WGL_ARB_pixel_format_float": 2, - "WGL_TYPE_RGBA_FLOAT_ARB": 1, - "A0": 3, - "WGLEW_ARB_pixel_format_float": 1, - "__WGLEW_ARB_pixel_format_float": 2, - "WGL_ARB_render_texture": 2, - "WGL_BIND_TO_TEXTURE_RGB_ARB": 1, - "WGL_BIND_TO_TEXTURE_RGBA_ARB": 1, - "WGL_TEXTURE_FORMAT_ARB": 1, - "WGL_TEXTURE_TARGET_ARB": 1, - "WGL_MIPMAP_TEXTURE_ARB": 1, - "WGL_TEXTURE_RGB_ARB": 1, - "WGL_TEXTURE_RGBA_ARB": 1, - "WGL_NO_TEXTURE_ARB": 2, - "WGL_TEXTURE_CUBE_MAP_ARB": 1, - "WGL_TEXTURE_1D_ARB": 1, - "WGL_TEXTURE_2D_ARB": 1, - "WGL_MIPMAP_LEVEL_ARB": 1, - "WGL_CUBE_MAP_FACE_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB": 1, - "WGL_FRONT_LEFT_ARB": 1, - "WGL_FRONT_RIGHT_ARB": 1, - "WGL_BACK_LEFT_ARB": 1, - "WGL_BACK_RIGHT_ARB": 1, - "WGL_AUX0_ARB": 1, - "WGL_AUX1_ARB": 1, - "WGL_AUX2_ARB": 1, - "WGL_AUX3_ARB": 1, - "WGL_AUX4_ARB": 1, - "WGL_AUX5_ARB": 1, - "WGL_AUX6_ARB": 1, - "WGL_AUX7_ARB": 1, - "WGL_AUX8_ARB": 1, - "WGL_AUX9_ARB": 1, - "PFNWGLBINDTEXIMAGEARBPROC": 2, - "iBuffer": 2, - "PFNWGLRELEASETEXIMAGEARBPROC": 2, - "PFNWGLSETPBUFFERATTRIBARBPROC": 2, - "wglBindTexImageARB": 1, - "__wglewBindTexImageARB": 2, - "wglReleaseTexImageARB": 1, - "__wglewReleaseTexImageARB": 2, - "wglSetPbufferAttribARB": 1, - "__wglewSetPbufferAttribARB": 2, - "WGLEW_ARB_render_texture": 1, - "__WGLEW_ARB_render_texture": 2, - "WGL_ATI_pixel_format_float": 2, - "WGL_TYPE_RGBA_FLOAT_ATI": 1, - "GL_RGBA_FLOAT_MODE_ATI": 1, - "GL_COLOR_CLEAR_UNCLAMPED_VALUE_ATI": 1, - "WGLEW_ATI_pixel_format_float": 1, - "__WGLEW_ATI_pixel_format_float": 2, - "WGL_ATI_render_texture_rectangle": 2, - "WGL_TEXTURE_RECTANGLE_ATI": 1, - "WGLEW_ATI_render_texture_rectangle": 1, - "__WGLEW_ATI_render_texture_rectangle": 2, - "WGL_EXT_create_context_es2_profile": 2, - "WGL_CONTEXT_ES2_PROFILE_BIT_EXT": 1, - "WGLEW_EXT_create_context_es2_profile": 1, - "__WGLEW_EXT_create_context_es2_profile": 2, - "WGL_EXT_depth_float": 2, - "WGL_DEPTH_FLOAT_EXT": 1, - "WGLEW_EXT_depth_float": 1, - "__WGLEW_EXT_depth_float": 2, - "WGL_EXT_display_color_table": 2, - "GLboolean": 53, - "PFNWGLBINDDISPLAYCOLORTABLEEXTPROC": 2, - "GLushort": 3, - "PFNWGLCREATEDISPLAYCOLORTABLEEXTPROC": 2, - "PFNWGLDESTROYDISPLAYCOLORTABLEEXTPROC": 2, - "PFNWGLLOADDISPLAYCOLORTABLEEXTPROC": 2, - "GLushort*": 1, - "table": 1, - "GLuint": 9, - "wglBindDisplayColorTableEXT": 1, - "__wglewBindDisplayColorTableEXT": 2, - "wglCreateDisplayColorTableEXT": 1, - "__wglewCreateDisplayColorTableEXT": 2, - "wglDestroyDisplayColorTableEXT": 1, - "__wglewDestroyDisplayColorTableEXT": 2, - "wglLoadDisplayColorTableEXT": 1, - "__wglewLoadDisplayColorTableEXT": 2, - "WGLEW_EXT_display_color_table": 1, - "__WGLEW_EXT_display_color_table": 2, - "WGL_EXT_extensions_string": 2, - "PFNWGLGETEXTENSIONSSTRINGEXTPROC": 2, - "wglGetExtensionsStringEXT": 1, - "__wglewGetExtensionsStringEXT": 2, - "WGLEW_EXT_extensions_string": 1, - "__WGLEW_EXT_extensions_string": 2, - "WGL_EXT_framebuffer_sRGB": 2, - "WGL_FRAMEBUFFER_SRGB_CAPABLE_EXT": 1, - "WGLEW_EXT_framebuffer_sRGB": 1, - "__WGLEW_EXT_framebuffer_sRGB": 2, - "WGL_EXT_make_current_read": 2, - "ERROR_INVALID_PIXEL_TYPE_EXT": 1, - "PFNWGLGETCURRENTREADDCEXTPROC": 2, - "PFNWGLMAKECONTEXTCURRENTEXTPROC": 2, - "wglGetCurrentReadDCEXT": 1, - "__wglewGetCurrentReadDCEXT": 2, - "wglMakeContextCurrentEXT": 1, - "__wglewMakeContextCurrentEXT": 2, - "WGLEW_EXT_make_current_read": 1, - "__WGLEW_EXT_make_current_read": 2, - "WGL_EXT_multisample": 2, - "WGL_SAMPLE_BUFFERS_EXT": 1, - "WGL_SAMPLES_EXT": 1, - "WGLEW_EXT_multisample": 1, - "__WGLEW_EXT_multisample": 2, - "WGL_EXT_pbuffer": 2, - "WGL_DRAW_TO_PBUFFER_EXT": 1, - "WGL_MAX_PBUFFER_PIXELS_EXT": 1, - "WGL_MAX_PBUFFER_WIDTH_EXT": 1, - "WGL_MAX_PBUFFER_HEIGHT_EXT": 1, - "WGL_OPTIMAL_PBUFFER_WIDTH_EXT": 1, - "WGL_OPTIMAL_PBUFFER_HEIGHT_EXT": 1, - "WGL_PBUFFER_LARGEST_EXT": 1, - "WGL_PBUFFER_WIDTH_EXT": 1, - "WGL_PBUFFER_HEIGHT_EXT": 1, - "HPBUFFEREXT": 6, - "PFNWGLCREATEPBUFFEREXTPROC": 2, - "PFNWGLDESTROYPBUFFEREXTPROC": 2, - "PFNWGLGETPBUFFERDCEXTPROC": 2, - "PFNWGLQUERYPBUFFEREXTPROC": 2, - "PFNWGLRELEASEPBUFFERDCEXTPROC": 2, - "wglCreatePbufferEXT": 1, - "__wglewCreatePbufferEXT": 2, - "wglDestroyPbufferEXT": 1, - "__wglewDestroyPbufferEXT": 2, - "wglGetPbufferDCEXT": 1, - "__wglewGetPbufferDCEXT": 2, - "wglQueryPbufferEXT": 1, - "__wglewQueryPbufferEXT": 2, - "wglReleasePbufferDCEXT": 1, - "__wglewReleasePbufferDCEXT": 2, - "WGLEW_EXT_pbuffer": 1, - "__WGLEW_EXT_pbuffer": 2, - "WGL_EXT_pixel_format": 2, - "WGL_NUMBER_PIXEL_FORMATS_EXT": 1, - "WGL_DRAW_TO_WINDOW_EXT": 1, - "WGL_DRAW_TO_BITMAP_EXT": 1, - "WGL_ACCELERATION_EXT": 1, - "WGL_NEED_PALETTE_EXT": 1, - "WGL_NEED_SYSTEM_PALETTE_EXT": 1, - "WGL_SWAP_LAYER_BUFFERS_EXT": 1, - "WGL_SWAP_METHOD_EXT": 1, - "WGL_NUMBER_OVERLAYS_EXT": 1, - "WGL_NUMBER_UNDERLAYS_EXT": 1, - "WGL_TRANSPARENT_EXT": 1, - "WGL_TRANSPARENT_VALUE_EXT": 1, - "WGL_SHARE_DEPTH_EXT": 1, - "WGL_SHARE_STENCIL_EXT": 1, - "WGL_SHARE_ACCUM_EXT": 1, - "WGL_SUPPORT_GDI_EXT": 1, - "WGL_SUPPORT_OPENGL_EXT": 1, - "WGL_DOUBLE_BUFFER_EXT": 1, - "WGL_STEREO_EXT": 1, - "WGL_PIXEL_TYPE_EXT": 1, - "WGL_COLOR_BITS_EXT": 1, - "WGL_RED_BITS_EXT": 1, - "WGL_RED_SHIFT_EXT": 1, - "WGL_GREEN_BITS_EXT": 1, - "WGL_GREEN_SHIFT_EXT": 1, - "WGL_BLUE_BITS_EXT": 1, - "WGL_BLUE_SHIFT_EXT": 1, - "WGL_ALPHA_BITS_EXT": 1, - "WGL_ALPHA_SHIFT_EXT": 1, - "WGL_ACCUM_BITS_EXT": 1, - "WGL_ACCUM_RED_BITS_EXT": 1, - "WGL_ACCUM_GREEN_BITS_EXT": 1, - "WGL_ACCUM_BLUE_BITS_EXT": 1, - "WGL_ACCUM_ALPHA_BITS_EXT": 1, - "WGL_DEPTH_BITS_EXT": 1, - "WGL_STENCIL_BITS_EXT": 1, - "WGL_AUX_BUFFERS_EXT": 1, - "WGL_NO_ACCELERATION_EXT": 1, - "WGL_GENERIC_ACCELERATION_EXT": 1, - "WGL_FULL_ACCELERATION_EXT": 1, - "WGL_SWAP_EXCHANGE_EXT": 1, - "WGL_SWAP_COPY_EXT": 1, - "WGL_SWAP_UNDEFINED_EXT": 1, - "WGL_TYPE_RGBA_EXT": 1, - "WGL_TYPE_COLORINDEX_EXT": 1, - "PFNWGLCHOOSEPIXELFORMATEXTPROC": 2, - "PFNWGLGETPIXELFORMATATTRIBFVEXTPROC": 2, - "PFNWGLGETPIXELFORMATATTRIBIVEXTPROC": 2, - "wglChoosePixelFormatEXT": 1, - "__wglewChoosePixelFormatEXT": 2, - "wglGetPixelFormatAttribfvEXT": 1, - "__wglewGetPixelFormatAttribfvEXT": 2, - "wglGetPixelFormatAttribivEXT": 1, - "__wglewGetPixelFormatAttribivEXT": 2, - "WGLEW_EXT_pixel_format": 1, - "__WGLEW_EXT_pixel_format": 2, - "WGL_EXT_pixel_format_packed_float": 2, - "WGL_TYPE_RGBA_UNSIGNED_FLOAT_EXT": 1, - "WGLEW_EXT_pixel_format_packed_float": 1, - "__WGLEW_EXT_pixel_format_packed_float": 2, - "WGL_EXT_swap_control": 2, - "PFNWGLGETSWAPINTERVALEXTPROC": 2, - "PFNWGLSWAPINTERVALEXTPROC": 2, - "interval": 1, - "wglGetSwapIntervalEXT": 1, - "__wglewGetSwapIntervalEXT": 2, - "wglSwapIntervalEXT": 1, - "__wglewSwapIntervalEXT": 2, - "WGLEW_EXT_swap_control": 1, - "__WGLEW_EXT_swap_control": 2, - "WGL_I3D_digital_video_control": 2, - "WGL_DIGITAL_VIDEO_CURSOR_ALPHA_FRAMEBUFFER_I3D": 1, - "WGL_DIGITAL_VIDEO_CURSOR_ALPHA_VALUE_I3D": 1, - "WGL_DIGITAL_VIDEO_CURSOR_INCLUDED_I3D": 1, - "WGL_DIGITAL_VIDEO_GAMMA_CORRECTED_I3D": 1, - "PFNWGLGETDIGITALVIDEOPARAMETERSI3DPROC": 2, - "PFNWGLSETDIGITALVIDEOPARAMETERSI3DPROC": 2, - "wglGetDigitalVideoParametersI3D": 1, - "__wglewGetDigitalVideoParametersI3D": 2, - "wglSetDigitalVideoParametersI3D": 1, - "__wglewSetDigitalVideoParametersI3D": 2, - "WGLEW_I3D_digital_video_control": 1, - "__WGLEW_I3D_digital_video_control": 2, - "WGL_I3D_gamma": 2, - "WGL_GAMMA_TABLE_SIZE_I3D": 1, - "WGL_GAMMA_EXCLUDE_DESKTOP_I3D": 1, - "PFNWGLGETGAMMATABLEI3DPROC": 2, - "iEntries": 2, - "USHORT*": 2, - "puRed": 2, - "USHORT": 4, - "*puGreen": 2, - "*puBlue": 2, - "PFNWGLGETGAMMATABLEPARAMETERSI3DPROC": 2, - "PFNWGLSETGAMMATABLEI3DPROC": 2, - "PFNWGLSETGAMMATABLEPARAMETERSI3DPROC": 2, - "wglGetGammaTableI3D": 1, - "__wglewGetGammaTableI3D": 2, - "wglGetGammaTableParametersI3D": 1, - "__wglewGetGammaTableParametersI3D": 2, - "wglSetGammaTableI3D": 1, - "__wglewSetGammaTableI3D": 2, - "wglSetGammaTableParametersI3D": 1, - "__wglewSetGammaTableParametersI3D": 2, - "WGLEW_I3D_gamma": 1, - "__WGLEW_I3D_gamma": 2, - "WGL_I3D_genlock": 2, - "WGL_GENLOCK_SOURCE_MULTIVIEW_I3D": 1, - "WGL_GENLOCK_SOURCE_EXTERNAL_SYNC_I3D": 1, - "WGL_GENLOCK_SOURCE_EXTERNAL_FIELD_I3D": 1, - "WGL_GENLOCK_SOURCE_EXTERNAL_TTL_I3D": 1, - "WGL_GENLOCK_SOURCE_DIGITAL_SYNC_I3D": 1, - "WGL_GENLOCK_SOURCE_DIGITAL_FIELD_I3D": 1, - "WGL_GENLOCK_SOURCE_EDGE_FALLING_I3D": 1, - "WGL_GENLOCK_SOURCE_EDGE_RISING_I3D": 1, - "WGL_GENLOCK_SOURCE_EDGE_BOTH_I3D": 1, - "PFNWGLDISABLEGENLOCKI3DPROC": 2, - "PFNWGLENABLEGENLOCKI3DPROC": 2, - "PFNWGLGENLOCKSAMPLERATEI3DPROC": 2, - "uRate": 2, - "PFNWGLGENLOCKSOURCEDELAYI3DPROC": 2, - "uDelay": 2, - "PFNWGLGENLOCKSOURCEEDGEI3DPROC": 2, - "uEdge": 2, - "PFNWGLGENLOCKSOURCEI3DPROC": 2, - "uSource": 2, - "PFNWGLGETGENLOCKSAMPLERATEI3DPROC": 2, - "PFNWGLGETGENLOCKSOURCEDELAYI3DPROC": 2, - "PFNWGLGETGENLOCKSOURCEEDGEI3DPROC": 2, - "PFNWGLGETGENLOCKSOURCEI3DPROC": 2, - "PFNWGLISENABLEDGENLOCKI3DPROC": 2, - "BOOL*": 3, - "pFlag": 3, - "PFNWGLQUERYGENLOCKMAXSOURCEDELAYI3DPROC": 2, - "uMaxLineDelay": 1, - "*uMaxPixelDelay": 1, - "wglDisableGenlockI3D": 1, - "__wglewDisableGenlockI3D": 2, - "wglEnableGenlockI3D": 1, - "__wglewEnableGenlockI3D": 2, - "wglGenlockSampleRateI3D": 1, - "__wglewGenlockSampleRateI3D": 2, - "wglGenlockSourceDelayI3D": 1, - "__wglewGenlockSourceDelayI3D": 2, - "wglGenlockSourceEdgeI3D": 1, - "__wglewGenlockSourceEdgeI3D": 2, - "wglGenlockSourceI3D": 1, - "__wglewGenlockSourceI3D": 2, - "wglGetGenlockSampleRateI3D": 1, - "__wglewGetGenlockSampleRateI3D": 2, - "wglGetGenlockSourceDelayI3D": 1, - "__wglewGetGenlockSourceDelayI3D": 2, - "wglGetGenlockSourceEdgeI3D": 1, - "__wglewGetGenlockSourceEdgeI3D": 2, - "wglGetGenlockSourceI3D": 1, - "__wglewGetGenlockSourceI3D": 2, - "wglIsEnabledGenlockI3D": 1, - "__wglewIsEnabledGenlockI3D": 2, - "wglQueryGenlockMaxSourceDelayI3D": 1, - "__wglewQueryGenlockMaxSourceDelayI3D": 2, - "WGLEW_I3D_genlock": 1, - "__WGLEW_I3D_genlock": 2, - "WGL_I3D_image_buffer": 2, - "WGL_IMAGE_BUFFER_MIN_ACCESS_I3D": 1, - "WGL_IMAGE_BUFFER_LOCK_I3D": 1, - "PFNWGLASSOCIATEIMAGEBUFFEREVENTSI3DPROC": 2, - "HANDLE*": 3, - "pEvent": 1, - "LPVOID": 3, - "*pAddress": 1, - "DWORD": 5, - "*pSize": 1, - "PFNWGLCREATEIMAGEBUFFERI3DPROC": 2, - "dwSize": 1, - "uFlags": 1, - "PFNWGLDESTROYIMAGEBUFFERI3DPROC": 2, - "pAddress": 2, - "PFNWGLRELEASEIMAGEBUFFEREVENTSI3DPROC": 2, - "LPVOID*": 1, - "wglAssociateImageBufferEventsI3D": 1, - "__wglewAssociateImageBufferEventsI3D": 2, - "wglCreateImageBufferI3D": 1, - "__wglewCreateImageBufferI3D": 2, - "wglDestroyImageBufferI3D": 1, - "__wglewDestroyImageBufferI3D": 2, - "wglReleaseImageBufferEventsI3D": 1, - "__wglewReleaseImageBufferEventsI3D": 2, - "WGLEW_I3D_image_buffer": 1, - "__WGLEW_I3D_image_buffer": 2, - "WGL_I3D_swap_frame_lock": 2, - "PFNWGLDISABLEFRAMELOCKI3DPROC": 2, - "PFNWGLENABLEFRAMELOCKI3DPROC": 2, - "PFNWGLISENABLEDFRAMELOCKI3DPROC": 2, - "PFNWGLQUERYFRAMELOCKMASTERI3DPROC": 2, - "wglDisableFrameLockI3D": 1, - "__wglewDisableFrameLockI3D": 2, - "wglEnableFrameLockI3D": 1, - "__wglewEnableFrameLockI3D": 2, - "wglIsEnabledFrameLockI3D": 1, - "__wglewIsEnabledFrameLockI3D": 2, - "wglQueryFrameLockMasterI3D": 1, - "__wglewQueryFrameLockMasterI3D": 2, - "WGLEW_I3D_swap_frame_lock": 1, - "__WGLEW_I3D_swap_frame_lock": 2, - "WGL_I3D_swap_frame_usage": 2, - "PFNWGLBEGINFRAMETRACKINGI3DPROC": 2, - "PFNWGLENDFRAMETRACKINGI3DPROC": 2, - "PFNWGLGETFRAMEUSAGEI3DPROC": 2, - "float*": 1, - "pUsage": 1, - "PFNWGLQUERYFRAMETRACKINGI3DPROC": 2, - "DWORD*": 1, - "pFrameCount": 1, - "*pMissedFrames": 1, - "*pLastMissedUsage": 1, - "wglBeginFrameTrackingI3D": 1, - "__wglewBeginFrameTrackingI3D": 2, - "wglEndFrameTrackingI3D": 1, - "__wglewEndFrameTrackingI3D": 2, - "wglGetFrameUsageI3D": 1, - "__wglewGetFrameUsageI3D": 2, - "wglQueryFrameTrackingI3D": 1, - "__wglewQueryFrameTrackingI3D": 2, - "WGLEW_I3D_swap_frame_usage": 1, - "__WGLEW_I3D_swap_frame_usage": 2, - "WGL_NV_DX_interop": 2, - "WGL_ACCESS_READ_ONLY_NV": 1, - "WGL_ACCESS_READ_WRITE_NV": 1, - "WGL_ACCESS_WRITE_DISCARD_NV": 1, - "PFNWGLDXCLOSEDEVICENVPROC": 2, - "hDevice": 9, - "PFNWGLDXLOCKOBJECTSNVPROC": 2, - "hObjects": 2, - "PFNWGLDXOBJECTACCESSNVPROC": 2, - "hObject": 2, - "access": 2, - "PFNWGLDXOPENDEVICENVPROC": 2, - "dxDevice": 1, - "PFNWGLDXREGISTEROBJECTNVPROC": 2, - "dxObject": 2, - "PFNWGLDXSETRESOURCESHAREHANDLENVPROC": 2, - "shareHandle": 1, - "PFNWGLDXUNLOCKOBJECTSNVPROC": 2, - "PFNWGLDXUNREGISTEROBJECTNVPROC": 2, - "wglDXCloseDeviceNV": 1, - "__wglewDXCloseDeviceNV": 2, - "wglDXLockObjectsNV": 1, - "__wglewDXLockObjectsNV": 2, - "wglDXObjectAccessNV": 1, - "__wglewDXObjectAccessNV": 2, - "wglDXOpenDeviceNV": 1, - "__wglewDXOpenDeviceNV": 2, - "wglDXRegisterObjectNV": 1, - "__wglewDXRegisterObjectNV": 2, - "wglDXSetResourceShareHandleNV": 1, - "__wglewDXSetResourceShareHandleNV": 2, - "wglDXUnlockObjectsNV": 1, - "__wglewDXUnlockObjectsNV": 2, - "wglDXUnregisterObjectNV": 1, - "__wglewDXUnregisterObjectNV": 2, - "WGLEW_NV_DX_interop": 1, - "__WGLEW_NV_DX_interop": 2, - "WGL_NV_copy_image": 2, - "PFNWGLCOPYIMAGESUBDATANVPROC": 2, - "hSrcRC": 1, - "srcName": 1, - "srcTarget": 1, - "srcLevel": 1, - "srcX": 1, - "srcY": 1, - "srcZ": 1, - "hDstRC": 1, - "dstName": 1, - "dstTarget": 1, - "dstLevel": 1, - "dstX": 1, - "dstY": 1, - "dstZ": 1, - "GLsizei": 4, - "wglCopyImageSubDataNV": 1, - "__wglewCopyImageSubDataNV": 2, - "WGLEW_NV_copy_image": 1, - "__WGLEW_NV_copy_image": 2, - "WGL_NV_float_buffer": 2, - "WGL_FLOAT_COMPONENTS_NV": 1, - "B0": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_R_NV": 1, - "B1": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RG_NV": 1, - "B2": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGB_NV": 1, - "B3": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGBA_NV": 1, - "B4": 1, - "WGL_TEXTURE_FLOAT_R_NV": 1, - "B5": 1, - "WGL_TEXTURE_FLOAT_RG_NV": 1, - "B6": 1, - "WGL_TEXTURE_FLOAT_RGB_NV": 1, - "B7": 1, - "WGL_TEXTURE_FLOAT_RGBA_NV": 1, - "B8": 1, - "WGLEW_NV_float_buffer": 1, - "__WGLEW_NV_float_buffer": 2, - "WGL_NV_gpu_affinity": 2, - "WGL_ERROR_INCOMPATIBLE_AFFINITY_MASKS_NV": 1, - "D0": 1, - "WGL_ERROR_MISSING_AFFINITY_MASK_NV": 1, - "D1": 1, - "HGPUNV": 5, - "_GPU_DEVICE": 1, - "cb": 1, - "CHAR": 2, - "DeviceName": 1, - "DeviceString": 1, - "Flags": 1, - "RECT": 1, - "rcVirtualScreen": 1, - "GPU_DEVICE": 1, - "*PGPU_DEVICE": 1, - "PFNWGLCREATEAFFINITYDCNVPROC": 2, - "*phGpuList": 1, - "PFNWGLDELETEDCNVPROC": 2, - "PFNWGLENUMGPUDEVICESNVPROC": 2, - "hGpu": 1, - "iDeviceIndex": 1, - "PGPU_DEVICE": 1, - "lpGpuDevice": 1, - "PFNWGLENUMGPUSFROMAFFINITYDCNVPROC": 2, - "hAffinityDC": 1, - "iGpuIndex": 2, - "*hGpu": 1, - "PFNWGLENUMGPUSNVPROC": 2, - "*phGpu": 1, - "wglCreateAffinityDCNV": 1, - "__wglewCreateAffinityDCNV": 2, - "wglDeleteDCNV": 1, - "__wglewDeleteDCNV": 2, - "wglEnumGpuDevicesNV": 1, - "__wglewEnumGpuDevicesNV": 2, - "wglEnumGpusFromAffinityDCNV": 1, - "__wglewEnumGpusFromAffinityDCNV": 2, - "wglEnumGpusNV": 1, - "__wglewEnumGpusNV": 2, - "WGLEW_NV_gpu_affinity": 1, - "__WGLEW_NV_gpu_affinity": 2, - "WGL_NV_multisample_coverage": 2, - "WGL_COVERAGE_SAMPLES_NV": 1, - "WGL_COLOR_SAMPLES_NV": 1, - "B9": 1, - "WGLEW_NV_multisample_coverage": 1, - "__WGLEW_NV_multisample_coverage": 2, - "WGL_NV_present_video": 2, - "WGL_NUM_VIDEO_SLOTS_NV": 1, - "F0": 1, - "HVIDEOOUTPUTDEVICENV": 2, - "PFNWGLBINDVIDEODEVICENVPROC": 2, - "hDc": 6, - "uVideoSlot": 2, - "hVideoDevice": 4, - "PFNWGLENUMERATEVIDEODEVICESNVPROC": 2, - "HVIDEOOUTPUTDEVICENV*": 1, - "phDeviceList": 2, - "PFNWGLQUERYCURRENTCONTEXTNVPROC": 2, - "wglBindVideoDeviceNV": 1, - "__wglewBindVideoDeviceNV": 2, - "wglEnumerateVideoDevicesNV": 1, - "__wglewEnumerateVideoDevicesNV": 2, - "wglQueryCurrentContextNV": 1, - "__wglewQueryCurrentContextNV": 2, - "WGLEW_NV_present_video": 1, - "__WGLEW_NV_present_video": 2, - "WGL_NV_render_depth_texture": 2, - "WGL_BIND_TO_TEXTURE_DEPTH_NV": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_DEPTH_NV": 1, - "WGL_DEPTH_TEXTURE_FORMAT_NV": 1, - "WGL_TEXTURE_DEPTH_COMPONENT_NV": 1, - "WGL_DEPTH_COMPONENT_NV": 1, - "WGLEW_NV_render_depth_texture": 1, - "__WGLEW_NV_render_depth_texture": 2, - "WGL_NV_render_texture_rectangle": 2, - "WGL_BIND_TO_TEXTURE_RECTANGLE_RGB_NV": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_RGBA_NV": 1, - "A1": 1, - "WGL_TEXTURE_RECTANGLE_NV": 1, - "WGLEW_NV_render_texture_rectangle": 1, - "__WGLEW_NV_render_texture_rectangle": 2, - "WGL_NV_swap_group": 2, - "PFNWGLBINDSWAPBARRIERNVPROC": 2, - "group": 3, - "barrier": 1, - "PFNWGLJOINSWAPGROUPNVPROC": 2, - "PFNWGLQUERYFRAMECOUNTNVPROC": 2, - "GLuint*": 3, - "PFNWGLQUERYMAXSWAPGROUPSNVPROC": 2, - "maxGroups": 1, - "*maxBarriers": 1, - "PFNWGLQUERYSWAPGROUPNVPROC": 2, - "*barrier": 1, - "PFNWGLRESETFRAMECOUNTNVPROC": 2, - "wglBindSwapBarrierNV": 1, - "__wglewBindSwapBarrierNV": 2, - "wglJoinSwapGroupNV": 1, - "__wglewJoinSwapGroupNV": 2, - "wglQueryFrameCountNV": 1, - "__wglewQueryFrameCountNV": 2, - "wglQueryMaxSwapGroupsNV": 1, - "__wglewQueryMaxSwapGroupsNV": 2, - "wglQuerySwapGroupNV": 1, - "__wglewQuerySwapGroupNV": 2, - "wglResetFrameCountNV": 1, - "__wglewResetFrameCountNV": 2, - "WGLEW_NV_swap_group": 1, - "__WGLEW_NV_swap_group": 2, - "WGL_NV_vertex_array_range": 2, - "PFNWGLALLOCATEMEMORYNVPROC": 2, - "GLfloat": 3, - "readFrequency": 1, - "writeFrequency": 1, - "priority": 1, - "PFNWGLFREEMEMORYNVPROC": 2, - "*pointer": 1, - "wglAllocateMemoryNV": 1, - "__wglewAllocateMemoryNV": 2, - "wglFreeMemoryNV": 1, - "__wglewFreeMemoryNV": 2, - "WGLEW_NV_vertex_array_range": 1, - "__WGLEW_NV_vertex_array_range": 2, - "WGL_NV_video_capture": 2, - "WGL_UNIQUE_ID_NV": 1, - "CE": 1, - "WGL_NUM_VIDEO_CAPTURE_SLOTS_NV": 1, - "CF": 1, - "HVIDEOINPUTDEVICENV": 5, - "PFNWGLBINDVIDEOCAPTUREDEVICENVPROC": 2, - "PFNWGLENUMERATEVIDEOCAPTUREDEVICESNVPROC": 2, - "HVIDEOINPUTDEVICENV*": 1, - "PFNWGLLOCKVIDEOCAPTUREDEVICENVPROC": 2, - "PFNWGLQUERYVIDEOCAPTUREDEVICENVPROC": 2, - "PFNWGLRELEASEVIDEOCAPTUREDEVICENVPROC": 2, - "wglBindVideoCaptureDeviceNV": 1, - "__wglewBindVideoCaptureDeviceNV": 2, - "wglEnumerateVideoCaptureDevicesNV": 1, - "__wglewEnumerateVideoCaptureDevicesNV": 2, - "wglLockVideoCaptureDeviceNV": 1, - "__wglewLockVideoCaptureDeviceNV": 2, - "wglQueryVideoCaptureDeviceNV": 1, - "__wglewQueryVideoCaptureDeviceNV": 2, - "wglReleaseVideoCaptureDeviceNV": 1, - "__wglewReleaseVideoCaptureDeviceNV": 2, - "WGLEW_NV_video_capture": 1, - "__WGLEW_NV_video_capture": 2, - "WGL_NV_video_output": 2, - "WGL_BIND_TO_VIDEO_RGB_NV": 1, - "WGL_BIND_TO_VIDEO_RGBA_NV": 1, - "C1": 1, - "WGL_BIND_TO_VIDEO_RGB_AND_DEPTH_NV": 1, - "C2": 1, - "WGL_VIDEO_OUT_COLOR_NV": 1, - "C3": 1, - "WGL_VIDEO_OUT_ALPHA_NV": 1, - "C4": 1, - "WGL_VIDEO_OUT_DEPTH_NV": 1, - "C5": 1, - "WGL_VIDEO_OUT_COLOR_AND_ALPHA_NV": 1, - "C6": 1, - "WGL_VIDEO_OUT_COLOR_AND_DEPTH_NV": 1, - "C7": 1, - "WGL_VIDEO_OUT_FRAME": 1, - "C8": 1, - "WGL_VIDEO_OUT_FIELD_1": 1, - "C9": 1, - "WGL_VIDEO_OUT_FIELD_2": 1, - "CA": 1, - "WGL_VIDEO_OUT_STACKED_FIELDS_1_2": 1, - "CB": 1, - "WGL_VIDEO_OUT_STACKED_FIELDS_2_1": 1, - "CC": 1, - "HPVIDEODEV": 4, - "PFNWGLBINDVIDEOIMAGENVPROC": 2, - "iVideoBuffer": 2, - "PFNWGLGETVIDEODEVICENVPROC": 2, - "numDevices": 1, - "HPVIDEODEV*": 1, - "PFNWGLGETVIDEOINFONVPROC": 2, - "hpVideoDevice": 1, - "long*": 2, - "pulCounterOutputPbuffer": 1, - "*pulCounterOutputVideo": 1, - "PFNWGLRELEASEVIDEODEVICENVPROC": 2, - "PFNWGLRELEASEVIDEOIMAGENVPROC": 2, - "PFNWGLSENDPBUFFERTOVIDEONVPROC": 2, - "iBufferType": 1, - "pulCounterPbuffer": 1, - "bBlock": 1, - "wglBindVideoImageNV": 1, - "__wglewBindVideoImageNV": 2, - "wglGetVideoDeviceNV": 1, - "__wglewGetVideoDeviceNV": 2, - "wglGetVideoInfoNV": 1, - "__wglewGetVideoInfoNV": 2, - "wglReleaseVideoDeviceNV": 1, - "__wglewReleaseVideoDeviceNV": 2, - "wglReleaseVideoImageNV": 1, - "__wglewReleaseVideoImageNV": 2, - "wglSendPbufferToVideoNV": 1, - "__wglewSendPbufferToVideoNV": 2, - "WGLEW_NV_video_output": 1, - "__WGLEW_NV_video_output": 2, - "WGL_OML_sync_control": 2, - "PFNWGLGETMSCRATEOMLPROC": 2, - "INT32*": 1, - "numerator": 1, - "INT32": 1, - "*denominator": 1, - "PFNWGLGETSYNCVALUESOMLPROC": 2, - "INT64*": 3, - "INT64": 18, - "*msc": 3, - "*sbc": 3, - "PFNWGLSWAPBUFFERSMSCOMLPROC": 2, - "target_msc": 3, - "divisor": 3, - "remainder": 3, - "PFNWGLSWAPLAYERBUFFERSMSCOMLPROC": 2, - "fuPlanes": 1, - "PFNWGLWAITFORMSCOMLPROC": 2, - "PFNWGLWAITFORSBCOMLPROC": 2, - "target_sbc": 1, - "wglGetMscRateOML": 1, - "__wglewGetMscRateOML": 2, - "wglGetSyncValuesOML": 1, - "__wglewGetSyncValuesOML": 2, - "wglSwapBuffersMscOML": 1, - "__wglewSwapBuffersMscOML": 2, - "wglSwapLayerBuffersMscOML": 1, - "__wglewSwapLayerBuffersMscOML": 2, - "wglWaitForMscOML": 1, - "__wglewWaitForMscOML": 2, - "wglWaitForSbcOML": 1, - "__wglewWaitForSbcOML": 2, - "WGLEW_OML_sync_control": 1, - "__WGLEW_OML_sync_control": 2, - "GLEW_MX": 4, - "WGLEW_EXPORT": 167, - "GLEWAPI": 6, - "WGLEWContextStruct": 2, - "WGLEWContext": 1, - "wglewContextInit": 2, - "WGLEWContext*": 2, - "wglewContextIsSupported": 2, - "wglewInit": 1, - "wglewGetContext": 4, - "wglewIsSupported": 2, - "wglewGetExtension": 1, + "http_parser_h": 2, + "HTTP_PARSER_VERSION_MAJOR": 1, + "HTTP_PARSER_VERSION_MINOR": 1, + "": 2, + "__MINGW32__": 1, + "__int8": 2, + "int8_t": 3, + "__int16": 2, + "int16_t": 1, + "__int32": 2, + "__int64": 3, + "int64_t": 2, + "uint64_t": 8, + "ssize_t": 1, + "": 1, + "HTTP_PARSER_STRICT": 5, + "HTTP_PARSER_DEBUG": 4, + "HTTP_MAX_HEADER_SIZE": 2, + "*1024": 4, + "http_parser": 13, + "http_parser_settings": 5, + "HTTP_METHOD_MAP": 3, + "XX": 63, + "DELETE": 2, + "GET": 2, + "HEAD": 2, + "POST": 2, + "PUT": 2, + "CONNECT": 2, + "OPTIONS": 2, + "TRACE": 2, + "COPY": 2, + "LOCK": 2, + "MKCOL": 2, + "MOVE": 2, + "PROPFIND": 2, + "PROPPATCH": 2, + "SEARCH": 3, + "UNLOCK": 2, + "REPORT": 2, + "MKACTIVITY": 2, + "CHECKOUT": 2, + "MERGE": 2, + "MSEARCH": 1, + "M": 1, + "NOTIFY": 2, + "SUBSCRIBE": 2, + "UNSUBSCRIBE": 2, + "PATCH": 2, + "PURGE": 2, + "http_method": 4, + "HTTP_##name": 1, + "http_parser_type": 3, + "HTTP_REQUEST": 7, + "HTTP_RESPONSE": 3, + "HTTP_BOTH": 1, + "F_CHUNKED": 11, + "F_CONNECTION_KEEP_ALIVE": 3, + "F_CONNECTION_CLOSE": 3, + "F_TRAILING": 3, + "F_UPGRADE": 3, + "F_SKIPBODY": 4, + "HTTP_ERRNO_MAP": 3, + "OK": 1, + "CB_message_begin": 1, + "CB_url": 1, + "CB_header_field": 1, + "CB_header_value": 1, + "CB_headers_complete": 1, + "CB_body": 1, + "CB_message_complete": 1, + "INVALID_EOF_STATE": 1, + "HEADER_OVERFLOW": 1, + "CLOSED_CONNECTION": 1, + "INVALID_VERSION": 1, + "INVALID_STATUS": 1, + "INVALID_METHOD": 1, + "INVALID_URL": 1, + "INVALID_HOST": 1, + "INVALID_PORT": 1, + "INVALID_PATH": 1, + "INVALID_QUERY_STRING": 1, + "INVALID_FRAGMENT": 1, + "LF_EXPECTED": 1, + "INVALID_HEADER_TOKEN": 1, + "INVALID_CONTENT_LENGTH": 1, + "INVALID_CHUNK_SIZE": 1, + "INVALID_CONSTANT": 1, + "INVALID_INTERNAL_STATE": 1, + "STRICT": 1, + "PAUSED": 1, + "UNKNOWN": 1, + "HTTP_ERRNO_GEN": 3, + "HPE_##n": 1, + "http_errno": 11, + "HTTP_PARSER_ERRNO": 10, + "HTTP_PARSER_ERRNO_LINE": 2, + "error_lineno": 3, + "state": 104, + "header_state": 42, + "nread": 7, + "content_length": 27, + "http_major": 11, + "http_minor": 11, + "status_code": 8, + "method": 39, + "upgrade": 3, + "http_cb": 3, + "on_message_begin": 1, + "http_data_cb": 4, + "on_url": 1, + "on_header_field": 1, + "on_header_value": 1, + "on_headers_complete": 3, + "on_body": 1, + "on_message_complete": 1, + "http_parser_url_fields": 2, + "UF_SCHEMA": 2, + "UF_HOST": 3, + "UF_PORT": 5, + "UF_PATH": 2, + "UF_QUERY": 2, + "UF_FRAGMENT": 2, + "UF_MAX": 3, + "http_parser_url": 3, + "field_set": 5, + "port": 7, + "field_data": 5, + "http_parser_init": 2, + "*parser": 9, + "http_parser_execute": 2, + "*settings": 2, + "http_should_keep_alive": 2, + "*http_method_str": 1, + "*http_errno_name": 1, + "err": 38, + "*http_errno_description": 1, + "http_parser_parse_url": 2, + "buflen": 3, + "is_connect": 4, + "*u": 2, + "http_parser_pause": 2, + "paused": 3, + "": 2, + "ULLONG_MAX": 10, + "MIN": 3, + "SET_ERRNO": 47, + "e": 4, + "parser": 334, + "CALLBACK_NOTIFY_": 3, + "FOR": 11, + "ER": 4, + "HPE_OK": 10, + "settings": 6, + "on_##FOR": 4, + "HPE_CB_##FOR": 2, + "CALLBACK_NOTIFY": 10, + "CALLBACK_NOTIFY_NOADVANCE": 2, + "CALLBACK_DATA_": 4, + "LEN": 2, + "FOR##_mark": 7, + "CALLBACK_DATA": 10, + "CALLBACK_DATA_NOADVANCE": 6, + "MARK": 7, + "PROXY_CONNECTION": 4, + "CONNECTION": 4, + "CONTENT_LENGTH": 4, + "TRANSFER_ENCODING": 4, + "UPGRADE": 4, + "CHUNKED": 4, + "KEEP_ALIVE": 4, + "CLOSE": 4, + "*method_strings": 1, + "#string": 1, + "unhex": 3, + "normal_url_char": 3, + "T": 3, + "s_dead": 10, + "s_start_req_or_res": 4, + "s_res_or_resp_H": 3, + "s_start_res": 5, + "s_res_H": 3, + "s_res_HT": 4, + "s_res_HTT": 3, + "s_res_HTTP": 3, + "s_res_first_http_major": 3, + "s_res_http_major": 3, + "s_res_first_http_minor": 3, + "s_res_http_minor": 3, + "s_res_first_status_code": 3, + "s_res_status_code": 3, + "s_res_status": 3, + "s_res_line_almost_done": 4, + "s_start_req": 6, + "s_req_method": 4, + "s_req_spaces_before_url": 5, + "s_req_schema": 6, + "s_req_schema_slash": 6, + "s_req_schema_slash_slash": 6, + "s_req_host_start": 8, + "s_req_host_v6_start": 7, + "s_req_host_v6": 7, + "s_req_host_v6_end": 7, + "s_req_host": 8, + "s_req_port_start": 7, + "s_req_port": 6, + "s_req_path": 8, + "s_req_query_string_start": 8, + "s_req_query_string": 7, + "s_req_fragment_start": 7, + "s_req_fragment": 7, + "s_req_http_start": 3, + "s_req_http_H": 3, + "s_req_http_HT": 3, + "s_req_http_HTT": 3, + "s_req_http_HTTP": 3, + "s_req_first_http_major": 3, + "s_req_http_major": 3, + "s_req_first_http_minor": 3, + "s_req_http_minor": 3, + "s_req_line_almost_done": 4, + "s_header_field_start": 12, + "s_header_field": 4, + "s_header_value_start": 4, + "s_header_value": 5, + "s_header_value_lws": 3, + "s_header_almost_done": 6, + "s_chunk_size_start": 4, + "s_chunk_size": 3, + "s_chunk_parameters": 3, + "s_chunk_size_almost_done": 4, + "s_headers_almost_done": 4, + "s_headers_done": 4, + "s_chunk_data": 3, + "s_chunk_data_almost_done": 3, + "s_chunk_data_done": 3, + "s_body_identity": 3, + "s_body_identity_eof": 4, + "s_message_done": 3, + "PARSING_HEADER": 2, + "header_states": 1, + "h_general": 23, + "h_C": 3, + "h_CO": 3, + "h_CON": 3, + "h_matching_connection": 3, + "h_matching_proxy_connection": 3, + "h_matching_content_length": 3, + "h_matching_transfer_encoding": 3, + "h_matching_upgrade": 3, + "h_connection": 6, + "h_content_length": 5, + "h_transfer_encoding": 5, + "h_upgrade": 4, + "h_matching_transfer_encoding_chunked": 3, + "h_matching_connection_keep_alive": 3, + "h_matching_connection_close": 3, + "h_transfer_encoding_chunked": 4, + "h_connection_keep_alive": 4, + "h_connection_close": 4, + "Macros": 1, + "classes": 1, + "depends": 1, + "mode": 11, + "define": 14, + "CR": 18, + "LF": 21, + "LOWER": 7, + "0x20": 1, + "IS_ALPHA": 5, + "IS_NUM": 14, + "9": 1, + "IS_ALPHANUM": 3, + "IS_HEX": 2, + "TOKEN": 4, + "IS_URL_CHAR": 6, + "IS_HOST_CHAR": 4, + "0x80": 1, + "start_state": 1, + "cond": 1, + "HPE_STRICT": 1, + "HTTP_STRERROR_GEN": 3, + "#n": 1, + "*description": 1, + "http_strerror_tab": 7, + "http_message_needs_eof": 4, + "parse_url_char": 5, + "ch": 145, + "unhex_val": 7, + "*header_field_mark": 1, + "*header_value_mark": 1, + "*url_mark": 1, + "*body_mark": 1, + "message_complete": 7, + "HPE_INVALID_EOF_STATE": 1, + "header_field_mark": 2, + "header_value_mark": 2, + "url_mark": 2, + "HPE_HEADER_OVERFLOW": 1, + "reexecute_byte": 7, + "HPE_CLOSED_CONNECTION": 1, + "message_begin": 3, + "HPE_INVALID_CONSTANT": 3, + "HTTP_HEAD": 2, + "STRICT_CHECK": 15, + "HPE_INVALID_VERSION": 12, + "HPE_INVALID_STATUS": 3, + "HPE_INVALID_METHOD": 4, + "HTTP_CONNECT": 4, + "HTTP_DELETE": 1, + "HTTP_GET": 1, + "HTTP_LOCK": 1, + "HTTP_MKCOL": 2, + "HTTP_NOTIFY": 1, + "HTTP_OPTIONS": 1, + "HTTP_POST": 2, + "HTTP_REPORT": 1, + "HTTP_SUBSCRIBE": 2, + "HTTP_TRACE": 1, + "HTTP_UNLOCK": 2, + "*matcher": 1, + "matcher": 3, + "method_strings": 2, + "HTTP_CHECKOUT": 1, + "HTTP_COPY": 1, + "HTTP_MOVE": 1, + "HTTP_MERGE": 1, + "HTTP_MSEARCH": 1, + "HTTP_MKACTIVITY": 1, + "HTTP_SEARCH": 1, + "HTTP_PROPFIND": 2, + "HTTP_PUT": 2, + "HTTP_PATCH": 1, + "HTTP_PURGE": 1, + "HTTP_UNSUBSCRIBE": 1, + "HTTP_PROPPATCH": 1, + "url": 4, + "HPE_INVALID_URL": 4, + "HPE_LF_EXPECTED": 1, + "HPE_INVALID_HEADER_TOKEN": 2, + "header_field": 5, + "header_value": 6, + "HPE_INVALID_CONTENT_LENGTH": 4, + "NEW_MESSAGE": 6, + "HPE_CB_headers_complete": 1, + "to_read": 6, + "body": 6, + "body_mark": 2, + "HPE_INVALID_CHUNK_SIZE": 2, + "HPE_INVALID_INTERNAL_STATE": 1, + "1": 2, + "HPE_UNKNOWN": 1, + "Does": 1, + "see": 2, + "an": 2, + "find": 1, + "http_method_str": 1, + "memset": 4, + "http_errno_name": 1, + "/sizeof": 4, + ".name": 1, + "http_errno_description": 1, + ".description": 1, + "uf": 14, + "old_uf": 4, + ".off": 2, + "xffff": 1, + "HPE_PAUSED": 2, + "ATSHOME_LIBATS_DYNARRAY_CATS": 3, + "atslib_dynarray_memcpy": 1, + "atslib_dynarray_memmove": 1, + "ifndef": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "CONFIG_SMP": 1, + "DEFINE_MUTEX": 1, + "cpu_add_remove_lock": 3, + "cpu_maps_update_begin": 9, + "mutex_lock": 5, + "cpu_maps_update_done": 9, + "mutex_unlock": 6, + "RAW_NOTIFIER_HEAD": 1, + "cpu_chain": 4, + "cpu_hotplug_disabled": 7, + "CONFIG_HOTPLUG_CPU": 2, + "task_struct": 5, + "*active_writer": 1, + "mutex": 1, + "lock": 6, + "cpu_hotplug": 1, + ".active_writer": 1, + ".lock": 1, + "__MUTEX_INITIALIZER": 1, + "cpu_hotplug.lock": 8, + ".refcount": 1, + "get_online_cpus": 2, + "might_sleep": 1, + "cpu_hotplug.active_writer": 6, + "cpu_hotplug.refcount": 3, + "EXPORT_SYMBOL_GPL": 4, + "put_online_cpus": 2, + "wake_up_process": 1, + "cpu_hotplug_begin": 4, + "__set_current_state": 1, + "TASK_UNINTERRUPTIBLE": 1, + "schedule": 1, + "cpu_hotplug_done": 4, + "__ref": 6, + "register_cpu_notifier": 2, + "notifier_block": 3, + "*nb": 3, + "raw_notifier_chain_register": 1, + "nb": 2, + "__cpu_notify": 6, + "val": 20, + "*v": 3, + "nr_to_call": 2, + "*nr_calls": 1, + "__raw_notifier_call_chain": 1, + "nr_calls": 9, + "notifier_to_errno": 1, + "cpu_notify": 5, + "cpu_notify_nofail": 4, + "BUG_ON": 4, + "EXPORT_SYMBOL": 8, + "unregister_cpu_notifier": 2, + "raw_notifier_chain_unregister": 1, + "clear_tasks_mm_cpumask": 1, + "cpu": 57, + "WARN_ON": 1, + "cpu_online": 5, + "rcu_read_lock": 1, + "for_each_process": 2, + "find_lock_task_mm": 1, + "cpumask_clear_cpu": 5, + "mm_cpumask": 1, + "mm": 1, + "task_unlock": 1, + "rcu_read_unlock": 1, + "check_for_tasks": 2, + "write_lock_irq": 1, + "tasklist_lock": 2, + "task_cpu": 1, + "TASK_RUNNING": 1, + "utime": 1, + "stime": 1, + "printk": 12, + "KERN_WARNING": 3, + "comm": 1, + "task_pid_nr": 1, + "write_unlock_irq": 1, + "take_cpu_down_param": 3, + "mod": 13, + "*hcpu": 3, + "take_cpu_down": 2, + "*_param": 1, + "*param": 1, + "_param": 1, + "__cpu_disable": 1, + "CPU_DYING": 1, + "param": 2, + "hcpu": 10, + "_cpu_down": 3, + "tasks_frozen": 4, + "CPU_TASKS_FROZEN": 2, + "tcd_param": 2, + ".mod": 1, + ".hcpu": 1, + "num_online_cpus": 2, + "EBUSY": 3, + "CPU_DOWN_PREPARE": 1, + "CPU_DOWN_FAILED": 2, + "__func__": 2, + "out_release": 3, + "__stop_machine": 1, + "cpumask_of": 1, + "idle_cpu": 1, + "cpu_relax": 1, + "__cpu_die": 1, + "CPU_DEAD": 1, + "CPU_POST_DEAD": 1, + "cpu_down": 2, + "__cpuinit": 3, + "_cpu_up": 3, + "*idle": 1, + "cpu_present": 1, + "idle": 4, + "idle_thread_get": 1, + "IS_ERR": 1, + "PTR_ERR": 1, + "CPU_UP_PREPARE": 1, + "out_notify": 3, + "__cpu_up": 1, + "CPU_ONLINE": 1, + "CPU_UP_CANCELED": 1, + "cpu_up": 2, + "CONFIG_MEMORY_HOTPLUG": 2, + "nid": 5, + "pg_data_t": 1, + "*pgdat": 1, + "cpu_possible": 1, + "KERN_ERR": 5, + "CONFIG_IA64": 1, + "cpu_to_node": 1, + "node_online": 1, + "mem_online_node": 1, + "pgdat": 3, + "NODE_DATA": 1, + "node_zonelists": 1, + "_zonerefs": 1, + "zone": 1, + "zonelists_mutex": 2, + "build_all_zonelists": 1, + "CONFIG_PM_SLEEP_SMP": 2, + "cpumask_var_t": 1, + "frozen_cpus": 9, + "__weak": 4, + "arch_disable_nonboot_cpus_begin": 2, + "arch_disable_nonboot_cpus_end": 2, + "disable_nonboot_cpus": 1, + "first_cpu": 3, + "cpumask_first": 1, + "cpu_online_mask": 3, + "cpumask_clear": 2, + "for_each_online_cpu": 1, + "cpumask_set_cpu": 5, + "arch_enable_nonboot_cpus_begin": 2, + "arch_enable_nonboot_cpus_end": 2, + "enable_nonboot_cpus": 1, + "cpumask_empty": 1, + "KERN_INFO": 2, + "for_each_cpu": 1, + "__init": 2, + "alloc_frozen_cpus": 2, + "alloc_cpumask_var": 1, + "GFP_KERNEL": 1, + "__GFP_ZERO": 1, + "core_initcall": 2, + "cpu_hotplug_disable_before_freeze": 2, + "cpu_hotplug_enable_after_thaw": 2, + "cpu_hotplug_pm_callback": 2, + "action": 2, + "*ptr": 1, + "PM_SUSPEND_PREPARE": 1, + "PM_HIBERNATION_PREPARE": 1, + "PM_POST_SUSPEND": 1, + "PM_POST_HIBERNATION": 1, + "NOTIFY_DONE": 1, + "NOTIFY_OK": 1, + "cpu_hotplug_pm_sync_init": 2, + "pm_notifier": 1, + "notify_cpu_starting": 1, + "CPU_STARTING": 1, + "cpumask_test_cpu": 1, + "CPU_STARTING_FROZEN": 1, + "MASK_DECLARE_1": 3, + "UL": 1, + "MASK_DECLARE_2": 3, + "MASK_DECLARE_4": 3, + "MASK_DECLARE_8": 9, + "cpu_bit_bitmap": 2, + "BITS_PER_LONG": 2, + "BITS_TO_LONGS": 1, + "NR_CPUS": 2, + "DECLARE_BITMAP": 6, + "cpu_all_bits": 2, + "CPU_BITS_ALL": 2, + "CONFIG_INIT_ALL_POSSIBLE": 1, + "cpu_possible_bits": 6, + "CONFIG_NR_CPUS": 5, + "__read_mostly": 5, + "cpumask": 7, + "*const": 4, + "cpu_possible_mask": 2, + "to_cpumask": 15, + "cpu_online_bits": 5, + "cpu_present_bits": 5, + "cpu_present_mask": 2, + "cpu_active_bits": 4, + "cpu_active_mask": 2, + "set_cpu_possible": 1, + "bool": 6, + "possible": 2, + "set_cpu_present": 1, + "present": 2, + "set_cpu_online": 1, + "online": 2, + "set_cpu_active": 1, + "active": 2, + "init_cpu_present": 1, + "*src": 3, + "cpumask_copy": 3, + "init_cpu_possible": 1, + "init_cpu_online": 1, "yajl_status_to_string": 1, "yajl_status": 4, "statStr": 6, @@ -9966,14 +8271,1754 @@ "verbose": 2, "yajl_render_error_string": 1, "yajl_get_bytes_consumed": 1, - "yajl_free_error": 1 + "yajl_free_error": 1, + "REFU_USTRING_H": 2, + "": 1, + "RF_MODULE_STRINGS//": 1, + "module": 3, + "": 2, + "": 1, + "argument": 1, + "wrapping": 1, + "functionality": 1, + "": 1, + "unicode": 2, + "opening": 2, + "bracket": 4, + "calling": 4, + "xFF0FFFF": 1, + "rfUTF8_IsContinuationByte2": 1, + "b__": 3, + "0xBF": 1, + "pragma": 1, + "pack": 2, + "push": 1, + "internal": 4, + "author": 1, + "Lefteris": 1, + "09": 1, + "12": 1, + "2010": 1, + "endinternal": 1, + "brief": 1, + "representation": 2, + "The": 1, + "Refu": 2, + "Unicode": 1, + "has": 2, + "two": 1, + "versions": 1, + "One": 1, + "ref": 1, + "what": 1, + "operations": 1, + "can": 2, + "performed": 1, + "extended": 3, + "Strings": 2, + "Functions": 1, + "convert": 1, + "but": 1, + "always": 2, + "Once": 1, + "been": 1, + "created": 1, + "assumed": 1, + "valid": 1, + "every": 1, + "performs": 1, + "unless": 1, + "otherwise": 1, + "specified": 1, + "All": 1, + "functions": 2, + "which": 1, + "isinherited": 1, + "StringX": 2, + "their": 1, + "description": 1, + "used": 10, + "safely": 1, + "specific": 1, + "or": 1, + "needs": 1, + "manipulate": 1, + "Extended": 1, + "To": 1, + "documentation": 1, + "even": 1, + "clearer": 1, + "should": 2, + "marked": 1, + "notinherited": 1, + "cppcode": 1, + "constructor": 1, + "i_StringCHandle": 1, + "**": 6, + "@endcpp": 1, + "@endinternal": 1, + "*/": 1, + "#pragma": 1, + "pop": 1, + "RF_IAMHERE_FOR_DOXYGEN": 22, + "i_rfString_CreateLocal": 2, + "__VA_ARGS__": 66, + "RP_SELECT_FUNC_IF_NARGIS": 5, + "i_SELECT_RF_STRING_CREATE": 1, + "i_SELECT_RF_STRING_CREATE1": 1, + "i_SELECT_RF_STRING_CREATE0": 1, + "///Internal": 1, + "creates": 1, + "i_SELECT_RF_STRING_CREATELOCAL": 1, + "i_SELECT_RF_STRING_CREATELOCAL1": 1, + "i_SELECT_RF_STRING_CREATELOCAL0": 1, + "i_SELECT_RF_STRING_INIT": 1, + "i_SELECT_RF_STRING_INIT1": 1, + "i_SELECT_RF_STRING_INIT0": 1, + "i_SELECT_RF_STRING_CREATE_NC": 1, + "i_SELECT_RF_STRING_CREATE_NC1": 1, + "i_SELECT_RF_STRING_CREATE_NC0": 1, + "i_SELECT_RF_STRING_INIT_NC": 1, + "i_SELECT_RF_STRING_INIT_NC1": 1, + "i_SELECT_RF_STRING_INIT_NC0": 1, + "//@": 1, + "rfString_Assign": 2, + "i_DESTINATION_": 2, + "i_SOURCE_": 2, + "i_rfLMS_WRAP2": 5, + "rfString_ToUTF8": 2, + "i_STRING_": 2, + "rfString_ToCstr": 2, + "uint32_t*length": 1, + "string_": 9, + "startCharacterPos_": 4, + "characterUnicodeValue_": 4, + "j_": 6, + "//Two": 1, + "macros": 1, + "accomplish": 1, + "going": 1, + "backwards.": 1, + "This": 1, + "its": 1, + "pair.": 1, + "rfString_IterateB_Start": 1, + "characterPos_": 5, + "b_index_": 6, + "c_index_": 3, + "rfString_IterateB_End": 1, + "i_STRING1_": 2, + "i_STRING2_": 2, + "i_rfLMSX_WRAP2": 4, + "rfString_Find": 3, + "i_THISSTR_": 60, + "i_SEARCHSTR_": 26, + "i_OPTIONS_": 28, + "i_rfLMS_WRAP3": 4, + "i_RFI8_": 54, + "RF_SELECT_FUNC_IF_NARGGT": 10, + "i_NPSELECT_RF_STRING_FIND": 1, + "i_NPSELECT_RF_STRING_FIND1": 1, + "RF_COMPILE_ERROR": 33, + "i_NPSELECT_RF_STRING_FIND0": 1, + "RF_SELECT_FUNC": 10, + "i_SELECT_RF_STRING_FIND": 1, + "i_SELECT_RF_STRING_FIND2": 1, + "i_SELECT_RF_STRING_FIND3": 1, + "i_SELECT_RF_STRING_FIND1": 1, + "i_SELECT_RF_STRING_FIND0": 1, + "rfString_ToInt": 1, + "int32_t*": 1, + "rfString_ToDouble": 1, + "double*": 1, + "rfString_ScanfAfter": 2, + "i_AFTERSTR_": 8, + "i_FORMAT_": 2, + "i_VAR_": 2, + "i_rfLMSX_WRAP4": 11, + "i_NPSELECT_RF_STRING_COUNT": 1, + "i_NPSELECT_RF_STRING_COUNT1": 1, + "i_NPSELECT_RF_STRING_COUNT0": 1, + "i_SELECT_RF_STRING_COUNT": 1, + "i_SELECT_RF_STRING_COUNT2": 1, + "i_rfLMSX_WRAP3": 5, + "i_SELECT_RF_STRING_COUNT3": 1, + "i_SELECT_RF_STRING_COUNT1": 1, + "i_SELECT_RF_STRING_COUNT0": 1, + "rfString_Between": 3, + "i_rfString_Between": 4, + "i_NPSELECT_RF_STRING_BETWEEN": 1, + "i_NPSELECT_RF_STRING_BETWEEN1": 1, + "i_NPSELECT_RF_STRING_BETWEEN0": 1, + "i_SELECT_RF_STRING_BETWEEN": 1, + "i_SELECT_RF_STRING_BETWEEN4": 1, + "i_LEFTSTR_": 6, + "i_RIGHTSTR_": 6, + "i_RESULT_": 12, + "i_rfLMSX_WRAP5": 9, + "i_SELECT_RF_STRING_BETWEEN5": 1, + "i_SELECT_RF_STRING_BETWEEN3": 1, + "i_SELECT_RF_STRING_BETWEEN2": 1, + "i_SELECT_RF_STRING_BETWEEN1": 1, + "i_SELECT_RF_STRING_BETWEEN0": 1, + "i_NPSELECT_RF_STRING_BEFOREV": 1, + "i_NPSELECT_RF_STRING_BEFOREV1": 1, + "RF_SELECT_FUNC_IF_NARGGT2": 2, + "i_LIMSELECT_RF_STRING_BEFOREV": 1, + "i_NPSELECT_RF_STRING_BEFOREV0": 1, + "i_LIMSELECT_RF_STRING_BEFOREV1": 1, + "i_LIMSELECT_RF_STRING_BEFOREV0": 1, + "i_SELECT_RF_STRING_BEFOREV": 1, + "i_SELECT_RF_STRING_BEFOREV5": 1, + "i_ARG1_": 56, + "i_ARG2_": 56, + "i_ARG3_": 56, + "i_ARG4_": 56, + "i_RFUI8_": 28, + "i_SELECT_RF_STRING_BEFOREV6": 1, + "i_rfLMSX_WRAP6": 2, + "i_SELECT_RF_STRING_BEFOREV7": 1, + "i_rfLMSX_WRAP7": 2, + "i_SELECT_RF_STRING_BEFOREV8": 1, + "i_rfLMSX_WRAP8": 2, + "i_SELECT_RF_STRING_BEFOREV9": 1, + "i_rfLMSX_WRAP9": 2, + "i_SELECT_RF_STRING_BEFOREV10": 1, + "i_rfLMSX_WRAP10": 2, + "i_SELECT_RF_STRING_BEFOREV11": 1, + "i_rfLMSX_WRAP11": 2, + "i_SELECT_RF_STRING_BEFOREV12": 1, + "i_rfLMSX_WRAP12": 2, + "i_SELECT_RF_STRING_BEFOREV13": 1, + "i_rfLMSX_WRAP13": 2, + "i_SELECT_RF_STRING_BEFOREV14": 1, + "i_rfLMSX_WRAP14": 2, + "i_SELECT_RF_STRING_BEFOREV15": 1, + "i_rfLMSX_WRAP15": 2, + "i_SELECT_RF_STRING_BEFOREV16": 1, + "i_rfLMSX_WRAP16": 2, + "i_SELECT_RF_STRING_BEFOREV17": 1, + "i_rfLMSX_WRAP17": 2, + "i_SELECT_RF_STRING_BEFOREV18": 1, + "i_rfLMSX_WRAP18": 2, + "rfString_Before": 3, + "i_NPSELECT_RF_STRING_BEFORE": 1, + "i_NPSELECT_RF_STRING_BEFORE1": 1, + "i_NPSELECT_RF_STRING_BEFORE0": 1, + "i_SELECT_RF_STRING_BEFORE": 1, + "i_SELECT_RF_STRING_BEFORE3": 1, + "i_SELECT_RF_STRING_BEFORE4": 1, + "i_SELECT_RF_STRING_BEFORE2": 1, + "i_SELECT_RF_STRING_BEFORE1": 1, + "i_SELECT_RF_STRING_BEFORE0": 1, + "i_NPSELECT_RF_STRING_AFTER": 1, + "i_NPSELECT_RF_STRING_AFTER1": 1, + "i_NPSELECT_RF_STRING_AFTER0": 1, + "i_SELECT_RF_STRING_AFTER": 1, + "i_SELECT_RF_STRING_AFTER3": 1, + "i_OUTSTR_": 6, + "i_SELECT_RF_STRING_AFTER4": 1, + "i_SELECT_RF_STRING_AFTER2": 1, + "i_SELECT_RF_STRING_AFTER1": 1, + "i_SELECT_RF_STRING_AFTER0": 1, + "i_NPSELECT_RF_STRING_AFTERV": 1, + "i_NPSELECT_RF_STRING_AFTERV1": 1, + "i_LIMSELECT_RF_STRING_AFTERV": 1, + "i_NPSELECT_RF_STRING_AFTERV0": 1, + "i_LIMSELECT_RF_STRING_AFTERV1": 1, + "i_LIMSELECT_RF_STRING_AFTERV0": 1, + "i_SELECT_RF_STRING_AFTERV": 1, + "i_SELECT_RF_STRING_AFTERV5": 1, + "i_SELECT_RF_STRING_AFTERV6": 1, + "i_SELECT_RF_STRING_AFTERV7": 1, + "i_SELECT_RF_STRING_AFTERV8": 1, + "i_SELECT_RF_STRING_AFTERV9": 1, + "i_SELECT_RF_STRING_AFTERV10": 1, + "i_SELECT_RF_STRING_AFTERV11": 1, + "i_SELECT_RF_STRING_AFTERV12": 1, + "i_SELECT_RF_STRING_AFTERV13": 1, + "i_SELECT_RF_STRING_AFTERV14": 1, + "i_SELECT_RF_STRING_AFTERV15": 1, + "i_SELECT_RF_STRING_AFTERV16": 1, + "i_SELECT_RF_STRING_AFTERV17": 1, + "i_SELECT_RF_STRING_AFTERV18": 1, + "i_OTHERSTR_": 4, + "rfString_Prepend": 2, + "rfString_Remove": 3, + "i_NPSELECT_RF_STRING_REMOVE": 1, + "i_NPSELECT_RF_STRING_REMOVE1": 1, + "i_NPSELECT_RF_STRING_REMOVE0": 1, + "i_SELECT_RF_STRING_REMOVE": 1, + "i_SELECT_RF_STRING_REMOVE2": 1, + "i_REPSTR_": 16, + "i_RFUI32_": 8, + "i_SELECT_RF_STRING_REMOVE3": 1, + "i_NUMBER_": 12, + "i_SELECT_RF_STRING_REMOVE4": 1, + "i_SELECT_RF_STRING_REMOVE1": 1, + "i_SELECT_RF_STRING_REMOVE0": 1, + "rfString_KeepOnly": 2, + "I_KEEPSTR_": 2, + "rfString_Replace": 3, + "i_NPSELECT_RF_STRING_REPLACE": 1, + "i_NPSELECT_RF_STRING_REPLACE1": 1, + "i_NPSELECT_RF_STRING_REPLACE0": 1, + "i_SELECT_RF_STRING_REPLACE": 1, + "i_SELECT_RF_STRING_REPLACE3": 1, + "i_SELECT_RF_STRING_REPLACE4": 1, + "i_SELECT_RF_STRING_REPLACE5": 1, + "i_SELECT_RF_STRING_REPLACE2": 1, + "i_SELECT_RF_STRING_REPLACE1": 1, + "i_SELECT_RF_STRING_REPLACE0": 1, + "i_SUBSTR_": 6, + "rfString_Strip": 2, + "rfString_Fwrite": 2, + "i_NPSELECT_RF_STRING_FWRITE": 1, + "i_NPSELECT_RF_STRING_FWRITE1": 1, + "i_NPSELECT_RF_STRING_FWRITE0": 1, + "i_SELECT_RF_STRING_FWRITE": 1, + "i_SELECT_RF_STRING_FWRITE3": 1, + "i_STR_": 8, + "i_FILE_": 16, + "i_ENCODING_": 4, + "i_SELECT_RF_STRING_FWRITE2": 1, + "i_SELECT_RF_STRING_FWRITE1": 1, + "i_SELECT_RF_STRING_FWRITE0": 1, + "rfString_Fwrite_fUTF8": 1, + "closing": 1, + "Attempted": 1, + "manipulation": 1, + "flag": 1, + "off.": 1, + "Rebuild": 1, + "added": 1, + "you": 1, + "#endif//": 1, + "guards": 2, + "READLINE_READLINE_CATS": 3, + "": 1, + "atscntrb_readline_rl_library_version": 1, + "rl_library_version": 1, + "atscntrb_readline_rl_readline_version": 1, + "rl_readline_version": 1, + "atscntrb_readline_readline": 1, + "readline": 1, + "REFU_IO_H": 2, + "xA": 1, + "RF_CR": 1, + "xD": 1, + "REFU_WIN32_VERSION": 1, + "i_PLUSB_WIN32": 2, + "foff_rft": 2, + "off64_t": 1, + "///Fseek": 1, + "Ftelll": 1, + "definitions": 1, + "rfFseek": 2, + "i_OFFSET_": 4, + "i_WHENCE_": 4, + "_fseeki64": 1, + "rfFtell": 2, + "_ftelli64": 1, + "fseeko64": 1, + "ftello64": 1, + "rfFReadLine_UTF32BE": 1, + "rfFgets_UTF32BE": 1, + "rfPopen": 2, + "command": 2, + "i_rfPopen": 2, + "i_CMD_": 2, + "i_MODE_": 2, + "rfPclose": 1, + "///closing": 1, + "#endif//include": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 2, + "": 1, + "": 1, + "": 1, + "sharedObjectsStruct": 1, + "shared": 1, + "R_Zero": 2, + "R_PosInf": 2, + "R_NegInf": 2, + "R_Nan": 2, + "redisServer": 1, + "server": 1, + "redisCommand": 6, + "*commandTable": 1, + "redisCommandTable": 5, + "getCommand": 1, + "setCommand": 1, + "noPreloadGetKeys": 6, + "setnxCommand": 1, + "setexCommand": 1, + "psetexCommand": 1, + "appendCommand": 1, + "strlenCommand": 1, + "delCommand": 1, + "existsCommand": 1, + "setbitCommand": 1, + "getbitCommand": 1, + "setrangeCommand": 1, + "getrangeCommand": 2, + "incrCommand": 1, + "decrCommand": 1, + "mgetCommand": 1, + "rpushCommand": 1, + "lpushCommand": 1, + "rpushxCommand": 1, + "lpushxCommand": 1, + "linsertCommand": 1, + "rpopCommand": 1, + "lpopCommand": 1, + "brpopCommand": 1, + "brpoplpushCommand": 1, + "blpopCommand": 1, + "llenCommand": 1, + "lindexCommand": 1, + "lsetCommand": 1, + "lrangeCommand": 1, + "ltrimCommand": 1, + "lremCommand": 1, + "rpoplpushCommand": 1, + "saddCommand": 1, + "sremCommand": 1, + "smoveCommand": 1, + "sismemberCommand": 1, + "scardCommand": 1, + "spopCommand": 1, + "srandmemberCommand": 1, + "sinterCommand": 2, + "sinterstoreCommand": 1, + "sunionCommand": 1, + "sunionstoreCommand": 1, + "sdiffCommand": 1, + "sdiffstoreCommand": 1, + "zaddCommand": 1, + "zincrbyCommand": 1, + "zremCommand": 1, + "zremrangebyscoreCommand": 1, + "zremrangebyrankCommand": 1, + "zunionstoreCommand": 1, + "zunionInterGetKeys": 4, + "zinterstoreCommand": 1, + "zrangeCommand": 1, + "zrangebyscoreCommand": 1, + "zrevrangebyscoreCommand": 1, + "zcountCommand": 1, + "zrevrangeCommand": 1, + "zcardCommand": 1, + "zscoreCommand": 1, + "zrankCommand": 1, + "zrevrankCommand": 1, + "hsetCommand": 1, + "hsetnxCommand": 1, + "hgetCommand": 1, + "hmsetCommand": 1, + "hmgetCommand": 1, + "hincrbyCommand": 1, + "hincrbyfloatCommand": 1, + "hdelCommand": 1, + "hlenCommand": 1, + "hkeysCommand": 1, + "hvalsCommand": 1, + "hgetallCommand": 1, + "hexistsCommand": 1, + "incrbyCommand": 1, + "decrbyCommand": 1, + "incrbyfloatCommand": 1, + "getsetCommand": 1, + "msetCommand": 1, + "msetnxCommand": 1, + "randomkeyCommand": 1, + "selectCommand": 1, + "moveCommand": 1, + "renameCommand": 1, + "renameGetKeys": 2, + "renamenxCommand": 1, + "expireCommand": 1, + "expireatCommand": 1, + "pexpireCommand": 1, + "pexpireatCommand": 1, + "keysCommand": 1, + "dbsizeCommand": 1, + "authCommand": 3, + "pingCommand": 2, + "echoCommand": 2, + "saveCommand": 1, + "bgsaveCommand": 1, + "bgrewriteaofCommand": 1, + "shutdownCommand": 2, + "lastsaveCommand": 1, + "typeCommand": 1, + "multiCommand": 2, + "execCommand": 2, + "discardCommand": 2, + "syncCommand": 1, + "flushdbCommand": 1, + "flushallCommand": 1, + "sortCommand": 1, + "infoCommand": 4, + "monitorCommand": 2, + "ttlCommand": 1, + "pttlCommand": 1, + "persistCommand": 1, + "slaveofCommand": 2, + "debugCommand": 1, + "configCommand": 1, + "subscribeCommand": 2, + "unsubscribeCommand": 2, + "psubscribeCommand": 2, + "punsubscribeCommand": 2, + "publishCommand": 1, + "watchCommand": 2, + "unwatchCommand": 1, + "clusterCommand": 1, + "restoreCommand": 1, + "migrateCommand": 1, + "askingCommand": 1, + "dumpCommand": 1, + "objectCommand": 1, + "clientCommand": 1, + "evalCommand": 1, + "evalShaCommand": 1, + "slowlogCommand": 1, + "scriptCommand": 2, + "timeCommand": 2, + "bitopCommand": 1, + "bitcountCommand": 1, + "redisLogRaw": 3, + "*msg": 7, + "syslogLevelMap": 2, + "LOG_DEBUG": 1, + "LOG_INFO": 1, + "LOG_NOTICE": 1, + "LOG_WARNING": 1, + "FILE": 3, + "*fp": 3, + "rawmode": 2, + "REDIS_LOG_RAW": 2, + "xff": 3, + "server.verbosity": 4, + "fp": 13, + "server.logfile": 8, + "fopen": 3, + "msg": 10, + "timeval": 4, + "tv": 8, + "gettimeofday": 4, + "strftime": 1, + "localtime": 1, + "tv.tv_sec": 4, + "snprintf": 2, + "tv.tv_usec/1000": 1, + "getpid": 7, + "server.syslog_enabled": 3, + "syslog": 1, + "redisLog": 33, + "*fmt": 2, + "ap": 4, + "REDIS_MAX_LOGMSG_LEN": 1, + "fmt": 4, + "vsnprintf": 1, + "redisLogFromHandler": 2, + "server.daemonize": 5, + "O_APPEND": 2, + "O_CREAT": 2, + "O_WRONLY": 2, + "STDOUT_FILENO": 2, + "ll2string": 3, + "write": 7, + "time": 10, + "oom": 3, + "REDIS_WARNING": 19, + "sleep": 1, + "abort": 1, + "ustime": 7, + "*1000000": 1, + "tv.tv_usec": 3, + "mstime": 5, + "/1000": 1, + "exitFromChild": 1, + "retcode": 3, + "COVERAGE_TEST": 1, + "dictVanillaFree": 1, + "*privdata": 8, + "*val": 6, + "DICT_NOTUSED": 6, + "privdata": 8, + "zfree": 2, + "dictListDestructor": 2, + "listRelease": 1, + "list*": 1, + "dictSdsKeyCompare": 6, + "*key1": 4, + "*key2": 4, + "l1": 4, + "l2": 3, + "sdslen": 14, + "sds": 13, + "key1": 5, + "key2": 5, + "dictSdsKeyCaseCompare": 2, + "strcasecmp": 13, + "dictRedisObjectDestructor": 7, + "decrRefCount": 6, + "dictSdsDestructor": 4, + "sdsfree": 2, + "dictObjKeyCompare": 2, + "robj": 7, + "*o1": 2, + "*o2": 2, + "o1": 7, + "ptr": 18, + "o2": 7, + "dictObjHash": 2, + "*key": 5, + "key": 9, + "dictGenHashFunction": 5, + "dictSdsHash": 4, + "dictSdsCaseHash": 2, + "dictGenCaseHashFunction": 1, + "dictEncObjKeyCompare": 4, + "robj*": 3, + "REDIS_ENCODING_INT": 4, + "getDecodedObject": 3, + "dictEncObjHash": 4, + "REDIS_ENCODING_RAW": 1, + "hash": 12, + "dictType": 8, + "setDictType": 1, + "zsetDictType": 1, + "dbDictType": 2, + "keyptrDictType": 2, + "commandTableDictType": 2, + "hashDictType": 1, + "keylistDictType": 4, + "clusterNodesDictType": 1, + "htNeedsResize": 3, + "dict": 11, + "dictSlots": 3, + "dictSize": 10, + "DICT_HT_INITIAL_SIZE": 2, + "used*100/size": 1, + "REDIS_HT_MINFILL": 1, + "tryResizeHashTables": 2, + "server.dbnum": 8, + "server.db": 23, + ".dict": 9, + "dictResize": 2, + ".expires": 8, + "incrementallyRehash": 2, + "dictIsRehashing": 2, + "dictRehashMilliseconds": 2, + "updateDictResizePolicy": 2, + "server.rdb_child_pid": 12, + "server.aof_child_pid": 10, + "dictEnableResize": 1, + "dictDisableResize": 1, + "activeExpireCycle": 2, + "timelimit": 5, + "*REDIS_EXPIRELOOKUPS_TIME_PERC/REDIS_HZ/100": 1, + "expired": 4, + "redisDb": 3, + "*db": 3, + "db": 10, + "expires": 3, + "slots": 2, + "now": 5, + "num*100/slots": 1, + "REDIS_EXPIRELOOKUPS_PER_CRON": 2, + "dictEntry": 2, + "*de": 2, + "de": 12, + "dictGetRandomKey": 4, + "dictGetSignedIntegerVal": 1, + "dictGetKey": 4, + "*keyobj": 2, + "createStringObject": 11, + "propagateExpire": 2, + "keyobj": 6, + "dbDelete": 2, + "server.stat_expiredkeys": 3, + "xf": 1, + "REDIS_EXPIRELOOKUPS_PER_CRON/4": 1, + "updateLRUClock": 3, + "server.lruclock": 2, + "server.unixtime/REDIS_LRU_CLOCK_RESOLUTION": 1, + "REDIS_LRU_CLOCK_MAX": 1, + "trackOperationsPerSecond": 2, + "server.ops_sec_last_sample_time": 3, + "ops": 1, + "server.stat_numcommands": 4, + "server.ops_sec_last_sample_ops": 3, + "ops_sec": 3, + "ops*1000/t": 1, + "server.ops_sec_samples": 4, + "server.ops_sec_idx": 4, + "%": 2, + "REDIS_OPS_SEC_SAMPLES": 3, + "getOperationsPerSecond": 2, + "sum": 3, + "clientsCronHandleTimeout": 2, + "redisClient": 12, + "time_t": 4, + "server.unixtime": 10, + "server.maxidletime": 3, + "REDIS_SLAVE": 3, + "REDIS_MASTER": 2, + "REDIS_BLOCKED": 2, + "pubsub_channels": 2, + "listLength": 14, + "pubsub_patterns": 2, + "lastinteraction": 3, + "REDIS_VERBOSE": 3, + "freeClient": 1, + "bpop.timeout": 2, + "addReply": 13, + "shared.nullmultibulk": 2, + "unblockClientWaitingData": 1, + "clientsCronResizeQueryBuffer": 2, + "querybuf_size": 3, + "sdsAllocSize": 1, + "querybuf": 6, + "idletime": 2, + "REDIS_MBULK_BIG_ARG": 1, + "querybuf_size/": 1, + "querybuf_peak": 2, + "sdsavail": 1, + "sdsRemoveFreeSpace": 1, + "clientsCron": 2, + "numclients": 3, + "server.clients": 7, + "iterations": 4, + "numclients/": 1, + "REDIS_HZ*10": 1, + "listNode": 4, + "*head": 1, + "listRotate": 1, + "listFirst": 2, + "listNodeValue": 3, + "run_with_period": 6, + "_ms_": 2, + "loops": 2, + "/REDIS_HZ": 2, + "serverCron": 2, + "aeEventLoop": 2, + "*eventLoop": 2, + "*clientData": 1, + "server.cronloops": 3, + "REDIS_NOTUSED": 5, + "eventLoop": 2, + "clientData": 1, + "server.watchdog_period": 3, + "watchdogScheduleSignal": 1, + "zmalloc_used_memory": 8, + "server.stat_peak_memory": 5, + "server.shutdown_asap": 3, + "prepareForShutdown": 2, + "REDIS_OK": 23, + "vkeys": 8, + "server.activerehashing": 2, + "server.slaves": 9, + "server.aof_rewrite_scheduled": 4, + "rewriteAppendOnlyFileBackground": 2, + "statloc": 5, + "wait3": 1, + "WNOHANG": 1, + "exitcode": 3, + "bysignal": 4, + "backgroundSaveDoneHandler": 1, + "backgroundRewriteDoneHandler": 1, + "server.saveparamslen": 3, + "saveparam": 1, + "*sp": 1, + "server.saveparams": 2, + "server.dirty": 3, + "sp": 4, + "changes": 2, + "server.lastsave": 3, + "seconds": 2, + "REDIS_NOTICE": 13, + "rdbSaveBackground": 1, + "server.rdb_filename": 4, + "server.aof_rewrite_perc": 3, + "server.aof_current_size": 2, + "server.aof_rewrite_min_size": 2, + "base": 1, + "server.aof_rewrite_base_size": 4, + "growth": 3, + "server.aof_current_size*100/base": 1, + "server.aof_flush_postponed_start": 2, + "flushAppendOnlyFile": 2, + "server.masterhost": 7, + "freeClientsInAsyncFreeQueue": 1, + "replicationCron": 1, + "server.cluster_enabled": 6, + "clusterCron": 1, + "beforeSleep": 2, + "*ln": 3, + "server.unblocked_clients": 4, + "ln": 8, + "redisAssert": 1, + "listDelNode": 1, + "REDIS_UNBLOCKED": 1, + "server.current_client": 3, + "processInputBuffer": 1, + "createSharedObjects": 2, + "shared.crlf": 2, + "createObject": 31, + "REDIS_STRING": 31, + "sdsnew": 27, + "shared.ok": 3, + "shared.err": 1, + "shared.emptybulk": 1, + "shared.czero": 1, + "shared.cone": 1, + "shared.cnegone": 1, + "shared.nullbulk": 1, + "shared.emptymultibulk": 1, + "shared.pong": 2, + "shared.queued": 2, + "shared.wrongtypeerr": 1, + "shared.nokeyerr": 1, + "shared.syntaxerr": 2, + "shared.sameobjecterr": 1, + "shared.outofrangeerr": 1, + "shared.noscripterr": 1, + "shared.loadingerr": 2, + "shared.slowscripterr": 2, + "shared.masterdownerr": 2, + "shared.bgsaveerr": 2, + "shared.roslaveerr": 2, + "shared.oomerr": 2, + "shared.space": 1, + "shared.colon": 1, + "shared.plus": 1, + "REDIS_SHARED_SELECT_CMDS": 1, + "shared.select": 1, + "sdscatprintf": 24, + "sdsempty": 8, + "shared.messagebulk": 1, + "shared.pmessagebulk": 1, + "shared.subscribebulk": 1, + "shared.unsubscribebulk": 1, + "shared.psubscribebulk": 1, + "shared.punsubscribebulk": 1, + "shared.del": 1, + "shared.rpop": 1, + "shared.lpop": 1, + "REDIS_SHARED_INTEGERS": 1, + "shared.integers": 2, + "REDIS_SHARED_BULKHDR_LEN": 1, + "shared.mbulkhdr": 1, + "shared.bulkhdr": 1, + "initServerConfig": 2, + "getRandomHexChars": 1, + "server.runid": 3, + "REDIS_RUN_ID_SIZE": 2, + "server.arch_bits": 3, + "server.port": 7, + "REDIS_SERVERPORT": 1, + "server.bindaddr": 2, + "server.unixsocket": 7, + "server.unixsocketperm": 2, + "server.ipfd": 9, + "server.sofd": 9, + "REDIS_DEFAULT_DBNUM": 1, + "REDIS_MAXIDLETIME": 1, + "server.client_max_querybuf_len": 1, + "REDIS_MAX_QUERYBUF_LEN": 1, + "server.loading": 4, + "server.syslog_ident": 2, + "zstrdup": 5, + "server.syslog_facility": 2, + "LOG_LOCAL0": 1, + "server.aof_state": 7, + "REDIS_AOF_OFF": 5, + "server.aof_fsync": 1, + "AOF_FSYNC_EVERYSEC": 1, + "server.aof_no_fsync_on_rewrite": 1, + "REDIS_AOF_REWRITE_PERC": 1, + "REDIS_AOF_REWRITE_MIN_SIZE": 1, + "server.aof_last_fsync": 1, + "server.aof_rewrite_time_last": 2, + "server.aof_rewrite_time_start": 2, + "server.aof_delayed_fsync": 2, + "server.aof_fd": 4, + "server.aof_selected_db": 1, + "server.pidfile": 3, + "server.aof_filename": 3, + "server.requirepass": 4, + "server.rdb_compression": 1, + "server.rdb_checksum": 1, + "server.maxclients": 6, + "REDIS_MAX_CLIENTS": 1, + "server.bpop_blocked_clients": 2, + "server.maxmemory": 6, + "server.maxmemory_policy": 11, + "REDIS_MAXMEMORY_VOLATILE_LRU": 3, + "server.maxmemory_samples": 3, + "server.hash_max_ziplist_entries": 1, + "REDIS_HASH_MAX_ZIPLIST_ENTRIES": 1, + "server.hash_max_ziplist_value": 1, + "REDIS_HASH_MAX_ZIPLIST_VALUE": 1, + "server.list_max_ziplist_entries": 1, + "REDIS_LIST_MAX_ZIPLIST_ENTRIES": 1, + "server.list_max_ziplist_value": 1, + "REDIS_LIST_MAX_ZIPLIST_VALUE": 1, + "server.set_max_intset_entries": 1, + "REDIS_SET_MAX_INTSET_ENTRIES": 1, + "server.zset_max_ziplist_entries": 1, + "REDIS_ZSET_MAX_ZIPLIST_ENTRIES": 1, + "server.zset_max_ziplist_value": 1, + "REDIS_ZSET_MAX_ZIPLIST_VALUE": 1, + "server.repl_ping_slave_period": 1, + "REDIS_REPL_PING_SLAVE_PERIOD": 1, + "server.repl_timeout": 1, + "REDIS_REPL_TIMEOUT": 1, + "server.cluster.configfile": 1, + "server.lua_caller": 1, + "server.lua_time_limit": 1, + "REDIS_LUA_TIME_LIMIT": 1, + "server.lua_client": 1, + "server.lua_timedout": 2, + "resetServerSaveParams": 2, + "appendServerSaveParams": 3, + "*60": 1, + "server.masterauth": 1, + "server.masterport": 2, + "server.master": 3, + "server.repl_state": 6, + "REDIS_REPL_NONE": 1, + "server.repl_syncio_timeout": 1, + "REDIS_REPL_SYNCIO_TIMEOUT": 1, + "server.repl_serve_stale_data": 2, + "server.repl_slave_ro": 2, + "server.repl_down_since": 2, + "server.client_obuf_limits": 9, + "REDIS_CLIENT_LIMIT_CLASS_NORMAL": 3, + ".hard_limit_bytes": 3, + ".soft_limit_bytes": 3, + ".soft_limit_seconds": 3, + "REDIS_CLIENT_LIMIT_CLASS_SLAVE": 3, + "*1024*256": 1, + "*1024*64": 1, + "REDIS_CLIENT_LIMIT_CLASS_PUBSUB": 3, + "*1024*32": 1, + "*1024*8": 1, + "/R_Zero": 2, + "R_Zero/R_Zero": 1, + "server.commands": 1, + "dictCreate": 6, + "populateCommandTable": 2, + "server.delCommand": 1, + "lookupCommandByCString": 3, + "server.multiCommand": 1, + "server.lpushCommand": 1, + "server.slowlog_log_slower_than": 1, + "REDIS_SLOWLOG_LOG_SLOWER_THAN": 1, + "server.slowlog_max_len": 1, + "REDIS_SLOWLOG_MAX_LEN": 1, + "server.assert_failed": 1, + "server.assert_file": 1, + "server.assert_line": 1, + "server.bug_report_start": 1, + "adjustOpenFilesLimit": 2, + "rlim_t": 3, + "maxfiles": 6, + "rlimit": 1, + "limit": 3, + "getrlimit": 1, + "RLIMIT_NOFILE": 2, + "oldlimit": 5, + "limit.rlim_cur": 2, + "limit.rlim_max": 1, + "setrlimit": 1, + "initServer": 2, + "signal": 2, + "SIGHUP": 1, + "SIG_IGN": 2, + "SIGPIPE": 1, + "setupSignalHandlers": 2, + "openlog": 1, + "LOG_PID": 1, + "LOG_NDELAY": 1, + "LOG_NOWAIT": 1, + "listCreate": 6, + "server.clients_to_close": 1, + "server.monitors": 2, + "server.el": 7, + "aeCreateEventLoop": 1, + "zmalloc": 2, + "*server.dbnum": 1, + "anetTcpServer": 1, + "server.neterr": 4, + "ANET_ERR": 2, + "unlink": 3, + "anetUnixServer": 1, + ".blocking_keys": 1, + ".watched_keys": 1, + ".id": 1, + "server.pubsub_channels": 2, + "server.pubsub_patterns": 4, + "listSetFreeMethod": 1, + "freePubsubPattern": 1, + "listSetMatchMethod": 1, + "listMatchPubsubPattern": 1, + "aofRewriteBufferReset": 1, + "server.aof_buf": 3, + "server.rdb_save_time_last": 2, + "server.rdb_save_time_start": 2, + "server.stat_numconnections": 2, + "server.stat_evictedkeys": 3, + "server.stat_starttime": 2, + "server.stat_keyspace_misses": 2, + "server.stat_keyspace_hits": 2, + "server.stat_fork_time": 2, + "server.stat_rejected_conn": 2, + "server.lastbgsave_status": 3, + "server.stop_writes_on_bgsave_err": 2, + "aeCreateTimeEvent": 1, + "aeCreateFileEvent": 2, + "AE_READABLE": 2, + "acceptTcpHandler": 1, + "AE_ERR": 2, + "acceptUnixHandler": 1, + "REDIS_AOF_ON": 2, + "LL*": 1, + "REDIS_MAXMEMORY_NO_EVICTION": 2, + "clusterInit": 1, + "scriptingInit": 1, + "slowlogInit": 1, + "bioInit": 1, + "numcommands": 5, + "*f": 2, + "sflags": 1, + "retval": 3, + "arity": 3, + "addReplyErrorFormat": 1, + "authenticated": 3, + "proc": 14, + "addReplyError": 6, + "getkeys_proc": 1, + "firstkey": 1, + "hashslot": 3, + "server.cluster.state": 1, + "REDIS_CLUSTER_OK": 1, + "ask": 3, + "clusterNode": 1, + "*n": 1, + "getNodeByQuery": 1, + "server.cluster.myself": 1, + "addReplySds": 3, + "ip": 4, + "freeMemoryIfNeeded": 2, + "REDIS_CMD_DENYOOM": 1, + "REDIS_ERR": 5, + "REDIS_CMD_WRITE": 2, + "REDIS_REPL_CONNECTED": 3, + "tolower": 2, + "REDIS_MULTI": 1, + "queueMultiCommand": 1, + "call": 1, + "REDIS_CALL_FULL": 1, + "save": 2, + "REDIS_SHUTDOWN_SAVE": 1, + "nosave": 2, + "REDIS_SHUTDOWN_NOSAVE": 1, + "SIGKILL": 2, + "rdbRemoveTempFile": 1, + "aof_fsync": 1, + "rdbSave": 1, + "addReplyBulk": 1, + "addReplyMultiBulkLen": 1, + "addReplyBulkLongLong": 2, + "bytesToHuman": 3, + "n/": 3, + "LL*1024*1024": 2, + "LL*1024*1024*1024": 1, + "genRedisInfoString": 2, + "*section": 2, + "uptime": 2, + "rusage": 1, + "self_ru": 2, + "c_ru": 2, + "lol": 3, + "bib": 3, + "allsections": 12, + "defsections": 11, + "sections": 11, + "section": 14, + "getrusage": 2, + "RUSAGE_SELF": 1, + "RUSAGE_CHILDREN": 1, + "getClientsMaxBuffers": 1, + "utsname": 1, + "sdscat": 14, + "uname": 1, + "REDIS_VERSION": 4, + "redisGitSHA1": 3, + "strtol": 2, + "redisGitDirty": 3, + "name.sysname": 1, + "name.release": 1, + "name.machine": 1, + "aeGetApiName": 1, + "__GNUC_PATCHLEVEL__": 1, + "uptime/": 1, + "*24": 1, + "hmem": 3, + "peak_hmem": 3, + "zmalloc_get_rss": 1, + "lua_gc": 1, + "server.lua": 1, + "LUA_GCCOUNT": 1, + "*1024LL": 1, + "zmalloc_get_fragmentation_ratio": 1, + "ZMALLOC_LIB": 2, + "aofRewriteBufferSize": 2, + "bioPendingJobsOfType": 1, + "REDIS_BIO_AOF_FSYNC": 1, + "perc": 3, + "eta": 4, + "elapsed": 3, + "off_t": 1, + "remaining_bytes": 1, + "server.loading_total_bytes": 3, + "server.loading_loaded_bytes": 3, + "server.loading_start_time": 2, + "elapsed*remaining_bytes": 1, + "/server.loading_loaded_bytes": 1, + "REDIS_REPL_TRANSFER": 2, + "server.repl_transfer_left": 1, + "server.repl_transfer_lastio": 1, + "slaveid": 3, + "listIter": 2, + "li": 6, + "listRewind": 2, + "listNext": 2, + "*slave": 2, + "*state": 1, + "anetPeerToString": 1, + "slave": 3, + "replstate": 1, + "REDIS_REPL_WAIT_BGSAVE_START": 1, + "REDIS_REPL_WAIT_BGSAVE_END": 1, + "REDIS_REPL_SEND_BULK": 1, + "REDIS_REPL_ONLINE": 1, + "self_ru.ru_stime.tv_sec": 1, + "self_ru.ru_stime.tv_usec/1000000": 1, + "self_ru.ru_utime.tv_sec": 1, + "self_ru.ru_utime.tv_usec/1000000": 1, + "c_ru.ru_stime.tv_sec": 1, + "c_ru.ru_stime.tv_usec/1000000": 1, + "c_ru.ru_utime.tv_sec": 1, + "c_ru.ru_utime.tv_usec/1000000": 1, + "calls": 4, + "microseconds": 1, + "microseconds/c": 1, + "keys": 4, + "REDIS_MONITOR": 1, + "slaveseldb": 1, + "listAddNodeTail": 1, + "mem_used": 9, + "mem_tofree": 3, + "mem_freed": 4, + "slaves": 3, + "obuf_bytes": 3, + "getClientOutputBufferMemoryUsage": 1, + "keys_freed": 3, + "bestval": 5, + "bestkey": 9, + "REDIS_MAXMEMORY_ALLKEYS_LRU": 2, + "REDIS_MAXMEMORY_ALLKEYS_RANDOM": 2, + "REDIS_MAXMEMORY_VOLATILE_RANDOM": 1, + "thiskey": 7, + "thisval": 8, + "dictFind": 1, + "dictGetVal": 2, + "estimateObjectIdleTime": 1, + "REDIS_MAXMEMORY_VOLATILE_TTL": 1, + "delta": 54, + "flushSlavesOutputBuffers": 1, + "linuxOvercommitMemoryValue": 2, + "fgets": 1, + "atoi": 3, + "linuxOvercommitMemoryWarning": 2, + "createPidFile": 2, + "daemonize": 2, + "STDIN_FILENO": 1, + "STDERR_FILENO": 2, + "usage": 2, + "redisAsciiArt": 2, + "*16": 2, + "ascii_logo": 1, + "sigtermHandler": 2, + "sig": 2, + "sigaction": 6, + "act": 6, + "sigemptyset": 2, + "act.sa_mask": 2, + "act.sa_flags": 2, + "act.sa_handler": 1, + "SIGTERM": 1, + "HAVE_BACKTRACE": 1, + "SA_NODEFER": 1, + "SA_RESETHAND": 1, + "SA_SIGINFO": 1, + "act.sa_sigaction": 1, + "sigsegvHandler": 1, + "SIGSEGV": 1, + "SIGBUS": 1, + "SIGFPE": 1, + "SIGILL": 1, + "memtest": 2, + "megabytes": 1, + "passes": 1, + "zmalloc_enable_thread_safeness": 1, + "srand": 1, + "dictSetHashFunctionSeed": 1, + "*configfile": 1, + "configfile": 2, + "sdscatrepr": 1, + "loadServerConfig": 1, + "loadAppendOnlyFile": 1, + "/1000000": 2, + "rdbLoad": 1, + "aeSetBeforeSleepProc": 1, + "aeMain": 1, + "aeDeleteEventLoop": 1, + "BOOTSTRAP_H": 2, + "*true": 1, + "*false": 1, + "*eof": 1, + "*empty_list": 1, + "*global_enviroment": 1, + "obj_type": 1, + "scm_bool": 1, + "scm_empty_list": 1, + "scm_eof": 1, + "scm_char": 1, + "scm_int": 1, + "scm_pair": 1, + "scm_symbol": 1, + "scm_prim_fun": 1, + "scm_lambda": 1, + "scm_str": 1, + "scm_file": 1, + "*eval_proc": 1, + "*maybe_add_begin": 1, + "*code": 2, + "init_enviroment": 1, + "*env": 4, + "eval_err": 1, + "__attribute__": 1, + "noreturn": 1, + "define_var": 1, + "set_var": 1, + "*get_var": 1, + "*cond2nested_if": 1, + "*cond": 1, + "*let2lambda": 1, + "*let": 1, + "*and2nested_if": 1, + "*and": 1, + "*or2nested_if": 1, + "*or": 1, + "COMMIT_H": 2, + "*util": 1, + "indegree": 1, + "*parents": 4, + "*tree": 3, + "decoration": 1, + "name_decoration": 3, + "*commit_list_insert": 1, + "commit_list_count": 1, + "*l": 1, + "*commit_list_insert_by_date": 1, + "free_commit_list": 1, + "cmit_fmt": 3, + "CMIT_FMT_RAW": 1, + "CMIT_FMT_MEDIUM": 2, + "CMIT_FMT_DEFAULT": 1, + "CMIT_FMT_SHORT": 1, + "CMIT_FMT_FULL": 1, + "CMIT_FMT_FULLER": 1, + "CMIT_FMT_ONELINE": 1, + "CMIT_FMT_EMAIL": 1, + "CMIT_FMT_USERFORMAT": 1, + "CMIT_FMT_UNSPECIFIED": 1, + "pretty_print_context": 6, + "abbrev": 1, + "*subject": 1, + "*after_subject": 1, + "preserve_subject": 1, + "date_mode": 2, + "date_mode_explicit": 1, + "need_8bit_cte": 2, + "show_notes": 1, + "reflog_walk_info": 1, + "*reflog_info": 1, + "*output_encoding": 2, + "userformat_want": 2, + "notes": 1, + "has_non_ascii": 1, + "*text": 1, + "rev_info": 2, + "*logmsg_reencode": 1, + "*reencode_commit_message": 1, + "**encoding_p": 1, + "get_commit_format": 1, + "*arg": 1, + "*format_subject": 1, + "*sb": 7, + "*line_separator": 1, + "userformat_find_requirements": 1, + "format_commit_message": 1, + "*context": 1, + "pretty_print_commit": 1, + "*pp": 4, + "pp_commit_easy": 1, + "pp_user_info": 1, + "*what": 1, + "*line": 1, + "*encoding": 2, + "pp_title_line": 1, + "**msg_p": 2, + "pp_remainder": 1, + "indent": 1, + "*pop_most_recent_commit": 1, + "mark": 3, + "*pop_commit": 1, + "**stack": 1, + "clear_commit_marks": 1, + "clear_commit_marks_for_object_array": 1, + "object_array": 2, + "sort_in_topological_order": 1, + "list": 1, + "lifo": 1, + "FLEX_ARRAY": 1, + "*read_graft_line": 1, + "*lookup_commit_graft": 1, + "*get_merge_bases": 1, + "*rev1": 1, + "*rev2": 1, + "*get_merge_bases_many": 1, + "*one": 1, + "**twos": 1, + "*get_octopus_merge_bases": 1, + "*in": 1, + "register_shallow": 1, + "unregister_shallow": 1, + "for_each_commit_graft": 1, + "each_commit_graft_fn": 1, + "is_repository_shallow": 1, + "*get_shallow_commits": 1, + "*heads": 2, + "shallow_flag": 1, + "not_shallow_flag": 1, + "is_descendant_of": 1, + "in_merge_bases": 1, + "interactive_add": 1, + "patch": 1, + "run_add_interactive": 1, + "*revision": 1, + "*patch_mode": 1, + "**pathspec": 1, + "single_parent": 1, + "*reduce_heads": 1, + "commit_extra_header": 7, + "append_merge_tag_headers": 1, + "***tail": 1, + "commit_tree": 1, + "*author": 2, + "*sign_commit": 2, + "commit_tree_extended": 1, + "*read_commit_extra_headers": 1, + "*read_commit_extra_header_lines": 1, + "free_commit_extra_headers": 1, + "*extra": 1, + "merge_remote_util": 1, + "*get_merge_parent": 1, + "parse_signed_commit": 1, + "*message": 1, + "*signature": 1, + "git_cache_init": 1, + "git_cache": 4, + "*cache": 4, + "git_cached_obj_freeptr": 1, + "free_ptr": 2, + "git__size_t_powerof2": 1, + "cache": 26, + "size_mask": 6, + "lru_count": 1, + "free_obj": 4, + "git_mutex_init": 1, + "nodes": 10, + "git_cached_obj": 5, + "GITERR_CHECK_ALLOC": 3, + "git_cache_free": 1, + "git_cached_obj_decref": 3, + "*git_cache_get": 1, + "*oid": 2, + "*node": 2, + "*result": 1, + "oid": 17, + "git_mutex_lock": 2, + "node": 9, + "git_oid_cmp": 6, + "git_cached_obj_incref": 3, + "git_mutex_unlock": 2, + "*git_cache_try_store": 1, + "*_entry": 1, + "*entry": 2, + "_entry": 1, + "entry": 17, + "HELLO_H": 2, + "hello": 1, + "": 1, + "_Included_jni_JniLayer": 2, + "JNIEXPORT": 6, + "jlong": 6, + "JNICALL": 6, + "Java_jni_JniLayer_jni_1layer_1initialize": 1, + "JNIEnv": 6, + "jobject": 6, + "jintArray": 1, + "jint": 7, + "Java_jni_JniLayer_jni_1layer_1mainloop": 1, + "Java_jni_JniLayer_jni_1layer_1set_1button": 1, + "Java_jni_JniLayer_jni_1layer_1set_1analog": 1, + "jfloat": 1, + "Java_jni_JniLayer_jni_1layer_1report_1analog_1chg": 1, + "Java_jni_JniLayer_jni_1layer_1kill": 1, + "VALUE": 13, + "rb_cRDiscount": 4, + "rb_rdiscount_to_html": 2, + "*res": 2, + "szres": 8, + "rb_funcall": 14, + "rb_intern": 15, + "rb_str_buf_new": 2, + "Check_Type": 2, + "T_STRING": 2, + "rb_rdiscount__get_flags": 3, + "MMIOT": 2, + "*doc": 2, + "mkd_string": 2, + "RSTRING_PTR": 2, + "RSTRING_LEN": 2, + "mkd_compile": 2, + "doc": 6, + "mkd_document": 1, + "res": 4, + "rb_str_cat": 4, + "mkd_cleanup": 2, + "rb_respond_to": 1, + "rb_rdiscount_toc_content": 2, + "mkd_toc": 1, + "ruby_obj": 11, + "MKD_TABSTOP": 1, + "MKD_NOHEADER": 1, + "Qtrue": 10, + "MKD_NOPANTS": 1, + "MKD_NOHTML": 1, + "MKD_TOC": 1, + "MKD_NOIMAGE": 1, + "MKD_NOLINKS": 1, + "MKD_NOTABLES": 1, + "MKD_STRICT": 1, + "MKD_AUTOLINK": 1, + "MKD_SAFELINK": 1, + "MKD_NO_EXT": 1, + "Init_rdiscount": 1, + "rb_define_class": 1, + "rb_cObject": 1, + "rb_define_method": 2, + "*diff_prefix_from_pathspec": 1, + "git_strarray": 2, + "*pathspec": 2, + "git_buf": 3, + "GIT_BUF_INIT": 3, + "*scan": 2, + "git_buf_common_prefix": 1, + "pathspec": 15, + "scan": 4, + "prefix.ptr": 2, + "git__iswildcard": 1, + "git_buf_truncate": 1, + "prefix.size": 1, + "git_buf_detach": 1, + "git_buf_free": 4, + "diff_pathspec_is_interesting": 2, + "*str": 1, + "diff_path_matches_pathspec": 3, + "git_diff_list": 17, + "*diff": 8, + "*path": 2, + "git_attr_fnmatch": 4, + "*match": 3, + "pathspec.length": 1, + "git_vector_foreach": 4, + "p_fnmatch": 1, + "pattern": 3, + "path": 20, + "FNM_NOMATCH": 1, + "GIT_ATTR_FNMATCH_HASWILD": 1, + "strncmp": 1, + "GIT_ATTR_FNMATCH_NEGATIVE": 1, + "git_diff_delta": 19, + "*diff_delta__alloc": 1, + "git_delta_t": 5, + "*delta": 6, + "git__calloc": 3, + "old_file.path": 12, + "git_pool_strdup": 3, + "pool": 12, + "new_file.path": 6, + "opts.flags": 8, + "GIT_DIFF_REVERSE": 3, + "GIT_DELTA_ADDED": 4, + "GIT_DELTA_DELETED": 7, + "*diff_delta__dup": 1, + "*d": 1, + "git_pool": 4, + "*pool": 3, + "fail": 19, + "*diff_delta__merge_like_cgit": 1, + "*b": 6, + "*dup": 1, + "diff_delta__dup": 3, + "dup": 15, + "new_file.oid": 7, + "git_oid_cpy": 5, + "new_file.mode": 4, + "new_file.size": 3, + "new_file.flags": 4, + "old_file.oid": 3, + "GIT_DELTA_UNTRACKED": 5, + "GIT_DELTA_IGNORED": 5, + "GIT_DELTA_UNMODIFIED": 11, + "diff_delta__from_one": 5, + "git_index_entry": 8, + "GIT_DIFF_INCLUDE_IGNORED": 1, + "GIT_DIFF_INCLUDE_UNTRACKED": 1, + "diff_delta__alloc": 2, + "GIT_DELTA_MODIFIED": 3, + "old_file.mode": 2, + "old_file.size": 1, + "file_size": 6, + "old_file.flags": 2, + "GIT_DIFF_FILE_VALID_OID": 4, + "git_vector_insert": 4, + "deltas": 8, + "diff_delta__from_two": 2, + "*old_entry": 1, + "*new_entry": 1, + "*new_oid": 1, + "GIT_DIFF_INCLUDE_UNMODIFIED": 1, + "*temp": 1, + "old_entry": 5, + "new_entry": 5, + "new_oid": 3, + "git_oid_iszero": 2, + "*diff_strdup_prefix": 1, + "git_pool_strcat": 1, + "git_pool_strndup": 1, + "diff_delta__cmp": 3, + "*da": 1, + "da": 2, + "config_bool": 5, + "*cfg": 2, + "defvalue": 2, + "git_config_get_bool": 1, + "cfg": 6, + "giterr_clear": 1, + "*git_diff_list_alloc": 1, + "git_repository": 7, + "*repo": 7, + "git_diff_options": 7, + "*opts": 6, + "repo": 23, + "git_vector_init": 3, + "git_pool_init": 2, + "git_repository_config__weakptr": 1, + "diffcaps": 13, + "GIT_DIFFCAPS_HAS_SYMLINKS": 2, + "GIT_DIFFCAPS_ASSUME_UNCHANGED": 2, + "GIT_DIFFCAPS_TRUST_EXEC_BIT": 2, + "GIT_DIFFCAPS_TRUST_CTIME": 2, + "opts": 24, + "opts.pathspec": 2, + "opts.old_prefix": 4, + "diff_strdup_prefix": 2, + "old_prefix": 2, + "DIFF_OLD_PREFIX_DEFAULT": 1, + "opts.new_prefix": 4, + "new_prefix": 2, + "DIFF_NEW_PREFIX_DEFAULT": 1, + "*swap": 1, + "pathspec.count": 2, + "*pattern": 1, + "pathspec.strings": 1, + "GIT_ATTR_FNMATCH_ALLOWSPACE": 1, + "git_attr_fnmatch__parse": 1, + "GIT_ENOTFOUND": 1, + "git_diff_list_free": 3, + "deltas.contents": 1, + "git_vector_free": 3, + "pathspec.contents": 1, + "git_pool_clear": 2, + "oid_for_workdir_item": 2, + "full_path": 3, + "git_buf_joinpath": 1, + "git_repository_workdir": 1, + "S_ISLNK": 2, + "git_odb__hashlink": 1, + "full_path.ptr": 2, + "git__is_sizet": 1, + "giterr_set": 1, + "GITERR_OS": 1, + "git_futils_open_ro": 1, + "git_odb__hashfd": 1, + "GIT_OBJ_BLOB": 1, + "p_close": 1, + "EXEC_BIT_MASK": 3, + "maybe_modified": 2, + "git_iterator": 8, + "*old_iter": 2, + "*oitem": 2, + "*new_iter": 2, + "*nitem": 2, + "noid": 4, + "*use_noid": 1, + "omode": 8, + "oitem": 29, + "nmode": 10, + "nitem": 32, + "GIT_UNUSED": 1, + "old_iter": 8, + "S_ISREG": 1, + "GIT_MODE_TYPE": 3, + "GIT_MODE_PERMS_MASK": 1, + "flags_extended": 2, + "GIT_IDXENTRY_INTENT_TO_ADD": 1, + "GIT_IDXENTRY_SKIP_WORKTREE": 1, + "new_iter": 13, + "GIT_ITERATOR_WORKDIR": 2, + "ctime.seconds": 2, + "mtime.seconds": 2, + "GIT_DIFFCAPS_USE_DEV": 1, + "dev": 2, + "ino": 2, + "uid": 2, + "gid": 2, + "S_ISGITLINK": 1, + "git_submodule": 1, + "*sub": 1, + "GIT_DIFF_IGNORE_SUBMODULES": 1, + "git_submodule_lookup": 1, + "ignore": 1, + "GIT_SUBMODULE_IGNORE_ALL": 1, + "use_noid": 2, + "diff_from_iterators": 5, + "**diff_ptr": 1, + "ignore_prefix": 6, + "git_diff_list_alloc": 1, + "old_src": 1, + "new_src": 3, + "git_iterator_current": 2, + "git_iterator_advance": 5, + "delta_type": 8, + "git_buf_len": 1, + "git__prefixcmp": 2, + "git_buf_cstr": 1, + "S_ISDIR": 1, + "GIT_DIFF_RECURSE_UNTRACKED_DIRS": 1, + "git_iterator_current_is_ignored": 2, + "git_buf_sets": 1, + "git_iterator_advance_into_directory": 1, + "git_iterator_free": 4, + "*diff_ptr": 2, + "git_diff_tree_to_tree": 1, + "git_tree": 4, + "*old_tree": 3, + "*new_tree": 1, + "**diff": 4, + "diff_prefix_from_pathspec": 4, + "old_tree": 5, + "new_tree": 2, + "git_iterator_for_tree_range": 4, + "git_diff_index_to_tree": 1, + "git_iterator_for_index_range": 2, + "git_diff_workdir_to_index": 1, + "git_iterator_for_workdir_range": 2, + "git_diff_workdir_to_tree": 1, + "git_diff_merge": 1, + "*onto": 1, + "*from": 1, + "onto_pool": 7, + "git_vector": 1, + "onto_new": 6, + "onto": 7, + "deltas.length": 4, + "GIT_VECTOR_GET": 2, + "diff_delta__merge_like_cgit": 1, + "git_vector_swap": 1, + "git_pool_swap": 1 }, "C#": { - "@": 1, - "{": 5, - "ViewBag.Title": 1, + "using": 5, + "System": 1, ";": 8, + "System.Collections.Generic": 1, + "System.Linq": 1, + "System.Text": 1, + "System.Threading.Tasks": 1, + "namespace": 1, + "LittleSampleApp": 1, + "{": 5, + "///": 4, + "": 1, + "Just": 1, + "what": 1, + "it": 2, + "says": 1, + "on": 1, + "the": 5, + "tin.": 1, + "A": 1, + "little": 1, + "sample": 1, + "application": 1, + "for": 4, + "Linguist": 1, + "to": 4, + "try": 1, + "out.": 1, + "": 1, + "class": 1, + "Program": 1, + "static": 1, + "void": 1, + "Main": 1, + "(": 3, + "string": 1, + "[": 1, + "]": 1, + "args": 1, + ")": 3, + "Console.WriteLine": 2, "}": 5, + "@": 1, + "ViewBag.Title": 1, "@section": 1, "featured": 1, "
": 1, @@ -10011,11 +10056,9 @@ "and": 6, "samples": 1, "": 1, - "to": 4, "help": 1, "you": 4, "get": 1, - "the": 5, "most": 1, "from": 1, "MVC.": 1, @@ -10059,7 +10102,6 @@ "control": 1, "over": 1, "markup": 1, - "for": 4, "enjoyable": 1, "agile": 1, "development.": 1, @@ -10087,7 +10129,6 @@ "your": 2, "coding": 1, "makes": 1, - "it": 2, "easy": 1, "install": 1, "update": 1, @@ -10108,1707 +10149,21 @@ "mix": 1, "price": 1, "applications.": 1, - "": 1, - "using": 5, - "System": 1, - "System.Collections.Generic": 1, - "System.Linq": 1, - "System.Text": 1, - "System.Threading.Tasks": 1, - "namespace": 1, - "LittleSampleApp": 1, - "///": 4, - "": 1, - "Just": 1, - "what": 1, - "says": 1, - "on": 1, - "tin.": 1, - "A": 1, - "little": 1, - "sample": 1, - "application": 1, - "Linguist": 1, - "try": 1, - "out.": 1, - "": 1, - "class": 1, - "Program": 1, - "static": 1, - "void": 1, - "Main": 1, - "(": 3, - "string": 1, - "[": 1, - "]": 1, - "args": 1, - ")": 3, - "Console.WriteLine": 2 + "": 1 }, "C++": { - "class": 40, - "Bar": 2, - "{": 726, - "protected": 4, - "char": 127, - "*name": 6, - ";": 2783, - "public": 33, - "void": 241, - "hello": 2, - "(": 3102, - ")": 3105, - "}": 726, "//": 315, - "///": 843, - "mainpage": 1, - "C": 6, - "library": 14, - "for": 105, - "Broadcom": 3, - "BCM": 14, - "as": 28, - "used": 17, - "in": 165, - "Raspberry": 6, - "Pi": 5, - "This": 19, - "is": 102, - "a": 157, - "RPi": 17, - ".": 16, - "It": 7, - "provides": 3, - "access": 17, - "to": 254, - "GPIO": 87, - "and": 118, - "other": 17, - "IO": 2, - "functions": 19, - "on": 55, - "the": 541, - "chip": 9, - "allowing": 3, - "pins": 40, - "pin": 90, - "IDE": 4, - "plug": 3, - "board": 2, - "so": 2, - "you": 29, - "can": 21, - "control": 17, - "interface": 9, - "with": 33, - "various": 4, - "external": 3, - "devices.": 1, - "reading": 3, - "digital": 2, - "inputs": 2, - "setting": 2, - "outputs": 1, - "using": 11, - "SPI": 44, - "I2C": 29, - "accessing": 2, - "system": 13, - "timers.": 1, - "Pin": 65, - "event": 3, - "detection": 2, - "supported": 3, - "by": 53, - "polling": 1, - "interrupts": 1, - "are": 36, - "not": 29, - "+": 80, - "compatible": 1, - "installs": 1, - "header": 7, - "file": 31, - "non": 2, - "-": 438, - "shared": 2, - "any": 23, - "Linux": 2, - "based": 4, - "distro": 1, - "but": 5, - "clearly": 1, - "no": 7, - "use": 37, - "except": 2, - "or": 44, - "another": 1, - "The": 50, - "version": 38, - "of": 215, - "package": 1, - "that": 36, - "this": 57, - "documentation": 3, - "refers": 1, - "be": 35, - "downloaded": 1, - "from": 91, - "http": 11, - "//www.airspayce.com/mikem/bcm2835/bcm2835": 1, - "tar.gz": 1, - "You": 9, - "find": 2, - "latest": 2, - "at": 20, - "//www.airspayce.com/mikem/bcm2835": 1, - "Several": 1, - "example": 3, - "programs": 4, - "provided.": 1, - "Based": 1, - "data": 26, - "//elinux.org/RPi_Low": 1, - "level_peripherals": 1, - "//www.raspberrypi.org/wp": 1, - "content/uploads/2012/02/BCM2835": 1, - "ARM": 5, - "Peripherals.pdf": 1, - "//www.scribd.com/doc/101830961/GPIO": 2, - "Pads": 3, - "Control2": 2, - "also": 3, - "online": 1, - "help": 1, - "discussion": 1, - "//groups.google.com/group/bcm2835": 1, - "Please": 4, - "group": 23, - "all": 11, - "questions": 1, - "discussions": 1, - "topic.": 1, - "Do": 1, - "contact": 1, - "author": 3, - "directly": 2, - "unless": 1, - "it": 19, - "discuss": 1, - "commercial": 1, - "licensing.": 1, - "Tested": 1, - "debian6": 1, - "wheezy": 3, - "raspbian": 3, - "Occidentalisv01": 2, - "CAUTION": 1, - "has": 29, - "been": 14, - "observed": 1, - "when": 22, - "detect": 3, - "enables": 3, - "such": 4, - "bcm2835_gpio_len": 5, - "pulled": 1, - "LOW": 8, - "cause": 1, - "temporary": 1, - "hangs": 1, - "Occidentalisv01.": 1, - "Reason": 1, - "yet": 1, - "determined": 1, - "suspect": 1, - "an": 23, - "interrupt": 3, - "handler": 1, - "hitting": 1, - "hard": 1, - "loop": 2, - "those": 3, - "OSs.": 1, - "If": 11, - "must": 6, - "friends": 2, - "make": 6, - "sure": 6, - "disable": 2, - "bcm2835_gpio_cler_len": 1, - "after": 18, - "use.": 1, - "par": 9, - "Installation": 1, - "consists": 1, - "single": 2, - "which": 14, - "will": 15, - "installed": 1, - "usual": 3, - "places": 1, - "install": 3, - "code": 12, - "#": 1, - "download": 2, - "say": 1, - "bcm2835": 7, - "xx.tar.gz": 2, - "then": 15, - "tar": 1, - "zxvf": 1, - "cd": 1, - "xx": 2, - "./configure": 1, - "sudo": 2, - "check": 4, - "endcode": 2, - "Physical": 21, - "Addresses": 6, - "bcm2835_peri_read": 3, - "bcm2835_peri_write": 3, - "bcm2835_peri_set_bits": 2, - "low": 5, - "level": 10, - "peripheral": 14, - "register": 17, - "functions.": 4, - "They": 1, - "designed": 3, - "physical": 4, - "addresses": 4, - "described": 1, - "section": 6, - "BCM2835": 2, - "Peripherals": 1, - "manual.": 1, - "range": 3, - "FFFFFF": 1, - "peripherals.": 1, - "bus": 4, - "peripherals": 2, - "set": 18, - "up": 18, - "map": 3, - "onto": 1, - "address": 13, - "starting": 1, - "E000000.": 1, - "Thus": 1, - "advertised": 1, - "manual": 8, - "Ennnnnn": 1, - "available": 6, - "nnnnnn.": 1, - "base": 8, - "registers": 12, - "following": 2, - "externals": 1, - "bcm2835_gpio": 2, - "bcm2835_pwm": 2, - "bcm2835_clk": 2, - "bcm2835_pads": 2, - "bcm2835_spio0": 1, - "bcm2835_st": 1, - "bcm2835_bsc0": 1, - "bcm2835_bsc1": 1, - "Numbering": 1, - "numbering": 1, - "different": 5, - "inconsistent": 1, - "underlying": 4, - "numbering.": 1, - "//elinux.org/RPi_BCM2835_GPIOs": 1, - "some": 4, - "well": 1, - "power": 1, - "ground": 1, - "pins.": 1, - "Not": 4, - "header.": 1, - "Version": 40, - "P5": 6, - "connector": 1, - "V": 2, - "Gnd.": 1, - "passed": 4, - "number": 52, - "_not_": 1, - "number.": 1, - "There": 1, - "symbolic": 1, - "definitions": 3, - "each": 7, - "should": 10, - "convenience.": 1, - "See": 7, - "ref": 32, - "RPiGPIOPin.": 22, - "Pins": 2, - "bcm2835_spi_*": 1, - "allow": 5, - "SPI0": 17, - "send": 3, - "received": 3, - "Serial": 3, - "Peripheral": 6, - "Interface": 2, - "For": 6, - "more": 4, - "information": 3, - "about": 6, - "see": 14, - "//en.wikipedia.org/wiki/Serial_Peripheral_Interface_Bus": 1, - "When": 12, - "bcm2835_spi_begin": 3, - "called": 13, - "changes": 2, - "bahaviour": 1, - "their": 6, - "default": 14, - "behaviour": 1, - "order": 14, - "support": 4, - "SPI.": 1, - "While": 1, - "able": 2, - "state": 33, - "through": 4, - "bcm2835_spi_gpio_write": 1, - "bcm2835_spi_end": 4, - "revert": 1, - "configured": 1, - "controled": 1, - "bcm2835_gpio_*": 1, - "calls.": 1, - "P1": 56, - "MOSI": 8, - "MISO": 6, - "CLK": 6, - "CE0": 5, - "CE1": 6, - "bcm2835_i2c_*": 2, - "BSC": 10, - "generically": 1, - "referred": 1, - "I": 4, - "//en.wikipedia.org/wiki/I": 1, - "%": 7, - "C2": 1, - "B2C": 1, - "V2": 2, - "SDA": 3, - "SLC": 1, - "Real": 1, - "Time": 1, - "performance": 2, - "constraints": 2, - "user": 3, - "i.e.": 1, - "they": 2, - "run": 2, - "Such": 1, - "part": 1, - "kernel": 4, - "usually": 2, - "subject": 1, - "paging": 1, - "swapping": 2, - "while": 17, - "does": 4, - "things": 1, - "besides": 1, - "running": 1, - "your": 12, - "program.": 1, - "means": 8, - "expect": 2, - "get": 5, - "real": 4, - "time": 10, - "timing": 3, - "programs.": 1, - "In": 2, - "particular": 1, - "there": 4, - "guarantee": 1, - "bcm2835_delay": 5, - "bcm2835_delayMicroseconds": 6, - "return": 240, - "exactly": 2, - "requested.": 1, - "fact": 2, - "depending": 1, - "activity": 1, - "host": 1, - "etc": 1, - "might": 1, - "significantly": 1, - "longer": 1, - "delay": 9, - "times": 2, - "than": 6, - "one": 73, - "asked": 1, - "for.": 1, - "So": 1, - "please": 2, - "dont": 1, - "request.": 1, - "Arjan": 2, - "reports": 1, - "prevent": 4, - "fragment": 2, - "struct": 13, - "sched_param": 1, - "sp": 4, - "memset": 3, - "&": 203, - "sizeof": 15, - "sp.sched_priority": 1, - "sched_get_priority_max": 1, - "SCHED_FIFO": 2, - "sched_setscheduler": 1, - "mlockall": 1, - "MCL_CURRENT": 1, - "|": 40, - "MCL_FUTURE": 1, - "Open": 2, - "Source": 2, - "Licensing": 2, - "GPL": 2, - "appropriate": 7, - "option": 1, - "if": 359, - "want": 5, - "share": 2, - "source": 12, - "application": 2, - "everyone": 1, - "distribute": 1, - "give": 2, - "them": 1, - "right": 9, - "who": 1, - "uses": 4, - "it.": 3, - "wish": 2, - "software": 1, - "under": 2, - "contribute": 1, - "open": 6, - "community": 1, - "accordance": 1, - "distributed.": 1, - "//www.gnu.org/copyleft/gpl.html": 1, - "COPYING": 1, - "Acknowledgements": 1, - "Some": 1, - "inspired": 2, - "Dom": 1, - "Gert.": 1, - "Alan": 1, - "Barr.": 1, - "Revision": 1, - "History": 1, - "Initial": 1, - "release": 1, - "Minor": 1, - "bug": 1, - "fixes": 1, - "Added": 11, - "bcm2835_spi_transfern": 3, - "Fixed": 4, - "problem": 2, - "prevented": 1, - "being": 4, - "used.": 2, - "Reported": 5, - "David": 1, - "Robinson.": 1, - "bcm2835_close": 4, - "deinit": 1, - "library.": 3, - "Suggested": 1, - "sar": 1, - "Ortiz": 1, - "Document": 1, - "testing": 2, - "Functions": 1, - "bcm2835_gpio_ren": 3, - "bcm2835_gpio_fen": 3, - "bcm2835_gpio_hen": 3, - "bcm2835_gpio_aren": 3, - "bcm2835_gpio_afen": 3, - "now": 4, - "only": 6, - "specified.": 1, - "Other": 1, - "were": 1, - "already": 1, - "previously": 10, - "enabled": 4, - "stay": 1, - "enabled.": 1, - "bcm2835_gpio_clr_ren": 2, - "bcm2835_gpio_clr_fen": 2, - "bcm2835_gpio_clr_hen": 2, - "bcm2835_gpio_clr_len": 2, - "bcm2835_gpio_clr_aren": 2, - "bcm2835_gpio_clr_afen": 2, - "clear": 3, - "enable": 3, - "individual": 1, - "suggested": 3, - "Andreas": 1, - "Sundstrom.": 1, - "bcm2835_spi_transfernb": 2, - "buffers": 3, - "read": 21, - "write.": 1, - "Improvements": 3, - "barrier": 3, - "maddin.": 1, - "contributed": 1, - "mikew": 1, - "noticed": 1, - "was": 6, - "mallocing": 1, - "memory": 14, - "mmaps": 1, - "/dev/mem.": 1, - "ve": 4, - "removed": 1, - "mallocs": 1, - "frees": 1, - "found": 1, - "calling": 9, - "nanosleep": 7, - "takes": 1, - "least": 2, - "us.": 1, - "need": 6, - "link": 3, - "version.": 1, - "s": 26, - "doc": 1, - "Also": 1, - "added": 2, - "define": 2, - "passwrd": 1, - "value": 50, - "Gert": 1, - "says": 1, - "needed": 3, - "change": 3, - "pad": 4, - "settings.": 1, - "Changed": 1, - "names": 3, - "collisions": 1, - "wiringPi.": 1, - "Macros": 2, - "delayMicroseconds": 3, - "disabled": 2, - "defining": 1, - "BCM2835_NO_DELAY_COMPATIBILITY": 2, - "incorrect": 2, - "New": 6, - "mapping": 3, - "Hardware": 1, - "pointers": 2, - "initialisation": 2, - "externally": 1, - "bcm2835_spi0.": 1, - "Now": 4, - "compiles": 1, - "even": 2, - "CLOCK_MONOTONIC_RAW": 1, - "CLOCK_MONOTONIC": 3, - "instead.": 1, - "errors": 1, - "divider": 15, - "frequencies": 2, - "MHz": 14, - "clock.": 6, - "Ben": 1, - "Simpson.": 1, - "end": 23, - "examples": 1, - "Mark": 5, - "Wolfe.": 1, - "bcm2835_gpio_set_multi": 2, - "bcm2835_gpio_clr_multi": 2, - "bcm2835_gpio_write_multi": 4, - "mask": 20, - "once.": 1, - "Requested": 2, - "Sebastian": 2, - "Loncar.": 2, - "bcm2835_gpio_write_mask.": 1, - "Changes": 1, - "timer": 2, - "counter": 1, - "instead": 4, - "clock_gettime": 1, - "improved": 1, - "accuracy.": 1, - "No": 2, - "lrt": 1, - "now.": 1, - "Contributed": 1, - "van": 1, - "Vught.": 1, - "Removed": 1, - "inlines": 1, - "previous": 6, - "patch": 1, - "since": 3, - "don": 1, - "t": 15, - "seem": 1, - "work": 1, - "everywhere.": 1, - "olly.": 1, - "Patch": 2, - "Dootson": 2, - "close": 7, - "/dev/mem": 4, - "granted.": 1, - "susceptible": 1, - "bit": 19, - "overruns.": 1, - "courtesy": 1, - "Jeremy": 1, - "Mortis.": 1, - "definition": 3, - "BCM2835_GPFEN0": 2, - "broke": 1, - "ability": 1, - "falling": 4, - "edge": 8, - "events.": 1, - "Dootson.": 2, - "bcm2835_i2c_set_baudrate": 2, - "bcm2835_i2c_read_register_rs.": 1, - "bcm2835_i2c_read": 4, - "bcm2835_i2c_write": 4, - "fix": 1, - "ocasional": 1, - "reads": 2, - "completing.": 1, - "Patched": 1, - "p": 6, - "[": 293, - "atched": 1, - "his": 1, - "submitted": 1, - "high": 5, - "load": 1, - "processes.": 1, - "Updated": 1, - "distribution": 1, - "location": 6, - "details": 1, - "airspayce.com": 1, - "missing": 1, - "unmapmem": 1, - "pads": 7, - "leak.": 1, - "Hartmut": 1, - "Henkel.": 1, - "Mike": 1, - "McCauley": 1, - "mikem@airspayce.com": 1, - "DO": 1, - "NOT": 3, - "CONTACT": 1, - "THE": 2, - "AUTHOR": 1, - "DIRECTLY": 1, - "USE": 1, - "LISTS": 1, "#ifndef": 29, - "BCM2835_H": 3, - "#define": 343, - "#include": 129, - "": 2, - "defgroup": 7, - "constants": 1, - "Constants": 1, - "passing": 1, - "values": 3, - "here": 1, - "@": 14, - "HIGH": 12, - "true": 49, - "volts": 2, - "pin.": 21, - "false": 48, - "Speed": 1, - "core": 1, - "clock": 21, - "core_clk": 1, - "BCM2835_CORE_CLK_HZ": 1, - "<": 255, - "Base": 17, - "Address": 10, - "BCM2835_PERI_BASE": 9, - "System": 10, - "Timer": 9, - "BCM2835_ST_BASE": 1, - "BCM2835_GPIO_PADS": 2, - "Clock/timer": 1, - "BCM2835_CLOCK_BASE": 1, - "BCM2835_GPIO_BASE": 6, - "BCM2835_SPI0_BASE": 1, - "BSC0": 2, - "BCM2835_BSC0_BASE": 1, - "PWM": 2, - "BCM2835_GPIO_PWM": 1, - "C000": 1, - "BSC1": 2, - "BCM2835_BSC1_BASE": 1, - "ST": 1, - "registers.": 10, - "Available": 8, - "bcm2835_init": 11, - "extern": 72, - "volatile": 13, - "uint32_t": 39, - "*bcm2835_st": 1, - "*bcm2835_gpio": 1, - "*bcm2835_pwm": 1, - "*bcm2835_clk": 1, - "PADS": 1, - "*bcm2835_pads": 1, - "*bcm2835_spi0": 1, - "*bcm2835_bsc0": 1, - "*bcm2835_bsc1": 1, - "Size": 2, - "page": 5, - "BCM2835_PAGE_SIZE": 1, - "*1024": 2, - "block": 7, - "BCM2835_BLOCK_SIZE": 1, - "offsets": 2, - "BCM2835_GPIO_BASE.": 1, - "Offsets": 1, - "into": 6, - "bytes": 29, - "per": 3, - "Register": 1, - "View": 1, - "BCM2835_GPFSEL0": 1, - "Function": 8, - "Select": 49, - "BCM2835_GPFSEL1": 1, - "BCM2835_GPFSEL2": 1, - "BCM2835_GPFSEL3": 1, - "c": 72, - "BCM2835_GPFSEL4": 1, - "BCM2835_GPFSEL5": 1, - "BCM2835_GPSET0": 1, - "Output": 6, - "Set": 2, - "BCM2835_GPSET1": 1, - "BCM2835_GPCLR0": 1, - "Clear": 18, - "BCM2835_GPCLR1": 1, - "BCM2835_GPLEV0": 1, - "Level": 2, - "BCM2835_GPLEV1": 1, - "BCM2835_GPEDS0": 1, - "Event": 11, - "Detect": 35, - "Status": 6, - "BCM2835_GPEDS1": 1, - "BCM2835_GPREN0": 1, - "Rising": 8, - "Edge": 16, - "Enable": 38, - "BCM2835_GPREN1": 1, - "Falling": 8, - "BCM2835_GPFEN1": 1, - "BCM2835_GPHEN0": 1, - "High": 4, - "BCM2835_GPHEN1": 1, - "BCM2835_GPLEN0": 1, - "Low": 5, - "BCM2835_GPLEN1": 1, - "BCM2835_GPAREN0": 1, - "Async.": 4, - "BCM2835_GPAREN1": 1, - "BCM2835_GPAFEN0": 1, - "BCM2835_GPAFEN1": 1, - "BCM2835_GPPUD": 1, - "Pull": 11, - "up/down": 10, - "BCM2835_GPPUDCLK0": 1, - "Clock": 11, - "BCM2835_GPPUDCLK1": 1, - "brief": 12, - "bcm2835PortFunction": 1, - "Port": 1, - "function": 19, - "select": 9, - "modes": 1, - "bcm2835_gpio_fsel": 2, - "typedef": 50, - "enum": 17, - "BCM2835_GPIO_FSEL_INPT": 1, - "b000": 1, - "Input": 2, - "BCM2835_GPIO_FSEL_OUTP": 1, - "b001": 1, - "BCM2835_GPIO_FSEL_ALT0": 1, - "b100": 1, - "Alternate": 6, - "BCM2835_GPIO_FSEL_ALT1": 1, - "b101": 1, - "BCM2835_GPIO_FSEL_ALT2": 1, - "b110": 1, - "BCM2835_GPIO_FSEL_ALT3": 1, - "b111": 2, - "BCM2835_GPIO_FSEL_ALT4": 1, - "b011": 1, - "BCM2835_GPIO_FSEL_ALT5": 1, - "b010": 1, - "BCM2835_GPIO_FSEL_MASK": 1, - "bits": 11, - "bcm2835FunctionSelect": 2, - "bcm2835PUDControl": 4, - "Pullup/Pulldown": 1, - "defines": 3, - "bcm2835_gpio_pud": 5, - "BCM2835_GPIO_PUD_OFF": 1, - "b00": 1, - "Off": 3, - "pull": 1, - "BCM2835_GPIO_PUD_DOWN": 1, - "b01": 1, - "Down": 1, - "BCM2835_GPIO_PUD_UP": 1, - "b10": 1, - "Up": 1, - "Pad": 11, - "BCM2835_PADS_GPIO_0_27": 1, - "BCM2835_PADS_GPIO_28_45": 1, - "BCM2835_PADS_GPIO_46_53": 1, - "Control": 6, - "masks": 1, - "BCM2835_PAD_PASSWRD": 1, - "A": 7, - "<<": 29, - "Password": 1, - "BCM2835_PAD_SLEW_RATE_UNLIMITED": 1, - "Slew": 1, - "rate": 3, - "unlimited": 1, - "BCM2835_PAD_HYSTERESIS_ENABLED": 1, - "Hysteresis": 1, - "BCM2835_PAD_DRIVE_2mA": 1, - "mA": 8, - "drive": 8, - "current": 26, - "BCM2835_PAD_DRIVE_4mA": 1, - "BCM2835_PAD_DRIVE_6mA": 1, - "BCM2835_PAD_DRIVE_8mA": 1, - "BCM2835_PAD_DRIVE_10mA": 1, - "BCM2835_PAD_DRIVE_12mA": 1, - "BCM2835_PAD_DRIVE_14mA": 1, - "BCM2835_PAD_DRIVE_16mA": 1, - "bcm2835PadGroup": 4, - "specification": 1, - "bcm2835_gpio_pad": 2, - "BCM2835_PAD_GROUP_GPIO_0_27": 1, - "BCM2835_PAD_GROUP_GPIO_28_45": 1, - "BCM2835_PAD_GROUP_GPIO_46_53": 1, - "Numbers": 1, - "Here": 1, - "we": 10, - "terms": 4, - "numbers.": 1, - "These": 6, - "requiring": 1, - "bin": 1, - "connected": 1, - "adopt": 1, - "alternate": 7, - "function.": 3, - "slightly": 1, - "pinouts": 1, - "these": 1, - "RPI_V2_*.": 1, - "At": 1, - "bootup": 1, - "UART0_TXD": 3, - "UART0_RXD": 3, - "ie": 3, - "alt0": 1, - "respectively": 1, - "dedicated": 1, - "cant": 1, - "controlled": 1, - "independently": 1, - "RPI_GPIO_P1_03": 6, - "RPI_GPIO_P1_05": 6, - "RPI_GPIO_P1_07": 1, - "RPI_GPIO_P1_08": 1, - "defaults": 4, - "alt": 4, - "RPI_GPIO_P1_10": 1, - "RPI_GPIO_P1_11": 1, - "RPI_GPIO_P1_12": 1, - "RPI_GPIO_P1_13": 1, - "RPI_GPIO_P1_15": 1, - "RPI_GPIO_P1_16": 1, - "RPI_GPIO_P1_18": 1, - "RPI_GPIO_P1_19": 1, - "RPI_GPIO_P1_21": 1, - "RPI_GPIO_P1_22": 1, - "RPI_GPIO_P1_23": 1, - "RPI_GPIO_P1_24": 1, - "RPI_GPIO_P1_26": 1, - "RPI_V2_GPIO_P1_03": 1, - "RPI_V2_GPIO_P1_05": 1, - "RPI_V2_GPIO_P1_07": 1, - "RPI_V2_GPIO_P1_08": 1, - "RPI_V2_GPIO_P1_10": 1, - "RPI_V2_GPIO_P1_11": 1, - "RPI_V2_GPIO_P1_12": 1, - "RPI_V2_GPIO_P1_13": 1, - "RPI_V2_GPIO_P1_15": 1, - "RPI_V2_GPIO_P1_16": 1, - "RPI_V2_GPIO_P1_18": 1, - "RPI_V2_GPIO_P1_19": 1, - "RPI_V2_GPIO_P1_21": 1, - "RPI_V2_GPIO_P1_22": 1, - "RPI_V2_GPIO_P1_23": 1, - "RPI_V2_GPIO_P1_24": 1, - "RPI_V2_GPIO_P1_26": 1, - "RPI_V2_GPIO_P5_03": 1, - "RPI_V2_GPIO_P5_04": 1, - "RPI_V2_GPIO_P5_05": 1, - "RPI_V2_GPIO_P5_06": 1, - "RPiGPIOPin": 1, - "BCM2835_SPI0_CS": 1, - "Master": 12, - "BCM2835_SPI0_FIFO": 1, - "TX": 5, - "RX": 7, - "FIFOs": 1, - "BCM2835_SPI0_CLK": 1, - "Divider": 2, - "BCM2835_SPI0_DLEN": 1, - "Data": 9, - "Length": 2, - "BCM2835_SPI0_LTOH": 1, - "LOSSI": 1, - "mode": 24, - "TOH": 1, - "BCM2835_SPI0_DC": 1, - "DMA": 3, - "DREQ": 1, - "Controls": 1, - "BCM2835_SPI0_CS_LEN_LONG": 1, - "Long": 1, - "word": 7, - "Lossi": 2, - "DMA_LEN": 1, - "BCM2835_SPI0_CS_DMA_LEN": 1, - "BCM2835_SPI0_CS_CSPOL2": 1, - "Chip": 9, - "Polarity": 5, - "BCM2835_SPI0_CS_CSPOL1": 1, - "BCM2835_SPI0_CS_CSPOL0": 1, - "BCM2835_SPI0_CS_RXF": 1, - "RXF": 2, - "FIFO": 25, - "Full": 1, - "BCM2835_SPI0_CS_RXR": 1, - "RXR": 3, - "needs": 4, - "Reading": 1, - "full": 9, - "BCM2835_SPI0_CS_TXD": 1, - "TXD": 2, - "accept": 2, - "BCM2835_SPI0_CS_RXD": 1, - "RXD": 2, - "contains": 2, - "BCM2835_SPI0_CS_DONE": 1, - "Done": 3, - "transfer": 8, - "BCM2835_SPI0_CS_TE_EN": 1, - "Unused": 2, - "BCM2835_SPI0_CS_LMONO": 1, - "BCM2835_SPI0_CS_LEN": 1, - "LEN": 1, - "LoSSI": 1, - "BCM2835_SPI0_CS_REN": 1, - "REN": 1, - "Read": 3, - "BCM2835_SPI0_CS_ADCS": 1, - "ADCS": 1, - "Automatically": 1, - "Deassert": 1, - "BCM2835_SPI0_CS_INTR": 1, - "INTR": 1, - "Interrupt": 5, - "BCM2835_SPI0_CS_INTD": 1, - "INTD": 1, - "BCM2835_SPI0_CS_DMAEN": 1, - "DMAEN": 1, - "BCM2835_SPI0_CS_TA": 1, - "Transfer": 3, - "Active": 2, - "BCM2835_SPI0_CS_CSPOL": 1, - "BCM2835_SPI0_CS_CLEAR": 1, - "BCM2835_SPI0_CS_CLEAR_RX": 1, - "BCM2835_SPI0_CS_CLEAR_TX": 1, - "BCM2835_SPI0_CS_CPOL": 1, - "BCM2835_SPI0_CS_CPHA": 1, - "Phase": 1, - "BCM2835_SPI0_CS_CS": 1, - "bcm2835SPIBitOrder": 3, - "Bit": 1, - "Specifies": 5, - "ordering": 4, - "bcm2835_spi_setBitOrder": 2, - "BCM2835_SPI_BIT_ORDER_LSBFIRST": 1, - "LSB": 1, - "First": 2, - "BCM2835_SPI_BIT_ORDER_MSBFIRST": 1, - "MSB": 1, - "Specify": 2, - "bcm2835_spi_setDataMode": 2, - "BCM2835_SPI_MODE0": 1, - "CPOL": 4, - "CPHA": 4, - "BCM2835_SPI_MODE1": 1, - "BCM2835_SPI_MODE2": 1, - "BCM2835_SPI_MODE3": 1, - "bcm2835SPIMode": 2, - "bcm2835SPIChipSelect": 3, - "BCM2835_SPI_CS0": 1, - "BCM2835_SPI_CS1": 1, - "BCM2835_SPI_CS2": 1, - "CS1": 1, - "CS2": 1, - "asserted": 3, - "BCM2835_SPI_CS_NONE": 1, - "CS": 5, - "yourself": 1, - "bcm2835SPIClockDivider": 3, - "generate": 2, - "Figures": 1, - "below": 1, - "period": 1, - "frequency.": 1, - "divided": 2, - "nominal": 2, - "reported": 2, - "contrary": 1, - "may": 9, - "shown": 1, - "have": 4, - "confirmed": 1, - "measurement": 2, - "BCM2835_SPI_CLOCK_DIVIDER_65536": 1, - "us": 12, - "kHz": 10, - "BCM2835_SPI_CLOCK_DIVIDER_32768": 1, - "BCM2835_SPI_CLOCK_DIVIDER_16384": 1, - "BCM2835_SPI_CLOCK_DIVIDER_8192": 1, - "/51757813kHz": 1, - "BCM2835_SPI_CLOCK_DIVIDER_4096": 1, - "BCM2835_SPI_CLOCK_DIVIDER_2048": 1, - "BCM2835_SPI_CLOCK_DIVIDER_1024": 1, - "BCM2835_SPI_CLOCK_DIVIDER_512": 1, - "BCM2835_SPI_CLOCK_DIVIDER_256": 1, - "BCM2835_SPI_CLOCK_DIVIDER_128": 1, - "ns": 9, - "BCM2835_SPI_CLOCK_DIVIDER_64": 1, - "BCM2835_SPI_CLOCK_DIVIDER_32": 1, - "BCM2835_SPI_CLOCK_DIVIDER_16": 1, - "BCM2835_SPI_CLOCK_DIVIDER_8": 1, - "BCM2835_SPI_CLOCK_DIVIDER_4": 1, - "BCM2835_SPI_CLOCK_DIVIDER_2": 1, - "fastest": 1, - "BCM2835_SPI_CLOCK_DIVIDER_1": 1, - "same": 3, - "/65536": 1, - "BCM2835_BSC_C": 1, - "BCM2835_BSC_S": 1, - "BCM2835_BSC_DLEN": 1, - "BCM2835_BSC_A": 1, - "Slave": 1, - "BCM2835_BSC_FIFO": 1, - "BCM2835_BSC_DIV": 1, - "BCM2835_BSC_DEL": 1, - "Delay": 4, - "BCM2835_BSC_CLKT": 1, - "Stretch": 2, - "Timeout": 2, - "BCM2835_BSC_C_I2CEN": 1, - "BCM2835_BSC_C_INTR": 1, - "BCM2835_BSC_C_INTT": 1, - "BCM2835_BSC_C_INTD": 1, - "DONE": 2, - "BCM2835_BSC_C_ST": 1, - "Start": 4, - "new": 13, - "BCM2835_BSC_C_CLEAR_1": 1, - "BCM2835_BSC_C_CLEAR_2": 1, - "BCM2835_BSC_C_READ": 1, - "BCM2835_BSC_S_CLKT": 1, - "stretch": 1, - "timeout": 5, - "BCM2835_BSC_S_ERR": 1, - "ACK": 1, - "error": 8, - "BCM2835_BSC_S_RXF": 1, - "BCM2835_BSC_S_TXE": 1, - "TXE": 1, - "BCM2835_BSC_S_RXD": 1, - "BCM2835_BSC_S_TXD": 1, - "BCM2835_BSC_S_RXR": 1, - "BCM2835_BSC_S_TXW": 1, - "TXW": 1, - "writing": 2, - "BCM2835_BSC_S_DONE": 1, - "BCM2835_BSC_S_TA": 1, - "BCM2835_BSC_FIFO_SIZE": 1, - "size": 13, - "bcm2835I2CClockDivider": 3, - "BCM2835_I2C_CLOCK_DIVIDER_2500": 1, - "BCM2835_I2C_CLOCK_DIVIDER_626": 1, - "BCM2835_I2C_CLOCK_DIVIDER_150": 1, - "reset": 1, - "BCM2835_I2C_CLOCK_DIVIDER_148": 1, - "bcm2835I2CReasonCodes": 5, - "reason": 4, - "codes": 1, - "BCM2835_I2C_REASON_OK": 1, - "Success": 1, - "BCM2835_I2C_REASON_ERROR_NACK": 1, - "Received": 4, - "NACK": 1, - "BCM2835_I2C_REASON_ERROR_CLKT": 1, - "BCM2835_I2C_REASON_ERROR_DATA": 1, - "sent": 1, - "/": 16, - "BCM2835_ST_CS": 1, - "Control/Status": 1, - "BCM2835_ST_CLO": 1, - "Counter": 4, - "Lower": 2, - "BCM2835_ST_CHI": 1, - "Upper": 1, - "BCM2835_PWM_CONTROL": 1, - "BCM2835_PWM_STATUS": 1, - "BCM2835_PWM0_RANGE": 1, - "BCM2835_PWM0_DATA": 1, - "BCM2835_PWM1_RANGE": 1, - "BCM2835_PWM1_DATA": 1, - "BCM2835_PWMCLK_CNTL": 1, - "BCM2835_PWMCLK_DIV": 1, - "BCM2835_PWM1_MS_MODE": 1, - "Run": 4, - "MS": 2, - "BCM2835_PWM1_USEFIFO": 1, - "BCM2835_PWM1_REVPOLAR": 1, - "Reverse": 2, - "polarity": 3, - "BCM2835_PWM1_OFFSTATE": 1, - "Ouput": 2, - "BCM2835_PWM1_REPEATFF": 1, - "Repeat": 2, - "last": 6, - "empty": 2, - "BCM2835_PWM1_SERIAL": 1, - "serial": 2, - "BCM2835_PWM1_ENABLE": 1, - "Channel": 2, - "BCM2835_PWM0_MS_MODE": 1, - "BCM2835_PWM0_USEFIFO": 1, - "BCM2835_PWM0_REVPOLAR": 1, - "BCM2835_PWM0_OFFSTATE": 1, - "BCM2835_PWM0_REPEATFF": 1, - "BCM2835_PWM0_SERIAL": 1, - "BCM2835_PWM0_ENABLE": 1, - "x": 86, - "#endif": 110, - "#ifdef": 19, - "__cplusplus": 12, - "init": 2, - "Library": 1, - "management": 1, - "intialise": 1, - "Initialise": 1, - "opening": 1, - "getting": 1, - "internal": 47, - "device": 7, - "call": 4, - "successfully": 1, - "before": 7, - "bcm2835_set_debug": 2, - "fails": 1, - "returning": 1, - "result": 8, - "crashes": 1, - "failures.": 1, - "Prints": 1, - "messages": 1, - "stderr": 1, - "case": 34, - "errors.": 1, - "successful": 2, - "else": 58, - "int": 218, - "Close": 1, - "deallocating": 1, - "allocated": 2, - "closing": 3, - "Sets": 24, - "debug": 6, - "prevents": 1, - "makes": 1, - "print": 5, - "out": 5, - "what": 2, - "would": 2, - "do": 13, - "rather": 2, - "causes": 1, - "normal": 1, - "operation.": 2, - "Call": 2, - "param": 72, - "]": 292, - "level.": 3, - "uint8_t": 43, - "lowlevel": 2, - "provide": 1, - "generally": 1, - "Reads": 5, - "done": 3, - "twice": 3, - "therefore": 6, - "always": 3, - "safe": 4, - "precautions": 3, - "correct": 3, - "paddr": 10, - "from.": 6, - "etc.": 5, - "sa": 30, - "uint32_t*": 7, - "without": 3, - "within": 4, - "occurred": 2, - "since.": 2, - "bcm2835_peri_read_nb": 1, - "Writes": 2, - "write": 8, - "bcm2835_peri_write_nb": 1, - "Alters": 1, - "regsiter.": 1, - "valu": 1, - "alters": 1, - "deines": 1, - "according": 1, - "value.": 2, - "All": 1, - "unaffected.": 1, - "Use": 8, - "alter": 2, - "subset": 1, - "register.": 3, - "masked": 2, - "mask.": 1, - "Bitmask": 1, - "altered": 1, - "gpio": 1, - "interface.": 3, - "input": 12, - "output": 21, - "state.": 1, - "given": 16, - "configures": 1, - "RPI_GPIO_P1_*": 21, - "Mode": 1, - "BCM2835_GPIO_FSEL_*": 1, - "specified": 27, - "HIGH.": 2, - "bcm2835_gpio_write": 3, - "bcm2835_gpio_set": 1, - "LOW.": 5, - "bcm2835_gpio_clr": 1, - "first": 13, - "Mask": 6, - "affect.": 4, - "eg": 5, - "returns": 4, - "either": 4, - "Works": 1, - "whether": 4, - "output.": 1, - "bcm2835_gpio_lev": 1, - "Status.": 7, - "Tests": 1, - "detected": 7, - "requested": 1, - "flag": 3, - "bcm2835_gpio_set_eds": 2, - "status": 1, - "th": 1, - "true.": 2, - "bcm2835_gpio_eds": 1, - "effect": 3, - "clearing": 1, - "flag.": 1, - "afer": 1, - "seeing": 1, - "rising": 3, - "sets": 8, - "GPRENn": 2, - "synchronous": 2, - "detection.": 2, - "signal": 4, - "sampled": 6, - "looking": 2, - "pattern": 2, - "signal.": 2, - "suppressing": 2, - "glitches.": 2, - "Disable": 6, - "Asynchronous": 6, - "incoming": 2, - "As": 2, - "edges": 2, - "very": 2, - "short": 5, - "duration": 2, - "detected.": 2, - "bcm2835_gpio_pudclk": 3, - "resistor": 1, - "However": 3, - "convenient": 2, - "bcm2835_gpio_set_pud": 4, - "pud": 4, - "desired": 7, - "mode.": 4, - "One": 3, - "BCM2835_GPIO_PUD_*": 2, - "Clocks": 3, - "earlier": 1, - "remove": 2, - "group.": 2, - "BCM2835_PAD_GROUP_GPIO_*": 2, - "BCM2835_PAD_*": 2, - "bcm2835_gpio_set_pad": 1, - "Delays": 3, - "milliseconds.": 1, - "Uses": 4, - "CPU": 5, - "until": 1, - "up.": 1, - "mercy": 2, - "From": 2, - "interval": 4, - "req": 2, - "exact": 2, - "multiple": 2, - "granularity": 2, - "rounded": 2, - "next": 9, - "multiple.": 2, - "Furthermore": 2, - "sleep": 2, - "completes": 2, - "still": 3, - "becomes": 2, - "free": 4, - "once": 5, - "again": 2, - "execute": 3, - "thread.": 2, - "millis": 2, - "milliseconds": 1, - "unsigned": 22, - "microseconds.": 2, - "combination": 2, - "busy": 2, - "wait": 2, - "timers": 1, - "less": 1, - "microseconds": 6, - "Timer.": 1, - "RaspberryPi": 1, - "Your": 1, - "mileage": 1, - "vary.": 1, - "micros": 5, - "uint64_t": 8, - "required": 2, - "bcm2835_gpio_write_mask": 1, - "clocking": 1, - "spi": 1, - "let": 2, - "device.": 2, - "operations.": 4, - "Forces": 2, - "ALT0": 2, - "funcitons": 1, - "complete": 3, - "End": 2, - "returned": 5, - "INPUT": 2, - "behaviour.": 2, - "NOTE": 1, - "effect.": 1, - "SPI0.": 1, - "Defaults": 1, - "BCM2835_SPI_BIT_ORDER_*": 1, - "speed.": 2, - "BCM2835_SPI_CLOCK_DIVIDER_*": 1, - "bcm2835_spi_setClockDivider": 1, - "uint16_t": 2, - "polariy": 1, - "phase": 1, - "BCM2835_SPI_MODE*": 1, - "bcm2835_spi_transfer": 5, - "made": 1, - "selected": 13, - "during": 4, - "transfer.": 4, - "cs": 4, - "activate": 1, - "slave.": 7, - "BCM2835_SPI_CS*": 1, - "bcm2835_spi_chipSelect": 4, - "occurs": 1, - "currently": 12, - "active.": 1, - "transfers": 1, - "happening": 1, - "complement": 1, - "inactive": 1, - "affect": 1, - "active": 3, - "Whether": 1, - "bcm2835_spi_setChipSelectPolarity": 1, - "Transfers": 6, - "byte": 6, - "Asserts": 3, - "simultaneously": 3, - "clocks": 2, - "MISO.": 2, - "Returns": 2, - "polled": 2, - "Peripherls": 2, - "len": 15, - "slave": 8, - "placed": 1, - "rbuf.": 1, - "rbuf": 3, - "long": 15, - "tbuf": 4, - "Buffer": 10, - "send.": 5, - "put": 1, - "buffer": 9, - "Number": 8, - "send/received": 2, - "char*": 24, - "bcm2835_spi_transfernb.": 1, - "replaces": 1, - "transmitted": 1, - "buffer.": 1, - "buf": 14, - "replace": 1, - "contents": 3, - "eh": 2, - "bcm2835_spi_writenb": 1, - "i2c": 1, - "Philips": 1, - "bus/interface": 1, - "January": 1, - "SCL": 2, - "bcm2835_i2c_end": 3, - "bcm2835_i2c_begin": 1, - "address.": 2, - "addr": 2, - "bcm2835_i2c_setSlaveAddress": 4, - "BCM2835_I2C_CLOCK_DIVIDER_*": 1, - "bcm2835_i2c_setClockDivider": 2, - "converting": 1, - "baudrate": 4, - "parameter": 1, - "equivalent": 1, - "divider.": 1, - "standard": 2, - "khz": 1, - "corresponds": 1, - "its": 1, - "driver.": 1, - "Of": 1, - "course": 2, - "nothing": 1, - "driver": 1, - "const": 172, - "*": 183, - "receive.": 2, - "received.": 2, - "Allows": 2, - "slaves": 1, - "require": 3, - "repeated": 1, - "start": 12, - "prior": 1, - "stop": 1, - "set.": 1, - "popular": 1, - "MPL3115A2": 1, - "pressure": 1, - "temperature": 1, - "sensor.": 1, - "Note": 1, - "combined": 1, - "better": 1, - "choice.": 1, - "Will": 1, - "regaddr": 2, - "containing": 2, - "bcm2835_i2c_read_register_rs": 1, - "st": 1, - "delays": 1, - "Counter.": 1, - "bcm2835_st_read": 1, - "offset.": 1, - "offset_micros": 2, - "Offset": 1, - "bcm2835_st_delay": 1, - "@example": 5, - "blink.c": 1, - "Blinks": 1, - "off": 1, - "input.c": 1, - "event.c": 1, - "Shows": 3, - "how": 3, - "spi.c": 1, - "spin.c": 1, - "#pragma": 3, - "": 4, - "": 4, - "": 2, - "namespace": 38, - "std": 53, - "DEFAULT_DELIMITER": 1, - "CsvStreamer": 5, - "private": 16, - "ofstream": 1, - "File": 1, - "stream": 6, - "vector": 16, - "row_buffer": 1, - "stores": 3, - "row": 12, - "flushed/written": 1, - "fields": 4, - "columns": 2, - "rows": 3, - "records": 2, - "including": 2, - "delimiter": 2, - "Delimiter": 1, - "character": 10, - "comma": 2, - "string": 24, - "sanitize": 1, - "ready": 1, - "Empty": 1, - "CSV": 4, - "streamer...": 1, - "Same": 1, - "...": 1, - "Opens": 3, - "path/name": 3, - "Ensures": 1, - "closed": 1, - "saved": 1, - "delimiting": 1, - "add_field": 1, - "line": 11, - "adds": 1, - "field": 5, - "save_fields": 1, - "save": 1, - "writes": 2, - "append": 8, - "Appends": 5, - "quoted": 1, - "leading/trailing": 1, - "spaces": 3, - "trimmed": 1, - "bool": 111, - "Like": 1, - "specify": 1, - "trim": 2, - "keep": 1, - "float": 74, - "double": 25, - "writeln": 1, - "Flushes": 1, - "Saves": 1, - "closes": 1, - "field_count": 1, - "Gets": 2, - "row_count": 1, - "": 1, - "": 1, - "": 2, - "static": 263, - "Env": 13, - "*env_instance": 1, - "NULL": 109, - "*Env": 1, - "instance": 4, - "env_instance": 3, - "QObject": 2, - "QCoreApplication": 1, - "parse": 3, - "**envp": 1, - "**env": 1, - "**": 2, - "QString": 20, - "envvar": 2, - "name": 25, - "indexOfEquals": 5, - "env": 3, - "envp": 4, - "*env": 1, - "envvar.indexOf": 1, - "continue": 2, - "envvar.left": 1, - "envvar.mid": 1, - "m_map.insert": 1, - "QVariantMap": 3, - "asVariantMap": 2, - "m_map": 2, - "ENV_H": 3, - "": 1, - "Q_OBJECT": 1, - "*instance": 1, "BOOST_ASIO_DETAIL_IMPL_EPOLL_REACTOR_IPP": 3, + "#define": 343, "#if": 63, "defined": 49, + "(": 3102, "_MSC_VER": 7, + ")": 3105, "&&": 29, + "#endif": 110, + "#include": 129, "": 1, "BOOST_ASIO_HAS_EPOLL": 2, "": 1, @@ -11818,11 +10173,14 @@ "": 1, "BOOST_ASIO_HAS_TIMERFD": 19, "": 1, + "namespace": 38, "boost": 18, + "{": 726, "asio": 14, "detail": 5, "epoll_reactor": 40, "io_service": 6, + "&": 203, "service_base": 1, "": 1, "io_service_": 1, @@ -11835,10 +10193,14 @@ "timer_fd_": 21, "do_timerfd_create": 3, "shutdown_": 10, + "false": 48, "epoll_event": 10, "ev": 21, + "}": 726, + ";": 2783, "ev.events": 13, "EPOLLIN": 8, + "|": 40, "EPOLLERR": 8, "EPOLLET": 5, "ev.data.ptr": 10, @@ -11846,20 +10208,33 @@ "EPOLL_CTL_ADD": 7, "interrupter_.read_descriptor": 3, "interrupter_.interrupt": 2, + "if": 359, + "-": 438, + "close": 7, + "void": 241, "shutdown_service": 1, "mutex": 16, "scoped_lock": 16, "lock": 5, + "true": 49, "lock.unlock": 1, "op_queue": 6, "": 6, "ops": 10, + "while": 17, "descriptor_state*": 6, + "state": 33, "registered_descriptors_.first": 2, + "for": 105, + "int": 218, "i": 106, + "<": 255, "max_ops": 6, + "+": 80, "ops.push": 5, "op_queue_": 12, + "[": 293, + "]": 292, "registered_descriptors_.free": 2, "timer_queues_.get_all_timers": 1, "io_service_.abandon_operations": 1, @@ -11873,10 +10248,13 @@ "registered_descriptors_mutex_": 3, "next_": 3, "registered_events_": 8, + "result": 8, "descriptor_": 5, + "system": 13, "error_code": 4, "ec": 6, "errno": 10, + "error": 8, "get_system_category": 3, "throw_error": 2, "init_task": 1, @@ -11889,8 +10267,10 @@ "allocate_descriptor_state": 3, "descriptor_lock": 7, "reactor_": 7, + "this": 57, "EPOLLHUP": 3, "EPOLLPRI": 3, + "return": 240, "register_internal_descriptor": 1, "op_type": 8, "reactor_op*": 5, @@ -11900,6 +10280,7 @@ "target_descriptor_data": 2, "source_descriptor_data": 3, "start_op": 1, + "bool": 111, "is_continuation": 5, "allow_speculative": 2, "ec_": 4, @@ -11915,6 +10296,7 @@ "write_op": 2, "EPOLLOUT": 4, "EPOLL_CTL_MOD": 3, + "else": 58, "io_service_.work_started": 2, "cancel_ops": 1, ".front": 3, @@ -11922,9 +10304,13 @@ ".pop": 3, "io_service_.post_deferred_completions": 3, "deregister_descriptor": 1, + "closing": 3, "EPOLL_CTL_DEL": 2, "free_descriptor_state": 3, "deregister_internal_descriptor": 1, + "run": 2, + "block": 7, + "timeout": 5, "get_timeout": 5, "events": 8, "num_events": 2, @@ -11945,6 +10331,7 @@ "old_timeout": 4, "flags": 4, "timerfd_settime": 2, + "interrupt": 3, "EPOLL_CLOEXEC": 4, "fd": 15, "epoll_create1": 1, @@ -11956,8 +10343,10 @@ "F_SETFD": 2, "FD_CLOEXEC": 2, "timerfd_create": 2, + "CLOCK_MONOTONIC": 3, "TFD_CLOEXEC": 1, "registered_descriptors_.alloc": 1, + "s": 26, "do_add_timer_queue": 1, "timer_queue_base": 2, "queue": 4, @@ -11965,14 +10354,19 @@ "do_remove_timer_queue": 1, "timer_queues_.erase": 1, "timer_queues_.wait_duration_msec": 1, + "*": 183, "ts": 1, "ts.it_interval.tv_sec": 1, "ts.it_interval.tv_nsec": 1, + "long": 15, "usec": 5, "timer_queues_.wait_duration_usec": 1, "ts.it_value.tv_sec": 1, + "/": 16, "ts.it_value.tv_nsec": 1, + "%": 7, "TFD_TIMER_ABSTIME": 1, + "struct": 13, "perform_io_cleanup_on_block_exit": 4, "explicit": 5, "epoll_reactor*": 2, @@ -11985,9 +10379,13 @@ "operation": 2, "do_complete": 2, "perform_io": 2, + "uint32_t": 39, "mutex_.lock": 1, "io_cleanup": 1, "adopt_lock": 1, + "static": 263, + "const": 172, + "flag": 3, "j": 10, "io_cleanup.ops_.push": 1, "break": 35, @@ -11996,422 +10394,387 @@ "io_cleanup.ops_.pop": 1, "io_service_impl*": 1, "owner": 3, + "base": 8, + "std": 53, "size_t": 6, "bytes_transferred": 2, "": 1, + "complete": 3, "": 1, - "Field": 2, - "Free": 1, - "Black": 1, - "White": 1, - "Illegal": 1, - "Player": 1, - "GDSDBREADER_H": 3, - "": 1, - "GDS_DIR": 1, - "LEVEL_ONE": 1, - "LEVEL_TWO": 1, - "LEVEL_THREE": 1, - "dbDataStructure": 2, - "label": 1, - "quint32": 3, - "depth": 1, - "userIndex": 1, - "QByteArray": 1, - "COMPRESSED": 1, - "optimize": 1, - "ram": 1, - "disk": 2, - "space": 2, - "decompressed": 1, - "quint64": 1, - "uniqueID": 1, - "QVector": 2, - "": 1, - "nextItems": 1, - "": 1, - "nextItemsIndices": 1, - "dbDataStructure*": 1, - "father": 1, - "fatherIndex": 1, - "noFatherRoot": 1, - "Used": 2, - "tell": 1, - "node": 1, - "root": 1, - "hasn": 1, - "argument": 1, - "list": 3, - "operator": 10, - "overload.": 1, - "friend": 10, - "myclass.label": 2, - "myclass.depth": 2, - "myclass.userIndex": 2, - "qCompress": 2, - "myclass.data": 4, - "myclass.uniqueID": 2, - "myclass.nextItemsIndices": 2, - "myclass.fatherIndex": 2, - "myclass.noFatherRoot": 2, - "myclass.fileName": 2, - "myclass.firstLineData": 4, - "myclass.linesNumbers": 2, - "QDataStream": 2, - "myclass": 1, - "//Don": 1, - "qUncompress": 2, - "": 2, - "main": 2, - "cout": 2, - "endl": 1, - "": 1, - "": 1, - "": 1, - "EC_KEY_regenerate_key": 1, - "EC_KEY": 3, - "*eckey": 2, - "BIGNUM": 9, - "*priv_key": 1, - "ok": 3, - "BN_CTX": 2, - "*ctx": 2, - "EC_POINT": 4, - "*pub_key": 1, - "eckey": 7, - "EC_GROUP": 2, - "*group": 2, - "EC_KEY_get0_group": 2, - "ctx": 26, - "BN_CTX_new": 2, + "#pragma": 3, + "once": 5, + "": 2, + "typedef": 50, + "smallPrime_t": 1, + "class": 40, + "Bar": 2, + "protected": 4, + "char": 127, + "*name": 6, + "public": 33, + "hello": 2, + "INTERNAL_SUPPRESS_PROTOBUF_FIELD_DEPRECATION": 1, + "": 1, + "": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "persons": 4, + "google": 72, + "protobuf": 72, + "Descriptor*": 3, + "Person_descriptor_": 6, + "NULL": 109, + "internal": 47, + "GeneratedMessageReflection*": 1, + "Person_reflection_": 4, + "protobuf_AssignDesc_protocol_2dbuffer_2eproto": 4, + "protobuf_AddDesc_protocol_2dbuffer_2eproto": 6, + "FileDescriptor*": 1, + "file": 31, + "DescriptorPool": 3, + "generated_pool": 2, + "FindFileByName": 1, + "GOOGLE_CHECK": 1, + "message_type": 1, + "Person_offsets_": 2, + "GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET": 3, + "Person": 65, + "name_": 30, + "new": 13, + "GeneratedMessageReflection": 1, + "default_instance_": 8, + "_has_bits_": 14, + "_unknown_fields_": 5, + "MessageFactory": 3, + "generated_factory": 1, + "sizeof": 15, + "GOOGLE_PROTOBUF_DECLARE_ONCE": 1, + "protobuf_AssignDescriptors_once_": 2, + "inline": 39, + "protobuf_AssignDescriptorsOnce": 4, + "GoogleOnceInit": 1, + "protobuf_RegisterTypes": 2, + "string": 24, + "InternalRegisterGeneratedMessage": 1, + "default_instance": 3, + "protobuf_ShutdownFile_protocol_2dbuffer_2eproto": 4, + "delete": 6, + "already_here": 3, + "GOOGLE_PROTOBUF_VERIFY_VERSION": 1, + "InternalAddGeneratedFile": 1, + "InternalRegisterGeneratedFile": 1, + "InitAsDefaultInstance": 3, + "OnShutdown": 1, + "StaticDescriptorInitializer_protocol_2dbuffer_2eproto": 2, + "static_descriptor_initializer_protocol_2dbuffer_2eproto_": 1, + "kNameFieldNumber": 2, + "Message": 7, + "SharedCtor": 4, + "from": 91, + "MergeFrom": 9, + "_cached_size_": 7, + "const_cast": 3, + "string*": 11, + "kEmptyString": 12, + "memset": 3, + "SharedDtor": 3, + "SetCachedSize": 2, + "size": 13, + "GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN": 2, + "GOOGLE_SAFE_CONCURRENT_WRITES_END": 2, + "*default_instance_": 1, + "Person*": 7, + "New": 6, + "Clear": 18, + "xffu": 3, + "<<": 29, + "has_name": 6, + "clear": 3, + "mutable_unknown_fields": 4, + "MergePartialFromCodedStream": 2, + "io": 4, + "CodedInputStream*": 2, + "input": 12, + "DO_": 4, + "EXPRESSION": 2, + "uint32": 2, + "tag": 6, + "ReadTag": 1, + "switch": 3, + "WireFormatLite": 9, + "GetTagFieldNumber": 1, + "case": 34, + "GetTagWireType": 2, + "WIRETYPE_LENGTH_DELIMITED": 1, + "ReadString": 1, + "mutable_name": 3, + "WireFormat": 10, + "VerifyUTF8String": 3, + "name": 25, + ".data": 3, + ".length": 3, + "PARSE": 1, "goto": 156, - "err": 26, - "pub_key": 6, - "EC_POINT_new": 4, - "EC_POINT_mul": 3, - "priv_key": 2, - "EC_KEY_set_private_key": 1, - "EC_KEY_set_public_key": 2, - "EC_POINT_free": 4, - "BN_CTX_free": 2, - "ECDSA_SIG_recover_key_GFp": 3, - "ECDSA_SIG": 3, - "*ecsig": 1, - "*msg": 2, - "msglen": 2, - "recid": 3, - "ret": 24, - "*x": 1, - "*e": 1, - "*order": 1, - "*sor": 1, - "*eor": 1, - "*field": 1, - "*R": 1, - "*O": 1, - "*Q": 1, - "*rr": 1, - "*zero": 1, - "n": 28, - "BN_CTX_start": 1, - "BN_CTX_get": 8, - "EC_GROUP_get_order": 1, - "BN_copy": 1, - "BN_mul_word": 1, - "BN_add": 1, - "ecsig": 3, - "EC_GROUP_get_curve_GFp": 1, - "BN_cmp": 1, - "R": 6, - "EC_POINT_set_compressed_coordinates_GFp": 1, - "O": 5, - "EC_POINT_is_at_infinity": 1, - "Q": 5, - "EC_GROUP_get_degree": 1, - "e": 15, - "BN_bin2bn": 3, - "msg": 1, - "*msglen": 1, - "BN_rshift": 1, - "zero": 5, - "BN_zero": 1, - "BN_mod_sub": 1, - "rr": 4, - "BN_mod_inverse": 1, - "sor": 3, - "BN_mod_mul": 2, - "eor": 3, - "BN_CTX_end": 1, - "CKey": 26, - "SetCompressedPubKey": 4, - "EC_KEY_set_conv_form": 1, - "pkey": 14, - "POINT_CONVERSION_COMPRESSED": 1, - "fCompressedPubKey": 5, - "Reset": 5, - "EC_KEY_new_by_curve_name": 2, - "NID_secp256k1": 2, - "throw": 4, - "key_error": 6, - "fSet": 7, - "b": 57, - "EC_KEY_dup": 1, - "b.pkey": 2, - "b.fSet": 2, - "EC_KEY_copy": 1, - "hash": 20, - "vchSig": 18, - "nSize": 2, - "vchSig.clear": 2, - "vchSig.resize": 2, - "Shrink": 1, - "fit": 1, - "actual": 1, - "SignCompact": 2, - "uint256": 10, - "": 19, - "fOk": 3, - "*sig": 2, - "ECDSA_do_sign": 1, - "sig": 11, - "nBitsR": 3, - "BN_num_bits": 2, - "nBitsS": 3, - "nRecId": 4, - "<4;>": 1, - "keyRec": 5, - "1": 4, - "GetPubKey": 5, - "BN_bn2bin": 2, - "/8": 2, - "ECDSA_SIG_free": 2, - "SetCompactSignature": 2, - "vchSig.size": 2, - "nV": 6, - "<27>": 1, - "ECDSA_SIG_new": 1, - "EC_KEY_free": 1, - "Verify": 2, - "ECDSA_verify": 1, - "VerifyCompact": 2, - "key": 23, - "key.SetCompactSignature": 1, - "key.GetPubKey": 1, - "IsValid": 4, - "fCompr": 3, - "CSecret": 4, - "secret": 2, - "GetSecret": 2, - "key2": 1, - "key2.SetSecret": 1, - "key2.GetPubKey": 1, - "BITCOIN_KEY_H": 2, - "": 1, - "": 1, - "runtime_error": 2, - "str": 2, - "CKeyID": 5, - "uint160": 8, - "CScriptID": 3, - "CPubKey": 11, - "vchPubKey": 6, - "vchPubKeyIn": 2, - "a.vchPubKey": 3, - "b.vchPubKey": 3, - "IMPLEMENT_SERIALIZE": 1, - "READWRITE": 1, - "GetID": 1, - "Hash160": 1, - "GetHash": 1, - "Hash": 1, - "vchPubKey.begin": 1, - "vchPubKey.end": 1, - "vchPubKey.size": 3, - "IsCompressed": 2, - "Raw": 1, - "secure_allocator": 2, - "CPrivKey": 3, - "EC_KEY*": 1, - "IsNull": 1, - "MakeNewKey": 1, - "fCompressed": 3, - "SetPrivKey": 1, - "vchPrivKey": 1, - "SetSecret": 1, - "vchSecret": 1, - "GetPrivKey": 1, - "SetPubKey": 1, - "Sign": 2, - "LIBCANIH": 2, - "": 1, - "": 1, - "int64": 1, - "//#define": 1, - "DEBUG": 5, - "dout": 2, - "cerr": 1, - "libcanister": 2, - "//the": 8, - "canmem": 22, - "object": 3, - "generic": 1, - "container": 2, - "commonly": 1, - "//throughout": 1, - "canister": 14, - "framework": 1, - "hold": 1, - "uncertain": 1, - "//length": 1, - "contain": 1, - "null": 3, - "bytes.": 1, - "raw": 2, - "absolute": 1, - "length": 10, - "//creates": 3, - "unallocated": 1, - "allocsize": 1, - "blank": 1, - "strdata": 1, - "//automates": 1, - "creation": 1, - "limited": 2, - "canmems": 1, - "//cleans": 1, - "zeromem": 1, - "//overwrites": 2, - "fragmem": 1, - "notation": 1, - "countlen": 1, - "//counts": 1, - "strings": 1, - "//removes": 1, - "nulls": 1, - "//returns": 2, - "singleton": 2, - "//contains": 2, - "caninfo": 2, - "path": 8, - "//physical": 1, - "internalname": 1, - "//a": 1, - "numfiles": 1, - "files": 6, - "//necessary": 1, - "type": 7, - "canfile": 7, - "//this": 1, - "holds": 2, - "//canister": 1, - "canister*": 1, - "parent": 1, - "//internal": 1, - "id": 4, - "//use": 1, - "own.": 1, - "newline": 2, - "delimited": 2, - "container.": 1, - "TOC": 1, - "info": 2, - "general": 1, - "canfiles": 1, - "recommended": 1, - "modify": 1, - "//these": 1, - "enforced.": 1, - "canfile*": 1, - "readonly": 3, - "//if": 1, - "routines": 1, - "anything": 1, - "//maximum": 1, - "//time": 1, - "whatever": 1, - "suits": 1, - "application.": 1, - "cachemax": 2, - "cachecnt": 1, - "//number": 1, - "cache": 2, + "handle_uninterpreted": 2, + "ExpectAtEnd": 1, + "default": 14, + "WIRETYPE_END_GROUP": 1, + "SkipField": 1, + "#undef": 3, + "SerializeWithCachedSizes": 2, + "CodedOutputStream*": 2, + "output": 21, + "SERIALIZE": 2, + "WriteString": 1, + "unknown_fields": 7, + "SerializeUnknownFields": 1, + "uint8*": 4, + "SerializeWithCachedSizesToArray": 2, + "target": 6, + "WriteStringToArray": 1, + "SerializeUnknownFieldsToArray": 1, + "ByteSize": 2, + "total_size": 5, + "StringSize": 1, + "ComputeUnknownFieldsSize": 1, + "GOOGLE_CHECK_NE": 2, + "source": 12, + "dynamic_cast_if_available": 1, + "": 12, + "ReflectionOps": 1, + "Merge": 1, + "from._has_bits_": 1, + "from.has_name": 1, + "set_name": 7, + "from.name": 1, + "from.unknown_fields": 1, + "CopyFrom": 5, + "IsInitialized": 3, + "Swap": 2, + "other": 17, + "swap": 3, + "_unknown_fields_.Swap": 1, + "Metadata": 3, + "GetMetadata": 2, + "metadata": 2, + "metadata.descriptor": 1, + "metadata.reflection": 1, + "QSCIPRINTER_H": 2, + "#ifdef": 19, + "__APPLE__": 4, + "extern": 72, + "": 1, + "": 2, + "": 1, + "QT_BEGIN_NAMESPACE": 1, + "QRect": 2, + "QPainter": 2, + "QT_END_NAMESPACE": 1, + "QsciScintillaBase": 100, + "brief": 12, + "The": 50, + "QsciPrinter": 9, + "is": 102, + "a": 157, + "sub": 2, + "of": 215, + "the": 541, + "Qt": 1, + "QPrinter": 3, + "that": 36, + "able": 2, + "to": 254, + "print": 5, + "text": 5, + "Scintilla": 2, + "document.": 8, + "can": 21, + "be": 35, + "further": 1, + "classed": 1, + "alter": 2, + "layout": 1, + "adding": 2, + "headers": 3, + "and": 118, + "footers": 2, + "example.": 1, + "QSCINTILLA_EXPORT": 2, + "Constructs": 1, + "printer": 1, + "paint": 1, + "device": 7, + "with": 33, + "mode": 24, + "mode.": 4, + "PrinterMode": 1, + "ScreenResolution": 1, + "Destroys": 1, + "instance.": 2, + "virtual": 10, + "Format": 1, + "page": 5, + "by": 53, + "example": 3, + "before": 7, + "document": 16, + "drawn": 2, + "on": 55, + "it.": 3, + "painter": 4, + "used": 17, + "add": 3, + "customised": 2, + "graphics.": 2, + "drawing": 4, + "actually": 1, + "being": 4, + "rather": 2, + "than": 6, + "sized.": 1, + "methods": 2, + "must": 6, + "only": 6, + "called": 13, + "when": 22, + "true.": 2, + "area": 5, + "will": 15, + "draw": 1, + "text.": 3, + "This": 19, + "should": 10, "modified": 3, - "//both": 1, - "initialize": 1, - "fspath": 3, - "//destroys": 1, - "flushing": 1, - "modded": 1, - "//open": 1, - "//does": 1, - "exist": 2, - "//close": 1, - "flush": 1, - "clean": 2, - "//deletes": 1, - "inside": 1, - "delFile": 1, - "//pulls": 1, - "getFile": 1, - "otherwise": 1, - "overwrites": 1, - "succeeded": 2, - "writeFile": 2, - "//get": 1, - "//list": 1, - "paths": 1, - "getTOC": 1, - "//brings": 1, - "back": 1, - "limit": 1, - "//important": 1, - "sCFID": 2, - "CFID": 2, - "avoid": 1, - "uncaching": 1, - "//really": 1, - "just": 2, - "internally": 1, - "harm.": 1, - "cacheclean": 1, - "dFlush": 1, - "Q_OS_LINUX": 2, - "": 1, - "QT_VERSION": 1, - "QT_VERSION_CHECK": 1, + "it": 19, + "necessary": 1, + "reserve": 1, + "space": 2, + "any": 23, + "or": 44, + "By": 1, + "relative": 2, + "printable": 1, + "page.": 13, + "Use": 8, + "setFullPage": 1, + "because": 2, + "calling": 9, + "printRange": 2, + "you": 29, + "want": 5, + "try": 1, + "over": 1, + "whole": 2, + "pagenr": 2, + "number": 52, + "first": 13, + "numbered": 1, + "formatPage": 1, + "Return": 3, + "points": 2, + "each": 7, + "font": 2, + "printing.": 2, + "sa": 30, + "setMagnification": 2, + "magnification": 3, + "mag": 2, + "Sets": 24, + "printing": 2, + "magnification.": 1, + "Print": 2, + "range": 3, + "lines": 3, + "instance": 4, + "qsb.": 1, + "line": 11, + "negative": 2, + "value": 50, + "signifies": 2, + "last": 6, + "returned": 5, + "there": 4, + "was": 6, + "no": 7, + "error.": 1, + "*qsb": 1, + "wrap": 4, + "QsciScintilla": 7, + "WrapWord.": 1, + "setWrapMode": 2, + "WrapMode": 3, + "wrapMode": 2, + "wmode.": 1, + "wmode": 1, + "private": 16, + "operator": 10, + "V8_V8_H_": 3, + "GOOGLE3": 2, + "DEBUG": 5, + "NDEBUG": 4, "#error": 9, - "Something": 1, - "wrong": 1, - "setup.": 1, - "report": 3, - "mailing": 1, - "argc": 2, - "char**": 2, - "argv": 2, - "google_breakpad": 1, - "ExceptionHandler": 1, - "Utils": 4, - "exceptionHandler": 2, - "qInstallMsgHandler": 1, - "messageHandler": 2, - "QApplication": 1, - "app": 1, - "STATIC_BUILD": 1, - "Q_INIT_RESOURCE": 2, - "WebKit": 1, - "InspectorBackendStub": 1, - "app.setWindowIcon": 1, - "QIcon": 1, - "app.setApplicationName": 1, - "app.setOrganizationName": 1, - "app.setOrganizationDomain": 1, - "app.setApplicationVersion": 1, - "PHANTOMJS_VERSION_STRING": 1, - "Phantom": 1, - "phantom": 1, - "phantom.execute": 1, - "app.exec": 1, - "phantom.returnValue": 1, + "both": 1, + "are": 36, + "set": 18, + "v8": 9, + "Deserializer": 1, + "V8": 21, + "AllStatic": 1, + "Initialize": 4, + "Deserializer*": 2, + "des": 3, + "TearDown": 5, + "IsRunning": 1, + "is_running_": 6, + "UseCrankshaft": 1, + "use_crankshaft_": 6, + "IsDead": 2, + "has_fatal_error_": 5, + "has_been_disposed_": 6, + "SetFatalError": 2, + "FatalProcessOutOfMemory": 1, + "char*": 24, + "location": 6, + "take_snapshot": 1, + "SetEntropySource": 2, + "EntropySource": 3, + "SetReturnAddressLocationResolver": 3, + "ReturnAddressLocationResolver": 2, + "resolver": 3, + "Random": 3, + "Context*": 4, + "context": 8, + "RandomPrivate": 2, + "Isolate*": 6, + "isolate": 15, + "Object*": 4, + "FillHeapNumberWithRandom": 2, + "heap_number": 4, + "IdleNotification": 3, + "hint": 3, + "AddCallCompletedCallback": 2, + "CallCompletedCallback": 4, + "callback": 7, + "RemoveCallCompletedCallback": 2, + "FireCallCompletedCallback": 2, + "InitializeOncePerProcessImpl": 3, + "InitializeOncePerProcess": 4, + "has_been_set_up_": 4, + "List": 3, + "": 3, + "call_completed_callbacks_": 16, + "enum": 17, + "NilValue": 1, + "kNullValue": 1, + "kUndefinedValue": 1, + "EqualityKind": 1, + "kStrictEquality": 1, + "kNonStrictEquality": 1, "__OG_MATH_INL__": 2, "og": 1, "OG_INLINE": 41, @@ -12419,6 +10782,8 @@ "Abs": 1, "MASK_SIGNED": 2, "y": 16, + "x": 86, + "float": 74, "Fabs": 1, "f": 104, "uInt": 1, @@ -12434,8 +10799,11 @@ "ceilf": 1, "Ftoi": 1, "@todo": 1, + "needs": 4, + "testing": 2, "note": 1, "sse": 1, + "function": 19, "cvttss2si": 2, "OG_ASM_MSVC": 4, "OG_FTOI_USE_SSE": 2, @@ -12447,18 +10815,28 @@ "fld": 4, "fistp": 3, "//__asm": 3, + "do": 13, + "we": 10, + "need": 6, "O_o": 3, "#elif": 7, "OG_ASM_GNU": 4, "__asm__": 4, "__volatile__": 4, + "use": 37, + "c": 72, "cast": 7, + "instead": 4, + "not": 29, + "sure": 6, "why": 3, + "id": 4, "did": 3, "": 3, "FtoiFast": 2, "Ftol": 1, "": 1, + "Sign": 2, "Fmod": 1, "numerator": 2, "denominator": 2, @@ -12492,7 +10870,7 @@ "faster": 3, "two": 2, "known": 1, - "methods": 2, + "check": 4, "moved": 1, "beginning": 1, "HigherPowerOfTwo": 4, @@ -12500,6 +10878,8 @@ "FloorPowerOfTwo": 1, "CeilPowerOfTwo": 1, "ClosestPowerOfTwo": 1, + "high": 5, + "low": 5, "Digits": 1, "digits": 6, "step": 3, @@ -12507,6 +10887,7 @@ "sinf": 1, "ASin": 1, "<=>": 2, + "1": 4, "0f": 2, "HALF_PI": 2, "asinf": 1, @@ -12525,6 +10906,7 @@ "SinCos": 1, "sometimes": 1, "assembler": 1, + "just": 2, "waaayy": 1, "_asm": 1, "fsincos": 1, @@ -12544,1103 +10926,64 @@ "sec": 2, "Ms2Sec": 1, "ms": 2, - "NINJA_METRICS_H_": 3, - "int64_t.": 1, - "Metrics": 2, - "module": 1, - "dumps": 1, - "stats": 2, - "actions.": 1, - "To": 1, - "METRIC_RECORD": 4, - "below.": 1, - "metrics": 2, - "hit": 1, - "path.": 2, - "count": 1, - "Total": 1, - "spent": 1, - "int64_t": 3, - "sum": 1, - "scoped": 1, - "recording": 1, - "metric": 2, - "across": 1, - "body": 1, - "macro.": 1, - "ScopedMetric": 4, - "Metric*": 4, - "metric_": 1, - "Timestamp": 1, - "started.": 1, - "Value": 24, - "platform": 2, - "dependent.": 1, - "start_": 1, - "prints": 1, - "report.": 1, - "NewMetric": 2, - "Print": 2, - "summary": 1, - "stdout.": 1, - "Report": 1, - "": 1, - "metrics_": 1, - "Get": 1, - "relative": 2, - "epoch.": 1, - "Epoch": 1, - "varies": 1, - "between": 1, - "platforms": 1, - "useful": 1, - "measuring": 1, - "elapsed": 1, - "time.": 1, - "GetTimeMillis": 1, - "simple": 1, - "stopwatch": 1, - "seconds": 1, - "Restart": 3, - "called.": 1, - "Stopwatch": 2, - "started_": 4, - "Seconds": 1, - "call.": 1, - "Elapsed": 1, - "": 1, - "primary": 1, - "metrics.": 1, - "top": 1, - "recorded": 1, - "metrics_h_metric": 2, - "g_metrics": 3, - "metrics_h_scoped": 1, - "Metrics*": 1, - "INTERNAL_SUPPRESS_PROTOBUF_FIELD_DEPRECATION": 1, - "": 1, - "": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "persons": 4, - "google": 72, - "protobuf": 72, - "Descriptor*": 3, - "Person_descriptor_": 6, - "GeneratedMessageReflection*": 1, - "Person_reflection_": 4, - "protobuf_AssignDesc_protocol_2dbuffer_2eproto": 4, - "protobuf_AddDesc_protocol_2dbuffer_2eproto": 6, - "FileDescriptor*": 1, - "DescriptorPool": 3, - "generated_pool": 2, - "FindFileByName": 1, - "GOOGLE_CHECK": 1, - "message_type": 1, - "Person_offsets_": 2, - "GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET": 3, - "Person": 65, - "name_": 30, - "GeneratedMessageReflection": 1, - "default_instance_": 8, - "_has_bits_": 14, - "_unknown_fields_": 5, - "MessageFactory": 3, - "generated_factory": 1, - "GOOGLE_PROTOBUF_DECLARE_ONCE": 1, - "protobuf_AssignDescriptors_once_": 2, - "inline": 39, - "protobuf_AssignDescriptorsOnce": 4, - "GoogleOnceInit": 1, - "protobuf_RegisterTypes": 2, - "InternalRegisterGeneratedMessage": 1, - "default_instance": 3, - "protobuf_ShutdownFile_protocol_2dbuffer_2eproto": 4, - "delete": 6, - "already_here": 3, - "GOOGLE_PROTOBUF_VERIFY_VERSION": 1, - "InternalAddGeneratedFile": 1, - "InternalRegisterGeneratedFile": 1, - "InitAsDefaultInstance": 3, - "OnShutdown": 1, - "StaticDescriptorInitializer_protocol_2dbuffer_2eproto": 2, - "static_descriptor_initializer_protocol_2dbuffer_2eproto_": 1, - "kNameFieldNumber": 2, - "Message": 7, - "SharedCtor": 4, - "MergeFrom": 9, - "_cached_size_": 7, - "const_cast": 3, - "string*": 11, - "kEmptyString": 12, - "SharedDtor": 3, - "SetCachedSize": 2, - "GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN": 2, - "GOOGLE_SAFE_CONCURRENT_WRITES_END": 2, - "*default_instance_": 1, - "Person*": 7, - "xffu": 3, - "has_name": 6, - "mutable_unknown_fields": 4, - "MergePartialFromCodedStream": 2, - "io": 4, - "CodedInputStream*": 2, - "DO_": 4, - "EXPRESSION": 2, - "uint32": 2, - "tag": 6, - "ReadTag": 1, - "switch": 3, - "WireFormatLite": 9, - "GetTagFieldNumber": 1, - "GetTagWireType": 2, - "WIRETYPE_LENGTH_DELIMITED": 1, - "ReadString": 1, - "mutable_name": 3, - "WireFormat": 10, - "VerifyUTF8String": 3, - ".data": 3, - ".length": 3, - "PARSE": 1, - "handle_uninterpreted": 2, - "ExpectAtEnd": 1, - "WIRETYPE_END_GROUP": 1, - "SkipField": 1, - "#undef": 3, - "SerializeWithCachedSizes": 2, - "CodedOutputStream*": 2, - "SERIALIZE": 2, - "WriteString": 1, - "unknown_fields": 7, - "SerializeUnknownFields": 1, - "uint8*": 4, - "SerializeWithCachedSizesToArray": 2, - "target": 6, - "WriteStringToArray": 1, - "SerializeUnknownFieldsToArray": 1, - "ByteSize": 2, - "total_size": 5, - "StringSize": 1, - "ComputeUnknownFieldsSize": 1, - "GOOGLE_CHECK_NE": 2, - "dynamic_cast_if_available": 1, - "": 12, - "ReflectionOps": 1, - "Merge": 1, - "from._has_bits_": 1, - "from.has_name": 1, - "set_name": 7, - "from.name": 1, - "from.unknown_fields": 1, - "CopyFrom": 5, - "IsInitialized": 3, - "Swap": 2, - "swap": 3, - "_unknown_fields_.Swap": 1, - "Metadata": 3, - "GetMetadata": 2, - "metadata": 2, - "metadata.descriptor": 1, - "metadata.reflection": 1, - "PROTOBUF_protocol_2dbuffer_2eproto__INCLUDED": 3, - "GOOGLE_PROTOBUF_VERSION": 1, - "generated": 2, - "newer": 2, - "protoc": 2, - "incompatible": 2, - "Protocol": 2, - "headers.": 3, - "update": 1, - "GOOGLE_PROTOBUF_MIN_PROTOC_VERSION": 1, - "older": 1, - "regenerate": 1, - "protoc.": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "virtual": 10, - "*this": 1, - "UnknownFieldSet": 2, - "UnknownFieldSet*": 1, - "GetCachedSize": 1, - "clear_name": 2, - "release_name": 2, - "set_allocated_name": 2, - "set_has_name": 7, - "clear_has_name": 5, - "mutable": 1, - "u": 9, - "*name_": 1, - "assign": 3, - "temp": 2, - "SWIG": 2, - "QSCICOMMAND_H": 2, - "__APPLE__": 4, - "": 1, - "": 2, - "": 1, - "QsciScintilla": 7, - "QsciCommand": 7, - "represents": 1, - "editor": 1, - "command": 9, - "keys": 3, - "bound": 4, - "Methods": 1, - "provided": 1, - "binding.": 1, - "Each": 1, - "friendly": 2, - "description": 3, - "dialogs.": 1, - "QSCINTILLA_EXPORT": 2, - "commands": 1, - "assigned": 1, - "key.": 1, - "Command": 4, - "Move": 26, - "down": 12, - "line.": 33, - "LineDown": 1, - "QsciScintillaBase": 100, - "SCI_LINEDOWN": 1, - "Extend": 33, - "selection": 39, - "LineDownExtend": 1, - "SCI_LINEDOWNEXTEND": 1, - "rectangular": 9, - "LineDownRectExtend": 1, - "SCI_LINEDOWNRECTEXTEND": 1, - "Scroll": 5, - "view": 2, - "LineScrollDown": 1, - "SCI_LINESCROLLDOWN": 1, - "LineUp": 1, - "SCI_LINEUP": 1, - "LineUpExtend": 1, - "SCI_LINEUPEXTEND": 1, - "LineUpRectExtend": 1, - "SCI_LINEUPRECTEXTEND": 1, - "LineScrollUp": 1, - "SCI_LINESCROLLUP": 1, - "document.": 8, - "ScrollToStart": 1, - "SCI_SCROLLTOSTART": 1, - "ScrollToEnd": 1, - "SCI_SCROLLTOEND": 1, - "vertically": 1, - "centre": 1, - "VerticalCentreCaret": 1, - "SCI_VERTICALCENTRECARET": 1, - "paragraph.": 4, - "ParaDown": 1, - "SCI_PARADOWN": 1, - "ParaDownExtend": 1, - "SCI_PARADOWNEXTEND": 1, - "ParaUp": 1, - "SCI_PARAUP": 1, - "ParaUpExtend": 1, - "SCI_PARAUPEXTEND": 1, - "left": 7, - "character.": 9, - "CharLeft": 1, - "SCI_CHARLEFT": 1, - "CharLeftExtend": 1, - "SCI_CHARLEFTEXTEND": 1, - "CharLeftRectExtend": 1, - "SCI_CHARLEFTRECTEXTEND": 1, - "CharRight": 1, - "SCI_CHARRIGHT": 1, - "CharRightExtend": 1, - "SCI_CHARRIGHTEXTEND": 1, - "CharRightRectExtend": 1, - "SCI_CHARRIGHTRECTEXTEND": 1, - "word.": 9, - "WordLeft": 1, - "SCI_WORDLEFT": 1, - "WordLeftExtend": 1, - "SCI_WORDLEFTEXTEND": 1, - "WordRight": 1, - "SCI_WORDRIGHT": 1, - "WordRightExtend": 1, - "SCI_WORDRIGHTEXTEND": 1, - "WordLeftEnd": 1, - "SCI_WORDLEFTEND": 1, - "WordLeftEndExtend": 1, - "SCI_WORDLEFTENDEXTEND": 1, - "WordRightEnd": 1, - "SCI_WORDRIGHTEND": 1, - "WordRightEndExtend": 1, - "SCI_WORDRIGHTENDEXTEND": 1, - "part.": 4, - "WordPartLeft": 1, - "SCI_WORDPARTLEFT": 1, - "WordPartLeftExtend": 1, - "SCI_WORDPARTLEFTEXTEND": 1, - "WordPartRight": 1, - "SCI_WORDPARTRIGHT": 1, - "WordPartRightExtend": 1, - "SCI_WORDPARTRIGHTEXTEND": 1, - "document": 16, - "Home": 1, - "SCI_HOME": 1, - "HomeExtend": 1, - "SCI_HOMEEXTEND": 1, - "HomeRectExtend": 1, - "SCI_HOMERECTEXTEND": 1, - "displayed": 10, - "HomeDisplay": 1, - "SCI_HOMEDISPLAY": 1, - "HomeDisplayExtend": 1, - "SCI_HOMEDISPLAYEXTEND": 1, - "HomeWrap": 1, - "SCI_HOMEWRAP": 1, - "HomeWrapExtend": 1, - "SCI_HOMEWRAPEXTEND": 1, - "visible": 6, - "VCHome": 1, - "SCI_VCHOME": 1, - "VCHomeExtend": 1, - "SCI_VCHOMEEXTEND": 1, - "VCHomeRectExtend": 1, - "SCI_VCHOMERECTEXTEND": 1, - "VCHomeWrap": 1, - "SCI_VCHOMEWRAP": 1, - "VCHomeWrapExtend": 1, - "SCI_VCHOMEWRAPEXTEND": 1, - "LineEnd": 1, - "SCI_LINEEND": 1, - "LineEndExtend": 1, - "SCI_LINEENDEXTEND": 1, - "LineEndRectExtend": 1, - "SCI_LINEENDRECTEXTEND": 1, - "LineEndDisplay": 1, - "SCI_LINEENDDISPLAY": 1, - "LineEndDisplayExtend": 1, - "SCI_LINEENDDISPLAYEXTEND": 1, - "LineEndWrap": 1, - "SCI_LINEENDWRAP": 1, - "LineEndWrapExtend": 1, - "SCI_LINEENDWRAPEXTEND": 1, - "DocumentStart": 1, - "SCI_DOCUMENTSTART": 1, - "DocumentStartExtend": 1, - "SCI_DOCUMENTSTARTEXTEND": 1, - "DocumentEnd": 1, - "SCI_DOCUMENTEND": 1, - "DocumentEndExtend": 1, - "SCI_DOCUMENTENDEXTEND": 1, - "page.": 13, - "PageUp": 1, - "SCI_PAGEUP": 1, - "PageUpExtend": 1, - "SCI_PAGEUPEXTEND": 1, - "PageUpRectExtend": 1, - "SCI_PAGEUPRECTEXTEND": 1, - "PageDown": 1, - "SCI_PAGEDOWN": 1, - "PageDownExtend": 1, - "SCI_PAGEDOWNEXTEND": 1, - "PageDownRectExtend": 1, - "SCI_PAGEDOWNRECTEXTEND": 1, - "Stuttered": 4, - "move": 2, - "StutteredPageUp": 1, - "SCI_STUTTEREDPAGEUP": 1, - "extend": 2, - "StutteredPageUpExtend": 1, - "SCI_STUTTEREDPAGEUPEXTEND": 1, - "StutteredPageDown": 1, - "SCI_STUTTEREDPAGEDOWN": 1, - "StutteredPageDownExtend": 1, - "SCI_STUTTEREDPAGEDOWNEXTEND": 1, - "Delete": 10, - "SCI_CLEAR": 1, - "DeleteBack": 1, - "SCI_DELETEBACK": 1, - "DeleteBackNotLine": 1, - "SCI_DELETEBACKNOTLINE": 1, - "left.": 2, - "DeleteWordLeft": 1, - "SCI_DELWORDLEFT": 1, - "right.": 2, - "DeleteWordRight": 1, - "SCI_DELWORDRIGHT": 1, - "DeleteWordRightEnd": 1, - "SCI_DELWORDRIGHTEND": 1, - "DeleteLineLeft": 1, - "SCI_DELLINELEFT": 1, - "DeleteLineRight": 1, - "SCI_DELLINERIGHT": 1, - "LineDelete": 1, - "SCI_LINEDELETE": 1, - "Cut": 2, - "clipboard.": 5, - "LineCut": 1, - "SCI_LINECUT": 1, - "Copy": 2, - "LineCopy": 1, - "SCI_LINECOPY": 1, - "Transpose": 1, - "lines.": 1, - "LineTranspose": 1, - "SCI_LINETRANSPOSE": 1, - "Duplicate": 2, - "LineDuplicate": 1, - "SCI_LINEDUPLICATE": 1, - "whole": 2, - "SelectAll": 1, - "SCI_SELECTALL": 1, - "lines": 3, - "MoveSelectedLinesUp": 1, - "SCI_MOVESELECTEDLINESUP": 1, - "MoveSelectedLinesDown": 1, - "SCI_MOVESELECTEDLINESDOWN": 1, - "selection.": 1, - "SelectionDuplicate": 1, - "SCI_SELECTIONDUPLICATE": 1, - "Convert": 2, - "lower": 1, - "case.": 2, - "SelectionLowerCase": 1, - "SCI_LOWERCASE": 1, - "upper": 1, - "SelectionUpperCase": 1, - "SCI_UPPERCASE": 1, - "SelectionCut": 1, - "SCI_CUT": 1, - "SelectionCopy": 1, - "SCI_COPY": 1, - "Paste": 2, - "SCI_PASTE": 1, - "Toggle": 1, - "insert/overtype.": 1, - "EditToggleOvertype": 1, - "SCI_EDITTOGGLEOVERTYPE": 1, - "Insert": 2, - "dependent": 1, - "newline.": 1, - "Newline": 1, - "SCI_NEWLINE": 1, - "formfeed.": 1, - "Formfeed": 1, - "SCI_FORMFEED": 1, - "Indent": 1, - "Tab": 1, - "SCI_TAB": 1, - "De": 1, - "indent": 1, - "Backtab": 1, - "SCI_BACKTAB": 1, - "Cancel": 2, - "SCI_CANCEL": 1, - "Undo": 2, - "command.": 5, - "SCI_UNDO": 1, - "Redo": 2, - "SCI_REDO": 1, - "Zoom": 2, - "in.": 1, - "ZoomIn": 1, - "SCI_ZOOMIN": 1, - "out.": 1, - "ZoomOut": 1, - "SCI_ZOOMOUT": 1, - "Return": 3, - "executed": 1, - "instance.": 2, - "scicmd": 2, - "Execute": 1, - "Binds": 2, - "binding": 3, - "removed.": 2, - "invalid": 5, - "unchanged.": 1, - "Valid": 1, - "Key_Down": 1, - "Key_Up": 1, - "Key_Left": 1, - "Key_Right": 1, - "Key_Home": 1, - "Key_End": 1, - "Key_PageUp": 1, - "Key_PageDown": 1, - "Key_Delete": 1, - "Key_Insert": 1, - "Key_Escape": 1, - "Key_Backspace": 1, - "Key_Tab": 1, - "Key_Return.": 1, - "Keys": 1, - "SHIFT": 1, - "CTRL": 1, - "ALT": 1, - "META.": 1, - "setAlternateKey": 3, - "validKey": 3, - "setKey": 3, - "altkey": 3, - "alternateKey": 3, - "returned.": 4, - "qkey": 2, - "qaltkey": 2, - "valid": 2, - "QsciCommandSet": 1, - "*qs": 1, - "cmd": 1, - "*desc": 1, - "bindKey": 1, - "qk": 1, - "scik": 1, - "*qsCmd": 1, - "scikey": 1, - "scialtkey": 1, - "*descCmd": 1, - "QSCIPRINTER_H": 2, - "": 1, - "": 1, - "QT_BEGIN_NAMESPACE": 1, - "QRect": 2, - "QPainter": 2, - "QT_END_NAMESPACE": 1, - "QsciPrinter": 9, - "sub": 2, - "Qt": 1, - "QPrinter": 3, - "text": 5, - "Scintilla": 2, - "further": 1, - "classed": 1, - "layout": 1, - "adding": 2, - "headers": 3, - "footers": 2, - "example.": 1, - "Constructs": 1, - "printer": 1, - "paint": 1, - "PrinterMode": 1, - "ScreenResolution": 1, - "Destroys": 1, - "Format": 1, - "drawn": 2, - "painter": 4, - "add": 3, - "customised": 2, - "graphics.": 2, - "drawing": 4, - "actually": 1, - "sized.": 1, - "area": 5, - "draw": 1, - "text.": 3, - "necessary": 1, - "reserve": 1, - "By": 1, - "printable": 1, - "setFullPage": 1, - "because": 2, - "printRange": 2, - "try": 1, - "over": 1, - "pagenr": 2, - "numbered": 1, - "formatPage": 1, - "points": 2, - "font": 2, - "printing.": 2, - "setMagnification": 2, - "magnification": 3, - "mag": 2, - "printing": 2, - "magnification.": 1, - "qsb.": 1, - "negative": 2, - "signifies": 2, - "error.": 1, - "*qsb": 1, - "wrap": 4, - "WrapWord.": 1, - "setWrapMode": 2, - "WrapMode": 3, - "wrapMode": 2, - "wmode.": 1, - "wmode": 1, - "": 2, - "Gui": 1, - "rpc_init": 1, - "rpc_server_loop": 1, - "v8": 9, - "Scanner": 16, - "UnicodeCache*": 4, - "unicode_cache": 3, - "unicode_cache_": 10, - "octal_pos_": 5, - "Location": 14, - "harmony_scoping_": 4, - "harmony_modules_": 4, - "Initialize": 4, - "Utf16CharacterStream*": 3, - "source_": 7, - "Init": 3, - "has_line_terminator_before_next_": 9, - "SkipWhiteSpace": 4, - "Scan": 5, - "uc32": 19, - "ScanHexNumber": 2, - "expected_length": 4, - "ASSERT": 17, - "overflow": 1, - "c0_": 64, - "d": 8, - "HexValue": 2, - "PushBack": 8, - "Advance": 44, - "STATIC_ASSERT": 5, - "Token": 212, - "NUM_TOKENS": 1, - "one_char_tokens": 2, - "ILLEGAL": 120, - "LPAREN": 2, - "RPAREN": 2, - "COMMA": 2, - "COLON": 2, - "SEMICOLON": 2, - "CONDITIONAL": 2, - "LBRACK": 2, - "RBRACK": 2, - "LBRACE": 2, - "RBRACE": 2, - "BIT_NOT": 2, - "Next": 3, - "current_": 2, - "has_multiline_comment_before_next_": 5, - "token": 64, - "": 1, - "pos": 12, - "source_pos": 10, - "next_.token": 3, - "next_.location.beg_pos": 3, - "next_.location.end_pos": 4, - "current_.token": 4, - "IsByteOrderMark": 2, - "xFEFF": 1, - "xFFFE": 1, - "start_position": 2, - "IsWhiteSpace": 2, - "IsLineTerminator": 6, - "SkipSingleLineComment": 6, - "undo": 4, - "WHITESPACE": 6, - "SkipMultiLineComment": 3, - "ch": 5, - "ScanHtmlComment": 3, - "LT": 2, - "next_.literal_chars": 13, - "ScanString": 3, - "LTE": 1, - "ASSIGN_SHL": 1, - "SHL": 1, - "GTE": 1, - "ASSIGN_SAR": 1, - "ASSIGN_SHR": 1, - "SHR": 1, - "SAR": 1, - "GT": 1, - "EQ_STRICT": 1, - "EQ": 1, - "ASSIGN": 1, - "NE_STRICT": 1, - "NE": 1, - "INC": 1, - "ASSIGN_ADD": 1, - "ADD": 1, - "DEC": 1, - "ASSIGN_SUB": 1, - "SUB": 1, - "ASSIGN_MUL": 1, - "MUL": 1, - "ASSIGN_MOD": 1, - "MOD": 1, - "ASSIGN_DIV": 1, - "DIV": 1, - "AND": 1, - "ASSIGN_BIT_AND": 1, - "BIT_AND": 1, - "OR": 1, - "ASSIGN_BIT_OR": 1, - "BIT_OR": 1, - "ASSIGN_BIT_XOR": 1, - "BIT_XOR": 1, - "IsDecimalDigit": 2, - "ScanNumber": 3, - "PERIOD": 1, - "IsIdentifierStart": 2, - "ScanIdentifierOrKeyword": 2, - "EOS": 1, - "SeekForward": 4, - "current_pos": 4, - "ASSERT_EQ": 1, - "ScanEscape": 2, - "IsCarriageReturn": 2, - "IsLineFeed": 2, - "fall": 2, - "xxx": 1, - "immediately": 1, - "octal": 1, - "escape": 1, - "quote": 3, - "consume": 2, - "LiteralScope": 4, - "literal": 2, - "X": 2, - "E": 3, - "l": 1, - "w": 1, - "keyword": 1, - "Unescaped": 1, - "in_character_class": 2, - "AddLiteralCharAdvance": 3, - "literal.Complete": 2, - "ScanLiteralUnicodeEscape": 3, - "V8_SCANNER_H_": 3, - "ParsingFlags": 1, - "kNoParsingFlags": 1, - "kLanguageModeMask": 4, - "kAllowLazy": 1, - "kAllowNativesSyntax": 1, - "kAllowModules": 1, - "CLASSIC_MODE": 2, - "STRICT_MODE": 2, - "EXTENDED_MODE": 2, - "x16": 1, - "x36.": 1, - "Utf16CharacterStream": 3, - "pos_": 6, - "buffer_cursor_": 5, - "buffer_end_": 3, - "ReadBlock": 2, - "": 1, - "kEndOfInput": 2, - "code_unit_count": 7, - "buffered_chars": 2, - "SlowSeekForward": 2, - "int32_t": 1, - "code_unit": 6, - "uc16*": 3, - "UnicodeCache": 3, - "unibrow": 11, - "Utf8InputBuffer": 2, - "<1024>": 2, - "Utf8Decoder": 2, - "StaticResource": 2, - "": 2, - "utf8_decoder": 1, - "utf8_decoder_": 2, - "uchar": 4, - "kIsIdentifierStart.get": 1, - "IsIdentifierPart": 1, - "kIsIdentifierPart.get": 1, - "kIsLineTerminator.get": 1, - "kIsWhiteSpace.get": 1, - "Predicate": 4, - "": 1, - "128": 4, - "kIsIdentifierStart": 1, - "": 1, - "kIsIdentifierPart": 1, - "": 1, - "kIsLineTerminator": 1, - "": 1, - "kIsWhiteSpace": 1, - "DISALLOW_COPY_AND_ASSIGN": 2, - "LiteralBuffer": 6, - "is_ascii_": 10, - "position_": 17, - "backing_store_": 7, - "backing_store_.length": 4, - "backing_store_.Dispose": 3, - "INLINE": 2, - "AddChar": 2, - "ExpandBuffer": 2, - "kMaxAsciiCharCodeU": 1, - "": 6, - "kASCIISize": 1, - "ConvertToUtf16": 2, - "": 2, - "kUC16Size": 2, - "is_ascii": 3, - "Vector": 13, - "uc16": 5, - "utf16_literal": 3, - "backing_store_.start": 5, - "ascii_literal": 3, - "kInitialCapacity": 2, - "kGrowthFactory": 2, - "kMinConversionSlack": 1, - "kMaxGrowth": 2, - "MB": 1, - "NewCapacity": 3, - "min_capacity": 2, - "capacity": 3, - "Max": 1, - "new_capacity": 2, - "Min": 1, - "new_store": 6, - "memcpy": 1, - "new_store.start": 3, - "new_content_size": 4, - "src": 2, - "": 1, - "dst": 2, - "Scanner*": 2, - "self": 5, - "scanner_": 5, - "complete_": 4, - "StartLiteral": 2, - "DropLiteral": 2, - "Complete": 1, - "TerminateLiteral": 2, - "beg_pos": 5, - "end_pos": 4, - "kNoOctalLocation": 1, - "scanner_contants": 1, - "current_token": 1, - "current_.location": 2, - "literal_ascii_string": 1, - "ASSERT_NOT_NULL": 9, - "current_.literal_chars": 11, - "literal_utf16_string": 1, - "is_literal_ascii": 1, - "literal_length": 1, - "literal_contains_escapes": 1, - "source_length": 3, - "location.end_pos": 1, - "location.beg_pos": 1, - "STRING": 1, - "peek": 1, - "peek_location": 1, - "next_.location": 1, - "next_literal_ascii_string": 1, - "next_literal_utf16_string": 1, - "is_next_literal_ascii": 1, - "next_literal_length": 1, - "kCharacterLookaheadBufferSize": 3, - "ScanOctalEscape": 1, - "octal_position": 1, - "clear_octal_position": 1, - "HarmonyScoping": 1, - "SetHarmonyScoping": 1, - "scoping": 2, - "HarmonyModules": 1, - "SetHarmonyModules": 1, - "modules": 2, - "HasAnyLineTerminatorBeforeNext": 1, - "ScanRegExpPattern": 1, - "seen_equal": 1, - "ScanRegExpFlags": 1, - "IsIdentifier": 1, - "CharacterStream*": 1, - "TokenDesc": 3, - "LiteralBuffer*": 2, - "literal_chars": 1, - "free_buffer": 3, - "literal_buffer1_": 3, - "literal_buffer2_": 2, - "AddLiteralChar": 2, - "tok": 2, - "else_": 2, - "ScanDecimalDigits": 1, - "seen_period": 1, - "ScanIdentifierSuffix": 1, - "LiteralScope*": 1, - "ScanIdentifierUnicodeEscape": 1, - "desc": 2, - "look": 1, - "ahead": 1, - "smallPrime_t": 1, - "UTILS_H": 3, - "": 1, - "": 1, - "": 1, - "QTemporaryFile": 1, - "showUsage": 1, - "QtMsgType": 1, - "dump_path": 1, - "minidump_id": 1, - "context": 8, - "QVariant": 1, - "coffee2js": 1, - "script": 1, - "injectJsInFrame": 2, - "jsFilePath": 5, - "libraryPath": 5, - "QWebFrame": 4, - "*targetFrame": 4, - "startingScript": 2, - "Encoding": 3, - "jsFileEnc": 2, - "readResourceFileUtf8": 1, - "resourceFilePath": 1, - "loadJSForDebug": 2, - "autorun": 2, - "cleanupFromDebug": 1, - "findScript": 1, - "jsFromScriptFile": 1, - "scriptPath": 1, - "enc": 1, - "shouldn": 1, - "instantiated": 1, - "QTemporaryFile*": 2, - "m_tempHarness": 1, - "We": 1, - "ourselves": 1, - "m_tempWrapper": 1, - "V8_DECLARE_ONCE": 1, - "init_once": 2, - "V8": 21, - "is_running_": 6, - "has_been_set_up_": 4, - "has_been_disposed_": 6, - "has_fatal_error_": 5, - "use_crankshaft_": 6, - "List": 3, - "": 3, - "call_completed_callbacks_": 16, - "LazyMutex": 1, - "entropy_mutex": 1, - "LAZY_MUTEX_INITIALIZER": 1, - "EntropySource": 3, - "entropy_source": 4, - "Deserializer*": 2, - "des": 3, - "FlagList": 1, - "EnforceFlagImplications": 1, - "InitializeOncePerProcess": 4, - "Isolate": 9, - "CurrentPerIsolateThreadData": 4, - "EnterDefaultIsolate": 1, - "thread_id": 1, - ".Equals": 1, - "ThreadId": 1, - "Current": 5, - "isolate": 15, - "IsDead": 2, - "Isolate*": 6, - "SetFatalError": 2, - "TearDown": 5, - "IsDefaultIsolate": 1, - "ElementsAccessor": 2, - "LOperand": 2, - "TearDownCaches": 1, - "RegisteredExtension": 1, - "UnregisterAll": 1, - "OS": 3, - "seed_random": 2, - "FLAG_random_seed": 2, - "val": 3, - "ScopedLock": 1, - "entropy_mutex.Pointer": 1, - "random": 1, - "random_base": 3, - "xFFFF": 2, - "FFFF": 1, - "SetEntropySource": 2, - "SetReturnAddressLocationResolver": 3, - "ReturnAddressLocationResolver": 2, - "resolver": 3, - "StackFrame": 1, - "Random": 3, - "Context*": 4, - "IsGlobalContext": 1, - "ByteArray*": 1, - "seed": 2, - "random_seed": 1, - "": 1, - "GetDataStartAddress": 1, - "RandomPrivate": 2, - "private_random_seed": 1, - "IdleNotification": 3, - "hint": 3, - "FLAG_use_idle_notification": 1, - "HEAP": 1, - "AddCallCompletedCallback": 2, - "CallCompletedCallback": 4, - "callback": 7, - "Lazy": 1, - "init.": 1, - "Add": 1, - "RemoveCallCompletedCallback": 2, - "Remove": 1, - "FireCallCompletedCallback": 2, - "HandleScopeImplementer*": 1, - "handle_scope_implementer": 5, - "CallDepthIsZero": 1, - "IncrementCallDepth": 1, - "DecrementCallDepth": 1, - "union": 1, - "double_value": 1, - "uint64_t_value": 1, - "double_int_union": 2, - "Object*": 4, - "FillHeapNumberWithRandom": 2, - "heap_number": 4, - "random_bits": 2, - "binary_million": 3, - "r.double_value": 3, - "r.uint64_t_value": 1, - "HeapNumber": 1, - "set_value": 1, - "InitializeOncePerProcessImpl": 3, - "SetUp": 4, - "FLAG_crankshaft": 1, - "Serializer": 1, - "SupportsCrankshaft": 1, - "PostSetUp": 1, - "RuntimeProfiler": 1, - "GlobalSetUp": 1, - "FLAG_stress_compaction": 1, - "FLAG_force_marking_deque_overflows": 1, - "FLAG_gc_global": 1, - "FLAG_max_new_space_size": 1, - "kPageSizeBits": 1, - "SetUpCaches": 1, - "SetUpJSCallerSavedCodeData": 1, - "SamplerRegistry": 1, - "ExternalReference": 1, - "CallOnce": 1, - "V8_V8_H_": 3, - "GOOGLE3": 2, - "NDEBUG": 4, - "both": 1, - "Deserializer": 1, - "AllStatic": 1, - "IsRunning": 1, - "UseCrankshaft": 1, - "FatalProcessOutOfMemory": 1, - "take_snapshot": 1, - "NilValue": 1, - "kNullValue": 1, - "kUndefinedValue": 1, - "EqualityKind": 1, - "kStrictEquality": 1, - "kNonStrictEquality": 1, + "Q_OS_LINUX": 2, + "": 1, + "QT_VERSION": 1, + "QT_VERSION_CHECK": 1, + "Something": 1, + "wrong": 1, + "setup.": 1, + "Please": 4, + "report": 3, + "mailing": 1, + "list": 3, + "main": 2, + "argc": 2, + "char**": 2, + "argv": 2, + "envp": 4, + "google_breakpad": 1, + "ExceptionHandler": 1, + "eh": 2, + "Utils": 4, + "exceptionHandler": 2, + "qInstallMsgHandler": 1, + "messageHandler": 2, + "QApplication": 1, + "app": 1, + "STATIC_BUILD": 1, + "Q_INIT_RESOURCE": 2, + "WebKit": 1, + "InspectorBackendStub": 1, + "app.setWindowIcon": 1, + "QIcon": 1, + "app.setApplicationName": 1, + "app.setOrganizationName": 1, + "app.setOrganizationDomain": 1, + "app.setApplicationVersion": 1, + "PHANTOMJS_VERSION_STRING": 1, + "Env": 13, + "parse": 3, + "Phantom": 1, + "phantom": 1, + "phantom.execute": 1, + "app.exec": 1, + "phantom.returnValue": 1, "PY_SSIZE_T_CLEAN": 1, "Py_PYTHON_H": 1, "Python": 1, + "needed": 3, "compile": 1, + "C": 6, "extensions": 1, + "please": 2, + "install": 3, "development": 1, + "version": 38, "Python.": 1, "": 1, "offsetof": 2, + "type": 7, "member": 2, "type*": 1, "WIN32": 2, @@ -13649,6 +10992,7 @@ "__cdecl": 2, "__fastcall": 2, "DL_IMPORT": 2, + "t": 15, "DL_EXPORT": 2, "PY_LONG_LONG": 5, "LONG_LONG": 1, @@ -13658,6 +11002,7 @@ "Py_TYPE": 4, "PyDict_Type": 1, "PyDict_Contains": 1, + "d": 8, "o": 20, "PySequence_Contains": 1, "Py_ssize_t": 17, @@ -13694,7 +11039,9 @@ "*buf": 1, "PyObject": 221, "*obj": 2, + "len": 15, "itemsize": 2, + "readonly": 3, "ndim": 2, "*format": 1, "*shape": 1, @@ -13794,6 +11141,7 @@ "PyNumber_Divide": 1, "PyNumber_InPlaceDivide": 1, "__Pyx_PySequence_GetSlice": 2, + "b": 57, "PySequence_GetSlice": 2, "__Pyx_PySequence_SetSlice": 2, "PySequence_SetSlice": 2, @@ -13809,9 +11157,11 @@ "tp_name": 4, "PyMethod_New": 2, "func": 3, + "self": 5, "klass": 1, "PyInstanceMethod_New": 1, "__Pyx_GetAttrString": 2, + "n": 28, "PyObject_GetAttrString": 3, "__Pyx_SetAttrString": 2, "PyObject_SetAttrString": 2, @@ -13819,10 +11169,12 @@ "PyObject_DelAttrString": 2, "__Pyx_NAMESTR": 3, "__Pyx_DOCSTR": 3, + "__cplusplus": 12, "__PYX_EXTERN_C": 2, "_USE_MATH_DEFINES": 1, "": 1, "__PYX_HAVE_API__wrapper_inner": 1, + "": 4, "PYREX_WITHOUT_ASSERTIONS": 1, "CYTHON_WITHOUT_ASSERTIONS": 1, "CYTHON_INLINE": 68, @@ -13841,6 +11193,7 @@ "__Pyx_StringTabEntry": 1, "__Pyx_PyBytes_FromUString": 1, "__Pyx_PyBytes_AsUString": 1, + "unsigned": 22, "__Pyx_PyBool_FromLong": 1, "Py_INCREF": 3, "Py_True": 2, @@ -13912,7 +11265,9 @@ "complex": 2, "__pyx_t_float_complex": 27, "_Complex": 2, + "real": 4, "imag": 2, + "double": 25, "__pyx_t_double_complex": 27, "npy_cfloat": 1, "__pyx_t_5numpy_cfloat_t": 1, @@ -13932,6 +11287,8 @@ "m": 4, "PyImport_ImportModule": 1, "modname": 1, + "end": 23, + "p": 6, "PyLong_AsVoidPtr": 1, "Py_XDECREF": 3, "__Pyx_RefNannySetupContext": 13, @@ -13978,6 +11335,7 @@ "__pyx_print": 1, "__pyx_print_kwargs": 1, "__Pyx_PrintOne": 4, + "stream": 6, "*o": 1, "*__Pyx_PyInt_to_py_Py_intptr_t": 1, "Py_intptr_t": 1, @@ -14021,6 +11379,7 @@ "cabs": 1, "cpow": 1, "__Pyx_PyInt_AsUnsignedChar": 1, + "short": 5, "__Pyx_PyInt_AsUnsignedShort": 1, "__Pyx_PyInt_AsUnsignedInt": 1, "__Pyx_PyInt_AsChar": 1, @@ -14242,6 +11601,7 @@ "NPY_F_CONTIGUOUS": 1, "__pyx_k_tuple_8": 1, "__pyx_L7": 2, + "buf": 14, "PyArray_DATA": 1, "strides": 5, "malloc": 2, @@ -14288,6 +11648,7 @@ "__pyx_L2": 2, "__pyx_pf_5numpy_7ndarray_1__releasebuffer__": 2, "PyArray_HASFIELDS": 1, + "free": 4, "*__pyx_f_5numpy_PyArray_MultiIterNew1": 1, "*__pyx_v_a": 5, "PyArray_MultiIterNew": 5, @@ -14314,9 +11675,11 @@ "__pyx_v_fields": 7, "__pyx_v_childname": 4, "__pyx_v_new_offset": 5, + "names": 3, "PyTuple_GET_SIZE": 2, "PyTuple_GET_ITEM": 3, "PyObject_GetItem": 1, + "fields": 4, "PyTuple_CheckExact": 1, "tuple": 3, "__pyx_ptype_5numpy_dtype": 1, @@ -14331,25 +11694,2661 @@ "elsize": 1, "__pyx_k_tuple_16": 1, "__pyx_L10": 2, - "Py_EQ": 6 + "Py_EQ": 6, + "QSCICOMMAND_H": 2, + "": 1, + "": 1, + "QsciCommand": 7, + "represents": 1, + "an": 23, + "editor": 1, + "command": 9, + "may": 9, + "have": 4, + "one": 73, + "keys": 3, + "bound": 4, + "Methods": 1, + "provided": 1, + "change": 3, + "remove": 2, + "key": 23, + "binding.": 1, + "Each": 1, + "has": 29, + "user": 3, + "friendly": 2, + "description": 3, + "in": 165, + "mapping": 3, + "dialogs.": 1, + "defines": 3, + "different": 5, + "commands": 1, + "assigned": 1, + "key.": 1, + "Command": 4, + "Move": 26, + "down": 12, + "line.": 33, + "LineDown": 1, + "SCI_LINEDOWN": 1, + "Extend": 33, + "selection": 39, + "LineDownExtend": 1, + "SCI_LINEDOWNEXTEND": 1, + "rectangular": 9, + "LineDownRectExtend": 1, + "SCI_LINEDOWNRECTEXTEND": 1, + "Scroll": 5, + "view": 2, + "LineScrollDown": 1, + "SCI_LINESCROLLDOWN": 1, + "up": 18, + "LineUp": 1, + "SCI_LINEUP": 1, + "LineUpExtend": 1, + "SCI_LINEUPEXTEND": 1, + "LineUpRectExtend": 1, + "SCI_LINEUPRECTEXTEND": 1, + "LineScrollUp": 1, + "SCI_LINESCROLLUP": 1, + "start": 12, + "ScrollToStart": 1, + "SCI_SCROLLTOSTART": 1, + "ScrollToEnd": 1, + "SCI_SCROLLTOEND": 1, + "vertically": 1, + "centre": 1, + "current": 26, + "VerticalCentreCaret": 1, + "SCI_VERTICALCENTRECARET": 1, + "paragraph.": 4, + "ParaDown": 1, + "SCI_PARADOWN": 1, + "ParaDownExtend": 1, + "SCI_PARADOWNEXTEND": 1, + "ParaUp": 1, + "SCI_PARAUP": 1, + "ParaUpExtend": 1, + "SCI_PARAUPEXTEND": 1, + "left": 7, + "character.": 9, + "CharLeft": 1, + "SCI_CHARLEFT": 1, + "CharLeftExtend": 1, + "SCI_CHARLEFTEXTEND": 1, + "CharLeftRectExtend": 1, + "SCI_CHARLEFTRECTEXTEND": 1, + "right": 9, + "CharRight": 1, + "SCI_CHARRIGHT": 1, + "CharRightExtend": 1, + "SCI_CHARRIGHTEXTEND": 1, + "CharRightRectExtend": 1, + "SCI_CHARRIGHTRECTEXTEND": 1, + "word.": 9, + "WordLeft": 1, + "SCI_WORDLEFT": 1, + "WordLeftExtend": 1, + "SCI_WORDLEFTEXTEND": 1, + "WordRight": 1, + "SCI_WORDRIGHT": 1, + "WordRightExtend": 1, + "SCI_WORDRIGHTEXTEND": 1, + "previous": 6, + "WordLeftEnd": 1, + "SCI_WORDLEFTEND": 1, + "WordLeftEndExtend": 1, + "SCI_WORDLEFTENDEXTEND": 1, + "next": 9, + "WordRightEnd": 1, + "SCI_WORDRIGHTEND": 1, + "WordRightEndExtend": 1, + "SCI_WORDRIGHTENDEXTEND": 1, + "word": 7, + "part.": 4, + "WordPartLeft": 1, + "SCI_WORDPARTLEFT": 1, + "WordPartLeftExtend": 1, + "SCI_WORDPARTLEFTEXTEND": 1, + "WordPartRight": 1, + "SCI_WORDPARTRIGHT": 1, + "WordPartRightExtend": 1, + "SCI_WORDPARTRIGHTEXTEND": 1, + "Home": 1, + "SCI_HOME": 1, + "HomeExtend": 1, + "SCI_HOMEEXTEND": 1, + "HomeRectExtend": 1, + "SCI_HOMERECTEXTEND": 1, + "displayed": 10, + "HomeDisplay": 1, + "SCI_HOMEDISPLAY": 1, + "HomeDisplayExtend": 1, + "SCI_HOMEDISPLAYEXTEND": 1, + "HomeWrap": 1, + "SCI_HOMEWRAP": 1, + "HomeWrapExtend": 1, + "SCI_HOMEWRAPEXTEND": 1, + "visible": 6, + "character": 10, + "VCHome": 1, + "SCI_VCHOME": 1, + "VCHomeExtend": 1, + "SCI_VCHOMEEXTEND": 1, + "VCHomeRectExtend": 1, + "SCI_VCHOMERECTEXTEND": 1, + "VCHomeWrap": 1, + "SCI_VCHOMEWRAP": 1, + "VCHomeWrapExtend": 1, + "SCI_VCHOMEWRAPEXTEND": 1, + "LineEnd": 1, + "SCI_LINEEND": 1, + "LineEndExtend": 1, + "SCI_LINEENDEXTEND": 1, + "LineEndRectExtend": 1, + "SCI_LINEENDRECTEXTEND": 1, + "LineEndDisplay": 1, + "SCI_LINEENDDISPLAY": 1, + "LineEndDisplayExtend": 1, + "SCI_LINEENDDISPLAYEXTEND": 1, + "LineEndWrap": 1, + "SCI_LINEENDWRAP": 1, + "LineEndWrapExtend": 1, + "SCI_LINEENDWRAPEXTEND": 1, + "DocumentStart": 1, + "SCI_DOCUMENTSTART": 1, + "DocumentStartExtend": 1, + "SCI_DOCUMENTSTARTEXTEND": 1, + "DocumentEnd": 1, + "SCI_DOCUMENTEND": 1, + "DocumentEndExtend": 1, + "SCI_DOCUMENTENDEXTEND": 1, + "PageUp": 1, + "SCI_PAGEUP": 1, + "PageUpExtend": 1, + "SCI_PAGEUPEXTEND": 1, + "PageUpRectExtend": 1, + "SCI_PAGEUPRECTEXTEND": 1, + "PageDown": 1, + "SCI_PAGEDOWN": 1, + "PageDownExtend": 1, + "SCI_PAGEDOWNEXTEND": 1, + "PageDownRectExtend": 1, + "SCI_PAGEDOWNRECTEXTEND": 1, + "Stuttered": 4, + "move": 2, + "StutteredPageUp": 1, + "SCI_STUTTEREDPAGEUP": 1, + "extend": 2, + "StutteredPageUpExtend": 1, + "SCI_STUTTEREDPAGEUPEXTEND": 1, + "StutteredPageDown": 1, + "SCI_STUTTEREDPAGEDOWN": 1, + "StutteredPageDownExtend": 1, + "SCI_STUTTEREDPAGEDOWNEXTEND": 1, + "Delete": 10, + "SCI_CLEAR": 1, + "DeleteBack": 1, + "SCI_DELETEBACK": 1, + "at": 20, + "DeleteBackNotLine": 1, + "SCI_DELETEBACKNOTLINE": 1, + "left.": 2, + "DeleteWordLeft": 1, + "SCI_DELWORDLEFT": 1, + "right.": 2, + "DeleteWordRight": 1, + "SCI_DELWORDRIGHT": 1, + "DeleteWordRightEnd": 1, + "SCI_DELWORDRIGHTEND": 1, + "DeleteLineLeft": 1, + "SCI_DELLINELEFT": 1, + "DeleteLineRight": 1, + "SCI_DELLINERIGHT": 1, + "LineDelete": 1, + "SCI_LINEDELETE": 1, + "Cut": 2, + "clipboard.": 5, + "LineCut": 1, + "SCI_LINECUT": 1, + "Copy": 2, + "LineCopy": 1, + "SCI_LINECOPY": 1, + "Transpose": 1, + "lines.": 1, + "LineTranspose": 1, + "SCI_LINETRANSPOSE": 1, + "Duplicate": 2, + "LineDuplicate": 1, + "SCI_LINEDUPLICATE": 1, + "Select": 49, + "SelectAll": 1, + "SCI_SELECTALL": 1, + "selected": 13, + "MoveSelectedLinesUp": 1, + "SCI_MOVESELECTEDLINESUP": 1, + "MoveSelectedLinesDown": 1, + "SCI_MOVESELECTEDLINESDOWN": 1, + "selection.": 1, + "SelectionDuplicate": 1, + "SCI_SELECTIONDUPLICATE": 1, + "Convert": 2, + "lower": 1, + "case.": 2, + "SelectionLowerCase": 1, + "SCI_LOWERCASE": 1, + "upper": 1, + "SelectionUpperCase": 1, + "SCI_UPPERCASE": 1, + "SelectionCut": 1, + "SCI_CUT": 1, + "SelectionCopy": 1, + "SCI_COPY": 1, + "Paste": 2, + "SCI_PASTE": 1, + "Toggle": 1, + "insert/overtype.": 1, + "EditToggleOvertype": 1, + "SCI_EDITTOGGLEOVERTYPE": 1, + "Insert": 2, + "platform": 2, + "dependent": 1, + "newline.": 1, + "Newline": 1, + "SCI_NEWLINE": 1, + "formfeed.": 1, + "Formfeed": 1, + "SCI_FORMFEED": 1, + "Indent": 1, + "level.": 3, + "Tab": 1, + "SCI_TAB": 1, + "De": 1, + "indent": 1, + "Backtab": 1, + "SCI_BACKTAB": 1, + "Cancel": 2, + "operation.": 2, + "SCI_CANCEL": 1, + "Undo": 2, + "command.": 5, + "SCI_UNDO": 1, + "Redo": 2, + "SCI_REDO": 1, + "Zoom": 2, + "in.": 1, + "ZoomIn": 1, + "SCI_ZOOMIN": 1, + "out.": 1, + "ZoomOut": 1, + "SCI_ZOOMOUT": 1, + "executed": 1, + "scicmd": 2, + "Execute": 1, + "execute": 3, + "Binds": 2, + "If": 11, + "then": 15, + "binding": 3, + "removed.": 2, + "invalid": 5, + "unchanged.": 1, + "Valid": 1, + "control": 17, + "Key_Down": 1, + "Key_Up": 1, + "Key_Left": 1, + "Key_Right": 1, + "Key_Home": 1, + "Key_End": 1, + "Key_PageUp": 1, + "Key_PageDown": 1, + "Key_Delete": 1, + "Key_Insert": 1, + "Key_Escape": 1, + "Key_Backspace": 1, + "Key_Tab": 1, + "Key_Return.": 1, + "Keys": 1, + "combination": 2, + "SHIFT": 1, + "CTRL": 1, + "ALT": 1, + "META.": 1, + "setAlternateKey": 3, + "validKey": 3, + "setKey": 3, + "alternate": 7, + "altkey": 3, + "alternateKey": 3, + "currently": 12, + "returned.": 4, + "qkey": 2, + "qaltkey": 2, + "valid": 2, + "QString": 20, + "friend": 10, + "QsciCommandSet": 1, + "*qs": 1, + "cmd": 1, + "*desc": 1, + "bindKey": 1, + "qk": 1, + "scik": 1, + "*qsCmd": 1, + "scikey": 1, + "scialtkey": 1, + "*descCmd": 1, + "Gui": 1, + "LIBCANIH": 2, + "": 2, + "": 2, + "": 1, + "": 1, + "int64": 1, + "//#define": 1, + "dout": 2, + "cout": 2, + "cerr": 1, + "using": 11, + "libcanister": 2, + "//the": 8, + "canmem": 22, + "object": 3, + "generic": 1, + "memory": 14, + "container": 2, + "commonly": 1, + "//throughout": 1, + "canister": 14, + "framework": 1, + "hold": 1, + "uncertain": 1, + "//length": 1, + "which": 14, + "contain": 1, + "null": 3, + "bytes.": 1, + "data": 26, + "raw": 2, + "absolute": 1, + "length": 10, + "//creates": 3, + "unallocated": 1, + "allocsize": 1, + "allocated": 2, + "blank": 1, + "strdata": 1, + "//automates": 1, + "creation": 1, + "zero": 5, + "limited": 2, + "canmems": 1, + "//cleans": 1, + "zeromem": 1, + "//overwrites": 2, + "fragmem": 1, + "fragment": 2, + "notation": 1, + "countlen": 1, + "//counts": 1, + "strings": 1, + "stores": 3, + "trim": 2, + "//removes": 1, + "nulls": 1, + "//returns": 2, + "singleton": 2, + "//contains": 2, + "information": 3, + "about": 6, + "caninfo": 2, + "path": 8, + "//physical": 1, + "internalname": 1, + "//a": 1, + "numfiles": 1, + "files": 6, + "//necessary": 1, + "as": 28, + "canfile": 7, + "//this": 1, + "holds": 2, + "definition": 3, + "within": 4, + "//canister": 1, + "canister*": 1, + "parent": 1, + "//internal": 1, + "//use": 1, + "their": 6, + "own.": 1, + "newline": 2, + "delimited": 2, + "container.": 1, + "TOC": 1, + "info": 2, + "general": 1, + "canfiles": 1, + "recommended": 1, + "programs": 4, + "modify": 1, + "//these": 1, + "directly": 2, + "but": 5, + "enforced.": 1, + "canfile*": 1, + "//if": 1, + "write": 8, + "routines": 1, + "anything": 1, + "//maximum": 1, + "given": 16, + "//time": 1, + "whatever": 1, + "suits": 1, + "your": 12, + "application.": 1, + "cachemax": 2, + "cachecnt": 1, + "//number": 1, + "cache": 2, + "//both": 1, + "initialize": 1, + "physical": 4, + "fspath": 3, + "//destroys": 1, + "after": 18, + "flushing": 1, + "modded": 1, + "buffers": 3, + "course": 2, + "//open": 1, + "//does": 1, + "exist": 2, + "open": 6, + "//close": 1, + "flush": 1, + "all": 11, + "clean": 2, + "//deletes": 1, + "inside": 1, + "delFile": 1, + "//pulls": 1, + "contents": 3, + "disk": 2, + "returns": 4, + "getFile": 1, + "does": 4, + "otherwise": 1, + "overwrites": 1, + "whether": 4, + "succeeded": 2, + "writeFile": 2, + "//get": 1, + "containing": 2, + "//list": 1, + "paths": 1, + "getTOC": 1, + "//brings": 1, + "back": 1, + "limit": 1, + "//important": 1, + "sCFID": 2, + "safe": 4, + "CFID": 2, + "avoid": 1, + "uncaching": 1, + "//really": 1, + "internally": 1, + "harm.": 1, + "cacheclean": 1, + "dFlush": 1, + "Scanner": 16, + "UnicodeCache*": 4, + "unicode_cache": 3, + "unicode_cache_": 10, + "octal_pos_": 5, + "Location": 14, + "harmony_scoping_": 4, + "harmony_modules_": 4, + "Utf16CharacterStream*": 3, + "source_": 7, + "Init": 3, + "has_line_terminator_before_next_": 9, + "SkipWhiteSpace": 4, + "Scan": 5, + "uc32": 19, + "ScanHexNumber": 2, + "expected_length": 4, + "ASSERT": 17, + "prevent": 4, + "overflow": 1, + "c0_": 64, + "HexValue": 2, + "PushBack": 8, + "Advance": 44, + "STATIC_ASSERT": 5, + "Token": 212, + "NUM_TOKENS": 1, + "byte": 6, + "one_char_tokens": 2, + "ILLEGAL": 120, + "LPAREN": 2, + "RPAREN": 2, + "COMMA": 2, + "COLON": 2, + "SEMICOLON": 2, + "CONDITIONAL": 2, + "LBRACK": 2, + "RBRACK": 2, + "LBRACE": 2, + "RBRACE": 2, + "BIT_NOT": 2, + "e": 15, + "Value": 24, + "Next": 3, + "current_": 2, + "has_multiline_comment_before_next_": 5, + "": 19, + "token": 64, + "": 1, + "pos": 12, + "source_pos": 10, + "next_.token": 3, + "next_.location.beg_pos": 3, + "next_.location.end_pos": 4, + "current_.token": 4, + "IsByteOrderMark": 2, + "xFEFF": 1, + "xFFFE": 1, + "start_position": 2, + "IsWhiteSpace": 2, + "IsLineTerminator": 6, + "SkipSingleLineComment": 6, + "continue": 2, + "undo": 4, + "WHITESPACE": 6, + "SkipMultiLineComment": 3, + "ch": 5, + "ScanHtmlComment": 3, + "LT": 2, + "next_.literal_chars": 13, + "ScanString": 3, + "LTE": 1, + "ASSIGN_SHL": 1, + "SHL": 1, + "GTE": 1, + "ASSIGN_SAR": 1, + "ASSIGN_SHR": 1, + "SHR": 1, + "SAR": 1, + "GT": 1, + "EQ_STRICT": 1, + "EQ": 1, + "ASSIGN": 1, + "NE_STRICT": 1, + "NE": 1, + "NOT": 3, + "INC": 1, + "ASSIGN_ADD": 1, + "ADD": 1, + "DEC": 1, + "ASSIGN_SUB": 1, + "SUB": 1, + "ASSIGN_MUL": 1, + "MUL": 1, + "ASSIGN_MOD": 1, + "MOD": 1, + "ASSIGN_DIV": 1, + "DIV": 1, + "AND": 1, + "ASSIGN_BIT_AND": 1, + "BIT_AND": 1, + "OR": 1, + "ASSIGN_BIT_OR": 1, + "BIT_OR": 1, + "ASSIGN_BIT_XOR": 1, + "BIT_XOR": 1, + "IsDecimalDigit": 2, + "ScanNumber": 3, + "PERIOD": 1, + "IsIdentifierStart": 2, + "ScanIdentifierOrKeyword": 2, + "EOS": 1, + "SeekForward": 4, + "current_pos": 4, + "ASSERT_EQ": 1, + "ScanEscape": 2, + "IsCarriageReturn": 2, + "IsLineFeed": 2, + "fall": 2, + "through": 4, + "u": 9, + "xx": 2, + "xxx": 1, + "immediately": 1, + "octal": 1, + "escape": 1, + "quote": 3, + "consume": 2, + "LiteralScope": 4, + "literal": 2, + ".": 16, + "X": 2, + "E": 3, + "l": 1, + "w": 1, + "keyword": 1, + "Unescaped": 1, + "in_character_class": 2, + "AddLiteralCharAdvance": 3, + "literal.Complete": 2, + "ScanLiteralUnicodeEscape": 3, + "": 4, + "DEFAULT_DELIMITER": 1, + "CsvStreamer": 5, + "ofstream": 1, + "File": 1, + "vector": 16, + "row_buffer": 1, + "Buffer": 10, + "row": 12, + "flushed/written": 1, + "Number": 8, + "columns": 2, + "rows": 3, + "records": 2, + "including": 2, + "header": 7, + "delimiter": 2, + "Delimiter": 1, + "comma": 2, + "sanitize": 1, + "Returns": 2, + "ready": 1, + "into": 6, + "Empty": 1, + "CSV": 4, + "streamer...": 1, + "writing": 2, + "Same": 1, + "...": 1, + "Opens": 3, + "path/name": 3, + "Ensures": 1, + "closed": 1, + "saved": 1, + "delimiting": 1, + "add_field": 1, + "still": 3, + "adds": 1, + "field": 5, + "save_fields": 1, + "Call": 2, + "save": 1, + "writes": 2, + "append": 8, + "Appends": 5, + "quoted": 1, + "leading/trailing": 1, + "spaces": 3, + "trimmed": 1, + "Like": 1, + "specify": 1, + "either": 4, + "keep": 1, + "writeln": 1, + "Flushes": 1, + "what": 2, + "buffer": 9, + "Saves": 1, + "closes": 1, + "field_count": 1, + "Gets": 2, + "row_count": 1, + "PROTOBUF_protocol_2dbuffer_2eproto__INCLUDED": 3, + "GOOGLE_PROTOBUF_VERSION": 1, + "generated": 2, + "newer": 2, + "protoc": 2, + "incompatible": 2, + "Protocol": 2, + "headers.": 3, + "update": 1, + "GOOGLE_PROTOBUF_MIN_PROTOC_VERSION": 1, + "older": 1, + "regenerate": 1, + "protoc.": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "*this": 1, + "UnknownFieldSet": 2, + "UnknownFieldSet*": 1, + "GetCachedSize": 1, + "clear_name": 2, + "release_name": 2, + "set_allocated_name": 2, + "set_has_name": 7, + "clear_has_name": 5, + "mutable": 1, + "*name_": 1, + "assign": 3, + "temp": 2, + "SWIG": 2, + "V8_DECLARE_ONCE": 1, + "init_once": 2, + "LazyMutex": 1, + "entropy_mutex": 1, + "LAZY_MUTEX_INITIALIZER": 1, + "entropy_source": 4, + "FlagList": 1, + "EnforceFlagImplications": 1, + "Isolate": 9, + "CurrentPerIsolateThreadData": 4, + "EnterDefaultIsolate": 1, + "thread_id": 1, + ".Equals": 1, + "ThreadId": 1, + "Current": 5, + "IsDefaultIsolate": 1, + "ElementsAccessor": 2, + "LOperand": 2, + "TearDownCaches": 1, + "RegisteredExtension": 1, + "UnregisterAll": 1, + "OS": 3, + "seed_random": 2, + "uint32_t*": 7, + "FLAG_random_seed": 2, + "val": 3, + "ScopedLock": 1, + "entropy_mutex.Pointer": 1, + "random": 1, + "random_base": 3, + "xFFFF": 2, + "FFFF": 1, + "StackFrame": 1, + "IsGlobalContext": 1, + "ByteArray*": 1, + "seed": 2, + "random_seed": 1, + "": 1, + "GetDataStartAddress": 1, + "private_random_seed": 1, + "FLAG_use_idle_notification": 1, + "HEAP": 1, + "Lazy": 1, + "init.": 1, + "Add": 1, + "Remove": 1, + "HandleScopeImplementer*": 1, + "handle_scope_implementer": 5, + "CallDepthIsZero": 1, + "IncrementCallDepth": 1, + "DecrementCallDepth": 1, + "union": 1, + "double_value": 1, + "uint64_t": 8, + "uint64_t_value": 1, + "double_int_union": 2, + "random_bits": 2, + "binary_million": 3, + "r.double_value": 3, + "r.uint64_t_value": 1, + "HeapNumber": 1, + "set_value": 1, + "SetUp": 4, + "FLAG_crankshaft": 1, + "Serializer": 1, + "enabled": 4, + "CPU": 5, + "SupportsCrankshaft": 1, + "PostSetUp": 1, + "RuntimeProfiler": 1, + "GlobalSetUp": 1, + "FLAG_stress_compaction": 1, + "FLAG_force_marking_deque_overflows": 1, + "FLAG_gc_global": 1, + "FLAG_max_new_space_size": 1, + "kPageSizeBits": 1, + "SetUpCaches": 1, + "SetUpJSCallerSavedCodeData": 1, + "SamplerRegistry": 1, + "ExternalReference": 1, + "CallOnce": 1, + "endl": 1, + "///": 843, + "mainpage": 1, + "library": 14, + "Broadcom": 3, + "BCM": 14, + "Raspberry": 6, + "Pi": 5, + "RPi": 17, + "It": 7, + "provides": 3, + "access": 17, + "GPIO": 87, + "IO": 2, + "functions": 19, + "chip": 9, + "allowing": 3, + "pins": 40, + "pin": 90, + "IDE": 4, + "plug": 3, + "board": 2, + "so": 2, + "interface": 9, + "various": 4, + "external": 3, + "devices.": 1, + "reading": 3, + "digital": 2, + "inputs": 2, + "setting": 2, + "outputs": 1, + "SPI": 44, + "I2C": 29, + "accessing": 2, + "timers.": 1, + "Pin": 65, + "event": 3, + "detection": 2, + "supported": 3, + "polling": 1, + "interrupts": 1, + "compatible": 1, + "installs": 1, + "non": 2, + "shared": 2, + "Linux": 2, + "based": 4, + "distro": 1, + "clearly": 1, + "except": 2, + "another": 1, + "package": 1, + "documentation": 3, + "refers": 1, + "downloaded": 1, + "http": 11, + "//www.airspayce.com/mikem/bcm2835/bcm2835": 1, + "tar.gz": 1, + "You": 9, + "find": 2, + "latest": 2, + "//www.airspayce.com/mikem/bcm2835": 1, + "Several": 1, + "provided.": 1, + "Based": 1, + "//elinux.org/RPi_Low": 1, + "level_peripherals": 1, + "//www.raspberrypi.org/wp": 1, + "content/uploads/2012/02/BCM2835": 1, + "ARM": 5, + "Peripherals.pdf": 1, + "//www.scribd.com/doc/101830961/GPIO": 2, + "Pads": 3, + "Control2": 2, + "also": 3, + "online": 1, + "help": 1, + "discussion": 1, + "//groups.google.com/group/bcm2835": 1, + "group": 23, + "questions": 1, + "discussions": 1, + "topic.": 1, + "Do": 1, + "contact": 1, + "author": 3, + "unless": 1, + "discuss": 1, + "commercial": 1, + "licensing.": 1, + "Tested": 1, + "debian6": 1, + "wheezy": 3, + "raspbian": 3, + "Occidentalisv01": 2, + "CAUTION": 1, + "been": 14, + "observed": 1, + "detect": 3, + "enables": 3, + "such": 4, + "bcm2835_gpio_len": 5, + "pulled": 1, + "LOW": 8, + "cause": 1, + "temporary": 1, + "hangs": 1, + "Occidentalisv01.": 1, + "Reason": 1, + "yet": 1, + "determined": 1, + "suspect": 1, + "handler": 1, + "hitting": 1, + "hard": 1, + "loop": 2, + "those": 3, + "OSs.": 1, + "friends": 2, + "make": 6, + "disable": 2, + "bcm2835_gpio_cler_len": 1, + "use.": 1, + "par": 9, + "Installation": 1, + "consists": 1, + "single": 2, + "installed": 1, + "usual": 3, + "places": 1, + "code": 12, + "#": 1, + "download": 2, + "say": 1, + "bcm2835": 7, + "xx.tar.gz": 2, + "tar": 1, + "zxvf": 1, + "cd": 1, + "./configure": 1, + "sudo": 2, + "endcode": 2, + "Physical": 21, + "Addresses": 6, + "bcm2835_peri_read": 3, + "bcm2835_peri_write": 3, + "bcm2835_peri_set_bits": 2, + "level": 10, + "peripheral": 14, + "register": 17, + "functions.": 4, + "They": 1, + "designed": 3, + "addresses": 4, + "described": 1, + "section": 6, + "BCM2835": 2, + "Peripherals": 1, + "manual.": 1, + "FFFFFF": 1, + "peripherals.": 1, + "bus": 4, + "peripherals": 2, + "map": 3, + "onto": 1, + "address": 13, + "starting": 1, + "E000000.": 1, + "Thus": 1, + "advertised": 1, + "manual": 8, + "Ennnnnn": 1, + "available": 6, + "nnnnnn.": 1, + "registers": 12, + "following": 2, + "externals": 1, + "bcm2835_gpio": 2, + "bcm2835_pwm": 2, + "bcm2835_clk": 2, + "bcm2835_pads": 2, + "bcm2835_spio0": 1, + "bcm2835_st": 1, + "bcm2835_bsc0": 1, + "bcm2835_bsc1": 1, + "Numbering": 1, + "numbering": 1, + "inconsistent": 1, + "underlying": 4, + "numbering.": 1, + "//elinux.org/RPi_BCM2835_GPIOs": 1, + "some": 4, + "well": 1, + "power": 1, + "ground": 1, + "pins.": 1, + "Not": 4, + "header.": 1, + "Version": 40, + "P5": 6, + "connector": 1, + "V": 2, + "Gnd.": 1, + "passed": 4, + "_not_": 1, + "number.": 1, + "There": 1, + "symbolic": 1, + "definitions": 3, + "convenience.": 1, + "See": 7, + "ref": 32, + "RPiGPIOPin.": 22, + "Pins": 2, + "bcm2835_spi_*": 1, + "allow": 5, + "SPI0": 17, + "send": 3, + "received": 3, + "Serial": 3, + "Peripheral": 6, + "Interface": 2, + "For": 6, + "more": 4, + "see": 14, + "//en.wikipedia.org/wiki/Serial_Peripheral_Interface_Bus": 1, + "When": 12, + "bcm2835_spi_begin": 3, + "changes": 2, + "bahaviour": 1, + "behaviour": 1, + "order": 14, + "support": 4, + "SPI.": 1, + "While": 1, + "bcm2835_spi_gpio_write": 1, + "bcm2835_spi_end": 4, + "revert": 1, + "configured": 1, + "controled": 1, + "bcm2835_gpio_*": 1, + "calls.": 1, + "P1": 56, + "MOSI": 8, + "MISO": 6, + "CLK": 6, + "CE0": 5, + "CE1": 6, + "bcm2835_i2c_*": 2, + "BSC": 10, + "generically": 1, + "referred": 1, + "I": 4, + "//en.wikipedia.org/wiki/I": 1, + "C2": 1, + "B2C": 1, + "V2": 2, + "SDA": 3, + "SLC": 1, + "Real": 1, + "Time": 1, + "performance": 2, + "constraints": 2, + "i.e.": 1, + "they": 2, + "Such": 1, + "part": 1, + "kernel": 4, + "usually": 2, + "subject": 1, + "paging": 1, + "swapping": 2, + "things": 1, + "besides": 1, + "running": 1, + "program.": 1, + "means": 8, + "expect": 2, + "get": 5, + "time": 10, + "timing": 3, + "programs.": 1, + "In": 2, + "particular": 1, + "guarantee": 1, + "bcm2835_delay": 5, + "bcm2835_delayMicroseconds": 6, + "exactly": 2, + "requested.": 1, + "fact": 2, + "depending": 1, + "activity": 1, + "host": 1, + "etc": 1, + "might": 1, + "significantly": 1, + "longer": 1, + "delay": 9, + "times": 2, + "asked": 1, + "for.": 1, + "So": 1, + "dont": 1, + "request.": 1, + "Arjan": 2, + "reports": 1, + "sched_param": 1, + "sp": 4, + "sp.sched_priority": 1, + "sched_get_priority_max": 1, + "SCHED_FIFO": 2, + "sched_setscheduler": 1, + "mlockall": 1, + "MCL_CURRENT": 1, + "MCL_FUTURE": 1, + "Open": 2, + "Source": 2, + "Licensing": 2, + "GPL": 2, + "appropriate": 7, + "option": 1, + "share": 2, + "application": 2, + "everyone": 1, + "distribute": 1, + "give": 2, + "them": 1, + "who": 1, + "uses": 4, + "wish": 2, + "software": 1, + "under": 2, + "contribute": 1, + "community": 1, + "accordance": 1, + "distributed.": 1, + "//www.gnu.org/copyleft/gpl.html": 1, + "COPYING": 1, + "Acknowledgements": 1, + "Some": 1, + "inspired": 2, + "Dom": 1, + "Gert.": 1, + "Alan": 1, + "Barr.": 1, + "Revision": 1, + "History": 1, + "Initial": 1, + "release": 1, + "Minor": 1, + "bug": 1, + "fixes": 1, + "Added": 11, + "bcm2835_spi_transfern": 3, + "Fixed": 4, + "problem": 2, + "prevented": 1, + "used.": 2, + "Reported": 5, + "David": 1, + "Robinson.": 1, + "bcm2835_close": 4, + "deinit": 1, + "library.": 3, + "Suggested": 1, + "sar": 1, + "Ortiz": 1, + "Document": 1, + "Functions": 1, + "bcm2835_gpio_ren": 3, + "bcm2835_gpio_fen": 3, + "bcm2835_gpio_hen": 3, + "bcm2835_gpio_aren": 3, + "bcm2835_gpio_afen": 3, + "now": 4, + "specified.": 1, + "Other": 1, + "were": 1, + "already": 1, + "previously": 10, + "stay": 1, + "enabled.": 1, + "bcm2835_gpio_clr_ren": 2, + "bcm2835_gpio_clr_fen": 2, + "bcm2835_gpio_clr_hen": 2, + "bcm2835_gpio_clr_len": 2, + "bcm2835_gpio_clr_aren": 2, + "bcm2835_gpio_clr_afen": 2, + "enable": 3, + "individual": 1, + "suggested": 3, + "Andreas": 1, + "Sundstrom.": 1, + "bcm2835_spi_transfernb": 2, + "read": 21, + "write.": 1, + "Improvements": 3, + "barrier": 3, + "maddin.": 1, + "contributed": 1, + "mikew": 1, + "noticed": 1, + "mallocing": 1, + "mmaps": 1, + "/dev/mem.": 1, + "ve": 4, + "removed": 1, + "mallocs": 1, + "frees": 1, + "found": 1, + "nanosleep": 7, + "takes": 1, + "least": 2, + "us.": 1, + "link": 3, + "version.": 1, + "doc": 1, + "Also": 1, + "added": 2, + "define": 2, + "passwrd": 1, + "Gert": 1, + "says": 1, + "pad": 4, + "settings.": 1, + "Changed": 1, + "collisions": 1, + "wiringPi.": 1, + "Macros": 2, + "delayMicroseconds": 3, + "disabled": 2, + "defining": 1, + "BCM2835_NO_DELAY_COMPATIBILITY": 2, + "incorrect": 2, + "Hardware": 1, + "pointers": 2, + "initialisation": 2, + "externally": 1, + "bcm2835_spi0.": 1, + "Now": 4, + "compiles": 1, + "even": 2, + "CLOCK_MONOTONIC_RAW": 1, + "instead.": 1, + "errors": 1, + "divider": 15, + "frequencies": 2, + "MHz": 14, + "clock.": 6, + "Ben": 1, + "Simpson.": 1, + "examples": 1, + "Mark": 5, + "Wolfe.": 1, + "bcm2835_gpio_set_multi": 2, + "bcm2835_gpio_clr_multi": 2, + "bcm2835_gpio_write_multi": 4, + "mask": 20, + "once.": 1, + "Requested": 2, + "Sebastian": 2, + "Loncar.": 2, + "bcm2835_gpio_write_mask.": 1, + "Changes": 1, + "timer": 2, + "counter": 1, + "clock_gettime": 1, + "improved": 1, + "accuracy.": 1, + "No": 2, + "lrt": 1, + "now.": 1, + "Contributed": 1, + "van": 1, + "Vught.": 1, + "Removed": 1, + "inlines": 1, + "patch": 1, + "since": 3, + "don": 1, + "seem": 1, + "work": 1, + "everywhere.": 1, + "olly.": 1, + "Patch": 2, + "Dootson": 2, + "/dev/mem": 4, + "granted.": 1, + "susceptible": 1, + "bit": 19, + "overruns.": 1, + "courtesy": 1, + "Jeremy": 1, + "Mortis.": 1, + "BCM2835_GPFEN0": 2, + "broke": 1, + "ability": 1, + "falling": 4, + "edge": 8, + "events.": 1, + "Dootson.": 2, + "bcm2835_i2c_set_baudrate": 2, + "bcm2835_i2c_read_register_rs.": 1, + "bcm2835_i2c_read": 4, + "bcm2835_i2c_write": 4, + "fix": 1, + "ocasional": 1, + "reads": 2, + "completing.": 1, + "Patched": 1, + "atched": 1, + "his": 1, + "submitted": 1, + "load": 1, + "processes.": 1, + "Updated": 1, + "distribution": 1, + "details": 1, + "airspayce.com": 1, + "missing": 1, + "unmapmem": 1, + "pads": 7, + "leak.": 1, + "Hartmut": 1, + "Henkel.": 1, + "Mike": 1, + "McCauley": 1, + "mikem@airspayce.com": 1, + "DO": 1, + "CONTACT": 1, + "THE": 2, + "AUTHOR": 1, + "DIRECTLY": 1, + "USE": 1, + "LISTS": 1, + "BCM2835_H": 3, + "": 2, + "defgroup": 7, + "constants": 1, + "Constants": 1, + "passing": 1, + "values": 3, + "here": 1, + "@": 14, + "HIGH": 12, + "volts": 2, + "pin.": 21, + "Speed": 1, + "core": 1, + "clock": 21, + "core_clk": 1, + "BCM2835_CORE_CLK_HZ": 1, + "Base": 17, + "Address": 10, + "BCM2835_PERI_BASE": 9, + "System": 10, + "Timer": 9, + "BCM2835_ST_BASE": 1, + "BCM2835_GPIO_PADS": 2, + "Clock/timer": 1, + "BCM2835_CLOCK_BASE": 1, + "BCM2835_GPIO_BASE": 6, + "BCM2835_SPI0_BASE": 1, + "BSC0": 2, + "BCM2835_BSC0_BASE": 1, + "PWM": 2, + "BCM2835_GPIO_PWM": 1, + "C000": 1, + "BSC1": 2, + "BCM2835_BSC1_BASE": 1, + "ST": 1, + "registers.": 10, + "Available": 8, + "bcm2835_init": 11, + "volatile": 13, + "*bcm2835_st": 1, + "*bcm2835_gpio": 1, + "*bcm2835_pwm": 1, + "*bcm2835_clk": 1, + "PADS": 1, + "*bcm2835_pads": 1, + "*bcm2835_spi0": 1, + "*bcm2835_bsc0": 1, + "*bcm2835_bsc1": 1, + "Size": 2, + "BCM2835_PAGE_SIZE": 1, + "*1024": 2, + "BCM2835_BLOCK_SIZE": 1, + "offsets": 2, + "BCM2835_GPIO_BASE.": 1, + "Offsets": 1, + "bytes": 29, + "per": 3, + "Register": 1, + "View": 1, + "BCM2835_GPFSEL0": 1, + "Function": 8, + "BCM2835_GPFSEL1": 1, + "BCM2835_GPFSEL2": 1, + "BCM2835_GPFSEL3": 1, + "BCM2835_GPFSEL4": 1, + "BCM2835_GPFSEL5": 1, + "BCM2835_GPSET0": 1, + "Output": 6, + "Set": 2, + "BCM2835_GPSET1": 1, + "BCM2835_GPCLR0": 1, + "BCM2835_GPCLR1": 1, + "BCM2835_GPLEV0": 1, + "Level": 2, + "BCM2835_GPLEV1": 1, + "BCM2835_GPEDS0": 1, + "Event": 11, + "Detect": 35, + "Status": 6, + "BCM2835_GPEDS1": 1, + "BCM2835_GPREN0": 1, + "Rising": 8, + "Edge": 16, + "Enable": 38, + "BCM2835_GPREN1": 1, + "Falling": 8, + "BCM2835_GPFEN1": 1, + "BCM2835_GPHEN0": 1, + "High": 4, + "BCM2835_GPHEN1": 1, + "BCM2835_GPLEN0": 1, + "Low": 5, + "BCM2835_GPLEN1": 1, + "BCM2835_GPAREN0": 1, + "Async.": 4, + "BCM2835_GPAREN1": 1, + "BCM2835_GPAFEN0": 1, + "BCM2835_GPAFEN1": 1, + "BCM2835_GPPUD": 1, + "Pull": 11, + "up/down": 10, + "BCM2835_GPPUDCLK0": 1, + "Clock": 11, + "BCM2835_GPPUDCLK1": 1, + "bcm2835PortFunction": 1, + "Port": 1, + "select": 9, + "modes": 1, + "bcm2835_gpio_fsel": 2, + "BCM2835_GPIO_FSEL_INPT": 1, + "b000": 1, + "Input": 2, + "BCM2835_GPIO_FSEL_OUTP": 1, + "b001": 1, + "BCM2835_GPIO_FSEL_ALT0": 1, + "b100": 1, + "Alternate": 6, + "BCM2835_GPIO_FSEL_ALT1": 1, + "b101": 1, + "BCM2835_GPIO_FSEL_ALT2": 1, + "b110": 1, + "BCM2835_GPIO_FSEL_ALT3": 1, + "b111": 2, + "BCM2835_GPIO_FSEL_ALT4": 1, + "b011": 1, + "BCM2835_GPIO_FSEL_ALT5": 1, + "b010": 1, + "BCM2835_GPIO_FSEL_MASK": 1, + "bits": 11, + "bcm2835FunctionSelect": 2, + "bcm2835PUDControl": 4, + "Pullup/Pulldown": 1, + "bcm2835_gpio_pud": 5, + "BCM2835_GPIO_PUD_OFF": 1, + "b00": 1, + "Off": 3, + "pull": 1, + "BCM2835_GPIO_PUD_DOWN": 1, + "b01": 1, + "Down": 1, + "BCM2835_GPIO_PUD_UP": 1, + "b10": 1, + "Up": 1, + "Pad": 11, + "BCM2835_PADS_GPIO_0_27": 1, + "BCM2835_PADS_GPIO_28_45": 1, + "BCM2835_PADS_GPIO_46_53": 1, + "Control": 6, + "masks": 1, + "BCM2835_PAD_PASSWRD": 1, + "A": 7, + "Password": 1, + "BCM2835_PAD_SLEW_RATE_UNLIMITED": 1, + "Slew": 1, + "rate": 3, + "unlimited": 1, + "BCM2835_PAD_HYSTERESIS_ENABLED": 1, + "Hysteresis": 1, + "BCM2835_PAD_DRIVE_2mA": 1, + "mA": 8, + "drive": 8, + "BCM2835_PAD_DRIVE_4mA": 1, + "BCM2835_PAD_DRIVE_6mA": 1, + "BCM2835_PAD_DRIVE_8mA": 1, + "BCM2835_PAD_DRIVE_10mA": 1, + "BCM2835_PAD_DRIVE_12mA": 1, + "BCM2835_PAD_DRIVE_14mA": 1, + "BCM2835_PAD_DRIVE_16mA": 1, + "bcm2835PadGroup": 4, + "specification": 1, + "bcm2835_gpio_pad": 2, + "BCM2835_PAD_GROUP_GPIO_0_27": 1, + "BCM2835_PAD_GROUP_GPIO_28_45": 1, + "BCM2835_PAD_GROUP_GPIO_46_53": 1, + "Numbers": 1, + "Here": 1, + "terms": 4, + "numbers.": 1, + "These": 6, + "requiring": 1, + "bin": 1, + "connected": 1, + "adopt": 1, + "function.": 3, + "slightly": 1, + "pinouts": 1, + "these": 1, + "RPI_V2_*.": 1, + "At": 1, + "bootup": 1, + "UART0_TXD": 3, + "UART0_RXD": 3, + "ie": 3, + "alt0": 1, + "respectively": 1, + "dedicated": 1, + "cant": 1, + "controlled": 1, + "independently": 1, + "RPI_GPIO_P1_03": 6, + "RPI_GPIO_P1_05": 6, + "RPI_GPIO_P1_07": 1, + "RPI_GPIO_P1_08": 1, + "defaults": 4, + "alt": 4, + "RPI_GPIO_P1_10": 1, + "RPI_GPIO_P1_11": 1, + "RPI_GPIO_P1_12": 1, + "RPI_GPIO_P1_13": 1, + "RPI_GPIO_P1_15": 1, + "RPI_GPIO_P1_16": 1, + "RPI_GPIO_P1_18": 1, + "RPI_GPIO_P1_19": 1, + "RPI_GPIO_P1_21": 1, + "RPI_GPIO_P1_22": 1, + "RPI_GPIO_P1_23": 1, + "RPI_GPIO_P1_24": 1, + "RPI_GPIO_P1_26": 1, + "RPI_V2_GPIO_P1_03": 1, + "RPI_V2_GPIO_P1_05": 1, + "RPI_V2_GPIO_P1_07": 1, + "RPI_V2_GPIO_P1_08": 1, + "RPI_V2_GPIO_P1_10": 1, + "RPI_V2_GPIO_P1_11": 1, + "RPI_V2_GPIO_P1_12": 1, + "RPI_V2_GPIO_P1_13": 1, + "RPI_V2_GPIO_P1_15": 1, + "RPI_V2_GPIO_P1_16": 1, + "RPI_V2_GPIO_P1_18": 1, + "RPI_V2_GPIO_P1_19": 1, + "RPI_V2_GPIO_P1_21": 1, + "RPI_V2_GPIO_P1_22": 1, + "RPI_V2_GPIO_P1_23": 1, + "RPI_V2_GPIO_P1_24": 1, + "RPI_V2_GPIO_P1_26": 1, + "RPI_V2_GPIO_P5_03": 1, + "RPI_V2_GPIO_P5_04": 1, + "RPI_V2_GPIO_P5_05": 1, + "RPI_V2_GPIO_P5_06": 1, + "RPiGPIOPin": 1, + "BCM2835_SPI0_CS": 1, + "Master": 12, + "BCM2835_SPI0_FIFO": 1, + "TX": 5, + "RX": 7, + "FIFOs": 1, + "BCM2835_SPI0_CLK": 1, + "Divider": 2, + "BCM2835_SPI0_DLEN": 1, + "Data": 9, + "Length": 2, + "BCM2835_SPI0_LTOH": 1, + "LOSSI": 1, + "TOH": 1, + "BCM2835_SPI0_DC": 1, + "DMA": 3, + "DREQ": 1, + "Controls": 1, + "BCM2835_SPI0_CS_LEN_LONG": 1, + "Long": 1, + "Lossi": 2, + "DMA_LEN": 1, + "BCM2835_SPI0_CS_DMA_LEN": 1, + "BCM2835_SPI0_CS_CSPOL2": 1, + "Chip": 9, + "Polarity": 5, + "BCM2835_SPI0_CS_CSPOL1": 1, + "BCM2835_SPI0_CS_CSPOL0": 1, + "BCM2835_SPI0_CS_RXF": 1, + "RXF": 2, + "FIFO": 25, + "Full": 1, + "BCM2835_SPI0_CS_RXR": 1, + "RXR": 3, + "Reading": 1, + "full": 9, + "BCM2835_SPI0_CS_TXD": 1, + "TXD": 2, + "accept": 2, + "BCM2835_SPI0_CS_RXD": 1, + "RXD": 2, + "contains": 2, + "BCM2835_SPI0_CS_DONE": 1, + "Done": 3, + "transfer": 8, + "BCM2835_SPI0_CS_TE_EN": 1, + "Unused": 2, + "BCM2835_SPI0_CS_LMONO": 1, + "BCM2835_SPI0_CS_LEN": 1, + "LEN": 1, + "LoSSI": 1, + "BCM2835_SPI0_CS_REN": 1, + "REN": 1, + "Read": 3, + "BCM2835_SPI0_CS_ADCS": 1, + "ADCS": 1, + "Automatically": 1, + "Deassert": 1, + "BCM2835_SPI0_CS_INTR": 1, + "INTR": 1, + "Interrupt": 5, + "BCM2835_SPI0_CS_INTD": 1, + "INTD": 1, + "BCM2835_SPI0_CS_DMAEN": 1, + "DMAEN": 1, + "BCM2835_SPI0_CS_TA": 1, + "Transfer": 3, + "Active": 2, + "BCM2835_SPI0_CS_CSPOL": 1, + "BCM2835_SPI0_CS_CLEAR": 1, + "BCM2835_SPI0_CS_CLEAR_RX": 1, + "BCM2835_SPI0_CS_CLEAR_TX": 1, + "BCM2835_SPI0_CS_CPOL": 1, + "BCM2835_SPI0_CS_CPHA": 1, + "Phase": 1, + "BCM2835_SPI0_CS_CS": 1, + "bcm2835SPIBitOrder": 3, + "Bit": 1, + "Specifies": 5, + "ordering": 4, + "bcm2835_spi_setBitOrder": 2, + "BCM2835_SPI_BIT_ORDER_LSBFIRST": 1, + "LSB": 1, + "First": 2, + "BCM2835_SPI_BIT_ORDER_MSBFIRST": 1, + "MSB": 1, + "Specify": 2, + "bcm2835_spi_setDataMode": 2, + "BCM2835_SPI_MODE0": 1, + "CPOL": 4, + "CPHA": 4, + "BCM2835_SPI_MODE1": 1, + "BCM2835_SPI_MODE2": 1, + "BCM2835_SPI_MODE3": 1, + "bcm2835SPIMode": 2, + "bcm2835SPIChipSelect": 3, + "BCM2835_SPI_CS0": 1, + "BCM2835_SPI_CS1": 1, + "BCM2835_SPI_CS2": 1, + "CS1": 1, + "CS2": 1, + "asserted": 3, + "BCM2835_SPI_CS_NONE": 1, + "CS": 5, + "yourself": 1, + "bcm2835SPIClockDivider": 3, + "generate": 2, + "Figures": 1, + "below": 1, + "period": 1, + "frequency.": 1, + "divided": 2, + "nominal": 2, + "reported": 2, + "contrary": 1, + "shown": 1, + "confirmed": 1, + "measurement": 2, + "BCM2835_SPI_CLOCK_DIVIDER_65536": 1, + "us": 12, + "kHz": 10, + "BCM2835_SPI_CLOCK_DIVIDER_32768": 1, + "BCM2835_SPI_CLOCK_DIVIDER_16384": 1, + "BCM2835_SPI_CLOCK_DIVIDER_8192": 1, + "/51757813kHz": 1, + "BCM2835_SPI_CLOCK_DIVIDER_4096": 1, + "BCM2835_SPI_CLOCK_DIVIDER_2048": 1, + "BCM2835_SPI_CLOCK_DIVIDER_1024": 1, + "BCM2835_SPI_CLOCK_DIVIDER_512": 1, + "BCM2835_SPI_CLOCK_DIVIDER_256": 1, + "BCM2835_SPI_CLOCK_DIVIDER_128": 1, + "ns": 9, + "BCM2835_SPI_CLOCK_DIVIDER_64": 1, + "BCM2835_SPI_CLOCK_DIVIDER_32": 1, + "BCM2835_SPI_CLOCK_DIVIDER_16": 1, + "BCM2835_SPI_CLOCK_DIVIDER_8": 1, + "BCM2835_SPI_CLOCK_DIVIDER_4": 1, + "BCM2835_SPI_CLOCK_DIVIDER_2": 1, + "fastest": 1, + "BCM2835_SPI_CLOCK_DIVIDER_1": 1, + "same": 3, + "/65536": 1, + "BCM2835_BSC_C": 1, + "BCM2835_BSC_S": 1, + "BCM2835_BSC_DLEN": 1, + "BCM2835_BSC_A": 1, + "Slave": 1, + "BCM2835_BSC_FIFO": 1, + "BCM2835_BSC_DIV": 1, + "BCM2835_BSC_DEL": 1, + "Delay": 4, + "BCM2835_BSC_CLKT": 1, + "Stretch": 2, + "Timeout": 2, + "BCM2835_BSC_C_I2CEN": 1, + "BCM2835_BSC_C_INTR": 1, + "BCM2835_BSC_C_INTT": 1, + "BCM2835_BSC_C_INTD": 1, + "DONE": 2, + "BCM2835_BSC_C_ST": 1, + "Start": 4, + "BCM2835_BSC_C_CLEAR_1": 1, + "BCM2835_BSC_C_CLEAR_2": 1, + "BCM2835_BSC_C_READ": 1, + "BCM2835_BSC_S_CLKT": 1, + "stretch": 1, + "BCM2835_BSC_S_ERR": 1, + "ACK": 1, + "BCM2835_BSC_S_RXF": 1, + "BCM2835_BSC_S_TXE": 1, + "TXE": 1, + "BCM2835_BSC_S_RXD": 1, + "BCM2835_BSC_S_TXD": 1, + "BCM2835_BSC_S_RXR": 1, + "BCM2835_BSC_S_TXW": 1, + "TXW": 1, + "BCM2835_BSC_S_DONE": 1, + "BCM2835_BSC_S_TA": 1, + "BCM2835_BSC_FIFO_SIZE": 1, + "bcm2835I2CClockDivider": 3, + "BCM2835_I2C_CLOCK_DIVIDER_2500": 1, + "BCM2835_I2C_CLOCK_DIVIDER_626": 1, + "BCM2835_I2C_CLOCK_DIVIDER_150": 1, + "reset": 1, + "BCM2835_I2C_CLOCK_DIVIDER_148": 1, + "bcm2835I2CReasonCodes": 5, + "reason": 4, + "codes": 1, + "BCM2835_I2C_REASON_OK": 1, + "Success": 1, + "BCM2835_I2C_REASON_ERROR_NACK": 1, + "Received": 4, + "NACK": 1, + "BCM2835_I2C_REASON_ERROR_CLKT": 1, + "BCM2835_I2C_REASON_ERROR_DATA": 1, + "sent": 1, + "BCM2835_ST_CS": 1, + "Control/Status": 1, + "BCM2835_ST_CLO": 1, + "Counter": 4, + "Lower": 2, + "BCM2835_ST_CHI": 1, + "Upper": 1, + "BCM2835_PWM_CONTROL": 1, + "BCM2835_PWM_STATUS": 1, + "BCM2835_PWM0_RANGE": 1, + "BCM2835_PWM0_DATA": 1, + "BCM2835_PWM1_RANGE": 1, + "BCM2835_PWM1_DATA": 1, + "BCM2835_PWMCLK_CNTL": 1, + "BCM2835_PWMCLK_DIV": 1, + "BCM2835_PWM1_MS_MODE": 1, + "Run": 4, + "MS": 2, + "BCM2835_PWM1_USEFIFO": 1, + "BCM2835_PWM1_REVPOLAR": 1, + "Reverse": 2, + "polarity": 3, + "BCM2835_PWM1_OFFSTATE": 1, + "Ouput": 2, + "BCM2835_PWM1_REPEATFF": 1, + "Repeat": 2, + "empty": 2, + "BCM2835_PWM1_SERIAL": 1, + "serial": 2, + "BCM2835_PWM1_ENABLE": 1, + "Channel": 2, + "BCM2835_PWM0_MS_MODE": 1, + "BCM2835_PWM0_USEFIFO": 1, + "BCM2835_PWM0_REVPOLAR": 1, + "BCM2835_PWM0_OFFSTATE": 1, + "BCM2835_PWM0_REPEATFF": 1, + "BCM2835_PWM0_SERIAL": 1, + "BCM2835_PWM0_ENABLE": 1, + "init": 2, + "Library": 1, + "management": 1, + "intialise": 1, + "Initialise": 1, + "opening": 1, + "getting": 1, + "call": 4, + "successfully": 1, + "bcm2835_set_debug": 2, + "fails": 1, + "returning": 1, + "crashes": 1, + "failures.": 1, + "Prints": 1, + "messages": 1, + "stderr": 1, + "errors.": 1, + "successful": 2, + "Close": 1, + "deallocating": 1, + "debug": 6, + "prevents": 1, + "makes": 1, + "out": 5, + "would": 2, + "causes": 1, + "normal": 1, + "param": 72, + "uint8_t": 43, + "lowlevel": 2, + "provide": 1, + "generally": 1, + "Reads": 5, + "done": 3, + "twice": 3, + "therefore": 6, + "always": 3, + "precautions": 3, + "correct": 3, + "paddr": 10, + "from.": 6, + "etc.": 5, + "without": 3, + "occurred": 2, + "since.": 2, + "bcm2835_peri_read_nb": 1, + "Writes": 2, + "bcm2835_peri_write_nb": 1, + "Alters": 1, + "regsiter.": 1, + "valu": 1, + "alters": 1, + "deines": 1, + "according": 1, + "value.": 2, + "All": 1, + "unaffected.": 1, + "subset": 1, + "register.": 3, + "masked": 2, + "mask.": 1, + "Bitmask": 1, + "altered": 1, + "gpio": 1, + "interface.": 3, + "state.": 1, + "configures": 1, + "RPI_GPIO_P1_*": 21, + "Mode": 1, + "BCM2835_GPIO_FSEL_*": 1, + "specified": 27, + "HIGH.": 2, + "bcm2835_gpio_write": 3, + "bcm2835_gpio_set": 1, + "LOW.": 5, + "bcm2835_gpio_clr": 1, + "Mask": 6, + "affect.": 4, + "eg": 5, + "Works": 1, + "output.": 1, + "bcm2835_gpio_lev": 1, + "Status.": 7, + "Tests": 1, + "detected": 7, + "requested": 1, + "bcm2835_gpio_set_eds": 2, + "status": 1, + "th": 1, + "bcm2835_gpio_eds": 1, + "effect": 3, + "clearing": 1, + "flag.": 1, + "afer": 1, + "seeing": 1, + "rising": 3, + "sets": 8, + "GPRENn": 2, + "synchronous": 2, + "detection.": 2, + "signal": 4, + "sampled": 6, + "looking": 2, + "pattern": 2, + "signal.": 2, + "suppressing": 2, + "glitches.": 2, + "Disable": 6, + "Asynchronous": 6, + "incoming": 2, + "As": 2, + "edges": 2, + "very": 2, + "duration": 2, + "detected.": 2, + "bcm2835_gpio_pudclk": 3, + "resistor": 1, + "However": 3, + "convenient": 2, + "bcm2835_gpio_set_pud": 4, + "pud": 4, + "desired": 7, + "One": 3, + "BCM2835_GPIO_PUD_*": 2, + "Clocks": 3, + "earlier": 1, + "group.": 2, + "BCM2835_PAD_GROUP_GPIO_*": 2, + "BCM2835_PAD_*": 2, + "bcm2835_gpio_set_pad": 1, + "Delays": 3, + "milliseconds.": 1, + "Uses": 4, + "until": 1, + "up.": 1, + "mercy": 2, + "From": 2, + "interval": 4, + "req": 2, + "exact": 2, + "multiple": 2, + "granularity": 2, + "rounded": 2, + "multiple.": 2, + "Furthermore": 2, + "sleep": 2, + "completes": 2, + "becomes": 2, + "again": 2, + "thread.": 2, + "millis": 2, + "milliseconds": 1, + "microseconds.": 2, + "busy": 2, + "wait": 2, + "timers": 1, + "less": 1, + "microseconds": 6, + "Timer.": 1, + "RaspberryPi": 1, + "Your": 1, + "mileage": 1, + "vary.": 1, + "micros": 5, + "required": 2, + "bcm2835_gpio_write_mask": 1, + "clocking": 1, + "spi": 1, + "let": 2, + "device.": 2, + "operations.": 4, + "Forces": 2, + "ALT0": 2, + "funcitons": 1, + "End": 2, + "INPUT": 2, + "behaviour.": 2, + "NOTE": 1, + "effect.": 1, + "SPI0.": 1, + "Defaults": 1, + "BCM2835_SPI_BIT_ORDER_*": 1, + "speed.": 2, + "BCM2835_SPI_CLOCK_DIVIDER_*": 1, + "bcm2835_spi_setClockDivider": 1, + "uint16_t": 2, + "polariy": 1, + "phase": 1, + "BCM2835_SPI_MODE*": 1, + "bcm2835_spi_transfer": 5, + "made": 1, + "during": 4, + "transfer.": 4, + "cs": 4, + "activate": 1, + "slave.": 7, + "BCM2835_SPI_CS*": 1, + "bcm2835_spi_chipSelect": 4, + "occurs": 1, + "active.": 1, + "transfers": 1, + "happening": 1, + "complement": 1, + "inactive": 1, + "affect": 1, + "active": 3, + "Whether": 1, + "bcm2835_spi_setChipSelectPolarity": 1, + "Transfers": 6, + "Asserts": 3, + "simultaneously": 3, + "clocks": 2, + "MISO.": 2, + "polled": 2, + "Peripherls": 2, + "slave": 8, + "placed": 1, + "rbuf.": 1, + "rbuf": 3, + "tbuf": 4, + "send.": 5, + "put": 1, + "send/received": 2, + "bcm2835_spi_transfernb.": 1, + "replaces": 1, + "transmitted": 1, + "buffer.": 1, + "replace": 1, + "bcm2835_spi_writenb": 1, + "i2c": 1, + "Philips": 1, + "bus/interface": 1, + "January": 1, + "SCL": 2, + "bcm2835_i2c_end": 3, + "bcm2835_i2c_begin": 1, + "address.": 2, + "addr": 2, + "bcm2835_i2c_setSlaveAddress": 4, + "BCM2835_I2C_CLOCK_DIVIDER_*": 1, + "bcm2835_i2c_setClockDivider": 2, + "converting": 1, + "baudrate": 4, + "parameter": 1, + "equivalent": 1, + "divider.": 1, + "standard": 2, + "khz": 1, + "corresponds": 1, + "its": 1, + "driver.": 1, + "Of": 1, + "nothing": 1, + "driver": 1, + "receive.": 2, + "received.": 2, + "Allows": 2, + "slaves": 1, + "require": 3, + "repeated": 1, + "prior": 1, + "stop": 1, + "set.": 1, + "popular": 1, + "MPL3115A2": 1, + "pressure": 1, + "temperature": 1, + "sensor.": 1, + "Note": 1, + "combined": 1, + "better": 1, + "choice.": 1, + "Will": 1, + "regaddr": 2, + "bcm2835_i2c_read_register_rs": 1, + "st": 1, + "delays": 1, + "Counter.": 1, + "bcm2835_st_read": 1, + "offset.": 1, + "offset_micros": 2, + "Offset": 1, + "bcm2835_st_delay": 1, + "@example": 5, + "blink.c": 1, + "Blinks": 1, + "off": 1, + "input.c": 1, + "event.c": 1, + "Shows": 3, + "how": 3, + "spi.c": 1, + "spin.c": 1, + "": 1, + "": 1, + "": 2, + "*env_instance": 1, + "*Env": 1, + "env_instance": 3, + "QObject": 2, + "QCoreApplication": 1, + "**envp": 1, + "**env": 1, + "**": 2, + "envvar": 2, + "indexOfEquals": 5, + "env": 3, + "*env": 1, + "envvar.indexOf": 1, + "envvar.left": 1, + "envvar.mid": 1, + "m_map.insert": 1, + "QVariantMap": 3, + "asVariantMap": 2, + "m_map": 2, + "ENV_H": 3, + "": 1, + "Q_OBJECT": 1, + "*instance": 1, + "rpc_init": 1, + "rpc_server_loop": 1, + "BITCOIN_KEY_H": 2, + "": 1, + "": 1, + "EC_KEY": 3, + "key_error": 6, + "runtime_error": 2, + "str": 2, + "CKeyID": 5, + "uint160": 8, + "CScriptID": 3, + "CPubKey": 11, + "vchPubKey": 6, + "CKey": 26, + "vchPubKeyIn": 2, + "a.vchPubKey": 3, + "b.vchPubKey": 3, + "IMPLEMENT_SERIALIZE": 1, + "READWRITE": 1, + "GetID": 1, + "Hash160": 1, + "uint256": 10, + "GetHash": 1, + "Hash": 1, + "vchPubKey.begin": 1, + "vchPubKey.end": 1, + "IsValid": 4, + "vchPubKey.size": 3, + "IsCompressed": 2, + "Raw": 1, + "secure_allocator": 2, + "CPrivKey": 3, + "CSecret": 4, + "EC_KEY*": 1, + "pkey": 14, + "fSet": 7, + "fCompressedPubKey": 5, + "SetCompressedPubKey": 4, + "Reset": 5, + "IsNull": 1, + "MakeNewKey": 1, + "fCompressed": 3, + "SetPrivKey": 1, + "vchPrivKey": 1, + "SetSecret": 1, + "vchSecret": 1, + "GetSecret": 2, + "GetPrivKey": 1, + "SetPubKey": 1, + "GetPubKey": 5, + "hash": 20, + "vchSig": 18, + "SignCompact": 2, + "SetCompactSignature": 2, + "Verify": 2, + "VerifyCompact": 2, + "": 1, + "": 1, + "": 1, + "EC_KEY_regenerate_key": 1, + "*eckey": 2, + "BIGNUM": 9, + "*priv_key": 1, + "ok": 3, + "BN_CTX": 2, + "*ctx": 2, + "EC_POINT": 4, + "*pub_key": 1, + "eckey": 7, + "EC_GROUP": 2, + "*group": 2, + "EC_KEY_get0_group": 2, + "ctx": 26, + "BN_CTX_new": 2, + "err": 26, + "pub_key": 6, + "EC_POINT_new": 4, + "EC_POINT_mul": 3, + "priv_key": 2, + "EC_KEY_set_private_key": 1, + "EC_KEY_set_public_key": 2, + "EC_POINT_free": 4, + "BN_CTX_free": 2, + "ECDSA_SIG_recover_key_GFp": 3, + "ECDSA_SIG": 3, + "*ecsig": 1, + "*msg": 2, + "msglen": 2, + "recid": 3, + "ret": 24, + "*x": 1, + "*e": 1, + "*order": 1, + "*sor": 1, + "*eor": 1, + "*field": 1, + "*R": 1, + "*O": 1, + "*Q": 1, + "*rr": 1, + "*zero": 1, + "BN_CTX_start": 1, + "BN_CTX_get": 8, + "EC_GROUP_get_order": 1, + "BN_copy": 1, + "BN_mul_word": 1, + "BN_add": 1, + "ecsig": 3, + "EC_GROUP_get_curve_GFp": 1, + "BN_cmp": 1, + "R": 6, + "EC_POINT_set_compressed_coordinates_GFp": 1, + "O": 5, + "EC_POINT_is_at_infinity": 1, + "Q": 5, + "EC_GROUP_get_degree": 1, + "BN_bin2bn": 3, + "msg": 1, + "*msglen": 1, + "BN_rshift": 1, + "BN_zero": 1, + "BN_mod_sub": 1, + "rr": 4, + "BN_mod_inverse": 1, + "sor": 3, + "BN_mod_mul": 2, + "eor": 3, + "BN_CTX_end": 1, + "EC_KEY_set_conv_form": 1, + "POINT_CONVERSION_COMPRESSED": 1, + "EC_KEY_new_by_curve_name": 2, + "NID_secp256k1": 2, + "throw": 4, + "EC_KEY_dup": 1, + "b.pkey": 2, + "b.fSet": 2, + "EC_KEY_copy": 1, + "nSize": 2, + "vchSig.clear": 2, + "vchSig.resize": 2, + "Shrink": 1, + "fit": 1, + "actual": 1, + "fOk": 3, + "*sig": 2, + "ECDSA_do_sign": 1, + "sig": 11, + "nBitsR": 3, + "BN_num_bits": 2, + "nBitsS": 3, + "nRecId": 4, + "<4;>": 1, + "keyRec": 5, + "BN_bn2bin": 2, + "/8": 2, + "ECDSA_SIG_free": 2, + "vchSig.size": 2, + "nV": 6, + "<27>": 1, + "ECDSA_SIG_new": 1, + "EC_KEY_free": 1, + "ECDSA_verify": 1, + "key.SetCompactSignature": 1, + "key.GetPubKey": 1, + "fCompr": 3, + "secret": 2, + "key2": 1, + "key2.SetSecret": 1, + "key2.GetPubKey": 1, + "V8_SCANNER_H_": 3, + "ParsingFlags": 1, + "kNoParsingFlags": 1, + "kLanguageModeMask": 4, + "kAllowLazy": 1, + "kAllowNativesSyntax": 1, + "kAllowModules": 1, + "CLASSIC_MODE": 2, + "STRICT_MODE": 2, + "EXTENDED_MODE": 2, + "x16": 1, + "x36.": 1, + "Utf16CharacterStream": 3, + "pos_": 6, + "buffer_cursor_": 5, + "buffer_end_": 3, + "ReadBlock": 2, + "": 1, + "kEndOfInput": 2, + "code_unit_count": 7, + "buffered_chars": 2, + "SlowSeekForward": 2, + "int32_t": 1, + "code_unit": 6, + "uc16*": 3, + "UnicodeCache": 3, + "unibrow": 11, + "Utf8InputBuffer": 2, + "<1024>": 2, + "Utf8Decoder": 2, + "StaticResource": 2, + "": 2, + "utf8_decoder": 1, + "utf8_decoder_": 2, + "uchar": 4, + "kIsIdentifierStart.get": 1, + "IsIdentifierPart": 1, + "kIsIdentifierPart.get": 1, + "kIsLineTerminator.get": 1, + "kIsWhiteSpace.get": 1, + "Predicate": 4, + "": 1, + "128": 4, + "kIsIdentifierStart": 1, + "": 1, + "kIsIdentifierPart": 1, + "": 1, + "kIsLineTerminator": 1, + "": 1, + "kIsWhiteSpace": 1, + "DISALLOW_COPY_AND_ASSIGN": 2, + "LiteralBuffer": 6, + "is_ascii_": 10, + "position_": 17, + "backing_store_": 7, + "backing_store_.length": 4, + "backing_store_.Dispose": 3, + "INLINE": 2, + "AddChar": 2, + "ExpandBuffer": 2, + "kMaxAsciiCharCodeU": 1, + "": 6, + "kASCIISize": 1, + "ConvertToUtf16": 2, + "": 2, + "kUC16Size": 2, + "is_ascii": 3, + "Vector": 13, + "uc16": 5, + "utf16_literal": 3, + "backing_store_.start": 5, + "ascii_literal": 3, + "kInitialCapacity": 2, + "kGrowthFactory": 2, + "kMinConversionSlack": 1, + "kMaxGrowth": 2, + "MB": 1, + "NewCapacity": 3, + "min_capacity": 2, + "capacity": 3, + "Max": 1, + "new_capacity": 2, + "Min": 1, + "new_store": 6, + "memcpy": 1, + "new_store.start": 3, + "new_content_size": 4, + "src": 2, + "": 1, + "dst": 2, + "Scanner*": 2, + "scanner_": 5, + "complete_": 4, + "StartLiteral": 2, + "DropLiteral": 2, + "Complete": 1, + "TerminateLiteral": 2, + "beg_pos": 5, + "end_pos": 4, + "kNoOctalLocation": 1, + "scanner_contants": 1, + "current_token": 1, + "current_.location": 2, + "literal_ascii_string": 1, + "ASSERT_NOT_NULL": 9, + "current_.literal_chars": 11, + "literal_utf16_string": 1, + "is_literal_ascii": 1, + "literal_length": 1, + "literal_contains_escapes": 1, + "source_length": 3, + "location.end_pos": 1, + "location.beg_pos": 1, + "STRING": 1, + "peek": 1, + "peek_location": 1, + "next_.location": 1, + "next_literal_ascii_string": 1, + "next_literal_utf16_string": 1, + "is_next_literal_ascii": 1, + "next_literal_length": 1, + "kCharacterLookaheadBufferSize": 3, + "ScanOctalEscape": 1, + "octal_position": 1, + "clear_octal_position": 1, + "HarmonyScoping": 1, + "SetHarmonyScoping": 1, + "scoping": 2, + "HarmonyModules": 1, + "SetHarmonyModules": 1, + "modules": 2, + "HasAnyLineTerminatorBeforeNext": 1, + "ScanRegExpPattern": 1, + "seen_equal": 1, + "ScanRegExpFlags": 1, + "IsIdentifier": 1, + "CharacterStream*": 1, + "TokenDesc": 3, + "LiteralBuffer*": 2, + "literal_chars": 1, + "free_buffer": 3, + "literal_buffer1_": 3, + "literal_buffer2_": 2, + "AddLiteralChar": 2, + "tok": 2, + "else_": 2, + "ScanDecimalDigits": 1, + "seen_period": 1, + "ScanIdentifierSuffix": 1, + "LiteralScope*": 1, + "ScanIdentifierUnicodeEscape": 1, + "desc": 2, + "look": 1, + "ahead": 1, + "Field": 2, + "Free": 1, + "Black": 1, + "White": 1, + "Illegal": 1, + "Player": 1, + "NINJA_METRICS_H_": 3, + "int64_t.": 1, + "Metrics": 2, + "module": 1, + "dumps": 1, + "stats": 2, + "actions.": 1, + "To": 1, + "METRIC_RECORD": 4, + "below.": 1, + "metrics": 2, + "hit": 1, + "path.": 2, + "count": 1, + "Total": 1, + "spent": 1, + "int64_t": 3, + "sum": 1, + "scoped": 1, + "recording": 1, + "metric": 2, + "across": 1, + "body": 1, + "Used": 2, + "macro.": 1, + "ScopedMetric": 4, + "Metric*": 4, + "metric_": 1, + "Timestamp": 1, + "started.": 1, + "dependent.": 1, + "start_": 1, + "prints": 1, + "report.": 1, + "NewMetric": 2, + "summary": 1, + "stdout.": 1, + "Report": 1, + "": 1, + "metrics_": 1, + "Get": 1, + "epoch.": 1, + "Epoch": 1, + "varies": 1, + "between": 1, + "platforms": 1, + "useful": 1, + "measuring": 1, + "elapsed": 1, + "time.": 1, + "GetTimeMillis": 1, + "simple": 1, + "stopwatch": 1, + "seconds": 1, + "Restart": 3, + "called.": 1, + "Stopwatch": 2, + "started_": 4, + "Seconds": 1, + "call.": 1, + "Elapsed": 1, + "": 1, + "primary": 1, + "metrics.": 1, + "top": 1, + "recorded": 1, + "metrics_h_metric": 2, + "g_metrics": 3, + "metrics_h_scoped": 1, + "Metrics*": 1, + "UTILS_H": 3, + "": 1, + "": 1, + "": 1, + "QTemporaryFile": 1, + "showUsage": 1, + "QtMsgType": 1, + "dump_path": 1, + "minidump_id": 1, + "QVariant": 1, + "coffee2js": 1, + "script": 1, + "injectJsInFrame": 2, + "jsFilePath": 5, + "libraryPath": 5, + "QWebFrame": 4, + "*targetFrame": 4, + "startingScript": 2, + "Encoding": 3, + "jsFileEnc": 2, + "readResourceFileUtf8": 1, + "resourceFilePath": 1, + "loadJSForDebug": 2, + "autorun": 2, + "cleanupFromDebug": 1, + "findScript": 1, + "jsFromScriptFile": 1, + "scriptPath": 1, + "enc": 1, + "shouldn": 1, + "instantiated": 1, + "QTemporaryFile*": 2, + "m_tempHarness": 1, + "We": 1, + "ourselves": 1, + "m_tempWrapper": 1, + "GDSDBREADER_H": 3, + "": 1, + "GDS_DIR": 1, + "LEVEL_ONE": 1, + "LEVEL_TWO": 1, + "LEVEL_THREE": 1, + "dbDataStructure": 2, + "label": 1, + "quint32": 3, + "depth": 1, + "userIndex": 1, + "QByteArray": 1, + "COMPRESSED": 1, + "optimize": 1, + "ram": 1, + "decompressed": 1, + "quint64": 1, + "uniqueID": 1, + "QVector": 2, + "": 1, + "nextItems": 1, + "": 1, + "nextItemsIndices": 1, + "dbDataStructure*": 1, + "father": 1, + "fatherIndex": 1, + "noFatherRoot": 1, + "tell": 1, + "node": 1, + "root": 1, + "hasn": 1, + "argument": 1, + "overload.": 1, + "myclass.label": 2, + "myclass.depth": 2, + "myclass.userIndex": 2, + "qCompress": 2, + "myclass.data": 4, + "myclass.uniqueID": 2, + "myclass.nextItemsIndices": 2, + "myclass.fatherIndex": 2, + "myclass.noFatherRoot": 2, + "myclass.fileName": 2, + "myclass.firstLineData": 4, + "myclass.linesNumbers": 2, + "QDataStream": 2, + "myclass": 1, + "//Don": 1, + "qUncompress": 2 }, "COBOL": { - "program": 1, - "-": 19, - "id.": 1, - "hello.": 3, - "procedure": 1, - "division.": 1, - "display": 1, - ".": 3, - "stop": 1, - "run.": 1, "IDENTIFICATION": 2, "DIVISION.": 4, "PROGRAM": 2, + "-": 19, "ID.": 2, + "hello.": 3, "PROCEDURE": 2, "DISPLAY": 2, + ".": 3, "STOP": 2, "RUN.": 2, "COBOL": 7, @@ -14362,7 +14361,14 @@ "(": 5, ")": 5, "COMP.": 3, - "COMP2": 2 + "COMP2": 2, + "program": 1, + "id.": 1, + "procedure": 1, + "division.": 1, + "display": 1, + "stop": 1, + "run.": 1 }, "CSS": { ".clearfix": 8, @@ -15142,124 +15148,62 @@ }, "Cirru": { "print": 38, - "array": 14, "int": 36, - "string": 7, + "float": 1, "set": 12, - "f": 3, - "block": 1, - "(": 20, "a": 22, + "string": 7, + "(": 20, + ")": 20, + "nothing": 1, + "map": 8, "b": 7, "c": 9, - ")": 20, + "array": 14, + "code": 4, + "get": 4, + "container": 3, + "self": 2, + "child": 1, + "under": 2, + "parent": 1, + "x": 2, + "just": 4, + "-": 4, + "eval": 2, + "f": 3, + "block": 1, "call": 1, + "m": 3, "bool": 6, "true": 1, "false": 1, "yes": 1, "no": 1, - "map": 8, - "m": 3, - "float": 1, "require": 1, - "./stdio.cr": 1, - "self": 2, - "child": 1, - "under": 2, - "parent": 1, - "get": 4, - "x": 2, - "just": 4, - "-": 4, - "code": 4, - "eval": 2, - "nothing": 1, - "container": 3 + "./stdio.cr": 1 }, "Clojure": { - "(": 83, - "defn": 4, - "prime": 2, - "[": 41, - "n": 9, - "]": 41, - "not": 3, - "-": 14, - "any": 1, - "zero": 1, - "map": 2, - "#": 1, - "rem": 2, - "%": 1, - ")": 84, - "range": 3, - ";": 8, - "while": 3, - "stops": 1, - "at": 1, - "the": 1, - "first": 2, - "collection": 1, - "element": 1, - "that": 1, - "evaluates": 1, - "to": 1, - "false": 2, - "like": 1, - "take": 1, - "for": 2, - "x": 6, - "html": 1, - "head": 1, - "meta": 1, - "{": 8, - "charset": 1, - "}": 8, - "link": 1, - "rel": 1, - "href": 1, - "script": 1, - "src": 1, - "body": 1, - "div.nav": 1, - "p": 1, - "into": 2, - "array": 3, - "aseq": 8, - "nil": 1, - "type": 2, - "let": 1, - "count": 3, - "a": 3, - "make": 1, - "loop": 1, - "seq": 1, - "i": 4, - "if": 1, - "<": 1, - "do": 1, - "aset": 1, - "recur": 1, - "next": 1, - "inc": 1, + "(": 258, "defprotocol": 1, "ISound": 4, "sound": 5, + "[": 67, + "]": 67, + ")": 259, "deftype": 2, "Cat": 1, - "_": 3, + "_": 4, "Dog": 1, "extend": 1, + "-": 70, + "type": 8, "default": 1, - "rand": 2, - "scm*": 1, - "random": 1, - "real": 1, + ";": 353, "clj": 1, "ns": 2, "c2.svg": 2, - "use": 2, + "use": 3, "c2.core": 2, "only": 4, "unify": 2, @@ -15273,124 +15217,389 @@ "cos": 2, "mean": 2, "cljs": 3, - "require": 1, + "require": 2, "c2.dom": 1, "as": 1, "dom": 1, "Stub": 1, + "for": 4, "float": 2, - "fn": 2, - "which": 1, + "fn": 3, + "which": 2, "does": 1, + "not": 9, "exist": 1, - "on": 1, + "on": 11, "runtime": 1, - "def": 1, + "def": 4, "identity": 1, + "defn": 14, "xy": 1, "coordinates": 7, - "cond": 1, - "and": 1, + "cond": 2, + "and": 8, "vector": 1, + "count": 5, + "map": 3, + "x": 8, "y": 1, + "into": 3, + "array": 3, + "aseq": 8, + "nil": 3, + "let": 3, + "n": 9, + "a": 7, + "make": 1, + "loop": 2, + "seq": 1, + "i": 20, + "if": 3, + "<": 1, + "do": 15, + "aset": 1, + "first": 2, + "recur": 1, + "next": 1, + "inc": 2, + "prime": 2, + "any": 3, + "zero": 2, + "#": 14, + "rem": 2, + "%": 6, + "range": 3, + "while": 3, + "stops": 1, + "at": 2, + "the": 5, + "collection": 1, + "element": 1, + "that": 1, + "evaluates": 1, + "to": 2, + "false": 6, + "like": 1, + "take": 1, + "rand": 2, + "scm*": 1, + "random": 1, + "real": 1, + "Copyright": 1, + "c": 1, + "Alan": 1, + "Dipert": 1, + "Micha": 1, + "Niskin.": 1, + "All": 1, + "rights": 1, + "reserved.": 1, + "The": 1, + "distribution": 1, + "terms": 2, + "this": 6, + "software": 2, + "are": 2, + "covered": 1, + "by": 4, + "Eclipse": 1, + "Public": 1, + "License": 1, + "http": 2, + "//opensource.org/licenses/eclipse": 1, + "php": 1, + "can": 1, + "be": 2, + "found": 1, + "in": 4, + "file": 1, + "epl": 1, + "v10.html": 1, + "root": 1, + "of": 2, + "distribution.": 1, + "By": 1, + "using": 1, + "fashion": 1, + "you": 1, + "agreeing": 1, + "bound": 1, + "license.": 1, + "You": 1, + "must": 1, + "remove": 3, + "notice": 1, + "or": 2, + "other": 1, + "from": 1, + "software.": 1, + "page": 2, + "refer": 4, + "clojure": 1, + "exclude": 1, + "nth": 2, + "tailrecursion.hoplon.reload": 1, + "reload": 2, + "all": 5, + "tailrecursion.hoplon.util": 1, + "name": 1, + "pluralize": 2, + "tailrecursion.hoplon.storage": 1, + "atom": 1, + "local": 3, + "storage": 2, + "utility": 1, + "functions": 2, + "declare": 1, + "route": 11, + "state": 15, + "editing": 13, + "mapvi": 2, + "comp": 1, + "vec": 2, + "indexed": 1, + "dissocv": 2, + "v": 15, + "z": 4, + "dec": 1, + "neg": 1, + "pop": 1, + "pos": 1, + "subvec": 2, + "decorate": 2, + "todo": 10, + "{": 17, + "done": 12, + "completed": 12, + "text": 14, + "}": 17, + "assoc": 4, + "visible": 2, + "empty": 8, + "persisted": 1, + "cell": 12, + "AKA": 1, + "stem": 1, + "store": 1, + "cells": 2, + "defc": 6, + "loaded": 1, + "formula": 1, + "computed": 1, + "filter": 2, + "active": 5, + "plural": 1, + "item": 1, + "todos": 2, + "list": 1, + "transition": 1, + "t": 5, + "destroy": 3, + "swap": 6, + "clear": 2, + "&": 1, + "new": 5, + "when": 3, + "conj": 1, + "mapv": 1, + "reset": 1, + "html": 2, + "lang": 1, + "head": 2, + "meta": 3, + "charset": 2, + "equiv": 1, + "content": 1, + "link": 2, + "rel": 2, + "href": 6, + "title": 1, + "body": 2, + "noscript": 1, + "div": 3, + "id": 20, + "p": 4, + "section": 2, + "header": 1, + "h1": 1, + "form": 2, + "submit": 2, + "val": 4, + "value": 3, + "input": 4, + "autofocus": 1, + "true": 5, + "placeholder": 1, + "blur": 2, + "toggle": 4, + "attr": 2, + "checked": 2, + "click": 4, + "label": 2, + "ul": 2, + "tpl": 1, + "reverse": 1, + "bind": 1, + "ids": 1, + "done#": 3, + "edit#": 3, + "bindings": 1, + "edit": 3, + "show": 2, + "li": 4, + "class": 8, + "dblclick": 1, + "@i": 6, + "button": 2, + "focus": 1, + "@edit": 2, + "change": 1, + "footer": 2, + "span": 2, + "strong": 1, + "selected": 3, + "script": 1, + "src": 1, + "div.nav": 1, "deftest": 1, "function": 1, "tests": 1, "is": 7, - "true": 2, "contains": 1, "foo": 6, "bar": 4, "select": 1, "keys": 2, "baz": 4, - "vals": 1, - "filter": 1 + "vals": 1 }, "CoffeeScript": { - "CoffeeScript": 1, + "dnsserver": 1, "require": 21, - "CoffeeScript.require": 1, - "CoffeeScript.eval": 1, + "exports.Server": 1, + "class": 11, + "Server": 2, + "extends": 6, + "dnsserver.Server": 1, + "NS_T_A": 3, + "NS_T_NS": 2, + "NS_T_CNAME": 1, + "NS_T_SOA": 2, + "NS_C_IN": 5, + "NS_RCODE_NXDOMAIN": 2, + "constructor": 6, "(": 193, - "code": 20, - "options": 16, - "{": 31, - "}": 34, + "domain": 6, + "@rootAddress": 2, ")": 196, "-": 107, - "options.bare": 2, - "on": 3, - "eval": 2, - "CoffeeScript.compile": 2, - "CoffeeScript.run": 3, - "Function": 1, + "super": 4, + "@domain": 3, + "domain.toLowerCase": 1, + "@soa": 2, + "createSOA": 2, + "@on": 1, + "@handleRequest": 1, + "handleRequest": 1, + "req": 4, + "res": 3, + "question": 5, + "req.question": 1, + "subdomain": 10, + "@extractSubdomain": 1, + "question.name": 3, + "if": 102, + "and": 20, + "isARequest": 2, + "res.addRR": 2, + "subdomain.getAddress": 1, + "else": 53, + ".isEmpty": 1, + "isNSRequest": 2, + "true": 8, + "res.header.rcode": 1, + "res.send": 1, + "extractSubdomain": 1, + "name": 5, + "Subdomain.extract": 1, + "question.type": 2, + "is": 36, + "question.class": 2, + "mname": 2, + "rname": 2, + "serial": 2, + "parseInt": 5, + "new": 12, + "Date": 1, + ".getTime": 1, + "/": 44, + "refresh": 2, + "retry": 2, + "expire": 2, + "minimum": 2, + "dnsserver.createSOA": 1, + "exports.createServer": 1, + "address": 4, + "exports.Subdomain": 1, + "Subdomain": 4, + "@extract": 1, "return": 29, "unless": 19, - "window": 1, - "CoffeeScript.load": 2, - "url": 2, - "callback": 35, - "xhr": 2, - "new": 12, - "window.ActiveXObject": 1, - "or": 22, - "XMLHttpRequest": 1, - "xhr.open": 1, - "true": 8, - "xhr.overrideMimeType": 1, - "if": 102, - "of": 7, - "xhr.onreadystatechange": 1, - "xhr.readyState": 1, - "is": 36, - "xhr.status": 1, - "in": 32, + "name.toLowerCase": 1, + "offset": 4, + "name.length": 1, + "domain.length": 1, + "name.slice": 2, + "then": 24, + "null": 15, + "@for": 2, + "IPAddressSubdomain.pattern.test": 1, + "IPAddressSubdomain": 2, + "EncodedSubdomain.pattern.test": 1, + "EncodedSubdomain": 2, + "@subdomain": 1, + "@address": 2, + "@labels": 2, + ".split": 1, "[": 134, "]": 134, - "xhr.responseText": 1, - "else": 53, - "throw": 3, - "Error": 1, - "xhr.send": 1, - "null": 15, - "runScripts": 3, - "scripts": 2, - "document.getElementsByTagName": 1, - "coffees": 2, - "s": 10, + "@length": 3, + "@labels.length": 1, + "isEmpty": 1, + "getAddress": 3, + "@pattern": 2, + "///": 12, + "|": 21, + ".": 13, + "{": 31, + "}": 34, + "@labels.slice": 1, + ".join": 2, + "a": 2, + "z0": 2, + "decode": 2, + "exports.encode": 1, + "encode": 1, + "ip": 2, + "value": 25, "for": 14, - "when": 16, - "s.type": 1, + "byte": 2, "index": 4, - "length": 4, - "coffees.length": 1, - "do": 2, - "execute": 3, - "script": 7, + "in": 32, + "ip.split": 1, "+": 31, - ".type": 1, - "script.src": 2, - "script.innerHTML": 1, - "window.addEventListener": 1, - "addEventListener": 1, - "no": 3, - "attachEvent": 1, - "class": 11, - "Animal": 3, - "constructor": 6, - "@name": 2, - "move": 3, - "meters": 2, - "alert": 4, - "Snake": 2, - "extends": 6, - "super": 4, - "Horse": 2, - "sam": 1, - "tom": 1, - "sam.move": 1, - "tom.move": 1, + "<<": 1, + "*": 21, + ".toString": 3, + "PATTERN": 1, + "exports.decode": 1, + "string": 9, + "PATTERN.test": 1, + "i": 8, + "ip.push": 1, + "&": 4, + "xFF": 1, + "ip.join": 1, "#": 35, "fs": 2, "path": 3, @@ -15410,6 +15619,8 @@ "exports.RESERVED": 1, "exports.helpers": 2, "exports.compile": 1, + "code": 20, + "options": 16, "merge": 1, "try": 3, "js": 5, @@ -15421,6 +15632,7 @@ "err": 20, "err.message": 2, "options.filename": 5, + "throw": 3, "header": 1, "exports.tokens": 1, "exports.nodes": 1, @@ -15431,15 +15643,14 @@ "require.main": 1, "mainModule.filename": 4, "process.argv": 1, - "then": 24, "fs.realpathSync": 2, "mainModule.moduleCache": 1, - "and": 20, "mainModule.paths": 1, "._nodeModulePaths": 1, "path.dirname": 2, "path.extname": 1, "isnt": 7, + "or": 22, "mainModule._compile": 2, "exports.eval": 1, "code.trim": 1, @@ -15453,6 +15664,7 @@ "k": 4, "v": 4, "own": 2, + "of": 7, "sandbox.global": 1, "sandbox.root": 1, "sandbox.GLOBAL": 1, @@ -15470,6 +15682,7 @@ "_module.filename": 1, "r": 4, "Object.getOwnPropertyNames": 1, + "when": 16, "_require.paths": 1, "_module.paths": 1, "Module._nodeModulePaths": 1, @@ -15479,8 +15692,8 @@ "Module._resolveFilename": 1, "o": 4, "o.bare": 1, + "on": 3, "ensure": 1, - "value": 25, "vm.runInThisContext": 1, "vm.runInContext": 1, "lexer": 1, @@ -15494,12 +15707,10 @@ "setInput": 1, "upcomingInput": 1, "parser.yy": 1, - "console.log": 1, "number": 13, "opposite": 2, "square": 4, "x": 6, - "*": 21, "list": 2, "math": 1, "root": 1, @@ -15510,10 +15721,156 @@ "runners...": 1, "print": 1, "runners": 1, + "alert": 4, "elvis": 1, "cubes": 1, "math.cube": 1, "num": 2, + "async": 1, + "nack": 1, + "bufferLines": 3, + "pause": 2, + "sourceScriptEnv": 3, + "join": 8, + "exists": 5, + "basename": 2, + "resolve": 2, + "module.exports": 1, + "RackApplication": 1, + "@configuration": 1, + "@root": 8, + "@firstHost": 1, + "@logger": 1, + "@configuration.getLogger": 1, + "@readyCallbacks": 3, + "@quitCallbacks": 3, + "@statCallbacks": 3, + "ready": 1, + "callback": 35, + "@state": 11, + "@readyCallbacks.push": 1, + "@initialize": 2, + "quit": 1, + "@quitCallbacks.push": 1, + "@terminate": 2, + "queryRestartFile": 1, + "fs.stat": 1, + "stats": 1, + "@mtime": 5, + "false": 4, + "lastMtime": 2, + "stats.mtime.getTime": 1, + "setPoolRunOnceFlag": 1, + "@statCallbacks.length": 1, + "alwaysRestart": 2, + "@pool.runOnce": 1, + "statCallback": 2, + "@statCallbacks.push": 1, + "loadScriptEnvironment": 1, + "env": 18, + "async.reduce": 1, + "script": 7, + "scriptExists": 2, + "loadRvmEnvironment": 1, + "rvmrcExists": 2, + "rvm": 1, + "@configuration.rvmPath": 1, + "rvmExists": 2, + "libexecPath": 1, + "before": 2, + ".trim": 1, + "loadEnvironment": 1, + "@queryRestartFile": 2, + "@loadScriptEnvironment": 1, + "@configuration.env": 1, + "@loadRvmEnvironment": 1, + "initialize": 1, + "@quit": 3, + "@loadEnvironment": 1, + "@logger.error": 3, + "@pool": 2, + "nack.createPool": 1, + "size": 1, + ".POW_WORKERS": 1, + "@configuration.workers": 1, + "idle": 1, + ".POW_TIMEOUT": 1, + "@configuration.timeout": 1, + "@pool.stdout": 1, + "line": 6, + "@logger.info": 1, + "@pool.stderr": 1, + "@logger.warning": 1, + "@pool.on": 2, + "process": 2, + "@logger.debug": 2, + "readyCallback": 2, + "terminate": 1, + "@ready": 3, + "@pool.quit": 1, + "quitCallback": 2, + "handle": 1, + "next": 3, + "resume": 2, + "@setPoolRunOnceFlag": 1, + "@restartIfNecessary": 1, + "req.proxyMetaVariables": 1, + "SERVER_PORT": 1, + "@configuration.dstPort.toString": 1, + "@pool.proxy": 1, + "finally": 2, + "restart": 1, + "restartIfNecessary": 1, + "mtimeChanged": 2, + "@restart": 1, + "writeRvmBoilerplate": 1, + "powrc": 3, + "boilerplate": 2, + "@constructor.rvmBoilerplate": 1, + "fs.readFile": 1, + "contents": 2, + "contents.indexOf": 1, + "fs.writeFile": 1, + "@rvmBoilerplate": 1, + "CoffeeScript": 1, + "CoffeeScript.require": 1, + "CoffeeScript.eval": 1, + "options.bare": 2, + "eval": 2, + "CoffeeScript.compile": 2, + "CoffeeScript.run": 3, + "Function": 1, + "window": 1, + "CoffeeScript.load": 2, + "url": 2, + "xhr": 2, + "window.ActiveXObject": 1, + "XMLHttpRequest": 1, + "xhr.open": 1, + "xhr.overrideMimeType": 1, + "xhr.onreadystatechange": 1, + "xhr.readyState": 1, + "xhr.status": 1, + "xhr.responseText": 1, + "Error": 1, + "xhr.send": 1, + "runScripts": 3, + "scripts": 2, + "document.getElementsByTagName": 1, + "coffees": 2, + "s": 10, + "s.type": 1, + "length": 4, + "coffees.length": 1, + "do": 2, + "execute": 3, + ".type": 1, + "script.src": 2, + "script.innerHTML": 1, + "window.addEventListener": 1, + "addEventListener": 1, + "no": 3, + "attachEvent": 1, "Rewriter": 2, "INVERSES": 2, "count": 5, @@ -15525,7 +15882,6 @@ "opts": 1, "WHITESPACE.test": 1, "code.replace": 1, - "/": 44, "r/g": 1, ".replace": 3, "TRAILING_SPACES": 2, @@ -15559,9 +15915,6 @@ "parsed": 1, "tokens": 5, "form": 1, - "line": 6, - ".": 13, - "i": 8, "while": 4, "@chunk": 9, "i..": 1, @@ -15623,14 +15976,11 @@ "number.length": 1, "octalLiteral": 2, "/.exec": 2, - "parseInt": 5, - ".toString": 3, "binaryLiteral": 2, "b": 1, "stringToken": 1, "@chunk.charAt": 3, "SIMPLESTR.exec": 1, - "string": 9, "MULTILINER": 2, "@balancedString": 1, "<": 6, @@ -15638,7 +15988,6 @@ "@interpolateString": 2, "@escapeLines": 1, "octalEsc": 1, - "|": 21, "string.length": 1, "heredocToken": 1, "HEREDOC.exec": 1, @@ -15665,7 +16014,6 @@ "here": 3, "herecomment": 4, "Array": 1, - ".join": 2, "comment.length": 1, "jsToken": 1, "JSTOKEN.exec": 1, @@ -15719,7 +16067,6 @@ "attempt.length": 1, "indent.length": 1, "doc.replace": 2, - "///": 12, "///g": 1, "n/": 1, "tagParameters": 1, @@ -15745,12 +16092,9 @@ "OUTDENT": 1, "THROW": 1, "EXTENDS": 1, - "&": 4, - "false": 4, "delete": 1, "break": 1, "debugger": 1, - "finally": 2, "undefined": 1, "until": 1, "loop": 1, @@ -15832,195 +16176,17 @@ "BOOL": 1, "NOT_REGEX.concat": 1, "CALLABLE.concat": 1, - "async": 1, - "nack": 1, - "bufferLines": 3, - "pause": 2, - "sourceScriptEnv": 3, - "join": 8, - "exists": 5, - "basename": 2, - "resolve": 2, - "module.exports": 1, - "RackApplication": 1, - "@configuration": 1, - "@root": 8, - "@firstHost": 1, - "@logger": 1, - "@configuration.getLogger": 1, - "@readyCallbacks": 3, - "@quitCallbacks": 3, - "@statCallbacks": 3, - "ready": 1, - "@state": 11, - "@readyCallbacks.push": 1, - "@initialize": 2, - "quit": 1, - "@quitCallbacks.push": 1, - "@terminate": 2, - "queryRestartFile": 1, - "fs.stat": 1, - "stats": 1, - "@mtime": 5, - "lastMtime": 2, - "stats.mtime.getTime": 1, - "setPoolRunOnceFlag": 1, - "@statCallbacks.length": 1, - "alwaysRestart": 2, - "@pool.runOnce": 1, - "statCallback": 2, - "@statCallbacks.push": 1, - "loadScriptEnvironment": 1, - "env": 18, - "async.reduce": 1, - "scriptExists": 2, - "loadRvmEnvironment": 1, - "rvmrcExists": 2, - "rvm": 1, - "@configuration.rvmPath": 1, - "rvmExists": 2, - "libexecPath": 1, - "before": 2, - ".trim": 1, - "loadEnvironment": 1, - "@queryRestartFile": 2, - "@loadScriptEnvironment": 1, - "@configuration.env": 1, - "@loadRvmEnvironment": 1, - "initialize": 1, - "@quit": 3, - "@loadEnvironment": 1, - "@logger.error": 3, - "@pool": 2, - "nack.createPool": 1, - "size": 1, - ".POW_WORKERS": 1, - "@configuration.workers": 1, - "idle": 1, - ".POW_TIMEOUT": 1, - "@configuration.timeout": 1, - "@pool.stdout": 1, - "@logger.info": 1, - "@pool.stderr": 1, - "@logger.warning": 1, - "@pool.on": 2, - "process": 2, - "@logger.debug": 2, - "readyCallback": 2, - "terminate": 1, - "@ready": 3, - "@pool.quit": 1, - "quitCallback": 2, - "handle": 1, - "req": 4, - "res": 3, - "next": 3, - "resume": 2, - "@setPoolRunOnceFlag": 1, - "@restartIfNecessary": 1, - "req.proxyMetaVariables": 1, - "SERVER_PORT": 1, - "@configuration.dstPort.toString": 1, - "@pool.proxy": 1, - "restart": 1, - "restartIfNecessary": 1, - "mtimeChanged": 2, - "@restart": 1, - "writeRvmBoilerplate": 1, - "powrc": 3, - "boilerplate": 2, - "@constructor.rvmBoilerplate": 1, - "fs.readFile": 1, - "contents": 2, - "contents.indexOf": 1, - "fs.writeFile": 1, - "@rvmBoilerplate": 1, - "dnsserver": 1, - "exports.Server": 1, - "Server": 2, - "dnsserver.Server": 1, - "NS_T_A": 3, - "NS_T_NS": 2, - "NS_T_CNAME": 1, - "NS_T_SOA": 2, - "NS_C_IN": 5, - "NS_RCODE_NXDOMAIN": 2, - "domain": 6, - "@rootAddress": 2, - "@domain": 3, - "domain.toLowerCase": 1, - "@soa": 2, - "createSOA": 2, - "@on": 1, - "@handleRequest": 1, - "handleRequest": 1, - "question": 5, - "req.question": 1, - "subdomain": 10, - "@extractSubdomain": 1, - "question.name": 3, - "isARequest": 2, - "res.addRR": 2, - "subdomain.getAddress": 1, - ".isEmpty": 1, - "isNSRequest": 2, - "res.header.rcode": 1, - "res.send": 1, - "extractSubdomain": 1, - "name": 5, - "Subdomain.extract": 1, - "question.type": 2, - "question.class": 2, - "mname": 2, - "rname": 2, - "serial": 2, - "Date": 1, - ".getTime": 1, - "refresh": 2, - "retry": 2, - "expire": 2, - "minimum": 2, - "dnsserver.createSOA": 1, - "exports.createServer": 1, - "address": 4, - "exports.Subdomain": 1, - "Subdomain": 4, - "@extract": 1, - "name.toLowerCase": 1, - "offset": 4, - "name.length": 1, - "domain.length": 1, - "name.slice": 2, - "@for": 2, - "IPAddressSubdomain.pattern.test": 1, - "IPAddressSubdomain": 2, - "EncodedSubdomain.pattern.test": 1, - "EncodedSubdomain": 2, - "@subdomain": 1, - "@address": 2, - "@labels": 2, - ".split": 1, - "@length": 3, - "@labels.length": 1, - "isEmpty": 1, - "getAddress": 3, - "@pattern": 2, - "@labels.slice": 1, - "a": 2, - "z0": 2, - "decode": 2, - "exports.encode": 1, - "encode": 1, - "ip": 2, - "byte": 2, - "ip.split": 1, - "<<": 1, - "PATTERN": 1, - "exports.decode": 1, - "PATTERN.test": 1, - "ip.push": 1, - "xFF": 1, - "ip.join": 1 + "console.log": 1, + "Animal": 3, + "@name": 2, + "move": 3, + "meters": 2, + "Snake": 2, + "Horse": 2, + "sam": 1, + "tom": 1, + "sam.move": 1, + "tom.move": 1 }, "Common Lisp": { ";": 152, @@ -16149,8 +16315,35 @@ "names": 2, "collect": 1, "gensym": 1, + "*": 2, + "lisp": 1, + "package": 1, + "foo": 2, + "Header": 1, + "comment.": 4, + "defvar": 4, + "*foo*": 1, + "eval": 6, + "execute": 1, + "compile": 1, + "toplevel": 2, + "load": 1, + "add": 1, + "x": 47, + "optional": 2, + "y": 2, + "key": 1, + "z": 2, + "declare": 1, + "ignore": 1, + "Inline": 1, + "or": 4, "#": 15, "|": 9, + "Multi": 1, + "line": 2, + "b": 6, + "After": 1, "ESCUELA": 1, "POLITECNICA": 1, "SUPERIOR": 1, @@ -16170,7 +16363,6 @@ "Norvig": 1, "Global": 1, "variables": 6, - "defvar": 4, "*hypothesis": 1, "list*": 7, "*rule": 4, @@ -16182,7 +16374,6 @@ "no": 6, "bindings": 45, "lambda": 4, - "b": 6, "mapcar": 2, "man": 3, "luis": 1, @@ -16192,7 +16383,6 @@ "daniel": 1, "laura": 1, "facts": 1, - "x": 47, "aux": 3, "unify": 12, "hypothesis": 10, @@ -16263,7 +16453,6 @@ "E.49": 2, "XS.50": 2, "R2.": 1, - "eval": 6, "ifs": 1, "NOT": 2, "question": 1, @@ -16292,7 +16481,6 @@ "Auxiliary": 1, "Functions": 1, "cond": 3, - "or": 4, "get": 5, "lookup": 5, "occurs": 5, @@ -16317,7 +16505,6 @@ "anywhere": 6, "predicate": 8, "tree": 11, - "optional": 2, "so": 4, "far": 4, "atom": 3, @@ -16329,28 +16516,7 @@ "cons/cons": 1, "expresion": 2, "some": 1, - "EOF": 1, - "*": 2, - "lisp": 1, - "package": 1, - "foo": 2, - "Header": 1, - "comment.": 4, - "*foo*": 1, - "execute": 1, - "compile": 1, - "toplevel": 2, - "load": 1, - "add": 1, - "y": 2, - "key": 1, - "z": 2, - "declare": 1, - "ignore": 1, - "Inline": 1, - "Multi": 1, - "line": 2, - "After": 1 + "EOF": 1 }, "Component Pascal": { "MODULE": 2, @@ -16528,10 +16694,815 @@ "ObxFact.": 1 }, "Coq": { - "Inductive": 41, - "day": 9, - "Type": 86, + "Require": 17, + "Import": 11, + "Omega": 1, + "Relations": 2, + "Multiset": 2, + "SetoidList.": 1, + "Set": 4, + "Implicit": 15, + "Arguments.": 2, + "Local": 7, + "Notation": 39, + "nil.": 2, + "(": 1248, + "a": 207, + "..": 4, + "b": 89, + "[": 170, + "]": 173, + ")": 1249, + ".": 433, + "Section": 4, + "Permut.": 1, + "Variable": 7, + "A": 113, + "Type.": 3, + "eqA": 29, + "relation": 19, + "A.": 6, + "Hypothesis": 7, + "eqA_equiv": 1, + "Equivalence": 2, + "eqA.": 1, + "eqA_dec": 26, + "forall": 248, + "x": 266, + "y": 116, + "{": 39, + "}": 35, + "+": 227, + "Let": 8, + "emptyBag": 4, + "EmptyBag": 2, + "singletonBag": 10, + "SingletonBag": 2, + "_": 67, + "eqA_dec.": 2, + "Fixpoint": 36, + "list_contents": 30, + "l": 379, + "list": 78, + "multiset": 2, + "match": 70, + "with": 223, "|": 457, + "munion": 18, + "end.": 52, + "Lemma": 51, + "list_contents_app": 5, + "m": 201, + "meq": 15, + "Proof.": 208, + "simple": 7, + "induction": 81, + ";": 375, + "simpl": 116, + "auto": 73, + "datatypes.": 47, + "intros.": 27, + "apply": 340, + "meq_trans": 10, + "l0": 7, + "Qed.": 194, + "Definition": 46, + "permutation": 43, + "permut_refl": 1, + "l.": 26, + "unfold": 58, + "permut_sym": 4, + "l1": 89, + "l2": 73, + "-": 508, + "l1.": 5, + "intros": 258, + "symmetry": 4, + "trivial.": 14, + "permut_trans": 5, + "n": 369, + "n.": 44, + "permut_cons_eq": 3, + "meq_left": 1, + "meq_singleton": 1, + "auto.": 47, + "permut_cons": 5, + "permut_app": 1, + "using": 18, + "l3": 12, + "l4": 3, + "in": 221, + "*": 59, + "specialize": 6, + "H0": 16, + "a0.": 1, + "repeat": 11, + "rewrite": 241, + "*.": 110, + "destruct": 94, + "a0": 15, + "as": 77, + "Ha": 6, + "H": 76, + "decide": 1, + "replace": 4, + "trivial": 15, + "permut_add_inside_eq": 1, + "permut_add_cons_inside": 3, + "permut_add_inside": 1, + "permut_middle": 1, + "permut_refl.": 5, + "permut_sym_app": 1, + "intro": 27, + "do": 4, + "arith.": 8, + "permut_rev": 1, + "rev": 7, + "simpl.": 70, + "permut_add_cons_inside.": 1, + "<->": 31, + "app_nil_end": 1, + "Qed": 23, + "Some": 21, + "inversion": 104, + "results": 1, + "permut_conv_inv": 1, + "e": 53, + "l2.": 8, + "generalize": 13, + "plus_reg_l.": 1, + "permut_app_inv1": 1, + "clear": 7, + "H.": 100, + "list_contents_app.": 1, + "plus_reg_l": 1, + "multiplicity": 6, + "plus_comm": 3, + "plus_comm.": 3, + "Fact": 3, + "if_eqA_then": 1, + "B": 6, + "then": 9, + "else": 9, + "Type": 86, + "if": 10, + "if_eqA_refl": 3, + "b.": 14, + "decide_left": 1, + "Global": 5, + "Instance": 7, + "if_eqA": 1, + "contradict": 3, + "transitivity": 4, + "a2": 62, + "a1": 56, + "A1": 2, + "eauto": 10, + "if_eqA_rewrite_r": 1, + "A2": 4, + "Hxx": 1, + "multiplicity_InA": 4, + "InA": 8, + "<": 76, + "a.": 6, + "split": 14, + "right.": 9, + "IHl": 8, + "multiplicity_InA_O": 2, + "multiplicity_InA_S": 1, + "multiplicity_NoDupA": 1, + "NoDupA": 3, + "inversion_clear": 6, + "H1.": 31, + "EQ": 8, + "NEQ": 1, + "constructor": 6, + "omega": 7, + "Permutation": 38, + "is": 4, + "compatible": 1, + "permut_InA_InA": 3, + "e.": 15, + "multiplicity_InA.": 1, + "meq.": 2, + "permut_cons_InA": 3, + "permut_nil": 3, + "assert": 68, + "by": 7, + "Abs": 2, + "permut_length_1": 1, + "P": 32, + "discriminate.": 2, + "permut_length_2": 1, + "b1": 35, + "b2": 23, + "/": 41, + "P.": 5, + "left": 6, + "permut_length_1.": 2, + "red": 6, + "@if_eqA_rewrite_l": 2, + "omega.": 7, + "permut_length": 1, + "length": 21, + "InA_split": 1, + "h2": 1, + "t2": 51, + "H1": 18, + "H2": 12, + "subst": 7, + "app_length.": 2, + "plus_n_Sm": 1, + "f_equal.": 1, + "app_length": 1, + "IHl1": 1, + "permut_remove_hd": 1, + "revert": 5, + "f_equal": 1, + "if_eqA_rewrite_l": 1, + "NoDupA_equivlistA_permut": 1, + "Equivalence_Reflexive.": 1, + "change": 1, + "Equivalence_Reflexive": 1, + "Forall2": 2, + "permutation_Permutation": 1, + "exists": 60, + "Forall2.": 1, + "pose": 2, + "proof": 1, + "&": 21, + "IHP": 2, + "IHA": 2, + "Forall2_app_inv_r": 1, + "Hl1": 1, + "Hl2": 1, + "split.": 17, + "Permutation_cons_app": 3, + "Forall2_app": 1, + "Forall2_cons": 1, + "Heq": 8, + "Permutation_impl_permutation": 1, + "permut_eqA": 1, + "End": 15, + "Permut_permut.": 1, + "permut_right": 1, + "only": 3, + "parsing": 3, + "permut_tran": 1, + "Export": 10, + "Imp.": 1, + "Relations.": 1, + "Inductive": 41, + "tm": 43, + "tm_const": 45, + "nat": 108, + "tm_plus": 30, + "tm.": 3, + "Tactic": 9, + "tactic": 9, + "first": 18, + "ident": 9, + "c": 70, + "Case_aux": 38, + "Module": 11, + "SimpleArith0.": 2, + "eval": 8, + "t": 93, + "SimpleArith1.": 2, + "Reserved": 4, + "at": 17, + "level": 11, + "associativity": 7, + "Prop": 17, + "E_Const": 2, + "E_Plus": 2, + "t1": 48, + "n1": 45, + "n2": 41, + "plus": 10, + "where": 6, + "Example": 37, + "test_step_1": 1, + "ST_Plus1.": 2, + "ST_PlusConstConst.": 3, + "test_step_2": 1, + "ST_Plus2.": 2, + "Theorem": 115, + "step_deterministic": 1, + "partial_function": 6, + "step.": 3, + "partial_function.": 5, + "y1": 6, + "y2": 5, + "Hy1": 2, + "Hy2.": 2, + "dependent": 6, + "y2.": 3, + "step_cases": 4, + "Case": 51, + "Hy2": 3, + "SCase.": 3, + "SCase": 24, + "reflexivity.": 199, + "H2.": 20, + "Hy1.": 5, + "IHHy1": 2, + "assumption.": 61, + "SimpleArith2.": 1, + "value": 25, + "v_const": 4, + "step": 9, + "ST_PlusConstConst": 3, + "ST_Plus1": 2, + "v1": 7, + "subst.": 43, + "H3.": 5, + "0": 5, + "reflexivity": 16, + "assumption": 10, + "strong_progress": 2, + "R": 54, + "value_not_same_as_normal_form": 2, + "normal_form": 3, + "t.": 4, + "normal_form.": 2, + "v_funny.": 1, + "not.": 3, + "Temp1.": 1, + "Temp2.": 1, + "ST_Funny": 1, + "H0.": 24, + "H4.": 2, + "Temp3.": 1, + "Temp4.": 2, + "tm_true": 8, + "tm_false": 5, + "tm_if": 10, + "v_true": 1, + "v_false": 1, + "tm_false.": 3, + "ST_IfTrue": 1, + "ST_IfFalse": 1, + "ST_If": 1, + "t3": 6, + "bool_step_prop4": 1, + "bool_step_prop4_holds": 1, + "bool_step_prop4.": 2, + "ST_ShortCut.": 1, + "constructor.": 16, + "left.": 3, + "IHt1.": 1, + "t2.": 4, + "t3.": 2, + "ST_If.": 2, + "Temp5.": 1, + "stepmany": 4, + "refl_step_closure": 11, + "normalizing": 1, + "X": 191, + "IHt2": 3, + "H11": 2, + "H12": 2, + "H21": 3, + "H22": 2, + "nf_same_as_value": 3, + "H12.": 1, + "H22.": 1, + "H11.": 1, + "rsc_trans": 4, + "stepmany_congr_1": 1, + "stepmany_congr2": 1, + "rsc_R": 2, + "r": 11, + "eval__value": 1, + "HE.": 1, + "eval_cases": 1, + "HE": 1, + "v_const.": 1, + "List": 2, + "Setoid": 1, + "Compare_dec": 1, + "Morphisms.": 2, + "ListNotations.": 1, + "Permutation.": 2, + "perm_nil": 1, + "perm_skip": 1, + "Hint": 9, + "Constructors": 3, + "Permutation_nil": 2, + "HF.": 3, + "remember": 12, + "@nil": 1, + "HF": 2, + "discriminate": 3, + "||": 1, + "Permutation_nil_cons": 1, + "nil": 46, + "Permutation_refl": 1, + "exact": 4, + "IHl.": 7, + "Permutation_sym": 1, + "Hperm": 7, + "perm_trans": 1, + "Permutation_trans": 4, + "Proper": 5, + "Logic.eq": 2, + "@Permutation": 5, + "iff": 1, + "@In": 1, + "Permutation_in.": 2, + "Permutation_app_tail": 2, + "tl": 8, + "eapply": 8, + "Permutation_app_head": 2, + "app_comm_cons": 5, + "Permutation_app": 3, + "Hpermmm": 1, + "idtac": 1, + "try": 17, + "@app": 1, + "now": 24, + "Permutation_app.": 1, + "Permutation_add_inside": 1, + "Permutation_cons_append": 1, + "Resolve": 5, + "Permutation_cons_append.": 3, + "Permutation_app_comm": 3, + "app_nil_r": 1, + "app_assoc": 2, + "Permutation_middle": 2, + "Proof": 12, + "Permutation_rev": 3, + "1": 1, + "@rev": 1, + "2": 1, + "Permutation_length": 2, + "@length": 1, + "Permutation_length.": 1, + "Permutation_ind_bis": 2, + "Hnil": 1, + "Hskip": 3, + "Hswap": 2, + "Htrans.": 1, + "Htrans": 1, + "eauto.": 7, + "Ltac": 1, + "break_list": 5, + "injection": 4, + "Permutation_nil_app_cons": 1, + "Hp": 5, + "IH": 3, + "Permutation_middle.": 3, + "perm_swap.": 2, + "perm_swap": 1, + "eq_refl": 2, + "In_split": 1, + "Permutation_app_inv": 1, + "NoDup": 4, + "incl": 3, + "N.": 1, + "E": 7, + "Hx.": 5, + "In": 6, + "Hy": 14, + "N": 1, + "Hal": 1, + "Hl": 1, + "exfalso.": 1, + "Hx": 20, + "NoDup_Permutation_bis": 2, + "intuition.": 2, + "Permutation_NoDup": 1, + "Permutation_map": 1, + "Hf": 15, + "Hy.": 3, + "injective_bounded_surjective": 1, + "f": 108, + "injective": 6, + "set": 1, + "seq": 2, + "map": 4, + "x.": 3, + "in_map_iff.": 2, + "in_seq": 4, + "arith": 4, + "NoDup_cardinal_incl": 1, + "injective_map_NoDup": 2, + "seq_NoDup": 1, + "map_length": 1, + "in_map_iff": 1, + "nat_bijection_Permutation": 1, + "let": 3, + "BD.": 1, + "seq_NoDup.": 1, + "map_length.": 1, + "Injection": 1, + "Permutation_alt": 1, + "Alternative": 1, + "characterization": 1, + "of": 4, + "via": 1, + "nth_error": 7, + "and": 1, + "nth": 2, + "adapt": 4, + "S": 186, + "le_lt_dec": 9, + "pred": 3, + "adapt_injective": 1, + "adapt.": 2, + "EQ.": 2, + "LE": 11, + "LT": 14, + "eq_add_S": 2, + "Hf.": 1, + "Lt.le_lt_or_eq": 3, + "LE.": 3, + "lt": 3, + "LT.": 5, + "Lt.S_pred": 3, + "elim": 21, + "Lt.lt_not_le": 2, + "adapt_ok": 2, + "nth_error_app1": 1, + "nth_error_app2": 1, + "Minus.minus_Sn_m": 1, + "Permutation_nth_error": 2, + "fun": 17, + "IHP2": 1, + "g": 6, + "Hg": 2, + "E.": 2, + "L12": 2, + "plus_n_Sm.": 1, + "adapt_injective.": 1, + "nth_error_None": 4, + "Hn": 1, + "Hf2": 1, + "Hf3": 2, + "Lt.le_or_lt": 1, + "d": 6, + "Lt.lt_irrefl": 2, + "Lt.lt_le_trans": 2, + "Hf1": 1, + "congruence.": 1, + "Permutation_alt.": 1, + "Permutation_app_swap": 1, + "SfLib.": 2, + "STLC.": 1, + "ty": 7, + "ty_Bool": 10, + "ty_arrow": 7, + "ty.": 2, + "tm_var": 6, + "id": 7, + "tm_app": 7, + "tm_abs": 9, + "Id": 7, + "idB": 2, + "idBB": 2, + "idBBBB": 2, + "k": 7, + "v_abs": 1, + "T": 49, + "t_true": 1, + "t_false": 1, + "value.": 1, + "s": 13, + "beq_id": 14, + "ST_App2": 1, + "step_example3": 1, + "idB.": 1, + "rsc_step.": 2, + "ST_App1.": 2, + "ST_AppAbs.": 3, + "v_abs.": 2, + "rsc_refl.": 4, + "context": 1, + "partial_map": 4, + "Context.": 1, + "option": 6, + "empty": 3, + "None": 9, + "extend": 1, + "Gamma": 10, + "has_type": 4, + "appears_free_in": 1, + "S.": 1, + "HT": 1, + "T_Var.": 1, + "extend_neq": 1, + "Heqe.": 3, + "rename": 2, + "i": 11, + "into": 2, + "y.": 15, + "T_Abs.": 1, + "context_invariance...": 2, + "beq_id_eq": 4, + "Hafi.": 2, + "extend.": 2, + "IHt.": 1, + "x0": 14, + "Coiso1.": 2, + "Coiso2.": 3, + "HeqCoiso1.": 1, + "HeqCoiso2.": 1, + "beq_id_false_not_eq.": 1, + "ex_falso_quodlibet.": 1, + "preservation": 1, + "HT.": 1, + "substitution_preserves_typing": 1, + "T11.": 4, + "HT1.": 1, + "T_App": 2, + "IHHT1.": 1, + "IHHT2.": 1, + "tm_cases": 1, + "Ht": 1, + "Ht.": 3, + "IHt1": 2, + "T11": 2, + "T0": 2, + "ST_App2.": 1, + "ty_Bool.": 1, + "T.": 9, + "IHt3": 1, + "ST_IfTrue.": 1, + "ST_IfFalse.": 1, + "types_unique": 1, + "T1": 25, + "T12": 2, + "IHhas_type.": 1, + "IHhas_type1.": 1, + "IHhas_type2.": 1, + "Sorted.": 1, + "Mergesort.": 1, + "Basics.": 2, + "NatList.": 2, + "Playground1.": 5, + "natprod": 5, + "pair": 7, + "natprod.": 1, + "fst": 3, + "p": 81, + "snd": 3, + "swap_pair": 1, + "surjective_pairing": 1, + "count": 7, + "beq_nat": 24, + "v": 28, + "remove_one": 3, + "end": 16, + "test_remove_one1": 1, + "O": 98, + "O.": 5, + "remove_all": 2, + "bag": 3, + "true": 68, + "false": 48, + "app_ass": 1, + "natlist": 7, + "l3.": 1, + "cons": 26, + "remove_decreases_count": 1, + "ble_nat": 6, + "true.": 16, + "s.": 4, + "ble_n_Sn.": 1, + "IHs.": 2, + "natoption": 5, + "natoption.": 1, + "index": 3, + "option_elim": 2, + "o": 25, + "hd_opt": 8, + "test_hd_opt1": 2, + "None.": 2, + "test_hd_opt2": 2, + "option_elim_hd": 1, + "head": 1, + "beq_natlist": 5, + "bool": 38, + "r1": 2, + "v2": 2, + "r2": 2, + "test_beq_natlist1": 1, + "test_beq_natlist2": 1, + "beq_natlist_refl": 1, + "beq_nat_refl": 3, + "silly1": 1, + "eq1": 6, + "eq2.": 9, + "eq2": 1, + "silly2a": 1, + "q": 15, + "eq1.": 5, + "silly_ex": 1, + "evenb": 5, + "oddb": 5, + "silly3": 1, + "symmetry.": 2, + "rev_exercise": 1, + "rev_involutive.": 1, + "beq_nat_sym": 2, + "IHn": 12, + "Lists.": 1, + "X.": 4, + "h": 14, + "app": 5, + "snoc": 9, + "Arguments": 11, + "list123": 1, + "right": 2, + "test_repeat1": 1, + "nil_app": 1, + "rev_snoc": 1, + "snoc_with_append": 1, + "v.": 1, + "IHl1.": 1, + "prod": 3, + "Y": 38, + "Y.": 1, + "type_scope.": 1, + "combine": 3, + "lx": 4, + "ly": 4, + "tx": 2, + "tp": 2, + "xs": 7, + "plus3": 2, + "prod_curry": 3, + "Z": 11, + "prod_uncurry": 3, + "uncurry_uncurry": 1, + "curry_uncurry": 1, + "p.": 9, + "filter": 3, + "test": 4, + "countoddmembers": 1, + "fmostlytrue": 5, + "override": 5, + "ftrue": 1, + "false.": 12, + "override_example1": 1, + "override_example2": 1, + "override_example3": 1, + "override_example4": 1, + "override_example": 1, + "constfun": 1, + "unfold_example_bad": 1, + "m.": 21, + "plus3.": 1, + "override_eq": 1, + "f.": 1, + "override.": 2, + "override_neq": 1, + "x1": 11, + "x2": 3, + "k1": 5, + "k2": 4, + "x1.": 3, + "eq.": 11, + "silly4": 1, + "silly5": 1, + "sillyex1": 1, + "z": 14, + "j": 6, + "j.": 1, + "silly6": 1, + "contra.": 19, + "silly7": 1, + "sillyex2": 1, + "z.": 6, + "beq_nat_eq": 2, + "assertion": 3, + "Hl.": 1, + "IHm": 2, + "eq": 4, + "SSCase": 3, + "beq_nat_O_l": 1, + "beq_nat_O_r": 1, + "double_injective": 1, + "double": 2, + "fold_map": 2, + "fold": 1, + "total": 2, + "fold_map_correct": 1, + "fold_map.": 1, + "forallb": 4, + "andb": 8, + "existsb": 3, + "orb": 8, + "existsb2": 2, + "negb": 10, + "existsb_correct": 1, + "existsb2.": 1, + "index_okx": 1, + "mumble": 5, + "mumble.": 1, + "grumble": 3, + "day": 9, "monday": 5, "tuesday": 3, "wednesday": 3, @@ -16540,39 +17511,15 @@ "saturday": 3, "sunday": 2, "day.": 1, - "Definition": 46, "next_weekday": 3, - "(": 1248, - "d": 6, - ")": 1249, - "match": 70, - "with": 223, - "end.": 52, - "Example": 37, "test_next_weekday": 1, "tuesday.": 1, - "Proof.": 208, - "simpl.": 70, - "reflexivity.": 199, - "Qed.": 194, - "bool": 38, - "true": 68, - "false": 48, "bool.": 1, - "negb": 10, - "b": 89, - "andb": 8, - "b1": 35, - "b2": 23, - "orb": 8, "test_orb1": 1, - "true.": 16, "test_orb2": 1, - "false.": 12, "test_orb3": 1, "test_orb4": 1, "nandb": 5, - "end": 16, "test_nandb1": 1, "test_nandb2": 1, "test_nandb3": 1, @@ -16583,95 +17530,37 @@ "test_andb32": 1, "test_andb33": 1, "test_andb34": 1, - "Module": 11, - "Playground1.": 5, - "nat": 108, - "O": 98, - "S": 186, - "-": 508, "nat.": 4, - "pred": 3, - "n": 369, "minustwo": 1, - "Fixpoint": 36, - "evenb": 5, - "oddb": 5, - ".": 433, "test_oddb1": 1, "test_oddb2": 1, - "plus": 10, - "m": 201, "mult": 3, "minus": 3, - "_": 67, "exp": 2, "base": 3, "power": 2, - "p": 81, "factorial": 2, "test_factorial1": 1, - "Notation": 39, - "x": 266, - "y": 116, - "at": 17, - "level": 11, - "left": 6, - "associativity": 7, "nat_scope.": 3, - "beq_nat": 24, - "forall": 248, - "+": 227, - "n.": 44, - "Theorem": 115, "plus_O_n": 1, - "intros": 258, "plus_1_1": 1, "mult_0_1": 1, - "*": 59, - "O.": 5, "plus_id_example": 1, - "m.": 21, - "H.": 100, - "rewrite": 241, "plus_id_exercise": 1, - "o": 25, "o.": 4, - "H": 76, "mult_0_plus": 1, "plus_O_n.": 1, "mult_1_plus": 1, "plus_1_1.": 1, "mult_1": 1, - "induction": 81, - "as": 77, - "[": 170, "plus_1_neq_0": 1, - "destruct": 94, - "]": 173, - "Case": 51, - "IHn": 12, - "plus_comm": 3, "plus_distr.": 1, - "beq_nat_refl": 3, "plus_rearrange": 1, - "q": 15, "q.": 2, - "assert": 68, - "plus_comm.": 3, "plus_swap": 2, - "p.": 9, "plus_assoc.": 4, - "H2": 12, - "H2.": 20, "plus_swap.": 2, - "<->": 31, - "IHm": 2, - "reflexivity": 16, - "Qed": 23, "mult_comm": 2, - "Proof": 12, - "0": 5, - "simpl": 116, "mult_0_r.": 4, "mult_distr": 1, "mult_1_distr.": 1, @@ -16680,16 +17569,12 @@ "zero_nbeq_S": 1, "andb_false_r": 1, "plus_ble_compat_1": 1, - "ble_nat": 6, "IHp.": 2, "S_nbeq_0": 1, "mult_1_1": 1, "plus_0_r.": 1, "all3_spec": 1, - "c": 70, "c.": 5, - "b.": 14, - "Lemma": 51, "mult_plus_1": 1, "IHm.": 1, "mult_mult": 1, @@ -16697,11 +17582,8 @@ "mult_plus_1.": 1, "mult_plus_distr_r": 1, "mult_mult.": 3, - "H1": 18, "plus_assoc": 1, - "H1.": 31, "H3": 4, - "H3.": 5, "mult_assoc": 1, "mult_plus_distr_r.": 1, "bin": 9, @@ -16712,150 +17594,71 @@ "incbin": 2, "bin2un": 3, "bin_comm": 1, - "End": 15, - "Require": 17, - "Import": 11, - "List": 2, - "Multiset": 2, "PermutSetoid": 1, - "Relations": 2, "Sorting.": 1, - "Section": 4, "defs.": 2, - "Variable": 7, - "A": 113, - "Type.": 3, "leA": 25, - "relation": 19, - "A.": 6, - "eqA": 29, - "Let": 8, "gtA": 1, - "y.": 15, - "Hypothesis": 7, "leA_dec": 4, - "{": 39, - "}": 35, - "eqA_dec": 26, "leA_refl": 1, "leA_trans": 2, - "z": 14, - "z.": 6, "leA_antisym": 1, - "Hint": 9, - "Resolve": 5, "leA_refl.": 1, "Immediate": 1, "leA_antisym.": 1, - "emptyBag": 4, - "EmptyBag": 2, - "singletonBag": 10, - "SingletonBag": 2, - "eqA_dec.": 2, "Tree": 24, "Tree_Leaf": 9, "Tree_Node": 11, "Tree.": 1, "leA_Tree": 16, - "a": 207, - "t": 93, "True": 1, - "T1": 25, "T2": 20, "leA_Tree_Leaf": 5, "Tree_Leaf.": 1, - ";": 375, - "auto": 73, - "datatypes.": 47, "leA_Tree_Node": 1, "G": 6, "is_heap": 18, - "Prop": 17, "nil_is_heap": 5, "node_is_heap": 7, "invert_heap": 3, - "/": 41, "T2.": 1, - "inversion": 104, "is_heap_rect": 1, - "P": 32, - "T": 49, - "T.": 9, - "simple": 7, "PG": 2, "PD": 2, "PN.": 2, - "elim": 21, "H4": 7, - "intros.": 27, - "apply": 340, "X0": 2, "is_heap_rec": 1, - "Set": 4, - "X": 191, "low_trans": 3, "merge_lem": 3, - "l1": 89, - "l2": 73, - "list": 78, "merge_exist": 5, - "l": 379, "Sorted": 5, - "meq": 15, - "list_contents": 30, - "munion": 18, "HdRel": 4, - "l2.": 8, - "Morphisms.": 2, - "Instance": 7, - "Equivalence": 2, "@meq": 4, - "constructor": 6, "red.": 1, "meq_trans.": 1, "Defined.": 1, - "Proper": 5, "@munion": 1, - "now": 24, "meq_congr.": 1, "merge": 5, "fix": 2, - "l1.": 5, - "rename": 2, - "into": 2, - "l.": 26, - "revert": 5, - "H0.": 24, - "a0": 15, - "l0": 7, "Sorted_inv": 2, - "in": 221, - "H0": 16, - "clear": 7, "merge0.": 2, - "using": 18, "cons_sort": 2, "cons_leA": 2, "munion_ass.": 2, "cons_leA.": 2, "@HdRel_inv": 2, - "trivial": 15, "merge0": 1, "setoid_rewrite": 2, "munion_ass": 1, "munion_comm.": 2, - "repeat": 11, "munion_comm": 1, "contents": 12, - "multiset": 2, - "t1": 48, - "t2": 51, "equiv_Tree": 1, "insert_spec": 3, "insert_exist": 4, "insert": 2, - "unfold": 58, - "T0": 2, "treesort_twist1": 1, "T3": 2, "HeapT3": 1, @@ -16866,17 +17669,12 @@ "build_heap": 3, "heap_exist": 3, "list_to_heap": 2, - "nil": 46, - "exact": 4, "nil_is_heap.": 1, - "i": 11, - "meq_trans": 10, "meq_right": 2, "meq_sym": 2, "flat_spec": 3, "flat_exist": 3, "heap_to_list": 2, - "h": 14, "s1": 20, "i1": 15, "m1": 1, @@ -16886,13 +17684,76 @@ "meq_congr": 1, "munion_rotate.": 1, "treesort": 1, - "&": 21, - "permutation": 43, - "intro": 27, "permutation.": 1, - "exists": 60, - "Export": 10, - "SfLib.": 2, + "Logic.": 1, + "Prop.": 1, + "next_nat_partial_function": 1, + "next_nat.": 1, + "Q.": 2, + "le_not_a_partial_function": 1, + "le": 1, + "Nonsense.": 4, + "le_n.": 6, + "le_S.": 4, + "total_relation_not_partial_function": 1, + "total_relation": 1, + "total_relation1.": 2, + "empty_relation_not_partial_funcion": 1, + "empty_relation.": 1, + "reflexive": 5, + "le_reflexive": 1, + "le.": 4, + "reflexive.": 1, + "transitive": 8, + "le_trans": 4, + "Hnm": 3, + "Hmo.": 4, + "Hnm.": 3, + "IHHmo.": 1, + "lt_trans": 4, + "lt.": 2, + "transitive.": 1, + "le_S": 6, + "Hm": 1, + "le_Sn_le": 2, + "<=>": 12, + "le_S_n": 2, + "Sn_le_Sm__n_le_m.": 1, + "le_Sn_n": 5, + "not": 1, + "TODO": 1, + "Hmo": 1, + "symmetric": 2, + "antisymmetric": 3, + "le_antisymmetric": 1, + "Sn_le_Sm__n_le_m": 2, + "IHb": 1, + "equivalence": 1, + "order": 2, + "preorder": 1, + "le_order": 1, + "order.": 1, + "le_reflexive.": 1, + "le_antisymmetric.": 1, + "le_trans.": 1, + "clos_refl_trans": 8, + "rt_step": 1, + "rt_refl": 1, + "rt_trans": 3, + "next_nat_closure_is_le": 1, + "next_nat": 1, + "rt_refl.": 2, + "IHle.": 1, + "rt_step.": 2, + "nn.": 1, + "IHclos_refl_trans1.": 2, + "IHclos_refl_trans2.": 2, + "rsc_refl": 1, + "rsc_step": 4, + "r.": 3, + "IHrefl_step_closure": 1, + "rtc_rsc_coincide": 1, + "IHrefl_step_closure.": 1, "AExp.": 2, "aexp": 30, "ANum": 18, @@ -16909,9 +17770,6 @@ "BAnd": 10, "bexp.": 1, "aeval": 46, - "e": 53, - "a1": 56, - "a2": 62, "test_aeval1": 1, "beval": 16, "optimize_0plus": 15, @@ -16919,22 +17777,13 @@ "e1": 58, "test_optimize_0plus": 1, "optimize_0plus_sound": 4, - "e.": 15, "e1.": 1, - "SCase": 24, - "SSCase": 3, "IHe2.": 10, "IHe1.": 11, "aexp_cases": 3, - "try": 17, "IHe1": 6, "IHe2": 6, "optimize_0plus_all": 2, - "Tactic": 9, - "tactic": 9, - "first": 18, - "ident": 9, - "Case_aux": 38, "optimize_0plus_all_sound": 1, "bexp_cases": 4, "optimize_and": 5, @@ -16944,13 +17793,9 @@ "aevalR": 18, "E_Anum": 1, "E_APlus": 2, - "n1": 45, - "n2": 41, "E_AMinus": 2, "E_AMult": 2, - "Reserved": 4, "E_ANum": 1, - "where": 6, "bevalR": 11, "E_BTrue": 1, "E_BFalse": 1, @@ -16959,49 +17804,31 @@ "E_BNot": 1, "E_BAnd": 1, "aeval_iff_aevalR": 9, - "split.": 17, - "subst": 7, - "generalize": 13, - "dependent": 6, "IHa1": 1, "IHa2": 1, "beval_iff_bevalR": 1, - "*.": 110, - "subst.": 43, "IHbevalR": 1, "IHbevalR1": 1, "IHbevalR2": 1, - "a.": 6, - "constructor.": 16, - "<": 76, - "remember": 12, "IHa.": 1, "IHa1.": 1, "IHa2.": 1, "silly_presburger_formula": 1, - "<=>": 12, "3": 2, - "omega": 7, - "Id": 7, - "id": 7, "id.": 1, - "beq_id": 14, "id1": 2, "id2": 2, "beq_id_refl": 1, "i.": 2, "beq_nat_refl.": 1, - "beq_id_eq": 4, "i2.": 8, "i1.": 3, - "beq_nat_eq": 2, "beq_id_false_not_eq": 1, "C.": 3, "n0": 5, "beq_false_not_eq": 1, "not_eq_beq_id_false": 1, "not_eq_beq_false.": 1, - "beq_nat_sym": 2, "AId": 4, "com_cases": 1, "SKIP": 5, @@ -17027,34 +17854,25 @@ "E_IfFalse": 1, "assignment": 1, "command": 2, - "if": 10, "st1": 2, "IHi1": 3, "Heqst1": 1, "Hceval.": 4, "Hceval": 2, - "assumption.": 61, "bval": 2, "ceval_step": 3, - "Some": 21, "ceval_step_more": 7, - "x1.": 3, - "omega.": 7, "x2.": 2, "IHHce.": 2, "%": 3, "IHHce1.": 1, "IHHce2.": 1, - "x0": 14, "plus2": 1, "nx": 3, - "Y": 38, "ny": 2, "XtimesYinZ": 1, - "Z": 11, "ny.": 1, "loop": 2, - "contra.": 19, "loopdef.": 1, "Heqloopdef.": 8, "contra1.": 1, @@ -17073,8 +17891,6 @@ "noWhilesAss.": 1, "noWhilesSeq.": 1, "IHc1.": 2, - "auto.": 47, - "eauto": 10, "andb_true_elim1": 4, "IHc2.": 2, "andb_true_elim2": 4, @@ -17087,17 +17903,10 @@ "IHc1": 2, "IHc2": 2, "H5.": 1, - "x1": 11, - "r": 11, - "r.": 3, - "symmetry": 4, "Heqr.": 1, - "H4.": 2, - "s": 13, "Heqr": 3, "H8.": 1, "H10": 1, - "assumption": 10, "beval_short_circuit": 5, "beval_short_circuit_eqv": 1, "sinstr": 8, @@ -17110,14 +17919,12 @@ "s_execute": 21, "stack": 7, "prog": 2, - "cons": 26, "al": 3, "bl": 3, "s_execute1": 1, "empty_state": 2, "s_execute2": 1, "s_compile": 36, - "v": 28, "s_compile1": 1, "execute_theorem": 1, "other": 20, @@ -17136,54 +17943,37 @@ "eq_nat_dec.": 1, "Scheme": 1, "le_ind": 1, - "replace": 4, "le_n": 4, - "fun": 17, "refl_equal": 4, "pattern": 2, "case": 2, - "trivial.": 14, "contradiction": 8, - "le_Sn_n": 5, - "le_S": 6, - "Heq": 8, "m0": 1, "HeqS": 3, - "injection": 4, "HeqS.": 2, "eq_rect_eq_nat.": 1, "IHp": 2, "dep_pair_intro": 2, - "Hx": 20, - "Hy": 14, "<=n),>": 1, "x=": 1, "exist": 7, - "Hy.": 3, "Heq.": 6, "le_uniqueness_proof": 1, "Hy0": 1, "card": 2, - "f": 108, "card_interval": 1, "<=n}>": 1, "proj1_sig": 1, "proj2_sig": 1, - "Hp": 5, "Hq": 3, "Hpq.": 1, "Hmn.": 1, "Hmn": 1, "interval_dec": 1, - "left.": 3, "dep_pair_intro.": 3, - "right.": 9, - "discriminate": 3, - "le_Sn_le": 2, "eq_S.": 1, "Hneq.": 2, "card_inj_aux": 1, - "g": 6, "False.": 1, "Hfbound": 1, "Hfinj": 1, @@ -17192,14 +17982,8 @@ "Hfx": 2, "le_n_O_eq.": 2, "Hfbound.": 2, - "Hx.": 5, - "le_lt_dec": 9, "xSn": 21, - "then": 9, - "else": 9, - "is": 4, "bounded": 1, - "injective": 6, "Hlefx": 1, "Hgefx": 1, "Hlefy": 1, @@ -17229,13 +18013,10 @@ "Heqx": 4, "Hle.": 1, "le_not_lt": 1, - "lt_trans": 4, "lt_n_Sn.": 1, "Hlt.": 1, "lt_irrefl": 2, "lt_le_trans": 1, - "pose": 2, - "let": 3, "Hneqx": 1, "Hneqy": 1, "Heqg": 1, @@ -17248,622 +18029,7 @@ "<=m}>": 1, "card_inj": 1, "interval_dec.": 1, - "card_interval.": 2, - "Basics.": 2, - "NatList.": 2, - "natprod": 5, - "pair": 7, - "natprod.": 1, - "fst": 3, - "snd": 3, - "swap_pair": 1, - "surjective_pairing": 1, - "count": 7, - "remove_one": 3, - "test_remove_one1": 1, - "remove_all": 2, - "bag": 3, - "app_ass": 1, - "l3": 12, - "natlist": 7, - "l3.": 1, - "remove_decreases_count": 1, - "s.": 4, - "ble_n_Sn.": 1, - "IHs.": 2, - "natoption": 5, - "None": 9, - "natoption.": 1, - "index": 3, - "option_elim": 2, - "hd_opt": 8, - "test_hd_opt1": 2, - "None.": 2, - "test_hd_opt2": 2, - "option_elim_hd": 1, - "head": 1, - "beq_natlist": 5, - "v1": 7, - "r1": 2, - "v2": 2, - "r2": 2, - "test_beq_natlist1": 1, - "test_beq_natlist2": 1, - "beq_natlist_refl": 1, - "IHl.": 7, - "silly1": 1, - "eq1": 6, - "eq2.": 9, - "eq2": 1, - "silly2a": 1, - "eq1.": 5, - "silly_ex": 1, - "silly3": 1, - "symmetry.": 2, - "rev_exercise": 1, - "rev_involutive.": 1, - "Setoid": 1, - "Compare_dec": 1, - "ListNotations.": 1, - "Implicit": 15, - "Arguments.": 2, - "Permutation.": 2, - "Permutation": 38, - "perm_nil": 1, - "perm_skip": 1, - "Local": 7, - "Constructors": 3, - "Permutation_nil": 2, - "HF.": 3, - "@nil": 1, - "HF": 2, - "||": 1, - "Permutation_nil_cons": 1, - "discriminate.": 2, - "Permutation_refl": 1, - "Permutation_sym": 1, - "Hperm": 7, - "perm_trans": 1, - "Permutation_trans": 4, - "Logic.eq": 2, - "@Permutation": 5, - "iff": 1, - "@In": 1, - "red": 6, - "Permutation_in.": 2, - "Permutation_app_tail": 2, - "tl": 8, - "eapply": 8, - "Permutation_app_head": 2, - "app_comm_cons": 5, - "Permutation_app": 3, - "Hpermmm": 1, - "idtac": 1, - "Global": 5, - "@app": 1, - "Permutation_app.": 1, - "Permutation_add_inside": 1, - "Permutation_cons_append": 1, - "IHl": 8, - "Permutation_cons_append.": 3, - "Permutation_app_comm": 3, - "app_nil_r": 1, - "app_assoc": 2, - "Permutation_cons_app": 3, - "Permutation_middle": 2, - "Permutation_rev": 3, - "rev": 7, - "1": 1, - "@rev": 1, - "2": 1, - "Permutation_length": 2, - "length": 21, - "transitivity": 4, - "@length": 1, - "Permutation_length.": 1, - "Permutation_ind_bis": 2, - "Hnil": 1, - "Hskip": 3, - "Hswap": 2, - "Htrans.": 1, - "Htrans": 1, - "eauto.": 7, - "Ltac": 1, - "break_list": 5, - "Permutation_nil_app_cons": 1, - "l4": 3, - "P.": 5, - "IH": 3, - "Permutation_middle.": 3, - "perm_swap.": 2, - "perm_swap": 1, - "eq_refl": 2, - "In_split": 1, - "Permutation_app_inv": 1, - "NoDup": 4, - "incl": 3, - "N.": 1, - "E": 7, - "Ha": 6, - "In": 6, - "N": 1, - "Hal": 1, - "Hl": 1, - "exfalso.": 1, - "NoDup_Permutation_bis": 2, - "inversion_clear": 6, - "intuition.": 2, - "Permutation_NoDup": 1, - "Permutation_map": 1, - "Hf": 15, - "injective_bounded_surjective": 1, - "set": 1, - "seq": 2, - "map": 4, - "x.": 3, - "in_map_iff.": 2, - "in_seq": 4, - "arith": 4, - "NoDup_cardinal_incl": 1, - "injective_map_NoDup": 2, - "seq_NoDup": 1, - "map_length": 1, - "by": 7, - "in_map_iff": 1, - "split": 14, - "nat_bijection_Permutation": 1, - "BD.": 1, - "seq_NoDup.": 1, - "map_length.": 1, - "Injection": 1, - "Permutation_alt": 1, - "Alternative": 1, - "characterization": 1, - "of": 4, - "via": 1, - "nth_error": 7, - "and": 1, - "nth": 2, - "adapt": 4, - "adapt_injective": 1, - "adapt.": 2, - "EQ.": 2, - "LE": 11, - "LT": 14, - "eq_add_S": 2, - "Hf.": 1, - "Lt.le_lt_or_eq": 3, - "LE.": 3, - "EQ": 8, - "lt": 3, - "LT.": 5, - "Lt.S_pred": 3, - "Lt.lt_not_le": 2, - "adapt_ok": 2, - "nth_error_app1": 1, - "nth_error_app2": 1, - "arith.": 8, - "Minus.minus_Sn_m": 1, - "Permutation_nth_error": 2, - "IHP": 2, - "IHP2": 1, - "Hg": 2, - "E.": 2, - "L12": 2, - "app_length.": 2, - "plus_n_Sm.": 1, - "adapt_injective.": 1, - "nth_error_None": 4, - "Hn": 1, - "Hf2": 1, - "Hf3": 2, - "Lt.le_or_lt": 1, - "Lt.lt_irrefl": 2, - "Lt.lt_le_trans": 2, - "Hf1": 1, - "do": 4, - "congruence.": 1, - "Permutation_alt.": 1, - "Permutation_app_swap": 1, - "only": 3, - "parsing": 3, - "Omega": 1, - "SetoidList.": 1, - "nil.": 2, - "..": 4, - "Permut.": 1, - "eqA_equiv": 1, - "eqA.": 1, - "list_contents_app": 5, - "permut_refl": 1, - "permut_sym": 4, - "permut_trans": 5, - "permut_cons_eq": 3, - "meq_left": 1, - "meq_singleton": 1, - "permut_cons": 5, - "permut_app": 1, - "specialize": 6, - "a0.": 1, - "decide": 1, - "permut_add_inside_eq": 1, - "permut_add_cons_inside": 3, - "permut_add_inside": 1, - "permut_middle": 1, - "permut_refl.": 5, - "permut_sym_app": 1, - "permut_rev": 1, - "permut_add_cons_inside.": 1, - "app_nil_end": 1, - "results": 1, - "permut_conv_inv": 1, - "plus_reg_l.": 1, - "permut_app_inv1": 1, - "list_contents_app.": 1, - "plus_reg_l": 1, - "multiplicity": 6, - "Fact": 3, - "if_eqA_then": 1, - "B": 6, - "if_eqA_refl": 3, - "decide_left": 1, - "if_eqA": 1, - "contradict": 3, - "A1": 2, - "if_eqA_rewrite_r": 1, - "A2": 4, - "Hxx": 1, - "multiplicity_InA": 4, - "InA": 8, - "multiplicity_InA_O": 2, - "multiplicity_InA_S": 1, - "multiplicity_NoDupA": 1, - "NoDupA": 3, - "NEQ": 1, - "compatible": 1, - "permut_InA_InA": 3, - "multiplicity_InA.": 1, - "meq.": 2, - "permut_cons_InA": 3, - "permut_nil": 3, - "Abs": 2, - "permut_length_1": 1, - "permut_length_2": 1, - "permut_length_1.": 2, - "@if_eqA_rewrite_l": 2, - "permut_length": 1, - "InA_split": 1, - "h2": 1, - "plus_n_Sm": 1, - "f_equal.": 1, - "app_length": 1, - "IHl1": 1, - "permut_remove_hd": 1, - "f_equal": 1, - "if_eqA_rewrite_l": 1, - "NoDupA_equivlistA_permut": 1, - "Equivalence_Reflexive.": 1, - "change": 1, - "Equivalence_Reflexive": 1, - "Forall2": 2, - "permutation_Permutation": 1, - "Forall2.": 1, - "proof": 1, - "IHA": 2, - "Forall2_app_inv_r": 1, - "Hl1": 1, - "Hl2": 1, - "Forall2_app": 1, - "Forall2_cons": 1, - "Permutation_impl_permutation": 1, - "permut_eqA": 1, - "Permut_permut.": 1, - "permut_right": 1, - "permut_tran": 1, - "Lists.": 1, - "X.": 4, - "app": 5, - "snoc": 9, - "Arguments": 11, - "list123": 1, - "right": 2, - "test_repeat1": 1, - "nil_app": 1, - "rev_snoc": 1, - "snoc_with_append": 1, - "v.": 1, - "IHl1.": 1, - "prod": 3, - "Y.": 1, - "type_scope.": 1, - "combine": 3, - "lx": 4, - "ly": 4, - "tx": 2, - "ty": 7, - "tp": 2, - "option": 6, - "xs": 7, - "plus3": 2, - "prod_curry": 3, - "prod_uncurry": 3, - "uncurry_uncurry": 1, - "curry_uncurry": 1, - "filter": 3, - "test": 4, - "countoddmembers": 1, - "k": 7, - "fmostlytrue": 5, - "override": 5, - "ftrue": 1, - "override_example1": 1, - "override_example2": 1, - "override_example3": 1, - "override_example4": 1, - "override_example": 1, - "constfun": 1, - "unfold_example_bad": 1, - "plus3.": 1, - "override_eq": 1, - "f.": 1, - "override.": 2, - "override_neq": 1, - "x2": 3, - "k1": 5, - "k2": 4, - "eq.": 11, - "silly4": 1, - "silly5": 1, - "sillyex1": 1, - "j": 6, - "j.": 1, - "silly6": 1, - "silly7": 1, - "sillyex2": 1, - "assertion": 3, - "Hl.": 1, - "eq": 4, - "beq_nat_O_l": 1, - "beq_nat_O_r": 1, - "double_injective": 1, - "double": 2, - "fold_map": 2, - "fold": 1, - "total": 2, - "fold_map_correct": 1, - "fold_map.": 1, - "forallb": 4, - "existsb": 3, - "existsb2": 2, - "existsb_correct": 1, - "existsb2.": 1, - "index_okx": 1, - "mumble": 5, - "mumble.": 1, - "grumble": 3, - "Logic.": 1, - "Prop.": 1, - "partial_function": 6, - "R": 54, - "y1": 6, - "y2": 5, - "y2.": 3, - "next_nat_partial_function": 1, - "next_nat.": 1, - "partial_function.": 5, - "Q.": 2, - "le_not_a_partial_function": 1, - "le": 1, - "not.": 3, - "Nonsense.": 4, - "le_n.": 6, - "le_S.": 4, - "total_relation_not_partial_function": 1, - "total_relation": 1, - "total_relation1.": 2, - "empty_relation_not_partial_funcion": 1, - "empty_relation.": 1, - "reflexive": 5, - "le_reflexive": 1, - "le.": 4, - "reflexive.": 1, - "transitive": 8, - "le_trans": 4, - "Hnm": 3, - "Hmo.": 4, - "Hnm.": 3, - "IHHmo.": 1, - "lt.": 2, - "transitive.": 1, - "Hm": 1, - "le_S_n": 2, - "Sn_le_Sm__n_le_m.": 1, - "not": 1, - "TODO": 1, - "Hmo": 1, - "symmetric": 2, - "antisymmetric": 3, - "le_antisymmetric": 1, - "Sn_le_Sm__n_le_m": 2, - "IHb": 1, - "equivalence": 1, - "order": 2, - "preorder": 1, - "le_order": 1, - "order.": 1, - "le_reflexive.": 1, - "le_antisymmetric.": 1, - "le_trans.": 1, - "clos_refl_trans": 8, - "rt_step": 1, - "rt_refl": 1, - "rt_trans": 3, - "next_nat_closure_is_le": 1, - "next_nat": 1, - "rt_refl.": 2, - "IHle.": 1, - "rt_step.": 2, - "nn.": 1, - "IHclos_refl_trans1.": 2, - "IHclos_refl_trans2.": 2, - "refl_step_closure": 11, - "rsc_refl": 1, - "rsc_step": 4, - "rsc_R": 2, - "rsc_refl.": 4, - "rsc_trans": 4, - "IHrefl_step_closure": 1, - "rtc_rsc_coincide": 1, - "IHrefl_step_closure.": 1, - "Imp.": 1, - "Relations.": 1, - "tm": 43, - "tm_const": 45, - "tm_plus": 30, - "tm.": 3, - "SimpleArith0.": 2, - "eval": 8, - "SimpleArith1.": 2, - "E_Const": 2, - "E_Plus": 2, - "test_step_1": 1, - "ST_Plus1.": 2, - "ST_PlusConstConst.": 3, - "test_step_2": 1, - "ST_Plus2.": 2, - "step_deterministic": 1, - "step.": 3, - "Hy1": 2, - "Hy2.": 2, - "step_cases": 4, - "Hy2": 3, - "SCase.": 3, - "Hy1.": 5, - "IHHy1": 2, - "SimpleArith2.": 1, - "value": 25, - "v_const": 4, - "step": 9, - "ST_PlusConstConst": 3, - "ST_Plus1": 2, - "strong_progress": 2, - "value_not_same_as_normal_form": 2, - "normal_form": 3, - "t.": 4, - "normal_form.": 2, - "v_funny.": 1, - "Temp1.": 1, - "Temp2.": 1, - "ST_Funny": 1, - "Temp3.": 1, - "Temp4.": 2, - "tm_true": 8, - "tm_false": 5, - "tm_if": 10, - "v_true": 1, - "v_false": 1, - "tm_false.": 3, - "ST_IfTrue": 1, - "ST_IfFalse": 1, - "ST_If": 1, - "t3": 6, - "bool_step_prop4": 1, - "bool_step_prop4_holds": 1, - "bool_step_prop4.": 2, - "ST_ShortCut.": 1, - "IHt1.": 1, - "t2.": 4, - "t3.": 2, - "ST_If.": 2, - "Temp5.": 1, - "stepmany": 4, - "normalizing": 1, - "IHt2": 3, - "H11": 2, - "H12": 2, - "H21": 3, - "H22": 2, - "nf_same_as_value": 3, - "H12.": 1, - "H22.": 1, - "H11.": 1, - "stepmany_congr_1": 1, - "stepmany_congr2": 1, - "eval__value": 1, - "HE.": 1, - "eval_cases": 1, - "HE": 1, - "v_const.": 1, - "Sorted.": 1, - "Mergesort.": 1, - "STLC.": 1, - "ty_Bool": 10, - "ty_arrow": 7, - "ty.": 2, - "tm_var": 6, - "tm_app": 7, - "tm_abs": 9, - "idB": 2, - "idBB": 2, - "idBBBB": 2, - "v_abs": 1, - "t_true": 1, - "t_false": 1, - "value.": 1, - "ST_App2": 1, - "step_example3": 1, - "idB.": 1, - "rsc_step.": 2, - "ST_App1.": 2, - "ST_AppAbs.": 3, - "v_abs.": 2, - "context": 1, - "partial_map": 4, - "Context.": 1, - "empty": 3, - "extend": 1, - "Gamma": 10, - "has_type": 4, - "appears_free_in": 1, - "S.": 1, - "HT": 1, - "T_Var.": 1, - "extend_neq": 1, - "Heqe.": 3, - "T_Abs.": 1, - "context_invariance...": 2, - "Hafi.": 2, - "extend.": 2, - "IHt.": 1, - "Coiso1.": 2, - "Coiso2.": 3, - "HeqCoiso1.": 1, - "HeqCoiso2.": 1, - "beq_id_false_not_eq.": 1, - "ex_falso_quodlibet.": 1, - "preservation": 1, - "HT.": 1, - "substitution_preserves_typing": 1, - "T11.": 4, - "HT1.": 1, - "T_App": 2, - "IHHT1.": 1, - "IHHT2.": 1, - "tm_cases": 1, - "Ht": 1, - "Ht.": 3, - "IHt1": 2, - "T11": 2, - "ST_App2.": 1, - "ty_Bool.": 1, - "IHt3": 1, - "ST_IfTrue.": 1, - "ST_IfFalse.": 1, - "types_unique": 1, - "T12": 2, - "IHhas_type.": 1, - "IHhas_type1.": 1, - "IHhas_type2.": 1 + "card_interval.": 2 }, "Creole": { "Creole": 6, @@ -17955,64 +18121,32 @@ "distribution.": 1 }, "Crystal": { - "SHEBANG#!bin/crystal": 2, - "require": 2, - "describe": 2, - "do": 26, - "it": 21, - "run": 14, - "(": 201, - ")": 201, - ".to_i.should": 11, - "eq": 16, - "end": 135, - ".to_f32.should": 2, - ".to_b.should": 1, - "be_true": 1, - "assert_type": 7, - "{": 7, - "int32": 8, - "}": 7, - "union_of": 1, - "char": 1, - "result": 3, - "types": 3, - "[": 9, - "]": 9, - "mod": 1, - "result.program": 1, - "foo": 3, - "mod.types": 1, - "as": 4, - "NonGenericClassType": 1, - "foo.instance_vars": 1, - ".type.should": 3, - "mod.int32": 1, - "GenericClassType": 2, - "foo_i32": 4, - "foo.instantiate": 2, - "of": 3, - "Type": 2, - "|": 8, - "ASTNode": 4, - "foo_i32.lookup_instance_var": 2, "module": 1, "Crystal": 1, "class": 2, + "ASTNode": 4, "def": 84, "transform": 81, + "(": 201, "transformer": 1, + ")": 201, "transformer.before_transform": 1, "self": 77, "node": 164, "transformer.transform": 1, "transformer.after_transform": 1, + "end": 135, "Transformer": 1, "before_transform": 1, "after_transform": 1, "Expressions": 2, "exps": 6, + "[": 9, + "]": 9, + "of": 3, "node.expressions.each": 1, + "do": 26, + "|": 8, "exp": 3, "new_exp": 3, "exp.transform": 3, @@ -18132,7 +18266,10 @@ "output.transform": 1, "Block": 1, "node.args.map": 1, + "{": 7, + "as": 4, "Var": 2, + "}": 7, "FunLiteral": 1, "node.def.body": 1, "node.def.body.transform": 1, @@ -18199,7 +18336,36 @@ "Alias": 1, "TupleIndexer": 1, "Attribute": 1, - "exps.map": 1 + "exps.map": 1, + "SHEBANG#!bin/crystal": 2, + "require": 2, + "describe": 2, + "it": 21, + "run": 14, + ".to_i.should": 11, + "eq": 16, + ".to_f32.should": 2, + ".to_b.should": 1, + "be_true": 1, + "assert_type": 7, + "int32": 8, + "union_of": 1, + "char": 1, + "result": 3, + "types": 3, + "mod": 1, + "result.program": 1, + "foo": 3, + "mod.types": 1, + "NonGenericClassType": 1, + "foo.instance_vars": 1, + ".type.should": 3, + "mod.int32": 1, + "GenericClassType": 2, + "foo_i32": 4, + "foo.instantiate": 2, + "Type": 2, + "foo_i32.lookup_instance_var": 2 }, "Cuda": { "__global__": 2, @@ -18438,20 +18604,43 @@ "module.exports": 1 }, "E": { + "pragma.syntax": 1, + "(": 65, + ")": 64, + "to": 27, + "send": 1, + "message": 4, + "{": 57, + "when": 2, + "friend": 4, + "<-receive(message))>": 1, + "chatUI.showMessage": 4, + "}": 57, + "catch": 2, + "prob": 2, + "receive": 1, + "receiveFriend": 2, + "friendRcvr": 2, + "bind": 2, + "save": 1, + "file": 3, + "file.setText": 1, + "makeURIFromObject": 1, + "chatController": 2, + "load": 1, + "getObjectFromURI": 1, + "file.getText": 1, + "<": 1, + "-": 2, "def": 24, "makeVehicle": 3, - "(": 65, "self": 1, - ")": 64, - "{": 57, "vehicle": 2, - "to": 27, "milesTillEmpty": 1, "return": 19, "self.milesPerGallon": 1, "*": 1, "self.getFuelRemaining": 1, - "}": 57, "makeCar": 4, "var": 6, "fuelRemaining": 4, @@ -18534,6 +18723,14 @@ "false": 1, "__getAllegedType": 1, "null.__getAllegedType": 1, + "tempVow": 2, + "#...use": 1, + "#....": 1, + "report": 1, + "problem": 1, + "finally": 1, + "#....log": 1, + "event": 1, "#File": 1, "objects": 1, "hardwired": 1, @@ -18545,7 +18742,6 @@ "#Using": 2, "a": 4, "variable": 1, - "file": 3, "filePath": 2, "file3": 1, "": 1, @@ -18559,37 +18755,7 @@ "file5": 1, "": 1, "file6": 1, - "": 1, - "pragma.syntax": 1, - "send": 1, - "message": 4, - "when": 2, - "friend": 4, - "<-receive(message))>": 1, - "chatUI.showMessage": 4, - "catch": 2, - "prob": 2, - "receive": 1, - "receiveFriend": 2, - "friendRcvr": 2, - "bind": 2, - "save": 1, - "file.setText": 1, - "makeURIFromObject": 1, - "chatController": 2, - "load": 1, - "getObjectFromURI": 1, - "file.getText": 1, - "<": 1, - "-": 2, - "tempVow": 2, - "#...use": 1, - "#....": 1, - "report": 1, - "problem": 1, - "finally": 1, - "#....log": 1, - "event": 1 + "": 1 }, "ECL": { "#option": 1, @@ -19173,53 +19339,85 @@ "radius=": 12 }, "Elm": { + "data": 1, + "Tree": 3, + "a": 5, + "Node": 8, + "(": 119, + ")": 116, + "|": 3, + "Empty": 8, + "empty": 2, + "singleton": 2, + "v": 8, + "insert": 4, + "x": 13, + "tree": 7, + "case": 5, + "of": 7, + "-": 11, + "y": 7, + "left": 7, + "right": 8, + "if": 2, + "then": 2, + "else": 2, + "<": 1, + "fromList": 3, + "xs": 9, + "foldl": 1, + "depth": 5, + "+": 14, + "max": 1, + "map": 11, + "f": 8, + "t1": 2, + "[": 31, + "]": 31, + "t2": 3, + "main": 3, + "flow": 4, + "down": 3, + "display": 4, + "name": 6, + "text": 4, + ".": 9, + "monospace": 1, + "toText": 6, + "concat": 1, + "show": 2, + "asText": 1, + "qsort": 4, + "lst": 6, + "filter": 2, + "<)x)>": 1, "import": 3, "List": 1, - "(": 119, "intercalate": 2, "intersperse": 3, - ")": 116, "Website.Skeleton": 1, "Website.ColorScheme": 1, "addFolder": 4, "folder": 2, - "lst": 6, "let": 2, "add": 2, - "x": 13, - "y": 7, - "+": 14, "in": 2, - "f": 8, "n": 2, - "xs": 9, - "map": 11, "elements": 2, - "[": 31, - "]": 31, "functional": 2, "reactive": 2, - "-": 11, "example": 3, - "name": 6, "loc": 2, "Text.link": 1, - "toText": 6, "toLinks": 2, "title": 2, "links": 2, - "flow": 4, - "right": 8, "width": 3, - "text": 4, "italic": 1, "bold": 2, - ".": 9, "Text.color": 1, "accent4": 1, "insertSpace": 2, - "case": 5, - "of": 7, "{": 1, "spacer": 2, ";": 1, @@ -19227,10 +19425,8 @@ "subsection": 2, "w": 7, "info": 2, - "down": 3, "words": 2, "markdown": 1, - "|": 3, "###": 1, "Basic": 1, "Examples": 1, @@ -19239,7 +19435,6 @@ "below": 1, "focuses": 1, "on": 1, - "a": 5, "single": 1, "function": 1, "or": 1, @@ -19256,43 +19451,11 @@ "content": 2, "exampleSets": 2, "plainText": 1, - "main": 3, "lift": 1, "skeleton": 1, - "Window.width": 1, - "asText": 1, - "qsort": 4, - "filter": 2, - "<)x)>": 1, - "data": 1, - "Tree": 3, - "Node": 8, - "Empty": 8, - "empty": 2, - "singleton": 2, - "v": 8, - "insert": 4, - "tree": 7, - "left": 7, - "if": 2, - "then": 2, - "else": 2, - "<": 1, - "fromList": 3, - "foldl": 1, - "depth": 5, - "max": 1, - "t1": 2, - "t2": 3, - "display": 4, - "monospace": 1, - "concat": 1, - "show": 2 + "Window.width": 1 }, "Emacs Lisp": { - "(": 156, - "print": 1, - ")": 144, ";": 333, "ess": 48, "-": 294, @@ -19304,7 +19467,9 @@ "inferior": 13, "interaction": 1, "Copyright": 1, + "(": 156, "C": 2, + ")": 144, "Vitalie": 3, "Spinu.": 1, "Filename": 1, @@ -19605,155 +19770,11 @@ "use": 1, "classes": 1, "screws": 1, - "egrep": 1 + "egrep": 1, + "print": 1 }, "Erlang": { - "SHEBANG#!escript": 3, "%": 134, - "-": 262, - "*": 9, - "erlang": 5, - "smp": 1, - "enable": 1, - "sname": 1, - "factorial": 1, - "mnesia": 1, - "debug": 1, - "verbose": 1, - "main": 4, - "(": 236, - "[": 66, - "String": 2, - "]": 61, - ")": 230, - "try": 2, - "N": 6, - "list_to_integer": 1, - "F": 16, - "fac": 4, - "io": 5, - "format": 7, - "catch": 2, - "_": 52, - "usage": 3, - "end": 3, - ";": 56, - ".": 37, - "halt": 2, - "export": 2, - "main/1": 1, - "For": 1, - "each": 1, - "header": 1, - "file": 6, - "it": 2, - "scans": 1, - "thru": 1, - "all": 1, - "records": 1, - "and": 8, - "create": 1, - "helper": 1, - "functions": 2, - "Helper": 1, - "are": 3, - "setters": 1, - "getters": 1, - "fields": 4, - "fields_atom": 4, - "type": 6, - "module": 2, - "record_helper": 1, - "make/1": 1, - "make/2": 1, - "make": 3, - "HeaderFiles": 5, - "atom_to_list": 18, - "X": 12, - "||": 6, - "<->": 5, - "hrl": 1, - "relative": 1, - "to": 2, - "current": 1, - "dir": 1, - "OutDir": 4, - "ModuleName": 3, - "HeaderComment": 2, - "ModuleDeclaration": 2, - "+": 214, - "<": 1, - "Src": 10, - "format_src": 8, - "lists": 11, - "sort": 1, - "flatten": 6, - "read": 2, - "generate_type_default_function": 2, - "write_file": 1, - "erl": 1, - "list_to_binary": 1, - "HeaderFile": 4, - "epp": 1, - "parse_file": 1, - "of": 9, - "{": 109, - "ok": 34, - "Tree": 4, - "}": 109, - "parse": 2, - "error": 4, - "Error": 4, - "catched_error": 1, - "end.": 3, - "|": 25, - "T": 24, - "when": 29, - "length": 6, - "Type": 3, - "A": 5, - "B": 4, - "NSrc": 4, - "_Type": 1, - "Type1": 2, - "parse_record": 3, - "attribute": 1, - "record": 4, - "RecordInfo": 2, - "RecordName": 41, - "RecordFields": 10, - "if": 1, - "generate_setter_getter_function": 5, - "generate_type_function": 3, - "true": 3, - "generate_fields_function": 2, - "generate_fields_atom_function": 2, - "parse_field_name": 5, - "record_field": 9, - "atom": 9, - "FieldName": 26, - "field": 4, - "_FieldName": 2, - "ParentRecordName": 8, - "parent_field": 2, - "parse_field_name_atom": 5, - "concat": 5, - "_S": 3, - "S": 6, - "concat_ext": 4, - "parse_field": 6, - "AccFields": 6, - "AccParentFields": 6, - "case": 3, - "Field": 2, - "PField": 2, - "parse_field_atom": 4, - "zzz": 1, - "Fields": 4, - "field_atom": 1, - "to_setter_getter_function": 5, - "setter": 2, - "getter": 2, "This": 2, "is": 1, "auto": 1, @@ -19763,12 +19784,26 @@ "don": 1, "t": 1, "edit": 1, + "it": 2, + "-": 262, + "module": 2, + "(": 236, "record_utils": 1, + ")": 230, + ".": 37, "compile": 2, "export_all": 1, "include": 1, + "fields": 4, "abstract_message": 21, + "[": 66, + "]": 61, + ";": 56, "async_message": 12, + "+": 214, + "fields_atom": 4, + "lists": 11, + "flatten": 6, "clientId": 5, "destination": 5, "messageId": 5, @@ -19780,8 +19815,12 @@ "correlationIdBytes": 5, "get": 12, "Obj": 49, + "when": 29, "is_record": 25, + "{": 109, + "ok": 34, "Obj#abstract_message.body": 1, + "}": 109, "Obj#abstract_message.clientId": 1, "Obj#abstract_message.destination": 1, "Obj#abstract_message.headers": 1, @@ -19793,6 +19832,7 @@ "parent": 5, "Obj#async_message.parent": 3, "ParentProperty": 6, + "and": 8, "is_atom": 2, "set": 13, "Value": 35, @@ -19800,8 +19840,13 @@ "Obj#abstract_message": 7, "Obj#async_message": 3, "NewParentObject": 2, + "_": 52, + "type": 6, "undefined.": 1, + "SHEBANG#!escript": 3, + "*": 9, "Mode": 1, + "erlang": 5, "coding": 1, "utf": 1, "tab": 1, @@ -19835,6 +19880,7 @@ "or": 3, "without": 2, "modification": 1, + "are": 3, "permitted": 1, "provided": 2, "that": 1, @@ -19843,6 +19889,7 @@ "conditions": 3, "met": 1, "Redistributions": 2, + "of": 9, "code": 2, "must": 3, "retain": 1, @@ -19877,6 +19924,7 @@ "not": 1, "be": 1, "used": 1, + "to": 2, "endorse": 1, "promote": 1, "products": 1, @@ -19910,6 +19958,7 @@ "MERCHANTABILITY": 1, "FITNESS": 1, "FOR": 2, + "A": 5, "PARTICULAR": 1, "PURPOSE": 1, "ARE": 1, @@ -19958,19 +20007,26 @@ "POSSIBILITY": 1, "SUCH": 1, "DAMAGE.": 1, + "main": 4, "sys": 2, "RelToolConfig": 5, "target_dir": 2, "TargetDir": 14, "overlay": 2, "OverlayConfig": 4, + "file": 6, "consult": 1, "Spec": 2, "reltool": 2, "get_target_spec": 1, + "case": 3, "make_dir": 1, + "error": 4, "eexist": 1, + "io": 5, + "format": 7, "exit_code": 3, + "end": 3, "eval_target_spec": 1, "root_dir": 1, "process_overlay": 2, @@ -19982,6 +20038,8 @@ "os": 1, "cmd": 1, "io_lib": 2, + "|": 25, + "end.": 3, "boot_rel_vsn": 2, "Config": 2, "_RelToolConfig": 1, @@ -20033,16 +20091,124 @@ "mkdir": 1, "Out": 4, "Vars": 7, + "OutDir": 4, "filename": 3, "join": 3, "copy": 1, "In": 2, "InFile": 3, "OutFile": 2, + "true": 3, "filelib": 1, "is_file": 1, "ExitCode": 2, - "flush": 1 + "halt": 2, + "flush": 1, + "For": 1, + "each": 1, + "header": 1, + "scans": 1, + "thru": 1, + "all": 1, + "records": 1, + "create": 1, + "helper": 1, + "functions": 2, + "Helper": 1, + "setters": 1, + "getters": 1, + "record_helper": 1, + "export": 2, + "make/1": 1, + "make/2": 1, + "make": 3, + "HeaderFiles": 5, + "atom_to_list": 18, + "X": 12, + "||": 6, + "<->": 5, + "hrl": 1, + "relative": 1, + "current": 1, + "dir": 1, + "ModuleName": 3, + "HeaderComment": 2, + "ModuleDeclaration": 2, + "<": 1, + "Src": 10, + "format_src": 8, + "sort": 1, + "read": 2, + "generate_type_default_function": 2, + "write_file": 1, + "erl": 1, + "list_to_binary": 1, + "HeaderFile": 4, + "try": 2, + "epp": 1, + "parse_file": 1, + "Tree": 4, + "parse": 2, + "Error": 4, + "catch": 2, + "catched_error": 1, + "T": 24, + "length": 6, + "Type": 3, + "B": 4, + "NSrc": 4, + "_Type": 1, + "Type1": 2, + "parse_record": 3, + "attribute": 1, + "record": 4, + "RecordInfo": 2, + "RecordName": 41, + "RecordFields": 10, + "if": 1, + "generate_setter_getter_function": 5, + "generate_type_function": 3, + "generate_fields_function": 2, + "generate_fields_atom_function": 2, + "parse_field_name": 5, + "record_field": 9, + "atom": 9, + "FieldName": 26, + "field": 4, + "_FieldName": 2, + "ParentRecordName": 8, + "parent_field": 2, + "parse_field_name_atom": 5, + "concat": 5, + "_S": 3, + "F": 16, + "S": 6, + "concat_ext": 4, + "parse_field": 6, + "AccFields": 6, + "AccParentFields": 6, + "Field": 2, + "PField": 2, + "parse_field_atom": 4, + "zzz": 1, + "Fields": 4, + "field_atom": 1, + "to_setter_getter_function": 5, + "setter": 2, + "getter": 2, + "smp": 1, + "enable": 1, + "sname": 1, + "factorial": 1, + "mnesia": 1, + "debug": 1, + "verbose": 1, + "String": 2, + "N": 6, + "list_to_integer": 1, + "fac": 4, + "usage": 3, + "main/1": 1 }, "Forth": { "(": 88, @@ -20147,52 +20313,6 @@ "defer": 2, "name": 1, "s": 4, - "c@": 2, - "negate": 1, - "nip": 2, - "bl": 4, - "word": 9, - "ahead": 2, - "resolve": 4, - "literal": 4, - "postpone": 14, - "nonimmediate": 1, - "caddr": 1, - "C": 9, - "find": 2, - "cells": 1, - "postponers": 1, - "execute": 1, - "unresolved": 4, - "orig": 5, - "chars": 1, - "n1": 2, - "n2": 2, - "orig1": 1, - "orig2": 1, - "branch": 5, - "dodoes_code": 1, - "code": 3, - "begin": 2, - "dest": 5, - "while": 2, - "repeat": 2, - "until": 1, - "recurse": 1, - "pad": 3, - "If": 1, - "necessary": 1, - "and": 3, - "keep": 1, - "parsing.": 1, - "string": 3, - "cmove": 1, - "state": 2, - "cr": 3, - "abort": 3, - "": 1, - "Undefined": 1, - "ok": 1, "HELLO": 4, "KataDiversion": 1, "Forth": 1, @@ -20208,6 +20328,8 @@ "THEN": 10, "power": 2, "**": 2, + "n1": 2, + "n2": 2, "n1_pow_n2": 1, "SWAP": 8, "DUP": 14, @@ -20241,6 +20363,7 @@ "ADJACENT": 3, "BITS": 3, "bool": 1, + "word": 9, "uses": 1, "following": 1, "algorithm": 1, @@ -20249,6 +20372,7 @@ "X": 5, "LOG2": 1, "end": 1, + "and": 3, "OR": 1, "INVERT": 1, "maximum": 1, @@ -20278,6 +20402,8 @@ "depth": 1, "traverse": 1, "dictionary": 1, + "cr": 3, + "code": 3, "assembler": 1, "kernel": 1, "bye": 1, @@ -20287,244 +20413,190 @@ "editor": 1, "forget": 1, "reveal": 1, + "state": 2, "tools": 1, "nr": 1, "synonym": 1, "undefined": 2, + "bl": 4, + "find": 2, + "nip": 2, "defined": 1, + "postpone": 14, "invert": 1, "/cell": 2, - "cell": 2 + "cell": 2, + "c@": 2, + "negate": 1, + "ahead": 2, + "resolve": 4, + "literal": 4, + "nonimmediate": 1, + "caddr": 1, + "C": 9, + "cells": 1, + "postponers": 1, + "execute": 1, + "unresolved": 4, + "orig": 5, + "chars": 1, + "orig1": 1, + "orig2": 1, + "branch": 5, + "dodoes_code": 1, + "begin": 2, + "dest": 5, + "while": 2, + "repeat": 2, + "until": 1, + "recurse": 1, + "pad": 3, + "If": 1, + "necessary": 1, + "keep": 1, + "parsing.": 1, + "string": 3, + "cmove": 1, + "abort": 3, + "": 1, + "Undefined": 1, + "ok": 1 }, "Frege": { - "module": 2, - "examples.CommandLineClock": 1, - "where": 39, - "data": 3, - "Date": 5, - "native": 4, - "java.util.Date": 1, - "new": 9, - "(": 339, - ")": 345, - "-": 730, - "IO": 13, - "MutableIO": 1, - "toString": 2, - "Mutable": 1, - "s": 21, - "ST": 1, - "String": 9, - "d.toString": 1, - "action": 2, - "to": 13, - "give": 2, - "us": 1, - "the": 20, - "current": 4, - "time": 1, - "as": 33, - "do": 38, - "d": 3, - "<->": 35, - "java": 5, - "lang": 2, - "Thread": 2, - "sleep": 4, - "takes": 1, - "a": 99, - "long": 4, - "and": 14, - "returns": 2, - "nothing": 2, - "but": 2, - "may": 1, - "throw": 1, - "an": 6, - "InterruptedException": 4, - "This": 2, - "is": 24, - "without": 1, - "doubt": 1, - "public": 1, - "static": 1, - "void": 2, - "millis": 1, - "throws": 4, - "Encoded": 1, - "in": 22, - "Frege": 1, - "argument": 1, - "type": 8, - "Long": 3, - "result": 11, - "does": 2, - "defined": 1, - "frege": 1, - "Lang": 1, - "main": 11, - "args": 2, - "forever": 1, - "print": 25, - "stdout.flush": 1, - "Thread.sleep": 4, - "examples.Concurrent": 1, - "import": 7, - "System.Random": 1, - "Java.Net": 1, - "URL": 2, - "Control.Concurrent": 1, - "C": 6, - "main2": 1, - "m": 2, - "<": 84, - "newEmptyMVar": 1, - "forkIO": 11, - "m.put": 3, - "replicateM_": 3, - "c": 33, - "m.take": 1, - "println": 25, - "example1": 1, - "putChar": 2, - "example2": 2, - "getLine": 2, - "case": 6, - "of": 32, - "Right": 6, - "n": 38, - "setReminder": 3, - "Left": 5, - "_": 60, - "+": 200, - "show": 24, - "L*n": 1, - "table": 1, - "mainPhil": 2, - "[": 120, - "fork1": 3, - "fork2": 3, - "fork3": 3, - "fork4": 3, - "fork5": 3, - "]": 116, - "mapM": 3, - "MVar": 3, - "1": 2, - "5": 1, - "philosopher": 7, - "Kant": 1, - "Locke": 1, - "Wittgenstein": 1, - "Nozick": 1, - "Mises": 1, - "return": 17, - "Int": 6, - "me": 13, - "left": 4, - "right": 4, - "g": 4, - "Random.newStdGen": 1, - "let": 8, - "phil": 4, - "tT": 2, - "g1": 2, - "Random.randomR": 2, - "L": 6, - "eT": 2, - "g2": 3, - "thinkTime": 3, - "*": 5, - "eatTime": 3, - "fl": 4, - "left.take": 1, - "rFork": 2, - "poll": 1, - "Just": 2, - "fr": 3, - "right.put": 1, - "left.put": 2, - "table.notifyAll": 2, - "Nothing": 2, - "table.wait": 1, - "inter": 3, - "catch": 2, - "getURL": 4, - "xx": 2, - "url": 1, - "URL.new": 1, - "con": 3, - "url.openConnection": 1, - "con.connect": 1, - "con.getInputStream": 1, - "typ": 5, - "con.getContentType": 1, - "stderr.println": 3, - "ir": 2, - "InputStreamReader.new": 2, - "fromMaybe": 1, - "charset": 2, - "unsupportedEncoding": 3, - "br": 4, - "BufferedReader": 1, - "getLines": 1, - "InputStream": 1, - "UnsupportedEncodingException": 1, - "InputStreamReader": 1, - "x": 45, - "x.catched": 1, - "ctyp": 2, - "charset=": 1, - "m.group": 1, - "SomeException": 2, - "Throwable": 1, - "m1": 1, - "MVar.newEmpty": 3, - "m2": 1, - "m3": 2, - "r": 7, - "catchAll": 3, - ".": 41, - "m1.put": 1, - "m2.put": 1, - "m3.put": 1, - "r1": 2, - "m1.take": 1, - "r2": 3, - "m2.take": 1, - "r3": 3, - "take": 13, - "ss": 8, - "mapM_": 5, - "putStrLn": 2, - "|": 62, - "x.getClass.getName": 1, - "y": 15, - "sum": 2, - "map": 49, - "length": 20, "package": 2, + "examples.SwingExamples": 1, + "where": 39, + "import": 7, + "Java.Awt": 1, + "(": 339, + "ActionListener": 2, + ")": 345, + "Java.Swing": 1, + "main": 11, + "_": 60, + "do": 38, + "rs": 2, + "<": 84, + "-": 730, + "mapM": 3, + "Runnable.new": 1, + "[": 120, + "helloWorldGUI": 2, + "buttonDemoGUI": 2, + "celsiusConverterGUI": 2, + "]": 116, + "mapM_": 5, + "invokeLater": 1, + "println": 25, + "s": 21, + "getLine": 2, + "return": 17, + "tempTextField": 2, + "JTextField.new": 1, + "celsiusLabel": 1, + "JLabel.new": 3, + "convertButton": 1, + "JButton.new": 3, + "fahrenheitLabel": 1, + "frame": 3, + "JFrame.new": 3, + "frame.setDefaultCloseOperation": 3, + "JFrame.dispose_on_close": 3, + "frame.setTitle": 1, + "celsiusLabel.setText": 1, + "convertButton.setText": 1, + "let": 8, + "convertButtonActionPerformed": 2, + "celsius": 3, + "<->": 35, + "getText": 1, + "case": 6, + "double": 1, + "of": 32, + "Left": 5, + "fahrenheitLabel.setText": 3, + "+": 200, + "Right": 6, + "c": 33, + "show": 24, + "c*1.8": 1, + ".long": 1, + "ActionListener.new": 2, + "convertButton.addActionListener": 1, + "contentPane": 2, + "frame.getContentPane": 2, + "layout": 2, + "GroupLayout.new": 1, + "contentPane.setLayout": 1, + "TODO": 1, + "continue": 1, + "http": 3, + "//docs.oracle.com/javase/tutorial/displayCode.html": 1, + "code": 1, + "//docs.oracle.com/javase/tutorial/uiswing/examples/learn/CelsiusConverterProject/src/learn/CelsiusConverterGUI.java": 1, + "frame.pack": 3, + "frame.setVisible": 3, + "true": 16, + "label": 2, + "cp": 3, + "cp.add": 1, + "newContentPane": 2, + "JPanel.new": 1, + "b1": 11, + "JButton": 4, + "b1.setVerticalTextPosition": 1, + "SwingConstants.center": 2, + "b1.setHorizontalTextPosition": 1, + "SwingConstants.leading": 2, + "b2": 10, + "b2.setVerticalTextPosition": 1, + "b2.setHorizontalTextPosition": 1, + "b3": 7, + "new": 9, + "Enable": 1, + "middle": 2, + "button": 1, + "setVerticalTextPosition": 1, + "SwingConstants": 2, + "center": 1, + "setHorizontalTextPosition": 1, + "leading": 1, + "setEnabled": 7, + "false": 13, + "action1": 2, + "action3": 2, + "b1.addActionListener": 1, + "b3.addActionListener": 1, + "newContentPane.add": 3, + "newContentPane.setOpaque": 1, + "frame.setContentPane": 1, "examples.Sudoku": 1, "Data.TreeMap": 1, "Tree": 4, "keys": 2, "Data.List": 1, + "as": 33, "DL": 1, "hiding": 1, "find": 20, "union": 10, + "type": 8, "Element": 6, + "Int": 6, "Zelle": 8, "set": 4, "candidates": 18, "Position": 22, "Feld": 3, "Brett": 13, + "data": 3, "for": 25, "assumptions": 10, + "and": 14, "conclusions": 2, "Assumption": 21, "ISNOT": 14, + "|": 62, "IS": 16, "derive": 2, "Eq": 1, @@ -20538,6 +20610,7 @@ "showcs": 5, "cs": 27, "joined": 4, + "map": 49, "Assumption.show": 1, "elements": 12, "all": 22, @@ -20545,7 +20618,9 @@ "..": 1, "positions": 16, "rowstarts": 4, + "a": 99, "row": 20, + "is": 24, "starting": 3, "colstarts": 3, "column": 2, @@ -20556,8 +20631,10 @@ "by": 3, "adding": 1, "upper": 2, + "left": 4, "position": 9, "results": 1, + "in": 22, "real": 1, "extract": 2, "field": 9, @@ -20571,14 +20648,17 @@ "b": 113, "snd": 20, "compute": 5, + "the": 20, "list": 7, "that": 18, "belong": 3, + "to": 13, "same": 8, "given": 3, "z..": 1, "z": 12, "quot": 1, + "*": 5, "col": 17, "mod": 3, "ri": 2, @@ -20588,7 +20668,7 @@ "on": 4, "ci": 3, "index": 3, - "middle": 2, + "right": 4, "check": 2, "if": 5, "candidate": 10, @@ -20601,8 +20681,6 @@ "solved": 1, "single": 9, "Bool": 2, - "true": 16, - "false": 13, "unsolved": 10, "rows": 4, "cols": 6, @@ -20614,6 +20692,7 @@ "zip": 7, "repeat": 3, "containers": 6, + "String": 9, "PRINTING": 1, "printable": 1, "coordinate": 1, @@ -20623,6 +20702,7 @@ "packed": 1, "chr": 2, "ord": 6, + "print": 25, "board": 41, "printb": 4, "p1line": 2, @@ -20630,9 +20710,12 @@ "line": 2, "brief": 1, "no": 4, + ".": 41, "some": 2, + "x": 45, "zs": 1, "initial/final": 1, + "result": 11, "msg": 6, "res012": 2, "concatMap": 1, @@ -20646,6 +20729,7 @@ "what": 1, "done": 1, "turnoff1": 3, + "IO": 13, "i": 16, "off": 11, "nc": 7, @@ -20659,6 +20743,7 @@ "foldM": 2, "toh": 2, "setto": 3, + "n": 38, "cname": 4, "nf": 2, "SOLVING": 1, @@ -20668,6 +20753,7 @@ "contains": 1, "numbers": 1, "already": 1, + "This": 2, "finds": 1, "logs": 1, "NAKED": 5, @@ -20702,6 +20788,7 @@ "FOR": 11, "IN": 9, "occurs": 5, + "length": 20, "PAIRS": 8, "TRIPLES": 8, "QUADS": 2, @@ -20726,6 +20813,7 @@ "uniq": 4, "sort": 4, "common": 4, + "1": 2, "bs": 7, "undefined": 1, "cannot": 1, @@ -20744,6 +20832,8 @@ "intersection": 1, "we": 5, "occurences": 1, + "but": 2, + "an": 6, "XY": 2, "Wing": 2, "there": 6, @@ -20754,6 +20844,7 @@ "B": 5, "Z": 6, "shares": 2, + "C": 6, "reasoning": 1, "will": 4, "be": 9, @@ -20762,10 +20853,9 @@ "thus": 1, "see": 1, "xyWing": 2, + "y": 15, "rcba": 4, "share": 1, - "b1": 11, - "b2": 10, "&&": 9, "||": 2, "then": 1, @@ -20788,6 +20878,7 @@ "fish": 7, "fishname": 5, "rset": 4, + "take": 13, "certain": 1, "rflds": 2, "rowset": 1, @@ -20802,7 +20893,6 @@ "assumption": 8, "form": 1, "conseq": 3, - "cp": 3, "two": 1, "contradict": 2, "contradicts": 7, @@ -20840,6 +20930,7 @@ "conclusion": 4, "THE": 1, "FIRST": 1, + "con": 3, "implication": 2, "ai": 2, "so": 1, @@ -20869,6 +20960,7 @@ "Liste": 1, "aller": 1, "Annahmen": 1, + "r": 7, "ein": 1, "bestimmtes": 1, "acstree": 3, @@ -20877,6 +20969,7 @@ "maybe": 1, "tree": 1, "lookup": 2, + "Just": 2, "error": 1, "performance": 1, "resons": 1, @@ -20906,18 +20999,22 @@ "available": 1, "strategies": 1, "until": 1, + "nothing": 2, "changes": 1, "anymore": 1, "Strategy": 1, "functions": 2, "supposed": 1, "applied": 1, + "give": 2, "changed": 1, "board.": 1, "strategy": 2, + "does": 2, "anything": 1, "alter": 1, "it": 2, + "returns": 2, "next": 1, "tried.": 1, "solve": 19, @@ -20960,6 +21057,7 @@ "h": 1, "help": 1, "usage": 1, + "java": 5, "Sudoku": 2, "file": 4, "81": 3, @@ -20969,17 +21067,18 @@ "One": 1, "such": 1, "going": 1, - "http": 3, "www": 1, "sudokuoftheday": 1, "pages": 1, "o": 1, + "d": 3, "php": 1, "click": 1, "puzzle": 1, "open": 1, "tab": 1, "Copy": 1, + "URL": 2, "address": 1, "your": 1, "browser": 1, @@ -20996,86 +21095,153 @@ "files": 2, "forM_": 1, "sudoku": 2, + "br": 4, "openReader": 1, "lines": 2, "BufferedReader.getLines": 1, "process": 5, + "ss": 8, + "sum": 2, "candi": 2, "consider": 3, "acht": 4, + "stderr.println": 3, "neun": 2, - "examples.SwingExamples": 1, - "Java.Awt": 1, - "ActionListener": 2, - "Java.Swing": 1, - "rs": 2, - "Runnable.new": 1, - "helloWorldGUI": 2, - "buttonDemoGUI": 2, - "celsiusConverterGUI": 2, - "invokeLater": 1, - "tempTextField": 2, - "JTextField.new": 1, - "celsiusLabel": 1, - "JLabel.new": 3, - "convertButton": 1, - "JButton.new": 3, - "fahrenheitLabel": 1, - "frame": 3, - "JFrame.new": 3, - "frame.setDefaultCloseOperation": 3, - "JFrame.dispose_on_close": 3, - "frame.setTitle": 1, - "celsiusLabel.setText": 1, - "convertButton.setText": 1, - "convertButtonActionPerformed": 2, - "celsius": 3, - "getText": 1, - "double": 1, - "fahrenheitLabel.setText": 3, - "c*1.8": 1, - ".long": 1, - "ActionListener.new": 2, - "convertButton.addActionListener": 1, - "contentPane": 2, - "frame.getContentPane": 2, - "layout": 2, - "GroupLayout.new": 1, - "contentPane.setLayout": 1, - "TODO": 1, - "continue": 1, - "//docs.oracle.com/javase/tutorial/displayCode.html": 1, - "code": 1, - "//docs.oracle.com/javase/tutorial/uiswing/examples/learn/CelsiusConverterProject/src/learn/CelsiusConverterGUI.java": 1, - "frame.pack": 3, - "frame.setVisible": 3, - "label": 2, - "cp.add": 1, - "newContentPane": 2, - "JPanel.new": 1, - "JButton": 4, - "b1.setVerticalTextPosition": 1, - "SwingConstants.center": 2, - "b1.setHorizontalTextPosition": 1, - "SwingConstants.leading": 2, - "b2.setVerticalTextPosition": 1, - "b2.setHorizontalTextPosition": 1, - "b3": 7, - "Enable": 1, - "button": 1, - "setVerticalTextPosition": 1, - "SwingConstants": 2, - "center": 1, - "setHorizontalTextPosition": 1, - "leading": 1, - "setEnabled": 7, - "action1": 2, - "action3": 2, - "b1.addActionListener": 1, - "b3.addActionListener": 1, - "newContentPane.add": 3, - "newContentPane.setOpaque": 1, - "frame.setContentPane": 1 + "module": 2, + "examples.CommandLineClock": 1, + "Date": 5, + "native": 4, + "java.util.Date": 1, + "MutableIO": 1, + "toString": 2, + "Mutable": 1, + "ST": 1, + "d.toString": 1, + "action": 2, + "us": 1, + "current": 4, + "time": 1, + "lang": 2, + "Thread": 2, + "sleep": 4, + "takes": 1, + "long": 4, + "may": 1, + "throw": 1, + "InterruptedException": 4, + "without": 1, + "doubt": 1, + "public": 1, + "static": 1, + "void": 2, + "millis": 1, + "throws": 4, + "Encoded": 1, + "Frege": 1, + "argument": 1, + "Long": 3, + "defined": 1, + "frege": 1, + "Lang": 1, + "args": 2, + "forever": 1, + "stdout.flush": 1, + "Thread.sleep": 4, + "examples.Concurrent": 1, + "System.Random": 1, + "Java.Net": 1, + "Control.Concurrent": 1, + "main2": 1, + "m": 2, + "newEmptyMVar": 1, + "forkIO": 11, + "m.put": 3, + "replicateM_": 3, + "m.take": 1, + "example1": 1, + "putChar": 2, + "example2": 2, + "setReminder": 3, + "L*n": 1, + "table": 1, + "mainPhil": 2, + "fork1": 3, + "fork2": 3, + "fork3": 3, + "fork4": 3, + "fork5": 3, + "MVar": 3, + "5": 1, + "philosopher": 7, + "Kant": 1, + "Locke": 1, + "Wittgenstein": 1, + "Nozick": 1, + "Mises": 1, + "me": 13, + "g": 4, + "Random.newStdGen": 1, + "phil": 4, + "tT": 2, + "g1": 2, + "Random.randomR": 2, + "L": 6, + "eT": 2, + "g2": 3, + "thinkTime": 3, + "eatTime": 3, + "fl": 4, + "left.take": 1, + "rFork": 2, + "poll": 1, + "fr": 3, + "right.put": 1, + "left.put": 2, + "table.notifyAll": 2, + "Nothing": 2, + "table.wait": 1, + "inter": 3, + "catch": 2, + "getURL": 4, + "xx": 2, + "url": 1, + "URL.new": 1, + "url.openConnection": 1, + "con.connect": 1, + "con.getInputStream": 1, + "typ": 5, + "con.getContentType": 1, + "ir": 2, + "InputStreamReader.new": 2, + "fromMaybe": 1, + "charset": 2, + "unsupportedEncoding": 3, + "BufferedReader": 1, + "getLines": 1, + "InputStream": 1, + "UnsupportedEncodingException": 1, + "InputStreamReader": 1, + "x.catched": 1, + "ctyp": 2, + "charset=": 1, + "m.group": 1, + "SomeException": 2, + "Throwable": 1, + "m1": 1, + "MVar.newEmpty": 3, + "m2": 1, + "m3": 2, + "catchAll": 3, + "m1.put": 1, + "m2.put": 1, + "m3.put": 1, + "r1": 2, + "m1.take": 1, + "r2": 3, + "m2.take": 1, + "r3": 3, + "putStrLn": 2, + "x.getClass.getName": 1 }, "GAMS": { "*Basic": 1, @@ -21239,22 +21405,213 @@ "GAP": { "#############################################################################": 63, "##": 766, + "Magic.gi": 1, + "AutoDoc": 4, + "package": 10, + "Copyright": 6, + "Max": 2, + "Horn": 2, + "JLU": 2, + "Giessen": 2, + "Sebastian": 2, + "Gutsche": 2, + "University": 4, + "of": 114, + "Kaiserslautern": 2, + "BindGlobal": 7, + "(": 721, + "function": 37, + "str": 8, + "suffix": 3, + ")": 722, + "local": 16, + "n": 31, + "m": 8, + ";": 569, + "Length": 14, + "return": 41, + "and": 102, + "{": 21, + "[": 145, + "-": 67, + "+": 9, + "]": 169, + "}": 21, + "end": 34, + "i": 25, + "while": 5, + "<": 17, + "do": 18, + "od": 15, + "if": 103, + "then": 128, + "fi": 91, + "d": 16, + "tmp": 20, + "not": 49, + "IsDirectoryPath": 1, + "CreateDir": 2, + "#": 73, + "Note": 3, + "is": 72, + "currently": 1, + "undocumented": 1, + "fail": 18, + "Error": 7, + "LastSystemError": 1, + ".message": 1, + "false": 7, + "true": 21, + "pkg": 32, + "subdirs": 2, + "extensions": 1, + "d_rel": 6, + "files": 4, + "result": 9, + "for": 53, + "in": 64, + "DirectoriesPackageLibrary": 2, + "IsEmpty": 6, + "continue": 3, + "Directory": 5, + "DirectoryContents": 1, + "Sort": 1, + "AUTODOC_GetSuffix": 2, + "IsReadableFile": 2, + "Filename": 8, + "Add": 4, + "Make": 1, + "this": 15, + "callable": 1, + "with": 24, + "the": 136, + "package_name": 1, + "AutoDocWorksheet.": 1, + "Which": 1, + "will": 5, + "create": 1, + "a": 113, + "worksheet": 1, + "InstallGlobalFunction": 5, + "arg": 16, + "package_info": 3, + "opt": 3, + "scaffold": 12, + "gapdoc": 7, + "maketest": 12, + "autodoc": 8, + "pkg_dir": 5, + "doc_dir": 18, + "doc_dir_rel": 3, + "title_page": 7, + "tree": 8, + "is_worksheet": 13, + "position_document_class": 7, + "gapdoc_latex_option_record": 4, + "LowercaseString": 3, + "rec": 20, + "DirectoryCurrent": 1, + "else": 25, + "PackageInfo": 1, + "key": 3, + "val": 4, + "ValueOption": 1, + "opt.": 1, + "IsBound": 39, + "opt.dir": 4, + "elif": 21, + "IsString": 7, + "or": 13, + "IsDirectory": 1, + "AUTODOC_CreateDirIfMissing": 1, + "Print": 24, + "opt.scaffold": 5, + "package_info.AutoDoc": 3, + "IsRecord": 7, + "IsBool": 4, + "AUTODOC_APPEND_RECORD_WRITEONCE": 3, + "AUTODOC_WriteOnce": 10, + "opt.autodoc": 5, + "Concatenation": 15, + "package_info.Dependencies.NeededOtherPackages": 1, + "package_info.Dependencies.SuggestedOtherPackages": 1, + "ForAny": 1, + "x": 14, + "autodoc.files": 7, + "autodoc.scan_dirs": 5, + "autodoc.level": 3, + "PushOptions": 1, + "level_value": 1, + "Append": 2, + "AUTODOC_FindMatchingFiles": 2, + "opt.gapdoc": 5, + "opt.maketest": 4, + "gapdoc.main": 8, + "package_info.PackageDoc": 3, + ".BookName": 2, + "gapdoc.bookname": 4, + "#Print": 1, + "gapdoc.files": 9, + "gapdoc.scan_dirs": 3, + "Set": 1, + "Number": 1, + "ListWithIdenticalEntries": 1, + "List": 6, + "f": 11, + "DocumentationTree": 1, + "autodoc.section_intros": 2, + "AUTODOC_PROCESS_INTRO_STRINGS": 1, + "Tree": 2, + "AutoDocScanFiles": 1, + "PackageName": 2, + "scaffold.TitlePage": 4, + "scaffold.TitlePage.Title": 2, + ".TitlePage.Title": 2, + "Position": 2, + "Remove": 2, + "JoinStringsWithSeparator": 1, + "ReplacedString": 2, + "Syntax": 1, + "scaffold.document_class": 7, + "PositionSublist": 5, + "GAPDoc2LaTeXProcs.Head": 14, + "..": 6, + "scaffold.latex_header_file": 2, + "StringFile": 2, + "scaffold.gapdoc_latex_options": 4, + "RecNames": 1, + "scaffold.gapdoc_latex_options.": 5, + "IsList": 1, + "scaffold.includes": 4, + "scaffold.bib": 7, + "Unbind": 1, + "scaffold.main_xml_file": 2, + ".TitlePage": 1, + "ExtractTitleInfoFromPackageInfo": 1, + "CreateTitlePage": 1, + "scaffold.MainPage": 2, + "scaffold.dir": 1, + "scaffold.book_name": 1, + "CreateMainPage": 1, + "WriteDocumentation": 1, + "SetGapDocLaTeXOptions": 1, + "MakeGAPDocDoc": 1, + "CopyHTMLStyleFiles": 1, + "GAPDocManualLab": 1, + "maketest.folder": 3, + "maketest.scan_dir": 3, + "CreateMakeTest": 1, "#W": 4, "example.gd": 2, "This": 10, "file": 7, "contains": 7, - "a": 113, "sample": 2, - "of": 114, "GAP": 15, "declaration": 1, "file.": 3, "DeclareProperty": 2, - "(": 721, "IsLeftModule": 6, - ")": 722, - ";": 569, "DeclareGlobalFunction": 5, "#C": 7, "IsQuuxFrobnicator": 1, @@ -21268,86 +21625,14 @@ "Tests": 1, "whether": 5, "R": 5, - "is": 72, "quux": 1, "frobnicator.": 1, "": 28, "": 28, "DeclareSynonym": 17, "IsField": 1, - "and": 102, "IsGroup": 1, - "implementation": 1, - "#M": 20, - "SomeOperation": 1, - "": 2, - "performs": 1, - "some": 2, - "operation": 1, - "on": 5, - "InstallMethod": 18, - "SomeProperty": 1, - "[": 145, - "]": 169, - "function": 37, - "M": 7, - "if": 103, - "IsFreeLeftModule": 3, - "not": 49, - "IsTrivial": 1, - "then": 128, - "return": 41, - "true": 21, - "fi": 91, - "TryNextMethod": 7, - "end": 34, - "#F": 17, - "SomeGlobalFunction": 2, - "A": 9, - "global": 1, - "variadic": 1, - "funfion.": 1, - "InstallGlobalFunction": 5, - "arg": 16, - "Length": 14, - "+": 9, - "*": 12, - "elif": 21, - "-": 67, - "else": 25, - "Error": 7, - "#": 73, - "SomeFunc": 1, - "x": 14, - "y": 8, - "local": 16, - "z": 3, - "func": 3, - "tmp": 20, - "j": 3, - "mod": 2, - "List": 6, - "while": 5, - "do": 18, - "for": 53, - "in": 64, - "Print": 24, - "od": 15, - "repeat": 1, - "until": 1, - "<": 17, "Magic.gd": 1, - "AutoDoc": 4, - "package": 10, - "Copyright": 6, - "Max": 2, - "Horn": 2, - "JLU": 2, - "Giessen": 2, - "Sebastian": 2, - "Gutsche": 2, - "University": 4, - "Kaiserslautern": 2, "SHEBANG#!#! @Description": 1, "SHEBANG#!#! This": 1, "SHEBANG#!#! any": 1, @@ -21402,7 +21687,6 @@ "TODO": 3, "mention": 1, "merging": 1, - "with": 24, "PackageInfo.AutoDoc": 1, "SHEBANG#!#! ": 3, "SHEBANG#!#! ": 13, @@ -21443,7 +21727,6 @@ "document": 1, "leave": 1, "us": 1, - "the": 136, "choice": 1, "revising": 1, "how": 1, @@ -21454,9 +21737,9 @@ "": 117, "": 2, "": 2, + "A": 9, "list": 16, "names": 1, - "or": 13, "which": 8, "are": 14, "used": 10, @@ -21500,7 +21783,6 @@ "entry": 2, "list.": 2, "It": 1, - "will": 5, "handled": 3, "so": 3, "please": 1, @@ -21545,7 +21827,6 @@ "only": 5, "remaining": 1, "use": 5, - "this": 15, "seems": 1, "ability": 1, "specify": 3, @@ -21554,7 +21835,6 @@ "sections.": 1, "TODO.": 1, "SHEBANG#!#! files": 1, - "Note": 3, "strictly": 1, "speaking": 1, "also": 3, @@ -21590,7 +21870,6 @@ "just": 1, "case.": 1, "SHEBANG#!#! In": 1, - "maketest": 12, "part.": 1, "Still": 1, "under": 1, @@ -21608,258 +21887,6 @@ "SHEBANG#!#! @Returns": 1, "SHEBANG#!#! @Arguments": 1, "SHEBANG#!#! @ChapterInfo": 1, - "Magic.gi": 1, - "BindGlobal": 7, - "str": 8, - "suffix": 3, - "n": 31, - "m": 8, - "{": 21, - "}": 21, - "i": 25, - "d": 16, - "IsDirectoryPath": 1, - "CreateDir": 2, - "currently": 1, - "undocumented": 1, - "fail": 18, - "LastSystemError": 1, - ".message": 1, - "false": 7, - "pkg": 32, - "subdirs": 2, - "extensions": 1, - "d_rel": 6, - "files": 4, - "result": 9, - "DirectoriesPackageLibrary": 2, - "IsEmpty": 6, - "continue": 3, - "Directory": 5, - "DirectoryContents": 1, - "Sort": 1, - "AUTODOC_GetSuffix": 2, - "IsReadableFile": 2, - "Filename": 8, - "Add": 4, - "Make": 1, - "callable": 1, - "package_name": 1, - "AutoDocWorksheet.": 1, - "Which": 1, - "create": 1, - "worksheet": 1, - "package_info": 3, - "opt": 3, - "scaffold": 12, - "gapdoc": 7, - "autodoc": 8, - "pkg_dir": 5, - "doc_dir": 18, - "doc_dir_rel": 3, - "title_page": 7, - "tree": 8, - "is_worksheet": 13, - "position_document_class": 7, - "gapdoc_latex_option_record": 4, - "LowercaseString": 3, - "rec": 20, - "DirectoryCurrent": 1, - "PackageInfo": 1, - "key": 3, - "val": 4, - "ValueOption": 1, - "opt.": 1, - "IsBound": 39, - "opt.dir": 4, - "IsString": 7, - "IsDirectory": 1, - "AUTODOC_CreateDirIfMissing": 1, - "opt.scaffold": 5, - "package_info.AutoDoc": 3, - "IsRecord": 7, - "IsBool": 4, - "AUTODOC_APPEND_RECORD_WRITEONCE": 3, - "AUTODOC_WriteOnce": 10, - "opt.autodoc": 5, - "Concatenation": 15, - "package_info.Dependencies.NeededOtherPackages": 1, - "package_info.Dependencies.SuggestedOtherPackages": 1, - "ForAny": 1, - "autodoc.files": 7, - "autodoc.scan_dirs": 5, - "autodoc.level": 3, - "PushOptions": 1, - "level_value": 1, - "Append": 2, - "AUTODOC_FindMatchingFiles": 2, - "opt.gapdoc": 5, - "opt.maketest": 4, - "gapdoc.main": 8, - "package_info.PackageDoc": 3, - ".BookName": 2, - "gapdoc.bookname": 4, - "#Print": 1, - "gapdoc.files": 9, - "gapdoc.scan_dirs": 3, - "Set": 1, - "Number": 1, - "ListWithIdenticalEntries": 1, - "f": 11, - "DocumentationTree": 1, - "autodoc.section_intros": 2, - "AUTODOC_PROCESS_INTRO_STRINGS": 1, - "Tree": 2, - "AutoDocScanFiles": 1, - "PackageName": 2, - "scaffold.TitlePage": 4, - "scaffold.TitlePage.Title": 2, - ".TitlePage.Title": 2, - "Position": 2, - "Remove": 2, - "JoinStringsWithSeparator": 1, - "ReplacedString": 2, - "Syntax": 1, - "scaffold.document_class": 7, - "PositionSublist": 5, - "GAPDoc2LaTeXProcs.Head": 14, - "..": 6, - "scaffold.latex_header_file": 2, - "StringFile": 2, - "scaffold.gapdoc_latex_options": 4, - "RecNames": 1, - "scaffold.gapdoc_latex_options.": 5, - "IsList": 1, - "scaffold.includes": 4, - "scaffold.bib": 7, - "Unbind": 1, - "scaffold.main_xml_file": 2, - ".TitlePage": 1, - "ExtractTitleInfoFromPackageInfo": 1, - "CreateTitlePage": 1, - "scaffold.MainPage": 2, - "scaffold.dir": 1, - "scaffold.book_name": 1, - "CreateMainPage": 1, - "WriteDocumentation": 1, - "SetGapDocLaTeXOptions": 1, - "MakeGAPDocDoc": 1, - "CopyHTMLStyleFiles": 1, - "GAPDocManualLab": 1, - "maketest.folder": 3, - "maketest.scan_dir": 3, - "CreateMakeTest": 1, - "PackageInfo.g": 2, - "cvec": 1, - "s": 4, - "template": 1, - "SetPackageInfo": 1, - "Subtitle": 1, - "Version": 1, - "Date": 1, - "dd/mm/yyyy": 1, - "format": 2, - "Information": 1, - "about": 3, - "authors": 1, - "maintainers.": 1, - "Persons": 1, - "LastName": 1, - "FirstNames": 1, - "IsAuthor": 1, - "IsMaintainer": 1, - "Email": 1, - "WWWHome": 1, - "PostalAddress": 1, - "Place": 1, - "Institution": 1, - "Status": 2, - "information.": 1, - "Currently": 1, - "cases": 2, - "recognized": 1, - "successfully": 2, - "refereed": 2, - "developers": 1, - "agreed": 1, - "distribute": 1, - "them": 1, - "core": 1, - "system": 1, - "development": 1, - "versions": 1, - "all": 18, - "You": 1, - "must": 6, - "provide": 2, - "next": 6, - "entries": 8, - "status": 1, - "because": 2, - "was": 1, - "#CommunicatedBy": 1, - "#AcceptDate": 1, - "PackageWWWHome": 1, - "README_URL": 1, - ".PackageWWWHome": 2, - "PackageInfoURL": 1, - "ArchiveURL": 1, - ".Version": 2, - "ArchiveFormats": 1, - "Here": 2, - "short": 1, - "abstract": 1, - "explaining": 1, - "content": 1, - "HTML": 1, - "overview": 1, - "Web": 1, - "page": 1, - "an": 17, - "URL": 1, - "Webpage": 1, - "detailed": 1, - "information": 1, - "than": 1, - "few": 1, - "lines": 1, - "less": 1, - "ok": 1, - "Please": 1, - "specifing": 1, - "names.": 1, - "AbstractHTML": 1, - "PackageDoc": 1, - "BookName": 1, - "ArchiveURLSubset": 1, - "HTMLStart": 1, - "PDFFile": 1, - "SixFile": 1, - "LongTitle": 1, - "Dependencies": 1, - "NeededOtherPackages": 1, - "SuggestedOtherPackages": 1, - "ExternalConditions": 1, - "AvailabilityTest": 1, - "SHOW_STAT": 1, - "DirectoriesPackagePrograms": 1, - "#Info": 1, - "InfoWarning": 1, - "*Optional*": 2, - "but": 1, - "recommended": 1, - "path": 1, - "relative": 1, - "root": 1, - "many": 1, - "tests": 1, - "functionality": 1, - "sensible.": 1, - "#TestFile": 1, - "keyword": 1, - "related": 1, - "topic": 1, - "Keywords": 1, "vspc.gd": 1, "library": 2, "Thomas": 2, @@ -21921,12 +21948,15 @@ "

": 23, "Whenever": 1, "talk": 1, + "about": 3, + "an": 17, "": 42, "F": 61, "": 41, "V": 152, "additive": 1, "group": 2, + "on": 5, "acts": 1, "via": 6, "multiplication": 1, @@ -21947,6 +21977,8 @@ "<#/GAPDoc>": 17, "IsLeftActedOnByDivisionRing": 4, "InstallTrueMethod": 4, + "IsFreeLeftModule": 3, + "#F": 17, "IsGaussianSpace": 10, "": 14, "filter": 3, @@ -21956,6 +21988,8 @@ "field": 12, "say": 1, "indicates": 3, + "entries": 8, + "all": 18, "vectors": 16, "matrices": 5, "respectively": 1, @@ -22001,6 +22035,7 @@ "thus": 1, "property": 2, "get": 1, + "because": 2, "usually": 1, "represented": 1, "coefficients": 3, @@ -22051,6 +22086,7 @@ "defines": 1, "method": 4, "installs": 1, + "must": 6, "call": 1, "On": 1, "hand": 1, @@ -22206,6 +22242,7 @@ "Substruct": 1, "common": 1, "Struct": 1, + "cases": 2, "basis.": 1, "handle": 1, "intersections": 1, @@ -22240,6 +22277,7 @@ "NextIterator": 5, "DeclareCategory": 1, "IsDomain": 1, + "#M": 20, "IsFinite": 4, "Returns": 1, "": 1, @@ -22263,9 +22301,137 @@ "source": 2, "range": 1, "b": 8, + "s": 4, + "*": 12, "hold": 1, "IsGeneralMapping": 2, "#E": 2, + "PackageInfo.g": 2, + "cvec": 1, + "template": 1, + "SetPackageInfo": 1, + "Subtitle": 1, + "Version": 1, + "Date": 1, + "dd/mm/yyyy": 1, + "format": 2, + "Information": 1, + "authors": 1, + "maintainers.": 1, + "Persons": 1, + "LastName": 1, + "FirstNames": 1, + "IsAuthor": 1, + "IsMaintainer": 1, + "Email": 1, + "WWWHome": 1, + "PostalAddress": 1, + "Place": 1, + "Institution": 1, + "Status": 2, + "information.": 1, + "Currently": 1, + "recognized": 1, + "successfully": 2, + "refereed": 2, + "developers": 1, + "agreed": 1, + "distribute": 1, + "them": 1, + "core": 1, + "system": 1, + "development": 1, + "versions": 1, + "You": 1, + "provide": 2, + "next": 6, + "status": 1, + "was": 1, + "#CommunicatedBy": 1, + "#AcceptDate": 1, + "PackageWWWHome": 1, + "README_URL": 1, + ".PackageWWWHome": 2, + "PackageInfoURL": 1, + "ArchiveURL": 1, + ".Version": 2, + "ArchiveFormats": 1, + "Here": 2, + "short": 1, + "abstract": 1, + "explaining": 1, + "content": 1, + "HTML": 1, + "overview": 1, + "Web": 1, + "page": 1, + "URL": 1, + "Webpage": 1, + "detailed": 1, + "information": 1, + "than": 1, + "few": 1, + "lines": 1, + "less": 1, + "ok": 1, + "Please": 1, + "specifing": 1, + "names.": 1, + "AbstractHTML": 1, + "PackageDoc": 1, + "BookName": 1, + "ArchiveURLSubset": 1, + "HTMLStart": 1, + "PDFFile": 1, + "SixFile": 1, + "LongTitle": 1, + "Dependencies": 1, + "NeededOtherPackages": 1, + "SuggestedOtherPackages": 1, + "ExternalConditions": 1, + "AvailabilityTest": 1, + "SHOW_STAT": 1, + "DirectoriesPackagePrograms": 1, + "#Info": 1, + "InfoWarning": 1, + "*Optional*": 2, + "but": 1, + "recommended": 1, + "path": 1, + "relative": 1, + "root": 1, + "many": 1, + "tests": 1, + "functionality": 1, + "sensible.": 1, + "#TestFile": 1, + "some": 2, + "keyword": 1, + "related": 1, + "topic": 1, + "Keywords": 1, + "implementation": 1, + "SomeOperation": 1, + "": 2, + "performs": 1, + "operation": 1, + "InstallMethod": 18, + "SomeProperty": 1, + "M": 7, + "IsTrivial": 1, + "TryNextMethod": 7, + "SomeGlobalFunction": 2, + "global": 1, + "variadic": 1, + "funfion.": 1, + "SomeFunc": 1, + "y": 8, + "z": 3, + "func": 3, + "j": 3, + "mod": 2, + "repeat": 1, + "until": 1, "vspc.gi": 1, "generic": 1, "SetLeftActingDomain": 2, @@ -22449,17 +22615,60 @@ ".subsections_via_symbols": 1 }, "GLSL": { + "#version": 2, + "core": 1, + "void": 33, + "main": 7, + "(": 437, + ")": 437, + "{": 84, + "}": 84, + "float": 105, + "cbar": 2, + "int": 8, + ";": 391, + "cfoo": 1, + "CB": 2, + "CD": 2, + "CA": 1, + "CC": 1, + "CBT": 5, + "CDT": 3, + "CAT": 1, + "CCT": 1, + "norA": 4, + "norB": 3, + "norC": 1, + "norD": 1, + "norE": 4, + "norF": 1, + "norG": 1, + "norH": 1, + "norI": 1, + "norcA": 2, + "norcB": 3, + "norcC": 2, + "norcD": 2, + "//": 38, + "head": 1, + "of": 1, + "cycle": 2, + "norcE": 1, + "lead": 1, + "into": 1, + "varying": 6, + "vec4": 77, + "v_color": 4, + "gl_FragColor": 4, "////": 4, "High": 1, "quality": 2, - "(": 437, "Some": 1, "browsers": 1, "may": 1, "freeze": 1, "or": 1, "crash": 1, - ")": 437, "//#define": 10, "HIGHQUALITY": 2, "Medium": 1, @@ -22486,7 +22695,6 @@ "RAGGED_LEAVES": 5, "DETAILED_NOISE": 3, "LIGHT_AA": 3, - "//": 38, "sample": 2, "SSAA": 2, "HEAVY_AA": 2, @@ -22497,11 +22705,9 @@ "#ifdef": 14, "#endif": 14, "const": 19, - "float": 105, "eps": 5, "e": 4, "-": 108, - ";": 391, "PI": 3, "vec3": 165, "sunDir": 5, @@ -22520,13 +22726,10 @@ "tonemapping": 1, "mod289": 4, "x": 11, - "{": 84, "return": 47, "floor": 8, "*": 116, "/": 24, - "}": 84, - "vec4": 77, "permute": 4, "x*34.0": 1, "+": 108, @@ -22727,7 +22930,6 @@ "shadow": 4, "taken": 1, "for": 7, - "int": 8, "rayDir*t": 2, "res": 6, "res.x": 3, @@ -22830,8 +23032,6 @@ "iResolution.x/iResolution.y*0.5": 1, "rd.x": 1, "rd.y": 1, - "void": 33, - "main": 7, "gl_FragCoord.xy": 7, "*0.25": 4, "*0.5": 1, @@ -22843,86 +23043,7 @@ "col*exposure": 1, "x*": 2, ".5": 1, - "gl_FragColor": 4, - "varying": 6, - "v_color": 4, "uniform": 8, - "mat4": 1, - "u_MVPMatrix": 2, - "attribute": 2, - "a_position": 1, - "a_color": 2, - "gl_Position": 1, - "#version": 2, - "core": 1, - "cbar": 2, - "cfoo": 1, - "CB": 2, - "CD": 2, - "CA": 1, - "CC": 1, - "CBT": 5, - "CDT": 3, - "CAT": 1, - "CCT": 1, - "norA": 4, - "norB": 3, - "norC": 1, - "norD": 1, - "norE": 4, - "norF": 1, - "norG": 1, - "norH": 1, - "norI": 1, - "norcA": 2, - "norcB": 3, - "norcC": 2, - "norcD": 2, - "head": 1, - "of": 1, - "cycle": 2, - "norcE": 1, - "lead": 1, - "into": 1, - "NUM_LIGHTS": 4, - "AMBIENT": 2, - "MAX_DIST": 3, - "MAX_DIST_SQUARED": 3, - "lightColor": 3, - "[": 29, - "]": 29, - "fragmentNormal": 2, - "cameraVector": 2, - "lightVector": 4, - "initialize": 1, - "diffuse/specular": 1, - "lighting": 1, - "diffuse": 4, - "specular": 4, - "the": 1, - "fragment": 1, - "and": 2, - "direction": 1, - "cameraDir": 2, - "loop": 1, - "through": 1, - "each": 1, - "calculate": 1, - "distance": 1, - "between": 1, - "distFactor": 3, - "lightDir": 3, - "diffuseDot": 2, - "halfAngle": 2, - "specularColor": 2, - "specularDot": 2, - "sample.rgb": 1, - "sample.a": 1, - "static": 1, - "char*": 1, - "SimpleFragmentShader": 1, - "STRINGIFY": 1, - "FrontColor": 2, "kCoeff": 2, "kCube": 2, "uShift": 3, @@ -22944,6 +23065,8 @@ "f": 17, "r*r": 1, "inverse_f": 2, + "[": 29, + "]": 29, "lut": 9, "max_r": 2, "incr": 2, @@ -22973,39 +23096,417 @@ "sampled.b": 1, ".b": 1, "gl_FragColor.rgba": 1, - "sampled.rgb": 1 + "sampled.rgb": 1, + "static": 1, + "char*": 1, + "SimpleFragmentShader": 1, + "STRINGIFY": 1, + "FrontColor": 2, + "NUM_LIGHTS": 4, + "AMBIENT": 2, + "MAX_DIST": 3, + "MAX_DIST_SQUARED": 3, + "lightColor": 3, + "fragmentNormal": 2, + "cameraVector": 2, + "lightVector": 4, + "initialize": 1, + "diffuse/specular": 1, + "lighting": 1, + "diffuse": 4, + "specular": 4, + "the": 1, + "fragment": 1, + "and": 2, + "direction": 1, + "cameraDir": 2, + "loop": 1, + "through": 1, + "each": 1, + "calculate": 1, + "distance": 1, + "between": 1, + "distFactor": 3, + "lightDir": 3, + "diffuseDot": 2, + "halfAngle": 2, + "specularColor": 2, + "specularDot": 2, + "sample.rgb": 1, + "sample.a": 1, + "mat4": 1, + "u_MVPMatrix": 2, + "attribute": 2, + "a_position": 1, + "a_color": 2, + "gl_Position": 1 }, "Game Maker Language": { - "//draws": 1, - "the": 62, - "sprite": 12, - "draw": 3, - "true": 73, + "var": 79, + "victim": 10, + "killer": 11, + "assistant": 16, + "damageSource": 18, ";": 1282, + "argument0": 28, + "argument1": 10, + "argument2": 3, + "argument3": 1, "if": 397, "(": 1501, + "instance_exists": 8, + ")": 1502, + "noone": 7, + "//*************************************": 6, + "//*": 3, + "Scoring": 1, + "and": 155, + "Kill": 1, + "log": 1, + "recordKillInLog": 1, + "victim.stats": 1, + "[": 99, + "DEATHS": 1, + "]": 103, + "+": 206, + "{": 300, + "WEAPON_KNIFE": 1, + "||": 16, + "WEAPON_BACKSTAB": 1, + "killer.stats": 8, + "STABS": 2, + "killer.roundStats": 8, + "POINTS": 10, + "}": 307, + "victim.object.currentWeapon.object_index": 1, + "Medigun": 2, + "victim.object.currentWeapon.uberReady": 1, + "BONUS": 2, + "KILLS": 2, + "victim.object.intel": 1, + "DEFENSES": 2, + "recordEventInLog": 1, + "killer.team": 1, + "killer.name": 2, + "global.myself": 4, + "assistant.stats": 2, + "ASSISTS": 2, + "assistant.roundStats": 2, + ".5": 2, + "//SPEC": 1, + "instance_create": 20, + "victim.object.x": 3, + "victim.object.y": 3, + "Spectator": 1, + "Gibbing": 2, + "xoffset": 5, + "yoffset": 5, + "xsize": 3, + "ysize": 3, + "view_xview": 3, + "view_yview": 3, + "view_wview": 2, + "view_hview": 2, + "randomize": 1, + "with": 47, + "victim.object": 2, + "WEAPON_ROCKETLAUNCHER": 1, + "or": 78, + "WEAPON_MINEGUN": 1, + "FRAG_BOX": 2, + "WEAPON_REFLECTED_STICKY": 1, + "WEAPON_REFLECTED_ROCKET": 1, + "FINISHED_OFF_GIB": 2, + "GENERATOR_EXPLOSION": 2, + "player.class": 15, + "CLASS_QUOTE": 3, + "global.gibLevel": 14, + "distance_to_point": 3, + "xsize/2": 2, + "ysize/2": 2, + "<": 39, + "hasReward": 4, + "repeat": 7, + "*": 18, + "createGib": 14, + "x": 76, + "y": 85, + "PumpkinGib": 1, + "hspeed": 14, + "vspeed": 13, + "random": 21, + "-": 212, + "choose": 8, + "false": 85, + "true": 73, + "else": 151, + "Gib": 1, + "switch": 9, + "player.team": 8, + "case": 50, + "TEAM_BLUE": 6, + "BlueClump": 1, + "break": 58, + "TEAM_RED": 8, + "RedClump": 1, + "blood": 2, + "BloodDrop": 1, + "blood.hspeed": 1, + "blood.vspeed": 1, + "blood.sprite_index": 1, + "PumpkinJuiceS": 1, + "//All": 1, + "Classes": 1, + "gib": 1, + "head": 1, + "hands": 2, + "feet": 1, + "Headgib": 1, + "//Medic": 1, + "has": 2, + "specially": 1, + "colored": 1, + "CLASS_MEDIC": 2, + "Hand": 3, + "Feet": 1, + "//Class": 1, + "specific": 1, + "gibs": 1, + "CLASS_PYRO": 2, + "Accesory": 5, + "CLASS_SOLDIER": 2, + "CLASS_ENGINEER": 3, + "CLASS_SNIPER": 3, + "playsound": 2, + "deadbody": 2, + "DeathSnd1": 1, + "DeathSnd2": 1, + "DeadGuy": 1, + "player": 36, + "deadbody.sprite_index": 2, + "haxxyStatue": 1, + "deadbody.image_index": 2, + "sprite_index": 14, + "CHARACTER_ANIMATION_DEAD": 1, + "deadbody.hspeed": 1, + "deadbody.vspeed": 1, + "deadbody.image_xscale": 1, + "global.gg_birthday": 1, + "myHat": 2, + "PartyHat": 1, + "myHat.image_index": 2, + "victim.team": 2, + "global.xmas": 1, + "XmasHat": 1, + "instance_destroy": 7, + "Deathcam": 1, + "global.killCam": 3, + "KILL_BOX": 1, + "FINISHED_OFF": 5, + "DeathCam": 1, + "DeathCam.killedby": 1, + "DeathCam.name": 1, + "DeathCam.oldxview": 1, + "DeathCam.oldyview": 1, + "DeathCam.lastDamageSource": 1, + "DeathCam.team": 1, + "global.myself.team": 3, + "#define": 26, + "__jso_gmt_tuple": 1, + "//Position": 1, + "address": 1, + "table": 1, + "data": 4, + "pos": 2, + "addr_table": 2, + "*argument_count": 1, + "//Build": 1, + "the": 62, + "tuple": 1, + "element": 8, + "by": 5, + "i": 95, + "ca": 1, + "isstr": 1, + "datastr": 1, + "for": 26, + "argument_count": 1, + "//Check": 1, + "argument": 10, + "Unexpected": 18, + "character": 20, + "at": 23, + "position": 16, + ".": 12, + "t": 23, + "f": 5, + "end": 11, + "of": 25, + "list": 36, + "in": 21, + "JSON": 5, + "string.": 5, + "string": 13, + "Cannot": 5, + "parse": 3, + "boolean": 3, + "value": 13, + "real": 14, + "expecting": 9, + "a": 55, + "digit.": 9, + "e": 4, + "E": 4, + "dot": 1, + "an": 24, + "integer": 6, + "Expected": 6, + "least": 6, + "arguments": 26, + "got": 6, + "map": 47, + "find": 10, + "lookup.": 4, + "use": 4, + "indices": 1, + "nested": 27, + "lists": 6, + "Index": 1, + "overflow": 4, + "Recursive": 1, + "abcdef": 1, + "Invalid": 2, + "hex": 2, + "number": 7, + "return": 56, + "num": 1, + "//": 11, + "global.levelType": 22, + "//global.currLevel": 1, + "global.currLevel": 22, + "global.hadDarkLevel": 4, + "global.startRoomX": 1, + "global.startRoomY": 1, + "global.endRoomX": 1, + "global.endRoomY": 1, + "oGame.levelGen": 2, + "j": 14, + "global.roomPath": 1, + "k": 5, + "global.lake": 3, + "<=>": 3, + "1": 32, + "not": 63, + "isLevel": 1, + "999": 2, + "global": 8, + "levelType": 2, + "2": 2, + "16": 14, + "0": 21, + "656": 3, + "obj": 14, + "oDark": 2, + "invincible": 2, + "sDark": 1, + "4": 2, + "oTemple": 2, + "cityOfGold": 1, + "sTemple": 2, + "lake": 1, + "i*16": 8, + "j*16": 6, + "oLush": 2, + "obj.sprite_index": 4, + "sLush": 2, + "obj.invincible": 3, + "oBrick": 1, + "sBrick": 1, + "global.cityOfGold": 2, + "*16": 2, + "//instance_create": 2, + "oSpikes": 1, + "background_index": 1, + "bgTemple": 1, + "global.temp1": 1, + "global.gameStart": 3, + "scrLevelGen": 1, + "global.cemetary": 3, + "rand": 10, + "global.probCemetary": 1, + "oRoom": 1, + "scrRoomGen": 1, + "global.blackMarket": 3, + "scrRoomGenMarket": 1, + "scrRoomGen2": 1, + "global.yetiLair": 2, + "scrRoomGenYeti": 1, + "scrRoomGen3": 1, + "scrRoomGen4": 1, + "scrRoomGen5": 1, + "global.darkLevel": 4, + "//if": 5, + "global.noDarkLevel": 1, + "global.probDarkLevel": 1, + "oPlayer1.x": 2, + "oPlayer1.y": 2, + "oFlare": 1, + "global.genUdjatEye": 4, + "global.madeUdjatEye": 1, + "global.genMarketEntrance": 4, + "global.madeMarketEntrance": 1, + "////////////////////////////": 2, + "global.temp2": 1, + "isRoom": 3, + "scrEntityGen": 1, + "oEntrance": 1, + "global.customLevel": 1, + "oEntrance.x": 1, + "oEntrance.y": 1, + "global.snakePit": 1, + "global.alienCraft": 1, + "global.sacrificePit": 1, + "oPlayer1": 1, + "alarm": 13, + "scrSetupWalls": 3, + "global.graphicsHigh": 1, + "tile_add": 4, + "bgExtrasLush": 1, + "*rand": 12, + "bgExtrasIce": 1, + "bgExtrasTemple": 1, + "bgExtras": 1, + "global.murderer": 1, + "global.thiefLevel": 1, + "isRealLevel": 1, + "oExit": 1, + "type": 8, + "oShopkeeper": 1, + "obj.status": 1, + "oTreasure": 1, + "collision_point": 30, + "oSolid": 14, + "instance_place": 3, + "oWater": 1, + "sWaterTop": 1, + "sLavaTop": 1, + "scrCheckWaterTop": 1, + "global.temp3": 1, + "//draws": 1, + "sprite": 12, + "draw": 3, "facing": 17, "RIGHT": 10, - ")": 1502, "image_xscale": 17, - "-": 212, - "else": 151, "blinkToggle": 1, - "{": 300, "state": 50, "CLIMBING": 5, - "or": 78, - "sprite_index": 14, "sPExit": 1, "sDamselExit": 1, "sTunnelExit": 1, - "and": 155, "global.hasJetpack": 4, - "not": 63, "whipping": 5, "draw_sprite_ext": 10, - "x": 76, - "y": 85, "image_yscale": 14, "image_angle": 14, "image_blend": 2, @@ -23013,11 +23514,8 @@ "//draw_sprite": 1, "draw_sprite": 9, "sJetpackBack": 1, - "false": 85, - "}": 307, "sJetpackRight": 1, "sJetpackLeft": 1, - "+": 206, "redColor": 2, "make_color_rgb": 1, "holdArrow": 4, @@ -23029,6 +23527,515 @@ "LEFT": 7, "sArrowLeft": 1, "sBombArrowLeft": 2, + "exit": 10, + "xr": 19, + "yr": 19, + "round": 6, + "cloakAlpha": 1, + "team": 13, + "canCloak": 1, + "cloakAlpha/2": 1, + "invisible": 1, + "stabbing": 2, + "power": 1, + "currentWeapon.stab.alpha": 1, + "&&": 6, + "global.showHealthBar": 3, + "draw_set_alpha": 3, + "draw_healthbar": 1, + "hp*100/maxHp": 1, + "c_black": 1, + "c_red": 3, + "c_green": 1, + "mouse_x": 1, + "mouse_y": 1, + "<25)>": 1, + "cloak": 2, + "myself": 2, + "draw_set_halign": 1, + "fa_center": 1, + "draw_set_valign": 1, + "fa_bottom": 1, + "team=": 1, + "draw_set_color": 2, + "c_blue": 2, + "draw_text": 4, + "35": 1, + "name": 9, + "showTeammateStats": 1, + "weapons": 3, + "50": 3, + "Superburst": 1, + "currentWeapon": 2, + "uberCharge": 1, + "20": 1, + "Shotgun": 1, + "Nuts": 1, + "N": 1, + "Bolts": 1, + "nutsNBolts": 1, + "Minegun": 1, + "Lobbed": 1, + "Mines": 1, + "lobbed": 1, + "ubercolour": 6, + "overlaySprite": 6, + "zoomed": 1, + "SniperCrouchRedS": 1, + "SniperCrouchBlueS": 1, + "sniperCrouchOverlay": 1, + "overlay": 1, + "omnomnomnom": 2, + "draw_sprite_ext_overlay": 7, + "omnomnomnomSprite": 2, + "omnomnomnomOverlay": 2, + "omnomnomnomindex": 4, + "c_white": 13, + "ubered": 7, + "7": 4, + "taunting": 2, + "tauntsprite": 2, + "tauntOverlay": 2, + "tauntindex": 2, + "humiliated": 1, + "humiliationPoses": 1, + "floor": 11, + "animationImage": 9, + "humiliationOffset": 1, + "animationOffset": 6, + "burnDuration": 2, + "burnIntensity": 2, + "numFlames": 1, + "/": 5, + "maxIntensity": 1, + "FlameS": 1, + "flameArray_x": 1, + "flameArray_y": 1, + "maxDuration": 1, + "demon": 4, + "demonX": 5, + "median": 2, + "demonY": 4, + "demonOffset": 4, + "demonDir": 2, + "abs": 9, + "dir": 3, + "demonFrame": 5, + "sprite_get_number": 1, + "*player.team": 2, + "dir*1": 2, + "downloadHandle": 3, + "url": 62, + "tmpfile": 3, + "window_oldshowborder": 2, + "window_oldfullscreen": 2, + "timeLeft": 1, + "counter": 1, + "AudioControlPlaySong": 1, + "window_get_showborder": 1, + "window_get_fullscreen": 1, + "window_set_fullscreen": 2, + "window_set_showborder": 1, + "global.updaterBetaChannel": 3, + "UPDATE_SOURCE_BETA": 1, + "UPDATE_SOURCE": 1, + "temp_directory": 1, + "httpGet": 1, + "while": 15, + "httpRequestStatus": 1, + "download": 1, + "isn": 1, + "s": 6, + "extract": 1, + "downloaded": 1, + "file": 2, + "now.": 1, + "extractzip": 1, + "working_directory": 6, + "execute_program": 1, + "game_end": 1, + "RoomChangeObserver": 1, + "set_little_endian_global": 1, + "file_exists": 5, + "file_delete": 3, + "backupFilename": 5, + "file_find_first": 1, + "file_find_next": 1, + "file_find_close": 1, + "customMapRotationFile": 7, + "restart": 4, + "//import": 1, + "wav": 1, + "files": 1, + "music": 1, + "global.MenuMusic": 3, + "sound_add": 3, + "global.IngameMusic": 3, + "global.FaucetMusic": 3, + "sound_volume": 3, + "global.sendBuffer": 19, + "buffer_create": 7, + "global.tempBuffer": 3, + "global.HudCheck": 1, + "global.map_rotation": 19, + "ds_list_create": 5, + "global.CustomMapCollisionSprite": 1, + "window_set_region_scale": 1, + "ini_open": 2, + "global.playerName": 7, + "ini_read_string": 12, + "string_count": 2, + "string_copy": 32, + "min": 4, + "string_length": 25, + "MAX_PLAYERNAME_LENGTH": 2, + "global.fullscreen": 3, + "ini_read_real": 65, + "global.useLobbyServer": 2, + "global.hostingPort": 2, + "global.music": 2, + "MUSIC_BOTH": 1, + "global.playerLimit": 4, + "//thy": 1, + "playerlimit": 1, + "shalt": 1, + "exceed": 1, + "global.dedicatedMode": 7, + "show_message": 7, + "ini_write_real": 60, + "global.multiClientLimit": 2, + "global.particles": 2, + "PARTICLES_NORMAL": 1, + "global.monitorSync": 3, + "set_synchronization": 2, + "global.medicRadar": 2, + "global.showHealer": 2, + "global.showHealing": 2, + "global.showTeammateStats": 2, + "global.serverPluginsPrompt": 2, + "global.restartPrompt": 2, + "//user": 1, + "HUD": 1, + "settings": 1, + "global.timerPos": 2, + "global.killLogPos": 2, + "global.kothHudPos": 2, + "global.clientPassword": 1, + "global.shuffleRotation": 2, + "global.timeLimitMins": 2, + "max": 2, + "global.serverPassword": 2, + "global.mapRotationFile": 1, + "global.serverName": 2, + "global.welcomeMessage": 2, + "global.caplimit": 3, + "global.caplimitBkup": 1, + "global.autobalance": 2, + "global.Server_RespawntimeSec": 4, + "global.rewardKey": 1, + "unhex": 1, + "global.rewardId": 1, + "global.mapdownloadLimitBps": 2, + "isBetaVersion": 1, + "global.attemptPortForward": 2, + "global.serverPluginList": 3, + "global.serverPluginsRequired": 2, + "CrosshairFilename": 5, + "CrosshairRemoveBG": 4, + "global.queueJumping": 2, + "global.backgroundHash": 2, + "global.backgroundTitle": 2, + "global.backgroundURL": 2, + "global.backgroundShowVersion": 2, + "readClasslimitsFromIni": 1, + "global.currentMapArea": 1, + "global.totalMapAreas": 1, + "global.setupTimer": 1, + "global.joinedServerName": 2, + "global.serverPluginsInUse": 1, + "global.pluginPacketBuffers": 1, + "ds_map_create": 4, + "global.pluginPacketPlayers": 1, + "ini_write_string": 10, + "ini_key_delete": 1, + "global.classlimits": 10, + "CLASS_SCOUT": 1, + "CLASS_HEAVY": 2, + "CLASS_DEMOMAN": 1, + "CLASS_SPY": 1, + "//screw": 1, + "index": 11, + "we": 5, + "will": 1, + "start": 1, + "//map_truefort": 1, + "maps": 37, + "//map_2dfort": 1, + "//map_conflict": 1, + "//map_classicwell": 1, + "//map_waterway": 1, + "//map_orange": 1, + "//map_dirtbowl": 1, + "//map_egypt": 1, + "//arena_montane": 1, + "//arena_lumberyard": 1, + "//gen_destroy": 1, + "//koth_valley": 1, + "//koth_corinth": 1, + "//koth_harvest": 1, + "//dkoth_atalia": 1, + "//dkoth_sixties": 1, + "//Server": 1, + "respawn": 1, + "time": 1, + "calculator.": 1, + "Converts": 1, + "each": 18, + "second": 2, + "to": 62, + "frame.": 1, + "read": 1, + "multiply": 1, + "hehe": 1, + "global.Server_Respawntime": 3, + "global.mapchanging": 1, + "ini_close": 2, + "global.protocolUuid": 2, + "parseUuid": 2, + "PROTOCOL_UUID": 1, + "global.gg2lobbyId": 2, + "GG2_LOBBY_UUID": 1, + "initRewards": 1, + "IPRaw": 3, + "portRaw": 3, + "doubleCheck": 8, + "global.launchMap": 5, + "parameter_count": 1, + "parameter_string": 8, + "global.serverPort": 1, + "global.serverIP": 1, + "global.isHost": 1, + "Client": 1, + "global.customMapdesginated": 2, + "fileHandle": 6, + "mapname": 9, + "file_text_open_read": 1, + "file_text_eof": 1, + "file_text_read_string": 1, + "string_char_at": 13, + "chr": 3, + "it": 6, + "starts": 1, + "space": 4, + "tab": 2, + "string_delete": 1, + "delete": 1, + "that": 2, + "comment": 1, + "starting": 1, + "#": 3, + "ds_list_add": 23, + "file_text_readln": 1, + "file_text_close": 1, + "load": 1, + "from": 5, + "ini": 1, + "Maps": 9, + "section": 1, + "//Set": 1, + "up": 6, + "rotation": 1, + "stuff": 2, + "sort_list": 7, + "*maps": 1, + "ds_list_sort": 1, + "ds_list_size": 11, + "ds_list_find_value": 9, + "mod": 1, + "ds_list_destroy": 4, + "global.gg2Font": 2, + "font_add_sprite": 2, + "gg2FontS": 1, + "ord": 16, + "global.countFont": 1, + "countFontS": 1, + "draw_set_font": 1, + "cursor_sprite": 1, + "CrosshairS": 5, + "directory_exists": 2, + "directory_create": 2, + "AudioControl": 1, + "SSControl": 1, + "message_background": 1, + "popupBackgroundB": 1, + "message_button": 1, + "popupButtonS": 1, + "message_text_font": 1, + "message_button_font": 1, + "message_input_font": 1, + "//Key": 1, + "Mapping": 1, + "global.jump": 1, + "global.down": 1, + "global.left": 1, + "global.right": 1, + "global.attack": 1, + "MOUSE_LEFT": 1, + "global.special": 1, + "MOUSE_RIGHT": 1, + "global.taunt": 1, + "global.chat1": 1, + "global.chat2": 1, + "global.chat3": 1, + "global.medic": 1, + "global.drop": 1, + "global.changeTeam": 1, + "global.changeClass": 1, + "global.showScores": 1, + "vk_shift": 1, + "calculateMonthAndDay": 1, + "loadplugins": 1, + "registry_set_root": 1, + "HKLM": 1, + "global.NTKernelVersion": 1, + "registry_read_string_ext": 1, + "CurrentVersion": 1, + "SIC": 1, + "sprite_replace": 1, + "sprite_set_offset": 1, + "sprite_get_width": 1, + "/2": 2, + "sprite_get_height": 1, + "AudioControlToggleMute": 1, + "room_goto_fix": 2, + "Menu": 2, + "assert_true": 1, + "_assert_error_popup": 2, + "string_repeat": 2, + "_assert_newline": 2, + "assert_false": 1, + "assert_equal": 1, + "//Safe": 1, + "equality": 1, + "check": 1, + "won": 1, + "support": 1, + "show_error": 2, + "instead": 1, + "_assert_debug_value": 1, + "//String": 1, + "is_string": 2, + "os_browser": 1, + "browser_not_a_browser": 1, + "string_replace_all": 1, + "//Numeric": 1, + "GMTuple": 1, + "jso_encode_string": 1, + "failed": 56, + "encode": 8, + "escape": 2, + "jso_encode_map": 4, + "empty": 13, + "key": 17, + "one": 42, + "key1": 3, + "key2": 3, + "multi": 7, + "jso_encode_list": 3, + "three": 36, + "_jso_decode_string": 5, + "decode": 36, + "small": 1, + "The": 6, + "quick": 2, + "brown": 2, + "fox": 2, + "jumps": 3, + "over": 2, + "lazy": 2, + "dog.": 2, + "simple": 1, + "characters": 3, + "Waahoo": 1, + "negg": 1, + "mixed": 1, + "_jso_decode_boolean": 2, + "_jso_decode_real": 11, + "standard": 1, + "zero": 4, + "signed": 2, + "decimal": 1, + "digits": 1, + "positive": 7, + "negative": 7, + "exponent": 4, + "_jso_decode_integer": 3, + "_jso_decode_map": 14, + "didn": 14, + "include": 14, + "right": 14, + "prefix": 14, + "#1": 14, + "#2": 14, + "entry": 29, + "pi": 2, + "bool": 2, + "waahoo": 10, + "woohah": 8, + "mix": 4, + "_jso_decode_list": 14, + "woo": 2, + "Empty": 4, + "should": 25, + "equal": 20, + "other.": 12, + "junk": 2, + "info": 1, + "taxi": 1, + "An": 4, + "filled": 4, + "map.": 2, + "A": 24, + "B": 18, + "C": 8, + "same": 6, + "content": 4, + "entered": 4, + "different": 12, + "orders": 4, + "D": 1, + "keys": 2, + "values": 4, + "six": 1, + "corresponding": 4, + "types": 4, + "other": 4, + "crash.": 4, + "list.": 2, + "Lists": 4, + "two": 16, + "entries": 2, + "also": 2, + "jso_map_check": 9, + "existing": 9, + "single": 11, + "jso_map_lookup": 3, + "found": 21, + "wrong": 10, + "trap": 2, + "jso_map_lookup_type": 3, + "four": 21, + "inexistent": 11, + "multiple": 20, + "jso_list_check": 8, + "jso_list_lookup": 3, + "jso_list_lookup_type": 3, + "inner": 1, + "indexing": 1, + "on": 4, + "bad": 1, + "jso_cleanup_map": 1, + "one_map": 1, "hangCountMax": 2, "//////////////////////////////////////": 2, "kLeft": 12, @@ -23097,7 +24104,6 @@ "isCollisionPlatformBottom": 1, "isCollisionPlatform": 1, "isCollisionWaterTop": 1, - "collision_point": 30, "oIce": 1, "checkRun": 1, "runHeld": 3, @@ -23109,20 +24115,11 @@ "ON_GROUND": 18, "DUCKING": 4, "pushTimer": 3, - "//if": 5, "SS_IsSoundPlaying": 2, "global.sndPush": 4, "playSound": 3, "runAcc": 2, - "abs": 9, - "alarm": 13, - "[": 99, - "]": 103, - "<": 39, - "floor": 11, - "/": 5, "/xVel": 1, - "instance_exists": 8, "oCape": 2, "oCape.open": 6, "kJumped": 7, @@ -23144,17 +24141,13 @@ "gravityIntensity": 2, "yVel": 20, "RUNNING": 3, - "jumps": 3, "//playSound": 1, "global.sndLand": 1, "grav": 22, "global.hasGloves": 3, "hangCount": 14, - "*": 18, "yVel*0.3": 1, "oWeb": 2, - "obj": 14, - "instance_place": 3, "obj.life": 1, "initialJumpAcc": 6, "xVel/2": 3, @@ -23168,15 +24161,12 @@ "global.sndJump": 1, "jumpTimeTotal": 2, "//let": 1, - "character": 20, "continue": 4, - "to": 62, "jump": 1, "jumpTime/jumpTimeTotal": 1, "looking": 2, "UP": 1, "LOOKING_UP": 4, - "oSolid": 14, "move_snap": 6, "oTree": 4, "oArrow": 5, @@ -23184,16 +24174,12 @@ "obj.stuck": 1, "//the": 2, "can": 1, - "t": 23, "want": 1, - "use": 4, "because": 2, "is": 9, "too": 2, "high": 1, "yPrevHigh": 1, - "//": 11, - "we": 5, "ll": 1, "move": 2, "correct": 1, @@ -23202,7 +24188,6 @@ "need": 1, "shorten": 1, "out": 4, - "a": 55, "little": 1, "ratio": 1, "xVelInteger": 2, @@ -23211,7 +24196,6 @@ "be": 4, "changed": 1, "moveTo": 2, - "round": 6, "xVelInteger*ratio": 1, "yVelInteger*ratio": 1, "slopeChangeInY": 1, @@ -23223,7 +24207,6 @@ "so": 2, "down": 1, "upYPrev": 1, - "for": 26, "<=upYPrev+maxDownSlope;y+=1)>": 1, "hit": 1, "solid": 1, @@ -23231,27 +24214,20 @@ "upYPrev=": 1, "I": 1, "know": 1, - "that": 2, "this": 2, "doesn": 1, "seem": 1, "make": 1, "sense": 1, - "of": 25, - "name": 9, "variable": 1, - "it": 6, "all": 3, "works": 1, "correctly": 1, "after": 1, - "break": 58, "loop": 1, "y=": 1, "figures": 1, "what": 1, - "index": 11, - "should": 25, "characterSprite": 1, "sets": 1, "previous": 2, @@ -23261,1053 +24237,34 @@ "calculates": 1, "image_speed": 9, "based": 1, - "on": 4, - "s": 6, "velocity": 1, "runAnimSpeed": 1, - "0": 21, - "1": 32, "sqrt": 1, "sqr": 2, "climbAnimSpeed": 1, - "<=>": 3, - "4": 2, "setCollisionBounds": 3, "8": 9, "5": 5, "DUCKTOHANG": 1, "image_index": 1, "limit": 5, - "at": 23, "animation": 1, "always": 1, "looks": 1, "good": 1, - "var": 79, - "i": 95, - "playerObject": 1, - "playerID": 1, - "player": 36, - "otherPlayerID": 1, - "otherPlayer": 1, - "sameVersion": 1, - "buffer": 1, - "plugins": 4, - "pluginsRequired": 2, - "usePlugins": 1, - "tcp_eof": 3, - "global.serverSocket": 10, - "gotServerHello": 2, - "show_message": 7, - "instance_destroy": 7, - "exit": 10, - "room": 1, - "DownloadRoom": 1, - "keyboard_check": 1, - "vk_escape": 1, - "downloadingMap": 2, - "while": 15, - "tcp_receive": 3, - "min": 4, - "downloadMapBytes": 2, - "buffer_size": 2, - "downloadMapBuffer": 6, - "write_buffer": 2, - "write_buffer_to_file": 1, - "downloadMapName": 3, - "buffer_destroy": 8, - "roomchange": 2, - "do": 1, - "switch": 9, - "read_ubyte": 10, - "case": 50, - "HELLO": 1, - "global.joinedServerName": 2, - "receivestring": 4, - "advertisedMapMd5": 1, - "receiveCompleteMessage": 1, - "global.tempBuffer": 3, - "string_pos": 20, - "Server": 3, - "sent": 7, - "illegal": 2, - "map": 47, - "This": 2, - "server": 10, - "requires": 1, - "following": 2, - "play": 2, - "#": 3, - "suggests": 1, - "optional": 1, - "Error": 2, - "ocurred": 1, - "loading": 1, - "plugins.": 1, - "Maps/": 2, - ".png": 2, - "The": 6, - "version": 4, - "Enter": 1, - "Password": 1, - "Incorrect": 1, - "Password.": 1, - "Incompatible": 1, - "protocol": 3, - "version.": 1, - "Name": 1, - "Exploit": 1, - "Invalid": 2, - "plugin": 6, - "packet": 3, - "ID": 2, - "There": 1, - "are": 1, - "many": 1, - "connections": 1, - "from": 5, - "your": 1, - "IP": 1, - "You": 1, - "have": 2, - "been": 1, - "kicked": 1, - "server.": 1, - ".": 12, - "#Server": 1, - "went": 1, - "invalid": 1, - "internal": 1, - "#Exiting.": 1, - "full.": 1, - "noone": 7, - "ERROR": 1, - "when": 1, - "reading": 1, - "no": 1, - "such": 1, - "unexpected": 1, - "data.": 1, - "until": 1, - "downloadHandle": 3, - "url": 62, - "tmpfile": 3, - "window_oldshowborder": 2, - "window_oldfullscreen": 2, - "timeLeft": 1, - "counter": 1, - "AudioControlPlaySong": 1, - "window_get_showborder": 1, - "window_get_fullscreen": 1, - "window_set_fullscreen": 2, - "window_set_showborder": 1, - "global.updaterBetaChannel": 3, - "UPDATE_SOURCE_BETA": 1, - "UPDATE_SOURCE": 1, - "temp_directory": 1, - "httpGet": 1, - "httpRequestStatus": 1, - "download": 1, - "isn": 1, - "extract": 1, - "downloaded": 1, - "file": 2, - "now.": 1, - "extractzip": 1, - "working_directory": 6, - "execute_program": 1, - "game_end": 1, - "victim": 10, - "killer": 11, - "assistant": 16, - "damageSource": 18, - "argument0": 28, - "argument1": 10, - "argument2": 3, - "argument3": 1, - "//*************************************": 6, - "//*": 3, - "Scoring": 1, - "Kill": 1, - "log": 1, - "recordKillInLog": 1, - "victim.stats": 1, - "DEATHS": 1, - "WEAPON_KNIFE": 1, - "||": 16, - "WEAPON_BACKSTAB": 1, - "killer.stats": 8, - "STABS": 2, - "killer.roundStats": 8, - "POINTS": 10, - "victim.object.currentWeapon.object_index": 1, - "Medigun": 2, - "victim.object.currentWeapon.uberReady": 1, - "BONUS": 2, - "KILLS": 2, - "victim.object.intel": 1, - "DEFENSES": 2, - "recordEventInLog": 1, - "killer.team": 1, - "killer.name": 2, - "global.myself": 4, - "assistant.stats": 2, - "ASSISTS": 2, - "assistant.roundStats": 2, - ".5": 2, - "//SPEC": 1, - "instance_create": 20, - "victim.object.x": 3, - "victim.object.y": 3, - "Spectator": 1, - "Gibbing": 2, - "xoffset": 5, - "yoffset": 5, - "xsize": 3, - "ysize": 3, - "view_xview": 3, - "view_yview": 3, - "view_wview": 2, - "view_hview": 2, - "randomize": 1, - "with": 47, - "victim.object": 2, - "WEAPON_ROCKETLAUNCHER": 1, - "WEAPON_MINEGUN": 1, - "FRAG_BOX": 2, - "WEAPON_REFLECTED_STICKY": 1, - "WEAPON_REFLECTED_ROCKET": 1, - "FINISHED_OFF_GIB": 2, - "GENERATOR_EXPLOSION": 2, - "player.class": 15, - "CLASS_QUOTE": 3, - "global.gibLevel": 14, - "distance_to_point": 3, - "xsize/2": 2, - "ysize/2": 2, - "hasReward": 4, - "repeat": 7, - "createGib": 14, - "PumpkinGib": 1, - "hspeed": 14, - "vspeed": 13, - "random": 21, - "choose": 8, - "Gib": 1, - "player.team": 8, - "TEAM_BLUE": 6, - "BlueClump": 1, - "TEAM_RED": 8, - "RedClump": 1, - "blood": 2, - "BloodDrop": 1, - "blood.hspeed": 1, - "blood.vspeed": 1, - "blood.sprite_index": 1, - "PumpkinJuiceS": 1, - "//All": 1, - "Classes": 1, - "gib": 1, - "head": 1, - "hands": 2, - "feet": 1, - "Headgib": 1, - "//Medic": 1, - "has": 2, - "specially": 1, - "colored": 1, - "CLASS_MEDIC": 2, - "Hand": 3, - "Feet": 1, - "//Class": 1, - "specific": 1, - "gibs": 1, - "CLASS_PYRO": 2, - "Accesory": 5, - "CLASS_SOLDIER": 2, - "CLASS_ENGINEER": 3, - "CLASS_SNIPER": 3, - "playsound": 2, - "deadbody": 2, - "DeathSnd1": 1, - "DeathSnd2": 1, - "DeadGuy": 1, - "deadbody.sprite_index": 2, - "haxxyStatue": 1, - "deadbody.image_index": 2, - "CHARACTER_ANIMATION_DEAD": 1, - "deadbody.hspeed": 1, - "deadbody.vspeed": 1, - "deadbody.image_xscale": 1, - "global.gg_birthday": 1, - "myHat": 2, - "PartyHat": 1, - "myHat.image_index": 2, - "victim.team": 2, - "global.xmas": 1, - "XmasHat": 1, - "Deathcam": 1, - "global.killCam": 3, - "KILL_BOX": 1, - "FINISHED_OFF": 5, - "DeathCam": 1, - "DeathCam.killedby": 1, - "DeathCam.name": 1, - "DeathCam.oldxview": 1, - "DeathCam.oldyview": 1, - "DeathCam.lastDamageSource": 1, - "DeathCam.team": 1, - "global.myself.team": 3, - "xr": 19, - "yr": 19, - "cloakAlpha": 1, - "team": 13, - "canCloak": 1, - "cloakAlpha/2": 1, - "invisible": 1, - "stabbing": 2, - "power": 1, - "currentWeapon.stab.alpha": 1, - "&&": 6, - "global.showHealthBar": 3, - "draw_set_alpha": 3, - "draw_healthbar": 1, - "hp*100/maxHp": 1, - "c_black": 1, - "c_red": 3, - "c_green": 1, - "mouse_x": 1, - "mouse_y": 1, - "<25)>": 1, - "cloak": 2, - "global": 8, - "myself": 2, - "draw_set_halign": 1, - "fa_center": 1, - "draw_set_valign": 1, - "fa_bottom": 1, - "team=": 1, - "draw_set_color": 2, - "c_blue": 2, - "draw_text": 4, - "35": 1, - "showTeammateStats": 1, - "weapons": 3, - "50": 3, - "Superburst": 1, - "string": 13, - "currentWeapon": 2, - "uberCharge": 1, - "20": 1, - "Shotgun": 1, - "Nuts": 1, - "N": 1, - "Bolts": 1, - "nutsNBolts": 1, - "Minegun": 1, - "Lobbed": 1, - "Mines": 1, - "lobbed": 1, - "ubercolour": 6, - "overlaySprite": 6, - "zoomed": 1, - "SniperCrouchRedS": 1, - "SniperCrouchBlueS": 1, - "sniperCrouchOverlay": 1, - "overlay": 1, - "omnomnomnom": 2, - "draw_sprite_ext_overlay": 7, - "omnomnomnomSprite": 2, - "omnomnomnomOverlay": 2, - "omnomnomnomindex": 4, - "c_white": 13, - "ubered": 7, - "7": 4, - "taunting": 2, - "tauntsprite": 2, - "tauntOverlay": 2, - "tauntindex": 2, - "humiliated": 1, - "humiliationPoses": 1, - "animationImage": 9, - "humiliationOffset": 1, - "animationOffset": 6, - "burnDuration": 2, - "burnIntensity": 2, - "numFlames": 1, - "maxIntensity": 1, - "FlameS": 1, - "flameArray_x": 1, - "flameArray_y": 1, - "maxDuration": 1, - "demon": 4, - "demonX": 5, - "median": 2, - "demonY": 4, - "demonOffset": 4, - "demonDir": 2, - "dir": 3, - "demonFrame": 5, - "sprite_get_number": 1, - "*player.team": 2, - "dir*1": 2, - "#define": 26, - "__http_init": 3, - "global.__HttpClient": 4, - "object_add": 1, - "object_set_persistent": 1, - "__http_split": 3, - "text": 19, - "delimeter": 7, - "list": 36, - "count": 4, - "ds_list_create": 5, - "ds_list_add": 23, - "string_copy": 32, - "string_length": 25, - "return": 56, - "__http_parse_url": 4, - "ds_map_create": 4, - "ds_map_add": 15, - "colonPos": 22, - "string_char_at": 13, - "slashPos": 13, - "real": 14, - "queryPos": 12, - "ds_map_destroy": 6, - "__http_resolve_url": 2, - "baseUrl": 3, - "refUrl": 18, - "urlParts": 15, - "refUrlParts": 5, - "canParseRefUrl": 3, - "result": 11, - "ds_map_find_value": 22, - "__http_resolve_path": 3, - "ds_map_replace": 3, - "ds_map_exists": 11, - "ds_map_delete": 1, - "path": 10, - "query": 4, - "relUrl": 1, - "__http_construct_url": 2, - "basePath": 4, - "refPath": 7, - "parts": 29, - "refParts": 5, - "lastPart": 3, - "ds_list_find_value": 9, - "ds_list_size": 11, - "ds_list_delete": 5, - "ds_list_destroy": 4, - "part": 6, - "ds_list_replace": 3, - "__http_parse_hex": 2, - "hexString": 4, - "hexValues": 3, - "digit": 4, - "__http_prepare_request": 4, - "client": 33, - "headers": 11, - "parsed": 18, - "show_error": 2, - "destroyed": 3, - "CR": 10, - "chr": 3, - "LF": 5, - "CRLF": 17, - "socket": 40, - "tcp_connect": 1, - "errored": 19, - "error": 18, - "linebuf": 33, - "line": 19, - "statusCode": 6, - "reasonPhrase": 2, - "responseBody": 19, - "buffer_create": 7, - "responseBodySize": 5, - "responseBodyProgress": 5, - "responseHeaders": 9, - "requestUrl": 2, - "requestHeaders": 2, - "write_string": 9, - "key": 17, - "ds_map_find_first": 1, - "is_string": 2, - "ds_map_find_next": 1, - "socket_send": 1, - "__http_parse_header": 3, - "ord": 16, - "headerValue": 9, - "string_lower": 3, - "headerName": 4, - "__http_client_step": 2, - "socket_has_error": 1, - "socket_error": 1, - "__http_client_destroy": 20, - "available": 7, - "tcp_receive_available": 1, - "bytesRead": 6, - "c": 20, - "read_string": 9, - "Reached": 2, - "end": 11, - "HTTP": 1, - "defines": 1, - "sequence": 2, - "as": 1, - "marker": 1, - "elements": 1, - "except": 2, - "entity": 1, - "body": 2, - "see": 1, - "appendix": 1, - "19": 1, - "3": 1, - "tolerant": 1, - "applications": 1, - "Strip": 1, - "trailing": 1, - "First": 1, - "status": 2, - "code": 2, - "first": 3, - "Response": 1, - "message": 1, - "Status": 1, - "Line": 1, - "consisting": 1, - "followed": 1, - "by": 5, - "numeric": 1, - "its": 1, - "associated": 1, - "textual": 1, - "phrase": 1, - "each": 18, - "element": 8, - "separated": 1, - "SP": 1, - "characters": 3, - "No": 3, - "allowed": 1, - "in": 21, - "final": 1, - "httpVer": 2, - "spacePos": 11, - "space": 4, - "response": 5, - "second": 2, - "Other": 1, - "Blank": 1, - "write": 1, - "remainder": 1, - "write_buffer_part": 3, - "Header": 1, - "Receiving": 1, - "transfer": 6, - "encoding": 2, - "chunked": 4, - "Chunked": 1, - "let": 1, - "decode": 36, - "actualResponseBody": 8, - "actualResponseSize": 1, - "actualResponseBodySize": 3, - "Parse": 1, - "chunks": 1, - "chunk": 12, - "size": 7, - "extension": 3, - "data": 4, - "HEX": 1, - "buffer_bytes_left": 6, - "chunkSize": 11, - "Read": 1, - "byte": 2, - "We": 1, - "found": 21, - "semicolon": 1, - "beginning": 1, - "skip": 1, - "stuff": 2, - "header": 2, - "Doesn": 1, - "did": 1, - "empty": 13, - "something": 1, - "up": 6, - "Parsing": 1, - "failed": 56, - "hex": 2, - "was": 1, - "hexadecimal": 1, - "Is": 1, - "bigger": 2, - "than": 1, - "remaining": 1, - "2": 2, - "responseHaders": 1, - "location": 4, - "resolved": 5, - "socket_destroy": 4, - "http_new_get": 1, - "variable_global_exists": 2, - "http_new_get_ex": 1, - "http_step": 1, - "client.errored": 3, - "client.state": 3, - "http_status_code": 1, - "client.statusCode": 1, - "http_reason_phrase": 1, - "client.error": 1, - "client.reasonPhrase": 1, - "http_response_body": 1, - "client.responseBody": 1, - "http_response_body_size": 1, - "client.responseBodySize": 1, - "http_response_body_progress": 1, - "client.responseBodyProgress": 1, - "http_response_headers": 1, - "client.responseHeaders": 1, - "http_destroy": 1, - "RoomChangeObserver": 1, - "set_little_endian_global": 1, - "file_exists": 5, - "file_delete": 3, - "backupFilename": 5, - "file_find_first": 1, - "file_find_next": 1, - "file_find_close": 1, - "customMapRotationFile": 7, - "restart": 4, - "//import": 1, - "wav": 1, - "files": 1, - "music": 1, - "global.MenuMusic": 3, - "sound_add": 3, - "global.IngameMusic": 3, - "global.FaucetMusic": 3, - "sound_volume": 3, - "global.sendBuffer": 19, - "global.HudCheck": 1, - "global.map_rotation": 19, - "global.CustomMapCollisionSprite": 1, - "window_set_region_scale": 1, - "ini_open": 2, - "global.playerName": 7, - "ini_read_string": 12, - "string_count": 2, - "MAX_PLAYERNAME_LENGTH": 2, - "global.fullscreen": 3, - "ini_read_real": 65, - "global.useLobbyServer": 2, - "global.hostingPort": 2, - "global.music": 2, - "MUSIC_BOTH": 1, - "global.playerLimit": 4, - "//thy": 1, - "playerlimit": 1, - "shalt": 1, - "exceed": 1, - "global.dedicatedMode": 7, - "ini_write_real": 60, - "global.multiClientLimit": 2, - "global.particles": 2, - "PARTICLES_NORMAL": 1, - "global.monitorSync": 3, - "set_synchronization": 2, - "global.medicRadar": 2, - "global.showHealer": 2, - "global.showHealing": 2, - "global.showTeammateStats": 2, - "global.serverPluginsPrompt": 2, - "global.restartPrompt": 2, - "//user": 1, - "HUD": 1, - "settings": 1, - "global.timerPos": 2, - "global.killLogPos": 2, - "global.kothHudPos": 2, - "global.clientPassword": 1, - "global.shuffleRotation": 2, - "global.timeLimitMins": 2, - "max": 2, - "global.serverPassword": 2, - "global.mapRotationFile": 1, - "global.serverName": 2, - "global.welcomeMessage": 2, - "global.caplimit": 3, - "global.caplimitBkup": 1, - "global.autobalance": 2, - "global.Server_RespawntimeSec": 4, - "global.rewardKey": 1, - "unhex": 1, - "global.rewardId": 1, - "global.mapdownloadLimitBps": 2, - "isBetaVersion": 1, - "global.attemptPortForward": 2, - "global.serverPluginList": 3, - "global.serverPluginsRequired": 2, - "CrosshairFilename": 5, - "CrosshairRemoveBG": 4, - "global.queueJumping": 2, - "global.backgroundHash": 2, - "global.backgroundTitle": 2, - "global.backgroundURL": 2, - "global.backgroundShowVersion": 2, - "readClasslimitsFromIni": 1, - "global.currentMapArea": 1, - "global.totalMapAreas": 1, - "global.setupTimer": 1, - "global.serverPluginsInUse": 1, - "global.pluginPacketBuffers": 1, - "global.pluginPacketPlayers": 1, - "ini_write_string": 10, - "ini_key_delete": 1, - "global.classlimits": 10, - "CLASS_SCOUT": 1, - "CLASS_HEAVY": 2, - "CLASS_DEMOMAN": 1, - "CLASS_SPY": 1, - "//screw": 1, - "will": 1, - "start": 1, - "//map_truefort": 1, - "maps": 37, - "//map_2dfort": 1, - "//map_conflict": 1, - "//map_classicwell": 1, - "//map_waterway": 1, - "//map_orange": 1, - "//map_dirtbowl": 1, - "//map_egypt": 1, - "//arena_montane": 1, - "//arena_lumberyard": 1, - "//gen_destroy": 1, - "//koth_valley": 1, - "//koth_corinth": 1, - "//koth_harvest": 1, - "//dkoth_atalia": 1, - "//dkoth_sixties": 1, - "//Server": 1, - "respawn": 1, - "time": 1, - "calculator.": 1, - "Converts": 1, - "frame.": 1, - "read": 1, - "multiply": 1, - "hehe": 1, - "global.Server_Respawntime": 3, - "global.mapchanging": 1, - "ini_close": 2, - "global.protocolUuid": 2, - "parseUuid": 2, - "PROTOCOL_UUID": 1, - "global.gg2lobbyId": 2, - "GG2_LOBBY_UUID": 1, - "initRewards": 1, - "IPRaw": 3, - "portRaw": 3, - "doubleCheck": 8, - "global.launchMap": 5, - "parameter_count": 1, - "parameter_string": 8, - "global.serverPort": 1, - "global.serverIP": 1, - "global.isHost": 1, - "Client": 1, - "global.customMapdesginated": 2, - "fileHandle": 6, - "mapname": 9, - "file_text_open_read": 1, - "file_text_eof": 1, - "file_text_read_string": 1, - "starts": 1, - "tab": 2, - "string_delete": 1, - "delete": 1, - "comment": 1, - "starting": 1, - "file_text_readln": 1, - "file_text_close": 1, - "load": 1, - "ini": 1, - "Maps": 9, - "section": 1, - "//Set": 1, - "rotation": 1, - "sort_list": 7, - "*maps": 1, - "ds_list_sort": 1, - "mod": 1, - "global.gg2Font": 2, - "font_add_sprite": 2, - "gg2FontS": 1, - "global.countFont": 1, - "countFontS": 1, - "draw_set_font": 1, - "cursor_sprite": 1, - "CrosshairS": 5, - "directory_exists": 2, - "directory_create": 2, - "AudioControl": 1, - "SSControl": 1, - "message_background": 1, - "popupBackgroundB": 1, - "message_button": 1, - "popupButtonS": 1, - "message_text_font": 1, - "message_button_font": 1, - "message_input_font": 1, - "//Key": 1, - "Mapping": 1, - "global.jump": 1, - "global.down": 1, - "global.left": 1, - "global.right": 1, - "global.attack": 1, - "MOUSE_LEFT": 1, - "global.special": 1, - "MOUSE_RIGHT": 1, - "global.taunt": 1, - "global.chat1": 1, - "global.chat2": 1, - "global.chat3": 1, - "global.medic": 1, - "global.drop": 1, - "global.changeTeam": 1, - "global.changeClass": 1, - "global.showScores": 1, - "vk_shift": 1, - "calculateMonthAndDay": 1, - "loadplugins": 1, - "registry_set_root": 1, - "HKLM": 1, - "global.NTKernelVersion": 1, - "registry_read_string_ext": 1, - "CurrentVersion": 1, - "SIC": 1, - "sprite_replace": 1, - "sprite_set_offset": 1, - "sprite_get_width": 1, - "/2": 2, - "sprite_get_height": 1, - "AudioControlToggleMute": 1, - "room_goto_fix": 2, - "Menu": 2, - "__jso_gmt_tuple": 1, - "//Position": 1, - "address": 1, - "table": 1, - "pos": 2, - "addr_table": 2, - "*argument_count": 1, - "//Build": 1, - "tuple": 1, - "ca": 1, - "isstr": 1, - "datastr": 1, - "argument_count": 1, - "//Check": 1, - "argument": 10, - "Unexpected": 18, - "position": 16, - "f": 5, - "JSON": 5, - "string.": 5, - "Cannot": 5, - "parse": 3, - "boolean": 3, - "value": 13, - "expecting": 9, - "digit.": 9, - "e": 4, - "E": 4, - "dot": 1, - "an": 24, - "integer": 6, - "Expected": 6, - "least": 6, - "arguments": 26, - "got": 6, - "find": 10, - "lookup.": 4, - "indices": 1, - "nested": 27, - "lists": 6, - "Index": 1, - "overflow": 4, - "Recursive": 1, - "abcdef": 1, - "number": 7, - "num": 1, - "assert_true": 1, - "_assert_error_popup": 2, - "string_repeat": 2, - "_assert_newline": 2, - "assert_false": 1, - "assert_equal": 1, - "//Safe": 1, - "equality": 1, - "check": 1, - "won": 1, - "support": 1, - "instead": 1, - "_assert_debug_value": 1, - "//String": 1, - "os_browser": 1, - "browser_not_a_browser": 1, - "string_replace_all": 1, - "//Numeric": 1, - "GMTuple": 1, - "jso_encode_string": 1, - "encode": 8, - "escape": 2, - "jso_encode_map": 4, - "one": 42, - "key1": 3, - "key2": 3, - "multi": 7, - "jso_encode_list": 3, - "three": 36, - "_jso_decode_string": 5, - "small": 1, - "quick": 2, - "brown": 2, - "fox": 2, - "over": 2, - "lazy": 2, - "dog.": 2, - "simple": 1, - "Waahoo": 1, - "negg": 1, - "mixed": 1, - "_jso_decode_boolean": 2, - "_jso_decode_real": 11, - "standard": 1, - "zero": 4, - "signed": 2, - "decimal": 1, - "digits": 1, - "positive": 7, - "negative": 7, - "exponent": 4, - "_jso_decode_integer": 3, - "_jso_decode_map": 14, - "didn": 14, - "include": 14, - "right": 14, - "prefix": 14, - "#1": 14, - "#2": 14, - "entry": 29, - "pi": 2, - "bool": 2, - "waahoo": 10, - "woohah": 8, - "mix": 4, - "_jso_decode_list": 14, - "woo": 2, - "Empty": 4, - "equal": 20, - "other.": 12, - "junk": 2, - "info": 1, - "taxi": 1, - "An": 4, - "filled": 4, - "map.": 2, - "A": 24, - "B": 18, - "C": 8, - "same": 6, - "content": 4, - "entered": 4, - "different": 12, - "orders": 4, - "D": 1, - "keys": 2, - "values": 4, - "six": 1, - "corresponding": 4, - "types": 4, - "other": 4, - "crash.": 4, - "list.": 2, - "Lists": 4, - "two": 16, - "entries": 2, - "also": 2, - "jso_map_check": 9, - "existing": 9, - "single": 11, - "jso_map_lookup": 3, - "wrong": 10, - "trap": 2, - "jso_map_lookup_type": 3, - "type": 8, - "four": 21, - "inexistent": 11, - "multiple": 20, - "jso_list_check": 8, - "jso_list_lookup": 3, - "jso_list_lookup_type": 3, - "inner": 1, - "indexing": 1, - "bad": 1, - "jso_cleanup_map": 1, - "one_map": 1, - "hashList": 5, - "pluginname": 9, - "pluginhash": 4, - "realhash": 1, - "handle": 1, - "filesize": 1, - "progress": 1, - "tempfile": 1, - "tempdir": 1, - "lastContact": 2, - "isCached": 2, - "isDebug": 2, - "split": 1, - "checkpluginname": 1, - "ds_list_find_index": 1, - ".zip": 3, - "ServerPluginsCache": 6, - "@": 5, - ".zip.tmp": 1, - ".tmp": 2, - "ServerPluginsDebug": 1, - "Warning": 2, - "being": 2, - "loaded": 2, - "ServerPluginsDebug.": 2, - "Make": 2, - "sure": 2, - "clients": 1, - "they": 1, - "may": 2, - "unable": 2, - "connect.": 2, - "you": 1, - "Downloading": 1, - "last_plugin.log": 2, - "plugin.gml": 1, "playerId": 11, "commandLimitRemaining": 4, "variable_local_exists": 4, "commandReceiveState": 1, "commandReceiveExpectedBytes": 1, "commandReceiveCommand": 1, + "socket": 40, "player.socket": 12, + "tcp_receive": 3, "player.commandReceiveExpectedBytes": 7, "player.commandReceiveState": 7, "player.commandReceiveCommand": 4, + "read_ubyte": 10, "commandBytes": 2, "commandBytesInvalidCommand": 1, "commandBytesPrefixLength1": 1, @@ -24315,6 +24272,7 @@ "default": 1, "read_ushort": 2, "PLAYER_LEAVE": 1, + "socket_destroy": 4, "PLAYER_CHANGECLASS": 1, "class": 8, "getCharacterObject": 2, @@ -24338,6 +24296,7 @@ "redSuperiority": 6, "calculate": 1, "which": 1, + "bigger": 2, "Player": 1, "TEAM_SPECTATOR": 1, "newClass": 4, @@ -24384,6 +24343,8 @@ "KICK_NAME": 1, "current_time": 2, "lastNamechange": 2, + "read_string": 9, + "write_string": 9, "INPUTSTATE": 1, "keyState": 1, "netAimDirection": 1, @@ -24407,173 +24368,340 @@ "packetID": 3, "buf": 5, "success": 3, + "write_buffer_part": 3, "_PluginPacketPush": 1, + "buffer_destroy": 8, "KICK_BAD_PLUGIN_PACKET": 1, "CLIENT_SETTINGS": 2, "mirror": 4, "player.queueJump": 1, - "global.levelType": 22, - "//global.currLevel": 1, - "global.currLevel": 22, - "global.hadDarkLevel": 4, - "global.startRoomX": 1, - "global.startRoomY": 1, - "global.endRoomX": 1, - "global.endRoomY": 1, - "oGame.levelGen": 2, - "j": 14, - "global.roomPath": 1, - "k": 5, - "global.lake": 3, - "isLevel": 1, - "999": 2, - "levelType": 2, - "16": 14, - "656": 3, - "oDark": 2, - "invincible": 2, - "sDark": 1, - "oTemple": 2, - "cityOfGold": 1, - "sTemple": 2, - "lake": 1, - "i*16": 8, - "j*16": 6, - "oLush": 2, - "obj.sprite_index": 4, - "sLush": 2, - "obj.invincible": 3, - "oBrick": 1, - "sBrick": 1, - "global.cityOfGold": 2, - "*16": 2, - "//instance_create": 2, - "oSpikes": 1, - "background_index": 1, - "bgTemple": 1, - "global.temp1": 1, - "global.gameStart": 3, - "scrLevelGen": 1, - "global.cemetary": 3, - "rand": 10, - "global.probCemetary": 1, - "oRoom": 1, - "scrRoomGen": 1, - "global.blackMarket": 3, - "scrRoomGenMarket": 1, - "scrRoomGen2": 1, - "global.yetiLair": 2, - "scrRoomGenYeti": 1, - "scrRoomGen3": 1, - "scrRoomGen4": 1, - "scrRoomGen5": 1, - "global.darkLevel": 4, - "global.noDarkLevel": 1, - "global.probDarkLevel": 1, - "oPlayer1.x": 2, - "oPlayer1.y": 2, - "oFlare": 1, - "global.genUdjatEye": 4, - "global.madeUdjatEye": 1, - "global.genMarketEntrance": 4, - "global.madeMarketEntrance": 1, - "////////////////////////////": 2, - "global.temp2": 1, - "isRoom": 3, - "scrEntityGen": 1, - "oEntrance": 1, - "global.customLevel": 1, - "oEntrance.x": 1, - "oEntrance.y": 1, - "global.snakePit": 1, - "global.alienCraft": 1, - "global.sacrificePit": 1, - "oPlayer1": 1, - "scrSetupWalls": 3, - "global.graphicsHigh": 1, - "tile_add": 4, - "bgExtrasLush": 1, - "*rand": 12, - "bgExtrasIce": 1, - "bgExtrasTemple": 1, - "bgExtras": 1, - "global.murderer": 1, - "global.thiefLevel": 1, - "isRealLevel": 1, - "oExit": 1, - "oShopkeeper": 1, - "obj.status": 1, - "oTreasure": 1, - "oWater": 1, - "sWaterTop": 1, - "sLavaTop": 1, - "scrCheckWaterTop": 1, - "global.temp3": 1 + "__http_init": 3, + "global.__HttpClient": 4, + "object_add": 1, + "object_set_persistent": 1, + "__http_split": 3, + "text": 19, + "delimeter": 7, + "count": 4, + "string_pos": 20, + "__http_parse_url": 4, + "ds_map_add": 15, + "colonPos": 22, + "slashPos": 13, + "queryPos": 12, + "ds_map_destroy": 6, + "__http_resolve_url": 2, + "baseUrl": 3, + "refUrl": 18, + "urlParts": 15, + "refUrlParts": 5, + "canParseRefUrl": 3, + "result": 11, + "ds_map_find_value": 22, + "__http_resolve_path": 3, + "ds_map_replace": 3, + "ds_map_exists": 11, + "ds_map_delete": 1, + "path": 10, + "query": 4, + "relUrl": 1, + "__http_construct_url": 2, + "basePath": 4, + "refPath": 7, + "parts": 29, + "refParts": 5, + "lastPart": 3, + "ds_list_delete": 5, + "part": 6, + "ds_list_replace": 3, + "__http_parse_hex": 2, + "hexString": 4, + "hexValues": 3, + "digit": 4, + "__http_prepare_request": 4, + "client": 33, + "headers": 11, + "parsed": 18, + "destroyed": 3, + "CR": 10, + "LF": 5, + "CRLF": 17, + "tcp_connect": 1, + "errored": 19, + "error": 18, + "linebuf": 33, + "line": 19, + "statusCode": 6, + "reasonPhrase": 2, + "responseBody": 19, + "responseBodySize": 5, + "responseBodyProgress": 5, + "responseHeaders": 9, + "requestUrl": 2, + "requestHeaders": 2, + "ds_map_find_first": 1, + "ds_map_find_next": 1, + "socket_send": 1, + "__http_parse_header": 3, + "headerValue": 9, + "string_lower": 3, + "headerName": 4, + "__http_client_step": 2, + "socket_has_error": 1, + "socket_error": 1, + "__http_client_destroy": 20, + "available": 7, + "tcp_receive_available": 1, + "tcp_eof": 3, + "bytesRead": 6, + "c": 20, + "Reached": 2, + "HTTP": 1, + "defines": 1, + "sequence": 2, + "as": 1, + "marker": 1, + "protocol": 3, + "elements": 1, + "except": 2, + "entity": 1, + "body": 2, + "see": 1, + "appendix": 1, + "19": 1, + "3": 1, + "tolerant": 1, + "applications": 1, + "Strip": 1, + "trailing": 1, + "First": 1, + "status": 2, + "code": 2, + "first": 3, + "Response": 1, + "message": 1, + "Status": 1, + "Line": 1, + "consisting": 1, + "version": 4, + "followed": 1, + "numeric": 1, + "its": 1, + "associated": 1, + "textual": 1, + "phrase": 1, + "separated": 1, + "SP": 1, + "No": 3, + "allowed": 1, + "final": 1, + "httpVer": 2, + "spacePos": 11, + "response": 5, + "Other": 1, + "Blank": 1, + "write": 1, + "remainder": 1, + "Header": 1, + "Receiving": 1, + "write_buffer": 2, + "transfer": 6, + "encoding": 2, + "chunked": 4, + "Chunked": 1, + "let": 1, + "actualResponseBody": 8, + "actualResponseSize": 1, + "actualResponseBodySize": 3, + "Parse": 1, + "chunks": 1, + "chunk": 12, + "size": 7, + "extension": 3, + "HEX": 1, + "buffer_bytes_left": 6, + "chunkSize": 11, + "Read": 1, + "byte": 2, + "We": 1, + "semicolon": 1, + "beginning": 1, + "skip": 1, + "header": 2, + "Doesn": 1, + "did": 1, + "something": 1, + "Parsing": 1, + "was": 1, + "hexadecimal": 1, + "Is": 1, + "than": 1, + "remaining": 1, + "responseHaders": 1, + "location": 4, + "resolved": 5, + "http_new_get": 1, + "variable_global_exists": 2, + "http_new_get_ex": 1, + "http_step": 1, + "client.errored": 3, + "client.state": 3, + "http_status_code": 1, + "client.statusCode": 1, + "http_reason_phrase": 1, + "client.error": 1, + "client.reasonPhrase": 1, + "http_response_body": 1, + "client.responseBody": 1, + "http_response_body_size": 1, + "client.responseBodySize": 1, + "http_response_body_progress": 1, + "client.responseBodyProgress": 1, + "http_response_headers": 1, + "client.responseHeaders": 1, + "http_destroy": 1, + "playerObject": 1, + "playerID": 1, + "otherPlayerID": 1, + "otherPlayer": 1, + "sameVersion": 1, + "buffer": 1, + "plugins": 4, + "pluginsRequired": 2, + "usePlugins": 1, + "global.serverSocket": 10, + "gotServerHello": 2, + "room": 1, + "DownloadRoom": 1, + "keyboard_check": 1, + "vk_escape": 1, + "downloadingMap": 2, + "downloadMapBytes": 2, + "buffer_size": 2, + "downloadMapBuffer": 6, + "write_buffer_to_file": 1, + "downloadMapName": 3, + "roomchange": 2, + "do": 1, + "HELLO": 1, + "receivestring": 4, + "advertisedMapMd5": 1, + "receiveCompleteMessage": 1, + "Server": 3, + "sent": 7, + "illegal": 2, + "This": 2, + "server": 10, + "requires": 1, + "following": 2, + "play": 2, + "suggests": 1, + "optional": 1, + "Error": 2, + "ocurred": 1, + "loading": 1, + "plugins.": 1, + "Maps/": 2, + ".png": 2, + "Enter": 1, + "Password": 1, + "Incorrect": 1, + "Password.": 1, + "Incompatible": 1, + "version.": 1, + "Name": 1, + "Exploit": 1, + "plugin": 6, + "packet": 3, + "ID": 2, + "There": 1, + "are": 1, + "many": 1, + "connections": 1, + "your": 1, + "IP": 1, + "You": 1, + "have": 2, + "been": 1, + "kicked": 1, + "server.": 1, + "#Server": 1, + "went": 1, + "invalid": 1, + "internal": 1, + "#Exiting.": 1, + "full.": 1, + "ERROR": 1, + "when": 1, + "reading": 1, + "no": 1, + "such": 1, + "unexpected": 1, + "data.": 1, + "until": 1, + "hashList": 5, + "pluginname": 9, + "pluginhash": 4, + "realhash": 1, + "handle": 1, + "filesize": 1, + "progress": 1, + "tempfile": 1, + "tempdir": 1, + "lastContact": 2, + "isCached": 2, + "isDebug": 2, + "split": 1, + "checkpluginname": 1, + "ds_list_find_index": 1, + ".zip": 3, + "ServerPluginsCache": 6, + "@": 5, + ".zip.tmp": 1, + ".tmp": 2, + "ServerPluginsDebug": 1, + "Warning": 2, + "being": 2, + "loaded": 2, + "ServerPluginsDebug.": 2, + "Make": 2, + "sure": 2, + "clients": 1, + "they": 1, + "may": 2, + "unable": 2, + "connect.": 2, + "you": 1, + "Downloading": 1, + "last_plugin.log": 2, + "plugin.gml": 1 }, "Gnuplot": { "set": 98, - "label": 14, - "at": 14, - "-": 102, - "left": 15, - "norotate": 18, - "back": 23, - "textcolor": 13, - "rgb": 8, - "nopoint": 14, - "offset": 25, - "character": 22, - "lt": 15, - "style": 7, - "line": 4, - "linetype": 11, - "linecolor": 4, - "linewidth": 11, - "pointtype": 4, - "pointsize": 4, - "default": 4, - "pointinterval": 4, - "noxtics": 2, - "noytics": 2, - "title": 13, - "xlabel": 6, - "xrange": 3, - "[": 18, - "]": 18, - "noreverse": 13, - "nowriteback": 12, - "yrange": 4, - "bmargin": 1, - "unset": 2, - "colorbox": 3, - "plot": 3, - "cos": 9, - "(": 52, - "x": 7, - ")": 52, - "ls": 4, - ".2": 1, - ".4": 1, - ".6": 1, - ".8": 1, - "lc": 3, "boxwidth": 1, "absolute": 1, + "style": 7, "fill": 1, "solid": 1, "border": 3, + "lt": 15, + "-": 102, "key": 1, "inside": 1, "right": 1, "top": 1, "vertical": 2, "Right": 1, + "noreverse": 13, "noenhanced": 1, "autotitles": 1, "nobox": 1, "histogram": 1, "clustered": 1, "gap": 1, + "title": 13, + "offset": 25, + "character": 22, "datafile": 1, "missing": 1, "data": 1, @@ -24587,30 +24715,34 @@ "autojustify": 1, "norangelimit": 3, "font": 8, + "(": 52, + ")": 52, + "yrange": 4, + "[": 18, + "]": 18, + "nowriteback": 12, "i": 1, + "plot": 3, "using": 2, "xtic": 1, "ti": 4, "col": 4, "u": 25, - "SHEBANG#!gnuplot": 1, - "reset": 1, - "terminal": 1, - "png": 1, - "output": 1, - "ylabel": 5, - "#set": 2, - "xr": 1, - "yr": 1, - "pt": 2, - "notitle": 15, "dummy": 3, "v": 31, + "label": 14, + "at": 14, + "left": 15, + "norotate": 18, + "back": 23, + "nopoint": 14, "arrow": 7, "from": 7, "to": 7, "head": 7, "nofilled": 7, + "linetype": 11, + "linewidth": 11, "parametric": 3, "view": 3, "samples": 3, @@ -24621,6 +24753,10 @@ "altdiagonal": 2, "bentover": 2, "ztics": 2, + "xlabel": 6, + "textcolor": 13, + "xrange": 3, + "ylabel": 5, "zlabel": 4, "zrange": 2, "sinc": 13, @@ -24645,6 +24781,36 @@ "x9": 4, "splot": 3, "<": 10, + "notitle": 15, + "rgb": 8, + "line": 4, + "linecolor": 4, + "pointtype": 4, + "pointsize": 4, + "default": 4, + "pointinterval": 4, + "noxtics": 2, + "noytics": 2, + "bmargin": 1, + "unset": 2, + "colorbox": 3, + "cos": 9, + "x": 7, + "ls": 4, + ".2": 1, + ".4": 1, + ".6": 1, + ".8": 1, + "lc": 3, + "SHEBANG#!gnuplot": 1, + "reset": 1, + "terminal": 1, + "png": 1, + "output": 1, + "#set": 2, + "xr": 1, + "yr": 1, + "pt": 2, "xmin": 3, "xmax": 1, "n": 1, @@ -24684,6 +24850,13 @@ "pal": 1 }, "Gosu": { + "function": 11, + "hello": 1, + "(": 53, + ")": 54, + "{": 28, + "print": 3, + "}": 28, "<%!-->": 1, "defined": 1, "in": 3, @@ -24693,49 +24866,32 @@ "%": 2, "@": 1, "params": 1, - "(": 53, "users": 2, "Collection": 1, "": 1, - ")": 54, "<%>": 2, "for": 2, "user": 1, - "{": 28, "user.LastName": 1, - "}": 28, "user.FirstName": 1, "user.Department": 1, "package": 2, "example": 2, - "enhancement": 1, - "String": 6, - "function": 11, - "toPerson": 1, - "Person": 7, - "var": 10, - "vals": 4, - "this.split": 1, - "return": 4, - "new": 6, - "[": 4, - "]": 4, - "as": 3, - "int": 2, - "Relationship.valueOf": 2, - "hello": 1, - "print": 3, "uses": 2, "java.util.*": 1, "java.io.File": 1, "class": 1, + "Person": 7, "extends": 1, "Contact": 1, "implements": 1, "IEmailable": 2, + "var": 10, "_name": 4, + "String": 6, "_age": 3, "Integer": 3, + "as": 3, "Age": 1, "_relationship": 2, "Relationship": 3, @@ -24750,6 +24906,7 @@ "BUSINESS_CONTACT": 1, "static": 7, "ALL_PEOPLE": 2, + "new": 6, "HashMap": 1, "": 1, "construct": 1, @@ -24761,6 +24918,7 @@ "property": 2, "get": 1, "Name": 3, + "return": 4, "set": 1, "override": 1, "getEmailName": 1, @@ -24775,7 +24933,9 @@ ".Name": 1, "throw": 1, "IllegalArgumentException": 1, + "[": 4, "p.Name": 2, + "]": 4, "addAllPeople": 1, "contacts": 2, "List": 1, @@ -24786,6 +24946,7 @@ "not": 1, "contact.Name": 1, "getAllPeopleOlderThanNOrderedByName": 1, + "int": 2, "allPeople": 1, "ALL_PEOPLE.Values": 3, "allPeople.where": 1, @@ -24805,6 +24966,7 @@ "result.next": 1, "result.getString": 2, "result.getInt": 1, + "Relationship.valueOf": 2, "loadFromFile": 1, "file": 3, "File": 2, @@ -24816,26 +24978,13 @@ "writer": 2, "FileWriter": 1, "PersonCSVTemplate.renderToString": 1, - "PersonCSVTemplate.render": 1 + "PersonCSVTemplate.render": 1, + "enhancement": 1, + "toPerson": 1, + "vals": 4, + "this.split": 1 }, "Grace": { - "method": 10, - "ack": 4, - "(": 215, - "m": 5, - "Number": 4, - "n": 4, - ")": 215, - "-": 16, - "{": 61, - "print": 2, - "if": 23, - "<": 5, - "then": 24, - "+": 29, - "}": 61, - "elseif": 1, - "else": 7, "import": 7, "as": 7, "gtk": 1, @@ -24849,7 +24998,9 @@ "def": 56, "window": 2, "gtk.window": 3, + "(": 215, "gtk.GTK_WINDOW_TOPLEVEL": 3, + ")": 215, "window.title": 1, "window.set_default_size": 1, "var": 33, @@ -24896,11 +25047,15 @@ "highlighter.Syntax_Highlighter.new": 1, "tEdit.buffer.on": 1, "do": 14, + "{": 61, "lighter.highlightLine": 1, + "}": 61, "completer": 1, "aComp.Auto_Completer.new": 1, + "method": 10, "deleteCompileFiles": 3, "page_num": 7, + "Number": 4, "cur_scrolled": 9, "scrolled_map.get": 8, "filename": 6, @@ -24908,10 +25063,12 @@ "filename.substringFrom": 1, "to": 1, "filename.size": 1, + "-": 16, "//Removes": 1, ".grace": 1, "extension": 1, "io.system": 13, + "+": 29, "currentConsole": 17, "//": 3, "Which": 1, @@ -24945,8 +25102,10 @@ "outputFile.read": 1, "errorFile.read": 1, "switched": 4, + "if": 23, "outText.size": 2, "&&": 4, + "then": 24, "switch_to_output": 3, "errorText.size": 2, "switch_to_errors": 3, @@ -24956,6 +25115,7 @@ "errorButton.on": 1, "popButton.on": 1, "popIn": 2, + "else": 7, "popOut": 2, "newButton.on": 1, "new_window_class": 1, @@ -24983,6 +25143,7 @@ "s_map": 2, "x": 21, "while": 3, + "<": 5, "eValue": 4, "sValue": 4, "e_map.put": 2, @@ -25037,9 +25198,14 @@ "mBox.add": 3, "window.add": 1, "exit": 2, + "print": 2, "gtk.main_quit": 1, "window.connect": 1, - "gtk.main": 1 + "gtk.main": 1, + "ack": 4, + "m": 5, + "n": 4, + "elseif": 1 }, "Grammatical Framework": { "-": 594, @@ -25050,13 +25216,37 @@ "Ranta": 13, "under": 33, "LGPL": 33, - "abstract": 1, - "Foods": 34, + "instance": 5, + "LexFoodsFin": 2, + "of": 89, + "LexFoods": 12, + "open": 23, + "SyntaxFin": 2, + "ParadigmsFin": 1, + "in": 32, "{": 579, "flags": 32, + "coding": 29, + "utf8": 29, + ";": 1399, + "oper": 29, + "wine_N": 7, + "mkN": 46, + "pizza_N": 7, + "cheese_N": 7, + "fish_N": 8, + "fresh_A": 7, + "mkA": 47, + "warm_A": 8, + "italian_A": 7, + "expensive_A": 7, + "delicious_A": 7, + "boring_A": 7, + "}": 580, + "abstract": 1, + "Foods": 34, "startcat": 1, "Comment": 31, - ";": 1399, "cat": 1, "Item": 31, "Kind": 33, @@ -25079,161 +25269,110 @@ "Expensive": 29, "Delicious": 29, "Boring": 29, - "}": 580, - "Laurette": 2, - "Pretorius": 2, - "Sr": 2, - "&": 2, - "Jr": 2, - "and": 4, - "Ansu": 2, - "Berg": 2, + "Vikash": 1, + "Rauniyar": 1, "concrete": 33, - "FoodsAfr": 1, - "of": 89, - "open": 23, - "Prelude": 11, - "Predef": 3, - "in": 32, - "coding": 29, - "utf8": 29, + "FoodsHin": 2, + "param": 22, + "Gender": 94, + "Masc": 67, + "|": 122, + "Fem": 65, + "Number": 207, + "Sg": 184, + "Pl": 182, "lincat": 28, "s": 365, "Str": 394, - "Number": 207, + "g": 132, "n": 206, - "AdjAP": 10, "lin": 28, "item": 36, "quality": 90, "item.s": 24, "+": 480, "quality.s": 50, - "Predic": 3, + "item.g": 12, + "item.n": 29, + "copula": 33, "kind": 115, "kind.s": 46, - "Sg": 184, - "Pl": 182, - "table": 148, - "Attr": 9, - "declNoun_e": 2, - "declNoun_aa": 2, - "declNoun_ss": 2, - "declNoun_s": 2, - "veryAdj": 2, - "regAdj": 61, - "smartAdj_e": 4, - "param": 22, - "|": 122, - "oper": 29, - "Noun": 9, - "operations": 2, - "wyn": 1, - "kaas": 1, - "vis": 1, - "pizza": 1, - "x": 74, - "let": 8, - "v": 6, - "tk": 1, - "last": 3, - "Adjective": 9, - "mkAdj": 27, - "y": 3, - "declAdj_e": 2, - "declAdj_g": 2, - "w": 15, - "init": 4, - "declAdj_oog": 2, - "i": 2, - "a": 57, - "x.s": 8, - "case": 44, - "_": 68, - "FoodsAmh": 1, - "Krasimir": 1, - "Angelov": 1, - "FoodsBul": 1, - "Gender": 94, - "Masc": 67, - "Fem": 65, - "Neutr": 21, - "Agr": 3, - "ASg": 23, - "APl": 11, - "g": 132, - "qual": 8, - "item.a": 2, - "qual.s": 8, "kind.g": 38, + "regN": 15, + "regAdj": 61, + "p": 11, + "table": 148, + "case": 44, + "lark": 8, + "_": 68, + "mkAdj": 27, + "ms": 4, + "mp": 4, + "f": 16, + "a": 57, + "acch": 6, "#": 14, "path": 14, ".": 13, - "present": 7, - "Jordi": 2, - "Saludes": 2, - "FoodsCat": 1, - "FoodsI": 6, - "with": 5, - "Syntax": 7, - "SyntaxCat": 2, - "LexFoods": 12, - "LexFoodsCat": 2, - "FoodsChi": 1, - "p": 11, - "quality.p": 2, - "kind.c": 11, - "geKind": 5, - "longQuality": 8, - "mkKind": 2, - "Katerina": 2, - "Bohmova": 2, - "FoodsCze": 1, - "ResCze": 2, - "NounPhrase": 3, - "copula": 33, - "item.n": 29, - "item.g": 12, + "prelude": 2, + "Inese": 1, + "Bernsone": 1, + "FoodsLav": 1, + "Prelude": 11, + "SS": 6, + "Q": 5, + "Defin": 9, + "ss": 13, + "Q1": 5, + "Ind": 14, "det": 86, + "Def": 21, "noun": 51, - "regnfAdj": 2, - "Femke": 1, - "Johansson": 1, - "FoodsDut": 1, - "AForm": 4, - "APred": 8, - "AAttr": 3, - "regNoun": 38, - "f": 16, - "a.s": 8, - "regadj": 6, - "adj": 38, - "noun.s": 7, + "qual": 8, + "q": 10, + "spec": 2, + "qual.s": 8, + "Q2": 3, + "adjective": 22, + "specAdj": 2, + "m": 9, + "cn": 11, + "cn.g": 10, + "cn.s": 8, "man": 10, "men": 10, - "wijn": 3, - "koud": 3, - "duur": 2, - "dure": 2, + "skaists": 5, + "skaista": 2, + "skaisti": 2, + "skaistas": 2, + "skaistais": 2, + "skaistaa": 2, + "skaistie": 2, + "skaistaas": 2, + "let": 8, + "skaist": 8, + "init": 4, + "Adjective": 9, + "Type": 9, + "a.s": 8, + "Jordi": 2, + "Saludes": 2, + "LexFoodsCat": 2, + "SyntaxCat": 2, + "ParadigmsCat": 1, + "M": 1, + "MorphoCat": 1, + "M.Masc": 2, "FoodsEng": 1, "language": 2, "en_US": 1, + "regNoun": 38, + "adj": 38, + "noun.s": 7, "car": 6, "cold": 4, - "Julia": 1, - "Hammar": 1, - "FoodsEpo": 1, - "SS": 6, - "ss": 13, - "d": 6, - "cn": 11, - "cn.s": 8, - "vino": 3, - "nova": 3, - "FoodsFin": 1, - "SyntaxFin": 2, - "LexFoodsFin": 2, "../foods": 1, + "present": 7, "FoodsFre": 1, "SyntaxFre": 1, "ParadigmsFre": 1, @@ -25251,169 +25390,207 @@ "mkCN": 20, "mkAP": 28, "very_AdA": 4, - "mkN": 46, "masculine": 4, "feminine": 2, - "mkA": 47, + "FoodsPes": 1, + "optimize": 1, + "noexpand": 1, + "Add": 8, + "prep": 11, + "Indep": 4, + "Attr": 9, + "kind.prep": 1, + "quality.prep": 1, + "at": 3, + "a.prep": 1, + "it": 2, + "must": 1, + "be": 1, + "written": 1, + "as": 2, + "x1": 3, + "x4": 2, + "pytzA": 3, + "pytzAy": 1, + "pytzAhA": 3, + "pr": 4, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "mrd": 8, + "tAzh": 8, + "tAzhy": 2, + "interface": 1, + "Syntax": 7, + "N": 4, + "A": 6, + "LexFoodsIta": 2, + "SyntaxIta": 2, + "ParadigmsIta": 1, + "FoodsOri": 1, + "Laurette": 2, + "Pretorius": 2, + "Sr": 2, + "&": 2, + "Jr": 2, + "and": 4, + "Ansu": 2, + "Berg": 2, + "FoodsAfr": 1, + "Predef": 3, + "AdjAP": 10, + "Predic": 3, + "declNoun_e": 2, + "declNoun_aa": 2, + "declNoun_ss": 2, + "declNoun_s": 2, + "veryAdj": 2, + "smartAdj_e": 4, + "Noun": 9, + "operations": 2, + "wyn": 1, + "kaas": 1, + "vis": 1, + "pizza": 1, + "x": 74, + "v": 6, + "tk": 1, + "last": 3, + "y": 3, + "declAdj_e": 2, + "declAdj_g": 2, + "w": 15, + "declAdj_oog": 2, + "i": 2, + "x.s": 8, "FoodsGer": 1, + "FoodsI": 6, + "with": 5, "SyntaxGer": 2, "LexFoodsGer": 2, - "alltenses": 3, - "Dana": 1, - "Dannells": 1, - "Licensed": 1, - "FoodsHeb": 2, - "Species": 8, - "mod": 7, - "Modified": 5, - "sp": 11, - "Indef": 6, - "Def": 21, - "T": 2, - "regAdj2": 3, - "F": 2, - "Type": 9, - "Adj": 4, - "m": 9, - "cn.mod": 2, - "cn.g": 10, - "gvina": 6, - "hagvina": 3, - "gvinot": 6, - "hagvinot": 3, - "defH": 7, - "replaceLastLetter": 7, - "adjective": 22, - "tov": 6, - "tova": 3, - "tovim": 3, - "tovot": 3, - "to": 6, - "c@": 3, - "italki": 3, - "italk": 4, - "Vikash": 1, - "Rauniyar": 1, - "FoodsHin": 2, - "regN": 15, - "lark": 8, - "ms": 4, - "mp": 4, - "acch": 6, "incomplete": 1, "this_Det": 2, "that_Det": 2, "these_Det": 2, "those_Det": 2, - "wine_N": 7, - "pizza_N": 7, - "cheese_N": 7, - "fish_N": 8, - "fresh_A": 7, - "warm_A": 8, - "italian_A": 7, - "expensive_A": 7, - "delicious_A": 7, - "boring_A": 7, - "prelude": 2, - "Martha": 1, - "Dis": 1, - "Brandt": 1, - "FoodsIce": 1, - "Defin": 9, - "Ind": 14, - "the": 7, - "word": 3, - "is": 6, - "more": 1, - "commonly": 1, - "used": 2, - "Iceland": 1, - "but": 1, - "Icelandic": 1, - "for": 6, - "it": 2, - "defOrInd": 2, - "order": 1, - "given": 1, - "forms": 2, - "mSg": 1, - "fSg": 1, - "nSg": 1, - "mPl": 1, - "fPl": 1, - "nPl": 1, - "mSgDef": 1, - "f/nSgDef": 1, - "_PlDef": 1, - "masc": 3, - "fem": 2, - "neutr": 2, - "x1": 3, - "x9": 1, - "ferskur": 5, - "fersk": 11, - "ferskt": 2, - "ferskir": 2, - "ferskar": 2, - "fersk_pl": 2, - "ferski": 2, - "ferska": 2, - "fersku": 2, - "t": 28, - "": 1, - "<": 10, - "Predef.tk": 2, - "FoodsIta": 1, - "SyntaxIta": 2, - "LexFoodsIta": 2, "../lib/src/prelude": 1, "Zofia": 1, "Stankiewicz": 1, "FoodsJpn": 1, "Style": 3, "AdjUse": 4, + "t": 28, "AdjType": 4, "quality.t": 3, "IAdj": 4, "Plain": 3, + "APred": 8, "Polite": 4, "NaAdj": 4, "na": 1, "adjectives": 2, "have": 2, "different": 1, - "as": 2, + "forms": 2, "attributes": 1, "predicates": 2, + "for": 6, "phrase": 1, "types": 1, "can": 1, "form": 4, "without": 1, + "the": 7, "cannot": 1, + "d": 6, "sakana": 6, "chosenna": 2, "chosen": 2, "akai": 2, - "Inese": 1, - "Bernsone": 1, - "FoodsLav": 1, - "Q": 5, - "Q1": 5, - "q": 10, - "spec": 2, - "Q2": 3, - "specAdj": 2, - "skaists": 5, - "skaista": 2, - "skaisti": 2, - "skaistas": 2, - "skaistais": 2, - "skaistaa": 2, - "skaistie": 2, - "skaistaas": 2, - "skaist": 8, + "FoodsTur": 1, + "Case": 10, + "softness": 4, + "Softness": 5, + "h": 4, + "Harmony": 5, + "Reason": 1, + "excluding": 1, + "plural": 3, + "In": 1, + "Turkish": 1, + "if": 1, + "subject": 1, + "is": 6, + "not": 2, + "human": 2, + "being": 1, + "then": 1, + "singular": 1, + "used": 2, + "regardless": 1, + "number": 2, + "subject.": 1, + "Since": 1, + "all": 1, + "possible": 1, + "subjects": 1, + "are": 1, + "non": 1, + "do": 1, + "need": 1, + "to": 6, + "form.": 1, + "quality.softness": 1, + "quality.h": 1, + "quality.c": 1, + "Nom": 9, + "Gen": 5, + "a.c": 1, + "a.softness": 1, + "a.h": 1, + "I_Har": 4, + "Ih_Har": 4, + "U_Har": 4, + "Uh_Har": 4, + "Ih": 1, + "Uh": 1, + "Soft": 3, + "Hard": 3, + "num": 6, + "overload": 1, + "mkn": 1, + "peynir": 2, + "peynirler": 2, + "[": 2, + "]": 2, + "sarap": 2, + "saraplar": 2, + "sarabi": 2, + "saraplari": 2, + "italyan": 4, + "ca": 2, + "getSoftness": 2, + "getHarmony": 2, + "See": 1, + "comment": 1, + "lines": 1, + "excluded": 1, + "copula.": 1, + "base": 4, + "c@": 3, + "*": 1, + "/GF/lib/src/prelude": 1, + "Nyamsuren": 1, + "Erdenebadrakh": 1, + "FoodsMon": 1, + "prefixSS": 1, + "FoodsSwe": 1, + "SyntaxSwe": 2, + "LexFoodsSwe": 2, + "**": 1, + "sv_SE": 1, "John": 1, "J.": 1, "Camilleri": 1, @@ -25450,6 +25627,7 @@ "first": 1, "letter": 1, "next": 1, + "word": 3, "pre": 1, "cons@": 1, "cons": 1, @@ -25457,45 +25635,10 @@ "Sg/Pl": 1, "string": 1, "default": 1, + "masc": 3, "gender": 2, - "number": 2, - "/GF/lib/src/prelude": 1, - "Nyamsuren": 1, - "Erdenebadrakh": 1, - "FoodsMon": 1, - "prefixSS": 1, - "Dinesh": 1, - "Simkhada": 1, - "FoodsNep": 1, - "adjPl": 2, - "bor": 2, - "FoodsOri": 1, - "FoodsPes": 1, - "optimize": 1, - "noexpand": 1, - "Add": 8, - "prep": 11, - "Indep": 4, - "kind.prep": 1, - "quality.prep": 1, - "at": 3, - "a.prep": 1, - "must": 1, - "be": 1, - "written": 1, - "x4": 2, - "pytzA": 3, - "pytzAy": 1, - "pytzAhA": 3, - "pr": 4, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "mrd": 8, - "tAzh": 8, - "tAzhy": 2, + "FoodsFin": 1, + "ParadigmsSwe": 1, "Rami": 1, "Shashati": 1, "FoodsPor": 1, @@ -25509,6 +25652,7 @@ "adjSozinho": 2, "sozinho": 3, "sozinh": 4, + "Predef.tk": 2, "independent": 1, "adjUtil": 2, "util": 3, @@ -25518,12 +25662,119 @@ "adjcetives": 1, "ItemT": 2, "KindT": 4, - "num": 6, "noun.g": 3, "animal": 2, "animais": 2, "gen": 4, "carro": 3, + "ParadigmsGer": 1, + "Dinesh": 1, + "Simkhada": 1, + "FoodsNep": 1, + "adjPl": 2, + "bor": 2, + "alltenses": 3, + "Dana": 1, + "Dannells": 1, + "Licensed": 1, + "FoodsHeb": 2, + "Species": 8, + "mod": 7, + "Modified": 5, + "sp": 11, + "Indef": 6, + "T": 2, + "regAdj2": 3, + "F": 2, + "Adj": 4, + "cn.mod": 2, + "gvina": 6, + "hagvina": 3, + "gvinot": 6, + "hagvinot": 3, + "defH": 7, + "replaceLastLetter": 7, + "tov": 6, + "tova": 3, + "tovim": 3, + "tovot": 3, + "italki": 3, + "italk": 4, + "Krasimir": 1, + "Angelov": 1, + "FoodsBul": 1, + "Neutr": 21, + "Agr": 3, + "ASg": 23, + "APl": 11, + "item.a": 2, + "FoodsTha": 1, + "SyntaxTha": 1, + "LexiconTha": 1, + "ParadigmsTha": 1, + "R": 4, + "ResTha": 1, + "R.thword": 4, + "Shafqat": 1, + "Virk": 1, + "FoodsUrd": 1, + "coupla": 2, + "Katerina": 2, + "Bohmova": 2, + "FoodsCze": 1, + "ResCze": 2, + "NounPhrase": 3, + "regnfAdj": 2, + "Martha": 1, + "Dis": 1, + "Brandt": 1, + "FoodsIce": 1, + "more": 1, + "commonly": 1, + "Iceland": 1, + "but": 1, + "Icelandic": 1, + "defOrInd": 2, + "order": 1, + "given": 1, + "mSg": 1, + "fSg": 1, + "nSg": 1, + "mPl": 1, + "fPl": 1, + "nPl": 1, + "mSgDef": 1, + "f/nSgDef": 1, + "_PlDef": 1, + "fem": 2, + "neutr": 2, + "x9": 1, + "ferskur": 5, + "fersk": 11, + "ferskt": 2, + "ferskir": 2, + "ferskar": 2, + "fersk_pl": 2, + "ferski": 2, + "ferska": 2, + "fersku": 2, + "": 1, + "<": 10, + "FoodsSpa": 1, + "SyntaxSpa": 1, + "StructuralSpa": 1, + "ParadigmsSpa": 1, + "FoodsChi": 1, + "quality.p": 2, + "kind.c": 11, + "geKind": 5, + "longQuality": 8, + "mkKind": 2, + "Julia": 1, + "Hammar": 1, + "FoodsEpo": 1, + "vino": 3, + "nova": 3, "Ramona": 1, "Enache": 1, "FoodsRon": 1, @@ -25555,22 +25806,6 @@ "": 1, "": 1, "": 1, - "FoodsSpa": 1, - "SyntaxSpa": 1, - "StructuralSpa": 1, - "ParadigmsSpa": 1, - "FoodsSwe": 1, - "SyntaxSwe": 2, - "LexFoodsSwe": 2, - "**": 1, - "sv_SE": 1, - "FoodsTha": 1, - "SyntaxTha": 1, - "LexiconTha": 1, - "ParadigmsTha": 1, - "R": 4, - "ResTha": 1, - "R.thword": 4, "FoodsTsn": 1, "NounClass": 28, "r": 9, @@ -25616,88 +25851,9 @@ "mkQualRelPart": 2, "mkDescrCop_PName": 2, "mkDescrCop": 2, - "FoodsTur": 1, - "Case": 10, - "softness": 4, - "Softness": 5, - "h": 4, - "Harmony": 5, - "Reason": 1, - "excluding": 1, - "plural": 3, - "In": 1, - "Turkish": 1, - "if": 1, - "subject": 1, - "not": 2, - "human": 2, - "being": 1, - "then": 1, - "singular": 1, - "regardless": 1, - "subject.": 1, - "Since": 1, - "all": 1, - "possible": 1, - "subjects": 1, - "are": 1, - "non": 1, - "do": 1, - "need": 1, - "form.": 1, - "quality.softness": 1, - "quality.h": 1, - "quality.c": 1, - "Nom": 9, - "Gen": 5, - "a.c": 1, - "a.softness": 1, - "a.h": 1, - "I_Har": 4, - "Ih_Har": 4, - "U_Har": 4, - "Uh_Har": 4, - "Ih": 1, - "Uh": 1, - "Soft": 3, - "Hard": 3, - "overload": 1, - "mkn": 1, - "peynir": 2, - "peynirler": 2, - "[": 2, - "]": 2, - "sarap": 2, - "saraplar": 2, - "sarabi": 2, - "saraplari": 2, - "italyan": 4, - "ca": 2, - "getSoftness": 2, - "getHarmony": 2, - "See": 1, - "comment": 1, - "lines": 1, - "excluded": 1, - "copula.": 1, - "base": 4, - "*": 1, - "Shafqat": 1, - "Virk": 1, - "FoodsUrd": 1, - "coupla": 2, - "interface": 1, - "N": 4, - "A": 6, - "instance": 5, - "ParadigmsCat": 1, - "M": 1, - "MorphoCat": 1, - "M.Masc": 2, - "ParadigmsFin": 1, - "ParadigmsGer": 1, - "ParadigmsIta": 1, - "ParadigmsSwe": 1, + "FoodsIta": 1, + "FoodsAmh": 1, + "FoodsCat": 1, "resource": 1, "ne": 2, "muz": 2, @@ -25709,9 +25865,21 @@ "fpl": 3, "npl": 3, "mlad": 7, - "vynikajici": 7 + "vynikajici": 7, + "Femke": 1, + "Johansson": 1, + "FoodsDut": 1, + "AForm": 4, + "AAttr": 3, + "regadj": 6, + "wijn": 3, + "koud": 3, + "duur": 2, + "dure": 2 }, "Groovy": { + "SHEBANG#!groovy": 2, + "println": 3, "task": 1, "echoDirListViaAntBuilder": 1, "(": 7, @@ -25755,10 +25923,8 @@ "CWD": 1, "projectDir": 1, "removed.": 1, - "println": 3, "it.toString": 1, "-": 1, - "SHEBANG#!groovy": 2, "html": 3, "head": 2, "component": 1, @@ -25767,32 +25933,18 @@ "p": 1 }, "Groovy Server Pages": { - "": 4, - "": 4, - "": 4, - "http": 3, - "equiv=": 3, - "content=": 4, - "": 4, - "Testing": 3, - "with": 3, - "SiteMesh": 2, - "and": 2, - "Resources": 2, - "": 4, - "name=": 1, - "": 2, - "module=": 2, - "": 4, - "": 4, - "": 4, - "": 4, "<%@>": 1, "page": 2, "contentType=": 1, + "": 4, + "": 4, + "": 4, "Using": 1, "directive": 1, "tag": 1, + "": 4, + "": 4, + "": 4, "

": 2, "class=": 2, "": 2, @@ -25803,43 +25955,118 @@ "": 2, "
": 2, "Print": 1, + "": 4, + "": 4, + "": 4, + "http": 3, + "equiv=": 3, + "content=": 4, + "Testing": 3, + "with": 3, + "Resources": 2, + "": 2, + "module=": 2, + "SiteMesh": 2, + "and": 2, + "name=": 1, "{": 1, "example": 1, "}": 1 }, "HTML": { "": 2, - "HTML": 2, + "html": 1, "PUBLIC": 2, "W3C": 2, "DTD": 3, - "4": 1, + "XHTML": 1, + "1": 1, "0": 2, - "Frameset": 1, + "Transitional": 1, "EN": 2, "http": 3, "www": 2, "w3": 2, "org": 2, "TR": 2, + "xhtml1": 2, + "transitional": 1, + "dtd": 2, + "": 2, + "xmlns=": 1, + "": 2, + "": 1, + "equiv=": 1, + "content=": 1, + "": 2, + "Related": 2, + "Pages": 2, + "": 2, + "": 1, + "href=": 9, + "rel=": 1, + "type=": 1, + "": 1, + "": 2, + "
": 10, + "class=": 22, + "": 8, + "Main": 1, + "Page": 1, + "": 8, + "&": 3, + "middot": 3, + ";": 3, + "Class": 2, + "Overview": 2, + "Hierarchy": 1, + "All": 1, + "Classes": 1, + "
": 11, + "Here": 1, + "is": 1, + "a": 4, + "list": 1, + "of": 5, + "all": 1, + "related": 1, + "documentation": 1, + "pages": 1, + "": 1, + "": 2, + "id=": 2, + "": 4, + "": 2, + "16": 1, + "The": 2, + "Layout": 1, + "System": 1, + "
": 4, + "": 2, + "src=": 2, + "alt=": 2, + "width=": 1, + "height=": 2, + "target=": 3, + "
": 1, + "Generated": 1, + "with": 1, + "Doxygen": 1, + "": 2, + "": 2, + "HTML": 2, + "4": 1, + "Frameset": 1, "REC": 1, "html40": 1, "frameset": 1, - "dtd": 2, - "": 2, - "": 2, "Common_meta": 1, "(": 14, ")": 14, - "": 2, "Android": 5, "API": 7, "Differences": 2, "Report": 2, - "": 2, - "": 2, - "
": 10, - "class=": 22, "Header": 1, "

": 1, "

": 1, @@ -25869,17 +26096,14 @@ "an": 3, "change": 2, "includes": 1, - "a": 4, "brief": 1, "description": 1, - "of": 5, "explanation": 1, "suggested": 1, "workaround": 1, "where": 1, "available.": 1, "

": 3, - "The": 2, "differences": 2, "described": 1, "this": 2, @@ -25915,12 +26139,8 @@ "about": 1, "SDK": 1, "see": 1, - "": 8, - "href=": 9, - "target=": 3, "product": 1, "site": 1, - "": 8, ".": 1, "if": 4, "no_delta": 1, @@ -25949,126 +26169,193 @@ "PackageAddedLink": 1, "SimpleTableRow": 2, "changed_packages": 2, - "PackageChangedLink": 1, - "
": 11, - "": 2, - "": 2, - "html": 1, - "XHTML": 1, + "PackageChangedLink": 1 + }, + "HTML+ERB": { + "<%>": 12, + "if": 3, + "Spree": 4, + "Config": 4, + "enable_fishbowl": 1, + "
": 23, + "class=": 24, + "id=": 1, + "
": 1, + "": 1, + "align=": 1, + "<%=>": 12, + "t": 4, + "fishbowl_settings": 1, + "": 1, + "fishbowl_options": 1, + "each": 1, + "do": 2, + "key": 5, + "label_tag": 2, + "to_s": 2, + "gsub": 1, + "fishbowl_": 1, + "to_sym": 1, + "tag": 2, + "br": 2, + "text_field_tag": 1, + "preferences": 4, + "size": 1, + "class": 2, + "}": 3, + ")": 4, + "%": 2, + "
": 23, + "end": 5, + "hidden_field_tag": 1, + "fishbowl_always_fetch_current_inventory": 3, + "0": 1, + "check_box_tag": 1, "1": 1, - "Transitional": 1, - "xhtml1": 2, - "transitional": 1, - "xmlns=": 1, - "": 1, - "equiv=": 1, - "content=": 1, - "Related": 2, - "Pages": 2, - "": 1, - "rel=": 1, + "always_fetch_current_inventory": 1, + "location_groups": 2, + "empty": 1, + "fishbowl_location_group": 3, + "location_group": 1, + "select": 1, + "selected": 1, + "[": 2, + "]": 2, + "{": 1, + "": 1, + "": 1, + "provide": 1, + "title": 1, + "header": 2, + "present": 1, + "users": 3, + "user_presenter": 1, + "

": 1, + "

": 1, + "will_paginate": 2, + "Name": 1, + "Email": 1, + "Chords": 1, + "Keys": 1, + "Tunings": 1, + "Credits": 1, + "Prem": 1, + "Since": 1, + "No": 1, + "Users": 1, + "else": 1, + "render": 1 }, "Haml": { - "%": 1, + "%": 7, "p": 1, "Hello": 1, - "World": 1 + "World": 1, + "/": 1, + "replace": 1, + ".pull": 1, + "-": 16, + "right": 1, + ".btn": 2, + "group": 2, + "link_to": 4, + "page.url": 1, + "target": 1, + "title": 5, + "t": 5, + "(": 10, + ")": 10, + "class": 4, + "do": 4, + "i.icon": 5, + "picture.row": 1, + "black": 1, + "refinery.edit_admin_page_path": 1, + "page.nested_url": 2, + "switch_locale": 1, + "page.translations.first.locale": 1, + "unless": 1, + "page.translated_to_default_locale": 1, + "scope": 4, + "edit.row": 1, + "blue": 1, + "if": 1, + "page.deletable": 1, + "refinery.admin_page_path": 1, + "methode": 1, + "delete": 1, + "data": 1, + "{": 1, + "confirm": 1, + "page_title_with_translations": 1, + "page": 1, + "}": 1, + "trash.row": 1, + "red": 1, + "else": 1, + "button.btn.btn": 1, + "xs.btn": 1, + "default.disabled": 1, + "trash": 1, + "refinery.new_admin_page_path": 1, + "parent_id": 1, + "page.id": 1, + "plus.row": 1, + "green": 1 }, "Handlebars": { "
": 5, "class=": 5, "

": 3, + "By": 2, "{": 16, - "title": 1, + "fullName": 2, + "author": 2, "}": 16, "

": 3, "body": 3, "
": 5, - "By": 2, - "fullName": 2, - "author": 2, "Comments": 1, "#each": 1, "comments": 1, "

": 1, "

": 1, - "/each": 1 + "/each": 1, + "title": 1 }, "Haskell": { - "import": 6, - "Data.Char": 1, - "main": 4, - "IO": 2, - "(": 8, - ")": 8, - "do": 3, - "let": 2, - "hello": 2, - "putStrLn": 3, - "map": 13, - "toUpper": 1, "module": 2, - "Main": 1, - "where": 4, "Sudoku": 9, - "Data.Maybe": 2, - "sudoku": 36, - "[": 4, - "]": 3, - "pPrint": 5, - "+": 2, - "fromMaybe": 1, + "(": 8, "solve": 5, "isSolved": 4, + "pPrint": 5, + ")": 8, + "where": 4, + "import": 6, + "Data.Maybe": 2, "Data.List": 1, "Data.List.Split": 1, "type": 1, + "[": 4, "Int": 1, + "]": 3, "-": 3, "Maybe": 1, + "sudoku": 36, "|": 8, "Just": 1, "otherwise": 2, + "do": 3, "index": 27, "<": 1, "elemIndex": 1, + "let": 2, "sudokus": 2, "nextTest": 5, "i": 7, @@ -26093,6 +26380,7 @@ "quot": 3, "transpose": 4, "mod": 2, + "map": 13, "concat": 2, "concatMap": 2, "3": 4, @@ -26108,7 +26396,16 @@ "True": 1, "String": 1, "intercalate": 2, - "show": 1 + "show": 1, + "Data.Char": 1, + "main": 4, + "IO": 2, + "hello": 2, + "putStrLn": 3, + "toUpper": 1, + "Main": 1, + "+": 2, + "fromMaybe": 1 }, "Hy": { ";": 4, @@ -26156,64 +26453,6 @@ ".result": 1 }, "IDL": { - ";": 59, - "docformat": 3, - "+": 8, - "Inverse": 1, - "hyperbolic": 2, - "cosine.": 1, - "Uses": 1, - "the": 7, - "formula": 1, - "text": 1, - "{": 3, - "acosh": 1, - "}": 3, - "(": 26, - "z": 9, - ")": 26, - "ln": 1, - "sqrt": 4, - "-": 14, - "Examples": 2, - "The": 1, - "arc": 1, - "sine": 1, - "function": 4, - "looks": 1, - "like": 2, - "IDL": 5, - "x": 8, - "*": 2, - "findgen": 1, - "/": 1, - "plot": 1, - "mg_acosh": 2, - "xstyle": 1, - "This": 1, - "should": 1, - "look": 1, - "..": 1, - "image": 1, - "acosh.png": 1, - "Returns": 3, - "float": 1, - "double": 2, - "complex": 2, - "or": 1, - "depending": 1, - "on": 1, - "input": 2, - "Params": 3, - "in": 4, - "required": 4, - "type": 5, - "numeric": 1, - "compile_opt": 3, - "strictarr": 3, - "return": 5, - "alog": 1, - "end": 5, "MODULE": 1, "mg_analysis": 1, "DESCRIPTION": 1, @@ -26229,20 +26468,35 @@ "MG_ARRAY_EQUAL": 1, "KEYWORDS": 1, "MG_TOTAL": 1, + ";": 59, + "docformat": 3, + "+": 8, "Find": 1, + "the": 7, "greatest": 1, "common": 1, "denominator": 1, + "(": 26, "GCD": 1, + ")": 26, "two": 1, "positive": 2, "integers.": 1, + "Returns": 3, "integer": 5, + "Params": 3, "a": 4, + "in": 4, + "required": 4, + "type": 5, "first": 1, "b": 4, "second": 1, + "-": 14, + "function": 4, "mg_gcd": 2, + "compile_opt": 3, + "strictarr": 3, "on_error": 1, "if": 5, "n_params": 1, @@ -26260,8 +26514,51 @@ "<": 1, "maxArg": 3, "eq": 2, + "return": 5, "remainder": 3, "mod": 1, + "end": 5, + "Inverse": 1, + "hyperbolic": 2, + "cosine.": 1, + "Uses": 1, + "formula": 1, + "text": 1, + "{": 3, + "acosh": 1, + "}": 3, + "z": 9, + "ln": 1, + "sqrt": 4, + "Examples": 2, + "The": 1, + "arc": 1, + "sine": 1, + "looks": 1, + "like": 2, + "IDL": 5, + "x": 8, + "*": 2, + "findgen": 1, + "/": 1, + "plot": 1, + "mg_acosh": 2, + "xstyle": 1, + "This": 1, + "should": 1, + "look": 1, + "..": 1, + "image": 1, + "acosh.png": 1, + "float": 1, + "double": 2, + "complex": 2, + "or": 1, + "depending": 1, + "on": 1, + "input": 2, + "numeric": 1, + "alog": 1, "Truncate": 1, "argument": 2, "towards": 1, @@ -26305,13 +26602,19 @@ "example": 1 }, "INI": { + "[": 2, + "user": 1, + "]": 2, + "name": 1, + "Josh": 1, + "Peek": 1, + "email": 1, + "josh@github.com": 1, ";": 1, "editorconfig.org": 1, "root": 1, "true": 3, - "[": 2, "*": 1, - "]": 2, "indent_style": 1, "space": 1, "indent_size": 1, @@ -26321,13 +26624,7 @@ "utf": 1, "-": 1, "trim_trailing_whitespace": 1, - "insert_final_newline": 1, - "user": 1, - "name": 1, - "Josh": 1, - "Peek": 1, - "email": 1, - "josh@github.com": 1 + "insert_final_newline": 1 }, "Idris": { "module": 1, @@ -26370,16 +26667,29 @@ "]": 1 }, "Inform 7": { - "by": 3, - "Andrew": 3, - "Plotkin.": 2, - "Include": 1, + "Version": 1, + "of": 3, "Trivial": 3, "Extension": 3, - "The": 1, - "Kitchen": 1, + "by": 3, + "Andrew": 3, + "Plotkin": 1, + "begins": 1, + "here.": 2, + "A": 3, + "cow": 3, "is": 4, "a": 2, + "kind": 1, + "animal.": 1, + "can": 1, + "be": 1, + "purple.": 1, + "ends": 1, + "Plotkin.": 2, + "Include": 1, + "The": 1, + "Kitchen": 1, "room.": 1, "[": 1, "This": 1, @@ -26399,26 +26709,13 @@ "this": 1, "player.": 1, "]": 1, - "A": 3, "purple": 1, - "cow": 3, "called": 1, "Gelett": 2, "Kitchen.": 1, "Instead": 1, - "of": 3, "examining": 1, - "say": 1, - "Version": 1, - "Plotkin": 1, - "begins": 1, - "here.": 2, - "kind": 1, - "animal.": 1, - "can": 1, - "be": 1, - "purple.": 1, - "ends": 1 + "say": 1 }, "Ioke": { "SHEBANG#!ioke": 1, @@ -26507,9 +26804,9 @@ }, "JSON": { "{": 73, + "}": 73, "[": 17, "]": 17, - "}": 73, "true": 3 }, "JSON5": { @@ -26621,548 +26918,49 @@ }, "Java": { "package": 6, - "clojure.asm": 1, + "nokogiri": 6, ";": 891, "import": 66, - "java.lang.reflect.Constructor": 1, - "java.lang.reflect.Method": 1, - "public": 214, - "class": 12, - "Type": 42, - "{": 434, - "final": 78, - "static": 141, - "int": 62, - "VOID": 5, - "BOOLEAN": 6, - "CHAR": 6, - "BYTE": 6, - "SHORT": 6, - "INT": 6, - "FLOAT": 6, - "LONG": 7, - "DOUBLE": 7, - "ARRAY": 6, - "OBJECT": 7, - "VOID_TYPE": 3, - "new": 131, - "(": 1097, - ")": 1097, - "BOOLEAN_TYPE": 3, - "CHAR_TYPE": 3, - "BYTE_TYPE": 3, - "SHORT_TYPE": 3, - "INT_TYPE": 3, - "FLOAT_TYPE": 3, - "LONG_TYPE": 3, - "DOUBLE_TYPE": 3, - "private": 77, - "sort": 18, - "char": 13, - "[": 54, - "]": 54, - "buf": 43, - "off": 25, - "len": 24, - "this.sort": 2, - "this.len": 2, - "}": 434, - "this.buf": 2, - "this.off": 1, - "getType": 10, - "String": 33, - "typeDescriptor": 1, - "return": 267, - "typeDescriptor.toCharArray": 1, - "Class": 10, - "c": 21, - "if": 116, - "c.isPrimitive": 2, - "Integer.TYPE": 2, - "else": 33, - "Void.TYPE": 3, - "Boolean.TYPE": 2, - "Byte.TYPE": 2, - "Character.TYPE": 2, - "Short.TYPE": 2, - "Double.TYPE": 2, - "Float.TYPE": 2, - "getDescriptor": 15, - "getObjectType": 1, - "name": 10, - "l": 5, - "name.length": 2, - "+": 83, - "name.getChars": 1, - "getArgumentTypes": 2, - "methodDescriptor": 2, - "methodDescriptor.toCharArray": 2, - "size": 16, - "while": 10, - "true": 21, - "car": 18, - "break": 4, - "args": 6, - ".len": 1, - "Method": 3, - "method": 2, - "classes": 2, - "method.getParameterTypes": 1, - "types": 3, - "classes.length": 2, - "for": 16, - "i": 54, - "-": 15, - "getReturnType": 2, - "methodDescriptor.indexOf": 1, - "method.getReturnType": 1, - "switch": 6, - "case": 56, - "//": 16, - "default": 6, - "getSort": 1, - "getDimensions": 3, - "getElementType": 2, - "getClassName": 1, - "StringBuffer": 14, - "b": 7, - ".getClassName": 1, - "b.append": 1, - "b.toString": 1, - ".replace": 2, - "getInternalName": 2, - "buf.toString": 4, - "getMethodDescriptor": 2, - "returnType": 1, - "argumentTypes": 2, - "buf.append": 21, - "<": 13, - "argumentTypes.length": 1, - ".getDescriptor": 1, - "returnType.getDescriptor": 1, - "void": 25, - "c.getName": 1, - "getConstructorDescriptor": 1, - "Constructor": 1, - "parameters": 4, - "c.getParameterTypes": 1, - "parameters.length": 2, - ".toString": 1, - "m": 1, - "m.getParameterTypes": 1, - "m.getReturnType": 1, - "d": 10, - "d.isPrimitive": 1, - "d.isArray": 1, - "d.getComponentType": 1, - "d.getName": 1, - "name.charAt": 1, - "getSize": 1, - "||": 8, - "getOpcode": 1, - "opcode": 17, - "Opcodes.IALOAD": 1, - "Opcodes.IASTORE": 1, - "boolean": 36, - "equals": 2, - "Object": 31, - "o": 12, - "this": 16, - "instanceof": 19, - "false": 12, - "t": 6, - "t.sort": 1, - "Type.OBJECT": 2, - "Type.ARRAY": 2, - "t.len": 1, - "j": 9, - "t.off": 1, - "end": 4, - "t.buf": 1, - "hashCode": 1, - "hc": 4, - "*": 2, - "toString": 1, - "clojure.lang": 1, - "java.lang.ref.Reference": 1, - "java.math.BigInteger": 1, - "java.util.Map": 3, - "java.util.concurrent.ConcurrentHashMap": 1, - "java.lang.ref.SoftReference": 1, - "java.lang.ref.ReferenceQueue": 1, - "Util": 1, - "equiv": 17, - "k1": 40, - "k2": 38, - "null": 80, - "Number": 9, - "&&": 6, - "Numbers.equal": 1, - "IPersistentCollection": 5, - "pcequiv": 2, - "k1.equals": 2, - "long": 5, - "double": 4, - "c1": 2, - "c2": 2, - ".equiv": 2, - "identical": 1, - "classOf": 1, - "x": 8, - "x.getClass": 1, - "compare": 1, - "Numbers.compare": 1, - "Comparable": 1, - ".compareTo": 1, - "hash": 3, - "o.hashCode": 2, - "hasheq": 1, - "Numbers.hasheq": 1, - "IHashEq": 2, - ".hasheq": 1, - "hashCombine": 1, - "seed": 5, - "//a": 1, - "la": 1, - "boost": 1, - "e3779b9": 1, - "<<": 1, - "isPrimitive": 1, - "isInteger": 1, - "Integer": 2, - "Long": 1, - "BigInt": 1, - "BigInteger": 1, - "ret1": 2, - "ret": 4, - "nil": 2, - "ISeq": 2, - "": 1, - "clearCache": 1, - "ReferenceQueue": 1, - "rq": 1, - "ConcurrentHashMap": 1, - "K": 2, - "Reference": 3, - "": 3, - "cache": 1, - "//cleanup": 1, - "any": 1, - "dead": 1, - "entries": 1, - "rq.poll": 2, - "Map.Entry": 1, - "e": 31, - "cache.entrySet": 1, - "val": 3, - "e.getValue": 1, - "val.get": 1, - "cache.remove": 1, - "e.getKey": 1, - "RuntimeException": 5, - "runtimeException": 2, - "s": 10, - "Throwable": 4, - "sneakyThrow": 1, - "throw": 9, - "NullPointerException": 3, - "Util.": 1, - "": 1, - "sneakyThrow0": 2, - "@SuppressWarnings": 1, - "": 1, - "extends": 10, - "throws": 26, - "T": 2, - "nokogiri.internals": 1, - "nokogiri.internals.NokogiriHelpers.getNokogiriClass": 1, - "nokogiri.internals.NokogiriHelpers.isNamespace": 1, - "nokogiri.internals.NokogiriHelpers.stringOrNil": 1, - "nokogiri.HtmlDocument": 1, - "nokogiri.NokogiriService": 1, - "nokogiri.XmlDocument": 1, - "org.apache.xerces.parsers.DOMParser": 1, - "org.apache.xerces.xni.Augmentations": 1, - "org.apache.xerces.xni.QName": 1, - "org.apache.xerces.xni.XMLAttributes": 1, - "org.apache.xerces.xni.XNIException": 1, - "org.apache.xerces.xni.parser.XMLDocumentFilter": 1, - "org.apache.xerces.xni.parser.XMLParserConfiguration": 1, - "org.cyberneko.html.HTMLConfiguration": 1, - "org.cyberneko.html.filters.DefaultFilter": 1, - "org.jruby.Ruby": 2, - "org.jruby.RubyClass": 2, - "org.jruby.runtime.ThreadContext": 1, - "org.jruby.runtime.builtin.IRubyObject": 2, - "org.w3c.dom.Document": 1, - "org.w3c.dom.NamedNodeMap": 1, - "org.w3c.dom.NodeList": 1, - "HtmlDomParserContext": 3, - "XmlDomParserContext": 1, - "Ruby": 43, - "runtime": 88, - "IRubyObject": 35, - "options": 4, - "super": 7, - "encoding": 2, - "@Override": 6, - "protected": 8, - "initErrorHandler": 1, - "options.strict": 1, - "errorHandler": 6, - "NokogiriStrictErrorHandler": 1, - "options.noError": 2, - "options.noWarning": 2, - "NokogiriNonStrictErrorHandler4NekoHtml": 1, - "initParser": 1, - "XMLParserConfiguration": 1, - "config": 2, - "HTMLConfiguration": 1, - "XMLDocumentFilter": 3, - "removeNSAttrsFilter": 2, - "RemoveNSAttrsFilter": 2, - "elementValidityCheckFilter": 3, - "ElementValidityCheckFilter": 3, - "//XMLDocumentFilter": 1, - "filters": 3, - "config.setErrorHandler": 1, - "this.errorHandler": 2, - "parser": 1, - "DOMParser": 1, - "setProperty": 4, - "java_encoding": 2, - "setFeature": 4, - "enableDocumentFragment": 1, - "XmlDocument": 8, - "getNewEmptyDocument": 1, - "ThreadContext": 2, - "context": 8, - "XmlDocument.rbNew": 1, - "getNokogiriClass": 1, - "context.getRuntime": 3, - "wrapDocument": 1, - "RubyClass": 92, - "klazz": 107, - "Document": 2, - "document": 5, - "HtmlDocument": 7, - "htmlDocument": 6, - "NokogiriService.HTML_DOCUMENT_ALLOCATOR.allocate": 1, - "htmlDocument.setDocumentNode": 1, - "ruby_encoding.isNil": 1, - "detected_encoding": 2, - "detected_encoding.isNil": 1, - "ruby_encoding": 3, - "charset": 2, - "tryGetCharsetFromHtml5MetaTag": 2, - "stringOrNil": 1, - "htmlDocument.setEncoding": 1, - "htmlDocument.setParsedEncoding": 1, - ".equalsIgnoreCase": 5, - "document.getDocumentElement": 2, - ".getNodeName": 4, - "NodeList": 2, - "list": 1, - ".getChildNodes": 2, - "list.getLength": 1, - "list.item": 2, - "headers": 1, - "headers.getLength": 1, - "headers.item": 2, - "NamedNodeMap": 1, - "nodeMap": 1, - ".getAttributes": 1, - "k": 5, - "nodeMap.getLength": 1, - "nodeMap.item": 2, - ".getNodeValue": 1, - "DefaultFilter": 2, - "startElement": 2, - "QName": 2, - "element": 3, - "XMLAttributes": 2, - "attrs": 4, - "Augmentations": 2, - "augs": 4, - "XNIException": 2, - "attrs.getLength": 1, - "isNamespace": 1, - "attrs.getQName": 1, - "attrs.removeAttributeAt": 1, - "element.uri": 1, - "super.startElement": 2, - "NokogiriErrorHandler": 2, - "element_names": 3, - "g": 1, - "r": 1, - "w": 1, - "y": 1, - "z": 1, - "isValid": 2, - "testee": 1, - "testee.toCharArray": 1, - "index": 4, - ".length": 1, - "testee.equals": 1, - "name.rawname": 2, - "errorHandler.getErrors": 1, - ".add": 1, - "Exception": 1, - "hudson.model": 1, - "hudson.ExtensionListView": 1, - "hudson.Functions": 1, - "hudson.Platform": 1, - "hudson.PluginManager": 1, - "hudson.cli.declarative.CLIResolver": 1, - "hudson.model.listeners.ItemListener": 1, - "hudson.slaves.ComputerListener": 1, - "hudson.util.CopyOnWriteList": 1, - "hudson.util.FormValidation": 1, - "jenkins.model.Jenkins": 1, - "org.jvnet.hudson.reactor.ReactorException": 1, - "org.kohsuke.stapler.QueryParameter": 1, - "org.kohsuke.stapler.Stapler": 1, - "org.kohsuke.stapler.StaplerRequest": 1, - "org.kohsuke.stapler.StaplerResponse": 1, - "javax.servlet.ServletContext": 1, - "javax.servlet.ServletException": 1, - "java.io.File": 1, - "java.io.IOException": 10, - "java.text.NumberFormat": 1, - "java.text.ParseException": 1, "java.util.Collections": 2, - "java.util.List": 1, - "hudson.Util.fixEmpty": 1, - "Hudson": 5, - "Jenkins": 2, - "transient": 2, - "CopyOnWriteList": 4, - "": 2, - "itemListeners": 2, - "ExtensionListView.createCopyOnWriteList": 2, - "ItemListener.class": 1, - "": 2, - "computerListeners": 2, - "ComputerListener.class": 1, - "@CLIResolver": 1, - "getInstance": 2, - "Jenkins.getInstance": 2, - "File": 2, - "root": 6, - "ServletContext": 2, - "IOException": 8, - "InterruptedException": 2, - "ReactorException": 2, - "PluginManager": 1, - "pluginManager": 2, - "getJobListeners": 1, - "getComputerListeners": 1, - "Slave": 3, - "getSlave": 1, - "Node": 1, - "n": 3, - "getNode": 1, - "List": 3, - "": 2, - "getSlaves": 1, - "slaves": 3, - "setSlaves": 1, - "setNodes": 1, - "TopLevelItem": 3, - "getJob": 1, - "getItem": 1, - "getJobCaseInsensitive": 1, - "match": 2, - "Functions.toEmailSafeString": 2, - "item": 2, - "getItems": 1, - "item.getName": 1, - "synchronized": 1, - "doQuietDown": 2, - "StaplerResponse": 4, - "rsp": 6, - "ServletException": 3, - ".generateResponse": 2, - "doLogRss": 1, - "StaplerRequest": 4, - "req": 6, - "qs": 3, - "req.getQueryString": 1, - "rsp.sendRedirect2": 1, - "doFieldCheck": 3, - "fixEmpty": 8, - "req.getParameter": 4, - "FormValidation": 2, - "@QueryParameter": 4, - "value": 11, - "type": 3, - "errorText": 3, - "warningText": 3, - "FormValidation.error": 4, - "FormValidation.warning": 1, - "try": 26, - "type.equalsIgnoreCase": 2, - "NumberFormat.getInstance": 2, - ".parse": 2, - ".floatValue": 1, - "<=>": 1, - "0": 1, - "error": 1, - "Messages": 1, - "Hudson_NotAPositiveNumber": 1, - "equalsIgnoreCase": 1, - "number": 1, - "negative": 1, - "NumberFormat": 1, - "parse": 1, - "floatValue": 1, - "Messages.Hudson_NotANegativeNumber": 1, - "catch": 27, - "ParseException": 1, - "Messages.Hudson_NotANumber": 1, - "FormValidation.ok": 1, - "isWindows": 1, - "File.pathSeparatorChar": 1, - "isDarwin": 1, - "Platform.isDarwin": 1, - "adminCheck": 3, - "Stapler.getCurrentRequest": 1, - "Stapler.getCurrentResponse": 1, - "isAdmin": 4, - "rsp.sendError": 1, - "StaplerResponse.SC_FORBIDDEN": 1, - ".getACL": 1, - ".hasPermission": 1, - "ADMINISTER": 1, - "XSTREAM.alias": 1, - "Hudson.class": 1, - "MasterComputer": 1, - "Jenkins.MasterComputer": 1, - "CloudList": 3, - "Jenkins.CloudList": 1, - "h": 2, - "needed": 1, - "XStream": 1, - "deserialization": 1, - "nokogiri": 6, "java.util.HashMap": 1, + "java.util.Map": 3, + "org.jruby.Ruby": 2, "org.jruby.RubyArray": 1, + "org.jruby.RubyClass": 2, "org.jruby.RubyFixnum": 1, "org.jruby.RubyModule": 1, "org.jruby.runtime.ObjectAllocator": 1, + "org.jruby.runtime.builtin.IRubyObject": 2, "org.jruby.runtime.load.BasicLibraryService": 1, + "public": 214, + "class": 12, "NokogiriService": 1, "implements": 3, "BasicLibraryService": 1, + "{": 434, + "static": 141, + "final": 78, + "String": 33, "nokogiriClassCacheGvarName": 1, "Map": 1, "": 2, + "RubyClass": 92, "nokogiriClassCache": 2, + "boolean": 36, "basicLoad": 1, + "(": 1097, + "Ruby": 43, "ruby": 25, + ")": 1097, "init": 2, "createNokogiriClassCahce": 2, + "return": 267, + "true": 21, + "}": 434, + "private": 77, + "void": 25, "Collections.synchronizedMap": 1, + "new": 131, "HashMap": 1, "nokogiriClassCache.put": 26, "ruby.getClassFromPath": 26, @@ -27211,6 +27009,7 @@ "attrDecl.defineAnnotatedMethods": 1, "XmlAttributeDecl.class": 1, "characterData": 3, + "null": 80, "comment": 1, "XML_COMMENT_ALLOCATOR": 2, "comment.defineAnnotatedMethods": 1, @@ -27231,6 +27030,7 @@ "XML_DOCUMENT_FRAGMENT_ALLOCATOR": 2, "documentFragment.defineAnnotatedMethods": 1, "XmlDocumentFragment.class": 1, + "element": 3, "XML_ELEMENT_ALLOCATOR": 2, "element.defineAnnotatedMethods": 1, "XmlElement.class": 1, @@ -27302,6 +27102,8 @@ "//RubyModule": 1, "htmlDoc": 1, "html.defineOrGetClassUnder": 1, + "document": 5, + "htmlDocument": 6, "HTML_DOCUMENT_ALLOCATOR": 2, "htmlDocument.defineAnnotatedMethods": 1, "HtmlDocument.class": 1, @@ -27326,12 +27128,20 @@ "XsltStylesheet.class": 2, "xsltModule.defineAnnotatedMethod": 1, "ObjectAllocator": 60, + "IRubyObject": 35, "allocate": 30, + "runtime": 88, + "klazz": 107, "EncodingHandler": 1, + "HtmlDocument": 7, + "if": 116, + "try": 26, "clone": 47, "htmlDocument.clone": 1, "clone.setMetaClass": 23, + "catch": 27, "CloneNotSupportedException": 23, + "e": 31, "HtmlSaxParserContext": 5, "htmlSaxParserContext.clone": 1, "HtmlElementDescription": 1, @@ -27345,6 +27155,7 @@ "XmlComment": 5, "xmlComment": 3, "xmlComment.clone": 1, + "XmlDocument": 8, "xmlDocument.clone": 1, "XmlDocumentFragment": 5, "xmlDocumentFragment": 3, @@ -27379,6 +27190,7 @@ "xmlReader.clone": 1, "XmlAttributeDecl": 1, "XmlEntityDecl": 1, + "throw": 9, "runtime.newNotImplementedError": 1, "XmlRelaxng": 5, "xmlRelaxng": 3, @@ -27400,6 +27212,152 @@ "XsltStylesheet": 4, "xsltStylesheet": 3, "xsltStylesheet.clone": 1, + "hudson.model": 1, + "hudson.ExtensionListView": 1, + "hudson.Functions": 1, + "hudson.Platform": 1, + "hudson.PluginManager": 1, + "hudson.cli.declarative.CLIResolver": 1, + "hudson.model.listeners.ItemListener": 1, + "hudson.slaves.ComputerListener": 1, + "hudson.util.CopyOnWriteList": 1, + "hudson.util.FormValidation": 1, + "jenkins.model.Jenkins": 1, + "org.jvnet.hudson.reactor.ReactorException": 1, + "org.kohsuke.stapler.QueryParameter": 1, + "org.kohsuke.stapler.Stapler": 1, + "org.kohsuke.stapler.StaplerRequest": 1, + "org.kohsuke.stapler.StaplerResponse": 1, + "javax.servlet.ServletContext": 1, + "javax.servlet.ServletException": 1, + "java.io.File": 1, + "java.io.IOException": 10, + "java.text.NumberFormat": 1, + "java.text.ParseException": 1, + "java.util.List": 1, + "hudson.Util.fixEmpty": 1, + "Hudson": 5, + "extends": 10, + "Jenkins": 2, + "transient": 2, + "CopyOnWriteList": 4, + "": 2, + "itemListeners": 2, + "ExtensionListView.createCopyOnWriteList": 2, + "ItemListener.class": 1, + "": 2, + "computerListeners": 2, + "ComputerListener.class": 1, + "@CLIResolver": 1, + "getInstance": 2, + "Jenkins.getInstance": 2, + "File": 2, + "root": 6, + "ServletContext": 2, + "context": 8, + "throws": 26, + "IOException": 8, + "InterruptedException": 2, + "ReactorException": 2, + "this": 16, + "PluginManager": 1, + "pluginManager": 2, + "super": 7, + "getJobListeners": 1, + "getComputerListeners": 1, + "Slave": 3, + "getSlave": 1, + "name": 10, + "Node": 1, + "n": 3, + "getNode": 1, + "instanceof": 19, + "List": 3, + "": 2, + "getSlaves": 1, + "slaves": 3, + "setSlaves": 1, + "setNodes": 1, + "TopLevelItem": 3, + "getJob": 1, + "getItem": 1, + "getJobCaseInsensitive": 1, + "match": 2, + "Functions.toEmailSafeString": 2, + "for": 16, + "item": 2, + "getItems": 1, + "item.getName": 1, + ".equalsIgnoreCase": 5, + "synchronized": 1, + "doQuietDown": 2, + "StaplerResponse": 4, + "rsp": 6, + "ServletException": 3, + ".generateResponse": 2, + "doLogRss": 1, + "StaplerRequest": 4, + "req": 6, + "qs": 3, + "req.getQueryString": 1, + "rsp.sendRedirect2": 1, + "+": 83, + "doFieldCheck": 3, + "fixEmpty": 8, + "req.getParameter": 4, + "FormValidation": 2, + "@QueryParameter": 4, + "value": 11, + "type": 3, + "errorText": 3, + "warningText": 3, + "FormValidation.error": 4, + "FormValidation.warning": 1, + "type.equalsIgnoreCase": 2, + "NumberFormat.getInstance": 2, + ".parse": 2, + "else": 33, + ".floatValue": 1, + "<=>": 1, + "0": 1, + "error": 1, + "Messages": 1, + "Hudson_NotAPositiveNumber": 1, + "equalsIgnoreCase": 1, + "number": 1, + "negative": 1, + "NumberFormat": 1, + "parse": 1, + "floatValue": 1, + "Messages.Hudson_NotANegativeNumber": 1, + "ParseException": 1, + "Messages.Hudson_NotANumber": 1, + "FormValidation.ok": 1, + "isWindows": 1, + "File.pathSeparatorChar": 1, + "isDarwin": 1, + "Platform.isDarwin": 1, + "adminCheck": 3, + "Stapler.getCurrentRequest": 1, + "Stapler.getCurrentResponse": 1, + "isAdmin": 4, + "rsp.sendError": 1, + "StaplerResponse.SC_FORBIDDEN": 1, + "false": 12, + ".getACL": 1, + ".hasPermission": 1, + "ADMINISTER": 1, + "XSTREAM.alias": 1, + "Hudson.class": 1, + "MasterComputer": 1, + "Jenkins.MasterComputer": 1, + "CloudList": 3, + "Jenkins.CloudList": 1, + "h": 2, + "//": 16, + "needed": 1, + "XStream": 1, + "deserialization": 1, "persons": 1, "ProtocolBuffer": 2, "registerAllExtensions": 1, @@ -27435,12 +27393,18 @@ "extensionRegistry": 16, "com.google.protobuf.InvalidProtocolBufferException": 9, "initFields": 2, + "int": 62, "mutable_bitField0_": 1, "com.google.protobuf.UnknownFieldSet.Builder": 1, "com.google.protobuf.UnknownFieldSet.newBuilder": 1, "done": 4, + "while": 10, "tag": 3, "input.readTag": 1, + "switch": 6, + "case": 56, + "break": 4, + "default": 6, "parseUnknownField": 1, "bitField0_": 15, "|": 5, @@ -27453,7 +27417,9 @@ "unknownFields.build": 1, "makeExtensionsImmutable": 1, "com.google.protobuf.Descriptors.Descriptor": 4, + "getDescriptor": 15, "persons.ProtocolBuffer.internal_static_persons_Person_descriptor": 3, + "protected": 8, "com.google.protobuf.GeneratedMessage.FieldAccessorTable": 4, "internalGetFieldAccessorTable": 2, "persons.ProtocolBuffer.internal_static_persons_Person_fieldAccessorTable": 2, @@ -27471,11 +27437,14 @@ "&": 7, "ref": 16, "bs": 1, + "s": 10, "bs.toStringUtf8": 1, "bs.isValidUtf8": 1, + "b": 7, "com.google.protobuf.ByteString.copyFromUtf8": 2, "byte": 4, "memoizedIsInitialized": 4, + "-": 15, "isInitialized": 5, "writeTo": 1, "com.google.protobuf.CodedOutputStream": 2, @@ -27484,8 +27453,10 @@ "output.writeBytes": 1, ".writeTo": 1, "memoizedSerializedSize": 3, + "size": 16, ".computeBytesSize": 1, ".getSerializedSize": 1, + "long": 5, "serialVersionUID": 1, "L": 1, "writeReplace": 1, @@ -27495,6 +27466,8 @@ "parseFrom": 8, "data": 8, "PARSER.parseFrom": 8, + "[": 54, + "]": 54, "java.io.InputStream": 4, "parseDelimitedFrom": 2, "PARSER.parseDelimitedFrom": 2, @@ -27540,6 +27513,7 @@ "e.getUnfinishedMessage": 1, ".toStringUtf8": 1, "setName": 1, + "NullPointerException": 3, "clearName": 1, ".getName": 1, "setNameBytes": 1, @@ -27554,1471 +27528,730 @@ "assignDescriptors": 1, ".getMessageTypes": 1, ".get": 1, - ".internalBuildGeneratedFileFrom": 1 + ".internalBuildGeneratedFileFrom": 1, + "nokogiri.internals": 1, + "nokogiri.internals.NokogiriHelpers.getNokogiriClass": 1, + "nokogiri.internals.NokogiriHelpers.isNamespace": 1, + "nokogiri.internals.NokogiriHelpers.stringOrNil": 1, + "nokogiri.HtmlDocument": 1, + "nokogiri.NokogiriService": 1, + "nokogiri.XmlDocument": 1, + "org.apache.xerces.parsers.DOMParser": 1, + "org.apache.xerces.xni.Augmentations": 1, + "org.apache.xerces.xni.QName": 1, + "org.apache.xerces.xni.XMLAttributes": 1, + "org.apache.xerces.xni.XNIException": 1, + "org.apache.xerces.xni.parser.XMLDocumentFilter": 1, + "org.apache.xerces.xni.parser.XMLParserConfiguration": 1, + "org.cyberneko.html.HTMLConfiguration": 1, + "org.cyberneko.html.filters.DefaultFilter": 1, + "org.jruby.runtime.ThreadContext": 1, + "org.w3c.dom.Document": 1, + "org.w3c.dom.NamedNodeMap": 1, + "org.w3c.dom.NodeList": 1, + "HtmlDomParserContext": 3, + "XmlDomParserContext": 1, + "options": 4, + "encoding": 2, + "@Override": 6, + "initErrorHandler": 1, + "options.strict": 1, + "errorHandler": 6, + "NokogiriStrictErrorHandler": 1, + "options.noError": 2, + "options.noWarning": 2, + "NokogiriNonStrictErrorHandler4NekoHtml": 1, + "initParser": 1, + "XMLParserConfiguration": 1, + "config": 2, + "HTMLConfiguration": 1, + "XMLDocumentFilter": 3, + "removeNSAttrsFilter": 2, + "RemoveNSAttrsFilter": 2, + "elementValidityCheckFilter": 3, + "ElementValidityCheckFilter": 3, + "//XMLDocumentFilter": 1, + "filters": 3, + "config.setErrorHandler": 1, + "this.errorHandler": 2, + "parser": 1, + "DOMParser": 1, + "setProperty": 4, + "java_encoding": 2, + "setFeature": 4, + "enableDocumentFragment": 1, + "getNewEmptyDocument": 1, + "ThreadContext": 2, + "args": 6, + "XmlDocument.rbNew": 1, + "getNokogiriClass": 1, + "context.getRuntime": 3, + "wrapDocument": 1, + "Document": 2, + "NokogiriService.HTML_DOCUMENT_ALLOCATOR.allocate": 1, + "htmlDocument.setDocumentNode": 1, + "ruby_encoding.isNil": 1, + "detected_encoding": 2, + "&&": 6, + "detected_encoding.isNil": 1, + "ruby_encoding": 3, + "charset": 2, + "tryGetCharsetFromHtml5MetaTag": 2, + "stringOrNil": 1, + "htmlDocument.setEncoding": 1, + "htmlDocument.setParsedEncoding": 1, + "document.getDocumentElement": 2, + ".getNodeName": 4, + "NodeList": 2, + "list": 1, + ".getChildNodes": 2, + "i": 54, + "<": 13, + "list.getLength": 1, + "list.item": 2, + "headers": 1, + "j": 9, + "headers.getLength": 1, + "headers.item": 2, + "NamedNodeMap": 1, + "nodeMap": 1, + ".getAttributes": 1, + "k": 5, + "nodeMap.getLength": 1, + "nodeMap.item": 2, + ".getNodeValue": 1, + "DefaultFilter": 2, + "startElement": 2, + "QName": 2, + "XMLAttributes": 2, + "attrs": 4, + "Augmentations": 2, + "augs": 4, + "XNIException": 2, + "attrs.getLength": 1, + "isNamespace": 1, + "attrs.getQName": 1, + "attrs.removeAttributeAt": 1, + "element.uri": 1, + "super.startElement": 2, + "NokogiriErrorHandler": 2, + "element_names": 3, + "g": 1, + "r": 1, + "w": 1, + "x": 8, + "y": 1, + "z": 1, + "isValid": 2, + "testee": 1, + "char": 13, + "c": 21, + "testee.toCharArray": 1, + "index": 4, + "Integer": 2, + ".length": 1, + "testee.equals": 1, + "name.rawname": 2, + "errorHandler.getErrors": 1, + ".add": 1, + "Exception": 1, + "clojure.lang": 1, + "java.lang.ref.Reference": 1, + "java.math.BigInteger": 1, + "java.util.concurrent.ConcurrentHashMap": 1, + "java.lang.ref.SoftReference": 1, + "java.lang.ref.ReferenceQueue": 1, + "Util": 1, + "equiv": 17, + "Object": 31, + "k1": 40, + "k2": 38, + "Number": 9, + "Numbers.equal": 1, + "IPersistentCollection": 5, + "||": 8, + "pcequiv": 2, + "k1.equals": 2, + "double": 4, + "c1": 2, + "c2": 2, + ".equiv": 2, + "equals": 2, + "identical": 1, + "Class": 10, + "classOf": 1, + "x.getClass": 1, + "compare": 1, + "Numbers.compare": 1, + "Comparable": 1, + ".compareTo": 1, + "hash": 3, + "o": 12, + "o.hashCode": 2, + "hasheq": 1, + "Numbers.hasheq": 1, + "IHashEq": 2, + ".hasheq": 1, + "hashCombine": 1, + "seed": 5, + "//a": 1, + "la": 1, + "boost": 1, + "e3779b9": 1, + "<<": 1, + "isPrimitive": 1, + "c.isPrimitive": 2, + "Void.TYPE": 3, + "isInteger": 1, + "Long": 1, + "BigInt": 1, + "BigInteger": 1, + "ret1": 2, + "ret": 4, + "nil": 2, + "ISeq": 2, + "": 1, + "clearCache": 1, + "ReferenceQueue": 1, + "rq": 1, + "ConcurrentHashMap": 1, + "K": 2, + "Reference": 3, + "": 3, + "cache": 1, + "//cleanup": 1, + "any": 1, + "dead": 1, + "entries": 1, + "rq.poll": 2, + "Map.Entry": 1, + "cache.entrySet": 1, + "val": 3, + "e.getValue": 1, + "val.get": 1, + "cache.remove": 1, + "e.getKey": 1, + "RuntimeException": 5, + "runtimeException": 2, + "Throwable": 4, + "sneakyThrow": 1, + "t": 6, + "Util.": 1, + "": 1, + "sneakyThrow0": 2, + "@SuppressWarnings": 1, + "": 1, + "T": 2, + "clojure.asm": 1, + "java.lang.reflect.Constructor": 1, + "java.lang.reflect.Method": 1, + "Type": 42, + "VOID": 5, + "BOOLEAN": 6, + "CHAR": 6, + "BYTE": 6, + "SHORT": 6, + "INT": 6, + "FLOAT": 6, + "LONG": 7, + "DOUBLE": 7, + "ARRAY": 6, + "OBJECT": 7, + "VOID_TYPE": 3, + "BOOLEAN_TYPE": 3, + "CHAR_TYPE": 3, + "BYTE_TYPE": 3, + "SHORT_TYPE": 3, + "INT_TYPE": 3, + "FLOAT_TYPE": 3, + "LONG_TYPE": 3, + "DOUBLE_TYPE": 3, + "sort": 18, + "buf": 43, + "off": 25, + "len": 24, + "this.sort": 2, + "this.len": 2, + "this.buf": 2, + "this.off": 1, + "getType": 10, + "typeDescriptor": 1, + "typeDescriptor.toCharArray": 1, + "Integer.TYPE": 2, + "Boolean.TYPE": 2, + "Byte.TYPE": 2, + "Character.TYPE": 2, + "Short.TYPE": 2, + "Double.TYPE": 2, + "Float.TYPE": 2, + "getObjectType": 1, + "l": 5, + "name.length": 2, + "name.getChars": 1, + "getArgumentTypes": 2, + "methodDescriptor": 2, + "methodDescriptor.toCharArray": 2, + "car": 18, + ".len": 1, + "Method": 3, + "method": 2, + "classes": 2, + "method.getParameterTypes": 1, + "types": 3, + "classes.length": 2, + "getReturnType": 2, + "methodDescriptor.indexOf": 1, + "method.getReturnType": 1, + "getSort": 1, + "getDimensions": 3, + "getElementType": 2, + "getClassName": 1, + "StringBuffer": 14, + ".getClassName": 1, + "b.append": 1, + "b.toString": 1, + ".replace": 2, + "getInternalName": 2, + "buf.toString": 4, + "getMethodDescriptor": 2, + "returnType": 1, + "argumentTypes": 2, + "buf.append": 21, + "argumentTypes.length": 1, + ".getDescriptor": 1, + "returnType.getDescriptor": 1, + "c.getName": 1, + "getConstructorDescriptor": 1, + "Constructor": 1, + "parameters": 4, + "c.getParameterTypes": 1, + "parameters.length": 2, + ".toString": 1, + "m": 1, + "m.getParameterTypes": 1, + "m.getReturnType": 1, + "d": 10, + "d.isPrimitive": 1, + "d.isArray": 1, + "d.getComponentType": 1, + "d.getName": 1, + "name.charAt": 1, + "getSize": 1, + "getOpcode": 1, + "opcode": 17, + "Opcodes.IALOAD": 1, + "Opcodes.IASTORE": 1, + "t.sort": 1, + "Type.OBJECT": 2, + "Type.ARRAY": 2, + "t.len": 1, + "t.off": 1, + "end": 4, + "t.buf": 1, + "hashCode": 1, + "hc": 4, + "*": 2, + "toString": 1 }, "JavaScript": { - "function": 1214, "(": 8528, + "function": 1214, + "window": 18, + "angular": 1, ")": 8536, "{": 2742, - ";": 4066, - "//": 410, - "jshint": 1, - "_": 9, - "var": 916, - "Modal": 2, - "content": 5, - "options": 56, - "this.options": 6, - "this.": 2, - "element": 19, - ".delegate": 2, - ".proxy": 1, - "this.hide": 1, - "this": 578, - "}": 2718, - "Modal.prototype": 1, - "constructor": 8, - "toggle": 10, + "Array.prototype.last": 1, "return": 947, + "this": 578, "[": 1461, - "this.isShown": 3, - "]": 1458, - "show": 10, - "that": 33, - "e": 663, - ".Event": 1, - "element.trigger": 1, - "if": 1230, - "||": 648, - "e.isDefaultPrevented": 2, - ".addClass": 1, - "true": 147, - "escape.call": 1, - "backdrop.call": 1, - "transition": 1, - ".support.transition": 1, - "&&": 1017, - "that.": 3, - "element.hasClass": 1, - "element.parent": 1, - ".length": 24, - "element.appendTo": 1, - "document.body": 8, - "//don": 1, - "in": 170, - "shown": 2, - "hide": 8, - "body": 22, - "modal": 4, + "this.length": 41, "-": 706, - "open": 2, - "fade": 4, - "hidden": 12, - "
": 4, - "class=": 5, - "static": 2, - "keyup.dismiss.modal": 2, + "]": 1458, + ";": 4066, + "}": 2718, + "var": 916, + "app": 3, + "angular.module": 1, + "JSON": 5, + "if": 1230, + "f": 666, + "n": 874, + "<": 209, + "+": 1136, + "typeof": 132, + "Date.prototype.toJSON": 2, + "key": 85, + "isFinite": 1, + "this.valueOf": 2, + "this.getUTCFullYear": 1, + "this.getUTCMonth": 1, + "this.getUTCDate": 1, + "this.getUTCHours": 1, + "this.getUTCMinutes": 1, + "this.getUTCSeconds": 1, + "null": 427, + "String.prototype.toJSON": 1, + "Number.prototype.toJSON": 1, + "Boolean.prototype.toJSON": 1, + "cx": 2, + "/": 290, + "u0000": 1, + "u00ad": 1, + "u0600": 1, + "u0604": 1, + "u070f": 1, + "u17b4": 1, + "u17b5": 1, + "u200c": 1, + "u200f": 1, + "u2028": 3, + "u202f": 1, + "u2060": 1, + "u206f": 1, + "ufeff": 1, + "ufff0": 1, + "uffff": 1, + "/g": 37, + "escapable": 1, + "b": 961, + "t": 436, + "r": 261, "object": 59, "string": 41, - "click.modal.data": 1, - "api": 1, - "data": 145, - "target": 44, - "href": 9, - ".extend": 1, - "target.data": 1, - "this.data": 5, - "e.preventDefault": 1, - "target.modal": 1, - "option": 12, - "window.jQuery": 7, - "Animal": 12, - "Horse": 12, - "Snake": 12, - "sam": 4, - "tom": 4, - "__hasProp": 2, - "Object.prototype.hasOwnProperty": 6, - "__extends": 6, - "child": 17, - "parent": 15, + "number": 13, + "boolean": 8, + "Array": 3, + "JSON.stringify": 5, + "u": 304, + "/bfnrt": 1, + "|": 206, + "a": 1489, + "fA": 2, + "F": 8, + ".replace": 38, + "*": 71, + "JSON.parse": 1, + "PUT": 1, + "DELETE": 1, + "all": 16, + "change": 16, + "id": 38, + "_id": 1, + "error": 20, + "Can": 2, + "add": 16, + "remove": 9, + "s": 290, + "ties": 1, + "to": 92, + "collection.": 1, + "_removeReference": 1, + "model": 14, + "model.collection": 2, + "delete": 39, + "model.unbind": 1, + "this._onModelEvent": 1, + "_onModelEvent": 1, + "ev": 5, + "collection": 3, + "options": 56, + "||": 648, + "&&": 1017, + "this._remove": 1, + "model.idAttribute": 2, + "this._byId": 2, + "model.previous": 1, + "model.id": 1, + "this.trigger.apply": 2, + "arguments": 83, + "methods": 8, + "_.each": 1, + "method": 30, + "Backbone.Collection.prototype": 1, + "_": 9, + ".apply": 7, + "this.models": 1, + ".concat": 3, + "_.toArray": 1, + "Backbone.Router": 1, + "options.routes": 2, + "this.routes": 4, + "this._bindRoutes": 1, + "this.initialize.apply": 2, + "namedParam": 2, + "w": 110, + "d": 771, + "splatParam": 2, + "escapeRegExp": 2, + ".": 91, + "#": 13, + "_.extend": 9, + "Backbone.Router.prototype": 1, + "Backbone.Events": 2, + "initialize": 3, + "//": 410, + "route": 18, + "name": 161, + "callback": 23, + "Backbone.history": 2, + "new": 86, + "Backbone.History": 2, + "_.isRegExp": 1, + "this._routeToRegExp": 1, + "Backbone.history.route": 1, + "_.bind": 2, + "fragment": 27, + "args": 31, + "this._extractParameters": 1, + "callback.apply": 1, + "navigate": 2, + "triggerRoute": 4, + "Backbone.history.navigate": 1, + "_bindRoutes": 1, + "routes": 4, "for": 262, - "key": 85, - "__hasProp.call": 2, + "in": 170, + "routes.unshift": 1, + "i": 853, + "l": 312, + "routes.length": 1, + "this.route": 1, + "_routeToRegExp": 1, + "route.replace": 1, + "RegExp": 12, + "_extractParameters": 1, + "route.exec": 1, + ".slice": 6, + "this.handlers": 2, + "_.bindAll": 1, + "hashStrip": 4, + "#*": 1, + "isExplorer": 1, + "/msie": 1, + "w.": 17, + "historyStarted": 3, + "false": 142, + "Backbone.History.prototype": 1, + "interval": 3, + "getFragment": 1, + "forcePushState": 2, + "this._hasPushState": 6, + "window.location.pathname": 1, + "search": 5, + "window.location.search": 1, + "fragment.indexOf": 1, + "this.options.root": 6, + "fragment.substr": 1, + "this.options.root.length": 1, + "else": 307, + "window.location.hash": 3, + "fragment.replace": 1, + "start": 20, + "throw": 27, + "Error": 16, + "this.options": 6, + "root": 5, + "this._wantsPushState": 3, + "this.options.pushState": 2, + "window.history": 2, + "window.history.pushState": 2, + "this.getFragment": 6, + "docMode": 3, + "document.documentMode": 3, + "oldIE": 3, + "isExplorer.exec": 1, + "navigator.userAgent.toLowerCase": 1, + "this.iframe": 4, + ".hide": 2, + ".appendTo": 2, + ".contentWindow": 1, + "this.navigate": 2, + ".bind": 3, + "this.checkUrl": 3, + "setInterval": 6, + "this.interval": 1, + "this.fragment": 13, + "true": 147, + "loc": 2, + "window.location": 5, + "atRoot": 3, + "loc.pathname": 1, + "loc.hash": 1, + "loc.hash.replace": 1, + "window.history.replaceState": 1, + "document.title": 2, + "loc.protocol": 2, + "loc.host": 2, + "this.loadUrl": 4, + "this.handlers.unshift": 1, + "checkUrl": 1, + "e": 663, + "current": 7, + "this.iframe.location.hash": 3, + "decodeURIComponent": 2, + "loadUrl": 1, + "fragmentOverride": 2, + "matched": 2, + "_.any": 1, + "handler": 14, + "handler.route.test": 1, + "handler.callback": 1, + "frag": 13, + "frag.indexOf": 1, + "this.iframe.document.open": 1, + ".close": 1, + "Backbone.View": 1, + "this.cid": 3, + "_.uniqueId": 1, + "this._configure": 1, + "this._ensureElement": 1, + "this.delegateEvents": 1, + "selectorDelegate": 2, + "selector": 40, + "this.el": 10, + "eventSplitter": 2, + "S": 8, + "s*": 15, + ".*": 20, + "viewOptions": 2, + "Backbone.View.prototype": 1, + "tagName": 3, + "render": 1, + ".remove": 2, + "make": 2, + "attributes": 14, + "content": 5, + "el": 4, + "document.createElement": 26, + ".attr": 1, + ".html": 1, + "delegateEvents": 1, + "events": 18, + "this.events": 1, + ".unbind": 4, + "match": 30, + "key.match": 1, + "eventName": 21, + ".delegate": 2, + "_configure": 1, + "viewOptions.length": 1, + "attr": 13, + "_ensureElement": 1, + "attrs": 6, + "this.attributes": 1, + "this.id": 2, + "attrs.id": 1, + "this.className": 10, + "this.make": 1, + "this.tagName": 1, + "_.isString": 1, + ".get": 3, + "extend": 13, + "protoProps": 6, + "classProps": 2, + "child": 17, + "inherits": 2, + "child.extend": 1, + "this.extend": 1, + "Backbone.Model.extend": 1, + "Backbone.Collection.extend": 1, + "Backbone.Router.extend": 1, + "Backbone.View.extend": 1, + "methodMap": 2, + "Backbone.sync": 1, + "type": 49, + "params": 2, + "dataType": 6, + "processData": 3, + "params.url": 2, + "getUrl": 2, + "urlError": 2, + "params.data": 5, + "params.contentType": 2, + "model.toJSON": 1, + "Backbone.emulateJSON": 2, + "params.processData": 1, + "Backbone.emulateHTTP": 1, + "params.data._method": 1, + "params.type": 1, + "params.beforeSend": 1, + "xhr": 1, + "xhr.setRequestHeader": 1, + ".ajax": 1, "ctor": 6, - "this.constructor": 5, + "parent": 15, + "staticProps": 3, + "protoProps.hasOwnProperty": 1, + "protoProps.constructor": 1, + "parent.apply": 1, "ctor.prototype": 3, "parent.prototype": 6, "child.prototype": 4, - "new": 86, + "child.prototype.constructor": 1, "child.__super__": 3, - "name": 161, - "this.name": 7, - "Animal.prototype.move": 2, - "meters": 4, - "alert": 11, - "+": 1136, - "Snake.__super__.constructor.apply": 2, - "arguments": 83, - "Snake.prototype.move": 2, - "Snake.__super__.move.call": 2, - "Horse.__super__.constructor.apply": 2, - "Horse.prototype.move": 2, - "Horse.__super__.move.call": 2, - "sam.move": 2, - "tom.move": 2, - ".call": 10, - ".hasOwnProperty": 2, - "Animal.name": 1, - "_super": 4, - "Snake.name": 1, - "Horse.name": 1, - "console.log": 3, - "hanaMath": 1, - ".import": 1, - "x": 41, - "parseFloat": 32, - ".request.parameters.get": 2, - "y": 109, - "result": 12, - "hanaMath.multiply": 1, - "output": 2, - "title": 1, - "input": 26, - ".response.contentType": 1, - ".response.statusCode": 1, - ".net.http.OK": 1, - ".response.setBody": 1, - "JSON.stringify": 5, - "multiply": 1, - "*": 71, - "add": 16, - "util": 1, - "require": 9, - "net": 1, - "stream": 1, - "url": 23, - "EventEmitter": 3, - ".EventEmitter": 1, - "FreeList": 2, - ".FreeList": 1, - "HTTPParser": 2, - "process.binding": 1, - ".HTTPParser": 1, - "assert": 8, - ".ok": 1, - "END_OF_FILE": 3, - "debug": 15, - "process.env.NODE_DEBUG": 2, - "/http/.test": 1, - "console.error": 3, - "else": 307, - "parserOnHeaders": 2, - "headers": 41, - "this.maxHeaderPairs": 2, - "<": 209, - "this._headers.length": 1, - "this._headers": 13, - "this._headers.concat": 1, - "this._url": 1, - "parserOnHeadersComplete": 2, - "info": 2, - "parser": 27, - "info.headers": 1, - "info.url": 1, - "parser._headers": 6, - "parser._url": 4, - "parser.incoming": 9, - "IncomingMessage": 4, - "parser.socket": 4, - "parser.incoming.httpVersionMajor": 1, - "info.versionMajor": 2, - "parser.incoming.httpVersionMinor": 1, - "info.versionMinor": 2, - "parser.incoming.httpVersion": 1, - "parser.incoming.url": 1, - "n": 874, - "headers.length": 2, - "parser.maxHeaderPairs": 4, - "Math.min": 5, - "i": 853, - "k": 302, - "v": 135, - "parser.incoming._addHeaderLine": 2, - "info.method": 2, - "parser.incoming.method": 1, - "parser.incoming.statusCode": 2, - "info.statusCode": 1, - "parser.incoming.upgrade": 4, - "info.upgrade": 2, - "skipBody": 3, - "false": 142, - "response": 3, - "to": 92, - "HEAD": 3, - "or": 38, - "CONNECT": 1, - "parser.onIncoming": 3, - "info.shouldKeepAlive": 1, - "parserOnBody": 2, - "b": 961, - "start": 20, - "len": 11, - "slice": 10, - "b.slice": 1, - "parser.incoming._paused": 2, - "parser.incoming._pendings.length": 2, - "parser.incoming._pendings.push": 2, - "parser.incoming._emitData": 1, - "parserOnMessageComplete": 2, - "parser.incoming.complete": 2, - "parser.incoming.readable": 1, - "parser.incoming._emitEnd": 1, - "parser.socket.readable": 1, - "parser.socket.resume": 1, - "parsers": 2, - "HTTPParser.REQUEST": 2, - "parser.onHeaders": 1, - "parser.onHeadersComplete": 1, - "parser.onBody": 1, - "parser.onMessageComplete": 1, - "exports.parsers": 1, - "CRLF": 13, - "STATUS_CODES": 2, - "exports.STATUS_CODES": 1, - "RFC": 16, - "obsoleted": 1, - "by": 12, - "connectionExpression": 1, - "/Connection/i": 1, - "transferEncodingExpression": 1, - "/Transfer": 1, - "Encoding/i": 1, - "closeExpression": 1, - "/close/i": 1, - "chunkExpression": 1, - "/chunk/i": 1, - "contentLengthExpression": 1, - "/Content": 1, - "Length/i": 1, - "dateExpression": 1, - "/Date/i": 1, - "expectExpression": 1, - "/Expect/i": 1, - "continueExpression": 1, - "/100": 2, - "continue/i": 1, - "dateCache": 5, - "utcDate": 2, - "d": 771, - "Date": 4, - "d.toUTCString": 1, - "setTimeout": 19, - "undefined": 328, - "d.getMilliseconds": 1, - "socket": 26, - "stream.Stream.call": 2, - "this.socket": 10, - "this.connection": 8, - "this.httpVersion": 1, - "null": 427, - "this.complete": 2, - "this.headers": 2, - "this.trailers": 2, - "this.readable": 1, - "this._paused": 3, - "this._pendings": 1, - "this._endEmitted": 3, - "this.url": 1, - "this.method": 2, - "this.statusCode": 3, - "this.client": 1, - "util.inherits": 7, - "stream.Stream": 2, - "exports.IncomingMessage": 1, - "IncomingMessage.prototype.destroy": 1, - "error": 20, - "this.socket.destroy": 3, - "IncomingMessage.prototype.setEncoding": 1, - "encoding": 26, - "StringDecoder": 2, - ".StringDecoder": 1, - "lazy": 1, - "load": 5, - "this._decoder": 2, - "IncomingMessage.prototype.pause": 1, - "this.socket.pause": 1, - "IncomingMessage.prototype.resume": 1, - "this.socket.resume": 1, - "this._emitPending": 1, - "IncomingMessage.prototype._emitPending": 1, - "callback": 23, - "this._pendings.length": 1, - "self": 17, - "process.nextTick": 1, - "while": 53, - "self._paused": 1, - "self._pendings.length": 2, - "chunk": 14, - "self._pendings.shift": 1, - "Buffer.isBuffer": 2, - "self._emitData": 1, - "self.readable": 1, - "self._emitEnd": 1, - "IncomingMessage.prototype._emitData": 1, - "this._decoder.write": 1, - "string.length": 1, - "this.emit": 5, - "IncomingMessage.prototype._emitEnd": 1, - "IncomingMessage.prototype._addHeaderLine": 1, - "field": 36, - "value": 98, - "dest": 12, - "field.toLowerCase": 1, - "switch": 30, - "case": 136, - ".push": 3, - "break": 111, - "default": 21, - "field.slice": 1, - "OutgoingMessage": 5, - "this.output": 3, - "this.outputEncodings": 2, - "this.writable": 1, - "this._last": 3, - "this.chunkedEncoding": 6, - "this.shouldKeepAlive": 4, - "this.useChunkedEncodingByDefault": 4, - "this.sendDate": 3, - "this._hasBody": 6, - "this._trailer": 5, - "this.finished": 4, - "exports.OutgoingMessage": 1, - "OutgoingMessage.prototype.destroy": 1, - "OutgoingMessage.prototype._send": 1, - "this._headerSent": 5, - "typeof": 132, - "this._header": 10, - "this.output.unshift": 1, - "this.outputEncodings.unshift": 1, - "this._writeRaw": 2, - "OutgoingMessage.prototype._writeRaw": 1, - "data.length": 3, - "this.connection._httpMessage": 3, - "this.connection.writable": 3, - "this.output.length": 5, - "this._buffer": 2, - "c": 775, - "this.output.shift": 2, - "this.outputEncodings.shift": 2, - "this.connection.write": 4, - "OutgoingMessage.prototype._buffer": 1, - "length": 48, - "this.output.push": 2, - "this.outputEncodings.push": 2, - "lastEncoding": 2, - "lastData": 2, - "data.constructor": 1, - "lastData.constructor": 1, - "OutgoingMessage.prototype._storeHeader": 1, - "firstLine": 2, - "sentConnectionHeader": 3, - "sentContentLengthHeader": 4, - "sentTransferEncodingHeader": 3, - "sentDateHeader": 3, - "sentExpect": 3, - "messageHeader": 7, - "store": 3, - "connectionExpression.test": 1, - "closeExpression.test": 1, - "self._last": 4, - "self.shouldKeepAlive": 4, - "transferEncodingExpression.test": 1, - "chunkExpression.test": 1, - "self.chunkedEncoding": 1, - "contentLengthExpression.test": 1, - "dateExpression.test": 1, - "expectExpression.test": 1, - "keys": 11, - "Object.keys": 5, - "isArray": 10, - "Array.isArray": 7, - "l": 312, - "keys.length": 5, - "j": 265, - "value.length": 1, - "shouldSendKeepAlive": 2, - "this.agent": 2, - "this._send": 8, - "OutgoingMessage.prototype.setHeader": 1, - "arguments.length": 18, - "throw": 27, - "Error": 16, - "name.toLowerCase": 6, - "this._headerNames": 5, - "OutgoingMessage.prototype.getHeader": 1, - "OutgoingMessage.prototype.removeHeader": 1, - "delete": 39, - "OutgoingMessage.prototype._renderHeaders": 1, - "OutgoingMessage.prototype.write": 1, - "this._implicitHeader": 2, - "TypeError": 2, - "chunk.length": 2, - "ret": 62, - "Buffer.byteLength": 2, - "len.toString": 2, - "OutgoingMessage.prototype.addTrailers": 1, - "OutgoingMessage.prototype.end": 1, - "hot": 3, - ".toString": 3, - "this.write": 1, - "Last": 2, - "chunk.": 1, - "this._finish": 2, - "OutgoingMessage.prototype._finish": 1, - "instanceof": 19, - "ServerResponse": 5, - "DTRACE_HTTP_SERVER_RESPONSE": 1, - "ClientRequest": 6, - "DTRACE_HTTP_CLIENT_REQUEST": 1, - "OutgoingMessage.prototype._flush": 1, - "this.socket.writable": 2, - "XXX": 1, - "Necessary": 1, - "this.socket.write": 1, - "req": 32, - "OutgoingMessage.call": 2, - "req.method": 5, - "req.httpVersionMajor": 2, - "req.httpVersionMinor": 2, - "exports.ServerResponse": 1, - "ServerResponse.prototype.statusCode": 1, - "onServerResponseClose": 3, - "this._httpMessage.emit": 2, - "ServerResponse.prototype.assignSocket": 1, - "socket._httpMessage": 9, - "socket.on": 2, - "this._flush": 1, - "ServerResponse.prototype.detachSocket": 1, - "socket.removeListener": 5, - "ServerResponse.prototype.writeContinue": 1, - "this._sent100": 2, - "ServerResponse.prototype._implicitHeader": 1, - "this.writeHead": 1, - "ServerResponse.prototype.writeHead": 1, - "statusCode": 7, - "reasonPhrase": 4, - "headerIndex": 4, - "obj": 40, - "this._renderHeaders": 3, - "obj.length": 1, - "obj.push": 1, - "statusLine": 2, - "statusCode.toString": 1, - "this._expect_continue": 1, - "this._storeHeader": 2, - "ServerResponse.prototype.writeHeader": 1, - "this.writeHead.apply": 1, - "Agent": 5, - "self.options": 2, - "self.requests": 6, - "self.sockets": 3, - "self.maxSockets": 1, - "self.options.maxSockets": 1, - "Agent.defaultMaxSockets": 2, - "self.on": 1, - "host": 29, - "port": 29, - "localAddress": 15, - ".shift": 1, - ".onSocket": 1, - "socket.destroy": 10, - "self.createConnection": 2, - "net.createConnection": 3, - "exports.Agent": 1, - "Agent.prototype.defaultPort": 1, - "Agent.prototype.addRequest": 1, - "this.sockets": 9, - "this.maxSockets": 1, - "req.onSocket": 1, - "this.createSocket": 2, - "this.requests": 5, - "Agent.prototype.createSocket": 1, - "util._extend": 1, - "options.port": 4, - "options.host": 4, - "options.localAddress": 3, - "s": 290, - "onFree": 3, - "self.emit": 9, - "s.on": 4, - "onClose": 3, - "err": 5, - "self.removeSocket": 2, - "onRemove": 3, - "s.removeListener": 3, - "Agent.prototype.removeSocket": 1, - "index": 5, - ".indexOf": 2, - ".splice": 5, - ".emit": 1, - "globalAgent": 3, - "exports.globalAgent": 1, - "cb": 16, - "self.agent": 3, - "options.agent": 3, - "defaultPort": 3, - "options.defaultPort": 1, - "options.hostname": 1, - "options.setHost": 1, - "setHost": 2, - "self.socketPath": 4, - "options.socketPath": 1, - "method": 30, - "self.method": 3, - "options.method": 2, - ".toUpperCase": 3, - "self.path": 3, - "options.path": 2, - "self.once": 2, - "options.headers": 7, - "self.setHeader": 1, - "this.getHeader": 2, - "hostHeader": 3, - "this.setHeader": 2, - "options.auth": 2, - "//basic": 1, - "auth": 1, - "Buffer": 1, - "self.useChunkedEncodingByDefault": 2, - "self._storeHeader": 2, - "self.getHeader": 1, - "self._renderHeaders": 1, - "options.createConnection": 4, - "self.onSocket": 3, - "self.agent.addRequest": 1, - "conn": 3, - "self._deferToConnect": 1, - "self._flush": 1, - "exports.ClientRequest": 1, - "ClientRequest.prototype._implicitHeader": 1, - "this.path": 1, - "ClientRequest.prototype.abort": 1, - "this._deferToConnect": 3, - "createHangUpError": 3, - "error.code": 1, - "freeParser": 9, - "parser.socket.onend": 1, - "parser.socket.ondata": 1, - "parser.socket.parser": 1, - "parsers.free": 1, - "req.parser": 1, - "socketCloseListener": 2, - "socket.parser": 3, - "req.emit": 8, - "req.res": 8, - "req.res.readable": 1, - "req.res.emit": 1, - "res": 14, - "req.res._emitPending": 1, - "res._emitEnd": 1, - "res.emit": 1, - "req._hadError": 3, - "parser.finish": 6, - "socketErrorListener": 2, - "err.message": 1, - "err.stack": 1, - "socketOnEnd": 1, - "this._httpMessage": 3, - "this.parser": 2, - "socketOnData": 1, - "end": 14, - "parser.execute": 2, - "bytesParsed": 4, - "socket.ondata": 3, - "socket.onend": 3, - "bodyHead": 4, - "d.slice": 2, - "eventName": 21, - "req.listeners": 1, - "req.upgradeOrConnect": 1, - "socket.emit": 1, - "parserOnIncomingClient": 1, - "shouldKeepAlive": 4, - "res.upgrade": 1, - "skip": 5, - "isHeadResponse": 2, - "res.statusCode": 1, - "Clear": 1, - "so": 8, - "we": 25, - "don": 5, - "continue": 18, - "ve": 3, - "been": 5, - "upgraded": 1, - "via": 2, - "WebSockets": 1, - "also": 5, - "shouldn": 2, - "AGENT": 2, - "socket.destroySoon": 2, - "keep": 1, - "alive": 1, - "close": 2, - "free": 1, - "number": 13, - "an": 12, - "important": 1, - "promisy": 1, - "thing": 2, - "all": 16, - "the": 107, - "onSocket": 3, - "self.socket.writable": 1, - "self.socket": 5, - ".apply": 7, - "arguments_": 2, - "self.socket.once": 1, - "ClientRequest.prototype.setTimeout": 1, - "msecs": 4, - "this.once": 2, - "emitTimeout": 4, - "this.socket.setTimeout": 1, - "this.socket.once": 1, - "this.setTimeout": 3, - "sock": 1, - "ClientRequest.prototype.setNoDelay": 1, - "ClientRequest.prototype.setSocketKeepAlive": 1, - "ClientRequest.prototype.clearTimeout": 1, - "exports.request": 2, - "url.parse": 1, - "options.protocol": 3, - "exports.get": 1, - "req.end": 1, - "ondrain": 3, - "httpSocketSetup": 2, - "Server": 6, - "requestListener": 6, - "net.Server.call": 1, - "allowHalfOpen": 1, - "this.addListener": 2, - "this.httpAllowHalfOpen": 1, - "connectionListener": 3, - "net.Server": 1, - "exports.Server": 1, - "exports.createServer": 1, - "outgoing": 2, - "incoming": 2, - "abortIncoming": 3, - "incoming.length": 2, - "incoming.shift": 2, - "serverSocketCloseListener": 3, - "socket.setTimeout": 1, - "minute": 1, - "timeout": 2, - "socket.once": 1, - "parsers.alloc": 1, - "parser.reinitialize": 1, - "this.maxHeadersCount": 2, - "<<": 4, - "socket.addListener": 2, - "self.listeners": 2, - "req.socket": 1, - "self.httpAllowHalfOpen": 1, - "socket.writable": 2, - "socket.end": 2, - "outgoing.length": 2, - "._last": 1, - "socket._httpMessage._last": 1, - "incoming.push": 1, - "res.shouldKeepAlive": 1, - "DTRACE_HTTP_SERVER_REQUEST": 1, - "outgoing.push": 1, - "res.assignSocket": 1, - "res.on": 1, - "res.detachSocket": 1, - "res._last": 1, - "m": 76, - "outgoing.shift": 1, - "m.assignSocket": 1, - "req.headers": 2, - "continueExpression.test": 1, - "res._expect_continue": 1, - "res.writeContinue": 1, - "Not": 4, - "a": 1489, - "response.": 1, - "even": 3, - "exports._connectionListener": 1, - "Client": 6, - "this.host": 1, - "this.port": 1, - "maxSockets": 1, - "Client.prototype.request": 1, - "path": 5, - "self.host": 1, - "self.port": 1, - "c.on": 2, - "exports.Client": 1, - "module.deprecate": 2, - "exports.createClient": 1, - "cubes": 4, - "list": 21, - "math": 4, - "num": 23, - "opposite": 6, - "race": 4, - "square": 10, - "__slice": 2, - "Array.prototype.slice": 6, - "root": 5, - "Math.sqrt": 2, - "cube": 2, - "runners": 6, - "winner": 6, - "__slice.call": 2, - "print": 2, - "elvis": 4, - "_i": 10, - "_len": 6, - "_results": 6, - "list.length": 5, - "_results.push": 2, - "math.cube": 2, - ".slice": 6, - "window": 18, - "angular": 1, - "Array.prototype.last": 1, - "this.length": 41, - "app": 3, - "angular.module": 1, - "A": 24, - "w": 110, - "ma": 3, - "c.isReady": 4, - "try": 44, - "s.documentElement.doScroll": 2, - "catch": 38, - "c.ready": 7, - "Qa": 1, - "b.src": 4, - "c.ajax": 1, - "async": 5, - "dataType": 6, - "c.globalEval": 1, - "b.text": 3, - "b.textContent": 2, - "b.innerHTML": 3, - "b.parentNode": 4, - "b.parentNode.removeChild": 2, - "X": 6, - "f": 666, - "a.length": 23, - "o": 322, - "c.isFunction": 9, - "d.call": 3, - "J": 5, - ".getTime": 3, - "Y": 3, - "Z": 6, - "na": 1, - ".type": 2, - "c.event.handle.apply": 1, - "oa": 1, - "r": 261, - "c.data": 12, - "a.liveFired": 4, - "i.live": 1, - "a.button": 2, - "a.type": 14, - "u": 304, - "i.live.slice": 1, - "u.length": 3, - "i.origType.replace": 1, - "O": 6, - "f.push": 5, - "i.selector": 3, - "u.splice": 1, - "a.target": 5, - ".closest": 4, - "a.currentTarget": 4, - "j.length": 2, - ".selector": 1, - ".elem": 1, - "i.preType": 2, - "a.relatedTarget": 2, - "d.push": 1, - "elem": 101, - "handleObj": 2, - "d.length": 8, - "j.elem": 2, - "a.data": 2, - "j.handleObj.data": 1, - "a.handleObj": 2, - "j.handleObj": 1, - "j.handleObj.origHandler.apply": 1, - "pa": 1, - "b.replace": 3, - "/": 290, - "./g": 2, - ".replace": 38, - "/g": 37, - "qa": 1, - "a.parentNode": 6, - "a.parentNode.nodeType": 2, - "ra": 1, - "b.each": 1, - "this.nodeName": 4, - ".nodeName": 2, - "f.events": 1, - "e.handle": 2, - "e.events": 2, - "c.event.add": 1, - ".data": 3, - "sa": 2, - ".ownerDocument": 5, - "ta.test": 1, - "c.support.checkClone": 2, - "ua.test": 1, - "c.fragments": 2, - "b.createDocumentFragment": 1, - "c.clean": 1, - "fragment": 27, - "cacheable": 2, - "K": 4, - "c.each": 2, - "va.concat.apply": 1, - "va.slice": 1, - "wa": 1, - "a.document": 3, - "a.nodeType": 27, - "a.defaultView": 2, - "a.parentWindow": 2, - "c.fn.init": 1, - "Ra": 2, - "A.jQuery": 3, - "Sa": 2, - "A.": 3, - "A.document": 1, - "T": 4, - "Ta": 1, - "<[\\w\\W]+>": 4, - "|": 206, - "#": 13, - "Ua": 1, - ".": 91, - "Va": 1, - "S/": 4, - "Wa": 2, - "u00A0": 2, - "Xa": 1, - "<(\\w+)\\s*\\/?>": 4, - "<\\/\\1>": 4, - "P": 4, - "navigator.userAgent": 3, - "xa": 3, - "Q": 6, - "L": 10, - "Object.prototype.toString": 7, - "aa": 1, - "ba": 3, - "Array.prototype.push": 4, - "R": 2, - "ya": 2, - "Array.prototype.indexOf": 4, - "c.fn": 2, - "c.prototype": 1, - "init": 7, - "this.context": 17, - "s.body": 2, - "this.selector": 16, - "Ta.exec": 1, - "b.ownerDocument": 6, - "Xa.exec": 1, - "c.isPlainObject": 3, - "s.createElement": 10, - "c.fn.attr.call": 1, - "f.createElement": 1, - "a.cacheable": 1, - "a.fragment.cloneNode": 1, - "a.fragment": 1, - ".childNodes": 2, - "c.merge": 4, - "s.getElementById": 1, - "b.id": 1, - "T.find": 1, - "/.test": 19, - "s.getElementsByTagName": 2, - "b.jquery": 1, - ".find": 5, - "T.ready": 1, - "a.selector": 4, - "a.context": 2, - "c.makeArray": 3, - "selector": 40, - "jquery": 3, - "size": 6, - "toArray": 2, - "R.call": 2, - "get": 24, - "this.toArray": 3, - "this.slice": 5, - "pushStack": 4, - "c.isArray": 5, - "ba.apply": 1, - "f.prevObject": 1, - "f.context": 1, - "f.selector": 2, - "each": 17, - "ready": 31, - "c.bindReady": 1, - "a.call": 17, - "Q.push": 1, - "eq": 2, - "first": 10, - "this.eq": 4, - "last": 6, - "this.pushStack": 12, - "R.apply": 1, - ".join": 14, - "map": 7, - "c.map": 1, - "this.prevObject": 3, - "push": 11, - "sort": 4, - ".sort": 9, - "splice": 5, - "c.fn.init.prototype": 1, - "c.extend": 7, - "c.fn.extend": 4, - "noConflict": 4, - "isReady": 5, - "c.fn.triggerHandler": 1, - ".triggerHandler": 1, - "bindReady": 5, - "s.readyState": 2, - "s.addEventListener": 3, - "A.addEventListener": 1, - "s.attachEvent": 3, - "A.attachEvent": 1, - "A.frameElement": 1, - "isFunction": 12, - "isPlainObject": 4, - "a.setInterval": 2, - "a.constructor": 2, - "aa.call": 3, - "a.constructor.prototype": 2, - "isEmptyObject": 7, - "parseJSON": 4, - "c.trim": 3, - "a.replace": 7, - "@": 1, - "d*": 8, - "eE": 4, - "s*": 15, - "A.JSON": 1, - "A.JSON.parse": 2, - "Function": 3, - "c.error": 2, - "noop": 3, - "globalEval": 2, - "Va.test": 1, - "s.documentElement": 2, - "d.type": 2, - "c.support.scriptEval": 2, - "d.appendChild": 3, - "s.createTextNode": 2, - "d.text": 1, - "b.insertBefore": 3, - "b.firstChild": 5, - "b.removeChild": 3, - "nodeName": 20, - "a.nodeName": 12, - "a.nodeName.toUpperCase": 2, - "b.toUpperCase": 3, - "b.apply": 2, - "b.call": 4, - "trim": 5, - "makeArray": 3, - "ba.call": 1, - "inArray": 5, - "b.indexOf": 2, - "b.length": 12, - "merge": 2, - "grep": 6, - "f.length": 5, - "f.concat.apply": 1, - "guid": 5, - "proxy": 4, - "a.apply": 2, - "b.guid": 2, - "a.guid": 7, - "c.guid": 1, - "uaMatch": 3, - "a.toLowerCase": 4, - "webkit": 6, - "w.": 17, - "/.exec": 4, - "opera": 4, - ".*version": 4, - "msie": 4, - "/compatible/.test": 1, - "mozilla": 4, - ".*": 20, - "rv": 4, - "browser": 11, - "version": 10, - "c.uaMatch": 1, - "P.browser": 2, - "c.browser": 1, - "c.browser.version": 1, - "P.version": 1, - "c.browser.webkit": 1, - "c.browser.safari": 1, - "c.inArray": 2, - "ya.call": 1, - "s.removeEventListener": 1, - "s.detachEvent": 1, - "c.support": 2, - "d.style.display": 5, - "d.innerHTML": 2, - "d.getElementsByTagName": 6, - "e.length": 9, - "leadingWhitespace": 3, - "d.firstChild.nodeType": 1, - "tbody": 7, - "htmlSerialize": 3, - "style": 30, - "/red/.test": 1, - "j.getAttribute": 2, - "hrefNormalized": 3, - "opacity": 13, - "j.style.opacity": 1, - "cssFloat": 4, - "j.style.cssFloat": 1, - "checkOn": 4, - ".value": 1, - "optSelected": 3, - ".appendChild": 1, - ".selected": 1, - "parentNode": 10, - "d.removeChild": 1, - ".parentNode": 7, - "deleteExpando": 3, - "checkClone": 1, - "scriptEval": 1, - "noCloneEvent": 3, - "boxModel": 1, - "b.type": 4, - "b.appendChild": 1, - "a.insertBefore": 2, - "a.firstChild": 6, - "b.test": 1, - "c.support.deleteExpando": 2, - "a.removeChild": 2, - "d.attachEvent": 2, - "d.fireEvent": 1, - "c.support.noCloneEvent": 1, - "d.detachEvent": 1, - "d.cloneNode": 1, - ".fireEvent": 3, - "s.createDocumentFragment": 1, - "a.appendChild": 3, - "d.firstChild": 2, - "a.cloneNode": 3, - ".cloneNode": 4, - ".lastChild.checked": 2, - "k.style.width": 1, - "k.style.paddingLeft": 1, - "s.body.appendChild": 1, - "c.boxModel": 1, - "c.support.boxModel": 1, - "k.offsetWidth": 1, - "s.body.removeChild": 1, - ".style.display": 5, - "n.setAttribute": 1, - "c.support.submitBubbles": 1, - "c.support.changeBubbles": 1, - "c.props": 2, - "readonly": 3, - "maxlength": 2, - "cellspacing": 2, - "rowspan": 2, - "colspan": 2, - "tabindex": 4, - "usemap": 2, - "frameborder": 2, - "G": 11, - "Ya": 2, - "za": 3, - "cache": 45, - "expando": 14, - "noData": 3, - "embed": 3, - "applet": 2, - "c.noData": 2, - "a.nodeName.toLowerCase": 3, - "c.cache": 2, - "removeData": 8, - "c.isEmptyObject": 1, - "c.removeData": 2, - "c.expando": 2, - "a.removeAttribute": 3, - "this.each": 42, - "a.split": 4, - "this.triggerHandler": 6, - "this.trigger": 2, - ".each": 3, - "queue": 7, - "dequeue": 6, - "c.queue": 3, - "d.shift": 2, - "d.unshift": 2, - "f.call": 1, - "c.dequeue": 4, - "delay": 4, - "c.fx": 1, - "c.fx.speeds": 1, - "this.queue": 4, - "clearQueue": 2, - "Aa": 3, - "t": 436, - "ca": 6, - "Za": 2, - "r/g": 2, - "/href": 1, - "src": 7, - "style/": 1, - "ab": 1, - "button": 24, - "/i": 22, - "bb": 2, - "select": 20, - "textarea": 8, - "area": 2, - "Ba": 3, - "/radio": 1, - "checkbox/": 1, - "attr": 13, - "c.attr": 4, - "removeAttr": 5, - "this.nodeType": 4, - "this.removeAttribute": 1, - "addClass": 2, - "r.addClass": 1, - "r.attr": 1, - ".split": 19, - "e.nodeType": 7, - "e.className": 14, - "j.indexOf": 1, - "removeClass": 2, - "n.removeClass": 1, - "n.attr": 1, - "j.replace": 2, - "toggleClass": 2, - "j.toggleClass": 1, - "j.attr": 1, - "i.hasClass": 1, - "this.className": 10, - "hasClass": 2, - "": 1, - "className": 4, + "object.url": 4, + "_.isFunction": 1, + "wrapError": 1, + "onError": 3, + "resp": 3, + "model.trigger": 1, + "escapeHTML": 1, + "string.replace": 1, + "&": 13, + "#x": 1, + "da": 1, + "/gi": 2, + "": 1, + "lt": 55, "replace": 8, - "indexOf": 5, - "val": 13, - "c.nodeName": 4, - "b.attributes.value": 1, - ".specified": 1, - "b.value": 4, - "b.selectedIndex": 2, - "b.options": 1, - "": 1, - "i=": 31, - "selected": 5, - "a=": 23, - "test": 21, - "type": 49, - "support": 13, - "getAttribute": 3, - "on": 37, - "o=": 13, - "n=": 10, - "r=": 18, - "nodeType=": 6, - "call": 9, - "checked=": 1, - "this.selected": 1, - ".val": 5, - "this.selectedIndex": 1, - "this.value": 4, - "attrFn": 2, - "css": 7, - "html": 10, - "text": 14, - "width": 32, - "height": 25, - "offset": 21, - "c.attrFn": 1, - "c.isXMLDoc": 1, - "a.test": 2, - "ab.test": 1, - "a.getAttributeNode": 7, - ".nodeValue": 1, - "b.specified": 2, - "bb.test": 2, - "cb.test": 1, - "a.href": 2, - "c.support.style": 1, - "a.style.cssText": 3, - "a.setAttribute": 7, - "c.support.hrefNormalized": 1, - "a.getAttribute": 11, - "c.style": 1, - "db": 1, - "handle": 15, - "click": 11, - "events": 18, - "altKey": 4, - "attrChange": 4, - "attrName": 4, - "bubbles": 4, - "cancelable": 4, - "charCode": 7, - "clientX": 6, - "clientY": 5, - "ctrlKey": 6, - "currentTarget": 4, - "detail": 3, - "eventPhase": 4, - "fromElement": 6, - "handler": 14, - "keyCode": 6, - "layerX": 3, - "layerY": 3, - "metaKey": 5, - "newValue": 3, - "offsetX": 4, - "offsetY": 4, - "originalTarget": 1, - "pageX": 4, - "pageY": 4, - "prevValue": 3, - "relatedNode": 4, - "relatedTarget": 6, - "screenX": 4, - "screenY": 4, - "shiftKey": 4, - "srcElement": 5, - "toElement": 5, - "view": 4, - "wheelDelta": 3, - "which": 8, - "mouseover": 12, - "mouseout": 12, - "form": 12, - "click.specialSubmit": 2, - "submit": 14, - "image": 5, - "keypress.specialSubmit": 2, - "password": 5, - ".specialSubmit": 2, - "radio": 17, - "checkbox": 14, - "multiple": 7, - "_change_data": 6, - "focusout": 11, - "change": 16, - "file": 5, - ".specialChange": 4, - "focusin": 9, - "bind": 3, - "one": 15, - "unload": 5, - "live": 8, - "lastToggle": 4, - "die": 3, - "hover": 3, - "mouseenter": 9, - "mouseleave": 9, - "focus": 7, - "blur": 8, - "resize": 3, - "scroll": 6, - "dblclick": 3, - "mousedown": 3, - "mouseup": 3, - "mousemove": 3, - "keydown": 4, - "keypress": 4, - "keyup": 3, - "onunload": 1, - "g": 441, - "h": 499, - "q": 34, - "h.nodeType": 4, - "p": 110, - "S": 8, - "H": 8, - "M": 9, - "I": 7, - "f.exec": 2, - "p.push": 2, - "p.length": 10, - "r.exec": 1, - "n.relative": 5, - "ga": 2, - "p.shift": 4, - "n.match.ID.test": 2, - "k.find": 6, - "v.expr": 4, - "k.filter": 5, - "v.set": 5, - "expr": 2, - "p.pop": 4, - "set": 22, - "z": 21, - "h.parentNode": 3, - "D": 9, - "k.error": 2, - "j.call": 2, - ".nodeType": 9, - "E": 11, - "l.push": 2, - "l.push.apply": 1, - "k.uniqueSort": 5, - "B": 5, - "g.sort": 1, - "g.length": 2, - "g.splice": 2, - "k.matches": 1, - "n.order.length": 1, - "n.order": 1, - "n.leftMatch": 1, - ".exec": 2, - "q.splice": 1, - "y.substr": 1, - "y.length": 1, - "Syntax": 3, - "unrecognized": 3, - "expression": 4, - "ID": 8, - "NAME": 2, - "TAG": 2, - "u00c0": 2, - "uFFFF": 2, - "leftMatch": 2, - "attrMap": 2, - "attrHandle": 2, - "g.getAttribute": 1, - "relative": 4, - "W/.test": 1, - "h.toLowerCase": 2, - "": 1, - "previousSibling": 5, - "nth": 5, - "odd": 2, - "not": 26, - "reset": 2, - "contains": 8, - "only": 10, - "id": 38, - "class": 5, - "Array": 3, - "sourceIndex": 1, - "div": 28, - "script": 7, - "": 4, - "name=": 2, - "href=": 2, - "": 2, - "

": 2, - "

": 2, - ".TEST": 2, - "
": 3, - "CLASS": 1, - "HTML": 9, - "find": 7, - "filter": 10, - "nextSibling": 3, - "iframe": 3, - "": 1, - "": 1, - "
": 1, - "
": 1, - "": 4, - "
": 5, - "": 3, - "": 3, - "": 2, - "": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "before": 8, - "after": 7, - "position": 7, - "absolute": 2, - "top": 12, - "left": 14, - "margin": 8, - "border": 7, - "px": 31, - "solid": 2, - "#000": 2, - "padding": 4, - "": 1, - "": 1, - "fixed": 1, - "marginTop": 3, - "marginLeft": 2, - "using": 5, - "borderTopWidth": 1, - "borderLeftWidth": 1, - "Left": 1, - "Top": 1, - "pageXOffset": 2, - "pageYOffset": 1, - "Height": 1, - "Width": 1, - "inner": 2, - "outer": 2, - "scrollTo": 1, - "CSS1Compat": 1, - "client": 3, + "#x27": 1, + "#x2F": 1, + ".call": 10, + "undefined": 328, "document": 26, "window.document": 2, "navigator": 3, "window.navigator": 2, "location": 2, - "window.location": 5, "jQuery": 48, "context": 48, "The": 9, "is": 67, "actually": 2, "just": 2, + "the": 107, + "init": 7, + "constructor": 8, "jQuery.fn.init": 2, "rootjQuery": 8, "Map": 4, "over": 7, + "case": 136, "of": 28, "overwrite": 4, "_jQuery": 4, + "window.jQuery": 7, "window.": 6, + "A": 24, "central": 2, "reference": 5, "simple": 3, "way": 2, "check": 8, + "HTML": 9, "strings": 8, - "both": 2, - "optimize": 3, + "or": 38, + "ID": 8, + "Prioritize": 1, + "#id": 3, + "": 1, + "avoid": 5, + "XSS": 1, + "via": 2, + "location.hash": 1, + "#9521": 1, "quickExpr": 2, + "<[\\w\\W]+>": 4, "Check": 10, "has": 9, "non": 8, @@ -29026,101 +28259,156 @@ "character": 3, "it": 112, "rnotwhite": 2, + "S/": 4, "Used": 3, "trimming": 2, "trimLeft": 4, "trimRight": 4, - "digits": 3, - "rdigit": 1, - "d/": 3, "Match": 3, "standalone": 2, "tag": 2, "rsingleTag": 2, - "JSON": 5, - "RegExp": 12, + "<(\\w+)\\s*\\/?>": 4, + "<\\/\\1>": 4, "rvalidchars": 2, "rvalidescape": 2, + "d*": 8, + "eE": 4, "rvalidbraces": 2, "Useragent": 2, "rwebkit": 2, + "webkit": 6, "ropera": 2, + "opera": 4, + ".*version": 4, "rmsie": 2, + "msie": 4, "rmozilla": 2, + "mozilla": 4, + "rv": 4, + "Matches": 1, + "dashed": 1, + "camelizing": 1, + "rdashAlpha": 1, + "z": 21, + "/ig": 3, + "rmsPrefix": 1, + "ms": 2, + "by": 12, + "jQuery.camelCase": 6, + "as": 11, + "fcamelCase": 1, + "letter": 3, + ".toUpperCase": 3, "Keep": 2, "UserAgent": 2, "use": 10, "with": 18, "jQuery.browser": 4, "userAgent": 3, + "navigator.userAgent": 3, "For": 5, "matching": 3, "engine": 2, "and": 42, + "version": 10, + "browser": 11, "browserMatch": 3, "deferred": 25, "used": 13, + "on": 37, "DOM": 21, + "ready": 31, "readyList": 6, "event": 31, "DOMContentLoaded": 14, "Save": 2, "some": 2, "core": 2, - "methods": 8, "toString": 4, + "Object.prototype.toString": 7, "hasOwn": 2, + "Object.prototype.hasOwnProperty": 6, + "push": 11, + "Array.prototype.push": 4, + "slice": 10, + "Array.prototype.slice": 6, + "trim": 5, "String.prototype.trim": 3, + "indexOf": 5, + "Array.prototype.indexOf": 4, "Class": 2, "pairs": 2, "class2type": 3, "jQuery.fn": 4, "jQuery.prototype": 2, - "match": 30, + "elem": 101, + "ret": 62, "doc": 4, "Handle": 14, "DOMElement": 2, "selector.nodeType": 2, + "this.context": 17, + "body": 22, + "element": 19, + "only": 10, "exists": 9, "once": 4, + "optimize": 3, "finding": 2, + "document.body": 8, + "this.selector": 16, "Are": 2, + "we": 25, "dealing": 2, + "an": 12, "selector.charAt": 4, "selector.length": 4, "Assume": 2, + "that": 33, + "end": 14, "are": 18, + "skip": 5, "regex": 3, "quickExpr.exec": 2, "Verify": 3, "no": 19, "was": 6, "specified": 4, - "#id": 3, "HANDLE": 2, + "html": 10, "array": 7, + "instanceof": 19, "context.ownerDocument": 2, "If": 21, "single": 2, "passed": 5, "clean": 3, + "not": 26, "like": 5, "method.": 3, + "sort": 4, + ".sort": 9, + "splice": 5, + ".splice": 5, "jQuery.fn.init.prototype": 2, "jQuery.extend": 11, "jQuery.fn.extend": 4, + "src": 7, "copy": 16, "copyIsArray": 2, "clone": 5, + "target": 44, + "length": 48, + "arguments.length": 18, "deep": 12, "situation": 2, - "boolean": 8, "when": 20, "something": 3, "possible": 3, "jQuery.isFunction": 6, - "extend": 13, "itself": 4, + "one": 15, "argument": 2, "Only": 5, "deal": 2, @@ -29132,20 +28420,24 @@ "never": 2, "ending": 2, "loop": 7, + "continue": 18, "Recurse": 2, "bring": 2, "Return": 2, "modified": 3, + "noConflict": 4, "Is": 2, "be": 12, "Set": 4, "occurs.": 2, + "isReady": 5, "counter": 2, "track": 2, "how": 2, "many": 3, "items": 2, "wait": 12, + "before": 8, "fires.": 2, "See": 9, "#6781": 2, @@ -29171,6 +28463,7 @@ "overzealous": 4, "ticket": 4, "#5443": 4, + "setTimeout": 19, "Remember": 2, "normal": 2, "Ready": 2, @@ -29181,18 +28474,20 @@ "functions": 6, "bound": 8, "execute": 4, - "readyList.resolveWith": 1, + "readyList.fireWith": 1, "Trigger": 2, "any": 12, "jQuery.fn.trigger": 2, ".trigger": 3, - ".unbind": 4, - "jQuery._Deferred": 3, + ".off": 1, + "bindReady": 5, + "jQuery.Callbacks": 2, "Catch": 2, "cases": 4, "where": 2, ".ready": 2, "called": 2, + "after": 7, "already": 6, "occurred.": 2, "document.readyState": 4, @@ -29200,10 +28495,12 @@ "allow": 6, "scripts": 2, "opportunity": 2, + "delay": 4, "Mozilla": 2, "Opera": 2, "nightlies": 3, "currently": 4, + "support": 13, "document.addEventListener": 6, "Use": 7, "handy": 2, @@ -29213,7 +28510,6 @@ "always": 6, "work": 6, "window.addEventListener": 2, - "model": 14, "document.attachEvent": 6, "ensure": 2, "firing": 16, @@ -29222,13 +28518,16 @@ "late": 2, "but": 4, "safe": 3, + "also": 5, "iframes": 2, "window.attachEvent": 2, "frame": 23, "continually": 2, "see": 6, "toplevel": 7, + "try": 44, "window.frameElement": 2, + "catch": 38, "document.documentElement.doScroll": 4, "doScrollCheck": 6, "test/unit/core.js": 2, @@ -29236,14 +28535,16 @@ "concerning": 2, "isFunction.": 2, "Since": 3, + "alert": 11, "aren": 5, "pass": 7, "through": 3, - "as": 11, "well": 2, + "obj": 40, "jQuery.type": 4, "obj.nodeType": 2, "jQuery.isWindow": 2, + "Not": 4, "own": 4, "property": 15, "must": 4, @@ -29251,1851 +28552,67 @@ "obj.constructor": 2, "hasOwn.call": 6, "obj.constructor.prototype": 2, + "IE8": 2, + "Will": 2, + "exceptions": 2, + "certain": 2, + "host": 29, + "objects": 7, + "#9897": 1, "Own": 2, "properties": 7, "enumerated": 2, "firstly": 2, + "so": 8, "speed": 4, "up": 4, + "last": 6, "then": 8, "own.": 2, + "isEmptyObject": 7, "msg": 4, + "parseJSON": 4, + "data": 145, "leading/trailing": 2, "removed": 3, "can": 10, - "breaking": 1, - "spaces": 3, - "rnotwhite.test": 2, - "xA0": 7, - "document.removeEventListener": 2, - "document.detachEvent": 2, - "trick": 2, - "Diego": 2, - "Perini": 2, - "http": 6, - "//javascript.nwbox.com/IEContentLoaded/": 2, - "waiting": 2, - "Promise": 1, - "promiseMethods": 3, - "Static": 1, - "sliceDeferred": 1, - "Create": 1, - "callbacks": 10, - "_Deferred": 4, - "stored": 4, - "args": 31, - "avoid": 5, - "doing": 3, - "flag": 1, - "know": 3, - "cancelled": 5, - "done": 10, - "f1": 1, - "f2": 1, - "...": 1, - "_fired": 5, - "args.length": 3, - "deferred.done.apply": 2, - "callbacks.push": 1, - "deferred.resolveWith": 5, - "resolve": 7, - "given": 3, - "resolveWith": 4, - "make": 2, - "available": 1, - "#8421": 1, - "callbacks.shift": 1, - "finally": 3, - "Has": 1, - "resolved": 1, - "isResolved": 3, - "Cancel": 1, - "cancel": 6, - "Full": 1, - "fledged": 1, - "two": 1, - "Deferred": 5, - "func": 3, - "failDeferred": 1, - "promise": 14, - "Add": 4, - "errorDeferred": 1, - "doneCallbacks": 2, - "failCallbacks": 2, - "deferred.done": 2, - ".fail": 2, - ".fail.apply": 1, - "fail": 10, - "failDeferred.done": 1, - "rejectWith": 2, - "failDeferred.resolveWith": 1, - "reject": 4, - "failDeferred.resolve": 1, - "isRejected": 2, - "failDeferred.isResolved": 1, - "pipe": 2, - "fnDone": 2, - "fnFail": 2, - "jQuery.Deferred": 1, - "newDefer": 3, - "jQuery.each": 2, - "fn": 14, - "action": 3, - "returned": 4, - "fn.apply": 1, - "returned.promise": 2, - ".then": 3, - "newDefer.resolve": 1, - "newDefer.reject": 1, - ".promise": 5, - "Get": 4, - "provided": 1, - "aspect": 1, - "added": 1, - "promiseMethods.length": 1, - "failDeferred.cancel": 1, - "deferred.cancel": 2, - "Unexpose": 1, - "Call": 1, - "func.call": 1, - "helper": 1, - "firstParam": 6, - "count": 4, - "<=>": 1, - "1": 97, - "resolveFunc": 2, - "sliceDeferred.call": 2, - "Strange": 1, - "bug": 3, - "FF4": 1, - "Values": 1, - "changed": 3, - "onto": 2, - "sometimes": 1, - "outside": 2, - ".when": 1, - "Cloning": 2, - "into": 2, - "fresh": 1, - "solves": 1, - "issue": 1, - "deferred.reject": 1, - "deferred.promise": 1, - "jQuery.support": 1, - "document.createElement": 26, - "documentElement": 2, - "document.documentElement": 2, - "opt": 2, - "marginDiv": 5, - "bodyStyle": 1, - "tds": 6, - "isSupported": 7, - "Preliminary": 1, - "tests": 48, - "div.setAttribute": 1, - "div.innerHTML": 7, - "div.getElementsByTagName": 6, - "Can": 2, - "automatically": 2, - "inserted": 1, - "insert": 1, - "them": 3, - "empty": 3, - "tables": 1, - "link": 2, - "elements": 9, - "serialized": 3, - "correctly": 1, - "innerHTML": 1, - "This": 3, - "requires": 1, - "wrapper": 1, - "information": 5, - "from": 7, - "uses": 3, - ".cssText": 2, - "instead": 6, - "/top/.test": 2, - "URLs": 1, - "optgroup": 5, - "opt.selected": 1, - "Test": 3, - "setAttribute": 1, - "camelCase": 3, - "class.": 1, - "works": 1, - "attrFixes": 1, - "get/setAttribute": 1, - "ie6/7": 1, - "getSetAttribute": 3, - "div.className": 1, - "Will": 2, - "defined": 3, - "later": 1, - "submitBubbles": 3, - "changeBubbles": 3, - "focusinBubbles": 2, - "inlineBlockNeedsLayout": 3, - "shrinkWrapBlocks": 2, - "reliableMarginRight": 2, - "checked": 4, - "status": 3, - "properly": 2, - "cloned": 1, - "input.checked": 1, - "support.noCloneChecked": 1, - "input.cloneNode": 1, - ".checked": 2, - "inside": 3, - "disabled": 11, - "selects": 1, - "Fails": 2, - "Internet": 1, - "Explorer": 1, - "div.test": 1, - "support.deleteExpando": 1, - "div.addEventListener": 1, - "div.attachEvent": 2, - "div.fireEvent": 1, - "node": 23, - "being": 2, - "appended": 2, - "input.value": 5, - "input.setAttribute": 5, - "support.radioValue": 2, - "div.appendChild": 4, - "document.createDocumentFragment": 3, - "fragment.appendChild": 2, - "div.firstChild": 3, - "WebKit": 9, - "doesn": 2, - "inline": 3, - "display": 7, - "none": 4, - "GC": 2, - "references": 1, - "across": 1, - "JS": 7, - "boundary": 1, - "isNode": 11, - "elem.nodeType": 8, - "nodes": 14, - "global": 5, - "attached": 1, - "directly": 2, - "occur": 1, - "jQuery.cache": 3, - "defining": 1, - "objects": 7, - "its": 2, - "allows": 1, - "code": 2, - "shortcut": 1, - "same": 1, - "jQuery.expando": 12, - "Avoid": 1, - "more": 6, - "than": 3, - "trying": 1, - "pvt": 8, - "internalKey": 12, - "getByName": 3, - "unique": 2, - "since": 1, - "their": 3, - "ends": 1, - "jQuery.uuid": 1, - "TODO": 2, - "hack": 2, - "ONLY.": 2, - "Avoids": 2, - "exposing": 2, - "metadata": 2, - "plain": 2, - ".toJSON": 4, - "jQuery.noop": 2, - "An": 1, - "jQuery.data": 15, - "key/value": 1, - "pair": 1, - "shallow": 1, - "copied": 1, - "existing": 1, - "thisCache": 15, - "Internal": 1, - "separate": 1, - "destroy": 1, - "unless": 2, - "internal": 8, - "had": 1, - "isEmptyDataObject": 3, - "internalCache": 3, - "Browsers": 1, - "deletion": 1, - "refuse": 1, - "expandos": 2, - "other": 3, - "browsers": 2, - "faster": 1, - "iterating": 1, - "persist": 1, - "existed": 1, - "Otherwise": 2, - "eliminate": 2, - "lookups": 2, - "entries": 2, - "longer": 2, - "exist": 2, - "does": 9, - "us": 2, - "nor": 2, - "have": 6, - "removeAttribute": 3, - "Document": 2, - "these": 2, - "jQuery.support.deleteExpando": 3, - "elem.removeAttribute": 6, - "only.": 2, - "_data": 3, - "determining": 3, - "acceptData": 3, - "elem.nodeName": 2, - "jQuery.noData": 2, - "elem.nodeName.toLowerCase": 2, - "elem.getAttribute": 7, - ".attributes": 2, - "attr.length": 2, - ".name": 3, - "name.indexOf": 2, - "jQuery.camelCase": 6, - "name.substring": 2, - "dataAttr": 6, - "parts": 28, - "key.split": 2, - "Try": 4, - "fetch": 4, - "internally": 5, - "jQuery.removeData": 2, - "nothing": 2, - "found": 10, - "HTML5": 3, - "attribute": 5, - "key.replace": 2, - "rmultiDash": 3, - ".toLowerCase": 7, - "jQuery.isNaN": 1, - "rbrace.test": 2, - "jQuery.parseJSON": 2, - "isn": 2, - "option.selected": 2, - "jQuery.support.optDisabled": 2, - "option.disabled": 2, - "option.getAttribute": 2, - "option.parentNode.disabled": 2, - "jQuery.nodeName": 3, - "option.parentNode": 2, - "specific": 2, - "We": 6, - "get/set": 2, - "attributes": 14, - "comment": 3, - "nType": 8, - "jQuery.attrFn": 2, - "Fallback": 2, - "prop": 24, - "supported": 2, - "jQuery.prop": 2, - "hooks": 14, - "notxml": 8, - "jQuery.isXMLDoc": 2, - "Normalize": 1, - "needed": 2, - "jQuery.attrFix": 2, - "jQuery.attrHooks": 2, - "boolHook": 3, - "rboolean.test": 4, - "value.toLowerCase": 2, - "formHook": 3, - "forms": 1, - "certain": 2, - "characters": 6, - "rinvalidChar.test": 1, - "jQuery.removeAttr": 2, - "hooks.set": 2, - "elem.setAttribute": 2, - "hooks.get": 2, - "Non": 3, - "existent": 2, - "normalize": 2, - "propName": 8, - "jQuery.support.getSetAttribute": 1, - "jQuery.attr": 2, - "elem.removeAttributeNode": 1, - "elem.getAttributeNode": 1, - "corresponding": 2, - "jQuery.propFix": 2, - "attrHooks": 3, - "tabIndex": 4, - "readOnly": 2, - "htmlFor": 2, - "maxLength": 2, - "cellSpacing": 2, - "cellPadding": 2, - "rowSpan": 2, - "colSpan": 2, - "useMap": 2, - "frameBorder": 2, - "contentEditable": 2, - "auto": 3, - "&": 13, - "getData": 3, - "setData": 3, - "changeData": 3, - "bubbling": 1, - "live.": 2, - "hasDuplicate": 1, - "baseHasDuplicate": 2, - "rBackslash": 1, - "rNonWord": 1, - "W/": 2, - "Sizzle": 1, - "results": 4, - "seed": 1, - "origContext": 1, - "context.nodeType": 2, - "checkSet": 1, - "extra": 1, - "cur": 6, - "pop": 1, - "prune": 1, - "contextXML": 1, - "Sizzle.isXML": 1, - "soFar": 1, - "Reset": 1, - "cy": 4, - "f.isWindow": 2, - "cv": 2, - "cj": 4, - ".appendTo": 2, - "b.css": 1, - "b.remove": 1, - "ck": 5, - "c.createElement": 12, - "ck.frameBorder": 1, - "ck.width": 1, - "ck.height": 1, - "c.body.appendChild": 1, - "cl": 3, - "ck.createElement": 1, - "ck.contentWindow": 1, - "ck.contentDocument": 1, - ".document": 1, - "cl.write": 1, - "cl.createElement": 1, - "cl.body.appendChild": 1, - "f.css": 24, - "c.body.removeChild": 1, - "cu": 18, - "f.each": 21, - "cp.concat.apply": 1, - "cp.slice": 1, - "ct": 34, - "cq": 3, - "cs": 3, - "f.now": 2, - "ci": 29, - "a.ActiveXObject": 3, - "ch": 58, - "a.XMLHttpRequest": 1, - "a.dataFilter": 2, - "a.dataType": 1, - "a.dataTypes": 2, - "a.converters": 3, - "o.split": 1, - "f.error": 4, - "m.replace": 1, - "a.contents": 1, - "a.responseFields": 1, - "f.shift": 1, - "a.mimeType": 1, - "c.getResponseHeader": 1, - ".test": 1, - "f.unshift": 2, - "b_": 4, - "f.isArray": 8, - "bF.test": 1, - "c.dataTypes": 1, - "h.length": 3, - "bU": 4, - "c.dataTypes.unshift": 1, - "bZ": 3, - "f.isFunction": 21, - "b.toLowerCase": 3, - "bQ": 3, - "h.substr": 1, - "bD": 3, - "bx": 2, - "a.offsetWidth": 6, - "a.offsetHeight": 2, - "bn": 2, - "f.ajax": 3, - "f.globalEval": 2, - "bf": 6, - "bm": 3, - "f.nodeName": 16, - "bl": 3, - "a.getElementsByTagName": 9, - "f.grep": 3, - "a.defaultChecked": 1, - "a.checked": 4, - "bk": 5, - "a.querySelectorAll": 1, - "bj": 3, - "b.nodeType": 6, - "b.clearAttributes": 2, - "b.mergeAttributes": 2, - "b.nodeName.toLowerCase": 1, - "b.outerHTML": 1, - "a.outerHTML": 1, - "b.selected": 1, - "a.defaultSelected": 1, - "b.defaultValue": 1, - "a.defaultValue": 1, - "b.defaultChecked": 1, - "b.checked": 1, - "a.value": 8, - "b.removeAttribute": 3, - "f.expando": 23, - "bi": 27, - "f.hasData": 2, - "f.data": 25, - "d.events": 1, - "f.extend": 23, - "": 1, - "bh": 1, - "table": 6, - "getElementsByTagName": 1, - "0": 220, - "appendChild": 1, - "ownerDocument": 9, - "createElement": 3, - "b=": 25, - "e=": 21, - "nodeType": 1, - "d=": 15, - "W": 3, - "N": 2, - "f._data": 15, - "r.live": 1, - "a.target.disabled": 1, - "a.namespace": 1, - "a.namespace.split": 1, - "r.live.slice": 1, - "s.length": 2, - "g.origType.replace": 1, - "q.push": 1, - "g.selector": 3, - "s.splice": 1, - "m.selector": 1, - "n.test": 2, - "g.namespace": 1, - "m.elem.disabled": 1, - "m.elem": 1, - "g.preType": 3, - "f.contains": 5, - "level": 3, - "m.level": 1, - "": 1, - "e.elem": 2, - "e.handleObj.data": 1, - "e.handleObj": 1, - "e.handleObj.origHandler.apply": 1, - "a.isPropagationStopped": 1, - "e.level": 1, - "a.isImmediatePropagationStopped": 1, - "e.type": 6, - "e.originalEvent": 1, - "e.liveFired": 1, - "f.event.handle.call": 1, - ".preventDefault": 1, - "F": 8, - "f.removeData": 4, - "i.resolve": 1, - "c.replace": 4, - "f.isNaN": 3, - "i.test": 1, - "f.parseJSON": 2, - "a.navigator": 1, - "a.location": 1, - "e.isReady": 1, - "c.documentElement.doScroll": 2, - "e.ready": 6, - "e.fn.init": 1, - "a.jQuery": 2, - "a.": 2, - "d.userAgent": 1, - "C": 4, - "e.fn": 2, - "e.prototype": 1, - "c.body": 4, - "a.charAt": 2, - "i.exec": 1, - "d.ownerDocument": 1, - "n.exec": 1, - "e.isPlainObject": 1, - "e.fn.attr.call": 1, - "k.createElement": 1, - "e.buildFragment": 1, - "j.cacheable": 1, - "e.clone": 1, - "j.fragment": 2, - "e.merge": 3, - "c.getElementById": 1, - "h.id": 1, - "f.find": 2, - "d.jquery": 1, - "e.isFunction": 5, - "f.ready": 1, - "e.makeArray": 1, - "D.call": 4, - "e.isArray": 2, - "C.apply": 1, - "d.prevObject": 1, - "d.context": 2, - "d.selector": 2, - "e.each": 2, - "e.bindReady": 1, - "y.done": 1, - "D.apply": 1, - "e.map": 1, - "e.fn.init.prototype": 1, - "e.extend": 2, - "e.fn.extend": 1, - "": 1, - "f=": 13, - "g=": 15, - "h=": 19, - "jQuery=": 2, - "isReady=": 1, - "y.resolveWith": 1, - "e.fn.trigger": 1, - "e._Deferred": 1, - "c.readyState": 2, - "c.addEventListener": 4, - "a.addEventListener": 4, - "c.attachEvent": 3, - "a.attachEvent": 6, - "a.frameElement": 1, - "isWindow": 2, - "isNaN": 6, - "m.test": 1, - "String": 2, - "A.call": 1, - "e.isWindow": 2, - "B.call": 3, - "e.trim": 1, - "a.JSON": 1, - "a.JSON.parse": 2, - "o.test": 1, - "e.error": 2, - "parseXML": 1, - "a.DOMParser": 1, - "DOMParser": 1, - "d.parseFromString": 1, - "ActiveXObject": 1, - "c.async": 4, - "c.loadXML": 1, - "c.documentElement": 4, - "d.nodeName": 4, - "j.test": 3, - "a.execScript": 1, - "a.eval.call": 1, - "c.apply": 2, - "c.call": 3, - "E.call": 1, - "C.call": 1, - "F.call": 1, - "c.length": 8, - "": 1, - "j=": 14, - "k=": 11, - "h.concat.apply": 1, - "f.concat": 1, - "g.guid": 3, - "e.guid": 3, "access": 2, - "e.access": 1, - "now": 5, - "s.exec": 1, - "t.exec": 1, - "u.exec": 1, - "a.indexOf": 2, - "v.exec": 1, - "sub": 4, - "a.fn.init": 2, - "a.superclass": 1, - "a.fn": 2, - "a.prototype": 1, - "a.fn.constructor": 1, - "a.sub": 1, - "this.sub": 2, - "e.fn.init.call": 1, - "a.fn.init.prototype": 1, - "e.uaMatch": 1, - "x.browser": 2, - "e.browser": 1, - "e.browser.version": 1, - "x.version": 1, - "e.browser.webkit": 1, - "e.browser.safari": 1, - "c.removeEventListener": 2, - "c.detachEvent": 1, - "": 1, - "c=": 24, - "shift": 1, - "apply": 8, - "h.call": 2, - "g.resolveWith": 3, - "<=1&&a&&f.isFunction(a.promise)?a:f.Deferred();if(d>": 1, - "g.reject": 1, - "g.promise": 1, - "f.support": 2, - "a.innerHTML": 7, - "f.appendChild": 1, - "a.firstChild.nodeType": 2, - "e.getAttribute": 2, - "e.style.opacity": 1, - "e.style.cssFloat": 1, - "h.value": 3, - "g.selected": 1, - "a.className": 1, - "h.checked": 2, - "j.noCloneChecked": 1, - "h.cloneNode": 1, - "f.disabled": 1, - "j.optDisabled": 1, - "g.disabled": 1, - "j.deleteExpando": 1, - "a.fireEvent": 1, - "j.noCloneEvent": 1, - "a.detachEvent": 1, - "h.setAttribute": 2, - "j.radioValue": 1, - "c.createDocumentFragment": 1, - "k.appendChild": 1, - "j.checkClone": 1, - "k.cloneNode": 1, - "a.style.width": 1, - "a.style.paddingLeft": 1, - "visibility": 3, - "background": 56, - "l.style": 1, - "l.appendChild": 1, - "j.appendChecked": 1, - "j.boxModel": 1, - "a.style": 8, - "a.style.display": 3, - "a.style.zoom": 1, - "j.inlineBlockNeedsLayout": 1, - "j.shrinkWrapBlocks": 1, - ".offsetHeight": 4, - "j.reliableHiddenOffsets": 1, - "c.defaultView": 2, - "c.defaultView.getComputedStyle": 3, - "i.style.width": 1, - "i.style.marginRight": 1, - "j.reliableMarginRight": 1, - "parseInt": 12, - "marginRight": 2, - ".marginRight": 2, - "l.innerHTML": 1, - "f.boxModel": 1, - "f.support.boxModel": 4, - "uuid": 2, - "f.fn.jquery": 1, - "Math.random": 2, - "D/g": 2, - "hasData": 2, - "f.cache": 5, - "f.acceptData": 4, - "f.uuid": 1, - "f.noop": 4, - "f.camelCase": 5, - ".events": 1, - "f.support.deleteExpando": 3, - "f.noData": 2, - "f.fn.extend": 9, - "g.indexOf": 2, - "g.substring": 1, - "b.triggerHandler": 2, - "_mark": 2, - "_unmark": 3, - "f.makeArray": 5, - "e.push": 3, - "f.queue": 3, - "c.shift": 2, - "c.unshift": 1, - "f.dequeue": 4, - "f.fx": 2, - "f.fx.speeds": 1, - "d.resolveWith": 1, - "f.Deferred": 2, - "f._Deferred": 2, - "l.done": 1, - "d.promise": 1, - "rea": 1, - "autofocus": 1, - "autoplay": 1, - "controls": 1, - "defer": 1, - "required": 1, - "scoped": 1, - "f.access": 3, - "f.attr": 2, - "f.removeAttr": 3, - "f.prop": 2, - "removeProp": 1, - "f.propFix": 6, - "c.addClass": 1, - "f.trim": 2, - "c.removeClass": 1, - "g.nodeType": 6, - "g.className": 4, - "h.replace": 2, - "d.toggleClass": 1, - "d.attr": 1, - "h.hasClass": 1, - "": 1, - "f.valHooks": 7, - "e.nodeName.toLowerCase": 1, - "c.get": 1, - "e.value": 1, - "e.val": 1, - "f.map": 5, - "this.nodeName.toLowerCase": 1, - "this.type": 3, - "c.set": 1, - "valHooks": 1, - "a.attributes.value": 1, - "a.text": 1, - "a.selectedIndex": 3, - "a.options": 2, - "": 3, - "optDisabled": 1, - "selected=": 1, - "attrFix": 1, - "f.attrFn": 3, - "f.isXMLDoc": 4, - "f.attrFix": 3, - "f.attrHooks": 5, - "t.test": 2, - "d.toLowerCase": 1, - "c.toLowerCase": 4, - "u.test": 1, - "i.set": 1, - "i.get": 1, - "f.support.getSetAttribute": 2, - "a.removeAttributeNode": 1, - "q.test": 1, - "f.support.radioValue": 1, - "c.specified": 1, - "c.value": 1, - "r.test": 1, - "s.test": 1, - "propFix": 1, - "cellpadding": 1, - "contenteditable": 1, - "f.propHooks": 1, - "h.set": 1, - "h.get": 1, - "propHooks": 1, - "f.attrHooks.value": 1, - "v.get": 1, - "f.attrHooks.name": 1, - "f.valHooks.button": 1, - "d.nodeValue": 3, - "f.support.hrefNormalized": 1, - "f.support.style": 1, - "f.attrHooks.style": 1, - "a.style.cssText.toLowerCase": 1, - "f.support.optSelected": 1, - "f.propHooks.selected": 2, - "b.parentNode.selectedIndex": 1, - "f.support.checkOn": 1, - "f.inArray": 4, - "s.": 1, - "f.event": 2, - "d.handler": 1, - "g.handler": 1, - "d.guid": 4, - "f.guid": 3, - "i.events": 2, - "i.handle": 2, - "f.event.triggered": 3, - "f.event.handle.apply": 1, - "k.elem": 2, - "c.split": 2, - "l.indexOf": 1, - "l.split": 1, - "n.shift": 1, - "h.namespace": 2, - "n.slice": 1, - "h.type": 1, - "h.guid": 2, - "f.event.special": 5, - "p.setup": 1, - "p.setup.call": 1, - "p.add": 1, - "p.add.call": 1, - "h.handler.guid": 2, - "o.push": 1, - "f.event.global": 2, - "remove": 9, - "s.events": 1, - "c.type": 9, - "c.handler": 1, - "c.charAt": 1, - "f.event.remove": 5, - "h.indexOf": 3, - "h.split": 2, - "m.shift": 1, - "m.slice": 1, - "q.namespace": 1, - "q.handler": 1, - "p.splice": 1, - "": 1, - "u=": 12, - "elem=": 4, - "customEvent": 1, - "trigger": 4, - "h.slice": 1, - "i.shift": 1, - "i.sort": 1, - "f.event.customEvent": 1, - "f.Event": 2, - "c.exclusive": 2, - "c.namespace": 2, - "i.join": 2, - "c.namespace_re": 1, - "c.preventDefault": 3, - "c.stopPropagation": 1, - "b.events": 4, - "f.event.trigger": 6, - "b.handle.elem": 2, - "c.result": 3, - "c.target": 3, - "do": 15, - "c.currentTarget": 2, - "m.apply": 1, - "k.parentNode": 1, - "k.ownerDocument": 1, - "c.target.ownerDocument": 1, - "c.isPropagationStopped": 1, - "c.isDefaultPrevented": 2, - "o._default": 1, - "o._default.call": 1, - "e.ownerDocument": 1, - "f.event.fix": 2, - "a.event": 1, - "Array.prototype.slice.call": 1, - "namespace_re": 1, - "namespace": 1, - "handler=": 1, - "data=": 2, - "handleObj=": 1, - "result=": 1, - "preventDefault": 4, - "stopPropagation": 5, - "isImmediatePropagationStopped": 2, - "props": 21, - "split": 4, - "fix": 1, - "Event": 3, - "target=": 2, - "relatedTarget=": 1, - "fromElement=": 1, - "pageX=": 2, - "scrollLeft": 2, - "clientLeft": 2, - "pageY=": 1, - "scrollTop": 2, - "clientTop": 2, - "which=": 3, - "metaKey=": 1, - "2": 66, - "3": 13, - "4": 4, - "1e8": 1, - "special": 3, - "setup": 5, - "teardown": 6, - "origType": 2, - "beforeunload": 1, - "onbeforeunload=": 3, - "removeEvent=": 1, - "removeEventListener": 3, - "detachEvent": 2, - "Event=": 1, - "originalEvent=": 1, - "type=": 5, - "isDefaultPrevented=": 2, - "defaultPrevented": 1, - "returnValue=": 2, - "getPreventDefault": 2, - "timeStamp=": 1, - "prototype=": 2, - "originalEvent": 2, - "isPropagationStopped=": 1, - "cancelBubble=": 1, - "stopImmediatePropagation": 1, - "isImmediatePropagationStopped=": 1, - "isDefaultPrevented": 1, - "isPropagationStopped": 1, - "G=": 1, - "H=": 1, - "submit=": 1, - "specialSubmit": 3, - "closest": 3, - "keyCode=": 1, - "J=": 1, - "selectedIndex": 1, - "a.selected": 1, - "z.test": 3, - "d.readOnly": 1, - "c.liveFired": 1, - "f.event.special.change": 1, - "filters": 1, - "beforedeactivate": 1, - "K.call": 2, - "a.keyCode": 2, - "beforeactivate": 1, - "f.event.add": 2, - "f.event.special.change.filters": 1, - "I.focus": 1, - "I.beforeactivate": 1, - "f.support.focusinBubbles": 1, - "c.originalEvent": 1, - "a.preventDefault": 3, - "f.fn": 9, - "e.apply": 1, - "this.one": 1, - "unbind": 2, - "this.unbind": 2, - "delegate": 1, - "this.live": 1, - "undelegate": 1, - "this.die": 1, - "triggerHandler": 1, - "%": 26, - ".guid": 1, - "this.click": 1, - "this.mouseenter": 1, - ".mouseleave": 1, - "g.charAt": 1, - "n.unbind": 1, - "y.exec": 1, - "a.push": 2, - "n.length": 1, - "": 1, - "this.bind": 2, - "": 2, - "sizcache=": 4, - "sizset": 2, - "sizset=": 2, - "toLowerCase": 3, - "d.nodeType": 5, - "k.isXML": 4, - "a.exec": 2, - "x.push": 1, - "x.length": 8, - "m.exec": 1, - "l.relative": 6, - "x.shift": 4, - "l.match.ID.test": 2, - "q.expr": 4, - "q.set": 4, - "x.pop": 4, - "d.parentNode": 4, - "e.call": 1, - "f.push.apply": 1, - "k.contains": 5, - "a.sort": 1, - "": 1, - "matches=": 1, - "matchesSelector=": 1, - "l.order.length": 1, - "l.order": 1, - "l.leftMatch": 1, - "j.substr": 1, - "": 1, - "__sizzle__": 1, - "sizzle": 1, - "l.match.PSEUDO.test": 1, - "a.document.nodeType": 1, - "a.getElementsByClassName": 3, - "a.lastChild.className": 1, - "l.order.splice": 1, - "l.find.CLASS": 1, - "b.getElementsByClassName": 2, - "c.documentElement.contains": 1, - "a.contains": 2, - "c.documentElement.compareDocumentPosition": 1, - "a.compareDocumentPosition": 1, - "a.ownerDocument": 1, - ".documentElement": 1, - "b.nodeName": 2, - "l.match.PSEUDO.exec": 1, - "l.match.PSEUDO": 1, - "f.expr": 4, - "k.selectors": 1, - "f.expr.filters": 3, - "f.unique": 4, - "f.text": 2, - "k.getText": 1, - "/Until": 1, - "parents": 2, - "prevUntil": 2, - "prevAll": 2, - "U": 1, - "f.expr.match.POS": 1, - "V": 2, - "children": 3, - "contents": 4, - "next": 9, - "prev": 2, - ".filter": 2, - "": 1, - "e.splice": 1, - "this.filter": 2, - "": 1, - "": 1, - ".is": 2, - "c.push": 3, - "g.parentNode": 2, - "U.test": 1, - "": 1, - "f.find.matchesSelector": 2, - "g.ownerDocument": 1, - "this.parent": 2, - ".children": 1, - "a.jquery": 2, - "f.merge": 2, - "this.get": 1, - "andSelf": 1, - "this.add": 1, - "f.dir": 6, - "parentsUntil": 1, - "f.nth": 2, - "nextAll": 1, - "nextUntil": 1, - "siblings": 1, - "f.sibling": 2, - "a.parentNode.firstChild": 1, - "a.contentDocument": 1, - "a.contentWindow.document": 1, - "a.childNodes": 1, - "T.call": 1, - "P.test": 1, - "f.filter": 2, - "R.test": 1, - "Q.test": 1, - "e.reverse": 1, - "g.join": 1, - "f.find.matches": 1, - "dir": 1, - "sibling": 1, - "a.nextSibling": 1, - "<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:]+)[^>": 1, - "/ig": 3, - "tbody/i": 1, - "bc": 1, - "bd": 1, - "/checked": 1, - "s*.checked.": 1, - "java": 1, - "ecma": 1, - "script/i": 1, - "CDATA": 1, - "bg": 3, - "legend": 1, - "thead": 2, - "tr": 23, - "td": 3, - "col": 7, - "_default": 5, - "bg.optgroup": 1, - "bg.option": 1, - "bg.tbody": 1, - "bg.tfoot": 1, - "bg.colgroup": 1, - "bg.caption": 1, - "bg.thead": 1, - "bg.th": 1, - "bg.td": 1, - "f.support.htmlSerialize": 1, - "bg._default": 2, - "c.text": 2, - "this.empty": 3, - ".append": 6, - ".createTextNode": 1, - "wrapAll": 1, - ".wrapAll": 2, - ".eq": 1, - ".clone": 1, - "b.map": 1, - "wrapInner": 1, - ".wrapInner": 1, - "b.contents": 1, - "c.wrapAll": 1, - "b.append": 1, - "wrap": 2, - "unwrap": 1, - ".replaceWith": 1, - "this.childNodes": 1, - ".end": 1, - "append": 1, - "this.domManip": 4, - "this.appendChild": 1, - "prepend": 1, - "this.insertBefore": 1, - "this.firstChild": 1, - "this.parentNode.insertBefore": 2, - "a.push.apply": 2, - "this.nextSibling": 2, - ".toArray": 1, - "f.cleanData": 4, - "d.parentNode.removeChild": 1, - "b.getElementsByTagName": 1, - "this.map": 3, - "f.clone": 2, - ".innerHTML.replace": 1, - "bc.test": 2, - "f.support.leadingWhitespace": 2, - "Z.test": 2, - "_.exec": 2, - ".getElementsByTagName": 2, - ".innerHTML": 3, - "c.html": 3, - "replaceWith": 1, - "c.replaceWith": 1, - ".detach": 1, - "this.parentNode": 1, - ".remove": 2, - ".before": 1, - "detach": 1, - "this.remove": 1, - "domManip": 1, - "f.support.checkClone": 2, - "bd.test": 2, - ".domManip": 1, - "g.html": 1, - "g.domManip": 1, - "j.parentNode": 1, - "f.support.parentNode": 1, - "i.nodeType": 1, - "i.childNodes.length": 1, - "f.buildFragment": 2, - "e.fragment": 1, - "h.childNodes.length": 1, - "h.firstChild": 2, - "": 1, - "k.length": 2, - ".charAt": 1, - "f.fragments": 3, - "i.createDocumentFragment": 1, - "f.clean": 1, - "appendTo": 1, - "prependTo": 1, - "insertBefore": 1, - "insertAfter": 1, - "replaceAll": 1, - "g.childNodes.length": 1, - "this.clone": 1, - ".get": 3, - "d.concat": 1, - "e.selector": 1, - "f.support.noCloneEvent": 1, - "f.support.noCloneChecked": 1, - "b.createElement": 2, - "b.createTextNode": 2, - "k.replace": 2, - "o.innerHTML": 1, - "o.lastChild": 1, - "f.support.tbody": 1, - "ba.test": 1, - "o.firstChild": 2, - "o.firstChild.childNodes": 1, - "o.childNodes": 2, - "q.length": 1, - ".childNodes.length": 1, - ".parentNode.removeChild": 2, - "o.insertBefore": 1, - "Z.exec": 1, - "f.support.appendChecked": 1, - "k.nodeType": 1, - "h.push": 1, - "be.test": 1, - ".type.toLowerCase": 1, - "h.splice.apply": 1, - ".concat": 3, - "cleanData": 1, - "j.nodeName": 1, - "j.nodeName.toLowerCase": 1, - "f.removeEvent": 1, - "b.handle": 2, - "j.removeAttribute": 2, - "bo": 2, - "/alpha": 1, - "bp": 1, - "/opacity": 1, - "bq": 2, - "br": 19, - "ms": 2, - "bs": 2, - "bt": 42, - "bu": 11, - "bv": 2, - "de": 1, - "bw": 2, - "bz": 7, - "bA": 3, - "bB": 5, - "bC": 2, - "f.fn.css": 1, - "f.style": 4, - "cssHooks": 1, - "a.style.opacity": 2, - "cssNumber": 3, - "zIndex": 1, - "fontWeight": 1, - "zoom": 1, - "lineHeight": 1, - "widows": 1, - "orphans": 1, - "cssProps": 1, - "f.support.cssFloat": 1, - "f.cssHooks": 3, - "f.cssProps": 2, - "k.get": 1, - "bu.test": 1, - "d.replace": 1, - "f.cssNumber": 1, - "k.set": 1, - "g.get": 1, - "swap": 1, - "f.curCSS": 1, - "f.swap": 2, - "<0||e==null){e=a.style[b];return>": 1, - "0px": 1, - "f.support.opacity": 1, - "f.cssHooks.opacity": 1, - "bp.test": 1, - "a.currentStyle": 4, - "a.currentStyle.filter": 1, - "a.style.filter": 1, - "RegExp.": 1, - "c.zoom": 1, - "b*100": 1, - "d.filter": 1, - "c.filter": 2, - "bo.test": 1, - "g.replace": 1, - "f.support.reliableMarginRight": 1, - "f.cssHooks.marginRight": 1, - "a.style.marginRight": 1, - "a.ownerDocument.defaultView": 1, - "e.getComputedStyle": 1, - "g.getPropertyValue": 1, - "a.ownerDocument.documentElement": 1, - "c.documentElement.currentStyle": 1, - "a.runtimeStyle": 2, - "bs.test": 1, - "bt.test": 1, - "f.left": 3, - "a.runtimeStyle.left": 2, - "a.currentStyle.left": 1, - "f.pixelLeft": 1, - "f.expr.filters.hidden": 2, - "f.support.reliableHiddenOffsets": 1, - "f.expr.filters.visible": 1, - "bE": 2, - "bF": 1, - "bG": 3, - "n/g": 1, - "bH": 2, - "/#.*": 1, - "bI": 1, - "/mg": 1, - "bJ": 1, - "color": 4, - "date": 1, - "datetime": 1, - "email": 2, - "month": 1, - "range": 2, - "search": 5, - "tel": 2, - "time": 1, - "week": 1, - "bK": 1, - "about": 1, - "storage": 1, - "extension": 1, - "widget": 1, - "bL": 1, - "GET": 1, - "bM": 2, - "bN": 2, - "bO": 2, - "<\\/script>": 2, - "/gi": 2, - "bP": 1, - "bR": 2, - "*/": 2, - "bS": 1, - "bT": 2, - "f.fn.load": 1, - "bV": 3, - "bW": 5, - "bX": 8, - "e.href": 1, - "bY": 1, - "bW.href": 2, - "bS.exec": 1, - "bW.toLowerCase": 1, - "bT.apply": 1, - "a.slice": 2, - "f.param": 2, - "f.ajaxSettings.traditional": 2, - "complete": 6, - "a.responseText": 1, - "a.isResolved": 1, - "a.done": 1, - "i.html": 1, - "i.each": 1, - "serialize": 1, - "this.serializeArray": 1, - "serializeArray": 1, - "this.elements": 2, - "this.disabled": 1, - "this.checked": 1, - "bP.test": 1, - "bJ.test": 1, - ".map": 1, - "b.name": 2, - "success": 2, - "getScript": 1, - "f.get": 2, - "getJSON": 1, - "ajaxSetup": 1, - "f.ajaxSettings": 4, - "ajaxSettings": 1, - "isLocal": 1, - "bK.test": 1, - "contentType": 4, - "processData": 3, - "accepts": 5, - "xml": 3, - "json": 2, - "/xml/": 1, - "/html/": 1, - "/json/": 1, - "responseFields": 1, - "converters": 2, - "a.String": 1, - "f.parseXML": 1, - "ajaxPrefilter": 1, - "ajaxTransport": 1, - "ajax": 2, - "clearTimeout": 2, - "v.readyState": 1, - "d.ifModified": 1, - "v.getResponseHeader": 2, - "f.lastModified": 1, - "f.etag": 1, - "v.status": 1, - "v.statusText": 1, - "h.resolveWith": 1, - "h.rejectWith": 1, - "v.statusCode": 2, - "g.trigger": 2, - "i.resolveWith": 1, - "f.active": 1, - "f.ajaxSetup": 3, - "d.statusCode": 1, - "readyState": 1, - "setRequestHeader": 6, - "getAllResponseHeaders": 1, - "getResponseHeader": 1, - "bI.exec": 1, - "overrideMimeType": 1, - "d.mimeType": 1, - "abort": 4, - "p.abort": 1, - "h.promise": 1, - "v.success": 1, - "v.done": 1, - "v.error": 1, - "v.fail": 1, - "v.complete": 1, - "i.done": 1, - "<2)for(b>": 1, - "url=": 1, - "dataTypes=": 1, - "crossDomain=": 2, - "exec": 8, - "80": 2, - "443": 2, - "param": 3, - "traditional": 1, - "s=": 12, - "t=": 19, - "toUpperCase": 1, - "hasContent=": 1, - "active": 2, - "ajaxStart": 1, - "hasContent": 2, - "cache=": 1, - "x=": 1, - "y=": 5, - "1_=": 1, - "_=": 1, - "Content": 1, - "Type": 1, - "ifModified": 1, - "lastModified": 3, - "Modified": 1, - "etag": 3, - "None": 1, - "Accept": 1, - "dataTypes": 4, - "q=": 1, - "01": 1, - "beforeSend": 2, - "p=": 5, - "No": 1, - "Transport": 1, - "readyState=": 1, - "ajaxSend": 1, - "v.abort": 1, - "d.timeout": 1, - "p.send": 1, - "encodeURIComponent": 2, - "f.isPlainObject": 1, - "d.join": 1, - "cc": 2, - "cd": 3, - "jsonp": 1, - "jsonpCallback": 1, - "f.ajaxPrefilter": 2, - "b.contentType": 1, - "b.data": 5, - "b.dataTypes": 2, - "b.jsonp": 3, - "cd.test": 2, - "b.url": 4, - "b.jsonpCallback": 4, - "d.always": 1, - "b.converters": 1, - "/javascript": 1, - "ecmascript/": 1, - "a.cache": 2, - "a.crossDomain": 2, - "a.global": 1, - "f.ajaxTransport": 2, - "c.head": 1, - "c.getElementsByTagName": 1, - "send": 2, - "d.async": 1, - "a.scriptCharset": 2, - "d.charset": 1, - "d.src": 1, - "a.url": 1, - "d.onload": 3, - "d.onreadystatechange": 2, - "d.readyState": 2, - "/loaded": 1, - "complete/.test": 1, - "e.removeChild": 1, - "e.insertBefore": 1, - "e.firstChild": 1, - "ce": 6, - "cg": 7, - "cf": 7, - "f.ajaxSettings.xhr": 2, - "this.isLocal": 1, - "cors": 1, - "f.support.ajax": 1, - "c.crossDomain": 3, - "f.support.cors": 1, - "c.xhr": 1, - "c.username": 2, - "h.open": 2, - "c.url": 2, - "c.password": 1, - "c.xhrFields": 3, - "c.mimeType": 2, - "h.overrideMimeType": 2, - "h.setRequestHeader": 1, - "h.send": 1, - "c.hasContent": 1, - "h.readyState": 3, - "h.onreadystatechange": 2, - "h.abort": 1, - "h.status": 1, - "h.getAllResponseHeaders": 1, - "h.responseXML": 1, - "n.documentElement": 1, - "m.xml": 1, - "m.text": 2, - "h.responseText": 1, - "h.statusText": 1, - "c.isLocal": 1, - ".unload": 1, - "cm": 2, - "cn": 1, - "co": 5, - "cp": 1, - "cr": 20, - "a.webkitRequestAnimationFrame": 1, - "a.mozRequestAnimationFrame": 1, - "a.oRequestAnimationFrame": 1, - "this.animate": 2, - "d.style": 3, - ".style": 1, - "": 1, - "_toggle": 2, - "animate": 4, - "fadeTo": 1, - "queue=": 2, - "animatedProperties=": 1, - "animatedProperties": 2, - "specialEasing": 2, - "easing": 3, - "swing": 2, - "overflow=": 2, - "overflow": 2, - "overflowX": 1, - "overflowY": 1, - "float": 3, - "display=": 3, - "zoom=": 1, - "fx": 10, - "l=": 10, - "m=": 2, - "custom": 5, - "stop": 7, - "timers": 3, - "slideDown": 1, - "slideUp": 1, - "slideToggle": 1, - "fadeIn": 1, - "fadeOut": 1, - "fadeToggle": 1, - "duration": 4, - "duration=": 2, - "off": 1, - "speeds": 4, - "old=": 1, - "complete=": 1, - "old": 2, - "linear": 1, - "Math": 51, - "cos": 1, - "PI": 54, - "5": 23, - "options=": 1, - "prop=": 3, - "orig=": 1, - "orig": 3, - "step": 7, - "startTime=": 1, - "start=": 1, - "end=": 1, - "unit=": 1, - "unit": 1, - "now=": 1, - "pos=": 1, - "state=": 1, - "co=": 2, - "tick": 3, - "interval": 3, - "show=": 1, - "hide=": 1, - "e.duration": 3, - "this.startTime": 2, - "this.now": 3, - "this.end": 2, - "this.pos": 4, - "this.state": 3, - "this.update": 2, - "e.animatedProperties": 5, - "this.prop": 2, - "e.overflow": 2, - "f.support.shrinkWrapBlocks": 1, - "e.hide": 2, - ".hide": 2, - "e.show": 1, - "e.orig": 1, - "e.complete.call": 1, - "Infinity": 1, - "h/e.duration": 1, - "f.easing": 1, - "this.start": 2, - "*this.pos": 1, - "f.timers": 2, - "a.splice": 1, - "f.fx.stop": 1, - "clearInterval": 6, - "slow": 1, - "fast": 1, - "a.elem": 2, - "a.now": 4, - "a.elem.style": 3, - "a.prop": 5, - "Math.max": 10, - "a.unit": 1, - "f.expr.filters.animated": 1, - "b.elem": 1, - "cw": 1, - "able": 1, - "cx": 2, - "f.fn.offset": 2, - "f.offset.setOffset": 2, - "b.ownerDocument.body": 2, - "f.offset.bodyOffset": 2, - "b.getBoundingClientRect": 1, - "e.documentElement": 4, - "c.top": 4, - "c.left": 4, - "e.body": 3, - "g.clientTop": 1, - "h.clientTop": 1, - "g.clientLeft": 1, - "h.clientLeft": 1, - "i.pageYOffset": 1, - "g.scrollTop": 1, - "h.scrollTop": 2, - "i.pageXOffset": 1, - "g.scrollLeft": 1, - "h.scrollLeft": 2, - "f.offset.initialize": 3, - "b.offsetParent": 2, - "g.documentElement": 1, - "g.body": 1, - "g.defaultView": 1, - "j.getComputedStyle": 2, - "b.currentStyle": 2, - "b.offsetTop": 2, - "b.offsetLeft": 2, - "f.offset.supportsFixedPosition": 2, - "k.position": 4, - "b.scrollTop": 1, - "b.scrollLeft": 1, - "f.offset.doesNotAddBorder": 1, - "f.offset.doesAddBorderForTableAndCells": 1, - "cw.test": 1, - "c.borderTopWidth": 2, - "c.borderLeftWidth": 2, - "f.offset.subtractsBorderForOverflowNotVisible": 1, - "c.overflow": 1, - "i.offsetTop": 1, - "i.offsetLeft": 1, - "i.scrollTop": 1, - "i.scrollLeft": 1, - "f.offset": 1, - "initialize": 3, - "b.style": 1, - "d.nextSibling.firstChild.firstChild": 1, - "this.doesNotAddBorder": 1, - "e.offsetTop": 4, - "this.doesAddBorderForTableAndCells": 1, - "h.offsetTop": 1, - "e.style.position": 2, - "e.style.top": 2, - "this.supportsFixedPosition": 1, - "d.style.overflow": 1, - "d.style.position": 1, - "this.subtractsBorderForOverflowNotVisible": 1, - "this.doesNotIncludeMarginInBodyOffset": 1, - "a.offsetTop": 2, - "bodyOffset": 1, - "a.offsetLeft": 1, - "f.offset.doesNotIncludeMarginInBodyOffset": 1, - "setOffset": 1, - "a.style.position": 1, - "e.offset": 1, - "e.position": 1, - "l.top": 1, - "l.left": 1, - "b.top": 2, - "k.top": 1, - "g.top": 1, - "b.left": 2, - "k.left": 1, - "g.left": 1, - "b.using.call": 1, - "e.css": 1, - "this.offsetParent": 2, - "this.offset": 2, - "cx.test": 2, - "b.offset": 1, - "d.top": 2, - "d.left": 2, - "offsetParent": 1, - "a.offsetParent": 1, - "g.document.documentElement": 1, - "g.document.body": 1, - "g.scrollTo": 1, - ".scrollLeft": 1, - ".scrollTop": 1, - "e.document.documentElement": 1, - "e.document.compatMode": 1, - "e.document.body": 1, - "this.css": 1, - "Prioritize": 1, - "": 1, - "XSS": 1, - "location.hash": 1, - "#9521": 1, - "Matches": 1, - "dashed": 1, - "camelizing": 1, - "rdashAlpha": 1, - "rmsPrefix": 1, - "fcamelCase": 1, - "letter": 3, - "readyList.fireWith": 1, - ".off": 1, - "jQuery.Callbacks": 2, - "IE8": 2, - "exceptions": 2, - "#9897": 1, "elems": 9, + "fn": 14, + "value": 98, "chainable": 4, "emptyGet": 3, + "exec": 8, "bulk": 3, "elems.length": 1, "Sets": 3, "jQuery.access": 2, "Optionally": 1, + "get": 24, "executed": 1, "Bulk": 1, "operations": 1, "iterate": 1, "executing": 1, "exec.call": 1, + "Otherwise": 2, "they": 2, "run": 1, "against": 1, "entire": 1, + "set": 22, "fn.call": 2, "value.call": 1, "Gets": 2, + "now": 5, + "Date": 4, + ".getTime": 3, "frowned": 1, "upon.": 1, "More": 1, + "http": 6, "//docs.jquery.com/Utilities/jQuery.browser": 1, + "uaMatch": 3, "ua": 6, "ua.toLowerCase": 1, "rwebkit.exec": 1, @@ -31103,6 +28620,7 @@ "rmsie.exec": 1, "ua.indexOf": 1, "rmozilla.exec": 1, + "sub": 4, "jQuerySub": 7, "jQuerySub.fn.init": 2, "jQuerySub.superclass": 1, @@ -31110,96 +28628,172 @@ "jQuerySub.prototype": 1, "jQuerySub.fn.constructor": 1, "jQuerySub.sub": 1, + "this.sub": 2, "jQuery.fn.init.call": 1, "rootjQuerySub": 2, "jQuerySub.fn.init.prototype": 1, + "jQuery.each": 2, + ".split": 19, + "name.toLowerCase": 6, "jQuery.uaMatch": 1, "browserMatch.browser": 2, "jQuery.browser.version": 1, "browserMatch.version": 1, "jQuery.browser.webkit": 1, "jQuery.browser.safari": 1, + "rnotwhite.test": 2, + "xA0": 7, + "document.removeEventListener": 2, + "document.detachEvent": 2, + "trick": 2, + "Diego": 2, + "Perini": 2, + "//javascript.nwbox.com/IEContentLoaded/": 2, + "waiting": 2, "flagsCache": 3, "createFlags": 2, "flags": 13, "flags.split": 1, "flags.length": 1, "Convert": 1, + "from": 7, + "String": 2, "formatted": 2, + "cache": 45, + "first": 10, "Actual": 2, + "list": 21, "Stack": 1, "fire": 4, "calls": 1, "repeatable": 1, "lists": 2, "stack": 2, + "Last": 2, "forgettable": 1, "memory": 8, "Flag": 2, + "know": 3, "First": 3, + "internally": 5, "fireWith": 1, "firingStart": 3, "End": 1, "firingLength": 4, "Index": 1, + "needed": 2, "firingIndex": 5, + "Add": 4, "several": 1, + "callbacks": 10, "actual": 1, + "args.length": 3, "Inspect": 1, "recursively": 1, + "unique": 2, "mode": 1, "flags.unique": 1, "self.has": 1, "list.push": 1, "Fire": 1, "flags.memory": 1, + "list.length": 5, "flags.stopOnFalse": 1, "Mark": 1, "halted": 1, + "break": 111, "flags.once": 1, "stack.length": 1, "stack.shift": 1, "self.fireWith": 1, "self.disable": 1, "Callbacks": 1, - "collection": 3, + "self": 17, "Do": 2, - "current": 7, "batch": 2, "With": 1, "/a": 1, + "top": 12, + "px": 31, + "float": 3, + "left": 14, + "opacity": 13, ".55": 1, + "checkbox": 14, "basic": 1, + "test": 21, "all.length": 1, "supports": 2, + "tests": 48, + "select": 20, + "opt": 2, "select.appendChild": 1, + "input": 26, + "div.getElementsByTagName": 6, "strips": 1, "leading": 1, + ".innerHTML": 3, + "leadingWhitespace": 3, "div.firstChild.nodeType": 1, + "tbody": 7, + "elements": 9, "manipulated": 1, "normalizes": 1, + "default": 21, + "hrefNormalized": 3, + "a.getAttribute": 11, + "uses": 3, + "filter": 10, + "instead": 6, "around": 1, + "WebKit": 9, "issue.": 1, "#5145": 1, + "/.test": 19, + "a.style.opacity": 2, + "style": 30, "existence": 1, "styleFloat": 1, + "cssFloat": 4, "a.style.cssFloat": 1, "defaults": 3, + "checkOn": 4, + "input.value": 5, + "selected": 5, + "option": 12, "working": 1, "property.": 1, "too": 1, "marked": 1, + "disabled": 11, "marks": 1, + "them": 3, "select.disabled": 1, "support.optDisabled": 1, "opt.disabled": 1, + "Test": 3, "handlers": 1, + "does": 9, "support.noCloneEvent": 1, "div.cloneNode": 1, + ".fireEvent": 3, + "radio": 17, "maintains": 1, + "its": 2, + "being": 2, + "appended": 2, + "input.setAttribute": 5, + "support.radioValue": 2, "#11217": 1, "loses": 1, + "checked": 4, + "attribute": 5, + "div.appendChild": 4, + "document.createDocumentFragment": 3, + "fragment.appendChild": 2, "div.lastChild": 1, + "doesn": 2, + "have": 6, "conMarginTop": 3, "paddingMarginBorder": 5, "positionTopLeftWidthHeight": 3, @@ -31209,41 +28803,73 @@ "body.insertBefore": 1, "body.firstChild": 1, "Construct": 1, + "div": 28, "container.appendChild": 1, + "table": 6, "cells": 3, "still": 4, "offsetWidth/Height": 3, + "display": 7, + "none": 4, + "other": 3, "visible": 1, "row": 1, "reliable": 1, + "determining": 3, + "been": 5, + "hidden": 12, + "directly": 2, + "using": 5, "offsets": 1, + "don": 5, "safety": 1, "goggles": 1, + "bug": 3, "#4512": 1, + "more": 6, + "information": 5, "fails": 2, + "div.innerHTML": 7, + "tds": 6, + "isSupported": 7, + ".offsetHeight": 4, + ".style.display": 5, + "empty": 3, + "fail": 10, "support.reliableHiddenOffsets": 1, "explicit": 1, + "width": 32, + "margin": 8, "right": 3, "incorrectly": 1, "computed": 1, "based": 1, "container.": 1, + "info": 2, "#3333": 1, + "Fails": 2, "Feb": 1, "Bug": 1, "getComputedStyle": 3, "returns": 1, "wrong": 1, "window.getComputedStyle": 6, + "marginDiv": 5, "marginDiv.style.width": 1, "marginDiv.style.marginRight": 1, "div.style.width": 2, "support.reliableMarginRight": 1, + "parseInt": 12, + "marginRight": 2, + ".marginRight": 2, "div.style.zoom": 2, "natively": 1, "block": 4, + "level": 3, "act": 1, + "inline": 3, "setting": 2, + "their": 3, "giving": 1, "layout": 2, "div.style.padding": 1, @@ -31253,9 +28879,15 @@ "support.inlineBlockNeedsLayout": 1, "div.offsetWidth": 2, "shrink": 1, + "wrap": 2, + "children": 3, "support.shrinkWrapBlocks": 1, "div.style.cssText": 1, + "outer": 2, + "div.firstChild": 3, + "inner": 2, "outer.firstChild": 1, + "td": 3, "outer.nextSibling.firstChild.firstChild": 1, "offsetSupport": 2, "doesNotAddBorder": 1, @@ -31266,7 +28898,9 @@ "inner.style.top": 2, "safari": 1, "subtracts": 1, + "border": 7, "here": 1, + "which": 8, "offsetSupport.fixedPosition": 1, "outer.style.overflow": 1, "outer.style.position": 1, @@ -31275,38 +28909,66 @@ "body.offsetTop": 1, "div.style.marginTop": 1, "support.pixelMargin": 1, + "marginTop": 3, ".marginTop": 1, "container.style.zoom": 2, "body.removeChild": 1, "rbrace": 1, + "rmultiDash": 3, + "Z": 6, "Please": 1, "caution": 1, + "uuid": 2, "Unique": 1, + "each": 17, "page": 1, + "Non": 3, + "digits": 3, "rinlinejQuery": 1, + "expando": 14, "jQuery.fn.jquery": 1, + "Math.random": 2, + "D/g": 2, "following": 1, "uncatchable": 1, "you": 1, "attempt": 2, "them.": 1, + "noData": 3, "Ban": 1, "except": 1, "Flash": 1, + "handle": 15, + "expandos": 2, + "hasData": 2, + "elem.nodeType": 8, + "jQuery.cache": 3, + "jQuery.expando": 12, + "isEmptyDataObject": 3, + "pvt": 8, "jQuery.acceptData": 2, "privateCache": 1, + "thisCache": 15, + "internalKey": 12, + "getByName": 3, + "We": 6, + "nodes": 14, + "JS": 7, "differently": 1, "because": 1, "IE6": 1, + "internal": 8, "order": 1, "collisions": 1, "between": 1, "user": 1, + "defined": 3, "data.": 1, "thisCache.data": 3, "Users": 1, "should": 1, "inspect": 1, + "jQuery.data": 15, "undocumented": 1, "subject": 1, "change.": 1, @@ -31316,20 +28978,30 @@ "No.": 1, "isEvents": 1, "privateCache.events": 1, + "both": 2, "converted": 2, "camel": 2, "names": 2, + "Try": 4, + "find": 7, "camelCased": 1, + "removeData": 8, "Reference": 1, + "isNode": 11, "entry": 1, "purpose": 1, "continuing": 1, + ".data": 3, "Support": 1, "space": 1, "separated": 1, + "keys": 11, "jQuery.isArray": 1, "manipulation": 1, + "split": 4, "cased": 1, + "spaces": 3, + "unless": 2, "name.split": 1, "name.length": 1, "want": 1, @@ -31340,267 +29012,188 @@ "care": 1, "Ensure": 1, "#10080": 1, + "jQuery.support.deleteExpando": 3, "cache.setInterval": 1, + "eliminate": 2, + "node": 23, + "lookups": 2, + "entries": 2, + "longer": 2, + "exist": 2, + "us": 2, + "nor": 2, + "removeAttribute": 3, + "Document": 2, + "these": 2, + "elem.removeAttribute": 6, + "only.": 2, + "_data": 3, + "acceptData": 3, + "elem.nodeName": 2, + "jQuery.noData": 2, + "elem.nodeName.toLowerCase": 2, + "elem.getAttribute": 7, + "parts": 28, "part": 8, "jQuery._data": 2, "elem.attributes": 1, + "attr.length": 2, + ".name": 3, + "name.indexOf": 2, + "name.substring": 2, + "dataAttr": 6, + "multiple": 7, + "this.each": 42, + "key.split": 2, + "this.triggerHandler": 6, + "fetch": 4, + "stored": 4, + "this.data": 5, "self.triggerHandler": 2, + "jQuery.removeData": 2, + "nothing": 2, + "found": 10, + "HTML5": 3, + "key.replace": 2, + ".toLowerCase": 7, "jQuery.isNumeric": 1, + "rbrace.test": 2, + "jQuery.parseJSON": 2, + "isn": 2, + "optgroup": 5, + "option.selected": 2, + "jQuery.support.optDisabled": 2, + "option.disabled": 2, + "option.getAttribute": 2, + "option.parentNode.disabled": 2, + "jQuery.nodeName": 3, + "option.parentNode": 2, + "Get": 4, + "specific": 2, + ".val": 5, + "get/set": 2, + "text": 14, + "comment": 3, + "nType": 8, + "jQuery.attrFn": 2, + "Fallback": 2, + "prop": 24, + "supported": 2, + "jQuery.prop": 2, + "notxml": 8, + "jQuery.isXMLDoc": 2, "All": 1, "lowercase": 1, "Grab": 1, "necessary": 1, "hook": 1, + "hooks": 14, + "jQuery.attrHooks": 2, + "rboolean.test": 4, + "boolHook": 3, "nodeHook": 1, + "jQuery.removeAttr": 2, + "hooks.set": 2, + "elem.setAttribute": 2, + "hooks.get": 2, + "existent": 2, + "normalize": 2, + "removeAttr": 5, + "propName": 8, "attrNames": 3, "isBool": 4, + "value.toLowerCase": 2, "rspace": 1, "attrNames.length": 1, + "jQuery.propFix": 2, "#9699": 1, "explanation": 1, "approach": 1, "removal": 1, + "do": 15, "#10870": 1, + "jQuery.attr": 2, + "getSetAttribute": 3, + "corresponding": 2, + "attrHooks": 3, + "changed": 3, + "button": 24, + "tabIndex": 4, + "readOnly": 2, + "htmlFor": 2, + "class": 5, + "className": 4, + "maxLength": 2, + "cellSpacing": 2, + "cellPadding": 2, + "rowSpan": 2, + "colSpan": 2, + "useMap": 2, + "frameBorder": 2, + "contentEditable": 2, + "tabindex": 4, + "height": 25, + "auto": 3, + "href": 9, + "encoding": 26, + "mouseenter": 9, + "mouseleave": 9, + "mouseover": 12, + "mouseout": 12, "**": 1, + "getData": 3, + "setData": 3, + "changeData": 3, + "click": 11, + "focus": 7, + "blur": 8, + "attrChange": 4, + "attrName": 4, + "relatedNode": 4, + "srcElement": 5, + "altKey": 4, + "bubbles": 4, + "cancelable": 4, + "ctrlKey": 6, + "currentTarget": 4, + "eventPhase": 4, + "metaKey": 5, + "relatedTarget": 6, + "shiftKey": 4, "timeStamp": 1, + "view": 4, "char": 2, + "charCode": 7, + "keyCode": 6, "buttons": 1, - "SHEBANG#!node": 2, - "http.createServer": 1, - "res.writeHead": 1, - "res.end": 1, - ".listen": 1, - "Date.prototype.toJSON": 2, - "isFinite": 1, - "this.valueOf": 2, - "this.getUTCFullYear": 1, - "this.getUTCMonth": 1, - "this.getUTCDate": 1, - "this.getUTCHours": 1, - "this.getUTCMinutes": 1, - "this.getUTCSeconds": 1, - "String.prototype.toJSON": 1, - "Number.prototype.toJSON": 1, - "Boolean.prototype.toJSON": 1, - "u0000": 1, - "u00ad": 1, - "u0600": 1, - "u0604": 1, - "u070f": 1, - "u17b4": 1, - "u17b5": 1, - "u200c": 1, - "u200f": 1, - "u2028": 3, - "u202f": 1, - "u2060": 1, - "u206f": 1, - "ufeff": 1, - "ufff0": 1, - "uffff": 1, - "escapable": 1, - "/bfnrt": 1, - "fA": 2, - "JSON.parse": 1, - "PUT": 1, - "DELETE": 1, - "_id": 1, - "ties": 1, - "collection.": 1, - "_removeReference": 1, - "model.collection": 2, - "model.unbind": 1, - "this._onModelEvent": 1, - "_onModelEvent": 1, - "ev": 5, - "this._remove": 1, - "model.idAttribute": 2, - "this._byId": 2, - "model.previous": 1, - "model.id": 1, - "this.trigger.apply": 2, - "_.each": 1, - "Backbone.Collection.prototype": 1, - "this.models": 1, - "_.toArray": 1, - "Backbone.Router": 1, - "options.routes": 2, - "this.routes": 4, - "this._bindRoutes": 1, - "this.initialize.apply": 2, - "namedParam": 2, - "splatParam": 2, - "escapeRegExp": 2, - "_.extend": 9, - "Backbone.Router.prototype": 1, - "Backbone.Events": 2, - "route": 18, - "Backbone.history": 2, - "Backbone.History": 2, - "_.isRegExp": 1, - "this._routeToRegExp": 1, - "Backbone.history.route": 1, - "_.bind": 2, - "this._extractParameters": 1, - "callback.apply": 1, - "navigate": 2, - "triggerRoute": 4, - "Backbone.history.navigate": 1, - "_bindRoutes": 1, - "routes": 4, - "routes.unshift": 1, - "routes.length": 1, - "this.route": 1, - "_routeToRegExp": 1, - "route.replace": 1, - "_extractParameters": 1, - "route.exec": 1, - "this.handlers": 2, - "_.bindAll": 1, - "hashStrip": 4, - "#*": 1, - "isExplorer": 1, - "/msie": 1, - "historyStarted": 3, - "Backbone.History.prototype": 1, - "getFragment": 1, - "forcePushState": 2, - "this._hasPushState": 6, - "window.location.pathname": 1, - "window.location.search": 1, - "fragment.indexOf": 1, - "this.options.root": 6, - "fragment.substr": 1, - "this.options.root.length": 1, - "window.location.hash": 3, - "fragment.replace": 1, - "this._wantsPushState": 3, - "this.options.pushState": 2, - "window.history": 2, - "window.history.pushState": 2, - "this.getFragment": 6, - "docMode": 3, - "document.documentMode": 3, - "oldIE": 3, - "isExplorer.exec": 1, - "navigator.userAgent.toLowerCase": 1, - "this.iframe": 4, - ".contentWindow": 1, - "this.navigate": 2, - ".bind": 3, - "this.checkUrl": 3, - "setInterval": 6, - "this.interval": 1, - "this.fragment": 13, - "loc": 2, - "atRoot": 3, - "loc.pathname": 1, - "loc.hash": 1, - "loc.hash.replace": 1, - "window.history.replaceState": 1, - "document.title": 2, - "loc.protocol": 2, - "loc.host": 2, - "this.loadUrl": 4, - "this.handlers.unshift": 1, - "checkUrl": 1, - "this.iframe.location.hash": 3, - "decodeURIComponent": 2, - "loadUrl": 1, - "fragmentOverride": 2, - "matched": 2, - "_.any": 1, - "handler.route.test": 1, - "handler.callback": 1, - "frag": 13, - "frag.indexOf": 1, - "this.iframe.document.open": 1, - ".close": 1, - "Backbone.View": 1, - "this.cid": 3, - "_.uniqueId": 1, - "this._configure": 1, - "this._ensureElement": 1, - "this.delegateEvents": 1, - "selectorDelegate": 2, - "this.el": 10, - "eventSplitter": 2, - "viewOptions": 2, - "Backbone.View.prototype": 1, - "tagName": 3, - "render": 1, - "el": 4, - ".attr": 1, - ".html": 1, - "delegateEvents": 1, - "this.events": 1, - "key.match": 1, - "_configure": 1, - "viewOptions.length": 1, - "_ensureElement": 1, - "attrs": 6, - "this.attributes": 1, - "this.id": 2, - "attrs.id": 1, - "this.make": 1, - "this.tagName": 1, - "_.isString": 1, - "protoProps": 6, - "classProps": 2, - "inherits": 2, - "child.extend": 1, - "this.extend": 1, - "Backbone.Model.extend": 1, - "Backbone.Collection.extend": 1, - "Backbone.Router.extend": 1, - "Backbone.View.extend": 1, - "methodMap": 2, - "Backbone.sync": 1, - "params": 2, - "params.url": 2, - "getUrl": 2, - "urlError": 2, - "params.data": 5, - "params.contentType": 2, - "model.toJSON": 1, - "Backbone.emulateJSON": 2, - "params.processData": 1, - "Backbone.emulateHTTP": 1, - "params.data._method": 1, - "params.type": 1, - "params.beforeSend": 1, - "xhr": 1, - "xhr.setRequestHeader": 1, - ".ajax": 1, - "staticProps": 3, - "protoProps.hasOwnProperty": 1, - "protoProps.constructor": 1, - "parent.apply": 1, - "child.prototype.constructor": 1, - "object.url": 4, - "_.isFunction": 1, - "wrapError": 1, - "onError": 3, - "resp": 3, - "model.trigger": 1, - "escapeHTML": 1, - "string.replace": 1, - "#x": 1, - "da": 1, - "": 1, - "lt": 55, - "#x27": 1, - "#x2F": 1, + "clientX": 6, + "clientY": 5, + "fromElement": 6, + "offsetX": 4, + "offsetY": 4, + "pageX": 4, + "pageY": 4, + "screenX": 4, + "screenY": 4, + "toElement": 5, + "focusin": 9, + "focusout": 11, + "form": 12, + "multiply": 1, + "x": 41, + "y": 109, "window.Modernizr": 1, "Modernizr": 12, "enableClasses": 3, "docElement": 1, + "document.documentElement": 2, "mod": 12, "modElem": 2, "mStyle": 2, "modElem.style": 1, "inputElem": 6, "smile": 4, + ".toString": 3, "prefixes": 2, "omPrefixes": 1, "cssomPrefixes": 2, @@ -31617,11 +29210,15 @@ "rule": 5, "testnames": 3, "fakeBody": 4, + "while": 53, "node.id": 1, + ".join": 14, "div.id": 1, "fakeBody.appendChild": 1, "//avoid": 1, "crashing": 1, + "background": 56, + "image": 5, "fakeBody.style.background": 1, "docElement.appendChild": 2, "fakeBody.parentNode.removeChild": 1, @@ -31639,13 +29236,17 @@ "element.setAttribute": 3, "element.removeAttribute": 2, "_hasOwnProperty": 2, + ".hasOwnProperty": 2, "hasOwnProperty": 5, "_hasOwnProperty.call": 2, "object.constructor.prototype": 1, "Function.prototype.bind": 2, + "bind": 3, + "TypeError": 2, "slice.call": 3, "F.prototype": 1, "target.prototype": 1, + "result": 12, "target.apply": 2, "args.concat": 2, "setCss": 7, @@ -31655,8 +29256,11 @@ "str1": 6, "str2": 4, "prefixes.join": 3, + "contains": 8, "substr": 2, + ".indexOf": 2, "testProps": 3, + "props": 21, "prefixed": 7, "testDOMProps": 2, "item": 4, @@ -31677,6 +29281,7 @@ "window.openDatabase": 1, "history.pushState": 1, "mStyle.backgroundColor": 3, + "url": 23, "mStyle.background": 1, ".style.textShadow": 1, "mStyle.opacity": 1, @@ -31690,6 +29295,7 @@ "document.styleSheets.length": 1, "cssText": 4, "style.cssRules": 3, + ".cssText": 2, "style.cssText": 1, "/src/i.test": 1, "cssText.indexOf": 1, @@ -31716,6 +29322,7 @@ "toString.call": 2, "/SVGClipPath/.test": 1, "webforms": 2, + "len": 11, "props.length": 2, "attrs.list": 2, "window.HTMLDataListElement": 1, @@ -31725,12 +29332,15 @@ "inputElem.type": 1, "inputElem.value": 2, "inputElem.style.cssText": 1, + "range": 2, "inputElem.style.WebkitAppearance": 1, "document.defaultView": 1, "defaultView.getComputedStyle": 2, ".WebkitAppearance": 1, "inputElem.offsetHeight": 1, "docElement.removeChild": 1, + "tel": 2, + "email": 2, "inputElem.checkValidity": 2, "feature": 12, "feature.toLowerCase": 2, @@ -31741,7 +29351,12 @@ "chaining.": 1, "window.html5": 2, "reSkip": 1, + "map": 7, + "textarea": 8, + "iframe": 3, + "/i": 22, "saveClones": 1, + "code": 2, "fieldset": 1, "h1": 5, "h2": 5, @@ -31752,14 +29367,22 @@ "img": 1, "label": 2, "li": 19, + "link": 2, "ol": 1, + "p": 110, + "param": 3, + "q": 34, + "script": 7, "span": 1, "strong": 1, "tfoot": 1, "th": 1, + "thead": 2, + "tr": 23, "ul": 1, "supportsHtml5Styles": 5, "supportsUnknownElements": 3, + "a.innerHTML": 7, "//if": 2, "implemented": 1, "assume": 1, @@ -31774,6 +29397,7 @@ "frag.createDocumentFragment": 1, "frag.createElement": 2, "addStyleSheet": 2, + "ownerDocument": 9, "ownerDocument.createElement": 3, "ownerDocument.getElementsByTagName": 1, "ownerDocument.documentElement": 1, @@ -31788,13 +29412,16 @@ "docCreateElement": 5, "docCreateFragment": 2, "ownerDocument.createDocumentFragment": 2, + "nodeName": 20, "//abort": 1, "shiv": 1, "html5.shivMethods": 1, + ".cloneNode": 4, "saveClones.test": 1, "node.canHaveChildren": 1, "reSkip.test": 1, "frag.appendChild": 1, + "Function": 3, "html5": 3, "shivDocument": 3, "shived": 5, @@ -31817,7 +29444,6 @@ "js": 1, "classes.join": 1, "this.document": 1, - "window.angular": 1, "PEG.parser": 1, "quote": 3, "result0": 264, @@ -31830,6 +29456,7 @@ "reportFailures": 64, "matchFailed": 40, "pos1": 63, + "offset": 21, "chars": 1, "chars.join": 1, "pos0": 51, @@ -31905,7 +29532,9 @@ "line": 14, "column": 8, "seenCR": 5, + "Math.max": 10, "rightmostFailuresPos": 2, + "ch": 58, "parseFunctions": 1, "startRule": 1, "errorPosition": 1, @@ -31918,10 +29547,13 @@ "buildMessage": 2, "expectedHumanized": 5, "foundHumanized": 3, + "switch": 30, "expected.slice": 1, + "this.name": 7, "this.expected": 1, "this.found": 1, "this.message": 3, + "this.offset": 2, "this.line": 3, "this.column": 1, "result.SyntaxError.prototype": 1, @@ -31934,17 +29566,21 @@ "ui": 31, "/255": 1, "t.getRed": 4, + "v": 135, "t.getGreen": 4, "t.getBlue": 4, "t.getAlpha": 4, "i.getRed": 1, "i.getGreen": 1, "i.getBlue": 1, + "o": 322, "i.getAlpha": 1, "*f": 2, "w/r": 1, "p/r": 1, + "c": 775, "s/r": 1, + "h": 499, "o/r": 1, "e*u": 1, ".toFixed": 3, @@ -31952,31 +29588,46 @@ "c*u": 1, "h*u": 1, "vr": 20, + "stop": 7, + "color": 4, "Math.floor": 26, "Math.log10": 1, "n/Math.pow": 1, "": 1, + "e=": 21, + "o=": 13, "beginPath": 12, "moveTo": 10, "lineTo": 22, "quadraticCurveTo": 4, "closePath": 8, "stroke": 7, + "i=": 31, + "createElement": 3, "canvas": 22, "width=": 17, "height=": 17, "ii": 29, + "u=": 12, "getContext": 26, "2d": 26, "ft": 70, + "1": 97, "fillStyle=": 13, "rect": 3, + "0": 220, "fill": 10, + "t=": 19, "getImageData": 1, + "2": 66, + "3": 13, "wt": 26, + "r=": 18, "32": 1, "62": 1, + "f=": 13, "84": 1, + "s=": 12, "94": 1, "ar": 20, "255": 3, @@ -31991,6 +29642,7 @@ "i*": 3, "h*t": 1, "*t": 3, + "%": 26, "f*255": 1, "u*255": 1, "r*255": 1, @@ -31998,8 +29650,10 @@ "n/255": 1, "t/255": 1, "i/255": 1, + "Math.min": 5, "f/r": 1, "/f": 3, + "k": 302, "<0?0:n>": 1, "si": 23, "ti": 39, @@ -32015,6 +29669,7 @@ "i.size": 6, "i.minValue": 10, "i.maxValue": 10, + "bf": 6, "i.niceScale": 10, "i.threshold": 10, "/2": 25, @@ -32029,8 +29684,10 @@ "steelseries.FrameDesign.METAL": 7, "wu": 9, "i.frameVisible": 10, + "bt": 42, "i.backgroundColor": 10, "steelseries.BackgroundColor.DARK_GRAY": 7, + "bu": 11, "i.backgroundVisible": 10, "pt": 48, "i.pointerType": 4, @@ -32052,6 +29709,7 @@ "i.digitalFont": 8, "pe": 2, "i.fractionalScaleDecimals": 4, + "br": 19, "i.ledColor": 10, "steelseries.LedColor.RED_LED": 7, "ru": 14, @@ -32062,6 +29720,7 @@ "i.minMeasuredValueVisible": 8, "dr": 16, "i.maxMeasuredValueVisible": 8, + "cf": 7, "i.foregroundType": 6, "steelseries.ForegroundType.TYPE1": 5, "af": 5, @@ -32101,9 +29760,11 @@ "steelseries.TrendState.OFF": 4, "lr": 19, "f*.06": 1, + "cr": 20, "f*.29": 19, "er": 19, "f*.36": 4, + "ci": 29, "et": 45, "gi": 26, "rr": 21, @@ -32113,6 +29774,7 @@ "u.clearRect": 5, "u.canvas.width": 7, "u.canvas.height": 7, + "g": 441, "s/2": 2, "k/2": 1, "pf": 4, @@ -32121,14 +29783,17 @@ ".4*k": 1, "pr": 16, "s/10": 1, + "ce": 6, "ae": 2, "hf": 4, "k*.13": 2, + "bi": 27, "s*.4": 1, "sf": 5, "rf": 5, "k*.57": 1, "tf": 5, + "ve": 3, "k*.61": 1, "Math.PI/2": 40, "ue": 1, @@ -32190,6 +29855,7 @@ "du": 10, "ku": 9, "yu": 10, + "cu": 18, "su": 12, "tr.getContext": 1, "kf": 3, @@ -32275,6 +29941,7 @@ "s*.3": 1, "s*.1": 1, "oi/2": 2, + "parseFloat": 32, "b.toFixed": 1, "c.toFixed": 2, "le.type": 1, @@ -32301,6 +29968,7 @@ ".stop": 11, ".color": 13, "ui.length": 2, + "ct": 34, "ut.save": 1, "ut.translate": 3, "ut.rotate": 1, @@ -32351,6 +30019,7 @@ "yf.repaint": 1, "ur": 20, "e3": 5, + "clearInterval": 6, "this.setValue": 7, "": 5, "ki.pause": 1, @@ -33003,6 +30672,7 @@ "bargraphled": 3, "v.drawImage": 2, "": 1, + "n=": 10, "856796": 4, "728155": 2, "34": 2, @@ -33014,7 +30684,9 @@ "restore": 14, "repaint": 23, "dr=": 1, + "b=": 25, "128": 2, + "y=": 5, "48": 1, "w=": 4, "lcdColor": 4, @@ -33030,14 +30702,19 @@ "digitalFont": 4, "bt=": 3, "valuesNumeric": 4, + "a=": 23, "ct=": 5, "autoScroll": 2, "section": 2, + "c=": 24, "wt=": 3, "getElementById": 4, "clearRect": 8, + "h=": 19, + "l=": 10, "v=": 5, "floor": 13, + "5": 23, "ot=": 4, "sans": 12, "serif": 13, @@ -33047,6 +30724,7 @@ "kt=": 4, "textAlign=": 7, "strokeStyle=": 8, + "4": 4, "clip": 1, "font=": 28, "measureText": 4, @@ -33054,7 +30732,9 @@ "fillText": 23, "38": 5, "o*.2": 1, + "clearTimeout": 2, "<=o-4&&(e=0,c=!1),u.fillText(n,o-2-e,h*.5+v*.38)),u.restore()},dt=function(n,i,r,u){var>": 1, + "d=": 15, "rt=": 3, "095": 1, "createLinearGradient": 6, @@ -33064,6 +30744,7 @@ "666666": 2, "92": 1, "e6e6e6": 1, + "g=": 15, "gradientStartColor": 1, "tt=": 3, "gradientFraction1Color": 1, @@ -33072,6 +30753,8 @@ "gradientStopColor": 1, "yt=": 4, "31": 26, + "k=": 11, + "p=": 5, "ut=": 6, "rgb": 6, "03": 1, @@ -33079,6 +30762,7 @@ "57": 1, "83": 1, "wt.repaint": 1, + "f.length": 5, "resetBuffers": 1, "this.setScrolling": 1, "w.textColor": 1, @@ -33101,6 +30785,7 @@ "setLcdColor=": 2, "repaint=": 2, "br=": 1, + "size": 6, "200": 2, "st=": 3, "decimalsVisible": 2, @@ -33122,6 +30807,7 @@ "ForegroundType": 2, "TYPE1": 2, "foregroundVisible": 4, + "PI": 54, "180": 26, "ni=": 1, "labelColor": 6, @@ -33133,6 +30819,7 @@ "f*.37": 3, "": 1, "rotate": 31, + "Math": 51, "u00b0": 8, "41": 3, "45": 5, @@ -33238,6 +30925,7 @@ "u.customLayer": 4, "u.degreeScale": 4, "u.roseVisible": 4, + "this.value": 4, "ft.getContext": 2, "ut.getContext": 2, "it.getContext": 2, @@ -33408,12 +31096,1907 @@ "7fd5f0": 2, "3c4439": 2, "72": 1, + "hanaMath": 1, + ".import": 1, + ".request.parameters.get": 2, + "hanaMath.multiply": 1, + "output": 2, + "title": 1, + ".response.contentType": 1, + ".response.statusCode": 1, + ".net.http.OK": 1, + ".response.setBody": 1, + "Animal": 12, + "Horse": 12, + "Snake": 12, + "sam": 4, + "tom": 4, + "__hasProp": 2, + "__extends": 6, + "__hasProp.call": 2, + "this.constructor": 5, + "Animal.prototype.move": 2, + "meters": 4, + "Snake.__super__.constructor.apply": 2, + "Snake.prototype.move": 2, + "Snake.__super__.move.call": 2, + "Horse.__super__.constructor.apply": 2, + "Horse.prototype.move": 2, + "Horse.__super__.move.call": 2, + "sam.move": 2, + "tom.move": 2, + "ma": 3, + "c.isReady": 4, + "s.documentElement.doScroll": 2, + "c.ready": 7, + "Qa": 1, + "b.src": 4, + "c.ajax": 1, + "async": 5, + "c.globalEval": 1, + "b.text": 3, + "b.textContent": 2, + "b.innerHTML": 3, + "b.parentNode": 4, + "b.parentNode.removeChild": 2, + "X": 6, + "j": 265, + "a.length": 23, + "c.isFunction": 9, + "d.call": 3, + "J": 5, + "Y": 3, + "na": 1, + ".type": 2, + "c.event.handle.apply": 1, + "oa": 1, + "c.data": 12, + "a.liveFired": 4, + "i.live": 1, + "a.button": 2, + "a.type": 14, + "i.live.slice": 1, + "u.length": 3, + "i.origType.replace": 1, + "O": 6, + "f.push": 5, + "i.selector": 3, + "u.splice": 1, + "a.target": 5, + ".closest": 4, + "a.currentTarget": 4, + "j.length": 2, + ".selector": 1, + ".elem": 1, + "i.preType": 2, + "a.relatedTarget": 2, + "d.push": 1, + "handleObj": 2, + "d.length": 8, + "j.elem": 2, + "a.data": 2, + "j.handleObj.data": 1, + "a.handleObj": 2, + "j.handleObj": 1, + "j.handleObj.origHandler.apply": 1, + "pa": 1, + "b.replace": 3, + "./g": 2, + "qa": 1, + "a.parentNode": 6, + "a.parentNode.nodeType": 2, + "ra": 1, + "b.each": 1, + "this.nodeName": 4, + ".nodeName": 2, + "f.events": 1, + "e.handle": 2, + "e.events": 2, + "c.event.add": 1, + "sa": 2, + ".ownerDocument": 5, + ".length": 24, + "ta.test": 1, + "c.support.checkClone": 2, + "ua.test": 1, + "c.fragments": 2, + "b.createDocumentFragment": 1, + "c.clean": 1, + "cacheable": 2, + "K": 4, + "c.each": 2, + "va.concat.apply": 1, + "va.slice": 1, + "wa": 1, + "a.document": 3, + "a.nodeType": 27, + "a.defaultView": 2, + "a.parentWindow": 2, + "c.fn.init": 1, + "Ra": 2, + "A.jQuery": 3, + "Sa": 2, + "A.": 3, + "A.document": 1, + "T": 4, + "Ta": 1, + "Ua": 1, + "Va": 1, + "Wa": 2, + "u00A0": 2, + "Xa": 1, + "P": 4, + "xa": 3, + "Q": 6, + "L": 10, + "aa": 1, + "ba": 3, + "R": 2, + "ya": 2, + "c.fn": 2, + "c.prototype": 1, + "s.body": 2, + "Ta.exec": 1, + "b.ownerDocument": 6, + "Xa.exec": 1, + "c.isPlainObject": 3, + "s.createElement": 10, + "c.fn.attr.call": 1, + "f.createElement": 1, + "a.cacheable": 1, + "a.fragment.cloneNode": 1, + "a.fragment": 1, + ".childNodes": 2, + "c.merge": 4, + "s.getElementById": 1, + "b.id": 1, + "T.find": 1, + "s.getElementsByTagName": 2, + "b.jquery": 1, + ".find": 5, + "T.ready": 1, + "a.selector": 4, + "a.context": 2, + "c.makeArray": 3, + "jquery": 3, + "toArray": 2, + "R.call": 2, + "this.toArray": 3, + "this.slice": 5, + "pushStack": 4, + "c.isArray": 5, + "ba.apply": 1, + "f.prevObject": 1, + "f.context": 1, + "f.selector": 2, + "c.bindReady": 1, + "a.call": 17, + "Q.push": 1, + "eq": 2, + "this.eq": 4, + "this.pushStack": 12, + "R.apply": 1, + "c.map": 1, + "this.prevObject": 3, + "c.fn.init.prototype": 1, + "c.extend": 7, + "c.fn.extend": 4, + "c.fn.triggerHandler": 1, + ".triggerHandler": 1, + "s.readyState": 2, + "s.addEventListener": 3, + "A.addEventListener": 1, + "s.attachEvent": 3, + "A.attachEvent": 1, + "A.frameElement": 1, + "isFunction": 12, + "isArray": 10, + "isPlainObject": 4, + "a.setInterval": 2, + "a.constructor": 2, + "aa.call": 3, + "a.constructor.prototype": 2, + "c.trim": 3, + "a.replace": 7, + "@": 1, + "A.JSON": 1, + "A.JSON.parse": 2, + "c.error": 2, + "noop": 3, + "globalEval": 2, + "Va.test": 1, + "s.documentElement": 2, + "d.type": 2, + "c.support.scriptEval": 2, + "d.appendChild": 3, + "s.createTextNode": 2, + "d.text": 1, + "b.insertBefore": 3, + "b.firstChild": 5, + "b.removeChild": 3, + "a.nodeName": 12, + "a.nodeName.toUpperCase": 2, + "b.toUpperCase": 3, + "b.apply": 2, + "b.call": 4, + "makeArray": 3, + "ba.call": 1, + "inArray": 5, + "b.indexOf": 2, + "b.length": 12, + "merge": 2, + "grep": 6, + "f.concat.apply": 1, + "guid": 5, + "proxy": 4, + "a.apply": 2, + "b.guid": 2, + "a.guid": 7, + "c.guid": 1, + "a.toLowerCase": 4, + "/.exec": 4, + "/compatible/.test": 1, + "c.uaMatch": 1, + "P.browser": 2, + "c.browser": 1, + "c.browser.version": 1, + "P.version": 1, + "c.browser.webkit": 1, + "c.browser.safari": 1, + "c.inArray": 2, + "ya.call": 1, + "s.removeEventListener": 1, + "s.detachEvent": 1, + "c.support": 2, + "d.style.display": 5, + "d.innerHTML": 2, + "d.getElementsByTagName": 6, + "e.length": 9, + "d.firstChild.nodeType": 1, + "htmlSerialize": 3, + "/red/.test": 1, + "j.getAttribute": 2, + "j.style.opacity": 1, + "j.style.cssFloat": 1, + ".value": 1, + "optSelected": 3, + ".appendChild": 1, + ".selected": 1, + "parentNode": 10, + "d.removeChild": 1, + ".parentNode": 7, + "deleteExpando": 3, + "checkClone": 1, + "scriptEval": 1, + "noCloneEvent": 3, + "boxModel": 1, + "b.type": 4, + "b.appendChild": 1, + "a.insertBefore": 2, + "a.firstChild": 6, + "b.test": 1, + "c.support.deleteExpando": 2, + "a.removeChild": 2, + "d.attachEvent": 2, + "d.fireEvent": 1, + "c.support.noCloneEvent": 1, + "d.detachEvent": 1, + "d.cloneNode": 1, + "s.createDocumentFragment": 1, + "a.appendChild": 3, + "d.firstChild": 2, + "a.cloneNode": 3, + ".lastChild.checked": 2, + "k.style.width": 1, + "k.style.paddingLeft": 1, + "s.body.appendChild": 1, + "c.boxModel": 1, + "c.support.boxModel": 1, + "k.offsetWidth": 1, + "s.body.removeChild": 1, + "n.setAttribute": 1, + "c.support.submitBubbles": 1, + "c.support.changeBubbles": 1, + "c.props": 2, + "readonly": 3, + "maxlength": 2, + "cellspacing": 2, + "rowspan": 2, + "colspan": 2, + "usemap": 2, + "frameborder": 2, + "G": 11, + "Ya": 2, + "za": 3, + "embed": 3, + "applet": 2, + "c.noData": 2, + "a.nodeName.toLowerCase": 3, + "c.cache": 2, + "c.isEmptyObject": 1, + "c.removeData": 2, + "c.expando": 2, + "a.removeAttribute": 3, + "a.split": 4, + "this.trigger": 2, + ".each": 3, + "queue": 7, + "dequeue": 6, + "c.queue": 3, + "d.shift": 2, + "d.unshift": 2, + "f.call": 1, + "c.dequeue": 4, + "c.fx": 1, + "c.fx.speeds": 1, + "this.queue": 4, + "clearQueue": 2, + "Aa": 3, + "ca": 6, + "Za": 2, + "r/g": 2, + "/href": 1, + "style/": 1, + "ab": 1, + "bb": 2, + "cb": 16, + "area": 2, + "Ba": 3, + "/radio": 1, + "checkbox/": 1, + "c.attr": 4, + "this.nodeType": 4, + "this.removeAttribute": 1, + "addClass": 2, + "r.addClass": 1, + "r.attr": 1, + "e.nodeType": 7, + "e.className": 14, + "j.indexOf": 1, + "removeClass": 2, + "n.removeClass": 1, + "n.attr": 1, + "j.replace": 2, + "toggleClass": 2, + "j.toggleClass": 1, + "j.attr": 1, + "i.hasClass": 1, + "hasClass": 2, + "": 1, + "val": 13, + "c.nodeName": 4, + "b.attributes.value": 1, + ".specified": 1, + "b.value": 4, + "b.selectedIndex": 2, + "b.options": 1, + "": 1, + "getAttribute": 3, + "nodeType=": 6, + "call": 9, + "checked=": 1, + "this.selected": 1, + "this.selectedIndex": 1, + "attrFn": 2, + "css": 7, + "c.attrFn": 1, + "c.isXMLDoc": 1, + "a.test": 2, + "ab.test": 1, + "a.getAttributeNode": 7, + ".nodeValue": 1, + "b.specified": 2, + "bb.test": 2, + "cb.test": 1, + "a.href": 2, + "c.support.style": 1, + "a.style.cssText": 3, + "a.setAttribute": 7, + "c.support.hrefNormalized": 1, + "c.style": 1, + "db": 1, + "detail": 3, + "layerX": 3, + "layerY": 3, + "newValue": 3, + "originalTarget": 1, + "prevValue": 3, + "wheelDelta": 3, + "click.specialSubmit": 2, + "submit": 14, + "keypress.specialSubmit": 2, + "password": 5, + ".specialSubmit": 2, + "_change_data": 6, + "file": 5, + ".specialChange": 4, + "unload": 5, + "live": 8, + "lastToggle": 4, + "die": 3, + "hover": 3, + "load": 5, + "resize": 3, + "scroll": 6, + "dblclick": 3, + "mousedown": 3, + "mouseup": 3, + "mousemove": 3, + "keydown": 4, + "keypress": 4, + "keyup": 3, + "onunload": 1, + "m": 76, + "h.nodeType": 4, + "H": 8, + "M": 9, + "I": 7, + "f.exec": 2, + "p.push": 2, + "p.length": 10, + "r.exec": 1, + "n.relative": 5, + "ga": 2, + "p.shift": 4, + "n.match.ID.test": 2, + "k.find": 6, + "v.expr": 4, + "k.filter": 5, + "v.set": 5, + "expr": 2, + "p.pop": 4, + "h.parentNode": 3, + "D": 9, + "k.error": 2, + "j.call": 2, + ".nodeType": 9, + "E": 11, + "l.push": 2, + "l.push.apply": 1, + "k.uniqueSort": 5, + "B": 5, + "g.sort": 1, + "g.length": 2, + "g.splice": 2, + "k.matches": 1, + "n.order.length": 1, + "n.order": 1, + "n.leftMatch": 1, + ".exec": 2, + "q.splice": 1, + "y.substr": 1, + "y.length": 1, + "Syntax": 3, + "unrecognized": 3, + "expression": 4, + "NAME": 2, + "TAG": 2, + "u00c0": 2, + "uFFFF": 2, + "leftMatch": 2, + "attrMap": 2, + "attrHandle": 2, + "g.getAttribute": 1, + "relative": 4, + "W/.test": 1, + "h.toLowerCase": 2, + "": 1, + "previousSibling": 5, + "nth": 5, + "even": 3, + "odd": 2, + "reset": 2, + "sourceIndex": 1, + "": 4, + "name=": 2, + "href=": 2, + "": 2, + "

": 2, + "class=": 5, + "

": 2, + ".TEST": 2, + "
": 4, + "
": 3, + "CLASS": 1, + "nextSibling": 3, + "": 1, + "": 1, + "
": 1, + "
": 1, + "": 4, + "
": 5, + "": 3, + "": 3, + "": 2, + "": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "position": 7, + "absolute": 2, + "solid": 2, + "#000": 2, + "padding": 4, + "": 1, + "": 1, + "fixed": 1, + "marginLeft": 2, + "borderTopWidth": 1, + "borderLeftWidth": 1, + "static": 2, + "Left": 1, + "Top": 1, + "pageXOffset": 2, + "pageYOffset": 1, + "Height": 1, + "Width": 1, + "scrollTo": 1, + "CSS1Compat": 1, + "client": 3, + "cy": 4, + "f.isWindow": 2, + "cv": 2, + "cj": 4, + "b.css": 1, + "b.remove": 1, + "ck": 5, + "c.createElement": 12, + "ck.frameBorder": 1, + "ck.width": 1, + "ck.height": 1, + "c.body.appendChild": 1, + "cl": 3, + "ck.createElement": 1, + "ck.contentWindow": 1, + "ck.contentDocument": 1, + ".document": 1, + "cl.write": 1, + "cl.createElement": 1, + "cl.body.appendChild": 1, + "f.css": 24, + "c.body.removeChild": 1, + "f.each": 21, + "cp.concat.apply": 1, + "cp.slice": 1, + "cq": 3, + "cs": 3, + "f.now": 2, + "a.ActiveXObject": 3, + "a.XMLHttpRequest": 1, + "a.dataFilter": 2, + "a.dataType": 1, + "a.dataTypes": 2, + "a.converters": 3, + "o.split": 1, + "f.error": 4, + "m.replace": 1, + "a.contents": 1, + "a.responseFields": 1, + "f.shift": 1, + "a.mimeType": 1, + "c.getResponseHeader": 1, + ".test": 1, + "f.unshift": 2, + "b_": 4, + "f.isArray": 8, + "bF.test": 1, + "c.dataTypes": 1, + "h.length": 3, + "bU": 4, + "c.dataTypes.unshift": 1, + "bZ": 3, + "f.isFunction": 21, + "b.toLowerCase": 3, + "bQ": 3, + "h.substr": 1, + "bD": 3, + "bx": 2, + "a.offsetWidth": 6, + "a.offsetHeight": 2, + "bn": 2, + "f.ajax": 3, + "f.globalEval": 2, + "bm": 3, + "f.nodeName": 16, + "bl": 3, + "a.getElementsByTagName": 9, + "f.grep": 3, + "a.defaultChecked": 1, + "a.checked": 4, + "bk": 5, + "a.querySelectorAll": 1, + "bj": 3, + "b.nodeType": 6, + "b.clearAttributes": 2, + "b.mergeAttributes": 2, + "b.nodeName.toLowerCase": 1, + "b.outerHTML": 1, + "a.outerHTML": 1, + "b.selected": 1, + "a.defaultSelected": 1, + "b.defaultValue": 1, + "a.defaultValue": 1, + "b.defaultChecked": 1, + "b.checked": 1, + "a.value": 8, + "b.removeAttribute": 3, + "f.expando": 23, + "f.hasData": 2, + "f.data": 25, + "d.events": 1, + "f.extend": 23, + "": 1, + "bh": 1, + "getElementsByTagName": 1, + "appendChild": 1, + "nodeType": 1, + "W": 3, + "N": 2, + "f._data": 15, + "r.live": 1, + "a.target.disabled": 1, + "a.namespace": 1, + "a.namespace.split": 1, + "r.live.slice": 1, + "s.length": 2, + "g.origType.replace": 1, + "q.push": 1, + "g.selector": 3, + "s.splice": 1, + "m.selector": 1, + "n.test": 2, + "g.namespace": 1, + "m.elem.disabled": 1, + "m.elem": 1, + "g.preType": 3, + "f.contains": 5, + "m.level": 1, + "": 1, + "e.elem": 2, + "e.handleObj.data": 1, + "e.handleObj": 1, + "e.handleObj.origHandler.apply": 1, + "a.isPropagationStopped": 1, + "e.level": 1, + "a.isImmediatePropagationStopped": 1, + "e.type": 6, + "e.originalEvent": 1, + "e.liveFired": 1, + "f.event.handle.call": 1, + "e.isDefaultPrevented": 2, + ".preventDefault": 1, + "f.removeData": 4, + "i.resolve": 1, + "c.replace": 4, + "f.isNaN": 3, + "i.test": 1, + "f.parseJSON": 2, + "a.navigator": 1, + "a.location": 1, + "e.isReady": 1, + "c.documentElement.doScroll": 2, + "e.ready": 6, + "e.fn.init": 1, + "a.jQuery": 2, + "a.": 2, + "d/": 3, + "d.userAgent": 1, + "C": 4, + "e.fn": 2, + "e.prototype": 1, + "c.body": 4, + "a.charAt": 2, + "i.exec": 1, + "d.ownerDocument": 1, + "n.exec": 1, + "e.isPlainObject": 1, + "e.fn.attr.call": 1, + "k.createElement": 1, + "e.buildFragment": 1, + "j.cacheable": 1, + "e.clone": 1, + "j.fragment": 2, + "e.merge": 3, + "c.getElementById": 1, + "h.id": 1, + "f.find": 2, + "d.jquery": 1, + "e.isFunction": 5, + "f.ready": 1, + "e.makeArray": 1, + "D.call": 4, + "e.isArray": 2, + "C.apply": 1, + "d.prevObject": 1, + "d.context": 2, + "d.selector": 2, + "e.each": 2, + "e.bindReady": 1, + "y.done": 1, + "D.apply": 1, + "e.map": 1, + "e.fn.init.prototype": 1, + "e.extend": 2, + "e.fn.extend": 1, + "": 1, + "jQuery=": 2, + "isReady=": 1, + "y.resolveWith": 1, + "e.fn.trigger": 1, + "e._Deferred": 1, + "c.readyState": 2, + "c.addEventListener": 4, + "a.addEventListener": 4, + "c.attachEvent": 3, + "a.attachEvent": 6, + "a.frameElement": 1, + "Array.isArray": 7, + "isWindow": 2, + "isNaN": 6, + "m.test": 1, + "A.call": 1, + "e.isWindow": 2, + "B.call": 3, + "e.trim": 1, + "a.JSON": 1, + "a.JSON.parse": 2, + "o.test": 1, + "e.error": 2, + "parseXML": 1, + "a.DOMParser": 1, + "DOMParser": 1, + "d.parseFromString": 1, + "ActiveXObject": 1, + "c.async": 4, + "c.loadXML": 1, + "c.documentElement": 4, + "d.nodeName": 4, + "j.test": 3, + "a.execScript": 1, + "a.eval.call": 1, + "c.apply": 2, + "c.call": 3, + "E.call": 1, + "C.call": 1, + "F.call": 1, + "c.length": 8, + "": 1, + "j=": 14, + "h.concat.apply": 1, + "f.concat": 1, + "g.guid": 3, + "e.guid": 3, + "e.access": 1, + "s.exec": 1, + "t.exec": 1, + "u.exec": 1, + "a.indexOf": 2, + "v.exec": 1, + "a.fn.init": 2, + "a.superclass": 1, + "a.fn": 2, + "a.prototype": 1, + "a.fn.constructor": 1, + "a.sub": 1, + "e.fn.init.call": 1, + "a.fn.init.prototype": 1, + "e.uaMatch": 1, + "x.browser": 2, + "e.browser": 1, + "e.browser.version": 1, + "x.version": 1, + "e.browser.webkit": 1, + "e.browser.safari": 1, + "c.removeEventListener": 2, + "c.detachEvent": 1, + "_Deferred": 4, + "done": 10, + "": 1, + "resolveWith": 4, + "shift": 1, + "apply": 8, + "finally": 3, + "resolve": 7, + "isResolved": 3, + "cancel": 6, + "Deferred": 5, + "rejectWith": 2, + "reject": 4, + "isRejected": 2, + "pipe": 2, + "promise": 14, + "h.call": 2, + "g.resolveWith": 3, + "<=1&&a&&f.isFunction(a.promise)?a:f.Deferred();if(d>": 1, + ".promise": 5, + ".then": 3, + "g.reject": 1, + "g.promise": 1, + "f.support": 2, + "f.appendChild": 1, + "a.firstChild.nodeType": 2, + "/top/.test": 2, + "e.getAttribute": 2, + "e.style.opacity": 1, + "e.style.cssFloat": 1, + "h.value": 3, + "g.selected": 1, + "a.className": 1, + "submitBubbles": 3, + "changeBubbles": 3, + "focusinBubbles": 2, + "inlineBlockNeedsLayout": 3, + "shrinkWrapBlocks": 2, + "reliableMarginRight": 2, + "h.checked": 2, + "j.noCloneChecked": 1, + "h.cloneNode": 1, + ".checked": 2, + "f.disabled": 1, + "j.optDisabled": 1, + "g.disabled": 1, + "j.deleteExpando": 1, + "a.fireEvent": 1, + "j.noCloneEvent": 1, + "a.detachEvent": 1, + "h.setAttribute": 2, + "j.radioValue": 1, + "c.createDocumentFragment": 1, + "k.appendChild": 1, + "j.checkClone": 1, + "k.cloneNode": 1, + "a.style.width": 1, + "a.style.paddingLeft": 1, + "visibility": 3, + "l.style": 1, + "l.appendChild": 1, + "j.appendChecked": 1, + "j.boxModel": 1, + "a.style": 8, + "a.style.display": 3, + "a.style.zoom": 1, + "j.inlineBlockNeedsLayout": 1, + "j.shrinkWrapBlocks": 1, + "j.reliableHiddenOffsets": 1, + "c.defaultView": 2, + "c.defaultView.getComputedStyle": 3, + "i.style.width": 1, + "i.style.marginRight": 1, + "j.reliableMarginRight": 1, + "l.innerHTML": 1, + "f.boxModel": 1, + "f.support.boxModel": 4, + "f.fn.jquery": 1, + "f.cache": 5, + "f.acceptData": 4, + "f.uuid": 1, + ".toJSON": 4, + "f.noop": 4, + "f.camelCase": 5, + ".events": 1, + "f.support.deleteExpando": 3, + "f.noData": 2, + "f.fn.extend": 9, + ".attributes": 2, + "g.indexOf": 2, + "g.substring": 1, + "b.triggerHandler": 2, + "_mark": 2, + "_unmark": 3, + "f.makeArray": 5, + "e.push": 3, + "f.queue": 3, + "c.shift": 2, + "c.unshift": 1, + "f.dequeue": 4, + "f.fx": 2, + "f.fx.speeds": 1, + "d.resolveWith": 1, + "f.Deferred": 2, + "f._Deferred": 2, + "l.done": 1, + "d.promise": 1, + "rea": 1, + "autofocus": 1, + "autoplay": 1, + "controls": 1, + "defer": 1, + "open": 2, + "required": 1, + "scoped": 1, + "f.access": 3, + "f.attr": 2, + "f.removeAttr": 3, + "f.prop": 2, + "removeProp": 1, + "f.propFix": 6, + "c.addClass": 1, + "f.trim": 2, + "c.removeClass": 1, + "g.nodeType": 6, + "g.className": 4, + "h.replace": 2, + "d.toggleClass": 1, + "d.attr": 1, + "h.hasClass": 1, + "": 1, + "f.valHooks": 7, + "e.nodeName.toLowerCase": 1, + "c.get": 1, + "e.value": 1, + "e.val": 1, + "f.map": 5, + "this.nodeName.toLowerCase": 1, + "this.type": 3, + "c.set": 1, + "valHooks": 1, + "a.attributes.value": 1, + "a.text": 1, + "a.selectedIndex": 3, + "a.options": 2, + "": 3, + "optDisabled": 1, + "selected=": 1, + "attrFix": 1, + "f.attrFn": 3, + "f.isXMLDoc": 4, + "f.attrFix": 3, + "f.attrHooks": 5, + "t.test": 2, + "d.toLowerCase": 1, + "c.toLowerCase": 4, + "u.test": 1, + "i.set": 1, + "i.get": 1, + "f.support.getSetAttribute": 2, + "a.removeAttributeNode": 1, + "q.test": 1, + "f.support.radioValue": 1, + "c.specified": 1, + "c.value": 1, + "r.test": 1, + "s.test": 1, + "propFix": 1, + "cellpadding": 1, + "contenteditable": 1, + "f.propHooks": 1, + "h.set": 1, + "h.get": 1, + "propHooks": 1, + "f.attrHooks.value": 1, + "v.get": 1, + "f.attrHooks.name": 1, + "f.valHooks.button": 1, + "d.nodeValue": 3, + "f.support.hrefNormalized": 1, + "f.support.style": 1, + "f.attrHooks.style": 1, + "a.style.cssText.toLowerCase": 1, + "f.support.optSelected": 1, + "f.propHooks.selected": 2, + "b.parentNode.selectedIndex": 1, + "f.support.checkOn": 1, + "f.inArray": 4, + "s.": 1, + "f.event": 2, + "d.handler": 1, + "g.handler": 1, + "d.guid": 4, + "f.guid": 3, + "i.events": 2, + "i.handle": 2, + "f.event.triggered": 3, + "f.event.handle.apply": 1, + "k.elem": 2, + "c.split": 2, + "l.indexOf": 1, + "l.split": 1, + "n.shift": 1, + "h.namespace": 2, + "n.slice": 1, + "h.type": 1, + "h.guid": 2, + "f.event.special": 5, + "p.setup": 1, + "p.setup.call": 1, + "p.add": 1, + "p.add.call": 1, + "h.handler.guid": 2, + "o.push": 1, + "f.event.global": 2, + "global": 5, + "s.events": 1, + "c.type": 9, + "c.handler": 1, + "c.charAt": 1, + "f.event.remove": 5, + "h.indexOf": 3, + "h.split": 2, + "m.shift": 1, + "m.slice": 1, + "q.namespace": 1, + "q.handler": 1, + "p.splice": 1, + "": 1, + "elem=": 4, + "customEvent": 1, + "trigger": 4, + "h.slice": 1, + "i.shift": 1, + "i.sort": 1, + "f.event.customEvent": 1, + "f.Event": 2, + "c.exclusive": 2, + "c.namespace": 2, + "i.join": 2, + "c.namespace_re": 1, + "c.preventDefault": 3, + "c.stopPropagation": 1, + "b.events": 4, + "f.event.trigger": 6, + "b.handle.elem": 2, + "c.result": 3, + "c.target": 3, + "c.currentTarget": 2, + "m.apply": 1, + "k.parentNode": 1, + "k.ownerDocument": 1, + "c.target.ownerDocument": 1, + "c.isPropagationStopped": 1, + "c.isDefaultPrevented": 2, + "o._default": 1, + "o._default.call": 1, + "e.ownerDocument": 1, + "f.event.fix": 2, + "a.event": 1, + "Array.prototype.slice.call": 1, + "namespace_re": 1, + "namespace": 1, + "handler=": 1, + "data=": 2, + "handleObj=": 1, + "result=": 1, + "preventDefault": 4, + "stopPropagation": 5, + "isImmediatePropagationStopped": 2, + "fix": 1, + "Event": 3, + "target=": 2, + "relatedTarget=": 1, + "fromElement=": 1, + "pageX=": 2, + "documentElement": 2, + "scrollLeft": 2, + "clientLeft": 2, + "pageY=": 1, + "scrollTop": 2, + "clientTop": 2, + "which=": 3, + "metaKey=": 1, + "1e8": 1, + "special": 3, + "setup": 5, + "teardown": 6, + "origType": 2, + "beforeunload": 1, + "onbeforeunload=": 3, + "removeEvent=": 1, + "removeEventListener": 3, + "detachEvent": 2, + "Event=": 1, + "originalEvent=": 1, + "type=": 5, + "isDefaultPrevented=": 2, + "defaultPrevented": 1, + "returnValue=": 2, + "getPreventDefault": 2, + "timeStamp=": 1, + "prototype=": 2, + "originalEvent": 2, + "isPropagationStopped=": 1, + "cancelBubble=": 1, + "stopImmediatePropagation": 1, + "isImmediatePropagationStopped=": 1, + "isDefaultPrevented": 1, + "isPropagationStopped": 1, + "G=": 1, + "H=": 1, + "submit=": 1, + "specialSubmit": 3, + "closest": 3, + "keyCode=": 1, + "J=": 1, + "selectedIndex": 1, + "a.selected": 1, + "z.test": 3, + "d.readOnly": 1, + "c.liveFired": 1, + "f.event.special.change": 1, + "filters": 1, + "beforedeactivate": 1, + "K.call": 2, + "a.keyCode": 2, + "beforeactivate": 1, + "f.event.add": 2, + "f.event.special.change.filters": 1, + "I.focus": 1, + "I.beforeactivate": 1, + "f.support.focusinBubbles": 1, + "c.originalEvent": 1, + "a.preventDefault": 3, + "f.fn": 9, + "e.apply": 1, + "this.one": 1, + "unbind": 2, + "this.unbind": 2, + "delegate": 1, + "this.live": 1, + "undelegate": 1, + "this.die": 1, + "triggerHandler": 1, + "toggle": 10, + ".guid": 1, + "this.click": 1, + "this.mouseenter": 1, + ".mouseleave": 1, + "g.charAt": 1, + "n.unbind": 1, + "y.exec": 1, + "a.push": 2, + "n.length": 1, + "": 1, + "this.bind": 2, + "": 2, + "sizcache=": 4, + "sizset": 2, + "sizset=": 2, + "toLowerCase": 3, + "W/": 2, + "d.nodeType": 5, + "k.isXML": 4, + "a.exec": 2, + "x.push": 1, + "x.length": 8, + "m.exec": 1, + "l.relative": 6, + "x.shift": 4, + "l.match.ID.test": 2, + "q.expr": 4, + "q.set": 4, + "x.pop": 4, + "d.parentNode": 4, + "e.call": 1, + "f.push.apply": 1, + "k.contains": 5, + "a.sort": 1, + "": 1, + "matches=": 1, + "matchesSelector=": 1, + "l.order.length": 1, + "l.order": 1, + "l.leftMatch": 1, + "j.substr": 1, + "": 1, + "__sizzle__": 1, + "sizzle": 1, + "l.match.PSEUDO.test": 1, + "a.document.nodeType": 1, + "a.getElementsByClassName": 3, + "a.lastChild.className": 1, + "l.order.splice": 1, + "l.find.CLASS": 1, + "b.getElementsByClassName": 2, + "c.documentElement.contains": 1, + "a.contains": 2, + "c.documentElement.compareDocumentPosition": 1, + "a.compareDocumentPosition": 1, + "a.ownerDocument": 1, + ".documentElement": 1, + "b.nodeName": 2, + "l.match.PSEUDO.exec": 1, + "l.match.PSEUDO": 1, + "f.expr": 4, + "k.selectors": 1, + "f.expr.filters": 3, + "f.unique": 4, + "f.text": 2, + "k.getText": 1, + "/Until": 1, + "parents": 2, + "prevUntil": 2, + "prevAll": 2, + "U": 1, + "f.expr.match.POS": 1, + "V": 2, + "contents": 4, + "next": 9, + "prev": 2, + ".filter": 2, + "": 1, + "e.splice": 1, + "this.filter": 2, + "": 1, + "": 1, + "index": 5, + ".is": 2, + "c.push": 3, + "g.parentNode": 2, + "U.test": 1, + "": 1, + "f.find.matchesSelector": 2, + "g.ownerDocument": 1, + "this.parent": 2, + ".children": 1, + "a.jquery": 2, + "f.merge": 2, + "this.get": 1, + "andSelf": 1, + "this.add": 1, + "f.dir": 6, + "parentsUntil": 1, + "f.nth": 2, + "nextAll": 1, + "nextUntil": 1, + "siblings": 1, + "f.sibling": 2, + "a.parentNode.firstChild": 1, + "a.contentDocument": 1, + "a.contentWindow.document": 1, + "a.childNodes": 1, + "T.call": 1, + "P.test": 1, + "f.filter": 2, + "R.test": 1, + "Q.test": 1, + "e.reverse": 1, + "g.join": 1, + "f.find.matches": 1, + "dir": 1, + "sibling": 1, + "a.nextSibling": 1, + "<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:]+)[^>": 1, + "tbody/i": 1, + "bc": 1, + "bd": 1, + "/checked": 1, + "s*.checked.": 1, + "java": 1, + "ecma": 1, + "script/i": 1, + "CDATA": 1, + "bg": 3, + "legend": 1, + "col": 7, + "_default": 5, + "bg.optgroup": 1, + "bg.option": 1, + "bg.tbody": 1, + "bg.tfoot": 1, + "bg.colgroup": 1, + "bg.caption": 1, + "bg.thead": 1, + "bg.th": 1, + "bg.td": 1, + "f.support.htmlSerialize": 1, + "bg._default": 2, + "c.text": 2, + "this.empty": 3, + ".append": 6, + ".createTextNode": 1, + "wrapAll": 1, + ".wrapAll": 2, + ".eq": 1, + ".clone": 1, + "b.map": 1, + "wrapInner": 1, + ".wrapInner": 1, + "b.contents": 1, + "c.wrapAll": 1, + "b.append": 1, + "unwrap": 1, + ".replaceWith": 1, + "this.childNodes": 1, + ".end": 1, + "append": 1, + "this.domManip": 4, + "this.appendChild": 1, + "prepend": 1, + "this.insertBefore": 1, + "this.firstChild": 1, + "this.parentNode.insertBefore": 2, + "a.push.apply": 2, + "this.nextSibling": 2, + ".toArray": 1, + "f.cleanData": 4, + "d.parentNode.removeChild": 1, + "b.getElementsByTagName": 1, + "this.map": 3, + "f.clone": 2, + ".innerHTML.replace": 1, + "bc.test": 2, + "f.support.leadingWhitespace": 2, + "Z.test": 2, + "_.exec": 2, + ".getElementsByTagName": 2, + "c.html": 3, + "replaceWith": 1, + "c.replaceWith": 1, + ".detach": 1, + "this.parentNode": 1, + ".before": 1, + "detach": 1, + "this.remove": 1, + "domManip": 1, + "f.support.checkClone": 2, + "bd.test": 2, + ".domManip": 1, + "g.html": 1, + "g.domManip": 1, + "j.parentNode": 1, + "f.support.parentNode": 1, + "i.nodeType": 1, + "i.childNodes.length": 1, + "f.buildFragment": 2, + "e.fragment": 1, + "h.childNodes.length": 1, + "h.firstChild": 2, + "": 1, + "k.length": 2, + ".charAt": 1, + "f.fragments": 3, + "i.createDocumentFragment": 1, + "f.clean": 1, + "appendTo": 1, + "prependTo": 1, + "insertBefore": 1, + "insertAfter": 1, + "replaceAll": 1, + "g.childNodes.length": 1, + "this.clone": 1, + "d.concat": 1, + "e.selector": 1, + "f.support.noCloneEvent": 1, + "f.support.noCloneChecked": 1, + "b.createElement": 2, + "b.createTextNode": 2, + "k.replace": 2, + "o.innerHTML": 1, + "o.lastChild": 1, + "f.support.tbody": 1, + "ba.test": 1, + "o.firstChild": 2, + "o.firstChild.childNodes": 1, + "o.childNodes": 2, + "q.length": 1, + ".childNodes.length": 1, + ".parentNode.removeChild": 2, + "o.insertBefore": 1, + "Z.exec": 1, + "f.support.appendChecked": 1, + "k.nodeType": 1, + "h.push": 1, + "be.test": 1, + ".type.toLowerCase": 1, + "h.splice.apply": 1, + "cleanData": 1, + "j.nodeName": 1, + "j.nodeName.toLowerCase": 1, + "f.removeEvent": 1, + "b.handle": 2, + "j.removeAttribute": 2, + "bo": 2, + "/alpha": 1, + "bp": 1, + "/opacity": 1, + "bq": 2, + "bs": 2, + "bv": 2, + "de": 1, + "bw": 2, + "bz": 7, + "bA": 3, + "bB": 5, + "bC": 2, + "f.fn.css": 1, + "f.style": 4, + "cssHooks": 1, + "cssNumber": 3, + "zIndex": 1, + "fontWeight": 1, + "zoom": 1, + "lineHeight": 1, + "widows": 1, + "orphans": 1, + "cssProps": 1, + "f.support.cssFloat": 1, + "f.cssHooks": 3, + "f.cssProps": 2, + "k.get": 1, + "bu.test": 1, + "d.replace": 1, + "f.cssNumber": 1, + "k.set": 1, + "g.get": 1, + "swap": 1, + "camelCase": 3, + "f.curCSS": 1, + "f.swap": 2, + "<0||e==null){e=a.style[b];return>": 1, + "0px": 1, + "f.support.opacity": 1, + "f.cssHooks.opacity": 1, + "bp.test": 1, + "a.currentStyle": 4, + "a.currentStyle.filter": 1, + "a.style.filter": 1, + "RegExp.": 1, + "/100": 2, + "c.zoom": 1, + "b*100": 1, + "d.filter": 1, + "c.filter": 2, + "bo.test": 1, + "g.replace": 1, + "f.support.reliableMarginRight": 1, + "f.cssHooks.marginRight": 1, + "a.style.marginRight": 1, + "a.ownerDocument.defaultView": 1, + "e.getComputedStyle": 1, + "g.getPropertyValue": 1, + "a.ownerDocument.documentElement": 1, + "c.documentElement.currentStyle": 1, + "a.runtimeStyle": 2, + "bs.test": 1, + "bt.test": 1, + "f.left": 3, + "a.runtimeStyle.left": 2, + "a.currentStyle.left": 1, + "f.pixelLeft": 1, + "f.expr.filters.hidden": 2, + "f.support.reliableHiddenOffsets": 1, + "f.expr.filters.visible": 1, + "bE": 2, + "bF": 1, + "bG": 3, + "n/g": 1, + "bH": 2, + "/#.*": 1, + "bI": 1, + "/mg": 1, + "bJ": 1, + "date": 1, + "datetime": 1, + "month": 1, + "time": 1, + "week": 1, + "bK": 1, + "about": 1, + "storage": 1, + "extension": 1, + "widget": 1, + "bL": 1, + "GET": 1, + "HEAD": 3, + "bM": 2, + "bN": 2, + "bO": 2, + "<\\/script>": 2, + "bP": 1, + "bR": 2, + "*/": 2, + "bS": 1, + "bT": 2, + "f.fn.load": 1, + "bV": 3, + "bW": 5, + "bX": 8, + "e.href": 1, + "bY": 1, + "bW.href": 2, + "bS.exec": 1, + "bW.toLowerCase": 1, + "bT.apply": 1, + "a.slice": 2, + "f.param": 2, + "f.ajaxSettings.traditional": 2, + "complete": 6, + "a.responseText": 1, + "a.isResolved": 1, + "a.done": 1, + "i.html": 1, + "i.each": 1, + "serialize": 1, + "this.serializeArray": 1, + "serializeArray": 1, + "this.elements": 2, + "this.disabled": 1, + "this.checked": 1, + "bP.test": 1, + "bJ.test": 1, + ".map": 1, + "b.name": 2, + "success": 2, + "getScript": 1, + "f.get": 2, + "getJSON": 1, + "ajaxSetup": 1, + "f.ajaxSettings": 4, + "ajaxSettings": 1, + "isLocal": 1, + "bK.test": 1, + "contentType": 4, + "accepts": 5, + "xml": 3, + "json": 2, + "/xml/": 1, + "/html/": 1, + "/json/": 1, + "responseFields": 1, + "converters": 2, + "a.String": 1, + "f.parseXML": 1, + "ajaxPrefilter": 1, + "ajaxTransport": 1, + "ajax": 2, + "v.readyState": 1, + "d.ifModified": 1, + "v.getResponseHeader": 2, + "f.lastModified": 1, + "f.etag": 1, + "v.status": 1, + "v.statusText": 1, + "h.resolveWith": 1, + "h.rejectWith": 1, + "v.statusCode": 2, + "g.trigger": 2, + "i.resolveWith": 1, + "f.active": 1, + "f.ajaxSetup": 3, + "d.statusCode": 1, + "readyState": 1, + "setRequestHeader": 6, + "getAllResponseHeaders": 1, + "getResponseHeader": 1, + "bI.exec": 1, + "overrideMimeType": 1, + "d.mimeType": 1, + "abort": 4, + "p.abort": 1, + "h.promise": 1, + "v.success": 1, + "v.done": 1, + "v.error": 1, + "v.fail": 1, + "v.complete": 1, + "i.done": 1, + "<2)for(b>": 1, + "status": 3, + "url=": 1, + "dataTypes=": 1, + "crossDomain=": 2, + "80": 2, + "443": 2, + "traditional": 1, + "toUpperCase": 1, + "hasContent=": 1, + "active": 2, + "ajaxStart": 1, + "hasContent": 2, + "cache=": 1, + "x=": 1, + "1_=": 1, + "_=": 1, + "Content": 1, + "Type": 1, + "ifModified": 1, + "lastModified": 3, + "Modified": 1, + "etag": 3, + "None": 1, + "Accept": 1, + "dataTypes": 4, + "q=": 1, + "01": 1, + "headers": 41, + "beforeSend": 2, + "No": 1, + "Transport": 1, + "readyState=": 1, + "ajaxSend": 1, + "timeout": 2, + "v.abort": 1, + "d.timeout": 1, + "p.send": 1, + "encodeURIComponent": 2, + "f.isPlainObject": 1, + "d.join": 1, + "cc": 2, + "cd": 3, + "jsonp": 1, + "jsonpCallback": 1, + "f.ajaxPrefilter": 2, + "b.contentType": 1, + "b.data": 5, + "b.dataTypes": 2, + "b.jsonp": 3, + "cd.test": 2, + "b.url": 4, + "b.jsonpCallback": 4, + "d.always": 1, + "b.converters": 1, + "/javascript": 1, + "ecmascript/": 1, + "a.cache": 2, + "a.crossDomain": 2, + "a.global": 1, + "f.ajaxTransport": 2, + "c.head": 1, + "c.getElementsByTagName": 1, + "send": 2, + "d.async": 1, + "a.scriptCharset": 2, + "d.charset": 1, + "d.src": 1, + "a.url": 1, + "d.onload": 3, + "d.onreadystatechange": 2, + "d.readyState": 2, + "/loaded": 1, + "complete/.test": 1, + "e.removeChild": 1, + "e.insertBefore": 1, + "e.firstChild": 1, + "cg": 7, + "f.ajaxSettings.xhr": 2, + "this.isLocal": 1, + "cors": 1, + "f.support.ajax": 1, + "c.crossDomain": 3, + "f.support.cors": 1, + "c.xhr": 1, + "c.username": 2, + "h.open": 2, + "c.url": 2, + "c.password": 1, + "c.xhrFields": 3, + "c.mimeType": 2, + "h.overrideMimeType": 2, + "h.setRequestHeader": 1, + "h.send": 1, + "c.hasContent": 1, + "h.readyState": 3, + "h.onreadystatechange": 2, + "h.abort": 1, + "h.status": 1, + "h.getAllResponseHeaders": 1, + "h.responseXML": 1, + "n.documentElement": 1, + "m.xml": 1, + "m.text": 2, + "h.responseText": 1, + "h.statusText": 1, + "c.isLocal": 1, + ".unload": 1, + "cm": 2, + "show": 10, + "hide": 8, + "cn": 1, + "co": 5, + "cp": 1, + "a.webkitRequestAnimationFrame": 1, + "a.mozRequestAnimationFrame": 1, + "a.oRequestAnimationFrame": 1, + "this.animate": 2, + "d.style": 3, + ".style": 1, + "": 1, + "_toggle": 2, + "animate": 4, + "fadeTo": 1, + "queue=": 2, + "animatedProperties=": 1, + "animatedProperties": 2, + "specialEasing": 2, + "easing": 3, + "swing": 2, + "overflow=": 2, + "overflow": 2, + "overflowX": 1, + "overflowY": 1, + "display=": 3, + "zoom=": 1, + "fx": 10, + "m=": 2, + "cur": 6, + "custom": 5, + "timers": 3, + "slideDown": 1, + "slideUp": 1, + "slideToggle": 1, + "fadeIn": 1, + "fadeOut": 1, + "fadeToggle": 1, + "duration": 4, + "duration=": 2, + "off": 1, + "speeds": 4, + "old=": 1, + "complete=": 1, + "old": 2, + "linear": 1, + "cos": 1, + "options=": 1, + "prop=": 3, + "orig=": 1, + "orig": 3, + "step": 7, + "startTime=": 1, + "start=": 1, + "end=": 1, + "unit=": 1, + "unit": 1, + "now=": 1, + "pos=": 1, + "state=": 1, + "co=": 2, + "tick": 3, + "show=": 1, + "hide=": 1, + "e.duration": 3, + "this.startTime": 2, + "this.now": 3, + "this.end": 2, + "this.pos": 4, + "this.state": 3, + "this.update": 2, + "e.animatedProperties": 5, + "this.prop": 2, + "e.overflow": 2, + "f.support.shrinkWrapBlocks": 1, + "e.hide": 2, + "e.show": 1, + "e.orig": 1, + "e.complete.call": 1, + "Infinity": 1, + "h/e.duration": 1, + "f.easing": 1, + "this.start": 2, + "*this.pos": 1, + "f.timers": 2, + "a.splice": 1, + "f.fx.stop": 1, + "slow": 1, + "fast": 1, + "a.elem": 2, + "a.now": 4, + "a.elem.style": 3, + "a.prop": 5, + "a.unit": 1, + "f.expr.filters.animated": 1, + "b.elem": 1, + "cw": 1, + "able": 1, + "f.fn.offset": 2, + "f.offset.setOffset": 2, + "b.ownerDocument.body": 2, + "f.offset.bodyOffset": 2, + "b.getBoundingClientRect": 1, + "e.documentElement": 4, + "c.top": 4, + "c.left": 4, + "e.body": 3, + "g.clientTop": 1, + "h.clientTop": 1, + "g.clientLeft": 1, + "h.clientLeft": 1, + "i.pageYOffset": 1, + "g.scrollTop": 1, + "h.scrollTop": 2, + "i.pageXOffset": 1, + "g.scrollLeft": 1, + "h.scrollLeft": 2, + "f.offset.initialize": 3, + "b.offsetParent": 2, + "g.documentElement": 1, + "g.body": 1, + "g.defaultView": 1, + "j.getComputedStyle": 2, + "b.currentStyle": 2, + "b.offsetTop": 2, + "b.offsetLeft": 2, + "f.offset.supportsFixedPosition": 2, + "k.position": 4, + "b.scrollTop": 1, + "b.scrollLeft": 1, + "f.offset.doesNotAddBorder": 1, + "f.offset.doesAddBorderForTableAndCells": 1, + "cw.test": 1, + "c.borderTopWidth": 2, + "c.borderLeftWidth": 2, + "f.offset.subtractsBorderForOverflowNotVisible": 1, + "c.overflow": 1, + "i.offsetTop": 1, + "i.offsetLeft": 1, + "i.scrollTop": 1, + "i.scrollLeft": 1, + "f.offset": 1, + "b.style": 1, + "d.nextSibling.firstChild.firstChild": 1, + "this.doesNotAddBorder": 1, + "e.offsetTop": 4, + "this.doesAddBorderForTableAndCells": 1, + "h.offsetTop": 1, + "e.style.position": 2, + "e.style.top": 2, + "this.supportsFixedPosition": 1, + "d.style.overflow": 1, + "d.style.position": 1, + "this.subtractsBorderForOverflowNotVisible": 1, + "this.doesNotIncludeMarginInBodyOffset": 1, + "a.offsetTop": 2, + "bodyOffset": 1, + "a.offsetLeft": 1, + "f.offset.doesNotIncludeMarginInBodyOffset": 1, + "setOffset": 1, + "a.style.position": 1, + "e.offset": 1, + "e.position": 1, + "l.top": 1, + "l.left": 1, + "b.top": 2, + "k.top": 1, + "g.top": 1, + "b.left": 2, + "k.left": 1, + "g.left": 1, + "b.using.call": 1, + "e.css": 1, + "this.offsetParent": 2, + "cx.test": 2, + "b.offset": 1, + "d.top": 2, + "d.left": 2, + "offsetParent": 1, + "a.offsetParent": 1, + "g.document.documentElement": 1, + "g.document.body": 1, + "g.scrollTo": 1, + ".scrollLeft": 1, + ".scrollTop": 1, + "e.document.documentElement": 1, + "e.document.compatMode": 1, + "e.document.body": 1, + "this.css": 1, + "cubes": 4, + "math": 4, + "num": 23, + "opposite": 6, + "race": 4, + "square": 10, + "__slice": 2, + "Math.sqrt": 2, + "cube": 2, + "runners": 6, + "winner": 6, + "__slice.call": 2, + "print": 2, + "elvis": 4, + "_i": 10, + "_len": 6, + "_results": 6, + "_results.push": 2, + "math.cube": 2, + "console.log": 3, "KEYWORDS": 2, "array_to_hash": 11, "RESERVED_WORDS": 2, "KEYWORDS_BEFORE_EXPRESSION": 2, "KEYWORDS_ATOM": 2, "OPERATOR_CHARS": 1, + "characters": 6, "RE_HEX_NUMBER": 1, "RE_OCT_NUMBER": 1, "RE_DEC_NUMBER": 1, @@ -33433,6 +33016,7 @@ "//XXX": 1, "out": 1, "means": 1, + "than": 3, "is_alphanumeric_char": 3, "is_unicode_combining_mark": 2, "UNICODE.non_spacing_mark.test": 1, @@ -33503,6 +33087,7 @@ "read_while": 2, "pred": 2, "parse_error": 3, + "err": 5, "read_num": 1, "prefix": 6, "has_e": 3, @@ -33513,6 +33098,7 @@ "read_escaped_char": 1, "hex_bytes": 3, "digit": 3, + "<<": 4, "read_string": 1, "with_eof_error": 1, "comment1": 1, @@ -33542,11 +33128,13 @@ "<\",>": 1, "<=\",>": 1, "debugger": 2, + "outside": 2, "const": 2, "stat": 1, "Label": 1, "without": 1, "statement": 1, + "inside": 3, "defun": 1, "Name": 1, "Missing": 1, @@ -33582,7 +33170,716 @@ "exports.OPERATORS": 1, "exports.is_alphanumeric_char": 1, "exports.set_logger": 1, - "logger": 2 + "logger": 2, + "rdigit": 1, + "readyList.resolveWith": 1, + "jQuery._Deferred": 3, + "breaking": 1, + "Promise": 1, + "promiseMethods": 3, + "Static": 1, + "sliceDeferred": 1, + "Create": 1, + "doing": 3, + "flag": 1, + "cancelled": 5, + "f1": 1, + "f2": 1, + "...": 1, + "_fired": 5, + "deferred.done.apply": 2, + "callbacks.push": 1, + "deferred.resolveWith": 5, + "given": 3, + "available": 1, + "#8421": 1, + "callbacks.shift": 1, + "Has": 1, + "resolved": 1, + "Cancel": 1, + "Full": 1, + "fledged": 1, + "two": 1, + "func": 3, + "failDeferred": 1, + "errorDeferred": 1, + "doneCallbacks": 2, + "failCallbacks": 2, + "deferred.done": 2, + ".fail": 2, + ".fail.apply": 1, + "failDeferred.done": 1, + "failDeferred.resolveWith": 1, + "failDeferred.resolve": 1, + "failDeferred.isResolved": 1, + "fnDone": 2, + "fnFail": 2, + "jQuery.Deferred": 1, + "newDefer": 3, + "action": 3, + "returned": 4, + "fn.apply": 1, + "returned.promise": 2, + "newDefer.resolve": 1, + "newDefer.reject": 1, + "provided": 1, + "aspect": 1, + "added": 1, + "promiseMethods.length": 1, + "failDeferred.cancel": 1, + "deferred.cancel": 2, + "Unexpose": 1, + "Call": 1, + "func.call": 1, + "helper": 1, + "firstParam": 6, + "count": 4, + "<=>": 1, + "resolveFunc": 2, + "sliceDeferred.call": 2, + "Strange": 1, + "FF4": 1, + "Values": 1, + "onto": 2, + "sometimes": 1, + ".when": 1, + "Cloning": 2, + "into": 2, + "fresh": 1, + "solves": 1, + "issue": 1, + "deferred.reject": 1, + "deferred.promise": 1, + "jQuery.support": 1, + "bodyStyle": 1, + "Preliminary": 1, + "div.setAttribute": 1, + "automatically": 2, + "inserted": 1, + "insert": 1, + "tables": 1, + "serialized": 3, + "correctly": 1, + "innerHTML": 1, + "This": 3, + "requires": 1, + "wrapper": 1, + "URLs": 1, + "opt.selected": 1, + "setAttribute": 1, + "class.": 1, + "works": 1, + "attrFixes": 1, + "get/setAttribute": 1, + "ie6/7": 1, + "div.className": 1, + "later": 1, + "properly": 2, + "cloned": 1, + "input.checked": 1, + "support.noCloneChecked": 1, + "input.cloneNode": 1, + "selects": 1, + "Internet": 1, + "Explorer": 1, + "div.test": 1, + "support.deleteExpando": 1, + "div.addEventListener": 1, + "div.attachEvent": 2, + "div.fireEvent": 1, + "shouldn": 2, + "GC": 2, + "references": 1, + "across": 1, + "boundary": 1, + "attached": 1, + "occur": 1, + "defining": 1, + "allows": 1, + "shortcut": 1, + "same": 1, + "path": 5, + "Avoid": 1, + "trying": 1, + "since": 1, + "ends": 1, + "jQuery.uuid": 1, + "TODO": 2, + "hack": 2, + "ONLY.": 2, + "Avoids": 2, + "exposing": 2, + "metadata": 2, + "plain": 2, + "jQuery.noop": 2, + "An": 1, + "key/value": 1, + "pair": 1, + "shallow": 1, + "copied": 1, + "existing": 1, + "Internal": 1, + "separate": 1, + "destroy": 1, + "had": 1, + "thing": 2, + "internalCache": 3, + "Browsers": 1, + "deletion": 1, + "refuse": 1, + "browsers": 2, + "faster": 1, + "iterating": 1, + "persist": 1, + "existed": 1, + "jQuery.isNaN": 1, + "Normalize": 1, + "jQuery.attrFix": 2, + "formHook": 3, + "forms": 1, + "rinvalidChar.test": 1, + "jQuery.support.getSetAttribute": 1, + "elem.removeAttributeNode": 1, + "elem.getAttributeNode": 1, + "bubbling": 1, + "live.": 2, + "hasDuplicate": 1, + "baseHasDuplicate": 2, + "rBackslash": 1, + "rNonWord": 1, + "Sizzle": 1, + "results": 4, + "seed": 1, + "origContext": 1, + "context.nodeType": 2, + "checkSet": 1, + "extra": 1, + "pop": 1, + "prune": 1, + "contextXML": 1, + "Sizzle.isXML": 1, + "soFar": 1, + "Reset": 1, + "util": 1, + "require": 9, + "net": 1, + "stream": 1, + "EventEmitter": 3, + ".EventEmitter": 1, + "FreeList": 2, + ".FreeList": 1, + "HTTPParser": 2, + "process.binding": 1, + ".HTTPParser": 1, + "assert": 8, + ".ok": 1, + "END_OF_FILE": 3, + "debug": 15, + "process.env.NODE_DEBUG": 2, + "/http/.test": 1, + "console.error": 3, + "parserOnHeaders": 2, + "this.maxHeaderPairs": 2, + "this._headers.length": 1, + "this._headers": 13, + "this._headers.concat": 1, + "this._url": 1, + "parserOnHeadersComplete": 2, + "parser": 27, + "info.headers": 1, + "info.url": 1, + "parser._headers": 6, + "parser._url": 4, + "parser.incoming": 9, + "IncomingMessage": 4, + "parser.socket": 4, + "parser.incoming.httpVersionMajor": 1, + "info.versionMajor": 2, + "parser.incoming.httpVersionMinor": 1, + "info.versionMinor": 2, + "parser.incoming.httpVersion": 1, + "parser.incoming.url": 1, + "headers.length": 2, + "parser.maxHeaderPairs": 4, + "parser.incoming._addHeaderLine": 2, + "info.method": 2, + "parser.incoming.method": 1, + "parser.incoming.statusCode": 2, + "info.statusCode": 1, + "parser.incoming.upgrade": 4, + "info.upgrade": 2, + "skipBody": 3, + "response": 3, + "CONNECT": 1, + "parser.onIncoming": 3, + "info.shouldKeepAlive": 1, + "parserOnBody": 2, + "b.slice": 1, + "parser.incoming._paused": 2, + "parser.incoming._pendings.length": 2, + "parser.incoming._pendings.push": 2, + "parser.incoming._emitData": 1, + "parserOnMessageComplete": 2, + "parser.incoming.complete": 2, + "parser.incoming.readable": 1, + "parser.incoming._emitEnd": 1, + "parser.socket.readable": 1, + "parser.socket.resume": 1, + "parsers": 2, + "HTTPParser.REQUEST": 2, + "parser.onHeaders": 1, + "parser.onHeadersComplete": 1, + "parser.onBody": 1, + "parser.onMessageComplete": 1, + "exports.parsers": 1, + "CRLF": 13, + "STATUS_CODES": 2, + "exports.STATUS_CODES": 1, + "RFC": 16, + "obsoleted": 1, + "connectionExpression": 1, + "/Connection/i": 1, + "transferEncodingExpression": 1, + "/Transfer": 1, + "Encoding/i": 1, + "closeExpression": 1, + "/close/i": 1, + "chunkExpression": 1, + "/chunk/i": 1, + "contentLengthExpression": 1, + "/Content": 1, + "Length/i": 1, + "dateExpression": 1, + "/Date/i": 1, + "expectExpression": 1, + "/Expect/i": 1, + "continueExpression": 1, + "continue/i": 1, + "dateCache": 5, + "utcDate": 2, + "d.toUTCString": 1, + "d.getMilliseconds": 1, + "socket": 26, + "stream.Stream.call": 2, + "this.socket": 10, + "this.connection": 8, + "this.httpVersion": 1, + "this.complete": 2, + "this.headers": 2, + "this.trailers": 2, + "this.readable": 1, + "this._paused": 3, + "this._pendings": 1, + "this._endEmitted": 3, + "this.url": 1, + "this.method": 2, + "this.statusCode": 3, + "this.client": 1, + "util.inherits": 7, + "stream.Stream": 2, + "exports.IncomingMessage": 1, + "IncomingMessage.prototype.destroy": 1, + "this.socket.destroy": 3, + "IncomingMessage.prototype.setEncoding": 1, + "StringDecoder": 2, + ".StringDecoder": 1, + "lazy": 1, + "this._decoder": 2, + "IncomingMessage.prototype.pause": 1, + "this.socket.pause": 1, + "IncomingMessage.prototype.resume": 1, + "this.socket.resume": 1, + "this._emitPending": 1, + "IncomingMessage.prototype._emitPending": 1, + "this._pendings.length": 1, + "process.nextTick": 1, + "self._paused": 1, + "self._pendings.length": 2, + "chunk": 14, + "self._pendings.shift": 1, + "Buffer.isBuffer": 2, + "self._emitData": 1, + "self.readable": 1, + "self._emitEnd": 1, + "IncomingMessage.prototype._emitData": 1, + "this._decoder.write": 1, + "string.length": 1, + "this.emit": 5, + "IncomingMessage.prototype._emitEnd": 1, + "IncomingMessage.prototype._addHeaderLine": 1, + "field": 36, + "dest": 12, + "field.toLowerCase": 1, + ".push": 3, + "field.slice": 1, + "OutgoingMessage": 5, + "this.output": 3, + "this.outputEncodings": 2, + "this.writable": 1, + "this._last": 3, + "this.chunkedEncoding": 6, + "this.shouldKeepAlive": 4, + "this.useChunkedEncodingByDefault": 4, + "this.sendDate": 3, + "this._hasBody": 6, + "this._trailer": 5, + "this.finished": 4, + "exports.OutgoingMessage": 1, + "OutgoingMessage.prototype.destroy": 1, + "OutgoingMessage.prototype._send": 1, + "this._headerSent": 5, + "this._header": 10, + "this.output.unshift": 1, + "this.outputEncodings.unshift": 1, + "this._writeRaw": 2, + "OutgoingMessage.prototype._writeRaw": 1, + "data.length": 3, + "this.connection._httpMessage": 3, + "this.connection.writable": 3, + "this.output.length": 5, + "this._buffer": 2, + "this.output.shift": 2, + "this.outputEncodings.shift": 2, + "this.connection.write": 4, + "OutgoingMessage.prototype._buffer": 1, + "this.output.push": 2, + "this.outputEncodings.push": 2, + "lastEncoding": 2, + "lastData": 2, + "data.constructor": 1, + "lastData.constructor": 1, + "OutgoingMessage.prototype._storeHeader": 1, + "firstLine": 2, + "sentConnectionHeader": 3, + "sentContentLengthHeader": 4, + "sentTransferEncodingHeader": 3, + "sentDateHeader": 3, + "sentExpect": 3, + "messageHeader": 7, + "store": 3, + "connectionExpression.test": 1, + "closeExpression.test": 1, + "self._last": 4, + "self.shouldKeepAlive": 4, + "transferEncodingExpression.test": 1, + "chunkExpression.test": 1, + "self.chunkedEncoding": 1, + "contentLengthExpression.test": 1, + "dateExpression.test": 1, + "expectExpression.test": 1, + "Object.keys": 5, + "keys.length": 5, + "value.length": 1, + "shouldSendKeepAlive": 2, + "this.agent": 2, + "this._send": 8, + "OutgoingMessage.prototype.setHeader": 1, + "this._headerNames": 5, + "OutgoingMessage.prototype.getHeader": 1, + "OutgoingMessage.prototype.removeHeader": 1, + "OutgoingMessage.prototype._renderHeaders": 1, + "OutgoingMessage.prototype.write": 1, + "this._implicitHeader": 2, + "chunk.length": 2, + "Buffer.byteLength": 2, + "len.toString": 2, + "OutgoingMessage.prototype.addTrailers": 1, + "OutgoingMessage.prototype.end": 1, + "hot": 3, + "this.write": 1, + "chunk.": 1, + "this._finish": 2, + "OutgoingMessage.prototype._finish": 1, + "ServerResponse": 5, + "DTRACE_HTTP_SERVER_RESPONSE": 1, + "ClientRequest": 6, + "DTRACE_HTTP_CLIENT_REQUEST": 1, + "OutgoingMessage.prototype._flush": 1, + "this.socket.writable": 2, + "XXX": 1, + "Necessary": 1, + "this.socket.write": 1, + "req": 32, + "OutgoingMessage.call": 2, + "req.method": 5, + "req.httpVersionMajor": 2, + "req.httpVersionMinor": 2, + "exports.ServerResponse": 1, + "ServerResponse.prototype.statusCode": 1, + "onServerResponseClose": 3, + "this._httpMessage.emit": 2, + "ServerResponse.prototype.assignSocket": 1, + "socket._httpMessage": 9, + "socket.on": 2, + "this._flush": 1, + "ServerResponse.prototype.detachSocket": 1, + "socket.removeListener": 5, + "ServerResponse.prototype.writeContinue": 1, + "this._sent100": 2, + "ServerResponse.prototype._implicitHeader": 1, + "this.writeHead": 1, + "ServerResponse.prototype.writeHead": 1, + "statusCode": 7, + "reasonPhrase": 4, + "headerIndex": 4, + "this._renderHeaders": 3, + "obj.length": 1, + "obj.push": 1, + "statusLine": 2, + "statusCode.toString": 1, + "this._expect_continue": 1, + "this._storeHeader": 2, + "ServerResponse.prototype.writeHeader": 1, + "this.writeHead.apply": 1, + "Agent": 5, + "self.options": 2, + "self.requests": 6, + "self.sockets": 3, + "self.maxSockets": 1, + "self.options.maxSockets": 1, + "Agent.defaultMaxSockets": 2, + "self.on": 1, + "port": 29, + "localAddress": 15, + ".shift": 1, + ".onSocket": 1, + "socket.destroy": 10, + "self.createConnection": 2, + "net.createConnection": 3, + "exports.Agent": 1, + "Agent.prototype.defaultPort": 1, + "Agent.prototype.addRequest": 1, + "this.sockets": 9, + "this.maxSockets": 1, + "req.onSocket": 1, + "this.createSocket": 2, + "this.requests": 5, + "Agent.prototype.createSocket": 1, + "util._extend": 1, + "options.port": 4, + "options.host": 4, + "options.localAddress": 3, + "onFree": 3, + "self.emit": 9, + "s.on": 4, + "onClose": 3, + "self.removeSocket": 2, + "onRemove": 3, + "s.removeListener": 3, + "Agent.prototype.removeSocket": 1, + ".emit": 1, + "globalAgent": 3, + "exports.globalAgent": 1, + "self.agent": 3, + "options.agent": 3, + "defaultPort": 3, + "options.defaultPort": 1, + "options.hostname": 1, + "options.setHost": 1, + "setHost": 2, + "self.socketPath": 4, + "options.socketPath": 1, + "self.method": 3, + "options.method": 2, + "self.path": 3, + "options.path": 2, + "self.once": 2, + "options.headers": 7, + "self.setHeader": 1, + "this.getHeader": 2, + "hostHeader": 3, + "this.setHeader": 2, + "options.auth": 2, + "//basic": 1, + "auth": 1, + "Buffer": 1, + "self.useChunkedEncodingByDefault": 2, + "self._storeHeader": 2, + "self.getHeader": 1, + "self._renderHeaders": 1, + "options.createConnection": 4, + "self.onSocket": 3, + "self.agent.addRequest": 1, + "conn": 3, + "self._deferToConnect": 1, + "self._flush": 1, + "exports.ClientRequest": 1, + "ClientRequest.prototype._implicitHeader": 1, + "this.path": 1, + "ClientRequest.prototype.abort": 1, + "this._deferToConnect": 3, + "createHangUpError": 3, + "error.code": 1, + "freeParser": 9, + "parser.socket.onend": 1, + "parser.socket.ondata": 1, + "parser.socket.parser": 1, + "parsers.free": 1, + "req.parser": 1, + "socketCloseListener": 2, + "socket.parser": 3, + "req.emit": 8, + "req.res": 8, + "req.res.readable": 1, + "req.res.emit": 1, + "res": 14, + "req.res._emitPending": 1, + "res._emitEnd": 1, + "res.emit": 1, + "req._hadError": 3, + "parser.finish": 6, + "socketErrorListener": 2, + "err.message": 1, + "err.stack": 1, + "socketOnEnd": 1, + "this._httpMessage": 3, + "this.parser": 2, + "socketOnData": 1, + "parser.execute": 2, + "bytesParsed": 4, + "socket.ondata": 3, + "socket.onend": 3, + "bodyHead": 4, + "d.slice": 2, + "req.listeners": 1, + "req.upgradeOrConnect": 1, + "socket.emit": 1, + "parserOnIncomingClient": 1, + "shouldKeepAlive": 4, + "res.upgrade": 1, + "isHeadResponse": 2, + "res.statusCode": 1, + "Clear": 1, + "upgraded": 1, + "WebSockets": 1, + "AGENT": 2, + "socket.destroySoon": 2, + "keep": 1, + "alive": 1, + "close": 2, + "free": 1, + "important": 1, + "promisy": 1, + "onSocket": 3, + "self.socket.writable": 1, + "self.socket": 5, + "arguments_": 2, + "self.socket.once": 1, + "ClientRequest.prototype.setTimeout": 1, + "msecs": 4, + "this.once": 2, + "emitTimeout": 4, + "this.socket.setTimeout": 1, + "this.socket.once": 1, + "this.setTimeout": 3, + "sock": 1, + "ClientRequest.prototype.setNoDelay": 1, + "ClientRequest.prototype.setSocketKeepAlive": 1, + "ClientRequest.prototype.clearTimeout": 1, + "exports.request": 2, + "url.parse": 1, + "options.protocol": 3, + "exports.get": 1, + "req.end": 1, + "ondrain": 3, + "httpSocketSetup": 2, + "Server": 6, + "requestListener": 6, + "net.Server.call": 1, + "allowHalfOpen": 1, + "this.addListener": 2, + "this.httpAllowHalfOpen": 1, + "connectionListener": 3, + "net.Server": 1, + "exports.Server": 1, + "exports.createServer": 1, + "outgoing": 2, + "incoming": 2, + "abortIncoming": 3, + "incoming.length": 2, + "incoming.shift": 2, + "serverSocketCloseListener": 3, + "socket.setTimeout": 1, + "minute": 1, + "socket.once": 1, + "parsers.alloc": 1, + "parser.reinitialize": 1, + "this.maxHeadersCount": 2, + "socket.addListener": 2, + "self.listeners": 2, + "req.socket": 1, + "self.httpAllowHalfOpen": 1, + "socket.writable": 2, + "socket.end": 2, + "outgoing.length": 2, + "._last": 1, + "socket._httpMessage._last": 1, + "incoming.push": 1, + "res.shouldKeepAlive": 1, + "DTRACE_HTTP_SERVER_REQUEST": 1, + "outgoing.push": 1, + "res.assignSocket": 1, + "res.on": 1, + "res.detachSocket": 1, + "res._last": 1, + "outgoing.shift": 1, + "m.assignSocket": 1, + "req.headers": 2, + "continueExpression.test": 1, + "res._expect_continue": 1, + "res.writeContinue": 1, + "response.": 1, + "exports._connectionListener": 1, + "Client": 6, + "this.host": 1, + "this.port": 1, + "maxSockets": 1, + "Client.prototype.request": 1, + "self.host": 1, + "self.port": 1, + "c.on": 2, + "exports.Client": 1, + "module.deprecate": 2, + "exports.createClient": 1, + "SHEBANG#!node": 2, + "http.createServer": 1, + "res.writeHead": 1, + "res.end": 1, + ".listen": 1, + "window.angular": 1, + "Animal.name": 1, + "_super": 4, + "Snake.name": 1, + "Horse.name": 1, + "jshint": 1, + "Modal": 2, + "this.": 2, + ".proxy": 1, + "this.hide": 1, + "Modal.prototype": 1, + "this.isShown": 3, + ".Event": 1, + "element.trigger": 1, + ".addClass": 1, + "escape.call": 1, + "backdrop.call": 1, + "transition": 1, + ".support.transition": 1, + "that.": 3, + "element.hasClass": 1, + "element.parent": 1, + "element.appendTo": 1, + "//don": 1, + "shown": 2, + "modal": 4, + "fade": 4, + "keyup.dismiss.modal": 2, + "click.modal.data": 1, + "api": 1, + ".extend": 1, + "target.data": 1, + "e.preventDefault": 1, + "target.modal": 1 }, "Julia": { "##": 5, @@ -33783,9 +34080,9 @@ "(": 217, "c": 4, ")": 231, - "Duncan": 4, - "McGreggor": 4, - "": 2, + "-": 98, + "Robert": 3, + "Virding": 3, "Licensed": 3, "under": 9, "the": 36, @@ -33811,7 +34108,6 @@ "at": 4, "http": 4, "//www.apache.org/licenses/LICENSE": 3, - "-": 98, "Unless": 3, "required": 3, "by": 4, @@ -33846,65 +34142,168 @@ "and": 7, "limitations": 3, "File": 4, - "church.lfe": 1, + "mnesia_demo.lfe": 1, "Author": 3, "Purpose": 3, - "Demonstrating": 2, - "church": 20, - "numerals": 1, - "from": 2, - "lambda": 18, - "calculus": 1, - "The": 4, - "code": 2, - "below": 3, - "was": 1, - "used": 1, - "create": 4, - "section": 1, - "user": 1, - "guide": 1, - "here": 1, - "//lfe.github.io/user": 1, - "guide/recursion/5.html": 1, - "Here": 1, - "some": 2, - "example": 2, - "usage": 1, - "slurp": 2, - "five/0": 2, - "int2": 1, - "get": 21, - "defmodule": 2, - "export": 2, - "all": 1, - "defun": 20, - "zero": 2, - "s": 19, - "x": 12, - "one": 1, - "funcall": 23, - "two": 1, - "three": 1, - "four": 1, - "five": 1, - "int": 2, - "successor": 3, - "n": 4, - "+": 2, - "int1": 1, - "numeral": 8, - "#": 3, - "successor/1": 1, - "count": 7, - "limit": 4, - "cond": 1, - "/": 1, - "integer": 2, - "*": 6, - "Mode": 1, + "A": 1, + "simple": 4, + "Mnesia": 2, + "demo": 2, + "LFE.": 1, + "This": 2, + "contains": 1, + "using": 1, "LFE": 4, + "access": 1, + "tables.": 1, + "It": 1, + "shows": 2, + "how": 2, + "emp": 1, + "XXXX": 1, + "macro": 1, + "ETS": 1, + "match": 5, + "pattern": 1, + "together": 1, + "mnesia": 8, + "match_object": 1, + "specifications": 1, + "select": 1, + "Query": 2, + "List": 2, + "Comprehensions.": 1, + "defmodule": 2, + "mnesia_demo": 1, + "export": 2, + "new": 2, + "by_place": 1, + "by_place_ms": 1, + "by_place_qlc": 2, + "defrecord": 1, + "person": 8, + "name": 8, + "place": 7, + "job": 3, + "defun": 20, + "Start": 1, + "create": 4, + "table": 2, + "we": 1, + "will": 1, + "get": 21, + "memory": 1, + "only": 1, + "schema.": 1, + "start": 1, + "create_table": 1, + "#": 3, + "attributes": 1, + "Initialise": 1, + "table.": 1, + "let": 6, + "people": 1, + "spec": 1, + "[": 3, + "n": 4, + "p": 2, + "j": 2, + "]": 3, + "when": 1, + "tuple": 1, + "transaction": 2, + "f": 3, + "Use": 1, + "Comprehensions": 1, + "records": 1, + "lambda": 18, + "q": 2, + "qlc": 2, + "lc": 1, + "<": 1, + "e": 1, + "Duncan": 4, + "McGreggor": 4, + "": 2, + "object.lfe": 1, + "Demonstrating": 2, + "OOP": 1, + "closures": 1, + "The": 4, + "object": 16, + "system": 1, + "demonstrated": 1, + "below": 3, + "do": 2, + "following": 2, + "*": 6, + "objects": 2, + "call": 2, + "methods": 5, + "those": 1, + "have": 3, + "which": 1, + "can": 1, + "other": 1, + "update": 1, + "state": 4, + "instance": 2, + "variable": 2, + "Note": 1, + "however": 1, + "that": 1, + "his": 1, + "example": 2, + "does": 1, + "demonstrate": 1, + "inheritance.": 1, + "To": 1, + "code": 2, + "cd": 1, + "examples": 1, + "../bin/lfe": 1, + "pa": 1, + "../ebin": 1, + "Load": 1, + "fish": 6, + "class": 3, + "slurp": 2, + "#Fun": 1, + "": 1, + "Execute": 1, + "some": 2, + "basic": 1, + "species": 7, + "mommy": 3, + "move": 4, + "Carp": 1, + "swam": 1, + "feet": 1, + "ok": 1, + "id": 9, + "Now": 1, + "s": 19, + "strictly": 1, + "necessary.": 1, + "When": 1, + "isn": 1, + "list": 13, + "children": 10, + "formatted": 1, + "verb": 2, + "self": 6, + "distance": 2, + "count": 7, + "erlang": 1, + "length": 1, + "method": 7, + "funcall": 23, + "define": 1, + "info": 1, + "reproduce": 1, + "Mode": 1, "Code": 1, + "from": 2, "Paradigms": 1, "Artificial": 1, "Intelligence": 1, @@ -33919,30 +34318,21 @@ "Problem": 1, "Solver": 1, "Converted": 1, - "Robert": 3, - "Virding": 3, "Define": 1, "macros": 1, "global": 2, - "variable": 2, "access.": 1, - "This": 2, "hack": 1, "very": 1, "naughty": 1, "defsyntax": 2, "defvar": 2, - "[": 3, - "name": 8, "val": 2, - "]": 3, - "let": 6, "v": 3, "put": 1, "getvar": 3, "solved": 1, "gps": 1, - "state": 4, "goals": 2, "Set": 1, "variables": 1, @@ -33951,7 +34341,6 @@ "*ops*": 1, "*state*": 5, "current": 1, - "list": 13, "conditions.": 1, "if": 1, "every": 1, @@ -33977,394 +34366,51 @@ "make": 2, "communication": 2, "telephone": 1, - "have": 3, "phone": 1, "book": 1, "give": 1, "money": 3, "has": 1, - "mnesia_demo.lfe": 1, - "A": 1, - "simple": 4, - "Mnesia": 2, - "demo": 2, - "LFE.": 1, - "contains": 1, - "using": 1, - "access": 1, - "tables.": 1, - "It": 1, - "shows": 2, - "how": 2, - "emp": 1, - "XXXX": 1, - "macro": 1, - "ETS": 1, - "match": 5, - "pattern": 1, - "together": 1, - "mnesia": 8, - "match_object": 1, - "specifications": 1, - "select": 1, - "Query": 2, - "List": 2, - "Comprehensions.": 1, - "mnesia_demo": 1, - "new": 2, - "by_place": 1, - "by_place_ms": 1, - "by_place_qlc": 2, - "defrecord": 1, - "person": 8, - "place": 7, - "job": 3, - "Start": 1, - "table": 2, - "we": 1, - "will": 1, - "memory": 1, - "only": 1, - "schema.": 1, - "start": 1, - "create_table": 1, - "attributes": 1, - "Initialise": 1, - "table.": 1, - "people": 1, - "spec": 1, - "p": 2, - "j": 2, - "when": 1, - "tuple": 1, - "transaction": 2, - "f": 3, - "Use": 1, - "Comprehensions": 1, - "records": 1, - "q": 2, - "qlc": 2, - "lc": 1, - "<": 1, - "e": 1, - "object.lfe": 1, - "OOP": 1, - "closures": 1, - "object": 16, - "system": 1, - "demonstrated": 1, - "do": 2, - "following": 2, - "objects": 2, - "call": 2, - "methods": 5, - "those": 1, - "which": 1, - "can": 1, - "other": 1, - "update": 1, - "instance": 2, - "Note": 1, - "however": 1, - "that": 1, - "his": 1, - "does": 1, - "demonstrate": 1, - "inheritance.": 1, - "To": 1, - "cd": 1, - "examples": 1, - "../bin/lfe": 1, - "pa": 1, - "../ebin": 1, - "Load": 1, - "fish": 6, - "class": 3, - "#Fun": 1, - "": 1, - "Execute": 1, - "basic": 1, - "species": 7, - "mommy": 3, - "move": 4, - "Carp": 1, - "swam": 1, - "feet": 1, - "ok": 1, - "id": 9, - "Now": 1, - "strictly": 1, - "necessary.": 1, - "When": 1, - "isn": 1, - "children": 10, - "formatted": 1, - "verb": 2, - "self": 6, - "distance": 2, - "erlang": 1, - "length": 1, - "method": 7, - "define": 1, - "info": 1, - "reproduce": 1 + "church.lfe": 1, + "church": 20, + "numerals": 1, + "calculus": 1, + "was": 1, + "used": 1, + "section": 1, + "user": 1, + "guide": 1, + "here": 1, + "//lfe.github.io/user": 1, + "guide/recursion/5.html": 1, + "Here": 1, + "usage": 1, + "five/0": 2, + "int2": 1, + "all": 1, + "zero": 2, + "x": 12, + "one": 1, + "two": 1, + "three": 1, + "four": 1, + "five": 1, + "int": 2, + "successor": 3, + "+": 2, + "int1": 1, + "numeral": 8, + "successor/1": 1, + "limit": 4, + "cond": 1, + "/": 1, + "integer": 2 }, "Lasso": { - "<": 7, - "LassoScript": 1, - "//": 169, - "JSON": 2, - "Encoding": 1, - "and": 52, - "Decoding": 1, - "Copyright": 1, - "-": 2248, - "LassoSoft": 1, - "Inc.": 1, - "": 1, - "": 1, - "": 1, - "This": 5, - "tag": 11, - "is": 35, - "now": 23, - "incorporated": 1, - "in": 46, - "Lasso": 15, - "If": 4, - "(": 640, - "Lasso_TagExists": 1, - ")": 639, - "False": 1, - ";": 573, - "Define_Tag": 1, - "Namespace": 1, - "Required": 1, - "Optional": 1, - "Local": 7, - "Map": 3, - "r": 8, - "n": 30, - "t": 8, - "f": 2, - "b": 2, - "output": 30, - "newoptions": 1, - "options": 2, - "array": 20, - "set": 10, - "list": 4, - "queue": 2, - "priorityqueue": 2, - "stack": 2, - "pair": 1, - "map": 23, "[": 22, "]": 23, - "literal": 3, - "string": 59, - "integer": 30, - "decimal": 5, - "boolean": 4, - "null": 26, - "date": 23, - "temp": 12, - "object": 7, - "{": 18, - "}": 18, - "client_ip": 1, - "client_address": 1, - "__jsonclass__": 6, - "deserialize": 2, - "": 3, - "": 3, - "Decode_JSON": 2, - "Decode_": 1, - "value": 14, - "consume_string": 1, - "ibytes": 9, - "unescapes": 1, - "u": 1, - "UTF": 4, - "%": 14, - "QT": 4, - "TZ": 2, - "T": 3, - "consume_token": 1, - "obytes": 3, - "delimit": 7, - "true": 12, - "false": 8, - ".": 5, - "consume_array": 1, - "consume_object": 1, - "key": 3, - "val": 1, - "native": 2, - "comment": 2, - "http": 6, - "//www.lassosoft.com/json": 1, - "start": 5, - "Literal": 2, - "String": 1, - "Object": 2, - "JSON_RPCCall": 1, - "RPCCall": 1, - "JSON_": 1, - "method": 7, - "params": 11, - "id": 7, - "host": 6, - "//localhost/lassoapps.8/rpc/rpc.lasso": 1, - "request": 2, - "result": 6, - "JSON_Records": 3, - "KeyField": 1, - "ReturnField": 1, - "ExcludeField": 1, - "Fields": 1, - "_fields": 1, - "fields": 2, - "No": 1, - "found": 5, - "for": 65, - "_keyfield": 4, - "keyfield": 4, - "ID": 1, - "_index": 1, - "_return": 1, - "returnfield": 1, - "_exclude": 1, - "excludefield": 1, - "_records": 1, - "_record": 1, - "_temp": 1, - "_field": 1, - "_output": 1, - "error_msg": 15, - "error_code": 11, - "found_count": 11, - "rows": 1, - "#_records": 1, - "Return": 7, - "@#_output": 1, - "/Define_Tag": 1, - "/If": 3, - "define": 20, - "trait_json_serialize": 2, - "trait": 1, - "require": 1, - "asString": 3, - "json_serialize": 18, - "e": 13, - "bytes": 8, - "+": 146, - "#e": 13, - "Replace": 19, - "&": 21, - "json_literal": 1, - "asstring": 4, - "format": 7, - "gmt": 1, - "|": 13, - "trait_forEach": 1, - "local": 116, - "foreach": 1, - "#output": 50, - "#delimit": 7, - "#1": 3, - "return": 75, - "with": 25, - "pr": 1, - "eachPair": 1, - "select": 1, - "#pr": 2, - "first": 12, - "second": 8, - "join": 5, - "json_object": 2, - "foreachpair": 1, - "any": 14, - "serialize": 1, - "json_consume_string": 3, - "while": 9, - "#temp": 19, - "#ibytes": 17, - "export8bits": 6, - "#obytes": 5, - "import8bits": 4, - "Escape": 1, - "/while": 7, - "unescape": 1, - "//Replace": 1, - "if": 76, - "BeginsWith": 1, - "&&": 30, - "EndsWith": 1, - "Protect": 1, - "serialization_reader": 1, - "xml": 1, - "read": 1, - "/Protect": 1, - "else": 32, - "size": 24, - "or": 6, - "regexp": 1, - "d": 2, - "Z": 1, - "matches": 1, - "Format": 1, - "yyyyMMdd": 2, - "HHmmssZ": 1, - "HHmmss": 1, - "/if": 53, - "json_consume_token": 2, - "marker": 4, - "Is": 1, - "also": 5, - "end": 2, - "of": 24, - "token": 1, - "//............................................................................": 2, - "string_IsNumeric": 1, - "json_consume_array": 3, - "While": 1, - "Discard": 1, - "whitespace": 3, - "Else": 7, - "insert": 18, - "#key": 12, - "json_consume_object": 2, - "Loop_Abort": 1, - "/While": 1, - "Find": 3, - "isa": 25, - "First": 4, - "find": 57, - "Second": 1, - "json_deserialize": 1, - "removeLeading": 1, - "bom_utf8": 1, - "Reset": 1, - "on": 1, - "provided": 1, - "**/": 1, - "type": 63, - "parent": 5, - "public": 1, - "onCreate": 1, - "...": 3, - "..onCreate": 1, - "#rest": 1, - "json_rpccall": 1, - "#id": 2, - "#host": 4, - "Lasso_UniqueID": 1, - "Include_URL": 1, - "PostParams": 1, - "Encode_JSON": 1, - "#method": 1, - "#params": 5, + "//": 169, + "-": 2248, "": 6, "2009": 14, "09": 10, @@ -34372,7 +34418,10 @@ "JS": 126, "Added": 40, "content_body": 14, + "tag": 11, + "for": 65, "compatibility": 4, + "with": 25, "pre": 4, "8": 6, "5": 4, @@ -34381,13 +34430,16 @@ "timestamp": 4, "to": 98, "knop_cachestore": 4, + "and": 52, "maxage": 2, "parameter": 8, "knop_cachefetch": 4, "Corrected": 8, "construction": 2, + "of": 24, "cache_name": 2, "internally": 2, + "in": 46, "the": 86, "knop_cache": 2, "tags": 14, @@ -34407,6 +34459,7 @@ "be": 38, "able": 14, "transparently": 2, + "or": 6, "without": 4, "L": 2, "Debug": 2, @@ -34416,7 +34469,10 @@ "28": 2, "Cache": 2, "name": 32, + "is": 35, + "now": 23, "used": 12, + "also": 5, "when": 10, "using": 8, "session": 4, @@ -34430,10 +34486,14 @@ "condition": 4, "returning": 2, "normal": 2, + "found_count": 11, "For": 2, + "Lasso": 15, + "if": 76, "lasso_tagexists": 4, "define_tag": 48, "namespace=": 12, + "return": 75, "__html_reply__": 4, "define_type": 14, "debug": 2, @@ -34443,8 +34503,15 @@ "description=": 2, "priority=": 2, "required=": 2, + "local": 116, + "output": 30, + "string": 59, "input": 2, "split": 2, + "(": 640, + ")": 639, + "first": 12, + ";": 573, "@#output": 2, "/define_tag": 36, "description": 34, @@ -34453,12 +34520,17 @@ "Johan": 2, "S": 2, "lve": 2, + "integer": 30, "#charlist": 6, + "size": 24, + "start": 5, "current": 10, + "date": 23, "time": 8, "a": 52, "mixed": 2, "up": 4, + "format": 7, "as": 26, "seed": 6, "#seed": 36, @@ -34466,9 +34538,14 @@ "this": 14, "base": 6, "conversion": 4, + "while": 9, + "#output": 50, "get": 12, + "%": 14, "#base": 8, + "+": 146, "/": 6, + "/while": 7, "over": 2, "new": 14, "chunk": 2, @@ -34480,17 +34557,22 @@ "response_localpath": 8, "removetrailing": 8, "response_filepath": 8, + "http": 6, "//tagswap.net/found_rows": 2, "action_statement": 2, "string_findregexp": 8, "#sql": 42, + "find": 57, "ignorecase": 12, "||": 8, + "<": 7, "maxrecords_value": 2, "inaccurate": 2, "must": 4, "accurate": 2, + "/if": 53, "Default": 2, + "method": 7, "usually": 2, "fastest.": 2, "Can": 2, @@ -34498,7 +34580,9 @@ "GROUP": 4, "BY": 6, "example.": 2, + "First": 4, "normalize": 4, + "whitespace": 3, "around": 2, "FROM": 2, "expression": 6, @@ -34518,6 +34602,7 @@ "can": 14, "simple": 2, "later": 2, + "else": 32, "query": 4, "contains": 2, "use": 10, @@ -34527,6 +34612,7 @@ "slower": 2, "see": 16, "//bugs.mysql.com/bug.php": 2, + "id": 7, "removeleading": 2, "inline": 4, "sql": 2, @@ -34539,6 +34625,7 @@ "optional": 36, "local_defined": 26, "knop_seed": 2, + "Local": 7, "#RandChars": 4, "Get": 2, "Math_Random": 2, @@ -34546,7 +34633,9 @@ "Max": 2, "Size": 2, "#value": 14, + "join": 5, "#numericValue": 4, + "&&": 30, "length": 8, "#cryptvalue": 10, "#anyChar": 2, @@ -34560,7 +34649,9 @@ "self": 72, "_date_msec": 4, "/define_type": 4, + "type": 63, "seconds": 4, + "map": 23, "default": 4, "store": 4, "all": 6, @@ -34571,8 +34662,10 @@ "keys": 6, "var": 38, "#item": 10, + "isa": 25, "#type": 26, "#data": 14, + "insert": 18, "/iterate": 12, "//fail_if": 6, "session_id": 6, @@ -34580,6 +34673,7 @@ "session_addvar": 4, "#cache_name": 72, "duration": 4, + "second": 8, "#expires": 4, "server_name": 6, "initiate": 10, @@ -34598,6 +34692,7 @@ "cache": 4, "unlock": 6, "writeunlock": 4, + "null": 26, "#maxage": 4, "cached": 8, "data": 12, @@ -34606,6 +34701,9 @@ "reading": 2, "readlock": 2, "readunlock": 2, + "value": 14, + "true": 12, + "false": 8, "ignored": 2, "//##################################################################": 4, "knoptype": 2, @@ -34615,6 +34713,8 @@ "types": 10, "should": 4, "have": 6, + "parent": 5, + "This": 5, "identify": 2, "registered": 2, "knop": 6, @@ -34643,6 +34743,7 @@ "adjustments": 4, "9": 2, "Changed": 6, + "error_msg": 15, "error": 22, "numbers": 2, "added": 10, @@ -34661,8 +34762,10 @@ "error_lang": 2, "provide": 2, "knop_lang": 8, + "object": 7, "add": 12, "localized": 2, + "any": 14, "except": 2, "knop_base": 8, "html": 4, @@ -34672,6 +34775,7 @@ "formatted": 2, "output.": 2, "Centralized": 2, + "error_code": 11, "knop_base.": 2, "Moved": 6, "codes": 2, @@ -34680,6 +34784,7 @@ "It": 2, "always": 2, "an": 8, + "list": 4, "parameter.": 2, "trace": 2, "tagtime": 4, @@ -34698,6 +34803,7 @@ "exists": 2, "buffer.": 2, "The": 6, + "result": 6, "performance.": 2, "internal": 2, "html.": 2, @@ -34722,6 +34828,7 @@ "handler": 2, "explicitly": 2, "*/": 2, + "array": 20, "entire": 4, "ms": 2, "defined": 4, @@ -34730,13 +34837,18 @@ "avoid": 2, "recursion": 2, "properties": 4, + "params": 11, + "|": 13, "#endslash": 10, "#tags": 2, "#t": 2, "doesn": 4, + "t": 8, "p": 2, + "n": 30, "Parameters": 4, "nParameters": 2, + "r": 8, "Internal.": 2, "Finds": 2, "out": 2, @@ -34746,7 +34858,9 @@ "array.": 2, "variable.": 2, "Looking": 2, + "#params": 5, "#xhtmlparam": 4, + "boolean": 4, "plain": 2, "#doctype": 4, "copy": 4, @@ -34766,11 +34880,13 @@ "#custom_language": 10, "once": 4, "one": 2, + "key": 3, "#custom_string": 4, "#errorcodes": 4, "#error_code": 10, "message": 6, "getstring": 2, + "literal": 3, "test": 2, "known": 2, "lasso": 2, @@ -34799,6 +34915,7 @@ "10": 2, "SP": 4, "Fix": 2, + "decimal": 5, "precision": 2, "bug": 2, "6": 2, @@ -34808,6 +34925,7 @@ "15": 2, "Add": 2, "support": 6, + "host": 6, "Thanks": 2, "Ric": 2, "Lewis": 2, @@ -34881,6 +34999,7 @@ "paren...": 2, "corresponding": 2, "resultset": 2, + "...": 3, "/resultset": 2, "through": 2, "handling": 2, @@ -34900,6 +35019,8 @@ "recordpointer": 2, "called": 2, "until": 2, + "found": 5, + "set": 10, "reached.": 2, "Returns": 2, "long": 2, @@ -34911,6 +35032,7 @@ "example": 2, "below": 2, "Implemented": 2, + ".": 5, "reset": 2, "query.": 2, "shortcut": 2, @@ -34932,6 +35054,7 @@ "SQL": 2, "includes": 2, "relevant": 2, + "keyfield": 4, "lockfield": 2, "locking": 4, "capturesearchvars": 2, @@ -34971,7 +35094,181 @@ "proper": 2, "searchresult": 2, "separate": 2, - "COUNT": 2 + "COUNT": 2, + "define": 20, + "trait_json_serialize": 2, + "trait": 1, + "{": 18, + "require": 1, + "asString": 3, + "}": 18, + "json_serialize": 18, + "e": 13, + "bytes": 8, + "#e": 13, + "Replace": 19, + "&": 21, + "json_literal": 1, + "asstring": 4, + "gmt": 1, + "trait_forEach": 1, + "delimit": 7, + "foreach": 1, + "#delimit": 7, + "#1": 3, + "pr": 1, + "eachPair": 1, + "select": 1, + "#pr": 2, + "json_object": 2, + "foreachpair": 1, + "serialize": 1, + "json_consume_string": 3, + "ibytes": 9, + "obytes": 3, + "temp": 12, + "#temp": 19, + "#ibytes": 17, + "export8bits": 6, + "#obytes": 5, + "import8bits": 4, + "Escape": 1, + "unescape": 1, + "//Replace": 1, + "BeginsWith": 1, + "EndsWith": 1, + "Protect": 1, + "serialization_reader": 1, + "xml": 1, + "read": 1, + "/Protect": 1, + "regexp": 1, + "d": 2, + "T": 3, + "Z": 1, + "matches": 1, + "Format": 1, + "yyyyMMdd": 2, + "HHmmssZ": 1, + "HHmmss": 1, + "json_consume_token": 2, + "marker": 4, + "Is": 1, + "end": 2, + "token": 1, + "//............................................................................": 2, + "string_IsNumeric": 1, + "json_consume_array": 3, + "While": 1, + "If": 4, + "Discard": 1, + "Else": 7, + "#key": 12, + "json_consume_object": 2, + "Loop_Abort": 1, + "/If": 3, + "/While": 1, + "Find": 3, + "Return": 7, + "Second": 1, + "json_deserialize": 1, + "removeLeading": 1, + "bom_utf8": 1, + "Reset": 1, + "on": 1, + "provided": 1, + "**/": 1, + "public": 1, + "onCreate": 1, + "..onCreate": 1, + "#rest": 1, + "json_rpccall": 1, + "#id": 2, + "#host": 4, + "Lasso_UniqueID": 1, + "Decode_JSON": 2, + "Include_URL": 1, + "PostParams": 1, + "Encode_JSON": 1, + "Map": 3, + "#method": 1, + "LassoScript": 1, + "JSON": 2, + "Encoding": 1, + "Decoding": 1, + "Copyright": 1, + "LassoSoft": 1, + "Inc.": 1, + "": 1, + "": 1, + "": 1, + "incorporated": 1, + "Lasso_TagExists": 1, + "False": 1, + "Define_Tag": 1, + "Namespace": 1, + "Required": 1, + "Optional": 1, + "f": 2, + "b": 2, + "newoptions": 1, + "options": 2, + "queue": 2, + "priorityqueue": 2, + "stack": 2, + "pair": 1, + "client_ip": 1, + "client_address": 1, + "__jsonclass__": 6, + "deserialize": 2, + "": 3, + "": 3, + "Decode_": 1, + "consume_string": 1, + "unescapes": 1, + "u": 1, + "UTF": 4, + "QT": 4, + "TZ": 2, + "consume_token": 1, + "consume_array": 1, + "consume_object": 1, + "val": 1, + "native": 2, + "comment": 2, + "//www.lassosoft.com/json": 1, + "Literal": 2, + "String": 1, + "Object": 2, + "JSON_RPCCall": 1, + "RPCCall": 1, + "JSON_": 1, + "//localhost/lassoapps.8/rpc/rpc.lasso": 1, + "request": 2, + "JSON_Records": 3, + "KeyField": 1, + "ReturnField": 1, + "ExcludeField": 1, + "Fields": 1, + "_fields": 1, + "fields": 2, + "No": 1, + "_keyfield": 4, + "ID": 1, + "_index": 1, + "_return": 1, + "returnfield": 1, + "_exclude": 1, + "excludefield": 1, + "_records": 1, + "_record": 1, + "_temp": 1, + "_field": 1, + "_output": 1, + "rows": 1, + "#_records": 1, + "@#_output": 1, + "/Define_Tag": 1 }, "Latte": { "{": 54, @@ -35769,7 +36066,60 @@ "end_object.": 1 }, "Lua": { + "local": 11, + "FileListParser": 5, + "pd.Class": 3, + "new": 3, + "(": 56, + ")": 56, + "register": 3, + "function": 16, + "initialize": 3, + "sel": 3, + "atoms": 3, "-": 60, + "Base": 1, + "filename": 2, + "File": 2, + "extension": 2, + "Number": 4, + "of": 9, + "files": 1, + "in": 7, + "batch": 2, + "self.inlets": 3, + "To": 3, + "[": 17, + "list": 1, + "trim": 1, + "]": 17, + "binfile": 3, + "vidya": 1, + "file": 8, + "modder": 1, + "s": 5, + "mechanisms": 1, + "self.outlets": 3, + "self.extension": 3, + "the": 7, + "last": 1, + "self.batchlimit": 3, + "return": 3, + "true": 3, + "end": 26, + "in_1_symbol": 1, + "for": 9, + "i": 10, + "do": 8, + "self": 10, + "outlet": 10, + "{": 16, + "}": 16, + "..": 7, + "in_2_list": 1, + "d": 9, + "in_3_float": 1, + "f": 12, "A": 1, "simple": 1, "counting": 1, @@ -35795,64 +36145,11 @@ "number": 3, "second": 1, "inlet.": 1, - "local": 11, "HelloCounter": 4, - "pd.Class": 3, - "new": 3, - "(": 56, - ")": 56, - "register": 3, - "function": 16, - "initialize": 3, - "sel": 3, - "atoms": 3, - "self.inlets": 3, - "self.outlets": 3, "self.num": 5, - "return": 3, - "true": 3, - "end": 26, "in_1_bang": 2, - "self": 10, - "outlet": 10, - "{": 16, - "}": 16, "+": 3, "in_2_float": 2, - "f": 12, - "FileListParser": 5, - "Base": 1, - "filename": 2, - "File": 2, - "extension": 2, - "Number": 4, - "of": 9, - "files": 1, - "in": 7, - "batch": 2, - "To": 3, - "[": 17, - "list": 1, - "trim": 1, - "]": 17, - "binfile": 3, - "vidya": 1, - "file": 8, - "modder": 1, - "s": 5, - "mechanisms": 1, - "self.extension": 3, - "the": 7, - "last": 1, - "self.batchlimit": 3, - "in_1_symbol": 1, - "for": 9, - "i": 10, - "do": 8, - "..": 7, - "in_2_list": 1, - "d": 9, - "in_3_float": 1, "FileModder": 10, "Object": 1, "triggering": 1, @@ -35947,45 +36244,17 @@ "in_8_list": 1 }, "M": { - "%": 207, - "zewdAPI": 52, ";": 1309, - "Enterprise": 5, - "Web": 5, - "Developer": 5, - "run": 2, - "-": 1605, - "time": 9, - "functions": 4, - "and": 59, - "user": 27, - "APIs": 1, - "Product": 2, - "(": 2144, - "Build": 6, - ")": 2152, - "Date": 2, - "Fri": 1, - "Nov": 1, - "|": 171, - "for": 77, "GT.M": 30, - "m_apache": 3, + "Digest": 2, + "Extension": 9, "Copyright": 12, - "c": 113, - "M/Gateway": 4, - "Developments": 4, - "Ltd": 4, - "Reigate": 4, - "Surrey": 4, - "UK.": 4, - "All": 4, - "rights": 4, - "reserved.": 4, - "http": 13, - "//www.mgateway.com": 4, - "Email": 4, - "rtweed@mgateway.com": 4, + "(": 2144, + "C": 9, + ")": 2152, + "Piotr": 7, + "Koper": 7, + "": 7, "This": 26, "program": 19, "is": 88, @@ -36043,6 +36312,7 @@ "PARTICULAR": 11, "PURPOSE.": 11, "See": 15, + "for": 77, "more": 13, "details.": 12, "You": 13, @@ -36060,356 +36330,298 @@ "see": 26, "": 11, ".": 815, - "QUIT": 251, - "_": 127, - "getVersion": 1, - "zewdCompiler": 6, - "date": 1, - "getDate": 1, - "compilePage": 2, - "app": 13, - "page": 12, - "mode": 12, - "technology": 9, - "outputPath": 4, - "multilingual": 4, - "maxLines": 4, - "d": 381, - "g": 228, - "compileAll": 2, - "templatePageName": 2, - "autoTranslate": 2, - "language": 6, - "verbose": 2, - "zewdMgr": 1, - "startSession": 2, - "requestArray": 2, - "serverArray": 1, - "sessionArray": 5, - "filesArray": 1, - "zewdPHP": 8, - ".requestArray": 2, - ".serverArray": 1, - ".sessionArray": 3, - ".filesArray": 1, - "closeSession": 2, - "saveSession": 2, - "endOfPage": 2, - "prePageScript": 2, - "sessid": 146, - "releaseLock": 2, - "tokeniseURL": 2, - "url": 2, - "zewdCompiler16": 5, - "getSessid": 1, - "token": 21, - "i": 465, - "isTokenExpired": 2, - "p": 84, - "zewdSession": 39, - "initialiseSession": 1, - "k": 122, - "deleteSession": 2, - "changeApp": 1, - "appName": 4, - "setSessionValue": 6, - "setRedirect": 1, - "toPage": 1, - "e": 210, - "n": 197, - "path": 4, - "s": 775, - "getRootURL": 1, - "l": 84, - "zewd": 17, - "trace": 24, - "_sessid_": 3, - "_token_": 1, - "_nextPage": 1, - "zcvt": 11, - "nextPage": 1, - "isNextPageTokenValid": 2, - "zewdCompiler13": 10, - "isCSP": 1, - "normaliseTextValue": 1, - "text": 6, - "replaceAll": 11, - "writeLine": 2, - "line": 14, - "CacheTempBuffer": 2, - "j": 67, - "increment": 11, - "w": 127, - "displayOptions": 2, - "fieldName": 5, - "listName": 6, - "escape": 7, - "codeValue": 7, - "name": 121, - "nnvp": 1, - "nvp": 1, - "pos": 33, - "textValue": 6, + "trademark": 2, + "Fidelity": 2, + "Information": 2, + "Services": 2, + "Inc.": 2, + "-": 1605, + "http": 13, + "//sourceforge.net/projects/fis": 2, + "gtm/": 2, + "simple": 2, + "OpenSSL": 3, + "based": 1, + "digest": 19, + "extension": 3, + "rewrite": 1, + "EVP_DigestInit": 1, + "usage": 3, + "example": 5, + "additional": 5, + "M": 24, + "wrapper.": 1, + "//www.openssl.org/docs/crypto/EVP_DigestInit.html": 1, + "The": 11, + "return": 7, "value": 72, - "getSessionValue": 3, - "tr": 13, - "+": 189, - "f": 93, - "o": 51, - "q": 244, - "codeValueEsc": 7, - "textValueEsc": 7, - "htmlOutputEncode": 2, - "zewdAPI2": 5, - "_codeValueEsc_": 1, - "selected": 4, - "translationMode": 1, - "_appName": 1, - "typex": 1, - "type": 2, - "avoid": 1, - "Cache": 3, - "bug": 2, - "getPhraseIndex": 1, - "zewdCompiler5": 1, - "licensed": 1, - "setWarning": 2, - "isTemp": 11, - "setWLDSymbol": 1, - "Duplicate": 1, - "performance": 1, - "also": 4, - "wldAppName": 1, - "wldName": 1, - "wldSessid": 1, - "zzname": 1, - "zv": 6, - "[": 54, - "extcErr": 1, - "mess": 3, - "namespace": 1, - "zt": 20, - "valueErr": 1, - "exportCustomTags": 2, - "tagList": 1, - "filepath": 10, - ".tagList": 1, - "exportAllCustomTags": 2, - "importCustomTags": 2, - "filePath": 2, - "zewdForm": 1, - "stripSpaces": 6, - "np": 17, - "obj": 6, - "prop": 6, - "setSessionObject": 3, - "allowJSONAccess": 1, - "sessionName": 30, - "access": 21, - "disallowJSONAccess": 1, - "JSONAccess": 1, - "existsInSession": 2, - "existsInSessionArray": 2, - "p1": 5, - "p2": 10, - "p3": 3, - "p4": 2, - "p5": 2, - "p6": 2, - "p7": 2, - "p8": 2, - "p9": 2, - "p10": 2, - "p11": 2, - "clearSessionArray": 1, - "arrayName": 35, - "setSessionArray": 1, - "itemName": 16, - "itemValue": 7, - "getSessionArray": 1, - "array": 22, - "clearArray": 2, - "set": 98, - "m": 37, - "getSessionArrayErr": 1, - "Come": 1, - "here": 4, - "if": 44, - "error": 62, - "occurred": 2, - "addToSession": 2, - "@name": 4, - "mergeToSession": 1, - "mergeGlobalToSession": 2, - "globalName": 7, - "mergeGlobalFromSession": 2, - "mergeArrayToSession": 1, - "mergeArrayToSessionObject": 2, - ".array": 1, - "mergeArrayFromSession": 1, - "mergeFromSession": 1, - "deleteFromSession": 1, - "deleteFromSessionObject": 1, - "sessionNameExists": 1, - "getSessionArrayValue": 2, - "subscript": 7, - "exists": 6, - ".exists": 1, - "sessionArrayValueExists": 2, - "deleteSessionArrayValue": 2, - "Objects": 1, - "objectName": 13, - "propertyName": 3, - "propertyValue": 5, - "comma": 3, - "x": 96, - "replace": 27, - "objectName_": 2, - "_propertyName": 2, - "_propertyName_": 2, - "_propertyValue_": 1, - "_p": 1, - "quoted": 1, - "string": 50, - "FromStr": 6, - "S": 99, - "ToStr": 4, - "InText": 4, - "old": 3, - "new": 15, - "ok": 14, - "removeDocument": 1, - "zewdDOM": 3, - "instanceName": 2, - "clearXMLIndex": 1, - "zewdSchemaForm": 1, - "closeDOM": 1, - "makeTokenString": 1, - "length": 7, - "token_": 1, - "r": 88, - "makeString": 3, - "char": 9, - "len": 8, - "create": 6, - "characters": 8, - "str": 15, - "convertDateToSeconds": 1, - "hdate": 7, - "Q": 58, - "hdate*86400": 1, - "convertSecondsToDate": 1, - "secs": 2, - "secs#86400": 1, - "getTokenExpiry": 2, - "h*86400": 1, - "h": 39, - "randChar": 1, - "R": 2, - "lowerCase": 2, - "stripLeadingSpaces": 2, - "stripTrailingSpaces": 2, - "d1": 7, - "zd": 1, - "yy": 19, - "dd": 4, - "I": 43, - "<10>": 1, - "dd=": 2, - "mm=": 3, - "1": 74, - "d1=": 1, - "2": 14, - "p1=": 1, - "mm": 7, - "p2=": 1, - "yy=": 1, - "3": 6, - "dd_": 1, - "mm_": 1, - "inetTime": 1, - "Decode": 1, - "Internet": 1, - "Format": 1, - "Time": 1, "from": 16, - "H": 1, - "format": 2, - "Offset": 1, - "relative": 1, - "to": 74, - "GMT": 1, - "eg": 3, - "hh": 4, - "ss": 4, - "<": 20, - "_hh": 1, - "time#3600": 1, - "_mm": 1, - "time#60": 1, - "_ss": 2, - "hh_": 1, - "_mm_": 1, - "openNewFile": 2, - "openFile": 2, - "openDOM": 2, "&": 28, - "#39": 1, - "<\",\"<\")>": 1, - "string=": 1, - "gt": 1, - "amp": 1, - "HTML": 1, - "quot": 2, - "stop": 20, - "no": 54, - "no2": 1, - "p1_c_p2": 1, - "getIP": 2, - "Get": 2, - "own": 2, - "IP": 1, - "address": 1, - "ajaxErrorRedirect": 2, - "classExport": 2, - "className": 2, - "methods": 2, - ".methods": 1, - "strx": 2, - "disableEwdMgr": 1, - "enableEwdMgr": 1, - "enableWLDAccess": 1, - "disableWLDAccess": 1, - "isSSOValid": 2, - "sso": 2, - "username": 8, - "password": 8, - "zewdMgrAjax2": 1, - "uniqueId": 1, - "nodeOID": 2, - "filename": 2, - "linkToParentSession": 2, - "zewdCompiler20": 1, - "exportToGTM": 1, - "routine": 6, + "digest.init": 3, + "usually": 1, + "when": 11, + "an": 14, + "invalid": 4, + "algorithm": 1, + "was": 5, + "specification.": 1, + "Anyway": 1, + "properly": 1, + "used": 6, + "never": 4, + "fail.": 1, + "Please": 2, + "feel": 2, + "to": 74, + "contact": 2, + "me": 2, + "if": 44, + "questions": 2, + "comments": 5, + "m": 37, + "returns": 7, + "ASCII": 2, + "HEX": 1, + "all": 8, + "one": 5, + "n": 197, + "c": 113, + "d": 381, + "s": 775, + "digest.update": 2, + ".c": 2, + ".m": 11, + "digest.final": 2, + ".d": 1, + "q": 244, + "init": 6, + "alg": 3, + "context": 1, + "handler": 9, + "try": 1, + "etc": 1, + "returned": 1, + "error": 62, + "occurs": 1, + "e.g.": 2, + "unknown": 1, + "update": 1, + "ctx": 4, + "msg": 6, + "updates": 1, + "message": 8, + ".ctx": 2, + ".msg": 1, + "final": 1, + "hex": 1, + "encoded": 8, + "frees": 1, + "memory": 1, + "allocated": 1, + "also": 4, + ".digest": 1, + "algorithms": 1, + "availability": 1, + "depends": 1, + "on": 17, + "libcrypto": 1, + "configuration": 1, + "md4": 1, + "md5": 2, + "sha": 1, + "sha1": 1, + "sha224": 1, + "sha256": 1, + "sha512": 1, + "dss1": 1, + "ripemd160": 1, + "code": 29, + "examples": 4, + "contrasting": 1, + "postconditionals": 1, + "IF": 9, + "commands": 1, + "post1": 1, + "postconditional": 3, + "set": 98, + "command": 11, + "b": 64, + "I": 43, + "purposely": 4, + "TEST": 16, + "false": 5, + "write": 59, + "<": 20, + "quit": 30, + "post2": 1, + "": 3, + "variable": 8, + "a=": 3, + "smaller": 3, + "than": 4, + "b=": 4, + "special": 2, + "after": 3, + "post": 1, + "condition": 1, + "if1": 2, + "if2": 2, + "start": 26, + "exercise": 1, + "car": 14, + "@": 8, + "part": 3, + "Keith": 1, + "Lynch": 1, + "p#f": 1, + "w": 127, + "p": 84, + "x": 96, + "+": 189, + "*8": 2, + "ZDIOUT1": 1, + "Experimental": 1, + "FileMan": 1, + "file": 10, + "output": 49, + "host": 2, + "Open": 1, + "Source": 1, + "Electronic": 1, + "Health": 1, + "Record": 1, + "Agent": 1, + "Licensed": 1, + "Apache": 1, + "Version": 1, + "may": 3, + "use": 5, + "except": 1, + "compliance": 1, + "License.": 2, + "obtain": 2, + "//www.apache.org/licenses/LICENSE": 1, + "Unless": 1, + "required": 4, + "applicable": 1, + "law": 1, + "agreed": 1, + "writing": 4, + "BASIS": 1, + "WARRANTIES": 1, + "OR": 2, + "CONDITIONS": 1, + "OF": 2, + "KIND": 1, + "express": 1, + "implied.": 1, + "specific": 3, + "language": 6, + "governing": 1, + "permissions": 2, + "and": 59, + "limitations": 1, + "N": 19, + "W": 4, + "D": 64, + "ASKFILE": 1, + "Q": 58, + "FILE": 5, + "[": 54, + "ASKDIR": 1, + "DIR": 3, + "SAVEFILE": 2, + "Save": 1, + "given": 1, + "directory": 1, + "CHECK": 1, + "FGR": 4, + "_FILE": 1, + "S": 99, + "IO": 4, + "DIR_": 1, + "P": 68, + "E": 12, + "L": 1, + "_": 127, + "FILENAME": 1, + "O": 24, + "U": 14, + "_IO_": 1, + "_P_": 1, + "NM": 1, + "contains": 2, + "non": 1, + "printing": 1, + "characters": 8, + "then": 2, + "must": 8, + "escaped": 1, + "evaluation": 1, + "RHS": 1, + "SET.": 1, + "TODO": 1, + "Caller": 1, + "define": 2, + "indentation": 1, + "level": 5, + "comment": 4, + "first": 10, + "character": 5, + "tab": 1, + "space.": 1, + "V": 2, + "%": 207, "zewdDemo": 1, "Tutorial": 1, + "page": 12, + "functions": 4, + "Product": 2, + "Enterprise": 5, + "Web": 5, + "Developer": 5, + "Build": 6, + "Date": 2, "Wed": 1, "Apr": 1, + "|": 171, + "m_apache": 3, + "M/Gateway": 4, + "Developments": 4, + "Ltd": 4, + "Reigate": 4, + "Surrey": 4, + "UK.": 4, + "All": 4, + "rights": 4, + "reserved.": 4, + "//www.mgateway.com": 4, + "Email": 4, + "rtweed@mgateway.com": 4, "getLanguage": 1, + "sessid": 146, "getRequestValue": 1, + "zewdAPI": 52, + "setSessionValue": 6, + "QUIT": 251, "login": 1, + "username": 8, + "password": 8, "getTextValue": 4, "getPasswordValue": 2, + "trace": 24, "_username_": 1, "_password": 1, + "i": 465, "logine": 1, - "message": 8, "textid": 1, "errorMessage": 1, "ewdDemo": 8, "clearList": 2, "appendToList": 4, + "user": 27, + "f": 93, + "o": 51, "addUsername": 1, "newUsername": 5, "newUsername_": 1, @@ -36419,6 +36631,7 @@ "getSelectValue": 3, "_user": 1, "getPassword": 1, + "g": 228, "setPassword": 1, "getObjDetails": 1, "data": 43, @@ -36434,51 +36647,359 @@ "createTextArea": 1, ".textarea": 1, "userType": 4, + "selected": 4, "setMultipleSelectValues": 1, ".selected": 1, "testField3": 3, ".value": 1, "testField2": 1, "field3": 1, - "must": 8, "null": 6, "dateTime": 1, - "start": 26, - "student": 14, - "zwrite": 1, - "write": 59, + "compute": 2, + "miles": 4, + "gallons": 4, + "miles/gallons": 1, + "computepesimist": 1, + "miles/": 1, + "computeoptimist": 1, + "/gallons": 1, + "PRCAAPR": 1, + "WASH": 1, + "ISC@ALTOONA": 1, + "PA/RGY": 1, + "PATIENT": 5, + "ACCOUNT": 1, + "PROFILE": 1, + "CONT": 1, + "/9/94": 1, + "AM": 1, + "Accounts": 1, + "Receivable": 1, + "**198": 1, + "**": 4, + "Mar": 1, + "Per": 1, + "VHA": 1, + "Directive": 1, + "routine": 6, + "modified.": 1, + "EN": 2, + "PRCATY": 2, + "NEW": 3, + "DIC": 6, + "X": 19, + "Y": 26, + "DEBT": 10, + "PRCADB": 5, + "DA": 4, + "PRCA": 14, + "COUNT": 2, + "OUT": 2, + "SEL": 1, + "BILL": 11, + "BAT": 8, + "TRAN": 5, + "DR": 4, + "DXS": 1, + "DTOUT": 2, + "DIROUT": 1, + "DIRUT": 1, + "DUOUT": 1, + "ASK": 3, + "DPTNOFZY": 2, + "DPTNOFZK": 2, + "K": 5, + "R": 2, + "DTIME": 1, + "G": 40, + "UPPER": 1, + "VALM1": 1, + "RCD": 1, + "DISV": 2, + "DUZ": 3, + "NAM": 1, + "RCFN01": 1, + "COMP": 2, + "EN1": 1, + "PRCAATR": 1, + "Y_": 3, + "PRCADB_": 1, + "HDR": 1, + "PRCAAPR1": 3, + "HDR2": 1, + "DIS": 1, + "STAT1": 2, + "F": 10, + "_PRCATY_": 1, + "COMP1": 2, + "RCY": 5, + "]": 15, + "COMP2": 2, + "STAT": 8, + "_STAT_": 1, + "TMP": 26, + "J": 38, + "_STAT": 1, + "Compile": 2, + "payments": 1, + "_TRAN": 1, + "zmwire": 53, + "M/Wire": 4, + "Protocol": 2, + "Systems": 1, + "eg": 3, + "Cache": 3, + "By": 1, + "default": 6, + "server": 1, + "runs": 2, + "port": 4, + "For": 3, + "systems": 3, + "invoked": 2, + "via": 2, + "xinetd": 2, + "Edit": 1, + "/etc/services": 1, + "add": 5, + "line": 14, + "mwire": 2, + "/tcp": 1, + "#": 1, + "Service": 1, + "Copy": 2, + "/etc/xinetd.d/mwire": 1, + "/usr/local/gtm/zmwire": 1, + "change": 6, + "its": 1, + "executable": 1, + "These": 2, + "files": 4, + "edited": 1, + "paths": 2, + "number": 5, + "Restart": 1, + "using": 4, + "sudo": 1, + "/etc/init.d/xinetd": 1, + "restart": 3, + "On": 1, + "installed": 1, + "MGWSI": 1, "order": 11, - "do": 15, - "quit": 30, - "file": 10, - "part": 3, - "DataBallet.": 4, - "C": 9, - "Laurent": 2, - "Parenteau": 2, - "": 2, - "DataBallet": 4, - "encode": 1, - "Return": 1, - "base64": 6, - "URL": 2, - "Filename": 1, - "safe": 3, - "alphabet": 2, - "RFC": 1, - "todrop": 2, - "Populate": 1, - "values": 4, - "on": 17, - "first": 10, - "use": 5, - "only.": 1, - "zextract": 3, - "zlength": 3, + "provide": 1, + "MD5": 6, + "hashing": 1, + "function": 6, + "passwords": 1, + "Alternatively": 1, + "substitute": 1, + "callout": 1, + "choice": 1, + "Daemon": 2, + "which": 4, + "running": 1, + "jobbed": 1, + "process": 3, + "job": 1, + "zmwireDaemon": 2, + "simply": 1, + "editing": 2, + "Stop": 1, + "RESJOB": 1, + "it.": 2, + "mwireVersion": 4, + "mwireDate": 2, + "July": 1, + "t": 12, + "_crlf": 22, + "build": 2, + "crlf": 6, + "response": 29, + "zewd": 17, + "_response_": 4, + "l": 84, + "_crlf_response_crlf": 4, + "zv": 6, + "authNeeded": 6, + "input": 41, + "cleardown": 2, + "zint": 1, + "j": 67, + "role": 3, + "loop": 7, + "e": 210, + "log": 1, + "halt": 3, + "auth": 2, + "k": 122, + "ignore": 12, + "pid": 36, + "monitor": 1, + "input_crlf": 1, + "lineNo": 19, + "zsy": 2, + "_pid_": 1, + "_pid": 1, + "monitoroutput": 1, + "logger": 17, + "initialise": 3, + "tot": 2, + "count": 18, + "mwireLogger": 3, + "increment": 11, + "info": 1, + "response_": 1, + "_count": 1, + "setpassword": 1, + "SETPASSWORD": 2, + "secret": 2, + "OK": 6, + "": 1, + "role=": 1, + "admin": 1, + "newrole": 4, + "getGloRef": 3, + "gloName": 1, + "gloRef": 15, + "nb": 2, + "subs": 8, + "len": 8, + "nsp": 1, + "subs_": 2, + "quot": 2, + "_data_": 3, + "subscripts": 8, + "_value_": 1, + "_error_": 1, + "ok": 14, + "kill": 3, + "xx": 16, + "yy": 19, + "No": 17, + "access": 21, + "allowed": 18, + "global": 26, + "method": 2, + "Missing": 5, + "JSON": 7, + "transaction": 6, + "document": 6, + "step": 8, + "setJSON": 4, + "json": 9, + "globalName": 7, + "GlobalName": 3, + "Global": 8, + "name": 121, + "setGlobal": 1, + "zmwire_null_value": 1, + "Invalid": 1, + "props": 1, + "arr": 2, + "getJSON": 2, + "incr": 1, + "incrbr": 1, + "class": 1, + "##": 2, + "decr": 1, + "decrby": 1, + "subscript": 7, + "direction": 1, + "{": 5, + "subscriptValue": 1, + "dataStatus": 1, + "dataValue": 1, + "}": 5, + "nextsubscript": 2, + "reverseorder": 1, + "query": 4, + "p2": 10, + "*2": 1, + "queryget": 1, + "xxyy": 2, + "zz": 2, + "numeric": 8, + "exists": 6, + "getallsubscripts": 1, + "*": 6, + "orderall": 1, + "": 3, + "note": 2, + "escaping": 1, + "world": 4, + "foo": 2, + "CacheTempEWD": 16, + "_gloRef": 1, + "zt": 20, + "@x": 4, + "i*2": 3, + "_crlf_": 1, + "j_": 1, + "params": 10, + "resp": 5, + "_crlf_resp_crlf": 2, + "_crlf_data_crlf": 2, + "mergeto": 1, + "dataLength": 4, + "key": 22, + "keyLength": 6, + "noOfRecs": 6, + "MERGETO": 1, + "myglobal": 1, + "*6": 1, + "hello": 1, + "": 2, + "length": 7, + "means": 2, + "no": 54, + "put": 1, + "top": 1, + "r": 88, + "N.N": 12, + "noOfRecs#2": 1, + "noOfRecs/2": 1, + "_i_": 5, + "gloRef1": 2, + "gloRef1_": 2, + "_gloRef1_key_": 1, + "sub": 2, + "literal": 2, + "true": 2, + "boolean": 2, + "valquot_value_valquot": 1, + "json_value_": 1, + "subscripts1": 2, + "dd": 4, + "subx": 3, + "subNo": 1, + "numsub": 1, + "json_": 2, + "removeControlChars": 2, + "zobj1": 1, + "buff": 10, + "parseJSONObject": 2, + ".buff": 2, + "subs2": 6, + "stop": 20, + "_name_": 1, + "subs2_": 2, + "value_c": 1, + "lc": 3, + "N.N1": 4, + "string": 50, + "newString": 4, + "newString_c": 1, + "utfConvert": 1, + "Unescape": 1, + "UTF": 17, + "buf": 4, + "c1": 4, + "buf_c1_": 1, + "tr": 13, "Comment": 1, - "comment": 4, "block": 1, - "comments": 5, "always": 2, "semicolon": 1, "next": 1, @@ -36488,43 +37009,29 @@ "whitespace": 2, "alone": 1, "valid": 2, - "**": 4, "Comments": 1, "graphic": 3, - "character": 5, "such": 1, "@#": 1, - "*": 6, - "{": 5, - "}": 5, - "]": 15, "/": 3, "space": 1, "considered": 1, "though": 1, - "t": 12, - "it.": 2, - "ASCII": 2, "whose": 1, - "numeric": 8, - "code": 29, "above": 3, "below": 1, "are": 14, "NOT": 2, - "allowed": 18, "routine.": 1, "multiple": 1, "semicolons": 1, "okay": 1, "has": 7, "tag": 2, - "after": 3, + "bug": 2, "does": 1, - "command": 11, "Tag1": 1, "Tags": 2, - "an": 14, "uppercase": 2, "lowercase": 1, "alphabetic": 2, @@ -36543,7 +37050,6 @@ "variables": 3, "close": 1, "ANOTHER": 1, - "X": 19, "Normally": 1, "subroutine": 1, "would": 2, @@ -36554,629 +37060,12 @@ "rule": 1, "END": 1, "implicit": 1, - "Digest": 2, - "Extension": 9, - "Piotr": 7, - "Koper": 7, - "": 7, - "trademark": 2, - "Fidelity": 2, - "Information": 2, - "Services": 2, - "Inc.": 2, - "//sourceforge.net/projects/fis": 2, - "gtm/": 2, - "simple": 2, - "OpenSSL": 3, - "based": 1, - "digest": 19, - "extension": 3, - "rewrite": 1, - "EVP_DigestInit": 1, - "usage": 3, - "example": 5, - "additional": 5, - "M": 24, - "wrapper.": 1, - "//www.openssl.org/docs/crypto/EVP_DigestInit.html": 1, - "The": 11, - "return": 7, - "digest.init": 3, - "usually": 1, - "when": 11, - "invalid": 4, - "algorithm": 1, - "was": 5, - "specification.": 1, - "Anyway": 1, - "properly": 1, - "used": 6, - "never": 4, - "fail.": 1, - "Please": 2, - "feel": 2, - "contact": 2, - "me": 2, - "questions": 2, - "returns": 7, - "HEX": 1, - "all": 8, - "one": 5, - "digest.update": 2, - ".c": 2, - ".m": 11, - "digest.final": 2, - ".d": 1, - "init": 6, - "alg": 3, - "context": 1, - "handler": 9, - "try": 1, - "etc": 1, - "returned": 1, - "occurs": 1, - "e.g.": 2, - "unknown": 1, - "update": 1, - "ctx": 4, - "msg": 6, - "updates": 1, - ".ctx": 2, - ".msg": 1, - "final": 1, - "hex": 1, - "encoded": 8, - "frees": 1, - "memory": 1, - "allocated": 1, - ".digest": 1, - "algorithms": 1, - "availability": 1, - "depends": 1, - "libcrypto": 1, - "configuration": 1, - "md4": 1, - "md5": 2, - "sha": 1, - "sha1": 1, - "sha224": 1, - "sha256": 1, - "sha512": 1, - "dss1": 1, - "ripemd160": 1, - "These": 2, - "two": 2, - "routines": 6, - "illustrate": 1, - "dynamic": 1, - "scope": 1, - "triangle1": 1, - "sum": 15, - "main2": 1, - "y": 33, - "triangle2": 1, - "compute": 2, - "Fibonacci": 1, - "b": 64, - "term": 10, - "start1": 2, - "entry": 5, - "start2": 1, - "function": 6, - "computes": 1, - "factorial": 3, - "f*n": 1, - "main": 1, - "GMRGPNB0": 1, - "CISC/JH/RM": 1, - "NARRATIVE": 1, - "BUILDER": 1, - "TEXT": 5, - "GENERATOR": 1, - "cont.": 1, - "/20/91": 1, - "Text": 1, - "Generator": 1, - "Jan": 1, - "ENTRY": 2, - "WITH": 1, - "GMRGA": 1, - "SET": 3, - "TO": 6, - "POINT": 1, - "AT": 1, - "WHICH": 1, - "WANT": 1, - "START": 1, - "BUILDING": 1, - "GMRGE0": 11, - "GMRGADD": 4, - "D": 64, - "GMR": 6, - "GMRGA0": 11, - "GMRGPDA": 9, - "GMRGCSW": 2, - "NOW": 1, - "DTC": 1, - "GMRGB0": 9, - "O": 24, - "GMRGST": 6, - "GMRGPDT": 2, - "STAT": 8, - "GMRGRUT0": 3, - "GMRGF0": 3, - "GMRGSTAT": 8, - "P": 68, - "_GMRGB0_": 2, - "GMRD": 6, - "GMRGSSW": 3, - "SNT": 1, - "GMRGPNB1": 1, - "GMRGNAR": 8, - "GMRGPAR_": 2, - "_GMRGSPC_": 3, - "_GMRGRM": 2, - "_GMRGE0": 1, - "STORETXT": 1, - "GMRGRUT1": 1, - "GMRGSPC": 3, - "F": 10, - "GMRGD0": 7, - "ALIST": 1, - "G": 40, - "TMP": 26, - "J": 38, - "GMRGPLVL": 6, - "GMRGA0_": 1, - "_GMRGD0_": 1, - "_GMRGSSW_": 1, - "_GMRGADD": 1, - "GMRGI0": 6, - "label1": 1, - "if1": 2, - "statement": 3, - "if2": 2, - "statements": 1, - "contrasted": 1, - "": 3, - "variable": 8, - "a=": 3, - "smaller": 3, - "than": 4, - "b=": 4, - "if3": 1, - "else": 7, - "clause": 2, - "if4": 1, - "bodies": 1, - "exercise": 1, - "car": 14, - "@": 8, - "MD5": 6, - "Implementation": 1, - "It": 2, - "works": 1, - "ZCHSET": 2, - "please": 1, - "don": 1, - "only": 9, - "joke.": 1, - "Serves": 1, - "well": 2, - "reverse": 1, - "engineering": 1, - "obtaining": 1, - "boolean": 2, - "integer": 1, - "addition": 1, - "modulo": 1, - "division.": 1, - "//en.wikipedia.org/wiki/MD5": 1, - "#64": 1, - "msg_": 1, - "_m_": 1, - "n64": 2, - "*8": 2, - "read": 2, - ".p": 1, - "..": 28, - "...": 6, - "*i": 3, - "#16": 3, - "xor": 4, - "rotate": 5, - "#4294967296": 6, - "n32h": 5, - "bit": 5, - "#2": 1, - "*2147483648": 2, - "a#2": 1, - "b#2": 1, - ".a": 1, - ".b": 1, - "rol": 1, - "a*": 1, - "**n": 1, - "c#4294967296": 1, - "*n": 1, - "n#256": 1, - "n#16": 2, - "MDB": 60, - "M/DB": 2, - "Mumps": 1, - "Emulation": 1, - "Amazon": 1, - "SimpleDB": 1, - "buildDate": 1, - "indexLength": 10, - "Note": 2, - "keyId": 108, - "been": 4, - "tested": 1, - "these": 1, - "called": 8, - "To": 2, - "Initialise": 2, - "service": 1, - "//192.168.1.xxx/mdb/test.mgwsi": 1, - "Action": 2, - "addUser": 2, - "userKeyId": 6, - "userSecretKey": 6, - "requestId": 17, - "boxUsage": 11, - "startTime": 21, - ".startTime": 5, - "MDBUAF": 2, - "end": 33, - ".boxUsage": 22, - "createDomain": 1, - "domainName": 38, - "dn": 4, - "dnx": 3, - "id": 33, - "noOfDomains": 12, - "MDBConfig": 1, - "getDomainId": 3, - "found": 7, - "namex": 8, - "buildItemNameIndex": 2, - "domainId": 53, - "itemId": 41, - "itemValuex": 3, - "countDomains": 2, - "key": 22, - "deleteDomain": 2, - "listDomains": 1, - "maxNoOfDomains": 2, - "nextToken": 7, - "domainList": 3, - "fullName": 3, - "decodeBase64": 1, - "encodeBase64": 1, - "itemExists": 1, - "getItemId": 2, - "getAttributeValueId": 3, - "attribId": 36, - "valuex": 13, - "putAttributes": 2, - "attributes": 32, - "valueId": 16, - "xvalue": 4, - "add": 5, - "Item": 1, - "Domain": 1, - "itemNamex": 4, - "parseJSON": 1, - "zmwire": 53, - "attributesJSON": 1, - ".attributes": 5, - "attribute": 14, - "getAttributeId": 2, - "domain": 1, - "Not": 1, - "same": 2, - "remove": 6, - "existing": 2, - "now": 1, - "name/value": 2, - "pair": 1, - "getAttributes": 2, - "suppressBoxUsage": 1, - "attrNo": 9, - "valueNo": 6, - "delete": 2, - "item": 2, - "associated": 1, - "queryIndex": 1, - "records": 2, - "specified": 4, - "pairs": 2, - "vno": 2, - "left": 5, - "completely": 3, - "references": 1, - "maxNoOfItems": 3, - "itemList": 12, - "session": 1, - "identifier": 1, - "stored": 1, - "queryExpression": 16, - "relink": 1, - "zewdGTMRuntime": 1, - "CGIEVAR": 1, - "cgi": 1, - "unescName": 5, - "urlDecode": 2, - "KEY": 36, - "response": 29, - "WebLink": 1, - "point": 2, - "action": 15, - "AWSAcessKeyId": 1, - "db": 9, - "hash": 1, - "itemsAndAttrs": 2, - "secretKey": 1, - "signatureMethod": 2, - "signatureVersion": 3, - "stringToSign": 2, - "rltKey": 2, - "_action_": 2, - "h_": 3, - "mdbKey": 2, - "errorResponse": 9, - "initialise": 3, - ".requestId": 7, - "createResponse": 4, - "installMDBM": 1, - "authenticate": 1, - "MDBSession": 1, - "createResponseStringToSign": 1, - "Security": 1, - "OK": 6, - "_db": 1, - "MDBAPI": 1, - "lineNo": 19, - "CacheTempEWD": 16, - "_db_": 1, - "db_": 1, - "_action": 1, - "resp": 5, - "metaData": 1, - "domainMetadata": 1, - ".metaData": 1, - "paramName": 8, - "paramValue": 5, - "_i_": 5, - "Query": 1, - "DomainName": 2, - "QueryExpression": 2, - "MaxNumberOfItems": 2, - "NextToken": 3, - "QueryWithAttributes": 1, - "AttributeName.": 2, - "Select": 2, - "SelectExpression": 1, - "entering": 1, - "runSelect.": 1, - "selectExpression": 3, - "finished": 1, - "runSelect": 3, - "count": 18, - "select": 3, - "where": 6, - "limit": 14, - "asc": 1, - "inValue": 6, - "expr": 18, - "rel": 2, - "itemStack": 3, - "between": 2, - "<=\">": 1, - "lastWord=": 7, - "inAttr=": 5, - "expr=": 10, - "thisWord=": 7, - "inAttr": 2, - "c=": 28, - "queryExpression=": 4, - "_queryExpression": 2, - "4": 5, - "isNull": 1, - "5": 1, - "8": 1, - "isNotNull": 1, - "9": 1, - "offset": 6, - "prevName": 1, - "np=": 1, - "diffNames": 6, - "_term": 3, - "expr_": 1, - "_orderBy": 1, - "runQuery": 2, - ".itemList": 4, - "escVals": 1, - "str_c": 2, - "_x_": 1, - "query": 4, - "orderBy": 1, - "_query": 1, - "parseSelect": 1, - ".domainName": 2, - ".queryExpression": 1, - ".orderBy": 1, - ".limit": 1, - "executeSelect": 1, - ".itemStack": 1, - "***": 2, - "listCopy": 3, - "N.N": 12, - "N.N1": 4, - "externalSelect": 2, - "json": 9, - "_keyId_": 1, - "_selectExpression": 1, - "spaces": 3, - "string_spaces": 1, - "test": 6, - "miles": 4, - "gallons": 4, - "miles/gallons": 1, - "computepesimist": 1, - "miles/": 1, - "computeoptimist": 1, - "/gallons": 1, - "Mumtris": 3, - "tetris": 1, - "game": 1, - "MUMPS": 1, - "fun.": 1, - "Resize": 1, - "terminal": 2, - "maximize": 1, - "PuTTY": 1, - "window": 1, - "restart": 3, - "so": 4, - "report": 1, - "true": 2, - "size": 3, - "mumtris.": 1, - "Try": 2, - "setting": 3, - "ansi": 2, - "compatible": 1, - "cursor": 1, - "positioning.": 1, - "NOTICE": 1, - "uses": 1, - "making": 1, - "delays": 1, - "lower": 1, - "s.": 1, - "That": 1, - "means": 2, - "CPU": 1, - "fall": 5, - "lock": 2, - "clear": 6, - "change": 6, - "preview": 3, - "over": 2, - "exit": 3, - "short": 1, - "circuit": 1, - "redraw": 3, - "timeout": 1, - "harddrop": 1, - "other": 1, - "ex": 5, - "hd": 3, - "*c": 1, - "<0&'d>": 1, - "i=": 14, - "st": 6, - "t10m": 1, - "0": 23, - "<0>": 2, - "q=": 6, - "d=": 1, - "zb": 2, - "right": 3, - "fl=": 1, - "gr=": 1, - "hl": 2, - "help": 2, - "drop": 2, - "hd=": 1, - "matrix": 2, - "stack": 8, - "draw": 3, - "ticks": 2, - "h=": 2, - "1000000000": 1, - "e=": 1, - "t10m=": 1, - "100": 2, - "n=": 1, - "ne=": 1, - "x=": 5, - "y=": 3, - "r=": 3, - "collision": 6, - "score": 5, - "k=": 1, - "j=": 4, - "<1))))>": 1, - "800": 1, - "200": 1, - "lv": 5, - "lc=": 1, - "10": 1, - "lc": 3, - "mt_": 2, - "cls": 6, - ".s": 5, - "dh/2": 6, - "dw/2": 6, - "*s": 4, - "u": 6, - "echo": 1, - "intro": 1, - "workaround": 1, - "ANSI": 1, - "driver": 1, - "NL": 1, - "some": 1, - "place": 9, - "clearscreen": 1, - "N": 19, - "h/2": 3, - "*w/2": 3, - "fill": 3, - "fl": 2, - "*x": 1, - "mx": 4, - "my": 5, - "step": 8, - "**lv*sb": 1, - "*lv": 1, - "sc": 3, - "ne": 2, - "gr": 1, - "w*3": 1, - "dev": 1, - "zsh": 1, - "dw": 1, - "dh": 1, - "elements": 3, - "elemId": 3, - "rotateVersions": 1, - "rotateVersion": 2, - "bottom": 1, - "coordinate": 1, - "____": 1, - "__": 2, - "||": 1, - "ax": 2, - "bx": 2, - "cx": 2, - "ay": 2, - "cy": 2, - "sumx": 3, - "sqrx": 3, - "sumxy": 5, - "x*x": 1, - "x*y": 1, "PCRE": 23, "tries": 1, "deliver": 1, "best": 2, "possible": 5, "interface": 1, - "world": 4, "providing": 1, "support": 3, "arrays": 1, @@ -37188,28 +37077,25 @@ "locales": 2, "exceptions": 1, "Perl5": 1, - "Global": 8, "Match.": 1, "pcreexamples.m": 2, "comprehensive": 1, - "examples": 4, "pcre": 59, + "routines": 6, "beginner": 1, - "level": 5, "tips": 1, "match": 41, "limits": 6, "exception": 12, "handling": 2, - "UTF": 17, "GT.M.": 1, + "Try": 2, "out": 2, "known": 2, "book": 1, "regular": 1, "expressions": 1, "//regex.info/": 1, - "For": 3, "information": 1, "//pcre.org/": 1, "Initial": 2, @@ -37226,6 +37112,7 @@ ".name": 1, ".erropt": 3, ".isstring": 1, + ".s": 5, ".n": 20, "ec": 10, "compile": 14, @@ -37240,11 +37127,13 @@ "pcre_maketables": 2, "cases": 1, "undefined": 1, + "called": 8, "environment": 7, "defined": 2, "LANG": 4, "LC_*": 1, - "output": 49, + "specified": 4, + "...": 6, "Debian": 2, "tip": 1, "dpkg": 1, @@ -37252,7 +37141,6 @@ "enable": 1, "system": 1, "wide": 1, - "number": 5, "internal": 3, "matching": 4, "calls": 1, @@ -37260,6 +37148,7 @@ "execution": 2, "manual": 2, "details": 5, + "limit": 14, "depth": 1, "recursion": 1, "calling": 2, @@ -37281,6 +37170,7 @@ "pcre.exec": 2, ".subject": 3, "zl": 7, + "<0>": 2, "ec=": 7, "ovector": 25, "element": 1, @@ -37305,41 +37195,51 @@ "JITSIZE": 1, "NAME": 3, "nametable": 4, + "1": 74, "index": 1, + "0": 23, "indexed": 4, "substring": 1, "begin": 18, + "end": 33, "begin=": 3, + "2": 14, "end=": 4, - "contains": 2, "octet": 4, "UNICODE": 1, + "so": 4, "ze": 8, "begin_": 1, "_end": 1, "store": 6, + "same": 2, "stores": 1, "captured": 6, + "array": 22, "key=": 2, "gstore": 3, "round": 12, "byref": 5, - "global": 26, + "test": 6, "ref=": 3, "l=": 2, "capture": 10, "indexes": 1, "extended": 1, "NAMED_ONLY": 2, + "only": 9, "named": 12, "groups": 5, "OVECTOR": 2, "namedonly": 9, "options=": 4, + "i=": 14, "o=": 12, + "u": 6, "namedonly=": 2, "ovector=": 2, "NO_AUTO_CAPTURE": 2, + "c=": 28, "_capture_": 2, "matches": 10, "s=": 4, @@ -37354,39 +37254,45 @@ "procedure": 2, "Perl": 1, "utf8": 2, - "crlf": 6, "empty": 7, "skip": 6, "determine": 1, + "remove": 6, "them": 1, "before": 2, "byref=": 2, "check": 2, "UTF8": 2, "double": 1, + "char": 9, + "new": 15, "utf8=": 1, "crlf=": 3, "NL_CRLF": 1, "NL_ANY": 1, "NL_ANYCRLF": 1, "none": 1, - "build": 2, "NEWLINE": 1, + "..": 28, ".start": 1, "unwind": 1, "call": 1, "optimize": 1, + "do": 15, "leave": 1, "advance": 1, + "clear": 6, "LF": 1, "CR": 1, "CRLF": 1, + "mode": 12, "middle": 1, ".i": 2, ".match": 2, ".round": 2, ".byref": 2, ".ovector": 2, + "replace": 27, "subst": 3, "last": 4, "occurrences": 1, @@ -37394,15 +37300,18 @@ "back": 4, "th": 3, "replaced": 1, + "where": 6, "substitution": 2, "begins": 1, "substituted": 2, "defaults": 3, "ends": 1, + "offset": 6, "backref": 1, "boffset": 1, "prepare": 1, "reference": 2, + "stack": 8, ".subst": 1, ".backref": 1, "silently": 1, @@ -37415,22 +37324,21 @@ "aa": 9, "et": 4, "direct": 3, + "place": 9, "take": 1, - "default": 6, "setup": 3, "trap": 10, "source": 3, "location": 5, "argument": 1, + "st": 6, "@ref": 2, - "E": 12, "COMPILE": 2, "meaning": 1, "zs": 2, "re": 2, "raise": 3, "XC": 1, - "specific": 3, "U16384": 1, "U16385": 1, "U16386": 1, @@ -37452,7 +37360,9 @@ "too": 1, "small": 1, "considering": 1, + "size": 3, "controlled": 1, + "here": 4, "U16402": 1, "U16403": 1, "U16404": 1, @@ -37477,6 +37387,706 @@ "U16425": 1, "U16426": 1, "U16427": 1, + "Fibonacci": 1, + "term": 10, + "create": 6, + "student": 14, + "zwrite": 1, + "Mumtris": 3, + "tetris": 1, + "game": 1, + "MUMPS": 1, + "fun.": 1, + "Resize": 1, + "terminal": 2, + "maximize": 1, + "PuTTY": 1, + "window": 1, + "report": 1, + "mumtris.": 1, + "setting": 3, + "ansi": 2, + "compatible": 1, + "cursor": 1, + "positioning.": 1, + "NOTICE": 1, + "uses": 1, + "making": 1, + "delays": 1, + "lower": 1, + "s.": 1, + "That": 1, + "CPU": 1, + "It": 2, + "fall": 5, + "lock": 2, + "preview": 3, + "over": 2, + "exit": 3, + "short": 1, + "circuit": 1, + "redraw": 3, + "timeout": 1, + "harddrop": 1, + "other": 1, + "ex": 5, + "hd": 3, + "*c": 1, + "<0&'d>": 1, + "t10m": 1, + "h": 39, + "q=": 6, + "d=": 1, + "zb": 2, + "3": 6, + "rotate": 5, + "right": 3, + "left": 5, + "fl=": 1, + "gr=": 1, + "hl": 2, + "help": 2, + "drop": 2, + "hd=": 1, + "matrix": 2, + "draw": 3, + "y": 33, + "ticks": 2, + "h=": 2, + "1000000000": 1, + "e=": 1, + "t10m=": 1, + "100": 2, + "n=": 1, + "ne=": 1, + "x=": 5, + "y=": 3, + "r=": 3, + "collision": 6, + "score": 5, + "k=": 1, + "4": 5, + "j=": 4, + "<1))))>": 1, + "800": 1, + "200": 1, + "lv": 5, + "lc=": 1, + "10": 1, + "mt_": 2, + "cls": 6, + "dh/2": 6, + "dw/2": 6, + "*s": 4, + "echo": 1, + "intro": 1, + "pos": 33, + "workaround": 1, + "ANSI": 1, + "driver": 1, + "NL": 1, + "some": 1, + "safe": 3, + "clearscreen": 1, + "h/2": 3, + "*w/2": 3, + "fill": 3, + "fl": 2, + "*x": 1, + "mx": 4, + "my": 5, + "**lv*sb": 1, + "*lv": 1, + "sc": 3, + "ne": 2, + "gr": 1, + "w*3": 1, + "dev": 1, + "zsh": 1, + "dw": 1, + "dh": 1, + "elements": 3, + "elemId": 3, + "rotateVersions": 1, + "rotateVersion": 2, + "bottom": 1, + "coordinate": 1, + "point": 2, + "____": 1, + "__": 2, + "||": 1, + "Implementation": 1, + "works": 1, + "ZCHSET": 2, + "please": 1, + "don": 1, + "joke.": 1, + "Serves": 1, + "well": 2, + "reverse": 1, + "engineering": 1, + "obtaining": 1, + "integer": 1, + "addition": 1, + "modulo": 1, + "division.": 1, + "//en.wikipedia.org/wiki/MD5": 1, + "#64": 1, + "msg_": 1, + "_m_": 1, + "n64": 2, + "read": 2, + ".p": 1, + "*i": 3, + "#16": 3, + "xor": 4, + "#4294967296": 6, + "n32h": 5, + "bit": 5, + "#2": 1, + "*2147483648": 2, + "a#2": 1, + "b#2": 1, + ".a": 1, + ".b": 1, + "rol": 1, + "a*": 1, + "**n": 1, + "c#4294967296": 1, + "*n": 1, + "n#256": 1, + "n#16": 2, + "two": 2, + "illustrate": 1, + "dynamic": 1, + "scope": 1, + "triangle1": 1, + "sum": 15, + "main2": 1, + "triangle2": 1, + "statement": 3, + "statements": 1, + "contrasted": 1, + "if3": 1, + "else": 7, + "clause": 2, + "if4": 1, + "bodies": 1, + "MDB": 60, + "M/DB": 2, + "Mumps": 1, + "Emulation": 1, + "Amazon": 1, + "SimpleDB": 1, + "buildDate": 1, + "indexLength": 10, + "Note": 2, + "keyId": 108, + "been": 4, + "tested": 1, + "time": 9, + "these": 1, + "methods": 2, + "To": 2, + "Initialise": 2, + "service": 1, + "//192.168.1.xxx/mdb/test.mgwsi": 1, + "Action": 2, + "addUser": 2, + "userKeyId": 6, + "userSecretKey": 6, + "requestId": 17, + "boxUsage": 11, + "startTime": 21, + ".startTime": 5, + "MDBUAF": 2, + ".boxUsage": 22, + "createDomain": 1, + "domainName": 38, + "dn": 4, + "dnx": 3, + "id": 33, + "noOfDomains": 12, + "token": 21, + "MDBConfig": 1, + "getDomainId": 3, + "found": 7, + "namex": 8, + "buildItemNameIndex": 2, + "domainId": 53, + "itemId": 41, + "itemValue": 7, + "itemValuex": 3, + "countDomains": 2, + "deleteDomain": 2, + "listDomains": 1, + "maxNoOfDomains": 2, + "nextToken": 7, + "domainList": 3, + "fullName": 3, + "decodeBase64": 1, + "encodeBase64": 1, + "itemExists": 1, + "getItemId": 2, + "getAttributeValueId": 3, + "attribId": 36, + "valuex": 13, + "putAttributes": 2, + "itemName": 16, + "attributes": 32, + "valueId": 16, + "xvalue": 4, + "Item": 1, + "Domain": 1, + "itemNamex": 4, + "parseJSON": 1, + "attributesJSON": 1, + ".attributes": 5, + "attribute": 14, + "getAttributeId": 2, + "domain": 1, + "Not": 1, + "existing": 2, + "values": 4, + "now": 1, + "name/value": 2, + "pair": 1, + "getAttributes": 2, + "suppressBoxUsage": 1, + "attrNo": 9, + "valueNo": 6, + "delete": 2, + "item": 2, + "associated": 1, + "queryIndex": 1, + "records": 2, + "pairs": 2, + "vno": 2, + "completely": 3, + "references": 1, + "maxNoOfItems": 3, + "itemList": 12, + "session": 1, + "identifier": 1, + "stored": 1, + "queryExpression": 16, + "relink": 1, + "zewdGTMRuntime": 1, + "CGIEVAR": 1, + "cgi": 1, + "unescName": 5, + "urlDecode": 2, + "KEY": 36, + "WebLink": 1, + "entry": 5, + "action": 15, + "AWSAcessKeyId": 1, + "db": 9, + "hash": 1, + "itemsAndAttrs": 2, + "secretKey": 1, + "signatureMethod": 2, + "signatureVersion": 3, + "stringToSign": 2, + "rltKey": 2, + "_action_": 2, + "h_": 3, + "mdbKey": 2, + "errorResponse": 9, + ".requestId": 7, + "createResponse": 4, + "installMDBM": 1, + "authenticate": 1, + "MDBSession": 1, + "createResponseStringToSign": 1, + "Security": 1, + "_db": 1, + "MDBAPI": 1, + "_db_": 1, + "db_": 1, + "_action": 1, + "metaData": 1, + "domainMetadata": 1, + ".metaData": 1, + "paramName": 8, + "paramValue": 5, + "Query": 1, + "DomainName": 2, + "QueryExpression": 2, + "MaxNumberOfItems": 2, + "NextToken": 3, + "QueryWithAttributes": 1, + "AttributeName.": 2, + "Select": 2, + "SelectExpression": 1, + "entering": 1, + "runSelect.": 1, + "selectExpression": 3, + "finished": 1, + "runSelect": 3, + "select": 3, + "asc": 1, + "inValue": 6, + "str": 15, + "expr": 18, + "rel": 2, + "itemStack": 3, + "between": 2, + "<=\">": 1, + "lastWord=": 7, + "inAttr=": 5, + "expr=": 10, + "thisWord=": 7, + "inAttr": 2, + "queryExpression=": 4, + "_queryExpression": 2, + "isNull": 1, + "5": 1, + "8": 1, + "isNotNull": 1, + "9": 1, + "np": 17, + "prevName": 1, + "np=": 1, + "diffNames": 6, + "_term": 3, + "expr_": 1, + "_orderBy": 1, + "runQuery": 2, + ".itemList": 4, + "escVals": 1, + "str_c": 2, + "_x_": 1, + "orderBy": 1, + "_query": 1, + "parseSelect": 1, + ".domainName": 2, + ".queryExpression": 1, + ".orderBy": 1, + ".limit": 1, + "replaceAll": 11, + "executeSelect": 1, + ".itemStack": 1, + "***": 2, + "listCopy": 3, + "escape": 7, + "externalSelect": 2, + "_keyId_": 1, + "_selectExpression": 1, + "FromStr": 6, + "ToStr": 4, + "InText": 4, + "old": 3, + "p1": 5, + "stripTrailingSpaces": 2, + "spaces": 3, + "makeString": 3, + "string_spaces": 1, + "start1": 2, + "start2": 1, + "run": 2, + "APIs": 1, + "Fri": 1, + "Nov": 1, + "getVersion": 1, + "zewdCompiler": 6, + "date": 1, + "getDate": 1, + "compilePage": 2, + "app": 13, + "technology": 9, + "outputPath": 4, + "multilingual": 4, + "maxLines": 4, + "compileAll": 2, + "templatePageName": 2, + "autoTranslate": 2, + "verbose": 2, + "zewdMgr": 1, + "startSession": 2, + "requestArray": 2, + "serverArray": 1, + "sessionArray": 5, + "filesArray": 1, + "zewdPHP": 8, + ".requestArray": 2, + ".serverArray": 1, + ".sessionArray": 3, + ".filesArray": 1, + "closeSession": 2, + "saveSession": 2, + "endOfPage": 2, + "prePageScript": 2, + "releaseLock": 2, + "tokeniseURL": 2, + "url": 2, + "zewdCompiler16": 5, + "getSessid": 1, + "isTokenExpired": 2, + "zewdSession": 39, + "initialiseSession": 1, + "deleteSession": 2, + "changeApp": 1, + "appName": 4, + "setRedirect": 1, + "toPage": 1, + "path": 4, + "getRootURL": 1, + "_sessid_": 3, + "_token_": 1, + "_nextPage": 1, + "zcvt": 11, + "nextPage": 1, + "isNextPageTokenValid": 2, + "zewdCompiler13": 10, + "isCSP": 1, + "normaliseTextValue": 1, + "text": 6, + "writeLine": 2, + "CacheTempBuffer": 2, + "displayOptions": 2, + "fieldName": 5, + "listName": 6, + "codeValue": 7, + "nnvp": 1, + "nvp": 1, + "textValue": 6, + "getSessionValue": 3, + "codeValueEsc": 7, + "textValueEsc": 7, + "htmlOutputEncode": 2, + "zewdAPI2": 5, + "_codeValueEsc_": 1, + "translationMode": 1, + "_appName": 1, + "typex": 1, + "type": 2, + "avoid": 1, + "getPhraseIndex": 1, + "zewdCompiler5": 1, + "licensed": 1, + "setWarning": 2, + "isTemp": 11, + "setWLDSymbol": 1, + "Duplicate": 1, + "performance": 1, + "wldAppName": 1, + "wldName": 1, + "wldSessid": 1, + "zzname": 1, + "extcErr": 1, + "mess": 3, + "namespace": 1, + "valueErr": 1, + "exportCustomTags": 2, + "tagList": 1, + "filepath": 10, + ".tagList": 1, + "exportAllCustomTags": 2, + "importCustomTags": 2, + "filePath": 2, + "zewdForm": 1, + "stripSpaces": 6, + "obj": 6, + "prop": 6, + "setSessionObject": 3, + "allowJSONAccess": 1, + "sessionName": 30, + "disallowJSONAccess": 1, + "JSONAccess": 1, + "existsInSession": 2, + "existsInSessionArray": 2, + "p3": 3, + "p4": 2, + "p5": 2, + "p6": 2, + "p7": 2, + "p8": 2, + "p9": 2, + "p10": 2, + "p11": 2, + "clearSessionArray": 1, + "arrayName": 35, + "setSessionArray": 1, + "getSessionArray": 1, + "clearArray": 2, + "getSessionArrayErr": 1, + "Come": 1, + "occurred": 2, + "addToSession": 2, + "@name": 4, + "mergeToSession": 1, + "mergeGlobalToSession": 2, + "mergeGlobalFromSession": 2, + "mergeArrayToSession": 1, + "mergeArrayToSessionObject": 2, + ".array": 1, + "mergeArrayFromSession": 1, + "mergeFromSession": 1, + "deleteFromSession": 1, + "deleteFromSessionObject": 1, + "sessionNameExists": 1, + "getSessionArrayValue": 2, + ".exists": 1, + "sessionArrayValueExists": 2, + "deleteSessionArrayValue": 2, + "Objects": 1, + "objectName": 13, + "propertyName": 3, + "propertyValue": 5, + "comma": 3, + "objectName_": 2, + "_propertyName": 2, + "_propertyName_": 2, + "_propertyValue_": 1, + "_p": 1, + "quoted": 1, + "removeDocument": 1, + "zewdDOM": 3, + "instanceName": 2, + "clearXMLIndex": 1, + "zewdSchemaForm": 1, + "closeDOM": 1, + "makeTokenString": 1, + "token_": 1, + "convertDateToSeconds": 1, + "hdate": 7, + "hdate*86400": 1, + "convertSecondsToDate": 1, + "secs": 2, + "secs#86400": 1, + "getTokenExpiry": 2, + "h*86400": 1, + "randChar": 1, + "lowerCase": 2, + "stripLeadingSpaces": 2, + "d1": 7, + "zd": 1, + "<10>": 1, + "dd=": 2, + "mm=": 3, + "d1=": 1, + "p1=": 1, + "mm": 7, + "p2=": 1, + "yy=": 1, + "dd_": 1, + "mm_": 1, + "inetTime": 1, + "Decode": 1, + "Internet": 1, + "Format": 1, + "Time": 1, + "H": 1, + "format": 2, + "Offset": 1, + "relative": 1, + "GMT": 1, + "hh": 4, + "ss": 4, + "_hh": 1, + "time#3600": 1, + "_mm": 1, + "time#60": 1, + "_ss": 2, + "hh_": 1, + "_mm_": 1, + "openNewFile": 2, + "openFile": 2, + "openDOM": 2, + "#39": 1, + "<\",\"<\")>": 1, + "string=": 1, + "gt": 1, + "amp": 1, + "HTML": 1, + "no2": 1, + "p1_c_p2": 1, + "getIP": 2, + "Get": 2, + "own": 2, + "IP": 1, + "address": 1, + "ajaxErrorRedirect": 2, + "classExport": 2, + "className": 2, + ".methods": 1, + "strx": 2, + "disableEwdMgr": 1, + "enableEwdMgr": 1, + "enableWLDAccess": 1, + "disableWLDAccess": 1, + "isSSOValid": 2, + "sso": 2, + "zewdMgrAjax2": 1, + "uniqueId": 1, + "nodeOID": 2, + "filename": 2, + "linkToParentSession": 2, + "zewdCompiler20": 1, + "exportToGTM": 1, + "computes": 1, + "factorial": 3, + "f*n": 1, + "main": 1, + "label1": 1, + "GMRGPNB0": 1, + "CISC/JH/RM": 1, + "NARRATIVE": 1, + "BUILDER": 1, + "TEXT": 5, + "GENERATOR": 1, + "cont.": 1, + "/20/91": 1, + "Text": 1, + "Generator": 1, + "Jan": 1, + "ENTRY": 2, + "WITH": 1, + "GMRGA": 1, + "SET": 3, + "TO": 6, + "POINT": 1, + "AT": 1, + "WHICH": 1, + "WANT": 1, + "START": 1, + "BUILDING": 1, + "GMRGE0": 11, + "GMRGADD": 4, + "GMR": 6, + "GMRGA0": 11, + "GMRGPDA": 9, + "GMRGCSW": 2, + "NOW": 1, + "DTC": 1, + "GMRGB0": 9, + "GMRGST": 6, + "GMRGPDT": 2, + "GMRGRUT0": 3, + "GMRGF0": 3, + "GMRGSTAT": 8, + "_GMRGB0_": 2, + "GMRD": 6, + "GMRGSSW": 3, + "SNT": 1, + "GMRGPNB1": 1, + "GMRGNAR": 8, + "GMRGPAR_": 2, + "_GMRGSPC_": 3, + "_GMRGRM": 2, + "_GMRGE0": 1, + "STORETXT": 1, + "GMRGRUT1": 1, + "GMRGSPC": 3, + "GMRGD0": 7, + "ALIST": 1, + "GMRGPLVL": 6, + "GMRGA0_": 1, + "_GMRGD0_": 1, + "_GMRGSSW_": 1, + "_GMRGADD": 1, + "GMRGI0": 6, "Examples": 4, "pcre.m": 1, "parameters": 1, @@ -37499,7 +38109,6 @@ "myexception2": 2, "st_": 1, "zl_": 2, - "Compile": 2, ".options": 1, "Run": 1, ".offset": 1, @@ -37510,7 +38119,6 @@ "usable": 1, "integers": 1, "way": 1, - "i*2": 3, "what": 2, "/mg": 2, "aaa": 1, @@ -37527,7 +38135,6 @@ "second": 1, "letter": 1, "": 1, - "which": 4, "ISO8859": 1, "//en.wikipedia.org/wiki/Polish_code_pages": 1, "complete": 1, @@ -37560,7 +38167,6 @@ "utflocale": 2, "LC_CTYPE": 1, "Set": 2, - "obtain": 2, "results.": 1, "envlocale": 2, "ztrnlnm": 2, @@ -37573,7 +38179,6 @@ "gtm_icu_version": 1, "recompiled": 1, "object": 4, - "files": 4, "Instructions": 1, "Install": 1, "libicu48": 2, @@ -37606,14 +38211,11 @@ "engine": 1, "very": 2, "long": 2, - "runs": 2, "especially": 1, "there": 2, - "paths": 2, "tree": 1, "checked.": 1, "Functions": 1, - "using": 4, "itself": 1, "allows": 1, "MATCH_LIMIT": 1, @@ -37646,14 +38248,11 @@ "caller": 1, "exception.": 1, "lead": 1, - "writing": 4, "prompt": 1, "terminating": 1, "image.": 1, - "define": 2, "handlers.": 1, "Handler": 1, - "No": 17, "nohandler": 4, "Pattern": 1, "failed": 1, @@ -37702,92 +38301,6 @@ "newline": 1, "utf8support": 1, "myexception3": 1, - "contrasting": 1, - "postconditionals": 1, - "IF": 9, - "commands": 1, - "post1": 1, - "postconditional": 3, - "purposely": 4, - "TEST": 16, - "false": 5, - "post2": 1, - "special": 2, - "post": 1, - "condition": 1, - "PRCAAPR": 1, - "WASH": 1, - "ISC@ALTOONA": 1, - "PA/RGY": 1, - "PATIENT": 5, - "ACCOUNT": 1, - "PROFILE": 1, - "CONT": 1, - "/9/94": 1, - "AM": 1, - "V": 2, - "Accounts": 1, - "Receivable": 1, - "**198": 1, - "Mar": 1, - "Per": 1, - "VHA": 1, - "Directive": 1, - "modified.": 1, - "EN": 2, - "PRCATY": 2, - "NEW": 3, - "DIC": 6, - "Y": 26, - "DEBT": 10, - "PRCADB": 5, - "DA": 4, - "PRCA": 14, - "COUNT": 2, - "OUT": 2, - "SEL": 1, - "BILL": 11, - "BAT": 8, - "TRAN": 5, - "DR": 4, - "DXS": 1, - "DTOUT": 2, - "DIROUT": 1, - "DIRUT": 1, - "DUOUT": 1, - "ASK": 3, - "DPTNOFZY": 2, - "DPTNOFZK": 2, - "K": 5, - "DTIME": 1, - "UPPER": 1, - "VALM1": 1, - "RCD": 1, - "DISV": 2, - "DUZ": 3, - "NAM": 1, - "RCFN01": 1, - "COMP": 2, - "EN1": 1, - "PRCAATR": 1, - "Y_": 3, - "PRCADB_": 1, - "HDR": 1, - "PRCAAPR1": 3, - "HDR2": 1, - "DIS": 1, - "STAT1": 2, - "_PRCATY_": 1, - "COMP1": 2, - "RCY": 5, - "COMP2": 2, - "_STAT_": 1, - "_STAT": 1, - "payments": 1, - "_TRAN": 1, - "Keith": 1, - "Lynch": 1, - "p#f": 1, "PXAI": 1, "ISL/JVS": 1, "ISA/KWP": 1, @@ -37814,11 +38327,9 @@ "PXACCNT": 2, "add/edit/delete": 1, "PCE.": 1, - "required": 4, "pointer": 4, "visit": 3, "related.": 1, - "then": 2, "nodes": 1, "needed": 1, "lookup/create": 1, @@ -37840,7 +38351,6 @@ "Primary": 3, "Provider": 1, "moment": 1, - "editing": 2, "being": 1, "dangerous": 1, "dotted": 1, @@ -37878,7 +38388,6 @@ "located": 1, "Order": 1, "#100": 1, - "process": 3, "processed": 1, "could": 1, "incorrectly": 1, @@ -37933,7 +38442,6 @@ "ARRAY": 2, "PXAICPTV": 1, "SEND": 1, - "W": 4, "BLD": 2, "DIALOG": 4, ".PXAERR": 3, @@ -37949,7 +38457,6 @@ "PRI": 3, "PRVPRIM": 2, "AUPNVPRV": 2, - "U": 14, ".04": 1, "DIQ1": 1, "POVPRM": 1, @@ -37971,6 +38478,23 @@ ".F": 2, "..E": 1, "...S": 5, + "DataBallet.": 4, + "Laurent": 2, + "Parenteau": 2, + "": 2, + "DataBallet": 4, + "encode": 1, + "Return": 1, + "base64": 6, + "URL": 2, + "Filename": 1, + "alphabet": 2, + "RFC": 1, + "todrop": 2, + "Populate": 1, + "only.": 1, + "zextract": 3, + "zlength": 3, "decode": 1, "val": 5, "Decoded": 1, @@ -38015,7 +38539,6 @@ "IS": 3, "QUEUED.": 1, "WVB": 4, - "OR": 2, "OPEN": 1, "ONLY": 1, "CLOSED.": 1, @@ -38050,7 +38573,6 @@ "DEQUEUE": 1, "TASKMAN": 1, "QUEUE": 1, - "OF": 2, "PRINTOUT.": 1, "SETVARS": 2, "WVUTL5": 2, @@ -38068,241 +38590,16 @@ "WVBRNOT2": 1, "WVPOP": 1, "WVLOOP": 1, - "ZDIOUT1": 1, - "Experimental": 1, - "FileMan": 1, - "host": 2, - "Open": 1, - "Source": 1, - "Electronic": 1, - "Health": 1, - "Record": 1, - "Agent": 1, - "Licensed": 1, - "Apache": 1, - "Version": 1, - "may": 3, - "except": 1, - "compliance": 1, - "License.": 2, - "//www.apache.org/licenses/LICENSE": 1, - "Unless": 1, - "applicable": 1, - "law": 1, - "agreed": 1, - "BASIS": 1, - "WARRANTIES": 1, - "CONDITIONS": 1, - "KIND": 1, - "express": 1, - "implied.": 1, - "governing": 1, - "permissions": 2, - "limitations": 1, - "ASKFILE": 1, - "FILE": 5, - "ASKDIR": 1, - "DIR": 3, - "SAVEFILE": 2, - "Save": 1, - "given": 1, - "directory": 1, - "CHECK": 1, - "FGR": 4, - "_FILE": 1, - "IO": 4, - "DIR_": 1, - "L": 1, - "FILENAME": 1, - "_IO_": 1, - "_P_": 1, - "NM": 1, - "non": 1, - "printing": 1, - "escaped": 1, - "evaluation": 1, - "RHS": 1, - "SET.": 1, - "TODO": 1, - "Caller": 1, - "indentation": 1, - "tab": 1, - "space.": 1, - "M/Wire": 4, - "Protocol": 2, - "Systems": 1, - "By": 1, - "server": 1, - "port": 4, - "systems": 3, - "invoked": 2, - "via": 2, - "xinetd": 2, - "Edit": 1, - "/etc/services": 1, - "mwire": 2, - "/tcp": 1, - "#": 1, - "Service": 1, - "Copy": 2, - "/etc/xinetd.d/mwire": 1, - "/usr/local/gtm/zmwire": 1, - "its": 1, - "executable": 1, - "edited": 1, - "Restart": 1, - "sudo": 1, - "/etc/init.d/xinetd": 1, - "On": 1, - "installed": 1, - "MGWSI": 1, - "provide": 1, - "hashing": 1, - "passwords": 1, - "Alternatively": 1, - "substitute": 1, - "callout": 1, - "choice": 1, - "Daemon": 2, - "running": 1, - "jobbed": 1, - "job": 1, - "zmwireDaemon": 2, - "simply": 1, - "Stop": 1, - "RESJOB": 1, - "mwireVersion": 4, - "mwireDate": 2, - "July": 1, - "_crlf": 22, - "_response_": 4, - "_crlf_response_crlf": 4, - "authNeeded": 6, - "input": 41, - "cleardown": 2, - "zint": 1, - "role": 3, - "loop": 7, - "log": 1, - "halt": 3, - "auth": 2, - "ignore": 12, - "pid": 36, - "monitor": 1, - "input_crlf": 1, - "zsy": 2, - "_pid_": 1, - "_pid": 1, - "monitoroutput": 1, - "logger": 17, - "tot": 2, - "mwireLogger": 3, - "info": 1, - "response_": 1, - "_count": 1, - "setpassword": 1, - "SETPASSWORD": 2, - "secret": 2, - "": 1, - "role=": 1, - "admin": 1, - "newrole": 4, - "getGloRef": 3, - "gloName": 1, - "gloRef": 15, - "nb": 2, - "subs": 8, - "nsp": 1, - "subs_": 2, - "_data_": 3, - "subscripts": 8, - "_value_": 1, - "_error_": 1, - "kill": 3, - "xx": 16, - "method": 2, - "Missing": 5, - "JSON": 7, - "transaction": 6, - "document": 6, - "setJSON": 4, - "GlobalName": 3, - "setGlobal": 1, - "zmwire_null_value": 1, - "Invalid": 1, - "props": 1, - "arr": 2, - "getJSON": 2, - "incr": 1, - "incrbr": 1, - "class": 1, - "##": 2, - "decr": 1, - "decrby": 1, - "direction": 1, - "subscriptValue": 1, - "dataStatus": 1, - "dataValue": 1, - "nextsubscript": 2, - "reverseorder": 1, - "*2": 1, - "queryget": 1, - "xxyy": 2, - "zz": 2, - "getallsubscripts": 1, - "orderall": 1, - "": 3, - "note": 2, - "escaping": 1, - "foo": 2, - "_gloRef": 1, - "@x": 4, - "_crlf_": 1, - "j_": 1, - "params": 10, - "_crlf_resp_crlf": 2, - "_crlf_data_crlf": 2, - "mergeto": 1, - "dataLength": 4, - "keyLength": 6, - "noOfRecs": 6, - "MERGETO": 1, - "myglobal": 1, - "*6": 1, - "hello": 1, - "": 2, - "put": 1, - "top": 1, - "noOfRecs#2": 1, - "noOfRecs/2": 1, - "gloRef1": 2, - "gloRef1_": 2, - "_gloRef1_key_": 1, - "sub": 2, - "literal": 2, - "valquot_value_valquot": 1, - "json_value_": 1, - "subscripts1": 2, - "subx": 3, - "subNo": 1, - "numsub": 1, - "json_": 2, - "removeControlChars": 2, - "zobj1": 1, - "buff": 10, - "parseJSONObject": 2, - ".buff": 2, - "subs2": 6, - "_name_": 1, - "subs2_": 2, - "value_c": 1, - "newString": 4, - "newString_c": 1, - "utfConvert": 1, - "Unescape": 1, - "buf": 4, - "c1": 4, - "buf_c1_": 1 + "ax": 2, + "bx": 2, + "cx": 2, + "ay": 2, + "cy": 2, + "sumx": 3, + "sqrx": 3, + "sumxy": 5, + "x*x": 1, + "x*y": 1 }, "MTML": { "<$mt:Var>": 15, @@ -38339,6 +38636,11 @@ "": 1 }, "Makefile": { + "SHEBANG#!make": 1, + "%": 1, + "ls": 1, + "-": 6, + "l": 1, "all": 1, "hello": 4, "main.o": 3, @@ -38346,7 +38648,6 @@ "hello.o": 3, "g": 4, "+": 8, - "-": 6, "o": 1, "main.cpp": 2, "c": 3, @@ -38355,11 +38656,7 @@ "clean": 1, "rm": 1, "rf": 1, - "*o": 1, - "SHEBANG#!make": 1, - "%": 1, - "ls": 1, - "l": 1 + "*o": 1 }, "Markdown": { "Tender": 1 @@ -38414,48 +38711,17 @@ "bazCompo": 1 }, "Mathematica": { - "Get": 1, - "[": 307, - "]": 286, "Notebook": 2, + "[": 307, "{": 227, "Cell": 28, "CellGroupData": 8, - "BoxData": 19, - "RowBox": 34, - "}": 222, "CellChangeTimes": 13, "-": 134, "*": 19, - "SuperscriptBox": 1, - "MultilineFunction": 1, - "None": 8, - "Open": 7, - "NumberMarks": 3, - "False": 19, - "GraphicsBox": 2, - "Hue": 5, - "LineBox": 5, - "CompressedData": 9, - "AspectRatio": 1, - "NCache": 1, - "GoldenRatio": 1, - "(": 2, - ")": 1, - "Axes": 1, - "True": 7, - "AxesLabel": 1, - "AxesOrigin": 1, - "Method": 2, - "PlotRange": 1, - "PlotRangeClipping": 1, - "PlotRangePadding": 1, - "Scaled": 10, - "WindowSize": 1, - "WindowMargins": 1, - "Automatic": 9, - "FrontEndVersion": 1, - "StyleDefinitions": 1, + "}": 222, + "]": 286, + "BoxData": 19, "NamespaceBox": 1, "DynamicModuleBox": 1, "Typeset": 7, @@ -38465,9 +38731,13 @@ "Asynchronous": 1, "All": 1, "TimeConstraint": 1, + "Automatic": 9, + "Method": 2, "elements": 1, "pod1": 1, "XMLElement": 13, + "False": 19, + "True": 7, "FormBox": 4, "TagBox": 9, "GridBox": 2, @@ -38481,6 +38751,7 @@ "LineSpacing": 2, "GridBoxBackground": 1, "GrayLevel": 17, + "None": 8, "GridBoxItemSize": 2, "ColumnsEqual": 2, "RowsEqual": 2, @@ -38499,6 +38770,7 @@ "TraditionalOrder": 1, "&": 2, "pod2": 1, + "RowBox": 34, "LinebreakAdjustments": 2, "FontFamily": 1, "UnitFontFamily": 1, @@ -38510,13 +38782,17 @@ "ZeroWidthTimes": 1, "pod3": 1, "TemplateBox": 1, + "GraphicsBox": 2, "GraphicsComplexBox": 1, + "CompressedData": 9, "EdgeForm": 2, "Directive": 5, "Opacity": 2, + "Hue": 5, "GraphicsGroupBox": 2, "PolygonBox": 3, "RGBColor": 3, + "LineBox": 5, "Dashing": 1, "Small": 1, "GridLines": 1, @@ -38535,20 +38811,31 @@ "Epilog": 1, "CapForm": 1, "Offset": 8, + "Scaled": 10, "DynamicBox": 1, "ToBoxes": 1, "DynamicModule": 1, "pt": 1, + "(": 2, "NearestFunction": 1, - "Paclet": 1, - "Name": 1, - "Version": 1, - "MathematicaVersion": 1, - "Description": 1, - "Creator": 1, - "Extensions": 1, - "Language": 1, - "MainPage": 1, + "SuperscriptBox": 1, + "MultilineFunction": 1, + "Open": 7, + "NumberMarks": 3, + "AspectRatio": 1, + "NCache": 1, + "GoldenRatio": 1, + ")": 1, + "Axes": 1, + "AxesLabel": 1, + "AxesOrigin": 1, + "PlotRange": 1, + "PlotRangeClipping": 1, + "PlotRangePadding": 1, + "WindowSize": 1, + "WindowMargins": 1, + "FrontEndVersion": 1, + "StyleDefinitions": 1, "BeginPackage": 1, ";": 42, "PossiblyTrueQ": 3, @@ -38608,6 +38895,15 @@ "Symbol": 2, "NumericQ": 1, "EndPackage": 1, + "Paclet": 1, + "Name": 1, + "Version": 1, + "MathematicaVersion": 1, + "Description": 1, + "Creator": 1, + "Extensions": 1, + "Language": 1, + "MainPage": 1, "Do": 1, "If": 1, "Length": 1, @@ -38616,74 +38912,392 @@ "i": 3, "+": 2, "Print": 1, - "Break": 1 + "Break": 1, + "Get": 1 }, "Matlab": { "function": 34, "[": 311, - "dx": 6, - "y": 25, + "d": 12, + "d_mean": 3, + "d_std": 3, "]": 311, - "adapting_structural_model": 2, + "normalize": 1, "(": 1379, - "t": 32, - "x": 46, - "u": 3, - "varargin": 25, ")": 1380, - "%": 554, - "size": 11, - "aux": 3, - "{": 157, - "end": 150, - "}": 157, + "mean": 2, ";": 909, - "m": 44, - "zeros": 61, - "b": 12, - "for": 78, - "i": 338, - "if": 52, - "+": 169, - "elseif": 14, - "else": 23, - "display": 10, - "aux.pars": 3, - ".*": 2, - "Yp": 2, - "human": 1, - "aux.timeDelay": 2, - "c1": 5, - "aux.m": 3, - "*": 46, - "aux.b": 3, - "e": 14, "-": 673, - "c2": 5, - "Yc": 5, - "parallel": 2, - "plant": 4, - "aux.plantFirst": 2, - "aux.plantSecond": 2, - "Ys": 1, - "feedback": 1, - "A": 11, - "B": 9, + "repmat": 2, + "size": 11, + "std": 1, + "d./": 1, + "end": 150, + "clear": 13, + "all": 15, + "%": 554, + "mu": 73, + "Earth": 2, + "Moon": 2, + "xl1": 13, + "yl1": 12, + "xl2": 9, + "yl2": 8, + "xl3": 8, + "yl3": 8, + "xl4": 10, + "yl4": 9, + "xl5": 8, + "yl5": 8, + "Lagr": 6, "C": 13, - "D": 7, - "tf2ss": 1, - "Ys.num": 1, - "Ys.den": 1, - "average": 1, + "*Potential": 5, + "x_0": 45, + "y_0": 29, + "vx_0": 37, + "vy_0": 22, + "sqrt": 14, + "+": 169, + "T": 22, + "C_star": 1, + "*Omega": 5, + "E": 8, + "C/2": 1, + "options": 14, + "odeset": 4, + "e": 14, + "Integrate": 6, + "first": 3, + "orbit": 1, + "t0": 6, + "Y0": 6, + "ode113": 2, + "@f": 6, + "x0": 4, + "y0": 2, + "vx0": 2, + "vy0": 2, + "l0": 1, + "length": 49, + "delta_E0": 1, + "abs": 12, + "Energy": 4, + "Hill": 1, + "Edgecolor": 1, + "none": 1, + ".2f": 5, + "ok": 2, + "sg": 1, + "sr": 1, + "x_T": 25, + "y_T": 17, + "vx_T": 22, + "e_T": 7, + "filter": 14, + "Integrate_FILE": 1, + "e_0": 7, + "N": 9, + "nx": 32, + "ny": 29, + "nvx": 32, + "ne": 29, + "zeros": 61, + "vy_T": 12, + "Look": 2, + "for": 78, + "phisically": 2, + "meaningful": 6, + "points": 11, + "meaningless": 2, + "point": 14, + "only": 7, + "h": 19, + "waitbar": 6, + "i": 338, + "i/nx": 2, + "sprintf": 11, + "j": 242, + "parfor": 5, + "k": 75, + "l": 64, + "*e_0": 3, + "if": 52, + "isreal": 8, + "ci": 9, + "t": 32, + "Y": 19, + "te": 2, + "ye": 9, + "ie": 2, + "ode45": 6, + "*": 46, + "Potential": 1, + "close": 4, + "tic": 7, + "Choice": 2, + "of": 35, + "the": 14, + "mass": 2, + "parameter": 2, + "Computation": 9, + "Lagrangian": 3, + "Points": 2, + "initial": 5, + "total": 6, + "energy": 8, + "E_L1": 4, + "Omega": 7, + "Offset": 2, + "as": 4, + "in": 8, + "figure": 17, + "Initial": 3, + "conditions": 3, + "range": 2, + "x_0_min": 8, + "x_0_max": 8, + "vx_0_min": 8, + "vx_0_max": 8, "n": 102, - "|": 2, - "&": 4, + "ndgrid": 2, + "linspace": 14, + "*E": 2, + "vx_0.": 2, + "E_cin": 4, + "Transforming": 1, + "into": 1, + "Hamiltonian": 1, + "variables": 2, + "px_0": 2, + "py_0": 2, + "px_T": 4, + "py_T": 4, + "filtro": 15, + "ones": 6, + "E_T": 11, + "a": 17, + "matrix": 3, + "numbers": 2, + "integration": 9, + "steps": 2, + "each": 2, + "np": 8, + "number": 2, + "integrated": 5, + "fprintf": 18, + "tolerance": 2, + "setting": 4, + "energy_tol": 6, + "inf": 1, + "Jacobian": 3, + "system": 2, + "@cr3bp_jac": 1, + "Parallel": 2, + "equations": 2, + "motion": 2, + "&&": 13, + "Check": 6, + "real": 3, + "velocity": 2, + "and": 7, + "positive": 2, + "Kinetic": 2, + "@fH": 1, + "Saving": 4, + "solutions": 2, + "final": 2, + "difference": 2, + "with": 2, + "one": 3, + "EnergyH": 1, + "delta_E": 7, + "conservation": 2, + "position": 2, + "else": 23, + "interesting": 4, + "non": 2, + "sense": 2, + "bad": 4, + "t_integrazione": 3, + "toc": 5, + "t_integr": 1, + "Back": 1, + "to": 9, + "FTLE": 14, + "dphi": 12, + "ftle": 10, + "...": 162, + "/": 59, + "Manual": 2, + "visualize": 2, + "Inf": 1, + "*T": 3, + "*log": 2, + "max": 9, + "eig": 6, + "tempo": 4, + "per": 5, + "integrare": 2, + "s": 13, + "calcolare": 2, + "var_": 2, + "_": 2, + "var_xvx_": 2, + "ode00": 2, + "_n": 2, + "_e": 1, + "_H": 1, + "save": 2, + "nome": 2, + "Call": 2, + "matlab_function": 5, + "which": 2, + "resides": 2, + "same": 2, + "directory": 2, + "value1": 4, + "semicolon": 2, + "at": 3, + "line": 15, + "is": 7, + "not": 3, + "mandatory": 2, + "suppresses": 2, + "output": 7, + "command": 2, + "line.": 2, + "value2": 4, + "result": 5, + "disp": 8, "error": 16, - "sum": 2, - "/length": 1, + "cross_validation": 1, + "x": 46, + "y": 25, + "hyper_parameter": 3, + "num_data": 2, + "K": 4, + "indices": 2, + "crossvalind": 1, + "errors": 4, + "test_idx": 4, + "train_idx": 3, + "x_train": 2, + "y_train": 2, + "w": 6, + "train": 1, + "x_test": 3, + "y_test": 3, + "calc_cost": 1, + "calc_error": 2, + "f_x_t": 2, + "inline": 1, + "grid_min": 3, + "grid_max": 3, + "grid_width": 1, + "grid_spacing": 5, + "grid_width/": 1, + "advected_x": 12, + "advected_y": 12, + "store": 4, + "advected": 2, + "positions": 2, + "they": 2, + "would": 2, + "appear": 2, + "coords": 2, + "sigma": 6, + "compute": 2, + "phi": 13, + "*grid_width/": 4, + "find": 24, + "eigenvalue": 2, + "*phi": 2, + "log": 2, + "lambda_max": 2, + "/abs": 3, + "plot": 26, + "field": 2, + "contourf": 2, + "colorbar": 1, + "classdef": 1, + "matlab_class": 2, + "properties": 1, + "R": 1, + "G": 1, + "B": 9, + "methods": 1, + "obj": 2, + "r": 2, + "g": 5, + "b": 12, + "obj.R": 2, + "obj.G": 2, + "obj.B": 2, + "num2str": 10, + "enumeration": 1, + "red": 1, + "green": 1, + "blue": 1, + "cyan": 1, + "magenta": 1, + "yellow": 1, + "black": 1, + "white": 1, + "filtfcn": 2, + "statefcn": 2, + "makeFilter": 1, + "v": 12, + "@iirFilter": 1, + "@getState": 1, + "yn": 2, + "iirFilter": 1, + "xn": 4, + "vOut": 2, + "getState": 1, + "RK4": 3, + "fun": 5, + "tspan": 7, + "th": 1, + "order": 11, + "Runge": 1, + "Kutta": 1, + "integrator": 2, + "dim": 2, + "while": 1, + "<": 9, + "k1": 4, + "k2": 3, + "h/2": 2, + "k1*h/2": 1, + "k3": 3, + "k2*h/2": 1, + "k4": 4, + "h*k3": 1, + "h/6*": 1, + "*k2": 1, + "*k3": 1, + "z": 3, + "*vx_0": 1, + "pcolor": 2, + "shading": 3, + "flat": 3, + "settings": 3, + "overwrite_settings": 2, + "defaultSettings": 3, + "overrideSettings": 3, + "overrideNames": 2, + "fieldnames": 5, + "defaultNames": 2, + "notGiven": 5, + "setxor": 1, + "settings.": 1, + "{": 157, + "}": 157, + "defaultSettings.": 1, "bicycle": 7, "bicycle_state_space": 1, "speed": 20, + "varargin": 25, "S": 5, "dbstack": 1, "CURRENT_DIRECTORY": 2, @@ -38692,7 +39306,8 @@ "par": 7, "par_text_to_struct": 4, "filesep": 14, - "...": 162, + "A": 11, + "D": 7, "whipple_pull_force_abcd": 2, "states": 7, "outputs": 10, @@ -38703,32 +39318,21 @@ "userSettings": 3, "varargin_to_structure": 2, "struct": 1, - "settings": 3, - "overwrite_settings": 2, - "defaultSettings": 3, "minStates": 2, + "sum": 2, "ismember": 15, "settings.states": 3, - "<": 9, "keepStates": 2, - "find": 24, "removeStates": 1, "row": 6, - "abs": 12, "col": 5, - "s": 13, - "sprintf": 11, "removeInputs": 2, "settings.inputs": 1, "keepOutputs": 2, "settings.outputs": 1, "It": 1, - "is": 7, - "not": 3, "possible": 1, - "to": 9, "keep": 1, - "output": 7, "because": 1, "it": 1, "depends": 1, @@ -38737,31 +39341,140 @@ "StateName": 1, "OutputName": 1, "InputName": 1, - "x_0": 45, - "linspace": 14, - "vx_0": 37, - "z": 3, - "j": 242, - "*vx_0": 1, - "figure": 17, - "pcolor": 2, - "shading": 3, - "flat": 3, + "data": 27, + "load_data": 4, + "filename": 21, + "parser": 1, + "inputParser": 1, + "parser.addRequired": 1, + "parser.addParamValue": 3, + "true": 2, + "parser.parse": 1, + "args": 1, + "parser.Results": 1, + "raw": 1, + "load": 1, + "args.directory": 1, + "iddata": 1, + "raw.theta": 1, + "raw.theta_c": 1, + "args.sampleTime": 1, + "args.detrend": 1, + "detrend": 1, + "hold": 23, + "lane_change": 1, + "start": 4, + "width": 3, + "slope": 3, + "pathLength": 3, + "num": 24, + "type": 4, + "single": 1, + "double": 1, + "Double": 1, + "lane": 4, + "change": 1, + "needs": 1, + "lane.": 1, + "laneLength": 4, + "startOfSlope": 3, + "endOfSlope": 1, + "&": 4, + "<=>": 1, + "1": 1, + "downSlope": 3, + "Yc": 5, + "plant": 4, + "parallel": 2, + "choose_plant": 4, + "p": 7, + "tf": 18, + "elseif": 14, + "display": 10, + "average": 1, + "m": 44, + "|": 2, + "/length": 1, "name": 4, - "order": 11, "convert_variable": 1, "variable": 10, "coordinates": 6, "speeds": 21, "get_variables": 2, "columns": 4, - "create_ieee_paper_plots": 2, - "data": 27, + "clc": 1, + "bikes": 24, + "load_bikes": 2, "rollData": 8, + "generate_data": 5, + "create_ieee_paper_plots": 2, + "write_gains": 1, + "pathToFile": 11, + "gains": 12, + "contents": 1, + "importdata": 1, + "speedsInFile": 5, + "contents.data": 2, + "gainsInFile": 3, + "sameSpeedIndices": 5, + "allGains": 4, + "allSpeeds": 4, + "sort": 1, + "fid": 7, + "fopen": 2, + "contents.colheaders": 1, + "fclose": 2, + "Elements": 1, + "grid": 1, + "definition": 2, + "Dimensionless": 1, + "integrating": 1, + "time": 21, + "C_L1": 3, + "*E_L1": 1, + "from": 2, + "Szebehely": 1, + "Setting": 1, + "RelTol": 2, + "AbsTol": 2, + "From": 1, + "Short": 1, + "r1": 3, + "r2": 3, + "i/n": 1, + ".": 13, + "y_0.": 2, + "./": 1, + "mu./": 1, + "@f_reg": 1, + "filtro_1": 12, + "||": 3, + "ftle_norm": 1, + "ds_x": 1, + "ds_vx": 1, + "La": 1, + "direzione": 1, + "dello": 1, + "spostamento": 1, + "la": 2, + "decide": 1, + "il": 1, + "denominatore": 1, + "TODO": 1, + "spiegarsi": 1, + "teoricamente": 1, + "come": 1, + "mai": 1, + "matrice": 1, + "pu": 1, + "essere": 1, + "ridotta": 1, + "x2": 1, + "*ds_x": 2, + "*ds_vx": 2, + "dphi*dphi": 1, "global": 6, "goldenRatio": 12, - "sqrt": 14, - "/": 59, "exist": 1, "mkdir": 1, "linestyles": 15, @@ -38775,7 +39488,6 @@ "var": 3, "io": 7, "typ": 3, - "length": 49, "plot_io": 1, "phase_portraits": 2, "eigenvalues": 2, @@ -38785,8 +39497,6 @@ "set": 43, "gcf": 17, "freq": 12, - "hold": 23, - "all": 15, "closedLoops": 1, "bikeData.closedLoops": 1, "bops": 7, @@ -38799,7 +39509,6 @@ "deltaDen": 2, "closedLoops.Delta.den": 1, "bodeplot": 6, - "tf": 18, "neuroNum": 2, "neuroDen": 2, "whichLines": 3, @@ -38835,13 +39544,10 @@ "annotation": 13, "dArrow2": 2, "dArrow": 2, - "filename": 21, - "pathToFile": 11, "print": 6, "fix_ps_linestyle": 6, "openLoops": 1, "bikeData.openLoops": 1, - "num": 24, "openLoops.Phi.num": 1, "den": 15, "openLoops.Phi.den": 1, @@ -38850,19 +39556,14 @@ "openLoops.Y.num": 1, "openLoops.Y.den": 1, "openBode": 3, - "line": 15, "wc": 14, "wShift": 5, - "num2str": 10, "bikeData.handlingMetric.num": 1, "bikeData.handlingMetric.den": 1, - "w": 6, "mag": 4, "phase": 2, "bode": 5, "metricLine": 1, - "plot": 26, - "k": 75, "Linewidth": 7, "Color": 13, "Linestyle": 6, @@ -38886,15 +39587,12 @@ "PaperPosition": 3, "PaperSize": 3, "rad/sec": 1, - "phi": 13, "Open": 1, "Loop": 1, "Bode": 1, "Diagrams": 1, - "at": 3, "m/s": 6, "Latex": 1, - "type": 4, "LineStyle": 2, "LineWidth": 2, "Location": 2, @@ -38909,16 +39607,13 @@ "openBode.eps": 1, "deps2c": 3, "maxMag": 2, - "max": 9, "magnitudes": 1, "area": 1, "fillColors": 1, "gca": 8, "speedNames": 12, "metricLines": 2, - "bikes": 24, "data.": 6, - ".": 13, ".handlingMetric.num": 1, ".handlingMetric.den": 1, "chil": 2, @@ -38936,14 +39631,12 @@ "Lateral": 1, "Deviation": 1, "paths.eps": 1, - "d": 12, "like": 1, "plot.": 1, "names": 6, "prettyNames": 3, "units": 3, "index": 6, - "fieldnames": 5, "data.Browser": 1, "maxValue": 4, "oneSpeed": 3, @@ -38953,7 +39646,6 @@ "pad": 10, "yShift": 16, "xShift": 3, - "time": 21, "oneSpeed.time": 2, "oneSpeed.speed": 2, "distance": 6, @@ -38968,10 +39660,8 @@ "loc": 3, "l1": 2, "l2": 2, - "first": 3, "ylabel": 4, "box": 4, - "&&": 13, "x_r": 6, "y_r": 6, "w_r": 5, @@ -39009,7 +39699,6 @@ "legends": 3, "floatSpec": 3, "twentyPercent": 1, - "generate_data": 5, "nominalData": 1, "nominalData.": 2, "bikeData.": 2, @@ -39023,107 +39712,21 @@ "pathToParFile": 2, "str": 2, "eigenValues": 1, - "eig": 6, - "real": 3, "zeroIndices": 3, - "ones": 6, "maxEvals": 4, "maxLine": 7, "minLine": 4, "min": 1, "speedInd": 12, - "cross_validation": 1, - "hyper_parameter": 3, - "num_data": 2, - "K": 4, - "indices": 2, - "crossvalind": 1, - "errors": 4, - "test_idx": 4, - "train_idx": 3, - "x_train": 2, - "y_train": 2, - "train": 1, - "x_test": 3, - "y_test": 3, - "calc_cost": 1, - "calc_error": 2, - "mean": 2, - "value": 2, - "isterminal": 2, - "direction": 2, - "mu": 73, - "FIXME": 1, - "from": 2, - "the": 14, - "largest": 1, - "primary": 1, - "clear": 13, - "tic": 7, - "T": 22, - "x_min": 3, - "x_max": 3, - "y_min": 3, - "y_max": 3, - "how": 1, - "many": 1, - "points": 11, - "per": 5, - "one": 3, - "measure": 1, - "unit": 1, - "both": 1, - "in": 8, - "and": 7, - "ds": 1, - "x_res": 7, - "*n": 2, - "y_res": 7, - "grid_x": 3, - "grid_y": 3, - "advected_x": 12, - "advected_y": 12, - "parfor": 5, - "X": 6, - "ode45": 6, - "@dg": 1, - "store": 4, - "advected": 2, - "positions": 2, - "as": 4, - "they": 2, - "would": 2, - "appear": 2, - "coords": 2, - "Compute": 3, - "FTLE": 14, - "sigma": 6, - "compute": 2, - "Jacobian": 3, - "*ds": 4, - "eigenvalue": 2, - "of": 35, - "*phi": 2, - "log": 2, - "lambda_max": 2, - "/abs": 3, - "*T": 3, - "toc": 5, - "field": 2, - "contourf": 2, - "location": 1, - "EastOutside": 1, - "f_x_t": 2, - "inline": 1, - "grid_min": 3, - "grid_max": 3, - "grid_width": 1, - "grid_spacing": 5, - "grid_width/": 1, - "*grid_width/": 4, - "colorbar": 1, - "load_data": 4, - "t0": 6, + "Conditions": 1, + "Integration": 2, + "@cross_y": 1, + "textscan": 1, + "strtrim": 2, + "vals": 2, + "regexp": 1, + "par.": 1, + "str2num": 1, "t1": 6, "t2": 6, "t3": 1, @@ -39136,7 +39739,6 @@ "find_structural_gains": 2, "yh": 2, "fit": 6, - "x0": 4, "compare": 3, "resultPlantOne.fit": 1, "guessPlantTwo": 3, @@ -39148,15 +39750,22 @@ "resultPlantTwo.fit.par": 1, "gainSlopeOffset": 6, "eye": 9, + "aux.pars": 3, "this": 2, - "only": 7, "uses": 1, "tau": 1, "through": 1, "wfs": 1, - "true": 2, + "aux.timeDelay": 2, + "aux.plantFirst": 2, + "aux.plantSecond": 2, "plantOneSlopeOffset": 3, "plantTwoSlopeOffset": 3, + "aux.m": 3, + "aux.b": 3, + "dx": 6, + "adapting_structural_model": 2, + "aux": 3, "mod": 3, "idnlgrey": 1, "pem": 1, @@ -39166,11 +39775,11 @@ "plantNum.plantTwo": 2, "sections": 13, "secData.": 1, - "||": 3, "guess.": 2, "result.": 2, ".fit.par": 1, "currentGuess": 2, + ".*": 2, "warning": 1, "randomGuess": 1, "The": 6, @@ -39182,428 +39791,25 @@ "results.mat": 1, "guess": 1, "plantNum": 1, - "result": 5, "plots/": 1, ".png": 1, "task": 1, "closed": 1, "loop": 1, - "system": 2, "u.": 1, "gain": 1, "guesses": 1, - "k1": 4, - "k2": 3, - "k3": 3, - "k4": 4, "identified": 1, - "gains": 12, ".vaf": 1, - "Elements": 1, - "grid": 1, - "definition": 2, - "Dimensionless": 1, - "integrating": 1, - "Choice": 2, - "mass": 2, - "parameter": 2, - "Computation": 9, - "Lagrangian": 3, - "Points": 2, - "xl1": 13, - "yl1": 12, - "xl2": 9, - "yl2": 8, - "xl3": 8, - "yl3": 8, - "xl4": 10, - "yl4": 9, - "xl5": 8, - "yl5": 8, - "Lagr": 6, - "initial": 5, - "total": 6, - "energy": 8, - "E_L1": 4, - "Omega": 7, - "C_L1": 3, - "*E_L1": 1, - "Szebehely": 1, - "E": 8, - "Offset": 2, - "Initial": 3, - "conditions": 3, - "range": 2, - "x_0_min": 8, - "x_0_max": 8, - "vx_0_min": 8, - "vx_0_max": 8, - "y_0": 29, - "ndgrid": 2, - "vy_0": 22, - "*E": 2, - "*Omega": 5, - "vx_0.": 2, - "E_cin": 4, - "x_T": 25, - "y_T": 17, - "vx_T": 22, - "vy_T": 12, - "filtro": 15, - "E_T": 11, - "delta_E": 7, - "a": 17, - "matrix": 3, - "numbers": 2, - "integration": 9, - "steps": 2, - "each": 2, - "np": 8, - "number": 2, - "integrated": 5, - "fprintf": 18, - "Energy": 4, - "tolerance": 2, - "setting": 4, - "energy_tol": 6, - "Setting": 1, - "options": 14, - "integrator": 2, - "RelTol": 2, - "AbsTol": 2, - "From": 1, - "Short": 1, - "odeset": 4, - "Parallel": 2, - "equations": 2, - "motion": 2, - "h": 19, - "waitbar": 6, - "r1": 3, - "r2": 3, - "g": 5, - "i/n": 1, - "y_0.": 2, - "./": 1, - "mu./": 1, - "isreal": 8, - "Check": 6, - "velocity": 2, - "positive": 2, - "Kinetic": 2, - "Y": 19, - "@f_reg": 1, - "Saving": 4, - "solutions": 2, - "final": 2, - "difference": 2, - "with": 2, - "conservation": 2, - "position": 2, - "point": 14, - "interesting": 4, - "non": 2, - "sense": 2, - "bad": 4, - "close": 4, - "t_integrazione": 3, - "filtro_1": 12, - "dphi": 12, - "ftle": 10, - "ftle_norm": 1, - "ds_x": 1, - "ds_vx": 1, - "La": 1, - "direzione": 1, - "dello": 1, - "spostamento": 1, - "la": 2, - "decide": 1, - "il": 1, - "denominatore": 1, - "TODO": 1, - "spiegarsi": 1, - "teoricamente": 1, - "come": 1, - "mai": 1, - "matrice": 1, - "pu": 1, - "essere": 1, - "ridotta": 1, - "x2": 1, - "*ds_x": 2, - "*ds_vx": 2, - "Manual": 2, - "visualize": 2, - "*log": 2, - "dphi*dphi": 1, - "tempo": 4, - "integrare": 2, - ".2f": 5, - "calcolare": 2, - "var_": 2, - "_": 2, - "var_xvx_": 2, - "ode00": 2, - "_n": 2, - "save": 2, - "nome": 2, - "Transforming": 1, - "into": 1, - "Hamiltonian": 1, - "variables": 2, - "px_0": 2, - "py_0": 2, - "px_T": 4, - "py_T": 4, - "inf": 1, - "@cr3bp_jac": 1, - "@fH": 1, - "EnergyH": 1, - "t_integr": 1, - "Back": 1, - "Inf": 1, - "_e": 1, - "_H": 1, - "Range": 1, - "E_0": 4, - "C_L1/2": 1, - "Y_0": 4, - "nx": 32, - "nvx": 32, - "dvx": 3, - "ny": 29, - "dy": 5, - "/2": 3, - "ne": 29, - "de": 4, - "e_0": 7, - "Definition": 1, - "arrays": 1, - "In": 1, - "approach": 1, - "useful": 9, - "pints": 1, - "are": 1, - "stored": 1, - "filter": 14, - "l": 64, - "v_y": 3, - "*e_0": 3, - "vx": 2, - "vy": 2, - "Selection": 1, - "Data": 2, - "transfer": 1, - "GPU": 3, - "x_gpu": 3, - "gpuArray": 4, - "y_gpu": 3, - "vx_gpu": 3, - "vy_gpu": 3, - "Integration": 2, - "N": 9, - "x_f": 3, - "y_f": 3, - "vx_f": 3, - "vy_f": 3, - "arrayfun": 2, - "@RKF45_FILE_gpu": 1, - "back": 1, - "CPU": 1, - "memory": 1, - "cleaning": 1, - "gather": 4, - "Construction": 1, - "computation": 2, - "X_T": 4, - "Y_T": 4, - "VX_T": 4, - "VY_T": 3, - "filter_ftle": 11, - "Compute_FILE_gpu": 1, - "Plot": 1, - "results": 1, - "squeeze": 1, - "clc": 1, - "load_bikes": 2, - "e_T": 7, - "Integrate_FILE": 1, - "Integrate": 6, - "Look": 2, - "phisically": 2, - "meaningful": 6, - "meaningless": 2, - "i/nx": 2, - "*Potential": 5, - "ci": 9, - "te": 2, - "ye": 9, - "ie": 2, - "@f": 6, - "Potential": 1, - "delta_e": 3, - "Integrate_FTLE_Gawlick_ell": 1, - "ecc": 2, - "nu": 2, - "ecc*cos": 1, - "@f_ell": 1, - "Consider": 1, - "also": 1, - "negative": 1, - "goodness": 1, - "roots": 3, - "*mu": 6, - "c3": 3, - "lane_change": 1, - "start": 4, - "width": 3, - "slope": 3, - "pathLength": 3, - "single": 1, - "double": 1, - "Double": 1, - "lane": 4, - "change": 1, - "needs": 1, - "lane.": 1, - "laneLength": 4, - "startOfSlope": 3, - "endOfSlope": 1, - "<=>": 1, - "1": 1, - "downSlope": 3, - "gains.Benchmark.Slow": 1, - "place": 2, - "holder": 2, - "gains.Browserins.Slow": 1, - "gains.Browser.Slow": 1, - "gains.Pista.Slow": 1, - "gains.Fisher.Slow": 1, - "gains.Yellow.Slow": 1, - "gains.Yellowrev.Slow": 1, - "gains.Benchmark.Medium": 1, - "gains.Browserins.Medium": 1, - "gains.Browser.Medium": 1, - "gains.Pista.Medium": 1, - "gains.Fisher.Medium": 1, - "gains.Yellow.Medium": 1, - "gains.Yellowrev.Medium": 1, - "gains.Benchmark.Fast": 1, - "gains.Browserins.Fast": 1, - "gains.Browser.Fast": 1, - "gains.Pista.Fast": 1, - "gains.Fisher.Fast": 1, - "gains.Yellow.Fast": 1, - "gains.Yellowrev.Fast": 1, - "gains.": 1, - "parser": 1, - "inputParser": 1, - "parser.addRequired": 1, - "parser.addParamValue": 3, - "parser.parse": 1, - "args": 1, - "parser.Results": 1, - "raw": 1, - "load": 1, - "args.directory": 1, - "iddata": 1, - "raw.theta": 1, - "raw.theta_c": 1, - "args.sampleTime": 1, - "args.detrend": 1, - "detrend": 1, - "filtfcn": 2, - "statefcn": 2, - "makeFilter": 1, - "v": 12, - "@iirFilter": 1, - "@getState": 1, - "yn": 2, - "iirFilter": 1, - "xn": 4, - "vOut": 2, - "getState": 1, - "classdef": 1, - "matlab_class": 2, - "properties": 1, - "R": 1, - "G": 1, - "methods": 1, - "obj": 2, - "r": 2, - "obj.R": 2, - "obj.G": 2, - "obj.B": 2, - "disp": 8, - "enumeration": 1, - "red": 1, - "green": 1, - "blue": 1, - "cyan": 1, - "magenta": 1, - "yellow": 1, - "black": 1, - "white": 1, - "ret": 3, - "matlab_function": 5, - "Call": 2, - "which": 2, - "resides": 2, - "same": 2, - "directory": 2, - "value1": 4, - "semicolon": 2, - "mandatory": 2, - "suppresses": 2, - "command": 2, - "line.": 2, - "value2": 4, - "d_mean": 3, - "d_std": 3, - "normalize": 1, - "repmat": 2, - "std": 1, - "d./": 1, - "overrideSettings": 3, - "overrideNames": 2, - "defaultNames": 2, - "notGiven": 5, - "setxor": 1, - "settings.": 1, - "defaultSettings.": 1, - "fid": 7, - "fopen": 2, - "textscan": 1, - "fclose": 2, - "strtrim": 2, - "vals": 2, - "regexp": 1, - "par.": 1, - "str2num": 1, - "choose_plant": 4, - "p": 7, - "Conditions": 1, - "@cross_y": 1, - "ode113": 2, - "RK4": 3, - "fun": 5, - "tspan": 7, - "th": 1, - "Runge": 1, - "Kutta": 1, - "dim": 2, - "while": 1, - "h/2": 2, - "k1*h/2": 1, - "k2*h/2": 1, - "h*k3": 1, - "h/6*": 1, - "*k2": 1, - "*k3": 1, - "arg1": 1, - "arg": 2, - "RK4_par": 1, + "arguments": 7, + "ischar": 1, + "options.": 1, + "value": 2, + "isterminal": 2, + "direction": 2, + "FIXME": 1, + "largest": 1, + "primary": 1, "wnm": 11, "zetanm": 5, "ss": 3, @@ -39643,43 +39849,130 @@ "whipple_pull_force_ABCD": 1, "bottomRow": 1, "prod": 3, - "Earth": 2, - "Moon": 2, - "C_star": 1, - "C/2": 1, - "orbit": 1, - "Y0": 6, - "y0": 2, - "vx0": 2, - "vy0": 2, - "l0": 1, - "delta_E0": 1, - "Hill": 1, - "Edgecolor": 1, - "none": 1, - "ok": 2, - "sg": 1, - "sr": 1, - "arguments": 7, - "ischar": 1, - "options.": 1, - "write_gains": 1, - "contents": 1, - "importdata": 1, - "speedsInFile": 5, - "contents.data": 2, - "gainsInFile": 3, - "sameSpeedIndices": 5, - "allGains": 4, - "allSpeeds": 4, - "sort": 1, - "contents.colheaders": 1 + "x_min": 3, + "x_max": 3, + "y_min": 3, + "y_max": 3, + "how": 1, + "many": 1, + "measure": 1, + "unit": 1, + "both": 1, + "ds": 1, + "x_res": 7, + "*n": 2, + "y_res": 7, + "grid_x": 3, + "grid_y": 3, + "X": 6, + "@dg": 1, + "Compute": 3, + "*ds": 4, + "location": 1, + "EastOutside": 1, + "ret": 3, + "arg1": 1, + "arg": 2, + "arrayfun": 2, + "RK4_par": 1, + "Range": 1, + "E_0": 4, + "C_L1/2": 1, + "Y_0": 4, + "dvx": 3, + "dy": 5, + "/2": 3, + "de": 4, + "Definition": 1, + "arrays": 1, + "In": 1, + "approach": 1, + "useful": 9, + "pints": 1, + "are": 1, + "stored": 1, + "v_y": 3, + "vx": 2, + "vy": 2, + "Selection": 1, + "Data": 2, + "transfer": 1, + "GPU": 3, + "x_gpu": 3, + "gpuArray": 4, + "y_gpu": 3, + "vx_gpu": 3, + "vy_gpu": 3, + "x_f": 3, + "y_f": 3, + "vx_f": 3, + "vy_f": 3, + "@RKF45_FILE_gpu": 1, + "back": 1, + "CPU": 1, + "memory": 1, + "cleaning": 1, + "gather": 4, + "Construction": 1, + "computation": 2, + "X_T": 4, + "Y_T": 4, + "VX_T": 4, + "VY_T": 3, + "filter_ftle": 11, + "Compute_FILE_gpu": 1, + "Plot": 1, + "results": 1, + "squeeze": 1, + "c1": 5, + "roots": 3, + "*mu": 6, + "c2": 5, + "c3": 3, + "u": 3, + "Yp": 2, + "human": 1, + "Ys": 1, + "feedback": 1, + "tf2ss": 1, + "Ys.num": 1, + "Ys.den": 1, + "delta_e": 3, + "Integrate_FTLE_Gawlick_ell": 1, + "ecc": 2, + "nu": 2, + "ecc*cos": 1, + "@f_ell": 1, + "Consider": 1, + "also": 1, + "negative": 1, + "goodness": 1, + "gains.Benchmark.Slow": 1, + "place": 2, + "holder": 2, + "gains.Browserins.Slow": 1, + "gains.Browser.Slow": 1, + "gains.Pista.Slow": 1, + "gains.Fisher.Slow": 1, + "gains.Yellow.Slow": 1, + "gains.Yellowrev.Slow": 1, + "gains.Benchmark.Medium": 1, + "gains.Browserins.Medium": 1, + "gains.Browser.Medium": 1, + "gains.Pista.Medium": 1, + "gains.Fisher.Medium": 1, + "gains.Yellow.Medium": 1, + "gains.Yellowrev.Medium": 1, + "gains.Benchmark.Fast": 1, + "gains.Browserins.Fast": 1, + "gains.Browser.Fast": 1, + "gains.Pista.Fast": 1, + "gains.Fisher.Fast": 1, + "gains.Yellow.Fast": 1, + "gains.Yellowrev.Fast": 1, + "gains.": 1 }, "Max": { - "{": 126, - "}": 126, - "[": 163, - "]": 163, "max": 1, "v2": 1, ";": 39, @@ -39714,7 +40007,11 @@ "Hello": 1, "connect": 13, "fasten": 1, - "pop": 1 + "pop": 1, + "{": 126, + "}": 126, + "[": 163, + "]": 163 }, "MediaWiki": { "Overview": 1, @@ -39997,971 +40294,1008 @@ "%": 416, "-": 6967, "module": 46, - "ll_backend.code_info.": 1, + "rot13_verbose.": 1, "interface.": 13, "import_module": 126, - "check_hlds.type_util.": 2, - "hlds.code_model.": 1, - "hlds.hlds_data.": 2, + "io.": 8, + "pred": 255, + "main": 15, + "(": 3351, + "io__state": 4, + ")": 3351, + ".": 610, + "mode": 8, + "di": 54, + "uo": 58, + "is": 246, + "det.": 184, + "implementation.": 12, + "char": 10, + "int": 129, + "require.": 6, + "rot13a/2": 1, + "A": 14, + "table": 1, + "to": 16, + "map": 7, + "the": 27, + "alphabetic": 2, + "characters": 1, + "their": 1, + "rot13": 11, + "equivalents": 1, + "fails": 1, + "if": 15, + "input": 1, + "not": 7, + "rot13a": 55, + "in": 510, + "out": 337, + "semidet.": 10, + "rot13/2": 1, + "Applies": 1, + "algorithm": 1, + "a": 10, + "character.": 1, + "Char": 12, + "RotChar": 8, + "TmpChar": 2, + "then": 3, + "else": 8, + "io__read_char": 1, + "Res": 8, + "{": 27, + "ok": 3, + "}": 28, + "io__write_char": 1, + ";": 913, + "eof": 6, + "error": 7, + "ErrorCode": 4, + "io__error_message": 2, + "ErrorMessage": 4, + "io__stderr_stream": 1, + "StdErr": 8, + "io__write_string": 2, + "io__nl": 1, + "rot13_concise.": 1, + "state": 3, + "string.": 7, + "alphabet": 3, + "cycle": 4, + "rot_n": 2, + "N": 6, + "char_to_string": 1, + "CharString": 2, + "sub_string_search": 1, + "Index": 3, + "NewIndex": 2, + "+": 127, + "mod": 1, + "*": 20, + "//": 2, + "index_det": 1, + "read_char": 1, + "print": 3, + "error_message": 1, + "stderr_stream": 1, + "nl": 1, + "check_hlds.polymorphism.": 1, + "hlds.": 1, "hlds.hlds_goal.": 2, - "hlds.hlds_llds.": 1, "hlds.hlds_module.": 2, "hlds.hlds_pred.": 2, - "hlds.instmap.": 2, - "libs.globals.": 2, - "ll_backend.continuation_info.": 1, - "ll_backend.global_data.": 1, - "ll_backend.layout.": 1, - "ll_backend.llds.": 1, - "ll_backend.trace_gen.": 1, + "hlds.hlds_rtti.": 2, + "mdbcomp.": 1, "mdbcomp.prim_data.": 3, - "mdbcomp.goal_path.": 2, + "parse_tree.": 1, "parse_tree.prog_data.": 2, + "list.": 4, + "maybe.": 3, + "term.": 3, + "polymorphism_process_module": 2, + "module_info": 26, + "polymorphism_process_generated_pred": 2, + "pred_id": 15, + "unification_typeinfos_rtti_varmaps": 2, + "mer_type": 21, + "rtti_varmaps": 9, + "unification": 8, + "hlds_goal_info": 22, + "polymorphism_process_new_call": 2, + "pred_info": 20, + "proc_info": 11, + "proc_id": 12, + "list": 82, + "prog_var": 58, + "builtin_state": 1, + "maybe": 20, + "call_unify_context": 2, + "sym_name": 3, + "hlds_goal": 45, + "poly_info": 45, + "polymorphism_make_type_info_vars": 1, + "term.context": 3, + "polymorphism_make_type_info_var": 1, + "type": 57, + "int_or_var": 2, + "iov_int": 1, + "iov_var": 1, + "gen_extract_type_info": 1, + "tvar": 10, + "kind": 1, + "prog_varset": 14, + "vartypes": 12, + "poly_info.": 1, + "create_poly_info": 1, + "poly_info_extract": 1, + "build_typeclass_info_type": 3, + "prog_constraint": 4, + "type_is_typeclass_info": 1, + "type_is_type_info_or_ctor_type": 1, + "build_type_info_type": 1, + "get_special_proc": 1, + "special_pred_id": 2, + "get_special_proc_det": 1, + "convert_pred_to_lambda_goal": 3, + "purity": 1, + "lambda_eval_method": 1, + "unify_context": 3, + "context": 1, + "unify_rhs": 4, + "fix_undetermined_mode_lambda_goal": 2, + "rhs_lambda_goal": 7, + "init_type_info_var": 1, + "init_const_type_ctor_info_var": 1, + "type_ctor": 1, + "cons_id": 2, + "type_info_kind": 2, + "type_info": 8, + "type_ctor_info.": 1, + "new_type_info_var_raw": 1, + "check_hlds.clause_to_proc.": 1, + "check_hlds.mode_util.": 1, + "check_hlds.type_util.": 2, + "hlds.from_ground_term_util.": 1, + "hlds.const_struct.": 1, + "hlds.goal_util.": 1, + "hlds.hlds_args.": 1, + "hlds.hlds_clauses.": 1, + "hlds.hlds_code_util.": 1, + "hlds.hlds_data.": 2, + "hlds.instmap.": 2, + "hlds.passes_aux.": 1, + "hlds.pred_table.": 1, + "hlds.quantification.": 1, + "hlds.special_pred.": 1, + "libs.": 1, + "libs.globals.": 2, + "libs.options.": 3, + "mdbcomp.goal_path.": 2, + "mdbcomp.program_representation.": 1, + "parse_tree.builtin_lib_types.": 2, + "parse_tree.prog_mode.": 1, + "parse_tree.prog_type.": 2, + "parse_tree.prog_type_subst.": 1, "parse_tree.set_of_var.": 2, "assoc_list.": 3, "bool.": 4, - "counter.": 1, - "io.": 8, - "list.": 4, - "map.": 3, - "maybe.": 3, - "set.": 4, - "set_tree234.": 1, - "term.": 3, - "implementation.": 12, - "backend_libs.builtin_ops.": 1, - "backend_libs.proc_label.": 1, - "hlds.arg_info.": 1, - "hlds.hlds_desc.": 1, - "hlds.hlds_rtti.": 2, - "libs.options.": 3, - "libs.trace_params.": 1, - "ll_backend.code_util.": 1, - "ll_backend.opt_debug.": 1, - "ll_backend.var_locn.": 1, - "parse_tree.builtin_lib_types.": 2, - "parse_tree.prog_type.": 2, - "parse_tree.mercury_to_mercury.": 1, - "cord.": 1, "int.": 4, + "map.": 3, "pair.": 3, - "require.": 6, - "stack.": 1, - "string.": 7, + "set.": 4, + "solutions.": 1, "varset.": 2, - "type": 57, - "code_info.": 1, - "pred": 255, - "code_info_init": 2, - "(": 3351, - "bool": 406, - "in": 510, - "globals": 5, - "pred_id": 15, - "proc_id": 12, - "pred_info": 20, - "proc_info": 11, - "abs_follow_vars": 3, - "module_info": 26, - "static_cell_info": 4, - "const_struct_map": 3, - "resume_point_info": 11, - "out": 337, - "trace_slot_info": 3, - "maybe": 20, - "containing_goal_map": 4, - ")": 3351, - "list": 82, - "string": 115, - "int": 129, - "code_info": 208, - "is": 246, - "det.": 184, - "get_globals": 5, - "get_exprn_opts": 2, - "exprn_opts": 3, - "get_module_info": 7, - "get_pred_id": 6, - "get_proc_id": 5, - "get_pred_info": 2, - "get_proc_info": 4, - "get_varset": 3, - "prog_varset": 14, - "func": 24, - "get_var_types": 3, - "vartypes.": 1, - "get_maybe_trace_info": 2, - "trace_info": 3, - "get_emit_trail_ops": 2, - "add_trail_ops": 5, - "get_emit_region_ops": 2, - "add_region_ops": 6, - "get_forward_live_vars": 2, - "set_of_progvar": 10, - "set_forward_live_vars": 2, - "get_instmap": 4, - "instmap": 3, - "set_instmap": 3, - "get_par_conj_depth": 2, - "set_par_conj_depth": 2, - "get_label_counter": 3, - "counter": 6, - "get_succip_used": 2, - "get_layout_info": 4, - "proc_label_layout_info": 3, - "get_proc_trace_events": 2, - "set_proc_trace_events": 2, - "get_closure_layouts": 3, - "closure_proc_id_data": 4, - "get_max_reg_in_use_at_trace": 2, - "set_max_reg_in_use_at_trace": 2, - "get_created_temp_frame": 2, - "get_static_cell_info": 5, - "set_static_cell_info": 5, - "get_alloc_sites": 3, - "set_tree234": 3, - "alloc_site_info": 4, - "set_alloc_sites": 3, - "get_used_env_vars": 2, - "set": 16, - "set_used_env_vars": 2, - "get_opt_trail_ops": 2, - "get_opt_region_ops": 2, - "get_auto_comments": 2, - "get_lcmc_null": 2, - "get_containing_goal_map": 3, - "get_containing_goal_map_det": 2, - "get_const_struct_map": 2, - "add_out_of_line_code": 2, - "llds_code": 21, - "get_out_of_line_code": 2, - "get_var_slot_count": 2, - "set_maybe_trace_info": 3, - "get_opt_no_return_calls": 2, - "get_zombies": 2, - "set_zombies": 2, - "get_var_locn_info": 7, - "var_locn_info": 3, - "set_var_locn_info": 4, - "get_temps_in_use": 6, - "lval": 114, - "set_temps_in_use": 4, - "get_fail_info": 13, - "fail_info": 24, - "set_fail_info": 9, - "set_label_counter": 3, - "set_succip_used": 3, - "set_layout_info": 4, - "get_max_temp_slot_count": 2, - "set_max_temp_slot_count": 2, - "get_temp_content_map": 3, - "map": 7, - "slot_contents": 4, - "set_temp_content_map": 2, - "get_persistent_temps": 3, - "set_persistent_temps": 2, - "set_closure_layouts": 3, - "get_closure_seq_counter": 3, - "set_closure_seq_counter": 3, - "set_created_temp_frame": 2, - "code_info_static": 26, - "code_info_loc_dep": 22, - "code_info_persistent": 44, - ".": 610, - "cis_globals": 2, - "cis_exprn_opts": 2, - "cis_module_info": 2, - "cis_pred_id": 2, - "cis_proc_id": 2, - "cis_pred_info": 2, - "cis_proc_info": 2, - "cis_proc_label": 1, - "proc_label": 2, - "cis_varset": 2, - "cis_var_slot_count": 2, - "cis_maybe_trace_info": 3, - "cis_opt_no_resume_calls": 2, - "cis_emit_trail_ops": 2, - "cis_opt_trail_ops": 2, - "cis_emit_region_ops": 2, - "cis_opt_region_ops": 2, - "cis_auto_comments": 2, - "cis_lcmc_null": 2, - "cis_containing_goal_map": 2, - "cis_const_struct_map": 2, - "cild_forward_live_vars": 3, - "cild_instmap": 3, - "cild_zombies": 3, - "cild_var_locn_info": 3, - "cild_temps_in_use": 3, - "cild_fail_info": 3, - "cild_par_conj_depth": 3, - "cip_label_num_src": 3, - "cip_store_succip": 3, - "cip_label_info": 3, - "cip_proc_trace_events": 3, - "cip_stackslot_max": 3, - "cip_temp_contents": 3, - "cip_persistent_temps": 3, - "cip_closure_layout_seq": 3, - "cip_closure_layouts": 3, - "cip_max_reg_r_used": 3, - "cip_max_reg_f_used": 2, - "cip_created_temp_frame": 3, - "cip_static_cell_info": 3, - "cip_alloc_sites": 3, - "cip_used_env_vars": 3, - "cip_ts_string_table_size": 3, - "cip_ts_rev_string_table": 4, - "cip_out_of_line_code": 4, - "SaveSuccip": 2, - "Globals": 32, - "PredId": 50, - "ProcId": 31, - "PredInfo": 64, - "ProcInfo": 43, - "FollowVars": 6, "ModuleInfo": 49, - "StaticCellInfo": 8, - "ConstStructMap": 2, - "ResumePoint": 13, - "TraceSlotInfo": 5, - "MaybeContainingGoalMap": 5, - "TSRevStringTable": 2, - "TSStringTableSize": 2, - "CodeInfo": 2, - "ProcLabel": 8, - "make_proc_label": 1, - "proc_info_get_initial_instmap": 1, - "InstMap": 6, - "proc_info_get_liveness_info": 1, - "Liveness": 4, - "CodeModel": 8, - "proc_info_interface_code_model": 2, - "build_input_arg_list": 1, - "ArgList": 2, - "proc_info_get_varset": 1, - "VarSet": 15, - "proc_info_get_vartypes": 2, - "VarTypes": 22, - "proc_info_get_stack_slots": 1, - "StackSlots": 5, - "ExprnOpts": 4, - "init_exprn_opts": 3, - "globals.lookup_bool_option": 18, - "use_float_registers": 5, - "UseFloatRegs": 6, - "yes": 144, - "FloatRegType": 3, - "reg_f": 1, - ";": 913, - "no": 365, - "reg_r": 2, - "globals.get_trace_level": 1, - "TraceLevel": 5, - "eff_trace_level_is_none": 2, - "trace_fail_vars": 1, - "FailVars": 3, - "MaybeFailVars": 3, - "set_of_var.union": 3, - "EffLiveness": 3, - "init_var_locn_state": 1, - "VarLocnInfo": 12, - "stack.init": 1, - "ResumePoints": 14, - "allow_hijacks": 3, - "AllowHijack": 3, - "Hijack": 6, - "allowed": 6, - "not_allowed": 5, - "DummyFailInfo": 2, - "resume_point_unknown": 9, - "may_be_different": 7, - "not_inside_non_condition": 2, - "map.init": 7, - "TempContentMap": 4, - "set.init": 7, - "PersistentTemps": 4, - "TempsInUse": 8, - "Zombies": 2, - "set_of_var.init": 1, - "LayoutMap": 2, - "max_var_slot": 1, - "VarSlotMax": 2, - "trace_reserved_slots": 1, - "FixedSlots": 2, - "_": 149, - "int.max": 1, - "SlotMax": 2, - "opt_no_return_calls": 3, - "OptNoReturnCalls": 2, - "use_trail": 3, - "UseTrail": 2, - "disable_trail_ops": 3, - "DisableTrailOps": 2, - "EmitTrailOps": 3, - "do_not_add_trail_ops": 1, - "optimize_trail_usage": 3, - "OptTrailOps": 2, - "optimize_region_ops": 3, - "OptRegionOps": 2, - "region_analysis": 3, - "UseRegions": 3, - "EmitRegionOps": 3, - "do_not_add_region_ops": 1, - "auto_comments": 4, - "AutoComments": 2, - "optimize_constructor_last_call_null": 3, - "LCMCNull": 2, - "CodeInfo0": 2, - "init_fail_info": 2, - "will": 1, - "override": 1, - "this": 4, - "dummy": 2, - "value": 16, - "nested": 1, - "parallel": 3, - "conjunction": 1, - "depth": 1, - "counter.init": 2, + "module_info_get_preds": 3, + ".ModuleInfo": 8, + "Preds0": 2, + "map.keys": 3, + "PredIds0": 2, + "list.foldl": 6, + "maybe_polymorphism_process_pred": 3, + "Preds1": 2, + "PredIds1": 2, + "fixup_pred_polymorphism": 4, + "expand_class_method_bodies": 1, + "PredId": 50, + "module_info_pred_info": 6, + "PredInfo": 64, + "PredModule": 8, + "pred_info_module": 4, + "PredName": 8, + "pred_info_name": 4, + "PredArity": 6, + "pred_info_orig_arity": 3, + "no_type_info_builtin": 3, + "copy_module_clauses_to_procs": 1, "[": 203, "]": 203, - "set_tree234.init": 1, - "cord.empty": 1, - "init_maybe_trace_info": 3, - "CodeInfo1": 2, - "exprn_opts.": 1, - "gcc_non_local_gotos": 3, - "OptNLG": 3, - "NLG": 3, - "have_non_local_gotos": 1, - "do_not_have_non_local_gotos": 1, - "asm_labels": 3, - "OptASM": 3, - "ASM": 3, - "have_asm_labels": 1, - "do_not_have_asm_labels": 1, - "static_ground_cells": 3, - "OptSGCell": 3, - "SGCell": 3, - "have_static_ground_cells": 1, - "do_not_have_static_ground_cells": 1, - "unboxed_float": 3, - "OptUBF": 3, - "UBF": 3, - "have_unboxed_floats": 1, - "do_not_have_unboxed_floats": 1, - "OptFloatRegs": 3, - "do_not_use_float_registers": 1, - "static_ground_floats": 3, - "OptSGFloat": 3, - "SGFloat": 3, - "have_static_ground_floats": 1, - "do_not_have_static_ground_floats": 1, - "static_code_addresses": 3, - "OptStaticCodeAddr": 3, - "StaticCodeAddrs": 3, - "have_static_code_addresses": 1, - "do_not_have_static_code_addresses": 1, - "trace_level": 4, - "CI": 294, - "proc_info_get_has_tail_call_events": 1, - "HasTailCallEvents": 3, - "tail_call_events": 1, - "get_next_label": 5, - "TailRecLabel": 2, - "MaybeTailRecLabel": 3, - "no_tail_call_events": 1, - "trace_setup": 1, - "TraceInfo": 2, - "MaxRegR": 4, - "MaxRegF": 4, - "cip_max_reg_f_used.": 1, - "TI": 4, - "LV": 2, - "IM": 2, - "Zs": 2, - "EI": 2, - "FI": 2, - "N": 6, - "LC": 2, - "SU": 2, - "LI": 2, - "PTE": 2, - "TM": 2, - "CM": 2, - "PT": 2, - "CLS": 2, - "CG": 2, - "MR": 4, - "MF": 1, - "MF.": 1, - "SCI": 2, - "ASI": 2, - "UEV": 2, - "ContainingGoalMap": 2, - "unexpected": 21, - "NewCode": 2, - "Code0": 2, - ".CI": 29, - "Code": 36, - "+": 127, - "Code.": 1, - "get_stack_slots": 2, - "stack_slots": 1, - "get_follow_var_map": 2, - "abs_follow_vars_map": 1, - "get_next_non_reserved": 2, - "reg_type": 1, - "set_follow_vars": 4, - "pre_goal_update": 3, - "hlds_goal_info": 22, - "has_subgoals": 2, - "post_goal_update": 3, - "body_typeinfo_liveness": 4, - "variable_type": 3, - "prog_var": 58, - "mer_type.": 1, - "variable_is_of_dummy_type": 2, - "is_dummy_type.": 1, - "search_type_defn": 4, - "mer_type": 21, - "hlds_type_defn": 1, - "semidet.": 10, - "lookup_type_defn": 2, - "hlds_type_defn.": 1, - "lookup_cheaper_tag_test": 2, - "maybe_cheaper_tag_test.": 1, - "filter_region_vars": 2, - "set_of_progvar.": 2, - "get_proc_model": 2, - "code_model.": 1, - "get_headvars": 2, - "get_arginfo": 2, - "arg_info": 2, - "get_pred_proc_arginfo": 3, - "current_resume_point_vars": 2, - "variable_name": 2, - "make_proc_entry_label": 2, - "code_addr.": 1, - "label": 5, - "succip_is_used": 2, - "add_trace_layout_for_label": 2, - "term.context": 3, - "trace_port": 1, - "forward_goal_path": 1, - "user_event_info": 1, - "layout_label_info": 2, - "get_cur_proc_label": 4, - "get_next_closure_seq_no": 2, - "add_closure_layout": 2, - "add_threadscope_string": 2, - "get_threadscope_rev_string_table": 2, - "add_scalar_static_cell": 2, - "typed_rval": 1, - "data_id": 3, - "add_scalar_static_cell_natural_types": 2, - "rval": 3, - "add_vector_static_cell": 2, - "llds_type": 1, - "add_alloc_site_info": 2, - "prog_context": 1, - "alloc_site_id": 2, - "add_resume_layout_for_label": 2, - "var_locn_get_stack_slots": 1, - "FollowVarMap": 2, - "var_locn_get_follow_var_map": 1, - "RegType": 2, - "NextNonReserved": 2, - "var_locn_get_next_non_reserved": 1, - "VarLocnInfo0": 4, - "var_locn_set_follow_vars": 1, - "GoalInfo": 44, - "HasSubGoals": 3, - "goal_info_get_resume_point": 1, - "no_resume_point": 1, - "resume_point": 1, - "goal_info_get_follow_vars": 1, - "MaybeFollowVars": 3, - "goal_info_get_pre_deaths": 1, - "PreDeaths": 3, - "rem_forward_live_vars": 3, - "maybe_make_vars_forward_dead": 2, - "goal_info_get_pre_births": 1, - "PreBirths": 2, - "add_forward_live_vars": 2, - "does_not_have_subgoals": 2, - "goal_info_get_post_deaths": 2, - "PostDeaths": 5, - "goal_info_get_post_births": 1, - "PostBirths": 3, - "make_vars_forward_live": 1, - "InstMapDelta": 2, - "goal_info_get_instmap_delta": 1, - "InstMap0": 2, - "instmap.apply_instmap_delta": 1, - "TypeInfoLiveness": 2, - "module_info_pred_info": 6, - "body_should_use_typeinfo_liveness": 1, - "Var": 13, - "Type": 18, - "lookup_var_type": 3, - "IsDummy": 2, - "VarType": 2, - "check_dummy_type": 1, - "TypeDefn": 6, - "type_to_ctor_det": 1, - "TypeCtor": 2, - "module_info_get_type_table": 1, - "TypeTable": 2, - "search_type_ctor_defn": 1, - "TypeDefnPrime": 2, - "CheaperTagTest": 3, - "get_type_defn_body": 1, - "TypeBody": 2, - "hlds_du_type": 1, - "CheaperTagTestPrime": 2, - "no_cheaper_tag_test": 1, - "ForwardLiveVarsBeforeGoal": 6, - "RegionVars": 2, - "code_info.get_var_types": 1, - "set_of_var.filter": 1, - "is_region_var": 1, + "polymorphism_process_pred_msg": 3, + "PredTable0": 3, + "map.lookup": 2, + "PredInfo0": 16, + "pred_info_get_clauses_info": 2, + "ClausesInfo0": 5, + "clauses_info_get_vartypes": 2, + "VarTypes0": 12, + "clauses_info_get_headvars": 2, "HeadVars": 20, - "module_info_pred_proc_info": 4, - "proc_info_get_headvars": 2, - "ArgInfo": 4, - "proc_info_arg_info": 1, - "ResumeVars": 4, - "FailInfo": 19, - "ResumePointStack": 2, - "stack.det_top": 5, - "ResumePointInfo": 2, - "pick_first_resume_point": 1, - "ResumeMap": 8, - "map.keys": 3, - "ResumeMapVarList": 2, - "set_of_var.list_to_set": 3, - "Name": 4, - "Varset": 2, - "varset.lookup_name": 2, - "Immed0": 3, - "CodeAddr": 2, - "Immed": 3, - "globals.lookup_int_option": 1, - "procs_per_c_function": 3, - "ProcsPerFunc": 2, - "CurPredId": 2, - "CurProcId": 2, - "proc": 2, - "make_entry_label": 1, - "Label": 8, - "C0": 4, - "counter.allocate": 2, - "C": 34, - "internal_label": 3, - "Context": 20, - "Port": 2, - "IsHidden": 2, - "GoalPath": 2, - "MaybeSolverEventInfo": 2, - "Layout": 2, - "Internals0": 8, - "Exec": 5, - "trace_port_layout_info": 1, - "LabelNum": 8, - "entry_label": 2, - "map.search": 2, - "Internal0": 4, - "internal_layout_info": 6, - "Exec0": 3, - "Resume": 5, - "Return": 6, - "Internal": 8, - "map.det_update": 4, - "Internals": 6, - "map.det_insert": 3, - "LayoutInfo": 2, - "Resume0": 3, - "get_active_temps_data": 2, - "assoc_list": 1, - "Temps": 2, - "map.select": 1, - "TempsInUseContentMap": 2, - "map.to_assoc_list": 3, - "cis_proc_label.": 1, - "SeqNo": 2, - "ClosureLayout": 2, - "ClosureLayouts": 2, + "pred_info_get_arg_types": 7, + "TypeVarSet": 15, + "ExistQVars": 13, + "ArgTypes0": 3, + "proc_arg_vector_partition_poly_args": 1, + "ExtraHeadVarList": 2, + "OldHeadVarList": 2, + "lookup_var_types": 6, + "ExtraArgTypes": 2, + "ArgTypes": 6, + "pred_info_set_arg_types": 1, + "PredInfo1": 5, + "_": 149, "|": 38, - "String": 2, - "SlotNum": 2, - "Size0": 3, - "RevTable0": 2, - "Size": 4, - "RevTable": 3, - "RevTable.": 1, - "TableSize": 2, - "cip_ts_string_table_size.": 1, - "RvalsTypes": 2, - "DataAddr": 6, - "StaticCellInfo0": 6, - "global_data.add_scalar_static_cell": 1, - "Rvals": 2, - "global_data.add_scalar_static_cell_natural_types": 1, - "Types": 6, - "Vector": 2, - "global_data.add_vector_static_cell": 1, - "AllocId": 2, - "AllocSite": 3, - "AllocSites0": 2, - "set_tree234.insert": 1, - "AllocSites": 2, - "position_info.": 1, - "branch_end_info.": 1, - "branch_end": 4, - "branch_end_info": 7, - "remember_position": 3, - "position_info": 14, - "reset_to_position": 4, - "reset_resume_known": 2, - "generate_branch_end": 2, - "abs_store_map": 3, - "after_all_branches": 2, - "save_hp_in_branch": 2, - "pos_get_fail_info": 3, - "fail_info.": 2, - "LocDep": 6, - "cild_fail_info.": 1, - "CurCI": 2, - "NextCI": 2, - "Static": 2, - "Persistent": 2, - "NextCI0": 4, - "TempsInUse0": 4, - "set.union": 2, - "BranchStart": 2, - "BranchStartFailInfo": 2, - "BSResumeKnown": 2, - "CurFailInfo": 2, - "CurFailStack": 2, - "CurCurfMaxfr": 2, - "CurCondEnv": 2, - "CurHijack": 2, - "NewFailInfo": 2, - "StoreMap": 8, - "MaybeEnd0": 3, - "MaybeEnd": 6, - "AbsVarLocs": 3, - "assoc_list.values": 1, - "AbsLocs": 2, - "code_util.max_mentioned_abs_regs": 1, - "instmap_is_reachable": 1, - "VarLocs": 2, - "assoc_list.map_values_only": 2, - "abs_locn_to_lval": 2, - "place_vars": 1, - "remake_with_store_map": 4, - "empty": 9, - "EndCodeInfo1": 5, - "EndCodeInfo0": 3, - "FailInfo0": 13, - "FailInfo1": 2, - "ResumeKnown0": 5, - "CurfrMaxfr0": 2, - "CondEnv0": 3, - "Hijack0": 2, - "R": 2, - "ResumeKnown1": 2, - "CurfrMaxfr1": 2, - "CondEnv1": 2, - "Hijack1": 2, - "resume_point_known": 15, - "Redoip0": 3, - "Redoip1": 2, - "ResumeKnown": 21, - "expect": 15, - "unify": 21, - "must_be_equal": 11, - "CurfrMaxfr": 24, - "EndCodeInfoA": 2, - "TempsInUse1": 2, - "EndCodeInfo": 2, - "BranchEnd": 2, - "BranchEndCodeInfo": 2, - "BranchEndLocDep": 2, - "VarLocns": 2, - "VarLvals": 2, - "reinit_var_locn_state": 1, - "Slot": 2, - "Pos0": 2, - "Pos": 2, - "CI0": 2, - "CIStatic0": 2, - "CILocDep0": 2, - "CIPersistent0": 2, - "LocDep0": 2, - "CI1": 2, - "save_hp": 1, - "CI2": 2, - "CIStatic": 2, - "CIPersistent": 2, - "resume_map.": 1, - "resume_point_info.": 1, - "disj_hijack_info.": 1, - "prepare_for_disj_hijack": 2, - "code_model": 3, - "disj_hijack_info": 3, - "undo_disj_hijack": 2, - "ite_hijack_info.": 1, - "prepare_for_ite_hijack": 2, - "embedded_stack_frame_id": 3, - "ite_hijack_info": 3, - "ite_enter_then": 2, - "simple_neg_info.": 1, - "enter_simple_neg": 2, - "simple_neg_info": 3, - "leave_simple_neg": 2, - "det_commit_info.": 1, - "prepare_for_det_commit": 2, - "det_commit_info": 6, - "generate_det_commit": 2, - "semi_commit_info.": 1, - "prepare_for_semi_commit": 2, - "semi_commit_info": 6, - "generate_semi_commit": 2, - "effect_resume_point": 2, - "pop_resume_point": 1, - "top_resume_point": 1, - "set_resume_point_to_unknown": 1, - "set_resume_point_and_frame_to_unknown": 1, - "generate_failure": 2, - "fail_if_rval_is_false": 1, - "failure_is_direct_branch": 1, - "code_addr": 8, - "may_use_nondet_tailcall": 1, - "nondet_tail_call": 1, - "produce_vars": 1, - "resume_map": 9, - "flush_resume_vars_to_stack": 1, - "make_resume_point": 1, - "resume_locs": 1, - "generate_resume_point": 2, - "resume_point_vars": 1, - "resume_point_stack_addr": 2, - "stack": 1, - "curfr_vs_maxfr": 2, - "condition_env": 3, - "hijack_allowed": 2, - "orig_only": 2, - "stack_only": 2, - "orig_and_stack": 1, - "stack_and_orig": 1, - "redoip_update": 2, - "has_been_done": 5, - "wont_be_done.": 1, - "resume_point_unknown.": 1, - "may_be_different.": 1, - "inside_non_condition": 6, - "not_inside_non_condition.": 1, - "not_allowed.": 1, - "disj_no_hijack": 4, - "disj_temp_frame": 4, - "disj_quarter_hijack": 4, - "disj_half_hijack": 3, - "disj_full_hijack": 3, - "HijackInfo": 29, - "CondEnv": 12, - "Allow": 12, - "model_det": 2, - "model_semi": 3, - "singleton": 28, - "llds_instr": 64, - "comment": 5, - "model_non": 2, - "create_temp_frame": 4, - "do_fail": 6, - "stack.pop": 1, - "TopResumePoint": 6, - "RestResumePoints": 2, - "stack.is_empty": 1, - "wont_be_done": 2, - "acquire_temp_slot": 15, - "slot_lval": 14, - "redoip_slot": 30, - "curfr": 18, - "non_persistent_temp_slot": 15, - "RedoipSlot": 33, - "assign": 46, - "maxfr": 42, - "redofr_slot": 14, - "RedofrSlot": 17, - "from_list": 13, - "prevfr_slot": 3, - "pick_stack_resume_point": 3, - "StackLabel": 9, - "LabelConst": 4, - "const": 10, - "llconst_code_addr": 6, - "true": 3, - "ite_region_info": 5, - "ite_info": 3, - "ite_hijack_type": 2, - "ite_no_hijack": 3, - "ite_temp_frame": 3, - "ite_quarter_hijack": 3, - "ite_half_hijack": 3, - "ite_full_hijack": 3, - "CondCodeModel": 4, - "MaybeEmbeddedFrameId": 5, - "HijackType": 12, - "MaybeRegionInfo": 12, - "MaxfrSlot": 30, - "TempFrameCode": 4, - "MaxfrCode": 7, - "EmbeddedFrameId": 2, - "slot_success_record": 1, - "persistent_temp_slot": 1, - "SuccessRecordSlot": 6, - "InitSuccessCode": 3, - "llconst_false": 1, - "ITEResumePoint": 2, - "ThenCode": 10, - "ElseCode": 7, - "ResumePoints0": 5, - "stack.det_pop": 1, - "HijackResumeKnown": 2, - "OldCondEnv": 2, - "RegionInfo": 2, - "EmbeddedStackFrameId": 2, - "ITEStackResumeCodeAddr": 2, - "llconst_true": 1, - "AfterRegionOp": 3, - "if_val": 1, - "unop": 1, - "logical_not": 1, - "code_label": 2, - "use_and_maybe_pop_region_frame": 1, - "region_ite_nondet_cond_fail": 1, - "goto": 2, - "maybe_pick_stack_resume_point": 1, - "ResumeMap0": 2, - "make_fake_resume_map": 5, - "do_redo": 1, - "is_empty": 1, - "Vars": 10, - "Locns": 2, - "set.make_singleton_set": 1, - "reg": 1, - "pair": 7, - "region_commit_stack_frame": 5, - "AddTrailOps": 4, - "AddRegionOps": 5, - "CommitGoalInfo": 4, - "DetCommitInfo": 4, - "SaveMaxfrCode": 3, - "save_maxfr": 3, - "MaybeMaxfrSlot": 6, - "maybe_save_trail_info": 2, - "MaybeTrailSlots": 8, - "SaveTrailCode": 4, - "maybe_save_region_commit_frame": 4, - "MaybeRegionCommitFrameInfo": 8, - "SaveRegionCommitFrameCode": 2, - "SaveRegionCommitFrameCode.": 2, - "RestoreMaxfrCode": 3, - "restore_maxfr": 3, - "release_temp_slot": 1, - "maybe_restore_trail_info": 2, - "CommitTrailCode": 4, - "maybe_restore_region_commit_frame": 2, - "SuccessRegionCode": 3, - "_FailureRegionCode": 1, - "SuccessRegionCode.": 1, - "commit_hijack_info": 2, - "commit_temp_frame": 3, - "commit_quarter_hijack": 3, - "commit_half_hijack": 3, - "commit_full_hijack": 3, - "SemiCommitInfo": 4, - "clone_resume_point": 1, - "NewResumePoint": 4, - "stack.push": 1, - "StackLabelConst": 7, - "use_minimal_model_stack_copy_cut": 3, - "UseMinimalModelStackCopyCut": 4, - "Components": 4, - "foreign_proc_raw_code": 4, - "cannot_branch_away": 4, - "proc_affects_liveness": 2, - "live_lvals_info": 4, - "proc_does_not_affect_liveness": 2, - "MD": 4, - "proc_may_duplicate": 2, - "MarkCode": 3, - "foreign_proc_code": 2, - "proc_will_not_call_mercury": 2, - "HijackCode": 5, - "UseMinimalModel": 3, - "CutCode": 4, - "SuccessUndoCode": 5, - "FailureUndoCode": 5, - "AfterCommit": 2, - "ResumePointCode": 2, - "FailCode": 2, - "RestoreTrailCode": 2, - "FailureRegionCode": 2, - "SuccLabel": 3, - "GotoSuccLabel": 2, - "SuccLabelCode": 1, - "SuccessCode": 2, - "FailureCode": 2, - "SuccLabelCode.": 1, - "_ForwardLiveVarsBeforeGoal": 1, - "expr.": 1, - "char": 10, - "token": 5, - "num": 11, - "eof": 6, - "parse": 1, - "exprn/1": 1, - "xx": 1, - "scan": 16, - "mode": 8, - "rule": 3, - "exprn": 7, - "Num": 18, - "A": 14, - "term": 10, - "B": 8, - "{": 27, - "}": 28, - "*": 20, - "factor": 6, - "/": 1, - "//": 2, - "Chars": 2, - "Toks": 13, - "Toks0": 11, - "list__reverse": 1, - "Cs": 9, - "char__is_whitespace": 1, - "char__is_digit": 2, - "takewhile": 1, - "Digits": 2, - "Rest": 2, - "string__from_char_list": 1, - "NumStr": 2, - "string__det_to_int": 1, - "error": 7, - "hello.": 1, - "main": 15, + "OldHeadVarTypes": 2, + "type_list_subsumes": 2, + "Subn": 3, + "map.is_empty": 1, + "pred_info_set_existq_tvar_binding": 1, + "PredInfo2": 7, + "polymorphism_introduce_exists_casts_pred": 3, + "map.det_update": 4, + "PredTable": 2, + "module_info_set_preds": 1, + "pred_info_get_procedures": 2, + ".PredInfo": 2, + "Procs0": 4, + "map.map_values_only": 1, + ".ProcInfo": 2, + "ProcInfo": 43, + "det": 21, + "introduce_exists_casts_proc": 1, + "Procs": 4, + "pred_info_set_procedures": 2, + "trace": 4, + "compiletime": 4, + "flag": 4, "io": 6, - "di": 54, - "uo": 58, "IO": 4, - "io.write_string": 1, + "write_pred_progress_message": 1, + "polymorphism_process_pred": 4, + "mutable": 3, + "selected_pred": 1, + "bool": 406, + "no": 365, + "ground": 9, + "untrailed": 2, + "level": 1, + "promise_pure": 30, + "pred_id_to_int": 1, + "impure": 2, + "set_selected_pred": 2, + "yes": 144, + "true": 3, + "polymorphism_process_clause_info": 3, + "ClausesInfo": 13, + "Info": 134, + "ExtraArgModes": 20, + "poly_info_get_module_info": 4, + "poly_info_get_const_struct_db": 1, + "ConstStructDb": 2, + "module_info_set_const_struct_db": 1, + "poly_info_get_typevarset": 4, + "pred_info_set_typevarset": 1, + "pred_info_set_clauses_info": 1, + "ProcIds": 5, + "pred_info_procids": 2, + "polymorphism_process_proc_in_table": 3, + "module_info_set_pred_info": 1, + "clauses_info": 6, + "poly_arg_vector": 9, + "mer_mode": 14, + "ModuleInfo0": 8, + "init_poly_info": 1, + ".ClausesInfo": 2, + "_VarSet": 1, + "ExplicitVarTypes": 2, + "_TVarNameMap": 1, + "_VarTypes": 1, + "HeadVars0": 5, + "ClausesRep0": 2, + "ItemNumbers": 2, + "_RttiVarMaps": 1, + "HaveForeignClauses": 2, + "setup_headvars": 3, + "UnconstrainedTVars": 15, + "ExtraTypeInfoHeadVars": 4, + "ExistTypeClassInfoHeadVars": 6, + "get_clause_list": 1, + "Clauses0": 2, + "list.map_foldl": 2, + "polymorphism_process_clause": 3, + "Clauses": 2, + "poly_info_get_varset": 4, + ".Info": 25, + "VarSet": 15, + "poly_info_get_var_types": 6, + "VarTypes": 22, + "poly_info_get_rtti_varmaps": 4, + "RttiVarMaps": 16, + "set_clause_list": 1, + "ClausesRep": 2, + "map.init": 7, + "TVarNameMap": 2, + "This": 2, + "only": 4, + "used": 2, + "while": 1, + "adding": 1, + "clauses.": 1, + "proc_arg_vector": 9, + "clause": 2, + "OldHeadVars": 2, + "NewHeadVars": 2, + "Clause": 2, + "pred_info_is_imported": 2, + "Goal0": 21, + ".Clause": 1, + "clause_body": 2, + "empty_cache_maps": 4, + "poly_info_set_num_reuses": 1, + "polymorphism_process_goal": 20, + "Goal1": 2, + "produce_existq_tvars": 3, + "Goal2": 2, + "pred_info_get_exist_quant_tvars": 1, + "fixup_quantification": 1, + "Goal": 40, + "proc_table": 2, + "ProcId": 31, + "ProcTable": 2, + ".ProcTable": 1, + "ProcInfo0": 2, + "polymorphism_process_proc": 3, + "pred_info_is_pseudo_imported": 1, + "hlds_pred.in_in_unification_proc_id": 1, + "HeadVarList": 4, + "proc_arg_vector_to_list": 2, + "clauses_info_get_rtti_varmaps": 1, + "clauses_info_get_varset": 1, + "proc_info_set_headvars": 1, + "proc_info_set_rtti_varmaps": 1, + "proc_info_set_varset": 1, + "proc_info_set_vartypes": 1, + "copy_clauses_to_proc": 1, + "proc_info_get_argmodes": 2, + "ArgModes1": 2, + "ExtraArgModesList": 2, + "poly_arg_vector_to_list": 1, + "ArgModes": 5, + "proc_info_set_argmodes": 1, + "ExtraHeadTypeInfoVars": 7, + "ExistHeadTypeClassInfoVars": 9, + "pred_info_get_origin": 1, + "Origin": 8, + "ExtraArgModes0": 3, + "poly_arg_vector_init": 1, + "origin_instance_method": 1, + "InstanceMethodConstraints": 4, + "setup_headvars_instance_method": 3, + "origin_special_pred": 1, + "origin_transformed": 1, + "origin_created": 1, + "origin_assertion": 1, + "origin_lambda": 1, + "origin_user": 1, + "pred_info_get_class_context": 4, + "ClassContext": 6, + "InstanceTVars": 7, + "InstanceUnconstrainedTVars": 2, + "InstanceUnconstrainedTypeInfoVars": 2, + "setup_headvars_2": 4, + "instance_method_constraints": 2, + "InstanceTypes": 2, + "InstanceConstraints": 3, + "type_vars_list": 5, + "get_unconstrained_tvars": 1, + "UnconstrainedInstanceTVars": 6, + "ArgTypeVarSet": 5, + "make_head_vars": 3, + "UnconstrainedInstanceTypeInfoVars": 7, + "make_typeclass_info_head_vars": 3, + "do_record_type_info_locns": 3, + "InstanceHeadTypeClassInfoVars": 4, + "proc_arg_vector_set_instance_type_infos": 1, + "proc_arg_vector_set_instance_typeclass_infos": 1, + "RttiVarMaps0": 4, + "rtti_reuse_typeclass_info_var": 3, + "poly_info_set_rtti_varmaps": 3, + "in_mode": 3, + "InMode": 3, + "list.duplicate": 6, + "list.length": 16, + "UnconstrainedInstanceTypeInfoModes": 2, + "InstanceHeadTypeClassInfoModes": 2, + "poly_arg_vector_set_instance_type_infos": 1, + "poly_arg_vector_set_instance_typeclass_infos": 1, + "prog_constraints": 1, + "AllUnconstrainedTVars": 2, + "AllExtraHeadTypeInfoVars": 2, + "constraints": 4, + "UnivConstraints": 3, + "ExistConstraints": 6, + "prog_type.constraint_list_get_tvars": 2, + "UnivConstrainedTVars": 2, + "ExistConstrainedTVars": 2, + "poly_info_get_constraint_map": 4, + "ConstraintMap": 12, + "get_improved_exists_head_constraints": 4, + "ActualExistConstraints": 9, + "pred_info_get_markers": 1, + "PredMarkers": 2, + "check_marker": 1, + "marker_class_method": 1, + "RecordExistQLocns": 3, + "do_not_record_type_info_locns": 1, + "UnivHeadTypeClassInfoVars": 4, + "HeadTypeVars": 2, + "list.delete_elems": 12, + "UnconstrainedTVars0": 2, + "UnconstrainedTVars1": 2, + "UnconstrainedTVars2": 2, + "list.remove_dups": 4, + "UnconstrainedUnivTVars": 7, + "UnconstrainedExistTVars": 6, + "ExistHeadTypeInfoVars": 5, + "UnivHeadTypeInfoVars": 4, + "list.condense": 4, + "proc_arg_vector_set_univ_type_infos": 1, + "HeadVars1": 2, + "proc_arg_vector_set_exist_type_infos": 1, + "HeadVars2": 2, + "proc_arg_vector_set_univ_typeclass_infos": 1, + "HeadVars3": 2, + "proc_arg_vector_set_exist_typeclass_infos": 1, + "In": 6, + "out_mode": 2, + "Out": 6, + "NumUnconstrainedUnivTVars": 2, + "NumUnconstrainedExistTVars": 2, + "NumUnivClassInfoVars": 2, + "NumExistClassInfoVars": 2, + "UnivTypeInfoModes": 2, + "ExistTypeInfoModes": 2, + "UnivTypeClassInfoModes": 2, + "ExistTypeClassInfoModes": 2, + "poly_arg_vector_set_univ_type_infos": 1, + "poly_arg_vector_set_exist_type_infos": 1, + "poly_arg_vector_set_univ_typeclass_infos": 1, + "poly_arg_vector_set_exist_typeclass_infos": 1, + "some": 4, + "ToLocn": 4, + "TheVar": 2, + "TheLocn": 2, + "list.map": 17, + "UnivTypeLocns": 2, + "list.foldl_corresponding": 3, + "rtti_det_insert_type_info_locn": 3, + "ExistTypeLocns": 2, + "UnconstrainedInstanceTypeLocns": 2, + ".RttiVarMaps": 1, + "TypeInfoHeadVars": 2, + "pred_info_get_tvar_kinds": 2, + "KindMap": 2, + "PredClassContext": 5, + "PredExistConstraints": 2, + "exist_constraints": 1, + "ExistQVarsForCall": 2, + "GoalInfo": 44, + "Context": 20, + "goal_info_get_context": 4, + "make_typeclass_info_vars": 3, + "ExistTypeClassVarsMCAs": 2, + "ExtraTypeClassGoals": 5, + "assoc_list.keys": 8, + "ExistTypeClassVars": 3, + "assign_var_list": 8, + "ExtraTypeClassUnifyGoals": 2, + "vartypes_is_empty": 1, + "PredToActualTypeSubst": 4, + "ActualArgTypes": 8, + "ArgTypeSubst": 2, + "apply_subst_to_tvar_list": 1, + "ActualTypes": 2, + "polymorphism_do_make_type_info_vars": 5, + "TypeInfoVarsMCAs": 2, + "ExtraTypeInfoGoals": 4, + "TypeInfoVars": 5, + "ExtraTypeInfoUnifyGoals": 2, + "GoalList": 8, + "conj_list_to_goal": 6, + "unexpected": 21, + "Var1": 5, + "Vars1": 2, + "Var2": 5, + "Vars2": 2, + "Goals": 13, + "assign_var": 3, + "true_goal": 1, + "term.context_init": 2, + "create_pure_atomic_complicated_unification": 1, + "rhs_var": 2, + "umc_explicit": 1, + "constraint_map": 1, + "NumExistConstraints": 4, + "search_hlds_constraint_list": 1, + "unproven": 3, + "goal_id": 1, + "ActualExistConstraints0": 2, + "GoalExpr0": 18, + "GoalInfo0": 41, + "generic_call": 1, + "plain_call": 5, + "ArgVars0": 23, + "polymorphism_process_call": 4, + "ExtraVars": 13, + "ExtraGoals": 13, + "ArgVars": 6, + "CallExpr": 4, + "call_args": 1, + "Call": 4, + "call_foreign_proc": 4, + "polymorphism_process_foreign_proc": 3, + "unify": 21, + "XVar": 11, + "Y": 9, + "Mode": 12, + "Unification": 16, + "UnifyContext": 15, + "polymorphism_process_unify": 4, + "conj": 5, + "ConjType": 4, + "Goals0": 13, + "plain_conj": 4, + "polymorphism_process_plain_conj": 5, + "parallel_conj": 1, + "get_cache_maps_snapshot": 11, + "InitialSnapshot": 36, + "polymorphism_process_par_conj": 5, + "GoalExpr": 19, + "disj": 2, + "polymorphism_process_disj": 6, + "set_cache_maps_snapshot": 15, + "if_then_else": 2, + "Vars": 10, + "Cond0": 2, + "Then0": 2, + "Else0": 2, + "Cond": 2, + "Then": 2, + "Else": 2, + "negation": 2, + "SubGoal0": 14, + "SubGoal": 16, + "switch": 2, + "Var": 13, + "CanFail": 4, + "Cases0": 4, + "polymorphism_process_cases": 5, + "Cases": 4, + "scope": 7, + "Reason0": 16, + "from_ground_term": 2, + "TermVar": 4, + "Kind": 5, + "from_ground_term_initial": 2, + "polymorphism_process_from_ground_term_initial": 3, + "from_ground_term_construct": 1, + "from_ground_term_deconstruct": 1, + "from_ground_term_other": 1, + "promise_solutions": 1, + "promise_purity": 1, + "require_detism": 1, + "require_complete_switch": 1, + "commit": 1, + "barrier": 1, + "loop_control": 1, + "exist_quant": 1, + "trace_goal": 1, + "shorthand": 2, + "ShortHand0": 4, + "atomic_goal": 2, + "GoalType": 2, + "Outer": 2, + "Inner": 2, + "MainGoal0": 2, + "OrElseGoals0": 2, + "OrElseInners": 2, + "MainGoal": 2, + "OrElseGoals": 2, + "ShortHand": 3, + "try_goal": 2, + "MaybeIO": 2, + "ResultVar": 2, + "SubGoalExpr0": 4, + "SubGoalInfo": 2, + "Conjuncts0": 2, + "ConjunctA0": 2, + "ConjunctB0": 2, + "ConjunctA": 2, + "ConjunctB": 2, + "Conjuncts": 2, + "SubGoalExpr": 2, + "bi_implication": 1, + "hlds_goal_expr": 2, + "SubGoalInfo0": 2, + "SubGoals0Prime": 2, + "SubGoals0": 2, + "polymorphism_process_fgti_goals": 5, + "RevMarkedSubGoals": 2, + "fgt_invariants_kept": 2, + "InvariantsStatus": 7, + "Reason": 2, + "fgt_invariants_broken": 2, + "introduce_partial_fgt_scopes": 1, + "deconstruct_top_down": 1, + "fgt_marked_goal": 2, + "fgt_invariants_status": 2, + "RevMarkedGoals": 4, + "OldInfo": 3, + "XVarPrime": 2, + "ModePrime": 2, + "UnificationPrime": 2, + "UnifyContextPrime": 2, + "rhs_functor": 5, + "ConsIdPrime": 2, + "YVarsPrime": 2, + "ConsId": 10, + "YVars": 4, + "polymorphism_process_unify_functor": 4, + "Changed": 10, + "VarSetBefore": 2, + "MaxVarBefore": 2, + "varset.max_var": 2, + "poly_info_get_num_reuses": 2, + "NumReusesBefore": 2, + "VarSetAfter": 2, + "MaxVarAfter": 2, + "NumReusesAfter": 2, + "expect": 15, + "MarkedGoal": 3, + "fgt_kept_goal": 1, + "fgt_broken_goal": 1, + ".RevMarkedGoals": 1, + "unify_mode": 2, + "Unification0": 8, + "_YVar": 1, + "lookup_var_type": 3, + "Type": 18, + "unification_typeinfos": 5, + "_Changed": 3, + "Args": 11, + "Purity": 9, + "Groundness": 6, + "PredOrFunc": 6, + "EvalMethod": 8, + "LambdaVars": 13, + "Modes": 4, + "Det": 4, + "LambdaGoal0": 5, + "LambdaGoal1": 2, + "fixup_lambda_quantification": 1, + "LambdaGoal": 6, + "NonLocalTypeInfos": 3, + "set_of_var.to_sorted_list": 1, + "NonLocalTypeInfosList": 2, + "Y1": 2, + "NonLocals0": 10, + "goal_info_get_nonlocals": 6, + "set_of_var.union": 3, + "NonLocals": 12, + "goal_info_set_nonlocals": 6, + "type_vars": 2, + "TypeVars": 8, + "get_type_info_locn": 1, + "TypeInfoLocns": 6, + "add_unification_typeinfos": 4, + "rtti_lookup_type_info_locn": 1, + "type_info_locn": 1, + "type_info_locn_var": 1, + "TypeInfoVars0": 2, + ".GoalInfo": 1, + "set_of_var.insert_list": 4, + ".Unification": 5, + "complicated_unify": 2, + "construct": 1, + "deconstruct": 2, + "assign": 46, + "simple_test": 1, + "X0": 8, + "ConsId0": 5, + "Mode0": 4, + "TypeOfX": 6, + "Arity": 5, + "closure_cons": 1, + "ShroudedPredProcId": 2, + "proc": 2, + "ProcId0": 3, + "unshroud_pred_proc_id": 1, + "type_is_higher_order_details": 1, + "_PredOrFunc": 1, + "CalleeArgTypes": 2, + "invalid_proc_id": 1, + "goal_info_add_feature": 1, + "feature_lambda_undetermined_mode": 1, + "GoalInfo1": 6, + "VarSet0": 2, + "Functor0": 6, + "poly_info_set_varset_and_types": 1, + "cons": 3, + "ConsTypeCtor": 2, + "remove_new_prefix": 1, + "OrigFunctor": 2, + "IsConstruction": 7, + "type_util.get_existq_cons_defn": 1, + "ConsDefn": 2, + "polymorphism_process_existq_unify_functor": 3, + "UnifyExpr": 2, + "Unify": 2, + "PredArgTypes": 10, + "Functor": 6, + "create_fresh_vars": 5, + "module_info_pred_proc_info": 4, + "QualifiedPName": 5, + "qualified": 1, + "cons_id_dummy_type_ctor": 1, + "RHS": 2, + "CallUnifyContext": 2, + "LambdaGoalExpr": 2, + "not_builtin": 3, + "OutsideVars": 2, + "set_of_var.list_to_set": 3, + "InsideVars": 2, + "set_of_var.intersect": 1, + "LambdaNonLocals": 2, + "GoalId": 8, + "goal_info_get_goal_id": 3, + "goal_info_init": 1, + "LambdaGoalInfo0": 2, + "goal_info_set_context": 1, + "LambdaGoalInfo1": 2, + "LambdaGoalInfo2": 2, + "goal_info_set_purity": 1, + "LambdaGoalInfo3": 2, + "goal_info_set_goal_id": 1, + "LambdaGoalInfo": 4, + "lambda_modes_and_det": 4, + "LambdaModes": 6, + "LambdaDet": 6, + "pred_info_is_pred_or_func": 1, + "ho_ground": 1, + "_LambdaModes0": 1, + "_LambdaDet0": 1, + "goal_to_conj_list": 1, + "LambdaGoalList0": 2, + "list.split_last": 1, + "LambdaGoalButLast0": 2, + "LastGoal0": 2, + "LastGoalExpr0": 2, + "LastGoalInfo0": 2, + "PredId0": 2, + "_DummyProcId": 1, + "Args0": 5, + "MaybeCallUnifyContext0": 2, + "QualifiedPName0": 2, + "LambdaGoalButLast": 2, + "LastGoalInfo": 2, + "MaybeCallUnifyContext": 4, + "LastGoalExpr": 2, + "LastGoal": 2, + "prog_vars": 1, + "determinism": 1, + "NumArgModes": 2, + "NumLambdaVars": 2, + "list.drop": 2, + "LambdaModesPrime": 2, + "proc_info_get_declared_determinism": 1, + "MaybeDet": 3, + "sorry": 1, + "Types": 6, + "varset.new_var": 1, + "add_var_type": 1, + "ctor_defn": 2, + "CtorDefn": 2, + "ActualRetType": 2, + "CtorTypeVarSet": 2, + "CtorExistQVars": 2, + "CtorKindMap": 2, + "CtorExistentialConstraints": 2, + "CtorArgTypes": 2, + "CtorRetType": 2, + "TypeVarSet0": 5, + "tvarset_merge_renaming": 3, + "CtorToParentRenaming": 6, + "apply_variable_renaming_to_tvar_list": 2, + "ParentExistQVars": 6, + "apply_variable_renaming_to_tvar_kind_map": 2, + "ParentKindMap": 7, + "apply_variable_renaming_to_prog_constraint_list": 1, + "ParentExistentialConstraints": 3, + "apply_variable_renaming_to_type_list": 4, + "ParentArgTypes": 6, + "apply_variable_renaming_to_type": 1, + "ParentRetType": 2, + "poly_info_set_typevarset": 3, + "type_list_subsumes_det": 3, + "ParentToActualTypeSubst": 6, + "NumExistentialConstraints": 3, + "lookup_hlds_constraint_list": 4, + "ActualExistentialConstraints": 4, + "ExtraTypeClassVarsMCAs": 2, + "ExtraTypeClassVars": 2, + "assumed": 2, + "make_existq_typeclass_info_vars": 2, + "constraint_list_get_tvars": 3, + "ParentExistConstrainedTVars": 4, + "ParentUnconstrainedExistQVars": 2, + "apply_rec_subst_to_tvar_list": 4, + "ActualExistentialTypes": 2, + "ExtraTypeInfoVarsMCAs": 2, + "ExtraTypeInfoVars": 2, + "ExtraTypeClassVars.": 1, + "bound": 1, + "Attributes": 2, + "ProcExtraArgs": 2, + "MaybeTraceRuntimeCond": 2, + "Impl": 14, + "foreign_arg_var": 1, + "CanOptAwayUnnamed": 11, + "polymorphism_process_foreign_proc_args": 3, + "ExtraArgs": 5, + "pragma_foreign_code_impl": 4, + "foreign_arg": 1, + "PredTypeVarSet": 8, + "UnivCs": 4, + "ExistCs": 4, + "UnivVars0": 2, + "get_constrained_vars": 2, + "UnivConstrainedVars": 2, + "ExistVars0": 2, + "ExistConstrainedVars": 2, + "PredTypeVars0": 2, + "PredTypeVars1": 2, + "PredTypeVars2": 2, + "PredTypeVars": 3, + "foreign_proc_add_typeclass_info": 4, + "ExistTypeClassArgInfos": 2, + "UnivTypeClassArgInfos": 2, + "TypeClassArgInfos": 2, + "list.filter": 1, + "X": 9, + "semidet": 2, + "list.member": 2, + "ExistUnconstrainedVars": 2, + "UnivUnconstrainedVars": 2, + "foreign_proc_add_typeinfo": 4, + "ExistTypeArgInfos": 2, + "UnivTypeArgInfos": 2, + "TypeInfoArgInfos": 2, + "ArgInfos": 2, + "TypeInfoTypes": 2, + "func": 24, + "type_info_type": 1, + "UnivTypes": 2, + "ExistTypes": 2, + "OrigArgTypes": 2, + "make_foreign_args": 1, + "tvarset": 3, + "pair": 7, + "string": 115, + "box_policy": 2, + "Constraint": 2, + "MaybeArgName": 7, + "native_if_possible": 2, + "constraint": 2, + "SymName": 4, + "Name": 4, + "sym_name_to_string_sep": 1, + "TypeVarNames": 2, + "underscore_and_tvar_name": 3, + "string.append_list": 1, + "ConstraintVarName": 3, + "foreign_code_does_not_use_variable": 4, + "TVar": 4, + "varset.search_name": 1, + "TypeVarName": 2, + "C_VarName": 3, + "VarName": 2, + "foreign_code_uses_variable": 1, + "TVarName": 2, + "varset.lookup_name": 2, + "TVarName0": 1, + "TVarName0.": 1, + "cache_maps": 3, + "case": 4, + "Case0": 2, + "Case": 2, + "MainConsId": 2, + "OtherConsIds": 2, + "PredExistQVars": 2, + "PredKindMap": 3, + "varset.is_empty": 1, + "PredToParentTypeRenaming": 6, + "ParentTVars": 4, + "apply_variable_renaming_to_prog_constraints": 1, + "ParentClassContext": 2, + "ParentUnivConstraints": 3, + "ParentExistConstraints": 3, + "ParentUnivConstrainedTVars": 2, + "ParentUnconstrainedTVars0": 2, + "ParentUnconstrainedTVars1": 2, + "ParentUnconstrainedTVars": 3, + "ParentUnconstrainedUnivTVars": 3, + "ParentUnconstrainedExistTVars": 2, + "NumUnivConstraints": 2, + "ActualUnivConstraints": 2, + "ActualExistQVarTypes": 2, + "prog_type.type_list_to_var_list": 1, + "ActualExistQVars0": 2, + "ActualExistQVars": 2, + "ExtraUnivClassVarsMCAs": 2, + "ExtraUnivClassGoals": 2, + "ExtraUnivClassVars": 2, + "ExtraExistClassVars": 2, + "ExtraExistClassGoals": 2, + "ActualUnconstrainedUnivTypes": 2, + "ExtraUnivTypeInfoVarsMCAs": 2, + "ExtraUnivTypeInfoGoals": 2, + "ExtraUnivTypeInfoVars": 2, + "ActualUnconstrainedExistTypes": 2, + "ExtraExistTypeInfoVarsMCAs": 2, + "ExtraExistTypeInfoGoals": 2, + "ExtraExistTypeInfoVars": 2, + "CalleePredInfo": 2, + "CalleeProcInfo": 3, + "CallArgs0": 3, + "BuiltinState": 2, + "TVarSet0": 2, + "ActualArgTypes0": 3, + "PredTVarSet": 2, + "_PredExistQVars": 1, + "proc_info_get_headvars": 2, + "CalleeHeadVars": 2, + "proc_info_get_rtti_varmaps": 1, + "CalleeRttiVarMaps": 2, + "NCallArgs0": 2, + "NPredArgs": 2, + "NExtraArgs": 3, + "OrigPredArgTypes0": 2, + "list.take": 1, + "CalleeExtraHeadVars0": 2, + "OrigPredArgTypes": 2, + "CalleeExtraHeadVars": 2, + "TVarSet": 2, + "PredToParentRenaming": 3, + "OrigParentArgTypes": 2, + "ParentToActualTSubst": 2, + "GetTypeInfoTypes": 2, + "ProgVar": 2, + "TypeInfoType": 2, + "rtti_varmaps_var_info": 1, + "VarInfo": 4, + "type_info_var": 1, + "typeclass_info_var": 1, + "non_rtti_var": 1, + "PredTypeInfoTypes": 2, + "ParentTypeInfoTypes": 2, + "apply_rec_subst_to_type_list": 1, + "ActualTypeInfoTypes": 2, + "Ctxt": 2, + "ExtraArgsConstArgs": 2, + "CallArgs": 2, + "NonLocals1": 2, + "CallGoalExpr": 2, + "CallGoal": 2, "char.": 1, "getopt_io.": 1, "short_option": 36, @@ -40975,6 +41309,7 @@ "option_table": 5, "maybe_option_table": 3, "inconsequential_options": 1, + "set": 16, "options_help": 1, "option_table_add_mercury_library_directory": 1, "option_table.": 2, @@ -41048,7 +41383,7 @@ "debug_code_gen_pred_id": 3, "debug_opt": 3, "debug_term": 4, - "constraint": 2, + "term": 10, "termination": 3, "analysis": 1, "debug_opt_pred_id": 3, @@ -41106,6 +41441,7 @@ "generate_item_version_numbers": 2, "generate_mmc_make_module_dependencies": 4, "assume_gmake": 3, + "trace_level": 4, "trace_optimized": 4, "trace_prof": 3, "trace_table_io": 3, @@ -41124,6 +41460,7 @@ "force_disable_ssdebug": 3, "generate_bytecode": 3, "line_numbers": 4, + "auto_comments": 4, "frameopt_comments": 3, "max_error_line_width": 3, "show_dependency_graph": 3, @@ -41203,7 +41540,9 @@ "record_term_sizes_as_cells": 2, "experimental_complexity": 2, "gc": 2, + "parallel": 3, "threadscope": 2, + "use_trail": 3, "trail_segments": 2, "use_minimal_model_stack_copy": 2, "use_minimal_model_own_stacks": 2, @@ -41227,12 +41566,16 @@ "bits_per_word": 2, "bytes_per_word": 2, "conf_low_tag_bits": 2, + "unboxed_float": 3, "unboxed_enums": 2, "unboxed_no_tag_types": 2, "sync_term_size": 2, "words": 1, + "gcc_non_local_gotos": 3, "gcc_global_registers": 2, + "asm_labels": 3, "pic_reg": 2, + "use_float_registers": 5, "highlevel_code": 3, "highlevel_data": 2, "gcc_nested_functions": 2, @@ -41250,6 +41593,7 @@ "agc_stack_layout": 2, "procid_stack_layout": 2, "trace_stack_layout": 2, + "body_typeinfo_liveness": 4, "can_compare_constants_as_ints": 2, "pretest_equality_cast_pointers": 2, "can_compare_compound_values": 2, @@ -41266,6 +41610,8 @@ "disable_minimal_model_stack_copy_pneg": 2, "disable_minimal_model_stack_copy_cut": 2, "use_minimal_model_stack_copy_pneg": 2, + "use_minimal_model_stack_copy_cut": 3, + "disable_trail_ops": 3, "size_region_ite_fixed": 2, "size_region_disj_fixed": 2, "size_region_semi_disj_fixed": 1, @@ -41302,11 +41648,11 @@ "fact_table_hash_percent_full": 2, "gcc_local_labels": 2, "prefer_switch": 2, + "opt_no_return_calls": 3, "opt_level": 3, "opt_level_number": 2, "opt_space": 2, "Default": 3, - "to": 16, "optimize": 3, "time.": 1, "intermodule_optimization": 2, @@ -41347,6 +41693,7 @@ "user_guided_type_specialization": 2, "introduce_accumulators": 2, "optimize_constructor_last_call_accumulator": 2, + "optimize_constructor_last_call_null": 3, "optimize_constructor_last_call": 2, "optimize_duplicate_calls": 2, "constant_propagation": 2, @@ -41377,6 +41724,8 @@ "deforestation_vars_threshold": 2, "deforestation_size_threshold": 2, "analyse_trail_usage": 2, + "optimize_trail_usage": 3, + "optimize_region_ops": 3, "analyse_mm_tabling": 2, "untuple": 2, "tuple": 2, @@ -41386,6 +41735,7 @@ "inline_par_builtins": 2, "always_specialize_in_dep_par_conjs": 2, "allow_some_paths_only_waits": 2, + "region_analysis": 3, "structure_sharing_analysis": 2, "structure_sharing_widening": 2, "structure_reuse_analysis": 2, @@ -41422,9 +41772,13 @@ "binary_switch_size": 2, "switch_single_rec_base_first": 2, "switch_multi_rec_base_first": 2, + "static_ground_cells": 3, + "static_ground_floats": 3, + "static_code_addresses": 3, "use_atomic_cells": 2, "middle_rec": 2, "simple_neg": 2, + "allow_hijacks": 3, "optimize_tailcalls": 2, "optimize_initializations": 2, "eliminate_local_vars": 2, @@ -41432,7 +41786,6 @@ "common_data": 2, "common_layout_data": 2, "Also": 1, - "used": 2, "for": 8, "MLDS": 2, "optimizations.": 1, @@ -41455,6 +41808,7 @@ "layout_compression_limit": 2, "use_macro_for_redo_fail": 2, "emit_c_loops": 2, + "procs_per_c_function": 3, "everything_in_one_c_function": 2, "local_thread_engine_base": 2, "erlang_switch_on_strings_as_atoms": 2, @@ -41661,7 +42015,6 @@ "option_defaults_2": 18, "_Category": 1, "OptionsList": 2, - "list.member": 2, "multi.": 1, "bool_special": 7, "XXX": 3, @@ -41676,900 +42029,844 @@ "file_special": 1, "miscellaneous_option": 1, "par_loop_control_preserve_tail_recursion": 1, - "check_hlds.polymorphism.": 1, - "hlds.": 1, - "mdbcomp.": 1, - "parse_tree.": 1, - "polymorphism_process_module": 2, - "polymorphism_process_generated_pred": 2, - "unification_typeinfos_rtti_varmaps": 2, - "rtti_varmaps": 9, - "unification": 8, - "polymorphism_process_new_call": 2, - "builtin_state": 1, - "call_unify_context": 2, - "sym_name": 3, - "hlds_goal": 45, - "poly_info": 45, - "polymorphism_make_type_info_vars": 1, - "polymorphism_make_type_info_var": 1, - "int_or_var": 2, - "iov_int": 1, - "iov_var": 1, - "gen_extract_type_info": 1, - "tvar": 10, - "kind": 1, - "vartypes": 12, - "poly_info.": 1, - "create_poly_info": 1, - "poly_info_extract": 1, - "build_typeclass_info_type": 3, - "prog_constraint": 4, - "type_is_typeclass_info": 1, - "type_is_type_info_or_ctor_type": 1, - "build_type_info_type": 1, - "get_special_proc": 1, - "special_pred_id": 2, - "get_special_proc_det": 1, - "convert_pred_to_lambda_goal": 3, - "purity": 1, - "lambda_eval_method": 1, - "unify_context": 3, - "context": 1, - "unify_rhs": 4, - "fix_undetermined_mode_lambda_goal": 2, - "rhs_lambda_goal": 7, - "init_type_info_var": 1, - "init_const_type_ctor_info_var": 1, - "type_ctor": 1, - "cons_id": 2, - "type_info_kind": 2, - "type_info": 8, - "type_ctor_info.": 1, - "new_type_info_var_raw": 1, - "check_hlds.clause_to_proc.": 1, - "check_hlds.mode_util.": 1, - "hlds.from_ground_term_util.": 1, - "hlds.const_struct.": 1, - "hlds.goal_util.": 1, - "hlds.hlds_args.": 1, - "hlds.hlds_clauses.": 1, - "hlds.hlds_code_util.": 1, - "hlds.passes_aux.": 1, - "hlds.pred_table.": 1, - "hlds.quantification.": 1, - "hlds.special_pred.": 1, - "libs.": 1, - "mdbcomp.program_representation.": 1, - "parse_tree.prog_mode.": 1, - "parse_tree.prog_type_subst.": 1, - "solutions.": 1, - "module_info_get_preds": 3, - ".ModuleInfo": 8, - "Preds0": 2, - "PredIds0": 2, - "list.foldl": 6, - "maybe_polymorphism_process_pred": 3, - "Preds1": 2, - "PredIds1": 2, - "fixup_pred_polymorphism": 4, - "expand_class_method_bodies": 1, - "PredModule": 8, - "pred_info_module": 4, - "PredName": 8, - "pred_info_name": 4, - "PredArity": 6, - "pred_info_orig_arity": 3, - "no_type_info_builtin": 3, - "copy_module_clauses_to_procs": 1, - "polymorphism_process_pred_msg": 3, - "PredTable0": 3, - "map.lookup": 2, - "PredInfo0": 16, - "pred_info_get_clauses_info": 2, - "ClausesInfo0": 5, - "clauses_info_get_vartypes": 2, - "VarTypes0": 12, - "clauses_info_get_headvars": 2, - "pred_info_get_arg_types": 7, - "TypeVarSet": 15, - "ExistQVars": 13, - "ArgTypes0": 3, - "proc_arg_vector_partition_poly_args": 1, - "ExtraHeadVarList": 2, - "OldHeadVarList": 2, - "lookup_var_types": 6, - "ExtraArgTypes": 2, - "ArgTypes": 6, - "pred_info_set_arg_types": 1, - "PredInfo1": 5, - "OldHeadVarTypes": 2, - "type_list_subsumes": 2, - "Subn": 3, - "map.is_empty": 1, - "pred_info_set_existq_tvar_binding": 1, - "PredInfo2": 7, - "polymorphism_introduce_exists_casts_pred": 3, - "PredTable": 2, - "module_info_set_preds": 1, - "pred_info_get_procedures": 2, - ".PredInfo": 2, - "Procs0": 4, - "map.map_values_only": 1, - ".ProcInfo": 2, - "det": 21, - "introduce_exists_casts_proc": 1, - "Procs": 4, - "pred_info_set_procedures": 2, - "trace": 4, - "compiletime": 4, - "flag": 4, - "write_pred_progress_message": 1, - "polymorphism_process_pred": 4, - "mutable": 3, - "selected_pred": 1, - "ground": 9, - "untrailed": 2, - "level": 1, - "promise_pure": 30, - "pred_id_to_int": 1, - "impure": 2, - "set_selected_pred": 2, - "polymorphism_process_clause_info": 3, - "ClausesInfo": 13, - "Info": 134, - "ExtraArgModes": 20, - "poly_info_get_module_info": 4, - "poly_info_get_const_struct_db": 1, - "ConstStructDb": 2, - "module_info_set_const_struct_db": 1, - "poly_info_get_typevarset": 4, - "pred_info_set_typevarset": 1, - "pred_info_set_clauses_info": 1, - "ProcIds": 5, - "pred_info_procids": 2, - "polymorphism_process_proc_in_table": 3, - "module_info_set_pred_info": 1, - "clauses_info": 6, - "poly_arg_vector": 9, - "mer_mode": 14, - "ModuleInfo0": 8, - "init_poly_info": 1, - ".ClausesInfo": 2, - "_VarSet": 1, - "ExplicitVarTypes": 2, - "_TVarNameMap": 1, - "_VarTypes": 1, - "HeadVars0": 5, - "ClausesRep0": 2, - "ItemNumbers": 2, - "_RttiVarMaps": 1, - "HaveForeignClauses": 2, - "setup_headvars": 3, - "UnconstrainedTVars": 15, - "ExtraTypeInfoHeadVars": 4, - "ExistTypeClassInfoHeadVars": 6, - "get_clause_list": 1, - "Clauses0": 2, - "list.map_foldl": 2, - "polymorphism_process_clause": 3, - "Clauses": 2, - "poly_info_get_varset": 4, - ".Info": 25, - "poly_info_get_var_types": 6, - "poly_info_get_rtti_varmaps": 4, - "RttiVarMaps": 16, - "set_clause_list": 1, - "ClausesRep": 2, - "TVarNameMap": 2, - "This": 2, - "only": 4, - "while": 1, - "adding": 1, - "the": 27, - "clauses.": 1, - "proc_arg_vector": 9, - "clause": 2, - "OldHeadVars": 2, - "NewHeadVars": 2, - "Clause": 2, - "pred_info_is_imported": 2, - "Goal0": 21, - ".Clause": 1, - "clause_body": 2, - "empty_cache_maps": 4, - "poly_info_set_num_reuses": 1, - "polymorphism_process_goal": 20, - "Goal1": 2, - "produce_existq_tvars": 3, - "Goal2": 2, - "pred_info_get_exist_quant_tvars": 1, - "fixup_quantification": 1, - "Goal": 40, - "proc_table": 2, - "ProcTable": 2, - ".ProcTable": 1, - "ProcInfo0": 2, - "polymorphism_process_proc": 3, - "pred_info_is_pseudo_imported": 1, - "hlds_pred.in_in_unification_proc_id": 1, - "HeadVarList": 4, - "proc_arg_vector_to_list": 2, - "clauses_info_get_rtti_varmaps": 1, - "clauses_info_get_varset": 1, - "proc_info_set_headvars": 1, - "proc_info_set_rtti_varmaps": 1, - "proc_info_set_varset": 1, - "proc_info_set_vartypes": 1, - "copy_clauses_to_proc": 1, - "proc_info_get_argmodes": 2, - "ArgModes1": 2, - "ExtraArgModesList": 2, - "poly_arg_vector_to_list": 1, - "ArgModes": 5, - "proc_info_set_argmodes": 1, - "ExtraHeadTypeInfoVars": 7, - "ExistHeadTypeClassInfoVars": 9, - "pred_info_get_origin": 1, - "Origin": 8, - "ExtraArgModes0": 3, - "poly_arg_vector_init": 1, - "origin_instance_method": 1, - "InstanceMethodConstraints": 4, - "setup_headvars_instance_method": 3, - "origin_special_pred": 1, - "origin_transformed": 1, - "origin_created": 1, - "origin_assertion": 1, - "origin_lambda": 1, - "origin_user": 1, - "pred_info_get_class_context": 4, - "ClassContext": 6, - "InstanceTVars": 7, - "InstanceUnconstrainedTVars": 2, - "InstanceUnconstrainedTypeInfoVars": 2, - "setup_headvars_2": 4, - "instance_method_constraints": 2, - "InstanceTypes": 2, - "InstanceConstraints": 3, - "type_vars_list": 5, - "get_unconstrained_tvars": 1, - "UnconstrainedInstanceTVars": 6, - "ArgTypeVarSet": 5, - "make_head_vars": 3, - "UnconstrainedInstanceTypeInfoVars": 7, - "make_typeclass_info_head_vars": 3, - "do_record_type_info_locns": 3, - "InstanceHeadTypeClassInfoVars": 4, - "proc_arg_vector_set_instance_type_infos": 1, - "proc_arg_vector_set_instance_typeclass_infos": 1, - "RttiVarMaps0": 4, - "rtti_reuse_typeclass_info_var": 3, - "poly_info_set_rtti_varmaps": 3, - "in_mode": 3, - "InMode": 3, - "list.duplicate": 6, - "list.length": 16, - "UnconstrainedInstanceTypeInfoModes": 2, - "InstanceHeadTypeClassInfoModes": 2, - "poly_arg_vector_set_instance_type_infos": 1, - "poly_arg_vector_set_instance_typeclass_infos": 1, - "prog_constraints": 1, - "AllUnconstrainedTVars": 2, - "AllExtraHeadTypeInfoVars": 2, - "constraints": 4, - "UnivConstraints": 3, - "ExistConstraints": 6, - "prog_type.constraint_list_get_tvars": 2, - "UnivConstrainedTVars": 2, - "ExistConstrainedTVars": 2, - "poly_info_get_constraint_map": 4, - "ConstraintMap": 12, - "get_improved_exists_head_constraints": 4, - "ActualExistConstraints": 9, - "pred_info_get_markers": 1, - "PredMarkers": 2, - "check_marker": 1, - "marker_class_method": 1, - "RecordExistQLocns": 3, - "do_not_record_type_info_locns": 1, - "UnivHeadTypeClassInfoVars": 4, - "HeadTypeVars": 2, - "list.delete_elems": 12, - "UnconstrainedTVars0": 2, - "UnconstrainedTVars1": 2, - "UnconstrainedTVars2": 2, - "list.remove_dups": 4, - "UnconstrainedUnivTVars": 7, - "UnconstrainedExistTVars": 6, - "ExistHeadTypeInfoVars": 5, - "UnivHeadTypeInfoVars": 4, - "list.condense": 4, - "proc_arg_vector_set_univ_type_infos": 1, - "HeadVars1": 2, - "proc_arg_vector_set_exist_type_infos": 1, - "HeadVars2": 2, - "proc_arg_vector_set_univ_typeclass_infos": 1, - "HeadVars3": 2, - "proc_arg_vector_set_exist_typeclass_infos": 1, - "In": 6, - "out_mode": 2, - "Out": 6, - "NumUnconstrainedUnivTVars": 2, - "NumUnconstrainedExistTVars": 2, - "NumUnivClassInfoVars": 2, - "NumExistClassInfoVars": 2, - "UnivTypeInfoModes": 2, - "ExistTypeInfoModes": 2, - "UnivTypeClassInfoModes": 2, - "ExistTypeClassInfoModes": 2, - "poly_arg_vector_set_univ_type_infos": 1, - "poly_arg_vector_set_exist_type_infos": 1, - "poly_arg_vector_set_univ_typeclass_infos": 1, - "poly_arg_vector_set_exist_typeclass_infos": 1, - "some": 4, - "ToLocn": 4, - "TheVar": 2, - "TheLocn": 2, - "list.map": 17, - "UnivTypeLocns": 2, - "list.foldl_corresponding": 3, - "rtti_det_insert_type_info_locn": 3, - "ExistTypeLocns": 2, - "UnconstrainedInstanceTypeLocns": 2, - ".RttiVarMaps": 1, - "TypeInfoHeadVars": 2, - "pred_info_get_tvar_kinds": 2, - "KindMap": 2, - "PredClassContext": 5, - "PredExistConstraints": 2, - "exist_constraints": 1, - "ExistQVarsForCall": 2, - "goal_info_get_context": 4, - "make_typeclass_info_vars": 3, - "ExistTypeClassVarsMCAs": 2, - "ExtraTypeClassGoals": 5, - "assoc_list.keys": 8, - "ExistTypeClassVars": 3, - "assign_var_list": 8, - "ExtraTypeClassUnifyGoals": 2, - "vartypes_is_empty": 1, - "PredToActualTypeSubst": 4, - "ActualArgTypes": 8, - "ArgTypeSubst": 2, - "apply_subst_to_tvar_list": 1, - "ActualTypes": 2, - "polymorphism_do_make_type_info_vars": 5, - "TypeInfoVarsMCAs": 2, - "ExtraTypeInfoGoals": 4, - "TypeInfoVars": 5, - "ExtraTypeInfoUnifyGoals": 2, - "GoalList": 8, - "conj_list_to_goal": 6, - "Var1": 5, - "Vars1": 2, - "Var2": 5, - "Vars2": 2, - "Goals": 13, - "assign_var": 3, - "true_goal": 1, - "term.context_init": 2, - "create_pure_atomic_complicated_unification": 1, - "rhs_var": 2, - "umc_explicit": 1, - "constraint_map": 1, - "NumExistConstraints": 4, - "search_hlds_constraint_list": 1, - "unproven": 3, - "goal_id": 1, - "ActualExistConstraints0": 2, - "GoalExpr0": 18, - "GoalInfo0": 41, - "generic_call": 1, - "plain_call": 5, - "ArgVars0": 23, - "polymorphism_process_call": 4, - "ExtraVars": 13, - "ExtraGoals": 13, - "ArgVars": 6, - "CallExpr": 4, - "call_args": 1, - "Call": 4, - "call_foreign_proc": 4, - "polymorphism_process_foreign_proc": 3, - "XVar": 11, - "Y": 9, - "Mode": 12, - "Unification": 16, - "UnifyContext": 15, - "polymorphism_process_unify": 4, - "conj": 5, - "ConjType": 4, - "Goals0": 13, - "plain_conj": 4, - "polymorphism_process_plain_conj": 5, - "parallel_conj": 1, - "get_cache_maps_snapshot": 11, - "InitialSnapshot": 36, - "polymorphism_process_par_conj": 5, - "GoalExpr": 19, - "disj": 2, - "polymorphism_process_disj": 6, - "set_cache_maps_snapshot": 15, - "if_then_else": 2, - "Cond0": 2, - "Then0": 2, - "Else0": 2, - "Cond": 2, - "Then": 2, - "Else": 2, - "negation": 2, - "SubGoal0": 14, - "SubGoal": 16, - "switch": 2, - "CanFail": 4, - "Cases0": 4, - "polymorphism_process_cases": 5, - "Cases": 4, - "scope": 7, - "Reason0": 16, - "from_ground_term": 2, - "TermVar": 4, - "Kind": 5, - "from_ground_term_initial": 2, - "polymorphism_process_from_ground_term_initial": 3, - "from_ground_term_construct": 1, - "from_ground_term_deconstruct": 1, - "from_ground_term_other": 1, - "promise_solutions": 1, - "promise_purity": 1, - "require_detism": 1, - "require_complete_switch": 1, - "commit": 1, - "barrier": 1, - "loop_control": 1, - "exist_quant": 1, - "trace_goal": 1, - "shorthand": 2, - "ShortHand0": 4, - "atomic_goal": 2, - "GoalType": 2, - "Outer": 2, - "Inner": 2, - "MainGoal0": 2, - "OrElseGoals0": 2, - "OrElseInners": 2, - "MainGoal": 2, - "OrElseGoals": 2, - "ShortHand": 3, - "try_goal": 2, - "MaybeIO": 2, - "ResultVar": 2, - "SubGoalExpr0": 4, - "SubGoalInfo": 2, - "Conjuncts0": 2, - "ConjunctA0": 2, - "ConjunctB0": 2, - "ConjunctA": 2, - "ConjunctB": 2, - "Conjuncts": 2, - "SubGoalExpr": 2, - "bi_implication": 1, - "hlds_goal_expr": 2, - "SubGoalInfo0": 2, - "SubGoals0Prime": 2, - "SubGoals0": 2, - "polymorphism_process_fgti_goals": 5, - "RevMarkedSubGoals": 2, - "fgt_invariants_kept": 2, - "InvariantsStatus": 7, - "Reason": 2, - "fgt_invariants_broken": 2, - "introduce_partial_fgt_scopes": 1, - "deconstruct_top_down": 1, - "fgt_marked_goal": 2, - "fgt_invariants_status": 2, - "RevMarkedGoals": 4, - "OldInfo": 3, - "XVarPrime": 2, - "ModePrime": 2, - "UnificationPrime": 2, - "UnifyContextPrime": 2, - "rhs_functor": 5, - "ConsIdPrime": 2, - "YVarsPrime": 2, - "ConsId": 10, - "YVars": 4, - "polymorphism_process_unify_functor": 4, - "Changed": 10, - "VarSetBefore": 2, - "MaxVarBefore": 2, - "varset.max_var": 2, - "poly_info_get_num_reuses": 2, - "NumReusesBefore": 2, - "VarSetAfter": 2, - "MaxVarAfter": 2, - "NumReusesAfter": 2, - "MarkedGoal": 3, - "fgt_kept_goal": 1, - "fgt_broken_goal": 1, - ".RevMarkedGoals": 1, - "unify_mode": 2, - "Unification0": 8, - "_YVar": 1, - "unification_typeinfos": 5, - "_Changed": 3, - "Args": 11, - "Purity": 9, - "Groundness": 6, - "PredOrFunc": 6, - "EvalMethod": 8, - "LambdaVars": 13, - "Modes": 4, - "Det": 4, - "LambdaGoal0": 5, - "LambdaGoal1": 2, - "fixup_lambda_quantification": 1, - "LambdaGoal": 6, - "NonLocalTypeInfos": 3, - "set_of_var.to_sorted_list": 1, - "NonLocalTypeInfosList": 2, - "Y1": 2, - "NonLocals0": 10, - "goal_info_get_nonlocals": 6, - "NonLocals": 12, - "goal_info_set_nonlocals": 6, - "type_vars": 2, - "TypeVars": 8, - "get_type_info_locn": 1, - "TypeInfoLocns": 6, - "add_unification_typeinfos": 4, - "rtti_lookup_type_info_locn": 1, - "type_info_locn": 1, - "type_info_locn_var": 1, - "TypeInfoVars0": 2, - ".GoalInfo": 1, - "set_of_var.insert_list": 4, - ".Unification": 5, - "complicated_unify": 2, - "construct": 1, - "deconstruct": 2, - "simple_test": 1, - "X0": 8, - "ConsId0": 5, - "Mode0": 4, - "TypeOfX": 6, - "Arity": 5, - "closure_cons": 1, - "ShroudedPredProcId": 2, - "ProcId0": 3, - "unshroud_pred_proc_id": 1, - "type_is_higher_order_details": 1, - "_PredOrFunc": 1, - "CalleeArgTypes": 2, - "invalid_proc_id": 1, - "goal_info_add_feature": 1, - "feature_lambda_undetermined_mode": 1, - "GoalInfo1": 6, - "VarSet0": 2, - "Functor0": 6, - "poly_info_set_varset_and_types": 1, - "cons": 3, - "ConsTypeCtor": 2, - "remove_new_prefix": 1, - "OrigFunctor": 2, - "IsConstruction": 7, - "type_util.get_existq_cons_defn": 1, - "ConsDefn": 2, - "polymorphism_process_existq_unify_functor": 3, - "UnifyExpr": 2, - "Unify": 2, - "PredArgTypes": 10, - "Functor": 6, - "create_fresh_vars": 5, - "QualifiedPName": 5, - "qualified": 1, - "cons_id_dummy_type_ctor": 1, - "RHS": 2, - "CallUnifyContext": 2, - "LambdaGoalExpr": 2, - "not_builtin": 3, - "OutsideVars": 2, - "InsideVars": 2, - "set_of_var.intersect": 1, - "LambdaNonLocals": 2, - "GoalId": 8, - "goal_info_get_goal_id": 3, - "goal_info_init": 1, - "LambdaGoalInfo0": 2, - "goal_info_set_context": 1, - "LambdaGoalInfo1": 2, - "LambdaGoalInfo2": 2, - "goal_info_set_purity": 1, - "LambdaGoalInfo3": 2, - "goal_info_set_goal_id": 1, - "LambdaGoalInfo": 4, - "lambda_modes_and_det": 4, - "LambdaModes": 6, - "LambdaDet": 6, - "pred_info_is_pred_or_func": 1, - "ho_ground": 1, - "_LambdaModes0": 1, - "_LambdaDet0": 1, - "goal_to_conj_list": 1, - "LambdaGoalList0": 2, - "list.split_last": 1, - "LambdaGoalButLast0": 2, - "LastGoal0": 2, - "LastGoalExpr0": 2, - "LastGoalInfo0": 2, - "PredId0": 2, - "_DummyProcId": 1, - "Args0": 5, - "MaybeCallUnifyContext0": 2, - "QualifiedPName0": 2, - "LambdaGoalButLast": 2, - "LastGoalInfo": 2, - "MaybeCallUnifyContext": 4, - "LastGoalExpr": 2, - "LastGoal": 2, - "prog_vars": 1, - "determinism": 1, - "NumArgModes": 2, - "NumLambdaVars": 2, - "list.drop": 2, - "LambdaModesPrime": 2, - "proc_info_get_declared_determinism": 1, - "MaybeDet": 3, - "sorry": 1, - "varset.new_var": 1, - "add_var_type": 1, - "ctor_defn": 2, - "CtorDefn": 2, - "ActualRetType": 2, - "CtorTypeVarSet": 2, - "CtorExistQVars": 2, - "CtorKindMap": 2, - "CtorExistentialConstraints": 2, - "CtorArgTypes": 2, - "CtorRetType": 2, - "TypeVarSet0": 5, - "tvarset_merge_renaming": 3, - "CtorToParentRenaming": 6, - "apply_variable_renaming_to_tvar_list": 2, - "ParentExistQVars": 6, - "apply_variable_renaming_to_tvar_kind_map": 2, - "ParentKindMap": 7, - "apply_variable_renaming_to_prog_constraint_list": 1, - "ParentExistentialConstraints": 3, - "apply_variable_renaming_to_type_list": 4, - "ParentArgTypes": 6, - "apply_variable_renaming_to_type": 1, - "ParentRetType": 2, - "poly_info_set_typevarset": 3, - "type_list_subsumes_det": 3, - "ParentToActualTypeSubst": 6, - "NumExistentialConstraints": 3, - "lookup_hlds_constraint_list": 4, - "ActualExistentialConstraints": 4, - "ExtraTypeClassVarsMCAs": 2, - "ExtraTypeClassVars": 2, - "assumed": 2, - "make_existq_typeclass_info_vars": 2, - "constraint_list_get_tvars": 3, - "ParentExistConstrainedTVars": 4, - "ParentUnconstrainedExistQVars": 2, - "apply_rec_subst_to_tvar_list": 4, - "ActualExistentialTypes": 2, - "ExtraTypeInfoVarsMCAs": 2, - "ExtraTypeInfoVars": 2, - "ExtraTypeClassVars.": 1, - "bound": 1, - "Attributes": 2, - "ProcExtraArgs": 2, - "MaybeTraceRuntimeCond": 2, - "Impl": 14, - "foreign_arg_var": 1, - "CanOptAwayUnnamed": 11, - "polymorphism_process_foreign_proc_args": 3, - "ExtraArgs": 5, - "pragma_foreign_code_impl": 4, - "foreign_arg": 1, - "PredTypeVarSet": 8, - "UnivCs": 4, - "ExistCs": 4, - "UnivVars0": 2, - "get_constrained_vars": 2, - "UnivConstrainedVars": 2, - "ExistVars0": 2, - "ExistConstrainedVars": 2, - "PredTypeVars0": 2, - "PredTypeVars1": 2, - "PredTypeVars2": 2, - "PredTypeVars": 3, - "foreign_proc_add_typeclass_info": 4, - "ExistTypeClassArgInfos": 2, - "UnivTypeClassArgInfos": 2, - "TypeClassArgInfos": 2, - "list.filter": 1, - "X": 9, - "semidet": 2, - "ExistUnconstrainedVars": 2, - "UnivUnconstrainedVars": 2, - "foreign_proc_add_typeinfo": 4, - "ExistTypeArgInfos": 2, - "UnivTypeArgInfos": 2, - "TypeInfoArgInfos": 2, - "ArgInfos": 2, - "TypeInfoTypes": 2, - "type_info_type": 1, - "UnivTypes": 2, - "ExistTypes": 2, - "OrigArgTypes": 2, - "make_foreign_args": 1, - "tvarset": 3, - "box_policy": 2, - "Constraint": 2, - "MaybeArgName": 7, - "native_if_possible": 2, - "SymName": 4, - "sym_name_to_string_sep": 1, - "TypeVarNames": 2, - "underscore_and_tvar_name": 3, - "string.append_list": 1, - "ConstraintVarName": 3, - "foreign_code_does_not_use_variable": 4, - "TVar": 4, - "varset.search_name": 1, - "TypeVarName": 2, - "C_VarName": 3, - "VarName": 2, - "foreign_code_uses_variable": 1, - "TVarName": 2, - "TVarName0": 1, - "TVarName0.": 1, - "cache_maps": 3, - "case": 4, - "Case0": 2, - "Case": 2, - "MainConsId": 2, - "OtherConsIds": 2, - "PredExistQVars": 2, - "PredKindMap": 3, - "varset.is_empty": 1, - "PredToParentTypeRenaming": 6, - "ParentTVars": 4, - "apply_variable_renaming_to_prog_constraints": 1, - "ParentClassContext": 2, - "ParentUnivConstraints": 3, - "ParentExistConstraints": 3, - "ParentUnivConstrainedTVars": 2, - "ParentUnconstrainedTVars0": 2, - "ParentUnconstrainedTVars1": 2, - "ParentUnconstrainedTVars": 3, - "ParentUnconstrainedUnivTVars": 3, - "ParentUnconstrainedExistTVars": 2, - "NumUnivConstraints": 2, - "ActualUnivConstraints": 2, - "ActualExistQVarTypes": 2, - "prog_type.type_list_to_var_list": 1, - "ActualExistQVars0": 2, - "ActualExistQVars": 2, - "ExtraUnivClassVarsMCAs": 2, - "ExtraUnivClassGoals": 2, - "ExtraUnivClassVars": 2, - "ExtraExistClassVars": 2, - "ExtraExistClassGoals": 2, - "ActualUnconstrainedUnivTypes": 2, - "ExtraUnivTypeInfoVarsMCAs": 2, - "ExtraUnivTypeInfoGoals": 2, - "ExtraUnivTypeInfoVars": 2, - "ActualUnconstrainedExistTypes": 2, - "ExtraExistTypeInfoVarsMCAs": 2, - "ExtraExistTypeInfoGoals": 2, - "ExtraExistTypeInfoVars": 2, - "CalleePredInfo": 2, - "CalleeProcInfo": 3, - "CallArgs0": 3, - "BuiltinState": 2, - "TVarSet0": 2, - "ActualArgTypes0": 3, - "PredTVarSet": 2, - "_PredExistQVars": 1, - "CalleeHeadVars": 2, - "proc_info_get_rtti_varmaps": 1, - "CalleeRttiVarMaps": 2, - "NCallArgs0": 2, - "NPredArgs": 2, - "NExtraArgs": 3, - "OrigPredArgTypes0": 2, - "list.take": 1, - "CalleeExtraHeadVars0": 2, - "OrigPredArgTypes": 2, - "CalleeExtraHeadVars": 2, - "TVarSet": 2, - "PredToParentRenaming": 3, - "OrigParentArgTypes": 2, - "ParentToActualTSubst": 2, - "GetTypeInfoTypes": 2, - "ProgVar": 2, - "TypeInfoType": 2, - "rtti_varmaps_var_info": 1, - "VarInfo": 4, - "type_info_var": 1, - "typeclass_info_var": 1, - "non_rtti_var": 1, - "PredTypeInfoTypes": 2, - "ParentTypeInfoTypes": 2, - "apply_rec_subst_to_type_list": 1, - "ActualTypeInfoTypes": 2, - "Ctxt": 2, - "ExtraArgsConstArgs": 2, - "CallArgs": 2, - "NonLocals1": 2, - "CallGoalExpr": 2, - "CallGoal": 2, - "rot13_concise.": 1, - "state": 3, - "alphabet": 3, - "cycle": 4, - "rot_n": 2, - "Char": 12, - "RotChar": 8, - "char_to_string": 1, - "CharString": 2, - "if": 15, - "sub_string_search": 1, - "Index": 3, - "then": 3, - "NewIndex": 2, - "mod": 1, - "index_det": 1, - "else": 8, - "rot13": 11, - "read_char": 1, - "Res": 8, - "ok": 3, - "print": 3, - "ErrorCode": 4, - "error_message": 1, - "ErrorMessage": 4, - "stderr_stream": 1, - "StdErr": 8, - "nl": 1, + "hello.": 1, + "io.write_string": 1, + "expr.": 1, + "token": 5, + "num": 11, + "parse": 1, + "exprn/1": 1, + "xx": 1, + "scan": 16, + "rule": 3, + "exprn": 7, + "Num": 18, + "B": 8, + "factor": 6, + "/": 1, + "Chars": 2, + "Toks": 13, + "Toks0": 11, + "list__reverse": 1, + "C": 34, + "Cs": 9, + "char__is_whitespace": 1, + "char__is_digit": 2, + "takewhile": 1, + "Digits": 2, + "Rest": 2, + "string__from_char_list": 1, + "NumStr": 2, + "string__det_to_int": 1, "rot13_ralph.": 1, - "io__state": 4, "io__read_byte": 1, "Result": 4, "io__write_byte": 1, "ErrNo": 2, - "io__error_message": 2, "z": 1, "Rot13": 2, "<": 14, "rem": 1, - "rot13_verbose.": 1, - "rot13a/2": 1, - "table": 1, - "alphabetic": 2, - "characters": 1, - "their": 1, - "equivalents": 1, - "fails": 1, - "input": 1, - "not": 7, - "rot13a": 55, - "rot13/2": 1, - "Applies": 1, - "algorithm": 1, - "a": 10, - "character.": 1, - "TmpChar": 2, - "io__read_char": 1, - "io__write_char": 1, - "io__stderr_stream": 1, - "io__write_string": 2, - "io__nl": 1, + "ll_backend.code_info.": 1, + "hlds.code_model.": 1, + "hlds.hlds_llds.": 1, + "ll_backend.continuation_info.": 1, + "ll_backend.global_data.": 1, + "ll_backend.layout.": 1, + "ll_backend.llds.": 1, + "ll_backend.trace_gen.": 1, + "counter.": 1, + "set_tree234.": 1, + "backend_libs.builtin_ops.": 1, + "backend_libs.proc_label.": 1, + "hlds.arg_info.": 1, + "hlds.hlds_desc.": 1, + "libs.trace_params.": 1, + "ll_backend.code_util.": 1, + "ll_backend.opt_debug.": 1, + "ll_backend.var_locn.": 1, + "parse_tree.mercury_to_mercury.": 1, + "cord.": 1, + "stack.": 1, + "code_info.": 1, + "code_info_init": 2, + "globals": 5, + "abs_follow_vars": 3, + "static_cell_info": 4, + "const_struct_map": 3, + "resume_point_info": 11, + "trace_slot_info": 3, + "containing_goal_map": 4, + "code_info": 208, + "get_globals": 5, + "get_exprn_opts": 2, + "exprn_opts": 3, + "get_module_info": 7, + "get_pred_id": 6, + "get_proc_id": 5, + "get_pred_info": 2, + "get_proc_info": 4, + "get_varset": 3, + "get_var_types": 3, + "vartypes.": 1, + "get_maybe_trace_info": 2, + "trace_info": 3, + "get_emit_trail_ops": 2, + "add_trail_ops": 5, + "get_emit_region_ops": 2, + "add_region_ops": 6, + "get_forward_live_vars": 2, + "set_of_progvar": 10, + "set_forward_live_vars": 2, + "get_instmap": 4, + "instmap": 3, + "set_instmap": 3, + "get_par_conj_depth": 2, + "set_par_conj_depth": 2, + "get_label_counter": 3, + "counter": 6, + "get_succip_used": 2, + "get_layout_info": 4, + "proc_label_layout_info": 3, + "get_proc_trace_events": 2, + "set_proc_trace_events": 2, + "get_closure_layouts": 3, + "closure_proc_id_data": 4, + "get_max_reg_in_use_at_trace": 2, + "set_max_reg_in_use_at_trace": 2, + "get_created_temp_frame": 2, + "get_static_cell_info": 5, + "set_static_cell_info": 5, + "get_alloc_sites": 3, + "set_tree234": 3, + "alloc_site_info": 4, + "set_alloc_sites": 3, + "get_used_env_vars": 2, + "set_used_env_vars": 2, + "get_opt_trail_ops": 2, + "get_opt_region_ops": 2, + "get_auto_comments": 2, + "get_lcmc_null": 2, + "get_containing_goal_map": 3, + "get_containing_goal_map_det": 2, + "get_const_struct_map": 2, + "add_out_of_line_code": 2, + "llds_code": 21, + "get_out_of_line_code": 2, + "get_var_slot_count": 2, + "set_maybe_trace_info": 3, + "get_opt_no_return_calls": 2, + "get_zombies": 2, + "set_zombies": 2, + "get_var_locn_info": 7, + "var_locn_info": 3, + "set_var_locn_info": 4, + "get_temps_in_use": 6, + "lval": 114, + "set_temps_in_use": 4, + "get_fail_info": 13, + "fail_info": 24, + "set_fail_info": 9, + "set_label_counter": 3, + "set_succip_used": 3, + "set_layout_info": 4, + "get_max_temp_slot_count": 2, + "set_max_temp_slot_count": 2, + "get_temp_content_map": 3, + "slot_contents": 4, + "set_temp_content_map": 2, + "get_persistent_temps": 3, + "set_persistent_temps": 2, + "set_closure_layouts": 3, + "get_closure_seq_counter": 3, + "set_closure_seq_counter": 3, + "set_created_temp_frame": 2, + "code_info_static": 26, + "code_info_loc_dep": 22, + "code_info_persistent": 44, + "cis_globals": 2, + "cis_exprn_opts": 2, + "cis_module_info": 2, + "cis_pred_id": 2, + "cis_proc_id": 2, + "cis_pred_info": 2, + "cis_proc_info": 2, + "cis_proc_label": 1, + "proc_label": 2, + "cis_varset": 2, + "cis_var_slot_count": 2, + "cis_maybe_trace_info": 3, + "cis_opt_no_resume_calls": 2, + "cis_emit_trail_ops": 2, + "cis_opt_trail_ops": 2, + "cis_emit_region_ops": 2, + "cis_opt_region_ops": 2, + "cis_auto_comments": 2, + "cis_lcmc_null": 2, + "cis_containing_goal_map": 2, + "cis_const_struct_map": 2, + "cild_forward_live_vars": 3, + "cild_instmap": 3, + "cild_zombies": 3, + "cild_var_locn_info": 3, + "cild_temps_in_use": 3, + "cild_fail_info": 3, + "cild_par_conj_depth": 3, + "cip_label_num_src": 3, + "cip_store_succip": 3, + "cip_label_info": 3, + "cip_proc_trace_events": 3, + "cip_stackslot_max": 3, + "cip_temp_contents": 3, + "cip_persistent_temps": 3, + "cip_closure_layout_seq": 3, + "cip_closure_layouts": 3, + "cip_max_reg_r_used": 3, + "cip_max_reg_f_used": 2, + "cip_created_temp_frame": 3, + "cip_static_cell_info": 3, + "cip_alloc_sites": 3, + "cip_used_env_vars": 3, + "cip_ts_string_table_size": 3, + "cip_ts_rev_string_table": 4, + "cip_out_of_line_code": 4, + "SaveSuccip": 2, + "Globals": 32, + "FollowVars": 6, + "StaticCellInfo": 8, + "ConstStructMap": 2, + "ResumePoint": 13, + "TraceSlotInfo": 5, + "MaybeContainingGoalMap": 5, + "TSRevStringTable": 2, + "TSStringTableSize": 2, + "CodeInfo": 2, + "ProcLabel": 8, + "make_proc_label": 1, + "proc_info_get_initial_instmap": 1, + "InstMap": 6, + "proc_info_get_liveness_info": 1, + "Liveness": 4, + "CodeModel": 8, + "proc_info_interface_code_model": 2, + "build_input_arg_list": 1, + "ArgList": 2, + "proc_info_get_varset": 1, + "proc_info_get_vartypes": 2, + "proc_info_get_stack_slots": 1, + "StackSlots": 5, + "ExprnOpts": 4, + "init_exprn_opts": 3, + "globals.lookup_bool_option": 18, + "UseFloatRegs": 6, + "FloatRegType": 3, + "reg_f": 1, + "reg_r": 2, + "globals.get_trace_level": 1, + "TraceLevel": 5, + "eff_trace_level_is_none": 2, + "trace_fail_vars": 1, + "FailVars": 3, + "MaybeFailVars": 3, + "EffLiveness": 3, + "init_var_locn_state": 1, + "VarLocnInfo": 12, + "stack.init": 1, + "ResumePoints": 14, + "AllowHijack": 3, + "Hijack": 6, + "allowed": 6, + "not_allowed": 5, + "DummyFailInfo": 2, + "resume_point_unknown": 9, + "may_be_different": 7, + "not_inside_non_condition": 2, + "TempContentMap": 4, + "set.init": 7, + "PersistentTemps": 4, + "TempsInUse": 8, + "Zombies": 2, + "set_of_var.init": 1, + "LayoutMap": 2, + "max_var_slot": 1, + "VarSlotMax": 2, + "trace_reserved_slots": 1, + "FixedSlots": 2, + "int.max": 1, + "SlotMax": 2, + "OptNoReturnCalls": 2, + "UseTrail": 2, + "DisableTrailOps": 2, + "EmitTrailOps": 3, + "do_not_add_trail_ops": 1, + "OptTrailOps": 2, + "OptRegionOps": 2, + "UseRegions": 3, + "EmitRegionOps": 3, + "do_not_add_region_ops": 1, + "AutoComments": 2, + "LCMCNull": 2, + "CodeInfo0": 2, + "init_fail_info": 2, + "will": 1, + "override": 1, + "this": 4, + "dummy": 2, + "value": 16, + "nested": 1, + "conjunction": 1, + "depth": 1, + "counter.init": 2, + "set_tree234.init": 1, + "cord.empty": 1, + "init_maybe_trace_info": 3, + "CodeInfo1": 2, + "exprn_opts.": 1, + "OptNLG": 3, + "NLG": 3, + "have_non_local_gotos": 1, + "do_not_have_non_local_gotos": 1, + "OptASM": 3, + "ASM": 3, + "have_asm_labels": 1, + "do_not_have_asm_labels": 1, + "OptSGCell": 3, + "SGCell": 3, + "have_static_ground_cells": 1, + "do_not_have_static_ground_cells": 1, + "OptUBF": 3, + "UBF": 3, + "have_unboxed_floats": 1, + "do_not_have_unboxed_floats": 1, + "OptFloatRegs": 3, + "do_not_use_float_registers": 1, + "OptSGFloat": 3, + "SGFloat": 3, + "have_static_ground_floats": 1, + "do_not_have_static_ground_floats": 1, + "OptStaticCodeAddr": 3, + "StaticCodeAddrs": 3, + "have_static_code_addresses": 1, + "do_not_have_static_code_addresses": 1, + "CI": 294, + "proc_info_get_has_tail_call_events": 1, + "HasTailCallEvents": 3, + "tail_call_events": 1, + "get_next_label": 5, + "TailRecLabel": 2, + "MaybeTailRecLabel": 3, + "no_tail_call_events": 1, + "trace_setup": 1, + "TraceInfo": 2, + "MaxRegR": 4, + "MaxRegF": 4, + "cip_max_reg_f_used.": 1, + "TI": 4, + "LV": 2, + "IM": 2, + "Zs": 2, + "EI": 2, + "FI": 2, + "LC": 2, + "SU": 2, + "LI": 2, + "PTE": 2, + "TM": 2, + "CM": 2, + "PT": 2, + "CLS": 2, + "CG": 2, + "MR": 4, + "MF": 1, + "MF.": 1, + "SCI": 2, + "ASI": 2, + "UEV": 2, + "ContainingGoalMap": 2, + "NewCode": 2, + "Code0": 2, + ".CI": 29, + "Code": 36, + "Code.": 1, + "get_stack_slots": 2, + "stack_slots": 1, + "get_follow_var_map": 2, + "abs_follow_vars_map": 1, + "get_next_non_reserved": 2, + "reg_type": 1, + "set_follow_vars": 4, + "pre_goal_update": 3, + "has_subgoals": 2, + "post_goal_update": 3, + "variable_type": 3, + "mer_type.": 1, + "variable_is_of_dummy_type": 2, + "is_dummy_type.": 1, + "search_type_defn": 4, + "hlds_type_defn": 1, + "lookup_type_defn": 2, + "hlds_type_defn.": 1, + "lookup_cheaper_tag_test": 2, + "maybe_cheaper_tag_test.": 1, + "filter_region_vars": 2, + "set_of_progvar.": 2, + "get_proc_model": 2, + "code_model.": 1, + "get_headvars": 2, + "get_arginfo": 2, + "arg_info": 2, + "get_pred_proc_arginfo": 3, + "current_resume_point_vars": 2, + "variable_name": 2, + "make_proc_entry_label": 2, + "code_addr.": 1, + "label": 5, + "succip_is_used": 2, + "add_trace_layout_for_label": 2, + "trace_port": 1, + "forward_goal_path": 1, + "user_event_info": 1, + "layout_label_info": 2, + "get_cur_proc_label": 4, + "get_next_closure_seq_no": 2, + "add_closure_layout": 2, + "add_threadscope_string": 2, + "get_threadscope_rev_string_table": 2, + "add_scalar_static_cell": 2, + "typed_rval": 1, + "data_id": 3, + "add_scalar_static_cell_natural_types": 2, + "rval": 3, + "add_vector_static_cell": 2, + "llds_type": 1, + "add_alloc_site_info": 2, + "prog_context": 1, + "alloc_site_id": 2, + "add_resume_layout_for_label": 2, + "var_locn_get_stack_slots": 1, + "FollowVarMap": 2, + "var_locn_get_follow_var_map": 1, + "RegType": 2, + "NextNonReserved": 2, + "var_locn_get_next_non_reserved": 1, + "VarLocnInfo0": 4, + "var_locn_set_follow_vars": 1, + "HasSubGoals": 3, + "goal_info_get_resume_point": 1, + "no_resume_point": 1, + "resume_point": 1, + "goal_info_get_follow_vars": 1, + "MaybeFollowVars": 3, + "goal_info_get_pre_deaths": 1, + "PreDeaths": 3, + "rem_forward_live_vars": 3, + "maybe_make_vars_forward_dead": 2, + "goal_info_get_pre_births": 1, + "PreBirths": 2, + "add_forward_live_vars": 2, + "does_not_have_subgoals": 2, + "goal_info_get_post_deaths": 2, + "PostDeaths": 5, + "goal_info_get_post_births": 1, + "PostBirths": 3, + "make_vars_forward_live": 1, + "InstMapDelta": 2, + "goal_info_get_instmap_delta": 1, + "InstMap0": 2, + "instmap.apply_instmap_delta": 1, + "TypeInfoLiveness": 2, + "body_should_use_typeinfo_liveness": 1, + "IsDummy": 2, + "VarType": 2, + "check_dummy_type": 1, + "TypeDefn": 6, + "type_to_ctor_det": 1, + "TypeCtor": 2, + "module_info_get_type_table": 1, + "TypeTable": 2, + "search_type_ctor_defn": 1, + "TypeDefnPrime": 2, + "CheaperTagTest": 3, + "get_type_defn_body": 1, + "TypeBody": 2, + "hlds_du_type": 1, + "CheaperTagTestPrime": 2, + "no_cheaper_tag_test": 1, + "ForwardLiveVarsBeforeGoal": 6, + "RegionVars": 2, + "code_info.get_var_types": 1, + "set_of_var.filter": 1, + "is_region_var": 1, + "ArgInfo": 4, + "proc_info_arg_info": 1, + "ResumeVars": 4, + "FailInfo": 19, + "ResumePointStack": 2, + "stack.det_top": 5, + "ResumePointInfo": 2, + "pick_first_resume_point": 1, + "ResumeMap": 8, + "ResumeMapVarList": 2, + "Varset": 2, + "Immed0": 3, + "CodeAddr": 2, + "Immed": 3, + "globals.lookup_int_option": 1, + "ProcsPerFunc": 2, + "CurPredId": 2, + "CurProcId": 2, + "make_entry_label": 1, + "Label": 8, + "C0": 4, + "counter.allocate": 2, + "internal_label": 3, + "Port": 2, + "IsHidden": 2, + "GoalPath": 2, + "MaybeSolverEventInfo": 2, + "Layout": 2, + "Internals0": 8, + "Exec": 5, + "trace_port_layout_info": 1, + "LabelNum": 8, + "entry_label": 2, + "map.search": 2, + "Internal0": 4, + "internal_layout_info": 6, + "Exec0": 3, + "Resume": 5, + "Return": 6, + "Internal": 8, + "Internals": 6, + "map.det_insert": 3, + "LayoutInfo": 2, + "Resume0": 3, + "get_active_temps_data": 2, + "assoc_list": 1, + "Temps": 2, + "map.select": 1, + "TempsInUseContentMap": 2, + "map.to_assoc_list": 3, + "cis_proc_label.": 1, + "SeqNo": 2, + "ClosureLayout": 2, + "ClosureLayouts": 2, + "String": 2, + "SlotNum": 2, + "Size0": 3, + "RevTable0": 2, + "Size": 4, + "RevTable": 3, + "RevTable.": 1, + "TableSize": 2, + "cip_ts_string_table_size.": 1, + "RvalsTypes": 2, + "DataAddr": 6, + "StaticCellInfo0": 6, + "global_data.add_scalar_static_cell": 1, + "Rvals": 2, + "global_data.add_scalar_static_cell_natural_types": 1, + "Vector": 2, + "global_data.add_vector_static_cell": 1, + "AllocId": 2, + "AllocSite": 3, + "AllocSites0": 2, + "set_tree234.insert": 1, + "AllocSites": 2, + "position_info.": 1, + "branch_end_info.": 1, + "branch_end": 4, + "branch_end_info": 7, + "remember_position": 3, + "position_info": 14, + "reset_to_position": 4, + "reset_resume_known": 2, + "generate_branch_end": 2, + "abs_store_map": 3, + "after_all_branches": 2, + "save_hp_in_branch": 2, + "pos_get_fail_info": 3, + "fail_info.": 2, + "LocDep": 6, + "cild_fail_info.": 1, + "CurCI": 2, + "NextCI": 2, + "Static": 2, + "Persistent": 2, + "NextCI0": 4, + "TempsInUse0": 4, + "set.union": 2, + "BranchStart": 2, + "BranchStartFailInfo": 2, + "BSResumeKnown": 2, + "CurFailInfo": 2, + "CurFailStack": 2, + "CurCurfMaxfr": 2, + "CurCondEnv": 2, + "CurHijack": 2, + "NewFailInfo": 2, + "StoreMap": 8, + "MaybeEnd0": 3, + "MaybeEnd": 6, + "AbsVarLocs": 3, + "assoc_list.values": 1, + "AbsLocs": 2, + "code_util.max_mentioned_abs_regs": 1, + "instmap_is_reachable": 1, + "VarLocs": 2, + "assoc_list.map_values_only": 2, + "abs_locn_to_lval": 2, + "place_vars": 1, + "remake_with_store_map": 4, + "empty": 9, + "EndCodeInfo1": 5, + "EndCodeInfo0": 3, + "FailInfo0": 13, + "FailInfo1": 2, + "ResumeKnown0": 5, + "CurfrMaxfr0": 2, + "CondEnv0": 3, + "Hijack0": 2, + "R": 2, + "ResumeKnown1": 2, + "CurfrMaxfr1": 2, + "CondEnv1": 2, + "Hijack1": 2, + "resume_point_known": 15, + "Redoip0": 3, + "Redoip1": 2, + "ResumeKnown": 21, + "must_be_equal": 11, + "CurfrMaxfr": 24, + "EndCodeInfoA": 2, + "TempsInUse1": 2, + "EndCodeInfo": 2, + "BranchEnd": 2, + "BranchEndCodeInfo": 2, + "BranchEndLocDep": 2, + "VarLocns": 2, + "VarLvals": 2, + "reinit_var_locn_state": 1, + "Slot": 2, + "Pos0": 2, + "Pos": 2, + "CI0": 2, + "CIStatic0": 2, + "CILocDep0": 2, + "CIPersistent0": 2, + "LocDep0": 2, + "CI1": 2, + "save_hp": 1, + "CI2": 2, + "CIStatic": 2, + "CIPersistent": 2, + "resume_map.": 1, + "resume_point_info.": 1, + "disj_hijack_info.": 1, + "prepare_for_disj_hijack": 2, + "code_model": 3, + "disj_hijack_info": 3, + "undo_disj_hijack": 2, + "ite_hijack_info.": 1, + "prepare_for_ite_hijack": 2, + "embedded_stack_frame_id": 3, + "ite_hijack_info": 3, + "ite_enter_then": 2, + "simple_neg_info.": 1, + "enter_simple_neg": 2, + "simple_neg_info": 3, + "leave_simple_neg": 2, + "det_commit_info.": 1, + "prepare_for_det_commit": 2, + "det_commit_info": 6, + "generate_det_commit": 2, + "semi_commit_info.": 1, + "prepare_for_semi_commit": 2, + "semi_commit_info": 6, + "generate_semi_commit": 2, + "effect_resume_point": 2, + "pop_resume_point": 1, + "top_resume_point": 1, + "set_resume_point_to_unknown": 1, + "set_resume_point_and_frame_to_unknown": 1, + "generate_failure": 2, + "fail_if_rval_is_false": 1, + "failure_is_direct_branch": 1, + "code_addr": 8, + "may_use_nondet_tailcall": 1, + "nondet_tail_call": 1, + "produce_vars": 1, + "resume_map": 9, + "flush_resume_vars_to_stack": 1, + "make_resume_point": 1, + "resume_locs": 1, + "generate_resume_point": 2, + "resume_point_vars": 1, + "resume_point_stack_addr": 2, + "stack": 1, + "curfr_vs_maxfr": 2, + "condition_env": 3, + "hijack_allowed": 2, + "orig_only": 2, + "stack_only": 2, + "orig_and_stack": 1, + "stack_and_orig": 1, + "redoip_update": 2, + "has_been_done": 5, + "wont_be_done.": 1, + "resume_point_unknown.": 1, + "may_be_different.": 1, + "inside_non_condition": 6, + "not_inside_non_condition.": 1, + "not_allowed.": 1, + "disj_no_hijack": 4, + "disj_temp_frame": 4, + "disj_quarter_hijack": 4, + "disj_half_hijack": 3, + "disj_full_hijack": 3, + "HijackInfo": 29, + "CondEnv": 12, + "Allow": 12, + "model_det": 2, + "model_semi": 3, + "singleton": 28, + "llds_instr": 64, + "comment": 5, + "model_non": 2, + "create_temp_frame": 4, + "do_fail": 6, + "stack.pop": 1, + "TopResumePoint": 6, + "RestResumePoints": 2, + "stack.is_empty": 1, + "wont_be_done": 2, + "acquire_temp_slot": 15, + "slot_lval": 14, + "redoip_slot": 30, + "curfr": 18, + "non_persistent_temp_slot": 15, + "RedoipSlot": 33, + "maxfr": 42, + "redofr_slot": 14, + "RedofrSlot": 17, + "from_list": 13, + "prevfr_slot": 3, + "pick_stack_resume_point": 3, + "StackLabel": 9, + "LabelConst": 4, + "const": 10, + "llconst_code_addr": 6, + "ite_region_info": 5, + "ite_info": 3, + "ite_hijack_type": 2, + "ite_no_hijack": 3, + "ite_temp_frame": 3, + "ite_quarter_hijack": 3, + "ite_half_hijack": 3, + "ite_full_hijack": 3, + "CondCodeModel": 4, + "MaybeEmbeddedFrameId": 5, + "HijackType": 12, + "MaybeRegionInfo": 12, + "MaxfrSlot": 30, + "TempFrameCode": 4, + "MaxfrCode": 7, + "EmbeddedFrameId": 2, + "slot_success_record": 1, + "persistent_temp_slot": 1, + "SuccessRecordSlot": 6, + "InitSuccessCode": 3, + "llconst_false": 1, + "ITEResumePoint": 2, + "ThenCode": 10, + "ElseCode": 7, + "ResumePoints0": 5, + "stack.det_pop": 1, + "HijackResumeKnown": 2, + "OldCondEnv": 2, + "RegionInfo": 2, + "EmbeddedStackFrameId": 2, + "ITEStackResumeCodeAddr": 2, + "llconst_true": 1, + "AfterRegionOp": 3, + "if_val": 1, + "unop": 1, + "logical_not": 1, + "code_label": 2, + "use_and_maybe_pop_region_frame": 1, + "region_ite_nondet_cond_fail": 1, + "goto": 2, + "maybe_pick_stack_resume_point": 1, + "ResumeMap0": 2, + "make_fake_resume_map": 5, + "do_redo": 1, + "is_empty": 1, + "Locns": 2, + "set.make_singleton_set": 1, + "reg": 1, + "region_commit_stack_frame": 5, + "AddTrailOps": 4, + "AddRegionOps": 5, + "CommitGoalInfo": 4, + "DetCommitInfo": 4, + "SaveMaxfrCode": 3, + "save_maxfr": 3, + "MaybeMaxfrSlot": 6, + "maybe_save_trail_info": 2, + "MaybeTrailSlots": 8, + "SaveTrailCode": 4, + "maybe_save_region_commit_frame": 4, + "MaybeRegionCommitFrameInfo": 8, + "SaveRegionCommitFrameCode": 2, + "SaveRegionCommitFrameCode.": 2, + "RestoreMaxfrCode": 3, + "restore_maxfr": 3, + "release_temp_slot": 1, + "maybe_restore_trail_info": 2, + "CommitTrailCode": 4, + "maybe_restore_region_commit_frame": 2, + "SuccessRegionCode": 3, + "_FailureRegionCode": 1, + "SuccessRegionCode.": 1, + "commit_hijack_info": 2, + "commit_temp_frame": 3, + "commit_quarter_hijack": 3, + "commit_half_hijack": 3, + "commit_full_hijack": 3, + "SemiCommitInfo": 4, + "clone_resume_point": 1, + "NewResumePoint": 4, + "stack.push": 1, + "StackLabelConst": 7, + "UseMinimalModelStackCopyCut": 4, + "Components": 4, + "foreign_proc_raw_code": 4, + "cannot_branch_away": 4, + "proc_affects_liveness": 2, + "live_lvals_info": 4, + "proc_does_not_affect_liveness": 2, + "MD": 4, + "proc_may_duplicate": 2, + "MarkCode": 3, + "foreign_proc_code": 2, + "proc_will_not_call_mercury": 2, + "HijackCode": 5, + "UseMinimalModel": 3, + "CutCode": 4, + "SuccessUndoCode": 5, + "FailureUndoCode": 5, + "AfterCommit": 2, + "ResumePointCode": 2, + "FailCode": 2, + "RestoreTrailCode": 2, + "FailureRegionCode": 2, + "SuccLabel": 3, + "GotoSuccLabel": 2, + "SuccLabelCode": 1, + "SuccessCode": 2, + "FailureCode": 2, + "SuccLabelCode.": 1, + "_ForwardLiveVarsBeforeGoal": 1, "store.": 1, "typeclass": 1, "store": 52, @@ -42990,23 +43287,12 @@ "c": 1 }, "Moocode": { - "@program": 29, - "toy": 3, - "wind": 1, - "this.wound": 8, - "+": 39, ";": 505, - "player": 2, - "tell": 1, - "(": 600, - "this.name": 4, - ")": 593, - "player.location": 1, - "announce": 1, - "player.name": 1, - ".": 30, "while": 15, + "(": 600, "read": 1, + "player": 2, + ")": 593, "endwhile": 14, "I": 1, "M": 1, @@ -43137,8 +43423,10 @@ "#36824": 1, "#37646": 1, "#37647": 1, + ".": 30, "parent": 1, "plastic.tokenizer_proto": 4, + "@program": 29, "_": 4, "_ensure_prototype": 4, "application/x": 27, @@ -43214,6 +43502,7 @@ "respond_to": 9, "@code": 28, "@this": 13, + "+": 39, "i": 29, "length": 11, "LIST": 6, @@ -43480,6 +43769,14 @@ "result.type": 1, "result.first": 1, "result.second": 1, + "toy": 3, + "wind": 1, + "this.wound": 8, + "tell": 1, + "this.name": 4, + "player.location": 1, + "announce": 1, + "player.name": 1, "@verb": 1, "do_the_work": 3, "none": 1, @@ -44225,289 +44522,60 @@ }, "Nit": { "#": 196, - "import": 18, - "gtk": 1, - "class": 20, - "CalculatorContext": 7, - "var": 157, - "result": 16, - "nullable": 11, - "Float": 3, - "null": 39, - "last_op": 4, - "Char": 7, - "current": 26, - "after_point": 12, - "Int": 47, - "fun": 57, - "push_op": 2, - "(": 448, - "op": 11, - ")": 448, - "do": 83, - "apply_last_op_if_any": 2, - "if": 89, - "then": 81, - "self.result": 2, - "else": 63, - "store": 1, - "for": 27, - "next": 9, - "end": 117, - "prepare": 1, - "push_digit": 1, - "digit": 1, - "*": 14, - "+": 39, - "digit.to_f": 2, - "pow": 1, - "after_point.to_f": 1, - "self.after_point": 1, - "-": 70, - "self.current": 3, - "switch_to_decimals": 1, - "return": 54, - "/": 4, - "CalculatorGui": 2, - "super": 10, - "GtkCallable": 1, - "win": 2, - "GtkWindow": 2, - "container": 3, - "GtkGrid": 2, - "lbl_disp": 3, - "GtkLabel": 2, - "but_eq": 3, - "GtkButton": 2, - "but_dot": 3, - "context": 9, - "new": 164, - "redef": 30, - "signal": 1, - "sender": 3, - "user_data": 5, - "context.after_point": 1, - "after_point.abs": 1, - "isa": 12, - "is": 25, - "an": 4, - "operation": 1, - "c": 17, - "but_dot.sensitive": 2, - "false": 8, - "context.switch_to_decimals": 4, - "lbl_disp.text": 3, - "true": 6, - "context.push_op": 15, - "s": 68, - "context.result.to_precision_native": 1, - "index": 7, - "i": 20, - "in": 39, - "s.length.times": 1, - "chiffre": 3, - "s.chars": 2, - "[": 106, - "]": 80, - "and": 10, - "s.substring": 2, - "s.length": 2, - "a": 40, - "number": 7, - "n": 16, - "context.push_digit": 25, - "context.current.to_precision_native": 1, - "init": 6, - "init_gtk": 1, - "win.add": 1, - "container.attach": 7, - "digits": 1, - "but": 6, - "GtkButton.with_label": 5, - "n.to_s": 1, - "but.request_size": 2, - "but.signal_connect": 2, - "self": 41, - "%": 3, - "/3": 1, - "operators": 2, - "r": 21, - "op.to_s": 1, - "but_eq.request_size": 1, - "but_eq.signal_connect": 1, - ".": 6, - "but_dot.request_size": 1, - "but_dot.signal_connect": 1, - "#C": 1, - "but_c": 2, - "but_c.request_size": 1, - "but_c.signal_connect": 1, - "win.show_all": 1, - "context.result.to_precision": 6, - "assert": 24, - "print": 135, - "#test": 2, - "multiple": 1, - "decimals": 1, - "button": 1, - ".environ": 3, - "app": 1, - "run_gtk": 1, "module": 18, - "callback_chimpanze": 1, - "callback_monkey": 2, - "Chimpanze": 2, - "MonkeyActionCallable": 7, - "create": 1, - "monkey": 4, - "Monkey": 4, - "Invoking": 1, - "method": 17, - "which": 4, - "will": 8, - "take": 1, - "some": 1, - "time": 1, - "to": 18, - "compute": 1, - "be": 9, - "back": 1, - "wokeUp": 4, - "with": 2, - "information.": 1, - "Callback": 1, - "defined": 4, - "Interface": 1, - "monkey.wokeUpAction": 1, - "Inherit": 1, - "callback": 11, - "by": 5, - "interface": 3, - "Back": 2, - "of": 31, - "wokeUpAction": 2, - "message": 9, - "Object": 7, - "m": 5, - "m.create": 1, - "{": 14, - "#include": 2, - "": 1, - "": 1, - "typedef": 2, - "struct": 2, - "int": 4, - "id": 2, - ";": 34, - "age": 2, - "}": 14, - "CMonkey": 6, - "toCall": 6, - "MonkeyAction": 5, - "//": 13, - "Method": 1, - "reproduce": 3, - "answer": 1, - "Please": 1, - "note": 1, - "that": 2, - "function": 2, - "pointer": 2, - "only": 6, - "used": 1, - "the": 57, - "void": 3, - "cbMonkey": 2, - "*mkey": 2, - "callbackFunc": 2, - "CMonkey*": 1, - "MonkeyAction*": 1, - "*data": 3, - "sleep": 5, - "mkey": 2, - "data": 6, - "background": 1, - "treatment": 1, - "redirected": 1, - "nit_monkey_callback_func": 2, - "To": 1, - "call": 3, - "your": 1, - "signature": 1, - "must": 1, - "written": 2, - "like": 1, - "this": 2, - "": 1, - "Name": 1, - "_": 1, - "": 1, - "...": 1, - "MonkeyActionCallable_wokeUp": 1, - "abstract": 2, - "extern": 2, - "*monkey": 1, - "malloc": 2, - "sizeof": 2, - "get": 1, - "Must": 1, - "as": 1, - "Nit/C": 1, - "because": 4, - "C": 4, - "inside": 1, - "MonkeyActionCallable.wokeUp": 1, - "Allocating": 1, - "memory": 1, - "keep": 2, - "reference": 2, - "received": 1, - "parameters": 1, - "receiver": 1, - "Message": 1, - "Incrementing": 1, - "counter": 1, - "prevent": 1, - "from": 8, - "releasing": 1, - "MonkeyActionCallable_incr_ref": 1, - "Object_incr_ref": 1, - "Calling": 1, - "passing": 1, - "Receiver": 1, - "Function": 1, - "object": 2, - "Datas": 1, - "recv": 12, - "&": 1, "circular_list": 1, + "class": 20, "CircularList": 6, + "[": 106, "E": 15, + "]": 80, "Like": 1, "standard": 1, "Array": 12, "or": 9, "LinkedList": 1, + "is": 25, + "a": 40, "Sequence.": 1, + "super": 10, "Sequence": 1, "The": 11, "first": 7, "node": 10, + "of": 31, + "the": 57, "list": 10, + "if": 89, "any": 1, "special": 1, "case": 1, + "an": 4, "empty": 1, "handled": 1, + "by": 5, + "null": 39, "private": 5, + "var": 157, + "nullable": 11, "CLNode": 6, + "redef": 30, + "fun": 57, "iterator": 1, + "do": 83, + "return": 54, + "new": 164, "CircularListIterator": 2, + "(": 448, + "self": 41, + ")": 448, "self.node.item": 2, "push": 3, "e": 4, "new_node": 4, + "n": 16, "self.node": 13, + "then": 81, + "else": 63, "not": 12, "one": 3, "so": 4, @@ -44519,8 +44587,11 @@ "new_node.next": 1, "new_node.prev": 1, "old_last_node.next": 1, + "end": 117, "pop": 2, + "assert": 24, "prev": 3, + "only": 6, "n.item": 1, "detach": 1, "prev_prev": 2, @@ -44549,31 +44620,42 @@ "algorithm.": 1, "josephus": 1, "step": 2, + "Int": 47, "res": 1, "while": 4, "self.is_empty": 1, "count": 2, + "for": 27, + "i": 20, + "in": 39, "self.rotate": 1, "kill": 1, "x": 16, "self.shift": 1, "res.add": 1, "res.node": 1, + "current": 26, "item": 5, + "next": 9, "circular": 3, "list.": 4, "Because": 2, "circularity": 1, "there": 2, "always": 1, + ";": 34, "default": 2, "let": 1, "it": 1, + "be": 9, "previous": 4, "Coherence": 1, "between": 1, + "and": 10, + "to": 18, "maintained": 1, "IndexedIterator": 1, + "index": 7, "pointed.": 1, "Is": 1, "empty.": 4, @@ -44587,9 +44669,12 @@ "again": 1, "self.index": 3, "self.list.node": 1, + "+": 39, + "init": 6, "list.node": 1, "self.list": 1, "i.add_all": 1, + "print": 135, "i.first": 1, "i.join": 3, "i.push": 1, @@ -44597,360 +44682,15 @@ "i.pop": 1, "i.unshift": 1, "i.josephus": 1, - "clock": 4, - "Clock": 10, - "total": 1, - "minutes": 12, - "total_minutes": 2, - "Note": 7, - "read": 1, - "acces": 1, - "public": 1, - "write": 1, - "access": 1, - "private.": 1, - "hour": 3, - "self.total_minutes": 8, - "set": 2, - "hour.": 1, - "<": 11, - "changed": 1, - "accordinlgy": 1, - "self.hours": 1, - "hours": 9, - "updated": 1, - "h": 7, - "arrow": 2, - "interval": 1, - "hour_pos": 2, - "replace": 1, - "updated.": 1, - "to_s": 3, - "reset": 1, - "hours*60": 1, - "self.reset": 1, - "o": 5, - "type": 2, - "test": 1, - "required": 1, - "Thanks": 1, - "adaptive": 1, - "typing": 1, - "no": 1, - "downcast": 1, - "i.e.": 1, - "code": 3, - "safe": 4, - "o.total_minutes": 2, - "c.minutes": 1, - "c.hours": 1, - "c2": 2, - "c2.minutes": 1, - "clock_more": 1, - "now": 1, - "comparable": 1, - "Comparable": 1, - "Comparaison": 1, - "make": 1, - "sense": 1, - "other": 2, - "OTHER": 1, - "Comparable.": 1, - "All": 1, - "methods": 2, - "rely": 1, - "on": 1, - "c1": 1, - "c3": 1, - "c1.minutes": 1, - "curl_http": 1, - "curl": 11, - "MyHttpFetcher": 2, - "CurlCallbacks": 1, - "Curl": 4, - "our_body": 1, - "String": 14, - "self.curl": 1, - "Release": 1, - "destroy": 1, - "self.curl.destroy": 1, - "Header": 1, - "header_callback": 1, - "line": 3, - "We": 1, - "silent": 1, - "testing": 1, - "purposes": 2, - "#if": 1, - "line.has_prefix": 1, - "Body": 1, - "body_callback": 1, - "self.our_body": 1, - "Stream": 1, - "Cf": 1, - "No": 1, - "registered": 1, - "stream_callback": 1, - "buffer": 1, - "size": 8, - "args.length": 3, - "url": 2, - "args": 9, - "request": 1, - "CurlHTTPRequest": 1, - "HTTP": 3, - "Get": 2, - "Request": 3, - "request.verbose": 3, - "getResponse": 3, - "request.execute": 2, - "CurlResponseSuccess": 2, - "CurlResponseFailed": 5, - "Post": 1, - "myHttpFetcher": 2, - "request.delegate": 1, - "postDatas": 5, - "HeaderMap": 3, - "request.datas": 1, - "postResponse": 3, - "file": 1, - "headers": 3, - "request.headers": 1, - "downloadResponse": 3, - "request.download_to_file": 1, - "CurlFileResponseSuccess": 1, - "Program": 1, - "logic": 1, - "curl_mail": 1, - "mail_request": 1, - "CurlMailRequest": 1, - "response": 5, - "mail_request.set_outgoing_server": 1, - "mail_request.from": 1, - "mail_request.to": 1, - "mail_request.cc": 1, - "mail_request.bcc": 1, - "headers_body": 4, - "mail_request.headers_body": 1, - "mail_request.body": 1, - "mail_request.subject": 1, - "mail_request.verbose": 1, - "mail_request.execute": 1, - "CurlMailResponseSuccess": 1, - "draw_operation": 1, - "enum": 3, - "n_chars": 1, - "abs": 2, - "log10f": 1, - "float": 1, - "as_operator": 1, - "b": 10, - "abort": 2, - "override_dispc": 1, - "Bool": 2, - "lines": 7, - "Line": 53, - "P": 51, - "s/2": 23, - "y": 9, - "lines.add": 1, - "q4": 4, - "s/4": 1, - "l": 4, - "lines.append": 1, - "tl": 2, - "tr": 2, - "hack": 3, - "support": 1, - "bug": 1, - "evaluation": 1, - "software": 1, - "draw": 1, - "dispc": 2, - "gap": 1, - "w": 3, - "length": 2, - "*gap": 1, - "map": 8, - ".filled_with": 1, - "ci": 2, - "self.chars": 1, - "local_dispc": 4, - "c.override_dispc": 1, - "c.lines": 1, - "line.o.x": 1, - "ci*size": 1, - "ci*gap": 1, - "line.o.y": 1, - "line.len": 1, - "map.length": 3, - ".length": 1, - "line.step_x": 1, - "line.step_y": 1, - "printn": 10, - "step_x": 1, - "step_y": 1, - "len": 1, - "op_char": 3, - "disp_char": 6, - "disp_size": 6, - "disp_gap": 6, - "gets.to_i": 4, - "gets.chars": 2, - "op_char.as_operator": 1, - "len_a": 2, - "a.n_chars": 1, - "len_b": 2, - "b.n_chars": 1, - "len_res": 3, - "result.n_chars": 1, - "max_len": 5, - "len_a.max": 1, - "len_b.max": 1, - "d": 6, - "line_a": 3, - "a.to_s": 1, - "line_a.draw": 1, - "line_b": 3, - "op_char.to_s": 1, - "b.to_s": 1, - "line_b.draw": 1, - "disp_size*max_len": 1, - "*disp_gap": 1, - "line_res": 3, - "result.to_s": 1, - "line_res.draw": 1, - "drop_privileges": 1, - "privileges": 1, - "opts": 1, - "OptionContext": 1, - "opt_ug": 2, - "OptionUserAndGroup.for_dropping_privileges": 1, - "opt_ug.mandatory": 1, - "opts.add_option": 1, - "opts.parse": 1, - "opts.errors.is_empty": 1, - "opts.errors": 1, - "opts.usage": 1, - "exit": 3, - "user_group": 2, - "opt_ug.value": 1, - "user_group.drop_privileges": 1, - "extern_methods": 1, - "Returns": 1, - "th": 2, - "fibonnaci": 1, - "implemented": 1, - "here": 1, - "optimization": 1, - "fib": 5, - "Int_fib": 3, - "System": 1, - "seconds": 1, - "Return": 4, - "atan2l": 1, - "libmath": 1, - "atan_with": 2, - "atan2": 1, - "This": 1, - "Nit": 2, - "It": 1, - "use": 1, - "local": 1, - "operator": 1, - "all": 3, - "objects": 1, - "String.to_cstring": 2, - "equivalent": 1, - "char*": 1, - "foo": 3, - "long": 2, - "recv_fib": 2, - "recv_plus_fib": 2, - "Int__plus": 1, - "nit_string": 2, - "Int_to_s": 1, - "char": 1, - "*c_string": 1, - "String_to_cstring": 1, - "printf": 1, - "c_string": 1, - "Equivalent": 1, - "pure": 1, - "bar": 2, - "fibonacci": 3, - "Calculate": 1, - "element": 1, - "sequence.": 1, - ".fibonacci": 2, - "usage": 3, - "args.first.to_i.fibonacci": 1, - "html": 1, - "NitHomepage": 2, - "HTMLPage": 1, - "head": 5, - "add": 35, - ".attr": 17, - ".text": 27, - "body": 1, - "open": 14, - ".add_class": 4, - "add_html": 7, - "close": 14, - "page": 1, - "page.write_to": 1, - "stdout": 2, - "page.write_to_file": 1, - "int_stack": 1, - "IntStack": 2, - "Null": 1, - "means": 1, - "stack": 3, - "ISNode": 4, - "Add": 2, - "integer": 2, - "stack.": 2, - "val": 5, - "self.head": 5, - "Remove": 1, - "pushed": 1, - "integer.": 1, - "followings": 2, - "statically": 3, - "head.val": 1, - "head.next": 1, - "sum": 12, - "integers": 1, - "sumall": 1, - "cur": 3, - "condition": 1, - "cur.val": 1, - "cur.next": 1, - "attributes": 1, - "have": 1, - "value": 2, - "free": 2, - "constructor": 2, - "implicitly": 2, - "defined.": 2, - "stored": 1, - "node.": 1, - "any.": 1, - "A": 1, - "l.push": 4, - "l.sumall": 1, - "loop": 2, - "l.pop": 5, - "break": 2, - "following": 1, - "gives": 2, - "alternative": 1, "opengles2_hello_triangle": 1, + "import": 18, "glesv2": 1, "egl": 1, "mnit_linux": 1, "sdl": 1, "x11": 1, + ".environ": 3, + "exit": 3, "window_width": 2, "window_height": 2, "##": 6, @@ -44993,6 +44733,7 @@ "surface": 5, "egl_display.create_window_surface": 1, "surface.is_ok": 1, + "context": 9, "egl_display.create_context": 1, "context.is_ok": 1, "make_current_res": 2, @@ -45011,6 +44752,7 @@ "GLProgram": 1, "program.is_ok": 1, "program.info_log": 1, + "abort": 2, "vertex_shader": 2, "GLVertexShader": 1, "vertex_shader.is_ok": 1, @@ -45028,10 +44770,12 @@ "program.link": 1, "program.is_linked": 1, "vertices": 2, + "-": 70, "vertex_array": 1, "VertexArray": 1, "vertex_array.attrib_pointer": 1, "gl_clear_color": 1, + "printn": 10, "gl_viewport": 1, "gl_clear_color_buffer": 1, "program.use": 1, @@ -45046,21 +44790,326 @@ "egl_display.destroy_context": 1, "egl_display.destroy_surface": 1, "sdl_display.destroy": 1, - "print_arguments": 1, - "procedural_array": 1, - "array_sum": 2, - "array_sum_alt": 2, - "a.length": 1, - "socket_client": 1, - "socket": 6, - "Socket.client": 1, - ".to_i": 2, - "s.connected": 1, - "s.write": 1, - "s.close": 1, + "html": 1, + "NitHomepage": 2, + "HTMLPage": 1, + "head": 5, + "add": 35, + ".attr": 17, + ".text": 27, + "body": 1, + "open": 14, + ".add_class": 4, + "add_html": 7, + "close": 14, + "page": 1, + "page.write_to": 1, + "stdout": 2, + "page.write_to_file": 1, + "int_stack": 1, + "IntStack": 2, + "Null": 1, + "means": 1, + "that": 2, + "stack": 3, + "ISNode": 4, + "Add": 2, + "integer": 2, + "stack.": 2, + "val": 5, + "self.head": 5, + "Remove": 1, + "pushed": 1, + "integer.": 1, + "Return": 4, + "Note": 7, + "followings": 2, + "statically": 3, + "safe": 4, + "because": 4, + ".": 6, + "head.val": 1, + "head.next": 1, + "sum": 12, + "all": 3, + "integers": 1, + "sumall": 1, + "cur": 3, + "condition": 1, + "cur.val": 1, + "cur.next": 1, + "attributes": 1, + "have": 1, + "value": 2, + "free": 2, + "constructor": 2, + "implicitly": 2, + "defined.": 2, + "stored": 1, + "node.": 1, + "any.": 1, + "A": 1, + "l": 4, + "l.push": 4, + "l.sumall": 1, + "loop": 2, + "l.pop": 5, + "break": 2, + "following": 1, + "*": 14, + "gives": 2, + "alternative": 1, + "curl_http": 1, + "curl": 11, + "MyHttpFetcher": 2, + "CurlCallbacks": 1, + "Curl": 4, + "our_body": 1, + "String": 14, + "self.curl": 1, + "Release": 1, + "object": 2, + "destroy": 1, + "self.curl.destroy": 1, + "Header": 1, + "callback": 11, + "header_callback": 1, + "line": 3, + "We": 1, + "keep": 2, + "this": 2, + "silent": 1, + "testing": 1, + "purposes": 2, + "#if": 1, + "line.has_prefix": 1, + "Body": 1, + "body_callback": 1, + "self.our_body": 1, + "Stream": 1, + "Cf": 1, + "No": 1, + "registered": 1, + "stream_callback": 1, + "buffer": 1, + "size": 8, + "args.length": 3, + "<": 11, + "url": 2, + "args": 9, + "request": 1, + "CurlHTTPRequest": 1, + "HTTP": 3, + "Get": 2, + "Request": 3, + "request.verbose": 3, + "false": 8, + "getResponse": 3, + "request.execute": 2, + "isa": 12, + "CurlResponseSuccess": 2, + "CurlResponseFailed": 5, + "Post": 1, + "myHttpFetcher": 2, + "request.delegate": 1, + "postDatas": 5, + "HeaderMap": 3, + "request.datas": 1, + "postResponse": 3, + "file": 1, + "headers": 3, + "request.headers": 1, + "downloadResponse": 3, + "request.download_to_file": 1, + "CurlFileResponseSuccess": 1, + "Program": 1, + "logic": 1, + "gtk": 1, + "CalculatorContext": 7, + "result": 16, + "Float": 3, + "last_op": 4, + "Char": 7, + "after_point": 12, + "push_op": 2, + "op": 11, + "apply_last_op_if_any": 2, + "self.result": 2, + "store": 1, + "prepare": 1, + "push_digit": 1, + "digit": 1, + "digit.to_f": 2, + "pow": 1, + "after_point.to_f": 1, + "self.after_point": 1, + "self.current": 3, + "switch_to_decimals": 1, + "/": 4, + "CalculatorGui": 2, + "GtkCallable": 1, + "win": 2, + "GtkWindow": 2, + "container": 3, + "GtkGrid": 2, + "lbl_disp": 3, + "GtkLabel": 2, + "but_eq": 3, + "GtkButton": 2, + "but_dot": 3, + "signal": 1, + "sender": 3, + "user_data": 5, + "context.after_point": 1, + "after_point.abs": 1, + "operation": 1, + "c": 17, + "but_dot.sensitive": 2, + "context.switch_to_decimals": 4, + "lbl_disp.text": 3, + "true": 6, + "context.push_op": 15, + "s": 68, + "context.result.to_precision_native": 1, + "s.length.times": 1, + "chiffre": 3, + "s.chars": 2, + "s.substring": 2, + "s.length": 2, + "number": 7, + "context.push_digit": 25, + "context.current.to_precision_native": 1, + "init_gtk": 1, + "win.add": 1, + "container.attach": 7, + "digits": 1, + "but": 6, + "GtkButton.with_label": 5, + "n.to_s": 1, + "but.request_size": 2, + "but.signal_connect": 2, + "%": 3, + "/3": 1, + "operators": 2, + "r": 21, + "op.to_s": 1, + "but_eq.request_size": 1, + "but_eq.signal_connect": 1, + "but_dot.request_size": 1, + "but_dot.signal_connect": 1, + "#C": 1, + "but_c": 2, + "but_c.request_size": 1, + "but_c.signal_connect": 1, + "win.show_all": 1, + "context.result.to_precision": 6, + "#test": 2, + "multiple": 1, + "decimals": 1, + "button": 1, + "app": 1, + "run_gtk": 1, + "callback_monkey": 2, + "{": 14, + "#include": 2, + "": 1, + "": 1, + "typedef": 2, + "struct": 2, + "int": 4, + "id": 2, + "age": 2, + "}": 14, + "CMonkey": 6, + "MonkeyActionCallable": 7, + "toCall": 6, + "Object": 7, + "message": 9, + "MonkeyAction": 5, + "//": 13, + "Method": 1, + "which": 4, + "reproduce": 3, + "answer": 1, + "Please": 1, + "note": 1, + "function": 2, + "pointer": 2, + "used": 1, + "void": 3, + "cbMonkey": 2, + "*mkey": 2, + "callbackFunc": 2, + "CMonkey*": 1, + "MonkeyAction*": 1, + "*data": 3, + "sleep": 5, + "mkey": 2, + "data": 6, + "Back": 2, + "background": 1, + "treatment": 1, + "will": 8, + "redirected": 1, + "nit_monkey_callback_func": 2, + "To": 1, + "call": 3, + "your": 1, + "method": 17, + "signature": 1, + "must": 1, + "written": 2, + "like": 1, + "": 1, + "Name": 1, + "_": 1, + "": 1, + "...": 1, + "MonkeyActionCallable_wokeUp": 1, + "interface": 3, + "wokeUp": 4, + "Monkey": 4, + "abstract": 2, + "extern": 2, + "*monkey": 1, + "malloc": 2, + "sizeof": 2, + "monkey": 4, + "get": 1, + "defined": 4, + "Must": 1, + "as": 1, + "Nit/C": 1, + "C": 4, + "inside": 1, + "wokeUpAction": 2, + "MonkeyActionCallable.wokeUp": 1, + "Allocating": 1, + "memory": 1, + "reference": 2, + "received": 1, + "parameters": 1, + "receiver": 1, + "Message": 1, + "Incrementing": 1, + "counter": 1, + "prevent": 1, + "from": 8, + "releasing": 1, + "MonkeyActionCallable_incr_ref": 1, + "Object_incr_ref": 1, + "Calling": 1, + "passing": 1, + "Receiver": 1, + "Function": 1, + "Datas": 1, + "recv": 12, + "&": 1, "socket_server": 1, + "socket": 6, "args.is_empty": 1, "Socket.server": 1, + ".to_i": 2, "clients": 2, "Socket": 1, "max": 2, @@ -45073,6 +45122,164 @@ "socket.accept": 1, "ns.write": 1, "ns.close": 1, + "drop_privileges": 1, + "privileges": 1, + "opts": 1, + "OptionContext": 1, + "opt_ug": 2, + "OptionUserAndGroup.for_dropping_privileges": 1, + "opt_ug.mandatory": 1, + "opts.add_option": 1, + "opts.parse": 1, + "opts.errors.is_empty": 1, + "opts.errors": 1, + "opts.usage": 1, + "user_group": 2, + "opt_ug.value": 1, + "user_group.drop_privileges": 1, + "clock": 4, + "Clock": 10, + "total": 1, + "minutes": 12, + "total_minutes": 2, + "read": 1, + "acces": 1, + "public": 1, + "write": 1, + "access": 1, + "private.": 1, + "hour": 3, + "self.total_minutes": 8, + "set": 2, + "hour.": 1, + "m": 5, + "changed": 1, + "accordinlgy": 1, + "self.hours": 1, + "hours": 9, + "updated": 1, + "h": 7, + "arrow": 2, + "interval": 1, + "hour_pos": 2, + "replace": 1, + "updated.": 1, + "to_s": 3, + "reset": 1, + "hours*60": 1, + "self.reset": 1, + "o": 5, + "type": 2, + "test": 1, + "required": 1, + "Thanks": 1, + "adaptive": 1, + "typing": 1, + "no": 1, + "downcast": 1, + "i.e.": 1, + "code": 3, + "o.total_minutes": 2, + "c.minutes": 1, + "c.hours": 1, + "c2": 2, + "c2.minutes": 1, + "websocket_server": 1, + "websocket": 1, + "sock": 1, + "WebSocket": 1, + "msg": 8, + "sock.listener.eof": 2, + "sys.errno.strerror": 1, + "sock.accept": 2, + "sock.connected": 1, + "sys.stdin.poll_in": 1, + "gets": 1, + "sock.close": 1, + "sock.disconnect_client": 1, + "sock.write": 1, + "sock.can_read": 1, + "sock.read_line": 1, + "draw_operation": 1, + "enum": 3, + "n_chars": 1, + "abs": 2, + "log10f": 1, + "float": 1, + "as_operator": 1, + "b": 10, + "override_dispc": 1, + "Bool": 2, + "lines": 7, + "Line": 53, + "P": 51, + "s/2": 23, + "y": 9, + "lines.add": 1, + "q4": 4, + "s/4": 1, + "lines.append": 1, + "tl": 2, + "tr": 2, + "hack": 3, + "support": 1, + "bug": 1, + "evaluation": 1, + "software": 1, + "draw": 1, + "dispc": 2, + "gap": 1, + "w": 3, + "length": 2, + "*gap": 1, + "map": 8, + ".filled_with": 1, + "ci": 2, + "self.chars": 1, + "local_dispc": 4, + "c.override_dispc": 1, + "c.lines": 1, + "line.o.x": 1, + "ci*size": 1, + "ci*gap": 1, + "line.o.y": 1, + "line.len": 1, + "map.length": 3, + ".length": 1, + "line.step_x": 1, + "line.step_y": 1, + "step_x": 1, + "step_y": 1, + "len": 1, + "op_char": 3, + "disp_char": 6, + "disp_size": 6, + "disp_gap": 6, + "gets.to_i": 4, + "gets.chars": 2, + "op_char.as_operator": 1, + "len_a": 2, + "a.n_chars": 1, + "len_b": 2, + "b.n_chars": 1, + "len_res": 3, + "result.n_chars": 1, + "max_len": 5, + "len_a.max": 1, + "len_b.max": 1, + "d": 6, + "line_a": 3, + "a.to_s": 1, + "line_a.draw": 1, + "line_b": 3, + "op_char.to_s": 1, + "b.to_s": 1, + "line_b.draw": 1, + "disp_size*max_len": 1, + "*disp_gap": 1, + "line_res": 3, + "result.to_s": 1, + "line_res.draw": 1, "template": 1, "###": 2, "Here": 2, @@ -45105,25 +45312,115 @@ "self.birth": 1, "self.death": 1, "simple": 1, + "usage": 3, "f": 1, "f.add_composer": 3, "f.write_to": 1, - "websocket_server": 1, - "websocket": 1, - "sock": 1, - "WebSocket": 1, - "msg": 8, - "sock.listener.eof": 2, - "sys.errno.strerror": 1, - "sock.accept": 2, - "sock.connected": 1, - "sys.stdin.poll_in": 1, - "gets": 1, - "sock.close": 1, - "sock.disconnect_client": 1, - "sock.write": 1, - "sock.can_read": 1, - "sock.read_line": 1 + "procedural_array": 1, + "array_sum": 2, + "array_sum_alt": 2, + "a.length": 1, + "curl_mail": 1, + "mail_request": 1, + "CurlMailRequest": 1, + "response": 5, + "mail_request.set_outgoing_server": 1, + "mail_request.from": 1, + "mail_request.to": 1, + "mail_request.cc": 1, + "mail_request.bcc": 1, + "headers_body": 4, + "mail_request.headers_body": 1, + "mail_request.body": 1, + "mail_request.subject": 1, + "mail_request.verbose": 1, + "mail_request.execute": 1, + "CurlMailResponseSuccess": 1, + "extern_methods": 1, + "Returns": 1, + "th": 2, + "fibonnaci": 1, + "implemented": 1, + "here": 1, + "optimization": 1, + "fib": 5, + "Int_fib": 3, + "System": 1, + "seconds": 1, + "atan2l": 1, + "libmath": 1, + "atan_with": 2, + "atan2": 1, + "This": 1, + "Nit": 2, + "methods": 2, + "It": 1, + "use": 1, + "local": 1, + "operator": 1, + "objects": 1, + "String.to_cstring": 2, + "equivalent": 1, + "char*": 1, + "foo": 3, + "long": 2, + "recv_fib": 2, + "recv_plus_fib": 2, + "Int__plus": 1, + "nit_string": 2, + "Int_to_s": 1, + "char": 1, + "*c_string": 1, + "String_to_cstring": 1, + "printf": 1, + "c_string": 1, + "Equivalent": 1, + "pure": 1, + "bar": 2, + "fibonacci": 3, + "Calculate": 1, + "element": 1, + "sequence.": 1, + ".fibonacci": 2, + "args.first.to_i.fibonacci": 1, + "print_arguments": 1, + "clock_more": 1, + "now": 1, + "comparable": 1, + "Comparable": 1, + "Comparaison": 1, + "make": 1, + "sense": 1, + "with": 2, + "other": 2, + "OTHER": 1, + "Comparable.": 1, + "All": 1, + "rely": 1, + "on": 1, + "c1": 1, + "c3": 1, + "c1.minutes": 1, + "socket_client": 1, + "Socket.client": 1, + "s.connected": 1, + "s.write": 1, + "s.close": 1, + "callback_chimpanze": 1, + "Chimpanze": 2, + "create": 1, + "Invoking": 1, + "take": 1, + "some": 1, + "time": 1, + "compute": 1, + "back": 1, + "information.": 1, + "Callback": 1, + "Interface": 1, + "monkey.wokeUpAction": 1, + "Inherit": 1, + "m.create": 1 }, "Nix": { "{": 8, @@ -45192,10 +45489,6 @@ "inherit": 1 }, "Nu": { - "SHEBANG#!nush": 1, - "(": 14, - "puts": 1, - ")": 14, ";": 22, "main.nu": 1, "Entry": 1, @@ -45205,7 +45498,9 @@ "Nu": 1, "program.": 1, "Copyright": 1, + "(": 14, "c": 1, + ")": 14, "Tim": 1, "Burks": 1, "Neon": 1, @@ -45253,7 +45548,9 @@ "event": 1, "loop": 1, "NSApplicationMain": 1, - "nil": 1 + "nil": 1, + "SHEBANG#!nush": 1, + "puts": 1 }, "OCaml": { "{": 11, @@ -45343,1676 +45640,526 @@ "lazy_from_val": 1 }, "Objective-C": { - "//": 317, "#import": 53, - "": 4, - "#if": 41, - "TARGET_OS_IPHONE": 11, - "": 1, - "__IPHONE_OS_VERSION_MAX_ALLOWED": 4, - "__IPHONE_4_0": 6, - "": 1, - "Necessary": 1, - "for": 99, - "background": 1, - "task": 1, - "support": 4, - "#endif": 59, - "": 2, - "@class": 4, - "ASIDataDecompressor": 4, - ";": 2003, - "extern": 6, - "NSString": 127, - "*ASIHTTPRequestVersion": 2, - "#ifndef": 9, - "__IPHONE_3_2": 2, - "#define": 65, - "__MAC_10_5": 2, - "__MAC_10_6": 2, - "typedef": 47, - "enum": 17, - "_ASIAuthenticationState": 1, - "{": 541, - "ASINoAuthenticationNeededYet": 3, - "ASIHTTPAuthenticationNeeded": 1, - "ASIProxyAuthenticationNeeded": 1, - "}": 532, - "ASIAuthenticationState": 5, - "_ASINetworkErrorType": 1, - "ASIConnectionFailureErrorType": 2, - "ASIRequestTimedOutErrorType": 2, - "ASIAuthenticationErrorType": 3, - "ASIRequestCancelledErrorType": 2, - "ASIUnableToCreateRequestErrorType": 2, - "ASIInternalErrorWhileBuildingRequestType": 3, - "ASIInternalErrorWhileApplyingCredentialsType": 1, - "ASIFileManagementError": 2, - "ASITooMuchRedirectionErrorType": 3, - "ASIUnhandledExceptionError": 3, - "ASICompressionError": 1, - "ASINetworkErrorType": 1, - "NSString*": 13, - "const": 28, - "NetworkRequestErrorDomain": 12, - "unsigned": 62, - "long": 71, - "ASIWWANBandwidthThrottleAmount": 2, - "NS_BLOCKS_AVAILABLE": 8, - "void": 253, - "(": 2109, - "ASIBasicBlock": 15, - ")": 2106, - "ASIHeadersBlock": 3, - "NSDictionary": 37, - "*responseHeaders": 2, - "ASISizeBlock": 5, - "size": 12, - "ASIProgressBlock": 5, - "total": 4, - "ASIDataBlock": 3, - "NSData": 28, - "*data": 2, - "@interface": 23, - "ASIHTTPRequest": 31, - "NSOperation": 1, - "": 1, - "The": 15, - "url": 24, - "this": 50, - "operation": 2, - "should": 8, - "include": 1, - "GET": 1, - "params": 1, - "in": 42, - "the": 197, - "query": 1, - "string": 9, - "where": 1, - "appropriate": 4, - "NSURL": 21, - "*url": 2, - "Will": 7, - "always": 2, - "contain": 4, - "original": 2, - "used": 16, - "making": 1, - "request": 113, - "value": 21, - "of": 34, - "can": 20, - "change": 2, - "when": 46, - "a": 78, - "is": 77, - "redirected": 2, - "*originalURL": 2, - "Temporarily": 1, - "stores": 1, - "we": 73, - "are": 15, - "about": 4, - "to": 115, - "redirect": 4, - "to.": 2, - "be": 49, - "nil": 131, - "again": 1, - "do": 5, - "*redirectURL": 2, - "delegate": 29, - "-": 595, - "will": 57, - "notified": 2, - "various": 1, - "changes": 4, - "state": 35, - "via": 5, - "ASIHTTPRequestDelegate": 1, - "protocol": 10, - "id": 170, - "": 1, - "Another": 1, - "that": 23, - "also": 1, - "status": 4, - "and": 44, - "progress": 13, - "updates": 2, - "Generally": 1, - "you": 10, - "won": 3, - "s": 35, - "more": 5, - "likely": 1, - "sessionCookies": 2, - "NSMutableArray": 31, - "*requestCookies": 2, - "populated": 1, - "with": 19, - "cookies": 5, - "NSArray": 27, - "*responseCookies": 3, - "If": 30, - "use": 26, - "useCookiePersistence": 3, - "true": 9, - "network": 4, - "requests": 21, - "present": 3, - "valid": 5, - "from": 18, - "previous": 2, - "BOOL": 137, - "useKeychainPersistence": 4, - "attempt": 3, - "read": 3, - "credentials": 35, - "keychain": 7, - "save": 3, - "them": 10, - "they": 6, - "successfully": 4, - "presented": 2, - "useSessionPersistence": 6, - "reuse": 3, - "duration": 1, - "session": 5, - "until": 2, - "clearSession": 2, - "called": 3, - "allowCompressedResponse": 3, - "inform": 1, - "server": 8, - "accept": 2, - "compressed": 2, - "data": 27, - "automatically": 2, - "decompress": 1, - "gzipped": 7, - "responses.": 1, - "Default": 10, - "true.": 1, - "shouldCompressRequestBody": 6, - "body": 8, - "gzipped.": 1, - "false.": 1, - "You": 1, - "probably": 4, - "need": 10, - "enable": 1, - "feature": 1, - "on": 26, - "your": 2, - "webserver": 1, - "make": 3, - "work.": 1, - "Tested": 1, - "apache": 1, - "only.": 1, - "When": 15, - "downloadDestinationPath": 11, - "set": 24, - "result": 4, - "downloaded": 6, - "file": 14, - "at": 10, - "location": 3, - "not": 29, - "download": 9, - "stored": 9, - "memory": 3, - "*downloadDestinationPath": 2, - "files": 5, - "Once": 2, - "complete": 12, - "decompressed": 3, - "if": 297, - "necessary": 2, - "moved": 2, - "*temporaryFileDownloadPath": 2, - "response": 17, - "shouldWaitToInflateCompressedResponses": 4, - "NO": 30, - "created": 3, - "path": 11, - "containing": 1, - "inflated": 6, - "as": 17, - "it": 28, - "comes": 3, - "*temporaryUncompressedDataDownloadPath": 2, - "Used": 13, - "writing": 2, - "NSOutputStream": 6, - "*fileDownloadOutputStream": 2, - "*inflatedFileDownloadOutputStream": 2, - "fails": 2, - "or": 18, - "completes": 6, - "finished": 3, - "cancelled": 5, - "an": 20, - "error": 75, - "occurs": 1, - "NSError": 51, - "code": 16, - "Connection": 1, - "failure": 1, - "occurred": 1, - "inspect": 1, - "[": 1227, - "userInfo": 15, - "]": 1227, - "objectForKey": 29, - "NSUnderlyingErrorKey": 3, - "information": 5, - "*error": 3, - "Username": 2, - "password": 11, - "authentication": 18, - "*username": 2, - "*password": 2, - "User": 1, - "Agent": 1, - "*userAgentString": 2, - "Domain": 2, - "NTLM": 6, - "*domain": 2, - "proxy": 11, - "*proxyUsername": 2, - "*proxyPassword": 2, - "*proxyDomain": 2, - "Delegate": 2, - "displaying": 2, - "upload": 4, - "usually": 2, - "NSProgressIndicator": 4, - "but": 5, - "supply": 2, - "different": 4, - "object": 36, - "handle": 4, - "yourself": 4, - "": 2, - "uploadProgressDelegate": 8, - "downloadProgressDelegate": 10, - "Whether": 1, - "t": 15, - "want": 5, - "hassle": 1, - "adding": 1, - "authenticating": 2, - "proxies": 3, - "their": 3, - "apps": 1, - "shouldPresentProxyAuthenticationDialog": 2, - "CFHTTPAuthenticationRef": 2, - "proxyAuthentication": 7, - "*proxyCredentials": 2, - "during": 4, - "int": 55, - "proxyAuthenticationRetryCount": 4, - "Authentication": 3, - "scheme": 5, - "Basic": 2, - "Digest": 2, - "*proxyAuthenticationScheme": 2, - "Realm": 1, - "required": 2, - "*proxyAuthenticationRealm": 3, - "HTTP": 9, - "eg": 2, - "OK": 1, - "Not": 2, - "found": 4, - "etc": 1, - "responseStatusCode": 3, - "Description": 1, - "*responseStatusMessage": 3, - "Size": 3, - "contentLength": 6, - "partially": 1, - "content": 5, - "partialDownloadSize": 8, - "POST": 2, - "payload": 1, - "postLength": 6, - "amount": 12, - "totalBytesRead": 4, - "uploaded": 2, - "totalBytesSent": 5, - "Last": 2, - "incrementing": 2, - "lastBytesRead": 3, - "sent": 6, - "lastBytesSent": 3, - "This": 7, - "lock": 19, - "prevents": 1, - "being": 4, - "inopportune": 1, - "moment": 1, - "NSRecursiveLock": 13, - "*cancelledLock": 2, - "Called": 6, - "implemented": 7, - "starts.": 1, - "requestStarted": 3, - "SEL": 19, - "didStartSelector": 2, - "receives": 3, - "headers.": 1, - "didReceiveResponseHeaders": 2, - "didReceiveResponseHeadersSelector": 2, - "Location": 1, - "header": 20, - "shouldRedirect": 3, - "YES": 62, - "then": 1, - "needed": 3, - "restart": 1, - "by": 12, - "calling": 1, - "redirectToURL": 2, - "simply": 1, - "cancel": 5, - "willRedirectSelector": 2, - "successfully.": 1, - "requestFinished": 4, - "didFinishSelector": 2, - "fails.": 1, - "requestFailed": 2, - "didFailSelector": 2, - "data.": 1, - "didReceiveData": 2, - "implement": 1, - "method": 5, - "must": 6, - "populate": 1, - "responseData": 5, - "write": 4, - "didReceiveDataSelector": 2, - "recording": 1, - "something": 1, - "last": 1, - "happened": 1, - "compare": 4, - "current": 2, - "date": 3, - "time": 9, - "out": 7, - "NSDate": 9, - "*lastActivityTime": 2, - "Number": 1, - "seconds": 2, - "wait": 1, - "before": 6, - "timing": 1, - "default": 8, - "NSTimeInterval": 10, - "timeOutSeconds": 3, - "HEAD": 10, - "length": 32, - "starts": 2, - "shouldResetUploadProgress": 3, - "shouldResetDownloadProgress": 3, - "showAccurateProgress": 7, - "preset": 2, - "*mainRequest": 2, - "only": 12, - "update": 6, - "indicator": 4, - "according": 2, - "how": 2, - "much": 2, - "has": 6, - "received": 5, - "so": 15, - "far": 2, - "Also": 1, - "see": 1, - "comments": 1, - "ASINetworkQueue.h": 1, - "ensure": 1, - "incremented": 4, - "once": 3, - "updatedProgress": 3, - "Prevents": 1, - "post": 2, - "built": 2, - "than": 9, - "largely": 1, - "subclasses": 2, - "haveBuiltPostBody": 3, - "internally": 3, - "may": 8, - "reflect": 1, - "internal": 2, - "buffer": 7, - "CFNetwork": 3, - "/": 18, - "PUT": 1, - "operations": 1, - "sizes": 1, - "greater": 1, - "uploadBufferSize": 6, - "timeout": 6, - "unless": 2, - "bytes": 8, - "have": 15, - "been": 1, - "Likely": 1, - "KB": 4, - "iPhone": 3, - "Mac": 2, - "OS": 1, - "X": 1, - "Leopard": 1, - "x": 10, - "Text": 1, - "encoding": 7, - "responses": 5, - "send": 2, - "Content": 1, - "Type": 1, - "charset": 5, - "value.": 1, - "Defaults": 2, - "NSISOLatin1StringEncoding": 2, - "NSStringEncoding": 6, - "defaultResponseEncoding": 4, - "text": 12, - "didn": 3, - "set.": 1, - "responseEncoding": 3, - "Tells": 1, - "delete": 1, - "partial": 2, - "downloads": 1, - "allows": 1, - "existing": 1, - "resume": 2, - "download.": 1, - "NO.": 1, - "allowResumeForFileDownloads": 2, - "Custom": 1, - "user": 6, - "associated": 1, - "*userInfo": 2, - "NSInteger": 56, - "tag": 2, - "Use": 6, - "rather": 4, - "defaults": 2, - "false": 3, - "useHTTPVersionOne": 3, - "get": 4, - "tell": 2, - "main": 8, - "loop": 1, - "stop": 4, - "retry": 3, - "new": 10, - "needsRedirect": 3, - "Incremented": 1, - "every": 3, - "redirects.": 1, - "reaches": 1, - "give": 2, - "up": 4, - "redirectCount": 2, - "check": 1, - "secure": 1, - "certificate": 2, - "self": 500, - "signed": 1, - "certificates": 2, - "development": 1, - "DO": 1, - "NOT": 1, - "USE": 1, - "IN": 1, - "PRODUCTION": 1, - "validatesSecureCertificate": 3, - "SecIdentityRef": 3, - "clientCertificateIdentity": 5, - "*clientCertificates": 2, - "Details": 1, - "could": 1, - "these": 3, - "best": 1, - "local": 1, - "*PACurl": 2, - "See": 5, - "values": 3, - "above.": 1, - "No": 1, - "yet": 1, - "authenticationNeeded": 3, - "ASIHTTPRequests": 1, - "store": 4, - "same": 6, - "asked": 3, - "avoids": 1, - "extra": 1, - "round": 1, - "trip": 1, - "after": 5, - "succeeded": 1, - "which": 1, - "efficient": 1, - "authenticated": 1, - "large": 1, - "bodies": 1, - "slower": 1, - "connections": 3, - "Set": 4, - "explicitly": 2, - "affects": 1, - "cache": 17, - "YES.": 1, - "Credentials": 1, - "never": 1, - "asks": 1, - "For": 2, - "using": 8, - "authenticationScheme": 4, - "*": 311, - "kCFHTTPAuthenticationSchemeBasic": 2, - "very": 2, - "first": 9, - "shouldPresentCredentialsBeforeChallenge": 4, - "hasn": 1, - "doing": 1, - "anything": 1, - "expires": 1, - "persistentConnectionTimeoutSeconds": 4, - "yes": 1, - "keep": 2, - "alive": 1, - "connectionCanBeReused": 4, - "Stores": 1, - "persistent": 5, - "connection": 17, - "currently": 4, - "use.": 1, - "It": 2, - "particular": 2, - "specify": 2, - "expire": 2, - "A": 4, - "host": 9, - "port": 17, - "connection.": 2, - "These": 1, - "determine": 1, - "whether": 1, - "reused": 2, - "subsequent": 2, - "all": 3, - "match": 1, - "An": 2, - "determining": 1, - "available": 1, - "number": 2, - "reference": 1, - "don": 2, - "ve": 7, - "opened": 3, - "one.": 1, - "stream": 13, - "closed": 1, - "+": 195, - "released": 2, - "either": 1, - "another": 1, - "timer": 5, - "fires": 1, - "NSMutableDictionary": 18, - "*connectionInfo": 2, - "automatic": 1, - "redirects": 2, - "standard": 1, - "follow": 1, - "behaviour": 2, - "most": 1, - "browsers": 1, - "shouldUseRFC2616RedirectBehaviour": 2, - "record": 1, - "downloading": 5, - "downloadComplete": 2, - "ID": 1, - "uniquely": 1, - "identifies": 1, - "primarily": 1, - "debugging": 1, - "NSNumber": 11, - "*requestID": 3, - "ASIHTTPRequestRunLoopMode": 2, - "synchronous": 1, - "NSDefaultRunLoopMode": 2, - "other": 3, - "*runLoopMode": 2, - "checks": 1, - "NSTimer": 5, - "*statusTimer": 2, - "setDefaultCache": 2, - "configure": 2, - "": 9, - "downloadCache": 5, - "policy": 7, - "ASICacheDelegate.h": 2, - "possible": 3, - "ASICachePolicy": 4, - "cachePolicy": 3, - "storage": 2, - "ASICacheStoragePolicy": 2, - "cacheStoragePolicy": 2, - "was": 4, - "pulled": 1, - "didUseCachedResponse": 3, - "secondsToCache": 3, - "custom": 2, - "interval": 1, - "expiring": 1, - "&&": 123, - "shouldContinueWhenAppEntersBackground": 3, - "UIBackgroundTaskIdentifier": 1, - "backgroundTask": 7, - "helper": 1, - "inflate": 2, - "*dataDecompressor": 2, - "Controls": 1, - "without": 1, - "responseString": 3, - "All": 2, - "no": 7, - "raw": 3, - "discarded": 1, - "rawResponseData": 4, - "temporaryFileDownloadPath": 2, - "normal": 1, - "temporaryUncompressedDataDownloadPath": 3, - "contents": 1, - "into": 1, - "Setting": 1, - "especially": 1, - "useful": 1, - "users": 1, - "conjunction": 1, - "streaming": 1, - "parser": 3, - "allow": 1, - "passed": 2, - "while": 11, - "still": 2, - "running": 4, - "behind": 1, - "scenes": 1, - "PAC": 7, - "own": 3, - "isPACFileRequest": 3, - "http": 4, - "https": 1, - "webservers": 1, - "*PACFileRequest": 2, - "asynchronously": 1, - "reading": 1, - "URLs": 2, - "NSInputStream": 7, - "*PACFileReadStream": 2, - "storing": 1, - "NSMutableData": 5, - "*PACFileData": 2, - "startSynchronous.": 1, - "Currently": 1, - "detection": 2, - "synchronously": 1, - "isSynchronous": 2, - "//block": 12, - "execute": 4, - "startedBlock": 5, - "headers": 11, - "headersReceivedBlock": 5, - "completionBlock": 5, - "failureBlock": 5, - "bytesReceivedBlock": 8, - "bytesSentBlock": 5, - "downloadSizeIncrementedBlock": 5, - "uploadSizeIncrementedBlock": 5, - "handling": 4, - "dataReceivedBlock": 5, - "authenticationNeededBlock": 5, - "proxyAuthenticationNeededBlock": 5, - "redirections": 1, - "requestRedirectedBlock": 5, - "#pragma": 44, - "mark": 42, - "init": 34, - "dealloc": 13, - "initWithURL": 4, - "newURL": 16, - "requestWithURL": 7, - "usingCache": 5, - "andCachePolicy": 3, - "setStartedBlock": 1, - "aStartedBlock": 1, - "setHeadersReceivedBlock": 1, - "aReceivedBlock": 2, - "setCompletionBlock": 1, - "aCompletionBlock": 1, - "setFailedBlock": 1, - "aFailedBlock": 1, - "setBytesReceivedBlock": 1, - "aBytesReceivedBlock": 1, - "setBytesSentBlock": 1, - "aBytesSentBlock": 1, - "setDownloadSizeIncrementedBlock": 1, - "aDownloadSizeIncrementedBlock": 1, - "setUploadSizeIncrementedBlock": 1, - "anUploadSizeIncrementedBlock": 1, - "setDataReceivedBlock": 1, - "setAuthenticationNeededBlock": 1, - "anAuthenticationBlock": 1, - "setProxyAuthenticationNeededBlock": 1, - "aProxyAuthenticationBlock": 1, - "setRequestRedirectedBlock": 1, - "aRedirectBlock": 1, - "setup": 2, - "addRequestHeader": 5, - "applyCookieHeader": 2, - "buildRequestHeaders": 3, - "applyAuthorizationHeader": 2, - "buildPostBody": 3, - "appendPostData": 3, - "appendPostDataFromFile": 3, - "isResponseCompressed": 3, - "startSynchronous": 2, - "startAsynchronous": 2, - "clearDelegatesAndCancel": 2, - "HEADRequest": 1, - "upload/download": 1, - "updateProgressIndicators": 1, - "updateUploadProgress": 3, - "updateDownloadProgress": 3, - "removeUploadProgressSoFar": 1, - "incrementDownloadSizeBy": 1, - "incrementUploadSizeBy": 3, - "updateProgressIndicator": 4, - "withProgress": 4, - "ofTotal": 4, - "performSelector": 7, - "selector": 12, - "onTarget": 7, - "target": 5, - "withObject": 10, - "callerToRetain": 7, - "caller": 1, - "talking": 1, - "delegates": 2, - "requestReceivedResponseHeaders": 1, - "newHeaders": 1, - "failWithError": 11, - "theError": 6, - "retryUsingNewConnection": 1, - "parsing": 2, - "readResponseHeaders": 2, - "parseStringEncodingFromHeaders": 2, - "parseMimeType": 2, - "**": 27, - "mimeType": 2, - "andResponseEncoding": 2, - "stringEncoding": 1, - "fromContentType": 2, - "contentType": 1, - "stuff": 1, - "applyCredentials": 1, - "newCredentials": 16, - "applyProxyCredentials": 2, - "findCredentials": 1, - "findProxyCredentials": 2, - "retryUsingSuppliedCredentials": 1, - "cancelAuthentication": 1, - "attemptToApplyCredentialsAndResume": 1, - "attemptToApplyProxyCredentialsAndResume": 1, - "showProxyAuthenticationDialog": 1, - "showAuthenticationDialog": 1, - "addBasicAuthenticationHeaderWithUsername": 2, - "theUsername": 1, - "andPassword": 2, - "thePassword": 1, - "handlers": 1, - "handleNetworkEvent": 2, - "CFStreamEventType": 2, - "type": 5, - "handleBytesAvailable": 1, - "handleStreamComplete": 1, - "handleStreamError": 1, - "cleanup": 1, - "markAsFinished": 4, - "removeTemporaryDownloadFile": 1, - "removeTemporaryUncompressedDownloadFile": 1, - "removeTemporaryUploadFile": 1, - "removeTemporaryCompressedUploadFile": 1, - "removeFileAtPath": 1, - "err": 8, - "connectionID": 1, - "expirePersistentConnections": 1, - "defaultTimeOutSeconds": 3, - "setDefaultTimeOutSeconds": 1, - "newTimeOutSeconds": 1, - "client": 1, - "setClientCertificateIdentity": 1, - "anIdentity": 1, - "sessionProxyCredentialsStore": 1, - "sessionCredentialsStore": 1, - "storeProxyAuthenticationCredentialsInSessionStore": 1, - "storeAuthenticationCredentialsInSessionStore": 2, - "removeProxyAuthenticationCredentialsFromSessionStore": 1, - "removeAuthenticationCredentialsFromSessionStore": 3, - "findSessionProxyAuthenticationCredentials": 1, - "findSessionAuthenticationCredentials": 2, - "saveCredentialsToKeychain": 3, - "saveCredentials": 4, - "NSURLCredential": 8, - "forHost": 2, - "realm": 14, - "forProxy": 2, - "savedCredentialsForHost": 1, - "savedCredentialsForProxy": 1, - "removeCredentialsForHost": 1, - "removeCredentialsForProxy": 1, - "setSessionCookies": 1, - "newSessionCookies": 1, - "addSessionCookie": 1, - "NSHTTPCookie": 1, - "newCookie": 1, - "agent": 2, - "defaultUserAgentString": 1, - "setDefaultUserAgentString": 1, - "mime": 1, - "mimeTypeForFileAtPath": 1, - "bandwidth": 3, - "measurement": 1, - "throttling": 1, - "maxBandwidthPerSecond": 2, - "setMaxBandwidthPerSecond": 1, - "averageBandwidthUsedPerSecond": 2, - "performThrottling": 2, - "isBandwidthThrottled": 2, - "incrementBandwidthUsedInLastSecond": 1, - "setShouldThrottleBandwidthForWWAN": 1, - "throttle": 1, - "throttleBandwidthForWWANUsingLimit": 1, - "limit": 1, - "reachability": 1, - "isNetworkReachableViaWWAN": 1, - "queue": 12, - "NSOperationQueue": 4, - "sharedQueue": 4, - "defaultCache": 3, - "maxUploadReadLength": 1, - "activity": 1, - "isNetworkInUse": 1, - "setShouldUpdateNetworkActivityIndicator": 1, - "shouldUpdate": 1, - "showNetworkActivityIndicator": 1, - "hideNetworkActivityIndicator": 1, - "miscellany": 1, - "base64forData": 1, - "theData": 1, - "expiryDateForRequest": 1, - "maxAge": 2, - "dateFromRFC1123String": 1, - "isMultitaskingSupported": 2, - "threading": 1, - "NSThread": 4, - "threadForRequest": 3, - "@property": 150, - "retain": 73, - "*proxyHost": 1, - "assign": 84, - "proxyPort": 2, - "*proxyType": 1, - "setter": 2, - "setURL": 3, - "nonatomic": 40, - "readonly": 19, - "*authenticationRealm": 2, - "*requestHeaders": 1, - "*requestCredentials": 1, - "*rawResponseData": 1, - "*requestMethod": 1, - "*postBody": 1, - "*postBodyFilePath": 1, - "shouldStreamPostDataFromDisk": 4, - "didCreateTemporaryPostDataFile": 1, - "*authenticationScheme": 1, - "shouldPresentAuthenticationDialog": 1, - "authenticationRetryCount": 2, - "haveBuiltRequestHeaders": 1, - "inProgress": 4, - "numberOfTimesToRetryOnTimeout": 2, - "retryCount": 3, - "shouldAttemptPersistentConnection": 2, - "@end": 37, - "": 1, - "#else": 8, - "": 1, - "@": 258, - "static": 102, - "*defaultUserAgent": 1, - "*ASIHTTPRequestRunLoopMode": 1, - "CFOptionFlags": 1, - "kNetworkEvents": 1, - "kCFStreamEventHasBytesAvailable": 1, - "|": 13, - "kCFStreamEventEndEncountered": 1, - "kCFStreamEventErrorOccurred": 1, - "*sessionCredentialsStore": 1, - "*sessionProxyCredentialsStore": 1, - "*sessionCredentialsLock": 1, - "*sessionCookies": 1, - "RedirectionLimit": 1, - "ReadStreamClientCallBack": 1, - "CFReadStreamRef": 5, - "readStream": 5, - "*clientCallBackInfo": 1, - "ASIHTTPRequest*": 1, - "clientCallBackInfo": 1, - "*progressLock": 1, - "*ASIRequestCancelledError": 1, - "*ASIRequestTimedOutError": 1, - "*ASIAuthenticationError": 1, - "*ASIUnableToCreateRequestError": 1, - "*ASITooMuchRedirectionError": 1, - "*bandwidthUsageTracker": 1, - "nextConnectionNumberToCreate": 1, - "*persistentConnectionsPool": 1, - "*connectionsLock": 1, - "nextRequestID": 1, - "bandwidthUsedInLastSecond": 1, - "*bandwidthMeasurementDate": 1, - "NSLock": 2, - "*bandwidthThrottlingLock": 1, - "shouldThrottleBandwidthForWWANOnly": 1, - "*sessionCookiesLock": 1, - "*delegateAuthenticationLock": 1, - "*throttleWakeUpTime": 1, - "runningRequestCount": 1, - "shouldUpdateNetworkActivityIndicator": 1, - "*networkThread": 1, - "*sharedQueue": 1, - "cancelLoad": 3, - "destroyReadStream": 3, - "scheduleReadStream": 1, - "unscheduleReadStream": 1, - "willAskDelegateForCredentials": 1, - "willAskDelegateForProxyCredentials": 1, - "askDelegateForProxyCredentials": 1, - "askDelegateForCredentials": 1, - "failAuthentication": 1, - "measureBandwidthUsage": 1, - "recordBandwidthUsage": 1, - "startRequest": 3, - "updateStatus": 2, - "checkRequestStatus": 2, - "reportFailure": 3, - "reportFinished": 1, - "performRedirect": 1, - "shouldTimeOut": 2, - "willRedirect": 1, - "willAskDelegateToConfirmRedirect": 1, - "performInvocation": 2, - "NSInvocation": 4, - "invocation": 4, - "releasingObject": 2, - "objectToRelease": 1, - "hideNetworkActivityIndicatorAfterDelay": 1, - "hideNetworkActivityIndicatorIfNeeeded": 1, - "runRequests": 1, - "configureProxies": 2, - "fetchPACFile": 1, - "finishedDownloadingPACFile": 1, - "theRequest": 1, - "runPACScript": 1, - "script": 1, - "timeOutPACRead": 1, - "useDataFromCache": 2, - "updatePartialDownloadSize": 1, - "registerForNetworkReachabilityNotifications": 1, - "unsubscribeFromNetworkReachabilityNotifications": 1, - "reachabilityChanged": 1, - "NSNotification": 2, - "note": 1, - "performBlockOnMainThread": 2, - "block": 18, - "releaseBlocksOnMainThread": 4, - "releaseBlocks": 3, - "blocks": 16, - "callBlock": 1, - "*postBodyWriteStream": 1, - "*postBodyReadStream": 1, - "*compressedPostBody": 1, - "*compressedPostBodyFilePath": 1, - "willRetryRequest": 1, - "*readStream": 1, - "readStreamIsScheduled": 1, - "setSynchronous": 2, - "@implementation": 13, - "initialize": 1, - "class": 30, - "persistentConnectionsPool": 3, - "alloc": 47, - "connectionsLock": 3, - "progressLock": 1, - "bandwidthThrottlingLock": 1, - "sessionCookiesLock": 1, - "sessionCredentialsLock": 1, - "delegateAuthenticationLock": 1, - "bandwidthUsageTracker": 1, - "initWithCapacity": 2, - "ASIRequestTimedOutError": 1, - "initWithDomain": 5, - "dictionaryWithObjectsAndKeys": 10, - "NSLocalizedDescriptionKey": 10, - "ASIAuthenticationError": 1, - "ASIRequestCancelledError": 2, - "ASIUnableToCreateRequestError": 3, - "ASITooMuchRedirectionError": 1, - "setMaxConcurrentOperationCount": 1, - "setRequestMethod": 3, - "setRunLoopMode": 2, - "setShouldAttemptPersistentConnection": 2, - "setPersistentConnectionTimeoutSeconds": 2, - "setShouldPresentCredentialsBeforeChallenge": 1, - "setShouldRedirect": 1, - "setShowAccurateProgress": 1, - "setShouldResetDownloadProgress": 1, - "setShouldResetUploadProgress": 1, - "setAllowCompressedResponse": 1, - "setShouldWaitToInflateCompressedResponses": 1, - "setDefaultResponseEncoding": 1, - "setShouldPresentProxyAuthenticationDialog": 1, - "setTimeOutSeconds": 1, - "setUseSessionPersistence": 1, - "setUseCookiePersistence": 1, - "setValidatesSecureCertificate": 1, - "setRequestCookies": 2, - "autorelease": 21, - "setDidStartSelector": 1, - "@selector": 28, - "setDidReceiveResponseHeadersSelector": 1, - "setWillRedirectSelector": 1, - "willRedirectToURL": 1, - "setDidFinishSelector": 1, - "setDidFailSelector": 1, - "setDidReceiveDataSelector": 1, - "setCancelledLock": 1, - "setDownloadCache": 3, - "return": 165, - "ASIUseDefaultCachePolicy": 1, - "*request": 1, - "setCachePolicy": 1, - "setAuthenticationNeeded": 2, - "requestAuthentication": 7, - "CFRelease": 19, - "redirectURL": 1, - "release": 66, - "statusTimer": 3, - "invalidate": 2, - "postBody": 11, - "compressedPostBody": 4, - "requestHeaders": 6, - "requestCookies": 1, - "fileDownloadOutputStream": 1, - "inflatedFileDownloadOutputStream": 1, - "username": 8, - "domain": 2, - "authenticationRealm": 4, - "requestCredentials": 1, - "proxyHost": 2, - "proxyType": 1, - "proxyUsername": 3, - "proxyPassword": 3, - "proxyDomain": 1, - "proxyAuthenticationRealm": 2, - "proxyAuthenticationScheme": 2, - "proxyCredentials": 1, - "originalURL": 1, - "lastActivityTime": 1, - "responseCookies": 1, - "responseHeaders": 5, - "requestMethod": 13, - "cancelledLock": 37, - "postBodyFilePath": 7, - "compressedPostBodyFilePath": 4, - "postBodyWriteStream": 7, - "postBodyReadStream": 2, - "PACurl": 1, - "clientCertificates": 2, - "responseStatusMessage": 1, - "connectionInfo": 13, - "requestID": 2, - "dataDecompressor": 1, - "userAgentString": 1, - "super": 25, - "*blocks": 1, - "array": 84, - "addObject": 16, - "performSelectorOnMainThread": 2, - "waitUntilDone": 4, - "isMainThread": 2, - "Blocks": 1, - "exits": 1, - "setRequestHeaders": 2, - "dictionaryWithCapacity": 2, - "setObject": 9, - "forKey": 9, - "Are": 1, - "submitting": 1, - "disk": 1, - "were": 5, - "close": 5, - "setPostBodyWriteStream": 2, - "*path": 1, - "setCompressedPostBodyFilePath": 1, - "NSTemporaryDirectory": 2, - "stringByAppendingPathComponent": 2, - "NSProcessInfo": 2, - "processInfo": 2, - "globallyUniqueString": 2, - "*err": 3, - "ASIDataCompressor": 2, - "compressDataFromFile": 1, - "toFile": 1, - "&": 36, - "else": 35, - "setPostLength": 3, - "NSFileManager": 1, - "attributesOfItemAtPath": 1, - "fileSize": 1, - "errorWithDomain": 6, - "stringWithFormat": 6, - "Otherwise": 2, - "*compressedBody": 1, - "compressData": 1, - "setCompressedPostBody": 1, - "compressedBody": 1, - "isEqualToString": 13, - "||": 42, - "setHaveBuiltPostBody": 1, - "setupPostBody": 3, - "setPostBodyFilePath": 1, - "setDidCreateTemporaryPostDataFile": 1, - "initToFileAtPath": 1, - "append": 1, - "open": 2, - "setPostBody": 1, - "maxLength": 3, - "appendData": 2, - "*stream": 1, - "initWithFileAtPath": 1, - "NSUInteger": 93, - "bytesRead": 5, - "hasBytesAvailable": 1, - "char": 19, - "*256": 1, - "sizeof": 13, - "break": 13, - "dataWithBytes": 1, - "*m": 1, - "unlock": 20, - "m": 1, - "newRequestMethod": 3, - "*u": 1, - "u": 4, - "isEqual": 4, - "NULL": 152, - "setRedirectURL": 2, - "d": 11, - "setDelegate": 4, - "newDelegate": 6, - "q": 2, - "setQueue": 2, - "newQueue": 3, - "cancelOnRequestThread": 2, - "DEBUG_REQUEST_STATUS": 4, - "ASI_DEBUG_LOG": 11, - "isCancelled": 6, - "setComplete": 3, - "CFRetain": 4, - "willChangeValueForKey": 1, - "didChangeValueForKey": 1, - "onThread": 2, - "Clear": 3, - "setDownloadProgressDelegate": 2, - "setUploadProgressDelegate": 2, - "initWithBytes": 1, - "*encoding": 1, - "rangeOfString": 1, - ".location": 1, - "NSNotFound": 1, - "uncompressData": 1, - "DEBUG_THROTTLING": 2, - "setInProgress": 3, - "NSRunLoop": 2, - "currentRunLoop": 2, - "runMode": 1, - "runLoopMode": 2, - "beforeDate": 1, - "distantFuture": 1, - "start": 3, - "addOperation": 1, - "concurrency": 1, - "isConcurrent": 1, - "isFinished": 1, - "isExecuting": 1, - "logic": 1, - "@try": 1, - "UIBackgroundTaskInvalid": 3, - "UIApplication": 2, - "sharedApplication": 2, - "beginBackgroundTaskWithExpirationHandler": 1, - "dispatch_async": 1, - "dispatch_get_main_queue": 1, - "endBackgroundTask": 1, - "generated": 3, - "ASINetworkQueue": 4, - "already.": 1, - "proceed.": 1, - "setDidUseCachedResponse": 1, - "Must": 1, - "call": 8, - "create": 1, - "needs": 1, - "mainRequest": 9, - "ll": 6, - "already": 4, - "CFHTTPMessageRef": 3, - "Create": 1, - "request.": 1, - "CFHTTPMessageCreateRequest": 1, - "kCFAllocatorDefault": 3, - "CFStringRef": 1, - "CFURLRef": 1, - "kCFHTTPVersion1_0": 1, - "kCFHTTPVersion1_1": 1, - "//If": 2, - "let": 8, - "generate": 1, - "its": 9, - "Even": 1, - "chance": 2, - "add": 5, - "ASIS3Request": 1, - "does": 3, - "process": 1, - "@catch": 1, - "NSException": 19, - "*exception": 1, - "*underlyingError": 1, - "exception": 3, - "name": 7, - "reason": 1, - "NSLocalizedFailureReasonErrorKey": 1, - "underlyingError": 1, - "@finally": 1, - "Do": 3, - "DEBUG_HTTP_AUTHENTICATION": 4, - "*credentials": 1, - "auth": 2, - "basic": 3, - "any": 3, - "cached": 2, - "key": 32, - "challenge": 1, - "apply": 2, - "like": 1, - "CFHTTPMessageApplyCredentialDictionary": 2, - "CFDictionaryRef": 1, - "setAuthenticationScheme": 1, - "happens": 4, - "%": 30, - "re": 9, - "retrying": 1, - "our": 6, - "measure": 1, - "throttled": 1, - "setPostBodyReadStream": 2, - "ASIInputStream": 2, - "inputStreamWithData": 2, - "setReadStream": 2, - "NSMakeCollectable": 3, - "CFReadStreamCreateForStreamedHTTPRequest": 1, - "CFReadStreamCreateForHTTPRequest": 1, - "lowercaseString": 1, - "*sslProperties": 2, - "initWithObjectsAndKeys": 1, - "numberWithBool": 3, - "kCFStreamSSLAllowsExpiredCertificates": 1, - "kCFStreamSSLAllowsAnyRoot": 1, - "kCFStreamSSLValidatesCertificateChain": 1, - "kCFNull": 1, - "kCFStreamSSLPeerName": 1, - "CFReadStreamSetProperty": 1, - "kCFStreamPropertySSLSettings": 1, - "CFTypeRef": 1, - "sslProperties": 2, - "*certificates": 1, - "arrayWithCapacity": 2, - "count": 99, - "*oldStream": 1, - "redirecting": 2, - "connecting": 2, - "intValue": 4, - "setConnectionInfo": 2, - "Check": 1, - "expired": 1, - "timeIntervalSinceNow": 1, - "<": 56, - "DEBUG_PERSISTENT_CONNECTIONS": 3, - "removeObject": 2, - "//Some": 1, - "previously": 1, - "there": 1, - "one": 1, - "We": 7, - "just": 4, - "old": 5, - "//lists.apple.com/archives/Macnetworkprog/2006/Mar/msg00119.html": 1, - "oldStream": 4, - "streamSuccessfullyOpened": 1, - "setConnectionCanBeReused": 2, - "Record": 1, - "started": 1, - "nothing": 2, - "setLastActivityTime": 1, - "setStatusTimer": 2, - "timerWithTimeInterval": 1, - "repeats": 1, - "addTimer": 1, - "forMode": 1, - "here": 2, - "safely": 1, - "***Black": 1, - "magic": 1, - "warning***": 1, - "reliable": 1, - "way": 1, - "track": 1, - "strong": 4, - "slow.": 1, - "secondsSinceLastActivity": 1, - "*1.5": 1, - "updating": 1, - "checking": 1, - "told": 1, - "us": 2, - "auto": 2, - "resuming": 1, - "Range": 1, - "take": 1, - "account": 1, - "perhaps": 1, - "setTotalBytesSent": 1, - "CFReadStreamCopyProperty": 2, - "kCFStreamPropertyHTTPRequestBytesWrittenCount": 1, - "unsignedLongLongValue": 1, - "middle": 1, - "said": 1, - "might": 4, - "MaxValue": 2, - "UIProgressView": 2, - "double": 3, - "max": 7, - "setMaxValue": 2, - "examined": 1, - "since": 1, - "authenticate": 1, - "bytesReadSoFar": 3, - "setUpdatedProgress": 1, - "didReceiveBytes": 2, - "totalSize": 2, - "setLastBytesRead": 1, - "pass": 5, - "pointer": 2, - "directly": 1, - "itself": 1, - "setArgument": 4, - "atIndex": 6, - "argumentNumber": 1, - "callback": 3, - "NSMethodSignature": 1, - "*cbSignature": 1, - "methodSignatureForSelector": 1, - "*cbInvocation": 1, - "invocationWithMethodSignature": 1, - "cbSignature": 1, - "cbInvocation": 5, - "setSelector": 1, - "setTarget": 1, - "forget": 2, - "know": 3, - "removeObjectForKey": 1, - "dateWithTimeIntervalSinceNow": 1, - "ignore": 1, - "ASIFallbackToCacheIfLoadFailsCachePolicy": 2, - "canUseCachedDataForRequest": 1, - "setError": 2, - "*failedRequest": 1, - "compatible": 1, - "fail": 1, - "failedRequest": 4, - "message": 2, - "kCFStreamPropertyHTTPResponseHeader": 1, - "Make": 1, - "sure": 1, - "tells": 1, - "keepAliveHeader": 2, - "NSScanner": 2, - "*scanner": 1, - "scannerWithString": 1, - "scanner": 5, - "scanString": 2, - "intoString": 3, - "scanInt": 2, - "scanUpToString": 1, - "what": 3, - "hard": 1, - "throw": 1, - "away.": 1, - "*userAgentHeader": 1, - "*acceptHeader": 1, - "userAgentHeader": 2, - "acceptHeader": 2, - "setHaveBuiltRequestHeaders": 1, - "Force": 2, - "rebuild": 2, - "cookie": 1, - "incase": 1, - "got": 1, - "some": 1, - "remain": 1, - "ones": 3, - "URLWithString": 1, - "valueForKey": 2, - "relativeToURL": 1, - "absoluteURL": 1, - "setNeedsRedirect": 1, - "means": 1, - "manually": 1, - "added": 5, - "those": 1, - "global": 1, - "But": 1, - "safest": 1, - "option": 1, - "responseCode": 1, - "Handle": 1, - "*mimeType": 1, - "setResponseEncoding": 2, - "saveProxyCredentialsToKeychain": 1, - "*authenticationCredentials": 2, - "credentialWithUser": 2, - "kCFHTTPAuthenticationUsername": 2, - "kCFHTTPAuthenticationPassword": 2, - "persistence": 2, - "NSURLCredentialPersistencePermanent": 2, - "authenticationCredentials": 4, - "setProxyAuthenticationRetryCount": 1, - "Apply": 1, - "whatever": 1, - "ok": 1, - "CFMutableDictionaryRef": 1, - "*sessionCredentials": 1, - "dictionary": 64, - "sessionCredentials": 6, - "setRequestCredentials": 1, - "*newCredentials": 1, - "*user": 1, - "*pass": 1, - "*theRequest": 1, - "try": 3, - "connect": 1, - "website": 1, - "kCFHTTPAuthenticationSchemeNTLM": 1, - "Ok": 1, - "extract": 1, - "NSArray*": 1, - "ntlmComponents": 1, - "componentsSeparatedByString": 1, - "AUTH": 6, - "Request": 6, - "parent": 1, - "properties": 1, - "ASIAuthenticationDialog": 2, - "had": 1, - "Foo": 2, - "NSObject": 5, "": 2, + "@interface": 23, "FooAppDelegate": 2, + "NSObject": 5, "": 1, + "{": 541, "@private": 2, "NSWindow": 2, "*window": 2, + ";": 2003, + "}": 532, + "@property": 150, + "(": 2109, + "assign": 84, + ")": 2106, "IBOutlet": 1, - "@synthesize": 7, - "window": 1, - "applicationDidFinishLaunching": 1, - "aNotification": 1, - "argc": 1, - "*argv": 1, - "NSLog": 4, - "#include": 18, - "": 1, - "": 2, - "": 2, - "": 1, - "": 1, - "#ifdef": 10, - "__OBJC__": 4, - "": 2, - "": 2, - "": 2, - "": 1, - "": 2, - "": 1, - "__cplusplus": 2, - "NSINTEGER_DEFINED": 3, - "defined": 16, - "__LP64__": 4, - "NS_BUILD_32_LIKE_64": 3, - "NSIntegerMin": 3, - "LONG_MIN": 3, - "NSIntegerMax": 4, - "LONG_MAX": 3, - "NSUIntegerMax": 7, - "ULONG_MAX": 3, - "INT_MIN": 3, - "INT_MAX": 2, - "UINT_MAX": 3, - "_JSONKIT_H_": 3, - "__GNUC__": 14, - "__APPLE_CC__": 2, - "JK_DEPRECATED_ATTRIBUTE": 6, - "__attribute__": 3, - "deprecated": 1, - "JSONKIT_VERSION_MAJOR": 1, - "JSONKIT_VERSION_MINOR": 1, - "JKFlags": 5, - "JKParseOptionNone": 1, - "JKParseOptionStrict": 1, - "JKParseOptionComments": 2, - "<<": 16, - "JKParseOptionUnicodeNewlines": 2, - "JKParseOptionLooseUnicode": 2, - "JKParseOptionPermitTextAfterValidJSON": 2, - "JKParseOptionValidFlags": 1, - "JKParseOptionFlags": 12, - "JKSerializeOptionNone": 3, - "JKSerializeOptionPretty": 2, - "JKSerializeOptionEscapeUnicode": 2, - "JKSerializeOptionEscapeForwardSlashes": 2, - "JKSerializeOptionValidFlags": 1, - "JKSerializeOptionFlags": 16, + "@end": 37, + "//": 317, + "MainMenuViewController": 2, + "TTTableViewController": 1, + "typedef": 47, + "enum": 17, + "TUITableViewStylePlain": 2, + "regular": 1, + "table": 7, + "view": 11, + "TUITableViewStyleGrouped": 1, + "grouped": 1, + "headers": 11, + "stick": 1, + "to": 115, + "the": 197, + "top": 8, + "of": 34, + "and": 44, + "scroll": 3, + "with": 19, + "it": 28, + "TUITableViewStyle": 4, + "TUITableViewScrollPositionNone": 2, + "TUITableViewScrollPositionTop": 2, + "TUITableViewScrollPositionMiddle": 1, + "TUITableViewScrollPositionBottom": 1, + "TUITableViewScrollPositionToVisible": 3, + "currently": 4, + "only": 12, + "supported": 1, + "arg": 11, + "TUITableViewScrollPosition": 5, + "TUITableViewInsertionMethodBeforeIndex": 1, + "NSOrderedAscending": 4, + "TUITableViewInsertionMethodAtIndex": 1, + "NSOrderedSame": 1, + "TUITableViewInsertionMethodAfterIndex": 1, + "NSOrderedDescending": 4, + "TUITableViewInsertionMethod": 3, + "@class": 4, + "TUITableViewCell": 23, + "@protocol": 3, + "TUITableViewDataSource": 2, + "TUITableView": 25, + "TUITableViewDelegate": 1, + "": 1, + "TUIScrollViewDelegate": 1, + "-": 595, + "CGFloat": 44, + "tableView": 45, + "*": 311, + "heightForRowAtIndexPath": 2, + "TUIFastIndexPath": 89, + "indexPath": 47, + "@optional": 2, + "void": 253, + "willDisplayCell": 2, + "cell": 21, + "forRowAtIndexPath": 2, + "called": 3, + "after": 5, + "s": 35, + "added": 5, + "as": 17, + "a": 78, + "subview": 1, + "didSelectRowAtIndexPath": 3, + "happens": 4, + "on": 26, + "left/right": 2, + "mouse": 2, + "down": 1, + "key": 32, + "up/down": 1, + "didDeselectRowAtIndexPath": 3, + "didClickRowAtIndexPath": 1, + "withEvent": 2, + "NSEvent": 3, + "event": 8, + "up": 4, + "can": 20, + "look": 1, + "at": 10, + "clickCount": 1, + "BOOL": 137, + "TUITableView*": 1, + "shouldSelectRowAtIndexPath": 3, + "TUIFastIndexPath*": 1, + "forEvent": 3, + "NSEvent*": 1, + "YES": 62, + "if": 297, + "not": 29, + "implemented": 7, + "NSMenu": 1, + "menuForRowAtIndexPath": 1, + "tableViewWillReloadData": 3, + "tableViewDidReloadData": 3, + "targetIndexPathForMoveFromRowAtIndexPath": 1, + "fromPath": 1, + "toProposedIndexPath": 1, + "proposedPath": 1, + "TUIScrollView": 1, + "_style": 8, + "__unsafe_unretained": 2, + "id": 170, + "": 4, + "_dataSource": 6, + "weak": 2, + "NSArray": 27, + "_sectionInfo": 27, + "TUIView": 17, + "_pullDownView": 4, + "_headerView": 8, + "CGSize": 5, + "_lastSize": 1, + "_contentHeight": 7, + "NSMutableIndexSet": 6, + "_visibleSectionHeaders": 6, + "NSMutableDictionary": 18, + "_visibleItems": 14, + "_reusableTableCells": 5, + "_selectedIndexPath": 9, + "_indexPathShouldBeFirstResponder": 2, + "NSInteger": 56, + "_futureMakeFirstResponderToken": 2, + "_keepVisibleIndexPathForReload": 2, + "_relativeOffsetForReload": 2, + "drag": 1, + "reorder": 1, + "state": 35, + "_dragToReorderCell": 5, + "CGPoint": 7, + "_currentDragToReorderLocation": 1, + "_currentDragToReorderMouseOffset": 1, + "_currentDragToReorderIndexPath": 1, + "_currentDragToReorderInsertionMethod": 1, + "_previousDragToReorderIndexPath": 1, + "_previousDragToReorderInsertionMethod": 1, "struct": 20, - "JKParseState": 18, - "Opaque": 1, - "private": 1, - "type.": 3, - "JSONDecoder": 2, - "*parseState": 16, - "decoder": 1, - "decoderWithParseOptions": 1, - "parseOptionFlags": 11, - "initWithParseOptions": 1, - "clearCache": 1, - "parseUTF8String": 2, - "size_t": 23, - "Deprecated": 4, - "JSONKit": 11, - "v1.4.": 4, - "objectWithUTF8String": 4, - "instead.": 4, - "parseJSONData": 2, - "jsonData": 6, + "unsigned": 62, + "int": 55, + "animateSelectionChanges": 3, + "forceSaveScrollPosition": 1, + "derepeaterEnabled": 1, + "layoutSubviewsReentrancyGuard": 1, + "didFirstLayout": 1, + "dataSourceNumberOfSectionsInTableView": 1, + "delegateTableViewWillDisplayCellForRowAtIndexPath": 1, + "maintainContentOffsetAfterReload": 3, + "_tableFlags": 1, + "initWithFrame": 12, + "CGRect": 41, + "frame": 38, + "style": 29, + "must": 6, + "specify": 2, + "creation.": 1, + "calls": 1, + "this": 50, + "UITableViewStylePlain": 1, + "nonatomic": 40, + "unsafe_unretained": 2, + "dataSource": 2, + "": 4, + "delegate": 29, + "readwrite": 1, + "reloadData": 3, + "reloadDataMaintainingVisibleIndexPath": 2, + "relativeOffset": 5, + "reloadLayout": 2, + "numberOfSections": 10, + "numberOfRowsInSection": 9, + "section": 60, + "rectForHeaderOfSection": 4, + "rectForSection": 3, + "rectForRowAtIndexPath": 7, + "NSIndexSet": 4, + "indexesOfSectionsInRect": 2, + "rect": 10, + "indexesOfSectionHeadersInRect": 2, + "indexPathForCell": 2, + "returns": 4, + "nil": 131, + "is": 77, + "visible": 16, + "indexPathsForRowsInRect": 3, + "valid": 5, + "indexPathForRowAtPoint": 2, + "point": 11, + "indexPathForRowAtVerticalOffset": 2, + "offset": 23, + "indexOfSectionWithHeaderAtPoint": 2, + "indexOfSectionWithHeaderAtVerticalOffset": 2, + "enumerateIndexPathsUsingBlock": 2, + "*indexPath": 11, + "*stop": 7, + "block": 18, + "enumerateIndexPathsWithOptions": 2, + "NSEnumerationOptions": 4, + "options": 6, + "usingBlock": 6, + "enumerateIndexPathsFromIndexPath": 4, + "fromIndexPath": 6, + "toIndexPath": 12, + "withOptions": 4, + "headerViewForSection": 6, + "cellForRowAtIndexPath": 9, + "or": 18, + "index": 11, + "path": 11, + "out": 7, + "range": 8, + "visibleCells": 3, + "no": 7, + "particular": 2, + "order": 1, + "sortedVisibleCells": 2, + "bottom": 6, + "indexPathsForVisibleRows": 2, + "scrollToRowAtIndexPath": 3, + "atScrollPosition": 3, + "scrollPosition": 9, + "animated": 27, + "indexPathForSelectedRow": 4, + "return": 165, + "representing": 1, + "row": 36, + "selection.": 1, + "indexPathForFirstRow": 2, + "indexPathForLastRow": 2, + "selectRowAtIndexPath": 3, + "deselectRowAtIndexPath": 3, + "strong": 4, + "*pullDownView": 1, + "pullDownViewIsVisible": 3, + "*headerView": 6, + "dequeueReusableCellWithIdentifier": 2, + "NSString": 127, + "identifier": 7, + "": 1, + "@required": 1, + "canMoveRowAtIndexPath": 2, + "moveRowAtIndexPath": 2, + "numberOfSectionsInTableView": 3, + "NSIndexPath": 5, + "+": 195, + "indexPathForRow": 11, + "NSUInteger": 93, + "inSection": 11, + "readonly": 19, + "NSString*": 13, + "kTextStyleType": 2, + "@": 258, + "kViewStyleType": 2, + "kImageStyleType": 2, + "///////////////////////////////////////////////////////////////////////////////////////////////////": 24, + "@implementation": 13, + "StyleViewController": 2, + "initWithStyleName": 1, + "name": 7, + "styleType": 3, + "self": 500, + "[": 1227, + "super": 25, + "initWithNibName": 3, + "bundle": 3, + "]": 1227, + "self.title": 2, + "TTStyleSheet": 4, + "globalStyleSheet": 4, + "styleWithSelector": 4, + "retain": 73, + "_styleHighlight": 6, + "forState": 4, + "UIControlStateHighlighted": 1, + "_styleDisabled": 6, + "UIControlStateDisabled": 1, + "_styleSelected": 6, + "UIControlStateSelected": 1, + "_styleType": 6, + "copy": 4, + "dealloc": 13, + "TT_RELEASE_SAFELY": 12, + "#pragma": 44, + "mark": 42, + "UIViewController": 2, + "addTextView": 5, + "title": 2, + "TTStyle*": 7, + "textFrame": 3, + "TTRectInset": 3, + "UIEdgeInsetsMake": 3, + "StyleView*": 2, + "text": 12, + "StyleView": 2, + "alloc": 47, + "text.text": 1, + "TTStyleContext*": 1, + "context": 4, + "TTStyleContext": 1, + "init": 34, + "context.frame": 1, + "context.delegate": 1, + "context.font": 1, + "UIFont": 3, + "systemFontOfSize": 2, + "systemFontSize": 1, + "size": 12, + "addToSize": 1, + "CGSizeZero": 1, + "size.width": 1, + "size.height": 1, + "textFrame.size": 1, + "text.frame": 1, + "text.style": 1, + "text.backgroundColor": 1, + "UIColor": 3, + "colorWithRed": 3, + "green": 3, + "blue": 3, + "alpha": 3, + "text.autoresizingMask": 1, + "UIViewAutoresizingFlexibleWidth": 4, + "|": 13, + "UIViewAutoresizingFlexibleBottomMargin": 3, + "self.view": 4, + "addSubview": 8, + "addView": 5, + "viewFrame": 4, + "view.style": 2, + "view.backgroundColor": 2, + "view.autoresizingMask": 2, + "addImageView": 5, + "TTImageView*": 1, + "TTImageView": 1, + "view.urlPath": 1, + "imageFrame": 2, + "view.frame": 2, + "imageFrame.size": 1, + "view.image.size": 1, + "loadView": 4, + "self.view.bounds": 2, + "frame.size.height": 15, + "/": 18, + "isEqualToString": 13, + "frame.origin.y": 16, + "else": 35, + "Foo": 2, + "": 4, + "SBJsonParser": 2, + "maxDepth": 2, + "*error": 3, "objectWithData": 7, - "mutableObjectWithUTF8String": 2, - "mutableObjectWithData": 2, - "////////////": 4, - "Deserializing": 1, - "methods": 2, - "JSONKitDeserializing": 2, - "objectFromJSONString": 1, - "objectFromJSONStringWithParseOptions": 2, - "mutableObjectFromJSONString": 1, - "mutableObjectFromJSONStringWithParseOptions": 2, - "objectFromJSONData": 1, - "objectFromJSONDataWithParseOptions": 2, - "mutableObjectFromJSONData": 1, - "mutableObjectFromJSONDataWithParseOptions": 2, - "Serializing": 1, - "JSONKitSerializing": 3, - "JSONData": 3, - "Invokes": 2, - "JSONDataWithOptions": 8, - "includeQuotes": 6, - "serializeOptions": 14, - "JSONString": 3, - "JSONStringWithOptions": 8, - "serializeUnsupportedClassesUsingDelegate": 4, - "__BLOCKS__": 1, - "JSONKitSerializingBlockAdditions": 2, - "serializeUnsupportedClassesUsingBlock": 4, + "NSData*": 1, + "data": 27, + "objectWithString": 5, + "repr": 5, + "jsonText": 1, + "error": 75, + "NSError**": 2, + "nibNameOrNil": 1, + "NSBundle": 1, + "nibBundleOrNil": 1, + "//self.variableHeightRows": 1, + "self.tableViewStyle": 1, + "UITableViewStyleGrouped": 1, + "self.dataSource": 1, + "TTSectionedDataSource": 1, + "dataSourceWithObjects": 1, + "TTTableTextItem": 48, + "itemWithText": 48, + "URL": 48, + "@synthesize": 7, + "self.maxDepth": 2, + "u": 4, + "Methods": 1, + "NSData": 28, + "self.error": 3, + "SBJsonStreamParserAccumulator": 2, + "*accumulator": 1, + "SBJsonStreamParserAdapter": 2, + "*adapter": 1, + "adapter.delegate": 1, + "accumulator": 1, + "SBJsonStreamParser": 2, + "*parser": 1, + "parser.maxDepth": 1, + "parser.delegate": 1, + "adapter": 1, + "switch": 3, + "parser": 3, + "parse": 1, + "case": 8, + "SBJsonStreamParserComplete": 1, + "accumulator.value": 1, + "break": 13, + "SBJsonStreamParserWaitingForData": 1, + "SBJsonStreamParserError": 1, + "parser.error": 1, + "dataUsingEncoding": 2, + "NSUTF8StringEncoding": 2, + "error_": 2, + "tmp": 3, + "NSDictionary": 37, + "*ui": 1, + "dictionaryWithObjectsAndKeys": 10, + "NSLocalizedDescriptionKey": 10, + "*error_": 1, + "NSError": 51, + "errorWithDomain": 6, + "code": 16, + "userInfo": 15, + "ui": 1, + "PlaygroundViewController": 2, + "UIScrollView*": 1, + "_scrollView": 9, + "": 1, + "static": 102, + "const": 28, + "kFramePadding": 7, + "kElementSpacing": 3, + "kGroupSpacing": 5, + "addHeader": 5, + "yOffset": 42, + "UILabel*": 2, + "label": 6, + "UILabel": 2, + "CGRectZero": 5, + "label.text": 2, + "label.font": 3, + "label.numberOfLines": 2, + "label.frame": 4, + "frame.origin.x": 3, + "frame.size.width": 4, + "sizeWithFont": 2, + "constrainedToSize": 2, + "CGSizeMake": 3, + ".height": 4, + "label.frame.size.height": 2, + "addText": 5, + "UIScrollView": 1, + "_scrollView.autoresizingMask": 1, + "UIViewAutoresizingFlexibleHeight": 1, + "NSLocalizedString": 9, + "UIButton*": 1, + "button": 5, + "UIButton": 1, + "buttonWithType": 1, + "UIButtonTypeRoundedRect": 1, + "setTitle": 1, + "UIControlStateNormal": 1, + "addTarget": 1, + "action": 1, + "@selector": 28, + "debugTestAction": 2, + "forControlEvents": 1, + "UIControlEventTouchUpInside": 1, + "sizeToFit": 1, + "button.frame": 2, + "stringWithFormat": 6, + "TTCurrentLocale": 2, + "displayNameForKey": 1, + "NSLocaleIdentifier": 1, + "value": 21, + "localeIdentifier": 1, + "TTPathForBundleResource": 1, + "TTPathForDocumentsResource": 1, + "md5Hash": 1, + "setContentSize": 1, + "viewDidUnload": 2, + "viewDidAppear": 2, + "flashScrollIndicators": 1, + "#ifdef": 10, + "DEBUG": 1, + "NSLog": 4, + "#else": 8, + "#endif": 59, + "TTDPRINTMETHODNAME": 1, + "TTDPRINT": 9, + "TTMAXLOGLEVEL": 1, + "TTDERROR": 1, + "TTLOGLEVEL_ERROR": 1, + "TTDWARNING": 1, + "TTLOGLEVEL_WARNING": 1, + "TTDINFO": 1, + "TTLOGLEVEL_INFO": 1, + "TTDCONDITIONLOG": 3, + "true": 9, + "false": 3, + "rand": 1, + "%": 30, + "TTDASSERT": 2, + "#include": 18, + "": 2, "": 1, + "": 2, "": 1, "": 1, "": 1, "": 1, + "": 2, "": 1, "//#include": 1, "": 1, @@ -47021,29 +46168,44 @@ "": 1, "": 1, "//#import": 1, + "": 2, "": 1, + "": 2, + "": 2, "": 1, "": 1, + "": 2, + "#ifndef": 9, "__has_feature": 3, + "#define": 65, + "x": 10, "JK_ENABLE_CF_TRANSFER_OWNERSHIP_CALLBACKS": 2, "#warning": 1, "As": 1, + "JSONKit": 11, "v1.4": 1, "longer": 2, "required.": 1, + "It": 2, "option.": 1, "__OBJC_GC__": 1, "#error": 6, + "does": 3, + "support": 4, "Objective": 2, "C": 6, "Garbage": 1, "Collection": 1, + "#if": 41, "objc_arc": 1, "Automatic": 1, "Reference": 1, "Counting": 1, "ARC": 1, + "UINT_MAX": 3, "xffffffffU": 1, + "||": 42, + "INT_MIN": 3, "fffffff": 1, "ULLONG_MAX": 1, "xffffffffffffffffULL": 1, @@ -47052,12 +46214,25 @@ "LL": 1, "requires": 4, "types": 2, + "be": 49, "bits": 1, "respectively.": 1, + "defined": 16, + "__LP64__": 4, + "&&": 123, + "ULONG_MAX": 3, + "INT_MAX": 2, + "LONG_MAX": 3, + "LONG_MIN": 3, "WORD_BIT": 1, "LONG_BIT": 1, + "same": 6, "bit": 1, "architectures.": 1, + "NSUIntegerMax": 7, + "NSIntegerMax": 4, + "NSIntegerMin": 3, + "type.": 3, "SIZE_MAX": 1, "SSIZE_MAX": 1, "JK_HASH_INIT": 1, @@ -47065,6 +46240,7 @@ "JK_FAST_TRAILING_BYTES": 2, "JK_CACHE_SLOTS_BITS": 2, "JK_CACHE_SLOTS": 1, + "<<": 16, "JK_CACHE_PROBES": 1, "JK_INIT_CACHE_AGE": 1, "JK_TOKENBUFFER_SIZE": 1, @@ -47072,14 +46248,17 @@ "JK_JSONBUFFER_SIZE": 1, "JK_UTF8BUFFER_SIZE": 1, "JK_ENCODE_CACHE_SLOTS": 1, + "__GNUC__": 14, "JK_ATTRIBUTES": 15, "attr": 3, "...": 11, + "__attribute__": 3, "##__VA_ARGS__": 7, "JK_EXPECTED": 4, "cond": 12, "expect": 3, "__builtin_expect": 1, + "long": 71, "JK_EXPECT_T": 22, "U": 2, "JK_EXPECT_F": 14, @@ -47090,7 +46269,6 @@ "__inline__": 1, "always_inline": 1, "JK_ALIGNED": 1, - "arg": 11, "aligned": 1, "JK_UNUSED_ARG": 2, "unused": 3, @@ -47157,6 +46335,7 @@ "JKManagedBufferLocationMask": 1, "JKManagedBufferLocationShift": 1, "JKManagedBufferMustFree": 1, + "JKFlags": 5, "JKManagedBufferFlags": 1, "JKObjectStackOnStack": 1, "JKObjectStackOnHeap": 1, @@ -47209,10 +46388,14 @@ "JKObjCImpCache": 2, "JKHashTableEntry": 21, "serializeObject": 1, - "options": 6, + "object": 36, + "JKSerializeOptionFlags": 16, "optionFlags": 1, "encodeOption": 2, "JKSERIALIZER_BLOCKS_PROTO": 1, + "selector": 12, + "SEL": 19, + "**": 27, "releaseState": 1, "keyHash": 21, "uint32_t": 1, @@ -47242,6 +46425,7 @@ "xDC00": 1, "UNI_SUR_LOW_END": 1, "xDFFF": 1, + "char": 19, "trailingBytesForUTF8": 1, "offsetsFromUTF8": 1, "E2080UL": 1, @@ -47254,11 +46438,14 @@ "xF8": 1, "xFC": 1, "JK_AT_STRING_PTR": 1, + "&": 36, "stringBuffer.bytes.ptr": 2, + "atIndex": 6, "JK_END_STRING_PTR": 1, "stringBuffer.bytes.length": 1, "*_JKArrayCreate": 2, "*objects": 5, + "count": 99, "mutableCollection": 7, "_JKArrayInsertObjectAtIndex": 3, "*array": 9, @@ -47280,14 +46467,19 @@ "*_JKDictionaryHashTableEntryForKey": 2, "aKey": 13, "_JSONDecoderCleanup": 1, + "JSONDecoder": 2, "*decoder": 1, "_NSStringObjectFromJSONString": 1, "*jsonString": 1, + "JKParseOptionFlags": 12, + "parseOptionFlags": 11, "**error": 1, "jk_managedBuffer_release": 1, "*managedBuffer": 3, "jk_managedBuffer_setToStackBuffer": 1, "*ptr": 2, + "size_t": 23, + "length": 32, "*jk_managedBuffer_resize": 1, "newSize": 1, "jk_objectStack_release": 1, @@ -47300,6 +46492,8 @@ "jk_objectStack_resize": 1, "newCount": 1, "jk_error": 1, + "JKParseState": 18, + "*parseState": 16, "*format": 7, "jk_parse_string": 1, "jk_parse_number": 1, @@ -47320,6 +46514,7 @@ "*jk_cachedObjects": 1, "jk_cache_age": 1, "jk_set_parsed_token": 1, + "type": 5, "advanceBy": 1, "jk_encode_error": 1, "*encodeState": 9, @@ -47350,6 +46545,7 @@ "c": 7, "Class": 3, "_JKArrayClass": 5, + "NULL": 152, "_JKArrayInstanceSize": 4, "_JKDictionaryClass": 5, "_JKDictionaryInstanceSize": 4, @@ -47358,24 +46554,33 @@ "_jk_NSNumberAllocImp": 2, "NSNumberInitWithUnsignedLongLongImp": 2, "_jk_NSNumberInitWithUnsignedLongLongImp": 2, + "extern": 6, "jk_collectionClassLoadTimeInitialization": 2, "constructor": 1, "NSAutoreleasePool": 2, "*pool": 1, "Though": 1, "technically": 1, + "required": 2, "run": 1, + "time": 9, "environment": 1, "load": 1, "initialization": 1, + "may": 8, "less": 1, + "than": 9, "ideal.": 1, "objc_getClass": 2, "class_getInstanceSize": 2, + "NSNumber": 11, + "class": 30, "methodForSelector": 2, "temp_NSNumber": 4, "initWithUnsignedLongLong": 1, + "release": 66, "pool": 2, + "NSMutableArray": 31, "": 2, "NSMutableCopying": 2, "NSFastEnumeration": 2, @@ -47384,6 +46589,7 @@ "allocWithZone": 4, "NSZone": 4, "zone": 8, + "NSException": 19, "raise": 18, "NSInvalidArgumentException": 6, "format": 18, @@ -47392,27 +46598,34 @@ "_cmd": 16, "NSCParameterAssert": 19, "objects": 58, + "array": 84, "calloc": 5, "Directly": 2, "allocate": 2, "instance": 2, + "via": 5, "calloc.": 2, "isa": 2, "malloc": 1, + "sizeof": 13, + "autorelease": 21, "memcpy": 2, + "NO": 30, "<=>": 15, "*newObjects": 1, "newObjects": 2, "realloc": 1, "NSMallocException": 2, "memset": 1, + "<": 56, "memmove": 2, + "CFRelease": 19, "atObject": 12, + "for": 99, "free": 4, "NSParameterAssert": 15, "getObjects": 2, "objectsPtr": 3, - "range": 8, "NSRange": 1, "NSMaxRange": 4, "NSRangeException": 6, @@ -47426,6 +46639,7 @@ "mutationsPtr": 2, "itemsPtr": 2, "enumeratedCount": 8, + "while": 11, "insertObject": 1, "anObject": 16, "NSInternalInconsistencyException": 4, @@ -47437,6 +46651,7 @@ "#19.": 2, "removeObjectAtIndex": 1, "replaceObjectAtIndex": 1, + "withObject": 10, "copyWithZone": 1, "initWithObjects": 2, "mutableCopyWithZone": 1, @@ -47446,18 +46661,18 @@ "initWithJKDictionary": 3, "initDictionary": 4, "allObjects": 2, + "CFRetain": 4, "arrayWithObjects": 1, "_JKDictionaryHashEntry": 2, "returnObject": 3, "entry": 41, ".key": 11, "jk_dictionaryCapacities": 4, - "bottom": 6, - "top": 8, "mid": 5, "tableSize": 2, "lround": 1, "floor": 1, + "dictionary": 64, "capacityForCount": 4, "resize": 3, "oldCapacity": 2, @@ -47481,18 +46696,28 @@ "keyEntry": 4, "CFEqual": 2, "CFHash": 1, - "table": 7, + "If": 30, + "was": 4, + "in": 42, + "we": 73, "would": 2, + "have": 15, + "found": 4, + "by": 12, "now.": 1, + "objectForKey": 29, "entryForKey": 3, "_JKDictionaryHashTableEntryForKey": 1, "andKeys": 1, "arrayIdx": 5, "keyEnumerator": 1, - "copy": 4, + "setObject": 9, + "forKey": 9, "Why": 1, "earth": 1, "complain": 1, + "that": 23, + "but": 5, "doesn": 1, "Internal": 2, "Unable": 2, @@ -47503,392 +46728,919 @@ "ld": 2, "Invalid": 1, "character": 1, + "string": 9, "x.": 1, "n": 7, "r": 6, + "t": 15, + "A": 4, "F": 1, ".": 2, "e": 1, + "double": 3, "Unexpected": 1, "token": 1, "wanted": 1, "Expected": 3, - "MainMenuViewController": 2, - "TTTableViewController": 1, - "///////////////////////////////////////////////////////////////////////////////////////////////////": 24, - "initWithNibName": 3, - "nibNameOrNil": 1, - "bundle": 3, - "NSBundle": 1, - "nibBundleOrNil": 1, - "self.title": 2, - "//self.variableHeightRows": 1, - "self.tableViewStyle": 1, - "UITableViewStyleGrouped": 1, - "self.dataSource": 1, - "TTSectionedDataSource": 1, - "dataSourceWithObjects": 1, - "TTTableTextItem": 48, - "itemWithText": 48, - "URL": 48, - "PlaygroundViewController": 2, - "UIViewController": 2, - "UIScrollView*": 1, - "_scrollView": 9, - "": 1, - "CGFloat": 44, - "kFramePadding": 7, - "kElementSpacing": 3, - "kGroupSpacing": 5, - "addHeader": 5, - "yOffset": 42, - "UILabel*": 2, - "label": 6, - "UILabel": 2, - "initWithFrame": 12, - "CGRectZero": 5, - "label.text": 2, - "label.font": 3, - "UIFont": 3, - "systemFontOfSize": 2, - "label.numberOfLines": 2, - "CGRect": 41, - "frame": 38, - "label.frame": 4, - "frame.origin.x": 3, - "frame.origin.y": 16, - "frame.size.width": 4, - "frame.size.height": 15, - "sizeWithFont": 2, - "constrainedToSize": 2, - "CGSizeMake": 3, - ".height": 4, - "addSubview": 8, - "label.frame.size.height": 2, - "TT_RELEASE_SAFELY": 12, - "addText": 5, - "loadView": 4, - "UIScrollView": 1, - "self.view.bounds": 2, - "_scrollView.autoresizingMask": 1, - "UIViewAutoresizingFlexibleWidth": 4, - "UIViewAutoresizingFlexibleHeight": 1, - "self.view": 4, - "NSLocalizedString": 9, - "UIButton*": 1, - "button": 5, - "UIButton": 1, - "buttonWithType": 1, - "UIButtonTypeRoundedRect": 1, - "setTitle": 1, - "forState": 4, - "UIControlStateNormal": 1, - "addTarget": 1, - "action": 1, - "debugTestAction": 2, - "forControlEvents": 1, - "UIControlEventTouchUpInside": 1, - "sizeToFit": 1, - "button.frame": 2, - "TTCurrentLocale": 2, - "displayNameForKey": 1, - "NSLocaleIdentifier": 1, - "localeIdentifier": 1, - "TTPathForBundleResource": 1, - "TTPathForDocumentsResource": 1, - "dataUsingEncoding": 2, - "NSUTF8StringEncoding": 2, - "md5Hash": 1, - "setContentSize": 1, - "viewDidUnload": 2, - "viewDidAppear": 2, - "animated": 27, - "flashScrollIndicators": 1, - "DEBUG": 1, - "TTDPRINTMETHODNAME": 1, - "TTDPRINT": 9, - "TTMAXLOGLEVEL": 1, - "TTDERROR": 1, - "TTLOGLEVEL_ERROR": 1, - "TTDWARNING": 1, - "TTLOGLEVEL_WARNING": 1, - "TTDINFO": 1, - "TTLOGLEVEL_INFO": 1, - "TTDCONDITIONLOG": 3, - "rand": 1, - "TTDASSERT": 2, - "SBJsonParser": 2, - "maxDepth": 2, - "NSData*": 1, - "objectWithString": 5, - "repr": 5, - "jsonText": 1, - "NSError**": 2, - "self.maxDepth": 2, - "Methods": 1, - "self.error": 3, - "SBJsonStreamParserAccumulator": 2, - "*accumulator": 1, - "SBJsonStreamParserAdapter": 2, - "*adapter": 1, - "adapter.delegate": 1, - "accumulator": 1, - "SBJsonStreamParser": 2, - "*parser": 1, - "parser.maxDepth": 1, - "parser.delegate": 1, - "adapter": 1, - "switch": 3, - "parse": 1, - "case": 8, - "SBJsonStreamParserComplete": 1, - "accumulator.value": 1, - "SBJsonStreamParserWaitingForData": 1, - "SBJsonStreamParserError": 1, - "parser.error": 1, - "error_": 2, - "tmp": 3, - "*ui": 1, - "*error_": 1, - "ui": 1, - "StyleViewController": 2, - "TTViewController": 1, - "TTStyle*": 7, - "_style": 8, - "_styleHighlight": 6, - "_styleDisabled": 6, - "_styleSelected": 6, - "_styleType": 6, - "kTextStyleType": 2, - "kViewStyleType": 2, - "kImageStyleType": 2, - "initWithStyleName": 1, - "styleType": 3, - "TTStyleSheet": 4, - "globalStyleSheet": 4, - "styleWithSelector": 4, - "UIControlStateHighlighted": 1, - "UIControlStateDisabled": 1, - "UIControlStateSelected": 1, - "addTextView": 5, - "title": 2, - "style": 29, - "textFrame": 3, - "TTRectInset": 3, - "UIEdgeInsetsMake": 3, - "StyleView*": 2, - "StyleView": 2, - "text.text": 1, - "TTStyleContext*": 1, - "context": 4, - "TTStyleContext": 1, - "context.frame": 1, - "context.delegate": 1, - "context.font": 1, - "systemFontSize": 1, - "CGSize": 5, - "addToSize": 1, - "CGSizeZero": 1, - "size.width": 1, - "size.height": 1, - "textFrame.size": 1, - "text.frame": 1, - "text.style": 1, - "text.backgroundColor": 1, - "UIColor": 3, - "colorWithRed": 3, - "green": 3, - "blue": 3, - "alpha": 3, - "text.autoresizingMask": 1, - "UIViewAutoresizingFlexibleBottomMargin": 3, - "addView": 5, - "viewFrame": 4, - "view": 11, - "view.style": 2, - "view.backgroundColor": 2, - "view.autoresizingMask": 2, - "addImageView": 5, - "TTImageView*": 1, - "TTImageView": 1, - "view.urlPath": 1, - "imageFrame": 2, - "view.frame": 2, - "imageFrame.size": 1, - "view.image.size": 1, - "TUITableViewStylePlain": 2, - "regular": 1, - "TUITableViewStyleGrouped": 1, - "grouped": 1, - "stick": 1, - "scroll": 3, - "TUITableViewStyle": 4, - "TUITableViewScrollPositionNone": 2, - "TUITableViewScrollPositionTop": 2, - "TUITableViewScrollPositionMiddle": 1, - "TUITableViewScrollPositionBottom": 1, - "TUITableViewScrollPositionToVisible": 3, - "supported": 1, - "TUITableViewScrollPosition": 5, - "TUITableViewInsertionMethodBeforeIndex": 1, - "NSOrderedAscending": 4, - "TUITableViewInsertionMethodAtIndex": 1, - "NSOrderedSame": 1, - "TUITableViewInsertionMethodAfterIndex": 1, - "NSOrderedDescending": 4, - "TUITableViewInsertionMethod": 3, - "TUITableViewCell": 23, - "@protocol": 3, - "TUITableViewDataSource": 2, - "TUITableView": 25, - "TUITableViewDelegate": 1, - "": 1, - "TUIScrollViewDelegate": 1, - "tableView": 45, - "heightForRowAtIndexPath": 2, - "TUIFastIndexPath": 89, - "indexPath": 47, - "@optional": 2, - "willDisplayCell": 2, - "cell": 21, - "forRowAtIndexPath": 2, - "subview": 1, - "didSelectRowAtIndexPath": 3, - "left/right": 2, - "mouse": 2, - "down": 1, - "up/down": 1, - "didDeselectRowAtIndexPath": 3, - "didClickRowAtIndexPath": 1, - "withEvent": 2, - "NSEvent": 3, - "event": 8, - "look": 1, - "clickCount": 1, - "TUITableView*": 1, - "shouldSelectRowAtIndexPath": 3, - "TUIFastIndexPath*": 1, - "forEvent": 3, - "NSEvent*": 1, - "NSMenu": 1, - "menuForRowAtIndexPath": 1, - "tableViewWillReloadData": 3, - "tableViewDidReloadData": 3, - "targetIndexPathForMoveFromRowAtIndexPath": 1, - "fromPath": 1, - "toProposedIndexPath": 1, - "proposedPath": 1, - "TUIScrollView": 1, - "__unsafe_unretained": 2, - "": 4, - "_dataSource": 6, - "weak": 2, - "_sectionInfo": 27, - "TUIView": 17, - "_pullDownView": 4, - "_headerView": 8, - "_lastSize": 1, - "_contentHeight": 7, - "NSMutableIndexSet": 6, - "_visibleSectionHeaders": 6, - "_visibleItems": 14, - "_reusableTableCells": 5, - "_selectedIndexPath": 9, - "_indexPathShouldBeFirstResponder": 2, - "_futureMakeFirstResponderToken": 2, - "_keepVisibleIndexPathForReload": 2, - "_relativeOffsetForReload": 2, - "drag": 1, - "reorder": 1, - "_dragToReorderCell": 5, - "CGPoint": 7, - "_currentDragToReorderLocation": 1, - "_currentDragToReorderMouseOffset": 1, - "_currentDragToReorderIndexPath": 1, - "_currentDragToReorderInsertionMethod": 1, - "_previousDragToReorderIndexPath": 1, - "_previousDragToReorderInsertionMethod": 1, - "animateSelectionChanges": 3, - "forceSaveScrollPosition": 1, - "derepeaterEnabled": 1, - "layoutSubviewsReentrancyGuard": 1, - "didFirstLayout": 1, - "dataSourceNumberOfSectionsInTableView": 1, - "delegateTableViewWillDisplayCellForRowAtIndexPath": 1, - "maintainContentOffsetAfterReload": 3, - "_tableFlags": 1, - "creation.": 1, - "calls": 1, - "UITableViewStylePlain": 1, - "unsafe_unretained": 2, - "dataSource": 2, - "": 4, - "readwrite": 1, - "reloadData": 3, - "reloadDataMaintainingVisibleIndexPath": 2, - "relativeOffset": 5, - "reloadLayout": 2, - "numberOfSections": 10, - "numberOfRowsInSection": 9, - "section": 60, - "rectForHeaderOfSection": 4, - "rectForSection": 3, - "rectForRowAtIndexPath": 7, - "NSIndexSet": 4, - "indexesOfSectionsInRect": 2, - "rect": 10, - "indexesOfSectionHeadersInRect": 2, - "indexPathForCell": 2, - "returns": 4, - "visible": 16, - "indexPathsForRowsInRect": 3, - "indexPathForRowAtPoint": 2, - "point": 11, - "indexPathForRowAtVerticalOffset": 2, - "offset": 23, - "indexOfSectionWithHeaderAtPoint": 2, - "indexOfSectionWithHeaderAtVerticalOffset": 2, - "enumerateIndexPathsUsingBlock": 2, - "*indexPath": 11, - "*stop": 7, - "enumerateIndexPathsWithOptions": 2, - "NSEnumerationOptions": 4, - "usingBlock": 6, - "enumerateIndexPathsFromIndexPath": 4, - "fromIndexPath": 6, - "toIndexPath": 12, - "withOptions": 4, - "headerViewForSection": 6, - "cellForRowAtIndexPath": 9, - "index": 11, - "visibleCells": 3, - "order": 1, - "sortedVisibleCells": 2, - "indexPathsForVisibleRows": 2, - "scrollToRowAtIndexPath": 3, - "atScrollPosition": 3, - "scrollPosition": 9, - "indexPathForSelectedRow": 4, - "representing": 1, - "row": 36, - "selection.": 1, - "indexPathForFirstRow": 2, - "indexPathForLastRow": 2, - "selectRowAtIndexPath": 3, - "deselectRowAtIndexPath": 3, - "*pullDownView": 1, - "pullDownViewIsVisible": 3, - "*headerView": 6, - "dequeueReusableCellWithIdentifier": 2, - "identifier": 7, - "": 1, - "@required": 1, - "canMoveRowAtIndexPath": 2, - "moveRowAtIndexPath": 2, - "numberOfSectionsInTableView": 3, - "NSIndexPath": 5, - "indexPathForRow": 11, - "inSection": 11, + "TARGET_OS_IPHONE": 11, + "": 1, + "": 1, + "*ASIHTTPRequestVersion": 2, + "*defaultUserAgent": 1, + "NetworkRequestErrorDomain": 12, + "*ASIHTTPRequestRunLoopMode": 1, + "CFOptionFlags": 1, + "kNetworkEvents": 1, + "kCFStreamEventHasBytesAvailable": 1, + "kCFStreamEventEndEncountered": 1, + "kCFStreamEventErrorOccurred": 1, + "*sessionCredentialsStore": 1, + "*sessionProxyCredentialsStore": 1, + "NSRecursiveLock": 13, + "*sessionCredentialsLock": 1, + "*sessionCookies": 1, + "RedirectionLimit": 1, + "NSTimeInterval": 10, + "defaultTimeOutSeconds": 3, + "ReadStreamClientCallBack": 1, + "CFReadStreamRef": 5, + "readStream": 5, + "CFStreamEventType": 2, + "*clientCallBackInfo": 1, + "ASIHTTPRequest*": 1, + "clientCallBackInfo": 1, + "handleNetworkEvent": 2, + "*progressLock": 1, + "*ASIRequestCancelledError": 1, + "*ASIRequestTimedOutError": 1, + "*ASIAuthenticationError": 1, + "*ASIUnableToCreateRequestError": 1, + "*ASITooMuchRedirectionError": 1, + "*bandwidthUsageTracker": 1, + "averageBandwidthUsedPerSecond": 2, + "nextConnectionNumberToCreate": 1, + "*persistentConnectionsPool": 1, + "*connectionsLock": 1, + "nextRequestID": 1, + "bandwidthUsedInLastSecond": 1, + "NSDate": 9, + "*bandwidthMeasurementDate": 1, + "NSLock": 2, + "*bandwidthThrottlingLock": 1, + "maxBandwidthPerSecond": 2, + "ASIWWANBandwidthThrottleAmount": 2, + "isBandwidthThrottled": 2, + "shouldThrottleBandwidthForWWANOnly": 1, + "*sessionCookiesLock": 1, + "*delegateAuthenticationLock": 1, + "*throttleWakeUpTime": 1, + "": 9, + "defaultCache": 3, + "runningRequestCount": 1, + "shouldUpdateNetworkActivityIndicator": 1, + "NSThread": 4, + "*networkThread": 1, + "NSOperationQueue": 4, + "*sharedQueue": 1, + "ASIHTTPRequest": 31, + "cancelLoad": 3, + "destroyReadStream": 3, + "scheduleReadStream": 1, + "unscheduleReadStream": 1, + "willAskDelegateForCredentials": 1, + "willAskDelegateForProxyCredentials": 1, + "askDelegateForProxyCredentials": 1, + "askDelegateForCredentials": 1, + "failAuthentication": 1, + "measureBandwidthUsage": 1, + "recordBandwidthUsage": 1, + "startRequest": 3, + "updateStatus": 2, + "NSTimer": 5, + "timer": 5, + "checkRequestStatus": 2, + "reportFailure": 3, + "reportFinished": 1, + "markAsFinished": 4, + "performRedirect": 1, + "shouldTimeOut": 2, + "willRedirect": 1, + "willAskDelegateToConfirmRedirect": 1, + "performInvocation": 2, + "NSInvocation": 4, + "invocation": 4, + "onTarget": 7, + "target": 5, + "releasingObject": 2, + "objectToRelease": 1, + "hideNetworkActivityIndicatorAfterDelay": 1, + "hideNetworkActivityIndicatorIfNeeeded": 1, + "runRequests": 1, + "configureProxies": 2, + "fetchPACFile": 1, + "finishedDownloadingPACFile": 1, + "theRequest": 1, + "runPACScript": 1, + "script": 1, + "timeOutPACRead": 1, + "useDataFromCache": 2, + "updatePartialDownloadSize": 1, + "registerForNetworkReachabilityNotifications": 1, + "unsubscribeFromNetworkReachabilityNotifications": 1, + "reachabilityChanged": 1, + "NSNotification": 2, + "note": 1, + "NS_BLOCKS_AVAILABLE": 8, + "performBlockOnMainThread": 2, + "ASIBasicBlock": 15, + "releaseBlocksOnMainThread": 4, + "releaseBlocks": 3, + "blocks": 16, + "callBlock": 1, + "complete": 12, + "*responseCookies": 3, + "responseStatusCode": 3, + "*lastActivityTime": 2, + "partialDownloadSize": 8, + "uploadBufferSize": 6, + "NSOutputStream": 6, + "*postBodyWriteStream": 1, + "NSInputStream": 7, + "*postBodyReadStream": 1, + "lastBytesRead": 3, + "lastBytesSent": 3, + "*cancelledLock": 2, + "*fileDownloadOutputStream": 2, + "*inflatedFileDownloadOutputStream": 2, + "authenticationRetryCount": 2, + "proxyAuthenticationRetryCount": 4, + "updatedProgress": 3, + "needsRedirect": 3, + "redirectCount": 2, + "*compressedPostBody": 1, + "*compressedPostBodyFilePath": 1, + "*authenticationRealm": 2, + "*proxyAuthenticationRealm": 3, + "*responseStatusMessage": 3, + "inProgress": 4, + "retryCount": 3, + "willRetryRequest": 1, + "connectionCanBeReused": 4, + "*connectionInfo": 2, + "*readStream": 1, + "ASIAuthenticationState": 5, + "authenticationNeeded": 3, + "readStreamIsScheduled": 1, + "downloadComplete": 2, + "*requestID": 3, + "*runLoopMode": 2, + "*statusTimer": 2, + "didUseCachedResponse": 3, + "NSURL": 21, + "*redirectURL": 2, + "isPACFileRequest": 3, + "*PACFileRequest": 2, + "*PACFileReadStream": 2, + "NSMutableData": 5, + "*PACFileData": 2, + "setter": 2, + "setSynchronous": 2, + "isSynchronous": 2, + "initialize": 1, + "persistentConnectionsPool": 3, + "connectionsLock": 3, + "progressLock": 1, + "bandwidthThrottlingLock": 1, + "sessionCookiesLock": 1, + "sessionCredentialsLock": 1, + "delegateAuthenticationLock": 1, + "bandwidthUsageTracker": 1, + "initWithCapacity": 2, + "ASIRequestTimedOutError": 1, + "initWithDomain": 5, + "ASIRequestTimedOutErrorType": 2, + "ASIAuthenticationError": 1, + "ASIAuthenticationErrorType": 3, + "ASIRequestCancelledError": 2, + "ASIRequestCancelledErrorType": 2, + "ASIUnableToCreateRequestError": 3, + "ASIUnableToCreateRequestErrorType": 2, + "ASITooMuchRedirectionError": 1, + "ASITooMuchRedirectionErrorType": 3, + "sharedQueue": 4, + "setMaxConcurrentOperationCount": 1, + "initWithURL": 4, + "newURL": 16, + "setRequestMethod": 3, + "setRunLoopMode": 2, + "NSDefaultRunLoopMode": 2, + "setShouldAttemptPersistentConnection": 2, + "setPersistentConnectionTimeoutSeconds": 2, + "setShouldPresentCredentialsBeforeChallenge": 1, + "setShouldRedirect": 1, + "setShowAccurateProgress": 1, + "setShouldResetDownloadProgress": 1, + "setShouldResetUploadProgress": 1, + "setAllowCompressedResponse": 1, + "setShouldWaitToInflateCompressedResponses": 1, + "setDefaultResponseEncoding": 1, + "NSISOLatin1StringEncoding": 2, + "setShouldPresentProxyAuthenticationDialog": 1, + "setTimeOutSeconds": 1, + "setUseSessionPersistence": 1, + "setUseCookiePersistence": 1, + "setValidatesSecureCertificate": 1, + "setRequestCookies": 2, + "setDidStartSelector": 1, + "requestStarted": 3, + "setDidReceiveResponseHeadersSelector": 1, + "request": 113, + "didReceiveResponseHeaders": 2, + "setWillRedirectSelector": 1, + "willRedirectToURL": 1, + "setDidFinishSelector": 1, + "requestFinished": 4, + "setDidFailSelector": 1, + "requestFailed": 2, + "setDidReceiveDataSelector": 1, + "didReceiveData": 2, + "setURL": 3, + "setCancelledLock": 1, + "setDownloadCache": 3, + "requestWithURL": 7, + "usingCache": 5, + "cache": 17, + "andCachePolicy": 3, + "ASIUseDefaultCachePolicy": 1, + "ASICachePolicy": 4, + "policy": 7, + "*request": 1, + "setCachePolicy": 1, + "setAuthenticationNeeded": 2, + "ASINoAuthenticationNeededYet": 3, + "requestAuthentication": 7, + "proxyAuthentication": 7, + "clientCertificateIdentity": 5, + "redirectURL": 1, + "statusTimer": 3, + "invalidate": 2, + "queue": 12, + "postBody": 11, + "compressedPostBody": 4, + "requestHeaders": 6, + "requestCookies": 1, + "downloadDestinationPath": 11, + "temporaryFileDownloadPath": 2, + "temporaryUncompressedDataDownloadPath": 3, + "fileDownloadOutputStream": 1, + "inflatedFileDownloadOutputStream": 1, + "username": 8, + "password": 11, + "domain": 2, + "authenticationRealm": 4, + "authenticationScheme": 4, + "requestCredentials": 1, + "proxyHost": 2, + "proxyType": 1, + "proxyUsername": 3, + "proxyPassword": 3, + "proxyDomain": 1, + "proxyAuthenticationRealm": 2, + "proxyAuthenticationScheme": 2, + "proxyCredentials": 1, + "url": 24, + "originalURL": 1, + "lastActivityTime": 1, + "responseCookies": 1, + "rawResponseData": 4, + "responseHeaders": 5, + "requestMethod": 13, + "cancelledLock": 37, + "postBodyFilePath": 7, + "compressedPostBodyFilePath": 4, + "postBodyWriteStream": 7, + "postBodyReadStream": 2, + "PACurl": 1, + "clientCertificates": 2, + "responseStatusMessage": 1, + "connectionInfo": 13, + "requestID": 2, + "dataDecompressor": 1, + "userAgentString": 1, + "*blocks": 1, + "completionBlock": 5, + "addObject": 16, + "failureBlock": 5, + "startedBlock": 5, + "headersReceivedBlock": 5, + "bytesReceivedBlock": 8, + "bytesSentBlock": 5, + "downloadSizeIncrementedBlock": 5, + "uploadSizeIncrementedBlock": 5, + "dataReceivedBlock": 5, + "proxyAuthenticationNeededBlock": 5, + "authenticationNeededBlock": 5, + "requestRedirectedBlock": 5, + "performSelectorOnMainThread": 2, + "waitUntilDone": 4, + "isMainThread": 2, + "Blocks": 1, + "will": 57, + "released": 2, + "when": 46, + "method": 5, + "exits": 1, + "setup": 2, + "addRequestHeader": 5, + "header": 20, + "setRequestHeaders": 2, + "dictionaryWithCapacity": 2, + "buildPostBody": 3, + "haveBuiltPostBody": 3, + "Are": 1, + "submitting": 1, + "body": 8, + "from": 18, + "file": 14, + "disk": 1, + "were": 5, + "writing": 2, + "post": 2, + "appendPostData": 3, + "appendPostDataFromFile": 3, + "close": 5, + "write": 4, + "stream": 13, + "setPostBodyWriteStream": 2, + "*path": 1, + "shouldCompressRequestBody": 6, + "setCompressedPostBodyFilePath": 1, + "NSTemporaryDirectory": 2, + "stringByAppendingPathComponent": 2, + "NSProcessInfo": 2, + "processInfo": 2, + "globallyUniqueString": 2, + "*err": 3, + "ASIDataCompressor": 2, + "compressDataFromFile": 1, + "toFile": 1, + "err": 8, + "failWithError": 11, + "setPostLength": 3, + "NSFileManager": 1, + "attributesOfItemAtPath": 1, + "fileSize": 1, + "ASIFileManagementError": 2, + "NSUnderlyingErrorKey": 3, + "Otherwise": 2, + "an": 20, + "memory": 3, + "*compressedBody": 1, + "compressData": 1, + "setCompressedPostBody": 1, + "compressedBody": 1, + "postLength": 6, + "setHaveBuiltPostBody": 1, + "setupPostBody": 3, + "shouldStreamPostDataFromDisk": 4, + "setPostBodyFilePath": 1, + "setDidCreateTemporaryPostDataFile": 1, + "initToFileAtPath": 1, + "append": 1, + "open": 2, + "setPostBody": 1, + "bytes": 8, + "maxLength": 3, + "appendData": 2, + "*stream": 1, + "initWithFileAtPath": 1, + "bytesRead": 5, + "hasBytesAvailable": 1, + "buffer": 7, + "*256": 1, + "read": 3, + "dataWithBytes": 1, + "lock": 19, + "*m": 1, + "unlock": 20, + "m": 1, + "newRequestMethod": 3, + "*u": 1, + "isEqual": 4, + "setRedirectURL": 2, + "d": 11, + "setDelegate": 4, + "newDelegate": 6, + "q": 2, + "setQueue": 2, + "newQueue": 3, + "get": 4, + "information": 5, + "about": 4, + "cancelOnRequestThread": 2, + "DEBUG_REQUEST_STATUS": 4, + "ASI_DEBUG_LOG": 11, + "isCancelled": 6, + "setComplete": 3, + "willChangeValueForKey": 1, + "cancelled": 5, + "didChangeValueForKey": 1, + "cancel": 5, + "performSelector": 7, + "onThread": 2, + "threadForRequest": 3, + "clearDelegatesAndCancel": 2, + "Clear": 3, + "delegates": 2, + "setDownloadProgressDelegate": 2, + "setUploadProgressDelegate": 2, + "result": 4, + "responseString": 3, + "*data": 2, + "responseData": 5, + "initWithBytes": 1, + "encoding": 7, + "responseEncoding": 3, + "isResponseCompressed": 3, + "*encoding": 1, + "rangeOfString": 1, + ".location": 1, + "NSNotFound": 1, + "shouldWaitToInflateCompressedResponses": 4, + "ASIDataDecompressor": 4, + "uncompressData": 1, + "running": 4, + "startSynchronous": 2, + "DEBUG_THROTTLING": 2, + "ASIHTTPRequestRunLoopMode": 2, + "setInProgress": 3, + "main": 8, + "NSRunLoop": 2, + "currentRunLoop": 2, + "runMode": 1, + "runLoopMode": 2, + "beforeDate": 1, + "distantFuture": 1, + "start": 3, + "startAsynchronous": 2, + "addOperation": 1, + "concurrency": 1, + "isConcurrent": 1, + "isFinished": 1, + "finished": 3, + "isExecuting": 1, + "logic": 1, + "@try": 1, + "__IPHONE_OS_VERSION_MAX_ALLOWED": 4, + "__IPHONE_4_0": 6, + "isMultitaskingSupported": 2, + "shouldContinueWhenAppEntersBackground": 3, + "backgroundTask": 7, + "UIBackgroundTaskInvalid": 3, + "UIApplication": 2, + "sharedApplication": 2, + "beginBackgroundTaskWithExpirationHandler": 1, + "dispatch_async": 1, + "dispatch_get_main_queue": 1, + "endBackgroundTask": 1, + "HEAD": 10, + "generated": 3, + "ASINetworkQueue": 4, + "set": 24, + "already.": 1, + "so": 15, + "should": 8, + "proceed.": 1, + "setDidUseCachedResponse": 1, + "Must": 1, + "call": 8, + "before": 6, + "create": 1, + "needs": 1, + "mainRequest": 9, + "ll": 6, + "already": 4, + "CFHTTPMessageRef": 3, + "Create": 1, + "new": 10, + "HTTP": 9, + "request.": 1, + "CFHTTPMessageCreateRequest": 1, + "kCFAllocatorDefault": 3, + "CFStringRef": 1, + "CFURLRef": 1, + "useHTTPVersionOne": 3, + "kCFHTTPVersion1_0": 1, + "kCFHTTPVersion1_1": 1, + "//If": 2, + "need": 10, + "let": 8, + "generate": 1, + "its": 9, + "first": 9, + "use": 26, + "them": 10, + "buildRequestHeaders": 3, + "Even": 1, + "still": 2, + "give": 2, + "subclasses": 2, + "chance": 2, + "add": 5, + "their": 3, + "own": 3, + "requests": 21, + "ASIS3Request": 1, + "downloadCache": 5, + "default": 8, + "download": 9, + "downloading": 5, + "proxy": 11, + "PAC": 7, + "once": 3, + "process": 1, + "@catch": 1, + "*exception": 1, + "*underlyingError": 1, + "ASIUnhandledExceptionError": 3, + "exception": 3, + "reason": 1, + "NSLocalizedFailureReasonErrorKey": 1, + "underlyingError": 1, + "@finally": 1, + "applyAuthorizationHeader": 2, + "Do": 3, + "want": 5, + "send": 2, + "credentials": 35, + "are": 15, + "asked": 3, + "shouldPresentCredentialsBeforeChallenge": 4, + "DEBUG_HTTP_AUTHENTICATION": 4, + "*credentials": 1, + "auth": 2, + "basic": 3, + "authentication": 18, + "explicitly": 2, + "kCFHTTPAuthenticationSchemeBasic": 2, + "addBasicAuthenticationHeaderWithUsername": 2, + "andPassword": 2, + "See": 5, + "any": 3, + "cached": 2, + "session": 5, + "store": 4, + "useSessionPersistence": 6, + "findSessionAuthenticationCredentials": 2, + "When": 15, + "Authentication": 3, + "stored": 9, + "challenge": 1, + "CFNetwork": 3, + "apply": 2, + "Digest": 2, + "NTLM": 6, + "always": 2, + "like": 1, + "CFHTTPMessageApplyCredentialDictionary": 2, + "CFHTTPAuthenticationRef": 2, + "CFDictionaryRef": 1, + "setAuthenticationScheme": 1, + "removeAuthenticationCredentialsFromSessionStore": 3, + "these": 3, + "previous": 2, + "passed": 2, + "re": 9, + "retrying": 1, + "using": 8, + "our": 6, + "custom": 2, + "measure": 1, + "bandwidth": 3, + "throttled": 1, + "necessary": 2, + "setPostBodyReadStream": 2, + "ASIInputStream": 2, + "inputStreamWithData": 2, + "setReadStream": 2, + "NSMakeCollectable": 3, + "CFReadStreamCreateForStreamedHTTPRequest": 1, + "CFReadStreamCreateForHTTPRequest": 1, + "ASIInternalErrorWhileBuildingRequestType": 3, + "scheme": 5, + "lowercaseString": 1, + "validatesSecureCertificate": 3, + "*sslProperties": 2, + "initWithObjectsAndKeys": 1, + "numberWithBool": 3, + "kCFStreamSSLAllowsExpiredCertificates": 1, + "kCFStreamSSLAllowsAnyRoot": 1, + "kCFStreamSSLValidatesCertificateChain": 1, + "kCFNull": 1, + "kCFStreamSSLPeerName": 1, + "CFReadStreamSetProperty": 1, + "kCFStreamPropertySSLSettings": 1, + "CFTypeRef": 1, + "sslProperties": 2, + "*certificates": 1, + "arrayWithCapacity": 2, + "The": 15, + "SecIdentityRef": 3, + "certificates": 2, + "ve": 7, + "opened": 3, + "*oldStream": 1, + "Use": 6, + "persistent": 5, + "connection": 17, + "possible": 3, + "shouldAttemptPersistentConnection": 2, + "redirecting": 2, + "current": 2, + "connecting": 2, + "server": 8, + "host": 9, + "intValue": 4, + "port": 17, + "setConnectionInfo": 2, + "Check": 1, + "expired": 1, + "timeIntervalSinceNow": 1, + "DEBUG_PERSISTENT_CONNECTIONS": 3, + "removeObject": 2, + "//Some": 1, + "other": 3, + "reused": 2, + "previously": 1, + "there": 1, + "one": 1, + "We": 7, + "just": 4, + "make": 3, + "old": 5, + "http": 4, + "//lists.apple.com/archives/Macnetworkprog/2006/Mar/msg00119.html": 1, + "oldStream": 4, + "streamSuccessfullyOpened": 1, + "setConnectionCanBeReused": 2, + "shouldResetUploadProgress": 3, + "showAccurateProgress": 7, + "incrementUploadSizeBy": 3, + "updateProgressIndicator": 4, + "uploadProgressDelegate": 8, + "withProgress": 4, + "ofTotal": 4, + "shouldResetDownloadProgress": 3, + "downloadProgressDelegate": 10, + "Record": 1, + "started": 1, + "timeout": 6, + "nothing": 2, + "setLastActivityTime": 1, + "date": 3, + "setStatusTimer": 2, + "timerWithTimeInterval": 1, + "repeats": 1, + "addTimer": 1, + "forMode": 1, + "here": 2, + "sent": 6, + "more": 5, + "upload": 4, + "safely": 1, + "totalBytesSent": 5, + "***Black": 1, + "magic": 1, + "warning***": 1, + "reliable": 1, + "way": 1, + "track": 1, + "progress": 13, + "KB": 4, + "iPhone": 3, + "Mac": 2, + "very": 2, + "slow.": 1, + "secondsSinceLastActivity": 1, + "timeOutSeconds": 3, + "*1.5": 1, + "won": 3, + "updating": 1, + "checking": 1, + "told": 1, + "us": 2, + "performThrottling": 2, + "auto": 2, + "retry": 3, + "numberOfTimesToRetryOnTimeout": 2, + "resuming": 1, + "update": 6, + "Range": 1, + "take": 1, + "account": 1, + "perhaps": 1, + "uploaded": 2, + "far": 2, + "setTotalBytesSent": 1, + "CFReadStreamCopyProperty": 2, + "kCFStreamPropertyHTTPRequestBytesWrittenCount": 1, + "unsignedLongLongValue": 1, + "middle": 1, + "said": 1, + "might": 4, + "resume": 2, + "used": 16, + "preset": 2, + "content": 5, + "updateUploadProgress": 3, + "updateDownloadProgress": 3, + "NSProgressIndicator": 4, + "MaxValue": 2, + "UIProgressView": 2, + "max": 7, + "setMaxValue": 2, + "amount": 12, + "callerToRetain": 7, + "examined": 1, + "since": 1, + "authenticate": 1, + "contentLength": 6, + "bytesReadSoFar": 3, + "totalBytesRead": 4, + "setUpdatedProgress": 1, + "didReceiveBytes": 2, + "totalSize": 2, + "setLastBytesRead": 1, + "pass": 5, + "pointer": 2, + "directly": 1, + "number": 2, + "itself": 1, + "rather": 4, + "setArgument": 4, + "argumentNumber": 1, + "callback": 3, + "NSMethodSignature": 1, + "*cbSignature": 1, + "methodSignatureForSelector": 1, + "*cbInvocation": 1, + "invocationWithMethodSignature": 1, + "cbSignature": 1, + "cbInvocation": 5, + "setSelector": 1, + "setTarget": 1, + "Used": 13, + "until": 2, + "forget": 2, + "know": 3, + "attempt": 3, + "reuse": 3, + "theError": 6, + "removeObjectForKey": 1, + "dateWithTimeIntervalSinceNow": 1, + "persistentConnectionTimeoutSeconds": 4, + "ignore": 1, + "ASIFallbackToCacheIfLoadFailsCachePolicy": 2, + "cachePolicy": 3, + "canUseCachedDataForRequest": 1, + "setError": 2, + "*failedRequest": 1, + "created": 3, + "compatible": 1, + "fail": 1, + "failedRequest": 4, + "parsing": 2, + "response": 17, + "readResponseHeaders": 2, + "message": 2, + "kCFStreamPropertyHTTPResponseHeader": 1, + "Make": 1, + "sure": 1, + "didn": 3, + "tells": 1, + "keepAliveHeader": 2, + "NSScanner": 2, + "*scanner": 1, + "scannerWithString": 1, + "scanner": 5, + "scanString": 2, + "intoString": 3, + "scanInt": 2, + "scanUpToString": 1, + "probably": 4, + "what": 3, + "you": 10, + "hard": 1, + "keep": 2, + "throw": 1, + "away.": 1, + "*userAgentHeader": 1, + "*acceptHeader": 1, + "userAgentHeader": 2, + "acceptHeader": 2, + "setHaveBuiltRequestHeaders": 1, + "Force": 2, + "rebuild": 2, + "cookie": 1, + "incase": 1, + "got": 1, + "some": 1, + "cookies": 5, + "All": 2, + "remain": 1, + "they": 6, + "redirects": 2, + "applyCookieHeader": 2, + "redirected": 2, + "ones": 3, + "URLWithString": 1, + "valueForKey": 2, + "relativeToURL": 1, + "absoluteURL": 1, + "setNeedsRedirect": 1, + "This": 7, + "means": 1, + "manually": 1, + "redirect": 4, + "those": 1, + "global": 1, + "But": 1, + "safest": 1, + "option": 1, + "different": 4, + "responseCode": 1, + "parseStringEncodingFromHeaders": 2, + "Handle": 1, + "NSStringEncoding": 6, + "charset": 5, + "*mimeType": 1, + "parseMimeType": 2, + "mimeType": 2, + "andResponseEncoding": 2, + "fromContentType": 2, + "setResponseEncoding": 2, + "defaultResponseEncoding": 4, + "saveProxyCredentialsToKeychain": 1, + "newCredentials": 16, + "NSURLCredential": 8, + "*authenticationCredentials": 2, + "credentialWithUser": 2, + "kCFHTTPAuthenticationUsername": 2, + "kCFHTTPAuthenticationPassword": 2, + "persistence": 2, + "NSURLCredentialPersistencePermanent": 2, + "authenticationCredentials": 4, + "saveCredentials": 4, + "forProxy": 2, + "proxyPort": 2, + "realm": 14, + "saveCredentialsToKeychain": 3, + "forHost": 2, + "protocol": 10, + "applyProxyCredentials": 2, + "setProxyAuthenticationRetryCount": 1, + "Apply": 1, + "whatever": 1, + "ok": 1, + "built": 2, + "CFMutableDictionaryRef": 1, + "save": 3, + "keychain": 7, + "useKeychainPersistence": 4, + "*sessionCredentials": 1, + "sessionCredentials": 6, + "storeAuthenticationCredentialsInSessionStore": 2, + "setRequestCredentials": 1, + "findProxyCredentials": 2, + "*newCredentials": 1, + "*user": 1, + "*pass": 1, + "*theRequest": 1, + "try": 3, + "user": 6, + "connect": 1, + "website": 1, + "kCFHTTPAuthenticationSchemeNTLM": 1, + "Ok": 1, + "For": 2, + "authenticating": 2, + "proxies": 3, + "extract": 1, + "NSArray*": 1, + "ntlmComponents": 1, + "componentsSeparatedByString": 1, + "AUTH": 6, + "Request": 6, + "parent": 1, + "properties": 1, + "received": 5, + "ASIAuthenticationDialog": 2, + "had": 1, + "argc": 1, + "*argv": 1, + "window": 1, + "applicationDidFinishLaunching": 1, + "aNotification": 1, "HEADER_Z_POSITION": 2, "beginning": 1, "height": 19, @@ -47896,6 +47648,7 @@ "TUITableViewSection": 16, "*_tableView": 1, "*_headerView": 1, + "Not": 2, "reusable": 1, "similar": 1, "UITableView": 1, @@ -47993,6 +47746,7 @@ "negative": 1, "returned": 1, "param": 1, + "location": 3, "p": 3, "0": 2, "width": 1, @@ -48012,19 +47766,23 @@ "iteration...": 1, "rowCount": 3, "j": 5, + "stop": 4, "FALSE": 2, "...then": 1, "zero": 1, + "subsequent": 2, "iterations": 1, "_topVisibleIndexPath": 1, "*topVisibleIndex": 1, "sortedArrayUsingSelector": 1, + "compare": 4, "topVisibleIndex": 2, "setFrame": 2, "_tableFlags.forceSaveScrollPosition": 1, "setContentOffset": 2, "_tableFlags.didFirstLayout": 1, "prevent": 2, + "during": 4, "layout": 3, "pinned": 5, "isKindOfClass": 2, @@ -48054,6 +47812,7 @@ "visibleCellsNeedRelayout": 5, "remaining": 1, "cells": 7, + "needed": 3, "cell.frame": 1, "cell.layer.zPosition": 1, "visibleRect": 3, @@ -48068,6 +47827,7 @@ "newVisibleIndexPaths": 2, "*indexPathsToAdd": 1, "indexPathsToAdd": 2, + "don": 2, "newly": 1, "superview": 1, "bringSubviewToFront": 1, @@ -48085,6 +47845,7 @@ "_pullDownView.frame": 1, "self.delegate": 10, "recycle": 1, + "all": 3, "regenerated": 3, "layoutSubviews": 5, "because": 1, @@ -48104,15 +47865,19 @@ "_layoutSectionHeaders": 2, "_tableFlags.derepeaterEnabled": 1, "commit": 1, + "has": 6, "selected": 2, + "being": 4, "overlapped": 1, "r.size.height": 4, "headerFrame.size.height": 1, + "do": 5, "r.origin.y": 1, "v.size.height": 2, "scrollRectToVisible": 2, "sec": 3, "_makeRowAtIndexPathFirstResponder": 2, + "accept": 2, "responder": 2, "made": 1, "acceptsFirstResponder": 1, @@ -48125,6 +47890,7 @@ "setNeedsDisplay": 2, "selection": 3, "actually": 2, + "changes": 4, "NSResponder": 1, "*firstResponder": 1, "firstResponder": 3, @@ -48160,334 +47926,553 @@ "setMaintainContentOffsetAfterReload": 1, "newValue": 2, "indexPathWithIndexes": 1, - "indexAtPosition": 2 + "indexAtPosition": 2, + "TTViewController": 1, + "": 1, + "": 1, + "Necessary": 1, + "background": 1, + "task": 1, + "__IPHONE_3_2": 2, + "__MAC_10_5": 2, + "__MAC_10_6": 2, + "_ASIAuthenticationState": 1, + "ASIHTTPAuthenticationNeeded": 1, + "ASIProxyAuthenticationNeeded": 1, + "_ASINetworkErrorType": 1, + "ASIConnectionFailureErrorType": 2, + "ASIInternalErrorWhileApplyingCredentialsType": 1, + "ASICompressionError": 1, + "ASINetworkErrorType": 1, + "ASIHeadersBlock": 3, + "*responseHeaders": 2, + "ASISizeBlock": 5, + "ASIProgressBlock": 5, + "total": 4, + "ASIDataBlock": 3, + "NSOperation": 1, + "": 1, + "operation": 2, + "include": 1, + "GET": 1, + "params": 1, + "query": 1, + "where": 1, + "appropriate": 4, + "*url": 2, + "Will": 7, + "contain": 4, + "original": 2, + "making": 1, + "change": 2, + "*originalURL": 2, + "Temporarily": 1, + "stores": 1, + "to.": 2, + "again": 1, + "notified": 2, + "various": 1, + "ASIHTTPRequestDelegate": 1, + "": 1, + "Another": 1, + "also": 1, + "status": 4, + "updates": 2, + "Generally": 1, + "likely": 1, + "sessionCookies": 2, + "*requestCookies": 2, + "populated": 1, + "useCookiePersistence": 3, + "network": 4, + "present": 3, + "successfully": 4, + "presented": 2, + "duration": 1, + "clearSession": 2, + "allowCompressedResponse": 3, + "inform": 1, + "compressed": 2, + "automatically": 2, + "decompress": 1, + "gzipped": 7, + "responses.": 1, + "Default": 10, + "true.": 1, + "gzipped.": 1, + "false.": 1, + "You": 1, + "enable": 1, + "feature": 1, + "your": 2, + "webserver": 1, + "work.": 1, + "Tested": 1, + "apache": 1, + "only.": 1, + "downloaded": 6, + "*downloadDestinationPath": 2, + "files": 5, + "Once": 2, + "decompressed": 3, + "moved": 2, + "*temporaryFileDownloadPath": 2, + "containing": 1, + "inflated": 6, + "comes": 3, + "*temporaryUncompressedDataDownloadPath": 2, + "fails": 2, + "completes": 6, + "occurs": 1, + "Connection": 1, + "failure": 1, + "occurred": 1, + "inspect": 1, + "Username": 2, + "*username": 2, + "*password": 2, + "User": 1, + "Agent": 1, + "*userAgentString": 2, + "Domain": 2, + "*domain": 2, + "*proxyUsername": 2, + "*proxyPassword": 2, + "*proxyDomain": 2, + "Delegate": 2, + "displaying": 2, + "usually": 2, + "supply": 2, + "handle": 4, + "yourself": 4, + "": 2, + "Whether": 1, + "hassle": 1, + "adding": 1, + "apps": 1, + "shouldPresentProxyAuthenticationDialog": 2, + "*proxyCredentials": 2, + "Basic": 2, + "*proxyAuthenticationScheme": 2, + "Realm": 1, + "eg": 2, + "OK": 1, + "etc": 1, + "Description": 1, + "Size": 3, + "partially": 1, + "POST": 2, + "payload": 1, + "Last": 2, + "incrementing": 2, + "prevents": 1, + "inopportune": 1, + "moment": 1, + "Called": 6, + "starts.": 1, + "didStartSelector": 2, + "receives": 3, + "headers.": 1, + "didReceiveResponseHeadersSelector": 2, + "Location": 1, + "shouldRedirect": 3, + "then": 1, + "restart": 1, + "calling": 1, + "redirectToURL": 2, + "simply": 1, + "willRedirectSelector": 2, + "successfully.": 1, + "didFinishSelector": 2, + "fails.": 1, + "didFailSelector": 2, + "data.": 1, + "implement": 1, + "populate": 1, + "didReceiveDataSelector": 2, + "recording": 1, + "something": 1, + "last": 1, + "happened": 1, + "Number": 1, + "seconds": 2, + "wait": 1, + "timing": 1, + "starts": 2, + "*mainRequest": 2, + "indicator": 4, + "according": 2, + "how": 2, + "much": 2, + "Also": 1, + "see": 1, + "comments": 1, + "ASINetworkQueue.h": 1, + "ensure": 1, + "incremented": 4, + "Prevents": 1, + "largely": 1, + "internally": 3, + "reflect": 1, + "internal": 2, + "PUT": 1, + "operations": 1, + "sizes": 1, + "greater": 1, + "unless": 2, + "been": 1, + "Likely": 1, + "OS": 1, + "X": 1, + "Leopard": 1, + "Text": 1, + "responses": 5, + "Content": 1, + "Type": 1, + "value.": 1, + "Defaults": 2, + "set.": 1, + "Tells": 1, + "delete": 1, + "partial": 2, + "downloads": 1, + "allows": 1, + "existing": 1, + "download.": 1, + "NO.": 1, + "allowResumeForFileDownloads": 2, + "Custom": 1, + "associated": 1, + "*userInfo": 2, + "tag": 2, + "defaults": 2, + "tell": 2, + "loop": 1, + "Incremented": 1, + "every": 3, + "redirects.": 1, + "reaches": 1, + "check": 1, + "secure": 1, + "certificate": 2, + "signed": 1, + "development": 1, + "DO": 1, + "NOT": 1, + "USE": 1, + "IN": 1, + "PRODUCTION": 1, + "*clientCertificates": 2, + "Details": 1, + "could": 1, + "best": 1, + "local": 1, + "*PACurl": 2, + "values": 3, + "above.": 1, + "No": 1, + "yet": 1, + "ASIHTTPRequests": 1, + "avoids": 1, + "extra": 1, + "round": 1, + "trip": 1, + "succeeded": 1, + "which": 1, + "efficient": 1, + "authenticated": 1, + "large": 1, + "bodies": 1, + "slower": 1, + "connections": 3, + "Set": 4, + "affects": 1, + "YES.": 1, + "Credentials": 1, + "never": 1, + "asks": 1, + "hasn": 1, + "doing": 1, + "anything": 1, + "expires": 1, + "yes": 1, + "alive": 1, + "Stores": 1, + "use.": 1, + "expire": 2, + "connection.": 2, + "These": 1, + "determine": 1, + "whether": 1, + "match": 1, + "An": 2, + "determining": 1, + "available": 1, + "reference": 1, + "one.": 1, + "closed": 1, + "either": 1, + "another": 1, + "fires": 1, + "automatic": 1, + "standard": 1, + "follow": 1, + "behaviour": 2, + "most": 1, + "browsers": 1, + "shouldUseRFC2616RedirectBehaviour": 2, + "record": 1, + "ID": 1, + "uniquely": 1, + "identifies": 1, + "primarily": 1, + "debugging": 1, + "synchronous": 1, + "checks": 1, + "setDefaultCache": 2, + "configure": 2, + "ASICacheDelegate.h": 2, + "storage": 2, + "ASICacheStoragePolicy": 2, + "cacheStoragePolicy": 2, + "pulled": 1, + "secondsToCache": 3, + "interval": 1, + "expiring": 1, + "UIBackgroundTaskIdentifier": 1, + "helper": 1, + "inflate": 2, + "*dataDecompressor": 2, + "Controls": 1, + "without": 1, + "raw": 3, + "discarded": 1, + "normal": 1, + "contents": 1, + "into": 1, + "Setting": 1, + "especially": 1, + "useful": 1, + "users": 1, + "conjunction": 1, + "streaming": 1, + "allow": 1, + "behind": 1, + "scenes": 1, + "https": 1, + "webservers": 1, + "asynchronously": 1, + "reading": 1, + "URLs": 2, + "storing": 1, + "startSynchronous.": 1, + "Currently": 1, + "detection": 2, + "synchronously": 1, + "//block": 12, + "execute": 4, + "handling": 4, + "redirections": 1, + "setStartedBlock": 1, + "aStartedBlock": 1, + "setHeadersReceivedBlock": 1, + "aReceivedBlock": 2, + "setCompletionBlock": 1, + "aCompletionBlock": 1, + "setFailedBlock": 1, + "aFailedBlock": 1, + "setBytesReceivedBlock": 1, + "aBytesReceivedBlock": 1, + "setBytesSentBlock": 1, + "aBytesSentBlock": 1, + "setDownloadSizeIncrementedBlock": 1, + "aDownloadSizeIncrementedBlock": 1, + "setUploadSizeIncrementedBlock": 1, + "anUploadSizeIncrementedBlock": 1, + "setDataReceivedBlock": 1, + "setAuthenticationNeededBlock": 1, + "anAuthenticationBlock": 1, + "setProxyAuthenticationNeededBlock": 1, + "aProxyAuthenticationBlock": 1, + "setRequestRedirectedBlock": 1, + "aRedirectBlock": 1, + "HEADRequest": 1, + "upload/download": 1, + "updateProgressIndicators": 1, + "removeUploadProgressSoFar": 1, + "incrementDownloadSizeBy": 1, + "caller": 1, + "talking": 1, + "requestReceivedResponseHeaders": 1, + "newHeaders": 1, + "retryUsingNewConnection": 1, + "stringEncoding": 1, + "contentType": 1, + "stuff": 1, + "applyCredentials": 1, + "findCredentials": 1, + "retryUsingSuppliedCredentials": 1, + "cancelAuthentication": 1, + "attemptToApplyCredentialsAndResume": 1, + "attemptToApplyProxyCredentialsAndResume": 1, + "showProxyAuthenticationDialog": 1, + "showAuthenticationDialog": 1, + "theUsername": 1, + "thePassword": 1, + "handlers": 1, + "handleBytesAvailable": 1, + "handleStreamComplete": 1, + "handleStreamError": 1, + "cleanup": 1, + "removeTemporaryDownloadFile": 1, + "removeTemporaryUncompressedDownloadFile": 1, + "removeTemporaryUploadFile": 1, + "removeTemporaryCompressedUploadFile": 1, + "removeFileAtPath": 1, + "connectionID": 1, + "expirePersistentConnections": 1, + "setDefaultTimeOutSeconds": 1, + "newTimeOutSeconds": 1, + "client": 1, + "setClientCertificateIdentity": 1, + "anIdentity": 1, + "sessionProxyCredentialsStore": 1, + "sessionCredentialsStore": 1, + "storeProxyAuthenticationCredentialsInSessionStore": 1, + "removeProxyAuthenticationCredentialsFromSessionStore": 1, + "findSessionProxyAuthenticationCredentials": 1, + "savedCredentialsForHost": 1, + "savedCredentialsForProxy": 1, + "removeCredentialsForHost": 1, + "removeCredentialsForProxy": 1, + "setSessionCookies": 1, + "newSessionCookies": 1, + "addSessionCookie": 1, + "NSHTTPCookie": 1, + "newCookie": 1, + "agent": 2, + "defaultUserAgentString": 1, + "setDefaultUserAgentString": 1, + "mime": 1, + "mimeTypeForFileAtPath": 1, + "measurement": 1, + "throttling": 1, + "setMaxBandwidthPerSecond": 1, + "incrementBandwidthUsedInLastSecond": 1, + "setShouldThrottleBandwidthForWWAN": 1, + "throttle": 1, + "throttleBandwidthForWWANUsingLimit": 1, + "limit": 1, + "reachability": 1, + "isNetworkReachableViaWWAN": 1, + "maxUploadReadLength": 1, + "activity": 1, + "isNetworkInUse": 1, + "setShouldUpdateNetworkActivityIndicator": 1, + "shouldUpdate": 1, + "showNetworkActivityIndicator": 1, + "hideNetworkActivityIndicator": 1, + "miscellany": 1, + "base64forData": 1, + "theData": 1, + "expiryDateForRequest": 1, + "maxAge": 2, + "dateFromRFC1123String": 1, + "threading": 1, + "*proxyHost": 1, + "*proxyType": 1, + "*requestHeaders": 1, + "*requestCredentials": 1, + "*rawResponseData": 1, + "*requestMethod": 1, + "*postBody": 1, + "*postBodyFilePath": 1, + "didCreateTemporaryPostDataFile": 1, + "*authenticationScheme": 1, + "shouldPresentAuthenticationDialog": 1, + "haveBuiltRequestHeaders": 1, + "": 1, + "": 1, + "": 1, + "__OBJC__": 4, + "": 1, + "": 1, + "__cplusplus": 2, + "NSINTEGER_DEFINED": 3, + "NS_BUILD_32_LIKE_64": 3, + "_JSONKIT_H_": 3, + "__APPLE_CC__": 2, + "JK_DEPRECATED_ATTRIBUTE": 6, + "deprecated": 1, + "JSONKIT_VERSION_MAJOR": 1, + "JSONKIT_VERSION_MINOR": 1, + "JKParseOptionNone": 1, + "JKParseOptionStrict": 1, + "JKParseOptionComments": 2, + "JKParseOptionUnicodeNewlines": 2, + "JKParseOptionLooseUnicode": 2, + "JKParseOptionPermitTextAfterValidJSON": 2, + "JKParseOptionValidFlags": 1, + "JKSerializeOptionNone": 3, + "JKSerializeOptionPretty": 2, + "JKSerializeOptionEscapeUnicode": 2, + "JKSerializeOptionEscapeForwardSlashes": 2, + "JKSerializeOptionValidFlags": 1, + "Opaque": 1, + "private": 1, + "decoder": 1, + "decoderWithParseOptions": 1, + "initWithParseOptions": 1, + "clearCache": 1, + "parseUTF8String": 2, + "Deprecated": 4, + "v1.4.": 4, + "objectWithUTF8String": 4, + "instead.": 4, + "parseJSONData": 2, + "jsonData": 6, + "mutableObjectWithUTF8String": 2, + "mutableObjectWithData": 2, + "////////////": 4, + "Deserializing": 1, + "methods": 2, + "JSONKitDeserializing": 2, + "objectFromJSONString": 1, + "objectFromJSONStringWithParseOptions": 2, + "mutableObjectFromJSONString": 1, + "mutableObjectFromJSONStringWithParseOptions": 2, + "objectFromJSONData": 1, + "objectFromJSONDataWithParseOptions": 2, + "mutableObjectFromJSONData": 1, + "mutableObjectFromJSONDataWithParseOptions": 2, + "Serializing": 1, + "JSONKitSerializing": 3, + "JSONData": 3, + "Invokes": 2, + "JSONDataWithOptions": 8, + "includeQuotes": 6, + "serializeOptions": 14, + "JSONString": 3, + "JSONStringWithOptions": 8, + "serializeUnsupportedClassesUsingDelegate": 4, + "__BLOCKS__": 1, + "JSONKitSerializingBlockAdditions": 2, + "serializeUnsupportedClassesUsingBlock": 4 }, "Objective-C++": { - "#include": 26, - "": 1, - "": 1, - "#if": 10, - "(": 612, - "defined": 1, - "OBJC_API_VERSION": 2, - ")": 610, - "&&": 12, - "static": 16, - "inline": 3, - "IMP": 4, - "method_setImplementation": 2, - "Method": 2, - "m": 3, - "i": 29, - "{": 151, - "oi": 2, - "-": 175, - "method_imp": 2, - ";": 494, - "return": 149, - "}": 148, - "#endif": 19, - "namespace": 1, - "WebCore": 1, - "ENABLE": 10, - "DRAG_SUPPORT": 7, - "const": 16, - "double": 1, - "EventHandler": 30, - "TextDragDelay": 1, - "RetainPtr": 4, - "": 4, - "&": 21, - "currentNSEventSlot": 6, - "DEFINE_STATIC_LOCAL": 1, - "event": 30, - "NSEvent": 21, - "*EventHandler": 2, - "currentNSEvent": 13, - ".get": 1, - "class": 14, - "CurrentEventScope": 14, - "WTF_MAKE_NONCOPYABLE": 1, - "public": 1, - "*": 34, - "private": 1, - "m_savedCurrentEvent": 3, - "#ifndef": 3, - "NDEBUG": 2, - "m_event": 3, - "*event": 11, - "ASSERT": 13, - "bool": 26, - "wheelEvent": 5, - "Page*": 7, - "page": 33, - "m_frame": 24, - "if": 104, - "false": 40, - "scope": 6, - "PlatformWheelEvent": 2, - "chrome": 8, - "platformPageClient": 4, - "handleWheelEvent": 2, - "wheelEvent.isAccepted": 1, - "PassRefPtr": 2, - "": 1, - "currentKeyboardEvent": 1, - "[": 268, - "NSApp": 5, - "currentEvent": 2, - "]": 266, - "switch": 4, - "type": 10, - "case": 25, - "NSKeyDown": 4, - "PlatformKeyboardEvent": 6, - "platformEvent": 2, - "platformEvent.disambiguateKeyDownEvent": 1, - "RawKeyDown": 1, - "KeyboardEvent": 2, - "create": 3, - "document": 6, - "defaultView": 2, - "NSKeyUp": 3, - "default": 3, - "keyEvent": 2, - "BEGIN_BLOCK_OBJC_EXCEPTIONS": 13, - "||": 18, - "END_BLOCK_OBJC_EXCEPTIONS": 13, - "void": 18, - "focusDocumentView": 1, - "FrameView*": 7, - "frameView": 4, - "view": 28, - "NSView": 14, - "*documentView": 1, - "documentView": 2, - "focusNSView": 1, - "focusController": 1, - "setFocusedFrame": 1, - "passWidgetMouseDownEventToWidget": 3, - "MouseEventWithHitTestResults": 7, - "RenderObject*": 2, - "target": 6, - "targetNode": 3, - "renderer": 7, - "isWidget": 2, - "passMouseDownEventToWidget": 3, - "toRenderWidget": 3, - "widget": 18, - "RenderWidget*": 1, - "renderWidget": 2, - "lastEventIsMouseUp": 2, - "*currentEventAfterHandlingMouseDown": 1, - "currentEventAfterHandlingMouseDown": 3, - "NSLeftMouseUp": 3, - "timestamp": 8, - "Widget*": 3, - "pWidget": 2, - "RefPtr": 1, - "": 1, - "LOG_ERROR": 1, - "true": 29, - "platformWidget": 6, - "*nodeView": 1, - "nodeView": 9, - "superview": 5, - "*view": 4, - "hitTest": 2, - "convertPoint": 2, - "locationInWindow": 4, - "fromView": 3, - "nil": 25, - "client": 3, - "firstResponder": 1, - "clickCount": 8, - "<=>": 1, - "1": 1, - "acceptsFirstResponder": 1, - "needsPanelToBecomeKey": 1, - "makeFirstResponder": 1, - "wasDeferringLoading": 3, - "defersLoading": 1, - "setDefersLoading": 2, - "m_sendingEventToSubview": 24, - "*outerView": 1, - "getOuterView": 1, - "beforeMouseDown": 1, - "outerView": 2, - "widget.get": 2, - "mouseDown": 2, - "afterMouseDown": 1, - "m_mouseDownView": 5, - "m_mouseDownWasInSubframe": 7, - "m_mousePressed": 2, - "findViewInSubviews": 3, - "*superview": 1, - "*target": 1, - "NSEnumerator": 1, - "*e": 1, - "subviews": 1, - "objectEnumerator": 1, - "*subview": 1, - "while": 4, - "subview": 3, - "e": 1, - "nextObject": 1, - "mouseDownViewIfStillGood": 3, - "*mouseDownView": 1, - "mouseDownView": 3, - "topFrameView": 3, - "*topView": 1, - "topView": 2, - "eventLoopHandleMouseDragged": 1, - "mouseDragged": 2, - "//": 7, - "eventLoopHandleMouseUp": 1, - "mouseUp": 2, - "passSubframeEventToSubframe": 4, - "Frame*": 5, - "subframe": 13, - "HitTestResult*": 2, - "hoveredNode": 5, - "NSLeftMouseDragged": 1, - "NSOtherMouseDragged": 1, - "NSRightMouseDragged": 1, - "dragController": 1, - "didInitiateDrag": 1, - "NSMouseMoved": 2, - "eventHandler": 6, - "handleMouseMoveEvent": 3, - "currentPlatformMouseEvent": 8, - "NSLeftMouseDown": 3, - "Node*": 1, - "node": 3, - "isFrameView": 2, - "handleMouseReleaseEvent": 3, - "originalNSScrollViewScrollWheel": 4, - "_nsScrollViewScrollWheelShouldRetainSelf": 3, - "selfRetainingNSScrollViewScrollWheel": 3, - "NSScrollView": 2, - "SEL": 2, - "nsScrollViewScrollWheelShouldRetainSelf": 2, - "isMainThread": 3, - "setNSScrollViewScrollWheelShouldRetainSelf": 3, - "shouldRetain": 2, - "method": 2, - "class_getInstanceMethod": 1, - "objc_getRequiredClass": 1, - "@selector": 4, - "scrollWheel": 2, - "reinterpret_cast": 1, - "": 1, - "*self": 1, - "selector": 2, - "shouldRetainSelf": 3, - "self": 70, - "retain": 1, - "release": 1, - "passWheelEventToWidget": 1, - "NSView*": 1, - "static_cast": 1, - "": 1, - "frame": 3, - "NSScrollWheel": 1, - "v": 6, - "loader": 1, - "resetMultipleFormSubmissionProtection": 1, - "handleMousePressEvent": 2, - "int": 36, - "%": 2, - "handleMouseDoubleClickEvent": 1, - "else": 11, - "sendFakeEventsAfterWidgetTracking": 1, - "*initiatingEvent": 1, - "eventType": 5, - "initiatingEvent": 22, - "*fakeEvent": 1, - "fakeEvent": 6, - "mouseEventWithType": 2, - "location": 3, - "modifierFlags": 6, - "windowNumber": 6, - "context": 6, - "eventNumber": 3, - "pressure": 3, - "postEvent": 3, - "atStart": 3, - "YES": 6, - "keyEventWithType": 1, - "characters": 3, - "charactersIgnoringModifiers": 2, - "isARepeat": 2, - "keyCode": 2, - "window": 1, - "convertScreenToBase": 1, - "mouseLocation": 1, - "mouseMoved": 2, - "frameHasPlatformWidget": 4, - "passMousePressEventToSubframe": 1, - "mev": 6, - "mev.event": 3, - "passMouseMoveEventToSubframe": 1, - "m_mouseDownMayStartDrag": 1, - "passMouseReleaseEventToSubframe": 1, - "PlatformMouseEvent": 5, - "*windowView": 1, - "windowView": 2, - "CONTEXT_MENUS": 2, - "sendContextMenuEvent": 2, - "eventMayStartDrag": 2, - "eventActivatedView": 1, - "m_activationEventNumber": 1, - "event.eventNumber": 1, - "": 1, - "createDraggingClipboard": 1, - "NSPasteboard": 2, - "*pasteboard": 1, - "pasteboardWithName": 1, - "NSDragPboard": 1, - "pasteboard": 2, - "declareTypes": 1, - "NSArray": 3, - "array": 2, - "owner": 15, - "ClipboardMac": 1, - "Clipboard": 1, - "DragAndDrop": 1, - "ClipboardWritable": 1, - "tabsToAllFormControls": 1, - "KeyboardEvent*": 1, - "KeyboardUIMode": 1, - "keyboardUIMode": 5, - "handlingOptionTab": 4, - "isKeyboardOptionTab": 1, - "KeyboardAccessTabsToLinks": 2, - "KeyboardAccessFull": 1, - "needsKeyboardEventDisambiguationQuirks": 2, - "Document*": 1, - "applicationIsSafari": 1, - "url": 2, - ".protocolIs": 2, - "Settings*": 1, - "settings": 5, - "DASHBOARD_SUPPORT": 1, - "usesDashboardBackwardCompatibilityMode": 1, - "unsigned": 2, - "accessKeyModifiers": 1, - "AXObjectCache": 1, - "accessibilityEnhancedUserInterfaceEnabled": 1, - "CtrlKey": 2, - "|": 3, - "AltKey": 1, "#import": 3, "": 1, "": 1, + "#if": 10, "#ifdef": 6, "OODEBUG": 1, "#define": 1, "OODEBUG_SQL": 4, + "#endif": 19, "OOOODatabase": 1, "OODB": 1, + ";": 494, + "static": 16, "NSString": 25, "*kOOObject": 1, "@": 28, @@ -48503,12 +48488,20 @@ "records": 1, "@implementation": 7, "+": 55, + "(": 612, "id": 19, + ")": 610, "record": 18, "OO_AUTORETURNS": 2, + "{": 151, + "return": 149, "OO_AUTORELEASE": 3, + "[": 268, + "self": 70, "alloc": 11, + "]": 266, "init": 4, + "}": 148, "insert": 7, "*record": 4, "insertWithParent": 1, @@ -48517,17 +48510,22 @@ "sharedInstance": 37, "copyJoinKeysFrom": 1, "to": 6, + "-": 175, "delete": 4, + "void": 18, "update": 4, "indate": 4, "upsert": 4, + "int": 36, "commit": 6, "rollback": 5, "setNilValueForKey": 1, + "*": 34, "key": 2, "OOReference": 2, "": 1, "zeroForNull": 4, + "if": 104, "NSNumber": 4, "numberWithInt": 1, "setValue": 1, @@ -48535,13 +48533,16 @@ "OOArray": 16, "": 14, "select": 21, + "nil": 25, "intoClass": 11, "joinFrom": 10, "cOOString": 15, "sql": 21, "selectRecordsRelatedTo": 1, + "class": 14, "importFrom": 1, "OOFile": 4, + "&": 21, "file": 2, "delimiter": 4, "delim": 4, @@ -48556,14 +48557,17 @@ "export": 1, "bindToView": 1, "OOView": 2, + "view": 28, "delegate": 4, "bindRecord": 1, "toView": 1, "updateFromView": 1, "updateRecord": 1, + "fromView": 3, "description": 6, "*metaData": 14, "metaDataForClass": 3, + "//": 7, "hack": 1, "required": 2, "where": 1, @@ -48641,6 +48645,7 @@ "initWithFormat": 3, "arguments": 3, "va_end": 3, + "const": 16, "objects": 4, "deleteArray": 2, "object": 13, @@ -48667,9 +48672,12 @@ "<": 5, "superClass": 5, "class_getName": 4, + "while": 4, "class_getSuperclass": 1, "respondsToSelector": 2, + "@selector": 4, "ooTableSql": 1, + "else": 11, "tableMetaDataForClass": 8, "break": 6, "delay": 1, @@ -48705,6 +48713,7 @@ "format": 1, "string": 1, "escape": 1, + "characters": 3, "Any": 1, "results": 3, "returned": 1, @@ -48712,12 +48721,14 @@ "placed": 1, "as": 1, "an": 1, + "array": 2, "dictionary": 1, "results.": 1, "*/": 1, "errcode": 12, "OOString": 6, "stringForSql": 2, + "&&": 12, "*aColumnName": 1, "**results": 1, "allKeys": 1, @@ -48737,9 +48748,11 @@ "NSLog": 4, "*joinValues": 1, "*adaptor": 7, + "||": 18, "": 1, "tablesRelatedByNaturalJoinFrom": 1, "tablesWithNaturalJoin": 5, + "i": 29, "**tablesWithNaturalJoin": 1, "*childMetaData": 1, "tableMetaDataByClassName": 3, @@ -48777,6 +48790,7 @@ "quote": 2, "commaQuote": 2, "": 1, + "YES": 6, "commited": 2, "updateCount": 2, "transaction": 2, @@ -48786,6 +48800,7 @@ "*transaction": 1, "d": 2, "": 1, + "#ifndef": 3, "OO_ARC": 1, "boxed": 1, "valueForKey": 1, @@ -48799,6 +48814,7 @@ "indexes": 1, "idx": 2, "implements": 1, + "owner": 15, ".directory": 1, ".mkdir": 1, "sqlite3_open": 1, @@ -48834,6 +48850,9 @@ "length": 4, "*type": 1, "objCType": 1, + "type": 10, + "switch": 4, + "case": 25, "sqlite3_bind_int": 1, "intValue": 3, "sqlite3_bind_int64": 1, @@ -48854,6 +48873,7 @@ "initWithDouble": 1, "sqlite3_column_double": 1, "SQLITE_TEXT": 1, + "unsigned": 2, "*bytes": 2, "sqlite3_column_text": 1, "NSMutableString": 1, @@ -48861,6 +48881,7 @@ "sqlite3_column_bytes": 2, "SQLITE_BLOB": 1, "sqlite3_column_blob": 1, + "default": 3, "out": 4, "awakeFromDB": 4, "instancesRespondToSelector": 1, @@ -48888,6 +48909,7 @@ "q": 1, "Q": 1, "f": 1, + "%": 2, "_": 2, "tag": 1, "A": 2, @@ -48904,13 +48926,288 @@ "stringValue": 4, "charValue": 1, "shortValue": 1, + "NSArray": 3, "OOReplace": 2, "reformat": 4, + "|": 3, "NSDictionary": 2, "__IPHONE_OS_VERSION_MIN_REQUIRED": 1, "UISwitch": 2, "text": 1, - "self.on": 1 + "self.on": 1, + "#include": 26, + "": 1, + "": 1, + "defined": 1, + "OBJC_API_VERSION": 2, + "inline": 3, + "IMP": 4, + "method_setImplementation": 2, + "Method": 2, + "m": 3, + "oi": 2, + "method_imp": 2, + "namespace": 1, + "WebCore": 1, + "ENABLE": 10, + "DRAG_SUPPORT": 7, + "double": 1, + "EventHandler": 30, + "TextDragDelay": 1, + "RetainPtr": 4, + "": 4, + "currentNSEventSlot": 6, + "DEFINE_STATIC_LOCAL": 1, + "event": 30, + "NSEvent": 21, + "*EventHandler": 2, + "currentNSEvent": 13, + ".get": 1, + "CurrentEventScope": 14, + "WTF_MAKE_NONCOPYABLE": 1, + "public": 1, + "private": 1, + "m_savedCurrentEvent": 3, + "NDEBUG": 2, + "m_event": 3, + "*event": 11, + "ASSERT": 13, + "bool": 26, + "wheelEvent": 5, + "Page*": 7, + "page": 33, + "m_frame": 24, + "false": 40, + "scope": 6, + "PlatformWheelEvent": 2, + "chrome": 8, + "platformPageClient": 4, + "handleWheelEvent": 2, + "wheelEvent.isAccepted": 1, + "PassRefPtr": 2, + "": 1, + "currentKeyboardEvent": 1, + "NSApp": 5, + "currentEvent": 2, + "NSKeyDown": 4, + "PlatformKeyboardEvent": 6, + "platformEvent": 2, + "platformEvent.disambiguateKeyDownEvent": 1, + "RawKeyDown": 1, + "KeyboardEvent": 2, + "create": 3, + "document": 6, + "defaultView": 2, + "NSKeyUp": 3, + "keyEvent": 2, + "BEGIN_BLOCK_OBJC_EXCEPTIONS": 13, + "END_BLOCK_OBJC_EXCEPTIONS": 13, + "focusDocumentView": 1, + "FrameView*": 7, + "frameView": 4, + "NSView": 14, + "*documentView": 1, + "documentView": 2, + "focusNSView": 1, + "focusController": 1, + "setFocusedFrame": 1, + "passWidgetMouseDownEventToWidget": 3, + "MouseEventWithHitTestResults": 7, + "RenderObject*": 2, + "target": 6, + "targetNode": 3, + "renderer": 7, + "isWidget": 2, + "passMouseDownEventToWidget": 3, + "toRenderWidget": 3, + "widget": 18, + "RenderWidget*": 1, + "renderWidget": 2, + "lastEventIsMouseUp": 2, + "*currentEventAfterHandlingMouseDown": 1, + "currentEventAfterHandlingMouseDown": 3, + "NSLeftMouseUp": 3, + "timestamp": 8, + "Widget*": 3, + "pWidget": 2, + "RefPtr": 1, + "": 1, + "LOG_ERROR": 1, + "true": 29, + "platformWidget": 6, + "*nodeView": 1, + "nodeView": 9, + "superview": 5, + "*view": 4, + "hitTest": 2, + "convertPoint": 2, + "locationInWindow": 4, + "client": 3, + "firstResponder": 1, + "clickCount": 8, + "<=>": 1, + "1": 1, + "acceptsFirstResponder": 1, + "needsPanelToBecomeKey": 1, + "makeFirstResponder": 1, + "wasDeferringLoading": 3, + "defersLoading": 1, + "setDefersLoading": 2, + "m_sendingEventToSubview": 24, + "*outerView": 1, + "getOuterView": 1, + "beforeMouseDown": 1, + "outerView": 2, + "widget.get": 2, + "mouseDown": 2, + "afterMouseDown": 1, + "m_mouseDownView": 5, + "m_mouseDownWasInSubframe": 7, + "m_mousePressed": 2, + "findViewInSubviews": 3, + "*superview": 1, + "*target": 1, + "NSEnumerator": 1, + "*e": 1, + "subviews": 1, + "objectEnumerator": 1, + "*subview": 1, + "subview": 3, + "e": 1, + "nextObject": 1, + "mouseDownViewIfStillGood": 3, + "*mouseDownView": 1, + "mouseDownView": 3, + "topFrameView": 3, + "*topView": 1, + "topView": 2, + "eventLoopHandleMouseDragged": 1, + "mouseDragged": 2, + "eventLoopHandleMouseUp": 1, + "mouseUp": 2, + "passSubframeEventToSubframe": 4, + "Frame*": 5, + "subframe": 13, + "HitTestResult*": 2, + "hoveredNode": 5, + "NSLeftMouseDragged": 1, + "NSOtherMouseDragged": 1, + "NSRightMouseDragged": 1, + "dragController": 1, + "didInitiateDrag": 1, + "NSMouseMoved": 2, + "eventHandler": 6, + "handleMouseMoveEvent": 3, + "currentPlatformMouseEvent": 8, + "NSLeftMouseDown": 3, + "Node*": 1, + "node": 3, + "isFrameView": 2, + "handleMouseReleaseEvent": 3, + "originalNSScrollViewScrollWheel": 4, + "_nsScrollViewScrollWheelShouldRetainSelf": 3, + "selfRetainingNSScrollViewScrollWheel": 3, + "NSScrollView": 2, + "SEL": 2, + "nsScrollViewScrollWheelShouldRetainSelf": 2, + "isMainThread": 3, + "setNSScrollViewScrollWheelShouldRetainSelf": 3, + "shouldRetain": 2, + "method": 2, + "class_getInstanceMethod": 1, + "objc_getRequiredClass": 1, + "scrollWheel": 2, + "reinterpret_cast": 1, + "": 1, + "*self": 1, + "selector": 2, + "shouldRetainSelf": 3, + "retain": 1, + "release": 1, + "passWheelEventToWidget": 1, + "NSView*": 1, + "static_cast": 1, + "": 1, + "frame": 3, + "NSScrollWheel": 1, + "v": 6, + "loader": 1, + "resetMultipleFormSubmissionProtection": 1, + "handleMousePressEvent": 2, + "handleMouseDoubleClickEvent": 1, + "sendFakeEventsAfterWidgetTracking": 1, + "*initiatingEvent": 1, + "eventType": 5, + "initiatingEvent": 22, + "*fakeEvent": 1, + "fakeEvent": 6, + "mouseEventWithType": 2, + "location": 3, + "modifierFlags": 6, + "windowNumber": 6, + "context": 6, + "eventNumber": 3, + "pressure": 3, + "postEvent": 3, + "atStart": 3, + "keyEventWithType": 1, + "charactersIgnoringModifiers": 2, + "isARepeat": 2, + "keyCode": 2, + "window": 1, + "convertScreenToBase": 1, + "mouseLocation": 1, + "mouseMoved": 2, + "frameHasPlatformWidget": 4, + "passMousePressEventToSubframe": 1, + "mev": 6, + "mev.event": 3, + "passMouseMoveEventToSubframe": 1, + "m_mouseDownMayStartDrag": 1, + "passMouseReleaseEventToSubframe": 1, + "PlatformMouseEvent": 5, + "*windowView": 1, + "windowView": 2, + "CONTEXT_MENUS": 2, + "sendContextMenuEvent": 2, + "eventMayStartDrag": 2, + "eventActivatedView": 1, + "m_activationEventNumber": 1, + "event.eventNumber": 1, + "": 1, + "createDraggingClipboard": 1, + "NSPasteboard": 2, + "*pasteboard": 1, + "pasteboardWithName": 1, + "NSDragPboard": 1, + "pasteboard": 2, + "declareTypes": 1, + "ClipboardMac": 1, + "Clipboard": 1, + "DragAndDrop": 1, + "ClipboardWritable": 1, + "tabsToAllFormControls": 1, + "KeyboardEvent*": 1, + "KeyboardUIMode": 1, + "keyboardUIMode": 5, + "handlingOptionTab": 4, + "isKeyboardOptionTab": 1, + "KeyboardAccessTabsToLinks": 2, + "KeyboardAccessFull": 1, + "needsKeyboardEventDisambiguationQuirks": 2, + "Document*": 1, + "applicationIsSafari": 1, + "url": 2, + ".protocolIs": 2, + "Settings*": 1, + "settings": 5, + "DASHBOARD_SUPPORT": 1, + "usesDashboardBackwardCompatibilityMode": 1, + "accessKeyModifiers": 1, + "AXObjectCache": 1, + "accessibilityEnhancedUserInterfaceEnabled": 1, + "CtrlKey": 2, + "AltKey": 1 }, "Omgrofl": { "lol": 14, @@ -48998,22 +49295,89 @@ "*x": 1 }, "OpenEdge ABL": { + "DEFINE": 16, + "INPUT": 11, + "PARAMETER": 3, + "objSendEmailAlg": 2, + "AS": 21, + "email.SendEmailSocket": 1, + "NO": 13, + "-": 73, + "UNDO.": 12, + "VARIABLE": 12, + "vbuffer": 9, + "MEMPTR": 2, + "vstatus": 1, + "LOGICAL": 1, + "vState": 2, + "INTEGER": 6, + "ASSIGN": 2, + "vstate": 1, + "FUNCTION": 1, + "getHostname": 1, + "RETURNS": 1, + "CHARACTER": 9, + "(": 44, + ")": 44, + "cHostname": 1, + "THROUGH": 1, + "hostname": 1, + "ECHO.": 1, + "IMPORT": 1, + "UNFORMATTED": 1, + "cHostname.": 2, + "CLOSE.": 1, + "RETURN": 7, + "END": 12, + "FUNCTION.": 1, + "PROCEDURE": 2, + "newState": 2, + "INTEGER.": 1, + "pstring": 4, + "CHARACTER.": 1, + "newState.": 1, + "IF": 2, + "THEN": 2, + "RETURN.": 1, + "SET": 5, + "SIZE": 5, + "LENGTH": 3, + "+": 21, + "PUT": 1, + "STRING": 7, + "pstring.": 1, + "SELF": 4, + "WRITE": 1, + ".": 14, + "PROCEDURE.": 2, + "ReadSocketResponse": 1, + "vlength": 5, + "str": 3, + "v": 1, + "MESSAGE": 2, + "GET": 3, + "BYTES": 2, + "AVAILABLE": 2, + "VIEW": 1, + "ALERT": 1, + "BOX.": 1, + "DO": 2, + "READ": 1, + "handleResponse": 1, + "END.": 2, "USING": 3, "Progress.Lang.*.": 3, "CLASS": 2, "email.Email": 2, "USE": 2, - "-": 73, "WIDGET": 2, "POOL": 2, "&": 3, "SCOPED": 1, - "DEFINE": 16, "QUOTES": 1, "@#": 1, "%": 2, "*": 2, - "+": 21, "._MIME_BOUNDARY_.": 1, "#@": 1, "WIN": 1, @@ -49091,87 +49455,20 @@ "filename": 2, "ttAttachments.cFileName": 2, "cNewLine.": 1, - "RETURN": 7, "lcReturnData.": 1, - "END": 12, "METHOD.": 6, "METHOD": 6, "PUBLIC": 6, - "CHARACTER": 9, "send": 1, - "(": 44, - ")": 44, "objSendEmailAlgorithm": 1, "sendEmail": 2, - "INPUT": 11, "THIS": 1, "OBJECT": 2, - ".": 14, "CLASS.": 2, - "MESSAGE": 2, "INTERFACE": 1, "email.SendEmailAlgorithm": 1, "ipobjEmail": 1, - "AS": 21, "INTERFACE.": 1, - "PARAMETER": 3, - "objSendEmailAlg": 2, - "email.SendEmailSocket": 1, - "NO": 13, - "UNDO.": 12, - "VARIABLE": 12, - "vbuffer": 9, - "MEMPTR": 2, - "vstatus": 1, - "LOGICAL": 1, - "vState": 2, - "INTEGER": 6, - "ASSIGN": 2, - "vstate": 1, - "FUNCTION": 1, - "getHostname": 1, - "RETURNS": 1, - "cHostname": 1, - "THROUGH": 1, - "hostname": 1, - "ECHO.": 1, - "IMPORT": 1, - "UNFORMATTED": 1, - "cHostname.": 2, - "CLOSE.": 1, - "FUNCTION.": 1, - "PROCEDURE": 2, - "newState": 2, - "INTEGER.": 1, - "pstring": 4, - "CHARACTER.": 1, - "newState.": 1, - "IF": 2, - "THEN": 2, - "RETURN.": 1, - "SET": 5, - "SIZE": 5, - "LENGTH": 3, - "PUT": 1, - "STRING": 7, - "pstring.": 1, - "SELF": 4, - "WRITE": 1, - "PROCEDURE.": 2, - "ReadSocketResponse": 1, - "vlength": 5, - "str": 3, - "v": 1, - "GET": 3, - "BYTES": 2, - "AVAILABLE": 2, - "VIEW": 1, - "ALERT": 1, - "BOX.": 1, - "DO": 2, - "READ": 1, - "handleResponse": 1, - "END.": 2, "email.Util": 1, "FINAL": 1, "PRIVATE": 1, @@ -49417,171 +49714,12 @@ "it": 1 }, "Ox": { - "#include": 2, - "Kapital": 4, - "(": 119, - "L": 2, - "const": 4, - "N": 5, - "entrant": 8, - "exit": 2, - "KP": 14, - ")": 119, - "{": 22, - "StateVariable": 1, - ";": 91, - "this.entrant": 1, - "this.exit": 1, - "this.KP": 1, - "actual": 2, - "Kbar*vals/": 1, - "-": 31, - "upper": 3, - "log": 2, - ".Inf": 2, - "}": 22, - "Transit": 1, - "FeasA": 2, - "decl": 3, - "ent": 5, - "CV": 7, - "stayout": 3, - "[": 25, - "]": 25, - "exit.pos": 1, - "tprob": 5, - "sigu": 2, - "SigU": 2, - "if": 5, - "v": 2, - "&&": 1, - "return": 10, - "<0>": 1, - "ones": 1, - "probn": 2, - "Kbe": 2, - "/sigu": 1, - "Kb0": 2, - "+": 14, - "Kb2": 2, - "*upper": 1, - "/": 1, - "vals": 1, - "tprob.*": 1, - "zeros": 4, - ".*stayout": 1, - "FirmEntry": 6, - "Run": 1, - "Initialize": 3, - "GenerateSample": 2, - "BDP": 2, - "BayesianDP": 1, - "Rust": 1, - "Reachable": 2, - "sige": 2, - "new": 19, - "StDeviations": 1, - "<0.3,0.3>": 1, - "LaggedAction": 1, - "d": 2, - "array": 1, - "Kparams": 1, - "Positive": 4, - "Free": 1, - "Kb1": 1, - "Determined": 1, - "EndogenousStates": 1, - "K": 3, - "KN": 1, - "SetDelta": 1, - "Probability": 1, - "kcoef": 3, - "ecost": 3, - "Negative": 1, - "CreateSpaces": 1, - "Volume": 3, - "LOUD": 1, - "EM": 4, - "ValueIteration": 1, - "//": 17, - "Solve": 1, - "data": 4, - "DataSet": 1, - "Simulate": 1, - "DataN": 1, - "DataT": 1, - "FALSE": 1, - "Print": 1, - "ImaiJainChing": 1, - "delta": 1, - "*CV": 2, - "Utility": 1, - "u": 2, - "ent*CV": 1, - "*AV": 1, - "|": 1, - "ParallelObjective": 1, - "obj": 18, - "DONOTUSECLIENT": 2, - "isclass": 1, - "obj.p2p": 2, - "oxwarning": 1, - "obj.L": 1, - "P2P": 2, - "ObjClient": 4, - "ObjServer": 7, - "this.obj": 2, - "Execute": 4, - "basetag": 2, - "STOP_TAG": 1, - "iml": 1, - "obj.NvfuncTerms": 2, - "Nparams": 6, - "obj.nstruct": 2, - "Loop": 2, - "nxtmsgsz": 2, - "//free": 1, - "param": 1, - "length": 1, - "is": 1, - "no": 2, - "greater": 1, - "than": 1, - "QUIET": 2, - "println": 2, - "ID": 2, - "Server": 1, - "Recv": 1, - "ANY_TAG": 1, - "//receive": 1, - "the": 1, - "ending": 1, - "parameter": 1, - "vector": 1, - "Encode": 3, - "Buffer": 8, - "//encode": 1, - "it.": 1, - "Decode": 1, - "obj.nfree": 1, - "obj.cur.V": 1, - "vfunc": 2, - "CstrServer": 3, - "SepServer": 3, - "Lagrangian": 1, - "rows": 1, - "obj.cur": 1, - "Vec": 1, - "obj.Kvar.v": 1, - "imod": 1, - "Tag": 1, - "obj.K": 1, - "TRUE": 1, - "obj.Kvar": 1, - "PDF": 1, - "*": 5, "nldge": 1, "ParticleLogLikeli": 1, + "(": 119, + ")": 119, + "{": 22, + "decl": 3, "it": 5, "ip": 1, "mss": 3, @@ -49609,19 +49747,24 @@ "timefun": 1, "timeint": 1, "timeres": 1, + ";": 91, "GetData": 1, "m_asY": 1, "sqrt": 1, "*M_PI": 1, "m_cY": 1, + "*": 5, "determinant": 2, "m_mMSbE.": 2, + "//": 17, "covariance": 2, "invert": 2, "of": 2, "measurement": 1, "shocks": 1, "m_vSss": 1, + "+": 14, + "zeros": 4, "m_cPar": 4, "m_cS": 1, "start": 1, @@ -49655,6 +49798,9 @@ "evaluate": 1, "importance": 1, "weights": 2, + "-": 31, + "[": 25, + "]": 25, "observation": 1, "error": 1, "exp": 2, @@ -49665,14 +49811,19 @@ ".*my": 1, ".": 3, ".NaN": 1, + "no": 2, "can": 1, "happen": 1, "extrem": 1, "sumc": 1, + "if": 5, + "return": 10, + ".Inf": 2, "or": 1, "extremely": 1, "wrong": 1, "parameters": 1, + "log": 2, "dws/m_cPar": 1, "loglikelihood": 1, "contribution": 1, @@ -49686,7 +49837,153 @@ "in": 1, "c": 1, "on": 1, - "normalized": 1 + "normalized": 1, + "}": 22, + "#include": 2, + "ParallelObjective": 1, + "obj": 18, + "DONOTUSECLIENT": 2, + "isclass": 1, + "obj.p2p": 2, + "oxwarning": 1, + "obj.L": 1, + "new": 19, + "P2P": 2, + "ObjClient": 4, + "ObjServer": 7, + "this.obj": 2, + "Execute": 4, + "basetag": 2, + "STOP_TAG": 1, + "iml": 1, + "obj.NvfuncTerms": 2, + "Nparams": 6, + "obj.nstruct": 2, + "Loop": 2, + "nxtmsgsz": 2, + "//free": 1, + "param": 1, + "length": 1, + "is": 1, + "greater": 1, + "than": 1, + "Volume": 3, + "QUIET": 2, + "println": 2, + "ID": 2, + "Server": 1, + "Recv": 1, + "ANY_TAG": 1, + "//receive": 1, + "the": 1, + "ending": 1, + "parameter": 1, + "vector": 1, + "Encode": 3, + "Buffer": 8, + "//encode": 1, + "it.": 1, + "Decode": 1, + "obj.nfree": 1, + "obj.cur.V": 1, + "vfunc": 2, + "CstrServer": 3, + "SepServer": 3, + "Lagrangian": 1, + "rows": 1, + "obj.cur": 1, + "Vec": 1, + "obj.Kvar.v": 1, + "imod": 1, + "Tag": 1, + "obj.K": 1, + "TRUE": 1, + "obj.Kvar": 1, + "PDF": 1, + "Kapital": 4, + "L": 2, + "const": 4, + "N": 5, + "entrant": 8, + "exit": 2, + "KP": 14, + "StateVariable": 1, + "this.entrant": 1, + "this.exit": 1, + "this.KP": 1, + "actual": 2, + "Kbar*vals/": 1, + "upper": 3, + "Transit": 1, + "FeasA": 2, + "ent": 5, + "CV": 7, + "stayout": 3, + "exit.pos": 1, + "tprob": 5, + "sigu": 2, + "SigU": 2, + "v": 2, + "&&": 1, + "<0>": 1, + "ones": 1, + "probn": 2, + "Kbe": 2, + "/sigu": 1, + "Kb0": 2, + "Kb2": 2, + "*upper": 1, + "/": 1, + "vals": 1, + "tprob.*": 1, + ".*stayout": 1, + "FirmEntry": 6, + "Run": 1, + "Initialize": 3, + "GenerateSample": 2, + "BDP": 2, + "BayesianDP": 1, + "Rust": 1, + "Reachable": 2, + "sige": 2, + "StDeviations": 1, + "<0.3,0.3>": 1, + "LaggedAction": 1, + "d": 2, + "array": 1, + "Kparams": 1, + "Positive": 4, + "Free": 1, + "Kb1": 1, + "Determined": 1, + "EndogenousStates": 1, + "K": 3, + "KN": 1, + "SetDelta": 1, + "Probability": 1, + "kcoef": 3, + "ecost": 3, + "Negative": 1, + "CreateSpaces": 1, + "LOUD": 1, + "EM": 4, + "ValueIteration": 1, + "Solve": 1, + "data": 4, + "DataSet": 1, + "Simulate": 1, + "DataN": 1, + "DataT": 1, + "FALSE": 1, + "Print": 1, + "ImaiJainChing": 1, + "delta": 1, + "*CV": 2, + "Utility": 1, + "u": 2, + "ent*CV": 1, + "*AV": 1, + "|": 1 }, "Oxygene": { "": 1, @@ -50209,92 +50506,6 @@ "value": 53, "asort": 1, "array_keys": 7, - "BrowserKit": 1, - "DomCrawler": 5, - "Crawler": 2, - "Link": 3, - "Form": 4, - "Process": 1, - "PhpProcess": 2, - "abstract": 2, - "Client": 1, - "history": 15, - "cookieJar": 9, - "server": 20, - "request": 76, - "response": 33, - "crawler": 7, - "insulated": 7, - "redirect": 6, - "followRedirects": 5, - "History": 2, - "CookieJar": 2, - "setServerParameters": 2, - "followRedirect": 4, - "insulate": 1, - "class_exists": 2, - "RuntimeException": 2, - "array_merge": 32, - "setServerParameter": 1, - "getServerParameter": 1, - "default": 9, - "getHistory": 1, - "getCookieJar": 1, - "getCrawler": 1, - "getResponse": 1, - "getRequest": 1, - "click": 1, - "link": 10, - "submit": 2, - "getMethod": 6, - "getUri": 8, - "form": 7, - "setValues": 2, - "getPhpValues": 2, - "getPhpFiles": 2, - "method": 31, - "uri": 23, - "parameters": 4, - "files": 7, - "content": 4, - "changeHistory": 4, - "getAbsoluteUri": 2, - "isEmpty": 2, - "current": 4, - "parse_url": 3, - "PHP_URL_HOST": 1, - "PHP_URL_SCHEME": 1, - "Request": 3, - "allValues": 1, - "filterRequest": 2, - "doRequestInProcess": 2, - "doRequest": 2, - "filterResponse": 2, - "updateFromResponse": 1, - "getHeader": 2, - "createCrawlerFromContent": 2, - "getContent": 2, - "getScript": 2, - "sys_get_temp_dir": 2, - "isSuccessful": 1, - "getOutput": 3, - "unserialize": 1, - "LogicException": 4, - "addContent": 1, - "back": 2, - "requestFromRequest": 4, - "forward": 2, - "reload": 1, - "empty": 96, - "restart": 1, - "clear": 2, - "currentUri": 7, - "path": 20, - "PHP_URL_PATH": 1, - "path.": 1, - "getParameters": 1, - "getFiles": 3, - "getServer": 1, "": 3, "CakePHP": 6, "tm": 6, @@ -50319,12 +50530,14 @@ "License": 4, "Redistributions": 2, "of": 10, + "files": 7, "must": 2, "retain": 2, "the": 11, "above": 2, "copyright": 5, "notice": 2, + "link": 10, "Project": 2, "package": 2, "Controller": 4, @@ -50404,6 +50617,8 @@ "You": 2, "can": 2, "access": 1, + "request": 76, + "parameters": 4, "using": 2, "contains": 1, "POST": 1, @@ -50422,6 +50637,7 @@ "This": 1, "usually": 1, "takes": 1, + "form": 7, "generated": 1, "possibly": 1, "to": 6, @@ -50430,6 +50646,7 @@ "In": 1, "either": 1, "case": 31, + "response": 33, "allows": 1, "you": 1, "manipulate": 1, @@ -50440,6 +50657,7 @@ "based": 2, "routing.": 1, "By": 1, + "default": 9, "conventional": 1, "names.": 1, "/posts/index": 1, @@ -50520,8 +50738,11 @@ "settings": 2, "__set": 1, "camelize": 3, + "array_merge": 32, "array_key_exists": 11, + "empty": 96, "invokeAction": 1, + "method": 31, "ReflectionMethod": 2, "_isPrivateAction": 2, "PrivateActionException": 1, @@ -50549,6 +50770,7 @@ "implementedEvents": 2, "constructClasses": 1, "init": 4, + "current": 4, "getEventManager": 13, "attach": 4, "startupProcess": 1, @@ -50558,6 +50780,7 @@ "code": 4, "id": 82, "MissingModelException": 1, + "redirect": 6, "url": 18, "status": 15, "extract": 9, @@ -50638,97 +50861,82 @@ "_afterScaffoldSaveError": 1, "scaffoldError": 2, "_scaffoldError": 1, - "php_help": 1, - "arg": 1, - "t": 26, - "php_permission": 1, - "TRUE": 1, - "php_eval": 1, - "global": 2, - "theme_path": 5, - "theme_info": 3, - "conf": 2, - "old_theme_path": 2, - "drupal_get_path": 1, - "dirname": 1, - "filename": 1, - "ob_start": 1, - "print": 1, - "eval": 1, - "ob_get_contents": 1, - "ob_end_clean": 1, - "_php_filter_tips": 1, - "filter": 1, - "format": 3, - "long": 2, - "FALSE": 2, - "base_url": 1, - "php_filter_info": 1, - "filters": 2, "SHEBANG#!php": 4, - "": 1, - "aMenuLinks": 1, - "Array": 13, - "Blog": 1, - "SITE_DIR": 4, - "Photos": 1, - "photo": 1, - "About": 1, - "me": 1, - "about": 1, - "Contact": 1, - "contacts": 1, - "Field": 9, - "FormField": 3, - "ArrayAccess": 1, - "button": 6, - "DOMNode": 3, - "initialize": 2, - "getFormNode": 1, - "getValues": 3, - "isDisabled": 2, - "FileFormField": 3, - "hasValue": 1, - "getValue": 2, - "qs": 4, - "http_build_query": 3, - "parse_str": 2, - "queryString": 2, - "sep": 1, - "sep.": 1, - "getRawUri": 1, - "getAttribute": 10, - "remove": 4, - "offsetExists": 1, - "offsetGet": 1, - "offsetSet": 1, - "offsetUnset": 1, - "setNode": 1, - "nodeName": 13, - "parentNode": 1, - "FormFieldRegistry": 2, - "document": 6, - "root": 4, - "xpath": 2, - "DOMXPath": 1, - "query": 102, - "hasAttribute": 1, - "InputFormField": 2, - "ChoiceFormField": 2, - "addChoice": 1, - "TextareaFormField": 1, - "base": 8, - "segments": 13, - "getSegments": 4, - "target": 20, - "array_shift": 5, - "self": 1, - "create": 13, - "k": 7, - "setValue": 1, - "walk": 3, - "registry": 4, - "m": 5, + "echo": 2, + "BrowserKit": 1, + "DomCrawler": 5, + "Crawler": 2, + "Link": 3, + "Form": 4, + "Process": 1, + "PhpProcess": 2, + "abstract": 2, + "Client": 1, + "history": 15, + "cookieJar": 9, + "server": 20, + "crawler": 7, + "insulated": 7, + "followRedirects": 5, + "History": 2, + "CookieJar": 2, + "setServerParameters": 2, + "followRedirect": 4, + "insulate": 1, + "class_exists": 2, + "RuntimeException": 2, + "setServerParameter": 1, + "getServerParameter": 1, + "getHistory": 1, + "getCookieJar": 1, + "getCrawler": 1, + "getResponse": 1, + "getRequest": 1, + "click": 1, + "submit": 2, + "getMethod": 6, + "getUri": 8, + "setValues": 2, + "getPhpValues": 2, + "getPhpFiles": 2, + "uri": 23, + "content": 4, + "changeHistory": 4, + "getAbsoluteUri": 2, + "isEmpty": 2, + "parse_url": 3, + "PHP_URL_HOST": 1, + "PHP_URL_SCHEME": 1, + "Request": 3, + "allValues": 1, + "filterRequest": 2, + "doRequestInProcess": 2, + "doRequest": 2, + "filterResponse": 2, + "updateFromResponse": 1, + "getHeader": 2, + "createCrawlerFromContent": 2, + "getContent": 2, + "getScript": 2, + "sys_get_temp_dir": 2, + "isSuccessful": 1, + "getOutput": 3, + "unserialize": 1, + "LogicException": 4, + "addContent": 1, + "back": 2, + "requestFromRequest": 4, + "forward": 2, + "reload": 1, + "restart": 1, + "clear": 2, + "currentUri": 7, + "path": 20, + "PHP_URL_PATH": 1, + "path.": 1, + "getParameters": 1, + "getFiles": 3, + "getServer": 1, "relational": 2, "mapper": 2, "DBO": 2, @@ -50801,6 +51009,8 @@ "__call": 1, "dispatchMethod": 1, "getDataSource": 15, + "query": 102, + "k": 7, "relation": 7, "assocKey": 13, "dynamic": 2, @@ -50829,6 +51039,7 @@ "MissingTableException": 1, "is_object": 2, "SimpleXMLElement": 1, + "DOMNode": 3, "_normalizeXmlData": 3, "toArray": 1, "reverse": 1, @@ -50845,6 +51056,7 @@ "timeFields": 2, "date": 9, "val": 27, + "format": 3, "columns": 5, "str_replace": 3, "describe": 1, @@ -50860,11 +51072,13 @@ "isVirtualField": 3, "hasMethod": 2, "getVirtualField": 1, + "create": 13, "filterKey": 2, "defaults": 6, "properties": 4, "read": 2, "conditions": 41, + "array_shift": 5, "saveField": 1, "options": 85, "save": 9, @@ -50972,7 +51186,90 @@ "isUnique": 1, "is_bool": 1, "sql": 1, - "echo": 2, + "php_help": 1, + "arg": 1, + "t": 26, + "php_permission": 1, + "TRUE": 1, + "php_eval": 1, + "global": 2, + "theme_path": 5, + "theme_info": 3, + "conf": 2, + "old_theme_path": 2, + "drupal_get_path": 1, + "dirname": 1, + "filename": 1, + "ob_start": 1, + "print": 1, + "eval": 1, + "ob_get_contents": 1, + "ob_end_clean": 1, + "_php_filter_tips": 1, + "filter": 1, + "long": 2, + "FALSE": 2, + "base_url": 1, + "php_filter_info": 1, + "filters": 2, + "Field": 9, + "FormField": 3, + "ArrayAccess": 1, + "button": 6, + "initialize": 2, + "getFormNode": 1, + "getValues": 3, + "isDisabled": 2, + "FileFormField": 3, + "hasValue": 1, + "getValue": 2, + "qs": 4, + "http_build_query": 3, + "parse_str": 2, + "queryString": 2, + "sep": 1, + "sep.": 1, + "getRawUri": 1, + "getAttribute": 10, + "remove": 4, + "offsetExists": 1, + "offsetGet": 1, + "offsetSet": 1, + "offsetUnset": 1, + "setNode": 1, + "nodeName": 13, + "parentNode": 1, + "FormFieldRegistry": 2, + "document": 6, + "root": 4, + "xpath": 2, + "DOMXPath": 1, + "hasAttribute": 1, + "InputFormField": 2, + "ChoiceFormField": 2, + "addChoice": 1, + "TextareaFormField": 1, + "base": 8, + "segments": 13, + "getSegments": 4, + "target": 20, + "self": 1, + "setValue": 1, + "walk": 3, + "registry": 4, + "m": 5, + "": 1, + "aMenuLinks": 1, + "Array": 13, + "Blog": 1, + "SITE_DIR": 4, + "Photos": 1, + "photo": 1, + "About": 1, + "me": 1, + "about": 1, + "Contact": 1, + "contacts": 1, "Yii": 3, "console": 3, "bootstrap": 1, @@ -51101,38 +51398,704 @@ "end.": 1 }, "Perl": { + "pod": 1, + "head1": 36, + "NAME": 6, + "Catalyst": 10, + "PSGI": 10, + "-": 868, + "How": 1, + "and": 85, + "work": 3, + "together": 2, + "SYNOPSIS": 6, + "The": 22, + "L": 34, + "": 3, + "specification": 3, + "defines": 2, + "an": 16, + "interface": 1, + "between": 4, + "web": 8, + "servers": 2, + "Perl": 9, + "based": 2, + "applications": 2, + "frameworks.": 1, + "It": 3, + "supports": 1, + "the": 143, + "writing": 1, + "of": 64, + "portable": 1, + "that": 33, + "can": 30, + "be": 36, + "run": 1, + "using": 5, + "various": 2, + "methods": 4, + "(": 925, + "as": 37, + "a": 85, + "standalone": 1, + "server": 2, + "or": 49, + "mod_perl": 3, + "FastCGI": 2, + "etc.": 3, + ")": 923, + ".": 125, + "": 3, + "is": 69, + "implementation": 1, + "for": 83, + "running": 1, + "applications.": 1, + "used": 12, + "to": 95, + "contain": 3, + "entire": 3, + "set": 12, + "C": 56, + "<<": 10, + "Engine": 1, + "XXXX": 1, + "classes": 2, + "handle": 3, + "environments": 1, + "e.g.": 2, + "CGI": 6, + "This": 27, + "has": 3, + "been": 1, + "changed": 1, + "in": 36, + "so": 4, + "all": 23, + "done": 2, + "by": 16, + "implementing": 1, + "s": 35, + "possible": 2, + "do": 12, + "it": 28, + "manually": 2, + "creating": 3, + "": 1, + "file": 49, + "root": 1, + "your": 20, + "application.": 1, + "head2": 34, + "Why": 3, + "would": 5, + "I": 68, + "want": 7, + "write": 2, + "my": 404, + "own": 4, + ".psgi": 7, + "Writing": 2, + "allows": 4, + "you": 44, + "use": 83, + "alternate": 1, + "": 1, + "command": 14, + "start": 7, + "application": 15, + "add": 9, + "extensions": 1, + "implement": 2, + "": 1, + "such": 6, + "": 1, + "": 1, + "simplest": 1, + "<.psgi>": 1, + "called": 4, + "": 1, + "strict": 18, + ";": 1193, + "warnings": 18, + "TestApp": 5, + "app": 2, + "psgi_app": 3, + "@_": 43, + "Note": 5, + "will": 9, + "apply": 3, + "number": 4, + "middleware": 2, + "components": 2, + "automatically": 2, + "these": 4, + "B": 76, + "": 1, + "not": 54, + "applied": 1, + "if": 276, + "create": 3, + "psgi": 2, + "yourself.": 2, + "Details": 1, + "found": 11, + "below.": 1, + "Additional": 1, + "information": 2, + "about": 4, + "files": 42, + "at": 4, + "": 1, + "What": 1, + "generates": 2, + "default": 19, + "which": 7, + "": 1, + "setting": 2, + "on": 25, + "wrapped": 1, + "": 1, + "contains": 2, + "some": 1, + "engine": 1, + "specific": 2, + "fixes": 1, + "uniform": 1, + "behaviour": 2, + "contained": 1, + "over": 2, + "item": 44, + "": 1, + "": 1, + "back": 4, + "If": 15, + "override": 1, + "providing": 2, + "then": 4, + "none": 1, + "things": 2, + "returned": 3, + "when": 18, + "call": 2, + "MyApp": 1, + "Thus": 1, + "need": 5, + "any": 4, + "this": 22, + "functionality": 1, + "ll": 1, + "An": 1, + "apply_default_middlewares": 2, + "method": 8, + "supplied": 1, + "wrap": 1, + "middlewares": 1, + "are": 25, + "file.": 3, + "means": 3, + "auto": 1, + "generated": 1, + "no": 22, + "code": 8, + "looks": 2, + "something": 3, + "like": 13, + "SEE": 4, + "ALSO": 4, + "": 1, + "": 1, + "AUTHORS": 2, + "Contributors": 1, + "see": 5, + "Catalyst.pm": 1, + "COPYRIGHT": 7, + "library": 2, + "free": 4, + "software.": 1, + "You": 4, + "redistribute": 4, + "and/or": 4, + "modify": 4, + "under": 5, + "same": 2, + "terms": 4, + "itself.": 3, + "cut": 28, "package": 14, + "Plack": 25, + "Request": 11, + "_001": 1, + "our": 34, + "VERSION": 15, + "eval": 8, + "HTTP": 16, + "Headers": 8, + "Carp": 11, + "Hash": 11, + "MultiValue": 9, + "Body": 2, + "Upload": 2, + "TempBuffer": 2, + "URI": 11, + "Escape": 6, + "sub": 225, + "_deprecated": 8, + "{": 1121, + "alt": 1, + "shift": 165, + "caller": 2, + "[": 159, + "]": 155, + "carp": 2, + "}": 1134, + "new": 55, + "class": 8, + "env": 76, + "croak": 3, + "q": 5, + "required": 2, + "unless": 39, + "defined": 54, + "&&": 83, + "ref": 33, + "eq": 31, + "bless": 7, + "_": 101, + "address": 2, + "REMOTE_ADDR": 1, + "remote_host": 2, + "REMOTE_HOST": 1, + "protocol": 1, + "SERVER_PROTOCOL": 1, + "REQUEST_METHOD": 1, + "port": 1, + "SERVER_PORT": 2, + "user": 4, + "REMOTE_USER": 1, + "request_uri": 1, + "REQUEST_URI": 2, + "path_info": 4, + "PATH_INFO": 3, + "path": 28, + "||": 49, + "script_name": 1, + "SCRIPT_NAME": 2, + "scheme": 3, + "secure": 2, + "body": 30, + "input": 9, + "content_length": 4, + "CONTENT_LENGTH": 3, + "content_type": 5, + "CONTENT_TYPE": 2, + "session": 1, + "session_options": 1, + "logger": 1, + "cookies": 9, + "self": 141, + "return": 157, + "HTTP_COOKIE": 3, + "%": 78, + "results": 8, + "@pairs": 2, + "grep": 17, + "/": 69, + "split": 13, + "pair": 4, + "s/": 22, + "+": 120, + "//": 9, + "key": 20, + "value": 12, + "map": 10, + "uri_unescape": 1, + "exists": 19, + "query_parameters": 3, + "uri": 11, + "query_form": 2, + "content": 8, + "_parse_request_body": 4, + "fh": 28, + "cl": 10, + "read": 6, + "seek": 4, + "raw_body": 1, + "headers": 56, + "field": 2, + "HTTPS": 1, + "_//": 1, + "|": 28, + "CONTENT": 1, + "COOKIE": 1, + "/i": 2, + "keys": 15, + "content_encoding": 5, + "header": 17, + "referer": 3, + "user_agent": 3, + "body_parameters": 3, + "parameters": 8, + "query": 4, + "flatten": 3, + "uploads": 5, + "hostname": 1, + "url_scheme": 1, + "params": 1, + "query_params": 1, + "body_params": 1, + "cookie": 6, + "name": 44, + "param": 8, + "wantarray": 3, + "get_all": 2, + "upload": 13, + "raw_uri": 1, + "base": 10, + "path_query": 1, + "_uri_base": 3, + "path_escape_class": 2, + "uri_escape": 3, + "QUERY_STRING": 3, + "ne": 9, + "m": 17, + "canonical": 2, + "HTTP_HOST": 1, + "SERVER_NAME": 1, + "new_response": 4, + "require": 12, + "Response": 16, + "ct": 3, + "cleanup": 1, + "buffer": 9, + "else": 53, + "spin": 2, + "while": 31, + "chunk": 4, + "<": 15, + "length": 1, + "print": 35, + "rewind": 1, + "from_mixed": 2, + "@uploads": 3, + "@obj": 3, + "k": 6, + "v": 19, + "splice": 2, + "push": 30, + "_make_upload": 2, + "copy": 4, + "__END__": 2, + "Portable": 2, + "request": 11, + "object": 6, + "from": 19, + "hash": 11, + "app_or_middleware": 1, + "#": 99, + "req": 28, + "res": 59, + "finalize": 5, + "DESCRIPTION": 4, + "": 2, + "provides": 1, + "consistent": 1, + "API": 2, + "objects": 2, + "across": 1, + "environments.": 1, + "CAVEAT": 1, + "module": 2, + "intended": 1, + "developers": 3, + "framework": 2, + "rather": 2, + "than": 5, + "end": 9, + "users": 4, + "directly": 1, + "certainly": 2, + "but": 4, + "recommended": 1, + "Apache": 2, + "yet": 1, + "too": 1, + "low": 1, + "level.": 1, + "re": 3, + "encouraged": 1, + "one": 9, + "frameworks": 2, + "support": 2, + "": 1, + "modules": 1, + "": 1, + "provide": 1, + "higher": 1, + "level": 1, + "top": 1, + "PSGI.": 1, + "METHODS": 2, + "Some": 1, + "earlier": 1, + "versions": 1, + "deprecated": 1, + "version": 2, + "Take": 1, + "look": 2, + "": 1, + "Unless": 1, + "otherwise": 2, + "noted": 1, + "attributes": 4, + "": 1, + "passing": 1, + "values": 5, + "accessor": 1, + "doesn": 8, + "debug": 1, + "set.": 1, + "Returns": 10, + "": 2, + "containing": 5, + "current": 5, + "request.": 1, + "reference": 8, + "uploads.": 2, + "": 2, + "": 1, + "objects.": 1, + "Shortcut": 6, + "content_encoding.": 1, + "content_length.": 1, + "content_type.": 1, + "header.": 2, + "referer.": 1, + "user_agent.": 1, + "GET": 1, + "POST": 1, + "with": 26, + "CGI.pm": 2, + "compatible": 1, + "method.": 1, + "alternative": 1, + "accessing": 1, + "parameters.": 3, + "Unlike": 1, + "does": 10, + "": 1, + "allow": 1, + "modifying": 1, + "@values": 1, + "@params": 1, + "A": 2, + "convenient": 1, + "access": 2, + "@fields": 1, + "filename": 68, + "Creates": 2, + "": 3, + "object.": 4, + "Handy": 1, + "remove": 2, + "dependency": 1, + "easy": 1, + "subclassing": 1, + "duck": 1, + "typing": 1, + "well": 2, + "overriding": 1, + "generation": 1, + "middlewares.": 1, + "Parameters": 1, + "take": 5, + "multiple": 5, + "i.e.": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "store": 1, + "plain": 2, + "where": 3, + "": 1, + "scalars": 1, + "": 2, + "array": 7, + "references": 1, + "don": 2, + "ARRAY": 1, + "foo": 6, + "t": 18, + "parse": 1, + "more": 2, + "twice": 1, + "efficiency.": 1, + "DISPATCHING": 1, + "wants": 1, + "dispatch": 1, + "route": 1, + "actions": 1, + "paths": 3, + "sure": 1, + "because": 3, + "": 1, + "gives": 2, + "virtual": 1, + "regardless": 1, + "how": 1, + "mounted.": 1, + "hosted": 1, + "scripts": 1, + "even": 4, + "multiplexed": 1, + "tools": 1, + "": 1, + "good": 2, + "idea": 1, + "subclass": 1, + "define": 1, + "uri_for": 2, + "args": 3, + "@": 38, + "So": 1, + "say": 1, + "link": 1, + "signoff": 1, + "": 1, + "empty.": 1, + "older": 1, + "behavior": 3, + "just": 2, + "instead.": 1, + "Cookie": 2, + "handling": 1, + "simplified": 1, + "always": 5, + "string": 5, + "encoding": 2, + "decoding": 1, + "them": 5, + "totally": 1, + "up": 1, + "framework.": 1, + "Also": 1, + "": 1, + "now": 1, + "returns": 4, + "": 1, + "Simple": 1, + "longer": 1, + "have": 2, + "wacky": 1, + "undef": 17, + "instead": 4, + "simply": 1, + "Tatsuhiko": 2, + "Miyagawa": 2, + "Kazuhiro": 1, + "Osawa": 1, + "Tokuhiro": 2, + "Matsuno": 2, + "": 1, + "": 1, + "LICENSE": 3, + "software": 3, + "SHEBANG#!perl": 5, + "Fast": 3, + "XML": 2, + "XS": 2, + "File": 54, + "Spec": 13, + "FindBin": 1, + "qw": 35, + "Bin": 3, + "#use": 1, + "lib": 2, + "catdir": 3, + "..": 7, + "_stop": 4, + "SIG": 3, + "exit": 16, + "ENV": 40, + "nginx": 2, + "external": 2, + "fcgi": 2, + "Ext_Request": 1, + "FCGI": 1, + "*STDIN": 2, + "*STDOUT": 6, + "*STDERR": 1, + "int": 2, + "ARGV": 2, + "conv": 2, + "use_attr": 1, + "indent": 1, + "output": 36, + "xml_decl": 1, + "tmpl_path": 2, + "tmpl": 5, + "data": 3, + "nick": 1, + "tree": 2, + "example": 5, + "parent": 5, + "id": 6, + "third_party": 1, + "artist_name": 2, + "venue": 2, + "event": 2, + "date": 2, + "zA": 1, + "Z0": 1, + "die": 38, + "e": 20, + "catfile": 4, + "qq": 18, + "Content": 2, + "type": 69, + "application/xml": 1, + "charset": 2, + "utf": 2, + "r": 14, + "n": 19, + "hash2xml": 1, + "text/html": 1, + "nError": 1, + "last": 17, + "M": 1, + "system": 1, + "Foo": 11, + "Bar": 1, + "@array": 1, + "SHEBANG#!#! perl": 4, + "i": 26, + "o": 17, + "examples/benchmarks/fib.pl": 1, + "Fibonacci": 2, + "Benchmark": 1, + "Calculates": 1, + "Number": 1, + "": 1, + "defaults": 16, + "unspecified": 1, + "fib": 4, + "N": 2, + "F": 24, + "": 1, "App": 131, "Ack": 136, - ";": 1193, - "use": 83, - "warnings": 18, - "strict": 18, - "File": 54, "Next": 27, "Plugin": 2, "Basic": 10, - "head1": 36, - "NAME": 6, - "-": 868, - "A": 2, "container": 1, - "for": 83, "functions": 2, - "the": 143, "ack": 38, "program": 6, - "VERSION": 15, "Version": 1, - "cut": 28, - "our": 34, - "COPYRIGHT": 7, "BEGIN": 7, - "{": 1121, - "}": 1134, - "fh": 28, - "*STDOUT": 6, - "%": 78, "types": 26, "type_wanted": 20, "mappings": 29, @@ -51142,9 +52105,6 @@ "dir_sep_chars": 10, "is_cygwin": 6, "is_windows": 12, - "Spec": 13, - "(": 925, - ")": 923, "Glob": 4, "Getopt": 6, "Long": 6, @@ -51157,29 +52117,18 @@ "_sgbak": 2, "_build": 2, "actionscript": 2, - "[": 159, - "qw": 35, - "as": 37, "mxml": 2, - "]": 155, "ada": 4, "adb": 2, "ads": 2, "asm": 4, - "s": 35, "batch": 2, "bat": 2, "cmd": 2, "binary": 3, - "q": 5, "Binary": 2, - "files": 42, - "defined": 54, - "by": 16, - "Perl": 9, "T": 2, "op": 2, - "default": 19, "off": 4, "tt": 4, "tt2": 2, @@ -51191,7 +52140,6 @@ "ctl": 2, "resx": 2, "verilog": 2, - "v": 19, "vh": 2, "sv": 2, "vhdl": 4, @@ -51204,106 +52152,57 @@ "xsl": 2, "xslt": 2, "ent": 2, - "while": 31, - "my": 404, - "type": 69, "exts": 6, "each": 14, - "if": 276, - "ref": 33, "ext": 14, - "@": 38, - "push": 30, - "_": 101, "mk": 2, "mak": 2, - "not": 54, - "t": 18, "p": 9, "STDIN": 2, "O": 4, - "eq": 31, "/MSWin32/": 2, "quotemeta": 5, - "catfile": 4, - "SYNOPSIS": 6, - "If": 15, - "you": 44, - "want": 7, - "to": 95, "know": 4, - "about": 4, - "F": 24, "": 13, - "see": 5, - "file": 49, - "itself.": 3, "No": 4, - "user": 4, "serviceable": 1, "parts": 1, "inside.": 1, - "is": 69, - "all": 23, - "that": 33, "should": 6, "this.": 1, "FUNCTIONS": 1, - "head2": 34, "read_ackrc": 4, "Reads": 1, "contents": 2, - "of": 64, ".ackrc": 1, - "and": 85, - "returns": 4, "arguments.": 1, - "sub": 225, "@files": 12, - "ENV": 40, "ACKRC": 2, "@dirs": 4, "HOME": 4, "USERPROFILE": 2, "dir": 27, - "grep": 17, "bsd_glob": 4, "GLOB_TILDE": 2, - "filename": 68, - "&&": 83, - "e": 20, "open": 7, - "or": 49, - "die": 38, "@lines": 21, "/./": 2, - "/": 69, "s*#/": 2, "<$fh>": 4, "chomp": 3, "close": 19, - "s/": 22, - "+": 120, - "//": 9, - "return": 157, "get_command_line_options": 4, "Gets": 3, - "command": 14, "line": 20, "arguments": 2, - "does": 10, - "specific": 2, "tweaking.": 1, "opt": 291, "pager": 19, "ACK_PAGER_COLOR": 7, - "||": 49, "ACK_PAGER": 5, "getopt_specs": 6, - "m": 17, "after_context": 16, "before_context": 18, - "shift": 165, "val": 26, "break": 14, "c": 5, @@ -51313,11 +52212,8 @@ "ACK_COLOR_FILENAME": 5, "ACK_COLOR_LINENO": 4, "column": 4, - "#": 99, "ignore": 7, - "this": 22, "option": 7, - "it": 28, "handled": 2, "beforehand": 2, "f": 25, @@ -51327,15 +52223,10 @@ "heading": 18, "h": 6, "H": 6, - "i": 26, "invert_file_match": 8, "lines": 19, "l": 17, "regex": 28, - "n": 19, - "o": 17, - "output": 36, - "undef": 17, "passthru": 9, "print0": 7, "Q": 7, @@ -51347,11 +52238,8 @@ "remove_dir_sep": 7, "delete": 10, "print_version_statement": 2, - "exit": 16, "show_help": 3, - "@_": 43, "show_help_types": 2, - "require": 12, "Pod": 4, "Usage": 4, "pod2usage": 2, @@ -51361,81 +52249,53 @@ "wanted": 4, "no//": 2, "must": 5, - "be": 36, "later": 2, - "exists": 19, - "else": 53, - "qq": 18, "Unknown": 2, "unshift": 4, "@ARGV": 12, - "split": 13, "ACK_OPTIONS": 5, "def_types_from_ARGV": 5, "filetypes_supported": 5, "parser": 12, "Parser": 4, - "new": 55, "configure": 4, "getoptions": 4, "to_screen": 10, - "defaults": 16, - "eval": 8, "Win32": 9, "Console": 2, "ANSI": 3, - "key": 20, - "value": 12, - "<": 15, "join": 5, - "map": 10, "@ret": 10, - "from": 19, "warn": 22, - "..": 7, "uniq": 4, "@uniq": 2, "sort": 8, - "a": 85, "<=>": 2, "b": 6, - "keys": 15, "numerical": 2, "occurs": 2, "only": 11, "once": 4, "Go": 1, "through": 6, - "look": 2, - "I": 68, "<--type-set>": 1, "foo=": 1, "bar": 3, "<--type-add>": 1, "xml=": 1, - ".": 125, "Remove": 1, - "them": 5, - "add": 9, "supported": 1, "filetypes": 8, - "i.e.": 2, "into": 6, - "etc.": 3, "@typedef": 8, "td": 6, - "set": 12, "Builtin": 4, "cannot": 4, "changed.": 4, - "ne": 9, "delete_type": 5, "Type": 2, "exist": 4, - "creating": 3, - "with": 26, "...": 2, - "unless": 39, "@exts": 8, ".//": 2, "Cannot": 4, @@ -51443,8 +52303,6 @@ "Removes": 1, "internal": 1, "structures": 1, - "containing": 5, - "information": 2, "type_wanted.": 1, "Internal": 2, "error": 4, @@ -51453,45 +52311,30 @@ "Standard": 1, "filter": 12, "pass": 1, - "L": 34, "": 1, "descend_filter.": 1, - "It": 3, "true": 3, "directory": 8, - "any": 4, "ones": 1, "we": 7, "ignore.": 1, - "path": 28, - "This": 27, "removes": 1, "trailing": 1, "separator": 4, "there": 6, - "one": 9, "its": 2, "argument": 1, - "Returns": 10, "list": 10, "<$filename>": 1, "could": 2, "be.": 1, "For": 5, - "example": 5, "": 1, - "The": 22, "filetype": 1, - "will": 9, - "C": 56, "": 1, - "can": 30, "skipped": 2, - "something": 3, "avoid": 1, "searching": 6, - "even": 4, - "under": 5, "a.": 1, "constant": 2, "TEXT": 16, @@ -51500,12 +52343,8 @@ "is_searchable": 8, "lc_basename": 8, "lc": 5, - "r": 14, - "B": 76, - "header": 17, "SHEBANG#!#!": 2, "ruby": 3, - "|": 28, "lua": 2, "erl": 2, "hp": 2, @@ -51515,10 +52354,8 @@ "*": 8, "b/": 4, "ba": 2, - "k": 6, "z": 2, "sh": 2, - "/i": 2, "search": 11, "false": 1, "regular": 3, @@ -51533,9 +52370,7 @@ "nOo_/": 2, "_thpppt": 3, "_get_thpppt": 3, - "print": 35, "_bar": 3, - "<<": 10, "&": 22, "*I": 2, "g": 7, @@ -51545,14 +52380,8 @@ "#I": 6, "#7": 4, "results.": 2, - "on": 25, - "when": 18, - "used": 12, "interactively": 6, - "no": 22, "Print": 6, - "between": 4, - "results": 8, "different": 2, "files.": 6, "group": 2, @@ -51580,25 +52409,20 @@ "pipe": 4, "finding": 2, "Only": 7, - "found": 11, "without": 3, "searching.": 2, "PATTERN": 8, "specified.": 4, "REGEX": 2, - "but": 4, "REGEX.": 2, "Sort": 2, "lexically.": 3, "invert": 2, "Print/search": 2, - "handle": 3, - "do": 12, "g/": 2, "G.": 2, "show": 3, "Show": 2, - "which": 7, "has.": 2, "inclusion/exclusion": 2, "All": 4, @@ -51609,7 +52433,6 @@ "ignored": 6, "directories": 9, "unrestricted": 2, - "name": 44, "Add/Remove": 2, "dirs": 2, "R": 2, @@ -51634,9 +52457,7 @@ "@before": 16, "before_starts_at_line": 10, "after": 18, - "number": 4, "still": 4, - "res": 59, "next_text": 8, "has_lines": 4, "scalar": 2, @@ -51645,7 +52466,6 @@ "next": 9, "print_match_or_context": 13, "elsif": 10, - "last": 17, "max": 12, "nmatches": 61, "show_filename": 35, @@ -51663,7 +52483,6 @@ "around": 5, "match.": 3, "opts": 2, - "array": 7, "line_no": 12, "show_column": 4, "display_filename": 8, @@ -51690,7 +52509,6 @@ "reset_total_count": 4, "search_and_list": 8, "Optimized": 1, - "version": 2, "lines.": 3, "ors": 11, "record": 3, @@ -51699,10 +52517,8 @@ "print_count0": 2, "filetypes_supported_set": 9, "True/False": 1, - "are": 25, "print_files": 4, "iter": 23, - "returned": 3, "iterator": 3, "<$regex>": 1, "<$one>": 1, @@ -51710,11 +52526,9 @@ "first.": 1, "<$ors>": 1, "<\"\\n\">": 1, - "defines": 2, "what": 14, "filename.": 1, "print_files_with_matches": 4, - "where": 3, "was": 2, "repo": 18, "Repository": 11, @@ -51735,7 +52549,6 @@ "before": 1, "go": 1, "expand_filenames": 7, - "reference": 8, "expanded": 3, "globs": 1, "EXPAND_FILENAMES_SCOPE": 4, @@ -51749,15 +52562,12 @@ "tried": 2, "load": 2, "GetAttributes": 2, - "end": 9, - "attributes": 4, "got": 2, "get_starting_points": 4, "starting": 2, "@what": 14, "reslash": 4, "Assume": 2, - "current": 5, "start_point": 4, "_match": 8, "target": 6, @@ -51780,49 +52590,139 @@ "pipe.": 1, "exit_from_ack": 5, "Exit": 1, - "application": 15, "correct": 1, "code.": 2, - "otherwise": 2, "handed": 1, - "in": 36, "argument.": 1, "rc": 11, - "LICENSE": 3, "Copyright": 2, "Andy": 2, "Lester.": 2, - "free": 4, - "software": 3, - "redistribute": 4, - "and/or": 4, - "modify": 4, - "terms": 4, "Artistic": 2, "License": 2, "v2.0.": 2, "End": 3, - "SHEBANG#!#! perl": 4, - "examples/benchmarks/fib.pl": 1, - "Fibonacci": 2, - "Benchmark": 1, - "DESCRIPTION": 4, - "Calculates": 1, - "Number": 1, - "": 1, - "unspecified": 1, - "fib": 4, - "N": 2, - "SEE": 4, - "ALSO": 4, - "": 1, - "SHEBANG#!perl": 5, + "Util": 3, + "Accessor": 1, + "status": 17, + "Scalar": 2, + "shortcut": 2, + "location": 4, + "redirect": 1, + "url": 2, + "clone": 1, + "_finalize_cookies": 2, + "/chr": 1, + "/ge": 1, + "replace": 3, + "LWS": 1, + "single": 1, + "SP": 1, + "//g": 1, + "CR": 1, + "LF": 1, + "since": 1, + "char": 1, + "invalid": 1, + "here": 2, + "header_field_names": 1, + "_body": 2, + "blessed": 1, + "overload": 1, + "Method": 1, + "_bake_cookie": 2, + "push_header": 1, + "@cookie": 7, + "domain": 3, + "_date": 2, + "expires": 7, + "httponly": 1, + "@MON": 1, + "Jan": 1, + "Feb": 1, + "Mar": 1, + "Apr": 1, + "May": 2, + "Jun": 1, + "Jul": 1, + "Aug": 1, + "Sep": 1, + "Oct": 1, + "Nov": 1, + "Dec": 1, + "@WDAY": 1, + "Sun": 1, + "Mon": 1, + "Tue": 1, + "Wed": 1, + "Thu": 1, + "Fri": 1, + "Sat": 1, + "sec": 2, + "min": 3, + "hour": 2, + "mday": 2, + "mon": 2, + "year": 3, + "wday": 2, + "gmtime": 1, + "sprintf": 1, + "WDAY": 1, + "MON": 1, + "response": 5, + "psgi_handler": 1, + "way": 2, + "simple": 2, + "API.": 1, + "Sets": 2, + "gets": 2, + "": 1, + "alias.": 2, + "response.": 1, + "Setter": 2, + "either": 2, + "headers.": 1, + "body_str": 1, + "io": 1, + "sets": 4, + "body.": 1, + "IO": 1, + "Handle": 1, + "": 1, + "X": 2, + "text/plain": 1, + "gzip": 1, + "normalize": 1, + "given": 10, + "string.": 1, + "Users": 1, + "responsible": 1, + "properly": 1, + "": 1, + "names": 1, + "their": 1, + "corresponding": 1, + "": 2, + "everything": 1, + "": 1, + "": 2, + "": 1, + "": 1, + "": 1, + "integer": 1, + "epoch": 1, + "time": 3, + "": 1, + "convert": 1, + "formats": 1, + "<+3M>": 1, + "reference.": 1, + "AUTHOR": 1, "MAIN": 1, "main": 3, "env_is_usable": 3, "th": 1, "pt": 1, - "env": 76, "@keys": 2, "ACK_/": 1, "@ENV": 1, @@ -51835,7 +52735,6 @@ "Resource": 5, "file_matching": 2, "check_regex": 2, - "like": 13, "finder": 1, "options": 7, "FILE...": 1, @@ -51846,38 +52745,29 @@ "": 5, "searches": 1, "named": 3, - "input": 9, "FILEs": 1, "standard": 1, - "given": 10, "PATTERN.": 1, "By": 2, "prints": 2, "also": 7, - "would": 5, "actually": 1, "let": 1, - "take": 5, "advantage": 1, ".wango": 1, "won": 1, "throw": 1, "away": 1, - "because": 3, "times": 2, "symlinks": 1, - "than": 5, "whatever": 1, "were": 1, "specified": 3, "line.": 4, "default.": 2, - "item": 44, "": 11, - "paths": 3, "included": 1, "search.": 1, - "entire": 3, "matched": 1, "against": 1, "shell": 4, @@ -51886,10 +52776,8 @@ "<-w>": 2, "<-v>": 3, "<-Q>": 4, - "apply": 3, "relative": 1, "convenience": 1, - "shortcut": 2, "<-f>": 6, "<--group>": 2, "<--nogroup>": 2, @@ -51906,7 +52794,6 @@ "<--no-filename>": 1, "Suppress": 1, "prefixing": 1, - "multiple": 5, "searched.": 1, "<--help>": 1, "short": 1, @@ -51923,38 +52810,28 @@ "options.": 4, "": 2, "etc": 2, - "May": 2, "directories.": 2, "mason": 1, - "users": 4, "may": 3, "wish": 1, "include": 1, "<--ignore-dir=data>": 1, "<--noignore-dir>": 1, - "allows": 4, "normally": 1, "perhaps": 1, "research": 1, "<.svn/props>": 1, - "always": 5, - "simple": 2, "name.": 1, "Nested": 1, "": 1, "NOT": 1, "supported.": 1, - "You": 4, - "need": 5, "specify": 1, "<--ignore-dir=foo>": 1, - "then": 4, - "foo": 6, "taken": 1, "account": 1, "explicitly": 1, "": 2, - "file.": 3, "Multiple": 1, "<--line>": 1, "comma": 1, @@ -51967,17 +52844,14 @@ "matter": 1, "<-l>": 2, "<--files-with-matches>": 1, - "instead": 4, "text.": 1, "<-L>": 1, "<--files-without-matches>": 1, - "": 2, "equivalent": 2, "specifying": 1, "Specify": 1, "explicitly.": 1, "helpful": 2, - "don": 2, "": 1, "via": 1, "": 4, @@ -51995,9 +52869,7 @@ "they": 1, "expression.": 1, "Highlighting": 1, - "work": 3, "though": 1, - "so": 4, "highlight": 1, "seeing": 1, "tail": 1, @@ -52010,9 +52882,7 @@ "usual": 1, "newline.": 1, "dealing": 1, - "contain": 3, "whitespace": 1, - "e.g.": 2, "html": 1, "xargs": 2, "rm": 1, @@ -52024,8 +52894,6 @@ "<-r>": 1, "<-R>": 1, "<--recurse>": 1, - "just": 2, - "here": 2, "compatibility": 2, "turning": 1, "<--no-recurse>": 1, @@ -52033,7 +52901,6 @@ "<--smart-case>": 1, "<--no-smart-case>": 1, "strings": 1, - "contains": 2, "uppercase": 1, "characters.": 1, "similar": 1, @@ -52044,7 +52911,6 @@ "<--sort-files>": 1, "Sorts": 1, "Use": 6, - "your": 20, "listings": 1, "deterministic": 1, "runs": 1, @@ -52058,7 +52924,6 @@ "Bill": 1, "Cat": 1, "logo.": 1, - "Note": 5, "exact": 1, "spelling": 1, "<--thpppppt>": 1, @@ -52067,7 +52932,6 @@ "perl": 8, "php": 2, "python": 1, - "looks": 2, "location.": 1, "variable": 1, "specifies": 1, @@ -52098,7 +52962,6 @@ "Underline": 1, "reset.": 1, "alone": 1, - "sets": 4, "foreground": 1, "on_color": 1, "background": 1, @@ -52111,7 +52974,6 @@ "See": 1, "": 1, "specifications.": 1, - "such": 6, "": 1, "": 1, "": 1, @@ -52119,12 +52981,10 @@ "output.": 1, "except": 1, "assume": 1, - "support": 2, "both": 1, "understands": 1, "sequences.": 1, "never": 1, - "back": 4, "ACK": 2, "OTHER": 1, "TOOLS": 1, @@ -52147,8 +53007,6 @@ "Phil": 1, "Jackson": 1, "put": 1, - "together": 2, - "an": 16, "": 1, "extension": 1, "": 1, @@ -52161,19 +53019,15 @@ "Code": 1, "greater": 1, "normal": 1, - "code": 8, "<$?=256>": 1, "": 1, "backticks.": 1, "errors": 1, "used.": 1, - "at": 4, "least": 1, "returned.": 1, "DEBUGGING": 1, "PROBLEMS": 1, - "gives": 2, - "re": 3, "expecting": 1, "forgotten": 1, "<--noenv>": 1, @@ -52188,9 +53042,6 @@ "working": 1, "big": 1, "codesets": 1, - "more": 2, - "create": 3, - "tree": 2, "ideal": 1, "sending": 1, "": 1, @@ -52207,7 +53058,6 @@ "loading": 1, "": 1, "took": 1, - "access": 2, "log": 3, "scanned": 1, "twice.": 1, @@ -52217,7 +53067,6 @@ "troublesome.gif": 1, "first": 1, "finds": 2, - "Apache": 2, "IP.": 1, "second": 1, "troublesome": 1, @@ -52236,10 +53085,7 @@ "tips": 1, "here.": 1, "FAQ": 1, - "Why": 3, "isn": 1, - "doesn": 8, - "behavior": 3, "driven": 1, "filetype.": 1, "": 1, @@ -52249,30 +53095,19 @@ "you.": 1, "source": 2, "compiled": 1, - "object": 6, "control": 1, "metadata": 1, "wastes": 1, "lot": 1, - "time": 3, "those": 2, - "well": 2, "returning": 1, - "things": 2, "great": 1, "did": 1, - "replace": 3, - "read": 6, "only.": 1, - "has": 3, "perfectly": 1, - "good": 2, - "way": 2, - "using": 5, "<-p>": 1, "<-n>": 1, "switches.": 1, - "certainly": 2, "select": 1, "update.": 1, "change": 1, @@ -52283,7 +53118,6 @@ "<.xyz>": 1, "already": 2, "program/package": 1, - "called": 4, "ack.": 2, "Yes": 1, "know.": 1, @@ -52324,38 +53158,29 @@ "@queue": 8, "_setup": 2, "fullpath": 12, - "splice": 2, "local": 5, - "wantarray": 3, "_candidate_files": 2, "sort_standard": 2, "cmp": 2, "sort_reverse": 1, "@parts": 3, "passed_parms": 6, - "copy": 4, "parm": 1, - "hash": 11, "badkey": 1, - "caller": 2, - "start": 7, "dh": 4, "opendir": 1, "@newfiles": 5, "sort_sub": 4, "readdir": 1, "has_stat": 3, - "catdir": 3, "closedir": 1, "": 1, - "these": 4, "updated": 1, "update": 1, "message": 1, "bak": 1, "core": 1, "swp": 1, - "min": 3, "js": 1, "1": 1, "str": 12, @@ -52365,564 +53190,27 @@ "_my_program": 3, "Basename": 2, "FAIL": 12, - "Carp": 11, "confess": 2, "@ISA": 2, - "class": 8, - "self": 141, - "bless": 7, "could_be_binary": 4, "opened": 1, - "id": 6, - "*STDIN": 2, "size": 5, "_000": 1, - "buffer": 9, "sysread": 1, "regex/m": 1, - "seek": 4, "readline": 1, - "nexted": 3, - "CGI": 6, - "Fast": 3, - "XML": 2, - "Hash": 11, - "XS": 2, - "FindBin": 1, - "Bin": 3, - "#use": 1, - "lib": 2, - "_stop": 4, - "request": 11, - "SIG": 3, - "nginx": 2, - "external": 2, - "fcgi": 2, - "Ext_Request": 1, - "FCGI": 1, - "Request": 11, - "*STDERR": 1, - "int": 2, - "ARGV": 2, - "conv": 2, - "use_attr": 1, - "indent": 1, - "xml_decl": 1, - "tmpl_path": 2, - "tmpl": 5, - "data": 3, - "nick": 1, - "parent": 5, - "third_party": 1, - "artist_name": 2, - "venue": 2, - "event": 2, - "date": 2, - "zA": 1, - "Z0": 1, - "Content": 2, - "application/xml": 1, - "charset": 2, - "utf": 2, - "hash2xml": 1, - "text/html": 1, - "nError": 1, - "M": 1, - "system": 1, - "Foo": 11, - "Bar": 1, - "@array": 1, - "pod": 1, - "Catalyst": 10, - "PSGI": 10, - "How": 1, - "": 3, - "specification": 3, - "interface": 1, - "web": 8, - "servers": 2, - "based": 2, - "applications": 2, - "frameworks.": 1, - "supports": 1, - "writing": 1, - "portable": 1, - "run": 1, - "various": 2, - "methods": 4, - "standalone": 1, - "server": 2, - "mod_perl": 3, - "FastCGI": 2, - "": 3, - "implementation": 1, - "running": 1, - "applications.": 1, - "Engine": 1, - "XXXX": 1, - "classes": 2, - "environments": 1, - "been": 1, - "changed": 1, - "done": 2, - "implementing": 1, - "possible": 2, - "manually": 2, - "": 1, - "root": 1, - "application.": 1, - "write": 2, - "own": 4, - ".psgi": 7, - "Writing": 2, - "alternate": 1, - "": 1, - "extensions": 1, - "implement": 2, - "": 1, - "": 1, - "": 1, - "simplest": 1, - "<.psgi>": 1, - "": 1, - "TestApp": 5, - "app": 2, - "psgi_app": 3, - "middleware": 2, - "components": 2, - "automatically": 2, - "": 1, - "applied": 1, - "psgi": 2, - "yourself.": 2, - "Details": 1, - "below.": 1, - "Additional": 1, - "": 1, - "What": 1, - "generates": 2, - "": 1, - "setting": 2, - "wrapped": 1, - "": 1, - "some": 1, - "engine": 1, - "fixes": 1, - "uniform": 1, - "behaviour": 2, - "contained": 1, - "over": 2, - "": 1, - "": 1, - "override": 1, - "providing": 2, - "none": 1, - "call": 2, - "MyApp": 1, - "Thus": 1, - "functionality": 1, - "ll": 1, - "An": 1, - "apply_default_middlewares": 2, - "method": 8, - "supplied": 1, - "wrap": 1, - "middlewares": 1, - "means": 3, - "auto": 1, - "generated": 1, - "": 1, - "": 1, - "AUTHORS": 2, - "Contributors": 1, - "Catalyst.pm": 1, - "library": 2, - "software.": 1, - "same": 2, - "Plack": 25, - "_001": 1, - "HTTP": 16, - "Headers": 8, - "MultiValue": 9, - "Body": 2, - "Upload": 2, - "TempBuffer": 2, - "URI": 11, - "Escape": 6, - "_deprecated": 8, - "alt": 1, - "carp": 2, - "croak": 3, - "required": 2, - "address": 2, - "REMOTE_ADDR": 1, - "remote_host": 2, - "REMOTE_HOST": 1, - "protocol": 1, - "SERVER_PROTOCOL": 1, - "REQUEST_METHOD": 1, - "port": 1, - "SERVER_PORT": 2, - "REMOTE_USER": 1, - "request_uri": 1, - "REQUEST_URI": 2, - "path_info": 4, - "PATH_INFO": 3, - "script_name": 1, - "SCRIPT_NAME": 2, - "scheme": 3, - "secure": 2, - "body": 30, - "content_length": 4, - "CONTENT_LENGTH": 3, - "content_type": 5, - "CONTENT_TYPE": 2, - "session": 1, - "session_options": 1, - "logger": 1, - "cookies": 9, - "HTTP_COOKIE": 3, - "@pairs": 2, - "pair": 4, - "uri_unescape": 1, - "query_parameters": 3, - "uri": 11, - "query_form": 2, - "content": 8, - "_parse_request_body": 4, - "cl": 10, - "raw_body": 1, - "headers": 56, - "field": 2, - "HTTPS": 1, - "_//": 1, - "CONTENT": 1, - "COOKIE": 1, - "content_encoding": 5, - "referer": 3, - "user_agent": 3, - "body_parameters": 3, - "parameters": 8, - "query": 4, - "flatten": 3, - "uploads": 5, - "hostname": 1, - "url_scheme": 1, - "params": 1, - "query_params": 1, - "body_params": 1, - "cookie": 6, - "param": 8, - "get_all": 2, - "upload": 13, - "raw_uri": 1, - "base": 10, - "path_query": 1, - "_uri_base": 3, - "path_escape_class": 2, - "uri_escape": 3, - "QUERY_STRING": 3, - "canonical": 2, - "HTTP_HOST": 1, - "SERVER_NAME": 1, - "new_response": 4, - "Response": 16, - "ct": 3, - "cleanup": 1, - "spin": 2, - "chunk": 4, - "length": 1, - "rewind": 1, - "from_mixed": 2, - "@uploads": 3, - "@obj": 3, - "_make_upload": 2, - "__END__": 2, - "Portable": 2, - "app_or_middleware": 1, - "req": 28, - "finalize": 5, - "": 2, - "provides": 1, - "consistent": 1, - "API": 2, - "objects": 2, - "across": 1, - "environments.": 1, - "CAVEAT": 1, - "module": 2, - "intended": 1, - "developers": 3, - "framework": 2, - "rather": 2, - "directly": 1, - "recommended": 1, - "yet": 1, - "too": 1, - "low": 1, - "level.": 1, - "encouraged": 1, - "frameworks": 2, - "": 1, - "modules": 1, - "": 1, - "provide": 1, - "higher": 1, - "level": 1, - "top": 1, - "PSGI.": 1, - "METHODS": 2, - "Some": 1, - "earlier": 1, - "versions": 1, - "deprecated": 1, - "Take": 1, - "": 1, - "Unless": 1, - "noted": 1, - "": 1, - "passing": 1, - "values": 5, - "accessor": 1, - "debug": 1, - "set.": 1, - "": 2, - "request.": 1, - "uploads.": 2, - "": 2, - "": 1, - "objects.": 1, - "Shortcut": 6, - "content_encoding.": 1, - "content_length.": 1, - "content_type.": 1, - "header.": 2, - "referer.": 1, - "user_agent.": 1, - "GET": 1, - "POST": 1, - "CGI.pm": 2, - "compatible": 1, - "method.": 1, - "alternative": 1, - "accessing": 1, - "parameters.": 3, - "Unlike": 1, - "": 1, - "allow": 1, - "modifying": 1, - "@values": 1, - "@params": 1, - "convenient": 1, - "@fields": 1, - "Creates": 2, - "": 3, - "object.": 4, - "Handy": 1, - "remove": 2, - "dependency": 1, - "easy": 1, - "subclassing": 1, - "duck": 1, - "typing": 1, - "overriding": 1, - "generation": 1, - "middlewares.": 1, - "Parameters": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "store": 1, - "plain": 2, - "": 1, - "scalars": 1, - "references": 1, - "ARRAY": 1, - "parse": 1, - "twice": 1, - "efficiency.": 1, - "DISPATCHING": 1, - "wants": 1, - "dispatch": 1, - "route": 1, - "actions": 1, - "sure": 1, - "": 1, - "virtual": 1, - "regardless": 1, - "how": 1, - "mounted.": 1, - "hosted": 1, - "scripts": 1, - "multiplexed": 1, - "tools": 1, - "": 1, - "idea": 1, - "subclass": 1, - "define": 1, - "uri_for": 2, - "args": 3, - "So": 1, - "say": 1, - "link": 1, - "signoff": 1, - "": 1, - "empty.": 1, - "older": 1, - "instead.": 1, - "Cookie": 2, - "handling": 1, - "simplified": 1, - "string": 5, - "encoding": 2, - "decoding": 1, - "totally": 1, - "up": 1, - "framework.": 1, - "Also": 1, - "": 1, - "now": 1, - "": 1, - "Simple": 1, - "longer": 1, - "have": 2, - "wacky": 1, - "simply": 1, - "Tatsuhiko": 2, - "Miyagawa": 2, - "Kazuhiro": 1, - "Osawa": 1, - "Tokuhiro": 2, - "Matsuno": 2, - "": 1, - "": 1, - "Util": 3, - "Accessor": 1, - "status": 17, - "Scalar": 2, - "location": 4, - "redirect": 1, - "url": 2, - "clone": 1, - "_finalize_cookies": 2, - "/chr": 1, - "/ge": 1, - "LWS": 1, - "single": 1, - "SP": 1, - "//g": 1, - "CR": 1, - "LF": 1, - "since": 1, - "char": 1, - "invalid": 1, - "header_field_names": 1, - "_body": 2, - "blessed": 1, - "overload": 1, - "Method": 1, - "_bake_cookie": 2, - "push_header": 1, - "@cookie": 7, - "domain": 3, - "_date": 2, - "expires": 7, - "httponly": 1, - "@MON": 1, - "Jan": 1, - "Feb": 1, - "Mar": 1, - "Apr": 1, - "Jun": 1, - "Jul": 1, - "Aug": 1, - "Sep": 1, - "Oct": 1, - "Nov": 1, - "Dec": 1, - "@WDAY": 1, - "Sun": 1, - "Mon": 1, - "Tue": 1, - "Wed": 1, - "Thu": 1, - "Fri": 1, - "Sat": 1, - "sec": 2, - "hour": 2, - "mday": 2, - "mon": 2, - "year": 3, - "wday": 2, - "gmtime": 1, - "sprintf": 1, - "WDAY": 1, - "MON": 1, - "response": 5, - "psgi_handler": 1, - "API.": 1, - "Sets": 2, - "gets": 2, - "": 1, - "alias.": 2, - "response.": 1, - "Setter": 2, - "either": 2, - "headers.": 1, - "body_str": 1, - "io": 1, - "body.": 1, - "IO": 1, - "Handle": 1, - "": 1, - "X": 2, - "text/plain": 1, - "gzip": 1, - "normalize": 1, - "string.": 1, - "Users": 1, - "responsible": 1, - "properly": 1, - "": 1, - "names": 1, - "their": 1, - "corresponding": 1, - "": 2, - "everything": 1, - "": 1, - "": 2, - "": 1, - "": 1, - "": 1, - "integer": 1, - "epoch": 1, - "": 1, - "convert": 1, - "formats": 1, - "<+3M>": 1, - "reference.": 1, - "AUTHOR": 1 + "nexted": 3 }, "Perl6": { - "token": 6, - "pod_formatting_code": 1, - "{": 29, - "": 1, - "<[A..Z]>": 1, - "*POD_IN_FORMATTINGCODE": 1, - "}": 27, - "": 1, - "[": 1, - "": 1, - "#": 13, - "N*": 1, "role": 10, "q": 5, + "{": 29, + "token": 6, "stopper": 2, "MAIN": 1, "quote": 1, ")": 19, + "}": 27, "backslash": 3, "sym": 3, "<\\\\>": 1, @@ -52962,6 +53250,7 @@ "-": 3, "verb": 1, "|": 9, + "#": 13, "multi": 2, "line": 5, "comment": 2, @@ -53027,72 +53316,20 @@ "/": 1, "": 1, "": 1, - "roleq": 1 + "roleq": 1, + "pod_formatting_code": 1, + "": 1, + "<[A..Z]>": 1, + "*POD_IN_FORMATTINGCODE": 1, + "": 1, + "[": 1, + "": 1, + "N*": 1 }, "Pike": { "#pike": 2, "__REAL_VERSION__": 2, - "constant": 13, - "Generic": 1, - "__builtin.GenericError": 1, - ";": 149, - "Index": 1, - "__builtin.IndexError": 1, - "BadArgument": 1, - "__builtin.BadArgumentError": 1, - "Math": 1, - "__builtin.MathError": 1, - "Resource": 1, - "__builtin.ResourceError": 1, - "Permission": 1, - "__builtin.PermissionError": 1, - "Decode": 1, - "__builtin.DecodeError": 1, - "Cpp": 1, - "__builtin.CppError": 1, - "Compilation": 1, - "__builtin.CompilationError": 1, - "MasterLoad": 1, - "__builtin.MasterLoadError": 1, - "ModuleLoad": 1, - "__builtin.ModuleLoadError": 1, "//": 85, - "Returns": 2, - "an": 2, - "Error": 2, - "object": 5, - "for": 1, - "any": 1, - "argument": 2, - "it": 2, - "receives.": 1, - "If": 1, - "the": 4, - "already": 1, - "is": 2, - "or": 1, - "empty": 1, - "does": 1, - "nothing.": 1, - "mkerror": 1, - "(": 218, - "mixed": 8, - "error": 14, - ")": 218, - "{": 51, - "if": 35, - "UNDEFINED": 1, - "return": 41, - "objectp": 1, - "&&": 2, - "-": 50, - "is_generic_error": 1, - "arrayp": 2, - "Error.Generic": 3, - "@error": 1, - "stringp": 1, - "sprintf": 3, - "}": 51, "A": 2, "string": 20, "wrapper": 1, @@ -53105,6 +53342,7 @@ "[": 45, "Stdio.File": 32, "]": 45, + "object": 5, "in": 1, "addition": 1, "some": 1, @@ -53113,6 +53351,7 @@ "Stdio.FILE": 4, "object.": 2, "This": 1, + "constant": 13, "can": 2, "used": 1, "distinguish": 1, @@ -53120,10 +53359,13 @@ "from": 1, "real": 1, "is_fake_file": 1, + ";": 149, "protected": 12, "data": 34, "int": 31, "ptr": 27, + "(": 218, + ")": 218, "r": 10, "w": 6, "mtime": 4, @@ -53134,21 +53376,27 @@ "write_oob_cb": 5, "close_cb": 5, "@seealso": 33, + "-": 50, "close": 2, "void": 25, "|": 14, "direction": 5, + "{": 51, "lower_case": 2, "||": 2, "cr": 2, "has_value": 4, "cw": 2, + "if": 35, + "}": 51, + "return": 41, "@decl": 1, "create": 3, "type": 11, "pointer": 1, "_data": 3, "_ptr": 2, + "error": 14, "time": 3, "else": 5, "make_type_str": 3, @@ -53158,8 +53406,10 @@ "Always": 3, "returns": 4, "errno": 2, + "Returns": 2, "size": 3, "and": 1, + "the": 4, "creation": 1, "string.": 2, "Stdio.Stat": 3, @@ -53171,6 +53421,7 @@ "line_iterator": 2, "String.SplitIterator": 3, "trim": 2, + "mixed": 8, "id": 3, "query_id": 2, "set_id": 2, @@ -53216,7 +53467,9 @@ "str": 12, "...": 2, "extra": 2, + "arrayp": 2, "str*": 1, + "sprintf": 3, "@extra": 1, "..": 1, "set_blocking": 3, @@ -53241,6 +53494,7 @@ "query_write_oob_callback": 2, "_sprintf": 1, "t": 2, + "&&": 2, "casted": 1, "cast": 1, "switch": 1, @@ -53279,7 +53533,50 @@ "set_keepalive": 1, "trylock": 1, "write_oob": 1, - "@endignore": 1 + "@endignore": 1, + "Generic": 1, + "__builtin.GenericError": 1, + "Index": 1, + "__builtin.IndexError": 1, + "BadArgument": 1, + "__builtin.BadArgumentError": 1, + "Math": 1, + "__builtin.MathError": 1, + "Resource": 1, + "__builtin.ResourceError": 1, + "Permission": 1, + "__builtin.PermissionError": 1, + "Decode": 1, + "__builtin.DecodeError": 1, + "Cpp": 1, + "__builtin.CppError": 1, + "Compilation": 1, + "__builtin.CompilationError": 1, + "MasterLoad": 1, + "__builtin.MasterLoadError": 1, + "ModuleLoad": 1, + "__builtin.ModuleLoadError": 1, + "an": 2, + "Error": 2, + "for": 1, + "any": 1, + "argument": 2, + "it": 2, + "receives.": 1, + "If": 1, + "already": 1, + "is": 2, + "or": 1, + "empty": 1, + "does": 1, + "nothing.": 1, + "mkerror": 1, + "UNDEFINED": 1, + "objectp": 1, + "is_generic_error": 1, + "Error.Generic": 3, + "@error": 1, + "stringp": 1 }, "Pod": { "Id": 1, @@ -53698,18 +53995,60 @@ }, "Prolog": { "-": 161, - "module": 3, + "lib": 1, "(": 327, - "format_spec": 12, + "ic": 1, + ")": 326, + ".": 107, + "vabs": 2, + "Val": 8, + "AbsVal": 10, + "#": 9, + ";": 12, + "labeling": 2, "[": 87, + "]": 87, + "vabsIC": 1, + "or": 1, + "faitListe": 3, + "_": 30, + "First": 2, + "|": 25, + "Rest": 12, + "Taille": 2, + "Min": 2, + "Max": 2, + "Min..Max": 1, + "Taille1": 2, + "suite": 3, + "Xi": 5, + "Xi1": 7, + "Xi2": 7, + "checkRelation": 3, + "VabsXi1": 2, + "Xi.": 1, + "checkPeriode": 3, + "ListVar": 2, + "length": 4, + "Length": 2, + "<": 1, + "X1": 2, + "X2": 2, + "X3": 2, + "X4": 2, + "X5": 2, + "X6": 2, + "X7": 2, + "X8": 2, + "X9": 2, + "X10": 3, + "module": 3, + "format_spec": 12, "format_error/2": 1, "format_spec/2": 1, "format_spec//1": 1, "spec_arity/2": 1, "spec_types/2": 1, - "]": 87, - ")": 326, - ".": 107, "use_module": 8, "library": 8, "dcg/basics": 1, @@ -53732,19 +54071,16 @@ "Format": 23, "Args": 19, "format_error_": 5, - "_": 30, "debug": 4, "Spec": 10, "is_list": 1, "spec_types": 8, "Types": 16, "types_error": 3, - "length": 4, "TypesLen": 3, "ArgsLen": 3, "types_error_": 4, "Arg": 6, - "|": 25, "Type": 3, "ground": 5, "is_of_type": 2, @@ -53814,13 +54150,11 @@ "Numeric": 4, "Modifier": 2, "Action": 15, - "Rest": 12, "numeric_argument": 5, "modifier_argument": 3, "action": 6, "text": 4, "String": 6, - ";": 12, "Codes": 21, "string_codes": 4, "string_without": 1, @@ -53872,6 +54206,32 @@ "s": 2, "t": 1, "W": 1, + "turing": 1, + "Tape0": 2, + "Tape": 2, + "perform": 4, + "q0": 1, + "Ls": 12, + "Rs": 16, + "reverse": 4, + "Ls1": 4, + "append": 2, + "qf": 1, + "Q0": 2, + "Ls0": 6, + "Rs0": 6, + "symbol": 3, + "Sym": 6, + "RsRest": 2, + "rule": 1, + "Q1": 2, + "NewSym": 2, + "Rs1": 2, + "b": 4, + "left": 4, + "stay": 1, + "right": 1, + "L": 2, "func": 13, "op": 2, "xfy": 2, @@ -53946,10 +54306,8 @@ "can": 3, "chained.": 2, "Reversed": 2, - "reverse": 4, "sort": 2, "c": 2, - "b": 4, "meta_predicate": 2, "throw": 1, "permission_error": 1, @@ -53992,7 +54350,6 @@ "Goals": 2, "Tmp": 3, "instantiation_error": 1, - "append": 2, "NewArgs": 2, "variant_sha1": 1, "Sha": 2, @@ -54010,43 +54367,6 @@ "Name": 2, "Args0": 2, "nth1": 2, - "lib": 1, - "ic": 1, - "vabs": 2, - "Val": 8, - "AbsVal": 10, - "#": 9, - "labeling": 2, - "vabsIC": 1, - "or": 1, - "faitListe": 3, - "First": 2, - "Taille": 2, - "Min": 2, - "Max": 2, - "Min..Max": 1, - "Taille1": 2, - "suite": 3, - "Xi": 5, - "Xi1": 7, - "Xi2": 7, - "checkRelation": 3, - "VabsXi1": 2, - "Xi.": 1, - "checkPeriode": 3, - "ListVar": 2, - "Length": 2, - "<": 1, - "X1": 2, - "X2": 2, - "X3": 2, - "X4": 2, - "X5": 2, - "X6": 2, - "X7": 2, - "X8": 2, - "X9": 2, - "X10": 3, "male": 3, "john": 2, "peter": 3, @@ -54055,204 +54375,498 @@ "christie": 3, "parents": 4, "brother": 1, - "M": 2, - "turing": 1, - "Tape0": 2, - "Tape": 2, - "perform": 4, - "q0": 1, - "Ls": 12, - "Rs": 16, - "Ls1": 4, - "qf": 1, - "Q0": 2, - "Ls0": 6, - "Rs0": 6, - "symbol": 3, - "Sym": 6, - "RsRest": 2, - "rule": 1, - "Q1": 2, - "NewSym": 2, - "Rs1": 2, - "left": 4, - "stay": 1, - "right": 1, - "L": 2 + "M": 2 }, "Propeller Spin": { "{": 26, - "*****************************************": 4, - "*": 143, - "x4": 4, - "Keypad": 1, - "Reader": 1, - "v1.0": 4, - "Author": 8, - "Beau": 2, - "Schwabe": 2, + "Vocal": 2, + "Tract": 2, + "v1.1": 8, + "by": 17, + "Chip": 7, + "Gracey": 7, "Copyright": 10, "(": 356, "c": 33, ")": 356, "Parallax": 10, - "See": 10, - "end": 12, - "of": 108, - "file": 9, - "for": 70, - "terms": 9, - "use.": 9, - "}": 26, - "Operation": 2, + "Inc.": 8, + "October": 1, "This": 3, "object": 7, - "uses": 2, + "synthesizes": 1, "a": 72, - "capacitive": 1, - "PIN": 1, - "approach": 1, - "to": 191, - "reading": 1, - "the": 136, - "keypad.": 1, - "To": 3, - "do": 26, - "so": 11, - "ALL": 2, - "pins": 26, - "are": 18, - "made": 2, - "LOW": 2, - "and": 95, - "an": 12, - "OUTPUT": 2, - "I/O": 3, - "pins.": 1, - "Then": 1, - "set": 42, - "INPUT": 2, - "state.": 1, - "At": 1, - "this": 26, - "point": 21, - "only": 63, - "one": 4, - "pin": 18, - "is": 51, - "HIGH": 3, - "at": 26, + "human": 1, + "vocal": 10, + "tract": 12, + "in": 53, + "real": 2, + "-": 486, "time.": 2, - "If": 2, - "closed": 1, - "then": 5, - "will": 12, - "be": 46, - "read": 29, - "on": 12, - "input": 2, - "otherwise": 1, - "returned.": 1, - "The": 17, - "keypad": 4, - "decoding": 1, - "routine": 1, + "It": 1, "requires": 3, - "two": 6, - "subroutines": 1, - "returns": 6, - "entire": 1, - "matrix": 1, - "into": 19, + "one": 4, + "cog": 39, + "and": 95, + "at": 26, + "least": 14, + "MHz.": 1, + "The": 17, + "is": 51, + "controlled": 1, + "via": 5, "single": 2, - "WORD": 1, - "variable": 1, - "indicating": 1, + "byte": 27, + "parameters": 19, "which": 16, - "buttons": 2, - "pressed.": 1, - "Multiple": 1, - "button": 2, - "presses": 1, - "allowed": 1, - "with": 8, - "understanding": 1, - "that": 10, - "BOX": 2, - "entries": 1, - "can": 4, - "confused.": 1, - "An": 1, - "example": 3, - "entry...": 1, - "or": 43, - "#": 97, - "etc.": 1, - "where": 2, - "any": 15, - "pressed": 3, - "evaluate": 1, - "non": 3, - "as": 8, - "being": 2, - "even": 1, - "when": 3, - "they": 2, - "not.": 1, - "There": 1, - "no": 7, - "danger": 1, - "physical": 1, - "electrical": 1, - "damage": 1, + "must": 18, + "reside": 1, + "the": 136, + "parent": 1, + "VAR": 10, + "aa": 2, + "ga": 5, + "gp": 2, + "vp": 3, + "vr": 1, + "f1": 4, + "f2": 1, + "f3": 3, + "f4": 2, + "na": 2, + "nf": 2, + "fa": 2, + "ff": 2, "s": 16, - "just": 2, - "way": 1, - "sensing": 1, - "method": 2, - "happens": 1, - "work.": 1, - "Schematic": 1, - "No": 2, - "resistors": 4, - "capacitors.": 1, - "connections": 1, - "directly": 1, - "from": 21, - "Clear": 2, - "value": 51, - "ReadRow": 4, - "Shift": 3, + "values.": 2, + "Before": 1, + "they": 2, + "were": 1, "left": 12, - "by": 17, - "preset": 1, - "P0": 2, - "P7": 2, - "LOWs": 1, - "dira": 3, + "interpolation": 1, + "point": 21, + "shy": 1, + "then": 5, + "set": 42, + "to": 191, + "last": 6, + "frame": 12, + "change": 3, + "makes": 1, + "behave": 1, + "more": 90, + "sensibly": 1, + "during": 2, + "gaps.": 1, + "}": 26, + "CON": 4, + "frame_buffers": 2, + "bytes": 2, + "per": 4, + "frame_longs": 3, + "frame_bytes": 1, + "/": 27, + "longs": 15, + "...must": 1, + "long": 122, + "dira_": 3, + "dirb_": 1, + "ctra_": 1, + "ctrb_": 3, + "frqa_": 3, + "cnt_": 1, + "many": 1, + "...contiguous": 1, + "PUB": 63, + "start": 16, + "tract_ptr": 3, + "pos_pin": 7, + "neg_pin": 6, + "fm_offset": 5, + "okay": 11, + "Start": 6, + "driver": 17, + "starts": 4, + "returns": 6, + "false": 7, + "if": 53, + "no": 7, + "available": 4, + "pointer": 14, + "positive": 1, + "delta": 10, + "modulation": 4, + "pin": 18, + "disable": 7, + "negative": 2, + "also": 1, + "be": 46, + "enabled": 2, + "offset": 14, + "frequency": 18, + "for": 70, + "fm": 6, + "aural": 13, + "subcarrier": 3, + "generation": 2, + "_500_000": 1, + "NTSC": 11, + "Remember": 1, + "If": 2, + "ready": 10, + "output": 11, + "ctrb": 4, + "duty": 2, + "mode": 7, "[": 35, + "&": 21, "]": 34, - "make": 16, - "INPUTSs": 1, - "...": 5, - "now": 3, - "act": 1, - "like": 4, - "tiny": 1, - "capacitors": 1, - "outa": 2, - "n": 4, - "Pin": 1, - "OUTPUT...": 1, - "Make": 1, - ";": 2, - "charge": 10, + "|": 22, + "<": 14, "+": 759, - "ina": 3, - "Pn": 1, - "remain": 1, - "discharged": 1, + "F": 18, + "<<": 70, + "Ready": 1, + "frqa": 3, + "value": 51, + "repeat": 18, + "clkfreq": 2, + "Launch": 1, + "return": 15, + "cognew": 4, + "@entry": 3, + "@attenuation": 1, + "stop": 9, + "Stop": 6, + "frees": 6, + "Reset": 1, + "variables": 3, + "buffers": 1, + "longfill": 2, + "@index": 1, + "constant": 3, + "frame_buffer_longs": 2, + "set_attenuation": 1, + "level": 5, + "Set": 5, + "master": 2, + "attenuation": 3, + "initially": 2, + "set_pace": 2, + "percentage": 3, + "pace": 3, + "some": 3, + "go": 1, + "time": 7, + "Queue": 1, + "current": 3, + "transition": 1, + "over": 2, + "actual": 4, + "integer": 2, + "*": 143, + "#": 97, + "see": 2, + "Load": 1, + "into": 19, + "bytemove": 1, + "@frames": 1, + "index": 5, + "Increment": 1, + "full": 3, + "status": 15, + "Returns": 4, + "true": 6, + "parameter": 14, + "queue": 2, + "useful": 2, + "checking": 1, + "would": 1, + "have": 1, + "wait": 6, + "frames": 2, + "empty": 2, + "i": 24, + "detecting": 1, + "when": 3, + "finished": 1, + "from": 21, + "sample_ptr": 1, + "ptr": 5, + "address": 16, + "of": 108, + "receives": 1, + "audio": 1, + "samples": 1, + "signed": 4, + "bit": 35, + "values": 2, + "updated": 1, + "KHz": 3, + "@sample": 1, + "aural_id": 1, + "id": 2, + "executing": 1, + "algorithm": 1, + "connecting": 1, + "broadcast": 19, + "tv": 2, + "with": 8, "DAT": 7, + "Initialization": 1, + "zero": 10, + "all": 14, + "reserved": 3, + "data": 47, + "add": 92, + "d0": 11, + "djnz": 24, + "clear_cnt": 1, + "mov": 154, + "t1": 139, + "#2*15": 1, + "saves": 2, + "hub": 1, + "memory": 2, + "minst": 3, + "d0s0": 3, + "test": 38, + "#1": 47, + "wc": 57, + "if_c": 37, + "sub": 12, + "#2": 15, + "mult_ret": 1, + "antilog_ret": 1, + "ret": 17, + "assemble": 1, + "cordic": 4, + "steps": 9, + "reserves": 2, + "cstep": 1, + "t2": 90, + "#8": 14, + "write": 36, + "instruction": 2, + "par": 20, + "get": 30, + "center": 10, + "#4": 8, + "prepare": 1, + "initial": 6, + "waitcnt": 3, + "cnt_value": 3, + "cnt_ticks": 3, + "Loop": 1, + "Wait": 2, + "next": 16, + "sample": 2, + "period": 1, + "loop": 14, + "perform": 2, + "sar": 8, + "x": 112, + "update": 7, + "cycle": 1, + "driving": 1, + "h80000000": 2, + "frqb": 2, + "White": 1, + "noise": 3, + "source": 2, + "lfsr": 1, + "lfsr_taps": 2, + "Aspiration": 1, + "vibrato": 3, + "rate": 6, + "shr": 24, + "#10": 2, + "vphase": 2, + "sum": 7, + "glottal": 2, + "pitch": 5, + "divide": 3, + "final": 3, + "mesh": 1, + "multiply": 8, + "%": 162, + "tune": 2, + "convert": 1, + "log": 2, + "phase": 2, + "gphase": 3, + "reset": 14, + "y": 80, + "formant2": 2, + "rotate": 2, + "f2x": 3, + "f2y": 3, + "call": 44, + "#cordic": 2, + "formant4": 2, + "f4x": 3, + "f4y": 3, + "subtract": 1, + "nx": 4, + "negated": 1, + "nasal": 2, + "amplitude": 3, + "#mult": 1, + "negate": 2, + "#3": 7, + "fphase": 4, + "frication": 2, + "#sine": 1, + "Handle": 1, + "jmp": 24, + "or": 43, + "cycles": 4, + "frame_ptr": 6, + "past": 1, + "miscellaneous": 2, + "frame_index": 3, + "stepsize": 2, + "step_size": 5, + "h00FFFFFF": 2, + "wz": 21, + "not": 6, + "final1": 2, + "finali": 2, + "iterate": 3, + "aa..ff": 4, + "jmpret": 5, + "#loop": 9, + "another": 7, + "insure": 2, + "accurate": 1, + "accumulation": 1, + "step_acc": 3, + "movd": 10, + "set2": 3, + "#par_curr": 1, + "set3": 2, + "#par_next": 1, + "set4": 3, + "#par_step": 1, + "new": 6, + "shl": 21, + "#24": 1, + "par_curr": 3, + "make": 16, + "absolute": 1, + "msb": 2, + "rcl": 2, + "vscl": 12, + "nr": 1, + "step": 9, + "size": 5, + "mult": 2, + "negnz": 3, + "par_step": 1, + "pointers": 2, + "frame_cnt": 2, + "step1": 2, + "stepi": 1, + "check": 5, + "done": 3, + "if_nc": 15, + "stepframe": 1, + "signal": 8, + "wrlong": 6, + "#frame_bytes": 1, + "par_next": 2, + "used": 9, + "Math": 1, + "Subroutines": 1, + "Antilog": 1, + "top": 10, + "bits": 29, + "whole": 2, + "number": 27, + "fraction": 1, + "out": 24, + "antilog": 2, + "FFEA0000": 1, + "#16": 6, + "position": 9, + "h00000FFE": 2, + "table": 9, + "base": 6, + "rdword": 10, + "insert": 2, + "leading": 1, + "Scaled": 1, + "sine": 7, + "unsigned": 3, + "scale": 7, + "angle": 23, + "h00001000": 2, + "quadrant": 3, + "negc": 1, + "read": 29, + "word": 212, + "justify": 4, + "result": 6, + "Multiply": 1, + "multiplier": 3, + "#15": 1, + "do": 26, + "mult_step": 1, + "Cordic": 1, + "rotation": 3, + "degree": 1, + "first": 9, + "#cordic_steps": 1, + "that": 10, + "gets": 1, + "assembled": 1, + "x13": 2, + "cordic_dx": 1, + "incremented": 1, + "each": 11, + "sumnc": 7, + "sumc": 4, + "cordic_a": 1, + "cordic_delta": 2, + "linear": 1, + "feedback": 2, + "shift": 7, + "register": 1, + "B901476": 1, + "constants": 2, + "greater": 1, + "than": 5, + "h40000000": 1, + "h01000000": 1, + "FFFFFF": 1, + "h00010000": 1, + "h0000D000": 1, + "D000": 1, + "h00007000": 1, + "FFE": 1, + "h00000800": 1, + "registers": 2, + "clear": 5, + "on": 12, + "startup": 2, + "Undefined": 2, + "Data": 1, + "zeroed": 1, + "initialization": 2, + "code": 3, + "cleared": 1, + "res": 89, + "f1x": 1, + "f1y": 1, + "f3x": 1, + "f3y": 1, + "aspiration": 1, + "***": 1, + "mult_steps": 1, + "assembly": 1, + "area": 1, + "w/ret": 1, + "cordic_ret": 1, "TERMS": 9, "OF": 49, "USE": 19, @@ -54262,15 +54876,17 @@ "hereby": 9, "granted": 9, "free": 10, + "charge": 10, + "any": 15, "person": 9, "obtaining": 9, "copy": 21, + "this": 26, "software": 9, "associated": 11, "documentation": 9, "files": 9, "deal": 9, - "in": 53, "Software": 28, "without": 19, "restriction": 9, @@ -54290,6 +54906,7 @@ "persons": 9, "whom": 9, "furnished": 9, + "so": 11, "subject": 9, "following": 9, "conditions": 9, @@ -54299,7 +54916,6 @@ "permission": 9, "shall": 9, "included": 9, - "all": 14, "substantial": 9, "portions": 9, "Software.": 9, @@ -54362,56 +54978,47 @@ "Williams": 2, "Jeff": 2, "Martin": 2, - "Inc.": 8, + "See": 10, + "end": 12, + "file": 9, + "terms": 9, + "use.": 9, "Debugging": 1, "wrapper": 1, "Serial_Lcd": 1, - "-": 486, "March": 1, "Updated": 4, "conform": 1, "Propeller": 3, - "initialization": 2, "standards.": 1, - "v1.1": 8, "April": 1, "consistency.": 1, "OBJ": 2, "lcd": 2, - "number": 27, "string": 8, "conversion": 1, - "PUB": 63, "init": 2, "baud": 2, "lines": 24, - "okay": 11, "Initializes": 1, "serial": 1, "LCD": 4, - "true": 6, - "if": 53, - "parameters": 19, "lcd.init": 1, "finalize": 1, "Finalizes": 1, - "frees": 6, "floats": 1, "lcd.finalize": 1, "putc": 1, "txbyte": 2, "Send": 1, - "byte": 27, "terminal": 4, "lcd.putc": 1, "str": 3, "strAddr": 2, "Print": 15, - "zero": 10, "terminated": 4, "lcd.str": 8, "dec": 3, - "signed": 4, "decimal": 5, "num.dec": 1, "decf": 1, @@ -54424,26 +55031,24 @@ "num.decf": 1, "decx": 1, "digits": 23, - "negative": 2, "num.decx": 1, "hex": 3, "hexadecimal": 4, "num.hex": 1, "ihex": 1, + "an": 12, "indicated": 2, "num.ihex": 1, "bin": 3, "binary": 4, "num.bin": 1, "ibin": 1, - "%": 162, "num.ibin": 1, "cls": 1, "Clears": 2, "moves": 1, "cursor": 9, "home": 4, - "position": 9, "lcd.cls": 1, "Moves": 2, "lcd.home": 1, @@ -54460,10 +55065,9 @@ "blink": 4, "lcd.cursor": 1, "display": 23, - "status": 15, "Controls": 1, "visibility": 1, - "false": 7, + ";": 2, "hide": 1, "contents": 3, "clearing": 1, @@ -54476,52 +55080,366 @@ "Installs": 1, "character": 6, "map": 1, - "address": 16, "definition": 9, "array": 1, "lcd.custom": 1, "backLight": 1, "Enable": 1, - "disable": 7, "backlight": 1, "affects": 1, + "only": 63, "backlit": 1, "models": 1, "lcd.backLight": 1, "***************************************": 12, - "Graphics": 3, + "VGA": 8, "Driver": 4, - "Chip": 7, - "Gracey": 7, + "Author": 8, + "May": 2, + "pixel": 40, + "tile": 41, + "can": 4, + "now": 3, + "enable": 5, + "efficient": 2, + "vga_mode": 3, + "colortable": 7, + "inside": 2, + "vgaptr": 3, + "cogstop": 3, + "Assembly": 2, + "language": 2, + "Entry": 2, + "tasks": 6, + "Superfield": 2, + "hv": 5, + "interlace": 20, + "#0": 20, + "nz": 3, + "visible": 7, + "back": 8, + "porch": 9, + "vb": 2, + "bcolor": 3, + "#colortable": 2, + "#blank_line": 3, + "nobl": 1, + "screen": 13, + "_screen": 3, + "vertical": 29, + "tiles": 19, + "vx": 2, + "_vx": 1, + "skip": 5, + "if_nz": 18, + "tjz": 8, + "hb": 2, + "nobp": 1, + "horizontal": 21, + "hx": 5, + "pixels": 14, + "rdlong": 16, + "colors": 18, + "color": 39, + "pass": 5, + "video": 7, + "repoint": 2, + "same": 7, + "hf": 2, + "nofp": 1, + "hsync": 5, + "#blank_hsync": 1, + "expand": 3, + "ror": 4, + "linerot": 5, + "front": 4, + "vf": 1, + "nofl": 1, + "xor": 8, + "unless": 2, + "field1": 4, + "invisible": 8, + "taskptr": 3, + "#tasks": 1, + "before": 1, + "after": 2, + "_vs": 2, + "except": 1, + "#blank_vsync": 1, + "#field": 1, + "superfield": 1, + "blank_vsync": 1, + "cmp": 16, + "blank": 2, + "vsync": 4, + "h2": 2, + "if_c_and_nz": 1, + "waitvid": 3, + "task": 2, + "section": 4, + "z": 4, + "undisturbed": 2, + "blank_hsync": 1, + "_hf": 1, + "invisble": 1, + "sync": 10, + "_hb": 1, + "#hv": 1, + "blank_hsync_ret": 1, + "blank_line_ret": 1, + "blank_vsync_ret": 1, + "_status": 1, + "#paramcount": 1, + "load": 3, + "pins": 26, + "directions": 1, + "_pins": 4, + "_enable": 2, + "#disabled": 2, + "break": 6, + "later": 6, + "min": 4, + "_rate": 3, + "pllmin": 1, + "_011": 1, + "adjust": 4, + "within": 5, + "MHz": 16, + "hvbase": 5, + "muxnc": 5, + "vmask": 1, + "_mode": 7, + "hmask": 1, + "_hx": 4, + "_vt": 3, + "consider": 2, + "muxc": 5, + "lineadd": 4, + "lineinc": 3, + "movi": 3, + "vcfg": 2, + "_000": 5, + "/160": 2, + "#13": 3, + "times": 3, + "loaded": 3, + "#9": 2, + "FC": 2, + "_colors": 2, + "colormask": 1, + "andn": 7, + "d6": 3, + "keep": 2, + "loading": 2, + "multiply_ret": 2, + "Disabled": 2, + "nap": 5, + "ms": 4, + "try": 2, + "again": 2, + "ctra": 5, + "disabled": 3, + "cnt": 2, + "#entry": 1, + "Initialized": 1, + "pll": 5, + "lowest": 1, + "pllmax": 1, + "_000_000": 6, + "*16": 1, + "vco": 3, + "max": 6, + "m4": 1, + "Uninitialized": 3, + "taskret": 4, + "Parameter": 4, + "buffer": 4, + "/non": 4, + "tihv": 1, + "@long": 2, + "_ht": 2, + "_ho": 2, + "_hd": 1, + "_hs": 1, + "_vd": 1, + "fit": 2, + "underneath": 1, + "BF": 1, + "___": 1, + "/1/2": 1, + "off/visible/invisible": 1, + "vga_enable": 3, + "pppttt": 1, + "words": 5, + "vga_colors": 2, + "vga_vt": 6, + "expansion": 8, + "vga_vx": 4, + "vga_vo": 4, + "ticks": 11, + "vga_hf": 2, + "vga_hb": 2, + "vga_vf": 2, + "vga_vb": 2, + "tick": 2, + "Hz": 5, + "preceding": 2, + "may": 6, + "copied": 2, + "your": 2, + "code.": 2, + "After": 2, + "setting": 2, + "@vga_status": 1, + "driver.": 3, + "All": 2, + "are": 18, + "reloaded": 2, + "superframe": 2, + "allowing": 2, + "you": 5, + "live": 2, + "changes.": 2, + "To": 3, + "minimize": 2, + "flicker": 5, + "correlate": 2, + "changes": 3, + "vga_status.": 1, + "Experimentation": 2, + "required": 4, + "optimize": 2, + "parameters.": 2, + "descriptions": 2, + "__________": 4, + "vga_status": 1, + "sets": 3, + "indicate": 2, + "CLKFREQ": 10, + "currently": 4, + "outputting": 4, + "will": 12, + "driven": 2, + "low": 5, + "reduces": 2, + "power": 3, + "non": 3, + "________": 3, + "vga_pins": 1, + "select": 9, + "group": 7, + "example": 3, + "selects": 4, + "between": 4, + "x16": 7, + "x32": 6, + "tileheight": 4, + "controls": 4, + "progressive": 2, + "scan": 7, + "less": 5, + "good": 5, + "motion": 2, + "monitors": 1, + "interlaced": 5, + "allows": 1, + "double": 2, + "text": 9, + "polarity": 1, + "respectively": 1, + "active": 3, + "high": 7, + "vga_screen": 1, + "define": 10, + "right": 9, + "bottom": 5, + "vga_ht": 3, + "has": 4, + "two": 6, + "bitfields": 2, + "colorset": 2, + "pixelgroup": 2, + "colorset*": 2, + "pixelgroup**": 2, + "ppppppppppcccc00": 2, + "p": 8, + "colorsets": 4, + "four": 8, + "**": 2, + "pixelgroups": 2, + "": 5, + "up": 4, + "fields": 2, + "t": 10, + "care": 1, + "it": 8, + "suggested": 1, + "bits/pins": 3, + "red": 2, + "green": 1, + "blue": 3, + "bit/pin": 1, + "ohm": 10, + "resistors": 4, + "form": 7, + "V": 7, + "signals": 1, + "connect": 3, + "RED": 1, + "GREEN": 2, + "BLUE": 1, + "connector": 3, + "always": 2, + "HSYNC": 1, + "resistor": 4, + "VSYNC": 1, + "______": 14, + "vga_hx": 3, + "factor": 4, + "sure": 4, + "||": 5, + "vga_ho": 2, + "equal": 1, + "vga_hd": 2, + "does": 2, + "exceed": 1, + "vga_vd": 2, + "pos/neg": 4, + "recommended": 2, + "shifts": 4, + "right/left": 2, + "up/down": 2, + "vga_hs": 1, + "vga_vs": 1, + "vga_rate": 2, + "limit": 4, + "should": 1, + "Graphics": 3, + "v1.0": 4, "Theory": 1, - "cog": 39, + "Operation": 2, "launched": 1, "processes": 1, "commands": 1, - "via": 5, "routines.": 1, "Points": 1, "arcs": 1, "sprites": 1, - "text": 9, "polygons": 1, "rasterized": 1, "specified": 1, "stretch": 1, - "memory": 2, "serves": 1, + "as": 8, "generic": 1, "bitmap": 15, "buffer.": 1, "displayed": 1, "TV.SRC": 1, "VGA.SRC": 1, - "driver.": 3, "GRAPHICS_DEMO.SRC": 1, "usage": 1, "example.": 1, - "CON": 4, - "#1": 47, "_setup": 1, "_color": 2, "_width": 2, @@ -54537,85 +55455,46 @@ "_textmode": 2, "_fill": 1, "_loop": 5, - "VAR": 10, - "long": 122, "command": 7, "bitmap_base": 7, - "pixel": 40, - "data": 47, "slices": 3, "text_xs": 1, "text_ys": 1, "text_sp": 1, "text_just": 1, "font": 3, - "pointer": 14, - "same": 7, "instances": 1, - "stop": 9, - "cognew": 4, "@loop": 1, "@command": 1, - "Stop": 6, "graphics": 4, - "driver": 17, - "cogstop": 3, "setup": 3, "x_tiles": 9, "y_tiles": 9, "x_origin": 2, "y_origin": 2, "base_ptr": 3, - "|": 22, "bases_ptr": 3, "slices_ptr": 1, - "Set": 5, - "x": 112, - "tiles": 19, - "x16": 7, - "pixels": 14, - "each": 11, - "y": 80, "relative": 2, - "center": 10, - "base": 6, "setcommand": 13, - "write": 36, "bases": 2, - "<<": 70, "retain": 2, - "high": 7, - "level": 5, "bitmap_longs": 1, - "clear": 5, + "Clear": 2, "dest_ptr": 2, "Copy": 1, - "double": 2, "buffered": 1, - "flicker": 5, "destination": 1, - "color": 39, - "bit": 35, "pattern": 2, - "code": 3, - "bits": 29, "@colors": 2, - "&": 21, "determine": 2, "shape/width": 2, "w": 8, - "F": 18, "pixel_width": 1, "pixel_passes": 2, "@w": 1, - "update": 7, - "new": 6, - "repeat": 18, - "i": 24, - "p": 8, "E": 7, "r": 4, - "<": 14, "colorwidth": 1, "plot": 17, "Plot": 3, @@ -54625,17 +55504,13 @@ "arc": 21, "xr": 7, "yr": 7, - "angle": 23, "anglestep": 2, - "steps": 9, "arcmode": 2, "radii": 3, - "initial": 6, "FFF": 3, "..359.956": 3, - "step": 9, + "just": 2, "leaves": 1, - "between": 4, "points": 2, "vec": 1, "vecscale": 5, @@ -54643,40 +55518,32 @@ "vecdef_ptr": 5, "vector": 12, "sprite": 14, - "scale": 7, - "rotation": 3, "Vector": 2, - "word": 212, "length": 4, + "...": 5, "vecarc": 2, "pix": 3, "pixrot": 3, "pixdef_ptr": 3, "mirror": 1, "Pixel": 1, - "justify": 4, "draw": 5, "textarc": 1, "string_ptr": 6, "justx": 2, "justy": 3, - "it": 8, - "may": 6, "necessary": 1, - "call": 44, ".finish": 1, "immediately": 1, "afterwards": 1, "prevent": 1, "subsequent": 1, "clobbering": 1, + "being": 2, "drawn": 1, "@justx": 1, "@x_scale": 1, - "get": 30, "half": 2, - "min": 4, - "max": 6, "pmin": 1, "round/square": 1, "corners": 1, @@ -54690,23 +55557,19 @@ "tri": 2, "x3": 4, "y3": 5, + "x4": 4, "y4": 1, "x1": 5, "y1": 7, "xy": 1, "solid": 1, - "/": 27, "finish": 2, - "Wait": 2, - "current": 3, - "insure": 2, "safe": 1, "manually": 1, "manipulate": 1, "while": 5, "primitives": 1, "xa0": 53, - "start": 16, "ya1": 3, "ya2": 1, "ya3": 2, @@ -54746,7 +55609,6 @@ "a0": 8, "a2": 1, "farc": 41, - "another": 7, "arc/line": 1, "Round": 1, "recipes": 1, @@ -54757,7 +55619,6 @@ "xb2": 26, "xa1": 8, "xb1": 2, - "more": 90, "xa3": 8, "xb3": 6, "xb4": 35, @@ -54784,7 +55645,6 @@ "R": 3, "T": 5, "aA": 5, - "V": 7, "X": 4, "Z": 1, "b": 1, @@ -54793,36 +55653,19 @@ "h": 2, "j": 2, "l": 2, - "t": 10, + "n": 4, "v": 1, - "z": 4, - "delta": 10, "bullet": 1, "fx": 1, "*************************************": 2, "org": 2, - "loop": 14, - "rdlong": 16, - "t1": 139, - "par": 20, - "wz": 21, "arguments": 1, - "mov": 154, - "t2": 90, "t3": 10, - "#8": 14, "arg": 3, "arg0": 12, - "add": 92, - "d0": 11, - "#4": 8, - "djnz": 24, - "wrlong": 6, "dx": 20, "dy": 15, "arg1": 3, - "ror": 4, - "#16": 6, "jump": 1, "jumps": 6, "color_": 1, @@ -54839,8 +55682,6 @@ "arg3": 12, "basesptr": 4, "arg5": 6, - "jmp": 24, - "#loop": 9, "width_": 1, "pwidth": 3, "passes": 3, @@ -54848,59 +55689,38 @@ "line_": 1, "#linepd": 2, "arg7": 6, - "#3": 7, - "cmp": 16, "exit": 5, "px": 14, "py": 11, - "mode": 7, "if_z": 11, "#plotp": 3, - "test": 38, "arg4": 5, "iterations": 1, "vecdef": 1, - "rdword": 10, "t7": 8, "add/sub": 1, "to/from": 1, "t6": 7, - "sumc": 4, "#multiply": 2, "round": 1, - "up": 4, "/2": 1, "lsb": 1, - "shr": 24, "t4": 7, - "if_nc": 15, "h8000": 5, - "wc": 57, - "if_c": 37, "xwords": 1, "ywords": 1, "xxxxxxxx": 2, "save": 1, - "actual": 4, "sy": 5, "rdbyte": 3, "origin": 1, - "adjust": 4, "neg": 2, - "sub": 12, "arg2": 7, - "sumnc": 7, - "if_nz": 18, "yline": 1, "sx": 4, - "#0": 20, - "next": 16, - "#2": 15, - "shl": 21, "t5": 4, "xpixel": 2, "rol": 1, - "muxc": 5, "pcolor": 5, "color1": 2, "color2": 2, @@ -54908,9 +55728,6 @@ "#arcmod": 1, "text_": 1, "chr": 4, - "done": 3, - "scan": 7, - "tjz": 8, "def": 2, "extract": 4, "_0001_1": 1, @@ -54926,9 +55743,7 @@ "_0111_0": 1, "setd_ret": 1, "fontxy_ret": 1, - "ret": 17, "fontb": 1, - "multiply": 8, "fontb_ret": 1, "textmode_": 1, "textsp": 2, @@ -54937,7 +55752,6 @@ "db2": 1, "linechange": 1, "lines_minus_1": 1, - "right": 9, "fractions": 1, "pre": 1, "increment": 1, @@ -54946,25 +55760,17 @@ "integers": 1, "base0": 17, "base1": 10, - "sar": 8, "cmps": 3, - "out": 24, "range": 2, "ylongs": 6, - "skip": 5, "mins": 1, "mask": 3, "mask0": 8, "#5": 2, - "ready": 10, "count": 4, "mask1": 6, "bits0": 6, "bits1": 5, - "pass": 5, - "not": 6, - "full": 3, - "longs": 15, "deltas": 1, "linepd": 1, "wr": 2, @@ -54972,7 +55778,6 @@ "abs": 1, "dominant": 2, "axis": 1, - "last": 6, "ratio": 1, "xloop": 1, "linepd_ret": 1, @@ -54987,19 +55792,16 @@ "account": 1, "special": 1, "case": 5, - "andn": 7, "slice": 7, "shift0": 1, "colorize": 1, "upper": 2, "subx": 1, "#wslice": 1, - "offset": 14, "Get": 2, "args": 5, "move": 2, "using": 1, - "first": 9, "arg6": 1, "arcmod_ret": 1, "arg2/t4": 1, @@ -55011,36 +55813,150 @@ "cartesian": 1, "polarx": 1, "sine_90": 2, - "sine": 7, - "quadrant": 3, - "nz": 3, - "negate": 2, - "table": 9, "sine_table": 1, - "shift": 7, - "final": 3, "sine/cosine": 1, - "integer": 2, - "negnz": 3, "sine_180": 1, "shifted": 1, - "multiplier": 3, "product": 1, "Defined": 1, - "constants": 2, "hFFFFFFFF": 1, "FFFFFFFF": 1, "fontptr": 1, - "Undefined": 2, "temps": 1, - "res": 89, - "pointers": 2, "slicesptr": 1, "line/plot": 1, "coordinates": 1, + "TV": 9, + "Text": 1, + "cols": 5, + "rows": 4, + "screensize": 4, + "lastrow": 2, + "tv_count": 2, + "row": 4, + "flag": 5, + "tv_status": 4, + "off/on": 3, + "tv_pins": 5, + "tccip": 3, + "chroma": 19, + "ntsc/pal": 3, + "tv_screen": 5, + "tv_ht": 5, + "tv_hx": 5, + "tv_ho": 5, + "tv_broadcast": 4, + "basepin": 3, + "setcolors": 2, + "@palette": 1, + "longmove": 2, + "@tv_status": 3, + "@tv_params": 1, + "@screen": 3, + "tv_colors": 2, + "tv.start": 1, + "tv.stop": 2, + "stringptr": 3, + "strsize": 2, + "_000_000_000": 2, + "//": 4, + "elseif": 2, + "lookupz": 2, + "..": 4, + "k": 1, + "Output": 1, + "backspace": 1, + "tab": 3, + "spaces": 1, + "follows": 4, + "Y": 2, + "others": 1, + "printable": 1, + "characters": 1, + "wordfill": 2, + "print": 2, + "A..": 1, + "newline": 3, + "other": 1, + "colorptr": 2, + "fore": 3, + "Override": 1, + "default": 1, + "palette": 2, + "list": 1, + "arranged": 3, + "scroll": 1, + "hc": 1, + "ho": 1, + "white": 2, + "dark": 2, + "BB": 1, + "yellow": 1, + "brown": 1, + "cyan": 3, + "pink": 1, + "Terminal": 1, + "REVISION": 2, + "HISTORY": 2, + "/15/2006": 2, + "instead": 1, + "method": 2, + "minimum": 2, + "x_scale": 4, + "x_spacing": 4, + "normal": 1, + "x_chr": 2, + "y_chr": 5, + "y_scale": 3, + "y_spacing": 3, + "y_offset": 2, + "x_limit": 2, + "x_screen": 1, + "y_limit": 3, + "y_screen": 4, + "y_max": 3, + "y_screen_bytes": 2, + "y_scroll": 2, + "y_scroll_longs": 4, + "y_clear": 2, + "y_clear_longs": 2, + "paramcount": 1, + "ccinp": 1, + "swap": 2, + "tv_hc": 1, + "cells": 1, + "cell": 1, + "@bitmap": 1, + "FC0": 1, + "gr.start": 2, + "gr.setup": 2, + "gr.textmode": 1, + "gr.width": 1, + "gr.stop": 1, + "schemes": 1, + "gr.color": 1, + "gr.text": 1, + "@c": 1, + "gr.finish": 2, + "PRI": 1, + "tvparams": 1, + "tvparams_pins": 1, + "_0101": 1, + "vc": 1, + "vo": 1, + "_250_000": 2, + "auralcog": 1, + "color_schemes": 1, + "BC_6C_05_02": 1, + "E_0D_0C_0A": 1, + "E_6D_6C_6A": 1, + "BE_BD_BC_BA": 1, + "*****************************************": 4, "Inductive": 1, "Sensor": 1, "Demo": 1, + "Beau": 2, + "Schwabe": 2, "Test": 2, "Circuit": 1, "pF": 1, @@ -55049,32 +55965,27 @@ "FPin": 2, "SDF": 1, "sigma": 3, - "feedback": 2, "SDI": 1, + "input": 2, "GND": 4, "Coils": 1, "Wire": 1, - "used": 9, "was": 2, - "GREEN": 2, "about": 4, "gauge": 1, "Coke": 3, "Can": 3, - "form": 7, - "MHz": 16, "BIC": 1, "pen": 1, "How": 1, - "does": 2, "work": 2, "Note": 1, "reported": 2, "resonate": 5, - "frequency": 18, "LC": 8, "frequency.": 2, "Instead": 1, + "where": 2, "voltage": 5, "produced": 1, "circuit": 5, @@ -55082,14 +55993,12 @@ "In": 2, "below": 4, "When": 1, - "you": 5, "apply": 1, "small": 1, "specific": 1, "near": 1, "uncommon": 1, "measure": 1, - "times": 3, "amount": 1, "applying": 1, "circuit.": 1, @@ -55097,15 +56006,11 @@ "diode": 2, "basically": 1, "feeds": 1, - "divide": 3, "divider": 1, "...So": 1, "order": 1, - "see": 2, "ADC": 2, "sweep": 2, - "result": 6, - "output": 11, "needs": 1, "generate": 1, "Volts": 1, @@ -55115,7 +56020,6 @@ "since": 1, "sensitive": 1, "works": 1, - "after": 2, "divider.": 1, "typical": 1, "magnitude": 1, @@ -55123,6 +56027,7 @@ "might": 1, "look": 2, "something": 1, + "like": 4, "*****": 4, "...With": 1, "looks": 1, @@ -55143,8 +56048,7 @@ "situation": 1, "exactly": 1, "great": 1, - "gr.start": 2, - "gr.setup": 2, + "I/O": 3, "FindResonateFrequency": 1, "DisplayInductorValue": 2, "Freq.Synth": 1, @@ -55155,7 +56059,6 @@ "gr.copy": 2, "display_base": 2, "Option": 2, - "Start": 6, "*********************************************": 2, "Frequency": 1, "LowerFrequency": 2, @@ -55166,32 +56069,169 @@ "gr.line": 3, "FTemp/1024": 1, "Finish": 1, + "tv_mode": 2, + "lntsc": 3, + "fpal": 2, + "_433_618": 2, + "PAL": 10, + "spal": 3, + "tvptr": 3, + "vinv": 2, + "burst": 2, + "sync_high2": 2, + "black": 2, + "leftmost": 1, + "vert": 1, + "movs": 9, + "if_z_eq_c": 1, + "#hsync": 1, + "pulses": 2, + "vsync1": 2, + "#sync_low1": 1, + "hhalf": 2, + "field2": 1, + "#superfield": 1, + "Blank": 1, + "Horizontal": 1, + "pal": 2, + "toggle": 1, + "phaseflip": 4, + "phasemask": 2, + "sync_scale1": 1, + "hsync_ret": 1, + "vsync_high": 1, + "#sync_high1": 1, + "Tasks": 1, + "performed": 1, + "sections": 1, + "#_enable": 1, + "rd": 1, + "#wtab": 1, + "ltab": 1, + "#ltab": 1, + "cancel": 1, + "_broadcast": 4, + "m8": 3, + "fcolor": 4, + "#divide": 2, + "_111": 1, + "m128": 2, + "_100": 1, + "_001": 1, + "broadcast/baseband": 1, + "strip": 3, + "baseband": 18, + "_auralcog": 1, + "colorreg": 3, + "colorloop": 1, + "m1": 4, + "outa": 2, + "reload": 1, + "d0s1": 1, + "F0F0F0F0": 1, + "pins0": 1, + "_01110000_00001111_00000111": 1, + "pins1": 1, + "_11110111_01111111_01110111": 1, + "sync_high1": 1, + "_101010_0101": 1, + "NTSC/PAL": 2, + "metrics": 1, + "tables": 1, + "wtab": 1, + "sntsc": 3, + "lpal": 3, + "hrest": 2, + "vvis": 2, + "vrep": 2, + "_8A": 1, + "_AA": 1, + "sync_scale2": 1, + "_00000000_01_10101010101010_0101": 1, + "m2": 1, + "contiguous": 1, + "tv_status.": 1, + "_________": 5, + "tv_enable": 2, + "requirement": 2, + "_______": 2, + "_0111": 6, + "_1111": 6, + "_0000": 4, + "nibble": 4, + "attach": 1, + "/560/1100": 2, + "network": 1, + "visual": 1, + "carrier": 1, + "mixing": 2, + "mix": 2, + "black/white": 2, + "composite": 1, + "doubles": 1, + "format": 1, + "_318_180": 1, + "_579_545": 1, + "_734_472": 1, + "itself": 1, + "tv_vt": 3, + "valid": 2, + "luminance": 2, + "adds/subtracts": 1, + "beware": 1, + "modulated": 1, + "produce": 1, + "saturated": 1, + "toggling": 1, + "levels": 1, + "because": 1, + "abruptly": 1, + "rather": 1, + "against": 1, + "background": 1, + "best": 1, + "appearance": 1, + "_____": 6, + "practical": 2, + "/30": 1, + "tv_vx": 2, + "tv_vo": 2, + "centered": 2, + "image": 2, + "____________": 1, + "expressed": 1, + "ie": 1, + "channel": 1, + "modulator": 2, + "turned": 2, + "broadcasting": 1, + "___________": 1, + "tv_auralcog": 1, + "supply": 1, + "uses": 2, + "selected": 1, + "bandwidth": 2, + "vary": 1, "PS/2": 1, "Keyboard": 1, "v1.0.1": 2, - "REVISION": 2, - "HISTORY": 2, - "/15/2006": 2, "Tool": 1, "par_tail": 1, "key": 4, - "buffer": 4, "head": 1, "par_present": 1, "states": 1, "par_keys": 1, "******************************************": 2, "entry": 1, - "movd": 10, "#_dpin": 1, "masks": 1, "dmask": 4, "_dpin": 3, "cmask": 2, "_cpin": 2, - "reset": 14, - "parameter": 14, "_head": 6, + "dira": 3, "_present/_states": 1, "dlsb": 2, "stat": 6, @@ -55212,21 +56252,16 @@ "set/clear": 1, "#_states": 1, "reg": 5, - "muxnc": 5, "cmpsub": 4, "shift/ctrl/alt/win": 1, "pairs": 1, "E0": 1, "handle": 1, "scrlock/capslock/numlock": 1, - "_000": 5, "_locks": 5, "#29": 1, - "change": 3, "configure": 3, - "flag": 5, "leds": 3, - "check": 5, "shift1": 1, "if_nz_and_c": 4, "#@shift1": 1, @@ -55236,11 +56271,9 @@ "considering": 1, "capslock": 1, "if_nz_and_nc": 1, - "xor": 8, "flags": 1, "alt": 1, "room": 1, - "valid": 2, "enter": 1, "FF": 3, "#11*4": 1, @@ -55250,22 +56283,17 @@ "lock": 1, "#transmit": 2, "rev": 1, - "rcl": 2, "_present": 2, "#update": 1, "Lookup": 2, - "perform": 2, "lookup": 1, - "movs": 9, "#table": 1, "#27": 1, "#rand": 1, "Transmit": 1, "pull": 2, "clock": 4, - "low": 5, "napshr": 3, - "#13": 3, "#18": 2, "release": 1, "transmit_bit": 1, @@ -55274,7 +56302,6 @@ "wcond": 3, "c1": 2, "c0d0": 2, - "wait": 6, "until": 3, "#wait": 2, "#receive_ack": 1, @@ -55288,6 +56315,7 @@ "us": 1, "#nap": 1, "_d3": 1, + "ina": 3, "#receive_bit": 1, "align": 1, "isolate": 1, @@ -55297,9 +56325,7 @@ "wait_c0": 1, "c0": 1, "timeout": 1, - "ms": 4, "wloop": 1, - "required": 4, "_d4": 1, "replaced": 1, "c0/c1/c0d0/c1d1": 1, @@ -55309,11 +56335,8 @@ "if_c_or_nz": 1, "c1d1": 1, "if_nc_or_z": 1, - "nap": 5, "scales": 1, - "time": 7, "snag": 1, - "cnt": 2, "elapses": 1, "nap_ret": 1, "F9": 1, @@ -55359,814 +56382,88 @@ "C6E9": 1, "ScrLock": 1, "D6": 1, - "Uninitialized": 3, - "_________": 5, "Key": 1, "Codes": 1, "keypress": 1, "keystate": 2, "E0..FF": 1, "AS": 1, - "TV": 9, - "May": 2, - "tile": 41, - "size": 5, - "enable": 5, - "efficient": 2, - "tv_mode": 2, - "NTSC": 11, - "lntsc": 3, - "cycles": 4, - "per": 4, - "sync": 10, - "fpal": 2, - "_433_618": 2, - "PAL": 10, - "spal": 3, - "colortable": 7, - "inside": 2, - "tvptr": 3, - "starts": 4, - "available": 4, - "@entry": 3, - "Assembly": 2, - "language": 2, - "Entry": 2, - "tasks": 6, - "#10": 2, - "Superfield": 2, - "_mode": 7, - "interlace": 20, - "vinv": 2, - "hsync": 5, - "waitvid": 3, - "burst": 2, - "sync_high2": 2, - "task": 2, - "section": 4, - "undisturbed": 2, - "black": 2, - "visible": 7, - "vb": 2, - "leftmost": 1, - "_vt": 3, - "vertical": 29, - "expand": 3, - "vert": 1, - "vscl": 12, - "hb": 2, - "horizontal": 21, - "hx": 5, - "colors": 18, - "screen": 13, - "video": 7, - "repoint": 2, - "hf": 2, - "linerot": 5, - "field1": 4, - "unless": 2, - "invisible": 8, - "if_z_eq_c": 1, - "#hsync": 1, - "vsync": 4, - "pulses": 2, - "vsync1": 2, - "#sync_low1": 1, - "hhalf": 2, - "field2": 1, - "#superfield": 1, - "Blank": 1, - "Horizontal": 1, - "pal": 2, - "toggle": 1, - "phaseflip": 4, - "phasemask": 2, - "sync_scale1": 1, - "blank": 2, - "hsync_ret": 1, - "vsync_high": 1, - "#sync_high1": 1, - "Tasks": 1, - "performed": 1, - "sections": 1, - "during": 2, - "back": 8, - "porch": 9, - "load": 3, - "#_enable": 1, - "_pins": 4, - "_enable": 2, - "#disabled": 2, - "break": 6, - "return": 15, - "later": 6, - "rd": 1, - "#wtab": 1, - "ltab": 1, - "#ltab": 1, - "CLKFREQ": 10, - "cancel": 1, - "_broadcast": 4, - "m8": 3, - "jmpret": 5, - "taskptr": 3, - "taskret": 4, - "ctra": 5, - "pll": 5, - "fcolor": 4, - "#divide": 2, - "vco": 3, - "movi": 3, - "_111": 1, - "ctrb": 4, - "limit": 4, - "m128": 2, - "_100": 1, - "within": 5, - "_001": 1, - "frqb": 2, - "swap": 2, - "broadcast/baseband": 1, - "strip": 3, - "chroma": 19, - "baseband": 18, - "_auralcog": 1, - "_hx": 4, - "consider": 2, - "lineadd": 4, - "lineinc": 3, - "/160": 2, - "loaded": 3, - "#9": 2, - "FC": 2, - "_colors": 2, - "colorreg": 3, - "d6": 3, - "colorloop": 1, - "keep": 2, - "loading": 2, - "m1": 4, - "multiply_ret": 2, - "Disabled": 2, - "try": 2, - "again": 2, - "reload": 1, - "_000_000": 6, - "d0s1": 1, - "F0F0F0F0": 1, - "pins0": 1, - "_01110000_00001111_00000111": 1, - "pins1": 1, - "_11110111_01111111_01110111": 1, - "sync_high1": 1, - "_101010_0101": 1, - "NTSC/PAL": 2, - "metrics": 1, - "tables": 1, - "wtab": 1, - "sntsc": 3, - "lpal": 3, - "hrest": 2, - "vvis": 2, - "vrep": 2, - "_8A": 1, - "_AA": 1, - "sync_scale2": 1, - "_00000000_01_10101010101010_0101": 1, - "m2": 1, - "Parameter": 4, - "/non": 4, - "tccip": 3, - "_screen": 3, - "@long": 2, - "_ht": 2, - "_ho": 2, - "fit": 2, - "contiguous": 1, - "tv_status": 4, - "off/on": 3, - "tv_pins": 5, - "ntsc/pal": 3, - "tv_screen": 5, - "tv_ht": 5, - "tv_hx": 5, - "expansion": 8, - "tv_ho": 5, - "tv_broadcast": 4, - "aural": 13, - "fm": 6, - "preceding": 2, - "copied": 2, - "your": 2, - "code.": 2, - "After": 2, - "setting": 2, - "variables": 3, - "@tv_status": 3, - "All": 2, - "reloaded": 2, - "superframe": 2, - "allowing": 2, - "live": 2, - "changes.": 2, - "minimize": 2, - "correlate": 2, - "changes": 3, - "tv_status.": 1, - "Experimentation": 2, - "optimize": 2, - "some": 3, - "parameters.": 2, - "descriptions": 2, - "sets": 3, - "indicate": 2, - "disabled": 3, - "tv_enable": 2, - "requirement": 2, - "currently": 4, - "outputting": 4, - "driven": 2, - "reduces": 2, - "power": 3, - "_______": 2, - "select": 9, - "group": 7, - "_0111": 6, - "broadcast": 19, - "_1111": 6, - "_0000": 4, - "active": 3, - "top": 10, - "nibble": 4, - "bottom": 5, - "signal": 8, - "arranged": 3, - "attach": 1, - "ohm": 10, - "resistor": 4, - "sum": 7, - "/560/1100": 2, - "subcarrier": 3, - "network": 1, - "visual": 1, - "carrier": 1, - "selects": 4, - "x32": 6, - "tileheight": 4, - "controls": 4, - "mixing": 2, - "mix": 2, - "black/white": 2, - "composite": 1, - "progressive": 2, - "less": 5, - "good": 5, - "motion": 2, - "interlaced": 5, - "doubles": 1, - "format": 1, - "ticks": 11, - "must": 18, - "least": 14, - "_318_180": 1, - "_579_545": 1, - "Hz": 5, - "_734_472": 1, - "itself": 1, - "words": 5, - "define": 10, - "tv_vt": 3, - "has": 4, - "bitfields": 2, - "colorset": 2, - "ptr": 5, - "pixelgroup": 2, - "colorset*": 2, - "pixelgroup**": 2, - "ppppppppppcccc00": 2, - "colorsets": 4, - "four": 8, - "**": 2, - "pixelgroups": 2, - "": 5, - "tv_colors": 2, - "fields": 2, - "values": 2, - "luminance": 2, - "modulation": 4, - "adds/subtracts": 1, - "beware": 1, - "modulated": 1, - "produce": 1, - "saturated": 1, - "toggling": 1, - "levels": 1, - "because": 1, - "abruptly": 1, - "rather": 1, - "against": 1, - "white": 2, - "background": 1, - "best": 1, - "appearance": 1, - "_____": 6, - "practical": 2, - "/30": 1, - "factor": 4, - "sure": 4, - "||": 5, - "than": 5, - "tv_vx": 2, - "tv_vo": 2, - "pos/neg": 4, - "centered": 2, - "image": 2, - "shifts": 4, - "right/left": 2, - "up/down": 2, - "____________": 1, - "expressed": 1, - "ie": 1, - "channel": 1, - "_250_000": 2, - "modulator": 2, - "turned": 2, - "saves": 2, - "broadcasting": 1, - "___________": 1, - "tv_auralcog": 1, - "supply": 1, - "selected": 1, - "bandwidth": 2, - "KHz": 3, - "vary": 1, - "Terminal": 1, - "instead": 1, - "minimum": 2, - "x_scale": 4, - "x_spacing": 4, - "normal": 1, - "x_chr": 2, - "y_chr": 5, - "y_scale": 3, - "y_spacing": 3, - "y_offset": 2, - "x_limit": 2, - "x_screen": 1, - "y_limit": 3, - "y_screen": 4, - "y_max": 3, - "y_screen_bytes": 2, - "y_scroll": 2, - "y_scroll_longs": 4, - "y_clear": 2, - "y_clear_longs": 2, - "paramcount": 1, - "ccinp": 1, - "tv_hc": 1, - "cells": 1, - "cell": 1, - "@bitmap": 1, - "FC0": 1, - "gr.textmode": 1, - "gr.width": 1, - "tv.stop": 2, - "gr.stop": 1, - "schemes": 1, - "tab": 3, - "gr.color": 1, - "gr.text": 1, - "@c": 1, - "gr.finish": 2, - "newline": 3, - "strsize": 2, - "_000_000_000": 2, - "//": 4, - "elseif": 2, - "lookupz": 2, - "..": 4, - "PRI": 1, - "longmove": 2, - "longfill": 2, - "tvparams": 1, - "tvparams_pins": 1, - "_0101": 1, - "vc": 1, - "vx": 2, - "vo": 1, - "auralcog": 1, - "color_schemes": 1, - "BC_6C_05_02": 1, - "E_0D_0C_0A": 1, - "E_6D_6C_6A": 1, - "BE_BD_BC_BA": 1, - "Text": 1, - "x13": 2, - "cols": 5, - "rows": 4, - "screensize": 4, - "lastrow": 2, - "tv_count": 2, - "row": 4, - "tv": 2, - "basepin": 3, - "setcolors": 2, - "@palette": 1, - "@tv_params": 1, - "@screen": 3, - "tv.start": 1, - "stringptr": 3, - "k": 1, - "Output": 1, - "backspace": 1, - "spaces": 1, - "follows": 4, - "Y": 2, - "others": 1, - "printable": 1, - "characters": 1, - "wordfill": 2, - "print": 2, - "A..": 1, - "other": 1, - "colorptr": 2, - "fore": 3, - "Override": 1, - "default": 1, - "palette": 2, - "list": 1, - "scroll": 1, - "hc": 1, - "ho": 1, - "dark": 2, - "blue": 3, - "BB": 1, - "yellow": 1, - "brown": 1, - "cyan": 3, - "red": 2, - "pink": 1, - "VGA": 8, - "vga_mode": 3, - "vgaptr": 3, - "hv": 5, - "bcolor": 3, - "#colortable": 2, - "#blank_line": 3, - "nobl": 1, - "_vx": 1, - "nobp": 1, - "nofp": 1, - "#blank_hsync": 1, - "front": 4, - "vf": 1, - "nofl": 1, - "#tasks": 1, - "before": 1, - "_vs": 2, - "except": 1, - "#blank_vsync": 1, - "#field": 1, - "superfield": 1, - "blank_vsync": 1, - "h2": 2, - "if_c_and_nz": 1, - "blank_hsync": 1, - "_hf": 1, - "invisble": 1, - "_hb": 1, - "#hv": 1, - "blank_hsync_ret": 1, - "blank_line_ret": 1, - "blank_vsync_ret": 1, - "_status": 1, - "#paramcount": 1, - "directions": 1, - "_rate": 3, - "pllmin": 1, - "_011": 1, - "rate": 6, - "hvbase": 5, - "frqa": 3, - "vmask": 1, - "hmask": 1, - "vcfg": 2, - "colormask": 1, - "waitcnt": 3, - "#entry": 1, - "Initialized": 1, - "lowest": 1, - "pllmax": 1, - "*16": 1, - "m4": 1, - "tihv": 1, - "_hd": 1, - "_hs": 1, - "_vd": 1, - "underneath": 1, - "BF": 1, - "___": 1, - "/1/2": 1, - "off/visible/invisible": 1, - "vga_enable": 3, - "pppttt": 1, - "vga_colors": 2, - "vga_vt": 6, - "vga_vx": 4, - "vga_vo": 4, - "vga_hf": 2, - "vga_hb": 2, - "vga_vf": 2, - "vga_vb": 2, - "tick": 2, - "@vga_status": 1, - "vga_status.": 1, - "__________": 4, - "vga_status": 1, - "________": 3, - "vga_pins": 1, - "monitors": 1, - "allows": 1, - "polarity": 1, - "respectively": 1, - "vga_screen": 1, - "vga_ht": 3, - "care": 1, - "suggested": 1, - "bits/pins": 3, - "green": 1, - "bit/pin": 1, - "signals": 1, - "connect": 3, - "RED": 1, - "BLUE": 1, - "connector": 3, - "always": 2, - "HSYNC": 1, - "VSYNC": 1, - "______": 14, - "vga_hx": 3, - "vga_ho": 2, - "equal": 1, - "vga_hd": 2, - "exceed": 1, - "vga_vd": 2, - "recommended": 2, - "vga_hs": 1, - "vga_vs": 1, - "vga_rate": 2, - "should": 1, - "Vocal": 2, - "Tract": 2, - "October": 1, - "synthesizes": 1, - "human": 1, - "vocal": 10, - "tract": 12, - "real": 2, - "It": 1, - "MHz.": 1, - "controlled": 1, - "reside": 1, - "parent": 1, - "aa": 2, - "ga": 5, - "gp": 2, - "vp": 3, - "vr": 1, - "f1": 4, - "f2": 1, - "f3": 3, - "f4": 2, - "na": 2, - "nf": 2, - "fa": 2, - "ff": 2, - "values.": 2, - "Before": 1, - "were": 1, - "interpolation": 1, - "shy": 1, - "frame": 12, - "makes": 1, - "behave": 1, - "sensibly": 1, - "gaps.": 1, - "frame_buffers": 2, - "bytes": 2, - "frame_longs": 3, - "frame_bytes": 1, - "...must": 1, - "dira_": 3, - "dirb_": 1, - "ctra_": 1, - "ctrb_": 3, - "frqa_": 3, - "cnt_": 1, - "many": 1, - "...contiguous": 1, - "tract_ptr": 3, - "pos_pin": 7, - "neg_pin": 6, - "fm_offset": 5, - "positive": 1, - "also": 1, - "enabled": 2, - "generation": 2, - "_500_000": 1, - "Remember": 1, - "duty": 2, - "Ready": 1, - "clkfreq": 2, - "Launch": 1, - "@attenuation": 1, - "Reset": 1, - "buffers": 1, - "@index": 1, - "constant": 3, - "frame_buffer_longs": 2, - "set_attenuation": 1, - "master": 2, - "attenuation": 3, - "initially": 2, - "set_pace": 2, - "percentage": 3, - "pace": 3, - "go": 1, - "Queue": 1, - "transition": 1, - "over": 2, - "Load": 1, - "bytemove": 1, - "@frames": 1, - "index": 5, - "Increment": 1, - "Returns": 4, - "queue": 2, - "useful": 2, - "checking": 1, - "would": 1, - "have": 1, - "frames": 2, - "empty": 2, - "detecting": 1, - "finished": 1, - "sample_ptr": 1, - "receives": 1, - "audio": 1, - "samples": 1, - "updated": 1, - "@sample": 1, - "aural_id": 1, - "id": 2, - "executing": 1, - "algorithm": 1, - "connecting": 1, - "Initialization": 1, - "reserved": 3, - "clear_cnt": 1, - "#2*15": 1, - "hub": 1, - "minst": 3, - "d0s0": 3, - "mult_ret": 1, - "antilog_ret": 1, - "assemble": 1, - "cordic": 4, - "reserves": 2, - "cstep": 1, - "instruction": 2, - "prepare": 1, - "cnt_value": 3, - "cnt_ticks": 3, - "Loop": 1, - "sample": 2, - "period": 1, - "cycle": 1, - "driving": 1, - "h80000000": 2, - "White": 1, - "noise": 3, - "source": 2, - "lfsr": 1, - "lfsr_taps": 2, - "Aspiration": 1, - "vibrato": 3, - "vphase": 2, - "glottal": 2, - "pitch": 5, - "mesh": 1, - "tune": 2, - "convert": 1, - "log": 2, - "phase": 2, - "gphase": 3, - "formant2": 2, - "rotate": 2, - "f2x": 3, - "f2y": 3, - "#cordic": 2, - "formant4": 2, - "f4x": 3, - "f4y": 3, - "subtract": 1, - "nx": 4, - "negated": 1, - "nasal": 2, - "amplitude": 3, - "#mult": 1, - "fphase": 4, - "frication": 2, - "#sine": 1, - "Handle": 1, - "frame_ptr": 6, - "past": 1, - "miscellaneous": 2, - "frame_index": 3, - "stepsize": 2, - "step_size": 5, - "h00FFFFFF": 2, - "final1": 2, - "finali": 2, - "iterate": 3, - "aa..ff": 4, - "accurate": 1, - "accumulation": 1, - "step_acc": 3, - "set2": 3, - "#par_curr": 1, - "set3": 2, - "#par_next": 1, - "set4": 3, - "#par_step": 1, - "#24": 1, - "par_curr": 3, - "absolute": 1, - "msb": 2, - "nr": 1, - "mult": 2, - "par_step": 1, - "frame_cnt": 2, - "step1": 2, - "stepi": 1, - "stepframe": 1, - "#frame_bytes": 1, - "par_next": 2, - "Math": 1, - "Subroutines": 1, - "Antilog": 1, - "whole": 2, - "fraction": 1, - "antilog": 2, - "FFEA0000": 1, - "h00000FFE": 2, - "insert": 2, - "leading": 1, - "Scaled": 1, - "unsigned": 3, - "h00001000": 2, - "negc": 1, - "Multiply": 1, - "#15": 1, - "mult_step": 1, - "Cordic": 1, - "degree": 1, - "#cordic_steps": 1, - "gets": 1, - "assembled": 1, - "cordic_dx": 1, - "incremented": 1, - "cordic_a": 1, - "cordic_delta": 2, - "linear": 1, - "register": 1, - "B901476": 1, - "greater": 1, - "h40000000": 1, - "h01000000": 1, - "FFFFFF": 1, - "h00010000": 1, - "h0000D000": 1, - "D000": 1, - "h00007000": 1, - "FFE": 1, - "h00000800": 1, - "registers": 2, - "startup": 2, - "Data": 1, - "zeroed": 1, - "cleared": 1, - "f1x": 1, - "f1y": 1, - "f3x": 1, - "f3y": 1, - "aspiration": 1, - "***": 1, - "mult_steps": 1, - "assembly": 1, - "area": 1, - "w/ret": 1, - "cordic_ret": 1 + "Keypad": 1, + "Reader": 1, + "capacitive": 1, + "PIN": 1, + "approach": 1, + "reading": 1, + "keypad.": 1, + "ALL": 2, + "made": 2, + "LOW": 2, + "OUTPUT": 2, + "pins.": 1, + "Then": 1, + "INPUT": 2, + "state.": 1, + "At": 1, + "HIGH": 3, + "closed": 1, + "otherwise": 1, + "returned.": 1, + "keypad": 4, + "decoding": 1, + "routine": 1, + "subroutines": 1, + "entire": 1, + "matrix": 1, + "WORD": 1, + "variable": 1, + "indicating": 1, + "buttons": 2, + "pressed.": 1, + "Multiple": 1, + "button": 2, + "presses": 1, + "allowed": 1, + "understanding": 1, + "BOX": 2, + "entries": 1, + "confused.": 1, + "An": 1, + "entry...": 1, + "etc.": 1, + "pressed": 3, + "evaluate": 1, + "even": 1, + "not.": 1, + "There": 1, + "danger": 1, + "physical": 1, + "electrical": 1, + "damage": 1, + "way": 1, + "sensing": 1, + "happens": 1, + "work.": 1, + "Schematic": 1, + "No": 2, + "capacitors.": 1, + "connections": 1, + "directly": 1, + "ReadRow": 4, + "Shift": 3, + "preset": 1, + "P0": 2, + "P7": 2, + "LOWs": 1, + "INPUTSs": 1, + "act": 1, + "tiny": 1, + "capacitors": 1, + "Pin": 1, + "OUTPUT...": 1, + "Make": 1, + "Pn": 1, + "remain": 1, + "discharged": 1 }, "Protocol Buffer": { "package": 1, @@ -56313,6 +56610,63 @@ "<": 13, "Just": 7, "Nothing": 7, + "ReactiveJQueryTest": 1, + "flip": 2, + "Control.Monad": 1, + "Control.Monad.Eff": 1, + "Control.Monad.JQuery": 1, + "Control.Reactive": 1, + "Control.Reactive.JQuery": 1, + "map": 8, + "head": 2, + "Data.Foldable": 2, + "Data.Monoid": 1, + "Debug.Trace": 1, + "Global": 1, + "parseInt": 1, + "main": 1, + "do": 4, + "personDemo": 2, + "todoListDemo": 1, + "greet": 1, + "firstName": 2, + "lastName": 2, + "Create": 3, + "new": 1, + "reactive": 1, + "variables": 1, + "to": 3, + "hold": 1, + "the": 3, + "user": 1, + "readRArray": 1, + "insertRArray": 1, + "{": 25, + "text": 5, + "completed": 2, + "}": 26, + "paragraph": 2, + "display": 2, + "next": 1, + "task": 4, + "nextTaskLabel": 3, + "create": 2, + "append": 2, + "nextTask": 2, + "toComputedArray": 2, + "toComputed": 2, + "bindTextOneWay": 2, + "counter": 3, + "counterLabel": 3, + "rs": 2, + "cs": 2, + "<->": 1, + "if": 1, + "then": 1, + "else": 1, + "entry": 1, + "entry.completed": 1, + "foldl": 4, "Data.Map": 1, "Map": 26, "empty": 6, @@ -56324,24 +56678,19 @@ "toList": 10, "fromList": 3, "union": 3, - "map": 8, "qualified": 1, "as": 1, "P": 1, "concat": 3, - "Data.Foldable": 2, - "foldl": 4, "k": 108, "v": 57, "Leaf": 15, "|": 9, "Branch": 27, - "{": 25, "key": 13, "value": 8, "left": 15, "right": 14, - "}": 26, "eqMap": 1, "P.Eq": 11, "m1": 6, @@ -56367,136 +56716,10 @@ "b.value": 2, "v1": 3, "v2.": 1, - "v2": 2, - "ReactiveJQueryTest": 1, - "flip": 2, - "Control.Monad": 1, - "Control.Monad.Eff": 1, - "Control.Monad.JQuery": 1, - "Control.Reactive": 1, - "Control.Reactive.JQuery": 1, - "head": 2, - "Data.Monoid": 1, - "Debug.Trace": 1, - "Global": 1, - "parseInt": 1, - "main": 1, - "do": 4, - "personDemo": 2, - "todoListDemo": 1, - "greet": 1, - "firstName": 2, - "lastName": 2, - "Create": 3, - "new": 1, - "reactive": 1, - "variables": 1, - "to": 3, - "hold": 1, - "the": 3, - "user": 1, - "readRArray": 1, - "insertRArray": 1, - "text": 5, - "completed": 2, - "paragraph": 2, - "display": 2, - "next": 1, - "task": 4, - "nextTaskLabel": 3, - "create": 2, - "append": 2, - "nextTask": 2, - "toComputedArray": 2, - "toComputed": 2, - "bindTextOneWay": 2, - "counter": 3, - "counterLabel": 3, - "rs": 2, - "cs": 2, - "<->": 1, - "if": 1, - "then": 1, - "else": 1, - "entry": 1, - "entry.completed": 1 + "v2": 2 }, "Python": { - "xspacing": 4, "#": 28, - "How": 2, - "far": 1, - "apart": 1, - "should": 1, - "each": 1, - "horizontal": 1, - "location": 1, - "be": 1, - "spaced": 1, - "maxwaves": 3, - "total": 1, - "of": 5, - "waves": 1, - "to": 5, - "add": 1, - "together": 1, - "theta": 3, - "amplitude": 3, - "[": 165, - "]": 165, - "Height": 1, - "wave": 2, - "dx": 8, - "yvalues": 7, - "def": 87, - "setup": 2, - "(": 850, - ")": 861, - "size": 5, - "frameRate": 1, - "colorMode": 1, - "RGB": 1, - "w": 2, - "width": 1, - "+": 51, - "for": 69, - "i": 13, - "in": 91, - "range": 5, - "amplitude.append": 1, - "random": 2, - "period": 2, - "many": 1, - "pixels": 1, - "before": 1, - "the": 6, - "repeats": 1, - "dx.append": 1, - "TWO_PI": 1, - "/": 26, - "*": 38, - "_": 6, - "yvalues.append": 1, - "draw": 2, - "background": 2, - "calcWave": 2, - "renderWave": 2, - "len": 11, - "j": 7, - "x": 34, - "if": 160, - "%": 33, - "sin": 1, - "else": 33, - "cos": 1, - "noStroke": 2, - "fill": 2, - "ellipseMode": 1, - "CENTER": 1, - "v": 19, - "enumerate": 2, - "ellipse": 1, - "height": 1, "import": 55, "os": 2, "sys": 3, @@ -56514,34 +56737,45 @@ "res": 3, "importer": 1, "c4dtools.prepare": 1, + "(": 850, "__file__": 1, "__res__": 1, + ")": 861, "settings": 2, "c4dtools.helpers.Attributor": 2, "{": 27, "res.file": 3, "}": 27, + "def": 87, "align_nodes": 2, "nodes": 11, "mode": 5, "spacing": 7, "r": 9, "modes": 3, + "[": 165, + "]": 165, + "if": 160, "not": 69, "return": 68, + "in": 91, "raise": 23, "ValueError": 6, + "+": 51, ".join": 4, "get_0": 12, "lambda": 6, + "x": 34, "x.x": 1, "get_1": 4, "x.y": 1, "set_0": 6, + "v": 19, "setattr": 16, "set_1": 4, "graphnode.GraphNode": 1, "n": 6, + "for": 69, "nodes.sort": 1, "key": 6, "n.position": 1, @@ -56555,11 +56789,14 @@ "position": 12, "node.position": 2, "-": 36, + "size": 5, "node.size": 1, "<": 2, + "else": 33, "new_positions.append": 1, "bbox_size": 2, "bbox_size_2": 2, + "*": 38, "itertools.izip": 1, "align_nodes_shortcut": 3, "master": 2, @@ -56641,461 +56878,74 @@ "options": 4, "__name__": 3, "c4dtools.plugins.main": 1, - "__future__": 2, - "unicode_literals": 1, - "copy": 1, - "functools": 1, - "update_wrapper": 2, - "future_builtins": 1, - "zip": 8, - "django.db.models.manager": 1, - "Imported": 1, - "register": 1, - "signal": 1, - "handler.": 1, - "django.conf": 1, - "django.core.exceptions": 1, - "ObjectDoesNotExist": 2, - "MultipleObjectsReturned": 2, - "FieldError": 4, - "ValidationError": 8, - "NON_FIELD_ERRORS": 3, - "django.core": 1, - "validators": 1, - "django.db.models.fields": 1, - "AutoField": 2, - "FieldDoesNotExist": 2, - "django.db.models.fields.related": 1, - "ManyToOneRel": 3, - "OneToOneField": 3, - "add_lazy_relation": 2, - "django.db": 1, - "router": 1, - "transaction": 1, - "DatabaseError": 3, - "DEFAULT_DB_ALIAS": 2, - "django.db.models.query": 1, - "Q": 3, - "django.db.models.query_utils": 2, - "DeferredAttribute": 3, - "django.db.models.deletion": 1, - "Collector": 2, - "django.db.models.options": 1, - "Options": 2, - "django.db.models": 1, - "signals": 1, - "django.db.models.loading": 1, - "register_models": 2, - "get_model": 3, - "django.utils.translation": 1, - "ugettext_lazy": 1, - "django.utils.functional": 1, - "curry": 6, - "django.utils.encoding": 1, - "smart_str": 3, - "force_unicode": 3, - "django.utils.text": 1, - "get_text_list": 2, - "capfirst": 6, - "ModelBase": 4, - "type": 6, - "__new__": 2, - "cls": 32, - "name": 39, - "bases": 6, - "attrs": 7, - "super_new": 3, - ".__new__": 1, - "parents": 8, - "b": 11, - "isinstance": 11, - "module": 6, - "attrs.pop": 2, - "new_class": 9, - "attr_meta": 5, - "abstract": 3, - "getattr": 30, - "False": 28, - "meta": 12, - "base_meta": 2, - "model_module": 1, - "sys.modules": 1, - "new_class.__module__": 1, - "kwargs": 9, - "model_module.__name__.split": 1, - "new_class.add_to_class": 7, - "**kwargs": 9, - "subclass_exception": 3, - "tuple": 3, - "x.DoesNotExist": 1, - "hasattr": 11, - "and": 35, - "x._meta.abstract": 2, - "or": 27, - "x.MultipleObjectsReturned": 1, - "base_meta.abstract": 1, - "new_class._meta.ordering": 1, - "base_meta.ordering": 1, - "new_class._meta.get_latest_by": 1, - "base_meta.get_latest_by": 1, - "is_proxy": 5, - "new_class._meta.proxy": 1, - "new_class._default_manager": 2, - "new_class._base_manager": 2, - "new_class._default_manager._copy_to_model": 1, - "new_class._base_manager._copy_to_model": 1, - "m": 3, - "new_class._meta.app_label": 3, - "seed_cache": 2, - "only_installed": 2, - "obj_name": 2, - "obj": 4, - "attrs.items": 1, - "new_fields": 2, - "new_class._meta.local_fields": 3, - "new_class._meta.local_many_to_many": 2, - "new_class._meta.virtual_fields": 1, - "field_names": 5, - "set": 3, - "f.name": 5, - "f": 19, - "base": 13, - "parent": 5, - "parent._meta.abstract": 1, - "parent._meta.fields": 1, - "TypeError": 4, - "continue": 10, - "new_class._meta.setup_proxy": 1, - "new_class._meta.concrete_model": 2, - "base._meta.concrete_model": 2, - "o2o_map": 3, - "f.rel.to": 1, - "original_base": 1, - "parent_fields": 3, - "base._meta.local_fields": 1, - "base._meta.local_many_to_many": 1, - "field": 32, - "field.name": 14, - "base.__name__": 2, - "base._meta.abstract": 2, - "elif": 4, - "attr_name": 3, - "base._meta.module_name": 1, - "auto_created": 1, - "parent_link": 1, - "new_class._meta.parents": 1, - "copy.deepcopy": 2, - "new_class._meta.parents.update": 1, - "base._meta.parents": 1, - "new_class.copy_managers": 2, - "base._meta.abstract_managers": 1, - "original_base._meta.concrete_managers": 1, - "base._meta.virtual_fields": 1, - "attr_meta.abstract": 1, - "new_class.Meta": 1, - "new_class._prepare": 1, - "copy_managers": 1, - "base_managers": 2, - "base_managers.sort": 1, - "mgr_name": 3, - "manager": 3, - "val": 14, - "new_manager": 2, - "manager._copy_to_model": 1, - "cls.add_to_class": 1, - "add_to_class": 1, - "value": 9, - "value.contribute_to_class": 1, - "_prepare": 1, - "opts": 5, - "cls._meta": 3, - "opts._prepare": 1, - "opts.order_with_respect_to": 2, - "cls.get_next_in_order": 1, - "cls._get_next_or_previous_in_order": 2, - "is_next": 9, - "cls.get_previous_in_order": 1, - "make_foreign_order_accessors": 2, - "model": 8, - "field.rel.to": 2, - "cls.__name__.lower": 2, - "method_get_order": 2, - "method_set_order": 2, - "opts.order_with_respect_to.rel.to": 1, - "cls.__doc__": 3, - "cls.__name__": 1, - "f.attname": 5, - "opts.fields": 1, - "cls.get_absolute_url": 3, - "get_absolute_url": 2, - "signals.class_prepared.send": 1, - "sender": 5, - "ModelState": 2, - "object": 6, - "db": 2, - "self.db": 1, - "self.adding": 1, - "Model": 2, - "__metaclass__": 3, - "_deferred": 1, - "*args": 4, - "signals.pre_init.send": 1, - "self.__class__": 10, - "args": 8, - "self._state": 1, - "args_len": 2, - "self._meta.fields": 5, - "IndexError": 2, - "fields_iter": 4, - "iter": 1, - "field.attname": 17, - "kwargs.pop": 6, - "field.rel": 2, - "is_related_object": 3, - "self.__class__.__dict__.get": 2, - "try": 17, - "rel_obj": 3, - "except": 17, - "KeyError": 3, - "field.get_default": 3, - "field.null": 1, - "prop": 5, - "kwargs.keys": 2, - "property": 2, - "AttributeError": 1, - "pass": 4, - "signals.post_init.send": 1, - "instance": 5, - "__repr__": 2, - "u": 9, - "unicode": 8, - "UnicodeEncodeError": 1, - "UnicodeDecodeError": 1, - "self.__class__.__name__": 3, - "__str__": 1, - ".encode": 1, - "__eq__": 1, - "other": 4, - "self._get_pk_val": 6, - "other._get_pk_val": 1, - "__ne__": 1, - "self.__eq__": 1, - "__hash__": 1, - "hash": 1, - "__reduce__": 1, - "data": 22, - "self.__dict__": 1, - "defers": 2, - "self._deferred": 1, - "deferred_class_factory": 2, - "factory": 5, - "defers.append": 1, - "self._meta.proxy_for_model": 1, - "simple_class_factory": 2, - "model_unpickle": 2, - "_get_pk_val": 2, - "self._meta": 2, - "meta.pk.attname": 2, - "_set_pk_val": 2, - "self._meta.pk.attname": 2, - "pk": 5, - "serializable_value": 1, - "field_name": 8, - "self._meta.get_field_by_name": 1, - "force_insert": 7, - "force_update": 10, - "using": 30, - "update_fields": 23, - "frozenset": 2, - "field.primary_key": 1, - "non_model_fields": 2, - "update_fields.difference": 1, - "self.save_base": 2, - "save.alters_data": 1, - "save_base": 1, - "raw": 9, - "origin": 7, - "router.db_for_write": 2, - "assert": 7, - "meta.proxy": 5, - "meta.auto_created": 2, - "signals.pre_save.send": 1, - "org": 3, - "meta.parents.items": 1, - "parent._meta.pk.attname": 2, - "parent._meta": 1, - "non_pks": 5, - "meta.local_fields": 2, - "f.primary_key": 2, - "pk_val": 4, - "pk_set": 5, - "record_exists": 5, - "cls._base_manager": 1, - "manager.using": 3, - ".filter": 7, - ".exists": 1, - "f.pre_save": 1, - "rows": 3, - "._update": 1, - "meta.order_with_respect_to": 2, - "order_value": 2, - ".count": 1, - "self._order": 1, - "fields": 12, - "update_pk": 3, - "bool": 2, - "meta.has_auto_field": 1, - "result": 2, - "manager._insert": 1, - "return_id": 1, - "transaction.commit_unless_managed": 2, - "self._state.db": 2, - "self._state.adding": 4, - "signals.post_save.send": 1, - "created": 1, - "save_base.alters_data": 1, - "delete": 1, - "self._meta.object_name": 1, - "collector": 1, - "collector.collect": 1, - "collector.delete": 1, - "delete.alters_data": 1, - "_get_FIELD_display": 1, - "field.flatchoices": 1, - ".get": 2, - "strings_only": 1, - "_get_next_or_previous_by_FIELD": 1, - "self.pk": 6, - "op": 6, - "order": 5, - "param": 3, - "q": 4, - "|": 1, - "qs": 6, - "self.__class__._default_manager.using": 1, - "*kwargs": 1, - ".order_by": 2, - "self.DoesNotExist": 1, - "self.__class__._meta.object_name": 1, - "_get_next_or_previous_in_order": 1, - "cachename": 4, - "order_field": 1, - "self._meta.order_with_respect_to": 1, - "self._default_manager.filter": 1, - "order_field.name": 1, - "order_field.attname": 1, - "self._default_manager.values": 1, - "self._meta.pk.name": 1, - "prepare_database_save": 1, - "unused": 1, - "clean": 1, - "validate_unique": 1, - "exclude": 23, - "unique_checks": 6, - "date_checks": 6, - "self._get_unique_checks": 1, - "errors": 20, - "self._perform_unique_checks": 1, - "date_errors": 1, - "self._perform_date_checks": 1, - "date_errors.items": 1, - "errors.setdefault": 3, - ".extend": 2, - "_get_unique_checks": 1, - "unique_togethers": 2, - "self._meta.unique_together": 1, - "parent_class": 4, - "self._meta.parents.keys": 2, - "parent_class._meta.unique_together": 2, - "unique_togethers.append": 1, - "model_class": 11, - "unique_together": 2, - "check": 4, - "break": 2, - "unique_checks.append": 2, - "fields_with_class": 2, - "self._meta.local_fields": 1, - "fields_with_class.append": 1, - "parent_class._meta.local_fields": 1, - "f.unique": 1, - "f.unique_for_date": 3, - "date_checks.append": 3, - "f.unique_for_year": 3, - "f.unique_for_month": 3, - "_perform_unique_checks": 1, - "unique_check": 10, - "lookup_kwargs": 8, - "self._meta.get_field": 1, - "lookup_value": 3, - "str": 2, - "lookup_kwargs.keys": 1, - "model_class._default_manager.filter": 2, - "*lookup_kwargs": 2, - "model_class_pk": 3, - "model_class._meta": 2, - "qs.exclude": 2, - "qs.exists": 2, - ".append": 2, - "self.unique_error_message": 1, - "_perform_date_checks": 1, - "lookup_type": 7, - "unique_for": 9, - "date": 3, - "date.day": 1, - "date.month": 1, - "date.year": 1, - "self.date_error_message": 1, - "date_error_message": 1, - "opts.get_field": 4, - ".verbose_name": 3, - "unique_error_message": 1, - "model_name": 3, - "opts.verbose_name": 1, - "field_label": 2, - "field.verbose_name": 1, - "field.error_messages": 1, - "field_labels": 4, - "map": 1, - "full_clean": 1, - "self.clean_fields": 1, - "e": 13, - "e.update_error_dict": 3, - "self.clean": 1, - "errors.keys": 1, - "exclude.append": 1, - "self.validate_unique": 1, - "clean_fields": 1, - "raw_value": 3, - "f.blank": 1, - "validators.EMPTY_VALUES": 1, - "f.clean": 1, - "e.messages": 1, - "############################################": 2, - "ordered_obj": 2, - "id_list": 2, - "rel_val": 4, - "ordered_obj._meta.order_with_respect_to.rel.field_name": 2, - "order_name": 4, - "ordered_obj._meta.order_with_respect_to.name": 2, - "ordered_obj.objects.filter": 2, - ".update": 1, - "_order": 1, - "pk_name": 3, - "ordered_obj._meta.pk.name": 1, - ".values": 1, - "##############################################": 2, - "func": 2, - "settings.ABSOLUTE_URL_OVERRIDES.get": 1, - "opts.app_label": 1, - "opts.module_name": 1, - "########": 2, - "Empty": 1, - "cls.__new__": 1, - "model_unpickle.__safe_for_unpickle__": 1, + "xspacing": 4, + "How": 2, + "far": 1, + "apart": 1, + "should": 1, + "each": 1, + "horizontal": 1, + "location": 1, + "be": 1, + "spaced": 1, + "maxwaves": 3, + "total": 1, + "of": 5, + "waves": 1, + "to": 5, + "add": 1, + "together": 1, + "theta": 3, + "amplitude": 3, + "Height": 1, + "wave": 2, + "dx": 8, + "yvalues": 7, + "setup": 2, + "frameRate": 1, + "colorMode": 1, + "RGB": 1, + "w": 2, + "width": 1, + "i": 13, + "range": 5, + "amplitude.append": 1, + "random": 2, + "period": 2, + "many": 1, + "pixels": 1, + "before": 1, + "the": 6, + "repeats": 1, + "dx.append": 1, + "TWO_PI": 1, + "/": 26, + "_": 6, + "yvalues.append": 1, + "draw": 2, + "background": 2, + "calcWave": 2, + "renderWave": 2, + "len": 11, + "j": 7, + "%": 33, + "sin": 1, + "cos": 1, + "noStroke": 2, + "fill": 2, + "ellipseMode": 1, + "CENTER": 1, + "enumerate": 2, + "ellipse": 1, + "height": 1, + "SHEBANG#!python": 4, + "print": 39, ".globals": 1, "request": 1, "http_method_funcs": 2, + "frozenset": 2, "View": 2, + "object": 6, "A": 1, "which": 1, "methods": 5, @@ -57110,6 +56960,7 @@ "decorate": 2, "based": 1, "views": 1, + "value": 9, "as_view": 1, ".": 1, "However": 1, @@ -57126,123 +56977,58 @@ "used": 1, "instantiating": 1, "view.view_class": 1, + "cls": 32, "view.__name__": 1, + "name": 39, "view.__doc__": 1, + "cls.__doc__": 3, "view.__module__": 1, "cls.__module__": 1, "view.methods": 1, "cls.methods": 1, "MethodViewType": 2, + "type": 6, + "__new__": 2, + "bases": 6, "d": 5, "rv": 2, "type.__new__": 1, + "set": 3, "rv.methods": 2, + "or": 27, "methods.add": 1, "key.upper": 1, "sorted": 1, "MethodView": 1, + "__metaclass__": 3, "dispatch_request": 1, + "*args": 4, + "**kwargs": 9, "meth": 5, + "getattr": 30, "request.method.lower": 1, + "and": 35, "request.method": 2, - "P3D": 1, - "lights": 1, - "camera": 1, - "mouseY": 1, - "eyeX": 1, - "eyeY": 1, - "eyeZ": 1, - "centerX": 1, - "centerY": 1, - "centerZ": 1, - "upX": 1, - "upY": 1, - "upZ": 1, - "box": 1, - "stroke": 1, - "line": 3, - "google.protobuf": 4, - "descriptor": 1, - "_descriptor": 1, - "message": 1, - "_message": 1, - "reflection": 1, - "_reflection": 1, - "descriptor_pb2": 1, - "DESCRIPTOR": 3, - "_descriptor.FileDescriptor": 1, - "package": 1, - "serialized_pb": 1, - "_PERSON": 3, - "_descriptor.Descriptor": 1, - "full_name": 2, - "file": 1, - "containing_type": 2, - "_descriptor.FieldDescriptor": 1, - "index": 1, - "number": 1, - "cpp_type": 1, - "label": 18, - "has_default_value": 1, - "default_value": 1, - "message_type": 1, - "enum_type": 1, - "is_extension": 1, - "extension_scope": 1, - "extensions": 1, - "nested_types": 1, - "enum_types": 1, - "is_extendable": 1, - "extension_ranges": 1, - "serialized_start": 1, - "serialized_end": 1, - "DESCRIPTOR.message_types_by_name": 1, - "Person": 1, - "_message.Message": 1, - "_reflection.GeneratedProtocolMessageType": 1, - "SHEBANG#!python": 4, - "print": 39, - "main": 4, - "usage": 3, - "string": 1, - "command": 4, - "sys.argv": 2, - "sys.exit": 1, - "printDelimiter": 4, - "get": 1, - "a": 2, - "list": 1, - "git": 1, - "directories": 1, - "specified": 1, - "gitDirectories": 2, - "getSubdirectories": 2, - "isGitDirectory": 2, - "gitDirectory": 2, - "os.chdir": 1, - "os.getcwd": 1, - "os.system": 1, - "directory": 9, - "filter": 3, - "os.path.abspath": 1, - "subdirectories": 3, - "os.walk": 1, - ".next": 1, - "os.path.isdir": 1, + "assert": 7, + "args": 8, "argparse": 1, "matplotlib.pyplot": 1, "pl": 1, "numpy": 1, "np": 1, "scipy.optimize": 1, + "op": 6, "prettytable": 1, "PrettyTable": 6, "__docformat__": 1, "S": 4, + "e": 13, "phif": 7, "U": 10, + "main": 4, "_parse_args": 2, "V": 12, + "data": 22, "np.genfromtxt": 8, "delimiter": 8, "t": 8, @@ -57257,6 +57043,7 @@ "x.size": 2, "pl.plot": 9, "**6": 6, + "label": 18, ".format": 11, "pl.errorbar": 8, "yerr": 8, @@ -57266,6 +57053,7 @@ "pl.legend": 5, "loc": 5, "pl.title": 5, + "u": 9, "pl.xlabel": 5, "ur": 11, "pl.ylabel": 5, @@ -57319,6 +57107,7 @@ "header": 5, "glanz_table": 2, "row": 10, + "zip": 8, ".size": 4, "*T_err": 4, "glanz_phi.size": 1, @@ -57334,8 +57123,11 @@ "weiss_phi.size": 1, "weiss_table.add_row": 1, "T0**4": 1, + "prop": 5, "phi": 5, "c": 3, + "a": 2, + "b": 11, "a*x": 1, "d**": 2, "dy": 4, @@ -57346,6 +57138,7 @@ "pconv": 2, "*popt": 2, "pconv.diagonal": 3, + "fields": 12, "table": 2, "table.align": 1, "dy.size": 1, @@ -57388,6 +57181,7 @@ "description": 1, "#parser.add_argument": 3, "metavar": 1, + "str": 2, "nargs": 1, "help": 2, "dest": 1, @@ -57395,6 +57189,7 @@ "action": 1, "version": 6, "parser.parse_args": 1, + "__future__": 2, "absolute_import": 1, "division": 1, "with_statement": 1, @@ -57414,12 +57209,15 @@ "stack_context": 1, "tornado.util": 1, "bytes_type": 2, + "try": 17, "ssl": 2, "Python": 1, + "except": 17, "ImportError": 1, "HTTPServer": 1, "request_callback": 4, "no_keep_alive": 4, + "False": 28, "io_loop": 3, "xheaders": 4, "ssl_options": 3, @@ -57433,6 +57231,7 @@ "HTTPConnection": 2, "_BadRequestException": 5, "Exception": 2, + "pass": 4, "self.stream": 1, "self.address": 3, "self._request": 7, @@ -57458,6 +57257,7 @@ "self._request.headers.get": 2, "connection_header.lower": 1, "self._request.supports_http_1_1": 1, + "elif": 4, "self._request.headers": 1, "self._request.method": 2, "self.stream.close": 2, @@ -57492,13 +57292,16 @@ "arguments": 2, "arguments.iteritems": 2, "self._request.arguments.setdefault": 1, + ".extend": 2, "content_type.split": 1, + "field": 32, "sep": 2, "field.strip": 1, ".partition": 1, "httputil.parse_multipart_form_data": 1, "self._request.arguments": 1, "self._request.files": 1, + "break": 2, "logging.warning": 1, "body": 2, "protocol": 4, @@ -57515,6 +57318,7 @@ "self.headers.get": 5, "self._valid_ip": 1, "self.protocol": 7, + "isinstance": 11, "connection.stream": 1, "iostream.SSLIOStream": 1, "self.host": 2, @@ -57529,6 +57333,7 @@ "self.arguments": 2, "supports_http_1_1": 1, "cookies": 1, + "hasattr": 11, "self._cookies": 3, "Cookie.SimpleCookie": 1, "self._cookies.load": 1, @@ -57539,56 +57344,519 @@ "get_ssl_certificate": 1, "self.connection.stream.socket.getpeercert": 1, "ssl.SSLError": 1, + "__repr__": 2, + "attrs": 7, + "self.__class__.__name__": 3, "_valid_ip": 1, "ip": 2, "socket.getaddrinfo": 1, "socket.AF_UNSPEC": 1, "socket.SOCK_STREAM": 1, "socket.AI_NUMERICHOST": 1, + "bool": 2, "socket.gaierror": 1, "e.args": 1, - "socket.EAI_NONAME": 1 + "socket.EAI_NONAME": 1, + "usage": 3, + "string": 1, + "command": 4, + "check": 4, + "sys.argv": 2, + "sys.exit": 1, + "printDelimiter": 4, + "get": 1, + "list": 1, + "git": 1, + "directories": 1, + "specified": 1, + "parent": 5, + "gitDirectories": 2, + "getSubdirectories": 2, + "isGitDirectory": 2, + "gitDirectory": 2, + "os.chdir": 1, + "os.getcwd": 1, + "os.system": 1, + "directory": 9, + "filter": 3, + "os.path.abspath": 1, + "subdirectories": 3, + "os.walk": 1, + ".next": 1, + "os.path.isdir": 1, + "google.protobuf": 4, + "descriptor": 1, + "_descriptor": 1, + "message": 1, + "_message": 1, + "reflection": 1, + "_reflection": 1, + "descriptor_pb2": 1, + "DESCRIPTOR": 3, + "_descriptor.FileDescriptor": 1, + "package": 1, + "serialized_pb": 1, + "_PERSON": 3, + "_descriptor.Descriptor": 1, + "full_name": 2, + "file": 1, + "containing_type": 2, + "_descriptor.FieldDescriptor": 1, + "index": 1, + "number": 1, + "cpp_type": 1, + "has_default_value": 1, + "default_value": 1, + "unicode": 8, + "message_type": 1, + "enum_type": 1, + "is_extension": 1, + "extension_scope": 1, + "extensions": 1, + "nested_types": 1, + "enum_types": 1, + "is_extendable": 1, + "extension_ranges": 1, + "serialized_start": 1, + "serialized_end": 1, + "DESCRIPTOR.message_types_by_name": 1, + "Person": 1, + "_message.Message": 1, + "_reflection.GeneratedProtocolMessageType": 1, + "P3D": 1, + "lights": 1, + "camera": 1, + "mouseY": 1, + "eyeX": 1, + "eyeY": 1, + "eyeZ": 1, + "centerX": 1, + "centerY": 1, + "centerZ": 1, + "upX": 1, + "upY": 1, + "upZ": 1, + "box": 1, + "stroke": 1, + "line": 3, + "unicode_literals": 1, + "copy": 1, + "functools": 1, + "update_wrapper": 2, + "future_builtins": 1, + "django.db.models.manager": 1, + "Imported": 1, + "register": 1, + "signal": 1, + "handler.": 1, + "django.conf": 1, + "django.core.exceptions": 1, + "ObjectDoesNotExist": 2, + "MultipleObjectsReturned": 2, + "FieldError": 4, + "ValidationError": 8, + "NON_FIELD_ERRORS": 3, + "django.core": 1, + "validators": 1, + "django.db.models.fields": 1, + "AutoField": 2, + "FieldDoesNotExist": 2, + "django.db.models.fields.related": 1, + "ManyToOneRel": 3, + "OneToOneField": 3, + "add_lazy_relation": 2, + "django.db": 1, + "router": 1, + "transaction": 1, + "DatabaseError": 3, + "DEFAULT_DB_ALIAS": 2, + "django.db.models.query": 1, + "Q": 3, + "django.db.models.query_utils": 2, + "DeferredAttribute": 3, + "django.db.models.deletion": 1, + "Collector": 2, + "django.db.models.options": 1, + "Options": 2, + "django.db.models": 1, + "signals": 1, + "django.db.models.loading": 1, + "register_models": 2, + "get_model": 3, + "django.utils.translation": 1, + "ugettext_lazy": 1, + "django.utils.functional": 1, + "curry": 6, + "django.utils.encoding": 1, + "smart_str": 3, + "force_unicode": 3, + "django.utils.text": 1, + "get_text_list": 2, + "capfirst": 6, + "ModelBase": 4, + "super_new": 3, + ".__new__": 1, + "parents": 8, + "module": 6, + "attrs.pop": 2, + "new_class": 9, + "attr_meta": 5, + "abstract": 3, + "meta": 12, + "base_meta": 2, + "model_module": 1, + "sys.modules": 1, + "new_class.__module__": 1, + "kwargs": 9, + "model_module.__name__.split": 1, + "new_class.add_to_class": 7, + "subclass_exception": 3, + "tuple": 3, + "x.DoesNotExist": 1, + "x._meta.abstract": 2, + "x.MultipleObjectsReturned": 1, + "base_meta.abstract": 1, + "new_class._meta.ordering": 1, + "base_meta.ordering": 1, + "new_class._meta.get_latest_by": 1, + "base_meta.get_latest_by": 1, + "is_proxy": 5, + "new_class._meta.proxy": 1, + "new_class._default_manager": 2, + "new_class._base_manager": 2, + "new_class._default_manager._copy_to_model": 1, + "new_class._base_manager._copy_to_model": 1, + "m": 3, + "new_class._meta.app_label": 3, + "seed_cache": 2, + "only_installed": 2, + "obj_name": 2, + "obj": 4, + "attrs.items": 1, + "new_fields": 2, + "new_class._meta.local_fields": 3, + "new_class._meta.local_many_to_many": 2, + "new_class._meta.virtual_fields": 1, + "field_names": 5, + "f.name": 5, + "f": 19, + "base": 13, + "parent._meta.abstract": 1, + "parent._meta.fields": 1, + "TypeError": 4, + "continue": 10, + "new_class._meta.setup_proxy": 1, + "new_class._meta.concrete_model": 2, + "base._meta.concrete_model": 2, + "o2o_map": 3, + "f.rel.to": 1, + "original_base": 1, + "parent_fields": 3, + "base._meta.local_fields": 1, + "base._meta.local_many_to_many": 1, + "field.name": 14, + "base.__name__": 2, + "base._meta.abstract": 2, + "attr_name": 3, + "base._meta.module_name": 1, + "auto_created": 1, + "parent_link": 1, + "new_class._meta.parents": 1, + "copy.deepcopy": 2, + "new_class._meta.parents.update": 1, + "base._meta.parents": 1, + "new_class.copy_managers": 2, + "base._meta.abstract_managers": 1, + "original_base._meta.concrete_managers": 1, + "base._meta.virtual_fields": 1, + "attr_meta.abstract": 1, + "new_class.Meta": 1, + "new_class._prepare": 1, + "copy_managers": 1, + "base_managers": 2, + "base_managers.sort": 1, + "mgr_name": 3, + "manager": 3, + "val": 14, + "new_manager": 2, + "manager._copy_to_model": 1, + "cls.add_to_class": 1, + "add_to_class": 1, + "value.contribute_to_class": 1, + "_prepare": 1, + "opts": 5, + "cls._meta": 3, + "opts._prepare": 1, + "opts.order_with_respect_to": 2, + "cls.get_next_in_order": 1, + "cls._get_next_or_previous_in_order": 2, + "is_next": 9, + "cls.get_previous_in_order": 1, + "make_foreign_order_accessors": 2, + "model": 8, + "field.rel.to": 2, + "cls.__name__.lower": 2, + "method_get_order": 2, + "method_set_order": 2, + "opts.order_with_respect_to.rel.to": 1, + "cls.__name__": 1, + "f.attname": 5, + "opts.fields": 1, + "cls.get_absolute_url": 3, + "get_absolute_url": 2, + "signals.class_prepared.send": 1, + "sender": 5, + "ModelState": 2, + "db": 2, + "self.db": 1, + "self.adding": 1, + "Model": 2, + "_deferred": 1, + "signals.pre_init.send": 1, + "self.__class__": 10, + "self._state": 1, + "args_len": 2, + "self._meta.fields": 5, + "IndexError": 2, + "fields_iter": 4, + "iter": 1, + "field.attname": 17, + "kwargs.pop": 6, + "field.rel": 2, + "is_related_object": 3, + "self.__class__.__dict__.get": 2, + "rel_obj": 3, + "KeyError": 3, + "field.get_default": 3, + "field.null": 1, + "kwargs.keys": 2, + "property": 2, + "AttributeError": 1, + "signals.post_init.send": 1, + "instance": 5, + "UnicodeEncodeError": 1, + "UnicodeDecodeError": 1, + "__str__": 1, + ".encode": 1, + "__eq__": 1, + "other": 4, + "self._get_pk_val": 6, + "other._get_pk_val": 1, + "__ne__": 1, + "self.__eq__": 1, + "__hash__": 1, + "hash": 1, + "__reduce__": 1, + "self.__dict__": 1, + "defers": 2, + "self._deferred": 1, + "deferred_class_factory": 2, + "factory": 5, + "defers.append": 1, + "self._meta.proxy_for_model": 1, + "simple_class_factory": 2, + "model_unpickle": 2, + "_get_pk_val": 2, + "self._meta": 2, + "meta.pk.attname": 2, + "_set_pk_val": 2, + "self._meta.pk.attname": 2, + "pk": 5, + "serializable_value": 1, + "field_name": 8, + "self._meta.get_field_by_name": 1, + "force_insert": 7, + "force_update": 10, + "using": 30, + "update_fields": 23, + "field.primary_key": 1, + "non_model_fields": 2, + "update_fields.difference": 1, + "self.save_base": 2, + "save.alters_data": 1, + "save_base": 1, + "raw": 9, + "origin": 7, + "router.db_for_write": 2, + "meta.proxy": 5, + "meta.auto_created": 2, + "signals.pre_save.send": 1, + "org": 3, + "meta.parents.items": 1, + "parent._meta.pk.attname": 2, + "parent._meta": 1, + "non_pks": 5, + "meta.local_fields": 2, + "f.primary_key": 2, + "pk_val": 4, + "pk_set": 5, + "record_exists": 5, + "cls._base_manager": 1, + "manager.using": 3, + ".filter": 7, + ".exists": 1, + "f.pre_save": 1, + "rows": 3, + "._update": 1, + "meta.order_with_respect_to": 2, + "order_value": 2, + ".count": 1, + "self._order": 1, + "update_pk": 3, + "meta.has_auto_field": 1, + "result": 2, + "manager._insert": 1, + "return_id": 1, + "transaction.commit_unless_managed": 2, + "self._state.db": 2, + "self._state.adding": 4, + "signals.post_save.send": 1, + "created": 1, + "save_base.alters_data": 1, + "delete": 1, + "self._meta.object_name": 1, + "collector": 1, + "collector.collect": 1, + "collector.delete": 1, + "delete.alters_data": 1, + "_get_FIELD_display": 1, + "field.flatchoices": 1, + ".get": 2, + "strings_only": 1, + "_get_next_or_previous_by_FIELD": 1, + "self.pk": 6, + "order": 5, + "param": 3, + "q": 4, + "|": 1, + "qs": 6, + "self.__class__._default_manager.using": 1, + "*kwargs": 1, + ".order_by": 2, + "self.DoesNotExist": 1, + "self.__class__._meta.object_name": 1, + "_get_next_or_previous_in_order": 1, + "cachename": 4, + "order_field": 1, + "self._meta.order_with_respect_to": 1, + "self._default_manager.filter": 1, + "order_field.name": 1, + "order_field.attname": 1, + "self._default_manager.values": 1, + "self._meta.pk.name": 1, + "prepare_database_save": 1, + "unused": 1, + "clean": 1, + "validate_unique": 1, + "exclude": 23, + "unique_checks": 6, + "date_checks": 6, + "self._get_unique_checks": 1, + "errors": 20, + "self._perform_unique_checks": 1, + "date_errors": 1, + "self._perform_date_checks": 1, + "date_errors.items": 1, + "errors.setdefault": 3, + "_get_unique_checks": 1, + "unique_togethers": 2, + "self._meta.unique_together": 1, + "parent_class": 4, + "self._meta.parents.keys": 2, + "parent_class._meta.unique_together": 2, + "unique_togethers.append": 1, + "model_class": 11, + "unique_together": 2, + "unique_checks.append": 2, + "fields_with_class": 2, + "self._meta.local_fields": 1, + "fields_with_class.append": 1, + "parent_class._meta.local_fields": 1, + "f.unique": 1, + "f.unique_for_date": 3, + "date_checks.append": 3, + "f.unique_for_year": 3, + "f.unique_for_month": 3, + "_perform_unique_checks": 1, + "unique_check": 10, + "lookup_kwargs": 8, + "self._meta.get_field": 1, + "lookup_value": 3, + "lookup_kwargs.keys": 1, + "model_class._default_manager.filter": 2, + "*lookup_kwargs": 2, + "model_class_pk": 3, + "model_class._meta": 2, + "qs.exclude": 2, + "qs.exists": 2, + ".append": 2, + "self.unique_error_message": 1, + "_perform_date_checks": 1, + "lookup_type": 7, + "unique_for": 9, + "date": 3, + "date.day": 1, + "date.month": 1, + "date.year": 1, + "self.date_error_message": 1, + "date_error_message": 1, + "opts.get_field": 4, + ".verbose_name": 3, + "unique_error_message": 1, + "model_name": 3, + "opts.verbose_name": 1, + "field_label": 2, + "field.verbose_name": 1, + "field.error_messages": 1, + "field_labels": 4, + "map": 1, + "full_clean": 1, + "self.clean_fields": 1, + "e.update_error_dict": 3, + "self.clean": 1, + "errors.keys": 1, + "exclude.append": 1, + "self.validate_unique": 1, + "clean_fields": 1, + "raw_value": 3, + "f.blank": 1, + "validators.EMPTY_VALUES": 1, + "f.clean": 1, + "e.messages": 1, + "############################################": 2, + "ordered_obj": 2, + "id_list": 2, + "rel_val": 4, + "ordered_obj._meta.order_with_respect_to.rel.field_name": 2, + "order_name": 4, + "ordered_obj._meta.order_with_respect_to.name": 2, + "ordered_obj.objects.filter": 2, + ".update": 1, + "_order": 1, + "pk_name": 3, + "ordered_obj._meta.pk.name": 1, + ".values": 1, + "##############################################": 2, + "func": 2, + "settings.ABSOLUTE_URL_OVERRIDES.get": 1, + "opts.app_label": 1, + "opts.module_name": 1, + "########": 2, + "Empty": 1, + "cls.__new__": 1, + "model_unpickle.__safe_for_unpickle__": 1 }, "QMake": { - "QT": 4, - "+": 13, - "core": 2, - "gui": 2, - "greaterThan": 1, + "SHEBANG#!qmake": 1, + "message": 1, "(": 8, - "QT_MAJOR_VERSION": 1, + "This": 1, + "is": 1, + "QMake.": 1, ")": 8, - "widgets": 1, - "contains": 2, - "QT_CONFIG": 2, - "opengl": 2, - "|": 1, - "opengles2": 1, - "{": 6, - "}": 6, - "else": 2, - "DEFINES": 1, - "QT_NO_OPENGL": 1, - "TEMPLATE": 2, - "app": 2, - "win32": 2, - "TARGET": 3, - "BlahApp": 1, - "RC_FILE": 1, - "Resources/winres.rc": 1, - "blahapp": 1, - "include": 1, - "functions.pri": 1, - "SOURCES": 2, - "file.cpp": 2, - "HEADERS": 2, - "file.h": 2, - "FORMS": 2, - "file.ui": 1, - "RESOURCES": 1, - "res.qrc": 1, "exists": 1, ".git/HEAD": 1, + "{": 6, "system": 2, "git": 1, "rev": 1, @@ -57596,22 +57864,51 @@ "parse": 1, "HEAD": 1, "rev.txt": 2, + "}": 6, + "else": 2, "echo": 1, "ThisIsNotAGitRepo": 1, - "SHEBANG#!qmake": 1, - "message": 1, - "This": 1, - "is": 1, - "QMake.": 1, "CONFIG": 1, + "+": 13, "qt": 1, + "QT": 4, + "core": 2, + "gui": 2, + "TEMPLATE": 2, + "app": 2, + "TARGET": 3, "simpleapp": 1, + "SOURCES": 2, + "file.cpp": 2, "file2.c": 1, "This/Is/Folder/file3.cpp": 1, + "HEADERS": 2, + "file.h": 2, "file2.h": 1, "This/Is/Folder/file3.h": 1, + "FORMS": 2, "This/Is/Folder/file3.ui": 1, - "Test.ui": 1 + "Test.ui": 1, + "greaterThan": 1, + "QT_MAJOR_VERSION": 1, + "widgets": 1, + "contains": 2, + "QT_CONFIG": 2, + "opengl": 2, + "|": 1, + "opengles2": 1, + "DEFINES": 1, + "QT_NO_OPENGL": 1, + "win32": 2, + "BlahApp": 1, + "RC_FILE": 1, + "Resources/winres.rc": 1, + "blahapp": 1, + "include": 1, + "functions.pri": 1, + "file.ui": 1, + "RESOURCES": 1, + "res.qrc": 1 }, "R": { "df.residual.mira": 1, @@ -57662,75 +57959,30 @@ "length": 3, "k": 3, "max": 1, - "SHEBANG#!Rscript": 2, - "#": 45, - "MedianNorm": 2, - "data": 13, - "geomeans": 3, - "<->": 1, - "exp": 1, - "rowMeans": 1, - "log": 5, - "apply": 2, - "2": 1, - "cnts": 2, - "median": 1, - "library": 1, - "print_usage": 2, - "file": 4, - "stderr": 1, - "cat": 1, - "spec": 2, - "matrix": 3, - "byrow": 3, - "ncol": 3, - "opt": 23, - "getopt": 1, - "help": 1, - "stdout": 1, - "status": 1, - "height": 7, - "out": 4, - "res": 6, - "width": 7, - "ylim": 7, - "read.table": 1, - "header": 1, - "sep": 4, - "quote": 1, - "nsamp": 8, - "dim": 1, - "outfile": 4, - "sprintf": 2, - "png": 2, - "h": 13, - "hist": 4, - "plot": 7, - "FALSE": 9, - "mids": 4, - "density": 4, + "##polyg": 1, + "vector": 2, + "##numpoints": 1, + "number": 1, + "##output": 1, + "output": 1, + "##": 1, + "Example": 1, + "scripts": 1, + "group": 1, + "pts": 1, + "spsample": 1, + "polyg": 1, + "numpoints": 1, "type": 3, - "col": 4, - "rainbow": 4, - "main": 2, - "xlab": 2, - "ylab": 2, - "for": 4, - "i": 6, - "in": 8, - "lines": 6, - "devnum": 2, - "dev.off": 2, - "size.factors": 2, - "data.matrix": 1, - "data.norm": 3, - "t": 1, - "x": 3, - "/": 1, + "SHEBANG#!Rscript": 2, "ParseDates": 2, + "lines": 6, "dates": 3, + "matrix": 3, "unlist": 2, "strsplit": 3, + "ncol": 3, + "byrow": 3, "days": 2, "times": 2, "hours": 2, @@ -57751,6 +58003,7 @@ "ggplot": 1, "aes": 2, "y": 1, + "x": 3, "geom_point": 1, "size": 1, "Freq": 1, @@ -57758,10 +58011,81 @@ "range": 1, "ggsave": 1, "filename": 1, - "hello": 2, - "print": 1, - "module": 25, + "plot": 7, + "width": 7, + "height": 7, + "docType": 1, + "package": 5, + "name": 10, + "scholar": 6, + "alias": 2, + "title": 1, + "source": 3, + "The": 5, + "reads": 1, + "data": 13, + "from": 5, + "url": 2, + "http": 2, + "//scholar.google.com": 1, + ".": 7, + "Dates": 1, + "and": 5, + "citation": 2, + "counts": 1, + "are": 4, + "estimated": 1, + "determined": 1, + "automatically": 1, + "by": 2, + "a": 6, + "computer": 1, + "program.": 1, + "Use": 1, + "at": 2, + "your": 1, + "own": 1, + "risk.": 1, + "description": 1, "code": 21, + "provides": 1, + "functions": 3, + "to": 9, + "extract": 1, + "Google": 2, + "Scholar.": 1, + "There": 1, + "also": 1, + "convenience": 1, + "for": 4, + "comparing": 1, + "multiple": 1, + "scholars": 1, + "predicting": 1, + "h": 13, + "index": 1, + "scores": 1, + "based": 1, + "on": 2, + "past": 1, + "publication": 1, + "records.": 1, + "note": 1, + "A": 1, + "complementary": 1, + "set": 2, + "of": 2, + "Scholar": 1, + "can": 3, + "be": 8, + "found": 1, + "//biostat.jhsph.edu/": 1, + "jleek/code/googleCite.r": 1, + "was": 1, + "developed": 1, + "independently.": 1, + "#": 45, + "module": 25, "available": 1, "via": 1, "the": 16, @@ -57781,19 +58105,17 @@ "even": 1, "attach": 11, "is": 7, + "FALSE": 9, "optionally": 1, "attached": 2, - "to": 9, - "of": 2, "current": 2, "scope": 1, "defaults": 1, - ".": 7, "However": 1, + "in": 8, "interactive": 2, "invoked": 1, "directly": 1, - "from": 5, "terminal": 1, "only": 1, "i.e.": 1, @@ -57801,12 +58123,8 @@ "within": 1, "modules": 4, "import.attach": 1, - "can": 3, - "be": 8, - "set": 2, "or": 1, "depending": 1, - "on": 2, "user": 1, "s": 2, "preference.": 1, @@ -57814,7 +58132,6 @@ "causes": 1, "emph": 3, "operators": 3, - "by": 2, "default": 1, "path.": 1, "Not": 1, @@ -57823,20 +58140,18 @@ "therefore": 1, "drastically": 1, "limits": 1, - "a": 6, "usefulness.": 1, "Modules": 1, - "are": 4, "searched": 1, "options": 1, "priority.": 1, - "The": 5, "directory": 1, "always": 1, "considered": 1, "first.": 1, "That": 1, "local": 3, + "file": 4, "./a.r": 1, "will": 2, "loaded.": 1, @@ -57893,7 +58208,6 @@ "exhibit_namespace": 3, "identical": 2, ".GlobalEnv": 2, - "name": 10, "environmentName": 2, "parent.env": 4, "export_operators": 2, @@ -57906,7 +58220,7 @@ "parent": 9, ".BaseNamespaceEnv": 1, "paste": 3, - "source": 3, + "sep": 4, "chdir": 1, "envir": 5, "cache_module": 1, @@ -57930,7 +58244,6 @@ "references": 1, "remain": 1, "unchanged": 1, - "and": 5, "files": 1, "would": 1, "have": 1, @@ -57966,71 +58279,55 @@ ".loaded_modules": 1, "whatnot.": 1, "assign": 1, - "##polyg": 1, - "vector": 2, - "##numpoints": 1, - "number": 1, - "##output": 1, - "output": 1, - "##": 1, - "Example": 1, - "scripts": 1, - "group": 1, - "pts": 1, - "spsample": 1, - "polyg": 1, - "numpoints": 1, - "docType": 1, - "package": 5, - "scholar": 6, - "alias": 2, - "title": 1, - "reads": 1, - "url": 2, - "http": 2, - "//scholar.google.com": 1, - "Dates": 1, - "citation": 2, - "counts": 1, - "estimated": 1, - "determined": 1, - "automatically": 1, - "computer": 1, - "program.": 1, - "Use": 1, - "at": 2, - "your": 1, - "own": 1, - "risk.": 1, - "description": 1, - "provides": 1, - "functions": 3, - "extract": 1, - "Google": 2, - "Scholar.": 1, - "There": 1, - "also": 1, - "convenience": 1, - "comparing": 1, - "multiple": 1, - "scholars": 1, - "predicting": 1, - "index": 1, - "scores": 1, - "based": 1, - "past": 1, - "publication": 1, - "records.": 1, - "note": 1, - "A": 1, - "complementary": 1, - "Scholar": 1, - "found": 1, - "//biostat.jhsph.edu/": 1, - "jleek/code/googleCite.r": 1, - "was": 1, - "developed": 1, - "independently.": 1 + "hello": 2, + "print": 1, + "MedianNorm": 2, + "geomeans": 3, + "<->": 1, + "exp": 1, + "rowMeans": 1, + "log": 5, + "apply": 2, + "2": 1, + "cnts": 2, + "median": 1, + "library": 1, + "print_usage": 2, + "stderr": 1, + "cat": 1, + "spec": 2, + "opt": 23, + "getopt": 1, + "help": 1, + "stdout": 1, + "status": 1, + "out": 4, + "res": 6, + "ylim": 7, + "read.table": 1, + "header": 1, + "quote": 1, + "nsamp": 8, + "dim": 1, + "outfile": 4, + "sprintf": 2, + "png": 2, + "hist": 4, + "mids": 4, + "density": 4, + "col": 4, + "rainbow": 4, + "main": 2, + "xlab": 2, + "ylab": 2, + "i": 6, + "devnum": 2, + "dev.off": 2, + "size.factors": 2, + "data.matrix": 1, + "data.norm": 3, + "t": 1, + "/": 1 }, "RDoc": { "RDoc": 7, @@ -58336,21 +58633,72 @@ "%": 34, "{": 19, "machine": 3, - "ephemeris_parser": 1, + "simple_tokenizer": 1, ";": 38, "action": 9, - "mark": 6, + "MyTs": 2, + "my_ts": 6, "p": 8, "}": 19, - "parse_start_time": 2, - "parser.start_time": 1, + "MyTe": 2, + "my_te": 6, + "Emit": 4, + "emit": 4, "data": 15, "[": 20, - "mark..p": 4, + "my_ts...my_te": 1, "]": 20, ".pack": 6, "(": 33, ")": 33, + "nil": 4, + "foo": 8, + "any": 4, + "+": 7, + "main": 3, + "|": 11, + "*": 9, + "end": 23, + "#": 4, + "class": 3, + "SimpleTokenizer": 1, + "attr_reader": 2, + "path": 8, + "def": 10, + "initialize": 2, + "@path": 2, + "write": 9, + "stdout.puts": 2, + "perform": 2, + "pe": 4, + "ignored": 4, + "eof": 3, + "init": 3, + "leftover": 8, + "File.open": 2, + "do": 2, + "f": 2, + "while": 2, + "chunk": 2, + "f.read": 2, + "ENV": 2, + ".to_i": 2, + "chunk.unpack": 2, + "data.length": 3, + "exec": 3, + "if": 4, + "my_ts..": 1, + "-": 5, + "else": 2, + "s": 4, + "SimpleTokenizer.new": 1, + "ARGV": 2, + "s.perform": 2, + "ephemeris_parser": 1, + "mark": 6, + "parse_start_time": 2, + "parser.start_time": 1, + "mark..p": 4, "parse_stop_time": 2, "parser.stop_time": 1, "parse_step_size": 2, @@ -58363,7 +58711,6 @@ "r": 1, "n": 1, "adbc": 2, - "|": 11, "year": 2, "digit": 7, "month": 2, @@ -58376,98 +58723,53 @@ "tz": 2, "datetime": 3, "time_unit": 2, - "s": 4, "soe": 2, "eoe": 2, "ephemeris_table": 3, "alnum": 1, - "*": 9, - "-": 5, "./": 1, "start_time": 4, "space*": 2, "stop_time": 4, "step_size": 3, - "+": 7, "ephemeris": 2, - "main": 3, "any*": 3, - "end": 23, "require": 1, "module": 1, "Tengai": 1, "EPHEMERIS_DATA": 2, "Struct.new": 1, ".freeze": 1, - "class": 3, "EphemerisParser": 1, "<": 1, - "def": 10, "self.parse": 1, "parser": 2, "new": 1, "data.unpack": 1, - "if": 4, "data.is_a": 1, "String": 1, - "eof": 3, - "data.length": 3, - "write": 9, - "init": 3, - "exec": 3, "time": 6, "super": 2, "parse_time": 3, "private": 1, "DateTime.parse": 1, "simple_scanner": 1, - "Emit": 4, - "emit": 4, "ts": 4, "..": 1, "te": 1, - "foo": 8, - "any": 4, - "#": 4, "SimpleScanner": 1, - "attr_reader": 2, - "path": 8, - "initialize": 2, - "@path": 2, - "stdout.puts": 2, - "perform": 2, - "pe": 4, - "ignored": 4, - "leftover": 8, - "File.open": 2, - "do": 2, - "f": 2, - "while": 2, - "chunk": 2, - "f.read": 2, - "ENV": 2, - ".to_i": 2, - "chunk.unpack": 2, "||": 1, "ts..pe": 1, - "else": 2, - "SimpleScanner.new": 1, - "ARGV": 2, - "s.perform": 2, - "simple_tokenizer": 1, - "MyTs": 2, - "my_ts": 6, - "MyTe": 2, - "my_te": 6, - "my_ts...my_te": 1, - "nil": 4, - "SimpleTokenizer": 1, - "my_ts..": 1, - "SimpleTokenizer.new": 1 + "SimpleScanner.new": 1 }, "Rebol": { - "REBOL": 5, + "Rebol": 4, "[": 54, + "]": 61, + "hello": 8, + "func": 5, + "print": 4, + "REBOL": 5, "System": 1, "Title": 2, "Rights": 1, @@ -58505,7 +58807,6 @@ "block": 5, "BIND_SET": 1, "SHALLOW": 1, - "]": 61, ";": 19, "Special": 1, "as": 1, @@ -58548,9 +58849,7 @@ "it": 2, "correct": 2, "action": 2, - "Rebol": 4, "re": 20, - "func": 5, "s": 5, "/i": 1, "rejoin": 1, @@ -58612,137 +58911,24 @@ "off": 1, "none": 1, "#": 1, - "hello": 8, - "print": 4, "author": 1 }, "Red": { - "Red": 3, + "Red/System": 1, "[": 111, "Title": 2, - "Author": 1, - "]": 114, - "File": 1, - "%": 2, - "console.red": 1, - "Tabs": 1, - "Rights": 1, - "License": 2, - "{": 11, - "Distributed": 1, - "under": 1, - "the": 3, - "Boost": 1, - "Software": 1, - "Version": 1, - "See": 1, - "https": 1, - "//github.com/dockimbel/Red/blob/master/BSL": 1, - "-": 74, - "License.txt": 1, - "}": 11, "Purpose": 2, "Language": 2, "http": 2, "//www.red": 2, + "-": 74, "lang.org/": 2, - "#system": 1, - "global": 1, - "#either": 3, - "OS": 3, - "MacOSX": 2, - "History": 1, - "library": 1, - "cdecl": 3, - "add": 2, - "history": 2, - ";": 31, - "Add": 1, - "line": 9, - "to": 2, - "history.": 1, - "c": 7, - "string": 10, - "rl": 4, - "insert": 3, - "wrapper": 2, - "func": 1, - "count": 3, - "integer": 16, - "key": 3, - "return": 10, - "Windows": 2, - "system/platform": 1, - "ret": 5, - "AttachConsole": 1, - "if": 2, - "zero": 3, - "print": 5, - "halt": 2, - "SetConsoleTitle": 1, - "as": 4, - "string/rs": 1, - "head": 1, - "str": 4, - "bind": 1, - "tab": 3, - "input": 2, - "routine": 1, - "prompt": 3, - "/local": 1, - "len": 1, - "buffer": 4, - "string/load": 1, - "+": 1, - "length": 1, - "free": 1, - "byte": 3, - "ptr": 14, - "SET_RETURN": 1, - "(": 6, - ")": 4, - "delimiters": 1, - "function": 6, - "block": 3, - "list": 1, - "copy": 2, - "none": 1, - "foreach": 1, - "case": 2, - "escaped": 2, - "no": 2, - "in": 2, - "comment": 2, - "switch": 3, - "#": 8, - "mono": 3, - "mode": 3, - "cnt/1": 1, - "red": 1, - "eval": 1, - "code": 3, - "load/all": 1, - "unless": 1, - "tail": 1, - "set/any": 1, - "not": 1, - "script/2": 1, - "do": 2, - "skip": 1, - "script": 1, - "quit": 2, - "init": 1, - "console": 2, - "Console": 1, - "alpha": 1, - "version": 3, - "only": 1, - "ASCII": 1, - "supported": 1, - "Red/System": 1, + "]": 114, "#include": 1, + "%": 2, "../common/FPU": 1, "configuration.reds": 1, + ";": 31, "C": 1, "types": 1, "#define": 2, @@ -58753,6 +58939,9 @@ "alias": 2, "struct": 5, "second": 1, + "integer": 16, + "(": 6, + ")": 4, "minute": 1, "hour": 1, "day": 1, @@ -58767,22 +58956,32 @@ "saving": 1, "Negative": 1, "unknown": 1, + "#either": 3, + "OS": 3, "#import": 1, "LIBC": 1, "file": 1, + "cdecl": 3, "Error": 1, "handling": 1, "form": 1, "error": 5, "Return": 1, "description.": 1, + "code": 3, + "return": 10, + "c": 7, + "string": 10, + "print": 5, "Print": 1, + "to": 2, "standard": 1, "output.": 1, "Memory": 1, "management": 1, "make": 1, "Allocate": 1, + "zero": 3, "filled": 1, "memory.": 1, "chunks": 1, @@ -58795,9 +58994,11 @@ "JVM": 6, "reserved0": 1, "int": 6, + "ptr": 14, "reserved1": 1, "reserved2": 1, "DestroyJavaVM": 1, + "function": 6, "JNICALL": 5, "vm": 5, "jint": 5, @@ -58805,8 +59006,10 @@ "penv": 3, "p": 3, "args": 2, + "byte": 3, "DetachCurrentThread": 1, "GetEnv": 1, + "version": 3, "AttachCurrentThreadAsDaemon": 1, "just": 2, "some": 2, @@ -58815,9 +59018,14 @@ "testing": 1, "#some": 1, "hash": 1, + "quit": 2, + "#": 8, + "{": 11, "FF0000": 3, + "}": 11, "FF000000": 2, "with": 4, + "tab": 3, "instead": 1, "of": 1, "space": 2, @@ -58833,6 +59041,7 @@ "which": 1, "interpreter": 1, "path": 1, + "copy": 2, "h": 1, "#if": 1, "type": 1, @@ -58847,6 +59056,7 @@ "@@": 1, "reposition": 1, "after": 1, + "the": 3, "catch": 1, "flag": 1, "CATCH_ALL": 1, @@ -58857,7 +59067,94 @@ "stack": 1, "aligned": 1, "on": 1, - "bit": 1 + "bit": 1, + "Red": 3, + "Author": 1, + "File": 1, + "console.red": 1, + "Tabs": 1, + "Rights": 1, + "License": 2, + "Distributed": 1, + "under": 1, + "Boost": 1, + "Software": 1, + "Version": 1, + "See": 1, + "https": 1, + "//github.com/dockimbel/Red/blob/master/BSL": 1, + "License.txt": 1, + "#system": 1, + "global": 1, + "MacOSX": 2, + "History": 1, + "library": 1, + "add": 2, + "history": 2, + "Add": 1, + "line": 9, + "history.": 1, + "rl": 4, + "insert": 3, + "wrapper": 2, + "func": 1, + "count": 3, + "key": 3, + "Windows": 2, + "system/platform": 1, + "ret": 5, + "AttachConsole": 1, + "if": 2, + "halt": 2, + "SetConsoleTitle": 1, + "as": 4, + "string/rs": 1, + "head": 1, + "str": 4, + "bind": 1, + "input": 2, + "routine": 1, + "prompt": 3, + "/local": 1, + "len": 1, + "buffer": 4, + "string/load": 1, + "+": 1, + "length": 1, + "free": 1, + "SET_RETURN": 1, + "delimiters": 1, + "block": 3, + "list": 1, + "none": 1, + "foreach": 1, + "case": 2, + "escaped": 2, + "no": 2, + "in": 2, + "comment": 2, + "switch": 3, + "mono": 3, + "mode": 3, + "cnt/1": 1, + "red": 1, + "eval": 1, + "load/all": 1, + "unless": 1, + "tail": 1, + "set/any": 1, + "not": 1, + "script/2": 1, + "do": 2, + "skip": 1, + "script": 1, + "init": 1, + "console": 2, + "Console": 1, + "alpha": 1, + "only": 1, + "ASCII": 1, + "supported": 1 }, "RobotFramework": { "***": 16, @@ -58967,55 +59264,6 @@ "#": 2, "Using": 1, "BuiltIn": 1, - "case": 1, - "gherkin": 1, - "syntax.": 1, - "This": 3, - "similar": 1, - "examples.": 1, - "difference": 1, - "higher": 1, - "abstraction": 1, - "level": 1, - "and": 2, - "their": 1, - "arguments": 1, - "are": 1, - "embedded": 1, - "into": 1, - "names.": 1, - "kind": 2, - "_gherkin_": 2, - "syntax": 1, - "been": 3, - "made": 1, - "popular": 1, - "http": 1, - "//cukes.info": 1, - "|": 1, - "Cucumber": 1, - "It": 1, - "especially": 1, - "act": 1, - "as": 1, - "examples": 1, - "easily": 1, - "understood": 1, - "also": 2, - "business": 2, - "people.": 1, - "Given": 1, - "calculator": 1, - "cleared": 2, - "When": 1, - "user": 2, - "types": 2, - "pushes": 2, - "equals": 2, - "Then": 1, - "result": 2, - "Calculator": 1, - "User": 2, "All": 1, "contain": 1, "constructed": 1, @@ -59032,10 +59280,15 @@ "without": 1, "programming": 1, "skills.": 1, + "This": 3, + "kind": 2, "normal": 1, "automation.": 1, "If": 1, + "also": 2, + "business": 2, "understand": 1, + "_gherkin_": 2, "may": 1, "work": 1, "better.": 1, @@ -59044,54 +59297,249 @@ "Longer": 1, "Clear": 1, "built": 1, - "variable": 1 + "variable": 1, + "case": 1, + "gherkin": 1, + "syntax.": 1, + "similar": 1, + "examples.": 1, + "difference": 1, + "higher": 1, + "abstraction": 1, + "level": 1, + "and": 2, + "their": 1, + "arguments": 1, + "are": 1, + "embedded": 1, + "into": 1, + "names.": 1, + "syntax": 1, + "been": 3, + "made": 1, + "popular": 1, + "http": 1, + "//cukes.info": 1, + "|": 1, + "Cucumber": 1, + "It": 1, + "especially": 1, + "act": 1, + "as": 1, + "examples": 1, + "easily": 1, + "understood": 1, + "people.": 1, + "Given": 1, + "calculator": 1, + "cleared": 2, + "When": 1, + "user": 2, + "types": 2, + "pushes": 2, + "equals": 2, + "Then": 1, + "result": 2, + "Calculator": 1, + "User": 2 }, "Ruby": { - "Pry.config.commands.import": 1, - "Pry": 1, - "ExtendedCommands": 1, - "Experimental": 1, - "Pry.config.pager": 1, - "false": 29, - "Pry.config.color": 1, - "Pry.config.commands.alias_command": 1, - "Pry.config.commands.command": 1, - "do": 38, - "|": 93, - "*args": 17, - "output.puts": 1, - "end": 239, - "Pry.config.history.should_save": 1, - "Pry.config.prompt": 1, - "[": 58, - "proc": 2, - "{": 70, - "}": 70, - "]": 58, - "Pry.plugins": 1, - ".disable": 1, - "appraise": 2, - "gem": 3, - "load": 3, - "Dir": 4, - ".each": 4, - "plugin": 3, - "(": 244, - ")": 256, - "task": 2, - "default": 2, - "puts": 12, "module": 8, "Foo": 1, + "end": 239, + "SHEBANG#!rake": 1, + "task": 2, + "default": 2, + "do": 38, + "puts": 12, + "SHEBANG#!macruby": 1, "require": 58, + "Resque": 3, + "include": 3, + "Helpers": 1, + "extend": 2, + "self": 11, + "def": 143, + "redis": 7, + "(": 244, + "server": 11, + ")": 256, + "case": 5, + "when": 11, + "String": 2, + "if": 72, + "/redis": 1, + "/": 34, + "//": 3, + "Redis.connect": 2, + "url": 12, + "thread_safe": 2, + "true": 15, + "else": 25, + "namespace": 3, + "server.split": 2, + "host": 3, + "port": 4, + "db": 3, + "Redis.new": 1, + "||": 22, + "resque": 2, + "@redis": 6, + "Redis": 3, + "Namespace.new": 2, + "Namespace": 1, + "@queues": 2, + "Hash.new": 1, + "{": 70, + "|": 93, + "h": 2, + "name": 51, + "[": 58, + "]": 58, + "Queue.new": 1, + "coder": 3, + "}": 70, + "@coder": 1, + "MultiJsonCoder.new": 1, + "attr_writer": 4, + "return": 25, + "self.redis": 2, + "Redis.respond_to": 1, + "connect": 1, + "redis_id": 2, + "redis.respond_to": 2, + "redis.server": 1, + "elsif": 7, + "nodes": 1, + "#": 100, + "distributed": 1, + "redis.nodes.map": 1, + "n": 4, + "n.id": 1, + ".join": 1, + "redis.client.id": 1, + "before_first_fork": 2, + "&": 31, + "block": 30, + "@before_first_fork": 2, + "before_fork": 2, + "@before_fork": 2, + "after_fork": 2, + "@after_fork": 2, + "to_s": 1, + "attr_accessor": 2, + "inline": 3, + "alias": 1, + "push": 1, + "queue": 24, + "item": 4, + "<<": 15, + "pop": 1, + "begin": 9, + ".pop": 1, + "rescue": 13, + "ThreadError": 1, + "nil": 21, + "size": 3, + ".size": 1, + "peek": 1, + "start": 7, + "count": 5, + ".slice": 1, + "list_range": 1, + "key": 8, + "decode": 2, + "redis.lindex": 1, + "Array": 2, + "redis.lrange": 1, + "+": 47, + "-": 34, + ".map": 6, + "queues": 3, + "redis.smembers": 1, + "remove_queue": 1, + ".destroy": 1, + "@queues.delete": 1, + "queue.to_s": 1, + "name.to_s": 3, + "enqueue": 1, + "klass": 16, + "*args": 17, + "enqueue_to": 2, + "queue_from_class": 4, + "before_hooks": 2, + "Plugin.before_enqueue_hooks": 1, + ".collect": 2, + "hook": 9, + "klass.send": 4, + "before_hooks.any": 2, + "result": 8, + "false": 29, + "Job.create": 1, + "Plugin.after_enqueue_hooks": 1, + ".each": 4, + "dequeue": 1, + "Plugin.before_dequeue_hooks": 1, + "Job.destroy": 1, + "Plugin.after_dequeue_hooks": 1, + "klass.instance_variable_get": 1, + "@queue": 1, + "klass.respond_to": 1, + "and": 6, + "klass.queue": 1, + "reserve": 1, + "Job.reserve": 1, + "validate": 1, + "raise": 17, + "NoQueueError.new": 1, + "klass.to_s.empty": 1, + "NoClassError.new": 1, + "workers": 2, + "Worker.all": 1, + "working": 2, + "Worker.working": 1, + "remove_worker": 1, + "worker_id": 2, + "worker": 1, + "Worker.find": 1, + "worker.unregister_worker": 1, + "info": 2, + "pending": 1, + "queues.inject": 1, + "m": 3, + "k": 2, + "processed": 2, + "Stat": 2, + "queues.size": 1, + "workers.size.to_i": 1, + "working.size": 1, + "failed": 3, + "servers": 1, + "environment": 2, + "ENV": 4, + "keys": 6, + "redis.keys": 1, + "key.sub": 1, + "SHEBANG#!python": 1, + "Jenkins": 1, + "Plugin": 1, + "Specification.new": 1, + "plugin": 3, + "plugin.name": 1, + "plugin.display_name": 1, + "plugin.version": 1, + "plugin.description": 1, + "plugin.url": 1, + "plugin.developed_by": 1, + "plugin.uses_repository": 1, + "github": 1, + "plugin.depends_on": 1, + "#plugin.depends_on": 1, "class": 7, "Formula": 2, - "include": 3, "FileUtils": 1, "attr_reader": 5, - "name": 51, "path": 16, - "url": 12, "version": 10, "homepage": 2, "specs": 14, @@ -59103,13 +59551,9 @@ "bottle_url": 3, "bottle_sha1": 2, "buildpath": 1, - "def": 143, "initialize": 2, - "nil": 21, "set_instance_variable": 12, - "if": 72, "@head": 4, - "and": 6, "not": 3, "@url": 8, "or": 7, @@ -59117,12 +59561,10 @@ "@version": 10, "@spec_to_use": 4, "@unstable": 2, - "else": 25, "@standard.nil": 1, "SoftwareSpecification.new": 3, "@specs": 3, "@standard": 3, - "raise": 17, "@url.nil": 1, "@name": 3, "validate_variable": 7, @@ -59130,7 +59572,6 @@ "path.nil": 1, "self.class.path": 1, "Pathname.new": 3, - "||": 22, "@spec_to_use.detect_version": 1, "CHECKSUM_TYPES.each": 1, "type": 10, @@ -59140,14 +59581,10 @@ "@spec_to_use.specs": 1, "@bottle_url": 2, "bottle_base_url": 1, - "+": 47, "bottle_filename": 1, - "self": 11, "@bottle_sha1": 2, "installed": 2, - "return": 25, "installed_prefix.children.length": 1, - "rescue": 13, "explicitly_requested": 1, "ARGV.named.empty": 1, "ARGV.formulae.include": 1, @@ -59164,7 +59601,6 @@ "prefix.parent": 1, "bin": 1, "doc": 1, - "info": 2, "lib": 1, "libexec": 1, "man": 9, @@ -59208,7 +59644,6 @@ "failure.build": 1, "cc.build": 1, "skip_clean": 2, - "true": 15, "self.class.skip_clean_all": 1, "to_check": 2, "path.relative_path_from": 1, @@ -59216,14 +59651,12 @@ "self.class.skip_clean_paths.include": 1, "brew": 2, "stage": 2, - "begin": 9, "patch": 3, "yield": 5, "Interrupt": 2, "RuntimeError": 1, "SystemCallError": 1, "e": 8, - "#": 100, "don": 1, "config.log": 2, "t": 3, @@ -59237,7 +59670,6 @@ "std_cmake_args": 1, "%": 10, "W": 1, - "-": 34, "DCMAKE_INSTALL_PREFIX": 1, "DCMAKE_BUILD_TYPE": 1, "None": 1, @@ -59253,7 +59685,6 @@ "camelcase": 1, "it": 1, "name.capitalize.gsub": 1, - "/": 34, "_.": 1, "s": 2, "zA": 1, @@ -59261,7 +59692,7 @@ "upcase": 1, ".gsub": 5, "self.names": 1, - ".map": 6, + "Dir": 4, "f": 11, "File.basename": 2, ".sort": 2, @@ -59270,16 +59701,13 @@ "self.map": 1, "rv": 3, "each": 1, - "<<": 15, "self.each": 1, "names.each": 1, - "n": 4, "Formula.factory": 2, "onoe": 2, "inspect": 2, "self.aliases": 1, "self.canonical_name": 1, - "name.to_s": 3, "name.kind_of": 2, "Pathname": 2, "formula_with_that_name": 1, @@ -59296,7 +59724,6 @@ "relative_pathname": 1, "relative_pathname.stem.to_s": 1, "tapd.directory": 1, - "elsif": 7, "formula_with_that_name.file": 1, "formula_with_that_name.readable": 1, "possible_alias.file": 1, @@ -59306,7 +59733,6 @@ "self.factory": 1, "https": 1, "ftp": 1, - "//": 3, ".basename": 1, "target_file": 6, "name.basename": 1, @@ -59324,7 +59750,6 @@ "Formula.path": 1, "from_name": 2, "klass_name": 2, - "klass": 16, "Object.const_get": 1, "NameError": 2, "LoadError": 3, @@ -59360,11 +59785,9 @@ "ohai": 3, ".strip": 1, "removed_ENV_variables": 2, - "case": 5, "args.empty": 1, "cmd.split": 1, ".first": 1, - "when": 11, "ENV.remove_cc_etc": 1, "safe_system": 4, "rd": 1, @@ -59384,7 +59807,6 @@ "gets": 1, "here": 1, "threw": 1, - "failed": 3, "wr.close": 1, "out": 4, "rd.read": 1, @@ -59393,9 +59815,7 @@ "Process.wait": 1, ".success": 1, "removed_ENV_variables.each": 1, - "key": 8, "value": 4, - "ENV": 4, "ENV.kind_of": 1, "Hash": 3, "BuildError.new": 1, @@ -59489,8 +59909,6 @@ "skip_clean_all": 2, "cc_failures": 1, "stable": 2, - "&": 31, - "block": 30, "block_given": 5, "instance_eval": 2, "ARGV.build_devel": 2, @@ -59508,7 +59926,6 @@ "sha1.shift": 1, "@sha1": 6, "MacOS.cat": 1, - "String": 2, "MacOS.lion": 1, "self.data": 1, "&&": 8, @@ -59539,319 +59956,6 @@ "@cc_failures": 2, "CompilerFailures.new": 1, "CompilerFailure.new": 2, - "Grit": 1, - "ActiveSupport": 1, - "Inflector": 1, - "extend": 2, - "pluralize": 3, - "word": 10, - "apply_inflections": 3, - "inflections.plurals": 1, - "singularize": 2, - "inflections.singulars": 1, - "camelize": 2, - "term": 1, - "uppercase_first_letter": 2, - "string": 4, - "term.to_s": 1, - "string.sub": 2, - "z": 7, - "d": 6, - "*/": 1, - "inflections.acronyms": 1, - ".capitalize": 1, - "inflections.acronym_regex": 2, - "b": 4, - "A": 5, - "Z_": 1, - "string.gsub": 1, - "_": 2, - "/i": 2, - "underscore": 3, - "camel_cased_word": 6, - "camel_cased_word.to_s.dup": 1, - "word.gsub": 4, - "Za": 1, - "Z": 3, - "word.tr": 1, - "word.downcase": 1, - "humanize": 2, - "lower_case_and_underscored_word": 1, - "result": 8, - "lower_case_and_underscored_word.to_s.dup": 1, - "inflections.humans.each": 1, - "rule": 4, - "replacement": 4, - "break": 4, - "result.sub": 2, - "result.gsub": 2, - "/_id": 1, - "result.tr": 1, - "match": 6, - "w/": 1, - ".upcase": 1, - "titleize": 1, - "": 1, - "capitalize": 1, - "Create": 1, - "of": 1, - "table": 2, - "like": 1, - "Rails": 1, - "does": 1, - "for": 1, - "models": 1, - "to": 1, - "names": 2, - "This": 1, - "uses": 1, - "on": 2, - "last": 4, - "in": 3, - "RawScaledScorer": 1, - "tableize": 2, - "class_name": 2, - "classify": 1, - "table_name": 1, - "table_name.to_s.sub": 1, - "/.*": 1, - "./": 1, - "dasherize": 1, - "underscored_word": 1, - "underscored_word.tr": 1, - "demodulize": 1, - "i": 2, - "path.rindex": 2, - "..": 1, - "deconstantize": 1, - "implementation": 1, - "based": 1, - "one": 1, - "facets": 1, - "id": 1, - "outside": 2, - "inside": 2, - "owned": 1, - "constant": 4, - "constant.ancestors.inject": 1, - "const": 3, - "ancestor": 3, - "Object": 1, - "ancestor.const_defined": 1, - "constant.const_get": 1, - "safe_constantize": 1, - "constantize": 1, - "e.message": 2, - "uninitialized": 1, - "wrong": 1, - "const_regexp": 3, - "e.name.to_s": 1, - "camel_cased_word.to_s": 1, - "ArgumentError": 1, - "/not": 1, - "missing": 1, - "ordinal": 1, - "number": 2, - ".include": 1, - "number.to_i.abs": 2, - "ordinalize": 1, - "nodoc": 3, - "parts": 1, - "camel_cased_word.split": 1, - "parts.pop": 1, - "parts.reverse.inject": 1, - "acc": 2, - "part": 1, - "part.empty": 1, - "rules": 1, - "word.to_s.dup": 1, - "word.empty": 1, - "inflections.uncountables.include": 1, - "result.downcase": 1, - "Z/": 1, - "rules.each": 1, - ".unshift": 1, - "File.dirname": 4, - "__FILE__": 3, - "For": 1, - "use/testing": 1, - "no": 1, - "require_all": 4, - "glob": 2, - "File.join": 6, - "Jekyll": 3, - "VERSION": 1, - "DEFAULTS": 2, - "Dir.pwd": 3, - "self.configuration": 1, - "override": 3, - "source": 2, - "config_file": 2, - "config": 3, - "YAML.load_file": 1, - "config.is_a": 1, - "stdout.puts": 1, - "err": 1, - "stderr.puts": 2, - "err.to_s": 1, - "DEFAULTS.deep_merge": 1, - ".deep_merge": 1, - "Jenkins": 1, - "Plugin": 1, - "Specification.new": 1, - "plugin.name": 1, - "plugin.display_name": 1, - "plugin.version": 1, - "plugin.description": 1, - "plugin.url": 1, - "plugin.developed_by": 1, - "plugin.uses_repository": 1, - "github": 1, - "plugin.depends_on": 1, - "#plugin.depends_on": 1, - "SHEBANG#!macruby": 1, - "object": 2, - "@user": 1, - "person": 1, - "attributes": 2, - "username": 1, - "email": 1, - "location": 1, - "created_at": 1, - "registered_at": 1, - "node": 2, - "role": 1, - "user": 1, - "user.is_admin": 1, - "child": 1, - "phone_numbers": 1, - "pnumbers": 1, - "extends": 1, - "node_numbers": 1, - "u": 1, - "partial": 1, - "u.phone_numbers": 1, - "Resque": 3, - "Helpers": 1, - "redis": 7, - "server": 11, - "/redis": 1, - "Redis.connect": 2, - "thread_safe": 2, - "namespace": 3, - "server.split": 2, - "host": 3, - "port": 4, - "db": 3, - "Redis.new": 1, - "resque": 2, - "@redis": 6, - "Redis": 3, - "Namespace.new": 2, - "Namespace": 1, - "@queues": 2, - "Hash.new": 1, - "h": 2, - "Queue.new": 1, - "coder": 3, - "@coder": 1, - "MultiJsonCoder.new": 1, - "attr_writer": 4, - "self.redis": 2, - "Redis.respond_to": 1, - "connect": 1, - "redis_id": 2, - "redis.respond_to": 2, - "redis.server": 1, - "nodes": 1, - "distributed": 1, - "redis.nodes.map": 1, - "n.id": 1, - ".join": 1, - "redis.client.id": 1, - "before_first_fork": 2, - "@before_first_fork": 2, - "before_fork": 2, - "@before_fork": 2, - "after_fork": 2, - "@after_fork": 2, - "to_s": 1, - "attr_accessor": 2, - "inline": 3, - "alias": 1, - "push": 1, - "queue": 24, - "item": 4, - "pop": 1, - ".pop": 1, - "ThreadError": 1, - "size": 3, - ".size": 1, - "peek": 1, - "start": 7, - "count": 5, - ".slice": 1, - "list_range": 1, - "decode": 2, - "redis.lindex": 1, - "Array": 2, - "redis.lrange": 1, - "queues": 3, - "redis.smembers": 1, - "remove_queue": 1, - ".destroy": 1, - "@queues.delete": 1, - "queue.to_s": 1, - "enqueue": 1, - "enqueue_to": 2, - "queue_from_class": 4, - "before_hooks": 2, - "Plugin.before_enqueue_hooks": 1, - ".collect": 2, - "hook": 9, - "klass.send": 4, - "before_hooks.any": 2, - "Job.create": 1, - "Plugin.after_enqueue_hooks": 1, - "dequeue": 1, - "Plugin.before_dequeue_hooks": 1, - "Job.destroy": 1, - "Plugin.after_dequeue_hooks": 1, - "klass.instance_variable_get": 1, - "@queue": 1, - "klass.respond_to": 1, - "klass.queue": 1, - "reserve": 1, - "Job.reserve": 1, - "validate": 1, - "NoQueueError.new": 1, - "klass.to_s.empty": 1, - "NoClassError.new": 1, - "workers": 2, - "Worker.all": 1, - "working": 2, - "Worker.working": 1, - "remove_worker": 1, - "worker_id": 2, - "worker": 1, - "Worker.find": 1, - "worker.unregister_worker": 1, - "pending": 1, - "queues.inject": 1, - "m": 3, - "k": 2, - "processed": 2, - "Stat": 2, - "queues.size": 1, - "workers.size.to_i": 1, - "working.size": 1, - "servers": 1, - "environment": 2, - "keys": 6, - "redis.keys": 1, - "key.sub": 1, - "SHEBANG#!ruby": 2, - "SHEBANG#!rake": 1, "Sinatra": 2, "Request": 2, "<": 2, @@ -59863,12 +59967,15 @@ "entries.map": 1, "accept_entry": 1, ".sort_by": 1, + "last": 4, "first": 1, "preferred_type": 1, "self.defer": 1, + "match": 6, "pattern": 1, "path.respond_to": 5, "path.keys": 1, + "names": 2, "path.names": 1, "TypeError": 1, "URI": 3, @@ -59915,6 +60022,7 @@ "at": 1, "running": 2, "built": 1, + "in": 3, "now": 1, "http": 1, "webrick": 1, @@ -59930,7 +60038,9 @@ "app_file": 4, "root": 5, "File.expand_path": 1, + "File.dirname": 4, "views": 1, + "File.join": 6, "reload_templates": 1, "lock": 1, "threaded": 1, @@ -59945,6 +60055,7 @@ "configure": 2, "get": 2, "filename": 2, + "__FILE__": 3, "png": 1, "send_file": 1, "NotFound": 1, @@ -59997,6 +60108,7 @@ "super": 3, "self.register": 2, "extensions": 6, + "nodoc": 3, "added_methods": 2, "extensions.map": 1, "m.public_instance_methods": 1, @@ -60044,7 +60156,192 @@ "Delegator.target.helpers": 1, "self.use": 1, "Delegator.target.use": 1, - "SHEBANG#!python": 1 + "Grit": 1, + "SHEBANG#!ruby": 2, + ".unshift": 1, + "For": 1, + "use/testing": 1, + "no": 1, + "gem": 3, + "require_all": 4, + "glob": 2, + "Jekyll": 3, + "VERSION": 1, + "DEFAULTS": 2, + "Dir.pwd": 3, + "self.configuration": 1, + "override": 3, + "source": 2, + "config_file": 2, + "config": 3, + "YAML.load_file": 1, + "config.is_a": 1, + "stdout.puts": 1, + "err": 1, + "stderr.puts": 2, + "err.to_s": 1, + "DEFAULTS.deep_merge": 1, + ".deep_merge": 1, + "load": 3, + "Pry.config.commands.import": 1, + "Pry": 1, + "ExtendedCommands": 1, + "Experimental": 1, + "Pry.config.pager": 1, + "Pry.config.color": 1, + "Pry.config.commands.alias_command": 1, + "Pry.config.commands.command": 1, + "output.puts": 1, + "Pry.config.history.should_save": 1, + "Pry.config.prompt": 1, + "proc": 2, + "Pry.plugins": 1, + ".disable": 1, + "appraise": 2, + "ActiveSupport": 1, + "Inflector": 1, + "pluralize": 3, + "word": 10, + "apply_inflections": 3, + "inflections.plurals": 1, + "singularize": 2, + "inflections.singulars": 1, + "camelize": 2, + "term": 1, + "uppercase_first_letter": 2, + "string": 4, + "term.to_s": 1, + "string.sub": 2, + "z": 7, + "d": 6, + "*/": 1, + "inflections.acronyms": 1, + ".capitalize": 1, + "inflections.acronym_regex": 2, + "b": 4, + "A": 5, + "Z_": 1, + "string.gsub": 1, + "_": 2, + "/i": 2, + "underscore": 3, + "camel_cased_word": 6, + "camel_cased_word.to_s.dup": 1, + "word.gsub": 4, + "Za": 1, + "Z": 3, + "word.tr": 1, + "word.downcase": 1, + "humanize": 2, + "lower_case_and_underscored_word": 1, + "lower_case_and_underscored_word.to_s.dup": 1, + "inflections.humans.each": 1, + "rule": 4, + "replacement": 4, + "break": 4, + "result.sub": 2, + "result.gsub": 2, + "/_id": 1, + "result.tr": 1, + "w/": 1, + ".upcase": 1, + "titleize": 1, + "": 1, + "capitalize": 1, + "Create": 1, + "of": 1, + "table": 2, + "like": 1, + "Rails": 1, + "does": 1, + "for": 1, + "models": 1, + "to": 1, + "This": 1, + "uses": 1, + "on": 2, + "RawScaledScorer": 1, + "tableize": 2, + "class_name": 2, + "classify": 1, + "table_name": 1, + "table_name.to_s.sub": 1, + "/.*": 1, + "./": 1, + "dasherize": 1, + "underscored_word": 1, + "underscored_word.tr": 1, + "demodulize": 1, + "i": 2, + "path.rindex": 2, + "..": 1, + "deconstantize": 1, + "implementation": 1, + "based": 1, + "one": 1, + "facets": 1, + "id": 1, + "outside": 2, + "inside": 2, + "owned": 1, + "constant": 4, + "constant.ancestors.inject": 1, + "const": 3, + "ancestor": 3, + "Object": 1, + "ancestor.const_defined": 1, + "constant.const_get": 1, + "safe_constantize": 1, + "constantize": 1, + "e.message": 2, + "uninitialized": 1, + "wrong": 1, + "const_regexp": 3, + "e.name.to_s": 1, + "camel_cased_word.to_s": 1, + "ArgumentError": 1, + "/not": 1, + "missing": 1, + "ordinal": 1, + "number": 2, + ".include": 1, + "number.to_i.abs": 2, + "ordinalize": 1, + "parts": 1, + "camel_cased_word.split": 1, + "parts.pop": 1, + "parts.reverse.inject": 1, + "acc": 2, + "part": 1, + "part.empty": 1, + "rules": 1, + "word.to_s.dup": 1, + "word.empty": 1, + "inflections.uncountables.include": 1, + "result.downcase": 1, + "Z/": 1, + "rules.each": 1, + "object": 2, + "@user": 1, + "person": 1, + "attributes": 2, + "username": 1, + "email": 1, + "location": 1, + "created_at": 1, + "registered_at": 1, + "node": 2, + "role": 1, + "user": 1, + "user.is_admin": 1, + "child": 1, + "phone_numbers": 1, + "pnumbers": 1, + "extends": 1, + "node_numbers": 1, + "u": 1, + "partial": 1, + "u.phone_numbers": 1 }, "Rust": { "//": 20, @@ -60539,41 +60836,6 @@ "/": 2 }, "SQL": { - "IF": 13, - "EXISTS": 12, - "(": 131, - "SELECT": 4, - "*": 3, - "FROM": 1, - "DBO.SYSOBJECTS": 1, - "WHERE": 1, - "ID": 2, - "OBJECT_ID": 1, - "N": 7, - ")": 131, - "AND": 1, - "OBJECTPROPERTY": 1, - "id": 22, - "DROP": 3, - "PROCEDURE": 1, - "dbo.AvailableInSearchSel": 2, - "GO": 4, - "CREATE": 10, - "Procedure": 1, - "AvailableInSearchSel": 1, - "AS": 1, - "UNION": 2, - "ALL": 2, - "DB_NAME": 1, - "BEGIN": 1, - "GRANT": 1, - "EXECUTE": 1, - "ON": 1, - "TO": 1, - "[": 1, - "rv": 1, - "]": 1, - "END": 1, "SHOW": 2, "WARNINGS": 2, ";": 31, @@ -60583,9 +60845,15 @@ "for": 15, "table": 17, "articles": 4, + "CREATE": 10, "TABLE": 10, + "IF": 13, "NOT": 46, + "EXISTS": 12, + "(": 131, + "id": 22, "int": 28, + ")": 131, "NULL": 91, "AUTO_INCREMENT": 9, "title": 4, @@ -60649,6 +60917,7 @@ "type": 3, "token": 3, "user_has_challenge_token": 3, + "DROP": 3, "create": 2, "FILIAL": 10, "NUMBER": 1, @@ -60668,6 +60937,7 @@ "PK_ID": 1, "primary": 1, "key": 1, + "ID": 2, "grant": 8, "select": 10, "on": 8, @@ -60680,6 +60950,33 @@ "SIEBEL": 1, "VBIS": 1, "VPORTAL": 1, + "SELECT": 4, + "*": 3, + "FROM": 1, + "DBO.SYSOBJECTS": 1, + "WHERE": 1, + "OBJECT_ID": 1, + "N": 7, + "AND": 1, + "OBJECTPROPERTY": 1, + "PROCEDURE": 1, + "dbo.AvailableInSearchSel": 2, + "GO": 4, + "Procedure": 1, + "AvailableInSearchSel": 1, + "AS": 1, + "UNION": 2, + "ALL": 2, + "DB_NAME": 1, + "BEGIN": 1, + "GRANT": 1, + "EXECUTE": 1, + "ON": 1, + "TO": 1, + "[": 1, + "rv": 1, + "]": 1, + "END": 1, "if": 1, "exists": 1, "from": 2, @@ -60702,17 +60999,12 @@ "now": 1 }, "STON": { + "{": 15, "[": 11, "]": 11, - "{": 15, + "}": 15, "#a": 1, "#b": 1, - "}": 15, - "Rectangle": 1, - "#origin": 1, - "Point": 2, - "-": 2, - "#corner": 1, "TestDomainObject": 1, "#created": 1, "DateAndTime": 2, @@ -60730,6 +61022,11 @@ "ByteArray": 1, "#boolean": 1, "false": 1, + "Rectangle": 1, + "#origin": 1, + "Point": 2, + "-": 2, + "#corner": 1, "ZnResponse": 1, "#headers": 2, "ZnHeaders": 1, @@ -60780,51 +61077,27 @@ "scala": 2, "#": 2, "object": 3, - "Beers": 1, - "extends": 1, - "Application": 1, + "HelloWorld": 1, "{": 21, "def": 10, - "bottles": 3, + "main": 1, "(": 67, - "qty": 12, - "Int": 11, - "f": 4, + "args": 1, + "Array": 1, + "[": 11, "String": 5, + "]": 11, ")": 67, - "//": 29, - "higher": 1, - "-": 5, - "order": 1, - "functions": 2, - "match": 2, - "case": 8, - "+": 49, - "x": 3, - "}": 22, - "beers": 3, - "sing": 3, - "implicit": 3, - "song": 3, - "takeOne": 2, - "nextQty": 2, - "nested": 1, - "if": 2, - "else": 2, - "refrain": 2, - ".capitalize": 1, - "tail": 1, - "recursion": 1, - "val": 6, - "headOfSong": 1, "println": 8, - "parameter": 1, + "}": 22, "name": 4, "version": 1, "organization": 1, "libraryDependencies": 3, + "+": 49, "%": 12, "Seq": 3, + "val": 6, "libosmVersion": 4, "from": 1, "maxErrors": 1, @@ -60926,6 +61199,36 @@ "Credentials": 2, "Path.userHome": 1, "/": 2, + "Beers": 1, + "extends": 1, + "Application": 1, + "bottles": 3, + "qty": 12, + "Int": 11, + "f": 4, + "//": 29, + "higher": 1, + "-": 5, + "order": 1, + "functions": 2, + "match": 2, + "case": 8, + "x": 3, + "beers": 3, + "sing": 3, + "implicit": 3, + "song": 3, + "takeOne": 2, + "nextQty": 2, + "nested": 1, + "if": 2, + "else": 2, + "refrain": 2, + ".capitalize": 1, + "tail": 1, + "recursion": 1, + "headOfSong": 1, + "parameter": 1, "math.random": 1, "scala.language.postfixOps": 1, "scala.util._": 1, @@ -60948,9 +61251,7 @@ "Scala": 1, "worksheet": 1, "retry": 3, - "[": 11, "T": 8, - "]": 11, "n": 3, "block": 8, "Future": 5, @@ -60987,11 +61288,7 @@ ".foreach": 1, "Iteration": 5, "java.lang.Exception": 1, - "Hi": 10, - "HelloWorld": 1, - "main": 1, - "args": 1, - "Array": 1 + "Hi": 10 }, "Scaml": { "%": 1, @@ -61198,21 +61495,22 @@ "exported": 1 }, "Scilab": { + "disp": 1, + "(": 7, + "%": 4, + "pi": 3, + ")": 7, + ";": 7, "function": 1, "[": 1, "a": 4, "b": 4, "]": 1, "myfunction": 1, - "(": 7, "d": 2, "e": 4, "f": 2, - ")": 7, "+": 5, - "%": 4, - "pi": 3, - ";": 7, "cos": 1, "cosh": 1, "if": 1, @@ -61225,48 +61523,486 @@ "end": 1, "myvar": 1, "endfunction": 1, - "disp": 1, "assert_checkequal": 1, "assert_checkfalse": 1 }, "Shell": { - "SHEBANG#!bash": 8, - "typeset": 5, - "-": 391, - "i": 2, - "n": 22, - "bottles": 6, - "no": 16, - "while": 3, - "[": 85, - "]": 85, - "do": 8, + "SHEBANG#!sh": 2, "echo": 71, - "case": 9, - "{": 63, - "}": 61, - "in": 25, + "SHEBANG#!bash": 8, + "#": 53, + "declare": 22, + "-": 391, + "r": 17, + "sbt_release_version": 2, + "sbt_snapshot_version": 2, + "SNAPSHOT": 3, + "unset": 10, + "sbt_jar": 3, + "sbt_dir": 2, + "sbt_create": 2, + "sbt_snapshot": 1, + "sbt_launch_dir": 3, + "scala_version": 3, + "java_home": 1, + "sbt_explicit_version": 7, + "verbose": 6, + "debug": 11, + "quiet": 6, + "build_props_sbt": 3, + "(": 107, ")": 154, - "%": 5, - "s": 14, - ";": 138, - "esac": 7, - "done": 8, - "exit": 10, - "/usr/bin/clear": 2, - "##": 28, + "{": 63, "if": 39, - "z": 12, + "[": 85, + "f": 68, + "project/build.properties": 9, + "]": 85, + ";": 138, "then": 41, - "export": 25, - "SCREENDIR": 2, + "versionLine": 2, + "grep": 8, + "sbt.version": 3, + "versionString": 3, + "versionLine##sbt.version": 1, + "}": 61, "fi": 34, + "update_build_props_sbt": 2, + "local": 22, + "ver": 5, + "old": 4, + "return": 3, + "elif": 4, + "perl": 3, + "pi": 1, + "e": 4, + "q": 8, + "||": 12, + "Updated": 1, + "file": 9, + "setting": 2, + "to": 33, + "Previous": 1, + "value": 1, + "was": 1, + "sbt_version": 8, + "n": 22, + "else": 10, + "v": 11, + "echoerr": 3, + "&": 5, + "vlog": 1, + "&&": 65, + "dlog": 8, + "get_script_path": 2, + "path": 13, + "L": 1, + "target": 1, + "readlink": 1, + "get_mem_opts": 3, + "mem": 4, + "perm": 6, + "/": 2, + "<": 2, + "codecache": 1, + "die": 2, + "exit": 10, + "make_url": 3, + "groupid": 1, + "category": 1, + "version": 12, + "default_jvm_opts": 1, + "default_sbt_opts": 1, + "default_sbt_mem": 2, + "noshare_opts": 1, + "sbt_opts_file": 1, + "jvm_opts_file": 1, + "latest_28": 1, + "latest_29": 1, + "latest_210": 1, + "script_path": 1, + "script_dir": 1, + "script_name": 2, + "java_cmd": 2, + "java": 2, + "sbt_mem": 5, + "a": 12, + "residual_args": 4, + "java_args": 3, + "scalac_args": 4, + "sbt_commands": 2, + "build_props_scala": 1, + "build.scala.versions": 1, + "versionLine##build.scala.versions": 1, + "%": 5, + ".*": 2, + "execRunner": 2, + "for": 7, + "arg": 3, + "do": 8, + "printf": 4, + "|": 17, + "done": 8, + "exec": 3, + "sbt_groupid": 3, + "case": 9, + "in": 25, + "*": 11, + "org.scala": 4, + "tools.sbt": 3, + "sbt": 18, + "esac": 7, + "sbt_artifactory_list": 2, + "version0": 2, + "url": 4, + "curl": 8, + "s": 14, + "list": 3, + "only": 6, + "F": 1, + "pe": 1, + "make_release_url": 2, + "releases": 1, + "make_snapshot_url": 2, + "snapshots": 1, + "head": 1, + "/dev/null": 6, + "jar_url": 1, + "jar_file": 1, + "download_url": 2, + "jar": 3, + "mkdir": 2, + "p": 2, + "dirname": 1, + "which": 10, + "fail": 1, + "silent": 1, + "output": 1, + "wget": 2, + "O": 1, + "acquire_sbt_jar": 1, + "sbt_url": 1, + "usage": 2, + "cat": 3, + "<<": 2, + "EOM": 3, + "Usage": 1, + "options": 8, + "h": 3, + "help": 5, + "print": 1, + "this": 6, + "message": 1, + "runner": 1, + "is": 11, + "chattier": 1, + "d": 9, + "set": 21, + "log": 2, + "level": 2, + "Debug": 1, + "Error": 1, + "no": 16, + "colors": 2, + "disable": 1, + "ANSI": 1, + "color": 1, + "codes": 1, + "create": 2, + "start": 1, + "even": 3, + "current": 1, + "directory": 5, + "contains": 2, + "project": 1, + "dir": 3, + "": 3, + "global": 1, + "settings/plugins": 1, + "default": 4, + "/.sbt/": 1, + "": 1, + "boot": 3, + "shared": 1, + "/.sbt/boot": 1, + "series": 1, + "ivy": 2, + "Ivy": 1, + "repository": 3, + "/.ivy2": 1, + "": 1, + "memory": 3, + "share": 2, + "use": 1, + "all": 1, + "caches": 1, + "sharing": 1, + "offline": 3, + "put": 1, + "mode": 2, + "jvm": 2, + "": 1, + "Turn": 1, + "on": 4, + "JVM": 1, + "debugging": 1, + "open": 1, + "at": 1, + "the": 17, + "given": 2, + "port.": 1, + "batch": 2, + "Disable": 1, + "interactive": 1, + "The": 1, + "way": 1, + "accomplish": 1, + "pre": 1, + "there": 2, + "build.properties": 1, + "an": 1, + "property": 1, + "update": 2, + "disk.": 1, + "That": 1, + "scalacOptions": 3, + "S": 2, + "stripped": 1, + "In": 1, + "of": 6, + "duplicated": 1, + "or": 3, + "conflicting": 1, + "order": 1, + "above": 1, + "shows": 1, + "precedence": 1, + "JAVA_OPTS": 1, + "lowest": 1, + "command": 5, + "line": 1, + "highest.": 1, + "addJava": 9, + "addSbt": 12, + "addScalac": 2, + "addResidual": 2, + "addResolver": 1, + "addDebugger": 2, + "get_jvm_opts": 2, + "process_args": 2, + "require_arg": 12, + "type": 5, + "opt": 3, + "z": 12, + "while": 3, + "gt": 1, + "shift": 28, + "integer": 1, + "inc": 1, + "port": 1, + "true": 2, + "snapshot": 1, + "launch": 1, + "scala": 3, + "home": 2, + "D*": 1, + "J*": 1, + "S*": 1, + "sbtargs": 3, + "IFS": 1, + "read": 1, + "<\"$sbt_opts_file\">": 1, + "process": 1, + "combined": 1, + "args": 2, + "reset": 1, + "residuals": 1, + "argumentCount=": 1, + "we": 1, + "were": 1, + "any": 1, + "opts": 1, + "eq": 1, + "0": 1, + "ThisBuild": 1, + "Update": 1, + "build": 2, + "properties": 1, + "disk": 5, + "explicit": 1, + "gives": 1, + "us": 1, + "choice": 1, + "Detected": 1, + "Overriding": 1, + "alert": 1, + "them": 1, + "stuff": 3, + "here": 1, + "argumentCount": 1, + "./build.sbt": 1, + "./project": 1, + "pwd": 1, + "doesn": 1, + "t": 3, + "understand": 1, + "iflast": 1, + "#residual_args": 1, + "@": 3, + "name": 1, + "foodforthought.jpg": 1, + "name##*fo": 1, + "rvm_ignore_rvmrc": 1, + "rvmrc": 3, + "rvm_rvmrc_files": 3, + "ef": 1, + "+": 1, + "GREP_OPTIONS": 1, + "source": 7, + "export": 25, + "rvm_path": 4, + "UID": 1, + "rvm_is_not_a_shell_function": 2, + "rvm_path/scripts": 1, + "rvm": 1, + "typeset": 5, + "i": 2, + "bottles": 6, + "Bash": 3, + "script": 1, + "dotfile": 1, + "does": 1, + "lot": 1, + "fun": 2, + "like": 1, + "turning": 1, + "normal": 1, + "dotfiles": 1, + "eg": 1, + ".bashrc": 1, + "into": 3, + "symlinks": 1, + "git": 16, + "pull": 3, + "away": 1, + "optionally": 1, + "moving": 1, + "files": 1, + "so": 1, + "that": 1, + "they": 1, + "can": 3, + "be": 3, + "preserved": 1, + "up": 1, + "cron": 1, + "job": 3, + "automate": 1, + "aforementioned": 1, + "and": 5, + "maybe": 1, + "some": 1, + "more": 3, + "shopt": 13, + "nocasematch": 1, + "This": 1, + "makes": 1, + "pattern": 1, + "matching": 1, + "insensitive": 1, + "POSTFIX": 1, + "URL": 1, + "PUSHURL": 1, + "overwrite": 3, + "print_help": 2, + "k": 1, + "keep": 3, + "false": 2, + "o": 3, + "continue": 1, + "mv": 1, + "rm": 2, + "ln": 1, + "config": 4, + "remote.origin.url": 1, + "remote.origin.pushurl": 1, + "crontab": 1, + ".jobs.cron": 1, + "/.bashrc": 3, + "x": 1, + "system": 1, + "rbenv": 2, + "versions": 1, + "bare": 1, + "prefix": 1, + "SHEBANG#!zsh": 2, + "##############################################################################": 16, + "#Import": 2, + "shell": 4, + "agnostic": 2, + "Zsh": 2, + "environment": 2, + "/.profile": 2, + "HISTSIZE": 2, + "#How": 2, + "many": 2, + "lines": 2, + "history": 18, + "HISTFILE": 2, + "/.zsh_history": 2, + "#Where": 2, + "save": 4, + "SAVEHIST": 2, + "#Number": 2, + "entries": 2, + "HISTDUP": 2, + "erase": 2, + "#Erase": 2, + "duplicates": 2, + "setopt": 8, + "appendhistory": 2, + "#Append": 2, + "overwriting": 2, + "sharehistory": 2, + "#Share": 2, + "across": 2, + "terminals": 2, + "incappendhistory": 2, + "#Immediately": 2, + "append": 2, + "not": 2, + "just": 2, + "when": 2, + "term": 2, + "killed": 2, + "#.": 2, + "/.dotfiles/z": 4, + "zsh/z.sh": 2, + "#function": 2, + "precmd": 2, + ".": 5, + "rupa/z.sh": 2, + "/usr/bin/clear": 2, "PATH": 14, + "fpath": 6, + "HOME/.zsh/func": 2, + "U": 2, + "umask": 2, + "/opt/local/bin": 2, + "/opt/local/sbin": 2, + "/bin": 4, + "/usr/bin": 8, + "prompt": 2, + "endif": 2, + "dirpersiststore": 2, + "stty": 2, + "istrip": 2, + "##": 28, + "SCREENDIR": 2, "/usr/local/bin": 6, "/usr/local/sbin": 6, "/usr/xpg4/bin": 4, "/usr/sbin": 6, - "/usr/bin": 8, "/usr/sfw/bin": 4, "/usr/ccs/bin": 4, "/usr/openwin/bin": 4, @@ -61279,41 +62015,109 @@ "TERM": 4, "COLORTERM": 2, "CLICOLOR": 2, - "#": 53, - "can": 3, - "be": 3, - "set": 21, - "to": 33, "anything": 2, "actually": 2, "DISPLAY": 2, - "r": 17, - "&&": 65, - ".": 5, + "pkgname": 1, + "stud": 4, + "pkgver": 1, + "pkgrel": 1, + "pkgdesc": 1, + "arch": 1, + "i686": 1, + "x86_64": 1, + "license": 1, + "depends": 1, + "libev": 1, + "openssl": 1, + "makedepends": 1, + "provides": 1, + "conflicts": 1, + "_gitroot": 1, + "https": 2, + "//github.com/bumptech/stud.git": 1, + "_gitname": 1, + "cd": 11, + "msg": 4, + "origin": 1, + "clone": 5, + "rf": 1, + "make": 6, + "package": 1, + "PREFIX": 1, + "/usr": 1, + "DESTDIR": 1, + "install": 8, + "Dm755": 1, + "init.stud": 1, + "docker": 1, + "from": 1, + "ubuntu": 1, + "maintainer": 1, + "Solomon": 1, + "Hykes": 1, + "": 1, + "run": 13, + "apt": 6, + "get": 6, + "y": 5, + "//go.googlecode.com/files/go1.1.1.linux": 1, + "amd64.tar.gz": 1, + "tar": 1, + "C": 1, + "/usr/local": 1, + "xz": 1, + "env": 4, + "/usr/local/go/bin": 2, + "/sbin": 2, + "GOPATH": 1, + "/go": 1, + "CGO_ENABLED": 1, + "/tmp": 1, + "t.go": 1, + "go": 2, + "test": 1, + "PKG": 12, + "github.com/kr/pty": 1, + "REV": 6, + "c699": 1, + "http": 3, + "//": 3, + "/go/src/": 6, + "checkout": 3, + "github.com/gorilla/context/": 1, + "d61e5": 1, + "github.com/gorilla/mux/": 1, + "b36453141c": 1, + "iptables": 1, + "/etc/apt/sources.list": 1, + "lxc": 1, + "aufs": 1, + "tools": 1, + "add": 1, + "/go/src/github.com/dotcloud/docker": 1, + "/go/src/github.com/dotcloud/docker/docker": 1, + "ldflags": 1, + "/go/bin": 1, + "cmd": 1, "function": 6, "ls": 6, - "command": 5, "Fh": 2, "l": 8, - "list": 3, "long": 2, "format...": 2, "ll": 2, - "|": 17, "less": 2, "XF": 2, "pipe": 2, - "into": 3, "#CDPATH": 2, "HISTIGNORE": 2, "HISTCONTROL": 2, "ignoreboth": 2, - "shopt": 13, "cdspell": 2, "extglob": 2, "progcomp": 2, "complete": 82, - "f": 68, "X": 54, "bunzip2": 2, "bzcat": 2, @@ -61389,7 +62193,6 @@ "opera": 2, "w3m": 2, "galeon": 2, - "curl": 8, "dillo": 2, "elinks": 2, "links": 2, @@ -61400,7 +62203,6 @@ "user": 2, "commands": 8, "see": 4, - "only": 6, "users": 2, "A": 10, "stopped": 4, @@ -61413,64 +62215,38 @@ "fg": 2, "disown": 2, "other": 2, - "job": 3, - "v": 11, "readonly": 4, - "unset": 10, - "and": 5, - "shell": 4, "variables": 2, - "setopt": 8, - "options": 8, "helptopic": 2, - "help": 5, "helptopics": 2, - "a": 12, "unalias": 4, "aliases": 2, "binding": 2, "bind": 4, "readline": 2, "bindings": 2, - "(": 107, - "make": 6, - "this": 6, - "more": 3, "intelligent": 2, "c": 2, - "type": 5, - "which": 10, "man": 6, "#sudo": 2, - "on": 4, - "d": 9, "pushd": 2, - "cd": 11, "rmdir": 2, "Make": 2, - "directory": 5, "directories": 2, "W": 2, "alias": 42, "filenames": 2, - "for": 7, "PS1": 2, "..": 2, "cd..": 2, - "t": 3, "csh": 2, - "is": 11, "same": 2, "as": 2, "bash...": 2, "quit": 2, - "q": 8, - "even": 3, "shorter": 2, "D": 2, "rehash": 2, - "source": 7, - "/.bashrc": 3, "after": 2, "I": 2, "edit": 2, @@ -61480,497 +62256,14 @@ "sed": 2, "awk": 2, "diff": 2, - "grep": 8, "find": 2, "ps": 2, "whoami": 2, "ping": 2, "histappend": 2, - "PROMPT_COMMAND": 2, - "umask": 2, - "path": 13, - "/opt/local/bin": 2, - "/opt/local/sbin": 2, - "/bin": 4, - "prompt": 2, - "history": 18, - "endif": 2, - "stty": 2, - "istrip": 2, - "dirpersiststore": 2, - "##############################################################################": 16, - "#Import": 2, - "the": 17, - "agnostic": 2, - "Bash": 3, - "or": 3, - "Zsh": 2, - "environment": 2, - "config": 4, - "/.profile": 2, - "HISTSIZE": 2, - "#How": 2, - "many": 2, - "lines": 2, - "of": 6, - "keep": 3, - "memory": 3, - "HISTFILE": 2, - "/.zsh_history": 2, - "#Where": 2, - "save": 4, - "disk": 5, - "SAVEHIST": 2, - "#Number": 2, - "entries": 2, - "HISTDUP": 2, - "erase": 2, - "#Erase": 2, - "duplicates": 2, - "file": 9, - "appendhistory": 2, - "#Append": 2, - "overwriting": 2, - "sharehistory": 2, - "#Share": 2, - "across": 2, - "terminals": 2, - "incappendhistory": 2, - "#Immediately": 2, - "append": 2, - "not": 2, - "just": 2, - "when": 2, - "term": 2, - "killed": 2, - "#.": 2, - "/.dotfiles/z": 4, - "zsh/z.sh": 2, - "#function": 2, - "precmd": 2, - "rupa/z.sh": 2, - "fpath": 6, - "HOME/.zsh/func": 2, - "U": 2, - "docker": 1, - "version": 12, - "from": 1, - "ubuntu": 1, - "maintainer": 1, - "Solomon": 1, - "Hykes": 1, - "": 1, - "run": 13, - "apt": 6, - "get": 6, - "install": 8, - "y": 5, - "git": 16, - "https": 2, - "//go.googlecode.com/files/go1.1.1.linux": 1, - "amd64.tar.gz": 1, - "tar": 1, - "C": 1, - "/usr/local": 1, - "xz": 1, - "env": 4, - "/usr/local/go/bin": 2, - "/sbin": 2, - "GOPATH": 1, - "/go": 1, - "CGO_ENABLED": 1, - "/tmp": 1, - "t.go": 1, - "go": 2, - "test": 1, - "PKG": 12, - "github.com/kr/pty": 1, - "REV": 6, - "c699": 1, - "clone": 5, - "http": 3, - "//": 3, - "/go/src/": 6, - "checkout": 3, - "github.com/gorilla/context/": 1, - "d61e5": 1, - "github.com/gorilla/mux/": 1, - "b36453141c": 1, - "iptables": 1, - "/etc/apt/sources.list": 1, - "update": 2, - "lxc": 1, - "aufs": 1, - "tools": 1, - "add": 1, - "/go/src/github.com/dotcloud/docker": 1, - "/go/src/github.com/dotcloud/docker/docker": 1, - "ldflags": 1, - "/go/bin": 1, - "cmd": 1, - "pkgname": 1, - "stud": 4, - "pkgver": 1, - "pkgrel": 1, - "pkgdesc": 1, - "arch": 1, - "i686": 1, - "x86_64": 1, - "url": 4, - "license": 1, - "depends": 1, - "libev": 1, - "openssl": 1, - "makedepends": 1, - "provides": 1, - "conflicts": 1, - "_gitroot": 1, - "//github.com/bumptech/stud.git": 1, - "_gitname": 1, - "build": 2, - "msg": 4, - "pull": 3, - "origin": 1, - "else": 10, - "rm": 2, - "rf": 1, - "package": 1, - "PREFIX": 1, - "/usr": 1, - "DESTDIR": 1, - "Dm755": 1, - "init.stud": 1, - "mkdir": 2, - "p": 2, - "script": 1, - "dotfile": 1, - "repository": 3, - "does": 1, - "lot": 1, - "fun": 2, - "stuff": 3, - "like": 1, - "turning": 1, - "normal": 1, - "dotfiles": 1, - "eg": 1, - ".bashrc": 1, - "symlinks": 1, - "away": 1, - "optionally": 1, - "moving": 1, - "old": 4, - "files": 1, - "so": 1, - "that": 1, - "they": 1, - "preserved": 1, - "setting": 2, - "up": 1, - "cron": 1, - "automate": 1, - "aforementioned": 1, - "maybe": 1, - "some": 1, - "nocasematch": 1, - "This": 1, - "makes": 1, - "pattern": 1, - "matching": 1, - "insensitive": 1, - "POSTFIX": 1, - "URL": 1, - "PUSHURL": 1, - "overwrite": 3, - "true": 2, - "print_help": 2, - "e": 4, - "opt": 3, - "@": 3, - "k": 1, - "local": 22, - "false": 2, - "h": 3, - ".*": 2, - "o": 3, - "continue": 1, - "mv": 1, - "ln": 1, - "remote.origin.url": 1, - "remote.origin.pushurl": 1, - "crontab": 1, - ".jobs.cron": 1, - "x": 1, - "system": 1, - "exec": 3, - "rbenv": 2, - "versions": 1, - "bare": 1, - "&": 5, - "prefix": 1, - "/dev/null": 6, - "rvm_ignore_rvmrc": 1, - "declare": 22, - "rvmrc": 3, - "rvm_rvmrc_files": 3, - "ef": 1, - "+": 1, - "GREP_OPTIONS": 1, - "printf": 4, - "rvm_path": 4, - "UID": 1, - "elif": 4, - "rvm_is_not_a_shell_function": 2, - "rvm_path/scripts": 1, - "rvm": 1, - "sbt_release_version": 2, - "sbt_snapshot_version": 2, - "SNAPSHOT": 3, - "sbt_jar": 3, - "sbt_dir": 2, - "sbt_create": 2, - "sbt_snapshot": 1, - "sbt_launch_dir": 3, - "scala_version": 3, - "java_home": 1, - "sbt_explicit_version": 7, - "verbose": 6, - "debug": 11, - "quiet": 6, - "build_props_sbt": 3, - "project/build.properties": 9, - "versionLine": 2, - "sbt.version": 3, - "versionString": 3, - "versionLine##sbt.version": 1, - "update_build_props_sbt": 2, - "ver": 5, - "return": 3, - "perl": 3, - "pi": 1, - "||": 12, - "Updated": 1, - "Previous": 1, - "value": 1, - "was": 1, - "sbt_version": 8, - "echoerr": 3, - "vlog": 1, - "dlog": 8, - "get_script_path": 2, - "L": 1, - "target": 1, - "readlink": 1, - "get_mem_opts": 3, - "mem": 4, - "perm": 6, - "/": 2, - "<": 2, - "codecache": 1, - "die": 2, - "make_url": 3, - "groupid": 1, - "category": 1, - "default_jvm_opts": 1, - "default_sbt_opts": 1, - "default_sbt_mem": 2, - "noshare_opts": 1, - "sbt_opts_file": 1, - "jvm_opts_file": 1, - "latest_28": 1, - "latest_29": 1, - "latest_210": 1, - "script_path": 1, - "script_dir": 1, - "script_name": 2, - "java_cmd": 2, - "java": 2, - "sbt_mem": 5, - "residual_args": 4, - "java_args": 3, - "scalac_args": 4, - "sbt_commands": 2, - "build_props_scala": 1, - "build.scala.versions": 1, - "versionLine##build.scala.versions": 1, - "execRunner": 2, - "arg": 3, - "sbt_groupid": 3, - "*": 11, - "org.scala": 4, - "tools.sbt": 3, - "sbt": 18, - "sbt_artifactory_list": 2, - "version0": 2, - "F": 1, - "pe": 1, - "make_release_url": 2, - "releases": 1, - "make_snapshot_url": 2, - "snapshots": 1, - "head": 1, - "jar_url": 1, - "jar_file": 1, - "download_url": 2, - "jar": 3, - "dirname": 1, - "fail": 1, - "silent": 1, - "output": 1, - "wget": 2, - "O": 1, - "acquire_sbt_jar": 1, - "sbt_url": 1, - "usage": 2, - "cat": 3, - "<<": 2, - "EOM": 3, - "Usage": 1, - "print": 1, - "message": 1, - "runner": 1, - "chattier": 1, - "log": 2, - "level": 2, - "Debug": 1, - "Error": 1, - "colors": 2, - "disable": 1, - "ANSI": 1, - "color": 1, - "codes": 1, - "create": 2, - "start": 1, - "current": 1, - "contains": 2, - "project": 1, - "dir": 3, - "": 3, - "global": 1, - "settings/plugins": 1, - "default": 4, - "/.sbt/": 1, - "": 1, - "boot": 3, - "shared": 1, - "/.sbt/boot": 1, - "series": 1, - "ivy": 2, - "Ivy": 1, - "/.ivy2": 1, - "": 1, - "share": 2, - "use": 1, - "all": 1, - "caches": 1, - "sharing": 1, - "offline": 3, - "put": 1, - "mode": 2, - "jvm": 2, - "": 1, - "Turn": 1, - "JVM": 1, - "debugging": 1, - "open": 1, - "at": 1, - "given": 2, - "port.": 1, - "batch": 2, - "Disable": 1, - "interactive": 1, - "The": 1, - "way": 1, - "accomplish": 1, - "pre": 1, - "there": 2, - "build.properties": 1, - "an": 1, - "property": 1, - "disk.": 1, - "That": 1, - "scalacOptions": 3, - "S": 2, - "stripped": 1, - "In": 1, - "duplicated": 1, - "conflicting": 1, - "order": 1, - "above": 1, - "shows": 1, - "precedence": 1, - "JAVA_OPTS": 1, - "lowest": 1, - "line": 1, - "highest.": 1, - "addJava": 9, - "addSbt": 12, - "addScalac": 2, - "addResidual": 2, - "addResolver": 1, - "addDebugger": 2, - "get_jvm_opts": 2, - "process_args": 2, - "require_arg": 12, - "gt": 1, - "shift": 28, - "integer": 1, - "inc": 1, - "port": 1, - "snapshot": 1, - "launch": 1, - "scala": 3, - "home": 2, - "D*": 1, - "J*": 1, - "S*": 1, - "sbtargs": 3, - "IFS": 1, - "read": 1, - "<\"$sbt_opts_file\">": 1, - "process": 1, - "combined": 1, - "args": 2, - "reset": 1, - "residuals": 1, - "argumentCount=": 1, - "we": 1, - "were": 1, - "any": 1, - "opts": 1, - "eq": 1, - "0": 1, - "ThisBuild": 1, - "Update": 1, - "properties": 1, - "explicit": 1, - "gives": 1, - "us": 1, - "choice": 1, - "Detected": 1, - "Overriding": 1, - "alert": 1, - "them": 1, - "here": 1, - "argumentCount": 1, - "./build.sbt": 1, - "./project": 1, - "pwd": 1, - "doesn": 1, - "understand": 1, - "iflast": 1, - "#residual_args": 1, - "SHEBANG#!sh": 2, - "SHEBANG#!zsh": 2, - "name": 1, - "foodforthought.jpg": 1, - "name##*fo": 1 + "PROMPT_COMMAND": 2 }, "ShellSession": { - "echo": 2, - "FOOBAR": 2, - "Hello": 2, - "World": 2, "gem": 4, "install": 4, "nokogiri": 6, @@ -62109,7 +62402,11 @@ "Installing": 2, "ri": 1, "documentation": 2, - "RDoc": 1 + "RDoc": 1, + "echo": 2, + "FOOBAR": 2, + "Hello": 2, + "World": 2 }, "Shen": { "*": 47, @@ -62477,27 +62774,6 @@ "when": 1, "wrapper": 1, "function": 1, - "html.shen": 1, - "html": 2, - "generation": 1, - "functions": 1, - "shen": 1, - "The": 1, - "standard": 1, - "lisp": 1, - "conversion": 1, - "tool": 1, - "suite.": 1, - "Follows": 1, - "some": 1, - "convertions": 1, - "Clojure": 1, - "tasks": 1, - "stuff": 1, - "todo1": 1, - "today": 1, - "attributes": 1, - "AS": 1, "load": 1, "JSON": 1, "Lexer": 1, @@ -62543,7 +62819,28 @@ "tokenise": 1, "JSONString": 2, "CharList": 2, - "explode": 1 + "explode": 1, + "html.shen": 1, + "html": 2, + "generation": 1, + "functions": 1, + "shen": 1, + "The": 1, + "standard": 1, + "lisp": 1, + "conversion": 1, + "tool": 1, + "suite.": 1, + "Follows": 1, + "some": 1, + "convertions": 1, + "Clojure": 1, + "tasks": 1, + "stuff": 1, + "todo1": 1, + "today": 1, + "attributes": 1, + "AS": 1 }, "Slash": { "<%>": 1, @@ -62684,8 +62981,65 @@ "}": 2 }, "Smalltalk": { - "Object": 1, + "tests": 2, + "testSimpleChainMatches": 1, + "|": 18, + "e": 11, + "eCtrl": 3, + "self": 25, + "eventKey": 3, + "e.": 1, + "ctrl": 5, + "true.": 1, + "assert": 2, + "(": 19, + ")": 19, + "matches": 4, + "{": 4, + "}": 4, + ".": 16, + "eCtrl.": 2, + "deny": 2, + "a": 1, + "Koan": 1, "subclass": 2, + "TestBasic": 1, + "[": 18, + "": 1, + "A": 1, + "collection": 1, + "of": 1, + "introductory": 1, + "testDeclarationAndAssignment": 1, + "declaration": 2, + "anotherDeclaration": 2, + "_": 1, + "expect": 10, + "fillMeIn": 10, + "toEqual": 10, + "declaration.": 1, + "anotherDeclaration.": 1, + "]": 18, + "testEqualSignIsNotAnAssignmentOperator": 1, + "variableA": 6, + "variableB": 5, + "value": 2, + "variableB.": 2, + "testMultipleStatementsInASingleLine": 1, + "variableC": 2, + "variableA.": 1, + "variableC.": 1, + "testInequality": 1, + "testLogicalOr": 1, + "expression": 4, + "<": 2, + "expression.": 2, + "testLogicalAnd": 1, + "&": 1, + "testNot": 1, + "true": 2, + "not.": 1, + "Object": 1, "#Philosophers": 1, "instanceVariableNames": 1, "classVariableNames": 1, @@ -62695,26 +63049,19 @@ "class": 1, "methodsFor": 2, "new": 4, - "self": 25, "shouldNotImplement": 1, "quantity": 2, "super": 1, "initialize": 3, "dine": 4, "seconds": 2, - "(": 19, "Delay": 3, "forSeconds": 1, - ")": 19, "wait.": 5, "philosophers": 2, "do": 1, - "[": 18, "each": 5, - "|": 18, "terminate": 1, - "]": 18, - ".": 16, "size": 4, "leftFork": 6, "n": 11, @@ -62740,7 +63087,6 @@ "status": 8, "n.": 2, "printString": 1, - "true": 2, "whileTrue": 1, "Transcript": 5, "nextPutAll": 5, @@ -62757,56 +63103,7 @@ "userBackgroundPriority": 1, "name": 1, "resume": 1, - "yourself": 1, - "Koan": 1, - "TestBasic": 1, - "": 1, - "A": 1, - "collection": 1, - "of": 1, - "introductory": 1, - "tests": 2, - "testDeclarationAndAssignment": 1, - "declaration": 2, - "anotherDeclaration": 2, - "_": 1, - "expect": 10, - "fillMeIn": 10, - "toEqual": 10, - "declaration.": 1, - "anotherDeclaration.": 1, - "testEqualSignIsNotAnAssignmentOperator": 1, - "variableA": 6, - "variableB": 5, - "value": 2, - "variableB.": 2, - "testMultipleStatementsInASingleLine": 1, - "variableC": 2, - "variableA.": 1, - "variableC.": 1, - "testInequality": 1, - "testLogicalOr": 1, - "expression": 4, - "<": 2, - "expression.": 2, - "testLogicalAnd": 1, - "&": 1, - "testNot": 1, - "not.": 1, - "testSimpleChainMatches": 1, - "e": 11, - "eCtrl": 3, - "eventKey": 3, - "e.": 1, - "ctrl": 5, - "true.": 1, - "assert": 2, - "matches": 4, - "{": 4, - "}": 4, - "eCtrl.": 2, - "deny": 2, - "a": 1 + "yourself": 1 }, "SourcePawn": { "//#define": 1, @@ -63250,14 +63547,6 @@ "Lazy": 2, "LazyFn": 4, "LazyMemo": 2, - "signature": 2, - "sig": 2, - "LAZY": 1, - "bool": 9, - "string": 14, - "*": 9, - "order": 2, - "b": 58, "functor": 2, "Main": 1, "S": 2, @@ -63277,6 +63566,7 @@ "int": 1, "OptPred": 1, "Target": 1, + "string": 14, "Yes": 1, "Show": 1, "Anns": 1, @@ -63296,6 +63586,7 @@ "ccOpts": 6, "linkOpts": 6, "buildConstants": 2, + "bool": 9, "debugRuntime": 3, "debugFormat": 5, "Dwarf": 3, @@ -63442,6 +63733,7 @@ "Coalesce": 1, "limit": 1, "Bool": 10, + "b": 58, "closureConvertGlobalize": 1, "closureConvertShrink": 1, "String.concatWith": 2, @@ -63744,6 +64036,7 @@ "CommandLine.arguments": 1, "RedBlackTree": 1, "key": 16, + "*": 9, "entry": 12, "dict": 17, "Empty": 15, @@ -63787,31 +64080,72 @@ "new": 1, "insert": 2, "table": 14, - "clear": 1 + "clear": 1, + "signature": 2, + "sig": 2, + "LAZY": 1, + "order": 2 }, "Stata": { "local": 6, - "inname": 1, - "outname": 1, - "program": 2, - "hello": 1, - "vers": 1, - "display": 1, - "end": 4, - "{": 441, - "*": 25, - "version": 2, - "mar2014": 1, - "}": 440, - "...": 30, - "Hello": 1, - "world": 1, - "p_end": 47, "MAXDIM": 1, + "*": 25, + "Setup": 1, + "sysuse": 1, + "auto": 1, + "Fit": 2, + "a": 30, + "linear": 2, + "regression": 2, + "regress": 5, + "mpg": 1, + "weight": 4, + "foreign": 2, + "better": 1, + "from": 6, + "physics": 1, + "standpoint": 1, + "gen": 1, + "gp100m": 2, + "/mpg": 1, + "Obtain": 1, + "beta": 2, + "coefficients": 1, + "without": 2, + "refitting": 1, + "model": 1, + "Suppress": 1, + "intercept": 1, + "term": 1, + "length": 3, + "noconstant": 1, + "Model": 1, + "already": 2, + "has": 6, + "constant": 2, + "bn.foreign": 1, + "hascons": 1, + "numeric": 4, + "matrix": 3, + "tanh": 1, + "(": 60, + "u": 3, + ")": 61, + "{": 441, + "eu": 4, + "emu": 4, + "exp": 2, + "-": 42, + "return": 1, + "/": 1, + "+": 2, + "}": 440, "smcl": 1, + "version": 2, "Matthew": 2, "White": 2, "jan2014": 1, + "...": 30, "title": 7, "Title": 1, "phang": 4, @@ -63819,9 +64153,7 @@ "odkmeta": 17, "hline": 1, "Create": 4, - "a": 30, "do": 22, - "-": 42, "file": 18, "to": 23, "import": 9, @@ -63837,9 +64169,7 @@ "filename": 3, "opt": 25, "csv": 9, - "(": 60, "csvfile": 3, - ")": 61, "Using": 7, "histogram": 2, "as": 29, @@ -63874,7 +64204,6 @@ "in": 24, "first": 2, "column": 18, - "+": 2, "synoptset": 5, "tabbed": 4, "synopthdr": 4, @@ -63887,8 +64216,8 @@ ".csv": 2, "that": 21, "contains": 3, + "p_end": 47, "metadata": 5, - "from": 6, "survey": 14, "worksheet": 5, "choices": 10, @@ -63958,7 +64287,6 @@ "minimum": 2, "minus": 1, "#": 6, - "constant": 2, "for": 13, "all": 3, "labels": 8, @@ -64006,7 +64334,6 @@ "can": 1, "be": 12, "removed": 1, - "without": 2, "affecting": 1, "tasks.": 1, "User": 1, @@ -64031,7 +64358,6 @@ "such": 2, "simserial": 1, "will": 9, - "numeric": 4, "even": 1, "if": 10, "they": 2, @@ -64070,7 +64396,6 @@ "often": 1, "much": 1, "longer": 1, - "length": 3, "limit": 1, "These": 2, "differences": 1, @@ -64128,7 +64453,6 @@ "exceptions": 1, "variables.": 1, "error": 4, - "has": 6, "or": 7, "splitting": 2, "would": 1, @@ -64196,6 +64520,7 @@ "commas": 1, "double": 3, "quotes": 3, + "end": 4, "must": 2, "enclosed": 1, "another": 1, @@ -64248,7 +64573,6 @@ "#delimit": 1, "dlgtab": 1, "Other": 1, - "already": 2, "exists.": 1, "examples": 1, "Examples": 1, @@ -64285,6 +64609,7 @@ "She": 1, "collaborated": 1, "structure": 1, + "program": 2, "was": 1, "very": 1, "helpful": 1, @@ -64297,42 +64622,14 @@ "Author": 1, "mwhite@poverty": 1, "action.org": 1, - "Setup": 1, - "sysuse": 1, - "auto": 1, - "Fit": 2, - "linear": 2, - "regression": 2, - "regress": 5, - "mpg": 1, - "weight": 4, - "foreign": 2, - "better": 1, - "physics": 1, - "standpoint": 1, - "gen": 1, - "gp100m": 2, - "/mpg": 1, - "Obtain": 1, - "beta": 2, - "coefficients": 1, - "refitting": 1, - "model": 1, - "Suppress": 1, - "intercept": 1, - "term": 1, - "noconstant": 1, - "Model": 1, - "bn.foreign": 1, - "hascons": 1, - "matrix": 3, - "tanh": 1, - "u": 3, - "eu": 4, - "emu": 4, - "exp": 2, - "return": 1, - "/": 1 + "hello": 1, + "vers": 1, + "display": 1, + "mar2014": 1, + "Hello": 1, + "world": 1, + "inname": 1, + "outname": 1 }, "Stylus": { "border": 6, @@ -64424,150 +64721,87 @@ ".fork": 1 }, "Swift": { + "var": 42, + "n": 5, + "while": 2, + "<": 4, + "{": 77, + "*": 7, + "}": 77, + "m": 5, + "do": 1, "let": 43, + "optionalSquare": 2, + "Square": 7, + "(": 89, + "sideLength": 17, + "name": 21, + ")": 89, + ".sideLength": 1, + "enum": 4, + "Suit": 2, + "case": 21, + "Spades": 1, + "Hearts": 1, + "Diamonds": 1, + "Clubs": 1, + "func": 24, + "simpleDescription": 14, + "-": 21, + "String": 27, + "switch": 4, + "self": 3, + ".Spades": 2, + "return": 30, + ".Hearts": 1, + ".Diamonds": 1, + ".Clubs": 1, + "hearts": 1, + "Suit.Hearts": 1, + "heartsDescription": 1, + "hearts.simpleDescription": 1, + "interestingNumbers": 2, + "[": 18, + "]": 18, + "largest": 4, + "for": 10, + "kind": 1, + "numbers": 6, + "in": 11, + "number": 13, + "if": 6, + "greet": 2, + "day": 1, "apples": 1, "oranges": 1, "appleSummary": 1, "fruitSummary": 1, - "var": 42, - "shoppingList": 3, - "[": 18, - "]": 18, - "occupations": 2, - "emptyArray": 1, - "String": 27, - "(": 89, - ")": 89, - "emptyDictionary": 1, - "Dictionary": 1, - "": 1, - "Float": 1, - "//": 1, - "Went": 1, - "shopping": 1, - "and": 1, - "bought": 1, - "everything.": 1, - "individualScores": 2, - "teamScore": 4, - "for": 10, - "score": 2, - "in": 11, - "{": 77, - "if": 6, - "+": 15, - "}": 77, - "else": 1, - "optionalString": 2, - "nil": 1, - "optionalName": 2, - "greeting": 2, - "name": 21, - "vegetable": 2, - "switch": 4, - "case": 21, - "vegetableComment": 4, - "x": 1, + "struct": 2, + "Card": 2, + "rank": 2, + "Rank": 2, + "suit": 2, + "threeOfSpades": 1, + ".Three": 1, + "threeOfSpadesDescription": 1, + "threeOfSpades.simpleDescription": 1, + "anyCommonElements": 2, + "": 1, + "U": 4, "where": 2, - "x.hasSuffix": 1, - "default": 2, - "interestingNumbers": 2, - "largest": 4, - "kind": 1, - "numbers": 6, - "number": 13, - "n": 5, - "while": 2, - "<": 4, - "*": 7, - "m": 5, - "do": 1, - "firstForLoop": 3, - "i": 6, - "secondForLoop": 3, - ";": 2, - "println": 1, - "func": 24, - "greet": 2, - "day": 1, - "-": 21, - "return": 30, - "getGasPrices": 2, - "Double": 11, - "sumOf": 3, - "Int...": 1, - "Int": 19, - "sum": 3, - "returnFifteen": 2, - "y": 3, - "add": 2, - "makeIncrementer": 2, - "addOne": 2, - "increment": 2, - "hasAnyMatches": 2, - "list": 2, - "condition": 2, + "T": 5, + "Sequence": 2, + "GeneratorType": 3, + "Element": 3, + "Equatable": 1, + "lhs": 2, + "rhs": 2, "Bool": 4, - "item": 4, + "lhsItem": 2, + "rhsItem": 2, "true": 2, "false": 2, - "lessThanTen": 2, - "numbers.map": 2, - "result": 5, - "sort": 1, - "class": 7, - "Shape": 2, - "numberOfSides": 4, - "simpleDescription": 14, - "myVariable": 2, - "myConstant": 1, - "shape": 1, - "shape.numberOfSides": 1, - "shapeDescription": 1, - "shape.simpleDescription": 1, - "NamedShape": 3, - "init": 4, - "self.name": 1, - "Square": 7, - "sideLength": 17, - "self.sideLength": 2, - "super.init": 2, - "area": 1, - "override": 2, - "test": 1, - "test.area": 1, - "test.simpleDescription": 1, - "EquilateralTriangle": 4, - "perimeter": 1, - "get": 2, - "set": 1, - "newValue": 1, - "/": 1, - "triangle": 3, - "triangle.perimeter": 2, - "triangle.sideLength": 2, - "TriangleAndSquare": 2, - "willSet": 2, - "square.sideLength": 1, - "newValue.sideLength": 2, - "square": 2, - "size": 4, - "triangleAndSquare": 1, - "triangleAndSquare.square.sideLength": 1, - "triangleAndSquare.triangle.sideLength": 2, - "triangleAndSquare.square": 1, - "Counter": 2, - "count": 2, - "incrementBy": 1, - "amount": 2, - "numberOfTimes": 2, - "times": 4, - "counter": 1, - "counter.incrementBy": 1, - "optionalSquare": 2, - ".sideLength": 1, - "enum": 4, - "Rank": 2, + "Int": 19, "Ace": 1, "Two": 1, "Three": 1, @@ -64581,44 +64815,124 @@ "Jack": 1, "Queen": 1, "King": 1, - "self": 3, ".Ace": 1, ".Jack": 1, ".Queen": 1, ".King": 1, + "default": 2, "self.toRaw": 1, "ace": 1, "Rank.Ace": 1, "aceRawValue": 1, "ace.toRaw": 1, + "sort": 1, + "returnFifteen": 2, + "y": 3, + "add": 2, + "+": 15, + "class": 7, + "Shape": 2, + "numberOfSides": 4, + "emptyArray": 1, + "emptyDictionary": 1, + "Dictionary": 1, + "": 1, + "Float": 1, + "println": 1, + "extension": 1, + "ExampleProtocol": 5, + "mutating": 3, + "adjust": 4, + "EquilateralTriangle": 4, + "NamedShape": 3, + "Double": 11, + "init": 4, + "self.sideLength": 2, + "super.init": 2, + "perimeter": 1, + "get": 2, + "set": 1, + "newValue": 1, + "/": 1, + "override": 2, + "triangle": 3, + "triangle.perimeter": 2, + "triangle.sideLength": 2, + "OptionalValue": 2, + "": 1, + "None": 1, + "Some": 1, + "possibleInteger": 2, + "": 1, + ".None": 1, + ".Some": 1, + "SimpleClass": 2, + "anotherProperty": 1, + "a": 2, + "a.adjust": 1, + "aDescription": 1, + "a.simpleDescription": 1, + "SimpleStructure": 2, + "b": 1, + "b.adjust": 1, + "bDescription": 1, + "b.simpleDescription": 1, + "Counter": 2, + "count": 2, + "incrementBy": 1, + "amount": 2, + "numberOfTimes": 2, + "times": 4, + "counter": 1, + "counter.incrementBy": 1, + "getGasPrices": 2, + "myVariable": 2, + "myConstant": 1, "convertedRank": 1, "Rank.fromRaw": 1, "threeDescription": 1, "convertedRank.simpleDescription": 1, - "Suit": 2, - "Spades": 1, - "Hearts": 1, - "Diamonds": 1, - "Clubs": 1, - ".Spades": 2, - ".Hearts": 1, - ".Diamonds": 1, - ".Clubs": 1, - "hearts": 1, - "Suit.Hearts": 1, - "heartsDescription": 1, - "hearts.simpleDescription": 1, - "implicitInteger": 1, - "implicitDouble": 1, - "explicitDouble": 1, - "struct": 2, - "Card": 2, - "rank": 2, - "suit": 2, - "threeOfSpades": 1, - ".Three": 1, - "threeOfSpadesDescription": 1, - "threeOfSpades.simpleDescription": 1, + "protocolValue": 1, + "protocolValue.simpleDescription": 1, + "sumOf": 3, + "Int...": 1, + "sum": 3, + "individualScores": 2, + "teamScore": 4, + "score": 2, + "else": 1, + "vegetable": 2, + "vegetableComment": 4, + "x": 1, + "x.hasSuffix": 1, + "optionalString": 2, + "nil": 1, + "optionalName": 2, + "greeting": 2, + "label": 2, + "width": 2, + "widthLabel": 1, + "shape": 1, + "shape.numberOfSides": 1, + "shapeDescription": 1, + "shape.simpleDescription": 1, + "self.name": 1, + "shoppingList": 3, + "occupations": 2, + "numbers.map": 2, + "result": 5, + "area": 1, + "test": 1, + "test.area": 1, + "test.simpleDescription": 1, + "makeIncrementer": 2, + "addOne": 2, + "increment": 2, + "repeat": 2, + "": 1, + "item": 4, + "ItemType": 3, + "i": 6, "ServerResponse": 1, "Result": 1, "Error": 1, @@ -64632,50 +64946,33 @@ "serverResponse": 2, ".Error": 1, "error": 1, + "//": 1, + "Went": 1, + "shopping": 1, + "and": 1, + "bought": 1, + "everything.": 1, + "TriangleAndSquare": 2, + "willSet": 2, + "square.sideLength": 1, + "newValue.sideLength": 2, + "square": 2, + "size": 4, + "triangleAndSquare": 1, + "triangleAndSquare.square.sideLength": 1, + "triangleAndSquare.triangle.sideLength": 2, + "triangleAndSquare.square": 1, "protocol": 1, - "ExampleProtocol": 5, - "mutating": 3, - "adjust": 4, - "SimpleClass": 2, - "anotherProperty": 1, - "a": 2, - "a.adjust": 1, - "aDescription": 1, - "a.simpleDescription": 1, - "SimpleStructure": 2, - "b": 1, - "b.adjust": 1, - "bDescription": 1, - "b.simpleDescription": 1, - "extension": 1, - "protocolValue": 1, - "protocolValue.simpleDescription": 1, - "repeat": 2, - "": 1, - "ItemType": 3, - "OptionalValue": 2, - "": 1, - "None": 1, - "Some": 1, - "T": 5, - "possibleInteger": 2, - "": 1, - ".None": 1, - ".Some": 1, - "anyCommonElements": 2, - "": 1, - "U": 4, - "Sequence": 2, - "GeneratorType": 3, - "Element": 3, - "Equatable": 1, - "lhs": 2, - "rhs": 2, - "lhsItem": 2, - "rhsItem": 2, - "label": 2, - "width": 2, - "widthLabel": 1 + "firstForLoop": 3, + "secondForLoop": 3, + ";": 2, + "implicitInteger": 1, + "implicitDouble": 1, + "explicitDouble": 1, + "hasAnyMatches": 2, + "list": 2, + "condition": 2, + "lessThanTen": 2 }, "SystemVerilog": { "module": 3, @@ -64825,12 +65122,6 @@ ".wb_ack_o": 1, "sys.ack": 1, "endmodule": 2, - "fifo": 1, - "clk_50": 1, - "clk_2": 1, - "reset_n": 1, - "data_out": 1, - "empty": 1, "priority_encoder": 1, "INPUT_WIDTH": 3, "OUTPUT_WIDTH": 3, @@ -64848,7 +65139,13 @@ "integer": 2, "log2": 4, "x": 6, - "endfunction": 1 + "endfunction": 1, + "fifo": 1, + "clk_50": 1, + "clk_2": 1, + "reset_n": 1, + "data_out": 1, + "empty": 1 }, "TXL": { "define": 12, @@ -65010,12 +65307,311 @@ }, "TeX": { "%": 135, - "ProvidesClass": 2, + "NeedsTeXFormat": 1, "{": 463, - "problemset": 1, + "LaTeX2e": 1, "}": 469, + "ProvidesClass": 2, + "reedthesis": 1, + "[": 81, + "/01/27": 1, + "The": 4, + "Reed": 5, + "College": 5, + "Thesis": 5, + "Class": 4, + "]": 80, "DeclareOption*": 2, "PassOptionsToClass": 2, + "CurrentOption": 1, + "book": 2, + "ProcessOptions": 2, + "relax": 3, + "LoadClass": 2, + "RequirePackage": 20, + "fancyhdr": 2, + "AtBeginDocument": 1, + "fancyhf": 2, + "fancyhead": 5, + "LE": 1, + "RO": 1, + "thepage": 2, + "above": 1, + "makes": 2, + "your": 1, + "headers": 6, + "in": 20, + "all": 2, + "caps.": 2, + "If": 1, + "you": 1, + "would": 1, + "like": 1, + "different": 1, + "choose": 1, + "one": 1, + "of": 14, + "the": 19, + "following": 2, + "options": 1, + "(": 12, + "be": 3, + "sure": 1, + "to": 16, + "remove": 1, + "symbol": 4, + "from": 5, + "both": 1, + "right": 16, + "and": 5, + "left": 15, + ")": 12, + "RE": 2, + "slshape": 2, + "nouppercase": 2, + "leftmark": 2, + "This": 2, + "on": 2, + "RIGHT": 2, + "side": 2, + "pages": 2, + "italic": 1, + "use": 1, + "lowercase": 1, + "With": 1, + "Capitals": 1, + "When": 1, + "Specified.": 1, + "LO": 2, + "rightmark": 2, + "does": 1, + "same": 1, + "thing": 1, + "LEFT": 2, + "or": 1, + "scshape": 2, + "will": 2, + "small": 8, + "And": 1, + "so": 1, + "pagestyle": 3, + "fancy": 1, + "let": 11, + "oldthebibliography": 2, + "thebibliography": 2, + "endoldthebibliography": 2, + "endthebibliography": 1, + "renewenvironment": 2, + "#1": 40, + "addcontentsline": 5, + "toc": 5, + "chapter": 9, + "bibname": 2, + "end": 12, + "things": 1, + "for": 21, + "psych": 1, + "majors": 1, + "comment": 1, + "out": 1, + "oldtheindex": 2, + "theindex": 2, + "endoldtheindex": 2, + "endtheindex": 1, + "indexname": 1, + "RToldchapter": 1, + "renewcommand": 10, + "if@openright": 1, + "RTcleardoublepage": 3, + "else": 9, + "clearpage": 4, + "fi": 15, + "thispagestyle": 5, + "empty": 6, + "global": 2, + "@topnum": 1, + "z@": 2, + "@afterindentfalse": 1, + "secdef": 1, + "@chapter": 2, + "@schapter": 1, + "def": 18, + "#2": 17, + "ifnum": 3, + "c@secnumdepth": 1, + "m@ne": 2, + "if@mainmatter": 1, + "refstepcounter": 1, + "typeout": 1, + "@chapapp": 2, + "space": 8, + "thechapter.": 1, + "thechapter": 1, + "space#1": 1, + "chaptermark": 1, + "addtocontents": 2, + "lof": 1, + "protect": 2, + "addvspace": 2, + "p@": 3, + "lot": 1, + "if@twocolumn": 3, + "@topnewpage": 1, + "@makechapterhead": 2, + "@afterheading": 1, + "newcommand": 2, + "if@twoside": 1, + "ifodd": 1, + "c@page": 1, + "hbox": 15, + "newpage": 3, + "RToldcleardoublepage": 1, + "cleardoublepage": 4, + "setlength": 12, + "oddsidemargin": 2, + ".5in": 3, + "evensidemargin": 2, + "textwidth": 4, + "textheight": 4, + "topmargin": 6, + "addtolength": 8, + "headheight": 4, + "headsep": 3, + ".6in": 1, + "pt": 5, + "division#1": 1, + "gdef": 6, + "@division": 3, + "@latex@warning@no@line": 3, + "No": 3, + "noexpand": 3, + "division": 2, + "given": 3, + "department#1": 1, + "@department": 3, + "department": 1, + "thedivisionof#1": 1, + "@thedivisionof": 3, + "Division": 2, + "approvedforthe#1": 1, + "@approvedforthe": 3, + "advisor#1": 1, + "@advisor": 3, + "advisor": 1, + "altadvisor#1": 1, + "@altadvisor": 3, + "@altadvisortrue": 1, + "@empty": 1, + "newif": 1, + "if@altadvisor": 3, + "@altadvisorfalse": 1, + "contentsname": 1, + "Table": 1, + "Contents": 1, + "References": 1, + "l@chapter": 1, + "c@tocdepth": 1, + "addpenalty": 1, + "@highpenalty": 2, + "vskip": 4, + "em": 8, + "@plus": 1, + "@tempdima": 2, + "begingroup": 1, + "parindent": 2, + "rightskip": 1, + "@pnumwidth": 3, + "parfillskip": 1, + "-": 9, + "leavevmode": 1, + "bfseries": 3, + "advance": 1, + "leftskip": 2, + "hskip": 1, + "nobreak": 2, + "normalfont": 1, + "leaders": 1, + "m@th": 1, + "mkern": 2, + "@dotsep": 2, + "mu": 2, + ".": 3, + "hfill": 3, + "hb@xt@": 1, + "hss": 1, + "par": 6, + "penalty": 1, + "endgroup": 1, + "newenvironment": 1, + "abstract": 1, + "@restonecoltrue": 1, + "onecolumn": 1, + "@restonecolfalse": 1, + "Abstract": 2, + "begin": 11, + "center": 7, + "fontsize": 7, + "selectfont": 6, + "if@restonecol": 1, + "twocolumn": 1, + "ifx": 1, + "@pdfoutput": 1, + "@undefined": 1, + "RTpercent": 3, + "@percentchar": 1, + "AtBeginDvi": 2, + "special": 2, + "LaTeX": 3, + "/12/04": 3, + "SN": 3, + "rawpostscript": 1, + "AtEndDocument": 1, + "pdfinfo": 1, + "/Creator": 1, + "maketitle": 1, + "titlepage": 2, + "footnotesize": 2, + "footnoterule": 1, + "footnote": 1, + "thanks": 1, + "baselineskip": 2, + "setbox0": 2, + "Requirements": 2, + "Degree": 2, + "setcounter": 5, + "page": 4, + "null": 3, + "vfil": 8, + "@title": 1, + "centerline": 8, + "wd0": 7, + "hrulefill": 5, + "A": 1, + "Presented": 1, + "In": 1, + "Partial": 1, + "Fulfillment": 1, + "Bachelor": 1, + "Arts": 1, + "bigskip": 2, + "lineskip": 1, + ".75em": 1, + "tabular": 2, + "t": 1, + "c": 5, + "@author": 1, + "@date": 1, + "Approved": 2, + "just": 1, + "below": 2, + "cm": 2, + "not": 2, + "copy0": 1, + "approved": 1, + "major": 1, + "sign": 1, + "makebox": 6, + "problemset": 1, "final": 2, "article": 2, "DeclareOption": 2, @@ -65024,19 +65620,9 @@ "@solutionvis": 3, "expand": 1, "@expand": 3, - "ProcessOptions": 2, - "relax": 3, - "LoadClass": 2, - "[": 81, - "pt": 5, "letterpaper": 1, - "]": 80, - "RequirePackage": 20, "top": 1, - "in": 20, "bottom": 1, - "left": 15, - "right": 16, "geometry": 1, "pgfkeys": 1, "For": 13, @@ -65047,18 +65633,14 @@ "heading": 2, "float": 1, "Used": 6, - "for": 21, "floats": 1, - "(": 12, "tables": 1, "figures": 1, "etc.": 1, - ")": 12, "graphicx": 1, "inserting": 3, "images.": 1, "enumerate": 2, - "the": 19, "mathtools": 2, "Required.": 7, "Loads": 1, @@ -65070,21 +65652,17 @@ "booktabs": 1, "esdiff": 1, "derivatives": 4, - "and": 5, "partial": 2, "Optional.": 1, "shortintertext.": 1, - "fancyhdr": 2, "customizing": 1, "headers/footers.": 1, "lastpage": 1, - "page": 4, "count": 1, "header/footer.": 1, "xcolor": 1, "setting": 3, "color": 3, - "of": 14, "hyperlinks": 2, "obeyFinal": 1, "Disable": 1, @@ -65098,8 +65676,6 @@ "todonotes": 1, "keeping": 1, "track": 1, - "to": 16, - "-": 9, "dos.": 1, "colorlinks": 1, "true": 1, @@ -65108,7 +65684,6 @@ "urlcolor": 1, "black": 2, "hyperref": 1, - "following": 2, "urls": 2, "references": 1, "a": 2, @@ -65117,7 +65692,6 @@ "Enables": 1, "with": 5, "tag": 1, - "all": 2, "hypcap": 1, "definecolor": 2, "gray": 1, @@ -65126,28 +65700,21 @@ "brightness": 1, "RGB": 1, "coloring": 1, - "setlength": 12, "parskip": 1, "ex": 2, "Sets": 1, - "space": 8, "between": 1, "paragraphs.": 2, - "parindent": 2, "Indent": 1, "first": 1, "line": 2, "new": 1, - "let": 11, "VERBATIM": 2, "verbatim": 2, - "def": 18, "verbatim@font": 1, - "small": 8, "ttfamily": 1, "usepackage": 2, "caption": 1, - "footnotesize": 2, "subcaption": 1, "captionsetup": 4, "table": 2, @@ -65165,42 +65732,30 @@ "FALSE": 1, "SHOW": 3, "HIDE": 2, - "thispagestyle": 5, - "empty": 6, "listoftodos": 1, - "clearpage": 4, "pagenumbering": 1, "arabic": 2, "shortname": 2, - "#1": 40, "authorname": 2, - "#2": 17, "coursename": 3, "#3": 8, "assignment": 3, "#4": 4, "duedate": 2, "#5": 2, - "begin": 11, "minipage": 4, - "textwidth": 4, "flushleft": 2, "hypertarget": 1, "@assignment": 2, "textbf": 5, - "end": 12, "flushright": 2, - "renewcommand": 10, "headrulewidth": 1, "footrulewidth": 1, - "pagestyle": 3, "fancyplain": 4, - "fancyhf": 2, "lfoot": 1, "hyperlink": 1, "cfoot": 1, "rfoot": 1, - "thepage": 2, "pageref": 1, "LastPage": 1, "newcounter": 1, @@ -65210,10 +65765,8 @@ "environment": 1, "problem": 1, "addtocounter": 2, - "setcounter": 5, "equation": 1, "noindent": 2, - ".": 3, "textit": 1, "Default": 2, "is": 2, @@ -65222,26 +65775,20 @@ "after": 1, "solution": 2, "qqed": 2, - "hfill": 3, "rule": 1, "mm": 2, - "ifnum": 3, "pagebreak": 2, - "fi": 15, "show": 1, "solutions.": 1, "vspace": 2, - "em": 8, "Solution.": 1, "ifnum#1": 2, - "else": 9, "chap": 1, "section": 2, "Sum": 3, "n": 4, "ensuremath": 15, "sum_": 2, - "from": 5, "infsum": 2, "infty": 2, "Infinite": 1, @@ -65290,10 +65837,8 @@ "circ": 1, "adding": 1, "degree": 1, - "symbol": 4, "even": 1, "if": 1, - "not": 2, "abs": 1, "vert": 3, "Absolute": 1, @@ -65318,7 +65863,6 @@ "into": 2, "mtxt": 1, "insterting": 1, - "on": 2, "either": 1, "side.": 1, "Option": 1, @@ -65348,254 +65892,7 @@ "del": 3, "cdot": 1, "Curl": 1, - "Grad": 1, - "NeedsTeXFormat": 1, - "LaTeX2e": 1, - "reedthesis": 1, - "/01/27": 1, - "The": 4, - "Reed": 5, - "College": 5, - "Thesis": 5, - "Class": 4, - "CurrentOption": 1, - "book": 2, - "AtBeginDocument": 1, - "fancyhead": 5, - "LE": 1, - "RO": 1, - "above": 1, - "makes": 2, - "your": 1, - "headers": 6, - "caps.": 2, - "If": 1, - "you": 1, - "would": 1, - "like": 1, - "different": 1, - "choose": 1, - "one": 1, - "options": 1, - "be": 3, - "sure": 1, - "remove": 1, - "both": 1, - "RE": 2, - "slshape": 2, - "nouppercase": 2, - "leftmark": 2, - "This": 2, - "RIGHT": 2, - "side": 2, - "pages": 2, - "italic": 1, - "use": 1, - "lowercase": 1, - "With": 1, - "Capitals": 1, - "When": 1, - "Specified.": 1, - "LO": 2, - "rightmark": 2, - "does": 1, - "same": 1, - "thing": 1, - "LEFT": 2, - "or": 1, - "scshape": 2, - "will": 2, - "And": 1, - "so": 1, - "fancy": 1, - "oldthebibliography": 2, - "thebibliography": 2, - "endoldthebibliography": 2, - "endthebibliography": 1, - "renewenvironment": 2, - "addcontentsline": 5, - "toc": 5, - "chapter": 9, - "bibname": 2, - "things": 1, - "psych": 1, - "majors": 1, - "comment": 1, - "out": 1, - "oldtheindex": 2, - "theindex": 2, - "endoldtheindex": 2, - "endtheindex": 1, - "indexname": 1, - "RToldchapter": 1, - "if@openright": 1, - "RTcleardoublepage": 3, - "global": 2, - "@topnum": 1, - "z@": 2, - "@afterindentfalse": 1, - "secdef": 1, - "@chapter": 2, - "@schapter": 1, - "c@secnumdepth": 1, - "m@ne": 2, - "if@mainmatter": 1, - "refstepcounter": 1, - "typeout": 1, - "@chapapp": 2, - "thechapter.": 1, - "thechapter": 1, - "space#1": 1, - "chaptermark": 1, - "addtocontents": 2, - "lof": 1, - "protect": 2, - "addvspace": 2, - "p@": 3, - "lot": 1, - "if@twocolumn": 3, - "@topnewpage": 1, - "@makechapterhead": 2, - "@afterheading": 1, - "newcommand": 2, - "if@twoside": 1, - "ifodd": 1, - "c@page": 1, - "hbox": 15, - "newpage": 3, - "RToldcleardoublepage": 1, - "cleardoublepage": 4, - "oddsidemargin": 2, - ".5in": 3, - "evensidemargin": 2, - "textheight": 4, - "topmargin": 6, - "addtolength": 8, - "headheight": 4, - "headsep": 3, - ".6in": 1, - "division#1": 1, - "gdef": 6, - "@division": 3, - "@latex@warning@no@line": 3, - "No": 3, - "noexpand": 3, - "division": 2, - "given": 3, - "department#1": 1, - "@department": 3, - "department": 1, - "thedivisionof#1": 1, - "@thedivisionof": 3, - "Division": 2, - "approvedforthe#1": 1, - "@approvedforthe": 3, - "advisor#1": 1, - "@advisor": 3, - "advisor": 1, - "altadvisor#1": 1, - "@altadvisor": 3, - "@altadvisortrue": 1, - "@empty": 1, - "newif": 1, - "if@altadvisor": 3, - "@altadvisorfalse": 1, - "contentsname": 1, - "Table": 1, - "Contents": 1, - "References": 1, - "l@chapter": 1, - "c@tocdepth": 1, - "addpenalty": 1, - "@highpenalty": 2, - "vskip": 4, - "@plus": 1, - "@tempdima": 2, - "begingroup": 1, - "rightskip": 1, - "@pnumwidth": 3, - "parfillskip": 1, - "leavevmode": 1, - "bfseries": 3, - "advance": 1, - "leftskip": 2, - "hskip": 1, - "nobreak": 2, - "normalfont": 1, - "leaders": 1, - "m@th": 1, - "mkern": 2, - "@dotsep": 2, - "mu": 2, - "hb@xt@": 1, - "hss": 1, - "par": 6, - "penalty": 1, - "endgroup": 1, - "newenvironment": 1, - "abstract": 1, - "@restonecoltrue": 1, - "onecolumn": 1, - "@restonecolfalse": 1, - "Abstract": 2, - "center": 7, - "fontsize": 7, - "selectfont": 6, - "if@restonecol": 1, - "twocolumn": 1, - "ifx": 1, - "@pdfoutput": 1, - "@undefined": 1, - "RTpercent": 3, - "@percentchar": 1, - "AtBeginDvi": 2, - "special": 2, - "LaTeX": 3, - "/12/04": 3, - "SN": 3, - "rawpostscript": 1, - "AtEndDocument": 1, - "pdfinfo": 1, - "/Creator": 1, - "maketitle": 1, - "titlepage": 2, - "footnoterule": 1, - "footnote": 1, - "thanks": 1, - "baselineskip": 2, - "setbox0": 2, - "Requirements": 2, - "Degree": 2, - "null": 3, - "vfil": 8, - "@title": 1, - "centerline": 8, - "wd0": 7, - "hrulefill": 5, - "A": 1, - "Presented": 1, - "In": 1, - "Partial": 1, - "Fulfillment": 1, - "Bachelor": 1, - "Arts": 1, - "bigskip": 2, - "lineskip": 1, - ".75em": 1, - "tabular": 2, - "t": 1, - "c": 5, - "@author": 1, - "@date": 1, - "Approved": 2, - "just": 1, - "below": 2, - "cm": 2, - "copy0": 1, - "approved": 1, - "major": 1, - "sign": 1, - "makebox": 6 + "Grad": 1 }, "Tea": { "<%>": 1, @@ -66245,73 +66542,6 @@ "endcase": 3, "default": 2, "endmodule": 18, - "control": 1, - "en": 13, - "dsp_sel": 9, - "an": 6, - "wire": 67, - "a": 5, - "b": 3, - "c": 3, - "d": 3, - "e": 3, - "f": 2, - "g": 2, - "h": 2, - "i": 62, - "j": 2, - "k": 2, - "l": 2, - "assign": 23, - "FDRSE": 6, - "#": 10, - ".INIT": 6, - "b0": 27, - "Synchronous": 12, - ".S": 6, - "b1": 19, - "Initial": 6, - "value": 6, - "of": 8, - "register": 6, - "DFF2": 1, - ".Q": 6, - "Data": 13, - ".C": 6, - "Clock": 14, - ".CE": 6, - "enable": 6, - ".D": 6, - ".R": 6, - "set": 6, - "DFF0": 1, - "DFF6": 1, - "DFF4": 1, - "DFF10": 1, - "DFF8": 1, - "hex_display": 1, - "num": 5, - "hex0": 2, - "hex1": 2, - "hex2": 2, - "hex3": 2, - "seg_7": 4, - "hex_group0": 1, - ".num": 4, - ".en": 4, - ".seg": 4, - "hex_group1": 1, - "hex_group2": 1, - "hex_group3": 1, - "mux": 1, - "opA": 4, - "opB": 3, - "sum": 5, - "out": 5, - "cout": 4, - "b0000": 1, - "b01": 1, - "b11": 1, "pipeline_registers": 1, "BIT_WIDTH": 5, "pipe_in": 4, @@ -66319,6 +66549,7 @@ "NUMBER_OF_STAGES": 7, "generate": 3, "genvar": 3, + "i": 62, "*": 4, "BIT_WIDTH*": 5, "pipe_gen": 6, @@ -66327,7 +66558,24 @@ "pipeline": 2, "BIT_WIDTH*i": 2, "endgenerate": 3, + "ns/1ps": 2, + "e0": 1, + "x": 41, + "y": 21, + "assign": 23, + "{": 11, + "}": 11, + "e1": 1, + "ch": 1, + "z": 7, + "o": 6, + "&": 6, + "maj": 1, + "|": 2, + "s0": 1, + "s1": 1, "ps2_mouse": 1, + "Clock": 14, "Input": 2, "Reset": 1, "inout": 2, @@ -66335,6 +66583,7 @@ "PS2": 2, "Bidirectional": 2, "ps2_dat": 3, + "Data": 13, "the_command": 2, "Command": 1, "to": 3, @@ -66358,6 +66607,7 @@ "received": 1, "start_receiving_data": 3, "wait_for_incoming_data": 3, + "wire": 67, "ps2_clk_posedge": 3, "Internal": 2, "Wires": 1, @@ -66376,9 +66626,11 @@ "PS2_STATE_2_COMMAND_OUT": 2, "h3": 1, "PS2_STATE_4_END_DELAYED": 4, + "b1": 19, "Defaults": 1, "PS2_STATE_1_DATA_IN": 3, "||": 1, + "b0": 27, "PS2_STATE_3_END_TRANSFER": 3, "h00": 1, "&&": 3, @@ -66405,39 +66657,57 @@ ".ps2_data": 1, ".received_data": 1, ".received_data_en": 1, - "ns/1ps": 2, - "e0": 1, - "x": 41, - "y": 21, - "{": 11, - "}": 11, - "e1": 1, - "ch": 1, - "z": 7, - "o": 6, - "&": 6, - "maj": 1, - "|": 2, - "s0": 1, - "s1": 1, - "sign_extender": 1, - "INPUT_WIDTH": 5, - "OUTPUT_WIDTH": 4, - "original": 3, - "sign_extended_original": 2, - "sign_extend": 3, - "gen_sign_extend": 1, - "sqrt_pipelined": 3, + "hex_display": 1, + "num": 5, + "en": 13, + "hex0": 2, + "hex1": 2, + "hex2": 2, + "hex3": 2, + "seg_7": 4, + "hex_group0": 1, + ".num": 4, + ".en": 4, + ".seg": 4, + "hex_group1": 1, + "hex_group2": 1, + "hex_group3": 1, + "t_div_pipelined": 1, "start": 12, + "dividend": 3, + "divisor": 5, + "data_valid": 7, + "div_by_zero": 2, + "quotient": 2, + "quotient_correct": 1, + "BITS": 2, + "div_pipelined": 2, + "#": 10, + ".BITS": 1, + ".reset_n": 3, + ".dividend": 1, + ".divisor": 1, + ".quotient": 1, + ".div_by_zero": 1, + ".start": 2, + ".data_valid": 2, + "initial": 3, + "#10": 10, + "#50": 2, + "#1": 1, + "#1000": 1, + "finish": 2, + "#5": 3, + "sqrt_pipelined": 3, "optional": 2, "INPUT_BITS": 28, "radicand": 12, "unsigned": 2, - "data_valid": 7, "valid": 2, "OUTPUT_BITS": 14, "root": 8, "number": 2, + "of": 8, "bits": 2, "any": 1, "integer": 1, @@ -66454,47 +66724,18 @@ "is": 4, "odd": 1, "this": 2, + "a": 5, "INPUT_BITS*": 27, "<<": 2, "i/2": 2, "even": 1, "pipeline_stage": 1, "INPUT_BITS*i": 5, - "t_button_debounce": 1, - ".CLK_FREQUENCY": 1, - ".DEBOUNCE_HZ": 1, - ".reset_n": 3, - ".button": 1, - ".debounce": 1, - "initial": 3, - "bx": 4, - "#10": 10, - "#5": 3, - "#100": 1, - "#0.1": 8, - "t_div_pipelined": 1, - "dividend": 3, - "divisor": 5, - "div_by_zero": 2, - "quotient": 2, - "quotient_correct": 1, - "BITS": 2, - "div_pipelined": 2, - ".BITS": 1, - ".dividend": 1, - ".divisor": 1, - ".quotient": 1, - ".div_by_zero": 1, - ".start": 2, - ".data_valid": 2, - "#50": 2, - "#1": 1, - "#1000": 1, - "finish": 2, "t_sqrt_pipelined": 1, ".INPUT_BITS": 1, ".radicand": 1, ".root": 1, + "bx": 4, "#10000": 1, "vga": 1, "wb_clk_i": 6, @@ -66669,15 +66910,66 @@ ".csrm_sel_o": 1, ".csrm_we_o": 1, ".csrm_dat_o": 1, - ".csrm_dat_i": 1 + ".csrm_dat_i": 1, + "mux": 1, + "opA": 4, + "opB": 3, + "sum": 5, + "dsp_sel": 9, + "out": 5, + "cout": 4, + "b0000": 1, + "b01": 1, + "b11": 1, + "t_button_debounce": 1, + ".CLK_FREQUENCY": 1, + ".DEBOUNCE_HZ": 1, + ".button": 1, + ".debounce": 1, + "#100": 1, + "#0.1": 8, + "sign_extender": 1, + "INPUT_WIDTH": 5, + "OUTPUT_WIDTH": 4, + "original": 3, + "sign_extended_original": 2, + "sign_extend": 3, + "gen_sign_extend": 1, + "control": 1, + "an": 6, + "b": 3, + "c": 3, + "d": 3, + "e": 3, + "f": 2, + "g": 2, + "h": 2, + "j": 2, + "k": 2, + "l": 2, + "FDRSE": 6, + ".INIT": 6, + "Synchronous": 12, + ".S": 6, + "Initial": 6, + "value": 6, + "register": 6, + "DFF2": 1, + ".Q": 6, + ".C": 6, + ".CE": 6, + "enable": 6, + ".D": 6, + ".R": 6, + "set": 6, + "DFF0": 1, + "DFF6": 1, + "DFF4": 1, + "DFF10": 1, + "DFF8": 1 }, "VimL": { - "no": 1, - "toolbar": 1, "set": 7, - "guioptions": 1, - "-": 1, - "T": 1, "nocompatible": 1, "ignorecase": 1, "incsearch": 1, @@ -66685,7 +66977,12 @@ "showmatch": 1, "showcmd": 1, "syntax": 1, - "on": 1 + "on": 1, + "no": 1, + "toolbar": 1, + "guioptions": 1, + "-": 1, + "T": 1 }, "Visual Basic": { "VERSION": 1, @@ -67085,30 +67382,34 @@ "": 6, "": 5, "{": 6, - "D9BF15": 1, + "D377F": 1, "-": 90, - "D10": 1, - "ABAD688E8B": 1, + "A": 21, + "A798": 1, + "B3FD04C": 1, "}": 6, "": 5, "": 4, "Exe": 4, "": 4, - "": 2, - "Properties": 3, - "": 2, + "": 1, + "vbproj_sample.Module1": 1, + "": 1, "": 5, - "csproj_sample": 1, + "vbproj_sample": 1, "": 5, "": 4, - "csproj": 1, + "vbproj": 3, "sample": 6, "": 4, + "": 3, + "": 3, + "": 1, + "Console": 3, + "": 1, "": 5, "v4.5.1": 5, "": 5, - "": 3, - "": 3, "": 3, "true": 24, "": 3, @@ -67120,119 +67421,158 @@ "": 6, "full": 4, "": 6, - "": 7, - "false": 11, - "": 7, + "": 2, + "": 2, + "": 2, + "": 2, "": 8, "bin": 11, "": 8, - "": 6, - "DEBUG": 3, - ";": 52, - "TRACE": 6, - "": 6, - "": 4, - "prompt": 4, - "": 4, - "": 8, - "": 8, + "": 5, + "sample.xml": 2, + "": 5, + "": 2, + "": 2, "pdbonly": 3, + "false": 11, + "": 7, + "": 7, "Release": 6, + "": 1, + "On": 2, + "": 1, + "": 1, + "Binary": 1, + "": 1, + "": 1, + "Off": 1, + "": 1, + "": 1, + "": 1, "": 26, "": 30, "Include=": 78, "": 26, "": 10, + "": 3, + "True": 13, + "": 3, + "": 3, + "Application.myapp": 1, + "": 3, + "": 3, + "": 1, + "": 1, + "Resources.resx": 1, + "Settings.settings": 1, + "": 1, + "": 1, + "": 1, + "": 3, + "VbMyResourcesResXFileCodeGenerator": 1, + "": 3, + "": 3, + "Resources.Designer.vb": 1, + "": 3, + "": 2, + "My.Resources": 1, + "": 2, + "": 1, + "Designer": 1, + "": 1, + "": 1, "": 5, + "MyApplicationCodeGenerator": 1, + "Application.Designer.vb": 1, + "": 2, + "SettingsSingleFileGenerator": 1, + "My": 1, + "Settings.Designer.vb": 1, "": 7, - "standalone=": 1, - "": 1, - "4": 1, - "0": 2, - "": 1, - "storage_type_id=": 1, - "": 14, - "moduleId=": 14, - "": 2, - "id=": 141, - "buildSystemId=": 2, + "": 3, + "MyCommon": 1, + "": 3, + "": 1, + "Name=": 1, + "": 1, + "Text=": 1, + "": 1, + "": 1, + "xmlns": 2, + "ea=": 2, + "": 1, + "organisation=": 3, + "module=": 3, + "revision=": 3, + "status=": 1, + "": 4, + "this": 77, + "is": 123, + "a": 128, + "easyant": 3, + "module.ivy": 1, + "file": 3, + "for": 60, + "java": 1, + "standard": 1, + "application": 2, + "": 4, + "": 1, + "": 1, "name=": 270, - "": 2, - "": 2, - "": 12, - "point=": 12, - "": 2, - "": 7, - "": 2, - "artifactName=": 2, - "buildArtefactType=": 2, - "buildProperties=": 2, - "cleanCommand=": 2, - "description=": 4, - "cdt": 2, - "managedbuild": 2, - "config": 2, - "gnu": 2, - "exe": 2, - "debug": 1, - "1803931088": 1, - "parent=": 2, - "": 2, - "resourcePath=": 2, - "": 2, - "superClass=": 42, - "": 2, - "": 2, - "buildPath=": 2, - "keepEnvironmentInBuildfile=": 2, - "managedBuildOn=": 2, - "": 12, - "": 4, - "": 8, - "": 8, - "defaultValue=": 2, - "": 4, - "kind=": 6, - "paths=": 4, - "": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "flags=": 2, - "": 2, - "": 2, - "": 2, - "release": 1, - "32754498": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 2, + "visibility=": 2, + "description=": 4, + "": 1, + "": 1, + "": 4, + "org=": 1, + "rev=": 1, + "conf=": 1, + "default": 9, + "junit": 2, + "test": 7, + "/": 6, + "": 1, + "": 1, "": 2, - "projectType=": 1, - "": 5, - "enabled=": 125, - "problemReportingEnabled=": 5, - "selectedProfileId=": 5, - "": 40, - "": 40, - "": 40, - "filePath=": 40, - "": 80, - "": 40, - "": 40, - "": 40, - "arguments=": 40, - "command=": 40, - "useDefault=": 40, - "": 40, - "": 40, - "": 4, - "instanceId=": 4, - "": 4, - "": 1, + "This": 21, + "module.ant": 1, + "optionnal": 1, + "and": 44, + "designed": 1, + "to": 164, + "customize": 1, + "your": 8, + "build": 1, + "with": 23, + "own": 2, + "specific": 8, + "target.": 1, + "": 2, + "": 2, + "my": 2, + "awesome": 1, + "additionnal": 1, + "target": 6, + "": 2, + "": 2, + "extensionOf=": 1, + "i": 2, + "would": 2, + "love": 1, + "could": 1, + "easily": 1, + "plug": 1, + "pre": 1, + "compile": 1, + "step": 1, + "": 1, "": 2, "": 2, "cfa7a11": 1, @@ -67242,18 +67582,20 @@ "fsproj_sample": 2, "": 1, "": 1, - "": 3, "fsproj": 1, - "": 3, "": 2, "": 2, - "": 5, + "": 6, + "DEBUG": 3, + ";": 52, + "TRACE": 6, + "": 6, + "": 8, + "": 8, "fsproj_sample.XML": 2, - "": 5, "": 2, "": 2, "": 2, - "True": 13, "": 2, "": 5, "": 1, @@ -67280,83 +67622,131 @@ "FSharp": 1, "": 1, "": 1, - "xmlns": 2, - "ea=": 2, - "": 4, - "This": 21, - "easyant": 3, - "module.ant": 1, - "file": 3, - "is": 123, - "optionnal": 1, - "and": 44, - "designed": 1, - "to": 164, - "customize": 1, - "your": 8, - "build": 1, - "with": 23, - "own": 2, - "specific": 8, - "target.": 1, - "": 4, - "": 2, - "": 2, - "my": 2, - "awesome": 1, - "additionnal": 1, - "target": 6, - "": 2, - "": 2, - "extensionOf=": 1, - "i": 2, - "would": 2, - "love": 1, - "could": 1, - "easily": 1, - "plug": 1, - "pre": 1, - "compile": 1, - "step": 1, - "": 1, - "": 1, - "": 1, - "organisation=": 3, - "module=": 3, - "revision=": 3, - "status=": 1, - "this": 77, - "a": 128, - "module.ivy": 1, - "for": 60, - "java": 1, - "standard": 1, - "application": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 2, - "visibility=": 2, - "": 1, - "": 1, - "": 4, - "org=": 1, - "rev=": 1, - "conf=": 1, - "default": 9, - "junit": 2, - "test": 7, - "/": 6, - "": 1, - "": 1, + "": 1, + "": 1, + "c67af951": 1, + "d8d6376993e7": 1, + "": 2, + "Properties": 3, + "": 2, + "nproj_sample": 2, + "": 1, + "": 1, + "": 1, + "Net": 1, + "": 1, + "": 1, + "ProgramFiles": 1, + "Nemerle": 3, + "": 1, + "": 1, + "NemerleBinPathRoot": 1, + "NemerleVersion": 1, + "": 1, + "nproj": 1, + "": 4, + "prompt": 4, + "": 4, + "OutputPath": 1, + "AssemblyName": 1, + ".xml": 1, + "": 3, + "": 3, + "": 1, + "False": 1, + "": 1, + "": 2, + "Nemerle.dll": 1, + "": 2, + "": 1, + "Nemerle.Linq.dll": 1, + "": 1, + "": 1, + "": 1, + "TS": 1, + "": 1, + "language=": 1, + "": 1, + "": 2, + "MainWindow": 1, + "": 2, + "": 8, + "": 8, + "filename=": 8, + "line=": 8, + "": 8, + "United": 1, + "Kingdom": 1, + "": 8, + "": 8, + "Reino": 1, + "Unido": 1, + "": 8, + "": 8, + "God": 1, + "save": 2, + "the": 261, + "Queen": 1, + "Deus": 1, + "salve": 1, + "Rainha": 1, + "England": 1, + "Inglaterra": 1, + "Wales": 1, + "Gales": 1, + "Scotland": 1, + "Esc": 1, + "cia": 1, + "Northern": 1, + "Ireland": 1, + "Irlanda": 1, + "Norte": 1, + "Portuguese": 1, + "Portugu": 1, + "s": 3, + "English": 1, + "Ingl": 1, + "": 1, + "": 1, + "": 1, + "compatVersion=": 1, + "": 1, + "FreeMedForms": 1, + "": 1, + "": 1, + "C": 1, + "by": 14, + "Eric": 1, + "MAEKER": 1, + "MD": 1, + "": 1, + "": 1, + "GPLv3": 1, + "": 1, + "": 1, + "Patient": 1, + "data": 2, + "": 1, + "The": 75, + "XML": 1, + "form": 1, + "loader/saver": 1, + "FreeMedForms.": 1, + "": 1, + "http": 2, + "//www.freemedforms.com/": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "D9BF15": 1, + "D10": 1, + "ABAD688E8B": 1, + "csproj_sample": 1, + "csproj": 1, "": 1, "": 1, - "": 2, "ReactiveUI": 2, - "": 2, "": 1, "": 1, "": 120, @@ -67366,7 +67756,6 @@ "interface": 4, "that": 94, "replaces": 1, - "the": 261, "non": 1, "PropertyChangedEventArgs.": 1, "Note": 7, @@ -67390,7 +67779,6 @@ "changes.": 2, "": 122, "": 120, - "The": 75, "object": 42, "has": 16, "raised": 1, @@ -67569,7 +67957,6 @@ "string": 13, "distinguish": 12, "arbitrarily": 2, - "by": 14, "client.": 2, "Listen": 4, "provides": 6, @@ -67581,7 +67968,6 @@ "to.": 7, "": 12, "": 84, - "A": 21, "identical": 11, "types": 10, "one": 27, @@ -67626,7 +68012,6 @@ "allows": 15, "log": 2, "attached.": 1, - "data": 2, "structure": 1, "representation": 1, "memoizing": 2, @@ -67696,7 +68081,6 @@ "object.": 3, "ViewModel": 8, "another": 3, - "s": 3, "Return": 1, "instance": 2, "type.": 3, @@ -67819,7 +68203,6 @@ "manage": 1, "disk": 1, "download": 1, - "save": 2, "temporary": 1, "folder": 1, "onRelease": 1, @@ -68050,244 +68433,6 @@ "setup.": 12, "": 1, "": 1, - "": 1, - "": 1, - "c67af951": 1, - "d8d6376993e7": 1, - "nproj_sample": 2, - "": 1, - "": 1, - "": 1, - "Net": 1, - "": 1, - "": 1, - "ProgramFiles": 1, - "Nemerle": 3, - "": 1, - "": 1, - "NemerleBinPathRoot": 1, - "NemerleVersion": 1, - "": 1, - "nproj": 1, - "OutputPath": 1, - "AssemblyName": 1, - ".xml": 1, - "": 3, - "": 3, - "": 1, - "False": 1, - "": 1, - "": 2, - "Nemerle.dll": 1, - "": 2, - "": 1, - "Nemerle.Linq.dll": 1, - "": 1, - "": 1, - "": 1, - "TS": 1, - "": 1, - "language=": 1, - "": 1, - "MainWindow": 1, - "": 8, - "": 8, - "filename=": 8, - "line=": 8, - "": 8, - "United": 1, - "Kingdom": 1, - "": 8, - "": 8, - "Reino": 1, - "Unido": 1, - "": 8, - "": 8, - "God": 1, - "Queen": 1, - "Deus": 1, - "salve": 1, - "Rainha": 1, - "England": 1, - "Inglaterra": 1, - "Wales": 1, - "Gales": 1, - "Scotland": 1, - "Esc": 1, - "cia": 1, - "Northern": 1, - "Ireland": 1, - "Irlanda": 1, - "Norte": 1, - "Portuguese": 1, - "Portugu": 1, - "English": 1, - "Ingl": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "Sample": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "Hugh": 2, - "Bot": 2, - "": 1, - "": 1, - "": 1, - "package": 1, - "nuget": 1, - "just": 1, - "works": 1, - "": 1, - "http": 2, - "//hubot.github.com": 1, - "": 1, - "": 1, - "": 1, - "https": 1, - "//github.com/github/hubot/LICENSEmd": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "src=": 1, - "target=": 1, - "": 1, - "": 1, - "MyCommon": 1, - "": 1, - "Name=": 1, - "": 1, - "Text=": 1, - "": 1, - "D377F": 1, - "A798": 1, - "B3FD04C": 1, - "": 1, - "vbproj_sample.Module1": 1, - "": 1, - "vbproj_sample": 1, - "vbproj": 3, - "": 1, - "Console": 3, - "": 1, - "": 2, - "": 2, - "": 2, - "": 2, - "sample.xml": 2, - "": 2, - "": 2, - "": 1, - "On": 2, - "": 1, - "": 1, - "Binary": 1, - "": 1, - "": 1, - "Off": 1, - "": 1, - "": 1, - "": 1, - "": 3, - "": 3, - "": 3, - "Application.myapp": 1, - "": 3, - "": 3, - "": 1, - "": 1, - "Resources.resx": 1, - "Settings.settings": 1, - "": 1, - "": 1, - "": 1, - "": 3, - "VbMyResourcesResXFileCodeGenerator": 1, - "": 3, - "": 3, - "Resources.Designer.vb": 1, - "": 3, - "": 2, - "My.Resources": 1, - "": 2, - "": 1, - "Designer": 1, - "": 1, - "": 1, - "MyApplicationCodeGenerator": 1, - "Application.Designer.vb": 1, - "": 2, - "SettingsSingleFileGenerator": 1, - "My": 1, - "Settings.Designer.vb": 1, - "Label=": 11, - "": 2, - "Win32": 2, - "": 2, - "BF6EED48": 1, - "BF18": 1, - "C54": 1, - "F": 1, - "BBF19EEDC7C": 1, - "": 1, - "ManagedCProj": 1, - "": 1, - "vcxprojsample": 1, - "": 2, - "Application": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "v120": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "Unicode": 2, - "": 2, - "": 4, - "": 4, - "": 2, - "": 2, - "": 2, - "": 8, - "Level3": 2, - "": 1, - "Disabled": 1, - "": 1, - "": 2, - "WIN32": 2, - "_DEBUG": 1, - "%": 2, - "PreprocessorDefinitions": 2, - "": 2, - "": 4, - "": 4, - "": 6, - "": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "NDEBUG": 1, - "": 2, - "": 4, - "": 2, - "Create": 2, - "": 2, "": 10, "": 3, "FC737F1": 1, @@ -68345,40 +68490,192 @@ "wav": 1, "mfcribbon": 1, "ms": 1, + "": 2, + "": 4, "Header": 2, "Files": 7, "": 2, + "": 2, "Resource": 2, "": 1, + "": 8, "Source": 3, + "": 6, + "": 2, "": 1, - "": 1, - "compatVersion=": 1, - "": 1, - "FreeMedForms": 1, - "": 1, - "": 1, - "C": 1, - "Eric": 1, - "MAEKER": 1, - "MD": 1, - "": 1, - "": 1, - "GPLv3": 1, - "": 1, - "": 1, - "Patient": 1, - "": 1, - "XML": 1, - "form": 1, - "loader/saver": 1, - "FreeMedForms.": 1, - "": 1, - "//www.freemedforms.com/": 1, - "": 1, - "": 1, - "": 1, - "": 1 + "Label=": 11, + "": 2, + "Win32": 2, + "": 2, + "BF6EED48": 1, + "BF18": 1, + "C54": 1, + "F": 1, + "BBF19EEDC7C": 1, + "": 1, + "ManagedCProj": 1, + "": 1, + "vcxprojsample": 1, + "": 2, + "Application": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "v120": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "Unicode": 2, + "": 2, + "": 4, + "": 4, + "": 2, + "": 2, + "": 2, + "Level3": 2, + "": 1, + "Disabled": 1, + "": 1, + "": 2, + "WIN32": 2, + "_DEBUG": 1, + "%": 2, + "PreprocessorDefinitions": 2, + "": 2, + "": 4, + "": 4, + "": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "NDEBUG": 1, + "Create": 2, + "standalone=": 1, + "": 1, + "4": 1, + "0": 2, + "": 1, + "storage_type_id=": 1, + "": 14, + "moduleId=": 14, + "": 2, + "id=": 141, + "buildSystemId=": 2, + "": 2, + "": 2, + "": 12, + "point=": 12, + "": 2, + "": 7, + "": 2, + "artifactName=": 2, + "buildArtefactType=": 2, + "buildProperties=": 2, + "cleanCommand=": 2, + "cdt": 2, + "managedbuild": 2, + "config": 2, + "gnu": 2, + "exe": 2, + "debug": 1, + "1803931088": 1, + "parent=": 2, + "": 2, + "resourcePath=": 2, + "": 2, + "superClass=": 42, + "": 2, + "": 2, + "buildPath=": 2, + "keepEnvironmentInBuildfile=": 2, + "managedBuildOn=": 2, + "": 12, + "": 4, + "": 8, + "": 8, + "defaultValue=": 2, + "": 4, + "kind=": 6, + "paths=": 4, + "": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "flags=": 2, + "": 2, + "": 2, + "": 2, + "release": 1, + "32754498": 1, + "projectType=": 1, + "": 5, + "enabled=": 125, + "problemReportingEnabled=": 5, + "selectedProfileId=": 5, + "": 40, + "": 40, + "": 40, + "filePath=": 40, + "": 80, + "": 40, + "": 40, + "": 40, + "arguments=": 40, + "command=": 40, + "useDefault=": 40, + "": 40, + "": 40, + "": 4, + "instanceId=": 4, + "": 4, + "": 1, + "": 1, + "": 1, + "": 1, + "Sample": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "Hugh": 2, + "Bot": 2, + "": 1, + "": 1, + "": 1, + "package": 1, + "nuget": 1, + "just": 1, + "works": 1, + "": 1, + "//hubot.github.com": 1, + "": 1, + "": 1, + "": 1, + "https": 1, + "//github.com/github/hubot/LICENSEmd": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "src=": 1, + "target=": 1, + "": 1, + "": 1 }, "XProc": { "": 1, @@ -68534,44 +68831,44 @@ }, "Xojo": { "#tag": 88, - "Class": 3, - "Protected": 1, - "App": 1, - "Inherits": 1, - "Application": 1, - "Constant": 3, - "Name": 31, - "kEditClear": 1, - "Type": 34, - "String": 3, - "Dynamic": 3, - "False": 14, - "Default": 9, - "Scope": 4, - "Public": 3, - "#Tag": 5, - "Instance": 5, - "Platform": 5, - "Windows": 2, - "Language": 5, - "Definition": 5, - "Linux": 2, - "EndConstant": 3, - "kFileQuit": 1, - "kFileQuitShortcut": 1, - "Mac": 1, - "OS": 1, - "ViewBehavior": 2, - "EndViewBehavior": 2, - "End": 27, - "EndClass": 1, - "Report": 2, + "Menu": 2, "Begin": 23, + "MainMenuBar": 1, + "MenuItem": 11, + "FileMenu": 1, + "SpecialMenu": 13, + "Text": 13, + "Index": 14, + "-": 14, + "AutoEnable": 13, + "True": 46, + "Visible": 41, + "QuitMenuItem": 1, + "FileQuit": 1, + "ShortcutKey": 6, + "Shortcut": 6, + "End": 27, + "EditMenu": 1, + "EditUndo": 1, + "MenuModifier": 5, + "EditSeparator1": 1, + "EditCut": 1, + "EditCopy": 1, + "EditPaste": 1, + "EditClear": 1, + "EditSeparator2": 1, + "EditSelectAll": 1, + "UntitledSeparator": 1, + "AppleMenuItem": 1, + "AboutItem": 1, + "EndMenu": 1, + "Report": 2, "BillingReport": 1, "Compatibility": 2, "Units": 1, "Width": 3, "PageHeader": 1, + "Type": 34, "Height": 5, "Body": 1, "PageFooter": 1, @@ -68602,35 +68899,35 @@ "db.Rollback": 1, "Else": 2, "db.Commit": 1, - "Menu": 2, - "MainMenuBar": 1, - "MenuItem": 11, - "FileMenu": 1, - "SpecialMenu": 13, - "Text": 13, - "Index": 14, - "-": 14, - "AutoEnable": 13, - "True": 46, - "Visible": 41, - "QuitMenuItem": 1, - "FileQuit": 1, - "ShortcutKey": 6, - "Shortcut": 6, - "EditMenu": 1, - "EditUndo": 1, - "MenuModifier": 5, - "EditSeparator1": 1, - "EditCut": 1, - "EditCopy": 1, - "EditPaste": 1, - "EditClear": 1, - "EditSeparator2": 1, - "EditSelectAll": 1, - "UntitledSeparator": 1, - "AppleMenuItem": 1, - "AboutItem": 1, - "EndMenu": 1, + "Class": 3, + "Protected": 1, + "App": 1, + "Inherits": 1, + "Application": 1, + "Constant": 3, + "Name": 31, + "kEditClear": 1, + "String": 3, + "Dynamic": 3, + "False": 14, + "Default": 9, + "Scope": 4, + "Public": 3, + "#Tag": 5, + "Instance": 5, + "Platform": 5, + "Windows": 2, + "Language": 5, + "Definition": 5, + "Linux": 2, + "EndConstant": 3, + "kFileQuit": 1, + "kFileQuitShortcut": 1, + "Mac": 1, + "OS": 1, + "ViewBehavior": 2, + "EndViewBehavior": 2, + "EndClass": 1, "Toolbar": 2, "MyToolbar": 1, "ToolButton": 2, @@ -68716,36 +69013,93 @@ }, "Xtend": { "package": 2, - "example2": 1, + "example6": 1, "import": 7, "org.junit.Test": 2, "static": 4, "org.junit.Assert.*": 2, + "java.io.FileReader": 1, + "java.util.Set": 1, + "extension": 2, + "com.google.common.io.CharStreams.*": 1, "class": 4, - "BasicExpressions": 2, + "Movies": 1, "{": 14, "@Test": 7, "def": 7, "void": 7, - "literals": 5, + "numberOfActionMovies": 1, "(": 42, ")": 42, + "assertEquals": 14, + "movies.filter": 2, + "[": 9, + "categories.contains": 1, + "]": 9, + ".size": 2, + "}": 13, + "yearOfBestMovieFrom80ies": 1, + ".contains": 1, + "year": 2, + ".sortBy": 1, + "rating": 3, + ".last.year": 1, + "sumOfVotesOfTop2": 1, + "val": 9, + "long": 2, + "movies": 3, + "movies.sortBy": 1, + "-": 5, + ".take": 1, + ".map": 1, + "numberOfVotes": 2, + ".reduce": 1, + "a": 2, + "b": 2, + "|": 2, + "+": 6, + "_229": 1, + "new": 2, + "FileReader": 1, + ".readLines.map": 1, + "line": 1, + "segments": 1, + "line.split": 1, + ".iterator": 2, + "return": 1, + "Movie": 2, + "segments.next": 4, + "Integer": 1, + "parseInt": 1, + "Double": 1, + "parseDouble": 1, + "Long": 1, + "parseLong": 1, + "segments.toSet": 1, + "@Data": 1, + "String": 2, + "title": 1, + "int": 1, + "double": 2, + "Set": 1, + "": 1, + "categories": 1, + "example2": 1, + "BasicExpressions": 2, + "literals": 5, "//": 11, "string": 1, "work": 1, "with": 2, "single": 1, "or": 1, - "double": 2, "quotes": 1, - "assertEquals": 14, "number": 1, "big": 1, "decimals": 1, "in": 2, "this": 1, "case": 1, - "+": 6, "*": 1, "bd": 3, "boolean": 1, @@ -68753,7 +69107,6 @@ "false": 1, "getClass": 1, "typeof": 1, - "}": 13, "collections": 2, "There": 1, "are": 1, @@ -68763,28 +69116,22 @@ "create": 1, "and": 1, "numerous": 1, - "extension": 2, "which": 1, "make": 1, "working": 1, "them": 1, "convenient.": 1, - "val": 9, "list": 1, "newArrayList": 2, "list.map": 1, - "[": 9, "toUpperCase": 1, - "]": 9, ".head": 1, "set": 1, "newHashSet": 1, "set.filter": 1, "it": 2, - ".size": 2, "map": 1, "newHashMap": 1, - "-": 5, "map.get": 1, "controlStructures": 1, "looks": 1, @@ -68805,7 +69152,6 @@ "someValue": 2, "switch": 1, "Number": 1, - "String": 2, "loops": 1, "for": 2, "loop": 2, @@ -68815,73 +69161,11 @@ "..": 1, "while": 2, "iterator": 1, - ".iterator": 2, "iterator.hasNext": 1, - "iterator.next": 1, - "example6": 1, - "java.io.FileReader": 1, - "java.util.Set": 1, - "com.google.common.io.CharStreams.*": 1, - "Movies": 1, - "numberOfActionMovies": 1, - "movies.filter": 2, - "categories.contains": 1, - "yearOfBestMovieFrom80ies": 1, - ".contains": 1, - "year": 2, - ".sortBy": 1, - "rating": 3, - ".last.year": 1, - "sumOfVotesOfTop2": 1, - "long": 2, - "movies": 3, - "movies.sortBy": 1, - ".take": 1, - ".map": 1, - "numberOfVotes": 2, - ".reduce": 1, - "a": 2, - "b": 2, - "|": 2, - "_229": 1, - "new": 2, - "FileReader": 1, - ".readLines.map": 1, - "line": 1, - "segments": 1, - "line.split": 1, - "return": 1, - "Movie": 2, - "segments.next": 4, - "Integer": 1, - "parseInt": 1, - "Double": 1, - "parseDouble": 1, - "Long": 1, - "parseLong": 1, - "segments.toSet": 1, - "@Data": 1, - "title": 1, - "int": 1, - "Set": 1, - "": 1, - "categories": 1 + "iterator.next": 1 }, "YAML": { - "gem": 1, "-": 25, - "local": 1, - "gen": 1, - "rdoc": 2, - "run": 1, - "tests": 1, - "inline": 1, - "source": 1, - "line": 1, - "numbers": 1, - "gempath": 1, - "/usr/local/rubygems": 1, - "/home/gavin/.rubygems": 1, "http_interactions": 1, "request": 1, "method": 1, @@ -68914,62 +69198,29 @@ "Nov": 1, "GMT": 1, "recorded_with": 1, - "VCR": 1 + "VCR": 1, + "gem": 1, + "local": 1, + "gen": 1, + "rdoc": 2, + "run": 1, + "tests": 1, + "inline": 1, + "source": 1, + "line": 1, + "numbers": 1, + "gempath": 1, + "/usr/local/rubygems": 1, + "/home/gavin/.rubygems": 1 }, "Zephir": { - "%": 10, - "{": 58, - "#define": 1, - "MAX_FACTOR": 3, - "}": 52, "namespace": 4, "Test": 4, - ";": 91, - "#include": 9, - "static": 1, - "long": 3, - "fibonacci": 4, - "(": 59, - "n": 5, - ")": 57, - "if": 39, - "<": 2, - "return": 26, - "else": 11, - "-": 25, - "+": 5, - "class": 3, - "Cblock": 1, - "public": 22, - "function": 22, - "testCblock1": 1, - "int": 3, - "a": 6, - "testCblock2": 1, - "#ifdef": 1, - "HAVE_CONFIG_H": 1, - "#endif": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "ZEPHIR_INIT_CLASS": 2, - "Test_Router_Exception": 2, - "ZEPHIR_REGISTER_CLASS_EX": 1, "Router": 3, - "Exception": 4, - "test": 1, - "router_exception": 1, - "zend_exception_get_default": 1, - "TSRMLS_C": 1, - "NULL": 1, - "SUCCESS": 1, - "extern": 1, - "zend_class_entry": 1, - "*test_router_exception_ce": 1, - "php": 1, - "extends": 1, + ";": 91, + "class": 3, "Route": 1, + "{": 58, "protected": 9, "_pattern": 3, "_compiledPattern": 3, @@ -68980,19 +69231,27 @@ "_id": 2, "_name": 3, "_beforeMatch": 3, + "public": 22, + "function": 22, "__construct": 1, + "(": 59, "pattern": 37, "paths": 7, "null": 11, "httpMethods": 6, + ")": 57, "this": 28, + "-": 25, "reConfigure": 2, "let": 51, + "}": 52, "compilePattern": 2, "var": 4, "idPattern": 6, + "if": 39, "memstr": 10, "str_replace": 6, + "return": 26, ".": 5, "via": 1, "extractNamedParams": 2, @@ -69004,6 +69263,7 @@ "boolean": 1, "notValid": 5, "false": 3, + "int": 3, "cursor": 4, "cursorVar": 5, "marker": 4, @@ -69022,6 +69282,8 @@ "for": 4, "in": 4, "1": 3, + "else": 11, + "+": 5, "substr": 3, "break": 9, "&&": 6, @@ -69047,6 +69309,7 @@ "typeof": 2, "throw": 1, "new": 1, + "Exception": 4, "explode": 1, "switch": 1, "count": 1, @@ -69086,7 +69349,41 @@ "getHostname": 1, "convert": 1, "converter": 2, - "getConverters": 1 + "getConverters": 1, + "%": 10, + "#define": 1, + "MAX_FACTOR": 3, + "#include": 9, + "static": 1, + "long": 3, + "fibonacci": 4, + "n": 5, + "<": 2, + "Cblock": 1, + "testCblock1": 1, + "a": 6, + "testCblock2": 1, + "#ifdef": 1, + "HAVE_CONFIG_H": 1, + "#endif": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "ZEPHIR_INIT_CLASS": 2, + "Test_Router_Exception": 2, + "ZEPHIR_REGISTER_CLASS_EX": 1, + "test": 1, + "router_exception": 1, + "zend_exception_get_default": 1, + "TSRMLS_C": 1, + "NULL": 1, + "SUCCESS": 1, + "php": 1, + "extends": 1, + "extern": 1, + "zend_class_entry": 1, + "*test_router_exception_ce": 1 }, "Zimpl": { "#": 2, @@ -69154,73 +69451,16 @@ "db.part/user": 17 }, "fish": { - "#": 18, - "set": 49, - "-": 102, - "g": 1, - "IFS": 4, - "n": 5, - "t": 2, - "l": 15, - "configdir": 2, - "/.config": 1, - "if": 21, - "q": 9, - "XDG_CONFIG_HOME": 2, - "end": 33, - "not": 8, - "fish_function_path": 4, - "configdir/fish/functions": 1, - "__fish_sysconfdir/functions": 1, - "__fish_datadir/functions": 3, - "contains": 4, - "[": 13, - "]": 13, - "fish_complete_path": 4, - "configdir/fish/completions": 1, - "__fish_sysconfdir/completions": 1, - "__fish_datadir/completions": 3, - "test": 7, - "d": 3, - "/usr/xpg4/bin": 3, - "PATH": 6, - "path_list": 4, - "/bin": 1, - "/usr/bin": 1, - "/usr/X11R6/bin": 1, - "/usr/local/bin": 1, - "__fish_bin_dir": 1, - "switch": 3, - "USER": 1, - "case": 9, - "root": 1, - "/sbin": 1, - "/usr/sbin": 1, - "/usr/local/sbin": 1, - "for": 1, - "i": 5, - "in": 2, "function": 6, - "fish_sigtrap_handler": 1, - "on": 2, - "signal": 1, - "TRAP": 1, - "no": 2, - "scope": 1, - "shadowing": 1, - "description": 2, - "breakpoint": 1, - "__fish_on_interactive": 2, - "event": 1, - "fish_prompt": 1, - "__fish_config_interactive": 1, - "functions": 5, - "e": 6, "eval": 5, + "-": 102, "S": 1, + "d": 3, + "#": 18, "If": 2, "we": 2, "are": 1, + "in": 2, "an": 1, "interactive": 8, "shell": 1, @@ -69239,6 +69479,7 @@ "was": 1, "executed.": 1, "don": 1, + "t": 2, "do": 1, "this": 1, "commands": 1, @@ -69253,11 +69494,15 @@ "work": 1, "using": 1, "eval.": 1, + "set": 49, + "l": 15, "mode": 5, + "if": 21, "status": 7, "is": 3, "else": 3, "none": 1, + "end": 33, "echo": 3, "|": 3, ".": 2, @@ -69266,14 +69511,22 @@ "res": 2, "return": 6, "funced": 3, + "description": 2, "editor": 7, "EDITOR": 1, "funcname": 14, "while": 2, + "q": 9, "argv": 9, + "[": 13, + "]": 13, + "switch": 3, + "case": 9, "h": 1, "help": 1, "__fish_print_help": 1, + "e": 6, + "i": 5, "set_color": 4, "red": 2, "printf": 3, @@ -69284,7 +69537,10 @@ "begin": 2, ";": 7, "or": 3, + "not": 8, + "test": 7, "init": 5, + "n": 5, "nend": 2, "editor_cmd": 2, "type": 1, @@ -69292,7 +69548,10 @@ "/dev/null": 2, "fish": 3, "z": 1, + "IFS": 4, + "functions": 5, "fish_indent": 2, + "no": 2, "indent": 1, "prompt": 2, "read": 1, @@ -69307,7 +69566,45 @@ "self": 2, "random": 2, "stat": 2, - "rm": 1 + "rm": 1, + "g": 1, + "configdir": 2, + "/.config": 1, + "XDG_CONFIG_HOME": 2, + "fish_function_path": 4, + "configdir/fish/functions": 1, + "__fish_sysconfdir/functions": 1, + "__fish_datadir/functions": 3, + "contains": 4, + "fish_complete_path": 4, + "configdir/fish/completions": 1, + "__fish_sysconfdir/completions": 1, + "__fish_datadir/completions": 3, + "/usr/xpg4/bin": 3, + "PATH": 6, + "path_list": 4, + "/bin": 1, + "/usr/bin": 1, + "/usr/X11R6/bin": 1, + "/usr/local/bin": 1, + "__fish_bin_dir": 1, + "USER": 1, + "root": 1, + "/sbin": 1, + "/usr/sbin": 1, + "/usr/local/sbin": 1, + "for": 1, + "fish_sigtrap_handler": 1, + "on": 2, + "signal": 1, + "TRAP": 1, + "scope": 1, + "shadowing": 1, + "breakpoint": 1, + "__fish_on_interactive": 2, + "event": 1, + "fish_prompt": 1, + "__fish_config_interactive": 1 }, "wisp": { ";": 199, @@ -69762,7 +70059,7 @@ "CSS": 43867, "Ceylon": 50, "Cirru": 244, - "Clojure": 510, + "Clojure": 1899, "CoffeeScript": 2951, "Common Lisp": 2186, "Component Pascal": 825, @@ -69794,7 +70091,8 @@ "Groovy": 93, "Groovy Server Pages": 91, "HTML": 413, - "Haml": 4, + "HTML+ERB": 213, + "Haml": 121, "Handlebars": 69, "Haskell": 302, "Hy": 155, @@ -69962,7 +70260,7 @@ "CSS": 2, "Ceylon": 1, "Cirru": 9, - "Clojure": 7, + "Clojure": 8, "CoffeeScript": 9, "Common Lisp": 3, "Component Pascal": 2, @@ -69994,7 +70292,8 @@ "Groovy": 5, "Groovy Server Pages": 4, "HTML": 2, - "Haml": 1, + "HTML+ERB": 2, + "Haml": 2, "Handlebars": 2, "Haskell": 3, "Hy": 2, @@ -70137,5 +70436,5 @@ "fish": 3, "wisp": 1 }, - "md5": "1edee1d2c454fb877027ae980cd163ef" + "md5": "dace5f780133fcc691c410815dc2bf63" } \ No newline at end of file diff --git a/samples/Clojure/index.cljs.hl b/samples/Clojure/index.cljs.hl new file mode 100644 index 00000000..043df92b --- /dev/null +++ b/samples/Clojure/index.cljs.hl @@ -0,0 +1,146 @@ +;; Copyright (c) Alan Dipert and Micha Niskin. All rights reserved. +;; The use and distribution terms for this software are covered by the +;; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) +;; which can be found in the file epl-v10.html at the root of this distribution. +;; By using this software in any fashion, you are agreeing to be bound by +;; the terms of this license. +;; You must not remove this notice, or any other, from this software. + +(page "index.html" + (:refer-clojure :exclude [nth]) + (:require + [tailrecursion.hoplon.reload :refer [reload-all]] + [tailrecursion.hoplon.util :refer [nth name pluralize]] + [tailrecursion.hoplon.storage-atom :refer [local-storage]])) + +;; utility functions ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + +(declare route state editing) + +(reload-all) + +(def mapvi (comp vec map-indexed)) + +(defn dissocv [v i] + (let [z (- (dec (count v)) i)] + (cond (neg? z) v + (zero? z) (pop v) + (pos? z) (into (subvec v 0 i) (subvec v (inc i)))))) + +(defn decorate [todo route editing i] + (let [{done? :completed text :text} todo] + (-> todo (assoc :editing (= editing i) + :visible (and (not (empty? text)) + (or (= "#/" route) + (and (= "#/active" route) (not done?)) + (and (= "#/completed" route) done?))))))) + +;; persisted state cell (AKA: stem cell) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + +(def state (-> (cell []) (local-storage ::store))) + +;; local state cells ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + +(defc loaded? false) +(defc editing nil) +(def route (route-cell "#/")) + +;; formula cells (computed state) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + +(defc= completed (filter :completed state)) +(defc= active (remove :completed state)) +(defc= plural-item (pluralize "item" (count active))) +(defc= todos (mapvi #(list %1 (decorate %2 route editing %1)) state)) + +;; state transition functions ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + +(defn todo [t] {:completed false :text t}) +(defn destroy! [i] (swap! state dissocv i)) +(defn done! [i v] (swap! state assoc-in [i :completed] v)) +(defn clear-done! [& _] (swap! state #(vec (remove :completed %)))) +(defn new! [t] (when (not (empty? t)) (swap! state conj (todo t)))) +(defn all-done! [v] (swap! state #(mapv (fn [x] (assoc x :completed v)) %))) +(defn editing! [i v] (reset! editing (if v i nil))) +(defn text! [i v] (if (empty? v) (destroy! i) (swap! state assoc-in [i :text] v))) + +;; page ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + +(html :lang "en" + (head + (meta :charset "utf-8") + (meta :http-equiv "X-UA-Compatible" :content "IE=edge,chrome=1") + (link :rel "stylesheet" :href "base.css") + (title "Hoplon • TodoMVC")) + (body + (noscript + (div :id "noscript" + (p "JavaScript is required to view this page."))) + (div + (section :id "todoapp" + (header :id "header" + (h1 "todos") + (form :on-submit #(do (new! (val-id :new-todo)) + (do! (by-id :new-todo) :value "")) + (input + :id "new-todo" + :type "text" + :autofocus true + :placeholder "What needs to be done?" + :on-blur #(do! (by-id :new-todo) :value "")))) + (section + :id "main" + :do-toggle (cell= (not (and (empty? active) (empty? completed)))) + (input + :id "toggle-all" + :type "checkbox" + :do-attr (cell= {:checked (empty? active)}) + :on-click #(all-done! (val-id :toggle-all))) + (label :for "toggle-all" + "Mark all as complete") + (ul :id "todo-list" + (loop-tpl + :reverse true + :bind-ids [done# edit#] + :bindings [[i {edit? :editing done? :completed todo-text :text show? :visible}] todos] + (li + :do-class (cell= {:completed done? :editing edit?}) + :do-toggle show? + (div :class "view" :on-dblclick #(editing! @i true) + (input + :id done# + :type "checkbox" + :class "toggle" + :do-attr (cell= {:checked done?}) + :on-click #(done! @i (val-id done#))) + (label (text "~{todo-text}")) + (button + :type "submit" + :class "destroy" + :on-click #(destroy! @i))) + (form :on-submit #(editing! @i false) + (input + :id edit# + :type "text" + :class "edit" + :do-value todo-text + :do-focus edit? + :on-blur #(when @edit? (editing! @i false)) + :on-change #(when @edit? (text! @i (val-id edit#))))))))) + (footer + :id "footer" + :do-toggle (cell= (not (and (empty? active) (empty? completed)))) + (span :id "todo-count" + (strong (text "~(count active) ")) + (span (text "~{plural-item} left"))) + (ul :id "filters" + (li (a :href "#/" :do-class (cell= {:selected (= "#/" route)}) "All")) + (li (a :href "#/active" :do-class (cell= {:selected (= "#/active" route)}) "Active")) + (li (a :href "#/completed" :do-class (cell= {:selected (= "#/completed" route)}) "Completed"))) + (button + :type "submit" + :id "clear-completed" + :on-click #(clear-done!) + (text "Clear completed (~(count completed))")))) + (footer :id "info" + (p "Double-click to edit a todo") + (p "Part of " (a :href "http://github.com/tailrecursion/hoplon-demos/" "hoplon-demos")))))) diff --git a/samples/HTML+ERB/fishbowl.html.erb.deface b/samples/HTML+ERB/fishbowl.html.erb.deface new file mode 100644 index 00000000..43d60cec --- /dev/null +++ b/samples/HTML+ERB/fishbowl.html.erb.deface @@ -0,0 +1,31 @@ + +<% if Spree::Config[:enable_fishbowl] %> +
+
+
+ <%= t(:fishbowl_settings)%> + <% @fishbowl_options.each do |key| %> +
+ <%= label_tag(key, t(key.to_s.gsub('fishbowl_', '').to_sym) + ': ') + tag(:br) %> + <%= text_field_tag('preferences[' + key.to_s + ']', Spree::Config[key], { :size => 10, :class => 'fullwidth' }) %> +
+ <% end %> +
+ <%= hidden_field_tag 'preferences[fishbowl_always_fetch_current_inventory]', '0' %> + <%= check_box_tag('preferences[fishbowl_always_fetch_current_inventory]', "1", Spree::Config[:fishbowl_always_fetch_current_inventory]) %> + <%= t(:always_fetch_current_inventory) %> +
+ <% if !@location_groups.empty? %> +
+ <%= label_tag(:fishbowl_location_group, t(:location_group) + ': ') + tag(:br) %> + <%= select('preferences', 'fishbowl_location_group', @location_groups, { :selected => Spree::Config[:fishbowl_location_group]}, { :class => ['select2', 'fullwidth'] }) %> +
+ <% end %> +
+
+
+ + +<% end %> \ No newline at end of file diff --git a/samples/HTML+ERB/index.html.erb b/samples/HTML+ERB/index.html.erb new file mode 100644 index 00000000..f8888a4b --- /dev/null +++ b/samples/HTML+ERB/index.html.erb @@ -0,0 +1,39 @@ +<% provide(:title, @header) %> +<% present @users do |user_presenter| %> +
+

<%= @header %>

+
+ +
+
+ <%= will_paginate %> +
+
+
+
+
+
Name
+
Email
+
Chords
+
Keys
+
Tunings
+
Credits
+
Prem?
+
Since?
+
+ + <% if @users == [] %> +
+
No Users
+
+ <% else %> + <%= render @users %> + <% end %> +
+
+
+
+ <%= will_paginate %> +
+
+<% end %> \ No newline at end of file diff --git a/samples/Haml/buttons.html.haml.deface b/samples/Haml/buttons.html.haml.deface new file mode 100644 index 00000000..f338721a --- /dev/null +++ b/samples/Haml/buttons.html.haml.deface @@ -0,0 +1,29 @@ +/ + replace '.actions' + +.pull-right + .btn-group + = link_to page.url, target: "_blank", title: t('.view_live_html'), class: "tip btn btn-xs btn-default" do + %i.icon-picture.row-black + + = link_to refinery.edit_admin_page_path(page.nested_url, + switch_locale: (page.translations.first.locale unless page.translated_to_default_locale?)), + title: t('edit', :scope => 'refinery.admin.pages'), + class: "tip btn btn-xs btn-default" do + %i.icon-edit.row-blue + + + - if page.deletable? + = link_to refinery.admin_page_path(page.nested_url), + methode: :delete, + title: t('delete', :scope => 'refinery.admin.pages'), + class: "tip cancel confirm-delete btn btn-xs btn-default", + data: { confirm: t('message', scope: 'refinery.admin.delete', title: page_title_with_translations(page)) } do + %i.icon-trash.row-red + - else + %button.btn.btn-xs.btn-default.disabled + %i.icon-trash + + .btn-group + = link_to refinery.new_admin_page_path(:parent_id => page.id), title: t('new', :scope => 'refinery.admin.pages'), class: "tip btn btn-xs btn-default" do + %i.icon-plus.row-green From 276080aeec6d9fd6ef6bf9eccc3e78d4423b2672 Mon Sep 17 00:00:00 2001 From: Builder's Brewery Date: Wed, 6 Aug 2014 12:39:17 +0200 Subject: [PATCH 198/268] Added LSL language to 'lib/linguist/languages.yml' --- lib/linguist/languages.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index ecc1bed7..de8600f2 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1141,6 +1141,18 @@ LLVM: extensions: - .ll +LSL: + type: programming + lexer: LSL + aliases: + - lsl + ace_mode: lsl + extensions: + - .lsl + interpreters: + - lsl + color: '#3d9970' + Lasso: type: programming lexer: Lasso From 7bfb6ed5d768a6459f679cf2c95dc4f9324dd82a Mon Sep 17 00:00:00 2001 From: Builder's Brewery Date: Wed, 6 Aug 2014 12:42:32 +0200 Subject: [PATCH 199/268] Added LSL sample to 'samples/LSL/LSL.lsl' --- samples/LSL/LSL.lsl | 74 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 samples/LSL/LSL.lsl diff --git a/samples/LSL/LSL.lsl b/samples/LSL/LSL.lsl new file mode 100644 index 00000000..5d281b95 --- /dev/null +++ b/samples/LSL/LSL.lsl @@ -0,0 +1,74 @@ +/* + Testing syntax highlighting + for the Linden Scripting Language +*/ + +integer someIntNormal = 3672; +integer someIntHex = 0x00000000; +integer someIntMath = PI_BY_TWO; + +integer event = 5673;// 'event' is invalid.illegal + +key someKeyTexture = TEXTURE_DEFAULT; +string someStringSpecial = EOF; + +some_user_defined_function_without_return_type(string inputAsString) +{ + llSay(PUBLIC_CHANNEL, inputAsString); +} + +string user_defined_function_returning_a_string(key inputAsKey) +{ + return (string)inputAsKey; +} + +default +{ + state_entry() + { + key someKey = NULL_KEY; + someKey = llGetOwner(); + + string someString = user_defined_function_returning_a_string(someKey); + + some_user_defined_function_without_return_type(someString); + } + + touch_start(integer num_detected) + { + list agentsInRegion = llGetAgentList(AGENT_LIST_REGION, []); + integer numOfAgents = llGetListLength(agentsInRegion); + + integer index; // defaults to 0 + for (; index <= numOfAgents - 1; index++) // for each agent in region + { + llRegionSayTo(llList2Key(agentsInRegion, index), PUBLIC_CHANNEL, "Hello, Avatar!"); + } + } + + touch_end(integer num_detected) + { + someIntNormal = 3672; + someIntHex = 0x00000000; + someIntMath = PI_BY_TWO; + + event = 5673;// 'event' is invalid.illegal + + someKeyTexture = TEXTURE_DEFAULT; + someStringSpecial = EOF; + + llSetInventoryPermMask("some item", MASK_NEXT, PERM_ALL);// 'llSetInventoryPermMask' is reserved.godmode + + llWhisper(PUBLIC_CHANNEL, "Leaving \"default\" now..."); + state other; + } +} + +state other +{ + state_entry() + { + llWhisper(PUBLIC_CHANNEL, "Entered \"state other\", returning to \"default\" again..."); + state default; + } +} From 473688b109f84a002f6373f45d558e777a536345 Mon Sep 17 00:00:00 2001 From: Builder's Brewery Date: Wed, 6 Aug 2014 12:47:56 +0200 Subject: [PATCH 200/268] Added tests for LSL to 'test/test_language.rb' --- test/test_language.rb | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/test_language.rb b/test/test_language.rb index 7c81ceef..25086562 100644 --- a/test/test_language.rb +++ b/test/test_language.rb @@ -32,6 +32,7 @@ class TestLanguage < Test::Unit::TestCase assert_equal Lexer['Java'], Language['ChucK'].lexer assert_equal Lexer['Java'], Language['Java'].lexer assert_equal Lexer['JavaScript'], Language['JavaScript'].lexer + assert_equal Lexer['LSL'], Language['LSL'].lexer assert_equal Lexer['MOOCode'], Language['Moocode'].lexer assert_equal Lexer['MuPAD'], Language['mupad'].lexer assert_equal Lexer['NASM'], Language['Assembly'].lexer @@ -92,6 +93,7 @@ class TestLanguage < Test::Unit::TestCase assert_equal Language['Java'], Language.find_by_alias('java') assert_equal Language['JavaScript'], Language.find_by_alias('javascript') assert_equal Language['JavaScript'], Language.find_by_alias('js') + assert_equal Language['LSL'], Language.find_by_alias('lsl') assert_equal Language['Literate Haskell'], Language.find_by_alias('lhs') assert_equal Language['Literate Haskell'], Language.find_by_alias('literate-haskell') assert_equal Language['Objective-C'], Language.find_by_alias('objc') @@ -185,6 +187,7 @@ class TestLanguage < Test::Unit::TestCase def test_programming assert_equal :programming, Language['JavaScript'].type + assert_equal :programming, Language['LSL'].type assert_equal :programming, Language['Perl'].type assert_equal :programming, Language['PowerShell'].type assert_equal :programming, Language['Python'].type @@ -324,6 +327,7 @@ class TestLanguage < Test::Unit::TestCase assert_equal '#3581ba', Language['Python'].color assert_equal '#f1e05a', Language['JavaScript'].color assert_equal '#31859c', Language['TypeScript'].color + assert_equal '#3d9970', Language['LSL'].color end def test_colors @@ -336,6 +340,7 @@ class TestLanguage < Test::Unit::TestCase assert_equal 'coffee', Language['CoffeeScript'].ace_mode assert_equal 'csharp', Language['C#'].ace_mode assert_equal 'css', Language['CSS'].ace_mode + assert_equal 'lsl', Language['LSL'].ace_mode assert_equal 'javascript', Language['JavaScript'].ace_mode end @@ -350,6 +355,7 @@ class TestLanguage < Test::Unit::TestCase end def test_extensions + assert Language['LSL'].extensions.include?('.lsl') assert Language['Perl'].extensions.include?('.pl') assert Language['Python'].extensions.include?('.py') assert Language['Ruby'].extensions.include?('.rb') From eff4da20f81035edc10e5c16dcdce0e5088545f5 Mon Sep 17 00:00:00 2001 From: Builder's Brewery Date: Wed, 6 Aug 2014 13:03:10 +0200 Subject: [PATCH 201/268] removed LSLalias from 'lib/linguist/languages.yml' --- lib/linguist/languages.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index de8600f2..2ccc57a9 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1144,8 +1144,6 @@ LLVM: LSL: type: programming lexer: LSL - aliases: - - lsl ace_mode: lsl extensions: - .lsl From 69ff3c79b4c920133a5361410f6dc937ae03335e Mon Sep 17 00:00:00 2001 From: Builder's Brewery Date: Wed, 6 Aug 2014 13:04:31 +0200 Subject: [PATCH 202/268] removed find_by_alias('lsl') test --- test/test_language.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/test/test_language.rb b/test/test_language.rb index 25086562..a037c050 100644 --- a/test/test_language.rb +++ b/test/test_language.rb @@ -93,7 +93,6 @@ class TestLanguage < Test::Unit::TestCase assert_equal Language['Java'], Language.find_by_alias('java') assert_equal Language['JavaScript'], Language.find_by_alias('javascript') assert_equal Language['JavaScript'], Language.find_by_alias('js') - assert_equal Language['LSL'], Language.find_by_alias('lsl') assert_equal Language['Literate Haskell'], Language.find_by_alias('lhs') assert_equal Language['Literate Haskell'], Language.find_by_alias('literate-haskell') assert_equal Language['Objective-C'], Language.find_by_alias('objc') From b8e570bb3d356f4a9e4b79da09ee4ddea8a803a4 Mon Sep 17 00:00:00 2001 From: Chiang Fong Lee Date: Wed, 6 Aug 2014 20:07:08 +0800 Subject: [PATCH 203/268] Add Foundation js to vendor.yml, and test_blob.rb Excludes files like: - foundation.js - foundation.min.js - foundation.abide.js --- lib/linguist/vendor.yml | 3 +++ test/test_blob.rb | 5 +++++ 2 files changed, 8 insertions(+) diff --git a/lib/linguist/vendor.yml b/lib/linguist/vendor.yml index 3911e4c9..04e7ab1a 100644 --- a/lib/linguist/vendor.yml +++ b/lib/linguist/vendor.yml @@ -202,6 +202,9 @@ - (^|/)cordova([^.]*)(\.min)?\.js$ - (^|/)cordova\-\d\.\d(\.\d)?(\.min)?\.js$ +# Foundation js +- foundation(\..*)?\.js$ + # Vagrant - ^Vagrantfile$ diff --git a/test/test_blob.rb b/test/test_blob.rb index 54e10030..d9adacc9 100644 --- a/test/test_blob.rb +++ b/test/test_blob.rb @@ -413,6 +413,11 @@ class TestBlob < Test::Unit::TestCase assert blob("cordova-2.1.0.js").vendored? assert blob("cordova-2.1.0.min.js").vendored? + # Foundation js + assert blob("foundation.js").vendored? + assert blob("foundation.min.js").vendored? + assert blob("foundation.abide.js").vendored? + # Vagrant assert blob("Vagrantfile").vendored? From 417bf7e1c9b01cc24fd34be2a88d1c4500c0495d Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Wed, 6 Aug 2014 17:57:49 +0100 Subject: [PATCH 204/268] Reworking Rake tasks --- Rakefile | 68 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 34 insertions(+), 34 deletions(-) diff --git a/Rakefile b/Rakefile index 68e7ee89..53f5e924 100644 --- a/Rakefile +++ b/Rakefile @@ -23,58 +23,57 @@ task :build_gem do File.delete("lib/linguist/languages.json") end +# Want to do: rake benchmark:compare refs=20154eb04...6ed0a05b4 +# If output for 20154eb04 or 6ed0a05b4 doesn't exist then should throw error +# Classification outputs for each commit need to be generated before the comparison can be done +# With something like: rake benchmark:generate ref=20154eb04 + namespace :benchmark do require 'git' - require 'linguist/language' - require './lib/linguist/diff' + benchmark_path = "benchmark/results" git = Git.open('.') - desc "Testin'" - task :run do - reference, compare = ENV['compare'].split('...') + desc "Compare outputs" + task :compare do + reference, compare = ENV['refs'].split('...') puts "Comparing #{reference}...#{compare}" + + # Abort if there are uncommitted changes + abort("Uncommitted changes -- aborting") if git.status.changed.any? + + [reference, compare].each do |ref| + abort("No output file for #{ref}, run 'rake benchmark:generate ref=#{ref}'") unless File.exist?("#{benchmark_path}/#{ref}.json") + end + end + + desc "Generate classification summary for given ref" + task :generate do + ref = ENV['ref'] + abort("Must specify a commit ref, e.g. 'rake benchmark:generate ref=08819f82'") unless ref abort("Unstaged changes - aborting") if git.status.changed.any? # Get the current branch # Would like to get this from the Git gem current_branch = `git rev-parse --abbrev-ref HEAD`.strip - # Create tmp branch for reference commit - puts "Creating branch tmp_#{reference}" - git.branch("tmp_#{reference}").checkout - git.reset_hard(reference) + puts "Checking out #{ref}" + git.checkout(ref) # RUN BENCHMARK # Go through benchmark/samples/LANG dirs # For each Language - Rake::Task["benchmark:index"].execute(:commit => reference) + Rake::Task["benchmark:index"].execute(:commit => ref) - # Create tmp branch for compare commit - puts "" - puts "Creating temporary branch tmp_#{compare}" - git.branch("tmp_#{compare}").checkout - git.reset_hard(compare) - - # RUN BENCHMARK AGAIN - # `rake benchmark:index` - Rake::Task["benchmark:index"].execute(:commit => compare) - - git.branch(current_branch).checkout - - # CLEAN UP - git.branch("tmp_#{reference}").delete - git.branch("tmp_#{compare}").delete - - # COMPARE AND PRINT RESULTS - Rake::Task["benchmark:results"].execute + # Checkout original branch + git.checkout(current_branch) end desc "Build benchmark index" task :index, [:commit] do |t, args| - require 'linguist/language' + require 'linguist/language' results = Hash.new languages = Dir.glob('benchmark/samples/*') @@ -99,17 +98,18 @@ namespace :benchmark do end end - File.open("benchmark/results/#{args[:commit]}_output.json", "w") {|f| f.write(results.to_json) } + File.open("benchmark/results/#{args[:commit]}.json", "w") {|f| f.write(results.to_json) } end desc "Compare results" task :results do + # Deep diffing + require './lib/linguist/diff' - # `diff -u file1 file2` - reference, compare = ENV['compare'].split('...') + reference, compare = ENV['refs'].split('...') - reference_classifications_file = "benchmark/results/#{reference}_output.json" - compare_classifications_file = "benchmark/results/#{compare}_output.json" + reference_classifications_file = "benchmark/results/#{reference}.json" + compare_classifications_file = "benchmark/results/#{compare}.json" # DO COMPARISON... abort("No result files to compare") unless (File.exist?(reference_classifications_file) && File.exist?(compare_classifications_file)) From 8cdb8ed48db2c70332bcbe9ca1246d7fdf76795f Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Wed, 6 Aug 2014 19:22:16 +0100 Subject: [PATCH 205/268] Heuristics on and a bad commit for C++ --- lib/linguist/heuristics.rb | 4 ++-- lib/linguist/languages.yml | 15 +-------------- 2 files changed, 3 insertions(+), 16 deletions(-) diff --git a/lib/linguist/heuristics.rb b/lib/linguist/heuristics.rb index cd71e8b0..4206ddce 100644 --- a/lib/linguist/heuristics.rb +++ b/lib/linguist/heuristics.rb @@ -1,7 +1,7 @@ module Linguist # A collection of simple heuristics that can be used to better analyze languages. class Heuristics - ACTIVE = false + ACTIVE = true # Public: Given an array of String language names, # apply heuristics against the given data and return an array @@ -42,7 +42,7 @@ module Linguist # Returns an array of Languages or [] def self.disambiguate_c(data, languages) matches = [] - matches << Language["Objective-C"] if data.include?("@interface") + matches << Language["Objective-C"] if data.include?("i") matches << Language["C++"] if data.include?("#include ") matches end diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 5996fc8c..f21eb93c 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -282,20 +282,7 @@ C++: aliases: - cpp extensions: - - .cpp - - .C - - .c++ - - .cc - - .cxx - - .H - - .h++ - - .hh - - .hpp - - .hxx - - .inl - - .tcc - - .tpp - - .ipp + - .a C-ObjDump: type: data From 6b8ee2f3f7f7904a977f4954c4e5d68598141562 Mon Sep 17 00:00:00 2001 From: Wil Gieseler Date: Fri, 25 Jul 2014 22:32:21 -0700 Subject: [PATCH 206/268] Add LookML --- lib/linguist/languages.yml | 8 ++++++ samples/LookML/comments.view.lookml | 43 +++++++++++++++++++++++++++++ 2 files changed, 51 insertions(+) create mode 100644 samples/LookML/comments.view.lookml diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index ecc1bed7..78ddf3b7 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1225,6 +1225,14 @@ Logtalk: - .lgt - .logtalk +LookML: + type: programming + lexer: YAML + ace_mode: yaml + color: "#652B81" + extensions: + - .lookml + Lua: type: programming ace_mode: lua diff --git a/samples/LookML/comments.view.lookml b/samples/LookML/comments.view.lookml new file mode 100644 index 00000000..ed2d29aa --- /dev/null +++ b/samples/LookML/comments.view.lookml @@ -0,0 +1,43 @@ +- view: comments + fields: + + - dimension: id + primary_key: true + type: int + sql: ${TABLE}.id + + - dimension: body + sql: ${TABLE}.body + + - dimension_group: created + type: time + timeframes: [time, date, week, month] + sql: ${TABLE}.created_at + + - dimension: headline_id + type: int + hidden: true + sql: ${TABLE}.headline_id + + - dimension_group: updated + type: time + timeframes: [time, date, week, month] + sql: ${TABLE}.updated_at + + - dimension: user_id + type: int + hidden: true + sql: ${TABLE}.user_id + + - measure: count + type: count + detail: detail* + + + # ----- Detail ------ + sets: + detail: + - id + - headlines.id + - headlines.name + - users.id From 43923976c2579963f9bf920599072b0cca4754c6 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Mon, 11 Aug 2014 14:16:25 -0700 Subject: [PATCH 207/268] Adding test to check that languages.yml includes all extensions represented in samples folder --- lib/linguist/language.rb | 1 + lib/linguist/languages.yml | 39 + lib/linguist/samples.json | 61029 ++++++++++++++++++----------------- test/test_samples.rb | 24 +- 4 files changed, 30636 insertions(+), 30457 deletions(-) diff --git a/lib/linguist/language.rb b/lib/linguist/language.rb index 4b251834..6066b204 100644 --- a/lib/linguist/language.rb +++ b/lib/linguist/language.rb @@ -532,6 +532,7 @@ module Linguist if extnames = extensions[name] extnames.each do |extname| if !options['extensions'].include?(extname) + warn "#{name} has a sample with extension (#{extname}) that isn't explicitly defined in languages.yml" unless extname == '.script!' options['extensions'] << extname end end diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index ecc1bed7..12d42676 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -260,6 +260,7 @@ C: extensions: - .c - .cats + - .h - .w C#: @@ -288,6 +289,7 @@ C++: - .cc - .cxx - .H + - .h - .h++ - .hh - .hpp @@ -444,6 +446,7 @@ Coq: type: programming extensions: - .coq + - .v Cpp-ObjDump: type: data @@ -539,6 +542,7 @@ Dart: Diff: extensions: - .diff + - .patch Dogescript: type: programming @@ -623,6 +627,7 @@ Erlang: color: "#0faf8d" extensions: - .erl + - .escript - .hrl F#: @@ -698,6 +703,7 @@ Forth: extensions: - .fth - .4th + - .forth Frege: type: programming @@ -806,6 +812,9 @@ Gosu: color: "#82937f" extensions: - .gs + - .gst + - .gsx + - .vark Grace: type: programming @@ -841,6 +850,7 @@ Groovy: color: "#e69f56" extensions: - .groovy + - .gradle - .grt - .gtpl - .gvy @@ -945,6 +955,7 @@ IDL: color: "#e3592c" extensions: - .pro + - .dlm INI: type: data @@ -1019,6 +1030,7 @@ JSON: searchable: false extensions: - .json + - .lock - .sublime-keymap - .sublime-mousemap - .sublime-project @@ -1147,6 +1159,9 @@ Lasso: color: "#2584c3" extensions: - .lasso + - .las + - .lasso9 + - .ldml Latte: type: markup @@ -1232,6 +1247,7 @@ Lua: extensions: - .lua - .nse + - .pd_lua - .rbxs interpreters: - lua @@ -1377,6 +1393,7 @@ Myghty: NSIS: extensions: - .nsi + - .nsh Nemerle: type: programming @@ -1441,6 +1458,7 @@ OCaml: color: "#3be133" extensions: - .ml + - .eliom - .eliomi - .ml4 - .mli @@ -1461,6 +1479,7 @@ Objective-C: - objc extensions: - .m + - .h Objective-C++: type: programming @@ -1508,6 +1527,7 @@ OpenEdge ABL: - abl extensions: - .p + - .cls Org: type: prose @@ -1546,6 +1566,7 @@ PHP: - .php - .aw - .ctp + - .module - .php3 - .php4 - .php5 @@ -1594,6 +1615,7 @@ Pascal: extensions: - .pas - .dfm + - .dpr - .lpr Perl: @@ -1603,12 +1625,14 @@ Perl: extensions: - .pl - .PL + - .fcgi - .perl - .ph - .plx - .pm - .pod - .psgi + - .t interpreters: - perl @@ -1817,6 +1841,7 @@ Racket: - .rkt - .rktd - .rktl + - .scrbl Ragel in Ruby Host: type: programming @@ -1886,7 +1911,10 @@ Ruby: - .god - .irbrc - .mspec + - .pluginspec - .podspec + - .rabl + - .rake - .rbuild - .rbw - .rbx @@ -1960,6 +1988,7 @@ Sass: group: CSS extensions: - .sass + - .scss Scala: type: programming @@ -1967,6 +1996,7 @@ Scala: color: "#7dd3b0" extensions: - .scala + - .sbt - .sc Scaml: @@ -1982,6 +2012,7 @@ Scheme: - .scm - .sld - .sls + - .sps - .ss interpreters: - guile @@ -1993,6 +2024,8 @@ Scilab: type: programming extensions: - .sci + - .sce + - .tst Self: type: programming @@ -2012,8 +2045,10 @@ Shell: - zsh extensions: - .sh + - .bash - .bats - .tmux + - .zsh interpreters: - bash - sh @@ -2080,6 +2115,7 @@ Standard ML: extensions: - .ML - .fun + - .sig - .sml Stata: @@ -2280,6 +2316,7 @@ Visual Basic: extensions: - .vb - .bas + - .cls - .frm - .frx - .vba @@ -2308,6 +2345,7 @@ XML: - wsdl extensions: - .xml + - .ant - .axml - .ccxml - .clixml @@ -2321,6 +2359,7 @@ XML: - .fsproj - .glade - .grxml + - .ivy - .jelly - .kml - .launch diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index df38f390..d1b10626 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -119,6 +119,9 @@ ".cu", ".cuh" ], + "Cycript": [ + ".cy" + ], "DM": [ ".dm" ], @@ -803,8 +806,8 @@ "exception.zep.php" ] }, - "tokens_total": 632154, - "languages_total": 873, + "tokens_total": 632405, + "languages_total": 874, "tokens": { "ABAP": { "*/**": 1, @@ -1096,27 +1099,19 @@ "list0_map": 2, "": 14, "": 3, - "option0": 3, - "functor_option0": 2, - "opt": 6, - "option0_map": 1, - "functor_homres": 2, - "c": 3, + "datatype": 4, + "CoYoneda": 7, "r": 25, - "x": 48, + "of": 59, "fun": 56, - "Yoneda_phi": 3, - "Yoneda_psi": 3, + "CoYoneda_phi": 2, + "CoYoneda_psi": 3, "ftor": 9, "fx": 8, - "m": 4, - "mf": 4, - "natrans": 3, - "G": 2, - "Yoneda_phi_nat": 2, - "Yoneda_psi_nat": 2, - "*": 2, - "datatype": 4, + "x": 48, + "int0": 4, + "I": 8, + "int": 2, "bool": 27, "True": 7, "|": 22, @@ -1127,66 +1122,170 @@ "string": 2, "case": 9, "+": 20, - "of": 59, "fprint_val": 2, "": 2, "out": 8, "fprint": 3, + "int2bool": 2, + "i": 6, + "let": 34, + "in": 48, + "if": 7, + "then": 11, + "else": 7, + "end": 73, + "myintlist0": 2, + "g0ofg1": 1, + "list": 1, "myboolist0": 9, - "list_t": 1, - "g0ofg1_list": 1, - "Yoneda_bool_list0": 3, - "myboolist1": 2, "fprintln": 3, "stdout_ref": 4, "main0": 3, "UN": 3, - "code": 6, - "reuse": 2, + "phil_left": 3, + "n": 51, + "phil_right": 3, + "nmod": 1, + "NPHIL": 6, + "randsleep": 6, + "intGte": 1, + "void": 14, + "ignoret": 2, + "sleep": 2, + "UN.cast": 2, + "uInt": 1, + "rand": 1, + "mod": 1, + "phil_think": 3, + "println": 9, + "phil_dine": 3, + "lf": 5, + "rf": 5, + "phil_loop": 10, + "nl": 2, + "nr": 2, + "ch_lfork": 2, + "fork_changet": 5, + "ch_rfork": 2, + "channel_takeout": 4, + "HX": 1, + "try": 1, + "to": 16, + "actively": 1, + "induce": 1, + "deadlock": 2, + "ch_forktray": 3, + "forktray_changet": 4, + "channel_insert": 5, + "[": 49, + "]": 48, + "cleaner_wash": 3, + "fork_get_num": 4, + "cleaner_return": 4, + "ch": 7, + "cleaner_loop": 6, + "f0": 3, + "dynload": 3, + "local": 10, + "mythread_create_cloptr": 6, + "llam": 6, + "while": 1, + "true": 5, + "%": 7, + "#": 7, + "#define": 4, + "nphil": 13, + "natLt": 2, + "absvtype": 2, + "fork_vtype": 3, + "ptr": 2, + "vtypedef": 2, + "fork": 16, + "channel": 11, + "datavtype": 1, + "FORK": 3, "assume": 2, + "the_forkarray": 2, + "t": 1, + "array_tabulate": 1, + "fopr": 1, + "": 2, + "where": 6, + "channel_create_exn": 2, + "": 2, + "i2sz": 4, + "arrayref_tabulate": 1, + "the_forktray": 2, "set_vtype": 3, - "elt": 2, "t@ype": 2, - "List0_vt": 5, + "set": 34, + "t0p": 31, + "compare_elt_elt": 4, + "x1": 1, + "x2": 1, + "<": 14, "linset_nil": 2, - "list_vt_nil": 16, "linset_make_nil": 2, "linset_sing": 2, - "list_vt_cons": 17, + "": 16, "linset_make_sing": 2, + "linset_make_list": 1, + "List": 1, + "INV": 24, "linset_is_nil": 2, - "list_vt_is_nil": 1, "linset_isnot_nil": 2, - "list_vt_is_cons": 1, "linset_size": 2, - "let": 34, - "n": 51, - "list_vt_length": 1, - "in": 48, - "i2sz": 4, - "end": 73, + "size_t": 1, "linset_is_member": 3, "x0": 22, + "linset_isnot_member": 1, + "linset_copy": 2, + "linset_free": 2, + "linset_insert": 3, + "&": 17, + "linset_takeout": 1, + "res": 9, + "opt": 6, + "endfun": 1, + "linset_takeout_opt": 1, + "Option_vt": 4, + "linset_remove": 2, + "linset_choose": 3, + "linset_choose_opt": 1, + "linset_takeoutmax": 1, + "linset_takeoutmax_opt": 1, + "linset_takeoutmin": 1, + "linset_takeoutmin_opt": 1, + "fprint_linset": 3, + "sep": 1, + "FILEref": 2, + "overload": 1, + "with": 1, + "env": 11, + "vt0p": 2, + "linset_foreach": 3, + "fwork": 3, + "linset_foreach_env": 3, + "linset_listize": 2, + "List0_vt": 5, + "linset_listize1": 2, + "code": 6, + "reuse": 2, + "elt": 2, + "list_vt_nil": 16, + "list_vt_cons": 17, + "list_vt_is_nil": 1, + "list_vt_is_cons": 1, + "list_vt_length": 1, "aux": 4, "nat": 4, ".": 14, "": 3, "list_vt": 7, - "<": 14, "sgn": 9, - "compare_elt_elt": 4, - "if": 7, - "then": 11, "false": 6, - "else": 7, - "true": 5, - "[": 49, - "]": 48, - "linset_copy": 2, "list_vt_copy": 2, - "linset_free": 2, "list_vt_free": 1, - "linset_insert": 3, "mynode_cons": 4, "nx": 22, "mynode1": 6, @@ -1202,9 +1301,7 @@ "ins": 3, "tail": 1, "recursive": 1, - "&": 17, "n1": 4, - "#": 7, "<=>": 1, "1": 3, "mynode_make_elt": 4, @@ -1215,25 +1312,17 @@ "free@": 1, "xs1_": 3, "rem": 1, - "linset_remove": 2, - "linset_choose": 3, + "*": 2, "opt_some": 1, "opt_none": 1, - "env": 11, - "linset_foreach_env": 3, "list_vt_foreach": 1, - "fwork": 3, "": 3, - "linset_foreach": 3, "list_vt_foreach_env": 1, - "linset_listize": 2, - "linset_listize1": 2, "mynode_null": 5, "mynode": 3, "null": 1, "the_null_ptr": 1, "mynode_free": 1, - "where": 6, "nx2": 4, "mynode_get_elt": 1, "nx1": 7, @@ -1242,61 +1331,32 @@ "l": 3, "__assert": 2, "praxi": 1, - "void": 14, "mynode_getfree_elt": 1, "linset_takeout_ngc": 2, - "set": 34, "takeout": 3, "mynode0": 1, "pf_x": 6, "view@x": 3, "pf_xs1": 6, "view@xs1": 3, - "res": 9, "linset_takeoutmax_ngc": 2, "xs_": 4, "@list_vt_nil": 1, "linset_takeoutmin_ngc": 2, "unsnoc": 4, "pos": 1, - "": 16, "and": 10, "fold@xs": 1, - "CoYoneda": 7, - "CoYoneda_phi": 2, - "CoYoneda_psi": 3, - "int0": 4, - "I": 8, - "int": 2, - "int2bool": 2, - "i": 6, - "myintlist0": 2, - "g0ofg1": 1, - "list": 1, - "%": 7, - "#define": 4, - "NPHIL": 6, - "nphil": 13, - "natLt": 2, - "phil_left": 3, - "phil_right": 3, - "phil_loop": 10, - "cleaner_loop": 6, - "absvtype": 2, - "fork_vtype": 3, - "ptr": 2, - "vtypedef": 2, - "fork": 16, - "fork_get_num": 4, - "phil_dine": 3, - "lf": 5, - "rf": 5, - "phil_think": 3, - "cleaner_wash": 3, - "cleaner_return": 4, - "fork_changet": 5, - "channel": 11, - "forktray_changet": 4, + "ATS_PACKNAME": 1, + "ATS_STALOADFLAG": 1, + "no": 2, + "static": 1, + "loading": 1, + "at": 2, + "run": 1, + "time": 1, + "castfn": 1, + "linset2list": 1, "": 1, "html": 1, "PUBLIC": 1, @@ -1386,7 +1446,6 @@ "thinking": 1, "dining.": 1, "order": 1, - "to": 16, "dine": 1, "needs": 2, "first": 2, @@ -1443,7 +1502,6 @@ "#pats2xhtml_sats": 3, "": 7, "If": 2, - "channel_insert": 5, "called": 2, "full": 4, "caller": 2, @@ -1451,7 +1509,6 @@ "until": 2, "taken": 1, "channel.": 2, - "channel_takeout": 4, "empty": 1, "inserted": 1, "Channel": 2, @@ -1477,13 +1534,11 @@ "capacity": 3, "reason": 1, "store": 1, - "at": 2, "most": 1, "guarantee": 1, "these": 1, "never": 2, "so": 2, - "no": 2, "attempt": 1, "made": 1, "send": 1, @@ -1534,7 +1589,6 @@ "One": 1, "able": 1, "encounter": 1, - "deadlock": 2, "after": 1, "running": 1, "simulation": 1, @@ -1551,74 +1605,23 @@ "": 1, "main": 1, "fprint_filsub": 1, - "t0p": 31, - "x1": 1, - "x2": 1, - "linset_make_list": 1, - "List": 1, - "INV": 24, - "size_t": 1, - "linset_isnot_member": 1, - "linset_takeout": 1, - "endfun": 1, - "linset_takeout_opt": 1, - "Option_vt": 4, - "linset_choose_opt": 1, - "linset_takeoutmax": 1, - "linset_takeoutmax_opt": 1, - "linset_takeoutmin": 1, - "linset_takeoutmin_opt": 1, - "fprint_linset": 3, - "sep": 1, - "FILEref": 2, - "overload": 1, - "with": 1, - "vt0p": 2, - "ATS_PACKNAME": 1, - "ATS_STALOADFLAG": 1, - "static": 1, - "loading": 1, - "run": 1, - "time": 1, - "castfn": 1, - "linset2list": 1, - "local": 10, - "datavtype": 1, - "FORK": 3, - "the_forkarray": 2, - "t": 1, - "array_tabulate": 1, - "fopr": 1, - "": 2, - "ch": 7, - "UN.cast": 2, - "channel_create_exn": 2, - "": 2, - "arrayref_tabulate": 1, - "the_forktray": 2, - "nmod": 1, - "randsleep": 6, - "intGte": 1, - "ignoret": 2, - "sleep": 2, - "uInt": 1, - "rand": 1, - "mod": 1, - "println": 9, - "nl": 2, - "nr": 2, - "ch_lfork": 2, - "ch_rfork": 2, - "HX": 1, - "try": 1, - "actively": 1, - "induce": 1, - "ch_forktray": 3, - "f0": 3, - "dynload": 3, - "mythread_create_cloptr": 6, - "llam": 6, - "while": 1 + "option0": 3, + "functor_option0": 2, + "option0_map": 1, + "functor_homres": 2, + "c": 3, + "Yoneda_phi": 3, + "Yoneda_psi": 3, + "m": 4, + "mf": 4, + "natrans": 3, + "G": 2, + "Yoneda_phi_nat": 2, + "Yoneda_psi_nat": 2, + "list_t": 1, + "g0ofg1_list": 1, + "Yoneda_bool_list0": 3, + "myboolist1": 2 }, "Agda": { "module": 3, @@ -1680,20 +1683,64 @@ }, "Alloy": { "module": 3, - "examples/systems/marksweepgc": 1, + "examples/systems/file_system": 1, + "abstract": 2, "sig": 20, - "Node": 10, + "Object": 10, "{": 54, "}": 60, + "Name": 2, + "File": 1, + "extends": 10, + "some": 3, + "d": 3, + "Dir": 8, + "|": 19, + "this": 14, + "in": 19, + "d.entries.contents": 1, + "entries": 3, + "set": 10, + "DirEntry": 2, + "parent": 3, + "lone": 6, + "this.": 4, + "@contents.": 1, + "@entries": 1, + "all": 16, + "e1": 2, + "e2": 2, + "e1.name": 1, + "e2.name": 1, + "@parent": 2, + "Root": 5, + "one": 8, + "no": 8, + "Cur": 1, + "name": 1, + "contents": 2, + "pred": 16, + "OneParent_buggyVersion": 2, + "-": 41, + "d.parent": 2, + "OneParent_correctVersion": 2, + "(": 12, + "&&": 2, + "contents.d": 1, + ")": 9, + "NoDirAliases": 3, + "o": 1, + "o.": 1, + "check": 6, + "for": 7, + "expect": 6, + "examples/systems/marksweepgc": 1, + "Node": 10, "HeapState": 5, "left": 3, "right": 1, - "-": 41, - "lone": 6, "marked": 1, - "set": 10, "freeList": 1, - "pred": 16, "clearMarks": 1, "[": 82, "hs": 16, @@ -1706,9 +1753,7 @@ "]": 80, "+": 14, "n.": 1, - "(": 12, "hs.left": 2, - ")": 9, "mark": 1, "from": 2, "hs.reachable": 1, @@ -1720,21 +1765,14 @@ "root": 5, "assert": 3, "Soundness1": 2, - "all": 16, "h": 9, "live": 3, "h.reachable": 1, - "|": 19, "h.right": 1, "Soundness2": 2, - "no": 8, ".reachable": 2, "h.GC": 1, - "in": 19, ".freeList": 1, - "check": 6, - "for": 7, - "expect": 6, "Completeness": 1, "examples/systems/views": 1, "open": 2, @@ -1745,7 +1783,6 @@ "util/relation": 1, "rel": 1, "Ref": 19, - "Object": 10, "t": 16, "b": 13, "v": 25, @@ -1764,13 +1801,11 @@ "been": 1, "invalidated": 1, "obj": 1, - "one": 8, "ViewType": 8, "anyviews": 2, "visualization": 1, "ViewType.views": 1, "Map": 2, - "extends": 10, "keys": 3, "map": 2, "s": 6, @@ -1786,7 +1821,6 @@ "Set": 2, "elts": 2, "SetRef": 5, - "abstract": 2, "KeySetView": 6, "State.views": 1, "IteratorView": 3, @@ -1825,8 +1859,6 @@ "viewFrame": 4, "post.dirty": 1, "pre.dirty": 1, - "some": 3, - "&&": 2, "allocates": 5, "&": 3, "post.refs": 1, @@ -1835,7 +1867,6 @@ "dom": 1, "<:>": 1, "setRefs": 1, - "this": 14, "MapRef.put": 1, "k": 5, "none": 4, @@ -1883,300 +1914,9 @@ "ViewType.pre.views": 2, "but": 1, "#s.obj": 1, - "<": 1, - "examples/systems/file_system": 1, - "Name": 2, - "File": 1, - "d": 3, - "Dir": 8, - "d.entries.contents": 1, - "entries": 3, - "DirEntry": 2, - "parent": 3, - "this.": 4, - "@contents.": 1, - "@entries": 1, - "e1": 2, - "e2": 2, - "e1.name": 1, - "e2.name": 1, - "@parent": 2, - "Root": 5, - "Cur": 1, - "name": 1, - "contents": 2, - "OneParent_buggyVersion": 2, - "d.parent": 2, - "OneParent_correctVersion": 2, - "contents.d": 1, - "NoDirAliases": 3, - "o": 1, - "o.": 1 + "<": 1 }, "ApacheConf": { - "#": 182, - "ServerRoot": 2, - "#Listen": 2, - "Listen": 2, - "LoadModule": 126, - "authn_file_module": 2, - "libexec/apache2/mod_authn_file.so": 1, - "authn_dbm_module": 2, - "libexec/apache2/mod_authn_dbm.so": 1, - "authn_anon_module": 2, - "libexec/apache2/mod_authn_anon.so": 1, - "authn_dbd_module": 2, - "libexec/apache2/mod_authn_dbd.so": 1, - "authn_default_module": 2, - "libexec/apache2/mod_authn_default.so": 1, - "authz_host_module": 2, - "libexec/apache2/mod_authz_host.so": 1, - "authz_groupfile_module": 2, - "libexec/apache2/mod_authz_groupfile.so": 1, - "authz_user_module": 2, - "libexec/apache2/mod_authz_user.so": 1, - "authz_dbm_module": 2, - "libexec/apache2/mod_authz_dbm.so": 1, - "authz_owner_module": 2, - "libexec/apache2/mod_authz_owner.so": 1, - "authz_default_module": 2, - "libexec/apache2/mod_authz_default.so": 1, - "auth_basic_module": 2, - "libexec/apache2/mod_auth_basic.so": 1, - "auth_digest_module": 2, - "libexec/apache2/mod_auth_digest.so": 1, - "cache_module": 2, - "libexec/apache2/mod_cache.so": 1, - "disk_cache_module": 2, - "libexec/apache2/mod_disk_cache.so": 1, - "mem_cache_module": 2, - "libexec/apache2/mod_mem_cache.so": 1, - "dbd_module": 2, - "libexec/apache2/mod_dbd.so": 1, - "dumpio_module": 2, - "libexec/apache2/mod_dumpio.so": 1, - "reqtimeout_module": 1, - "libexec/apache2/mod_reqtimeout.so": 1, - "ext_filter_module": 2, - "libexec/apache2/mod_ext_filter.so": 1, - "include_module": 2, - "libexec/apache2/mod_include.so": 1, - "filter_module": 2, - "libexec/apache2/mod_filter.so": 1, - "substitute_module": 1, - "libexec/apache2/mod_substitute.so": 1, - "deflate_module": 2, - "libexec/apache2/mod_deflate.so": 1, - "log_config_module": 3, - "libexec/apache2/mod_log_config.so": 1, - "log_forensic_module": 2, - "libexec/apache2/mod_log_forensic.so": 1, - "logio_module": 3, - "libexec/apache2/mod_logio.so": 1, - "env_module": 2, - "libexec/apache2/mod_env.so": 1, - "mime_magic_module": 2, - "libexec/apache2/mod_mime_magic.so": 1, - "cern_meta_module": 2, - "libexec/apache2/mod_cern_meta.so": 1, - "expires_module": 2, - "libexec/apache2/mod_expires.so": 1, - "headers_module": 2, - "libexec/apache2/mod_headers.so": 1, - "ident_module": 2, - "libexec/apache2/mod_ident.so": 1, - "usertrack_module": 2, - "libexec/apache2/mod_usertrack.so": 1, - "#LoadModule": 4, - "unique_id_module": 2, - "libexec/apache2/mod_unique_id.so": 1, - "setenvif_module": 2, - "libexec/apache2/mod_setenvif.so": 1, - "version_module": 2, - "libexec/apache2/mod_version.so": 1, - "proxy_module": 2, - "libexec/apache2/mod_proxy.so": 1, - "proxy_connect_module": 2, - "libexec/apache2/mod_proxy_connect.so": 1, - "proxy_ftp_module": 2, - "libexec/apache2/mod_proxy_ftp.so": 1, - "proxy_http_module": 2, - "libexec/apache2/mod_proxy_http.so": 1, - "proxy_scgi_module": 1, - "libexec/apache2/mod_proxy_scgi.so": 1, - "proxy_ajp_module": 2, - "libexec/apache2/mod_proxy_ajp.so": 1, - "proxy_balancer_module": 2, - "libexec/apache2/mod_proxy_balancer.so": 1, - "ssl_module": 4, - "libexec/apache2/mod_ssl.so": 1, - "mime_module": 4, - "libexec/apache2/mod_mime.so": 1, - "dav_module": 2, - "libexec/apache2/mod_dav.so": 1, - "status_module": 2, - "libexec/apache2/mod_status.so": 1, - "autoindex_module": 2, - "libexec/apache2/mod_autoindex.so": 1, - "asis_module": 2, - "libexec/apache2/mod_asis.so": 1, - "info_module": 2, - "libexec/apache2/mod_info.so": 1, - "cgi_module": 2, - "libexec/apache2/mod_cgi.so": 1, - "dav_fs_module": 2, - "libexec/apache2/mod_dav_fs.so": 1, - "vhost_alias_module": 2, - "libexec/apache2/mod_vhost_alias.so": 1, - "negotiation_module": 2, - "libexec/apache2/mod_negotiation.so": 1, - "dir_module": 4, - "libexec/apache2/mod_dir.so": 1, - "imagemap_module": 2, - "libexec/apache2/mod_imagemap.so": 1, - "actions_module": 2, - "libexec/apache2/mod_actions.so": 1, - "speling_module": 2, - "libexec/apache2/mod_speling.so": 1, - "userdir_module": 2, - "libexec/apache2/mod_userdir.so": 1, - "alias_module": 4, - "libexec/apache2/mod_alias.so": 1, - "rewrite_module": 2, - "libexec/apache2/mod_rewrite.so": 1, - "perl_module": 1, - "libexec/apache2/mod_perl.so": 1, - "php5_module": 1, - "libexec/apache2/libphp5.so": 1, - "hfs_apple_module": 1, - "libexec/apache2/mod_hfs_apple.so": 1, - "": 17, - "mpm_netware_module": 2, - "mpm_winnt_module": 1, - "User": 2, - "_www": 2, - "Group": 2, - "": 17, - "ServerAdmin": 2, - "you@example.com": 2, - "#ServerName": 2, - "www.example.com": 2, - "DocumentRoot": 2, - "": 6, - "Options": 6, - "FollowSymLinks": 4, - "AllowOverride": 6, - "None": 8, - "Order": 10, - "deny": 10, - "allow": 10, - "Deny": 6, - "from": 10, - "all": 10, - "": 6, - "Library": 2, - "WebServer": 2, - "Documents": 1, - "Indexes": 2, - "MultiViews": 1, - "Allow": 4, - "DirectoryIndex": 2, - "index.html": 2, - "": 2, - "Hh": 1, - "Tt": 1, - "Dd": 1, - "Ss": 2, - "_": 1, - "Satisfy": 4, - "All": 4, - "": 2, - "": 1, - "rsrc": 1, - "": 1, - "": 1, - "namedfork": 1, - "": 1, - "ErrorLog": 2, - "LogLevel": 2, - "warn": 2, - "LogFormat": 6, - "combined": 4, - "common": 4, - "combinedio": 2, - "CustomLog": 2, - "#CustomLog": 2, - "ScriptAliasMatch": 1, - "/cgi": 2, - "-": 43, - "bin/": 2, - "(": 16, - "i": 1, - "webobjects": 1, - ")": 17, - ".*": 3, - "cgid_module": 3, - "#Scriptsock": 2, - "/private/var/run/cgisock": 1, - "CGI": 1, - "Executables": 1, - "DefaultType": 2, - "text/plain": 2, - "TypesConfig": 2, - "/private/etc/apache2/mime.types": 1, - "#AddType": 4, - "application/x": 6, - "gzip": 6, - ".tgz": 6, - "#AddEncoding": 4, - "x": 4, - "compress": 4, - ".Z": 4, - ".gz": 4, - "AddType": 4, - "#AddHandler": 4, - "cgi": 3, - "script": 2, - ".cgi": 2, - "type": 2, - "map": 2, - "var": 2, - "text/html": 2, - ".shtml": 4, - "#AddOutputFilter": 2, - "INCLUDES": 2, - "#MIMEMagicFile": 2, - "/private/etc/apache2/magic": 1, - "#ErrorDocument": 8, - "/missing.html": 2, - "http": 2, - "//www.example.com/subscription_info.html": 2, - "#MaxRanges": 1, - "unlimited": 1, - "#EnableMMAP": 2, - "off": 5, - "#EnableSendfile": 2, - "TraceEnable": 1, - "Include": 6, - "/private/etc/apache2/extra/httpd": 11, - "mpm.conf": 2, - "#Include": 17, - "multilang": 2, - "errordoc.conf": 2, - "autoindex.conf": 2, - "languages.conf": 2, - "userdir.conf": 2, - "info.conf": 2, - "vhosts.conf": 2, - "manual.conf": 2, - "dav.conf": 2, - "default.conf": 2, - "ssl.conf": 2, - "SSLRandomSeed": 4, - "startup": 2, - "builtin": 4, - "connect": 2, - "/private/etc/apache2/other/*.conf": 1, "ServerSignature": 1, "Off": 1, "RewriteCond": 15, @@ -2184,11 +1924,13 @@ "{": 16, "REQUEST_METHOD": 1, "}": 16, + "(": 16, "HEAD": 1, "|": 80, "TRACE": 1, "DELETE": 1, "TRACK": 1, + ")": 17, "[": 17, "NC": 13, "OR": 14, @@ -2223,6 +1965,7 @@ "grab": 1, "miner": 1, "libwww": 1, + "-": 43, "perl": 1, "python": 1, "nikto": 1, @@ -2231,6 +1974,7 @@ "mySQL": 1, "injects": 1, "QUERY_STRING": 5, + ".*": 3, "*": 1, "union": 1, "select": 1, @@ -2252,224 +1996,517 @@ "RewriteRule": 1, "index.php": 1, "F": 1, + "#": 182, + "ServerRoot": 2, + "#Listen": 2, + "Listen": 2, + "LoadModule": 126, + "authn_file_module": 2, "/usr/lib/apache2/modules/mod_authn_file.so": 1, + "authn_dbm_module": 2, "/usr/lib/apache2/modules/mod_authn_dbm.so": 1, + "authn_anon_module": 2, "/usr/lib/apache2/modules/mod_authn_anon.so": 1, + "authn_dbd_module": 2, "/usr/lib/apache2/modules/mod_authn_dbd.so": 1, + "authn_default_module": 2, "/usr/lib/apache2/modules/mod_authn_default.so": 1, "authn_alias_module": 1, "/usr/lib/apache2/modules/mod_authn_alias.so": 1, + "authz_host_module": 2, "/usr/lib/apache2/modules/mod_authz_host.so": 1, + "authz_groupfile_module": 2, "/usr/lib/apache2/modules/mod_authz_groupfile.so": 1, + "authz_user_module": 2, "/usr/lib/apache2/modules/mod_authz_user.so": 1, + "authz_dbm_module": 2, "/usr/lib/apache2/modules/mod_authz_dbm.so": 1, + "authz_owner_module": 2, "/usr/lib/apache2/modules/mod_authz_owner.so": 1, "authnz_ldap_module": 1, "/usr/lib/apache2/modules/mod_authnz_ldap.so": 1, + "authz_default_module": 2, "/usr/lib/apache2/modules/mod_authz_default.so": 1, + "auth_basic_module": 2, "/usr/lib/apache2/modules/mod_auth_basic.so": 1, + "auth_digest_module": 2, "/usr/lib/apache2/modules/mod_auth_digest.so": 1, "file_cache_module": 1, "/usr/lib/apache2/modules/mod_file_cache.so": 1, + "cache_module": 2, "/usr/lib/apache2/modules/mod_cache.so": 1, + "disk_cache_module": 2, "/usr/lib/apache2/modules/mod_disk_cache.so": 1, + "mem_cache_module": 2, "/usr/lib/apache2/modules/mod_mem_cache.so": 1, + "dbd_module": 2, "/usr/lib/apache2/modules/mod_dbd.so": 1, + "dumpio_module": 2, "/usr/lib/apache2/modules/mod_dumpio.so": 1, + "ext_filter_module": 2, "/usr/lib/apache2/modules/mod_ext_filter.so": 1, + "include_module": 2, "/usr/lib/apache2/modules/mod_include.so": 1, + "filter_module": 2, "/usr/lib/apache2/modules/mod_filter.so": 1, "charset_lite_module": 1, "/usr/lib/apache2/modules/mod_charset_lite.so": 1, + "deflate_module": 2, "/usr/lib/apache2/modules/mod_deflate.so": 1, "ldap_module": 1, "/usr/lib/apache2/modules/mod_ldap.so": 1, + "log_forensic_module": 2, "/usr/lib/apache2/modules/mod_log_forensic.so": 1, + "env_module": 2, "/usr/lib/apache2/modules/mod_env.so": 1, + "mime_magic_module": 2, "/usr/lib/apache2/modules/mod_mime_magic.so": 1, + "cern_meta_module": 2, "/usr/lib/apache2/modules/mod_cern_meta.so": 1, + "expires_module": 2, "/usr/lib/apache2/modules/mod_expires.so": 1, + "headers_module": 2, "/usr/lib/apache2/modules/mod_headers.so": 1, + "ident_module": 2, "/usr/lib/apache2/modules/mod_ident.so": 1, + "usertrack_module": 2, "/usr/lib/apache2/modules/mod_usertrack.so": 1, + "unique_id_module": 2, "/usr/lib/apache2/modules/mod_unique_id.so": 1, + "setenvif_module": 2, "/usr/lib/apache2/modules/mod_setenvif.so": 1, + "version_module": 2, "/usr/lib/apache2/modules/mod_version.so": 1, + "proxy_module": 2, "/usr/lib/apache2/modules/mod_proxy.so": 1, + "proxy_connect_module": 2, "/usr/lib/apache2/modules/mod_proxy_connect.so": 1, + "proxy_ftp_module": 2, "/usr/lib/apache2/modules/mod_proxy_ftp.so": 1, + "proxy_http_module": 2, "/usr/lib/apache2/modules/mod_proxy_http.so": 1, + "proxy_ajp_module": 2, "/usr/lib/apache2/modules/mod_proxy_ajp.so": 1, + "proxy_balancer_module": 2, "/usr/lib/apache2/modules/mod_proxy_balancer.so": 1, + "ssl_module": 4, "/usr/lib/apache2/modules/mod_ssl.so": 1, + "mime_module": 4, "/usr/lib/apache2/modules/mod_mime.so": 1, + "dav_module": 2, "/usr/lib/apache2/modules/mod_dav.so": 1, + "status_module": 2, "/usr/lib/apache2/modules/mod_status.so": 1, + "autoindex_module": 2, "/usr/lib/apache2/modules/mod_autoindex.so": 1, + "asis_module": 2, "/usr/lib/apache2/modules/mod_asis.so": 1, + "info_module": 2, "/usr/lib/apache2/modules/mod_info.so": 1, "suexec_module": 1, "/usr/lib/apache2/modules/mod_suexec.so": 1, + "cgid_module": 3, "/usr/lib/apache2/modules/mod_cgid.so": 1, + "cgi_module": 2, "/usr/lib/apache2/modules/mod_cgi.so": 1, + "dav_fs_module": 2, "/usr/lib/apache2/modules/mod_dav_fs.so": 1, "dav_lock_module": 1, "/usr/lib/apache2/modules/mod_dav_lock.so": 1, + "vhost_alias_module": 2, "/usr/lib/apache2/modules/mod_vhost_alias.so": 1, + "negotiation_module": 2, "/usr/lib/apache2/modules/mod_negotiation.so": 1, + "dir_module": 4, "/usr/lib/apache2/modules/mod_dir.so": 1, + "imagemap_module": 2, "/usr/lib/apache2/modules/mod_imagemap.so": 1, + "actions_module": 2, "/usr/lib/apache2/modules/mod_actions.so": 1, + "speling_module": 2, "/usr/lib/apache2/modules/mod_speling.so": 1, + "userdir_module": 2, "/usr/lib/apache2/modules/mod_userdir.so": 1, + "alias_module": 4, "/usr/lib/apache2/modules/mod_alias.so": 1, + "rewrite_module": 2, "/usr/lib/apache2/modules/mod_rewrite.so": 1, + "": 17, + "mpm_netware_module": 2, + "User": 2, "daemon": 2, + "Group": 2, + "": 17, + "ServerAdmin": 2, + "you@example.com": 2, + "#ServerName": 2, + "www.example.com": 2, + "DocumentRoot": 2, + "": 6, + "Options": 6, + "FollowSymLinks": 4, + "AllowOverride": 6, + "None": 8, + "Order": 10, + "deny": 10, + "allow": 10, + "Deny": 6, + "from": 10, + "all": 10, + "": 6, "usr": 2, "share": 1, "apache2": 1, "default": 1, "site": 1, "htdocs": 1, + "Indexes": 2, + "Allow": 4, + "DirectoryIndex": 2, + "index.html": 2, + "": 2, "ht": 1, + "Satisfy": 4, + "All": 4, + "": 2, + "ErrorLog": 2, "/var/log/apache2/error_log": 1, + "LogLevel": 2, + "warn": 2, + "log_config_module": 3, + "LogFormat": 6, + "combined": 4, + "common": 4, + "logio_module": 3, + "combinedio": 2, + "CustomLog": 2, "/var/log/apache2/access_log": 2, + "#CustomLog": 2, "ScriptAlias": 1, + "/cgi": 2, + "bin/": 2, + "#Scriptsock": 2, "/var/run/apache2/cgisock": 1, "lib": 1, + "cgi": 3, "bin": 1, + "DefaultType": 2, + "text/plain": 2, + "TypesConfig": 2, "/etc/apache2/mime.types": 1, + "#AddType": 4, + "application/x": 6, + "gzip": 6, + ".tgz": 6, + "#AddEncoding": 4, + "x": 4, + "compress": 4, + ".Z": 4, + ".gz": 4, + "AddType": 4, + "#AddHandler": 4, + "script": 2, + ".cgi": 2, + "type": 2, + "map": 2, + "var": 2, + "text/html": 2, + ".shtml": 4, + "#AddOutputFilter": 2, + "INCLUDES": 2, + "#MIMEMagicFile": 2, "/etc/apache2/magic": 1, - "/etc/apache2/extra/httpd": 11 + "#ErrorDocument": 8, + "/missing.html": 2, + "http": 2, + "//www.example.com/subscription_info.html": 2, + "#EnableMMAP": 2, + "off": 5, + "#EnableSendfile": 2, + "#Include": 17, + "/etc/apache2/extra/httpd": 11, + "mpm.conf": 2, + "multilang": 2, + "errordoc.conf": 2, + "autoindex.conf": 2, + "languages.conf": 2, + "userdir.conf": 2, + "info.conf": 2, + "vhosts.conf": 2, + "manual.conf": 2, + "dav.conf": 2, + "default.conf": 2, + "ssl.conf": 2, + "SSLRandomSeed": 4, + "startup": 2, + "builtin": 4, + "connect": 2, + "libexec/apache2/mod_authn_file.so": 1, + "libexec/apache2/mod_authn_dbm.so": 1, + "libexec/apache2/mod_authn_anon.so": 1, + "libexec/apache2/mod_authn_dbd.so": 1, + "libexec/apache2/mod_authn_default.so": 1, + "libexec/apache2/mod_authz_host.so": 1, + "libexec/apache2/mod_authz_groupfile.so": 1, + "libexec/apache2/mod_authz_user.so": 1, + "libexec/apache2/mod_authz_dbm.so": 1, + "libexec/apache2/mod_authz_owner.so": 1, + "libexec/apache2/mod_authz_default.so": 1, + "libexec/apache2/mod_auth_basic.so": 1, + "libexec/apache2/mod_auth_digest.so": 1, + "libexec/apache2/mod_cache.so": 1, + "libexec/apache2/mod_disk_cache.so": 1, + "libexec/apache2/mod_mem_cache.so": 1, + "libexec/apache2/mod_dbd.so": 1, + "libexec/apache2/mod_dumpio.so": 1, + "reqtimeout_module": 1, + "libexec/apache2/mod_reqtimeout.so": 1, + "libexec/apache2/mod_ext_filter.so": 1, + "libexec/apache2/mod_include.so": 1, + "libexec/apache2/mod_filter.so": 1, + "substitute_module": 1, + "libexec/apache2/mod_substitute.so": 1, + "libexec/apache2/mod_deflate.so": 1, + "libexec/apache2/mod_log_config.so": 1, + "libexec/apache2/mod_log_forensic.so": 1, + "libexec/apache2/mod_logio.so": 1, + "libexec/apache2/mod_env.so": 1, + "libexec/apache2/mod_mime_magic.so": 1, + "libexec/apache2/mod_cern_meta.so": 1, + "libexec/apache2/mod_expires.so": 1, + "libexec/apache2/mod_headers.so": 1, + "libexec/apache2/mod_ident.so": 1, + "libexec/apache2/mod_usertrack.so": 1, + "#LoadModule": 4, + "libexec/apache2/mod_unique_id.so": 1, + "libexec/apache2/mod_setenvif.so": 1, + "libexec/apache2/mod_version.so": 1, + "libexec/apache2/mod_proxy.so": 1, + "libexec/apache2/mod_proxy_connect.so": 1, + "libexec/apache2/mod_proxy_ftp.so": 1, + "libexec/apache2/mod_proxy_http.so": 1, + "proxy_scgi_module": 1, + "libexec/apache2/mod_proxy_scgi.so": 1, + "libexec/apache2/mod_proxy_ajp.so": 1, + "libexec/apache2/mod_proxy_balancer.so": 1, + "libexec/apache2/mod_ssl.so": 1, + "libexec/apache2/mod_mime.so": 1, + "libexec/apache2/mod_dav.so": 1, + "libexec/apache2/mod_status.so": 1, + "libexec/apache2/mod_autoindex.so": 1, + "libexec/apache2/mod_asis.so": 1, + "libexec/apache2/mod_info.so": 1, + "libexec/apache2/mod_cgi.so": 1, + "libexec/apache2/mod_dav_fs.so": 1, + "libexec/apache2/mod_vhost_alias.so": 1, + "libexec/apache2/mod_negotiation.so": 1, + "libexec/apache2/mod_dir.so": 1, + "libexec/apache2/mod_imagemap.so": 1, + "libexec/apache2/mod_actions.so": 1, + "libexec/apache2/mod_speling.so": 1, + "libexec/apache2/mod_userdir.so": 1, + "libexec/apache2/mod_alias.so": 1, + "libexec/apache2/mod_rewrite.so": 1, + "perl_module": 1, + "libexec/apache2/mod_perl.so": 1, + "php5_module": 1, + "libexec/apache2/libphp5.so": 1, + "hfs_apple_module": 1, + "libexec/apache2/mod_hfs_apple.so": 1, + "mpm_winnt_module": 1, + "_www": 2, + "Library": 2, + "WebServer": 2, + "Documents": 1, + "MultiViews": 1, + "Hh": 1, + "Tt": 1, + "Dd": 1, + "Ss": 2, + "_": 1, + "": 1, + "rsrc": 1, + "": 1, + "": 1, + "namedfork": 1, + "": 1, + "ScriptAliasMatch": 1, + "i": 1, + "webobjects": 1, + "/private/var/run/cgisock": 1, + "CGI": 1, + "Executables": 1, + "/private/etc/apache2/mime.types": 1, + "/private/etc/apache2/magic": 1, + "#MaxRanges": 1, + "unlimited": 1, + "TraceEnable": 1, + "Include": 6, + "/private/etc/apache2/extra/httpd": 11, + "/private/etc/apache2/other/*.conf": 1 }, "Apex": { "global": 70, "class": 7, - "LanguageUtils": 1, + "ArrayUtils": 1, "{": 219, "static": 83, - "final": 6, "String": 60, - "HTTP_LANGUAGE_CODE_PARAMETER_KEY": 2, - ";": 308, - "DEFAULT_LANGUAGE_CODE": 3, - "Set": 6, - "": 30, - "SUPPORTED_LANGUAGE_CODES": 2, - "new": 60, - "//Chinese": 2, - "(": 481, - "Simplified": 1, - ")": 481, - "Traditional": 1, - "//Dutch": 1, - "//English": 1, - "//Finnish": 1, - "//French": 1, - "//German": 1, - "//Italian": 1, - "//Japanese": 1, - "//Korean": 1, - "//Polish": 1, - "//Portuguese": 1, - "Brazilian": 1, - "//Russian": 1, - "//Spanish": 1, - "//Swedish": 1, - "//Thai": 1, - "//Czech": 1, - "//Danish": 1, - "//Hungarian": 1, - "//Indonesian": 1, - "//Turkish": 1, - "}": 219, - "private": 10, - "Map": 33, - "": 29, - "DEFAULTS": 1, - "getLangCodeByHttpParam": 4, - "returnValue": 22, - "null": 92, - "LANGUAGE_CODE_SET": 1, - "getSuppLangCodeSet": 2, - "if": 91, - "ApexPages.currentPage": 4, - "&&": 46, - ".getParameters": 2, - "LANGUAGE_HTTP_PARAMETER": 7, - "StringUtils.lowerCase": 3, - "StringUtils.replaceChars": 2, - ".get": 4, - "//underscore": 1, - "//dash": 1, - "DEFAULTS.containsKey": 3, - "DEFAULTS.get": 3, - "StringUtils.isNotBlank": 1, - "SUPPORTED_LANGUAGE_CODES.contains": 2, - "return": 106, - "getLangCodeByBrowser": 4, - "LANGUAGES_FROM_BROWSER_AS_STRING": 2, - ".getHeaders": 1, - "List": 71, - "LANGUAGES_FROM_BROWSER_AS_LIST": 3, - "splitAndFilterAcceptLanguageHeader": 2, - "LANGUAGES_FROM_BROWSER_AS_LIST.size": 1, - "for": 24, - "languageFromBrowser": 6, - "getLangCodeByUser": 3, - "UserInfo.getLanguage": 1, - "getLangCodeByHttpParamOrIfNullThenBrowser": 1, - "StringUtils.defaultString": 4, - "getLangCodeByHttpParamOrIfNullThenUser": 1, - "getLangCodeByBrowserOrIfNullThenHttpParam": 1, - "getLangCodeByBrowserOrIfNullThenUser": 1, - "header": 2, - "returnList": 11, "[": 102, "]": 102, - "tokens": 3, - "StringUtils.split": 1, - "token": 7, - "token.contains": 1, - "token.substring": 1, - "token.indexOf": 1, - "returnList.add": 8, - "StringUtils.length": 1, - "StringUtils.substring": 1, - "langCodes": 2, - "langCode": 3, - "langCodes.add": 1, - "getLanguageName": 1, - "displayLanguageCode": 13, - "languageCode": 2, - "translatedLanguageNames.get": 2, - "filterLanguageCode": 4, - "getAllLanguages": 3, - "translatedLanguageNames.containsKey": 1, + "EMPTY_STRING_ARRAY": 1, + "new": 60, + "}": 219, + ";": 308, + "Integer": 34, + "MAX_NUMBER_OF_ELEMENTS_IN_LIST": 5, + "get": 4, + "return": 106, + "List": 71, + "": 30, + "objectToString": 1, + "(": 481, + "": 22, + "objects": 3, + ")": 481, + "strings": 3, + "null": 92, + "if": 91, + "objects.size": 1, + "for": 24, + "Object": 23, + "obj": 3, + "instanceof": 1, + "strings.add": 1, + "reverse": 2, + "anArray": 14, + "i": 55, + "j": 10, + "anArray.size": 2, + "-": 18, + "tmp": 6, + "while": 8, + "+": 75, + "SObject": 19, + "lowerCase": 1, + "strs": 9, + "returnValue": 22, + "strs.size": 3, + "str": 10, + "returnValue.add": 3, + "str.toLowerCase": 1, + "upperCase": 1, + "str.toUpperCase": 1, + "trim": 1, + "str.trim": 3, + "mergex": 2, + "array1": 8, + "array2": 9, + "merged": 6, + "array1.size": 4, + "array2.size": 2, "<": 32, - "translatedLanguageNames": 1, - "BooleanUtils": 1, + "": 19, + "sObj": 4, + "merged.add": 2, "Boolean": 38, + "isEmpty": 7, + "objectArray": 17, + "true": 12, + "objectArray.size": 6, + "isNotEmpty": 4, + "pluck": 1, + "fieldName": 3, + "||": 12, + "fieldName.trim": 2, + ".length": 2, + "plucked": 3, + ".get": 4, + "toString": 3, + "void": 9, + "assertArraysAreEqual": 2, + "expected": 16, + "actual": 16, + "//check": 2, + "to": 4, + "see": 2, + "one": 2, + "param": 2, + "is": 5, + "but": 2, + "the": 4, + "other": 2, + "not": 3, + "System.assert": 6, + "&&": 46, + "ArrayUtils.toString": 12, + "expected.size": 4, + "actual.size": 2, + "merg": 2, + "list1": 15, + "list2": 9, + "returnList": 11, + "list1.size": 6, + "list2.size": 2, + "throw": 6, + "IllegalArgumentException": 5, + "elmt": 8, + "returnList.add": 8, + "subset": 6, + "aList": 4, + "count": 10, + "startIndex": 9, + "<=>": 2, + "size": 2, + "1": 2, + "list1.get": 2, + "//": 11, + "//LIST/ARRAY": 1, + "SORTING": 1, + "//FOR": 2, + "FORCE.COM": 1, + "PRIMITIVES": 1, + "Double": 1, + "ID": 1, + "etc.": 1, + "qsort": 18, + "theList": 72, + "PrimitiveComparator": 2, + "sortAsc": 24, + "ObjectComparator": 3, + "comparator": 14, + "theList.size": 2, + "SALESFORCE": 1, + "OBJECTS": 1, + "sObjects": 1, + "ISObjectComparator": 3, + "private": 10, + "lo0": 6, + "hi0": 8, + "lo": 42, + "hi": 50, + "else": 25, + "comparator.compare": 12, + "prs": 8, + "pivot": 14, + "/": 4, + "BooleanUtils": 1, "isFalse": 1, "bool": 32, "false": 13, - "else": 25, "isNotFalse": 1, - "true": 12, "isNotTrue": 1, "isTrue": 1, "negate": 1, "toBooleanDefaultIfNull": 1, "defaultVal": 2, "toBoolean": 2, - "Integer": 34, "value": 10, "strToBoolean": 1, "StringUtils.equalsIgnoreCase": 1, "//Converts": 1, "an": 4, "int": 1, - "to": 4, "a": 6, "boolean": 1, "specifying": 1, @@ -2480,57 +2517,15 @@ "//Throws": 1, "trueValue": 2, "falseValue": 2, - "throw": 6, - "IllegalArgumentException": 5, "toInteger": 1, "toStringYesNo": 1, "toStringYN": 1, - "toString": 3, "trueString": 2, "falseString": 2, "xor": 1, "boolArray": 4, - "||": 12, "boolArray.size": 1, "firstItem": 2, - "TwilioAPI": 2, - "MissingTwilioConfigCustomSettingsException": 2, - "extends": 1, - "Exception": 1, - "TwilioRestClient": 5, - "client": 2, - "public": 10, - "getDefaultClient": 2, - "TwilioConfig__c": 5, - "twilioCfg": 7, - "getTwilioConfig": 3, - "TwilioAPI.client": 2, - "twilioCfg.AccountSid__c": 3, - "twilioCfg.AuthToken__c": 3, - "TwilioAccount": 1, - "getDefaultAccount": 1, - ".getAccount": 2, - "TwilioCapability": 2, - "createCapability": 1, - "createClient": 1, - "accountSid": 2, - "authToken": 2, - "Test.isRunningTest": 1, - "//": 11, - "dummy": 2, - "sid": 1, - "TwilioConfig__c.getOrgDefaults": 1, - "@isTest": 1, - "void": 9, - "test_TwilioAPI": 1, - "System.assertEquals": 5, - "TwilioAPI.getTwilioConfig": 2, - ".AccountSid__c": 1, - ".AuthToken__c": 1, - "TwilioAPI.getDefaultClient": 2, - ".getAccountSid": 1, - ".getSid": 2, - "TwilioAPI.getDefaultAccount": 1, "EmailUtils": 1, "sendEmailWithStandardAttachments": 3, "recipients": 11, @@ -2568,8 +2563,6 @@ "Messaging.SingleEmailMessage": 3, "mail": 2, "email": 1, - "is": 5, - "not": 3, "saved": 1, "as": 1, "activity.": 1, @@ -2584,117 +2577,12 @@ "mail.setFileAttachments": 1, "Messaging.sendEmail": 1, "isValidEmailAddress": 2, - "str": 10, - "str.trim": 3, - ".length": 2, "split": 5, "str.split": 1, "split.size": 2, ".split": 1, "isNotValidEmailAddress": 1, - "ArrayUtils": 1, - "EMPTY_STRING_ARRAY": 1, - "MAX_NUMBER_OF_ELEMENTS_IN_LIST": 5, - "get": 4, - "objectToString": 1, - "": 22, - "objects": 3, - "strings": 3, - "objects.size": 1, - "Object": 23, - "obj": 3, - "instanceof": 1, - "strings.add": 1, - "reverse": 2, - "anArray": 14, - "i": 55, - "j": 10, - "anArray.size": 2, - "-": 18, - "tmp": 6, - "while": 8, - "+": 75, - "SObject": 19, - "lowerCase": 1, - "strs": 9, - "strs.size": 3, - "returnValue.add": 3, - "str.toLowerCase": 1, - "upperCase": 1, - "str.toUpperCase": 1, - "trim": 1, - "mergex": 2, - "array1": 8, - "array2": 9, - "merged": 6, - "array1.size": 4, - "array2.size": 2, - "": 19, - "sObj": 4, - "merged.add": 2, - "isEmpty": 7, - "objectArray": 17, - "objectArray.size": 6, - "isNotEmpty": 4, - "pluck": 1, - "fieldName": 3, - "fieldName.trim": 2, - "plucked": 3, - "assertArraysAreEqual": 2, - "expected": 16, - "actual": 16, - "//check": 2, - "see": 2, - "one": 2, - "param": 2, - "but": 2, - "the": 4, - "other": 2, - "System.assert": 6, - "ArrayUtils.toString": 12, - "expected.size": 4, - "actual.size": 2, - "merg": 2, - "list1": 15, - "list2": 9, - "list1.size": 6, - "list2.size": 2, - "elmt": 8, - "subset": 6, - "aList": 4, - "count": 10, - "startIndex": 9, - "<=>": 2, - "size": 2, - "1": 2, - "list1.get": 2, - "//LIST/ARRAY": 1, - "SORTING": 1, - "//FOR": 2, - "FORCE.COM": 1, - "PRIMITIVES": 1, - "Double": 1, - "ID": 1, - "etc.": 1, - "qsort": 18, - "theList": 72, - "PrimitiveComparator": 2, - "sortAsc": 24, - "ObjectComparator": 3, - "comparator": 14, - "theList.size": 2, - "SALESFORCE": 1, - "OBJECTS": 1, - "sObjects": 1, - "ISObjectComparator": 3, - "lo0": 6, - "hi0": 8, - "lo": 42, - "hi": 50, - "comparator.compare": 12, - "prs": 8, - "pivot": 14, - "/": 4, + "public": 10, "GeoUtils": 1, "generate": 1, "KML": 1, @@ -2737,6 +2625,7 @@ "line": 1, "may": 1, "also": 1, + "Map": 33, "": 2, "geo_response": 1, "accountAddressString": 2, @@ -2766,127 +2655,173 @@ "billingpostalcode": 1, "billingcountry": 1, "insert": 1, - "system.assertEquals": 1 + "system.assertEquals": 1, + "LanguageUtils": 1, + "final": 6, + "HTTP_LANGUAGE_CODE_PARAMETER_KEY": 2, + "DEFAULT_LANGUAGE_CODE": 3, + "Set": 6, + "SUPPORTED_LANGUAGE_CODES": 2, + "//Chinese": 2, + "Simplified": 1, + "Traditional": 1, + "//Dutch": 1, + "//English": 1, + "//Finnish": 1, + "//French": 1, + "//German": 1, + "//Italian": 1, + "//Japanese": 1, + "//Korean": 1, + "//Polish": 1, + "//Portuguese": 1, + "Brazilian": 1, + "//Russian": 1, + "//Spanish": 1, + "//Swedish": 1, + "//Thai": 1, + "//Czech": 1, + "//Danish": 1, + "//Hungarian": 1, + "//Indonesian": 1, + "//Turkish": 1, + "": 29, + "DEFAULTS": 1, + "getLangCodeByHttpParam": 4, + "LANGUAGE_CODE_SET": 1, + "getSuppLangCodeSet": 2, + "ApexPages.currentPage": 4, + ".getParameters": 2, + "LANGUAGE_HTTP_PARAMETER": 7, + "StringUtils.lowerCase": 3, + "StringUtils.replaceChars": 2, + "//underscore": 1, + "//dash": 1, + "DEFAULTS.containsKey": 3, + "DEFAULTS.get": 3, + "StringUtils.isNotBlank": 1, + "SUPPORTED_LANGUAGE_CODES.contains": 2, + "getLangCodeByBrowser": 4, + "LANGUAGES_FROM_BROWSER_AS_STRING": 2, + ".getHeaders": 1, + "LANGUAGES_FROM_BROWSER_AS_LIST": 3, + "splitAndFilterAcceptLanguageHeader": 2, + "LANGUAGES_FROM_BROWSER_AS_LIST.size": 1, + "languageFromBrowser": 6, + "getLangCodeByUser": 3, + "UserInfo.getLanguage": 1, + "getLangCodeByHttpParamOrIfNullThenBrowser": 1, + "StringUtils.defaultString": 4, + "getLangCodeByHttpParamOrIfNullThenUser": 1, + "getLangCodeByBrowserOrIfNullThenHttpParam": 1, + "getLangCodeByBrowserOrIfNullThenUser": 1, + "header": 2, + "tokens": 3, + "StringUtils.split": 1, + "token": 7, + "token.contains": 1, + "token.substring": 1, + "token.indexOf": 1, + "StringUtils.length": 1, + "StringUtils.substring": 1, + "langCodes": 2, + "langCode": 3, + "langCodes.add": 1, + "getLanguageName": 1, + "displayLanguageCode": 13, + "languageCode": 2, + "translatedLanguageNames.get": 2, + "filterLanguageCode": 4, + "getAllLanguages": 3, + "translatedLanguageNames.containsKey": 1, + "translatedLanguageNames": 1, + "TwilioAPI": 2, + "MissingTwilioConfigCustomSettingsException": 2, + "extends": 1, + "Exception": 1, + "TwilioRestClient": 5, + "client": 2, + "getDefaultClient": 2, + "TwilioConfig__c": 5, + "twilioCfg": 7, + "getTwilioConfig": 3, + "TwilioAPI.client": 2, + "twilioCfg.AccountSid__c": 3, + "twilioCfg.AuthToken__c": 3, + "TwilioAccount": 1, + "getDefaultAccount": 1, + ".getAccount": 2, + "TwilioCapability": 2, + "createCapability": 1, + "createClient": 1, + "accountSid": 2, + "authToken": 2, + "Test.isRunningTest": 1, + "dummy": 2, + "sid": 1, + "TwilioConfig__c.getOrgDefaults": 1, + "@isTest": 1, + "test_TwilioAPI": 1, + "System.assertEquals": 5, + "TwilioAPI.getTwilioConfig": 2, + ".AccountSid__c": 1, + ".AuthToken__c": 1, + "TwilioAPI.getDefaultClient": 2, + ".getAccountSid": 1, + ".getSid": 2, + "TwilioAPI.getDefaultAccount": 1 }, "AppleScript": { + "set": 108, + "windowWidth": 3, + "to": 128, + "windowHeight": 3, + "delay": 3, + "AppleScript": 2, + "s": 3, + "text": 13, + "item": 13, + "delimiters": 1, "tell": 40, "application": 16, - "set": 108, - "localMailboxes": 3, - "to": 128, - "every": 3, - "mailbox": 2, - "if": 50, + "screen_width": 2, "(": 89, - "count": 10, - "of": 72, - ")": 88, - "is": 40, - "greater": 5, - "than": 6, - "then": 28, - "messageCountDisplay": 5, - "&": 63, - "return": 16, - "my": 3, - "getMessageCountsForMailboxes": 4, - "else": 14, - "end": 67, - "everyAccount": 2, - "account": 1, - "repeat": 19, - "with": 11, - "eachAccount": 3, + "do": 4, + "JavaScript": 2, "in": 13, - "accountMailboxes": 3, + "document": 2, + ")": 88, + "screen_height": 2, + "end": 67, + "myFrontMost": 3, "name": 8, - "outputMessage": 2, - "make": 3, - "new": 2, - "outgoing": 2, - "message": 2, - "properties": 2, - "{": 32, - "content": 2, - "subject": 1, - "visible": 2, - "true": 8, - "}": 32, - "font": 2, - "size": 5, - "on": 18, - "theMailboxes": 2, - "-": 57, - "list": 9, - "mailboxes": 1, - "returns": 2, - "string": 17, - "displayString": 4, - "eachMailbox": 4, - "mailboxName": 2, - "messageCount": 2, - "messages": 1, - "as": 27, - "unreadCount": 2, - "unread": 1, - "padString": 3, - "theString": 4, - "fieldLength": 5, - "integer": 3, - "stringLength": 4, - "length": 1, - "paddedString": 5, - "text": 13, - "from": 9, - "character": 2, - "less": 1, - "or": 6, - "equal": 3, - "paddingLength": 2, - "times": 1, - "space": 1, - "isVoiceOverRunning": 3, - "isRunning": 3, - "false": 9, + "of": 72, + "first": 1, "processes": 2, - "contains": 1, - "isVoiceOverRunningWithAppleScript": 3, - "isRunningWithAppleScript": 3, - "AppleScript": 2, - "enabled": 2, - "VoiceOver": 1, - "try": 10, - "x": 1, + "whose": 1, + "frontmost": 1, + "is": 40, + "true": 8, + "{": 32, + "desktopTop": 2, + "desktopLeft": 1, + "desktopRight": 1, + "desktopBottom": 1, + "}": 32, "bounds": 2, - "vo": 1, - "cursor": 1, + "desktop": 1, + "try": 10, + "process": 5, + "w": 5, + "h": 4, + "size": 5, + "drawer": 2, + "window": 5, + "on": 18, "error": 3, - "currentDate": 3, - "current": 3, - "date": 1, - "amPM": 4, - "currentHour": 9, - "s": 3, - "minutes": 2, - "and": 7, - "<": 2, - "below": 1, - "sound": 1, - "nice": 1, - "currentMinutes": 4, - "ensure": 1, - "nn": 2, - "gets": 1, - "AM": 1, - "readjust": 1, - "for": 5, - "hour": 1, - "time": 1, - "currentTime": 3, - "day": 1, - "output": 1, - "say": 1, - "delay": 3, + "position": 1, + "-": 57, + "/": 2, "property": 7, "type_list": 6, "extension_list": 6, @@ -2898,7 +2833,9 @@ "FinderSelection": 4, "the": 56, "selection": 2, + "as": 27, "alias": 8, + "list": 9, "FS": 10, "Ideally": 2, "this": 2, @@ -2909,11 +2846,14 @@ "handler": 2, "SelectionCount": 6, "number": 6, + "count": 10, + "if": 50, + "then": 28, "userPicksFolder": 6, + "else": 14, "MyPath": 4, "path": 6, "me": 2, - "item": 13, "If": 2, "I": 2, "m": 2, @@ -2924,79 +2864,99 @@ "these_items": 18, "choose": 2, "file": 6, + "with": 11, "prompt": 2, "type": 6, "thesefiles": 2, "item_info": 24, + "repeat": 19, "i": 10, + "from": 9, "this_item": 14, "info": 4, + "for": 5, "folder": 10, "processFolder": 8, + "false": 9, + "and": 7, + "or": 6, "extension": 4, "theFilePath": 8, + "string": 17, "thePOSIXFilePath": 8, "POSIX": 4, "processFile": 8, - "process": 5, "folders": 2, "theFolder": 6, "without": 2, "invisibles": 2, - "need": 1, - "pass": 1, - "URL": 1, - "Terminal": 1, + "&": 63, "thePOSIXFileName": 6, "terminalCommand": 6, "convertCommand": 4, "newFileName": 4, - "do": 4, "shell": 2, "script": 2, - "activate": 3, - "pane": 4, - "UI": 1, - "elements": 1, - "tab": 1, - "group": 1, - "window": 5, - "click": 1, - "radio": 1, - "button": 4, - "get": 1, - "value": 1, - "field": 1, - "display": 4, - "dialog": 4, - "windowWidth": 3, - "windowHeight": 3, - "delimiters": 1, - "screen_width": 2, - "JavaScript": 2, - "document": 2, - "screen_height": 2, - "myFrontMost": 3, - "first": 1, - "whose": 1, - "frontmost": 1, - "desktopTop": 2, - "desktopLeft": 1, - "desktopRight": 1, - "desktopBottom": 1, - "desktop": 1, - "w": 5, - "h": 4, - "drawer": 2, - "position": 1, - "/": 2, + "need": 1, + "pass": 1, + "URL": 1, + "Terminal": 1, + "localMailboxes": 3, + "every": 3, + "mailbox": 2, + "greater": 5, + "than": 6, + "messageCountDisplay": 5, + "return": 16, + "my": 3, + "getMessageCountsForMailboxes": 4, + "everyAccount": 2, + "account": 1, + "eachAccount": 3, + "accountMailboxes": 3, + "outputMessage": 2, + "make": 3, + "new": 2, + "outgoing": 2, + "message": 2, + "properties": 2, + "content": 2, + "subject": 1, + "visible": 2, + "font": 2, + "theMailboxes": 2, + "mailboxes": 1, + "returns": 2, + "displayString": 4, + "eachMailbox": 4, + "mailboxName": 2, + "messageCount": 2, + "messages": 1, + "unreadCount": 2, + "unread": 1, + "padString": 3, + "theString": 4, + "fieldLength": 5, + "integer": 3, + "stringLength": 4, + "length": 1, + "paddedString": 5, + "character": 2, + "less": 1, + "equal": 3, + "paddingLength": 2, + "times": 1, + "space": 1, "lowFontSize": 9, "highFontSize": 6, "messageText": 4, "userInput": 4, + "display": 4, + "dialog": 4, "default": 4, "answer": 3, "buttons": 3, + "button": 4, "returned": 5, "minimumFontSize": 4, "newFontSize": 6, @@ -3004,12 +2964,55 @@ "theText": 3, "exit": 1, "fontList": 2, + "activate": 3, "crazyTextMessage": 2, "eachCharacter": 4, "characters": 1, "some": 1, "random": 4, - "color": 1 + "color": 1, + "current": 3, + "pane": 4, + "UI": 1, + "elements": 1, + "enabled": 2, + "tab": 1, + "group": 1, + "click": 1, + "radio": 1, + "get": 1, + "value": 1, + "field": 1, + "isVoiceOverRunning": 3, + "isRunning": 3, + "contains": 1, + "isVoiceOverRunningWithAppleScript": 3, + "isRunningWithAppleScript": 3, + "VoiceOver": 1, + "x": 1, + "vo": 1, + "cursor": 1, + "currentDate": 3, + "date": 1, + "amPM": 4, + "currentHour": 9, + "minutes": 2, + "<": 2, + "below": 1, + "sound": 1, + "nice": 1, + "currentMinutes": 4, + "ensure": 1, + "nn": 2, + "gets": 1, + "AM": 1, + "readjust": 1, + "hour": 1, + "time": 1, + "currentTime": 3, + "day": 1, + "output": 1, + "say": 1 }, "Arduino": { "void": 2, @@ -3847,16 +3850,108 @@ }, "Bluespec": { "package": 2, - "TL": 6, + "TbTL": 1, ";": 156, + "import": 1, + "TL": 6, + "*": 1, "interface": 2, + "Lamp": 3, "method": 42, - "Action": 17, - "ped_button_push": 4, - "(": 158, - ")": 163, - "set_car_state_N": 2, "Bool": 32, + "changed": 2, + "Action": 17, + "show_offs": 2, + "show_ons": 2, + "reset": 2, + "endinterface": 2, + "module": 3, + "mkLamp#": 1, + "(": 158, + "String": 1, + "name": 3, + "lamp": 5, + ")": 163, + "Reg#": 15, + "prev": 5, + "<": 44, + "-": 29, + "mkReg": 15, + "False": 9, + "if": 9, + "&&": 3, + "write": 2, + "+": 7, + "endmethod": 8, + "endmodule": 3, + "mkTest": 1, + "let": 1, + "dut": 2, + "sysTL": 3, + "Bit#": 1, + "ctr": 8, + "carN": 4, + "carS": 2, + "carE": 2, + "carW": 2, + "lamps": 15, + "[": 17, + "]": 17, + "mkLamp": 12, + "dut.lampRedNS": 1, + "dut.lampAmberNS": 1, + "dut.lampGreenNS": 1, + "dut.lampRedE": 1, + "dut.lampAmberE": 1, + "dut.lampGreenE": 1, + "dut.lampRedW": 1, + "dut.lampAmberW": 1, + "dut.lampGreenW": 1, + "dut.lampRedPed": 1, + "dut.lampAmberPed": 1, + "dut.lampGreenPed": 1, + "rule": 10, + "start": 1, + "dumpvars": 1, + "endrule": 10, + "detect_cars": 1, + "dut.set_car_state_N": 1, + "dut.set_car_state_S": 1, + "dut.set_car_state_E": 1, + "dut.set_car_state_W": 1, + "go": 1, + "True": 6, + "<=>": 3, + "12_000": 1, + "ped_button_push": 4, + "stop": 1, + "display": 2, + "finish": 1, + "function": 10, + "do_offs": 2, + "l": 3, + "l.show_offs": 1, + "do_ons": 2, + "l.show_ons": 1, + "do_reset": 2, + "l.reset": 1, + "do_it": 4, + "f": 2, + "action": 3, + "for": 3, + "Integer": 3, + "i": 15, + "endaction": 3, + "endfunction": 7, + "any_changes": 2, + "b": 12, + "||": 7, + ".changed": 1, + "return": 9, + "show": 1, + "time": 1, + "endpackage": 2, + "set_car_state_N": 2, "x": 8, "set_car_state_S": 2, "set_car_state_E": 2, @@ -3873,7 +3968,6 @@ "lampRedPed": 2, "lampAmberPed": 2, "lampGreenPed": 2, - "endinterface": 2, "typedef": 3, "enum": 1, "{": 1, @@ -3894,8 +3988,6 @@ "UInt#": 2, "Time32": 9, "CtrSize": 3, - "module": 3, - "sysTL": 3, "allRedDelay": 2, "amberDelay": 2, "nsGreenDelay": 2, @@ -3903,43 +3995,27 @@ "pedGreenDelay": 1, "pedAmberDelay": 1, "clocks_per_sec": 2, - "Reg#": 15, "state": 21, - "<": 44, - "-": 29, - "mkReg": 15, "next_green": 8, "secs": 7, "ped_button_pushed": 4, - "False": 9, "car_present_N": 3, - "True": 6, "car_present_S": 3, "car_present_E": 4, "car_present_W": 4, "car_present_NS": 3, - "||": 7, "cycle_ctr": 6, - "rule": 10, "dec_cycle_ctr": 1, - "endrule": 10, "Rules": 5, "low_priority_rule": 2, "rules": 4, "inc_sec": 1, - "+": 7, "endrules": 4, - "function": 10, "next_state": 8, "ns": 4, - "action": 3, - "<=>": 3, "0": 2, - "endaction": 3, - "endfunction": 7, "green_seq": 7, "case": 2, - "return": 9, "endcase": 2, "car_present": 4, "make_from_green_rule": 5, @@ -3951,7 +4027,6 @@ "amber_state": 2, "ng": 2, "from_amber": 1, - "&&": 3, "hprs": 10, "7": 1, "1": 1, @@ -3961,84 +4036,12 @@ "5": 1, "6": 1, "fromAllRed": 2, - "if": 9, "else": 4, "noAction": 1, "high_priority_rules": 4, - "[": 17, - "]": 17, - "for": 3, - "Integer": 3, - "i": 15, "rJoin": 1, "addRules": 1, - "preempts": 1, - "endmethod": 8, - "b": 12, - "endmodule": 3, - "endpackage": 2, - "TbTL": 1, - "import": 1, - "*": 1, - "Lamp": 3, - "changed": 2, - "show_offs": 2, - "show_ons": 2, - "reset": 2, - "mkLamp#": 1, - "String": 1, - "name": 3, - "lamp": 5, - "prev": 5, - "write": 2, - "mkTest": 1, - "let": 1, - "dut": 2, - "Bit#": 1, - "ctr": 8, - "carN": 4, - "carS": 2, - "carE": 2, - "carW": 2, - "lamps": 15, - "mkLamp": 12, - "dut.lampRedNS": 1, - "dut.lampAmberNS": 1, - "dut.lampGreenNS": 1, - "dut.lampRedE": 1, - "dut.lampAmberE": 1, - "dut.lampGreenE": 1, - "dut.lampRedW": 1, - "dut.lampAmberW": 1, - "dut.lampGreenW": 1, - "dut.lampRedPed": 1, - "dut.lampAmberPed": 1, - "dut.lampGreenPed": 1, - "start": 1, - "dumpvars": 1, - "detect_cars": 1, - "dut.set_car_state_N": 1, - "dut.set_car_state_S": 1, - "dut.set_car_state_E": 1, - "dut.set_car_state_W": 1, - "go": 1, - "12_000": 1, - "stop": 1, - "display": 2, - "finish": 1, - "do_offs": 2, - "l": 3, - "l.show_offs": 1, - "do_ons": 2, - "l.show_ons": 1, - "do_reset": 2, - "l.reset": 1, - "do_it": 4, - "f": 2, - "any_changes": 2, - ".changed": 1, - "show": 1, - "time": 1 + "preempts": 1 }, "Brightscript": { "**": 17, @@ -4304,37 +4307,153 @@ }, "C": { "#include": 154, - "int": 446, - "save_commit_buffer": 3, - ";": 5465, "const": 358, "char": 530, - "*commit_type": 2, - "static": 455, + "*blob_type": 2, + ";": 5465, "struct": 360, - "commit": 59, - "*check_commit": 1, + "blob": 6, + "*lookup_blob": 2, "(": 6243, - "object": 41, - "*obj": 9, "unsigned": 140, "*sha1": 16, - "quiet": 5, ")": 6245, "{": 1531, + "object": 41, + "*obj": 9, + "lookup_object": 2, + "sha1": 20, "if": 1015, "obj": 48, + "return": 529, + "create_object": 2, + "OBJ_BLOB": 3, + "alloc_blob_node": 1, "-": 1803, "type": 36, - "OBJ_COMMIT": 5, "error": 96, "sha1_to_hex": 8, - "sha1": 20, "typename": 2, - "return": 529, "NULL": 330, "}": 1547, "*": 261, + "int": 446, + "parse_blob_buffer": 2, + "*item": 10, + "void": 288, + "*buffer": 6, + "long": 105, + "size": 120, + "item": 24, + "object.parsed": 4, + "#ifndef": 89, + "BLOB_H": 2, + "#define": 920, + "extern": 38, + "#endif": 243, + "BOOTSTRAP_H": 2, + "": 8, + "__GNUC__": 8, + "typedef": 191, + "*true": 1, + "*false": 1, + "*eof": 1, + "*empty_list": 1, + "*global_enviroment": 1, + "enum": 30, + "obj_type": 1, + "scm_bool": 1, + "scm_empty_list": 1, + "scm_eof": 1, + "scm_char": 1, + "scm_int": 1, + "scm_pair": 1, + "scm_symbol": 1, + "scm_prim_fun": 1, + "scm_lambda": 1, + "scm_str": 1, + "scm_file": 1, + "*eval_proc": 1, + "*maybe_add_begin": 1, + "*code": 2, + "init_enviroment": 1, + "*env": 4, + "eval_err": 1, + "*msg": 7, + "__attribute__": 1, + "noreturn": 1, + "define_var": 1, + "*var": 4, + "*val": 6, + "set_var": 1, + "*get_var": 1, + "*cond2nested_if": 1, + "*cond": 1, + "*let2lambda": 1, + "*let": 1, + "*and2nested_if": 1, + "*and": 1, + "*or2nested_if": 1, + "*or": 1, + "git_cache_init": 1, + "git_cache": 4, + "*cache": 4, + "size_t": 52, + "git_cached_obj_freeptr": 1, + "free_ptr": 2, + "<": 219, + "git__size_t_powerof2": 1, + "cache": 26, + "size_mask": 6, + "lru_count": 1, + "free_obj": 4, + "git_mutex_init": 1, + "&": 442, + "lock": 6, + "nodes": 10, + "git__malloc": 3, + "sizeof": 71, + "git_cached_obj": 5, + "GITERR_CHECK_ALLOC": 3, + "memset": 4, + "git_cache_free": 1, + "i": 410, + "for": 88, + "+": 551, + "[": 601, + "]": 601, + "git_cached_obj_decref": 3, + "git__free": 15, + "*git_cache_get": 1, + "git_oid": 7, + "*oid": 2, + "uint32_t": 144, + "hash": 12, + "*node": 2, + "*result": 1, + "memcpy": 35, + "oid": 17, + "id": 13, + "git_mutex_lock": 2, + "node": 9, + "&&": 248, + "git_oid_cmp": 6, + "git_cached_obj_incref": 3, + "result": 48, + "git_mutex_unlock": 2, + "*git_cache_try_store": 1, + "*_entry": 1, + "*entry": 2, + "_entry": 1, + "entry": 17, + "else": 190, + "save_commit_buffer": 3, + "*commit_type": 2, + "static": 455, + "commit": 59, + "*check_commit": 1, + "quiet": 5, + "OBJ_COMMIT": 5, "*lookup_commit_reference_gently": 2, "deref_tag": 1, "parse_object": 1, @@ -4353,30 +4472,22 @@ "object.sha1": 8, "warning": 1, "*lookup_commit": 2, - "lookup_object": 2, - "create_object": 2, "alloc_commit_node": 1, "*lookup_commit_reference_by_name": 2, "*name": 12, - "[": 601, - "]": 601, "*commit": 10, "get_sha1": 1, "name": 28, "||": 141, "parse_commit": 3, - "long": 105, "parse_commit_date": 2, "*buf": 10, "*tail": 2, "*dateptr": 1, "buf": 57, - "+": 551, "tail": 12, "memcmp": 6, "while": 70, - "<": 219, - "&&": 248, "dateptr": 2, "strtoul": 2, "commit_graft": 13, @@ -4391,26 +4502,18 @@ "*graft": 3, "cmp": 9, "graft": 10, - "else": 190, "register_commit_graft": 2, "ignore_dups": 2, "pos": 7, "free": 62, "alloc_nr": 1, "xrealloc": 2, - "sizeof": 71, "parse_commit_buffer": 3, - "*item": 10, - "void": 288, - "*buffer": 6, - "size": 120, "buffer": 10, "*bufptr": 1, "parent": 7, "commit_list": 35, "**pptr": 1, - "item": 24, - "object.parsed": 4, "<=>": 16, "bufptr": 12, "46": 1, @@ -4423,7 +4526,6 @@ "get_sha1_hex": 2, "lookup_tree": 1, "pptr": 5, - "&": 442, "parents": 4, "lookup_commit_graft": 1, "*new_parent": 2, @@ -4439,10 +4541,7 @@ "lookup_commit": 2, "commit_list_insert": 2, "next": 8, - "i": 410, - "for": 88, "date": 5, - "enum": 30, "object_type": 1, "ret": 142, "read_sha1_file": 1, @@ -4475,165 +4574,669 @@ "**next": 2, "*new": 1, "new": 4, - "": 1, - "": 2, - "": 8, - "": 4, - "": 2, - "//": 262, - "rfUTF8_IsContinuationbyte": 1, - "": 3, - "malloc": 3, - "": 5, - "memcpy": 35, - "e.t.c.": 1, - "int32_t": 112, - "rfFReadLine_UTF8": 5, - "FILE*": 64, - "f": 184, - "char**": 7, - "utf8": 36, - "uint32_t*": 34, - "byteLength": 197, - "bufferSize": 6, - "char*": 167, - "eof": 53, - "bytesN": 98, - "uint32_t": 144, - "bIndex": 5, - "#ifdef": 66, - "RF_NEWLINE_CRLF": 1, - "newLineFound": 1, - "false": 77, - "#endif": 243, - "*bufferSize": 1, - "RF_OPTION_FGETS_READBYTESN": 5, - "RF_MALLOC": 47, - "tempBuff": 6, - "uint16_t": 12, - "RF_LF": 10, - "break": 244, - "buff": 95, - "RF_SUCCESS": 14, - "RE_FILE_EOF": 22, - "EOF": 26, - "found": 20, - "*eofReached": 14, - "true": 73, - "LOG_ERROR": 64, - "num": 24, - "RF_HEXEQ_UI": 7, - "rfFgetc_UTF32BE": 3, - "else//": 14, - "undo": 5, - "the": 91, - "peek": 5, - "ahead": 5, - "of": 44, - "file": 6, - "pointer": 5, - "fseek": 19, - "SEEK_CUR": 19, - "rfFgets_UTF32LE": 2, - "eofReached": 4, - "do": 21, - "rfFgetc_UTF32LE": 4, - "rfFgets_UTF16BE": 2, - "rfFgetc_UTF16BE": 4, - "rfFgets_UTF16LE": 2, - "rfFgetc_UTF16LE": 4, - "rfFgets_UTF8": 2, - "rfFgetc_UTF8": 3, - "RF_HEXEQ_C": 9, - "fgetc": 9, - "check": 8, - "ferror": 2, - "RE_FILE_READ": 2, + "COMMIT_H": 2, + "*util": 1, + "indegree": 1, + "*parents": 4, + "*tree": 3, + "decoration": 1, + "name_decoration": 3, + "*commit_list_insert": 1, + "commit_list_count": 1, + "*l": 1, + "*commit_list_insert_by_date": 1, + "free_commit_list": 1, + "cmit_fmt": 3, + "CMIT_FMT_RAW": 1, + "CMIT_FMT_MEDIUM": 2, + "CMIT_FMT_DEFAULT": 1, + "CMIT_FMT_SHORT": 1, + "CMIT_FMT_FULL": 1, + "CMIT_FMT_FULLER": 1, + "CMIT_FMT_ONELINE": 1, + "CMIT_FMT_EMAIL": 1, + "CMIT_FMT_USERFORMAT": 1, + "CMIT_FMT_UNSPECIFIED": 1, + "pretty_print_context": 6, + "fmt": 4, + "abbrev": 1, + "*subject": 1, + "*after_subject": 1, + "preserve_subject": 1, + "date_mode": 2, + "date_mode_explicit": 1, + "need_8bit_cte": 2, + "show_notes": 1, + "reflog_walk_info": 1, + "*reflog_info": 1, + "*output_encoding": 2, + "userformat_want": 2, + "notes": 1, + "has_non_ascii": 1, + "*text": 1, + "rev_info": 2, + "*logmsg_reencode": 1, + "*reencode_commit_message": 1, + "**encoding_p": 1, + "get_commit_format": 1, + "*arg": 1, + "*format_subject": 1, + "strbuf": 12, + "*sb": 7, + "*line_separator": 1, + "userformat_find_requirements": 1, + "*fmt": 2, + "*w": 2, + "format_commit_message": 1, + "*format": 2, + "*context": 1, + "pretty_print_commit": 1, + "*pp": 4, + "pp_commit_easy": 1, + "pp_user_info": 1, + "*what": 1, + "*line": 1, + "*encoding": 2, + "pp_title_line": 1, + "**msg_p": 2, + "pp_remainder": 1, + "indent": 1, + "*pop_most_recent_commit": 1, + "mark": 3, + "*pop_commit": 1, + "**stack": 1, + "clear_commit_marks": 1, + "clear_commit_marks_for_object_array": 1, + "object_array": 2, + "sort_in_topological_order": 1, + "**": 6, + "list": 1, + "lifo": 1, + "FLEX_ARRAY": 1, + "*read_graft_line": 1, + "len": 30, + "*lookup_commit_graft": 1, + "*get_merge_bases": 1, + "*rev1": 1, + "*rev2": 1, + "cleanup": 12, + "*get_merge_bases_many": 1, + "*one": 1, + "**twos": 1, + "*get_octopus_merge_bases": 1, + "*in": 1, + "register_shallow": 1, + "unregister_shallow": 1, + "for_each_commit_graft": 1, + "each_commit_graft_fn": 1, + "is_repository_shallow": 1, + "*get_shallow_commits": 1, + "*heads": 2, + "depth": 2, + "shallow_flag": 1, + "not_shallow_flag": 1, + "is_descendant_of": 1, + "in_merge_bases": 1, + "interactive_add": 1, + "argc": 26, + "**argv": 6, + "*prefix": 7, + "patch": 1, + "run_add_interactive": 1, + "*revision": 1, + "*patch_mode": 1, + "**pathspec": 1, + "inline": 3, + "single_parent": 1, + "*reduce_heads": 1, + "commit_extra_header": 7, + "*key": 5, + "*value": 5, + "append_merge_tag_headers": 1, + "***tail": 1, + "commit_tree": 1, "*ret": 20, - "cp": 12, - "c2": 13, - "c3": 9, - "c4": 5, - "i_READ_CHECK": 20, - "///": 4, - "success": 4, - "cc": 24, - "we": 10, - "need": 5, - "more": 2, - "bytes": 225, - "xC0": 3, - "xC1": 1, - "RE_UTF8_INVALID_SEQUENCE_INVALID_BYTE": 6, - "RE_UTF8_INVALID_SEQUENCE_END": 6, - "rfUTF8_IsContinuationByte": 12, - "RE_UTF8_INVALID_SEQUENCE_CONBYTE": 6, - "decoded": 3, - "codepoint": 47, - "F": 38, + "*author": 2, + "*sign_commit": 2, + "commit_tree_extended": 1, + "*read_commit_extra_headers": 1, + "*read_commit_extra_header_lines": 1, + "free_commit_extra_headers": 1, + "*extra": 1, + "merge_remote_util": 1, + "*get_merge_parent": 1, + "parse_signed_commit": 1, + "*message": 1, + "*signature": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "#ifdef": 66, + "CONFIG_SMP": 1, + "DEFINE_MUTEX": 1, + "cpu_add_remove_lock": 3, + "cpu_maps_update_begin": 9, + "mutex_lock": 5, + "cpu_maps_update_done": 9, + "mutex_unlock": 6, + "RAW_NOTIFIER_HEAD": 1, + "cpu_chain": 4, + "cpu_hotplug_disabled": 7, + "CONFIG_HOTPLUG_CPU": 2, + "task_struct": 5, + "*active_writer": 1, + "mutex": 1, + "refcount": 2, + "cpu_hotplug": 1, + ".active_writer": 1, + ".lock": 1, + "__MUTEX_INITIALIZER": 1, + "cpu_hotplug.lock": 8, + ".refcount": 1, + "get_online_cpus": 2, + "might_sleep": 1, + "cpu_hotplug.active_writer": 6, + "current": 5, + "cpu_hotplug.refcount": 3, + "EXPORT_SYMBOL_GPL": 4, + "put_online_cpus": 2, + "unlikely": 54, + "wake_up_process": 1, + "cpu_hotplug_begin": 4, + "likely": 22, + "break": 244, + "__set_current_state": 1, + "TASK_UNINTERRUPTIBLE": 1, + "schedule": 1, + "cpu_hotplug_done": 4, + "#else": 94, + "__ref": 6, + "register_cpu_notifier": 2, + "notifier_block": 3, + "*nb": 3, + "raw_notifier_chain_register": 1, + "nb": 2, + "__cpu_notify": 6, + "val": 20, + "*v": 3, + "nr_to_call": 2, + "*nr_calls": 1, + "__raw_notifier_call_chain": 1, + "v": 11, + "nr_calls": 9, + "notifier_to_errno": 1, + "cpu_notify": 5, + "cpu_notify_nofail": 4, + "BUG_ON": 4, + "EXPORT_SYMBOL": 8, + "unregister_cpu_notifier": 2, + "raw_notifier_chain_unregister": 1, + "clear_tasks_mm_cpumask": 1, + "cpu": 57, + "WARN_ON": 1, + "cpu_online": 5, + "rcu_read_lock": 1, + "for_each_process": 2, + "p": 60, + "*t": 2, + "t": 32, + "find_lock_task_mm": 1, + "cpumask_clear_cpu": 5, + "mm_cpumask": 1, + "mm": 1, + "task_unlock": 1, + "rcu_read_unlock": 1, + "check_for_tasks": 2, + "write_lock_irq": 1, + "tasklist_lock": 2, + "task_cpu": 1, + "state": 104, + "TASK_RUNNING": 1, + "utime": 1, + "stime": 1, + "printk": 12, + "KERN_WARNING": 3, + "comm": 1, + "task_pid_nr": 1, + "flags": 89, + "write_unlock_irq": 1, + "take_cpu_down_param": 3, + "mod": 13, + "*hcpu": 3, + "take_cpu_down": 2, + "*_param": 1, + "*param": 1, + "_param": 1, + "err": 38, + "__cpu_disable": 1, + "CPU_DYING": 1, "|": 132, - "<<": 56, - "end": 48, - "case": 273, - "xE0": 2, - "xF": 5, - "to": 37, - "decode": 6, - "xF0": 2, - "RF_HEXGE_C": 1, - "xBF": 2, - "//invalid": 1, - "byte": 6, - "value": 9, - "are": 6, - "from": 16, - "xFF": 1, - "//if": 1, - "needing": 1, - "than": 5, - "swapE": 21, - "v1": 38, - "v2": 26, - "rfUTILS_Endianess": 24, - "RF_LITTLE_ENDIAN": 23, - "fread": 12, - "swap": 9, - "endianess": 40, - "needed": 10, - "rfUTILS_SwapEndianUS": 10, - "RF_HEXGE_US": 4, - "xD800": 8, - "RF_HEXLE_US": 4, - "xDFFF": 8, - "RF_HEXL_US": 8, - "RF_HEXG_US": 8, - "xDBFF": 4, - "RE_UTF16_INVALID_SEQUENCE": 20, - "RE_UTF16_NO_SURRPAIR": 2, - "xDC00": 4, - "user": 2, - "wants": 2, - "ff": 10, - "uint16_t*": 11, - "surrogate": 4, - "pair": 4, - "existence": 2, - "RF_BIG_ENDIAN": 10, - "rfUTILS_SwapEndianUI": 11, - "rfFback_UTF32BE": 2, - "i_FSEEK_CHECK": 14, - "rfFback_UTF32LE": 2, - "rfFback_UTF16BE": 2, - "rfFback_UTF16LE": 2, - "rfFback_UTF8": 2, + "param": 2, + "hcpu": 10, + "_cpu_down": 3, + "tasks_frozen": 4, + "CPU_TASKS_FROZEN": 2, + "tcd_param": 2, + ".mod": 1, + ".hcpu": 1, + "num_online_cpus": 2, + "EBUSY": 3, + "EINVAL": 6, + "CPU_DOWN_PREPARE": 1, + "CPU_DOWN_FAILED": 2, + "__func__": 2, + "goto": 159, + "out_release": 3, + "__stop_machine": 1, + "cpumask_of": 1, + "idle_cpu": 1, + "cpu_relax": 1, + "__cpu_die": 1, + "CPU_DEAD": 1, + "CPU_POST_DEAD": 1, + "cpu_down": 2, + "out": 18, + "__cpuinit": 3, + "_cpu_up": 3, + "*idle": 1, + "cpu_present": 1, + "idle": 4, + "idle_thread_get": 1, + "IS_ERR": 1, + "PTR_ERR": 1, + "CPU_UP_PREPARE": 1, + "out_notify": 3, + "__cpu_up": 1, + "CPU_ONLINE": 1, + "CPU_UP_CANCELED": 1, + "cpu_up": 2, + "CONFIG_MEMORY_HOTPLUG": 2, + "nid": 5, + "pg_data_t": 1, + "*pgdat": 1, + "cpu_possible": 1, + "KERN_ERR": 5, + "#if": 92, + "defined": 42, + "CONFIG_IA64": 1, + "cpu_to_node": 1, + "node_online": 1, + "mem_online_node": 1, + "pgdat": 3, + "NODE_DATA": 1, + "ENOMEM": 4, + "node_zonelists": 1, + "_zonerefs": 1, + "zone": 1, + "zonelists_mutex": 2, + "build_all_zonelists": 1, + "CONFIG_PM_SLEEP_SMP": 2, + "cpumask_var_t": 1, + "frozen_cpus": 9, + "__weak": 4, + "arch_disable_nonboot_cpus_begin": 2, + "arch_disable_nonboot_cpus_end": 2, + "disable_nonboot_cpus": 1, + "first_cpu": 3, + "cpumask_first": 1, + "cpu_online_mask": 3, + "cpumask_clear": 2, + "for_each_online_cpu": 1, + "cpumask_set_cpu": 5, + "arch_enable_nonboot_cpus_begin": 2, + "arch_enable_nonboot_cpus_end": 2, + "enable_nonboot_cpus": 1, + "cpumask_empty": 1, + "KERN_INFO": 2, + "for_each_cpu": 1, + "__init": 2, + "alloc_frozen_cpus": 2, + "alloc_cpumask_var": 1, + "GFP_KERNEL": 1, + "__GFP_ZERO": 1, + "core_initcall": 2, + "cpu_hotplug_disable_before_freeze": 2, + "cpu_hotplug_enable_after_thaw": 2, + "cpu_hotplug_pm_callback": 2, + "action": 2, + "*ptr": 1, "switch": 46, - "depending": 1, - "on": 4, - "number": 19, - "read": 1, - "backwards": 1, + "case": 273, + "PM_SUSPEND_PREPARE": 1, + "PM_HIBERNATION_PREPARE": 1, + "PM_POST_SUSPEND": 1, + "PM_POST_HIBERNATION": 1, "default": 33, - "RE_UTF8_INVALID_SEQUENCE": 2, + "NOTIFY_DONE": 1, + "NOTIFY_OK": 1, + "cpu_hotplug_pm_sync_init": 2, + "pm_notifier": 1, + "notify_cpu_starting": 1, + "CPU_STARTING": 1, + "cpumask_test_cpu": 1, + "CPU_STARTING_FROZEN": 1, + "MASK_DECLARE_1": 3, + "x": 57, + "UL": 1, + "<<": 56, + "MASK_DECLARE_2": 3, + "MASK_DECLARE_4": 3, + "MASK_DECLARE_8": 9, + "cpu_bit_bitmap": 2, + "BITS_PER_LONG": 2, + "BITS_TO_LONGS": 1, + "NR_CPUS": 2, + "DECLARE_BITMAP": 6, + "cpu_all_bits": 2, + "CPU_BITS_ALL": 2, + "CONFIG_INIT_ALL_POSSIBLE": 1, + "cpu_possible_bits": 6, + "CONFIG_NR_CPUS": 5, + "__read_mostly": 5, + "cpumask": 7, + "*const": 4, + "cpu_possible_mask": 2, + "to_cpumask": 15, + "cpu_online_bits": 5, + "cpu_present_bits": 5, + "cpu_present_mask": 2, + "cpu_active_bits": 4, + "cpu_active_mask": 2, + "set_cpu_possible": 1, + "bool": 6, + "possible": 2, + "set_cpu_present": 1, + "present": 2, + "set_cpu_online": 1, + "online": 2, + "set_cpu_active": 1, + "active": 2, + "init_cpu_present": 1, + "*src": 3, + "cpumask_copy": 3, + "src": 16, + "init_cpu_possible": 1, + "init_cpu_online": 1, + "*diff_prefix_from_pathspec": 1, + "git_strarray": 2, + "*pathspec": 2, + "git_buf": 3, + "prefix": 34, + "GIT_BUF_INIT": 3, + "*scan": 2, + "git_buf_common_prefix": 1, + "pathspec": 15, + "scan": 4, + "prefix.ptr": 2, + "git__iswildcard": 1, + "git_buf_truncate": 1, + "prefix.size": 1, + "git_buf_detach": 1, + "git_buf_free": 4, + "diff_pathspec_is_interesting": 2, + "*str": 1, + "count": 17, + "false": 77, + "true": 73, + "str": 162, + "strings": 5, + "diff_path_matches_pathspec": 3, + "git_diff_list": 17, + "*diff": 8, + "*path": 2, + "git_attr_fnmatch": 4, + "*match": 3, + "diff": 93, + "pathspec.length": 1, + "git_vector_foreach": 4, + "match": 16, + "p_fnmatch": 1, + "pattern": 3, + "path": 20, + "FNM_NOMATCH": 1, + "GIT_ATTR_FNMATCH_HASWILD": 1, + "strncmp": 1, + "length": 58, + "GIT_ATTR_FNMATCH_NEGATIVE": 1, + "git_diff_delta": 19, + "*diff_delta__alloc": 1, + "git_delta_t": 5, + "status": 57, + "*delta": 6, + "git__calloc": 3, + "delta": 54, + "old_file.path": 12, + "git_pool_strdup": 3, + "pool": 12, + "new_file.path": 6, + "opts.flags": 8, + "GIT_DIFF_REVERSE": 3, + "GIT_DELTA_ADDED": 4, + "GIT_DELTA_DELETED": 7, + "*diff_delta__dup": 1, + "*d": 1, + "git_pool": 4, + "*pool": 3, + "d": 16, + "fail": 19, + "*diff_delta__merge_like_cgit": 1, + "*b": 6, + "*dup": 1, + "diff_delta__dup": 3, + "dup": 15, + "new_file.oid": 7, + "git_oid_cpy": 5, + "new_file.mode": 4, + "new_file.size": 3, + "new_file.flags": 4, + "old_file.oid": 3, + "GIT_DELTA_UNTRACKED": 5, + "GIT_DELTA_IGNORED": 5, + "GIT_DELTA_UNMODIFIED": 11, + "diff_delta__from_one": 5, + "git_index_entry": 8, + "GIT_DIFF_INCLUDE_IGNORED": 1, + "GIT_DIFF_INCLUDE_UNTRACKED": 1, + "diff_delta__alloc": 2, + "assert": 41, + "GIT_DELTA_MODIFIED": 3, + "old_file.mode": 2, + "mode": 11, + "old_file.size": 1, + "file_size": 6, + "old_file.flags": 2, + "GIT_DIFF_FILE_VALID_OID": 4, + "git_vector_insert": 4, + "deltas": 8, + "diff_delta__from_two": 2, + "*old_entry": 1, + "*new_entry": 1, + "*new_oid": 1, + "GIT_DIFF_INCLUDE_UNMODIFIED": 1, + "*temp": 1, + "old_entry": 5, + "new_entry": 5, + "temp": 11, + "new_oid": 3, + "git_oid_iszero": 2, + "*diff_strdup_prefix": 1, + "strlen": 17, + "git_pool_strcat": 1, + "git_pool_strndup": 1, + "diff_delta__cmp": 3, + "*da": 1, + "*db": 3, + "strcmp": 20, + "da": 2, + "db": 10, + "config_bool": 5, + "git_config": 3, + "*cfg": 2, + "defvalue": 2, + "git_config_get_bool": 1, + "cfg": 6, + "giterr_clear": 1, + "*git_diff_list_alloc": 1, + "git_repository": 7, + "*repo": 7, + "git_diff_options": 7, + "*opts": 6, + "repo": 23, + "git_vector_init": 3, + "git_pool_init": 2, + "git_repository_config__weakptr": 1, + "diffcaps": 13, + "GIT_DIFFCAPS_HAS_SYMLINKS": 2, + "GIT_DIFFCAPS_ASSUME_UNCHANGED": 2, + "GIT_DIFFCAPS_TRUST_EXEC_BIT": 2, + "GIT_DIFFCAPS_TRUST_CTIME": 2, + "opts": 24, + "opts.pathspec": 2, + "opts.old_prefix": 4, + "diff_strdup_prefix": 2, + "old_prefix": 2, + "DIFF_OLD_PREFIX_DEFAULT": 1, + "opts.new_prefix": 4, + "new_prefix": 2, + "DIFF_NEW_PREFIX_DEFAULT": 1, + "*swap": 1, + "swap": 9, + "pathspec.count": 2, + "*pattern": 1, + "pathspec.strings": 1, + "GIT_ATTR_FNMATCH_ALLOWSPACE": 1, + "git_attr_fnmatch__parse": 1, + "GIT_ENOTFOUND": 1, + "git_diff_list_free": 3, + "deltas.contents": 1, + "git_vector_free": 3, + "pathspec.contents": 1, + "git_pool_clear": 2, + "oid_for_workdir_item": 2, + "full_path": 3, + "git_buf_joinpath": 1, + "git_repository_workdir": 1, + "S_ISLNK": 2, + "git_odb__hashlink": 1, + "full_path.ptr": 2, + "git__is_sizet": 1, + "giterr_set": 1, + "GITERR_OS": 1, + "fd": 34, + "git_futils_open_ro": 1, + "git_odb__hashfd": 1, + "GIT_OBJ_BLOB": 1, + "p_close": 1, + "EXEC_BIT_MASK": 3, + "maybe_modified": 2, + "git_iterator": 8, + "*old_iter": 2, + "*oitem": 2, + "*new_iter": 2, + "*nitem": 2, + "noid": 4, + "*use_noid": 1, + "omode": 8, + "oitem": 29, + "nmode": 10, + "nitem": 32, + "GIT_UNUSED": 1, + "old_iter": 8, + "S_ISREG": 1, + "GIT_MODE_TYPE": 3, + "GIT_MODE_PERMS_MASK": 1, + "flags_extended": 2, + "GIT_IDXENTRY_INTENT_TO_ADD": 1, + "GIT_IDXENTRY_SKIP_WORKTREE": 1, + "new_iter": 13, + "GIT_ITERATOR_WORKDIR": 2, + "ctime.seconds": 2, + "mtime.seconds": 2, + "GIT_DIFFCAPS_USE_DEV": 1, + "dev": 2, + "ino": 2, + "uid": 2, + "gid": 2, + "S_ISGITLINK": 1, + "git_submodule": 1, + "*sub": 1, + "GIT_DIFF_IGNORE_SUBMODULES": 1, + "git_submodule_lookup": 1, + "sub": 12, + "ignore": 1, + "GIT_SUBMODULE_IGNORE_ALL": 1, + "use_noid": 2, + "diff_from_iterators": 5, + "**diff_ptr": 1, + "ignore_prefix": 6, + "git_diff_list_alloc": 1, + "old_src": 1, + "new_src": 3, + "git_iterator_current": 2, + "git_iterator_advance": 5, + "delta_type": 8, + "git_buf_len": 1, + "git__prefixcmp": 2, + "git_buf_cstr": 1, + "S_ISDIR": 1, + "GIT_DIFF_RECURSE_UNTRACKED_DIRS": 1, + "git_iterator_current_is_ignored": 2, + "git_buf_sets": 1, + "git_iterator_advance_into_directory": 1, + "git_iterator_free": 4, + "*diff_ptr": 2, + "git_diff_tree_to_tree": 1, + "git_tree": 4, + "*old_tree": 3, + "*new_tree": 1, + "**diff": 4, + "diff_prefix_from_pathspec": 4, + "old_tree": 5, + "new_tree": 2, + "git_iterator_for_tree_range": 4, + "git_diff_index_to_tree": 1, + "git_iterator_for_index_range": 2, + "git_diff_workdir_to_index": 1, + "git_iterator_for_workdir_range": 2, + "git_diff_workdir_to_tree": 1, + "git_diff_merge": 1, + "*onto": 1, + "*from": 1, + "onto_pool": 7, + "git_vector": 1, + "onto_new": 6, + "j": 206, + "onto": 7, + "from": 16, + "deltas.length": 4, + "*o": 8, + "GIT_VECTOR_GET": 2, + "*f": 2, + "f": 184, + "o": 80, + "diff_delta__merge_like_cgit": 1, + "git_vector_swap": 1, + "git_pool_swap": 1, + "ATSHOME_LIBATS_DYNARRAY_CATS": 3, + "": 5, + "atslib_dynarray_memcpy": 1, + "atslib_dynarray_memmove": 1, + "memmove": 2, + "//": 262, + "ifndef": 2, "git_usage_string": 2, "git_more_info_string": 2, "N_": 1, @@ -4643,22 +5246,19 @@ "pager_config": 3, "*cmd": 5, "want": 3, - "*value": 5, "pager_command_config": 2, - "*var": 4, "*data": 12, "data": 69, "prefixcmp": 3, "var": 7, - "strcmp": 20, "cmd": 46, "git_config_maybe_bool": 1, + "value": 9, "xstrdup": 2, "check_pager_config": 3, "c.cmd": 1, "c.want": 2, "c.value": 3, - "git_config": 3, "pager_program": 1, "commit_pager_choice": 4, "setenv": 1, @@ -4671,7 +5271,6 @@ "*argv": 6, "new_argv": 7, "option_count": 1, - "count": 17, "alias_command": 4, "trace_argv_printf": 3, "*argcp": 4, @@ -4682,7 +5281,6 @@ "saved_errno": 1, "git_version_string": 1, "GIT_VERSION": 1, - "#define": 920, "RUN_SETUP": 81, "RUN_SETUP_GENTLY": 16, "USE_PAGER": 3, @@ -4690,16 +5288,10 @@ "cmd_struct": 4, "option": 9, "run_builtin": 2, - "argc": 26, - "**argv": 6, - "status": 57, "help": 4, "stat": 3, "st": 2, - "*prefix": 7, - "prefix": 34, "argv": 54, - "p": 60, "setup_git_directory": 1, "nongit_ok": 2, "setup_git_directory_gently": 1, @@ -4714,6 +5306,7 @@ "st.st_mode": 2, "S_ISSOCK": 1, "fflush": 2, + "ferror": 2, "fclose": 5, "handle_internal_command": 3, "commands": 3, @@ -4822,13 +5415,11 @@ "cmd_write_tree": 1, "ext": 4, "STRIP_EXTENSION": 1, - "strlen": 17, "*argv0": 1, "argv0": 2, "ARRAY_SIZE": 1, "exit": 20, "execv_dashed_external": 2, - "strbuf": 12, "STRBUF_INIT": 1, "*tmp": 1, "strbuf_addf": 1, @@ -4855,168 +5446,444 @@ "stderr": 15, "help_unknown_cmd": 1, "strerror": 4, + "PPC_SHA1": 1, + "git_hash_ctx": 7, + "SHA_CTX": 3, + "*git_hash_new_ctx": 1, + "*ctx": 5, + "ctx": 16, + "SHA1_Init": 4, + "git_hash_free_ctx": 1, + "git_hash_init": 1, + "git_hash_update": 1, + "SHA1_Update": 3, + "git_hash_final": 1, + "*out": 3, + "SHA1_Final": 3, + "git_hash_buf": 1, + "git_hash_vec": 1, + "git_buf_vec": 1, + "*vec": 1, + "vec": 2, + ".data": 1, + ".len": 3, + "HELLO_H": 2, + "hello": 1, "": 5, - "": 2, - "": 1, - "": 1, - "": 2, - "__APPLE__": 2, - "#if": 92, - "defined": 42, - "TARGET_OS_IPHONE": 1, - "#else": 94, - "extern": 38, - "**environ": 1, - "uv__chld": 2, - "EV_P_": 1, - "ev_child*": 1, - "watcher": 4, - "revents": 2, - "rstatus": 1, - "exit_status": 3, - "term_signal": 3, - "uv_process_t": 1, - "*process": 1, - "assert": 41, - "process": 19, - "child_watcher": 5, - "EV_CHILD": 1, - "ev_child_stop": 2, - "EV_A_": 1, - "WIFEXITED": 1, - "WEXITSTATUS": 2, - "WIFSIGNALED": 2, - "WTERMSIG": 2, - "exit_cb": 3, - "uv__make_socketpair": 2, - "fds": 20, - "flags": 89, - "SOCK_NONBLOCK": 2, - "fl": 8, - "SOCK_CLOEXEC": 1, - "UV__F_NONBLOCK": 5, - "socketpair": 2, - "AF_UNIX": 2, - "SOCK_STREAM": 2, - "EINVAL": 6, - "uv__cloexec": 4, - "uv__nonblock": 5, - "uv__make_pipe": 2, - "__linux__": 3, - "UV__O_CLOEXEC": 1, - "UV__O_NONBLOCK": 1, - "uv__pipe2": 1, - "ENOSYS": 1, - "pipe": 1, - "uv__process_init_stdio": 2, - "uv_stdio_container_t*": 4, - "container": 17, - "writable": 8, - "fd": 34, - "UV_IGNORE": 2, - "UV_CREATE_PIPE": 4, - "UV_INHERIT_FD": 3, - "UV_INHERIT_STREAM": 2, - "data.stream": 7, - "UV_NAMED_PIPE": 2, - "data.fd": 1, - "uv__process_stdio_flags": 2, - "uv_pipe_t*": 1, - "ipc": 1, - "UV_STREAM_READABLE": 2, - "UV_STREAM_WRITABLE": 2, - "uv__process_open_stream": 2, - "child_fd": 3, - "close": 13, - "uv__stream_open": 1, - "uv_stream_t*": 2, - "uv__process_close_stream": 2, - "uv__stream_close": 1, - "uv__process_child_init": 2, - "uv_process_options_t": 2, - "options": 62, - "stdio_count": 7, - "int*": 22, - "pipes": 23, - "options.flags": 4, - "UV_PROCESS_DETACHED": 2, - "setsid": 2, - "close_fd": 2, - "use_fd": 7, - "open": 4, - "O_RDONLY": 1, - "O_RDWR": 2, - "perror": 5, - "_exit": 6, - "dup2": 4, - "options.cwd": 2, - "UV_PROCESS_SETGID": 2, - "setgid": 1, - "options.gid": 1, - "UV_PROCESS_SETUID": 2, - "setuid": 1, - "options.uid": 1, - "environ": 4, - "options.env": 1, - "execvp": 1, - "options.file": 2, - "options.args": 1, - "#ifndef": 89, - "SPAWN_WAIT_EXEC": 5, - "uv_spawn": 1, - "uv_loop_t*": 1, - "loop": 9, - "uv_process_t*": 3, - "save_our_env": 3, - "options.stdio_count": 4, - "signal_pipe": 7, - "pollfd": 1, - "pfd": 2, - "pid_t": 2, - "pid": 13, - "ENOMEM": 4, - "goto": 159, - "UV_PROCESS_WINDOWS_VERBATIM_ARGUMENTS": 1, - "uv__handle_init": 1, - "uv_handle_t*": 1, - "UV_PROCESS": 1, - "counters.process_init": 1, - "uv__handle_start": 1, - "options.exit_cb": 1, - "options.stdio": 3, - "fork": 2, - "pfd.fd": 1, - "pfd.events": 1, - "POLLIN": 1, - "POLLHUP": 1, - "pfd.revents": 1, - "poll": 1, - "EINTR": 1, - "ev_child_init": 1, - "ev_child_start": 1, - "ev": 2, - "child_watcher.data": 1, - "j": 206, - "uv__set_sys_error": 2, - "uv_process_kill": 1, - "signum": 4, - "r": 58, - "kill": 4, - "uv_err_t": 1, - "uv_kill": 1, - "uv__new_sys_error": 1, - "uv_ok_": 1, - "uv__process_close": 1, - "handle": 10, - "uv__handle_stop": 1, - "*blob_type": 2, - "blob": 6, - "*lookup_blob": 2, - "OBJ_BLOB": 3, - "alloc_blob_node": 1, - "parse_blob_buffer": 2, + "": 2, "": 3, + "": 3, + "": 2, + "ULLONG_MAX": 10, + "MIN": 3, + "HTTP_PARSER_DEBUG": 4, + "SET_ERRNO": 47, + "e": 4, + "do": 21, + "parser": 334, + "http_errno": 11, + "error_lineno": 3, + "__LINE__": 50, + "CALLBACK_NOTIFY_": 3, + "FOR": 11, + "ER": 4, + "HTTP_PARSER_ERRNO": 10, + "HPE_OK": 10, + "settings": 6, + "on_##FOR": 4, + "HPE_CB_##FOR": 2, + "CALLBACK_NOTIFY": 10, + "CALLBACK_NOTIFY_NOADVANCE": 2, + "CALLBACK_DATA_": 4, + "LEN": 2, + "FOR##_mark": 7, + "CALLBACK_DATA": 10, + "CALLBACK_DATA_NOADVANCE": 6, + "MARK": 7, + "PROXY_CONNECTION": 4, + "CONNECTION": 4, + "CONTENT_LENGTH": 4, + "TRANSFER_ENCODING": 4, + "UPGRADE": 4, + "CHUNKED": 4, + "KEEP_ALIVE": 4, + "CLOSE": 4, + "*method_strings": 1, + "XX": 63, + "num": 24, + "string": 18, + "#string": 1, + "HTTP_METHOD_MAP": 3, + "#undef": 7, + "tokens": 5, + "int8_t": 3, + "unhex": 3, + "HTTP_PARSER_STRICT": 5, + "uint8_t": 6, + "normal_url_char": 3, + "T": 3, + "s_dead": 10, + "s_start_req_or_res": 4, + "s_res_or_resp_H": 3, + "s_start_res": 5, + "s_res_H": 3, + "s_res_HT": 4, + "s_res_HTT": 3, + "s_res_HTTP": 3, + "s_res_first_http_major": 3, + "s_res_http_major": 3, + "s_res_first_http_minor": 3, + "s_res_http_minor": 3, + "s_res_first_status_code": 3, + "s_res_status_code": 3, + "s_res_status": 3, + "s_res_line_almost_done": 4, + "s_start_req": 6, + "s_req_method": 4, + "s_req_spaces_before_url": 5, + "s_req_schema": 6, + "s_req_schema_slash": 6, + "s_req_schema_slash_slash": 6, + "s_req_host_start": 8, + "s_req_host_v6_start": 7, + "s_req_host_v6": 7, + "s_req_host_v6_end": 7, + "s_req_host": 8, + "s_req_port_start": 7, + "s_req_port": 6, + "s_req_path": 8, + "s_req_query_string_start": 8, + "s_req_query_string": 7, + "s_req_fragment_start": 7, + "s_req_fragment": 7, + "s_req_http_start": 3, + "s_req_http_H": 3, + "s_req_http_HT": 3, + "s_req_http_HTT": 3, + "s_req_http_HTTP": 3, + "s_req_first_http_major": 3, + "s_req_http_major": 3, + "s_req_first_http_minor": 3, + "s_req_http_minor": 3, + "s_req_line_almost_done": 4, + "s_header_field_start": 12, + "s_header_field": 4, + "s_header_value_start": 4, + "s_header_value": 5, + "s_header_value_lws": 3, + "s_header_almost_done": 6, + "s_chunk_size_start": 4, + "s_chunk_size": 3, + "s_chunk_parameters": 3, + "s_chunk_size_almost_done": 4, + "s_headers_almost_done": 4, + "s_headers_done": 4, + "s_chunk_data": 3, + "s_chunk_data_almost_done": 3, + "s_chunk_data_done": 3, + "s_body_identity": 3, + "s_body_identity_eof": 4, + "s_message_done": 3, + "PARSING_HEADER": 2, + "header_states": 1, + "h_general": 23, + "0": 11, + "h_C": 3, + "h_CO": 3, + "h_CON": 3, + "h_matching_connection": 3, + "h_matching_proxy_connection": 3, + "h_matching_content_length": 3, + "h_matching_transfer_encoding": 3, + "h_matching_upgrade": 3, + "h_connection": 6, + "h_content_length": 5, + "h_transfer_encoding": 5, + "h_upgrade": 4, + "h_matching_transfer_encoding_chunked": 3, + "h_matching_connection_keep_alive": 3, + "h_matching_connection_close": 3, + "h_transfer_encoding_chunked": 4, + "h_connection_keep_alive": 4, + "h_connection_close": 4, + "Macros": 1, + "character": 11, + "classes": 1, + "depends": 1, + "on": 4, + "strict": 2, + "define": 14, + "CR": 18, + "r": 58, + "LF": 21, + "LOWER": 7, + "0x20": 1, + "IS_ALPHA": 5, + "z": 47, + "IS_NUM": 14, + "9": 1, + "IS_ALPHANUM": 3, + "IS_HEX": 2, + "TOKEN": 4, + "IS_URL_CHAR": 6, + "IS_HOST_CHAR": 4, + "0x80": 1, + "endif": 6, + "start_state": 1, + "HTTP_REQUEST": 7, + "cond": 1, + "HPE_STRICT": 1, + "HTTP_STRERROR_GEN": 3, + "#n": 1, + "*description": 1, + "http_strerror_tab": 7, + "HTTP_ERRNO_MAP": 3, + "http_message_needs_eof": 4, + "http_parser": 13, + "*parser": 9, + "parse_url_char": 5, + "ch": 145, + "http_parser_execute": 2, + "http_parser_settings": 5, + "*settings": 2, + "unhex_val": 7, + "*header_field_mark": 1, + "*header_value_mark": 1, + "*url_mark": 1, + "*body_mark": 1, + "message_complete": 7, + "HPE_INVALID_EOF_STATE": 1, + "header_field_mark": 2, + "header_value_mark": 2, + "url_mark": 2, + "nread": 7, + "HTTP_MAX_HEADER_SIZE": 2, + "HPE_HEADER_OVERFLOW": 1, + "reexecute_byte": 7, + "HPE_CLOSED_CONNECTION": 1, + "content_length": 27, + "message_begin": 3, + "HTTP_RESPONSE": 3, + "HPE_INVALID_CONSTANT": 3, + "method": 39, + "HTTP_HEAD": 2, + "index": 58, + "STRICT_CHECK": 15, + "HPE_INVALID_VERSION": 12, + "http_major": 11, + "http_minor": 11, + "HPE_INVALID_STATUS": 3, + "status_code": 8, + "HPE_INVALID_METHOD": 4, + "http_method": 4, + "HTTP_CONNECT": 4, + "HTTP_DELETE": 1, + "HTTP_GET": 1, + "HTTP_LOCK": 1, + "HTTP_MKCOL": 2, + "HTTP_NOTIFY": 1, + "HTTP_OPTIONS": 1, + "HTTP_POST": 2, + "HTTP_REPORT": 1, + "HTTP_SUBSCRIBE": 2, + "HTTP_TRACE": 1, + "HTTP_UNLOCK": 2, + "*matcher": 1, + "matcher": 3, + "method_strings": 2, + "HTTP_CHECKOUT": 1, + "HTTP_COPY": 1, + "HTTP_MOVE": 1, + "HTTP_MERGE": 1, + "HTTP_MSEARCH": 1, + "HTTP_MKACTIVITY": 1, + "HTTP_SEARCH": 1, + "HTTP_PROPFIND": 2, + "HTTP_PUT": 2, + "HTTP_PATCH": 1, + "HTTP_PURGE": 1, + "HTTP_UNSUBSCRIBE": 1, + "HTTP_PROPPATCH": 1, + "url": 4, + "HPE_INVALID_URL": 4, + "HPE_LF_EXPECTED": 1, + "HPE_INVALID_HEADER_TOKEN": 2, + "header_field": 5, + "header_state": 42, + "header_value": 6, + "F_UPGRADE": 3, + "HPE_INVALID_CONTENT_LENGTH": 4, + "uint64_t": 8, + "F_CONNECTION_KEEP_ALIVE": 3, + "F_CONNECTION_CLOSE": 3, + "F_CHUNKED": 11, + "F_TRAILING": 3, + "NEW_MESSAGE": 6, + "upgrade": 3, + "on_headers_complete": 3, + "F_SKIPBODY": 4, + "HPE_CB_headers_complete": 1, + "to_read": 6, + "body": 6, + "body_mark": 2, + "HPE_INVALID_CHUNK_SIZE": 2, + "HPE_INVALID_INTERNAL_STATE": 1, + "1": 2, + "HPE_UNKNOWN": 1, + "Does": 1, + "the": 91, + "need": 5, + "to": 37, + "see": 2, + "an": 2, + "EOF": 26, + "find": 1, + "end": 48, + "of": 44, + "message": 3, + "http_should_keep_alive": 2, + "http_method_str": 1, + "m": 8, + "http_parser_init": 2, + "http_parser_type": 3, + "http_errno_name": 1, + "/sizeof": 4, + ".name": 1, + "http_errno_description": 1, + ".description": 1, + "http_parser_parse_url": 2, + "buflen": 3, + "is_connect": 4, + "http_parser_url": 3, + "*u": 2, + "http_parser_url_fields": 2, + "uf": 14, + "old_uf": 4, + "u": 18, + "port": 7, + "field_set": 5, + "UF_MAX": 3, + "UF_SCHEMA": 2, + "UF_HOST": 3, + "UF_PORT": 5, + "UF_PATH": 2, + "UF_QUERY": 2, + "UF_FRAGMENT": 2, + "field_data": 5, + ".off": 2, + "xffff": 1, + "uint16_t": 12, + "http_parser_pause": 2, + "paused": 3, + "HPE_PAUSED": 2, + "http_parser_h": 2, + "__cplusplus": 20, + "HTTP_PARSER_VERSION_MAJOR": 1, + "HTTP_PARSER_VERSION_MINOR": 1, + "": 2, "_WIN32": 3, + "__MINGW32__": 1, + "_MSC_VER": 5, + "__int8": 2, + "__int16": 2, + "int16_t": 1, + "__int32": 2, + "int32_t": 112, + "__int64": 3, + "int64_t": 2, + "ssize_t": 1, + "": 1, + "*1024": 4, + "DELETE": 2, + "GET": 2, + "HEAD": 2, + "POST": 2, + "PUT": 2, + "CONNECT": 2, + "OPTIONS": 2, + "TRACE": 2, + "COPY": 2, + "LOCK": 2, + "MKCOL": 2, + "MOVE": 2, + "PROPFIND": 2, + "PROPPATCH": 2, + "SEARCH": 3, + "UNLOCK": 2, + "REPORT": 2, + "MKACTIVITY": 2, + "CHECKOUT": 2, + "MERGE": 2, + "MSEARCH": 1, + "M": 1, + "NOTIFY": 2, + "SUBSCRIBE": 2, + "UNSUBSCRIBE": 2, + "PATCH": 2, + "PURGE": 2, + "HTTP_##name": 1, + "HTTP_BOTH": 1, + "OK": 1, + "CB_message_begin": 1, + "CB_url": 1, + "CB_header_field": 1, + "CB_header_value": 1, + "CB_headers_complete": 1, + "CB_body": 1, + "CB_message_complete": 1, + "INVALID_EOF_STATE": 1, + "HEADER_OVERFLOW": 1, + "CLOSED_CONNECTION": 1, + "INVALID_VERSION": 1, + "INVALID_STATUS": 1, + "INVALID_METHOD": 1, + "INVALID_URL": 1, + "INVALID_HOST": 1, + "INVALID_PORT": 1, + "INVALID_PATH": 1, + "INVALID_QUERY_STRING": 1, + "INVALID_FRAGMENT": 1, + "LF_EXPECTED": 1, + "INVALID_HEADER_TOKEN": 1, + "INVALID_CONTENT_LENGTH": 1, + "INVALID_CHUNK_SIZE": 1, + "INVALID_CONSTANT": 1, + "INVALID_INTERNAL_STATE": 1, + "STRICT": 1, + "PAUSED": 1, + "UNKNOWN": 1, + "HTTP_ERRNO_GEN": 3, + "HPE_##n": 1, + "HTTP_PARSER_ERRNO_LINE": 2, + "short": 6, + "http_cb": 3, + "on_message_begin": 1, + "http_data_cb": 4, + "on_url": 1, + "on_header_field": 1, + "on_header_value": 1, + "on_body": 1, + "on_message_complete": 1, + "off": 8, + "*http_method_str": 1, + "*http_errno_name": 1, + "*http_errno_description": 1, + "": 1, + "_Included_jni_JniLayer": 2, + "JNIEXPORT": 6, + "jlong": 6, + "JNICALL": 6, + "Java_jni_JniLayer_jni_1layer_1initialize": 1, + "JNIEnv": 6, + "jobject": 6, + "jintArray": 1, + "jint": 7, + "Java_jni_JniLayer_jni_1layer_1mainloop": 1, + "Java_jni_JniLayer_jni_1layer_1set_1button": 1, + "Java_jni_JniLayer_jni_1layer_1set_1analog": 1, + "jfloat": 1, + "Java_jni_JniLayer_jni_1layer_1report_1analog_1chg": 1, + "Java_jni_JniLayer_jni_1layer_1kill": 1, "strncasecmp": 2, "_strnicmp": 1, "REF_TABLE_SIZE": 1, @@ -5029,12 +5896,9 @@ "GPERF_DOWNCASE": 1, "GPERF_CASE_STRNCMP": 1, "link_ref": 2, - "id": 13, "*link": 1, "*title": 1, "sd_markdown": 6, - "typedef": 191, - "size_t": 52, "tag": 1, "tag_len": 3, "w": 6, @@ -5042,7 +5906,6 @@ "htmlblock_end": 3, "*curtag": 2, "*rndr": 4, - "uint8_t": 6, "start_of_line": 2, "tag_size": 3, "curtag": 8, @@ -5082,6 +5945,7 @@ "parse_table_header": 1, "*columns": 2, "**column_data": 1, + "pipes": 23, "header_end": 7, "under_end": 1, "*column_data": 1, @@ -5117,1044 +5981,1973 @@ "SUNDOWN_VER_MAJOR": 1, "SUNDOWN_VER_MINOR": 1, "SUNDOWN_VER_REVISION": 1, - "__wglew_h__": 2, - "__WGLEW_H__": 1, - "__wglext_h_": 2, - "#error": 4, - "wglext.h": 1, - "included": 2, - "before": 4, - "wglew.h": 1, - "WINAPI": 119, - "": 1, - "GLEW_STATIC": 1, - "__cplusplus": 20, - "WGL_3DFX_multisample": 2, - "WGL_SAMPLE_BUFFERS_3DFX": 1, - "WGL_SAMPLES_3DFX": 1, - "WGLEW_3DFX_multisample": 1, - "WGLEW_GET_VAR": 49, - "__WGLEW_3DFX_multisample": 2, - "WGL_3DL_stereo_control": 2, - "WGL_STEREO_EMITTER_ENABLE_3DL": 1, - "WGL_STEREO_EMITTER_DISABLE_3DL": 1, - "WGL_STEREO_POLARITY_NORMAL_3DL": 1, - "WGL_STEREO_POLARITY_INVERT_3DL": 1, - "BOOL": 84, - "PFNWGLSETSTEREOEMITTERSTATE3DLPROC": 2, - "HDC": 65, - "hDC": 33, - "UINT": 30, - "uState": 1, - "wglSetStereoEmitterState3DL": 1, - "WGLEW_GET_FUN": 120, - "__wglewSetStereoEmitterState3DL": 2, - "WGLEW_3DL_stereo_control": 1, - "__WGLEW_3DL_stereo_control": 2, - "WGL_AMD_gpu_association": 2, - "WGL_GPU_VENDOR_AMD": 1, - "F00": 1, - "WGL_GPU_RENDERER_STRING_AMD": 1, - "F01": 1, - "WGL_GPU_OPENGL_VERSION_STRING_AMD": 1, - "F02": 1, - "WGL_GPU_FASTEST_TARGET_GPUS_AMD": 1, - "A2": 2, - "WGL_GPU_RAM_AMD": 1, - "A3": 2, - "WGL_GPU_CLOCK_AMD": 1, - "A4": 2, - "WGL_GPU_NUM_PIPES_AMD": 1, - "A5": 3, - "WGL_GPU_NUM_SIMD_AMD": 1, - "A6": 2, - "WGL_GPU_NUM_RB_AMD": 1, - "A7": 2, - "WGL_GPU_NUM_SPI_AMD": 1, - "A8": 2, - "VOID": 6, - "PFNWGLBLITCONTEXTFRAMEBUFFERAMDPROC": 2, - "HGLRC": 14, - "dstCtx": 1, - "GLint": 18, - "srcX0": 1, - "srcY0": 1, - "srcX1": 1, - "srcY1": 1, - "dstX0": 1, - "dstY0": 1, - "dstX1": 1, - "dstY1": 1, - "GLbitfield": 1, - "mask": 1, - "GLenum": 8, - "filter": 1, - "PFNWGLCREATEASSOCIATEDCONTEXTAMDPROC": 2, - "PFNWGLCREATEASSOCIATEDCONTEXTATTRIBSAMDPROC": 2, - "hShareContext": 2, - "attribList": 2, - "PFNWGLDELETEASSOCIATEDCONTEXTAMDPROC": 2, - "hglrc": 5, - "PFNWGLGETCONTEXTGPUIDAMDPROC": 2, - "PFNWGLGETCURRENTASSOCIATEDCONTEXTAMDPROC": 2, - "PFNWGLGETGPUIDSAMDPROC": 2, - "maxCount": 1, - "UINT*": 6, - "ids": 1, - "INT": 3, - "PFNWGLGETGPUINFOAMDPROC": 2, - "property": 1, - "dataType": 1, - "void*": 135, - "PFNWGLMAKEASSOCIATEDCONTEXTCURRENTAMDPROC": 2, - "wglBlitContextFramebufferAMD": 1, - "__wglewBlitContextFramebufferAMD": 2, - "wglCreateAssociatedContextAMD": 1, - "__wglewCreateAssociatedContextAMD": 2, - "wglCreateAssociatedContextAttribsAMD": 1, - "__wglewCreateAssociatedContextAttribsAMD": 2, - "wglDeleteAssociatedContextAMD": 1, - "__wglewDeleteAssociatedContextAMD": 2, - "wglGetContextGPUIDAMD": 1, - "__wglewGetContextGPUIDAMD": 2, - "wglGetCurrentAssociatedContextAMD": 1, - "__wglewGetCurrentAssociatedContextAMD": 2, - "wglGetGPUIDsAMD": 1, - "__wglewGetGPUIDsAMD": 2, - "wglGetGPUInfoAMD": 1, - "__wglewGetGPUInfoAMD": 2, - "wglMakeAssociatedContextCurrentAMD": 1, - "__wglewMakeAssociatedContextCurrentAMD": 2, - "WGLEW_AMD_gpu_association": 1, - "__WGLEW_AMD_gpu_association": 2, - "WGL_ARB_buffer_region": 2, - "WGL_FRONT_COLOR_BUFFER_BIT_ARB": 1, - "WGL_BACK_COLOR_BUFFER_BIT_ARB": 1, - "WGL_DEPTH_BUFFER_BIT_ARB": 1, - "WGL_STENCIL_BUFFER_BIT_ARB": 1, - "HANDLE": 14, - "PFNWGLCREATEBUFFERREGIONARBPROC": 2, - "iLayerPlane": 5, - "uType": 1, - "PFNWGLDELETEBUFFERREGIONARBPROC": 2, - "hRegion": 3, - "PFNWGLRESTOREBUFFERREGIONARBPROC": 2, - "x": 57, - "y": 14, - "width": 3, - "height": 3, - "xSrc": 1, - "ySrc": 1, - "PFNWGLSAVEBUFFERREGIONARBPROC": 2, - "wglCreateBufferRegionARB": 1, - "__wglewCreateBufferRegionARB": 2, - "wglDeleteBufferRegionARB": 1, - "__wglewDeleteBufferRegionARB": 2, - "wglRestoreBufferRegionARB": 1, - "__wglewRestoreBufferRegionARB": 2, - "wglSaveBufferRegionARB": 1, - "__wglewSaveBufferRegionARB": 2, - "WGLEW_ARB_buffer_region": 1, - "__WGLEW_ARB_buffer_region": 2, - "WGL_ARB_create_context": 2, - "WGL_CONTEXT_DEBUG_BIT_ARB": 1, - "WGL_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB": 1, - "WGL_CONTEXT_MAJOR_VERSION_ARB": 1, - "WGL_CONTEXT_MINOR_VERSION_ARB": 1, - "WGL_CONTEXT_LAYER_PLANE_ARB": 1, - "WGL_CONTEXT_FLAGS_ARB": 1, - "ERROR_INVALID_VERSION_ARB": 1, - "ERROR_INVALID_PROFILE_ARB": 1, - "PFNWGLCREATECONTEXTATTRIBSARBPROC": 2, - "wglCreateContextAttribsARB": 1, - "__wglewCreateContextAttribsARB": 2, - "WGLEW_ARB_create_context": 1, - "__WGLEW_ARB_create_context": 2, - "WGL_ARB_create_context_profile": 2, - "WGL_CONTEXT_CORE_PROFILE_BIT_ARB": 1, - "WGL_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB": 1, - "WGL_CONTEXT_PROFILE_MASK_ARB": 1, - "WGLEW_ARB_create_context_profile": 1, - "__WGLEW_ARB_create_context_profile": 2, - "WGL_ARB_create_context_robustness": 2, - "WGL_CONTEXT_ROBUST_ACCESS_BIT_ARB": 1, - "WGL_LOSE_CONTEXT_ON_RESET_ARB": 1, - "WGL_CONTEXT_RESET_NOTIFICATION_STRATEGY_ARB": 1, - "WGL_NO_RESET_NOTIFICATION_ARB": 1, - "WGLEW_ARB_create_context_robustness": 1, - "__WGLEW_ARB_create_context_robustness": 2, - "WGL_ARB_extensions_string": 2, - "PFNWGLGETEXTENSIONSSTRINGARBPROC": 2, - "hdc": 16, - "wglGetExtensionsStringARB": 1, - "__wglewGetExtensionsStringARB": 2, - "WGLEW_ARB_extensions_string": 1, - "__WGLEW_ARB_extensions_string": 2, - "WGL_ARB_framebuffer_sRGB": 2, - "WGL_FRAMEBUFFER_SRGB_CAPABLE_ARB": 1, - "A9": 2, - "WGLEW_ARB_framebuffer_sRGB": 1, - "__WGLEW_ARB_framebuffer_sRGB": 2, - "WGL_ARB_make_current_read": 2, - "ERROR_INVALID_PIXEL_TYPE_ARB": 1, - "ERROR_INCOMPATIBLE_DEVICE_CONTEXTS_ARB": 1, - "PFNWGLGETCURRENTREADDCARBPROC": 2, - "PFNWGLMAKECONTEXTCURRENTARBPROC": 2, - "hDrawDC": 2, - "hReadDC": 2, - "wglGetCurrentReadDCARB": 1, - "__wglewGetCurrentReadDCARB": 2, - "wglMakeContextCurrentARB": 1, - "__wglewMakeContextCurrentARB": 2, - "WGLEW_ARB_make_current_read": 1, - "__WGLEW_ARB_make_current_read": 2, - "WGL_ARB_multisample": 2, - "WGL_SAMPLE_BUFFERS_ARB": 1, - "WGL_SAMPLES_ARB": 1, - "WGLEW_ARB_multisample": 1, - "__WGLEW_ARB_multisample": 2, - "WGL_ARB_pbuffer": 2, - "WGL_DRAW_TO_PBUFFER_ARB": 1, - "D": 8, - "WGL_MAX_PBUFFER_PIXELS_ARB": 1, - "E": 11, - "WGL_MAX_PBUFFER_WIDTH_ARB": 1, - "WGL_MAX_PBUFFER_HEIGHT_ARB": 1, - "WGL_PBUFFER_LARGEST_ARB": 1, - "WGL_PBUFFER_WIDTH_ARB": 1, - "WGL_PBUFFER_HEIGHT_ARB": 1, - "WGL_PBUFFER_LOST_ARB": 1, - "DECLARE_HANDLE": 6, - "HPBUFFERARB": 12, - "PFNWGLCREATEPBUFFERARBPROC": 2, - "iPixelFormat": 6, - "iWidth": 2, - "iHeight": 2, - "piAttribList": 4, - "PFNWGLDESTROYPBUFFERARBPROC": 2, - "hPbuffer": 14, - "PFNWGLGETPBUFFERDCARBPROC": 2, - "PFNWGLQUERYPBUFFERARBPROC": 2, - "iAttribute": 8, - "piValue": 8, - "PFNWGLRELEASEPBUFFERDCARBPROC": 2, - "wglCreatePbufferARB": 1, - "__wglewCreatePbufferARB": 2, - "wglDestroyPbufferARB": 1, - "__wglewDestroyPbufferARB": 2, - "wglGetPbufferDCARB": 1, - "__wglewGetPbufferDCARB": 2, - "wglQueryPbufferARB": 1, - "__wglewQueryPbufferARB": 2, - "wglReleasePbufferDCARB": 1, - "__wglewReleasePbufferDCARB": 2, - "WGLEW_ARB_pbuffer": 1, - "__WGLEW_ARB_pbuffer": 2, - "WGL_ARB_pixel_format": 2, - "WGL_NUMBER_PIXEL_FORMATS_ARB": 1, - "WGL_DRAW_TO_WINDOW_ARB": 1, - "WGL_DRAW_TO_BITMAP_ARB": 1, - "WGL_ACCELERATION_ARB": 1, - "WGL_NEED_PALETTE_ARB": 1, - "WGL_NEED_SYSTEM_PALETTE_ARB": 1, - "WGL_SWAP_LAYER_BUFFERS_ARB": 1, - "WGL_SWAP_METHOD_ARB": 1, - "WGL_NUMBER_OVERLAYS_ARB": 1, - "WGL_NUMBER_UNDERLAYS_ARB": 1, - "WGL_TRANSPARENT_ARB": 1, - "A": 11, - "WGL_SHARE_DEPTH_ARB": 1, - "C": 14, - "WGL_SHARE_STENCIL_ARB": 1, - "WGL_SHARE_ACCUM_ARB": 1, - "WGL_SUPPORT_GDI_ARB": 1, - "WGL_SUPPORT_OPENGL_ARB": 1, - "WGL_DOUBLE_BUFFER_ARB": 1, - "WGL_STEREO_ARB": 1, - "WGL_PIXEL_TYPE_ARB": 1, - "WGL_COLOR_BITS_ARB": 1, - "WGL_RED_BITS_ARB": 1, - "WGL_RED_SHIFT_ARB": 1, - "WGL_GREEN_BITS_ARB": 1, - "WGL_GREEN_SHIFT_ARB": 1, - "WGL_BLUE_BITS_ARB": 1, - "WGL_BLUE_SHIFT_ARB": 1, - "WGL_ALPHA_BITS_ARB": 1, - "B": 9, - "WGL_ALPHA_SHIFT_ARB": 1, - "WGL_ACCUM_BITS_ARB": 1, - "WGL_ACCUM_RED_BITS_ARB": 1, - "WGL_ACCUM_GREEN_BITS_ARB": 1, - "WGL_ACCUM_BLUE_BITS_ARB": 1, - "WGL_ACCUM_ALPHA_BITS_ARB": 1, - "WGL_DEPTH_BITS_ARB": 1, - "WGL_STENCIL_BITS_ARB": 1, - "WGL_AUX_BUFFERS_ARB": 1, - "WGL_NO_ACCELERATION_ARB": 1, - "WGL_GENERIC_ACCELERATION_ARB": 1, - "WGL_FULL_ACCELERATION_ARB": 1, - "WGL_SWAP_EXCHANGE_ARB": 1, - "WGL_SWAP_COPY_ARB": 1, - "WGL_SWAP_UNDEFINED_ARB": 1, - "WGL_TYPE_RGBA_ARB": 1, - "WGL_TYPE_COLORINDEX_ARB": 1, - "WGL_TRANSPARENT_RED_VALUE_ARB": 1, - "WGL_TRANSPARENT_GREEN_VALUE_ARB": 1, - "WGL_TRANSPARENT_BLUE_VALUE_ARB": 1, - "WGL_TRANSPARENT_ALPHA_VALUE_ARB": 1, - "WGL_TRANSPARENT_INDEX_VALUE_ARB": 1, - "PFNWGLCHOOSEPIXELFORMATARBPROC": 2, - "piAttribIList": 2, - "FLOAT": 4, - "*pfAttribFList": 2, - "nMaxFormats": 2, - "*piFormats": 2, - "*nNumFormats": 2, - "PFNWGLGETPIXELFORMATATTRIBFVARBPROC": 2, - "nAttributes": 4, - "piAttributes": 4, - "*pfValues": 2, - "PFNWGLGETPIXELFORMATATTRIBIVARBPROC": 2, - "*piValues": 2, - "wglChoosePixelFormatARB": 1, - "__wglewChoosePixelFormatARB": 2, - "wglGetPixelFormatAttribfvARB": 1, - "__wglewGetPixelFormatAttribfvARB": 2, - "wglGetPixelFormatAttribivARB": 1, - "__wglewGetPixelFormatAttribivARB": 2, - "WGLEW_ARB_pixel_format": 1, - "__WGLEW_ARB_pixel_format": 2, - "WGL_ARB_pixel_format_float": 2, - "WGL_TYPE_RGBA_FLOAT_ARB": 1, - "A0": 3, - "WGLEW_ARB_pixel_format_float": 1, - "__WGLEW_ARB_pixel_format_float": 2, - "WGL_ARB_render_texture": 2, - "WGL_BIND_TO_TEXTURE_RGB_ARB": 1, - "WGL_BIND_TO_TEXTURE_RGBA_ARB": 1, - "WGL_TEXTURE_FORMAT_ARB": 1, - "WGL_TEXTURE_TARGET_ARB": 1, - "WGL_MIPMAP_TEXTURE_ARB": 1, - "WGL_TEXTURE_RGB_ARB": 1, - "WGL_TEXTURE_RGBA_ARB": 1, - "WGL_NO_TEXTURE_ARB": 2, - "WGL_TEXTURE_CUBE_MAP_ARB": 1, - "WGL_TEXTURE_1D_ARB": 1, - "WGL_TEXTURE_2D_ARB": 1, - "WGL_MIPMAP_LEVEL_ARB": 1, - "WGL_CUBE_MAP_FACE_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB": 1, - "WGL_FRONT_LEFT_ARB": 1, - "WGL_FRONT_RIGHT_ARB": 1, - "WGL_BACK_LEFT_ARB": 1, - "WGL_BACK_RIGHT_ARB": 1, - "WGL_AUX0_ARB": 1, - "WGL_AUX1_ARB": 1, - "WGL_AUX2_ARB": 1, - "WGL_AUX3_ARB": 1, - "WGL_AUX4_ARB": 1, - "WGL_AUX5_ARB": 1, - "WGL_AUX6_ARB": 1, - "WGL_AUX7_ARB": 1, - "WGL_AUX8_ARB": 1, - "WGL_AUX9_ARB": 1, - "PFNWGLBINDTEXIMAGEARBPROC": 2, - "iBuffer": 2, - "PFNWGLRELEASETEXIMAGEARBPROC": 2, - "PFNWGLSETPBUFFERATTRIBARBPROC": 2, - "wglBindTexImageARB": 1, - "__wglewBindTexImageARB": 2, - "wglReleaseTexImageARB": 1, - "__wglewReleaseTexImageARB": 2, - "wglSetPbufferAttribARB": 1, - "__wglewSetPbufferAttribARB": 2, - "WGLEW_ARB_render_texture": 1, - "__WGLEW_ARB_render_texture": 2, - "WGL_ATI_pixel_format_float": 2, - "WGL_TYPE_RGBA_FLOAT_ATI": 1, - "GL_RGBA_FLOAT_MODE_ATI": 1, - "GL_COLOR_CLEAR_UNCLAMPED_VALUE_ATI": 1, - "WGLEW_ATI_pixel_format_float": 1, - "__WGLEW_ATI_pixel_format_float": 2, - "WGL_ATI_render_texture_rectangle": 2, - "WGL_TEXTURE_RECTANGLE_ATI": 1, - "WGLEW_ATI_render_texture_rectangle": 1, - "__WGLEW_ATI_render_texture_rectangle": 2, - "WGL_EXT_create_context_es2_profile": 2, - "WGL_CONTEXT_ES2_PROFILE_BIT_EXT": 1, - "WGLEW_EXT_create_context_es2_profile": 1, - "__WGLEW_EXT_create_context_es2_profile": 2, - "WGL_EXT_depth_float": 2, - "WGL_DEPTH_FLOAT_EXT": 1, - "WGLEW_EXT_depth_float": 1, - "__WGLEW_EXT_depth_float": 2, - "WGL_EXT_display_color_table": 2, - "GLboolean": 53, - "PFNWGLBINDDISPLAYCOLORTABLEEXTPROC": 2, - "GLushort": 3, - "PFNWGLCREATEDISPLAYCOLORTABLEEXTPROC": 2, - "PFNWGLDESTROYDISPLAYCOLORTABLEEXTPROC": 2, - "PFNWGLLOADDISPLAYCOLORTABLEEXTPROC": 2, - "GLushort*": 1, - "table": 1, - "GLuint": 9, - "length": 58, - "wglBindDisplayColorTableEXT": 1, - "__wglewBindDisplayColorTableEXT": 2, - "wglCreateDisplayColorTableEXT": 1, - "__wglewCreateDisplayColorTableEXT": 2, - "wglDestroyDisplayColorTableEXT": 1, - "__wglewDestroyDisplayColorTableEXT": 2, - "wglLoadDisplayColorTableEXT": 1, - "__wglewLoadDisplayColorTableEXT": 2, - "WGLEW_EXT_display_color_table": 1, - "__WGLEW_EXT_display_color_table": 2, - "WGL_EXT_extensions_string": 2, - "PFNWGLGETEXTENSIONSSTRINGEXTPROC": 2, - "wglGetExtensionsStringEXT": 1, - "__wglewGetExtensionsStringEXT": 2, - "WGLEW_EXT_extensions_string": 1, - "__WGLEW_EXT_extensions_string": 2, - "WGL_EXT_framebuffer_sRGB": 2, - "WGL_FRAMEBUFFER_SRGB_CAPABLE_EXT": 1, - "WGLEW_EXT_framebuffer_sRGB": 1, - "__WGLEW_EXT_framebuffer_sRGB": 2, - "WGL_EXT_make_current_read": 2, - "ERROR_INVALID_PIXEL_TYPE_EXT": 1, - "PFNWGLGETCURRENTREADDCEXTPROC": 2, - "PFNWGLMAKECONTEXTCURRENTEXTPROC": 2, - "wglGetCurrentReadDCEXT": 1, - "__wglewGetCurrentReadDCEXT": 2, - "wglMakeContextCurrentEXT": 1, - "__wglewMakeContextCurrentEXT": 2, - "WGLEW_EXT_make_current_read": 1, - "__WGLEW_EXT_make_current_read": 2, - "WGL_EXT_multisample": 2, - "WGL_SAMPLE_BUFFERS_EXT": 1, - "WGL_SAMPLES_EXT": 1, - "WGLEW_EXT_multisample": 1, - "__WGLEW_EXT_multisample": 2, - "WGL_EXT_pbuffer": 2, - "WGL_DRAW_TO_PBUFFER_EXT": 1, - "WGL_MAX_PBUFFER_PIXELS_EXT": 1, - "WGL_MAX_PBUFFER_WIDTH_EXT": 1, - "WGL_MAX_PBUFFER_HEIGHT_EXT": 1, - "WGL_OPTIMAL_PBUFFER_WIDTH_EXT": 1, - "WGL_OPTIMAL_PBUFFER_HEIGHT_EXT": 1, - "WGL_PBUFFER_LARGEST_EXT": 1, - "WGL_PBUFFER_WIDTH_EXT": 1, - "WGL_PBUFFER_HEIGHT_EXT": 1, - "HPBUFFEREXT": 6, - "PFNWGLCREATEPBUFFEREXTPROC": 2, - "PFNWGLDESTROYPBUFFEREXTPROC": 2, - "PFNWGLGETPBUFFERDCEXTPROC": 2, - "PFNWGLQUERYPBUFFEREXTPROC": 2, - "PFNWGLRELEASEPBUFFERDCEXTPROC": 2, - "wglCreatePbufferEXT": 1, - "__wglewCreatePbufferEXT": 2, - "wglDestroyPbufferEXT": 1, - "__wglewDestroyPbufferEXT": 2, - "wglGetPbufferDCEXT": 1, - "__wglewGetPbufferDCEXT": 2, - "wglQueryPbufferEXT": 1, - "__wglewQueryPbufferEXT": 2, - "wglReleasePbufferDCEXT": 1, - "__wglewReleasePbufferDCEXT": 2, - "WGLEW_EXT_pbuffer": 1, - "__WGLEW_EXT_pbuffer": 2, - "WGL_EXT_pixel_format": 2, - "WGL_NUMBER_PIXEL_FORMATS_EXT": 1, - "WGL_DRAW_TO_WINDOW_EXT": 1, - "WGL_DRAW_TO_BITMAP_EXT": 1, - "WGL_ACCELERATION_EXT": 1, - "WGL_NEED_PALETTE_EXT": 1, - "WGL_NEED_SYSTEM_PALETTE_EXT": 1, - "WGL_SWAP_LAYER_BUFFERS_EXT": 1, - "WGL_SWAP_METHOD_EXT": 1, - "WGL_NUMBER_OVERLAYS_EXT": 1, - "WGL_NUMBER_UNDERLAYS_EXT": 1, - "WGL_TRANSPARENT_EXT": 1, - "WGL_TRANSPARENT_VALUE_EXT": 1, - "WGL_SHARE_DEPTH_EXT": 1, - "WGL_SHARE_STENCIL_EXT": 1, - "WGL_SHARE_ACCUM_EXT": 1, - "WGL_SUPPORT_GDI_EXT": 1, - "WGL_SUPPORT_OPENGL_EXT": 1, - "WGL_DOUBLE_BUFFER_EXT": 1, - "WGL_STEREO_EXT": 1, - "WGL_PIXEL_TYPE_EXT": 1, - "WGL_COLOR_BITS_EXT": 1, - "WGL_RED_BITS_EXT": 1, - "WGL_RED_SHIFT_EXT": 1, - "WGL_GREEN_BITS_EXT": 1, - "WGL_GREEN_SHIFT_EXT": 1, - "WGL_BLUE_BITS_EXT": 1, - "WGL_BLUE_SHIFT_EXT": 1, - "WGL_ALPHA_BITS_EXT": 1, - "WGL_ALPHA_SHIFT_EXT": 1, - "WGL_ACCUM_BITS_EXT": 1, - "WGL_ACCUM_RED_BITS_EXT": 1, - "WGL_ACCUM_GREEN_BITS_EXT": 1, - "WGL_ACCUM_BLUE_BITS_EXT": 1, - "WGL_ACCUM_ALPHA_BITS_EXT": 1, - "WGL_DEPTH_BITS_EXT": 1, - "WGL_STENCIL_BITS_EXT": 1, - "WGL_AUX_BUFFERS_EXT": 1, - "WGL_NO_ACCELERATION_EXT": 1, - "WGL_GENERIC_ACCELERATION_EXT": 1, - "WGL_FULL_ACCELERATION_EXT": 1, - "WGL_SWAP_EXCHANGE_EXT": 1, - "WGL_SWAP_COPY_EXT": 1, - "WGL_SWAP_UNDEFINED_EXT": 1, - "WGL_TYPE_RGBA_EXT": 1, - "WGL_TYPE_COLORINDEX_EXT": 1, - "PFNWGLCHOOSEPIXELFORMATEXTPROC": 2, - "PFNWGLGETPIXELFORMATATTRIBFVEXTPROC": 2, - "PFNWGLGETPIXELFORMATATTRIBIVEXTPROC": 2, - "wglChoosePixelFormatEXT": 1, - "__wglewChoosePixelFormatEXT": 2, - "wglGetPixelFormatAttribfvEXT": 1, - "__wglewGetPixelFormatAttribfvEXT": 2, - "wglGetPixelFormatAttribivEXT": 1, - "__wglewGetPixelFormatAttribivEXT": 2, - "WGLEW_EXT_pixel_format": 1, - "__WGLEW_EXT_pixel_format": 2, - "WGL_EXT_pixel_format_packed_float": 2, - "WGL_TYPE_RGBA_UNSIGNED_FLOAT_EXT": 1, - "WGLEW_EXT_pixel_format_packed_float": 1, - "__WGLEW_EXT_pixel_format_packed_float": 2, - "WGL_EXT_swap_control": 2, - "PFNWGLGETSWAPINTERVALEXTPROC": 2, - "PFNWGLSWAPINTERVALEXTPROC": 2, - "interval": 1, - "wglGetSwapIntervalEXT": 1, - "__wglewGetSwapIntervalEXT": 2, - "wglSwapIntervalEXT": 1, - "__wglewSwapIntervalEXT": 2, - "WGLEW_EXT_swap_control": 1, - "__WGLEW_EXT_swap_control": 2, - "WGL_I3D_digital_video_control": 2, - "WGL_DIGITAL_VIDEO_CURSOR_ALPHA_FRAMEBUFFER_I3D": 1, - "WGL_DIGITAL_VIDEO_CURSOR_ALPHA_VALUE_I3D": 1, - "WGL_DIGITAL_VIDEO_CURSOR_INCLUDED_I3D": 1, - "WGL_DIGITAL_VIDEO_GAMMA_CORRECTED_I3D": 1, - "PFNWGLGETDIGITALVIDEOPARAMETERSI3DPROC": 2, - "PFNWGLSETDIGITALVIDEOPARAMETERSI3DPROC": 2, - "wglGetDigitalVideoParametersI3D": 1, - "__wglewGetDigitalVideoParametersI3D": 2, - "wglSetDigitalVideoParametersI3D": 1, - "__wglewSetDigitalVideoParametersI3D": 2, - "WGLEW_I3D_digital_video_control": 1, - "__WGLEW_I3D_digital_video_control": 2, - "WGL_I3D_gamma": 2, - "WGL_GAMMA_TABLE_SIZE_I3D": 1, - "WGL_GAMMA_EXCLUDE_DESKTOP_I3D": 1, - "PFNWGLGETGAMMATABLEI3DPROC": 2, - "iEntries": 2, - "USHORT*": 2, - "puRed": 2, - "USHORT": 4, - "*puGreen": 2, - "*puBlue": 2, - "PFNWGLGETGAMMATABLEPARAMETERSI3DPROC": 2, - "PFNWGLSETGAMMATABLEI3DPROC": 2, - "PFNWGLSETGAMMATABLEPARAMETERSI3DPROC": 2, - "wglGetGammaTableI3D": 1, - "__wglewGetGammaTableI3D": 2, - "wglGetGammaTableParametersI3D": 1, - "__wglewGetGammaTableParametersI3D": 2, - "wglSetGammaTableI3D": 1, - "__wglewSetGammaTableI3D": 2, - "wglSetGammaTableParametersI3D": 1, - "__wglewSetGammaTableParametersI3D": 2, - "WGLEW_I3D_gamma": 1, - "__WGLEW_I3D_gamma": 2, - "WGL_I3D_genlock": 2, - "WGL_GENLOCK_SOURCE_MULTIVIEW_I3D": 1, - "WGL_GENLOCK_SOURCE_EXTERNAL_SYNC_I3D": 1, - "WGL_GENLOCK_SOURCE_EXTERNAL_FIELD_I3D": 1, - "WGL_GENLOCK_SOURCE_EXTERNAL_TTL_I3D": 1, - "WGL_GENLOCK_SOURCE_DIGITAL_SYNC_I3D": 1, - "WGL_GENLOCK_SOURCE_DIGITAL_FIELD_I3D": 1, - "WGL_GENLOCK_SOURCE_EDGE_FALLING_I3D": 1, - "WGL_GENLOCK_SOURCE_EDGE_RISING_I3D": 1, - "WGL_GENLOCK_SOURCE_EDGE_BOTH_I3D": 1, - "PFNWGLDISABLEGENLOCKI3DPROC": 2, - "PFNWGLENABLEGENLOCKI3DPROC": 2, - "PFNWGLGENLOCKSAMPLERATEI3DPROC": 2, - "uRate": 2, - "PFNWGLGENLOCKSOURCEDELAYI3DPROC": 2, - "uDelay": 2, - "PFNWGLGENLOCKSOURCEEDGEI3DPROC": 2, - "uEdge": 2, - "PFNWGLGENLOCKSOURCEI3DPROC": 2, - "uSource": 2, - "PFNWGLGETGENLOCKSAMPLERATEI3DPROC": 2, - "PFNWGLGETGENLOCKSOURCEDELAYI3DPROC": 2, - "PFNWGLGETGENLOCKSOURCEEDGEI3DPROC": 2, - "PFNWGLGETGENLOCKSOURCEI3DPROC": 2, - "PFNWGLISENABLEDGENLOCKI3DPROC": 2, - "BOOL*": 3, - "pFlag": 3, - "PFNWGLQUERYGENLOCKMAXSOURCEDELAYI3DPROC": 2, - "uMaxLineDelay": 1, - "*uMaxPixelDelay": 1, - "wglDisableGenlockI3D": 1, - "__wglewDisableGenlockI3D": 2, - "wglEnableGenlockI3D": 1, - "__wglewEnableGenlockI3D": 2, - "wglGenlockSampleRateI3D": 1, - "__wglewGenlockSampleRateI3D": 2, - "wglGenlockSourceDelayI3D": 1, - "__wglewGenlockSourceDelayI3D": 2, - "wglGenlockSourceEdgeI3D": 1, - "__wglewGenlockSourceEdgeI3D": 2, - "wglGenlockSourceI3D": 1, - "__wglewGenlockSourceI3D": 2, - "wglGetGenlockSampleRateI3D": 1, - "__wglewGetGenlockSampleRateI3D": 2, - "wglGetGenlockSourceDelayI3D": 1, - "__wglewGetGenlockSourceDelayI3D": 2, - "wglGetGenlockSourceEdgeI3D": 1, - "__wglewGetGenlockSourceEdgeI3D": 2, - "wglGetGenlockSourceI3D": 1, - "__wglewGetGenlockSourceI3D": 2, - "wglIsEnabledGenlockI3D": 1, - "__wglewIsEnabledGenlockI3D": 2, - "wglQueryGenlockMaxSourceDelayI3D": 1, - "__wglewQueryGenlockMaxSourceDelayI3D": 2, - "WGLEW_I3D_genlock": 1, - "__WGLEW_I3D_genlock": 2, - "WGL_I3D_image_buffer": 2, - "WGL_IMAGE_BUFFER_MIN_ACCESS_I3D": 1, - "WGL_IMAGE_BUFFER_LOCK_I3D": 1, - "PFNWGLASSOCIATEIMAGEBUFFEREVENTSI3DPROC": 2, - "HANDLE*": 3, - "pEvent": 1, - "LPVOID": 3, - "*pAddress": 1, - "DWORD": 5, - "*pSize": 1, - "PFNWGLCREATEIMAGEBUFFERI3DPROC": 2, - "dwSize": 1, - "uFlags": 1, - "PFNWGLDESTROYIMAGEBUFFERI3DPROC": 2, - "pAddress": 2, - "PFNWGLRELEASEIMAGEBUFFEREVENTSI3DPROC": 2, - "LPVOID*": 1, - "wglAssociateImageBufferEventsI3D": 1, - "__wglewAssociateImageBufferEventsI3D": 2, - "wglCreateImageBufferI3D": 1, - "__wglewCreateImageBufferI3D": 2, - "wglDestroyImageBufferI3D": 1, - "__wglewDestroyImageBufferI3D": 2, - "wglReleaseImageBufferEventsI3D": 1, - "__wglewReleaseImageBufferEventsI3D": 2, - "WGLEW_I3D_image_buffer": 1, - "__WGLEW_I3D_image_buffer": 2, - "WGL_I3D_swap_frame_lock": 2, - "PFNWGLDISABLEFRAMELOCKI3DPROC": 2, - "PFNWGLENABLEFRAMELOCKI3DPROC": 2, - "PFNWGLISENABLEDFRAMELOCKI3DPROC": 2, - "PFNWGLQUERYFRAMELOCKMASTERI3DPROC": 2, - "wglDisableFrameLockI3D": 1, - "__wglewDisableFrameLockI3D": 2, - "wglEnableFrameLockI3D": 1, - "__wglewEnableFrameLockI3D": 2, - "wglIsEnabledFrameLockI3D": 1, - "__wglewIsEnabledFrameLockI3D": 2, - "wglQueryFrameLockMasterI3D": 1, - "__wglewQueryFrameLockMasterI3D": 2, - "WGLEW_I3D_swap_frame_lock": 1, - "__WGLEW_I3D_swap_frame_lock": 2, - "WGL_I3D_swap_frame_usage": 2, - "PFNWGLBEGINFRAMETRACKINGI3DPROC": 2, - "PFNWGLENDFRAMETRACKINGI3DPROC": 2, - "PFNWGLGETFRAMEUSAGEI3DPROC": 2, - "float*": 1, - "pUsage": 1, - "PFNWGLQUERYFRAMETRACKINGI3DPROC": 2, - "DWORD*": 1, - "pFrameCount": 1, - "*pMissedFrames": 1, - "float": 26, - "*pLastMissedUsage": 1, - "wglBeginFrameTrackingI3D": 1, - "__wglewBeginFrameTrackingI3D": 2, - "wglEndFrameTrackingI3D": 1, - "__wglewEndFrameTrackingI3D": 2, - "wglGetFrameUsageI3D": 1, - "__wglewGetFrameUsageI3D": 2, - "wglQueryFrameTrackingI3D": 1, - "__wglewQueryFrameTrackingI3D": 2, - "WGLEW_I3D_swap_frame_usage": 1, - "__WGLEW_I3D_swap_frame_usage": 2, - "WGL_NV_DX_interop": 2, - "WGL_ACCESS_READ_ONLY_NV": 1, - "WGL_ACCESS_READ_WRITE_NV": 1, - "WGL_ACCESS_WRITE_DISCARD_NV": 1, - "PFNWGLDXCLOSEDEVICENVPROC": 2, - "hDevice": 9, - "PFNWGLDXLOCKOBJECTSNVPROC": 2, - "hObjects": 2, - "PFNWGLDXOBJECTACCESSNVPROC": 2, - "hObject": 2, - "access": 2, - "PFNWGLDXOPENDEVICENVPROC": 2, - "dxDevice": 1, - "PFNWGLDXREGISTEROBJECTNVPROC": 2, - "dxObject": 2, - "PFNWGLDXSETRESOURCESHAREHANDLENVPROC": 2, - "shareHandle": 1, - "PFNWGLDXUNLOCKOBJECTSNVPROC": 2, - "PFNWGLDXUNREGISTEROBJECTNVPROC": 2, - "wglDXCloseDeviceNV": 1, - "__wglewDXCloseDeviceNV": 2, - "wglDXLockObjectsNV": 1, - "__wglewDXLockObjectsNV": 2, - "wglDXObjectAccessNV": 1, - "__wglewDXObjectAccessNV": 2, - "wglDXOpenDeviceNV": 1, - "__wglewDXOpenDeviceNV": 2, - "wglDXRegisterObjectNV": 1, - "__wglewDXRegisterObjectNV": 2, - "wglDXSetResourceShareHandleNV": 1, - "__wglewDXSetResourceShareHandleNV": 2, - "wglDXUnlockObjectsNV": 1, - "__wglewDXUnlockObjectsNV": 2, - "wglDXUnregisterObjectNV": 1, - "__wglewDXUnregisterObjectNV": 2, - "WGLEW_NV_DX_interop": 1, - "__WGLEW_NV_DX_interop": 2, - "WGL_NV_copy_image": 2, - "PFNWGLCOPYIMAGESUBDATANVPROC": 2, - "hSrcRC": 1, - "srcName": 1, - "srcTarget": 1, - "srcLevel": 1, - "srcX": 1, - "srcY": 1, - "srcZ": 1, - "hDstRC": 1, - "dstName": 1, - "dstTarget": 1, - "dstLevel": 1, - "dstX": 1, - "dstY": 1, - "dstZ": 1, - "GLsizei": 4, - "depth": 2, - "wglCopyImageSubDataNV": 1, - "__wglewCopyImageSubDataNV": 2, - "WGLEW_NV_copy_image": 1, - "__WGLEW_NV_copy_image": 2, - "WGL_NV_float_buffer": 2, - "WGL_FLOAT_COMPONENTS_NV": 1, - "B0": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_R_NV": 1, - "B1": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RG_NV": 1, - "B2": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGB_NV": 1, - "B3": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGBA_NV": 1, - "B4": 1, - "WGL_TEXTURE_FLOAT_R_NV": 1, - "B5": 1, - "WGL_TEXTURE_FLOAT_RG_NV": 1, - "B6": 1, - "WGL_TEXTURE_FLOAT_RGB_NV": 1, - "B7": 1, - "WGL_TEXTURE_FLOAT_RGBA_NV": 1, - "B8": 1, - "WGLEW_NV_float_buffer": 1, - "__WGLEW_NV_float_buffer": 2, - "WGL_NV_gpu_affinity": 2, - "WGL_ERROR_INCOMPATIBLE_AFFINITY_MASKS_NV": 1, - "D0": 1, - "WGL_ERROR_MISSING_AFFINITY_MASK_NV": 1, - "D1": 1, - "HGPUNV": 5, - "_GPU_DEVICE": 1, - "cb": 1, - "CHAR": 2, - "DeviceName": 1, - "DeviceString": 1, - "Flags": 1, - "RECT": 1, - "rcVirtualScreen": 1, - "GPU_DEVICE": 1, - "*PGPU_DEVICE": 1, - "PFNWGLCREATEAFFINITYDCNVPROC": 2, - "*phGpuList": 1, - "PFNWGLDELETEDCNVPROC": 2, - "PFNWGLENUMGPUDEVICESNVPROC": 2, - "hGpu": 1, - "iDeviceIndex": 1, - "PGPU_DEVICE": 1, - "lpGpuDevice": 1, - "PFNWGLENUMGPUSFROMAFFINITYDCNVPROC": 2, - "hAffinityDC": 1, - "iGpuIndex": 2, - "*hGpu": 1, - "PFNWGLENUMGPUSNVPROC": 2, - "*phGpu": 1, - "wglCreateAffinityDCNV": 1, - "__wglewCreateAffinityDCNV": 2, - "wglDeleteDCNV": 1, - "__wglewDeleteDCNV": 2, - "wglEnumGpuDevicesNV": 1, - "__wglewEnumGpuDevicesNV": 2, - "wglEnumGpusFromAffinityDCNV": 1, - "__wglewEnumGpusFromAffinityDCNV": 2, - "wglEnumGpusNV": 1, - "__wglewEnumGpusNV": 2, - "WGLEW_NV_gpu_affinity": 1, - "__WGLEW_NV_gpu_affinity": 2, - "WGL_NV_multisample_coverage": 2, - "WGL_COVERAGE_SAMPLES_NV": 1, - "WGL_COLOR_SAMPLES_NV": 1, - "B9": 1, - "WGLEW_NV_multisample_coverage": 1, - "__WGLEW_NV_multisample_coverage": 2, - "WGL_NV_present_video": 2, - "WGL_NUM_VIDEO_SLOTS_NV": 1, - "F0": 1, - "HVIDEOOUTPUTDEVICENV": 2, - "PFNWGLBINDVIDEODEVICENVPROC": 2, - "hDc": 6, - "uVideoSlot": 2, - "hVideoDevice": 4, - "PFNWGLENUMERATEVIDEODEVICESNVPROC": 2, - "HVIDEOOUTPUTDEVICENV*": 1, - "phDeviceList": 2, - "PFNWGLQUERYCURRENTCONTEXTNVPROC": 2, - "wglBindVideoDeviceNV": 1, - "__wglewBindVideoDeviceNV": 2, - "wglEnumerateVideoDevicesNV": 1, - "__wglewEnumerateVideoDevicesNV": 2, - "wglQueryCurrentContextNV": 1, - "__wglewQueryCurrentContextNV": 2, - "WGLEW_NV_present_video": 1, - "__WGLEW_NV_present_video": 2, - "WGL_NV_render_depth_texture": 2, - "WGL_BIND_TO_TEXTURE_DEPTH_NV": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_DEPTH_NV": 1, - "WGL_DEPTH_TEXTURE_FORMAT_NV": 1, - "WGL_TEXTURE_DEPTH_COMPONENT_NV": 1, - "WGL_DEPTH_COMPONENT_NV": 1, - "WGLEW_NV_render_depth_texture": 1, - "__WGLEW_NV_render_depth_texture": 2, - "WGL_NV_render_texture_rectangle": 2, - "WGL_BIND_TO_TEXTURE_RECTANGLE_RGB_NV": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_RGBA_NV": 1, - "A1": 1, - "WGL_TEXTURE_RECTANGLE_NV": 1, - "WGLEW_NV_render_texture_rectangle": 1, - "__WGLEW_NV_render_texture_rectangle": 2, - "WGL_NV_swap_group": 2, - "PFNWGLBINDSWAPBARRIERNVPROC": 2, - "group": 3, - "barrier": 1, - "PFNWGLJOINSWAPGROUPNVPROC": 2, - "PFNWGLQUERYFRAMECOUNTNVPROC": 2, - "GLuint*": 3, - "PFNWGLQUERYMAXSWAPGROUPSNVPROC": 2, - "maxGroups": 1, - "*maxBarriers": 1, - "PFNWGLQUERYSWAPGROUPNVPROC": 2, - "*barrier": 1, - "PFNWGLRESETFRAMECOUNTNVPROC": 2, - "wglBindSwapBarrierNV": 1, - "__wglewBindSwapBarrierNV": 2, - "wglJoinSwapGroupNV": 1, - "__wglewJoinSwapGroupNV": 2, - "wglQueryFrameCountNV": 1, - "__wglewQueryFrameCountNV": 2, - "wglQueryMaxSwapGroupsNV": 1, - "__wglewQueryMaxSwapGroupsNV": 2, - "wglQuerySwapGroupNV": 1, - "__wglewQuerySwapGroupNV": 2, - "wglResetFrameCountNV": 1, - "__wglewResetFrameCountNV": 2, - "WGLEW_NV_swap_group": 1, - "__WGLEW_NV_swap_group": 2, - "WGL_NV_vertex_array_range": 2, - "PFNWGLALLOCATEMEMORYNVPROC": 2, - "GLfloat": 3, - "readFrequency": 1, - "writeFrequency": 1, - "priority": 1, - "PFNWGLFREEMEMORYNVPROC": 2, - "*pointer": 1, - "wglAllocateMemoryNV": 1, - "__wglewAllocateMemoryNV": 2, - "wglFreeMemoryNV": 1, - "__wglewFreeMemoryNV": 2, - "WGLEW_NV_vertex_array_range": 1, - "__WGLEW_NV_vertex_array_range": 2, - "WGL_NV_video_capture": 2, - "WGL_UNIQUE_ID_NV": 1, - "CE": 1, - "WGL_NUM_VIDEO_CAPTURE_SLOTS_NV": 1, - "CF": 1, - "HVIDEOINPUTDEVICENV": 5, - "PFNWGLBINDVIDEOCAPTUREDEVICENVPROC": 2, - "PFNWGLENUMERATEVIDEOCAPTUREDEVICESNVPROC": 2, - "HVIDEOINPUTDEVICENV*": 1, - "PFNWGLLOCKVIDEOCAPTUREDEVICENVPROC": 2, - "PFNWGLQUERYVIDEOCAPTUREDEVICENVPROC": 2, - "PFNWGLRELEASEVIDEOCAPTUREDEVICENVPROC": 2, - "wglBindVideoCaptureDeviceNV": 1, - "__wglewBindVideoCaptureDeviceNV": 2, - "wglEnumerateVideoCaptureDevicesNV": 1, - "__wglewEnumerateVideoCaptureDevicesNV": 2, - "wglLockVideoCaptureDeviceNV": 1, - "__wglewLockVideoCaptureDeviceNV": 2, - "wglQueryVideoCaptureDeviceNV": 1, - "__wglewQueryVideoCaptureDeviceNV": 2, - "wglReleaseVideoCaptureDeviceNV": 1, - "__wglewReleaseVideoCaptureDeviceNV": 2, - "WGLEW_NV_video_capture": 1, - "__WGLEW_NV_video_capture": 2, - "WGL_NV_video_output": 2, - "WGL_BIND_TO_VIDEO_RGB_NV": 1, - "C0": 3, - "WGL_BIND_TO_VIDEO_RGBA_NV": 1, - "C1": 1, - "WGL_BIND_TO_VIDEO_RGB_AND_DEPTH_NV": 1, - "C2": 1, - "WGL_VIDEO_OUT_COLOR_NV": 1, - "C3": 1, - "WGL_VIDEO_OUT_ALPHA_NV": 1, - "C4": 1, - "WGL_VIDEO_OUT_DEPTH_NV": 1, - "C5": 1, - "WGL_VIDEO_OUT_COLOR_AND_ALPHA_NV": 1, - "C6": 1, - "WGL_VIDEO_OUT_COLOR_AND_DEPTH_NV": 1, - "C7": 1, - "WGL_VIDEO_OUT_FRAME": 1, - "C8": 1, - "WGL_VIDEO_OUT_FIELD_1": 1, - "C9": 1, - "WGL_VIDEO_OUT_FIELD_2": 1, - "CA": 1, - "WGL_VIDEO_OUT_STACKED_FIELDS_1_2": 1, - "CB": 1, - "WGL_VIDEO_OUT_STACKED_FIELDS_2_1": 1, - "CC": 1, - "HPVIDEODEV": 4, - "PFNWGLBINDVIDEOIMAGENVPROC": 2, - "iVideoBuffer": 2, - "PFNWGLGETVIDEODEVICENVPROC": 2, - "numDevices": 1, - "HPVIDEODEV*": 1, - "PFNWGLGETVIDEOINFONVPROC": 2, - "hpVideoDevice": 1, - "long*": 2, - "pulCounterOutputPbuffer": 1, - "*pulCounterOutputVideo": 1, - "PFNWGLRELEASEVIDEODEVICENVPROC": 2, - "PFNWGLRELEASEVIDEOIMAGENVPROC": 2, - "PFNWGLSENDPBUFFERTOVIDEONVPROC": 2, - "iBufferType": 1, - "pulCounterPbuffer": 1, - "bBlock": 1, - "wglBindVideoImageNV": 1, - "__wglewBindVideoImageNV": 2, - "wglGetVideoDeviceNV": 1, - "__wglewGetVideoDeviceNV": 2, - "wglGetVideoInfoNV": 1, - "__wglewGetVideoInfoNV": 2, - "wglReleaseVideoDeviceNV": 1, - "__wglewReleaseVideoDeviceNV": 2, - "wglReleaseVideoImageNV": 1, - "__wglewReleaseVideoImageNV": 2, - "wglSendPbufferToVideoNV": 1, - "__wglewSendPbufferToVideoNV": 2, - "WGLEW_NV_video_output": 1, - "__WGLEW_NV_video_output": 2, - "WGL_OML_sync_control": 2, - "PFNWGLGETMSCRATEOMLPROC": 2, - "INT32*": 1, - "numerator": 1, - "INT32": 1, - "*denominator": 1, - "PFNWGLGETSYNCVALUESOMLPROC": 2, - "INT64*": 3, + "": 4, + "": 2, + "": 1, + "": 1, + "": 2, + "__APPLE__": 2, + "TARGET_OS_IPHONE": 1, + "**environ": 1, + "uv__chld": 2, + "EV_P_": 1, + "ev_child*": 1, + "watcher": 4, + "revents": 2, + "rstatus": 1, + "exit_status": 3, + "term_signal": 3, + "uv_process_t": 1, + "*process": 1, + "process": 19, + "child_watcher": 5, + "EV_CHILD": 1, + "ev_child_stop": 2, + "EV_A_": 1, + "WIFEXITED": 1, + "WEXITSTATUS": 2, + "WIFSIGNALED": 2, + "WTERMSIG": 2, + "exit_cb": 3, + "uv__make_socketpair": 2, + "fds": 20, + "SOCK_NONBLOCK": 2, + "fl": 8, + "SOCK_CLOEXEC": 1, + "UV__F_NONBLOCK": 5, + "socketpair": 2, + "AF_UNIX": 2, + "SOCK_STREAM": 2, + "uv__cloexec": 4, + "uv__nonblock": 5, + "uv__make_pipe": 2, + "__linux__": 3, + "UV__O_CLOEXEC": 1, + "UV__O_NONBLOCK": 1, + "uv__pipe2": 1, + "ENOSYS": 1, + "pipe": 1, + "uv__process_init_stdio": 2, + "uv_stdio_container_t*": 4, + "container": 17, + "writable": 8, + "UV_IGNORE": 2, + "UV_CREATE_PIPE": 4, + "UV_INHERIT_FD": 3, + "UV_INHERIT_STREAM": 2, + "data.stream": 7, + "UV_NAMED_PIPE": 2, + "data.fd": 1, + "uv__process_stdio_flags": 2, + "uv_pipe_t*": 1, + "ipc": 1, + "UV_STREAM_READABLE": 2, + "UV_STREAM_WRITABLE": 2, + "uv__process_open_stream": 2, + "child_fd": 3, + "close": 13, + "uv__stream_open": 1, + "uv_stream_t*": 2, + "uv__process_close_stream": 2, + "uv__stream_close": 1, + "uv__process_child_init": 2, + "uv_process_options_t": 2, + "options": 62, + "stdio_count": 7, + "int*": 22, + "options.flags": 4, + "UV_PROCESS_DETACHED": 2, + "setsid": 2, + "close_fd": 2, + "use_fd": 7, + "open": 4, + "O_RDONLY": 1, + "O_RDWR": 2, + "perror": 5, + "_exit": 6, + "dup2": 4, + "options.cwd": 2, + "UV_PROCESS_SETGID": 2, + "setgid": 1, + "options.gid": 1, + "UV_PROCESS_SETUID": 2, + "setuid": 1, + "options.uid": 1, + "environ": 4, + "options.env": 1, + "execvp": 1, + "options.file": 2, + "options.args": 1, + "SPAWN_WAIT_EXEC": 5, + "uv_spawn": 1, + "uv_loop_t*": 1, + "loop": 9, + "uv_process_t*": 3, + "char**": 7, + "save_our_env": 3, + "options.stdio_count": 4, + "malloc": 3, + "signal_pipe": 7, + "pollfd": 1, + "pfd": 2, + "pid_t": 2, + "pid": 13, + "UV_PROCESS_WINDOWS_VERBATIM_ARGUMENTS": 1, + "uv__handle_init": 1, + "uv_handle_t*": 1, + "UV_PROCESS": 1, + "counters.process_init": 1, + "uv__handle_start": 1, + "options.exit_cb": 1, + "options.stdio": 3, + "fork": 2, + "pfd.fd": 1, + "pfd.events": 1, + "POLLIN": 1, + "POLLHUP": 1, + "pfd.revents": 1, + "poll": 1, + "EINTR": 1, + "ev_child_init": 1, + "ev_child_start": 1, + "ev": 2, + "child_watcher.data": 1, + "uv__set_sys_error": 2, + "uv_process_kill": 1, + "signum": 4, + "kill": 4, + "uv_err_t": 1, + "uv_kill": 1, + "uv__new_sys_error": 1, + "uv_ok_": 1, + "uv__process_close": 1, + "handle": 10, + "uv__handle_stop": 1, + "VALUE": 13, + "rb_cRDiscount": 4, + "rb_rdiscount_to_html": 2, + "self": 9, + "*res": 2, + "szres": 8, + "encoding": 14, + "rb_funcall": 14, + "rb_intern": 15, + "rb_str_buf_new": 2, + "Check_Type": 2, + "T_STRING": 2, + "rb_rdiscount__get_flags": 3, + "MMIOT": 2, + "*doc": 2, + "mkd_string": 2, + "RSTRING_PTR": 2, + "RSTRING_LEN": 2, + "mkd_compile": 2, + "doc": 6, + "mkd_document": 1, + "res": 4, + "rb_str_cat": 4, + "mkd_cleanup": 2, + "rb_respond_to": 1, + "rb_rdiscount_toc_content": 2, + "mkd_toc": 1, + "ruby_obj": 11, + "MKD_TABSTOP": 1, + "MKD_NOHEADER": 1, + "Qtrue": 10, + "MKD_NOPANTS": 1, + "MKD_NOHTML": 1, + "MKD_TOC": 1, + "MKD_NOIMAGE": 1, + "MKD_NOLINKS": 1, + "MKD_NOTABLES": 1, + "MKD_STRICT": 1, + "MKD_AUTOLINK": 1, + "MKD_SAFELINK": 1, + "MKD_NO_EXT": 1, + "Init_rdiscount": 1, + "rb_define_class": 1, + "rb_cObject": 1, + "rb_define_method": 2, + "READLINE_READLINE_CATS": 3, + "": 1, + "atscntrb_readline_rl_library_version": 1, + "char*": 167, + "rl_library_version": 1, + "atscntrb_readline_rl_readline_version": 1, + "rl_readline_version": 1, + "atscntrb_readline_readline": 1, + "readline": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 2, + "": 1, + "": 1, + "": 3, + "": 1, + "sharedObjectsStruct": 1, + "shared": 1, + "double": 126, + "R_Zero": 2, + "R_PosInf": 2, + "R_NegInf": 2, + "R_Nan": 2, + "redisServer": 1, + "server": 1, + "redisCommand": 6, + "*commandTable": 1, + "redisCommandTable": 5, + "getCommand": 1, + "setCommand": 1, + "noPreloadGetKeys": 6, + "setnxCommand": 1, + "setexCommand": 1, + "psetexCommand": 1, + "appendCommand": 1, + "strlenCommand": 1, + "delCommand": 1, + "existsCommand": 1, + "setbitCommand": 1, + "getbitCommand": 1, + "setrangeCommand": 1, + "getrangeCommand": 2, + "incrCommand": 1, + "decrCommand": 1, + "mgetCommand": 1, + "rpushCommand": 1, + "lpushCommand": 1, + "rpushxCommand": 1, + "lpushxCommand": 1, + "linsertCommand": 1, + "rpopCommand": 1, + "lpopCommand": 1, + "brpopCommand": 1, + "brpoplpushCommand": 1, + "blpopCommand": 1, + "llenCommand": 1, + "lindexCommand": 1, + "lsetCommand": 1, + "lrangeCommand": 1, + "ltrimCommand": 1, + "lremCommand": 1, + "rpoplpushCommand": 1, + "saddCommand": 1, + "sremCommand": 1, + "smoveCommand": 1, + "sismemberCommand": 1, + "scardCommand": 1, + "spopCommand": 1, + "srandmemberCommand": 1, + "sinterCommand": 2, + "sinterstoreCommand": 1, + "sunionCommand": 1, + "sunionstoreCommand": 1, + "sdiffCommand": 1, + "sdiffstoreCommand": 1, + "zaddCommand": 1, + "zincrbyCommand": 1, + "zremCommand": 1, + "zremrangebyscoreCommand": 1, + "zremrangebyrankCommand": 1, + "zunionstoreCommand": 1, + "zunionInterGetKeys": 4, + "zinterstoreCommand": 1, + "zrangeCommand": 1, + "zrangebyscoreCommand": 1, + "zrevrangebyscoreCommand": 1, + "zcountCommand": 1, + "zrevrangeCommand": 1, + "zcardCommand": 1, + "zscoreCommand": 1, + "zrankCommand": 1, + "zrevrankCommand": 1, + "hsetCommand": 1, + "hsetnxCommand": 1, + "hgetCommand": 1, + "hmsetCommand": 1, + "hmgetCommand": 1, + "hincrbyCommand": 1, + "hincrbyfloatCommand": 1, + "hdelCommand": 1, + "hlenCommand": 1, + "hkeysCommand": 1, + "hvalsCommand": 1, + "hgetallCommand": 1, + "hexistsCommand": 1, + "incrbyCommand": 1, + "decrbyCommand": 1, + "incrbyfloatCommand": 1, + "getsetCommand": 1, + "msetCommand": 1, + "msetnxCommand": 1, + "randomkeyCommand": 1, + "selectCommand": 1, + "moveCommand": 1, + "renameCommand": 1, + "renameGetKeys": 2, + "renamenxCommand": 1, + "expireCommand": 1, + "expireatCommand": 1, + "pexpireCommand": 1, + "pexpireatCommand": 1, + "keysCommand": 1, + "dbsizeCommand": 1, + "authCommand": 3, + "pingCommand": 2, + "echoCommand": 2, + "saveCommand": 1, + "bgsaveCommand": 1, + "bgrewriteaofCommand": 1, + "shutdownCommand": 2, + "lastsaveCommand": 1, + "typeCommand": 1, + "multiCommand": 2, + "execCommand": 2, + "discardCommand": 2, + "syncCommand": 1, + "flushdbCommand": 1, + "flushallCommand": 1, + "sortCommand": 1, + "infoCommand": 4, + "monitorCommand": 2, + "ttlCommand": 1, + "pttlCommand": 1, + "persistCommand": 1, + "slaveofCommand": 2, + "debugCommand": 1, + "configCommand": 1, + "subscribeCommand": 2, + "unsubscribeCommand": 2, + "psubscribeCommand": 2, + "punsubscribeCommand": 2, + "publishCommand": 1, + "watchCommand": 2, + "unwatchCommand": 1, + "clusterCommand": 1, + "restoreCommand": 1, + "migrateCommand": 1, + "askingCommand": 1, + "dumpCommand": 1, + "objectCommand": 1, + "clientCommand": 1, + "evalCommand": 1, + "evalShaCommand": 1, + "slowlogCommand": 1, + "scriptCommand": 2, + "timeCommand": 2, + "bitopCommand": 1, + "bitcountCommand": 1, + "redisLogRaw": 3, + "level": 12, + "syslogLevelMap": 2, + "LOG_DEBUG": 1, + "LOG_INFO": 1, + "LOG_NOTICE": 1, + "LOG_WARNING": 1, + "FILE": 3, + "*fp": 3, + "rawmode": 2, + "REDIS_LOG_RAW": 2, + "xff": 3, + "server.verbosity": 4, + "fp": 13, + "server.logfile": 8, + "fopen": 3, + "msg": 10, + "timeval": 4, + "tv": 8, + "gettimeofday": 4, + "strftime": 1, + "localtime": 1, + "tv.tv_sec": 4, + "snprintf": 2, + "tv.tv_usec/1000": 1, + "getpid": 7, + "server.syslog_enabled": 3, + "syslog": 1, + "redisLog": 33, + "...": 127, + "va_list": 3, + "ap": 4, + "REDIS_MAX_LOGMSG_LEN": 1, + "va_start": 3, + "vsnprintf": 1, + "va_end": 3, + "redisLogFromHandler": 2, + "server.daemonize": 5, + "O_APPEND": 2, + "O_CREAT": 2, + "O_WRONLY": 2, + "STDOUT_FILENO": 2, + "ll2string": 3, + "write": 7, + "time": 10, + "oom": 3, + "REDIS_WARNING": 19, + "sleep": 1, + "abort": 1, + "ustime": 7, "ust": 7, - "INT64": 18, - "*msc": 3, - "*sbc": 3, - "PFNWGLSWAPBUFFERSMSCOMLPROC": 2, - "target_msc": 3, - "divisor": 3, - "remainder": 3, - "PFNWGLSWAPLAYERBUFFERSMSCOMLPROC": 2, - "fuPlanes": 1, - "PFNWGLWAITFORMSCOMLPROC": 2, - "PFNWGLWAITFORSBCOMLPROC": 2, - "target_sbc": 1, - "wglGetMscRateOML": 1, - "__wglewGetMscRateOML": 2, - "wglGetSyncValuesOML": 1, - "__wglewGetSyncValuesOML": 2, - "wglSwapBuffersMscOML": 1, - "__wglewSwapBuffersMscOML": 2, - "wglSwapLayerBuffersMscOML": 1, - "__wglewSwapLayerBuffersMscOML": 2, - "wglWaitForMscOML": 1, - "__wglewWaitForMscOML": 2, - "wglWaitForSbcOML": 1, - "__wglewWaitForSbcOML": 2, - "WGLEW_OML_sync_control": 1, - "__WGLEW_OML_sync_control": 2, - "GLEW_MX": 4, - "WGLEW_EXPORT": 167, - "GLEWAPI": 6, - "WGLEWContextStruct": 2, - "WGLEWContext": 1, - "wglewContextInit": 2, - "WGLEWContext*": 2, - "ctx": 16, - "wglewContextIsSupported": 2, - "wglewInit": 1, - "wglewGetContext": 4, - "wglewIsSupported": 2, - "wglewGetExtension": 1, - "#undef": 7, - "PPC_SHA1": 1, - "git_hash_ctx": 7, - "SHA_CTX": 3, - "*git_hash_new_ctx": 1, - "*ctx": 5, - "git__malloc": 3, - "SHA1_Init": 4, - "git_hash_free_ctx": 1, - "git__free": 15, - "git_hash_init": 1, - "git_hash_update": 1, - "len": 30, - "SHA1_Update": 3, - "git_hash_final": 1, - "git_oid": 7, - "*out": 3, - "SHA1_Final": 3, - "out": 18, - "git_hash_buf": 1, - "git_hash_vec": 1, - "git_buf_vec": 1, - "*vec": 1, - "vec": 2, - ".data": 1, - ".len": 3, - "BLOB_H": 2, + "*1000000": 1, + "tv.tv_usec": 3, + "mstime": 5, + "/1000": 1, + "exitFromChild": 1, + "retcode": 3, + "COVERAGE_TEST": 1, + "dictVanillaFree": 1, + "*privdata": 8, + "DICT_NOTUSED": 6, + "privdata": 8, + "zfree": 2, + "dictListDestructor": 2, + "listRelease": 1, + "list*": 1, + "dictSdsKeyCompare": 6, + "*key1": 4, + "*key2": 4, + "l1": 4, + "l2": 3, + "sdslen": 14, + "sds": 13, + "key1": 5, + "key2": 5, + "dictSdsKeyCaseCompare": 2, + "strcasecmp": 13, + "dictRedisObjectDestructor": 7, + "decrRefCount": 6, + "dictSdsDestructor": 4, + "sdsfree": 2, + "dictObjKeyCompare": 2, + "robj": 7, + "*o1": 2, + "*o2": 2, + "o1": 7, + "ptr": 18, + "o2": 7, + "dictObjHash": 2, + "key": 9, + "dictGenHashFunction": 5, + "dictSdsHash": 4, + "dictSdsCaseHash": 2, + "dictGenCaseHashFunction": 1, + "dictEncObjKeyCompare": 4, + "robj*": 3, + "REDIS_ENCODING_INT": 4, + "getDecodedObject": 3, + "dictEncObjHash": 4, + "REDIS_ENCODING_RAW": 1, + "dictType": 8, + "setDictType": 1, + "zsetDictType": 1, + "dbDictType": 2, + "keyptrDictType": 2, + "commandTableDictType": 2, + "hashDictType": 1, + "keylistDictType": 4, + "clusterNodesDictType": 1, + "htNeedsResize": 3, + "dict": 11, + "*dict": 5, + "used": 10, + "dictSlots": 3, + "dictSize": 10, + "DICT_HT_INITIAL_SIZE": 2, + "used*100/size": 1, + "REDIS_HT_MINFILL": 1, + "tryResizeHashTables": 2, + "server.dbnum": 8, + "server.db": 23, + ".dict": 9, + "dictResize": 2, + ".expires": 8, + "incrementallyRehash": 2, + "dictIsRehashing": 2, + "dictRehashMilliseconds": 2, + "updateDictResizePolicy": 2, + "server.rdb_child_pid": 12, + "server.aof_child_pid": 10, + "dictEnableResize": 1, + "dictDisableResize": 1, + "activeExpireCycle": 2, + "iteration": 6, + "start": 10, + "timelimit": 5, + "*REDIS_EXPIRELOOKUPS_TIME_PERC/REDIS_HZ/100": 1, + "expired": 4, + "redisDb": 3, + "expires": 3, + "slots": 2, + "now": 5, + "num*100/slots": 1, + "REDIS_EXPIRELOOKUPS_PER_CRON": 2, + "dictEntry": 2, + "*de": 2, + "de": 12, + "dictGetRandomKey": 4, + "dictGetSignedIntegerVal": 1, + "dictGetKey": 4, + "*keyobj": 2, + "createStringObject": 11, + "propagateExpire": 2, + "keyobj": 6, + "dbDelete": 2, + "server.stat_expiredkeys": 3, + "xf": 1, + "REDIS_EXPIRELOOKUPS_PER_CRON/4": 1, + "updateLRUClock": 3, + "server.lruclock": 2, + "server.unixtime/REDIS_LRU_CLOCK_RESOLUTION": 1, + "REDIS_LRU_CLOCK_MAX": 1, + "trackOperationsPerSecond": 2, + "server.ops_sec_last_sample_time": 3, + "ops": 1, + "server.stat_numcommands": 4, + "server.ops_sec_last_sample_ops": 3, + "ops_sec": 3, + "ops*1000/t": 1, + "server.ops_sec_samples": 4, + "server.ops_sec_idx": 4, + "%": 2, + "REDIS_OPS_SEC_SAMPLES": 3, + "getOperationsPerSecond": 2, + "sum": 3, + "clientsCronHandleTimeout": 2, + "redisClient": 12, + "time_t": 4, + "server.unixtime": 10, + "server.maxidletime": 3, + "REDIS_SLAVE": 3, + "REDIS_MASTER": 2, + "REDIS_BLOCKED": 2, + "pubsub_channels": 2, + "listLength": 14, + "pubsub_patterns": 2, + "lastinteraction": 3, + "REDIS_VERBOSE": 3, + "freeClient": 1, + "bpop.timeout": 2, + "addReply": 13, + "shared.nullmultibulk": 2, + "unblockClientWaitingData": 1, + "clientsCronResizeQueryBuffer": 2, + "querybuf_size": 3, + "sdsAllocSize": 1, + "querybuf": 6, + "idletime": 2, + "REDIS_MBULK_BIG_ARG": 1, + "querybuf_size/": 1, + "querybuf_peak": 2, + "sdsavail": 1, + "sdsRemoveFreeSpace": 1, + "clientsCron": 2, + "numclients": 3, + "server.clients": 7, + "iterations": 4, + "numclients/": 1, + "REDIS_HZ*10": 1, + "listNode": 4, + "*head": 1, + "listRotate": 1, + "head": 3, + "listFirst": 2, + "listNodeValue": 3, + "run_with_period": 6, + "_ms_": 2, + "loops": 2, + "/REDIS_HZ": 2, + "serverCron": 2, + "aeEventLoop": 2, + "*eventLoop": 2, + "*clientData": 1, + "server.cronloops": 3, + "REDIS_NOTUSED": 5, + "eventLoop": 2, + "clientData": 1, + "server.watchdog_period": 3, + "watchdogScheduleSignal": 1, + "zmalloc_used_memory": 8, + "server.stat_peak_memory": 5, + "server.shutdown_asap": 3, + "prepareForShutdown": 2, + "REDIS_OK": 23, + "vkeys": 8, + "server.activerehashing": 2, + "server.slaves": 9, + "server.aof_rewrite_scheduled": 4, + "rewriteAppendOnlyFileBackground": 2, + "statloc": 5, + "wait3": 1, + "WNOHANG": 1, + "exitcode": 3, + "bysignal": 4, + "backgroundSaveDoneHandler": 1, + "backgroundRewriteDoneHandler": 1, + "server.saveparamslen": 3, + "saveparam": 1, + "*sp": 1, + "server.saveparams": 2, + "server.dirty": 3, + "sp": 4, + "changes": 2, + "server.lastsave": 3, + "seconds": 2, + "REDIS_NOTICE": 13, + "rdbSaveBackground": 1, + "server.rdb_filename": 4, + "server.aof_rewrite_perc": 3, + "server.aof_current_size": 2, + "server.aof_rewrite_min_size": 2, + "base": 1, + "server.aof_rewrite_base_size": 4, + "growth": 3, + "server.aof_current_size*100/base": 1, + "server.aof_flush_postponed_start": 2, + "flushAppendOnlyFile": 2, + "server.masterhost": 7, + "freeClientsInAsyncFreeQueue": 1, + "replicationCron": 1, + "server.cluster_enabled": 6, + "clusterCron": 1, + "beforeSleep": 2, + "*ln": 3, + "server.unblocked_clients": 4, + "ln": 8, + "redisAssert": 1, + "listDelNode": 1, + "REDIS_UNBLOCKED": 1, + "server.current_client": 3, + "processInputBuffer": 1, + "createSharedObjects": 2, + "shared.crlf": 2, + "createObject": 31, + "REDIS_STRING": 31, + "sdsnew": 27, + "shared.ok": 3, + "shared.err": 1, + "shared.emptybulk": 1, + "shared.czero": 1, + "shared.cone": 1, + "shared.cnegone": 1, + "shared.nullbulk": 1, + "shared.emptymultibulk": 1, + "shared.pong": 2, + "shared.queued": 2, + "shared.wrongtypeerr": 1, + "shared.nokeyerr": 1, + "shared.syntaxerr": 2, + "shared.sameobjecterr": 1, + "shared.outofrangeerr": 1, + "shared.noscripterr": 1, + "shared.loadingerr": 2, + "shared.slowscripterr": 2, + "shared.masterdownerr": 2, + "shared.bgsaveerr": 2, + "shared.roslaveerr": 2, + "shared.oomerr": 2, + "shared.space": 1, + "shared.colon": 1, + "shared.plus": 1, + "REDIS_SHARED_SELECT_CMDS": 1, + "shared.select": 1, + "sdscatprintf": 24, + "sdsempty": 8, + "shared.messagebulk": 1, + "shared.pmessagebulk": 1, + "shared.subscribebulk": 1, + "shared.unsubscribebulk": 1, + "shared.psubscribebulk": 1, + "shared.punsubscribebulk": 1, + "shared.del": 1, + "shared.rpop": 1, + "shared.lpop": 1, + "REDIS_SHARED_INTEGERS": 1, + "shared.integers": 2, + "void*": 135, + "REDIS_SHARED_BULKHDR_LEN": 1, + "shared.mbulkhdr": 1, + "shared.bulkhdr": 1, + "initServerConfig": 2, + "getRandomHexChars": 1, + "server.runid": 3, + "REDIS_RUN_ID_SIZE": 2, + "server.arch_bits": 3, + "server.port": 7, + "REDIS_SERVERPORT": 1, + "server.bindaddr": 2, + "server.unixsocket": 7, + "server.unixsocketperm": 2, + "server.ipfd": 9, + "server.sofd": 9, + "REDIS_DEFAULT_DBNUM": 1, + "REDIS_MAXIDLETIME": 1, + "server.client_max_querybuf_len": 1, + "REDIS_MAX_QUERYBUF_LEN": 1, + "server.loading": 4, + "server.syslog_ident": 2, + "zstrdup": 5, + "server.syslog_facility": 2, + "LOG_LOCAL0": 1, + "server.aof_state": 7, + "REDIS_AOF_OFF": 5, + "server.aof_fsync": 1, + "AOF_FSYNC_EVERYSEC": 1, + "server.aof_no_fsync_on_rewrite": 1, + "REDIS_AOF_REWRITE_PERC": 1, + "REDIS_AOF_REWRITE_MIN_SIZE": 1, + "server.aof_last_fsync": 1, + "server.aof_rewrite_time_last": 2, + "server.aof_rewrite_time_start": 2, + "server.aof_delayed_fsync": 2, + "server.aof_fd": 4, + "server.aof_selected_db": 1, + "server.pidfile": 3, + "server.aof_filename": 3, + "server.requirepass": 4, + "server.rdb_compression": 1, + "server.rdb_checksum": 1, + "server.maxclients": 6, + "REDIS_MAX_CLIENTS": 1, + "server.bpop_blocked_clients": 2, + "server.maxmemory": 6, + "server.maxmemory_policy": 11, + "REDIS_MAXMEMORY_VOLATILE_LRU": 3, + "server.maxmemory_samples": 3, + "server.hash_max_ziplist_entries": 1, + "REDIS_HASH_MAX_ZIPLIST_ENTRIES": 1, + "server.hash_max_ziplist_value": 1, + "REDIS_HASH_MAX_ZIPLIST_VALUE": 1, + "server.list_max_ziplist_entries": 1, + "REDIS_LIST_MAX_ZIPLIST_ENTRIES": 1, + "server.list_max_ziplist_value": 1, + "REDIS_LIST_MAX_ZIPLIST_VALUE": 1, + "server.set_max_intset_entries": 1, + "REDIS_SET_MAX_INTSET_ENTRIES": 1, + "server.zset_max_ziplist_entries": 1, + "REDIS_ZSET_MAX_ZIPLIST_ENTRIES": 1, + "server.zset_max_ziplist_value": 1, + "REDIS_ZSET_MAX_ZIPLIST_VALUE": 1, + "server.repl_ping_slave_period": 1, + "REDIS_REPL_PING_SLAVE_PERIOD": 1, + "server.repl_timeout": 1, + "REDIS_REPL_TIMEOUT": 1, + "server.cluster.configfile": 1, + "server.lua_caller": 1, + "server.lua_time_limit": 1, + "REDIS_LUA_TIME_LIMIT": 1, + "server.lua_client": 1, + "server.lua_timedout": 2, + "resetServerSaveParams": 2, + "appendServerSaveParams": 3, + "*60": 1, + "server.masterauth": 1, + "server.masterport": 2, + "server.master": 3, + "server.repl_state": 6, + "REDIS_REPL_NONE": 1, + "server.repl_syncio_timeout": 1, + "REDIS_REPL_SYNCIO_TIMEOUT": 1, + "server.repl_serve_stale_data": 2, + "server.repl_slave_ro": 2, + "server.repl_down_since": 2, + "server.client_obuf_limits": 9, + "REDIS_CLIENT_LIMIT_CLASS_NORMAL": 3, + ".hard_limit_bytes": 3, + ".soft_limit_bytes": 3, + ".soft_limit_seconds": 3, + "REDIS_CLIENT_LIMIT_CLASS_SLAVE": 3, + "*1024*256": 1, + "*1024*64": 1, + "REDIS_CLIENT_LIMIT_CLASS_PUBSUB": 3, + "*1024*32": 1, + "*1024*8": 1, + "/R_Zero": 2, + "R_Zero/R_Zero": 1, + "server.commands": 1, + "dictCreate": 6, + "populateCommandTable": 2, + "server.delCommand": 1, + "lookupCommandByCString": 3, + "server.multiCommand": 1, + "server.lpushCommand": 1, + "server.slowlog_log_slower_than": 1, + "REDIS_SLOWLOG_LOG_SLOWER_THAN": 1, + "server.slowlog_max_len": 1, + "REDIS_SLOWLOG_MAX_LEN": 1, + "server.assert_failed": 1, + "server.assert_file": 1, + "server.assert_line": 1, + "server.bug_report_start": 1, + "adjustOpenFilesLimit": 2, + "rlim_t": 3, + "maxfiles": 6, + "rlimit": 1, + "limit": 3, + "getrlimit": 1, + "RLIMIT_NOFILE": 2, + "oldlimit": 5, + "limit.rlim_cur": 2, + "limit.rlim_max": 1, + "setrlimit": 1, + "initServer": 2, + "signal": 2, + "SIGHUP": 1, + "SIG_IGN": 2, + "SIGPIPE": 1, + "setupSignalHandlers": 2, + "openlog": 1, + "LOG_PID": 1, + "LOG_NDELAY": 1, + "LOG_NOWAIT": 1, + "listCreate": 6, + "server.clients_to_close": 1, + "server.monitors": 2, + "server.el": 7, + "aeCreateEventLoop": 1, + "zmalloc": 2, + "*server.dbnum": 1, + "anetTcpServer": 1, + "server.neterr": 4, + "ANET_ERR": 2, + "unlink": 3, + "anetUnixServer": 1, + ".blocking_keys": 1, + ".watched_keys": 1, + ".id": 1, + "server.pubsub_channels": 2, + "server.pubsub_patterns": 4, + "listSetFreeMethod": 1, + "freePubsubPattern": 1, + "listSetMatchMethod": 1, + "listMatchPubsubPattern": 1, + "aofRewriteBufferReset": 1, + "server.aof_buf": 3, + "server.rdb_save_time_last": 2, + "server.rdb_save_time_start": 2, + "server.stat_numconnections": 2, + "server.stat_evictedkeys": 3, + "server.stat_starttime": 2, + "server.stat_keyspace_misses": 2, + "server.stat_keyspace_hits": 2, + "server.stat_fork_time": 2, + "server.stat_rejected_conn": 2, + "server.lastbgsave_status": 3, + "server.stop_writes_on_bgsave_err": 2, + "aeCreateTimeEvent": 1, + "aeCreateFileEvent": 2, + "AE_READABLE": 2, + "acceptTcpHandler": 1, + "AE_ERR": 2, + "acceptUnixHandler": 1, + "REDIS_AOF_ON": 2, + "LL*": 1, + "REDIS_MAXMEMORY_NO_EVICTION": 2, + "clusterInit": 1, + "scriptingInit": 1, + "slowlogInit": 1, + "bioInit": 1, + "numcommands": 5, + "sflags": 1, + "retval": 3, + "arity": 3, + "addReplyErrorFormat": 1, + "authenticated": 3, + "proc": 14, + "addReplyError": 6, + "getkeys_proc": 1, + "firstkey": 1, + "hashslot": 3, + "server.cluster.state": 1, + "REDIS_CLUSTER_OK": 1, + "ask": 3, + "clusterNode": 1, + "*n": 1, + "getNodeByQuery": 1, + "server.cluster.myself": 1, + "addReplySds": 3, + "ip": 4, + "freeMemoryIfNeeded": 2, + "REDIS_CMD_DENYOOM": 1, + "REDIS_ERR": 5, + "REDIS_CMD_WRITE": 2, + "REDIS_REPL_CONNECTED": 3, + "tolower": 2, + "REDIS_MULTI": 1, + "queueMultiCommand": 1, + "call": 1, + "REDIS_CALL_FULL": 1, + "save": 2, + "REDIS_SHUTDOWN_SAVE": 1, + "nosave": 2, + "REDIS_SHUTDOWN_NOSAVE": 1, + "SIGKILL": 2, + "rdbRemoveTempFile": 1, + "aof_fsync": 1, + "rdbSave": 1, + "addReplyBulk": 1, + "addReplyMultiBulkLen": 1, + "addReplyBulkLongLong": 2, + "bytesToHuman": 3, + "*s": 3, + "sprintf": 10, + "n/": 3, + "LL*1024*1024": 2, + "LL*1024*1024*1024": 1, + "genRedisInfoString": 2, + "*section": 2, + "info": 64, + "uptime": 2, + "rusage": 1, + "self_ru": 2, + "c_ru": 2, + "lol": 3, + "bib": 3, + "allsections": 12, + "defsections": 11, + "sections": 11, + "section": 14, + "getrusage": 2, + "RUSAGE_SELF": 1, + "RUSAGE_CHILDREN": 1, + "getClientsMaxBuffers": 1, + "utsname": 1, + "sdscat": 14, + "uname": 1, + "REDIS_VERSION": 4, + "redisGitSHA1": 3, + "strtol": 2, + "redisGitDirty": 3, + "name.sysname": 1, + "name.release": 1, + "name.machine": 1, + "aeGetApiName": 1, + "__GNUC_MINOR__": 2, + "__GNUC_PATCHLEVEL__": 1, + "uptime/": 1, + "*24": 1, + "hmem": 3, + "peak_hmem": 3, + "zmalloc_get_rss": 1, + "lua_gc": 1, + "server.lua": 1, + "LUA_GCCOUNT": 1, + "*1024LL": 1, + "zmalloc_get_fragmentation_ratio": 1, + "ZMALLOC_LIB": 2, + "aofRewriteBufferSize": 2, + "bioPendingJobsOfType": 1, + "REDIS_BIO_AOF_FSYNC": 1, + "perc": 3, + "eta": 4, + "elapsed": 3, + "off_t": 1, + "remaining_bytes": 1, + "server.loading_total_bytes": 3, + "server.loading_loaded_bytes": 3, + "server.loading_start_time": 2, + "elapsed*remaining_bytes": 1, + "/server.loading_loaded_bytes": 1, + "REDIS_REPL_TRANSFER": 2, + "server.repl_transfer_left": 1, + "server.repl_transfer_lastio": 1, + "slaveid": 3, + "listIter": 2, + "li": 6, + "listRewind": 2, + "listNext": 2, + "*slave": 2, + "*state": 1, + "anetPeerToString": 1, + "slave": 3, + "replstate": 1, + "REDIS_REPL_WAIT_BGSAVE_START": 1, + "REDIS_REPL_WAIT_BGSAVE_END": 1, + "REDIS_REPL_SEND_BULK": 1, + "REDIS_REPL_ONLINE": 1, + "float": 26, + "self_ru.ru_stime.tv_sec": 1, + "self_ru.ru_stime.tv_usec/1000000": 1, + "self_ru.ru_utime.tv_sec": 1, + "self_ru.ru_utime.tv_usec/1000000": 1, + "c_ru.ru_stime.tv_sec": 1, + "c_ru.ru_stime.tv_usec/1000000": 1, + "c_ru.ru_utime.tv_sec": 1, + "c_ru.ru_utime.tv_usec/1000000": 1, + "calls": 4, + "microseconds": 1, + "microseconds/c": 1, + "keys": 4, + "REDIS_MONITOR": 1, + "slaveseldb": 1, + "listAddNodeTail": 1, + "mem_used": 9, + "mem_tofree": 3, + "mem_freed": 4, + "slaves": 3, + "obuf_bytes": 3, + "getClientOutputBufferMemoryUsage": 1, + "k": 15, + "keys_freed": 3, + "bestval": 5, + "bestkey": 9, + "REDIS_MAXMEMORY_ALLKEYS_LRU": 2, + "REDIS_MAXMEMORY_ALLKEYS_RANDOM": 2, + "REDIS_MAXMEMORY_VOLATILE_RANDOM": 1, + "thiskey": 7, + "thisval": 8, + "dictFind": 1, + "dictGetVal": 2, + "estimateObjectIdleTime": 1, + "REDIS_MAXMEMORY_VOLATILE_TTL": 1, + "flushSlavesOutputBuffers": 1, + "linuxOvercommitMemoryValue": 2, + "fgets": 1, + "atoi": 3, + "linuxOvercommitMemoryWarning": 2, + "createPidFile": 2, + "daemonize": 2, + "STDIN_FILENO": 1, + "STDERR_FILENO": 2, + "version": 4, + "usage": 2, + "redisAsciiArt": 2, + "*16": 2, + "ascii_logo": 1, + "sigtermHandler": 2, + "sig": 2, + "sigaction": 6, + "act": 6, + "sigemptyset": 2, + "act.sa_mask": 2, + "act.sa_flags": 2, + "act.sa_handler": 1, + "SIGTERM": 1, + "HAVE_BACKTRACE": 1, + "SA_NODEFER": 1, + "SA_RESETHAND": 1, + "SA_SIGINFO": 1, + "act.sa_sigaction": 1, + "sigsegvHandler": 1, + "SIGSEGV": 1, + "SIGBUS": 1, + "SIGFPE": 1, + "SIGILL": 1, + "memtest": 2, + "megabytes": 1, + "passes": 1, + "zmalloc_enable_thread_safeness": 1, + "srand": 1, + "dictSetHashFunctionSeed": 1, + "*configfile": 1, + "configfile": 2, + "sdscatrepr": 1, + "loadServerConfig": 1, + "loadAppendOnlyFile": 1, + "/1000000": 2, + "rdbLoad": 1, + "aeSetBeforeSleepProc": 1, + "aeMain": 1, + "aeDeleteEventLoop": 1, + "": 1, + "": 2, + "": 2, + "rfUTF8_IsContinuationbyte": 1, + "e.t.c.": 1, + "rfFReadLine_UTF8": 5, + "FILE*": 64, + "utf8": 36, + "uint32_t*": 34, + "byteLength": 197, + "bufferSize": 6, + "eof": 53, + "bytesN": 98, + "bIndex": 5, + "RF_NEWLINE_CRLF": 1, + "newLineFound": 1, + "*bufferSize": 1, + "RF_OPTION_FGETS_READBYTESN": 5, + "RF_MALLOC": 47, + "tempBuff": 6, + "RF_LF": 10, + "buff": 95, + "RF_SUCCESS": 14, + "RE_FILE_EOF": 22, + "found": 20, + "*eofReached": 14, + "LOG_ERROR": 64, + "RF_HEXEQ_UI": 7, + "rfFgetc_UTF32BE": 3, + "else//": 14, + "undo": 5, + "peek": 5, + "ahead": 5, + "file": 6, + "pointer": 5, + "fseek": 19, + "SEEK_CUR": 19, + "rfFgets_UTF32LE": 2, + "eofReached": 4, + "rfFgetc_UTF32LE": 4, + "rfFgets_UTF16BE": 2, + "rfFgetc_UTF16BE": 4, + "rfFgets_UTF16LE": 2, + "rfFgetc_UTF16LE": 4, + "rfFgets_UTF8": 2, + "rfFgetc_UTF8": 3, + "RF_HEXEQ_C": 9, + "fgetc": 9, + "check": 8, + "RE_FILE_READ": 2, + "cp": 12, + "c2": 13, + "c3": 9, + "c4": 5, + "i_READ_CHECK": 20, + "///": 4, + "success": 4, + "cc": 24, + "we": 10, + "more": 2, + "bytes": 225, + "xC0": 3, + "xC1": 1, + "RE_UTF8_INVALID_SEQUENCE_INVALID_BYTE": 6, + "RE_UTF8_INVALID_SEQUENCE_END": 6, + "rfUTF8_IsContinuationByte": 12, + "RE_UTF8_INVALID_SEQUENCE_CONBYTE": 6, + "decoded": 3, + "codepoint": 47, + "F": 38, + "xE0": 2, + "xF": 5, + "decode": 6, + "xF0": 2, + "RF_HEXGE_C": 1, + "xBF": 2, + "//invalid": 1, + "byte": 6, + "are": 6, + "xFF": 1, + "//if": 1, + "needing": 1, + "than": 5, + "swapE": 21, + "v1": 38, + "v2": 26, + "rfUTILS_Endianess": 24, + "RF_LITTLE_ENDIAN": 23, + "fread": 12, + "endianess": 40, + "needed": 10, + "rfUTILS_SwapEndianUS": 10, + "RF_HEXGE_US": 4, + "xD800": 8, + "RF_HEXLE_US": 4, + "xDFFF": 8, + "RF_HEXL_US": 8, + "RF_HEXG_US": 8, + "xDBFF": 4, + "RE_UTF16_INVALID_SEQUENCE": 20, + "RE_UTF16_NO_SURRPAIR": 2, + "xDC00": 4, + "user": 2, + "wants": 2, + "ff": 10, + "uint16_t*": 11, + "surrogate": 4, + "pair": 4, + "existence": 2, + "RF_BIG_ENDIAN": 10, + "rfUTILS_SwapEndianUI": 11, + "rfFback_UTF32BE": 2, + "i_FSEEK_CHECK": 14, + "rfFback_UTF32LE": 2, + "rfFback_UTF16BE": 2, + "rfFback_UTF16LE": 2, + "rfFback_UTF8": 2, + "depending": 1, + "number": 19, + "read": 1, + "backwards": 1, + "RE_UTF8_INVALID_SEQUENCE": 2, + "REFU_IO_H": 2, + "": 2, + "opening": 2, + "bracket": 4, + "calling": 4, + "C": 14, + "xA": 1, + "RF_CR": 1, + "xD": 1, + "REFU_WIN32_VERSION": 1, + "i_PLUSB_WIN32": 2, + "foff_rft": 2, + "off64_t": 1, + "///Fseek": 1, + "and": 15, + "Ftelll": 1, + "definitions": 1, + "rfFseek": 2, + "i_FILE_": 16, + "i_OFFSET_": 4, + "i_WHENCE_": 4, + "_fseeki64": 1, + "rfFtell": 2, + "_ftelli64": 1, + "fseeko64": 1, + "ftello64": 1, + "i_DECLIMEX_": 121, + "rfFReadLine_UTF16BE": 6, + "rfFReadLine_UTF16LE": 4, + "rfFReadLine_UTF32BE": 1, + "rfFReadLine_UTF32LE": 4, + "rfFgets_UTF32BE": 1, + "RF_IAMHERE_FOR_DOXYGEN": 22, + "rfPopen": 2, + "command": 2, + "i_rfPopen": 2, + "i_CMD_": 2, + "i_MODE_": 2, + "i_rfLMS_WRAP2": 5, + "rfPclose": 1, + "stream": 3, + "///closing": 1, + "#endif//include": 1, + "guards": 2, + "": 1, + "": 2, + "local": 5, + "stack": 6, + "memory": 4, + "RF_OPTION_DEFAULT_ARGUMENTS": 24, + "RF_String*": 222, + "rfString_Create": 4, + "i_rfString_Create": 3, + "READ_VSNPRINTF_ARGS": 5, + "rfUTF8_VerifySequence": 7, + "RF_FAILURE": 24, + "RE_STRING_INIT_FAILURE": 8, + "buffAllocated": 11, + "RF_String": 27, + "i_NVrfString_Create": 3, + "i_rfString_CreateLocal1": 3, + "RF_OPTION_SOURCE_ENCODING": 30, + "RF_UTF8": 8, + "characterLength": 16, + "*codepoints": 2, + "rfLMS_MacroEvalPtr": 2, + "RF_LMS": 6, + "RF_UTF16_LE": 9, + "RF_UTF16_BE": 7, + "codepoints": 44, + "i/2": 2, + "#elif": 14, + "RF_UTF32_LE": 3, + "RF_UTF32_BE": 3, + "UTF16": 4, + "rfUTF16_Decode": 5, + "rfUTF16_Decode_swap": 5, + "RF_UTF16_BE//": 2, + "RF_UTF32_LE//": 2, + "copy": 4, + "UTF32": 4, + "into": 8, + "RF_UTF32_BE//": 2, + "": 2, + "any": 3, + "other": 16, + "UTF": 17, + "8": 15, + "encode": 2, + "them": 3, + "rfUTF8_Encode": 4, + "While": 2, + "attempting": 2, + "create": 2, + "temporary": 4, + "given": 5, + "sequence": 6, + "could": 2, + "not": 6, + "be": 6, + "properly": 2, + "encoded": 2, + "RE_UTF8_ENCODING": 2, + "End": 2, + "Non": 2, + "code=": 2, + "normally": 1, + "since": 5, + "here": 5, + "have": 2, + "validity": 2, + "get": 4, + "Error": 2, + "at": 3, + "String": 11, + "Allocation": 2, + "due": 2, + "invalid": 2, + "rfLMS_Push": 4, + "Memory": 4, + "allocation": 3, + "Local": 2, + "Stack": 2, + "failed": 2, + "Insufficient": 2, + "space": 4, + "Consider": 2, + "compiling": 2, + "library": 3, + "with": 9, + "bigger": 3, + "Quitting": 2, + "proccess": 2, + "RE_LOCALMEMSTACK_INSUFFICIENT": 8, + "i_NVrfString_CreateLocal": 3, + "during": 1, + "rfString_Init": 3, + "i_rfString_Init": 3, + "i_NVrfString_Init": 3, + "rfString_Create_cp": 2, + "rfString_Init_cp": 3, + "RF_HEXLE_UI": 8, + "RF_HEXGE_UI": 6, + "C0": 3, + "ffff": 4, + "xFC0": 4, + "xF000": 2, + "xE": 2, + "F000": 2, + "C0000": 2, + "E": 11, + "RE_UTF8_INVALID_CODE_POINT": 2, + "rfString_Create_i": 2, + "numLen": 8, + "max": 4, + "is": 17, + "most": 3, + "environment": 3, + "so": 4, + "chars": 3, + "will": 3, + "certainly": 3, + "fit": 3, + "it": 12, + "strcpy": 4, + "rfString_Init_i": 2, + "rfString_Create_f": 2, + "rfString_Init_f": 2, + "rfString_Create_UTF16": 2, + "rfString_Init_UTF16": 3, + "utf8ByteLength": 34, + "last": 1, + "utf": 1, + "null": 4, + "termination": 3, + "byteLength*2": 1, + "allocate": 1, + "same": 1, + "as": 4, + "different": 1, + "RE_INPUT": 1, + "ends": 3, + "rfString_Create_UTF32": 2, + "rfString_Init_UTF32": 3, + "codeBuffer": 9, + "xFEFF": 1, + "big": 14, + "endian": 20, + "xFFFE0000": 1, + "little": 7, + "according": 1, + "standard": 1, + "no": 4, + "BOM": 1, + "means": 1, + "rfUTF32_Length": 1, + "i_rfString_Assign": 3, + "dest": 7, + "sourceP": 2, + "source": 8, + "RF_REALLOC": 9, + "rfString_Assign_char": 2, + "<5)>": 1, + "rfString_Create_nc": 3, + "i_rfString_Create_nc": 3, + "bytesWritten": 2, + "i_NVrfString_Create_nc": 3, + "rfString_Init_nc": 4, + "i_rfString_Init_nc": 3, + "i_NVrfString_Init_nc": 3, + "rfString_Destroy": 2, + "rfString_Deinit": 3, + "rfString_ToUTF16": 4, + "charsN": 5, + "rfUTF8_Decode": 2, + "rfUTF16_Encode": 1, + "rfString_ToUTF32": 4, + "rfString_Length": 5, + "RF_STRING_ITERATE_START": 9, + "RF_STRING_ITERATE_END": 9, + "rfString_GetChar": 2, + "thisstr": 210, + "codePoint": 18, + "RF_STRING_INDEX_OUT_OF_BOUNDS": 2, + "rfString_BytePosToCodePoint": 7, + "rfString_BytePosToCharPos": 4, + "thisstrP": 32, + "bytepos": 12, + "before": 4, + "charPos": 8, + "byteI": 7, + "i_rfString_Equal": 3, + "s1P": 2, + "s2P": 2, + "i_rfString_Find": 5, + "sstrP": 6, + "optionsP": 11, + "sstr": 39, + "*optionsP": 8, + "RF_BITFLAG_ON": 5, + "RF_CASE_IGNORE": 2, + "strstr": 2, + "RF_MATCH_WORD": 5, + "exact": 6, + "": 1, + "0x5a": 1, + "0x7a": 1, + "substring": 5, + "search": 1, + "zero": 2, + "equals": 1, + "then": 1, + "okay": 1, + "rfString_Equal": 4, + "RFS_": 8, + "ERANGE": 1, + "RE_STRING_TOFLOAT_UNDERFLOW": 1, + "RE_STRING_TOFLOAT": 1, + "rfString_Copy_OUT": 2, + "srcP": 6, + "rfString_Copy_IN": 2, + "dst": 15, + "rfString_Copy_chars": 2, + "bytePos": 23, + "terminate": 1, + "i_rfString_ScanfAfter": 3, + "afterstrP": 2, + "format": 4, + "afterstr": 5, + "sscanf": 1, + "<=0)>": 1, + "Counts": 1, + "how": 1, + "many": 1, + "times": 1, + "occurs": 1, + "inside": 2, + "i_rfString_Count": 5, + "sstr2": 2, + "move": 12, + "rfString_FindBytePos": 10, + "rfString_Tokenize": 2, + "sep": 3, + "tokensN": 2, + "RF_String**": 2, + "*tokensN": 1, + "rfString_Count": 4, + "lstr": 6, + "lstrP": 1, + "rstr": 24, + "rstrP": 5, + "rfString_After": 4, + "rfString_Beforev": 4, + "parNP": 6, + "i_rfString_Beforev": 16, + "parN": 10, + "*parNP": 2, + "minPos": 17, + "thisPos": 8, + "argList": 8, + "va_arg": 2, + "i_rfString_Before": 5, + "i_rfString_After": 5, + "afterP": 2, + "after": 6, + "rfString_Afterv": 4, + "i_rfString_Afterv": 16, + "minPosLength": 3, + "go": 8, + "i_rfString_Append": 3, + "otherP": 4, + "strncat": 1, + "rfString_Append_i": 2, + "rfString_Append_f": 2, + "i_rfString_Prepend": 3, + "goes": 1, + "i_rfString_Remove": 6, + "numberP": 1, + "*numberP": 1, + "occurences": 5, + "done": 1, + "<=thisstr->": 1, + "i_rfString_KeepOnly": 3, + "keepstrP": 2, + "keepLength": 2, + "charValue": 12, + "*keepChars": 1, + "keepstr": 5, + "exists": 6, + "charBLength": 5, + "keepChars": 4, + "*keepLength": 1, + "rfString_Iterate_Start": 6, + "rfString_Iterate_End": 4, + "": 1, + "does": 1, + "exist": 2, + "back": 1, + "cover": 1, + "that": 9, + "effectively": 1, + "gets": 1, + "deleted": 1, + "rfUTF8_FromCodepoint": 1, + "this": 5, + "kind": 1, + "non": 1, + "clean": 1, + "way": 1, + "macro": 2, + "internally": 1, + "uses": 1, + "byteIndex_": 12, + "variable": 1, + "use": 1, + "determine": 1, + "backs": 1, + "by": 1, + "contiuing": 1, + "make": 3, + "sure": 2, + "position": 1, + "won": 1, + "array": 1, + "rfString_PruneStart": 2, + "nBytePos": 23, + "rfString_PruneEnd": 2, + "RF_STRING_ITERATEB_START": 2, + "RF_STRING_ITERATEB_END": 2, + "rfString_PruneMiddleB": 2, + "pBytePos": 15, + "indexing": 1, + "works": 1, + "pbytePos": 2, + "pth": 2, + "include": 6, + "rfString_PruneMiddleF": 2, + "got": 1, + "all": 2, + "i_rfString_Replace": 6, + "numP": 1, + "*numP": 1, + "RF_StringX": 2, + "just": 1, + "finding": 1, + "foundN": 10, + "bSize": 4, + "bytePositions": 17, + "bSize*sizeof": 1, + "rfStringX_FromString_IN": 1, + "temp.bIndex": 2, + "temp.bytes": 1, + "temp.byteLength": 1, + "rfStringX_Deinit": 1, + "replace": 3, + "removed": 2, + "one": 2, + "orSize": 5, + "nSize": 4, + "number*diff": 1, + "strncpy": 3, + "smaller": 1, + "diff*number": 1, + "remove": 1, + "equal": 1, + "i_rfString_StripStart": 3, + "subP": 7, + "RF_String*sub": 2, + "noMatch": 8, + "*subValues": 2, + "subLength": 6, + "subValues": 8, + "*subLength": 2, + "i_rfString_StripEnd": 3, + "lastBytePos": 4, + "testity": 2, + "i_rfString_Strip": 3, + "res1": 2, + "rfString_StripStart": 3, + "res2": 2, + "rfString_StripEnd": 3, + "rfString_Create_fUTF8": 2, + "rfString_Init_fUTF8": 3, + "unused": 3, + "rfString_Assign_fUTF8": 2, + "FILE*f": 2, + "utf8BufferSize": 4, + "function": 6, + "rfString_Append_fUTF8": 2, + "rfString_Append": 5, + "rfString_Create_fUTF16": 2, + "rfString_Init_fUTF16": 3, + "rfString_Assign_fUTF16": 2, + "rfString_Append_fUTF16": 2, + "char*utf8": 3, + "rfString_Create_fUTF32": 2, + "rfString_Init_fUTF32": 3, + "<0)>": 1, + "Failure": 1, + "initialize": 1, + "reading": 1, + "Little": 1, + "Endian": 1, + "32": 1, + "bytesN=": 1, + "rfString_Assign_fUTF32": 2, + "rfString_Append_fUTF32": 2, + "i_rfString_Fwrite": 5, + "sP": 2, + "encodingP": 1, + "*utf32": 1, + "utf16": 11, + "*encodingP": 1, + "fwrite": 5, + "logging": 5, + "utf32": 10, + "i_WRITE_CHECK": 1, + "RE_FILE_WRITE": 1, + "REFU_USTRING_H": 2, + "": 1, + "RF_MODULE_STRINGS//": 1, + "included": 2, + "module": 3, + "": 1, + "argument": 1, + "wrapping": 1, + "functionality": 1, + "": 1, + "unicode": 2, + "xFF0FFFF": 1, + "rfUTF8_IsContinuationByte2": 1, + "b__": 3, + "0xBF": 1, + "pragma": 1, + "pack": 2, + "push": 1, + "internal": 4, + "author": 1, + "Lefteris": 1, + "09": 1, + "12": 1, + "2010": 1, + "endinternal": 1, + "brief": 1, + "A": 11, + "representation": 2, + "The": 1, + "Refu": 2, + "Unicode": 1, + "has": 2, + "two": 1, + "versions": 1, + "One": 1, + "ref": 1, + "what": 1, + "operations": 1, + "can": 2, + "performed": 1, + "extended": 3, + "Strings": 2, + "Functions": 1, + "convert": 1, + "but": 1, + "always": 2, + "Once": 1, + "been": 1, + "created": 1, + "assumed": 1, + "valid": 1, + "every": 1, + "performs": 1, + "unless": 1, + "otherwise": 1, + "specified": 1, + "All": 1, + "functions": 2, + "which": 1, + "isinherited": 1, + "StringX": 2, + "their": 1, + "description": 1, + "safely": 1, + "specific": 1, + "or": 1, + "needs": 1, + "manipulate": 1, + "Extended": 1, + "To": 1, + "documentation": 1, + "even": 1, + "clearer": 1, + "should": 2, + "marked": 1, + "notinherited": 1, + "cppcode": 1, + "constructor": 1, + "i_StringCHandle": 1, + "@endcpp": 1, + "@endinternal": 1, + "*/": 1, + "#pragma": 1, + "pop": 1, + "i_rfString_CreateLocal": 2, + "__VA_ARGS__": 66, + "RP_SELECT_FUNC_IF_NARGIS": 5, + "i_SELECT_RF_STRING_CREATE": 1, + "i_SELECT_RF_STRING_CREATE1": 1, + "i_SELECT_RF_STRING_CREATE0": 1, + "///Internal": 1, + "creates": 1, + "i_SELECT_RF_STRING_CREATELOCAL": 1, + "i_SELECT_RF_STRING_CREATELOCAL1": 1, + "i_SELECT_RF_STRING_CREATELOCAL0": 1, + "i_SELECT_RF_STRING_INIT": 1, + "i_SELECT_RF_STRING_INIT1": 1, + "i_SELECT_RF_STRING_INIT0": 1, + "code": 6, + "i_SELECT_RF_STRING_CREATE_NC": 1, + "i_SELECT_RF_STRING_CREATE_NC1": 1, + "i_SELECT_RF_STRING_CREATE_NC0": 1, + "i_SELECT_RF_STRING_INIT_NC": 1, + "i_SELECT_RF_STRING_INIT_NC1": 1, + "i_SELECT_RF_STRING_INIT_NC0": 1, + "//@": 1, + "rfString_Assign": 2, + "i_DESTINATION_": 2, + "i_SOURCE_": 2, + "rfString_ToUTF8": 2, + "i_STRING_": 2, + "rfString_ToCstr": 2, + "uint32_t*length": 1, + "string_": 9, + "startCharacterPos_": 4, + "characterUnicodeValue_": 4, + "j_": 6, + "//Two": 1, + "macros": 1, + "accomplish": 1, + "going": 1, + "backwards.": 1, + "This": 1, + "its": 1, + "pair.": 1, + "rfString_IterateB_Start": 1, + "characterPos_": 5, + "b_index_": 6, + "c_index_": 3, + "rfString_IterateB_End": 1, + "i_STRING1_": 2, + "i_STRING2_": 2, + "i_rfLMSX_WRAP2": 4, + "rfString_Find": 3, + "i_THISSTR_": 60, + "i_SEARCHSTR_": 26, + "i_OPTIONS_": 28, + "i_rfLMS_WRAP3": 4, + "i_RFI8_": 54, + "RF_SELECT_FUNC_IF_NARGGT": 10, + "i_NPSELECT_RF_STRING_FIND": 1, + "i_NPSELECT_RF_STRING_FIND1": 1, + "RF_COMPILE_ERROR": 33, + "i_NPSELECT_RF_STRING_FIND0": 1, + "RF_SELECT_FUNC": 10, + "i_SELECT_RF_STRING_FIND": 1, + "i_SELECT_RF_STRING_FIND2": 1, + "i_SELECT_RF_STRING_FIND3": 1, + "i_SELECT_RF_STRING_FIND1": 1, + "i_SELECT_RF_STRING_FIND0": 1, + "rfString_ToInt": 1, + "int32_t*": 1, + "rfString_ToDouble": 1, + "double*": 1, + "rfString_ScanfAfter": 2, + "i_AFTERSTR_": 8, + "i_FORMAT_": 2, + "i_VAR_": 2, + "i_rfLMSX_WRAP4": 11, + "i_NPSELECT_RF_STRING_COUNT": 1, + "i_NPSELECT_RF_STRING_COUNT1": 1, + "i_NPSELECT_RF_STRING_COUNT0": 1, + "i_SELECT_RF_STRING_COUNT": 1, + "i_SELECT_RF_STRING_COUNT2": 1, + "i_rfLMSX_WRAP3": 5, + "i_SELECT_RF_STRING_COUNT3": 1, + "i_SELECT_RF_STRING_COUNT1": 1, + "i_SELECT_RF_STRING_COUNT0": 1, + "rfString_Between": 3, + "i_rfString_Between": 4, + "i_NPSELECT_RF_STRING_BETWEEN": 1, + "i_NPSELECT_RF_STRING_BETWEEN1": 1, + "i_NPSELECT_RF_STRING_BETWEEN0": 1, + "i_SELECT_RF_STRING_BETWEEN": 1, + "i_SELECT_RF_STRING_BETWEEN4": 1, + "i_LEFTSTR_": 6, + "i_RIGHTSTR_": 6, + "i_RESULT_": 12, + "i_rfLMSX_WRAP5": 9, + "i_SELECT_RF_STRING_BETWEEN5": 1, + "i_SELECT_RF_STRING_BETWEEN3": 1, + "i_SELECT_RF_STRING_BETWEEN2": 1, + "i_SELECT_RF_STRING_BETWEEN1": 1, + "i_SELECT_RF_STRING_BETWEEN0": 1, + "i_NPSELECT_RF_STRING_BEFOREV": 1, + "i_NPSELECT_RF_STRING_BEFOREV1": 1, + "RF_SELECT_FUNC_IF_NARGGT2": 2, + "i_LIMSELECT_RF_STRING_BEFOREV": 1, + "i_NPSELECT_RF_STRING_BEFOREV0": 1, + "i_LIMSELECT_RF_STRING_BEFOREV1": 1, + "i_LIMSELECT_RF_STRING_BEFOREV0": 1, + "i_SELECT_RF_STRING_BEFOREV": 1, + "i_SELECT_RF_STRING_BEFOREV5": 1, + "i_ARG1_": 56, + "i_ARG2_": 56, + "i_ARG3_": 56, + "i_ARG4_": 56, + "i_RFUI8_": 28, + "i_SELECT_RF_STRING_BEFOREV6": 1, + "i_rfLMSX_WRAP6": 2, + "i_SELECT_RF_STRING_BEFOREV7": 1, + "i_rfLMSX_WRAP7": 2, + "i_SELECT_RF_STRING_BEFOREV8": 1, + "i_rfLMSX_WRAP8": 2, + "i_SELECT_RF_STRING_BEFOREV9": 1, + "i_rfLMSX_WRAP9": 2, + "i_SELECT_RF_STRING_BEFOREV10": 1, + "i_rfLMSX_WRAP10": 2, + "i_SELECT_RF_STRING_BEFOREV11": 1, + "i_rfLMSX_WRAP11": 2, + "i_SELECT_RF_STRING_BEFOREV12": 1, + "i_rfLMSX_WRAP12": 2, + "i_SELECT_RF_STRING_BEFOREV13": 1, + "i_rfLMSX_WRAP13": 2, + "i_SELECT_RF_STRING_BEFOREV14": 1, + "i_rfLMSX_WRAP14": 2, + "i_SELECT_RF_STRING_BEFOREV15": 1, + "i_rfLMSX_WRAP15": 2, + "i_SELECT_RF_STRING_BEFOREV16": 1, + "i_rfLMSX_WRAP16": 2, + "i_SELECT_RF_STRING_BEFOREV17": 1, + "i_rfLMSX_WRAP17": 2, + "i_SELECT_RF_STRING_BEFOREV18": 1, + "i_rfLMSX_WRAP18": 2, + "rfString_Before": 3, + "i_NPSELECT_RF_STRING_BEFORE": 1, + "i_NPSELECT_RF_STRING_BEFORE1": 1, + "i_NPSELECT_RF_STRING_BEFORE0": 1, + "i_SELECT_RF_STRING_BEFORE": 1, + "i_SELECT_RF_STRING_BEFORE3": 1, + "i_SELECT_RF_STRING_BEFORE4": 1, + "i_SELECT_RF_STRING_BEFORE2": 1, + "i_SELECT_RF_STRING_BEFORE1": 1, + "i_SELECT_RF_STRING_BEFORE0": 1, + "i_NPSELECT_RF_STRING_AFTER": 1, + "i_NPSELECT_RF_STRING_AFTER1": 1, + "i_NPSELECT_RF_STRING_AFTER0": 1, + "i_SELECT_RF_STRING_AFTER": 1, + "i_SELECT_RF_STRING_AFTER3": 1, + "i_OUTSTR_": 6, + "i_SELECT_RF_STRING_AFTER4": 1, + "i_SELECT_RF_STRING_AFTER2": 1, + "i_SELECT_RF_STRING_AFTER1": 1, + "i_SELECT_RF_STRING_AFTER0": 1, + "i_NPSELECT_RF_STRING_AFTERV": 1, + "i_NPSELECT_RF_STRING_AFTERV1": 1, + "i_LIMSELECT_RF_STRING_AFTERV": 1, + "i_NPSELECT_RF_STRING_AFTERV0": 1, + "i_LIMSELECT_RF_STRING_AFTERV1": 1, + "i_LIMSELECT_RF_STRING_AFTERV0": 1, + "i_SELECT_RF_STRING_AFTERV": 1, + "i_SELECT_RF_STRING_AFTERV5": 1, + "i_SELECT_RF_STRING_AFTERV6": 1, + "i_SELECT_RF_STRING_AFTERV7": 1, + "i_SELECT_RF_STRING_AFTERV8": 1, + "i_SELECT_RF_STRING_AFTERV9": 1, + "i_SELECT_RF_STRING_AFTERV10": 1, + "i_SELECT_RF_STRING_AFTERV11": 1, + "i_SELECT_RF_STRING_AFTERV12": 1, + "i_SELECT_RF_STRING_AFTERV13": 1, + "i_SELECT_RF_STRING_AFTERV14": 1, + "i_SELECT_RF_STRING_AFTERV15": 1, + "i_SELECT_RF_STRING_AFTERV16": 1, + "i_SELECT_RF_STRING_AFTERV17": 1, + "i_SELECT_RF_STRING_AFTERV18": 1, + "i_OTHERSTR_": 4, + "rfString_Prepend": 2, + "rfString_Remove": 3, + "i_NPSELECT_RF_STRING_REMOVE": 1, + "i_NPSELECT_RF_STRING_REMOVE1": 1, + "i_NPSELECT_RF_STRING_REMOVE0": 1, + "i_SELECT_RF_STRING_REMOVE": 1, + "i_SELECT_RF_STRING_REMOVE2": 1, + "i_REPSTR_": 16, + "i_RFUI32_": 8, + "i_SELECT_RF_STRING_REMOVE3": 1, + "i_NUMBER_": 12, + "i_SELECT_RF_STRING_REMOVE4": 1, + "i_SELECT_RF_STRING_REMOVE1": 1, + "i_SELECT_RF_STRING_REMOVE0": 1, + "rfString_KeepOnly": 2, + "I_KEEPSTR_": 2, + "rfString_Replace": 3, + "i_NPSELECT_RF_STRING_REPLACE": 1, + "i_NPSELECT_RF_STRING_REPLACE1": 1, + "i_NPSELECT_RF_STRING_REPLACE0": 1, + "i_SELECT_RF_STRING_REPLACE": 1, + "i_SELECT_RF_STRING_REPLACE3": 1, + "i_SELECT_RF_STRING_REPLACE4": 1, + "i_SELECT_RF_STRING_REPLACE5": 1, + "i_SELECT_RF_STRING_REPLACE2": 1, + "i_SELECT_RF_STRING_REPLACE1": 1, + "i_SELECT_RF_STRING_REPLACE0": 1, + "i_SUBSTR_": 6, + "rfString_Strip": 2, + "rfString_Fwrite": 2, + "i_NPSELECT_RF_STRING_FWRITE": 1, + "i_NPSELECT_RF_STRING_FWRITE1": 1, + "i_NPSELECT_RF_STRING_FWRITE0": 1, + "i_SELECT_RF_STRING_FWRITE": 1, + "i_SELECT_RF_STRING_FWRITE3": 1, + "i_STR_": 8, + "i_ENCODING_": 4, + "i_SELECT_RF_STRING_FWRITE2": 1, + "i_SELECT_RF_STRING_FWRITE1": 1, + "i_SELECT_RF_STRING_FWRITE0": 1, + "rfString_Fwrite_fUTF8": 1, + "closing": 1, + "#error": 4, + "Attempted": 1, + "manipulation": 1, + "flag": 1, + "off.": 1, + "Rebuild": 1, + "added": 1, + "you": 1, + "#endif//": 1, "PY_SSIZE_T_CLEAN": 1, "Py_PYTHON_H": 1, "Python": 2, @@ -6164,14 +7957,11 @@ "please": 1, "install": 1, "development": 1, - "version": 4, "Python.": 1, - "#elif": 14, "PY_VERSION_HEX": 11, "Cython": 1, "requires": 1, ".": 1, - "": 2, "offsetof": 2, "member": 2, "type*": 1, @@ -6181,7 +7971,6 @@ "__cdecl": 2, "__fastcall": 2, "DL_IMPORT": 2, - "t": 32, "DL_EXPORT": 2, "PY_LONG_LONG": 5, "LONG_LONG": 1, @@ -6198,10 +7987,8 @@ "PY_FORMAT_SIZE_T": 1, "CYTHON_FORMAT_SSIZE_T": 2, "PyInt_FromSsize_t": 6, - "z": 47, "PyInt_FromLong": 3, "PyInt_AsSsize_t": 3, - "o": 80, "__Pyx_PyInt_AsInt": 2, "PyNumber_Index": 1, "PyNumber_Check": 2, @@ -6217,7 +8004,6 @@ "PyIndex_Check": 2, "PyErr_WarnEx": 1, "category": 2, - "message": 3, "stacklevel": 1, "PyErr_Warn": 1, "__PYX_BUILD_PY_SSIZE_T": 2, @@ -6234,7 +8020,6 @@ "itemsize": 1, "readonly": 1, "ndim": 2, - "*format": 2, "*shape": 1, "*strides": 1, "*suboffsets": 1, @@ -6254,10 +8039,7 @@ "PY_MAJOR_VERSION": 13, "__Pyx_BUILTIN_MODULE_NAME": 2, "__Pyx_PyCode_New": 2, - "k": 15, "l": 7, - "code": 6, - "v": 11, "fv": 4, "cell": 4, "fline": 4, @@ -6273,16 +8055,13 @@ "CYTHON_PEP393_ENABLED": 2, "__Pyx_PyUnicode_READY": 2, "op": 8, - "likely": 22, "PyUnicode_IS_READY": 1, "_PyUnicode_Ready": 1, "__Pyx_PyUnicode_GET_LENGTH": 2, - "u": 18, "PyUnicode_GET_LENGTH": 1, "__Pyx_PyUnicode_READ_CHAR": 2, "PyUnicode_READ_CHAR": 1, "__Pyx_PyUnicode_READ": 2, - "d": 16, "PyUnicode_READ": 1, "PyUnicode_GET_SIZE": 1, "Py_UCS4": 2, @@ -6368,13 +8147,11 @@ "PySequence_SetSlice": 2, "__Pyx_PySequence_DelSlice": 2, "PySequence_DelSlice": 2, - "unlikely": 54, "PyErr_SetString": 3, "PyExc_SystemError": 3, "tp_as_mapping": 3, "PyMethod_New": 2, "func": 3, - "self": 9, "klass": 1, "PyInstanceMethod_New": 1, "__Pyx_GetAttrString": 2, @@ -6386,6 +8163,7 @@ "__Pyx_NAMESTR": 2, "__Pyx_DOCSTR": 2, "__Pyx_PyNumber_Divide": 2, + "y": 14, "PyNumber_TrueDivide": 1, "__Pyx_PyNumber_InPlaceDivide": 2, "PyNumber_InPlaceTrueDivide": 1, @@ -6393,7 +8171,6 @@ "PyNumber_InPlaceDivide": 1, "__PYX_EXTERN_C": 3, "_USE_MATH_DEFINES": 1, - "": 3, "__PYX_HAVE__sklearn__linear_model__sgd_fast": 1, "__PYX_HAVE_API__sklearn__linear_model__sgd_fast": 1, "_OPENMP": 1, @@ -6401,17 +8178,12 @@ "PYREX_WITHOUT_ASSERTIONS": 1, "CYTHON_WITHOUT_ASSERTIONS": 1, "CYTHON_INLINE": 65, - "__GNUC__": 8, "__inline__": 1, - "_MSC_VER": 5, "__inline": 1, "__STDC_VERSION__": 2, "L": 1, - "inline": 3, "CYTHON_UNUSED": 14, "**p": 1, - "*s": 3, - "encoding": 14, "is_unicode": 1, "is_str": 1, "intern": 1, @@ -6434,7 +8206,6 @@ "PyFloat_AS_DOUBLE": 1, "PyFloat_AsDouble": 2, "__pyx_PyFloat_AsFloat": 1, - "__GNUC_MINOR__": 2, "__builtin_expect": 2, "*__pyx_m": 1, "*__pyx_b": 1, @@ -6470,7 +8241,6 @@ "__Pyx_BufFmt_StackElem": 1, "root": 1, "__Pyx_BufFmt_StackElem*": 2, - "head": 3, "fmt_offset": 1, "new_count": 1, "enc_count": 1, @@ -6532,7 +8302,6 @@ "_Complex": 2, "real": 2, "imag": 2, - "double": 126, "__pyx_t_double_complex": 27, "__pyx_obj_7sklearn_12linear_model_8sgd_fast_LossFunction": 15, "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Regression": 11, @@ -6578,7 +8347,6 @@ "threshold": 2, "n_features": 2, "__pyx_vtabstruct_7sklearn_5utils_13weight_vector_WeightVector": 3, - "*w": 2, "*w_data_ptr": 1, "wscale": 1, "sq_norm": 1, @@ -6614,7 +8382,6 @@ "__pyx_refnanny": 8, "__Pyx_RefNanny": 8, "SetupContext": 3, - "__LINE__": 50, "PyGILState_Release": 1, "__Pyx_RefNannyFinishContext": 14, "FinishContext": 1, @@ -6636,7 +8403,6 @@ "__Pyx_CLEAR": 1, "__Pyx_XCLEAR": 1, "*__Pyx_GetName": 1, - "*dict": 5, "__Pyx_ErrRestore": 1, "*type": 4, "*tb": 2, @@ -6648,7 +8414,6 @@ "*cause": 1, "__Pyx_RaiseArgtupleInvalid": 7, "func_name": 2, - "exact": 6, "num_min": 1, "num_max": 1, "num_found": 1, @@ -6668,13 +8433,10 @@ "dtype": 1, "nd": 1, "cast": 1, - "stack": 6, "__Pyx_SafeReleaseBuffer": 1, - "info": 64, "__Pyx_TypeTest": 1, "__Pyx_RaiseBufferFallbackError": 1, "*__Pyx_GetItemInt_Generic": 1, - "*o": 8, "*r": 7, "PyObject_GetItem": 1, "__Pyx_GetItemInt_List": 1, @@ -6697,14 +8459,12 @@ "PySequenceMethods": 1, "*m": 1, "tp_as_sequence": 1, - "m": 8, "sq_item": 2, "sq_length": 2, "PySequence_Check": 1, "__Pyx_RaiseTooManyValuesError": 1, "expected": 2, "__Pyx_RaiseNeedMoreValuesError": 1, - "index": 58, "__Pyx_RaiseNoneNotIterableError": 1, "__Pyx_IterFinish": 1, "__Pyx_IternextUnpackEndCheck": 1, @@ -6713,7 +8473,6 @@ "strides": 1, "suboffsets": 1, "__Pyx_Buf_DimInfo": 2, - "refcount": 2, "pybuffer": 1, "__Pyx_Buffer": 2, "*rcbuffer": 1, @@ -6728,13 +8487,11 @@ "__Pyx_minusones": 1, "*__Pyx_Import": 1, "*from_list": 1, - "level": 12, "__Pyx_RaiseImportError": 1, "__Pyx_Print": 1, "__pyx_print": 1, "__pyx_print_kwargs": 1, "__Pyx_PrintOne": 1, - "stream": 3, "__Pyx_CREAL": 4, ".real": 3, "__Pyx_CIMAG": 4, @@ -6774,7 +8531,6 @@ "cabs": 1, "cpow": 1, "__Pyx_PyInt_AsUnsignedChar": 1, - "short": 6, "__Pyx_PyInt_AsUnsignedShort": 1, "__Pyx_PyInt_AsUnsignedInt": 1, "__Pyx_PyInt_AsChar": 1, @@ -6802,7 +8558,6 @@ "*__Pyx_ImportType": 1, "*module_name": 1, "*class_name": 1, - "strict": 2, "__Pyx_GetVtable": 1, "code_line": 4, "PyCodeObject*": 2, @@ -6822,7 +8577,6 @@ "c_line": 1, "py_line": 1, "__Pyx_InitStrings": 1, - "*t": 2, "*__pyx_ptype_7cpython_4type_type": 1, "*__pyx_ptype_5numpy_dtype": 1, "*__pyx_ptype_5numpy_flatiter": 1, @@ -7169,443 +8923,6 @@ "__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 1, "__pyx_base.__pyx_vtab": 1, "__pyx_base.loss": 1, - "": 1, - "": 2, - "local": 5, - "memory": 4, - "RF_OPTION_DEFAULT_ARGUMENTS": 24, - "RF_String*": 222, - "rfString_Create": 4, - "...": 127, - "i_rfString_Create": 3, - "READ_VSNPRINTF_ARGS": 5, - "rfUTF8_VerifySequence": 7, - "RF_FAILURE": 24, - "RE_STRING_INIT_FAILURE": 8, - "buffAllocated": 11, - "RF_String": 27, - "i_NVrfString_Create": 3, - "i_rfString_CreateLocal1": 3, - "RF_OPTION_SOURCE_ENCODING": 30, - "RF_UTF8": 8, - "characterLength": 16, - "*codepoints": 2, - "rfLMS_MacroEvalPtr": 2, - "RF_LMS": 6, - "RF_UTF16_LE": 9, - "RF_UTF16_BE": 7, - "codepoints": 44, - "i/2": 2, - "RF_UTF32_LE": 3, - "RF_UTF32_BE": 3, - "UTF16": 4, - "rfUTF16_Decode": 5, - "cleanup": 12, - "rfUTF16_Decode_swap": 5, - "RF_UTF16_BE//": 2, - "RF_UTF32_LE//": 2, - "copy": 4, - "UTF32": 4, - "into": 8, - "RF_UTF32_BE//": 2, - "": 2, - "endif": 6, - "any": 3, - "other": 16, - "UTF": 17, - "8": 15, - "encode": 2, - "and": 15, - "them": 3, - "rfUTF8_Encode": 4, - "0": 11, - "While": 2, - "attempting": 2, - "create": 2, - "temporary": 4, - "given": 5, - "sequence": 6, - "could": 2, - "not": 6, - "be": 6, - "properly": 2, - "encoded": 2, - "RE_UTF8_ENCODING": 2, - "End": 2, - "Non": 2, - "code=": 2, - "normally": 1, - "since": 5, - "here": 5, - "have": 2, - "validity": 2, - "get": 4, - "character": 11, - "Error": 2, - "at": 3, - "String": 11, - "Allocation": 2, - "due": 2, - "invalid": 2, - "rfLMS_Push": 4, - "Memory": 4, - "allocation": 3, - "Local": 2, - "Stack": 2, - "failed": 2, - "Insufficient": 2, - "space": 4, - "Consider": 2, - "compiling": 2, - "library": 3, - "with": 9, - "bigger": 3, - "Quitting": 2, - "proccess": 2, - "RE_LOCALMEMSTACK_INSUFFICIENT": 8, - "i_NVrfString_CreateLocal": 3, - "during": 1, - "string": 18, - "rfString_Init": 3, - "str": 162, - "i_rfString_Init": 3, - "i_NVrfString_Init": 3, - "rfString_Create_cp": 2, - "rfString_Init_cp": 3, - "RF_HEXLE_UI": 8, - "RF_HEXGE_UI": 6, - "ffff": 4, - "xFC0": 4, - "xF000": 2, - "xE": 2, - "F000": 2, - "C0000": 2, - "RE_UTF8_INVALID_CODE_POINT": 2, - "rfString_Create_i": 2, - "numLen": 8, - "max": 4, - "is": 17, - "most": 3, - "environment": 3, - "so": 4, - "chars": 3, - "will": 3, - "certainly": 3, - "fit": 3, - "it": 12, - "sprintf": 10, - "strcpy": 4, - "rfString_Init_i": 2, - "rfString_Create_f": 2, - "rfString_Init_f": 2, - "rfString_Create_UTF16": 2, - "rfString_Init_UTF16": 3, - "utf8ByteLength": 34, - "last": 1, - "utf": 1, - "null": 4, - "termination": 3, - "byteLength*2": 1, - "allocate": 1, - "same": 1, - "as": 4, - "different": 1, - "RE_INPUT": 1, - "ends": 3, - "rfString_Create_UTF32": 2, - "rfString_Init_UTF32": 3, - "off": 8, - "codeBuffer": 9, - "xFEFF": 1, - "big": 14, - "endian": 20, - "xFFFE0000": 1, - "little": 7, - "according": 1, - "standard": 1, - "no": 4, - "BOM": 1, - "means": 1, - "rfUTF32_Length": 1, - "i_rfString_Assign": 3, - "dest": 7, - "sourceP": 2, - "source": 8, - "RF_REALLOC": 9, - "rfString_Assign_char": 2, - "<5)>": 1, - "rfString_Create_nc": 3, - "i_rfString_Create_nc": 3, - "bytesWritten": 2, - "i_NVrfString_Create_nc": 3, - "rfString_Init_nc": 4, - "i_rfString_Init_nc": 3, - "i_NVrfString_Init_nc": 3, - "rfString_Destroy": 2, - "rfString_Deinit": 3, - "rfString_ToUTF16": 4, - "charsN": 5, - "rfUTF8_Decode": 2, - "rfUTF16_Encode": 1, - "rfString_ToUTF32": 4, - "rfString_Length": 5, - "RF_STRING_ITERATE_START": 9, - "RF_STRING_ITERATE_END": 9, - "rfString_GetChar": 2, - "thisstr": 210, - "codePoint": 18, - "RF_STRING_INDEX_OUT_OF_BOUNDS": 2, - "rfString_BytePosToCodePoint": 7, - "rfString_BytePosToCharPos": 4, - "thisstrP": 32, - "bytepos": 12, - "charPos": 8, - "byteI": 7, - "i_rfString_Equal": 3, - "s1P": 2, - "s2P": 2, - "i_rfString_Find": 5, - "sstrP": 6, - "optionsP": 11, - "sstr": 39, - "*optionsP": 8, - "RF_BITFLAG_ON": 5, - "RF_CASE_IGNORE": 2, - "strstr": 2, - "RF_MATCH_WORD": 5, - "": 1, - "0x5a": 1, - "match": 16, - "0x7a": 1, - "substring": 5, - "search": 1, - "zero": 2, - "equals": 1, - "then": 1, - "okay": 1, - "rfString_Equal": 4, - "RFS_": 8, - "ERANGE": 1, - "RE_STRING_TOFLOAT_UNDERFLOW": 1, - "RE_STRING_TOFLOAT": 1, - "rfString_Copy_OUT": 2, - "srcP": 6, - "src": 16, - "rfString_Copy_IN": 2, - "dst": 15, - "rfString_Copy_chars": 2, - "bytePos": 23, - "terminate": 1, - "i_rfString_ScanfAfter": 3, - "afterstrP": 2, - "format": 4, - "afterstr": 5, - "sscanf": 1, - "<=0)>": 1, - "Counts": 1, - "how": 1, - "many": 1, - "times": 1, - "occurs": 1, - "inside": 2, - "i_rfString_Count": 5, - "sstr2": 2, - "move": 12, - "rfString_FindBytePos": 10, - "i_DECLIMEX_": 121, - "rfString_Tokenize": 2, - "sep": 3, - "tokensN": 2, - "RF_String**": 2, - "tokens": 5, - "*tokensN": 1, - "rfString_Count": 4, - "lstr": 6, - "lstrP": 1, - "rstr": 24, - "rstrP": 5, - "temp": 11, - "start": 10, - "rfString_After": 4, - "result": 48, - "rfString_Beforev": 4, - "parNP": 6, - "i_rfString_Beforev": 16, - "parN": 10, - "*parNP": 2, - "minPos": 17, - "thisPos": 8, - "va_list": 3, - "argList": 8, - "va_start": 3, - "va_arg": 2, - "va_end": 3, - "i_rfString_Before": 5, - "i_rfString_After": 5, - "afterP": 2, - "after": 6, - "rfString_Afterv": 4, - "i_rfString_Afterv": 16, - "minPosLength": 3, - "go": 8, - "i_rfString_Append": 3, - "otherP": 4, - "strncat": 1, - "rfString_Append_i": 2, - "rfString_Append_f": 2, - "i_rfString_Prepend": 3, - "goes": 1, - "i_rfString_Remove": 6, - "numberP": 1, - "*numberP": 1, - "occurences": 5, - "done": 1, - "<=thisstr->": 1, - "i_rfString_KeepOnly": 3, - "keepstrP": 2, - "keepLength": 2, - "charValue": 12, - "*keepChars": 1, - "keepstr": 5, - "exists": 6, - "charBLength": 5, - "keepChars": 4, - "*keepLength": 1, - "rfString_Iterate_Start": 6, - "rfString_Iterate_End": 4, - "": 1, - "does": 1, - "exist": 2, - "back": 1, - "cover": 1, - "that": 9, - "effectively": 1, - "gets": 1, - "deleted": 1, - "rfUTF8_FromCodepoint": 1, - "this": 5, - "kind": 1, - "non": 1, - "clean": 1, - "way": 1, - "macro": 2, - "internally": 1, - "uses": 1, - "byteIndex_": 12, - "variable": 1, - "use": 1, - "determine": 1, - "current": 5, - "iteration": 6, - "backs": 1, - "memmove": 2, - "by": 1, - "contiuing": 1, - "make": 3, - "sure": 2, - "position": 1, - "won": 1, - "array": 1, - "rfString_PruneStart": 2, - "nBytePos": 23, - "rfString_PruneEnd": 2, - "RF_STRING_ITERATEB_START": 2, - "RF_STRING_ITERATEB_END": 2, - "rfString_PruneMiddleB": 2, - "pBytePos": 15, - "indexing": 1, - "works": 1, - "pbytePos": 2, - "pth": 2, - "include": 6, - "rfString_PruneMiddleF": 2, - "got": 1, - "all": 2, - "i_rfString_Replace": 6, - "numP": 1, - "*numP": 1, - "RF_StringX": 2, - "just": 1, - "finding": 1, - "foundN": 10, - "diff": 93, - "bSize": 4, - "bytePositions": 17, - "bSize*sizeof": 1, - "rfStringX_FromString_IN": 1, - "temp.bIndex": 2, - "temp.bytes": 1, - "temp.byteLength": 1, - "rfStringX_Deinit": 1, - "replace": 3, - "removed": 2, - "one": 2, - "orSize": 5, - "nSize": 4, - "number*diff": 1, - "strncpy": 3, - "smaller": 1, - "diff*number": 1, - "remove": 1, - "strings": 5, - "equal": 1, - "i_rfString_StripStart": 3, - "subP": 7, - "RF_String*sub": 2, - "noMatch": 8, - "*subValues": 2, - "subLength": 6, - "sub": 12, - "subValues": 8, - "*subLength": 2, - "i_rfString_StripEnd": 3, - "lastBytePos": 4, - "testity": 2, - "i_rfString_Strip": 3, - "res1": 2, - "rfString_StripStart": 3, - "res2": 2, - "rfString_StripEnd": 3, - "rfString_Create_fUTF8": 2, - "rfString_Init_fUTF8": 3, - "unused": 3, - "rfString_Assign_fUTF8": 2, - "FILE*f": 2, - "utf8BufferSize": 4, - "function": 6, - "rfString_Append_fUTF8": 2, - "rfString_Append": 5, - "rfString_Create_fUTF16": 2, - "rfString_Init_fUTF16": 3, - "rfFReadLine_UTF16LE": 4, - "rfFReadLine_UTF16BE": 6, - "rfString_Assign_fUTF16": 2, - "rfString_Append_fUTF16": 2, - "char*utf8": 3, - "rfString_Create_fUTF32": 2, - "rfString_Init_fUTF32": 3, - "rfFReadLine_UTF32LE": 4, - "<0)>": 1, - "Failure": 1, - "initialize": 1, - "reading": 1, - "Little": 1, - "Endian": 1, - "32": 1, - "bytesN=": 1, - "rfString_Assign_fUTF32": 2, - "rfString_Append_fUTF32": 2, - "i_rfString_Fwrite": 5, - "sP": 2, - "encodingP": 1, - "*utf32": 1, - "utf16": 11, - "*encodingP": 1, - "fwrite": 5, - "logging": 5, - "utf32": 10, - "i_WRITE_CHECK": 1, - "RE_FILE_WRITE": 1, "syscalldef": 1, "syscalldefs": 1, "SYSCALL_OR_NUM": 3, @@ -7613,614 +8930,1001 @@ "MAKE_UINT16": 3, "SYS_exit": 1, "SYS_fork": 1, - "http_parser_h": 2, - "HTTP_PARSER_VERSION_MAJOR": 1, - "HTTP_PARSER_VERSION_MINOR": 1, - "": 2, - "__MINGW32__": 1, - "__int8": 2, - "int8_t": 3, - "__int16": 2, - "int16_t": 1, - "__int32": 2, - "__int64": 3, - "int64_t": 2, - "uint64_t": 8, - "ssize_t": 1, - "": 1, - "HTTP_PARSER_STRICT": 5, - "HTTP_PARSER_DEBUG": 4, - "HTTP_MAX_HEADER_SIZE": 2, - "*1024": 4, - "http_parser": 13, - "http_parser_settings": 5, - "HTTP_METHOD_MAP": 3, - "XX": 63, - "DELETE": 2, - "GET": 2, - "HEAD": 2, - "POST": 2, - "PUT": 2, - "CONNECT": 2, - "OPTIONS": 2, - "TRACE": 2, - "COPY": 2, - "LOCK": 2, - "MKCOL": 2, - "MOVE": 2, - "PROPFIND": 2, - "PROPPATCH": 2, - "SEARCH": 3, - "UNLOCK": 2, - "REPORT": 2, - "MKACTIVITY": 2, - "CHECKOUT": 2, - "MERGE": 2, - "MSEARCH": 1, - "M": 1, - "NOTIFY": 2, - "SUBSCRIBE": 2, - "UNSUBSCRIBE": 2, - "PATCH": 2, - "PURGE": 2, - "http_method": 4, - "HTTP_##name": 1, - "http_parser_type": 3, - "HTTP_REQUEST": 7, - "HTTP_RESPONSE": 3, - "HTTP_BOTH": 1, - "F_CHUNKED": 11, - "F_CONNECTION_KEEP_ALIVE": 3, - "F_CONNECTION_CLOSE": 3, - "F_TRAILING": 3, - "F_UPGRADE": 3, - "F_SKIPBODY": 4, - "HTTP_ERRNO_MAP": 3, - "OK": 1, - "CB_message_begin": 1, - "CB_url": 1, - "CB_header_field": 1, - "CB_header_value": 1, - "CB_headers_complete": 1, - "CB_body": 1, - "CB_message_complete": 1, - "INVALID_EOF_STATE": 1, - "HEADER_OVERFLOW": 1, - "CLOSED_CONNECTION": 1, - "INVALID_VERSION": 1, - "INVALID_STATUS": 1, - "INVALID_METHOD": 1, - "INVALID_URL": 1, - "INVALID_HOST": 1, - "INVALID_PORT": 1, - "INVALID_PATH": 1, - "INVALID_QUERY_STRING": 1, - "INVALID_FRAGMENT": 1, - "LF_EXPECTED": 1, - "INVALID_HEADER_TOKEN": 1, - "INVALID_CONTENT_LENGTH": 1, - "INVALID_CHUNK_SIZE": 1, - "INVALID_CONSTANT": 1, - "INVALID_INTERNAL_STATE": 1, - "STRICT": 1, - "PAUSED": 1, - "UNKNOWN": 1, - "HTTP_ERRNO_GEN": 3, - "HPE_##n": 1, - "http_errno": 11, - "HTTP_PARSER_ERRNO": 10, - "HTTP_PARSER_ERRNO_LINE": 2, - "error_lineno": 3, - "state": 104, - "header_state": 42, - "nread": 7, - "content_length": 27, - "http_major": 11, - "http_minor": 11, - "status_code": 8, - "method": 39, - "upgrade": 3, - "http_cb": 3, - "on_message_begin": 1, - "http_data_cb": 4, - "on_url": 1, - "on_header_field": 1, - "on_header_value": 1, - "on_headers_complete": 3, - "on_body": 1, - "on_message_complete": 1, - "http_parser_url_fields": 2, - "UF_SCHEMA": 2, - "UF_HOST": 3, - "UF_PORT": 5, - "UF_PATH": 2, - "UF_QUERY": 2, - "UF_FRAGMENT": 2, - "UF_MAX": 3, - "http_parser_url": 3, - "field_set": 5, - "port": 7, - "field_data": 5, - "http_parser_init": 2, - "*parser": 9, - "http_parser_execute": 2, - "*settings": 2, - "http_should_keep_alive": 2, - "*http_method_str": 1, - "*http_errno_name": 1, - "err": 38, - "*http_errno_description": 1, - "http_parser_parse_url": 2, - "buflen": 3, - "is_connect": 4, - "*u": 2, - "http_parser_pause": 2, - "paused": 3, - "": 2, - "ULLONG_MAX": 10, - "MIN": 3, - "SET_ERRNO": 47, - "e": 4, - "parser": 334, - "CALLBACK_NOTIFY_": 3, - "FOR": 11, - "ER": 4, - "HPE_OK": 10, - "settings": 6, - "on_##FOR": 4, - "HPE_CB_##FOR": 2, - "CALLBACK_NOTIFY": 10, - "CALLBACK_NOTIFY_NOADVANCE": 2, - "CALLBACK_DATA_": 4, - "LEN": 2, - "FOR##_mark": 7, - "CALLBACK_DATA": 10, - "CALLBACK_DATA_NOADVANCE": 6, - "MARK": 7, - "PROXY_CONNECTION": 4, - "CONNECTION": 4, - "CONTENT_LENGTH": 4, - "TRANSFER_ENCODING": 4, - "UPGRADE": 4, - "CHUNKED": 4, - "KEEP_ALIVE": 4, - "CLOSE": 4, - "*method_strings": 1, - "#string": 1, - "unhex": 3, - "normal_url_char": 3, - "T": 3, - "s_dead": 10, - "s_start_req_or_res": 4, - "s_res_or_resp_H": 3, - "s_start_res": 5, - "s_res_H": 3, - "s_res_HT": 4, - "s_res_HTT": 3, - "s_res_HTTP": 3, - "s_res_first_http_major": 3, - "s_res_http_major": 3, - "s_res_first_http_minor": 3, - "s_res_http_minor": 3, - "s_res_first_status_code": 3, - "s_res_status_code": 3, - "s_res_status": 3, - "s_res_line_almost_done": 4, - "s_start_req": 6, - "s_req_method": 4, - "s_req_spaces_before_url": 5, - "s_req_schema": 6, - "s_req_schema_slash": 6, - "s_req_schema_slash_slash": 6, - "s_req_host_start": 8, - "s_req_host_v6_start": 7, - "s_req_host_v6": 7, - "s_req_host_v6_end": 7, - "s_req_host": 8, - "s_req_port_start": 7, - "s_req_port": 6, - "s_req_path": 8, - "s_req_query_string_start": 8, - "s_req_query_string": 7, - "s_req_fragment_start": 7, - "s_req_fragment": 7, - "s_req_http_start": 3, - "s_req_http_H": 3, - "s_req_http_HT": 3, - "s_req_http_HTT": 3, - "s_req_http_HTTP": 3, - "s_req_first_http_major": 3, - "s_req_http_major": 3, - "s_req_first_http_minor": 3, - "s_req_http_minor": 3, - "s_req_line_almost_done": 4, - "s_header_field_start": 12, - "s_header_field": 4, - "s_header_value_start": 4, - "s_header_value": 5, - "s_header_value_lws": 3, - "s_header_almost_done": 6, - "s_chunk_size_start": 4, - "s_chunk_size": 3, - "s_chunk_parameters": 3, - "s_chunk_size_almost_done": 4, - "s_headers_almost_done": 4, - "s_headers_done": 4, - "s_chunk_data": 3, - "s_chunk_data_almost_done": 3, - "s_chunk_data_done": 3, - "s_body_identity": 3, - "s_body_identity_eof": 4, - "s_message_done": 3, - "PARSING_HEADER": 2, - "header_states": 1, - "h_general": 23, - "h_C": 3, - "h_CO": 3, - "h_CON": 3, - "h_matching_connection": 3, - "h_matching_proxy_connection": 3, - "h_matching_content_length": 3, - "h_matching_transfer_encoding": 3, - "h_matching_upgrade": 3, - "h_connection": 6, - "h_content_length": 5, - "h_transfer_encoding": 5, - "h_upgrade": 4, - "h_matching_transfer_encoding_chunked": 3, - "h_matching_connection_keep_alive": 3, - "h_matching_connection_close": 3, - "h_transfer_encoding_chunked": 4, - "h_connection_keep_alive": 4, - "h_connection_close": 4, - "Macros": 1, - "classes": 1, - "depends": 1, - "mode": 11, - "define": 14, - "CR": 18, - "LF": 21, - "LOWER": 7, - "0x20": 1, - "IS_ALPHA": 5, - "IS_NUM": 14, - "9": 1, - "IS_ALPHANUM": 3, - "IS_HEX": 2, - "TOKEN": 4, - "IS_URL_CHAR": 6, - "IS_HOST_CHAR": 4, - "0x80": 1, - "start_state": 1, - "cond": 1, - "HPE_STRICT": 1, - "HTTP_STRERROR_GEN": 3, - "#n": 1, - "*description": 1, - "http_strerror_tab": 7, - "http_message_needs_eof": 4, - "parse_url_char": 5, - "ch": 145, - "unhex_val": 7, - "*header_field_mark": 1, - "*header_value_mark": 1, - "*url_mark": 1, - "*body_mark": 1, - "message_complete": 7, - "HPE_INVALID_EOF_STATE": 1, - "header_field_mark": 2, - "header_value_mark": 2, - "url_mark": 2, - "HPE_HEADER_OVERFLOW": 1, - "reexecute_byte": 7, - "HPE_CLOSED_CONNECTION": 1, - "message_begin": 3, - "HPE_INVALID_CONSTANT": 3, - "HTTP_HEAD": 2, - "STRICT_CHECK": 15, - "HPE_INVALID_VERSION": 12, - "HPE_INVALID_STATUS": 3, - "HPE_INVALID_METHOD": 4, - "HTTP_CONNECT": 4, - "HTTP_DELETE": 1, - "HTTP_GET": 1, - "HTTP_LOCK": 1, - "HTTP_MKCOL": 2, - "HTTP_NOTIFY": 1, - "HTTP_OPTIONS": 1, - "HTTP_POST": 2, - "HTTP_REPORT": 1, - "HTTP_SUBSCRIBE": 2, - "HTTP_TRACE": 1, - "HTTP_UNLOCK": 2, - "*matcher": 1, - "matcher": 3, - "method_strings": 2, - "HTTP_CHECKOUT": 1, - "HTTP_COPY": 1, - "HTTP_MOVE": 1, - "HTTP_MERGE": 1, - "HTTP_MSEARCH": 1, - "HTTP_MKACTIVITY": 1, - "HTTP_SEARCH": 1, - "HTTP_PROPFIND": 2, - "HTTP_PUT": 2, - "HTTP_PATCH": 1, - "HTTP_PURGE": 1, - "HTTP_UNSUBSCRIBE": 1, - "HTTP_PROPPATCH": 1, - "url": 4, - "HPE_INVALID_URL": 4, - "HPE_LF_EXPECTED": 1, - "HPE_INVALID_HEADER_TOKEN": 2, - "header_field": 5, - "header_value": 6, - "HPE_INVALID_CONTENT_LENGTH": 4, - "NEW_MESSAGE": 6, - "HPE_CB_headers_complete": 1, - "to_read": 6, - "body": 6, - "body_mark": 2, - "HPE_INVALID_CHUNK_SIZE": 2, - "HPE_INVALID_INTERNAL_STATE": 1, - "1": 2, - "HPE_UNKNOWN": 1, - "Does": 1, - "see": 2, - "an": 2, - "find": 1, - "http_method_str": 1, - "memset": 4, - "http_errno_name": 1, - "/sizeof": 4, - ".name": 1, - "http_errno_description": 1, - ".description": 1, - "uf": 14, - "old_uf": 4, - ".off": 2, - "xffff": 1, - "HPE_PAUSED": 2, - "ATSHOME_LIBATS_DYNARRAY_CATS": 3, - "atslib_dynarray_memcpy": 1, - "atslib_dynarray_memmove": 1, - "ifndef": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "CONFIG_SMP": 1, - "DEFINE_MUTEX": 1, - "cpu_add_remove_lock": 3, - "cpu_maps_update_begin": 9, - "mutex_lock": 5, - "cpu_maps_update_done": 9, - "mutex_unlock": 6, - "RAW_NOTIFIER_HEAD": 1, - "cpu_chain": 4, - "cpu_hotplug_disabled": 7, - "CONFIG_HOTPLUG_CPU": 2, - "task_struct": 5, - "*active_writer": 1, - "mutex": 1, - "lock": 6, - "cpu_hotplug": 1, - ".active_writer": 1, - ".lock": 1, - "__MUTEX_INITIALIZER": 1, - "cpu_hotplug.lock": 8, - ".refcount": 1, - "get_online_cpus": 2, - "might_sleep": 1, - "cpu_hotplug.active_writer": 6, - "cpu_hotplug.refcount": 3, - "EXPORT_SYMBOL_GPL": 4, - "put_online_cpus": 2, - "wake_up_process": 1, - "cpu_hotplug_begin": 4, - "__set_current_state": 1, - "TASK_UNINTERRUPTIBLE": 1, - "schedule": 1, - "cpu_hotplug_done": 4, - "__ref": 6, - "register_cpu_notifier": 2, - "notifier_block": 3, - "*nb": 3, - "raw_notifier_chain_register": 1, - "nb": 2, - "__cpu_notify": 6, - "val": 20, - "*v": 3, - "nr_to_call": 2, - "*nr_calls": 1, - "__raw_notifier_call_chain": 1, - "nr_calls": 9, - "notifier_to_errno": 1, - "cpu_notify": 5, - "cpu_notify_nofail": 4, - "BUG_ON": 4, - "EXPORT_SYMBOL": 8, - "unregister_cpu_notifier": 2, - "raw_notifier_chain_unregister": 1, - "clear_tasks_mm_cpumask": 1, - "cpu": 57, - "WARN_ON": 1, - "cpu_online": 5, - "rcu_read_lock": 1, - "for_each_process": 2, - "find_lock_task_mm": 1, - "cpumask_clear_cpu": 5, - "mm_cpumask": 1, - "mm": 1, - "task_unlock": 1, - "rcu_read_unlock": 1, - "check_for_tasks": 2, - "write_lock_irq": 1, - "tasklist_lock": 2, - "task_cpu": 1, - "TASK_RUNNING": 1, - "utime": 1, - "stime": 1, - "printk": 12, - "KERN_WARNING": 3, - "comm": 1, - "task_pid_nr": 1, - "write_unlock_irq": 1, - "take_cpu_down_param": 3, - "mod": 13, - "*hcpu": 3, - "take_cpu_down": 2, - "*_param": 1, - "*param": 1, - "_param": 1, - "__cpu_disable": 1, - "CPU_DYING": 1, - "param": 2, - "hcpu": 10, - "_cpu_down": 3, - "tasks_frozen": 4, - "CPU_TASKS_FROZEN": 2, - "tcd_param": 2, - ".mod": 1, - ".hcpu": 1, - "num_online_cpus": 2, - "EBUSY": 3, - "CPU_DOWN_PREPARE": 1, - "CPU_DOWN_FAILED": 2, - "__func__": 2, - "out_release": 3, - "__stop_machine": 1, - "cpumask_of": 1, - "idle_cpu": 1, - "cpu_relax": 1, - "__cpu_die": 1, - "CPU_DEAD": 1, - "CPU_POST_DEAD": 1, - "cpu_down": 2, - "__cpuinit": 3, - "_cpu_up": 3, - "*idle": 1, - "cpu_present": 1, - "idle": 4, - "idle_thread_get": 1, - "IS_ERR": 1, - "PTR_ERR": 1, - "CPU_UP_PREPARE": 1, - "out_notify": 3, - "__cpu_up": 1, - "CPU_ONLINE": 1, - "CPU_UP_CANCELED": 1, - "cpu_up": 2, - "CONFIG_MEMORY_HOTPLUG": 2, - "nid": 5, - "pg_data_t": 1, - "*pgdat": 1, - "cpu_possible": 1, - "KERN_ERR": 5, - "CONFIG_IA64": 1, - "cpu_to_node": 1, - "node_online": 1, - "mem_online_node": 1, - "pgdat": 3, - "NODE_DATA": 1, - "node_zonelists": 1, - "_zonerefs": 1, - "zone": 1, - "zonelists_mutex": 2, - "build_all_zonelists": 1, - "CONFIG_PM_SLEEP_SMP": 2, - "cpumask_var_t": 1, - "frozen_cpus": 9, - "__weak": 4, - "arch_disable_nonboot_cpus_begin": 2, - "arch_disable_nonboot_cpus_end": 2, - "disable_nonboot_cpus": 1, - "first_cpu": 3, - "cpumask_first": 1, - "cpu_online_mask": 3, - "cpumask_clear": 2, - "for_each_online_cpu": 1, - "cpumask_set_cpu": 5, - "arch_enable_nonboot_cpus_begin": 2, - "arch_enable_nonboot_cpus_end": 2, - "enable_nonboot_cpus": 1, - "cpumask_empty": 1, - "KERN_INFO": 2, - "for_each_cpu": 1, - "__init": 2, - "alloc_frozen_cpus": 2, - "alloc_cpumask_var": 1, - "GFP_KERNEL": 1, - "__GFP_ZERO": 1, - "core_initcall": 2, - "cpu_hotplug_disable_before_freeze": 2, - "cpu_hotplug_enable_after_thaw": 2, - "cpu_hotplug_pm_callback": 2, - "action": 2, - "*ptr": 1, - "PM_SUSPEND_PREPARE": 1, - "PM_HIBERNATION_PREPARE": 1, - "PM_POST_SUSPEND": 1, - "PM_POST_HIBERNATION": 1, - "NOTIFY_DONE": 1, - "NOTIFY_OK": 1, - "cpu_hotplug_pm_sync_init": 2, - "pm_notifier": 1, - "notify_cpu_starting": 1, - "CPU_STARTING": 1, - "cpumask_test_cpu": 1, - "CPU_STARTING_FROZEN": 1, - "MASK_DECLARE_1": 3, - "UL": 1, - "MASK_DECLARE_2": 3, - "MASK_DECLARE_4": 3, - "MASK_DECLARE_8": 9, - "cpu_bit_bitmap": 2, - "BITS_PER_LONG": 2, - "BITS_TO_LONGS": 1, - "NR_CPUS": 2, - "DECLARE_BITMAP": 6, - "cpu_all_bits": 2, - "CPU_BITS_ALL": 2, - "CONFIG_INIT_ALL_POSSIBLE": 1, - "cpu_possible_bits": 6, - "CONFIG_NR_CPUS": 5, - "__read_mostly": 5, - "cpumask": 7, - "*const": 4, - "cpu_possible_mask": 2, - "to_cpumask": 15, - "cpu_online_bits": 5, - "cpu_present_bits": 5, - "cpu_present_mask": 2, - "cpu_active_bits": 4, - "cpu_active_mask": 2, - "set_cpu_possible": 1, - "bool": 6, - "possible": 2, - "set_cpu_present": 1, - "present": 2, - "set_cpu_online": 1, - "online": 2, - "set_cpu_active": 1, - "active": 2, - "init_cpu_present": 1, - "*src": 3, - "cpumask_copy": 3, - "init_cpu_possible": 1, - "init_cpu_online": 1, + "__wglew_h__": 2, + "__WGLEW_H__": 1, + "__wglext_h_": 2, + "wglext.h": 1, + "wglew.h": 1, + "WINAPI": 119, + "": 1, + "GLEW_STATIC": 1, + "WGL_3DFX_multisample": 2, + "WGL_SAMPLE_BUFFERS_3DFX": 1, + "WGL_SAMPLES_3DFX": 1, + "WGLEW_3DFX_multisample": 1, + "WGLEW_GET_VAR": 49, + "__WGLEW_3DFX_multisample": 2, + "WGL_3DL_stereo_control": 2, + "WGL_STEREO_EMITTER_ENABLE_3DL": 1, + "WGL_STEREO_EMITTER_DISABLE_3DL": 1, + "WGL_STEREO_POLARITY_NORMAL_3DL": 1, + "WGL_STEREO_POLARITY_INVERT_3DL": 1, + "BOOL": 84, + "PFNWGLSETSTEREOEMITTERSTATE3DLPROC": 2, + "HDC": 65, + "hDC": 33, + "UINT": 30, + "uState": 1, + "wglSetStereoEmitterState3DL": 1, + "WGLEW_GET_FUN": 120, + "__wglewSetStereoEmitterState3DL": 2, + "WGLEW_3DL_stereo_control": 1, + "__WGLEW_3DL_stereo_control": 2, + "WGL_AMD_gpu_association": 2, + "WGL_GPU_VENDOR_AMD": 1, + "F00": 1, + "WGL_GPU_RENDERER_STRING_AMD": 1, + "F01": 1, + "WGL_GPU_OPENGL_VERSION_STRING_AMD": 1, + "F02": 1, + "WGL_GPU_FASTEST_TARGET_GPUS_AMD": 1, + "A2": 2, + "WGL_GPU_RAM_AMD": 1, + "A3": 2, + "WGL_GPU_CLOCK_AMD": 1, + "A4": 2, + "WGL_GPU_NUM_PIPES_AMD": 1, + "A5": 3, + "WGL_GPU_NUM_SIMD_AMD": 1, + "A6": 2, + "WGL_GPU_NUM_RB_AMD": 1, + "A7": 2, + "WGL_GPU_NUM_SPI_AMD": 1, + "A8": 2, + "VOID": 6, + "PFNWGLBLITCONTEXTFRAMEBUFFERAMDPROC": 2, + "HGLRC": 14, + "dstCtx": 1, + "GLint": 18, + "srcX0": 1, + "srcY0": 1, + "srcX1": 1, + "srcY1": 1, + "dstX0": 1, + "dstY0": 1, + "dstX1": 1, + "dstY1": 1, + "GLbitfield": 1, + "mask": 1, + "GLenum": 8, + "filter": 1, + "PFNWGLCREATEASSOCIATEDCONTEXTAMDPROC": 2, + "PFNWGLCREATEASSOCIATEDCONTEXTATTRIBSAMDPROC": 2, + "hShareContext": 2, + "attribList": 2, + "PFNWGLDELETEASSOCIATEDCONTEXTAMDPROC": 2, + "hglrc": 5, + "PFNWGLGETCONTEXTGPUIDAMDPROC": 2, + "PFNWGLGETCURRENTASSOCIATEDCONTEXTAMDPROC": 2, + "PFNWGLGETGPUIDSAMDPROC": 2, + "maxCount": 1, + "UINT*": 6, + "ids": 1, + "INT": 3, + "PFNWGLGETGPUINFOAMDPROC": 2, + "property": 1, + "dataType": 1, + "PFNWGLMAKEASSOCIATEDCONTEXTCURRENTAMDPROC": 2, + "wglBlitContextFramebufferAMD": 1, + "__wglewBlitContextFramebufferAMD": 2, + "wglCreateAssociatedContextAMD": 1, + "__wglewCreateAssociatedContextAMD": 2, + "wglCreateAssociatedContextAttribsAMD": 1, + "__wglewCreateAssociatedContextAttribsAMD": 2, + "wglDeleteAssociatedContextAMD": 1, + "__wglewDeleteAssociatedContextAMD": 2, + "wglGetContextGPUIDAMD": 1, + "__wglewGetContextGPUIDAMD": 2, + "wglGetCurrentAssociatedContextAMD": 1, + "__wglewGetCurrentAssociatedContextAMD": 2, + "wglGetGPUIDsAMD": 1, + "__wglewGetGPUIDsAMD": 2, + "wglGetGPUInfoAMD": 1, + "__wglewGetGPUInfoAMD": 2, + "wglMakeAssociatedContextCurrentAMD": 1, + "__wglewMakeAssociatedContextCurrentAMD": 2, + "WGLEW_AMD_gpu_association": 1, + "__WGLEW_AMD_gpu_association": 2, + "WGL_ARB_buffer_region": 2, + "WGL_FRONT_COLOR_BUFFER_BIT_ARB": 1, + "WGL_BACK_COLOR_BUFFER_BIT_ARB": 1, + "WGL_DEPTH_BUFFER_BIT_ARB": 1, + "WGL_STENCIL_BUFFER_BIT_ARB": 1, + "HANDLE": 14, + "PFNWGLCREATEBUFFERREGIONARBPROC": 2, + "iLayerPlane": 5, + "uType": 1, + "PFNWGLDELETEBUFFERREGIONARBPROC": 2, + "hRegion": 3, + "PFNWGLRESTOREBUFFERREGIONARBPROC": 2, + "width": 3, + "height": 3, + "xSrc": 1, + "ySrc": 1, + "PFNWGLSAVEBUFFERREGIONARBPROC": 2, + "wglCreateBufferRegionARB": 1, + "__wglewCreateBufferRegionARB": 2, + "wglDeleteBufferRegionARB": 1, + "__wglewDeleteBufferRegionARB": 2, + "wglRestoreBufferRegionARB": 1, + "__wglewRestoreBufferRegionARB": 2, + "wglSaveBufferRegionARB": 1, + "__wglewSaveBufferRegionARB": 2, + "WGLEW_ARB_buffer_region": 1, + "__WGLEW_ARB_buffer_region": 2, + "WGL_ARB_create_context": 2, + "WGL_CONTEXT_DEBUG_BIT_ARB": 1, + "WGL_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB": 1, + "WGL_CONTEXT_MAJOR_VERSION_ARB": 1, + "WGL_CONTEXT_MINOR_VERSION_ARB": 1, + "WGL_CONTEXT_LAYER_PLANE_ARB": 1, + "WGL_CONTEXT_FLAGS_ARB": 1, + "ERROR_INVALID_VERSION_ARB": 1, + "ERROR_INVALID_PROFILE_ARB": 1, + "PFNWGLCREATECONTEXTATTRIBSARBPROC": 2, + "wglCreateContextAttribsARB": 1, + "__wglewCreateContextAttribsARB": 2, + "WGLEW_ARB_create_context": 1, + "__WGLEW_ARB_create_context": 2, + "WGL_ARB_create_context_profile": 2, + "WGL_CONTEXT_CORE_PROFILE_BIT_ARB": 1, + "WGL_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB": 1, + "WGL_CONTEXT_PROFILE_MASK_ARB": 1, + "WGLEW_ARB_create_context_profile": 1, + "__WGLEW_ARB_create_context_profile": 2, + "WGL_ARB_create_context_robustness": 2, + "WGL_CONTEXT_ROBUST_ACCESS_BIT_ARB": 1, + "WGL_LOSE_CONTEXT_ON_RESET_ARB": 1, + "WGL_CONTEXT_RESET_NOTIFICATION_STRATEGY_ARB": 1, + "WGL_NO_RESET_NOTIFICATION_ARB": 1, + "WGLEW_ARB_create_context_robustness": 1, + "__WGLEW_ARB_create_context_robustness": 2, + "WGL_ARB_extensions_string": 2, + "PFNWGLGETEXTENSIONSSTRINGARBPROC": 2, + "hdc": 16, + "wglGetExtensionsStringARB": 1, + "__wglewGetExtensionsStringARB": 2, + "WGLEW_ARB_extensions_string": 1, + "__WGLEW_ARB_extensions_string": 2, + "WGL_ARB_framebuffer_sRGB": 2, + "WGL_FRAMEBUFFER_SRGB_CAPABLE_ARB": 1, + "A9": 2, + "WGLEW_ARB_framebuffer_sRGB": 1, + "__WGLEW_ARB_framebuffer_sRGB": 2, + "WGL_ARB_make_current_read": 2, + "ERROR_INVALID_PIXEL_TYPE_ARB": 1, + "ERROR_INCOMPATIBLE_DEVICE_CONTEXTS_ARB": 1, + "PFNWGLGETCURRENTREADDCARBPROC": 2, + "PFNWGLMAKECONTEXTCURRENTARBPROC": 2, + "hDrawDC": 2, + "hReadDC": 2, + "wglGetCurrentReadDCARB": 1, + "__wglewGetCurrentReadDCARB": 2, + "wglMakeContextCurrentARB": 1, + "__wglewMakeContextCurrentARB": 2, + "WGLEW_ARB_make_current_read": 1, + "__WGLEW_ARB_make_current_read": 2, + "WGL_ARB_multisample": 2, + "WGL_SAMPLE_BUFFERS_ARB": 1, + "WGL_SAMPLES_ARB": 1, + "WGLEW_ARB_multisample": 1, + "__WGLEW_ARB_multisample": 2, + "WGL_ARB_pbuffer": 2, + "WGL_DRAW_TO_PBUFFER_ARB": 1, + "D": 8, + "WGL_MAX_PBUFFER_PIXELS_ARB": 1, + "WGL_MAX_PBUFFER_WIDTH_ARB": 1, + "WGL_MAX_PBUFFER_HEIGHT_ARB": 1, + "WGL_PBUFFER_LARGEST_ARB": 1, + "WGL_PBUFFER_WIDTH_ARB": 1, + "WGL_PBUFFER_HEIGHT_ARB": 1, + "WGL_PBUFFER_LOST_ARB": 1, + "DECLARE_HANDLE": 6, + "HPBUFFERARB": 12, + "PFNWGLCREATEPBUFFERARBPROC": 2, + "iPixelFormat": 6, + "iWidth": 2, + "iHeight": 2, + "piAttribList": 4, + "PFNWGLDESTROYPBUFFERARBPROC": 2, + "hPbuffer": 14, + "PFNWGLGETPBUFFERDCARBPROC": 2, + "PFNWGLQUERYPBUFFERARBPROC": 2, + "iAttribute": 8, + "piValue": 8, + "PFNWGLRELEASEPBUFFERDCARBPROC": 2, + "wglCreatePbufferARB": 1, + "__wglewCreatePbufferARB": 2, + "wglDestroyPbufferARB": 1, + "__wglewDestroyPbufferARB": 2, + "wglGetPbufferDCARB": 1, + "__wglewGetPbufferDCARB": 2, + "wglQueryPbufferARB": 1, + "__wglewQueryPbufferARB": 2, + "wglReleasePbufferDCARB": 1, + "__wglewReleasePbufferDCARB": 2, + "WGLEW_ARB_pbuffer": 1, + "__WGLEW_ARB_pbuffer": 2, + "WGL_ARB_pixel_format": 2, + "WGL_NUMBER_PIXEL_FORMATS_ARB": 1, + "WGL_DRAW_TO_WINDOW_ARB": 1, + "WGL_DRAW_TO_BITMAP_ARB": 1, + "WGL_ACCELERATION_ARB": 1, + "WGL_NEED_PALETTE_ARB": 1, + "WGL_NEED_SYSTEM_PALETTE_ARB": 1, + "WGL_SWAP_LAYER_BUFFERS_ARB": 1, + "WGL_SWAP_METHOD_ARB": 1, + "WGL_NUMBER_OVERLAYS_ARB": 1, + "WGL_NUMBER_UNDERLAYS_ARB": 1, + "WGL_TRANSPARENT_ARB": 1, + "WGL_SHARE_DEPTH_ARB": 1, + "WGL_SHARE_STENCIL_ARB": 1, + "WGL_SHARE_ACCUM_ARB": 1, + "WGL_SUPPORT_GDI_ARB": 1, + "WGL_SUPPORT_OPENGL_ARB": 1, + "WGL_DOUBLE_BUFFER_ARB": 1, + "WGL_STEREO_ARB": 1, + "WGL_PIXEL_TYPE_ARB": 1, + "WGL_COLOR_BITS_ARB": 1, + "WGL_RED_BITS_ARB": 1, + "WGL_RED_SHIFT_ARB": 1, + "WGL_GREEN_BITS_ARB": 1, + "WGL_GREEN_SHIFT_ARB": 1, + "WGL_BLUE_BITS_ARB": 1, + "WGL_BLUE_SHIFT_ARB": 1, + "WGL_ALPHA_BITS_ARB": 1, + "B": 9, + "WGL_ALPHA_SHIFT_ARB": 1, + "WGL_ACCUM_BITS_ARB": 1, + "WGL_ACCUM_RED_BITS_ARB": 1, + "WGL_ACCUM_GREEN_BITS_ARB": 1, + "WGL_ACCUM_BLUE_BITS_ARB": 1, + "WGL_ACCUM_ALPHA_BITS_ARB": 1, + "WGL_DEPTH_BITS_ARB": 1, + "WGL_STENCIL_BITS_ARB": 1, + "WGL_AUX_BUFFERS_ARB": 1, + "WGL_NO_ACCELERATION_ARB": 1, + "WGL_GENERIC_ACCELERATION_ARB": 1, + "WGL_FULL_ACCELERATION_ARB": 1, + "WGL_SWAP_EXCHANGE_ARB": 1, + "WGL_SWAP_COPY_ARB": 1, + "WGL_SWAP_UNDEFINED_ARB": 1, + "WGL_TYPE_RGBA_ARB": 1, + "WGL_TYPE_COLORINDEX_ARB": 1, + "WGL_TRANSPARENT_RED_VALUE_ARB": 1, + "WGL_TRANSPARENT_GREEN_VALUE_ARB": 1, + "WGL_TRANSPARENT_BLUE_VALUE_ARB": 1, + "WGL_TRANSPARENT_ALPHA_VALUE_ARB": 1, + "WGL_TRANSPARENT_INDEX_VALUE_ARB": 1, + "PFNWGLCHOOSEPIXELFORMATARBPROC": 2, + "piAttribIList": 2, + "FLOAT": 4, + "*pfAttribFList": 2, + "nMaxFormats": 2, + "*piFormats": 2, + "*nNumFormats": 2, + "PFNWGLGETPIXELFORMATATTRIBFVARBPROC": 2, + "nAttributes": 4, + "piAttributes": 4, + "*pfValues": 2, + "PFNWGLGETPIXELFORMATATTRIBIVARBPROC": 2, + "*piValues": 2, + "wglChoosePixelFormatARB": 1, + "__wglewChoosePixelFormatARB": 2, + "wglGetPixelFormatAttribfvARB": 1, + "__wglewGetPixelFormatAttribfvARB": 2, + "wglGetPixelFormatAttribivARB": 1, + "__wglewGetPixelFormatAttribivARB": 2, + "WGLEW_ARB_pixel_format": 1, + "__WGLEW_ARB_pixel_format": 2, + "WGL_ARB_pixel_format_float": 2, + "WGL_TYPE_RGBA_FLOAT_ARB": 1, + "A0": 3, + "WGLEW_ARB_pixel_format_float": 1, + "__WGLEW_ARB_pixel_format_float": 2, + "WGL_ARB_render_texture": 2, + "WGL_BIND_TO_TEXTURE_RGB_ARB": 1, + "WGL_BIND_TO_TEXTURE_RGBA_ARB": 1, + "WGL_TEXTURE_FORMAT_ARB": 1, + "WGL_TEXTURE_TARGET_ARB": 1, + "WGL_MIPMAP_TEXTURE_ARB": 1, + "WGL_TEXTURE_RGB_ARB": 1, + "WGL_TEXTURE_RGBA_ARB": 1, + "WGL_NO_TEXTURE_ARB": 2, + "WGL_TEXTURE_CUBE_MAP_ARB": 1, + "WGL_TEXTURE_1D_ARB": 1, + "WGL_TEXTURE_2D_ARB": 1, + "WGL_MIPMAP_LEVEL_ARB": 1, + "WGL_CUBE_MAP_FACE_ARB": 1, + "WGL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB": 1, + "WGL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB": 1, + "WGL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB": 1, + "WGL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB": 1, + "WGL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB": 1, + "WGL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB": 1, + "WGL_FRONT_LEFT_ARB": 1, + "WGL_FRONT_RIGHT_ARB": 1, + "WGL_BACK_LEFT_ARB": 1, + "WGL_BACK_RIGHT_ARB": 1, + "WGL_AUX0_ARB": 1, + "WGL_AUX1_ARB": 1, + "WGL_AUX2_ARB": 1, + "WGL_AUX3_ARB": 1, + "WGL_AUX4_ARB": 1, + "WGL_AUX5_ARB": 1, + "WGL_AUX6_ARB": 1, + "WGL_AUX7_ARB": 1, + "WGL_AUX8_ARB": 1, + "WGL_AUX9_ARB": 1, + "PFNWGLBINDTEXIMAGEARBPROC": 2, + "iBuffer": 2, + "PFNWGLRELEASETEXIMAGEARBPROC": 2, + "PFNWGLSETPBUFFERATTRIBARBPROC": 2, + "wglBindTexImageARB": 1, + "__wglewBindTexImageARB": 2, + "wglReleaseTexImageARB": 1, + "__wglewReleaseTexImageARB": 2, + "wglSetPbufferAttribARB": 1, + "__wglewSetPbufferAttribARB": 2, + "WGLEW_ARB_render_texture": 1, + "__WGLEW_ARB_render_texture": 2, + "WGL_ATI_pixel_format_float": 2, + "WGL_TYPE_RGBA_FLOAT_ATI": 1, + "GL_RGBA_FLOAT_MODE_ATI": 1, + "GL_COLOR_CLEAR_UNCLAMPED_VALUE_ATI": 1, + "WGLEW_ATI_pixel_format_float": 1, + "__WGLEW_ATI_pixel_format_float": 2, + "WGL_ATI_render_texture_rectangle": 2, + "WGL_TEXTURE_RECTANGLE_ATI": 1, + "WGLEW_ATI_render_texture_rectangle": 1, + "__WGLEW_ATI_render_texture_rectangle": 2, + "WGL_EXT_create_context_es2_profile": 2, + "WGL_CONTEXT_ES2_PROFILE_BIT_EXT": 1, + "WGLEW_EXT_create_context_es2_profile": 1, + "__WGLEW_EXT_create_context_es2_profile": 2, + "WGL_EXT_depth_float": 2, + "WGL_DEPTH_FLOAT_EXT": 1, + "WGLEW_EXT_depth_float": 1, + "__WGLEW_EXT_depth_float": 2, + "WGL_EXT_display_color_table": 2, + "GLboolean": 53, + "PFNWGLBINDDISPLAYCOLORTABLEEXTPROC": 2, + "GLushort": 3, + "PFNWGLCREATEDISPLAYCOLORTABLEEXTPROC": 2, + "PFNWGLDESTROYDISPLAYCOLORTABLEEXTPROC": 2, + "PFNWGLLOADDISPLAYCOLORTABLEEXTPROC": 2, + "GLushort*": 1, + "table": 1, + "GLuint": 9, + "wglBindDisplayColorTableEXT": 1, + "__wglewBindDisplayColorTableEXT": 2, + "wglCreateDisplayColorTableEXT": 1, + "__wglewCreateDisplayColorTableEXT": 2, + "wglDestroyDisplayColorTableEXT": 1, + "__wglewDestroyDisplayColorTableEXT": 2, + "wglLoadDisplayColorTableEXT": 1, + "__wglewLoadDisplayColorTableEXT": 2, + "WGLEW_EXT_display_color_table": 1, + "__WGLEW_EXT_display_color_table": 2, + "WGL_EXT_extensions_string": 2, + "PFNWGLGETEXTENSIONSSTRINGEXTPROC": 2, + "wglGetExtensionsStringEXT": 1, + "__wglewGetExtensionsStringEXT": 2, + "WGLEW_EXT_extensions_string": 1, + "__WGLEW_EXT_extensions_string": 2, + "WGL_EXT_framebuffer_sRGB": 2, + "WGL_FRAMEBUFFER_SRGB_CAPABLE_EXT": 1, + "WGLEW_EXT_framebuffer_sRGB": 1, + "__WGLEW_EXT_framebuffer_sRGB": 2, + "WGL_EXT_make_current_read": 2, + "ERROR_INVALID_PIXEL_TYPE_EXT": 1, + "PFNWGLGETCURRENTREADDCEXTPROC": 2, + "PFNWGLMAKECONTEXTCURRENTEXTPROC": 2, + "wglGetCurrentReadDCEXT": 1, + "__wglewGetCurrentReadDCEXT": 2, + "wglMakeContextCurrentEXT": 1, + "__wglewMakeContextCurrentEXT": 2, + "WGLEW_EXT_make_current_read": 1, + "__WGLEW_EXT_make_current_read": 2, + "WGL_EXT_multisample": 2, + "WGL_SAMPLE_BUFFERS_EXT": 1, + "WGL_SAMPLES_EXT": 1, + "WGLEW_EXT_multisample": 1, + "__WGLEW_EXT_multisample": 2, + "WGL_EXT_pbuffer": 2, + "WGL_DRAW_TO_PBUFFER_EXT": 1, + "WGL_MAX_PBUFFER_PIXELS_EXT": 1, + "WGL_MAX_PBUFFER_WIDTH_EXT": 1, + "WGL_MAX_PBUFFER_HEIGHT_EXT": 1, + "WGL_OPTIMAL_PBUFFER_WIDTH_EXT": 1, + "WGL_OPTIMAL_PBUFFER_HEIGHT_EXT": 1, + "WGL_PBUFFER_LARGEST_EXT": 1, + "WGL_PBUFFER_WIDTH_EXT": 1, + "WGL_PBUFFER_HEIGHT_EXT": 1, + "HPBUFFEREXT": 6, + "PFNWGLCREATEPBUFFEREXTPROC": 2, + "PFNWGLDESTROYPBUFFEREXTPROC": 2, + "PFNWGLGETPBUFFERDCEXTPROC": 2, + "PFNWGLQUERYPBUFFEREXTPROC": 2, + "PFNWGLRELEASEPBUFFERDCEXTPROC": 2, + "wglCreatePbufferEXT": 1, + "__wglewCreatePbufferEXT": 2, + "wglDestroyPbufferEXT": 1, + "__wglewDestroyPbufferEXT": 2, + "wglGetPbufferDCEXT": 1, + "__wglewGetPbufferDCEXT": 2, + "wglQueryPbufferEXT": 1, + "__wglewQueryPbufferEXT": 2, + "wglReleasePbufferDCEXT": 1, + "__wglewReleasePbufferDCEXT": 2, + "WGLEW_EXT_pbuffer": 1, + "__WGLEW_EXT_pbuffer": 2, + "WGL_EXT_pixel_format": 2, + "WGL_NUMBER_PIXEL_FORMATS_EXT": 1, + "WGL_DRAW_TO_WINDOW_EXT": 1, + "WGL_DRAW_TO_BITMAP_EXT": 1, + "WGL_ACCELERATION_EXT": 1, + "WGL_NEED_PALETTE_EXT": 1, + "WGL_NEED_SYSTEM_PALETTE_EXT": 1, + "WGL_SWAP_LAYER_BUFFERS_EXT": 1, + "WGL_SWAP_METHOD_EXT": 1, + "WGL_NUMBER_OVERLAYS_EXT": 1, + "WGL_NUMBER_UNDERLAYS_EXT": 1, + "WGL_TRANSPARENT_EXT": 1, + "WGL_TRANSPARENT_VALUE_EXT": 1, + "WGL_SHARE_DEPTH_EXT": 1, + "WGL_SHARE_STENCIL_EXT": 1, + "WGL_SHARE_ACCUM_EXT": 1, + "WGL_SUPPORT_GDI_EXT": 1, + "WGL_SUPPORT_OPENGL_EXT": 1, + "WGL_DOUBLE_BUFFER_EXT": 1, + "WGL_STEREO_EXT": 1, + "WGL_PIXEL_TYPE_EXT": 1, + "WGL_COLOR_BITS_EXT": 1, + "WGL_RED_BITS_EXT": 1, + "WGL_RED_SHIFT_EXT": 1, + "WGL_GREEN_BITS_EXT": 1, + "WGL_GREEN_SHIFT_EXT": 1, + "WGL_BLUE_BITS_EXT": 1, + "WGL_BLUE_SHIFT_EXT": 1, + "WGL_ALPHA_BITS_EXT": 1, + "WGL_ALPHA_SHIFT_EXT": 1, + "WGL_ACCUM_BITS_EXT": 1, + "WGL_ACCUM_RED_BITS_EXT": 1, + "WGL_ACCUM_GREEN_BITS_EXT": 1, + "WGL_ACCUM_BLUE_BITS_EXT": 1, + "WGL_ACCUM_ALPHA_BITS_EXT": 1, + "WGL_DEPTH_BITS_EXT": 1, + "WGL_STENCIL_BITS_EXT": 1, + "WGL_AUX_BUFFERS_EXT": 1, + "WGL_NO_ACCELERATION_EXT": 1, + "WGL_GENERIC_ACCELERATION_EXT": 1, + "WGL_FULL_ACCELERATION_EXT": 1, + "WGL_SWAP_EXCHANGE_EXT": 1, + "WGL_SWAP_COPY_EXT": 1, + "WGL_SWAP_UNDEFINED_EXT": 1, + "WGL_TYPE_RGBA_EXT": 1, + "WGL_TYPE_COLORINDEX_EXT": 1, + "PFNWGLCHOOSEPIXELFORMATEXTPROC": 2, + "PFNWGLGETPIXELFORMATATTRIBFVEXTPROC": 2, + "PFNWGLGETPIXELFORMATATTRIBIVEXTPROC": 2, + "wglChoosePixelFormatEXT": 1, + "__wglewChoosePixelFormatEXT": 2, + "wglGetPixelFormatAttribfvEXT": 1, + "__wglewGetPixelFormatAttribfvEXT": 2, + "wglGetPixelFormatAttribivEXT": 1, + "__wglewGetPixelFormatAttribivEXT": 2, + "WGLEW_EXT_pixel_format": 1, + "__WGLEW_EXT_pixel_format": 2, + "WGL_EXT_pixel_format_packed_float": 2, + "WGL_TYPE_RGBA_UNSIGNED_FLOAT_EXT": 1, + "WGLEW_EXT_pixel_format_packed_float": 1, + "__WGLEW_EXT_pixel_format_packed_float": 2, + "WGL_EXT_swap_control": 2, + "PFNWGLGETSWAPINTERVALEXTPROC": 2, + "PFNWGLSWAPINTERVALEXTPROC": 2, + "interval": 1, + "wglGetSwapIntervalEXT": 1, + "__wglewGetSwapIntervalEXT": 2, + "wglSwapIntervalEXT": 1, + "__wglewSwapIntervalEXT": 2, + "WGLEW_EXT_swap_control": 1, + "__WGLEW_EXT_swap_control": 2, + "WGL_I3D_digital_video_control": 2, + "WGL_DIGITAL_VIDEO_CURSOR_ALPHA_FRAMEBUFFER_I3D": 1, + "WGL_DIGITAL_VIDEO_CURSOR_ALPHA_VALUE_I3D": 1, + "WGL_DIGITAL_VIDEO_CURSOR_INCLUDED_I3D": 1, + "WGL_DIGITAL_VIDEO_GAMMA_CORRECTED_I3D": 1, + "PFNWGLGETDIGITALVIDEOPARAMETERSI3DPROC": 2, + "PFNWGLSETDIGITALVIDEOPARAMETERSI3DPROC": 2, + "wglGetDigitalVideoParametersI3D": 1, + "__wglewGetDigitalVideoParametersI3D": 2, + "wglSetDigitalVideoParametersI3D": 1, + "__wglewSetDigitalVideoParametersI3D": 2, + "WGLEW_I3D_digital_video_control": 1, + "__WGLEW_I3D_digital_video_control": 2, + "WGL_I3D_gamma": 2, + "WGL_GAMMA_TABLE_SIZE_I3D": 1, + "WGL_GAMMA_EXCLUDE_DESKTOP_I3D": 1, + "PFNWGLGETGAMMATABLEI3DPROC": 2, + "iEntries": 2, + "USHORT*": 2, + "puRed": 2, + "USHORT": 4, + "*puGreen": 2, + "*puBlue": 2, + "PFNWGLGETGAMMATABLEPARAMETERSI3DPROC": 2, + "PFNWGLSETGAMMATABLEI3DPROC": 2, + "PFNWGLSETGAMMATABLEPARAMETERSI3DPROC": 2, + "wglGetGammaTableI3D": 1, + "__wglewGetGammaTableI3D": 2, + "wglGetGammaTableParametersI3D": 1, + "__wglewGetGammaTableParametersI3D": 2, + "wglSetGammaTableI3D": 1, + "__wglewSetGammaTableI3D": 2, + "wglSetGammaTableParametersI3D": 1, + "__wglewSetGammaTableParametersI3D": 2, + "WGLEW_I3D_gamma": 1, + "__WGLEW_I3D_gamma": 2, + "WGL_I3D_genlock": 2, + "WGL_GENLOCK_SOURCE_MULTIVIEW_I3D": 1, + "WGL_GENLOCK_SOURCE_EXTERNAL_SYNC_I3D": 1, + "WGL_GENLOCK_SOURCE_EXTERNAL_FIELD_I3D": 1, + "WGL_GENLOCK_SOURCE_EXTERNAL_TTL_I3D": 1, + "WGL_GENLOCK_SOURCE_DIGITAL_SYNC_I3D": 1, + "WGL_GENLOCK_SOURCE_DIGITAL_FIELD_I3D": 1, + "WGL_GENLOCK_SOURCE_EDGE_FALLING_I3D": 1, + "WGL_GENLOCK_SOURCE_EDGE_RISING_I3D": 1, + "WGL_GENLOCK_SOURCE_EDGE_BOTH_I3D": 1, + "PFNWGLDISABLEGENLOCKI3DPROC": 2, + "PFNWGLENABLEGENLOCKI3DPROC": 2, + "PFNWGLGENLOCKSAMPLERATEI3DPROC": 2, + "uRate": 2, + "PFNWGLGENLOCKSOURCEDELAYI3DPROC": 2, + "uDelay": 2, + "PFNWGLGENLOCKSOURCEEDGEI3DPROC": 2, + "uEdge": 2, + "PFNWGLGENLOCKSOURCEI3DPROC": 2, + "uSource": 2, + "PFNWGLGETGENLOCKSAMPLERATEI3DPROC": 2, + "PFNWGLGETGENLOCKSOURCEDELAYI3DPROC": 2, + "PFNWGLGETGENLOCKSOURCEEDGEI3DPROC": 2, + "PFNWGLGETGENLOCKSOURCEI3DPROC": 2, + "PFNWGLISENABLEDGENLOCKI3DPROC": 2, + "BOOL*": 3, + "pFlag": 3, + "PFNWGLQUERYGENLOCKMAXSOURCEDELAYI3DPROC": 2, + "uMaxLineDelay": 1, + "*uMaxPixelDelay": 1, + "wglDisableGenlockI3D": 1, + "__wglewDisableGenlockI3D": 2, + "wglEnableGenlockI3D": 1, + "__wglewEnableGenlockI3D": 2, + "wglGenlockSampleRateI3D": 1, + "__wglewGenlockSampleRateI3D": 2, + "wglGenlockSourceDelayI3D": 1, + "__wglewGenlockSourceDelayI3D": 2, + "wglGenlockSourceEdgeI3D": 1, + "__wglewGenlockSourceEdgeI3D": 2, + "wglGenlockSourceI3D": 1, + "__wglewGenlockSourceI3D": 2, + "wglGetGenlockSampleRateI3D": 1, + "__wglewGetGenlockSampleRateI3D": 2, + "wglGetGenlockSourceDelayI3D": 1, + "__wglewGetGenlockSourceDelayI3D": 2, + "wglGetGenlockSourceEdgeI3D": 1, + "__wglewGetGenlockSourceEdgeI3D": 2, + "wglGetGenlockSourceI3D": 1, + "__wglewGetGenlockSourceI3D": 2, + "wglIsEnabledGenlockI3D": 1, + "__wglewIsEnabledGenlockI3D": 2, + "wglQueryGenlockMaxSourceDelayI3D": 1, + "__wglewQueryGenlockMaxSourceDelayI3D": 2, + "WGLEW_I3D_genlock": 1, + "__WGLEW_I3D_genlock": 2, + "WGL_I3D_image_buffer": 2, + "WGL_IMAGE_BUFFER_MIN_ACCESS_I3D": 1, + "WGL_IMAGE_BUFFER_LOCK_I3D": 1, + "PFNWGLASSOCIATEIMAGEBUFFEREVENTSI3DPROC": 2, + "HANDLE*": 3, + "pEvent": 1, + "LPVOID": 3, + "*pAddress": 1, + "DWORD": 5, + "*pSize": 1, + "PFNWGLCREATEIMAGEBUFFERI3DPROC": 2, + "dwSize": 1, + "uFlags": 1, + "PFNWGLDESTROYIMAGEBUFFERI3DPROC": 2, + "pAddress": 2, + "PFNWGLRELEASEIMAGEBUFFEREVENTSI3DPROC": 2, + "LPVOID*": 1, + "wglAssociateImageBufferEventsI3D": 1, + "__wglewAssociateImageBufferEventsI3D": 2, + "wglCreateImageBufferI3D": 1, + "__wglewCreateImageBufferI3D": 2, + "wglDestroyImageBufferI3D": 1, + "__wglewDestroyImageBufferI3D": 2, + "wglReleaseImageBufferEventsI3D": 1, + "__wglewReleaseImageBufferEventsI3D": 2, + "WGLEW_I3D_image_buffer": 1, + "__WGLEW_I3D_image_buffer": 2, + "WGL_I3D_swap_frame_lock": 2, + "PFNWGLDISABLEFRAMELOCKI3DPROC": 2, + "PFNWGLENABLEFRAMELOCKI3DPROC": 2, + "PFNWGLISENABLEDFRAMELOCKI3DPROC": 2, + "PFNWGLQUERYFRAMELOCKMASTERI3DPROC": 2, + "wglDisableFrameLockI3D": 1, + "__wglewDisableFrameLockI3D": 2, + "wglEnableFrameLockI3D": 1, + "__wglewEnableFrameLockI3D": 2, + "wglIsEnabledFrameLockI3D": 1, + "__wglewIsEnabledFrameLockI3D": 2, + "wglQueryFrameLockMasterI3D": 1, + "__wglewQueryFrameLockMasterI3D": 2, + "WGLEW_I3D_swap_frame_lock": 1, + "__WGLEW_I3D_swap_frame_lock": 2, + "WGL_I3D_swap_frame_usage": 2, + "PFNWGLBEGINFRAMETRACKINGI3DPROC": 2, + "PFNWGLENDFRAMETRACKINGI3DPROC": 2, + "PFNWGLGETFRAMEUSAGEI3DPROC": 2, + "float*": 1, + "pUsage": 1, + "PFNWGLQUERYFRAMETRACKINGI3DPROC": 2, + "DWORD*": 1, + "pFrameCount": 1, + "*pMissedFrames": 1, + "*pLastMissedUsage": 1, + "wglBeginFrameTrackingI3D": 1, + "__wglewBeginFrameTrackingI3D": 2, + "wglEndFrameTrackingI3D": 1, + "__wglewEndFrameTrackingI3D": 2, + "wglGetFrameUsageI3D": 1, + "__wglewGetFrameUsageI3D": 2, + "wglQueryFrameTrackingI3D": 1, + "__wglewQueryFrameTrackingI3D": 2, + "WGLEW_I3D_swap_frame_usage": 1, + "__WGLEW_I3D_swap_frame_usage": 2, + "WGL_NV_DX_interop": 2, + "WGL_ACCESS_READ_ONLY_NV": 1, + "WGL_ACCESS_READ_WRITE_NV": 1, + "WGL_ACCESS_WRITE_DISCARD_NV": 1, + "PFNWGLDXCLOSEDEVICENVPROC": 2, + "hDevice": 9, + "PFNWGLDXLOCKOBJECTSNVPROC": 2, + "hObjects": 2, + "PFNWGLDXOBJECTACCESSNVPROC": 2, + "hObject": 2, + "access": 2, + "PFNWGLDXOPENDEVICENVPROC": 2, + "dxDevice": 1, + "PFNWGLDXREGISTEROBJECTNVPROC": 2, + "dxObject": 2, + "PFNWGLDXSETRESOURCESHAREHANDLENVPROC": 2, + "shareHandle": 1, + "PFNWGLDXUNLOCKOBJECTSNVPROC": 2, + "PFNWGLDXUNREGISTEROBJECTNVPROC": 2, + "wglDXCloseDeviceNV": 1, + "__wglewDXCloseDeviceNV": 2, + "wglDXLockObjectsNV": 1, + "__wglewDXLockObjectsNV": 2, + "wglDXObjectAccessNV": 1, + "__wglewDXObjectAccessNV": 2, + "wglDXOpenDeviceNV": 1, + "__wglewDXOpenDeviceNV": 2, + "wglDXRegisterObjectNV": 1, + "__wglewDXRegisterObjectNV": 2, + "wglDXSetResourceShareHandleNV": 1, + "__wglewDXSetResourceShareHandleNV": 2, + "wglDXUnlockObjectsNV": 1, + "__wglewDXUnlockObjectsNV": 2, + "wglDXUnregisterObjectNV": 1, + "__wglewDXUnregisterObjectNV": 2, + "WGLEW_NV_DX_interop": 1, + "__WGLEW_NV_DX_interop": 2, + "WGL_NV_copy_image": 2, + "PFNWGLCOPYIMAGESUBDATANVPROC": 2, + "hSrcRC": 1, + "srcName": 1, + "srcTarget": 1, + "srcLevel": 1, + "srcX": 1, + "srcY": 1, + "srcZ": 1, + "hDstRC": 1, + "dstName": 1, + "dstTarget": 1, + "dstLevel": 1, + "dstX": 1, + "dstY": 1, + "dstZ": 1, + "GLsizei": 4, + "wglCopyImageSubDataNV": 1, + "__wglewCopyImageSubDataNV": 2, + "WGLEW_NV_copy_image": 1, + "__WGLEW_NV_copy_image": 2, + "WGL_NV_float_buffer": 2, + "WGL_FLOAT_COMPONENTS_NV": 1, + "B0": 1, + "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_R_NV": 1, + "B1": 1, + "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RG_NV": 1, + "B2": 1, + "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGB_NV": 1, + "B3": 1, + "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGBA_NV": 1, + "B4": 1, + "WGL_TEXTURE_FLOAT_R_NV": 1, + "B5": 1, + "WGL_TEXTURE_FLOAT_RG_NV": 1, + "B6": 1, + "WGL_TEXTURE_FLOAT_RGB_NV": 1, + "B7": 1, + "WGL_TEXTURE_FLOAT_RGBA_NV": 1, + "B8": 1, + "WGLEW_NV_float_buffer": 1, + "__WGLEW_NV_float_buffer": 2, + "WGL_NV_gpu_affinity": 2, + "WGL_ERROR_INCOMPATIBLE_AFFINITY_MASKS_NV": 1, + "D0": 1, + "WGL_ERROR_MISSING_AFFINITY_MASK_NV": 1, + "D1": 1, + "HGPUNV": 5, + "_GPU_DEVICE": 1, + "cb": 1, + "CHAR": 2, + "DeviceName": 1, + "DeviceString": 1, + "Flags": 1, + "RECT": 1, + "rcVirtualScreen": 1, + "GPU_DEVICE": 1, + "*PGPU_DEVICE": 1, + "PFNWGLCREATEAFFINITYDCNVPROC": 2, + "*phGpuList": 1, + "PFNWGLDELETEDCNVPROC": 2, + "PFNWGLENUMGPUDEVICESNVPROC": 2, + "hGpu": 1, + "iDeviceIndex": 1, + "PGPU_DEVICE": 1, + "lpGpuDevice": 1, + "PFNWGLENUMGPUSFROMAFFINITYDCNVPROC": 2, + "hAffinityDC": 1, + "iGpuIndex": 2, + "*hGpu": 1, + "PFNWGLENUMGPUSNVPROC": 2, + "*phGpu": 1, + "wglCreateAffinityDCNV": 1, + "__wglewCreateAffinityDCNV": 2, + "wglDeleteDCNV": 1, + "__wglewDeleteDCNV": 2, + "wglEnumGpuDevicesNV": 1, + "__wglewEnumGpuDevicesNV": 2, + "wglEnumGpusFromAffinityDCNV": 1, + "__wglewEnumGpusFromAffinityDCNV": 2, + "wglEnumGpusNV": 1, + "__wglewEnumGpusNV": 2, + "WGLEW_NV_gpu_affinity": 1, + "__WGLEW_NV_gpu_affinity": 2, + "WGL_NV_multisample_coverage": 2, + "WGL_COVERAGE_SAMPLES_NV": 1, + "WGL_COLOR_SAMPLES_NV": 1, + "B9": 1, + "WGLEW_NV_multisample_coverage": 1, + "__WGLEW_NV_multisample_coverage": 2, + "WGL_NV_present_video": 2, + "WGL_NUM_VIDEO_SLOTS_NV": 1, + "F0": 1, + "HVIDEOOUTPUTDEVICENV": 2, + "PFNWGLBINDVIDEODEVICENVPROC": 2, + "hDc": 6, + "uVideoSlot": 2, + "hVideoDevice": 4, + "PFNWGLENUMERATEVIDEODEVICESNVPROC": 2, + "HVIDEOOUTPUTDEVICENV*": 1, + "phDeviceList": 2, + "PFNWGLQUERYCURRENTCONTEXTNVPROC": 2, + "wglBindVideoDeviceNV": 1, + "__wglewBindVideoDeviceNV": 2, + "wglEnumerateVideoDevicesNV": 1, + "__wglewEnumerateVideoDevicesNV": 2, + "wglQueryCurrentContextNV": 1, + "__wglewQueryCurrentContextNV": 2, + "WGLEW_NV_present_video": 1, + "__WGLEW_NV_present_video": 2, + "WGL_NV_render_depth_texture": 2, + "WGL_BIND_TO_TEXTURE_DEPTH_NV": 1, + "WGL_BIND_TO_TEXTURE_RECTANGLE_DEPTH_NV": 1, + "WGL_DEPTH_TEXTURE_FORMAT_NV": 1, + "WGL_TEXTURE_DEPTH_COMPONENT_NV": 1, + "WGL_DEPTH_COMPONENT_NV": 1, + "WGLEW_NV_render_depth_texture": 1, + "__WGLEW_NV_render_depth_texture": 2, + "WGL_NV_render_texture_rectangle": 2, + "WGL_BIND_TO_TEXTURE_RECTANGLE_RGB_NV": 1, + "WGL_BIND_TO_TEXTURE_RECTANGLE_RGBA_NV": 1, + "A1": 1, + "WGL_TEXTURE_RECTANGLE_NV": 1, + "WGLEW_NV_render_texture_rectangle": 1, + "__WGLEW_NV_render_texture_rectangle": 2, + "WGL_NV_swap_group": 2, + "PFNWGLBINDSWAPBARRIERNVPROC": 2, + "group": 3, + "barrier": 1, + "PFNWGLJOINSWAPGROUPNVPROC": 2, + "PFNWGLQUERYFRAMECOUNTNVPROC": 2, + "GLuint*": 3, + "PFNWGLQUERYMAXSWAPGROUPSNVPROC": 2, + "maxGroups": 1, + "*maxBarriers": 1, + "PFNWGLQUERYSWAPGROUPNVPROC": 2, + "*barrier": 1, + "PFNWGLRESETFRAMECOUNTNVPROC": 2, + "wglBindSwapBarrierNV": 1, + "__wglewBindSwapBarrierNV": 2, + "wglJoinSwapGroupNV": 1, + "__wglewJoinSwapGroupNV": 2, + "wglQueryFrameCountNV": 1, + "__wglewQueryFrameCountNV": 2, + "wglQueryMaxSwapGroupsNV": 1, + "__wglewQueryMaxSwapGroupsNV": 2, + "wglQuerySwapGroupNV": 1, + "__wglewQuerySwapGroupNV": 2, + "wglResetFrameCountNV": 1, + "__wglewResetFrameCountNV": 2, + "WGLEW_NV_swap_group": 1, + "__WGLEW_NV_swap_group": 2, + "WGL_NV_vertex_array_range": 2, + "PFNWGLALLOCATEMEMORYNVPROC": 2, + "GLfloat": 3, + "readFrequency": 1, + "writeFrequency": 1, + "priority": 1, + "PFNWGLFREEMEMORYNVPROC": 2, + "*pointer": 1, + "wglAllocateMemoryNV": 1, + "__wglewAllocateMemoryNV": 2, + "wglFreeMemoryNV": 1, + "__wglewFreeMemoryNV": 2, + "WGLEW_NV_vertex_array_range": 1, + "__WGLEW_NV_vertex_array_range": 2, + "WGL_NV_video_capture": 2, + "WGL_UNIQUE_ID_NV": 1, + "CE": 1, + "WGL_NUM_VIDEO_CAPTURE_SLOTS_NV": 1, + "CF": 1, + "HVIDEOINPUTDEVICENV": 5, + "PFNWGLBINDVIDEOCAPTUREDEVICENVPROC": 2, + "PFNWGLENUMERATEVIDEOCAPTUREDEVICESNVPROC": 2, + "HVIDEOINPUTDEVICENV*": 1, + "PFNWGLLOCKVIDEOCAPTUREDEVICENVPROC": 2, + "PFNWGLQUERYVIDEOCAPTUREDEVICENVPROC": 2, + "PFNWGLRELEASEVIDEOCAPTUREDEVICENVPROC": 2, + "wglBindVideoCaptureDeviceNV": 1, + "__wglewBindVideoCaptureDeviceNV": 2, + "wglEnumerateVideoCaptureDevicesNV": 1, + "__wglewEnumerateVideoCaptureDevicesNV": 2, + "wglLockVideoCaptureDeviceNV": 1, + "__wglewLockVideoCaptureDeviceNV": 2, + "wglQueryVideoCaptureDeviceNV": 1, + "__wglewQueryVideoCaptureDeviceNV": 2, + "wglReleaseVideoCaptureDeviceNV": 1, + "__wglewReleaseVideoCaptureDeviceNV": 2, + "WGLEW_NV_video_capture": 1, + "__WGLEW_NV_video_capture": 2, + "WGL_NV_video_output": 2, + "WGL_BIND_TO_VIDEO_RGB_NV": 1, + "WGL_BIND_TO_VIDEO_RGBA_NV": 1, + "C1": 1, + "WGL_BIND_TO_VIDEO_RGB_AND_DEPTH_NV": 1, + "C2": 1, + "WGL_VIDEO_OUT_COLOR_NV": 1, + "C3": 1, + "WGL_VIDEO_OUT_ALPHA_NV": 1, + "C4": 1, + "WGL_VIDEO_OUT_DEPTH_NV": 1, + "C5": 1, + "WGL_VIDEO_OUT_COLOR_AND_ALPHA_NV": 1, + "C6": 1, + "WGL_VIDEO_OUT_COLOR_AND_DEPTH_NV": 1, + "C7": 1, + "WGL_VIDEO_OUT_FRAME": 1, + "C8": 1, + "WGL_VIDEO_OUT_FIELD_1": 1, + "C9": 1, + "WGL_VIDEO_OUT_FIELD_2": 1, + "CA": 1, + "WGL_VIDEO_OUT_STACKED_FIELDS_1_2": 1, + "CB": 1, + "WGL_VIDEO_OUT_STACKED_FIELDS_2_1": 1, + "CC": 1, + "HPVIDEODEV": 4, + "PFNWGLBINDVIDEOIMAGENVPROC": 2, + "iVideoBuffer": 2, + "PFNWGLGETVIDEODEVICENVPROC": 2, + "numDevices": 1, + "HPVIDEODEV*": 1, + "PFNWGLGETVIDEOINFONVPROC": 2, + "hpVideoDevice": 1, + "long*": 2, + "pulCounterOutputPbuffer": 1, + "*pulCounterOutputVideo": 1, + "PFNWGLRELEASEVIDEODEVICENVPROC": 2, + "PFNWGLRELEASEVIDEOIMAGENVPROC": 2, + "PFNWGLSENDPBUFFERTOVIDEONVPROC": 2, + "iBufferType": 1, + "pulCounterPbuffer": 1, + "bBlock": 1, + "wglBindVideoImageNV": 1, + "__wglewBindVideoImageNV": 2, + "wglGetVideoDeviceNV": 1, + "__wglewGetVideoDeviceNV": 2, + "wglGetVideoInfoNV": 1, + "__wglewGetVideoInfoNV": 2, + "wglReleaseVideoDeviceNV": 1, + "__wglewReleaseVideoDeviceNV": 2, + "wglReleaseVideoImageNV": 1, + "__wglewReleaseVideoImageNV": 2, + "wglSendPbufferToVideoNV": 1, + "__wglewSendPbufferToVideoNV": 2, + "WGLEW_NV_video_output": 1, + "__WGLEW_NV_video_output": 2, + "WGL_OML_sync_control": 2, + "PFNWGLGETMSCRATEOMLPROC": 2, + "INT32*": 1, + "numerator": 1, + "INT32": 1, + "*denominator": 1, + "PFNWGLGETSYNCVALUESOMLPROC": 2, + "INT64*": 3, + "INT64": 18, + "*msc": 3, + "*sbc": 3, + "PFNWGLSWAPBUFFERSMSCOMLPROC": 2, + "target_msc": 3, + "divisor": 3, + "remainder": 3, + "PFNWGLSWAPLAYERBUFFERSMSCOMLPROC": 2, + "fuPlanes": 1, + "PFNWGLWAITFORMSCOMLPROC": 2, + "PFNWGLWAITFORSBCOMLPROC": 2, + "target_sbc": 1, + "wglGetMscRateOML": 1, + "__wglewGetMscRateOML": 2, + "wglGetSyncValuesOML": 1, + "__wglewGetSyncValuesOML": 2, + "wglSwapBuffersMscOML": 1, + "__wglewSwapBuffersMscOML": 2, + "wglSwapLayerBuffersMscOML": 1, + "__wglewSwapLayerBuffersMscOML": 2, + "wglWaitForMscOML": 1, + "__wglewWaitForMscOML": 2, + "wglWaitForSbcOML": 1, + "__wglewWaitForSbcOML": 2, + "WGLEW_OML_sync_control": 1, + "__WGLEW_OML_sync_control": 2, + "GLEW_MX": 4, + "WGLEW_EXPORT": 167, + "GLEWAPI": 6, + "WGLEWContextStruct": 2, + "WGLEWContext": 1, + "wglewContextInit": 2, + "WGLEWContext*": 2, + "wglewContextIsSupported": 2, + "wglewInit": 1, + "wglewGetContext": 4, + "wglewIsSupported": 2, + "wglewGetExtension": 1, "yajl_status_to_string": 1, "yajl_status": 4, "statStr": 6, @@ -8271,1754 +9975,14 @@ "verbose": 2, "yajl_render_error_string": 1, "yajl_get_bytes_consumed": 1, - "yajl_free_error": 1, - "REFU_USTRING_H": 2, - "": 1, - "RF_MODULE_STRINGS//": 1, - "module": 3, - "": 2, - "": 1, - "argument": 1, - "wrapping": 1, - "functionality": 1, - "": 1, - "unicode": 2, - "opening": 2, - "bracket": 4, - "calling": 4, - "xFF0FFFF": 1, - "rfUTF8_IsContinuationByte2": 1, - "b__": 3, - "0xBF": 1, - "pragma": 1, - "pack": 2, - "push": 1, - "internal": 4, - "author": 1, - "Lefteris": 1, - "09": 1, - "12": 1, - "2010": 1, - "endinternal": 1, - "brief": 1, - "representation": 2, - "The": 1, - "Refu": 2, - "Unicode": 1, - "has": 2, - "two": 1, - "versions": 1, - "One": 1, - "ref": 1, - "what": 1, - "operations": 1, - "can": 2, - "performed": 1, - "extended": 3, - "Strings": 2, - "Functions": 1, - "convert": 1, - "but": 1, - "always": 2, - "Once": 1, - "been": 1, - "created": 1, - "assumed": 1, - "valid": 1, - "every": 1, - "performs": 1, - "unless": 1, - "otherwise": 1, - "specified": 1, - "All": 1, - "functions": 2, - "which": 1, - "isinherited": 1, - "StringX": 2, - "their": 1, - "description": 1, - "used": 10, - "safely": 1, - "specific": 1, - "or": 1, - "needs": 1, - "manipulate": 1, - "Extended": 1, - "To": 1, - "documentation": 1, - "even": 1, - "clearer": 1, - "should": 2, - "marked": 1, - "notinherited": 1, - "cppcode": 1, - "constructor": 1, - "i_StringCHandle": 1, - "**": 6, - "@endcpp": 1, - "@endinternal": 1, - "*/": 1, - "#pragma": 1, - "pop": 1, - "RF_IAMHERE_FOR_DOXYGEN": 22, - "i_rfString_CreateLocal": 2, - "__VA_ARGS__": 66, - "RP_SELECT_FUNC_IF_NARGIS": 5, - "i_SELECT_RF_STRING_CREATE": 1, - "i_SELECT_RF_STRING_CREATE1": 1, - "i_SELECT_RF_STRING_CREATE0": 1, - "///Internal": 1, - "creates": 1, - "i_SELECT_RF_STRING_CREATELOCAL": 1, - "i_SELECT_RF_STRING_CREATELOCAL1": 1, - "i_SELECT_RF_STRING_CREATELOCAL0": 1, - "i_SELECT_RF_STRING_INIT": 1, - "i_SELECT_RF_STRING_INIT1": 1, - "i_SELECT_RF_STRING_INIT0": 1, - "i_SELECT_RF_STRING_CREATE_NC": 1, - "i_SELECT_RF_STRING_CREATE_NC1": 1, - "i_SELECT_RF_STRING_CREATE_NC0": 1, - "i_SELECT_RF_STRING_INIT_NC": 1, - "i_SELECT_RF_STRING_INIT_NC1": 1, - "i_SELECT_RF_STRING_INIT_NC0": 1, - "//@": 1, - "rfString_Assign": 2, - "i_DESTINATION_": 2, - "i_SOURCE_": 2, - "i_rfLMS_WRAP2": 5, - "rfString_ToUTF8": 2, - "i_STRING_": 2, - "rfString_ToCstr": 2, - "uint32_t*length": 1, - "string_": 9, - "startCharacterPos_": 4, - "characterUnicodeValue_": 4, - "j_": 6, - "//Two": 1, - "macros": 1, - "accomplish": 1, - "going": 1, - "backwards.": 1, - "This": 1, - "its": 1, - "pair.": 1, - "rfString_IterateB_Start": 1, - "characterPos_": 5, - "b_index_": 6, - "c_index_": 3, - "rfString_IterateB_End": 1, - "i_STRING1_": 2, - "i_STRING2_": 2, - "i_rfLMSX_WRAP2": 4, - "rfString_Find": 3, - "i_THISSTR_": 60, - "i_SEARCHSTR_": 26, - "i_OPTIONS_": 28, - "i_rfLMS_WRAP3": 4, - "i_RFI8_": 54, - "RF_SELECT_FUNC_IF_NARGGT": 10, - "i_NPSELECT_RF_STRING_FIND": 1, - "i_NPSELECT_RF_STRING_FIND1": 1, - "RF_COMPILE_ERROR": 33, - "i_NPSELECT_RF_STRING_FIND0": 1, - "RF_SELECT_FUNC": 10, - "i_SELECT_RF_STRING_FIND": 1, - "i_SELECT_RF_STRING_FIND2": 1, - "i_SELECT_RF_STRING_FIND3": 1, - "i_SELECT_RF_STRING_FIND1": 1, - "i_SELECT_RF_STRING_FIND0": 1, - "rfString_ToInt": 1, - "int32_t*": 1, - "rfString_ToDouble": 1, - "double*": 1, - "rfString_ScanfAfter": 2, - "i_AFTERSTR_": 8, - "i_FORMAT_": 2, - "i_VAR_": 2, - "i_rfLMSX_WRAP4": 11, - "i_NPSELECT_RF_STRING_COUNT": 1, - "i_NPSELECT_RF_STRING_COUNT1": 1, - "i_NPSELECT_RF_STRING_COUNT0": 1, - "i_SELECT_RF_STRING_COUNT": 1, - "i_SELECT_RF_STRING_COUNT2": 1, - "i_rfLMSX_WRAP3": 5, - "i_SELECT_RF_STRING_COUNT3": 1, - "i_SELECT_RF_STRING_COUNT1": 1, - "i_SELECT_RF_STRING_COUNT0": 1, - "rfString_Between": 3, - "i_rfString_Between": 4, - "i_NPSELECT_RF_STRING_BETWEEN": 1, - "i_NPSELECT_RF_STRING_BETWEEN1": 1, - "i_NPSELECT_RF_STRING_BETWEEN0": 1, - "i_SELECT_RF_STRING_BETWEEN": 1, - "i_SELECT_RF_STRING_BETWEEN4": 1, - "i_LEFTSTR_": 6, - "i_RIGHTSTR_": 6, - "i_RESULT_": 12, - "i_rfLMSX_WRAP5": 9, - "i_SELECT_RF_STRING_BETWEEN5": 1, - "i_SELECT_RF_STRING_BETWEEN3": 1, - "i_SELECT_RF_STRING_BETWEEN2": 1, - "i_SELECT_RF_STRING_BETWEEN1": 1, - "i_SELECT_RF_STRING_BETWEEN0": 1, - "i_NPSELECT_RF_STRING_BEFOREV": 1, - "i_NPSELECT_RF_STRING_BEFOREV1": 1, - "RF_SELECT_FUNC_IF_NARGGT2": 2, - "i_LIMSELECT_RF_STRING_BEFOREV": 1, - "i_NPSELECT_RF_STRING_BEFOREV0": 1, - "i_LIMSELECT_RF_STRING_BEFOREV1": 1, - "i_LIMSELECT_RF_STRING_BEFOREV0": 1, - "i_SELECT_RF_STRING_BEFOREV": 1, - "i_SELECT_RF_STRING_BEFOREV5": 1, - "i_ARG1_": 56, - "i_ARG2_": 56, - "i_ARG3_": 56, - "i_ARG4_": 56, - "i_RFUI8_": 28, - "i_SELECT_RF_STRING_BEFOREV6": 1, - "i_rfLMSX_WRAP6": 2, - "i_SELECT_RF_STRING_BEFOREV7": 1, - "i_rfLMSX_WRAP7": 2, - "i_SELECT_RF_STRING_BEFOREV8": 1, - "i_rfLMSX_WRAP8": 2, - "i_SELECT_RF_STRING_BEFOREV9": 1, - "i_rfLMSX_WRAP9": 2, - "i_SELECT_RF_STRING_BEFOREV10": 1, - "i_rfLMSX_WRAP10": 2, - "i_SELECT_RF_STRING_BEFOREV11": 1, - "i_rfLMSX_WRAP11": 2, - "i_SELECT_RF_STRING_BEFOREV12": 1, - "i_rfLMSX_WRAP12": 2, - "i_SELECT_RF_STRING_BEFOREV13": 1, - "i_rfLMSX_WRAP13": 2, - "i_SELECT_RF_STRING_BEFOREV14": 1, - "i_rfLMSX_WRAP14": 2, - "i_SELECT_RF_STRING_BEFOREV15": 1, - "i_rfLMSX_WRAP15": 2, - "i_SELECT_RF_STRING_BEFOREV16": 1, - "i_rfLMSX_WRAP16": 2, - "i_SELECT_RF_STRING_BEFOREV17": 1, - "i_rfLMSX_WRAP17": 2, - "i_SELECT_RF_STRING_BEFOREV18": 1, - "i_rfLMSX_WRAP18": 2, - "rfString_Before": 3, - "i_NPSELECT_RF_STRING_BEFORE": 1, - "i_NPSELECT_RF_STRING_BEFORE1": 1, - "i_NPSELECT_RF_STRING_BEFORE0": 1, - "i_SELECT_RF_STRING_BEFORE": 1, - "i_SELECT_RF_STRING_BEFORE3": 1, - "i_SELECT_RF_STRING_BEFORE4": 1, - "i_SELECT_RF_STRING_BEFORE2": 1, - "i_SELECT_RF_STRING_BEFORE1": 1, - "i_SELECT_RF_STRING_BEFORE0": 1, - "i_NPSELECT_RF_STRING_AFTER": 1, - "i_NPSELECT_RF_STRING_AFTER1": 1, - "i_NPSELECT_RF_STRING_AFTER0": 1, - "i_SELECT_RF_STRING_AFTER": 1, - "i_SELECT_RF_STRING_AFTER3": 1, - "i_OUTSTR_": 6, - "i_SELECT_RF_STRING_AFTER4": 1, - "i_SELECT_RF_STRING_AFTER2": 1, - "i_SELECT_RF_STRING_AFTER1": 1, - "i_SELECT_RF_STRING_AFTER0": 1, - "i_NPSELECT_RF_STRING_AFTERV": 1, - "i_NPSELECT_RF_STRING_AFTERV1": 1, - "i_LIMSELECT_RF_STRING_AFTERV": 1, - "i_NPSELECT_RF_STRING_AFTERV0": 1, - "i_LIMSELECT_RF_STRING_AFTERV1": 1, - "i_LIMSELECT_RF_STRING_AFTERV0": 1, - "i_SELECT_RF_STRING_AFTERV": 1, - "i_SELECT_RF_STRING_AFTERV5": 1, - "i_SELECT_RF_STRING_AFTERV6": 1, - "i_SELECT_RF_STRING_AFTERV7": 1, - "i_SELECT_RF_STRING_AFTERV8": 1, - "i_SELECT_RF_STRING_AFTERV9": 1, - "i_SELECT_RF_STRING_AFTERV10": 1, - "i_SELECT_RF_STRING_AFTERV11": 1, - "i_SELECT_RF_STRING_AFTERV12": 1, - "i_SELECT_RF_STRING_AFTERV13": 1, - "i_SELECT_RF_STRING_AFTERV14": 1, - "i_SELECT_RF_STRING_AFTERV15": 1, - "i_SELECT_RF_STRING_AFTERV16": 1, - "i_SELECT_RF_STRING_AFTERV17": 1, - "i_SELECT_RF_STRING_AFTERV18": 1, - "i_OTHERSTR_": 4, - "rfString_Prepend": 2, - "rfString_Remove": 3, - "i_NPSELECT_RF_STRING_REMOVE": 1, - "i_NPSELECT_RF_STRING_REMOVE1": 1, - "i_NPSELECT_RF_STRING_REMOVE0": 1, - "i_SELECT_RF_STRING_REMOVE": 1, - "i_SELECT_RF_STRING_REMOVE2": 1, - "i_REPSTR_": 16, - "i_RFUI32_": 8, - "i_SELECT_RF_STRING_REMOVE3": 1, - "i_NUMBER_": 12, - "i_SELECT_RF_STRING_REMOVE4": 1, - "i_SELECT_RF_STRING_REMOVE1": 1, - "i_SELECT_RF_STRING_REMOVE0": 1, - "rfString_KeepOnly": 2, - "I_KEEPSTR_": 2, - "rfString_Replace": 3, - "i_NPSELECT_RF_STRING_REPLACE": 1, - "i_NPSELECT_RF_STRING_REPLACE1": 1, - "i_NPSELECT_RF_STRING_REPLACE0": 1, - "i_SELECT_RF_STRING_REPLACE": 1, - "i_SELECT_RF_STRING_REPLACE3": 1, - "i_SELECT_RF_STRING_REPLACE4": 1, - "i_SELECT_RF_STRING_REPLACE5": 1, - "i_SELECT_RF_STRING_REPLACE2": 1, - "i_SELECT_RF_STRING_REPLACE1": 1, - "i_SELECT_RF_STRING_REPLACE0": 1, - "i_SUBSTR_": 6, - "rfString_Strip": 2, - "rfString_Fwrite": 2, - "i_NPSELECT_RF_STRING_FWRITE": 1, - "i_NPSELECT_RF_STRING_FWRITE1": 1, - "i_NPSELECT_RF_STRING_FWRITE0": 1, - "i_SELECT_RF_STRING_FWRITE": 1, - "i_SELECT_RF_STRING_FWRITE3": 1, - "i_STR_": 8, - "i_FILE_": 16, - "i_ENCODING_": 4, - "i_SELECT_RF_STRING_FWRITE2": 1, - "i_SELECT_RF_STRING_FWRITE1": 1, - "i_SELECT_RF_STRING_FWRITE0": 1, - "rfString_Fwrite_fUTF8": 1, - "closing": 1, - "Attempted": 1, - "manipulation": 1, - "flag": 1, - "off.": 1, - "Rebuild": 1, - "added": 1, - "you": 1, - "#endif//": 1, - "guards": 2, - "READLINE_READLINE_CATS": 3, - "": 1, - "atscntrb_readline_rl_library_version": 1, - "rl_library_version": 1, - "atscntrb_readline_rl_readline_version": 1, - "rl_readline_version": 1, - "atscntrb_readline_readline": 1, - "readline": 1, - "REFU_IO_H": 2, - "xA": 1, - "RF_CR": 1, - "xD": 1, - "REFU_WIN32_VERSION": 1, - "i_PLUSB_WIN32": 2, - "foff_rft": 2, - "off64_t": 1, - "///Fseek": 1, - "Ftelll": 1, - "definitions": 1, - "rfFseek": 2, - "i_OFFSET_": 4, - "i_WHENCE_": 4, - "_fseeki64": 1, - "rfFtell": 2, - "_ftelli64": 1, - "fseeko64": 1, - "ftello64": 1, - "rfFReadLine_UTF32BE": 1, - "rfFgets_UTF32BE": 1, - "rfPopen": 2, - "command": 2, - "i_rfPopen": 2, - "i_CMD_": 2, - "i_MODE_": 2, - "rfPclose": 1, - "///closing": 1, - "#endif//include": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 2, - "": 1, - "": 1, - "": 1, - "sharedObjectsStruct": 1, - "shared": 1, - "R_Zero": 2, - "R_PosInf": 2, - "R_NegInf": 2, - "R_Nan": 2, - "redisServer": 1, - "server": 1, - "redisCommand": 6, - "*commandTable": 1, - "redisCommandTable": 5, - "getCommand": 1, - "setCommand": 1, - "noPreloadGetKeys": 6, - "setnxCommand": 1, - "setexCommand": 1, - "psetexCommand": 1, - "appendCommand": 1, - "strlenCommand": 1, - "delCommand": 1, - "existsCommand": 1, - "setbitCommand": 1, - "getbitCommand": 1, - "setrangeCommand": 1, - "getrangeCommand": 2, - "incrCommand": 1, - "decrCommand": 1, - "mgetCommand": 1, - "rpushCommand": 1, - "lpushCommand": 1, - "rpushxCommand": 1, - "lpushxCommand": 1, - "linsertCommand": 1, - "rpopCommand": 1, - "lpopCommand": 1, - "brpopCommand": 1, - "brpoplpushCommand": 1, - "blpopCommand": 1, - "llenCommand": 1, - "lindexCommand": 1, - "lsetCommand": 1, - "lrangeCommand": 1, - "ltrimCommand": 1, - "lremCommand": 1, - "rpoplpushCommand": 1, - "saddCommand": 1, - "sremCommand": 1, - "smoveCommand": 1, - "sismemberCommand": 1, - "scardCommand": 1, - "spopCommand": 1, - "srandmemberCommand": 1, - "sinterCommand": 2, - "sinterstoreCommand": 1, - "sunionCommand": 1, - "sunionstoreCommand": 1, - "sdiffCommand": 1, - "sdiffstoreCommand": 1, - "zaddCommand": 1, - "zincrbyCommand": 1, - "zremCommand": 1, - "zremrangebyscoreCommand": 1, - "zremrangebyrankCommand": 1, - "zunionstoreCommand": 1, - "zunionInterGetKeys": 4, - "zinterstoreCommand": 1, - "zrangeCommand": 1, - "zrangebyscoreCommand": 1, - "zrevrangebyscoreCommand": 1, - "zcountCommand": 1, - "zrevrangeCommand": 1, - "zcardCommand": 1, - "zscoreCommand": 1, - "zrankCommand": 1, - "zrevrankCommand": 1, - "hsetCommand": 1, - "hsetnxCommand": 1, - "hgetCommand": 1, - "hmsetCommand": 1, - "hmgetCommand": 1, - "hincrbyCommand": 1, - "hincrbyfloatCommand": 1, - "hdelCommand": 1, - "hlenCommand": 1, - "hkeysCommand": 1, - "hvalsCommand": 1, - "hgetallCommand": 1, - "hexistsCommand": 1, - "incrbyCommand": 1, - "decrbyCommand": 1, - "incrbyfloatCommand": 1, - "getsetCommand": 1, - "msetCommand": 1, - "msetnxCommand": 1, - "randomkeyCommand": 1, - "selectCommand": 1, - "moveCommand": 1, - "renameCommand": 1, - "renameGetKeys": 2, - "renamenxCommand": 1, - "expireCommand": 1, - "expireatCommand": 1, - "pexpireCommand": 1, - "pexpireatCommand": 1, - "keysCommand": 1, - "dbsizeCommand": 1, - "authCommand": 3, - "pingCommand": 2, - "echoCommand": 2, - "saveCommand": 1, - "bgsaveCommand": 1, - "bgrewriteaofCommand": 1, - "shutdownCommand": 2, - "lastsaveCommand": 1, - "typeCommand": 1, - "multiCommand": 2, - "execCommand": 2, - "discardCommand": 2, - "syncCommand": 1, - "flushdbCommand": 1, - "flushallCommand": 1, - "sortCommand": 1, - "infoCommand": 4, - "monitorCommand": 2, - "ttlCommand": 1, - "pttlCommand": 1, - "persistCommand": 1, - "slaveofCommand": 2, - "debugCommand": 1, - "configCommand": 1, - "subscribeCommand": 2, - "unsubscribeCommand": 2, - "psubscribeCommand": 2, - "punsubscribeCommand": 2, - "publishCommand": 1, - "watchCommand": 2, - "unwatchCommand": 1, - "clusterCommand": 1, - "restoreCommand": 1, - "migrateCommand": 1, - "askingCommand": 1, - "dumpCommand": 1, - "objectCommand": 1, - "clientCommand": 1, - "evalCommand": 1, - "evalShaCommand": 1, - "slowlogCommand": 1, - "scriptCommand": 2, - "timeCommand": 2, - "bitopCommand": 1, - "bitcountCommand": 1, - "redisLogRaw": 3, - "*msg": 7, - "syslogLevelMap": 2, - "LOG_DEBUG": 1, - "LOG_INFO": 1, - "LOG_NOTICE": 1, - "LOG_WARNING": 1, - "FILE": 3, - "*fp": 3, - "rawmode": 2, - "REDIS_LOG_RAW": 2, - "xff": 3, - "server.verbosity": 4, - "fp": 13, - "server.logfile": 8, - "fopen": 3, - "msg": 10, - "timeval": 4, - "tv": 8, - "gettimeofday": 4, - "strftime": 1, - "localtime": 1, - "tv.tv_sec": 4, - "snprintf": 2, - "tv.tv_usec/1000": 1, - "getpid": 7, - "server.syslog_enabled": 3, - "syslog": 1, - "redisLog": 33, - "*fmt": 2, - "ap": 4, - "REDIS_MAX_LOGMSG_LEN": 1, - "fmt": 4, - "vsnprintf": 1, - "redisLogFromHandler": 2, - "server.daemonize": 5, - "O_APPEND": 2, - "O_CREAT": 2, - "O_WRONLY": 2, - "STDOUT_FILENO": 2, - "ll2string": 3, - "write": 7, - "time": 10, - "oom": 3, - "REDIS_WARNING": 19, - "sleep": 1, - "abort": 1, - "ustime": 7, - "*1000000": 1, - "tv.tv_usec": 3, - "mstime": 5, - "/1000": 1, - "exitFromChild": 1, - "retcode": 3, - "COVERAGE_TEST": 1, - "dictVanillaFree": 1, - "*privdata": 8, - "*val": 6, - "DICT_NOTUSED": 6, - "privdata": 8, - "zfree": 2, - "dictListDestructor": 2, - "listRelease": 1, - "list*": 1, - "dictSdsKeyCompare": 6, - "*key1": 4, - "*key2": 4, - "l1": 4, - "l2": 3, - "sdslen": 14, - "sds": 13, - "key1": 5, - "key2": 5, - "dictSdsKeyCaseCompare": 2, - "strcasecmp": 13, - "dictRedisObjectDestructor": 7, - "decrRefCount": 6, - "dictSdsDestructor": 4, - "sdsfree": 2, - "dictObjKeyCompare": 2, - "robj": 7, - "*o1": 2, - "*o2": 2, - "o1": 7, - "ptr": 18, - "o2": 7, - "dictObjHash": 2, - "*key": 5, - "key": 9, - "dictGenHashFunction": 5, - "dictSdsHash": 4, - "dictSdsCaseHash": 2, - "dictGenCaseHashFunction": 1, - "dictEncObjKeyCompare": 4, - "robj*": 3, - "REDIS_ENCODING_INT": 4, - "getDecodedObject": 3, - "dictEncObjHash": 4, - "REDIS_ENCODING_RAW": 1, - "hash": 12, - "dictType": 8, - "setDictType": 1, - "zsetDictType": 1, - "dbDictType": 2, - "keyptrDictType": 2, - "commandTableDictType": 2, - "hashDictType": 1, - "keylistDictType": 4, - "clusterNodesDictType": 1, - "htNeedsResize": 3, - "dict": 11, - "dictSlots": 3, - "dictSize": 10, - "DICT_HT_INITIAL_SIZE": 2, - "used*100/size": 1, - "REDIS_HT_MINFILL": 1, - "tryResizeHashTables": 2, - "server.dbnum": 8, - "server.db": 23, - ".dict": 9, - "dictResize": 2, - ".expires": 8, - "incrementallyRehash": 2, - "dictIsRehashing": 2, - "dictRehashMilliseconds": 2, - "updateDictResizePolicy": 2, - "server.rdb_child_pid": 12, - "server.aof_child_pid": 10, - "dictEnableResize": 1, - "dictDisableResize": 1, - "activeExpireCycle": 2, - "timelimit": 5, - "*REDIS_EXPIRELOOKUPS_TIME_PERC/REDIS_HZ/100": 1, - "expired": 4, - "redisDb": 3, - "*db": 3, - "db": 10, - "expires": 3, - "slots": 2, - "now": 5, - "num*100/slots": 1, - "REDIS_EXPIRELOOKUPS_PER_CRON": 2, - "dictEntry": 2, - "*de": 2, - "de": 12, - "dictGetRandomKey": 4, - "dictGetSignedIntegerVal": 1, - "dictGetKey": 4, - "*keyobj": 2, - "createStringObject": 11, - "propagateExpire": 2, - "keyobj": 6, - "dbDelete": 2, - "server.stat_expiredkeys": 3, - "xf": 1, - "REDIS_EXPIRELOOKUPS_PER_CRON/4": 1, - "updateLRUClock": 3, - "server.lruclock": 2, - "server.unixtime/REDIS_LRU_CLOCK_RESOLUTION": 1, - "REDIS_LRU_CLOCK_MAX": 1, - "trackOperationsPerSecond": 2, - "server.ops_sec_last_sample_time": 3, - "ops": 1, - "server.stat_numcommands": 4, - "server.ops_sec_last_sample_ops": 3, - "ops_sec": 3, - "ops*1000/t": 1, - "server.ops_sec_samples": 4, - "server.ops_sec_idx": 4, - "%": 2, - "REDIS_OPS_SEC_SAMPLES": 3, - "getOperationsPerSecond": 2, - "sum": 3, - "clientsCronHandleTimeout": 2, - "redisClient": 12, - "time_t": 4, - "server.unixtime": 10, - "server.maxidletime": 3, - "REDIS_SLAVE": 3, - "REDIS_MASTER": 2, - "REDIS_BLOCKED": 2, - "pubsub_channels": 2, - "listLength": 14, - "pubsub_patterns": 2, - "lastinteraction": 3, - "REDIS_VERBOSE": 3, - "freeClient": 1, - "bpop.timeout": 2, - "addReply": 13, - "shared.nullmultibulk": 2, - "unblockClientWaitingData": 1, - "clientsCronResizeQueryBuffer": 2, - "querybuf_size": 3, - "sdsAllocSize": 1, - "querybuf": 6, - "idletime": 2, - "REDIS_MBULK_BIG_ARG": 1, - "querybuf_size/": 1, - "querybuf_peak": 2, - "sdsavail": 1, - "sdsRemoveFreeSpace": 1, - "clientsCron": 2, - "numclients": 3, - "server.clients": 7, - "iterations": 4, - "numclients/": 1, - "REDIS_HZ*10": 1, - "listNode": 4, - "*head": 1, - "listRotate": 1, - "listFirst": 2, - "listNodeValue": 3, - "run_with_period": 6, - "_ms_": 2, - "loops": 2, - "/REDIS_HZ": 2, - "serverCron": 2, - "aeEventLoop": 2, - "*eventLoop": 2, - "*clientData": 1, - "server.cronloops": 3, - "REDIS_NOTUSED": 5, - "eventLoop": 2, - "clientData": 1, - "server.watchdog_period": 3, - "watchdogScheduleSignal": 1, - "zmalloc_used_memory": 8, - "server.stat_peak_memory": 5, - "server.shutdown_asap": 3, - "prepareForShutdown": 2, - "REDIS_OK": 23, - "vkeys": 8, - "server.activerehashing": 2, - "server.slaves": 9, - "server.aof_rewrite_scheduled": 4, - "rewriteAppendOnlyFileBackground": 2, - "statloc": 5, - "wait3": 1, - "WNOHANG": 1, - "exitcode": 3, - "bysignal": 4, - "backgroundSaveDoneHandler": 1, - "backgroundRewriteDoneHandler": 1, - "server.saveparamslen": 3, - "saveparam": 1, - "*sp": 1, - "server.saveparams": 2, - "server.dirty": 3, - "sp": 4, - "changes": 2, - "server.lastsave": 3, - "seconds": 2, - "REDIS_NOTICE": 13, - "rdbSaveBackground": 1, - "server.rdb_filename": 4, - "server.aof_rewrite_perc": 3, - "server.aof_current_size": 2, - "server.aof_rewrite_min_size": 2, - "base": 1, - "server.aof_rewrite_base_size": 4, - "growth": 3, - "server.aof_current_size*100/base": 1, - "server.aof_flush_postponed_start": 2, - "flushAppendOnlyFile": 2, - "server.masterhost": 7, - "freeClientsInAsyncFreeQueue": 1, - "replicationCron": 1, - "server.cluster_enabled": 6, - "clusterCron": 1, - "beforeSleep": 2, - "*ln": 3, - "server.unblocked_clients": 4, - "ln": 8, - "redisAssert": 1, - "listDelNode": 1, - "REDIS_UNBLOCKED": 1, - "server.current_client": 3, - "processInputBuffer": 1, - "createSharedObjects": 2, - "shared.crlf": 2, - "createObject": 31, - "REDIS_STRING": 31, - "sdsnew": 27, - "shared.ok": 3, - "shared.err": 1, - "shared.emptybulk": 1, - "shared.czero": 1, - "shared.cone": 1, - "shared.cnegone": 1, - "shared.nullbulk": 1, - "shared.emptymultibulk": 1, - "shared.pong": 2, - "shared.queued": 2, - "shared.wrongtypeerr": 1, - "shared.nokeyerr": 1, - "shared.syntaxerr": 2, - "shared.sameobjecterr": 1, - "shared.outofrangeerr": 1, - "shared.noscripterr": 1, - "shared.loadingerr": 2, - "shared.slowscripterr": 2, - "shared.masterdownerr": 2, - "shared.bgsaveerr": 2, - "shared.roslaveerr": 2, - "shared.oomerr": 2, - "shared.space": 1, - "shared.colon": 1, - "shared.plus": 1, - "REDIS_SHARED_SELECT_CMDS": 1, - "shared.select": 1, - "sdscatprintf": 24, - "sdsempty": 8, - "shared.messagebulk": 1, - "shared.pmessagebulk": 1, - "shared.subscribebulk": 1, - "shared.unsubscribebulk": 1, - "shared.psubscribebulk": 1, - "shared.punsubscribebulk": 1, - "shared.del": 1, - "shared.rpop": 1, - "shared.lpop": 1, - "REDIS_SHARED_INTEGERS": 1, - "shared.integers": 2, - "REDIS_SHARED_BULKHDR_LEN": 1, - "shared.mbulkhdr": 1, - "shared.bulkhdr": 1, - "initServerConfig": 2, - "getRandomHexChars": 1, - "server.runid": 3, - "REDIS_RUN_ID_SIZE": 2, - "server.arch_bits": 3, - "server.port": 7, - "REDIS_SERVERPORT": 1, - "server.bindaddr": 2, - "server.unixsocket": 7, - "server.unixsocketperm": 2, - "server.ipfd": 9, - "server.sofd": 9, - "REDIS_DEFAULT_DBNUM": 1, - "REDIS_MAXIDLETIME": 1, - "server.client_max_querybuf_len": 1, - "REDIS_MAX_QUERYBUF_LEN": 1, - "server.loading": 4, - "server.syslog_ident": 2, - "zstrdup": 5, - "server.syslog_facility": 2, - "LOG_LOCAL0": 1, - "server.aof_state": 7, - "REDIS_AOF_OFF": 5, - "server.aof_fsync": 1, - "AOF_FSYNC_EVERYSEC": 1, - "server.aof_no_fsync_on_rewrite": 1, - "REDIS_AOF_REWRITE_PERC": 1, - "REDIS_AOF_REWRITE_MIN_SIZE": 1, - "server.aof_last_fsync": 1, - "server.aof_rewrite_time_last": 2, - "server.aof_rewrite_time_start": 2, - "server.aof_delayed_fsync": 2, - "server.aof_fd": 4, - "server.aof_selected_db": 1, - "server.pidfile": 3, - "server.aof_filename": 3, - "server.requirepass": 4, - "server.rdb_compression": 1, - "server.rdb_checksum": 1, - "server.maxclients": 6, - "REDIS_MAX_CLIENTS": 1, - "server.bpop_blocked_clients": 2, - "server.maxmemory": 6, - "server.maxmemory_policy": 11, - "REDIS_MAXMEMORY_VOLATILE_LRU": 3, - "server.maxmemory_samples": 3, - "server.hash_max_ziplist_entries": 1, - "REDIS_HASH_MAX_ZIPLIST_ENTRIES": 1, - "server.hash_max_ziplist_value": 1, - "REDIS_HASH_MAX_ZIPLIST_VALUE": 1, - "server.list_max_ziplist_entries": 1, - "REDIS_LIST_MAX_ZIPLIST_ENTRIES": 1, - "server.list_max_ziplist_value": 1, - "REDIS_LIST_MAX_ZIPLIST_VALUE": 1, - "server.set_max_intset_entries": 1, - "REDIS_SET_MAX_INTSET_ENTRIES": 1, - "server.zset_max_ziplist_entries": 1, - "REDIS_ZSET_MAX_ZIPLIST_ENTRIES": 1, - "server.zset_max_ziplist_value": 1, - "REDIS_ZSET_MAX_ZIPLIST_VALUE": 1, - "server.repl_ping_slave_period": 1, - "REDIS_REPL_PING_SLAVE_PERIOD": 1, - "server.repl_timeout": 1, - "REDIS_REPL_TIMEOUT": 1, - "server.cluster.configfile": 1, - "server.lua_caller": 1, - "server.lua_time_limit": 1, - "REDIS_LUA_TIME_LIMIT": 1, - "server.lua_client": 1, - "server.lua_timedout": 2, - "resetServerSaveParams": 2, - "appendServerSaveParams": 3, - "*60": 1, - "server.masterauth": 1, - "server.masterport": 2, - "server.master": 3, - "server.repl_state": 6, - "REDIS_REPL_NONE": 1, - "server.repl_syncio_timeout": 1, - "REDIS_REPL_SYNCIO_TIMEOUT": 1, - "server.repl_serve_stale_data": 2, - "server.repl_slave_ro": 2, - "server.repl_down_since": 2, - "server.client_obuf_limits": 9, - "REDIS_CLIENT_LIMIT_CLASS_NORMAL": 3, - ".hard_limit_bytes": 3, - ".soft_limit_bytes": 3, - ".soft_limit_seconds": 3, - "REDIS_CLIENT_LIMIT_CLASS_SLAVE": 3, - "*1024*256": 1, - "*1024*64": 1, - "REDIS_CLIENT_LIMIT_CLASS_PUBSUB": 3, - "*1024*32": 1, - "*1024*8": 1, - "/R_Zero": 2, - "R_Zero/R_Zero": 1, - "server.commands": 1, - "dictCreate": 6, - "populateCommandTable": 2, - "server.delCommand": 1, - "lookupCommandByCString": 3, - "server.multiCommand": 1, - "server.lpushCommand": 1, - "server.slowlog_log_slower_than": 1, - "REDIS_SLOWLOG_LOG_SLOWER_THAN": 1, - "server.slowlog_max_len": 1, - "REDIS_SLOWLOG_MAX_LEN": 1, - "server.assert_failed": 1, - "server.assert_file": 1, - "server.assert_line": 1, - "server.bug_report_start": 1, - "adjustOpenFilesLimit": 2, - "rlim_t": 3, - "maxfiles": 6, - "rlimit": 1, - "limit": 3, - "getrlimit": 1, - "RLIMIT_NOFILE": 2, - "oldlimit": 5, - "limit.rlim_cur": 2, - "limit.rlim_max": 1, - "setrlimit": 1, - "initServer": 2, - "signal": 2, - "SIGHUP": 1, - "SIG_IGN": 2, - "SIGPIPE": 1, - "setupSignalHandlers": 2, - "openlog": 1, - "LOG_PID": 1, - "LOG_NDELAY": 1, - "LOG_NOWAIT": 1, - "listCreate": 6, - "server.clients_to_close": 1, - "server.monitors": 2, - "server.el": 7, - "aeCreateEventLoop": 1, - "zmalloc": 2, - "*server.dbnum": 1, - "anetTcpServer": 1, - "server.neterr": 4, - "ANET_ERR": 2, - "unlink": 3, - "anetUnixServer": 1, - ".blocking_keys": 1, - ".watched_keys": 1, - ".id": 1, - "server.pubsub_channels": 2, - "server.pubsub_patterns": 4, - "listSetFreeMethod": 1, - "freePubsubPattern": 1, - "listSetMatchMethod": 1, - "listMatchPubsubPattern": 1, - "aofRewriteBufferReset": 1, - "server.aof_buf": 3, - "server.rdb_save_time_last": 2, - "server.rdb_save_time_start": 2, - "server.stat_numconnections": 2, - "server.stat_evictedkeys": 3, - "server.stat_starttime": 2, - "server.stat_keyspace_misses": 2, - "server.stat_keyspace_hits": 2, - "server.stat_fork_time": 2, - "server.stat_rejected_conn": 2, - "server.lastbgsave_status": 3, - "server.stop_writes_on_bgsave_err": 2, - "aeCreateTimeEvent": 1, - "aeCreateFileEvent": 2, - "AE_READABLE": 2, - "acceptTcpHandler": 1, - "AE_ERR": 2, - "acceptUnixHandler": 1, - "REDIS_AOF_ON": 2, - "LL*": 1, - "REDIS_MAXMEMORY_NO_EVICTION": 2, - "clusterInit": 1, - "scriptingInit": 1, - "slowlogInit": 1, - "bioInit": 1, - "numcommands": 5, - "*f": 2, - "sflags": 1, - "retval": 3, - "arity": 3, - "addReplyErrorFormat": 1, - "authenticated": 3, - "proc": 14, - "addReplyError": 6, - "getkeys_proc": 1, - "firstkey": 1, - "hashslot": 3, - "server.cluster.state": 1, - "REDIS_CLUSTER_OK": 1, - "ask": 3, - "clusterNode": 1, - "*n": 1, - "getNodeByQuery": 1, - "server.cluster.myself": 1, - "addReplySds": 3, - "ip": 4, - "freeMemoryIfNeeded": 2, - "REDIS_CMD_DENYOOM": 1, - "REDIS_ERR": 5, - "REDIS_CMD_WRITE": 2, - "REDIS_REPL_CONNECTED": 3, - "tolower": 2, - "REDIS_MULTI": 1, - "queueMultiCommand": 1, - "call": 1, - "REDIS_CALL_FULL": 1, - "save": 2, - "REDIS_SHUTDOWN_SAVE": 1, - "nosave": 2, - "REDIS_SHUTDOWN_NOSAVE": 1, - "SIGKILL": 2, - "rdbRemoveTempFile": 1, - "aof_fsync": 1, - "rdbSave": 1, - "addReplyBulk": 1, - "addReplyMultiBulkLen": 1, - "addReplyBulkLongLong": 2, - "bytesToHuman": 3, - "n/": 3, - "LL*1024*1024": 2, - "LL*1024*1024*1024": 1, - "genRedisInfoString": 2, - "*section": 2, - "uptime": 2, - "rusage": 1, - "self_ru": 2, - "c_ru": 2, - "lol": 3, - "bib": 3, - "allsections": 12, - "defsections": 11, - "sections": 11, - "section": 14, - "getrusage": 2, - "RUSAGE_SELF": 1, - "RUSAGE_CHILDREN": 1, - "getClientsMaxBuffers": 1, - "utsname": 1, - "sdscat": 14, - "uname": 1, - "REDIS_VERSION": 4, - "redisGitSHA1": 3, - "strtol": 2, - "redisGitDirty": 3, - "name.sysname": 1, - "name.release": 1, - "name.machine": 1, - "aeGetApiName": 1, - "__GNUC_PATCHLEVEL__": 1, - "uptime/": 1, - "*24": 1, - "hmem": 3, - "peak_hmem": 3, - "zmalloc_get_rss": 1, - "lua_gc": 1, - "server.lua": 1, - "LUA_GCCOUNT": 1, - "*1024LL": 1, - "zmalloc_get_fragmentation_ratio": 1, - "ZMALLOC_LIB": 2, - "aofRewriteBufferSize": 2, - "bioPendingJobsOfType": 1, - "REDIS_BIO_AOF_FSYNC": 1, - "perc": 3, - "eta": 4, - "elapsed": 3, - "off_t": 1, - "remaining_bytes": 1, - "server.loading_total_bytes": 3, - "server.loading_loaded_bytes": 3, - "server.loading_start_time": 2, - "elapsed*remaining_bytes": 1, - "/server.loading_loaded_bytes": 1, - "REDIS_REPL_TRANSFER": 2, - "server.repl_transfer_left": 1, - "server.repl_transfer_lastio": 1, - "slaveid": 3, - "listIter": 2, - "li": 6, - "listRewind": 2, - "listNext": 2, - "*slave": 2, - "*state": 1, - "anetPeerToString": 1, - "slave": 3, - "replstate": 1, - "REDIS_REPL_WAIT_BGSAVE_START": 1, - "REDIS_REPL_WAIT_BGSAVE_END": 1, - "REDIS_REPL_SEND_BULK": 1, - "REDIS_REPL_ONLINE": 1, - "self_ru.ru_stime.tv_sec": 1, - "self_ru.ru_stime.tv_usec/1000000": 1, - "self_ru.ru_utime.tv_sec": 1, - "self_ru.ru_utime.tv_usec/1000000": 1, - "c_ru.ru_stime.tv_sec": 1, - "c_ru.ru_stime.tv_usec/1000000": 1, - "c_ru.ru_utime.tv_sec": 1, - "c_ru.ru_utime.tv_usec/1000000": 1, - "calls": 4, - "microseconds": 1, - "microseconds/c": 1, - "keys": 4, - "REDIS_MONITOR": 1, - "slaveseldb": 1, - "listAddNodeTail": 1, - "mem_used": 9, - "mem_tofree": 3, - "mem_freed": 4, - "slaves": 3, - "obuf_bytes": 3, - "getClientOutputBufferMemoryUsage": 1, - "keys_freed": 3, - "bestval": 5, - "bestkey": 9, - "REDIS_MAXMEMORY_ALLKEYS_LRU": 2, - "REDIS_MAXMEMORY_ALLKEYS_RANDOM": 2, - "REDIS_MAXMEMORY_VOLATILE_RANDOM": 1, - "thiskey": 7, - "thisval": 8, - "dictFind": 1, - "dictGetVal": 2, - "estimateObjectIdleTime": 1, - "REDIS_MAXMEMORY_VOLATILE_TTL": 1, - "delta": 54, - "flushSlavesOutputBuffers": 1, - "linuxOvercommitMemoryValue": 2, - "fgets": 1, - "atoi": 3, - "linuxOvercommitMemoryWarning": 2, - "createPidFile": 2, - "daemonize": 2, - "STDIN_FILENO": 1, - "STDERR_FILENO": 2, - "usage": 2, - "redisAsciiArt": 2, - "*16": 2, - "ascii_logo": 1, - "sigtermHandler": 2, - "sig": 2, - "sigaction": 6, - "act": 6, - "sigemptyset": 2, - "act.sa_mask": 2, - "act.sa_flags": 2, - "act.sa_handler": 1, - "SIGTERM": 1, - "HAVE_BACKTRACE": 1, - "SA_NODEFER": 1, - "SA_RESETHAND": 1, - "SA_SIGINFO": 1, - "act.sa_sigaction": 1, - "sigsegvHandler": 1, - "SIGSEGV": 1, - "SIGBUS": 1, - "SIGFPE": 1, - "SIGILL": 1, - "memtest": 2, - "megabytes": 1, - "passes": 1, - "zmalloc_enable_thread_safeness": 1, - "srand": 1, - "dictSetHashFunctionSeed": 1, - "*configfile": 1, - "configfile": 2, - "sdscatrepr": 1, - "loadServerConfig": 1, - "loadAppendOnlyFile": 1, - "/1000000": 2, - "rdbLoad": 1, - "aeSetBeforeSleepProc": 1, - "aeMain": 1, - "aeDeleteEventLoop": 1, - "BOOTSTRAP_H": 2, - "*true": 1, - "*false": 1, - "*eof": 1, - "*empty_list": 1, - "*global_enviroment": 1, - "obj_type": 1, - "scm_bool": 1, - "scm_empty_list": 1, - "scm_eof": 1, - "scm_char": 1, - "scm_int": 1, - "scm_pair": 1, - "scm_symbol": 1, - "scm_prim_fun": 1, - "scm_lambda": 1, - "scm_str": 1, - "scm_file": 1, - "*eval_proc": 1, - "*maybe_add_begin": 1, - "*code": 2, - "init_enviroment": 1, - "*env": 4, - "eval_err": 1, - "__attribute__": 1, - "noreturn": 1, - "define_var": 1, - "set_var": 1, - "*get_var": 1, - "*cond2nested_if": 1, - "*cond": 1, - "*let2lambda": 1, - "*let": 1, - "*and2nested_if": 1, - "*and": 1, - "*or2nested_if": 1, - "*or": 1, - "COMMIT_H": 2, - "*util": 1, - "indegree": 1, - "*parents": 4, - "*tree": 3, - "decoration": 1, - "name_decoration": 3, - "*commit_list_insert": 1, - "commit_list_count": 1, - "*l": 1, - "*commit_list_insert_by_date": 1, - "free_commit_list": 1, - "cmit_fmt": 3, - "CMIT_FMT_RAW": 1, - "CMIT_FMT_MEDIUM": 2, - "CMIT_FMT_DEFAULT": 1, - "CMIT_FMT_SHORT": 1, - "CMIT_FMT_FULL": 1, - "CMIT_FMT_FULLER": 1, - "CMIT_FMT_ONELINE": 1, - "CMIT_FMT_EMAIL": 1, - "CMIT_FMT_USERFORMAT": 1, - "CMIT_FMT_UNSPECIFIED": 1, - "pretty_print_context": 6, - "abbrev": 1, - "*subject": 1, - "*after_subject": 1, - "preserve_subject": 1, - "date_mode": 2, - "date_mode_explicit": 1, - "need_8bit_cte": 2, - "show_notes": 1, - "reflog_walk_info": 1, - "*reflog_info": 1, - "*output_encoding": 2, - "userformat_want": 2, - "notes": 1, - "has_non_ascii": 1, - "*text": 1, - "rev_info": 2, - "*logmsg_reencode": 1, - "*reencode_commit_message": 1, - "**encoding_p": 1, - "get_commit_format": 1, - "*arg": 1, - "*format_subject": 1, - "*sb": 7, - "*line_separator": 1, - "userformat_find_requirements": 1, - "format_commit_message": 1, - "*context": 1, - "pretty_print_commit": 1, - "*pp": 4, - "pp_commit_easy": 1, - "pp_user_info": 1, - "*what": 1, - "*line": 1, - "*encoding": 2, - "pp_title_line": 1, - "**msg_p": 2, - "pp_remainder": 1, - "indent": 1, - "*pop_most_recent_commit": 1, - "mark": 3, - "*pop_commit": 1, - "**stack": 1, - "clear_commit_marks": 1, - "clear_commit_marks_for_object_array": 1, - "object_array": 2, - "sort_in_topological_order": 1, - "list": 1, - "lifo": 1, - "FLEX_ARRAY": 1, - "*read_graft_line": 1, - "*lookup_commit_graft": 1, - "*get_merge_bases": 1, - "*rev1": 1, - "*rev2": 1, - "*get_merge_bases_many": 1, - "*one": 1, - "**twos": 1, - "*get_octopus_merge_bases": 1, - "*in": 1, - "register_shallow": 1, - "unregister_shallow": 1, - "for_each_commit_graft": 1, - "each_commit_graft_fn": 1, - "is_repository_shallow": 1, - "*get_shallow_commits": 1, - "*heads": 2, - "shallow_flag": 1, - "not_shallow_flag": 1, - "is_descendant_of": 1, - "in_merge_bases": 1, - "interactive_add": 1, - "patch": 1, - "run_add_interactive": 1, - "*revision": 1, - "*patch_mode": 1, - "**pathspec": 1, - "single_parent": 1, - "*reduce_heads": 1, - "commit_extra_header": 7, - "append_merge_tag_headers": 1, - "***tail": 1, - "commit_tree": 1, - "*author": 2, - "*sign_commit": 2, - "commit_tree_extended": 1, - "*read_commit_extra_headers": 1, - "*read_commit_extra_header_lines": 1, - "free_commit_extra_headers": 1, - "*extra": 1, - "merge_remote_util": 1, - "*get_merge_parent": 1, - "parse_signed_commit": 1, - "*message": 1, - "*signature": 1, - "git_cache_init": 1, - "git_cache": 4, - "*cache": 4, - "git_cached_obj_freeptr": 1, - "free_ptr": 2, - "git__size_t_powerof2": 1, - "cache": 26, - "size_mask": 6, - "lru_count": 1, - "free_obj": 4, - "git_mutex_init": 1, - "nodes": 10, - "git_cached_obj": 5, - "GITERR_CHECK_ALLOC": 3, - "git_cache_free": 1, - "git_cached_obj_decref": 3, - "*git_cache_get": 1, - "*oid": 2, - "*node": 2, - "*result": 1, - "oid": 17, - "git_mutex_lock": 2, - "node": 9, - "git_oid_cmp": 6, - "git_cached_obj_incref": 3, - "git_mutex_unlock": 2, - "*git_cache_try_store": 1, - "*_entry": 1, - "*entry": 2, - "_entry": 1, - "entry": 17, - "HELLO_H": 2, - "hello": 1, - "": 1, - "_Included_jni_JniLayer": 2, - "JNIEXPORT": 6, - "jlong": 6, - "JNICALL": 6, - "Java_jni_JniLayer_jni_1layer_1initialize": 1, - "JNIEnv": 6, - "jobject": 6, - "jintArray": 1, - "jint": 7, - "Java_jni_JniLayer_jni_1layer_1mainloop": 1, - "Java_jni_JniLayer_jni_1layer_1set_1button": 1, - "Java_jni_JniLayer_jni_1layer_1set_1analog": 1, - "jfloat": 1, - "Java_jni_JniLayer_jni_1layer_1report_1analog_1chg": 1, - "Java_jni_JniLayer_jni_1layer_1kill": 1, - "VALUE": 13, - "rb_cRDiscount": 4, - "rb_rdiscount_to_html": 2, - "*res": 2, - "szres": 8, - "rb_funcall": 14, - "rb_intern": 15, - "rb_str_buf_new": 2, - "Check_Type": 2, - "T_STRING": 2, - "rb_rdiscount__get_flags": 3, - "MMIOT": 2, - "*doc": 2, - "mkd_string": 2, - "RSTRING_PTR": 2, - "RSTRING_LEN": 2, - "mkd_compile": 2, - "doc": 6, - "mkd_document": 1, - "res": 4, - "rb_str_cat": 4, - "mkd_cleanup": 2, - "rb_respond_to": 1, - "rb_rdiscount_toc_content": 2, - "mkd_toc": 1, - "ruby_obj": 11, - "MKD_TABSTOP": 1, - "MKD_NOHEADER": 1, - "Qtrue": 10, - "MKD_NOPANTS": 1, - "MKD_NOHTML": 1, - "MKD_TOC": 1, - "MKD_NOIMAGE": 1, - "MKD_NOLINKS": 1, - "MKD_NOTABLES": 1, - "MKD_STRICT": 1, - "MKD_AUTOLINK": 1, - "MKD_SAFELINK": 1, - "MKD_NO_EXT": 1, - "Init_rdiscount": 1, - "rb_define_class": 1, - "rb_cObject": 1, - "rb_define_method": 2, - "*diff_prefix_from_pathspec": 1, - "git_strarray": 2, - "*pathspec": 2, - "git_buf": 3, - "GIT_BUF_INIT": 3, - "*scan": 2, - "git_buf_common_prefix": 1, - "pathspec": 15, - "scan": 4, - "prefix.ptr": 2, - "git__iswildcard": 1, - "git_buf_truncate": 1, - "prefix.size": 1, - "git_buf_detach": 1, - "git_buf_free": 4, - "diff_pathspec_is_interesting": 2, - "*str": 1, - "diff_path_matches_pathspec": 3, - "git_diff_list": 17, - "*diff": 8, - "*path": 2, - "git_attr_fnmatch": 4, - "*match": 3, - "pathspec.length": 1, - "git_vector_foreach": 4, - "p_fnmatch": 1, - "pattern": 3, - "path": 20, - "FNM_NOMATCH": 1, - "GIT_ATTR_FNMATCH_HASWILD": 1, - "strncmp": 1, - "GIT_ATTR_FNMATCH_NEGATIVE": 1, - "git_diff_delta": 19, - "*diff_delta__alloc": 1, - "git_delta_t": 5, - "*delta": 6, - "git__calloc": 3, - "old_file.path": 12, - "git_pool_strdup": 3, - "pool": 12, - "new_file.path": 6, - "opts.flags": 8, - "GIT_DIFF_REVERSE": 3, - "GIT_DELTA_ADDED": 4, - "GIT_DELTA_DELETED": 7, - "*diff_delta__dup": 1, - "*d": 1, - "git_pool": 4, - "*pool": 3, - "fail": 19, - "*diff_delta__merge_like_cgit": 1, - "*b": 6, - "*dup": 1, - "diff_delta__dup": 3, - "dup": 15, - "new_file.oid": 7, - "git_oid_cpy": 5, - "new_file.mode": 4, - "new_file.size": 3, - "new_file.flags": 4, - "old_file.oid": 3, - "GIT_DELTA_UNTRACKED": 5, - "GIT_DELTA_IGNORED": 5, - "GIT_DELTA_UNMODIFIED": 11, - "diff_delta__from_one": 5, - "git_index_entry": 8, - "GIT_DIFF_INCLUDE_IGNORED": 1, - "GIT_DIFF_INCLUDE_UNTRACKED": 1, - "diff_delta__alloc": 2, - "GIT_DELTA_MODIFIED": 3, - "old_file.mode": 2, - "old_file.size": 1, - "file_size": 6, - "old_file.flags": 2, - "GIT_DIFF_FILE_VALID_OID": 4, - "git_vector_insert": 4, - "deltas": 8, - "diff_delta__from_two": 2, - "*old_entry": 1, - "*new_entry": 1, - "*new_oid": 1, - "GIT_DIFF_INCLUDE_UNMODIFIED": 1, - "*temp": 1, - "old_entry": 5, - "new_entry": 5, - "new_oid": 3, - "git_oid_iszero": 2, - "*diff_strdup_prefix": 1, - "git_pool_strcat": 1, - "git_pool_strndup": 1, - "diff_delta__cmp": 3, - "*da": 1, - "da": 2, - "config_bool": 5, - "*cfg": 2, - "defvalue": 2, - "git_config_get_bool": 1, - "cfg": 6, - "giterr_clear": 1, - "*git_diff_list_alloc": 1, - "git_repository": 7, - "*repo": 7, - "git_diff_options": 7, - "*opts": 6, - "repo": 23, - "git_vector_init": 3, - "git_pool_init": 2, - "git_repository_config__weakptr": 1, - "diffcaps": 13, - "GIT_DIFFCAPS_HAS_SYMLINKS": 2, - "GIT_DIFFCAPS_ASSUME_UNCHANGED": 2, - "GIT_DIFFCAPS_TRUST_EXEC_BIT": 2, - "GIT_DIFFCAPS_TRUST_CTIME": 2, - "opts": 24, - "opts.pathspec": 2, - "opts.old_prefix": 4, - "diff_strdup_prefix": 2, - "old_prefix": 2, - "DIFF_OLD_PREFIX_DEFAULT": 1, - "opts.new_prefix": 4, - "new_prefix": 2, - "DIFF_NEW_PREFIX_DEFAULT": 1, - "*swap": 1, - "pathspec.count": 2, - "*pattern": 1, - "pathspec.strings": 1, - "GIT_ATTR_FNMATCH_ALLOWSPACE": 1, - "git_attr_fnmatch__parse": 1, - "GIT_ENOTFOUND": 1, - "git_diff_list_free": 3, - "deltas.contents": 1, - "git_vector_free": 3, - "pathspec.contents": 1, - "git_pool_clear": 2, - "oid_for_workdir_item": 2, - "full_path": 3, - "git_buf_joinpath": 1, - "git_repository_workdir": 1, - "S_ISLNK": 2, - "git_odb__hashlink": 1, - "full_path.ptr": 2, - "git__is_sizet": 1, - "giterr_set": 1, - "GITERR_OS": 1, - "git_futils_open_ro": 1, - "git_odb__hashfd": 1, - "GIT_OBJ_BLOB": 1, - "p_close": 1, - "EXEC_BIT_MASK": 3, - "maybe_modified": 2, - "git_iterator": 8, - "*old_iter": 2, - "*oitem": 2, - "*new_iter": 2, - "*nitem": 2, - "noid": 4, - "*use_noid": 1, - "omode": 8, - "oitem": 29, - "nmode": 10, - "nitem": 32, - "GIT_UNUSED": 1, - "old_iter": 8, - "S_ISREG": 1, - "GIT_MODE_TYPE": 3, - "GIT_MODE_PERMS_MASK": 1, - "flags_extended": 2, - "GIT_IDXENTRY_INTENT_TO_ADD": 1, - "GIT_IDXENTRY_SKIP_WORKTREE": 1, - "new_iter": 13, - "GIT_ITERATOR_WORKDIR": 2, - "ctime.seconds": 2, - "mtime.seconds": 2, - "GIT_DIFFCAPS_USE_DEV": 1, - "dev": 2, - "ino": 2, - "uid": 2, - "gid": 2, - "S_ISGITLINK": 1, - "git_submodule": 1, - "*sub": 1, - "GIT_DIFF_IGNORE_SUBMODULES": 1, - "git_submodule_lookup": 1, - "ignore": 1, - "GIT_SUBMODULE_IGNORE_ALL": 1, - "use_noid": 2, - "diff_from_iterators": 5, - "**diff_ptr": 1, - "ignore_prefix": 6, - "git_diff_list_alloc": 1, - "old_src": 1, - "new_src": 3, - "git_iterator_current": 2, - "git_iterator_advance": 5, - "delta_type": 8, - "git_buf_len": 1, - "git__prefixcmp": 2, - "git_buf_cstr": 1, - "S_ISDIR": 1, - "GIT_DIFF_RECURSE_UNTRACKED_DIRS": 1, - "git_iterator_current_is_ignored": 2, - "git_buf_sets": 1, - "git_iterator_advance_into_directory": 1, - "git_iterator_free": 4, - "*diff_ptr": 2, - "git_diff_tree_to_tree": 1, - "git_tree": 4, - "*old_tree": 3, - "*new_tree": 1, - "**diff": 4, - "diff_prefix_from_pathspec": 4, - "old_tree": 5, - "new_tree": 2, - "git_iterator_for_tree_range": 4, - "git_diff_index_to_tree": 1, - "git_iterator_for_index_range": 2, - "git_diff_workdir_to_index": 1, - "git_iterator_for_workdir_range": 2, - "git_diff_workdir_to_tree": 1, - "git_diff_merge": 1, - "*onto": 1, - "*from": 1, - "onto_pool": 7, - "git_vector": 1, - "onto_new": 6, - "onto": 7, - "deltas.length": 4, - "GIT_VECTOR_GET": 2, - "diff_delta__merge_like_cgit": 1, - "git_vector_swap": 1, - "git_pool_swap": 1 + "yajl_free_error": 1 }, "C#": { - "using": 5, - "System": 1, - ";": 8, - "System.Collections.Generic": 1, - "System.Linq": 1, - "System.Text": 1, - "System.Threading.Tasks": 1, - "namespace": 1, - "LittleSampleApp": 1, - "{": 5, - "///": 4, - "": 1, - "Just": 1, - "what": 1, - "it": 2, - "says": 1, - "on": 1, - "the": 5, - "tin.": 1, - "A": 1, - "little": 1, - "sample": 1, - "application": 1, - "for": 4, - "Linguist": 1, - "to": 4, - "try": 1, - "out.": 1, - "": 1, - "class": 1, - "Program": 1, - "static": 1, - "void": 1, - "Main": 1, - "(": 3, - "string": 1, - "[": 1, - "]": 1, - "args": 1, - ")": 3, - "Console.WriteLine": 2, - "}": 5, "@": 1, + "{": 5, "ViewBag.Title": 1, + ";": 8, + "}": 5, "@section": 1, "featured": 1, "
": 1, @@ -10056,9 +10020,11 @@ "and": 6, "samples": 1, "": 1, + "to": 4, "help": 1, "you": 4, "get": 1, + "the": 5, "most": 1, "from": 1, "MVC.": 1, @@ -10102,6 +10068,7 @@ "control": 1, "over": 1, "markup": 1, + "for": 4, "enjoyable": 1, "agile": 1, "development.": 1, @@ -10129,6 +10096,7 @@ "your": 2, "coding": 1, "makes": 1, + "it": 2, "easy": 1, "install": 1, "update": 1, @@ -10149,21 +10117,1707 @@ "mix": 1, "price": 1, "applications.": 1, - "": 1 + "": 1, + "using": 5, + "System": 1, + "System.Collections.Generic": 1, + "System.Linq": 1, + "System.Text": 1, + "System.Threading.Tasks": 1, + "namespace": 1, + "LittleSampleApp": 1, + "///": 4, + "": 1, + "Just": 1, + "what": 1, + "says": 1, + "on": 1, + "tin.": 1, + "A": 1, + "little": 1, + "sample": 1, + "application": 1, + "Linguist": 1, + "try": 1, + "out.": 1, + "": 1, + "class": 1, + "Program": 1, + "static": 1, + "void": 1, + "Main": 1, + "(": 3, + "string": 1, + "[": 1, + "]": 1, + "args": 1, + ")": 3, + "Console.WriteLine": 2 }, "C++": { + "class": 40, + "Bar": 2, + "{": 726, + "protected": 4, + "char": 127, + "*name": 6, + ";": 2783, + "public": 33, + "void": 241, + "hello": 2, + "(": 3102, + ")": 3105, + "}": 726, "//": 315, + "///": 843, + "mainpage": 1, + "C": 6, + "library": 14, + "for": 105, + "Broadcom": 3, + "BCM": 14, + "as": 28, + "used": 17, + "in": 165, + "Raspberry": 6, + "Pi": 5, + "This": 19, + "is": 102, + "a": 157, + "RPi": 17, + ".": 16, + "It": 7, + "provides": 3, + "access": 17, + "to": 254, + "GPIO": 87, + "and": 118, + "other": 17, + "IO": 2, + "functions": 19, + "on": 55, + "the": 541, + "chip": 9, + "allowing": 3, + "pins": 40, + "pin": 90, + "IDE": 4, + "plug": 3, + "board": 2, + "so": 2, + "you": 29, + "can": 21, + "control": 17, + "interface": 9, + "with": 33, + "various": 4, + "external": 3, + "devices.": 1, + "reading": 3, + "digital": 2, + "inputs": 2, + "setting": 2, + "outputs": 1, + "using": 11, + "SPI": 44, + "I2C": 29, + "accessing": 2, + "system": 13, + "timers.": 1, + "Pin": 65, + "event": 3, + "detection": 2, + "supported": 3, + "by": 53, + "polling": 1, + "interrupts": 1, + "are": 36, + "not": 29, + "+": 80, + "compatible": 1, + "installs": 1, + "header": 7, + "file": 31, + "non": 2, + "-": 438, + "shared": 2, + "any": 23, + "Linux": 2, + "based": 4, + "distro": 1, + "but": 5, + "clearly": 1, + "no": 7, + "use": 37, + "except": 2, + "or": 44, + "another": 1, + "The": 50, + "version": 38, + "of": 215, + "package": 1, + "that": 36, + "this": 57, + "documentation": 3, + "refers": 1, + "be": 35, + "downloaded": 1, + "from": 91, + "http": 11, + "//www.airspayce.com/mikem/bcm2835/bcm2835": 1, + "tar.gz": 1, + "You": 9, + "find": 2, + "latest": 2, + "at": 20, + "//www.airspayce.com/mikem/bcm2835": 1, + "Several": 1, + "example": 3, + "programs": 4, + "provided.": 1, + "Based": 1, + "data": 26, + "//elinux.org/RPi_Low": 1, + "level_peripherals": 1, + "//www.raspberrypi.org/wp": 1, + "content/uploads/2012/02/BCM2835": 1, + "ARM": 5, + "Peripherals.pdf": 1, + "//www.scribd.com/doc/101830961/GPIO": 2, + "Pads": 3, + "Control2": 2, + "also": 3, + "online": 1, + "help": 1, + "discussion": 1, + "//groups.google.com/group/bcm2835": 1, + "Please": 4, + "group": 23, + "all": 11, + "questions": 1, + "discussions": 1, + "topic.": 1, + "Do": 1, + "contact": 1, + "author": 3, + "directly": 2, + "unless": 1, + "it": 19, + "discuss": 1, + "commercial": 1, + "licensing.": 1, + "Tested": 1, + "debian6": 1, + "wheezy": 3, + "raspbian": 3, + "Occidentalisv01": 2, + "CAUTION": 1, + "has": 29, + "been": 14, + "observed": 1, + "when": 22, + "detect": 3, + "enables": 3, + "such": 4, + "bcm2835_gpio_len": 5, + "pulled": 1, + "LOW": 8, + "cause": 1, + "temporary": 1, + "hangs": 1, + "Occidentalisv01.": 1, + "Reason": 1, + "yet": 1, + "determined": 1, + "suspect": 1, + "an": 23, + "interrupt": 3, + "handler": 1, + "hitting": 1, + "hard": 1, + "loop": 2, + "those": 3, + "OSs.": 1, + "If": 11, + "must": 6, + "friends": 2, + "make": 6, + "sure": 6, + "disable": 2, + "bcm2835_gpio_cler_len": 1, + "after": 18, + "use.": 1, + "par": 9, + "Installation": 1, + "consists": 1, + "single": 2, + "which": 14, + "will": 15, + "installed": 1, + "usual": 3, + "places": 1, + "install": 3, + "code": 12, + "#": 1, + "download": 2, + "say": 1, + "bcm2835": 7, + "xx.tar.gz": 2, + "then": 15, + "tar": 1, + "zxvf": 1, + "cd": 1, + "xx": 2, + "./configure": 1, + "sudo": 2, + "check": 4, + "endcode": 2, + "Physical": 21, + "Addresses": 6, + "bcm2835_peri_read": 3, + "bcm2835_peri_write": 3, + "bcm2835_peri_set_bits": 2, + "low": 5, + "level": 10, + "peripheral": 14, + "register": 17, + "functions.": 4, + "They": 1, + "designed": 3, + "physical": 4, + "addresses": 4, + "described": 1, + "section": 6, + "BCM2835": 2, + "Peripherals": 1, + "manual.": 1, + "range": 3, + "FFFFFF": 1, + "peripherals.": 1, + "bus": 4, + "peripherals": 2, + "set": 18, + "up": 18, + "map": 3, + "onto": 1, + "address": 13, + "starting": 1, + "E000000.": 1, + "Thus": 1, + "advertised": 1, + "manual": 8, + "Ennnnnn": 1, + "available": 6, + "nnnnnn.": 1, + "base": 8, + "registers": 12, + "following": 2, + "externals": 1, + "bcm2835_gpio": 2, + "bcm2835_pwm": 2, + "bcm2835_clk": 2, + "bcm2835_pads": 2, + "bcm2835_spio0": 1, + "bcm2835_st": 1, + "bcm2835_bsc0": 1, + "bcm2835_bsc1": 1, + "Numbering": 1, + "numbering": 1, + "different": 5, + "inconsistent": 1, + "underlying": 4, + "numbering.": 1, + "//elinux.org/RPi_BCM2835_GPIOs": 1, + "some": 4, + "well": 1, + "power": 1, + "ground": 1, + "pins.": 1, + "Not": 4, + "header.": 1, + "Version": 40, + "P5": 6, + "connector": 1, + "V": 2, + "Gnd.": 1, + "passed": 4, + "number": 52, + "_not_": 1, + "number.": 1, + "There": 1, + "symbolic": 1, + "definitions": 3, + "each": 7, + "should": 10, + "convenience.": 1, + "See": 7, + "ref": 32, + "RPiGPIOPin.": 22, + "Pins": 2, + "bcm2835_spi_*": 1, + "allow": 5, + "SPI0": 17, + "send": 3, + "received": 3, + "Serial": 3, + "Peripheral": 6, + "Interface": 2, + "For": 6, + "more": 4, + "information": 3, + "about": 6, + "see": 14, + "//en.wikipedia.org/wiki/Serial_Peripheral_Interface_Bus": 1, + "When": 12, + "bcm2835_spi_begin": 3, + "called": 13, + "changes": 2, + "bahaviour": 1, + "their": 6, + "default": 14, + "behaviour": 1, + "order": 14, + "support": 4, + "SPI.": 1, + "While": 1, + "able": 2, + "state": 33, + "through": 4, + "bcm2835_spi_gpio_write": 1, + "bcm2835_spi_end": 4, + "revert": 1, + "configured": 1, + "controled": 1, + "bcm2835_gpio_*": 1, + "calls.": 1, + "P1": 56, + "MOSI": 8, + "MISO": 6, + "CLK": 6, + "CE0": 5, + "CE1": 6, + "bcm2835_i2c_*": 2, + "BSC": 10, + "generically": 1, + "referred": 1, + "I": 4, + "//en.wikipedia.org/wiki/I": 1, + "%": 7, + "C2": 1, + "B2C": 1, + "V2": 2, + "SDA": 3, + "SLC": 1, + "Real": 1, + "Time": 1, + "performance": 2, + "constraints": 2, + "user": 3, + "i.e.": 1, + "they": 2, + "run": 2, + "Such": 1, + "part": 1, + "kernel": 4, + "usually": 2, + "subject": 1, + "paging": 1, + "swapping": 2, + "while": 17, + "does": 4, + "things": 1, + "besides": 1, + "running": 1, + "your": 12, + "program.": 1, + "means": 8, + "expect": 2, + "get": 5, + "real": 4, + "time": 10, + "timing": 3, + "programs.": 1, + "In": 2, + "particular": 1, + "there": 4, + "guarantee": 1, + "bcm2835_delay": 5, + "bcm2835_delayMicroseconds": 6, + "return": 240, + "exactly": 2, + "requested.": 1, + "fact": 2, + "depending": 1, + "activity": 1, + "host": 1, + "etc": 1, + "might": 1, + "significantly": 1, + "longer": 1, + "delay": 9, + "times": 2, + "than": 6, + "one": 73, + "asked": 1, + "for.": 1, + "So": 1, + "please": 2, + "dont": 1, + "request.": 1, + "Arjan": 2, + "reports": 1, + "prevent": 4, + "fragment": 2, + "struct": 13, + "sched_param": 1, + "sp": 4, + "memset": 3, + "&": 203, + "sizeof": 15, + "sp.sched_priority": 1, + "sched_get_priority_max": 1, + "SCHED_FIFO": 2, + "sched_setscheduler": 1, + "mlockall": 1, + "MCL_CURRENT": 1, + "|": 40, + "MCL_FUTURE": 1, + "Open": 2, + "Source": 2, + "Licensing": 2, + "GPL": 2, + "appropriate": 7, + "option": 1, + "if": 359, + "want": 5, + "share": 2, + "source": 12, + "application": 2, + "everyone": 1, + "distribute": 1, + "give": 2, + "them": 1, + "right": 9, + "who": 1, + "uses": 4, + "it.": 3, + "wish": 2, + "software": 1, + "under": 2, + "contribute": 1, + "open": 6, + "community": 1, + "accordance": 1, + "distributed.": 1, + "//www.gnu.org/copyleft/gpl.html": 1, + "COPYING": 1, + "Acknowledgements": 1, + "Some": 1, + "inspired": 2, + "Dom": 1, + "Gert.": 1, + "Alan": 1, + "Barr.": 1, + "Revision": 1, + "History": 1, + "Initial": 1, + "release": 1, + "Minor": 1, + "bug": 1, + "fixes": 1, + "Added": 11, + "bcm2835_spi_transfern": 3, + "Fixed": 4, + "problem": 2, + "prevented": 1, + "being": 4, + "used.": 2, + "Reported": 5, + "David": 1, + "Robinson.": 1, + "bcm2835_close": 4, + "deinit": 1, + "library.": 3, + "Suggested": 1, + "sar": 1, + "Ortiz": 1, + "Document": 1, + "testing": 2, + "Functions": 1, + "bcm2835_gpio_ren": 3, + "bcm2835_gpio_fen": 3, + "bcm2835_gpio_hen": 3, + "bcm2835_gpio_aren": 3, + "bcm2835_gpio_afen": 3, + "now": 4, + "only": 6, + "specified.": 1, + "Other": 1, + "were": 1, + "already": 1, + "previously": 10, + "enabled": 4, + "stay": 1, + "enabled.": 1, + "bcm2835_gpio_clr_ren": 2, + "bcm2835_gpio_clr_fen": 2, + "bcm2835_gpio_clr_hen": 2, + "bcm2835_gpio_clr_len": 2, + "bcm2835_gpio_clr_aren": 2, + "bcm2835_gpio_clr_afen": 2, + "clear": 3, + "enable": 3, + "individual": 1, + "suggested": 3, + "Andreas": 1, + "Sundstrom.": 1, + "bcm2835_spi_transfernb": 2, + "buffers": 3, + "read": 21, + "write.": 1, + "Improvements": 3, + "barrier": 3, + "maddin.": 1, + "contributed": 1, + "mikew": 1, + "noticed": 1, + "was": 6, + "mallocing": 1, + "memory": 14, + "mmaps": 1, + "/dev/mem.": 1, + "ve": 4, + "removed": 1, + "mallocs": 1, + "frees": 1, + "found": 1, + "calling": 9, + "nanosleep": 7, + "takes": 1, + "least": 2, + "us.": 1, + "need": 6, + "link": 3, + "version.": 1, + "s": 26, + "doc": 1, + "Also": 1, + "added": 2, + "define": 2, + "passwrd": 1, + "value": 50, + "Gert": 1, + "says": 1, + "needed": 3, + "change": 3, + "pad": 4, + "settings.": 1, + "Changed": 1, + "names": 3, + "collisions": 1, + "wiringPi.": 1, + "Macros": 2, + "delayMicroseconds": 3, + "disabled": 2, + "defining": 1, + "BCM2835_NO_DELAY_COMPATIBILITY": 2, + "incorrect": 2, + "New": 6, + "mapping": 3, + "Hardware": 1, + "pointers": 2, + "initialisation": 2, + "externally": 1, + "bcm2835_spi0.": 1, + "Now": 4, + "compiles": 1, + "even": 2, + "CLOCK_MONOTONIC_RAW": 1, + "CLOCK_MONOTONIC": 3, + "instead.": 1, + "errors": 1, + "divider": 15, + "frequencies": 2, + "MHz": 14, + "clock.": 6, + "Ben": 1, + "Simpson.": 1, + "end": 23, + "examples": 1, + "Mark": 5, + "Wolfe.": 1, + "bcm2835_gpio_set_multi": 2, + "bcm2835_gpio_clr_multi": 2, + "bcm2835_gpio_write_multi": 4, + "mask": 20, + "once.": 1, + "Requested": 2, + "Sebastian": 2, + "Loncar.": 2, + "bcm2835_gpio_write_mask.": 1, + "Changes": 1, + "timer": 2, + "counter": 1, + "instead": 4, + "clock_gettime": 1, + "improved": 1, + "accuracy.": 1, + "No": 2, + "lrt": 1, + "now.": 1, + "Contributed": 1, + "van": 1, + "Vught.": 1, + "Removed": 1, + "inlines": 1, + "previous": 6, + "patch": 1, + "since": 3, + "don": 1, + "t": 15, + "seem": 1, + "work": 1, + "everywhere.": 1, + "olly.": 1, + "Patch": 2, + "Dootson": 2, + "close": 7, + "/dev/mem": 4, + "granted.": 1, + "susceptible": 1, + "bit": 19, + "overruns.": 1, + "courtesy": 1, + "Jeremy": 1, + "Mortis.": 1, + "definition": 3, + "BCM2835_GPFEN0": 2, + "broke": 1, + "ability": 1, + "falling": 4, + "edge": 8, + "events.": 1, + "Dootson.": 2, + "bcm2835_i2c_set_baudrate": 2, + "bcm2835_i2c_read_register_rs.": 1, + "bcm2835_i2c_read": 4, + "bcm2835_i2c_write": 4, + "fix": 1, + "ocasional": 1, + "reads": 2, + "completing.": 1, + "Patched": 1, + "p": 6, + "[": 293, + "atched": 1, + "his": 1, + "submitted": 1, + "high": 5, + "load": 1, + "processes.": 1, + "Updated": 1, + "distribution": 1, + "location": 6, + "details": 1, + "airspayce.com": 1, + "missing": 1, + "unmapmem": 1, + "pads": 7, + "leak.": 1, + "Hartmut": 1, + "Henkel.": 1, + "Mike": 1, + "McCauley": 1, + "mikem@airspayce.com": 1, + "DO": 1, + "NOT": 3, + "CONTACT": 1, + "THE": 2, + "AUTHOR": 1, + "DIRECTLY": 1, + "USE": 1, + "LISTS": 1, "#ifndef": 29, - "BOOST_ASIO_DETAIL_IMPL_EPOLL_REACTOR_IPP": 3, + "BCM2835_H": 3, "#define": 343, + "#include": 129, + "": 2, + "defgroup": 7, + "constants": 1, + "Constants": 1, + "passing": 1, + "values": 3, + "here": 1, + "@": 14, + "HIGH": 12, + "true": 49, + "volts": 2, + "pin.": 21, + "false": 48, + "Speed": 1, + "core": 1, + "clock": 21, + "core_clk": 1, + "BCM2835_CORE_CLK_HZ": 1, + "<": 255, + "Base": 17, + "Address": 10, + "BCM2835_PERI_BASE": 9, + "System": 10, + "Timer": 9, + "BCM2835_ST_BASE": 1, + "BCM2835_GPIO_PADS": 2, + "Clock/timer": 1, + "BCM2835_CLOCK_BASE": 1, + "BCM2835_GPIO_BASE": 6, + "BCM2835_SPI0_BASE": 1, + "BSC0": 2, + "BCM2835_BSC0_BASE": 1, + "PWM": 2, + "BCM2835_GPIO_PWM": 1, + "C000": 1, + "BSC1": 2, + "BCM2835_BSC1_BASE": 1, + "ST": 1, + "registers.": 10, + "Available": 8, + "bcm2835_init": 11, + "extern": 72, + "volatile": 13, + "uint32_t": 39, + "*bcm2835_st": 1, + "*bcm2835_gpio": 1, + "*bcm2835_pwm": 1, + "*bcm2835_clk": 1, + "PADS": 1, + "*bcm2835_pads": 1, + "*bcm2835_spi0": 1, + "*bcm2835_bsc0": 1, + "*bcm2835_bsc1": 1, + "Size": 2, + "page": 5, + "BCM2835_PAGE_SIZE": 1, + "*1024": 2, + "block": 7, + "BCM2835_BLOCK_SIZE": 1, + "offsets": 2, + "BCM2835_GPIO_BASE.": 1, + "Offsets": 1, + "into": 6, + "bytes": 29, + "per": 3, + "Register": 1, + "View": 1, + "BCM2835_GPFSEL0": 1, + "Function": 8, + "Select": 49, + "BCM2835_GPFSEL1": 1, + "BCM2835_GPFSEL2": 1, + "BCM2835_GPFSEL3": 1, + "c": 72, + "BCM2835_GPFSEL4": 1, + "BCM2835_GPFSEL5": 1, + "BCM2835_GPSET0": 1, + "Output": 6, + "Set": 2, + "BCM2835_GPSET1": 1, + "BCM2835_GPCLR0": 1, + "Clear": 18, + "BCM2835_GPCLR1": 1, + "BCM2835_GPLEV0": 1, + "Level": 2, + "BCM2835_GPLEV1": 1, + "BCM2835_GPEDS0": 1, + "Event": 11, + "Detect": 35, + "Status": 6, + "BCM2835_GPEDS1": 1, + "BCM2835_GPREN0": 1, + "Rising": 8, + "Edge": 16, + "Enable": 38, + "BCM2835_GPREN1": 1, + "Falling": 8, + "BCM2835_GPFEN1": 1, + "BCM2835_GPHEN0": 1, + "High": 4, + "BCM2835_GPHEN1": 1, + "BCM2835_GPLEN0": 1, + "Low": 5, + "BCM2835_GPLEN1": 1, + "BCM2835_GPAREN0": 1, + "Async.": 4, + "BCM2835_GPAREN1": 1, + "BCM2835_GPAFEN0": 1, + "BCM2835_GPAFEN1": 1, + "BCM2835_GPPUD": 1, + "Pull": 11, + "up/down": 10, + "BCM2835_GPPUDCLK0": 1, + "Clock": 11, + "BCM2835_GPPUDCLK1": 1, + "brief": 12, + "bcm2835PortFunction": 1, + "Port": 1, + "function": 19, + "select": 9, + "modes": 1, + "bcm2835_gpio_fsel": 2, + "typedef": 50, + "enum": 17, + "BCM2835_GPIO_FSEL_INPT": 1, + "b000": 1, + "Input": 2, + "BCM2835_GPIO_FSEL_OUTP": 1, + "b001": 1, + "BCM2835_GPIO_FSEL_ALT0": 1, + "b100": 1, + "Alternate": 6, + "BCM2835_GPIO_FSEL_ALT1": 1, + "b101": 1, + "BCM2835_GPIO_FSEL_ALT2": 1, + "b110": 1, + "BCM2835_GPIO_FSEL_ALT3": 1, + "b111": 2, + "BCM2835_GPIO_FSEL_ALT4": 1, + "b011": 1, + "BCM2835_GPIO_FSEL_ALT5": 1, + "b010": 1, + "BCM2835_GPIO_FSEL_MASK": 1, + "bits": 11, + "bcm2835FunctionSelect": 2, + "bcm2835PUDControl": 4, + "Pullup/Pulldown": 1, + "defines": 3, + "bcm2835_gpio_pud": 5, + "BCM2835_GPIO_PUD_OFF": 1, + "b00": 1, + "Off": 3, + "pull": 1, + "BCM2835_GPIO_PUD_DOWN": 1, + "b01": 1, + "Down": 1, + "BCM2835_GPIO_PUD_UP": 1, + "b10": 1, + "Up": 1, + "Pad": 11, + "BCM2835_PADS_GPIO_0_27": 1, + "BCM2835_PADS_GPIO_28_45": 1, + "BCM2835_PADS_GPIO_46_53": 1, + "Control": 6, + "masks": 1, + "BCM2835_PAD_PASSWRD": 1, + "A": 7, + "<<": 29, + "Password": 1, + "BCM2835_PAD_SLEW_RATE_UNLIMITED": 1, + "Slew": 1, + "rate": 3, + "unlimited": 1, + "BCM2835_PAD_HYSTERESIS_ENABLED": 1, + "Hysteresis": 1, + "BCM2835_PAD_DRIVE_2mA": 1, + "mA": 8, + "drive": 8, + "current": 26, + "BCM2835_PAD_DRIVE_4mA": 1, + "BCM2835_PAD_DRIVE_6mA": 1, + "BCM2835_PAD_DRIVE_8mA": 1, + "BCM2835_PAD_DRIVE_10mA": 1, + "BCM2835_PAD_DRIVE_12mA": 1, + "BCM2835_PAD_DRIVE_14mA": 1, + "BCM2835_PAD_DRIVE_16mA": 1, + "bcm2835PadGroup": 4, + "specification": 1, + "bcm2835_gpio_pad": 2, + "BCM2835_PAD_GROUP_GPIO_0_27": 1, + "BCM2835_PAD_GROUP_GPIO_28_45": 1, + "BCM2835_PAD_GROUP_GPIO_46_53": 1, + "Numbers": 1, + "Here": 1, + "we": 10, + "terms": 4, + "numbers.": 1, + "These": 6, + "requiring": 1, + "bin": 1, + "connected": 1, + "adopt": 1, + "alternate": 7, + "function.": 3, + "slightly": 1, + "pinouts": 1, + "these": 1, + "RPI_V2_*.": 1, + "At": 1, + "bootup": 1, + "UART0_TXD": 3, + "UART0_RXD": 3, + "ie": 3, + "alt0": 1, + "respectively": 1, + "dedicated": 1, + "cant": 1, + "controlled": 1, + "independently": 1, + "RPI_GPIO_P1_03": 6, + "RPI_GPIO_P1_05": 6, + "RPI_GPIO_P1_07": 1, + "RPI_GPIO_P1_08": 1, + "defaults": 4, + "alt": 4, + "RPI_GPIO_P1_10": 1, + "RPI_GPIO_P1_11": 1, + "RPI_GPIO_P1_12": 1, + "RPI_GPIO_P1_13": 1, + "RPI_GPIO_P1_15": 1, + "RPI_GPIO_P1_16": 1, + "RPI_GPIO_P1_18": 1, + "RPI_GPIO_P1_19": 1, + "RPI_GPIO_P1_21": 1, + "RPI_GPIO_P1_22": 1, + "RPI_GPIO_P1_23": 1, + "RPI_GPIO_P1_24": 1, + "RPI_GPIO_P1_26": 1, + "RPI_V2_GPIO_P1_03": 1, + "RPI_V2_GPIO_P1_05": 1, + "RPI_V2_GPIO_P1_07": 1, + "RPI_V2_GPIO_P1_08": 1, + "RPI_V2_GPIO_P1_10": 1, + "RPI_V2_GPIO_P1_11": 1, + "RPI_V2_GPIO_P1_12": 1, + "RPI_V2_GPIO_P1_13": 1, + "RPI_V2_GPIO_P1_15": 1, + "RPI_V2_GPIO_P1_16": 1, + "RPI_V2_GPIO_P1_18": 1, + "RPI_V2_GPIO_P1_19": 1, + "RPI_V2_GPIO_P1_21": 1, + "RPI_V2_GPIO_P1_22": 1, + "RPI_V2_GPIO_P1_23": 1, + "RPI_V2_GPIO_P1_24": 1, + "RPI_V2_GPIO_P1_26": 1, + "RPI_V2_GPIO_P5_03": 1, + "RPI_V2_GPIO_P5_04": 1, + "RPI_V2_GPIO_P5_05": 1, + "RPI_V2_GPIO_P5_06": 1, + "RPiGPIOPin": 1, + "BCM2835_SPI0_CS": 1, + "Master": 12, + "BCM2835_SPI0_FIFO": 1, + "TX": 5, + "RX": 7, + "FIFOs": 1, + "BCM2835_SPI0_CLK": 1, + "Divider": 2, + "BCM2835_SPI0_DLEN": 1, + "Data": 9, + "Length": 2, + "BCM2835_SPI0_LTOH": 1, + "LOSSI": 1, + "mode": 24, + "TOH": 1, + "BCM2835_SPI0_DC": 1, + "DMA": 3, + "DREQ": 1, + "Controls": 1, + "BCM2835_SPI0_CS_LEN_LONG": 1, + "Long": 1, + "word": 7, + "Lossi": 2, + "DMA_LEN": 1, + "BCM2835_SPI0_CS_DMA_LEN": 1, + "BCM2835_SPI0_CS_CSPOL2": 1, + "Chip": 9, + "Polarity": 5, + "BCM2835_SPI0_CS_CSPOL1": 1, + "BCM2835_SPI0_CS_CSPOL0": 1, + "BCM2835_SPI0_CS_RXF": 1, + "RXF": 2, + "FIFO": 25, + "Full": 1, + "BCM2835_SPI0_CS_RXR": 1, + "RXR": 3, + "needs": 4, + "Reading": 1, + "full": 9, + "BCM2835_SPI0_CS_TXD": 1, + "TXD": 2, + "accept": 2, + "BCM2835_SPI0_CS_RXD": 1, + "RXD": 2, + "contains": 2, + "BCM2835_SPI0_CS_DONE": 1, + "Done": 3, + "transfer": 8, + "BCM2835_SPI0_CS_TE_EN": 1, + "Unused": 2, + "BCM2835_SPI0_CS_LMONO": 1, + "BCM2835_SPI0_CS_LEN": 1, + "LEN": 1, + "LoSSI": 1, + "BCM2835_SPI0_CS_REN": 1, + "REN": 1, + "Read": 3, + "BCM2835_SPI0_CS_ADCS": 1, + "ADCS": 1, + "Automatically": 1, + "Deassert": 1, + "BCM2835_SPI0_CS_INTR": 1, + "INTR": 1, + "Interrupt": 5, + "BCM2835_SPI0_CS_INTD": 1, + "INTD": 1, + "BCM2835_SPI0_CS_DMAEN": 1, + "DMAEN": 1, + "BCM2835_SPI0_CS_TA": 1, + "Transfer": 3, + "Active": 2, + "BCM2835_SPI0_CS_CSPOL": 1, + "BCM2835_SPI0_CS_CLEAR": 1, + "BCM2835_SPI0_CS_CLEAR_RX": 1, + "BCM2835_SPI0_CS_CLEAR_TX": 1, + "BCM2835_SPI0_CS_CPOL": 1, + "BCM2835_SPI0_CS_CPHA": 1, + "Phase": 1, + "BCM2835_SPI0_CS_CS": 1, + "bcm2835SPIBitOrder": 3, + "Bit": 1, + "Specifies": 5, + "ordering": 4, + "bcm2835_spi_setBitOrder": 2, + "BCM2835_SPI_BIT_ORDER_LSBFIRST": 1, + "LSB": 1, + "First": 2, + "BCM2835_SPI_BIT_ORDER_MSBFIRST": 1, + "MSB": 1, + "Specify": 2, + "bcm2835_spi_setDataMode": 2, + "BCM2835_SPI_MODE0": 1, + "CPOL": 4, + "CPHA": 4, + "BCM2835_SPI_MODE1": 1, + "BCM2835_SPI_MODE2": 1, + "BCM2835_SPI_MODE3": 1, + "bcm2835SPIMode": 2, + "bcm2835SPIChipSelect": 3, + "BCM2835_SPI_CS0": 1, + "BCM2835_SPI_CS1": 1, + "BCM2835_SPI_CS2": 1, + "CS1": 1, + "CS2": 1, + "asserted": 3, + "BCM2835_SPI_CS_NONE": 1, + "CS": 5, + "yourself": 1, + "bcm2835SPIClockDivider": 3, + "generate": 2, + "Figures": 1, + "below": 1, + "period": 1, + "frequency.": 1, + "divided": 2, + "nominal": 2, + "reported": 2, + "contrary": 1, + "may": 9, + "shown": 1, + "have": 4, + "confirmed": 1, + "measurement": 2, + "BCM2835_SPI_CLOCK_DIVIDER_65536": 1, + "us": 12, + "kHz": 10, + "BCM2835_SPI_CLOCK_DIVIDER_32768": 1, + "BCM2835_SPI_CLOCK_DIVIDER_16384": 1, + "BCM2835_SPI_CLOCK_DIVIDER_8192": 1, + "/51757813kHz": 1, + "BCM2835_SPI_CLOCK_DIVIDER_4096": 1, + "BCM2835_SPI_CLOCK_DIVIDER_2048": 1, + "BCM2835_SPI_CLOCK_DIVIDER_1024": 1, + "BCM2835_SPI_CLOCK_DIVIDER_512": 1, + "BCM2835_SPI_CLOCK_DIVIDER_256": 1, + "BCM2835_SPI_CLOCK_DIVIDER_128": 1, + "ns": 9, + "BCM2835_SPI_CLOCK_DIVIDER_64": 1, + "BCM2835_SPI_CLOCK_DIVIDER_32": 1, + "BCM2835_SPI_CLOCK_DIVIDER_16": 1, + "BCM2835_SPI_CLOCK_DIVIDER_8": 1, + "BCM2835_SPI_CLOCK_DIVIDER_4": 1, + "BCM2835_SPI_CLOCK_DIVIDER_2": 1, + "fastest": 1, + "BCM2835_SPI_CLOCK_DIVIDER_1": 1, + "same": 3, + "/65536": 1, + "BCM2835_BSC_C": 1, + "BCM2835_BSC_S": 1, + "BCM2835_BSC_DLEN": 1, + "BCM2835_BSC_A": 1, + "Slave": 1, + "BCM2835_BSC_FIFO": 1, + "BCM2835_BSC_DIV": 1, + "BCM2835_BSC_DEL": 1, + "Delay": 4, + "BCM2835_BSC_CLKT": 1, + "Stretch": 2, + "Timeout": 2, + "BCM2835_BSC_C_I2CEN": 1, + "BCM2835_BSC_C_INTR": 1, + "BCM2835_BSC_C_INTT": 1, + "BCM2835_BSC_C_INTD": 1, + "DONE": 2, + "BCM2835_BSC_C_ST": 1, + "Start": 4, + "new": 13, + "BCM2835_BSC_C_CLEAR_1": 1, + "BCM2835_BSC_C_CLEAR_2": 1, + "BCM2835_BSC_C_READ": 1, + "BCM2835_BSC_S_CLKT": 1, + "stretch": 1, + "timeout": 5, + "BCM2835_BSC_S_ERR": 1, + "ACK": 1, + "error": 8, + "BCM2835_BSC_S_RXF": 1, + "BCM2835_BSC_S_TXE": 1, + "TXE": 1, + "BCM2835_BSC_S_RXD": 1, + "BCM2835_BSC_S_TXD": 1, + "BCM2835_BSC_S_RXR": 1, + "BCM2835_BSC_S_TXW": 1, + "TXW": 1, + "writing": 2, + "BCM2835_BSC_S_DONE": 1, + "BCM2835_BSC_S_TA": 1, + "BCM2835_BSC_FIFO_SIZE": 1, + "size": 13, + "bcm2835I2CClockDivider": 3, + "BCM2835_I2C_CLOCK_DIVIDER_2500": 1, + "BCM2835_I2C_CLOCK_DIVIDER_626": 1, + "BCM2835_I2C_CLOCK_DIVIDER_150": 1, + "reset": 1, + "BCM2835_I2C_CLOCK_DIVIDER_148": 1, + "bcm2835I2CReasonCodes": 5, + "reason": 4, + "codes": 1, + "BCM2835_I2C_REASON_OK": 1, + "Success": 1, + "BCM2835_I2C_REASON_ERROR_NACK": 1, + "Received": 4, + "NACK": 1, + "BCM2835_I2C_REASON_ERROR_CLKT": 1, + "BCM2835_I2C_REASON_ERROR_DATA": 1, + "sent": 1, + "/": 16, + "BCM2835_ST_CS": 1, + "Control/Status": 1, + "BCM2835_ST_CLO": 1, + "Counter": 4, + "Lower": 2, + "BCM2835_ST_CHI": 1, + "Upper": 1, + "BCM2835_PWM_CONTROL": 1, + "BCM2835_PWM_STATUS": 1, + "BCM2835_PWM0_RANGE": 1, + "BCM2835_PWM0_DATA": 1, + "BCM2835_PWM1_RANGE": 1, + "BCM2835_PWM1_DATA": 1, + "BCM2835_PWMCLK_CNTL": 1, + "BCM2835_PWMCLK_DIV": 1, + "BCM2835_PWM1_MS_MODE": 1, + "Run": 4, + "MS": 2, + "BCM2835_PWM1_USEFIFO": 1, + "BCM2835_PWM1_REVPOLAR": 1, + "Reverse": 2, + "polarity": 3, + "BCM2835_PWM1_OFFSTATE": 1, + "Ouput": 2, + "BCM2835_PWM1_REPEATFF": 1, + "Repeat": 2, + "last": 6, + "empty": 2, + "BCM2835_PWM1_SERIAL": 1, + "serial": 2, + "BCM2835_PWM1_ENABLE": 1, + "Channel": 2, + "BCM2835_PWM0_MS_MODE": 1, + "BCM2835_PWM0_USEFIFO": 1, + "BCM2835_PWM0_REVPOLAR": 1, + "BCM2835_PWM0_OFFSTATE": 1, + "BCM2835_PWM0_REPEATFF": 1, + "BCM2835_PWM0_SERIAL": 1, + "BCM2835_PWM0_ENABLE": 1, + "x": 86, + "#endif": 110, + "#ifdef": 19, + "__cplusplus": 12, + "init": 2, + "Library": 1, + "management": 1, + "intialise": 1, + "Initialise": 1, + "opening": 1, + "getting": 1, + "internal": 47, + "device": 7, + "call": 4, + "successfully": 1, + "before": 7, + "bcm2835_set_debug": 2, + "fails": 1, + "returning": 1, + "result": 8, + "crashes": 1, + "failures.": 1, + "Prints": 1, + "messages": 1, + "stderr": 1, + "case": 34, + "errors.": 1, + "successful": 2, + "else": 58, + "int": 218, + "Close": 1, + "deallocating": 1, + "allocated": 2, + "closing": 3, + "Sets": 24, + "debug": 6, + "prevents": 1, + "makes": 1, + "print": 5, + "out": 5, + "what": 2, + "would": 2, + "do": 13, + "rather": 2, + "causes": 1, + "normal": 1, + "operation.": 2, + "Call": 2, + "param": 72, + "]": 292, + "level.": 3, + "uint8_t": 43, + "lowlevel": 2, + "provide": 1, + "generally": 1, + "Reads": 5, + "done": 3, + "twice": 3, + "therefore": 6, + "always": 3, + "safe": 4, + "precautions": 3, + "correct": 3, + "paddr": 10, + "from.": 6, + "etc.": 5, + "sa": 30, + "uint32_t*": 7, + "without": 3, + "within": 4, + "occurred": 2, + "since.": 2, + "bcm2835_peri_read_nb": 1, + "Writes": 2, + "write": 8, + "bcm2835_peri_write_nb": 1, + "Alters": 1, + "regsiter.": 1, + "valu": 1, + "alters": 1, + "deines": 1, + "according": 1, + "value.": 2, + "All": 1, + "unaffected.": 1, + "Use": 8, + "alter": 2, + "subset": 1, + "register.": 3, + "masked": 2, + "mask.": 1, + "Bitmask": 1, + "altered": 1, + "gpio": 1, + "interface.": 3, + "input": 12, + "output": 21, + "state.": 1, + "given": 16, + "configures": 1, + "RPI_GPIO_P1_*": 21, + "Mode": 1, + "BCM2835_GPIO_FSEL_*": 1, + "specified": 27, + "HIGH.": 2, + "bcm2835_gpio_write": 3, + "bcm2835_gpio_set": 1, + "LOW.": 5, + "bcm2835_gpio_clr": 1, + "first": 13, + "Mask": 6, + "affect.": 4, + "eg": 5, + "returns": 4, + "either": 4, + "Works": 1, + "whether": 4, + "output.": 1, + "bcm2835_gpio_lev": 1, + "Status.": 7, + "Tests": 1, + "detected": 7, + "requested": 1, + "flag": 3, + "bcm2835_gpio_set_eds": 2, + "status": 1, + "th": 1, + "true.": 2, + "bcm2835_gpio_eds": 1, + "effect": 3, + "clearing": 1, + "flag.": 1, + "afer": 1, + "seeing": 1, + "rising": 3, + "sets": 8, + "GPRENn": 2, + "synchronous": 2, + "detection.": 2, + "signal": 4, + "sampled": 6, + "looking": 2, + "pattern": 2, + "signal.": 2, + "suppressing": 2, + "glitches.": 2, + "Disable": 6, + "Asynchronous": 6, + "incoming": 2, + "As": 2, + "edges": 2, + "very": 2, + "short": 5, + "duration": 2, + "detected.": 2, + "bcm2835_gpio_pudclk": 3, + "resistor": 1, + "However": 3, + "convenient": 2, + "bcm2835_gpio_set_pud": 4, + "pud": 4, + "desired": 7, + "mode.": 4, + "One": 3, + "BCM2835_GPIO_PUD_*": 2, + "Clocks": 3, + "earlier": 1, + "remove": 2, + "group.": 2, + "BCM2835_PAD_GROUP_GPIO_*": 2, + "BCM2835_PAD_*": 2, + "bcm2835_gpio_set_pad": 1, + "Delays": 3, + "milliseconds.": 1, + "Uses": 4, + "CPU": 5, + "until": 1, + "up.": 1, + "mercy": 2, + "From": 2, + "interval": 4, + "req": 2, + "exact": 2, + "multiple": 2, + "granularity": 2, + "rounded": 2, + "next": 9, + "multiple.": 2, + "Furthermore": 2, + "sleep": 2, + "completes": 2, + "still": 3, + "becomes": 2, + "free": 4, + "once": 5, + "again": 2, + "execute": 3, + "thread.": 2, + "millis": 2, + "milliseconds": 1, + "unsigned": 22, + "microseconds.": 2, + "combination": 2, + "busy": 2, + "wait": 2, + "timers": 1, + "less": 1, + "microseconds": 6, + "Timer.": 1, + "RaspberryPi": 1, + "Your": 1, + "mileage": 1, + "vary.": 1, + "micros": 5, + "uint64_t": 8, + "required": 2, + "bcm2835_gpio_write_mask": 1, + "clocking": 1, + "spi": 1, + "let": 2, + "device.": 2, + "operations.": 4, + "Forces": 2, + "ALT0": 2, + "funcitons": 1, + "complete": 3, + "End": 2, + "returned": 5, + "INPUT": 2, + "behaviour.": 2, + "NOTE": 1, + "effect.": 1, + "SPI0.": 1, + "Defaults": 1, + "BCM2835_SPI_BIT_ORDER_*": 1, + "speed.": 2, + "BCM2835_SPI_CLOCK_DIVIDER_*": 1, + "bcm2835_spi_setClockDivider": 1, + "uint16_t": 2, + "polariy": 1, + "phase": 1, + "BCM2835_SPI_MODE*": 1, + "bcm2835_spi_transfer": 5, + "made": 1, + "selected": 13, + "during": 4, + "transfer.": 4, + "cs": 4, + "activate": 1, + "slave.": 7, + "BCM2835_SPI_CS*": 1, + "bcm2835_spi_chipSelect": 4, + "occurs": 1, + "currently": 12, + "active.": 1, + "transfers": 1, + "happening": 1, + "complement": 1, + "inactive": 1, + "affect": 1, + "active": 3, + "Whether": 1, + "bcm2835_spi_setChipSelectPolarity": 1, + "Transfers": 6, + "byte": 6, + "Asserts": 3, + "simultaneously": 3, + "clocks": 2, + "MISO.": 2, + "Returns": 2, + "polled": 2, + "Peripherls": 2, + "len": 15, + "slave": 8, + "placed": 1, + "rbuf.": 1, + "rbuf": 3, + "long": 15, + "tbuf": 4, + "Buffer": 10, + "send.": 5, + "put": 1, + "buffer": 9, + "Number": 8, + "send/received": 2, + "char*": 24, + "bcm2835_spi_transfernb.": 1, + "replaces": 1, + "transmitted": 1, + "buffer.": 1, + "buf": 14, + "replace": 1, + "contents": 3, + "eh": 2, + "bcm2835_spi_writenb": 1, + "i2c": 1, + "Philips": 1, + "bus/interface": 1, + "January": 1, + "SCL": 2, + "bcm2835_i2c_end": 3, + "bcm2835_i2c_begin": 1, + "address.": 2, + "addr": 2, + "bcm2835_i2c_setSlaveAddress": 4, + "BCM2835_I2C_CLOCK_DIVIDER_*": 1, + "bcm2835_i2c_setClockDivider": 2, + "converting": 1, + "baudrate": 4, + "parameter": 1, + "equivalent": 1, + "divider.": 1, + "standard": 2, + "khz": 1, + "corresponds": 1, + "its": 1, + "driver.": 1, + "Of": 1, + "course": 2, + "nothing": 1, + "driver": 1, + "const": 172, + "*": 183, + "receive.": 2, + "received.": 2, + "Allows": 2, + "slaves": 1, + "require": 3, + "repeated": 1, + "start": 12, + "prior": 1, + "stop": 1, + "set.": 1, + "popular": 1, + "MPL3115A2": 1, + "pressure": 1, + "temperature": 1, + "sensor.": 1, + "Note": 1, + "combined": 1, + "better": 1, + "choice.": 1, + "Will": 1, + "regaddr": 2, + "containing": 2, + "bcm2835_i2c_read_register_rs": 1, + "st": 1, + "delays": 1, + "Counter.": 1, + "bcm2835_st_read": 1, + "offset.": 1, + "offset_micros": 2, + "Offset": 1, + "bcm2835_st_delay": 1, + "@example": 5, + "blink.c": 1, + "Blinks": 1, + "off": 1, + "input.c": 1, + "event.c": 1, + "Shows": 3, + "how": 3, + "spi.c": 1, + "spin.c": 1, + "#pragma": 3, + "": 4, + "": 4, + "": 2, + "namespace": 38, + "std": 53, + "DEFAULT_DELIMITER": 1, + "CsvStreamer": 5, + "private": 16, + "ofstream": 1, + "File": 1, + "stream": 6, + "vector": 16, + "row_buffer": 1, + "stores": 3, + "row": 12, + "flushed/written": 1, + "fields": 4, + "columns": 2, + "rows": 3, + "records": 2, + "including": 2, + "delimiter": 2, + "Delimiter": 1, + "character": 10, + "comma": 2, + "string": 24, + "sanitize": 1, + "ready": 1, + "Empty": 1, + "CSV": 4, + "streamer...": 1, + "Same": 1, + "...": 1, + "Opens": 3, + "path/name": 3, + "Ensures": 1, + "closed": 1, + "saved": 1, + "delimiting": 1, + "add_field": 1, + "line": 11, + "adds": 1, + "field": 5, + "save_fields": 1, + "save": 1, + "writes": 2, + "append": 8, + "Appends": 5, + "quoted": 1, + "leading/trailing": 1, + "spaces": 3, + "trimmed": 1, + "bool": 111, + "Like": 1, + "specify": 1, + "trim": 2, + "keep": 1, + "float": 74, + "double": 25, + "writeln": 1, + "Flushes": 1, + "Saves": 1, + "closes": 1, + "field_count": 1, + "Gets": 2, + "row_count": 1, + "": 1, + "": 1, + "": 2, + "static": 263, + "Env": 13, + "*env_instance": 1, + "NULL": 109, + "*Env": 1, + "instance": 4, + "env_instance": 3, + "QObject": 2, + "QCoreApplication": 1, + "parse": 3, + "**envp": 1, + "**env": 1, + "**": 2, + "QString": 20, + "envvar": 2, + "name": 25, + "indexOfEquals": 5, + "env": 3, + "envp": 4, + "*env": 1, + "envvar.indexOf": 1, + "continue": 2, + "envvar.left": 1, + "envvar.mid": 1, + "m_map.insert": 1, + "QVariantMap": 3, + "asVariantMap": 2, + "m_map": 2, + "ENV_H": 3, + "": 1, + "Q_OBJECT": 1, + "*instance": 1, + "BOOST_ASIO_DETAIL_IMPL_EPOLL_REACTOR_IPP": 3, "#if": 63, "defined": 49, - "(": 3102, "_MSC_VER": 7, - ")": 3105, "&&": 29, - "#endif": 110, - "#include": 129, "": 1, "BOOST_ASIO_HAS_EPOLL": 2, "": 1, @@ -10173,14 +11827,11 @@ "": 1, "BOOST_ASIO_HAS_TIMERFD": 19, "": 1, - "namespace": 38, "boost": 18, - "{": 726, "asio": 14, "detail": 5, "epoll_reactor": 40, "io_service": 6, - "&": 203, "service_base": 1, "": 1, "io_service_": 1, @@ -10193,14 +11844,10 @@ "timer_fd_": 21, "do_timerfd_create": 3, "shutdown_": 10, - "false": 48, "epoll_event": 10, "ev": 21, - "}": 726, - ";": 2783, "ev.events": 13, "EPOLLIN": 8, - "|": 40, "EPOLLERR": 8, "EPOLLET": 5, "ev.data.ptr": 10, @@ -10208,33 +11855,20 @@ "EPOLL_CTL_ADD": 7, "interrupter_.read_descriptor": 3, "interrupter_.interrupt": 2, - "if": 359, - "-": 438, - "close": 7, - "void": 241, "shutdown_service": 1, "mutex": 16, "scoped_lock": 16, "lock": 5, - "true": 49, "lock.unlock": 1, "op_queue": 6, "": 6, "ops": 10, - "while": 17, "descriptor_state*": 6, - "state": 33, "registered_descriptors_.first": 2, - "for": 105, - "int": 218, "i": 106, - "<": 255, "max_ops": 6, - "+": 80, "ops.push": 5, "op_queue_": 12, - "[": 293, - "]": 292, "registered_descriptors_.free": 2, "timer_queues_.get_all_timers": 1, "io_service_.abandon_operations": 1, @@ -10248,13 +11882,10 @@ "registered_descriptors_mutex_": 3, "next_": 3, "registered_events_": 8, - "result": 8, "descriptor_": 5, - "system": 13, "error_code": 4, "ec": 6, "errno": 10, - "error": 8, "get_system_category": 3, "throw_error": 2, "init_task": 1, @@ -10267,10 +11898,8 @@ "allocate_descriptor_state": 3, "descriptor_lock": 7, "reactor_": 7, - "this": 57, "EPOLLHUP": 3, "EPOLLPRI": 3, - "return": 240, "register_internal_descriptor": 1, "op_type": 8, "reactor_op*": 5, @@ -10280,7 +11909,6 @@ "target_descriptor_data": 2, "source_descriptor_data": 3, "start_op": 1, - "bool": 111, "is_continuation": 5, "allow_speculative": 2, "ec_": 4, @@ -10296,7 +11924,6 @@ "write_op": 2, "EPOLLOUT": 4, "EPOLL_CTL_MOD": 3, - "else": 58, "io_service_.work_started": 2, "cancel_ops": 1, ".front": 3, @@ -10304,13 +11931,9 @@ ".pop": 3, "io_service_.post_deferred_completions": 3, "deregister_descriptor": 1, - "closing": 3, "EPOLL_CTL_DEL": 2, "free_descriptor_state": 3, "deregister_internal_descriptor": 1, - "run": 2, - "block": 7, - "timeout": 5, "get_timeout": 5, "events": 8, "num_events": 2, @@ -10331,7 +11954,6 @@ "old_timeout": 4, "flags": 4, "timerfd_settime": 2, - "interrupt": 3, "EPOLL_CLOEXEC": 4, "fd": 15, "epoll_create1": 1, @@ -10343,10 +11965,8 @@ "F_SETFD": 2, "FD_CLOEXEC": 2, "timerfd_create": 2, - "CLOCK_MONOTONIC": 3, "TFD_CLOEXEC": 1, "registered_descriptors_.alloc": 1, - "s": 26, "do_add_timer_queue": 1, "timer_queue_base": 2, "queue": 4, @@ -10354,19 +11974,14 @@ "do_remove_timer_queue": 1, "timer_queues_.erase": 1, "timer_queues_.wait_duration_msec": 1, - "*": 183, "ts": 1, "ts.it_interval.tv_sec": 1, "ts.it_interval.tv_nsec": 1, - "long": 15, "usec": 5, "timer_queues_.wait_duration_usec": 1, "ts.it_value.tv_sec": 1, - "/": 16, "ts.it_value.tv_nsec": 1, - "%": 7, "TFD_TIMER_ABSTIME": 1, - "struct": 13, "perform_io_cleanup_on_block_exit": 4, "explicit": 5, "epoll_reactor*": 2, @@ -10379,13 +11994,9 @@ "operation": 2, "do_complete": 2, "perform_io": 2, - "uint32_t": 39, "mutex_.lock": 1, "io_cleanup": 1, "adopt_lock": 1, - "static": 263, - "const": 172, - "flag": 3, "j": 10, "io_cleanup.ops_.push": 1, "break": 35, @@ -10394,387 +12005,422 @@ "io_cleanup.ops_.pop": 1, "io_service_impl*": 1, "owner": 3, - "base": 8, - "std": 53, "size_t": 6, "bytes_transferred": 2, "": 1, - "complete": 3, "": 1, - "#pragma": 3, - "once": 5, - "": 2, - "typedef": 50, - "smallPrime_t": 1, - "class": 40, - "Bar": 2, - "protected": 4, - "char": 127, - "*name": 6, - "public": 33, - "hello": 2, - "INTERNAL_SUPPRESS_PROTOBUF_FIELD_DEPRECATION": 1, - "": 1, - "": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "persons": 4, - "google": 72, - "protobuf": 72, - "Descriptor*": 3, - "Person_descriptor_": 6, - "NULL": 109, - "internal": 47, - "GeneratedMessageReflection*": 1, - "Person_reflection_": 4, - "protobuf_AssignDesc_protocol_2dbuffer_2eproto": 4, - "protobuf_AddDesc_protocol_2dbuffer_2eproto": 6, - "FileDescriptor*": 1, - "file": 31, - "DescriptorPool": 3, - "generated_pool": 2, - "FindFileByName": 1, - "GOOGLE_CHECK": 1, - "message_type": 1, - "Person_offsets_": 2, - "GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET": 3, - "Person": 65, - "name_": 30, - "new": 13, - "GeneratedMessageReflection": 1, - "default_instance_": 8, - "_has_bits_": 14, - "_unknown_fields_": 5, - "MessageFactory": 3, - "generated_factory": 1, - "sizeof": 15, - "GOOGLE_PROTOBUF_DECLARE_ONCE": 1, - "protobuf_AssignDescriptors_once_": 2, - "inline": 39, - "protobuf_AssignDescriptorsOnce": 4, - "GoogleOnceInit": 1, - "protobuf_RegisterTypes": 2, - "string": 24, - "InternalRegisterGeneratedMessage": 1, - "default_instance": 3, - "protobuf_ShutdownFile_protocol_2dbuffer_2eproto": 4, - "delete": 6, - "already_here": 3, - "GOOGLE_PROTOBUF_VERIFY_VERSION": 1, - "InternalAddGeneratedFile": 1, - "InternalRegisterGeneratedFile": 1, - "InitAsDefaultInstance": 3, - "OnShutdown": 1, - "StaticDescriptorInitializer_protocol_2dbuffer_2eproto": 2, - "static_descriptor_initializer_protocol_2dbuffer_2eproto_": 1, - "kNameFieldNumber": 2, - "Message": 7, - "SharedCtor": 4, - "from": 91, - "MergeFrom": 9, - "_cached_size_": 7, - "const_cast": 3, - "string*": 11, - "kEmptyString": 12, - "memset": 3, - "SharedDtor": 3, - "SetCachedSize": 2, - "size": 13, - "GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN": 2, - "GOOGLE_SAFE_CONCURRENT_WRITES_END": 2, - "*default_instance_": 1, - "Person*": 7, - "New": 6, - "Clear": 18, - "xffu": 3, - "<<": 29, - "has_name": 6, - "clear": 3, - "mutable_unknown_fields": 4, - "MergePartialFromCodedStream": 2, - "io": 4, - "CodedInputStream*": 2, - "input": 12, - "DO_": 4, - "EXPRESSION": 2, - "uint32": 2, - "tag": 6, - "ReadTag": 1, - "switch": 3, - "WireFormatLite": 9, - "GetTagFieldNumber": 1, - "case": 34, - "GetTagWireType": 2, - "WIRETYPE_LENGTH_DELIMITED": 1, - "ReadString": 1, - "mutable_name": 3, - "WireFormat": 10, - "VerifyUTF8String": 3, - "name": 25, - ".data": 3, - ".length": 3, - "PARSE": 1, - "goto": 156, - "handle_uninterpreted": 2, - "ExpectAtEnd": 1, - "default": 14, - "WIRETYPE_END_GROUP": 1, - "SkipField": 1, - "#undef": 3, - "SerializeWithCachedSizes": 2, - "CodedOutputStream*": 2, - "output": 21, - "SERIALIZE": 2, - "WriteString": 1, - "unknown_fields": 7, - "SerializeUnknownFields": 1, - "uint8*": 4, - "SerializeWithCachedSizesToArray": 2, - "target": 6, - "WriteStringToArray": 1, - "SerializeUnknownFieldsToArray": 1, - "ByteSize": 2, - "total_size": 5, - "StringSize": 1, - "ComputeUnknownFieldsSize": 1, - "GOOGLE_CHECK_NE": 2, - "source": 12, - "dynamic_cast_if_available": 1, - "": 12, - "ReflectionOps": 1, - "Merge": 1, - "from._has_bits_": 1, - "from.has_name": 1, - "set_name": 7, - "from.name": 1, - "from.unknown_fields": 1, - "CopyFrom": 5, - "IsInitialized": 3, - "Swap": 2, - "other": 17, - "swap": 3, - "_unknown_fields_.Swap": 1, - "Metadata": 3, - "GetMetadata": 2, - "metadata": 2, - "metadata.descriptor": 1, - "metadata.reflection": 1, - "QSCIPRINTER_H": 2, - "#ifdef": 19, - "__APPLE__": 4, - "extern": 72, - "": 1, - "": 2, - "": 1, - "QT_BEGIN_NAMESPACE": 1, - "QRect": 2, - "QPainter": 2, - "QT_END_NAMESPACE": 1, - "QsciScintillaBase": 100, - "brief": 12, - "The": 50, - "QsciPrinter": 9, - "is": 102, - "a": 157, - "sub": 2, - "of": 215, - "the": 541, - "Qt": 1, - "QPrinter": 3, - "that": 36, - "able": 2, - "to": 254, - "print": 5, - "text": 5, - "Scintilla": 2, - "document.": 8, - "can": 21, - "be": 35, - "further": 1, - "classed": 1, - "alter": 2, - "layout": 1, - "adding": 2, - "headers": 3, - "and": 118, - "footers": 2, - "example.": 1, - "QSCINTILLA_EXPORT": 2, - "Constructs": 1, - "printer": 1, - "paint": 1, - "device": 7, - "with": 33, - "mode": 24, - "mode.": 4, - "PrinterMode": 1, - "ScreenResolution": 1, - "Destroys": 1, - "instance.": 2, - "virtual": 10, - "Format": 1, - "page": 5, - "by": 53, - "example": 3, - "before": 7, - "document": 16, - "drawn": 2, - "on": 55, - "it.": 3, - "painter": 4, - "used": 17, - "add": 3, - "customised": 2, - "graphics.": 2, - "drawing": 4, - "actually": 1, - "being": 4, - "rather": 2, - "than": 6, - "sized.": 1, - "methods": 2, - "must": 6, - "only": 6, - "called": 13, - "when": 22, - "true.": 2, - "area": 5, - "will": 15, - "draw": 1, - "text.": 3, - "This": 19, - "should": 10, - "modified": 3, - "it": 19, - "necessary": 1, - "reserve": 1, + "Field": 2, + "Free": 1, + "Black": 1, + "White": 1, + "Illegal": 1, + "Player": 1, + "GDSDBREADER_H": 3, + "": 1, + "GDS_DIR": 1, + "LEVEL_ONE": 1, + "LEVEL_TWO": 1, + "LEVEL_THREE": 1, + "dbDataStructure": 2, + "label": 1, + "quint32": 3, + "depth": 1, + "userIndex": 1, + "QByteArray": 1, + "COMPRESSED": 1, + "optimize": 1, + "ram": 1, + "disk": 2, "space": 2, - "any": 23, - "or": 44, - "By": 1, - "relative": 2, - "printable": 1, - "page.": 13, - "Use": 8, - "setFullPage": 1, - "because": 2, - "calling": 9, - "printRange": 2, - "you": 29, - "want": 5, - "try": 1, - "over": 1, - "whole": 2, - "pagenr": 2, - "number": 52, - "first": 13, - "numbered": 1, - "formatPage": 1, - "Return": 3, - "points": 2, - "each": 7, - "font": 2, - "printing.": 2, - "sa": 30, - "setMagnification": 2, - "magnification": 3, - "mag": 2, - "Sets": 24, - "printing": 2, - "magnification.": 1, - "Print": 2, - "range": 3, - "lines": 3, - "instance": 4, - "qsb.": 1, - "line": 11, - "negative": 2, - "value": 50, - "signifies": 2, - "last": 6, - "returned": 5, - "there": 4, - "was": 6, - "no": 7, - "error.": 1, - "*qsb": 1, - "wrap": 4, - "QsciScintilla": 7, - "WrapWord.": 1, - "setWrapMode": 2, - "WrapMode": 3, - "wrapMode": 2, - "wmode.": 1, - "wmode": 1, - "private": 16, + "decompressed": 1, + "quint64": 1, + "uniqueID": 1, + "QVector": 2, + "": 1, + "nextItems": 1, + "": 1, + "nextItemsIndices": 1, + "dbDataStructure*": 1, + "father": 1, + "fatherIndex": 1, + "noFatherRoot": 1, + "Used": 2, + "tell": 1, + "node": 1, + "root": 1, + "hasn": 1, + "argument": 1, + "list": 3, "operator": 10, - "V8_V8_H_": 3, - "GOOGLE3": 2, + "overload.": 1, + "friend": 10, + "myclass.label": 2, + "myclass.depth": 2, + "myclass.userIndex": 2, + "qCompress": 2, + "myclass.data": 4, + "myclass.uniqueID": 2, + "myclass.nextItemsIndices": 2, + "myclass.fatherIndex": 2, + "myclass.noFatherRoot": 2, + "myclass.fileName": 2, + "myclass.firstLineData": 4, + "myclass.linesNumbers": 2, + "QDataStream": 2, + "myclass": 1, + "//Don": 1, + "qUncompress": 2, + "": 2, + "main": 2, + "cout": 2, + "endl": 1, + "": 1, + "": 1, + "": 1, + "EC_KEY_regenerate_key": 1, + "EC_KEY": 3, + "*eckey": 2, + "BIGNUM": 9, + "*priv_key": 1, + "ok": 3, + "BN_CTX": 2, + "*ctx": 2, + "EC_POINT": 4, + "*pub_key": 1, + "eckey": 7, + "EC_GROUP": 2, + "*group": 2, + "EC_KEY_get0_group": 2, + "ctx": 26, + "BN_CTX_new": 2, + "goto": 156, + "err": 26, + "pub_key": 6, + "EC_POINT_new": 4, + "EC_POINT_mul": 3, + "priv_key": 2, + "EC_KEY_set_private_key": 1, + "EC_KEY_set_public_key": 2, + "EC_POINT_free": 4, + "BN_CTX_free": 2, + "ECDSA_SIG_recover_key_GFp": 3, + "ECDSA_SIG": 3, + "*ecsig": 1, + "*msg": 2, + "msglen": 2, + "recid": 3, + "ret": 24, + "*x": 1, + "*e": 1, + "*order": 1, + "*sor": 1, + "*eor": 1, + "*field": 1, + "*R": 1, + "*O": 1, + "*Q": 1, + "*rr": 1, + "*zero": 1, + "n": 28, + "BN_CTX_start": 1, + "BN_CTX_get": 8, + "EC_GROUP_get_order": 1, + "BN_copy": 1, + "BN_mul_word": 1, + "BN_add": 1, + "ecsig": 3, + "EC_GROUP_get_curve_GFp": 1, + "BN_cmp": 1, + "R": 6, + "EC_POINT_set_compressed_coordinates_GFp": 1, + "O": 5, + "EC_POINT_is_at_infinity": 1, + "Q": 5, + "EC_GROUP_get_degree": 1, + "e": 15, + "BN_bin2bn": 3, + "msg": 1, + "*msglen": 1, + "BN_rshift": 1, + "zero": 5, + "BN_zero": 1, + "BN_mod_sub": 1, + "rr": 4, + "BN_mod_inverse": 1, + "sor": 3, + "BN_mod_mul": 2, + "eor": 3, + "BN_CTX_end": 1, + "CKey": 26, + "SetCompressedPubKey": 4, + "EC_KEY_set_conv_form": 1, + "pkey": 14, + "POINT_CONVERSION_COMPRESSED": 1, + "fCompressedPubKey": 5, + "Reset": 5, + "EC_KEY_new_by_curve_name": 2, + "NID_secp256k1": 2, + "throw": 4, + "key_error": 6, + "fSet": 7, + "b": 57, + "EC_KEY_dup": 1, + "b.pkey": 2, + "b.fSet": 2, + "EC_KEY_copy": 1, + "hash": 20, + "vchSig": 18, + "nSize": 2, + "vchSig.clear": 2, + "vchSig.resize": 2, + "Shrink": 1, + "fit": 1, + "actual": 1, + "SignCompact": 2, + "uint256": 10, + "": 19, + "fOk": 3, + "*sig": 2, + "ECDSA_do_sign": 1, + "sig": 11, + "nBitsR": 3, + "BN_num_bits": 2, + "nBitsS": 3, + "nRecId": 4, + "<4;>": 1, + "keyRec": 5, + "1": 4, + "GetPubKey": 5, + "BN_bn2bin": 2, + "/8": 2, + "ECDSA_SIG_free": 2, + "SetCompactSignature": 2, + "vchSig.size": 2, + "nV": 6, + "<27>": 1, + "ECDSA_SIG_new": 1, + "EC_KEY_free": 1, + "Verify": 2, + "ECDSA_verify": 1, + "VerifyCompact": 2, + "key": 23, + "key.SetCompactSignature": 1, + "key.GetPubKey": 1, + "IsValid": 4, + "fCompr": 3, + "CSecret": 4, + "secret": 2, + "GetSecret": 2, + "key2": 1, + "key2.SetSecret": 1, + "key2.GetPubKey": 1, + "BITCOIN_KEY_H": 2, + "": 1, + "": 1, + "runtime_error": 2, + "str": 2, + "CKeyID": 5, + "uint160": 8, + "CScriptID": 3, + "CPubKey": 11, + "vchPubKey": 6, + "vchPubKeyIn": 2, + "a.vchPubKey": 3, + "b.vchPubKey": 3, + "IMPLEMENT_SERIALIZE": 1, + "READWRITE": 1, + "GetID": 1, + "Hash160": 1, + "GetHash": 1, + "Hash": 1, + "vchPubKey.begin": 1, + "vchPubKey.end": 1, + "vchPubKey.size": 3, + "IsCompressed": 2, + "Raw": 1, + "secure_allocator": 2, + "CPrivKey": 3, + "EC_KEY*": 1, + "IsNull": 1, + "MakeNewKey": 1, + "fCompressed": 3, + "SetPrivKey": 1, + "vchPrivKey": 1, + "SetSecret": 1, + "vchSecret": 1, + "GetPrivKey": 1, + "SetPubKey": 1, + "Sign": 2, + "LIBCANIH": 2, + "": 1, + "": 1, + "int64": 1, + "//#define": 1, "DEBUG": 5, - "NDEBUG": 4, + "dout": 2, + "cerr": 1, + "libcanister": 2, + "//the": 8, + "canmem": 22, + "object": 3, + "generic": 1, + "container": 2, + "commonly": 1, + "//throughout": 1, + "canister": 14, + "framework": 1, + "hold": 1, + "uncertain": 1, + "//length": 1, + "contain": 1, + "null": 3, + "bytes.": 1, + "raw": 2, + "absolute": 1, + "length": 10, + "//creates": 3, + "unallocated": 1, + "allocsize": 1, + "blank": 1, + "strdata": 1, + "//automates": 1, + "creation": 1, + "limited": 2, + "canmems": 1, + "//cleans": 1, + "zeromem": 1, + "//overwrites": 2, + "fragmem": 1, + "notation": 1, + "countlen": 1, + "//counts": 1, + "strings": 1, + "//removes": 1, + "nulls": 1, + "//returns": 2, + "singleton": 2, + "//contains": 2, + "caninfo": 2, + "path": 8, + "//physical": 1, + "internalname": 1, + "//a": 1, + "numfiles": 1, + "files": 6, + "//necessary": 1, + "type": 7, + "canfile": 7, + "//this": 1, + "holds": 2, + "//canister": 1, + "canister*": 1, + "parent": 1, + "//internal": 1, + "id": 4, + "//use": 1, + "own.": 1, + "newline": 2, + "delimited": 2, + "container.": 1, + "TOC": 1, + "info": 2, + "general": 1, + "canfiles": 1, + "recommended": 1, + "modify": 1, + "//these": 1, + "enforced.": 1, + "canfile*": 1, + "readonly": 3, + "//if": 1, + "routines": 1, + "anything": 1, + "//maximum": 1, + "//time": 1, + "whatever": 1, + "suits": 1, + "application.": 1, + "cachemax": 2, + "cachecnt": 1, + "//number": 1, + "cache": 2, + "modified": 3, + "//both": 1, + "initialize": 1, + "fspath": 3, + "//destroys": 1, + "flushing": 1, + "modded": 1, + "//open": 1, + "//does": 1, + "exist": 2, + "//close": 1, + "flush": 1, + "clean": 2, + "//deletes": 1, + "inside": 1, + "delFile": 1, + "//pulls": 1, + "getFile": 1, + "otherwise": 1, + "overwrites": 1, + "succeeded": 2, + "writeFile": 2, + "//get": 1, + "//list": 1, + "paths": 1, + "getTOC": 1, + "//brings": 1, + "back": 1, + "limit": 1, + "//important": 1, + "sCFID": 2, + "CFID": 2, + "avoid": 1, + "uncaching": 1, + "//really": 1, + "just": 2, + "internally": 1, + "harm.": 1, + "cacheclean": 1, + "dFlush": 1, + "Q_OS_LINUX": 2, + "": 1, + "QT_VERSION": 1, + "QT_VERSION_CHECK": 1, "#error": 9, - "both": 1, - "are": 36, - "set": 18, - "v8": 9, - "Deserializer": 1, - "V8": 21, - "AllStatic": 1, - "Initialize": 4, - "Deserializer*": 2, - "des": 3, - "TearDown": 5, - "IsRunning": 1, - "is_running_": 6, - "UseCrankshaft": 1, - "use_crankshaft_": 6, - "IsDead": 2, - "has_fatal_error_": 5, - "has_been_disposed_": 6, - "SetFatalError": 2, - "FatalProcessOutOfMemory": 1, - "char*": 24, - "location": 6, - "take_snapshot": 1, - "SetEntropySource": 2, - "EntropySource": 3, - "SetReturnAddressLocationResolver": 3, - "ReturnAddressLocationResolver": 2, - "resolver": 3, - "Random": 3, - "Context*": 4, - "context": 8, - "RandomPrivate": 2, - "Isolate*": 6, - "isolate": 15, - "Object*": 4, - "FillHeapNumberWithRandom": 2, - "heap_number": 4, - "IdleNotification": 3, - "hint": 3, - "AddCallCompletedCallback": 2, - "CallCompletedCallback": 4, - "callback": 7, - "RemoveCallCompletedCallback": 2, - "FireCallCompletedCallback": 2, - "InitializeOncePerProcessImpl": 3, - "InitializeOncePerProcess": 4, - "has_been_set_up_": 4, - "List": 3, - "": 3, - "call_completed_callbacks_": 16, - "enum": 17, - "NilValue": 1, - "kNullValue": 1, - "kUndefinedValue": 1, - "EqualityKind": 1, - "kStrictEquality": 1, - "kNonStrictEquality": 1, + "Something": 1, + "wrong": 1, + "setup.": 1, + "report": 3, + "mailing": 1, + "argc": 2, + "char**": 2, + "argv": 2, + "google_breakpad": 1, + "ExceptionHandler": 1, + "Utils": 4, + "exceptionHandler": 2, + "qInstallMsgHandler": 1, + "messageHandler": 2, + "QApplication": 1, + "app": 1, + "STATIC_BUILD": 1, + "Q_INIT_RESOURCE": 2, + "WebKit": 1, + "InspectorBackendStub": 1, + "app.setWindowIcon": 1, + "QIcon": 1, + "app.setApplicationName": 1, + "app.setOrganizationName": 1, + "app.setOrganizationDomain": 1, + "app.setApplicationVersion": 1, + "PHANTOMJS_VERSION_STRING": 1, + "Phantom": 1, + "phantom": 1, + "phantom.execute": 1, + "app.exec": 1, + "phantom.returnValue": 1, "__OG_MATH_INL__": 2, "og": 1, "OG_INLINE": 41, @@ -10782,8 +12428,6 @@ "Abs": 1, "MASK_SIGNED": 2, "y": 16, - "x": 86, - "float": 74, "Fabs": 1, "f": 104, "uInt": 1, @@ -10799,11 +12443,8 @@ "ceilf": 1, "Ftoi": 1, "@todo": 1, - "needs": 4, - "testing": 2, "note": 1, "sse": 1, - "function": 19, "cvttss2si": 2, "OG_ASM_MSVC": 4, "OG_FTOI_USE_SSE": 2, @@ -10815,28 +12456,18 @@ "fld": 4, "fistp": 3, "//__asm": 3, - "do": 13, - "we": 10, - "need": 6, "O_o": 3, "#elif": 7, "OG_ASM_GNU": 4, "__asm__": 4, "__volatile__": 4, - "use": 37, - "c": 72, "cast": 7, - "instead": 4, - "not": 29, - "sure": 6, "why": 3, - "id": 4, "did": 3, "": 3, "FtoiFast": 2, "Ftol": 1, "": 1, - "Sign": 2, "Fmod": 1, "numerator": 2, "denominator": 2, @@ -10870,7 +12501,7 @@ "faster": 3, "two": 2, "known": 1, - "check": 4, + "methods": 2, "moved": 1, "beginning": 1, "HigherPowerOfTwo": 4, @@ -10878,8 +12509,6 @@ "FloorPowerOfTwo": 1, "CeilPowerOfTwo": 1, "ClosestPowerOfTwo": 1, - "high": 5, - "low": 5, "Digits": 1, "digits": 6, "step": 3, @@ -10887,7 +12516,6 @@ "sinf": 1, "ASin": 1, "<=>": 2, - "1": 4, "0f": 2, "HALF_PI": 2, "asinf": 1, @@ -10906,7 +12534,6 @@ "SinCos": 1, "sometimes": 1, "assembler": 1, - "just": 2, "waaayy": 1, "_asm": 1, "fsincos": 1, @@ -10926,64 +12553,1103 @@ "sec": 2, "Ms2Sec": 1, "ms": 2, - "Q_OS_LINUX": 2, - "": 1, - "QT_VERSION": 1, - "QT_VERSION_CHECK": 1, - "Something": 1, - "wrong": 1, - "setup.": 1, - "Please": 4, - "report": 3, - "mailing": 1, - "list": 3, - "main": 2, - "argc": 2, - "char**": 2, - "argv": 2, - "envp": 4, - "google_breakpad": 1, - "ExceptionHandler": 1, - "eh": 2, - "Utils": 4, - "exceptionHandler": 2, - "qInstallMsgHandler": 1, - "messageHandler": 2, - "QApplication": 1, - "app": 1, - "STATIC_BUILD": 1, - "Q_INIT_RESOURCE": 2, - "WebKit": 1, - "InspectorBackendStub": 1, - "app.setWindowIcon": 1, - "QIcon": 1, - "app.setApplicationName": 1, - "app.setOrganizationName": 1, - "app.setOrganizationDomain": 1, - "app.setApplicationVersion": 1, - "PHANTOMJS_VERSION_STRING": 1, - "Env": 13, - "parse": 3, - "Phantom": 1, - "phantom": 1, - "phantom.execute": 1, - "app.exec": 1, - "phantom.returnValue": 1, + "NINJA_METRICS_H_": 3, + "int64_t.": 1, + "Metrics": 2, + "module": 1, + "dumps": 1, + "stats": 2, + "actions.": 1, + "To": 1, + "METRIC_RECORD": 4, + "below.": 1, + "metrics": 2, + "hit": 1, + "path.": 2, + "count": 1, + "Total": 1, + "spent": 1, + "int64_t": 3, + "sum": 1, + "scoped": 1, + "recording": 1, + "metric": 2, + "across": 1, + "body": 1, + "macro.": 1, + "ScopedMetric": 4, + "Metric*": 4, + "metric_": 1, + "Timestamp": 1, + "started.": 1, + "Value": 24, + "platform": 2, + "dependent.": 1, + "start_": 1, + "prints": 1, + "report.": 1, + "NewMetric": 2, + "Print": 2, + "summary": 1, + "stdout.": 1, + "Report": 1, + "": 1, + "metrics_": 1, + "Get": 1, + "relative": 2, + "epoch.": 1, + "Epoch": 1, + "varies": 1, + "between": 1, + "platforms": 1, + "useful": 1, + "measuring": 1, + "elapsed": 1, + "time.": 1, + "GetTimeMillis": 1, + "simple": 1, + "stopwatch": 1, + "seconds": 1, + "Restart": 3, + "called.": 1, + "Stopwatch": 2, + "started_": 4, + "Seconds": 1, + "call.": 1, + "Elapsed": 1, + "": 1, + "primary": 1, + "metrics.": 1, + "top": 1, + "recorded": 1, + "metrics_h_metric": 2, + "g_metrics": 3, + "metrics_h_scoped": 1, + "Metrics*": 1, + "INTERNAL_SUPPRESS_PROTOBUF_FIELD_DEPRECATION": 1, + "": 1, + "": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "persons": 4, + "google": 72, + "protobuf": 72, + "Descriptor*": 3, + "Person_descriptor_": 6, + "GeneratedMessageReflection*": 1, + "Person_reflection_": 4, + "protobuf_AssignDesc_protocol_2dbuffer_2eproto": 4, + "protobuf_AddDesc_protocol_2dbuffer_2eproto": 6, + "FileDescriptor*": 1, + "DescriptorPool": 3, + "generated_pool": 2, + "FindFileByName": 1, + "GOOGLE_CHECK": 1, + "message_type": 1, + "Person_offsets_": 2, + "GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET": 3, + "Person": 65, + "name_": 30, + "GeneratedMessageReflection": 1, + "default_instance_": 8, + "_has_bits_": 14, + "_unknown_fields_": 5, + "MessageFactory": 3, + "generated_factory": 1, + "GOOGLE_PROTOBUF_DECLARE_ONCE": 1, + "protobuf_AssignDescriptors_once_": 2, + "inline": 39, + "protobuf_AssignDescriptorsOnce": 4, + "GoogleOnceInit": 1, + "protobuf_RegisterTypes": 2, + "InternalRegisterGeneratedMessage": 1, + "default_instance": 3, + "protobuf_ShutdownFile_protocol_2dbuffer_2eproto": 4, + "delete": 6, + "already_here": 3, + "GOOGLE_PROTOBUF_VERIFY_VERSION": 1, + "InternalAddGeneratedFile": 1, + "InternalRegisterGeneratedFile": 1, + "InitAsDefaultInstance": 3, + "OnShutdown": 1, + "StaticDescriptorInitializer_protocol_2dbuffer_2eproto": 2, + "static_descriptor_initializer_protocol_2dbuffer_2eproto_": 1, + "kNameFieldNumber": 2, + "Message": 7, + "SharedCtor": 4, + "MergeFrom": 9, + "_cached_size_": 7, + "const_cast": 3, + "string*": 11, + "kEmptyString": 12, + "SharedDtor": 3, + "SetCachedSize": 2, + "GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN": 2, + "GOOGLE_SAFE_CONCURRENT_WRITES_END": 2, + "*default_instance_": 1, + "Person*": 7, + "xffu": 3, + "has_name": 6, + "mutable_unknown_fields": 4, + "MergePartialFromCodedStream": 2, + "io": 4, + "CodedInputStream*": 2, + "DO_": 4, + "EXPRESSION": 2, + "uint32": 2, + "tag": 6, + "ReadTag": 1, + "switch": 3, + "WireFormatLite": 9, + "GetTagFieldNumber": 1, + "GetTagWireType": 2, + "WIRETYPE_LENGTH_DELIMITED": 1, + "ReadString": 1, + "mutable_name": 3, + "WireFormat": 10, + "VerifyUTF8String": 3, + ".data": 3, + ".length": 3, + "PARSE": 1, + "handle_uninterpreted": 2, + "ExpectAtEnd": 1, + "WIRETYPE_END_GROUP": 1, + "SkipField": 1, + "#undef": 3, + "SerializeWithCachedSizes": 2, + "CodedOutputStream*": 2, + "SERIALIZE": 2, + "WriteString": 1, + "unknown_fields": 7, + "SerializeUnknownFields": 1, + "uint8*": 4, + "SerializeWithCachedSizesToArray": 2, + "target": 6, + "WriteStringToArray": 1, + "SerializeUnknownFieldsToArray": 1, + "ByteSize": 2, + "total_size": 5, + "StringSize": 1, + "ComputeUnknownFieldsSize": 1, + "GOOGLE_CHECK_NE": 2, + "dynamic_cast_if_available": 1, + "": 12, + "ReflectionOps": 1, + "Merge": 1, + "from._has_bits_": 1, + "from.has_name": 1, + "set_name": 7, + "from.name": 1, + "from.unknown_fields": 1, + "CopyFrom": 5, + "IsInitialized": 3, + "Swap": 2, + "swap": 3, + "_unknown_fields_.Swap": 1, + "Metadata": 3, + "GetMetadata": 2, + "metadata": 2, + "metadata.descriptor": 1, + "metadata.reflection": 1, + "PROTOBUF_protocol_2dbuffer_2eproto__INCLUDED": 3, + "GOOGLE_PROTOBUF_VERSION": 1, + "generated": 2, + "newer": 2, + "protoc": 2, + "incompatible": 2, + "Protocol": 2, + "headers.": 3, + "update": 1, + "GOOGLE_PROTOBUF_MIN_PROTOC_VERSION": 1, + "older": 1, + "regenerate": 1, + "protoc.": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "virtual": 10, + "*this": 1, + "UnknownFieldSet": 2, + "UnknownFieldSet*": 1, + "GetCachedSize": 1, + "clear_name": 2, + "release_name": 2, + "set_allocated_name": 2, + "set_has_name": 7, + "clear_has_name": 5, + "mutable": 1, + "u": 9, + "*name_": 1, + "assign": 3, + "temp": 2, + "SWIG": 2, + "QSCICOMMAND_H": 2, + "__APPLE__": 4, + "": 1, + "": 2, + "": 1, + "QsciScintilla": 7, + "QsciCommand": 7, + "represents": 1, + "editor": 1, + "command": 9, + "keys": 3, + "bound": 4, + "Methods": 1, + "provided": 1, + "binding.": 1, + "Each": 1, + "friendly": 2, + "description": 3, + "dialogs.": 1, + "QSCINTILLA_EXPORT": 2, + "commands": 1, + "assigned": 1, + "key.": 1, + "Command": 4, + "Move": 26, + "down": 12, + "line.": 33, + "LineDown": 1, + "QsciScintillaBase": 100, + "SCI_LINEDOWN": 1, + "Extend": 33, + "selection": 39, + "LineDownExtend": 1, + "SCI_LINEDOWNEXTEND": 1, + "rectangular": 9, + "LineDownRectExtend": 1, + "SCI_LINEDOWNRECTEXTEND": 1, + "Scroll": 5, + "view": 2, + "LineScrollDown": 1, + "SCI_LINESCROLLDOWN": 1, + "LineUp": 1, + "SCI_LINEUP": 1, + "LineUpExtend": 1, + "SCI_LINEUPEXTEND": 1, + "LineUpRectExtend": 1, + "SCI_LINEUPRECTEXTEND": 1, + "LineScrollUp": 1, + "SCI_LINESCROLLUP": 1, + "document.": 8, + "ScrollToStart": 1, + "SCI_SCROLLTOSTART": 1, + "ScrollToEnd": 1, + "SCI_SCROLLTOEND": 1, + "vertically": 1, + "centre": 1, + "VerticalCentreCaret": 1, + "SCI_VERTICALCENTRECARET": 1, + "paragraph.": 4, + "ParaDown": 1, + "SCI_PARADOWN": 1, + "ParaDownExtend": 1, + "SCI_PARADOWNEXTEND": 1, + "ParaUp": 1, + "SCI_PARAUP": 1, + "ParaUpExtend": 1, + "SCI_PARAUPEXTEND": 1, + "left": 7, + "character.": 9, + "CharLeft": 1, + "SCI_CHARLEFT": 1, + "CharLeftExtend": 1, + "SCI_CHARLEFTEXTEND": 1, + "CharLeftRectExtend": 1, + "SCI_CHARLEFTRECTEXTEND": 1, + "CharRight": 1, + "SCI_CHARRIGHT": 1, + "CharRightExtend": 1, + "SCI_CHARRIGHTEXTEND": 1, + "CharRightRectExtend": 1, + "SCI_CHARRIGHTRECTEXTEND": 1, + "word.": 9, + "WordLeft": 1, + "SCI_WORDLEFT": 1, + "WordLeftExtend": 1, + "SCI_WORDLEFTEXTEND": 1, + "WordRight": 1, + "SCI_WORDRIGHT": 1, + "WordRightExtend": 1, + "SCI_WORDRIGHTEXTEND": 1, + "WordLeftEnd": 1, + "SCI_WORDLEFTEND": 1, + "WordLeftEndExtend": 1, + "SCI_WORDLEFTENDEXTEND": 1, + "WordRightEnd": 1, + "SCI_WORDRIGHTEND": 1, + "WordRightEndExtend": 1, + "SCI_WORDRIGHTENDEXTEND": 1, + "part.": 4, + "WordPartLeft": 1, + "SCI_WORDPARTLEFT": 1, + "WordPartLeftExtend": 1, + "SCI_WORDPARTLEFTEXTEND": 1, + "WordPartRight": 1, + "SCI_WORDPARTRIGHT": 1, + "WordPartRightExtend": 1, + "SCI_WORDPARTRIGHTEXTEND": 1, + "document": 16, + "Home": 1, + "SCI_HOME": 1, + "HomeExtend": 1, + "SCI_HOMEEXTEND": 1, + "HomeRectExtend": 1, + "SCI_HOMERECTEXTEND": 1, + "displayed": 10, + "HomeDisplay": 1, + "SCI_HOMEDISPLAY": 1, + "HomeDisplayExtend": 1, + "SCI_HOMEDISPLAYEXTEND": 1, + "HomeWrap": 1, + "SCI_HOMEWRAP": 1, + "HomeWrapExtend": 1, + "SCI_HOMEWRAPEXTEND": 1, + "visible": 6, + "VCHome": 1, + "SCI_VCHOME": 1, + "VCHomeExtend": 1, + "SCI_VCHOMEEXTEND": 1, + "VCHomeRectExtend": 1, + "SCI_VCHOMERECTEXTEND": 1, + "VCHomeWrap": 1, + "SCI_VCHOMEWRAP": 1, + "VCHomeWrapExtend": 1, + "SCI_VCHOMEWRAPEXTEND": 1, + "LineEnd": 1, + "SCI_LINEEND": 1, + "LineEndExtend": 1, + "SCI_LINEENDEXTEND": 1, + "LineEndRectExtend": 1, + "SCI_LINEENDRECTEXTEND": 1, + "LineEndDisplay": 1, + "SCI_LINEENDDISPLAY": 1, + "LineEndDisplayExtend": 1, + "SCI_LINEENDDISPLAYEXTEND": 1, + "LineEndWrap": 1, + "SCI_LINEENDWRAP": 1, + "LineEndWrapExtend": 1, + "SCI_LINEENDWRAPEXTEND": 1, + "DocumentStart": 1, + "SCI_DOCUMENTSTART": 1, + "DocumentStartExtend": 1, + "SCI_DOCUMENTSTARTEXTEND": 1, + "DocumentEnd": 1, + "SCI_DOCUMENTEND": 1, + "DocumentEndExtend": 1, + "SCI_DOCUMENTENDEXTEND": 1, + "page.": 13, + "PageUp": 1, + "SCI_PAGEUP": 1, + "PageUpExtend": 1, + "SCI_PAGEUPEXTEND": 1, + "PageUpRectExtend": 1, + "SCI_PAGEUPRECTEXTEND": 1, + "PageDown": 1, + "SCI_PAGEDOWN": 1, + "PageDownExtend": 1, + "SCI_PAGEDOWNEXTEND": 1, + "PageDownRectExtend": 1, + "SCI_PAGEDOWNRECTEXTEND": 1, + "Stuttered": 4, + "move": 2, + "StutteredPageUp": 1, + "SCI_STUTTEREDPAGEUP": 1, + "extend": 2, + "StutteredPageUpExtend": 1, + "SCI_STUTTEREDPAGEUPEXTEND": 1, + "StutteredPageDown": 1, + "SCI_STUTTEREDPAGEDOWN": 1, + "StutteredPageDownExtend": 1, + "SCI_STUTTEREDPAGEDOWNEXTEND": 1, + "Delete": 10, + "SCI_CLEAR": 1, + "DeleteBack": 1, + "SCI_DELETEBACK": 1, + "DeleteBackNotLine": 1, + "SCI_DELETEBACKNOTLINE": 1, + "left.": 2, + "DeleteWordLeft": 1, + "SCI_DELWORDLEFT": 1, + "right.": 2, + "DeleteWordRight": 1, + "SCI_DELWORDRIGHT": 1, + "DeleteWordRightEnd": 1, + "SCI_DELWORDRIGHTEND": 1, + "DeleteLineLeft": 1, + "SCI_DELLINELEFT": 1, + "DeleteLineRight": 1, + "SCI_DELLINERIGHT": 1, + "LineDelete": 1, + "SCI_LINEDELETE": 1, + "Cut": 2, + "clipboard.": 5, + "LineCut": 1, + "SCI_LINECUT": 1, + "Copy": 2, + "LineCopy": 1, + "SCI_LINECOPY": 1, + "Transpose": 1, + "lines.": 1, + "LineTranspose": 1, + "SCI_LINETRANSPOSE": 1, + "Duplicate": 2, + "LineDuplicate": 1, + "SCI_LINEDUPLICATE": 1, + "whole": 2, + "SelectAll": 1, + "SCI_SELECTALL": 1, + "lines": 3, + "MoveSelectedLinesUp": 1, + "SCI_MOVESELECTEDLINESUP": 1, + "MoveSelectedLinesDown": 1, + "SCI_MOVESELECTEDLINESDOWN": 1, + "selection.": 1, + "SelectionDuplicate": 1, + "SCI_SELECTIONDUPLICATE": 1, + "Convert": 2, + "lower": 1, + "case.": 2, + "SelectionLowerCase": 1, + "SCI_LOWERCASE": 1, + "upper": 1, + "SelectionUpperCase": 1, + "SCI_UPPERCASE": 1, + "SelectionCut": 1, + "SCI_CUT": 1, + "SelectionCopy": 1, + "SCI_COPY": 1, + "Paste": 2, + "SCI_PASTE": 1, + "Toggle": 1, + "insert/overtype.": 1, + "EditToggleOvertype": 1, + "SCI_EDITTOGGLEOVERTYPE": 1, + "Insert": 2, + "dependent": 1, + "newline.": 1, + "Newline": 1, + "SCI_NEWLINE": 1, + "formfeed.": 1, + "Formfeed": 1, + "SCI_FORMFEED": 1, + "Indent": 1, + "Tab": 1, + "SCI_TAB": 1, + "De": 1, + "indent": 1, + "Backtab": 1, + "SCI_BACKTAB": 1, + "Cancel": 2, + "SCI_CANCEL": 1, + "Undo": 2, + "command.": 5, + "SCI_UNDO": 1, + "Redo": 2, + "SCI_REDO": 1, + "Zoom": 2, + "in.": 1, + "ZoomIn": 1, + "SCI_ZOOMIN": 1, + "out.": 1, + "ZoomOut": 1, + "SCI_ZOOMOUT": 1, + "Return": 3, + "executed": 1, + "instance.": 2, + "scicmd": 2, + "Execute": 1, + "Binds": 2, + "binding": 3, + "removed.": 2, + "invalid": 5, + "unchanged.": 1, + "Valid": 1, + "Key_Down": 1, + "Key_Up": 1, + "Key_Left": 1, + "Key_Right": 1, + "Key_Home": 1, + "Key_End": 1, + "Key_PageUp": 1, + "Key_PageDown": 1, + "Key_Delete": 1, + "Key_Insert": 1, + "Key_Escape": 1, + "Key_Backspace": 1, + "Key_Tab": 1, + "Key_Return.": 1, + "Keys": 1, + "SHIFT": 1, + "CTRL": 1, + "ALT": 1, + "META.": 1, + "setAlternateKey": 3, + "validKey": 3, + "setKey": 3, + "altkey": 3, + "alternateKey": 3, + "returned.": 4, + "qkey": 2, + "qaltkey": 2, + "valid": 2, + "QsciCommandSet": 1, + "*qs": 1, + "cmd": 1, + "*desc": 1, + "bindKey": 1, + "qk": 1, + "scik": 1, + "*qsCmd": 1, + "scikey": 1, + "scialtkey": 1, + "*descCmd": 1, + "QSCIPRINTER_H": 2, + "": 1, + "": 1, + "QT_BEGIN_NAMESPACE": 1, + "QRect": 2, + "QPainter": 2, + "QT_END_NAMESPACE": 1, + "QsciPrinter": 9, + "sub": 2, + "Qt": 1, + "QPrinter": 3, + "text": 5, + "Scintilla": 2, + "further": 1, + "classed": 1, + "layout": 1, + "adding": 2, + "headers": 3, + "footers": 2, + "example.": 1, + "Constructs": 1, + "printer": 1, + "paint": 1, + "PrinterMode": 1, + "ScreenResolution": 1, + "Destroys": 1, + "Format": 1, + "drawn": 2, + "painter": 4, + "add": 3, + "customised": 2, + "graphics.": 2, + "drawing": 4, + "actually": 1, + "sized.": 1, + "area": 5, + "draw": 1, + "text.": 3, + "necessary": 1, + "reserve": 1, + "By": 1, + "printable": 1, + "setFullPage": 1, + "because": 2, + "printRange": 2, + "try": 1, + "over": 1, + "pagenr": 2, + "numbered": 1, + "formatPage": 1, + "points": 2, + "font": 2, + "printing.": 2, + "setMagnification": 2, + "magnification": 3, + "mag": 2, + "printing": 2, + "magnification.": 1, + "qsb.": 1, + "negative": 2, + "signifies": 2, + "error.": 1, + "*qsb": 1, + "wrap": 4, + "WrapWord.": 1, + "setWrapMode": 2, + "WrapMode": 3, + "wrapMode": 2, + "wmode.": 1, + "wmode": 1, + "": 2, + "Gui": 1, + "rpc_init": 1, + "rpc_server_loop": 1, + "v8": 9, + "Scanner": 16, + "UnicodeCache*": 4, + "unicode_cache": 3, + "unicode_cache_": 10, + "octal_pos_": 5, + "Location": 14, + "harmony_scoping_": 4, + "harmony_modules_": 4, + "Initialize": 4, + "Utf16CharacterStream*": 3, + "source_": 7, + "Init": 3, + "has_line_terminator_before_next_": 9, + "SkipWhiteSpace": 4, + "Scan": 5, + "uc32": 19, + "ScanHexNumber": 2, + "expected_length": 4, + "ASSERT": 17, + "overflow": 1, + "c0_": 64, + "d": 8, + "HexValue": 2, + "PushBack": 8, + "Advance": 44, + "STATIC_ASSERT": 5, + "Token": 212, + "NUM_TOKENS": 1, + "one_char_tokens": 2, + "ILLEGAL": 120, + "LPAREN": 2, + "RPAREN": 2, + "COMMA": 2, + "COLON": 2, + "SEMICOLON": 2, + "CONDITIONAL": 2, + "LBRACK": 2, + "RBRACK": 2, + "LBRACE": 2, + "RBRACE": 2, + "BIT_NOT": 2, + "Next": 3, + "current_": 2, + "has_multiline_comment_before_next_": 5, + "token": 64, + "": 1, + "pos": 12, + "source_pos": 10, + "next_.token": 3, + "next_.location.beg_pos": 3, + "next_.location.end_pos": 4, + "current_.token": 4, + "IsByteOrderMark": 2, + "xFEFF": 1, + "xFFFE": 1, + "start_position": 2, + "IsWhiteSpace": 2, + "IsLineTerminator": 6, + "SkipSingleLineComment": 6, + "undo": 4, + "WHITESPACE": 6, + "SkipMultiLineComment": 3, + "ch": 5, + "ScanHtmlComment": 3, + "LT": 2, + "next_.literal_chars": 13, + "ScanString": 3, + "LTE": 1, + "ASSIGN_SHL": 1, + "SHL": 1, + "GTE": 1, + "ASSIGN_SAR": 1, + "ASSIGN_SHR": 1, + "SHR": 1, + "SAR": 1, + "GT": 1, + "EQ_STRICT": 1, + "EQ": 1, + "ASSIGN": 1, + "NE_STRICT": 1, + "NE": 1, + "INC": 1, + "ASSIGN_ADD": 1, + "ADD": 1, + "DEC": 1, + "ASSIGN_SUB": 1, + "SUB": 1, + "ASSIGN_MUL": 1, + "MUL": 1, + "ASSIGN_MOD": 1, + "MOD": 1, + "ASSIGN_DIV": 1, + "DIV": 1, + "AND": 1, + "ASSIGN_BIT_AND": 1, + "BIT_AND": 1, + "OR": 1, + "ASSIGN_BIT_OR": 1, + "BIT_OR": 1, + "ASSIGN_BIT_XOR": 1, + "BIT_XOR": 1, + "IsDecimalDigit": 2, + "ScanNumber": 3, + "PERIOD": 1, + "IsIdentifierStart": 2, + "ScanIdentifierOrKeyword": 2, + "EOS": 1, + "SeekForward": 4, + "current_pos": 4, + "ASSERT_EQ": 1, + "ScanEscape": 2, + "IsCarriageReturn": 2, + "IsLineFeed": 2, + "fall": 2, + "xxx": 1, + "immediately": 1, + "octal": 1, + "escape": 1, + "quote": 3, + "consume": 2, + "LiteralScope": 4, + "literal": 2, + "X": 2, + "E": 3, + "l": 1, + "w": 1, + "keyword": 1, + "Unescaped": 1, + "in_character_class": 2, + "AddLiteralCharAdvance": 3, + "literal.Complete": 2, + "ScanLiteralUnicodeEscape": 3, + "V8_SCANNER_H_": 3, + "ParsingFlags": 1, + "kNoParsingFlags": 1, + "kLanguageModeMask": 4, + "kAllowLazy": 1, + "kAllowNativesSyntax": 1, + "kAllowModules": 1, + "CLASSIC_MODE": 2, + "STRICT_MODE": 2, + "EXTENDED_MODE": 2, + "x16": 1, + "x36.": 1, + "Utf16CharacterStream": 3, + "pos_": 6, + "buffer_cursor_": 5, + "buffer_end_": 3, + "ReadBlock": 2, + "": 1, + "kEndOfInput": 2, + "code_unit_count": 7, + "buffered_chars": 2, + "SlowSeekForward": 2, + "int32_t": 1, + "code_unit": 6, + "uc16*": 3, + "UnicodeCache": 3, + "unibrow": 11, + "Utf8InputBuffer": 2, + "<1024>": 2, + "Utf8Decoder": 2, + "StaticResource": 2, + "": 2, + "utf8_decoder": 1, + "utf8_decoder_": 2, + "uchar": 4, + "kIsIdentifierStart.get": 1, + "IsIdentifierPart": 1, + "kIsIdentifierPart.get": 1, + "kIsLineTerminator.get": 1, + "kIsWhiteSpace.get": 1, + "Predicate": 4, + "": 1, + "128": 4, + "kIsIdentifierStart": 1, + "": 1, + "kIsIdentifierPart": 1, + "": 1, + "kIsLineTerminator": 1, + "": 1, + "kIsWhiteSpace": 1, + "DISALLOW_COPY_AND_ASSIGN": 2, + "LiteralBuffer": 6, + "is_ascii_": 10, + "position_": 17, + "backing_store_": 7, + "backing_store_.length": 4, + "backing_store_.Dispose": 3, + "INLINE": 2, + "AddChar": 2, + "ExpandBuffer": 2, + "kMaxAsciiCharCodeU": 1, + "": 6, + "kASCIISize": 1, + "ConvertToUtf16": 2, + "": 2, + "kUC16Size": 2, + "is_ascii": 3, + "Vector": 13, + "uc16": 5, + "utf16_literal": 3, + "backing_store_.start": 5, + "ascii_literal": 3, + "kInitialCapacity": 2, + "kGrowthFactory": 2, + "kMinConversionSlack": 1, + "kMaxGrowth": 2, + "MB": 1, + "NewCapacity": 3, + "min_capacity": 2, + "capacity": 3, + "Max": 1, + "new_capacity": 2, + "Min": 1, + "new_store": 6, + "memcpy": 1, + "new_store.start": 3, + "new_content_size": 4, + "src": 2, + "": 1, + "dst": 2, + "Scanner*": 2, + "self": 5, + "scanner_": 5, + "complete_": 4, + "StartLiteral": 2, + "DropLiteral": 2, + "Complete": 1, + "TerminateLiteral": 2, + "beg_pos": 5, + "end_pos": 4, + "kNoOctalLocation": 1, + "scanner_contants": 1, + "current_token": 1, + "current_.location": 2, + "literal_ascii_string": 1, + "ASSERT_NOT_NULL": 9, + "current_.literal_chars": 11, + "literal_utf16_string": 1, + "is_literal_ascii": 1, + "literal_length": 1, + "literal_contains_escapes": 1, + "source_length": 3, + "location.end_pos": 1, + "location.beg_pos": 1, + "STRING": 1, + "peek": 1, + "peek_location": 1, + "next_.location": 1, + "next_literal_ascii_string": 1, + "next_literal_utf16_string": 1, + "is_next_literal_ascii": 1, + "next_literal_length": 1, + "kCharacterLookaheadBufferSize": 3, + "ScanOctalEscape": 1, + "octal_position": 1, + "clear_octal_position": 1, + "HarmonyScoping": 1, + "SetHarmonyScoping": 1, + "scoping": 2, + "HarmonyModules": 1, + "SetHarmonyModules": 1, + "modules": 2, + "HasAnyLineTerminatorBeforeNext": 1, + "ScanRegExpPattern": 1, + "seen_equal": 1, + "ScanRegExpFlags": 1, + "IsIdentifier": 1, + "CharacterStream*": 1, + "TokenDesc": 3, + "LiteralBuffer*": 2, + "literal_chars": 1, + "free_buffer": 3, + "literal_buffer1_": 3, + "literal_buffer2_": 2, + "AddLiteralChar": 2, + "tok": 2, + "else_": 2, + "ScanDecimalDigits": 1, + "seen_period": 1, + "ScanIdentifierSuffix": 1, + "LiteralScope*": 1, + "ScanIdentifierUnicodeEscape": 1, + "desc": 2, + "look": 1, + "ahead": 1, + "smallPrime_t": 1, + "UTILS_H": 3, + "": 1, + "": 1, + "": 1, + "QTemporaryFile": 1, + "showUsage": 1, + "QtMsgType": 1, + "dump_path": 1, + "minidump_id": 1, + "context": 8, + "QVariant": 1, + "coffee2js": 1, + "script": 1, + "injectJsInFrame": 2, + "jsFilePath": 5, + "libraryPath": 5, + "QWebFrame": 4, + "*targetFrame": 4, + "startingScript": 2, + "Encoding": 3, + "jsFileEnc": 2, + "readResourceFileUtf8": 1, + "resourceFilePath": 1, + "loadJSForDebug": 2, + "autorun": 2, + "cleanupFromDebug": 1, + "findScript": 1, + "jsFromScriptFile": 1, + "scriptPath": 1, + "enc": 1, + "shouldn": 1, + "instantiated": 1, + "QTemporaryFile*": 2, + "m_tempHarness": 1, + "We": 1, + "ourselves": 1, + "m_tempWrapper": 1, + "V8_DECLARE_ONCE": 1, + "init_once": 2, + "V8": 21, + "is_running_": 6, + "has_been_set_up_": 4, + "has_been_disposed_": 6, + "has_fatal_error_": 5, + "use_crankshaft_": 6, + "List": 3, + "": 3, + "call_completed_callbacks_": 16, + "LazyMutex": 1, + "entropy_mutex": 1, + "LAZY_MUTEX_INITIALIZER": 1, + "EntropySource": 3, + "entropy_source": 4, + "Deserializer*": 2, + "des": 3, + "FlagList": 1, + "EnforceFlagImplications": 1, + "InitializeOncePerProcess": 4, + "Isolate": 9, + "CurrentPerIsolateThreadData": 4, + "EnterDefaultIsolate": 1, + "thread_id": 1, + ".Equals": 1, + "ThreadId": 1, + "Current": 5, + "isolate": 15, + "IsDead": 2, + "Isolate*": 6, + "SetFatalError": 2, + "TearDown": 5, + "IsDefaultIsolate": 1, + "ElementsAccessor": 2, + "LOperand": 2, + "TearDownCaches": 1, + "RegisteredExtension": 1, + "UnregisterAll": 1, + "OS": 3, + "seed_random": 2, + "FLAG_random_seed": 2, + "val": 3, + "ScopedLock": 1, + "entropy_mutex.Pointer": 1, + "random": 1, + "random_base": 3, + "xFFFF": 2, + "FFFF": 1, + "SetEntropySource": 2, + "SetReturnAddressLocationResolver": 3, + "ReturnAddressLocationResolver": 2, + "resolver": 3, + "StackFrame": 1, + "Random": 3, + "Context*": 4, + "IsGlobalContext": 1, + "ByteArray*": 1, + "seed": 2, + "random_seed": 1, + "": 1, + "GetDataStartAddress": 1, + "RandomPrivate": 2, + "private_random_seed": 1, + "IdleNotification": 3, + "hint": 3, + "FLAG_use_idle_notification": 1, + "HEAP": 1, + "AddCallCompletedCallback": 2, + "CallCompletedCallback": 4, + "callback": 7, + "Lazy": 1, + "init.": 1, + "Add": 1, + "RemoveCallCompletedCallback": 2, + "Remove": 1, + "FireCallCompletedCallback": 2, + "HandleScopeImplementer*": 1, + "handle_scope_implementer": 5, + "CallDepthIsZero": 1, + "IncrementCallDepth": 1, + "DecrementCallDepth": 1, + "union": 1, + "double_value": 1, + "uint64_t_value": 1, + "double_int_union": 2, + "Object*": 4, + "FillHeapNumberWithRandom": 2, + "heap_number": 4, + "random_bits": 2, + "binary_million": 3, + "r.double_value": 3, + "r.uint64_t_value": 1, + "HeapNumber": 1, + "set_value": 1, + "InitializeOncePerProcessImpl": 3, + "SetUp": 4, + "FLAG_crankshaft": 1, + "Serializer": 1, + "SupportsCrankshaft": 1, + "PostSetUp": 1, + "RuntimeProfiler": 1, + "GlobalSetUp": 1, + "FLAG_stress_compaction": 1, + "FLAG_force_marking_deque_overflows": 1, + "FLAG_gc_global": 1, + "FLAG_max_new_space_size": 1, + "kPageSizeBits": 1, + "SetUpCaches": 1, + "SetUpJSCallerSavedCodeData": 1, + "SamplerRegistry": 1, + "ExternalReference": 1, + "CallOnce": 1, + "V8_V8_H_": 3, + "GOOGLE3": 2, + "NDEBUG": 4, + "both": 1, + "Deserializer": 1, + "AllStatic": 1, + "IsRunning": 1, + "UseCrankshaft": 1, + "FatalProcessOutOfMemory": 1, + "take_snapshot": 1, + "NilValue": 1, + "kNullValue": 1, + "kUndefinedValue": 1, + "EqualityKind": 1, + "kStrictEquality": 1, + "kNonStrictEquality": 1, "PY_SSIZE_T_CLEAN": 1, "Py_PYTHON_H": 1, "Python": 1, - "needed": 3, "compile": 1, - "C": 6, "extensions": 1, - "please": 2, - "install": 3, "development": 1, - "version": 38, "Python.": 1, "": 1, "offsetof": 2, - "type": 7, "member": 2, "type*": 1, "WIN32": 2, @@ -10992,7 +13658,6 @@ "__cdecl": 2, "__fastcall": 2, "DL_IMPORT": 2, - "t": 15, "DL_EXPORT": 2, "PY_LONG_LONG": 5, "LONG_LONG": 1, @@ -11002,7 +13667,6 @@ "Py_TYPE": 4, "PyDict_Type": 1, "PyDict_Contains": 1, - "d": 8, "o": 20, "PySequence_Contains": 1, "Py_ssize_t": 17, @@ -11039,9 +13703,7 @@ "*buf": 1, "PyObject": 221, "*obj": 2, - "len": 15, "itemsize": 2, - "readonly": 3, "ndim": 2, "*format": 1, "*shape": 1, @@ -11141,7 +13803,6 @@ "PyNumber_Divide": 1, "PyNumber_InPlaceDivide": 1, "__Pyx_PySequence_GetSlice": 2, - "b": 57, "PySequence_GetSlice": 2, "__Pyx_PySequence_SetSlice": 2, "PySequence_SetSlice": 2, @@ -11157,11 +13818,9 @@ "tp_name": 4, "PyMethod_New": 2, "func": 3, - "self": 5, "klass": 1, "PyInstanceMethod_New": 1, "__Pyx_GetAttrString": 2, - "n": 28, "PyObject_GetAttrString": 3, "__Pyx_SetAttrString": 2, "PyObject_SetAttrString": 2, @@ -11169,12 +13828,10 @@ "PyObject_DelAttrString": 2, "__Pyx_NAMESTR": 3, "__Pyx_DOCSTR": 3, - "__cplusplus": 12, "__PYX_EXTERN_C": 2, "_USE_MATH_DEFINES": 1, "": 1, "__PYX_HAVE_API__wrapper_inner": 1, - "": 4, "PYREX_WITHOUT_ASSERTIONS": 1, "CYTHON_WITHOUT_ASSERTIONS": 1, "CYTHON_INLINE": 68, @@ -11193,7 +13850,6 @@ "__Pyx_StringTabEntry": 1, "__Pyx_PyBytes_FromUString": 1, "__Pyx_PyBytes_AsUString": 1, - "unsigned": 22, "__Pyx_PyBool_FromLong": 1, "Py_INCREF": 3, "Py_True": 2, @@ -11265,9 +13921,7 @@ "complex": 2, "__pyx_t_float_complex": 27, "_Complex": 2, - "real": 4, "imag": 2, - "double": 25, "__pyx_t_double_complex": 27, "npy_cfloat": 1, "__pyx_t_5numpy_cfloat_t": 1, @@ -11287,8 +13941,6 @@ "m": 4, "PyImport_ImportModule": 1, "modname": 1, - "end": 23, - "p": 6, "PyLong_AsVoidPtr": 1, "Py_XDECREF": 3, "__Pyx_RefNannySetupContext": 13, @@ -11335,7 +13987,6 @@ "__pyx_print": 1, "__pyx_print_kwargs": 1, "__Pyx_PrintOne": 4, - "stream": 6, "*o": 1, "*__Pyx_PyInt_to_py_Py_intptr_t": 1, "Py_intptr_t": 1, @@ -11379,7 +14030,6 @@ "cabs": 1, "cpow": 1, "__Pyx_PyInt_AsUnsignedChar": 1, - "short": 5, "__Pyx_PyInt_AsUnsignedShort": 1, "__Pyx_PyInt_AsUnsignedInt": 1, "__Pyx_PyInt_AsChar": 1, @@ -11601,7 +14251,6 @@ "NPY_F_CONTIGUOUS": 1, "__pyx_k_tuple_8": 1, "__pyx_L7": 2, - "buf": 14, "PyArray_DATA": 1, "strides": 5, "malloc": 2, @@ -11648,7 +14297,6 @@ "__pyx_L2": 2, "__pyx_pf_5numpy_7ndarray_1__releasebuffer__": 2, "PyArray_HASFIELDS": 1, - "free": 4, "*__pyx_f_5numpy_PyArray_MultiIterNew1": 1, "*__pyx_v_a": 5, "PyArray_MultiIterNew": 5, @@ -11675,11 +14323,9 @@ "__pyx_v_fields": 7, "__pyx_v_childname": 4, "__pyx_v_new_offset": 5, - "names": 3, "PyTuple_GET_SIZE": 2, "PyTuple_GET_ITEM": 3, "PyObject_GetItem": 1, - "fields": 4, "PyTuple_CheckExact": 1, "tuple": 3, "__pyx_ptype_5numpy_dtype": 1, @@ -11694,2661 +14340,25 @@ "elsize": 1, "__pyx_k_tuple_16": 1, "__pyx_L10": 2, - "Py_EQ": 6, - "QSCICOMMAND_H": 2, - "": 1, - "": 1, - "QsciCommand": 7, - "represents": 1, - "an": 23, - "editor": 1, - "command": 9, - "may": 9, - "have": 4, - "one": 73, - "keys": 3, - "bound": 4, - "Methods": 1, - "provided": 1, - "change": 3, - "remove": 2, - "key": 23, - "binding.": 1, - "Each": 1, - "has": 29, - "user": 3, - "friendly": 2, - "description": 3, - "in": 165, - "mapping": 3, - "dialogs.": 1, - "defines": 3, - "different": 5, - "commands": 1, - "assigned": 1, - "key.": 1, - "Command": 4, - "Move": 26, - "down": 12, - "line.": 33, - "LineDown": 1, - "SCI_LINEDOWN": 1, - "Extend": 33, - "selection": 39, - "LineDownExtend": 1, - "SCI_LINEDOWNEXTEND": 1, - "rectangular": 9, - "LineDownRectExtend": 1, - "SCI_LINEDOWNRECTEXTEND": 1, - "Scroll": 5, - "view": 2, - "LineScrollDown": 1, - "SCI_LINESCROLLDOWN": 1, - "up": 18, - "LineUp": 1, - "SCI_LINEUP": 1, - "LineUpExtend": 1, - "SCI_LINEUPEXTEND": 1, - "LineUpRectExtend": 1, - "SCI_LINEUPRECTEXTEND": 1, - "LineScrollUp": 1, - "SCI_LINESCROLLUP": 1, - "start": 12, - "ScrollToStart": 1, - "SCI_SCROLLTOSTART": 1, - "ScrollToEnd": 1, - "SCI_SCROLLTOEND": 1, - "vertically": 1, - "centre": 1, - "current": 26, - "VerticalCentreCaret": 1, - "SCI_VERTICALCENTRECARET": 1, - "paragraph.": 4, - "ParaDown": 1, - "SCI_PARADOWN": 1, - "ParaDownExtend": 1, - "SCI_PARADOWNEXTEND": 1, - "ParaUp": 1, - "SCI_PARAUP": 1, - "ParaUpExtend": 1, - "SCI_PARAUPEXTEND": 1, - "left": 7, - "character.": 9, - "CharLeft": 1, - "SCI_CHARLEFT": 1, - "CharLeftExtend": 1, - "SCI_CHARLEFTEXTEND": 1, - "CharLeftRectExtend": 1, - "SCI_CHARLEFTRECTEXTEND": 1, - "right": 9, - "CharRight": 1, - "SCI_CHARRIGHT": 1, - "CharRightExtend": 1, - "SCI_CHARRIGHTEXTEND": 1, - "CharRightRectExtend": 1, - "SCI_CHARRIGHTRECTEXTEND": 1, - "word.": 9, - "WordLeft": 1, - "SCI_WORDLEFT": 1, - "WordLeftExtend": 1, - "SCI_WORDLEFTEXTEND": 1, - "WordRight": 1, - "SCI_WORDRIGHT": 1, - "WordRightExtend": 1, - "SCI_WORDRIGHTEXTEND": 1, - "previous": 6, - "WordLeftEnd": 1, - "SCI_WORDLEFTEND": 1, - "WordLeftEndExtend": 1, - "SCI_WORDLEFTENDEXTEND": 1, - "next": 9, - "WordRightEnd": 1, - "SCI_WORDRIGHTEND": 1, - "WordRightEndExtend": 1, - "SCI_WORDRIGHTENDEXTEND": 1, - "word": 7, - "part.": 4, - "WordPartLeft": 1, - "SCI_WORDPARTLEFT": 1, - "WordPartLeftExtend": 1, - "SCI_WORDPARTLEFTEXTEND": 1, - "WordPartRight": 1, - "SCI_WORDPARTRIGHT": 1, - "WordPartRightExtend": 1, - "SCI_WORDPARTRIGHTEXTEND": 1, - "Home": 1, - "SCI_HOME": 1, - "HomeExtend": 1, - "SCI_HOMEEXTEND": 1, - "HomeRectExtend": 1, - "SCI_HOMERECTEXTEND": 1, - "displayed": 10, - "HomeDisplay": 1, - "SCI_HOMEDISPLAY": 1, - "HomeDisplayExtend": 1, - "SCI_HOMEDISPLAYEXTEND": 1, - "HomeWrap": 1, - "SCI_HOMEWRAP": 1, - "HomeWrapExtend": 1, - "SCI_HOMEWRAPEXTEND": 1, - "visible": 6, - "character": 10, - "VCHome": 1, - "SCI_VCHOME": 1, - "VCHomeExtend": 1, - "SCI_VCHOMEEXTEND": 1, - "VCHomeRectExtend": 1, - "SCI_VCHOMERECTEXTEND": 1, - "VCHomeWrap": 1, - "SCI_VCHOMEWRAP": 1, - "VCHomeWrapExtend": 1, - "SCI_VCHOMEWRAPEXTEND": 1, - "LineEnd": 1, - "SCI_LINEEND": 1, - "LineEndExtend": 1, - "SCI_LINEENDEXTEND": 1, - "LineEndRectExtend": 1, - "SCI_LINEENDRECTEXTEND": 1, - "LineEndDisplay": 1, - "SCI_LINEENDDISPLAY": 1, - "LineEndDisplayExtend": 1, - "SCI_LINEENDDISPLAYEXTEND": 1, - "LineEndWrap": 1, - "SCI_LINEENDWRAP": 1, - "LineEndWrapExtend": 1, - "SCI_LINEENDWRAPEXTEND": 1, - "DocumentStart": 1, - "SCI_DOCUMENTSTART": 1, - "DocumentStartExtend": 1, - "SCI_DOCUMENTSTARTEXTEND": 1, - "DocumentEnd": 1, - "SCI_DOCUMENTEND": 1, - "DocumentEndExtend": 1, - "SCI_DOCUMENTENDEXTEND": 1, - "PageUp": 1, - "SCI_PAGEUP": 1, - "PageUpExtend": 1, - "SCI_PAGEUPEXTEND": 1, - "PageUpRectExtend": 1, - "SCI_PAGEUPRECTEXTEND": 1, - "PageDown": 1, - "SCI_PAGEDOWN": 1, - "PageDownExtend": 1, - "SCI_PAGEDOWNEXTEND": 1, - "PageDownRectExtend": 1, - "SCI_PAGEDOWNRECTEXTEND": 1, - "Stuttered": 4, - "move": 2, - "StutteredPageUp": 1, - "SCI_STUTTEREDPAGEUP": 1, - "extend": 2, - "StutteredPageUpExtend": 1, - "SCI_STUTTEREDPAGEUPEXTEND": 1, - "StutteredPageDown": 1, - "SCI_STUTTEREDPAGEDOWN": 1, - "StutteredPageDownExtend": 1, - "SCI_STUTTEREDPAGEDOWNEXTEND": 1, - "Delete": 10, - "SCI_CLEAR": 1, - "DeleteBack": 1, - "SCI_DELETEBACK": 1, - "at": 20, - "DeleteBackNotLine": 1, - "SCI_DELETEBACKNOTLINE": 1, - "left.": 2, - "DeleteWordLeft": 1, - "SCI_DELWORDLEFT": 1, - "right.": 2, - "DeleteWordRight": 1, - "SCI_DELWORDRIGHT": 1, - "DeleteWordRightEnd": 1, - "SCI_DELWORDRIGHTEND": 1, - "DeleteLineLeft": 1, - "SCI_DELLINELEFT": 1, - "DeleteLineRight": 1, - "SCI_DELLINERIGHT": 1, - "LineDelete": 1, - "SCI_LINEDELETE": 1, - "Cut": 2, - "clipboard.": 5, - "LineCut": 1, - "SCI_LINECUT": 1, - "Copy": 2, - "LineCopy": 1, - "SCI_LINECOPY": 1, - "Transpose": 1, - "lines.": 1, - "LineTranspose": 1, - "SCI_LINETRANSPOSE": 1, - "Duplicate": 2, - "LineDuplicate": 1, - "SCI_LINEDUPLICATE": 1, - "Select": 49, - "SelectAll": 1, - "SCI_SELECTALL": 1, - "selected": 13, - "MoveSelectedLinesUp": 1, - "SCI_MOVESELECTEDLINESUP": 1, - "MoveSelectedLinesDown": 1, - "SCI_MOVESELECTEDLINESDOWN": 1, - "selection.": 1, - "SelectionDuplicate": 1, - "SCI_SELECTIONDUPLICATE": 1, - "Convert": 2, - "lower": 1, - "case.": 2, - "SelectionLowerCase": 1, - "SCI_LOWERCASE": 1, - "upper": 1, - "SelectionUpperCase": 1, - "SCI_UPPERCASE": 1, - "SelectionCut": 1, - "SCI_CUT": 1, - "SelectionCopy": 1, - "SCI_COPY": 1, - "Paste": 2, - "SCI_PASTE": 1, - "Toggle": 1, - "insert/overtype.": 1, - "EditToggleOvertype": 1, - "SCI_EDITTOGGLEOVERTYPE": 1, - "Insert": 2, - "platform": 2, - "dependent": 1, - "newline.": 1, - "Newline": 1, - "SCI_NEWLINE": 1, - "formfeed.": 1, - "Formfeed": 1, - "SCI_FORMFEED": 1, - "Indent": 1, - "level.": 3, - "Tab": 1, - "SCI_TAB": 1, - "De": 1, - "indent": 1, - "Backtab": 1, - "SCI_BACKTAB": 1, - "Cancel": 2, - "operation.": 2, - "SCI_CANCEL": 1, - "Undo": 2, - "command.": 5, - "SCI_UNDO": 1, - "Redo": 2, - "SCI_REDO": 1, - "Zoom": 2, - "in.": 1, - "ZoomIn": 1, - "SCI_ZOOMIN": 1, - "out.": 1, - "ZoomOut": 1, - "SCI_ZOOMOUT": 1, - "executed": 1, - "scicmd": 2, - "Execute": 1, - "execute": 3, - "Binds": 2, - "If": 11, - "then": 15, - "binding": 3, - "removed.": 2, - "invalid": 5, - "unchanged.": 1, - "Valid": 1, - "control": 17, - "Key_Down": 1, - "Key_Up": 1, - "Key_Left": 1, - "Key_Right": 1, - "Key_Home": 1, - "Key_End": 1, - "Key_PageUp": 1, - "Key_PageDown": 1, - "Key_Delete": 1, - "Key_Insert": 1, - "Key_Escape": 1, - "Key_Backspace": 1, - "Key_Tab": 1, - "Key_Return.": 1, - "Keys": 1, - "combination": 2, - "SHIFT": 1, - "CTRL": 1, - "ALT": 1, - "META.": 1, - "setAlternateKey": 3, - "validKey": 3, - "setKey": 3, - "alternate": 7, - "altkey": 3, - "alternateKey": 3, - "currently": 12, - "returned.": 4, - "qkey": 2, - "qaltkey": 2, - "valid": 2, - "QString": 20, - "friend": 10, - "QsciCommandSet": 1, - "*qs": 1, - "cmd": 1, - "*desc": 1, - "bindKey": 1, - "qk": 1, - "scik": 1, - "*qsCmd": 1, - "scikey": 1, - "scialtkey": 1, - "*descCmd": 1, - "Gui": 1, - "LIBCANIH": 2, - "": 2, - "": 2, - "": 1, - "": 1, - "int64": 1, - "//#define": 1, - "dout": 2, - "cout": 2, - "cerr": 1, - "using": 11, - "libcanister": 2, - "//the": 8, - "canmem": 22, - "object": 3, - "generic": 1, - "memory": 14, - "container": 2, - "commonly": 1, - "//throughout": 1, - "canister": 14, - "framework": 1, - "hold": 1, - "uncertain": 1, - "//length": 1, - "which": 14, - "contain": 1, - "null": 3, - "bytes.": 1, - "data": 26, - "raw": 2, - "absolute": 1, - "length": 10, - "//creates": 3, - "unallocated": 1, - "allocsize": 1, - "allocated": 2, - "blank": 1, - "strdata": 1, - "//automates": 1, - "creation": 1, - "zero": 5, - "limited": 2, - "canmems": 1, - "//cleans": 1, - "zeromem": 1, - "//overwrites": 2, - "fragmem": 1, - "fragment": 2, - "notation": 1, - "countlen": 1, - "//counts": 1, - "strings": 1, - "stores": 3, - "trim": 2, - "//removes": 1, - "nulls": 1, - "//returns": 2, - "singleton": 2, - "//contains": 2, - "information": 3, - "about": 6, - "caninfo": 2, - "path": 8, - "//physical": 1, - "internalname": 1, - "//a": 1, - "numfiles": 1, - "files": 6, - "//necessary": 1, - "as": 28, - "canfile": 7, - "//this": 1, - "holds": 2, - "definition": 3, - "within": 4, - "//canister": 1, - "canister*": 1, - "parent": 1, - "//internal": 1, - "//use": 1, - "their": 6, - "own.": 1, - "newline": 2, - "delimited": 2, - "container.": 1, - "TOC": 1, - "info": 2, - "general": 1, - "canfiles": 1, - "recommended": 1, - "programs": 4, - "modify": 1, - "//these": 1, - "directly": 2, - "but": 5, - "enforced.": 1, - "canfile*": 1, - "//if": 1, - "write": 8, - "routines": 1, - "anything": 1, - "//maximum": 1, - "given": 16, - "//time": 1, - "whatever": 1, - "suits": 1, - "your": 12, - "application.": 1, - "cachemax": 2, - "cachecnt": 1, - "//number": 1, - "cache": 2, - "//both": 1, - "initialize": 1, - "physical": 4, - "fspath": 3, - "//destroys": 1, - "after": 18, - "flushing": 1, - "modded": 1, - "buffers": 3, - "course": 2, - "//open": 1, - "//does": 1, - "exist": 2, - "open": 6, - "//close": 1, - "flush": 1, - "all": 11, - "clean": 2, - "//deletes": 1, - "inside": 1, - "delFile": 1, - "//pulls": 1, - "contents": 3, - "disk": 2, - "returns": 4, - "getFile": 1, - "does": 4, - "otherwise": 1, - "overwrites": 1, - "whether": 4, - "succeeded": 2, - "writeFile": 2, - "//get": 1, - "containing": 2, - "//list": 1, - "paths": 1, - "getTOC": 1, - "//brings": 1, - "back": 1, - "limit": 1, - "//important": 1, - "sCFID": 2, - "safe": 4, - "CFID": 2, - "avoid": 1, - "uncaching": 1, - "//really": 1, - "internally": 1, - "harm.": 1, - "cacheclean": 1, - "dFlush": 1, - "Scanner": 16, - "UnicodeCache*": 4, - "unicode_cache": 3, - "unicode_cache_": 10, - "octal_pos_": 5, - "Location": 14, - "harmony_scoping_": 4, - "harmony_modules_": 4, - "Utf16CharacterStream*": 3, - "source_": 7, - "Init": 3, - "has_line_terminator_before_next_": 9, - "SkipWhiteSpace": 4, - "Scan": 5, - "uc32": 19, - "ScanHexNumber": 2, - "expected_length": 4, - "ASSERT": 17, - "prevent": 4, - "overflow": 1, - "c0_": 64, - "HexValue": 2, - "PushBack": 8, - "Advance": 44, - "STATIC_ASSERT": 5, - "Token": 212, - "NUM_TOKENS": 1, - "byte": 6, - "one_char_tokens": 2, - "ILLEGAL": 120, - "LPAREN": 2, - "RPAREN": 2, - "COMMA": 2, - "COLON": 2, - "SEMICOLON": 2, - "CONDITIONAL": 2, - "LBRACK": 2, - "RBRACK": 2, - "LBRACE": 2, - "RBRACE": 2, - "BIT_NOT": 2, - "e": 15, - "Value": 24, - "Next": 3, - "current_": 2, - "has_multiline_comment_before_next_": 5, - "": 19, - "token": 64, - "": 1, - "pos": 12, - "source_pos": 10, - "next_.token": 3, - "next_.location.beg_pos": 3, - "next_.location.end_pos": 4, - "current_.token": 4, - "IsByteOrderMark": 2, - "xFEFF": 1, - "xFFFE": 1, - "start_position": 2, - "IsWhiteSpace": 2, - "IsLineTerminator": 6, - "SkipSingleLineComment": 6, - "continue": 2, - "undo": 4, - "WHITESPACE": 6, - "SkipMultiLineComment": 3, - "ch": 5, - "ScanHtmlComment": 3, - "LT": 2, - "next_.literal_chars": 13, - "ScanString": 3, - "LTE": 1, - "ASSIGN_SHL": 1, - "SHL": 1, - "GTE": 1, - "ASSIGN_SAR": 1, - "ASSIGN_SHR": 1, - "SHR": 1, - "SAR": 1, - "GT": 1, - "EQ_STRICT": 1, - "EQ": 1, - "ASSIGN": 1, - "NE_STRICT": 1, - "NE": 1, - "NOT": 3, - "INC": 1, - "ASSIGN_ADD": 1, - "ADD": 1, - "DEC": 1, - "ASSIGN_SUB": 1, - "SUB": 1, - "ASSIGN_MUL": 1, - "MUL": 1, - "ASSIGN_MOD": 1, - "MOD": 1, - "ASSIGN_DIV": 1, - "DIV": 1, - "AND": 1, - "ASSIGN_BIT_AND": 1, - "BIT_AND": 1, - "OR": 1, - "ASSIGN_BIT_OR": 1, - "BIT_OR": 1, - "ASSIGN_BIT_XOR": 1, - "BIT_XOR": 1, - "IsDecimalDigit": 2, - "ScanNumber": 3, - "PERIOD": 1, - "IsIdentifierStart": 2, - "ScanIdentifierOrKeyword": 2, - "EOS": 1, - "SeekForward": 4, - "current_pos": 4, - "ASSERT_EQ": 1, - "ScanEscape": 2, - "IsCarriageReturn": 2, - "IsLineFeed": 2, - "fall": 2, - "through": 4, - "u": 9, - "xx": 2, - "xxx": 1, - "immediately": 1, - "octal": 1, - "escape": 1, - "quote": 3, - "consume": 2, - "LiteralScope": 4, - "literal": 2, - ".": 16, - "X": 2, - "E": 3, - "l": 1, - "w": 1, - "keyword": 1, - "Unescaped": 1, - "in_character_class": 2, - "AddLiteralCharAdvance": 3, - "literal.Complete": 2, - "ScanLiteralUnicodeEscape": 3, - "": 4, - "DEFAULT_DELIMITER": 1, - "CsvStreamer": 5, - "ofstream": 1, - "File": 1, - "vector": 16, - "row_buffer": 1, - "Buffer": 10, - "row": 12, - "flushed/written": 1, - "Number": 8, - "columns": 2, - "rows": 3, - "records": 2, - "including": 2, - "header": 7, - "delimiter": 2, - "Delimiter": 1, - "comma": 2, - "sanitize": 1, - "Returns": 2, - "ready": 1, - "into": 6, - "Empty": 1, - "CSV": 4, - "streamer...": 1, - "writing": 2, - "Same": 1, - "...": 1, - "Opens": 3, - "path/name": 3, - "Ensures": 1, - "closed": 1, - "saved": 1, - "delimiting": 1, - "add_field": 1, - "still": 3, - "adds": 1, - "field": 5, - "save_fields": 1, - "Call": 2, - "save": 1, - "writes": 2, - "append": 8, - "Appends": 5, - "quoted": 1, - "leading/trailing": 1, - "spaces": 3, - "trimmed": 1, - "Like": 1, - "specify": 1, - "either": 4, - "keep": 1, - "writeln": 1, - "Flushes": 1, - "what": 2, - "buffer": 9, - "Saves": 1, - "closes": 1, - "field_count": 1, - "Gets": 2, - "row_count": 1, - "PROTOBUF_protocol_2dbuffer_2eproto__INCLUDED": 3, - "GOOGLE_PROTOBUF_VERSION": 1, - "generated": 2, - "newer": 2, - "protoc": 2, - "incompatible": 2, - "Protocol": 2, - "headers.": 3, - "update": 1, - "GOOGLE_PROTOBUF_MIN_PROTOC_VERSION": 1, - "older": 1, - "regenerate": 1, - "protoc.": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "*this": 1, - "UnknownFieldSet": 2, - "UnknownFieldSet*": 1, - "GetCachedSize": 1, - "clear_name": 2, - "release_name": 2, - "set_allocated_name": 2, - "set_has_name": 7, - "clear_has_name": 5, - "mutable": 1, - "*name_": 1, - "assign": 3, - "temp": 2, - "SWIG": 2, - "V8_DECLARE_ONCE": 1, - "init_once": 2, - "LazyMutex": 1, - "entropy_mutex": 1, - "LAZY_MUTEX_INITIALIZER": 1, - "entropy_source": 4, - "FlagList": 1, - "EnforceFlagImplications": 1, - "Isolate": 9, - "CurrentPerIsolateThreadData": 4, - "EnterDefaultIsolate": 1, - "thread_id": 1, - ".Equals": 1, - "ThreadId": 1, - "Current": 5, - "IsDefaultIsolate": 1, - "ElementsAccessor": 2, - "LOperand": 2, - "TearDownCaches": 1, - "RegisteredExtension": 1, - "UnregisterAll": 1, - "OS": 3, - "seed_random": 2, - "uint32_t*": 7, - "FLAG_random_seed": 2, - "val": 3, - "ScopedLock": 1, - "entropy_mutex.Pointer": 1, - "random": 1, - "random_base": 3, - "xFFFF": 2, - "FFFF": 1, - "StackFrame": 1, - "IsGlobalContext": 1, - "ByteArray*": 1, - "seed": 2, - "random_seed": 1, - "": 1, - "GetDataStartAddress": 1, - "private_random_seed": 1, - "FLAG_use_idle_notification": 1, - "HEAP": 1, - "Lazy": 1, - "init.": 1, - "Add": 1, - "Remove": 1, - "HandleScopeImplementer*": 1, - "handle_scope_implementer": 5, - "CallDepthIsZero": 1, - "IncrementCallDepth": 1, - "DecrementCallDepth": 1, - "union": 1, - "double_value": 1, - "uint64_t": 8, - "uint64_t_value": 1, - "double_int_union": 2, - "random_bits": 2, - "binary_million": 3, - "r.double_value": 3, - "r.uint64_t_value": 1, - "HeapNumber": 1, - "set_value": 1, - "SetUp": 4, - "FLAG_crankshaft": 1, - "Serializer": 1, - "enabled": 4, - "CPU": 5, - "SupportsCrankshaft": 1, - "PostSetUp": 1, - "RuntimeProfiler": 1, - "GlobalSetUp": 1, - "FLAG_stress_compaction": 1, - "FLAG_force_marking_deque_overflows": 1, - "FLAG_gc_global": 1, - "FLAG_max_new_space_size": 1, - "kPageSizeBits": 1, - "SetUpCaches": 1, - "SetUpJSCallerSavedCodeData": 1, - "SamplerRegistry": 1, - "ExternalReference": 1, - "CallOnce": 1, - "endl": 1, - "///": 843, - "mainpage": 1, - "library": 14, - "Broadcom": 3, - "BCM": 14, - "Raspberry": 6, - "Pi": 5, - "RPi": 17, - "It": 7, - "provides": 3, - "access": 17, - "GPIO": 87, - "IO": 2, - "functions": 19, - "chip": 9, - "allowing": 3, - "pins": 40, - "pin": 90, - "IDE": 4, - "plug": 3, - "board": 2, - "so": 2, - "interface": 9, - "various": 4, - "external": 3, - "devices.": 1, - "reading": 3, - "digital": 2, - "inputs": 2, - "setting": 2, - "outputs": 1, - "SPI": 44, - "I2C": 29, - "accessing": 2, - "timers.": 1, - "Pin": 65, - "event": 3, - "detection": 2, - "supported": 3, - "polling": 1, - "interrupts": 1, - "compatible": 1, - "installs": 1, - "non": 2, - "shared": 2, - "Linux": 2, - "based": 4, - "distro": 1, - "clearly": 1, - "except": 2, - "another": 1, - "package": 1, - "documentation": 3, - "refers": 1, - "downloaded": 1, - "http": 11, - "//www.airspayce.com/mikem/bcm2835/bcm2835": 1, - "tar.gz": 1, - "You": 9, - "find": 2, - "latest": 2, - "//www.airspayce.com/mikem/bcm2835": 1, - "Several": 1, - "provided.": 1, - "Based": 1, - "//elinux.org/RPi_Low": 1, - "level_peripherals": 1, - "//www.raspberrypi.org/wp": 1, - "content/uploads/2012/02/BCM2835": 1, - "ARM": 5, - "Peripherals.pdf": 1, - "//www.scribd.com/doc/101830961/GPIO": 2, - "Pads": 3, - "Control2": 2, - "also": 3, - "online": 1, - "help": 1, - "discussion": 1, - "//groups.google.com/group/bcm2835": 1, - "group": 23, - "questions": 1, - "discussions": 1, - "topic.": 1, - "Do": 1, - "contact": 1, - "author": 3, - "unless": 1, - "discuss": 1, - "commercial": 1, - "licensing.": 1, - "Tested": 1, - "debian6": 1, - "wheezy": 3, - "raspbian": 3, - "Occidentalisv01": 2, - "CAUTION": 1, - "been": 14, - "observed": 1, - "detect": 3, - "enables": 3, - "such": 4, - "bcm2835_gpio_len": 5, - "pulled": 1, - "LOW": 8, - "cause": 1, - "temporary": 1, - "hangs": 1, - "Occidentalisv01.": 1, - "Reason": 1, - "yet": 1, - "determined": 1, - "suspect": 1, - "handler": 1, - "hitting": 1, - "hard": 1, - "loop": 2, - "those": 3, - "OSs.": 1, - "friends": 2, - "make": 6, - "disable": 2, - "bcm2835_gpio_cler_len": 1, - "use.": 1, - "par": 9, - "Installation": 1, - "consists": 1, - "single": 2, - "installed": 1, - "usual": 3, - "places": 1, - "code": 12, - "#": 1, - "download": 2, - "say": 1, - "bcm2835": 7, - "xx.tar.gz": 2, - "tar": 1, - "zxvf": 1, - "cd": 1, - "./configure": 1, - "sudo": 2, - "endcode": 2, - "Physical": 21, - "Addresses": 6, - "bcm2835_peri_read": 3, - "bcm2835_peri_write": 3, - "bcm2835_peri_set_bits": 2, - "level": 10, - "peripheral": 14, - "register": 17, - "functions.": 4, - "They": 1, - "designed": 3, - "addresses": 4, - "described": 1, - "section": 6, - "BCM2835": 2, - "Peripherals": 1, - "manual.": 1, - "FFFFFF": 1, - "peripherals.": 1, - "bus": 4, - "peripherals": 2, - "map": 3, - "onto": 1, - "address": 13, - "starting": 1, - "E000000.": 1, - "Thus": 1, - "advertised": 1, - "manual": 8, - "Ennnnnn": 1, - "available": 6, - "nnnnnn.": 1, - "registers": 12, - "following": 2, - "externals": 1, - "bcm2835_gpio": 2, - "bcm2835_pwm": 2, - "bcm2835_clk": 2, - "bcm2835_pads": 2, - "bcm2835_spio0": 1, - "bcm2835_st": 1, - "bcm2835_bsc0": 1, - "bcm2835_bsc1": 1, - "Numbering": 1, - "numbering": 1, - "inconsistent": 1, - "underlying": 4, - "numbering.": 1, - "//elinux.org/RPi_BCM2835_GPIOs": 1, - "some": 4, - "well": 1, - "power": 1, - "ground": 1, - "pins.": 1, - "Not": 4, - "header.": 1, - "Version": 40, - "P5": 6, - "connector": 1, - "V": 2, - "Gnd.": 1, - "passed": 4, - "_not_": 1, - "number.": 1, - "There": 1, - "symbolic": 1, - "definitions": 3, - "convenience.": 1, - "See": 7, - "ref": 32, - "RPiGPIOPin.": 22, - "Pins": 2, - "bcm2835_spi_*": 1, - "allow": 5, - "SPI0": 17, - "send": 3, - "received": 3, - "Serial": 3, - "Peripheral": 6, - "Interface": 2, - "For": 6, - "more": 4, - "see": 14, - "//en.wikipedia.org/wiki/Serial_Peripheral_Interface_Bus": 1, - "When": 12, - "bcm2835_spi_begin": 3, - "changes": 2, - "bahaviour": 1, - "behaviour": 1, - "order": 14, - "support": 4, - "SPI.": 1, - "While": 1, - "bcm2835_spi_gpio_write": 1, - "bcm2835_spi_end": 4, - "revert": 1, - "configured": 1, - "controled": 1, - "bcm2835_gpio_*": 1, - "calls.": 1, - "P1": 56, - "MOSI": 8, - "MISO": 6, - "CLK": 6, - "CE0": 5, - "CE1": 6, - "bcm2835_i2c_*": 2, - "BSC": 10, - "generically": 1, - "referred": 1, - "I": 4, - "//en.wikipedia.org/wiki/I": 1, - "C2": 1, - "B2C": 1, - "V2": 2, - "SDA": 3, - "SLC": 1, - "Real": 1, - "Time": 1, - "performance": 2, - "constraints": 2, - "i.e.": 1, - "they": 2, - "Such": 1, - "part": 1, - "kernel": 4, - "usually": 2, - "subject": 1, - "paging": 1, - "swapping": 2, - "things": 1, - "besides": 1, - "running": 1, - "program.": 1, - "means": 8, - "expect": 2, - "get": 5, - "time": 10, - "timing": 3, - "programs.": 1, - "In": 2, - "particular": 1, - "guarantee": 1, - "bcm2835_delay": 5, - "bcm2835_delayMicroseconds": 6, - "exactly": 2, - "requested.": 1, - "fact": 2, - "depending": 1, - "activity": 1, - "host": 1, - "etc": 1, - "might": 1, - "significantly": 1, - "longer": 1, - "delay": 9, - "times": 2, - "asked": 1, - "for.": 1, - "So": 1, - "dont": 1, - "request.": 1, - "Arjan": 2, - "reports": 1, - "sched_param": 1, - "sp": 4, - "sp.sched_priority": 1, - "sched_get_priority_max": 1, - "SCHED_FIFO": 2, - "sched_setscheduler": 1, - "mlockall": 1, - "MCL_CURRENT": 1, - "MCL_FUTURE": 1, - "Open": 2, - "Source": 2, - "Licensing": 2, - "GPL": 2, - "appropriate": 7, - "option": 1, - "share": 2, - "application": 2, - "everyone": 1, - "distribute": 1, - "give": 2, - "them": 1, - "who": 1, - "uses": 4, - "wish": 2, - "software": 1, - "under": 2, - "contribute": 1, - "community": 1, - "accordance": 1, - "distributed.": 1, - "//www.gnu.org/copyleft/gpl.html": 1, - "COPYING": 1, - "Acknowledgements": 1, - "Some": 1, - "inspired": 2, - "Dom": 1, - "Gert.": 1, - "Alan": 1, - "Barr.": 1, - "Revision": 1, - "History": 1, - "Initial": 1, - "release": 1, - "Minor": 1, - "bug": 1, - "fixes": 1, - "Added": 11, - "bcm2835_spi_transfern": 3, - "Fixed": 4, - "problem": 2, - "prevented": 1, - "used.": 2, - "Reported": 5, - "David": 1, - "Robinson.": 1, - "bcm2835_close": 4, - "deinit": 1, - "library.": 3, - "Suggested": 1, - "sar": 1, - "Ortiz": 1, - "Document": 1, - "Functions": 1, - "bcm2835_gpio_ren": 3, - "bcm2835_gpio_fen": 3, - "bcm2835_gpio_hen": 3, - "bcm2835_gpio_aren": 3, - "bcm2835_gpio_afen": 3, - "now": 4, - "specified.": 1, - "Other": 1, - "were": 1, - "already": 1, - "previously": 10, - "stay": 1, - "enabled.": 1, - "bcm2835_gpio_clr_ren": 2, - "bcm2835_gpio_clr_fen": 2, - "bcm2835_gpio_clr_hen": 2, - "bcm2835_gpio_clr_len": 2, - "bcm2835_gpio_clr_aren": 2, - "bcm2835_gpio_clr_afen": 2, - "enable": 3, - "individual": 1, - "suggested": 3, - "Andreas": 1, - "Sundstrom.": 1, - "bcm2835_spi_transfernb": 2, - "read": 21, - "write.": 1, - "Improvements": 3, - "barrier": 3, - "maddin.": 1, - "contributed": 1, - "mikew": 1, - "noticed": 1, - "mallocing": 1, - "mmaps": 1, - "/dev/mem.": 1, - "ve": 4, - "removed": 1, - "mallocs": 1, - "frees": 1, - "found": 1, - "nanosleep": 7, - "takes": 1, - "least": 2, - "us.": 1, - "link": 3, - "version.": 1, - "doc": 1, - "Also": 1, - "added": 2, - "define": 2, - "passwrd": 1, - "Gert": 1, - "says": 1, - "pad": 4, - "settings.": 1, - "Changed": 1, - "collisions": 1, - "wiringPi.": 1, - "Macros": 2, - "delayMicroseconds": 3, - "disabled": 2, - "defining": 1, - "BCM2835_NO_DELAY_COMPATIBILITY": 2, - "incorrect": 2, - "Hardware": 1, - "pointers": 2, - "initialisation": 2, - "externally": 1, - "bcm2835_spi0.": 1, - "Now": 4, - "compiles": 1, - "even": 2, - "CLOCK_MONOTONIC_RAW": 1, - "instead.": 1, - "errors": 1, - "divider": 15, - "frequencies": 2, - "MHz": 14, - "clock.": 6, - "Ben": 1, - "Simpson.": 1, - "examples": 1, - "Mark": 5, - "Wolfe.": 1, - "bcm2835_gpio_set_multi": 2, - "bcm2835_gpio_clr_multi": 2, - "bcm2835_gpio_write_multi": 4, - "mask": 20, - "once.": 1, - "Requested": 2, - "Sebastian": 2, - "Loncar.": 2, - "bcm2835_gpio_write_mask.": 1, - "Changes": 1, - "timer": 2, - "counter": 1, - "clock_gettime": 1, - "improved": 1, - "accuracy.": 1, - "No": 2, - "lrt": 1, - "now.": 1, - "Contributed": 1, - "van": 1, - "Vught.": 1, - "Removed": 1, - "inlines": 1, - "patch": 1, - "since": 3, - "don": 1, - "seem": 1, - "work": 1, - "everywhere.": 1, - "olly.": 1, - "Patch": 2, - "Dootson": 2, - "/dev/mem": 4, - "granted.": 1, - "susceptible": 1, - "bit": 19, - "overruns.": 1, - "courtesy": 1, - "Jeremy": 1, - "Mortis.": 1, - "BCM2835_GPFEN0": 2, - "broke": 1, - "ability": 1, - "falling": 4, - "edge": 8, - "events.": 1, - "Dootson.": 2, - "bcm2835_i2c_set_baudrate": 2, - "bcm2835_i2c_read_register_rs.": 1, - "bcm2835_i2c_read": 4, - "bcm2835_i2c_write": 4, - "fix": 1, - "ocasional": 1, - "reads": 2, - "completing.": 1, - "Patched": 1, - "atched": 1, - "his": 1, - "submitted": 1, - "load": 1, - "processes.": 1, - "Updated": 1, - "distribution": 1, - "details": 1, - "airspayce.com": 1, - "missing": 1, - "unmapmem": 1, - "pads": 7, - "leak.": 1, - "Hartmut": 1, - "Henkel.": 1, - "Mike": 1, - "McCauley": 1, - "mikem@airspayce.com": 1, - "DO": 1, - "CONTACT": 1, - "THE": 2, - "AUTHOR": 1, - "DIRECTLY": 1, - "USE": 1, - "LISTS": 1, - "BCM2835_H": 3, - "": 2, - "defgroup": 7, - "constants": 1, - "Constants": 1, - "passing": 1, - "values": 3, - "here": 1, - "@": 14, - "HIGH": 12, - "volts": 2, - "pin.": 21, - "Speed": 1, - "core": 1, - "clock": 21, - "core_clk": 1, - "BCM2835_CORE_CLK_HZ": 1, - "Base": 17, - "Address": 10, - "BCM2835_PERI_BASE": 9, - "System": 10, - "Timer": 9, - "BCM2835_ST_BASE": 1, - "BCM2835_GPIO_PADS": 2, - "Clock/timer": 1, - "BCM2835_CLOCK_BASE": 1, - "BCM2835_GPIO_BASE": 6, - "BCM2835_SPI0_BASE": 1, - "BSC0": 2, - "BCM2835_BSC0_BASE": 1, - "PWM": 2, - "BCM2835_GPIO_PWM": 1, - "C000": 1, - "BSC1": 2, - "BCM2835_BSC1_BASE": 1, - "ST": 1, - "registers.": 10, - "Available": 8, - "bcm2835_init": 11, - "volatile": 13, - "*bcm2835_st": 1, - "*bcm2835_gpio": 1, - "*bcm2835_pwm": 1, - "*bcm2835_clk": 1, - "PADS": 1, - "*bcm2835_pads": 1, - "*bcm2835_spi0": 1, - "*bcm2835_bsc0": 1, - "*bcm2835_bsc1": 1, - "Size": 2, - "BCM2835_PAGE_SIZE": 1, - "*1024": 2, - "BCM2835_BLOCK_SIZE": 1, - "offsets": 2, - "BCM2835_GPIO_BASE.": 1, - "Offsets": 1, - "bytes": 29, - "per": 3, - "Register": 1, - "View": 1, - "BCM2835_GPFSEL0": 1, - "Function": 8, - "BCM2835_GPFSEL1": 1, - "BCM2835_GPFSEL2": 1, - "BCM2835_GPFSEL3": 1, - "BCM2835_GPFSEL4": 1, - "BCM2835_GPFSEL5": 1, - "BCM2835_GPSET0": 1, - "Output": 6, - "Set": 2, - "BCM2835_GPSET1": 1, - "BCM2835_GPCLR0": 1, - "BCM2835_GPCLR1": 1, - "BCM2835_GPLEV0": 1, - "Level": 2, - "BCM2835_GPLEV1": 1, - "BCM2835_GPEDS0": 1, - "Event": 11, - "Detect": 35, - "Status": 6, - "BCM2835_GPEDS1": 1, - "BCM2835_GPREN0": 1, - "Rising": 8, - "Edge": 16, - "Enable": 38, - "BCM2835_GPREN1": 1, - "Falling": 8, - "BCM2835_GPFEN1": 1, - "BCM2835_GPHEN0": 1, - "High": 4, - "BCM2835_GPHEN1": 1, - "BCM2835_GPLEN0": 1, - "Low": 5, - "BCM2835_GPLEN1": 1, - "BCM2835_GPAREN0": 1, - "Async.": 4, - "BCM2835_GPAREN1": 1, - "BCM2835_GPAFEN0": 1, - "BCM2835_GPAFEN1": 1, - "BCM2835_GPPUD": 1, - "Pull": 11, - "up/down": 10, - "BCM2835_GPPUDCLK0": 1, - "Clock": 11, - "BCM2835_GPPUDCLK1": 1, - "bcm2835PortFunction": 1, - "Port": 1, - "select": 9, - "modes": 1, - "bcm2835_gpio_fsel": 2, - "BCM2835_GPIO_FSEL_INPT": 1, - "b000": 1, - "Input": 2, - "BCM2835_GPIO_FSEL_OUTP": 1, - "b001": 1, - "BCM2835_GPIO_FSEL_ALT0": 1, - "b100": 1, - "Alternate": 6, - "BCM2835_GPIO_FSEL_ALT1": 1, - "b101": 1, - "BCM2835_GPIO_FSEL_ALT2": 1, - "b110": 1, - "BCM2835_GPIO_FSEL_ALT3": 1, - "b111": 2, - "BCM2835_GPIO_FSEL_ALT4": 1, - "b011": 1, - "BCM2835_GPIO_FSEL_ALT5": 1, - "b010": 1, - "BCM2835_GPIO_FSEL_MASK": 1, - "bits": 11, - "bcm2835FunctionSelect": 2, - "bcm2835PUDControl": 4, - "Pullup/Pulldown": 1, - "bcm2835_gpio_pud": 5, - "BCM2835_GPIO_PUD_OFF": 1, - "b00": 1, - "Off": 3, - "pull": 1, - "BCM2835_GPIO_PUD_DOWN": 1, - "b01": 1, - "Down": 1, - "BCM2835_GPIO_PUD_UP": 1, - "b10": 1, - "Up": 1, - "Pad": 11, - "BCM2835_PADS_GPIO_0_27": 1, - "BCM2835_PADS_GPIO_28_45": 1, - "BCM2835_PADS_GPIO_46_53": 1, - "Control": 6, - "masks": 1, - "BCM2835_PAD_PASSWRD": 1, - "A": 7, - "Password": 1, - "BCM2835_PAD_SLEW_RATE_UNLIMITED": 1, - "Slew": 1, - "rate": 3, - "unlimited": 1, - "BCM2835_PAD_HYSTERESIS_ENABLED": 1, - "Hysteresis": 1, - "BCM2835_PAD_DRIVE_2mA": 1, - "mA": 8, - "drive": 8, - "BCM2835_PAD_DRIVE_4mA": 1, - "BCM2835_PAD_DRIVE_6mA": 1, - "BCM2835_PAD_DRIVE_8mA": 1, - "BCM2835_PAD_DRIVE_10mA": 1, - "BCM2835_PAD_DRIVE_12mA": 1, - "BCM2835_PAD_DRIVE_14mA": 1, - "BCM2835_PAD_DRIVE_16mA": 1, - "bcm2835PadGroup": 4, - "specification": 1, - "bcm2835_gpio_pad": 2, - "BCM2835_PAD_GROUP_GPIO_0_27": 1, - "BCM2835_PAD_GROUP_GPIO_28_45": 1, - "BCM2835_PAD_GROUP_GPIO_46_53": 1, - "Numbers": 1, - "Here": 1, - "terms": 4, - "numbers.": 1, - "These": 6, - "requiring": 1, - "bin": 1, - "connected": 1, - "adopt": 1, - "function.": 3, - "slightly": 1, - "pinouts": 1, - "these": 1, - "RPI_V2_*.": 1, - "At": 1, - "bootup": 1, - "UART0_TXD": 3, - "UART0_RXD": 3, - "ie": 3, - "alt0": 1, - "respectively": 1, - "dedicated": 1, - "cant": 1, - "controlled": 1, - "independently": 1, - "RPI_GPIO_P1_03": 6, - "RPI_GPIO_P1_05": 6, - "RPI_GPIO_P1_07": 1, - "RPI_GPIO_P1_08": 1, - "defaults": 4, - "alt": 4, - "RPI_GPIO_P1_10": 1, - "RPI_GPIO_P1_11": 1, - "RPI_GPIO_P1_12": 1, - "RPI_GPIO_P1_13": 1, - "RPI_GPIO_P1_15": 1, - "RPI_GPIO_P1_16": 1, - "RPI_GPIO_P1_18": 1, - "RPI_GPIO_P1_19": 1, - "RPI_GPIO_P1_21": 1, - "RPI_GPIO_P1_22": 1, - "RPI_GPIO_P1_23": 1, - "RPI_GPIO_P1_24": 1, - "RPI_GPIO_P1_26": 1, - "RPI_V2_GPIO_P1_03": 1, - "RPI_V2_GPIO_P1_05": 1, - "RPI_V2_GPIO_P1_07": 1, - "RPI_V2_GPIO_P1_08": 1, - "RPI_V2_GPIO_P1_10": 1, - "RPI_V2_GPIO_P1_11": 1, - "RPI_V2_GPIO_P1_12": 1, - "RPI_V2_GPIO_P1_13": 1, - "RPI_V2_GPIO_P1_15": 1, - "RPI_V2_GPIO_P1_16": 1, - "RPI_V2_GPIO_P1_18": 1, - "RPI_V2_GPIO_P1_19": 1, - "RPI_V2_GPIO_P1_21": 1, - "RPI_V2_GPIO_P1_22": 1, - "RPI_V2_GPIO_P1_23": 1, - "RPI_V2_GPIO_P1_24": 1, - "RPI_V2_GPIO_P1_26": 1, - "RPI_V2_GPIO_P5_03": 1, - "RPI_V2_GPIO_P5_04": 1, - "RPI_V2_GPIO_P5_05": 1, - "RPI_V2_GPIO_P5_06": 1, - "RPiGPIOPin": 1, - "BCM2835_SPI0_CS": 1, - "Master": 12, - "BCM2835_SPI0_FIFO": 1, - "TX": 5, - "RX": 7, - "FIFOs": 1, - "BCM2835_SPI0_CLK": 1, - "Divider": 2, - "BCM2835_SPI0_DLEN": 1, - "Data": 9, - "Length": 2, - "BCM2835_SPI0_LTOH": 1, - "LOSSI": 1, - "TOH": 1, - "BCM2835_SPI0_DC": 1, - "DMA": 3, - "DREQ": 1, - "Controls": 1, - "BCM2835_SPI0_CS_LEN_LONG": 1, - "Long": 1, - "Lossi": 2, - "DMA_LEN": 1, - "BCM2835_SPI0_CS_DMA_LEN": 1, - "BCM2835_SPI0_CS_CSPOL2": 1, - "Chip": 9, - "Polarity": 5, - "BCM2835_SPI0_CS_CSPOL1": 1, - "BCM2835_SPI0_CS_CSPOL0": 1, - "BCM2835_SPI0_CS_RXF": 1, - "RXF": 2, - "FIFO": 25, - "Full": 1, - "BCM2835_SPI0_CS_RXR": 1, - "RXR": 3, - "Reading": 1, - "full": 9, - "BCM2835_SPI0_CS_TXD": 1, - "TXD": 2, - "accept": 2, - "BCM2835_SPI0_CS_RXD": 1, - "RXD": 2, - "contains": 2, - "BCM2835_SPI0_CS_DONE": 1, - "Done": 3, - "transfer": 8, - "BCM2835_SPI0_CS_TE_EN": 1, - "Unused": 2, - "BCM2835_SPI0_CS_LMONO": 1, - "BCM2835_SPI0_CS_LEN": 1, - "LEN": 1, - "LoSSI": 1, - "BCM2835_SPI0_CS_REN": 1, - "REN": 1, - "Read": 3, - "BCM2835_SPI0_CS_ADCS": 1, - "ADCS": 1, - "Automatically": 1, - "Deassert": 1, - "BCM2835_SPI0_CS_INTR": 1, - "INTR": 1, - "Interrupt": 5, - "BCM2835_SPI0_CS_INTD": 1, - "INTD": 1, - "BCM2835_SPI0_CS_DMAEN": 1, - "DMAEN": 1, - "BCM2835_SPI0_CS_TA": 1, - "Transfer": 3, - "Active": 2, - "BCM2835_SPI0_CS_CSPOL": 1, - "BCM2835_SPI0_CS_CLEAR": 1, - "BCM2835_SPI0_CS_CLEAR_RX": 1, - "BCM2835_SPI0_CS_CLEAR_TX": 1, - "BCM2835_SPI0_CS_CPOL": 1, - "BCM2835_SPI0_CS_CPHA": 1, - "Phase": 1, - "BCM2835_SPI0_CS_CS": 1, - "bcm2835SPIBitOrder": 3, - "Bit": 1, - "Specifies": 5, - "ordering": 4, - "bcm2835_spi_setBitOrder": 2, - "BCM2835_SPI_BIT_ORDER_LSBFIRST": 1, - "LSB": 1, - "First": 2, - "BCM2835_SPI_BIT_ORDER_MSBFIRST": 1, - "MSB": 1, - "Specify": 2, - "bcm2835_spi_setDataMode": 2, - "BCM2835_SPI_MODE0": 1, - "CPOL": 4, - "CPHA": 4, - "BCM2835_SPI_MODE1": 1, - "BCM2835_SPI_MODE2": 1, - "BCM2835_SPI_MODE3": 1, - "bcm2835SPIMode": 2, - "bcm2835SPIChipSelect": 3, - "BCM2835_SPI_CS0": 1, - "BCM2835_SPI_CS1": 1, - "BCM2835_SPI_CS2": 1, - "CS1": 1, - "CS2": 1, - "asserted": 3, - "BCM2835_SPI_CS_NONE": 1, - "CS": 5, - "yourself": 1, - "bcm2835SPIClockDivider": 3, - "generate": 2, - "Figures": 1, - "below": 1, - "period": 1, - "frequency.": 1, - "divided": 2, - "nominal": 2, - "reported": 2, - "contrary": 1, - "shown": 1, - "confirmed": 1, - "measurement": 2, - "BCM2835_SPI_CLOCK_DIVIDER_65536": 1, - "us": 12, - "kHz": 10, - "BCM2835_SPI_CLOCK_DIVIDER_32768": 1, - "BCM2835_SPI_CLOCK_DIVIDER_16384": 1, - "BCM2835_SPI_CLOCK_DIVIDER_8192": 1, - "/51757813kHz": 1, - "BCM2835_SPI_CLOCK_DIVIDER_4096": 1, - "BCM2835_SPI_CLOCK_DIVIDER_2048": 1, - "BCM2835_SPI_CLOCK_DIVIDER_1024": 1, - "BCM2835_SPI_CLOCK_DIVIDER_512": 1, - "BCM2835_SPI_CLOCK_DIVIDER_256": 1, - "BCM2835_SPI_CLOCK_DIVIDER_128": 1, - "ns": 9, - "BCM2835_SPI_CLOCK_DIVIDER_64": 1, - "BCM2835_SPI_CLOCK_DIVIDER_32": 1, - "BCM2835_SPI_CLOCK_DIVIDER_16": 1, - "BCM2835_SPI_CLOCK_DIVIDER_8": 1, - "BCM2835_SPI_CLOCK_DIVIDER_4": 1, - "BCM2835_SPI_CLOCK_DIVIDER_2": 1, - "fastest": 1, - "BCM2835_SPI_CLOCK_DIVIDER_1": 1, - "same": 3, - "/65536": 1, - "BCM2835_BSC_C": 1, - "BCM2835_BSC_S": 1, - "BCM2835_BSC_DLEN": 1, - "BCM2835_BSC_A": 1, - "Slave": 1, - "BCM2835_BSC_FIFO": 1, - "BCM2835_BSC_DIV": 1, - "BCM2835_BSC_DEL": 1, - "Delay": 4, - "BCM2835_BSC_CLKT": 1, - "Stretch": 2, - "Timeout": 2, - "BCM2835_BSC_C_I2CEN": 1, - "BCM2835_BSC_C_INTR": 1, - "BCM2835_BSC_C_INTT": 1, - "BCM2835_BSC_C_INTD": 1, - "DONE": 2, - "BCM2835_BSC_C_ST": 1, - "Start": 4, - "BCM2835_BSC_C_CLEAR_1": 1, - "BCM2835_BSC_C_CLEAR_2": 1, - "BCM2835_BSC_C_READ": 1, - "BCM2835_BSC_S_CLKT": 1, - "stretch": 1, - "BCM2835_BSC_S_ERR": 1, - "ACK": 1, - "BCM2835_BSC_S_RXF": 1, - "BCM2835_BSC_S_TXE": 1, - "TXE": 1, - "BCM2835_BSC_S_RXD": 1, - "BCM2835_BSC_S_TXD": 1, - "BCM2835_BSC_S_RXR": 1, - "BCM2835_BSC_S_TXW": 1, - "TXW": 1, - "BCM2835_BSC_S_DONE": 1, - "BCM2835_BSC_S_TA": 1, - "BCM2835_BSC_FIFO_SIZE": 1, - "bcm2835I2CClockDivider": 3, - "BCM2835_I2C_CLOCK_DIVIDER_2500": 1, - "BCM2835_I2C_CLOCK_DIVIDER_626": 1, - "BCM2835_I2C_CLOCK_DIVIDER_150": 1, - "reset": 1, - "BCM2835_I2C_CLOCK_DIVIDER_148": 1, - "bcm2835I2CReasonCodes": 5, - "reason": 4, - "codes": 1, - "BCM2835_I2C_REASON_OK": 1, - "Success": 1, - "BCM2835_I2C_REASON_ERROR_NACK": 1, - "Received": 4, - "NACK": 1, - "BCM2835_I2C_REASON_ERROR_CLKT": 1, - "BCM2835_I2C_REASON_ERROR_DATA": 1, - "sent": 1, - "BCM2835_ST_CS": 1, - "Control/Status": 1, - "BCM2835_ST_CLO": 1, - "Counter": 4, - "Lower": 2, - "BCM2835_ST_CHI": 1, - "Upper": 1, - "BCM2835_PWM_CONTROL": 1, - "BCM2835_PWM_STATUS": 1, - "BCM2835_PWM0_RANGE": 1, - "BCM2835_PWM0_DATA": 1, - "BCM2835_PWM1_RANGE": 1, - "BCM2835_PWM1_DATA": 1, - "BCM2835_PWMCLK_CNTL": 1, - "BCM2835_PWMCLK_DIV": 1, - "BCM2835_PWM1_MS_MODE": 1, - "Run": 4, - "MS": 2, - "BCM2835_PWM1_USEFIFO": 1, - "BCM2835_PWM1_REVPOLAR": 1, - "Reverse": 2, - "polarity": 3, - "BCM2835_PWM1_OFFSTATE": 1, - "Ouput": 2, - "BCM2835_PWM1_REPEATFF": 1, - "Repeat": 2, - "empty": 2, - "BCM2835_PWM1_SERIAL": 1, - "serial": 2, - "BCM2835_PWM1_ENABLE": 1, - "Channel": 2, - "BCM2835_PWM0_MS_MODE": 1, - "BCM2835_PWM0_USEFIFO": 1, - "BCM2835_PWM0_REVPOLAR": 1, - "BCM2835_PWM0_OFFSTATE": 1, - "BCM2835_PWM0_REPEATFF": 1, - "BCM2835_PWM0_SERIAL": 1, - "BCM2835_PWM0_ENABLE": 1, - "init": 2, - "Library": 1, - "management": 1, - "intialise": 1, - "Initialise": 1, - "opening": 1, - "getting": 1, - "call": 4, - "successfully": 1, - "bcm2835_set_debug": 2, - "fails": 1, - "returning": 1, - "crashes": 1, - "failures.": 1, - "Prints": 1, - "messages": 1, - "stderr": 1, - "errors.": 1, - "successful": 2, - "Close": 1, - "deallocating": 1, - "debug": 6, - "prevents": 1, - "makes": 1, - "out": 5, - "would": 2, - "causes": 1, - "normal": 1, - "param": 72, - "uint8_t": 43, - "lowlevel": 2, - "provide": 1, - "generally": 1, - "Reads": 5, - "done": 3, - "twice": 3, - "therefore": 6, - "always": 3, - "precautions": 3, - "correct": 3, - "paddr": 10, - "from.": 6, - "etc.": 5, - "without": 3, - "occurred": 2, - "since.": 2, - "bcm2835_peri_read_nb": 1, - "Writes": 2, - "bcm2835_peri_write_nb": 1, - "Alters": 1, - "regsiter.": 1, - "valu": 1, - "alters": 1, - "deines": 1, - "according": 1, - "value.": 2, - "All": 1, - "unaffected.": 1, - "subset": 1, - "register.": 3, - "masked": 2, - "mask.": 1, - "Bitmask": 1, - "altered": 1, - "gpio": 1, - "interface.": 3, - "state.": 1, - "configures": 1, - "RPI_GPIO_P1_*": 21, - "Mode": 1, - "BCM2835_GPIO_FSEL_*": 1, - "specified": 27, - "HIGH.": 2, - "bcm2835_gpio_write": 3, - "bcm2835_gpio_set": 1, - "LOW.": 5, - "bcm2835_gpio_clr": 1, - "Mask": 6, - "affect.": 4, - "eg": 5, - "Works": 1, - "output.": 1, - "bcm2835_gpio_lev": 1, - "Status.": 7, - "Tests": 1, - "detected": 7, - "requested": 1, - "bcm2835_gpio_set_eds": 2, - "status": 1, - "th": 1, - "bcm2835_gpio_eds": 1, - "effect": 3, - "clearing": 1, - "flag.": 1, - "afer": 1, - "seeing": 1, - "rising": 3, - "sets": 8, - "GPRENn": 2, - "synchronous": 2, - "detection.": 2, - "signal": 4, - "sampled": 6, - "looking": 2, - "pattern": 2, - "signal.": 2, - "suppressing": 2, - "glitches.": 2, - "Disable": 6, - "Asynchronous": 6, - "incoming": 2, - "As": 2, - "edges": 2, - "very": 2, - "duration": 2, - "detected.": 2, - "bcm2835_gpio_pudclk": 3, - "resistor": 1, - "However": 3, - "convenient": 2, - "bcm2835_gpio_set_pud": 4, - "pud": 4, - "desired": 7, - "One": 3, - "BCM2835_GPIO_PUD_*": 2, - "Clocks": 3, - "earlier": 1, - "group.": 2, - "BCM2835_PAD_GROUP_GPIO_*": 2, - "BCM2835_PAD_*": 2, - "bcm2835_gpio_set_pad": 1, - "Delays": 3, - "milliseconds.": 1, - "Uses": 4, - "until": 1, - "up.": 1, - "mercy": 2, - "From": 2, - "interval": 4, - "req": 2, - "exact": 2, - "multiple": 2, - "granularity": 2, - "rounded": 2, - "multiple.": 2, - "Furthermore": 2, - "sleep": 2, - "completes": 2, - "becomes": 2, - "again": 2, - "thread.": 2, - "millis": 2, - "milliseconds": 1, - "microseconds.": 2, - "busy": 2, - "wait": 2, - "timers": 1, - "less": 1, - "microseconds": 6, - "Timer.": 1, - "RaspberryPi": 1, - "Your": 1, - "mileage": 1, - "vary.": 1, - "micros": 5, - "required": 2, - "bcm2835_gpio_write_mask": 1, - "clocking": 1, - "spi": 1, - "let": 2, - "device.": 2, - "operations.": 4, - "Forces": 2, - "ALT0": 2, - "funcitons": 1, - "End": 2, - "INPUT": 2, - "behaviour.": 2, - "NOTE": 1, - "effect.": 1, - "SPI0.": 1, - "Defaults": 1, - "BCM2835_SPI_BIT_ORDER_*": 1, - "speed.": 2, - "BCM2835_SPI_CLOCK_DIVIDER_*": 1, - "bcm2835_spi_setClockDivider": 1, - "uint16_t": 2, - "polariy": 1, - "phase": 1, - "BCM2835_SPI_MODE*": 1, - "bcm2835_spi_transfer": 5, - "made": 1, - "during": 4, - "transfer.": 4, - "cs": 4, - "activate": 1, - "slave.": 7, - "BCM2835_SPI_CS*": 1, - "bcm2835_spi_chipSelect": 4, - "occurs": 1, - "active.": 1, - "transfers": 1, - "happening": 1, - "complement": 1, - "inactive": 1, - "affect": 1, - "active": 3, - "Whether": 1, - "bcm2835_spi_setChipSelectPolarity": 1, - "Transfers": 6, - "Asserts": 3, - "simultaneously": 3, - "clocks": 2, - "MISO.": 2, - "polled": 2, - "Peripherls": 2, - "slave": 8, - "placed": 1, - "rbuf.": 1, - "rbuf": 3, - "tbuf": 4, - "send.": 5, - "put": 1, - "send/received": 2, - "bcm2835_spi_transfernb.": 1, - "replaces": 1, - "transmitted": 1, - "buffer.": 1, - "replace": 1, - "bcm2835_spi_writenb": 1, - "i2c": 1, - "Philips": 1, - "bus/interface": 1, - "January": 1, - "SCL": 2, - "bcm2835_i2c_end": 3, - "bcm2835_i2c_begin": 1, - "address.": 2, - "addr": 2, - "bcm2835_i2c_setSlaveAddress": 4, - "BCM2835_I2C_CLOCK_DIVIDER_*": 1, - "bcm2835_i2c_setClockDivider": 2, - "converting": 1, - "baudrate": 4, - "parameter": 1, - "equivalent": 1, - "divider.": 1, - "standard": 2, - "khz": 1, - "corresponds": 1, - "its": 1, - "driver.": 1, - "Of": 1, - "nothing": 1, - "driver": 1, - "receive.": 2, - "received.": 2, - "Allows": 2, - "slaves": 1, - "require": 3, - "repeated": 1, - "prior": 1, - "stop": 1, - "set.": 1, - "popular": 1, - "MPL3115A2": 1, - "pressure": 1, - "temperature": 1, - "sensor.": 1, - "Note": 1, - "combined": 1, - "better": 1, - "choice.": 1, - "Will": 1, - "regaddr": 2, - "bcm2835_i2c_read_register_rs": 1, - "st": 1, - "delays": 1, - "Counter.": 1, - "bcm2835_st_read": 1, - "offset.": 1, - "offset_micros": 2, - "Offset": 1, - "bcm2835_st_delay": 1, - "@example": 5, - "blink.c": 1, - "Blinks": 1, - "off": 1, - "input.c": 1, - "event.c": 1, - "Shows": 3, - "how": 3, - "spi.c": 1, - "spin.c": 1, - "": 1, - "": 1, - "": 2, - "*env_instance": 1, - "*Env": 1, - "env_instance": 3, - "QObject": 2, - "QCoreApplication": 1, - "**envp": 1, - "**env": 1, - "**": 2, - "envvar": 2, - "indexOfEquals": 5, - "env": 3, - "*env": 1, - "envvar.indexOf": 1, - "envvar.left": 1, - "envvar.mid": 1, - "m_map.insert": 1, - "QVariantMap": 3, - "asVariantMap": 2, - "m_map": 2, - "ENV_H": 3, - "": 1, - "Q_OBJECT": 1, - "*instance": 1, - "rpc_init": 1, - "rpc_server_loop": 1, - "BITCOIN_KEY_H": 2, - "": 1, - "": 1, - "EC_KEY": 3, - "key_error": 6, - "runtime_error": 2, - "str": 2, - "CKeyID": 5, - "uint160": 8, - "CScriptID": 3, - "CPubKey": 11, - "vchPubKey": 6, - "CKey": 26, - "vchPubKeyIn": 2, - "a.vchPubKey": 3, - "b.vchPubKey": 3, - "IMPLEMENT_SERIALIZE": 1, - "READWRITE": 1, - "GetID": 1, - "Hash160": 1, - "uint256": 10, - "GetHash": 1, - "Hash": 1, - "vchPubKey.begin": 1, - "vchPubKey.end": 1, - "IsValid": 4, - "vchPubKey.size": 3, - "IsCompressed": 2, - "Raw": 1, - "secure_allocator": 2, - "CPrivKey": 3, - "CSecret": 4, - "EC_KEY*": 1, - "pkey": 14, - "fSet": 7, - "fCompressedPubKey": 5, - "SetCompressedPubKey": 4, - "Reset": 5, - "IsNull": 1, - "MakeNewKey": 1, - "fCompressed": 3, - "SetPrivKey": 1, - "vchPrivKey": 1, - "SetSecret": 1, - "vchSecret": 1, - "GetSecret": 2, - "GetPrivKey": 1, - "SetPubKey": 1, - "GetPubKey": 5, - "hash": 20, - "vchSig": 18, - "SignCompact": 2, - "SetCompactSignature": 2, - "Verify": 2, - "VerifyCompact": 2, - "": 1, - "": 1, - "": 1, - "EC_KEY_regenerate_key": 1, - "*eckey": 2, - "BIGNUM": 9, - "*priv_key": 1, - "ok": 3, - "BN_CTX": 2, - "*ctx": 2, - "EC_POINT": 4, - "*pub_key": 1, - "eckey": 7, - "EC_GROUP": 2, - "*group": 2, - "EC_KEY_get0_group": 2, - "ctx": 26, - "BN_CTX_new": 2, - "err": 26, - "pub_key": 6, - "EC_POINT_new": 4, - "EC_POINT_mul": 3, - "priv_key": 2, - "EC_KEY_set_private_key": 1, - "EC_KEY_set_public_key": 2, - "EC_POINT_free": 4, - "BN_CTX_free": 2, - "ECDSA_SIG_recover_key_GFp": 3, - "ECDSA_SIG": 3, - "*ecsig": 1, - "*msg": 2, - "msglen": 2, - "recid": 3, - "ret": 24, - "*x": 1, - "*e": 1, - "*order": 1, - "*sor": 1, - "*eor": 1, - "*field": 1, - "*R": 1, - "*O": 1, - "*Q": 1, - "*rr": 1, - "*zero": 1, - "BN_CTX_start": 1, - "BN_CTX_get": 8, - "EC_GROUP_get_order": 1, - "BN_copy": 1, - "BN_mul_word": 1, - "BN_add": 1, - "ecsig": 3, - "EC_GROUP_get_curve_GFp": 1, - "BN_cmp": 1, - "R": 6, - "EC_POINT_set_compressed_coordinates_GFp": 1, - "O": 5, - "EC_POINT_is_at_infinity": 1, - "Q": 5, - "EC_GROUP_get_degree": 1, - "BN_bin2bn": 3, - "msg": 1, - "*msglen": 1, - "BN_rshift": 1, - "BN_zero": 1, - "BN_mod_sub": 1, - "rr": 4, - "BN_mod_inverse": 1, - "sor": 3, - "BN_mod_mul": 2, - "eor": 3, - "BN_CTX_end": 1, - "EC_KEY_set_conv_form": 1, - "POINT_CONVERSION_COMPRESSED": 1, - "EC_KEY_new_by_curve_name": 2, - "NID_secp256k1": 2, - "throw": 4, - "EC_KEY_dup": 1, - "b.pkey": 2, - "b.fSet": 2, - "EC_KEY_copy": 1, - "nSize": 2, - "vchSig.clear": 2, - "vchSig.resize": 2, - "Shrink": 1, - "fit": 1, - "actual": 1, - "fOk": 3, - "*sig": 2, - "ECDSA_do_sign": 1, - "sig": 11, - "nBitsR": 3, - "BN_num_bits": 2, - "nBitsS": 3, - "nRecId": 4, - "<4;>": 1, - "keyRec": 5, - "BN_bn2bin": 2, - "/8": 2, - "ECDSA_SIG_free": 2, - "vchSig.size": 2, - "nV": 6, - "<27>": 1, - "ECDSA_SIG_new": 1, - "EC_KEY_free": 1, - "ECDSA_verify": 1, - "key.SetCompactSignature": 1, - "key.GetPubKey": 1, - "fCompr": 3, - "secret": 2, - "key2": 1, - "key2.SetSecret": 1, - "key2.GetPubKey": 1, - "V8_SCANNER_H_": 3, - "ParsingFlags": 1, - "kNoParsingFlags": 1, - "kLanguageModeMask": 4, - "kAllowLazy": 1, - "kAllowNativesSyntax": 1, - "kAllowModules": 1, - "CLASSIC_MODE": 2, - "STRICT_MODE": 2, - "EXTENDED_MODE": 2, - "x16": 1, - "x36.": 1, - "Utf16CharacterStream": 3, - "pos_": 6, - "buffer_cursor_": 5, - "buffer_end_": 3, - "ReadBlock": 2, - "": 1, - "kEndOfInput": 2, - "code_unit_count": 7, - "buffered_chars": 2, - "SlowSeekForward": 2, - "int32_t": 1, - "code_unit": 6, - "uc16*": 3, - "UnicodeCache": 3, - "unibrow": 11, - "Utf8InputBuffer": 2, - "<1024>": 2, - "Utf8Decoder": 2, - "StaticResource": 2, - "": 2, - "utf8_decoder": 1, - "utf8_decoder_": 2, - "uchar": 4, - "kIsIdentifierStart.get": 1, - "IsIdentifierPart": 1, - "kIsIdentifierPart.get": 1, - "kIsLineTerminator.get": 1, - "kIsWhiteSpace.get": 1, - "Predicate": 4, - "": 1, - "128": 4, - "kIsIdentifierStart": 1, - "": 1, - "kIsIdentifierPart": 1, - "": 1, - "kIsLineTerminator": 1, - "": 1, - "kIsWhiteSpace": 1, - "DISALLOW_COPY_AND_ASSIGN": 2, - "LiteralBuffer": 6, - "is_ascii_": 10, - "position_": 17, - "backing_store_": 7, - "backing_store_.length": 4, - "backing_store_.Dispose": 3, - "INLINE": 2, - "AddChar": 2, - "ExpandBuffer": 2, - "kMaxAsciiCharCodeU": 1, - "": 6, - "kASCIISize": 1, - "ConvertToUtf16": 2, - "": 2, - "kUC16Size": 2, - "is_ascii": 3, - "Vector": 13, - "uc16": 5, - "utf16_literal": 3, - "backing_store_.start": 5, - "ascii_literal": 3, - "kInitialCapacity": 2, - "kGrowthFactory": 2, - "kMinConversionSlack": 1, - "kMaxGrowth": 2, - "MB": 1, - "NewCapacity": 3, - "min_capacity": 2, - "capacity": 3, - "Max": 1, - "new_capacity": 2, - "Min": 1, - "new_store": 6, - "memcpy": 1, - "new_store.start": 3, - "new_content_size": 4, - "src": 2, - "": 1, - "dst": 2, - "Scanner*": 2, - "scanner_": 5, - "complete_": 4, - "StartLiteral": 2, - "DropLiteral": 2, - "Complete": 1, - "TerminateLiteral": 2, - "beg_pos": 5, - "end_pos": 4, - "kNoOctalLocation": 1, - "scanner_contants": 1, - "current_token": 1, - "current_.location": 2, - "literal_ascii_string": 1, - "ASSERT_NOT_NULL": 9, - "current_.literal_chars": 11, - "literal_utf16_string": 1, - "is_literal_ascii": 1, - "literal_length": 1, - "literal_contains_escapes": 1, - "source_length": 3, - "location.end_pos": 1, - "location.beg_pos": 1, - "STRING": 1, - "peek": 1, - "peek_location": 1, - "next_.location": 1, - "next_literal_ascii_string": 1, - "next_literal_utf16_string": 1, - "is_next_literal_ascii": 1, - "next_literal_length": 1, - "kCharacterLookaheadBufferSize": 3, - "ScanOctalEscape": 1, - "octal_position": 1, - "clear_octal_position": 1, - "HarmonyScoping": 1, - "SetHarmonyScoping": 1, - "scoping": 2, - "HarmonyModules": 1, - "SetHarmonyModules": 1, - "modules": 2, - "HasAnyLineTerminatorBeforeNext": 1, - "ScanRegExpPattern": 1, - "seen_equal": 1, - "ScanRegExpFlags": 1, - "IsIdentifier": 1, - "CharacterStream*": 1, - "TokenDesc": 3, - "LiteralBuffer*": 2, - "literal_chars": 1, - "free_buffer": 3, - "literal_buffer1_": 3, - "literal_buffer2_": 2, - "AddLiteralChar": 2, - "tok": 2, - "else_": 2, - "ScanDecimalDigits": 1, - "seen_period": 1, - "ScanIdentifierSuffix": 1, - "LiteralScope*": 1, - "ScanIdentifierUnicodeEscape": 1, - "desc": 2, - "look": 1, - "ahead": 1, - "Field": 2, - "Free": 1, - "Black": 1, - "White": 1, - "Illegal": 1, - "Player": 1, - "NINJA_METRICS_H_": 3, - "int64_t.": 1, - "Metrics": 2, - "module": 1, - "dumps": 1, - "stats": 2, - "actions.": 1, - "To": 1, - "METRIC_RECORD": 4, - "below.": 1, - "metrics": 2, - "hit": 1, - "path.": 2, - "count": 1, - "Total": 1, - "spent": 1, - "int64_t": 3, - "sum": 1, - "scoped": 1, - "recording": 1, - "metric": 2, - "across": 1, - "body": 1, - "Used": 2, - "macro.": 1, - "ScopedMetric": 4, - "Metric*": 4, - "metric_": 1, - "Timestamp": 1, - "started.": 1, - "dependent.": 1, - "start_": 1, - "prints": 1, - "report.": 1, - "NewMetric": 2, - "summary": 1, - "stdout.": 1, - "Report": 1, - "": 1, - "metrics_": 1, - "Get": 1, - "epoch.": 1, - "Epoch": 1, - "varies": 1, - "between": 1, - "platforms": 1, - "useful": 1, - "measuring": 1, - "elapsed": 1, - "time.": 1, - "GetTimeMillis": 1, - "simple": 1, - "stopwatch": 1, - "seconds": 1, - "Restart": 3, - "called.": 1, - "Stopwatch": 2, - "started_": 4, - "Seconds": 1, - "call.": 1, - "Elapsed": 1, - "": 1, - "primary": 1, - "metrics.": 1, - "top": 1, - "recorded": 1, - "metrics_h_metric": 2, - "g_metrics": 3, - "metrics_h_scoped": 1, - "Metrics*": 1, - "UTILS_H": 3, - "": 1, - "": 1, - "": 1, - "QTemporaryFile": 1, - "showUsage": 1, - "QtMsgType": 1, - "dump_path": 1, - "minidump_id": 1, - "QVariant": 1, - "coffee2js": 1, - "script": 1, - "injectJsInFrame": 2, - "jsFilePath": 5, - "libraryPath": 5, - "QWebFrame": 4, - "*targetFrame": 4, - "startingScript": 2, - "Encoding": 3, - "jsFileEnc": 2, - "readResourceFileUtf8": 1, - "resourceFilePath": 1, - "loadJSForDebug": 2, - "autorun": 2, - "cleanupFromDebug": 1, - "findScript": 1, - "jsFromScriptFile": 1, - "scriptPath": 1, - "enc": 1, - "shouldn": 1, - "instantiated": 1, - "QTemporaryFile*": 2, - "m_tempHarness": 1, - "We": 1, - "ourselves": 1, - "m_tempWrapper": 1, - "GDSDBREADER_H": 3, - "": 1, - "GDS_DIR": 1, - "LEVEL_ONE": 1, - "LEVEL_TWO": 1, - "LEVEL_THREE": 1, - "dbDataStructure": 2, - "label": 1, - "quint32": 3, - "depth": 1, - "userIndex": 1, - "QByteArray": 1, - "COMPRESSED": 1, - "optimize": 1, - "ram": 1, - "decompressed": 1, - "quint64": 1, - "uniqueID": 1, - "QVector": 2, - "": 1, - "nextItems": 1, - "": 1, - "nextItemsIndices": 1, - "dbDataStructure*": 1, - "father": 1, - "fatherIndex": 1, - "noFatherRoot": 1, - "tell": 1, - "node": 1, - "root": 1, - "hasn": 1, - "argument": 1, - "overload.": 1, - "myclass.label": 2, - "myclass.depth": 2, - "myclass.userIndex": 2, - "qCompress": 2, - "myclass.data": 4, - "myclass.uniqueID": 2, - "myclass.nextItemsIndices": 2, - "myclass.fatherIndex": 2, - "myclass.noFatherRoot": 2, - "myclass.fileName": 2, - "myclass.firstLineData": 4, - "myclass.linesNumbers": 2, - "QDataStream": 2, - "myclass": 1, - "//Don": 1, - "qUncompress": 2 + "Py_EQ": 6 }, "COBOL": { + "program": 1, + "-": 19, + "id.": 1, + "hello.": 3, + "procedure": 1, + "division.": 1, + "display": 1, + ".": 3, + "stop": 1, + "run.": 1, "IDENTIFICATION": 2, "DIVISION.": 4, "PROGRAM": 2, - "-": 19, "ID.": 2, - "hello.": 3, "PROCEDURE": 2, "DISPLAY": 2, - ".": 3, "STOP": 2, "RUN.": 2, "COBOL": 7, @@ -14361,14 +14371,7 @@ "(": 5, ")": 5, "COMP.": 3, - "COMP2": 2, - "program": 1, - "id.": 1, - "procedure": 1, - "division.": 1, - "display": 1, - "stop": 1, - "run.": 1 + "COMP2": 2 }, "CSS": { ".clearfix": 8, @@ -15148,131 +15151,64 @@ }, "Cirru": { "print": 38, - "int": 36, - "float": 1, - "set": 12, - "a": 22, - "string": 7, - "(": 20, - ")": 20, - "nothing": 1, - "map": 8, - "b": 7, - "c": 9, "array": 14, - "code": 4, - "get": 4, - "container": 3, - "self": 2, - "child": 1, - "under": 2, - "parent": 1, - "x": 2, - "just": 4, - "-": 4, - "eval": 2, + "int": 36, + "string": 7, + "set": 12, "f": 3, "block": 1, + "(": 20, + "a": 22, + "b": 7, + "c": 9, + ")": 20, "call": 1, - "m": 3, "bool": 6, "true": 1, "false": 1, "yes": 1, "no": 1, + "map": 8, + "m": 3, + "float": 1, "require": 1, - "./stdio.cr": 1 + "./stdio.cr": 1, + "self": 2, + "child": 1, + "under": 2, + "parent": 1, + "get": 4, + "x": 2, + "just": 4, + "-": 4, + "code": 4, + "eval": 2, + "nothing": 1, + "container": 3 }, "Clojure": { "(": 258, - "defprotocol": 1, - "ISound": 4, - "sound": 5, - "[": 67, - "]": 67, - ")": 259, - "deftype": 2, - "Cat": 1, - "_": 4, - "Dog": 1, - "extend": 1, - "-": 70, - "type": 8, - "default": 1, - ";": 353, - "clj": 1, - "ns": 2, - "c2.svg": 2, - "use": 3, - "c2.core": 2, - "only": 4, - "unify": 2, - "c2.maths": 2, - "Pi": 2, - "Tau": 2, - "radians": 2, - "per": 2, - "degree": 2, - "sin": 2, - "cos": 2, - "mean": 2, - "cljs": 3, - "require": 2, - "c2.dom": 1, - "as": 1, - "dom": 1, - "Stub": 1, - "for": 4, - "float": 2, - "fn": 3, - "which": 2, - "does": 1, - "not": 9, - "exist": 1, - "on": 11, - "runtime": 1, - "def": 4, - "identity": 1, "defn": 14, - "xy": 1, - "coordinates": 7, - "cond": 2, - "and": 8, - "vector": 1, - "count": 5, - "map": 3, - "x": 8, - "y": 1, - "into": 3, - "array": 3, - "aseq": 8, - "nil": 3, - "let": 3, - "n": 9, - "a": 7, - "make": 1, - "loop": 2, - "seq": 1, - "i": 20, - "if": 3, - "<": 1, - "do": 15, - "aset": 1, - "first": 2, - "recur": 1, - "next": 1, - "inc": 2, "prime": 2, + "[": 67, + "n": 9, + "]": 67, + "not": 9, + "-": 70, "any": 3, "zero": 2, + "map": 3, "#": 14, "rem": 2, "%": 6, + ")": 259, "range": 3, + ";": 353, "while": 3, "stops": 1, "at": 2, "the": 5, + "first": 2, "collection": 1, "element": 1, "that": 1, @@ -15281,20 +15217,34 @@ "false": 6, "like": 1, "take": 1, - "rand": 2, - "scm*": 1, - "random": 1, - "real": 1, + "for": 4, + "x": 8, + "html": 2, + "head": 2, + "meta": 3, + "{": 17, + "charset": 2, + "}": 17, + "link": 2, + "rel": 2, + "href": 6, + "script": 1, + "src": 1, + "body": 2, + "div.nav": 1, + "p": 4, "Copyright": 1, "c": 1, "Alan": 1, "Dipert": 1, + "and": 8, "Micha": 1, "Niskin.": 1, "All": 1, "rights": 1, "reserved.": 1, "The": 1, + "use": 3, "distribution": 1, "terms": 2, "this": 6, @@ -15308,6 +15258,7 @@ "http": 2, "//opensource.org/licenses/eclipse": 1, "php": 1, + "which": 2, "can": 1, "be": 2, "found": 1, @@ -15338,6 +15289,7 @@ "clojure": 1, "exclude": 1, "nth": 2, + "require": 2, "tailrecursion.hoplon.reload": 1, "reload": 2, "all": 5, @@ -15354,25 +15306,30 @@ "route": 11, "state": 15, "editing": 13, + "def": 4, "mapvi": 2, "comp": 1, "vec": 2, "indexed": 1, "dissocv": 2, "v": 15, + "i": 20, + "let": 3, "z": 4, "dec": 1, + "count": 5, + "cond": 2, "neg": 1, "pop": 1, "pos": 1, + "into": 3, "subvec": 2, + "inc": 2, "decorate": 2, "todo": 10, - "{": 17, "done": 12, "completed": 12, "text": 14, - "}": 17, "assoc": 4, "visible": 2, "empty": 8, @@ -15384,6 +15341,7 @@ "cells": 2, "defc": 6, "loaded": 1, + "nil": 3, "formula": 1, "computed": 1, "filter": 2, @@ -15398,35 +15356,32 @@ "swap": 6, "clear": 2, "&": 1, + "_": 4, "new": 5, "when": 3, "conj": 1, "mapv": 1, + "fn": 3, "reset": 1, - "html": 2, + "if": 3, "lang": 1, - "head": 2, - "meta": 3, - "charset": 2, "equiv": 1, "content": 1, - "link": 2, - "rel": 2, - "href": 6, "title": 1, - "body": 2, "noscript": 1, "div": 3, "id": 20, - "p": 4, "section": 2, "header": 1, "h1": 1, "form": 2, + "on": 11, "submit": 2, + "do": 15, "val": 4, "value": 3, "input": 4, + "type": 8, "autofocus": 1, "true": 5, "placeholder": 1, @@ -15437,6 +15392,7 @@ "click": 4, "label": 2, "ul": 2, + "loop": 2, "tpl": 1, "reverse": 1, "bind": 1, @@ -15457,10 +15413,57 @@ "footer": 2, "span": 2, "strong": 1, + "a": 7, "selected": 3, - "script": 1, - "src": 1, - "div.nav": 1, + "array": 3, + "aseq": 8, + "make": 1, + "seq": 1, + "<": 1, + "aset": 1, + "recur": 1, + "next": 1, + "defprotocol": 1, + "ISound": 4, + "sound": 5, + "deftype": 2, + "Cat": 1, + "Dog": 1, + "extend": 1, + "default": 1, + "rand": 2, + "scm*": 1, + "random": 1, + "real": 1, + "clj": 1, + "ns": 2, + "c2.svg": 2, + "c2.core": 2, + "only": 4, + "unify": 2, + "c2.maths": 2, + "Pi": 2, + "Tau": 2, + "radians": 2, + "per": 2, + "degree": 2, + "sin": 2, + "cos": 2, + "mean": 2, + "cljs": 3, + "c2.dom": 1, + "as": 1, + "dom": 1, + "Stub": 1, + "float": 2, + "does": 1, + "exist": 1, + "runtime": 1, + "identity": 1, + "xy": 1, + "coordinates": 7, + "vector": 1, + "y": 1, "deftest": 1, "function": 1, "tests": 1, @@ -15474,132 +15477,89 @@ "vals": 1 }, "CoffeeScript": { - "dnsserver": 1, + "CoffeeScript": 1, "require": 21, - "exports.Server": 1, - "class": 11, - "Server": 2, - "extends": 6, - "dnsserver.Server": 1, - "NS_T_A": 3, - "NS_T_NS": 2, - "NS_T_CNAME": 1, - "NS_T_SOA": 2, - "NS_C_IN": 5, - "NS_RCODE_NXDOMAIN": 2, - "constructor": 6, + "CoffeeScript.require": 1, + "CoffeeScript.eval": 1, "(": 193, - "domain": 6, - "@rootAddress": 2, - ")": 196, - "-": 107, - "super": 4, - "@domain": 3, - "domain.toLowerCase": 1, - "@soa": 2, - "createSOA": 2, - "@on": 1, - "@handleRequest": 1, - "handleRequest": 1, - "req": 4, - "res": 3, - "question": 5, - "req.question": 1, - "subdomain": 10, - "@extractSubdomain": 1, - "question.name": 3, - "if": 102, - "and": 20, - "isARequest": 2, - "res.addRR": 2, - "subdomain.getAddress": 1, - "else": 53, - ".isEmpty": 1, - "isNSRequest": 2, - "true": 8, - "res.header.rcode": 1, - "res.send": 1, - "extractSubdomain": 1, - "name": 5, - "Subdomain.extract": 1, - "question.type": 2, - "is": 36, - "question.class": 2, - "mname": 2, - "rname": 2, - "serial": 2, - "parseInt": 5, - "new": 12, - "Date": 1, - ".getTime": 1, - "/": 44, - "refresh": 2, - "retry": 2, - "expire": 2, - "minimum": 2, - "dnsserver.createSOA": 1, - "exports.createServer": 1, - "address": 4, - "exports.Subdomain": 1, - "Subdomain": 4, - "@extract": 1, - "return": 29, - "unless": 19, - "name.toLowerCase": 1, - "offset": 4, - "name.length": 1, - "domain.length": 1, - "name.slice": 2, - "then": 24, - "null": 15, - "@for": 2, - "IPAddressSubdomain.pattern.test": 1, - "IPAddressSubdomain": 2, - "EncodedSubdomain.pattern.test": 1, - "EncodedSubdomain": 2, - "@subdomain": 1, - "@address": 2, - "@labels": 2, - ".split": 1, - "[": 134, - "]": 134, - "@length": 3, - "@labels.length": 1, - "isEmpty": 1, - "getAddress": 3, - "@pattern": 2, - "///": 12, - "|": 21, - ".": 13, + "code": 20, + "options": 16, "{": 31, "}": 34, - "@labels.slice": 1, - ".join": 2, - "a": 2, - "z0": 2, - "decode": 2, - "exports.encode": 1, - "encode": 1, - "ip": 2, - "value": 25, - "for": 14, - "byte": 2, - "index": 4, + ")": 196, + "-": 107, + "options.bare": 2, + "on": 3, + "eval": 2, + "CoffeeScript.compile": 2, + "CoffeeScript.run": 3, + "Function": 1, + "return": 29, + "unless": 19, + "window": 1, + "CoffeeScript.load": 2, + "url": 2, + "callback": 35, + "xhr": 2, + "new": 12, + "window.ActiveXObject": 1, + "or": 22, + "XMLHttpRequest": 1, + "xhr.open": 1, + "true": 8, + "xhr.overrideMimeType": 1, + "if": 102, + "of": 7, + "xhr.onreadystatechange": 1, + "xhr.readyState": 1, + "is": 36, + "xhr.status": 1, "in": 32, - "ip.split": 1, + "[": 134, + "]": 134, + "xhr.responseText": 1, + "else": 53, + "throw": 3, + "Error": 1, + "xhr.send": 1, + "null": 15, + "runScripts": 3, + "scripts": 2, + "document.getElementsByTagName": 1, + "coffees": 2, + "s": 10, + "for": 14, + "when": 16, + "s.type": 1, + "index": 4, + "length": 4, + "coffees.length": 1, + "do": 2, + "execute": 3, + "script": 7, "+": 31, - "<<": 1, - "*": 21, - ".toString": 3, - "PATTERN": 1, - "exports.decode": 1, - "string": 9, - "PATTERN.test": 1, - "i": 8, - "ip.push": 1, - "&": 4, - "xFF": 1, - "ip.join": 1, + ".type": 1, + "script.src": 2, + "script.innerHTML": 1, + "window.addEventListener": 1, + "addEventListener": 1, + "no": 3, + "attachEvent": 1, + "class": 11, + "Animal": 3, + "constructor": 6, + "@name": 2, + "move": 3, + "meters": 2, + "alert": 4, + "Snake": 2, + "extends": 6, + "super": 4, + "Horse": 2, + "sam": 1, + "tom": 1, + "sam.move": 1, + "tom.move": 1, "#": 35, "fs": 2, "path": 3, @@ -15619,8 +15579,6 @@ "exports.RESERVED": 1, "exports.helpers": 2, "exports.compile": 1, - "code": 20, - "options": 16, "merge": 1, "try": 3, "js": 5, @@ -15632,7 +15590,6 @@ "err": 20, "err.message": 2, "options.filename": 5, - "throw": 3, "header": 1, "exports.tokens": 1, "exports.nodes": 1, @@ -15643,14 +15600,15 @@ "require.main": 1, "mainModule.filename": 4, "process.argv": 1, + "then": 24, "fs.realpathSync": 2, "mainModule.moduleCache": 1, + "and": 20, "mainModule.paths": 1, "._nodeModulePaths": 1, "path.dirname": 2, "path.extname": 1, "isnt": 7, - "or": 22, "mainModule._compile": 2, "exports.eval": 1, "code.trim": 1, @@ -15664,7 +15622,6 @@ "k": 4, "v": 4, "own": 2, - "of": 7, "sandbox.global": 1, "sandbox.root": 1, "sandbox.GLOBAL": 1, @@ -15682,7 +15639,6 @@ "_module.filename": 1, "r": 4, "Object.getOwnPropertyNames": 1, - "when": 16, "_require.paths": 1, "_module.paths": 1, "Module._nodeModulePaths": 1, @@ -15692,8 +15648,8 @@ "Module._resolveFilename": 1, "o": 4, "o.bare": 1, - "on": 3, "ensure": 1, + "value": 25, "vm.runInThisContext": 1, "vm.runInContext": 1, "lexer": 1, @@ -15707,10 +15663,12 @@ "setInput": 1, "upcomingInput": 1, "parser.yy": 1, + "console.log": 1, "number": 13, "opposite": 2, "square": 4, "x": 6, + "*": 21, "list": 2, "math": 1, "root": 1, @@ -15721,156 +15679,10 @@ "runners...": 1, "print": 1, "runners": 1, - "alert": 4, "elvis": 1, "cubes": 1, "math.cube": 1, "num": 2, - "async": 1, - "nack": 1, - "bufferLines": 3, - "pause": 2, - "sourceScriptEnv": 3, - "join": 8, - "exists": 5, - "basename": 2, - "resolve": 2, - "module.exports": 1, - "RackApplication": 1, - "@configuration": 1, - "@root": 8, - "@firstHost": 1, - "@logger": 1, - "@configuration.getLogger": 1, - "@readyCallbacks": 3, - "@quitCallbacks": 3, - "@statCallbacks": 3, - "ready": 1, - "callback": 35, - "@state": 11, - "@readyCallbacks.push": 1, - "@initialize": 2, - "quit": 1, - "@quitCallbacks.push": 1, - "@terminate": 2, - "queryRestartFile": 1, - "fs.stat": 1, - "stats": 1, - "@mtime": 5, - "false": 4, - "lastMtime": 2, - "stats.mtime.getTime": 1, - "setPoolRunOnceFlag": 1, - "@statCallbacks.length": 1, - "alwaysRestart": 2, - "@pool.runOnce": 1, - "statCallback": 2, - "@statCallbacks.push": 1, - "loadScriptEnvironment": 1, - "env": 18, - "async.reduce": 1, - "script": 7, - "scriptExists": 2, - "loadRvmEnvironment": 1, - "rvmrcExists": 2, - "rvm": 1, - "@configuration.rvmPath": 1, - "rvmExists": 2, - "libexecPath": 1, - "before": 2, - ".trim": 1, - "loadEnvironment": 1, - "@queryRestartFile": 2, - "@loadScriptEnvironment": 1, - "@configuration.env": 1, - "@loadRvmEnvironment": 1, - "initialize": 1, - "@quit": 3, - "@loadEnvironment": 1, - "@logger.error": 3, - "@pool": 2, - "nack.createPool": 1, - "size": 1, - ".POW_WORKERS": 1, - "@configuration.workers": 1, - "idle": 1, - ".POW_TIMEOUT": 1, - "@configuration.timeout": 1, - "@pool.stdout": 1, - "line": 6, - "@logger.info": 1, - "@pool.stderr": 1, - "@logger.warning": 1, - "@pool.on": 2, - "process": 2, - "@logger.debug": 2, - "readyCallback": 2, - "terminate": 1, - "@ready": 3, - "@pool.quit": 1, - "quitCallback": 2, - "handle": 1, - "next": 3, - "resume": 2, - "@setPoolRunOnceFlag": 1, - "@restartIfNecessary": 1, - "req.proxyMetaVariables": 1, - "SERVER_PORT": 1, - "@configuration.dstPort.toString": 1, - "@pool.proxy": 1, - "finally": 2, - "restart": 1, - "restartIfNecessary": 1, - "mtimeChanged": 2, - "@restart": 1, - "writeRvmBoilerplate": 1, - "powrc": 3, - "boilerplate": 2, - "@constructor.rvmBoilerplate": 1, - "fs.readFile": 1, - "contents": 2, - "contents.indexOf": 1, - "fs.writeFile": 1, - "@rvmBoilerplate": 1, - "CoffeeScript": 1, - "CoffeeScript.require": 1, - "CoffeeScript.eval": 1, - "options.bare": 2, - "eval": 2, - "CoffeeScript.compile": 2, - "CoffeeScript.run": 3, - "Function": 1, - "window": 1, - "CoffeeScript.load": 2, - "url": 2, - "xhr": 2, - "window.ActiveXObject": 1, - "XMLHttpRequest": 1, - "xhr.open": 1, - "xhr.overrideMimeType": 1, - "xhr.onreadystatechange": 1, - "xhr.readyState": 1, - "xhr.status": 1, - "xhr.responseText": 1, - "Error": 1, - "xhr.send": 1, - "runScripts": 3, - "scripts": 2, - "document.getElementsByTagName": 1, - "coffees": 2, - "s": 10, - "s.type": 1, - "length": 4, - "coffees.length": 1, - "do": 2, - "execute": 3, - ".type": 1, - "script.src": 2, - "script.innerHTML": 1, - "window.addEventListener": 1, - "addEventListener": 1, - "no": 3, - "attachEvent": 1, "Rewriter": 2, "INVERSES": 2, "count": 5, @@ -15882,6 +15694,7 @@ "opts": 1, "WHITESPACE.test": 1, "code.replace": 1, + "/": 44, "r/g": 1, ".replace": 3, "TRAILING_SPACES": 2, @@ -15915,6 +15728,9 @@ "parsed": 1, "tokens": 5, "form": 1, + "line": 6, + ".": 13, + "i": 8, "while": 4, "@chunk": 9, "i..": 1, @@ -15976,11 +15792,14 @@ "number.length": 1, "octalLiteral": 2, "/.exec": 2, + "parseInt": 5, + ".toString": 3, "binaryLiteral": 2, "b": 1, "stringToken": 1, "@chunk.charAt": 3, "SIMPLESTR.exec": 1, + "string": 9, "MULTILINER": 2, "@balancedString": 1, "<": 6, @@ -15988,6 +15807,7 @@ "@interpolateString": 2, "@escapeLines": 1, "octalEsc": 1, + "|": 21, "string.length": 1, "heredocToken": 1, "HEREDOC.exec": 1, @@ -16014,6 +15834,7 @@ "here": 3, "herecomment": 4, "Array": 1, + ".join": 2, "comment.length": 1, "jsToken": 1, "JSTOKEN.exec": 1, @@ -16067,6 +15888,7 @@ "attempt.length": 1, "indent.length": 1, "doc.replace": 2, + "///": 12, "///g": 1, "n/": 1, "tagParameters": 1, @@ -16092,9 +15914,12 @@ "OUTDENT": 1, "THROW": 1, "EXTENDS": 1, + "&": 4, + "false": 4, "delete": 1, "break": 1, "debugger": 1, + "finally": 2, "undefined": 1, "until": 1, "loop": 1, @@ -16176,17 +16001,195 @@ "BOOL": 1, "NOT_REGEX.concat": 1, "CALLABLE.concat": 1, - "console.log": 1, - "Animal": 3, - "@name": 2, - "move": 3, - "meters": 2, - "Snake": 2, - "Horse": 2, - "sam": 1, - "tom": 1, - "sam.move": 1, - "tom.move": 1 + "async": 1, + "nack": 1, + "bufferLines": 3, + "pause": 2, + "sourceScriptEnv": 3, + "join": 8, + "exists": 5, + "basename": 2, + "resolve": 2, + "module.exports": 1, + "RackApplication": 1, + "@configuration": 1, + "@root": 8, + "@firstHost": 1, + "@logger": 1, + "@configuration.getLogger": 1, + "@readyCallbacks": 3, + "@quitCallbacks": 3, + "@statCallbacks": 3, + "ready": 1, + "@state": 11, + "@readyCallbacks.push": 1, + "@initialize": 2, + "quit": 1, + "@quitCallbacks.push": 1, + "@terminate": 2, + "queryRestartFile": 1, + "fs.stat": 1, + "stats": 1, + "@mtime": 5, + "lastMtime": 2, + "stats.mtime.getTime": 1, + "setPoolRunOnceFlag": 1, + "@statCallbacks.length": 1, + "alwaysRestart": 2, + "@pool.runOnce": 1, + "statCallback": 2, + "@statCallbacks.push": 1, + "loadScriptEnvironment": 1, + "env": 18, + "async.reduce": 1, + "scriptExists": 2, + "loadRvmEnvironment": 1, + "rvmrcExists": 2, + "rvm": 1, + "@configuration.rvmPath": 1, + "rvmExists": 2, + "libexecPath": 1, + "before": 2, + ".trim": 1, + "loadEnvironment": 1, + "@queryRestartFile": 2, + "@loadScriptEnvironment": 1, + "@configuration.env": 1, + "@loadRvmEnvironment": 1, + "initialize": 1, + "@quit": 3, + "@loadEnvironment": 1, + "@logger.error": 3, + "@pool": 2, + "nack.createPool": 1, + "size": 1, + ".POW_WORKERS": 1, + "@configuration.workers": 1, + "idle": 1, + ".POW_TIMEOUT": 1, + "@configuration.timeout": 1, + "@pool.stdout": 1, + "@logger.info": 1, + "@pool.stderr": 1, + "@logger.warning": 1, + "@pool.on": 2, + "process": 2, + "@logger.debug": 2, + "readyCallback": 2, + "terminate": 1, + "@ready": 3, + "@pool.quit": 1, + "quitCallback": 2, + "handle": 1, + "req": 4, + "res": 3, + "next": 3, + "resume": 2, + "@setPoolRunOnceFlag": 1, + "@restartIfNecessary": 1, + "req.proxyMetaVariables": 1, + "SERVER_PORT": 1, + "@configuration.dstPort.toString": 1, + "@pool.proxy": 1, + "restart": 1, + "restartIfNecessary": 1, + "mtimeChanged": 2, + "@restart": 1, + "writeRvmBoilerplate": 1, + "powrc": 3, + "boilerplate": 2, + "@constructor.rvmBoilerplate": 1, + "fs.readFile": 1, + "contents": 2, + "contents.indexOf": 1, + "fs.writeFile": 1, + "@rvmBoilerplate": 1, + "dnsserver": 1, + "exports.Server": 1, + "Server": 2, + "dnsserver.Server": 1, + "NS_T_A": 3, + "NS_T_NS": 2, + "NS_T_CNAME": 1, + "NS_T_SOA": 2, + "NS_C_IN": 5, + "NS_RCODE_NXDOMAIN": 2, + "domain": 6, + "@rootAddress": 2, + "@domain": 3, + "domain.toLowerCase": 1, + "@soa": 2, + "createSOA": 2, + "@on": 1, + "@handleRequest": 1, + "handleRequest": 1, + "question": 5, + "req.question": 1, + "subdomain": 10, + "@extractSubdomain": 1, + "question.name": 3, + "isARequest": 2, + "res.addRR": 2, + "subdomain.getAddress": 1, + ".isEmpty": 1, + "isNSRequest": 2, + "res.header.rcode": 1, + "res.send": 1, + "extractSubdomain": 1, + "name": 5, + "Subdomain.extract": 1, + "question.type": 2, + "question.class": 2, + "mname": 2, + "rname": 2, + "serial": 2, + "Date": 1, + ".getTime": 1, + "refresh": 2, + "retry": 2, + "expire": 2, + "minimum": 2, + "dnsserver.createSOA": 1, + "exports.createServer": 1, + "address": 4, + "exports.Subdomain": 1, + "Subdomain": 4, + "@extract": 1, + "name.toLowerCase": 1, + "offset": 4, + "name.length": 1, + "domain.length": 1, + "name.slice": 2, + "@for": 2, + "IPAddressSubdomain.pattern.test": 1, + "IPAddressSubdomain": 2, + "EncodedSubdomain.pattern.test": 1, + "EncodedSubdomain": 2, + "@subdomain": 1, + "@address": 2, + "@labels": 2, + ".split": 1, + "@length": 3, + "@labels.length": 1, + "isEmpty": 1, + "getAddress": 3, + "@pattern": 2, + "@labels.slice": 1, + "a": 2, + "z0": 2, + "decode": 2, + "exports.encode": 1, + "encode": 1, + "ip": 2, + "byte": 2, + "ip.split": 1, + "<<": 1, + "PATTERN": 1, + "exports.decode": 1, + "PATTERN.test": 1, + "ip.push": 1, + "xFF": 1, + "ip.join": 1 }, "Common Lisp": { ";": 152, @@ -16315,35 +16318,8 @@ "names": 2, "collect": 1, "gensym": 1, - "*": 2, - "lisp": 1, - "package": 1, - "foo": 2, - "Header": 1, - "comment.": 4, - "defvar": 4, - "*foo*": 1, - "eval": 6, - "execute": 1, - "compile": 1, - "toplevel": 2, - "load": 1, - "add": 1, - "x": 47, - "optional": 2, - "y": 2, - "key": 1, - "z": 2, - "declare": 1, - "ignore": 1, - "Inline": 1, - "or": 4, "#": 15, "|": 9, - "Multi": 1, - "line": 2, - "b": 6, - "After": 1, "ESCUELA": 1, "POLITECNICA": 1, "SUPERIOR": 1, @@ -16363,6 +16339,7 @@ "Norvig": 1, "Global": 1, "variables": 6, + "defvar": 4, "*hypothesis": 1, "list*": 7, "*rule": 4, @@ -16374,6 +16351,7 @@ "no": 6, "bindings": 45, "lambda": 4, + "b": 6, "mapcar": 2, "man": 3, "luis": 1, @@ -16383,6 +16361,7 @@ "daniel": 1, "laura": 1, "facts": 1, + "x": 47, "aux": 3, "unify": 12, "hypothesis": 10, @@ -16453,6 +16432,7 @@ "E.49": 2, "XS.50": 2, "R2.": 1, + "eval": 6, "ifs": 1, "NOT": 2, "question": 1, @@ -16481,6 +16461,7 @@ "Auxiliary": 1, "Functions": 1, "cond": 3, + "or": 4, "get": 5, "lookup": 5, "occurs": 5, @@ -16505,6 +16486,7 @@ "anywhere": 6, "predicate": 8, "tree": 11, + "optional": 2, "so": 4, "far": 4, "atom": 3, @@ -16516,7 +16498,28 @@ "cons/cons": 1, "expresion": 2, "some": 1, - "EOF": 1 + "EOF": 1, + "*": 2, + "lisp": 1, + "package": 1, + "foo": 2, + "Header": 1, + "comment.": 4, + "*foo*": 1, + "execute": 1, + "compile": 1, + "toplevel": 2, + "load": 1, + "add": 1, + "y": 2, + "key": 1, + "z": 2, + "declare": 1, + "ignore": 1, + "Inline": 1, + "Multi": 1, + "line": 2, + "After": 1 }, "Component Pascal": { "MODULE": 2, @@ -16694,815 +16697,10 @@ "ObxFact.": 1 }, "Coq": { - "Require": 17, - "Import": 11, - "Omega": 1, - "Relations": 2, - "Multiset": 2, - "SetoidList.": 1, - "Set": 4, - "Implicit": 15, - "Arguments.": 2, - "Local": 7, - "Notation": 39, - "nil.": 2, - "(": 1248, - "a": 207, - "..": 4, - "b": 89, - "[": 170, - "]": 173, - ")": 1249, - ".": 433, - "Section": 4, - "Permut.": 1, - "Variable": 7, - "A": 113, - "Type.": 3, - "eqA": 29, - "relation": 19, - "A.": 6, - "Hypothesis": 7, - "eqA_equiv": 1, - "Equivalence": 2, - "eqA.": 1, - "eqA_dec": 26, - "forall": 248, - "x": 266, - "y": 116, - "{": 39, - "}": 35, - "+": 227, - "Let": 8, - "emptyBag": 4, - "EmptyBag": 2, - "singletonBag": 10, - "SingletonBag": 2, - "_": 67, - "eqA_dec.": 2, - "Fixpoint": 36, - "list_contents": 30, - "l": 379, - "list": 78, - "multiset": 2, - "match": 70, - "with": 223, - "|": 457, - "munion": 18, - "end.": 52, - "Lemma": 51, - "list_contents_app": 5, - "m": 201, - "meq": 15, - "Proof.": 208, - "simple": 7, - "induction": 81, - ";": 375, - "simpl": 116, - "auto": 73, - "datatypes.": 47, - "intros.": 27, - "apply": 340, - "meq_trans": 10, - "l0": 7, - "Qed.": 194, - "Definition": 46, - "permutation": 43, - "permut_refl": 1, - "l.": 26, - "unfold": 58, - "permut_sym": 4, - "l1": 89, - "l2": 73, - "-": 508, - "l1.": 5, - "intros": 258, - "symmetry": 4, - "trivial.": 14, - "permut_trans": 5, - "n": 369, - "n.": 44, - "permut_cons_eq": 3, - "meq_left": 1, - "meq_singleton": 1, - "auto.": 47, - "permut_cons": 5, - "permut_app": 1, - "using": 18, - "l3": 12, - "l4": 3, - "in": 221, - "*": 59, - "specialize": 6, - "H0": 16, - "a0.": 1, - "repeat": 11, - "rewrite": 241, - "*.": 110, - "destruct": 94, - "a0": 15, - "as": 77, - "Ha": 6, - "H": 76, - "decide": 1, - "replace": 4, - "trivial": 15, - "permut_add_inside_eq": 1, - "permut_add_cons_inside": 3, - "permut_add_inside": 1, - "permut_middle": 1, - "permut_refl.": 5, - "permut_sym_app": 1, - "intro": 27, - "do": 4, - "arith.": 8, - "permut_rev": 1, - "rev": 7, - "simpl.": 70, - "permut_add_cons_inside.": 1, - "<->": 31, - "app_nil_end": 1, - "Qed": 23, - "Some": 21, - "inversion": 104, - "results": 1, - "permut_conv_inv": 1, - "e": 53, - "l2.": 8, - "generalize": 13, - "plus_reg_l.": 1, - "permut_app_inv1": 1, - "clear": 7, - "H.": 100, - "list_contents_app.": 1, - "plus_reg_l": 1, - "multiplicity": 6, - "plus_comm": 3, - "plus_comm.": 3, - "Fact": 3, - "if_eqA_then": 1, - "B": 6, - "then": 9, - "else": 9, - "Type": 86, - "if": 10, - "if_eqA_refl": 3, - "b.": 14, - "decide_left": 1, - "Global": 5, - "Instance": 7, - "if_eqA": 1, - "contradict": 3, - "transitivity": 4, - "a2": 62, - "a1": 56, - "A1": 2, - "eauto": 10, - "if_eqA_rewrite_r": 1, - "A2": 4, - "Hxx": 1, - "multiplicity_InA": 4, - "InA": 8, - "<": 76, - "a.": 6, - "split": 14, - "right.": 9, - "IHl": 8, - "multiplicity_InA_O": 2, - "multiplicity_InA_S": 1, - "multiplicity_NoDupA": 1, - "NoDupA": 3, - "inversion_clear": 6, - "H1.": 31, - "EQ": 8, - "NEQ": 1, - "constructor": 6, - "omega": 7, - "Permutation": 38, - "is": 4, - "compatible": 1, - "permut_InA_InA": 3, - "e.": 15, - "multiplicity_InA.": 1, - "meq.": 2, - "permut_cons_InA": 3, - "permut_nil": 3, - "assert": 68, - "by": 7, - "Abs": 2, - "permut_length_1": 1, - "P": 32, - "discriminate.": 2, - "permut_length_2": 1, - "b1": 35, - "b2": 23, - "/": 41, - "P.": 5, - "left": 6, - "permut_length_1.": 2, - "red": 6, - "@if_eqA_rewrite_l": 2, - "omega.": 7, - "permut_length": 1, - "length": 21, - "InA_split": 1, - "h2": 1, - "t2": 51, - "H1": 18, - "H2": 12, - "subst": 7, - "app_length.": 2, - "plus_n_Sm": 1, - "f_equal.": 1, - "app_length": 1, - "IHl1": 1, - "permut_remove_hd": 1, - "revert": 5, - "f_equal": 1, - "if_eqA_rewrite_l": 1, - "NoDupA_equivlistA_permut": 1, - "Equivalence_Reflexive.": 1, - "change": 1, - "Equivalence_Reflexive": 1, - "Forall2": 2, - "permutation_Permutation": 1, - "exists": 60, - "Forall2.": 1, - "pose": 2, - "proof": 1, - "&": 21, - "IHP": 2, - "IHA": 2, - "Forall2_app_inv_r": 1, - "Hl1": 1, - "Hl2": 1, - "split.": 17, - "Permutation_cons_app": 3, - "Forall2_app": 1, - "Forall2_cons": 1, - "Heq": 8, - "Permutation_impl_permutation": 1, - "permut_eqA": 1, - "End": 15, - "Permut_permut.": 1, - "permut_right": 1, - "only": 3, - "parsing": 3, - "permut_tran": 1, - "Export": 10, - "Imp.": 1, - "Relations.": 1, "Inductive": 41, - "tm": 43, - "tm_const": 45, - "nat": 108, - "tm_plus": 30, - "tm.": 3, - "Tactic": 9, - "tactic": 9, - "first": 18, - "ident": 9, - "c": 70, - "Case_aux": 38, - "Module": 11, - "SimpleArith0.": 2, - "eval": 8, - "t": 93, - "SimpleArith1.": 2, - "Reserved": 4, - "at": 17, - "level": 11, - "associativity": 7, - "Prop": 17, - "E_Const": 2, - "E_Plus": 2, - "t1": 48, - "n1": 45, - "n2": 41, - "plus": 10, - "where": 6, - "Example": 37, - "test_step_1": 1, - "ST_Plus1.": 2, - "ST_PlusConstConst.": 3, - "test_step_2": 1, - "ST_Plus2.": 2, - "Theorem": 115, - "step_deterministic": 1, - "partial_function": 6, - "step.": 3, - "partial_function.": 5, - "y1": 6, - "y2": 5, - "Hy1": 2, - "Hy2.": 2, - "dependent": 6, - "y2.": 3, - "step_cases": 4, - "Case": 51, - "Hy2": 3, - "SCase.": 3, - "SCase": 24, - "reflexivity.": 199, - "H2.": 20, - "Hy1.": 5, - "IHHy1": 2, - "assumption.": 61, - "SimpleArith2.": 1, - "value": 25, - "v_const": 4, - "step": 9, - "ST_PlusConstConst": 3, - "ST_Plus1": 2, - "v1": 7, - "subst.": 43, - "H3.": 5, - "0": 5, - "reflexivity": 16, - "assumption": 10, - "strong_progress": 2, - "R": 54, - "value_not_same_as_normal_form": 2, - "normal_form": 3, - "t.": 4, - "normal_form.": 2, - "v_funny.": 1, - "not.": 3, - "Temp1.": 1, - "Temp2.": 1, - "ST_Funny": 1, - "H0.": 24, - "H4.": 2, - "Temp3.": 1, - "Temp4.": 2, - "tm_true": 8, - "tm_false": 5, - "tm_if": 10, - "v_true": 1, - "v_false": 1, - "tm_false.": 3, - "ST_IfTrue": 1, - "ST_IfFalse": 1, - "ST_If": 1, - "t3": 6, - "bool_step_prop4": 1, - "bool_step_prop4_holds": 1, - "bool_step_prop4.": 2, - "ST_ShortCut.": 1, - "constructor.": 16, - "left.": 3, - "IHt1.": 1, - "t2.": 4, - "t3.": 2, - "ST_If.": 2, - "Temp5.": 1, - "stepmany": 4, - "refl_step_closure": 11, - "normalizing": 1, - "X": 191, - "IHt2": 3, - "H11": 2, - "H12": 2, - "H21": 3, - "H22": 2, - "nf_same_as_value": 3, - "H12.": 1, - "H22.": 1, - "H11.": 1, - "rsc_trans": 4, - "stepmany_congr_1": 1, - "stepmany_congr2": 1, - "rsc_R": 2, - "r": 11, - "eval__value": 1, - "HE.": 1, - "eval_cases": 1, - "HE": 1, - "v_const.": 1, - "List": 2, - "Setoid": 1, - "Compare_dec": 1, - "Morphisms.": 2, - "ListNotations.": 1, - "Permutation.": 2, - "perm_nil": 1, - "perm_skip": 1, - "Hint": 9, - "Constructors": 3, - "Permutation_nil": 2, - "HF.": 3, - "remember": 12, - "@nil": 1, - "HF": 2, - "discriminate": 3, - "||": 1, - "Permutation_nil_cons": 1, - "nil": 46, - "Permutation_refl": 1, - "exact": 4, - "IHl.": 7, - "Permutation_sym": 1, - "Hperm": 7, - "perm_trans": 1, - "Permutation_trans": 4, - "Proper": 5, - "Logic.eq": 2, - "@Permutation": 5, - "iff": 1, - "@In": 1, - "Permutation_in.": 2, - "Permutation_app_tail": 2, - "tl": 8, - "eapply": 8, - "Permutation_app_head": 2, - "app_comm_cons": 5, - "Permutation_app": 3, - "Hpermmm": 1, - "idtac": 1, - "try": 17, - "@app": 1, - "now": 24, - "Permutation_app.": 1, - "Permutation_add_inside": 1, - "Permutation_cons_append": 1, - "Resolve": 5, - "Permutation_cons_append.": 3, - "Permutation_app_comm": 3, - "app_nil_r": 1, - "app_assoc": 2, - "Permutation_middle": 2, - "Proof": 12, - "Permutation_rev": 3, - "1": 1, - "@rev": 1, - "2": 1, - "Permutation_length": 2, - "@length": 1, - "Permutation_length.": 1, - "Permutation_ind_bis": 2, - "Hnil": 1, - "Hskip": 3, - "Hswap": 2, - "Htrans.": 1, - "Htrans": 1, - "eauto.": 7, - "Ltac": 1, - "break_list": 5, - "injection": 4, - "Permutation_nil_app_cons": 1, - "Hp": 5, - "IH": 3, - "Permutation_middle.": 3, - "perm_swap.": 2, - "perm_swap": 1, - "eq_refl": 2, - "In_split": 1, - "Permutation_app_inv": 1, - "NoDup": 4, - "incl": 3, - "N.": 1, - "E": 7, - "Hx.": 5, - "In": 6, - "Hy": 14, - "N": 1, - "Hal": 1, - "Hl": 1, - "exfalso.": 1, - "Hx": 20, - "NoDup_Permutation_bis": 2, - "intuition.": 2, - "Permutation_NoDup": 1, - "Permutation_map": 1, - "Hf": 15, - "Hy.": 3, - "injective_bounded_surjective": 1, - "f": 108, - "injective": 6, - "set": 1, - "seq": 2, - "map": 4, - "x.": 3, - "in_map_iff.": 2, - "in_seq": 4, - "arith": 4, - "NoDup_cardinal_incl": 1, - "injective_map_NoDup": 2, - "seq_NoDup": 1, - "map_length": 1, - "in_map_iff": 1, - "nat_bijection_Permutation": 1, - "let": 3, - "BD.": 1, - "seq_NoDup.": 1, - "map_length.": 1, - "Injection": 1, - "Permutation_alt": 1, - "Alternative": 1, - "characterization": 1, - "of": 4, - "via": 1, - "nth_error": 7, - "and": 1, - "nth": 2, - "adapt": 4, - "S": 186, - "le_lt_dec": 9, - "pred": 3, - "adapt_injective": 1, - "adapt.": 2, - "EQ.": 2, - "LE": 11, - "LT": 14, - "eq_add_S": 2, - "Hf.": 1, - "Lt.le_lt_or_eq": 3, - "LE.": 3, - "lt": 3, - "LT.": 5, - "Lt.S_pred": 3, - "elim": 21, - "Lt.lt_not_le": 2, - "adapt_ok": 2, - "nth_error_app1": 1, - "nth_error_app2": 1, - "Minus.minus_Sn_m": 1, - "Permutation_nth_error": 2, - "fun": 17, - "IHP2": 1, - "g": 6, - "Hg": 2, - "E.": 2, - "L12": 2, - "plus_n_Sm.": 1, - "adapt_injective.": 1, - "nth_error_None": 4, - "Hn": 1, - "Hf2": 1, - "Hf3": 2, - "Lt.le_or_lt": 1, - "d": 6, - "Lt.lt_irrefl": 2, - "Lt.lt_le_trans": 2, - "Hf1": 1, - "congruence.": 1, - "Permutation_alt.": 1, - "Permutation_app_swap": 1, - "SfLib.": 2, - "STLC.": 1, - "ty": 7, - "ty_Bool": 10, - "ty_arrow": 7, - "ty.": 2, - "tm_var": 6, - "id": 7, - "tm_app": 7, - "tm_abs": 9, - "Id": 7, - "idB": 2, - "idBB": 2, - "idBBBB": 2, - "k": 7, - "v_abs": 1, - "T": 49, - "t_true": 1, - "t_false": 1, - "value.": 1, - "s": 13, - "beq_id": 14, - "ST_App2": 1, - "step_example3": 1, - "idB.": 1, - "rsc_step.": 2, - "ST_App1.": 2, - "ST_AppAbs.": 3, - "v_abs.": 2, - "rsc_refl.": 4, - "context": 1, - "partial_map": 4, - "Context.": 1, - "option": 6, - "empty": 3, - "None": 9, - "extend": 1, - "Gamma": 10, - "has_type": 4, - "appears_free_in": 1, - "S.": 1, - "HT": 1, - "T_Var.": 1, - "extend_neq": 1, - "Heqe.": 3, - "rename": 2, - "i": 11, - "into": 2, - "y.": 15, - "T_Abs.": 1, - "context_invariance...": 2, - "beq_id_eq": 4, - "Hafi.": 2, - "extend.": 2, - "IHt.": 1, - "x0": 14, - "Coiso1.": 2, - "Coiso2.": 3, - "HeqCoiso1.": 1, - "HeqCoiso2.": 1, - "beq_id_false_not_eq.": 1, - "ex_falso_quodlibet.": 1, - "preservation": 1, - "HT.": 1, - "substitution_preserves_typing": 1, - "T11.": 4, - "HT1.": 1, - "T_App": 2, - "IHHT1.": 1, - "IHHT2.": 1, - "tm_cases": 1, - "Ht": 1, - "Ht.": 3, - "IHt1": 2, - "T11": 2, - "T0": 2, - "ST_App2.": 1, - "ty_Bool.": 1, - "T.": 9, - "IHt3": 1, - "ST_IfTrue.": 1, - "ST_IfFalse.": 1, - "types_unique": 1, - "T1": 25, - "T12": 2, - "IHhas_type.": 1, - "IHhas_type1.": 1, - "IHhas_type2.": 1, - "Sorted.": 1, - "Mergesort.": 1, - "Basics.": 2, - "NatList.": 2, - "Playground1.": 5, - "natprod": 5, - "pair": 7, - "natprod.": 1, - "fst": 3, - "p": 81, - "snd": 3, - "swap_pair": 1, - "surjective_pairing": 1, - "count": 7, - "beq_nat": 24, - "v": 28, - "remove_one": 3, - "end": 16, - "test_remove_one1": 1, - "O": 98, - "O.": 5, - "remove_all": 2, - "bag": 3, - "true": 68, - "false": 48, - "app_ass": 1, - "natlist": 7, - "l3.": 1, - "cons": 26, - "remove_decreases_count": 1, - "ble_nat": 6, - "true.": 16, - "s.": 4, - "ble_n_Sn.": 1, - "IHs.": 2, - "natoption": 5, - "natoption.": 1, - "index": 3, - "option_elim": 2, - "o": 25, - "hd_opt": 8, - "test_hd_opt1": 2, - "None.": 2, - "test_hd_opt2": 2, - "option_elim_hd": 1, - "head": 1, - "beq_natlist": 5, - "bool": 38, - "r1": 2, - "v2": 2, - "r2": 2, - "test_beq_natlist1": 1, - "test_beq_natlist2": 1, - "beq_natlist_refl": 1, - "beq_nat_refl": 3, - "silly1": 1, - "eq1": 6, - "eq2.": 9, - "eq2": 1, - "silly2a": 1, - "q": 15, - "eq1.": 5, - "silly_ex": 1, - "evenb": 5, - "oddb": 5, - "silly3": 1, - "symmetry.": 2, - "rev_exercise": 1, - "rev_involutive.": 1, - "beq_nat_sym": 2, - "IHn": 12, - "Lists.": 1, - "X.": 4, - "h": 14, - "app": 5, - "snoc": 9, - "Arguments": 11, - "list123": 1, - "right": 2, - "test_repeat1": 1, - "nil_app": 1, - "rev_snoc": 1, - "snoc_with_append": 1, - "v.": 1, - "IHl1.": 1, - "prod": 3, - "Y": 38, - "Y.": 1, - "type_scope.": 1, - "combine": 3, - "lx": 4, - "ly": 4, - "tx": 2, - "tp": 2, - "xs": 7, - "plus3": 2, - "prod_curry": 3, - "Z": 11, - "prod_uncurry": 3, - "uncurry_uncurry": 1, - "curry_uncurry": 1, - "p.": 9, - "filter": 3, - "test": 4, - "countoddmembers": 1, - "fmostlytrue": 5, - "override": 5, - "ftrue": 1, - "false.": 12, - "override_example1": 1, - "override_example2": 1, - "override_example3": 1, - "override_example4": 1, - "override_example": 1, - "constfun": 1, - "unfold_example_bad": 1, - "m.": 21, - "plus3.": 1, - "override_eq": 1, - "f.": 1, - "override.": 2, - "override_neq": 1, - "x1": 11, - "x2": 3, - "k1": 5, - "k2": 4, - "x1.": 3, - "eq.": 11, - "silly4": 1, - "silly5": 1, - "sillyex1": 1, - "z": 14, - "j": 6, - "j.": 1, - "silly6": 1, - "contra.": 19, - "silly7": 1, - "sillyex2": 1, - "z.": 6, - "beq_nat_eq": 2, - "assertion": 3, - "Hl.": 1, - "IHm": 2, - "eq": 4, - "SSCase": 3, - "beq_nat_O_l": 1, - "beq_nat_O_r": 1, - "double_injective": 1, - "double": 2, - "fold_map": 2, - "fold": 1, - "total": 2, - "fold_map_correct": 1, - "fold_map.": 1, - "forallb": 4, - "andb": 8, - "existsb": 3, - "orb": 8, - "existsb2": 2, - "negb": 10, - "existsb_correct": 1, - "existsb2.": 1, - "index_okx": 1, - "mumble": 5, - "mumble.": 1, - "grumble": 3, "day": 9, + "Type": 86, + "|": 457, "monday": 5, "tuesday": 3, "wednesday": 3, @@ -17511,15 +16709,39 @@ "saturday": 3, "sunday": 2, "day.": 1, + "Definition": 46, "next_weekday": 3, + "(": 1248, + "d": 6, + ")": 1249, + "match": 70, + "with": 223, + "end.": 52, + "Example": 37, "test_next_weekday": 1, "tuesday.": 1, + "Proof.": 208, + "simpl.": 70, + "reflexivity.": 199, + "Qed.": 194, + "bool": 38, + "true": 68, + "false": 48, "bool.": 1, + "negb": 10, + "b": 89, + "andb": 8, + "b1": 35, + "b2": 23, + "orb": 8, "test_orb1": 1, + "true.": 16, "test_orb2": 1, + "false.": 12, "test_orb3": 1, "test_orb4": 1, "nandb": 5, + "end": 16, "test_nandb1": 1, "test_nandb2": 1, "test_nandb3": 1, @@ -17530,37 +16752,95 @@ "test_andb32": 1, "test_andb33": 1, "test_andb34": 1, + "Module": 11, + "Playground1.": 5, + "nat": 108, + "O": 98, + "S": 186, + "-": 508, "nat.": 4, + "pred": 3, + "n": 369, "minustwo": 1, + "Fixpoint": 36, + "evenb": 5, + "oddb": 5, + ".": 433, "test_oddb1": 1, "test_oddb2": 1, + "plus": 10, + "m": 201, "mult": 3, "minus": 3, + "_": 67, "exp": 2, "base": 3, "power": 2, + "p": 81, "factorial": 2, "test_factorial1": 1, + "Notation": 39, + "x": 266, + "y": 116, + "at": 17, + "level": 11, + "left": 6, + "associativity": 7, "nat_scope.": 3, + "beq_nat": 24, + "forall": 248, + "+": 227, + "n.": 44, + "Theorem": 115, "plus_O_n": 1, + "intros": 258, "plus_1_1": 1, "mult_0_1": 1, + "*": 59, + "O.": 5, "plus_id_example": 1, + "m.": 21, + "H.": 100, + "rewrite": 241, "plus_id_exercise": 1, + "o": 25, "o.": 4, + "H": 76, "mult_0_plus": 1, "plus_O_n.": 1, "mult_1_plus": 1, "plus_1_1.": 1, "mult_1": 1, + "induction": 81, + "as": 77, + "[": 170, "plus_1_neq_0": 1, + "destruct": 94, + "]": 173, + "Case": 51, + "IHn": 12, + "plus_comm": 3, "plus_distr.": 1, + "beq_nat_refl": 3, "plus_rearrange": 1, + "q": 15, "q.": 2, + "assert": 68, + "plus_comm.": 3, "plus_swap": 2, + "p.": 9, "plus_assoc.": 4, + "H2": 12, + "H2.": 20, "plus_swap.": 2, + "<->": 31, + "IHm": 2, + "reflexivity": 16, + "Qed": 23, "mult_comm": 2, + "Proof": 12, + "0": 5, + "simpl": 116, "mult_0_r.": 4, "mult_distr": 1, "mult_1_distr.": 1, @@ -17569,12 +16849,16 @@ "zero_nbeq_S": 1, "andb_false_r": 1, "plus_ble_compat_1": 1, + "ble_nat": 6, "IHp.": 2, "S_nbeq_0": 1, "mult_1_1": 1, "plus_0_r.": 1, "all3_spec": 1, + "c": 70, "c.": 5, + "b.": 14, + "Lemma": 51, "mult_plus_1": 1, "IHm.": 1, "mult_mult": 1, @@ -17582,8 +16866,11 @@ "mult_plus_1.": 1, "mult_plus_distr_r": 1, "mult_mult.": 3, + "H1": 18, "plus_assoc": 1, + "H1.": 31, "H3": 4, + "H3.": 5, "mult_assoc": 1, "mult_plus_distr_r.": 1, "bin": 9, @@ -17594,71 +16881,150 @@ "incbin": 2, "bin2un": 3, "bin_comm": 1, + "End": 15, + "Require": 17, + "Import": 11, + "List": 2, + "Multiset": 2, "PermutSetoid": 1, + "Relations": 2, "Sorting.": 1, + "Section": 4, "defs.": 2, + "Variable": 7, + "A": 113, + "Type.": 3, "leA": 25, + "relation": 19, + "A.": 6, + "eqA": 29, + "Let": 8, "gtA": 1, + "y.": 15, + "Hypothesis": 7, "leA_dec": 4, + "{": 39, + "}": 35, + "eqA_dec": 26, "leA_refl": 1, "leA_trans": 2, + "z": 14, + "z.": 6, "leA_antisym": 1, + "Hint": 9, + "Resolve": 5, "leA_refl.": 1, "Immediate": 1, "leA_antisym.": 1, + "emptyBag": 4, + "EmptyBag": 2, + "singletonBag": 10, + "SingletonBag": 2, + "eqA_dec.": 2, "Tree": 24, "Tree_Leaf": 9, "Tree_Node": 11, "Tree.": 1, "leA_Tree": 16, + "a": 207, + "t": 93, "True": 1, + "T1": 25, "T2": 20, "leA_Tree_Leaf": 5, "Tree_Leaf.": 1, + ";": 375, + "auto": 73, + "datatypes.": 47, "leA_Tree_Node": 1, "G": 6, "is_heap": 18, + "Prop": 17, "nil_is_heap": 5, "node_is_heap": 7, "invert_heap": 3, + "/": 41, "T2.": 1, + "inversion": 104, "is_heap_rect": 1, + "P": 32, + "T": 49, + "T.": 9, + "simple": 7, "PG": 2, "PD": 2, "PN.": 2, + "elim": 21, "H4": 7, + "intros.": 27, + "apply": 340, "X0": 2, "is_heap_rec": 1, + "Set": 4, + "X": 191, "low_trans": 3, "merge_lem": 3, + "l1": 89, + "l2": 73, + "list": 78, "merge_exist": 5, + "l": 379, "Sorted": 5, + "meq": 15, + "list_contents": 30, + "munion": 18, "HdRel": 4, + "l2.": 8, + "Morphisms.": 2, + "Instance": 7, + "Equivalence": 2, "@meq": 4, + "constructor": 6, "red.": 1, "meq_trans.": 1, "Defined.": 1, + "Proper": 5, "@munion": 1, + "now": 24, "meq_congr.": 1, "merge": 5, "fix": 2, + "l1.": 5, + "rename": 2, + "into": 2, + "l.": 26, + "revert": 5, + "H0.": 24, + "a0": 15, + "l0": 7, "Sorted_inv": 2, + "in": 221, + "H0": 16, + "clear": 7, "merge0.": 2, + "using": 18, "cons_sort": 2, "cons_leA": 2, "munion_ass.": 2, "cons_leA.": 2, "@HdRel_inv": 2, + "trivial": 15, "merge0": 1, "setoid_rewrite": 2, "munion_ass": 1, "munion_comm.": 2, + "repeat": 11, "munion_comm": 1, "contents": 12, + "multiset": 2, + "t1": 48, + "t2": 51, "equiv_Tree": 1, "insert_spec": 3, "insert_exist": 4, "insert": 2, + "unfold": 58, + "T0": 2, "treesort_twist1": 1, "T3": 2, "HeapT3": 1, @@ -17669,12 +17035,17 @@ "build_heap": 3, "heap_exist": 3, "list_to_heap": 2, + "nil": 46, + "exact": 4, "nil_is_heap.": 1, + "i": 11, + "meq_trans": 10, "meq_right": 2, "meq_sym": 2, "flat_spec": 3, "flat_exist": 3, "heap_to_list": 2, + "h": 14, "s1": 20, "i1": 15, "m1": 1, @@ -17684,76 +17055,13 @@ "meq_congr": 1, "munion_rotate.": 1, "treesort": 1, + "&": 21, + "permutation": 43, + "intro": 27, "permutation.": 1, - "Logic.": 1, - "Prop.": 1, - "next_nat_partial_function": 1, - "next_nat.": 1, - "Q.": 2, - "le_not_a_partial_function": 1, - "le": 1, - "Nonsense.": 4, - "le_n.": 6, - "le_S.": 4, - "total_relation_not_partial_function": 1, - "total_relation": 1, - "total_relation1.": 2, - "empty_relation_not_partial_funcion": 1, - "empty_relation.": 1, - "reflexive": 5, - "le_reflexive": 1, - "le.": 4, - "reflexive.": 1, - "transitive": 8, - "le_trans": 4, - "Hnm": 3, - "Hmo.": 4, - "Hnm.": 3, - "IHHmo.": 1, - "lt_trans": 4, - "lt.": 2, - "transitive.": 1, - "le_S": 6, - "Hm": 1, - "le_Sn_le": 2, - "<=>": 12, - "le_S_n": 2, - "Sn_le_Sm__n_le_m.": 1, - "le_Sn_n": 5, - "not": 1, - "TODO": 1, - "Hmo": 1, - "symmetric": 2, - "antisymmetric": 3, - "le_antisymmetric": 1, - "Sn_le_Sm__n_le_m": 2, - "IHb": 1, - "equivalence": 1, - "order": 2, - "preorder": 1, - "le_order": 1, - "order.": 1, - "le_reflexive.": 1, - "le_antisymmetric.": 1, - "le_trans.": 1, - "clos_refl_trans": 8, - "rt_step": 1, - "rt_refl": 1, - "rt_trans": 3, - "next_nat_closure_is_le": 1, - "next_nat": 1, - "rt_refl.": 2, - "IHle.": 1, - "rt_step.": 2, - "nn.": 1, - "IHclos_refl_trans1.": 2, - "IHclos_refl_trans2.": 2, - "rsc_refl": 1, - "rsc_step": 4, - "r.": 3, - "IHrefl_step_closure": 1, - "rtc_rsc_coincide": 1, - "IHrefl_step_closure.": 1, + "exists": 60, + "Export": 10, + "SfLib.": 2, "AExp.": 2, "aexp": 30, "ANum": 18, @@ -17770,6 +17078,9 @@ "BAnd": 10, "bexp.": 1, "aeval": 46, + "e": 53, + "a1": 56, + "a2": 62, "test_aeval1": 1, "beval": 16, "optimize_0plus": 15, @@ -17777,13 +17088,22 @@ "e1": 58, "test_optimize_0plus": 1, "optimize_0plus_sound": 4, + "e.": 15, "e1.": 1, + "SCase": 24, + "SSCase": 3, "IHe2.": 10, "IHe1.": 11, "aexp_cases": 3, + "try": 17, "IHe1": 6, "IHe2": 6, "optimize_0plus_all": 2, + "Tactic": 9, + "tactic": 9, + "first": 18, + "ident": 9, + "Case_aux": 38, "optimize_0plus_all_sound": 1, "bexp_cases": 4, "optimize_and": 5, @@ -17793,9 +17113,13 @@ "aevalR": 18, "E_Anum": 1, "E_APlus": 2, + "n1": 45, + "n2": 41, "E_AMinus": 2, "E_AMult": 2, + "Reserved": 4, "E_ANum": 1, + "where": 6, "bevalR": 11, "E_BTrue": 1, "E_BFalse": 1, @@ -17804,31 +17128,49 @@ "E_BNot": 1, "E_BAnd": 1, "aeval_iff_aevalR": 9, + "split.": 17, + "subst": 7, + "generalize": 13, + "dependent": 6, "IHa1": 1, "IHa2": 1, "beval_iff_bevalR": 1, + "*.": 110, + "subst.": 43, "IHbevalR": 1, "IHbevalR1": 1, "IHbevalR2": 1, + "a.": 6, + "constructor.": 16, + "<": 76, + "remember": 12, "IHa.": 1, "IHa1.": 1, "IHa2.": 1, "silly_presburger_formula": 1, + "<=>": 12, "3": 2, + "omega": 7, + "Id": 7, + "id": 7, "id.": 1, + "beq_id": 14, "id1": 2, "id2": 2, "beq_id_refl": 1, "i.": 2, "beq_nat_refl.": 1, + "beq_id_eq": 4, "i2.": 8, "i1.": 3, + "beq_nat_eq": 2, "beq_id_false_not_eq": 1, "C.": 3, "n0": 5, "beq_false_not_eq": 1, "not_eq_beq_id_false": 1, "not_eq_beq_false.": 1, + "beq_nat_sym": 2, "AId": 4, "com_cases": 1, "SKIP": 5, @@ -17854,25 +17196,34 @@ "E_IfFalse": 1, "assignment": 1, "command": 2, + "if": 10, "st1": 2, "IHi1": 3, "Heqst1": 1, "Hceval.": 4, "Hceval": 2, + "assumption.": 61, "bval": 2, "ceval_step": 3, + "Some": 21, "ceval_step_more": 7, + "x1.": 3, + "omega.": 7, "x2.": 2, "IHHce.": 2, "%": 3, "IHHce1.": 1, "IHHce2.": 1, + "x0": 14, "plus2": 1, "nx": 3, + "Y": 38, "ny": 2, "XtimesYinZ": 1, + "Z": 11, "ny.": 1, "loop": 2, + "contra.": 19, "loopdef.": 1, "Heqloopdef.": 8, "contra1.": 1, @@ -17891,6 +17242,8 @@ "noWhilesAss.": 1, "noWhilesSeq.": 1, "IHc1.": 2, + "auto.": 47, + "eauto": 10, "andb_true_elim1": 4, "IHc2.": 2, "andb_true_elim2": 4, @@ -17903,10 +17256,17 @@ "IHc1": 2, "IHc2": 2, "H5.": 1, + "x1": 11, + "r": 11, + "r.": 3, + "symmetry": 4, "Heqr.": 1, + "H4.": 2, + "s": 13, "Heqr": 3, "H8.": 1, "H10": 1, + "assumption": 10, "beval_short_circuit": 5, "beval_short_circuit_eqv": 1, "sinstr": 8, @@ -17919,12 +17279,14 @@ "s_execute": 21, "stack": 7, "prog": 2, + "cons": 26, "al": 3, "bl": 3, "s_execute1": 1, "empty_state": 2, "s_execute2": 1, "s_compile": 36, + "v": 28, "s_compile1": 1, "execute_theorem": 1, "other": 20, @@ -17943,37 +17305,54 @@ "eq_nat_dec.": 1, "Scheme": 1, "le_ind": 1, + "replace": 4, "le_n": 4, + "fun": 17, "refl_equal": 4, "pattern": 2, "case": 2, + "trivial.": 14, "contradiction": 8, + "le_Sn_n": 5, + "le_S": 6, + "Heq": 8, "m0": 1, "HeqS": 3, + "injection": 4, "HeqS.": 2, "eq_rect_eq_nat.": 1, "IHp": 2, "dep_pair_intro": 2, + "Hx": 20, + "Hy": 14, "<=n),>": 1, "x=": 1, "exist": 7, + "Hy.": 3, "Heq.": 6, "le_uniqueness_proof": 1, "Hy0": 1, "card": 2, + "f": 108, "card_interval": 1, "<=n}>": 1, "proj1_sig": 1, "proj2_sig": 1, + "Hp": 5, "Hq": 3, "Hpq.": 1, "Hmn.": 1, "Hmn": 1, "interval_dec": 1, + "left.": 3, "dep_pair_intro.": 3, + "right.": 9, + "discriminate": 3, + "le_Sn_le": 2, "eq_S.": 1, "Hneq.": 2, "card_inj_aux": 1, + "g": 6, "False.": 1, "Hfbound": 1, "Hfinj": 1, @@ -17982,8 +17361,14 @@ "Hfx": 2, "le_n_O_eq.": 2, "Hfbound.": 2, + "Hx.": 5, + "le_lt_dec": 9, "xSn": 21, + "then": 9, + "else": 9, + "is": 4, "bounded": 1, + "injective": 6, "Hlefx": 1, "Hgefx": 1, "Hlefy": 1, @@ -18013,10 +17398,13 @@ "Heqx": 4, "Hle.": 1, "le_not_lt": 1, + "lt_trans": 4, "lt_n_Sn.": 1, "Hlt.": 1, "lt_irrefl": 2, "lt_le_trans": 1, + "pose": 2, + "let": 3, "Hneqx": 1, "Hneqy": 1, "Heqg": 1, @@ -18029,7 +17417,622 @@ "<=m}>": 1, "card_inj": 1, "interval_dec.": 1, - "card_interval.": 2 + "card_interval.": 2, + "Basics.": 2, + "NatList.": 2, + "natprod": 5, + "pair": 7, + "natprod.": 1, + "fst": 3, + "snd": 3, + "swap_pair": 1, + "surjective_pairing": 1, + "count": 7, + "remove_one": 3, + "test_remove_one1": 1, + "remove_all": 2, + "bag": 3, + "app_ass": 1, + "l3": 12, + "natlist": 7, + "l3.": 1, + "remove_decreases_count": 1, + "s.": 4, + "ble_n_Sn.": 1, + "IHs.": 2, + "natoption": 5, + "None": 9, + "natoption.": 1, + "index": 3, + "option_elim": 2, + "hd_opt": 8, + "test_hd_opt1": 2, + "None.": 2, + "test_hd_opt2": 2, + "option_elim_hd": 1, + "head": 1, + "beq_natlist": 5, + "v1": 7, + "r1": 2, + "v2": 2, + "r2": 2, + "test_beq_natlist1": 1, + "test_beq_natlist2": 1, + "beq_natlist_refl": 1, + "IHl.": 7, + "silly1": 1, + "eq1": 6, + "eq2.": 9, + "eq2": 1, + "silly2a": 1, + "eq1.": 5, + "silly_ex": 1, + "silly3": 1, + "symmetry.": 2, + "rev_exercise": 1, + "rev_involutive.": 1, + "Setoid": 1, + "Compare_dec": 1, + "ListNotations.": 1, + "Implicit": 15, + "Arguments.": 2, + "Permutation.": 2, + "Permutation": 38, + "perm_nil": 1, + "perm_skip": 1, + "Local": 7, + "Constructors": 3, + "Permutation_nil": 2, + "HF.": 3, + "@nil": 1, + "HF": 2, + "||": 1, + "Permutation_nil_cons": 1, + "discriminate.": 2, + "Permutation_refl": 1, + "Permutation_sym": 1, + "Hperm": 7, + "perm_trans": 1, + "Permutation_trans": 4, + "Logic.eq": 2, + "@Permutation": 5, + "iff": 1, + "@In": 1, + "red": 6, + "Permutation_in.": 2, + "Permutation_app_tail": 2, + "tl": 8, + "eapply": 8, + "Permutation_app_head": 2, + "app_comm_cons": 5, + "Permutation_app": 3, + "Hpermmm": 1, + "idtac": 1, + "Global": 5, + "@app": 1, + "Permutation_app.": 1, + "Permutation_add_inside": 1, + "Permutation_cons_append": 1, + "IHl": 8, + "Permutation_cons_append.": 3, + "Permutation_app_comm": 3, + "app_nil_r": 1, + "app_assoc": 2, + "Permutation_cons_app": 3, + "Permutation_middle": 2, + "Permutation_rev": 3, + "rev": 7, + "1": 1, + "@rev": 1, + "2": 1, + "Permutation_length": 2, + "length": 21, + "transitivity": 4, + "@length": 1, + "Permutation_length.": 1, + "Permutation_ind_bis": 2, + "Hnil": 1, + "Hskip": 3, + "Hswap": 2, + "Htrans.": 1, + "Htrans": 1, + "eauto.": 7, + "Ltac": 1, + "break_list": 5, + "Permutation_nil_app_cons": 1, + "l4": 3, + "P.": 5, + "IH": 3, + "Permutation_middle.": 3, + "perm_swap.": 2, + "perm_swap": 1, + "eq_refl": 2, + "In_split": 1, + "Permutation_app_inv": 1, + "NoDup": 4, + "incl": 3, + "N.": 1, + "E": 7, + "Ha": 6, + "In": 6, + "N": 1, + "Hal": 1, + "Hl": 1, + "exfalso.": 1, + "NoDup_Permutation_bis": 2, + "inversion_clear": 6, + "intuition.": 2, + "Permutation_NoDup": 1, + "Permutation_map": 1, + "Hf": 15, + "injective_bounded_surjective": 1, + "set": 1, + "seq": 2, + "map": 4, + "x.": 3, + "in_map_iff.": 2, + "in_seq": 4, + "arith": 4, + "NoDup_cardinal_incl": 1, + "injective_map_NoDup": 2, + "seq_NoDup": 1, + "map_length": 1, + "by": 7, + "in_map_iff": 1, + "split": 14, + "nat_bijection_Permutation": 1, + "BD.": 1, + "seq_NoDup.": 1, + "map_length.": 1, + "Injection": 1, + "Permutation_alt": 1, + "Alternative": 1, + "characterization": 1, + "of": 4, + "via": 1, + "nth_error": 7, + "and": 1, + "nth": 2, + "adapt": 4, + "adapt_injective": 1, + "adapt.": 2, + "EQ.": 2, + "LE": 11, + "LT": 14, + "eq_add_S": 2, + "Hf.": 1, + "Lt.le_lt_or_eq": 3, + "LE.": 3, + "EQ": 8, + "lt": 3, + "LT.": 5, + "Lt.S_pred": 3, + "Lt.lt_not_le": 2, + "adapt_ok": 2, + "nth_error_app1": 1, + "nth_error_app2": 1, + "arith.": 8, + "Minus.minus_Sn_m": 1, + "Permutation_nth_error": 2, + "IHP": 2, + "IHP2": 1, + "Hg": 2, + "E.": 2, + "L12": 2, + "app_length.": 2, + "plus_n_Sm.": 1, + "adapt_injective.": 1, + "nth_error_None": 4, + "Hn": 1, + "Hf2": 1, + "Hf3": 2, + "Lt.le_or_lt": 1, + "Lt.lt_irrefl": 2, + "Lt.lt_le_trans": 2, + "Hf1": 1, + "do": 4, + "congruence.": 1, + "Permutation_alt.": 1, + "Permutation_app_swap": 1, + "only": 3, + "parsing": 3, + "Omega": 1, + "SetoidList.": 1, + "nil.": 2, + "..": 4, + "Permut.": 1, + "eqA_equiv": 1, + "eqA.": 1, + "list_contents_app": 5, + "permut_refl": 1, + "permut_sym": 4, + "permut_trans": 5, + "permut_cons_eq": 3, + "meq_left": 1, + "meq_singleton": 1, + "permut_cons": 5, + "permut_app": 1, + "specialize": 6, + "a0.": 1, + "decide": 1, + "permut_add_inside_eq": 1, + "permut_add_cons_inside": 3, + "permut_add_inside": 1, + "permut_middle": 1, + "permut_refl.": 5, + "permut_sym_app": 1, + "permut_rev": 1, + "permut_add_cons_inside.": 1, + "app_nil_end": 1, + "results": 1, + "permut_conv_inv": 1, + "plus_reg_l.": 1, + "permut_app_inv1": 1, + "list_contents_app.": 1, + "plus_reg_l": 1, + "multiplicity": 6, + "Fact": 3, + "if_eqA_then": 1, + "B": 6, + "if_eqA_refl": 3, + "decide_left": 1, + "if_eqA": 1, + "contradict": 3, + "A1": 2, + "if_eqA_rewrite_r": 1, + "A2": 4, + "Hxx": 1, + "multiplicity_InA": 4, + "InA": 8, + "multiplicity_InA_O": 2, + "multiplicity_InA_S": 1, + "multiplicity_NoDupA": 1, + "NoDupA": 3, + "NEQ": 1, + "compatible": 1, + "permut_InA_InA": 3, + "multiplicity_InA.": 1, + "meq.": 2, + "permut_cons_InA": 3, + "permut_nil": 3, + "Abs": 2, + "permut_length_1": 1, + "permut_length_2": 1, + "permut_length_1.": 2, + "@if_eqA_rewrite_l": 2, + "permut_length": 1, + "InA_split": 1, + "h2": 1, + "plus_n_Sm": 1, + "f_equal.": 1, + "app_length": 1, + "IHl1": 1, + "permut_remove_hd": 1, + "f_equal": 1, + "if_eqA_rewrite_l": 1, + "NoDupA_equivlistA_permut": 1, + "Equivalence_Reflexive.": 1, + "change": 1, + "Equivalence_Reflexive": 1, + "Forall2": 2, + "permutation_Permutation": 1, + "Forall2.": 1, + "proof": 1, + "IHA": 2, + "Forall2_app_inv_r": 1, + "Hl1": 1, + "Hl2": 1, + "Forall2_app": 1, + "Forall2_cons": 1, + "Permutation_impl_permutation": 1, + "permut_eqA": 1, + "Permut_permut.": 1, + "permut_right": 1, + "permut_tran": 1, + "Lists.": 1, + "X.": 4, + "app": 5, + "snoc": 9, + "Arguments": 11, + "list123": 1, + "right": 2, + "test_repeat1": 1, + "nil_app": 1, + "rev_snoc": 1, + "snoc_with_append": 1, + "v.": 1, + "IHl1.": 1, + "prod": 3, + "Y.": 1, + "type_scope.": 1, + "combine": 3, + "lx": 4, + "ly": 4, + "tx": 2, + "ty": 7, + "tp": 2, + "option": 6, + "xs": 7, + "plus3": 2, + "prod_curry": 3, + "prod_uncurry": 3, + "uncurry_uncurry": 1, + "curry_uncurry": 1, + "filter": 3, + "test": 4, + "countoddmembers": 1, + "k": 7, + "fmostlytrue": 5, + "override": 5, + "ftrue": 1, + "override_example1": 1, + "override_example2": 1, + "override_example3": 1, + "override_example4": 1, + "override_example": 1, + "constfun": 1, + "unfold_example_bad": 1, + "plus3.": 1, + "override_eq": 1, + "f.": 1, + "override.": 2, + "override_neq": 1, + "x2": 3, + "k1": 5, + "k2": 4, + "eq.": 11, + "silly4": 1, + "silly5": 1, + "sillyex1": 1, + "j": 6, + "j.": 1, + "silly6": 1, + "silly7": 1, + "sillyex2": 1, + "assertion": 3, + "Hl.": 1, + "eq": 4, + "beq_nat_O_l": 1, + "beq_nat_O_r": 1, + "double_injective": 1, + "double": 2, + "fold_map": 2, + "fold": 1, + "total": 2, + "fold_map_correct": 1, + "fold_map.": 1, + "forallb": 4, + "existsb": 3, + "existsb2": 2, + "existsb_correct": 1, + "existsb2.": 1, + "index_okx": 1, + "mumble": 5, + "mumble.": 1, + "grumble": 3, + "Logic.": 1, + "Prop.": 1, + "partial_function": 6, + "R": 54, + "y1": 6, + "y2": 5, + "y2.": 3, + "next_nat_partial_function": 1, + "next_nat.": 1, + "partial_function.": 5, + "Q.": 2, + "le_not_a_partial_function": 1, + "le": 1, + "not.": 3, + "Nonsense.": 4, + "le_n.": 6, + "le_S.": 4, + "total_relation_not_partial_function": 1, + "total_relation": 1, + "total_relation1.": 2, + "empty_relation_not_partial_funcion": 1, + "empty_relation.": 1, + "reflexive": 5, + "le_reflexive": 1, + "le.": 4, + "reflexive.": 1, + "transitive": 8, + "le_trans": 4, + "Hnm": 3, + "Hmo.": 4, + "Hnm.": 3, + "IHHmo.": 1, + "lt.": 2, + "transitive.": 1, + "Hm": 1, + "le_S_n": 2, + "Sn_le_Sm__n_le_m.": 1, + "not": 1, + "TODO": 1, + "Hmo": 1, + "symmetric": 2, + "antisymmetric": 3, + "le_antisymmetric": 1, + "Sn_le_Sm__n_le_m": 2, + "IHb": 1, + "equivalence": 1, + "order": 2, + "preorder": 1, + "le_order": 1, + "order.": 1, + "le_reflexive.": 1, + "le_antisymmetric.": 1, + "le_trans.": 1, + "clos_refl_trans": 8, + "rt_step": 1, + "rt_refl": 1, + "rt_trans": 3, + "next_nat_closure_is_le": 1, + "next_nat": 1, + "rt_refl.": 2, + "IHle.": 1, + "rt_step.": 2, + "nn.": 1, + "IHclos_refl_trans1.": 2, + "IHclos_refl_trans2.": 2, + "refl_step_closure": 11, + "rsc_refl": 1, + "rsc_step": 4, + "rsc_R": 2, + "rsc_refl.": 4, + "rsc_trans": 4, + "IHrefl_step_closure": 1, + "rtc_rsc_coincide": 1, + "IHrefl_step_closure.": 1, + "Imp.": 1, + "Relations.": 1, + "tm": 43, + "tm_const": 45, + "tm_plus": 30, + "tm.": 3, + "SimpleArith0.": 2, + "eval": 8, + "SimpleArith1.": 2, + "E_Const": 2, + "E_Plus": 2, + "test_step_1": 1, + "ST_Plus1.": 2, + "ST_PlusConstConst.": 3, + "test_step_2": 1, + "ST_Plus2.": 2, + "step_deterministic": 1, + "step.": 3, + "Hy1": 2, + "Hy2.": 2, + "step_cases": 4, + "Hy2": 3, + "SCase.": 3, + "Hy1.": 5, + "IHHy1": 2, + "SimpleArith2.": 1, + "value": 25, + "v_const": 4, + "step": 9, + "ST_PlusConstConst": 3, + "ST_Plus1": 2, + "strong_progress": 2, + "value_not_same_as_normal_form": 2, + "normal_form": 3, + "t.": 4, + "normal_form.": 2, + "v_funny.": 1, + "Temp1.": 1, + "Temp2.": 1, + "ST_Funny": 1, + "Temp3.": 1, + "Temp4.": 2, + "tm_true": 8, + "tm_false": 5, + "tm_if": 10, + "v_true": 1, + "v_false": 1, + "tm_false.": 3, + "ST_IfTrue": 1, + "ST_IfFalse": 1, + "ST_If": 1, + "t3": 6, + "bool_step_prop4": 1, + "bool_step_prop4_holds": 1, + "bool_step_prop4.": 2, + "ST_ShortCut.": 1, + "IHt1.": 1, + "t2.": 4, + "t3.": 2, + "ST_If.": 2, + "Temp5.": 1, + "stepmany": 4, + "normalizing": 1, + "IHt2": 3, + "H11": 2, + "H12": 2, + "H21": 3, + "H22": 2, + "nf_same_as_value": 3, + "H12.": 1, + "H22.": 1, + "H11.": 1, + "stepmany_congr_1": 1, + "stepmany_congr2": 1, + "eval__value": 1, + "HE.": 1, + "eval_cases": 1, + "HE": 1, + "v_const.": 1, + "Sorted.": 1, + "Mergesort.": 1, + "STLC.": 1, + "ty_Bool": 10, + "ty_arrow": 7, + "ty.": 2, + "tm_var": 6, + "tm_app": 7, + "tm_abs": 9, + "idB": 2, + "idBB": 2, + "idBBBB": 2, + "v_abs": 1, + "t_true": 1, + "t_false": 1, + "value.": 1, + "ST_App2": 1, + "step_example3": 1, + "idB.": 1, + "rsc_step.": 2, + "ST_App1.": 2, + "ST_AppAbs.": 3, + "v_abs.": 2, + "context": 1, + "partial_map": 4, + "Context.": 1, + "empty": 3, + "extend": 1, + "Gamma": 10, + "has_type": 4, + "appears_free_in": 1, + "S.": 1, + "HT": 1, + "T_Var.": 1, + "extend_neq": 1, + "Heqe.": 3, + "T_Abs.": 1, + "context_invariance...": 2, + "Hafi.": 2, + "extend.": 2, + "IHt.": 1, + "Coiso1.": 2, + "Coiso2.": 3, + "HeqCoiso1.": 1, + "HeqCoiso2.": 1, + "beq_id_false_not_eq.": 1, + "ex_falso_quodlibet.": 1, + "preservation": 1, + "HT.": 1, + "substitution_preserves_typing": 1, + "T11.": 4, + "HT1.": 1, + "T_App": 2, + "IHHT1.": 1, + "IHHT2.": 1, + "tm_cases": 1, + "Ht": 1, + "Ht.": 3, + "IHt1": 2, + "T11": 2, + "ST_App2.": 1, + "ty_Bool.": 1, + "IHt3": 1, + "ST_IfTrue.": 1, + "ST_IfFalse.": 1, + "types_unique": 1, + "T12": 2, + "IHhas_type.": 1, + "IHhas_type1.": 1, + "IHhas_type2.": 1 }, "Creole": { "Creole": 6, @@ -18121,32 +18124,64 @@ "distribution.": 1 }, "Crystal": { + "SHEBANG#!bin/crystal": 2, + "require": 2, + "describe": 2, + "do": 26, + "it": 21, + "run": 14, + "(": 201, + ")": 201, + ".to_i.should": 11, + "eq": 16, + "end": 135, + ".to_f32.should": 2, + ".to_b.should": 1, + "be_true": 1, + "assert_type": 7, + "{": 7, + "int32": 8, + "}": 7, + "union_of": 1, + "char": 1, + "result": 3, + "types": 3, + "[": 9, + "]": 9, + "mod": 1, + "result.program": 1, + "foo": 3, + "mod.types": 1, + "as": 4, + "NonGenericClassType": 1, + "foo.instance_vars": 1, + ".type.should": 3, + "mod.int32": 1, + "GenericClassType": 2, + "foo_i32": 4, + "foo.instantiate": 2, + "of": 3, + "Type": 2, + "|": 8, + "ASTNode": 4, + "foo_i32.lookup_instance_var": 2, "module": 1, "Crystal": 1, "class": 2, - "ASTNode": 4, "def": 84, "transform": 81, - "(": 201, "transformer": 1, - ")": 201, "transformer.before_transform": 1, "self": 77, "node": 164, "transformer.transform": 1, "transformer.after_transform": 1, - "end": 135, "Transformer": 1, "before_transform": 1, "after_transform": 1, "Expressions": 2, "exps": 6, - "[": 9, - "]": 9, - "of": 3, "node.expressions.each": 1, - "do": 26, - "|": 8, "exp": 3, "new_exp": 3, "exp.transform": 3, @@ -18266,10 +18301,7 @@ "output.transform": 1, "Block": 1, "node.args.map": 1, - "{": 7, - "as": 4, "Var": 2, - "}": 7, "FunLiteral": 1, "node.def.body": 1, "node.def.body.transform": 1, @@ -18336,36 +18368,7 @@ "Alias": 1, "TupleIndexer": 1, "Attribute": 1, - "exps.map": 1, - "SHEBANG#!bin/crystal": 2, - "require": 2, - "describe": 2, - "it": 21, - "run": 14, - ".to_i.should": 11, - "eq": 16, - ".to_f32.should": 2, - ".to_b.should": 1, - "be_true": 1, - "assert_type": 7, - "int32": 8, - "union_of": 1, - "char": 1, - "result": 3, - "types": 3, - "mod": 1, - "result.program": 1, - "foo": 3, - "mod.types": 1, - "NonGenericClassType": 1, - "foo.instance_vars": 1, - ".type.should": 3, - "mod.int32": 1, - "GenericClassType": 2, - "foo_i32": 4, - "foo.instantiate": 2, - "Type": 2, - "foo_i32.lookup_instance_var": 2 + "exps.map": 1 }, "Cuda": { "__global__": 2, @@ -18445,6 +18448,122 @@ "cudaDeviceReset": 1, "return": 1 }, + "Cycript": { + "(": 12, + "function": 2, + "utils": 2, + ")": 12, + "{": 8, + "//": 4, + "Load": 1, + "C": 2, + "functions": 3, + "declared": 1, + "in": 2, + "utils.loadFuncs": 1, + "var": 6, + "shouldLoadCFuncs": 2, + "true": 2, + ";": 21, + "Expose": 2, + "the": 1, + "to": 4, + "cycript": 2, + "s": 2, + "global": 1, + "scope": 1, + "shouldExposeConsts": 2, + "defined": 1, + "here": 1, + "t": 1, + "be": 2, + "found": 2, + "with": 1, + "dlsym": 1, + "Failed": 1, + "load": 1, + "mach_vm_address_t": 1, + "string": 4, + "@encode": 2, + "infinite": 1, + "*": 1, + "length": 1, + "[": 8, + "object": 1, + "Struct": 1, + "]": 8, + "%": 8, + "@": 3, + "<%@:>": 1, + "0x": 1, + "+": 3, + "-": 2, + "printf": 1, + ".3s": 1, + "d": 2, + "c": 5, + "float": 1, + "f": 1, + "n": 1, + "foo": 2, + "barrrr": 1, + "Args": 1, + "needs": 1, + "an": 1, + "array": 1, + "number": 1, + "Function": 1, + "not": 1, + "foobar": 2, + "strdup": 2, + "pipe": 1, + "write": 1, + "close": 2, + "int": 1, + "a": 1, + "short": 1, + "b": 1, + "char": 1, + "uint64_t": 1, + "double": 1, + "e": 1, + "struct": 1, + "}": 9, + "return": 1, + "new": 1, + "Type": 1, + "typeStr": 1, + "Various": 1, + "constants": 1, + "utils.constants": 2, + "VM_PROT_NONE": 1, + "VM_PROT_READ": 1, + "VM_PROT_WRITE": 1, + "VM_PROT_EXECUTE": 1, + "VM_PROT_NO_CHANGE": 1, + "VM_PROT_COPY": 1, + "VM_PROT_WANTS_COPY": 1, + "VM_PROT_IS_MASK": 1, + "c.VM_PROT_DEFAULT": 1, + "c.VM_PROT_READ": 2, + "|": 3, + "c.VM_PROT_WRITE": 2, + "c.VM_PROT_ALL": 1, + "c.VM_PROT_EXECUTE": 1, + "if": 3, + "for": 2, + "k": 3, + "Cycript.all": 2, + "shouldExposeFuncs": 1, + "i": 4, + "<": 1, + "funcsToExpose.length": 1, + "name": 3, + "funcsToExpose": 1, + "utils.loadfuncs": 1, + "shouldExposeCFuncs": 1, + "exports": 1 + }, "DM": { "#define": 4, "PI": 6, @@ -18604,43 +18723,20 @@ "module.exports": 1 }, "E": { - "pragma.syntax": 1, - "(": 65, - ")": 64, - "to": 27, - "send": 1, - "message": 4, - "{": 57, - "when": 2, - "friend": 4, - "<-receive(message))>": 1, - "chatUI.showMessage": 4, - "}": 57, - "catch": 2, - "prob": 2, - "receive": 1, - "receiveFriend": 2, - "friendRcvr": 2, - "bind": 2, - "save": 1, - "file": 3, - "file.setText": 1, - "makeURIFromObject": 1, - "chatController": 2, - "load": 1, - "getObjectFromURI": 1, - "file.getText": 1, - "<": 1, - "-": 2, "def": 24, "makeVehicle": 3, + "(": 65, "self": 1, + ")": 64, + "{": 57, "vehicle": 2, + "to": 27, "milesTillEmpty": 1, "return": 19, "self.milesPerGallon": 1, "*": 1, "self.getFuelRemaining": 1, + "}": 57, "makeCar": 4, "var": 6, "fuelRemaining": 4, @@ -18723,14 +18819,6 @@ "false": 1, "__getAllegedType": 1, "null.__getAllegedType": 1, - "tempVow": 2, - "#...use": 1, - "#....": 1, - "report": 1, - "problem": 1, - "finally": 1, - "#....log": 1, - "event": 1, "#File": 1, "objects": 1, "hardwired": 1, @@ -18742,6 +18830,7 @@ "#Using": 2, "a": 4, "variable": 1, + "file": 3, "filePath": 2, "file3": 1, "": 1, @@ -18755,7 +18844,37 @@ "file5": 1, "": 1, "file6": 1, - "": 1 + "": 1, + "pragma.syntax": 1, + "send": 1, + "message": 4, + "when": 2, + "friend": 4, + "<-receive(message))>": 1, + "chatUI.showMessage": 4, + "catch": 2, + "prob": 2, + "receive": 1, + "receiveFriend": 2, + "friendRcvr": 2, + "bind": 2, + "save": 1, + "file.setText": 1, + "makeURIFromObject": 1, + "chatController": 2, + "load": 1, + "getObjectFromURI": 1, + "file.getText": 1, + "<": 1, + "-": 2, + "tempVow": 2, + "#...use": 1, + "#....": 1, + "report": 1, + "problem": 1, + "finally": 1, + "#....log": 1, + "event": 1 }, "ECL": { "#option": 1, @@ -19339,85 +19458,53 @@ "radius=": 12 }, "Elm": { - "data": 1, - "Tree": 3, - "a": 5, - "Node": 8, - "(": 119, - ")": 116, - "|": 3, - "Empty": 8, - "empty": 2, - "singleton": 2, - "v": 8, - "insert": 4, - "x": 13, - "tree": 7, - "case": 5, - "of": 7, - "-": 11, - "y": 7, - "left": 7, - "right": 8, - "if": 2, - "then": 2, - "else": 2, - "<": 1, - "fromList": 3, - "xs": 9, - "foldl": 1, - "depth": 5, - "+": 14, - "max": 1, - "map": 11, - "f": 8, - "t1": 2, - "[": 31, - "]": 31, - "t2": 3, - "main": 3, - "flow": 4, - "down": 3, - "display": 4, - "name": 6, - "text": 4, - ".": 9, - "monospace": 1, - "toText": 6, - "concat": 1, - "show": 2, - "asText": 1, - "qsort": 4, - "lst": 6, - "filter": 2, - "<)x)>": 1, "import": 3, "List": 1, + "(": 119, "intercalate": 2, "intersperse": 3, + ")": 116, "Website.Skeleton": 1, "Website.ColorScheme": 1, "addFolder": 4, "folder": 2, + "lst": 6, "let": 2, "add": 2, + "x": 13, + "y": 7, + "+": 14, "in": 2, + "f": 8, "n": 2, + "xs": 9, + "map": 11, "elements": 2, + "[": 31, + "]": 31, "functional": 2, "reactive": 2, + "-": 11, "example": 3, + "name": 6, "loc": 2, "Text.link": 1, + "toText": 6, "toLinks": 2, "title": 2, "links": 2, + "flow": 4, + "right": 8, "width": 3, + "text": 4, "italic": 1, "bold": 2, + ".": 9, "Text.color": 1, "accent4": 1, "insertSpace": 2, + "case": 5, + "of": 7, "{": 1, "spacer": 2, ";": 1, @@ -19425,8 +19512,10 @@ "subsection": 2, "w": 7, "info": 2, + "down": 3, "words": 2, "markdown": 1, + "|": 3, "###": 1, "Basic": 1, "Examples": 1, @@ -19435,6 +19524,7 @@ "below": 1, "focuses": 1, "on": 1, + "a": 5, "single": 1, "function": 1, "or": 1, @@ -19451,11 +19541,43 @@ "content": 2, "exampleSets": 2, "plainText": 1, + "main": 3, "lift": 1, "skeleton": 1, - "Window.width": 1 + "Window.width": 1, + "asText": 1, + "qsort": 4, + "filter": 2, + "<)x)>": 1, + "data": 1, + "Tree": 3, + "Node": 8, + "Empty": 8, + "empty": 2, + "singleton": 2, + "v": 8, + "insert": 4, + "tree": 7, + "left": 7, + "if": 2, + "then": 2, + "else": 2, + "<": 1, + "fromList": 3, + "foldl": 1, + "depth": 5, + "max": 1, + "t1": 2, + "t2": 3, + "display": 4, + "monospace": 1, + "concat": 1, + "show": 2 }, "Emacs Lisp": { + "(": 156, + "print": 1, + ")": 144, ";": 333, "ess": 48, "-": 294, @@ -19467,9 +19589,7 @@ "inferior": 13, "interaction": 1, "Copyright": 1, - "(": 156, "C": 2, - ")": 144, "Vitalie": 3, "Spinu.": 1, "Filename": 1, @@ -19770,11 +19890,155 @@ "use": 1, "classes": 1, "screws": 1, - "egrep": 1, - "print": 1 + "egrep": 1 }, "Erlang": { + "SHEBANG#!escript": 3, "%": 134, + "-": 262, + "*": 9, + "erlang": 5, + "smp": 1, + "enable": 1, + "sname": 1, + "factorial": 1, + "mnesia": 1, + "debug": 1, + "verbose": 1, + "main": 4, + "(": 236, + "[": 66, + "String": 2, + "]": 61, + ")": 230, + "try": 2, + "N": 6, + "list_to_integer": 1, + "F": 16, + "fac": 4, + "io": 5, + "format": 7, + "catch": 2, + "_": 52, + "usage": 3, + "end": 3, + ";": 56, + ".": 37, + "halt": 2, + "export": 2, + "main/1": 1, + "For": 1, + "each": 1, + "header": 1, + "file": 6, + "it": 2, + "scans": 1, + "thru": 1, + "all": 1, + "records": 1, + "and": 8, + "create": 1, + "helper": 1, + "functions": 2, + "Helper": 1, + "are": 3, + "setters": 1, + "getters": 1, + "fields": 4, + "fields_atom": 4, + "type": 6, + "module": 2, + "record_helper": 1, + "make/1": 1, + "make/2": 1, + "make": 3, + "HeaderFiles": 5, + "atom_to_list": 18, + "X": 12, + "||": 6, + "<->": 5, + "hrl": 1, + "relative": 1, + "to": 2, + "current": 1, + "dir": 1, + "OutDir": 4, + "ModuleName": 3, + "HeaderComment": 2, + "ModuleDeclaration": 2, + "+": 214, + "<": 1, + "Src": 10, + "format_src": 8, + "lists": 11, + "sort": 1, + "flatten": 6, + "read": 2, + "generate_type_default_function": 2, + "write_file": 1, + "erl": 1, + "list_to_binary": 1, + "HeaderFile": 4, + "epp": 1, + "parse_file": 1, + "of": 9, + "{": 109, + "ok": 34, + "Tree": 4, + "}": 109, + "parse": 2, + "error": 4, + "Error": 4, + "catched_error": 1, + "end.": 3, + "|": 25, + "T": 24, + "when": 29, + "length": 6, + "Type": 3, + "A": 5, + "B": 4, + "NSrc": 4, + "_Type": 1, + "Type1": 2, + "parse_record": 3, + "attribute": 1, + "record": 4, + "RecordInfo": 2, + "RecordName": 41, + "RecordFields": 10, + "if": 1, + "generate_setter_getter_function": 5, + "generate_type_function": 3, + "true": 3, + "generate_fields_function": 2, + "generate_fields_atom_function": 2, + "parse_field_name": 5, + "record_field": 9, + "atom": 9, + "FieldName": 26, + "field": 4, + "_FieldName": 2, + "ParentRecordName": 8, + "parent_field": 2, + "parse_field_name_atom": 5, + "concat": 5, + "_S": 3, + "S": 6, + "concat_ext": 4, + "parse_field": 6, + "AccFields": 6, + "AccParentFields": 6, + "case": 3, + "Field": 2, + "PField": 2, + "parse_field_atom": 4, + "zzz": 1, + "Fields": 4, + "field_atom": 1, + "to_setter_getter_function": 5, + "setter": 2, + "getter": 2, "This": 2, "is": 1, "auto": 1, @@ -19784,26 +20048,12 @@ "don": 1, "t": 1, "edit": 1, - "it": 2, - "-": 262, - "module": 2, - "(": 236, "record_utils": 1, - ")": 230, - ".": 37, "compile": 2, "export_all": 1, "include": 1, - "fields": 4, "abstract_message": 21, - "[": 66, - "]": 61, - ";": 56, "async_message": 12, - "+": 214, - "fields_atom": 4, - "lists": 11, - "flatten": 6, "clientId": 5, "destination": 5, "messageId": 5, @@ -19815,12 +20065,8 @@ "correlationIdBytes": 5, "get": 12, "Obj": 49, - "when": 29, "is_record": 25, - "{": 109, - "ok": 34, "Obj#abstract_message.body": 1, - "}": 109, "Obj#abstract_message.clientId": 1, "Obj#abstract_message.destination": 1, "Obj#abstract_message.headers": 1, @@ -19832,7 +20078,6 @@ "parent": 5, "Obj#async_message.parent": 3, "ParentProperty": 6, - "and": 8, "is_atom": 2, "set": 13, "Value": 35, @@ -19840,13 +20085,8 @@ "Obj#abstract_message": 7, "Obj#async_message": 3, "NewParentObject": 2, - "_": 52, - "type": 6, "undefined.": 1, - "SHEBANG#!escript": 3, - "*": 9, "Mode": 1, - "erlang": 5, "coding": 1, "utf": 1, "tab": 1, @@ -19880,7 +20120,6 @@ "or": 3, "without": 2, "modification": 1, - "are": 3, "permitted": 1, "provided": 2, "that": 1, @@ -19889,7 +20128,6 @@ "conditions": 3, "met": 1, "Redistributions": 2, - "of": 9, "code": 2, "must": 3, "retain": 1, @@ -19924,7 +20162,6 @@ "not": 1, "be": 1, "used": 1, - "to": 2, "endorse": 1, "promote": 1, "products": 1, @@ -19958,7 +20195,6 @@ "MERCHANTABILITY": 1, "FITNESS": 1, "FOR": 2, - "A": 5, "PARTICULAR": 1, "PURPOSE": 1, "ARE": 1, @@ -20007,26 +20243,19 @@ "POSSIBILITY": 1, "SUCH": 1, "DAMAGE.": 1, - "main": 4, "sys": 2, "RelToolConfig": 5, "target_dir": 2, "TargetDir": 14, "overlay": 2, "OverlayConfig": 4, - "file": 6, "consult": 1, "Spec": 2, "reltool": 2, "get_target_spec": 1, - "case": 3, "make_dir": 1, - "error": 4, "eexist": 1, - "io": 5, - "format": 7, "exit_code": 3, - "end": 3, "eval_target_spec": 1, "root_dir": 1, "process_overlay": 2, @@ -20038,8 +20267,6 @@ "os": 1, "cmd": 1, "io_lib": 2, - "|": 25, - "end.": 3, "boot_rel_vsn": 2, "Config": 2, "_RelToolConfig": 1, @@ -20091,124 +20318,16 @@ "mkdir": 1, "Out": 4, "Vars": 7, - "OutDir": 4, "filename": 3, "join": 3, "copy": 1, "In": 2, "InFile": 3, "OutFile": 2, - "true": 3, "filelib": 1, "is_file": 1, "ExitCode": 2, - "halt": 2, - "flush": 1, - "For": 1, - "each": 1, - "header": 1, - "scans": 1, - "thru": 1, - "all": 1, - "records": 1, - "create": 1, - "helper": 1, - "functions": 2, - "Helper": 1, - "setters": 1, - "getters": 1, - "record_helper": 1, - "export": 2, - "make/1": 1, - "make/2": 1, - "make": 3, - "HeaderFiles": 5, - "atom_to_list": 18, - "X": 12, - "||": 6, - "<->": 5, - "hrl": 1, - "relative": 1, - "current": 1, - "dir": 1, - "ModuleName": 3, - "HeaderComment": 2, - "ModuleDeclaration": 2, - "<": 1, - "Src": 10, - "format_src": 8, - "sort": 1, - "read": 2, - "generate_type_default_function": 2, - "write_file": 1, - "erl": 1, - "list_to_binary": 1, - "HeaderFile": 4, - "try": 2, - "epp": 1, - "parse_file": 1, - "Tree": 4, - "parse": 2, - "Error": 4, - "catch": 2, - "catched_error": 1, - "T": 24, - "length": 6, - "Type": 3, - "B": 4, - "NSrc": 4, - "_Type": 1, - "Type1": 2, - "parse_record": 3, - "attribute": 1, - "record": 4, - "RecordInfo": 2, - "RecordName": 41, - "RecordFields": 10, - "if": 1, - "generate_setter_getter_function": 5, - "generate_type_function": 3, - "generate_fields_function": 2, - "generate_fields_atom_function": 2, - "parse_field_name": 5, - "record_field": 9, - "atom": 9, - "FieldName": 26, - "field": 4, - "_FieldName": 2, - "ParentRecordName": 8, - "parent_field": 2, - "parse_field_name_atom": 5, - "concat": 5, - "_S": 3, - "F": 16, - "S": 6, - "concat_ext": 4, - "parse_field": 6, - "AccFields": 6, - "AccParentFields": 6, - "Field": 2, - "PField": 2, - "parse_field_atom": 4, - "zzz": 1, - "Fields": 4, - "field_atom": 1, - "to_setter_getter_function": 5, - "setter": 2, - "getter": 2, - "smp": 1, - "enable": 1, - "sname": 1, - "factorial": 1, - "mnesia": 1, - "debug": 1, - "verbose": 1, - "String": 2, - "N": 6, - "list_to_integer": 1, - "fac": 4, - "usage": 3, - "main/1": 1 + "flush": 1 }, "Forth": { "(": 88, @@ -20313,6 +20432,52 @@ "defer": 2, "name": 1, "s": 4, + "c@": 2, + "negate": 1, + "nip": 2, + "bl": 4, + "word": 9, + "ahead": 2, + "resolve": 4, + "literal": 4, + "postpone": 14, + "nonimmediate": 1, + "caddr": 1, + "C": 9, + "find": 2, + "cells": 1, + "postponers": 1, + "execute": 1, + "unresolved": 4, + "orig": 5, + "chars": 1, + "n1": 2, + "n2": 2, + "orig1": 1, + "orig2": 1, + "branch": 5, + "dodoes_code": 1, + "code": 3, + "begin": 2, + "dest": 5, + "while": 2, + "repeat": 2, + "until": 1, + "recurse": 1, + "pad": 3, + "If": 1, + "necessary": 1, + "and": 3, + "keep": 1, + "parsing.": 1, + "string": 3, + "cmove": 1, + "state": 2, + "cr": 3, + "abort": 3, + "": 1, + "Undefined": 1, + "ok": 1, "HELLO": 4, "KataDiversion": 1, "Forth": 1, @@ -20328,8 +20493,6 @@ "THEN": 10, "power": 2, "**": 2, - "n1": 2, - "n2": 2, "n1_pow_n2": 1, "SWAP": 8, "DUP": 14, @@ -20363,7 +20526,6 @@ "ADJACENT": 3, "BITS": 3, "bool": 1, - "word": 9, "uses": 1, "following": 1, "algorithm": 1, @@ -20372,7 +20534,6 @@ "X": 5, "LOG2": 1, "end": 1, - "and": 3, "OR": 1, "INVERT": 1, "maximum": 1, @@ -20402,8 +20563,6 @@ "depth": 1, "traverse": 1, "dictionary": 1, - "cr": 3, - "code": 3, "assembler": 1, "kernel": 1, "bye": 1, @@ -20413,190 +20572,244 @@ "editor": 1, "forget": 1, "reveal": 1, - "state": 2, "tools": 1, "nr": 1, "synonym": 1, "undefined": 2, - "bl": 4, - "find": 2, - "nip": 2, "defined": 1, - "postpone": 14, "invert": 1, "/cell": 2, - "cell": 2, - "c@": 2, - "negate": 1, - "ahead": 2, - "resolve": 4, - "literal": 4, - "nonimmediate": 1, - "caddr": 1, - "C": 9, - "cells": 1, - "postponers": 1, - "execute": 1, - "unresolved": 4, - "orig": 5, - "chars": 1, - "orig1": 1, - "orig2": 1, - "branch": 5, - "dodoes_code": 1, - "begin": 2, - "dest": 5, - "while": 2, - "repeat": 2, - "until": 1, - "recurse": 1, - "pad": 3, - "If": 1, - "necessary": 1, - "keep": 1, - "parsing.": 1, - "string": 3, - "cmove": 1, - "abort": 3, - "": 1, - "Undefined": 1, - "ok": 1 + "cell": 2 }, "Frege": { - "package": 2, - "examples.SwingExamples": 1, + "module": 2, + "examples.CommandLineClock": 1, "where": 39, - "import": 7, - "Java.Awt": 1, - "(": 339, - "ActionListener": 2, - ")": 345, - "Java.Swing": 1, - "main": 11, - "_": 60, - "do": 38, - "rs": 2, - "<": 84, - "-": 730, - "mapM": 3, - "Runnable.new": 1, - "[": 120, - "helloWorldGUI": 2, - "buttonDemoGUI": 2, - "celsiusConverterGUI": 2, - "]": 116, - "mapM_": 5, - "invokeLater": 1, - "println": 25, - "s": 21, - "getLine": 2, - "return": 17, - "tempTextField": 2, - "JTextField.new": 1, - "celsiusLabel": 1, - "JLabel.new": 3, - "convertButton": 1, - "JButton.new": 3, - "fahrenheitLabel": 1, - "frame": 3, - "JFrame.new": 3, - "frame.setDefaultCloseOperation": 3, - "JFrame.dispose_on_close": 3, - "frame.setTitle": 1, - "celsiusLabel.setText": 1, - "convertButton.setText": 1, - "let": 8, - "convertButtonActionPerformed": 2, - "celsius": 3, - "<->": 35, - "getText": 1, - "case": 6, - "double": 1, - "of": 32, - "Left": 5, - "fahrenheitLabel.setText": 3, - "+": 200, - "Right": 6, - "c": 33, - "show": 24, - "c*1.8": 1, - ".long": 1, - "ActionListener.new": 2, - "convertButton.addActionListener": 1, - "contentPane": 2, - "frame.getContentPane": 2, - "layout": 2, - "GroupLayout.new": 1, - "contentPane.setLayout": 1, - "TODO": 1, - "continue": 1, - "http": 3, - "//docs.oracle.com/javase/tutorial/displayCode.html": 1, - "code": 1, - "//docs.oracle.com/javase/tutorial/uiswing/examples/learn/CelsiusConverterProject/src/learn/CelsiusConverterGUI.java": 1, - "frame.pack": 3, - "frame.setVisible": 3, - "true": 16, - "label": 2, - "cp": 3, - "cp.add": 1, - "newContentPane": 2, - "JPanel.new": 1, - "b1": 11, - "JButton": 4, - "b1.setVerticalTextPosition": 1, - "SwingConstants.center": 2, - "b1.setHorizontalTextPosition": 1, - "SwingConstants.leading": 2, - "b2": 10, - "b2.setVerticalTextPosition": 1, - "b2.setHorizontalTextPosition": 1, - "b3": 7, + "data": 3, + "Date": 5, + "native": 4, + "java.util.Date": 1, "new": 9, - "Enable": 1, - "middle": 2, - "button": 1, - "setVerticalTextPosition": 1, - "SwingConstants": 2, - "center": 1, - "setHorizontalTextPosition": 1, - "leading": 1, - "setEnabled": 7, - "false": 13, - "action1": 2, - "action3": 2, - "b1.addActionListener": 1, - "b3.addActionListener": 1, - "newContentPane.add": 3, - "newContentPane.setOpaque": 1, - "frame.setContentPane": 1, + "(": 339, + ")": 345, + "-": 730, + "IO": 13, + "MutableIO": 1, + "toString": 2, + "Mutable": 1, + "s": 21, + "ST": 1, + "String": 9, + "d.toString": 1, + "action": 2, + "to": 13, + "give": 2, + "us": 1, + "the": 20, + "current": 4, + "time": 1, + "as": 33, + "do": 38, + "d": 3, + "<->": 35, + "java": 5, + "lang": 2, + "Thread": 2, + "sleep": 4, + "takes": 1, + "a": 99, + "long": 4, + "and": 14, + "returns": 2, + "nothing": 2, + "but": 2, + "may": 1, + "throw": 1, + "an": 6, + "InterruptedException": 4, + "This": 2, + "is": 24, + "without": 1, + "doubt": 1, + "public": 1, + "static": 1, + "void": 2, + "millis": 1, + "throws": 4, + "Encoded": 1, + "in": 22, + "Frege": 1, + "argument": 1, + "type": 8, + "Long": 3, + "result": 11, + "does": 2, + "defined": 1, + "frege": 1, + "Lang": 1, + "main": 11, + "args": 2, + "forever": 1, + "print": 25, + "stdout.flush": 1, + "Thread.sleep": 4, + "examples.Concurrent": 1, + "import": 7, + "System.Random": 1, + "Java.Net": 1, + "URL": 2, + "Control.Concurrent": 1, + "C": 6, + "main2": 1, + "m": 2, + "<": 84, + "newEmptyMVar": 1, + "forkIO": 11, + "m.put": 3, + "replicateM_": 3, + "c": 33, + "m.take": 1, + "println": 25, + "example1": 1, + "putChar": 2, + "example2": 2, + "getLine": 2, + "case": 6, + "of": 32, + "Right": 6, + "n": 38, + "setReminder": 3, + "Left": 5, + "_": 60, + "+": 200, + "show": 24, + "L*n": 1, + "table": 1, + "mainPhil": 2, + "[": 120, + "fork1": 3, + "fork2": 3, + "fork3": 3, + "fork4": 3, + "fork5": 3, + "]": 116, + "mapM": 3, + "MVar": 3, + "1": 2, + "5": 1, + "philosopher": 7, + "Kant": 1, + "Locke": 1, + "Wittgenstein": 1, + "Nozick": 1, + "Mises": 1, + "return": 17, + "Int": 6, + "me": 13, + "left": 4, + "right": 4, + "g": 4, + "Random.newStdGen": 1, + "let": 8, + "phil": 4, + "tT": 2, + "g1": 2, + "Random.randomR": 2, + "L": 6, + "eT": 2, + "g2": 3, + "thinkTime": 3, + "*": 5, + "eatTime": 3, + "fl": 4, + "left.take": 1, + "rFork": 2, + "poll": 1, + "Just": 2, + "fr": 3, + "right.put": 1, + "left.put": 2, + "table.notifyAll": 2, + "Nothing": 2, + "table.wait": 1, + "inter": 3, + "catch": 2, + "getURL": 4, + "xx": 2, + "url": 1, + "URL.new": 1, + "con": 3, + "url.openConnection": 1, + "con.connect": 1, + "con.getInputStream": 1, + "typ": 5, + "con.getContentType": 1, + "stderr.println": 3, + "ir": 2, + "InputStreamReader.new": 2, + "fromMaybe": 1, + "charset": 2, + "unsupportedEncoding": 3, + "br": 4, + "BufferedReader": 1, + "getLines": 1, + "InputStream": 1, + "UnsupportedEncodingException": 1, + "InputStreamReader": 1, + "x": 45, + "x.catched": 1, + "ctyp": 2, + "charset=": 1, + "m.group": 1, + "SomeException": 2, + "Throwable": 1, + "m1": 1, + "MVar.newEmpty": 3, + "m2": 1, + "m3": 2, + "r": 7, + "catchAll": 3, + ".": 41, + "m1.put": 1, + "m2.put": 1, + "m3.put": 1, + "r1": 2, + "m1.take": 1, + "r2": 3, + "m2.take": 1, + "r3": 3, + "take": 13, + "ss": 8, + "mapM_": 5, + "putStrLn": 2, + "|": 62, + "x.getClass.getName": 1, + "y": 15, + "sum": 2, + "map": 49, + "length": 20, + "package": 2, "examples.Sudoku": 1, "Data.TreeMap": 1, "Tree": 4, "keys": 2, "Data.List": 1, - "as": 33, "DL": 1, "hiding": 1, "find": 20, "union": 10, - "type": 8, "Element": 6, - "Int": 6, "Zelle": 8, "set": 4, "candidates": 18, "Position": 22, "Feld": 3, "Brett": 13, - "data": 3, "for": 25, "assumptions": 10, - "and": 14, "conclusions": 2, "Assumption": 21, "ISNOT": 14, - "|": 62, "IS": 16, "derive": 2, "Eq": 1, @@ -20610,7 +20823,6 @@ "showcs": 5, "cs": 27, "joined": 4, - "map": 49, "Assumption.show": 1, "elements": 12, "all": 22, @@ -20618,9 +20830,7 @@ "..": 1, "positions": 16, "rowstarts": 4, - "a": 99, "row": 20, - "is": 24, "starting": 3, "colstarts": 3, "column": 2, @@ -20631,10 +20841,8 @@ "by": 3, "adding": 1, "upper": 2, - "left": 4, "position": 9, "results": 1, - "in": 22, "real": 1, "extract": 2, "field": 9, @@ -20648,17 +20856,14 @@ "b": 113, "snd": 20, "compute": 5, - "the": 20, "list": 7, "that": 18, "belong": 3, - "to": 13, "same": 8, "given": 3, "z..": 1, "z": 12, "quot": 1, - "*": 5, "col": 17, "mod": 3, "ri": 2, @@ -20668,7 +20873,7 @@ "on": 4, "ci": 3, "index": 3, - "right": 4, + "middle": 2, "check": 2, "if": 5, "candidate": 10, @@ -20681,6 +20886,8 @@ "solved": 1, "single": 9, "Bool": 2, + "true": 16, + "false": 13, "unsolved": 10, "rows": 4, "cols": 6, @@ -20692,7 +20899,6 @@ "zip": 7, "repeat": 3, "containers": 6, - "String": 9, "PRINTING": 1, "printable": 1, "coordinate": 1, @@ -20702,7 +20908,6 @@ "packed": 1, "chr": 2, "ord": 6, - "print": 25, "board": 41, "printb": 4, "p1line": 2, @@ -20710,12 +20915,9 @@ "line": 2, "brief": 1, "no": 4, - ".": 41, "some": 2, - "x": 45, "zs": 1, "initial/final": 1, - "result": 11, "msg": 6, "res012": 2, "concatMap": 1, @@ -20729,7 +20931,6 @@ "what": 1, "done": 1, "turnoff1": 3, - "IO": 13, "i": 16, "off": 11, "nc": 7, @@ -20743,7 +20944,6 @@ "foldM": 2, "toh": 2, "setto": 3, - "n": 38, "cname": 4, "nf": 2, "SOLVING": 1, @@ -20753,7 +20953,6 @@ "contains": 1, "numbers": 1, "already": 1, - "This": 2, "finds": 1, "logs": 1, "NAKED": 5, @@ -20788,7 +20987,6 @@ "FOR": 11, "IN": 9, "occurs": 5, - "length": 20, "PAIRS": 8, "TRIPLES": 8, "QUADS": 2, @@ -20813,7 +21011,6 @@ "uniq": 4, "sort": 4, "common": 4, - "1": 2, "bs": 7, "undefined": 1, "cannot": 1, @@ -20832,8 +21029,6 @@ "intersection": 1, "we": 5, "occurences": 1, - "but": 2, - "an": 6, "XY": 2, "Wing": 2, "there": 6, @@ -20844,7 +21039,6 @@ "B": 5, "Z": 6, "shares": 2, - "C": 6, "reasoning": 1, "will": 4, "be": 9, @@ -20853,9 +21047,10 @@ "thus": 1, "see": 1, "xyWing": 2, - "y": 15, "rcba": 4, "share": 1, + "b1": 11, + "b2": 10, "&&": 9, "||": 2, "then": 1, @@ -20878,7 +21073,6 @@ "fish": 7, "fishname": 5, "rset": 4, - "take": 13, "certain": 1, "rflds": 2, "rowset": 1, @@ -20893,6 +21087,7 @@ "assumption": 8, "form": 1, "conseq": 3, + "cp": 3, "two": 1, "contradict": 2, "contradicts": 7, @@ -20930,7 +21125,6 @@ "conclusion": 4, "THE": 1, "FIRST": 1, - "con": 3, "implication": 2, "ai": 2, "so": 1, @@ -20960,7 +21154,6 @@ "Liste": 1, "aller": 1, "Annahmen": 1, - "r": 7, "ein": 1, "bestimmtes": 1, "acstree": 3, @@ -20969,7 +21162,6 @@ "maybe": 1, "tree": 1, "lookup": 2, - "Just": 2, "error": 1, "performance": 1, "resons": 1, @@ -20999,22 +21191,18 @@ "available": 1, "strategies": 1, "until": 1, - "nothing": 2, "changes": 1, "anymore": 1, "Strategy": 1, "functions": 2, "supposed": 1, "applied": 1, - "give": 2, "changed": 1, "board.": 1, "strategy": 2, - "does": 2, "anything": 1, "alter": 1, "it": 2, - "returns": 2, "next": 1, "tried.": 1, "solve": 19, @@ -21057,7 +21245,6 @@ "h": 1, "help": 1, "usage": 1, - "java": 5, "Sudoku": 2, "file": 4, "81": 3, @@ -21067,18 +21254,17 @@ "One": 1, "such": 1, "going": 1, + "http": 3, "www": 1, "sudokuoftheday": 1, "pages": 1, "o": 1, - "d": 3, "php": 1, "click": 1, "puzzle": 1, "open": 1, "tab": 1, "Copy": 1, - "URL": 2, "address": 1, "your": 1, "browser": 1, @@ -21095,153 +21281,86 @@ "files": 2, "forM_": 1, "sudoku": 2, - "br": 4, "openReader": 1, "lines": 2, "BufferedReader.getLines": 1, "process": 5, - "ss": 8, - "sum": 2, "candi": 2, "consider": 3, "acht": 4, - "stderr.println": 3, "neun": 2, - "module": 2, - "examples.CommandLineClock": 1, - "Date": 5, - "native": 4, - "java.util.Date": 1, - "MutableIO": 1, - "toString": 2, - "Mutable": 1, - "ST": 1, - "d.toString": 1, - "action": 2, - "us": 1, - "current": 4, - "time": 1, - "lang": 2, - "Thread": 2, - "sleep": 4, - "takes": 1, - "long": 4, - "may": 1, - "throw": 1, - "InterruptedException": 4, - "without": 1, - "doubt": 1, - "public": 1, - "static": 1, - "void": 2, - "millis": 1, - "throws": 4, - "Encoded": 1, - "Frege": 1, - "argument": 1, - "Long": 3, - "defined": 1, - "frege": 1, - "Lang": 1, - "args": 2, - "forever": 1, - "stdout.flush": 1, - "Thread.sleep": 4, - "examples.Concurrent": 1, - "System.Random": 1, - "Java.Net": 1, - "Control.Concurrent": 1, - "main2": 1, - "m": 2, - "newEmptyMVar": 1, - "forkIO": 11, - "m.put": 3, - "replicateM_": 3, - "m.take": 1, - "example1": 1, - "putChar": 2, - "example2": 2, - "setReminder": 3, - "L*n": 1, - "table": 1, - "mainPhil": 2, - "fork1": 3, - "fork2": 3, - "fork3": 3, - "fork4": 3, - "fork5": 3, - "MVar": 3, - "5": 1, - "philosopher": 7, - "Kant": 1, - "Locke": 1, - "Wittgenstein": 1, - "Nozick": 1, - "Mises": 1, - "me": 13, - "g": 4, - "Random.newStdGen": 1, - "phil": 4, - "tT": 2, - "g1": 2, - "Random.randomR": 2, - "L": 6, - "eT": 2, - "g2": 3, - "thinkTime": 3, - "eatTime": 3, - "fl": 4, - "left.take": 1, - "rFork": 2, - "poll": 1, - "fr": 3, - "right.put": 1, - "left.put": 2, - "table.notifyAll": 2, - "Nothing": 2, - "table.wait": 1, - "inter": 3, - "catch": 2, - "getURL": 4, - "xx": 2, - "url": 1, - "URL.new": 1, - "url.openConnection": 1, - "con.connect": 1, - "con.getInputStream": 1, - "typ": 5, - "con.getContentType": 1, - "ir": 2, - "InputStreamReader.new": 2, - "fromMaybe": 1, - "charset": 2, - "unsupportedEncoding": 3, - "BufferedReader": 1, - "getLines": 1, - "InputStream": 1, - "UnsupportedEncodingException": 1, - "InputStreamReader": 1, - "x.catched": 1, - "ctyp": 2, - "charset=": 1, - "m.group": 1, - "SomeException": 2, - "Throwable": 1, - "m1": 1, - "MVar.newEmpty": 3, - "m2": 1, - "m3": 2, - "catchAll": 3, - "m1.put": 1, - "m2.put": 1, - "m3.put": 1, - "r1": 2, - "m1.take": 1, - "r2": 3, - "m2.take": 1, - "r3": 3, - "putStrLn": 2, - "x.getClass.getName": 1 + "examples.SwingExamples": 1, + "Java.Awt": 1, + "ActionListener": 2, + "Java.Swing": 1, + "rs": 2, + "Runnable.new": 1, + "helloWorldGUI": 2, + "buttonDemoGUI": 2, + "celsiusConverterGUI": 2, + "invokeLater": 1, + "tempTextField": 2, + "JTextField.new": 1, + "celsiusLabel": 1, + "JLabel.new": 3, + "convertButton": 1, + "JButton.new": 3, + "fahrenheitLabel": 1, + "frame": 3, + "JFrame.new": 3, + "frame.setDefaultCloseOperation": 3, + "JFrame.dispose_on_close": 3, + "frame.setTitle": 1, + "celsiusLabel.setText": 1, + "convertButton.setText": 1, + "convertButtonActionPerformed": 2, + "celsius": 3, + "getText": 1, + "double": 1, + "fahrenheitLabel.setText": 3, + "c*1.8": 1, + ".long": 1, + "ActionListener.new": 2, + "convertButton.addActionListener": 1, + "contentPane": 2, + "frame.getContentPane": 2, + "layout": 2, + "GroupLayout.new": 1, + "contentPane.setLayout": 1, + "TODO": 1, + "continue": 1, + "//docs.oracle.com/javase/tutorial/displayCode.html": 1, + "code": 1, + "//docs.oracle.com/javase/tutorial/uiswing/examples/learn/CelsiusConverterProject/src/learn/CelsiusConverterGUI.java": 1, + "frame.pack": 3, + "frame.setVisible": 3, + "label": 2, + "cp.add": 1, + "newContentPane": 2, + "JPanel.new": 1, + "JButton": 4, + "b1.setVerticalTextPosition": 1, + "SwingConstants.center": 2, + "b1.setHorizontalTextPosition": 1, + "SwingConstants.leading": 2, + "b2.setVerticalTextPosition": 1, + "b2.setHorizontalTextPosition": 1, + "b3": 7, + "Enable": 1, + "button": 1, + "setVerticalTextPosition": 1, + "SwingConstants": 2, + "center": 1, + "setHorizontalTextPosition": 1, + "leading": 1, + "setEnabled": 7, + "action1": 2, + "action3": 2, + "b1.addActionListener": 1, + "b3.addActionListener": 1, + "newContentPane.add": 3, + "newContentPane.setOpaque": 1, + "frame.setContentPane": 1 }, "GAMS": { "*Basic": 1, @@ -21405,213 +21524,22 @@ "GAP": { "#############################################################################": 63, "##": 766, - "Magic.gi": 1, - "AutoDoc": 4, - "package": 10, - "Copyright": 6, - "Max": 2, - "Horn": 2, - "JLU": 2, - "Giessen": 2, - "Sebastian": 2, - "Gutsche": 2, - "University": 4, - "of": 114, - "Kaiserslautern": 2, - "BindGlobal": 7, - "(": 721, - "function": 37, - "str": 8, - "suffix": 3, - ")": 722, - "local": 16, - "n": 31, - "m": 8, - ";": 569, - "Length": 14, - "return": 41, - "and": 102, - "{": 21, - "[": 145, - "-": 67, - "+": 9, - "]": 169, - "}": 21, - "end": 34, - "i": 25, - "while": 5, - "<": 17, - "do": 18, - "od": 15, - "if": 103, - "then": 128, - "fi": 91, - "d": 16, - "tmp": 20, - "not": 49, - "IsDirectoryPath": 1, - "CreateDir": 2, - "#": 73, - "Note": 3, - "is": 72, - "currently": 1, - "undocumented": 1, - "fail": 18, - "Error": 7, - "LastSystemError": 1, - ".message": 1, - "false": 7, - "true": 21, - "pkg": 32, - "subdirs": 2, - "extensions": 1, - "d_rel": 6, - "files": 4, - "result": 9, - "for": 53, - "in": 64, - "DirectoriesPackageLibrary": 2, - "IsEmpty": 6, - "continue": 3, - "Directory": 5, - "DirectoryContents": 1, - "Sort": 1, - "AUTODOC_GetSuffix": 2, - "IsReadableFile": 2, - "Filename": 8, - "Add": 4, - "Make": 1, - "this": 15, - "callable": 1, - "with": 24, - "the": 136, - "package_name": 1, - "AutoDocWorksheet.": 1, - "Which": 1, - "will": 5, - "create": 1, - "a": 113, - "worksheet": 1, - "InstallGlobalFunction": 5, - "arg": 16, - "package_info": 3, - "opt": 3, - "scaffold": 12, - "gapdoc": 7, - "maketest": 12, - "autodoc": 8, - "pkg_dir": 5, - "doc_dir": 18, - "doc_dir_rel": 3, - "title_page": 7, - "tree": 8, - "is_worksheet": 13, - "position_document_class": 7, - "gapdoc_latex_option_record": 4, - "LowercaseString": 3, - "rec": 20, - "DirectoryCurrent": 1, - "else": 25, - "PackageInfo": 1, - "key": 3, - "val": 4, - "ValueOption": 1, - "opt.": 1, - "IsBound": 39, - "opt.dir": 4, - "elif": 21, - "IsString": 7, - "or": 13, - "IsDirectory": 1, - "AUTODOC_CreateDirIfMissing": 1, - "Print": 24, - "opt.scaffold": 5, - "package_info.AutoDoc": 3, - "IsRecord": 7, - "IsBool": 4, - "AUTODOC_APPEND_RECORD_WRITEONCE": 3, - "AUTODOC_WriteOnce": 10, - "opt.autodoc": 5, - "Concatenation": 15, - "package_info.Dependencies.NeededOtherPackages": 1, - "package_info.Dependencies.SuggestedOtherPackages": 1, - "ForAny": 1, - "x": 14, - "autodoc.files": 7, - "autodoc.scan_dirs": 5, - "autodoc.level": 3, - "PushOptions": 1, - "level_value": 1, - "Append": 2, - "AUTODOC_FindMatchingFiles": 2, - "opt.gapdoc": 5, - "opt.maketest": 4, - "gapdoc.main": 8, - "package_info.PackageDoc": 3, - ".BookName": 2, - "gapdoc.bookname": 4, - "#Print": 1, - "gapdoc.files": 9, - "gapdoc.scan_dirs": 3, - "Set": 1, - "Number": 1, - "ListWithIdenticalEntries": 1, - "List": 6, - "f": 11, - "DocumentationTree": 1, - "autodoc.section_intros": 2, - "AUTODOC_PROCESS_INTRO_STRINGS": 1, - "Tree": 2, - "AutoDocScanFiles": 1, - "PackageName": 2, - "scaffold.TitlePage": 4, - "scaffold.TitlePage.Title": 2, - ".TitlePage.Title": 2, - "Position": 2, - "Remove": 2, - "JoinStringsWithSeparator": 1, - "ReplacedString": 2, - "Syntax": 1, - "scaffold.document_class": 7, - "PositionSublist": 5, - "GAPDoc2LaTeXProcs.Head": 14, - "..": 6, - "scaffold.latex_header_file": 2, - "StringFile": 2, - "scaffold.gapdoc_latex_options": 4, - "RecNames": 1, - "scaffold.gapdoc_latex_options.": 5, - "IsList": 1, - "scaffold.includes": 4, - "scaffold.bib": 7, - "Unbind": 1, - "scaffold.main_xml_file": 2, - ".TitlePage": 1, - "ExtractTitleInfoFromPackageInfo": 1, - "CreateTitlePage": 1, - "scaffold.MainPage": 2, - "scaffold.dir": 1, - "scaffold.book_name": 1, - "CreateMainPage": 1, - "WriteDocumentation": 1, - "SetGapDocLaTeXOptions": 1, - "MakeGAPDocDoc": 1, - "CopyHTMLStyleFiles": 1, - "GAPDocManualLab": 1, - "maketest.folder": 3, - "maketest.scan_dir": 3, - "CreateMakeTest": 1, "#W": 4, "example.gd": 2, "This": 10, "file": 7, "contains": 7, + "a": 113, "sample": 2, + "of": 114, "GAP": 15, "declaration": 1, "file.": 3, "DeclareProperty": 2, + "(": 721, "IsLeftModule": 6, + ")": 722, + ";": 569, "DeclareGlobalFunction": 5, "#C": 7, "IsQuuxFrobnicator": 1, @@ -21625,14 +21553,86 @@ "Tests": 1, "whether": 5, "R": 5, + "is": 72, "quux": 1, "frobnicator.": 1, "": 28, "": 28, "DeclareSynonym": 17, "IsField": 1, + "and": 102, "IsGroup": 1, + "implementation": 1, + "#M": 20, + "SomeOperation": 1, + "": 2, + "performs": 1, + "some": 2, + "operation": 1, + "on": 5, + "InstallMethod": 18, + "SomeProperty": 1, + "[": 145, + "]": 169, + "function": 37, + "M": 7, + "if": 103, + "IsFreeLeftModule": 3, + "not": 49, + "IsTrivial": 1, + "then": 128, + "return": 41, + "true": 21, + "fi": 91, + "TryNextMethod": 7, + "end": 34, + "#F": 17, + "SomeGlobalFunction": 2, + "A": 9, + "global": 1, + "variadic": 1, + "funfion.": 1, + "InstallGlobalFunction": 5, + "arg": 16, + "Length": 14, + "+": 9, + "*": 12, + "elif": 21, + "-": 67, + "else": 25, + "Error": 7, + "#": 73, + "SomeFunc": 1, + "x": 14, + "y": 8, + "local": 16, + "z": 3, + "func": 3, + "tmp": 20, + "j": 3, + "mod": 2, + "List": 6, + "while": 5, + "do": 18, + "for": 53, + "in": 64, + "Print": 24, + "od": 15, + "repeat": 1, + "until": 1, + "<": 17, "Magic.gd": 1, + "AutoDoc": 4, + "package": 10, + "Copyright": 6, + "Max": 2, + "Horn": 2, + "JLU": 2, + "Giessen": 2, + "Sebastian": 2, + "Gutsche": 2, + "University": 4, + "Kaiserslautern": 2, "SHEBANG#!#! @Description": 1, "SHEBANG#!#! This": 1, "SHEBANG#!#! any": 1, @@ -21687,6 +21687,7 @@ "TODO": 3, "mention": 1, "merging": 1, + "with": 24, "PackageInfo.AutoDoc": 1, "SHEBANG#!#! ": 3, "SHEBANG#!#! ": 13, @@ -21727,6 +21728,7 @@ "document": 1, "leave": 1, "us": 1, + "the": 136, "choice": 1, "revising": 1, "how": 1, @@ -21737,9 +21739,9 @@ "": 117, "": 2, "": 2, - "A": 9, "list": 16, "names": 1, + "or": 13, "which": 8, "are": 14, "used": 10, @@ -21783,6 +21785,7 @@ "entry": 2, "list.": 2, "It": 1, + "will": 5, "handled": 3, "so": 3, "please": 1, @@ -21827,6 +21830,7 @@ "only": 5, "remaining": 1, "use": 5, + "this": 15, "seems": 1, "ability": 1, "specify": 3, @@ -21835,6 +21839,7 @@ "sections.": 1, "TODO.": 1, "SHEBANG#!#! files": 1, + "Note": 3, "strictly": 1, "speaking": 1, "also": 3, @@ -21870,6 +21875,7 @@ "just": 1, "case.": 1, "SHEBANG#!#! In": 1, + "maketest": 12, "part.": 1, "Still": 1, "under": 1, @@ -21887,6 +21893,258 @@ "SHEBANG#!#! @Returns": 1, "SHEBANG#!#! @Arguments": 1, "SHEBANG#!#! @ChapterInfo": 1, + "Magic.gi": 1, + "BindGlobal": 7, + "str": 8, + "suffix": 3, + "n": 31, + "m": 8, + "{": 21, + "}": 21, + "i": 25, + "d": 16, + "IsDirectoryPath": 1, + "CreateDir": 2, + "currently": 1, + "undocumented": 1, + "fail": 18, + "LastSystemError": 1, + ".message": 1, + "false": 7, + "pkg": 32, + "subdirs": 2, + "extensions": 1, + "d_rel": 6, + "files": 4, + "result": 9, + "DirectoriesPackageLibrary": 2, + "IsEmpty": 6, + "continue": 3, + "Directory": 5, + "DirectoryContents": 1, + "Sort": 1, + "AUTODOC_GetSuffix": 2, + "IsReadableFile": 2, + "Filename": 8, + "Add": 4, + "Make": 1, + "callable": 1, + "package_name": 1, + "AutoDocWorksheet.": 1, + "Which": 1, + "create": 1, + "worksheet": 1, + "package_info": 3, + "opt": 3, + "scaffold": 12, + "gapdoc": 7, + "autodoc": 8, + "pkg_dir": 5, + "doc_dir": 18, + "doc_dir_rel": 3, + "title_page": 7, + "tree": 8, + "is_worksheet": 13, + "position_document_class": 7, + "gapdoc_latex_option_record": 4, + "LowercaseString": 3, + "rec": 20, + "DirectoryCurrent": 1, + "PackageInfo": 1, + "key": 3, + "val": 4, + "ValueOption": 1, + "opt.": 1, + "IsBound": 39, + "opt.dir": 4, + "IsString": 7, + "IsDirectory": 1, + "AUTODOC_CreateDirIfMissing": 1, + "opt.scaffold": 5, + "package_info.AutoDoc": 3, + "IsRecord": 7, + "IsBool": 4, + "AUTODOC_APPEND_RECORD_WRITEONCE": 3, + "AUTODOC_WriteOnce": 10, + "opt.autodoc": 5, + "Concatenation": 15, + "package_info.Dependencies.NeededOtherPackages": 1, + "package_info.Dependencies.SuggestedOtherPackages": 1, + "ForAny": 1, + "autodoc.files": 7, + "autodoc.scan_dirs": 5, + "autodoc.level": 3, + "PushOptions": 1, + "level_value": 1, + "Append": 2, + "AUTODOC_FindMatchingFiles": 2, + "opt.gapdoc": 5, + "opt.maketest": 4, + "gapdoc.main": 8, + "package_info.PackageDoc": 3, + ".BookName": 2, + "gapdoc.bookname": 4, + "#Print": 1, + "gapdoc.files": 9, + "gapdoc.scan_dirs": 3, + "Set": 1, + "Number": 1, + "ListWithIdenticalEntries": 1, + "f": 11, + "DocumentationTree": 1, + "autodoc.section_intros": 2, + "AUTODOC_PROCESS_INTRO_STRINGS": 1, + "Tree": 2, + "AutoDocScanFiles": 1, + "PackageName": 2, + "scaffold.TitlePage": 4, + "scaffold.TitlePage.Title": 2, + ".TitlePage.Title": 2, + "Position": 2, + "Remove": 2, + "JoinStringsWithSeparator": 1, + "ReplacedString": 2, + "Syntax": 1, + "scaffold.document_class": 7, + "PositionSublist": 5, + "GAPDoc2LaTeXProcs.Head": 14, + "..": 6, + "scaffold.latex_header_file": 2, + "StringFile": 2, + "scaffold.gapdoc_latex_options": 4, + "RecNames": 1, + "scaffold.gapdoc_latex_options.": 5, + "IsList": 1, + "scaffold.includes": 4, + "scaffold.bib": 7, + "Unbind": 1, + "scaffold.main_xml_file": 2, + ".TitlePage": 1, + "ExtractTitleInfoFromPackageInfo": 1, + "CreateTitlePage": 1, + "scaffold.MainPage": 2, + "scaffold.dir": 1, + "scaffold.book_name": 1, + "CreateMainPage": 1, + "WriteDocumentation": 1, + "SetGapDocLaTeXOptions": 1, + "MakeGAPDocDoc": 1, + "CopyHTMLStyleFiles": 1, + "GAPDocManualLab": 1, + "maketest.folder": 3, + "maketest.scan_dir": 3, + "CreateMakeTest": 1, + "PackageInfo.g": 2, + "cvec": 1, + "s": 4, + "template": 1, + "SetPackageInfo": 1, + "Subtitle": 1, + "Version": 1, + "Date": 1, + "dd/mm/yyyy": 1, + "format": 2, + "Information": 1, + "about": 3, + "authors": 1, + "maintainers.": 1, + "Persons": 1, + "LastName": 1, + "FirstNames": 1, + "IsAuthor": 1, + "IsMaintainer": 1, + "Email": 1, + "WWWHome": 1, + "PostalAddress": 1, + "Place": 1, + "Institution": 1, + "Status": 2, + "information.": 1, + "Currently": 1, + "cases": 2, + "recognized": 1, + "successfully": 2, + "refereed": 2, + "developers": 1, + "agreed": 1, + "distribute": 1, + "them": 1, + "core": 1, + "system": 1, + "development": 1, + "versions": 1, + "all": 18, + "You": 1, + "must": 6, + "provide": 2, + "next": 6, + "entries": 8, + "status": 1, + "because": 2, + "was": 1, + "#CommunicatedBy": 1, + "#AcceptDate": 1, + "PackageWWWHome": 1, + "README_URL": 1, + ".PackageWWWHome": 2, + "PackageInfoURL": 1, + "ArchiveURL": 1, + ".Version": 2, + "ArchiveFormats": 1, + "Here": 2, + "short": 1, + "abstract": 1, + "explaining": 1, + "content": 1, + "HTML": 1, + "overview": 1, + "Web": 1, + "page": 1, + "an": 17, + "URL": 1, + "Webpage": 1, + "detailed": 1, + "information": 1, + "than": 1, + "few": 1, + "lines": 1, + "less": 1, + "ok": 1, + "Please": 1, + "specifing": 1, + "names.": 1, + "AbstractHTML": 1, + "PackageDoc": 1, + "BookName": 1, + "ArchiveURLSubset": 1, + "HTMLStart": 1, + "PDFFile": 1, + "SixFile": 1, + "LongTitle": 1, + "Dependencies": 1, + "NeededOtherPackages": 1, + "SuggestedOtherPackages": 1, + "ExternalConditions": 1, + "AvailabilityTest": 1, + "SHOW_STAT": 1, + "DirectoriesPackagePrograms": 1, + "#Info": 1, + "InfoWarning": 1, + "*Optional*": 2, + "but": 1, + "recommended": 1, + "path": 1, + "relative": 1, + "root": 1, + "many": 1, + "tests": 1, + "functionality": 1, + "sensible.": 1, + "#TestFile": 1, + "keyword": 1, + "related": 1, + "topic": 1, + "Keywords": 1, "vspc.gd": 1, "library": 2, "Thomas": 2, @@ -21948,15 +22206,12 @@ "

": 23, "Whenever": 1, "talk": 1, - "about": 3, - "an": 17, "": 42, "F": 61, "": 41, "V": 152, "additive": 1, "group": 2, - "on": 5, "acts": 1, "via": 6, "multiplication": 1, @@ -21977,8 +22232,6 @@ "<#/GAPDoc>": 17, "IsLeftActedOnByDivisionRing": 4, "InstallTrueMethod": 4, - "IsFreeLeftModule": 3, - "#F": 17, "IsGaussianSpace": 10, "": 14, "filter": 3, @@ -21988,8 +22241,6 @@ "field": 12, "say": 1, "indicates": 3, - "entries": 8, - "all": 18, "vectors": 16, "matrices": 5, "respectively": 1, @@ -22035,7 +22286,6 @@ "thus": 1, "property": 2, "get": 1, - "because": 2, "usually": 1, "represented": 1, "coefficients": 3, @@ -22086,7 +22336,6 @@ "defines": 1, "method": 4, "installs": 1, - "must": 6, "call": 1, "On": 1, "hand": 1, @@ -22242,7 +22491,6 @@ "Substruct": 1, "common": 1, "Struct": 1, - "cases": 2, "basis.": 1, "handle": 1, "intersections": 1, @@ -22277,7 +22525,6 @@ "NextIterator": 5, "DeclareCategory": 1, "IsDomain": 1, - "#M": 20, "IsFinite": 4, "Returns": 1, "": 1, @@ -22301,137 +22548,9 @@ "source": 2, "range": 1, "b": 8, - "s": 4, - "*": 12, "hold": 1, "IsGeneralMapping": 2, "#E": 2, - "PackageInfo.g": 2, - "cvec": 1, - "template": 1, - "SetPackageInfo": 1, - "Subtitle": 1, - "Version": 1, - "Date": 1, - "dd/mm/yyyy": 1, - "format": 2, - "Information": 1, - "authors": 1, - "maintainers.": 1, - "Persons": 1, - "LastName": 1, - "FirstNames": 1, - "IsAuthor": 1, - "IsMaintainer": 1, - "Email": 1, - "WWWHome": 1, - "PostalAddress": 1, - "Place": 1, - "Institution": 1, - "Status": 2, - "information.": 1, - "Currently": 1, - "recognized": 1, - "successfully": 2, - "refereed": 2, - "developers": 1, - "agreed": 1, - "distribute": 1, - "them": 1, - "core": 1, - "system": 1, - "development": 1, - "versions": 1, - "You": 1, - "provide": 2, - "next": 6, - "status": 1, - "was": 1, - "#CommunicatedBy": 1, - "#AcceptDate": 1, - "PackageWWWHome": 1, - "README_URL": 1, - ".PackageWWWHome": 2, - "PackageInfoURL": 1, - "ArchiveURL": 1, - ".Version": 2, - "ArchiveFormats": 1, - "Here": 2, - "short": 1, - "abstract": 1, - "explaining": 1, - "content": 1, - "HTML": 1, - "overview": 1, - "Web": 1, - "page": 1, - "URL": 1, - "Webpage": 1, - "detailed": 1, - "information": 1, - "than": 1, - "few": 1, - "lines": 1, - "less": 1, - "ok": 1, - "Please": 1, - "specifing": 1, - "names.": 1, - "AbstractHTML": 1, - "PackageDoc": 1, - "BookName": 1, - "ArchiveURLSubset": 1, - "HTMLStart": 1, - "PDFFile": 1, - "SixFile": 1, - "LongTitle": 1, - "Dependencies": 1, - "NeededOtherPackages": 1, - "SuggestedOtherPackages": 1, - "ExternalConditions": 1, - "AvailabilityTest": 1, - "SHOW_STAT": 1, - "DirectoriesPackagePrograms": 1, - "#Info": 1, - "InfoWarning": 1, - "*Optional*": 2, - "but": 1, - "recommended": 1, - "path": 1, - "relative": 1, - "root": 1, - "many": 1, - "tests": 1, - "functionality": 1, - "sensible.": 1, - "#TestFile": 1, - "some": 2, - "keyword": 1, - "related": 1, - "topic": 1, - "Keywords": 1, - "implementation": 1, - "SomeOperation": 1, - "": 2, - "performs": 1, - "operation": 1, - "InstallMethod": 18, - "SomeProperty": 1, - "M": 7, - "IsTrivial": 1, - "TryNextMethod": 7, - "SomeGlobalFunction": 2, - "global": 1, - "variadic": 1, - "funfion.": 1, - "SomeFunc": 1, - "y": 8, - "z": 3, - "func": 3, - "j": 3, - "mod": 2, - "repeat": 1, - "until": 1, "vspc.gi": 1, "generic": 1, "SetLeftActingDomain": 2, @@ -22615,60 +22734,17 @@ ".subsections_via_symbols": 1 }, "GLSL": { - "#version": 2, - "core": 1, - "void": 33, - "main": 7, - "(": 437, - ")": 437, - "{": 84, - "}": 84, - "float": 105, - "cbar": 2, - "int": 8, - ";": 391, - "cfoo": 1, - "CB": 2, - "CD": 2, - "CA": 1, - "CC": 1, - "CBT": 5, - "CDT": 3, - "CAT": 1, - "CCT": 1, - "norA": 4, - "norB": 3, - "norC": 1, - "norD": 1, - "norE": 4, - "norF": 1, - "norG": 1, - "norH": 1, - "norI": 1, - "norcA": 2, - "norcB": 3, - "norcC": 2, - "norcD": 2, - "//": 38, - "head": 1, - "of": 1, - "cycle": 2, - "norcE": 1, - "lead": 1, - "into": 1, - "varying": 6, - "vec4": 77, - "v_color": 4, - "gl_FragColor": 4, "////": 4, "High": 1, "quality": 2, + "(": 437, "Some": 1, "browsers": 1, "may": 1, "freeze": 1, "or": 1, "crash": 1, + ")": 437, "//#define": 10, "HIGHQUALITY": 2, "Medium": 1, @@ -22695,6 +22771,7 @@ "RAGGED_LEAVES": 5, "DETAILED_NOISE": 3, "LIGHT_AA": 3, + "//": 38, "sample": 2, "SSAA": 2, "HEAVY_AA": 2, @@ -22705,9 +22782,11 @@ "#ifdef": 14, "#endif": 14, "const": 19, + "float": 105, "eps": 5, "e": 4, "-": 108, + ";": 391, "PI": 3, "vec3": 165, "sunDir": 5, @@ -22726,10 +22805,13 @@ "tonemapping": 1, "mod289": 4, "x": 11, + "{": 84, "return": 47, "floor": 8, "*": 116, "/": 24, + "}": 84, + "vec4": 77, "permute": 4, "x*34.0": 1, "+": 108, @@ -22930,6 +23012,7 @@ "shadow": 4, "taken": 1, "for": 7, + "int": 8, "rayDir*t": 2, "res": 6, "res.x": 3, @@ -23032,6 +23115,8 @@ "iResolution.x/iResolution.y*0.5": 1, "rd.x": 1, "rd.y": 1, + "void": 33, + "main": 7, "gl_FragCoord.xy": 7, "*0.25": 4, "*0.5": 1, @@ -23043,7 +23128,86 @@ "col*exposure": 1, "x*": 2, ".5": 1, + "gl_FragColor": 4, + "varying": 6, + "v_color": 4, "uniform": 8, + "mat4": 1, + "u_MVPMatrix": 2, + "attribute": 2, + "a_position": 1, + "a_color": 2, + "gl_Position": 1, + "#version": 2, + "core": 1, + "cbar": 2, + "cfoo": 1, + "CB": 2, + "CD": 2, + "CA": 1, + "CC": 1, + "CBT": 5, + "CDT": 3, + "CAT": 1, + "CCT": 1, + "norA": 4, + "norB": 3, + "norC": 1, + "norD": 1, + "norE": 4, + "norF": 1, + "norG": 1, + "norH": 1, + "norI": 1, + "norcA": 2, + "norcB": 3, + "norcC": 2, + "norcD": 2, + "head": 1, + "of": 1, + "cycle": 2, + "norcE": 1, + "lead": 1, + "into": 1, + "NUM_LIGHTS": 4, + "AMBIENT": 2, + "MAX_DIST": 3, + "MAX_DIST_SQUARED": 3, + "lightColor": 3, + "[": 29, + "]": 29, + "fragmentNormal": 2, + "cameraVector": 2, + "lightVector": 4, + "initialize": 1, + "diffuse/specular": 1, + "lighting": 1, + "diffuse": 4, + "specular": 4, + "the": 1, + "fragment": 1, + "and": 2, + "direction": 1, + "cameraDir": 2, + "loop": 1, + "through": 1, + "each": 1, + "calculate": 1, + "distance": 1, + "between": 1, + "distFactor": 3, + "lightDir": 3, + "diffuseDot": 2, + "halfAngle": 2, + "specularColor": 2, + "specularDot": 2, + "sample.rgb": 1, + "sample.a": 1, + "static": 1, + "char*": 1, + "SimpleFragmentShader": 1, + "STRINGIFY": 1, + "FrontColor": 2, "kCoeff": 2, "kCube": 2, "uShift": 3, @@ -23065,8 +23229,6 @@ "f": 17, "r*r": 1, "inverse_f": 2, - "[": 29, - "]": 29, "lut": 9, "max_r": 2, "incr": 2, @@ -23096,417 +23258,39 @@ "sampled.b": 1, ".b": 1, "gl_FragColor.rgba": 1, - "sampled.rgb": 1, - "static": 1, - "char*": 1, - "SimpleFragmentShader": 1, - "STRINGIFY": 1, - "FrontColor": 2, - "NUM_LIGHTS": 4, - "AMBIENT": 2, - "MAX_DIST": 3, - "MAX_DIST_SQUARED": 3, - "lightColor": 3, - "fragmentNormal": 2, - "cameraVector": 2, - "lightVector": 4, - "initialize": 1, - "diffuse/specular": 1, - "lighting": 1, - "diffuse": 4, - "specular": 4, - "the": 1, - "fragment": 1, - "and": 2, - "direction": 1, - "cameraDir": 2, - "loop": 1, - "through": 1, - "each": 1, - "calculate": 1, - "distance": 1, - "between": 1, - "distFactor": 3, - "lightDir": 3, - "diffuseDot": 2, - "halfAngle": 2, - "specularColor": 2, - "specularDot": 2, - "sample.rgb": 1, - "sample.a": 1, - "mat4": 1, - "u_MVPMatrix": 2, - "attribute": 2, - "a_position": 1, - "a_color": 2, - "gl_Position": 1 + "sampled.rgb": 1 }, "Game Maker Language": { - "var": 79, - "victim": 10, - "killer": 11, - "assistant": 16, - "damageSource": 18, - ";": 1282, - "argument0": 28, - "argument1": 10, - "argument2": 3, - "argument3": 1, - "if": 397, - "(": 1501, - "instance_exists": 8, - ")": 1502, - "noone": 7, - "//*************************************": 6, - "//*": 3, - "Scoring": 1, - "and": 155, - "Kill": 1, - "log": 1, - "recordKillInLog": 1, - "victim.stats": 1, - "[": 99, - "DEATHS": 1, - "]": 103, - "+": 206, - "{": 300, - "WEAPON_KNIFE": 1, - "||": 16, - "WEAPON_BACKSTAB": 1, - "killer.stats": 8, - "STABS": 2, - "killer.roundStats": 8, - "POINTS": 10, - "}": 307, - "victim.object.currentWeapon.object_index": 1, - "Medigun": 2, - "victim.object.currentWeapon.uberReady": 1, - "BONUS": 2, - "KILLS": 2, - "victim.object.intel": 1, - "DEFENSES": 2, - "recordEventInLog": 1, - "killer.team": 1, - "killer.name": 2, - "global.myself": 4, - "assistant.stats": 2, - "ASSISTS": 2, - "assistant.roundStats": 2, - ".5": 2, - "//SPEC": 1, - "instance_create": 20, - "victim.object.x": 3, - "victim.object.y": 3, - "Spectator": 1, - "Gibbing": 2, - "xoffset": 5, - "yoffset": 5, - "xsize": 3, - "ysize": 3, - "view_xview": 3, - "view_yview": 3, - "view_wview": 2, - "view_hview": 2, - "randomize": 1, - "with": 47, - "victim.object": 2, - "WEAPON_ROCKETLAUNCHER": 1, - "or": 78, - "WEAPON_MINEGUN": 1, - "FRAG_BOX": 2, - "WEAPON_REFLECTED_STICKY": 1, - "WEAPON_REFLECTED_ROCKET": 1, - "FINISHED_OFF_GIB": 2, - "GENERATOR_EXPLOSION": 2, - "player.class": 15, - "CLASS_QUOTE": 3, - "global.gibLevel": 14, - "distance_to_point": 3, - "xsize/2": 2, - "ysize/2": 2, - "<": 39, - "hasReward": 4, - "repeat": 7, - "*": 18, - "createGib": 14, - "x": 76, - "y": 85, - "PumpkinGib": 1, - "hspeed": 14, - "vspeed": 13, - "random": 21, - "-": 212, - "choose": 8, - "false": 85, - "true": 73, - "else": 151, - "Gib": 1, - "switch": 9, - "player.team": 8, - "case": 50, - "TEAM_BLUE": 6, - "BlueClump": 1, - "break": 58, - "TEAM_RED": 8, - "RedClump": 1, - "blood": 2, - "BloodDrop": 1, - "blood.hspeed": 1, - "blood.vspeed": 1, - "blood.sprite_index": 1, - "PumpkinJuiceS": 1, - "//All": 1, - "Classes": 1, - "gib": 1, - "head": 1, - "hands": 2, - "feet": 1, - "Headgib": 1, - "//Medic": 1, - "has": 2, - "specially": 1, - "colored": 1, - "CLASS_MEDIC": 2, - "Hand": 3, - "Feet": 1, - "//Class": 1, - "specific": 1, - "gibs": 1, - "CLASS_PYRO": 2, - "Accesory": 5, - "CLASS_SOLDIER": 2, - "CLASS_ENGINEER": 3, - "CLASS_SNIPER": 3, - "playsound": 2, - "deadbody": 2, - "DeathSnd1": 1, - "DeathSnd2": 1, - "DeadGuy": 1, - "player": 36, - "deadbody.sprite_index": 2, - "haxxyStatue": 1, - "deadbody.image_index": 2, - "sprite_index": 14, - "CHARACTER_ANIMATION_DEAD": 1, - "deadbody.hspeed": 1, - "deadbody.vspeed": 1, - "deadbody.image_xscale": 1, - "global.gg_birthday": 1, - "myHat": 2, - "PartyHat": 1, - "myHat.image_index": 2, - "victim.team": 2, - "global.xmas": 1, - "XmasHat": 1, - "instance_destroy": 7, - "Deathcam": 1, - "global.killCam": 3, - "KILL_BOX": 1, - "FINISHED_OFF": 5, - "DeathCam": 1, - "DeathCam.killedby": 1, - "DeathCam.name": 1, - "DeathCam.oldxview": 1, - "DeathCam.oldyview": 1, - "DeathCam.lastDamageSource": 1, - "DeathCam.team": 1, - "global.myself.team": 3, - "#define": 26, - "__jso_gmt_tuple": 1, - "//Position": 1, - "address": 1, - "table": 1, - "data": 4, - "pos": 2, - "addr_table": 2, - "*argument_count": 1, - "//Build": 1, - "the": 62, - "tuple": 1, - "element": 8, - "by": 5, - "i": 95, - "ca": 1, - "isstr": 1, - "datastr": 1, - "for": 26, - "argument_count": 1, - "//Check": 1, - "argument": 10, - "Unexpected": 18, - "character": 20, - "at": 23, - "position": 16, - ".": 12, - "t": 23, - "f": 5, - "end": 11, - "of": 25, - "list": 36, - "in": 21, - "JSON": 5, - "string.": 5, - "string": 13, - "Cannot": 5, - "parse": 3, - "boolean": 3, - "value": 13, - "real": 14, - "expecting": 9, - "a": 55, - "digit.": 9, - "e": 4, - "E": 4, - "dot": 1, - "an": 24, - "integer": 6, - "Expected": 6, - "least": 6, - "arguments": 26, - "got": 6, - "map": 47, - "find": 10, - "lookup.": 4, - "use": 4, - "indices": 1, - "nested": 27, - "lists": 6, - "Index": 1, - "overflow": 4, - "Recursive": 1, - "abcdef": 1, - "Invalid": 2, - "hex": 2, - "number": 7, - "return": 56, - "num": 1, - "//": 11, - "global.levelType": 22, - "//global.currLevel": 1, - "global.currLevel": 22, - "global.hadDarkLevel": 4, - "global.startRoomX": 1, - "global.startRoomY": 1, - "global.endRoomX": 1, - "global.endRoomY": 1, - "oGame.levelGen": 2, - "j": 14, - "global.roomPath": 1, - "k": 5, - "global.lake": 3, - "<=>": 3, - "1": 32, - "not": 63, - "isLevel": 1, - "999": 2, - "global": 8, - "levelType": 2, - "2": 2, - "16": 14, - "0": 21, - "656": 3, - "obj": 14, - "oDark": 2, - "invincible": 2, - "sDark": 1, - "4": 2, - "oTemple": 2, - "cityOfGold": 1, - "sTemple": 2, - "lake": 1, - "i*16": 8, - "j*16": 6, - "oLush": 2, - "obj.sprite_index": 4, - "sLush": 2, - "obj.invincible": 3, - "oBrick": 1, - "sBrick": 1, - "global.cityOfGold": 2, - "*16": 2, - "//instance_create": 2, - "oSpikes": 1, - "background_index": 1, - "bgTemple": 1, - "global.temp1": 1, - "global.gameStart": 3, - "scrLevelGen": 1, - "global.cemetary": 3, - "rand": 10, - "global.probCemetary": 1, - "oRoom": 1, - "scrRoomGen": 1, - "global.blackMarket": 3, - "scrRoomGenMarket": 1, - "scrRoomGen2": 1, - "global.yetiLair": 2, - "scrRoomGenYeti": 1, - "scrRoomGen3": 1, - "scrRoomGen4": 1, - "scrRoomGen5": 1, - "global.darkLevel": 4, - "//if": 5, - "global.noDarkLevel": 1, - "global.probDarkLevel": 1, - "oPlayer1.x": 2, - "oPlayer1.y": 2, - "oFlare": 1, - "global.genUdjatEye": 4, - "global.madeUdjatEye": 1, - "global.genMarketEntrance": 4, - "global.madeMarketEntrance": 1, - "////////////////////////////": 2, - "global.temp2": 1, - "isRoom": 3, - "scrEntityGen": 1, - "oEntrance": 1, - "global.customLevel": 1, - "oEntrance.x": 1, - "oEntrance.y": 1, - "global.snakePit": 1, - "global.alienCraft": 1, - "global.sacrificePit": 1, - "oPlayer1": 1, - "alarm": 13, - "scrSetupWalls": 3, - "global.graphicsHigh": 1, - "tile_add": 4, - "bgExtrasLush": 1, - "*rand": 12, - "bgExtrasIce": 1, - "bgExtrasTemple": 1, - "bgExtras": 1, - "global.murderer": 1, - "global.thiefLevel": 1, - "isRealLevel": 1, - "oExit": 1, - "type": 8, - "oShopkeeper": 1, - "obj.status": 1, - "oTreasure": 1, - "collision_point": 30, - "oSolid": 14, - "instance_place": 3, - "oWater": 1, - "sWaterTop": 1, - "sLavaTop": 1, - "scrCheckWaterTop": 1, - "global.temp3": 1, "//draws": 1, + "the": 62, "sprite": 12, "draw": 3, + "true": 73, + ";": 1282, + "if": 397, + "(": 1501, "facing": 17, "RIGHT": 10, + ")": 1502, "image_xscale": 17, + "-": 212, + "else": 151, "blinkToggle": 1, + "{": 300, "state": 50, "CLIMBING": 5, + "or": 78, + "sprite_index": 14, "sPExit": 1, "sDamselExit": 1, "sTunnelExit": 1, + "and": 155, "global.hasJetpack": 4, + "not": 63, "whipping": 5, "draw_sprite_ext": 10, + "x": 76, + "y": 85, "image_yscale": 14, "image_angle": 14, "image_blend": 2, @@ -23514,8 +23298,11 @@ "//draw_sprite": 1, "draw_sprite": 9, "sJetpackBack": 1, + "false": 85, + "}": 307, "sJetpackRight": 1, "sJetpackLeft": 1, + "+": 206, "redColor": 2, "make_color_rgb": 1, "holdArrow": 4, @@ -23527,515 +23314,6 @@ "LEFT": 7, "sArrowLeft": 1, "sBombArrowLeft": 2, - "exit": 10, - "xr": 19, - "yr": 19, - "round": 6, - "cloakAlpha": 1, - "team": 13, - "canCloak": 1, - "cloakAlpha/2": 1, - "invisible": 1, - "stabbing": 2, - "power": 1, - "currentWeapon.stab.alpha": 1, - "&&": 6, - "global.showHealthBar": 3, - "draw_set_alpha": 3, - "draw_healthbar": 1, - "hp*100/maxHp": 1, - "c_black": 1, - "c_red": 3, - "c_green": 1, - "mouse_x": 1, - "mouse_y": 1, - "<25)>": 1, - "cloak": 2, - "myself": 2, - "draw_set_halign": 1, - "fa_center": 1, - "draw_set_valign": 1, - "fa_bottom": 1, - "team=": 1, - "draw_set_color": 2, - "c_blue": 2, - "draw_text": 4, - "35": 1, - "name": 9, - "showTeammateStats": 1, - "weapons": 3, - "50": 3, - "Superburst": 1, - "currentWeapon": 2, - "uberCharge": 1, - "20": 1, - "Shotgun": 1, - "Nuts": 1, - "N": 1, - "Bolts": 1, - "nutsNBolts": 1, - "Minegun": 1, - "Lobbed": 1, - "Mines": 1, - "lobbed": 1, - "ubercolour": 6, - "overlaySprite": 6, - "zoomed": 1, - "SniperCrouchRedS": 1, - "SniperCrouchBlueS": 1, - "sniperCrouchOverlay": 1, - "overlay": 1, - "omnomnomnom": 2, - "draw_sprite_ext_overlay": 7, - "omnomnomnomSprite": 2, - "omnomnomnomOverlay": 2, - "omnomnomnomindex": 4, - "c_white": 13, - "ubered": 7, - "7": 4, - "taunting": 2, - "tauntsprite": 2, - "tauntOverlay": 2, - "tauntindex": 2, - "humiliated": 1, - "humiliationPoses": 1, - "floor": 11, - "animationImage": 9, - "humiliationOffset": 1, - "animationOffset": 6, - "burnDuration": 2, - "burnIntensity": 2, - "numFlames": 1, - "/": 5, - "maxIntensity": 1, - "FlameS": 1, - "flameArray_x": 1, - "flameArray_y": 1, - "maxDuration": 1, - "demon": 4, - "demonX": 5, - "median": 2, - "demonY": 4, - "demonOffset": 4, - "demonDir": 2, - "abs": 9, - "dir": 3, - "demonFrame": 5, - "sprite_get_number": 1, - "*player.team": 2, - "dir*1": 2, - "downloadHandle": 3, - "url": 62, - "tmpfile": 3, - "window_oldshowborder": 2, - "window_oldfullscreen": 2, - "timeLeft": 1, - "counter": 1, - "AudioControlPlaySong": 1, - "window_get_showborder": 1, - "window_get_fullscreen": 1, - "window_set_fullscreen": 2, - "window_set_showborder": 1, - "global.updaterBetaChannel": 3, - "UPDATE_SOURCE_BETA": 1, - "UPDATE_SOURCE": 1, - "temp_directory": 1, - "httpGet": 1, - "while": 15, - "httpRequestStatus": 1, - "download": 1, - "isn": 1, - "s": 6, - "extract": 1, - "downloaded": 1, - "file": 2, - "now.": 1, - "extractzip": 1, - "working_directory": 6, - "execute_program": 1, - "game_end": 1, - "RoomChangeObserver": 1, - "set_little_endian_global": 1, - "file_exists": 5, - "file_delete": 3, - "backupFilename": 5, - "file_find_first": 1, - "file_find_next": 1, - "file_find_close": 1, - "customMapRotationFile": 7, - "restart": 4, - "//import": 1, - "wav": 1, - "files": 1, - "music": 1, - "global.MenuMusic": 3, - "sound_add": 3, - "global.IngameMusic": 3, - "global.FaucetMusic": 3, - "sound_volume": 3, - "global.sendBuffer": 19, - "buffer_create": 7, - "global.tempBuffer": 3, - "global.HudCheck": 1, - "global.map_rotation": 19, - "ds_list_create": 5, - "global.CustomMapCollisionSprite": 1, - "window_set_region_scale": 1, - "ini_open": 2, - "global.playerName": 7, - "ini_read_string": 12, - "string_count": 2, - "string_copy": 32, - "min": 4, - "string_length": 25, - "MAX_PLAYERNAME_LENGTH": 2, - "global.fullscreen": 3, - "ini_read_real": 65, - "global.useLobbyServer": 2, - "global.hostingPort": 2, - "global.music": 2, - "MUSIC_BOTH": 1, - "global.playerLimit": 4, - "//thy": 1, - "playerlimit": 1, - "shalt": 1, - "exceed": 1, - "global.dedicatedMode": 7, - "show_message": 7, - "ini_write_real": 60, - "global.multiClientLimit": 2, - "global.particles": 2, - "PARTICLES_NORMAL": 1, - "global.monitorSync": 3, - "set_synchronization": 2, - "global.medicRadar": 2, - "global.showHealer": 2, - "global.showHealing": 2, - "global.showTeammateStats": 2, - "global.serverPluginsPrompt": 2, - "global.restartPrompt": 2, - "//user": 1, - "HUD": 1, - "settings": 1, - "global.timerPos": 2, - "global.killLogPos": 2, - "global.kothHudPos": 2, - "global.clientPassword": 1, - "global.shuffleRotation": 2, - "global.timeLimitMins": 2, - "max": 2, - "global.serverPassword": 2, - "global.mapRotationFile": 1, - "global.serverName": 2, - "global.welcomeMessage": 2, - "global.caplimit": 3, - "global.caplimitBkup": 1, - "global.autobalance": 2, - "global.Server_RespawntimeSec": 4, - "global.rewardKey": 1, - "unhex": 1, - "global.rewardId": 1, - "global.mapdownloadLimitBps": 2, - "isBetaVersion": 1, - "global.attemptPortForward": 2, - "global.serverPluginList": 3, - "global.serverPluginsRequired": 2, - "CrosshairFilename": 5, - "CrosshairRemoveBG": 4, - "global.queueJumping": 2, - "global.backgroundHash": 2, - "global.backgroundTitle": 2, - "global.backgroundURL": 2, - "global.backgroundShowVersion": 2, - "readClasslimitsFromIni": 1, - "global.currentMapArea": 1, - "global.totalMapAreas": 1, - "global.setupTimer": 1, - "global.joinedServerName": 2, - "global.serverPluginsInUse": 1, - "global.pluginPacketBuffers": 1, - "ds_map_create": 4, - "global.pluginPacketPlayers": 1, - "ini_write_string": 10, - "ini_key_delete": 1, - "global.classlimits": 10, - "CLASS_SCOUT": 1, - "CLASS_HEAVY": 2, - "CLASS_DEMOMAN": 1, - "CLASS_SPY": 1, - "//screw": 1, - "index": 11, - "we": 5, - "will": 1, - "start": 1, - "//map_truefort": 1, - "maps": 37, - "//map_2dfort": 1, - "//map_conflict": 1, - "//map_classicwell": 1, - "//map_waterway": 1, - "//map_orange": 1, - "//map_dirtbowl": 1, - "//map_egypt": 1, - "//arena_montane": 1, - "//arena_lumberyard": 1, - "//gen_destroy": 1, - "//koth_valley": 1, - "//koth_corinth": 1, - "//koth_harvest": 1, - "//dkoth_atalia": 1, - "//dkoth_sixties": 1, - "//Server": 1, - "respawn": 1, - "time": 1, - "calculator.": 1, - "Converts": 1, - "each": 18, - "second": 2, - "to": 62, - "frame.": 1, - "read": 1, - "multiply": 1, - "hehe": 1, - "global.Server_Respawntime": 3, - "global.mapchanging": 1, - "ini_close": 2, - "global.protocolUuid": 2, - "parseUuid": 2, - "PROTOCOL_UUID": 1, - "global.gg2lobbyId": 2, - "GG2_LOBBY_UUID": 1, - "initRewards": 1, - "IPRaw": 3, - "portRaw": 3, - "doubleCheck": 8, - "global.launchMap": 5, - "parameter_count": 1, - "parameter_string": 8, - "global.serverPort": 1, - "global.serverIP": 1, - "global.isHost": 1, - "Client": 1, - "global.customMapdesginated": 2, - "fileHandle": 6, - "mapname": 9, - "file_text_open_read": 1, - "file_text_eof": 1, - "file_text_read_string": 1, - "string_char_at": 13, - "chr": 3, - "it": 6, - "starts": 1, - "space": 4, - "tab": 2, - "string_delete": 1, - "delete": 1, - "that": 2, - "comment": 1, - "starting": 1, - "#": 3, - "ds_list_add": 23, - "file_text_readln": 1, - "file_text_close": 1, - "load": 1, - "from": 5, - "ini": 1, - "Maps": 9, - "section": 1, - "//Set": 1, - "up": 6, - "rotation": 1, - "stuff": 2, - "sort_list": 7, - "*maps": 1, - "ds_list_sort": 1, - "ds_list_size": 11, - "ds_list_find_value": 9, - "mod": 1, - "ds_list_destroy": 4, - "global.gg2Font": 2, - "font_add_sprite": 2, - "gg2FontS": 1, - "ord": 16, - "global.countFont": 1, - "countFontS": 1, - "draw_set_font": 1, - "cursor_sprite": 1, - "CrosshairS": 5, - "directory_exists": 2, - "directory_create": 2, - "AudioControl": 1, - "SSControl": 1, - "message_background": 1, - "popupBackgroundB": 1, - "message_button": 1, - "popupButtonS": 1, - "message_text_font": 1, - "message_button_font": 1, - "message_input_font": 1, - "//Key": 1, - "Mapping": 1, - "global.jump": 1, - "global.down": 1, - "global.left": 1, - "global.right": 1, - "global.attack": 1, - "MOUSE_LEFT": 1, - "global.special": 1, - "MOUSE_RIGHT": 1, - "global.taunt": 1, - "global.chat1": 1, - "global.chat2": 1, - "global.chat3": 1, - "global.medic": 1, - "global.drop": 1, - "global.changeTeam": 1, - "global.changeClass": 1, - "global.showScores": 1, - "vk_shift": 1, - "calculateMonthAndDay": 1, - "loadplugins": 1, - "registry_set_root": 1, - "HKLM": 1, - "global.NTKernelVersion": 1, - "registry_read_string_ext": 1, - "CurrentVersion": 1, - "SIC": 1, - "sprite_replace": 1, - "sprite_set_offset": 1, - "sprite_get_width": 1, - "/2": 2, - "sprite_get_height": 1, - "AudioControlToggleMute": 1, - "room_goto_fix": 2, - "Menu": 2, - "assert_true": 1, - "_assert_error_popup": 2, - "string_repeat": 2, - "_assert_newline": 2, - "assert_false": 1, - "assert_equal": 1, - "//Safe": 1, - "equality": 1, - "check": 1, - "won": 1, - "support": 1, - "show_error": 2, - "instead": 1, - "_assert_debug_value": 1, - "//String": 1, - "is_string": 2, - "os_browser": 1, - "browser_not_a_browser": 1, - "string_replace_all": 1, - "//Numeric": 1, - "GMTuple": 1, - "jso_encode_string": 1, - "failed": 56, - "encode": 8, - "escape": 2, - "jso_encode_map": 4, - "empty": 13, - "key": 17, - "one": 42, - "key1": 3, - "key2": 3, - "multi": 7, - "jso_encode_list": 3, - "three": 36, - "_jso_decode_string": 5, - "decode": 36, - "small": 1, - "The": 6, - "quick": 2, - "brown": 2, - "fox": 2, - "jumps": 3, - "over": 2, - "lazy": 2, - "dog.": 2, - "simple": 1, - "characters": 3, - "Waahoo": 1, - "negg": 1, - "mixed": 1, - "_jso_decode_boolean": 2, - "_jso_decode_real": 11, - "standard": 1, - "zero": 4, - "signed": 2, - "decimal": 1, - "digits": 1, - "positive": 7, - "negative": 7, - "exponent": 4, - "_jso_decode_integer": 3, - "_jso_decode_map": 14, - "didn": 14, - "include": 14, - "right": 14, - "prefix": 14, - "#1": 14, - "#2": 14, - "entry": 29, - "pi": 2, - "bool": 2, - "waahoo": 10, - "woohah": 8, - "mix": 4, - "_jso_decode_list": 14, - "woo": 2, - "Empty": 4, - "should": 25, - "equal": 20, - "other.": 12, - "junk": 2, - "info": 1, - "taxi": 1, - "An": 4, - "filled": 4, - "map.": 2, - "A": 24, - "B": 18, - "C": 8, - "same": 6, - "content": 4, - "entered": 4, - "different": 12, - "orders": 4, - "D": 1, - "keys": 2, - "values": 4, - "six": 1, - "corresponding": 4, - "types": 4, - "other": 4, - "crash.": 4, - "list.": 2, - "Lists": 4, - "two": 16, - "entries": 2, - "also": 2, - "jso_map_check": 9, - "existing": 9, - "single": 11, - "jso_map_lookup": 3, - "found": 21, - "wrong": 10, - "trap": 2, - "jso_map_lookup_type": 3, - "four": 21, - "inexistent": 11, - "multiple": 20, - "jso_list_check": 8, - "jso_list_lookup": 3, - "jso_list_lookup_type": 3, - "inner": 1, - "indexing": 1, - "on": 4, - "bad": 1, - "jso_cleanup_map": 1, - "one_map": 1, "hangCountMax": 2, "//////////////////////////////////////": 2, "kLeft": 12, @@ -24104,6 +23382,7 @@ "isCollisionPlatformBottom": 1, "isCollisionPlatform": 1, "isCollisionWaterTop": 1, + "collision_point": 30, "oIce": 1, "checkRun": 1, "runHeld": 3, @@ -24115,11 +23394,20 @@ "ON_GROUND": 18, "DUCKING": 4, "pushTimer": 3, + "//if": 5, "SS_IsSoundPlaying": 2, "global.sndPush": 4, "playSound": 3, "runAcc": 2, + "abs": 9, + "alarm": 13, + "[": 99, + "]": 103, + "<": 39, + "floor": 11, + "/": 5, "/xVel": 1, + "instance_exists": 8, "oCape": 2, "oCape.open": 6, "kJumped": 7, @@ -24141,13 +23429,17 @@ "gravityIntensity": 2, "yVel": 20, "RUNNING": 3, + "jumps": 3, "//playSound": 1, "global.sndLand": 1, "grav": 22, "global.hasGloves": 3, "hangCount": 14, + "*": 18, "yVel*0.3": 1, "oWeb": 2, + "obj": 14, + "instance_place": 3, "obj.life": 1, "initialJumpAcc": 6, "xVel/2": 3, @@ -24161,12 +23453,15 @@ "global.sndJump": 1, "jumpTimeTotal": 2, "//let": 1, + "character": 20, "continue": 4, + "to": 62, "jump": 1, "jumpTime/jumpTimeTotal": 1, "looking": 2, "UP": 1, "LOOKING_UP": 4, + "oSolid": 14, "move_snap": 6, "oTree": 4, "oArrow": 5, @@ -24174,12 +23469,16 @@ "obj.stuck": 1, "//the": 2, "can": 1, + "t": 23, "want": 1, + "use": 4, "because": 2, "is": 9, "too": 2, "high": 1, "yPrevHigh": 1, + "//": 11, + "we": 5, "ll": 1, "move": 2, "correct": 1, @@ -24188,6 +23487,7 @@ "need": 1, "shorten": 1, "out": 4, + "a": 55, "little": 1, "ratio": 1, "xVelInteger": 2, @@ -24196,6 +23496,7 @@ "be": 4, "changed": 1, "moveTo": 2, + "round": 6, "xVelInteger*ratio": 1, "yVelInteger*ratio": 1, "slopeChangeInY": 1, @@ -24207,6 +23508,7 @@ "so": 2, "down": 1, "upYPrev": 1, + "for": 26, "<=upYPrev+maxDownSlope;y+=1)>": 1, "hit": 1, "solid": 1, @@ -24214,20 +23516,27 @@ "upYPrev=": 1, "I": 1, "know": 1, + "that": 2, "this": 2, "doesn": 1, "seem": 1, "make": 1, "sense": 1, + "of": 25, + "name": 9, "variable": 1, + "it": 6, "all": 3, "works": 1, "correctly": 1, "after": 1, + "break": 58, "loop": 1, "y=": 1, "figures": 1, "what": 1, + "index": 11, + "should": 25, "characterSprite": 1, "sets": 1, "previous": 2, @@ -24237,34 +23546,1053 @@ "calculates": 1, "image_speed": 9, "based": 1, + "on": 4, + "s": 6, "velocity": 1, "runAnimSpeed": 1, + "0": 21, + "1": 32, "sqrt": 1, "sqr": 2, "climbAnimSpeed": 1, + "<=>": 3, + "4": 2, "setCollisionBounds": 3, "8": 9, "5": 5, "DUCKTOHANG": 1, "image_index": 1, "limit": 5, + "at": 23, "animation": 1, "always": 1, "looks": 1, "good": 1, + "var": 79, + "i": 95, + "playerObject": 1, + "playerID": 1, + "player": 36, + "otherPlayerID": 1, + "otherPlayer": 1, + "sameVersion": 1, + "buffer": 1, + "plugins": 4, + "pluginsRequired": 2, + "usePlugins": 1, + "tcp_eof": 3, + "global.serverSocket": 10, + "gotServerHello": 2, + "show_message": 7, + "instance_destroy": 7, + "exit": 10, + "room": 1, + "DownloadRoom": 1, + "keyboard_check": 1, + "vk_escape": 1, + "downloadingMap": 2, + "while": 15, + "tcp_receive": 3, + "min": 4, + "downloadMapBytes": 2, + "buffer_size": 2, + "downloadMapBuffer": 6, + "write_buffer": 2, + "write_buffer_to_file": 1, + "downloadMapName": 3, + "buffer_destroy": 8, + "roomchange": 2, + "do": 1, + "switch": 9, + "read_ubyte": 10, + "case": 50, + "HELLO": 1, + "global.joinedServerName": 2, + "receivestring": 4, + "advertisedMapMd5": 1, + "receiveCompleteMessage": 1, + "global.tempBuffer": 3, + "string_pos": 20, + "Server": 3, + "sent": 7, + "illegal": 2, + "map": 47, + "This": 2, + "server": 10, + "requires": 1, + "following": 2, + "play": 2, + "#": 3, + "suggests": 1, + "optional": 1, + "Error": 2, + "ocurred": 1, + "loading": 1, + "plugins.": 1, + "Maps/": 2, + ".png": 2, + "The": 6, + "version": 4, + "Enter": 1, + "Password": 1, + "Incorrect": 1, + "Password.": 1, + "Incompatible": 1, + "protocol": 3, + "version.": 1, + "Name": 1, + "Exploit": 1, + "Invalid": 2, + "plugin": 6, + "packet": 3, + "ID": 2, + "There": 1, + "are": 1, + "many": 1, + "connections": 1, + "from": 5, + "your": 1, + "IP": 1, + "You": 1, + "have": 2, + "been": 1, + "kicked": 1, + "server.": 1, + ".": 12, + "#Server": 1, + "went": 1, + "invalid": 1, + "internal": 1, + "#Exiting.": 1, + "full.": 1, + "noone": 7, + "ERROR": 1, + "when": 1, + "reading": 1, + "no": 1, + "such": 1, + "unexpected": 1, + "data.": 1, + "until": 1, + "downloadHandle": 3, + "url": 62, + "tmpfile": 3, + "window_oldshowborder": 2, + "window_oldfullscreen": 2, + "timeLeft": 1, + "counter": 1, + "AudioControlPlaySong": 1, + "window_get_showborder": 1, + "window_get_fullscreen": 1, + "window_set_fullscreen": 2, + "window_set_showborder": 1, + "global.updaterBetaChannel": 3, + "UPDATE_SOURCE_BETA": 1, + "UPDATE_SOURCE": 1, + "temp_directory": 1, + "httpGet": 1, + "httpRequestStatus": 1, + "download": 1, + "isn": 1, + "extract": 1, + "downloaded": 1, + "file": 2, + "now.": 1, + "extractzip": 1, + "working_directory": 6, + "execute_program": 1, + "game_end": 1, + "victim": 10, + "killer": 11, + "assistant": 16, + "damageSource": 18, + "argument0": 28, + "argument1": 10, + "argument2": 3, + "argument3": 1, + "//*************************************": 6, + "//*": 3, + "Scoring": 1, + "Kill": 1, + "log": 1, + "recordKillInLog": 1, + "victim.stats": 1, + "DEATHS": 1, + "WEAPON_KNIFE": 1, + "||": 16, + "WEAPON_BACKSTAB": 1, + "killer.stats": 8, + "STABS": 2, + "killer.roundStats": 8, + "POINTS": 10, + "victim.object.currentWeapon.object_index": 1, + "Medigun": 2, + "victim.object.currentWeapon.uberReady": 1, + "BONUS": 2, + "KILLS": 2, + "victim.object.intel": 1, + "DEFENSES": 2, + "recordEventInLog": 1, + "killer.team": 1, + "killer.name": 2, + "global.myself": 4, + "assistant.stats": 2, + "ASSISTS": 2, + "assistant.roundStats": 2, + ".5": 2, + "//SPEC": 1, + "instance_create": 20, + "victim.object.x": 3, + "victim.object.y": 3, + "Spectator": 1, + "Gibbing": 2, + "xoffset": 5, + "yoffset": 5, + "xsize": 3, + "ysize": 3, + "view_xview": 3, + "view_yview": 3, + "view_wview": 2, + "view_hview": 2, + "randomize": 1, + "with": 47, + "victim.object": 2, + "WEAPON_ROCKETLAUNCHER": 1, + "WEAPON_MINEGUN": 1, + "FRAG_BOX": 2, + "WEAPON_REFLECTED_STICKY": 1, + "WEAPON_REFLECTED_ROCKET": 1, + "FINISHED_OFF_GIB": 2, + "GENERATOR_EXPLOSION": 2, + "player.class": 15, + "CLASS_QUOTE": 3, + "global.gibLevel": 14, + "distance_to_point": 3, + "xsize/2": 2, + "ysize/2": 2, + "hasReward": 4, + "repeat": 7, + "createGib": 14, + "PumpkinGib": 1, + "hspeed": 14, + "vspeed": 13, + "random": 21, + "choose": 8, + "Gib": 1, + "player.team": 8, + "TEAM_BLUE": 6, + "BlueClump": 1, + "TEAM_RED": 8, + "RedClump": 1, + "blood": 2, + "BloodDrop": 1, + "blood.hspeed": 1, + "blood.vspeed": 1, + "blood.sprite_index": 1, + "PumpkinJuiceS": 1, + "//All": 1, + "Classes": 1, + "gib": 1, + "head": 1, + "hands": 2, + "feet": 1, + "Headgib": 1, + "//Medic": 1, + "has": 2, + "specially": 1, + "colored": 1, + "CLASS_MEDIC": 2, + "Hand": 3, + "Feet": 1, + "//Class": 1, + "specific": 1, + "gibs": 1, + "CLASS_PYRO": 2, + "Accesory": 5, + "CLASS_SOLDIER": 2, + "CLASS_ENGINEER": 3, + "CLASS_SNIPER": 3, + "playsound": 2, + "deadbody": 2, + "DeathSnd1": 1, + "DeathSnd2": 1, + "DeadGuy": 1, + "deadbody.sprite_index": 2, + "haxxyStatue": 1, + "deadbody.image_index": 2, + "CHARACTER_ANIMATION_DEAD": 1, + "deadbody.hspeed": 1, + "deadbody.vspeed": 1, + "deadbody.image_xscale": 1, + "global.gg_birthday": 1, + "myHat": 2, + "PartyHat": 1, + "myHat.image_index": 2, + "victim.team": 2, + "global.xmas": 1, + "XmasHat": 1, + "Deathcam": 1, + "global.killCam": 3, + "KILL_BOX": 1, + "FINISHED_OFF": 5, + "DeathCam": 1, + "DeathCam.killedby": 1, + "DeathCam.name": 1, + "DeathCam.oldxview": 1, + "DeathCam.oldyview": 1, + "DeathCam.lastDamageSource": 1, + "DeathCam.team": 1, + "global.myself.team": 3, + "xr": 19, + "yr": 19, + "cloakAlpha": 1, + "team": 13, + "canCloak": 1, + "cloakAlpha/2": 1, + "invisible": 1, + "stabbing": 2, + "power": 1, + "currentWeapon.stab.alpha": 1, + "&&": 6, + "global.showHealthBar": 3, + "draw_set_alpha": 3, + "draw_healthbar": 1, + "hp*100/maxHp": 1, + "c_black": 1, + "c_red": 3, + "c_green": 1, + "mouse_x": 1, + "mouse_y": 1, + "<25)>": 1, + "cloak": 2, + "global": 8, + "myself": 2, + "draw_set_halign": 1, + "fa_center": 1, + "draw_set_valign": 1, + "fa_bottom": 1, + "team=": 1, + "draw_set_color": 2, + "c_blue": 2, + "draw_text": 4, + "35": 1, + "showTeammateStats": 1, + "weapons": 3, + "50": 3, + "Superburst": 1, + "string": 13, + "currentWeapon": 2, + "uberCharge": 1, + "20": 1, + "Shotgun": 1, + "Nuts": 1, + "N": 1, + "Bolts": 1, + "nutsNBolts": 1, + "Minegun": 1, + "Lobbed": 1, + "Mines": 1, + "lobbed": 1, + "ubercolour": 6, + "overlaySprite": 6, + "zoomed": 1, + "SniperCrouchRedS": 1, + "SniperCrouchBlueS": 1, + "sniperCrouchOverlay": 1, + "overlay": 1, + "omnomnomnom": 2, + "draw_sprite_ext_overlay": 7, + "omnomnomnomSprite": 2, + "omnomnomnomOverlay": 2, + "omnomnomnomindex": 4, + "c_white": 13, + "ubered": 7, + "7": 4, + "taunting": 2, + "tauntsprite": 2, + "tauntOverlay": 2, + "tauntindex": 2, + "humiliated": 1, + "humiliationPoses": 1, + "animationImage": 9, + "humiliationOffset": 1, + "animationOffset": 6, + "burnDuration": 2, + "burnIntensity": 2, + "numFlames": 1, + "maxIntensity": 1, + "FlameS": 1, + "flameArray_x": 1, + "flameArray_y": 1, + "maxDuration": 1, + "demon": 4, + "demonX": 5, + "median": 2, + "demonY": 4, + "demonOffset": 4, + "demonDir": 2, + "dir": 3, + "demonFrame": 5, + "sprite_get_number": 1, + "*player.team": 2, + "dir*1": 2, + "#define": 26, + "__http_init": 3, + "global.__HttpClient": 4, + "object_add": 1, + "object_set_persistent": 1, + "__http_split": 3, + "text": 19, + "delimeter": 7, + "list": 36, + "count": 4, + "ds_list_create": 5, + "ds_list_add": 23, + "string_copy": 32, + "string_length": 25, + "return": 56, + "__http_parse_url": 4, + "ds_map_create": 4, + "ds_map_add": 15, + "colonPos": 22, + "string_char_at": 13, + "slashPos": 13, + "real": 14, + "queryPos": 12, + "ds_map_destroy": 6, + "__http_resolve_url": 2, + "baseUrl": 3, + "refUrl": 18, + "urlParts": 15, + "refUrlParts": 5, + "canParseRefUrl": 3, + "result": 11, + "ds_map_find_value": 22, + "__http_resolve_path": 3, + "ds_map_replace": 3, + "ds_map_exists": 11, + "ds_map_delete": 1, + "path": 10, + "query": 4, + "relUrl": 1, + "__http_construct_url": 2, + "basePath": 4, + "refPath": 7, + "parts": 29, + "refParts": 5, + "lastPart": 3, + "ds_list_find_value": 9, + "ds_list_size": 11, + "ds_list_delete": 5, + "ds_list_destroy": 4, + "part": 6, + "ds_list_replace": 3, + "__http_parse_hex": 2, + "hexString": 4, + "hexValues": 3, + "digit": 4, + "__http_prepare_request": 4, + "client": 33, + "headers": 11, + "parsed": 18, + "show_error": 2, + "destroyed": 3, + "CR": 10, + "chr": 3, + "LF": 5, + "CRLF": 17, + "socket": 40, + "tcp_connect": 1, + "errored": 19, + "error": 18, + "linebuf": 33, + "line": 19, + "statusCode": 6, + "reasonPhrase": 2, + "responseBody": 19, + "buffer_create": 7, + "responseBodySize": 5, + "responseBodyProgress": 5, + "responseHeaders": 9, + "requestUrl": 2, + "requestHeaders": 2, + "write_string": 9, + "key": 17, + "ds_map_find_first": 1, + "is_string": 2, + "ds_map_find_next": 1, + "socket_send": 1, + "__http_parse_header": 3, + "ord": 16, + "headerValue": 9, + "string_lower": 3, + "headerName": 4, + "__http_client_step": 2, + "socket_has_error": 1, + "socket_error": 1, + "__http_client_destroy": 20, + "available": 7, + "tcp_receive_available": 1, + "bytesRead": 6, + "c": 20, + "read_string": 9, + "Reached": 2, + "end": 11, + "HTTP": 1, + "defines": 1, + "sequence": 2, + "as": 1, + "marker": 1, + "elements": 1, + "except": 2, + "entity": 1, + "body": 2, + "see": 1, + "appendix": 1, + "19": 1, + "3": 1, + "tolerant": 1, + "applications": 1, + "Strip": 1, + "trailing": 1, + "First": 1, + "status": 2, + "code": 2, + "first": 3, + "Response": 1, + "message": 1, + "Status": 1, + "Line": 1, + "consisting": 1, + "followed": 1, + "by": 5, + "numeric": 1, + "its": 1, + "associated": 1, + "textual": 1, + "phrase": 1, + "each": 18, + "element": 8, + "separated": 1, + "SP": 1, + "characters": 3, + "No": 3, + "allowed": 1, + "in": 21, + "final": 1, + "httpVer": 2, + "spacePos": 11, + "space": 4, + "response": 5, + "second": 2, + "Other": 1, + "Blank": 1, + "write": 1, + "remainder": 1, + "write_buffer_part": 3, + "Header": 1, + "Receiving": 1, + "transfer": 6, + "encoding": 2, + "chunked": 4, + "Chunked": 1, + "let": 1, + "decode": 36, + "actualResponseBody": 8, + "actualResponseSize": 1, + "actualResponseBodySize": 3, + "Parse": 1, + "chunks": 1, + "chunk": 12, + "size": 7, + "extension": 3, + "data": 4, + "HEX": 1, + "buffer_bytes_left": 6, + "chunkSize": 11, + "Read": 1, + "byte": 2, + "We": 1, + "found": 21, + "semicolon": 1, + "beginning": 1, + "skip": 1, + "stuff": 2, + "header": 2, + "Doesn": 1, + "did": 1, + "empty": 13, + "something": 1, + "up": 6, + "Parsing": 1, + "failed": 56, + "hex": 2, + "was": 1, + "hexadecimal": 1, + "Is": 1, + "bigger": 2, + "than": 1, + "remaining": 1, + "2": 2, + "responseHaders": 1, + "location": 4, + "resolved": 5, + "socket_destroy": 4, + "http_new_get": 1, + "variable_global_exists": 2, + "http_new_get_ex": 1, + "http_step": 1, + "client.errored": 3, + "client.state": 3, + "http_status_code": 1, + "client.statusCode": 1, + "http_reason_phrase": 1, + "client.error": 1, + "client.reasonPhrase": 1, + "http_response_body": 1, + "client.responseBody": 1, + "http_response_body_size": 1, + "client.responseBodySize": 1, + "http_response_body_progress": 1, + "client.responseBodyProgress": 1, + "http_response_headers": 1, + "client.responseHeaders": 1, + "http_destroy": 1, + "RoomChangeObserver": 1, + "set_little_endian_global": 1, + "file_exists": 5, + "file_delete": 3, + "backupFilename": 5, + "file_find_first": 1, + "file_find_next": 1, + "file_find_close": 1, + "customMapRotationFile": 7, + "restart": 4, + "//import": 1, + "wav": 1, + "files": 1, + "music": 1, + "global.MenuMusic": 3, + "sound_add": 3, + "global.IngameMusic": 3, + "global.FaucetMusic": 3, + "sound_volume": 3, + "global.sendBuffer": 19, + "global.HudCheck": 1, + "global.map_rotation": 19, + "global.CustomMapCollisionSprite": 1, + "window_set_region_scale": 1, + "ini_open": 2, + "global.playerName": 7, + "ini_read_string": 12, + "string_count": 2, + "MAX_PLAYERNAME_LENGTH": 2, + "global.fullscreen": 3, + "ini_read_real": 65, + "global.useLobbyServer": 2, + "global.hostingPort": 2, + "global.music": 2, + "MUSIC_BOTH": 1, + "global.playerLimit": 4, + "//thy": 1, + "playerlimit": 1, + "shalt": 1, + "exceed": 1, + "global.dedicatedMode": 7, + "ini_write_real": 60, + "global.multiClientLimit": 2, + "global.particles": 2, + "PARTICLES_NORMAL": 1, + "global.monitorSync": 3, + "set_synchronization": 2, + "global.medicRadar": 2, + "global.showHealer": 2, + "global.showHealing": 2, + "global.showTeammateStats": 2, + "global.serverPluginsPrompt": 2, + "global.restartPrompt": 2, + "//user": 1, + "HUD": 1, + "settings": 1, + "global.timerPos": 2, + "global.killLogPos": 2, + "global.kothHudPos": 2, + "global.clientPassword": 1, + "global.shuffleRotation": 2, + "global.timeLimitMins": 2, + "max": 2, + "global.serverPassword": 2, + "global.mapRotationFile": 1, + "global.serverName": 2, + "global.welcomeMessage": 2, + "global.caplimit": 3, + "global.caplimitBkup": 1, + "global.autobalance": 2, + "global.Server_RespawntimeSec": 4, + "global.rewardKey": 1, + "unhex": 1, + "global.rewardId": 1, + "global.mapdownloadLimitBps": 2, + "isBetaVersion": 1, + "global.attemptPortForward": 2, + "global.serverPluginList": 3, + "global.serverPluginsRequired": 2, + "CrosshairFilename": 5, + "CrosshairRemoveBG": 4, + "global.queueJumping": 2, + "global.backgroundHash": 2, + "global.backgroundTitle": 2, + "global.backgroundURL": 2, + "global.backgroundShowVersion": 2, + "readClasslimitsFromIni": 1, + "global.currentMapArea": 1, + "global.totalMapAreas": 1, + "global.setupTimer": 1, + "global.serverPluginsInUse": 1, + "global.pluginPacketBuffers": 1, + "global.pluginPacketPlayers": 1, + "ini_write_string": 10, + "ini_key_delete": 1, + "global.classlimits": 10, + "CLASS_SCOUT": 1, + "CLASS_HEAVY": 2, + "CLASS_DEMOMAN": 1, + "CLASS_SPY": 1, + "//screw": 1, + "will": 1, + "start": 1, + "//map_truefort": 1, + "maps": 37, + "//map_2dfort": 1, + "//map_conflict": 1, + "//map_classicwell": 1, + "//map_waterway": 1, + "//map_orange": 1, + "//map_dirtbowl": 1, + "//map_egypt": 1, + "//arena_montane": 1, + "//arena_lumberyard": 1, + "//gen_destroy": 1, + "//koth_valley": 1, + "//koth_corinth": 1, + "//koth_harvest": 1, + "//dkoth_atalia": 1, + "//dkoth_sixties": 1, + "//Server": 1, + "respawn": 1, + "time": 1, + "calculator.": 1, + "Converts": 1, + "frame.": 1, + "read": 1, + "multiply": 1, + "hehe": 1, + "global.Server_Respawntime": 3, + "global.mapchanging": 1, + "ini_close": 2, + "global.protocolUuid": 2, + "parseUuid": 2, + "PROTOCOL_UUID": 1, + "global.gg2lobbyId": 2, + "GG2_LOBBY_UUID": 1, + "initRewards": 1, + "IPRaw": 3, + "portRaw": 3, + "doubleCheck": 8, + "global.launchMap": 5, + "parameter_count": 1, + "parameter_string": 8, + "global.serverPort": 1, + "global.serverIP": 1, + "global.isHost": 1, + "Client": 1, + "global.customMapdesginated": 2, + "fileHandle": 6, + "mapname": 9, + "file_text_open_read": 1, + "file_text_eof": 1, + "file_text_read_string": 1, + "starts": 1, + "tab": 2, + "string_delete": 1, + "delete": 1, + "comment": 1, + "starting": 1, + "file_text_readln": 1, + "file_text_close": 1, + "load": 1, + "ini": 1, + "Maps": 9, + "section": 1, + "//Set": 1, + "rotation": 1, + "sort_list": 7, + "*maps": 1, + "ds_list_sort": 1, + "mod": 1, + "global.gg2Font": 2, + "font_add_sprite": 2, + "gg2FontS": 1, + "global.countFont": 1, + "countFontS": 1, + "draw_set_font": 1, + "cursor_sprite": 1, + "CrosshairS": 5, + "directory_exists": 2, + "directory_create": 2, + "AudioControl": 1, + "SSControl": 1, + "message_background": 1, + "popupBackgroundB": 1, + "message_button": 1, + "popupButtonS": 1, + "message_text_font": 1, + "message_button_font": 1, + "message_input_font": 1, + "//Key": 1, + "Mapping": 1, + "global.jump": 1, + "global.down": 1, + "global.left": 1, + "global.right": 1, + "global.attack": 1, + "MOUSE_LEFT": 1, + "global.special": 1, + "MOUSE_RIGHT": 1, + "global.taunt": 1, + "global.chat1": 1, + "global.chat2": 1, + "global.chat3": 1, + "global.medic": 1, + "global.drop": 1, + "global.changeTeam": 1, + "global.changeClass": 1, + "global.showScores": 1, + "vk_shift": 1, + "calculateMonthAndDay": 1, + "loadplugins": 1, + "registry_set_root": 1, + "HKLM": 1, + "global.NTKernelVersion": 1, + "registry_read_string_ext": 1, + "CurrentVersion": 1, + "SIC": 1, + "sprite_replace": 1, + "sprite_set_offset": 1, + "sprite_get_width": 1, + "/2": 2, + "sprite_get_height": 1, + "AudioControlToggleMute": 1, + "room_goto_fix": 2, + "Menu": 2, + "__jso_gmt_tuple": 1, + "//Position": 1, + "address": 1, + "table": 1, + "pos": 2, + "addr_table": 2, + "*argument_count": 1, + "//Build": 1, + "tuple": 1, + "ca": 1, + "isstr": 1, + "datastr": 1, + "argument_count": 1, + "//Check": 1, + "argument": 10, + "Unexpected": 18, + "position": 16, + "f": 5, + "JSON": 5, + "string.": 5, + "Cannot": 5, + "parse": 3, + "boolean": 3, + "value": 13, + "expecting": 9, + "digit.": 9, + "e": 4, + "E": 4, + "dot": 1, + "an": 24, + "integer": 6, + "Expected": 6, + "least": 6, + "arguments": 26, + "got": 6, + "find": 10, + "lookup.": 4, + "indices": 1, + "nested": 27, + "lists": 6, + "Index": 1, + "overflow": 4, + "Recursive": 1, + "abcdef": 1, + "number": 7, + "num": 1, + "assert_true": 1, + "_assert_error_popup": 2, + "string_repeat": 2, + "_assert_newline": 2, + "assert_false": 1, + "assert_equal": 1, + "//Safe": 1, + "equality": 1, + "check": 1, + "won": 1, + "support": 1, + "instead": 1, + "_assert_debug_value": 1, + "//String": 1, + "os_browser": 1, + "browser_not_a_browser": 1, + "string_replace_all": 1, + "//Numeric": 1, + "GMTuple": 1, + "jso_encode_string": 1, + "encode": 8, + "escape": 2, + "jso_encode_map": 4, + "one": 42, + "key1": 3, + "key2": 3, + "multi": 7, + "jso_encode_list": 3, + "three": 36, + "_jso_decode_string": 5, + "small": 1, + "quick": 2, + "brown": 2, + "fox": 2, + "over": 2, + "lazy": 2, + "dog.": 2, + "simple": 1, + "Waahoo": 1, + "negg": 1, + "mixed": 1, + "_jso_decode_boolean": 2, + "_jso_decode_real": 11, + "standard": 1, + "zero": 4, + "signed": 2, + "decimal": 1, + "digits": 1, + "positive": 7, + "negative": 7, + "exponent": 4, + "_jso_decode_integer": 3, + "_jso_decode_map": 14, + "didn": 14, + "include": 14, + "right": 14, + "prefix": 14, + "#1": 14, + "#2": 14, + "entry": 29, + "pi": 2, + "bool": 2, + "waahoo": 10, + "woohah": 8, + "mix": 4, + "_jso_decode_list": 14, + "woo": 2, + "Empty": 4, + "equal": 20, + "other.": 12, + "junk": 2, + "info": 1, + "taxi": 1, + "An": 4, + "filled": 4, + "map.": 2, + "A": 24, + "B": 18, + "C": 8, + "same": 6, + "content": 4, + "entered": 4, + "different": 12, + "orders": 4, + "D": 1, + "keys": 2, + "values": 4, + "six": 1, + "corresponding": 4, + "types": 4, + "other": 4, + "crash.": 4, + "list.": 2, + "Lists": 4, + "two": 16, + "entries": 2, + "also": 2, + "jso_map_check": 9, + "existing": 9, + "single": 11, + "jso_map_lookup": 3, + "wrong": 10, + "trap": 2, + "jso_map_lookup_type": 3, + "type": 8, + "four": 21, + "inexistent": 11, + "multiple": 20, + "jso_list_check": 8, + "jso_list_lookup": 3, + "jso_list_lookup_type": 3, + "inner": 1, + "indexing": 1, + "bad": 1, + "jso_cleanup_map": 1, + "one_map": 1, + "hashList": 5, + "pluginname": 9, + "pluginhash": 4, + "realhash": 1, + "handle": 1, + "filesize": 1, + "progress": 1, + "tempfile": 1, + "tempdir": 1, + "lastContact": 2, + "isCached": 2, + "isDebug": 2, + "split": 1, + "checkpluginname": 1, + "ds_list_find_index": 1, + ".zip": 3, + "ServerPluginsCache": 6, + "@": 5, + ".zip.tmp": 1, + ".tmp": 2, + "ServerPluginsDebug": 1, + "Warning": 2, + "being": 2, + "loaded": 2, + "ServerPluginsDebug.": 2, + "Make": 2, + "sure": 2, + "clients": 1, + "they": 1, + "may": 2, + "unable": 2, + "connect.": 2, + "you": 1, + "Downloading": 1, + "last_plugin.log": 2, + "plugin.gml": 1, "playerId": 11, "commandLimitRemaining": 4, "variable_local_exists": 4, "commandReceiveState": 1, "commandReceiveExpectedBytes": 1, "commandReceiveCommand": 1, - "socket": 40, "player.socket": 12, - "tcp_receive": 3, "player.commandReceiveExpectedBytes": 7, "player.commandReceiveState": 7, "player.commandReceiveCommand": 4, - "read_ubyte": 10, "commandBytes": 2, "commandBytesInvalidCommand": 1, "commandBytesPrefixLength1": 1, @@ -24272,7 +24600,6 @@ "default": 1, "read_ushort": 2, "PLAYER_LEAVE": 1, - "socket_destroy": 4, "PLAYER_CHANGECLASS": 1, "class": 8, "getCharacterObject": 2, @@ -24296,7 +24623,6 @@ "redSuperiority": 6, "calculate": 1, "which": 1, - "bigger": 2, "Player": 1, "TEAM_SPECTATOR": 1, "newClass": 4, @@ -24343,8 +24669,6 @@ "KICK_NAME": 1, "current_time": 2, "lastNamechange": 2, - "read_string": 9, - "write_string": 9, "INPUTSTATE": 1, "keyState": 1, "netAimDirection": 1, @@ -24368,340 +24692,173 @@ "packetID": 3, "buf": 5, "success": 3, - "write_buffer_part": 3, "_PluginPacketPush": 1, - "buffer_destroy": 8, "KICK_BAD_PLUGIN_PACKET": 1, "CLIENT_SETTINGS": 2, "mirror": 4, "player.queueJump": 1, - "__http_init": 3, - "global.__HttpClient": 4, - "object_add": 1, - "object_set_persistent": 1, - "__http_split": 3, - "text": 19, - "delimeter": 7, - "count": 4, - "string_pos": 20, - "__http_parse_url": 4, - "ds_map_add": 15, - "colonPos": 22, - "slashPos": 13, - "queryPos": 12, - "ds_map_destroy": 6, - "__http_resolve_url": 2, - "baseUrl": 3, - "refUrl": 18, - "urlParts": 15, - "refUrlParts": 5, - "canParseRefUrl": 3, - "result": 11, - "ds_map_find_value": 22, - "__http_resolve_path": 3, - "ds_map_replace": 3, - "ds_map_exists": 11, - "ds_map_delete": 1, - "path": 10, - "query": 4, - "relUrl": 1, - "__http_construct_url": 2, - "basePath": 4, - "refPath": 7, - "parts": 29, - "refParts": 5, - "lastPart": 3, - "ds_list_delete": 5, - "part": 6, - "ds_list_replace": 3, - "__http_parse_hex": 2, - "hexString": 4, - "hexValues": 3, - "digit": 4, - "__http_prepare_request": 4, - "client": 33, - "headers": 11, - "parsed": 18, - "destroyed": 3, - "CR": 10, - "LF": 5, - "CRLF": 17, - "tcp_connect": 1, - "errored": 19, - "error": 18, - "linebuf": 33, - "line": 19, - "statusCode": 6, - "reasonPhrase": 2, - "responseBody": 19, - "responseBodySize": 5, - "responseBodyProgress": 5, - "responseHeaders": 9, - "requestUrl": 2, - "requestHeaders": 2, - "ds_map_find_first": 1, - "ds_map_find_next": 1, - "socket_send": 1, - "__http_parse_header": 3, - "headerValue": 9, - "string_lower": 3, - "headerName": 4, - "__http_client_step": 2, - "socket_has_error": 1, - "socket_error": 1, - "__http_client_destroy": 20, - "available": 7, - "tcp_receive_available": 1, - "tcp_eof": 3, - "bytesRead": 6, - "c": 20, - "Reached": 2, - "HTTP": 1, - "defines": 1, - "sequence": 2, - "as": 1, - "marker": 1, - "protocol": 3, - "elements": 1, - "except": 2, - "entity": 1, - "body": 2, - "see": 1, - "appendix": 1, - "19": 1, - "3": 1, - "tolerant": 1, - "applications": 1, - "Strip": 1, - "trailing": 1, - "First": 1, - "status": 2, - "code": 2, - "first": 3, - "Response": 1, - "message": 1, - "Status": 1, - "Line": 1, - "consisting": 1, - "version": 4, - "followed": 1, - "numeric": 1, - "its": 1, - "associated": 1, - "textual": 1, - "phrase": 1, - "separated": 1, - "SP": 1, - "No": 3, - "allowed": 1, - "final": 1, - "httpVer": 2, - "spacePos": 11, - "response": 5, - "Other": 1, - "Blank": 1, - "write": 1, - "remainder": 1, - "Header": 1, - "Receiving": 1, - "write_buffer": 2, - "transfer": 6, - "encoding": 2, - "chunked": 4, - "Chunked": 1, - "let": 1, - "actualResponseBody": 8, - "actualResponseSize": 1, - "actualResponseBodySize": 3, - "Parse": 1, - "chunks": 1, - "chunk": 12, - "size": 7, - "extension": 3, - "HEX": 1, - "buffer_bytes_left": 6, - "chunkSize": 11, - "Read": 1, - "byte": 2, - "We": 1, - "semicolon": 1, - "beginning": 1, - "skip": 1, - "header": 2, - "Doesn": 1, - "did": 1, - "something": 1, - "Parsing": 1, - "was": 1, - "hexadecimal": 1, - "Is": 1, - "than": 1, - "remaining": 1, - "responseHaders": 1, - "location": 4, - "resolved": 5, - "http_new_get": 1, - "variable_global_exists": 2, - "http_new_get_ex": 1, - "http_step": 1, - "client.errored": 3, - "client.state": 3, - "http_status_code": 1, - "client.statusCode": 1, - "http_reason_phrase": 1, - "client.error": 1, - "client.reasonPhrase": 1, - "http_response_body": 1, - "client.responseBody": 1, - "http_response_body_size": 1, - "client.responseBodySize": 1, - "http_response_body_progress": 1, - "client.responseBodyProgress": 1, - "http_response_headers": 1, - "client.responseHeaders": 1, - "http_destroy": 1, - "playerObject": 1, - "playerID": 1, - "otherPlayerID": 1, - "otherPlayer": 1, - "sameVersion": 1, - "buffer": 1, - "plugins": 4, - "pluginsRequired": 2, - "usePlugins": 1, - "global.serverSocket": 10, - "gotServerHello": 2, - "room": 1, - "DownloadRoom": 1, - "keyboard_check": 1, - "vk_escape": 1, - "downloadingMap": 2, - "downloadMapBytes": 2, - "buffer_size": 2, - "downloadMapBuffer": 6, - "write_buffer_to_file": 1, - "downloadMapName": 3, - "roomchange": 2, - "do": 1, - "HELLO": 1, - "receivestring": 4, - "advertisedMapMd5": 1, - "receiveCompleteMessage": 1, - "Server": 3, - "sent": 7, - "illegal": 2, - "This": 2, - "server": 10, - "requires": 1, - "following": 2, - "play": 2, - "suggests": 1, - "optional": 1, - "Error": 2, - "ocurred": 1, - "loading": 1, - "plugins.": 1, - "Maps/": 2, - ".png": 2, - "Enter": 1, - "Password": 1, - "Incorrect": 1, - "Password.": 1, - "Incompatible": 1, - "version.": 1, - "Name": 1, - "Exploit": 1, - "plugin": 6, - "packet": 3, - "ID": 2, - "There": 1, - "are": 1, - "many": 1, - "connections": 1, - "your": 1, - "IP": 1, - "You": 1, - "have": 2, - "been": 1, - "kicked": 1, - "server.": 1, - "#Server": 1, - "went": 1, - "invalid": 1, - "internal": 1, - "#Exiting.": 1, - "full.": 1, - "ERROR": 1, - "when": 1, - "reading": 1, - "no": 1, - "such": 1, - "unexpected": 1, - "data.": 1, - "until": 1, - "hashList": 5, - "pluginname": 9, - "pluginhash": 4, - "realhash": 1, - "handle": 1, - "filesize": 1, - "progress": 1, - "tempfile": 1, - "tempdir": 1, - "lastContact": 2, - "isCached": 2, - "isDebug": 2, - "split": 1, - "checkpluginname": 1, - "ds_list_find_index": 1, - ".zip": 3, - "ServerPluginsCache": 6, - "@": 5, - ".zip.tmp": 1, - ".tmp": 2, - "ServerPluginsDebug": 1, - "Warning": 2, - "being": 2, - "loaded": 2, - "ServerPluginsDebug.": 2, - "Make": 2, - "sure": 2, - "clients": 1, - "they": 1, - "may": 2, - "unable": 2, - "connect.": 2, - "you": 1, - "Downloading": 1, - "last_plugin.log": 2, - "plugin.gml": 1 + "global.levelType": 22, + "//global.currLevel": 1, + "global.currLevel": 22, + "global.hadDarkLevel": 4, + "global.startRoomX": 1, + "global.startRoomY": 1, + "global.endRoomX": 1, + "global.endRoomY": 1, + "oGame.levelGen": 2, + "j": 14, + "global.roomPath": 1, + "k": 5, + "global.lake": 3, + "isLevel": 1, + "999": 2, + "levelType": 2, + "16": 14, + "656": 3, + "oDark": 2, + "invincible": 2, + "sDark": 1, + "oTemple": 2, + "cityOfGold": 1, + "sTemple": 2, + "lake": 1, + "i*16": 8, + "j*16": 6, + "oLush": 2, + "obj.sprite_index": 4, + "sLush": 2, + "obj.invincible": 3, + "oBrick": 1, + "sBrick": 1, + "global.cityOfGold": 2, + "*16": 2, + "//instance_create": 2, + "oSpikes": 1, + "background_index": 1, + "bgTemple": 1, + "global.temp1": 1, + "global.gameStart": 3, + "scrLevelGen": 1, + "global.cemetary": 3, + "rand": 10, + "global.probCemetary": 1, + "oRoom": 1, + "scrRoomGen": 1, + "global.blackMarket": 3, + "scrRoomGenMarket": 1, + "scrRoomGen2": 1, + "global.yetiLair": 2, + "scrRoomGenYeti": 1, + "scrRoomGen3": 1, + "scrRoomGen4": 1, + "scrRoomGen5": 1, + "global.darkLevel": 4, + "global.noDarkLevel": 1, + "global.probDarkLevel": 1, + "oPlayer1.x": 2, + "oPlayer1.y": 2, + "oFlare": 1, + "global.genUdjatEye": 4, + "global.madeUdjatEye": 1, + "global.genMarketEntrance": 4, + "global.madeMarketEntrance": 1, + "////////////////////////////": 2, + "global.temp2": 1, + "isRoom": 3, + "scrEntityGen": 1, + "oEntrance": 1, + "global.customLevel": 1, + "oEntrance.x": 1, + "oEntrance.y": 1, + "global.snakePit": 1, + "global.alienCraft": 1, + "global.sacrificePit": 1, + "oPlayer1": 1, + "scrSetupWalls": 3, + "global.graphicsHigh": 1, + "tile_add": 4, + "bgExtrasLush": 1, + "*rand": 12, + "bgExtrasIce": 1, + "bgExtrasTemple": 1, + "bgExtras": 1, + "global.murderer": 1, + "global.thiefLevel": 1, + "isRealLevel": 1, + "oExit": 1, + "oShopkeeper": 1, + "obj.status": 1, + "oTreasure": 1, + "oWater": 1, + "sWaterTop": 1, + "sLavaTop": 1, + "scrCheckWaterTop": 1, + "global.temp3": 1 }, "Gnuplot": { "set": 98, + "label": 14, + "at": 14, + "-": 102, + "left": 15, + "norotate": 18, + "back": 23, + "textcolor": 13, + "rgb": 8, + "nopoint": 14, + "offset": 25, + "character": 22, + "lt": 15, + "style": 7, + "line": 4, + "linetype": 11, + "linecolor": 4, + "linewidth": 11, + "pointtype": 4, + "pointsize": 4, + "default": 4, + "pointinterval": 4, + "noxtics": 2, + "noytics": 2, + "title": 13, + "xlabel": 6, + "xrange": 3, + "[": 18, + "]": 18, + "noreverse": 13, + "nowriteback": 12, + "yrange": 4, + "bmargin": 1, + "unset": 2, + "colorbox": 3, + "plot": 3, + "cos": 9, + "(": 52, + "x": 7, + ")": 52, + "ls": 4, + ".2": 1, + ".4": 1, + ".6": 1, + ".8": 1, + "lc": 3, "boxwidth": 1, "absolute": 1, - "style": 7, "fill": 1, "solid": 1, "border": 3, - "lt": 15, - "-": 102, "key": 1, "inside": 1, "right": 1, "top": 1, "vertical": 2, "Right": 1, - "noreverse": 13, "noenhanced": 1, "autotitles": 1, "nobox": 1, "histogram": 1, "clustered": 1, "gap": 1, - "title": 13, - "offset": 25, - "character": 22, "datafile": 1, "missing": 1, "data": 1, @@ -24715,34 +24872,30 @@ "autojustify": 1, "norangelimit": 3, "font": 8, - "(": 52, - ")": 52, - "yrange": 4, - "[": 18, - "]": 18, - "nowriteback": 12, "i": 1, - "plot": 3, "using": 2, "xtic": 1, "ti": 4, "col": 4, "u": 25, + "SHEBANG#!gnuplot": 1, + "reset": 1, + "terminal": 1, + "png": 1, + "output": 1, + "ylabel": 5, + "#set": 2, + "xr": 1, + "yr": 1, + "pt": 2, + "notitle": 15, "dummy": 3, "v": 31, - "label": 14, - "at": 14, - "left": 15, - "norotate": 18, - "back": 23, - "nopoint": 14, "arrow": 7, "from": 7, "to": 7, "head": 7, "nofilled": 7, - "linetype": 11, - "linewidth": 11, "parametric": 3, "view": 3, "samples": 3, @@ -24753,10 +24906,6 @@ "altdiagonal": 2, "bentover": 2, "ztics": 2, - "xlabel": 6, - "textcolor": 13, - "xrange": 3, - "ylabel": 5, "zlabel": 4, "zrange": 2, "sinc": 13, @@ -24781,36 +24930,6 @@ "x9": 4, "splot": 3, "<": 10, - "notitle": 15, - "rgb": 8, - "line": 4, - "linecolor": 4, - "pointtype": 4, - "pointsize": 4, - "default": 4, - "pointinterval": 4, - "noxtics": 2, - "noytics": 2, - "bmargin": 1, - "unset": 2, - "colorbox": 3, - "cos": 9, - "x": 7, - "ls": 4, - ".2": 1, - ".4": 1, - ".6": 1, - ".8": 1, - "lc": 3, - "SHEBANG#!gnuplot": 1, - "reset": 1, - "terminal": 1, - "png": 1, - "output": 1, - "#set": 2, - "xr": 1, - "yr": 1, - "pt": 2, "xmin": 3, "xmax": 1, "n": 1, @@ -24850,13 +24969,6 @@ "pal": 1 }, "Gosu": { - "function": 11, - "hello": 1, - "(": 53, - ")": 54, - "{": 28, - "print": 3, - "}": 28, "<%!-->": 1, "defined": 1, "in": 3, @@ -24866,32 +24978,49 @@ "%": 2, "@": 1, "params": 1, + "(": 53, "users": 2, "Collection": 1, "": 1, + ")": 54, "<%>": 2, "for": 2, "user": 1, + "{": 28, "user.LastName": 1, + "}": 28, "user.FirstName": 1, "user.Department": 1, "package": 2, "example": 2, + "enhancement": 1, + "String": 6, + "function": 11, + "toPerson": 1, + "Person": 7, + "var": 10, + "vals": 4, + "this.split": 1, + "return": 4, + "new": 6, + "[": 4, + "]": 4, + "as": 3, + "int": 2, + "Relationship.valueOf": 2, + "hello": 1, + "print": 3, "uses": 2, "java.util.*": 1, "java.io.File": 1, "class": 1, - "Person": 7, "extends": 1, "Contact": 1, "implements": 1, "IEmailable": 2, - "var": 10, "_name": 4, - "String": 6, "_age": 3, "Integer": 3, - "as": 3, "Age": 1, "_relationship": 2, "Relationship": 3, @@ -24906,7 +25035,6 @@ "BUSINESS_CONTACT": 1, "static": 7, "ALL_PEOPLE": 2, - "new": 6, "HashMap": 1, "": 1, "construct": 1, @@ -24918,7 +25046,6 @@ "property": 2, "get": 1, "Name": 3, - "return": 4, "set": 1, "override": 1, "getEmailName": 1, @@ -24933,9 +25060,7 @@ ".Name": 1, "throw": 1, "IllegalArgumentException": 1, - "[": 4, "p.Name": 2, - "]": 4, "addAllPeople": 1, "contacts": 2, "List": 1, @@ -24946,7 +25071,6 @@ "not": 1, "contact.Name": 1, "getAllPeopleOlderThanNOrderedByName": 1, - "int": 2, "allPeople": 1, "ALL_PEOPLE.Values": 3, "allPeople.where": 1, @@ -24966,7 +25090,6 @@ "result.next": 1, "result.getString": 2, "result.getInt": 1, - "Relationship.valueOf": 2, "loadFromFile": 1, "file": 3, "File": 2, @@ -24978,13 +25101,26 @@ "writer": 2, "FileWriter": 1, "PersonCSVTemplate.renderToString": 1, - "PersonCSVTemplate.render": 1, - "enhancement": 1, - "toPerson": 1, - "vals": 4, - "this.split": 1 + "PersonCSVTemplate.render": 1 }, "Grace": { + "method": 10, + "ack": 4, + "(": 215, + "m": 5, + "Number": 4, + "n": 4, + ")": 215, + "-": 16, + "{": 61, + "print": 2, + "if": 23, + "<": 5, + "then": 24, + "+": 29, + "}": 61, + "elseif": 1, + "else": 7, "import": 7, "as": 7, "gtk": 1, @@ -24998,9 +25134,7 @@ "def": 56, "window": 2, "gtk.window": 3, - "(": 215, "gtk.GTK_WINDOW_TOPLEVEL": 3, - ")": 215, "window.title": 1, "window.set_default_size": 1, "var": 33, @@ -25047,15 +25181,11 @@ "highlighter.Syntax_Highlighter.new": 1, "tEdit.buffer.on": 1, "do": 14, - "{": 61, "lighter.highlightLine": 1, - "}": 61, "completer": 1, "aComp.Auto_Completer.new": 1, - "method": 10, "deleteCompileFiles": 3, "page_num": 7, - "Number": 4, "cur_scrolled": 9, "scrolled_map.get": 8, "filename": 6, @@ -25063,12 +25193,10 @@ "filename.substringFrom": 1, "to": 1, "filename.size": 1, - "-": 16, "//Removes": 1, ".grace": 1, "extension": 1, "io.system": 13, - "+": 29, "currentConsole": 17, "//": 3, "Which": 1, @@ -25102,10 +25230,8 @@ "outputFile.read": 1, "errorFile.read": 1, "switched": 4, - "if": 23, "outText.size": 2, "&&": 4, - "then": 24, "switch_to_output": 3, "errorText.size": 2, "switch_to_errors": 3, @@ -25115,7 +25241,6 @@ "errorButton.on": 1, "popButton.on": 1, "popIn": 2, - "else": 7, "popOut": 2, "newButton.on": 1, "new_window_class": 1, @@ -25143,7 +25268,6 @@ "s_map": 2, "x": 21, "while": 3, - "<": 5, "eValue": 4, "sValue": 4, "e_map.put": 2, @@ -25198,14 +25322,9 @@ "mBox.add": 3, "window.add": 1, "exit": 2, - "print": 2, "gtk.main_quit": 1, "window.connect": 1, - "gtk.main": 1, - "ack": 4, - "m": 5, - "n": 4, - "elseif": 1 + "gtk.main": 1 }, "Grammatical Framework": { "-": 594, @@ -25216,37 +25335,13 @@ "Ranta": 13, "under": 33, "LGPL": 33, - "instance": 5, - "LexFoodsFin": 2, - "of": 89, - "LexFoods": 12, - "open": 23, - "SyntaxFin": 2, - "ParadigmsFin": 1, - "in": 32, - "{": 579, - "flags": 32, - "coding": 29, - "utf8": 29, - ";": 1399, - "oper": 29, - "wine_N": 7, - "mkN": 46, - "pizza_N": 7, - "cheese_N": 7, - "fish_N": 8, - "fresh_A": 7, - "mkA": 47, - "warm_A": 8, - "italian_A": 7, - "expensive_A": 7, - "delicious_A": 7, - "boring_A": 7, - "}": 580, "abstract": 1, "Foods": 34, + "{": 579, + "flags": 32, "startcat": 1, "Comment": 31, + ";": 1399, "cat": 1, "Item": 31, "Kind": 33, @@ -25269,110 +25364,161 @@ "Expensive": 29, "Delicious": 29, "Boring": 29, - "Vikash": 1, - "Rauniyar": 1, + "}": 580, + "Laurette": 2, + "Pretorius": 2, + "Sr": 2, + "&": 2, + "Jr": 2, + "and": 4, + "Ansu": 2, + "Berg": 2, "concrete": 33, - "FoodsHin": 2, - "param": 22, - "Gender": 94, - "Masc": 67, - "|": 122, - "Fem": 65, - "Number": 207, - "Sg": 184, - "Pl": 182, + "FoodsAfr": 1, + "of": 89, + "open": 23, + "Prelude": 11, + "Predef": 3, + "in": 32, + "coding": 29, + "utf8": 29, "lincat": 28, "s": 365, "Str": 394, - "g": 132, + "Number": 207, "n": 206, + "AdjAP": 10, "lin": 28, "item": 36, "quality": 90, "item.s": 24, "+": 480, "quality.s": 50, - "item.g": 12, - "item.n": 29, - "copula": 33, + "Predic": 3, "kind": 115, "kind.s": 46, - "kind.g": 38, - "regN": 15, - "regAdj": 61, - "p": 11, + "Sg": 184, + "Pl": 182, "table": 148, - "case": 44, - "lark": 8, - "_": 68, + "Attr": 9, + "declNoun_e": 2, + "declNoun_aa": 2, + "declNoun_ss": 2, + "declNoun_s": 2, + "veryAdj": 2, + "regAdj": 61, + "smartAdj_e": 4, + "param": 22, + "|": 122, + "oper": 29, + "Noun": 9, + "operations": 2, + "wyn": 1, + "kaas": 1, + "vis": 1, + "pizza": 1, + "x": 74, + "let": 8, + "v": 6, + "tk": 1, + "last": 3, + "Adjective": 9, "mkAdj": 27, - "ms": 4, - "mp": 4, - "f": 16, + "y": 3, + "declAdj_e": 2, + "declAdj_g": 2, + "w": 15, + "init": 4, + "declAdj_oog": 2, + "i": 2, "a": 57, - "acch": 6, + "x.s": 8, + "case": 44, + "_": 68, + "FoodsAmh": 1, + "Krasimir": 1, + "Angelov": 1, + "FoodsBul": 1, + "Gender": 94, + "Masc": 67, + "Fem": 65, + "Neutr": 21, + "Agr": 3, + "ASg": 23, + "APl": 11, + "g": 132, + "qual": 8, + "item.a": 2, + "qual.s": 8, + "kind.g": 38, "#": 14, "path": 14, ".": 13, - "prelude": 2, - "Inese": 1, - "Bernsone": 1, - "FoodsLav": 1, - "Prelude": 11, - "SS": 6, - "Q": 5, - "Defin": 9, - "ss": 13, - "Q1": 5, - "Ind": 14, - "det": 86, - "Def": 21, - "noun": 51, - "qual": 8, - "q": 10, - "spec": 2, - "qual.s": 8, - "Q2": 3, - "adjective": 22, - "specAdj": 2, - "m": 9, - "cn": 11, - "cn.g": 10, - "cn.s": 8, - "man": 10, - "men": 10, - "skaists": 5, - "skaista": 2, - "skaisti": 2, - "skaistas": 2, - "skaistais": 2, - "skaistaa": 2, - "skaistie": 2, - "skaistaas": 2, - "let": 8, - "skaist": 8, - "init": 4, - "Adjective": 9, - "Type": 9, - "a.s": 8, + "present": 7, "Jordi": 2, "Saludes": 2, - "LexFoodsCat": 2, + "FoodsCat": 1, + "FoodsI": 6, + "with": 5, + "Syntax": 7, "SyntaxCat": 2, - "ParadigmsCat": 1, - "M": 1, - "MorphoCat": 1, - "M.Masc": 2, + "LexFoods": 12, + "LexFoodsCat": 2, + "FoodsChi": 1, + "p": 11, + "quality.p": 2, + "kind.c": 11, + "geKind": 5, + "longQuality": 8, + "mkKind": 2, + "Katerina": 2, + "Bohmova": 2, + "FoodsCze": 1, + "ResCze": 2, + "NounPhrase": 3, + "copula": 33, + "item.n": 29, + "item.g": 12, + "det": 86, + "noun": 51, + "regnfAdj": 2, + "Femke": 1, + "Johansson": 1, + "FoodsDut": 1, + "AForm": 4, + "APred": 8, + "AAttr": 3, + "regNoun": 38, + "f": 16, + "a.s": 8, + "regadj": 6, + "adj": 38, + "noun.s": 7, + "man": 10, + "men": 10, + "wijn": 3, + "koud": 3, + "duur": 2, + "dure": 2, "FoodsEng": 1, "language": 2, "en_US": 1, - "regNoun": 38, - "adj": 38, - "noun.s": 7, "car": 6, "cold": 4, + "Julia": 1, + "Hammar": 1, + "FoodsEpo": 1, + "SS": 6, + "ss": 13, + "d": 6, + "cn": 11, + "cn.s": 8, + "vino": 3, + "nova": 3, + "FoodsFin": 1, + "SyntaxFin": 2, + "LexFoodsFin": 2, "../foods": 1, - "present": 7, "FoodsFre": 1, "SyntaxFre": 1, "ParadigmsFre": 1, @@ -25390,207 +25536,169 @@ "mkCN": 20, "mkAP": 28, "very_AdA": 4, + "mkN": 46, "masculine": 4, "feminine": 2, - "FoodsPes": 1, - "optimize": 1, - "noexpand": 1, - "Add": 8, - "prep": 11, - "Indep": 4, - "Attr": 9, - "kind.prep": 1, - "quality.prep": 1, - "at": 3, - "a.prep": 1, - "it": 2, - "must": 1, - "be": 1, - "written": 1, - "as": 2, - "x1": 3, - "x4": 2, - "pytzA": 3, - "pytzAy": 1, - "pytzAhA": 3, - "pr": 4, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "mrd": 8, - "tAzh": 8, - "tAzhy": 2, - "interface": 1, - "Syntax": 7, - "N": 4, - "A": 6, - "LexFoodsIta": 2, - "SyntaxIta": 2, - "ParadigmsIta": 1, - "FoodsOri": 1, - "Laurette": 2, - "Pretorius": 2, - "Sr": 2, - "&": 2, - "Jr": 2, - "and": 4, - "Ansu": 2, - "Berg": 2, - "FoodsAfr": 1, - "Predef": 3, - "AdjAP": 10, - "Predic": 3, - "declNoun_e": 2, - "declNoun_aa": 2, - "declNoun_ss": 2, - "declNoun_s": 2, - "veryAdj": 2, - "smartAdj_e": 4, - "Noun": 9, - "operations": 2, - "wyn": 1, - "kaas": 1, - "vis": 1, - "pizza": 1, - "x": 74, - "v": 6, - "tk": 1, - "last": 3, - "y": 3, - "declAdj_e": 2, - "declAdj_g": 2, - "w": 15, - "declAdj_oog": 2, - "i": 2, - "x.s": 8, + "mkA": 47, "FoodsGer": 1, - "FoodsI": 6, - "with": 5, "SyntaxGer": 2, "LexFoodsGer": 2, + "alltenses": 3, + "Dana": 1, + "Dannells": 1, + "Licensed": 1, + "FoodsHeb": 2, + "Species": 8, + "mod": 7, + "Modified": 5, + "sp": 11, + "Indef": 6, + "Def": 21, + "T": 2, + "regAdj2": 3, + "F": 2, + "Type": 9, + "Adj": 4, + "m": 9, + "cn.mod": 2, + "cn.g": 10, + "gvina": 6, + "hagvina": 3, + "gvinot": 6, + "hagvinot": 3, + "defH": 7, + "replaceLastLetter": 7, + "adjective": 22, + "tov": 6, + "tova": 3, + "tovim": 3, + "tovot": 3, + "to": 6, + "c@": 3, + "italki": 3, + "italk": 4, + "Vikash": 1, + "Rauniyar": 1, + "FoodsHin": 2, + "regN": 15, + "lark": 8, + "ms": 4, + "mp": 4, + "acch": 6, "incomplete": 1, "this_Det": 2, "that_Det": 2, "these_Det": 2, "those_Det": 2, + "wine_N": 7, + "pizza_N": 7, + "cheese_N": 7, + "fish_N": 8, + "fresh_A": 7, + "warm_A": 8, + "italian_A": 7, + "expensive_A": 7, + "delicious_A": 7, + "boring_A": 7, + "prelude": 2, + "Martha": 1, + "Dis": 1, + "Brandt": 1, + "FoodsIce": 1, + "Defin": 9, + "Ind": 14, + "the": 7, + "word": 3, + "is": 6, + "more": 1, + "commonly": 1, + "used": 2, + "Iceland": 1, + "but": 1, + "Icelandic": 1, + "for": 6, + "it": 2, + "defOrInd": 2, + "order": 1, + "given": 1, + "forms": 2, + "mSg": 1, + "fSg": 1, + "nSg": 1, + "mPl": 1, + "fPl": 1, + "nPl": 1, + "mSgDef": 1, + "f/nSgDef": 1, + "_PlDef": 1, + "masc": 3, + "fem": 2, + "neutr": 2, + "x1": 3, + "x9": 1, + "ferskur": 5, + "fersk": 11, + "ferskt": 2, + "ferskir": 2, + "ferskar": 2, + "fersk_pl": 2, + "ferski": 2, + "ferska": 2, + "fersku": 2, + "t": 28, + "": 1, + "<": 10, + "Predef.tk": 2, + "FoodsIta": 1, + "SyntaxIta": 2, + "LexFoodsIta": 2, "../lib/src/prelude": 1, "Zofia": 1, "Stankiewicz": 1, "FoodsJpn": 1, "Style": 3, "AdjUse": 4, - "t": 28, "AdjType": 4, "quality.t": 3, "IAdj": 4, "Plain": 3, - "APred": 8, "Polite": 4, "NaAdj": 4, "na": 1, "adjectives": 2, "have": 2, "different": 1, - "forms": 2, + "as": 2, "attributes": 1, "predicates": 2, - "for": 6, "phrase": 1, "types": 1, "can": 1, "form": 4, "without": 1, - "the": 7, "cannot": 1, - "d": 6, "sakana": 6, "chosenna": 2, "chosen": 2, "akai": 2, - "FoodsTur": 1, - "Case": 10, - "softness": 4, - "Softness": 5, - "h": 4, - "Harmony": 5, - "Reason": 1, - "excluding": 1, - "plural": 3, - "In": 1, - "Turkish": 1, - "if": 1, - "subject": 1, - "is": 6, - "not": 2, - "human": 2, - "being": 1, - "then": 1, - "singular": 1, - "used": 2, - "regardless": 1, - "number": 2, - "subject.": 1, - "Since": 1, - "all": 1, - "possible": 1, - "subjects": 1, - "are": 1, - "non": 1, - "do": 1, - "need": 1, - "to": 6, - "form.": 1, - "quality.softness": 1, - "quality.h": 1, - "quality.c": 1, - "Nom": 9, - "Gen": 5, - "a.c": 1, - "a.softness": 1, - "a.h": 1, - "I_Har": 4, - "Ih_Har": 4, - "U_Har": 4, - "Uh_Har": 4, - "Ih": 1, - "Uh": 1, - "Soft": 3, - "Hard": 3, - "num": 6, - "overload": 1, - "mkn": 1, - "peynir": 2, - "peynirler": 2, - "[": 2, - "]": 2, - "sarap": 2, - "saraplar": 2, - "sarabi": 2, - "saraplari": 2, - "italyan": 4, - "ca": 2, - "getSoftness": 2, - "getHarmony": 2, - "See": 1, - "comment": 1, - "lines": 1, - "excluded": 1, - "copula.": 1, - "base": 4, - "c@": 3, - "*": 1, - "/GF/lib/src/prelude": 1, - "Nyamsuren": 1, - "Erdenebadrakh": 1, - "FoodsMon": 1, - "prefixSS": 1, - "FoodsSwe": 1, - "SyntaxSwe": 2, - "LexFoodsSwe": 2, - "**": 1, - "sv_SE": 1, + "Inese": 1, + "Bernsone": 1, + "FoodsLav": 1, + "Q": 5, + "Q1": 5, + "q": 10, + "spec": 2, + "Q2": 3, + "specAdj": 2, + "skaists": 5, + "skaista": 2, + "skaisti": 2, + "skaistas": 2, + "skaistais": 2, + "skaistaa": 2, + "skaistie": 2, + "skaistaas": 2, + "skaist": 8, "John": 1, "J.": 1, "Camilleri": 1, @@ -25627,7 +25735,6 @@ "first": 1, "letter": 1, "next": 1, - "word": 3, "pre": 1, "cons@": 1, "cons": 1, @@ -25635,10 +25742,45 @@ "Sg/Pl": 1, "string": 1, "default": 1, - "masc": 3, "gender": 2, - "FoodsFin": 1, - "ParadigmsSwe": 1, + "number": 2, + "/GF/lib/src/prelude": 1, + "Nyamsuren": 1, + "Erdenebadrakh": 1, + "FoodsMon": 1, + "prefixSS": 1, + "Dinesh": 1, + "Simkhada": 1, + "FoodsNep": 1, + "adjPl": 2, + "bor": 2, + "FoodsOri": 1, + "FoodsPes": 1, + "optimize": 1, + "noexpand": 1, + "Add": 8, + "prep": 11, + "Indep": 4, + "kind.prep": 1, + "quality.prep": 1, + "at": 3, + "a.prep": 1, + "must": 1, + "be": 1, + "written": 1, + "x4": 2, + "pytzA": 3, + "pytzAy": 1, + "pytzAhA": 3, + "pr": 4, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "mrd": 8, + "tAzh": 8, + "tAzhy": 2, "Rami": 1, "Shashati": 1, "FoodsPor": 1, @@ -25652,7 +25794,6 @@ "adjSozinho": 2, "sozinho": 3, "sozinh": 4, - "Predef.tk": 2, "independent": 1, "adjUtil": 2, "util": 3, @@ -25662,119 +25803,12 @@ "adjcetives": 1, "ItemT": 2, "KindT": 4, + "num": 6, "noun.g": 3, "animal": 2, "animais": 2, "gen": 4, "carro": 3, - "ParadigmsGer": 1, - "Dinesh": 1, - "Simkhada": 1, - "FoodsNep": 1, - "adjPl": 2, - "bor": 2, - "alltenses": 3, - "Dana": 1, - "Dannells": 1, - "Licensed": 1, - "FoodsHeb": 2, - "Species": 8, - "mod": 7, - "Modified": 5, - "sp": 11, - "Indef": 6, - "T": 2, - "regAdj2": 3, - "F": 2, - "Adj": 4, - "cn.mod": 2, - "gvina": 6, - "hagvina": 3, - "gvinot": 6, - "hagvinot": 3, - "defH": 7, - "replaceLastLetter": 7, - "tov": 6, - "tova": 3, - "tovim": 3, - "tovot": 3, - "italki": 3, - "italk": 4, - "Krasimir": 1, - "Angelov": 1, - "FoodsBul": 1, - "Neutr": 21, - "Agr": 3, - "ASg": 23, - "APl": 11, - "item.a": 2, - "FoodsTha": 1, - "SyntaxTha": 1, - "LexiconTha": 1, - "ParadigmsTha": 1, - "R": 4, - "ResTha": 1, - "R.thword": 4, - "Shafqat": 1, - "Virk": 1, - "FoodsUrd": 1, - "coupla": 2, - "Katerina": 2, - "Bohmova": 2, - "FoodsCze": 1, - "ResCze": 2, - "NounPhrase": 3, - "regnfAdj": 2, - "Martha": 1, - "Dis": 1, - "Brandt": 1, - "FoodsIce": 1, - "more": 1, - "commonly": 1, - "Iceland": 1, - "but": 1, - "Icelandic": 1, - "defOrInd": 2, - "order": 1, - "given": 1, - "mSg": 1, - "fSg": 1, - "nSg": 1, - "mPl": 1, - "fPl": 1, - "nPl": 1, - "mSgDef": 1, - "f/nSgDef": 1, - "_PlDef": 1, - "fem": 2, - "neutr": 2, - "x9": 1, - "ferskur": 5, - "fersk": 11, - "ferskt": 2, - "ferskir": 2, - "ferskar": 2, - "fersk_pl": 2, - "ferski": 2, - "ferska": 2, - "fersku": 2, - "": 1, - "<": 10, - "FoodsSpa": 1, - "SyntaxSpa": 1, - "StructuralSpa": 1, - "ParadigmsSpa": 1, - "FoodsChi": 1, - "quality.p": 2, - "kind.c": 11, - "geKind": 5, - "longQuality": 8, - "mkKind": 2, - "Julia": 1, - "Hammar": 1, - "FoodsEpo": 1, - "vino": 3, - "nova": 3, "Ramona": 1, "Enache": 1, "FoodsRon": 1, @@ -25806,6 +25840,22 @@ "": 1, "": 1, "": 1, + "FoodsSpa": 1, + "SyntaxSpa": 1, + "StructuralSpa": 1, + "ParadigmsSpa": 1, + "FoodsSwe": 1, + "SyntaxSwe": 2, + "LexFoodsSwe": 2, + "**": 1, + "sv_SE": 1, + "FoodsTha": 1, + "SyntaxTha": 1, + "LexiconTha": 1, + "ParadigmsTha": 1, + "R": 4, + "ResTha": 1, + "R.thword": 4, "FoodsTsn": 1, "NounClass": 28, "r": 9, @@ -25851,9 +25901,88 @@ "mkQualRelPart": 2, "mkDescrCop_PName": 2, "mkDescrCop": 2, - "FoodsIta": 1, - "FoodsAmh": 1, - "FoodsCat": 1, + "FoodsTur": 1, + "Case": 10, + "softness": 4, + "Softness": 5, + "h": 4, + "Harmony": 5, + "Reason": 1, + "excluding": 1, + "plural": 3, + "In": 1, + "Turkish": 1, + "if": 1, + "subject": 1, + "not": 2, + "human": 2, + "being": 1, + "then": 1, + "singular": 1, + "regardless": 1, + "subject.": 1, + "Since": 1, + "all": 1, + "possible": 1, + "subjects": 1, + "are": 1, + "non": 1, + "do": 1, + "need": 1, + "form.": 1, + "quality.softness": 1, + "quality.h": 1, + "quality.c": 1, + "Nom": 9, + "Gen": 5, + "a.c": 1, + "a.softness": 1, + "a.h": 1, + "I_Har": 4, + "Ih_Har": 4, + "U_Har": 4, + "Uh_Har": 4, + "Ih": 1, + "Uh": 1, + "Soft": 3, + "Hard": 3, + "overload": 1, + "mkn": 1, + "peynir": 2, + "peynirler": 2, + "[": 2, + "]": 2, + "sarap": 2, + "saraplar": 2, + "sarabi": 2, + "saraplari": 2, + "italyan": 4, + "ca": 2, + "getSoftness": 2, + "getHarmony": 2, + "See": 1, + "comment": 1, + "lines": 1, + "excluded": 1, + "copula.": 1, + "base": 4, + "*": 1, + "Shafqat": 1, + "Virk": 1, + "FoodsUrd": 1, + "coupla": 2, + "interface": 1, + "N": 4, + "A": 6, + "instance": 5, + "ParadigmsCat": 1, + "M": 1, + "MorphoCat": 1, + "M.Masc": 2, + "ParadigmsFin": 1, + "ParadigmsGer": 1, + "ParadigmsIta": 1, + "ParadigmsSwe": 1, "resource": 1, "ne": 2, "muz": 2, @@ -25865,21 +25994,9 @@ "fpl": 3, "npl": 3, "mlad": 7, - "vynikajici": 7, - "Femke": 1, - "Johansson": 1, - "FoodsDut": 1, - "AForm": 4, - "AAttr": 3, - "regadj": 6, - "wijn": 3, - "koud": 3, - "duur": 2, - "dure": 2 + "vynikajici": 7 }, "Groovy": { - "SHEBANG#!groovy": 2, - "println": 3, "task": 1, "echoDirListViaAntBuilder": 1, "(": 7, @@ -25923,8 +26040,10 @@ "CWD": 1, "projectDir": 1, "removed.": 1, + "println": 3, "it.toString": 1, "-": 1, + "SHEBANG#!groovy": 2, "html": 3, "head": 2, "component": 1, @@ -25933,18 +26052,32 @@ "p": 1 }, "Groovy Server Pages": { + "": 4, + "": 4, + "": 4, + "http": 3, + "equiv=": 3, + "content=": 4, + "": 4, + "Testing": 3, + "with": 3, + "SiteMesh": 2, + "and": 2, + "Resources": 2, + "": 4, + "name=": 1, + "": 2, + "module=": 2, + "": 4, + "": 4, + "": 4, + "": 4, "<%@>": 1, "page": 2, "contentType=": 1, - "": 4, - "": 4, - "": 4, "Using": 1, "directive": 1, "tag": 1, - "": 4, - "": 4, - "": 4, "

": 2, "class=": 2, "": 2, @@ -25955,118 +26088,43 @@ "": 2, "
": 2, "Print": 1, - "": 4, - "": 4, - "": 4, - "http": 3, - "equiv=": 3, - "content=": 4, - "Testing": 3, - "with": 3, - "Resources": 2, - "": 2, - "module=": 2, - "SiteMesh": 2, - "and": 2, - "name=": 1, "{": 1, "example": 1, "}": 1 }, "HTML": { "": 2, - "html": 1, + "HTML": 2, "PUBLIC": 2, "W3C": 2, "DTD": 3, - "XHTML": 1, - "1": 1, + "4": 1, "0": 2, - "Transitional": 1, + "Frameset": 1, "EN": 2, "http": 3, "www": 2, "w3": 2, "org": 2, "TR": 2, - "xhtml1": 2, - "transitional": 1, - "dtd": 2, - "": 2, - "xmlns=": 1, - "": 2, - "": 1, - "equiv=": 1, - "content=": 1, - "": 2, - "Related": 2, - "Pages": 2, - "": 2, - "": 1, - "href=": 9, - "rel=": 1, - "type=": 1, - "": 1, - "": 2, - "
": 10, - "class=": 22, - "": 8, - "Main": 1, - "Page": 1, - "": 8, - "&": 3, - "middot": 3, - ";": 3, - "Class": 2, - "Overview": 2, - "Hierarchy": 1, - "All": 1, - "Classes": 1, - "
": 11, - "Here": 1, - "is": 1, - "a": 4, - "list": 1, - "of": 5, - "all": 1, - "related": 1, - "documentation": 1, - "pages": 1, - "": 1, - "": 2, - "id=": 2, - "": 4, - "": 2, - "16": 1, - "The": 2, - "Layout": 1, - "System": 1, - "
": 4, - "": 2, - "src=": 2, - "alt=": 2, - "width=": 1, - "height=": 2, - "target=": 3, - "
": 1, - "Generated": 1, - "with": 1, - "Doxygen": 1, - "": 2, - "": 2, - "HTML": 2, - "4": 1, - "Frameset": 1, "REC": 1, "html40": 1, "frameset": 1, + "dtd": 2, + "": 2, + "": 2, "Common_meta": 1, "(": 14, ")": 14, + "": 2, "Android": 5, "API": 7, "Differences": 2, "Report": 2, + "": 2, + "": 2, + "
": 10, + "class=": 22, "Header": 1, "

": 1, "

": 1, @@ -26096,14 +26154,17 @@ "an": 3, "change": 2, "includes": 1, + "a": 4, "brief": 1, "description": 1, + "of": 5, "explanation": 1, "suggested": 1, "workaround": 1, "where": 1, "available.": 1, "

": 3, + "The": 2, "differences": 2, "described": 1, "this": 2, @@ -26139,8 +26200,12 @@ "about": 1, "SDK": 1, "see": 1, + "": 8, + "href=": 9, + "target=": 3, "product": 1, "site": 1, + "": 8, ".": 1, "if": 4, "no_delta": 1, @@ -26169,7 +26234,61 @@ "PackageAddedLink": 1, "SimpleTableRow": 2, "changed_packages": 2, - "PackageChangedLink": 1 + "PackageChangedLink": 1, + "
": 11, + "": 2, + "": 2, + "html": 1, + "XHTML": 1, + "1": 1, + "Transitional": 1, + "xhtml1": 2, + "transitional": 1, + "xmlns=": 1, + "": 1, + "equiv=": 1, + "content=": 1, + "Related": 2, + "Pages": 2, + "": 1, + "rel=": 1, + "type=": 1, + "": 1, + "Main": 1, + "Page": 1, + "&": 3, + "middot": 3, + ";": 3, + "Class": 2, + "Overview": 2, + "Hierarchy": 1, + "All": 1, + "Classes": 1, + "Here": 1, + "is": 1, + "list": 1, + "all": 1, + "related": 1, + "documentation": 1, + "pages": 1, + "": 1, + "": 2, + "id=": 2, + "": 4, + "": 2, + "16": 1, + "Layout": 1, + "System": 1, + "
": 4, + "": 2, + "src=": 2, + "alt=": 2, + "width=": 1, + "height=": 2, + "
": 1, + "Generated": 1, + "with": 1, + "Doxygen": 1 }, "HTML+ERB": { "<%>": 12, @@ -26252,10 +26371,6 @@ "render": 1 }, "Haml": { - "%": 7, - "p": 1, - "Hello": 1, - "World": 1, "/": 1, "replace": 1, ".pull": 1, @@ -26272,6 +26387,7 @@ ")": 10, "class": 4, "do": 4, + "%": 7, "i.icon": 5, "picture.row": 1, "black": 1, @@ -26306,56 +26422,69 @@ "parent_id": 1, "page.id": 1, "plus.row": 1, - "green": 1 + "green": 1, + "p": 1, + "Hello": 1, + "World": 1 }, "Handlebars": { "
": 5, "class=": 5, "

": 3, - "By": 2, "{": 16, - "fullName": 2, - "author": 2, + "title": 1, "}": 16, "

": 3, "body": 3, "
": 5, + "By": 2, + "fullName": 2, + "author": 2, "Comments": 1, "#each": 1, "comments": 1, "

": 1, "

": 1, - "/each": 1, - "title": 1 + "/each": 1 }, "Haskell": { - "module": 2, - "Sudoku": 9, + "import": 6, + "Data.Char": 1, + "main": 4, + "IO": 2, "(": 8, + ")": 8, + "do": 3, + "let": 2, + "hello": 2, + "putStrLn": 3, + "map": 13, + "toUpper": 1, + "module": 2, + "Main": 1, + "where": 4, + "Sudoku": 9, + "Data.Maybe": 2, + "sudoku": 36, + "[": 4, + "]": 3, + "pPrint": 5, + "+": 2, + "fromMaybe": 1, "solve": 5, "isSolved": 4, - "pPrint": 5, - ")": 8, - "where": 4, - "import": 6, - "Data.Maybe": 2, "Data.List": 1, "Data.List.Split": 1, "type": 1, - "[": 4, "Int": 1, - "]": 3, "-": 3, "Maybe": 1, - "sudoku": 36, "|": 8, "Just": 1, "otherwise": 2, - "do": 3, "index": 27, "<": 1, "elemIndex": 1, - "let": 2, "sudokus": 2, "nextTest": 5, "i": 7, @@ -26380,7 +26509,6 @@ "quot": 3, "transpose": 4, "mod": 2, - "map": 13, "concat": 2, "concatMap": 2, "3": 4, @@ -26396,16 +26524,7 @@ "True": 1, "String": 1, "intercalate": 2, - "show": 1, - "Data.Char": 1, - "main": 4, - "IO": 2, - "hello": 2, - "putStrLn": 3, - "toUpper": 1, - "Main": 1, - "+": 2, - "fromMaybe": 1 + "show": 1 }, "Hy": { ";": 4, @@ -26453,6 +26572,64 @@ ".result": 1 }, "IDL": { + ";": 59, + "docformat": 3, + "+": 8, + "Inverse": 1, + "hyperbolic": 2, + "cosine.": 1, + "Uses": 1, + "the": 7, + "formula": 1, + "text": 1, + "{": 3, + "acosh": 1, + "}": 3, + "(": 26, + "z": 9, + ")": 26, + "ln": 1, + "sqrt": 4, + "-": 14, + "Examples": 2, + "The": 1, + "arc": 1, + "sine": 1, + "function": 4, + "looks": 1, + "like": 2, + "IDL": 5, + "x": 8, + "*": 2, + "findgen": 1, + "/": 1, + "plot": 1, + "mg_acosh": 2, + "xstyle": 1, + "This": 1, + "should": 1, + "look": 1, + "..": 1, + "image": 1, + "acosh.png": 1, + "Returns": 3, + "float": 1, + "double": 2, + "complex": 2, + "or": 1, + "depending": 1, + "on": 1, + "input": 2, + "Params": 3, + "in": 4, + "required": 4, + "type": 5, + "numeric": 1, + "compile_opt": 3, + "strictarr": 3, + "return": 5, + "alog": 1, + "end": 5, "MODULE": 1, "mg_analysis": 1, "DESCRIPTION": 1, @@ -26468,35 +26645,20 @@ "MG_ARRAY_EQUAL": 1, "KEYWORDS": 1, "MG_TOTAL": 1, - ";": 59, - "docformat": 3, - "+": 8, "Find": 1, - "the": 7, "greatest": 1, "common": 1, "denominator": 1, - "(": 26, "GCD": 1, - ")": 26, "two": 1, "positive": 2, "integers.": 1, - "Returns": 3, "integer": 5, - "Params": 3, "a": 4, - "in": 4, - "required": 4, - "type": 5, "first": 1, "b": 4, "second": 1, - "-": 14, - "function": 4, "mg_gcd": 2, - "compile_opt": 3, - "strictarr": 3, "on_error": 1, "if": 5, "n_params": 1, @@ -26514,51 +26676,8 @@ "<": 1, "maxArg": 3, "eq": 2, - "return": 5, "remainder": 3, "mod": 1, - "end": 5, - "Inverse": 1, - "hyperbolic": 2, - "cosine.": 1, - "Uses": 1, - "formula": 1, - "text": 1, - "{": 3, - "acosh": 1, - "}": 3, - "z": 9, - "ln": 1, - "sqrt": 4, - "Examples": 2, - "The": 1, - "arc": 1, - "sine": 1, - "looks": 1, - "like": 2, - "IDL": 5, - "x": 8, - "*": 2, - "findgen": 1, - "/": 1, - "plot": 1, - "mg_acosh": 2, - "xstyle": 1, - "This": 1, - "should": 1, - "look": 1, - "..": 1, - "image": 1, - "acosh.png": 1, - "float": 1, - "double": 2, - "complex": 2, - "or": 1, - "depending": 1, - "on": 1, - "input": 2, - "numeric": 1, - "alog": 1, "Truncate": 1, "argument": 2, "towards": 1, @@ -26602,19 +26721,13 @@ "example": 1 }, "INI": { - "[": 2, - "user": 1, - "]": 2, - "name": 1, - "Josh": 1, - "Peek": 1, - "email": 1, - "josh@github.com": 1, ";": 1, "editorconfig.org": 1, "root": 1, "true": 3, + "[": 2, "*": 1, + "]": 2, "indent_style": 1, "space": 1, "indent_size": 1, @@ -26624,7 +26737,13 @@ "utf": 1, "-": 1, "trim_trailing_whitespace": 1, - "insert_final_newline": 1 + "insert_final_newline": 1, + "user": 1, + "name": 1, + "Josh": 1, + "Peek": 1, + "email": 1, + "josh@github.com": 1 }, "Idris": { "module": 1, @@ -26667,29 +26786,16 @@ "]": 1 }, "Inform 7": { - "Version": 1, - "of": 3, - "Trivial": 3, - "Extension": 3, "by": 3, "Andrew": 3, - "Plotkin": 1, - "begins": 1, - "here.": 2, - "A": 3, - "cow": 3, - "is": 4, - "a": 2, - "kind": 1, - "animal.": 1, - "can": 1, - "be": 1, - "purple.": 1, - "ends": 1, "Plotkin.": 2, "Include": 1, + "Trivial": 3, + "Extension": 3, "The": 1, "Kitchen": 1, + "is": 4, + "a": 2, "room.": 1, "[": 1, "This": 1, @@ -26709,13 +26815,26 @@ "this": 1, "player.": 1, "]": 1, + "A": 3, "purple": 1, + "cow": 3, "called": 1, "Gelett": 2, "Kitchen.": 1, "Instead": 1, + "of": 3, "examining": 1, - "say": 1 + "say": 1, + "Version": 1, + "Plotkin": 1, + "begins": 1, + "here.": 2, + "kind": 1, + "animal.": 1, + "can": 1, + "be": 1, + "purple.": 1, + "ends": 1 }, "Ioke": { "SHEBANG#!ioke": 1, @@ -26804,9 +26923,9 @@ }, "JSON": { "{": 73, - "}": 73, "[": 17, "]": 17, + "}": 73, "true": 3 }, "JSON5": { @@ -26918,49 +27037,548 @@ }, "Java": { "package": 6, - "nokogiri": 6, + "clojure.asm": 1, ";": 891, "import": 66, - "java.util.Collections": 2, - "java.util.HashMap": 1, + "java.lang.reflect.Constructor": 1, + "java.lang.reflect.Method": 1, + "public": 214, + "class": 12, + "Type": 42, + "{": 434, + "final": 78, + "static": 141, + "int": 62, + "VOID": 5, + "BOOLEAN": 6, + "CHAR": 6, + "BYTE": 6, + "SHORT": 6, + "INT": 6, + "FLOAT": 6, + "LONG": 7, + "DOUBLE": 7, + "ARRAY": 6, + "OBJECT": 7, + "VOID_TYPE": 3, + "new": 131, + "(": 1097, + ")": 1097, + "BOOLEAN_TYPE": 3, + "CHAR_TYPE": 3, + "BYTE_TYPE": 3, + "SHORT_TYPE": 3, + "INT_TYPE": 3, + "FLOAT_TYPE": 3, + "LONG_TYPE": 3, + "DOUBLE_TYPE": 3, + "private": 77, + "sort": 18, + "char": 13, + "[": 54, + "]": 54, + "buf": 43, + "off": 25, + "len": 24, + "this.sort": 2, + "this.len": 2, + "}": 434, + "this.buf": 2, + "this.off": 1, + "getType": 10, + "String": 33, + "typeDescriptor": 1, + "return": 267, + "typeDescriptor.toCharArray": 1, + "Class": 10, + "c": 21, + "if": 116, + "c.isPrimitive": 2, + "Integer.TYPE": 2, + "else": 33, + "Void.TYPE": 3, + "Boolean.TYPE": 2, + "Byte.TYPE": 2, + "Character.TYPE": 2, + "Short.TYPE": 2, + "Double.TYPE": 2, + "Float.TYPE": 2, + "getDescriptor": 15, + "getObjectType": 1, + "name": 10, + "l": 5, + "name.length": 2, + "+": 83, + "name.getChars": 1, + "getArgumentTypes": 2, + "methodDescriptor": 2, + "methodDescriptor.toCharArray": 2, + "size": 16, + "while": 10, + "true": 21, + "car": 18, + "break": 4, + "args": 6, + ".len": 1, + "Method": 3, + "method": 2, + "classes": 2, + "method.getParameterTypes": 1, + "types": 3, + "classes.length": 2, + "for": 16, + "i": 54, + "-": 15, + "getReturnType": 2, + "methodDescriptor.indexOf": 1, + "method.getReturnType": 1, + "switch": 6, + "case": 56, + "//": 16, + "default": 6, + "getSort": 1, + "getDimensions": 3, + "getElementType": 2, + "getClassName": 1, + "StringBuffer": 14, + "b": 7, + ".getClassName": 1, + "b.append": 1, + "b.toString": 1, + ".replace": 2, + "getInternalName": 2, + "buf.toString": 4, + "getMethodDescriptor": 2, + "returnType": 1, + "argumentTypes": 2, + "buf.append": 21, + "<": 13, + "argumentTypes.length": 1, + ".getDescriptor": 1, + "returnType.getDescriptor": 1, + "void": 25, + "c.getName": 1, + "getConstructorDescriptor": 1, + "Constructor": 1, + "parameters": 4, + "c.getParameterTypes": 1, + "parameters.length": 2, + ".toString": 1, + "m": 1, + "m.getParameterTypes": 1, + "m.getReturnType": 1, + "d": 10, + "d.isPrimitive": 1, + "d.isArray": 1, + "d.getComponentType": 1, + "d.getName": 1, + "name.charAt": 1, + "getSize": 1, + "||": 8, + "getOpcode": 1, + "opcode": 17, + "Opcodes.IALOAD": 1, + "Opcodes.IASTORE": 1, + "boolean": 36, + "equals": 2, + "Object": 31, + "o": 12, + "this": 16, + "instanceof": 19, + "false": 12, + "t": 6, + "t.sort": 1, + "Type.OBJECT": 2, + "Type.ARRAY": 2, + "t.len": 1, + "j": 9, + "t.off": 1, + "end": 4, + "t.buf": 1, + "hashCode": 1, + "hc": 4, + "*": 2, + "toString": 1, + "clojure.lang": 1, + "java.lang.ref.Reference": 1, + "java.math.BigInteger": 1, "java.util.Map": 3, + "java.util.concurrent.ConcurrentHashMap": 1, + "java.lang.ref.SoftReference": 1, + "java.lang.ref.ReferenceQueue": 1, + "Util": 1, + "equiv": 17, + "k1": 40, + "k2": 38, + "null": 80, + "Number": 9, + "&&": 6, + "Numbers.equal": 1, + "IPersistentCollection": 5, + "pcequiv": 2, + "k1.equals": 2, + "long": 5, + "double": 4, + "c1": 2, + "c2": 2, + ".equiv": 2, + "identical": 1, + "classOf": 1, + "x": 8, + "x.getClass": 1, + "compare": 1, + "Numbers.compare": 1, + "Comparable": 1, + ".compareTo": 1, + "hash": 3, + "o.hashCode": 2, + "hasheq": 1, + "Numbers.hasheq": 1, + "IHashEq": 2, + ".hasheq": 1, + "hashCombine": 1, + "seed": 5, + "//a": 1, + "la": 1, + "boost": 1, + "e3779b9": 1, + "<<": 1, + "isPrimitive": 1, + "isInteger": 1, + "Integer": 2, + "Long": 1, + "BigInt": 1, + "BigInteger": 1, + "ret1": 2, + "ret": 4, + "nil": 2, + "ISeq": 2, + "": 1, + "clearCache": 1, + "ReferenceQueue": 1, + "rq": 1, + "ConcurrentHashMap": 1, + "K": 2, + "Reference": 3, + "": 3, + "cache": 1, + "//cleanup": 1, + "any": 1, + "dead": 1, + "entries": 1, + "rq.poll": 2, + "Map.Entry": 1, + "e": 31, + "cache.entrySet": 1, + "val": 3, + "e.getValue": 1, + "val.get": 1, + "cache.remove": 1, + "e.getKey": 1, + "RuntimeException": 5, + "runtimeException": 2, + "s": 10, + "Throwable": 4, + "sneakyThrow": 1, + "throw": 9, + "NullPointerException": 3, + "Util.": 1, + "": 1, + "sneakyThrow0": 2, + "@SuppressWarnings": 1, + "": 1, + "extends": 10, + "throws": 26, + "T": 2, + "nokogiri.internals": 1, + "nokogiri.internals.NokogiriHelpers.getNokogiriClass": 1, + "nokogiri.internals.NokogiriHelpers.isNamespace": 1, + "nokogiri.internals.NokogiriHelpers.stringOrNil": 1, + "nokogiri.HtmlDocument": 1, + "nokogiri.NokogiriService": 1, + "nokogiri.XmlDocument": 1, + "org.apache.xerces.parsers.DOMParser": 1, + "org.apache.xerces.xni.Augmentations": 1, + "org.apache.xerces.xni.QName": 1, + "org.apache.xerces.xni.XMLAttributes": 1, + "org.apache.xerces.xni.XNIException": 1, + "org.apache.xerces.xni.parser.XMLDocumentFilter": 1, + "org.apache.xerces.xni.parser.XMLParserConfiguration": 1, + "org.cyberneko.html.HTMLConfiguration": 1, + "org.cyberneko.html.filters.DefaultFilter": 1, "org.jruby.Ruby": 2, - "org.jruby.RubyArray": 1, "org.jruby.RubyClass": 2, + "org.jruby.runtime.ThreadContext": 1, + "org.jruby.runtime.builtin.IRubyObject": 2, + "org.w3c.dom.Document": 1, + "org.w3c.dom.NamedNodeMap": 1, + "org.w3c.dom.NodeList": 1, + "HtmlDomParserContext": 3, + "XmlDomParserContext": 1, + "Ruby": 43, + "runtime": 88, + "IRubyObject": 35, + "options": 4, + "super": 7, + "encoding": 2, + "@Override": 6, + "protected": 8, + "initErrorHandler": 1, + "options.strict": 1, + "errorHandler": 6, + "NokogiriStrictErrorHandler": 1, + "options.noError": 2, + "options.noWarning": 2, + "NokogiriNonStrictErrorHandler4NekoHtml": 1, + "initParser": 1, + "XMLParserConfiguration": 1, + "config": 2, + "HTMLConfiguration": 1, + "XMLDocumentFilter": 3, + "removeNSAttrsFilter": 2, + "RemoveNSAttrsFilter": 2, + "elementValidityCheckFilter": 3, + "ElementValidityCheckFilter": 3, + "//XMLDocumentFilter": 1, + "filters": 3, + "config.setErrorHandler": 1, + "this.errorHandler": 2, + "parser": 1, + "DOMParser": 1, + "setProperty": 4, + "java_encoding": 2, + "setFeature": 4, + "enableDocumentFragment": 1, + "XmlDocument": 8, + "getNewEmptyDocument": 1, + "ThreadContext": 2, + "context": 8, + "XmlDocument.rbNew": 1, + "getNokogiriClass": 1, + "context.getRuntime": 3, + "wrapDocument": 1, + "RubyClass": 92, + "klazz": 107, + "Document": 2, + "document": 5, + "HtmlDocument": 7, + "htmlDocument": 6, + "NokogiriService.HTML_DOCUMENT_ALLOCATOR.allocate": 1, + "htmlDocument.setDocumentNode": 1, + "ruby_encoding.isNil": 1, + "detected_encoding": 2, + "detected_encoding.isNil": 1, + "ruby_encoding": 3, + "charset": 2, + "tryGetCharsetFromHtml5MetaTag": 2, + "stringOrNil": 1, + "htmlDocument.setEncoding": 1, + "htmlDocument.setParsedEncoding": 1, + ".equalsIgnoreCase": 5, + "document.getDocumentElement": 2, + ".getNodeName": 4, + "NodeList": 2, + "list": 1, + ".getChildNodes": 2, + "list.getLength": 1, + "list.item": 2, + "headers": 1, + "headers.getLength": 1, + "headers.item": 2, + "NamedNodeMap": 1, + "nodeMap": 1, + ".getAttributes": 1, + "k": 5, + "nodeMap.getLength": 1, + "nodeMap.item": 2, + ".getNodeValue": 1, + "DefaultFilter": 2, + "startElement": 2, + "QName": 2, + "element": 3, + "XMLAttributes": 2, + "attrs": 4, + "Augmentations": 2, + "augs": 4, + "XNIException": 2, + "attrs.getLength": 1, + "isNamespace": 1, + "attrs.getQName": 1, + "attrs.removeAttributeAt": 1, + "element.uri": 1, + "super.startElement": 2, + "NokogiriErrorHandler": 2, + "element_names": 3, + "g": 1, + "r": 1, + "w": 1, + "y": 1, + "z": 1, + "isValid": 2, + "testee": 1, + "testee.toCharArray": 1, + "index": 4, + ".length": 1, + "testee.equals": 1, + "name.rawname": 2, + "errorHandler.getErrors": 1, + ".add": 1, + "Exception": 1, + "hudson.model": 1, + "hudson.ExtensionListView": 1, + "hudson.Functions": 1, + "hudson.Platform": 1, + "hudson.PluginManager": 1, + "hudson.cli.declarative.CLIResolver": 1, + "hudson.model.listeners.ItemListener": 1, + "hudson.slaves.ComputerListener": 1, + "hudson.util.CopyOnWriteList": 1, + "hudson.util.FormValidation": 1, + "jenkins.model.Jenkins": 1, + "org.jvnet.hudson.reactor.ReactorException": 1, + "org.kohsuke.stapler.QueryParameter": 1, + "org.kohsuke.stapler.Stapler": 1, + "org.kohsuke.stapler.StaplerRequest": 1, + "org.kohsuke.stapler.StaplerResponse": 1, + "javax.servlet.ServletContext": 1, + "javax.servlet.ServletException": 1, + "java.io.File": 1, + "java.io.IOException": 10, + "java.text.NumberFormat": 1, + "java.text.ParseException": 1, + "java.util.Collections": 2, + "java.util.List": 1, + "hudson.Util.fixEmpty": 1, + "Hudson": 5, + "Jenkins": 2, + "transient": 2, + "CopyOnWriteList": 4, + "": 2, + "itemListeners": 2, + "ExtensionListView.createCopyOnWriteList": 2, + "ItemListener.class": 1, + "": 2, + "computerListeners": 2, + "ComputerListener.class": 1, + "@CLIResolver": 1, + "getInstance": 2, + "Jenkins.getInstance": 2, + "File": 2, + "root": 6, + "ServletContext": 2, + "IOException": 8, + "InterruptedException": 2, + "ReactorException": 2, + "PluginManager": 1, + "pluginManager": 2, + "getJobListeners": 1, + "getComputerListeners": 1, + "Slave": 3, + "getSlave": 1, + "Node": 1, + "n": 3, + "getNode": 1, + "List": 3, + "": 2, + "getSlaves": 1, + "slaves": 3, + "setSlaves": 1, + "setNodes": 1, + "TopLevelItem": 3, + "getJob": 1, + "getItem": 1, + "getJobCaseInsensitive": 1, + "match": 2, + "Functions.toEmailSafeString": 2, + "item": 2, + "getItems": 1, + "item.getName": 1, + "synchronized": 1, + "doQuietDown": 2, + "StaplerResponse": 4, + "rsp": 6, + "ServletException": 3, + ".generateResponse": 2, + "doLogRss": 1, + "StaplerRequest": 4, + "req": 6, + "qs": 3, + "req.getQueryString": 1, + "rsp.sendRedirect2": 1, + "doFieldCheck": 3, + "fixEmpty": 8, + "req.getParameter": 4, + "FormValidation": 2, + "@QueryParameter": 4, + "value": 11, + "type": 3, + "errorText": 3, + "warningText": 3, + "FormValidation.error": 4, + "FormValidation.warning": 1, + "try": 26, + "type.equalsIgnoreCase": 2, + "NumberFormat.getInstance": 2, + ".parse": 2, + ".floatValue": 1, + "<=>": 1, + "0": 1, + "error": 1, + "Messages": 1, + "Hudson_NotAPositiveNumber": 1, + "equalsIgnoreCase": 1, + "number": 1, + "negative": 1, + "NumberFormat": 1, + "parse": 1, + "floatValue": 1, + "Messages.Hudson_NotANegativeNumber": 1, + "catch": 27, + "ParseException": 1, + "Messages.Hudson_NotANumber": 1, + "FormValidation.ok": 1, + "isWindows": 1, + "File.pathSeparatorChar": 1, + "isDarwin": 1, + "Platform.isDarwin": 1, + "adminCheck": 3, + "Stapler.getCurrentRequest": 1, + "Stapler.getCurrentResponse": 1, + "isAdmin": 4, + "rsp.sendError": 1, + "StaplerResponse.SC_FORBIDDEN": 1, + ".getACL": 1, + ".hasPermission": 1, + "ADMINISTER": 1, + "XSTREAM.alias": 1, + "Hudson.class": 1, + "MasterComputer": 1, + "Jenkins.MasterComputer": 1, + "CloudList": 3, + "Jenkins.CloudList": 1, + "h": 2, + "needed": 1, + "XStream": 1, + "deserialization": 1, + "nokogiri": 6, + "java.util.HashMap": 1, + "org.jruby.RubyArray": 1, "org.jruby.RubyFixnum": 1, "org.jruby.RubyModule": 1, "org.jruby.runtime.ObjectAllocator": 1, - "org.jruby.runtime.builtin.IRubyObject": 2, "org.jruby.runtime.load.BasicLibraryService": 1, - "public": 214, - "class": 12, "NokogiriService": 1, "implements": 3, "BasicLibraryService": 1, - "{": 434, - "static": 141, - "final": 78, - "String": 33, "nokogiriClassCacheGvarName": 1, "Map": 1, "": 2, - "RubyClass": 92, "nokogiriClassCache": 2, - "boolean": 36, "basicLoad": 1, - "(": 1097, - "Ruby": 43, "ruby": 25, - ")": 1097, "init": 2, "createNokogiriClassCahce": 2, - "return": 267, - "true": 21, - "}": 434, - "private": 77, - "void": 25, "Collections.synchronizedMap": 1, - "new": 131, "HashMap": 1, "nokogiriClassCache.put": 26, "ruby.getClassFromPath": 26, @@ -27009,7 +27627,6 @@ "attrDecl.defineAnnotatedMethods": 1, "XmlAttributeDecl.class": 1, "characterData": 3, - "null": 80, "comment": 1, "XML_COMMENT_ALLOCATOR": 2, "comment.defineAnnotatedMethods": 1, @@ -27030,7 +27647,6 @@ "XML_DOCUMENT_FRAGMENT_ALLOCATOR": 2, "documentFragment.defineAnnotatedMethods": 1, "XmlDocumentFragment.class": 1, - "element": 3, "XML_ELEMENT_ALLOCATOR": 2, "element.defineAnnotatedMethods": 1, "XmlElement.class": 1, @@ -27102,8 +27718,6 @@ "//RubyModule": 1, "htmlDoc": 1, "html.defineOrGetClassUnder": 1, - "document": 5, - "htmlDocument": 6, "HTML_DOCUMENT_ALLOCATOR": 2, "htmlDocument.defineAnnotatedMethods": 1, "HtmlDocument.class": 1, @@ -27128,20 +27742,12 @@ "XsltStylesheet.class": 2, "xsltModule.defineAnnotatedMethod": 1, "ObjectAllocator": 60, - "IRubyObject": 35, "allocate": 30, - "runtime": 88, - "klazz": 107, "EncodingHandler": 1, - "HtmlDocument": 7, - "if": 116, - "try": 26, "clone": 47, "htmlDocument.clone": 1, "clone.setMetaClass": 23, - "catch": 27, "CloneNotSupportedException": 23, - "e": 31, "HtmlSaxParserContext": 5, "htmlSaxParserContext.clone": 1, "HtmlElementDescription": 1, @@ -27155,7 +27761,6 @@ "XmlComment": 5, "xmlComment": 3, "xmlComment.clone": 1, - "XmlDocument": 8, "xmlDocument.clone": 1, "XmlDocumentFragment": 5, "xmlDocumentFragment": 3, @@ -27190,7 +27795,6 @@ "xmlReader.clone": 1, "XmlAttributeDecl": 1, "XmlEntityDecl": 1, - "throw": 9, "runtime.newNotImplementedError": 1, "XmlRelaxng": 5, "xmlRelaxng": 3, @@ -27212,152 +27816,6 @@ "XsltStylesheet": 4, "xsltStylesheet": 3, "xsltStylesheet.clone": 1, - "hudson.model": 1, - "hudson.ExtensionListView": 1, - "hudson.Functions": 1, - "hudson.Platform": 1, - "hudson.PluginManager": 1, - "hudson.cli.declarative.CLIResolver": 1, - "hudson.model.listeners.ItemListener": 1, - "hudson.slaves.ComputerListener": 1, - "hudson.util.CopyOnWriteList": 1, - "hudson.util.FormValidation": 1, - "jenkins.model.Jenkins": 1, - "org.jvnet.hudson.reactor.ReactorException": 1, - "org.kohsuke.stapler.QueryParameter": 1, - "org.kohsuke.stapler.Stapler": 1, - "org.kohsuke.stapler.StaplerRequest": 1, - "org.kohsuke.stapler.StaplerResponse": 1, - "javax.servlet.ServletContext": 1, - "javax.servlet.ServletException": 1, - "java.io.File": 1, - "java.io.IOException": 10, - "java.text.NumberFormat": 1, - "java.text.ParseException": 1, - "java.util.List": 1, - "hudson.Util.fixEmpty": 1, - "Hudson": 5, - "extends": 10, - "Jenkins": 2, - "transient": 2, - "CopyOnWriteList": 4, - "": 2, - "itemListeners": 2, - "ExtensionListView.createCopyOnWriteList": 2, - "ItemListener.class": 1, - "": 2, - "computerListeners": 2, - "ComputerListener.class": 1, - "@CLIResolver": 1, - "getInstance": 2, - "Jenkins.getInstance": 2, - "File": 2, - "root": 6, - "ServletContext": 2, - "context": 8, - "throws": 26, - "IOException": 8, - "InterruptedException": 2, - "ReactorException": 2, - "this": 16, - "PluginManager": 1, - "pluginManager": 2, - "super": 7, - "getJobListeners": 1, - "getComputerListeners": 1, - "Slave": 3, - "getSlave": 1, - "name": 10, - "Node": 1, - "n": 3, - "getNode": 1, - "instanceof": 19, - "List": 3, - "": 2, - "getSlaves": 1, - "slaves": 3, - "setSlaves": 1, - "setNodes": 1, - "TopLevelItem": 3, - "getJob": 1, - "getItem": 1, - "getJobCaseInsensitive": 1, - "match": 2, - "Functions.toEmailSafeString": 2, - "for": 16, - "item": 2, - "getItems": 1, - "item.getName": 1, - ".equalsIgnoreCase": 5, - "synchronized": 1, - "doQuietDown": 2, - "StaplerResponse": 4, - "rsp": 6, - "ServletException": 3, - ".generateResponse": 2, - "doLogRss": 1, - "StaplerRequest": 4, - "req": 6, - "qs": 3, - "req.getQueryString": 1, - "rsp.sendRedirect2": 1, - "+": 83, - "doFieldCheck": 3, - "fixEmpty": 8, - "req.getParameter": 4, - "FormValidation": 2, - "@QueryParameter": 4, - "value": 11, - "type": 3, - "errorText": 3, - "warningText": 3, - "FormValidation.error": 4, - "FormValidation.warning": 1, - "type.equalsIgnoreCase": 2, - "NumberFormat.getInstance": 2, - ".parse": 2, - "else": 33, - ".floatValue": 1, - "<=>": 1, - "0": 1, - "error": 1, - "Messages": 1, - "Hudson_NotAPositiveNumber": 1, - "equalsIgnoreCase": 1, - "number": 1, - "negative": 1, - "NumberFormat": 1, - "parse": 1, - "floatValue": 1, - "Messages.Hudson_NotANegativeNumber": 1, - "ParseException": 1, - "Messages.Hudson_NotANumber": 1, - "FormValidation.ok": 1, - "isWindows": 1, - "File.pathSeparatorChar": 1, - "isDarwin": 1, - "Platform.isDarwin": 1, - "adminCheck": 3, - "Stapler.getCurrentRequest": 1, - "Stapler.getCurrentResponse": 1, - "isAdmin": 4, - "rsp.sendError": 1, - "StaplerResponse.SC_FORBIDDEN": 1, - "false": 12, - ".getACL": 1, - ".hasPermission": 1, - "ADMINISTER": 1, - "XSTREAM.alias": 1, - "Hudson.class": 1, - "MasterComputer": 1, - "Jenkins.MasterComputer": 1, - "CloudList": 3, - "Jenkins.CloudList": 1, - "h": 2, - "//": 16, - "needed": 1, - "XStream": 1, - "deserialization": 1, "persons": 1, "ProtocolBuffer": 2, "registerAllExtensions": 1, @@ -27393,18 +27851,12 @@ "extensionRegistry": 16, "com.google.protobuf.InvalidProtocolBufferException": 9, "initFields": 2, - "int": 62, "mutable_bitField0_": 1, "com.google.protobuf.UnknownFieldSet.Builder": 1, "com.google.protobuf.UnknownFieldSet.newBuilder": 1, "done": 4, - "while": 10, "tag": 3, "input.readTag": 1, - "switch": 6, - "case": 56, - "break": 4, - "default": 6, "parseUnknownField": 1, "bitField0_": 15, "|": 5, @@ -27417,9 +27869,7 @@ "unknownFields.build": 1, "makeExtensionsImmutable": 1, "com.google.protobuf.Descriptors.Descriptor": 4, - "getDescriptor": 15, "persons.ProtocolBuffer.internal_static_persons_Person_descriptor": 3, - "protected": 8, "com.google.protobuf.GeneratedMessage.FieldAccessorTable": 4, "internalGetFieldAccessorTable": 2, "persons.ProtocolBuffer.internal_static_persons_Person_fieldAccessorTable": 2, @@ -27437,14 +27887,11 @@ "&": 7, "ref": 16, "bs": 1, - "s": 10, "bs.toStringUtf8": 1, "bs.isValidUtf8": 1, - "b": 7, "com.google.protobuf.ByteString.copyFromUtf8": 2, "byte": 4, "memoizedIsInitialized": 4, - "-": 15, "isInitialized": 5, "writeTo": 1, "com.google.protobuf.CodedOutputStream": 2, @@ -27453,10 +27900,8 @@ "output.writeBytes": 1, ".writeTo": 1, "memoizedSerializedSize": 3, - "size": 16, ".computeBytesSize": 1, ".getSerializedSize": 1, - "long": 5, "serialVersionUID": 1, "L": 1, "writeReplace": 1, @@ -27466,8 +27911,6 @@ "parseFrom": 8, "data": 8, "PARSER.parseFrom": 8, - "[": 54, - "]": 54, "java.io.InputStream": 4, "parseDelimitedFrom": 2, "PARSER.parseDelimitedFrom": 2, @@ -27513,7 +27956,6 @@ "e.getUnfinishedMessage": 1, ".toStringUtf8": 1, "setName": 1, - "NullPointerException": 3, "clearName": 1, ".getName": 1, "setNameBytes": 1, @@ -27528,730 +27970,1471 @@ "assignDescriptors": 1, ".getMessageTypes": 1, ".get": 1, - ".internalBuildGeneratedFileFrom": 1, - "nokogiri.internals": 1, - "nokogiri.internals.NokogiriHelpers.getNokogiriClass": 1, - "nokogiri.internals.NokogiriHelpers.isNamespace": 1, - "nokogiri.internals.NokogiriHelpers.stringOrNil": 1, - "nokogiri.HtmlDocument": 1, - "nokogiri.NokogiriService": 1, - "nokogiri.XmlDocument": 1, - "org.apache.xerces.parsers.DOMParser": 1, - "org.apache.xerces.xni.Augmentations": 1, - "org.apache.xerces.xni.QName": 1, - "org.apache.xerces.xni.XMLAttributes": 1, - "org.apache.xerces.xni.XNIException": 1, - "org.apache.xerces.xni.parser.XMLDocumentFilter": 1, - "org.apache.xerces.xni.parser.XMLParserConfiguration": 1, - "org.cyberneko.html.HTMLConfiguration": 1, - "org.cyberneko.html.filters.DefaultFilter": 1, - "org.jruby.runtime.ThreadContext": 1, - "org.w3c.dom.Document": 1, - "org.w3c.dom.NamedNodeMap": 1, - "org.w3c.dom.NodeList": 1, - "HtmlDomParserContext": 3, - "XmlDomParserContext": 1, - "options": 4, - "encoding": 2, - "@Override": 6, - "initErrorHandler": 1, - "options.strict": 1, - "errorHandler": 6, - "NokogiriStrictErrorHandler": 1, - "options.noError": 2, - "options.noWarning": 2, - "NokogiriNonStrictErrorHandler4NekoHtml": 1, - "initParser": 1, - "XMLParserConfiguration": 1, - "config": 2, - "HTMLConfiguration": 1, - "XMLDocumentFilter": 3, - "removeNSAttrsFilter": 2, - "RemoveNSAttrsFilter": 2, - "elementValidityCheckFilter": 3, - "ElementValidityCheckFilter": 3, - "//XMLDocumentFilter": 1, - "filters": 3, - "config.setErrorHandler": 1, - "this.errorHandler": 2, - "parser": 1, - "DOMParser": 1, - "setProperty": 4, - "java_encoding": 2, - "setFeature": 4, - "enableDocumentFragment": 1, - "getNewEmptyDocument": 1, - "ThreadContext": 2, - "args": 6, - "XmlDocument.rbNew": 1, - "getNokogiriClass": 1, - "context.getRuntime": 3, - "wrapDocument": 1, - "Document": 2, - "NokogiriService.HTML_DOCUMENT_ALLOCATOR.allocate": 1, - "htmlDocument.setDocumentNode": 1, - "ruby_encoding.isNil": 1, - "detected_encoding": 2, - "&&": 6, - "detected_encoding.isNil": 1, - "ruby_encoding": 3, - "charset": 2, - "tryGetCharsetFromHtml5MetaTag": 2, - "stringOrNil": 1, - "htmlDocument.setEncoding": 1, - "htmlDocument.setParsedEncoding": 1, - "document.getDocumentElement": 2, - ".getNodeName": 4, - "NodeList": 2, - "list": 1, - ".getChildNodes": 2, - "i": 54, - "<": 13, - "list.getLength": 1, - "list.item": 2, - "headers": 1, - "j": 9, - "headers.getLength": 1, - "headers.item": 2, - "NamedNodeMap": 1, - "nodeMap": 1, - ".getAttributes": 1, - "k": 5, - "nodeMap.getLength": 1, - "nodeMap.item": 2, - ".getNodeValue": 1, - "DefaultFilter": 2, - "startElement": 2, - "QName": 2, - "XMLAttributes": 2, - "attrs": 4, - "Augmentations": 2, - "augs": 4, - "XNIException": 2, - "attrs.getLength": 1, - "isNamespace": 1, - "attrs.getQName": 1, - "attrs.removeAttributeAt": 1, - "element.uri": 1, - "super.startElement": 2, - "NokogiriErrorHandler": 2, - "element_names": 3, - "g": 1, - "r": 1, - "w": 1, - "x": 8, - "y": 1, - "z": 1, - "isValid": 2, - "testee": 1, - "char": 13, - "c": 21, - "testee.toCharArray": 1, - "index": 4, - "Integer": 2, - ".length": 1, - "testee.equals": 1, - "name.rawname": 2, - "errorHandler.getErrors": 1, - ".add": 1, - "Exception": 1, - "clojure.lang": 1, - "java.lang.ref.Reference": 1, - "java.math.BigInteger": 1, - "java.util.concurrent.ConcurrentHashMap": 1, - "java.lang.ref.SoftReference": 1, - "java.lang.ref.ReferenceQueue": 1, - "Util": 1, - "equiv": 17, - "Object": 31, - "k1": 40, - "k2": 38, - "Number": 9, - "Numbers.equal": 1, - "IPersistentCollection": 5, - "||": 8, - "pcequiv": 2, - "k1.equals": 2, - "double": 4, - "c1": 2, - "c2": 2, - ".equiv": 2, - "equals": 2, - "identical": 1, - "Class": 10, - "classOf": 1, - "x.getClass": 1, - "compare": 1, - "Numbers.compare": 1, - "Comparable": 1, - ".compareTo": 1, - "hash": 3, - "o": 12, - "o.hashCode": 2, - "hasheq": 1, - "Numbers.hasheq": 1, - "IHashEq": 2, - ".hasheq": 1, - "hashCombine": 1, - "seed": 5, - "//a": 1, - "la": 1, - "boost": 1, - "e3779b9": 1, - "<<": 1, - "isPrimitive": 1, - "c.isPrimitive": 2, - "Void.TYPE": 3, - "isInteger": 1, - "Long": 1, - "BigInt": 1, - "BigInteger": 1, - "ret1": 2, - "ret": 4, - "nil": 2, - "ISeq": 2, - "": 1, - "clearCache": 1, - "ReferenceQueue": 1, - "rq": 1, - "ConcurrentHashMap": 1, - "K": 2, - "Reference": 3, - "": 3, - "cache": 1, - "//cleanup": 1, - "any": 1, - "dead": 1, - "entries": 1, - "rq.poll": 2, - "Map.Entry": 1, - "cache.entrySet": 1, - "val": 3, - "e.getValue": 1, - "val.get": 1, - "cache.remove": 1, - "e.getKey": 1, - "RuntimeException": 5, - "runtimeException": 2, - "Throwable": 4, - "sneakyThrow": 1, - "t": 6, - "Util.": 1, - "": 1, - "sneakyThrow0": 2, - "@SuppressWarnings": 1, - "": 1, - "T": 2, - "clojure.asm": 1, - "java.lang.reflect.Constructor": 1, - "java.lang.reflect.Method": 1, - "Type": 42, - "VOID": 5, - "BOOLEAN": 6, - "CHAR": 6, - "BYTE": 6, - "SHORT": 6, - "INT": 6, - "FLOAT": 6, - "LONG": 7, - "DOUBLE": 7, - "ARRAY": 6, - "OBJECT": 7, - "VOID_TYPE": 3, - "BOOLEAN_TYPE": 3, - "CHAR_TYPE": 3, - "BYTE_TYPE": 3, - "SHORT_TYPE": 3, - "INT_TYPE": 3, - "FLOAT_TYPE": 3, - "LONG_TYPE": 3, - "DOUBLE_TYPE": 3, - "sort": 18, - "buf": 43, - "off": 25, - "len": 24, - "this.sort": 2, - "this.len": 2, - "this.buf": 2, - "this.off": 1, - "getType": 10, - "typeDescriptor": 1, - "typeDescriptor.toCharArray": 1, - "Integer.TYPE": 2, - "Boolean.TYPE": 2, - "Byte.TYPE": 2, - "Character.TYPE": 2, - "Short.TYPE": 2, - "Double.TYPE": 2, - "Float.TYPE": 2, - "getObjectType": 1, - "l": 5, - "name.length": 2, - "name.getChars": 1, - "getArgumentTypes": 2, - "methodDescriptor": 2, - "methodDescriptor.toCharArray": 2, - "car": 18, - ".len": 1, - "Method": 3, - "method": 2, - "classes": 2, - "method.getParameterTypes": 1, - "types": 3, - "classes.length": 2, - "getReturnType": 2, - "methodDescriptor.indexOf": 1, - "method.getReturnType": 1, - "getSort": 1, - "getDimensions": 3, - "getElementType": 2, - "getClassName": 1, - "StringBuffer": 14, - ".getClassName": 1, - "b.append": 1, - "b.toString": 1, - ".replace": 2, - "getInternalName": 2, - "buf.toString": 4, - "getMethodDescriptor": 2, - "returnType": 1, - "argumentTypes": 2, - "buf.append": 21, - "argumentTypes.length": 1, - ".getDescriptor": 1, - "returnType.getDescriptor": 1, - "c.getName": 1, - "getConstructorDescriptor": 1, - "Constructor": 1, - "parameters": 4, - "c.getParameterTypes": 1, - "parameters.length": 2, - ".toString": 1, - "m": 1, - "m.getParameterTypes": 1, - "m.getReturnType": 1, - "d": 10, - "d.isPrimitive": 1, - "d.isArray": 1, - "d.getComponentType": 1, - "d.getName": 1, - "name.charAt": 1, - "getSize": 1, - "getOpcode": 1, - "opcode": 17, - "Opcodes.IALOAD": 1, - "Opcodes.IASTORE": 1, - "t.sort": 1, - "Type.OBJECT": 2, - "Type.ARRAY": 2, - "t.len": 1, - "t.off": 1, - "end": 4, - "t.buf": 1, - "hashCode": 1, - "hc": 4, - "*": 2, - "toString": 1 + ".internalBuildGeneratedFileFrom": 1 }, "JavaScript": { - "(": 8528, "function": 1214, - "window": 18, - "angular": 1, + "(": 8528, ")": 8536, "{": 2742, - "Array.prototype.last": 1, - "return": 947, - "this": 578, - "[": 1461, - "this.length": 41, - "-": 706, - "]": 1458, ";": 4066, - "}": 2718, + "//": 410, + "jshint": 1, + "_": 9, "var": 916, - "app": 3, - "angular.module": 1, - "JSON": 5, + "Modal": 2, + "content": 5, + "options": 56, + "this.options": 6, + "this.": 2, + "element": 19, + ".delegate": 2, + ".proxy": 1, + "this.hide": 1, + "this": 578, + "}": 2718, + "Modal.prototype": 1, + "constructor": 8, + "toggle": 10, + "return": 947, + "[": 1461, + "this.isShown": 3, + "]": 1458, + "show": 10, + "that": 33, + "e": 663, + ".Event": 1, + "element.trigger": 1, "if": 1230, - "f": 666, - "n": 874, - "<": 209, - "+": 1136, - "typeof": 132, - "Date.prototype.toJSON": 2, - "key": 85, - "isFinite": 1, - "this.valueOf": 2, - "this.getUTCFullYear": 1, - "this.getUTCMonth": 1, - "this.getUTCDate": 1, - "this.getUTCHours": 1, - "this.getUTCMinutes": 1, - "this.getUTCSeconds": 1, - "null": 427, - "String.prototype.toJSON": 1, - "Number.prototype.toJSON": 1, - "Boolean.prototype.toJSON": 1, - "cx": 2, - "/": 290, - "u0000": 1, - "u00ad": 1, - "u0600": 1, - "u0604": 1, - "u070f": 1, - "u17b4": 1, - "u17b5": 1, - "u200c": 1, - "u200f": 1, - "u2028": 3, - "u202f": 1, - "u2060": 1, - "u206f": 1, - "ufeff": 1, - "ufff0": 1, - "uffff": 1, - "/g": 37, - "escapable": 1, - "b": 961, - "t": 436, - "r": 261, + "||": 648, + "e.isDefaultPrevented": 2, + ".addClass": 1, + "true": 147, + "escape.call": 1, + "backdrop.call": 1, + "transition": 1, + ".support.transition": 1, + "&&": 1017, + "that.": 3, + "element.hasClass": 1, + "element.parent": 1, + ".length": 24, + "element.appendTo": 1, + "document.body": 8, + "//don": 1, + "in": 170, + "shown": 2, + "hide": 8, + "body": 22, + "modal": 4, + "-": 706, + "open": 2, + "fade": 4, + "hidden": 12, + "
": 4, + "class=": 5, + "static": 2, + "keyup.dismiss.modal": 2, "object": 59, "string": 41, - "number": 13, - "boolean": 8, - "Array": 3, - "JSON.stringify": 5, - "u": 304, - "/bfnrt": 1, - "|": 206, - "a": 1489, - "fA": 2, - "F": 8, - ".replace": 38, - "*": 71, - "JSON.parse": 1, - "PUT": 1, - "DELETE": 1, - "all": 16, - "change": 16, - "id": 38, - "_id": 1, - "error": 20, - "Can": 2, - "add": 16, - "remove": 9, - "s": 290, - "ties": 1, - "to": 92, - "collection.": 1, - "_removeReference": 1, - "model": 14, - "model.collection": 2, - "delete": 39, - "model.unbind": 1, - "this._onModelEvent": 1, - "_onModelEvent": 1, - "ev": 5, - "collection": 3, - "options": 56, - "||": 648, - "&&": 1017, - "this._remove": 1, - "model.idAttribute": 2, - "this._byId": 2, - "model.previous": 1, - "model.id": 1, - "this.trigger.apply": 2, - "arguments": 83, - "methods": 8, - "_.each": 1, - "method": 30, - "Backbone.Collection.prototype": 1, - "_": 9, - ".apply": 7, - "this.models": 1, - ".concat": 3, - "_.toArray": 1, - "Backbone.Router": 1, - "options.routes": 2, - "this.routes": 4, - "this._bindRoutes": 1, - "this.initialize.apply": 2, - "namedParam": 2, - "w": 110, - "d": 771, - "splatParam": 2, - "escapeRegExp": 2, - ".": 91, - "#": 13, - "_.extend": 9, - "Backbone.Router.prototype": 1, - "Backbone.Events": 2, - "initialize": 3, - "//": 410, - "route": 18, - "name": 161, - "callback": 23, - "Backbone.history": 2, - "new": 86, - "Backbone.History": 2, - "_.isRegExp": 1, - "this._routeToRegExp": 1, - "Backbone.history.route": 1, - "_.bind": 2, - "fragment": 27, - "args": 31, - "this._extractParameters": 1, - "callback.apply": 1, - "navigate": 2, - "triggerRoute": 4, - "Backbone.history.navigate": 1, - "_bindRoutes": 1, - "routes": 4, - "for": 262, - "in": 170, - "routes.unshift": 1, - "i": 853, - "l": 312, - "routes.length": 1, - "this.route": 1, - "_routeToRegExp": 1, - "route.replace": 1, - "RegExp": 12, - "_extractParameters": 1, - "route.exec": 1, - ".slice": 6, - "this.handlers": 2, - "_.bindAll": 1, - "hashStrip": 4, - "#*": 1, - "isExplorer": 1, - "/msie": 1, - "w.": 17, - "historyStarted": 3, - "false": 142, - "Backbone.History.prototype": 1, - "interval": 3, - "getFragment": 1, - "forcePushState": 2, - "this._hasPushState": 6, - "window.location.pathname": 1, - "search": 5, - "window.location.search": 1, - "fragment.indexOf": 1, - "this.options.root": 6, - "fragment.substr": 1, - "this.options.root.length": 1, - "else": 307, - "window.location.hash": 3, - "fragment.replace": 1, - "start": 20, - "throw": 27, - "Error": 16, - "this.options": 6, - "root": 5, - "this._wantsPushState": 3, - "this.options.pushState": 2, - "window.history": 2, - "window.history.pushState": 2, - "this.getFragment": 6, - "docMode": 3, - "document.documentMode": 3, - "oldIE": 3, - "isExplorer.exec": 1, - "navigator.userAgent.toLowerCase": 1, - "this.iframe": 4, - ".hide": 2, - ".appendTo": 2, - ".contentWindow": 1, - "this.navigate": 2, - ".bind": 3, - "this.checkUrl": 3, - "setInterval": 6, - "this.interval": 1, - "this.fragment": 13, - "true": 147, - "loc": 2, - "window.location": 5, - "atRoot": 3, - "loc.pathname": 1, - "loc.hash": 1, - "loc.hash.replace": 1, - "window.history.replaceState": 1, - "document.title": 2, - "loc.protocol": 2, - "loc.host": 2, - "this.loadUrl": 4, - "this.handlers.unshift": 1, - "checkUrl": 1, - "e": 663, - "current": 7, - "this.iframe.location.hash": 3, - "decodeURIComponent": 2, - "loadUrl": 1, - "fragmentOverride": 2, - "matched": 2, - "_.any": 1, - "handler": 14, - "handler.route.test": 1, - "handler.callback": 1, - "frag": 13, - "frag.indexOf": 1, - "this.iframe.document.open": 1, - ".close": 1, - "Backbone.View": 1, - "this.cid": 3, - "_.uniqueId": 1, - "this._configure": 1, - "this._ensureElement": 1, - "this.delegateEvents": 1, - "selectorDelegate": 2, - "selector": 40, - "this.el": 10, - "eventSplitter": 2, - "S": 8, - "s*": 15, - ".*": 20, - "viewOptions": 2, - "Backbone.View.prototype": 1, - "tagName": 3, - "render": 1, - ".remove": 2, - "make": 2, - "attributes": 14, - "content": 5, - "el": 4, - "document.createElement": 26, - ".attr": 1, - ".html": 1, - "delegateEvents": 1, - "events": 18, - "this.events": 1, - ".unbind": 4, - "match": 30, - "key.match": 1, - "eventName": 21, - ".delegate": 2, - "_configure": 1, - "viewOptions.length": 1, - "attr": 13, - "_ensureElement": 1, - "attrs": 6, - "this.attributes": 1, - "this.id": 2, - "attrs.id": 1, - "this.className": 10, - "this.make": 1, - "this.tagName": 1, - "_.isString": 1, - ".get": 3, - "extend": 13, - "protoProps": 6, - "classProps": 2, + "click.modal.data": 1, + "api": 1, + "data": 145, + "target": 44, + "href": 9, + ".extend": 1, + "target.data": 1, + "this.data": 5, + "e.preventDefault": 1, + "target.modal": 1, + "option": 12, + "window.jQuery": 7, + "Animal": 12, + "Horse": 12, + "Snake": 12, + "sam": 4, + "tom": 4, + "__hasProp": 2, + "Object.prototype.hasOwnProperty": 6, + "__extends": 6, "child": 17, - "inherits": 2, - "child.extend": 1, - "this.extend": 1, - "Backbone.Model.extend": 1, - "Backbone.Collection.extend": 1, - "Backbone.Router.extend": 1, - "Backbone.View.extend": 1, - "methodMap": 2, - "Backbone.sync": 1, - "type": 49, - "params": 2, - "dataType": 6, - "processData": 3, - "params.url": 2, - "getUrl": 2, - "urlError": 2, - "params.data": 5, - "params.contentType": 2, - "model.toJSON": 1, - "Backbone.emulateJSON": 2, - "params.processData": 1, - "Backbone.emulateHTTP": 1, - "params.data._method": 1, - "params.type": 1, - "params.beforeSend": 1, - "xhr": 1, - "xhr.setRequestHeader": 1, - ".ajax": 1, - "ctor": 6, "parent": 15, - "staticProps": 3, - "protoProps.hasOwnProperty": 1, - "protoProps.constructor": 1, - "parent.apply": 1, + "for": 262, + "key": 85, + "__hasProp.call": 2, + "ctor": 6, + "this.constructor": 5, "ctor.prototype": 3, "parent.prototype": 6, "child.prototype": 4, - "child.prototype.constructor": 1, + "new": 86, "child.__super__": 3, - "object.url": 4, - "_.isFunction": 1, - "wrapError": 1, - "onError": 3, - "resp": 3, - "model.trigger": 1, - "escapeHTML": 1, - "string.replace": 1, - "&": 13, - "#x": 1, - "da": 1, - "/gi": 2, - "": 1, - "lt": 55, - "replace": 8, - "#x27": 1, - "#x2F": 1, + "name": 161, + "this.name": 7, + "Animal.prototype.move": 2, + "meters": 4, + "alert": 11, + "+": 1136, + "Snake.__super__.constructor.apply": 2, + "arguments": 83, + "Snake.prototype.move": 2, + "Snake.__super__.move.call": 2, + "Horse.__super__.constructor.apply": 2, + "Horse.prototype.move": 2, + "Horse.__super__.move.call": 2, + "sam.move": 2, + "tom.move": 2, ".call": 10, + ".hasOwnProperty": 2, + "Animal.name": 1, + "_super": 4, + "Snake.name": 1, + "Horse.name": 1, + "console.log": 3, + "hanaMath": 1, + ".import": 1, + "x": 41, + "parseFloat": 32, + ".request.parameters.get": 2, + "y": 109, + "result": 12, + "hanaMath.multiply": 1, + "output": 2, + "title": 1, + "input": 26, + ".response.contentType": 1, + ".response.statusCode": 1, + ".net.http.OK": 1, + ".response.setBody": 1, + "JSON.stringify": 5, + "multiply": 1, + "*": 71, + "add": 16, + "util": 1, + "require": 9, + "net": 1, + "stream": 1, + "url": 23, + "EventEmitter": 3, + ".EventEmitter": 1, + "FreeList": 2, + ".FreeList": 1, + "HTTPParser": 2, + "process.binding": 1, + ".HTTPParser": 1, + "assert": 8, + ".ok": 1, + "END_OF_FILE": 3, + "debug": 15, + "process.env.NODE_DEBUG": 2, + "/http/.test": 1, + "console.error": 3, + "else": 307, + "parserOnHeaders": 2, + "headers": 41, + "this.maxHeaderPairs": 2, + "<": 209, + "this._headers.length": 1, + "this._headers": 13, + "this._headers.concat": 1, + "this._url": 1, + "parserOnHeadersComplete": 2, + "info": 2, + "parser": 27, + "info.headers": 1, + "info.url": 1, + "parser._headers": 6, + "parser._url": 4, + "parser.incoming": 9, + "IncomingMessage": 4, + "parser.socket": 4, + "parser.incoming.httpVersionMajor": 1, + "info.versionMajor": 2, + "parser.incoming.httpVersionMinor": 1, + "info.versionMinor": 2, + "parser.incoming.httpVersion": 1, + "parser.incoming.url": 1, + "n": 874, + "headers.length": 2, + "parser.maxHeaderPairs": 4, + "Math.min": 5, + "i": 853, + "k": 302, + "v": 135, + "parser.incoming._addHeaderLine": 2, + "info.method": 2, + "parser.incoming.method": 1, + "parser.incoming.statusCode": 2, + "info.statusCode": 1, + "parser.incoming.upgrade": 4, + "info.upgrade": 2, + "skipBody": 3, + "false": 142, + "response": 3, + "to": 92, + "HEAD": 3, + "or": 38, + "CONNECT": 1, + "parser.onIncoming": 3, + "info.shouldKeepAlive": 1, + "parserOnBody": 2, + "b": 961, + "start": 20, + "len": 11, + "slice": 10, + "b.slice": 1, + "parser.incoming._paused": 2, + "parser.incoming._pendings.length": 2, + "parser.incoming._pendings.push": 2, + "parser.incoming._emitData": 1, + "parserOnMessageComplete": 2, + "parser.incoming.complete": 2, + "parser.incoming.readable": 1, + "parser.incoming._emitEnd": 1, + "parser.socket.readable": 1, + "parser.socket.resume": 1, + "parsers": 2, + "HTTPParser.REQUEST": 2, + "parser.onHeaders": 1, + "parser.onHeadersComplete": 1, + "parser.onBody": 1, + "parser.onMessageComplete": 1, + "exports.parsers": 1, + "CRLF": 13, + "STATUS_CODES": 2, + "exports.STATUS_CODES": 1, + "RFC": 16, + "obsoleted": 1, + "by": 12, + "connectionExpression": 1, + "/Connection/i": 1, + "transferEncodingExpression": 1, + "/Transfer": 1, + "Encoding/i": 1, + "closeExpression": 1, + "/close/i": 1, + "chunkExpression": 1, + "/chunk/i": 1, + "contentLengthExpression": 1, + "/Content": 1, + "Length/i": 1, + "dateExpression": 1, + "/Date/i": 1, + "expectExpression": 1, + "/Expect/i": 1, + "continueExpression": 1, + "/100": 2, + "continue/i": 1, + "dateCache": 5, + "utcDate": 2, + "d": 771, + "Date": 4, + "d.toUTCString": 1, + "setTimeout": 19, "undefined": 328, + "d.getMilliseconds": 1, + "socket": 26, + "stream.Stream.call": 2, + "this.socket": 10, + "this.connection": 8, + "this.httpVersion": 1, + "null": 427, + "this.complete": 2, + "this.headers": 2, + "this.trailers": 2, + "this.readable": 1, + "this._paused": 3, + "this._pendings": 1, + "this._endEmitted": 3, + "this.url": 1, + "this.method": 2, + "this.statusCode": 3, + "this.client": 1, + "util.inherits": 7, + "stream.Stream": 2, + "exports.IncomingMessage": 1, + "IncomingMessage.prototype.destroy": 1, + "error": 20, + "this.socket.destroy": 3, + "IncomingMessage.prototype.setEncoding": 1, + "encoding": 26, + "StringDecoder": 2, + ".StringDecoder": 1, + "lazy": 1, + "load": 5, + "this._decoder": 2, + "IncomingMessage.prototype.pause": 1, + "this.socket.pause": 1, + "IncomingMessage.prototype.resume": 1, + "this.socket.resume": 1, + "this._emitPending": 1, + "IncomingMessage.prototype._emitPending": 1, + "callback": 23, + "this._pendings.length": 1, + "self": 17, + "process.nextTick": 1, + "while": 53, + "self._paused": 1, + "self._pendings.length": 2, + "chunk": 14, + "self._pendings.shift": 1, + "Buffer.isBuffer": 2, + "self._emitData": 1, + "self.readable": 1, + "self._emitEnd": 1, + "IncomingMessage.prototype._emitData": 1, + "this._decoder.write": 1, + "string.length": 1, + "this.emit": 5, + "IncomingMessage.prototype._emitEnd": 1, + "IncomingMessage.prototype._addHeaderLine": 1, + "field": 36, + "value": 98, + "dest": 12, + "field.toLowerCase": 1, + "switch": 30, + "case": 136, + ".push": 3, + "break": 111, + "default": 21, + "field.slice": 1, + "OutgoingMessage": 5, + "this.output": 3, + "this.outputEncodings": 2, + "this.writable": 1, + "this._last": 3, + "this.chunkedEncoding": 6, + "this.shouldKeepAlive": 4, + "this.useChunkedEncodingByDefault": 4, + "this.sendDate": 3, + "this._hasBody": 6, + "this._trailer": 5, + "this.finished": 4, + "exports.OutgoingMessage": 1, + "OutgoingMessage.prototype.destroy": 1, + "OutgoingMessage.prototype._send": 1, + "this._headerSent": 5, + "typeof": 132, + "this._header": 10, + "this.output.unshift": 1, + "this.outputEncodings.unshift": 1, + "this._writeRaw": 2, + "OutgoingMessage.prototype._writeRaw": 1, + "data.length": 3, + "this.connection._httpMessage": 3, + "this.connection.writable": 3, + "this.output.length": 5, + "this._buffer": 2, + "c": 775, + "this.output.shift": 2, + "this.outputEncodings.shift": 2, + "this.connection.write": 4, + "OutgoingMessage.prototype._buffer": 1, + "length": 48, + "this.output.push": 2, + "this.outputEncodings.push": 2, + "lastEncoding": 2, + "lastData": 2, + "data.constructor": 1, + "lastData.constructor": 1, + "OutgoingMessage.prototype._storeHeader": 1, + "firstLine": 2, + "sentConnectionHeader": 3, + "sentContentLengthHeader": 4, + "sentTransferEncodingHeader": 3, + "sentDateHeader": 3, + "sentExpect": 3, + "messageHeader": 7, + "store": 3, + "connectionExpression.test": 1, + "closeExpression.test": 1, + "self._last": 4, + "self.shouldKeepAlive": 4, + "transferEncodingExpression.test": 1, + "chunkExpression.test": 1, + "self.chunkedEncoding": 1, + "contentLengthExpression.test": 1, + "dateExpression.test": 1, + "expectExpression.test": 1, + "keys": 11, + "Object.keys": 5, + "isArray": 10, + "Array.isArray": 7, + "l": 312, + "keys.length": 5, + "j": 265, + "value.length": 1, + "shouldSendKeepAlive": 2, + "this.agent": 2, + "this._send": 8, + "OutgoingMessage.prototype.setHeader": 1, + "arguments.length": 18, + "throw": 27, + "Error": 16, + "name.toLowerCase": 6, + "this._headerNames": 5, + "OutgoingMessage.prototype.getHeader": 1, + "OutgoingMessage.prototype.removeHeader": 1, + "delete": 39, + "OutgoingMessage.prototype._renderHeaders": 1, + "OutgoingMessage.prototype.write": 1, + "this._implicitHeader": 2, + "TypeError": 2, + "chunk.length": 2, + "ret": 62, + "Buffer.byteLength": 2, + "len.toString": 2, + "OutgoingMessage.prototype.addTrailers": 1, + "OutgoingMessage.prototype.end": 1, + "hot": 3, + ".toString": 3, + "this.write": 1, + "Last": 2, + "chunk.": 1, + "this._finish": 2, + "OutgoingMessage.prototype._finish": 1, + "instanceof": 19, + "ServerResponse": 5, + "DTRACE_HTTP_SERVER_RESPONSE": 1, + "ClientRequest": 6, + "DTRACE_HTTP_CLIENT_REQUEST": 1, + "OutgoingMessage.prototype._flush": 1, + "this.socket.writable": 2, + "XXX": 1, + "Necessary": 1, + "this.socket.write": 1, + "req": 32, + "OutgoingMessage.call": 2, + "req.method": 5, + "req.httpVersionMajor": 2, + "req.httpVersionMinor": 2, + "exports.ServerResponse": 1, + "ServerResponse.prototype.statusCode": 1, + "onServerResponseClose": 3, + "this._httpMessage.emit": 2, + "ServerResponse.prototype.assignSocket": 1, + "socket._httpMessage": 9, + "socket.on": 2, + "this._flush": 1, + "ServerResponse.prototype.detachSocket": 1, + "socket.removeListener": 5, + "ServerResponse.prototype.writeContinue": 1, + "this._sent100": 2, + "ServerResponse.prototype._implicitHeader": 1, + "this.writeHead": 1, + "ServerResponse.prototype.writeHead": 1, + "statusCode": 7, + "reasonPhrase": 4, + "headerIndex": 4, + "obj": 40, + "this._renderHeaders": 3, + "obj.length": 1, + "obj.push": 1, + "statusLine": 2, + "statusCode.toString": 1, + "this._expect_continue": 1, + "this._storeHeader": 2, + "ServerResponse.prototype.writeHeader": 1, + "this.writeHead.apply": 1, + "Agent": 5, + "self.options": 2, + "self.requests": 6, + "self.sockets": 3, + "self.maxSockets": 1, + "self.options.maxSockets": 1, + "Agent.defaultMaxSockets": 2, + "self.on": 1, + "host": 29, + "port": 29, + "localAddress": 15, + ".shift": 1, + ".onSocket": 1, + "socket.destroy": 10, + "self.createConnection": 2, + "net.createConnection": 3, + "exports.Agent": 1, + "Agent.prototype.defaultPort": 1, + "Agent.prototype.addRequest": 1, + "this.sockets": 9, + "this.maxSockets": 1, + "req.onSocket": 1, + "this.createSocket": 2, + "this.requests": 5, + "Agent.prototype.createSocket": 1, + "util._extend": 1, + "options.port": 4, + "options.host": 4, + "options.localAddress": 3, + "s": 290, + "onFree": 3, + "self.emit": 9, + "s.on": 4, + "onClose": 3, + "err": 5, + "self.removeSocket": 2, + "onRemove": 3, + "s.removeListener": 3, + "Agent.prototype.removeSocket": 1, + "index": 5, + ".indexOf": 2, + ".splice": 5, + ".emit": 1, + "globalAgent": 3, + "exports.globalAgent": 1, + "cb": 16, + "self.agent": 3, + "options.agent": 3, + "defaultPort": 3, + "options.defaultPort": 1, + "options.hostname": 1, + "options.setHost": 1, + "setHost": 2, + "self.socketPath": 4, + "options.socketPath": 1, + "method": 30, + "self.method": 3, + "options.method": 2, + ".toUpperCase": 3, + "self.path": 3, + "options.path": 2, + "self.once": 2, + "options.headers": 7, + "self.setHeader": 1, + "this.getHeader": 2, + "hostHeader": 3, + "this.setHeader": 2, + "options.auth": 2, + "//basic": 1, + "auth": 1, + "Buffer": 1, + "self.useChunkedEncodingByDefault": 2, + "self._storeHeader": 2, + "self.getHeader": 1, + "self._renderHeaders": 1, + "options.createConnection": 4, + "self.onSocket": 3, + "self.agent.addRequest": 1, + "conn": 3, + "self._deferToConnect": 1, + "self._flush": 1, + "exports.ClientRequest": 1, + "ClientRequest.prototype._implicitHeader": 1, + "this.path": 1, + "ClientRequest.prototype.abort": 1, + "this._deferToConnect": 3, + "createHangUpError": 3, + "error.code": 1, + "freeParser": 9, + "parser.socket.onend": 1, + "parser.socket.ondata": 1, + "parser.socket.parser": 1, + "parsers.free": 1, + "req.parser": 1, + "socketCloseListener": 2, + "socket.parser": 3, + "req.emit": 8, + "req.res": 8, + "req.res.readable": 1, + "req.res.emit": 1, + "res": 14, + "req.res._emitPending": 1, + "res._emitEnd": 1, + "res.emit": 1, + "req._hadError": 3, + "parser.finish": 6, + "socketErrorListener": 2, + "err.message": 1, + "err.stack": 1, + "socketOnEnd": 1, + "this._httpMessage": 3, + "this.parser": 2, + "socketOnData": 1, + "end": 14, + "parser.execute": 2, + "bytesParsed": 4, + "socket.ondata": 3, + "socket.onend": 3, + "bodyHead": 4, + "d.slice": 2, + "eventName": 21, + "req.listeners": 1, + "req.upgradeOrConnect": 1, + "socket.emit": 1, + "parserOnIncomingClient": 1, + "shouldKeepAlive": 4, + "res.upgrade": 1, + "skip": 5, + "isHeadResponse": 2, + "res.statusCode": 1, + "Clear": 1, + "so": 8, + "we": 25, + "don": 5, + "continue": 18, + "ve": 3, + "been": 5, + "upgraded": 1, + "via": 2, + "WebSockets": 1, + "also": 5, + "shouldn": 2, + "AGENT": 2, + "socket.destroySoon": 2, + "keep": 1, + "alive": 1, + "close": 2, + "free": 1, + "number": 13, + "an": 12, + "important": 1, + "promisy": 1, + "thing": 2, + "all": 16, + "the": 107, + "onSocket": 3, + "self.socket.writable": 1, + "self.socket": 5, + ".apply": 7, + "arguments_": 2, + "self.socket.once": 1, + "ClientRequest.prototype.setTimeout": 1, + "msecs": 4, + "this.once": 2, + "emitTimeout": 4, + "this.socket.setTimeout": 1, + "this.socket.once": 1, + "this.setTimeout": 3, + "sock": 1, + "ClientRequest.prototype.setNoDelay": 1, + "ClientRequest.prototype.setSocketKeepAlive": 1, + "ClientRequest.prototype.clearTimeout": 1, + "exports.request": 2, + "url.parse": 1, + "options.protocol": 3, + "exports.get": 1, + "req.end": 1, + "ondrain": 3, + "httpSocketSetup": 2, + "Server": 6, + "requestListener": 6, + "net.Server.call": 1, + "allowHalfOpen": 1, + "this.addListener": 2, + "this.httpAllowHalfOpen": 1, + "connectionListener": 3, + "net.Server": 1, + "exports.Server": 1, + "exports.createServer": 1, + "outgoing": 2, + "incoming": 2, + "abortIncoming": 3, + "incoming.length": 2, + "incoming.shift": 2, + "serverSocketCloseListener": 3, + "socket.setTimeout": 1, + "minute": 1, + "timeout": 2, + "socket.once": 1, + "parsers.alloc": 1, + "parser.reinitialize": 1, + "this.maxHeadersCount": 2, + "<<": 4, + "socket.addListener": 2, + "self.listeners": 2, + "req.socket": 1, + "self.httpAllowHalfOpen": 1, + "socket.writable": 2, + "socket.end": 2, + "outgoing.length": 2, + "._last": 1, + "socket._httpMessage._last": 1, + "incoming.push": 1, + "res.shouldKeepAlive": 1, + "DTRACE_HTTP_SERVER_REQUEST": 1, + "outgoing.push": 1, + "res.assignSocket": 1, + "res.on": 1, + "res.detachSocket": 1, + "res._last": 1, + "m": 76, + "outgoing.shift": 1, + "m.assignSocket": 1, + "req.headers": 2, + "continueExpression.test": 1, + "res._expect_continue": 1, + "res.writeContinue": 1, + "Not": 4, + "a": 1489, + "response.": 1, + "even": 3, + "exports._connectionListener": 1, + "Client": 6, + "this.host": 1, + "this.port": 1, + "maxSockets": 1, + "Client.prototype.request": 1, + "path": 5, + "self.host": 1, + "self.port": 1, + "c.on": 2, + "exports.Client": 1, + "module.deprecate": 2, + "exports.createClient": 1, + "cubes": 4, + "list": 21, + "math": 4, + "num": 23, + "opposite": 6, + "race": 4, + "square": 10, + "__slice": 2, + "Array.prototype.slice": 6, + "root": 5, + "Math.sqrt": 2, + "cube": 2, + "runners": 6, + "winner": 6, + "__slice.call": 2, + "print": 2, + "elvis": 4, + "_i": 10, + "_len": 6, + "_results": 6, + "list.length": 5, + "_results.push": 2, + "math.cube": 2, + ".slice": 6, + "window": 18, + "angular": 1, + "Array.prototype.last": 1, + "this.length": 41, + "app": 3, + "angular.module": 1, + "A": 24, + "w": 110, + "ma": 3, + "c.isReady": 4, + "try": 44, + "s.documentElement.doScroll": 2, + "catch": 38, + "c.ready": 7, + "Qa": 1, + "b.src": 4, + "c.ajax": 1, + "async": 5, + "dataType": 6, + "c.globalEval": 1, + "b.text": 3, + "b.textContent": 2, + "b.innerHTML": 3, + "b.parentNode": 4, + "b.parentNode.removeChild": 2, + "X": 6, + "f": 666, + "a.length": 23, + "o": 322, + "c.isFunction": 9, + "d.call": 3, + "J": 5, + ".getTime": 3, + "Y": 3, + "Z": 6, + "na": 1, + ".type": 2, + "c.event.handle.apply": 1, + "oa": 1, + "r": 261, + "c.data": 12, + "a.liveFired": 4, + "i.live": 1, + "a.button": 2, + "a.type": 14, + "u": 304, + "i.live.slice": 1, + "u.length": 3, + "i.origType.replace": 1, + "O": 6, + "f.push": 5, + "i.selector": 3, + "u.splice": 1, + "a.target": 5, + ".closest": 4, + "a.currentTarget": 4, + "j.length": 2, + ".selector": 1, + ".elem": 1, + "i.preType": 2, + "a.relatedTarget": 2, + "d.push": 1, + "elem": 101, + "handleObj": 2, + "d.length": 8, + "j.elem": 2, + "a.data": 2, + "j.handleObj.data": 1, + "a.handleObj": 2, + "j.handleObj": 1, + "j.handleObj.origHandler.apply": 1, + "pa": 1, + "b.replace": 3, + "/": 290, + "./g": 2, + ".replace": 38, + "/g": 37, + "qa": 1, + "a.parentNode": 6, + "a.parentNode.nodeType": 2, + "ra": 1, + "b.each": 1, + "this.nodeName": 4, + ".nodeName": 2, + "f.events": 1, + "e.handle": 2, + "e.events": 2, + "c.event.add": 1, + ".data": 3, + "sa": 2, + ".ownerDocument": 5, + "ta.test": 1, + "c.support.checkClone": 2, + "ua.test": 1, + "c.fragments": 2, + "b.createDocumentFragment": 1, + "c.clean": 1, + "fragment": 27, + "cacheable": 2, + "K": 4, + "c.each": 2, + "va.concat.apply": 1, + "va.slice": 1, + "wa": 1, + "a.document": 3, + "a.nodeType": 27, + "a.defaultView": 2, + "a.parentWindow": 2, + "c.fn.init": 1, + "Ra": 2, + "A.jQuery": 3, + "Sa": 2, + "A.": 3, + "A.document": 1, + "T": 4, + "Ta": 1, + "<[\\w\\W]+>": 4, + "|": 206, + "#": 13, + "Ua": 1, + ".": 91, + "Va": 1, + "S/": 4, + "Wa": 2, + "u00A0": 2, + "Xa": 1, + "<(\\w+)\\s*\\/?>": 4, + "<\\/\\1>": 4, + "P": 4, + "navigator.userAgent": 3, + "xa": 3, + "Q": 6, + "L": 10, + "Object.prototype.toString": 7, + "aa": 1, + "ba": 3, + "Array.prototype.push": 4, + "R": 2, + "ya": 2, + "Array.prototype.indexOf": 4, + "c.fn": 2, + "c.prototype": 1, + "init": 7, + "this.context": 17, + "s.body": 2, + "this.selector": 16, + "Ta.exec": 1, + "b.ownerDocument": 6, + "Xa.exec": 1, + "c.isPlainObject": 3, + "s.createElement": 10, + "c.fn.attr.call": 1, + "f.createElement": 1, + "a.cacheable": 1, + "a.fragment.cloneNode": 1, + "a.fragment": 1, + ".childNodes": 2, + "c.merge": 4, + "s.getElementById": 1, + "b.id": 1, + "T.find": 1, + "/.test": 19, + "s.getElementsByTagName": 2, + "b.jquery": 1, + ".find": 5, + "T.ready": 1, + "a.selector": 4, + "a.context": 2, + "c.makeArray": 3, + "selector": 40, + "jquery": 3, + "size": 6, + "toArray": 2, + "R.call": 2, + "get": 24, + "this.toArray": 3, + "this.slice": 5, + "pushStack": 4, + "c.isArray": 5, + "ba.apply": 1, + "f.prevObject": 1, + "f.context": 1, + "f.selector": 2, + "each": 17, + "ready": 31, + "c.bindReady": 1, + "a.call": 17, + "Q.push": 1, + "eq": 2, + "first": 10, + "this.eq": 4, + "last": 6, + "this.pushStack": 12, + "R.apply": 1, + ".join": 14, + "map": 7, + "c.map": 1, + "this.prevObject": 3, + "push": 11, + "sort": 4, + ".sort": 9, + "splice": 5, + "c.fn.init.prototype": 1, + "c.extend": 7, + "c.fn.extend": 4, + "noConflict": 4, + "isReady": 5, + "c.fn.triggerHandler": 1, + ".triggerHandler": 1, + "bindReady": 5, + "s.readyState": 2, + "s.addEventListener": 3, + "A.addEventListener": 1, + "s.attachEvent": 3, + "A.attachEvent": 1, + "A.frameElement": 1, + "isFunction": 12, + "isPlainObject": 4, + "a.setInterval": 2, + "a.constructor": 2, + "aa.call": 3, + "a.constructor.prototype": 2, + "isEmptyObject": 7, + "parseJSON": 4, + "c.trim": 3, + "a.replace": 7, + "@": 1, + "d*": 8, + "eE": 4, + "s*": 15, + "A.JSON": 1, + "A.JSON.parse": 2, + "Function": 3, + "c.error": 2, + "noop": 3, + "globalEval": 2, + "Va.test": 1, + "s.documentElement": 2, + "d.type": 2, + "c.support.scriptEval": 2, + "d.appendChild": 3, + "s.createTextNode": 2, + "d.text": 1, + "b.insertBefore": 3, + "b.firstChild": 5, + "b.removeChild": 3, + "nodeName": 20, + "a.nodeName": 12, + "a.nodeName.toUpperCase": 2, + "b.toUpperCase": 3, + "b.apply": 2, + "b.call": 4, + "trim": 5, + "makeArray": 3, + "ba.call": 1, + "inArray": 5, + "b.indexOf": 2, + "b.length": 12, + "merge": 2, + "grep": 6, + "f.length": 5, + "f.concat.apply": 1, + "guid": 5, + "proxy": 4, + "a.apply": 2, + "b.guid": 2, + "a.guid": 7, + "c.guid": 1, + "uaMatch": 3, + "a.toLowerCase": 4, + "webkit": 6, + "w.": 17, + "/.exec": 4, + "opera": 4, + ".*version": 4, + "msie": 4, + "/compatible/.test": 1, + "mozilla": 4, + ".*": 20, + "rv": 4, + "browser": 11, + "version": 10, + "c.uaMatch": 1, + "P.browser": 2, + "c.browser": 1, + "c.browser.version": 1, + "P.version": 1, + "c.browser.webkit": 1, + "c.browser.safari": 1, + "c.inArray": 2, + "ya.call": 1, + "s.removeEventListener": 1, + "s.detachEvent": 1, + "c.support": 2, + "d.style.display": 5, + "d.innerHTML": 2, + "d.getElementsByTagName": 6, + "e.length": 9, + "leadingWhitespace": 3, + "d.firstChild.nodeType": 1, + "tbody": 7, + "htmlSerialize": 3, + "style": 30, + "/red/.test": 1, + "j.getAttribute": 2, + "hrefNormalized": 3, + "opacity": 13, + "j.style.opacity": 1, + "cssFloat": 4, + "j.style.cssFloat": 1, + "checkOn": 4, + ".value": 1, + "optSelected": 3, + ".appendChild": 1, + ".selected": 1, + "parentNode": 10, + "d.removeChild": 1, + ".parentNode": 7, + "deleteExpando": 3, + "checkClone": 1, + "scriptEval": 1, + "noCloneEvent": 3, + "boxModel": 1, + "b.type": 4, + "b.appendChild": 1, + "a.insertBefore": 2, + "a.firstChild": 6, + "b.test": 1, + "c.support.deleteExpando": 2, + "a.removeChild": 2, + "d.attachEvent": 2, + "d.fireEvent": 1, + "c.support.noCloneEvent": 1, + "d.detachEvent": 1, + "d.cloneNode": 1, + ".fireEvent": 3, + "s.createDocumentFragment": 1, + "a.appendChild": 3, + "d.firstChild": 2, + "a.cloneNode": 3, + ".cloneNode": 4, + ".lastChild.checked": 2, + "k.style.width": 1, + "k.style.paddingLeft": 1, + "s.body.appendChild": 1, + "c.boxModel": 1, + "c.support.boxModel": 1, + "k.offsetWidth": 1, + "s.body.removeChild": 1, + ".style.display": 5, + "n.setAttribute": 1, + "c.support.submitBubbles": 1, + "c.support.changeBubbles": 1, + "c.props": 2, + "readonly": 3, + "maxlength": 2, + "cellspacing": 2, + "rowspan": 2, + "colspan": 2, + "tabindex": 4, + "usemap": 2, + "frameborder": 2, + "G": 11, + "Ya": 2, + "za": 3, + "cache": 45, + "expando": 14, + "noData": 3, + "embed": 3, + "applet": 2, + "c.noData": 2, + "a.nodeName.toLowerCase": 3, + "c.cache": 2, + "removeData": 8, + "c.isEmptyObject": 1, + "c.removeData": 2, + "c.expando": 2, + "a.removeAttribute": 3, + "this.each": 42, + "a.split": 4, + "this.triggerHandler": 6, + "this.trigger": 2, + ".each": 3, + "queue": 7, + "dequeue": 6, + "c.queue": 3, + "d.shift": 2, + "d.unshift": 2, + "f.call": 1, + "c.dequeue": 4, + "delay": 4, + "c.fx": 1, + "c.fx.speeds": 1, + "this.queue": 4, + "clearQueue": 2, + "Aa": 3, + "t": 436, + "ca": 6, + "Za": 2, + "r/g": 2, + "/href": 1, + "src": 7, + "style/": 1, + "ab": 1, + "button": 24, + "/i": 22, + "bb": 2, + "select": 20, + "textarea": 8, + "area": 2, + "Ba": 3, + "/radio": 1, + "checkbox/": 1, + "attr": 13, + "c.attr": 4, + "removeAttr": 5, + "this.nodeType": 4, + "this.removeAttribute": 1, + "addClass": 2, + "r.addClass": 1, + "r.attr": 1, + ".split": 19, + "e.nodeType": 7, + "e.className": 14, + "j.indexOf": 1, + "removeClass": 2, + "n.removeClass": 1, + "n.attr": 1, + "j.replace": 2, + "toggleClass": 2, + "j.toggleClass": 1, + "j.attr": 1, + "i.hasClass": 1, + "this.className": 10, + "hasClass": 2, + "": 1, + "className": 4, + "replace": 8, + "indexOf": 5, + "val": 13, + "c.nodeName": 4, + "b.attributes.value": 1, + ".specified": 1, + "b.value": 4, + "b.selectedIndex": 2, + "b.options": 1, + "": 1, + "i=": 31, + "selected": 5, + "a=": 23, + "test": 21, + "type": 49, + "support": 13, + "getAttribute": 3, + "on": 37, + "o=": 13, + "n=": 10, + "r=": 18, + "nodeType=": 6, + "call": 9, + "checked=": 1, + "this.selected": 1, + ".val": 5, + "this.selectedIndex": 1, + "this.value": 4, + "attrFn": 2, + "css": 7, + "html": 10, + "text": 14, + "width": 32, + "height": 25, + "offset": 21, + "c.attrFn": 1, + "c.isXMLDoc": 1, + "a.test": 2, + "ab.test": 1, + "a.getAttributeNode": 7, + ".nodeValue": 1, + "b.specified": 2, + "bb.test": 2, + "cb.test": 1, + "a.href": 2, + "c.support.style": 1, + "a.style.cssText": 3, + "a.setAttribute": 7, + "c.support.hrefNormalized": 1, + "a.getAttribute": 11, + "c.style": 1, + "db": 1, + "handle": 15, + "click": 11, + "events": 18, + "altKey": 4, + "attrChange": 4, + "attrName": 4, + "bubbles": 4, + "cancelable": 4, + "charCode": 7, + "clientX": 6, + "clientY": 5, + "ctrlKey": 6, + "currentTarget": 4, + "detail": 3, + "eventPhase": 4, + "fromElement": 6, + "handler": 14, + "keyCode": 6, + "layerX": 3, + "layerY": 3, + "metaKey": 5, + "newValue": 3, + "offsetX": 4, + "offsetY": 4, + "originalTarget": 1, + "pageX": 4, + "pageY": 4, + "prevValue": 3, + "relatedNode": 4, + "relatedTarget": 6, + "screenX": 4, + "screenY": 4, + "shiftKey": 4, + "srcElement": 5, + "toElement": 5, + "view": 4, + "wheelDelta": 3, + "which": 8, + "mouseover": 12, + "mouseout": 12, + "form": 12, + "click.specialSubmit": 2, + "submit": 14, + "image": 5, + "keypress.specialSubmit": 2, + "password": 5, + ".specialSubmit": 2, + "radio": 17, + "checkbox": 14, + "multiple": 7, + "_change_data": 6, + "focusout": 11, + "change": 16, + "file": 5, + ".specialChange": 4, + "focusin": 9, + "bind": 3, + "one": 15, + "unload": 5, + "live": 8, + "lastToggle": 4, + "die": 3, + "hover": 3, + "mouseenter": 9, + "mouseleave": 9, + "focus": 7, + "blur": 8, + "resize": 3, + "scroll": 6, + "dblclick": 3, + "mousedown": 3, + "mouseup": 3, + "mousemove": 3, + "keydown": 4, + "keypress": 4, + "keyup": 3, + "onunload": 1, + "g": 441, + "h": 499, + "q": 34, + "h.nodeType": 4, + "p": 110, + "S": 8, + "H": 8, + "M": 9, + "I": 7, + "f.exec": 2, + "p.push": 2, + "p.length": 10, + "r.exec": 1, + "n.relative": 5, + "ga": 2, + "p.shift": 4, + "n.match.ID.test": 2, + "k.find": 6, + "v.expr": 4, + "k.filter": 5, + "v.set": 5, + "expr": 2, + "p.pop": 4, + "set": 22, + "z": 21, + "h.parentNode": 3, + "D": 9, + "k.error": 2, + "j.call": 2, + ".nodeType": 9, + "E": 11, + "l.push": 2, + "l.push.apply": 1, + "k.uniqueSort": 5, + "B": 5, + "g.sort": 1, + "g.length": 2, + "g.splice": 2, + "k.matches": 1, + "n.order.length": 1, + "n.order": 1, + "n.leftMatch": 1, + ".exec": 2, + "q.splice": 1, + "y.substr": 1, + "y.length": 1, + "Syntax": 3, + "unrecognized": 3, + "expression": 4, + "ID": 8, + "NAME": 2, + "TAG": 2, + "u00c0": 2, + "uFFFF": 2, + "leftMatch": 2, + "attrMap": 2, + "attrHandle": 2, + "g.getAttribute": 1, + "relative": 4, + "W/.test": 1, + "h.toLowerCase": 2, + "": 1, + "previousSibling": 5, + "nth": 5, + "odd": 2, + "not": 26, + "reset": 2, + "contains": 8, + "only": 10, + "id": 38, + "class": 5, + "Array": 3, + "sourceIndex": 1, + "div": 28, + "script": 7, + "": 4, + "name=": 2, + "href=": 2, + "": 2, + "

": 2, + "

": 2, + ".TEST": 2, + "
": 3, + "CLASS": 1, + "HTML": 9, + "find": 7, + "filter": 10, + "nextSibling": 3, + "iframe": 3, + "": 1, + "": 1, + "
": 1, + "
": 1, + "": 4, + "
": 5, + "": 3, + "": 3, + "": 2, + "": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "before": 8, + "after": 7, + "position": 7, + "absolute": 2, + "top": 12, + "left": 14, + "margin": 8, + "border": 7, + "px": 31, + "solid": 2, + "#000": 2, + "padding": 4, + "": 1, + "": 1, + "fixed": 1, + "marginTop": 3, + "marginLeft": 2, + "using": 5, + "borderTopWidth": 1, + "borderLeftWidth": 1, + "Left": 1, + "Top": 1, + "pageXOffset": 2, + "pageYOffset": 1, + "Height": 1, + "Width": 1, + "inner": 2, + "outer": 2, + "scrollTo": 1, + "CSS1Compat": 1, + "client": 3, "document": 26, "window.document": 2, "navigator": 3, "window.navigator": 2, "location": 2, + "window.location": 5, "jQuery": 48, "context": 48, "The": 9, "is": 67, "actually": 2, "just": 2, - "the": 107, - "init": 7, - "constructor": 8, "jQuery.fn.init": 2, "rootjQuery": 8, "Map": 4, "over": 7, - "case": 136, "of": 28, "overwrite": 4, "_jQuery": 4, - "window.jQuery": 7, "window.": 6, - "A": 24, "central": 2, "reference": 5, "simple": 3, "way": 2, "check": 8, - "HTML": 9, "strings": 8, - "or": 38, - "ID": 8, - "Prioritize": 1, - "#id": 3, - "": 1, - "avoid": 5, - "XSS": 1, - "via": 2, - "location.hash": 1, - "#9521": 1, + "both": 2, + "optimize": 3, "quickExpr": 2, - "<[\\w\\W]+>": 4, "Check": 10, "has": 9, "non": 8, @@ -28259,156 +29442,101 @@ "character": 3, "it": 112, "rnotwhite": 2, - "S/": 4, "Used": 3, "trimming": 2, "trimLeft": 4, "trimRight": 4, + "digits": 3, + "rdigit": 1, + "d/": 3, "Match": 3, "standalone": 2, "tag": 2, "rsingleTag": 2, - "<(\\w+)\\s*\\/?>": 4, - "<\\/\\1>": 4, + "JSON": 5, + "RegExp": 12, "rvalidchars": 2, "rvalidescape": 2, - "d*": 8, - "eE": 4, "rvalidbraces": 2, "Useragent": 2, "rwebkit": 2, - "webkit": 6, "ropera": 2, - "opera": 4, - ".*version": 4, "rmsie": 2, - "msie": 4, "rmozilla": 2, - "mozilla": 4, - "rv": 4, - "Matches": 1, - "dashed": 1, - "camelizing": 1, - "rdashAlpha": 1, - "z": 21, - "/ig": 3, - "rmsPrefix": 1, - "ms": 2, - "by": 12, - "jQuery.camelCase": 6, - "as": 11, - "fcamelCase": 1, - "letter": 3, - ".toUpperCase": 3, "Keep": 2, "UserAgent": 2, "use": 10, "with": 18, "jQuery.browser": 4, "userAgent": 3, - "navigator.userAgent": 3, "For": 5, "matching": 3, "engine": 2, "and": 42, - "version": 10, - "browser": 11, "browserMatch": 3, "deferred": 25, "used": 13, - "on": 37, "DOM": 21, - "ready": 31, "readyList": 6, "event": 31, "DOMContentLoaded": 14, "Save": 2, "some": 2, "core": 2, + "methods": 8, "toString": 4, - "Object.prototype.toString": 7, "hasOwn": 2, - "Object.prototype.hasOwnProperty": 6, - "push": 11, - "Array.prototype.push": 4, - "slice": 10, - "Array.prototype.slice": 6, - "trim": 5, "String.prototype.trim": 3, - "indexOf": 5, - "Array.prototype.indexOf": 4, "Class": 2, "pairs": 2, "class2type": 3, "jQuery.fn": 4, "jQuery.prototype": 2, - "elem": 101, - "ret": 62, + "match": 30, "doc": 4, "Handle": 14, "DOMElement": 2, "selector.nodeType": 2, - "this.context": 17, - "body": 22, - "element": 19, - "only": 10, "exists": 9, "once": 4, - "optimize": 3, "finding": 2, - "document.body": 8, - "this.selector": 16, "Are": 2, - "we": 25, "dealing": 2, - "an": 12, "selector.charAt": 4, "selector.length": 4, "Assume": 2, - "that": 33, - "end": 14, "are": 18, - "skip": 5, "regex": 3, "quickExpr.exec": 2, "Verify": 3, "no": 19, "was": 6, "specified": 4, + "#id": 3, "HANDLE": 2, - "html": 10, "array": 7, - "instanceof": 19, "context.ownerDocument": 2, "If": 21, "single": 2, "passed": 5, "clean": 3, - "not": 26, "like": 5, "method.": 3, - "sort": 4, - ".sort": 9, - "splice": 5, - ".splice": 5, "jQuery.fn.init.prototype": 2, "jQuery.extend": 11, "jQuery.fn.extend": 4, - "src": 7, "copy": 16, "copyIsArray": 2, "clone": 5, - "target": 44, - "length": 48, - "arguments.length": 18, "deep": 12, "situation": 2, + "boolean": 8, "when": 20, "something": 3, "possible": 3, "jQuery.isFunction": 6, + "extend": 13, "itself": 4, - "one": 15, "argument": 2, "Only": 5, "deal": 2, @@ -28420,24 +29548,20 @@ "never": 2, "ending": 2, "loop": 7, - "continue": 18, "Recurse": 2, "bring": 2, "Return": 2, "modified": 3, - "noConflict": 4, "Is": 2, "be": 12, "Set": 4, "occurs.": 2, - "isReady": 5, "counter": 2, "track": 2, "how": 2, "many": 3, "items": 2, "wait": 12, - "before": 8, "fires.": 2, "See": 9, "#6781": 2, @@ -28463,7 +29587,6 @@ "overzealous": 4, "ticket": 4, "#5443": 4, - "setTimeout": 19, "Remember": 2, "normal": 2, "Ready": 2, @@ -28474,20 +29597,18 @@ "functions": 6, "bound": 8, "execute": 4, - "readyList.fireWith": 1, + "readyList.resolveWith": 1, "Trigger": 2, "any": 12, "jQuery.fn.trigger": 2, ".trigger": 3, - ".off": 1, - "bindReady": 5, - "jQuery.Callbacks": 2, + ".unbind": 4, + "jQuery._Deferred": 3, "Catch": 2, "cases": 4, "where": 2, ".ready": 2, "called": 2, - "after": 7, "already": 6, "occurred.": 2, "document.readyState": 4, @@ -28495,12 +29616,10 @@ "allow": 6, "scripts": 2, "opportunity": 2, - "delay": 4, "Mozilla": 2, "Opera": 2, "nightlies": 3, "currently": 4, - "support": 13, "document.addEventListener": 6, "Use": 7, "handy": 2, @@ -28510,6 +29629,7 @@ "always": 6, "work": 6, "window.addEventListener": 2, + "model": 14, "document.attachEvent": 6, "ensure": 2, "firing": 16, @@ -28518,16 +29638,13 @@ "late": 2, "but": 4, "safe": 3, - "also": 5, "iframes": 2, "window.attachEvent": 2, "frame": 23, "continually": 2, "see": 6, "toplevel": 7, - "try": 44, "window.frameElement": 2, - "catch": 38, "document.documentElement.doScroll": 4, "doScrollCheck": 6, "test/unit/core.js": 2, @@ -28535,16 +29652,14 @@ "concerning": 2, "isFunction.": 2, "Since": 3, - "alert": 11, "aren": 5, "pass": 7, "through": 3, + "as": 11, "well": 2, - "obj": 40, "jQuery.type": 4, "obj.nodeType": 2, "jQuery.isWindow": 2, - "Not": 4, "own": 4, "property": 15, "must": 4, @@ -28552,95 +29667,20 @@ "obj.constructor": 2, "hasOwn.call": 6, "obj.constructor.prototype": 2, - "IE8": 2, - "Will": 2, - "exceptions": 2, - "certain": 2, - "host": 29, - "objects": 7, - "#9897": 1, "Own": 2, "properties": 7, "enumerated": 2, "firstly": 2, - "so": 8, "speed": 4, "up": 4, - "last": 6, "then": 8, "own.": 2, - "isEmptyObject": 7, "msg": 4, - "parseJSON": 4, - "data": 145, "leading/trailing": 2, "removed": 3, "can": 10, - "access": 2, - "elems": 9, - "fn": 14, - "value": 98, - "chainable": 4, - "emptyGet": 3, - "exec": 8, - "bulk": 3, - "elems.length": 1, - "Sets": 3, - "jQuery.access": 2, - "Optionally": 1, - "get": 24, - "executed": 1, - "Bulk": 1, - "operations": 1, - "iterate": 1, - "executing": 1, - "exec.call": 1, - "Otherwise": 2, - "they": 2, - "run": 1, - "against": 1, - "entire": 1, - "set": 22, - "fn.call": 2, - "value.call": 1, - "Gets": 2, - "now": 5, - "Date": 4, - ".getTime": 3, - "frowned": 1, - "upon.": 1, - "More": 1, - "http": 6, - "//docs.jquery.com/Utilities/jQuery.browser": 1, - "uaMatch": 3, - "ua": 6, - "ua.toLowerCase": 1, - "rwebkit.exec": 1, - "ropera.exec": 1, - "rmsie.exec": 1, - "ua.indexOf": 1, - "rmozilla.exec": 1, - "sub": 4, - "jQuerySub": 7, - "jQuerySub.fn.init": 2, - "jQuerySub.superclass": 1, - "jQuerySub.fn": 2, - "jQuerySub.prototype": 1, - "jQuerySub.fn.constructor": 1, - "jQuerySub.sub": 1, - "this.sub": 2, - "jQuery.fn.init.call": 1, - "rootjQuerySub": 2, - "jQuerySub.fn.init.prototype": 1, - "jQuery.each": 2, - ".split": 19, - "name.toLowerCase": 6, - "jQuery.uaMatch": 1, - "browserMatch.browser": 2, - "jQuery.browser.version": 1, - "browserMatch.version": 1, - "jQuery.browser.webkit": 1, - "jQuery.browser.safari": 1, + "breaking": 1, + "spaces": 3, "rnotwhite.test": 2, "xA0": 7, "document.removeEventListener": 2, @@ -28648,152 +29688,1934 @@ "trick": 2, "Diego": 2, "Perini": 2, + "http": 6, "//javascript.nwbox.com/IEContentLoaded/": 2, "waiting": 2, + "Promise": 1, + "promiseMethods": 3, + "Static": 1, + "sliceDeferred": 1, + "Create": 1, + "callbacks": 10, + "_Deferred": 4, + "stored": 4, + "args": 31, + "avoid": 5, + "doing": 3, + "flag": 1, + "know": 3, + "cancelled": 5, + "done": 10, + "f1": 1, + "f2": 1, + "...": 1, + "_fired": 5, + "args.length": 3, + "deferred.done.apply": 2, + "callbacks.push": 1, + "deferred.resolveWith": 5, + "resolve": 7, + "given": 3, + "resolveWith": 4, + "make": 2, + "available": 1, + "#8421": 1, + "callbacks.shift": 1, + "finally": 3, + "Has": 1, + "resolved": 1, + "isResolved": 3, + "Cancel": 1, + "cancel": 6, + "Full": 1, + "fledged": 1, + "two": 1, + "Deferred": 5, + "func": 3, + "failDeferred": 1, + "promise": 14, + "Add": 4, + "errorDeferred": 1, + "doneCallbacks": 2, + "failCallbacks": 2, + "deferred.done": 2, + ".fail": 2, + ".fail.apply": 1, + "fail": 10, + "failDeferred.done": 1, + "rejectWith": 2, + "failDeferred.resolveWith": 1, + "reject": 4, + "failDeferred.resolve": 1, + "isRejected": 2, + "failDeferred.isResolved": 1, + "pipe": 2, + "fnDone": 2, + "fnFail": 2, + "jQuery.Deferred": 1, + "newDefer": 3, + "jQuery.each": 2, + "fn": 14, + "action": 3, + "returned": 4, + "fn.apply": 1, + "returned.promise": 2, + ".then": 3, + "newDefer.resolve": 1, + "newDefer.reject": 1, + ".promise": 5, + "Get": 4, + "provided": 1, + "aspect": 1, + "added": 1, + "promiseMethods.length": 1, + "failDeferred.cancel": 1, + "deferred.cancel": 2, + "Unexpose": 1, + "Call": 1, + "func.call": 1, + "helper": 1, + "firstParam": 6, + "count": 4, + "<=>": 1, + "1": 97, + "resolveFunc": 2, + "sliceDeferred.call": 2, + "Strange": 1, + "bug": 3, + "FF4": 1, + "Values": 1, + "changed": 3, + "onto": 2, + "sometimes": 1, + "outside": 2, + ".when": 1, + "Cloning": 2, + "into": 2, + "fresh": 1, + "solves": 1, + "issue": 1, + "deferred.reject": 1, + "deferred.promise": 1, + "jQuery.support": 1, + "document.createElement": 26, + "documentElement": 2, + "document.documentElement": 2, + "opt": 2, + "marginDiv": 5, + "bodyStyle": 1, + "tds": 6, + "isSupported": 7, + "Preliminary": 1, + "tests": 48, + "div.setAttribute": 1, + "div.innerHTML": 7, + "div.getElementsByTagName": 6, + "Can": 2, + "automatically": 2, + "inserted": 1, + "insert": 1, + "them": 3, + "empty": 3, + "tables": 1, + "link": 2, + "elements": 9, + "serialized": 3, + "correctly": 1, + "innerHTML": 1, + "This": 3, + "requires": 1, + "wrapper": 1, + "information": 5, + "from": 7, + "uses": 3, + ".cssText": 2, + "instead": 6, + "/top/.test": 2, + "URLs": 1, + "optgroup": 5, + "opt.selected": 1, + "Test": 3, + "setAttribute": 1, + "camelCase": 3, + "class.": 1, + "works": 1, + "attrFixes": 1, + "get/setAttribute": 1, + "ie6/7": 1, + "getSetAttribute": 3, + "div.className": 1, + "Will": 2, + "defined": 3, + "later": 1, + "submitBubbles": 3, + "changeBubbles": 3, + "focusinBubbles": 2, + "inlineBlockNeedsLayout": 3, + "shrinkWrapBlocks": 2, + "reliableMarginRight": 2, + "checked": 4, + "status": 3, + "properly": 2, + "cloned": 1, + "input.checked": 1, + "support.noCloneChecked": 1, + "input.cloneNode": 1, + ".checked": 2, + "inside": 3, + "disabled": 11, + "selects": 1, + "Fails": 2, + "Internet": 1, + "Explorer": 1, + "div.test": 1, + "support.deleteExpando": 1, + "div.addEventListener": 1, + "div.attachEvent": 2, + "div.fireEvent": 1, + "node": 23, + "being": 2, + "appended": 2, + "input.value": 5, + "input.setAttribute": 5, + "support.radioValue": 2, + "div.appendChild": 4, + "document.createDocumentFragment": 3, + "fragment.appendChild": 2, + "div.firstChild": 3, + "WebKit": 9, + "doesn": 2, + "inline": 3, + "display": 7, + "none": 4, + "GC": 2, + "references": 1, + "across": 1, + "JS": 7, + "boundary": 1, + "isNode": 11, + "elem.nodeType": 8, + "nodes": 14, + "global": 5, + "attached": 1, + "directly": 2, + "occur": 1, + "jQuery.cache": 3, + "defining": 1, + "objects": 7, + "its": 2, + "allows": 1, + "code": 2, + "shortcut": 1, + "same": 1, + "jQuery.expando": 12, + "Avoid": 1, + "more": 6, + "than": 3, + "trying": 1, + "pvt": 8, + "internalKey": 12, + "getByName": 3, + "unique": 2, + "since": 1, + "their": 3, + "ends": 1, + "jQuery.uuid": 1, + "TODO": 2, + "hack": 2, + "ONLY.": 2, + "Avoids": 2, + "exposing": 2, + "metadata": 2, + "plain": 2, + ".toJSON": 4, + "jQuery.noop": 2, + "An": 1, + "jQuery.data": 15, + "key/value": 1, + "pair": 1, + "shallow": 1, + "copied": 1, + "existing": 1, + "thisCache": 15, + "Internal": 1, + "separate": 1, + "destroy": 1, + "unless": 2, + "internal": 8, + "had": 1, + "isEmptyDataObject": 3, + "internalCache": 3, + "Browsers": 1, + "deletion": 1, + "refuse": 1, + "expandos": 2, + "other": 3, + "browsers": 2, + "faster": 1, + "iterating": 1, + "persist": 1, + "existed": 1, + "Otherwise": 2, + "eliminate": 2, + "lookups": 2, + "entries": 2, + "longer": 2, + "exist": 2, + "does": 9, + "us": 2, + "nor": 2, + "have": 6, + "removeAttribute": 3, + "Document": 2, + "these": 2, + "jQuery.support.deleteExpando": 3, + "elem.removeAttribute": 6, + "only.": 2, + "_data": 3, + "determining": 3, + "acceptData": 3, + "elem.nodeName": 2, + "jQuery.noData": 2, + "elem.nodeName.toLowerCase": 2, + "elem.getAttribute": 7, + ".attributes": 2, + "attr.length": 2, + ".name": 3, + "name.indexOf": 2, + "jQuery.camelCase": 6, + "name.substring": 2, + "dataAttr": 6, + "parts": 28, + "key.split": 2, + "Try": 4, + "fetch": 4, + "internally": 5, + "jQuery.removeData": 2, + "nothing": 2, + "found": 10, + "HTML5": 3, + "attribute": 5, + "key.replace": 2, + "rmultiDash": 3, + ".toLowerCase": 7, + "jQuery.isNaN": 1, + "rbrace.test": 2, + "jQuery.parseJSON": 2, + "isn": 2, + "option.selected": 2, + "jQuery.support.optDisabled": 2, + "option.disabled": 2, + "option.getAttribute": 2, + "option.parentNode.disabled": 2, + "jQuery.nodeName": 3, + "option.parentNode": 2, + "specific": 2, + "We": 6, + "get/set": 2, + "attributes": 14, + "comment": 3, + "nType": 8, + "jQuery.attrFn": 2, + "Fallback": 2, + "prop": 24, + "supported": 2, + "jQuery.prop": 2, + "hooks": 14, + "notxml": 8, + "jQuery.isXMLDoc": 2, + "Normalize": 1, + "needed": 2, + "jQuery.attrFix": 2, + "jQuery.attrHooks": 2, + "boolHook": 3, + "rboolean.test": 4, + "value.toLowerCase": 2, + "formHook": 3, + "forms": 1, + "certain": 2, + "characters": 6, + "rinvalidChar.test": 1, + "jQuery.removeAttr": 2, + "hooks.set": 2, + "elem.setAttribute": 2, + "hooks.get": 2, + "Non": 3, + "existent": 2, + "normalize": 2, + "propName": 8, + "jQuery.support.getSetAttribute": 1, + "jQuery.attr": 2, + "elem.removeAttributeNode": 1, + "elem.getAttributeNode": 1, + "corresponding": 2, + "jQuery.propFix": 2, + "attrHooks": 3, + "tabIndex": 4, + "readOnly": 2, + "htmlFor": 2, + "maxLength": 2, + "cellSpacing": 2, + "cellPadding": 2, + "rowSpan": 2, + "colSpan": 2, + "useMap": 2, + "frameBorder": 2, + "contentEditable": 2, + "auto": 3, + "&": 13, + "getData": 3, + "setData": 3, + "changeData": 3, + "bubbling": 1, + "live.": 2, + "hasDuplicate": 1, + "baseHasDuplicate": 2, + "rBackslash": 1, + "rNonWord": 1, + "W/": 2, + "Sizzle": 1, + "results": 4, + "seed": 1, + "origContext": 1, + "context.nodeType": 2, + "checkSet": 1, + "extra": 1, + "cur": 6, + "pop": 1, + "prune": 1, + "contextXML": 1, + "Sizzle.isXML": 1, + "soFar": 1, + "Reset": 1, + "cy": 4, + "f.isWindow": 2, + "cv": 2, + "cj": 4, + ".appendTo": 2, + "b.css": 1, + "b.remove": 1, + "ck": 5, + "c.createElement": 12, + "ck.frameBorder": 1, + "ck.width": 1, + "ck.height": 1, + "c.body.appendChild": 1, + "cl": 3, + "ck.createElement": 1, + "ck.contentWindow": 1, + "ck.contentDocument": 1, + ".document": 1, + "cl.write": 1, + "cl.createElement": 1, + "cl.body.appendChild": 1, + "f.css": 24, + "c.body.removeChild": 1, + "cu": 18, + "f.each": 21, + "cp.concat.apply": 1, + "cp.slice": 1, + "ct": 34, + "cq": 3, + "cs": 3, + "f.now": 2, + "ci": 29, + "a.ActiveXObject": 3, + "ch": 58, + "a.XMLHttpRequest": 1, + "a.dataFilter": 2, + "a.dataType": 1, + "a.dataTypes": 2, + "a.converters": 3, + "o.split": 1, + "f.error": 4, + "m.replace": 1, + "a.contents": 1, + "a.responseFields": 1, + "f.shift": 1, + "a.mimeType": 1, + "c.getResponseHeader": 1, + ".test": 1, + "f.unshift": 2, + "b_": 4, + "f.isArray": 8, + "bF.test": 1, + "c.dataTypes": 1, + "h.length": 3, + "bU": 4, + "c.dataTypes.unshift": 1, + "bZ": 3, + "f.isFunction": 21, + "b.toLowerCase": 3, + "bQ": 3, + "h.substr": 1, + "bD": 3, + "bx": 2, + "a.offsetWidth": 6, + "a.offsetHeight": 2, + "bn": 2, + "f.ajax": 3, + "f.globalEval": 2, + "bf": 6, + "bm": 3, + "f.nodeName": 16, + "bl": 3, + "a.getElementsByTagName": 9, + "f.grep": 3, + "a.defaultChecked": 1, + "a.checked": 4, + "bk": 5, + "a.querySelectorAll": 1, + "bj": 3, + "b.nodeType": 6, + "b.clearAttributes": 2, + "b.mergeAttributes": 2, + "b.nodeName.toLowerCase": 1, + "b.outerHTML": 1, + "a.outerHTML": 1, + "b.selected": 1, + "a.defaultSelected": 1, + "b.defaultValue": 1, + "a.defaultValue": 1, + "b.defaultChecked": 1, + "b.checked": 1, + "a.value": 8, + "b.removeAttribute": 3, + "f.expando": 23, + "bi": 27, + "f.hasData": 2, + "f.data": 25, + "d.events": 1, + "f.extend": 23, + "": 1, + "bh": 1, + "table": 6, + "getElementsByTagName": 1, + "0": 220, + "appendChild": 1, + "ownerDocument": 9, + "createElement": 3, + "b=": 25, + "e=": 21, + "nodeType": 1, + "d=": 15, + "W": 3, + "N": 2, + "f._data": 15, + "r.live": 1, + "a.target.disabled": 1, + "a.namespace": 1, + "a.namespace.split": 1, + "r.live.slice": 1, + "s.length": 2, + "g.origType.replace": 1, + "q.push": 1, + "g.selector": 3, + "s.splice": 1, + "m.selector": 1, + "n.test": 2, + "g.namespace": 1, + "m.elem.disabled": 1, + "m.elem": 1, + "g.preType": 3, + "f.contains": 5, + "level": 3, + "m.level": 1, + "": 1, + "e.elem": 2, + "e.handleObj.data": 1, + "e.handleObj": 1, + "e.handleObj.origHandler.apply": 1, + "a.isPropagationStopped": 1, + "e.level": 1, + "a.isImmediatePropagationStopped": 1, + "e.type": 6, + "e.originalEvent": 1, + "e.liveFired": 1, + "f.event.handle.call": 1, + ".preventDefault": 1, + "F": 8, + "f.removeData": 4, + "i.resolve": 1, + "c.replace": 4, + "f.isNaN": 3, + "i.test": 1, + "f.parseJSON": 2, + "a.navigator": 1, + "a.location": 1, + "e.isReady": 1, + "c.documentElement.doScroll": 2, + "e.ready": 6, + "e.fn.init": 1, + "a.jQuery": 2, + "a.": 2, + "d.userAgent": 1, + "C": 4, + "e.fn": 2, + "e.prototype": 1, + "c.body": 4, + "a.charAt": 2, + "i.exec": 1, + "d.ownerDocument": 1, + "n.exec": 1, + "e.isPlainObject": 1, + "e.fn.attr.call": 1, + "k.createElement": 1, + "e.buildFragment": 1, + "j.cacheable": 1, + "e.clone": 1, + "j.fragment": 2, + "e.merge": 3, + "c.getElementById": 1, + "h.id": 1, + "f.find": 2, + "d.jquery": 1, + "e.isFunction": 5, + "f.ready": 1, + "e.makeArray": 1, + "D.call": 4, + "e.isArray": 2, + "C.apply": 1, + "d.prevObject": 1, + "d.context": 2, + "d.selector": 2, + "e.each": 2, + "e.bindReady": 1, + "y.done": 1, + "D.apply": 1, + "e.map": 1, + "e.fn.init.prototype": 1, + "e.extend": 2, + "e.fn.extend": 1, + "": 1, + "f=": 13, + "g=": 15, + "h=": 19, + "jQuery=": 2, + "isReady=": 1, + "y.resolveWith": 1, + "e.fn.trigger": 1, + "e._Deferred": 1, + "c.readyState": 2, + "c.addEventListener": 4, + "a.addEventListener": 4, + "c.attachEvent": 3, + "a.attachEvent": 6, + "a.frameElement": 1, + "isWindow": 2, + "isNaN": 6, + "m.test": 1, + "String": 2, + "A.call": 1, + "e.isWindow": 2, + "B.call": 3, + "e.trim": 1, + "a.JSON": 1, + "a.JSON.parse": 2, + "o.test": 1, + "e.error": 2, + "parseXML": 1, + "a.DOMParser": 1, + "DOMParser": 1, + "d.parseFromString": 1, + "ActiveXObject": 1, + "c.async": 4, + "c.loadXML": 1, + "c.documentElement": 4, + "d.nodeName": 4, + "j.test": 3, + "a.execScript": 1, + "a.eval.call": 1, + "c.apply": 2, + "c.call": 3, + "E.call": 1, + "C.call": 1, + "F.call": 1, + "c.length": 8, + "": 1, + "j=": 14, + "k=": 11, + "h.concat.apply": 1, + "f.concat": 1, + "g.guid": 3, + "e.guid": 3, + "access": 2, + "e.access": 1, + "now": 5, + "s.exec": 1, + "t.exec": 1, + "u.exec": 1, + "a.indexOf": 2, + "v.exec": 1, + "sub": 4, + "a.fn.init": 2, + "a.superclass": 1, + "a.fn": 2, + "a.prototype": 1, + "a.fn.constructor": 1, + "a.sub": 1, + "this.sub": 2, + "e.fn.init.call": 1, + "a.fn.init.prototype": 1, + "e.uaMatch": 1, + "x.browser": 2, + "e.browser": 1, + "e.browser.version": 1, + "x.version": 1, + "e.browser.webkit": 1, + "e.browser.safari": 1, + "c.removeEventListener": 2, + "c.detachEvent": 1, + "": 1, + "c=": 24, + "shift": 1, + "apply": 8, + "h.call": 2, + "g.resolveWith": 3, + "<=1&&a&&f.isFunction(a.promise)?a:f.Deferred();if(d>": 1, + "g.reject": 1, + "g.promise": 1, + "f.support": 2, + "a.innerHTML": 7, + "f.appendChild": 1, + "a.firstChild.nodeType": 2, + "e.getAttribute": 2, + "e.style.opacity": 1, + "e.style.cssFloat": 1, + "h.value": 3, + "g.selected": 1, + "a.className": 1, + "h.checked": 2, + "j.noCloneChecked": 1, + "h.cloneNode": 1, + "f.disabled": 1, + "j.optDisabled": 1, + "g.disabled": 1, + "j.deleteExpando": 1, + "a.fireEvent": 1, + "j.noCloneEvent": 1, + "a.detachEvent": 1, + "h.setAttribute": 2, + "j.radioValue": 1, + "c.createDocumentFragment": 1, + "k.appendChild": 1, + "j.checkClone": 1, + "k.cloneNode": 1, + "a.style.width": 1, + "a.style.paddingLeft": 1, + "visibility": 3, + "background": 56, + "l.style": 1, + "l.appendChild": 1, + "j.appendChecked": 1, + "j.boxModel": 1, + "a.style": 8, + "a.style.display": 3, + "a.style.zoom": 1, + "j.inlineBlockNeedsLayout": 1, + "j.shrinkWrapBlocks": 1, + ".offsetHeight": 4, + "j.reliableHiddenOffsets": 1, + "c.defaultView": 2, + "c.defaultView.getComputedStyle": 3, + "i.style.width": 1, + "i.style.marginRight": 1, + "j.reliableMarginRight": 1, + "parseInt": 12, + "marginRight": 2, + ".marginRight": 2, + "l.innerHTML": 1, + "f.boxModel": 1, + "f.support.boxModel": 4, + "uuid": 2, + "f.fn.jquery": 1, + "Math.random": 2, + "D/g": 2, + "hasData": 2, + "f.cache": 5, + "f.acceptData": 4, + "f.uuid": 1, + "f.noop": 4, + "f.camelCase": 5, + ".events": 1, + "f.support.deleteExpando": 3, + "f.noData": 2, + "f.fn.extend": 9, + "g.indexOf": 2, + "g.substring": 1, + "b.triggerHandler": 2, + "_mark": 2, + "_unmark": 3, + "f.makeArray": 5, + "e.push": 3, + "f.queue": 3, + "c.shift": 2, + "c.unshift": 1, + "f.dequeue": 4, + "f.fx": 2, + "f.fx.speeds": 1, + "d.resolveWith": 1, + "f.Deferred": 2, + "f._Deferred": 2, + "l.done": 1, + "d.promise": 1, + "rea": 1, + "autofocus": 1, + "autoplay": 1, + "controls": 1, + "defer": 1, + "required": 1, + "scoped": 1, + "f.access": 3, + "f.attr": 2, + "f.removeAttr": 3, + "f.prop": 2, + "removeProp": 1, + "f.propFix": 6, + "c.addClass": 1, + "f.trim": 2, + "c.removeClass": 1, + "g.nodeType": 6, + "g.className": 4, + "h.replace": 2, + "d.toggleClass": 1, + "d.attr": 1, + "h.hasClass": 1, + "": 1, + "f.valHooks": 7, + "e.nodeName.toLowerCase": 1, + "c.get": 1, + "e.value": 1, + "e.val": 1, + "f.map": 5, + "this.nodeName.toLowerCase": 1, + "this.type": 3, + "c.set": 1, + "valHooks": 1, + "a.attributes.value": 1, + "a.text": 1, + "a.selectedIndex": 3, + "a.options": 2, + "": 3, + "optDisabled": 1, + "selected=": 1, + "attrFix": 1, + "f.attrFn": 3, + "f.isXMLDoc": 4, + "f.attrFix": 3, + "f.attrHooks": 5, + "t.test": 2, + "d.toLowerCase": 1, + "c.toLowerCase": 4, + "u.test": 1, + "i.set": 1, + "i.get": 1, + "f.support.getSetAttribute": 2, + "a.removeAttributeNode": 1, + "q.test": 1, + "f.support.radioValue": 1, + "c.specified": 1, + "c.value": 1, + "r.test": 1, + "s.test": 1, + "propFix": 1, + "cellpadding": 1, + "contenteditable": 1, + "f.propHooks": 1, + "h.set": 1, + "h.get": 1, + "propHooks": 1, + "f.attrHooks.value": 1, + "v.get": 1, + "f.attrHooks.name": 1, + "f.valHooks.button": 1, + "d.nodeValue": 3, + "f.support.hrefNormalized": 1, + "f.support.style": 1, + "f.attrHooks.style": 1, + "a.style.cssText.toLowerCase": 1, + "f.support.optSelected": 1, + "f.propHooks.selected": 2, + "b.parentNode.selectedIndex": 1, + "f.support.checkOn": 1, + "f.inArray": 4, + "s.": 1, + "f.event": 2, + "d.handler": 1, + "g.handler": 1, + "d.guid": 4, + "f.guid": 3, + "i.events": 2, + "i.handle": 2, + "f.event.triggered": 3, + "f.event.handle.apply": 1, + "k.elem": 2, + "c.split": 2, + "l.indexOf": 1, + "l.split": 1, + "n.shift": 1, + "h.namespace": 2, + "n.slice": 1, + "h.type": 1, + "h.guid": 2, + "f.event.special": 5, + "p.setup": 1, + "p.setup.call": 1, + "p.add": 1, + "p.add.call": 1, + "h.handler.guid": 2, + "o.push": 1, + "f.event.global": 2, + "remove": 9, + "s.events": 1, + "c.type": 9, + "c.handler": 1, + "c.charAt": 1, + "f.event.remove": 5, + "h.indexOf": 3, + "h.split": 2, + "m.shift": 1, + "m.slice": 1, + "q.namespace": 1, + "q.handler": 1, + "p.splice": 1, + "": 1, + "u=": 12, + "elem=": 4, + "customEvent": 1, + "trigger": 4, + "h.slice": 1, + "i.shift": 1, + "i.sort": 1, + "f.event.customEvent": 1, + "f.Event": 2, + "c.exclusive": 2, + "c.namespace": 2, + "i.join": 2, + "c.namespace_re": 1, + "c.preventDefault": 3, + "c.stopPropagation": 1, + "b.events": 4, + "f.event.trigger": 6, + "b.handle.elem": 2, + "c.result": 3, + "c.target": 3, + "do": 15, + "c.currentTarget": 2, + "m.apply": 1, + "k.parentNode": 1, + "k.ownerDocument": 1, + "c.target.ownerDocument": 1, + "c.isPropagationStopped": 1, + "c.isDefaultPrevented": 2, + "o._default": 1, + "o._default.call": 1, + "e.ownerDocument": 1, + "f.event.fix": 2, + "a.event": 1, + "Array.prototype.slice.call": 1, + "namespace_re": 1, + "namespace": 1, + "handler=": 1, + "data=": 2, + "handleObj=": 1, + "result=": 1, + "preventDefault": 4, + "stopPropagation": 5, + "isImmediatePropagationStopped": 2, + "props": 21, + "split": 4, + "fix": 1, + "Event": 3, + "target=": 2, + "relatedTarget=": 1, + "fromElement=": 1, + "pageX=": 2, + "scrollLeft": 2, + "clientLeft": 2, + "pageY=": 1, + "scrollTop": 2, + "clientTop": 2, + "which=": 3, + "metaKey=": 1, + "2": 66, + "3": 13, + "4": 4, + "1e8": 1, + "special": 3, + "setup": 5, + "teardown": 6, + "origType": 2, + "beforeunload": 1, + "onbeforeunload=": 3, + "removeEvent=": 1, + "removeEventListener": 3, + "detachEvent": 2, + "Event=": 1, + "originalEvent=": 1, + "type=": 5, + "isDefaultPrevented=": 2, + "defaultPrevented": 1, + "returnValue=": 2, + "getPreventDefault": 2, + "timeStamp=": 1, + "prototype=": 2, + "originalEvent": 2, + "isPropagationStopped=": 1, + "cancelBubble=": 1, + "stopImmediatePropagation": 1, + "isImmediatePropagationStopped=": 1, + "isDefaultPrevented": 1, + "isPropagationStopped": 1, + "G=": 1, + "H=": 1, + "submit=": 1, + "specialSubmit": 3, + "closest": 3, + "keyCode=": 1, + "J=": 1, + "selectedIndex": 1, + "a.selected": 1, + "z.test": 3, + "d.readOnly": 1, + "c.liveFired": 1, + "f.event.special.change": 1, + "filters": 1, + "beforedeactivate": 1, + "K.call": 2, + "a.keyCode": 2, + "beforeactivate": 1, + "f.event.add": 2, + "f.event.special.change.filters": 1, + "I.focus": 1, + "I.beforeactivate": 1, + "f.support.focusinBubbles": 1, + "c.originalEvent": 1, + "a.preventDefault": 3, + "f.fn": 9, + "e.apply": 1, + "this.one": 1, + "unbind": 2, + "this.unbind": 2, + "delegate": 1, + "this.live": 1, + "undelegate": 1, + "this.die": 1, + "triggerHandler": 1, + "%": 26, + ".guid": 1, + "this.click": 1, + "this.mouseenter": 1, + ".mouseleave": 1, + "g.charAt": 1, + "n.unbind": 1, + "y.exec": 1, + "a.push": 2, + "n.length": 1, + "": 1, + "this.bind": 2, + "": 2, + "sizcache=": 4, + "sizset": 2, + "sizset=": 2, + "toLowerCase": 3, + "d.nodeType": 5, + "k.isXML": 4, + "a.exec": 2, + "x.push": 1, + "x.length": 8, + "m.exec": 1, + "l.relative": 6, + "x.shift": 4, + "l.match.ID.test": 2, + "q.expr": 4, + "q.set": 4, + "x.pop": 4, + "d.parentNode": 4, + "e.call": 1, + "f.push.apply": 1, + "k.contains": 5, + "a.sort": 1, + "": 1, + "matches=": 1, + "matchesSelector=": 1, + "l.order.length": 1, + "l.order": 1, + "l.leftMatch": 1, + "j.substr": 1, + "": 1, + "__sizzle__": 1, + "sizzle": 1, + "l.match.PSEUDO.test": 1, + "a.document.nodeType": 1, + "a.getElementsByClassName": 3, + "a.lastChild.className": 1, + "l.order.splice": 1, + "l.find.CLASS": 1, + "b.getElementsByClassName": 2, + "c.documentElement.contains": 1, + "a.contains": 2, + "c.documentElement.compareDocumentPosition": 1, + "a.compareDocumentPosition": 1, + "a.ownerDocument": 1, + ".documentElement": 1, + "b.nodeName": 2, + "l.match.PSEUDO.exec": 1, + "l.match.PSEUDO": 1, + "f.expr": 4, + "k.selectors": 1, + "f.expr.filters": 3, + "f.unique": 4, + "f.text": 2, + "k.getText": 1, + "/Until": 1, + "parents": 2, + "prevUntil": 2, + "prevAll": 2, + "U": 1, + "f.expr.match.POS": 1, + "V": 2, + "children": 3, + "contents": 4, + "next": 9, + "prev": 2, + ".filter": 2, + "": 1, + "e.splice": 1, + "this.filter": 2, + "": 1, + "": 1, + ".is": 2, + "c.push": 3, + "g.parentNode": 2, + "U.test": 1, + "": 1, + "f.find.matchesSelector": 2, + "g.ownerDocument": 1, + "this.parent": 2, + ".children": 1, + "a.jquery": 2, + "f.merge": 2, + "this.get": 1, + "andSelf": 1, + "this.add": 1, + "f.dir": 6, + "parentsUntil": 1, + "f.nth": 2, + "nextAll": 1, + "nextUntil": 1, + "siblings": 1, + "f.sibling": 2, + "a.parentNode.firstChild": 1, + "a.contentDocument": 1, + "a.contentWindow.document": 1, + "a.childNodes": 1, + "T.call": 1, + "P.test": 1, + "f.filter": 2, + "R.test": 1, + "Q.test": 1, + "e.reverse": 1, + "g.join": 1, + "f.find.matches": 1, + "dir": 1, + "sibling": 1, + "a.nextSibling": 1, + "<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:]+)[^>": 1, + "/ig": 3, + "tbody/i": 1, + "bc": 1, + "bd": 1, + "/checked": 1, + "s*.checked.": 1, + "java": 1, + "ecma": 1, + "script/i": 1, + "CDATA": 1, + "bg": 3, + "legend": 1, + "thead": 2, + "tr": 23, + "td": 3, + "col": 7, + "_default": 5, + "bg.optgroup": 1, + "bg.option": 1, + "bg.tbody": 1, + "bg.tfoot": 1, + "bg.colgroup": 1, + "bg.caption": 1, + "bg.thead": 1, + "bg.th": 1, + "bg.td": 1, + "f.support.htmlSerialize": 1, + "bg._default": 2, + "c.text": 2, + "this.empty": 3, + ".append": 6, + ".createTextNode": 1, + "wrapAll": 1, + ".wrapAll": 2, + ".eq": 1, + ".clone": 1, + "b.map": 1, + "wrapInner": 1, + ".wrapInner": 1, + "b.contents": 1, + "c.wrapAll": 1, + "b.append": 1, + "wrap": 2, + "unwrap": 1, + ".replaceWith": 1, + "this.childNodes": 1, + ".end": 1, + "append": 1, + "this.domManip": 4, + "this.appendChild": 1, + "prepend": 1, + "this.insertBefore": 1, + "this.firstChild": 1, + "this.parentNode.insertBefore": 2, + "a.push.apply": 2, + "this.nextSibling": 2, + ".toArray": 1, + "f.cleanData": 4, + "d.parentNode.removeChild": 1, + "b.getElementsByTagName": 1, + "this.map": 3, + "f.clone": 2, + ".innerHTML.replace": 1, + "bc.test": 2, + "f.support.leadingWhitespace": 2, + "Z.test": 2, + "_.exec": 2, + ".getElementsByTagName": 2, + ".innerHTML": 3, + "c.html": 3, + "replaceWith": 1, + "c.replaceWith": 1, + ".detach": 1, + "this.parentNode": 1, + ".remove": 2, + ".before": 1, + "detach": 1, + "this.remove": 1, + "domManip": 1, + "f.support.checkClone": 2, + "bd.test": 2, + ".domManip": 1, + "g.html": 1, + "g.domManip": 1, + "j.parentNode": 1, + "f.support.parentNode": 1, + "i.nodeType": 1, + "i.childNodes.length": 1, + "f.buildFragment": 2, + "e.fragment": 1, + "h.childNodes.length": 1, + "h.firstChild": 2, + "": 1, + "k.length": 2, + ".charAt": 1, + "f.fragments": 3, + "i.createDocumentFragment": 1, + "f.clean": 1, + "appendTo": 1, + "prependTo": 1, + "insertBefore": 1, + "insertAfter": 1, + "replaceAll": 1, + "g.childNodes.length": 1, + "this.clone": 1, + ".get": 3, + "d.concat": 1, + "e.selector": 1, + "f.support.noCloneEvent": 1, + "f.support.noCloneChecked": 1, + "b.createElement": 2, + "b.createTextNode": 2, + "k.replace": 2, + "o.innerHTML": 1, + "o.lastChild": 1, + "f.support.tbody": 1, + "ba.test": 1, + "o.firstChild": 2, + "o.firstChild.childNodes": 1, + "o.childNodes": 2, + "q.length": 1, + ".childNodes.length": 1, + ".parentNode.removeChild": 2, + "o.insertBefore": 1, + "Z.exec": 1, + "f.support.appendChecked": 1, + "k.nodeType": 1, + "h.push": 1, + "be.test": 1, + ".type.toLowerCase": 1, + "h.splice.apply": 1, + ".concat": 3, + "cleanData": 1, + "j.nodeName": 1, + "j.nodeName.toLowerCase": 1, + "f.removeEvent": 1, + "b.handle": 2, + "j.removeAttribute": 2, + "bo": 2, + "/alpha": 1, + "bp": 1, + "/opacity": 1, + "bq": 2, + "br": 19, + "ms": 2, + "bs": 2, + "bt": 42, + "bu": 11, + "bv": 2, + "de": 1, + "bw": 2, + "bz": 7, + "bA": 3, + "bB": 5, + "bC": 2, + "f.fn.css": 1, + "f.style": 4, + "cssHooks": 1, + "a.style.opacity": 2, + "cssNumber": 3, + "zIndex": 1, + "fontWeight": 1, + "zoom": 1, + "lineHeight": 1, + "widows": 1, + "orphans": 1, + "cssProps": 1, + "f.support.cssFloat": 1, + "f.cssHooks": 3, + "f.cssProps": 2, + "k.get": 1, + "bu.test": 1, + "d.replace": 1, + "f.cssNumber": 1, + "k.set": 1, + "g.get": 1, + "swap": 1, + "f.curCSS": 1, + "f.swap": 2, + "<0||e==null){e=a.style[b];return>": 1, + "0px": 1, + "f.support.opacity": 1, + "f.cssHooks.opacity": 1, + "bp.test": 1, + "a.currentStyle": 4, + "a.currentStyle.filter": 1, + "a.style.filter": 1, + "RegExp.": 1, + "c.zoom": 1, + "b*100": 1, + "d.filter": 1, + "c.filter": 2, + "bo.test": 1, + "g.replace": 1, + "f.support.reliableMarginRight": 1, + "f.cssHooks.marginRight": 1, + "a.style.marginRight": 1, + "a.ownerDocument.defaultView": 1, + "e.getComputedStyle": 1, + "g.getPropertyValue": 1, + "a.ownerDocument.documentElement": 1, + "c.documentElement.currentStyle": 1, + "a.runtimeStyle": 2, + "bs.test": 1, + "bt.test": 1, + "f.left": 3, + "a.runtimeStyle.left": 2, + "a.currentStyle.left": 1, + "f.pixelLeft": 1, + "f.expr.filters.hidden": 2, + "f.support.reliableHiddenOffsets": 1, + "f.expr.filters.visible": 1, + "bE": 2, + "bF": 1, + "bG": 3, + "n/g": 1, + "bH": 2, + "/#.*": 1, + "bI": 1, + "/mg": 1, + "bJ": 1, + "color": 4, + "date": 1, + "datetime": 1, + "email": 2, + "month": 1, + "range": 2, + "search": 5, + "tel": 2, + "time": 1, + "week": 1, + "bK": 1, + "about": 1, + "storage": 1, + "extension": 1, + "widget": 1, + "bL": 1, + "GET": 1, + "bM": 2, + "bN": 2, + "bO": 2, + "<\\/script>": 2, + "/gi": 2, + "bP": 1, + "bR": 2, + "*/": 2, + "bS": 1, + "bT": 2, + "f.fn.load": 1, + "bV": 3, + "bW": 5, + "bX": 8, + "e.href": 1, + "bY": 1, + "bW.href": 2, + "bS.exec": 1, + "bW.toLowerCase": 1, + "bT.apply": 1, + "a.slice": 2, + "f.param": 2, + "f.ajaxSettings.traditional": 2, + "complete": 6, + "a.responseText": 1, + "a.isResolved": 1, + "a.done": 1, + "i.html": 1, + "i.each": 1, + "serialize": 1, + "this.serializeArray": 1, + "serializeArray": 1, + "this.elements": 2, + "this.disabled": 1, + "this.checked": 1, + "bP.test": 1, + "bJ.test": 1, + ".map": 1, + "b.name": 2, + "success": 2, + "getScript": 1, + "f.get": 2, + "getJSON": 1, + "ajaxSetup": 1, + "f.ajaxSettings": 4, + "ajaxSettings": 1, + "isLocal": 1, + "bK.test": 1, + "contentType": 4, + "processData": 3, + "accepts": 5, + "xml": 3, + "json": 2, + "/xml/": 1, + "/html/": 1, + "/json/": 1, + "responseFields": 1, + "converters": 2, + "a.String": 1, + "f.parseXML": 1, + "ajaxPrefilter": 1, + "ajaxTransport": 1, + "ajax": 2, + "clearTimeout": 2, + "v.readyState": 1, + "d.ifModified": 1, + "v.getResponseHeader": 2, + "f.lastModified": 1, + "f.etag": 1, + "v.status": 1, + "v.statusText": 1, + "h.resolveWith": 1, + "h.rejectWith": 1, + "v.statusCode": 2, + "g.trigger": 2, + "i.resolveWith": 1, + "f.active": 1, + "f.ajaxSetup": 3, + "d.statusCode": 1, + "readyState": 1, + "setRequestHeader": 6, + "getAllResponseHeaders": 1, + "getResponseHeader": 1, + "bI.exec": 1, + "overrideMimeType": 1, + "d.mimeType": 1, + "abort": 4, + "p.abort": 1, + "h.promise": 1, + "v.success": 1, + "v.done": 1, + "v.error": 1, + "v.fail": 1, + "v.complete": 1, + "i.done": 1, + "<2)for(b>": 1, + "url=": 1, + "dataTypes=": 1, + "crossDomain=": 2, + "exec": 8, + "80": 2, + "443": 2, + "param": 3, + "traditional": 1, + "s=": 12, + "t=": 19, + "toUpperCase": 1, + "hasContent=": 1, + "active": 2, + "ajaxStart": 1, + "hasContent": 2, + "cache=": 1, + "x=": 1, + "y=": 5, + "1_=": 1, + "_=": 1, + "Content": 1, + "Type": 1, + "ifModified": 1, + "lastModified": 3, + "Modified": 1, + "etag": 3, + "None": 1, + "Accept": 1, + "dataTypes": 4, + "q=": 1, + "01": 1, + "beforeSend": 2, + "p=": 5, + "No": 1, + "Transport": 1, + "readyState=": 1, + "ajaxSend": 1, + "v.abort": 1, + "d.timeout": 1, + "p.send": 1, + "encodeURIComponent": 2, + "f.isPlainObject": 1, + "d.join": 1, + "cc": 2, + "cd": 3, + "jsonp": 1, + "jsonpCallback": 1, + "f.ajaxPrefilter": 2, + "b.contentType": 1, + "b.data": 5, + "b.dataTypes": 2, + "b.jsonp": 3, + "cd.test": 2, + "b.url": 4, + "b.jsonpCallback": 4, + "d.always": 1, + "b.converters": 1, + "/javascript": 1, + "ecmascript/": 1, + "a.cache": 2, + "a.crossDomain": 2, + "a.global": 1, + "f.ajaxTransport": 2, + "c.head": 1, + "c.getElementsByTagName": 1, + "send": 2, + "d.async": 1, + "a.scriptCharset": 2, + "d.charset": 1, + "d.src": 1, + "a.url": 1, + "d.onload": 3, + "d.onreadystatechange": 2, + "d.readyState": 2, + "/loaded": 1, + "complete/.test": 1, + "e.removeChild": 1, + "e.insertBefore": 1, + "e.firstChild": 1, + "ce": 6, + "cg": 7, + "cf": 7, + "f.ajaxSettings.xhr": 2, + "this.isLocal": 1, + "cors": 1, + "f.support.ajax": 1, + "c.crossDomain": 3, + "f.support.cors": 1, + "c.xhr": 1, + "c.username": 2, + "h.open": 2, + "c.url": 2, + "c.password": 1, + "c.xhrFields": 3, + "c.mimeType": 2, + "h.overrideMimeType": 2, + "h.setRequestHeader": 1, + "h.send": 1, + "c.hasContent": 1, + "h.readyState": 3, + "h.onreadystatechange": 2, + "h.abort": 1, + "h.status": 1, + "h.getAllResponseHeaders": 1, + "h.responseXML": 1, + "n.documentElement": 1, + "m.xml": 1, + "m.text": 2, + "h.responseText": 1, + "h.statusText": 1, + "c.isLocal": 1, + ".unload": 1, + "cm": 2, + "cn": 1, + "co": 5, + "cp": 1, + "cr": 20, + "a.webkitRequestAnimationFrame": 1, + "a.mozRequestAnimationFrame": 1, + "a.oRequestAnimationFrame": 1, + "this.animate": 2, + "d.style": 3, + ".style": 1, + "": 1, + "_toggle": 2, + "animate": 4, + "fadeTo": 1, + "queue=": 2, + "animatedProperties=": 1, + "animatedProperties": 2, + "specialEasing": 2, + "easing": 3, + "swing": 2, + "overflow=": 2, + "overflow": 2, + "overflowX": 1, + "overflowY": 1, + "float": 3, + "display=": 3, + "zoom=": 1, + "fx": 10, + "l=": 10, + "m=": 2, + "custom": 5, + "stop": 7, + "timers": 3, + "slideDown": 1, + "slideUp": 1, + "slideToggle": 1, + "fadeIn": 1, + "fadeOut": 1, + "fadeToggle": 1, + "duration": 4, + "duration=": 2, + "off": 1, + "speeds": 4, + "old=": 1, + "complete=": 1, + "old": 2, + "linear": 1, + "Math": 51, + "cos": 1, + "PI": 54, + "5": 23, + "options=": 1, + "prop=": 3, + "orig=": 1, + "orig": 3, + "step": 7, + "startTime=": 1, + "start=": 1, + "end=": 1, + "unit=": 1, + "unit": 1, + "now=": 1, + "pos=": 1, + "state=": 1, + "co=": 2, + "tick": 3, + "interval": 3, + "show=": 1, + "hide=": 1, + "e.duration": 3, + "this.startTime": 2, + "this.now": 3, + "this.end": 2, + "this.pos": 4, + "this.state": 3, + "this.update": 2, + "e.animatedProperties": 5, + "this.prop": 2, + "e.overflow": 2, + "f.support.shrinkWrapBlocks": 1, + "e.hide": 2, + ".hide": 2, + "e.show": 1, + "e.orig": 1, + "e.complete.call": 1, + "Infinity": 1, + "h/e.duration": 1, + "f.easing": 1, + "this.start": 2, + "*this.pos": 1, + "f.timers": 2, + "a.splice": 1, + "f.fx.stop": 1, + "clearInterval": 6, + "slow": 1, + "fast": 1, + "a.elem": 2, + "a.now": 4, + "a.elem.style": 3, + "a.prop": 5, + "Math.max": 10, + "a.unit": 1, + "f.expr.filters.animated": 1, + "b.elem": 1, + "cw": 1, + "able": 1, + "cx": 2, + "f.fn.offset": 2, + "f.offset.setOffset": 2, + "b.ownerDocument.body": 2, + "f.offset.bodyOffset": 2, + "b.getBoundingClientRect": 1, + "e.documentElement": 4, + "c.top": 4, + "c.left": 4, + "e.body": 3, + "g.clientTop": 1, + "h.clientTop": 1, + "g.clientLeft": 1, + "h.clientLeft": 1, + "i.pageYOffset": 1, + "g.scrollTop": 1, + "h.scrollTop": 2, + "i.pageXOffset": 1, + "g.scrollLeft": 1, + "h.scrollLeft": 2, + "f.offset.initialize": 3, + "b.offsetParent": 2, + "g.documentElement": 1, + "g.body": 1, + "g.defaultView": 1, + "j.getComputedStyle": 2, + "b.currentStyle": 2, + "b.offsetTop": 2, + "b.offsetLeft": 2, + "f.offset.supportsFixedPosition": 2, + "k.position": 4, + "b.scrollTop": 1, + "b.scrollLeft": 1, + "f.offset.doesNotAddBorder": 1, + "f.offset.doesAddBorderForTableAndCells": 1, + "cw.test": 1, + "c.borderTopWidth": 2, + "c.borderLeftWidth": 2, + "f.offset.subtractsBorderForOverflowNotVisible": 1, + "c.overflow": 1, + "i.offsetTop": 1, + "i.offsetLeft": 1, + "i.scrollTop": 1, + "i.scrollLeft": 1, + "f.offset": 1, + "initialize": 3, + "b.style": 1, + "d.nextSibling.firstChild.firstChild": 1, + "this.doesNotAddBorder": 1, + "e.offsetTop": 4, + "this.doesAddBorderForTableAndCells": 1, + "h.offsetTop": 1, + "e.style.position": 2, + "e.style.top": 2, + "this.supportsFixedPosition": 1, + "d.style.overflow": 1, + "d.style.position": 1, + "this.subtractsBorderForOverflowNotVisible": 1, + "this.doesNotIncludeMarginInBodyOffset": 1, + "a.offsetTop": 2, + "bodyOffset": 1, + "a.offsetLeft": 1, + "f.offset.doesNotIncludeMarginInBodyOffset": 1, + "setOffset": 1, + "a.style.position": 1, + "e.offset": 1, + "e.position": 1, + "l.top": 1, + "l.left": 1, + "b.top": 2, + "k.top": 1, + "g.top": 1, + "b.left": 2, + "k.left": 1, + "g.left": 1, + "b.using.call": 1, + "e.css": 1, + "this.offsetParent": 2, + "this.offset": 2, + "cx.test": 2, + "b.offset": 1, + "d.top": 2, + "d.left": 2, + "offsetParent": 1, + "a.offsetParent": 1, + "g.document.documentElement": 1, + "g.document.body": 1, + "g.scrollTo": 1, + ".scrollLeft": 1, + ".scrollTop": 1, + "e.document.documentElement": 1, + "e.document.compatMode": 1, + "e.document.body": 1, + "this.css": 1, + "Prioritize": 1, + "": 1, + "XSS": 1, + "location.hash": 1, + "#9521": 1, + "Matches": 1, + "dashed": 1, + "camelizing": 1, + "rdashAlpha": 1, + "rmsPrefix": 1, + "fcamelCase": 1, + "letter": 3, + "readyList.fireWith": 1, + ".off": 1, + "jQuery.Callbacks": 2, + "IE8": 2, + "exceptions": 2, + "#9897": 1, + "elems": 9, + "chainable": 4, + "emptyGet": 3, + "bulk": 3, + "elems.length": 1, + "Sets": 3, + "jQuery.access": 2, + "Optionally": 1, + "executed": 1, + "Bulk": 1, + "operations": 1, + "iterate": 1, + "executing": 1, + "exec.call": 1, + "they": 2, + "run": 1, + "against": 1, + "entire": 1, + "fn.call": 2, + "value.call": 1, + "Gets": 2, + "frowned": 1, + "upon.": 1, + "More": 1, + "//docs.jquery.com/Utilities/jQuery.browser": 1, + "ua": 6, + "ua.toLowerCase": 1, + "rwebkit.exec": 1, + "ropera.exec": 1, + "rmsie.exec": 1, + "ua.indexOf": 1, + "rmozilla.exec": 1, + "jQuerySub": 7, + "jQuerySub.fn.init": 2, + "jQuerySub.superclass": 1, + "jQuerySub.fn": 2, + "jQuerySub.prototype": 1, + "jQuerySub.fn.constructor": 1, + "jQuerySub.sub": 1, + "jQuery.fn.init.call": 1, + "rootjQuerySub": 2, + "jQuerySub.fn.init.prototype": 1, + "jQuery.uaMatch": 1, + "browserMatch.browser": 2, + "jQuery.browser.version": 1, + "browserMatch.version": 1, + "jQuery.browser.webkit": 1, + "jQuery.browser.safari": 1, "flagsCache": 3, "createFlags": 2, "flags": 13, "flags.split": 1, "flags.length": 1, "Convert": 1, - "from": 7, - "String": 2, "formatted": 2, - "cache": 45, - "first": 10, "Actual": 2, - "list": 21, "Stack": 1, "fire": 4, "calls": 1, "repeatable": 1, "lists": 2, "stack": 2, - "Last": 2, "forgettable": 1, "memory": 8, "Flag": 2, - "know": 3, "First": 3, - "internally": 5, "fireWith": 1, "firingStart": 3, "End": 1, "firingLength": 4, "Index": 1, - "needed": 2, "firingIndex": 5, - "Add": 4, "several": 1, - "callbacks": 10, "actual": 1, - "args.length": 3, "Inspect": 1, "recursively": 1, - "unique": 2, "mode": 1, "flags.unique": 1, "self.has": 1, "list.push": 1, "Fire": 1, "flags.memory": 1, - "list.length": 5, "flags.stopOnFalse": 1, "Mark": 1, "halted": 1, - "break": 111, "flags.once": 1, "stack.length": 1, "stack.shift": 1, "self.fireWith": 1, "self.disable": 1, "Callbacks": 1, - "self": 17, + "collection": 3, "Do": 2, + "current": 7, "batch": 2, "With": 1, "/a": 1, - "top": 12, - "px": 31, - "float": 3, - "left": 14, - "opacity": 13, ".55": 1, - "checkbox": 14, "basic": 1, - "test": 21, "all.length": 1, "supports": 2, - "tests": 48, - "select": 20, - "opt": 2, "select.appendChild": 1, - "input": 26, - "div.getElementsByTagName": 6, "strips": 1, "leading": 1, - ".innerHTML": 3, - "leadingWhitespace": 3, "div.firstChild.nodeType": 1, - "tbody": 7, - "elements": 9, "manipulated": 1, "normalizes": 1, - "default": 21, - "hrefNormalized": 3, - "a.getAttribute": 11, - "uses": 3, - "filter": 10, - "instead": 6, "around": 1, - "WebKit": 9, "issue.": 1, "#5145": 1, - "/.test": 19, - "a.style.opacity": 2, - "style": 30, "existence": 1, "styleFloat": 1, - "cssFloat": 4, "a.style.cssFloat": 1, "defaults": 3, - "checkOn": 4, - "input.value": 5, - "selected": 5, - "option": 12, "working": 1, "property.": 1, "too": 1, "marked": 1, - "disabled": 11, "marks": 1, - "them": 3, "select.disabled": 1, "support.optDisabled": 1, "opt.disabled": 1, - "Test": 3, "handlers": 1, - "does": 9, "support.noCloneEvent": 1, "div.cloneNode": 1, - ".fireEvent": 3, - "radio": 17, "maintains": 1, - "its": 2, - "being": 2, - "appended": 2, - "input.setAttribute": 5, - "support.radioValue": 2, "#11217": 1, "loses": 1, - "checked": 4, - "attribute": 5, - "div.appendChild": 4, - "document.createDocumentFragment": 3, - "fragment.appendChild": 2, "div.lastChild": 1, - "doesn": 2, - "have": 6, "conMarginTop": 3, "paddingMarginBorder": 5, "positionTopLeftWidthHeight": 3, @@ -28803,73 +31625,41 @@ "body.insertBefore": 1, "body.firstChild": 1, "Construct": 1, - "div": 28, "container.appendChild": 1, - "table": 6, "cells": 3, "still": 4, "offsetWidth/Height": 3, - "display": 7, - "none": 4, - "other": 3, "visible": 1, "row": 1, "reliable": 1, - "determining": 3, - "been": 5, - "hidden": 12, - "directly": 2, - "using": 5, "offsets": 1, - "don": 5, "safety": 1, "goggles": 1, - "bug": 3, "#4512": 1, - "more": 6, - "information": 5, "fails": 2, - "div.innerHTML": 7, - "tds": 6, - "isSupported": 7, - ".offsetHeight": 4, - ".style.display": 5, - "empty": 3, - "fail": 10, "support.reliableHiddenOffsets": 1, "explicit": 1, - "width": 32, - "margin": 8, "right": 3, "incorrectly": 1, "computed": 1, "based": 1, "container.": 1, - "info": 2, "#3333": 1, - "Fails": 2, "Feb": 1, "Bug": 1, "getComputedStyle": 3, "returns": 1, "wrong": 1, "window.getComputedStyle": 6, - "marginDiv": 5, "marginDiv.style.width": 1, "marginDiv.style.marginRight": 1, "div.style.width": 2, "support.reliableMarginRight": 1, - "parseInt": 12, - "marginRight": 2, - ".marginRight": 2, "div.style.zoom": 2, "natively": 1, "block": 4, - "level": 3, "act": 1, - "inline": 3, "setting": 2, - "their": 3, "giving": 1, "layout": 2, "div.style.padding": 1, @@ -28879,15 +31669,9 @@ "support.inlineBlockNeedsLayout": 1, "div.offsetWidth": 2, "shrink": 1, - "wrap": 2, - "children": 3, "support.shrinkWrapBlocks": 1, "div.style.cssText": 1, - "outer": 2, - "div.firstChild": 3, - "inner": 2, "outer.firstChild": 1, - "td": 3, "outer.nextSibling.firstChild.firstChild": 1, "offsetSupport": 2, "doesNotAddBorder": 1, @@ -28898,9 +31682,7 @@ "inner.style.top": 2, "safari": 1, "subtracts": 1, - "border": 7, "here": 1, - "which": 8, "offsetSupport.fixedPosition": 1, "outer.style.overflow": 1, "outer.style.position": 1, @@ -28909,66 +31691,38 @@ "body.offsetTop": 1, "div.style.marginTop": 1, "support.pixelMargin": 1, - "marginTop": 3, ".marginTop": 1, "container.style.zoom": 2, "body.removeChild": 1, "rbrace": 1, - "rmultiDash": 3, - "Z": 6, "Please": 1, "caution": 1, - "uuid": 2, "Unique": 1, - "each": 17, "page": 1, - "Non": 3, - "digits": 3, "rinlinejQuery": 1, - "expando": 14, "jQuery.fn.jquery": 1, - "Math.random": 2, - "D/g": 2, "following": 1, "uncatchable": 1, "you": 1, "attempt": 2, "them.": 1, - "noData": 3, "Ban": 1, "except": 1, "Flash": 1, - "handle": 15, - "expandos": 2, - "hasData": 2, - "elem.nodeType": 8, - "jQuery.cache": 3, - "jQuery.expando": 12, - "isEmptyDataObject": 3, - "pvt": 8, "jQuery.acceptData": 2, "privateCache": 1, - "thisCache": 15, - "internalKey": 12, - "getByName": 3, - "We": 6, - "nodes": 14, - "JS": 7, "differently": 1, "because": 1, "IE6": 1, - "internal": 8, "order": 1, "collisions": 1, "between": 1, "user": 1, - "defined": 3, "data.": 1, "thisCache.data": 3, "Users": 1, "should": 1, "inspect": 1, - "jQuery.data": 15, "undocumented": 1, "subject": 1, "change.": 1, @@ -28978,30 +31732,20 @@ "No.": 1, "isEvents": 1, "privateCache.events": 1, - "both": 2, "converted": 2, "camel": 2, "names": 2, - "Try": 4, - "find": 7, "camelCased": 1, - "removeData": 8, "Reference": 1, - "isNode": 11, "entry": 1, "purpose": 1, "continuing": 1, - ".data": 3, "Support": 1, "space": 1, "separated": 1, - "keys": 11, "jQuery.isArray": 1, "manipulation": 1, - "split": 4, "cased": 1, - "spaces": 3, - "unless": 2, "name.split": 1, "name.length": 1, "want": 1, @@ -29012,188 +31756,267 @@ "care": 1, "Ensure": 1, "#10080": 1, - "jQuery.support.deleteExpando": 3, "cache.setInterval": 1, - "eliminate": 2, - "node": 23, - "lookups": 2, - "entries": 2, - "longer": 2, - "exist": 2, - "us": 2, - "nor": 2, - "removeAttribute": 3, - "Document": 2, - "these": 2, - "elem.removeAttribute": 6, - "only.": 2, - "_data": 3, - "acceptData": 3, - "elem.nodeName": 2, - "jQuery.noData": 2, - "elem.nodeName.toLowerCase": 2, - "elem.getAttribute": 7, - "parts": 28, "part": 8, "jQuery._data": 2, "elem.attributes": 1, - "attr.length": 2, - ".name": 3, - "name.indexOf": 2, - "name.substring": 2, - "dataAttr": 6, - "multiple": 7, - "this.each": 42, - "key.split": 2, - "this.triggerHandler": 6, - "fetch": 4, - "stored": 4, - "this.data": 5, "self.triggerHandler": 2, - "jQuery.removeData": 2, - "nothing": 2, - "found": 10, - "HTML5": 3, - "key.replace": 2, - ".toLowerCase": 7, "jQuery.isNumeric": 1, - "rbrace.test": 2, - "jQuery.parseJSON": 2, - "isn": 2, - "optgroup": 5, - "option.selected": 2, - "jQuery.support.optDisabled": 2, - "option.disabled": 2, - "option.getAttribute": 2, - "option.parentNode.disabled": 2, - "jQuery.nodeName": 3, - "option.parentNode": 2, - "Get": 4, - "specific": 2, - ".val": 5, - "get/set": 2, - "text": 14, - "comment": 3, - "nType": 8, - "jQuery.attrFn": 2, - "Fallback": 2, - "prop": 24, - "supported": 2, - "jQuery.prop": 2, - "notxml": 8, - "jQuery.isXMLDoc": 2, "All": 1, "lowercase": 1, "Grab": 1, "necessary": 1, "hook": 1, - "hooks": 14, - "jQuery.attrHooks": 2, - "rboolean.test": 4, - "boolHook": 3, "nodeHook": 1, - "jQuery.removeAttr": 2, - "hooks.set": 2, - "elem.setAttribute": 2, - "hooks.get": 2, - "existent": 2, - "normalize": 2, - "removeAttr": 5, - "propName": 8, "attrNames": 3, "isBool": 4, - "value.toLowerCase": 2, "rspace": 1, "attrNames.length": 1, - "jQuery.propFix": 2, "#9699": 1, "explanation": 1, "approach": 1, "removal": 1, - "do": 15, "#10870": 1, - "jQuery.attr": 2, - "getSetAttribute": 3, - "corresponding": 2, - "attrHooks": 3, - "changed": 3, - "button": 24, - "tabIndex": 4, - "readOnly": 2, - "htmlFor": 2, - "class": 5, - "className": 4, - "maxLength": 2, - "cellSpacing": 2, - "cellPadding": 2, - "rowSpan": 2, - "colSpan": 2, - "useMap": 2, - "frameBorder": 2, - "contentEditable": 2, - "tabindex": 4, - "height": 25, - "auto": 3, - "href": 9, - "encoding": 26, - "mouseenter": 9, - "mouseleave": 9, - "mouseover": 12, - "mouseout": 12, "**": 1, - "getData": 3, - "setData": 3, - "changeData": 3, - "click": 11, - "focus": 7, - "blur": 8, - "attrChange": 4, - "attrName": 4, - "relatedNode": 4, - "srcElement": 5, - "altKey": 4, - "bubbles": 4, - "cancelable": 4, - "ctrlKey": 6, - "currentTarget": 4, - "eventPhase": 4, - "metaKey": 5, - "relatedTarget": 6, - "shiftKey": 4, "timeStamp": 1, - "view": 4, "char": 2, - "charCode": 7, - "keyCode": 6, "buttons": 1, - "clientX": 6, - "clientY": 5, - "fromElement": 6, - "offsetX": 4, - "offsetY": 4, - "pageX": 4, - "pageY": 4, - "screenX": 4, - "screenY": 4, - "toElement": 5, - "focusin": 9, - "focusout": 11, - "form": 12, - "multiply": 1, - "x": 41, - "y": 109, + "SHEBANG#!node": 2, + "http.createServer": 1, + "res.writeHead": 1, + "res.end": 1, + ".listen": 1, + "Date.prototype.toJSON": 2, + "isFinite": 1, + "this.valueOf": 2, + "this.getUTCFullYear": 1, + "this.getUTCMonth": 1, + "this.getUTCDate": 1, + "this.getUTCHours": 1, + "this.getUTCMinutes": 1, + "this.getUTCSeconds": 1, + "String.prototype.toJSON": 1, + "Number.prototype.toJSON": 1, + "Boolean.prototype.toJSON": 1, + "u0000": 1, + "u00ad": 1, + "u0600": 1, + "u0604": 1, + "u070f": 1, + "u17b4": 1, + "u17b5": 1, + "u200c": 1, + "u200f": 1, + "u2028": 3, + "u202f": 1, + "u2060": 1, + "u206f": 1, + "ufeff": 1, + "ufff0": 1, + "uffff": 1, + "escapable": 1, + "/bfnrt": 1, + "fA": 2, + "JSON.parse": 1, + "PUT": 1, + "DELETE": 1, + "_id": 1, + "ties": 1, + "collection.": 1, + "_removeReference": 1, + "model.collection": 2, + "model.unbind": 1, + "this._onModelEvent": 1, + "_onModelEvent": 1, + "ev": 5, + "this._remove": 1, + "model.idAttribute": 2, + "this._byId": 2, + "model.previous": 1, + "model.id": 1, + "this.trigger.apply": 2, + "_.each": 1, + "Backbone.Collection.prototype": 1, + "this.models": 1, + "_.toArray": 1, + "Backbone.Router": 1, + "options.routes": 2, + "this.routes": 4, + "this._bindRoutes": 1, + "this.initialize.apply": 2, + "namedParam": 2, + "splatParam": 2, + "escapeRegExp": 2, + "_.extend": 9, + "Backbone.Router.prototype": 1, + "Backbone.Events": 2, + "route": 18, + "Backbone.history": 2, + "Backbone.History": 2, + "_.isRegExp": 1, + "this._routeToRegExp": 1, + "Backbone.history.route": 1, + "_.bind": 2, + "this._extractParameters": 1, + "callback.apply": 1, + "navigate": 2, + "triggerRoute": 4, + "Backbone.history.navigate": 1, + "_bindRoutes": 1, + "routes": 4, + "routes.unshift": 1, + "routes.length": 1, + "this.route": 1, + "_routeToRegExp": 1, + "route.replace": 1, + "_extractParameters": 1, + "route.exec": 1, + "this.handlers": 2, + "_.bindAll": 1, + "hashStrip": 4, + "#*": 1, + "isExplorer": 1, + "/msie": 1, + "historyStarted": 3, + "Backbone.History.prototype": 1, + "getFragment": 1, + "forcePushState": 2, + "this._hasPushState": 6, + "window.location.pathname": 1, + "window.location.search": 1, + "fragment.indexOf": 1, + "this.options.root": 6, + "fragment.substr": 1, + "this.options.root.length": 1, + "window.location.hash": 3, + "fragment.replace": 1, + "this._wantsPushState": 3, + "this.options.pushState": 2, + "window.history": 2, + "window.history.pushState": 2, + "this.getFragment": 6, + "docMode": 3, + "document.documentMode": 3, + "oldIE": 3, + "isExplorer.exec": 1, + "navigator.userAgent.toLowerCase": 1, + "this.iframe": 4, + ".contentWindow": 1, + "this.navigate": 2, + ".bind": 3, + "this.checkUrl": 3, + "setInterval": 6, + "this.interval": 1, + "this.fragment": 13, + "loc": 2, + "atRoot": 3, + "loc.pathname": 1, + "loc.hash": 1, + "loc.hash.replace": 1, + "window.history.replaceState": 1, + "document.title": 2, + "loc.protocol": 2, + "loc.host": 2, + "this.loadUrl": 4, + "this.handlers.unshift": 1, + "checkUrl": 1, + "this.iframe.location.hash": 3, + "decodeURIComponent": 2, + "loadUrl": 1, + "fragmentOverride": 2, + "matched": 2, + "_.any": 1, + "handler.route.test": 1, + "handler.callback": 1, + "frag": 13, + "frag.indexOf": 1, + "this.iframe.document.open": 1, + ".close": 1, + "Backbone.View": 1, + "this.cid": 3, + "_.uniqueId": 1, + "this._configure": 1, + "this._ensureElement": 1, + "this.delegateEvents": 1, + "selectorDelegate": 2, + "this.el": 10, + "eventSplitter": 2, + "viewOptions": 2, + "Backbone.View.prototype": 1, + "tagName": 3, + "render": 1, + "el": 4, + ".attr": 1, + ".html": 1, + "delegateEvents": 1, + "this.events": 1, + "key.match": 1, + "_configure": 1, + "viewOptions.length": 1, + "_ensureElement": 1, + "attrs": 6, + "this.attributes": 1, + "this.id": 2, + "attrs.id": 1, + "this.make": 1, + "this.tagName": 1, + "_.isString": 1, + "protoProps": 6, + "classProps": 2, + "inherits": 2, + "child.extend": 1, + "this.extend": 1, + "Backbone.Model.extend": 1, + "Backbone.Collection.extend": 1, + "Backbone.Router.extend": 1, + "Backbone.View.extend": 1, + "methodMap": 2, + "Backbone.sync": 1, + "params": 2, + "params.url": 2, + "getUrl": 2, + "urlError": 2, + "params.data": 5, + "params.contentType": 2, + "model.toJSON": 1, + "Backbone.emulateJSON": 2, + "params.processData": 1, + "Backbone.emulateHTTP": 1, + "params.data._method": 1, + "params.type": 1, + "params.beforeSend": 1, + "xhr": 1, + "xhr.setRequestHeader": 1, + ".ajax": 1, + "staticProps": 3, + "protoProps.hasOwnProperty": 1, + "protoProps.constructor": 1, + "parent.apply": 1, + "child.prototype.constructor": 1, + "object.url": 4, + "_.isFunction": 1, + "wrapError": 1, + "onError": 3, + "resp": 3, + "model.trigger": 1, + "escapeHTML": 1, + "string.replace": 1, + "#x": 1, + "da": 1, + "": 1, + "lt": 55, + "#x27": 1, + "#x2F": 1, "window.Modernizr": 1, "Modernizr": 12, "enableClasses": 3, "docElement": 1, - "document.documentElement": 2, "mod": 12, "modElem": 2, "mStyle": 2, "modElem.style": 1, "inputElem": 6, "smile": 4, - ".toString": 3, "prefixes": 2, "omPrefixes": 1, "cssomPrefixes": 2, @@ -29210,15 +32033,11 @@ "rule": 5, "testnames": 3, "fakeBody": 4, - "while": 53, "node.id": 1, - ".join": 14, "div.id": 1, "fakeBody.appendChild": 1, "//avoid": 1, "crashing": 1, - "background": 56, - "image": 5, "fakeBody.style.background": 1, "docElement.appendChild": 2, "fakeBody.parentNode.removeChild": 1, @@ -29236,17 +32055,13 @@ "element.setAttribute": 3, "element.removeAttribute": 2, "_hasOwnProperty": 2, - ".hasOwnProperty": 2, "hasOwnProperty": 5, "_hasOwnProperty.call": 2, "object.constructor.prototype": 1, "Function.prototype.bind": 2, - "bind": 3, - "TypeError": 2, "slice.call": 3, "F.prototype": 1, "target.prototype": 1, - "result": 12, "target.apply": 2, "args.concat": 2, "setCss": 7, @@ -29256,11 +32071,8 @@ "str1": 6, "str2": 4, "prefixes.join": 3, - "contains": 8, "substr": 2, - ".indexOf": 2, "testProps": 3, - "props": 21, "prefixed": 7, "testDOMProps": 2, "item": 4, @@ -29281,7 +32093,6 @@ "window.openDatabase": 1, "history.pushState": 1, "mStyle.backgroundColor": 3, - "url": 23, "mStyle.background": 1, ".style.textShadow": 1, "mStyle.opacity": 1, @@ -29295,7 +32106,6 @@ "document.styleSheets.length": 1, "cssText": 4, "style.cssRules": 3, - ".cssText": 2, "style.cssText": 1, "/src/i.test": 1, "cssText.indexOf": 1, @@ -29322,7 +32132,6 @@ "toString.call": 2, "/SVGClipPath/.test": 1, "webforms": 2, - "len": 11, "props.length": 2, "attrs.list": 2, "window.HTMLDataListElement": 1, @@ -29332,15 +32141,12 @@ "inputElem.type": 1, "inputElem.value": 2, "inputElem.style.cssText": 1, - "range": 2, "inputElem.style.WebkitAppearance": 1, "document.defaultView": 1, "defaultView.getComputedStyle": 2, ".WebkitAppearance": 1, "inputElem.offsetHeight": 1, "docElement.removeChild": 1, - "tel": 2, - "email": 2, "inputElem.checkValidity": 2, "feature": 12, "feature.toLowerCase": 2, @@ -29351,12 +32157,7 @@ "chaining.": 1, "window.html5": 2, "reSkip": 1, - "map": 7, - "textarea": 8, - "iframe": 3, - "/i": 22, "saveClones": 1, - "code": 2, "fieldset": 1, "h1": 5, "h2": 5, @@ -29367,22 +32168,14 @@ "img": 1, "label": 2, "li": 19, - "link": 2, "ol": 1, - "p": 110, - "param": 3, - "q": 34, - "script": 7, "span": 1, "strong": 1, "tfoot": 1, "th": 1, - "thead": 2, - "tr": 23, "ul": 1, "supportsHtml5Styles": 5, "supportsUnknownElements": 3, - "a.innerHTML": 7, "//if": 2, "implemented": 1, "assume": 1, @@ -29397,7 +32190,6 @@ "frag.createDocumentFragment": 1, "frag.createElement": 2, "addStyleSheet": 2, - "ownerDocument": 9, "ownerDocument.createElement": 3, "ownerDocument.getElementsByTagName": 1, "ownerDocument.documentElement": 1, @@ -29412,16 +32204,13 @@ "docCreateElement": 5, "docCreateFragment": 2, "ownerDocument.createDocumentFragment": 2, - "nodeName": 20, "//abort": 1, "shiv": 1, "html5.shivMethods": 1, - ".cloneNode": 4, "saveClones.test": 1, "node.canHaveChildren": 1, "reSkip.test": 1, "frag.appendChild": 1, - "Function": 3, "html5": 3, "shivDocument": 3, "shived": 5, @@ -29444,6 +32233,7 @@ "js": 1, "classes.join": 1, "this.document": 1, + "window.angular": 1, "PEG.parser": 1, "quote": 3, "result0": 264, @@ -29456,7 +32246,6 @@ "reportFailures": 64, "matchFailed": 40, "pos1": 63, - "offset": 21, "chars": 1, "chars.join": 1, "pos0": 51, @@ -29532,9 +32321,7 @@ "line": 14, "column": 8, "seenCR": 5, - "Math.max": 10, "rightmostFailuresPos": 2, - "ch": 58, "parseFunctions": 1, "startRule": 1, "errorPosition": 1, @@ -29547,13 +32334,10 @@ "buildMessage": 2, "expectedHumanized": 5, "foundHumanized": 3, - "switch": 30, "expected.slice": 1, - "this.name": 7, "this.expected": 1, "this.found": 1, "this.message": 3, - "this.offset": 2, "this.line": 3, "this.column": 1, "result.SyntaxError.prototype": 1, @@ -29566,21 +32350,17 @@ "ui": 31, "/255": 1, "t.getRed": 4, - "v": 135, "t.getGreen": 4, "t.getBlue": 4, "t.getAlpha": 4, "i.getRed": 1, "i.getGreen": 1, "i.getBlue": 1, - "o": 322, "i.getAlpha": 1, "*f": 2, "w/r": 1, "p/r": 1, - "c": 775, "s/r": 1, - "h": 499, "o/r": 1, "e*u": 1, ".toFixed": 3, @@ -29588,46 +32368,31 @@ "c*u": 1, "h*u": 1, "vr": 20, - "stop": 7, - "color": 4, "Math.floor": 26, "Math.log10": 1, "n/Math.pow": 1, "": 1, - "e=": 21, - "o=": 13, "beginPath": 12, "moveTo": 10, "lineTo": 22, "quadraticCurveTo": 4, "closePath": 8, "stroke": 7, - "i=": 31, - "createElement": 3, "canvas": 22, "width=": 17, "height=": 17, "ii": 29, - "u=": 12, "getContext": 26, "2d": 26, "ft": 70, - "1": 97, "fillStyle=": 13, "rect": 3, - "0": 220, "fill": 10, - "t=": 19, "getImageData": 1, - "2": 66, - "3": 13, "wt": 26, - "r=": 18, "32": 1, "62": 1, - "f=": 13, "84": 1, - "s=": 12, "94": 1, "ar": 20, "255": 3, @@ -29642,7 +32407,6 @@ "i*": 3, "h*t": 1, "*t": 3, - "%": 26, "f*255": 1, "u*255": 1, "r*255": 1, @@ -29650,10 +32414,8 @@ "n/255": 1, "t/255": 1, "i/255": 1, - "Math.min": 5, "f/r": 1, "/f": 3, - "k": 302, "<0?0:n>": 1, "si": 23, "ti": 39, @@ -29669,7 +32431,6 @@ "i.size": 6, "i.minValue": 10, "i.maxValue": 10, - "bf": 6, "i.niceScale": 10, "i.threshold": 10, "/2": 25, @@ -29684,10 +32445,8 @@ "steelseries.FrameDesign.METAL": 7, "wu": 9, "i.frameVisible": 10, - "bt": 42, "i.backgroundColor": 10, "steelseries.BackgroundColor.DARK_GRAY": 7, - "bu": 11, "i.backgroundVisible": 10, "pt": 48, "i.pointerType": 4, @@ -29709,7 +32468,6 @@ "i.digitalFont": 8, "pe": 2, "i.fractionalScaleDecimals": 4, - "br": 19, "i.ledColor": 10, "steelseries.LedColor.RED_LED": 7, "ru": 14, @@ -29720,7 +32478,6 @@ "i.minMeasuredValueVisible": 8, "dr": 16, "i.maxMeasuredValueVisible": 8, - "cf": 7, "i.foregroundType": 6, "steelseries.ForegroundType.TYPE1": 5, "af": 5, @@ -29760,11 +32517,9 @@ "steelseries.TrendState.OFF": 4, "lr": 19, "f*.06": 1, - "cr": 20, "f*.29": 19, "er": 19, "f*.36": 4, - "ci": 29, "et": 45, "gi": 26, "rr": 21, @@ -29774,7 +32529,6 @@ "u.clearRect": 5, "u.canvas.width": 7, "u.canvas.height": 7, - "g": 441, "s/2": 2, "k/2": 1, "pf": 4, @@ -29783,17 +32537,14 @@ ".4*k": 1, "pr": 16, "s/10": 1, - "ce": 6, "ae": 2, "hf": 4, "k*.13": 2, - "bi": 27, "s*.4": 1, "sf": 5, "rf": 5, "k*.57": 1, "tf": 5, - "ve": 3, "k*.61": 1, "Math.PI/2": 40, "ue": 1, @@ -29855,7 +32606,6 @@ "du": 10, "ku": 9, "yu": 10, - "cu": 18, "su": 12, "tr.getContext": 1, "kf": 3, @@ -29941,7 +32691,6 @@ "s*.3": 1, "s*.1": 1, "oi/2": 2, - "parseFloat": 32, "b.toFixed": 1, "c.toFixed": 2, "le.type": 1, @@ -29968,7 +32717,6 @@ ".stop": 11, ".color": 13, "ui.length": 2, - "ct": 34, "ut.save": 1, "ut.translate": 3, "ut.rotate": 1, @@ -30019,7 +32767,6 @@ "yf.repaint": 1, "ur": 20, "e3": 5, - "clearInterval": 6, "this.setValue": 7, "": 5, "ki.pause": 1, @@ -30672,7 +33419,6 @@ "bargraphled": 3, "v.drawImage": 2, "": 1, - "n=": 10, "856796": 4, "728155": 2, "34": 2, @@ -30684,9 +33430,7 @@ "restore": 14, "repaint": 23, "dr=": 1, - "b=": 25, "128": 2, - "y=": 5, "48": 1, "w=": 4, "lcdColor": 4, @@ -30702,19 +33446,14 @@ "digitalFont": 4, "bt=": 3, "valuesNumeric": 4, - "a=": 23, "ct=": 5, "autoScroll": 2, "section": 2, - "c=": 24, "wt=": 3, "getElementById": 4, "clearRect": 8, - "h=": 19, - "l=": 10, "v=": 5, "floor": 13, - "5": 23, "ot=": 4, "sans": 12, "serif": 13, @@ -30724,7 +33463,6 @@ "kt=": 4, "textAlign=": 7, "strokeStyle=": 8, - "4": 4, "clip": 1, "font=": 28, "measureText": 4, @@ -30732,9 +33470,7 @@ "fillText": 23, "38": 5, "o*.2": 1, - "clearTimeout": 2, "<=o-4&&(e=0,c=!1),u.fillText(n,o-2-e,h*.5+v*.38)),u.restore()},dt=function(n,i,r,u){var>": 1, - "d=": 15, "rt=": 3, "095": 1, "createLinearGradient": 6, @@ -30744,7 +33480,6 @@ "666666": 2, "92": 1, "e6e6e6": 1, - "g=": 15, "gradientStartColor": 1, "tt=": 3, "gradientFraction1Color": 1, @@ -30753,8 +33488,6 @@ "gradientStopColor": 1, "yt=": 4, "31": 26, - "k=": 11, - "p=": 5, "ut=": 6, "rgb": 6, "03": 1, @@ -30762,7 +33495,6 @@ "57": 1, "83": 1, "wt.repaint": 1, - "f.length": 5, "resetBuffers": 1, "this.setScrolling": 1, "w.textColor": 1, @@ -30785,7 +33517,6 @@ "setLcdColor=": 2, "repaint=": 2, "br=": 1, - "size": 6, "200": 2, "st=": 3, "decimalsVisible": 2, @@ -30807,7 +33538,6 @@ "ForegroundType": 2, "TYPE1": 2, "foregroundVisible": 4, - "PI": 54, "180": 26, "ni=": 1, "labelColor": 6, @@ -30819,7 +33549,6 @@ "f*.37": 3, "": 1, "rotate": 31, - "Math": 51, "u00b0": 8, "41": 3, "45": 5, @@ -30925,7 +33654,6 @@ "u.customLayer": 4, "u.degreeScale": 4, "u.roseVisible": 4, - "this.value": 4, "ft.getContext": 2, "ut.getContext": 2, "it.getContext": 2, @@ -31096,1907 +33824,12 @@ "7fd5f0": 2, "3c4439": 2, "72": 1, - "hanaMath": 1, - ".import": 1, - ".request.parameters.get": 2, - "hanaMath.multiply": 1, - "output": 2, - "title": 1, - ".response.contentType": 1, - ".response.statusCode": 1, - ".net.http.OK": 1, - ".response.setBody": 1, - "Animal": 12, - "Horse": 12, - "Snake": 12, - "sam": 4, - "tom": 4, - "__hasProp": 2, - "__extends": 6, - "__hasProp.call": 2, - "this.constructor": 5, - "Animal.prototype.move": 2, - "meters": 4, - "Snake.__super__.constructor.apply": 2, - "Snake.prototype.move": 2, - "Snake.__super__.move.call": 2, - "Horse.__super__.constructor.apply": 2, - "Horse.prototype.move": 2, - "Horse.__super__.move.call": 2, - "sam.move": 2, - "tom.move": 2, - "ma": 3, - "c.isReady": 4, - "s.documentElement.doScroll": 2, - "c.ready": 7, - "Qa": 1, - "b.src": 4, - "c.ajax": 1, - "async": 5, - "c.globalEval": 1, - "b.text": 3, - "b.textContent": 2, - "b.innerHTML": 3, - "b.parentNode": 4, - "b.parentNode.removeChild": 2, - "X": 6, - "j": 265, - "a.length": 23, - "c.isFunction": 9, - "d.call": 3, - "J": 5, - "Y": 3, - "na": 1, - ".type": 2, - "c.event.handle.apply": 1, - "oa": 1, - "c.data": 12, - "a.liveFired": 4, - "i.live": 1, - "a.button": 2, - "a.type": 14, - "i.live.slice": 1, - "u.length": 3, - "i.origType.replace": 1, - "O": 6, - "f.push": 5, - "i.selector": 3, - "u.splice": 1, - "a.target": 5, - ".closest": 4, - "a.currentTarget": 4, - "j.length": 2, - ".selector": 1, - ".elem": 1, - "i.preType": 2, - "a.relatedTarget": 2, - "d.push": 1, - "handleObj": 2, - "d.length": 8, - "j.elem": 2, - "a.data": 2, - "j.handleObj.data": 1, - "a.handleObj": 2, - "j.handleObj": 1, - "j.handleObj.origHandler.apply": 1, - "pa": 1, - "b.replace": 3, - "./g": 2, - "qa": 1, - "a.parentNode": 6, - "a.parentNode.nodeType": 2, - "ra": 1, - "b.each": 1, - "this.nodeName": 4, - ".nodeName": 2, - "f.events": 1, - "e.handle": 2, - "e.events": 2, - "c.event.add": 1, - "sa": 2, - ".ownerDocument": 5, - ".length": 24, - "ta.test": 1, - "c.support.checkClone": 2, - "ua.test": 1, - "c.fragments": 2, - "b.createDocumentFragment": 1, - "c.clean": 1, - "cacheable": 2, - "K": 4, - "c.each": 2, - "va.concat.apply": 1, - "va.slice": 1, - "wa": 1, - "a.document": 3, - "a.nodeType": 27, - "a.defaultView": 2, - "a.parentWindow": 2, - "c.fn.init": 1, - "Ra": 2, - "A.jQuery": 3, - "Sa": 2, - "A.": 3, - "A.document": 1, - "T": 4, - "Ta": 1, - "Ua": 1, - "Va": 1, - "Wa": 2, - "u00A0": 2, - "Xa": 1, - "P": 4, - "xa": 3, - "Q": 6, - "L": 10, - "aa": 1, - "ba": 3, - "R": 2, - "ya": 2, - "c.fn": 2, - "c.prototype": 1, - "s.body": 2, - "Ta.exec": 1, - "b.ownerDocument": 6, - "Xa.exec": 1, - "c.isPlainObject": 3, - "s.createElement": 10, - "c.fn.attr.call": 1, - "f.createElement": 1, - "a.cacheable": 1, - "a.fragment.cloneNode": 1, - "a.fragment": 1, - ".childNodes": 2, - "c.merge": 4, - "s.getElementById": 1, - "b.id": 1, - "T.find": 1, - "s.getElementsByTagName": 2, - "b.jquery": 1, - ".find": 5, - "T.ready": 1, - "a.selector": 4, - "a.context": 2, - "c.makeArray": 3, - "jquery": 3, - "toArray": 2, - "R.call": 2, - "this.toArray": 3, - "this.slice": 5, - "pushStack": 4, - "c.isArray": 5, - "ba.apply": 1, - "f.prevObject": 1, - "f.context": 1, - "f.selector": 2, - "c.bindReady": 1, - "a.call": 17, - "Q.push": 1, - "eq": 2, - "this.eq": 4, - "this.pushStack": 12, - "R.apply": 1, - "c.map": 1, - "this.prevObject": 3, - "c.fn.init.prototype": 1, - "c.extend": 7, - "c.fn.extend": 4, - "c.fn.triggerHandler": 1, - ".triggerHandler": 1, - "s.readyState": 2, - "s.addEventListener": 3, - "A.addEventListener": 1, - "s.attachEvent": 3, - "A.attachEvent": 1, - "A.frameElement": 1, - "isFunction": 12, - "isArray": 10, - "isPlainObject": 4, - "a.setInterval": 2, - "a.constructor": 2, - "aa.call": 3, - "a.constructor.prototype": 2, - "c.trim": 3, - "a.replace": 7, - "@": 1, - "A.JSON": 1, - "A.JSON.parse": 2, - "c.error": 2, - "noop": 3, - "globalEval": 2, - "Va.test": 1, - "s.documentElement": 2, - "d.type": 2, - "c.support.scriptEval": 2, - "d.appendChild": 3, - "s.createTextNode": 2, - "d.text": 1, - "b.insertBefore": 3, - "b.firstChild": 5, - "b.removeChild": 3, - "a.nodeName": 12, - "a.nodeName.toUpperCase": 2, - "b.toUpperCase": 3, - "b.apply": 2, - "b.call": 4, - "makeArray": 3, - "ba.call": 1, - "inArray": 5, - "b.indexOf": 2, - "b.length": 12, - "merge": 2, - "grep": 6, - "f.concat.apply": 1, - "guid": 5, - "proxy": 4, - "a.apply": 2, - "b.guid": 2, - "a.guid": 7, - "c.guid": 1, - "a.toLowerCase": 4, - "/.exec": 4, - "/compatible/.test": 1, - "c.uaMatch": 1, - "P.browser": 2, - "c.browser": 1, - "c.browser.version": 1, - "P.version": 1, - "c.browser.webkit": 1, - "c.browser.safari": 1, - "c.inArray": 2, - "ya.call": 1, - "s.removeEventListener": 1, - "s.detachEvent": 1, - "c.support": 2, - "d.style.display": 5, - "d.innerHTML": 2, - "d.getElementsByTagName": 6, - "e.length": 9, - "d.firstChild.nodeType": 1, - "htmlSerialize": 3, - "/red/.test": 1, - "j.getAttribute": 2, - "j.style.opacity": 1, - "j.style.cssFloat": 1, - ".value": 1, - "optSelected": 3, - ".appendChild": 1, - ".selected": 1, - "parentNode": 10, - "d.removeChild": 1, - ".parentNode": 7, - "deleteExpando": 3, - "checkClone": 1, - "scriptEval": 1, - "noCloneEvent": 3, - "boxModel": 1, - "b.type": 4, - "b.appendChild": 1, - "a.insertBefore": 2, - "a.firstChild": 6, - "b.test": 1, - "c.support.deleteExpando": 2, - "a.removeChild": 2, - "d.attachEvent": 2, - "d.fireEvent": 1, - "c.support.noCloneEvent": 1, - "d.detachEvent": 1, - "d.cloneNode": 1, - "s.createDocumentFragment": 1, - "a.appendChild": 3, - "d.firstChild": 2, - "a.cloneNode": 3, - ".lastChild.checked": 2, - "k.style.width": 1, - "k.style.paddingLeft": 1, - "s.body.appendChild": 1, - "c.boxModel": 1, - "c.support.boxModel": 1, - "k.offsetWidth": 1, - "s.body.removeChild": 1, - "n.setAttribute": 1, - "c.support.submitBubbles": 1, - "c.support.changeBubbles": 1, - "c.props": 2, - "readonly": 3, - "maxlength": 2, - "cellspacing": 2, - "rowspan": 2, - "colspan": 2, - "usemap": 2, - "frameborder": 2, - "G": 11, - "Ya": 2, - "za": 3, - "embed": 3, - "applet": 2, - "c.noData": 2, - "a.nodeName.toLowerCase": 3, - "c.cache": 2, - "c.isEmptyObject": 1, - "c.removeData": 2, - "c.expando": 2, - "a.removeAttribute": 3, - "a.split": 4, - "this.trigger": 2, - ".each": 3, - "queue": 7, - "dequeue": 6, - "c.queue": 3, - "d.shift": 2, - "d.unshift": 2, - "f.call": 1, - "c.dequeue": 4, - "c.fx": 1, - "c.fx.speeds": 1, - "this.queue": 4, - "clearQueue": 2, - "Aa": 3, - "ca": 6, - "Za": 2, - "r/g": 2, - "/href": 1, - "style/": 1, - "ab": 1, - "bb": 2, - "cb": 16, - "area": 2, - "Ba": 3, - "/radio": 1, - "checkbox/": 1, - "c.attr": 4, - "this.nodeType": 4, - "this.removeAttribute": 1, - "addClass": 2, - "r.addClass": 1, - "r.attr": 1, - "e.nodeType": 7, - "e.className": 14, - "j.indexOf": 1, - "removeClass": 2, - "n.removeClass": 1, - "n.attr": 1, - "j.replace": 2, - "toggleClass": 2, - "j.toggleClass": 1, - "j.attr": 1, - "i.hasClass": 1, - "hasClass": 2, - "": 1, - "val": 13, - "c.nodeName": 4, - "b.attributes.value": 1, - ".specified": 1, - "b.value": 4, - "b.selectedIndex": 2, - "b.options": 1, - "": 1, - "getAttribute": 3, - "nodeType=": 6, - "call": 9, - "checked=": 1, - "this.selected": 1, - "this.selectedIndex": 1, - "attrFn": 2, - "css": 7, - "c.attrFn": 1, - "c.isXMLDoc": 1, - "a.test": 2, - "ab.test": 1, - "a.getAttributeNode": 7, - ".nodeValue": 1, - "b.specified": 2, - "bb.test": 2, - "cb.test": 1, - "a.href": 2, - "c.support.style": 1, - "a.style.cssText": 3, - "a.setAttribute": 7, - "c.support.hrefNormalized": 1, - "c.style": 1, - "db": 1, - "detail": 3, - "layerX": 3, - "layerY": 3, - "newValue": 3, - "originalTarget": 1, - "prevValue": 3, - "wheelDelta": 3, - "click.specialSubmit": 2, - "submit": 14, - "keypress.specialSubmit": 2, - "password": 5, - ".specialSubmit": 2, - "_change_data": 6, - "file": 5, - ".specialChange": 4, - "unload": 5, - "live": 8, - "lastToggle": 4, - "die": 3, - "hover": 3, - "load": 5, - "resize": 3, - "scroll": 6, - "dblclick": 3, - "mousedown": 3, - "mouseup": 3, - "mousemove": 3, - "keydown": 4, - "keypress": 4, - "keyup": 3, - "onunload": 1, - "m": 76, - "h.nodeType": 4, - "H": 8, - "M": 9, - "I": 7, - "f.exec": 2, - "p.push": 2, - "p.length": 10, - "r.exec": 1, - "n.relative": 5, - "ga": 2, - "p.shift": 4, - "n.match.ID.test": 2, - "k.find": 6, - "v.expr": 4, - "k.filter": 5, - "v.set": 5, - "expr": 2, - "p.pop": 4, - "h.parentNode": 3, - "D": 9, - "k.error": 2, - "j.call": 2, - ".nodeType": 9, - "E": 11, - "l.push": 2, - "l.push.apply": 1, - "k.uniqueSort": 5, - "B": 5, - "g.sort": 1, - "g.length": 2, - "g.splice": 2, - "k.matches": 1, - "n.order.length": 1, - "n.order": 1, - "n.leftMatch": 1, - ".exec": 2, - "q.splice": 1, - "y.substr": 1, - "y.length": 1, - "Syntax": 3, - "unrecognized": 3, - "expression": 4, - "NAME": 2, - "TAG": 2, - "u00c0": 2, - "uFFFF": 2, - "leftMatch": 2, - "attrMap": 2, - "attrHandle": 2, - "g.getAttribute": 1, - "relative": 4, - "W/.test": 1, - "h.toLowerCase": 2, - "": 1, - "previousSibling": 5, - "nth": 5, - "even": 3, - "odd": 2, - "reset": 2, - "sourceIndex": 1, - "": 4, - "name=": 2, - "href=": 2, - "": 2, - "

": 2, - "class=": 5, - "

": 2, - ".TEST": 2, - "
": 4, - "
": 3, - "CLASS": 1, - "nextSibling": 3, - "": 1, - "": 1, - "
": 1, - "
": 1, - "": 4, - "
": 5, - "": 3, - "": 3, - "": 2, - "": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "position": 7, - "absolute": 2, - "solid": 2, - "#000": 2, - "padding": 4, - "": 1, - "": 1, - "fixed": 1, - "marginLeft": 2, - "borderTopWidth": 1, - "borderLeftWidth": 1, - "static": 2, - "Left": 1, - "Top": 1, - "pageXOffset": 2, - "pageYOffset": 1, - "Height": 1, - "Width": 1, - "scrollTo": 1, - "CSS1Compat": 1, - "client": 3, - "cy": 4, - "f.isWindow": 2, - "cv": 2, - "cj": 4, - "b.css": 1, - "b.remove": 1, - "ck": 5, - "c.createElement": 12, - "ck.frameBorder": 1, - "ck.width": 1, - "ck.height": 1, - "c.body.appendChild": 1, - "cl": 3, - "ck.createElement": 1, - "ck.contentWindow": 1, - "ck.contentDocument": 1, - ".document": 1, - "cl.write": 1, - "cl.createElement": 1, - "cl.body.appendChild": 1, - "f.css": 24, - "c.body.removeChild": 1, - "f.each": 21, - "cp.concat.apply": 1, - "cp.slice": 1, - "cq": 3, - "cs": 3, - "f.now": 2, - "a.ActiveXObject": 3, - "a.XMLHttpRequest": 1, - "a.dataFilter": 2, - "a.dataType": 1, - "a.dataTypes": 2, - "a.converters": 3, - "o.split": 1, - "f.error": 4, - "m.replace": 1, - "a.contents": 1, - "a.responseFields": 1, - "f.shift": 1, - "a.mimeType": 1, - "c.getResponseHeader": 1, - ".test": 1, - "f.unshift": 2, - "b_": 4, - "f.isArray": 8, - "bF.test": 1, - "c.dataTypes": 1, - "h.length": 3, - "bU": 4, - "c.dataTypes.unshift": 1, - "bZ": 3, - "f.isFunction": 21, - "b.toLowerCase": 3, - "bQ": 3, - "h.substr": 1, - "bD": 3, - "bx": 2, - "a.offsetWidth": 6, - "a.offsetHeight": 2, - "bn": 2, - "f.ajax": 3, - "f.globalEval": 2, - "bm": 3, - "f.nodeName": 16, - "bl": 3, - "a.getElementsByTagName": 9, - "f.grep": 3, - "a.defaultChecked": 1, - "a.checked": 4, - "bk": 5, - "a.querySelectorAll": 1, - "bj": 3, - "b.nodeType": 6, - "b.clearAttributes": 2, - "b.mergeAttributes": 2, - "b.nodeName.toLowerCase": 1, - "b.outerHTML": 1, - "a.outerHTML": 1, - "b.selected": 1, - "a.defaultSelected": 1, - "b.defaultValue": 1, - "a.defaultValue": 1, - "b.defaultChecked": 1, - "b.checked": 1, - "a.value": 8, - "b.removeAttribute": 3, - "f.expando": 23, - "f.hasData": 2, - "f.data": 25, - "d.events": 1, - "f.extend": 23, - "": 1, - "bh": 1, - "getElementsByTagName": 1, - "appendChild": 1, - "nodeType": 1, - "W": 3, - "N": 2, - "f._data": 15, - "r.live": 1, - "a.target.disabled": 1, - "a.namespace": 1, - "a.namespace.split": 1, - "r.live.slice": 1, - "s.length": 2, - "g.origType.replace": 1, - "q.push": 1, - "g.selector": 3, - "s.splice": 1, - "m.selector": 1, - "n.test": 2, - "g.namespace": 1, - "m.elem.disabled": 1, - "m.elem": 1, - "g.preType": 3, - "f.contains": 5, - "m.level": 1, - "": 1, - "e.elem": 2, - "e.handleObj.data": 1, - "e.handleObj": 1, - "e.handleObj.origHandler.apply": 1, - "a.isPropagationStopped": 1, - "e.level": 1, - "a.isImmediatePropagationStopped": 1, - "e.type": 6, - "e.originalEvent": 1, - "e.liveFired": 1, - "f.event.handle.call": 1, - "e.isDefaultPrevented": 2, - ".preventDefault": 1, - "f.removeData": 4, - "i.resolve": 1, - "c.replace": 4, - "f.isNaN": 3, - "i.test": 1, - "f.parseJSON": 2, - "a.navigator": 1, - "a.location": 1, - "e.isReady": 1, - "c.documentElement.doScroll": 2, - "e.ready": 6, - "e.fn.init": 1, - "a.jQuery": 2, - "a.": 2, - "d/": 3, - "d.userAgent": 1, - "C": 4, - "e.fn": 2, - "e.prototype": 1, - "c.body": 4, - "a.charAt": 2, - "i.exec": 1, - "d.ownerDocument": 1, - "n.exec": 1, - "e.isPlainObject": 1, - "e.fn.attr.call": 1, - "k.createElement": 1, - "e.buildFragment": 1, - "j.cacheable": 1, - "e.clone": 1, - "j.fragment": 2, - "e.merge": 3, - "c.getElementById": 1, - "h.id": 1, - "f.find": 2, - "d.jquery": 1, - "e.isFunction": 5, - "f.ready": 1, - "e.makeArray": 1, - "D.call": 4, - "e.isArray": 2, - "C.apply": 1, - "d.prevObject": 1, - "d.context": 2, - "d.selector": 2, - "e.each": 2, - "e.bindReady": 1, - "y.done": 1, - "D.apply": 1, - "e.map": 1, - "e.fn.init.prototype": 1, - "e.extend": 2, - "e.fn.extend": 1, - "": 1, - "jQuery=": 2, - "isReady=": 1, - "y.resolveWith": 1, - "e.fn.trigger": 1, - "e._Deferred": 1, - "c.readyState": 2, - "c.addEventListener": 4, - "a.addEventListener": 4, - "c.attachEvent": 3, - "a.attachEvent": 6, - "a.frameElement": 1, - "Array.isArray": 7, - "isWindow": 2, - "isNaN": 6, - "m.test": 1, - "A.call": 1, - "e.isWindow": 2, - "B.call": 3, - "e.trim": 1, - "a.JSON": 1, - "a.JSON.parse": 2, - "o.test": 1, - "e.error": 2, - "parseXML": 1, - "a.DOMParser": 1, - "DOMParser": 1, - "d.parseFromString": 1, - "ActiveXObject": 1, - "c.async": 4, - "c.loadXML": 1, - "c.documentElement": 4, - "d.nodeName": 4, - "j.test": 3, - "a.execScript": 1, - "a.eval.call": 1, - "c.apply": 2, - "c.call": 3, - "E.call": 1, - "C.call": 1, - "F.call": 1, - "c.length": 8, - "": 1, - "j=": 14, - "h.concat.apply": 1, - "f.concat": 1, - "g.guid": 3, - "e.guid": 3, - "e.access": 1, - "s.exec": 1, - "t.exec": 1, - "u.exec": 1, - "a.indexOf": 2, - "v.exec": 1, - "a.fn.init": 2, - "a.superclass": 1, - "a.fn": 2, - "a.prototype": 1, - "a.fn.constructor": 1, - "a.sub": 1, - "e.fn.init.call": 1, - "a.fn.init.prototype": 1, - "e.uaMatch": 1, - "x.browser": 2, - "e.browser": 1, - "e.browser.version": 1, - "x.version": 1, - "e.browser.webkit": 1, - "e.browser.safari": 1, - "c.removeEventListener": 2, - "c.detachEvent": 1, - "_Deferred": 4, - "done": 10, - "": 1, - "resolveWith": 4, - "shift": 1, - "apply": 8, - "finally": 3, - "resolve": 7, - "isResolved": 3, - "cancel": 6, - "Deferred": 5, - "rejectWith": 2, - "reject": 4, - "isRejected": 2, - "pipe": 2, - "promise": 14, - "h.call": 2, - "g.resolveWith": 3, - "<=1&&a&&f.isFunction(a.promise)?a:f.Deferred();if(d>": 1, - ".promise": 5, - ".then": 3, - "g.reject": 1, - "g.promise": 1, - "f.support": 2, - "f.appendChild": 1, - "a.firstChild.nodeType": 2, - "/top/.test": 2, - "e.getAttribute": 2, - "e.style.opacity": 1, - "e.style.cssFloat": 1, - "h.value": 3, - "g.selected": 1, - "a.className": 1, - "submitBubbles": 3, - "changeBubbles": 3, - "focusinBubbles": 2, - "inlineBlockNeedsLayout": 3, - "shrinkWrapBlocks": 2, - "reliableMarginRight": 2, - "h.checked": 2, - "j.noCloneChecked": 1, - "h.cloneNode": 1, - ".checked": 2, - "f.disabled": 1, - "j.optDisabled": 1, - "g.disabled": 1, - "j.deleteExpando": 1, - "a.fireEvent": 1, - "j.noCloneEvent": 1, - "a.detachEvent": 1, - "h.setAttribute": 2, - "j.radioValue": 1, - "c.createDocumentFragment": 1, - "k.appendChild": 1, - "j.checkClone": 1, - "k.cloneNode": 1, - "a.style.width": 1, - "a.style.paddingLeft": 1, - "visibility": 3, - "l.style": 1, - "l.appendChild": 1, - "j.appendChecked": 1, - "j.boxModel": 1, - "a.style": 8, - "a.style.display": 3, - "a.style.zoom": 1, - "j.inlineBlockNeedsLayout": 1, - "j.shrinkWrapBlocks": 1, - "j.reliableHiddenOffsets": 1, - "c.defaultView": 2, - "c.defaultView.getComputedStyle": 3, - "i.style.width": 1, - "i.style.marginRight": 1, - "j.reliableMarginRight": 1, - "l.innerHTML": 1, - "f.boxModel": 1, - "f.support.boxModel": 4, - "f.fn.jquery": 1, - "f.cache": 5, - "f.acceptData": 4, - "f.uuid": 1, - ".toJSON": 4, - "f.noop": 4, - "f.camelCase": 5, - ".events": 1, - "f.support.deleteExpando": 3, - "f.noData": 2, - "f.fn.extend": 9, - ".attributes": 2, - "g.indexOf": 2, - "g.substring": 1, - "b.triggerHandler": 2, - "_mark": 2, - "_unmark": 3, - "f.makeArray": 5, - "e.push": 3, - "f.queue": 3, - "c.shift": 2, - "c.unshift": 1, - "f.dequeue": 4, - "f.fx": 2, - "f.fx.speeds": 1, - "d.resolveWith": 1, - "f.Deferred": 2, - "f._Deferred": 2, - "l.done": 1, - "d.promise": 1, - "rea": 1, - "autofocus": 1, - "autoplay": 1, - "controls": 1, - "defer": 1, - "open": 2, - "required": 1, - "scoped": 1, - "f.access": 3, - "f.attr": 2, - "f.removeAttr": 3, - "f.prop": 2, - "removeProp": 1, - "f.propFix": 6, - "c.addClass": 1, - "f.trim": 2, - "c.removeClass": 1, - "g.nodeType": 6, - "g.className": 4, - "h.replace": 2, - "d.toggleClass": 1, - "d.attr": 1, - "h.hasClass": 1, - "": 1, - "f.valHooks": 7, - "e.nodeName.toLowerCase": 1, - "c.get": 1, - "e.value": 1, - "e.val": 1, - "f.map": 5, - "this.nodeName.toLowerCase": 1, - "this.type": 3, - "c.set": 1, - "valHooks": 1, - "a.attributes.value": 1, - "a.text": 1, - "a.selectedIndex": 3, - "a.options": 2, - "": 3, - "optDisabled": 1, - "selected=": 1, - "attrFix": 1, - "f.attrFn": 3, - "f.isXMLDoc": 4, - "f.attrFix": 3, - "f.attrHooks": 5, - "t.test": 2, - "d.toLowerCase": 1, - "c.toLowerCase": 4, - "u.test": 1, - "i.set": 1, - "i.get": 1, - "f.support.getSetAttribute": 2, - "a.removeAttributeNode": 1, - "q.test": 1, - "f.support.radioValue": 1, - "c.specified": 1, - "c.value": 1, - "r.test": 1, - "s.test": 1, - "propFix": 1, - "cellpadding": 1, - "contenteditable": 1, - "f.propHooks": 1, - "h.set": 1, - "h.get": 1, - "propHooks": 1, - "f.attrHooks.value": 1, - "v.get": 1, - "f.attrHooks.name": 1, - "f.valHooks.button": 1, - "d.nodeValue": 3, - "f.support.hrefNormalized": 1, - "f.support.style": 1, - "f.attrHooks.style": 1, - "a.style.cssText.toLowerCase": 1, - "f.support.optSelected": 1, - "f.propHooks.selected": 2, - "b.parentNode.selectedIndex": 1, - "f.support.checkOn": 1, - "f.inArray": 4, - "s.": 1, - "f.event": 2, - "d.handler": 1, - "g.handler": 1, - "d.guid": 4, - "f.guid": 3, - "i.events": 2, - "i.handle": 2, - "f.event.triggered": 3, - "f.event.handle.apply": 1, - "k.elem": 2, - "c.split": 2, - "l.indexOf": 1, - "l.split": 1, - "n.shift": 1, - "h.namespace": 2, - "n.slice": 1, - "h.type": 1, - "h.guid": 2, - "f.event.special": 5, - "p.setup": 1, - "p.setup.call": 1, - "p.add": 1, - "p.add.call": 1, - "h.handler.guid": 2, - "o.push": 1, - "f.event.global": 2, - "global": 5, - "s.events": 1, - "c.type": 9, - "c.handler": 1, - "c.charAt": 1, - "f.event.remove": 5, - "h.indexOf": 3, - "h.split": 2, - "m.shift": 1, - "m.slice": 1, - "q.namespace": 1, - "q.handler": 1, - "p.splice": 1, - "": 1, - "elem=": 4, - "customEvent": 1, - "trigger": 4, - "h.slice": 1, - "i.shift": 1, - "i.sort": 1, - "f.event.customEvent": 1, - "f.Event": 2, - "c.exclusive": 2, - "c.namespace": 2, - "i.join": 2, - "c.namespace_re": 1, - "c.preventDefault": 3, - "c.stopPropagation": 1, - "b.events": 4, - "f.event.trigger": 6, - "b.handle.elem": 2, - "c.result": 3, - "c.target": 3, - "c.currentTarget": 2, - "m.apply": 1, - "k.parentNode": 1, - "k.ownerDocument": 1, - "c.target.ownerDocument": 1, - "c.isPropagationStopped": 1, - "c.isDefaultPrevented": 2, - "o._default": 1, - "o._default.call": 1, - "e.ownerDocument": 1, - "f.event.fix": 2, - "a.event": 1, - "Array.prototype.slice.call": 1, - "namespace_re": 1, - "namespace": 1, - "handler=": 1, - "data=": 2, - "handleObj=": 1, - "result=": 1, - "preventDefault": 4, - "stopPropagation": 5, - "isImmediatePropagationStopped": 2, - "fix": 1, - "Event": 3, - "target=": 2, - "relatedTarget=": 1, - "fromElement=": 1, - "pageX=": 2, - "documentElement": 2, - "scrollLeft": 2, - "clientLeft": 2, - "pageY=": 1, - "scrollTop": 2, - "clientTop": 2, - "which=": 3, - "metaKey=": 1, - "1e8": 1, - "special": 3, - "setup": 5, - "teardown": 6, - "origType": 2, - "beforeunload": 1, - "onbeforeunload=": 3, - "removeEvent=": 1, - "removeEventListener": 3, - "detachEvent": 2, - "Event=": 1, - "originalEvent=": 1, - "type=": 5, - "isDefaultPrevented=": 2, - "defaultPrevented": 1, - "returnValue=": 2, - "getPreventDefault": 2, - "timeStamp=": 1, - "prototype=": 2, - "originalEvent": 2, - "isPropagationStopped=": 1, - "cancelBubble=": 1, - "stopImmediatePropagation": 1, - "isImmediatePropagationStopped=": 1, - "isDefaultPrevented": 1, - "isPropagationStopped": 1, - "G=": 1, - "H=": 1, - "submit=": 1, - "specialSubmit": 3, - "closest": 3, - "keyCode=": 1, - "J=": 1, - "selectedIndex": 1, - "a.selected": 1, - "z.test": 3, - "d.readOnly": 1, - "c.liveFired": 1, - "f.event.special.change": 1, - "filters": 1, - "beforedeactivate": 1, - "K.call": 2, - "a.keyCode": 2, - "beforeactivate": 1, - "f.event.add": 2, - "f.event.special.change.filters": 1, - "I.focus": 1, - "I.beforeactivate": 1, - "f.support.focusinBubbles": 1, - "c.originalEvent": 1, - "a.preventDefault": 3, - "f.fn": 9, - "e.apply": 1, - "this.one": 1, - "unbind": 2, - "this.unbind": 2, - "delegate": 1, - "this.live": 1, - "undelegate": 1, - "this.die": 1, - "triggerHandler": 1, - "toggle": 10, - ".guid": 1, - "this.click": 1, - "this.mouseenter": 1, - ".mouseleave": 1, - "g.charAt": 1, - "n.unbind": 1, - "y.exec": 1, - "a.push": 2, - "n.length": 1, - "": 1, - "this.bind": 2, - "": 2, - "sizcache=": 4, - "sizset": 2, - "sizset=": 2, - "toLowerCase": 3, - "W/": 2, - "d.nodeType": 5, - "k.isXML": 4, - "a.exec": 2, - "x.push": 1, - "x.length": 8, - "m.exec": 1, - "l.relative": 6, - "x.shift": 4, - "l.match.ID.test": 2, - "q.expr": 4, - "q.set": 4, - "x.pop": 4, - "d.parentNode": 4, - "e.call": 1, - "f.push.apply": 1, - "k.contains": 5, - "a.sort": 1, - "": 1, - "matches=": 1, - "matchesSelector=": 1, - "l.order.length": 1, - "l.order": 1, - "l.leftMatch": 1, - "j.substr": 1, - "": 1, - "__sizzle__": 1, - "sizzle": 1, - "l.match.PSEUDO.test": 1, - "a.document.nodeType": 1, - "a.getElementsByClassName": 3, - "a.lastChild.className": 1, - "l.order.splice": 1, - "l.find.CLASS": 1, - "b.getElementsByClassName": 2, - "c.documentElement.contains": 1, - "a.contains": 2, - "c.documentElement.compareDocumentPosition": 1, - "a.compareDocumentPosition": 1, - "a.ownerDocument": 1, - ".documentElement": 1, - "b.nodeName": 2, - "l.match.PSEUDO.exec": 1, - "l.match.PSEUDO": 1, - "f.expr": 4, - "k.selectors": 1, - "f.expr.filters": 3, - "f.unique": 4, - "f.text": 2, - "k.getText": 1, - "/Until": 1, - "parents": 2, - "prevUntil": 2, - "prevAll": 2, - "U": 1, - "f.expr.match.POS": 1, - "V": 2, - "contents": 4, - "next": 9, - "prev": 2, - ".filter": 2, - "": 1, - "e.splice": 1, - "this.filter": 2, - "": 1, - "": 1, - "index": 5, - ".is": 2, - "c.push": 3, - "g.parentNode": 2, - "U.test": 1, - "": 1, - "f.find.matchesSelector": 2, - "g.ownerDocument": 1, - "this.parent": 2, - ".children": 1, - "a.jquery": 2, - "f.merge": 2, - "this.get": 1, - "andSelf": 1, - "this.add": 1, - "f.dir": 6, - "parentsUntil": 1, - "f.nth": 2, - "nextAll": 1, - "nextUntil": 1, - "siblings": 1, - "f.sibling": 2, - "a.parentNode.firstChild": 1, - "a.contentDocument": 1, - "a.contentWindow.document": 1, - "a.childNodes": 1, - "T.call": 1, - "P.test": 1, - "f.filter": 2, - "R.test": 1, - "Q.test": 1, - "e.reverse": 1, - "g.join": 1, - "f.find.matches": 1, - "dir": 1, - "sibling": 1, - "a.nextSibling": 1, - "<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:]+)[^>": 1, - "tbody/i": 1, - "bc": 1, - "bd": 1, - "/checked": 1, - "s*.checked.": 1, - "java": 1, - "ecma": 1, - "script/i": 1, - "CDATA": 1, - "bg": 3, - "legend": 1, - "col": 7, - "_default": 5, - "bg.optgroup": 1, - "bg.option": 1, - "bg.tbody": 1, - "bg.tfoot": 1, - "bg.colgroup": 1, - "bg.caption": 1, - "bg.thead": 1, - "bg.th": 1, - "bg.td": 1, - "f.support.htmlSerialize": 1, - "bg._default": 2, - "c.text": 2, - "this.empty": 3, - ".append": 6, - ".createTextNode": 1, - "wrapAll": 1, - ".wrapAll": 2, - ".eq": 1, - ".clone": 1, - "b.map": 1, - "wrapInner": 1, - ".wrapInner": 1, - "b.contents": 1, - "c.wrapAll": 1, - "b.append": 1, - "unwrap": 1, - ".replaceWith": 1, - "this.childNodes": 1, - ".end": 1, - "append": 1, - "this.domManip": 4, - "this.appendChild": 1, - "prepend": 1, - "this.insertBefore": 1, - "this.firstChild": 1, - "this.parentNode.insertBefore": 2, - "a.push.apply": 2, - "this.nextSibling": 2, - ".toArray": 1, - "f.cleanData": 4, - "d.parentNode.removeChild": 1, - "b.getElementsByTagName": 1, - "this.map": 3, - "f.clone": 2, - ".innerHTML.replace": 1, - "bc.test": 2, - "f.support.leadingWhitespace": 2, - "Z.test": 2, - "_.exec": 2, - ".getElementsByTagName": 2, - "c.html": 3, - "replaceWith": 1, - "c.replaceWith": 1, - ".detach": 1, - "this.parentNode": 1, - ".before": 1, - "detach": 1, - "this.remove": 1, - "domManip": 1, - "f.support.checkClone": 2, - "bd.test": 2, - ".domManip": 1, - "g.html": 1, - "g.domManip": 1, - "j.parentNode": 1, - "f.support.parentNode": 1, - "i.nodeType": 1, - "i.childNodes.length": 1, - "f.buildFragment": 2, - "e.fragment": 1, - "h.childNodes.length": 1, - "h.firstChild": 2, - "": 1, - "k.length": 2, - ".charAt": 1, - "f.fragments": 3, - "i.createDocumentFragment": 1, - "f.clean": 1, - "appendTo": 1, - "prependTo": 1, - "insertBefore": 1, - "insertAfter": 1, - "replaceAll": 1, - "g.childNodes.length": 1, - "this.clone": 1, - "d.concat": 1, - "e.selector": 1, - "f.support.noCloneEvent": 1, - "f.support.noCloneChecked": 1, - "b.createElement": 2, - "b.createTextNode": 2, - "k.replace": 2, - "o.innerHTML": 1, - "o.lastChild": 1, - "f.support.tbody": 1, - "ba.test": 1, - "o.firstChild": 2, - "o.firstChild.childNodes": 1, - "o.childNodes": 2, - "q.length": 1, - ".childNodes.length": 1, - ".parentNode.removeChild": 2, - "o.insertBefore": 1, - "Z.exec": 1, - "f.support.appendChecked": 1, - "k.nodeType": 1, - "h.push": 1, - "be.test": 1, - ".type.toLowerCase": 1, - "h.splice.apply": 1, - "cleanData": 1, - "j.nodeName": 1, - "j.nodeName.toLowerCase": 1, - "f.removeEvent": 1, - "b.handle": 2, - "j.removeAttribute": 2, - "bo": 2, - "/alpha": 1, - "bp": 1, - "/opacity": 1, - "bq": 2, - "bs": 2, - "bv": 2, - "de": 1, - "bw": 2, - "bz": 7, - "bA": 3, - "bB": 5, - "bC": 2, - "f.fn.css": 1, - "f.style": 4, - "cssHooks": 1, - "cssNumber": 3, - "zIndex": 1, - "fontWeight": 1, - "zoom": 1, - "lineHeight": 1, - "widows": 1, - "orphans": 1, - "cssProps": 1, - "f.support.cssFloat": 1, - "f.cssHooks": 3, - "f.cssProps": 2, - "k.get": 1, - "bu.test": 1, - "d.replace": 1, - "f.cssNumber": 1, - "k.set": 1, - "g.get": 1, - "swap": 1, - "camelCase": 3, - "f.curCSS": 1, - "f.swap": 2, - "<0||e==null){e=a.style[b];return>": 1, - "0px": 1, - "f.support.opacity": 1, - "f.cssHooks.opacity": 1, - "bp.test": 1, - "a.currentStyle": 4, - "a.currentStyle.filter": 1, - "a.style.filter": 1, - "RegExp.": 1, - "/100": 2, - "c.zoom": 1, - "b*100": 1, - "d.filter": 1, - "c.filter": 2, - "bo.test": 1, - "g.replace": 1, - "f.support.reliableMarginRight": 1, - "f.cssHooks.marginRight": 1, - "a.style.marginRight": 1, - "a.ownerDocument.defaultView": 1, - "e.getComputedStyle": 1, - "g.getPropertyValue": 1, - "a.ownerDocument.documentElement": 1, - "c.documentElement.currentStyle": 1, - "a.runtimeStyle": 2, - "bs.test": 1, - "bt.test": 1, - "f.left": 3, - "a.runtimeStyle.left": 2, - "a.currentStyle.left": 1, - "f.pixelLeft": 1, - "f.expr.filters.hidden": 2, - "f.support.reliableHiddenOffsets": 1, - "f.expr.filters.visible": 1, - "bE": 2, - "bF": 1, - "bG": 3, - "n/g": 1, - "bH": 2, - "/#.*": 1, - "bI": 1, - "/mg": 1, - "bJ": 1, - "date": 1, - "datetime": 1, - "month": 1, - "time": 1, - "week": 1, - "bK": 1, - "about": 1, - "storage": 1, - "extension": 1, - "widget": 1, - "bL": 1, - "GET": 1, - "HEAD": 3, - "bM": 2, - "bN": 2, - "bO": 2, - "<\\/script>": 2, - "bP": 1, - "bR": 2, - "*/": 2, - "bS": 1, - "bT": 2, - "f.fn.load": 1, - "bV": 3, - "bW": 5, - "bX": 8, - "e.href": 1, - "bY": 1, - "bW.href": 2, - "bS.exec": 1, - "bW.toLowerCase": 1, - "bT.apply": 1, - "a.slice": 2, - "f.param": 2, - "f.ajaxSettings.traditional": 2, - "complete": 6, - "a.responseText": 1, - "a.isResolved": 1, - "a.done": 1, - "i.html": 1, - "i.each": 1, - "serialize": 1, - "this.serializeArray": 1, - "serializeArray": 1, - "this.elements": 2, - "this.disabled": 1, - "this.checked": 1, - "bP.test": 1, - "bJ.test": 1, - ".map": 1, - "b.name": 2, - "success": 2, - "getScript": 1, - "f.get": 2, - "getJSON": 1, - "ajaxSetup": 1, - "f.ajaxSettings": 4, - "ajaxSettings": 1, - "isLocal": 1, - "bK.test": 1, - "contentType": 4, - "accepts": 5, - "xml": 3, - "json": 2, - "/xml/": 1, - "/html/": 1, - "/json/": 1, - "responseFields": 1, - "converters": 2, - "a.String": 1, - "f.parseXML": 1, - "ajaxPrefilter": 1, - "ajaxTransport": 1, - "ajax": 2, - "v.readyState": 1, - "d.ifModified": 1, - "v.getResponseHeader": 2, - "f.lastModified": 1, - "f.etag": 1, - "v.status": 1, - "v.statusText": 1, - "h.resolveWith": 1, - "h.rejectWith": 1, - "v.statusCode": 2, - "g.trigger": 2, - "i.resolveWith": 1, - "f.active": 1, - "f.ajaxSetup": 3, - "d.statusCode": 1, - "readyState": 1, - "setRequestHeader": 6, - "getAllResponseHeaders": 1, - "getResponseHeader": 1, - "bI.exec": 1, - "overrideMimeType": 1, - "d.mimeType": 1, - "abort": 4, - "p.abort": 1, - "h.promise": 1, - "v.success": 1, - "v.done": 1, - "v.error": 1, - "v.fail": 1, - "v.complete": 1, - "i.done": 1, - "<2)for(b>": 1, - "status": 3, - "url=": 1, - "dataTypes=": 1, - "crossDomain=": 2, - "80": 2, - "443": 2, - "traditional": 1, - "toUpperCase": 1, - "hasContent=": 1, - "active": 2, - "ajaxStart": 1, - "hasContent": 2, - "cache=": 1, - "x=": 1, - "1_=": 1, - "_=": 1, - "Content": 1, - "Type": 1, - "ifModified": 1, - "lastModified": 3, - "Modified": 1, - "etag": 3, - "None": 1, - "Accept": 1, - "dataTypes": 4, - "q=": 1, - "01": 1, - "headers": 41, - "beforeSend": 2, - "No": 1, - "Transport": 1, - "readyState=": 1, - "ajaxSend": 1, - "timeout": 2, - "v.abort": 1, - "d.timeout": 1, - "p.send": 1, - "encodeURIComponent": 2, - "f.isPlainObject": 1, - "d.join": 1, - "cc": 2, - "cd": 3, - "jsonp": 1, - "jsonpCallback": 1, - "f.ajaxPrefilter": 2, - "b.contentType": 1, - "b.data": 5, - "b.dataTypes": 2, - "b.jsonp": 3, - "cd.test": 2, - "b.url": 4, - "b.jsonpCallback": 4, - "d.always": 1, - "b.converters": 1, - "/javascript": 1, - "ecmascript/": 1, - "a.cache": 2, - "a.crossDomain": 2, - "a.global": 1, - "f.ajaxTransport": 2, - "c.head": 1, - "c.getElementsByTagName": 1, - "send": 2, - "d.async": 1, - "a.scriptCharset": 2, - "d.charset": 1, - "d.src": 1, - "a.url": 1, - "d.onload": 3, - "d.onreadystatechange": 2, - "d.readyState": 2, - "/loaded": 1, - "complete/.test": 1, - "e.removeChild": 1, - "e.insertBefore": 1, - "e.firstChild": 1, - "cg": 7, - "f.ajaxSettings.xhr": 2, - "this.isLocal": 1, - "cors": 1, - "f.support.ajax": 1, - "c.crossDomain": 3, - "f.support.cors": 1, - "c.xhr": 1, - "c.username": 2, - "h.open": 2, - "c.url": 2, - "c.password": 1, - "c.xhrFields": 3, - "c.mimeType": 2, - "h.overrideMimeType": 2, - "h.setRequestHeader": 1, - "h.send": 1, - "c.hasContent": 1, - "h.readyState": 3, - "h.onreadystatechange": 2, - "h.abort": 1, - "h.status": 1, - "h.getAllResponseHeaders": 1, - "h.responseXML": 1, - "n.documentElement": 1, - "m.xml": 1, - "m.text": 2, - "h.responseText": 1, - "h.statusText": 1, - "c.isLocal": 1, - ".unload": 1, - "cm": 2, - "show": 10, - "hide": 8, - "cn": 1, - "co": 5, - "cp": 1, - "a.webkitRequestAnimationFrame": 1, - "a.mozRequestAnimationFrame": 1, - "a.oRequestAnimationFrame": 1, - "this.animate": 2, - "d.style": 3, - ".style": 1, - "": 1, - "_toggle": 2, - "animate": 4, - "fadeTo": 1, - "queue=": 2, - "animatedProperties=": 1, - "animatedProperties": 2, - "specialEasing": 2, - "easing": 3, - "swing": 2, - "overflow=": 2, - "overflow": 2, - "overflowX": 1, - "overflowY": 1, - "display=": 3, - "zoom=": 1, - "fx": 10, - "m=": 2, - "cur": 6, - "custom": 5, - "timers": 3, - "slideDown": 1, - "slideUp": 1, - "slideToggle": 1, - "fadeIn": 1, - "fadeOut": 1, - "fadeToggle": 1, - "duration": 4, - "duration=": 2, - "off": 1, - "speeds": 4, - "old=": 1, - "complete=": 1, - "old": 2, - "linear": 1, - "cos": 1, - "options=": 1, - "prop=": 3, - "orig=": 1, - "orig": 3, - "step": 7, - "startTime=": 1, - "start=": 1, - "end=": 1, - "unit=": 1, - "unit": 1, - "now=": 1, - "pos=": 1, - "state=": 1, - "co=": 2, - "tick": 3, - "show=": 1, - "hide=": 1, - "e.duration": 3, - "this.startTime": 2, - "this.now": 3, - "this.end": 2, - "this.pos": 4, - "this.state": 3, - "this.update": 2, - "e.animatedProperties": 5, - "this.prop": 2, - "e.overflow": 2, - "f.support.shrinkWrapBlocks": 1, - "e.hide": 2, - "e.show": 1, - "e.orig": 1, - "e.complete.call": 1, - "Infinity": 1, - "h/e.duration": 1, - "f.easing": 1, - "this.start": 2, - "*this.pos": 1, - "f.timers": 2, - "a.splice": 1, - "f.fx.stop": 1, - "slow": 1, - "fast": 1, - "a.elem": 2, - "a.now": 4, - "a.elem.style": 3, - "a.prop": 5, - "a.unit": 1, - "f.expr.filters.animated": 1, - "b.elem": 1, - "cw": 1, - "able": 1, - "f.fn.offset": 2, - "f.offset.setOffset": 2, - "b.ownerDocument.body": 2, - "f.offset.bodyOffset": 2, - "b.getBoundingClientRect": 1, - "e.documentElement": 4, - "c.top": 4, - "c.left": 4, - "e.body": 3, - "g.clientTop": 1, - "h.clientTop": 1, - "g.clientLeft": 1, - "h.clientLeft": 1, - "i.pageYOffset": 1, - "g.scrollTop": 1, - "h.scrollTop": 2, - "i.pageXOffset": 1, - "g.scrollLeft": 1, - "h.scrollLeft": 2, - "f.offset.initialize": 3, - "b.offsetParent": 2, - "g.documentElement": 1, - "g.body": 1, - "g.defaultView": 1, - "j.getComputedStyle": 2, - "b.currentStyle": 2, - "b.offsetTop": 2, - "b.offsetLeft": 2, - "f.offset.supportsFixedPosition": 2, - "k.position": 4, - "b.scrollTop": 1, - "b.scrollLeft": 1, - "f.offset.doesNotAddBorder": 1, - "f.offset.doesAddBorderForTableAndCells": 1, - "cw.test": 1, - "c.borderTopWidth": 2, - "c.borderLeftWidth": 2, - "f.offset.subtractsBorderForOverflowNotVisible": 1, - "c.overflow": 1, - "i.offsetTop": 1, - "i.offsetLeft": 1, - "i.scrollTop": 1, - "i.scrollLeft": 1, - "f.offset": 1, - "b.style": 1, - "d.nextSibling.firstChild.firstChild": 1, - "this.doesNotAddBorder": 1, - "e.offsetTop": 4, - "this.doesAddBorderForTableAndCells": 1, - "h.offsetTop": 1, - "e.style.position": 2, - "e.style.top": 2, - "this.supportsFixedPosition": 1, - "d.style.overflow": 1, - "d.style.position": 1, - "this.subtractsBorderForOverflowNotVisible": 1, - "this.doesNotIncludeMarginInBodyOffset": 1, - "a.offsetTop": 2, - "bodyOffset": 1, - "a.offsetLeft": 1, - "f.offset.doesNotIncludeMarginInBodyOffset": 1, - "setOffset": 1, - "a.style.position": 1, - "e.offset": 1, - "e.position": 1, - "l.top": 1, - "l.left": 1, - "b.top": 2, - "k.top": 1, - "g.top": 1, - "b.left": 2, - "k.left": 1, - "g.left": 1, - "b.using.call": 1, - "e.css": 1, - "this.offsetParent": 2, - "cx.test": 2, - "b.offset": 1, - "d.top": 2, - "d.left": 2, - "offsetParent": 1, - "a.offsetParent": 1, - "g.document.documentElement": 1, - "g.document.body": 1, - "g.scrollTo": 1, - ".scrollLeft": 1, - ".scrollTop": 1, - "e.document.documentElement": 1, - "e.document.compatMode": 1, - "e.document.body": 1, - "this.css": 1, - "cubes": 4, - "math": 4, - "num": 23, - "opposite": 6, - "race": 4, - "square": 10, - "__slice": 2, - "Math.sqrt": 2, - "cube": 2, - "runners": 6, - "winner": 6, - "__slice.call": 2, - "print": 2, - "elvis": 4, - "_i": 10, - "_len": 6, - "_results": 6, - "_results.push": 2, - "math.cube": 2, - "console.log": 3, "KEYWORDS": 2, "array_to_hash": 11, "RESERVED_WORDS": 2, "KEYWORDS_BEFORE_EXPRESSION": 2, "KEYWORDS_ATOM": 2, "OPERATOR_CHARS": 1, - "characters": 6, "RE_HEX_NUMBER": 1, "RE_OCT_NUMBER": 1, "RE_DEC_NUMBER": 1, @@ -33016,7 +33849,6 @@ "//XXX": 1, "out": 1, "means": 1, - "than": 3, "is_alphanumeric_char": 3, "is_unicode_combining_mark": 2, "UNICODE.non_spacing_mark.test": 1, @@ -33087,7 +33919,6 @@ "read_while": 2, "pred": 2, "parse_error": 3, - "err": 5, "read_num": 1, "prefix": 6, "has_e": 3, @@ -33098,7 +33929,6 @@ "read_escaped_char": 1, "hex_bytes": 3, "digit": 3, - "<<": 4, "read_string": 1, "with_eof_error": 1, "comment1": 1, @@ -33128,13 +33958,11 @@ "<\",>": 1, "<=\",>": 1, "debugger": 2, - "outside": 2, "const": 2, "stat": 1, "Label": 1, "without": 1, "statement": 1, - "inside": 3, "defun": 1, "Name": 1, "Missing": 1, @@ -33170,716 +33998,7 @@ "exports.OPERATORS": 1, "exports.is_alphanumeric_char": 1, "exports.set_logger": 1, - "logger": 2, - "rdigit": 1, - "readyList.resolveWith": 1, - "jQuery._Deferred": 3, - "breaking": 1, - "Promise": 1, - "promiseMethods": 3, - "Static": 1, - "sliceDeferred": 1, - "Create": 1, - "doing": 3, - "flag": 1, - "cancelled": 5, - "f1": 1, - "f2": 1, - "...": 1, - "_fired": 5, - "deferred.done.apply": 2, - "callbacks.push": 1, - "deferred.resolveWith": 5, - "given": 3, - "available": 1, - "#8421": 1, - "callbacks.shift": 1, - "Has": 1, - "resolved": 1, - "Cancel": 1, - "Full": 1, - "fledged": 1, - "two": 1, - "func": 3, - "failDeferred": 1, - "errorDeferred": 1, - "doneCallbacks": 2, - "failCallbacks": 2, - "deferred.done": 2, - ".fail": 2, - ".fail.apply": 1, - "failDeferred.done": 1, - "failDeferred.resolveWith": 1, - "failDeferred.resolve": 1, - "failDeferred.isResolved": 1, - "fnDone": 2, - "fnFail": 2, - "jQuery.Deferred": 1, - "newDefer": 3, - "action": 3, - "returned": 4, - "fn.apply": 1, - "returned.promise": 2, - "newDefer.resolve": 1, - "newDefer.reject": 1, - "provided": 1, - "aspect": 1, - "added": 1, - "promiseMethods.length": 1, - "failDeferred.cancel": 1, - "deferred.cancel": 2, - "Unexpose": 1, - "Call": 1, - "func.call": 1, - "helper": 1, - "firstParam": 6, - "count": 4, - "<=>": 1, - "resolveFunc": 2, - "sliceDeferred.call": 2, - "Strange": 1, - "FF4": 1, - "Values": 1, - "onto": 2, - "sometimes": 1, - ".when": 1, - "Cloning": 2, - "into": 2, - "fresh": 1, - "solves": 1, - "issue": 1, - "deferred.reject": 1, - "deferred.promise": 1, - "jQuery.support": 1, - "bodyStyle": 1, - "Preliminary": 1, - "div.setAttribute": 1, - "automatically": 2, - "inserted": 1, - "insert": 1, - "tables": 1, - "serialized": 3, - "correctly": 1, - "innerHTML": 1, - "This": 3, - "requires": 1, - "wrapper": 1, - "URLs": 1, - "opt.selected": 1, - "setAttribute": 1, - "class.": 1, - "works": 1, - "attrFixes": 1, - "get/setAttribute": 1, - "ie6/7": 1, - "div.className": 1, - "later": 1, - "properly": 2, - "cloned": 1, - "input.checked": 1, - "support.noCloneChecked": 1, - "input.cloneNode": 1, - "selects": 1, - "Internet": 1, - "Explorer": 1, - "div.test": 1, - "support.deleteExpando": 1, - "div.addEventListener": 1, - "div.attachEvent": 2, - "div.fireEvent": 1, - "shouldn": 2, - "GC": 2, - "references": 1, - "across": 1, - "boundary": 1, - "attached": 1, - "occur": 1, - "defining": 1, - "allows": 1, - "shortcut": 1, - "same": 1, - "path": 5, - "Avoid": 1, - "trying": 1, - "since": 1, - "ends": 1, - "jQuery.uuid": 1, - "TODO": 2, - "hack": 2, - "ONLY.": 2, - "Avoids": 2, - "exposing": 2, - "metadata": 2, - "plain": 2, - "jQuery.noop": 2, - "An": 1, - "key/value": 1, - "pair": 1, - "shallow": 1, - "copied": 1, - "existing": 1, - "Internal": 1, - "separate": 1, - "destroy": 1, - "had": 1, - "thing": 2, - "internalCache": 3, - "Browsers": 1, - "deletion": 1, - "refuse": 1, - "browsers": 2, - "faster": 1, - "iterating": 1, - "persist": 1, - "existed": 1, - "jQuery.isNaN": 1, - "Normalize": 1, - "jQuery.attrFix": 2, - "formHook": 3, - "forms": 1, - "rinvalidChar.test": 1, - "jQuery.support.getSetAttribute": 1, - "elem.removeAttributeNode": 1, - "elem.getAttributeNode": 1, - "bubbling": 1, - "live.": 2, - "hasDuplicate": 1, - "baseHasDuplicate": 2, - "rBackslash": 1, - "rNonWord": 1, - "Sizzle": 1, - "results": 4, - "seed": 1, - "origContext": 1, - "context.nodeType": 2, - "checkSet": 1, - "extra": 1, - "pop": 1, - "prune": 1, - "contextXML": 1, - "Sizzle.isXML": 1, - "soFar": 1, - "Reset": 1, - "util": 1, - "require": 9, - "net": 1, - "stream": 1, - "EventEmitter": 3, - ".EventEmitter": 1, - "FreeList": 2, - ".FreeList": 1, - "HTTPParser": 2, - "process.binding": 1, - ".HTTPParser": 1, - "assert": 8, - ".ok": 1, - "END_OF_FILE": 3, - "debug": 15, - "process.env.NODE_DEBUG": 2, - "/http/.test": 1, - "console.error": 3, - "parserOnHeaders": 2, - "this.maxHeaderPairs": 2, - "this._headers.length": 1, - "this._headers": 13, - "this._headers.concat": 1, - "this._url": 1, - "parserOnHeadersComplete": 2, - "parser": 27, - "info.headers": 1, - "info.url": 1, - "parser._headers": 6, - "parser._url": 4, - "parser.incoming": 9, - "IncomingMessage": 4, - "parser.socket": 4, - "parser.incoming.httpVersionMajor": 1, - "info.versionMajor": 2, - "parser.incoming.httpVersionMinor": 1, - "info.versionMinor": 2, - "parser.incoming.httpVersion": 1, - "parser.incoming.url": 1, - "headers.length": 2, - "parser.maxHeaderPairs": 4, - "parser.incoming._addHeaderLine": 2, - "info.method": 2, - "parser.incoming.method": 1, - "parser.incoming.statusCode": 2, - "info.statusCode": 1, - "parser.incoming.upgrade": 4, - "info.upgrade": 2, - "skipBody": 3, - "response": 3, - "CONNECT": 1, - "parser.onIncoming": 3, - "info.shouldKeepAlive": 1, - "parserOnBody": 2, - "b.slice": 1, - "parser.incoming._paused": 2, - "parser.incoming._pendings.length": 2, - "parser.incoming._pendings.push": 2, - "parser.incoming._emitData": 1, - "parserOnMessageComplete": 2, - "parser.incoming.complete": 2, - "parser.incoming.readable": 1, - "parser.incoming._emitEnd": 1, - "parser.socket.readable": 1, - "parser.socket.resume": 1, - "parsers": 2, - "HTTPParser.REQUEST": 2, - "parser.onHeaders": 1, - "parser.onHeadersComplete": 1, - "parser.onBody": 1, - "parser.onMessageComplete": 1, - "exports.parsers": 1, - "CRLF": 13, - "STATUS_CODES": 2, - "exports.STATUS_CODES": 1, - "RFC": 16, - "obsoleted": 1, - "connectionExpression": 1, - "/Connection/i": 1, - "transferEncodingExpression": 1, - "/Transfer": 1, - "Encoding/i": 1, - "closeExpression": 1, - "/close/i": 1, - "chunkExpression": 1, - "/chunk/i": 1, - "contentLengthExpression": 1, - "/Content": 1, - "Length/i": 1, - "dateExpression": 1, - "/Date/i": 1, - "expectExpression": 1, - "/Expect/i": 1, - "continueExpression": 1, - "continue/i": 1, - "dateCache": 5, - "utcDate": 2, - "d.toUTCString": 1, - "d.getMilliseconds": 1, - "socket": 26, - "stream.Stream.call": 2, - "this.socket": 10, - "this.connection": 8, - "this.httpVersion": 1, - "this.complete": 2, - "this.headers": 2, - "this.trailers": 2, - "this.readable": 1, - "this._paused": 3, - "this._pendings": 1, - "this._endEmitted": 3, - "this.url": 1, - "this.method": 2, - "this.statusCode": 3, - "this.client": 1, - "util.inherits": 7, - "stream.Stream": 2, - "exports.IncomingMessage": 1, - "IncomingMessage.prototype.destroy": 1, - "this.socket.destroy": 3, - "IncomingMessage.prototype.setEncoding": 1, - "StringDecoder": 2, - ".StringDecoder": 1, - "lazy": 1, - "this._decoder": 2, - "IncomingMessage.prototype.pause": 1, - "this.socket.pause": 1, - "IncomingMessage.prototype.resume": 1, - "this.socket.resume": 1, - "this._emitPending": 1, - "IncomingMessage.prototype._emitPending": 1, - "this._pendings.length": 1, - "process.nextTick": 1, - "self._paused": 1, - "self._pendings.length": 2, - "chunk": 14, - "self._pendings.shift": 1, - "Buffer.isBuffer": 2, - "self._emitData": 1, - "self.readable": 1, - "self._emitEnd": 1, - "IncomingMessage.prototype._emitData": 1, - "this._decoder.write": 1, - "string.length": 1, - "this.emit": 5, - "IncomingMessage.prototype._emitEnd": 1, - "IncomingMessage.prototype._addHeaderLine": 1, - "field": 36, - "dest": 12, - "field.toLowerCase": 1, - ".push": 3, - "field.slice": 1, - "OutgoingMessage": 5, - "this.output": 3, - "this.outputEncodings": 2, - "this.writable": 1, - "this._last": 3, - "this.chunkedEncoding": 6, - "this.shouldKeepAlive": 4, - "this.useChunkedEncodingByDefault": 4, - "this.sendDate": 3, - "this._hasBody": 6, - "this._trailer": 5, - "this.finished": 4, - "exports.OutgoingMessage": 1, - "OutgoingMessage.prototype.destroy": 1, - "OutgoingMessage.prototype._send": 1, - "this._headerSent": 5, - "this._header": 10, - "this.output.unshift": 1, - "this.outputEncodings.unshift": 1, - "this._writeRaw": 2, - "OutgoingMessage.prototype._writeRaw": 1, - "data.length": 3, - "this.connection._httpMessage": 3, - "this.connection.writable": 3, - "this.output.length": 5, - "this._buffer": 2, - "this.output.shift": 2, - "this.outputEncodings.shift": 2, - "this.connection.write": 4, - "OutgoingMessage.prototype._buffer": 1, - "this.output.push": 2, - "this.outputEncodings.push": 2, - "lastEncoding": 2, - "lastData": 2, - "data.constructor": 1, - "lastData.constructor": 1, - "OutgoingMessage.prototype._storeHeader": 1, - "firstLine": 2, - "sentConnectionHeader": 3, - "sentContentLengthHeader": 4, - "sentTransferEncodingHeader": 3, - "sentDateHeader": 3, - "sentExpect": 3, - "messageHeader": 7, - "store": 3, - "connectionExpression.test": 1, - "closeExpression.test": 1, - "self._last": 4, - "self.shouldKeepAlive": 4, - "transferEncodingExpression.test": 1, - "chunkExpression.test": 1, - "self.chunkedEncoding": 1, - "contentLengthExpression.test": 1, - "dateExpression.test": 1, - "expectExpression.test": 1, - "Object.keys": 5, - "keys.length": 5, - "value.length": 1, - "shouldSendKeepAlive": 2, - "this.agent": 2, - "this._send": 8, - "OutgoingMessage.prototype.setHeader": 1, - "this._headerNames": 5, - "OutgoingMessage.prototype.getHeader": 1, - "OutgoingMessage.prototype.removeHeader": 1, - "OutgoingMessage.prototype._renderHeaders": 1, - "OutgoingMessage.prototype.write": 1, - "this._implicitHeader": 2, - "chunk.length": 2, - "Buffer.byteLength": 2, - "len.toString": 2, - "OutgoingMessage.prototype.addTrailers": 1, - "OutgoingMessage.prototype.end": 1, - "hot": 3, - "this.write": 1, - "chunk.": 1, - "this._finish": 2, - "OutgoingMessage.prototype._finish": 1, - "ServerResponse": 5, - "DTRACE_HTTP_SERVER_RESPONSE": 1, - "ClientRequest": 6, - "DTRACE_HTTP_CLIENT_REQUEST": 1, - "OutgoingMessage.prototype._flush": 1, - "this.socket.writable": 2, - "XXX": 1, - "Necessary": 1, - "this.socket.write": 1, - "req": 32, - "OutgoingMessage.call": 2, - "req.method": 5, - "req.httpVersionMajor": 2, - "req.httpVersionMinor": 2, - "exports.ServerResponse": 1, - "ServerResponse.prototype.statusCode": 1, - "onServerResponseClose": 3, - "this._httpMessage.emit": 2, - "ServerResponse.prototype.assignSocket": 1, - "socket._httpMessage": 9, - "socket.on": 2, - "this._flush": 1, - "ServerResponse.prototype.detachSocket": 1, - "socket.removeListener": 5, - "ServerResponse.prototype.writeContinue": 1, - "this._sent100": 2, - "ServerResponse.prototype._implicitHeader": 1, - "this.writeHead": 1, - "ServerResponse.prototype.writeHead": 1, - "statusCode": 7, - "reasonPhrase": 4, - "headerIndex": 4, - "this._renderHeaders": 3, - "obj.length": 1, - "obj.push": 1, - "statusLine": 2, - "statusCode.toString": 1, - "this._expect_continue": 1, - "this._storeHeader": 2, - "ServerResponse.prototype.writeHeader": 1, - "this.writeHead.apply": 1, - "Agent": 5, - "self.options": 2, - "self.requests": 6, - "self.sockets": 3, - "self.maxSockets": 1, - "self.options.maxSockets": 1, - "Agent.defaultMaxSockets": 2, - "self.on": 1, - "port": 29, - "localAddress": 15, - ".shift": 1, - ".onSocket": 1, - "socket.destroy": 10, - "self.createConnection": 2, - "net.createConnection": 3, - "exports.Agent": 1, - "Agent.prototype.defaultPort": 1, - "Agent.prototype.addRequest": 1, - "this.sockets": 9, - "this.maxSockets": 1, - "req.onSocket": 1, - "this.createSocket": 2, - "this.requests": 5, - "Agent.prototype.createSocket": 1, - "util._extend": 1, - "options.port": 4, - "options.host": 4, - "options.localAddress": 3, - "onFree": 3, - "self.emit": 9, - "s.on": 4, - "onClose": 3, - "self.removeSocket": 2, - "onRemove": 3, - "s.removeListener": 3, - "Agent.prototype.removeSocket": 1, - ".emit": 1, - "globalAgent": 3, - "exports.globalAgent": 1, - "self.agent": 3, - "options.agent": 3, - "defaultPort": 3, - "options.defaultPort": 1, - "options.hostname": 1, - "options.setHost": 1, - "setHost": 2, - "self.socketPath": 4, - "options.socketPath": 1, - "self.method": 3, - "options.method": 2, - "self.path": 3, - "options.path": 2, - "self.once": 2, - "options.headers": 7, - "self.setHeader": 1, - "this.getHeader": 2, - "hostHeader": 3, - "this.setHeader": 2, - "options.auth": 2, - "//basic": 1, - "auth": 1, - "Buffer": 1, - "self.useChunkedEncodingByDefault": 2, - "self._storeHeader": 2, - "self.getHeader": 1, - "self._renderHeaders": 1, - "options.createConnection": 4, - "self.onSocket": 3, - "self.agent.addRequest": 1, - "conn": 3, - "self._deferToConnect": 1, - "self._flush": 1, - "exports.ClientRequest": 1, - "ClientRequest.prototype._implicitHeader": 1, - "this.path": 1, - "ClientRequest.prototype.abort": 1, - "this._deferToConnect": 3, - "createHangUpError": 3, - "error.code": 1, - "freeParser": 9, - "parser.socket.onend": 1, - "parser.socket.ondata": 1, - "parser.socket.parser": 1, - "parsers.free": 1, - "req.parser": 1, - "socketCloseListener": 2, - "socket.parser": 3, - "req.emit": 8, - "req.res": 8, - "req.res.readable": 1, - "req.res.emit": 1, - "res": 14, - "req.res._emitPending": 1, - "res._emitEnd": 1, - "res.emit": 1, - "req._hadError": 3, - "parser.finish": 6, - "socketErrorListener": 2, - "err.message": 1, - "err.stack": 1, - "socketOnEnd": 1, - "this._httpMessage": 3, - "this.parser": 2, - "socketOnData": 1, - "parser.execute": 2, - "bytesParsed": 4, - "socket.ondata": 3, - "socket.onend": 3, - "bodyHead": 4, - "d.slice": 2, - "req.listeners": 1, - "req.upgradeOrConnect": 1, - "socket.emit": 1, - "parserOnIncomingClient": 1, - "shouldKeepAlive": 4, - "res.upgrade": 1, - "isHeadResponse": 2, - "res.statusCode": 1, - "Clear": 1, - "upgraded": 1, - "WebSockets": 1, - "AGENT": 2, - "socket.destroySoon": 2, - "keep": 1, - "alive": 1, - "close": 2, - "free": 1, - "important": 1, - "promisy": 1, - "onSocket": 3, - "self.socket.writable": 1, - "self.socket": 5, - "arguments_": 2, - "self.socket.once": 1, - "ClientRequest.prototype.setTimeout": 1, - "msecs": 4, - "this.once": 2, - "emitTimeout": 4, - "this.socket.setTimeout": 1, - "this.socket.once": 1, - "this.setTimeout": 3, - "sock": 1, - "ClientRequest.prototype.setNoDelay": 1, - "ClientRequest.prototype.setSocketKeepAlive": 1, - "ClientRequest.prototype.clearTimeout": 1, - "exports.request": 2, - "url.parse": 1, - "options.protocol": 3, - "exports.get": 1, - "req.end": 1, - "ondrain": 3, - "httpSocketSetup": 2, - "Server": 6, - "requestListener": 6, - "net.Server.call": 1, - "allowHalfOpen": 1, - "this.addListener": 2, - "this.httpAllowHalfOpen": 1, - "connectionListener": 3, - "net.Server": 1, - "exports.Server": 1, - "exports.createServer": 1, - "outgoing": 2, - "incoming": 2, - "abortIncoming": 3, - "incoming.length": 2, - "incoming.shift": 2, - "serverSocketCloseListener": 3, - "socket.setTimeout": 1, - "minute": 1, - "socket.once": 1, - "parsers.alloc": 1, - "parser.reinitialize": 1, - "this.maxHeadersCount": 2, - "socket.addListener": 2, - "self.listeners": 2, - "req.socket": 1, - "self.httpAllowHalfOpen": 1, - "socket.writable": 2, - "socket.end": 2, - "outgoing.length": 2, - "._last": 1, - "socket._httpMessage._last": 1, - "incoming.push": 1, - "res.shouldKeepAlive": 1, - "DTRACE_HTTP_SERVER_REQUEST": 1, - "outgoing.push": 1, - "res.assignSocket": 1, - "res.on": 1, - "res.detachSocket": 1, - "res._last": 1, - "outgoing.shift": 1, - "m.assignSocket": 1, - "req.headers": 2, - "continueExpression.test": 1, - "res._expect_continue": 1, - "res.writeContinue": 1, - "response.": 1, - "exports._connectionListener": 1, - "Client": 6, - "this.host": 1, - "this.port": 1, - "maxSockets": 1, - "Client.prototype.request": 1, - "self.host": 1, - "self.port": 1, - "c.on": 2, - "exports.Client": 1, - "module.deprecate": 2, - "exports.createClient": 1, - "SHEBANG#!node": 2, - "http.createServer": 1, - "res.writeHead": 1, - "res.end": 1, - ".listen": 1, - "window.angular": 1, - "Animal.name": 1, - "_super": 4, - "Snake.name": 1, - "Horse.name": 1, - "jshint": 1, - "Modal": 2, - "this.": 2, - ".proxy": 1, - "this.hide": 1, - "Modal.prototype": 1, - "this.isShown": 3, - ".Event": 1, - "element.trigger": 1, - ".addClass": 1, - "escape.call": 1, - "backdrop.call": 1, - "transition": 1, - ".support.transition": 1, - "that.": 3, - "element.hasClass": 1, - "element.parent": 1, - "element.appendTo": 1, - "//don": 1, - "shown": 2, - "modal": 4, - "fade": 4, - "keyup.dismiss.modal": 2, - "click.modal.data": 1, - "api": 1, - ".extend": 1, - "target.data": 1, - "e.preventDefault": 1, - "target.modal": 1 + "logger": 2 }, "Julia": { "##": 5, @@ -34080,9 +34199,9 @@ "(": 217, "c": 4, ")": 231, - "-": 98, - "Robert": 3, - "Virding": 3, + "Duncan": 4, + "McGreggor": 4, + "": 2, "Licensed": 3, "under": 9, "the": 36, @@ -34108,6 +34227,7 @@ "at": 4, "http": 4, "//www.apache.org/licenses/LICENSE": 3, + "-": 98, "Unless": 3, "required": 3, "by": 4, @@ -34142,168 +34262,65 @@ "and": 7, "limitations": 3, "File": 4, - "mnesia_demo.lfe": 1, + "church.lfe": 1, "Author": 3, "Purpose": 3, - "A": 1, - "simple": 4, - "Mnesia": 2, - "demo": 2, - "LFE.": 1, - "This": 2, - "contains": 1, - "using": 1, - "LFE": 4, - "access": 1, - "tables.": 1, - "It": 1, - "shows": 2, - "how": 2, - "emp": 1, - "XXXX": 1, - "macro": 1, - "ETS": 1, - "match": 5, - "pattern": 1, - "together": 1, - "mnesia": 8, - "match_object": 1, - "specifications": 1, - "select": 1, - "Query": 2, - "List": 2, - "Comprehensions.": 1, - "defmodule": 2, - "mnesia_demo": 1, - "export": 2, - "new": 2, - "by_place": 1, - "by_place_ms": 1, - "by_place_qlc": 2, - "defrecord": 1, - "person": 8, - "name": 8, - "place": 7, - "job": 3, - "defun": 20, - "Start": 1, - "create": 4, - "table": 2, - "we": 1, - "will": 1, - "get": 21, - "memory": 1, - "only": 1, - "schema.": 1, - "start": 1, - "create_table": 1, - "#": 3, - "attributes": 1, - "Initialise": 1, - "table.": 1, - "let": 6, - "people": 1, - "spec": 1, - "[": 3, - "n": 4, - "p": 2, - "j": 2, - "]": 3, - "when": 1, - "tuple": 1, - "transaction": 2, - "f": 3, - "Use": 1, - "Comprehensions": 1, - "records": 1, - "lambda": 18, - "q": 2, - "qlc": 2, - "lc": 1, - "<": 1, - "e": 1, - "Duncan": 4, - "McGreggor": 4, - "": 2, - "object.lfe": 1, "Demonstrating": 2, - "OOP": 1, - "closures": 1, - "The": 4, - "object": 16, - "system": 1, - "demonstrated": 1, - "below": 3, - "do": 2, - "following": 2, - "*": 6, - "objects": 2, - "call": 2, - "methods": 5, - "those": 1, - "have": 3, - "which": 1, - "can": 1, - "other": 1, - "update": 1, - "state": 4, - "instance": 2, - "variable": 2, - "Note": 1, - "however": 1, - "that": 1, - "his": 1, - "example": 2, - "does": 1, - "demonstrate": 1, - "inheritance.": 1, - "To": 1, - "code": 2, - "cd": 1, - "examples": 1, - "../bin/lfe": 1, - "pa": 1, - "../ebin": 1, - "Load": 1, - "fish": 6, - "class": 3, - "slurp": 2, - "#Fun": 1, - "": 1, - "Execute": 1, - "some": 2, - "basic": 1, - "species": 7, - "mommy": 3, - "move": 4, - "Carp": 1, - "swam": 1, - "feet": 1, - "ok": 1, - "id": 9, - "Now": 1, - "s": 19, - "strictly": 1, - "necessary.": 1, - "When": 1, - "isn": 1, - "list": 13, - "children": 10, - "formatted": 1, - "verb": 2, - "self": 6, - "distance": 2, - "count": 7, - "erlang": 1, - "length": 1, - "method": 7, - "funcall": 23, - "define": 1, - "info": 1, - "reproduce": 1, - "Mode": 1, - "Code": 1, + "church": 20, + "numerals": 1, "from": 2, + "lambda": 18, + "calculus": 1, + "The": 4, + "code": 2, + "below": 3, + "was": 1, + "used": 1, + "create": 4, + "section": 1, + "user": 1, + "guide": 1, + "here": 1, + "//lfe.github.io/user": 1, + "guide/recursion/5.html": 1, + "Here": 1, + "some": 2, + "example": 2, + "usage": 1, + "slurp": 2, + "five/0": 2, + "int2": 1, + "get": 21, + "defmodule": 2, + "export": 2, + "all": 1, + "defun": 20, + "zero": 2, + "s": 19, + "x": 12, + "one": 1, + "funcall": 23, + "two": 1, + "three": 1, + "four": 1, + "five": 1, + "int": 2, + "successor": 3, + "n": 4, + "+": 2, + "int1": 1, + "numeral": 8, + "#": 3, + "successor/1": 1, + "count": 7, + "limit": 4, + "cond": 1, + "/": 1, + "integer": 2, + "*": 6, + "Mode": 1, + "LFE": 4, + "Code": 1, "Paradigms": 1, "Artificial": 1, "Intelligence": 1, @@ -34318,21 +34335,30 @@ "Problem": 1, "Solver": 1, "Converted": 1, + "Robert": 3, + "Virding": 3, "Define": 1, "macros": 1, "global": 2, + "variable": 2, "access.": 1, + "This": 2, "hack": 1, "very": 1, "naughty": 1, "defsyntax": 2, "defvar": 2, + "[": 3, + "name": 8, "val": 2, + "]": 3, + "let": 6, "v": 3, "put": 1, "getvar": 3, "solved": 1, "gps": 1, + "state": 4, "goals": 2, "Set": 1, "variables": 1, @@ -34341,6 +34367,7 @@ "*ops*": 1, "*state*": 5, "current": 1, + "list": 13, "conditions.": 1, "if": 1, "every": 1, @@ -34366,51 +34393,394 @@ "make": 2, "communication": 2, "telephone": 1, + "have": 3, "phone": 1, "book": 1, "give": 1, "money": 3, "has": 1, - "church.lfe": 1, - "church": 20, - "numerals": 1, - "calculus": 1, - "was": 1, - "used": 1, - "section": 1, - "user": 1, - "guide": 1, - "here": 1, - "//lfe.github.io/user": 1, - "guide/recursion/5.html": 1, - "Here": 1, - "usage": 1, - "five/0": 2, - "int2": 1, - "all": 1, - "zero": 2, - "x": 12, - "one": 1, - "two": 1, - "three": 1, - "four": 1, - "five": 1, - "int": 2, - "successor": 3, - "+": 2, - "int1": 1, - "numeral": 8, - "successor/1": 1, - "limit": 4, - "cond": 1, - "/": 1, - "integer": 2 + "mnesia_demo.lfe": 1, + "A": 1, + "simple": 4, + "Mnesia": 2, + "demo": 2, + "LFE.": 1, + "contains": 1, + "using": 1, + "access": 1, + "tables.": 1, + "It": 1, + "shows": 2, + "how": 2, + "emp": 1, + "XXXX": 1, + "macro": 1, + "ETS": 1, + "match": 5, + "pattern": 1, + "together": 1, + "mnesia": 8, + "match_object": 1, + "specifications": 1, + "select": 1, + "Query": 2, + "List": 2, + "Comprehensions.": 1, + "mnesia_demo": 1, + "new": 2, + "by_place": 1, + "by_place_ms": 1, + "by_place_qlc": 2, + "defrecord": 1, + "person": 8, + "place": 7, + "job": 3, + "Start": 1, + "table": 2, + "we": 1, + "will": 1, + "memory": 1, + "only": 1, + "schema.": 1, + "start": 1, + "create_table": 1, + "attributes": 1, + "Initialise": 1, + "table.": 1, + "people": 1, + "spec": 1, + "p": 2, + "j": 2, + "when": 1, + "tuple": 1, + "transaction": 2, + "f": 3, + "Use": 1, + "Comprehensions": 1, + "records": 1, + "q": 2, + "qlc": 2, + "lc": 1, + "<": 1, + "e": 1, + "object.lfe": 1, + "OOP": 1, + "closures": 1, + "object": 16, + "system": 1, + "demonstrated": 1, + "do": 2, + "following": 2, + "objects": 2, + "call": 2, + "methods": 5, + "those": 1, + "which": 1, + "can": 1, + "other": 1, + "update": 1, + "instance": 2, + "Note": 1, + "however": 1, + "that": 1, + "his": 1, + "does": 1, + "demonstrate": 1, + "inheritance.": 1, + "To": 1, + "cd": 1, + "examples": 1, + "../bin/lfe": 1, + "pa": 1, + "../ebin": 1, + "Load": 1, + "fish": 6, + "class": 3, + "#Fun": 1, + "": 1, + "Execute": 1, + "basic": 1, + "species": 7, + "mommy": 3, + "move": 4, + "Carp": 1, + "swam": 1, + "feet": 1, + "ok": 1, + "id": 9, + "Now": 1, + "strictly": 1, + "necessary.": 1, + "When": 1, + "isn": 1, + "children": 10, + "formatted": 1, + "verb": 2, + "self": 6, + "distance": 2, + "erlang": 1, + "length": 1, + "method": 7, + "define": 1, + "info": 1, + "reproduce": 1 }, "Lasso": { + "<": 7, + "LassoScript": 1, + "//": 169, + "JSON": 2, + "Encoding": 1, + "and": 52, + "Decoding": 1, + "Copyright": 1, + "-": 2248, + "LassoSoft": 1, + "Inc.": 1, + "": 1, + "": 1, + "": 1, + "This": 5, + "tag": 11, + "is": 35, + "now": 23, + "incorporated": 1, + "in": 46, + "Lasso": 15, + "If": 4, + "(": 640, + "Lasso_TagExists": 1, + ")": 639, + "False": 1, + ";": 573, + "Define_Tag": 1, + "Namespace": 1, + "Required": 1, + "Optional": 1, + "Local": 7, + "Map": 3, + "r": 8, + "n": 30, + "t": 8, + "f": 2, + "b": 2, + "output": 30, + "newoptions": 1, + "options": 2, + "array": 20, + "set": 10, + "list": 4, + "queue": 2, + "priorityqueue": 2, + "stack": 2, + "pair": 1, + "map": 23, "[": 22, "]": 23, - "//": 169, - "-": 2248, + "literal": 3, + "string": 59, + "integer": 30, + "decimal": 5, + "boolean": 4, + "null": 26, + "date": 23, + "temp": 12, + "object": 7, + "{": 18, + "}": 18, + "client_ip": 1, + "client_address": 1, + "__jsonclass__": 6, + "deserialize": 2, + "": 3, + "": 3, + "Decode_JSON": 2, + "Decode_": 1, + "value": 14, + "consume_string": 1, + "ibytes": 9, + "unescapes": 1, + "u": 1, + "UTF": 4, + "%": 14, + "QT": 4, + "TZ": 2, + "T": 3, + "consume_token": 1, + "obytes": 3, + "delimit": 7, + "true": 12, + "false": 8, + ".": 5, + "consume_array": 1, + "consume_object": 1, + "key": 3, + "val": 1, + "native": 2, + "comment": 2, + "http": 6, + "//www.lassosoft.com/json": 1, + "start": 5, + "Literal": 2, + "String": 1, + "Object": 2, + "JSON_RPCCall": 1, + "RPCCall": 1, + "JSON_": 1, + "method": 7, + "params": 11, + "id": 7, + "host": 6, + "//localhost/lassoapps.8/rpc/rpc.lasso": 1, + "request": 2, + "result": 6, + "JSON_Records": 3, + "KeyField": 1, + "ReturnField": 1, + "ExcludeField": 1, + "Fields": 1, + "_fields": 1, + "fields": 2, + "No": 1, + "found": 5, + "for": 65, + "_keyfield": 4, + "keyfield": 4, + "ID": 1, + "_index": 1, + "_return": 1, + "returnfield": 1, + "_exclude": 1, + "excludefield": 1, + "_records": 1, + "_record": 1, + "_temp": 1, + "_field": 1, + "_output": 1, + "error_msg": 15, + "error_code": 11, + "found_count": 11, + "rows": 1, + "#_records": 1, + "Return": 7, + "@#_output": 1, + "/Define_Tag": 1, + "/If": 3, + "define": 20, + "trait_json_serialize": 2, + "trait": 1, + "require": 1, + "asString": 3, + "json_serialize": 18, + "e": 13, + "bytes": 8, + "+": 146, + "#e": 13, + "Replace": 19, + "&": 21, + "json_literal": 1, + "asstring": 4, + "format": 7, + "gmt": 1, + "|": 13, + "trait_forEach": 1, + "local": 116, + "foreach": 1, + "#output": 50, + "#delimit": 7, + "#1": 3, + "return": 75, + "with": 25, + "pr": 1, + "eachPair": 1, + "select": 1, + "#pr": 2, + "first": 12, + "second": 8, + "join": 5, + "json_object": 2, + "foreachpair": 1, + "any": 14, + "serialize": 1, + "json_consume_string": 3, + "while": 9, + "#temp": 19, + "#ibytes": 17, + "export8bits": 6, + "#obytes": 5, + "import8bits": 4, + "Escape": 1, + "/while": 7, + "unescape": 1, + "//Replace": 1, + "if": 76, + "BeginsWith": 1, + "&&": 30, + "EndsWith": 1, + "Protect": 1, + "serialization_reader": 1, + "xml": 1, + "read": 1, + "/Protect": 1, + "else": 32, + "size": 24, + "or": 6, + "regexp": 1, + "d": 2, + "Z": 1, + "matches": 1, + "Format": 1, + "yyyyMMdd": 2, + "HHmmssZ": 1, + "HHmmss": 1, + "/if": 53, + "json_consume_token": 2, + "marker": 4, + "Is": 1, + "also": 5, + "end": 2, + "of": 24, + "token": 1, + "//............................................................................": 2, + "string_IsNumeric": 1, + "json_consume_array": 3, + "While": 1, + "Discard": 1, + "whitespace": 3, + "Else": 7, + "insert": 18, + "#key": 12, + "json_consume_object": 2, + "Loop_Abort": 1, + "/While": 1, + "Find": 3, + "isa": 25, + "First": 4, + "find": 57, + "Second": 1, + "json_deserialize": 1, + "removeLeading": 1, + "bom_utf8": 1, + "Reset": 1, + "on": 1, + "provided": 1, + "**/": 1, + "type": 63, + "parent": 5, + "public": 1, + "onCreate": 1, + "...": 3, + "..onCreate": 1, + "#rest": 1, + "json_rpccall": 1, + "#id": 2, + "#host": 4, + "Lasso_UniqueID": 1, + "Include_URL": 1, + "PostParams": 1, + "Encode_JSON": 1, + "#method": 1, + "#params": 5, "": 6, "2009": 14, "09": 10, @@ -34418,10 +34788,7 @@ "JS": 126, "Added": 40, "content_body": 14, - "tag": 11, - "for": 65, "compatibility": 4, - "with": 25, "pre": 4, "8": 6, "5": 4, @@ -34430,16 +34797,13 @@ "timestamp": 4, "to": 98, "knop_cachestore": 4, - "and": 52, "maxage": 2, "parameter": 8, "knop_cachefetch": 4, "Corrected": 8, "construction": 2, - "of": 24, "cache_name": 2, "internally": 2, - "in": 46, "the": 86, "knop_cache": 2, "tags": 14, @@ -34459,7 +34823,6 @@ "be": 38, "able": 14, "transparently": 2, - "or": 6, "without": 4, "L": 2, "Debug": 2, @@ -34469,10 +34832,7 @@ "28": 2, "Cache": 2, "name": 32, - "is": 35, - "now": 23, "used": 12, - "also": 5, "when": 10, "using": 8, "session": 4, @@ -34486,14 +34846,10 @@ "condition": 4, "returning": 2, "normal": 2, - "found_count": 11, "For": 2, - "Lasso": 15, - "if": 76, "lasso_tagexists": 4, "define_tag": 48, "namespace=": 12, - "return": 75, "__html_reply__": 4, "define_type": 14, "debug": 2, @@ -34503,15 +34859,8 @@ "description=": 2, "priority=": 2, "required=": 2, - "local": 116, - "output": 30, - "string": 59, "input": 2, "split": 2, - "(": 640, - ")": 639, - "first": 12, - ";": 573, "@#output": 2, "/define_tag": 36, "description": 34, @@ -34520,17 +34869,12 @@ "Johan": 2, "S": 2, "lve": 2, - "integer": 30, "#charlist": 6, - "size": 24, - "start": 5, "current": 10, - "date": 23, "time": 8, "a": 52, "mixed": 2, "up": 4, - "format": 7, "as": 26, "seed": 6, "#seed": 36, @@ -34538,14 +34882,9 @@ "this": 14, "base": 6, "conversion": 4, - "while": 9, - "#output": 50, "get": 12, - "%": 14, "#base": 8, - "+": 146, "/": 6, - "/while": 7, "over": 2, "new": 14, "chunk": 2, @@ -34557,22 +34896,17 @@ "response_localpath": 8, "removetrailing": 8, "response_filepath": 8, - "http": 6, "//tagswap.net/found_rows": 2, "action_statement": 2, "string_findregexp": 8, "#sql": 42, - "find": 57, "ignorecase": 12, "||": 8, - "<": 7, "maxrecords_value": 2, "inaccurate": 2, "must": 4, "accurate": 2, - "/if": 53, "Default": 2, - "method": 7, "usually": 2, "fastest.": 2, "Can": 2, @@ -34580,9 +34914,7 @@ "GROUP": 4, "BY": 6, "example.": 2, - "First": 4, "normalize": 4, - "whitespace": 3, "around": 2, "FROM": 2, "expression": 6, @@ -34602,7 +34934,6 @@ "can": 14, "simple": 2, "later": 2, - "else": 32, "query": 4, "contains": 2, "use": 10, @@ -34612,7 +34943,6 @@ "slower": 2, "see": 16, "//bugs.mysql.com/bug.php": 2, - "id": 7, "removeleading": 2, "inline": 4, "sql": 2, @@ -34625,7 +34955,6 @@ "optional": 36, "local_defined": 26, "knop_seed": 2, - "Local": 7, "#RandChars": 4, "Get": 2, "Math_Random": 2, @@ -34633,9 +34962,7 @@ "Max": 2, "Size": 2, "#value": 14, - "join": 5, "#numericValue": 4, - "&&": 30, "length": 8, "#cryptvalue": 10, "#anyChar": 2, @@ -34649,9 +34976,7 @@ "self": 72, "_date_msec": 4, "/define_type": 4, - "type": 63, "seconds": 4, - "map": 23, "default": 4, "store": 4, "all": 6, @@ -34662,10 +34987,8 @@ "keys": 6, "var": 38, "#item": 10, - "isa": 25, "#type": 26, "#data": 14, - "insert": 18, "/iterate": 12, "//fail_if": 6, "session_id": 6, @@ -34673,7 +34996,6 @@ "session_addvar": 4, "#cache_name": 72, "duration": 4, - "second": 8, "#expires": 4, "server_name": 6, "initiate": 10, @@ -34692,7 +35014,6 @@ "cache": 4, "unlock": 6, "writeunlock": 4, - "null": 26, "#maxage": 4, "cached": 8, "data": 12, @@ -34701,9 +35022,6 @@ "reading": 2, "readlock": 2, "readunlock": 2, - "value": 14, - "true": 12, - "false": 8, "ignored": 2, "//##################################################################": 4, "knoptype": 2, @@ -34713,8 +35031,6 @@ "types": 10, "should": 4, "have": 6, - "parent": 5, - "This": 5, "identify": 2, "registered": 2, "knop": 6, @@ -34743,7 +35059,6 @@ "adjustments": 4, "9": 2, "Changed": 6, - "error_msg": 15, "error": 22, "numbers": 2, "added": 10, @@ -34762,10 +35077,8 @@ "error_lang": 2, "provide": 2, "knop_lang": 8, - "object": 7, "add": 12, "localized": 2, - "any": 14, "except": 2, "knop_base": 8, "html": 4, @@ -34775,7 +35088,6 @@ "formatted": 2, "output.": 2, "Centralized": 2, - "error_code": 11, "knop_base.": 2, "Moved": 6, "codes": 2, @@ -34784,7 +35096,6 @@ "It": 2, "always": 2, "an": 8, - "list": 4, "parameter.": 2, "trace": 2, "tagtime": 4, @@ -34803,7 +35114,6 @@ "exists": 2, "buffer.": 2, "The": 6, - "result": 6, "performance.": 2, "internal": 2, "html.": 2, @@ -34828,7 +35138,6 @@ "handler": 2, "explicitly": 2, "*/": 2, - "array": 20, "entire": 4, "ms": 2, "defined": 4, @@ -34837,18 +35146,13 @@ "avoid": 2, "recursion": 2, "properties": 4, - "params": 11, - "|": 13, "#endslash": 10, "#tags": 2, "#t": 2, "doesn": 4, - "t": 8, "p": 2, - "n": 30, "Parameters": 4, "nParameters": 2, - "r": 8, "Internal.": 2, "Finds": 2, "out": 2, @@ -34858,9 +35162,7 @@ "array.": 2, "variable.": 2, "Looking": 2, - "#params": 5, "#xhtmlparam": 4, - "boolean": 4, "plain": 2, "#doctype": 4, "copy": 4, @@ -34880,13 +35182,11 @@ "#custom_language": 10, "once": 4, "one": 2, - "key": 3, "#custom_string": 4, "#errorcodes": 4, "#error_code": 10, "message": 6, "getstring": 2, - "literal": 3, "test": 2, "known": 2, "lasso": 2, @@ -34915,7 +35215,6 @@ "10": 2, "SP": 4, "Fix": 2, - "decimal": 5, "precision": 2, "bug": 2, "6": 2, @@ -34925,7 +35224,6 @@ "15": 2, "Add": 2, "support": 6, - "host": 6, "Thanks": 2, "Ric": 2, "Lewis": 2, @@ -34999,7 +35297,6 @@ "paren...": 2, "corresponding": 2, "resultset": 2, - "...": 3, "/resultset": 2, "through": 2, "handling": 2, @@ -35019,8 +35316,6 @@ "recordpointer": 2, "called": 2, "until": 2, - "found": 5, - "set": 10, "reached.": 2, "Returns": 2, "long": 2, @@ -35032,7 +35327,6 @@ "example": 2, "below": 2, "Implemented": 2, - ".": 5, "reset": 2, "query.": 2, "shortcut": 2, @@ -35054,7 +35348,6 @@ "SQL": 2, "includes": 2, "relevant": 2, - "keyfield": 4, "lockfield": 2, "locking": 4, "capturesearchvars": 2, @@ -35094,181 +35387,7 @@ "proper": 2, "searchresult": 2, "separate": 2, - "COUNT": 2, - "define": 20, - "trait_json_serialize": 2, - "trait": 1, - "{": 18, - "require": 1, - "asString": 3, - "}": 18, - "json_serialize": 18, - "e": 13, - "bytes": 8, - "#e": 13, - "Replace": 19, - "&": 21, - "json_literal": 1, - "asstring": 4, - "gmt": 1, - "trait_forEach": 1, - "delimit": 7, - "foreach": 1, - "#delimit": 7, - "#1": 3, - "pr": 1, - "eachPair": 1, - "select": 1, - "#pr": 2, - "json_object": 2, - "foreachpair": 1, - "serialize": 1, - "json_consume_string": 3, - "ibytes": 9, - "obytes": 3, - "temp": 12, - "#temp": 19, - "#ibytes": 17, - "export8bits": 6, - "#obytes": 5, - "import8bits": 4, - "Escape": 1, - "unescape": 1, - "//Replace": 1, - "BeginsWith": 1, - "EndsWith": 1, - "Protect": 1, - "serialization_reader": 1, - "xml": 1, - "read": 1, - "/Protect": 1, - "regexp": 1, - "d": 2, - "T": 3, - "Z": 1, - "matches": 1, - "Format": 1, - "yyyyMMdd": 2, - "HHmmssZ": 1, - "HHmmss": 1, - "json_consume_token": 2, - "marker": 4, - "Is": 1, - "end": 2, - "token": 1, - "//............................................................................": 2, - "string_IsNumeric": 1, - "json_consume_array": 3, - "While": 1, - "If": 4, - "Discard": 1, - "Else": 7, - "#key": 12, - "json_consume_object": 2, - "Loop_Abort": 1, - "/If": 3, - "/While": 1, - "Find": 3, - "Return": 7, - "Second": 1, - "json_deserialize": 1, - "removeLeading": 1, - "bom_utf8": 1, - "Reset": 1, - "on": 1, - "provided": 1, - "**/": 1, - "public": 1, - "onCreate": 1, - "..onCreate": 1, - "#rest": 1, - "json_rpccall": 1, - "#id": 2, - "#host": 4, - "Lasso_UniqueID": 1, - "Decode_JSON": 2, - "Include_URL": 1, - "PostParams": 1, - "Encode_JSON": 1, - "Map": 3, - "#method": 1, - "LassoScript": 1, - "JSON": 2, - "Encoding": 1, - "Decoding": 1, - "Copyright": 1, - "LassoSoft": 1, - "Inc.": 1, - "": 1, - "": 1, - "": 1, - "incorporated": 1, - "Lasso_TagExists": 1, - "False": 1, - "Define_Tag": 1, - "Namespace": 1, - "Required": 1, - "Optional": 1, - "f": 2, - "b": 2, - "newoptions": 1, - "options": 2, - "queue": 2, - "priorityqueue": 2, - "stack": 2, - "pair": 1, - "client_ip": 1, - "client_address": 1, - "__jsonclass__": 6, - "deserialize": 2, - "": 3, - "": 3, - "Decode_": 1, - "consume_string": 1, - "unescapes": 1, - "u": 1, - "UTF": 4, - "QT": 4, - "TZ": 2, - "consume_token": 1, - "consume_array": 1, - "consume_object": 1, - "val": 1, - "native": 2, - "comment": 2, - "//www.lassosoft.com/json": 1, - "Literal": 2, - "String": 1, - "Object": 2, - "JSON_RPCCall": 1, - "RPCCall": 1, - "JSON_": 1, - "//localhost/lassoapps.8/rpc/rpc.lasso": 1, - "request": 2, - "JSON_Records": 3, - "KeyField": 1, - "ReturnField": 1, - "ExcludeField": 1, - "Fields": 1, - "_fields": 1, - "fields": 2, - "No": 1, - "_keyfield": 4, - "ID": 1, - "_index": 1, - "_return": 1, - "returnfield": 1, - "_exclude": 1, - "excludefield": 1, - "_records": 1, - "_record": 1, - "_temp": 1, - "_field": 1, - "_output": 1, - "rows": 1, - "#_records": 1, - "@#_output": 1, - "/Define_Tag": 1 + "COUNT": 2 }, "Latte": { "{": 54, @@ -36066,60 +36185,7 @@ "end_object.": 1 }, "Lua": { - "local": 11, - "FileListParser": 5, - "pd.Class": 3, - "new": 3, - "(": 56, - ")": 56, - "register": 3, - "function": 16, - "initialize": 3, - "sel": 3, - "atoms": 3, "-": 60, - "Base": 1, - "filename": 2, - "File": 2, - "extension": 2, - "Number": 4, - "of": 9, - "files": 1, - "in": 7, - "batch": 2, - "self.inlets": 3, - "To": 3, - "[": 17, - "list": 1, - "trim": 1, - "]": 17, - "binfile": 3, - "vidya": 1, - "file": 8, - "modder": 1, - "s": 5, - "mechanisms": 1, - "self.outlets": 3, - "self.extension": 3, - "the": 7, - "last": 1, - "self.batchlimit": 3, - "return": 3, - "true": 3, - "end": 26, - "in_1_symbol": 1, - "for": 9, - "i": 10, - "do": 8, - "self": 10, - "outlet": 10, - "{": 16, - "}": 16, - "..": 7, - "in_2_list": 1, - "d": 9, - "in_3_float": 1, - "f": 12, "A": 1, "simple": 1, "counting": 1, @@ -36145,11 +36211,64 @@ "number": 3, "second": 1, "inlet.": 1, + "local": 11, "HelloCounter": 4, + "pd.Class": 3, + "new": 3, + "(": 56, + ")": 56, + "register": 3, + "function": 16, + "initialize": 3, + "sel": 3, + "atoms": 3, + "self.inlets": 3, + "self.outlets": 3, "self.num": 5, + "return": 3, + "true": 3, + "end": 26, "in_1_bang": 2, + "self": 10, + "outlet": 10, + "{": 16, + "}": 16, "+": 3, "in_2_float": 2, + "f": 12, + "FileListParser": 5, + "Base": 1, + "filename": 2, + "File": 2, + "extension": 2, + "Number": 4, + "of": 9, + "files": 1, + "in": 7, + "batch": 2, + "To": 3, + "[": 17, + "list": 1, + "trim": 1, + "]": 17, + "binfile": 3, + "vidya": 1, + "file": 8, + "modder": 1, + "s": 5, + "mechanisms": 1, + "self.extension": 3, + "the": 7, + "last": 1, + "self.batchlimit": 3, + "in_1_symbol": 1, + "for": 9, + "i": 10, + "do": 8, + "..": 7, + "in_2_list": 1, + "d": 9, + "in_3_float": 1, "FileModder": 10, "Object": 1, "triggering": 1, @@ -36244,17 +36363,45 @@ "in_8_list": 1 }, "M": { + "%": 207, + "zewdAPI": 52, ";": 1309, - "GT.M": 30, - "Digest": 2, - "Extension": 9, - "Copyright": 12, + "Enterprise": 5, + "Web": 5, + "Developer": 5, + "run": 2, + "-": 1605, + "time": 9, + "functions": 4, + "and": 59, + "user": 27, + "APIs": 1, + "Product": 2, "(": 2144, - "C": 9, + "Build": 6, ")": 2152, - "Piotr": 7, - "Koper": 7, - "": 7, + "Date": 2, + "Fri": 1, + "Nov": 1, + "|": 171, + "for": 77, + "GT.M": 30, + "m_apache": 3, + "Copyright": 12, + "c": 113, + "M/Gateway": 4, + "Developments": 4, + "Ltd": 4, + "Reigate": 4, + "Surrey": 4, + "UK.": 4, + "All": 4, + "rights": 4, + "reserved.": 4, + "http": 13, + "//www.mgateway.com": 4, + "Email": 4, + "rtweed@mgateway.com": 4, "This": 26, "program": 19, "is": 88, @@ -36312,7 +36459,6 @@ "PARTICULAR": 11, "PURPOSE.": 11, "See": 15, - "for": 77, "more": 13, "details.": 12, "You": 13, @@ -36330,298 +36476,356 @@ "see": 26, "": 11, ".": 815, - "trademark": 2, - "Fidelity": 2, - "Information": 2, - "Services": 2, - "Inc.": 2, - "-": 1605, - "http": 13, - "//sourceforge.net/projects/fis": 2, - "gtm/": 2, - "simple": 2, - "OpenSSL": 3, - "based": 1, - "digest": 19, - "extension": 3, - "rewrite": 1, - "EVP_DigestInit": 1, - "usage": 3, - "example": 5, - "additional": 5, - "M": 24, - "wrapper.": 1, - "//www.openssl.org/docs/crypto/EVP_DigestInit.html": 1, - "The": 11, - "return": 7, - "value": 72, - "from": 16, - "&": 28, - "digest.init": 3, - "usually": 1, - "when": 11, - "an": 14, - "invalid": 4, - "algorithm": 1, - "was": 5, - "specification.": 1, - "Anyway": 1, - "properly": 1, - "used": 6, - "never": 4, - "fail.": 1, - "Please": 2, - "feel": 2, - "to": 74, - "contact": 2, - "me": 2, - "if": 44, - "questions": 2, - "comments": 5, - "m": 37, - "returns": 7, - "ASCII": 2, - "HEX": 1, - "all": 8, - "one": 5, - "n": 197, - "c": 113, - "d": 381, - "s": 775, - "digest.update": 2, - ".c": 2, - ".m": 11, - "digest.final": 2, - ".d": 1, - "q": 244, - "init": 6, - "alg": 3, - "context": 1, - "handler": 9, - "try": 1, - "etc": 1, - "returned": 1, - "error": 62, - "occurs": 1, - "e.g.": 2, - "unknown": 1, - "update": 1, - "ctx": 4, - "msg": 6, - "updates": 1, - "message": 8, - ".ctx": 2, - ".msg": 1, - "final": 1, - "hex": 1, - "encoded": 8, - "frees": 1, - "memory": 1, - "allocated": 1, - "also": 4, - ".digest": 1, - "algorithms": 1, - "availability": 1, - "depends": 1, - "on": 17, - "libcrypto": 1, - "configuration": 1, - "md4": 1, - "md5": 2, - "sha": 1, - "sha1": 1, - "sha224": 1, - "sha256": 1, - "sha512": 1, - "dss1": 1, - "ripemd160": 1, - "code": 29, - "examples": 4, - "contrasting": 1, - "postconditionals": 1, - "IF": 9, - "commands": 1, - "post1": 1, - "postconditional": 3, - "set": 98, - "command": 11, - "b": 64, - "I": 43, - "purposely": 4, - "TEST": 16, - "false": 5, - "write": 59, - "<": 20, - "quit": 30, - "post2": 1, - "": 3, - "variable": 8, - "a=": 3, - "smaller": 3, - "than": 4, - "b=": 4, - "special": 2, - "after": 3, - "post": 1, - "condition": 1, - "if1": 2, - "if2": 2, - "start": 26, - "exercise": 1, - "car": 14, - "@": 8, - "part": 3, - "Keith": 1, - "Lynch": 1, - "p#f": 1, - "w": 127, - "p": 84, - "x": 96, - "+": 189, - "*8": 2, - "ZDIOUT1": 1, - "Experimental": 1, - "FileMan": 1, - "file": 10, - "output": 49, - "host": 2, - "Open": 1, - "Source": 1, - "Electronic": 1, - "Health": 1, - "Record": 1, - "Agent": 1, - "Licensed": 1, - "Apache": 1, - "Version": 1, - "may": 3, - "use": 5, - "except": 1, - "compliance": 1, - "License.": 2, - "obtain": 2, - "//www.apache.org/licenses/LICENSE": 1, - "Unless": 1, - "required": 4, - "applicable": 1, - "law": 1, - "agreed": 1, - "writing": 4, - "BASIS": 1, - "WARRANTIES": 1, - "OR": 2, - "CONDITIONS": 1, - "OF": 2, - "KIND": 1, - "express": 1, - "implied.": 1, - "specific": 3, - "language": 6, - "governing": 1, - "permissions": 2, - "and": 59, - "limitations": 1, - "N": 19, - "W": 4, - "D": 64, - "ASKFILE": 1, - "Q": 58, - "FILE": 5, - "[": 54, - "ASKDIR": 1, - "DIR": 3, - "SAVEFILE": 2, - "Save": 1, - "given": 1, - "directory": 1, - "CHECK": 1, - "FGR": 4, - "_FILE": 1, - "S": 99, - "IO": 4, - "DIR_": 1, - "P": 68, - "E": 12, - "L": 1, - "_": 127, - "FILENAME": 1, - "O": 24, - "U": 14, - "_IO_": 1, - "_P_": 1, - "NM": 1, - "contains": 2, - "non": 1, - "printing": 1, - "characters": 8, - "then": 2, - "must": 8, - "escaped": 1, - "evaluation": 1, - "RHS": 1, - "SET.": 1, - "TODO": 1, - "Caller": 1, - "define": 2, - "indentation": 1, - "level": 5, - "comment": 4, - "first": 10, - "character": 5, - "tab": 1, - "space.": 1, - "V": 2, - "%": 207, - "zewdDemo": 1, - "Tutorial": 1, - "page": 12, - "functions": 4, - "Product": 2, - "Enterprise": 5, - "Web": 5, - "Developer": 5, - "Build": 6, - "Date": 2, - "Wed": 1, - "Apr": 1, - "|": 171, - "m_apache": 3, - "M/Gateway": 4, - "Developments": 4, - "Ltd": 4, - "Reigate": 4, - "Surrey": 4, - "UK.": 4, - "All": 4, - "rights": 4, - "reserved.": 4, - "//www.mgateway.com": 4, - "Email": 4, - "rtweed@mgateway.com": 4, - "getLanguage": 1, - "sessid": 146, - "getRequestValue": 1, - "zewdAPI": 52, - "setSessionValue": 6, "QUIT": 251, - "login": 1, + "_": 127, + "getVersion": 1, + "zewdCompiler": 6, + "date": 1, + "getDate": 1, + "compilePage": 2, + "app": 13, + "page": 12, + "mode": 12, + "technology": 9, + "outputPath": 4, + "multilingual": 4, + "maxLines": 4, + "d": 381, + "g": 228, + "compileAll": 2, + "templatePageName": 2, + "autoTranslate": 2, + "language": 6, + "verbose": 2, + "zewdMgr": 1, + "startSession": 2, + "requestArray": 2, + "serverArray": 1, + "sessionArray": 5, + "filesArray": 1, + "zewdPHP": 8, + ".requestArray": 2, + ".serverArray": 1, + ".sessionArray": 3, + ".filesArray": 1, + "closeSession": 2, + "saveSession": 2, + "endOfPage": 2, + "prePageScript": 2, + "sessid": 146, + "releaseLock": 2, + "tokeniseURL": 2, + "url": 2, + "zewdCompiler16": 5, + "getSessid": 1, + "token": 21, + "i": 465, + "isTokenExpired": 2, + "p": 84, + "zewdSession": 39, + "initialiseSession": 1, + "k": 122, + "deleteSession": 2, + "changeApp": 1, + "appName": 4, + "setSessionValue": 6, + "setRedirect": 1, + "toPage": 1, + "e": 210, + "n": 197, + "path": 4, + "s": 775, + "getRootURL": 1, + "l": 84, + "zewd": 17, + "trace": 24, + "_sessid_": 3, + "_token_": 1, + "_nextPage": 1, + "zcvt": 11, + "nextPage": 1, + "isNextPageTokenValid": 2, + "zewdCompiler13": 10, + "isCSP": 1, + "normaliseTextValue": 1, + "text": 6, + "replaceAll": 11, + "writeLine": 2, + "line": 14, + "CacheTempBuffer": 2, + "j": 67, + "increment": 11, + "w": 127, + "displayOptions": 2, + "fieldName": 5, + "listName": 6, + "escape": 7, + "codeValue": 7, + "name": 121, + "nnvp": 1, + "nvp": 1, + "pos": 33, + "textValue": 6, + "value": 72, + "getSessionValue": 3, + "tr": 13, + "+": 189, + "f": 93, + "o": 51, + "q": 244, + "codeValueEsc": 7, + "textValueEsc": 7, + "htmlOutputEncode": 2, + "zewdAPI2": 5, + "_codeValueEsc_": 1, + "selected": 4, + "translationMode": 1, + "_appName": 1, + "typex": 1, + "type": 2, + "avoid": 1, + "Cache": 3, + "bug": 2, + "getPhraseIndex": 1, + "zewdCompiler5": 1, + "licensed": 1, + "setWarning": 2, + "isTemp": 11, + "setWLDSymbol": 1, + "Duplicate": 1, + "performance": 1, + "also": 4, + "wldAppName": 1, + "wldName": 1, + "wldSessid": 1, + "zzname": 1, + "zv": 6, + "[": 54, + "extcErr": 1, + "mess": 3, + "namespace": 1, + "zt": 20, + "valueErr": 1, + "exportCustomTags": 2, + "tagList": 1, + "filepath": 10, + ".tagList": 1, + "exportAllCustomTags": 2, + "importCustomTags": 2, + "filePath": 2, + "zewdForm": 1, + "stripSpaces": 6, + "np": 17, + "obj": 6, + "prop": 6, + "setSessionObject": 3, + "allowJSONAccess": 1, + "sessionName": 30, + "access": 21, + "disallowJSONAccess": 1, + "JSONAccess": 1, + "existsInSession": 2, + "existsInSessionArray": 2, + "p1": 5, + "p2": 10, + "p3": 3, + "p4": 2, + "p5": 2, + "p6": 2, + "p7": 2, + "p8": 2, + "p9": 2, + "p10": 2, + "p11": 2, + "clearSessionArray": 1, + "arrayName": 35, + "setSessionArray": 1, + "itemName": 16, + "itemValue": 7, + "getSessionArray": 1, + "array": 22, + "clearArray": 2, + "set": 98, + "m": 37, + "getSessionArrayErr": 1, + "Come": 1, + "here": 4, + "if": 44, + "error": 62, + "occurred": 2, + "addToSession": 2, + "@name": 4, + "mergeToSession": 1, + "mergeGlobalToSession": 2, + "globalName": 7, + "mergeGlobalFromSession": 2, + "mergeArrayToSession": 1, + "mergeArrayToSessionObject": 2, + ".array": 1, + "mergeArrayFromSession": 1, + "mergeFromSession": 1, + "deleteFromSession": 1, + "deleteFromSessionObject": 1, + "sessionNameExists": 1, + "getSessionArrayValue": 2, + "subscript": 7, + "exists": 6, + ".exists": 1, + "sessionArrayValueExists": 2, + "deleteSessionArrayValue": 2, + "Objects": 1, + "objectName": 13, + "propertyName": 3, + "propertyValue": 5, + "comma": 3, + "x": 96, + "replace": 27, + "objectName_": 2, + "_propertyName": 2, + "_propertyName_": 2, + "_propertyValue_": 1, + "_p": 1, + "quoted": 1, + "string": 50, + "FromStr": 6, + "S": 99, + "ToStr": 4, + "InText": 4, + "old": 3, + "new": 15, + "ok": 14, + "removeDocument": 1, + "zewdDOM": 3, + "instanceName": 2, + "clearXMLIndex": 1, + "zewdSchemaForm": 1, + "closeDOM": 1, + "makeTokenString": 1, + "length": 7, + "token_": 1, + "r": 88, + "makeString": 3, + "char": 9, + "len": 8, + "create": 6, + "characters": 8, + "str": 15, + "convertDateToSeconds": 1, + "hdate": 7, + "Q": 58, + "hdate*86400": 1, + "convertSecondsToDate": 1, + "secs": 2, + "secs#86400": 1, + "getTokenExpiry": 2, + "h*86400": 1, + "h": 39, + "randChar": 1, + "R": 2, + "lowerCase": 2, + "stripLeadingSpaces": 2, + "stripTrailingSpaces": 2, + "d1": 7, + "zd": 1, + "yy": 19, + "dd": 4, + "I": 43, + "<10>": 1, + "dd=": 2, + "mm=": 3, + "1": 74, + "d1=": 1, + "2": 14, + "p1=": 1, + "mm": 7, + "p2=": 1, + "yy=": 1, + "3": 6, + "dd_": 1, + "mm_": 1, + "inetTime": 1, + "Decode": 1, + "Internet": 1, + "Format": 1, + "Time": 1, + "from": 16, + "H": 1, + "format": 2, + "Offset": 1, + "relative": 1, + "to": 74, + "GMT": 1, + "eg": 3, + "hh": 4, + "ss": 4, + "<": 20, + "_hh": 1, + "time#3600": 1, + "_mm": 1, + "time#60": 1, + "_ss": 2, + "hh_": 1, + "_mm_": 1, + "openNewFile": 2, + "openFile": 2, + "openDOM": 2, + "&": 28, + "#39": 1, + "<\",\"<\")>": 1, + "string=": 1, + "gt": 1, + "amp": 1, + "HTML": 1, + "quot": 2, + "stop": 20, + "no": 54, + "no2": 1, + "p1_c_p2": 1, + "getIP": 2, + "Get": 2, + "own": 2, + "IP": 1, + "address": 1, + "ajaxErrorRedirect": 2, + "classExport": 2, + "className": 2, + "methods": 2, + ".methods": 1, + "strx": 2, + "disableEwdMgr": 1, + "enableEwdMgr": 1, + "enableWLDAccess": 1, + "disableWLDAccess": 1, + "isSSOValid": 2, + "sso": 2, "username": 8, "password": 8, + "zewdMgrAjax2": 1, + "uniqueId": 1, + "nodeOID": 2, + "filename": 2, + "linkToParentSession": 2, + "zewdCompiler20": 1, + "exportToGTM": 1, + "routine": 6, + "zewdDemo": 1, + "Tutorial": 1, + "Wed": 1, + "Apr": 1, + "getLanguage": 1, + "getRequestValue": 1, + "login": 1, "getTextValue": 4, "getPasswordValue": 2, - "trace": 24, "_username_": 1, "_password": 1, - "i": 465, "logine": 1, + "message": 8, "textid": 1, "errorMessage": 1, "ewdDemo": 8, "clearList": 2, "appendToList": 4, - "user": 27, - "f": 93, - "o": 51, "addUsername": 1, "newUsername": 5, "newUsername_": 1, @@ -36631,7 +36835,6 @@ "getSelectValue": 3, "_user": 1, "getPassword": 1, - "g": 228, "setPassword": 1, "getObjDetails": 1, "data": 43, @@ -36647,359 +36850,51 @@ "createTextArea": 1, ".textarea": 1, "userType": 4, - "selected": 4, "setMultipleSelectValues": 1, ".selected": 1, "testField3": 3, ".value": 1, "testField2": 1, "field3": 1, + "must": 8, "null": 6, "dateTime": 1, - "compute": 2, - "miles": 4, - "gallons": 4, - "miles/gallons": 1, - "computepesimist": 1, - "miles/": 1, - "computeoptimist": 1, - "/gallons": 1, - "PRCAAPR": 1, - "WASH": 1, - "ISC@ALTOONA": 1, - "PA/RGY": 1, - "PATIENT": 5, - "ACCOUNT": 1, - "PROFILE": 1, - "CONT": 1, - "/9/94": 1, - "AM": 1, - "Accounts": 1, - "Receivable": 1, - "**198": 1, - "**": 4, - "Mar": 1, - "Per": 1, - "VHA": 1, - "Directive": 1, - "routine": 6, - "modified.": 1, - "EN": 2, - "PRCATY": 2, - "NEW": 3, - "DIC": 6, - "X": 19, - "Y": 26, - "DEBT": 10, - "PRCADB": 5, - "DA": 4, - "PRCA": 14, - "COUNT": 2, - "OUT": 2, - "SEL": 1, - "BILL": 11, - "BAT": 8, - "TRAN": 5, - "DR": 4, - "DXS": 1, - "DTOUT": 2, - "DIROUT": 1, - "DIRUT": 1, - "DUOUT": 1, - "ASK": 3, - "DPTNOFZY": 2, - "DPTNOFZK": 2, - "K": 5, - "R": 2, - "DTIME": 1, - "G": 40, - "UPPER": 1, - "VALM1": 1, - "RCD": 1, - "DISV": 2, - "DUZ": 3, - "NAM": 1, - "RCFN01": 1, - "COMP": 2, - "EN1": 1, - "PRCAATR": 1, - "Y_": 3, - "PRCADB_": 1, - "HDR": 1, - "PRCAAPR1": 3, - "HDR2": 1, - "DIS": 1, - "STAT1": 2, - "F": 10, - "_PRCATY_": 1, - "COMP1": 2, - "RCY": 5, - "]": 15, - "COMP2": 2, - "STAT": 8, - "_STAT_": 1, - "TMP": 26, - "J": 38, - "_STAT": 1, - "Compile": 2, - "payments": 1, - "_TRAN": 1, - "zmwire": 53, - "M/Wire": 4, - "Protocol": 2, - "Systems": 1, - "eg": 3, - "Cache": 3, - "By": 1, - "default": 6, - "server": 1, - "runs": 2, - "port": 4, - "For": 3, - "systems": 3, - "invoked": 2, - "via": 2, - "xinetd": 2, - "Edit": 1, - "/etc/services": 1, - "add": 5, - "line": 14, - "mwire": 2, - "/tcp": 1, - "#": 1, - "Service": 1, - "Copy": 2, - "/etc/xinetd.d/mwire": 1, - "/usr/local/gtm/zmwire": 1, - "change": 6, - "its": 1, - "executable": 1, - "These": 2, - "files": 4, - "edited": 1, - "paths": 2, - "number": 5, - "Restart": 1, - "using": 4, - "sudo": 1, - "/etc/init.d/xinetd": 1, - "restart": 3, - "On": 1, - "installed": 1, - "MGWSI": 1, + "start": 26, + "student": 14, + "zwrite": 1, + "write": 59, "order": 11, - "provide": 1, - "MD5": 6, - "hashing": 1, - "function": 6, - "passwords": 1, - "Alternatively": 1, - "substitute": 1, - "callout": 1, - "choice": 1, - "Daemon": 2, - "which": 4, - "running": 1, - "jobbed": 1, - "process": 3, - "job": 1, - "zmwireDaemon": 2, - "simply": 1, - "editing": 2, - "Stop": 1, - "RESJOB": 1, - "it.": 2, - "mwireVersion": 4, - "mwireDate": 2, - "July": 1, - "t": 12, - "_crlf": 22, - "build": 2, - "crlf": 6, - "response": 29, - "zewd": 17, - "_response_": 4, - "l": 84, - "_crlf_response_crlf": 4, - "zv": 6, - "authNeeded": 6, - "input": 41, - "cleardown": 2, - "zint": 1, - "j": 67, - "role": 3, - "loop": 7, - "e": 210, - "log": 1, - "halt": 3, - "auth": 2, - "k": 122, - "ignore": 12, - "pid": 36, - "monitor": 1, - "input_crlf": 1, - "lineNo": 19, - "zsy": 2, - "_pid_": 1, - "_pid": 1, - "monitoroutput": 1, - "logger": 17, - "initialise": 3, - "tot": 2, - "count": 18, - "mwireLogger": 3, - "increment": 11, - "info": 1, - "response_": 1, - "_count": 1, - "setpassword": 1, - "SETPASSWORD": 2, - "secret": 2, - "OK": 6, - "": 1, - "role=": 1, - "admin": 1, - "newrole": 4, - "getGloRef": 3, - "gloName": 1, - "gloRef": 15, - "nb": 2, - "subs": 8, - "len": 8, - "nsp": 1, - "subs_": 2, - "quot": 2, - "_data_": 3, - "subscripts": 8, - "_value_": 1, - "_error_": 1, - "ok": 14, - "kill": 3, - "xx": 16, - "yy": 19, - "No": 17, - "access": 21, - "allowed": 18, - "global": 26, - "method": 2, - "Missing": 5, - "JSON": 7, - "transaction": 6, - "document": 6, - "step": 8, - "setJSON": 4, - "json": 9, - "globalName": 7, - "GlobalName": 3, - "Global": 8, - "name": 121, - "setGlobal": 1, - "zmwire_null_value": 1, - "Invalid": 1, - "props": 1, - "arr": 2, - "getJSON": 2, - "incr": 1, - "incrbr": 1, - "class": 1, - "##": 2, - "decr": 1, - "decrby": 1, - "subscript": 7, - "direction": 1, - "{": 5, - "subscriptValue": 1, - "dataStatus": 1, - "dataValue": 1, - "}": 5, - "nextsubscript": 2, - "reverseorder": 1, - "query": 4, - "p2": 10, - "*2": 1, - "queryget": 1, - "xxyy": 2, - "zz": 2, - "numeric": 8, - "exists": 6, - "getallsubscripts": 1, - "*": 6, - "orderall": 1, - "": 3, - "note": 2, - "escaping": 1, - "world": 4, - "foo": 2, - "CacheTempEWD": 16, - "_gloRef": 1, - "zt": 20, - "@x": 4, - "i*2": 3, - "_crlf_": 1, - "j_": 1, - "params": 10, - "resp": 5, - "_crlf_resp_crlf": 2, - "_crlf_data_crlf": 2, - "mergeto": 1, - "dataLength": 4, - "key": 22, - "keyLength": 6, - "noOfRecs": 6, - "MERGETO": 1, - "myglobal": 1, - "*6": 1, - "hello": 1, - "": 2, - "length": 7, - "means": 2, - "no": 54, - "put": 1, - "top": 1, - "r": 88, - "N.N": 12, - "noOfRecs#2": 1, - "noOfRecs/2": 1, - "_i_": 5, - "gloRef1": 2, - "gloRef1_": 2, - "_gloRef1_key_": 1, - "sub": 2, - "literal": 2, - "true": 2, - "boolean": 2, - "valquot_value_valquot": 1, - "json_value_": 1, - "subscripts1": 2, - "dd": 4, - "subx": 3, - "subNo": 1, - "numsub": 1, - "json_": 2, - "removeControlChars": 2, - "zobj1": 1, - "buff": 10, - "parseJSONObject": 2, - ".buff": 2, - "subs2": 6, - "stop": 20, - "_name_": 1, - "subs2_": 2, - "value_c": 1, - "lc": 3, - "N.N1": 4, - "string": 50, - "newString": 4, - "newString_c": 1, - "utfConvert": 1, - "Unescape": 1, - "UTF": 17, - "buf": 4, - "c1": 4, - "buf_c1_": 1, - "tr": 13, + "do": 15, + "quit": 30, + "file": 10, + "part": 3, + "DataBallet.": 4, + "C": 9, + "Laurent": 2, + "Parenteau": 2, + "": 2, + "DataBallet": 4, + "encode": 1, + "Return": 1, + "base64": 6, + "URL": 2, + "Filename": 1, + "safe": 3, + "alphabet": 2, + "RFC": 1, + "todrop": 2, + "Populate": 1, + "values": 4, + "on": 17, + "first": 10, + "use": 5, + "only.": 1, + "zextract": 3, + "zlength": 3, "Comment": 1, + "comment": 4, "block": 1, + "comments": 5, "always": 2, "semicolon": 1, "next": 1, @@ -37009,29 +36904,43 @@ "whitespace": 2, "alone": 1, "valid": 2, + "**": 4, "Comments": 1, "graphic": 3, + "character": 5, "such": 1, "@#": 1, + "*": 6, + "{": 5, + "}": 5, + "]": 15, "/": 3, "space": 1, "considered": 1, "though": 1, + "t": 12, + "it.": 2, + "ASCII": 2, "whose": 1, + "numeric": 8, + "code": 29, "above": 3, "below": 1, "are": 14, "NOT": 2, + "allowed": 18, "routine.": 1, "multiple": 1, "semicolons": 1, "okay": 1, "has": 7, "tag": 2, - "bug": 2, + "after": 3, "does": 1, + "command": 11, "Tag1": 1, "Tags": 2, + "an": 14, "uppercase": 2, "lowercase": 1, "alphabetic": 2, @@ -37050,6 +36959,7 @@ "variables": 3, "close": 1, "ANOTHER": 1, + "X": 19, "Normally": 1, "subroutine": 1, "would": 2, @@ -37060,976 +36970,119 @@ "rule": 1, "END": 1, "implicit": 1, - "PCRE": 23, - "tries": 1, - "deliver": 1, - "best": 2, - "possible": 5, - "interface": 1, - "providing": 1, - "support": 3, - "arrays": 1, - "stringified": 2, - "parameter": 1, - "names": 3, - "simplified": 1, - "API": 7, - "locales": 2, - "exceptions": 1, - "Perl5": 1, - "Match.": 1, - "pcreexamples.m": 2, - "comprehensive": 1, - "pcre": 59, - "routines": 6, - "beginner": 1, - "tips": 1, - "match": 41, - "limits": 6, - "exception": 12, - "handling": 2, - "GT.M.": 1, - "Try": 2, - "out": 2, - "known": 2, - "book": 1, - "regular": 1, - "expressions": 1, - "//regex.info/": 1, - "information": 1, - "//pcre.org/": 1, - "Initial": 2, - "release": 2, - "pkoper": 2, - "pcre.version": 1, - "config": 3, - "case": 7, - "insensitive": 7, - "protect": 11, - "erropt": 6, - "isstring": 5, - "pcre.config": 1, - ".name": 1, - ".erropt": 3, - ".isstring": 1, - ".s": 5, - ".n": 20, - "ec": 10, - "compile": 14, - "pattern": 21, - "options": 45, - "locale": 24, - "mlimit": 20, - "reclimit": 19, - "optional": 16, - "joined": 3, - "Unix": 1, - "pcre_maketables": 2, - "cases": 1, - "undefined": 1, - "called": 8, - "environment": 7, - "defined": 2, - "LANG": 4, - "LC_*": 1, - "specified": 4, - "...": 6, - "Debian": 2, - "tip": 1, - "dpkg": 1, - "reconfigure": 1, - "enable": 1, - "system": 1, - "wide": 1, - "internal": 3, - "matching": 4, - "calls": 1, - "pcre_exec": 4, - "execution": 2, - "manual": 2, - "details": 5, - "limit": 14, - "depth": 1, - "recursion": 1, - "calling": 2, - "ref": 41, - "err": 4, - "erroffset": 3, - "pcre.compile": 1, - ".pattern": 3, - ".ref": 13, - ".err": 1, - ".erroffset": 1, - "exec": 4, - "subject": 24, - "startoffset": 3, - "octets": 2, - "starts": 1, - "like": 4, - "chars": 3, - "pcre.exec": 2, - ".subject": 3, - "zl": 7, - "<0>": 2, - "ec=": 7, - "ovector": 25, - "element": 1, - "code=": 4, - "ovecsize": 5, - "fullinfo": 3, - "OPTIONS": 2, - "SIZE": 1, - "CAPTURECOUNT": 1, - "BACKREFMAX": 1, - "FIRSTBYTE": 1, - "FIRSTTABLE": 1, - "LASTLITERAL": 1, - "NAMEENTRYSIZE": 1, - "NAMECOUNT": 1, - "STUDYSIZE": 1, - "OKPARTIAL": 1, - "JCHANGED": 1, - "HASCRORLF": 1, - "MINLENGTH": 1, - "JIT": 1, - "JITSIZE": 1, - "NAME": 3, - "nametable": 4, - "1": 74, - "index": 1, - "0": 23, - "indexed": 4, - "substring": 1, - "begin": 18, - "end": 33, - "begin=": 3, - "2": 14, - "end=": 4, - "octet": 4, - "UNICODE": 1, - "so": 4, - "ze": 8, - "begin_": 1, - "_end": 1, - "store": 6, - "same": 2, - "stores": 1, - "captured": 6, - "array": 22, - "key=": 2, - "gstore": 3, - "round": 12, - "byref": 5, - "test": 6, - "ref=": 3, - "l=": 2, - "capture": 10, - "indexes": 1, - "extended": 1, - "NAMED_ONLY": 2, - "only": 9, - "named": 12, - "groups": 5, - "OVECTOR": 2, - "namedonly": 9, - "options=": 4, - "i=": 14, - "o=": 12, - "u": 6, - "namedonly=": 2, - "ovector=": 2, - "NO_AUTO_CAPTURE": 2, - "c=": 28, - "_capture_": 2, - "matches": 10, - "s=": 4, - "_s_": 1, - "GROUPED": 1, - "group": 4, - "result": 3, - "patterns": 3, - "pcredemo": 1, - "pcreccp": 1, - "cc": 1, - "procedure": 2, - "Perl": 1, - "utf8": 2, - "empty": 7, - "skip": 6, - "determine": 1, - "remove": 6, - "them": 1, - "before": 2, - "byref=": 2, - "check": 2, - "UTF8": 2, - "double": 1, - "char": 9, - "new": 15, - "utf8=": 1, - "crlf=": 3, - "NL_CRLF": 1, - "NL_ANY": 1, - "NL_ANYCRLF": 1, - "none": 1, - "NEWLINE": 1, - "..": 28, - ".start": 1, - "unwind": 1, - "call": 1, - "optimize": 1, - "do": 15, - "leave": 1, - "advance": 1, - "clear": 6, - "LF": 1, - "CR": 1, - "CRLF": 1, - "mode": 12, - "middle": 1, - ".i": 2, - ".match": 2, - ".round": 2, - ".byref": 2, - ".ovector": 2, - "replace": 27, - "subst": 3, - "last": 4, - "occurrences": 1, - "matched": 1, - "back": 4, - "th": 3, - "replaced": 1, - "where": 6, - "substitution": 2, - "begins": 1, - "substituted": 2, - "defaults": 3, - "ends": 1, - "offset": 6, - "backref": 1, - "boffset": 1, - "prepare": 1, - "reference": 2, - "stack": 8, - ".subst": 1, - ".backref": 1, - "silently": 1, - "zco": 1, - "": 1, - "s/": 6, - "b*": 7, - "/Xy/g": 6, - "print": 8, - "aa": 9, - "et": 4, - "direct": 3, - "place": 9, - "take": 1, - "setup": 3, - "trap": 10, - "source": 3, - "location": 5, - "argument": 1, - "st": 6, - "@ref": 2, - "COMPILE": 2, - "meaning": 1, - "zs": 2, - "re": 2, - "raise": 3, - "XC": 1, - "U16384": 1, - "U16385": 1, - "U16386": 1, - "U16387": 1, - "U16388": 2, - "U16389": 1, - "U16390": 1, - "U16391": 1, - "U16392": 2, - "U16393": 1, - "NOTES": 1, - "U16401": 2, - "raised": 2, - "i.e.": 3, - "NOMATCH": 2, - "ever": 1, - "uncommon": 1, - "situation": 1, - "too": 1, - "small": 1, - "considering": 1, - "size": 3, - "controlled": 1, - "here": 4, - "U16402": 1, - "U16403": 1, - "U16404": 1, - "U16405": 1, - "U16406": 1, - "U16407": 1, - "U16408": 1, - "U16409": 1, - "U16410": 1, - "U16411": 1, - "U16412": 1, - "U16414": 1, - "U16415": 1, - "U16416": 1, - "U16417": 1, - "U16418": 1, - "U16419": 1, - "U16420": 1, - "U16421": 1, - "U16423": 1, - "U16424": 1, - "U16425": 1, - "U16426": 1, - "U16427": 1, - "Fibonacci": 1, - "term": 10, - "create": 6, - "student": 14, - "zwrite": 1, - "Mumtris": 3, - "tetris": 1, - "game": 1, - "MUMPS": 1, - "fun.": 1, - "Resize": 1, - "terminal": 2, - "maximize": 1, - "PuTTY": 1, - "window": 1, - "report": 1, - "mumtris.": 1, - "setting": 3, - "ansi": 2, - "compatible": 1, - "cursor": 1, - "positioning.": 1, - "NOTICE": 1, - "uses": 1, - "making": 1, - "delays": 1, - "lower": 1, - "s.": 1, - "That": 1, - "CPU": 1, - "It": 2, - "fall": 5, - "lock": 2, - "preview": 3, - "over": 2, - "exit": 3, - "short": 1, - "circuit": 1, - "redraw": 3, - "timeout": 1, - "harddrop": 1, - "other": 1, - "ex": 5, - "hd": 3, - "*c": 1, - "<0&'d>": 1, - "t10m": 1, - "h": 39, - "q=": 6, - "d=": 1, - "zb": 2, - "3": 6, - "rotate": 5, - "right": 3, - "left": 5, - "fl=": 1, - "gr=": 1, - "hl": 2, - "help": 2, - "drop": 2, - "hd=": 1, - "matrix": 2, - "draw": 3, - "y": 33, - "ticks": 2, - "h=": 2, - "1000000000": 1, - "e=": 1, - "t10m=": 1, - "100": 2, - "n=": 1, - "ne=": 1, - "x=": 5, - "y=": 3, - "r=": 3, - "collision": 6, - "score": 5, - "k=": 1, - "4": 5, - "j=": 4, - "<1))))>": 1, - "800": 1, - "200": 1, - "lv": 5, - "lc=": 1, - "10": 1, - "mt_": 2, - "cls": 6, - "dh/2": 6, - "dw/2": 6, - "*s": 4, - "echo": 1, - "intro": 1, - "pos": 33, - "workaround": 1, - "ANSI": 1, - "driver": 1, - "NL": 1, - "some": 1, - "safe": 3, - "clearscreen": 1, - "h/2": 3, - "*w/2": 3, - "fill": 3, - "fl": 2, - "*x": 1, - "mx": 4, - "my": 5, - "**lv*sb": 1, - "*lv": 1, - "sc": 3, - "ne": 2, - "gr": 1, - "w*3": 1, - "dev": 1, - "zsh": 1, - "dw": 1, - "dh": 1, - "elements": 3, - "elemId": 3, - "rotateVersions": 1, - "rotateVersion": 2, - "bottom": 1, - "coordinate": 1, - "point": 2, - "____": 1, - "__": 2, - "||": 1, - "Implementation": 1, - "works": 1, - "ZCHSET": 2, - "please": 1, - "don": 1, - "joke.": 1, - "Serves": 1, - "well": 2, - "reverse": 1, - "engineering": 1, - "obtaining": 1, - "integer": 1, - "addition": 1, - "modulo": 1, - "division.": 1, - "//en.wikipedia.org/wiki/MD5": 1, - "#64": 1, - "msg_": 1, - "_m_": 1, - "n64": 2, - "read": 2, - ".p": 1, - "*i": 3, - "#16": 3, - "xor": 4, - "#4294967296": 6, - "n32h": 5, - "bit": 5, - "#2": 1, - "*2147483648": 2, - "a#2": 1, - "b#2": 1, - ".a": 1, - ".b": 1, - "rol": 1, - "a*": 1, - "**n": 1, - "c#4294967296": 1, - "*n": 1, - "n#256": 1, - "n#16": 2, + "Digest": 2, + "Extension": 9, + "Piotr": 7, + "Koper": 7, + "": 7, + "trademark": 2, + "Fidelity": 2, + "Information": 2, + "Services": 2, + "Inc.": 2, + "//sourceforge.net/projects/fis": 2, + "gtm/": 2, + "simple": 2, + "OpenSSL": 3, + "based": 1, + "digest": 19, + "extension": 3, + "rewrite": 1, + "EVP_DigestInit": 1, + "usage": 3, + "example": 5, + "additional": 5, + "M": 24, + "wrapper.": 1, + "//www.openssl.org/docs/crypto/EVP_DigestInit.html": 1, + "The": 11, + "return": 7, + "digest.init": 3, + "usually": 1, + "when": 11, + "invalid": 4, + "algorithm": 1, + "was": 5, + "specification.": 1, + "Anyway": 1, + "properly": 1, + "used": 6, + "never": 4, + "fail.": 1, + "Please": 2, + "feel": 2, + "contact": 2, + "me": 2, + "questions": 2, + "returns": 7, + "HEX": 1, + "all": 8, + "one": 5, + "digest.update": 2, + ".c": 2, + ".m": 11, + "digest.final": 2, + ".d": 1, + "init": 6, + "alg": 3, + "context": 1, + "handler": 9, + "try": 1, + "etc": 1, + "returned": 1, + "occurs": 1, + "e.g.": 2, + "unknown": 1, + "update": 1, + "ctx": 4, + "msg": 6, + "updates": 1, + ".ctx": 2, + ".msg": 1, + "final": 1, + "hex": 1, + "encoded": 8, + "frees": 1, + "memory": 1, + "allocated": 1, + ".digest": 1, + "algorithms": 1, + "availability": 1, + "depends": 1, + "libcrypto": 1, + "configuration": 1, + "md4": 1, + "md5": 2, + "sha": 1, + "sha1": 1, + "sha224": 1, + "sha256": 1, + "sha512": 1, + "dss1": 1, + "ripemd160": 1, + "These": 2, "two": 2, + "routines": 6, "illustrate": 1, "dynamic": 1, "scope": 1, "triangle1": 1, "sum": 15, "main2": 1, + "y": 33, "triangle2": 1, - "statement": 3, - "statements": 1, - "contrasted": 1, - "if3": 1, - "else": 7, - "clause": 2, - "if4": 1, - "bodies": 1, - "MDB": 60, - "M/DB": 2, - "Mumps": 1, - "Emulation": 1, - "Amazon": 1, - "SimpleDB": 1, - "buildDate": 1, - "indexLength": 10, - "Note": 2, - "keyId": 108, - "been": 4, - "tested": 1, - "time": 9, - "these": 1, - "methods": 2, - "To": 2, - "Initialise": 2, - "service": 1, - "//192.168.1.xxx/mdb/test.mgwsi": 1, - "Action": 2, - "addUser": 2, - "userKeyId": 6, - "userSecretKey": 6, - "requestId": 17, - "boxUsage": 11, - "startTime": 21, - ".startTime": 5, - "MDBUAF": 2, - ".boxUsage": 22, - "createDomain": 1, - "domainName": 38, - "dn": 4, - "dnx": 3, - "id": 33, - "noOfDomains": 12, - "token": 21, - "MDBConfig": 1, - "getDomainId": 3, - "found": 7, - "namex": 8, - "buildItemNameIndex": 2, - "domainId": 53, - "itemId": 41, - "itemValue": 7, - "itemValuex": 3, - "countDomains": 2, - "deleteDomain": 2, - "listDomains": 1, - "maxNoOfDomains": 2, - "nextToken": 7, - "domainList": 3, - "fullName": 3, - "decodeBase64": 1, - "encodeBase64": 1, - "itemExists": 1, - "getItemId": 2, - "getAttributeValueId": 3, - "attribId": 36, - "valuex": 13, - "putAttributes": 2, - "itemName": 16, - "attributes": 32, - "valueId": 16, - "xvalue": 4, - "Item": 1, - "Domain": 1, - "itemNamex": 4, - "parseJSON": 1, - "attributesJSON": 1, - ".attributes": 5, - "attribute": 14, - "getAttributeId": 2, - "domain": 1, - "Not": 1, - "existing": 2, - "values": 4, - "now": 1, - "name/value": 2, - "pair": 1, - "getAttributes": 2, - "suppressBoxUsage": 1, - "attrNo": 9, - "valueNo": 6, - "delete": 2, - "item": 2, - "associated": 1, - "queryIndex": 1, - "records": 2, - "pairs": 2, - "vno": 2, - "completely": 3, - "references": 1, - "maxNoOfItems": 3, - "itemList": 12, - "session": 1, - "identifier": 1, - "stored": 1, - "queryExpression": 16, - "relink": 1, - "zewdGTMRuntime": 1, - "CGIEVAR": 1, - "cgi": 1, - "unescName": 5, - "urlDecode": 2, - "KEY": 36, - "WebLink": 1, - "entry": 5, - "action": 15, - "AWSAcessKeyId": 1, - "db": 9, - "hash": 1, - "itemsAndAttrs": 2, - "secretKey": 1, - "signatureMethod": 2, - "signatureVersion": 3, - "stringToSign": 2, - "rltKey": 2, - "_action_": 2, - "h_": 3, - "mdbKey": 2, - "errorResponse": 9, - ".requestId": 7, - "createResponse": 4, - "installMDBM": 1, - "authenticate": 1, - "MDBSession": 1, - "createResponseStringToSign": 1, - "Security": 1, - "_db": 1, - "MDBAPI": 1, - "_db_": 1, - "db_": 1, - "_action": 1, - "metaData": 1, - "domainMetadata": 1, - ".metaData": 1, - "paramName": 8, - "paramValue": 5, - "Query": 1, - "DomainName": 2, - "QueryExpression": 2, - "MaxNumberOfItems": 2, - "NextToken": 3, - "QueryWithAttributes": 1, - "AttributeName.": 2, - "Select": 2, - "SelectExpression": 1, - "entering": 1, - "runSelect.": 1, - "selectExpression": 3, - "finished": 1, - "runSelect": 3, - "select": 3, - "asc": 1, - "inValue": 6, - "str": 15, - "expr": 18, - "rel": 2, - "itemStack": 3, - "between": 2, - "<=\">": 1, - "lastWord=": 7, - "inAttr=": 5, - "expr=": 10, - "thisWord=": 7, - "inAttr": 2, - "queryExpression=": 4, - "_queryExpression": 2, - "isNull": 1, - "5": 1, - "8": 1, - "isNotNull": 1, - "9": 1, - "np": 17, - "prevName": 1, - "np=": 1, - "diffNames": 6, - "_term": 3, - "expr_": 1, - "_orderBy": 1, - "runQuery": 2, - ".itemList": 4, - "escVals": 1, - "str_c": 2, - "_x_": 1, - "orderBy": 1, - "_query": 1, - "parseSelect": 1, - ".domainName": 2, - ".queryExpression": 1, - ".orderBy": 1, - ".limit": 1, - "replaceAll": 11, - "executeSelect": 1, - ".itemStack": 1, - "***": 2, - "listCopy": 3, - "escape": 7, - "externalSelect": 2, - "_keyId_": 1, - "_selectExpression": 1, - "FromStr": 6, - "ToStr": 4, - "InText": 4, - "old": 3, - "p1": 5, - "stripTrailingSpaces": 2, - "spaces": 3, - "makeString": 3, - "string_spaces": 1, + "compute": 2, + "Fibonacci": 1, + "b": 64, + "term": 10, "start1": 2, + "entry": 5, "start2": 1, - "run": 2, - "APIs": 1, - "Fri": 1, - "Nov": 1, - "getVersion": 1, - "zewdCompiler": 6, - "date": 1, - "getDate": 1, - "compilePage": 2, - "app": 13, - "technology": 9, - "outputPath": 4, - "multilingual": 4, - "maxLines": 4, - "compileAll": 2, - "templatePageName": 2, - "autoTranslate": 2, - "verbose": 2, - "zewdMgr": 1, - "startSession": 2, - "requestArray": 2, - "serverArray": 1, - "sessionArray": 5, - "filesArray": 1, - "zewdPHP": 8, - ".requestArray": 2, - ".serverArray": 1, - ".sessionArray": 3, - ".filesArray": 1, - "closeSession": 2, - "saveSession": 2, - "endOfPage": 2, - "prePageScript": 2, - "releaseLock": 2, - "tokeniseURL": 2, - "url": 2, - "zewdCompiler16": 5, - "getSessid": 1, - "isTokenExpired": 2, - "zewdSession": 39, - "initialiseSession": 1, - "deleteSession": 2, - "changeApp": 1, - "appName": 4, - "setRedirect": 1, - "toPage": 1, - "path": 4, - "getRootURL": 1, - "_sessid_": 3, - "_token_": 1, - "_nextPage": 1, - "zcvt": 11, - "nextPage": 1, - "isNextPageTokenValid": 2, - "zewdCompiler13": 10, - "isCSP": 1, - "normaliseTextValue": 1, - "text": 6, - "writeLine": 2, - "CacheTempBuffer": 2, - "displayOptions": 2, - "fieldName": 5, - "listName": 6, - "codeValue": 7, - "nnvp": 1, - "nvp": 1, - "textValue": 6, - "getSessionValue": 3, - "codeValueEsc": 7, - "textValueEsc": 7, - "htmlOutputEncode": 2, - "zewdAPI2": 5, - "_codeValueEsc_": 1, - "translationMode": 1, - "_appName": 1, - "typex": 1, - "type": 2, - "avoid": 1, - "getPhraseIndex": 1, - "zewdCompiler5": 1, - "licensed": 1, - "setWarning": 2, - "isTemp": 11, - "setWLDSymbol": 1, - "Duplicate": 1, - "performance": 1, - "wldAppName": 1, - "wldName": 1, - "wldSessid": 1, - "zzname": 1, - "extcErr": 1, - "mess": 3, - "namespace": 1, - "valueErr": 1, - "exportCustomTags": 2, - "tagList": 1, - "filepath": 10, - ".tagList": 1, - "exportAllCustomTags": 2, - "importCustomTags": 2, - "filePath": 2, - "zewdForm": 1, - "stripSpaces": 6, - "obj": 6, - "prop": 6, - "setSessionObject": 3, - "allowJSONAccess": 1, - "sessionName": 30, - "disallowJSONAccess": 1, - "JSONAccess": 1, - "existsInSession": 2, - "existsInSessionArray": 2, - "p3": 3, - "p4": 2, - "p5": 2, - "p6": 2, - "p7": 2, - "p8": 2, - "p9": 2, - "p10": 2, - "p11": 2, - "clearSessionArray": 1, - "arrayName": 35, - "setSessionArray": 1, - "getSessionArray": 1, - "clearArray": 2, - "getSessionArrayErr": 1, - "Come": 1, - "occurred": 2, - "addToSession": 2, - "@name": 4, - "mergeToSession": 1, - "mergeGlobalToSession": 2, - "mergeGlobalFromSession": 2, - "mergeArrayToSession": 1, - "mergeArrayToSessionObject": 2, - ".array": 1, - "mergeArrayFromSession": 1, - "mergeFromSession": 1, - "deleteFromSession": 1, - "deleteFromSessionObject": 1, - "sessionNameExists": 1, - "getSessionArrayValue": 2, - ".exists": 1, - "sessionArrayValueExists": 2, - "deleteSessionArrayValue": 2, - "Objects": 1, - "objectName": 13, - "propertyName": 3, - "propertyValue": 5, - "comma": 3, - "objectName_": 2, - "_propertyName": 2, - "_propertyName_": 2, - "_propertyValue_": 1, - "_p": 1, - "quoted": 1, - "removeDocument": 1, - "zewdDOM": 3, - "instanceName": 2, - "clearXMLIndex": 1, - "zewdSchemaForm": 1, - "closeDOM": 1, - "makeTokenString": 1, - "token_": 1, - "convertDateToSeconds": 1, - "hdate": 7, - "hdate*86400": 1, - "convertSecondsToDate": 1, - "secs": 2, - "secs#86400": 1, - "getTokenExpiry": 2, - "h*86400": 1, - "randChar": 1, - "lowerCase": 2, - "stripLeadingSpaces": 2, - "d1": 7, - "zd": 1, - "<10>": 1, - "dd=": 2, - "mm=": 3, - "d1=": 1, - "p1=": 1, - "mm": 7, - "p2=": 1, - "yy=": 1, - "dd_": 1, - "mm_": 1, - "inetTime": 1, - "Decode": 1, - "Internet": 1, - "Format": 1, - "Time": 1, - "H": 1, - "format": 2, - "Offset": 1, - "relative": 1, - "GMT": 1, - "hh": 4, - "ss": 4, - "_hh": 1, - "time#3600": 1, - "_mm": 1, - "time#60": 1, - "_ss": 2, - "hh_": 1, - "_mm_": 1, - "openNewFile": 2, - "openFile": 2, - "openDOM": 2, - "#39": 1, - "<\",\"<\")>": 1, - "string=": 1, - "gt": 1, - "amp": 1, - "HTML": 1, - "no2": 1, - "p1_c_p2": 1, - "getIP": 2, - "Get": 2, - "own": 2, - "IP": 1, - "address": 1, - "ajaxErrorRedirect": 2, - "classExport": 2, - "className": 2, - ".methods": 1, - "strx": 2, - "disableEwdMgr": 1, - "enableEwdMgr": 1, - "enableWLDAccess": 1, - "disableWLDAccess": 1, - "isSSOValid": 2, - "sso": 2, - "zewdMgrAjax2": 1, - "uniqueId": 1, - "nodeOID": 2, - "filename": 2, - "linkToParentSession": 2, - "zewdCompiler20": 1, - "exportToGTM": 1, + "function": 6, "computes": 1, "factorial": 3, "f*n": 1, "main": 1, - "label1": 1, "GMRGPNB0": 1, "CISC/JH/RM": 1, "NARRATIVE": 1, @@ -38054,6 +37107,7 @@ "BUILDING": 1, "GMRGE0": 11, "GMRGADD": 4, + "D": 64, "GMR": 6, "GMRGA0": 11, "GMRGPDA": 9, @@ -38061,11 +37115,14 @@ "NOW": 1, "DTC": 1, "GMRGB0": 9, + "O": 24, "GMRGST": 6, "GMRGPDT": 2, + "STAT": 8, "GMRGRUT0": 3, "GMRGF0": 3, "GMRGSTAT": 8, + "P": 68, "_GMRGB0_": 2, "GMRD": 6, "GMRGSSW": 3, @@ -38079,14 +37136,763 @@ "STORETXT": 1, "GMRGRUT1": 1, "GMRGSPC": 3, + "F": 10, "GMRGD0": 7, "ALIST": 1, + "G": 40, + "TMP": 26, + "J": 38, "GMRGPLVL": 6, "GMRGA0_": 1, "_GMRGD0_": 1, "_GMRGSSW_": 1, "_GMRGADD": 1, "GMRGI0": 6, + "label1": 1, + "if1": 2, + "statement": 3, + "if2": 2, + "statements": 1, + "contrasted": 1, + "": 3, + "variable": 8, + "a=": 3, + "smaller": 3, + "than": 4, + "b=": 4, + "if3": 1, + "else": 7, + "clause": 2, + "if4": 1, + "bodies": 1, + "exercise": 1, + "car": 14, + "@": 8, + "MD5": 6, + "Implementation": 1, + "It": 2, + "works": 1, + "ZCHSET": 2, + "please": 1, + "don": 1, + "only": 9, + "joke.": 1, + "Serves": 1, + "well": 2, + "reverse": 1, + "engineering": 1, + "obtaining": 1, + "boolean": 2, + "integer": 1, + "addition": 1, + "modulo": 1, + "division.": 1, + "//en.wikipedia.org/wiki/MD5": 1, + "#64": 1, + "msg_": 1, + "_m_": 1, + "n64": 2, + "*8": 2, + "read": 2, + ".p": 1, + "..": 28, + "...": 6, + "*i": 3, + "#16": 3, + "xor": 4, + "rotate": 5, + "#4294967296": 6, + "n32h": 5, + "bit": 5, + "#2": 1, + "*2147483648": 2, + "a#2": 1, + "b#2": 1, + ".a": 1, + ".b": 1, + "rol": 1, + "a*": 1, + "**n": 1, + "c#4294967296": 1, + "*n": 1, + "n#256": 1, + "n#16": 2, + "MDB": 60, + "M/DB": 2, + "Mumps": 1, + "Emulation": 1, + "Amazon": 1, + "SimpleDB": 1, + "buildDate": 1, + "indexLength": 10, + "Note": 2, + "keyId": 108, + "been": 4, + "tested": 1, + "these": 1, + "called": 8, + "To": 2, + "Initialise": 2, + "service": 1, + "//192.168.1.xxx/mdb/test.mgwsi": 1, + "Action": 2, + "addUser": 2, + "userKeyId": 6, + "userSecretKey": 6, + "requestId": 17, + "boxUsage": 11, + "startTime": 21, + ".startTime": 5, + "MDBUAF": 2, + "end": 33, + ".boxUsage": 22, + "createDomain": 1, + "domainName": 38, + "dn": 4, + "dnx": 3, + "id": 33, + "noOfDomains": 12, + "MDBConfig": 1, + "getDomainId": 3, + "found": 7, + "namex": 8, + "buildItemNameIndex": 2, + "domainId": 53, + "itemId": 41, + "itemValuex": 3, + "countDomains": 2, + "key": 22, + "deleteDomain": 2, + "listDomains": 1, + "maxNoOfDomains": 2, + "nextToken": 7, + "domainList": 3, + "fullName": 3, + "decodeBase64": 1, + "encodeBase64": 1, + "itemExists": 1, + "getItemId": 2, + "getAttributeValueId": 3, + "attribId": 36, + "valuex": 13, + "putAttributes": 2, + "attributes": 32, + "valueId": 16, + "xvalue": 4, + "add": 5, + "Item": 1, + "Domain": 1, + "itemNamex": 4, + "parseJSON": 1, + "zmwire": 53, + "attributesJSON": 1, + ".attributes": 5, + "attribute": 14, + "getAttributeId": 2, + "domain": 1, + "Not": 1, + "same": 2, + "remove": 6, + "existing": 2, + "now": 1, + "name/value": 2, + "pair": 1, + "getAttributes": 2, + "suppressBoxUsage": 1, + "attrNo": 9, + "valueNo": 6, + "delete": 2, + "item": 2, + "associated": 1, + "queryIndex": 1, + "records": 2, + "specified": 4, + "pairs": 2, + "vno": 2, + "left": 5, + "completely": 3, + "references": 1, + "maxNoOfItems": 3, + "itemList": 12, + "session": 1, + "identifier": 1, + "stored": 1, + "queryExpression": 16, + "relink": 1, + "zewdGTMRuntime": 1, + "CGIEVAR": 1, + "cgi": 1, + "unescName": 5, + "urlDecode": 2, + "KEY": 36, + "response": 29, + "WebLink": 1, + "point": 2, + "action": 15, + "AWSAcessKeyId": 1, + "db": 9, + "hash": 1, + "itemsAndAttrs": 2, + "secretKey": 1, + "signatureMethod": 2, + "signatureVersion": 3, + "stringToSign": 2, + "rltKey": 2, + "_action_": 2, + "h_": 3, + "mdbKey": 2, + "errorResponse": 9, + "initialise": 3, + ".requestId": 7, + "createResponse": 4, + "installMDBM": 1, + "authenticate": 1, + "MDBSession": 1, + "createResponseStringToSign": 1, + "Security": 1, + "OK": 6, + "_db": 1, + "MDBAPI": 1, + "lineNo": 19, + "CacheTempEWD": 16, + "_db_": 1, + "db_": 1, + "_action": 1, + "resp": 5, + "metaData": 1, + "domainMetadata": 1, + ".metaData": 1, + "paramName": 8, + "paramValue": 5, + "_i_": 5, + "Query": 1, + "DomainName": 2, + "QueryExpression": 2, + "MaxNumberOfItems": 2, + "NextToken": 3, + "QueryWithAttributes": 1, + "AttributeName.": 2, + "Select": 2, + "SelectExpression": 1, + "entering": 1, + "runSelect.": 1, + "selectExpression": 3, + "finished": 1, + "runSelect": 3, + "count": 18, + "select": 3, + "where": 6, + "limit": 14, + "asc": 1, + "inValue": 6, + "expr": 18, + "rel": 2, + "itemStack": 3, + "between": 2, + "<=\">": 1, + "lastWord=": 7, + "inAttr=": 5, + "expr=": 10, + "thisWord=": 7, + "inAttr": 2, + "c=": 28, + "queryExpression=": 4, + "_queryExpression": 2, + "4": 5, + "isNull": 1, + "5": 1, + "8": 1, + "isNotNull": 1, + "9": 1, + "offset": 6, + "prevName": 1, + "np=": 1, + "diffNames": 6, + "_term": 3, + "expr_": 1, + "_orderBy": 1, + "runQuery": 2, + ".itemList": 4, + "escVals": 1, + "str_c": 2, + "_x_": 1, + "query": 4, + "orderBy": 1, + "_query": 1, + "parseSelect": 1, + ".domainName": 2, + ".queryExpression": 1, + ".orderBy": 1, + ".limit": 1, + "executeSelect": 1, + ".itemStack": 1, + "***": 2, + "listCopy": 3, + "N.N": 12, + "N.N1": 4, + "externalSelect": 2, + "json": 9, + "_keyId_": 1, + "_selectExpression": 1, + "spaces": 3, + "string_spaces": 1, + "test": 6, + "miles": 4, + "gallons": 4, + "miles/gallons": 1, + "computepesimist": 1, + "miles/": 1, + "computeoptimist": 1, + "/gallons": 1, + "Mumtris": 3, + "tetris": 1, + "game": 1, + "MUMPS": 1, + "fun.": 1, + "Resize": 1, + "terminal": 2, + "maximize": 1, + "PuTTY": 1, + "window": 1, + "restart": 3, + "so": 4, + "report": 1, + "true": 2, + "size": 3, + "mumtris.": 1, + "Try": 2, + "setting": 3, + "ansi": 2, + "compatible": 1, + "cursor": 1, + "positioning.": 1, + "NOTICE": 1, + "uses": 1, + "making": 1, + "delays": 1, + "lower": 1, + "s.": 1, + "That": 1, + "means": 2, + "CPU": 1, + "fall": 5, + "lock": 2, + "clear": 6, + "change": 6, + "preview": 3, + "over": 2, + "exit": 3, + "short": 1, + "circuit": 1, + "redraw": 3, + "timeout": 1, + "harddrop": 1, + "other": 1, + "ex": 5, + "hd": 3, + "*c": 1, + "<0&'d>": 1, + "i=": 14, + "st": 6, + "t10m": 1, + "0": 23, + "<0>": 2, + "q=": 6, + "d=": 1, + "zb": 2, + "right": 3, + "fl=": 1, + "gr=": 1, + "hl": 2, + "help": 2, + "drop": 2, + "hd=": 1, + "matrix": 2, + "stack": 8, + "draw": 3, + "ticks": 2, + "h=": 2, + "1000000000": 1, + "e=": 1, + "t10m=": 1, + "100": 2, + "n=": 1, + "ne=": 1, + "x=": 5, + "y=": 3, + "r=": 3, + "collision": 6, + "score": 5, + "k=": 1, + "j=": 4, + "<1))))>": 1, + "800": 1, + "200": 1, + "lv": 5, + "lc=": 1, + "10": 1, + "lc": 3, + "mt_": 2, + "cls": 6, + ".s": 5, + "dh/2": 6, + "dw/2": 6, + "*s": 4, + "u": 6, + "echo": 1, + "intro": 1, + "workaround": 1, + "ANSI": 1, + "driver": 1, + "NL": 1, + "some": 1, + "place": 9, + "clearscreen": 1, + "N": 19, + "h/2": 3, + "*w/2": 3, + "fill": 3, + "fl": 2, + "*x": 1, + "mx": 4, + "my": 5, + "step": 8, + "**lv*sb": 1, + "*lv": 1, + "sc": 3, + "ne": 2, + "gr": 1, + "w*3": 1, + "dev": 1, + "zsh": 1, + "dw": 1, + "dh": 1, + "elements": 3, + "elemId": 3, + "rotateVersions": 1, + "rotateVersion": 2, + "bottom": 1, + "coordinate": 1, + "____": 1, + "__": 2, + "||": 1, + "ax": 2, + "bx": 2, + "cx": 2, + "ay": 2, + "cy": 2, + "sumx": 3, + "sqrx": 3, + "sumxy": 5, + "x*x": 1, + "x*y": 1, + "PCRE": 23, + "tries": 1, + "deliver": 1, + "best": 2, + "possible": 5, + "interface": 1, + "world": 4, + "providing": 1, + "support": 3, + "arrays": 1, + "stringified": 2, + "parameter": 1, + "names": 3, + "simplified": 1, + "API": 7, + "locales": 2, + "exceptions": 1, + "Perl5": 1, + "Global": 8, + "Match.": 1, + "pcreexamples.m": 2, + "comprehensive": 1, + "examples": 4, + "pcre": 59, + "beginner": 1, + "level": 5, + "tips": 1, + "match": 41, + "limits": 6, + "exception": 12, + "handling": 2, + "UTF": 17, + "GT.M.": 1, + "out": 2, + "known": 2, + "book": 1, + "regular": 1, + "expressions": 1, + "//regex.info/": 1, + "For": 3, + "information": 1, + "//pcre.org/": 1, + "Initial": 2, + "release": 2, + "pkoper": 2, + "pcre.version": 1, + "config": 3, + "case": 7, + "insensitive": 7, + "protect": 11, + "erropt": 6, + "isstring": 5, + "pcre.config": 1, + ".name": 1, + ".erropt": 3, + ".isstring": 1, + ".n": 20, + "ec": 10, + "compile": 14, + "pattern": 21, + "options": 45, + "locale": 24, + "mlimit": 20, + "reclimit": 19, + "optional": 16, + "joined": 3, + "Unix": 1, + "pcre_maketables": 2, + "cases": 1, + "undefined": 1, + "environment": 7, + "defined": 2, + "LANG": 4, + "LC_*": 1, + "output": 49, + "Debian": 2, + "tip": 1, + "dpkg": 1, + "reconfigure": 1, + "enable": 1, + "system": 1, + "wide": 1, + "number": 5, + "internal": 3, + "matching": 4, + "calls": 1, + "pcre_exec": 4, + "execution": 2, + "manual": 2, + "details": 5, + "depth": 1, + "recursion": 1, + "calling": 2, + "ref": 41, + "err": 4, + "erroffset": 3, + "pcre.compile": 1, + ".pattern": 3, + ".ref": 13, + ".err": 1, + ".erroffset": 1, + "exec": 4, + "subject": 24, + "startoffset": 3, + "octets": 2, + "starts": 1, + "like": 4, + "chars": 3, + "pcre.exec": 2, + ".subject": 3, + "zl": 7, + "ec=": 7, + "ovector": 25, + "element": 1, + "code=": 4, + "ovecsize": 5, + "fullinfo": 3, + "OPTIONS": 2, + "SIZE": 1, + "CAPTURECOUNT": 1, + "BACKREFMAX": 1, + "FIRSTBYTE": 1, + "FIRSTTABLE": 1, + "LASTLITERAL": 1, + "NAMEENTRYSIZE": 1, + "NAMECOUNT": 1, + "STUDYSIZE": 1, + "OKPARTIAL": 1, + "JCHANGED": 1, + "HASCRORLF": 1, + "MINLENGTH": 1, + "JIT": 1, + "JITSIZE": 1, + "NAME": 3, + "nametable": 4, + "index": 1, + "indexed": 4, + "substring": 1, + "begin": 18, + "begin=": 3, + "end=": 4, + "contains": 2, + "octet": 4, + "UNICODE": 1, + "ze": 8, + "begin_": 1, + "_end": 1, + "store": 6, + "stores": 1, + "captured": 6, + "key=": 2, + "gstore": 3, + "round": 12, + "byref": 5, + "global": 26, + "ref=": 3, + "l=": 2, + "capture": 10, + "indexes": 1, + "extended": 1, + "NAMED_ONLY": 2, + "named": 12, + "groups": 5, + "OVECTOR": 2, + "namedonly": 9, + "options=": 4, + "o=": 12, + "namedonly=": 2, + "ovector=": 2, + "NO_AUTO_CAPTURE": 2, + "_capture_": 2, + "matches": 10, + "s=": 4, + "_s_": 1, + "GROUPED": 1, + "group": 4, + "result": 3, + "patterns": 3, + "pcredemo": 1, + "pcreccp": 1, + "cc": 1, + "procedure": 2, + "Perl": 1, + "utf8": 2, + "crlf": 6, + "empty": 7, + "skip": 6, + "determine": 1, + "them": 1, + "before": 2, + "byref=": 2, + "check": 2, + "UTF8": 2, + "double": 1, + "utf8=": 1, + "crlf=": 3, + "NL_CRLF": 1, + "NL_ANY": 1, + "NL_ANYCRLF": 1, + "none": 1, + "build": 2, + "NEWLINE": 1, + ".start": 1, + "unwind": 1, + "call": 1, + "optimize": 1, + "leave": 1, + "advance": 1, + "LF": 1, + "CR": 1, + "CRLF": 1, + "middle": 1, + ".i": 2, + ".match": 2, + ".round": 2, + ".byref": 2, + ".ovector": 2, + "subst": 3, + "last": 4, + "occurrences": 1, + "matched": 1, + "back": 4, + "th": 3, + "replaced": 1, + "substitution": 2, + "begins": 1, + "substituted": 2, + "defaults": 3, + "ends": 1, + "backref": 1, + "boffset": 1, + "prepare": 1, + "reference": 2, + ".subst": 1, + ".backref": 1, + "silently": 1, + "zco": 1, + "": 1, + "s/": 6, + "b*": 7, + "/Xy/g": 6, + "print": 8, + "aa": 9, + "et": 4, + "direct": 3, + "take": 1, + "default": 6, + "setup": 3, + "trap": 10, + "source": 3, + "location": 5, + "argument": 1, + "@ref": 2, + "E": 12, + "COMPILE": 2, + "meaning": 1, + "zs": 2, + "re": 2, + "raise": 3, + "XC": 1, + "specific": 3, + "U16384": 1, + "U16385": 1, + "U16386": 1, + "U16387": 1, + "U16388": 2, + "U16389": 1, + "U16390": 1, + "U16391": 1, + "U16392": 2, + "U16393": 1, + "NOTES": 1, + "U16401": 2, + "raised": 2, + "i.e.": 3, + "NOMATCH": 2, + "ever": 1, + "uncommon": 1, + "situation": 1, + "too": 1, + "small": 1, + "considering": 1, + "controlled": 1, + "U16402": 1, + "U16403": 1, + "U16404": 1, + "U16405": 1, + "U16406": 1, + "U16407": 1, + "U16408": 1, + "U16409": 1, + "U16410": 1, + "U16411": 1, + "U16412": 1, + "U16414": 1, + "U16415": 1, + "U16416": 1, + "U16417": 1, + "U16418": 1, + "U16419": 1, + "U16420": 1, + "U16421": 1, + "U16423": 1, + "U16424": 1, + "U16425": 1, + "U16426": 1, + "U16427": 1, "Examples": 4, "pcre.m": 1, "parameters": 1, @@ -38109,6 +37915,7 @@ "myexception2": 2, "st_": 1, "zl_": 2, + "Compile": 2, ".options": 1, "Run": 1, ".offset": 1, @@ -38119,6 +37926,7 @@ "usable": 1, "integers": 1, "way": 1, + "i*2": 3, "what": 2, "/mg": 2, "aaa": 1, @@ -38135,6 +37943,7 @@ "second": 1, "letter": 1, "": 1, + "which": 4, "ISO8859": 1, "//en.wikipedia.org/wiki/Polish_code_pages": 1, "complete": 1, @@ -38167,6 +37976,7 @@ "utflocale": 2, "LC_CTYPE": 1, "Set": 2, + "obtain": 2, "results.": 1, "envlocale": 2, "ztrnlnm": 2, @@ -38179,6 +37989,7 @@ "gtm_icu_version": 1, "recompiled": 1, "object": 4, + "files": 4, "Instructions": 1, "Install": 1, "libicu48": 2, @@ -38211,11 +38022,14 @@ "engine": 1, "very": 2, "long": 2, + "runs": 2, "especially": 1, "there": 2, + "paths": 2, "tree": 1, "checked.": 1, "Functions": 1, + "using": 4, "itself": 1, "allows": 1, "MATCH_LIMIT": 1, @@ -38248,11 +38062,14 @@ "caller": 1, "exception.": 1, "lead": 1, + "writing": 4, "prompt": 1, "terminating": 1, "image.": 1, + "define": 2, "handlers.": 1, "Handler": 1, + "No": 17, "nohandler": 4, "Pattern": 1, "failed": 1, @@ -38301,6 +38118,92 @@ "newline": 1, "utf8support": 1, "myexception3": 1, + "contrasting": 1, + "postconditionals": 1, + "IF": 9, + "commands": 1, + "post1": 1, + "postconditional": 3, + "purposely": 4, + "TEST": 16, + "false": 5, + "post2": 1, + "special": 2, + "post": 1, + "condition": 1, + "PRCAAPR": 1, + "WASH": 1, + "ISC@ALTOONA": 1, + "PA/RGY": 1, + "PATIENT": 5, + "ACCOUNT": 1, + "PROFILE": 1, + "CONT": 1, + "/9/94": 1, + "AM": 1, + "V": 2, + "Accounts": 1, + "Receivable": 1, + "**198": 1, + "Mar": 1, + "Per": 1, + "VHA": 1, + "Directive": 1, + "modified.": 1, + "EN": 2, + "PRCATY": 2, + "NEW": 3, + "DIC": 6, + "Y": 26, + "DEBT": 10, + "PRCADB": 5, + "DA": 4, + "PRCA": 14, + "COUNT": 2, + "OUT": 2, + "SEL": 1, + "BILL": 11, + "BAT": 8, + "TRAN": 5, + "DR": 4, + "DXS": 1, + "DTOUT": 2, + "DIROUT": 1, + "DIRUT": 1, + "DUOUT": 1, + "ASK": 3, + "DPTNOFZY": 2, + "DPTNOFZK": 2, + "K": 5, + "DTIME": 1, + "UPPER": 1, + "VALM1": 1, + "RCD": 1, + "DISV": 2, + "DUZ": 3, + "NAM": 1, + "RCFN01": 1, + "COMP": 2, + "EN1": 1, + "PRCAATR": 1, + "Y_": 3, + "PRCADB_": 1, + "HDR": 1, + "PRCAAPR1": 3, + "HDR2": 1, + "DIS": 1, + "STAT1": 2, + "_PRCATY_": 1, + "COMP1": 2, + "RCY": 5, + "COMP2": 2, + "_STAT_": 1, + "_STAT": 1, + "payments": 1, + "_TRAN": 1, + "Keith": 1, + "Lynch": 1, + "p#f": 1, "PXAI": 1, "ISL/JVS": 1, "ISA/KWP": 1, @@ -38327,9 +38230,11 @@ "PXACCNT": 2, "add/edit/delete": 1, "PCE.": 1, + "required": 4, "pointer": 4, "visit": 3, "related.": 1, + "then": 2, "nodes": 1, "needed": 1, "lookup/create": 1, @@ -38351,6 +38256,7 @@ "Primary": 3, "Provider": 1, "moment": 1, + "editing": 2, "being": 1, "dangerous": 1, "dotted": 1, @@ -38388,6 +38294,7 @@ "located": 1, "Order": 1, "#100": 1, + "process": 3, "processed": 1, "could": 1, "incorrectly": 1, @@ -38442,6 +38349,7 @@ "ARRAY": 2, "PXAICPTV": 1, "SEND": 1, + "W": 4, "BLD": 2, "DIALOG": 4, ".PXAERR": 3, @@ -38457,6 +38365,7 @@ "PRI": 3, "PRVPRIM": 2, "AUPNVPRV": 2, + "U": 14, ".04": 1, "DIQ1": 1, "POVPRM": 1, @@ -38478,23 +38387,6 @@ ".F": 2, "..E": 1, "...S": 5, - "DataBallet.": 4, - "Laurent": 2, - "Parenteau": 2, - "": 2, - "DataBallet": 4, - "encode": 1, - "Return": 1, - "base64": 6, - "URL": 2, - "Filename": 1, - "alphabet": 2, - "RFC": 1, - "todrop": 2, - "Populate": 1, - "only.": 1, - "zextract": 3, - "zlength": 3, "decode": 1, "val": 5, "Decoded": 1, @@ -38539,6 +38431,7 @@ "IS": 3, "QUEUED.": 1, "WVB": 4, + "OR": 2, "OPEN": 1, "ONLY": 1, "CLOSED.": 1, @@ -38573,6 +38466,7 @@ "DEQUEUE": 1, "TASKMAN": 1, "QUEUE": 1, + "OF": 2, "PRINTOUT.": 1, "SETVARS": 2, "WVUTL5": 2, @@ -38590,16 +38484,241 @@ "WVBRNOT2": 1, "WVPOP": 1, "WVLOOP": 1, - "ax": 2, - "bx": 2, - "cx": 2, - "ay": 2, - "cy": 2, - "sumx": 3, - "sqrx": 3, - "sumxy": 5, - "x*x": 1, - "x*y": 1 + "ZDIOUT1": 1, + "Experimental": 1, + "FileMan": 1, + "host": 2, + "Open": 1, + "Source": 1, + "Electronic": 1, + "Health": 1, + "Record": 1, + "Agent": 1, + "Licensed": 1, + "Apache": 1, + "Version": 1, + "may": 3, + "except": 1, + "compliance": 1, + "License.": 2, + "//www.apache.org/licenses/LICENSE": 1, + "Unless": 1, + "applicable": 1, + "law": 1, + "agreed": 1, + "BASIS": 1, + "WARRANTIES": 1, + "CONDITIONS": 1, + "KIND": 1, + "express": 1, + "implied.": 1, + "governing": 1, + "permissions": 2, + "limitations": 1, + "ASKFILE": 1, + "FILE": 5, + "ASKDIR": 1, + "DIR": 3, + "SAVEFILE": 2, + "Save": 1, + "given": 1, + "directory": 1, + "CHECK": 1, + "FGR": 4, + "_FILE": 1, + "IO": 4, + "DIR_": 1, + "L": 1, + "FILENAME": 1, + "_IO_": 1, + "_P_": 1, + "NM": 1, + "non": 1, + "printing": 1, + "escaped": 1, + "evaluation": 1, + "RHS": 1, + "SET.": 1, + "TODO": 1, + "Caller": 1, + "indentation": 1, + "tab": 1, + "space.": 1, + "M/Wire": 4, + "Protocol": 2, + "Systems": 1, + "By": 1, + "server": 1, + "port": 4, + "systems": 3, + "invoked": 2, + "via": 2, + "xinetd": 2, + "Edit": 1, + "/etc/services": 1, + "mwire": 2, + "/tcp": 1, + "#": 1, + "Service": 1, + "Copy": 2, + "/etc/xinetd.d/mwire": 1, + "/usr/local/gtm/zmwire": 1, + "its": 1, + "executable": 1, + "edited": 1, + "Restart": 1, + "sudo": 1, + "/etc/init.d/xinetd": 1, + "On": 1, + "installed": 1, + "MGWSI": 1, + "provide": 1, + "hashing": 1, + "passwords": 1, + "Alternatively": 1, + "substitute": 1, + "callout": 1, + "choice": 1, + "Daemon": 2, + "running": 1, + "jobbed": 1, + "job": 1, + "zmwireDaemon": 2, + "simply": 1, + "Stop": 1, + "RESJOB": 1, + "mwireVersion": 4, + "mwireDate": 2, + "July": 1, + "_crlf": 22, + "_response_": 4, + "_crlf_response_crlf": 4, + "authNeeded": 6, + "input": 41, + "cleardown": 2, + "zint": 1, + "role": 3, + "loop": 7, + "log": 1, + "halt": 3, + "auth": 2, + "ignore": 12, + "pid": 36, + "monitor": 1, + "input_crlf": 1, + "zsy": 2, + "_pid_": 1, + "_pid": 1, + "monitoroutput": 1, + "logger": 17, + "tot": 2, + "mwireLogger": 3, + "info": 1, + "response_": 1, + "_count": 1, + "setpassword": 1, + "SETPASSWORD": 2, + "secret": 2, + "": 1, + "role=": 1, + "admin": 1, + "newrole": 4, + "getGloRef": 3, + "gloName": 1, + "gloRef": 15, + "nb": 2, + "subs": 8, + "nsp": 1, + "subs_": 2, + "_data_": 3, + "subscripts": 8, + "_value_": 1, + "_error_": 1, + "kill": 3, + "xx": 16, + "method": 2, + "Missing": 5, + "JSON": 7, + "transaction": 6, + "document": 6, + "setJSON": 4, + "GlobalName": 3, + "setGlobal": 1, + "zmwire_null_value": 1, + "Invalid": 1, + "props": 1, + "arr": 2, + "getJSON": 2, + "incr": 1, + "incrbr": 1, + "class": 1, + "##": 2, + "decr": 1, + "decrby": 1, + "direction": 1, + "subscriptValue": 1, + "dataStatus": 1, + "dataValue": 1, + "nextsubscript": 2, + "reverseorder": 1, + "*2": 1, + "queryget": 1, + "xxyy": 2, + "zz": 2, + "getallsubscripts": 1, + "orderall": 1, + "": 3, + "note": 2, + "escaping": 1, + "foo": 2, + "_gloRef": 1, + "@x": 4, + "_crlf_": 1, + "j_": 1, + "params": 10, + "_crlf_resp_crlf": 2, + "_crlf_data_crlf": 2, + "mergeto": 1, + "dataLength": 4, + "keyLength": 6, + "noOfRecs": 6, + "MERGETO": 1, + "myglobal": 1, + "*6": 1, + "hello": 1, + "": 2, + "put": 1, + "top": 1, + "noOfRecs#2": 1, + "noOfRecs/2": 1, + "gloRef1": 2, + "gloRef1_": 2, + "_gloRef1_key_": 1, + "sub": 2, + "literal": 2, + "valquot_value_valquot": 1, + "json_value_": 1, + "subscripts1": 2, + "subx": 3, + "subNo": 1, + "numsub": 1, + "json_": 2, + "removeControlChars": 2, + "zobj1": 1, + "buff": 10, + "parseJSONObject": 2, + ".buff": 2, + "subs2": 6, + "_name_": 1, + "subs2_": 2, + "value_c": 1, + "newString": 4, + "newString_c": 1, + "utfConvert": 1, + "Unescape": 1, + "buf": 4, + "c1": 4, + "buf_c1_": 1 }, "MTML": { "<$mt:Var>": 15, @@ -38636,11 +38755,6 @@ "": 1 }, "Makefile": { - "SHEBANG#!make": 1, - "%": 1, - "ls": 1, - "-": 6, - "l": 1, "all": 1, "hello": 4, "main.o": 3, @@ -38648,6 +38762,7 @@ "hello.o": 3, "g": 4, "+": 8, + "-": 6, "o": 1, "main.cpp": 2, "c": 3, @@ -38656,7 +38771,11 @@ "clean": 1, "rm": 1, "rf": 1, - "*o": 1 + "*o": 1, + "SHEBANG#!make": 1, + "%": 1, + "ls": 1, + "l": 1 }, "Markdown": { "Tender": 1 @@ -38711,17 +38830,48 @@ "bazCompo": 1 }, "Mathematica": { - "Notebook": 2, + "Get": 1, "[": 307, + "]": 286, + "Notebook": 2, "{": 227, "Cell": 28, "CellGroupData": 8, + "BoxData": 19, + "RowBox": 34, + "}": 222, "CellChangeTimes": 13, "-": 134, "*": 19, - "}": 222, - "]": 286, - "BoxData": 19, + "SuperscriptBox": 1, + "MultilineFunction": 1, + "None": 8, + "Open": 7, + "NumberMarks": 3, + "False": 19, + "GraphicsBox": 2, + "Hue": 5, + "LineBox": 5, + "CompressedData": 9, + "AspectRatio": 1, + "NCache": 1, + "GoldenRatio": 1, + "(": 2, + ")": 1, + "Axes": 1, + "True": 7, + "AxesLabel": 1, + "AxesOrigin": 1, + "Method": 2, + "PlotRange": 1, + "PlotRangeClipping": 1, + "PlotRangePadding": 1, + "Scaled": 10, + "WindowSize": 1, + "WindowMargins": 1, + "Automatic": 9, + "FrontEndVersion": 1, + "StyleDefinitions": 1, "NamespaceBox": 1, "DynamicModuleBox": 1, "Typeset": 7, @@ -38731,13 +38881,9 @@ "Asynchronous": 1, "All": 1, "TimeConstraint": 1, - "Automatic": 9, - "Method": 2, "elements": 1, "pod1": 1, "XMLElement": 13, - "False": 19, - "True": 7, "FormBox": 4, "TagBox": 9, "GridBox": 2, @@ -38751,7 +38897,6 @@ "LineSpacing": 2, "GridBoxBackground": 1, "GrayLevel": 17, - "None": 8, "GridBoxItemSize": 2, "ColumnsEqual": 2, "RowsEqual": 2, @@ -38770,7 +38915,6 @@ "TraditionalOrder": 1, "&": 2, "pod2": 1, - "RowBox": 34, "LinebreakAdjustments": 2, "FontFamily": 1, "UnitFontFamily": 1, @@ -38782,17 +38926,13 @@ "ZeroWidthTimes": 1, "pod3": 1, "TemplateBox": 1, - "GraphicsBox": 2, "GraphicsComplexBox": 1, - "CompressedData": 9, "EdgeForm": 2, "Directive": 5, "Opacity": 2, - "Hue": 5, "GraphicsGroupBox": 2, "PolygonBox": 3, "RGBColor": 3, - "LineBox": 5, "Dashing": 1, "Small": 1, "GridLines": 1, @@ -38811,31 +38951,20 @@ "Epilog": 1, "CapForm": 1, "Offset": 8, - "Scaled": 10, "DynamicBox": 1, "ToBoxes": 1, "DynamicModule": 1, "pt": 1, - "(": 2, "NearestFunction": 1, - "SuperscriptBox": 1, - "MultilineFunction": 1, - "Open": 7, - "NumberMarks": 3, - "AspectRatio": 1, - "NCache": 1, - "GoldenRatio": 1, - ")": 1, - "Axes": 1, - "AxesLabel": 1, - "AxesOrigin": 1, - "PlotRange": 1, - "PlotRangeClipping": 1, - "PlotRangePadding": 1, - "WindowSize": 1, - "WindowMargins": 1, - "FrontEndVersion": 1, - "StyleDefinitions": 1, + "Paclet": 1, + "Name": 1, + "Version": 1, + "MathematicaVersion": 1, + "Description": 1, + "Creator": 1, + "Extensions": 1, + "Language": 1, + "MainPage": 1, "BeginPackage": 1, ";": 42, "PossiblyTrueQ": 3, @@ -38895,15 +39024,6 @@ "Symbol": 2, "NumericQ": 1, "EndPackage": 1, - "Paclet": 1, - "Name": 1, - "Version": 1, - "MathematicaVersion": 1, - "Description": 1, - "Creator": 1, - "Extensions": 1, - "Language": 1, - "MainPage": 1, "Do": 1, "If": 1, "Length": 1, @@ -38912,392 +39032,74 @@ "i": 3, "+": 2, "Print": 1, - "Break": 1, - "Get": 1 + "Break": 1 }, "Matlab": { "function": 34, "[": 311, - "d": 12, - "d_mean": 3, - "d_std": 3, - "]": 311, - "normalize": 1, - "(": 1379, - ")": 1380, - "mean": 2, - ";": 909, - "-": 673, - "repmat": 2, - "size": 11, - "std": 1, - "d./": 1, - "end": 150, - "clear": 13, - "all": 15, - "%": 554, - "mu": 73, - "Earth": 2, - "Moon": 2, - "xl1": 13, - "yl1": 12, - "xl2": 9, - "yl2": 8, - "xl3": 8, - "yl3": 8, - "xl4": 10, - "yl4": 9, - "xl5": 8, - "yl5": 8, - "Lagr": 6, - "C": 13, - "*Potential": 5, - "x_0": 45, - "y_0": 29, - "vx_0": 37, - "vy_0": 22, - "sqrt": 14, - "+": 169, - "T": 22, - "C_star": 1, - "*Omega": 5, - "E": 8, - "C/2": 1, - "options": 14, - "odeset": 4, - "e": 14, - "Integrate": 6, - "first": 3, - "orbit": 1, - "t0": 6, - "Y0": 6, - "ode113": 2, - "@f": 6, - "x0": 4, - "y0": 2, - "vx0": 2, - "vy0": 2, - "l0": 1, - "length": 49, - "delta_E0": 1, - "abs": 12, - "Energy": 4, - "Hill": 1, - "Edgecolor": 1, - "none": 1, - ".2f": 5, - "ok": 2, - "sg": 1, - "sr": 1, - "x_T": 25, - "y_T": 17, - "vx_T": 22, - "e_T": 7, - "filter": 14, - "Integrate_FILE": 1, - "e_0": 7, - "N": 9, - "nx": 32, - "ny": 29, - "nvx": 32, - "ne": 29, - "zeros": 61, - "vy_T": 12, - "Look": 2, - "for": 78, - "phisically": 2, - "meaningful": 6, - "points": 11, - "meaningless": 2, - "point": 14, - "only": 7, - "h": 19, - "waitbar": 6, - "i": 338, - "i/nx": 2, - "sprintf": 11, - "j": 242, - "parfor": 5, - "k": 75, - "l": 64, - "*e_0": 3, - "if": 52, - "isreal": 8, - "ci": 9, - "t": 32, - "Y": 19, - "te": 2, - "ye": 9, - "ie": 2, - "ode45": 6, - "*": 46, - "Potential": 1, - "close": 4, - "tic": 7, - "Choice": 2, - "of": 35, - "the": 14, - "mass": 2, - "parameter": 2, - "Computation": 9, - "Lagrangian": 3, - "Points": 2, - "initial": 5, - "total": 6, - "energy": 8, - "E_L1": 4, - "Omega": 7, - "Offset": 2, - "as": 4, - "in": 8, - "figure": 17, - "Initial": 3, - "conditions": 3, - "range": 2, - "x_0_min": 8, - "x_0_max": 8, - "vx_0_min": 8, - "vx_0_max": 8, - "n": 102, - "ndgrid": 2, - "linspace": 14, - "*E": 2, - "vx_0.": 2, - "E_cin": 4, - "Transforming": 1, - "into": 1, - "Hamiltonian": 1, - "variables": 2, - "px_0": 2, - "py_0": 2, - "px_T": 4, - "py_T": 4, - "filtro": 15, - "ones": 6, - "E_T": 11, - "a": 17, - "matrix": 3, - "numbers": 2, - "integration": 9, - "steps": 2, - "each": 2, - "np": 8, - "number": 2, - "integrated": 5, - "fprintf": 18, - "tolerance": 2, - "setting": 4, - "energy_tol": 6, - "inf": 1, - "Jacobian": 3, - "system": 2, - "@cr3bp_jac": 1, - "Parallel": 2, - "equations": 2, - "motion": 2, - "&&": 13, - "Check": 6, - "real": 3, - "velocity": 2, - "and": 7, - "positive": 2, - "Kinetic": 2, - "@fH": 1, - "Saving": 4, - "solutions": 2, - "final": 2, - "difference": 2, - "with": 2, - "one": 3, - "EnergyH": 1, - "delta_E": 7, - "conservation": 2, - "position": 2, - "else": 23, - "interesting": 4, - "non": 2, - "sense": 2, - "bad": 4, - "t_integrazione": 3, - "toc": 5, - "t_integr": 1, - "Back": 1, - "to": 9, - "FTLE": 14, - "dphi": 12, - "ftle": 10, - "...": 162, - "/": 59, - "Manual": 2, - "visualize": 2, - "Inf": 1, - "*T": 3, - "*log": 2, - "max": 9, - "eig": 6, - "tempo": 4, - "per": 5, - "integrare": 2, - "s": 13, - "calcolare": 2, - "var_": 2, - "_": 2, - "var_xvx_": 2, - "ode00": 2, - "_n": 2, - "_e": 1, - "_H": 1, - "save": 2, - "nome": 2, - "Call": 2, - "matlab_function": 5, - "which": 2, - "resides": 2, - "same": 2, - "directory": 2, - "value1": 4, - "semicolon": 2, - "at": 3, - "line": 15, - "is": 7, - "not": 3, - "mandatory": 2, - "suppresses": 2, - "output": 7, - "command": 2, - "line.": 2, - "value2": 4, - "result": 5, - "disp": 8, - "error": 16, - "cross_validation": 1, - "x": 46, + "dx": 6, "y": 25, - "hyper_parameter": 3, - "num_data": 2, - "K": 4, - "indices": 2, - "crossvalind": 1, - "errors": 4, - "test_idx": 4, - "train_idx": 3, - "x_train": 2, - "y_train": 2, - "w": 6, - "train": 1, - "x_test": 3, - "y_test": 3, - "calc_cost": 1, - "calc_error": 2, - "f_x_t": 2, - "inline": 1, - "grid_min": 3, - "grid_max": 3, - "grid_width": 1, - "grid_spacing": 5, - "grid_width/": 1, - "advected_x": 12, - "advected_y": 12, - "store": 4, - "advected": 2, - "positions": 2, - "they": 2, - "would": 2, - "appear": 2, - "coords": 2, - "sigma": 6, - "compute": 2, - "phi": 13, - "*grid_width/": 4, - "find": 24, - "eigenvalue": 2, - "*phi": 2, - "log": 2, - "lambda_max": 2, - "/abs": 3, - "plot": 26, - "field": 2, - "contourf": 2, - "colorbar": 1, - "classdef": 1, - "matlab_class": 2, - "properties": 1, - "R": 1, - "G": 1, - "B": 9, - "methods": 1, - "obj": 2, - "r": 2, - "g": 5, - "b": 12, - "obj.R": 2, - "obj.G": 2, - "obj.B": 2, - "num2str": 10, - "enumeration": 1, - "red": 1, - "green": 1, - "blue": 1, - "cyan": 1, - "magenta": 1, - "yellow": 1, - "black": 1, - "white": 1, - "filtfcn": 2, - "statefcn": 2, - "makeFilter": 1, - "v": 12, - "@iirFilter": 1, - "@getState": 1, - "yn": 2, - "iirFilter": 1, - "xn": 4, - "vOut": 2, - "getState": 1, - "RK4": 3, - "fun": 5, - "tspan": 7, - "th": 1, - "order": 11, - "Runge": 1, - "Kutta": 1, - "integrator": 2, - "dim": 2, - "while": 1, - "<": 9, - "k1": 4, - "k2": 3, - "h/2": 2, - "k1*h/2": 1, - "k3": 3, - "k2*h/2": 1, - "k4": 4, - "h*k3": 1, - "h/6*": 1, - "*k2": 1, - "*k3": 1, - "z": 3, - "*vx_0": 1, - "pcolor": 2, - "shading": 3, - "flat": 3, - "settings": 3, - "overwrite_settings": 2, - "defaultSettings": 3, - "overrideSettings": 3, - "overrideNames": 2, - "fieldnames": 5, - "defaultNames": 2, - "notGiven": 5, - "setxor": 1, - "settings.": 1, + "]": 311, + "adapting_structural_model": 2, + "(": 1379, + "t": 32, + "x": 46, + "u": 3, + "varargin": 25, + ")": 1380, + "%": 554, + "size": 11, + "aux": 3, "{": 157, + "end": 150, "}": 157, - "defaultSettings.": 1, + ";": 909, + "m": 44, + "zeros": 61, + "b": 12, + "for": 78, + "i": 338, + "if": 52, + "+": 169, + "elseif": 14, + "else": 23, + "display": 10, + "aux.pars": 3, + ".*": 2, + "Yp": 2, + "human": 1, + "aux.timeDelay": 2, + "c1": 5, + "aux.m": 3, + "*": 46, + "aux.b": 3, + "e": 14, + "-": 673, + "c2": 5, + "Yc": 5, + "parallel": 2, + "plant": 4, + "aux.plantFirst": 2, + "aux.plantSecond": 2, + "Ys": 1, + "feedback": 1, + "A": 11, + "B": 9, + "C": 13, + "D": 7, + "tf2ss": 1, + "Ys.num": 1, + "Ys.den": 1, + "average": 1, + "n": 102, + "|": 2, + "&": 4, + "error": 16, + "sum": 2, + "/length": 1, "bicycle": 7, "bicycle_state_space": 1, "speed": 20, - "varargin": 25, "S": 5, "dbstack": 1, "CURRENT_DIRECTORY": 2, @@ -39306,8 +39108,7 @@ "par": 7, "par_text_to_struct": 4, "filesep": 14, - "A": 11, - "D": 7, + "...": 162, "whipple_pull_force_abcd": 2, "states": 7, "outputs": 10, @@ -39318,21 +39119,32 @@ "userSettings": 3, "varargin_to_structure": 2, "struct": 1, + "settings": 3, + "overwrite_settings": 2, + "defaultSettings": 3, "minStates": 2, - "sum": 2, "ismember": 15, "settings.states": 3, + "<": 9, "keepStates": 2, + "find": 24, "removeStates": 1, "row": 6, + "abs": 12, "col": 5, + "s": 13, + "sprintf": 11, "removeInputs": 2, "settings.inputs": 1, "keepOutputs": 2, "settings.outputs": 1, "It": 1, + "is": 7, + "not": 3, "possible": 1, + "to": 9, "keep": 1, + "output": 7, "because": 1, "it": 1, "depends": 1, @@ -39341,140 +39153,31 @@ "StateName": 1, "OutputName": 1, "InputName": 1, - "data": 27, - "load_data": 4, - "filename": 21, - "parser": 1, - "inputParser": 1, - "parser.addRequired": 1, - "parser.addParamValue": 3, - "true": 2, - "parser.parse": 1, - "args": 1, - "parser.Results": 1, - "raw": 1, - "load": 1, - "args.directory": 1, - "iddata": 1, - "raw.theta": 1, - "raw.theta_c": 1, - "args.sampleTime": 1, - "args.detrend": 1, - "detrend": 1, - "hold": 23, - "lane_change": 1, - "start": 4, - "width": 3, - "slope": 3, - "pathLength": 3, - "num": 24, - "type": 4, - "single": 1, - "double": 1, - "Double": 1, - "lane": 4, - "change": 1, - "needs": 1, - "lane.": 1, - "laneLength": 4, - "startOfSlope": 3, - "endOfSlope": 1, - "&": 4, - "<=>": 1, - "1": 1, - "downSlope": 3, - "Yc": 5, - "plant": 4, - "parallel": 2, - "choose_plant": 4, - "p": 7, - "tf": 18, - "elseif": 14, - "display": 10, - "average": 1, - "m": 44, - "|": 2, - "/length": 1, + "x_0": 45, + "linspace": 14, + "vx_0": 37, + "z": 3, + "j": 242, + "*vx_0": 1, + "figure": 17, + "pcolor": 2, + "shading": 3, + "flat": 3, "name": 4, + "order": 11, "convert_variable": 1, "variable": 10, "coordinates": 6, "speeds": 21, "get_variables": 2, "columns": 4, - "clc": 1, - "bikes": 24, - "load_bikes": 2, - "rollData": 8, - "generate_data": 5, "create_ieee_paper_plots": 2, - "write_gains": 1, - "pathToFile": 11, - "gains": 12, - "contents": 1, - "importdata": 1, - "speedsInFile": 5, - "contents.data": 2, - "gainsInFile": 3, - "sameSpeedIndices": 5, - "allGains": 4, - "allSpeeds": 4, - "sort": 1, - "fid": 7, - "fopen": 2, - "contents.colheaders": 1, - "fclose": 2, - "Elements": 1, - "grid": 1, - "definition": 2, - "Dimensionless": 1, - "integrating": 1, - "time": 21, - "C_L1": 3, - "*E_L1": 1, - "from": 2, - "Szebehely": 1, - "Setting": 1, - "RelTol": 2, - "AbsTol": 2, - "From": 1, - "Short": 1, - "r1": 3, - "r2": 3, - "i/n": 1, - ".": 13, - "y_0.": 2, - "./": 1, - "mu./": 1, - "@f_reg": 1, - "filtro_1": 12, - "||": 3, - "ftle_norm": 1, - "ds_x": 1, - "ds_vx": 1, - "La": 1, - "direzione": 1, - "dello": 1, - "spostamento": 1, - "la": 2, - "decide": 1, - "il": 1, - "denominatore": 1, - "TODO": 1, - "spiegarsi": 1, - "teoricamente": 1, - "come": 1, - "mai": 1, - "matrice": 1, - "pu": 1, - "essere": 1, - "ridotta": 1, - "x2": 1, - "*ds_x": 2, - "*ds_vx": 2, - "dphi*dphi": 1, + "data": 27, + "rollData": 8, "global": 6, "goldenRatio": 12, + "sqrt": 14, + "/": 59, "exist": 1, "mkdir": 1, "linestyles": 15, @@ -39488,6 +39191,7 @@ "var": 3, "io": 7, "typ": 3, + "length": 49, "plot_io": 1, "phase_portraits": 2, "eigenvalues": 2, @@ -39497,6 +39201,8 @@ "set": 43, "gcf": 17, "freq": 12, + "hold": 23, + "all": 15, "closedLoops": 1, "bikeData.closedLoops": 1, "bops": 7, @@ -39509,6 +39215,7 @@ "deltaDen": 2, "closedLoops.Delta.den": 1, "bodeplot": 6, + "tf": 18, "neuroNum": 2, "neuroDen": 2, "whichLines": 3, @@ -39544,10 +39251,13 @@ "annotation": 13, "dArrow2": 2, "dArrow": 2, + "filename": 21, + "pathToFile": 11, "print": 6, "fix_ps_linestyle": 6, "openLoops": 1, "bikeData.openLoops": 1, + "num": 24, "openLoops.Phi.num": 1, "den": 15, "openLoops.Phi.den": 1, @@ -39556,14 +39266,19 @@ "openLoops.Y.num": 1, "openLoops.Y.den": 1, "openBode": 3, + "line": 15, "wc": 14, "wShift": 5, + "num2str": 10, "bikeData.handlingMetric.num": 1, "bikeData.handlingMetric.den": 1, + "w": 6, "mag": 4, "phase": 2, "bode": 5, "metricLine": 1, + "plot": 26, + "k": 75, "Linewidth": 7, "Color": 13, "Linestyle": 6, @@ -39587,12 +39302,15 @@ "PaperPosition": 3, "PaperSize": 3, "rad/sec": 1, + "phi": 13, "Open": 1, "Loop": 1, "Bode": 1, "Diagrams": 1, + "at": 3, "m/s": 6, "Latex": 1, + "type": 4, "LineStyle": 2, "LineWidth": 2, "Location": 2, @@ -39607,13 +39325,16 @@ "openBode.eps": 1, "deps2c": 3, "maxMag": 2, + "max": 9, "magnitudes": 1, "area": 1, "fillColors": 1, "gca": 8, "speedNames": 12, "metricLines": 2, + "bikes": 24, "data.": 6, + ".": 13, ".handlingMetric.num": 1, ".handlingMetric.den": 1, "chil": 2, @@ -39631,12 +39352,14 @@ "Lateral": 1, "Deviation": 1, "paths.eps": 1, + "d": 12, "like": 1, "plot.": 1, "names": 6, "prettyNames": 3, "units": 3, "index": 6, + "fieldnames": 5, "data.Browser": 1, "maxValue": 4, "oneSpeed": 3, @@ -39646,6 +39369,7 @@ "pad": 10, "yShift": 16, "xShift": 3, + "time": 21, "oneSpeed.time": 2, "oneSpeed.speed": 2, "distance": 6, @@ -39660,8 +39384,10 @@ "loc": 3, "l1": 2, "l2": 2, + "first": 3, "ylabel": 4, "box": 4, + "&&": 13, "x_r": 6, "y_r": 6, "w_r": 5, @@ -39699,6 +39425,7 @@ "legends": 3, "floatSpec": 3, "twentyPercent": 1, + "generate_data": 5, "nominalData": 1, "nominalData.": 2, "bikeData.": 2, @@ -39712,21 +39439,107 @@ "pathToParFile": 2, "str": 2, "eigenValues": 1, + "eig": 6, + "real": 3, "zeroIndices": 3, + "ones": 6, "maxEvals": 4, "maxLine": 7, "minLine": 4, "min": 1, "speedInd": 12, - "Conditions": 1, - "Integration": 2, - "@cross_y": 1, - "textscan": 1, - "strtrim": 2, - "vals": 2, - "regexp": 1, - "par.": 1, - "str2num": 1, + "cross_validation": 1, + "hyper_parameter": 3, + "num_data": 2, + "K": 4, + "indices": 2, + "crossvalind": 1, + "errors": 4, + "test_idx": 4, + "train_idx": 3, + "x_train": 2, + "y_train": 2, + "train": 1, + "x_test": 3, + "y_test": 3, + "calc_cost": 1, + "calc_error": 2, + "mean": 2, + "value": 2, + "isterminal": 2, + "direction": 2, + "mu": 73, + "FIXME": 1, + "from": 2, + "the": 14, + "largest": 1, + "primary": 1, + "clear": 13, + "tic": 7, + "T": 22, + "x_min": 3, + "x_max": 3, + "y_min": 3, + "y_max": 3, + "how": 1, + "many": 1, + "points": 11, + "per": 5, + "one": 3, + "measure": 1, + "unit": 1, + "both": 1, + "in": 8, + "and": 7, + "ds": 1, + "x_res": 7, + "*n": 2, + "y_res": 7, + "grid_x": 3, + "grid_y": 3, + "advected_x": 12, + "advected_y": 12, + "parfor": 5, + "X": 6, + "ode45": 6, + "@dg": 1, + "store": 4, + "advected": 2, + "positions": 2, + "as": 4, + "they": 2, + "would": 2, + "appear": 2, + "coords": 2, + "Compute": 3, + "FTLE": 14, + "sigma": 6, + "compute": 2, + "Jacobian": 3, + "*ds": 4, + "eigenvalue": 2, + "of": 35, + "*phi": 2, + "log": 2, + "lambda_max": 2, + "/abs": 3, + "*T": 3, + "toc": 5, + "field": 2, + "contourf": 2, + "location": 1, + "EastOutside": 1, + "f_x_t": 2, + "inline": 1, + "grid_min": 3, + "grid_max": 3, + "grid_width": 1, + "grid_spacing": 5, + "grid_width/": 1, + "*grid_width/": 4, + "colorbar": 1, + "load_data": 4, + "t0": 6, "t1": 6, "t2": 6, "t3": 1, @@ -39739,6 +39552,7 @@ "find_structural_gains": 2, "yh": 2, "fit": 6, + "x0": 4, "compare": 3, "resultPlantOne.fit": 1, "guessPlantTwo": 3, @@ -39750,22 +39564,15 @@ "resultPlantTwo.fit.par": 1, "gainSlopeOffset": 6, "eye": 9, - "aux.pars": 3, "this": 2, + "only": 7, "uses": 1, "tau": 1, "through": 1, "wfs": 1, - "aux.timeDelay": 2, - "aux.plantFirst": 2, - "aux.plantSecond": 2, + "true": 2, "plantOneSlopeOffset": 3, "plantTwoSlopeOffset": 3, - "aux.m": 3, - "aux.b": 3, - "dx": 6, - "adapting_structural_model": 2, - "aux": 3, "mod": 3, "idnlgrey": 1, "pem": 1, @@ -39775,11 +39582,11 @@ "plantNum.plantTwo": 2, "sections": 13, "secData.": 1, + "||": 3, "guess.": 2, "result.": 2, ".fit.par": 1, "currentGuess": 2, - ".*": 2, "warning": 1, "randomGuess": 1, "The": 6, @@ -39791,25 +39598,428 @@ "results.mat": 1, "guess": 1, "plantNum": 1, + "result": 5, "plots/": 1, ".png": 1, "task": 1, "closed": 1, "loop": 1, + "system": 2, "u.": 1, "gain": 1, "guesses": 1, + "k1": 4, + "k2": 3, + "k3": 3, + "k4": 4, "identified": 1, + "gains": 12, ".vaf": 1, - "arguments": 7, - "ischar": 1, - "options.": 1, - "value": 2, - "isterminal": 2, - "direction": 2, - "FIXME": 1, - "largest": 1, - "primary": 1, + "Elements": 1, + "grid": 1, + "definition": 2, + "Dimensionless": 1, + "integrating": 1, + "Choice": 2, + "mass": 2, + "parameter": 2, + "Computation": 9, + "Lagrangian": 3, + "Points": 2, + "xl1": 13, + "yl1": 12, + "xl2": 9, + "yl2": 8, + "xl3": 8, + "yl3": 8, + "xl4": 10, + "yl4": 9, + "xl5": 8, + "yl5": 8, + "Lagr": 6, + "initial": 5, + "total": 6, + "energy": 8, + "E_L1": 4, + "Omega": 7, + "C_L1": 3, + "*E_L1": 1, + "Szebehely": 1, + "E": 8, + "Offset": 2, + "Initial": 3, + "conditions": 3, + "range": 2, + "x_0_min": 8, + "x_0_max": 8, + "vx_0_min": 8, + "vx_0_max": 8, + "y_0": 29, + "ndgrid": 2, + "vy_0": 22, + "*E": 2, + "*Omega": 5, + "vx_0.": 2, + "E_cin": 4, + "x_T": 25, + "y_T": 17, + "vx_T": 22, + "vy_T": 12, + "filtro": 15, + "E_T": 11, + "delta_E": 7, + "a": 17, + "matrix": 3, + "numbers": 2, + "integration": 9, + "steps": 2, + "each": 2, + "np": 8, + "number": 2, + "integrated": 5, + "fprintf": 18, + "Energy": 4, + "tolerance": 2, + "setting": 4, + "energy_tol": 6, + "Setting": 1, + "options": 14, + "integrator": 2, + "RelTol": 2, + "AbsTol": 2, + "From": 1, + "Short": 1, + "odeset": 4, + "Parallel": 2, + "equations": 2, + "motion": 2, + "h": 19, + "waitbar": 6, + "r1": 3, + "r2": 3, + "g": 5, + "i/n": 1, + "y_0.": 2, + "./": 1, + "mu./": 1, + "isreal": 8, + "Check": 6, + "velocity": 2, + "positive": 2, + "Kinetic": 2, + "Y": 19, + "@f_reg": 1, + "Saving": 4, + "solutions": 2, + "final": 2, + "difference": 2, + "with": 2, + "conservation": 2, + "position": 2, + "point": 14, + "interesting": 4, + "non": 2, + "sense": 2, + "bad": 4, + "close": 4, + "t_integrazione": 3, + "filtro_1": 12, + "dphi": 12, + "ftle": 10, + "ftle_norm": 1, + "ds_x": 1, + "ds_vx": 1, + "La": 1, + "direzione": 1, + "dello": 1, + "spostamento": 1, + "la": 2, + "decide": 1, + "il": 1, + "denominatore": 1, + "TODO": 1, + "spiegarsi": 1, + "teoricamente": 1, + "come": 1, + "mai": 1, + "matrice": 1, + "pu": 1, + "essere": 1, + "ridotta": 1, + "x2": 1, + "*ds_x": 2, + "*ds_vx": 2, + "Manual": 2, + "visualize": 2, + "*log": 2, + "dphi*dphi": 1, + "tempo": 4, + "integrare": 2, + ".2f": 5, + "calcolare": 2, + "var_": 2, + "_": 2, + "var_xvx_": 2, + "ode00": 2, + "_n": 2, + "save": 2, + "nome": 2, + "Transforming": 1, + "into": 1, + "Hamiltonian": 1, + "variables": 2, + "px_0": 2, + "py_0": 2, + "px_T": 4, + "py_T": 4, + "inf": 1, + "@cr3bp_jac": 1, + "@fH": 1, + "EnergyH": 1, + "t_integr": 1, + "Back": 1, + "Inf": 1, + "_e": 1, + "_H": 1, + "Range": 1, + "E_0": 4, + "C_L1/2": 1, + "Y_0": 4, + "nx": 32, + "nvx": 32, + "dvx": 3, + "ny": 29, + "dy": 5, + "/2": 3, + "ne": 29, + "de": 4, + "e_0": 7, + "Definition": 1, + "arrays": 1, + "In": 1, + "approach": 1, + "useful": 9, + "pints": 1, + "are": 1, + "stored": 1, + "filter": 14, + "l": 64, + "v_y": 3, + "*e_0": 3, + "vx": 2, + "vy": 2, + "Selection": 1, + "Data": 2, + "transfer": 1, + "GPU": 3, + "x_gpu": 3, + "gpuArray": 4, + "y_gpu": 3, + "vx_gpu": 3, + "vy_gpu": 3, + "Integration": 2, + "N": 9, + "x_f": 3, + "y_f": 3, + "vx_f": 3, + "vy_f": 3, + "arrayfun": 2, + "@RKF45_FILE_gpu": 1, + "back": 1, + "CPU": 1, + "memory": 1, + "cleaning": 1, + "gather": 4, + "Construction": 1, + "computation": 2, + "X_T": 4, + "Y_T": 4, + "VX_T": 4, + "VY_T": 3, + "filter_ftle": 11, + "Compute_FILE_gpu": 1, + "Plot": 1, + "results": 1, + "squeeze": 1, + "clc": 1, + "load_bikes": 2, + "e_T": 7, + "Integrate_FILE": 1, + "Integrate": 6, + "Look": 2, + "phisically": 2, + "meaningful": 6, + "meaningless": 2, + "i/nx": 2, + "*Potential": 5, + "ci": 9, + "te": 2, + "ye": 9, + "ie": 2, + "@f": 6, + "Potential": 1, + "delta_e": 3, + "Integrate_FTLE_Gawlick_ell": 1, + "ecc": 2, + "nu": 2, + "ecc*cos": 1, + "@f_ell": 1, + "Consider": 1, + "also": 1, + "negative": 1, + "goodness": 1, + "roots": 3, + "*mu": 6, + "c3": 3, + "lane_change": 1, + "start": 4, + "width": 3, + "slope": 3, + "pathLength": 3, + "single": 1, + "double": 1, + "Double": 1, + "lane": 4, + "change": 1, + "needs": 1, + "lane.": 1, + "laneLength": 4, + "startOfSlope": 3, + "endOfSlope": 1, + "<=>": 1, + "1": 1, + "downSlope": 3, + "gains.Benchmark.Slow": 1, + "place": 2, + "holder": 2, + "gains.Browserins.Slow": 1, + "gains.Browser.Slow": 1, + "gains.Pista.Slow": 1, + "gains.Fisher.Slow": 1, + "gains.Yellow.Slow": 1, + "gains.Yellowrev.Slow": 1, + "gains.Benchmark.Medium": 1, + "gains.Browserins.Medium": 1, + "gains.Browser.Medium": 1, + "gains.Pista.Medium": 1, + "gains.Fisher.Medium": 1, + "gains.Yellow.Medium": 1, + "gains.Yellowrev.Medium": 1, + "gains.Benchmark.Fast": 1, + "gains.Browserins.Fast": 1, + "gains.Browser.Fast": 1, + "gains.Pista.Fast": 1, + "gains.Fisher.Fast": 1, + "gains.Yellow.Fast": 1, + "gains.Yellowrev.Fast": 1, + "gains.": 1, + "parser": 1, + "inputParser": 1, + "parser.addRequired": 1, + "parser.addParamValue": 3, + "parser.parse": 1, + "args": 1, + "parser.Results": 1, + "raw": 1, + "load": 1, + "args.directory": 1, + "iddata": 1, + "raw.theta": 1, + "raw.theta_c": 1, + "args.sampleTime": 1, + "args.detrend": 1, + "detrend": 1, + "filtfcn": 2, + "statefcn": 2, + "makeFilter": 1, + "v": 12, + "@iirFilter": 1, + "@getState": 1, + "yn": 2, + "iirFilter": 1, + "xn": 4, + "vOut": 2, + "getState": 1, + "classdef": 1, + "matlab_class": 2, + "properties": 1, + "R": 1, + "G": 1, + "methods": 1, + "obj": 2, + "r": 2, + "obj.R": 2, + "obj.G": 2, + "obj.B": 2, + "disp": 8, + "enumeration": 1, + "red": 1, + "green": 1, + "blue": 1, + "cyan": 1, + "magenta": 1, + "yellow": 1, + "black": 1, + "white": 1, + "ret": 3, + "matlab_function": 5, + "Call": 2, + "which": 2, + "resides": 2, + "same": 2, + "directory": 2, + "value1": 4, + "semicolon": 2, + "mandatory": 2, + "suppresses": 2, + "command": 2, + "line.": 2, + "value2": 4, + "d_mean": 3, + "d_std": 3, + "normalize": 1, + "repmat": 2, + "std": 1, + "d./": 1, + "overrideSettings": 3, + "overrideNames": 2, + "defaultNames": 2, + "notGiven": 5, + "setxor": 1, + "settings.": 1, + "defaultSettings.": 1, + "fid": 7, + "fopen": 2, + "textscan": 1, + "fclose": 2, + "strtrim": 2, + "vals": 2, + "regexp": 1, + "par.": 1, + "str2num": 1, + "choose_plant": 4, + "p": 7, + "Conditions": 1, + "@cross_y": 1, + "ode113": 2, + "RK4": 3, + "fun": 5, + "tspan": 7, + "th": 1, + "Runge": 1, + "Kutta": 1, + "dim": 2, + "while": 1, + "h/2": 2, + "k1*h/2": 1, + "k2*h/2": 1, + "h*k3": 1, + "h/6*": 1, + "*k2": 1, + "*k3": 1, + "arg1": 1, + "arg": 2, + "RK4_par": 1, "wnm": 11, "zetanm": 5, "ss": 3, @@ -39849,130 +40059,43 @@ "whipple_pull_force_ABCD": 1, "bottomRow": 1, "prod": 3, - "x_min": 3, - "x_max": 3, - "y_min": 3, - "y_max": 3, - "how": 1, - "many": 1, - "measure": 1, - "unit": 1, - "both": 1, - "ds": 1, - "x_res": 7, - "*n": 2, - "y_res": 7, - "grid_x": 3, - "grid_y": 3, - "X": 6, - "@dg": 1, - "Compute": 3, - "*ds": 4, - "location": 1, - "EastOutside": 1, - "ret": 3, - "arg1": 1, - "arg": 2, - "arrayfun": 2, - "RK4_par": 1, - "Range": 1, - "E_0": 4, - "C_L1/2": 1, - "Y_0": 4, - "dvx": 3, - "dy": 5, - "/2": 3, - "de": 4, - "Definition": 1, - "arrays": 1, - "In": 1, - "approach": 1, - "useful": 9, - "pints": 1, - "are": 1, - "stored": 1, - "v_y": 3, - "vx": 2, - "vy": 2, - "Selection": 1, - "Data": 2, - "transfer": 1, - "GPU": 3, - "x_gpu": 3, - "gpuArray": 4, - "y_gpu": 3, - "vx_gpu": 3, - "vy_gpu": 3, - "x_f": 3, - "y_f": 3, - "vx_f": 3, - "vy_f": 3, - "@RKF45_FILE_gpu": 1, - "back": 1, - "CPU": 1, - "memory": 1, - "cleaning": 1, - "gather": 4, - "Construction": 1, - "computation": 2, - "X_T": 4, - "Y_T": 4, - "VX_T": 4, - "VY_T": 3, - "filter_ftle": 11, - "Compute_FILE_gpu": 1, - "Plot": 1, - "results": 1, - "squeeze": 1, - "c1": 5, - "roots": 3, - "*mu": 6, - "c2": 5, - "c3": 3, - "u": 3, - "Yp": 2, - "human": 1, - "Ys": 1, - "feedback": 1, - "tf2ss": 1, - "Ys.num": 1, - "Ys.den": 1, - "delta_e": 3, - "Integrate_FTLE_Gawlick_ell": 1, - "ecc": 2, - "nu": 2, - "ecc*cos": 1, - "@f_ell": 1, - "Consider": 1, - "also": 1, - "negative": 1, - "goodness": 1, - "gains.Benchmark.Slow": 1, - "place": 2, - "holder": 2, - "gains.Browserins.Slow": 1, - "gains.Browser.Slow": 1, - "gains.Pista.Slow": 1, - "gains.Fisher.Slow": 1, - "gains.Yellow.Slow": 1, - "gains.Yellowrev.Slow": 1, - "gains.Benchmark.Medium": 1, - "gains.Browserins.Medium": 1, - "gains.Browser.Medium": 1, - "gains.Pista.Medium": 1, - "gains.Fisher.Medium": 1, - "gains.Yellow.Medium": 1, - "gains.Yellowrev.Medium": 1, - "gains.Benchmark.Fast": 1, - "gains.Browserins.Fast": 1, - "gains.Browser.Fast": 1, - "gains.Pista.Fast": 1, - "gains.Fisher.Fast": 1, - "gains.Yellow.Fast": 1, - "gains.Yellowrev.Fast": 1, - "gains.": 1 + "Earth": 2, + "Moon": 2, + "C_star": 1, + "C/2": 1, + "orbit": 1, + "Y0": 6, + "y0": 2, + "vx0": 2, + "vy0": 2, + "l0": 1, + "delta_E0": 1, + "Hill": 1, + "Edgecolor": 1, + "none": 1, + "ok": 2, + "sg": 1, + "sr": 1, + "arguments": 7, + "ischar": 1, + "options.": 1, + "write_gains": 1, + "contents": 1, + "importdata": 1, + "speedsInFile": 5, + "contents.data": 2, + "gainsInFile": 3, + "sameSpeedIndices": 5, + "allGains": 4, + "allSpeeds": 4, + "sort": 1, + "contents.colheaders": 1 }, "Max": { + "{": 126, + "}": 126, + "[": 163, + "]": 163, "max": 1, "v2": 1, ";": 39, @@ -40007,11 +40130,7 @@ "Hello": 1, "connect": 13, "fasten": 1, - "pop": 1, - "{": 126, - "}": 126, - "[": 163, - "]": 163 + "pop": 1 }, "MediaWiki": { "Overview": 1, @@ -40294,1008 +40413,971 @@ "%": 416, "-": 6967, "module": 46, - "rot13_verbose.": 1, + "ll_backend.code_info.": 1, "interface.": 13, "import_module": 126, - "io.": 8, - "pred": 255, - "main": 15, - "(": 3351, - "io__state": 4, - ")": 3351, - ".": 610, - "mode": 8, - "di": 54, - "uo": 58, - "is": 246, - "det.": 184, - "implementation.": 12, - "char": 10, - "int": 129, - "require.": 6, - "rot13a/2": 1, - "A": 14, - "table": 1, - "to": 16, - "map": 7, - "the": 27, - "alphabetic": 2, - "characters": 1, - "their": 1, - "rot13": 11, - "equivalents": 1, - "fails": 1, - "if": 15, - "input": 1, - "not": 7, - "rot13a": 55, - "in": 510, - "out": 337, - "semidet.": 10, - "rot13/2": 1, - "Applies": 1, - "algorithm": 1, - "a": 10, - "character.": 1, - "Char": 12, - "RotChar": 8, - "TmpChar": 2, - "then": 3, - "else": 8, - "io__read_char": 1, - "Res": 8, - "{": 27, - "ok": 3, - "}": 28, - "io__write_char": 1, - ";": 913, - "eof": 6, - "error": 7, - "ErrorCode": 4, - "io__error_message": 2, - "ErrorMessage": 4, - "io__stderr_stream": 1, - "StdErr": 8, - "io__write_string": 2, - "io__nl": 1, - "rot13_concise.": 1, - "state": 3, - "string.": 7, - "alphabet": 3, - "cycle": 4, - "rot_n": 2, - "N": 6, - "char_to_string": 1, - "CharString": 2, - "sub_string_search": 1, - "Index": 3, - "NewIndex": 2, - "+": 127, - "mod": 1, - "*": 20, - "//": 2, - "index_det": 1, - "read_char": 1, - "print": 3, - "error_message": 1, - "stderr_stream": 1, - "nl": 1, - "check_hlds.polymorphism.": 1, - "hlds.": 1, + "check_hlds.type_util.": 2, + "hlds.code_model.": 1, + "hlds.hlds_data.": 2, "hlds.hlds_goal.": 2, + "hlds.hlds_llds.": 1, "hlds.hlds_module.": 2, "hlds.hlds_pred.": 2, - "hlds.hlds_rtti.": 2, - "mdbcomp.": 1, - "mdbcomp.prim_data.": 3, - "parse_tree.": 1, - "parse_tree.prog_data.": 2, - "list.": 4, - "maybe.": 3, - "term.": 3, - "polymorphism_process_module": 2, - "module_info": 26, - "polymorphism_process_generated_pred": 2, - "pred_id": 15, - "unification_typeinfos_rtti_varmaps": 2, - "mer_type": 21, - "rtti_varmaps": 9, - "unification": 8, - "hlds_goal_info": 22, - "polymorphism_process_new_call": 2, - "pred_info": 20, - "proc_info": 11, - "proc_id": 12, - "list": 82, - "prog_var": 58, - "builtin_state": 1, - "maybe": 20, - "call_unify_context": 2, - "sym_name": 3, - "hlds_goal": 45, - "poly_info": 45, - "polymorphism_make_type_info_vars": 1, - "term.context": 3, - "polymorphism_make_type_info_var": 1, - "type": 57, - "int_or_var": 2, - "iov_int": 1, - "iov_var": 1, - "gen_extract_type_info": 1, - "tvar": 10, - "kind": 1, - "prog_varset": 14, - "vartypes": 12, - "poly_info.": 1, - "create_poly_info": 1, - "poly_info_extract": 1, - "build_typeclass_info_type": 3, - "prog_constraint": 4, - "type_is_typeclass_info": 1, - "type_is_type_info_or_ctor_type": 1, - "build_type_info_type": 1, - "get_special_proc": 1, - "special_pred_id": 2, - "get_special_proc_det": 1, - "convert_pred_to_lambda_goal": 3, - "purity": 1, - "lambda_eval_method": 1, - "unify_context": 3, - "context": 1, - "unify_rhs": 4, - "fix_undetermined_mode_lambda_goal": 2, - "rhs_lambda_goal": 7, - "init_type_info_var": 1, - "init_const_type_ctor_info_var": 1, - "type_ctor": 1, - "cons_id": 2, - "type_info_kind": 2, - "type_info": 8, - "type_ctor_info.": 1, - "new_type_info_var_raw": 1, - "check_hlds.clause_to_proc.": 1, - "check_hlds.mode_util.": 1, - "check_hlds.type_util.": 2, - "hlds.from_ground_term_util.": 1, - "hlds.const_struct.": 1, - "hlds.goal_util.": 1, - "hlds.hlds_args.": 1, - "hlds.hlds_clauses.": 1, - "hlds.hlds_code_util.": 1, - "hlds.hlds_data.": 2, "hlds.instmap.": 2, - "hlds.passes_aux.": 1, - "hlds.pred_table.": 1, - "hlds.quantification.": 1, - "hlds.special_pred.": 1, - "libs.": 1, "libs.globals.": 2, - "libs.options.": 3, + "ll_backend.continuation_info.": 1, + "ll_backend.global_data.": 1, + "ll_backend.layout.": 1, + "ll_backend.llds.": 1, + "ll_backend.trace_gen.": 1, + "mdbcomp.prim_data.": 3, "mdbcomp.goal_path.": 2, - "mdbcomp.program_representation.": 1, - "parse_tree.builtin_lib_types.": 2, - "parse_tree.prog_mode.": 1, - "parse_tree.prog_type.": 2, - "parse_tree.prog_type_subst.": 1, + "parse_tree.prog_data.": 2, "parse_tree.set_of_var.": 2, "assoc_list.": 3, "bool.": 4, - "int.": 4, + "counter.": 1, + "io.": 8, + "list.": 4, "map.": 3, - "pair.": 3, + "maybe.": 3, "set.": 4, - "solutions.": 1, + "set_tree234.": 1, + "term.": 3, + "implementation.": 12, + "backend_libs.builtin_ops.": 1, + "backend_libs.proc_label.": 1, + "hlds.arg_info.": 1, + "hlds.hlds_desc.": 1, + "hlds.hlds_rtti.": 2, + "libs.options.": 3, + "libs.trace_params.": 1, + "ll_backend.code_util.": 1, + "ll_backend.opt_debug.": 1, + "ll_backend.var_locn.": 1, + "parse_tree.builtin_lib_types.": 2, + "parse_tree.prog_type.": 2, + "parse_tree.mercury_to_mercury.": 1, + "cord.": 1, + "int.": 4, + "pair.": 3, + "require.": 6, + "stack.": 1, + "string.": 7, "varset.": 2, - "ModuleInfo": 49, - "module_info_get_preds": 3, - ".ModuleInfo": 8, - "Preds0": 2, - "map.keys": 3, - "PredIds0": 2, - "list.foldl": 6, - "maybe_polymorphism_process_pred": 3, - "Preds1": 2, - "PredIds1": 2, - "fixup_pred_polymorphism": 4, - "expand_class_method_bodies": 1, + "type": 57, + "code_info.": 1, + "pred": 255, + "code_info_init": 2, + "(": 3351, + "bool": 406, + "in": 510, + "globals": 5, + "pred_id": 15, + "proc_id": 12, + "pred_info": 20, + "proc_info": 11, + "abs_follow_vars": 3, + "module_info": 26, + "static_cell_info": 4, + "const_struct_map": 3, + "resume_point_info": 11, + "out": 337, + "trace_slot_info": 3, + "maybe": 20, + "containing_goal_map": 4, + ")": 3351, + "list": 82, + "string": 115, + "int": 129, + "code_info": 208, + "is": 246, + "det.": 184, + "get_globals": 5, + "get_exprn_opts": 2, + "exprn_opts": 3, + "get_module_info": 7, + "get_pred_id": 6, + "get_proc_id": 5, + "get_pred_info": 2, + "get_proc_info": 4, + "get_varset": 3, + "prog_varset": 14, + "func": 24, + "get_var_types": 3, + "vartypes.": 1, + "get_maybe_trace_info": 2, + "trace_info": 3, + "get_emit_trail_ops": 2, + "add_trail_ops": 5, + "get_emit_region_ops": 2, + "add_region_ops": 6, + "get_forward_live_vars": 2, + "set_of_progvar": 10, + "set_forward_live_vars": 2, + "get_instmap": 4, + "instmap": 3, + "set_instmap": 3, + "get_par_conj_depth": 2, + "set_par_conj_depth": 2, + "get_label_counter": 3, + "counter": 6, + "get_succip_used": 2, + "get_layout_info": 4, + "proc_label_layout_info": 3, + "get_proc_trace_events": 2, + "set_proc_trace_events": 2, + "get_closure_layouts": 3, + "closure_proc_id_data": 4, + "get_max_reg_in_use_at_trace": 2, + "set_max_reg_in_use_at_trace": 2, + "get_created_temp_frame": 2, + "get_static_cell_info": 5, + "set_static_cell_info": 5, + "get_alloc_sites": 3, + "set_tree234": 3, + "alloc_site_info": 4, + "set_alloc_sites": 3, + "get_used_env_vars": 2, + "set": 16, + "set_used_env_vars": 2, + "get_opt_trail_ops": 2, + "get_opt_region_ops": 2, + "get_auto_comments": 2, + "get_lcmc_null": 2, + "get_containing_goal_map": 3, + "get_containing_goal_map_det": 2, + "get_const_struct_map": 2, + "add_out_of_line_code": 2, + "llds_code": 21, + "get_out_of_line_code": 2, + "get_var_slot_count": 2, + "set_maybe_trace_info": 3, + "get_opt_no_return_calls": 2, + "get_zombies": 2, + "set_zombies": 2, + "get_var_locn_info": 7, + "var_locn_info": 3, + "set_var_locn_info": 4, + "get_temps_in_use": 6, + "lval": 114, + "set_temps_in_use": 4, + "get_fail_info": 13, + "fail_info": 24, + "set_fail_info": 9, + "set_label_counter": 3, + "set_succip_used": 3, + "set_layout_info": 4, + "get_max_temp_slot_count": 2, + "set_max_temp_slot_count": 2, + "get_temp_content_map": 3, + "map": 7, + "slot_contents": 4, + "set_temp_content_map": 2, + "get_persistent_temps": 3, + "set_persistent_temps": 2, + "set_closure_layouts": 3, + "get_closure_seq_counter": 3, + "set_closure_seq_counter": 3, + "set_created_temp_frame": 2, + "code_info_static": 26, + "code_info_loc_dep": 22, + "code_info_persistent": 44, + ".": 610, + "cis_globals": 2, + "cis_exprn_opts": 2, + "cis_module_info": 2, + "cis_pred_id": 2, + "cis_proc_id": 2, + "cis_pred_info": 2, + "cis_proc_info": 2, + "cis_proc_label": 1, + "proc_label": 2, + "cis_varset": 2, + "cis_var_slot_count": 2, + "cis_maybe_trace_info": 3, + "cis_opt_no_resume_calls": 2, + "cis_emit_trail_ops": 2, + "cis_opt_trail_ops": 2, + "cis_emit_region_ops": 2, + "cis_opt_region_ops": 2, + "cis_auto_comments": 2, + "cis_lcmc_null": 2, + "cis_containing_goal_map": 2, + "cis_const_struct_map": 2, + "cild_forward_live_vars": 3, + "cild_instmap": 3, + "cild_zombies": 3, + "cild_var_locn_info": 3, + "cild_temps_in_use": 3, + "cild_fail_info": 3, + "cild_par_conj_depth": 3, + "cip_label_num_src": 3, + "cip_store_succip": 3, + "cip_label_info": 3, + "cip_proc_trace_events": 3, + "cip_stackslot_max": 3, + "cip_temp_contents": 3, + "cip_persistent_temps": 3, + "cip_closure_layout_seq": 3, + "cip_closure_layouts": 3, + "cip_max_reg_r_used": 3, + "cip_max_reg_f_used": 2, + "cip_created_temp_frame": 3, + "cip_static_cell_info": 3, + "cip_alloc_sites": 3, + "cip_used_env_vars": 3, + "cip_ts_string_table_size": 3, + "cip_ts_rev_string_table": 4, + "cip_out_of_line_code": 4, + "SaveSuccip": 2, + "Globals": 32, "PredId": 50, - "module_info_pred_info": 6, + "ProcId": 31, "PredInfo": 64, - "PredModule": 8, - "pred_info_module": 4, - "PredName": 8, - "pred_info_name": 4, - "PredArity": 6, - "pred_info_orig_arity": 3, - "no_type_info_builtin": 3, - "copy_module_clauses_to_procs": 1, + "ProcInfo": 43, + "FollowVars": 6, + "ModuleInfo": 49, + "StaticCellInfo": 8, + "ConstStructMap": 2, + "ResumePoint": 13, + "TraceSlotInfo": 5, + "MaybeContainingGoalMap": 5, + "TSRevStringTable": 2, + "TSStringTableSize": 2, + "CodeInfo": 2, + "ProcLabel": 8, + "make_proc_label": 1, + "proc_info_get_initial_instmap": 1, + "InstMap": 6, + "proc_info_get_liveness_info": 1, + "Liveness": 4, + "CodeModel": 8, + "proc_info_interface_code_model": 2, + "build_input_arg_list": 1, + "ArgList": 2, + "proc_info_get_varset": 1, + "VarSet": 15, + "proc_info_get_vartypes": 2, + "VarTypes": 22, + "proc_info_get_stack_slots": 1, + "StackSlots": 5, + "ExprnOpts": 4, + "init_exprn_opts": 3, + "globals.lookup_bool_option": 18, + "use_float_registers": 5, + "UseFloatRegs": 6, + "yes": 144, + "FloatRegType": 3, + "reg_f": 1, + ";": 913, + "no": 365, + "reg_r": 2, + "globals.get_trace_level": 1, + "TraceLevel": 5, + "eff_trace_level_is_none": 2, + "trace_fail_vars": 1, + "FailVars": 3, + "MaybeFailVars": 3, + "set_of_var.union": 3, + "EffLiveness": 3, + "init_var_locn_state": 1, + "VarLocnInfo": 12, + "stack.init": 1, + "ResumePoints": 14, + "allow_hijacks": 3, + "AllowHijack": 3, + "Hijack": 6, + "allowed": 6, + "not_allowed": 5, + "DummyFailInfo": 2, + "resume_point_unknown": 9, + "may_be_different": 7, + "not_inside_non_condition": 2, + "map.init": 7, + "TempContentMap": 4, + "set.init": 7, + "PersistentTemps": 4, + "TempsInUse": 8, + "Zombies": 2, + "set_of_var.init": 1, + "LayoutMap": 2, + "max_var_slot": 1, + "VarSlotMax": 2, + "trace_reserved_slots": 1, + "FixedSlots": 2, + "_": 149, + "int.max": 1, + "SlotMax": 2, + "opt_no_return_calls": 3, + "OptNoReturnCalls": 2, + "use_trail": 3, + "UseTrail": 2, + "disable_trail_ops": 3, + "DisableTrailOps": 2, + "EmitTrailOps": 3, + "do_not_add_trail_ops": 1, + "optimize_trail_usage": 3, + "OptTrailOps": 2, + "optimize_region_ops": 3, + "OptRegionOps": 2, + "region_analysis": 3, + "UseRegions": 3, + "EmitRegionOps": 3, + "do_not_add_region_ops": 1, + "auto_comments": 4, + "AutoComments": 2, + "optimize_constructor_last_call_null": 3, + "LCMCNull": 2, + "CodeInfo0": 2, + "init_fail_info": 2, + "will": 1, + "override": 1, + "this": 4, + "dummy": 2, + "value": 16, + "nested": 1, + "parallel": 3, + "conjunction": 1, + "depth": 1, + "counter.init": 2, "[": 203, "]": 203, - "polymorphism_process_pred_msg": 3, - "PredTable0": 3, - "map.lookup": 2, - "PredInfo0": 16, - "pred_info_get_clauses_info": 2, - "ClausesInfo0": 5, - "clauses_info_get_vartypes": 2, - "VarTypes0": 12, - "clauses_info_get_headvars": 2, - "HeadVars": 20, - "pred_info_get_arg_types": 7, - "TypeVarSet": 15, - "ExistQVars": 13, - "ArgTypes0": 3, - "proc_arg_vector_partition_poly_args": 1, - "ExtraHeadVarList": 2, - "OldHeadVarList": 2, - "lookup_var_types": 6, - "ExtraArgTypes": 2, - "ArgTypes": 6, - "pred_info_set_arg_types": 1, - "PredInfo1": 5, - "_": 149, - "|": 38, - "OldHeadVarTypes": 2, - "type_list_subsumes": 2, - "Subn": 3, - "map.is_empty": 1, - "pred_info_set_existq_tvar_binding": 1, - "PredInfo2": 7, - "polymorphism_introduce_exists_casts_pred": 3, - "map.det_update": 4, - "PredTable": 2, - "module_info_set_preds": 1, - "pred_info_get_procedures": 2, - ".PredInfo": 2, - "Procs0": 4, - "map.map_values_only": 1, - ".ProcInfo": 2, - "ProcInfo": 43, - "det": 21, - "introduce_exists_casts_proc": 1, - "Procs": 4, - "pred_info_set_procedures": 2, - "trace": 4, - "compiletime": 4, - "flag": 4, - "io": 6, - "IO": 4, - "write_pred_progress_message": 1, - "polymorphism_process_pred": 4, - "mutable": 3, - "selected_pred": 1, - "bool": 406, - "no": 365, - "ground": 9, - "untrailed": 2, - "level": 1, - "promise_pure": 30, - "pred_id_to_int": 1, - "impure": 2, - "set_selected_pred": 2, - "yes": 144, - "true": 3, - "polymorphism_process_clause_info": 3, - "ClausesInfo": 13, - "Info": 134, - "ExtraArgModes": 20, - "poly_info_get_module_info": 4, - "poly_info_get_const_struct_db": 1, - "ConstStructDb": 2, - "module_info_set_const_struct_db": 1, - "poly_info_get_typevarset": 4, - "pred_info_set_typevarset": 1, - "pred_info_set_clauses_info": 1, - "ProcIds": 5, - "pred_info_procids": 2, - "polymorphism_process_proc_in_table": 3, - "module_info_set_pred_info": 1, - "clauses_info": 6, - "poly_arg_vector": 9, - "mer_mode": 14, - "ModuleInfo0": 8, - "init_poly_info": 1, - ".ClausesInfo": 2, - "_VarSet": 1, - "ExplicitVarTypes": 2, - "_TVarNameMap": 1, - "_VarTypes": 1, - "HeadVars0": 5, - "ClausesRep0": 2, - "ItemNumbers": 2, - "_RttiVarMaps": 1, - "HaveForeignClauses": 2, - "setup_headvars": 3, - "UnconstrainedTVars": 15, - "ExtraTypeInfoHeadVars": 4, - "ExistTypeClassInfoHeadVars": 6, - "get_clause_list": 1, - "Clauses0": 2, - "list.map_foldl": 2, - "polymorphism_process_clause": 3, - "Clauses": 2, - "poly_info_get_varset": 4, - ".Info": 25, - "VarSet": 15, - "poly_info_get_var_types": 6, - "VarTypes": 22, - "poly_info_get_rtti_varmaps": 4, - "RttiVarMaps": 16, - "set_clause_list": 1, - "ClausesRep": 2, - "map.init": 7, - "TVarNameMap": 2, - "This": 2, - "only": 4, - "used": 2, - "while": 1, - "adding": 1, - "clauses.": 1, - "proc_arg_vector": 9, - "clause": 2, - "OldHeadVars": 2, - "NewHeadVars": 2, - "Clause": 2, - "pred_info_is_imported": 2, - "Goal0": 21, - ".Clause": 1, - "clause_body": 2, - "empty_cache_maps": 4, - "poly_info_set_num_reuses": 1, - "polymorphism_process_goal": 20, - "Goal1": 2, - "produce_existq_tvars": 3, - "Goal2": 2, - "pred_info_get_exist_quant_tvars": 1, - "fixup_quantification": 1, - "Goal": 40, - "proc_table": 2, - "ProcId": 31, - "ProcTable": 2, - ".ProcTable": 1, - "ProcInfo0": 2, - "polymorphism_process_proc": 3, - "pred_info_is_pseudo_imported": 1, - "hlds_pred.in_in_unification_proc_id": 1, - "HeadVarList": 4, - "proc_arg_vector_to_list": 2, - "clauses_info_get_rtti_varmaps": 1, - "clauses_info_get_varset": 1, - "proc_info_set_headvars": 1, - "proc_info_set_rtti_varmaps": 1, - "proc_info_set_varset": 1, - "proc_info_set_vartypes": 1, - "copy_clauses_to_proc": 1, - "proc_info_get_argmodes": 2, - "ArgModes1": 2, - "ExtraArgModesList": 2, - "poly_arg_vector_to_list": 1, - "ArgModes": 5, - "proc_info_set_argmodes": 1, - "ExtraHeadTypeInfoVars": 7, - "ExistHeadTypeClassInfoVars": 9, - "pred_info_get_origin": 1, - "Origin": 8, - "ExtraArgModes0": 3, - "poly_arg_vector_init": 1, - "origin_instance_method": 1, - "InstanceMethodConstraints": 4, - "setup_headvars_instance_method": 3, - "origin_special_pred": 1, - "origin_transformed": 1, - "origin_created": 1, - "origin_assertion": 1, - "origin_lambda": 1, - "origin_user": 1, - "pred_info_get_class_context": 4, - "ClassContext": 6, - "InstanceTVars": 7, - "InstanceUnconstrainedTVars": 2, - "InstanceUnconstrainedTypeInfoVars": 2, - "setup_headvars_2": 4, - "instance_method_constraints": 2, - "InstanceTypes": 2, - "InstanceConstraints": 3, - "type_vars_list": 5, - "get_unconstrained_tvars": 1, - "UnconstrainedInstanceTVars": 6, - "ArgTypeVarSet": 5, - "make_head_vars": 3, - "UnconstrainedInstanceTypeInfoVars": 7, - "make_typeclass_info_head_vars": 3, - "do_record_type_info_locns": 3, - "InstanceHeadTypeClassInfoVars": 4, - "proc_arg_vector_set_instance_type_infos": 1, - "proc_arg_vector_set_instance_typeclass_infos": 1, - "RttiVarMaps0": 4, - "rtti_reuse_typeclass_info_var": 3, - "poly_info_set_rtti_varmaps": 3, - "in_mode": 3, - "InMode": 3, - "list.duplicate": 6, - "list.length": 16, - "UnconstrainedInstanceTypeInfoModes": 2, - "InstanceHeadTypeClassInfoModes": 2, - "poly_arg_vector_set_instance_type_infos": 1, - "poly_arg_vector_set_instance_typeclass_infos": 1, - "prog_constraints": 1, - "AllUnconstrainedTVars": 2, - "AllExtraHeadTypeInfoVars": 2, - "constraints": 4, - "UnivConstraints": 3, - "ExistConstraints": 6, - "prog_type.constraint_list_get_tvars": 2, - "UnivConstrainedTVars": 2, - "ExistConstrainedTVars": 2, - "poly_info_get_constraint_map": 4, - "ConstraintMap": 12, - "get_improved_exists_head_constraints": 4, - "ActualExistConstraints": 9, - "pred_info_get_markers": 1, - "PredMarkers": 2, - "check_marker": 1, - "marker_class_method": 1, - "RecordExistQLocns": 3, - "do_not_record_type_info_locns": 1, - "UnivHeadTypeClassInfoVars": 4, - "HeadTypeVars": 2, - "list.delete_elems": 12, - "UnconstrainedTVars0": 2, - "UnconstrainedTVars1": 2, - "UnconstrainedTVars2": 2, - "list.remove_dups": 4, - "UnconstrainedUnivTVars": 7, - "UnconstrainedExistTVars": 6, - "ExistHeadTypeInfoVars": 5, - "UnivHeadTypeInfoVars": 4, - "list.condense": 4, - "proc_arg_vector_set_univ_type_infos": 1, - "HeadVars1": 2, - "proc_arg_vector_set_exist_type_infos": 1, - "HeadVars2": 2, - "proc_arg_vector_set_univ_typeclass_infos": 1, - "HeadVars3": 2, - "proc_arg_vector_set_exist_typeclass_infos": 1, - "In": 6, - "out_mode": 2, - "Out": 6, - "NumUnconstrainedUnivTVars": 2, - "NumUnconstrainedExistTVars": 2, - "NumUnivClassInfoVars": 2, - "NumExistClassInfoVars": 2, - "UnivTypeInfoModes": 2, - "ExistTypeInfoModes": 2, - "UnivTypeClassInfoModes": 2, - "ExistTypeClassInfoModes": 2, - "poly_arg_vector_set_univ_type_infos": 1, - "poly_arg_vector_set_exist_type_infos": 1, - "poly_arg_vector_set_univ_typeclass_infos": 1, - "poly_arg_vector_set_exist_typeclass_infos": 1, - "some": 4, - "ToLocn": 4, - "TheVar": 2, - "TheLocn": 2, - "list.map": 17, - "UnivTypeLocns": 2, - "list.foldl_corresponding": 3, - "rtti_det_insert_type_info_locn": 3, - "ExistTypeLocns": 2, - "UnconstrainedInstanceTypeLocns": 2, - ".RttiVarMaps": 1, - "TypeInfoHeadVars": 2, - "pred_info_get_tvar_kinds": 2, - "KindMap": 2, - "PredClassContext": 5, - "PredExistConstraints": 2, - "exist_constraints": 1, - "ExistQVarsForCall": 2, - "GoalInfo": 44, - "Context": 20, - "goal_info_get_context": 4, - "make_typeclass_info_vars": 3, - "ExistTypeClassVarsMCAs": 2, - "ExtraTypeClassGoals": 5, - "assoc_list.keys": 8, - "ExistTypeClassVars": 3, - "assign_var_list": 8, - "ExtraTypeClassUnifyGoals": 2, - "vartypes_is_empty": 1, - "PredToActualTypeSubst": 4, - "ActualArgTypes": 8, - "ArgTypeSubst": 2, - "apply_subst_to_tvar_list": 1, - "ActualTypes": 2, - "polymorphism_do_make_type_info_vars": 5, - "TypeInfoVarsMCAs": 2, - "ExtraTypeInfoGoals": 4, - "TypeInfoVars": 5, - "ExtraTypeInfoUnifyGoals": 2, - "GoalList": 8, - "conj_list_to_goal": 6, + "set_tree234.init": 1, + "cord.empty": 1, + "init_maybe_trace_info": 3, + "CodeInfo1": 2, + "exprn_opts.": 1, + "gcc_non_local_gotos": 3, + "OptNLG": 3, + "NLG": 3, + "have_non_local_gotos": 1, + "do_not_have_non_local_gotos": 1, + "asm_labels": 3, + "OptASM": 3, + "ASM": 3, + "have_asm_labels": 1, + "do_not_have_asm_labels": 1, + "static_ground_cells": 3, + "OptSGCell": 3, + "SGCell": 3, + "have_static_ground_cells": 1, + "do_not_have_static_ground_cells": 1, + "unboxed_float": 3, + "OptUBF": 3, + "UBF": 3, + "have_unboxed_floats": 1, + "do_not_have_unboxed_floats": 1, + "OptFloatRegs": 3, + "do_not_use_float_registers": 1, + "static_ground_floats": 3, + "OptSGFloat": 3, + "SGFloat": 3, + "have_static_ground_floats": 1, + "do_not_have_static_ground_floats": 1, + "static_code_addresses": 3, + "OptStaticCodeAddr": 3, + "StaticCodeAddrs": 3, + "have_static_code_addresses": 1, + "do_not_have_static_code_addresses": 1, + "trace_level": 4, + "CI": 294, + "proc_info_get_has_tail_call_events": 1, + "HasTailCallEvents": 3, + "tail_call_events": 1, + "get_next_label": 5, + "TailRecLabel": 2, + "MaybeTailRecLabel": 3, + "no_tail_call_events": 1, + "trace_setup": 1, + "TraceInfo": 2, + "MaxRegR": 4, + "MaxRegF": 4, + "cip_max_reg_f_used.": 1, + "TI": 4, + "LV": 2, + "IM": 2, + "Zs": 2, + "EI": 2, + "FI": 2, + "N": 6, + "LC": 2, + "SU": 2, + "LI": 2, + "PTE": 2, + "TM": 2, + "CM": 2, + "PT": 2, + "CLS": 2, + "CG": 2, + "MR": 4, + "MF": 1, + "MF.": 1, + "SCI": 2, + "ASI": 2, + "UEV": 2, + "ContainingGoalMap": 2, "unexpected": 21, - "Var1": 5, - "Vars1": 2, - "Var2": 5, - "Vars2": 2, - "Goals": 13, - "assign_var": 3, - "true_goal": 1, - "term.context_init": 2, - "create_pure_atomic_complicated_unification": 1, - "rhs_var": 2, - "umc_explicit": 1, - "constraint_map": 1, - "NumExistConstraints": 4, - "search_hlds_constraint_list": 1, - "unproven": 3, - "goal_id": 1, - "ActualExistConstraints0": 2, - "GoalExpr0": 18, - "GoalInfo0": 41, - "generic_call": 1, - "plain_call": 5, - "ArgVars0": 23, - "polymorphism_process_call": 4, - "ExtraVars": 13, - "ExtraGoals": 13, - "ArgVars": 6, - "CallExpr": 4, - "call_args": 1, - "Call": 4, - "call_foreign_proc": 4, - "polymorphism_process_foreign_proc": 3, - "unify": 21, - "XVar": 11, - "Y": 9, - "Mode": 12, - "Unification": 16, - "UnifyContext": 15, - "polymorphism_process_unify": 4, - "conj": 5, - "ConjType": 4, - "Goals0": 13, - "plain_conj": 4, - "polymorphism_process_plain_conj": 5, - "parallel_conj": 1, - "get_cache_maps_snapshot": 11, - "InitialSnapshot": 36, - "polymorphism_process_par_conj": 5, - "GoalExpr": 19, - "disj": 2, - "polymorphism_process_disj": 6, - "set_cache_maps_snapshot": 15, - "if_then_else": 2, - "Vars": 10, - "Cond0": 2, - "Then0": 2, - "Else0": 2, - "Cond": 2, - "Then": 2, - "Else": 2, - "negation": 2, - "SubGoal0": 14, - "SubGoal": 16, - "switch": 2, + "NewCode": 2, + "Code0": 2, + ".CI": 29, + "Code": 36, + "+": 127, + "Code.": 1, + "get_stack_slots": 2, + "stack_slots": 1, + "get_follow_var_map": 2, + "abs_follow_vars_map": 1, + "get_next_non_reserved": 2, + "reg_type": 1, + "set_follow_vars": 4, + "pre_goal_update": 3, + "hlds_goal_info": 22, + "has_subgoals": 2, + "post_goal_update": 3, + "body_typeinfo_liveness": 4, + "variable_type": 3, + "prog_var": 58, + "mer_type.": 1, + "variable_is_of_dummy_type": 2, + "is_dummy_type.": 1, + "search_type_defn": 4, + "mer_type": 21, + "hlds_type_defn": 1, + "semidet.": 10, + "lookup_type_defn": 2, + "hlds_type_defn.": 1, + "lookup_cheaper_tag_test": 2, + "maybe_cheaper_tag_test.": 1, + "filter_region_vars": 2, + "set_of_progvar.": 2, + "get_proc_model": 2, + "code_model.": 1, + "get_headvars": 2, + "get_arginfo": 2, + "arg_info": 2, + "get_pred_proc_arginfo": 3, + "current_resume_point_vars": 2, + "variable_name": 2, + "make_proc_entry_label": 2, + "code_addr.": 1, + "label": 5, + "succip_is_used": 2, + "add_trace_layout_for_label": 2, + "term.context": 3, + "trace_port": 1, + "forward_goal_path": 1, + "user_event_info": 1, + "layout_label_info": 2, + "get_cur_proc_label": 4, + "get_next_closure_seq_no": 2, + "add_closure_layout": 2, + "add_threadscope_string": 2, + "get_threadscope_rev_string_table": 2, + "add_scalar_static_cell": 2, + "typed_rval": 1, + "data_id": 3, + "add_scalar_static_cell_natural_types": 2, + "rval": 3, + "add_vector_static_cell": 2, + "llds_type": 1, + "add_alloc_site_info": 2, + "prog_context": 1, + "alloc_site_id": 2, + "add_resume_layout_for_label": 2, + "var_locn_get_stack_slots": 1, + "FollowVarMap": 2, + "var_locn_get_follow_var_map": 1, + "RegType": 2, + "NextNonReserved": 2, + "var_locn_get_next_non_reserved": 1, + "VarLocnInfo0": 4, + "var_locn_set_follow_vars": 1, + "GoalInfo": 44, + "HasSubGoals": 3, + "goal_info_get_resume_point": 1, + "no_resume_point": 1, + "resume_point": 1, + "goal_info_get_follow_vars": 1, + "MaybeFollowVars": 3, + "goal_info_get_pre_deaths": 1, + "PreDeaths": 3, + "rem_forward_live_vars": 3, + "maybe_make_vars_forward_dead": 2, + "goal_info_get_pre_births": 1, + "PreBirths": 2, + "add_forward_live_vars": 2, + "does_not_have_subgoals": 2, + "goal_info_get_post_deaths": 2, + "PostDeaths": 5, + "goal_info_get_post_births": 1, + "PostBirths": 3, + "make_vars_forward_live": 1, + "InstMapDelta": 2, + "goal_info_get_instmap_delta": 1, + "InstMap0": 2, + "instmap.apply_instmap_delta": 1, + "TypeInfoLiveness": 2, + "module_info_pred_info": 6, + "body_should_use_typeinfo_liveness": 1, "Var": 13, - "CanFail": 4, - "Cases0": 4, - "polymorphism_process_cases": 5, - "Cases": 4, - "scope": 7, - "Reason0": 16, - "from_ground_term": 2, - "TermVar": 4, - "Kind": 5, - "from_ground_term_initial": 2, - "polymorphism_process_from_ground_term_initial": 3, - "from_ground_term_construct": 1, - "from_ground_term_deconstruct": 1, - "from_ground_term_other": 1, - "promise_solutions": 1, - "promise_purity": 1, - "require_detism": 1, - "require_complete_switch": 1, - "commit": 1, - "barrier": 1, - "loop_control": 1, - "exist_quant": 1, - "trace_goal": 1, - "shorthand": 2, - "ShortHand0": 4, - "atomic_goal": 2, - "GoalType": 2, - "Outer": 2, - "Inner": 2, - "MainGoal0": 2, - "OrElseGoals0": 2, - "OrElseInners": 2, - "MainGoal": 2, - "OrElseGoals": 2, - "ShortHand": 3, - "try_goal": 2, - "MaybeIO": 2, - "ResultVar": 2, - "SubGoalExpr0": 4, - "SubGoalInfo": 2, - "Conjuncts0": 2, - "ConjunctA0": 2, - "ConjunctB0": 2, - "ConjunctA": 2, - "ConjunctB": 2, - "Conjuncts": 2, - "SubGoalExpr": 2, - "bi_implication": 1, - "hlds_goal_expr": 2, - "SubGoalInfo0": 2, - "SubGoals0Prime": 2, - "SubGoals0": 2, - "polymorphism_process_fgti_goals": 5, - "RevMarkedSubGoals": 2, - "fgt_invariants_kept": 2, - "InvariantsStatus": 7, - "Reason": 2, - "fgt_invariants_broken": 2, - "introduce_partial_fgt_scopes": 1, - "deconstruct_top_down": 1, - "fgt_marked_goal": 2, - "fgt_invariants_status": 2, - "RevMarkedGoals": 4, - "OldInfo": 3, - "XVarPrime": 2, - "ModePrime": 2, - "UnificationPrime": 2, - "UnifyContextPrime": 2, - "rhs_functor": 5, - "ConsIdPrime": 2, - "YVarsPrime": 2, - "ConsId": 10, - "YVars": 4, - "polymorphism_process_unify_functor": 4, - "Changed": 10, - "VarSetBefore": 2, - "MaxVarBefore": 2, - "varset.max_var": 2, - "poly_info_get_num_reuses": 2, - "NumReusesBefore": 2, - "VarSetAfter": 2, - "MaxVarAfter": 2, - "NumReusesAfter": 2, - "expect": 15, - "MarkedGoal": 3, - "fgt_kept_goal": 1, - "fgt_broken_goal": 1, - ".RevMarkedGoals": 1, - "unify_mode": 2, - "Unification0": 8, - "_YVar": 1, - "lookup_var_type": 3, "Type": 18, - "unification_typeinfos": 5, - "_Changed": 3, - "Args": 11, - "Purity": 9, - "Groundness": 6, - "PredOrFunc": 6, - "EvalMethod": 8, - "LambdaVars": 13, - "Modes": 4, - "Det": 4, - "LambdaGoal0": 5, - "LambdaGoal1": 2, - "fixup_lambda_quantification": 1, - "LambdaGoal": 6, - "NonLocalTypeInfos": 3, - "set_of_var.to_sorted_list": 1, - "NonLocalTypeInfosList": 2, - "Y1": 2, - "NonLocals0": 10, - "goal_info_get_nonlocals": 6, - "set_of_var.union": 3, - "NonLocals": 12, - "goal_info_set_nonlocals": 6, - "type_vars": 2, - "TypeVars": 8, - "get_type_info_locn": 1, - "TypeInfoLocns": 6, - "add_unification_typeinfos": 4, - "rtti_lookup_type_info_locn": 1, - "type_info_locn": 1, - "type_info_locn_var": 1, - "TypeInfoVars0": 2, - ".GoalInfo": 1, - "set_of_var.insert_list": 4, - ".Unification": 5, - "complicated_unify": 2, - "construct": 1, - "deconstruct": 2, - "assign": 46, - "simple_test": 1, - "X0": 8, - "ConsId0": 5, - "Mode0": 4, - "TypeOfX": 6, - "Arity": 5, - "closure_cons": 1, - "ShroudedPredProcId": 2, - "proc": 2, - "ProcId0": 3, - "unshroud_pred_proc_id": 1, - "type_is_higher_order_details": 1, - "_PredOrFunc": 1, - "CalleeArgTypes": 2, - "invalid_proc_id": 1, - "goal_info_add_feature": 1, - "feature_lambda_undetermined_mode": 1, - "GoalInfo1": 6, - "VarSet0": 2, - "Functor0": 6, - "poly_info_set_varset_and_types": 1, - "cons": 3, - "ConsTypeCtor": 2, - "remove_new_prefix": 1, - "OrigFunctor": 2, - "IsConstruction": 7, - "type_util.get_existq_cons_defn": 1, - "ConsDefn": 2, - "polymorphism_process_existq_unify_functor": 3, - "UnifyExpr": 2, - "Unify": 2, - "PredArgTypes": 10, - "Functor": 6, - "create_fresh_vars": 5, + "lookup_var_type": 3, + "IsDummy": 2, + "VarType": 2, + "check_dummy_type": 1, + "TypeDefn": 6, + "type_to_ctor_det": 1, + "TypeCtor": 2, + "module_info_get_type_table": 1, + "TypeTable": 2, + "search_type_ctor_defn": 1, + "TypeDefnPrime": 2, + "CheaperTagTest": 3, + "get_type_defn_body": 1, + "TypeBody": 2, + "hlds_du_type": 1, + "CheaperTagTestPrime": 2, + "no_cheaper_tag_test": 1, + "ForwardLiveVarsBeforeGoal": 6, + "RegionVars": 2, + "code_info.get_var_types": 1, + "set_of_var.filter": 1, + "is_region_var": 1, + "HeadVars": 20, "module_info_pred_proc_info": 4, - "QualifiedPName": 5, - "qualified": 1, - "cons_id_dummy_type_ctor": 1, - "RHS": 2, - "CallUnifyContext": 2, - "LambdaGoalExpr": 2, - "not_builtin": 3, - "OutsideVars": 2, - "set_of_var.list_to_set": 3, - "InsideVars": 2, - "set_of_var.intersect": 1, - "LambdaNonLocals": 2, - "GoalId": 8, - "goal_info_get_goal_id": 3, - "goal_info_init": 1, - "LambdaGoalInfo0": 2, - "goal_info_set_context": 1, - "LambdaGoalInfo1": 2, - "LambdaGoalInfo2": 2, - "goal_info_set_purity": 1, - "LambdaGoalInfo3": 2, - "goal_info_set_goal_id": 1, - "LambdaGoalInfo": 4, - "lambda_modes_and_det": 4, - "LambdaModes": 6, - "LambdaDet": 6, - "pred_info_is_pred_or_func": 1, - "ho_ground": 1, - "_LambdaModes0": 1, - "_LambdaDet0": 1, - "goal_to_conj_list": 1, - "LambdaGoalList0": 2, - "list.split_last": 1, - "LambdaGoalButLast0": 2, - "LastGoal0": 2, - "LastGoalExpr0": 2, - "LastGoalInfo0": 2, - "PredId0": 2, - "_DummyProcId": 1, - "Args0": 5, - "MaybeCallUnifyContext0": 2, - "QualifiedPName0": 2, - "LambdaGoalButLast": 2, - "LastGoalInfo": 2, - "MaybeCallUnifyContext": 4, - "LastGoalExpr": 2, - "LastGoal": 2, - "prog_vars": 1, - "determinism": 1, - "NumArgModes": 2, - "NumLambdaVars": 2, - "list.drop": 2, - "LambdaModesPrime": 2, - "proc_info_get_declared_determinism": 1, - "MaybeDet": 3, - "sorry": 1, - "Types": 6, - "varset.new_var": 1, - "add_var_type": 1, - "ctor_defn": 2, - "CtorDefn": 2, - "ActualRetType": 2, - "CtorTypeVarSet": 2, - "CtorExistQVars": 2, - "CtorKindMap": 2, - "CtorExistentialConstraints": 2, - "CtorArgTypes": 2, - "CtorRetType": 2, - "TypeVarSet0": 5, - "tvarset_merge_renaming": 3, - "CtorToParentRenaming": 6, - "apply_variable_renaming_to_tvar_list": 2, - "ParentExistQVars": 6, - "apply_variable_renaming_to_tvar_kind_map": 2, - "ParentKindMap": 7, - "apply_variable_renaming_to_prog_constraint_list": 1, - "ParentExistentialConstraints": 3, - "apply_variable_renaming_to_type_list": 4, - "ParentArgTypes": 6, - "apply_variable_renaming_to_type": 1, - "ParentRetType": 2, - "poly_info_set_typevarset": 3, - "type_list_subsumes_det": 3, - "ParentToActualTypeSubst": 6, - "NumExistentialConstraints": 3, - "lookup_hlds_constraint_list": 4, - "ActualExistentialConstraints": 4, - "ExtraTypeClassVarsMCAs": 2, - "ExtraTypeClassVars": 2, - "assumed": 2, - "make_existq_typeclass_info_vars": 2, - "constraint_list_get_tvars": 3, - "ParentExistConstrainedTVars": 4, - "ParentUnconstrainedExistQVars": 2, - "apply_rec_subst_to_tvar_list": 4, - "ActualExistentialTypes": 2, - "ExtraTypeInfoVarsMCAs": 2, - "ExtraTypeInfoVars": 2, - "ExtraTypeClassVars.": 1, - "bound": 1, - "Attributes": 2, - "ProcExtraArgs": 2, - "MaybeTraceRuntimeCond": 2, - "Impl": 14, - "foreign_arg_var": 1, - "CanOptAwayUnnamed": 11, - "polymorphism_process_foreign_proc_args": 3, - "ExtraArgs": 5, - "pragma_foreign_code_impl": 4, - "foreign_arg": 1, - "PredTypeVarSet": 8, - "UnivCs": 4, - "ExistCs": 4, - "UnivVars0": 2, - "get_constrained_vars": 2, - "UnivConstrainedVars": 2, - "ExistVars0": 2, - "ExistConstrainedVars": 2, - "PredTypeVars0": 2, - "PredTypeVars1": 2, - "PredTypeVars2": 2, - "PredTypeVars": 3, - "foreign_proc_add_typeclass_info": 4, - "ExistTypeClassArgInfos": 2, - "UnivTypeClassArgInfos": 2, - "TypeClassArgInfos": 2, - "list.filter": 1, - "X": 9, - "semidet": 2, - "list.member": 2, - "ExistUnconstrainedVars": 2, - "UnivUnconstrainedVars": 2, - "foreign_proc_add_typeinfo": 4, - "ExistTypeArgInfos": 2, - "UnivTypeArgInfos": 2, - "TypeInfoArgInfos": 2, - "ArgInfos": 2, - "TypeInfoTypes": 2, - "func": 24, - "type_info_type": 1, - "UnivTypes": 2, - "ExistTypes": 2, - "OrigArgTypes": 2, - "make_foreign_args": 1, - "tvarset": 3, - "pair": 7, - "string": 115, - "box_policy": 2, - "Constraint": 2, - "MaybeArgName": 7, - "native_if_possible": 2, - "constraint": 2, - "SymName": 4, - "Name": 4, - "sym_name_to_string_sep": 1, - "TypeVarNames": 2, - "underscore_and_tvar_name": 3, - "string.append_list": 1, - "ConstraintVarName": 3, - "foreign_code_does_not_use_variable": 4, - "TVar": 4, - "varset.search_name": 1, - "TypeVarName": 2, - "C_VarName": 3, - "VarName": 2, - "foreign_code_uses_variable": 1, - "TVarName": 2, - "varset.lookup_name": 2, - "TVarName0": 1, - "TVarName0.": 1, - "cache_maps": 3, - "case": 4, - "Case0": 2, - "Case": 2, - "MainConsId": 2, - "OtherConsIds": 2, - "PredExistQVars": 2, - "PredKindMap": 3, - "varset.is_empty": 1, - "PredToParentTypeRenaming": 6, - "ParentTVars": 4, - "apply_variable_renaming_to_prog_constraints": 1, - "ParentClassContext": 2, - "ParentUnivConstraints": 3, - "ParentExistConstraints": 3, - "ParentUnivConstrainedTVars": 2, - "ParentUnconstrainedTVars0": 2, - "ParentUnconstrainedTVars1": 2, - "ParentUnconstrainedTVars": 3, - "ParentUnconstrainedUnivTVars": 3, - "ParentUnconstrainedExistTVars": 2, - "NumUnivConstraints": 2, - "ActualUnivConstraints": 2, - "ActualExistQVarTypes": 2, - "prog_type.type_list_to_var_list": 1, - "ActualExistQVars0": 2, - "ActualExistQVars": 2, - "ExtraUnivClassVarsMCAs": 2, - "ExtraUnivClassGoals": 2, - "ExtraUnivClassVars": 2, - "ExtraExistClassVars": 2, - "ExtraExistClassGoals": 2, - "ActualUnconstrainedUnivTypes": 2, - "ExtraUnivTypeInfoVarsMCAs": 2, - "ExtraUnivTypeInfoGoals": 2, - "ExtraUnivTypeInfoVars": 2, - "ActualUnconstrainedExistTypes": 2, - "ExtraExistTypeInfoVarsMCAs": 2, - "ExtraExistTypeInfoGoals": 2, - "ExtraExistTypeInfoVars": 2, - "CalleePredInfo": 2, - "CalleeProcInfo": 3, - "CallArgs0": 3, - "BuiltinState": 2, - "TVarSet0": 2, - "ActualArgTypes0": 3, - "PredTVarSet": 2, - "_PredExistQVars": 1, "proc_info_get_headvars": 2, - "CalleeHeadVars": 2, - "proc_info_get_rtti_varmaps": 1, - "CalleeRttiVarMaps": 2, - "NCallArgs0": 2, - "NPredArgs": 2, - "NExtraArgs": 3, - "OrigPredArgTypes0": 2, - "list.take": 1, - "CalleeExtraHeadVars0": 2, - "OrigPredArgTypes": 2, - "CalleeExtraHeadVars": 2, - "TVarSet": 2, - "PredToParentRenaming": 3, - "OrigParentArgTypes": 2, - "ParentToActualTSubst": 2, - "GetTypeInfoTypes": 2, - "ProgVar": 2, - "TypeInfoType": 2, - "rtti_varmaps_var_info": 1, - "VarInfo": 4, - "type_info_var": 1, - "typeclass_info_var": 1, - "non_rtti_var": 1, - "PredTypeInfoTypes": 2, - "ParentTypeInfoTypes": 2, - "apply_rec_subst_to_type_list": 1, - "ActualTypeInfoTypes": 2, - "Ctxt": 2, - "ExtraArgsConstArgs": 2, - "CallArgs": 2, - "NonLocals1": 2, - "CallGoalExpr": 2, - "CallGoal": 2, + "ArgInfo": 4, + "proc_info_arg_info": 1, + "ResumeVars": 4, + "FailInfo": 19, + "ResumePointStack": 2, + "stack.det_top": 5, + "ResumePointInfo": 2, + "pick_first_resume_point": 1, + "ResumeMap": 8, + "map.keys": 3, + "ResumeMapVarList": 2, + "set_of_var.list_to_set": 3, + "Name": 4, + "Varset": 2, + "varset.lookup_name": 2, + "Immed0": 3, + "CodeAddr": 2, + "Immed": 3, + "globals.lookup_int_option": 1, + "procs_per_c_function": 3, + "ProcsPerFunc": 2, + "CurPredId": 2, + "CurProcId": 2, + "proc": 2, + "make_entry_label": 1, + "Label": 8, + "C0": 4, + "counter.allocate": 2, + "C": 34, + "internal_label": 3, + "Context": 20, + "Port": 2, + "IsHidden": 2, + "GoalPath": 2, + "MaybeSolverEventInfo": 2, + "Layout": 2, + "Internals0": 8, + "Exec": 5, + "trace_port_layout_info": 1, + "LabelNum": 8, + "entry_label": 2, + "map.search": 2, + "Internal0": 4, + "internal_layout_info": 6, + "Exec0": 3, + "Resume": 5, + "Return": 6, + "Internal": 8, + "map.det_update": 4, + "Internals": 6, + "map.det_insert": 3, + "LayoutInfo": 2, + "Resume0": 3, + "get_active_temps_data": 2, + "assoc_list": 1, + "Temps": 2, + "map.select": 1, + "TempsInUseContentMap": 2, + "map.to_assoc_list": 3, + "cis_proc_label.": 1, + "SeqNo": 2, + "ClosureLayout": 2, + "ClosureLayouts": 2, + "|": 38, + "String": 2, + "SlotNum": 2, + "Size0": 3, + "RevTable0": 2, + "Size": 4, + "RevTable": 3, + "RevTable.": 1, + "TableSize": 2, + "cip_ts_string_table_size.": 1, + "RvalsTypes": 2, + "DataAddr": 6, + "StaticCellInfo0": 6, + "global_data.add_scalar_static_cell": 1, + "Rvals": 2, + "global_data.add_scalar_static_cell_natural_types": 1, + "Types": 6, + "Vector": 2, + "global_data.add_vector_static_cell": 1, + "AllocId": 2, + "AllocSite": 3, + "AllocSites0": 2, + "set_tree234.insert": 1, + "AllocSites": 2, + "position_info.": 1, + "branch_end_info.": 1, + "branch_end": 4, + "branch_end_info": 7, + "remember_position": 3, + "position_info": 14, + "reset_to_position": 4, + "reset_resume_known": 2, + "generate_branch_end": 2, + "abs_store_map": 3, + "after_all_branches": 2, + "save_hp_in_branch": 2, + "pos_get_fail_info": 3, + "fail_info.": 2, + "LocDep": 6, + "cild_fail_info.": 1, + "CurCI": 2, + "NextCI": 2, + "Static": 2, + "Persistent": 2, + "NextCI0": 4, + "TempsInUse0": 4, + "set.union": 2, + "BranchStart": 2, + "BranchStartFailInfo": 2, + "BSResumeKnown": 2, + "CurFailInfo": 2, + "CurFailStack": 2, + "CurCurfMaxfr": 2, + "CurCondEnv": 2, + "CurHijack": 2, + "NewFailInfo": 2, + "StoreMap": 8, + "MaybeEnd0": 3, + "MaybeEnd": 6, + "AbsVarLocs": 3, + "assoc_list.values": 1, + "AbsLocs": 2, + "code_util.max_mentioned_abs_regs": 1, + "instmap_is_reachable": 1, + "VarLocs": 2, + "assoc_list.map_values_only": 2, + "abs_locn_to_lval": 2, + "place_vars": 1, + "remake_with_store_map": 4, + "empty": 9, + "EndCodeInfo1": 5, + "EndCodeInfo0": 3, + "FailInfo0": 13, + "FailInfo1": 2, + "ResumeKnown0": 5, + "CurfrMaxfr0": 2, + "CondEnv0": 3, + "Hijack0": 2, + "R": 2, + "ResumeKnown1": 2, + "CurfrMaxfr1": 2, + "CondEnv1": 2, + "Hijack1": 2, + "resume_point_known": 15, + "Redoip0": 3, + "Redoip1": 2, + "ResumeKnown": 21, + "expect": 15, + "unify": 21, + "must_be_equal": 11, + "CurfrMaxfr": 24, + "EndCodeInfoA": 2, + "TempsInUse1": 2, + "EndCodeInfo": 2, + "BranchEnd": 2, + "BranchEndCodeInfo": 2, + "BranchEndLocDep": 2, + "VarLocns": 2, + "VarLvals": 2, + "reinit_var_locn_state": 1, + "Slot": 2, + "Pos0": 2, + "Pos": 2, + "CI0": 2, + "CIStatic0": 2, + "CILocDep0": 2, + "CIPersistent0": 2, + "LocDep0": 2, + "CI1": 2, + "save_hp": 1, + "CI2": 2, + "CIStatic": 2, + "CIPersistent": 2, + "resume_map.": 1, + "resume_point_info.": 1, + "disj_hijack_info.": 1, + "prepare_for_disj_hijack": 2, + "code_model": 3, + "disj_hijack_info": 3, + "undo_disj_hijack": 2, + "ite_hijack_info.": 1, + "prepare_for_ite_hijack": 2, + "embedded_stack_frame_id": 3, + "ite_hijack_info": 3, + "ite_enter_then": 2, + "simple_neg_info.": 1, + "enter_simple_neg": 2, + "simple_neg_info": 3, + "leave_simple_neg": 2, + "det_commit_info.": 1, + "prepare_for_det_commit": 2, + "det_commit_info": 6, + "generate_det_commit": 2, + "semi_commit_info.": 1, + "prepare_for_semi_commit": 2, + "semi_commit_info": 6, + "generate_semi_commit": 2, + "effect_resume_point": 2, + "pop_resume_point": 1, + "top_resume_point": 1, + "set_resume_point_to_unknown": 1, + "set_resume_point_and_frame_to_unknown": 1, + "generate_failure": 2, + "fail_if_rval_is_false": 1, + "failure_is_direct_branch": 1, + "code_addr": 8, + "may_use_nondet_tailcall": 1, + "nondet_tail_call": 1, + "produce_vars": 1, + "resume_map": 9, + "flush_resume_vars_to_stack": 1, + "make_resume_point": 1, + "resume_locs": 1, + "generate_resume_point": 2, + "resume_point_vars": 1, + "resume_point_stack_addr": 2, + "stack": 1, + "curfr_vs_maxfr": 2, + "condition_env": 3, + "hijack_allowed": 2, + "orig_only": 2, + "stack_only": 2, + "orig_and_stack": 1, + "stack_and_orig": 1, + "redoip_update": 2, + "has_been_done": 5, + "wont_be_done.": 1, + "resume_point_unknown.": 1, + "may_be_different.": 1, + "inside_non_condition": 6, + "not_inside_non_condition.": 1, + "not_allowed.": 1, + "disj_no_hijack": 4, + "disj_temp_frame": 4, + "disj_quarter_hijack": 4, + "disj_half_hijack": 3, + "disj_full_hijack": 3, + "HijackInfo": 29, + "CondEnv": 12, + "Allow": 12, + "model_det": 2, + "model_semi": 3, + "singleton": 28, + "llds_instr": 64, + "comment": 5, + "model_non": 2, + "create_temp_frame": 4, + "do_fail": 6, + "stack.pop": 1, + "TopResumePoint": 6, + "RestResumePoints": 2, + "stack.is_empty": 1, + "wont_be_done": 2, + "acquire_temp_slot": 15, + "slot_lval": 14, + "redoip_slot": 30, + "curfr": 18, + "non_persistent_temp_slot": 15, + "RedoipSlot": 33, + "assign": 46, + "maxfr": 42, + "redofr_slot": 14, + "RedofrSlot": 17, + "from_list": 13, + "prevfr_slot": 3, + "pick_stack_resume_point": 3, + "StackLabel": 9, + "LabelConst": 4, + "const": 10, + "llconst_code_addr": 6, + "true": 3, + "ite_region_info": 5, + "ite_info": 3, + "ite_hijack_type": 2, + "ite_no_hijack": 3, + "ite_temp_frame": 3, + "ite_quarter_hijack": 3, + "ite_half_hijack": 3, + "ite_full_hijack": 3, + "CondCodeModel": 4, + "MaybeEmbeddedFrameId": 5, + "HijackType": 12, + "MaybeRegionInfo": 12, + "MaxfrSlot": 30, + "TempFrameCode": 4, + "MaxfrCode": 7, + "EmbeddedFrameId": 2, + "slot_success_record": 1, + "persistent_temp_slot": 1, + "SuccessRecordSlot": 6, + "InitSuccessCode": 3, + "llconst_false": 1, + "ITEResumePoint": 2, + "ThenCode": 10, + "ElseCode": 7, + "ResumePoints0": 5, + "stack.det_pop": 1, + "HijackResumeKnown": 2, + "OldCondEnv": 2, + "RegionInfo": 2, + "EmbeddedStackFrameId": 2, + "ITEStackResumeCodeAddr": 2, + "llconst_true": 1, + "AfterRegionOp": 3, + "if_val": 1, + "unop": 1, + "logical_not": 1, + "code_label": 2, + "use_and_maybe_pop_region_frame": 1, + "region_ite_nondet_cond_fail": 1, + "goto": 2, + "maybe_pick_stack_resume_point": 1, + "ResumeMap0": 2, + "make_fake_resume_map": 5, + "do_redo": 1, + "is_empty": 1, + "Vars": 10, + "Locns": 2, + "set.make_singleton_set": 1, + "reg": 1, + "pair": 7, + "region_commit_stack_frame": 5, + "AddTrailOps": 4, + "AddRegionOps": 5, + "CommitGoalInfo": 4, + "DetCommitInfo": 4, + "SaveMaxfrCode": 3, + "save_maxfr": 3, + "MaybeMaxfrSlot": 6, + "maybe_save_trail_info": 2, + "MaybeTrailSlots": 8, + "SaveTrailCode": 4, + "maybe_save_region_commit_frame": 4, + "MaybeRegionCommitFrameInfo": 8, + "SaveRegionCommitFrameCode": 2, + "SaveRegionCommitFrameCode.": 2, + "RestoreMaxfrCode": 3, + "restore_maxfr": 3, + "release_temp_slot": 1, + "maybe_restore_trail_info": 2, + "CommitTrailCode": 4, + "maybe_restore_region_commit_frame": 2, + "SuccessRegionCode": 3, + "_FailureRegionCode": 1, + "SuccessRegionCode.": 1, + "commit_hijack_info": 2, + "commit_temp_frame": 3, + "commit_quarter_hijack": 3, + "commit_half_hijack": 3, + "commit_full_hijack": 3, + "SemiCommitInfo": 4, + "clone_resume_point": 1, + "NewResumePoint": 4, + "stack.push": 1, + "StackLabelConst": 7, + "use_minimal_model_stack_copy_cut": 3, + "UseMinimalModelStackCopyCut": 4, + "Components": 4, + "foreign_proc_raw_code": 4, + "cannot_branch_away": 4, + "proc_affects_liveness": 2, + "live_lvals_info": 4, + "proc_does_not_affect_liveness": 2, + "MD": 4, + "proc_may_duplicate": 2, + "MarkCode": 3, + "foreign_proc_code": 2, + "proc_will_not_call_mercury": 2, + "HijackCode": 5, + "UseMinimalModel": 3, + "CutCode": 4, + "SuccessUndoCode": 5, + "FailureUndoCode": 5, + "AfterCommit": 2, + "ResumePointCode": 2, + "FailCode": 2, + "RestoreTrailCode": 2, + "FailureRegionCode": 2, + "SuccLabel": 3, + "GotoSuccLabel": 2, + "SuccLabelCode": 1, + "SuccessCode": 2, + "FailureCode": 2, + "SuccLabelCode.": 1, + "_ForwardLiveVarsBeforeGoal": 1, + "expr.": 1, + "char": 10, + "token": 5, + "num": 11, + "eof": 6, + "parse": 1, + "exprn/1": 1, + "xx": 1, + "scan": 16, + "mode": 8, + "rule": 3, + "exprn": 7, + "Num": 18, + "A": 14, + "term": 10, + "B": 8, + "{": 27, + "}": 28, + "*": 20, + "factor": 6, + "/": 1, + "//": 2, + "Chars": 2, + "Toks": 13, + "Toks0": 11, + "list__reverse": 1, + "Cs": 9, + "char__is_whitespace": 1, + "char__is_digit": 2, + "takewhile": 1, + "Digits": 2, + "Rest": 2, + "string__from_char_list": 1, + "NumStr": 2, + "string__det_to_int": 1, + "error": 7, + "hello.": 1, + "main": 15, + "io": 6, + "di": 54, + "uo": 58, + "IO": 4, + "io.write_string": 1, "char.": 1, "getopt_io.": 1, "short_option": 36, @@ -41309,7 +41391,6 @@ "option_table": 5, "maybe_option_table": 3, "inconsequential_options": 1, - "set": 16, "options_help": 1, "option_table_add_mercury_library_directory": 1, "option_table.": 2, @@ -41383,7 +41464,7 @@ "debug_code_gen_pred_id": 3, "debug_opt": 3, "debug_term": 4, - "term": 10, + "constraint": 2, "termination": 3, "analysis": 1, "debug_opt_pred_id": 3, @@ -41441,7 +41522,6 @@ "generate_item_version_numbers": 2, "generate_mmc_make_module_dependencies": 4, "assume_gmake": 3, - "trace_level": 4, "trace_optimized": 4, "trace_prof": 3, "trace_table_io": 3, @@ -41460,7 +41540,6 @@ "force_disable_ssdebug": 3, "generate_bytecode": 3, "line_numbers": 4, - "auto_comments": 4, "frameopt_comments": 3, "max_error_line_width": 3, "show_dependency_graph": 3, @@ -41540,9 +41619,7 @@ "record_term_sizes_as_cells": 2, "experimental_complexity": 2, "gc": 2, - "parallel": 3, "threadscope": 2, - "use_trail": 3, "trail_segments": 2, "use_minimal_model_stack_copy": 2, "use_minimal_model_own_stacks": 2, @@ -41566,16 +41643,12 @@ "bits_per_word": 2, "bytes_per_word": 2, "conf_low_tag_bits": 2, - "unboxed_float": 3, "unboxed_enums": 2, "unboxed_no_tag_types": 2, "sync_term_size": 2, "words": 1, - "gcc_non_local_gotos": 3, "gcc_global_registers": 2, - "asm_labels": 3, "pic_reg": 2, - "use_float_registers": 5, "highlevel_code": 3, "highlevel_data": 2, "gcc_nested_functions": 2, @@ -41593,7 +41666,6 @@ "agc_stack_layout": 2, "procid_stack_layout": 2, "trace_stack_layout": 2, - "body_typeinfo_liveness": 4, "can_compare_constants_as_ints": 2, "pretest_equality_cast_pointers": 2, "can_compare_compound_values": 2, @@ -41610,8 +41682,6 @@ "disable_minimal_model_stack_copy_pneg": 2, "disable_minimal_model_stack_copy_cut": 2, "use_minimal_model_stack_copy_pneg": 2, - "use_minimal_model_stack_copy_cut": 3, - "disable_trail_ops": 3, "size_region_ite_fixed": 2, "size_region_disj_fixed": 2, "size_region_semi_disj_fixed": 1, @@ -41648,11 +41718,11 @@ "fact_table_hash_percent_full": 2, "gcc_local_labels": 2, "prefer_switch": 2, - "opt_no_return_calls": 3, "opt_level": 3, "opt_level_number": 2, "opt_space": 2, "Default": 3, + "to": 16, "optimize": 3, "time.": 1, "intermodule_optimization": 2, @@ -41693,7 +41763,6 @@ "user_guided_type_specialization": 2, "introduce_accumulators": 2, "optimize_constructor_last_call_accumulator": 2, - "optimize_constructor_last_call_null": 3, "optimize_constructor_last_call": 2, "optimize_duplicate_calls": 2, "constant_propagation": 2, @@ -41724,8 +41793,6 @@ "deforestation_vars_threshold": 2, "deforestation_size_threshold": 2, "analyse_trail_usage": 2, - "optimize_trail_usage": 3, - "optimize_region_ops": 3, "analyse_mm_tabling": 2, "untuple": 2, "tuple": 2, @@ -41735,7 +41802,6 @@ "inline_par_builtins": 2, "always_specialize_in_dep_par_conjs": 2, "allow_some_paths_only_waits": 2, - "region_analysis": 3, "structure_sharing_analysis": 2, "structure_sharing_widening": 2, "structure_reuse_analysis": 2, @@ -41772,13 +41838,9 @@ "binary_switch_size": 2, "switch_single_rec_base_first": 2, "switch_multi_rec_base_first": 2, - "static_ground_cells": 3, - "static_ground_floats": 3, - "static_code_addresses": 3, "use_atomic_cells": 2, "middle_rec": 2, "simple_neg": 2, - "allow_hijacks": 3, "optimize_tailcalls": 2, "optimize_initializations": 2, "eliminate_local_vars": 2, @@ -41786,6 +41848,7 @@ "common_data": 2, "common_layout_data": 2, "Also": 1, + "used": 2, "for": 8, "MLDS": 2, "optimizations.": 1, @@ -41808,7 +41871,6 @@ "layout_compression_limit": 2, "use_macro_for_redo_fail": 2, "emit_c_loops": 2, - "procs_per_c_function": 3, "everything_in_one_c_function": 2, "local_thread_engine_base": 2, "erlang_switch_on_strings_as_atoms": 2, @@ -42015,6 +42077,7 @@ "option_defaults_2": 18, "_Category": 1, "OptionsList": 2, + "list.member": 2, "multi.": 1, "bool_special": 7, "XXX": 3, @@ -42029,844 +42092,900 @@ "file_special": 1, "miscellaneous_option": 1, "par_loop_control_preserve_tail_recursion": 1, - "hello.": 1, - "io.write_string": 1, - "expr.": 1, - "token": 5, - "num": 11, - "parse": 1, - "exprn/1": 1, - "xx": 1, - "scan": 16, - "rule": 3, - "exprn": 7, - "Num": 18, - "B": 8, - "factor": 6, - "/": 1, - "Chars": 2, - "Toks": 13, - "Toks0": 11, - "list__reverse": 1, - "C": 34, - "Cs": 9, - "char__is_whitespace": 1, - "char__is_digit": 2, - "takewhile": 1, - "Digits": 2, - "Rest": 2, - "string__from_char_list": 1, - "NumStr": 2, - "string__det_to_int": 1, + "check_hlds.polymorphism.": 1, + "hlds.": 1, + "mdbcomp.": 1, + "parse_tree.": 1, + "polymorphism_process_module": 2, + "polymorphism_process_generated_pred": 2, + "unification_typeinfos_rtti_varmaps": 2, + "rtti_varmaps": 9, + "unification": 8, + "polymorphism_process_new_call": 2, + "builtin_state": 1, + "call_unify_context": 2, + "sym_name": 3, + "hlds_goal": 45, + "poly_info": 45, + "polymorphism_make_type_info_vars": 1, + "polymorphism_make_type_info_var": 1, + "int_or_var": 2, + "iov_int": 1, + "iov_var": 1, + "gen_extract_type_info": 1, + "tvar": 10, + "kind": 1, + "vartypes": 12, + "poly_info.": 1, + "create_poly_info": 1, + "poly_info_extract": 1, + "build_typeclass_info_type": 3, + "prog_constraint": 4, + "type_is_typeclass_info": 1, + "type_is_type_info_or_ctor_type": 1, + "build_type_info_type": 1, + "get_special_proc": 1, + "special_pred_id": 2, + "get_special_proc_det": 1, + "convert_pred_to_lambda_goal": 3, + "purity": 1, + "lambda_eval_method": 1, + "unify_context": 3, + "context": 1, + "unify_rhs": 4, + "fix_undetermined_mode_lambda_goal": 2, + "rhs_lambda_goal": 7, + "init_type_info_var": 1, + "init_const_type_ctor_info_var": 1, + "type_ctor": 1, + "cons_id": 2, + "type_info_kind": 2, + "type_info": 8, + "type_ctor_info.": 1, + "new_type_info_var_raw": 1, + "check_hlds.clause_to_proc.": 1, + "check_hlds.mode_util.": 1, + "hlds.from_ground_term_util.": 1, + "hlds.const_struct.": 1, + "hlds.goal_util.": 1, + "hlds.hlds_args.": 1, + "hlds.hlds_clauses.": 1, + "hlds.hlds_code_util.": 1, + "hlds.passes_aux.": 1, + "hlds.pred_table.": 1, + "hlds.quantification.": 1, + "hlds.special_pred.": 1, + "libs.": 1, + "mdbcomp.program_representation.": 1, + "parse_tree.prog_mode.": 1, + "parse_tree.prog_type_subst.": 1, + "solutions.": 1, + "module_info_get_preds": 3, + ".ModuleInfo": 8, + "Preds0": 2, + "PredIds0": 2, + "list.foldl": 6, + "maybe_polymorphism_process_pred": 3, + "Preds1": 2, + "PredIds1": 2, + "fixup_pred_polymorphism": 4, + "expand_class_method_bodies": 1, + "PredModule": 8, + "pred_info_module": 4, + "PredName": 8, + "pred_info_name": 4, + "PredArity": 6, + "pred_info_orig_arity": 3, + "no_type_info_builtin": 3, + "copy_module_clauses_to_procs": 1, + "polymorphism_process_pred_msg": 3, + "PredTable0": 3, + "map.lookup": 2, + "PredInfo0": 16, + "pred_info_get_clauses_info": 2, + "ClausesInfo0": 5, + "clauses_info_get_vartypes": 2, + "VarTypes0": 12, + "clauses_info_get_headvars": 2, + "pred_info_get_arg_types": 7, + "TypeVarSet": 15, + "ExistQVars": 13, + "ArgTypes0": 3, + "proc_arg_vector_partition_poly_args": 1, + "ExtraHeadVarList": 2, + "OldHeadVarList": 2, + "lookup_var_types": 6, + "ExtraArgTypes": 2, + "ArgTypes": 6, + "pred_info_set_arg_types": 1, + "PredInfo1": 5, + "OldHeadVarTypes": 2, + "type_list_subsumes": 2, + "Subn": 3, + "map.is_empty": 1, + "pred_info_set_existq_tvar_binding": 1, + "PredInfo2": 7, + "polymorphism_introduce_exists_casts_pred": 3, + "PredTable": 2, + "module_info_set_preds": 1, + "pred_info_get_procedures": 2, + ".PredInfo": 2, + "Procs0": 4, + "map.map_values_only": 1, + ".ProcInfo": 2, + "det": 21, + "introduce_exists_casts_proc": 1, + "Procs": 4, + "pred_info_set_procedures": 2, + "trace": 4, + "compiletime": 4, + "flag": 4, + "write_pred_progress_message": 1, + "polymorphism_process_pred": 4, + "mutable": 3, + "selected_pred": 1, + "ground": 9, + "untrailed": 2, + "level": 1, + "promise_pure": 30, + "pred_id_to_int": 1, + "impure": 2, + "set_selected_pred": 2, + "polymorphism_process_clause_info": 3, + "ClausesInfo": 13, + "Info": 134, + "ExtraArgModes": 20, + "poly_info_get_module_info": 4, + "poly_info_get_const_struct_db": 1, + "ConstStructDb": 2, + "module_info_set_const_struct_db": 1, + "poly_info_get_typevarset": 4, + "pred_info_set_typevarset": 1, + "pred_info_set_clauses_info": 1, + "ProcIds": 5, + "pred_info_procids": 2, + "polymorphism_process_proc_in_table": 3, + "module_info_set_pred_info": 1, + "clauses_info": 6, + "poly_arg_vector": 9, + "mer_mode": 14, + "ModuleInfo0": 8, + "init_poly_info": 1, + ".ClausesInfo": 2, + "_VarSet": 1, + "ExplicitVarTypes": 2, + "_TVarNameMap": 1, + "_VarTypes": 1, + "HeadVars0": 5, + "ClausesRep0": 2, + "ItemNumbers": 2, + "_RttiVarMaps": 1, + "HaveForeignClauses": 2, + "setup_headvars": 3, + "UnconstrainedTVars": 15, + "ExtraTypeInfoHeadVars": 4, + "ExistTypeClassInfoHeadVars": 6, + "get_clause_list": 1, + "Clauses0": 2, + "list.map_foldl": 2, + "polymorphism_process_clause": 3, + "Clauses": 2, + "poly_info_get_varset": 4, + ".Info": 25, + "poly_info_get_var_types": 6, + "poly_info_get_rtti_varmaps": 4, + "RttiVarMaps": 16, + "set_clause_list": 1, + "ClausesRep": 2, + "TVarNameMap": 2, + "This": 2, + "only": 4, + "while": 1, + "adding": 1, + "the": 27, + "clauses.": 1, + "proc_arg_vector": 9, + "clause": 2, + "OldHeadVars": 2, + "NewHeadVars": 2, + "Clause": 2, + "pred_info_is_imported": 2, + "Goal0": 21, + ".Clause": 1, + "clause_body": 2, + "empty_cache_maps": 4, + "poly_info_set_num_reuses": 1, + "polymorphism_process_goal": 20, + "Goal1": 2, + "produce_existq_tvars": 3, + "Goal2": 2, + "pred_info_get_exist_quant_tvars": 1, + "fixup_quantification": 1, + "Goal": 40, + "proc_table": 2, + "ProcTable": 2, + ".ProcTable": 1, + "ProcInfo0": 2, + "polymorphism_process_proc": 3, + "pred_info_is_pseudo_imported": 1, + "hlds_pred.in_in_unification_proc_id": 1, + "HeadVarList": 4, + "proc_arg_vector_to_list": 2, + "clauses_info_get_rtti_varmaps": 1, + "clauses_info_get_varset": 1, + "proc_info_set_headvars": 1, + "proc_info_set_rtti_varmaps": 1, + "proc_info_set_varset": 1, + "proc_info_set_vartypes": 1, + "copy_clauses_to_proc": 1, + "proc_info_get_argmodes": 2, + "ArgModes1": 2, + "ExtraArgModesList": 2, + "poly_arg_vector_to_list": 1, + "ArgModes": 5, + "proc_info_set_argmodes": 1, + "ExtraHeadTypeInfoVars": 7, + "ExistHeadTypeClassInfoVars": 9, + "pred_info_get_origin": 1, + "Origin": 8, + "ExtraArgModes0": 3, + "poly_arg_vector_init": 1, + "origin_instance_method": 1, + "InstanceMethodConstraints": 4, + "setup_headvars_instance_method": 3, + "origin_special_pred": 1, + "origin_transformed": 1, + "origin_created": 1, + "origin_assertion": 1, + "origin_lambda": 1, + "origin_user": 1, + "pred_info_get_class_context": 4, + "ClassContext": 6, + "InstanceTVars": 7, + "InstanceUnconstrainedTVars": 2, + "InstanceUnconstrainedTypeInfoVars": 2, + "setup_headvars_2": 4, + "instance_method_constraints": 2, + "InstanceTypes": 2, + "InstanceConstraints": 3, + "type_vars_list": 5, + "get_unconstrained_tvars": 1, + "UnconstrainedInstanceTVars": 6, + "ArgTypeVarSet": 5, + "make_head_vars": 3, + "UnconstrainedInstanceTypeInfoVars": 7, + "make_typeclass_info_head_vars": 3, + "do_record_type_info_locns": 3, + "InstanceHeadTypeClassInfoVars": 4, + "proc_arg_vector_set_instance_type_infos": 1, + "proc_arg_vector_set_instance_typeclass_infos": 1, + "RttiVarMaps0": 4, + "rtti_reuse_typeclass_info_var": 3, + "poly_info_set_rtti_varmaps": 3, + "in_mode": 3, + "InMode": 3, + "list.duplicate": 6, + "list.length": 16, + "UnconstrainedInstanceTypeInfoModes": 2, + "InstanceHeadTypeClassInfoModes": 2, + "poly_arg_vector_set_instance_type_infos": 1, + "poly_arg_vector_set_instance_typeclass_infos": 1, + "prog_constraints": 1, + "AllUnconstrainedTVars": 2, + "AllExtraHeadTypeInfoVars": 2, + "constraints": 4, + "UnivConstraints": 3, + "ExistConstraints": 6, + "prog_type.constraint_list_get_tvars": 2, + "UnivConstrainedTVars": 2, + "ExistConstrainedTVars": 2, + "poly_info_get_constraint_map": 4, + "ConstraintMap": 12, + "get_improved_exists_head_constraints": 4, + "ActualExistConstraints": 9, + "pred_info_get_markers": 1, + "PredMarkers": 2, + "check_marker": 1, + "marker_class_method": 1, + "RecordExistQLocns": 3, + "do_not_record_type_info_locns": 1, + "UnivHeadTypeClassInfoVars": 4, + "HeadTypeVars": 2, + "list.delete_elems": 12, + "UnconstrainedTVars0": 2, + "UnconstrainedTVars1": 2, + "UnconstrainedTVars2": 2, + "list.remove_dups": 4, + "UnconstrainedUnivTVars": 7, + "UnconstrainedExistTVars": 6, + "ExistHeadTypeInfoVars": 5, + "UnivHeadTypeInfoVars": 4, + "list.condense": 4, + "proc_arg_vector_set_univ_type_infos": 1, + "HeadVars1": 2, + "proc_arg_vector_set_exist_type_infos": 1, + "HeadVars2": 2, + "proc_arg_vector_set_univ_typeclass_infos": 1, + "HeadVars3": 2, + "proc_arg_vector_set_exist_typeclass_infos": 1, + "In": 6, + "out_mode": 2, + "Out": 6, + "NumUnconstrainedUnivTVars": 2, + "NumUnconstrainedExistTVars": 2, + "NumUnivClassInfoVars": 2, + "NumExistClassInfoVars": 2, + "UnivTypeInfoModes": 2, + "ExistTypeInfoModes": 2, + "UnivTypeClassInfoModes": 2, + "ExistTypeClassInfoModes": 2, + "poly_arg_vector_set_univ_type_infos": 1, + "poly_arg_vector_set_exist_type_infos": 1, + "poly_arg_vector_set_univ_typeclass_infos": 1, + "poly_arg_vector_set_exist_typeclass_infos": 1, + "some": 4, + "ToLocn": 4, + "TheVar": 2, + "TheLocn": 2, + "list.map": 17, + "UnivTypeLocns": 2, + "list.foldl_corresponding": 3, + "rtti_det_insert_type_info_locn": 3, + "ExistTypeLocns": 2, + "UnconstrainedInstanceTypeLocns": 2, + ".RttiVarMaps": 1, + "TypeInfoHeadVars": 2, + "pred_info_get_tvar_kinds": 2, + "KindMap": 2, + "PredClassContext": 5, + "PredExistConstraints": 2, + "exist_constraints": 1, + "ExistQVarsForCall": 2, + "goal_info_get_context": 4, + "make_typeclass_info_vars": 3, + "ExistTypeClassVarsMCAs": 2, + "ExtraTypeClassGoals": 5, + "assoc_list.keys": 8, + "ExistTypeClassVars": 3, + "assign_var_list": 8, + "ExtraTypeClassUnifyGoals": 2, + "vartypes_is_empty": 1, + "PredToActualTypeSubst": 4, + "ActualArgTypes": 8, + "ArgTypeSubst": 2, + "apply_subst_to_tvar_list": 1, + "ActualTypes": 2, + "polymorphism_do_make_type_info_vars": 5, + "TypeInfoVarsMCAs": 2, + "ExtraTypeInfoGoals": 4, + "TypeInfoVars": 5, + "ExtraTypeInfoUnifyGoals": 2, + "GoalList": 8, + "conj_list_to_goal": 6, + "Var1": 5, + "Vars1": 2, + "Var2": 5, + "Vars2": 2, + "Goals": 13, + "assign_var": 3, + "true_goal": 1, + "term.context_init": 2, + "create_pure_atomic_complicated_unification": 1, + "rhs_var": 2, + "umc_explicit": 1, + "constraint_map": 1, + "NumExistConstraints": 4, + "search_hlds_constraint_list": 1, + "unproven": 3, + "goal_id": 1, + "ActualExistConstraints0": 2, + "GoalExpr0": 18, + "GoalInfo0": 41, + "generic_call": 1, + "plain_call": 5, + "ArgVars0": 23, + "polymorphism_process_call": 4, + "ExtraVars": 13, + "ExtraGoals": 13, + "ArgVars": 6, + "CallExpr": 4, + "call_args": 1, + "Call": 4, + "call_foreign_proc": 4, + "polymorphism_process_foreign_proc": 3, + "XVar": 11, + "Y": 9, + "Mode": 12, + "Unification": 16, + "UnifyContext": 15, + "polymorphism_process_unify": 4, + "conj": 5, + "ConjType": 4, + "Goals0": 13, + "plain_conj": 4, + "polymorphism_process_plain_conj": 5, + "parallel_conj": 1, + "get_cache_maps_snapshot": 11, + "InitialSnapshot": 36, + "polymorphism_process_par_conj": 5, + "GoalExpr": 19, + "disj": 2, + "polymorphism_process_disj": 6, + "set_cache_maps_snapshot": 15, + "if_then_else": 2, + "Cond0": 2, + "Then0": 2, + "Else0": 2, + "Cond": 2, + "Then": 2, + "Else": 2, + "negation": 2, + "SubGoal0": 14, + "SubGoal": 16, + "switch": 2, + "CanFail": 4, + "Cases0": 4, + "polymorphism_process_cases": 5, + "Cases": 4, + "scope": 7, + "Reason0": 16, + "from_ground_term": 2, + "TermVar": 4, + "Kind": 5, + "from_ground_term_initial": 2, + "polymorphism_process_from_ground_term_initial": 3, + "from_ground_term_construct": 1, + "from_ground_term_deconstruct": 1, + "from_ground_term_other": 1, + "promise_solutions": 1, + "promise_purity": 1, + "require_detism": 1, + "require_complete_switch": 1, + "commit": 1, + "barrier": 1, + "loop_control": 1, + "exist_quant": 1, + "trace_goal": 1, + "shorthand": 2, + "ShortHand0": 4, + "atomic_goal": 2, + "GoalType": 2, + "Outer": 2, + "Inner": 2, + "MainGoal0": 2, + "OrElseGoals0": 2, + "OrElseInners": 2, + "MainGoal": 2, + "OrElseGoals": 2, + "ShortHand": 3, + "try_goal": 2, + "MaybeIO": 2, + "ResultVar": 2, + "SubGoalExpr0": 4, + "SubGoalInfo": 2, + "Conjuncts0": 2, + "ConjunctA0": 2, + "ConjunctB0": 2, + "ConjunctA": 2, + "ConjunctB": 2, + "Conjuncts": 2, + "SubGoalExpr": 2, + "bi_implication": 1, + "hlds_goal_expr": 2, + "SubGoalInfo0": 2, + "SubGoals0Prime": 2, + "SubGoals0": 2, + "polymorphism_process_fgti_goals": 5, + "RevMarkedSubGoals": 2, + "fgt_invariants_kept": 2, + "InvariantsStatus": 7, + "Reason": 2, + "fgt_invariants_broken": 2, + "introduce_partial_fgt_scopes": 1, + "deconstruct_top_down": 1, + "fgt_marked_goal": 2, + "fgt_invariants_status": 2, + "RevMarkedGoals": 4, + "OldInfo": 3, + "XVarPrime": 2, + "ModePrime": 2, + "UnificationPrime": 2, + "UnifyContextPrime": 2, + "rhs_functor": 5, + "ConsIdPrime": 2, + "YVarsPrime": 2, + "ConsId": 10, + "YVars": 4, + "polymorphism_process_unify_functor": 4, + "Changed": 10, + "VarSetBefore": 2, + "MaxVarBefore": 2, + "varset.max_var": 2, + "poly_info_get_num_reuses": 2, + "NumReusesBefore": 2, + "VarSetAfter": 2, + "MaxVarAfter": 2, + "NumReusesAfter": 2, + "MarkedGoal": 3, + "fgt_kept_goal": 1, + "fgt_broken_goal": 1, + ".RevMarkedGoals": 1, + "unify_mode": 2, + "Unification0": 8, + "_YVar": 1, + "unification_typeinfos": 5, + "_Changed": 3, + "Args": 11, + "Purity": 9, + "Groundness": 6, + "PredOrFunc": 6, + "EvalMethod": 8, + "LambdaVars": 13, + "Modes": 4, + "Det": 4, + "LambdaGoal0": 5, + "LambdaGoal1": 2, + "fixup_lambda_quantification": 1, + "LambdaGoal": 6, + "NonLocalTypeInfos": 3, + "set_of_var.to_sorted_list": 1, + "NonLocalTypeInfosList": 2, + "Y1": 2, + "NonLocals0": 10, + "goal_info_get_nonlocals": 6, + "NonLocals": 12, + "goal_info_set_nonlocals": 6, + "type_vars": 2, + "TypeVars": 8, + "get_type_info_locn": 1, + "TypeInfoLocns": 6, + "add_unification_typeinfos": 4, + "rtti_lookup_type_info_locn": 1, + "type_info_locn": 1, + "type_info_locn_var": 1, + "TypeInfoVars0": 2, + ".GoalInfo": 1, + "set_of_var.insert_list": 4, + ".Unification": 5, + "complicated_unify": 2, + "construct": 1, + "deconstruct": 2, + "simple_test": 1, + "X0": 8, + "ConsId0": 5, + "Mode0": 4, + "TypeOfX": 6, + "Arity": 5, + "closure_cons": 1, + "ShroudedPredProcId": 2, + "ProcId0": 3, + "unshroud_pred_proc_id": 1, + "type_is_higher_order_details": 1, + "_PredOrFunc": 1, + "CalleeArgTypes": 2, + "invalid_proc_id": 1, + "goal_info_add_feature": 1, + "feature_lambda_undetermined_mode": 1, + "GoalInfo1": 6, + "VarSet0": 2, + "Functor0": 6, + "poly_info_set_varset_and_types": 1, + "cons": 3, + "ConsTypeCtor": 2, + "remove_new_prefix": 1, + "OrigFunctor": 2, + "IsConstruction": 7, + "type_util.get_existq_cons_defn": 1, + "ConsDefn": 2, + "polymorphism_process_existq_unify_functor": 3, + "UnifyExpr": 2, + "Unify": 2, + "PredArgTypes": 10, + "Functor": 6, + "create_fresh_vars": 5, + "QualifiedPName": 5, + "qualified": 1, + "cons_id_dummy_type_ctor": 1, + "RHS": 2, + "CallUnifyContext": 2, + "LambdaGoalExpr": 2, + "not_builtin": 3, + "OutsideVars": 2, + "InsideVars": 2, + "set_of_var.intersect": 1, + "LambdaNonLocals": 2, + "GoalId": 8, + "goal_info_get_goal_id": 3, + "goal_info_init": 1, + "LambdaGoalInfo0": 2, + "goal_info_set_context": 1, + "LambdaGoalInfo1": 2, + "LambdaGoalInfo2": 2, + "goal_info_set_purity": 1, + "LambdaGoalInfo3": 2, + "goal_info_set_goal_id": 1, + "LambdaGoalInfo": 4, + "lambda_modes_and_det": 4, + "LambdaModes": 6, + "LambdaDet": 6, + "pred_info_is_pred_or_func": 1, + "ho_ground": 1, + "_LambdaModes0": 1, + "_LambdaDet0": 1, + "goal_to_conj_list": 1, + "LambdaGoalList0": 2, + "list.split_last": 1, + "LambdaGoalButLast0": 2, + "LastGoal0": 2, + "LastGoalExpr0": 2, + "LastGoalInfo0": 2, + "PredId0": 2, + "_DummyProcId": 1, + "Args0": 5, + "MaybeCallUnifyContext0": 2, + "QualifiedPName0": 2, + "LambdaGoalButLast": 2, + "LastGoalInfo": 2, + "MaybeCallUnifyContext": 4, + "LastGoalExpr": 2, + "LastGoal": 2, + "prog_vars": 1, + "determinism": 1, + "NumArgModes": 2, + "NumLambdaVars": 2, + "list.drop": 2, + "LambdaModesPrime": 2, + "proc_info_get_declared_determinism": 1, + "MaybeDet": 3, + "sorry": 1, + "varset.new_var": 1, + "add_var_type": 1, + "ctor_defn": 2, + "CtorDefn": 2, + "ActualRetType": 2, + "CtorTypeVarSet": 2, + "CtorExistQVars": 2, + "CtorKindMap": 2, + "CtorExistentialConstraints": 2, + "CtorArgTypes": 2, + "CtorRetType": 2, + "TypeVarSet0": 5, + "tvarset_merge_renaming": 3, + "CtorToParentRenaming": 6, + "apply_variable_renaming_to_tvar_list": 2, + "ParentExistQVars": 6, + "apply_variable_renaming_to_tvar_kind_map": 2, + "ParentKindMap": 7, + "apply_variable_renaming_to_prog_constraint_list": 1, + "ParentExistentialConstraints": 3, + "apply_variable_renaming_to_type_list": 4, + "ParentArgTypes": 6, + "apply_variable_renaming_to_type": 1, + "ParentRetType": 2, + "poly_info_set_typevarset": 3, + "type_list_subsumes_det": 3, + "ParentToActualTypeSubst": 6, + "NumExistentialConstraints": 3, + "lookup_hlds_constraint_list": 4, + "ActualExistentialConstraints": 4, + "ExtraTypeClassVarsMCAs": 2, + "ExtraTypeClassVars": 2, + "assumed": 2, + "make_existq_typeclass_info_vars": 2, + "constraint_list_get_tvars": 3, + "ParentExistConstrainedTVars": 4, + "ParentUnconstrainedExistQVars": 2, + "apply_rec_subst_to_tvar_list": 4, + "ActualExistentialTypes": 2, + "ExtraTypeInfoVarsMCAs": 2, + "ExtraTypeInfoVars": 2, + "ExtraTypeClassVars.": 1, + "bound": 1, + "Attributes": 2, + "ProcExtraArgs": 2, + "MaybeTraceRuntimeCond": 2, + "Impl": 14, + "foreign_arg_var": 1, + "CanOptAwayUnnamed": 11, + "polymorphism_process_foreign_proc_args": 3, + "ExtraArgs": 5, + "pragma_foreign_code_impl": 4, + "foreign_arg": 1, + "PredTypeVarSet": 8, + "UnivCs": 4, + "ExistCs": 4, + "UnivVars0": 2, + "get_constrained_vars": 2, + "UnivConstrainedVars": 2, + "ExistVars0": 2, + "ExistConstrainedVars": 2, + "PredTypeVars0": 2, + "PredTypeVars1": 2, + "PredTypeVars2": 2, + "PredTypeVars": 3, + "foreign_proc_add_typeclass_info": 4, + "ExistTypeClassArgInfos": 2, + "UnivTypeClassArgInfos": 2, + "TypeClassArgInfos": 2, + "list.filter": 1, + "X": 9, + "semidet": 2, + "ExistUnconstrainedVars": 2, + "UnivUnconstrainedVars": 2, + "foreign_proc_add_typeinfo": 4, + "ExistTypeArgInfos": 2, + "UnivTypeArgInfos": 2, + "TypeInfoArgInfos": 2, + "ArgInfos": 2, + "TypeInfoTypes": 2, + "type_info_type": 1, + "UnivTypes": 2, + "ExistTypes": 2, + "OrigArgTypes": 2, + "make_foreign_args": 1, + "tvarset": 3, + "box_policy": 2, + "Constraint": 2, + "MaybeArgName": 7, + "native_if_possible": 2, + "SymName": 4, + "sym_name_to_string_sep": 1, + "TypeVarNames": 2, + "underscore_and_tvar_name": 3, + "string.append_list": 1, + "ConstraintVarName": 3, + "foreign_code_does_not_use_variable": 4, + "TVar": 4, + "varset.search_name": 1, + "TypeVarName": 2, + "C_VarName": 3, + "VarName": 2, + "foreign_code_uses_variable": 1, + "TVarName": 2, + "TVarName0": 1, + "TVarName0.": 1, + "cache_maps": 3, + "case": 4, + "Case0": 2, + "Case": 2, + "MainConsId": 2, + "OtherConsIds": 2, + "PredExistQVars": 2, + "PredKindMap": 3, + "varset.is_empty": 1, + "PredToParentTypeRenaming": 6, + "ParentTVars": 4, + "apply_variable_renaming_to_prog_constraints": 1, + "ParentClassContext": 2, + "ParentUnivConstraints": 3, + "ParentExistConstraints": 3, + "ParentUnivConstrainedTVars": 2, + "ParentUnconstrainedTVars0": 2, + "ParentUnconstrainedTVars1": 2, + "ParentUnconstrainedTVars": 3, + "ParentUnconstrainedUnivTVars": 3, + "ParentUnconstrainedExistTVars": 2, + "NumUnivConstraints": 2, + "ActualUnivConstraints": 2, + "ActualExistQVarTypes": 2, + "prog_type.type_list_to_var_list": 1, + "ActualExistQVars0": 2, + "ActualExistQVars": 2, + "ExtraUnivClassVarsMCAs": 2, + "ExtraUnivClassGoals": 2, + "ExtraUnivClassVars": 2, + "ExtraExistClassVars": 2, + "ExtraExistClassGoals": 2, + "ActualUnconstrainedUnivTypes": 2, + "ExtraUnivTypeInfoVarsMCAs": 2, + "ExtraUnivTypeInfoGoals": 2, + "ExtraUnivTypeInfoVars": 2, + "ActualUnconstrainedExistTypes": 2, + "ExtraExistTypeInfoVarsMCAs": 2, + "ExtraExistTypeInfoGoals": 2, + "ExtraExistTypeInfoVars": 2, + "CalleePredInfo": 2, + "CalleeProcInfo": 3, + "CallArgs0": 3, + "BuiltinState": 2, + "TVarSet0": 2, + "ActualArgTypes0": 3, + "PredTVarSet": 2, + "_PredExistQVars": 1, + "CalleeHeadVars": 2, + "proc_info_get_rtti_varmaps": 1, + "CalleeRttiVarMaps": 2, + "NCallArgs0": 2, + "NPredArgs": 2, + "NExtraArgs": 3, + "OrigPredArgTypes0": 2, + "list.take": 1, + "CalleeExtraHeadVars0": 2, + "OrigPredArgTypes": 2, + "CalleeExtraHeadVars": 2, + "TVarSet": 2, + "PredToParentRenaming": 3, + "OrigParentArgTypes": 2, + "ParentToActualTSubst": 2, + "GetTypeInfoTypes": 2, + "ProgVar": 2, + "TypeInfoType": 2, + "rtti_varmaps_var_info": 1, + "VarInfo": 4, + "type_info_var": 1, + "typeclass_info_var": 1, + "non_rtti_var": 1, + "PredTypeInfoTypes": 2, + "ParentTypeInfoTypes": 2, + "apply_rec_subst_to_type_list": 1, + "ActualTypeInfoTypes": 2, + "Ctxt": 2, + "ExtraArgsConstArgs": 2, + "CallArgs": 2, + "NonLocals1": 2, + "CallGoalExpr": 2, + "CallGoal": 2, + "rot13_concise.": 1, + "state": 3, + "alphabet": 3, + "cycle": 4, + "rot_n": 2, + "Char": 12, + "RotChar": 8, + "char_to_string": 1, + "CharString": 2, + "if": 15, + "sub_string_search": 1, + "Index": 3, + "then": 3, + "NewIndex": 2, + "mod": 1, + "index_det": 1, + "else": 8, + "rot13": 11, + "read_char": 1, + "Res": 8, + "ok": 3, + "print": 3, + "ErrorCode": 4, + "error_message": 1, + "ErrorMessage": 4, + "stderr_stream": 1, + "StdErr": 8, + "nl": 1, "rot13_ralph.": 1, + "io__state": 4, "io__read_byte": 1, "Result": 4, "io__write_byte": 1, "ErrNo": 2, + "io__error_message": 2, "z": 1, "Rot13": 2, "<": 14, "rem": 1, - "ll_backend.code_info.": 1, - "hlds.code_model.": 1, - "hlds.hlds_llds.": 1, - "ll_backend.continuation_info.": 1, - "ll_backend.global_data.": 1, - "ll_backend.layout.": 1, - "ll_backend.llds.": 1, - "ll_backend.trace_gen.": 1, - "counter.": 1, - "set_tree234.": 1, - "backend_libs.builtin_ops.": 1, - "backend_libs.proc_label.": 1, - "hlds.arg_info.": 1, - "hlds.hlds_desc.": 1, - "libs.trace_params.": 1, - "ll_backend.code_util.": 1, - "ll_backend.opt_debug.": 1, - "ll_backend.var_locn.": 1, - "parse_tree.mercury_to_mercury.": 1, - "cord.": 1, - "stack.": 1, - "code_info.": 1, - "code_info_init": 2, - "globals": 5, - "abs_follow_vars": 3, - "static_cell_info": 4, - "const_struct_map": 3, - "resume_point_info": 11, - "trace_slot_info": 3, - "containing_goal_map": 4, - "code_info": 208, - "get_globals": 5, - "get_exprn_opts": 2, - "exprn_opts": 3, - "get_module_info": 7, - "get_pred_id": 6, - "get_proc_id": 5, - "get_pred_info": 2, - "get_proc_info": 4, - "get_varset": 3, - "get_var_types": 3, - "vartypes.": 1, - "get_maybe_trace_info": 2, - "trace_info": 3, - "get_emit_trail_ops": 2, - "add_trail_ops": 5, - "get_emit_region_ops": 2, - "add_region_ops": 6, - "get_forward_live_vars": 2, - "set_of_progvar": 10, - "set_forward_live_vars": 2, - "get_instmap": 4, - "instmap": 3, - "set_instmap": 3, - "get_par_conj_depth": 2, - "set_par_conj_depth": 2, - "get_label_counter": 3, - "counter": 6, - "get_succip_used": 2, - "get_layout_info": 4, - "proc_label_layout_info": 3, - "get_proc_trace_events": 2, - "set_proc_trace_events": 2, - "get_closure_layouts": 3, - "closure_proc_id_data": 4, - "get_max_reg_in_use_at_trace": 2, - "set_max_reg_in_use_at_trace": 2, - "get_created_temp_frame": 2, - "get_static_cell_info": 5, - "set_static_cell_info": 5, - "get_alloc_sites": 3, - "set_tree234": 3, - "alloc_site_info": 4, - "set_alloc_sites": 3, - "get_used_env_vars": 2, - "set_used_env_vars": 2, - "get_opt_trail_ops": 2, - "get_opt_region_ops": 2, - "get_auto_comments": 2, - "get_lcmc_null": 2, - "get_containing_goal_map": 3, - "get_containing_goal_map_det": 2, - "get_const_struct_map": 2, - "add_out_of_line_code": 2, - "llds_code": 21, - "get_out_of_line_code": 2, - "get_var_slot_count": 2, - "set_maybe_trace_info": 3, - "get_opt_no_return_calls": 2, - "get_zombies": 2, - "set_zombies": 2, - "get_var_locn_info": 7, - "var_locn_info": 3, - "set_var_locn_info": 4, - "get_temps_in_use": 6, - "lval": 114, - "set_temps_in_use": 4, - "get_fail_info": 13, - "fail_info": 24, - "set_fail_info": 9, - "set_label_counter": 3, - "set_succip_used": 3, - "set_layout_info": 4, - "get_max_temp_slot_count": 2, - "set_max_temp_slot_count": 2, - "get_temp_content_map": 3, - "slot_contents": 4, - "set_temp_content_map": 2, - "get_persistent_temps": 3, - "set_persistent_temps": 2, - "set_closure_layouts": 3, - "get_closure_seq_counter": 3, - "set_closure_seq_counter": 3, - "set_created_temp_frame": 2, - "code_info_static": 26, - "code_info_loc_dep": 22, - "code_info_persistent": 44, - "cis_globals": 2, - "cis_exprn_opts": 2, - "cis_module_info": 2, - "cis_pred_id": 2, - "cis_proc_id": 2, - "cis_pred_info": 2, - "cis_proc_info": 2, - "cis_proc_label": 1, - "proc_label": 2, - "cis_varset": 2, - "cis_var_slot_count": 2, - "cis_maybe_trace_info": 3, - "cis_opt_no_resume_calls": 2, - "cis_emit_trail_ops": 2, - "cis_opt_trail_ops": 2, - "cis_emit_region_ops": 2, - "cis_opt_region_ops": 2, - "cis_auto_comments": 2, - "cis_lcmc_null": 2, - "cis_containing_goal_map": 2, - "cis_const_struct_map": 2, - "cild_forward_live_vars": 3, - "cild_instmap": 3, - "cild_zombies": 3, - "cild_var_locn_info": 3, - "cild_temps_in_use": 3, - "cild_fail_info": 3, - "cild_par_conj_depth": 3, - "cip_label_num_src": 3, - "cip_store_succip": 3, - "cip_label_info": 3, - "cip_proc_trace_events": 3, - "cip_stackslot_max": 3, - "cip_temp_contents": 3, - "cip_persistent_temps": 3, - "cip_closure_layout_seq": 3, - "cip_closure_layouts": 3, - "cip_max_reg_r_used": 3, - "cip_max_reg_f_used": 2, - "cip_created_temp_frame": 3, - "cip_static_cell_info": 3, - "cip_alloc_sites": 3, - "cip_used_env_vars": 3, - "cip_ts_string_table_size": 3, - "cip_ts_rev_string_table": 4, - "cip_out_of_line_code": 4, - "SaveSuccip": 2, - "Globals": 32, - "FollowVars": 6, - "StaticCellInfo": 8, - "ConstStructMap": 2, - "ResumePoint": 13, - "TraceSlotInfo": 5, - "MaybeContainingGoalMap": 5, - "TSRevStringTable": 2, - "TSStringTableSize": 2, - "CodeInfo": 2, - "ProcLabel": 8, - "make_proc_label": 1, - "proc_info_get_initial_instmap": 1, - "InstMap": 6, - "proc_info_get_liveness_info": 1, - "Liveness": 4, - "CodeModel": 8, - "proc_info_interface_code_model": 2, - "build_input_arg_list": 1, - "ArgList": 2, - "proc_info_get_varset": 1, - "proc_info_get_vartypes": 2, - "proc_info_get_stack_slots": 1, - "StackSlots": 5, - "ExprnOpts": 4, - "init_exprn_opts": 3, - "globals.lookup_bool_option": 18, - "UseFloatRegs": 6, - "FloatRegType": 3, - "reg_f": 1, - "reg_r": 2, - "globals.get_trace_level": 1, - "TraceLevel": 5, - "eff_trace_level_is_none": 2, - "trace_fail_vars": 1, - "FailVars": 3, - "MaybeFailVars": 3, - "EffLiveness": 3, - "init_var_locn_state": 1, - "VarLocnInfo": 12, - "stack.init": 1, - "ResumePoints": 14, - "AllowHijack": 3, - "Hijack": 6, - "allowed": 6, - "not_allowed": 5, - "DummyFailInfo": 2, - "resume_point_unknown": 9, - "may_be_different": 7, - "not_inside_non_condition": 2, - "TempContentMap": 4, - "set.init": 7, - "PersistentTemps": 4, - "TempsInUse": 8, - "Zombies": 2, - "set_of_var.init": 1, - "LayoutMap": 2, - "max_var_slot": 1, - "VarSlotMax": 2, - "trace_reserved_slots": 1, - "FixedSlots": 2, - "int.max": 1, - "SlotMax": 2, - "OptNoReturnCalls": 2, - "UseTrail": 2, - "DisableTrailOps": 2, - "EmitTrailOps": 3, - "do_not_add_trail_ops": 1, - "OptTrailOps": 2, - "OptRegionOps": 2, - "UseRegions": 3, - "EmitRegionOps": 3, - "do_not_add_region_ops": 1, - "AutoComments": 2, - "LCMCNull": 2, - "CodeInfo0": 2, - "init_fail_info": 2, - "will": 1, - "override": 1, - "this": 4, - "dummy": 2, - "value": 16, - "nested": 1, - "conjunction": 1, - "depth": 1, - "counter.init": 2, - "set_tree234.init": 1, - "cord.empty": 1, - "init_maybe_trace_info": 3, - "CodeInfo1": 2, - "exprn_opts.": 1, - "OptNLG": 3, - "NLG": 3, - "have_non_local_gotos": 1, - "do_not_have_non_local_gotos": 1, - "OptASM": 3, - "ASM": 3, - "have_asm_labels": 1, - "do_not_have_asm_labels": 1, - "OptSGCell": 3, - "SGCell": 3, - "have_static_ground_cells": 1, - "do_not_have_static_ground_cells": 1, - "OptUBF": 3, - "UBF": 3, - "have_unboxed_floats": 1, - "do_not_have_unboxed_floats": 1, - "OptFloatRegs": 3, - "do_not_use_float_registers": 1, - "OptSGFloat": 3, - "SGFloat": 3, - "have_static_ground_floats": 1, - "do_not_have_static_ground_floats": 1, - "OptStaticCodeAddr": 3, - "StaticCodeAddrs": 3, - "have_static_code_addresses": 1, - "do_not_have_static_code_addresses": 1, - "CI": 294, - "proc_info_get_has_tail_call_events": 1, - "HasTailCallEvents": 3, - "tail_call_events": 1, - "get_next_label": 5, - "TailRecLabel": 2, - "MaybeTailRecLabel": 3, - "no_tail_call_events": 1, - "trace_setup": 1, - "TraceInfo": 2, - "MaxRegR": 4, - "MaxRegF": 4, - "cip_max_reg_f_used.": 1, - "TI": 4, - "LV": 2, - "IM": 2, - "Zs": 2, - "EI": 2, - "FI": 2, - "LC": 2, - "SU": 2, - "LI": 2, - "PTE": 2, - "TM": 2, - "CM": 2, - "PT": 2, - "CLS": 2, - "CG": 2, - "MR": 4, - "MF": 1, - "MF.": 1, - "SCI": 2, - "ASI": 2, - "UEV": 2, - "ContainingGoalMap": 2, - "NewCode": 2, - "Code0": 2, - ".CI": 29, - "Code": 36, - "Code.": 1, - "get_stack_slots": 2, - "stack_slots": 1, - "get_follow_var_map": 2, - "abs_follow_vars_map": 1, - "get_next_non_reserved": 2, - "reg_type": 1, - "set_follow_vars": 4, - "pre_goal_update": 3, - "has_subgoals": 2, - "post_goal_update": 3, - "variable_type": 3, - "mer_type.": 1, - "variable_is_of_dummy_type": 2, - "is_dummy_type.": 1, - "search_type_defn": 4, - "hlds_type_defn": 1, - "lookup_type_defn": 2, - "hlds_type_defn.": 1, - "lookup_cheaper_tag_test": 2, - "maybe_cheaper_tag_test.": 1, - "filter_region_vars": 2, - "set_of_progvar.": 2, - "get_proc_model": 2, - "code_model.": 1, - "get_headvars": 2, - "get_arginfo": 2, - "arg_info": 2, - "get_pred_proc_arginfo": 3, - "current_resume_point_vars": 2, - "variable_name": 2, - "make_proc_entry_label": 2, - "code_addr.": 1, - "label": 5, - "succip_is_used": 2, - "add_trace_layout_for_label": 2, - "trace_port": 1, - "forward_goal_path": 1, - "user_event_info": 1, - "layout_label_info": 2, - "get_cur_proc_label": 4, - "get_next_closure_seq_no": 2, - "add_closure_layout": 2, - "add_threadscope_string": 2, - "get_threadscope_rev_string_table": 2, - "add_scalar_static_cell": 2, - "typed_rval": 1, - "data_id": 3, - "add_scalar_static_cell_natural_types": 2, - "rval": 3, - "add_vector_static_cell": 2, - "llds_type": 1, - "add_alloc_site_info": 2, - "prog_context": 1, - "alloc_site_id": 2, - "add_resume_layout_for_label": 2, - "var_locn_get_stack_slots": 1, - "FollowVarMap": 2, - "var_locn_get_follow_var_map": 1, - "RegType": 2, - "NextNonReserved": 2, - "var_locn_get_next_non_reserved": 1, - "VarLocnInfo0": 4, - "var_locn_set_follow_vars": 1, - "HasSubGoals": 3, - "goal_info_get_resume_point": 1, - "no_resume_point": 1, - "resume_point": 1, - "goal_info_get_follow_vars": 1, - "MaybeFollowVars": 3, - "goal_info_get_pre_deaths": 1, - "PreDeaths": 3, - "rem_forward_live_vars": 3, - "maybe_make_vars_forward_dead": 2, - "goal_info_get_pre_births": 1, - "PreBirths": 2, - "add_forward_live_vars": 2, - "does_not_have_subgoals": 2, - "goal_info_get_post_deaths": 2, - "PostDeaths": 5, - "goal_info_get_post_births": 1, - "PostBirths": 3, - "make_vars_forward_live": 1, - "InstMapDelta": 2, - "goal_info_get_instmap_delta": 1, - "InstMap0": 2, - "instmap.apply_instmap_delta": 1, - "TypeInfoLiveness": 2, - "body_should_use_typeinfo_liveness": 1, - "IsDummy": 2, - "VarType": 2, - "check_dummy_type": 1, - "TypeDefn": 6, - "type_to_ctor_det": 1, - "TypeCtor": 2, - "module_info_get_type_table": 1, - "TypeTable": 2, - "search_type_ctor_defn": 1, - "TypeDefnPrime": 2, - "CheaperTagTest": 3, - "get_type_defn_body": 1, - "TypeBody": 2, - "hlds_du_type": 1, - "CheaperTagTestPrime": 2, - "no_cheaper_tag_test": 1, - "ForwardLiveVarsBeforeGoal": 6, - "RegionVars": 2, - "code_info.get_var_types": 1, - "set_of_var.filter": 1, - "is_region_var": 1, - "ArgInfo": 4, - "proc_info_arg_info": 1, - "ResumeVars": 4, - "FailInfo": 19, - "ResumePointStack": 2, - "stack.det_top": 5, - "ResumePointInfo": 2, - "pick_first_resume_point": 1, - "ResumeMap": 8, - "ResumeMapVarList": 2, - "Varset": 2, - "Immed0": 3, - "CodeAddr": 2, - "Immed": 3, - "globals.lookup_int_option": 1, - "ProcsPerFunc": 2, - "CurPredId": 2, - "CurProcId": 2, - "make_entry_label": 1, - "Label": 8, - "C0": 4, - "counter.allocate": 2, - "internal_label": 3, - "Port": 2, - "IsHidden": 2, - "GoalPath": 2, - "MaybeSolverEventInfo": 2, - "Layout": 2, - "Internals0": 8, - "Exec": 5, - "trace_port_layout_info": 1, - "LabelNum": 8, - "entry_label": 2, - "map.search": 2, - "Internal0": 4, - "internal_layout_info": 6, - "Exec0": 3, - "Resume": 5, - "Return": 6, - "Internal": 8, - "Internals": 6, - "map.det_insert": 3, - "LayoutInfo": 2, - "Resume0": 3, - "get_active_temps_data": 2, - "assoc_list": 1, - "Temps": 2, - "map.select": 1, - "TempsInUseContentMap": 2, - "map.to_assoc_list": 3, - "cis_proc_label.": 1, - "SeqNo": 2, - "ClosureLayout": 2, - "ClosureLayouts": 2, - "String": 2, - "SlotNum": 2, - "Size0": 3, - "RevTable0": 2, - "Size": 4, - "RevTable": 3, - "RevTable.": 1, - "TableSize": 2, - "cip_ts_string_table_size.": 1, - "RvalsTypes": 2, - "DataAddr": 6, - "StaticCellInfo0": 6, - "global_data.add_scalar_static_cell": 1, - "Rvals": 2, - "global_data.add_scalar_static_cell_natural_types": 1, - "Vector": 2, - "global_data.add_vector_static_cell": 1, - "AllocId": 2, - "AllocSite": 3, - "AllocSites0": 2, - "set_tree234.insert": 1, - "AllocSites": 2, - "position_info.": 1, - "branch_end_info.": 1, - "branch_end": 4, - "branch_end_info": 7, - "remember_position": 3, - "position_info": 14, - "reset_to_position": 4, - "reset_resume_known": 2, - "generate_branch_end": 2, - "abs_store_map": 3, - "after_all_branches": 2, - "save_hp_in_branch": 2, - "pos_get_fail_info": 3, - "fail_info.": 2, - "LocDep": 6, - "cild_fail_info.": 1, - "CurCI": 2, - "NextCI": 2, - "Static": 2, - "Persistent": 2, - "NextCI0": 4, - "TempsInUse0": 4, - "set.union": 2, - "BranchStart": 2, - "BranchStartFailInfo": 2, - "BSResumeKnown": 2, - "CurFailInfo": 2, - "CurFailStack": 2, - "CurCurfMaxfr": 2, - "CurCondEnv": 2, - "CurHijack": 2, - "NewFailInfo": 2, - "StoreMap": 8, - "MaybeEnd0": 3, - "MaybeEnd": 6, - "AbsVarLocs": 3, - "assoc_list.values": 1, - "AbsLocs": 2, - "code_util.max_mentioned_abs_regs": 1, - "instmap_is_reachable": 1, - "VarLocs": 2, - "assoc_list.map_values_only": 2, - "abs_locn_to_lval": 2, - "place_vars": 1, - "remake_with_store_map": 4, - "empty": 9, - "EndCodeInfo1": 5, - "EndCodeInfo0": 3, - "FailInfo0": 13, - "FailInfo1": 2, - "ResumeKnown0": 5, - "CurfrMaxfr0": 2, - "CondEnv0": 3, - "Hijack0": 2, - "R": 2, - "ResumeKnown1": 2, - "CurfrMaxfr1": 2, - "CondEnv1": 2, - "Hijack1": 2, - "resume_point_known": 15, - "Redoip0": 3, - "Redoip1": 2, - "ResumeKnown": 21, - "must_be_equal": 11, - "CurfrMaxfr": 24, - "EndCodeInfoA": 2, - "TempsInUse1": 2, - "EndCodeInfo": 2, - "BranchEnd": 2, - "BranchEndCodeInfo": 2, - "BranchEndLocDep": 2, - "VarLocns": 2, - "VarLvals": 2, - "reinit_var_locn_state": 1, - "Slot": 2, - "Pos0": 2, - "Pos": 2, - "CI0": 2, - "CIStatic0": 2, - "CILocDep0": 2, - "CIPersistent0": 2, - "LocDep0": 2, - "CI1": 2, - "save_hp": 1, - "CI2": 2, - "CIStatic": 2, - "CIPersistent": 2, - "resume_map.": 1, - "resume_point_info.": 1, - "disj_hijack_info.": 1, - "prepare_for_disj_hijack": 2, - "code_model": 3, - "disj_hijack_info": 3, - "undo_disj_hijack": 2, - "ite_hijack_info.": 1, - "prepare_for_ite_hijack": 2, - "embedded_stack_frame_id": 3, - "ite_hijack_info": 3, - "ite_enter_then": 2, - "simple_neg_info.": 1, - "enter_simple_neg": 2, - "simple_neg_info": 3, - "leave_simple_neg": 2, - "det_commit_info.": 1, - "prepare_for_det_commit": 2, - "det_commit_info": 6, - "generate_det_commit": 2, - "semi_commit_info.": 1, - "prepare_for_semi_commit": 2, - "semi_commit_info": 6, - "generate_semi_commit": 2, - "effect_resume_point": 2, - "pop_resume_point": 1, - "top_resume_point": 1, - "set_resume_point_to_unknown": 1, - "set_resume_point_and_frame_to_unknown": 1, - "generate_failure": 2, - "fail_if_rval_is_false": 1, - "failure_is_direct_branch": 1, - "code_addr": 8, - "may_use_nondet_tailcall": 1, - "nondet_tail_call": 1, - "produce_vars": 1, - "resume_map": 9, - "flush_resume_vars_to_stack": 1, - "make_resume_point": 1, - "resume_locs": 1, - "generate_resume_point": 2, - "resume_point_vars": 1, - "resume_point_stack_addr": 2, - "stack": 1, - "curfr_vs_maxfr": 2, - "condition_env": 3, - "hijack_allowed": 2, - "orig_only": 2, - "stack_only": 2, - "orig_and_stack": 1, - "stack_and_orig": 1, - "redoip_update": 2, - "has_been_done": 5, - "wont_be_done.": 1, - "resume_point_unknown.": 1, - "may_be_different.": 1, - "inside_non_condition": 6, - "not_inside_non_condition.": 1, - "not_allowed.": 1, - "disj_no_hijack": 4, - "disj_temp_frame": 4, - "disj_quarter_hijack": 4, - "disj_half_hijack": 3, - "disj_full_hijack": 3, - "HijackInfo": 29, - "CondEnv": 12, - "Allow": 12, - "model_det": 2, - "model_semi": 3, - "singleton": 28, - "llds_instr": 64, - "comment": 5, - "model_non": 2, - "create_temp_frame": 4, - "do_fail": 6, - "stack.pop": 1, - "TopResumePoint": 6, - "RestResumePoints": 2, - "stack.is_empty": 1, - "wont_be_done": 2, - "acquire_temp_slot": 15, - "slot_lval": 14, - "redoip_slot": 30, - "curfr": 18, - "non_persistent_temp_slot": 15, - "RedoipSlot": 33, - "maxfr": 42, - "redofr_slot": 14, - "RedofrSlot": 17, - "from_list": 13, - "prevfr_slot": 3, - "pick_stack_resume_point": 3, - "StackLabel": 9, - "LabelConst": 4, - "const": 10, - "llconst_code_addr": 6, - "ite_region_info": 5, - "ite_info": 3, - "ite_hijack_type": 2, - "ite_no_hijack": 3, - "ite_temp_frame": 3, - "ite_quarter_hijack": 3, - "ite_half_hijack": 3, - "ite_full_hijack": 3, - "CondCodeModel": 4, - "MaybeEmbeddedFrameId": 5, - "HijackType": 12, - "MaybeRegionInfo": 12, - "MaxfrSlot": 30, - "TempFrameCode": 4, - "MaxfrCode": 7, - "EmbeddedFrameId": 2, - "slot_success_record": 1, - "persistent_temp_slot": 1, - "SuccessRecordSlot": 6, - "InitSuccessCode": 3, - "llconst_false": 1, - "ITEResumePoint": 2, - "ThenCode": 10, - "ElseCode": 7, - "ResumePoints0": 5, - "stack.det_pop": 1, - "HijackResumeKnown": 2, - "OldCondEnv": 2, - "RegionInfo": 2, - "EmbeddedStackFrameId": 2, - "ITEStackResumeCodeAddr": 2, - "llconst_true": 1, - "AfterRegionOp": 3, - "if_val": 1, - "unop": 1, - "logical_not": 1, - "code_label": 2, - "use_and_maybe_pop_region_frame": 1, - "region_ite_nondet_cond_fail": 1, - "goto": 2, - "maybe_pick_stack_resume_point": 1, - "ResumeMap0": 2, - "make_fake_resume_map": 5, - "do_redo": 1, - "is_empty": 1, - "Locns": 2, - "set.make_singleton_set": 1, - "reg": 1, - "region_commit_stack_frame": 5, - "AddTrailOps": 4, - "AddRegionOps": 5, - "CommitGoalInfo": 4, - "DetCommitInfo": 4, - "SaveMaxfrCode": 3, - "save_maxfr": 3, - "MaybeMaxfrSlot": 6, - "maybe_save_trail_info": 2, - "MaybeTrailSlots": 8, - "SaveTrailCode": 4, - "maybe_save_region_commit_frame": 4, - "MaybeRegionCommitFrameInfo": 8, - "SaveRegionCommitFrameCode": 2, - "SaveRegionCommitFrameCode.": 2, - "RestoreMaxfrCode": 3, - "restore_maxfr": 3, - "release_temp_slot": 1, - "maybe_restore_trail_info": 2, - "CommitTrailCode": 4, - "maybe_restore_region_commit_frame": 2, - "SuccessRegionCode": 3, - "_FailureRegionCode": 1, - "SuccessRegionCode.": 1, - "commit_hijack_info": 2, - "commit_temp_frame": 3, - "commit_quarter_hijack": 3, - "commit_half_hijack": 3, - "commit_full_hijack": 3, - "SemiCommitInfo": 4, - "clone_resume_point": 1, - "NewResumePoint": 4, - "stack.push": 1, - "StackLabelConst": 7, - "UseMinimalModelStackCopyCut": 4, - "Components": 4, - "foreign_proc_raw_code": 4, - "cannot_branch_away": 4, - "proc_affects_liveness": 2, - "live_lvals_info": 4, - "proc_does_not_affect_liveness": 2, - "MD": 4, - "proc_may_duplicate": 2, - "MarkCode": 3, - "foreign_proc_code": 2, - "proc_will_not_call_mercury": 2, - "HijackCode": 5, - "UseMinimalModel": 3, - "CutCode": 4, - "SuccessUndoCode": 5, - "FailureUndoCode": 5, - "AfterCommit": 2, - "ResumePointCode": 2, - "FailCode": 2, - "RestoreTrailCode": 2, - "FailureRegionCode": 2, - "SuccLabel": 3, - "GotoSuccLabel": 2, - "SuccLabelCode": 1, - "SuccessCode": 2, - "FailureCode": 2, - "SuccLabelCode.": 1, - "_ForwardLiveVarsBeforeGoal": 1, + "rot13_verbose.": 1, + "rot13a/2": 1, + "table": 1, + "alphabetic": 2, + "characters": 1, + "their": 1, + "equivalents": 1, + "fails": 1, + "input": 1, + "not": 7, + "rot13a": 55, + "rot13/2": 1, + "Applies": 1, + "algorithm": 1, + "a": 10, + "character.": 1, + "TmpChar": 2, + "io__read_char": 1, + "io__write_char": 1, + "io__stderr_stream": 1, + "io__write_string": 2, + "io__nl": 1, "store.": 1, "typeclass": 1, "store": 52, @@ -43287,12 +43406,23 @@ "c": 1 }, "Moocode": { + "@program": 29, + "toy": 3, + "wind": 1, + "this.wound": 8, + "+": 39, ";": 505, - "while": 15, - "(": 600, - "read": 1, "player": 2, + "tell": 1, + "(": 600, + "this.name": 4, ")": 593, + "player.location": 1, + "announce": 1, + "player.name": 1, + ".": 30, + "while": 15, + "read": 1, "endwhile": 14, "I": 1, "M": 1, @@ -43423,10 +43553,8 @@ "#36824": 1, "#37646": 1, "#37647": 1, - ".": 30, "parent": 1, "plastic.tokenizer_proto": 4, - "@program": 29, "_": 4, "_ensure_prototype": 4, "application/x": 27, @@ -43502,7 +43630,6 @@ "respond_to": 9, "@code": 28, "@this": 13, - "+": 39, "i": 29, "length": 11, "LIST": 6, @@ -43769,14 +43896,6 @@ "result.type": 1, "result.first": 1, "result.second": 1, - "toy": 3, - "wind": 1, - "this.wound": 8, - "tell": 1, - "this.name": 4, - "player.location": 1, - "announce": 1, - "player.name": 1, "@verb": 1, "do_the_work": 3, "none": 1, @@ -44522,60 +44641,289 @@ }, "Nit": { "#": 196, - "module": 18, - "circular_list": 1, + "import": 18, + "gtk": 1, "class": 20, - "CircularList": 6, + "CalculatorContext": 7, + "var": 157, + "result": 16, + "nullable": 11, + "Float": 3, + "null": 39, + "last_op": 4, + "Char": 7, + "current": 26, + "after_point": 12, + "Int": 47, + "fun": 57, + "push_op": 2, + "(": 448, + "op": 11, + ")": 448, + "do": 83, + "apply_last_op_if_any": 2, + "if": 89, + "then": 81, + "self.result": 2, + "else": 63, + "store": 1, + "for": 27, + "next": 9, + "end": 117, + "prepare": 1, + "push_digit": 1, + "digit": 1, + "*": 14, + "+": 39, + "digit.to_f": 2, + "pow": 1, + "after_point.to_f": 1, + "self.after_point": 1, + "-": 70, + "self.current": 3, + "switch_to_decimals": 1, + "return": 54, + "/": 4, + "CalculatorGui": 2, + "super": 10, + "GtkCallable": 1, + "win": 2, + "GtkWindow": 2, + "container": 3, + "GtkGrid": 2, + "lbl_disp": 3, + "GtkLabel": 2, + "but_eq": 3, + "GtkButton": 2, + "but_dot": 3, + "context": 9, + "new": 164, + "redef": 30, + "signal": 1, + "sender": 3, + "user_data": 5, + "context.after_point": 1, + "after_point.abs": 1, + "isa": 12, + "is": 25, + "an": 4, + "operation": 1, + "c": 17, + "but_dot.sensitive": 2, + "false": 8, + "context.switch_to_decimals": 4, + "lbl_disp.text": 3, + "true": 6, + "context.push_op": 15, + "s": 68, + "context.result.to_precision_native": 1, + "index": 7, + "i": 20, + "in": 39, + "s.length.times": 1, + "chiffre": 3, + "s.chars": 2, "[": 106, - "E": 15, "]": 80, + "and": 10, + "s.substring": 2, + "s.length": 2, + "a": 40, + "number": 7, + "n": 16, + "context.push_digit": 25, + "context.current.to_precision_native": 1, + "init": 6, + "init_gtk": 1, + "win.add": 1, + "container.attach": 7, + "digits": 1, + "but": 6, + "GtkButton.with_label": 5, + "n.to_s": 1, + "but.request_size": 2, + "but.signal_connect": 2, + "self": 41, + "%": 3, + "/3": 1, + "operators": 2, + "r": 21, + "op.to_s": 1, + "but_eq.request_size": 1, + "but_eq.signal_connect": 1, + ".": 6, + "but_dot.request_size": 1, + "but_dot.signal_connect": 1, + "#C": 1, + "but_c": 2, + "but_c.request_size": 1, + "but_c.signal_connect": 1, + "win.show_all": 1, + "context.result.to_precision": 6, + "assert": 24, + "print": 135, + "#test": 2, + "multiple": 1, + "decimals": 1, + "button": 1, + ".environ": 3, + "app": 1, + "run_gtk": 1, + "module": 18, + "callback_chimpanze": 1, + "callback_monkey": 2, + "Chimpanze": 2, + "MonkeyActionCallable": 7, + "create": 1, + "monkey": 4, + "Monkey": 4, + "Invoking": 1, + "method": 17, + "which": 4, + "will": 8, + "take": 1, + "some": 1, + "time": 1, + "to": 18, + "compute": 1, + "be": 9, + "back": 1, + "wokeUp": 4, + "with": 2, + "information.": 1, + "Callback": 1, + "defined": 4, + "Interface": 1, + "monkey.wokeUpAction": 1, + "Inherit": 1, + "callback": 11, + "by": 5, + "interface": 3, + "Back": 2, + "of": 31, + "wokeUpAction": 2, + "message": 9, + "Object": 7, + "m": 5, + "m.create": 1, + "{": 14, + "#include": 2, + "": 1, + "": 1, + "typedef": 2, + "struct": 2, + "int": 4, + "id": 2, + ";": 34, + "age": 2, + "}": 14, + "CMonkey": 6, + "toCall": 6, + "MonkeyAction": 5, + "//": 13, + "Method": 1, + "reproduce": 3, + "answer": 1, + "Please": 1, + "note": 1, + "that": 2, + "function": 2, + "pointer": 2, + "only": 6, + "used": 1, + "the": 57, + "void": 3, + "cbMonkey": 2, + "*mkey": 2, + "callbackFunc": 2, + "CMonkey*": 1, + "MonkeyAction*": 1, + "*data": 3, + "sleep": 5, + "mkey": 2, + "data": 6, + "background": 1, + "treatment": 1, + "redirected": 1, + "nit_monkey_callback_func": 2, + "To": 1, + "call": 3, + "your": 1, + "signature": 1, + "must": 1, + "written": 2, + "like": 1, + "this": 2, + "": 1, + "Name": 1, + "_": 1, + "": 1, + "...": 1, + "MonkeyActionCallable_wokeUp": 1, + "abstract": 2, + "extern": 2, + "*monkey": 1, + "malloc": 2, + "sizeof": 2, + "get": 1, + "Must": 1, + "as": 1, + "Nit/C": 1, + "because": 4, + "C": 4, + "inside": 1, + "MonkeyActionCallable.wokeUp": 1, + "Allocating": 1, + "memory": 1, + "keep": 2, + "reference": 2, + "received": 1, + "parameters": 1, + "receiver": 1, + "Message": 1, + "Incrementing": 1, + "counter": 1, + "prevent": 1, + "from": 8, + "releasing": 1, + "MonkeyActionCallable_incr_ref": 1, + "Object_incr_ref": 1, + "Calling": 1, + "passing": 1, + "Receiver": 1, + "Function": 1, + "object": 2, + "Datas": 1, + "recv": 12, + "&": 1, + "circular_list": 1, + "CircularList": 6, + "E": 15, "Like": 1, "standard": 1, "Array": 12, "or": 9, "LinkedList": 1, - "is": 25, - "a": 40, "Sequence.": 1, - "super": 10, "Sequence": 1, "The": 11, "first": 7, "node": 10, - "of": 31, - "the": 57, "list": 10, - "if": 89, "any": 1, "special": 1, "case": 1, - "an": 4, "empty": 1, "handled": 1, - "by": 5, - "null": 39, "private": 5, - "var": 157, - "nullable": 11, "CLNode": 6, - "redef": 30, - "fun": 57, "iterator": 1, - "do": 83, - "return": 54, - "new": 164, "CircularListIterator": 2, - "(": 448, - "self": 41, - ")": 448, "self.node.item": 2, "push": 3, "e": 4, "new_node": 4, - "n": 16, "self.node": 13, - "then": 81, - "else": 63, "not": 12, "one": 3, "so": 4, @@ -44587,11 +44935,8 @@ "new_node.next": 1, "new_node.prev": 1, "old_last_node.next": 1, - "end": 117, "pop": 2, - "assert": 24, "prev": 3, - "only": 6, "n.item": 1, "detach": 1, "prev_prev": 2, @@ -44620,42 +44965,31 @@ "algorithm.": 1, "josephus": 1, "step": 2, - "Int": 47, "res": 1, "while": 4, "self.is_empty": 1, "count": 2, - "for": 27, - "i": 20, - "in": 39, "self.rotate": 1, "kill": 1, "x": 16, "self.shift": 1, "res.add": 1, "res.node": 1, - "current": 26, "item": 5, - "next": 9, "circular": 3, "list.": 4, "Because": 2, "circularity": 1, "there": 2, "always": 1, - ";": 34, "default": 2, "let": 1, "it": 1, - "be": 9, "previous": 4, "Coherence": 1, "between": 1, - "and": 10, - "to": 18, "maintained": 1, "IndexedIterator": 1, - "index": 7, "pointed.": 1, "Is": 1, "empty.": 4, @@ -44669,12 +45003,9 @@ "again": 1, "self.index": 3, "self.list.node": 1, - "+": 39, - "init": 6, "list.node": 1, "self.list": 1, "i.add_all": 1, - "print": 135, "i.first": 1, "i.join": 3, "i.push": 1, @@ -44682,15 +45013,360 @@ "i.pop": 1, "i.unshift": 1, "i.josephus": 1, + "clock": 4, + "Clock": 10, + "total": 1, + "minutes": 12, + "total_minutes": 2, + "Note": 7, + "read": 1, + "acces": 1, + "public": 1, + "write": 1, + "access": 1, + "private.": 1, + "hour": 3, + "self.total_minutes": 8, + "set": 2, + "hour.": 1, + "<": 11, + "changed": 1, + "accordinlgy": 1, + "self.hours": 1, + "hours": 9, + "updated": 1, + "h": 7, + "arrow": 2, + "interval": 1, + "hour_pos": 2, + "replace": 1, + "updated.": 1, + "to_s": 3, + "reset": 1, + "hours*60": 1, + "self.reset": 1, + "o": 5, + "type": 2, + "test": 1, + "required": 1, + "Thanks": 1, + "adaptive": 1, + "typing": 1, + "no": 1, + "downcast": 1, + "i.e.": 1, + "code": 3, + "safe": 4, + "o.total_minutes": 2, + "c.minutes": 1, + "c.hours": 1, + "c2": 2, + "c2.minutes": 1, + "clock_more": 1, + "now": 1, + "comparable": 1, + "Comparable": 1, + "Comparaison": 1, + "make": 1, + "sense": 1, + "other": 2, + "OTHER": 1, + "Comparable.": 1, + "All": 1, + "methods": 2, + "rely": 1, + "on": 1, + "c1": 1, + "c3": 1, + "c1.minutes": 1, + "curl_http": 1, + "curl": 11, + "MyHttpFetcher": 2, + "CurlCallbacks": 1, + "Curl": 4, + "our_body": 1, + "String": 14, + "self.curl": 1, + "Release": 1, + "destroy": 1, + "self.curl.destroy": 1, + "Header": 1, + "header_callback": 1, + "line": 3, + "We": 1, + "silent": 1, + "testing": 1, + "purposes": 2, + "#if": 1, + "line.has_prefix": 1, + "Body": 1, + "body_callback": 1, + "self.our_body": 1, + "Stream": 1, + "Cf": 1, + "No": 1, + "registered": 1, + "stream_callback": 1, + "buffer": 1, + "size": 8, + "args.length": 3, + "url": 2, + "args": 9, + "request": 1, + "CurlHTTPRequest": 1, + "HTTP": 3, + "Get": 2, + "Request": 3, + "request.verbose": 3, + "getResponse": 3, + "request.execute": 2, + "CurlResponseSuccess": 2, + "CurlResponseFailed": 5, + "Post": 1, + "myHttpFetcher": 2, + "request.delegate": 1, + "postDatas": 5, + "HeaderMap": 3, + "request.datas": 1, + "postResponse": 3, + "file": 1, + "headers": 3, + "request.headers": 1, + "downloadResponse": 3, + "request.download_to_file": 1, + "CurlFileResponseSuccess": 1, + "Program": 1, + "logic": 1, + "curl_mail": 1, + "mail_request": 1, + "CurlMailRequest": 1, + "response": 5, + "mail_request.set_outgoing_server": 1, + "mail_request.from": 1, + "mail_request.to": 1, + "mail_request.cc": 1, + "mail_request.bcc": 1, + "headers_body": 4, + "mail_request.headers_body": 1, + "mail_request.body": 1, + "mail_request.subject": 1, + "mail_request.verbose": 1, + "mail_request.execute": 1, + "CurlMailResponseSuccess": 1, + "draw_operation": 1, + "enum": 3, + "n_chars": 1, + "abs": 2, + "log10f": 1, + "float": 1, + "as_operator": 1, + "b": 10, + "abort": 2, + "override_dispc": 1, + "Bool": 2, + "lines": 7, + "Line": 53, + "P": 51, + "s/2": 23, + "y": 9, + "lines.add": 1, + "q4": 4, + "s/4": 1, + "l": 4, + "lines.append": 1, + "tl": 2, + "tr": 2, + "hack": 3, + "support": 1, + "bug": 1, + "evaluation": 1, + "software": 1, + "draw": 1, + "dispc": 2, + "gap": 1, + "w": 3, + "length": 2, + "*gap": 1, + "map": 8, + ".filled_with": 1, + "ci": 2, + "self.chars": 1, + "local_dispc": 4, + "c.override_dispc": 1, + "c.lines": 1, + "line.o.x": 1, + "ci*size": 1, + "ci*gap": 1, + "line.o.y": 1, + "line.len": 1, + "map.length": 3, + ".length": 1, + "line.step_x": 1, + "line.step_y": 1, + "printn": 10, + "step_x": 1, + "step_y": 1, + "len": 1, + "op_char": 3, + "disp_char": 6, + "disp_size": 6, + "disp_gap": 6, + "gets.to_i": 4, + "gets.chars": 2, + "op_char.as_operator": 1, + "len_a": 2, + "a.n_chars": 1, + "len_b": 2, + "b.n_chars": 1, + "len_res": 3, + "result.n_chars": 1, + "max_len": 5, + "len_a.max": 1, + "len_b.max": 1, + "d": 6, + "line_a": 3, + "a.to_s": 1, + "line_a.draw": 1, + "line_b": 3, + "op_char.to_s": 1, + "b.to_s": 1, + "line_b.draw": 1, + "disp_size*max_len": 1, + "*disp_gap": 1, + "line_res": 3, + "result.to_s": 1, + "line_res.draw": 1, + "drop_privileges": 1, + "privileges": 1, + "opts": 1, + "OptionContext": 1, + "opt_ug": 2, + "OptionUserAndGroup.for_dropping_privileges": 1, + "opt_ug.mandatory": 1, + "opts.add_option": 1, + "opts.parse": 1, + "opts.errors.is_empty": 1, + "opts.errors": 1, + "opts.usage": 1, + "exit": 3, + "user_group": 2, + "opt_ug.value": 1, + "user_group.drop_privileges": 1, + "extern_methods": 1, + "Returns": 1, + "th": 2, + "fibonnaci": 1, + "implemented": 1, + "here": 1, + "optimization": 1, + "fib": 5, + "Int_fib": 3, + "System": 1, + "seconds": 1, + "Return": 4, + "atan2l": 1, + "libmath": 1, + "atan_with": 2, + "atan2": 1, + "This": 1, + "Nit": 2, + "It": 1, + "use": 1, + "local": 1, + "operator": 1, + "all": 3, + "objects": 1, + "String.to_cstring": 2, + "equivalent": 1, + "char*": 1, + "foo": 3, + "long": 2, + "recv_fib": 2, + "recv_plus_fib": 2, + "Int__plus": 1, + "nit_string": 2, + "Int_to_s": 1, + "char": 1, + "*c_string": 1, + "String_to_cstring": 1, + "printf": 1, + "c_string": 1, + "Equivalent": 1, + "pure": 1, + "bar": 2, + "fibonacci": 3, + "Calculate": 1, + "element": 1, + "sequence.": 1, + ".fibonacci": 2, + "usage": 3, + "args.first.to_i.fibonacci": 1, + "html": 1, + "NitHomepage": 2, + "HTMLPage": 1, + "head": 5, + "add": 35, + ".attr": 17, + ".text": 27, + "body": 1, + "open": 14, + ".add_class": 4, + "add_html": 7, + "close": 14, + "page": 1, + "page.write_to": 1, + "stdout": 2, + "page.write_to_file": 1, + "int_stack": 1, + "IntStack": 2, + "Null": 1, + "means": 1, + "stack": 3, + "ISNode": 4, + "Add": 2, + "integer": 2, + "stack.": 2, + "val": 5, + "self.head": 5, + "Remove": 1, + "pushed": 1, + "integer.": 1, + "followings": 2, + "statically": 3, + "head.val": 1, + "head.next": 1, + "sum": 12, + "integers": 1, + "sumall": 1, + "cur": 3, + "condition": 1, + "cur.val": 1, + "cur.next": 1, + "attributes": 1, + "have": 1, + "value": 2, + "free": 2, + "constructor": 2, + "implicitly": 2, + "defined.": 2, + "stored": 1, + "node.": 1, + "any.": 1, + "A": 1, + "l.push": 4, + "l.sumall": 1, + "loop": 2, + "l.pop": 5, + "break": 2, + "following": 1, + "gives": 2, + "alternative": 1, "opengles2_hello_triangle": 1, - "import": 18, "glesv2": 1, "egl": 1, "mnit_linux": 1, "sdl": 1, "x11": 1, - ".environ": 3, - "exit": 3, "window_width": 2, "window_height": 2, "##": 6, @@ -44733,7 +45409,6 @@ "surface": 5, "egl_display.create_window_surface": 1, "surface.is_ok": 1, - "context": 9, "egl_display.create_context": 1, "context.is_ok": 1, "make_current_res": 2, @@ -44752,7 +45427,6 @@ "GLProgram": 1, "program.is_ok": 1, "program.info_log": 1, - "abort": 2, "vertex_shader": 2, "GLVertexShader": 1, "vertex_shader.is_ok": 1, @@ -44770,12 +45444,10 @@ "program.link": 1, "program.is_linked": 1, "vertices": 2, - "-": 70, "vertex_array": 1, "VertexArray": 1, "vertex_array.attrib_pointer": 1, "gl_clear_color": 1, - "printn": 10, "gl_viewport": 1, "gl_clear_color_buffer": 1, "program.use": 1, @@ -44790,326 +45462,21 @@ "egl_display.destroy_context": 1, "egl_display.destroy_surface": 1, "sdl_display.destroy": 1, - "html": 1, - "NitHomepage": 2, - "HTMLPage": 1, - "head": 5, - "add": 35, - ".attr": 17, - ".text": 27, - "body": 1, - "open": 14, - ".add_class": 4, - "add_html": 7, - "close": 14, - "page": 1, - "page.write_to": 1, - "stdout": 2, - "page.write_to_file": 1, - "int_stack": 1, - "IntStack": 2, - "Null": 1, - "means": 1, - "that": 2, - "stack": 3, - "ISNode": 4, - "Add": 2, - "integer": 2, - "stack.": 2, - "val": 5, - "self.head": 5, - "Remove": 1, - "pushed": 1, - "integer.": 1, - "Return": 4, - "Note": 7, - "followings": 2, - "statically": 3, - "safe": 4, - "because": 4, - ".": 6, - "head.val": 1, - "head.next": 1, - "sum": 12, - "all": 3, - "integers": 1, - "sumall": 1, - "cur": 3, - "condition": 1, - "cur.val": 1, - "cur.next": 1, - "attributes": 1, - "have": 1, - "value": 2, - "free": 2, - "constructor": 2, - "implicitly": 2, - "defined.": 2, - "stored": 1, - "node.": 1, - "any.": 1, - "A": 1, - "l": 4, - "l.push": 4, - "l.sumall": 1, - "loop": 2, - "l.pop": 5, - "break": 2, - "following": 1, - "*": 14, - "gives": 2, - "alternative": 1, - "curl_http": 1, - "curl": 11, - "MyHttpFetcher": 2, - "CurlCallbacks": 1, - "Curl": 4, - "our_body": 1, - "String": 14, - "self.curl": 1, - "Release": 1, - "object": 2, - "destroy": 1, - "self.curl.destroy": 1, - "Header": 1, - "callback": 11, - "header_callback": 1, - "line": 3, - "We": 1, - "keep": 2, - "this": 2, - "silent": 1, - "testing": 1, - "purposes": 2, - "#if": 1, - "line.has_prefix": 1, - "Body": 1, - "body_callback": 1, - "self.our_body": 1, - "Stream": 1, - "Cf": 1, - "No": 1, - "registered": 1, - "stream_callback": 1, - "buffer": 1, - "size": 8, - "args.length": 3, - "<": 11, - "url": 2, - "args": 9, - "request": 1, - "CurlHTTPRequest": 1, - "HTTP": 3, - "Get": 2, - "Request": 3, - "request.verbose": 3, - "false": 8, - "getResponse": 3, - "request.execute": 2, - "isa": 12, - "CurlResponseSuccess": 2, - "CurlResponseFailed": 5, - "Post": 1, - "myHttpFetcher": 2, - "request.delegate": 1, - "postDatas": 5, - "HeaderMap": 3, - "request.datas": 1, - "postResponse": 3, - "file": 1, - "headers": 3, - "request.headers": 1, - "downloadResponse": 3, - "request.download_to_file": 1, - "CurlFileResponseSuccess": 1, - "Program": 1, - "logic": 1, - "gtk": 1, - "CalculatorContext": 7, - "result": 16, - "Float": 3, - "last_op": 4, - "Char": 7, - "after_point": 12, - "push_op": 2, - "op": 11, - "apply_last_op_if_any": 2, - "self.result": 2, - "store": 1, - "prepare": 1, - "push_digit": 1, - "digit": 1, - "digit.to_f": 2, - "pow": 1, - "after_point.to_f": 1, - "self.after_point": 1, - "self.current": 3, - "switch_to_decimals": 1, - "/": 4, - "CalculatorGui": 2, - "GtkCallable": 1, - "win": 2, - "GtkWindow": 2, - "container": 3, - "GtkGrid": 2, - "lbl_disp": 3, - "GtkLabel": 2, - "but_eq": 3, - "GtkButton": 2, - "but_dot": 3, - "signal": 1, - "sender": 3, - "user_data": 5, - "context.after_point": 1, - "after_point.abs": 1, - "operation": 1, - "c": 17, - "but_dot.sensitive": 2, - "context.switch_to_decimals": 4, - "lbl_disp.text": 3, - "true": 6, - "context.push_op": 15, - "s": 68, - "context.result.to_precision_native": 1, - "s.length.times": 1, - "chiffre": 3, - "s.chars": 2, - "s.substring": 2, - "s.length": 2, - "number": 7, - "context.push_digit": 25, - "context.current.to_precision_native": 1, - "init_gtk": 1, - "win.add": 1, - "container.attach": 7, - "digits": 1, - "but": 6, - "GtkButton.with_label": 5, - "n.to_s": 1, - "but.request_size": 2, - "but.signal_connect": 2, - "%": 3, - "/3": 1, - "operators": 2, - "r": 21, - "op.to_s": 1, - "but_eq.request_size": 1, - "but_eq.signal_connect": 1, - "but_dot.request_size": 1, - "but_dot.signal_connect": 1, - "#C": 1, - "but_c": 2, - "but_c.request_size": 1, - "but_c.signal_connect": 1, - "win.show_all": 1, - "context.result.to_precision": 6, - "#test": 2, - "multiple": 1, - "decimals": 1, - "button": 1, - "app": 1, - "run_gtk": 1, - "callback_monkey": 2, - "{": 14, - "#include": 2, - "": 1, - "": 1, - "typedef": 2, - "struct": 2, - "int": 4, - "id": 2, - "age": 2, - "}": 14, - "CMonkey": 6, - "MonkeyActionCallable": 7, - "toCall": 6, - "Object": 7, - "message": 9, - "MonkeyAction": 5, - "//": 13, - "Method": 1, - "which": 4, - "reproduce": 3, - "answer": 1, - "Please": 1, - "note": 1, - "function": 2, - "pointer": 2, - "used": 1, - "void": 3, - "cbMonkey": 2, - "*mkey": 2, - "callbackFunc": 2, - "CMonkey*": 1, - "MonkeyAction*": 1, - "*data": 3, - "sleep": 5, - "mkey": 2, - "data": 6, - "Back": 2, - "background": 1, - "treatment": 1, - "will": 8, - "redirected": 1, - "nit_monkey_callback_func": 2, - "To": 1, - "call": 3, - "your": 1, - "method": 17, - "signature": 1, - "must": 1, - "written": 2, - "like": 1, - "": 1, - "Name": 1, - "_": 1, - "": 1, - "...": 1, - "MonkeyActionCallable_wokeUp": 1, - "interface": 3, - "wokeUp": 4, - "Monkey": 4, - "abstract": 2, - "extern": 2, - "*monkey": 1, - "malloc": 2, - "sizeof": 2, - "monkey": 4, - "get": 1, - "defined": 4, - "Must": 1, - "as": 1, - "Nit/C": 1, - "C": 4, - "inside": 1, - "wokeUpAction": 2, - "MonkeyActionCallable.wokeUp": 1, - "Allocating": 1, - "memory": 1, - "reference": 2, - "received": 1, - "parameters": 1, - "receiver": 1, - "Message": 1, - "Incrementing": 1, - "counter": 1, - "prevent": 1, - "from": 8, - "releasing": 1, - "MonkeyActionCallable_incr_ref": 1, - "Object_incr_ref": 1, - "Calling": 1, - "passing": 1, - "Receiver": 1, - "Function": 1, - "Datas": 1, - "recv": 12, - "&": 1, - "socket_server": 1, + "print_arguments": 1, + "procedural_array": 1, + "array_sum": 2, + "array_sum_alt": 2, + "a.length": 1, + "socket_client": 1, "socket": 6, + "Socket.client": 1, + ".to_i": 2, + "s.connected": 1, + "s.write": 1, + "s.close": 1, + "socket_server": 1, "args.is_empty": 1, "Socket.server": 1, - ".to_i": 2, "clients": 2, "Socket": 1, "max": 2, @@ -45122,164 +45489,6 @@ "socket.accept": 1, "ns.write": 1, "ns.close": 1, - "drop_privileges": 1, - "privileges": 1, - "opts": 1, - "OptionContext": 1, - "opt_ug": 2, - "OptionUserAndGroup.for_dropping_privileges": 1, - "opt_ug.mandatory": 1, - "opts.add_option": 1, - "opts.parse": 1, - "opts.errors.is_empty": 1, - "opts.errors": 1, - "opts.usage": 1, - "user_group": 2, - "opt_ug.value": 1, - "user_group.drop_privileges": 1, - "clock": 4, - "Clock": 10, - "total": 1, - "minutes": 12, - "total_minutes": 2, - "read": 1, - "acces": 1, - "public": 1, - "write": 1, - "access": 1, - "private.": 1, - "hour": 3, - "self.total_minutes": 8, - "set": 2, - "hour.": 1, - "m": 5, - "changed": 1, - "accordinlgy": 1, - "self.hours": 1, - "hours": 9, - "updated": 1, - "h": 7, - "arrow": 2, - "interval": 1, - "hour_pos": 2, - "replace": 1, - "updated.": 1, - "to_s": 3, - "reset": 1, - "hours*60": 1, - "self.reset": 1, - "o": 5, - "type": 2, - "test": 1, - "required": 1, - "Thanks": 1, - "adaptive": 1, - "typing": 1, - "no": 1, - "downcast": 1, - "i.e.": 1, - "code": 3, - "o.total_minutes": 2, - "c.minutes": 1, - "c.hours": 1, - "c2": 2, - "c2.minutes": 1, - "websocket_server": 1, - "websocket": 1, - "sock": 1, - "WebSocket": 1, - "msg": 8, - "sock.listener.eof": 2, - "sys.errno.strerror": 1, - "sock.accept": 2, - "sock.connected": 1, - "sys.stdin.poll_in": 1, - "gets": 1, - "sock.close": 1, - "sock.disconnect_client": 1, - "sock.write": 1, - "sock.can_read": 1, - "sock.read_line": 1, - "draw_operation": 1, - "enum": 3, - "n_chars": 1, - "abs": 2, - "log10f": 1, - "float": 1, - "as_operator": 1, - "b": 10, - "override_dispc": 1, - "Bool": 2, - "lines": 7, - "Line": 53, - "P": 51, - "s/2": 23, - "y": 9, - "lines.add": 1, - "q4": 4, - "s/4": 1, - "lines.append": 1, - "tl": 2, - "tr": 2, - "hack": 3, - "support": 1, - "bug": 1, - "evaluation": 1, - "software": 1, - "draw": 1, - "dispc": 2, - "gap": 1, - "w": 3, - "length": 2, - "*gap": 1, - "map": 8, - ".filled_with": 1, - "ci": 2, - "self.chars": 1, - "local_dispc": 4, - "c.override_dispc": 1, - "c.lines": 1, - "line.o.x": 1, - "ci*size": 1, - "ci*gap": 1, - "line.o.y": 1, - "line.len": 1, - "map.length": 3, - ".length": 1, - "line.step_x": 1, - "line.step_y": 1, - "step_x": 1, - "step_y": 1, - "len": 1, - "op_char": 3, - "disp_char": 6, - "disp_size": 6, - "disp_gap": 6, - "gets.to_i": 4, - "gets.chars": 2, - "op_char.as_operator": 1, - "len_a": 2, - "a.n_chars": 1, - "len_b": 2, - "b.n_chars": 1, - "len_res": 3, - "result.n_chars": 1, - "max_len": 5, - "len_a.max": 1, - "len_b.max": 1, - "d": 6, - "line_a": 3, - "a.to_s": 1, - "line_a.draw": 1, - "line_b": 3, - "op_char.to_s": 1, - "b.to_s": 1, - "line_b.draw": 1, - "disp_size*max_len": 1, - "*disp_gap": 1, - "line_res": 3, - "result.to_s": 1, - "line_res.draw": 1, "template": 1, "###": 2, "Here": 2, @@ -45312,115 +45521,25 @@ "self.birth": 1, "self.death": 1, "simple": 1, - "usage": 3, "f": 1, "f.add_composer": 3, "f.write_to": 1, - "procedural_array": 1, - "array_sum": 2, - "array_sum_alt": 2, - "a.length": 1, - "curl_mail": 1, - "mail_request": 1, - "CurlMailRequest": 1, - "response": 5, - "mail_request.set_outgoing_server": 1, - "mail_request.from": 1, - "mail_request.to": 1, - "mail_request.cc": 1, - "mail_request.bcc": 1, - "headers_body": 4, - "mail_request.headers_body": 1, - "mail_request.body": 1, - "mail_request.subject": 1, - "mail_request.verbose": 1, - "mail_request.execute": 1, - "CurlMailResponseSuccess": 1, - "extern_methods": 1, - "Returns": 1, - "th": 2, - "fibonnaci": 1, - "implemented": 1, - "here": 1, - "optimization": 1, - "fib": 5, - "Int_fib": 3, - "System": 1, - "seconds": 1, - "atan2l": 1, - "libmath": 1, - "atan_with": 2, - "atan2": 1, - "This": 1, - "Nit": 2, - "methods": 2, - "It": 1, - "use": 1, - "local": 1, - "operator": 1, - "objects": 1, - "String.to_cstring": 2, - "equivalent": 1, - "char*": 1, - "foo": 3, - "long": 2, - "recv_fib": 2, - "recv_plus_fib": 2, - "Int__plus": 1, - "nit_string": 2, - "Int_to_s": 1, - "char": 1, - "*c_string": 1, - "String_to_cstring": 1, - "printf": 1, - "c_string": 1, - "Equivalent": 1, - "pure": 1, - "bar": 2, - "fibonacci": 3, - "Calculate": 1, - "element": 1, - "sequence.": 1, - ".fibonacci": 2, - "args.first.to_i.fibonacci": 1, - "print_arguments": 1, - "clock_more": 1, - "now": 1, - "comparable": 1, - "Comparable": 1, - "Comparaison": 1, - "make": 1, - "sense": 1, - "with": 2, - "other": 2, - "OTHER": 1, - "Comparable.": 1, - "All": 1, - "rely": 1, - "on": 1, - "c1": 1, - "c3": 1, - "c1.minutes": 1, - "socket_client": 1, - "Socket.client": 1, - "s.connected": 1, - "s.write": 1, - "s.close": 1, - "callback_chimpanze": 1, - "Chimpanze": 2, - "create": 1, - "Invoking": 1, - "take": 1, - "some": 1, - "time": 1, - "compute": 1, - "back": 1, - "information.": 1, - "Callback": 1, - "Interface": 1, - "monkey.wokeUpAction": 1, - "Inherit": 1, - "m.create": 1 + "websocket_server": 1, + "websocket": 1, + "sock": 1, + "WebSocket": 1, + "msg": 8, + "sock.listener.eof": 2, + "sys.errno.strerror": 1, + "sock.accept": 2, + "sock.connected": 1, + "sys.stdin.poll_in": 1, + "gets": 1, + "sock.close": 1, + "sock.disconnect_client": 1, + "sock.write": 1, + "sock.can_read": 1, + "sock.read_line": 1 }, "Nix": { "{": 8, @@ -45489,6 +45608,10 @@ "inherit": 1 }, "Nu": { + "SHEBANG#!nush": 1, + "(": 14, + "puts": 1, + ")": 14, ";": 22, "main.nu": 1, "Entry": 1, @@ -45498,9 +45621,7 @@ "Nu": 1, "program.": 1, "Copyright": 1, - "(": 14, "c": 1, - ")": 14, "Tim": 1, "Burks": 1, "Neon": 1, @@ -45548,9 +45669,7 @@ "event": 1, "loop": 1, "NSApplicationMain": 1, - "nil": 1, - "SHEBANG#!nush": 1, - "puts": 1 + "nil": 1 }, "OCaml": { "{": 11, @@ -45640,526 +45759,1676 @@ "lazy_from_val": 1 }, "Objective-C": { + "//": 317, "#import": 53, - "": 2, - "@interface": 23, - "FooAppDelegate": 2, - "NSObject": 5, - "": 1, + "": 4, + "#if": 41, + "TARGET_OS_IPHONE": 11, + "": 1, + "__IPHONE_OS_VERSION_MAX_ALLOWED": 4, + "__IPHONE_4_0": 6, + "": 1, + "Necessary": 1, + "for": 99, + "background": 1, + "task": 1, + "support": 4, + "#endif": 59, + "": 2, + "@class": 4, + "ASIDataDecompressor": 4, + ";": 2003, + "extern": 6, + "NSString": 127, + "*ASIHTTPRequestVersion": 2, + "#ifndef": 9, + "__IPHONE_3_2": 2, + "#define": 65, + "__MAC_10_5": 2, + "__MAC_10_6": 2, + "typedef": 47, + "enum": 17, + "_ASIAuthenticationState": 1, "{": 541, + "ASINoAuthenticationNeededYet": 3, + "ASIHTTPAuthenticationNeeded": 1, + "ASIProxyAuthenticationNeeded": 1, + "}": 532, + "ASIAuthenticationState": 5, + "_ASINetworkErrorType": 1, + "ASIConnectionFailureErrorType": 2, + "ASIRequestTimedOutErrorType": 2, + "ASIAuthenticationErrorType": 3, + "ASIRequestCancelledErrorType": 2, + "ASIUnableToCreateRequestErrorType": 2, + "ASIInternalErrorWhileBuildingRequestType": 3, + "ASIInternalErrorWhileApplyingCredentialsType": 1, + "ASIFileManagementError": 2, + "ASITooMuchRedirectionErrorType": 3, + "ASIUnhandledExceptionError": 3, + "ASICompressionError": 1, + "ASINetworkErrorType": 1, + "NSString*": 13, + "const": 28, + "NetworkRequestErrorDomain": 12, + "unsigned": 62, + "long": 71, + "ASIWWANBandwidthThrottleAmount": 2, + "NS_BLOCKS_AVAILABLE": 8, + "void": 253, + "(": 2109, + "ASIBasicBlock": 15, + ")": 2106, + "ASIHeadersBlock": 3, + "NSDictionary": 37, + "*responseHeaders": 2, + "ASISizeBlock": 5, + "size": 12, + "ASIProgressBlock": 5, + "total": 4, + "ASIDataBlock": 3, + "NSData": 28, + "*data": 2, + "@interface": 23, + "ASIHTTPRequest": 31, + "NSOperation": 1, + "": 1, + "The": 15, + "url": 24, + "this": 50, + "operation": 2, + "should": 8, + "include": 1, + "GET": 1, + "params": 1, + "in": 42, + "the": 197, + "query": 1, + "string": 9, + "where": 1, + "appropriate": 4, + "NSURL": 21, + "*url": 2, + "Will": 7, + "always": 2, + "contain": 4, + "original": 2, + "used": 16, + "making": 1, + "request": 113, + "value": 21, + "of": 34, + "can": 20, + "change": 2, + "when": 46, + "a": 78, + "is": 77, + "redirected": 2, + "*originalURL": 2, + "Temporarily": 1, + "stores": 1, + "we": 73, + "are": 15, + "about": 4, + "to": 115, + "redirect": 4, + "to.": 2, + "be": 49, + "nil": 131, + "again": 1, + "do": 5, + "*redirectURL": 2, + "delegate": 29, + "-": 595, + "will": 57, + "notified": 2, + "various": 1, + "changes": 4, + "state": 35, + "via": 5, + "ASIHTTPRequestDelegate": 1, + "protocol": 10, + "id": 170, + "": 1, + "Another": 1, + "that": 23, + "also": 1, + "status": 4, + "and": 44, + "progress": 13, + "updates": 2, + "Generally": 1, + "you": 10, + "won": 3, + "s": 35, + "more": 5, + "likely": 1, + "sessionCookies": 2, + "NSMutableArray": 31, + "*requestCookies": 2, + "populated": 1, + "with": 19, + "cookies": 5, + "NSArray": 27, + "*responseCookies": 3, + "If": 30, + "use": 26, + "useCookiePersistence": 3, + "true": 9, + "network": 4, + "requests": 21, + "present": 3, + "valid": 5, + "from": 18, + "previous": 2, + "BOOL": 137, + "useKeychainPersistence": 4, + "attempt": 3, + "read": 3, + "credentials": 35, + "keychain": 7, + "save": 3, + "them": 10, + "they": 6, + "successfully": 4, + "presented": 2, + "useSessionPersistence": 6, + "reuse": 3, + "duration": 1, + "session": 5, + "until": 2, + "clearSession": 2, + "called": 3, + "allowCompressedResponse": 3, + "inform": 1, + "server": 8, + "accept": 2, + "compressed": 2, + "data": 27, + "automatically": 2, + "decompress": 1, + "gzipped": 7, + "responses.": 1, + "Default": 10, + "true.": 1, + "shouldCompressRequestBody": 6, + "body": 8, + "gzipped.": 1, + "false.": 1, + "You": 1, + "probably": 4, + "need": 10, + "enable": 1, + "feature": 1, + "on": 26, + "your": 2, + "webserver": 1, + "make": 3, + "work.": 1, + "Tested": 1, + "apache": 1, + "only.": 1, + "When": 15, + "downloadDestinationPath": 11, + "set": 24, + "result": 4, + "downloaded": 6, + "file": 14, + "at": 10, + "location": 3, + "not": 29, + "download": 9, + "stored": 9, + "memory": 3, + "*downloadDestinationPath": 2, + "files": 5, + "Once": 2, + "complete": 12, + "decompressed": 3, + "if": 297, + "necessary": 2, + "moved": 2, + "*temporaryFileDownloadPath": 2, + "response": 17, + "shouldWaitToInflateCompressedResponses": 4, + "NO": 30, + "created": 3, + "path": 11, + "containing": 1, + "inflated": 6, + "as": 17, + "it": 28, + "comes": 3, + "*temporaryUncompressedDataDownloadPath": 2, + "Used": 13, + "writing": 2, + "NSOutputStream": 6, + "*fileDownloadOutputStream": 2, + "*inflatedFileDownloadOutputStream": 2, + "fails": 2, + "or": 18, + "completes": 6, + "finished": 3, + "cancelled": 5, + "an": 20, + "error": 75, + "occurs": 1, + "NSError": 51, + "code": 16, + "Connection": 1, + "failure": 1, + "occurred": 1, + "inspect": 1, + "[": 1227, + "userInfo": 15, + "]": 1227, + "objectForKey": 29, + "NSUnderlyingErrorKey": 3, + "information": 5, + "*error": 3, + "Username": 2, + "password": 11, + "authentication": 18, + "*username": 2, + "*password": 2, + "User": 1, + "Agent": 1, + "*userAgentString": 2, + "Domain": 2, + "NTLM": 6, + "*domain": 2, + "proxy": 11, + "*proxyUsername": 2, + "*proxyPassword": 2, + "*proxyDomain": 2, + "Delegate": 2, + "displaying": 2, + "upload": 4, + "usually": 2, + "NSProgressIndicator": 4, + "but": 5, + "supply": 2, + "different": 4, + "object": 36, + "handle": 4, + "yourself": 4, + "": 2, + "uploadProgressDelegate": 8, + "downloadProgressDelegate": 10, + "Whether": 1, + "t": 15, + "want": 5, + "hassle": 1, + "adding": 1, + "authenticating": 2, + "proxies": 3, + "their": 3, + "apps": 1, + "shouldPresentProxyAuthenticationDialog": 2, + "CFHTTPAuthenticationRef": 2, + "proxyAuthentication": 7, + "*proxyCredentials": 2, + "during": 4, + "int": 55, + "proxyAuthenticationRetryCount": 4, + "Authentication": 3, + "scheme": 5, + "Basic": 2, + "Digest": 2, + "*proxyAuthenticationScheme": 2, + "Realm": 1, + "required": 2, + "*proxyAuthenticationRealm": 3, + "HTTP": 9, + "eg": 2, + "OK": 1, + "Not": 2, + "found": 4, + "etc": 1, + "responseStatusCode": 3, + "Description": 1, + "*responseStatusMessage": 3, + "Size": 3, + "contentLength": 6, + "partially": 1, + "content": 5, + "partialDownloadSize": 8, + "POST": 2, + "payload": 1, + "postLength": 6, + "amount": 12, + "totalBytesRead": 4, + "uploaded": 2, + "totalBytesSent": 5, + "Last": 2, + "incrementing": 2, + "lastBytesRead": 3, + "sent": 6, + "lastBytesSent": 3, + "This": 7, + "lock": 19, + "prevents": 1, + "being": 4, + "inopportune": 1, + "moment": 1, + "NSRecursiveLock": 13, + "*cancelledLock": 2, + "Called": 6, + "implemented": 7, + "starts.": 1, + "requestStarted": 3, + "SEL": 19, + "didStartSelector": 2, + "receives": 3, + "headers.": 1, + "didReceiveResponseHeaders": 2, + "didReceiveResponseHeadersSelector": 2, + "Location": 1, + "header": 20, + "shouldRedirect": 3, + "YES": 62, + "then": 1, + "needed": 3, + "restart": 1, + "by": 12, + "calling": 1, + "redirectToURL": 2, + "simply": 1, + "cancel": 5, + "willRedirectSelector": 2, + "successfully.": 1, + "requestFinished": 4, + "didFinishSelector": 2, + "fails.": 1, + "requestFailed": 2, + "didFailSelector": 2, + "data.": 1, + "didReceiveData": 2, + "implement": 1, + "method": 5, + "must": 6, + "populate": 1, + "responseData": 5, + "write": 4, + "didReceiveDataSelector": 2, + "recording": 1, + "something": 1, + "last": 1, + "happened": 1, + "compare": 4, + "current": 2, + "date": 3, + "time": 9, + "out": 7, + "NSDate": 9, + "*lastActivityTime": 2, + "Number": 1, + "seconds": 2, + "wait": 1, + "before": 6, + "timing": 1, + "default": 8, + "NSTimeInterval": 10, + "timeOutSeconds": 3, + "HEAD": 10, + "length": 32, + "starts": 2, + "shouldResetUploadProgress": 3, + "shouldResetDownloadProgress": 3, + "showAccurateProgress": 7, + "preset": 2, + "*mainRequest": 2, + "only": 12, + "update": 6, + "indicator": 4, + "according": 2, + "how": 2, + "much": 2, + "has": 6, + "received": 5, + "so": 15, + "far": 2, + "Also": 1, + "see": 1, + "comments": 1, + "ASINetworkQueue.h": 1, + "ensure": 1, + "incremented": 4, + "once": 3, + "updatedProgress": 3, + "Prevents": 1, + "post": 2, + "built": 2, + "than": 9, + "largely": 1, + "subclasses": 2, + "haveBuiltPostBody": 3, + "internally": 3, + "may": 8, + "reflect": 1, + "internal": 2, + "buffer": 7, + "CFNetwork": 3, + "/": 18, + "PUT": 1, + "operations": 1, + "sizes": 1, + "greater": 1, + "uploadBufferSize": 6, + "timeout": 6, + "unless": 2, + "bytes": 8, + "have": 15, + "been": 1, + "Likely": 1, + "KB": 4, + "iPhone": 3, + "Mac": 2, + "OS": 1, + "X": 1, + "Leopard": 1, + "x": 10, + "Text": 1, + "encoding": 7, + "responses": 5, + "send": 2, + "Content": 1, + "Type": 1, + "charset": 5, + "value.": 1, + "Defaults": 2, + "NSISOLatin1StringEncoding": 2, + "NSStringEncoding": 6, + "defaultResponseEncoding": 4, + "text": 12, + "didn": 3, + "set.": 1, + "responseEncoding": 3, + "Tells": 1, + "delete": 1, + "partial": 2, + "downloads": 1, + "allows": 1, + "existing": 1, + "resume": 2, + "download.": 1, + "NO.": 1, + "allowResumeForFileDownloads": 2, + "Custom": 1, + "user": 6, + "associated": 1, + "*userInfo": 2, + "NSInteger": 56, + "tag": 2, + "Use": 6, + "rather": 4, + "defaults": 2, + "false": 3, + "useHTTPVersionOne": 3, + "get": 4, + "tell": 2, + "main": 8, + "loop": 1, + "stop": 4, + "retry": 3, + "new": 10, + "needsRedirect": 3, + "Incremented": 1, + "every": 3, + "redirects.": 1, + "reaches": 1, + "give": 2, + "up": 4, + "redirectCount": 2, + "check": 1, + "secure": 1, + "certificate": 2, + "self": 500, + "signed": 1, + "certificates": 2, + "development": 1, + "DO": 1, + "NOT": 1, + "USE": 1, + "IN": 1, + "PRODUCTION": 1, + "validatesSecureCertificate": 3, + "SecIdentityRef": 3, + "clientCertificateIdentity": 5, + "*clientCertificates": 2, + "Details": 1, + "could": 1, + "these": 3, + "best": 1, + "local": 1, + "*PACurl": 2, + "See": 5, + "values": 3, + "above.": 1, + "No": 1, + "yet": 1, + "authenticationNeeded": 3, + "ASIHTTPRequests": 1, + "store": 4, + "same": 6, + "asked": 3, + "avoids": 1, + "extra": 1, + "round": 1, + "trip": 1, + "after": 5, + "succeeded": 1, + "which": 1, + "efficient": 1, + "authenticated": 1, + "large": 1, + "bodies": 1, + "slower": 1, + "connections": 3, + "Set": 4, + "explicitly": 2, + "affects": 1, + "cache": 17, + "YES.": 1, + "Credentials": 1, + "never": 1, + "asks": 1, + "For": 2, + "using": 8, + "authenticationScheme": 4, + "*": 311, + "kCFHTTPAuthenticationSchemeBasic": 2, + "very": 2, + "first": 9, + "shouldPresentCredentialsBeforeChallenge": 4, + "hasn": 1, + "doing": 1, + "anything": 1, + "expires": 1, + "persistentConnectionTimeoutSeconds": 4, + "yes": 1, + "keep": 2, + "alive": 1, + "connectionCanBeReused": 4, + "Stores": 1, + "persistent": 5, + "connection": 17, + "currently": 4, + "use.": 1, + "It": 2, + "particular": 2, + "specify": 2, + "expire": 2, + "A": 4, + "host": 9, + "port": 17, + "connection.": 2, + "These": 1, + "determine": 1, + "whether": 1, + "reused": 2, + "subsequent": 2, + "all": 3, + "match": 1, + "An": 2, + "determining": 1, + "available": 1, + "number": 2, + "reference": 1, + "don": 2, + "ve": 7, + "opened": 3, + "one.": 1, + "stream": 13, + "closed": 1, + "+": 195, + "released": 2, + "either": 1, + "another": 1, + "timer": 5, + "fires": 1, + "NSMutableDictionary": 18, + "*connectionInfo": 2, + "automatic": 1, + "redirects": 2, + "standard": 1, + "follow": 1, + "behaviour": 2, + "most": 1, + "browsers": 1, + "shouldUseRFC2616RedirectBehaviour": 2, + "record": 1, + "downloading": 5, + "downloadComplete": 2, + "ID": 1, + "uniquely": 1, + "identifies": 1, + "primarily": 1, + "debugging": 1, + "NSNumber": 11, + "*requestID": 3, + "ASIHTTPRequestRunLoopMode": 2, + "synchronous": 1, + "NSDefaultRunLoopMode": 2, + "other": 3, + "*runLoopMode": 2, + "checks": 1, + "NSTimer": 5, + "*statusTimer": 2, + "setDefaultCache": 2, + "configure": 2, + "": 9, + "downloadCache": 5, + "policy": 7, + "ASICacheDelegate.h": 2, + "possible": 3, + "ASICachePolicy": 4, + "cachePolicy": 3, + "storage": 2, + "ASICacheStoragePolicy": 2, + "cacheStoragePolicy": 2, + "was": 4, + "pulled": 1, + "didUseCachedResponse": 3, + "secondsToCache": 3, + "custom": 2, + "interval": 1, + "expiring": 1, + "&&": 123, + "shouldContinueWhenAppEntersBackground": 3, + "UIBackgroundTaskIdentifier": 1, + "backgroundTask": 7, + "helper": 1, + "inflate": 2, + "*dataDecompressor": 2, + "Controls": 1, + "without": 1, + "responseString": 3, + "All": 2, + "no": 7, + "raw": 3, + "discarded": 1, + "rawResponseData": 4, + "temporaryFileDownloadPath": 2, + "normal": 1, + "temporaryUncompressedDataDownloadPath": 3, + "contents": 1, + "into": 1, + "Setting": 1, + "especially": 1, + "useful": 1, + "users": 1, + "conjunction": 1, + "streaming": 1, + "parser": 3, + "allow": 1, + "passed": 2, + "while": 11, + "still": 2, + "running": 4, + "behind": 1, + "scenes": 1, + "PAC": 7, + "own": 3, + "isPACFileRequest": 3, + "http": 4, + "https": 1, + "webservers": 1, + "*PACFileRequest": 2, + "asynchronously": 1, + "reading": 1, + "URLs": 2, + "NSInputStream": 7, + "*PACFileReadStream": 2, + "storing": 1, + "NSMutableData": 5, + "*PACFileData": 2, + "startSynchronous.": 1, + "Currently": 1, + "detection": 2, + "synchronously": 1, + "isSynchronous": 2, + "//block": 12, + "execute": 4, + "startedBlock": 5, + "headers": 11, + "headersReceivedBlock": 5, + "completionBlock": 5, + "failureBlock": 5, + "bytesReceivedBlock": 8, + "bytesSentBlock": 5, + "downloadSizeIncrementedBlock": 5, + "uploadSizeIncrementedBlock": 5, + "handling": 4, + "dataReceivedBlock": 5, + "authenticationNeededBlock": 5, + "proxyAuthenticationNeededBlock": 5, + "redirections": 1, + "requestRedirectedBlock": 5, + "#pragma": 44, + "mark": 42, + "init": 34, + "dealloc": 13, + "initWithURL": 4, + "newURL": 16, + "requestWithURL": 7, + "usingCache": 5, + "andCachePolicy": 3, + "setStartedBlock": 1, + "aStartedBlock": 1, + "setHeadersReceivedBlock": 1, + "aReceivedBlock": 2, + "setCompletionBlock": 1, + "aCompletionBlock": 1, + "setFailedBlock": 1, + "aFailedBlock": 1, + "setBytesReceivedBlock": 1, + "aBytesReceivedBlock": 1, + "setBytesSentBlock": 1, + "aBytesSentBlock": 1, + "setDownloadSizeIncrementedBlock": 1, + "aDownloadSizeIncrementedBlock": 1, + "setUploadSizeIncrementedBlock": 1, + "anUploadSizeIncrementedBlock": 1, + "setDataReceivedBlock": 1, + "setAuthenticationNeededBlock": 1, + "anAuthenticationBlock": 1, + "setProxyAuthenticationNeededBlock": 1, + "aProxyAuthenticationBlock": 1, + "setRequestRedirectedBlock": 1, + "aRedirectBlock": 1, + "setup": 2, + "addRequestHeader": 5, + "applyCookieHeader": 2, + "buildRequestHeaders": 3, + "applyAuthorizationHeader": 2, + "buildPostBody": 3, + "appendPostData": 3, + "appendPostDataFromFile": 3, + "isResponseCompressed": 3, + "startSynchronous": 2, + "startAsynchronous": 2, + "clearDelegatesAndCancel": 2, + "HEADRequest": 1, + "upload/download": 1, + "updateProgressIndicators": 1, + "updateUploadProgress": 3, + "updateDownloadProgress": 3, + "removeUploadProgressSoFar": 1, + "incrementDownloadSizeBy": 1, + "incrementUploadSizeBy": 3, + "updateProgressIndicator": 4, + "withProgress": 4, + "ofTotal": 4, + "performSelector": 7, + "selector": 12, + "onTarget": 7, + "target": 5, + "withObject": 10, + "callerToRetain": 7, + "caller": 1, + "talking": 1, + "delegates": 2, + "requestReceivedResponseHeaders": 1, + "newHeaders": 1, + "failWithError": 11, + "theError": 6, + "retryUsingNewConnection": 1, + "parsing": 2, + "readResponseHeaders": 2, + "parseStringEncodingFromHeaders": 2, + "parseMimeType": 2, + "**": 27, + "mimeType": 2, + "andResponseEncoding": 2, + "stringEncoding": 1, + "fromContentType": 2, + "contentType": 1, + "stuff": 1, + "applyCredentials": 1, + "newCredentials": 16, + "applyProxyCredentials": 2, + "findCredentials": 1, + "findProxyCredentials": 2, + "retryUsingSuppliedCredentials": 1, + "cancelAuthentication": 1, + "attemptToApplyCredentialsAndResume": 1, + "attemptToApplyProxyCredentialsAndResume": 1, + "showProxyAuthenticationDialog": 1, + "showAuthenticationDialog": 1, + "addBasicAuthenticationHeaderWithUsername": 2, + "theUsername": 1, + "andPassword": 2, + "thePassword": 1, + "handlers": 1, + "handleNetworkEvent": 2, + "CFStreamEventType": 2, + "type": 5, + "handleBytesAvailable": 1, + "handleStreamComplete": 1, + "handleStreamError": 1, + "cleanup": 1, + "markAsFinished": 4, + "removeTemporaryDownloadFile": 1, + "removeTemporaryUncompressedDownloadFile": 1, + "removeTemporaryUploadFile": 1, + "removeTemporaryCompressedUploadFile": 1, + "removeFileAtPath": 1, + "err": 8, + "connectionID": 1, + "expirePersistentConnections": 1, + "defaultTimeOutSeconds": 3, + "setDefaultTimeOutSeconds": 1, + "newTimeOutSeconds": 1, + "client": 1, + "setClientCertificateIdentity": 1, + "anIdentity": 1, + "sessionProxyCredentialsStore": 1, + "sessionCredentialsStore": 1, + "storeProxyAuthenticationCredentialsInSessionStore": 1, + "storeAuthenticationCredentialsInSessionStore": 2, + "removeProxyAuthenticationCredentialsFromSessionStore": 1, + "removeAuthenticationCredentialsFromSessionStore": 3, + "findSessionProxyAuthenticationCredentials": 1, + "findSessionAuthenticationCredentials": 2, + "saveCredentialsToKeychain": 3, + "saveCredentials": 4, + "NSURLCredential": 8, + "forHost": 2, + "realm": 14, + "forProxy": 2, + "savedCredentialsForHost": 1, + "savedCredentialsForProxy": 1, + "removeCredentialsForHost": 1, + "removeCredentialsForProxy": 1, + "setSessionCookies": 1, + "newSessionCookies": 1, + "addSessionCookie": 1, + "NSHTTPCookie": 1, + "newCookie": 1, + "agent": 2, + "defaultUserAgentString": 1, + "setDefaultUserAgentString": 1, + "mime": 1, + "mimeTypeForFileAtPath": 1, + "bandwidth": 3, + "measurement": 1, + "throttling": 1, + "maxBandwidthPerSecond": 2, + "setMaxBandwidthPerSecond": 1, + "averageBandwidthUsedPerSecond": 2, + "performThrottling": 2, + "isBandwidthThrottled": 2, + "incrementBandwidthUsedInLastSecond": 1, + "setShouldThrottleBandwidthForWWAN": 1, + "throttle": 1, + "throttleBandwidthForWWANUsingLimit": 1, + "limit": 1, + "reachability": 1, + "isNetworkReachableViaWWAN": 1, + "queue": 12, + "NSOperationQueue": 4, + "sharedQueue": 4, + "defaultCache": 3, + "maxUploadReadLength": 1, + "activity": 1, + "isNetworkInUse": 1, + "setShouldUpdateNetworkActivityIndicator": 1, + "shouldUpdate": 1, + "showNetworkActivityIndicator": 1, + "hideNetworkActivityIndicator": 1, + "miscellany": 1, + "base64forData": 1, + "theData": 1, + "expiryDateForRequest": 1, + "maxAge": 2, + "dateFromRFC1123String": 1, + "isMultitaskingSupported": 2, + "threading": 1, + "NSThread": 4, + "threadForRequest": 3, + "@property": 150, + "retain": 73, + "*proxyHost": 1, + "assign": 84, + "proxyPort": 2, + "*proxyType": 1, + "setter": 2, + "setURL": 3, + "nonatomic": 40, + "readonly": 19, + "*authenticationRealm": 2, + "*requestHeaders": 1, + "*requestCredentials": 1, + "*rawResponseData": 1, + "*requestMethod": 1, + "*postBody": 1, + "*postBodyFilePath": 1, + "shouldStreamPostDataFromDisk": 4, + "didCreateTemporaryPostDataFile": 1, + "*authenticationScheme": 1, + "shouldPresentAuthenticationDialog": 1, + "authenticationRetryCount": 2, + "haveBuiltRequestHeaders": 1, + "inProgress": 4, + "numberOfTimesToRetryOnTimeout": 2, + "retryCount": 3, + "shouldAttemptPersistentConnection": 2, + "@end": 37, + "": 1, + "#else": 8, + "": 1, + "@": 258, + "static": 102, + "*defaultUserAgent": 1, + "*ASIHTTPRequestRunLoopMode": 1, + "CFOptionFlags": 1, + "kNetworkEvents": 1, + "kCFStreamEventHasBytesAvailable": 1, + "|": 13, + "kCFStreamEventEndEncountered": 1, + "kCFStreamEventErrorOccurred": 1, + "*sessionCredentialsStore": 1, + "*sessionProxyCredentialsStore": 1, + "*sessionCredentialsLock": 1, + "*sessionCookies": 1, + "RedirectionLimit": 1, + "ReadStreamClientCallBack": 1, + "CFReadStreamRef": 5, + "readStream": 5, + "*clientCallBackInfo": 1, + "ASIHTTPRequest*": 1, + "clientCallBackInfo": 1, + "*progressLock": 1, + "*ASIRequestCancelledError": 1, + "*ASIRequestTimedOutError": 1, + "*ASIAuthenticationError": 1, + "*ASIUnableToCreateRequestError": 1, + "*ASITooMuchRedirectionError": 1, + "*bandwidthUsageTracker": 1, + "nextConnectionNumberToCreate": 1, + "*persistentConnectionsPool": 1, + "*connectionsLock": 1, + "nextRequestID": 1, + "bandwidthUsedInLastSecond": 1, + "*bandwidthMeasurementDate": 1, + "NSLock": 2, + "*bandwidthThrottlingLock": 1, + "shouldThrottleBandwidthForWWANOnly": 1, + "*sessionCookiesLock": 1, + "*delegateAuthenticationLock": 1, + "*throttleWakeUpTime": 1, + "runningRequestCount": 1, + "shouldUpdateNetworkActivityIndicator": 1, + "*networkThread": 1, + "*sharedQueue": 1, + "cancelLoad": 3, + "destroyReadStream": 3, + "scheduleReadStream": 1, + "unscheduleReadStream": 1, + "willAskDelegateForCredentials": 1, + "willAskDelegateForProxyCredentials": 1, + "askDelegateForProxyCredentials": 1, + "askDelegateForCredentials": 1, + "failAuthentication": 1, + "measureBandwidthUsage": 1, + "recordBandwidthUsage": 1, + "startRequest": 3, + "updateStatus": 2, + "checkRequestStatus": 2, + "reportFailure": 3, + "reportFinished": 1, + "performRedirect": 1, + "shouldTimeOut": 2, + "willRedirect": 1, + "willAskDelegateToConfirmRedirect": 1, + "performInvocation": 2, + "NSInvocation": 4, + "invocation": 4, + "releasingObject": 2, + "objectToRelease": 1, + "hideNetworkActivityIndicatorAfterDelay": 1, + "hideNetworkActivityIndicatorIfNeeeded": 1, + "runRequests": 1, + "configureProxies": 2, + "fetchPACFile": 1, + "finishedDownloadingPACFile": 1, + "theRequest": 1, + "runPACScript": 1, + "script": 1, + "timeOutPACRead": 1, + "useDataFromCache": 2, + "updatePartialDownloadSize": 1, + "registerForNetworkReachabilityNotifications": 1, + "unsubscribeFromNetworkReachabilityNotifications": 1, + "reachabilityChanged": 1, + "NSNotification": 2, + "note": 1, + "performBlockOnMainThread": 2, + "block": 18, + "releaseBlocksOnMainThread": 4, + "releaseBlocks": 3, + "blocks": 16, + "callBlock": 1, + "*postBodyWriteStream": 1, + "*postBodyReadStream": 1, + "*compressedPostBody": 1, + "*compressedPostBodyFilePath": 1, + "willRetryRequest": 1, + "*readStream": 1, + "readStreamIsScheduled": 1, + "setSynchronous": 2, + "@implementation": 13, + "initialize": 1, + "class": 30, + "persistentConnectionsPool": 3, + "alloc": 47, + "connectionsLock": 3, + "progressLock": 1, + "bandwidthThrottlingLock": 1, + "sessionCookiesLock": 1, + "sessionCredentialsLock": 1, + "delegateAuthenticationLock": 1, + "bandwidthUsageTracker": 1, + "initWithCapacity": 2, + "ASIRequestTimedOutError": 1, + "initWithDomain": 5, + "dictionaryWithObjectsAndKeys": 10, + "NSLocalizedDescriptionKey": 10, + "ASIAuthenticationError": 1, + "ASIRequestCancelledError": 2, + "ASIUnableToCreateRequestError": 3, + "ASITooMuchRedirectionError": 1, + "setMaxConcurrentOperationCount": 1, + "setRequestMethod": 3, + "setRunLoopMode": 2, + "setShouldAttemptPersistentConnection": 2, + "setPersistentConnectionTimeoutSeconds": 2, + "setShouldPresentCredentialsBeforeChallenge": 1, + "setShouldRedirect": 1, + "setShowAccurateProgress": 1, + "setShouldResetDownloadProgress": 1, + "setShouldResetUploadProgress": 1, + "setAllowCompressedResponse": 1, + "setShouldWaitToInflateCompressedResponses": 1, + "setDefaultResponseEncoding": 1, + "setShouldPresentProxyAuthenticationDialog": 1, + "setTimeOutSeconds": 1, + "setUseSessionPersistence": 1, + "setUseCookiePersistence": 1, + "setValidatesSecureCertificate": 1, + "setRequestCookies": 2, + "autorelease": 21, + "setDidStartSelector": 1, + "@selector": 28, + "setDidReceiveResponseHeadersSelector": 1, + "setWillRedirectSelector": 1, + "willRedirectToURL": 1, + "setDidFinishSelector": 1, + "setDidFailSelector": 1, + "setDidReceiveDataSelector": 1, + "setCancelledLock": 1, + "setDownloadCache": 3, + "return": 165, + "ASIUseDefaultCachePolicy": 1, + "*request": 1, + "setCachePolicy": 1, + "setAuthenticationNeeded": 2, + "requestAuthentication": 7, + "CFRelease": 19, + "redirectURL": 1, + "release": 66, + "statusTimer": 3, + "invalidate": 2, + "postBody": 11, + "compressedPostBody": 4, + "requestHeaders": 6, + "requestCookies": 1, + "fileDownloadOutputStream": 1, + "inflatedFileDownloadOutputStream": 1, + "username": 8, + "domain": 2, + "authenticationRealm": 4, + "requestCredentials": 1, + "proxyHost": 2, + "proxyType": 1, + "proxyUsername": 3, + "proxyPassword": 3, + "proxyDomain": 1, + "proxyAuthenticationRealm": 2, + "proxyAuthenticationScheme": 2, + "proxyCredentials": 1, + "originalURL": 1, + "lastActivityTime": 1, + "responseCookies": 1, + "responseHeaders": 5, + "requestMethod": 13, + "cancelledLock": 37, + "postBodyFilePath": 7, + "compressedPostBodyFilePath": 4, + "postBodyWriteStream": 7, + "postBodyReadStream": 2, + "PACurl": 1, + "clientCertificates": 2, + "responseStatusMessage": 1, + "connectionInfo": 13, + "requestID": 2, + "dataDecompressor": 1, + "userAgentString": 1, + "super": 25, + "*blocks": 1, + "array": 84, + "addObject": 16, + "performSelectorOnMainThread": 2, + "waitUntilDone": 4, + "isMainThread": 2, + "Blocks": 1, + "exits": 1, + "setRequestHeaders": 2, + "dictionaryWithCapacity": 2, + "setObject": 9, + "forKey": 9, + "Are": 1, + "submitting": 1, + "disk": 1, + "were": 5, + "close": 5, + "setPostBodyWriteStream": 2, + "*path": 1, + "setCompressedPostBodyFilePath": 1, + "NSTemporaryDirectory": 2, + "stringByAppendingPathComponent": 2, + "NSProcessInfo": 2, + "processInfo": 2, + "globallyUniqueString": 2, + "*err": 3, + "ASIDataCompressor": 2, + "compressDataFromFile": 1, + "toFile": 1, + "&": 36, + "else": 35, + "setPostLength": 3, + "NSFileManager": 1, + "attributesOfItemAtPath": 1, + "fileSize": 1, + "errorWithDomain": 6, + "stringWithFormat": 6, + "Otherwise": 2, + "*compressedBody": 1, + "compressData": 1, + "setCompressedPostBody": 1, + "compressedBody": 1, + "isEqualToString": 13, + "||": 42, + "setHaveBuiltPostBody": 1, + "setupPostBody": 3, + "setPostBodyFilePath": 1, + "setDidCreateTemporaryPostDataFile": 1, + "initToFileAtPath": 1, + "append": 1, + "open": 2, + "setPostBody": 1, + "maxLength": 3, + "appendData": 2, + "*stream": 1, + "initWithFileAtPath": 1, + "NSUInteger": 93, + "bytesRead": 5, + "hasBytesAvailable": 1, + "char": 19, + "*256": 1, + "sizeof": 13, + "break": 13, + "dataWithBytes": 1, + "*m": 1, + "unlock": 20, + "m": 1, + "newRequestMethod": 3, + "*u": 1, + "u": 4, + "isEqual": 4, + "NULL": 152, + "setRedirectURL": 2, + "d": 11, + "setDelegate": 4, + "newDelegate": 6, + "q": 2, + "setQueue": 2, + "newQueue": 3, + "cancelOnRequestThread": 2, + "DEBUG_REQUEST_STATUS": 4, + "ASI_DEBUG_LOG": 11, + "isCancelled": 6, + "setComplete": 3, + "CFRetain": 4, + "willChangeValueForKey": 1, + "didChangeValueForKey": 1, + "onThread": 2, + "Clear": 3, + "setDownloadProgressDelegate": 2, + "setUploadProgressDelegate": 2, + "initWithBytes": 1, + "*encoding": 1, + "rangeOfString": 1, + ".location": 1, + "NSNotFound": 1, + "uncompressData": 1, + "DEBUG_THROTTLING": 2, + "setInProgress": 3, + "NSRunLoop": 2, + "currentRunLoop": 2, + "runMode": 1, + "runLoopMode": 2, + "beforeDate": 1, + "distantFuture": 1, + "start": 3, + "addOperation": 1, + "concurrency": 1, + "isConcurrent": 1, + "isFinished": 1, + "isExecuting": 1, + "logic": 1, + "@try": 1, + "UIBackgroundTaskInvalid": 3, + "UIApplication": 2, + "sharedApplication": 2, + "beginBackgroundTaskWithExpirationHandler": 1, + "dispatch_async": 1, + "dispatch_get_main_queue": 1, + "endBackgroundTask": 1, + "generated": 3, + "ASINetworkQueue": 4, + "already.": 1, + "proceed.": 1, + "setDidUseCachedResponse": 1, + "Must": 1, + "call": 8, + "create": 1, + "needs": 1, + "mainRequest": 9, + "ll": 6, + "already": 4, + "CFHTTPMessageRef": 3, + "Create": 1, + "request.": 1, + "CFHTTPMessageCreateRequest": 1, + "kCFAllocatorDefault": 3, + "CFStringRef": 1, + "CFURLRef": 1, + "kCFHTTPVersion1_0": 1, + "kCFHTTPVersion1_1": 1, + "//If": 2, + "let": 8, + "generate": 1, + "its": 9, + "Even": 1, + "chance": 2, + "add": 5, + "ASIS3Request": 1, + "does": 3, + "process": 1, + "@catch": 1, + "NSException": 19, + "*exception": 1, + "*underlyingError": 1, + "exception": 3, + "name": 7, + "reason": 1, + "NSLocalizedFailureReasonErrorKey": 1, + "underlyingError": 1, + "@finally": 1, + "Do": 3, + "DEBUG_HTTP_AUTHENTICATION": 4, + "*credentials": 1, + "auth": 2, + "basic": 3, + "any": 3, + "cached": 2, + "key": 32, + "challenge": 1, + "apply": 2, + "like": 1, + "CFHTTPMessageApplyCredentialDictionary": 2, + "CFDictionaryRef": 1, + "setAuthenticationScheme": 1, + "happens": 4, + "%": 30, + "re": 9, + "retrying": 1, + "our": 6, + "measure": 1, + "throttled": 1, + "setPostBodyReadStream": 2, + "ASIInputStream": 2, + "inputStreamWithData": 2, + "setReadStream": 2, + "NSMakeCollectable": 3, + "CFReadStreamCreateForStreamedHTTPRequest": 1, + "CFReadStreamCreateForHTTPRequest": 1, + "lowercaseString": 1, + "*sslProperties": 2, + "initWithObjectsAndKeys": 1, + "numberWithBool": 3, + "kCFStreamSSLAllowsExpiredCertificates": 1, + "kCFStreamSSLAllowsAnyRoot": 1, + "kCFStreamSSLValidatesCertificateChain": 1, + "kCFNull": 1, + "kCFStreamSSLPeerName": 1, + "CFReadStreamSetProperty": 1, + "kCFStreamPropertySSLSettings": 1, + "CFTypeRef": 1, + "sslProperties": 2, + "*certificates": 1, + "arrayWithCapacity": 2, + "count": 99, + "*oldStream": 1, + "redirecting": 2, + "connecting": 2, + "intValue": 4, + "setConnectionInfo": 2, + "Check": 1, + "expired": 1, + "timeIntervalSinceNow": 1, + "<": 56, + "DEBUG_PERSISTENT_CONNECTIONS": 3, + "removeObject": 2, + "//Some": 1, + "previously": 1, + "there": 1, + "one": 1, + "We": 7, + "just": 4, + "old": 5, + "//lists.apple.com/archives/Macnetworkprog/2006/Mar/msg00119.html": 1, + "oldStream": 4, + "streamSuccessfullyOpened": 1, + "setConnectionCanBeReused": 2, + "Record": 1, + "started": 1, + "nothing": 2, + "setLastActivityTime": 1, + "setStatusTimer": 2, + "timerWithTimeInterval": 1, + "repeats": 1, + "addTimer": 1, + "forMode": 1, + "here": 2, + "safely": 1, + "***Black": 1, + "magic": 1, + "warning***": 1, + "reliable": 1, + "way": 1, + "track": 1, + "strong": 4, + "slow.": 1, + "secondsSinceLastActivity": 1, + "*1.5": 1, + "updating": 1, + "checking": 1, + "told": 1, + "us": 2, + "auto": 2, + "resuming": 1, + "Range": 1, + "take": 1, + "account": 1, + "perhaps": 1, + "setTotalBytesSent": 1, + "CFReadStreamCopyProperty": 2, + "kCFStreamPropertyHTTPRequestBytesWrittenCount": 1, + "unsignedLongLongValue": 1, + "middle": 1, + "said": 1, + "might": 4, + "MaxValue": 2, + "UIProgressView": 2, + "double": 3, + "max": 7, + "setMaxValue": 2, + "examined": 1, + "since": 1, + "authenticate": 1, + "bytesReadSoFar": 3, + "setUpdatedProgress": 1, + "didReceiveBytes": 2, + "totalSize": 2, + "setLastBytesRead": 1, + "pass": 5, + "pointer": 2, + "directly": 1, + "itself": 1, + "setArgument": 4, + "atIndex": 6, + "argumentNumber": 1, + "callback": 3, + "NSMethodSignature": 1, + "*cbSignature": 1, + "methodSignatureForSelector": 1, + "*cbInvocation": 1, + "invocationWithMethodSignature": 1, + "cbSignature": 1, + "cbInvocation": 5, + "setSelector": 1, + "setTarget": 1, + "forget": 2, + "know": 3, + "removeObjectForKey": 1, + "dateWithTimeIntervalSinceNow": 1, + "ignore": 1, + "ASIFallbackToCacheIfLoadFailsCachePolicy": 2, + "canUseCachedDataForRequest": 1, + "setError": 2, + "*failedRequest": 1, + "compatible": 1, + "fail": 1, + "failedRequest": 4, + "message": 2, + "kCFStreamPropertyHTTPResponseHeader": 1, + "Make": 1, + "sure": 1, + "tells": 1, + "keepAliveHeader": 2, + "NSScanner": 2, + "*scanner": 1, + "scannerWithString": 1, + "scanner": 5, + "scanString": 2, + "intoString": 3, + "scanInt": 2, + "scanUpToString": 1, + "what": 3, + "hard": 1, + "throw": 1, + "away.": 1, + "*userAgentHeader": 1, + "*acceptHeader": 1, + "userAgentHeader": 2, + "acceptHeader": 2, + "setHaveBuiltRequestHeaders": 1, + "Force": 2, + "rebuild": 2, + "cookie": 1, + "incase": 1, + "got": 1, + "some": 1, + "remain": 1, + "ones": 3, + "URLWithString": 1, + "valueForKey": 2, + "relativeToURL": 1, + "absoluteURL": 1, + "setNeedsRedirect": 1, + "means": 1, + "manually": 1, + "added": 5, + "those": 1, + "global": 1, + "But": 1, + "safest": 1, + "option": 1, + "responseCode": 1, + "Handle": 1, + "*mimeType": 1, + "setResponseEncoding": 2, + "saveProxyCredentialsToKeychain": 1, + "*authenticationCredentials": 2, + "credentialWithUser": 2, + "kCFHTTPAuthenticationUsername": 2, + "kCFHTTPAuthenticationPassword": 2, + "persistence": 2, + "NSURLCredentialPersistencePermanent": 2, + "authenticationCredentials": 4, + "setProxyAuthenticationRetryCount": 1, + "Apply": 1, + "whatever": 1, + "ok": 1, + "CFMutableDictionaryRef": 1, + "*sessionCredentials": 1, + "dictionary": 64, + "sessionCredentials": 6, + "setRequestCredentials": 1, + "*newCredentials": 1, + "*user": 1, + "*pass": 1, + "*theRequest": 1, + "try": 3, + "connect": 1, + "website": 1, + "kCFHTTPAuthenticationSchemeNTLM": 1, + "Ok": 1, + "extract": 1, + "NSArray*": 1, + "ntlmComponents": 1, + "componentsSeparatedByString": 1, + "AUTH": 6, + "Request": 6, + "parent": 1, + "properties": 1, + "ASIAuthenticationDialog": 2, + "had": 1, + "Foo": 2, + "NSObject": 5, + "": 2, + "FooAppDelegate": 2, + "": 1, "@private": 2, "NSWindow": 2, "*window": 2, - ";": 2003, - "}": 532, - "@property": 150, - "(": 2109, - "assign": 84, - ")": 2106, "IBOutlet": 1, - "@end": 37, - "//": 317, - "MainMenuViewController": 2, - "TTTableViewController": 1, - "typedef": 47, - "enum": 17, - "TUITableViewStylePlain": 2, - "regular": 1, - "table": 7, - "view": 11, - "TUITableViewStyleGrouped": 1, - "grouped": 1, - "headers": 11, - "stick": 1, - "to": 115, - "the": 197, - "top": 8, - "of": 34, - "and": 44, - "scroll": 3, - "with": 19, - "it": 28, - "TUITableViewStyle": 4, - "TUITableViewScrollPositionNone": 2, - "TUITableViewScrollPositionTop": 2, - "TUITableViewScrollPositionMiddle": 1, - "TUITableViewScrollPositionBottom": 1, - "TUITableViewScrollPositionToVisible": 3, - "currently": 4, - "only": 12, - "supported": 1, - "arg": 11, - "TUITableViewScrollPosition": 5, - "TUITableViewInsertionMethodBeforeIndex": 1, - "NSOrderedAscending": 4, - "TUITableViewInsertionMethodAtIndex": 1, - "NSOrderedSame": 1, - "TUITableViewInsertionMethodAfterIndex": 1, - "NSOrderedDescending": 4, - "TUITableViewInsertionMethod": 3, - "@class": 4, - "TUITableViewCell": 23, - "@protocol": 3, - "TUITableViewDataSource": 2, - "TUITableView": 25, - "TUITableViewDelegate": 1, - "": 1, - "TUIScrollViewDelegate": 1, - "-": 595, - "CGFloat": 44, - "tableView": 45, - "*": 311, - "heightForRowAtIndexPath": 2, - "TUIFastIndexPath": 89, - "indexPath": 47, - "@optional": 2, - "void": 253, - "willDisplayCell": 2, - "cell": 21, - "forRowAtIndexPath": 2, - "called": 3, - "after": 5, - "s": 35, - "added": 5, - "as": 17, - "a": 78, - "subview": 1, - "didSelectRowAtIndexPath": 3, - "happens": 4, - "on": 26, - "left/right": 2, - "mouse": 2, - "down": 1, - "key": 32, - "up/down": 1, - "didDeselectRowAtIndexPath": 3, - "didClickRowAtIndexPath": 1, - "withEvent": 2, - "NSEvent": 3, - "event": 8, - "up": 4, - "can": 20, - "look": 1, - "at": 10, - "clickCount": 1, - "BOOL": 137, - "TUITableView*": 1, - "shouldSelectRowAtIndexPath": 3, - "TUIFastIndexPath*": 1, - "forEvent": 3, - "NSEvent*": 1, - "YES": 62, - "if": 297, - "not": 29, - "implemented": 7, - "NSMenu": 1, - "menuForRowAtIndexPath": 1, - "tableViewWillReloadData": 3, - "tableViewDidReloadData": 3, - "targetIndexPathForMoveFromRowAtIndexPath": 1, - "fromPath": 1, - "toProposedIndexPath": 1, - "proposedPath": 1, - "TUIScrollView": 1, - "_style": 8, - "__unsafe_unretained": 2, - "id": 170, - "": 4, - "_dataSource": 6, - "weak": 2, - "NSArray": 27, - "_sectionInfo": 27, - "TUIView": 17, - "_pullDownView": 4, - "_headerView": 8, - "CGSize": 5, - "_lastSize": 1, - "_contentHeight": 7, - "NSMutableIndexSet": 6, - "_visibleSectionHeaders": 6, - "NSMutableDictionary": 18, - "_visibleItems": 14, - "_reusableTableCells": 5, - "_selectedIndexPath": 9, - "_indexPathShouldBeFirstResponder": 2, - "NSInteger": 56, - "_futureMakeFirstResponderToken": 2, - "_keepVisibleIndexPathForReload": 2, - "_relativeOffsetForReload": 2, - "drag": 1, - "reorder": 1, - "state": 35, - "_dragToReorderCell": 5, - "CGPoint": 7, - "_currentDragToReorderLocation": 1, - "_currentDragToReorderMouseOffset": 1, - "_currentDragToReorderIndexPath": 1, - "_currentDragToReorderInsertionMethod": 1, - "_previousDragToReorderIndexPath": 1, - "_previousDragToReorderInsertionMethod": 1, - "struct": 20, - "unsigned": 62, - "int": 55, - "animateSelectionChanges": 3, - "forceSaveScrollPosition": 1, - "derepeaterEnabled": 1, - "layoutSubviewsReentrancyGuard": 1, - "didFirstLayout": 1, - "dataSourceNumberOfSectionsInTableView": 1, - "delegateTableViewWillDisplayCellForRowAtIndexPath": 1, - "maintainContentOffsetAfterReload": 3, - "_tableFlags": 1, - "initWithFrame": 12, - "CGRect": 41, - "frame": 38, - "style": 29, - "must": 6, - "specify": 2, - "creation.": 1, - "calls": 1, - "this": 50, - "UITableViewStylePlain": 1, - "nonatomic": 40, - "unsafe_unretained": 2, - "dataSource": 2, - "": 4, - "delegate": 29, - "readwrite": 1, - "reloadData": 3, - "reloadDataMaintainingVisibleIndexPath": 2, - "relativeOffset": 5, - "reloadLayout": 2, - "numberOfSections": 10, - "numberOfRowsInSection": 9, - "section": 60, - "rectForHeaderOfSection": 4, - "rectForSection": 3, - "rectForRowAtIndexPath": 7, - "NSIndexSet": 4, - "indexesOfSectionsInRect": 2, - "rect": 10, - "indexesOfSectionHeadersInRect": 2, - "indexPathForCell": 2, - "returns": 4, - "nil": 131, - "is": 77, - "visible": 16, - "indexPathsForRowsInRect": 3, - "valid": 5, - "indexPathForRowAtPoint": 2, - "point": 11, - "indexPathForRowAtVerticalOffset": 2, - "offset": 23, - "indexOfSectionWithHeaderAtPoint": 2, - "indexOfSectionWithHeaderAtVerticalOffset": 2, - "enumerateIndexPathsUsingBlock": 2, - "*indexPath": 11, - "*stop": 7, - "block": 18, - "enumerateIndexPathsWithOptions": 2, - "NSEnumerationOptions": 4, - "options": 6, - "usingBlock": 6, - "enumerateIndexPathsFromIndexPath": 4, - "fromIndexPath": 6, - "toIndexPath": 12, - "withOptions": 4, - "headerViewForSection": 6, - "cellForRowAtIndexPath": 9, - "or": 18, - "index": 11, - "path": 11, - "out": 7, - "range": 8, - "visibleCells": 3, - "no": 7, - "particular": 2, - "order": 1, - "sortedVisibleCells": 2, - "bottom": 6, - "indexPathsForVisibleRows": 2, - "scrollToRowAtIndexPath": 3, - "atScrollPosition": 3, - "scrollPosition": 9, - "animated": 27, - "indexPathForSelectedRow": 4, - "return": 165, - "representing": 1, - "row": 36, - "selection.": 1, - "indexPathForFirstRow": 2, - "indexPathForLastRow": 2, - "selectRowAtIndexPath": 3, - "deselectRowAtIndexPath": 3, - "strong": 4, - "*pullDownView": 1, - "pullDownViewIsVisible": 3, - "*headerView": 6, - "dequeueReusableCellWithIdentifier": 2, - "NSString": 127, - "identifier": 7, - "": 1, - "@required": 1, - "canMoveRowAtIndexPath": 2, - "moveRowAtIndexPath": 2, - "numberOfSectionsInTableView": 3, - "NSIndexPath": 5, - "+": 195, - "indexPathForRow": 11, - "NSUInteger": 93, - "inSection": 11, - "readonly": 19, - "NSString*": 13, - "kTextStyleType": 2, - "@": 258, - "kViewStyleType": 2, - "kImageStyleType": 2, - "///////////////////////////////////////////////////////////////////////////////////////////////////": 24, - "@implementation": 13, - "StyleViewController": 2, - "initWithStyleName": 1, - "name": 7, - "styleType": 3, - "self": 500, - "[": 1227, - "super": 25, - "initWithNibName": 3, - "bundle": 3, - "]": 1227, - "self.title": 2, - "TTStyleSheet": 4, - "globalStyleSheet": 4, - "styleWithSelector": 4, - "retain": 73, - "_styleHighlight": 6, - "forState": 4, - "UIControlStateHighlighted": 1, - "_styleDisabled": 6, - "UIControlStateDisabled": 1, - "_styleSelected": 6, - "UIControlStateSelected": 1, - "_styleType": 6, - "copy": 4, - "dealloc": 13, - "TT_RELEASE_SAFELY": 12, - "#pragma": 44, - "mark": 42, - "UIViewController": 2, - "addTextView": 5, - "title": 2, - "TTStyle*": 7, - "textFrame": 3, - "TTRectInset": 3, - "UIEdgeInsetsMake": 3, - "StyleView*": 2, - "text": 12, - "StyleView": 2, - "alloc": 47, - "text.text": 1, - "TTStyleContext*": 1, - "context": 4, - "TTStyleContext": 1, - "init": 34, - "context.frame": 1, - "context.delegate": 1, - "context.font": 1, - "UIFont": 3, - "systemFontOfSize": 2, - "systemFontSize": 1, - "size": 12, - "addToSize": 1, - "CGSizeZero": 1, - "size.width": 1, - "size.height": 1, - "textFrame.size": 1, - "text.frame": 1, - "text.style": 1, - "text.backgroundColor": 1, - "UIColor": 3, - "colorWithRed": 3, - "green": 3, - "blue": 3, - "alpha": 3, - "text.autoresizingMask": 1, - "UIViewAutoresizingFlexibleWidth": 4, - "|": 13, - "UIViewAutoresizingFlexibleBottomMargin": 3, - "self.view": 4, - "addSubview": 8, - "addView": 5, - "viewFrame": 4, - "view.style": 2, - "view.backgroundColor": 2, - "view.autoresizingMask": 2, - "addImageView": 5, - "TTImageView*": 1, - "TTImageView": 1, - "view.urlPath": 1, - "imageFrame": 2, - "view.frame": 2, - "imageFrame.size": 1, - "view.image.size": 1, - "loadView": 4, - "self.view.bounds": 2, - "frame.size.height": 15, - "/": 18, - "isEqualToString": 13, - "frame.origin.y": 16, - "else": 35, - "Foo": 2, - "": 4, - "SBJsonParser": 2, - "maxDepth": 2, - "*error": 3, - "objectWithData": 7, - "NSData*": 1, - "data": 27, - "objectWithString": 5, - "repr": 5, - "jsonText": 1, - "error": 75, - "NSError**": 2, - "nibNameOrNil": 1, - "NSBundle": 1, - "nibBundleOrNil": 1, - "//self.variableHeightRows": 1, - "self.tableViewStyle": 1, - "UITableViewStyleGrouped": 1, - "self.dataSource": 1, - "TTSectionedDataSource": 1, - "dataSourceWithObjects": 1, - "TTTableTextItem": 48, - "itemWithText": 48, - "URL": 48, "@synthesize": 7, - "self.maxDepth": 2, - "u": 4, - "Methods": 1, - "NSData": 28, - "self.error": 3, - "SBJsonStreamParserAccumulator": 2, - "*accumulator": 1, - "SBJsonStreamParserAdapter": 2, - "*adapter": 1, - "adapter.delegate": 1, - "accumulator": 1, - "SBJsonStreamParser": 2, - "*parser": 1, - "parser.maxDepth": 1, - "parser.delegate": 1, - "adapter": 1, - "switch": 3, - "parser": 3, - "parse": 1, - "case": 8, - "SBJsonStreamParserComplete": 1, - "accumulator.value": 1, - "break": 13, - "SBJsonStreamParserWaitingForData": 1, - "SBJsonStreamParserError": 1, - "parser.error": 1, - "dataUsingEncoding": 2, - "NSUTF8StringEncoding": 2, - "error_": 2, - "tmp": 3, - "NSDictionary": 37, - "*ui": 1, - "dictionaryWithObjectsAndKeys": 10, - "NSLocalizedDescriptionKey": 10, - "*error_": 1, - "NSError": 51, - "errorWithDomain": 6, - "code": 16, - "userInfo": 15, - "ui": 1, - "PlaygroundViewController": 2, - "UIScrollView*": 1, - "_scrollView": 9, - "": 1, - "static": 102, - "const": 28, - "kFramePadding": 7, - "kElementSpacing": 3, - "kGroupSpacing": 5, - "addHeader": 5, - "yOffset": 42, - "UILabel*": 2, - "label": 6, - "UILabel": 2, - "CGRectZero": 5, - "label.text": 2, - "label.font": 3, - "label.numberOfLines": 2, - "label.frame": 4, - "frame.origin.x": 3, - "frame.size.width": 4, - "sizeWithFont": 2, - "constrainedToSize": 2, - "CGSizeMake": 3, - ".height": 4, - "label.frame.size.height": 2, - "addText": 5, - "UIScrollView": 1, - "_scrollView.autoresizingMask": 1, - "UIViewAutoresizingFlexibleHeight": 1, - "NSLocalizedString": 9, - "UIButton*": 1, - "button": 5, - "UIButton": 1, - "buttonWithType": 1, - "UIButtonTypeRoundedRect": 1, - "setTitle": 1, - "UIControlStateNormal": 1, - "addTarget": 1, - "action": 1, - "@selector": 28, - "debugTestAction": 2, - "forControlEvents": 1, - "UIControlEventTouchUpInside": 1, - "sizeToFit": 1, - "button.frame": 2, - "stringWithFormat": 6, - "TTCurrentLocale": 2, - "displayNameForKey": 1, - "NSLocaleIdentifier": 1, - "value": 21, - "localeIdentifier": 1, - "TTPathForBundleResource": 1, - "TTPathForDocumentsResource": 1, - "md5Hash": 1, - "setContentSize": 1, - "viewDidUnload": 2, - "viewDidAppear": 2, - "flashScrollIndicators": 1, - "#ifdef": 10, - "DEBUG": 1, + "window": 1, + "applicationDidFinishLaunching": 1, + "aNotification": 1, + "argc": 1, + "*argv": 1, "NSLog": 4, - "#else": 8, - "#endif": 59, - "TTDPRINTMETHODNAME": 1, - "TTDPRINT": 9, - "TTMAXLOGLEVEL": 1, - "TTDERROR": 1, - "TTLOGLEVEL_ERROR": 1, - "TTDWARNING": 1, - "TTLOGLEVEL_WARNING": 1, - "TTDINFO": 1, - "TTLOGLEVEL_INFO": 1, - "TTDCONDITIONLOG": 3, - "true": 9, - "false": 3, - "rand": 1, - "%": 30, - "TTDASSERT": 2, "#include": 18, - "": 2, - "": 1, + "": 1, "": 2, + "": 2, + "": 1, + "": 1, + "#ifdef": 10, + "__OBJC__": 4, + "": 2, + "": 2, + "": 2, + "": 1, + "": 2, + "": 1, + "__cplusplus": 2, + "NSINTEGER_DEFINED": 3, + "defined": 16, + "__LP64__": 4, + "NS_BUILD_32_LIKE_64": 3, + "NSIntegerMin": 3, + "LONG_MIN": 3, + "NSIntegerMax": 4, + "LONG_MAX": 3, + "NSUIntegerMax": 7, + "ULONG_MAX": 3, + "INT_MIN": 3, + "INT_MAX": 2, + "UINT_MAX": 3, + "_JSONKIT_H_": 3, + "__GNUC__": 14, + "__APPLE_CC__": 2, + "JK_DEPRECATED_ATTRIBUTE": 6, + "__attribute__": 3, + "deprecated": 1, + "JSONKIT_VERSION_MAJOR": 1, + "JSONKIT_VERSION_MINOR": 1, + "JKFlags": 5, + "JKParseOptionNone": 1, + "JKParseOptionStrict": 1, + "JKParseOptionComments": 2, + "<<": 16, + "JKParseOptionUnicodeNewlines": 2, + "JKParseOptionLooseUnicode": 2, + "JKParseOptionPermitTextAfterValidJSON": 2, + "JKParseOptionValidFlags": 1, + "JKParseOptionFlags": 12, + "JKSerializeOptionNone": 3, + "JKSerializeOptionPretty": 2, + "JKSerializeOptionEscapeUnicode": 2, + "JKSerializeOptionEscapeForwardSlashes": 2, + "JKSerializeOptionValidFlags": 1, + "JKSerializeOptionFlags": 16, + "struct": 20, + "JKParseState": 18, + "Opaque": 1, + "private": 1, + "type.": 3, + "JSONDecoder": 2, + "*parseState": 16, + "decoder": 1, + "decoderWithParseOptions": 1, + "parseOptionFlags": 11, + "initWithParseOptions": 1, + "clearCache": 1, + "parseUTF8String": 2, + "size_t": 23, + "Deprecated": 4, + "JSONKit": 11, + "v1.4.": 4, + "objectWithUTF8String": 4, + "instead.": 4, + "parseJSONData": 2, + "jsonData": 6, + "objectWithData": 7, + "mutableObjectWithUTF8String": 2, + "mutableObjectWithData": 2, + "////////////": 4, + "Deserializing": 1, + "methods": 2, + "JSONKitDeserializing": 2, + "objectFromJSONString": 1, + "objectFromJSONStringWithParseOptions": 2, + "mutableObjectFromJSONString": 1, + "mutableObjectFromJSONStringWithParseOptions": 2, + "objectFromJSONData": 1, + "objectFromJSONDataWithParseOptions": 2, + "mutableObjectFromJSONData": 1, + "mutableObjectFromJSONDataWithParseOptions": 2, + "Serializing": 1, + "JSONKitSerializing": 3, + "JSONData": 3, + "Invokes": 2, + "JSONDataWithOptions": 8, + "includeQuotes": 6, + "serializeOptions": 14, + "JSONString": 3, + "JSONStringWithOptions": 8, + "serializeUnsupportedClassesUsingDelegate": 4, + "__BLOCKS__": 1, + "JSONKitSerializingBlockAdditions": 2, + "serializeUnsupportedClassesUsingBlock": 4, + "": 1, "": 1, "": 1, "": 1, "": 1, - "": 2, "": 1, "//#include": 1, "": 1, @@ -46168,44 +47437,29 @@ "": 1, "": 1, "//#import": 1, - "": 2, "": 1, - "": 2, - "": 2, "": 1, "": 1, - "": 2, - "#ifndef": 9, "__has_feature": 3, - "#define": 65, - "x": 10, "JK_ENABLE_CF_TRANSFER_OWNERSHIP_CALLBACKS": 2, "#warning": 1, "As": 1, - "JSONKit": 11, "v1.4": 1, "longer": 2, "required.": 1, - "It": 2, "option.": 1, "__OBJC_GC__": 1, "#error": 6, - "does": 3, - "support": 4, "Objective": 2, "C": 6, "Garbage": 1, "Collection": 1, - "#if": 41, "objc_arc": 1, "Automatic": 1, "Reference": 1, "Counting": 1, "ARC": 1, - "UINT_MAX": 3, "xffffffffU": 1, - "||": 42, - "INT_MIN": 3, "fffffff": 1, "ULLONG_MAX": 1, "xffffffffffffffffULL": 1, @@ -46214,25 +47468,12 @@ "LL": 1, "requires": 4, "types": 2, - "be": 49, "bits": 1, "respectively.": 1, - "defined": 16, - "__LP64__": 4, - "&&": 123, - "ULONG_MAX": 3, - "INT_MAX": 2, - "LONG_MAX": 3, - "LONG_MIN": 3, "WORD_BIT": 1, "LONG_BIT": 1, - "same": 6, "bit": 1, "architectures.": 1, - "NSUIntegerMax": 7, - "NSIntegerMax": 4, - "NSIntegerMin": 3, - "type.": 3, "SIZE_MAX": 1, "SSIZE_MAX": 1, "JK_HASH_INIT": 1, @@ -46240,7 +47481,6 @@ "JK_FAST_TRAILING_BYTES": 2, "JK_CACHE_SLOTS_BITS": 2, "JK_CACHE_SLOTS": 1, - "<<": 16, "JK_CACHE_PROBES": 1, "JK_INIT_CACHE_AGE": 1, "JK_TOKENBUFFER_SIZE": 1, @@ -46248,17 +47488,14 @@ "JK_JSONBUFFER_SIZE": 1, "JK_UTF8BUFFER_SIZE": 1, "JK_ENCODE_CACHE_SLOTS": 1, - "__GNUC__": 14, "JK_ATTRIBUTES": 15, "attr": 3, "...": 11, - "__attribute__": 3, "##__VA_ARGS__": 7, "JK_EXPECTED": 4, "cond": 12, "expect": 3, "__builtin_expect": 1, - "long": 71, "JK_EXPECT_T": 22, "U": 2, "JK_EXPECT_F": 14, @@ -46269,6 +47506,7 @@ "__inline__": 1, "always_inline": 1, "JK_ALIGNED": 1, + "arg": 11, "aligned": 1, "JK_UNUSED_ARG": 2, "unused": 3, @@ -46335,7 +47573,6 @@ "JKManagedBufferLocationMask": 1, "JKManagedBufferLocationShift": 1, "JKManagedBufferMustFree": 1, - "JKFlags": 5, "JKManagedBufferFlags": 1, "JKObjectStackOnStack": 1, "JKObjectStackOnHeap": 1, @@ -46388,14 +47625,10 @@ "JKObjCImpCache": 2, "JKHashTableEntry": 21, "serializeObject": 1, - "object": 36, - "JKSerializeOptionFlags": 16, + "options": 6, "optionFlags": 1, "encodeOption": 2, "JKSERIALIZER_BLOCKS_PROTO": 1, - "selector": 12, - "SEL": 19, - "**": 27, "releaseState": 1, "keyHash": 21, "uint32_t": 1, @@ -46425,7 +47658,6 @@ "xDC00": 1, "UNI_SUR_LOW_END": 1, "xDFFF": 1, - "char": 19, "trailingBytesForUTF8": 1, "offsetsFromUTF8": 1, "E2080UL": 1, @@ -46438,14 +47670,11 @@ "xF8": 1, "xFC": 1, "JK_AT_STRING_PTR": 1, - "&": 36, "stringBuffer.bytes.ptr": 2, - "atIndex": 6, "JK_END_STRING_PTR": 1, "stringBuffer.bytes.length": 1, "*_JKArrayCreate": 2, "*objects": 5, - "count": 99, "mutableCollection": 7, "_JKArrayInsertObjectAtIndex": 3, "*array": 9, @@ -46467,19 +47696,14 @@ "*_JKDictionaryHashTableEntryForKey": 2, "aKey": 13, "_JSONDecoderCleanup": 1, - "JSONDecoder": 2, "*decoder": 1, "_NSStringObjectFromJSONString": 1, "*jsonString": 1, - "JKParseOptionFlags": 12, - "parseOptionFlags": 11, "**error": 1, "jk_managedBuffer_release": 1, "*managedBuffer": 3, "jk_managedBuffer_setToStackBuffer": 1, "*ptr": 2, - "size_t": 23, - "length": 32, "*jk_managedBuffer_resize": 1, "newSize": 1, "jk_objectStack_release": 1, @@ -46492,8 +47716,6 @@ "jk_objectStack_resize": 1, "newCount": 1, "jk_error": 1, - "JKParseState": 18, - "*parseState": 16, "*format": 7, "jk_parse_string": 1, "jk_parse_number": 1, @@ -46514,7 +47736,6 @@ "*jk_cachedObjects": 1, "jk_cache_age": 1, "jk_set_parsed_token": 1, - "type": 5, "advanceBy": 1, "jk_encode_error": 1, "*encodeState": 9, @@ -46545,7 +47766,6 @@ "c": 7, "Class": 3, "_JKArrayClass": 5, - "NULL": 152, "_JKArrayInstanceSize": 4, "_JKDictionaryClass": 5, "_JKDictionaryInstanceSize": 4, @@ -46554,33 +47774,24 @@ "_jk_NSNumberAllocImp": 2, "NSNumberInitWithUnsignedLongLongImp": 2, "_jk_NSNumberInitWithUnsignedLongLongImp": 2, - "extern": 6, "jk_collectionClassLoadTimeInitialization": 2, "constructor": 1, "NSAutoreleasePool": 2, "*pool": 1, "Though": 1, "technically": 1, - "required": 2, "run": 1, - "time": 9, "environment": 1, "load": 1, "initialization": 1, - "may": 8, "less": 1, - "than": 9, "ideal.": 1, "objc_getClass": 2, "class_getInstanceSize": 2, - "NSNumber": 11, - "class": 30, "methodForSelector": 2, "temp_NSNumber": 4, "initWithUnsignedLongLong": 1, - "release": 66, "pool": 2, - "NSMutableArray": 31, "": 2, "NSMutableCopying": 2, "NSFastEnumeration": 2, @@ -46589,7 +47800,6 @@ "allocWithZone": 4, "NSZone": 4, "zone": 8, - "NSException": 19, "raise": 18, "NSInvalidArgumentException": 6, "format": 18, @@ -46598,34 +47808,27 @@ "_cmd": 16, "NSCParameterAssert": 19, "objects": 58, - "array": 84, "calloc": 5, "Directly": 2, "allocate": 2, "instance": 2, - "via": 5, "calloc.": 2, "isa": 2, "malloc": 1, - "sizeof": 13, - "autorelease": 21, "memcpy": 2, - "NO": 30, "<=>": 15, "*newObjects": 1, "newObjects": 2, "realloc": 1, "NSMallocException": 2, "memset": 1, - "<": 56, "memmove": 2, - "CFRelease": 19, "atObject": 12, - "for": 99, "free": 4, "NSParameterAssert": 15, "getObjects": 2, "objectsPtr": 3, + "range": 8, "NSRange": 1, "NSMaxRange": 4, "NSRangeException": 6, @@ -46639,7 +47842,6 @@ "mutationsPtr": 2, "itemsPtr": 2, "enumeratedCount": 8, - "while": 11, "insertObject": 1, "anObject": 16, "NSInternalInconsistencyException": 4, @@ -46651,7 +47853,6 @@ "#19.": 2, "removeObjectAtIndex": 1, "replaceObjectAtIndex": 1, - "withObject": 10, "copyWithZone": 1, "initWithObjects": 2, "mutableCopyWithZone": 1, @@ -46661,18 +47862,18 @@ "initWithJKDictionary": 3, "initDictionary": 4, "allObjects": 2, - "CFRetain": 4, "arrayWithObjects": 1, "_JKDictionaryHashEntry": 2, "returnObject": 3, "entry": 41, ".key": 11, "jk_dictionaryCapacities": 4, + "bottom": 6, + "top": 8, "mid": 5, "tableSize": 2, "lround": 1, "floor": 1, - "dictionary": 64, "capacityForCount": 4, "resize": 3, "oldCapacity": 2, @@ -46696,28 +47897,18 @@ "keyEntry": 4, "CFEqual": 2, "CFHash": 1, - "If": 30, - "was": 4, - "in": 42, - "we": 73, + "table": 7, "would": 2, - "have": 15, - "found": 4, - "by": 12, "now.": 1, - "objectForKey": 29, "entryForKey": 3, "_JKDictionaryHashTableEntryForKey": 1, "andKeys": 1, "arrayIdx": 5, "keyEnumerator": 1, - "setObject": 9, - "forKey": 9, + "copy": 4, "Why": 1, "earth": 1, "complain": 1, - "that": 23, - "but": 5, "doesn": 1, "Internal": 2, "Unable": 2, @@ -46728,919 +47919,392 @@ "ld": 2, "Invalid": 1, "character": 1, - "string": 9, "x.": 1, "n": 7, "r": 6, - "t": 15, - "A": 4, "F": 1, ".": 2, "e": 1, - "double": 3, "Unexpected": 1, "token": 1, "wanted": 1, "Expected": 3, - "TARGET_OS_IPHONE": 11, - "": 1, - "": 1, - "*ASIHTTPRequestVersion": 2, - "*defaultUserAgent": 1, - "NetworkRequestErrorDomain": 12, - "*ASIHTTPRequestRunLoopMode": 1, - "CFOptionFlags": 1, - "kNetworkEvents": 1, - "kCFStreamEventHasBytesAvailable": 1, - "kCFStreamEventEndEncountered": 1, - "kCFStreamEventErrorOccurred": 1, - "*sessionCredentialsStore": 1, - "*sessionProxyCredentialsStore": 1, - "NSRecursiveLock": 13, - "*sessionCredentialsLock": 1, - "*sessionCookies": 1, - "RedirectionLimit": 1, - "NSTimeInterval": 10, - "defaultTimeOutSeconds": 3, - "ReadStreamClientCallBack": 1, - "CFReadStreamRef": 5, - "readStream": 5, - "CFStreamEventType": 2, - "*clientCallBackInfo": 1, - "ASIHTTPRequest*": 1, - "clientCallBackInfo": 1, - "handleNetworkEvent": 2, - "*progressLock": 1, - "*ASIRequestCancelledError": 1, - "*ASIRequestTimedOutError": 1, - "*ASIAuthenticationError": 1, - "*ASIUnableToCreateRequestError": 1, - "*ASITooMuchRedirectionError": 1, - "*bandwidthUsageTracker": 1, - "averageBandwidthUsedPerSecond": 2, - "nextConnectionNumberToCreate": 1, - "*persistentConnectionsPool": 1, - "*connectionsLock": 1, - "nextRequestID": 1, - "bandwidthUsedInLastSecond": 1, - "NSDate": 9, - "*bandwidthMeasurementDate": 1, - "NSLock": 2, - "*bandwidthThrottlingLock": 1, - "maxBandwidthPerSecond": 2, - "ASIWWANBandwidthThrottleAmount": 2, - "isBandwidthThrottled": 2, - "shouldThrottleBandwidthForWWANOnly": 1, - "*sessionCookiesLock": 1, - "*delegateAuthenticationLock": 1, - "*throttleWakeUpTime": 1, - "": 9, - "defaultCache": 3, - "runningRequestCount": 1, - "shouldUpdateNetworkActivityIndicator": 1, - "NSThread": 4, - "*networkThread": 1, - "NSOperationQueue": 4, - "*sharedQueue": 1, - "ASIHTTPRequest": 31, - "cancelLoad": 3, - "destroyReadStream": 3, - "scheduleReadStream": 1, - "unscheduleReadStream": 1, - "willAskDelegateForCredentials": 1, - "willAskDelegateForProxyCredentials": 1, - "askDelegateForProxyCredentials": 1, - "askDelegateForCredentials": 1, - "failAuthentication": 1, - "measureBandwidthUsage": 1, - "recordBandwidthUsage": 1, - "startRequest": 3, - "updateStatus": 2, - "NSTimer": 5, - "timer": 5, - "checkRequestStatus": 2, - "reportFailure": 3, - "reportFinished": 1, - "markAsFinished": 4, - "performRedirect": 1, - "shouldTimeOut": 2, - "willRedirect": 1, - "willAskDelegateToConfirmRedirect": 1, - "performInvocation": 2, - "NSInvocation": 4, - "invocation": 4, - "onTarget": 7, - "target": 5, - "releasingObject": 2, - "objectToRelease": 1, - "hideNetworkActivityIndicatorAfterDelay": 1, - "hideNetworkActivityIndicatorIfNeeeded": 1, - "runRequests": 1, - "configureProxies": 2, - "fetchPACFile": 1, - "finishedDownloadingPACFile": 1, - "theRequest": 1, - "runPACScript": 1, - "script": 1, - "timeOutPACRead": 1, - "useDataFromCache": 2, - "updatePartialDownloadSize": 1, - "registerForNetworkReachabilityNotifications": 1, - "unsubscribeFromNetworkReachabilityNotifications": 1, - "reachabilityChanged": 1, - "NSNotification": 2, - "note": 1, - "NS_BLOCKS_AVAILABLE": 8, - "performBlockOnMainThread": 2, - "ASIBasicBlock": 15, - "releaseBlocksOnMainThread": 4, - "releaseBlocks": 3, - "blocks": 16, - "callBlock": 1, - "complete": 12, - "*responseCookies": 3, - "responseStatusCode": 3, - "*lastActivityTime": 2, - "partialDownloadSize": 8, - "uploadBufferSize": 6, - "NSOutputStream": 6, - "*postBodyWriteStream": 1, - "NSInputStream": 7, - "*postBodyReadStream": 1, - "lastBytesRead": 3, - "lastBytesSent": 3, - "*cancelledLock": 2, - "*fileDownloadOutputStream": 2, - "*inflatedFileDownloadOutputStream": 2, - "authenticationRetryCount": 2, - "proxyAuthenticationRetryCount": 4, - "updatedProgress": 3, - "needsRedirect": 3, - "redirectCount": 2, - "*compressedPostBody": 1, - "*compressedPostBodyFilePath": 1, - "*authenticationRealm": 2, - "*proxyAuthenticationRealm": 3, - "*responseStatusMessage": 3, - "inProgress": 4, - "retryCount": 3, - "willRetryRequest": 1, - "connectionCanBeReused": 4, - "*connectionInfo": 2, - "*readStream": 1, - "ASIAuthenticationState": 5, - "authenticationNeeded": 3, - "readStreamIsScheduled": 1, - "downloadComplete": 2, - "*requestID": 3, - "*runLoopMode": 2, - "*statusTimer": 2, - "didUseCachedResponse": 3, - "NSURL": 21, - "*redirectURL": 2, - "isPACFileRequest": 3, - "*PACFileRequest": 2, - "*PACFileReadStream": 2, - "NSMutableData": 5, - "*PACFileData": 2, - "setter": 2, - "setSynchronous": 2, - "isSynchronous": 2, - "initialize": 1, - "persistentConnectionsPool": 3, - "connectionsLock": 3, - "progressLock": 1, - "bandwidthThrottlingLock": 1, - "sessionCookiesLock": 1, - "sessionCredentialsLock": 1, - "delegateAuthenticationLock": 1, - "bandwidthUsageTracker": 1, - "initWithCapacity": 2, - "ASIRequestTimedOutError": 1, - "initWithDomain": 5, - "ASIRequestTimedOutErrorType": 2, - "ASIAuthenticationError": 1, - "ASIAuthenticationErrorType": 3, - "ASIRequestCancelledError": 2, - "ASIRequestCancelledErrorType": 2, - "ASIUnableToCreateRequestError": 3, - "ASIUnableToCreateRequestErrorType": 2, - "ASITooMuchRedirectionError": 1, - "ASITooMuchRedirectionErrorType": 3, - "sharedQueue": 4, - "setMaxConcurrentOperationCount": 1, - "initWithURL": 4, - "newURL": 16, - "setRequestMethod": 3, - "setRunLoopMode": 2, - "NSDefaultRunLoopMode": 2, - "setShouldAttemptPersistentConnection": 2, - "setPersistentConnectionTimeoutSeconds": 2, - "setShouldPresentCredentialsBeforeChallenge": 1, - "setShouldRedirect": 1, - "setShowAccurateProgress": 1, - "setShouldResetDownloadProgress": 1, - "setShouldResetUploadProgress": 1, - "setAllowCompressedResponse": 1, - "setShouldWaitToInflateCompressedResponses": 1, - "setDefaultResponseEncoding": 1, - "NSISOLatin1StringEncoding": 2, - "setShouldPresentProxyAuthenticationDialog": 1, - "setTimeOutSeconds": 1, - "setUseSessionPersistence": 1, - "setUseCookiePersistence": 1, - "setValidatesSecureCertificate": 1, - "setRequestCookies": 2, - "setDidStartSelector": 1, - "requestStarted": 3, - "setDidReceiveResponseHeadersSelector": 1, - "request": 113, - "didReceiveResponseHeaders": 2, - "setWillRedirectSelector": 1, - "willRedirectToURL": 1, - "setDidFinishSelector": 1, - "requestFinished": 4, - "setDidFailSelector": 1, - "requestFailed": 2, - "setDidReceiveDataSelector": 1, - "didReceiveData": 2, - "setURL": 3, - "setCancelledLock": 1, - "setDownloadCache": 3, - "requestWithURL": 7, - "usingCache": 5, - "cache": 17, - "andCachePolicy": 3, - "ASIUseDefaultCachePolicy": 1, - "ASICachePolicy": 4, - "policy": 7, - "*request": 1, - "setCachePolicy": 1, - "setAuthenticationNeeded": 2, - "ASINoAuthenticationNeededYet": 3, - "requestAuthentication": 7, - "proxyAuthentication": 7, - "clientCertificateIdentity": 5, - "redirectURL": 1, - "statusTimer": 3, - "invalidate": 2, - "queue": 12, - "postBody": 11, - "compressedPostBody": 4, - "requestHeaders": 6, - "requestCookies": 1, - "downloadDestinationPath": 11, - "temporaryFileDownloadPath": 2, - "temporaryUncompressedDataDownloadPath": 3, - "fileDownloadOutputStream": 1, - "inflatedFileDownloadOutputStream": 1, - "username": 8, - "password": 11, - "domain": 2, - "authenticationRealm": 4, - "authenticationScheme": 4, - "requestCredentials": 1, - "proxyHost": 2, - "proxyType": 1, - "proxyUsername": 3, - "proxyPassword": 3, - "proxyDomain": 1, - "proxyAuthenticationRealm": 2, - "proxyAuthenticationScheme": 2, - "proxyCredentials": 1, - "url": 24, - "originalURL": 1, - "lastActivityTime": 1, - "responseCookies": 1, - "rawResponseData": 4, - "responseHeaders": 5, - "requestMethod": 13, - "cancelledLock": 37, - "postBodyFilePath": 7, - "compressedPostBodyFilePath": 4, - "postBodyWriteStream": 7, - "postBodyReadStream": 2, - "PACurl": 1, - "clientCertificates": 2, - "responseStatusMessage": 1, - "connectionInfo": 13, - "requestID": 2, - "dataDecompressor": 1, - "userAgentString": 1, - "*blocks": 1, - "completionBlock": 5, - "addObject": 16, - "failureBlock": 5, - "startedBlock": 5, - "headersReceivedBlock": 5, - "bytesReceivedBlock": 8, - "bytesSentBlock": 5, - "downloadSizeIncrementedBlock": 5, - "uploadSizeIncrementedBlock": 5, - "dataReceivedBlock": 5, - "proxyAuthenticationNeededBlock": 5, - "authenticationNeededBlock": 5, - "requestRedirectedBlock": 5, - "performSelectorOnMainThread": 2, - "waitUntilDone": 4, - "isMainThread": 2, - "Blocks": 1, - "will": 57, - "released": 2, - "when": 46, - "method": 5, - "exits": 1, - "setup": 2, - "addRequestHeader": 5, - "header": 20, - "setRequestHeaders": 2, - "dictionaryWithCapacity": 2, - "buildPostBody": 3, - "haveBuiltPostBody": 3, - "Are": 1, - "submitting": 1, - "body": 8, - "from": 18, - "file": 14, - "disk": 1, - "were": 5, - "writing": 2, - "post": 2, - "appendPostData": 3, - "appendPostDataFromFile": 3, - "close": 5, - "write": 4, - "stream": 13, - "setPostBodyWriteStream": 2, - "*path": 1, - "shouldCompressRequestBody": 6, - "setCompressedPostBodyFilePath": 1, - "NSTemporaryDirectory": 2, - "stringByAppendingPathComponent": 2, - "NSProcessInfo": 2, - "processInfo": 2, - "globallyUniqueString": 2, - "*err": 3, - "ASIDataCompressor": 2, - "compressDataFromFile": 1, - "toFile": 1, - "err": 8, - "failWithError": 11, - "setPostLength": 3, - "NSFileManager": 1, - "attributesOfItemAtPath": 1, - "fileSize": 1, - "ASIFileManagementError": 2, - "NSUnderlyingErrorKey": 3, - "Otherwise": 2, - "an": 20, - "memory": 3, - "*compressedBody": 1, - "compressData": 1, - "setCompressedPostBody": 1, - "compressedBody": 1, - "postLength": 6, - "setHaveBuiltPostBody": 1, - "setupPostBody": 3, - "shouldStreamPostDataFromDisk": 4, - "setPostBodyFilePath": 1, - "setDidCreateTemporaryPostDataFile": 1, - "initToFileAtPath": 1, - "append": 1, - "open": 2, - "setPostBody": 1, - "bytes": 8, - "maxLength": 3, - "appendData": 2, - "*stream": 1, - "initWithFileAtPath": 1, - "bytesRead": 5, - "hasBytesAvailable": 1, - "buffer": 7, - "*256": 1, - "read": 3, - "dataWithBytes": 1, - "lock": 19, - "*m": 1, - "unlock": 20, - "m": 1, - "newRequestMethod": 3, - "*u": 1, - "isEqual": 4, - "setRedirectURL": 2, - "d": 11, - "setDelegate": 4, - "newDelegate": 6, - "q": 2, - "setQueue": 2, - "newQueue": 3, - "get": 4, - "information": 5, - "about": 4, - "cancelOnRequestThread": 2, - "DEBUG_REQUEST_STATUS": 4, - "ASI_DEBUG_LOG": 11, - "isCancelled": 6, - "setComplete": 3, - "willChangeValueForKey": 1, - "cancelled": 5, - "didChangeValueForKey": 1, - "cancel": 5, - "performSelector": 7, - "onThread": 2, - "threadForRequest": 3, - "clearDelegatesAndCancel": 2, - "Clear": 3, - "delegates": 2, - "setDownloadProgressDelegate": 2, - "setUploadProgressDelegate": 2, - "result": 4, - "responseString": 3, - "*data": 2, - "responseData": 5, - "initWithBytes": 1, - "encoding": 7, - "responseEncoding": 3, - "isResponseCompressed": 3, - "*encoding": 1, - "rangeOfString": 1, - ".location": 1, - "NSNotFound": 1, - "shouldWaitToInflateCompressedResponses": 4, - "ASIDataDecompressor": 4, - "uncompressData": 1, - "running": 4, - "startSynchronous": 2, - "DEBUG_THROTTLING": 2, - "ASIHTTPRequestRunLoopMode": 2, - "setInProgress": 3, - "main": 8, - "NSRunLoop": 2, - "currentRunLoop": 2, - "runMode": 1, - "runLoopMode": 2, - "beforeDate": 1, - "distantFuture": 1, - "start": 3, - "startAsynchronous": 2, - "addOperation": 1, - "concurrency": 1, - "isConcurrent": 1, - "isFinished": 1, - "finished": 3, - "isExecuting": 1, - "logic": 1, - "@try": 1, - "__IPHONE_OS_VERSION_MAX_ALLOWED": 4, - "__IPHONE_4_0": 6, - "isMultitaskingSupported": 2, - "shouldContinueWhenAppEntersBackground": 3, - "backgroundTask": 7, - "UIBackgroundTaskInvalid": 3, - "UIApplication": 2, - "sharedApplication": 2, - "beginBackgroundTaskWithExpirationHandler": 1, - "dispatch_async": 1, - "dispatch_get_main_queue": 1, - "endBackgroundTask": 1, - "HEAD": 10, - "generated": 3, - "ASINetworkQueue": 4, - "set": 24, - "already.": 1, - "so": 15, - "should": 8, - "proceed.": 1, - "setDidUseCachedResponse": 1, - "Must": 1, - "call": 8, - "before": 6, - "create": 1, - "needs": 1, - "mainRequest": 9, - "ll": 6, - "already": 4, - "CFHTTPMessageRef": 3, - "Create": 1, - "new": 10, - "HTTP": 9, - "request.": 1, - "CFHTTPMessageCreateRequest": 1, - "kCFAllocatorDefault": 3, - "CFStringRef": 1, - "CFURLRef": 1, - "useHTTPVersionOne": 3, - "kCFHTTPVersion1_0": 1, - "kCFHTTPVersion1_1": 1, - "//If": 2, - "need": 10, - "let": 8, - "generate": 1, - "its": 9, - "first": 9, - "use": 26, - "them": 10, - "buildRequestHeaders": 3, - "Even": 1, - "still": 2, - "give": 2, - "subclasses": 2, - "chance": 2, - "add": 5, - "their": 3, - "own": 3, - "requests": 21, - "ASIS3Request": 1, - "downloadCache": 5, - "default": 8, - "download": 9, - "downloading": 5, - "proxy": 11, - "PAC": 7, - "once": 3, - "process": 1, - "@catch": 1, - "*exception": 1, - "*underlyingError": 1, - "ASIUnhandledExceptionError": 3, - "exception": 3, - "reason": 1, - "NSLocalizedFailureReasonErrorKey": 1, - "underlyingError": 1, - "@finally": 1, - "applyAuthorizationHeader": 2, - "Do": 3, - "want": 5, - "send": 2, - "credentials": 35, - "are": 15, - "asked": 3, - "shouldPresentCredentialsBeforeChallenge": 4, - "DEBUG_HTTP_AUTHENTICATION": 4, - "*credentials": 1, - "auth": 2, - "basic": 3, - "authentication": 18, - "explicitly": 2, - "kCFHTTPAuthenticationSchemeBasic": 2, - "addBasicAuthenticationHeaderWithUsername": 2, - "andPassword": 2, - "See": 5, - "any": 3, - "cached": 2, - "session": 5, - "store": 4, - "useSessionPersistence": 6, - "findSessionAuthenticationCredentials": 2, - "When": 15, - "Authentication": 3, - "stored": 9, - "challenge": 1, - "CFNetwork": 3, - "apply": 2, - "Digest": 2, - "NTLM": 6, - "always": 2, - "like": 1, - "CFHTTPMessageApplyCredentialDictionary": 2, - "CFHTTPAuthenticationRef": 2, - "CFDictionaryRef": 1, - "setAuthenticationScheme": 1, - "removeAuthenticationCredentialsFromSessionStore": 3, - "these": 3, - "previous": 2, - "passed": 2, - "re": 9, - "retrying": 1, - "using": 8, - "our": 6, - "custom": 2, - "measure": 1, - "bandwidth": 3, - "throttled": 1, - "necessary": 2, - "setPostBodyReadStream": 2, - "ASIInputStream": 2, - "inputStreamWithData": 2, - "setReadStream": 2, - "NSMakeCollectable": 3, - "CFReadStreamCreateForStreamedHTTPRequest": 1, - "CFReadStreamCreateForHTTPRequest": 1, - "ASIInternalErrorWhileBuildingRequestType": 3, - "scheme": 5, - "lowercaseString": 1, - "validatesSecureCertificate": 3, - "*sslProperties": 2, - "initWithObjectsAndKeys": 1, - "numberWithBool": 3, - "kCFStreamSSLAllowsExpiredCertificates": 1, - "kCFStreamSSLAllowsAnyRoot": 1, - "kCFStreamSSLValidatesCertificateChain": 1, - "kCFNull": 1, - "kCFStreamSSLPeerName": 1, - "CFReadStreamSetProperty": 1, - "kCFStreamPropertySSLSettings": 1, - "CFTypeRef": 1, - "sslProperties": 2, - "*certificates": 1, - "arrayWithCapacity": 2, - "The": 15, - "SecIdentityRef": 3, - "certificates": 2, - "ve": 7, - "opened": 3, - "*oldStream": 1, - "Use": 6, - "persistent": 5, - "connection": 17, - "possible": 3, - "shouldAttemptPersistentConnection": 2, - "redirecting": 2, - "current": 2, - "connecting": 2, - "server": 8, - "host": 9, - "intValue": 4, - "port": 17, - "setConnectionInfo": 2, - "Check": 1, - "expired": 1, - "timeIntervalSinceNow": 1, - "DEBUG_PERSISTENT_CONNECTIONS": 3, - "removeObject": 2, - "//Some": 1, - "other": 3, - "reused": 2, - "previously": 1, - "there": 1, - "one": 1, - "We": 7, - "just": 4, - "make": 3, - "old": 5, - "http": 4, - "//lists.apple.com/archives/Macnetworkprog/2006/Mar/msg00119.html": 1, - "oldStream": 4, - "streamSuccessfullyOpened": 1, - "setConnectionCanBeReused": 2, - "shouldResetUploadProgress": 3, - "showAccurateProgress": 7, - "incrementUploadSizeBy": 3, - "updateProgressIndicator": 4, - "uploadProgressDelegate": 8, - "withProgress": 4, - "ofTotal": 4, - "shouldResetDownloadProgress": 3, - "downloadProgressDelegate": 10, - "Record": 1, - "started": 1, - "timeout": 6, - "nothing": 2, - "setLastActivityTime": 1, - "date": 3, - "setStatusTimer": 2, - "timerWithTimeInterval": 1, - "repeats": 1, - "addTimer": 1, - "forMode": 1, - "here": 2, - "sent": 6, - "more": 5, - "upload": 4, - "safely": 1, - "totalBytesSent": 5, - "***Black": 1, - "magic": 1, - "warning***": 1, - "reliable": 1, - "way": 1, - "track": 1, - "progress": 13, - "KB": 4, - "iPhone": 3, - "Mac": 2, - "very": 2, - "slow.": 1, - "secondsSinceLastActivity": 1, - "timeOutSeconds": 3, - "*1.5": 1, - "won": 3, - "updating": 1, - "checking": 1, - "told": 1, - "us": 2, - "performThrottling": 2, - "auto": 2, - "retry": 3, - "numberOfTimesToRetryOnTimeout": 2, - "resuming": 1, - "update": 6, - "Range": 1, - "take": 1, - "account": 1, - "perhaps": 1, - "uploaded": 2, - "far": 2, - "setTotalBytesSent": 1, - "CFReadStreamCopyProperty": 2, - "kCFStreamPropertyHTTPRequestBytesWrittenCount": 1, - "unsignedLongLongValue": 1, - "middle": 1, - "said": 1, - "might": 4, - "resume": 2, - "used": 16, - "preset": 2, - "content": 5, - "updateUploadProgress": 3, - "updateDownloadProgress": 3, - "NSProgressIndicator": 4, - "MaxValue": 2, - "UIProgressView": 2, - "max": 7, - "setMaxValue": 2, - "amount": 12, - "callerToRetain": 7, - "examined": 1, - "since": 1, - "authenticate": 1, - "contentLength": 6, - "bytesReadSoFar": 3, - "totalBytesRead": 4, - "setUpdatedProgress": 1, - "didReceiveBytes": 2, - "totalSize": 2, - "setLastBytesRead": 1, - "pass": 5, - "pointer": 2, - "directly": 1, - "number": 2, - "itself": 1, - "rather": 4, - "setArgument": 4, - "argumentNumber": 1, - "callback": 3, - "NSMethodSignature": 1, - "*cbSignature": 1, - "methodSignatureForSelector": 1, - "*cbInvocation": 1, - "invocationWithMethodSignature": 1, - "cbSignature": 1, - "cbInvocation": 5, - "setSelector": 1, - "setTarget": 1, - "Used": 13, - "until": 2, - "forget": 2, - "know": 3, - "attempt": 3, - "reuse": 3, - "theError": 6, - "removeObjectForKey": 1, - "dateWithTimeIntervalSinceNow": 1, - "persistentConnectionTimeoutSeconds": 4, - "ignore": 1, - "ASIFallbackToCacheIfLoadFailsCachePolicy": 2, - "cachePolicy": 3, - "canUseCachedDataForRequest": 1, - "setError": 2, - "*failedRequest": 1, - "created": 3, - "compatible": 1, - "fail": 1, - "failedRequest": 4, - "parsing": 2, - "response": 17, - "readResponseHeaders": 2, - "message": 2, - "kCFStreamPropertyHTTPResponseHeader": 1, - "Make": 1, - "sure": 1, - "didn": 3, - "tells": 1, - "keepAliveHeader": 2, - "NSScanner": 2, - "*scanner": 1, - "scannerWithString": 1, - "scanner": 5, - "scanString": 2, - "intoString": 3, - "scanInt": 2, - "scanUpToString": 1, - "probably": 4, - "what": 3, - "you": 10, - "hard": 1, - "keep": 2, - "throw": 1, - "away.": 1, - "*userAgentHeader": 1, - "*acceptHeader": 1, - "userAgentHeader": 2, - "acceptHeader": 2, - "setHaveBuiltRequestHeaders": 1, - "Force": 2, - "rebuild": 2, - "cookie": 1, - "incase": 1, - "got": 1, - "some": 1, - "cookies": 5, - "All": 2, - "remain": 1, - "they": 6, - "redirects": 2, - "applyCookieHeader": 2, - "redirected": 2, - "ones": 3, - "URLWithString": 1, - "valueForKey": 2, - "relativeToURL": 1, - "absoluteURL": 1, - "setNeedsRedirect": 1, - "This": 7, - "means": 1, - "manually": 1, - "redirect": 4, - "those": 1, - "global": 1, - "But": 1, - "safest": 1, - "option": 1, - "different": 4, - "responseCode": 1, - "parseStringEncodingFromHeaders": 2, - "Handle": 1, - "NSStringEncoding": 6, - "charset": 5, - "*mimeType": 1, - "parseMimeType": 2, - "mimeType": 2, - "andResponseEncoding": 2, - "fromContentType": 2, - "setResponseEncoding": 2, - "defaultResponseEncoding": 4, - "saveProxyCredentialsToKeychain": 1, - "newCredentials": 16, - "NSURLCredential": 8, - "*authenticationCredentials": 2, - "credentialWithUser": 2, - "kCFHTTPAuthenticationUsername": 2, - "kCFHTTPAuthenticationPassword": 2, - "persistence": 2, - "NSURLCredentialPersistencePermanent": 2, - "authenticationCredentials": 4, - "saveCredentials": 4, - "forProxy": 2, - "proxyPort": 2, - "realm": 14, - "saveCredentialsToKeychain": 3, - "forHost": 2, - "protocol": 10, - "applyProxyCredentials": 2, - "setProxyAuthenticationRetryCount": 1, - "Apply": 1, - "whatever": 1, - "ok": 1, - "built": 2, - "CFMutableDictionaryRef": 1, - "save": 3, - "keychain": 7, - "useKeychainPersistence": 4, - "*sessionCredentials": 1, - "sessionCredentials": 6, - "storeAuthenticationCredentialsInSessionStore": 2, - "setRequestCredentials": 1, - "findProxyCredentials": 2, - "*newCredentials": 1, - "*user": 1, - "*pass": 1, - "*theRequest": 1, - "try": 3, - "user": 6, - "connect": 1, - "website": 1, - "kCFHTTPAuthenticationSchemeNTLM": 1, - "Ok": 1, - "For": 2, - "authenticating": 2, - "proxies": 3, - "extract": 1, - "NSArray*": 1, - "ntlmComponents": 1, - "componentsSeparatedByString": 1, - "AUTH": 6, - "Request": 6, - "parent": 1, - "properties": 1, - "received": 5, - "ASIAuthenticationDialog": 2, - "had": 1, - "argc": 1, - "*argv": 1, - "window": 1, - "applicationDidFinishLaunching": 1, - "aNotification": 1, + "MainMenuViewController": 2, + "TTTableViewController": 1, + "///////////////////////////////////////////////////////////////////////////////////////////////////": 24, + "initWithNibName": 3, + "nibNameOrNil": 1, + "bundle": 3, + "NSBundle": 1, + "nibBundleOrNil": 1, + "self.title": 2, + "//self.variableHeightRows": 1, + "self.tableViewStyle": 1, + "UITableViewStyleGrouped": 1, + "self.dataSource": 1, + "TTSectionedDataSource": 1, + "dataSourceWithObjects": 1, + "TTTableTextItem": 48, + "itemWithText": 48, + "URL": 48, + "PlaygroundViewController": 2, + "UIViewController": 2, + "UIScrollView*": 1, + "_scrollView": 9, + "": 1, + "CGFloat": 44, + "kFramePadding": 7, + "kElementSpacing": 3, + "kGroupSpacing": 5, + "addHeader": 5, + "yOffset": 42, + "UILabel*": 2, + "label": 6, + "UILabel": 2, + "initWithFrame": 12, + "CGRectZero": 5, + "label.text": 2, + "label.font": 3, + "UIFont": 3, + "systemFontOfSize": 2, + "label.numberOfLines": 2, + "CGRect": 41, + "frame": 38, + "label.frame": 4, + "frame.origin.x": 3, + "frame.origin.y": 16, + "frame.size.width": 4, + "frame.size.height": 15, + "sizeWithFont": 2, + "constrainedToSize": 2, + "CGSizeMake": 3, + ".height": 4, + "addSubview": 8, + "label.frame.size.height": 2, + "TT_RELEASE_SAFELY": 12, + "addText": 5, + "loadView": 4, + "UIScrollView": 1, + "self.view.bounds": 2, + "_scrollView.autoresizingMask": 1, + "UIViewAutoresizingFlexibleWidth": 4, + "UIViewAutoresizingFlexibleHeight": 1, + "self.view": 4, + "NSLocalizedString": 9, + "UIButton*": 1, + "button": 5, + "UIButton": 1, + "buttonWithType": 1, + "UIButtonTypeRoundedRect": 1, + "setTitle": 1, + "forState": 4, + "UIControlStateNormal": 1, + "addTarget": 1, + "action": 1, + "debugTestAction": 2, + "forControlEvents": 1, + "UIControlEventTouchUpInside": 1, + "sizeToFit": 1, + "button.frame": 2, + "TTCurrentLocale": 2, + "displayNameForKey": 1, + "NSLocaleIdentifier": 1, + "localeIdentifier": 1, + "TTPathForBundleResource": 1, + "TTPathForDocumentsResource": 1, + "dataUsingEncoding": 2, + "NSUTF8StringEncoding": 2, + "md5Hash": 1, + "setContentSize": 1, + "viewDidUnload": 2, + "viewDidAppear": 2, + "animated": 27, + "flashScrollIndicators": 1, + "DEBUG": 1, + "TTDPRINTMETHODNAME": 1, + "TTDPRINT": 9, + "TTMAXLOGLEVEL": 1, + "TTDERROR": 1, + "TTLOGLEVEL_ERROR": 1, + "TTDWARNING": 1, + "TTLOGLEVEL_WARNING": 1, + "TTDINFO": 1, + "TTLOGLEVEL_INFO": 1, + "TTDCONDITIONLOG": 3, + "rand": 1, + "TTDASSERT": 2, + "SBJsonParser": 2, + "maxDepth": 2, + "NSData*": 1, + "objectWithString": 5, + "repr": 5, + "jsonText": 1, + "NSError**": 2, + "self.maxDepth": 2, + "Methods": 1, + "self.error": 3, + "SBJsonStreamParserAccumulator": 2, + "*accumulator": 1, + "SBJsonStreamParserAdapter": 2, + "*adapter": 1, + "adapter.delegate": 1, + "accumulator": 1, + "SBJsonStreamParser": 2, + "*parser": 1, + "parser.maxDepth": 1, + "parser.delegate": 1, + "adapter": 1, + "switch": 3, + "parse": 1, + "case": 8, + "SBJsonStreamParserComplete": 1, + "accumulator.value": 1, + "SBJsonStreamParserWaitingForData": 1, + "SBJsonStreamParserError": 1, + "parser.error": 1, + "error_": 2, + "tmp": 3, + "*ui": 1, + "*error_": 1, + "ui": 1, + "StyleViewController": 2, + "TTViewController": 1, + "TTStyle*": 7, + "_style": 8, + "_styleHighlight": 6, + "_styleDisabled": 6, + "_styleSelected": 6, + "_styleType": 6, + "kTextStyleType": 2, + "kViewStyleType": 2, + "kImageStyleType": 2, + "initWithStyleName": 1, + "styleType": 3, + "TTStyleSheet": 4, + "globalStyleSheet": 4, + "styleWithSelector": 4, + "UIControlStateHighlighted": 1, + "UIControlStateDisabled": 1, + "UIControlStateSelected": 1, + "addTextView": 5, + "title": 2, + "style": 29, + "textFrame": 3, + "TTRectInset": 3, + "UIEdgeInsetsMake": 3, + "StyleView*": 2, + "StyleView": 2, + "text.text": 1, + "TTStyleContext*": 1, + "context": 4, + "TTStyleContext": 1, + "context.frame": 1, + "context.delegate": 1, + "context.font": 1, + "systemFontSize": 1, + "CGSize": 5, + "addToSize": 1, + "CGSizeZero": 1, + "size.width": 1, + "size.height": 1, + "textFrame.size": 1, + "text.frame": 1, + "text.style": 1, + "text.backgroundColor": 1, + "UIColor": 3, + "colorWithRed": 3, + "green": 3, + "blue": 3, + "alpha": 3, + "text.autoresizingMask": 1, + "UIViewAutoresizingFlexibleBottomMargin": 3, + "addView": 5, + "viewFrame": 4, + "view": 11, + "view.style": 2, + "view.backgroundColor": 2, + "view.autoresizingMask": 2, + "addImageView": 5, + "TTImageView*": 1, + "TTImageView": 1, + "view.urlPath": 1, + "imageFrame": 2, + "view.frame": 2, + "imageFrame.size": 1, + "view.image.size": 1, + "TUITableViewStylePlain": 2, + "regular": 1, + "TUITableViewStyleGrouped": 1, + "grouped": 1, + "stick": 1, + "scroll": 3, + "TUITableViewStyle": 4, + "TUITableViewScrollPositionNone": 2, + "TUITableViewScrollPositionTop": 2, + "TUITableViewScrollPositionMiddle": 1, + "TUITableViewScrollPositionBottom": 1, + "TUITableViewScrollPositionToVisible": 3, + "supported": 1, + "TUITableViewScrollPosition": 5, + "TUITableViewInsertionMethodBeforeIndex": 1, + "NSOrderedAscending": 4, + "TUITableViewInsertionMethodAtIndex": 1, + "NSOrderedSame": 1, + "TUITableViewInsertionMethodAfterIndex": 1, + "NSOrderedDescending": 4, + "TUITableViewInsertionMethod": 3, + "TUITableViewCell": 23, + "@protocol": 3, + "TUITableViewDataSource": 2, + "TUITableView": 25, + "TUITableViewDelegate": 1, + "": 1, + "TUIScrollViewDelegate": 1, + "tableView": 45, + "heightForRowAtIndexPath": 2, + "TUIFastIndexPath": 89, + "indexPath": 47, + "@optional": 2, + "willDisplayCell": 2, + "cell": 21, + "forRowAtIndexPath": 2, + "subview": 1, + "didSelectRowAtIndexPath": 3, + "left/right": 2, + "mouse": 2, + "down": 1, + "up/down": 1, + "didDeselectRowAtIndexPath": 3, + "didClickRowAtIndexPath": 1, + "withEvent": 2, + "NSEvent": 3, + "event": 8, + "look": 1, + "clickCount": 1, + "TUITableView*": 1, + "shouldSelectRowAtIndexPath": 3, + "TUIFastIndexPath*": 1, + "forEvent": 3, + "NSEvent*": 1, + "NSMenu": 1, + "menuForRowAtIndexPath": 1, + "tableViewWillReloadData": 3, + "tableViewDidReloadData": 3, + "targetIndexPathForMoveFromRowAtIndexPath": 1, + "fromPath": 1, + "toProposedIndexPath": 1, + "proposedPath": 1, + "TUIScrollView": 1, + "__unsafe_unretained": 2, + "": 4, + "_dataSource": 6, + "weak": 2, + "_sectionInfo": 27, + "TUIView": 17, + "_pullDownView": 4, + "_headerView": 8, + "_lastSize": 1, + "_contentHeight": 7, + "NSMutableIndexSet": 6, + "_visibleSectionHeaders": 6, + "_visibleItems": 14, + "_reusableTableCells": 5, + "_selectedIndexPath": 9, + "_indexPathShouldBeFirstResponder": 2, + "_futureMakeFirstResponderToken": 2, + "_keepVisibleIndexPathForReload": 2, + "_relativeOffsetForReload": 2, + "drag": 1, + "reorder": 1, + "_dragToReorderCell": 5, + "CGPoint": 7, + "_currentDragToReorderLocation": 1, + "_currentDragToReorderMouseOffset": 1, + "_currentDragToReorderIndexPath": 1, + "_currentDragToReorderInsertionMethod": 1, + "_previousDragToReorderIndexPath": 1, + "_previousDragToReorderInsertionMethod": 1, + "animateSelectionChanges": 3, + "forceSaveScrollPosition": 1, + "derepeaterEnabled": 1, + "layoutSubviewsReentrancyGuard": 1, + "didFirstLayout": 1, + "dataSourceNumberOfSectionsInTableView": 1, + "delegateTableViewWillDisplayCellForRowAtIndexPath": 1, + "maintainContentOffsetAfterReload": 3, + "_tableFlags": 1, + "creation.": 1, + "calls": 1, + "UITableViewStylePlain": 1, + "unsafe_unretained": 2, + "dataSource": 2, + "": 4, + "readwrite": 1, + "reloadData": 3, + "reloadDataMaintainingVisibleIndexPath": 2, + "relativeOffset": 5, + "reloadLayout": 2, + "numberOfSections": 10, + "numberOfRowsInSection": 9, + "section": 60, + "rectForHeaderOfSection": 4, + "rectForSection": 3, + "rectForRowAtIndexPath": 7, + "NSIndexSet": 4, + "indexesOfSectionsInRect": 2, + "rect": 10, + "indexesOfSectionHeadersInRect": 2, + "indexPathForCell": 2, + "returns": 4, + "visible": 16, + "indexPathsForRowsInRect": 3, + "indexPathForRowAtPoint": 2, + "point": 11, + "indexPathForRowAtVerticalOffset": 2, + "offset": 23, + "indexOfSectionWithHeaderAtPoint": 2, + "indexOfSectionWithHeaderAtVerticalOffset": 2, + "enumerateIndexPathsUsingBlock": 2, + "*indexPath": 11, + "*stop": 7, + "enumerateIndexPathsWithOptions": 2, + "NSEnumerationOptions": 4, + "usingBlock": 6, + "enumerateIndexPathsFromIndexPath": 4, + "fromIndexPath": 6, + "toIndexPath": 12, + "withOptions": 4, + "headerViewForSection": 6, + "cellForRowAtIndexPath": 9, + "index": 11, + "visibleCells": 3, + "order": 1, + "sortedVisibleCells": 2, + "indexPathsForVisibleRows": 2, + "scrollToRowAtIndexPath": 3, + "atScrollPosition": 3, + "scrollPosition": 9, + "indexPathForSelectedRow": 4, + "representing": 1, + "row": 36, + "selection.": 1, + "indexPathForFirstRow": 2, + "indexPathForLastRow": 2, + "selectRowAtIndexPath": 3, + "deselectRowAtIndexPath": 3, + "*pullDownView": 1, + "pullDownViewIsVisible": 3, + "*headerView": 6, + "dequeueReusableCellWithIdentifier": 2, + "identifier": 7, + "": 1, + "@required": 1, + "canMoveRowAtIndexPath": 2, + "moveRowAtIndexPath": 2, + "numberOfSectionsInTableView": 3, + "NSIndexPath": 5, + "indexPathForRow": 11, + "inSection": 11, "HEADER_Z_POSITION": 2, "beginning": 1, "height": 19, @@ -47648,7 +48312,6 @@ "TUITableViewSection": 16, "*_tableView": 1, "*_headerView": 1, - "Not": 2, "reusable": 1, "similar": 1, "UITableView": 1, @@ -47746,7 +48409,6 @@ "negative": 1, "returned": 1, "param": 1, - "location": 3, "p": 3, "0": 2, "width": 1, @@ -47766,23 +48428,19 @@ "iteration...": 1, "rowCount": 3, "j": 5, - "stop": 4, "FALSE": 2, "...then": 1, "zero": 1, - "subsequent": 2, "iterations": 1, "_topVisibleIndexPath": 1, "*topVisibleIndex": 1, "sortedArrayUsingSelector": 1, - "compare": 4, "topVisibleIndex": 2, "setFrame": 2, "_tableFlags.forceSaveScrollPosition": 1, "setContentOffset": 2, "_tableFlags.didFirstLayout": 1, "prevent": 2, - "during": 4, "layout": 3, "pinned": 5, "isKindOfClass": 2, @@ -47812,7 +48470,6 @@ "visibleCellsNeedRelayout": 5, "remaining": 1, "cells": 7, - "needed": 3, "cell.frame": 1, "cell.layer.zPosition": 1, "visibleRect": 3, @@ -47827,7 +48484,6 @@ "newVisibleIndexPaths": 2, "*indexPathsToAdd": 1, "indexPathsToAdd": 2, - "don": 2, "newly": 1, "superview": 1, "bringSubviewToFront": 1, @@ -47845,7 +48501,6 @@ "_pullDownView.frame": 1, "self.delegate": 10, "recycle": 1, - "all": 3, "regenerated": 3, "layoutSubviews": 5, "because": 1, @@ -47865,19 +48520,15 @@ "_layoutSectionHeaders": 2, "_tableFlags.derepeaterEnabled": 1, "commit": 1, - "has": 6, "selected": 2, - "being": 4, "overlapped": 1, "r.size.height": 4, "headerFrame.size.height": 1, - "do": 5, "r.origin.y": 1, "v.size.height": 2, "scrollRectToVisible": 2, "sec": 3, "_makeRowAtIndexPathFirstResponder": 2, - "accept": 2, "responder": 2, "made": 1, "acceptsFirstResponder": 1, @@ -47890,7 +48541,6 @@ "setNeedsDisplay": 2, "selection": 3, "actually": 2, - "changes": 4, "NSResponder": 1, "*firstResponder": 1, "firstResponder": 3, @@ -47926,553 +48576,334 @@ "setMaintainContentOffsetAfterReload": 1, "newValue": 2, "indexPathWithIndexes": 1, - "indexAtPosition": 2, - "TTViewController": 1, - "": 1, - "": 1, - "Necessary": 1, - "background": 1, - "task": 1, - "__IPHONE_3_2": 2, - "__MAC_10_5": 2, - "__MAC_10_6": 2, - "_ASIAuthenticationState": 1, - "ASIHTTPAuthenticationNeeded": 1, - "ASIProxyAuthenticationNeeded": 1, - "_ASINetworkErrorType": 1, - "ASIConnectionFailureErrorType": 2, - "ASIInternalErrorWhileApplyingCredentialsType": 1, - "ASICompressionError": 1, - "ASINetworkErrorType": 1, - "ASIHeadersBlock": 3, - "*responseHeaders": 2, - "ASISizeBlock": 5, - "ASIProgressBlock": 5, - "total": 4, - "ASIDataBlock": 3, - "NSOperation": 1, - "": 1, - "operation": 2, - "include": 1, - "GET": 1, - "params": 1, - "query": 1, - "where": 1, - "appropriate": 4, - "*url": 2, - "Will": 7, - "contain": 4, - "original": 2, - "making": 1, - "change": 2, - "*originalURL": 2, - "Temporarily": 1, - "stores": 1, - "to.": 2, - "again": 1, - "notified": 2, - "various": 1, - "ASIHTTPRequestDelegate": 1, - "": 1, - "Another": 1, - "also": 1, - "status": 4, - "updates": 2, - "Generally": 1, - "likely": 1, - "sessionCookies": 2, - "*requestCookies": 2, - "populated": 1, - "useCookiePersistence": 3, - "network": 4, - "present": 3, - "successfully": 4, - "presented": 2, - "duration": 1, - "clearSession": 2, - "allowCompressedResponse": 3, - "inform": 1, - "compressed": 2, - "automatically": 2, - "decompress": 1, - "gzipped": 7, - "responses.": 1, - "Default": 10, - "true.": 1, - "gzipped.": 1, - "false.": 1, - "You": 1, - "enable": 1, - "feature": 1, - "your": 2, - "webserver": 1, - "work.": 1, - "Tested": 1, - "apache": 1, - "only.": 1, - "downloaded": 6, - "*downloadDestinationPath": 2, - "files": 5, - "Once": 2, - "decompressed": 3, - "moved": 2, - "*temporaryFileDownloadPath": 2, - "containing": 1, - "inflated": 6, - "comes": 3, - "*temporaryUncompressedDataDownloadPath": 2, - "fails": 2, - "completes": 6, - "occurs": 1, - "Connection": 1, - "failure": 1, - "occurred": 1, - "inspect": 1, - "Username": 2, - "*username": 2, - "*password": 2, - "User": 1, - "Agent": 1, - "*userAgentString": 2, - "Domain": 2, - "*domain": 2, - "*proxyUsername": 2, - "*proxyPassword": 2, - "*proxyDomain": 2, - "Delegate": 2, - "displaying": 2, - "usually": 2, - "supply": 2, - "handle": 4, - "yourself": 4, - "": 2, - "Whether": 1, - "hassle": 1, - "adding": 1, - "apps": 1, - "shouldPresentProxyAuthenticationDialog": 2, - "*proxyCredentials": 2, - "Basic": 2, - "*proxyAuthenticationScheme": 2, - "Realm": 1, - "eg": 2, - "OK": 1, - "etc": 1, - "Description": 1, - "Size": 3, - "partially": 1, - "POST": 2, - "payload": 1, - "Last": 2, - "incrementing": 2, - "prevents": 1, - "inopportune": 1, - "moment": 1, - "Called": 6, - "starts.": 1, - "didStartSelector": 2, - "receives": 3, - "headers.": 1, - "didReceiveResponseHeadersSelector": 2, - "Location": 1, - "shouldRedirect": 3, - "then": 1, - "restart": 1, - "calling": 1, - "redirectToURL": 2, - "simply": 1, - "willRedirectSelector": 2, - "successfully.": 1, - "didFinishSelector": 2, - "fails.": 1, - "didFailSelector": 2, - "data.": 1, - "implement": 1, - "populate": 1, - "didReceiveDataSelector": 2, - "recording": 1, - "something": 1, - "last": 1, - "happened": 1, - "Number": 1, - "seconds": 2, - "wait": 1, - "timing": 1, - "starts": 2, - "*mainRequest": 2, - "indicator": 4, - "according": 2, - "how": 2, - "much": 2, - "Also": 1, - "see": 1, - "comments": 1, - "ASINetworkQueue.h": 1, - "ensure": 1, - "incremented": 4, - "Prevents": 1, - "largely": 1, - "internally": 3, - "reflect": 1, - "internal": 2, - "PUT": 1, - "operations": 1, - "sizes": 1, - "greater": 1, - "unless": 2, - "been": 1, - "Likely": 1, - "OS": 1, - "X": 1, - "Leopard": 1, - "Text": 1, - "responses": 5, - "Content": 1, - "Type": 1, - "value.": 1, - "Defaults": 2, - "set.": 1, - "Tells": 1, - "delete": 1, - "partial": 2, - "downloads": 1, - "allows": 1, - "existing": 1, - "download.": 1, - "NO.": 1, - "allowResumeForFileDownloads": 2, - "Custom": 1, - "associated": 1, - "*userInfo": 2, - "tag": 2, - "defaults": 2, - "tell": 2, - "loop": 1, - "Incremented": 1, - "every": 3, - "redirects.": 1, - "reaches": 1, - "check": 1, - "secure": 1, - "certificate": 2, - "signed": 1, - "development": 1, - "DO": 1, - "NOT": 1, - "USE": 1, - "IN": 1, - "PRODUCTION": 1, - "*clientCertificates": 2, - "Details": 1, - "could": 1, - "best": 1, - "local": 1, - "*PACurl": 2, - "values": 3, - "above.": 1, - "No": 1, - "yet": 1, - "ASIHTTPRequests": 1, - "avoids": 1, - "extra": 1, - "round": 1, - "trip": 1, - "succeeded": 1, - "which": 1, - "efficient": 1, - "authenticated": 1, - "large": 1, - "bodies": 1, - "slower": 1, - "connections": 3, - "Set": 4, - "affects": 1, - "YES.": 1, - "Credentials": 1, - "never": 1, - "asks": 1, - "hasn": 1, - "doing": 1, - "anything": 1, - "expires": 1, - "yes": 1, - "alive": 1, - "Stores": 1, - "use.": 1, - "expire": 2, - "connection.": 2, - "These": 1, - "determine": 1, - "whether": 1, - "match": 1, - "An": 2, - "determining": 1, - "available": 1, - "reference": 1, - "one.": 1, - "closed": 1, - "either": 1, - "another": 1, - "fires": 1, - "automatic": 1, - "standard": 1, - "follow": 1, - "behaviour": 2, - "most": 1, - "browsers": 1, - "shouldUseRFC2616RedirectBehaviour": 2, - "record": 1, - "ID": 1, - "uniquely": 1, - "identifies": 1, - "primarily": 1, - "debugging": 1, - "synchronous": 1, - "checks": 1, - "setDefaultCache": 2, - "configure": 2, - "ASICacheDelegate.h": 2, - "storage": 2, - "ASICacheStoragePolicy": 2, - "cacheStoragePolicy": 2, - "pulled": 1, - "secondsToCache": 3, - "interval": 1, - "expiring": 1, - "UIBackgroundTaskIdentifier": 1, - "helper": 1, - "inflate": 2, - "*dataDecompressor": 2, - "Controls": 1, - "without": 1, - "raw": 3, - "discarded": 1, - "normal": 1, - "contents": 1, - "into": 1, - "Setting": 1, - "especially": 1, - "useful": 1, - "users": 1, - "conjunction": 1, - "streaming": 1, - "allow": 1, - "behind": 1, - "scenes": 1, - "https": 1, - "webservers": 1, - "asynchronously": 1, - "reading": 1, - "URLs": 2, - "storing": 1, - "startSynchronous.": 1, - "Currently": 1, - "detection": 2, - "synchronously": 1, - "//block": 12, - "execute": 4, - "handling": 4, - "redirections": 1, - "setStartedBlock": 1, - "aStartedBlock": 1, - "setHeadersReceivedBlock": 1, - "aReceivedBlock": 2, - "setCompletionBlock": 1, - "aCompletionBlock": 1, - "setFailedBlock": 1, - "aFailedBlock": 1, - "setBytesReceivedBlock": 1, - "aBytesReceivedBlock": 1, - "setBytesSentBlock": 1, - "aBytesSentBlock": 1, - "setDownloadSizeIncrementedBlock": 1, - "aDownloadSizeIncrementedBlock": 1, - "setUploadSizeIncrementedBlock": 1, - "anUploadSizeIncrementedBlock": 1, - "setDataReceivedBlock": 1, - "setAuthenticationNeededBlock": 1, - "anAuthenticationBlock": 1, - "setProxyAuthenticationNeededBlock": 1, - "aProxyAuthenticationBlock": 1, - "setRequestRedirectedBlock": 1, - "aRedirectBlock": 1, - "HEADRequest": 1, - "upload/download": 1, - "updateProgressIndicators": 1, - "removeUploadProgressSoFar": 1, - "incrementDownloadSizeBy": 1, - "caller": 1, - "talking": 1, - "requestReceivedResponseHeaders": 1, - "newHeaders": 1, - "retryUsingNewConnection": 1, - "stringEncoding": 1, - "contentType": 1, - "stuff": 1, - "applyCredentials": 1, - "findCredentials": 1, - "retryUsingSuppliedCredentials": 1, - "cancelAuthentication": 1, - "attemptToApplyCredentialsAndResume": 1, - "attemptToApplyProxyCredentialsAndResume": 1, - "showProxyAuthenticationDialog": 1, - "showAuthenticationDialog": 1, - "theUsername": 1, - "thePassword": 1, - "handlers": 1, - "handleBytesAvailable": 1, - "handleStreamComplete": 1, - "handleStreamError": 1, - "cleanup": 1, - "removeTemporaryDownloadFile": 1, - "removeTemporaryUncompressedDownloadFile": 1, - "removeTemporaryUploadFile": 1, - "removeTemporaryCompressedUploadFile": 1, - "removeFileAtPath": 1, - "connectionID": 1, - "expirePersistentConnections": 1, - "setDefaultTimeOutSeconds": 1, - "newTimeOutSeconds": 1, - "client": 1, - "setClientCertificateIdentity": 1, - "anIdentity": 1, - "sessionProxyCredentialsStore": 1, - "sessionCredentialsStore": 1, - "storeProxyAuthenticationCredentialsInSessionStore": 1, - "removeProxyAuthenticationCredentialsFromSessionStore": 1, - "findSessionProxyAuthenticationCredentials": 1, - "savedCredentialsForHost": 1, - "savedCredentialsForProxy": 1, - "removeCredentialsForHost": 1, - "removeCredentialsForProxy": 1, - "setSessionCookies": 1, - "newSessionCookies": 1, - "addSessionCookie": 1, - "NSHTTPCookie": 1, - "newCookie": 1, - "agent": 2, - "defaultUserAgentString": 1, - "setDefaultUserAgentString": 1, - "mime": 1, - "mimeTypeForFileAtPath": 1, - "measurement": 1, - "throttling": 1, - "setMaxBandwidthPerSecond": 1, - "incrementBandwidthUsedInLastSecond": 1, - "setShouldThrottleBandwidthForWWAN": 1, - "throttle": 1, - "throttleBandwidthForWWANUsingLimit": 1, - "limit": 1, - "reachability": 1, - "isNetworkReachableViaWWAN": 1, - "maxUploadReadLength": 1, - "activity": 1, - "isNetworkInUse": 1, - "setShouldUpdateNetworkActivityIndicator": 1, - "shouldUpdate": 1, - "showNetworkActivityIndicator": 1, - "hideNetworkActivityIndicator": 1, - "miscellany": 1, - "base64forData": 1, - "theData": 1, - "expiryDateForRequest": 1, - "maxAge": 2, - "dateFromRFC1123String": 1, - "threading": 1, - "*proxyHost": 1, - "*proxyType": 1, - "*requestHeaders": 1, - "*requestCredentials": 1, - "*rawResponseData": 1, - "*requestMethod": 1, - "*postBody": 1, - "*postBodyFilePath": 1, - "didCreateTemporaryPostDataFile": 1, - "*authenticationScheme": 1, - "shouldPresentAuthenticationDialog": 1, - "haveBuiltRequestHeaders": 1, - "": 1, - "": 1, - "": 1, - "__OBJC__": 4, - "": 1, - "": 1, - "__cplusplus": 2, - "NSINTEGER_DEFINED": 3, - "NS_BUILD_32_LIKE_64": 3, - "_JSONKIT_H_": 3, - "__APPLE_CC__": 2, - "JK_DEPRECATED_ATTRIBUTE": 6, - "deprecated": 1, - "JSONKIT_VERSION_MAJOR": 1, - "JSONKIT_VERSION_MINOR": 1, - "JKParseOptionNone": 1, - "JKParseOptionStrict": 1, - "JKParseOptionComments": 2, - "JKParseOptionUnicodeNewlines": 2, - "JKParseOptionLooseUnicode": 2, - "JKParseOptionPermitTextAfterValidJSON": 2, - "JKParseOptionValidFlags": 1, - "JKSerializeOptionNone": 3, - "JKSerializeOptionPretty": 2, - "JKSerializeOptionEscapeUnicode": 2, - "JKSerializeOptionEscapeForwardSlashes": 2, - "JKSerializeOptionValidFlags": 1, - "Opaque": 1, - "private": 1, - "decoder": 1, - "decoderWithParseOptions": 1, - "initWithParseOptions": 1, - "clearCache": 1, - "parseUTF8String": 2, - "Deprecated": 4, - "v1.4.": 4, - "objectWithUTF8String": 4, - "instead.": 4, - "parseJSONData": 2, - "jsonData": 6, - "mutableObjectWithUTF8String": 2, - "mutableObjectWithData": 2, - "////////////": 4, - "Deserializing": 1, - "methods": 2, - "JSONKitDeserializing": 2, - "objectFromJSONString": 1, - "objectFromJSONStringWithParseOptions": 2, - "mutableObjectFromJSONString": 1, - "mutableObjectFromJSONStringWithParseOptions": 2, - "objectFromJSONData": 1, - "objectFromJSONDataWithParseOptions": 2, - "mutableObjectFromJSONData": 1, - "mutableObjectFromJSONDataWithParseOptions": 2, - "Serializing": 1, - "JSONKitSerializing": 3, - "JSONData": 3, - "Invokes": 2, - "JSONDataWithOptions": 8, - "includeQuotes": 6, - "serializeOptions": 14, - "JSONString": 3, - "JSONStringWithOptions": 8, - "serializeUnsupportedClassesUsingDelegate": 4, - "__BLOCKS__": 1, - "JSONKitSerializingBlockAdditions": 2, - "serializeUnsupportedClassesUsingBlock": 4 + "indexAtPosition": 2 }, "Objective-C++": { + "#include": 26, + "": 1, + "": 1, + "#if": 10, + "(": 612, + "defined": 1, + "OBJC_API_VERSION": 2, + ")": 610, + "&&": 12, + "static": 16, + "inline": 3, + "IMP": 4, + "method_setImplementation": 2, + "Method": 2, + "m": 3, + "i": 29, + "{": 151, + "oi": 2, + "-": 175, + "method_imp": 2, + ";": 494, + "return": 149, + "}": 148, + "#endif": 19, + "namespace": 1, + "WebCore": 1, + "ENABLE": 10, + "DRAG_SUPPORT": 7, + "const": 16, + "double": 1, + "EventHandler": 30, + "TextDragDelay": 1, + "RetainPtr": 4, + "": 4, + "&": 21, + "currentNSEventSlot": 6, + "DEFINE_STATIC_LOCAL": 1, + "event": 30, + "NSEvent": 21, + "*EventHandler": 2, + "currentNSEvent": 13, + ".get": 1, + "class": 14, + "CurrentEventScope": 14, + "WTF_MAKE_NONCOPYABLE": 1, + "public": 1, + "*": 34, + "private": 1, + "m_savedCurrentEvent": 3, + "#ifndef": 3, + "NDEBUG": 2, + "m_event": 3, + "*event": 11, + "ASSERT": 13, + "bool": 26, + "wheelEvent": 5, + "Page*": 7, + "page": 33, + "m_frame": 24, + "if": 104, + "false": 40, + "scope": 6, + "PlatformWheelEvent": 2, + "chrome": 8, + "platformPageClient": 4, + "handleWheelEvent": 2, + "wheelEvent.isAccepted": 1, + "PassRefPtr": 2, + "": 1, + "currentKeyboardEvent": 1, + "[": 268, + "NSApp": 5, + "currentEvent": 2, + "]": 266, + "switch": 4, + "type": 10, + "case": 25, + "NSKeyDown": 4, + "PlatformKeyboardEvent": 6, + "platformEvent": 2, + "platformEvent.disambiguateKeyDownEvent": 1, + "RawKeyDown": 1, + "KeyboardEvent": 2, + "create": 3, + "document": 6, + "defaultView": 2, + "NSKeyUp": 3, + "default": 3, + "keyEvent": 2, + "BEGIN_BLOCK_OBJC_EXCEPTIONS": 13, + "||": 18, + "END_BLOCK_OBJC_EXCEPTIONS": 13, + "void": 18, + "focusDocumentView": 1, + "FrameView*": 7, + "frameView": 4, + "view": 28, + "NSView": 14, + "*documentView": 1, + "documentView": 2, + "focusNSView": 1, + "focusController": 1, + "setFocusedFrame": 1, + "passWidgetMouseDownEventToWidget": 3, + "MouseEventWithHitTestResults": 7, + "RenderObject*": 2, + "target": 6, + "targetNode": 3, + "renderer": 7, + "isWidget": 2, + "passMouseDownEventToWidget": 3, + "toRenderWidget": 3, + "widget": 18, + "RenderWidget*": 1, + "renderWidget": 2, + "lastEventIsMouseUp": 2, + "*currentEventAfterHandlingMouseDown": 1, + "currentEventAfterHandlingMouseDown": 3, + "NSLeftMouseUp": 3, + "timestamp": 8, + "Widget*": 3, + "pWidget": 2, + "RefPtr": 1, + "": 1, + "LOG_ERROR": 1, + "true": 29, + "platformWidget": 6, + "*nodeView": 1, + "nodeView": 9, + "superview": 5, + "*view": 4, + "hitTest": 2, + "convertPoint": 2, + "locationInWindow": 4, + "fromView": 3, + "nil": 25, + "client": 3, + "firstResponder": 1, + "clickCount": 8, + "<=>": 1, + "1": 1, + "acceptsFirstResponder": 1, + "needsPanelToBecomeKey": 1, + "makeFirstResponder": 1, + "wasDeferringLoading": 3, + "defersLoading": 1, + "setDefersLoading": 2, + "m_sendingEventToSubview": 24, + "*outerView": 1, + "getOuterView": 1, + "beforeMouseDown": 1, + "outerView": 2, + "widget.get": 2, + "mouseDown": 2, + "afterMouseDown": 1, + "m_mouseDownView": 5, + "m_mouseDownWasInSubframe": 7, + "m_mousePressed": 2, + "findViewInSubviews": 3, + "*superview": 1, + "*target": 1, + "NSEnumerator": 1, + "*e": 1, + "subviews": 1, + "objectEnumerator": 1, + "*subview": 1, + "while": 4, + "subview": 3, + "e": 1, + "nextObject": 1, + "mouseDownViewIfStillGood": 3, + "*mouseDownView": 1, + "mouseDownView": 3, + "topFrameView": 3, + "*topView": 1, + "topView": 2, + "eventLoopHandleMouseDragged": 1, + "mouseDragged": 2, + "//": 7, + "eventLoopHandleMouseUp": 1, + "mouseUp": 2, + "passSubframeEventToSubframe": 4, + "Frame*": 5, + "subframe": 13, + "HitTestResult*": 2, + "hoveredNode": 5, + "NSLeftMouseDragged": 1, + "NSOtherMouseDragged": 1, + "NSRightMouseDragged": 1, + "dragController": 1, + "didInitiateDrag": 1, + "NSMouseMoved": 2, + "eventHandler": 6, + "handleMouseMoveEvent": 3, + "currentPlatformMouseEvent": 8, + "NSLeftMouseDown": 3, + "Node*": 1, + "node": 3, + "isFrameView": 2, + "handleMouseReleaseEvent": 3, + "originalNSScrollViewScrollWheel": 4, + "_nsScrollViewScrollWheelShouldRetainSelf": 3, + "selfRetainingNSScrollViewScrollWheel": 3, + "NSScrollView": 2, + "SEL": 2, + "nsScrollViewScrollWheelShouldRetainSelf": 2, + "isMainThread": 3, + "setNSScrollViewScrollWheelShouldRetainSelf": 3, + "shouldRetain": 2, + "method": 2, + "class_getInstanceMethod": 1, + "objc_getRequiredClass": 1, + "@selector": 4, + "scrollWheel": 2, + "reinterpret_cast": 1, + "": 1, + "*self": 1, + "selector": 2, + "shouldRetainSelf": 3, + "self": 70, + "retain": 1, + "release": 1, + "passWheelEventToWidget": 1, + "NSView*": 1, + "static_cast": 1, + "": 1, + "frame": 3, + "NSScrollWheel": 1, + "v": 6, + "loader": 1, + "resetMultipleFormSubmissionProtection": 1, + "handleMousePressEvent": 2, + "int": 36, + "%": 2, + "handleMouseDoubleClickEvent": 1, + "else": 11, + "sendFakeEventsAfterWidgetTracking": 1, + "*initiatingEvent": 1, + "eventType": 5, + "initiatingEvent": 22, + "*fakeEvent": 1, + "fakeEvent": 6, + "mouseEventWithType": 2, + "location": 3, + "modifierFlags": 6, + "windowNumber": 6, + "context": 6, + "eventNumber": 3, + "pressure": 3, + "postEvent": 3, + "atStart": 3, + "YES": 6, + "keyEventWithType": 1, + "characters": 3, + "charactersIgnoringModifiers": 2, + "isARepeat": 2, + "keyCode": 2, + "window": 1, + "convertScreenToBase": 1, + "mouseLocation": 1, + "mouseMoved": 2, + "frameHasPlatformWidget": 4, + "passMousePressEventToSubframe": 1, + "mev": 6, + "mev.event": 3, + "passMouseMoveEventToSubframe": 1, + "m_mouseDownMayStartDrag": 1, + "passMouseReleaseEventToSubframe": 1, + "PlatformMouseEvent": 5, + "*windowView": 1, + "windowView": 2, + "CONTEXT_MENUS": 2, + "sendContextMenuEvent": 2, + "eventMayStartDrag": 2, + "eventActivatedView": 1, + "m_activationEventNumber": 1, + "event.eventNumber": 1, + "": 1, + "createDraggingClipboard": 1, + "NSPasteboard": 2, + "*pasteboard": 1, + "pasteboardWithName": 1, + "NSDragPboard": 1, + "pasteboard": 2, + "declareTypes": 1, + "NSArray": 3, + "array": 2, + "owner": 15, + "ClipboardMac": 1, + "Clipboard": 1, + "DragAndDrop": 1, + "ClipboardWritable": 1, + "tabsToAllFormControls": 1, + "KeyboardEvent*": 1, + "KeyboardUIMode": 1, + "keyboardUIMode": 5, + "handlingOptionTab": 4, + "isKeyboardOptionTab": 1, + "KeyboardAccessTabsToLinks": 2, + "KeyboardAccessFull": 1, + "needsKeyboardEventDisambiguationQuirks": 2, + "Document*": 1, + "applicationIsSafari": 1, + "url": 2, + ".protocolIs": 2, + "Settings*": 1, + "settings": 5, + "DASHBOARD_SUPPORT": 1, + "usesDashboardBackwardCompatibilityMode": 1, + "unsigned": 2, + "accessKeyModifiers": 1, + "AXObjectCache": 1, + "accessibilityEnhancedUserInterfaceEnabled": 1, + "CtrlKey": 2, + "|": 3, + "AltKey": 1, "#import": 3, "": 1, "": 1, - "#if": 10, "#ifdef": 6, "OODEBUG": 1, "#define": 1, "OODEBUG_SQL": 4, - "#endif": 19, "OOOODatabase": 1, "OODB": 1, - ";": 494, - "static": 16, "NSString": 25, "*kOOObject": 1, "@": 28, @@ -48488,20 +48919,12 @@ "records": 1, "@implementation": 7, "+": 55, - "(": 612, "id": 19, - ")": 610, "record": 18, "OO_AUTORETURNS": 2, - "{": 151, - "return": 149, "OO_AUTORELEASE": 3, - "[": 268, - "self": 70, "alloc": 11, - "]": 266, "init": 4, - "}": 148, "insert": 7, "*record": 4, "insertWithParent": 1, @@ -48510,22 +48933,17 @@ "sharedInstance": 37, "copyJoinKeysFrom": 1, "to": 6, - "-": 175, "delete": 4, - "void": 18, "update": 4, "indate": 4, "upsert": 4, - "int": 36, "commit": 6, "rollback": 5, "setNilValueForKey": 1, - "*": 34, "key": 2, "OOReference": 2, "": 1, "zeroForNull": 4, - "if": 104, "NSNumber": 4, "numberWithInt": 1, "setValue": 1, @@ -48533,16 +48951,13 @@ "OOArray": 16, "": 14, "select": 21, - "nil": 25, "intoClass": 11, "joinFrom": 10, "cOOString": 15, "sql": 21, "selectRecordsRelatedTo": 1, - "class": 14, "importFrom": 1, "OOFile": 4, - "&": 21, "file": 2, "delimiter": 4, "delim": 4, @@ -48557,17 +48972,14 @@ "export": 1, "bindToView": 1, "OOView": 2, - "view": 28, "delegate": 4, "bindRecord": 1, "toView": 1, "updateFromView": 1, "updateRecord": 1, - "fromView": 3, "description": 6, "*metaData": 14, "metaDataForClass": 3, - "//": 7, "hack": 1, "required": 2, "where": 1, @@ -48645,7 +49057,6 @@ "initWithFormat": 3, "arguments": 3, "va_end": 3, - "const": 16, "objects": 4, "deleteArray": 2, "object": 13, @@ -48672,12 +49083,9 @@ "<": 5, "superClass": 5, "class_getName": 4, - "while": 4, "class_getSuperclass": 1, "respondsToSelector": 2, - "@selector": 4, "ooTableSql": 1, - "else": 11, "tableMetaDataForClass": 8, "break": 6, "delay": 1, @@ -48713,7 +49121,6 @@ "format": 1, "string": 1, "escape": 1, - "characters": 3, "Any": 1, "results": 3, "returned": 1, @@ -48721,14 +49128,12 @@ "placed": 1, "as": 1, "an": 1, - "array": 2, "dictionary": 1, "results.": 1, "*/": 1, "errcode": 12, "OOString": 6, "stringForSql": 2, - "&&": 12, "*aColumnName": 1, "**results": 1, "allKeys": 1, @@ -48748,11 +49153,9 @@ "NSLog": 4, "*joinValues": 1, "*adaptor": 7, - "||": 18, "": 1, "tablesRelatedByNaturalJoinFrom": 1, "tablesWithNaturalJoin": 5, - "i": 29, "**tablesWithNaturalJoin": 1, "*childMetaData": 1, "tableMetaDataByClassName": 3, @@ -48790,7 +49193,6 @@ "quote": 2, "commaQuote": 2, "": 1, - "YES": 6, "commited": 2, "updateCount": 2, "transaction": 2, @@ -48800,7 +49202,6 @@ "*transaction": 1, "d": 2, "": 1, - "#ifndef": 3, "OO_ARC": 1, "boxed": 1, "valueForKey": 1, @@ -48814,7 +49215,6 @@ "indexes": 1, "idx": 2, "implements": 1, - "owner": 15, ".directory": 1, ".mkdir": 1, "sqlite3_open": 1, @@ -48850,9 +49250,6 @@ "length": 4, "*type": 1, "objCType": 1, - "type": 10, - "switch": 4, - "case": 25, "sqlite3_bind_int": 1, "intValue": 3, "sqlite3_bind_int64": 1, @@ -48873,7 +49270,6 @@ "initWithDouble": 1, "sqlite3_column_double": 1, "SQLITE_TEXT": 1, - "unsigned": 2, "*bytes": 2, "sqlite3_column_text": 1, "NSMutableString": 1, @@ -48881,7 +49277,6 @@ "sqlite3_column_bytes": 2, "SQLITE_BLOB": 1, "sqlite3_column_blob": 1, - "default": 3, "out": 4, "awakeFromDB": 4, "instancesRespondToSelector": 1, @@ -48909,7 +49304,6 @@ "q": 1, "Q": 1, "f": 1, - "%": 2, "_": 2, "tag": 1, "A": 2, @@ -48926,288 +49320,13 @@ "stringValue": 4, "charValue": 1, "shortValue": 1, - "NSArray": 3, "OOReplace": 2, "reformat": 4, - "|": 3, "NSDictionary": 2, "__IPHONE_OS_VERSION_MIN_REQUIRED": 1, "UISwitch": 2, "text": 1, - "self.on": 1, - "#include": 26, - "": 1, - "": 1, - "defined": 1, - "OBJC_API_VERSION": 2, - "inline": 3, - "IMP": 4, - "method_setImplementation": 2, - "Method": 2, - "m": 3, - "oi": 2, - "method_imp": 2, - "namespace": 1, - "WebCore": 1, - "ENABLE": 10, - "DRAG_SUPPORT": 7, - "double": 1, - "EventHandler": 30, - "TextDragDelay": 1, - "RetainPtr": 4, - "": 4, - "currentNSEventSlot": 6, - "DEFINE_STATIC_LOCAL": 1, - "event": 30, - "NSEvent": 21, - "*EventHandler": 2, - "currentNSEvent": 13, - ".get": 1, - "CurrentEventScope": 14, - "WTF_MAKE_NONCOPYABLE": 1, - "public": 1, - "private": 1, - "m_savedCurrentEvent": 3, - "NDEBUG": 2, - "m_event": 3, - "*event": 11, - "ASSERT": 13, - "bool": 26, - "wheelEvent": 5, - "Page*": 7, - "page": 33, - "m_frame": 24, - "false": 40, - "scope": 6, - "PlatformWheelEvent": 2, - "chrome": 8, - "platformPageClient": 4, - "handleWheelEvent": 2, - "wheelEvent.isAccepted": 1, - "PassRefPtr": 2, - "": 1, - "currentKeyboardEvent": 1, - "NSApp": 5, - "currentEvent": 2, - "NSKeyDown": 4, - "PlatformKeyboardEvent": 6, - "platformEvent": 2, - "platformEvent.disambiguateKeyDownEvent": 1, - "RawKeyDown": 1, - "KeyboardEvent": 2, - "create": 3, - "document": 6, - "defaultView": 2, - "NSKeyUp": 3, - "keyEvent": 2, - "BEGIN_BLOCK_OBJC_EXCEPTIONS": 13, - "END_BLOCK_OBJC_EXCEPTIONS": 13, - "focusDocumentView": 1, - "FrameView*": 7, - "frameView": 4, - "NSView": 14, - "*documentView": 1, - "documentView": 2, - "focusNSView": 1, - "focusController": 1, - "setFocusedFrame": 1, - "passWidgetMouseDownEventToWidget": 3, - "MouseEventWithHitTestResults": 7, - "RenderObject*": 2, - "target": 6, - "targetNode": 3, - "renderer": 7, - "isWidget": 2, - "passMouseDownEventToWidget": 3, - "toRenderWidget": 3, - "widget": 18, - "RenderWidget*": 1, - "renderWidget": 2, - "lastEventIsMouseUp": 2, - "*currentEventAfterHandlingMouseDown": 1, - "currentEventAfterHandlingMouseDown": 3, - "NSLeftMouseUp": 3, - "timestamp": 8, - "Widget*": 3, - "pWidget": 2, - "RefPtr": 1, - "": 1, - "LOG_ERROR": 1, - "true": 29, - "platformWidget": 6, - "*nodeView": 1, - "nodeView": 9, - "superview": 5, - "*view": 4, - "hitTest": 2, - "convertPoint": 2, - "locationInWindow": 4, - "client": 3, - "firstResponder": 1, - "clickCount": 8, - "<=>": 1, - "1": 1, - "acceptsFirstResponder": 1, - "needsPanelToBecomeKey": 1, - "makeFirstResponder": 1, - "wasDeferringLoading": 3, - "defersLoading": 1, - "setDefersLoading": 2, - "m_sendingEventToSubview": 24, - "*outerView": 1, - "getOuterView": 1, - "beforeMouseDown": 1, - "outerView": 2, - "widget.get": 2, - "mouseDown": 2, - "afterMouseDown": 1, - "m_mouseDownView": 5, - "m_mouseDownWasInSubframe": 7, - "m_mousePressed": 2, - "findViewInSubviews": 3, - "*superview": 1, - "*target": 1, - "NSEnumerator": 1, - "*e": 1, - "subviews": 1, - "objectEnumerator": 1, - "*subview": 1, - "subview": 3, - "e": 1, - "nextObject": 1, - "mouseDownViewIfStillGood": 3, - "*mouseDownView": 1, - "mouseDownView": 3, - "topFrameView": 3, - "*topView": 1, - "topView": 2, - "eventLoopHandleMouseDragged": 1, - "mouseDragged": 2, - "eventLoopHandleMouseUp": 1, - "mouseUp": 2, - "passSubframeEventToSubframe": 4, - "Frame*": 5, - "subframe": 13, - "HitTestResult*": 2, - "hoveredNode": 5, - "NSLeftMouseDragged": 1, - "NSOtherMouseDragged": 1, - "NSRightMouseDragged": 1, - "dragController": 1, - "didInitiateDrag": 1, - "NSMouseMoved": 2, - "eventHandler": 6, - "handleMouseMoveEvent": 3, - "currentPlatformMouseEvent": 8, - "NSLeftMouseDown": 3, - "Node*": 1, - "node": 3, - "isFrameView": 2, - "handleMouseReleaseEvent": 3, - "originalNSScrollViewScrollWheel": 4, - "_nsScrollViewScrollWheelShouldRetainSelf": 3, - "selfRetainingNSScrollViewScrollWheel": 3, - "NSScrollView": 2, - "SEL": 2, - "nsScrollViewScrollWheelShouldRetainSelf": 2, - "isMainThread": 3, - "setNSScrollViewScrollWheelShouldRetainSelf": 3, - "shouldRetain": 2, - "method": 2, - "class_getInstanceMethod": 1, - "objc_getRequiredClass": 1, - "scrollWheel": 2, - "reinterpret_cast": 1, - "": 1, - "*self": 1, - "selector": 2, - "shouldRetainSelf": 3, - "retain": 1, - "release": 1, - "passWheelEventToWidget": 1, - "NSView*": 1, - "static_cast": 1, - "": 1, - "frame": 3, - "NSScrollWheel": 1, - "v": 6, - "loader": 1, - "resetMultipleFormSubmissionProtection": 1, - "handleMousePressEvent": 2, - "handleMouseDoubleClickEvent": 1, - "sendFakeEventsAfterWidgetTracking": 1, - "*initiatingEvent": 1, - "eventType": 5, - "initiatingEvent": 22, - "*fakeEvent": 1, - "fakeEvent": 6, - "mouseEventWithType": 2, - "location": 3, - "modifierFlags": 6, - "windowNumber": 6, - "context": 6, - "eventNumber": 3, - "pressure": 3, - "postEvent": 3, - "atStart": 3, - "keyEventWithType": 1, - "charactersIgnoringModifiers": 2, - "isARepeat": 2, - "keyCode": 2, - "window": 1, - "convertScreenToBase": 1, - "mouseLocation": 1, - "mouseMoved": 2, - "frameHasPlatformWidget": 4, - "passMousePressEventToSubframe": 1, - "mev": 6, - "mev.event": 3, - "passMouseMoveEventToSubframe": 1, - "m_mouseDownMayStartDrag": 1, - "passMouseReleaseEventToSubframe": 1, - "PlatformMouseEvent": 5, - "*windowView": 1, - "windowView": 2, - "CONTEXT_MENUS": 2, - "sendContextMenuEvent": 2, - "eventMayStartDrag": 2, - "eventActivatedView": 1, - "m_activationEventNumber": 1, - "event.eventNumber": 1, - "": 1, - "createDraggingClipboard": 1, - "NSPasteboard": 2, - "*pasteboard": 1, - "pasteboardWithName": 1, - "NSDragPboard": 1, - "pasteboard": 2, - "declareTypes": 1, - "ClipboardMac": 1, - "Clipboard": 1, - "DragAndDrop": 1, - "ClipboardWritable": 1, - "tabsToAllFormControls": 1, - "KeyboardEvent*": 1, - "KeyboardUIMode": 1, - "keyboardUIMode": 5, - "handlingOptionTab": 4, - "isKeyboardOptionTab": 1, - "KeyboardAccessTabsToLinks": 2, - "KeyboardAccessFull": 1, - "needsKeyboardEventDisambiguationQuirks": 2, - "Document*": 1, - "applicationIsSafari": 1, - "url": 2, - ".protocolIs": 2, - "Settings*": 1, - "settings": 5, - "DASHBOARD_SUPPORT": 1, - "usesDashboardBackwardCompatibilityMode": 1, - "accessKeyModifiers": 1, - "AXObjectCache": 1, - "accessibilityEnhancedUserInterfaceEnabled": 1, - "CtrlKey": 2, - "AltKey": 1 + "self.on": 1 }, "Omgrofl": { "lol": 14, @@ -49295,89 +49414,22 @@ "*x": 1 }, "OpenEdge ABL": { - "DEFINE": 16, - "INPUT": 11, - "PARAMETER": 3, - "objSendEmailAlg": 2, - "AS": 21, - "email.SendEmailSocket": 1, - "NO": 13, - "-": 73, - "UNDO.": 12, - "VARIABLE": 12, - "vbuffer": 9, - "MEMPTR": 2, - "vstatus": 1, - "LOGICAL": 1, - "vState": 2, - "INTEGER": 6, - "ASSIGN": 2, - "vstate": 1, - "FUNCTION": 1, - "getHostname": 1, - "RETURNS": 1, - "CHARACTER": 9, - "(": 44, - ")": 44, - "cHostname": 1, - "THROUGH": 1, - "hostname": 1, - "ECHO.": 1, - "IMPORT": 1, - "UNFORMATTED": 1, - "cHostname.": 2, - "CLOSE.": 1, - "RETURN": 7, - "END": 12, - "FUNCTION.": 1, - "PROCEDURE": 2, - "newState": 2, - "INTEGER.": 1, - "pstring": 4, - "CHARACTER.": 1, - "newState.": 1, - "IF": 2, - "THEN": 2, - "RETURN.": 1, - "SET": 5, - "SIZE": 5, - "LENGTH": 3, - "+": 21, - "PUT": 1, - "STRING": 7, - "pstring.": 1, - "SELF": 4, - "WRITE": 1, - ".": 14, - "PROCEDURE.": 2, - "ReadSocketResponse": 1, - "vlength": 5, - "str": 3, - "v": 1, - "MESSAGE": 2, - "GET": 3, - "BYTES": 2, - "AVAILABLE": 2, - "VIEW": 1, - "ALERT": 1, - "BOX.": 1, - "DO": 2, - "READ": 1, - "handleResponse": 1, - "END.": 2, "USING": 3, "Progress.Lang.*.": 3, "CLASS": 2, "email.Email": 2, "USE": 2, + "-": 73, "WIDGET": 2, "POOL": 2, "&": 3, "SCOPED": 1, + "DEFINE": 16, "QUOTES": 1, "@#": 1, "%": 2, "*": 2, + "+": 21, "._MIME_BOUNDARY_.": 1, "#@": 1, "WIN": 1, @@ -49455,20 +49507,87 @@ "filename": 2, "ttAttachments.cFileName": 2, "cNewLine.": 1, + "RETURN": 7, "lcReturnData.": 1, + "END": 12, "METHOD.": 6, "METHOD": 6, "PUBLIC": 6, + "CHARACTER": 9, "send": 1, + "(": 44, + ")": 44, "objSendEmailAlgorithm": 1, "sendEmail": 2, + "INPUT": 11, "THIS": 1, "OBJECT": 2, + ".": 14, "CLASS.": 2, + "MESSAGE": 2, "INTERFACE": 1, "email.SendEmailAlgorithm": 1, "ipobjEmail": 1, + "AS": 21, "INTERFACE.": 1, + "PARAMETER": 3, + "objSendEmailAlg": 2, + "email.SendEmailSocket": 1, + "NO": 13, + "UNDO.": 12, + "VARIABLE": 12, + "vbuffer": 9, + "MEMPTR": 2, + "vstatus": 1, + "LOGICAL": 1, + "vState": 2, + "INTEGER": 6, + "ASSIGN": 2, + "vstate": 1, + "FUNCTION": 1, + "getHostname": 1, + "RETURNS": 1, + "cHostname": 1, + "THROUGH": 1, + "hostname": 1, + "ECHO.": 1, + "IMPORT": 1, + "UNFORMATTED": 1, + "cHostname.": 2, + "CLOSE.": 1, + "FUNCTION.": 1, + "PROCEDURE": 2, + "newState": 2, + "INTEGER.": 1, + "pstring": 4, + "CHARACTER.": 1, + "newState.": 1, + "IF": 2, + "THEN": 2, + "RETURN.": 1, + "SET": 5, + "SIZE": 5, + "LENGTH": 3, + "PUT": 1, + "STRING": 7, + "pstring.": 1, + "SELF": 4, + "WRITE": 1, + "PROCEDURE.": 2, + "ReadSocketResponse": 1, + "vlength": 5, + "str": 3, + "v": 1, + "GET": 3, + "BYTES": 2, + "AVAILABLE": 2, + "VIEW": 1, + "ALERT": 1, + "BOX.": 1, + "DO": 2, + "READ": 1, + "handleResponse": 1, + "END.": 2, "email.Util": 1, "FINAL": 1, "PRIVATE": 1, @@ -49714,12 +49833,171 @@ "it": 1 }, "Ox": { - "nldge": 1, - "ParticleLogLikeli": 1, + "#include": 2, + "Kapital": 4, "(": 119, + "L": 2, + "const": 4, + "N": 5, + "entrant": 8, + "exit": 2, + "KP": 14, ")": 119, "{": 22, + "StateVariable": 1, + ";": 91, + "this.entrant": 1, + "this.exit": 1, + "this.KP": 1, + "actual": 2, + "Kbar*vals/": 1, + "-": 31, + "upper": 3, + "log": 2, + ".Inf": 2, + "}": 22, + "Transit": 1, + "FeasA": 2, "decl": 3, + "ent": 5, + "CV": 7, + "stayout": 3, + "[": 25, + "]": 25, + "exit.pos": 1, + "tprob": 5, + "sigu": 2, + "SigU": 2, + "if": 5, + "v": 2, + "&&": 1, + "return": 10, + "<0>": 1, + "ones": 1, + "probn": 2, + "Kbe": 2, + "/sigu": 1, + "Kb0": 2, + "+": 14, + "Kb2": 2, + "*upper": 1, + "/": 1, + "vals": 1, + "tprob.*": 1, + "zeros": 4, + ".*stayout": 1, + "FirmEntry": 6, + "Run": 1, + "Initialize": 3, + "GenerateSample": 2, + "BDP": 2, + "BayesianDP": 1, + "Rust": 1, + "Reachable": 2, + "sige": 2, + "new": 19, + "StDeviations": 1, + "<0.3,0.3>": 1, + "LaggedAction": 1, + "d": 2, + "array": 1, + "Kparams": 1, + "Positive": 4, + "Free": 1, + "Kb1": 1, + "Determined": 1, + "EndogenousStates": 1, + "K": 3, + "KN": 1, + "SetDelta": 1, + "Probability": 1, + "kcoef": 3, + "ecost": 3, + "Negative": 1, + "CreateSpaces": 1, + "Volume": 3, + "LOUD": 1, + "EM": 4, + "ValueIteration": 1, + "//": 17, + "Solve": 1, + "data": 4, + "DataSet": 1, + "Simulate": 1, + "DataN": 1, + "DataT": 1, + "FALSE": 1, + "Print": 1, + "ImaiJainChing": 1, + "delta": 1, + "*CV": 2, + "Utility": 1, + "u": 2, + "ent*CV": 1, + "*AV": 1, + "|": 1, + "ParallelObjective": 1, + "obj": 18, + "DONOTUSECLIENT": 2, + "isclass": 1, + "obj.p2p": 2, + "oxwarning": 1, + "obj.L": 1, + "P2P": 2, + "ObjClient": 4, + "ObjServer": 7, + "this.obj": 2, + "Execute": 4, + "basetag": 2, + "STOP_TAG": 1, + "iml": 1, + "obj.NvfuncTerms": 2, + "Nparams": 6, + "obj.nstruct": 2, + "Loop": 2, + "nxtmsgsz": 2, + "//free": 1, + "param": 1, + "length": 1, + "is": 1, + "no": 2, + "greater": 1, + "than": 1, + "QUIET": 2, + "println": 2, + "ID": 2, + "Server": 1, + "Recv": 1, + "ANY_TAG": 1, + "//receive": 1, + "the": 1, + "ending": 1, + "parameter": 1, + "vector": 1, + "Encode": 3, + "Buffer": 8, + "//encode": 1, + "it.": 1, + "Decode": 1, + "obj.nfree": 1, + "obj.cur.V": 1, + "vfunc": 2, + "CstrServer": 3, + "SepServer": 3, + "Lagrangian": 1, + "rows": 1, + "obj.cur": 1, + "Vec": 1, + "obj.Kvar.v": 1, + "imod": 1, + "Tag": 1, + "obj.K": 1, + "TRUE": 1, + "obj.Kvar": 1, + "PDF": 1, + "*": 5, + "nldge": 1, + "ParticleLogLikeli": 1, "it": 5, "ip": 1, "mss": 3, @@ -49747,24 +50025,19 @@ "timefun": 1, "timeint": 1, "timeres": 1, - ";": 91, "GetData": 1, "m_asY": 1, "sqrt": 1, "*M_PI": 1, "m_cY": 1, - "*": 5, "determinant": 2, "m_mMSbE.": 2, - "//": 17, "covariance": 2, "invert": 2, "of": 2, "measurement": 1, "shocks": 1, "m_vSss": 1, - "+": 14, - "zeros": 4, "m_cPar": 4, "m_cS": 1, "start": 1, @@ -49798,9 +50071,6 @@ "evaluate": 1, "importance": 1, "weights": 2, - "-": 31, - "[": 25, - "]": 25, "observation": 1, "error": 1, "exp": 2, @@ -49811,19 +50081,14 @@ ".*my": 1, ".": 3, ".NaN": 1, - "no": 2, "can": 1, "happen": 1, "extrem": 1, "sumc": 1, - "if": 5, - "return": 10, - ".Inf": 2, "or": 1, "extremely": 1, "wrong": 1, "parameters": 1, - "log": 2, "dws/m_cPar": 1, "loglikelihood": 1, "contribution": 1, @@ -49837,153 +50102,7 @@ "in": 1, "c": 1, "on": 1, - "normalized": 1, - "}": 22, - "#include": 2, - "ParallelObjective": 1, - "obj": 18, - "DONOTUSECLIENT": 2, - "isclass": 1, - "obj.p2p": 2, - "oxwarning": 1, - "obj.L": 1, - "new": 19, - "P2P": 2, - "ObjClient": 4, - "ObjServer": 7, - "this.obj": 2, - "Execute": 4, - "basetag": 2, - "STOP_TAG": 1, - "iml": 1, - "obj.NvfuncTerms": 2, - "Nparams": 6, - "obj.nstruct": 2, - "Loop": 2, - "nxtmsgsz": 2, - "//free": 1, - "param": 1, - "length": 1, - "is": 1, - "greater": 1, - "than": 1, - "Volume": 3, - "QUIET": 2, - "println": 2, - "ID": 2, - "Server": 1, - "Recv": 1, - "ANY_TAG": 1, - "//receive": 1, - "the": 1, - "ending": 1, - "parameter": 1, - "vector": 1, - "Encode": 3, - "Buffer": 8, - "//encode": 1, - "it.": 1, - "Decode": 1, - "obj.nfree": 1, - "obj.cur.V": 1, - "vfunc": 2, - "CstrServer": 3, - "SepServer": 3, - "Lagrangian": 1, - "rows": 1, - "obj.cur": 1, - "Vec": 1, - "obj.Kvar.v": 1, - "imod": 1, - "Tag": 1, - "obj.K": 1, - "TRUE": 1, - "obj.Kvar": 1, - "PDF": 1, - "Kapital": 4, - "L": 2, - "const": 4, - "N": 5, - "entrant": 8, - "exit": 2, - "KP": 14, - "StateVariable": 1, - "this.entrant": 1, - "this.exit": 1, - "this.KP": 1, - "actual": 2, - "Kbar*vals/": 1, - "upper": 3, - "Transit": 1, - "FeasA": 2, - "ent": 5, - "CV": 7, - "stayout": 3, - "exit.pos": 1, - "tprob": 5, - "sigu": 2, - "SigU": 2, - "v": 2, - "&&": 1, - "<0>": 1, - "ones": 1, - "probn": 2, - "Kbe": 2, - "/sigu": 1, - "Kb0": 2, - "Kb2": 2, - "*upper": 1, - "/": 1, - "vals": 1, - "tprob.*": 1, - ".*stayout": 1, - "FirmEntry": 6, - "Run": 1, - "Initialize": 3, - "GenerateSample": 2, - "BDP": 2, - "BayesianDP": 1, - "Rust": 1, - "Reachable": 2, - "sige": 2, - "StDeviations": 1, - "<0.3,0.3>": 1, - "LaggedAction": 1, - "d": 2, - "array": 1, - "Kparams": 1, - "Positive": 4, - "Free": 1, - "Kb1": 1, - "Determined": 1, - "EndogenousStates": 1, - "K": 3, - "KN": 1, - "SetDelta": 1, - "Probability": 1, - "kcoef": 3, - "ecost": 3, - "Negative": 1, - "CreateSpaces": 1, - "LOUD": 1, - "EM": 4, - "ValueIteration": 1, - "Solve": 1, - "data": 4, - "DataSet": 1, - "Simulate": 1, - "DataN": 1, - "DataT": 1, - "FALSE": 1, - "Print": 1, - "ImaiJainChing": 1, - "delta": 1, - "*CV": 2, - "Utility": 1, - "u": 2, - "ent*CV": 1, - "*AV": 1, - "|": 1 + "normalized": 1 }, "Oxygene": { "": 1, @@ -50506,6 +50625,92 @@ "value": 53, "asort": 1, "array_keys": 7, + "BrowserKit": 1, + "DomCrawler": 5, + "Crawler": 2, + "Link": 3, + "Form": 4, + "Process": 1, + "PhpProcess": 2, + "abstract": 2, + "Client": 1, + "history": 15, + "cookieJar": 9, + "server": 20, + "request": 76, + "response": 33, + "crawler": 7, + "insulated": 7, + "redirect": 6, + "followRedirects": 5, + "History": 2, + "CookieJar": 2, + "setServerParameters": 2, + "followRedirect": 4, + "insulate": 1, + "class_exists": 2, + "RuntimeException": 2, + "array_merge": 32, + "setServerParameter": 1, + "getServerParameter": 1, + "default": 9, + "getHistory": 1, + "getCookieJar": 1, + "getCrawler": 1, + "getResponse": 1, + "getRequest": 1, + "click": 1, + "link": 10, + "submit": 2, + "getMethod": 6, + "getUri": 8, + "form": 7, + "setValues": 2, + "getPhpValues": 2, + "getPhpFiles": 2, + "method": 31, + "uri": 23, + "parameters": 4, + "files": 7, + "content": 4, + "changeHistory": 4, + "getAbsoluteUri": 2, + "isEmpty": 2, + "current": 4, + "parse_url": 3, + "PHP_URL_HOST": 1, + "PHP_URL_SCHEME": 1, + "Request": 3, + "allValues": 1, + "filterRequest": 2, + "doRequestInProcess": 2, + "doRequest": 2, + "filterResponse": 2, + "updateFromResponse": 1, + "getHeader": 2, + "createCrawlerFromContent": 2, + "getContent": 2, + "getScript": 2, + "sys_get_temp_dir": 2, + "isSuccessful": 1, + "getOutput": 3, + "unserialize": 1, + "LogicException": 4, + "addContent": 1, + "back": 2, + "requestFromRequest": 4, + "forward": 2, + "reload": 1, + "empty": 96, + "restart": 1, + "clear": 2, + "currentUri": 7, + "path": 20, + "PHP_URL_PATH": 1, + "path.": 1, + "getParameters": 1, + "getFiles": 3, + "getServer": 1, "": 3, "CakePHP": 6, "tm": 6, @@ -50530,14 +50735,12 @@ "License": 4, "Redistributions": 2, "of": 10, - "files": 7, "must": 2, "retain": 2, "the": 11, "above": 2, "copyright": 5, "notice": 2, - "link": 10, "Project": 2, "package": 2, "Controller": 4, @@ -50617,8 +50820,6 @@ "You": 2, "can": 2, "access": 1, - "request": 76, - "parameters": 4, "using": 2, "contains": 1, "POST": 1, @@ -50637,7 +50838,6 @@ "This": 1, "usually": 1, "takes": 1, - "form": 7, "generated": 1, "possibly": 1, "to": 6, @@ -50646,7 +50846,6 @@ "In": 1, "either": 1, "case": 31, - "response": 33, "allows": 1, "you": 1, "manipulate": 1, @@ -50657,7 +50856,6 @@ "based": 2, "routing.": 1, "By": 1, - "default": 9, "conventional": 1, "names.": 1, "/posts/index": 1, @@ -50738,11 +50936,8 @@ "settings": 2, "__set": 1, "camelize": 3, - "array_merge": 32, "array_key_exists": 11, - "empty": 96, "invokeAction": 1, - "method": 31, "ReflectionMethod": 2, "_isPrivateAction": 2, "PrivateActionException": 1, @@ -50770,7 +50965,6 @@ "implementedEvents": 2, "constructClasses": 1, "init": 4, - "current": 4, "getEventManager": 13, "attach": 4, "startupProcess": 1, @@ -50780,7 +50974,6 @@ "code": 4, "id": 82, "MissingModelException": 1, - "redirect": 6, "url": 18, "status": 15, "extract": 9, @@ -50861,82 +51054,97 @@ "_afterScaffoldSaveError": 1, "scaffoldError": 2, "_scaffoldError": 1, + "php_help": 1, + "arg": 1, + "t": 26, + "php_permission": 1, + "TRUE": 1, + "php_eval": 1, + "global": 2, + "theme_path": 5, + "theme_info": 3, + "conf": 2, + "old_theme_path": 2, + "drupal_get_path": 1, + "dirname": 1, + "filename": 1, + "ob_start": 1, + "print": 1, + "eval": 1, + "ob_get_contents": 1, + "ob_end_clean": 1, + "_php_filter_tips": 1, + "filter": 1, + "format": 3, + "long": 2, + "FALSE": 2, + "base_url": 1, + "php_filter_info": 1, + "filters": 2, "SHEBANG#!php": 4, - "echo": 2, - "BrowserKit": 1, - "DomCrawler": 5, - "Crawler": 2, - "Link": 3, - "Form": 4, - "Process": 1, - "PhpProcess": 2, - "abstract": 2, - "Client": 1, - "history": 15, - "cookieJar": 9, - "server": 20, - "crawler": 7, - "insulated": 7, - "followRedirects": 5, - "History": 2, - "CookieJar": 2, - "setServerParameters": 2, - "followRedirect": 4, - "insulate": 1, - "class_exists": 2, - "RuntimeException": 2, - "setServerParameter": 1, - "getServerParameter": 1, - "getHistory": 1, - "getCookieJar": 1, - "getCrawler": 1, - "getResponse": 1, - "getRequest": 1, - "click": 1, - "submit": 2, - "getMethod": 6, - "getUri": 8, - "setValues": 2, - "getPhpValues": 2, - "getPhpFiles": 2, - "uri": 23, - "content": 4, - "changeHistory": 4, - "getAbsoluteUri": 2, - "isEmpty": 2, - "parse_url": 3, - "PHP_URL_HOST": 1, - "PHP_URL_SCHEME": 1, - "Request": 3, - "allValues": 1, - "filterRequest": 2, - "doRequestInProcess": 2, - "doRequest": 2, - "filterResponse": 2, - "updateFromResponse": 1, - "getHeader": 2, - "createCrawlerFromContent": 2, - "getContent": 2, - "getScript": 2, - "sys_get_temp_dir": 2, - "isSuccessful": 1, - "getOutput": 3, - "unserialize": 1, - "LogicException": 4, - "addContent": 1, - "back": 2, - "requestFromRequest": 4, - "forward": 2, - "reload": 1, - "restart": 1, - "clear": 2, - "currentUri": 7, - "path": 20, - "PHP_URL_PATH": 1, - "path.": 1, - "getParameters": 1, - "getFiles": 3, - "getServer": 1, + "": 1, + "aMenuLinks": 1, + "Array": 13, + "Blog": 1, + "SITE_DIR": 4, + "Photos": 1, + "photo": 1, + "About": 1, + "me": 1, + "about": 1, + "Contact": 1, + "contacts": 1, + "Field": 9, + "FormField": 3, + "ArrayAccess": 1, + "button": 6, + "DOMNode": 3, + "initialize": 2, + "getFormNode": 1, + "getValues": 3, + "isDisabled": 2, + "FileFormField": 3, + "hasValue": 1, + "getValue": 2, + "qs": 4, + "http_build_query": 3, + "parse_str": 2, + "queryString": 2, + "sep": 1, + "sep.": 1, + "getRawUri": 1, + "getAttribute": 10, + "remove": 4, + "offsetExists": 1, + "offsetGet": 1, + "offsetSet": 1, + "offsetUnset": 1, + "setNode": 1, + "nodeName": 13, + "parentNode": 1, + "FormFieldRegistry": 2, + "document": 6, + "root": 4, + "xpath": 2, + "DOMXPath": 1, + "query": 102, + "hasAttribute": 1, + "InputFormField": 2, + "ChoiceFormField": 2, + "addChoice": 1, + "TextareaFormField": 1, + "base": 8, + "segments": 13, + "getSegments": 4, + "target": 20, + "array_shift": 5, + "self": 1, + "create": 13, + "k": 7, + "setValue": 1, + "walk": 3, + "registry": 4, + "m": 5, "relational": 2, "mapper": 2, "DBO": 2, @@ -51009,8 +51217,6 @@ "__call": 1, "dispatchMethod": 1, "getDataSource": 15, - "query": 102, - "k": 7, "relation": 7, "assocKey": 13, "dynamic": 2, @@ -51039,7 +51245,6 @@ "MissingTableException": 1, "is_object": 2, "SimpleXMLElement": 1, - "DOMNode": 3, "_normalizeXmlData": 3, "toArray": 1, "reverse": 1, @@ -51056,7 +51261,6 @@ "timeFields": 2, "date": 9, "val": 27, - "format": 3, "columns": 5, "str_replace": 3, "describe": 1, @@ -51072,13 +51276,11 @@ "isVirtualField": 3, "hasMethod": 2, "getVirtualField": 1, - "create": 13, "filterKey": 2, "defaults": 6, "properties": 4, "read": 2, "conditions": 41, - "array_shift": 5, "saveField": 1, "options": 85, "save": 9, @@ -51186,90 +51388,7 @@ "isUnique": 1, "is_bool": 1, "sql": 1, - "php_help": 1, - "arg": 1, - "t": 26, - "php_permission": 1, - "TRUE": 1, - "php_eval": 1, - "global": 2, - "theme_path": 5, - "theme_info": 3, - "conf": 2, - "old_theme_path": 2, - "drupal_get_path": 1, - "dirname": 1, - "filename": 1, - "ob_start": 1, - "print": 1, - "eval": 1, - "ob_get_contents": 1, - "ob_end_clean": 1, - "_php_filter_tips": 1, - "filter": 1, - "long": 2, - "FALSE": 2, - "base_url": 1, - "php_filter_info": 1, - "filters": 2, - "Field": 9, - "FormField": 3, - "ArrayAccess": 1, - "button": 6, - "initialize": 2, - "getFormNode": 1, - "getValues": 3, - "isDisabled": 2, - "FileFormField": 3, - "hasValue": 1, - "getValue": 2, - "qs": 4, - "http_build_query": 3, - "parse_str": 2, - "queryString": 2, - "sep": 1, - "sep.": 1, - "getRawUri": 1, - "getAttribute": 10, - "remove": 4, - "offsetExists": 1, - "offsetGet": 1, - "offsetSet": 1, - "offsetUnset": 1, - "setNode": 1, - "nodeName": 13, - "parentNode": 1, - "FormFieldRegistry": 2, - "document": 6, - "root": 4, - "xpath": 2, - "DOMXPath": 1, - "hasAttribute": 1, - "InputFormField": 2, - "ChoiceFormField": 2, - "addChoice": 1, - "TextareaFormField": 1, - "base": 8, - "segments": 13, - "getSegments": 4, - "target": 20, - "self": 1, - "setValue": 1, - "walk": 3, - "registry": 4, - "m": 5, - "": 1, - "aMenuLinks": 1, - "Array": 13, - "Blog": 1, - "SITE_DIR": 4, - "Photos": 1, - "photo": 1, - "About": 1, - "me": 1, - "about": 1, - "Contact": 1, - "contacts": 1, + "echo": 2, "Yii": 3, "console": 3, "bootstrap": 1, @@ -51398,704 +51517,38 @@ "end.": 1 }, "Perl": { - "pod": 1, - "head1": 36, - "NAME": 6, - "Catalyst": 10, - "PSGI": 10, - "-": 868, - "How": 1, - "and": 85, - "work": 3, - "together": 2, - "SYNOPSIS": 6, - "The": 22, - "L": 34, - "": 3, - "specification": 3, - "defines": 2, - "an": 16, - "interface": 1, - "between": 4, - "web": 8, - "servers": 2, - "Perl": 9, - "based": 2, - "applications": 2, - "frameworks.": 1, - "It": 3, - "supports": 1, - "the": 143, - "writing": 1, - "of": 64, - "portable": 1, - "that": 33, - "can": 30, - "be": 36, - "run": 1, - "using": 5, - "various": 2, - "methods": 4, - "(": 925, - "as": 37, - "a": 85, - "standalone": 1, - "server": 2, - "or": 49, - "mod_perl": 3, - "FastCGI": 2, - "etc.": 3, - ")": 923, - ".": 125, - "": 3, - "is": 69, - "implementation": 1, - "for": 83, - "running": 1, - "applications.": 1, - "used": 12, - "to": 95, - "contain": 3, - "entire": 3, - "set": 12, - "C": 56, - "<<": 10, - "Engine": 1, - "XXXX": 1, - "classes": 2, - "handle": 3, - "environments": 1, - "e.g.": 2, - "CGI": 6, - "This": 27, - "has": 3, - "been": 1, - "changed": 1, - "in": 36, - "so": 4, - "all": 23, - "done": 2, - "by": 16, - "implementing": 1, - "s": 35, - "possible": 2, - "do": 12, - "it": 28, - "manually": 2, - "creating": 3, - "": 1, - "file": 49, - "root": 1, - "your": 20, - "application.": 1, - "head2": 34, - "Why": 3, - "would": 5, - "I": 68, - "want": 7, - "write": 2, - "my": 404, - "own": 4, - ".psgi": 7, - "Writing": 2, - "allows": 4, - "you": 44, - "use": 83, - "alternate": 1, - "": 1, - "command": 14, - "start": 7, - "application": 15, - "add": 9, - "extensions": 1, - "implement": 2, - "": 1, - "such": 6, - "": 1, - "": 1, - "simplest": 1, - "<.psgi>": 1, - "called": 4, - "": 1, - "strict": 18, - ";": 1193, - "warnings": 18, - "TestApp": 5, - "app": 2, - "psgi_app": 3, - "@_": 43, - "Note": 5, - "will": 9, - "apply": 3, - "number": 4, - "middleware": 2, - "components": 2, - "automatically": 2, - "these": 4, - "B": 76, - "": 1, - "not": 54, - "applied": 1, - "if": 276, - "create": 3, - "psgi": 2, - "yourself.": 2, - "Details": 1, - "found": 11, - "below.": 1, - "Additional": 1, - "information": 2, - "about": 4, - "files": 42, - "at": 4, - "": 1, - "What": 1, - "generates": 2, - "default": 19, - "which": 7, - "": 1, - "setting": 2, - "on": 25, - "wrapped": 1, - "": 1, - "contains": 2, - "some": 1, - "engine": 1, - "specific": 2, - "fixes": 1, - "uniform": 1, - "behaviour": 2, - "contained": 1, - "over": 2, - "item": 44, - "": 1, - "": 1, - "back": 4, - "If": 15, - "override": 1, - "providing": 2, - "then": 4, - "none": 1, - "things": 2, - "returned": 3, - "when": 18, - "call": 2, - "MyApp": 1, - "Thus": 1, - "need": 5, - "any": 4, - "this": 22, - "functionality": 1, - "ll": 1, - "An": 1, - "apply_default_middlewares": 2, - "method": 8, - "supplied": 1, - "wrap": 1, - "middlewares": 1, - "are": 25, - "file.": 3, - "means": 3, - "auto": 1, - "generated": 1, - "no": 22, - "code": 8, - "looks": 2, - "something": 3, - "like": 13, - "SEE": 4, - "ALSO": 4, - "": 1, - "": 1, - "AUTHORS": 2, - "Contributors": 1, - "see": 5, - "Catalyst.pm": 1, - "COPYRIGHT": 7, - "library": 2, - "free": 4, - "software.": 1, - "You": 4, - "redistribute": 4, - "and/or": 4, - "modify": 4, - "under": 5, - "same": 2, - "terms": 4, - "itself.": 3, - "cut": 28, "package": 14, - "Plack": 25, - "Request": 11, - "_001": 1, - "our": 34, - "VERSION": 15, - "eval": 8, - "HTTP": 16, - "Headers": 8, - "Carp": 11, - "Hash": 11, - "MultiValue": 9, - "Body": 2, - "Upload": 2, - "TempBuffer": 2, - "URI": 11, - "Escape": 6, - "sub": 225, - "_deprecated": 8, - "{": 1121, - "alt": 1, - "shift": 165, - "caller": 2, - "[": 159, - "]": 155, - "carp": 2, - "}": 1134, - "new": 55, - "class": 8, - "env": 76, - "croak": 3, - "q": 5, - "required": 2, - "unless": 39, - "defined": 54, - "&&": 83, - "ref": 33, - "eq": 31, - "bless": 7, - "_": 101, - "address": 2, - "REMOTE_ADDR": 1, - "remote_host": 2, - "REMOTE_HOST": 1, - "protocol": 1, - "SERVER_PROTOCOL": 1, - "REQUEST_METHOD": 1, - "port": 1, - "SERVER_PORT": 2, - "user": 4, - "REMOTE_USER": 1, - "request_uri": 1, - "REQUEST_URI": 2, - "path_info": 4, - "PATH_INFO": 3, - "path": 28, - "||": 49, - "script_name": 1, - "SCRIPT_NAME": 2, - "scheme": 3, - "secure": 2, - "body": 30, - "input": 9, - "content_length": 4, - "CONTENT_LENGTH": 3, - "content_type": 5, - "CONTENT_TYPE": 2, - "session": 1, - "session_options": 1, - "logger": 1, - "cookies": 9, - "self": 141, - "return": 157, - "HTTP_COOKIE": 3, - "%": 78, - "results": 8, - "@pairs": 2, - "grep": 17, - "/": 69, - "split": 13, - "pair": 4, - "s/": 22, - "+": 120, - "//": 9, - "key": 20, - "value": 12, - "map": 10, - "uri_unescape": 1, - "exists": 19, - "query_parameters": 3, - "uri": 11, - "query_form": 2, - "content": 8, - "_parse_request_body": 4, - "fh": 28, - "cl": 10, - "read": 6, - "seek": 4, - "raw_body": 1, - "headers": 56, - "field": 2, - "HTTPS": 1, - "_//": 1, - "|": 28, - "CONTENT": 1, - "COOKIE": 1, - "/i": 2, - "keys": 15, - "content_encoding": 5, - "header": 17, - "referer": 3, - "user_agent": 3, - "body_parameters": 3, - "parameters": 8, - "query": 4, - "flatten": 3, - "uploads": 5, - "hostname": 1, - "url_scheme": 1, - "params": 1, - "query_params": 1, - "body_params": 1, - "cookie": 6, - "name": 44, - "param": 8, - "wantarray": 3, - "get_all": 2, - "upload": 13, - "raw_uri": 1, - "base": 10, - "path_query": 1, - "_uri_base": 3, - "path_escape_class": 2, - "uri_escape": 3, - "QUERY_STRING": 3, - "ne": 9, - "m": 17, - "canonical": 2, - "HTTP_HOST": 1, - "SERVER_NAME": 1, - "new_response": 4, - "require": 12, - "Response": 16, - "ct": 3, - "cleanup": 1, - "buffer": 9, - "else": 53, - "spin": 2, - "while": 31, - "chunk": 4, - "<": 15, - "length": 1, - "print": 35, - "rewind": 1, - "from_mixed": 2, - "@uploads": 3, - "@obj": 3, - "k": 6, - "v": 19, - "splice": 2, - "push": 30, - "_make_upload": 2, - "copy": 4, - "__END__": 2, - "Portable": 2, - "request": 11, - "object": 6, - "from": 19, - "hash": 11, - "app_or_middleware": 1, - "#": 99, - "req": 28, - "res": 59, - "finalize": 5, - "DESCRIPTION": 4, - "": 2, - "provides": 1, - "consistent": 1, - "API": 2, - "objects": 2, - "across": 1, - "environments.": 1, - "CAVEAT": 1, - "module": 2, - "intended": 1, - "developers": 3, - "framework": 2, - "rather": 2, - "than": 5, - "end": 9, - "users": 4, - "directly": 1, - "certainly": 2, - "but": 4, - "recommended": 1, - "Apache": 2, - "yet": 1, - "too": 1, - "low": 1, - "level.": 1, - "re": 3, - "encouraged": 1, - "one": 9, - "frameworks": 2, - "support": 2, - "": 1, - "modules": 1, - "": 1, - "provide": 1, - "higher": 1, - "level": 1, - "top": 1, - "PSGI.": 1, - "METHODS": 2, - "Some": 1, - "earlier": 1, - "versions": 1, - "deprecated": 1, - "version": 2, - "Take": 1, - "look": 2, - "": 1, - "Unless": 1, - "otherwise": 2, - "noted": 1, - "attributes": 4, - "": 1, - "passing": 1, - "values": 5, - "accessor": 1, - "doesn": 8, - "debug": 1, - "set.": 1, - "Returns": 10, - "": 2, - "containing": 5, - "current": 5, - "request.": 1, - "reference": 8, - "uploads.": 2, - "": 2, - "": 1, - "objects.": 1, - "Shortcut": 6, - "content_encoding.": 1, - "content_length.": 1, - "content_type.": 1, - "header.": 2, - "referer.": 1, - "user_agent.": 1, - "GET": 1, - "POST": 1, - "with": 26, - "CGI.pm": 2, - "compatible": 1, - "method.": 1, - "alternative": 1, - "accessing": 1, - "parameters.": 3, - "Unlike": 1, - "does": 10, - "": 1, - "allow": 1, - "modifying": 1, - "@values": 1, - "@params": 1, - "A": 2, - "convenient": 1, - "access": 2, - "@fields": 1, - "filename": 68, - "Creates": 2, - "": 3, - "object.": 4, - "Handy": 1, - "remove": 2, - "dependency": 1, - "easy": 1, - "subclassing": 1, - "duck": 1, - "typing": 1, - "well": 2, - "overriding": 1, - "generation": 1, - "middlewares.": 1, - "Parameters": 1, - "take": 5, - "multiple": 5, - "i.e.": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "store": 1, - "plain": 2, - "where": 3, - "": 1, - "scalars": 1, - "": 2, - "array": 7, - "references": 1, - "don": 2, - "ARRAY": 1, - "foo": 6, - "t": 18, - "parse": 1, - "more": 2, - "twice": 1, - "efficiency.": 1, - "DISPATCHING": 1, - "wants": 1, - "dispatch": 1, - "route": 1, - "actions": 1, - "paths": 3, - "sure": 1, - "because": 3, - "": 1, - "gives": 2, - "virtual": 1, - "regardless": 1, - "how": 1, - "mounted.": 1, - "hosted": 1, - "scripts": 1, - "even": 4, - "multiplexed": 1, - "tools": 1, - "": 1, - "good": 2, - "idea": 1, - "subclass": 1, - "define": 1, - "uri_for": 2, - "args": 3, - "@": 38, - "So": 1, - "say": 1, - "link": 1, - "signoff": 1, - "": 1, - "empty.": 1, - "older": 1, - "behavior": 3, - "just": 2, - "instead.": 1, - "Cookie": 2, - "handling": 1, - "simplified": 1, - "always": 5, - "string": 5, - "encoding": 2, - "decoding": 1, - "them": 5, - "totally": 1, - "up": 1, - "framework.": 1, - "Also": 1, - "": 1, - "now": 1, - "returns": 4, - "": 1, - "Simple": 1, - "longer": 1, - "have": 2, - "wacky": 1, - "undef": 17, - "instead": 4, - "simply": 1, - "Tatsuhiko": 2, - "Miyagawa": 2, - "Kazuhiro": 1, - "Osawa": 1, - "Tokuhiro": 2, - "Matsuno": 2, - "": 1, - "": 1, - "LICENSE": 3, - "software": 3, - "SHEBANG#!perl": 5, - "Fast": 3, - "XML": 2, - "XS": 2, - "File": 54, - "Spec": 13, - "FindBin": 1, - "qw": 35, - "Bin": 3, - "#use": 1, - "lib": 2, - "catdir": 3, - "..": 7, - "_stop": 4, - "SIG": 3, - "exit": 16, - "ENV": 40, - "nginx": 2, - "external": 2, - "fcgi": 2, - "Ext_Request": 1, - "FCGI": 1, - "*STDIN": 2, - "*STDOUT": 6, - "*STDERR": 1, - "int": 2, - "ARGV": 2, - "conv": 2, - "use_attr": 1, - "indent": 1, - "output": 36, - "xml_decl": 1, - "tmpl_path": 2, - "tmpl": 5, - "data": 3, - "nick": 1, - "tree": 2, - "example": 5, - "parent": 5, - "id": 6, - "third_party": 1, - "artist_name": 2, - "venue": 2, - "event": 2, - "date": 2, - "zA": 1, - "Z0": 1, - "die": 38, - "e": 20, - "catfile": 4, - "qq": 18, - "Content": 2, - "type": 69, - "application/xml": 1, - "charset": 2, - "utf": 2, - "r": 14, - "n": 19, - "hash2xml": 1, - "text/html": 1, - "nError": 1, - "last": 17, - "M": 1, - "system": 1, - "Foo": 11, - "Bar": 1, - "@array": 1, - "SHEBANG#!#! perl": 4, - "i": 26, - "o": 17, - "examples/benchmarks/fib.pl": 1, - "Fibonacci": 2, - "Benchmark": 1, - "Calculates": 1, - "Number": 1, - "": 1, - "defaults": 16, - "unspecified": 1, - "fib": 4, - "N": 2, - "F": 24, - "": 1, "App": 131, "Ack": 136, + ";": 1193, + "use": 83, + "warnings": 18, + "strict": 18, + "File": 54, "Next": 27, "Plugin": 2, "Basic": 10, + "head1": 36, + "NAME": 6, + "-": 868, + "A": 2, "container": 1, + "for": 83, "functions": 2, + "the": 143, "ack": 38, "program": 6, + "VERSION": 15, "Version": 1, + "cut": 28, + "our": 34, + "COPYRIGHT": 7, "BEGIN": 7, + "{": 1121, + "}": 1134, + "fh": 28, + "*STDOUT": 6, + "%": 78, "types": 26, "type_wanted": 20, "mappings": 29, @@ -52105,6 +51558,9 @@ "dir_sep_chars": 10, "is_cygwin": 6, "is_windows": 12, + "Spec": 13, + "(": 925, + ")": 923, "Glob": 4, "Getopt": 6, "Long": 6, @@ -52117,18 +51573,29 @@ "_sgbak": 2, "_build": 2, "actionscript": 2, + "[": 159, + "qw": 35, + "as": 37, "mxml": 2, + "]": 155, "ada": 4, "adb": 2, "ads": 2, "asm": 4, + "s": 35, "batch": 2, "bat": 2, "cmd": 2, "binary": 3, + "q": 5, "Binary": 2, + "files": 42, + "defined": 54, + "by": 16, + "Perl": 9, "T": 2, "op": 2, + "default": 19, "off": 4, "tt": 4, "tt2": 2, @@ -52140,6 +51607,7 @@ "ctl": 2, "resx": 2, "verilog": 2, + "v": 19, "vh": 2, "sv": 2, "vhdl": 4, @@ -52152,57 +51620,106 @@ "xsl": 2, "xslt": 2, "ent": 2, + "while": 31, + "my": 404, + "type": 69, "exts": 6, "each": 14, + "if": 276, + "ref": 33, "ext": 14, + "@": 38, + "push": 30, + "_": 101, "mk": 2, "mak": 2, + "not": 54, + "t": 18, "p": 9, "STDIN": 2, "O": 4, + "eq": 31, "/MSWin32/": 2, "quotemeta": 5, + "catfile": 4, + "SYNOPSIS": 6, + "If": 15, + "you": 44, + "want": 7, + "to": 95, "know": 4, + "about": 4, + "F": 24, "": 13, + "see": 5, + "file": 49, + "itself.": 3, "No": 4, + "user": 4, "serviceable": 1, "parts": 1, "inside.": 1, + "is": 69, + "all": 23, + "that": 33, "should": 6, "this.": 1, "FUNCTIONS": 1, + "head2": 34, "read_ackrc": 4, "Reads": 1, "contents": 2, + "of": 64, ".ackrc": 1, + "and": 85, + "returns": 4, "arguments.": 1, + "sub": 225, "@files": 12, + "ENV": 40, "ACKRC": 2, "@dirs": 4, "HOME": 4, "USERPROFILE": 2, "dir": 27, + "grep": 17, "bsd_glob": 4, "GLOB_TILDE": 2, + "filename": 68, + "&&": 83, + "e": 20, "open": 7, + "or": 49, + "die": 38, "@lines": 21, "/./": 2, + "/": 69, "s*#/": 2, "<$fh>": 4, "chomp": 3, "close": 19, + "s/": 22, + "+": 120, + "//": 9, + "return": 157, "get_command_line_options": 4, "Gets": 3, + "command": 14, "line": 20, "arguments": 2, + "does": 10, + "specific": 2, "tweaking.": 1, "opt": 291, "pager": 19, "ACK_PAGER_COLOR": 7, + "||": 49, "ACK_PAGER": 5, "getopt_specs": 6, + "m": 17, "after_context": 16, "before_context": 18, + "shift": 165, "val": 26, "break": 14, "c": 5, @@ -52212,8 +51729,11 @@ "ACK_COLOR_FILENAME": 5, "ACK_COLOR_LINENO": 4, "column": 4, + "#": 99, "ignore": 7, + "this": 22, "option": 7, + "it": 28, "handled": 2, "beforehand": 2, "f": 25, @@ -52223,10 +51743,15 @@ "heading": 18, "h": 6, "H": 6, + "i": 26, "invert_file_match": 8, "lines": 19, "l": 17, "regex": 28, + "n": 19, + "o": 17, + "output": 36, + "undef": 17, "passthru": 9, "print0": 7, "Q": 7, @@ -52238,8 +51763,11 @@ "remove_dir_sep": 7, "delete": 10, "print_version_statement": 2, + "exit": 16, "show_help": 3, + "@_": 43, "show_help_types": 2, + "require": 12, "Pod": 4, "Usage": 4, "pod2usage": 2, @@ -52249,53 +51777,81 @@ "wanted": 4, "no//": 2, "must": 5, + "be": 36, "later": 2, + "exists": 19, + "else": 53, + "qq": 18, "Unknown": 2, "unshift": 4, "@ARGV": 12, + "split": 13, "ACK_OPTIONS": 5, "def_types_from_ARGV": 5, "filetypes_supported": 5, "parser": 12, "Parser": 4, + "new": 55, "configure": 4, "getoptions": 4, "to_screen": 10, + "defaults": 16, + "eval": 8, "Win32": 9, "Console": 2, "ANSI": 3, + "key": 20, + "value": 12, + "<": 15, "join": 5, + "map": 10, "@ret": 10, + "from": 19, "warn": 22, + "..": 7, "uniq": 4, "@uniq": 2, "sort": 8, + "a": 85, "<=>": 2, "b": 6, + "keys": 15, "numerical": 2, "occurs": 2, "only": 11, "once": 4, "Go": 1, "through": 6, + "look": 2, + "I": 68, "<--type-set>": 1, "foo=": 1, "bar": 3, "<--type-add>": 1, "xml=": 1, + ".": 125, "Remove": 1, + "them": 5, + "add": 9, "supported": 1, "filetypes": 8, + "i.e.": 2, "into": 6, + "etc.": 3, "@typedef": 8, "td": 6, + "set": 12, "Builtin": 4, "cannot": 4, "changed.": 4, + "ne": 9, "delete_type": 5, "Type": 2, "exist": 4, + "creating": 3, + "with": 26, "...": 2, + "unless": 39, "@exts": 8, ".//": 2, "Cannot": 4, @@ -52303,6 +51859,8 @@ "Removes": 1, "internal": 1, "structures": 1, + "containing": 5, + "information": 2, "type_wanted.": 1, "Internal": 2, "error": 4, @@ -52311,30 +51869,45 @@ "Standard": 1, "filter": 12, "pass": 1, + "L": 34, "": 1, "descend_filter.": 1, + "It": 3, "true": 3, "directory": 8, + "any": 4, "ones": 1, "we": 7, "ignore.": 1, + "path": 28, + "This": 27, "removes": 1, "trailing": 1, "separator": 4, "there": 6, + "one": 9, "its": 2, "argument": 1, + "Returns": 10, "list": 10, "<$filename>": 1, "could": 2, "be.": 1, "For": 5, + "example": 5, "": 1, + "The": 22, "filetype": 1, + "will": 9, + "C": 56, "": 1, + "can": 30, "skipped": 2, + "something": 3, "avoid": 1, "searching": 6, + "even": 4, + "under": 5, "a.": 1, "constant": 2, "TEXT": 16, @@ -52343,8 +51916,12 @@ "is_searchable": 8, "lc_basename": 8, "lc": 5, + "r": 14, + "B": 76, + "header": 17, "SHEBANG#!#!": 2, "ruby": 3, + "|": 28, "lua": 2, "erl": 2, "hp": 2, @@ -52354,8 +51931,10 @@ "*": 8, "b/": 4, "ba": 2, + "k": 6, "z": 2, "sh": 2, + "/i": 2, "search": 11, "false": 1, "regular": 3, @@ -52370,7 +51949,9 @@ "nOo_/": 2, "_thpppt": 3, "_get_thpppt": 3, + "print": 35, "_bar": 3, + "<<": 10, "&": 22, "*I": 2, "g": 7, @@ -52380,8 +51961,14 @@ "#I": 6, "#7": 4, "results.": 2, + "on": 25, + "when": 18, + "used": 12, "interactively": 6, + "no": 22, "Print": 6, + "between": 4, + "results": 8, "different": 2, "files.": 6, "group": 2, @@ -52409,20 +51996,25 @@ "pipe": 4, "finding": 2, "Only": 7, + "found": 11, "without": 3, "searching.": 2, "PATTERN": 8, "specified.": 4, "REGEX": 2, + "but": 4, "REGEX.": 2, "Sort": 2, "lexically.": 3, "invert": 2, "Print/search": 2, + "handle": 3, + "do": 12, "g/": 2, "G.": 2, "show": 3, "Show": 2, + "which": 7, "has.": 2, "inclusion/exclusion": 2, "All": 4, @@ -52433,6 +52025,7 @@ "ignored": 6, "directories": 9, "unrestricted": 2, + "name": 44, "Add/Remove": 2, "dirs": 2, "R": 2, @@ -52457,7 +52050,9 @@ "@before": 16, "before_starts_at_line": 10, "after": 18, + "number": 4, "still": 4, + "res": 59, "next_text": 8, "has_lines": 4, "scalar": 2, @@ -52466,6 +52061,7 @@ "next": 9, "print_match_or_context": 13, "elsif": 10, + "last": 17, "max": 12, "nmatches": 61, "show_filename": 35, @@ -52483,6 +52079,7 @@ "around": 5, "match.": 3, "opts": 2, + "array": 7, "line_no": 12, "show_column": 4, "display_filename": 8, @@ -52509,6 +52106,7 @@ "reset_total_count": 4, "search_and_list": 8, "Optimized": 1, + "version": 2, "lines.": 3, "ors": 11, "record": 3, @@ -52517,8 +52115,10 @@ "print_count0": 2, "filetypes_supported_set": 9, "True/False": 1, + "are": 25, "print_files": 4, "iter": 23, + "returned": 3, "iterator": 3, "<$regex>": 1, "<$one>": 1, @@ -52526,9 +52126,11 @@ "first.": 1, "<$ors>": 1, "<\"\\n\">": 1, + "defines": 2, "what": 14, "filename.": 1, "print_files_with_matches": 4, + "where": 3, "was": 2, "repo": 18, "Repository": 11, @@ -52549,6 +52151,7 @@ "before": 1, "go": 1, "expand_filenames": 7, + "reference": 8, "expanded": 3, "globs": 1, "EXPAND_FILENAMES_SCOPE": 4, @@ -52562,12 +52165,15 @@ "tried": 2, "load": 2, "GetAttributes": 2, + "end": 9, + "attributes": 4, "got": 2, "get_starting_points": 4, "starting": 2, "@what": 14, "reslash": 4, "Assume": 2, + "current": 5, "start_point": 4, "_match": 8, "target": 6, @@ -52590,139 +52196,49 @@ "pipe.": 1, "exit_from_ack": 5, "Exit": 1, + "application": 15, "correct": 1, "code.": 2, + "otherwise": 2, "handed": 1, + "in": 36, "argument.": 1, "rc": 11, + "LICENSE": 3, "Copyright": 2, "Andy": 2, "Lester.": 2, + "free": 4, + "software": 3, + "redistribute": 4, + "and/or": 4, + "modify": 4, + "terms": 4, "Artistic": 2, "License": 2, "v2.0.": 2, "End": 3, - "Util": 3, - "Accessor": 1, - "status": 17, - "Scalar": 2, - "shortcut": 2, - "location": 4, - "redirect": 1, - "url": 2, - "clone": 1, - "_finalize_cookies": 2, - "/chr": 1, - "/ge": 1, - "replace": 3, - "LWS": 1, - "single": 1, - "SP": 1, - "//g": 1, - "CR": 1, - "LF": 1, - "since": 1, - "char": 1, - "invalid": 1, - "here": 2, - "header_field_names": 1, - "_body": 2, - "blessed": 1, - "overload": 1, - "Method": 1, - "_bake_cookie": 2, - "push_header": 1, - "@cookie": 7, - "domain": 3, - "_date": 2, - "expires": 7, - "httponly": 1, - "@MON": 1, - "Jan": 1, - "Feb": 1, - "Mar": 1, - "Apr": 1, - "May": 2, - "Jun": 1, - "Jul": 1, - "Aug": 1, - "Sep": 1, - "Oct": 1, - "Nov": 1, - "Dec": 1, - "@WDAY": 1, - "Sun": 1, - "Mon": 1, - "Tue": 1, - "Wed": 1, - "Thu": 1, - "Fri": 1, - "Sat": 1, - "sec": 2, - "min": 3, - "hour": 2, - "mday": 2, - "mon": 2, - "year": 3, - "wday": 2, - "gmtime": 1, - "sprintf": 1, - "WDAY": 1, - "MON": 1, - "response": 5, - "psgi_handler": 1, - "way": 2, - "simple": 2, - "API.": 1, - "Sets": 2, - "gets": 2, - "": 1, - "alias.": 2, - "response.": 1, - "Setter": 2, - "either": 2, - "headers.": 1, - "body_str": 1, - "io": 1, - "sets": 4, - "body.": 1, - "IO": 1, - "Handle": 1, - "": 1, - "X": 2, - "text/plain": 1, - "gzip": 1, - "normalize": 1, - "given": 10, - "string.": 1, - "Users": 1, - "responsible": 1, - "properly": 1, - "": 1, - "names": 1, - "their": 1, - "corresponding": 1, - "": 2, - "everything": 1, - "": 1, - "": 2, - "": 1, - "": 1, - "": 1, - "integer": 1, - "epoch": 1, - "time": 3, - "": 1, - "convert": 1, - "formats": 1, - "<+3M>": 1, - "reference.": 1, - "AUTHOR": 1, + "SHEBANG#!#! perl": 4, + "examples/benchmarks/fib.pl": 1, + "Fibonacci": 2, + "Benchmark": 1, + "DESCRIPTION": 4, + "Calculates": 1, + "Number": 1, + "": 1, + "unspecified": 1, + "fib": 4, + "N": 2, + "SEE": 4, + "ALSO": 4, + "": 1, + "SHEBANG#!perl": 5, "MAIN": 1, "main": 3, "env_is_usable": 3, "th": 1, "pt": 1, + "env": 76, "@keys": 2, "ACK_/": 1, "@ENV": 1, @@ -52735,6 +52251,7 @@ "Resource": 5, "file_matching": 2, "check_regex": 2, + "like": 13, "finder": 1, "options": 7, "FILE...": 1, @@ -52745,29 +52262,38 @@ "": 5, "searches": 1, "named": 3, + "input": 9, "FILEs": 1, "standard": 1, + "given": 10, "PATTERN.": 1, "By": 2, "prints": 2, "also": 7, + "would": 5, "actually": 1, "let": 1, + "take": 5, "advantage": 1, ".wango": 1, "won": 1, "throw": 1, "away": 1, + "because": 3, "times": 2, "symlinks": 1, + "than": 5, "whatever": 1, "were": 1, "specified": 3, "line.": 4, "default.": 2, + "item": 44, "": 11, + "paths": 3, "included": 1, "search.": 1, + "entire": 3, "matched": 1, "against": 1, "shell": 4, @@ -52776,8 +52302,10 @@ "<-w>": 2, "<-v>": 3, "<-Q>": 4, + "apply": 3, "relative": 1, "convenience": 1, + "shortcut": 2, "<-f>": 6, "<--group>": 2, "<--nogroup>": 2, @@ -52794,6 +52322,7 @@ "<--no-filename>": 1, "Suppress": 1, "prefixing": 1, + "multiple": 5, "searched.": 1, "<--help>": 1, "short": 1, @@ -52810,28 +52339,38 @@ "options.": 4, "": 2, "etc": 2, + "May": 2, "directories.": 2, "mason": 1, + "users": 4, "may": 3, "wish": 1, "include": 1, "<--ignore-dir=data>": 1, "<--noignore-dir>": 1, + "allows": 4, "normally": 1, "perhaps": 1, "research": 1, "<.svn/props>": 1, + "always": 5, + "simple": 2, "name.": 1, "Nested": 1, "": 1, "NOT": 1, "supported.": 1, + "You": 4, + "need": 5, "specify": 1, "<--ignore-dir=foo>": 1, + "then": 4, + "foo": 6, "taken": 1, "account": 1, "explicitly": 1, "": 2, + "file.": 3, "Multiple": 1, "<--line>": 1, "comma": 1, @@ -52844,14 +52383,17 @@ "matter": 1, "<-l>": 2, "<--files-with-matches>": 1, + "instead": 4, "text.": 1, "<-L>": 1, "<--files-without-matches>": 1, + "": 2, "equivalent": 2, "specifying": 1, "Specify": 1, "explicitly.": 1, "helpful": 2, + "don": 2, "": 1, "via": 1, "": 4, @@ -52869,7 +52411,9 @@ "they": 1, "expression.": 1, "Highlighting": 1, + "work": 3, "though": 1, + "so": 4, "highlight": 1, "seeing": 1, "tail": 1, @@ -52882,7 +52426,9 @@ "usual": 1, "newline.": 1, "dealing": 1, + "contain": 3, "whitespace": 1, + "e.g.": 2, "html": 1, "xargs": 2, "rm": 1, @@ -52894,6 +52440,8 @@ "<-r>": 1, "<-R>": 1, "<--recurse>": 1, + "just": 2, + "here": 2, "compatibility": 2, "turning": 1, "<--no-recurse>": 1, @@ -52901,6 +52449,7 @@ "<--smart-case>": 1, "<--no-smart-case>": 1, "strings": 1, + "contains": 2, "uppercase": 1, "characters.": 1, "similar": 1, @@ -52911,6 +52460,7 @@ "<--sort-files>": 1, "Sorts": 1, "Use": 6, + "your": 20, "listings": 1, "deterministic": 1, "runs": 1, @@ -52924,6 +52474,7 @@ "Bill": 1, "Cat": 1, "logo.": 1, + "Note": 5, "exact": 1, "spelling": 1, "<--thpppppt>": 1, @@ -52932,6 +52483,7 @@ "perl": 8, "php": 2, "python": 1, + "looks": 2, "location.": 1, "variable": 1, "specifies": 1, @@ -52962,6 +52514,7 @@ "Underline": 1, "reset.": 1, "alone": 1, + "sets": 4, "foreground": 1, "on_color": 1, "background": 1, @@ -52974,6 +52527,7 @@ "See": 1, "": 1, "specifications.": 1, + "such": 6, "": 1, "": 1, "": 1, @@ -52981,10 +52535,12 @@ "output.": 1, "except": 1, "assume": 1, + "support": 2, "both": 1, "understands": 1, "sequences.": 1, "never": 1, + "back": 4, "ACK": 2, "OTHER": 1, "TOOLS": 1, @@ -53007,6 +52563,8 @@ "Phil": 1, "Jackson": 1, "put": 1, + "together": 2, + "an": 16, "": 1, "extension": 1, "": 1, @@ -53019,15 +52577,19 @@ "Code": 1, "greater": 1, "normal": 1, + "code": 8, "<$?=256>": 1, "": 1, "backticks.": 1, "errors": 1, "used.": 1, + "at": 4, "least": 1, "returned.": 1, "DEBUGGING": 1, "PROBLEMS": 1, + "gives": 2, + "re": 3, "expecting": 1, "forgotten": 1, "<--noenv>": 1, @@ -53042,6 +52604,9 @@ "working": 1, "big": 1, "codesets": 1, + "more": 2, + "create": 3, + "tree": 2, "ideal": 1, "sending": 1, "": 1, @@ -53058,6 +52623,7 @@ "loading": 1, "": 1, "took": 1, + "access": 2, "log": 3, "scanned": 1, "twice.": 1, @@ -53067,6 +52633,7 @@ "troublesome.gif": 1, "first": 1, "finds": 2, + "Apache": 2, "IP.": 1, "second": 1, "troublesome": 1, @@ -53085,7 +52652,10 @@ "tips": 1, "here.": 1, "FAQ": 1, + "Why": 3, "isn": 1, + "doesn": 8, + "behavior": 3, "driven": 1, "filetype.": 1, "": 1, @@ -53095,19 +52665,30 @@ "you.": 1, "source": 2, "compiled": 1, + "object": 6, "control": 1, "metadata": 1, "wastes": 1, "lot": 1, + "time": 3, "those": 2, + "well": 2, "returning": 1, + "things": 2, "great": 1, "did": 1, + "replace": 3, + "read": 6, "only.": 1, + "has": 3, "perfectly": 1, + "good": 2, + "way": 2, + "using": 5, "<-p>": 1, "<-n>": 1, "switches.": 1, + "certainly": 2, "select": 1, "update.": 1, "change": 1, @@ -53118,6 +52699,7 @@ "<.xyz>": 1, "already": 2, "program/package": 1, + "called": 4, "ack.": 2, "Yes": 1, "know.": 1, @@ -53158,29 +52740,38 @@ "@queue": 8, "_setup": 2, "fullpath": 12, + "splice": 2, "local": 5, + "wantarray": 3, "_candidate_files": 2, "sort_standard": 2, "cmp": 2, "sort_reverse": 1, "@parts": 3, "passed_parms": 6, + "copy": 4, "parm": 1, + "hash": 11, "badkey": 1, + "caller": 2, + "start": 7, "dh": 4, "opendir": 1, "@newfiles": 5, "sort_sub": 4, "readdir": 1, "has_stat": 3, + "catdir": 3, "closedir": 1, "": 1, + "these": 4, "updated": 1, "update": 1, "message": 1, "bak": 1, "core": 1, "swp": 1, + "min": 3, "js": 1, "1": 1, "str": 12, @@ -53190,27 +52781,564 @@ "_my_program": 3, "Basename": 2, "FAIL": 12, + "Carp": 11, "confess": 2, "@ISA": 2, + "class": 8, + "self": 141, + "bless": 7, "could_be_binary": 4, "opened": 1, + "id": 6, + "*STDIN": 2, "size": 5, "_000": 1, + "buffer": 9, "sysread": 1, "regex/m": 1, + "seek": 4, "readline": 1, - "nexted": 3 + "nexted": 3, + "CGI": 6, + "Fast": 3, + "XML": 2, + "Hash": 11, + "XS": 2, + "FindBin": 1, + "Bin": 3, + "#use": 1, + "lib": 2, + "_stop": 4, + "request": 11, + "SIG": 3, + "nginx": 2, + "external": 2, + "fcgi": 2, + "Ext_Request": 1, + "FCGI": 1, + "Request": 11, + "*STDERR": 1, + "int": 2, + "ARGV": 2, + "conv": 2, + "use_attr": 1, + "indent": 1, + "xml_decl": 1, + "tmpl_path": 2, + "tmpl": 5, + "data": 3, + "nick": 1, + "parent": 5, + "third_party": 1, + "artist_name": 2, + "venue": 2, + "event": 2, + "date": 2, + "zA": 1, + "Z0": 1, + "Content": 2, + "application/xml": 1, + "charset": 2, + "utf": 2, + "hash2xml": 1, + "text/html": 1, + "nError": 1, + "M": 1, + "system": 1, + "Foo": 11, + "Bar": 1, + "@array": 1, + "pod": 1, + "Catalyst": 10, + "PSGI": 10, + "How": 1, + "": 3, + "specification": 3, + "interface": 1, + "web": 8, + "servers": 2, + "based": 2, + "applications": 2, + "frameworks.": 1, + "supports": 1, + "writing": 1, + "portable": 1, + "run": 1, + "various": 2, + "methods": 4, + "standalone": 1, + "server": 2, + "mod_perl": 3, + "FastCGI": 2, + "": 3, + "implementation": 1, + "running": 1, + "applications.": 1, + "Engine": 1, + "XXXX": 1, + "classes": 2, + "environments": 1, + "been": 1, + "changed": 1, + "done": 2, + "implementing": 1, + "possible": 2, + "manually": 2, + "": 1, + "root": 1, + "application.": 1, + "write": 2, + "own": 4, + ".psgi": 7, + "Writing": 2, + "alternate": 1, + "": 1, + "extensions": 1, + "implement": 2, + "": 1, + "": 1, + "": 1, + "simplest": 1, + "<.psgi>": 1, + "": 1, + "TestApp": 5, + "app": 2, + "psgi_app": 3, + "middleware": 2, + "components": 2, + "automatically": 2, + "": 1, + "applied": 1, + "psgi": 2, + "yourself.": 2, + "Details": 1, + "below.": 1, + "Additional": 1, + "": 1, + "What": 1, + "generates": 2, + "": 1, + "setting": 2, + "wrapped": 1, + "": 1, + "some": 1, + "engine": 1, + "fixes": 1, + "uniform": 1, + "behaviour": 2, + "contained": 1, + "over": 2, + "": 1, + "": 1, + "override": 1, + "providing": 2, + "none": 1, + "call": 2, + "MyApp": 1, + "Thus": 1, + "functionality": 1, + "ll": 1, + "An": 1, + "apply_default_middlewares": 2, + "method": 8, + "supplied": 1, + "wrap": 1, + "middlewares": 1, + "means": 3, + "auto": 1, + "generated": 1, + "": 1, + "": 1, + "AUTHORS": 2, + "Contributors": 1, + "Catalyst.pm": 1, + "library": 2, + "software.": 1, + "same": 2, + "Plack": 25, + "_001": 1, + "HTTP": 16, + "Headers": 8, + "MultiValue": 9, + "Body": 2, + "Upload": 2, + "TempBuffer": 2, + "URI": 11, + "Escape": 6, + "_deprecated": 8, + "alt": 1, + "carp": 2, + "croak": 3, + "required": 2, + "address": 2, + "REMOTE_ADDR": 1, + "remote_host": 2, + "REMOTE_HOST": 1, + "protocol": 1, + "SERVER_PROTOCOL": 1, + "REQUEST_METHOD": 1, + "port": 1, + "SERVER_PORT": 2, + "REMOTE_USER": 1, + "request_uri": 1, + "REQUEST_URI": 2, + "path_info": 4, + "PATH_INFO": 3, + "script_name": 1, + "SCRIPT_NAME": 2, + "scheme": 3, + "secure": 2, + "body": 30, + "content_length": 4, + "CONTENT_LENGTH": 3, + "content_type": 5, + "CONTENT_TYPE": 2, + "session": 1, + "session_options": 1, + "logger": 1, + "cookies": 9, + "HTTP_COOKIE": 3, + "@pairs": 2, + "pair": 4, + "uri_unescape": 1, + "query_parameters": 3, + "uri": 11, + "query_form": 2, + "content": 8, + "_parse_request_body": 4, + "cl": 10, + "raw_body": 1, + "headers": 56, + "field": 2, + "HTTPS": 1, + "_//": 1, + "CONTENT": 1, + "COOKIE": 1, + "content_encoding": 5, + "referer": 3, + "user_agent": 3, + "body_parameters": 3, + "parameters": 8, + "query": 4, + "flatten": 3, + "uploads": 5, + "hostname": 1, + "url_scheme": 1, + "params": 1, + "query_params": 1, + "body_params": 1, + "cookie": 6, + "param": 8, + "get_all": 2, + "upload": 13, + "raw_uri": 1, + "base": 10, + "path_query": 1, + "_uri_base": 3, + "path_escape_class": 2, + "uri_escape": 3, + "QUERY_STRING": 3, + "canonical": 2, + "HTTP_HOST": 1, + "SERVER_NAME": 1, + "new_response": 4, + "Response": 16, + "ct": 3, + "cleanup": 1, + "spin": 2, + "chunk": 4, + "length": 1, + "rewind": 1, + "from_mixed": 2, + "@uploads": 3, + "@obj": 3, + "_make_upload": 2, + "__END__": 2, + "Portable": 2, + "app_or_middleware": 1, + "req": 28, + "finalize": 5, + "": 2, + "provides": 1, + "consistent": 1, + "API": 2, + "objects": 2, + "across": 1, + "environments.": 1, + "CAVEAT": 1, + "module": 2, + "intended": 1, + "developers": 3, + "framework": 2, + "rather": 2, + "directly": 1, + "recommended": 1, + "yet": 1, + "too": 1, + "low": 1, + "level.": 1, + "encouraged": 1, + "frameworks": 2, + "": 1, + "modules": 1, + "": 1, + "provide": 1, + "higher": 1, + "level": 1, + "top": 1, + "PSGI.": 1, + "METHODS": 2, + "Some": 1, + "earlier": 1, + "versions": 1, + "deprecated": 1, + "Take": 1, + "": 1, + "Unless": 1, + "noted": 1, + "": 1, + "passing": 1, + "values": 5, + "accessor": 1, + "debug": 1, + "set.": 1, + "": 2, + "request.": 1, + "uploads.": 2, + "": 2, + "": 1, + "objects.": 1, + "Shortcut": 6, + "content_encoding.": 1, + "content_length.": 1, + "content_type.": 1, + "header.": 2, + "referer.": 1, + "user_agent.": 1, + "GET": 1, + "POST": 1, + "CGI.pm": 2, + "compatible": 1, + "method.": 1, + "alternative": 1, + "accessing": 1, + "parameters.": 3, + "Unlike": 1, + "": 1, + "allow": 1, + "modifying": 1, + "@values": 1, + "@params": 1, + "convenient": 1, + "@fields": 1, + "Creates": 2, + "": 3, + "object.": 4, + "Handy": 1, + "remove": 2, + "dependency": 1, + "easy": 1, + "subclassing": 1, + "duck": 1, + "typing": 1, + "overriding": 1, + "generation": 1, + "middlewares.": 1, + "Parameters": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "store": 1, + "plain": 2, + "": 1, + "scalars": 1, + "references": 1, + "ARRAY": 1, + "parse": 1, + "twice": 1, + "efficiency.": 1, + "DISPATCHING": 1, + "wants": 1, + "dispatch": 1, + "route": 1, + "actions": 1, + "sure": 1, + "": 1, + "virtual": 1, + "regardless": 1, + "how": 1, + "mounted.": 1, + "hosted": 1, + "scripts": 1, + "multiplexed": 1, + "tools": 1, + "": 1, + "idea": 1, + "subclass": 1, + "define": 1, + "uri_for": 2, + "args": 3, + "So": 1, + "say": 1, + "link": 1, + "signoff": 1, + "": 1, + "empty.": 1, + "older": 1, + "instead.": 1, + "Cookie": 2, + "handling": 1, + "simplified": 1, + "string": 5, + "encoding": 2, + "decoding": 1, + "totally": 1, + "up": 1, + "framework.": 1, + "Also": 1, + "": 1, + "now": 1, + "": 1, + "Simple": 1, + "longer": 1, + "have": 2, + "wacky": 1, + "simply": 1, + "Tatsuhiko": 2, + "Miyagawa": 2, + "Kazuhiro": 1, + "Osawa": 1, + "Tokuhiro": 2, + "Matsuno": 2, + "": 1, + "": 1, + "Util": 3, + "Accessor": 1, + "status": 17, + "Scalar": 2, + "location": 4, + "redirect": 1, + "url": 2, + "clone": 1, + "_finalize_cookies": 2, + "/chr": 1, + "/ge": 1, + "LWS": 1, + "single": 1, + "SP": 1, + "//g": 1, + "CR": 1, + "LF": 1, + "since": 1, + "char": 1, + "invalid": 1, + "header_field_names": 1, + "_body": 2, + "blessed": 1, + "overload": 1, + "Method": 1, + "_bake_cookie": 2, + "push_header": 1, + "@cookie": 7, + "domain": 3, + "_date": 2, + "expires": 7, + "httponly": 1, + "@MON": 1, + "Jan": 1, + "Feb": 1, + "Mar": 1, + "Apr": 1, + "Jun": 1, + "Jul": 1, + "Aug": 1, + "Sep": 1, + "Oct": 1, + "Nov": 1, + "Dec": 1, + "@WDAY": 1, + "Sun": 1, + "Mon": 1, + "Tue": 1, + "Wed": 1, + "Thu": 1, + "Fri": 1, + "Sat": 1, + "sec": 2, + "hour": 2, + "mday": 2, + "mon": 2, + "year": 3, + "wday": 2, + "gmtime": 1, + "sprintf": 1, + "WDAY": 1, + "MON": 1, + "response": 5, + "psgi_handler": 1, + "API.": 1, + "Sets": 2, + "gets": 2, + "": 1, + "alias.": 2, + "response.": 1, + "Setter": 2, + "either": 2, + "headers.": 1, + "body_str": 1, + "io": 1, + "body.": 1, + "IO": 1, + "Handle": 1, + "": 1, + "X": 2, + "text/plain": 1, + "gzip": 1, + "normalize": 1, + "string.": 1, + "Users": 1, + "responsible": 1, + "properly": 1, + "": 1, + "names": 1, + "their": 1, + "corresponding": 1, + "": 2, + "everything": 1, + "": 1, + "": 2, + "": 1, + "": 1, + "": 1, + "integer": 1, + "epoch": 1, + "": 1, + "convert": 1, + "formats": 1, + "<+3M>": 1, + "reference.": 1, + "AUTHOR": 1 }, "Perl6": { + "token": 6, + "pod_formatting_code": 1, + "{": 29, + "": 1, + "<[A..Z]>": 1, + "*POD_IN_FORMATTINGCODE": 1, + "}": 27, + "": 1, + "[": 1, + "": 1, + "#": 13, + "N*": 1, "role": 10, "q": 5, - "{": 29, - "token": 6, "stopper": 2, "MAIN": 1, "quote": 1, ")": 19, - "}": 27, "backslash": 3, "sym": 3, "<\\\\>": 1, @@ -53250,7 +53378,6 @@ "-": 3, "verb": 1, "|": 9, - "#": 13, "multi": 2, "line": 5, "comment": 2, @@ -53316,20 +53443,72 @@ "/": 1, "": 1, "": 1, - "roleq": 1, - "pod_formatting_code": 1, - "": 1, - "<[A..Z]>": 1, - "*POD_IN_FORMATTINGCODE": 1, - "": 1, - "[": 1, - "": 1, - "N*": 1 + "roleq": 1 }, "Pike": { "#pike": 2, "__REAL_VERSION__": 2, + "constant": 13, + "Generic": 1, + "__builtin.GenericError": 1, + ";": 149, + "Index": 1, + "__builtin.IndexError": 1, + "BadArgument": 1, + "__builtin.BadArgumentError": 1, + "Math": 1, + "__builtin.MathError": 1, + "Resource": 1, + "__builtin.ResourceError": 1, + "Permission": 1, + "__builtin.PermissionError": 1, + "Decode": 1, + "__builtin.DecodeError": 1, + "Cpp": 1, + "__builtin.CppError": 1, + "Compilation": 1, + "__builtin.CompilationError": 1, + "MasterLoad": 1, + "__builtin.MasterLoadError": 1, + "ModuleLoad": 1, + "__builtin.ModuleLoadError": 1, "//": 85, + "Returns": 2, + "an": 2, + "Error": 2, + "object": 5, + "for": 1, + "any": 1, + "argument": 2, + "it": 2, + "receives.": 1, + "If": 1, + "the": 4, + "already": 1, + "is": 2, + "or": 1, + "empty": 1, + "does": 1, + "nothing.": 1, + "mkerror": 1, + "(": 218, + "mixed": 8, + "error": 14, + ")": 218, + "{": 51, + "if": 35, + "UNDEFINED": 1, + "return": 41, + "objectp": 1, + "&&": 2, + "-": 50, + "is_generic_error": 1, + "arrayp": 2, + "Error.Generic": 3, + "@error": 1, + "stringp": 1, + "sprintf": 3, + "}": 51, "A": 2, "string": 20, "wrapper": 1, @@ -53342,7 +53521,6 @@ "[": 45, "Stdio.File": 32, "]": 45, - "object": 5, "in": 1, "addition": 1, "some": 1, @@ -53351,7 +53529,6 @@ "Stdio.FILE": 4, "object.": 2, "This": 1, - "constant": 13, "can": 2, "used": 1, "distinguish": 1, @@ -53359,13 +53536,10 @@ "from": 1, "real": 1, "is_fake_file": 1, - ";": 149, "protected": 12, "data": 34, "int": 31, "ptr": 27, - "(": 218, - ")": 218, "r": 10, "w": 6, "mtime": 4, @@ -53376,27 +53550,21 @@ "write_oob_cb": 5, "close_cb": 5, "@seealso": 33, - "-": 50, "close": 2, "void": 25, "|": 14, "direction": 5, - "{": 51, "lower_case": 2, "||": 2, "cr": 2, "has_value": 4, "cw": 2, - "if": 35, - "}": 51, - "return": 41, "@decl": 1, "create": 3, "type": 11, "pointer": 1, "_data": 3, "_ptr": 2, - "error": 14, "time": 3, "else": 5, "make_type_str": 3, @@ -53406,10 +53574,8 @@ "Always": 3, "returns": 4, "errno": 2, - "Returns": 2, "size": 3, "and": 1, - "the": 4, "creation": 1, "string.": 2, "Stdio.Stat": 3, @@ -53421,7 +53587,6 @@ "line_iterator": 2, "String.SplitIterator": 3, "trim": 2, - "mixed": 8, "id": 3, "query_id": 2, "set_id": 2, @@ -53467,9 +53632,7 @@ "str": 12, "...": 2, "extra": 2, - "arrayp": 2, "str*": 1, - "sprintf": 3, "@extra": 1, "..": 1, "set_blocking": 3, @@ -53494,7 +53657,6 @@ "query_write_oob_callback": 2, "_sprintf": 1, "t": 2, - "&&": 2, "casted": 1, "cast": 1, "switch": 1, @@ -53533,50 +53695,7 @@ "set_keepalive": 1, "trylock": 1, "write_oob": 1, - "@endignore": 1, - "Generic": 1, - "__builtin.GenericError": 1, - "Index": 1, - "__builtin.IndexError": 1, - "BadArgument": 1, - "__builtin.BadArgumentError": 1, - "Math": 1, - "__builtin.MathError": 1, - "Resource": 1, - "__builtin.ResourceError": 1, - "Permission": 1, - "__builtin.PermissionError": 1, - "Decode": 1, - "__builtin.DecodeError": 1, - "Cpp": 1, - "__builtin.CppError": 1, - "Compilation": 1, - "__builtin.CompilationError": 1, - "MasterLoad": 1, - "__builtin.MasterLoadError": 1, - "ModuleLoad": 1, - "__builtin.ModuleLoadError": 1, - "an": 2, - "Error": 2, - "for": 1, - "any": 1, - "argument": 2, - "it": 2, - "receives.": 1, - "If": 1, - "already": 1, - "is": 2, - "or": 1, - "empty": 1, - "does": 1, - "nothing.": 1, - "mkerror": 1, - "UNDEFINED": 1, - "objectp": 1, - "is_generic_error": 1, - "Error.Generic": 3, - "@error": 1, - "stringp": 1 + "@endignore": 1 }, "Pod": { "Id": 1, @@ -53995,60 +54114,18 @@ }, "Prolog": { "-": 161, - "lib": 1, - "(": 327, - "ic": 1, - ")": 326, - ".": 107, - "vabs": 2, - "Val": 8, - "AbsVal": 10, - "#": 9, - ";": 12, - "labeling": 2, - "[": 87, - "]": 87, - "vabsIC": 1, - "or": 1, - "faitListe": 3, - "_": 30, - "First": 2, - "|": 25, - "Rest": 12, - "Taille": 2, - "Min": 2, - "Max": 2, - "Min..Max": 1, - "Taille1": 2, - "suite": 3, - "Xi": 5, - "Xi1": 7, - "Xi2": 7, - "checkRelation": 3, - "VabsXi1": 2, - "Xi.": 1, - "checkPeriode": 3, - "ListVar": 2, - "length": 4, - "Length": 2, - "<": 1, - "X1": 2, - "X2": 2, - "X3": 2, - "X4": 2, - "X5": 2, - "X6": 2, - "X7": 2, - "X8": 2, - "X9": 2, - "X10": 3, "module": 3, + "(": 327, "format_spec": 12, + "[": 87, "format_error/2": 1, "format_spec/2": 1, "format_spec//1": 1, "spec_arity/2": 1, "spec_types/2": 1, + "]": 87, + ")": 326, + ".": 107, "use_module": 8, "library": 8, "dcg/basics": 1, @@ -54071,16 +54148,19 @@ "Format": 23, "Args": 19, "format_error_": 5, + "_": 30, "debug": 4, "Spec": 10, "is_list": 1, "spec_types": 8, "Types": 16, "types_error": 3, + "length": 4, "TypesLen": 3, "ArgsLen": 3, "types_error_": 4, "Arg": 6, + "|": 25, "Type": 3, "ground": 5, "is_of_type": 2, @@ -54150,11 +54230,13 @@ "Numeric": 4, "Modifier": 2, "Action": 15, + "Rest": 12, "numeric_argument": 5, "modifier_argument": 3, "action": 6, "text": 4, "String": 6, + ";": 12, "Codes": 21, "string_codes": 4, "string_without": 1, @@ -54206,32 +54288,6 @@ "s": 2, "t": 1, "W": 1, - "turing": 1, - "Tape0": 2, - "Tape": 2, - "perform": 4, - "q0": 1, - "Ls": 12, - "Rs": 16, - "reverse": 4, - "Ls1": 4, - "append": 2, - "qf": 1, - "Q0": 2, - "Ls0": 6, - "Rs0": 6, - "symbol": 3, - "Sym": 6, - "RsRest": 2, - "rule": 1, - "Q1": 2, - "NewSym": 2, - "Rs1": 2, - "b": 4, - "left": 4, - "stay": 1, - "right": 1, - "L": 2, "func": 13, "op": 2, "xfy": 2, @@ -54306,8 +54362,10 @@ "can": 3, "chained.": 2, "Reversed": 2, + "reverse": 4, "sort": 2, "c": 2, + "b": 4, "meta_predicate": 2, "throw": 1, "permission_error": 1, @@ -54350,6 +54408,7 @@ "Goals": 2, "Tmp": 3, "instantiation_error": 1, + "append": 2, "NewArgs": 2, "variant_sha1": 1, "Sha": 2, @@ -54367,6 +54426,43 @@ "Name": 2, "Args0": 2, "nth1": 2, + "lib": 1, + "ic": 1, + "vabs": 2, + "Val": 8, + "AbsVal": 10, + "#": 9, + "labeling": 2, + "vabsIC": 1, + "or": 1, + "faitListe": 3, + "First": 2, + "Taille": 2, + "Min": 2, + "Max": 2, + "Min..Max": 1, + "Taille1": 2, + "suite": 3, + "Xi": 5, + "Xi1": 7, + "Xi2": 7, + "checkRelation": 3, + "VabsXi1": 2, + "Xi.": 1, + "checkPeriode": 3, + "ListVar": 2, + "Length": 2, + "<": 1, + "X1": 2, + "X2": 2, + "X3": 2, + "X4": 2, + "X5": 2, + "X6": 2, + "X7": 2, + "X8": 2, + "X9": 2, + "X10": 3, "male": 3, "john": 2, "peter": 3, @@ -54375,498 +54471,204 @@ "christie": 3, "parents": 4, "brother": 1, - "M": 2 + "M": 2, + "turing": 1, + "Tape0": 2, + "Tape": 2, + "perform": 4, + "q0": 1, + "Ls": 12, + "Rs": 16, + "Ls1": 4, + "qf": 1, + "Q0": 2, + "Ls0": 6, + "Rs0": 6, + "symbol": 3, + "Sym": 6, + "RsRest": 2, + "rule": 1, + "Q1": 2, + "NewSym": 2, + "Rs1": 2, + "left": 4, + "stay": 1, + "right": 1, + "L": 2 }, "Propeller Spin": { "{": 26, - "Vocal": 2, - "Tract": 2, - "v1.1": 8, - "by": 17, - "Chip": 7, - "Gracey": 7, + "*****************************************": 4, + "*": 143, + "x4": 4, + "Keypad": 1, + "Reader": 1, + "v1.0": 4, + "Author": 8, + "Beau": 2, + "Schwabe": 2, "Copyright": 10, "(": 356, "c": 33, ")": 356, "Parallax": 10, - "Inc.": 8, - "October": 1, + "See": 10, + "end": 12, + "of": 108, + "file": 9, + "for": 70, + "terms": 9, + "use.": 9, + "}": 26, + "Operation": 2, "This": 3, "object": 7, - "synthesizes": 1, + "uses": 2, "a": 72, - "human": 1, - "vocal": 10, - "tract": 12, - "in": 53, - "real": 2, - "-": 486, - "time.": 2, - "It": 1, - "requires": 3, - "one": 4, - "cog": 39, - "and": 95, - "at": 26, - "least": 14, - "MHz.": 1, - "The": 17, - "is": 51, - "controlled": 1, - "via": 5, - "single": 2, - "byte": 27, - "parameters": 19, - "which": 16, - "must": 18, - "reside": 1, - "the": 136, - "parent": 1, - "VAR": 10, - "aa": 2, - "ga": 5, - "gp": 2, - "vp": 3, - "vr": 1, - "f1": 4, - "f2": 1, - "f3": 3, - "f4": 2, - "na": 2, - "nf": 2, - "fa": 2, - "ff": 2, - "s": 16, - "values.": 2, - "Before": 1, - "they": 2, - "were": 1, - "left": 12, - "interpolation": 1, - "point": 21, - "shy": 1, - "then": 5, - "set": 42, + "capacitive": 1, + "PIN": 1, + "approach": 1, "to": 191, - "last": 6, - "frame": 12, - "change": 3, - "makes": 1, - "behave": 1, - "more": 90, - "sensibly": 1, - "during": 2, - "gaps.": 1, - "}": 26, - "CON": 4, - "frame_buffers": 2, - "bytes": 2, - "per": 4, - "frame_longs": 3, - "frame_bytes": 1, - "/": 27, - "longs": 15, - "...must": 1, - "long": 122, - "dira_": 3, - "dirb_": 1, - "ctra_": 1, - "ctrb_": 3, - "frqa_": 3, - "cnt_": 1, - "many": 1, - "...contiguous": 1, - "PUB": 63, - "start": 16, - "tract_ptr": 3, - "pos_pin": 7, - "neg_pin": 6, - "fm_offset": 5, - "okay": 11, - "Start": 6, - "driver": 17, - "starts": 4, - "returns": 6, - "false": 7, - "if": 53, - "no": 7, - "available": 4, - "pointer": 14, - "positive": 1, - "delta": 10, - "modulation": 4, - "pin": 18, - "disable": 7, - "negative": 2, - "also": 1, - "be": 46, - "enabled": 2, - "offset": 14, - "frequency": 18, - "for": 70, - "fm": 6, - "aural": 13, - "subcarrier": 3, - "generation": 2, - "_500_000": 1, - "NTSC": 11, - "Remember": 1, - "If": 2, - "ready": 10, - "output": 11, - "ctrb": 4, - "duty": 2, - "mode": 7, - "[": 35, - "&": 21, - "]": 34, - "|": 22, - "<": 14, - "+": 759, - "F": 18, - "<<": 70, - "Ready": 1, - "frqa": 3, - "value": 51, - "repeat": 18, - "clkfreq": 2, - "Launch": 1, - "return": 15, - "cognew": 4, - "@entry": 3, - "@attenuation": 1, - "stop": 9, - "Stop": 6, - "frees": 6, - "Reset": 1, - "variables": 3, - "buffers": 1, - "longfill": 2, - "@index": 1, - "constant": 3, - "frame_buffer_longs": 2, - "set_attenuation": 1, - "level": 5, - "Set": 5, - "master": 2, - "attenuation": 3, - "initially": 2, - "set_pace": 2, - "percentage": 3, - "pace": 3, - "some": 3, - "go": 1, - "time": 7, - "Queue": 1, - "current": 3, - "transition": 1, - "over": 2, - "actual": 4, - "integer": 2, - "*": 143, - "#": 97, - "see": 2, - "Load": 1, - "into": 19, - "bytemove": 1, - "@frames": 1, - "index": 5, - "Increment": 1, - "full": 3, - "status": 15, - "Returns": 4, - "true": 6, - "parameter": 14, - "queue": 2, - "useful": 2, - "checking": 1, - "would": 1, - "have": 1, - "wait": 6, - "frames": 2, - "empty": 2, - "i": 24, - "detecting": 1, - "when": 3, - "finished": 1, - "from": 21, - "sample_ptr": 1, - "ptr": 5, - "address": 16, - "of": 108, - "receives": 1, - "audio": 1, - "samples": 1, - "signed": 4, - "bit": 35, - "values": 2, - "updated": 1, - "KHz": 3, - "@sample": 1, - "aural_id": 1, - "id": 2, - "executing": 1, - "algorithm": 1, - "connecting": 1, - "broadcast": 19, - "tv": 2, - "with": 8, - "DAT": 7, - "Initialization": 1, - "zero": 10, - "all": 14, - "reserved": 3, - "data": 47, - "add": 92, - "d0": 11, - "djnz": 24, - "clear_cnt": 1, - "mov": 154, - "t1": 139, - "#2*15": 1, - "saves": 2, - "hub": 1, - "memory": 2, - "minst": 3, - "d0s0": 3, - "test": 38, - "#1": 47, - "wc": 57, - "if_c": 37, - "sub": 12, - "#2": 15, - "mult_ret": 1, - "antilog_ret": 1, - "ret": 17, - "assemble": 1, - "cordic": 4, - "steps": 9, - "reserves": 2, - "cstep": 1, - "t2": 90, - "#8": 14, - "write": 36, - "instruction": 2, - "par": 20, - "get": 30, - "center": 10, - "#4": 8, - "prepare": 1, - "initial": 6, - "waitcnt": 3, - "cnt_value": 3, - "cnt_ticks": 3, - "Loop": 1, - "Wait": 2, - "next": 16, - "sample": 2, - "period": 1, - "loop": 14, - "perform": 2, - "sar": 8, - "x": 112, - "update": 7, - "cycle": 1, - "driving": 1, - "h80000000": 2, - "frqb": 2, - "White": 1, - "noise": 3, - "source": 2, - "lfsr": 1, - "lfsr_taps": 2, - "Aspiration": 1, - "vibrato": 3, - "rate": 6, - "shr": 24, - "#10": 2, - "vphase": 2, - "sum": 7, - "glottal": 2, - "pitch": 5, - "divide": 3, - "final": 3, - "mesh": 1, - "multiply": 8, - "%": 162, - "tune": 2, - "convert": 1, - "log": 2, - "phase": 2, - "gphase": 3, - "reset": 14, - "y": 80, - "formant2": 2, - "rotate": 2, - "f2x": 3, - "f2y": 3, - "call": 44, - "#cordic": 2, - "formant4": 2, - "f4x": 3, - "f4y": 3, - "subtract": 1, - "nx": 4, - "negated": 1, - "nasal": 2, - "amplitude": 3, - "#mult": 1, - "negate": 2, - "#3": 7, - "fphase": 4, - "frication": 2, - "#sine": 1, - "Handle": 1, - "jmp": 24, - "or": 43, - "cycles": 4, - "frame_ptr": 6, - "past": 1, - "miscellaneous": 2, - "frame_index": 3, - "stepsize": 2, - "step_size": 5, - "h00FFFFFF": 2, - "wz": 21, - "not": 6, - "final1": 2, - "finali": 2, - "iterate": 3, - "aa..ff": 4, - "jmpret": 5, - "#loop": 9, - "another": 7, - "insure": 2, - "accurate": 1, - "accumulation": 1, - "step_acc": 3, - "movd": 10, - "set2": 3, - "#par_curr": 1, - "set3": 2, - "#par_next": 1, - "set4": 3, - "#par_step": 1, - "new": 6, - "shl": 21, - "#24": 1, - "par_curr": 3, - "make": 16, - "absolute": 1, - "msb": 2, - "rcl": 2, - "vscl": 12, - "nr": 1, - "step": 9, - "size": 5, - "mult": 2, - "negnz": 3, - "par_step": 1, - "pointers": 2, - "frame_cnt": 2, - "step1": 2, - "stepi": 1, - "check": 5, - "done": 3, - "if_nc": 15, - "stepframe": 1, - "signal": 8, - "wrlong": 6, - "#frame_bytes": 1, - "par_next": 2, - "used": 9, - "Math": 1, - "Subroutines": 1, - "Antilog": 1, - "top": 10, - "bits": 29, - "whole": 2, - "number": 27, - "fraction": 1, - "out": 24, - "antilog": 2, - "FFEA0000": 1, - "#16": 6, - "position": 9, - "h00000FFE": 2, - "table": 9, - "base": 6, - "rdword": 10, - "insert": 2, - "leading": 1, - "Scaled": 1, - "sine": 7, - "unsigned": 3, - "scale": 7, - "angle": 23, - "h00001000": 2, - "quadrant": 3, - "negc": 1, - "read": 29, - "word": 212, - "justify": 4, - "result": 6, - "Multiply": 1, - "multiplier": 3, - "#15": 1, + "reading": 1, + "the": 136, + "keypad.": 1, + "To": 3, "do": 26, - "mult_step": 1, - "Cordic": 1, - "rotation": 3, - "degree": 1, - "first": 9, - "#cordic_steps": 1, - "that": 10, - "gets": 1, - "assembled": 1, - "x13": 2, - "cordic_dx": 1, - "incremented": 1, - "each": 11, - "sumnc": 7, - "sumc": 4, - "cordic_a": 1, - "cordic_delta": 2, - "linear": 1, - "feedback": 2, - "shift": 7, - "register": 1, - "B901476": 1, - "constants": 2, - "greater": 1, - "than": 5, - "h40000000": 1, - "h01000000": 1, - "FFFFFF": 1, - "h00010000": 1, - "h0000D000": 1, - "D000": 1, - "h00007000": 1, - "FFE": 1, - "h00000800": 1, - "registers": 2, - "clear": 5, + "so": 11, + "ALL": 2, + "pins": 26, + "are": 18, + "made": 2, + "LOW": 2, + "and": 95, + "an": 12, + "OUTPUT": 2, + "I/O": 3, + "pins.": 1, + "Then": 1, + "set": 42, + "INPUT": 2, + "state.": 1, + "At": 1, + "this": 26, + "point": 21, + "only": 63, + "one": 4, + "pin": 18, + "is": 51, + "HIGH": 3, + "at": 26, + "time.": 2, + "If": 2, + "closed": 1, + "then": 5, + "will": 12, + "be": 46, + "read": 29, "on": 12, - "startup": 2, - "Undefined": 2, - "Data": 1, - "zeroed": 1, - "initialization": 2, - "code": 3, - "cleared": 1, - "res": 89, - "f1x": 1, - "f1y": 1, - "f3x": 1, - "f3y": 1, - "aspiration": 1, - "***": 1, - "mult_steps": 1, - "assembly": 1, - "area": 1, - "w/ret": 1, - "cordic_ret": 1, + "input": 2, + "otherwise": 1, + "returned.": 1, + "The": 17, + "keypad": 4, + "decoding": 1, + "routine": 1, + "requires": 3, + "two": 6, + "subroutines": 1, + "returns": 6, + "entire": 1, + "matrix": 1, + "into": 19, + "single": 2, + "WORD": 1, + "variable": 1, + "indicating": 1, + "which": 16, + "buttons": 2, + "pressed.": 1, + "Multiple": 1, + "button": 2, + "presses": 1, + "allowed": 1, + "with": 8, + "understanding": 1, + "that": 10, + "BOX": 2, + "entries": 1, + "can": 4, + "confused.": 1, + "An": 1, + "example": 3, + "entry...": 1, + "or": 43, + "#": 97, + "etc.": 1, + "where": 2, + "any": 15, + "pressed": 3, + "evaluate": 1, + "non": 3, + "as": 8, + "being": 2, + "even": 1, + "when": 3, + "they": 2, + "not.": 1, + "There": 1, + "no": 7, + "danger": 1, + "physical": 1, + "electrical": 1, + "damage": 1, + "s": 16, + "just": 2, + "way": 1, + "sensing": 1, + "method": 2, + "happens": 1, + "work.": 1, + "Schematic": 1, + "No": 2, + "resistors": 4, + "capacitors.": 1, + "connections": 1, + "directly": 1, + "from": 21, + "Clear": 2, + "value": 51, + "ReadRow": 4, + "Shift": 3, + "left": 12, + "by": 17, + "preset": 1, + "P0": 2, + "P7": 2, + "LOWs": 1, + "dira": 3, + "[": 35, + "]": 34, + "make": 16, + "INPUTSs": 1, + "...": 5, + "now": 3, + "act": 1, + "like": 4, + "tiny": 1, + "capacitors": 1, + "outa": 2, + "n": 4, + "Pin": 1, + "OUTPUT...": 1, + "Make": 1, + ";": 2, + "charge": 10, + "+": 759, + "ina": 3, + "Pn": 1, + "remain": 1, + "discharged": 1, + "DAT": 7, "TERMS": 9, "OF": 49, "USE": 19, @@ -54876,17 +54678,15 @@ "hereby": 9, "granted": 9, "free": 10, - "charge": 10, - "any": 15, "person": 9, "obtaining": 9, "copy": 21, - "this": 26, "software": 9, "associated": 11, "documentation": 9, "files": 9, "deal": 9, + "in": 53, "Software": 28, "without": 19, "restriction": 9, @@ -54906,7 +54706,6 @@ "persons": 9, "whom": 9, "furnished": 9, - "so": 11, "subject": 9, "following": 9, "conditions": 9, @@ -54916,6 +54715,7 @@ "permission": 9, "shall": 9, "included": 9, + "all": 14, "substantial": 9, "portions": 9, "Software.": 9, @@ -54978,47 +54778,56 @@ "Williams": 2, "Jeff": 2, "Martin": 2, - "See": 10, - "end": 12, - "file": 9, - "terms": 9, - "use.": 9, + "Inc.": 8, "Debugging": 1, "wrapper": 1, "Serial_Lcd": 1, + "-": 486, "March": 1, "Updated": 4, "conform": 1, "Propeller": 3, + "initialization": 2, "standards.": 1, + "v1.1": 8, "April": 1, "consistency.": 1, "OBJ": 2, "lcd": 2, + "number": 27, "string": 8, "conversion": 1, + "PUB": 63, "init": 2, "baud": 2, "lines": 24, + "okay": 11, "Initializes": 1, "serial": 1, "LCD": 4, + "true": 6, + "if": 53, + "parameters": 19, "lcd.init": 1, "finalize": 1, "Finalizes": 1, + "frees": 6, "floats": 1, "lcd.finalize": 1, "putc": 1, "txbyte": 2, "Send": 1, + "byte": 27, "terminal": 4, "lcd.putc": 1, "str": 3, "strAddr": 2, "Print": 15, + "zero": 10, "terminated": 4, "lcd.str": 8, "dec": 3, + "signed": 4, "decimal": 5, "num.dec": 1, "decf": 1, @@ -55031,24 +54840,26 @@ "num.decf": 1, "decx": 1, "digits": 23, + "negative": 2, "num.decx": 1, "hex": 3, "hexadecimal": 4, "num.hex": 1, "ihex": 1, - "an": 12, "indicated": 2, "num.ihex": 1, "bin": 3, "binary": 4, "num.bin": 1, "ibin": 1, + "%": 162, "num.ibin": 1, "cls": 1, "Clears": 2, "moves": 1, "cursor": 9, "home": 4, + "position": 9, "lcd.cls": 1, "Moves": 2, "lcd.home": 1, @@ -55065,9 +54876,10 @@ "blink": 4, "lcd.cursor": 1, "display": 23, + "status": 15, "Controls": 1, "visibility": 1, - ";": 2, + "false": 7, "hide": 1, "contents": 3, "clearing": 1, @@ -55080,366 +54892,52 @@ "Installs": 1, "character": 6, "map": 1, + "address": 16, "definition": 9, "array": 1, "lcd.custom": 1, "backLight": 1, "Enable": 1, + "disable": 7, "backlight": 1, "affects": 1, - "only": 63, "backlit": 1, "models": 1, "lcd.backLight": 1, "***************************************": 12, - "VGA": 8, - "Driver": 4, - "Author": 8, - "May": 2, - "pixel": 40, - "tile": 41, - "can": 4, - "now": 3, - "enable": 5, - "efficient": 2, - "vga_mode": 3, - "colortable": 7, - "inside": 2, - "vgaptr": 3, - "cogstop": 3, - "Assembly": 2, - "language": 2, - "Entry": 2, - "tasks": 6, - "Superfield": 2, - "hv": 5, - "interlace": 20, - "#0": 20, - "nz": 3, - "visible": 7, - "back": 8, - "porch": 9, - "vb": 2, - "bcolor": 3, - "#colortable": 2, - "#blank_line": 3, - "nobl": 1, - "screen": 13, - "_screen": 3, - "vertical": 29, - "tiles": 19, - "vx": 2, - "_vx": 1, - "skip": 5, - "if_nz": 18, - "tjz": 8, - "hb": 2, - "nobp": 1, - "horizontal": 21, - "hx": 5, - "pixels": 14, - "rdlong": 16, - "colors": 18, - "color": 39, - "pass": 5, - "video": 7, - "repoint": 2, - "same": 7, - "hf": 2, - "nofp": 1, - "hsync": 5, - "#blank_hsync": 1, - "expand": 3, - "ror": 4, - "linerot": 5, - "front": 4, - "vf": 1, - "nofl": 1, - "xor": 8, - "unless": 2, - "field1": 4, - "invisible": 8, - "taskptr": 3, - "#tasks": 1, - "before": 1, - "after": 2, - "_vs": 2, - "except": 1, - "#blank_vsync": 1, - "#field": 1, - "superfield": 1, - "blank_vsync": 1, - "cmp": 16, - "blank": 2, - "vsync": 4, - "h2": 2, - "if_c_and_nz": 1, - "waitvid": 3, - "task": 2, - "section": 4, - "z": 4, - "undisturbed": 2, - "blank_hsync": 1, - "_hf": 1, - "invisble": 1, - "sync": 10, - "_hb": 1, - "#hv": 1, - "blank_hsync_ret": 1, - "blank_line_ret": 1, - "blank_vsync_ret": 1, - "_status": 1, - "#paramcount": 1, - "load": 3, - "pins": 26, - "directions": 1, - "_pins": 4, - "_enable": 2, - "#disabled": 2, - "break": 6, - "later": 6, - "min": 4, - "_rate": 3, - "pllmin": 1, - "_011": 1, - "adjust": 4, - "within": 5, - "MHz": 16, - "hvbase": 5, - "muxnc": 5, - "vmask": 1, - "_mode": 7, - "hmask": 1, - "_hx": 4, - "_vt": 3, - "consider": 2, - "muxc": 5, - "lineadd": 4, - "lineinc": 3, - "movi": 3, - "vcfg": 2, - "_000": 5, - "/160": 2, - "#13": 3, - "times": 3, - "loaded": 3, - "#9": 2, - "FC": 2, - "_colors": 2, - "colormask": 1, - "andn": 7, - "d6": 3, - "keep": 2, - "loading": 2, - "multiply_ret": 2, - "Disabled": 2, - "nap": 5, - "ms": 4, - "try": 2, - "again": 2, - "ctra": 5, - "disabled": 3, - "cnt": 2, - "#entry": 1, - "Initialized": 1, - "pll": 5, - "lowest": 1, - "pllmax": 1, - "_000_000": 6, - "*16": 1, - "vco": 3, - "max": 6, - "m4": 1, - "Uninitialized": 3, - "taskret": 4, - "Parameter": 4, - "buffer": 4, - "/non": 4, - "tihv": 1, - "@long": 2, - "_ht": 2, - "_ho": 2, - "_hd": 1, - "_hs": 1, - "_vd": 1, - "fit": 2, - "underneath": 1, - "BF": 1, - "___": 1, - "/1/2": 1, - "off/visible/invisible": 1, - "vga_enable": 3, - "pppttt": 1, - "words": 5, - "vga_colors": 2, - "vga_vt": 6, - "expansion": 8, - "vga_vx": 4, - "vga_vo": 4, - "ticks": 11, - "vga_hf": 2, - "vga_hb": 2, - "vga_vf": 2, - "vga_vb": 2, - "tick": 2, - "Hz": 5, - "preceding": 2, - "may": 6, - "copied": 2, - "your": 2, - "code.": 2, - "After": 2, - "setting": 2, - "@vga_status": 1, - "driver.": 3, - "All": 2, - "are": 18, - "reloaded": 2, - "superframe": 2, - "allowing": 2, - "you": 5, - "live": 2, - "changes.": 2, - "To": 3, - "minimize": 2, - "flicker": 5, - "correlate": 2, - "changes": 3, - "vga_status.": 1, - "Experimentation": 2, - "required": 4, - "optimize": 2, - "parameters.": 2, - "descriptions": 2, - "__________": 4, - "vga_status": 1, - "sets": 3, - "indicate": 2, - "CLKFREQ": 10, - "currently": 4, - "outputting": 4, - "will": 12, - "driven": 2, - "low": 5, - "reduces": 2, - "power": 3, - "non": 3, - "________": 3, - "vga_pins": 1, - "select": 9, - "group": 7, - "example": 3, - "selects": 4, - "between": 4, - "x16": 7, - "x32": 6, - "tileheight": 4, - "controls": 4, - "progressive": 2, - "scan": 7, - "less": 5, - "good": 5, - "motion": 2, - "monitors": 1, - "interlaced": 5, - "allows": 1, - "double": 2, - "text": 9, - "polarity": 1, - "respectively": 1, - "active": 3, - "high": 7, - "vga_screen": 1, - "define": 10, - "right": 9, - "bottom": 5, - "vga_ht": 3, - "has": 4, - "two": 6, - "bitfields": 2, - "colorset": 2, - "pixelgroup": 2, - "colorset*": 2, - "pixelgroup**": 2, - "ppppppppppcccc00": 2, - "p": 8, - "colorsets": 4, - "four": 8, - "**": 2, - "pixelgroups": 2, - "": 5, - "up": 4, - "fields": 2, - "t": 10, - "care": 1, - "it": 8, - "suggested": 1, - "bits/pins": 3, - "red": 2, - "green": 1, - "blue": 3, - "bit/pin": 1, - "ohm": 10, - "resistors": 4, - "form": 7, - "V": 7, - "signals": 1, - "connect": 3, - "RED": 1, - "GREEN": 2, - "BLUE": 1, - "connector": 3, - "always": 2, - "HSYNC": 1, - "resistor": 4, - "VSYNC": 1, - "______": 14, - "vga_hx": 3, - "factor": 4, - "sure": 4, - "||": 5, - "vga_ho": 2, - "equal": 1, - "vga_hd": 2, - "does": 2, - "exceed": 1, - "vga_vd": 2, - "pos/neg": 4, - "recommended": 2, - "shifts": 4, - "right/left": 2, - "up/down": 2, - "vga_hs": 1, - "vga_vs": 1, - "vga_rate": 2, - "limit": 4, - "should": 1, "Graphics": 3, - "v1.0": 4, + "Driver": 4, + "Chip": 7, + "Gracey": 7, "Theory": 1, - "Operation": 2, + "cog": 39, "launched": 1, "processes": 1, "commands": 1, + "via": 5, "routines.": 1, "Points": 1, "arcs": 1, "sprites": 1, + "text": 9, "polygons": 1, "rasterized": 1, "specified": 1, "stretch": 1, + "memory": 2, "serves": 1, - "as": 8, "generic": 1, "bitmap": 15, "buffer.": 1, "displayed": 1, "TV.SRC": 1, "VGA.SRC": 1, + "driver.": 3, "GRAPHICS_DEMO.SRC": 1, "usage": 1, "example.": 1, + "CON": 4, + "#1": 47, "_setup": 1, "_color": 2, "_width": 2, @@ -55455,46 +54953,85 @@ "_textmode": 2, "_fill": 1, "_loop": 5, + "VAR": 10, + "long": 122, "command": 7, "bitmap_base": 7, + "pixel": 40, + "data": 47, "slices": 3, "text_xs": 1, "text_ys": 1, "text_sp": 1, "text_just": 1, "font": 3, + "pointer": 14, + "same": 7, "instances": 1, + "stop": 9, + "cognew": 4, "@loop": 1, "@command": 1, + "Stop": 6, "graphics": 4, + "driver": 17, + "cogstop": 3, "setup": 3, "x_tiles": 9, "y_tiles": 9, "x_origin": 2, "y_origin": 2, "base_ptr": 3, + "|": 22, "bases_ptr": 3, "slices_ptr": 1, + "Set": 5, + "x": 112, + "tiles": 19, + "x16": 7, + "pixels": 14, + "each": 11, + "y": 80, "relative": 2, + "center": 10, + "base": 6, "setcommand": 13, + "write": 36, "bases": 2, + "<<": 70, "retain": 2, + "high": 7, + "level": 5, "bitmap_longs": 1, - "Clear": 2, + "clear": 5, "dest_ptr": 2, "Copy": 1, + "double": 2, "buffered": 1, + "flicker": 5, "destination": 1, + "color": 39, + "bit": 35, "pattern": 2, + "code": 3, + "bits": 29, "@colors": 2, + "&": 21, "determine": 2, "shape/width": 2, "w": 8, + "F": 18, "pixel_width": 1, "pixel_passes": 2, "@w": 1, + "update": 7, + "new": 6, + "repeat": 18, + "i": 24, + "p": 8, "E": 7, "r": 4, + "<": 14, "colorwidth": 1, "plot": 17, "Plot": 3, @@ -55504,13 +55041,17 @@ "arc": 21, "xr": 7, "yr": 7, + "angle": 23, "anglestep": 2, + "steps": 9, "arcmode": 2, "radii": 3, + "initial": 6, "FFF": 3, "..359.956": 3, - "just": 2, + "step": 9, "leaves": 1, + "between": 4, "points": 2, "vec": 1, "vecscale": 5, @@ -55518,32 +55059,40 @@ "vecdef_ptr": 5, "vector": 12, "sprite": 14, + "scale": 7, + "rotation": 3, "Vector": 2, + "word": 212, "length": 4, - "...": 5, "vecarc": 2, "pix": 3, "pixrot": 3, "pixdef_ptr": 3, "mirror": 1, "Pixel": 1, + "justify": 4, "draw": 5, "textarc": 1, "string_ptr": 6, "justx": 2, "justy": 3, + "it": 8, + "may": 6, "necessary": 1, + "call": 44, ".finish": 1, "immediately": 1, "afterwards": 1, "prevent": 1, "subsequent": 1, "clobbering": 1, - "being": 2, "drawn": 1, "@justx": 1, "@x_scale": 1, + "get": 30, "half": 2, + "min": 4, + "max": 6, "pmin": 1, "round/square": 1, "corners": 1, @@ -55557,19 +55106,23 @@ "tri": 2, "x3": 4, "y3": 5, - "x4": 4, "y4": 1, "x1": 5, "y1": 7, "xy": 1, "solid": 1, + "/": 27, "finish": 2, + "Wait": 2, + "current": 3, + "insure": 2, "safe": 1, "manually": 1, "manipulate": 1, "while": 5, "primitives": 1, "xa0": 53, + "start": 16, "ya1": 3, "ya2": 1, "ya3": 2, @@ -55609,6 +55162,7 @@ "a0": 8, "a2": 1, "farc": 41, + "another": 7, "arc/line": 1, "Round": 1, "recipes": 1, @@ -55619,6 +55173,7 @@ "xb2": 26, "xa1": 8, "xb1": 2, + "more": 90, "xa3": 8, "xb3": 6, "xb4": 35, @@ -55645,6 +55200,7 @@ "R": 3, "T": 5, "aA": 5, + "V": 7, "X": 4, "Z": 1, "b": 1, @@ -55653,19 +55209,36 @@ "h": 2, "j": 2, "l": 2, - "n": 4, + "t": 10, "v": 1, + "z": 4, + "delta": 10, "bullet": 1, "fx": 1, "*************************************": 2, "org": 2, + "loop": 14, + "rdlong": 16, + "t1": 139, + "par": 20, + "wz": 21, "arguments": 1, + "mov": 154, + "t2": 90, "t3": 10, + "#8": 14, "arg": 3, "arg0": 12, + "add": 92, + "d0": 11, + "#4": 8, + "djnz": 24, + "wrlong": 6, "dx": 20, "dy": 15, "arg1": 3, + "ror": 4, + "#16": 6, "jump": 1, "jumps": 6, "color_": 1, @@ -55682,6 +55255,8 @@ "arg3": 12, "basesptr": 4, "arg5": 6, + "jmp": 24, + "#loop": 9, "width_": 1, "pwidth": 3, "passes": 3, @@ -55689,38 +55264,59 @@ "line_": 1, "#linepd": 2, "arg7": 6, + "#3": 7, + "cmp": 16, "exit": 5, "px": 14, "py": 11, + "mode": 7, "if_z": 11, "#plotp": 3, + "test": 38, "arg4": 5, "iterations": 1, "vecdef": 1, + "rdword": 10, "t7": 8, "add/sub": 1, "to/from": 1, "t6": 7, + "sumc": 4, "#multiply": 2, "round": 1, + "up": 4, "/2": 1, "lsb": 1, + "shr": 24, "t4": 7, + "if_nc": 15, "h8000": 5, + "wc": 57, + "if_c": 37, "xwords": 1, "ywords": 1, "xxxxxxxx": 2, "save": 1, + "actual": 4, "sy": 5, "rdbyte": 3, "origin": 1, + "adjust": 4, "neg": 2, + "sub": 12, "arg2": 7, + "sumnc": 7, + "if_nz": 18, "yline": 1, "sx": 4, + "#0": 20, + "next": 16, + "#2": 15, + "shl": 21, "t5": 4, "xpixel": 2, "rol": 1, + "muxc": 5, "pcolor": 5, "color1": 2, "color2": 2, @@ -55728,6 +55324,9 @@ "#arcmod": 1, "text_": 1, "chr": 4, + "done": 3, + "scan": 7, + "tjz": 8, "def": 2, "extract": 4, "_0001_1": 1, @@ -55743,7 +55342,9 @@ "_0111_0": 1, "setd_ret": 1, "fontxy_ret": 1, + "ret": 17, "fontb": 1, + "multiply": 8, "fontb_ret": 1, "textmode_": 1, "textsp": 2, @@ -55752,6 +55353,7 @@ "db2": 1, "linechange": 1, "lines_minus_1": 1, + "right": 9, "fractions": 1, "pre": 1, "increment": 1, @@ -55760,17 +55362,25 @@ "integers": 1, "base0": 17, "base1": 10, + "sar": 8, "cmps": 3, + "out": 24, "range": 2, "ylongs": 6, + "skip": 5, "mins": 1, "mask": 3, "mask0": 8, "#5": 2, + "ready": 10, "count": 4, "mask1": 6, "bits0": 6, "bits1": 5, + "pass": 5, + "not": 6, + "full": 3, + "longs": 15, "deltas": 1, "linepd": 1, "wr": 2, @@ -55778,6 +55388,7 @@ "abs": 1, "dominant": 2, "axis": 1, + "last": 6, "ratio": 1, "xloop": 1, "linepd_ret": 1, @@ -55792,16 +55403,19 @@ "account": 1, "special": 1, "case": 5, + "andn": 7, "slice": 7, "shift0": 1, "colorize": 1, "upper": 2, "subx": 1, "#wslice": 1, + "offset": 14, "Get": 2, "args": 5, "move": 2, "using": 1, + "first": 9, "arg6": 1, "arcmod_ret": 1, "arg2/t4": 1, @@ -55813,150 +55427,36 @@ "cartesian": 1, "polarx": 1, "sine_90": 2, + "sine": 7, + "quadrant": 3, + "nz": 3, + "negate": 2, + "table": 9, "sine_table": 1, + "shift": 7, + "final": 3, "sine/cosine": 1, + "integer": 2, + "negnz": 3, "sine_180": 1, "shifted": 1, + "multiplier": 3, "product": 1, "Defined": 1, + "constants": 2, "hFFFFFFFF": 1, "FFFFFFFF": 1, "fontptr": 1, + "Undefined": 2, "temps": 1, + "res": 89, + "pointers": 2, "slicesptr": 1, "line/plot": 1, "coordinates": 1, - "TV": 9, - "Text": 1, - "cols": 5, - "rows": 4, - "screensize": 4, - "lastrow": 2, - "tv_count": 2, - "row": 4, - "flag": 5, - "tv_status": 4, - "off/on": 3, - "tv_pins": 5, - "tccip": 3, - "chroma": 19, - "ntsc/pal": 3, - "tv_screen": 5, - "tv_ht": 5, - "tv_hx": 5, - "tv_ho": 5, - "tv_broadcast": 4, - "basepin": 3, - "setcolors": 2, - "@palette": 1, - "longmove": 2, - "@tv_status": 3, - "@tv_params": 1, - "@screen": 3, - "tv_colors": 2, - "tv.start": 1, - "tv.stop": 2, - "stringptr": 3, - "strsize": 2, - "_000_000_000": 2, - "//": 4, - "elseif": 2, - "lookupz": 2, - "..": 4, - "k": 1, - "Output": 1, - "backspace": 1, - "tab": 3, - "spaces": 1, - "follows": 4, - "Y": 2, - "others": 1, - "printable": 1, - "characters": 1, - "wordfill": 2, - "print": 2, - "A..": 1, - "newline": 3, - "other": 1, - "colorptr": 2, - "fore": 3, - "Override": 1, - "default": 1, - "palette": 2, - "list": 1, - "arranged": 3, - "scroll": 1, - "hc": 1, - "ho": 1, - "white": 2, - "dark": 2, - "BB": 1, - "yellow": 1, - "brown": 1, - "cyan": 3, - "pink": 1, - "Terminal": 1, - "REVISION": 2, - "HISTORY": 2, - "/15/2006": 2, - "instead": 1, - "method": 2, - "minimum": 2, - "x_scale": 4, - "x_spacing": 4, - "normal": 1, - "x_chr": 2, - "y_chr": 5, - "y_scale": 3, - "y_spacing": 3, - "y_offset": 2, - "x_limit": 2, - "x_screen": 1, - "y_limit": 3, - "y_screen": 4, - "y_max": 3, - "y_screen_bytes": 2, - "y_scroll": 2, - "y_scroll_longs": 4, - "y_clear": 2, - "y_clear_longs": 2, - "paramcount": 1, - "ccinp": 1, - "swap": 2, - "tv_hc": 1, - "cells": 1, - "cell": 1, - "@bitmap": 1, - "FC0": 1, - "gr.start": 2, - "gr.setup": 2, - "gr.textmode": 1, - "gr.width": 1, - "gr.stop": 1, - "schemes": 1, - "gr.color": 1, - "gr.text": 1, - "@c": 1, - "gr.finish": 2, - "PRI": 1, - "tvparams": 1, - "tvparams_pins": 1, - "_0101": 1, - "vc": 1, - "vo": 1, - "_250_000": 2, - "auralcog": 1, - "color_schemes": 1, - "BC_6C_05_02": 1, - "E_0D_0C_0A": 1, - "E_6D_6C_6A": 1, - "BE_BD_BC_BA": 1, - "*****************************************": 4, "Inductive": 1, "Sensor": 1, "Demo": 1, - "Beau": 2, - "Schwabe": 2, "Test": 2, "Circuit": 1, "pF": 1, @@ -55965,27 +55465,32 @@ "FPin": 2, "SDF": 1, "sigma": 3, + "feedback": 2, "SDI": 1, - "input": 2, "GND": 4, "Coils": 1, "Wire": 1, + "used": 9, "was": 2, + "GREEN": 2, "about": 4, "gauge": 1, "Coke": 3, "Can": 3, + "form": 7, + "MHz": 16, "BIC": 1, "pen": 1, "How": 1, + "does": 2, "work": 2, "Note": 1, "reported": 2, "resonate": 5, + "frequency": 18, "LC": 8, "frequency.": 2, "Instead": 1, - "where": 2, "voltage": 5, "produced": 1, "circuit": 5, @@ -55993,12 +55498,14 @@ "In": 2, "below": 4, "When": 1, + "you": 5, "apply": 1, "small": 1, "specific": 1, "near": 1, "uncommon": 1, "measure": 1, + "times": 3, "amount": 1, "applying": 1, "circuit.": 1, @@ -56006,11 +55513,15 @@ "diode": 2, "basically": 1, "feeds": 1, + "divide": 3, "divider": 1, "...So": 1, "order": 1, + "see": 2, "ADC": 2, "sweep": 2, + "result": 6, + "output": 11, "needs": 1, "generate": 1, "Volts": 1, @@ -56020,6 +55531,7 @@ "since": 1, "sensitive": 1, "works": 1, + "after": 2, "divider.": 1, "typical": 1, "magnitude": 1, @@ -56027,7 +55539,6 @@ "might": 1, "look": 2, "something": 1, - "like": 4, "*****": 4, "...With": 1, "looks": 1, @@ -56048,7 +55559,8 @@ "situation": 1, "exactly": 1, "great": 1, - "I/O": 3, + "gr.start": 2, + "gr.setup": 2, "FindResonateFrequency": 1, "DisplayInductorValue": 2, "Freq.Synth": 1, @@ -56059,6 +55571,7 @@ "gr.copy": 2, "display_base": 2, "Option": 2, + "Start": 6, "*********************************************": 2, "Frequency": 1, "LowerFrequency": 2, @@ -56069,169 +55582,32 @@ "gr.line": 3, "FTemp/1024": 1, "Finish": 1, - "tv_mode": 2, - "lntsc": 3, - "fpal": 2, - "_433_618": 2, - "PAL": 10, - "spal": 3, - "tvptr": 3, - "vinv": 2, - "burst": 2, - "sync_high2": 2, - "black": 2, - "leftmost": 1, - "vert": 1, - "movs": 9, - "if_z_eq_c": 1, - "#hsync": 1, - "pulses": 2, - "vsync1": 2, - "#sync_low1": 1, - "hhalf": 2, - "field2": 1, - "#superfield": 1, - "Blank": 1, - "Horizontal": 1, - "pal": 2, - "toggle": 1, - "phaseflip": 4, - "phasemask": 2, - "sync_scale1": 1, - "hsync_ret": 1, - "vsync_high": 1, - "#sync_high1": 1, - "Tasks": 1, - "performed": 1, - "sections": 1, - "#_enable": 1, - "rd": 1, - "#wtab": 1, - "ltab": 1, - "#ltab": 1, - "cancel": 1, - "_broadcast": 4, - "m8": 3, - "fcolor": 4, - "#divide": 2, - "_111": 1, - "m128": 2, - "_100": 1, - "_001": 1, - "broadcast/baseband": 1, - "strip": 3, - "baseband": 18, - "_auralcog": 1, - "colorreg": 3, - "colorloop": 1, - "m1": 4, - "outa": 2, - "reload": 1, - "d0s1": 1, - "F0F0F0F0": 1, - "pins0": 1, - "_01110000_00001111_00000111": 1, - "pins1": 1, - "_11110111_01111111_01110111": 1, - "sync_high1": 1, - "_101010_0101": 1, - "NTSC/PAL": 2, - "metrics": 1, - "tables": 1, - "wtab": 1, - "sntsc": 3, - "lpal": 3, - "hrest": 2, - "vvis": 2, - "vrep": 2, - "_8A": 1, - "_AA": 1, - "sync_scale2": 1, - "_00000000_01_10101010101010_0101": 1, - "m2": 1, - "contiguous": 1, - "tv_status.": 1, - "_________": 5, - "tv_enable": 2, - "requirement": 2, - "_______": 2, - "_0111": 6, - "_1111": 6, - "_0000": 4, - "nibble": 4, - "attach": 1, - "/560/1100": 2, - "network": 1, - "visual": 1, - "carrier": 1, - "mixing": 2, - "mix": 2, - "black/white": 2, - "composite": 1, - "doubles": 1, - "format": 1, - "_318_180": 1, - "_579_545": 1, - "_734_472": 1, - "itself": 1, - "tv_vt": 3, - "valid": 2, - "luminance": 2, - "adds/subtracts": 1, - "beware": 1, - "modulated": 1, - "produce": 1, - "saturated": 1, - "toggling": 1, - "levels": 1, - "because": 1, - "abruptly": 1, - "rather": 1, - "against": 1, - "background": 1, - "best": 1, - "appearance": 1, - "_____": 6, - "practical": 2, - "/30": 1, - "tv_vx": 2, - "tv_vo": 2, - "centered": 2, - "image": 2, - "____________": 1, - "expressed": 1, - "ie": 1, - "channel": 1, - "modulator": 2, - "turned": 2, - "broadcasting": 1, - "___________": 1, - "tv_auralcog": 1, - "supply": 1, - "uses": 2, - "selected": 1, - "bandwidth": 2, - "vary": 1, "PS/2": 1, "Keyboard": 1, "v1.0.1": 2, + "REVISION": 2, + "HISTORY": 2, + "/15/2006": 2, "Tool": 1, "par_tail": 1, "key": 4, + "buffer": 4, "head": 1, "par_present": 1, "states": 1, "par_keys": 1, "******************************************": 2, "entry": 1, + "movd": 10, "#_dpin": 1, "masks": 1, "dmask": 4, "_dpin": 3, "cmask": 2, "_cpin": 2, + "reset": 14, + "parameter": 14, "_head": 6, - "dira": 3, "_present/_states": 1, "dlsb": 2, "stat": 6, @@ -56252,16 +55628,21 @@ "set/clear": 1, "#_states": 1, "reg": 5, + "muxnc": 5, "cmpsub": 4, "shift/ctrl/alt/win": 1, "pairs": 1, "E0": 1, "handle": 1, "scrlock/capslock/numlock": 1, + "_000": 5, "_locks": 5, "#29": 1, + "change": 3, "configure": 3, + "flag": 5, "leds": 3, + "check": 5, "shift1": 1, "if_nz_and_c": 4, "#@shift1": 1, @@ -56271,9 +55652,11 @@ "considering": 1, "capslock": 1, "if_nz_and_nc": 1, + "xor": 8, "flags": 1, "alt": 1, "room": 1, + "valid": 2, "enter": 1, "FF": 3, "#11*4": 1, @@ -56283,17 +55666,22 @@ "lock": 1, "#transmit": 2, "rev": 1, + "rcl": 2, "_present": 2, "#update": 1, "Lookup": 2, + "perform": 2, "lookup": 1, + "movs": 9, "#table": 1, "#27": 1, "#rand": 1, "Transmit": 1, "pull": 2, "clock": 4, + "low": 5, "napshr": 3, + "#13": 3, "#18": 2, "release": 1, "transmit_bit": 1, @@ -56302,6 +55690,7 @@ "wcond": 3, "c1": 2, "c0d0": 2, + "wait": 6, "until": 3, "#wait": 2, "#receive_ack": 1, @@ -56315,7 +55704,6 @@ "us": 1, "#nap": 1, "_d3": 1, - "ina": 3, "#receive_bit": 1, "align": 1, "isolate": 1, @@ -56325,7 +55713,9 @@ "wait_c0": 1, "c0": 1, "timeout": 1, + "ms": 4, "wloop": 1, + "required": 4, "_d4": 1, "replaced": 1, "c0/c1/c0d0/c1d1": 1, @@ -56335,8 +55725,11 @@ "if_c_or_nz": 1, "c1d1": 1, "if_nc_or_z": 1, + "nap": 5, "scales": 1, + "time": 7, "snag": 1, + "cnt": 2, "elapses": 1, "nap_ret": 1, "F9": 1, @@ -56382,88 +55775,814 @@ "C6E9": 1, "ScrLock": 1, "D6": 1, + "Uninitialized": 3, + "_________": 5, "Key": 1, "Codes": 1, "keypress": 1, "keystate": 2, "E0..FF": 1, "AS": 1, - "Keypad": 1, - "Reader": 1, - "capacitive": 1, - "PIN": 1, - "approach": 1, - "reading": 1, - "keypad.": 1, - "ALL": 2, - "made": 2, - "LOW": 2, - "OUTPUT": 2, - "pins.": 1, - "Then": 1, - "INPUT": 2, - "state.": 1, - "At": 1, - "HIGH": 3, - "closed": 1, - "otherwise": 1, - "returned.": 1, - "keypad": 4, - "decoding": 1, - "routine": 1, - "subroutines": 1, - "entire": 1, - "matrix": 1, - "WORD": 1, - "variable": 1, - "indicating": 1, - "buttons": 2, - "pressed.": 1, - "Multiple": 1, - "button": 2, - "presses": 1, - "allowed": 1, - "understanding": 1, - "BOX": 2, - "entries": 1, - "confused.": 1, - "An": 1, - "entry...": 1, - "etc.": 1, - "pressed": 3, - "evaluate": 1, - "even": 1, - "not.": 1, - "There": 1, - "danger": 1, - "physical": 1, - "electrical": 1, - "damage": 1, - "way": 1, - "sensing": 1, - "happens": 1, - "work.": 1, - "Schematic": 1, - "No": 2, - "capacitors.": 1, - "connections": 1, - "directly": 1, - "ReadRow": 4, - "Shift": 3, - "preset": 1, - "P0": 2, - "P7": 2, - "LOWs": 1, - "INPUTSs": 1, - "act": 1, - "tiny": 1, - "capacitors": 1, - "Pin": 1, - "OUTPUT...": 1, - "Make": 1, - "Pn": 1, - "remain": 1, - "discharged": 1 + "TV": 9, + "May": 2, + "tile": 41, + "size": 5, + "enable": 5, + "efficient": 2, + "tv_mode": 2, + "NTSC": 11, + "lntsc": 3, + "cycles": 4, + "per": 4, + "sync": 10, + "fpal": 2, + "_433_618": 2, + "PAL": 10, + "spal": 3, + "colortable": 7, + "inside": 2, + "tvptr": 3, + "starts": 4, + "available": 4, + "@entry": 3, + "Assembly": 2, + "language": 2, + "Entry": 2, + "tasks": 6, + "#10": 2, + "Superfield": 2, + "_mode": 7, + "interlace": 20, + "vinv": 2, + "hsync": 5, + "waitvid": 3, + "burst": 2, + "sync_high2": 2, + "task": 2, + "section": 4, + "undisturbed": 2, + "black": 2, + "visible": 7, + "vb": 2, + "leftmost": 1, + "_vt": 3, + "vertical": 29, + "expand": 3, + "vert": 1, + "vscl": 12, + "hb": 2, + "horizontal": 21, + "hx": 5, + "colors": 18, + "screen": 13, + "video": 7, + "repoint": 2, + "hf": 2, + "linerot": 5, + "field1": 4, + "unless": 2, + "invisible": 8, + "if_z_eq_c": 1, + "#hsync": 1, + "vsync": 4, + "pulses": 2, + "vsync1": 2, + "#sync_low1": 1, + "hhalf": 2, + "field2": 1, + "#superfield": 1, + "Blank": 1, + "Horizontal": 1, + "pal": 2, + "toggle": 1, + "phaseflip": 4, + "phasemask": 2, + "sync_scale1": 1, + "blank": 2, + "hsync_ret": 1, + "vsync_high": 1, + "#sync_high1": 1, + "Tasks": 1, + "performed": 1, + "sections": 1, + "during": 2, + "back": 8, + "porch": 9, + "load": 3, + "#_enable": 1, + "_pins": 4, + "_enable": 2, + "#disabled": 2, + "break": 6, + "return": 15, + "later": 6, + "rd": 1, + "#wtab": 1, + "ltab": 1, + "#ltab": 1, + "CLKFREQ": 10, + "cancel": 1, + "_broadcast": 4, + "m8": 3, + "jmpret": 5, + "taskptr": 3, + "taskret": 4, + "ctra": 5, + "pll": 5, + "fcolor": 4, + "#divide": 2, + "vco": 3, + "movi": 3, + "_111": 1, + "ctrb": 4, + "limit": 4, + "m128": 2, + "_100": 1, + "within": 5, + "_001": 1, + "frqb": 2, + "swap": 2, + "broadcast/baseband": 1, + "strip": 3, + "chroma": 19, + "baseband": 18, + "_auralcog": 1, + "_hx": 4, + "consider": 2, + "lineadd": 4, + "lineinc": 3, + "/160": 2, + "loaded": 3, + "#9": 2, + "FC": 2, + "_colors": 2, + "colorreg": 3, + "d6": 3, + "colorloop": 1, + "keep": 2, + "loading": 2, + "m1": 4, + "multiply_ret": 2, + "Disabled": 2, + "try": 2, + "again": 2, + "reload": 1, + "_000_000": 6, + "d0s1": 1, + "F0F0F0F0": 1, + "pins0": 1, + "_01110000_00001111_00000111": 1, + "pins1": 1, + "_11110111_01111111_01110111": 1, + "sync_high1": 1, + "_101010_0101": 1, + "NTSC/PAL": 2, + "metrics": 1, + "tables": 1, + "wtab": 1, + "sntsc": 3, + "lpal": 3, + "hrest": 2, + "vvis": 2, + "vrep": 2, + "_8A": 1, + "_AA": 1, + "sync_scale2": 1, + "_00000000_01_10101010101010_0101": 1, + "m2": 1, + "Parameter": 4, + "/non": 4, + "tccip": 3, + "_screen": 3, + "@long": 2, + "_ht": 2, + "_ho": 2, + "fit": 2, + "contiguous": 1, + "tv_status": 4, + "off/on": 3, + "tv_pins": 5, + "ntsc/pal": 3, + "tv_screen": 5, + "tv_ht": 5, + "tv_hx": 5, + "expansion": 8, + "tv_ho": 5, + "tv_broadcast": 4, + "aural": 13, + "fm": 6, + "preceding": 2, + "copied": 2, + "your": 2, + "code.": 2, + "After": 2, + "setting": 2, + "variables": 3, + "@tv_status": 3, + "All": 2, + "reloaded": 2, + "superframe": 2, + "allowing": 2, + "live": 2, + "changes.": 2, + "minimize": 2, + "correlate": 2, + "changes": 3, + "tv_status.": 1, + "Experimentation": 2, + "optimize": 2, + "some": 3, + "parameters.": 2, + "descriptions": 2, + "sets": 3, + "indicate": 2, + "disabled": 3, + "tv_enable": 2, + "requirement": 2, + "currently": 4, + "outputting": 4, + "driven": 2, + "reduces": 2, + "power": 3, + "_______": 2, + "select": 9, + "group": 7, + "_0111": 6, + "broadcast": 19, + "_1111": 6, + "_0000": 4, + "active": 3, + "top": 10, + "nibble": 4, + "bottom": 5, + "signal": 8, + "arranged": 3, + "attach": 1, + "ohm": 10, + "resistor": 4, + "sum": 7, + "/560/1100": 2, + "subcarrier": 3, + "network": 1, + "visual": 1, + "carrier": 1, + "selects": 4, + "x32": 6, + "tileheight": 4, + "controls": 4, + "mixing": 2, + "mix": 2, + "black/white": 2, + "composite": 1, + "progressive": 2, + "less": 5, + "good": 5, + "motion": 2, + "interlaced": 5, + "doubles": 1, + "format": 1, + "ticks": 11, + "must": 18, + "least": 14, + "_318_180": 1, + "_579_545": 1, + "Hz": 5, + "_734_472": 1, + "itself": 1, + "words": 5, + "define": 10, + "tv_vt": 3, + "has": 4, + "bitfields": 2, + "colorset": 2, + "ptr": 5, + "pixelgroup": 2, + "colorset*": 2, + "pixelgroup**": 2, + "ppppppppppcccc00": 2, + "colorsets": 4, + "four": 8, + "**": 2, + "pixelgroups": 2, + "": 5, + "tv_colors": 2, + "fields": 2, + "values": 2, + "luminance": 2, + "modulation": 4, + "adds/subtracts": 1, + "beware": 1, + "modulated": 1, + "produce": 1, + "saturated": 1, + "toggling": 1, + "levels": 1, + "because": 1, + "abruptly": 1, + "rather": 1, + "against": 1, + "white": 2, + "background": 1, + "best": 1, + "appearance": 1, + "_____": 6, + "practical": 2, + "/30": 1, + "factor": 4, + "sure": 4, + "||": 5, + "than": 5, + "tv_vx": 2, + "tv_vo": 2, + "pos/neg": 4, + "centered": 2, + "image": 2, + "shifts": 4, + "right/left": 2, + "up/down": 2, + "____________": 1, + "expressed": 1, + "ie": 1, + "channel": 1, + "_250_000": 2, + "modulator": 2, + "turned": 2, + "saves": 2, + "broadcasting": 1, + "___________": 1, + "tv_auralcog": 1, + "supply": 1, + "selected": 1, + "bandwidth": 2, + "KHz": 3, + "vary": 1, + "Terminal": 1, + "instead": 1, + "minimum": 2, + "x_scale": 4, + "x_spacing": 4, + "normal": 1, + "x_chr": 2, + "y_chr": 5, + "y_scale": 3, + "y_spacing": 3, + "y_offset": 2, + "x_limit": 2, + "x_screen": 1, + "y_limit": 3, + "y_screen": 4, + "y_max": 3, + "y_screen_bytes": 2, + "y_scroll": 2, + "y_scroll_longs": 4, + "y_clear": 2, + "y_clear_longs": 2, + "paramcount": 1, + "ccinp": 1, + "tv_hc": 1, + "cells": 1, + "cell": 1, + "@bitmap": 1, + "FC0": 1, + "gr.textmode": 1, + "gr.width": 1, + "tv.stop": 2, + "gr.stop": 1, + "schemes": 1, + "tab": 3, + "gr.color": 1, + "gr.text": 1, + "@c": 1, + "gr.finish": 2, + "newline": 3, + "strsize": 2, + "_000_000_000": 2, + "//": 4, + "elseif": 2, + "lookupz": 2, + "..": 4, + "PRI": 1, + "longmove": 2, + "longfill": 2, + "tvparams": 1, + "tvparams_pins": 1, + "_0101": 1, + "vc": 1, + "vx": 2, + "vo": 1, + "auralcog": 1, + "color_schemes": 1, + "BC_6C_05_02": 1, + "E_0D_0C_0A": 1, + "E_6D_6C_6A": 1, + "BE_BD_BC_BA": 1, + "Text": 1, + "x13": 2, + "cols": 5, + "rows": 4, + "screensize": 4, + "lastrow": 2, + "tv_count": 2, + "row": 4, + "tv": 2, + "basepin": 3, + "setcolors": 2, + "@palette": 1, + "@tv_params": 1, + "@screen": 3, + "tv.start": 1, + "stringptr": 3, + "k": 1, + "Output": 1, + "backspace": 1, + "spaces": 1, + "follows": 4, + "Y": 2, + "others": 1, + "printable": 1, + "characters": 1, + "wordfill": 2, + "print": 2, + "A..": 1, + "other": 1, + "colorptr": 2, + "fore": 3, + "Override": 1, + "default": 1, + "palette": 2, + "list": 1, + "scroll": 1, + "hc": 1, + "ho": 1, + "dark": 2, + "blue": 3, + "BB": 1, + "yellow": 1, + "brown": 1, + "cyan": 3, + "red": 2, + "pink": 1, + "VGA": 8, + "vga_mode": 3, + "vgaptr": 3, + "hv": 5, + "bcolor": 3, + "#colortable": 2, + "#blank_line": 3, + "nobl": 1, + "_vx": 1, + "nobp": 1, + "nofp": 1, + "#blank_hsync": 1, + "front": 4, + "vf": 1, + "nofl": 1, + "#tasks": 1, + "before": 1, + "_vs": 2, + "except": 1, + "#blank_vsync": 1, + "#field": 1, + "superfield": 1, + "blank_vsync": 1, + "h2": 2, + "if_c_and_nz": 1, + "blank_hsync": 1, + "_hf": 1, + "invisble": 1, + "_hb": 1, + "#hv": 1, + "blank_hsync_ret": 1, + "blank_line_ret": 1, + "blank_vsync_ret": 1, + "_status": 1, + "#paramcount": 1, + "directions": 1, + "_rate": 3, + "pllmin": 1, + "_011": 1, + "rate": 6, + "hvbase": 5, + "frqa": 3, + "vmask": 1, + "hmask": 1, + "vcfg": 2, + "colormask": 1, + "waitcnt": 3, + "#entry": 1, + "Initialized": 1, + "lowest": 1, + "pllmax": 1, + "*16": 1, + "m4": 1, + "tihv": 1, + "_hd": 1, + "_hs": 1, + "_vd": 1, + "underneath": 1, + "BF": 1, + "___": 1, + "/1/2": 1, + "off/visible/invisible": 1, + "vga_enable": 3, + "pppttt": 1, + "vga_colors": 2, + "vga_vt": 6, + "vga_vx": 4, + "vga_vo": 4, + "vga_hf": 2, + "vga_hb": 2, + "vga_vf": 2, + "vga_vb": 2, + "tick": 2, + "@vga_status": 1, + "vga_status.": 1, + "__________": 4, + "vga_status": 1, + "________": 3, + "vga_pins": 1, + "monitors": 1, + "allows": 1, + "polarity": 1, + "respectively": 1, + "vga_screen": 1, + "vga_ht": 3, + "care": 1, + "suggested": 1, + "bits/pins": 3, + "green": 1, + "bit/pin": 1, + "signals": 1, + "connect": 3, + "RED": 1, + "BLUE": 1, + "connector": 3, + "always": 2, + "HSYNC": 1, + "VSYNC": 1, + "______": 14, + "vga_hx": 3, + "vga_ho": 2, + "equal": 1, + "vga_hd": 2, + "exceed": 1, + "vga_vd": 2, + "recommended": 2, + "vga_hs": 1, + "vga_vs": 1, + "vga_rate": 2, + "should": 1, + "Vocal": 2, + "Tract": 2, + "October": 1, + "synthesizes": 1, + "human": 1, + "vocal": 10, + "tract": 12, + "real": 2, + "It": 1, + "MHz.": 1, + "controlled": 1, + "reside": 1, + "parent": 1, + "aa": 2, + "ga": 5, + "gp": 2, + "vp": 3, + "vr": 1, + "f1": 4, + "f2": 1, + "f3": 3, + "f4": 2, + "na": 2, + "nf": 2, + "fa": 2, + "ff": 2, + "values.": 2, + "Before": 1, + "were": 1, + "interpolation": 1, + "shy": 1, + "frame": 12, + "makes": 1, + "behave": 1, + "sensibly": 1, + "gaps.": 1, + "frame_buffers": 2, + "bytes": 2, + "frame_longs": 3, + "frame_bytes": 1, + "...must": 1, + "dira_": 3, + "dirb_": 1, + "ctra_": 1, + "ctrb_": 3, + "frqa_": 3, + "cnt_": 1, + "many": 1, + "...contiguous": 1, + "tract_ptr": 3, + "pos_pin": 7, + "neg_pin": 6, + "fm_offset": 5, + "positive": 1, + "also": 1, + "enabled": 2, + "generation": 2, + "_500_000": 1, + "Remember": 1, + "duty": 2, + "Ready": 1, + "clkfreq": 2, + "Launch": 1, + "@attenuation": 1, + "Reset": 1, + "buffers": 1, + "@index": 1, + "constant": 3, + "frame_buffer_longs": 2, + "set_attenuation": 1, + "master": 2, + "attenuation": 3, + "initially": 2, + "set_pace": 2, + "percentage": 3, + "pace": 3, + "go": 1, + "Queue": 1, + "transition": 1, + "over": 2, + "Load": 1, + "bytemove": 1, + "@frames": 1, + "index": 5, + "Increment": 1, + "Returns": 4, + "queue": 2, + "useful": 2, + "checking": 1, + "would": 1, + "have": 1, + "frames": 2, + "empty": 2, + "detecting": 1, + "finished": 1, + "sample_ptr": 1, + "receives": 1, + "audio": 1, + "samples": 1, + "updated": 1, + "@sample": 1, + "aural_id": 1, + "id": 2, + "executing": 1, + "algorithm": 1, + "connecting": 1, + "Initialization": 1, + "reserved": 3, + "clear_cnt": 1, + "#2*15": 1, + "hub": 1, + "minst": 3, + "d0s0": 3, + "mult_ret": 1, + "antilog_ret": 1, + "assemble": 1, + "cordic": 4, + "reserves": 2, + "cstep": 1, + "instruction": 2, + "prepare": 1, + "cnt_value": 3, + "cnt_ticks": 3, + "Loop": 1, + "sample": 2, + "period": 1, + "cycle": 1, + "driving": 1, + "h80000000": 2, + "White": 1, + "noise": 3, + "source": 2, + "lfsr": 1, + "lfsr_taps": 2, + "Aspiration": 1, + "vibrato": 3, + "vphase": 2, + "glottal": 2, + "pitch": 5, + "mesh": 1, + "tune": 2, + "convert": 1, + "log": 2, + "phase": 2, + "gphase": 3, + "formant2": 2, + "rotate": 2, + "f2x": 3, + "f2y": 3, + "#cordic": 2, + "formant4": 2, + "f4x": 3, + "f4y": 3, + "subtract": 1, + "nx": 4, + "negated": 1, + "nasal": 2, + "amplitude": 3, + "#mult": 1, + "fphase": 4, + "frication": 2, + "#sine": 1, + "Handle": 1, + "frame_ptr": 6, + "past": 1, + "miscellaneous": 2, + "frame_index": 3, + "stepsize": 2, + "step_size": 5, + "h00FFFFFF": 2, + "final1": 2, + "finali": 2, + "iterate": 3, + "aa..ff": 4, + "accurate": 1, + "accumulation": 1, + "step_acc": 3, + "set2": 3, + "#par_curr": 1, + "set3": 2, + "#par_next": 1, + "set4": 3, + "#par_step": 1, + "#24": 1, + "par_curr": 3, + "absolute": 1, + "msb": 2, + "nr": 1, + "mult": 2, + "par_step": 1, + "frame_cnt": 2, + "step1": 2, + "stepi": 1, + "stepframe": 1, + "#frame_bytes": 1, + "par_next": 2, + "Math": 1, + "Subroutines": 1, + "Antilog": 1, + "whole": 2, + "fraction": 1, + "antilog": 2, + "FFEA0000": 1, + "h00000FFE": 2, + "insert": 2, + "leading": 1, + "Scaled": 1, + "unsigned": 3, + "h00001000": 2, + "negc": 1, + "Multiply": 1, + "#15": 1, + "mult_step": 1, + "Cordic": 1, + "degree": 1, + "#cordic_steps": 1, + "gets": 1, + "assembled": 1, + "cordic_dx": 1, + "incremented": 1, + "cordic_a": 1, + "cordic_delta": 2, + "linear": 1, + "register": 1, + "B901476": 1, + "greater": 1, + "h40000000": 1, + "h01000000": 1, + "FFFFFF": 1, + "h00010000": 1, + "h0000D000": 1, + "D000": 1, + "h00007000": 1, + "FFE": 1, + "h00000800": 1, + "registers": 2, + "startup": 2, + "Data": 1, + "zeroed": 1, + "cleared": 1, + "f1x": 1, + "f1y": 1, + "f3x": 1, + "f3y": 1, + "aspiration": 1, + "***": 1, + "mult_steps": 1, + "assembly": 1, + "area": 1, + "w/ret": 1, + "cordic_ret": 1 }, "Protocol Buffer": { "package": 1, @@ -56610,63 +56729,6 @@ "<": 13, "Just": 7, "Nothing": 7, - "ReactiveJQueryTest": 1, - "flip": 2, - "Control.Monad": 1, - "Control.Monad.Eff": 1, - "Control.Monad.JQuery": 1, - "Control.Reactive": 1, - "Control.Reactive.JQuery": 1, - "map": 8, - "head": 2, - "Data.Foldable": 2, - "Data.Monoid": 1, - "Debug.Trace": 1, - "Global": 1, - "parseInt": 1, - "main": 1, - "do": 4, - "personDemo": 2, - "todoListDemo": 1, - "greet": 1, - "firstName": 2, - "lastName": 2, - "Create": 3, - "new": 1, - "reactive": 1, - "variables": 1, - "to": 3, - "hold": 1, - "the": 3, - "user": 1, - "readRArray": 1, - "insertRArray": 1, - "{": 25, - "text": 5, - "completed": 2, - "}": 26, - "paragraph": 2, - "display": 2, - "next": 1, - "task": 4, - "nextTaskLabel": 3, - "create": 2, - "append": 2, - "nextTask": 2, - "toComputedArray": 2, - "toComputed": 2, - "bindTextOneWay": 2, - "counter": 3, - "counterLabel": 3, - "rs": 2, - "cs": 2, - "<->": 1, - "if": 1, - "then": 1, - "else": 1, - "entry": 1, - "entry.completed": 1, - "foldl": 4, "Data.Map": 1, "Map": 26, "empty": 6, @@ -56678,19 +56740,24 @@ "toList": 10, "fromList": 3, "union": 3, + "map": 8, "qualified": 1, "as": 1, "P": 1, "concat": 3, + "Data.Foldable": 2, + "foldl": 4, "k": 108, "v": 57, "Leaf": 15, "|": 9, "Branch": 27, + "{": 25, "key": 13, "value": 8, "left": 15, "right": 14, + "}": 26, "eqMap": 1, "P.Eq": 11, "m1": 6, @@ -56716,10 +56783,136 @@ "b.value": 2, "v1": 3, "v2.": 1, - "v2": 2 + "v2": 2, + "ReactiveJQueryTest": 1, + "flip": 2, + "Control.Monad": 1, + "Control.Monad.Eff": 1, + "Control.Monad.JQuery": 1, + "Control.Reactive": 1, + "Control.Reactive.JQuery": 1, + "head": 2, + "Data.Monoid": 1, + "Debug.Trace": 1, + "Global": 1, + "parseInt": 1, + "main": 1, + "do": 4, + "personDemo": 2, + "todoListDemo": 1, + "greet": 1, + "firstName": 2, + "lastName": 2, + "Create": 3, + "new": 1, + "reactive": 1, + "variables": 1, + "to": 3, + "hold": 1, + "the": 3, + "user": 1, + "readRArray": 1, + "insertRArray": 1, + "text": 5, + "completed": 2, + "paragraph": 2, + "display": 2, + "next": 1, + "task": 4, + "nextTaskLabel": 3, + "create": 2, + "append": 2, + "nextTask": 2, + "toComputedArray": 2, + "toComputed": 2, + "bindTextOneWay": 2, + "counter": 3, + "counterLabel": 3, + "rs": 2, + "cs": 2, + "<->": 1, + "if": 1, + "then": 1, + "else": 1, + "entry": 1, + "entry.completed": 1 }, "Python": { + "xspacing": 4, "#": 28, + "How": 2, + "far": 1, + "apart": 1, + "should": 1, + "each": 1, + "horizontal": 1, + "location": 1, + "be": 1, + "spaced": 1, + "maxwaves": 3, + "total": 1, + "of": 5, + "waves": 1, + "to": 5, + "add": 1, + "together": 1, + "theta": 3, + "amplitude": 3, + "[": 165, + "]": 165, + "Height": 1, + "wave": 2, + "dx": 8, + "yvalues": 7, + "def": 87, + "setup": 2, + "(": 850, + ")": 861, + "size": 5, + "frameRate": 1, + "colorMode": 1, + "RGB": 1, + "w": 2, + "width": 1, + "+": 51, + "for": 69, + "i": 13, + "in": 91, + "range": 5, + "amplitude.append": 1, + "random": 2, + "period": 2, + "many": 1, + "pixels": 1, + "before": 1, + "the": 6, + "repeats": 1, + "dx.append": 1, + "TWO_PI": 1, + "/": 26, + "*": 38, + "_": 6, + "yvalues.append": 1, + "draw": 2, + "background": 2, + "calcWave": 2, + "renderWave": 2, + "len": 11, + "j": 7, + "x": 34, + "if": 160, + "%": 33, + "sin": 1, + "else": 33, + "cos": 1, + "noStroke": 2, + "fill": 2, + "ellipseMode": 1, + "CENTER": 1, + "v": 19, + "enumerate": 2, + "ellipse": 1, + "height": 1, "import": 55, "os": 2, "sys": 3, @@ -56737,45 +56930,34 @@ "res": 3, "importer": 1, "c4dtools.prepare": 1, - "(": 850, "__file__": 1, "__res__": 1, - ")": 861, "settings": 2, "c4dtools.helpers.Attributor": 2, "{": 27, "res.file": 3, "}": 27, - "def": 87, "align_nodes": 2, "nodes": 11, "mode": 5, "spacing": 7, "r": 9, "modes": 3, - "[": 165, - "]": 165, - "if": 160, "not": 69, "return": 68, - "in": 91, "raise": 23, "ValueError": 6, - "+": 51, ".join": 4, "get_0": 12, "lambda": 6, - "x": 34, "x.x": 1, "get_1": 4, "x.y": 1, "set_0": 6, - "v": 19, "setattr": 16, "set_1": 4, "graphnode.GraphNode": 1, "n": 6, - "for": 69, "nodes.sort": 1, "key": 6, "n.position": 1, @@ -56789,14 +56971,11 @@ "position": 12, "node.position": 2, "-": 36, - "size": 5, "node.size": 1, "<": 2, - "else": 33, "new_positions.append": 1, "bbox_size": 2, "bbox_size_2": 2, - "*": 38, "itertools.izip": 1, "align_nodes_shortcut": 3, "master": 2, @@ -56878,74 +57057,461 @@ "options": 4, "__name__": 3, "c4dtools.plugins.main": 1, - "xspacing": 4, - "How": 2, - "far": 1, - "apart": 1, - "should": 1, - "each": 1, - "horizontal": 1, - "location": 1, - "be": 1, - "spaced": 1, - "maxwaves": 3, - "total": 1, - "of": 5, - "waves": 1, - "to": 5, - "add": 1, - "together": 1, - "theta": 3, - "amplitude": 3, - "Height": 1, - "wave": 2, - "dx": 8, - "yvalues": 7, - "setup": 2, - "frameRate": 1, - "colorMode": 1, - "RGB": 1, - "w": 2, - "width": 1, - "i": 13, - "range": 5, - "amplitude.append": 1, - "random": 2, - "period": 2, - "many": 1, - "pixels": 1, - "before": 1, - "the": 6, - "repeats": 1, - "dx.append": 1, - "TWO_PI": 1, - "/": 26, - "_": 6, - "yvalues.append": 1, - "draw": 2, - "background": 2, - "calcWave": 2, - "renderWave": 2, - "len": 11, - "j": 7, - "%": 33, - "sin": 1, - "cos": 1, - "noStroke": 2, - "fill": 2, - "ellipseMode": 1, - "CENTER": 1, - "enumerate": 2, - "ellipse": 1, - "height": 1, - "SHEBANG#!python": 4, - "print": 39, + "__future__": 2, + "unicode_literals": 1, + "copy": 1, + "functools": 1, + "update_wrapper": 2, + "future_builtins": 1, + "zip": 8, + "django.db.models.manager": 1, + "Imported": 1, + "register": 1, + "signal": 1, + "handler.": 1, + "django.conf": 1, + "django.core.exceptions": 1, + "ObjectDoesNotExist": 2, + "MultipleObjectsReturned": 2, + "FieldError": 4, + "ValidationError": 8, + "NON_FIELD_ERRORS": 3, + "django.core": 1, + "validators": 1, + "django.db.models.fields": 1, + "AutoField": 2, + "FieldDoesNotExist": 2, + "django.db.models.fields.related": 1, + "ManyToOneRel": 3, + "OneToOneField": 3, + "add_lazy_relation": 2, + "django.db": 1, + "router": 1, + "transaction": 1, + "DatabaseError": 3, + "DEFAULT_DB_ALIAS": 2, + "django.db.models.query": 1, + "Q": 3, + "django.db.models.query_utils": 2, + "DeferredAttribute": 3, + "django.db.models.deletion": 1, + "Collector": 2, + "django.db.models.options": 1, + "Options": 2, + "django.db.models": 1, + "signals": 1, + "django.db.models.loading": 1, + "register_models": 2, + "get_model": 3, + "django.utils.translation": 1, + "ugettext_lazy": 1, + "django.utils.functional": 1, + "curry": 6, + "django.utils.encoding": 1, + "smart_str": 3, + "force_unicode": 3, + "django.utils.text": 1, + "get_text_list": 2, + "capfirst": 6, + "ModelBase": 4, + "type": 6, + "__new__": 2, + "cls": 32, + "name": 39, + "bases": 6, + "attrs": 7, + "super_new": 3, + ".__new__": 1, + "parents": 8, + "b": 11, + "isinstance": 11, + "module": 6, + "attrs.pop": 2, + "new_class": 9, + "attr_meta": 5, + "abstract": 3, + "getattr": 30, + "False": 28, + "meta": 12, + "base_meta": 2, + "model_module": 1, + "sys.modules": 1, + "new_class.__module__": 1, + "kwargs": 9, + "model_module.__name__.split": 1, + "new_class.add_to_class": 7, + "**kwargs": 9, + "subclass_exception": 3, + "tuple": 3, + "x.DoesNotExist": 1, + "hasattr": 11, + "and": 35, + "x._meta.abstract": 2, + "or": 27, + "x.MultipleObjectsReturned": 1, + "base_meta.abstract": 1, + "new_class._meta.ordering": 1, + "base_meta.ordering": 1, + "new_class._meta.get_latest_by": 1, + "base_meta.get_latest_by": 1, + "is_proxy": 5, + "new_class._meta.proxy": 1, + "new_class._default_manager": 2, + "new_class._base_manager": 2, + "new_class._default_manager._copy_to_model": 1, + "new_class._base_manager._copy_to_model": 1, + "m": 3, + "new_class._meta.app_label": 3, + "seed_cache": 2, + "only_installed": 2, + "obj_name": 2, + "obj": 4, + "attrs.items": 1, + "new_fields": 2, + "new_class._meta.local_fields": 3, + "new_class._meta.local_many_to_many": 2, + "new_class._meta.virtual_fields": 1, + "field_names": 5, + "set": 3, + "f.name": 5, + "f": 19, + "base": 13, + "parent": 5, + "parent._meta.abstract": 1, + "parent._meta.fields": 1, + "TypeError": 4, + "continue": 10, + "new_class._meta.setup_proxy": 1, + "new_class._meta.concrete_model": 2, + "base._meta.concrete_model": 2, + "o2o_map": 3, + "f.rel.to": 1, + "original_base": 1, + "parent_fields": 3, + "base._meta.local_fields": 1, + "base._meta.local_many_to_many": 1, + "field": 32, + "field.name": 14, + "base.__name__": 2, + "base._meta.abstract": 2, + "elif": 4, + "attr_name": 3, + "base._meta.module_name": 1, + "auto_created": 1, + "parent_link": 1, + "new_class._meta.parents": 1, + "copy.deepcopy": 2, + "new_class._meta.parents.update": 1, + "base._meta.parents": 1, + "new_class.copy_managers": 2, + "base._meta.abstract_managers": 1, + "original_base._meta.concrete_managers": 1, + "base._meta.virtual_fields": 1, + "attr_meta.abstract": 1, + "new_class.Meta": 1, + "new_class._prepare": 1, + "copy_managers": 1, + "base_managers": 2, + "base_managers.sort": 1, + "mgr_name": 3, + "manager": 3, + "val": 14, + "new_manager": 2, + "manager._copy_to_model": 1, + "cls.add_to_class": 1, + "add_to_class": 1, + "value": 9, + "value.contribute_to_class": 1, + "_prepare": 1, + "opts": 5, + "cls._meta": 3, + "opts._prepare": 1, + "opts.order_with_respect_to": 2, + "cls.get_next_in_order": 1, + "cls._get_next_or_previous_in_order": 2, + "is_next": 9, + "cls.get_previous_in_order": 1, + "make_foreign_order_accessors": 2, + "model": 8, + "field.rel.to": 2, + "cls.__name__.lower": 2, + "method_get_order": 2, + "method_set_order": 2, + "opts.order_with_respect_to.rel.to": 1, + "cls.__doc__": 3, + "cls.__name__": 1, + "f.attname": 5, + "opts.fields": 1, + "cls.get_absolute_url": 3, + "get_absolute_url": 2, + "signals.class_prepared.send": 1, + "sender": 5, + "ModelState": 2, + "object": 6, + "db": 2, + "self.db": 1, + "self.adding": 1, + "Model": 2, + "__metaclass__": 3, + "_deferred": 1, + "*args": 4, + "signals.pre_init.send": 1, + "self.__class__": 10, + "args": 8, + "self._state": 1, + "args_len": 2, + "self._meta.fields": 5, + "IndexError": 2, + "fields_iter": 4, + "iter": 1, + "field.attname": 17, + "kwargs.pop": 6, + "field.rel": 2, + "is_related_object": 3, + "self.__class__.__dict__.get": 2, + "try": 17, + "rel_obj": 3, + "except": 17, + "KeyError": 3, + "field.get_default": 3, + "field.null": 1, + "prop": 5, + "kwargs.keys": 2, + "property": 2, + "AttributeError": 1, + "pass": 4, + "signals.post_init.send": 1, + "instance": 5, + "__repr__": 2, + "u": 9, + "unicode": 8, + "UnicodeEncodeError": 1, + "UnicodeDecodeError": 1, + "self.__class__.__name__": 3, + "__str__": 1, + ".encode": 1, + "__eq__": 1, + "other": 4, + "self._get_pk_val": 6, + "other._get_pk_val": 1, + "__ne__": 1, + "self.__eq__": 1, + "__hash__": 1, + "hash": 1, + "__reduce__": 1, + "data": 22, + "self.__dict__": 1, + "defers": 2, + "self._deferred": 1, + "deferred_class_factory": 2, + "factory": 5, + "defers.append": 1, + "self._meta.proxy_for_model": 1, + "simple_class_factory": 2, + "model_unpickle": 2, + "_get_pk_val": 2, + "self._meta": 2, + "meta.pk.attname": 2, + "_set_pk_val": 2, + "self._meta.pk.attname": 2, + "pk": 5, + "serializable_value": 1, + "field_name": 8, + "self._meta.get_field_by_name": 1, + "force_insert": 7, + "force_update": 10, + "using": 30, + "update_fields": 23, + "frozenset": 2, + "field.primary_key": 1, + "non_model_fields": 2, + "update_fields.difference": 1, + "self.save_base": 2, + "save.alters_data": 1, + "save_base": 1, + "raw": 9, + "origin": 7, + "router.db_for_write": 2, + "assert": 7, + "meta.proxy": 5, + "meta.auto_created": 2, + "signals.pre_save.send": 1, + "org": 3, + "meta.parents.items": 1, + "parent._meta.pk.attname": 2, + "parent._meta": 1, + "non_pks": 5, + "meta.local_fields": 2, + "f.primary_key": 2, + "pk_val": 4, + "pk_set": 5, + "record_exists": 5, + "cls._base_manager": 1, + "manager.using": 3, + ".filter": 7, + ".exists": 1, + "f.pre_save": 1, + "rows": 3, + "._update": 1, + "meta.order_with_respect_to": 2, + "order_value": 2, + ".count": 1, + "self._order": 1, + "fields": 12, + "update_pk": 3, + "bool": 2, + "meta.has_auto_field": 1, + "result": 2, + "manager._insert": 1, + "return_id": 1, + "transaction.commit_unless_managed": 2, + "self._state.db": 2, + "self._state.adding": 4, + "signals.post_save.send": 1, + "created": 1, + "save_base.alters_data": 1, + "delete": 1, + "self._meta.object_name": 1, + "collector": 1, + "collector.collect": 1, + "collector.delete": 1, + "delete.alters_data": 1, + "_get_FIELD_display": 1, + "field.flatchoices": 1, + ".get": 2, + "strings_only": 1, + "_get_next_or_previous_by_FIELD": 1, + "self.pk": 6, + "op": 6, + "order": 5, + "param": 3, + "q": 4, + "|": 1, + "qs": 6, + "self.__class__._default_manager.using": 1, + "*kwargs": 1, + ".order_by": 2, + "self.DoesNotExist": 1, + "self.__class__._meta.object_name": 1, + "_get_next_or_previous_in_order": 1, + "cachename": 4, + "order_field": 1, + "self._meta.order_with_respect_to": 1, + "self._default_manager.filter": 1, + "order_field.name": 1, + "order_field.attname": 1, + "self._default_manager.values": 1, + "self._meta.pk.name": 1, + "prepare_database_save": 1, + "unused": 1, + "clean": 1, + "validate_unique": 1, + "exclude": 23, + "unique_checks": 6, + "date_checks": 6, + "self._get_unique_checks": 1, + "errors": 20, + "self._perform_unique_checks": 1, + "date_errors": 1, + "self._perform_date_checks": 1, + "date_errors.items": 1, + "errors.setdefault": 3, + ".extend": 2, + "_get_unique_checks": 1, + "unique_togethers": 2, + "self._meta.unique_together": 1, + "parent_class": 4, + "self._meta.parents.keys": 2, + "parent_class._meta.unique_together": 2, + "unique_togethers.append": 1, + "model_class": 11, + "unique_together": 2, + "check": 4, + "break": 2, + "unique_checks.append": 2, + "fields_with_class": 2, + "self._meta.local_fields": 1, + "fields_with_class.append": 1, + "parent_class._meta.local_fields": 1, + "f.unique": 1, + "f.unique_for_date": 3, + "date_checks.append": 3, + "f.unique_for_year": 3, + "f.unique_for_month": 3, + "_perform_unique_checks": 1, + "unique_check": 10, + "lookup_kwargs": 8, + "self._meta.get_field": 1, + "lookup_value": 3, + "str": 2, + "lookup_kwargs.keys": 1, + "model_class._default_manager.filter": 2, + "*lookup_kwargs": 2, + "model_class_pk": 3, + "model_class._meta": 2, + "qs.exclude": 2, + "qs.exists": 2, + ".append": 2, + "self.unique_error_message": 1, + "_perform_date_checks": 1, + "lookup_type": 7, + "unique_for": 9, + "date": 3, + "date.day": 1, + "date.month": 1, + "date.year": 1, + "self.date_error_message": 1, + "date_error_message": 1, + "opts.get_field": 4, + ".verbose_name": 3, + "unique_error_message": 1, + "model_name": 3, + "opts.verbose_name": 1, + "field_label": 2, + "field.verbose_name": 1, + "field.error_messages": 1, + "field_labels": 4, + "map": 1, + "full_clean": 1, + "self.clean_fields": 1, + "e": 13, + "e.update_error_dict": 3, + "self.clean": 1, + "errors.keys": 1, + "exclude.append": 1, + "self.validate_unique": 1, + "clean_fields": 1, + "raw_value": 3, + "f.blank": 1, + "validators.EMPTY_VALUES": 1, + "f.clean": 1, + "e.messages": 1, + "############################################": 2, + "ordered_obj": 2, + "id_list": 2, + "rel_val": 4, + "ordered_obj._meta.order_with_respect_to.rel.field_name": 2, + "order_name": 4, + "ordered_obj._meta.order_with_respect_to.name": 2, + "ordered_obj.objects.filter": 2, + ".update": 1, + "_order": 1, + "pk_name": 3, + "ordered_obj._meta.pk.name": 1, + ".values": 1, + "##############################################": 2, + "func": 2, + "settings.ABSOLUTE_URL_OVERRIDES.get": 1, + "opts.app_label": 1, + "opts.module_name": 1, + "########": 2, + "Empty": 1, + "cls.__new__": 1, + "model_unpickle.__safe_for_unpickle__": 1, ".globals": 1, "request": 1, "http_method_funcs": 2, - "frozenset": 2, "View": 2, - "object": 6, "A": 1, "which": 1, "methods": 5, @@ -56960,7 +57526,6 @@ "decorate": 2, "based": 1, "views": 1, - "value": 9, "as_view": 1, ".": 1, "However": 1, @@ -56977,58 +57542,123 @@ "used": 1, "instantiating": 1, "view.view_class": 1, - "cls": 32, "view.__name__": 1, - "name": 39, "view.__doc__": 1, - "cls.__doc__": 3, "view.__module__": 1, "cls.__module__": 1, "view.methods": 1, "cls.methods": 1, "MethodViewType": 2, - "type": 6, - "__new__": 2, - "bases": 6, "d": 5, "rv": 2, "type.__new__": 1, - "set": 3, "rv.methods": 2, - "or": 27, "methods.add": 1, "key.upper": 1, "sorted": 1, "MethodView": 1, - "__metaclass__": 3, "dispatch_request": 1, - "*args": 4, - "**kwargs": 9, "meth": 5, - "getattr": 30, "request.method.lower": 1, - "and": 35, "request.method": 2, - "assert": 7, - "args": 8, + "P3D": 1, + "lights": 1, + "camera": 1, + "mouseY": 1, + "eyeX": 1, + "eyeY": 1, + "eyeZ": 1, + "centerX": 1, + "centerY": 1, + "centerZ": 1, + "upX": 1, + "upY": 1, + "upZ": 1, + "box": 1, + "stroke": 1, + "line": 3, + "google.protobuf": 4, + "descriptor": 1, + "_descriptor": 1, + "message": 1, + "_message": 1, + "reflection": 1, + "_reflection": 1, + "descriptor_pb2": 1, + "DESCRIPTOR": 3, + "_descriptor.FileDescriptor": 1, + "package": 1, + "serialized_pb": 1, + "_PERSON": 3, + "_descriptor.Descriptor": 1, + "full_name": 2, + "file": 1, + "containing_type": 2, + "_descriptor.FieldDescriptor": 1, + "index": 1, + "number": 1, + "cpp_type": 1, + "label": 18, + "has_default_value": 1, + "default_value": 1, + "message_type": 1, + "enum_type": 1, + "is_extension": 1, + "extension_scope": 1, + "extensions": 1, + "nested_types": 1, + "enum_types": 1, + "is_extendable": 1, + "extension_ranges": 1, + "serialized_start": 1, + "serialized_end": 1, + "DESCRIPTOR.message_types_by_name": 1, + "Person": 1, + "_message.Message": 1, + "_reflection.GeneratedProtocolMessageType": 1, + "SHEBANG#!python": 4, + "print": 39, + "main": 4, + "usage": 3, + "string": 1, + "command": 4, + "sys.argv": 2, + "sys.exit": 1, + "printDelimiter": 4, + "get": 1, + "a": 2, + "list": 1, + "git": 1, + "directories": 1, + "specified": 1, + "gitDirectories": 2, + "getSubdirectories": 2, + "isGitDirectory": 2, + "gitDirectory": 2, + "os.chdir": 1, + "os.getcwd": 1, + "os.system": 1, + "directory": 9, + "filter": 3, + "os.path.abspath": 1, + "subdirectories": 3, + "os.walk": 1, + ".next": 1, + "os.path.isdir": 1, "argparse": 1, "matplotlib.pyplot": 1, "pl": 1, "numpy": 1, "np": 1, "scipy.optimize": 1, - "op": 6, "prettytable": 1, "PrettyTable": 6, "__docformat__": 1, "S": 4, - "e": 13, "phif": 7, "U": 10, - "main": 4, "_parse_args": 2, "V": 12, - "data": 22, "np.genfromtxt": 8, "delimiter": 8, "t": 8, @@ -57043,7 +57673,6 @@ "x.size": 2, "pl.plot": 9, "**6": 6, - "label": 18, ".format": 11, "pl.errorbar": 8, "yerr": 8, @@ -57053,7 +57682,6 @@ "pl.legend": 5, "loc": 5, "pl.title": 5, - "u": 9, "pl.xlabel": 5, "ur": 11, "pl.ylabel": 5, @@ -57107,7 +57735,6 @@ "header": 5, "glanz_table": 2, "row": 10, - "zip": 8, ".size": 4, "*T_err": 4, "glanz_phi.size": 1, @@ -57123,11 +57750,8 @@ "weiss_phi.size": 1, "weiss_table.add_row": 1, "T0**4": 1, - "prop": 5, "phi": 5, "c": 3, - "a": 2, - "b": 11, "a*x": 1, "d**": 2, "dy": 4, @@ -57138,7 +57762,6 @@ "pconv": 2, "*popt": 2, "pconv.diagonal": 3, - "fields": 12, "table": 2, "table.align": 1, "dy.size": 1, @@ -57181,7 +57804,6 @@ "description": 1, "#parser.add_argument": 3, "metavar": 1, - "str": 2, "nargs": 1, "help": 2, "dest": 1, @@ -57189,7 +57811,6 @@ "action": 1, "version": 6, "parser.parse_args": 1, - "__future__": 2, "absolute_import": 1, "division": 1, "with_statement": 1, @@ -57209,15 +57830,12 @@ "stack_context": 1, "tornado.util": 1, "bytes_type": 2, - "try": 17, "ssl": 2, "Python": 1, - "except": 17, "ImportError": 1, "HTTPServer": 1, "request_callback": 4, "no_keep_alive": 4, - "False": 28, "io_loop": 3, "xheaders": 4, "ssl_options": 3, @@ -57231,7 +57849,6 @@ "HTTPConnection": 2, "_BadRequestException": 5, "Exception": 2, - "pass": 4, "self.stream": 1, "self.address": 3, "self._request": 7, @@ -57257,7 +57874,6 @@ "self._request.headers.get": 2, "connection_header.lower": 1, "self._request.supports_http_1_1": 1, - "elif": 4, "self._request.headers": 1, "self._request.method": 2, "self.stream.close": 2, @@ -57292,16 +57908,13 @@ "arguments": 2, "arguments.iteritems": 2, "self._request.arguments.setdefault": 1, - ".extend": 2, "content_type.split": 1, - "field": 32, "sep": 2, "field.strip": 1, ".partition": 1, "httputil.parse_multipart_form_data": 1, "self._request.arguments": 1, "self._request.files": 1, - "break": 2, "logging.warning": 1, "body": 2, "protocol": 4, @@ -57318,7 +57931,6 @@ "self.headers.get": 5, "self._valid_ip": 1, "self.protocol": 7, - "isinstance": 11, "connection.stream": 1, "iostream.SSLIOStream": 1, "self.host": 2, @@ -57333,7 +57945,6 @@ "self.arguments": 2, "supports_http_1_1": 1, "cookies": 1, - "hasattr": 11, "self._cookies": 3, "Cookie.SimpleCookie": 1, "self._cookies.load": 1, @@ -57344,519 +57955,56 @@ "get_ssl_certificate": 1, "self.connection.stream.socket.getpeercert": 1, "ssl.SSLError": 1, - "__repr__": 2, - "attrs": 7, - "self.__class__.__name__": 3, "_valid_ip": 1, "ip": 2, "socket.getaddrinfo": 1, "socket.AF_UNSPEC": 1, "socket.SOCK_STREAM": 1, "socket.AI_NUMERICHOST": 1, - "bool": 2, "socket.gaierror": 1, "e.args": 1, - "socket.EAI_NONAME": 1, - "usage": 3, - "string": 1, - "command": 4, - "check": 4, - "sys.argv": 2, - "sys.exit": 1, - "printDelimiter": 4, - "get": 1, - "list": 1, - "git": 1, - "directories": 1, - "specified": 1, - "parent": 5, - "gitDirectories": 2, - "getSubdirectories": 2, - "isGitDirectory": 2, - "gitDirectory": 2, - "os.chdir": 1, - "os.getcwd": 1, - "os.system": 1, - "directory": 9, - "filter": 3, - "os.path.abspath": 1, - "subdirectories": 3, - "os.walk": 1, - ".next": 1, - "os.path.isdir": 1, - "google.protobuf": 4, - "descriptor": 1, - "_descriptor": 1, - "message": 1, - "_message": 1, - "reflection": 1, - "_reflection": 1, - "descriptor_pb2": 1, - "DESCRIPTOR": 3, - "_descriptor.FileDescriptor": 1, - "package": 1, - "serialized_pb": 1, - "_PERSON": 3, - "_descriptor.Descriptor": 1, - "full_name": 2, - "file": 1, - "containing_type": 2, - "_descriptor.FieldDescriptor": 1, - "index": 1, - "number": 1, - "cpp_type": 1, - "has_default_value": 1, - "default_value": 1, - "unicode": 8, - "message_type": 1, - "enum_type": 1, - "is_extension": 1, - "extension_scope": 1, - "extensions": 1, - "nested_types": 1, - "enum_types": 1, - "is_extendable": 1, - "extension_ranges": 1, - "serialized_start": 1, - "serialized_end": 1, - "DESCRIPTOR.message_types_by_name": 1, - "Person": 1, - "_message.Message": 1, - "_reflection.GeneratedProtocolMessageType": 1, - "P3D": 1, - "lights": 1, - "camera": 1, - "mouseY": 1, - "eyeX": 1, - "eyeY": 1, - "eyeZ": 1, - "centerX": 1, - "centerY": 1, - "centerZ": 1, - "upX": 1, - "upY": 1, - "upZ": 1, - "box": 1, - "stroke": 1, - "line": 3, - "unicode_literals": 1, - "copy": 1, - "functools": 1, - "update_wrapper": 2, - "future_builtins": 1, - "django.db.models.manager": 1, - "Imported": 1, - "register": 1, - "signal": 1, - "handler.": 1, - "django.conf": 1, - "django.core.exceptions": 1, - "ObjectDoesNotExist": 2, - "MultipleObjectsReturned": 2, - "FieldError": 4, - "ValidationError": 8, - "NON_FIELD_ERRORS": 3, - "django.core": 1, - "validators": 1, - "django.db.models.fields": 1, - "AutoField": 2, - "FieldDoesNotExist": 2, - "django.db.models.fields.related": 1, - "ManyToOneRel": 3, - "OneToOneField": 3, - "add_lazy_relation": 2, - "django.db": 1, - "router": 1, - "transaction": 1, - "DatabaseError": 3, - "DEFAULT_DB_ALIAS": 2, - "django.db.models.query": 1, - "Q": 3, - "django.db.models.query_utils": 2, - "DeferredAttribute": 3, - "django.db.models.deletion": 1, - "Collector": 2, - "django.db.models.options": 1, - "Options": 2, - "django.db.models": 1, - "signals": 1, - "django.db.models.loading": 1, - "register_models": 2, - "get_model": 3, - "django.utils.translation": 1, - "ugettext_lazy": 1, - "django.utils.functional": 1, - "curry": 6, - "django.utils.encoding": 1, - "smart_str": 3, - "force_unicode": 3, - "django.utils.text": 1, - "get_text_list": 2, - "capfirst": 6, - "ModelBase": 4, - "super_new": 3, - ".__new__": 1, - "parents": 8, - "module": 6, - "attrs.pop": 2, - "new_class": 9, - "attr_meta": 5, - "abstract": 3, - "meta": 12, - "base_meta": 2, - "model_module": 1, - "sys.modules": 1, - "new_class.__module__": 1, - "kwargs": 9, - "model_module.__name__.split": 1, - "new_class.add_to_class": 7, - "subclass_exception": 3, - "tuple": 3, - "x.DoesNotExist": 1, - "x._meta.abstract": 2, - "x.MultipleObjectsReturned": 1, - "base_meta.abstract": 1, - "new_class._meta.ordering": 1, - "base_meta.ordering": 1, - "new_class._meta.get_latest_by": 1, - "base_meta.get_latest_by": 1, - "is_proxy": 5, - "new_class._meta.proxy": 1, - "new_class._default_manager": 2, - "new_class._base_manager": 2, - "new_class._default_manager._copy_to_model": 1, - "new_class._base_manager._copy_to_model": 1, - "m": 3, - "new_class._meta.app_label": 3, - "seed_cache": 2, - "only_installed": 2, - "obj_name": 2, - "obj": 4, - "attrs.items": 1, - "new_fields": 2, - "new_class._meta.local_fields": 3, - "new_class._meta.local_many_to_many": 2, - "new_class._meta.virtual_fields": 1, - "field_names": 5, - "f.name": 5, - "f": 19, - "base": 13, - "parent._meta.abstract": 1, - "parent._meta.fields": 1, - "TypeError": 4, - "continue": 10, - "new_class._meta.setup_proxy": 1, - "new_class._meta.concrete_model": 2, - "base._meta.concrete_model": 2, - "o2o_map": 3, - "f.rel.to": 1, - "original_base": 1, - "parent_fields": 3, - "base._meta.local_fields": 1, - "base._meta.local_many_to_many": 1, - "field.name": 14, - "base.__name__": 2, - "base._meta.abstract": 2, - "attr_name": 3, - "base._meta.module_name": 1, - "auto_created": 1, - "parent_link": 1, - "new_class._meta.parents": 1, - "copy.deepcopy": 2, - "new_class._meta.parents.update": 1, - "base._meta.parents": 1, - "new_class.copy_managers": 2, - "base._meta.abstract_managers": 1, - "original_base._meta.concrete_managers": 1, - "base._meta.virtual_fields": 1, - "attr_meta.abstract": 1, - "new_class.Meta": 1, - "new_class._prepare": 1, - "copy_managers": 1, - "base_managers": 2, - "base_managers.sort": 1, - "mgr_name": 3, - "manager": 3, - "val": 14, - "new_manager": 2, - "manager._copy_to_model": 1, - "cls.add_to_class": 1, - "add_to_class": 1, - "value.contribute_to_class": 1, - "_prepare": 1, - "opts": 5, - "cls._meta": 3, - "opts._prepare": 1, - "opts.order_with_respect_to": 2, - "cls.get_next_in_order": 1, - "cls._get_next_or_previous_in_order": 2, - "is_next": 9, - "cls.get_previous_in_order": 1, - "make_foreign_order_accessors": 2, - "model": 8, - "field.rel.to": 2, - "cls.__name__.lower": 2, - "method_get_order": 2, - "method_set_order": 2, - "opts.order_with_respect_to.rel.to": 1, - "cls.__name__": 1, - "f.attname": 5, - "opts.fields": 1, - "cls.get_absolute_url": 3, - "get_absolute_url": 2, - "signals.class_prepared.send": 1, - "sender": 5, - "ModelState": 2, - "db": 2, - "self.db": 1, - "self.adding": 1, - "Model": 2, - "_deferred": 1, - "signals.pre_init.send": 1, - "self.__class__": 10, - "self._state": 1, - "args_len": 2, - "self._meta.fields": 5, - "IndexError": 2, - "fields_iter": 4, - "iter": 1, - "field.attname": 17, - "kwargs.pop": 6, - "field.rel": 2, - "is_related_object": 3, - "self.__class__.__dict__.get": 2, - "rel_obj": 3, - "KeyError": 3, - "field.get_default": 3, - "field.null": 1, - "kwargs.keys": 2, - "property": 2, - "AttributeError": 1, - "signals.post_init.send": 1, - "instance": 5, - "UnicodeEncodeError": 1, - "UnicodeDecodeError": 1, - "__str__": 1, - ".encode": 1, - "__eq__": 1, - "other": 4, - "self._get_pk_val": 6, - "other._get_pk_val": 1, - "__ne__": 1, - "self.__eq__": 1, - "__hash__": 1, - "hash": 1, - "__reduce__": 1, - "self.__dict__": 1, - "defers": 2, - "self._deferred": 1, - "deferred_class_factory": 2, - "factory": 5, - "defers.append": 1, - "self._meta.proxy_for_model": 1, - "simple_class_factory": 2, - "model_unpickle": 2, - "_get_pk_val": 2, - "self._meta": 2, - "meta.pk.attname": 2, - "_set_pk_val": 2, - "self._meta.pk.attname": 2, - "pk": 5, - "serializable_value": 1, - "field_name": 8, - "self._meta.get_field_by_name": 1, - "force_insert": 7, - "force_update": 10, - "using": 30, - "update_fields": 23, - "field.primary_key": 1, - "non_model_fields": 2, - "update_fields.difference": 1, - "self.save_base": 2, - "save.alters_data": 1, - "save_base": 1, - "raw": 9, - "origin": 7, - "router.db_for_write": 2, - "meta.proxy": 5, - "meta.auto_created": 2, - "signals.pre_save.send": 1, - "org": 3, - "meta.parents.items": 1, - "parent._meta.pk.attname": 2, - "parent._meta": 1, - "non_pks": 5, - "meta.local_fields": 2, - "f.primary_key": 2, - "pk_val": 4, - "pk_set": 5, - "record_exists": 5, - "cls._base_manager": 1, - "manager.using": 3, - ".filter": 7, - ".exists": 1, - "f.pre_save": 1, - "rows": 3, - "._update": 1, - "meta.order_with_respect_to": 2, - "order_value": 2, - ".count": 1, - "self._order": 1, - "update_pk": 3, - "meta.has_auto_field": 1, - "result": 2, - "manager._insert": 1, - "return_id": 1, - "transaction.commit_unless_managed": 2, - "self._state.db": 2, - "self._state.adding": 4, - "signals.post_save.send": 1, - "created": 1, - "save_base.alters_data": 1, - "delete": 1, - "self._meta.object_name": 1, - "collector": 1, - "collector.collect": 1, - "collector.delete": 1, - "delete.alters_data": 1, - "_get_FIELD_display": 1, - "field.flatchoices": 1, - ".get": 2, - "strings_only": 1, - "_get_next_or_previous_by_FIELD": 1, - "self.pk": 6, - "order": 5, - "param": 3, - "q": 4, - "|": 1, - "qs": 6, - "self.__class__._default_manager.using": 1, - "*kwargs": 1, - ".order_by": 2, - "self.DoesNotExist": 1, - "self.__class__._meta.object_name": 1, - "_get_next_or_previous_in_order": 1, - "cachename": 4, - "order_field": 1, - "self._meta.order_with_respect_to": 1, - "self._default_manager.filter": 1, - "order_field.name": 1, - "order_field.attname": 1, - "self._default_manager.values": 1, - "self._meta.pk.name": 1, - "prepare_database_save": 1, - "unused": 1, - "clean": 1, - "validate_unique": 1, - "exclude": 23, - "unique_checks": 6, - "date_checks": 6, - "self._get_unique_checks": 1, - "errors": 20, - "self._perform_unique_checks": 1, - "date_errors": 1, - "self._perform_date_checks": 1, - "date_errors.items": 1, - "errors.setdefault": 3, - "_get_unique_checks": 1, - "unique_togethers": 2, - "self._meta.unique_together": 1, - "parent_class": 4, - "self._meta.parents.keys": 2, - "parent_class._meta.unique_together": 2, - "unique_togethers.append": 1, - "model_class": 11, - "unique_together": 2, - "unique_checks.append": 2, - "fields_with_class": 2, - "self._meta.local_fields": 1, - "fields_with_class.append": 1, - "parent_class._meta.local_fields": 1, - "f.unique": 1, - "f.unique_for_date": 3, - "date_checks.append": 3, - "f.unique_for_year": 3, - "f.unique_for_month": 3, - "_perform_unique_checks": 1, - "unique_check": 10, - "lookup_kwargs": 8, - "self._meta.get_field": 1, - "lookup_value": 3, - "lookup_kwargs.keys": 1, - "model_class._default_manager.filter": 2, - "*lookup_kwargs": 2, - "model_class_pk": 3, - "model_class._meta": 2, - "qs.exclude": 2, - "qs.exists": 2, - ".append": 2, - "self.unique_error_message": 1, - "_perform_date_checks": 1, - "lookup_type": 7, - "unique_for": 9, - "date": 3, - "date.day": 1, - "date.month": 1, - "date.year": 1, - "self.date_error_message": 1, - "date_error_message": 1, - "opts.get_field": 4, - ".verbose_name": 3, - "unique_error_message": 1, - "model_name": 3, - "opts.verbose_name": 1, - "field_label": 2, - "field.verbose_name": 1, - "field.error_messages": 1, - "field_labels": 4, - "map": 1, - "full_clean": 1, - "self.clean_fields": 1, - "e.update_error_dict": 3, - "self.clean": 1, - "errors.keys": 1, - "exclude.append": 1, - "self.validate_unique": 1, - "clean_fields": 1, - "raw_value": 3, - "f.blank": 1, - "validators.EMPTY_VALUES": 1, - "f.clean": 1, - "e.messages": 1, - "############################################": 2, - "ordered_obj": 2, - "id_list": 2, - "rel_val": 4, - "ordered_obj._meta.order_with_respect_to.rel.field_name": 2, - "order_name": 4, - "ordered_obj._meta.order_with_respect_to.name": 2, - "ordered_obj.objects.filter": 2, - ".update": 1, - "_order": 1, - "pk_name": 3, - "ordered_obj._meta.pk.name": 1, - ".values": 1, - "##############################################": 2, - "func": 2, - "settings.ABSOLUTE_URL_OVERRIDES.get": 1, - "opts.app_label": 1, - "opts.module_name": 1, - "########": 2, - "Empty": 1, - "cls.__new__": 1, - "model_unpickle.__safe_for_unpickle__": 1 + "socket.EAI_NONAME": 1 }, "QMake": { - "SHEBANG#!qmake": 1, - "message": 1, + "QT": 4, + "+": 13, + "core": 2, + "gui": 2, + "greaterThan": 1, "(": 8, - "This": 1, - "is": 1, - "QMake.": 1, + "QT_MAJOR_VERSION": 1, ")": 8, + "widgets": 1, + "contains": 2, + "QT_CONFIG": 2, + "opengl": 2, + "|": 1, + "opengles2": 1, + "{": 6, + "}": 6, + "else": 2, + "DEFINES": 1, + "QT_NO_OPENGL": 1, + "TEMPLATE": 2, + "app": 2, + "win32": 2, + "TARGET": 3, + "BlahApp": 1, + "RC_FILE": 1, + "Resources/winres.rc": 1, + "blahapp": 1, + "include": 1, + "functions.pri": 1, + "SOURCES": 2, + "file.cpp": 2, + "HEADERS": 2, + "file.h": 2, + "FORMS": 2, + "file.ui": 1, + "RESOURCES": 1, + "res.qrc": 1, "exists": 1, ".git/HEAD": 1, - "{": 6, "system": 2, "git": 1, "rev": 1, @@ -57864,51 +58012,22 @@ "parse": 1, "HEAD": 1, "rev.txt": 2, - "}": 6, - "else": 2, "echo": 1, "ThisIsNotAGitRepo": 1, + "SHEBANG#!qmake": 1, + "message": 1, + "This": 1, + "is": 1, + "QMake.": 1, "CONFIG": 1, - "+": 13, "qt": 1, - "QT": 4, - "core": 2, - "gui": 2, - "TEMPLATE": 2, - "app": 2, - "TARGET": 3, "simpleapp": 1, - "SOURCES": 2, - "file.cpp": 2, "file2.c": 1, "This/Is/Folder/file3.cpp": 1, - "HEADERS": 2, - "file.h": 2, "file2.h": 1, "This/Is/Folder/file3.h": 1, - "FORMS": 2, "This/Is/Folder/file3.ui": 1, - "Test.ui": 1, - "greaterThan": 1, - "QT_MAJOR_VERSION": 1, - "widgets": 1, - "contains": 2, - "QT_CONFIG": 2, - "opengl": 2, - "|": 1, - "opengles2": 1, - "DEFINES": 1, - "QT_NO_OPENGL": 1, - "win32": 2, - "BlahApp": 1, - "RC_FILE": 1, - "Resources/winres.rc": 1, - "blahapp": 1, - "include": 1, - "functions.pri": 1, - "file.ui": 1, - "RESOURCES": 1, - "res.qrc": 1 + "Test.ui": 1 }, "R": { "df.residual.mira": 1, @@ -57959,30 +58078,75 @@ "length": 3, "k": 3, "max": 1, - "##polyg": 1, - "vector": 2, - "##numpoints": 1, - "number": 1, - "##output": 1, - "output": 1, - "##": 1, - "Example": 1, - "scripts": 1, - "group": 1, - "pts": 1, - "spsample": 1, - "polyg": 1, - "numpoints": 1, - "type": 3, "SHEBANG#!Rscript": 2, - "ParseDates": 2, - "lines": 6, - "dates": 3, + "#": 45, + "MedianNorm": 2, + "data": 13, + "geomeans": 3, + "<->": 1, + "exp": 1, + "rowMeans": 1, + "log": 5, + "apply": 2, + "2": 1, + "cnts": 2, + "median": 1, + "library": 1, + "print_usage": 2, + "file": 4, + "stderr": 1, + "cat": 1, + "spec": 2, "matrix": 3, + "byrow": 3, + "ncol": 3, + "opt": 23, + "getopt": 1, + "help": 1, + "stdout": 1, + "status": 1, + "height": 7, + "out": 4, + "res": 6, + "width": 7, + "ylim": 7, + "read.table": 1, + "header": 1, + "sep": 4, + "quote": 1, + "nsamp": 8, + "dim": 1, + "outfile": 4, + "sprintf": 2, + "png": 2, + "h": 13, + "hist": 4, + "plot": 7, + "FALSE": 9, + "mids": 4, + "density": 4, + "type": 3, + "col": 4, + "rainbow": 4, + "main": 2, + "xlab": 2, + "ylab": 2, + "for": 4, + "i": 6, + "in": 8, + "lines": 6, + "devnum": 2, + "dev.off": 2, + "size.factors": 2, + "data.matrix": 1, + "data.norm": 3, + "t": 1, + "x": 3, + "/": 1, + "ParseDates": 2, + "dates": 3, "unlist": 2, "strsplit": 3, - "ncol": 3, - "byrow": 3, "days": 2, "times": 2, "hours": 2, @@ -58003,7 +58167,6 @@ "ggplot": 1, "aes": 2, "y": 1, - "x": 3, "geom_point": 1, "size": 1, "Freq": 1, @@ -58011,81 +58174,10 @@ "range": 1, "ggsave": 1, "filename": 1, - "plot": 7, - "width": 7, - "height": 7, - "docType": 1, - "package": 5, - "name": 10, - "scholar": 6, - "alias": 2, - "title": 1, - "source": 3, - "The": 5, - "reads": 1, - "data": 13, - "from": 5, - "url": 2, - "http": 2, - "//scholar.google.com": 1, - ".": 7, - "Dates": 1, - "and": 5, - "citation": 2, - "counts": 1, - "are": 4, - "estimated": 1, - "determined": 1, - "automatically": 1, - "by": 2, - "a": 6, - "computer": 1, - "program.": 1, - "Use": 1, - "at": 2, - "your": 1, - "own": 1, - "risk.": 1, - "description": 1, - "code": 21, - "provides": 1, - "functions": 3, - "to": 9, - "extract": 1, - "Google": 2, - "Scholar.": 1, - "There": 1, - "also": 1, - "convenience": 1, - "for": 4, - "comparing": 1, - "multiple": 1, - "scholars": 1, - "predicting": 1, - "h": 13, - "index": 1, - "scores": 1, - "based": 1, - "on": 2, - "past": 1, - "publication": 1, - "records.": 1, - "note": 1, - "A": 1, - "complementary": 1, - "set": 2, - "of": 2, - "Scholar": 1, - "can": 3, - "be": 8, - "found": 1, - "//biostat.jhsph.edu/": 1, - "jleek/code/googleCite.r": 1, - "was": 1, - "developed": 1, - "independently.": 1, - "#": 45, + "hello": 2, + "print": 1, "module": 25, + "code": 21, "available": 1, "via": 1, "the": 16, @@ -58105,17 +58197,19 @@ "even": 1, "attach": 11, "is": 7, - "FALSE": 9, "optionally": 1, "attached": 2, + "to": 9, + "of": 2, "current": 2, "scope": 1, "defaults": 1, + ".": 7, "However": 1, - "in": 8, "interactive": 2, "invoked": 1, "directly": 1, + "from": 5, "terminal": 1, "only": 1, "i.e.": 1, @@ -58123,8 +58217,12 @@ "within": 1, "modules": 4, "import.attach": 1, + "can": 3, + "be": 8, + "set": 2, "or": 1, "depending": 1, + "on": 2, "user": 1, "s": 2, "preference.": 1, @@ -58132,6 +58230,7 @@ "causes": 1, "emph": 3, "operators": 3, + "by": 2, "default": 1, "path.": 1, "Not": 1, @@ -58140,18 +58239,20 @@ "therefore": 1, "drastically": 1, "limits": 1, + "a": 6, "usefulness.": 1, "Modules": 1, + "are": 4, "searched": 1, "options": 1, "priority.": 1, + "The": 5, "directory": 1, "always": 1, "considered": 1, "first.": 1, "That": 1, "local": 3, - "file": 4, "./a.r": 1, "will": 2, "loaded.": 1, @@ -58208,6 +58309,7 @@ "exhibit_namespace": 3, "identical": 2, ".GlobalEnv": 2, + "name": 10, "environmentName": 2, "parent.env": 4, "export_operators": 2, @@ -58220,7 +58322,7 @@ "parent": 9, ".BaseNamespaceEnv": 1, "paste": 3, - "sep": 4, + "source": 3, "chdir": 1, "envir": 5, "cache_module": 1, @@ -58244,6 +58346,7 @@ "references": 1, "remain": 1, "unchanged": 1, + "and": 5, "files": 1, "would": 1, "have": 1, @@ -58279,55 +58382,71 @@ ".loaded_modules": 1, "whatnot.": 1, "assign": 1, - "hello": 2, - "print": 1, - "MedianNorm": 2, - "geomeans": 3, - "<->": 1, - "exp": 1, - "rowMeans": 1, - "log": 5, - "apply": 2, - "2": 1, - "cnts": 2, - "median": 1, - "library": 1, - "print_usage": 2, - "stderr": 1, - "cat": 1, - "spec": 2, - "opt": 23, - "getopt": 1, - "help": 1, - "stdout": 1, - "status": 1, - "out": 4, - "res": 6, - "ylim": 7, - "read.table": 1, - "header": 1, - "quote": 1, - "nsamp": 8, - "dim": 1, - "outfile": 4, - "sprintf": 2, - "png": 2, - "hist": 4, - "mids": 4, - "density": 4, - "col": 4, - "rainbow": 4, - "main": 2, - "xlab": 2, - "ylab": 2, - "i": 6, - "devnum": 2, - "dev.off": 2, - "size.factors": 2, - "data.matrix": 1, - "data.norm": 3, - "t": 1, - "/": 1 + "##polyg": 1, + "vector": 2, + "##numpoints": 1, + "number": 1, + "##output": 1, + "output": 1, + "##": 1, + "Example": 1, + "scripts": 1, + "group": 1, + "pts": 1, + "spsample": 1, + "polyg": 1, + "numpoints": 1, + "docType": 1, + "package": 5, + "scholar": 6, + "alias": 2, + "title": 1, + "reads": 1, + "url": 2, + "http": 2, + "//scholar.google.com": 1, + "Dates": 1, + "citation": 2, + "counts": 1, + "estimated": 1, + "determined": 1, + "automatically": 1, + "computer": 1, + "program.": 1, + "Use": 1, + "at": 2, + "your": 1, + "own": 1, + "risk.": 1, + "description": 1, + "provides": 1, + "functions": 3, + "extract": 1, + "Google": 2, + "Scholar.": 1, + "There": 1, + "also": 1, + "convenience": 1, + "comparing": 1, + "multiple": 1, + "scholars": 1, + "predicting": 1, + "index": 1, + "scores": 1, + "based": 1, + "past": 1, + "publication": 1, + "records.": 1, + "note": 1, + "A": 1, + "complementary": 1, + "Scholar": 1, + "found": 1, + "//biostat.jhsph.edu/": 1, + "jleek/code/googleCite.r": 1, + "was": 1, + "developed": 1, + "independently.": 1 }, "RDoc": { "RDoc": 7, @@ -58633,72 +58752,21 @@ "%": 34, "{": 19, "machine": 3, - "simple_tokenizer": 1, + "ephemeris_parser": 1, ";": 38, "action": 9, - "MyTs": 2, - "my_ts": 6, + "mark": 6, "p": 8, "}": 19, - "MyTe": 2, - "my_te": 6, - "Emit": 4, - "emit": 4, + "parse_start_time": 2, + "parser.start_time": 1, "data": 15, "[": 20, - "my_ts...my_te": 1, + "mark..p": 4, "]": 20, ".pack": 6, "(": 33, ")": 33, - "nil": 4, - "foo": 8, - "any": 4, - "+": 7, - "main": 3, - "|": 11, - "*": 9, - "end": 23, - "#": 4, - "class": 3, - "SimpleTokenizer": 1, - "attr_reader": 2, - "path": 8, - "def": 10, - "initialize": 2, - "@path": 2, - "write": 9, - "stdout.puts": 2, - "perform": 2, - "pe": 4, - "ignored": 4, - "eof": 3, - "init": 3, - "leftover": 8, - "File.open": 2, - "do": 2, - "f": 2, - "while": 2, - "chunk": 2, - "f.read": 2, - "ENV": 2, - ".to_i": 2, - "chunk.unpack": 2, - "data.length": 3, - "exec": 3, - "if": 4, - "my_ts..": 1, - "-": 5, - "else": 2, - "s": 4, - "SimpleTokenizer.new": 1, - "ARGV": 2, - "s.perform": 2, - "ephemeris_parser": 1, - "mark": 6, - "parse_start_time": 2, - "parser.start_time": 1, - "mark..p": 4, "parse_stop_time": 2, "parser.stop_time": 1, "parse_step_size": 2, @@ -58711,6 +58779,7 @@ "r": 1, "n": 1, "adbc": 2, + "|": 11, "year": 2, "digit": 7, "month": 2, @@ -58723,53 +58792,98 @@ "tz": 2, "datetime": 3, "time_unit": 2, + "s": 4, "soe": 2, "eoe": 2, "ephemeris_table": 3, "alnum": 1, + "*": 9, + "-": 5, "./": 1, "start_time": 4, "space*": 2, "stop_time": 4, "step_size": 3, + "+": 7, "ephemeris": 2, + "main": 3, "any*": 3, + "end": 23, "require": 1, "module": 1, "Tengai": 1, "EPHEMERIS_DATA": 2, "Struct.new": 1, ".freeze": 1, + "class": 3, "EphemerisParser": 1, "<": 1, + "def": 10, "self.parse": 1, "parser": 2, "new": 1, "data.unpack": 1, + "if": 4, "data.is_a": 1, "String": 1, + "eof": 3, + "data.length": 3, + "write": 9, + "init": 3, + "exec": 3, "time": 6, "super": 2, "parse_time": 3, "private": 1, "DateTime.parse": 1, "simple_scanner": 1, + "Emit": 4, + "emit": 4, "ts": 4, "..": 1, "te": 1, + "foo": 8, + "any": 4, + "#": 4, "SimpleScanner": 1, + "attr_reader": 2, + "path": 8, + "initialize": 2, + "@path": 2, + "stdout.puts": 2, + "perform": 2, + "pe": 4, + "ignored": 4, + "leftover": 8, + "File.open": 2, + "do": 2, + "f": 2, + "while": 2, + "chunk": 2, + "f.read": 2, + "ENV": 2, + ".to_i": 2, + "chunk.unpack": 2, "||": 1, "ts..pe": 1, - "SimpleScanner.new": 1 + "else": 2, + "SimpleScanner.new": 1, + "ARGV": 2, + "s.perform": 2, + "simple_tokenizer": 1, + "MyTs": 2, + "my_ts": 6, + "MyTe": 2, + "my_te": 6, + "my_ts...my_te": 1, + "nil": 4, + "SimpleTokenizer": 1, + "my_ts..": 1, + "SimpleTokenizer.new": 1 }, "Rebol": { - "Rebol": 4, - "[": 54, - "]": 61, - "hello": 8, - "func": 5, - "print": 4, "REBOL": 5, + "[": 54, "System": 1, "Title": 2, "Rights": 1, @@ -58807,6 +58921,7 @@ "block": 5, "BIND_SET": 1, "SHALLOW": 1, + "]": 61, ";": 19, "Special": 1, "as": 1, @@ -58849,7 +58964,9 @@ "it": 2, "correct": 2, "action": 2, + "Rebol": 4, "re": 20, + "func": 5, "s": 5, "/i": 1, "rejoin": 1, @@ -58911,24 +59028,137 @@ "off": 1, "none": 1, "#": 1, + "hello": 8, + "print": 4, "author": 1 }, "Red": { - "Red/System": 1, + "Red": 3, "[": 111, "Title": 2, + "Author": 1, + "]": 114, + "File": 1, + "%": 2, + "console.red": 1, + "Tabs": 1, + "Rights": 1, + "License": 2, + "{": 11, + "Distributed": 1, + "under": 1, + "the": 3, + "Boost": 1, + "Software": 1, + "Version": 1, + "See": 1, + "https": 1, + "//github.com/dockimbel/Red/blob/master/BSL": 1, + "-": 74, + "License.txt": 1, + "}": 11, "Purpose": 2, "Language": 2, "http": 2, "//www.red": 2, - "-": 74, "lang.org/": 2, - "]": 114, + "#system": 1, + "global": 1, + "#either": 3, + "OS": 3, + "MacOSX": 2, + "History": 1, + "library": 1, + "cdecl": 3, + "add": 2, + "history": 2, + ";": 31, + "Add": 1, + "line": 9, + "to": 2, + "history.": 1, + "c": 7, + "string": 10, + "rl": 4, + "insert": 3, + "wrapper": 2, + "func": 1, + "count": 3, + "integer": 16, + "key": 3, + "return": 10, + "Windows": 2, + "system/platform": 1, + "ret": 5, + "AttachConsole": 1, + "if": 2, + "zero": 3, + "print": 5, + "halt": 2, + "SetConsoleTitle": 1, + "as": 4, + "string/rs": 1, + "head": 1, + "str": 4, + "bind": 1, + "tab": 3, + "input": 2, + "routine": 1, + "prompt": 3, + "/local": 1, + "len": 1, + "buffer": 4, + "string/load": 1, + "+": 1, + "length": 1, + "free": 1, + "byte": 3, + "ptr": 14, + "SET_RETURN": 1, + "(": 6, + ")": 4, + "delimiters": 1, + "function": 6, + "block": 3, + "list": 1, + "copy": 2, + "none": 1, + "foreach": 1, + "case": 2, + "escaped": 2, + "no": 2, + "in": 2, + "comment": 2, + "switch": 3, + "#": 8, + "mono": 3, + "mode": 3, + "cnt/1": 1, + "red": 1, + "eval": 1, + "code": 3, + "load/all": 1, + "unless": 1, + "tail": 1, + "set/any": 1, + "not": 1, + "script/2": 1, + "do": 2, + "skip": 1, + "script": 1, + "quit": 2, + "init": 1, + "console": 2, + "Console": 1, + "alpha": 1, + "version": 3, + "only": 1, + "ASCII": 1, + "supported": 1, + "Red/System": 1, "#include": 1, - "%": 2, "../common/FPU": 1, "configuration.reds": 1, - ";": 31, "C": 1, "types": 1, "#define": 2, @@ -58939,9 +59169,6 @@ "alias": 2, "struct": 5, "second": 1, - "integer": 16, - "(": 6, - ")": 4, "minute": 1, "hour": 1, "day": 1, @@ -58956,32 +59183,22 @@ "saving": 1, "Negative": 1, "unknown": 1, - "#either": 3, - "OS": 3, "#import": 1, "LIBC": 1, "file": 1, - "cdecl": 3, "Error": 1, "handling": 1, "form": 1, "error": 5, "Return": 1, "description.": 1, - "code": 3, - "return": 10, - "c": 7, - "string": 10, - "print": 5, "Print": 1, - "to": 2, "standard": 1, "output.": 1, "Memory": 1, "management": 1, "make": 1, "Allocate": 1, - "zero": 3, "filled": 1, "memory.": 1, "chunks": 1, @@ -58994,11 +59211,9 @@ "JVM": 6, "reserved0": 1, "int": 6, - "ptr": 14, "reserved1": 1, "reserved2": 1, "DestroyJavaVM": 1, - "function": 6, "JNICALL": 5, "vm": 5, "jint": 5, @@ -59006,10 +59221,8 @@ "penv": 3, "p": 3, "args": 2, - "byte": 3, "DetachCurrentThread": 1, "GetEnv": 1, - "version": 3, "AttachCurrentThreadAsDaemon": 1, "just": 2, "some": 2, @@ -59018,14 +59231,9 @@ "testing": 1, "#some": 1, "hash": 1, - "quit": 2, - "#": 8, - "{": 11, "FF0000": 3, - "}": 11, "FF000000": 2, "with": 4, - "tab": 3, "instead": 1, "of": 1, "space": 2, @@ -59041,7 +59249,6 @@ "which": 1, "interpreter": 1, "path": 1, - "copy": 2, "h": 1, "#if": 1, "type": 1, @@ -59056,7 +59263,6 @@ "@@": 1, "reposition": 1, "after": 1, - "the": 3, "catch": 1, "flag": 1, "CATCH_ALL": 1, @@ -59067,94 +59273,7 @@ "stack": 1, "aligned": 1, "on": 1, - "bit": 1, - "Red": 3, - "Author": 1, - "File": 1, - "console.red": 1, - "Tabs": 1, - "Rights": 1, - "License": 2, - "Distributed": 1, - "under": 1, - "Boost": 1, - "Software": 1, - "Version": 1, - "See": 1, - "https": 1, - "//github.com/dockimbel/Red/blob/master/BSL": 1, - "License.txt": 1, - "#system": 1, - "global": 1, - "MacOSX": 2, - "History": 1, - "library": 1, - "add": 2, - "history": 2, - "Add": 1, - "line": 9, - "history.": 1, - "rl": 4, - "insert": 3, - "wrapper": 2, - "func": 1, - "count": 3, - "key": 3, - "Windows": 2, - "system/platform": 1, - "ret": 5, - "AttachConsole": 1, - "if": 2, - "halt": 2, - "SetConsoleTitle": 1, - "as": 4, - "string/rs": 1, - "head": 1, - "str": 4, - "bind": 1, - "input": 2, - "routine": 1, - "prompt": 3, - "/local": 1, - "len": 1, - "buffer": 4, - "string/load": 1, - "+": 1, - "length": 1, - "free": 1, - "SET_RETURN": 1, - "delimiters": 1, - "block": 3, - "list": 1, - "none": 1, - "foreach": 1, - "case": 2, - "escaped": 2, - "no": 2, - "in": 2, - "comment": 2, - "switch": 3, - "mono": 3, - "mode": 3, - "cnt/1": 1, - "red": 1, - "eval": 1, - "load/all": 1, - "unless": 1, - "tail": 1, - "set/any": 1, - "not": 1, - "script/2": 1, - "do": 2, - "skip": 1, - "script": 1, - "init": 1, - "console": 2, - "Console": 1, - "alpha": 1, - "only": 1, - "ASCII": 1, - "supported": 1 + "bit": 1 }, "RobotFramework": { "***": 16, @@ -59264,6 +59383,55 @@ "#": 2, "Using": 1, "BuiltIn": 1, + "case": 1, + "gherkin": 1, + "syntax.": 1, + "This": 3, + "similar": 1, + "examples.": 1, + "difference": 1, + "higher": 1, + "abstraction": 1, + "level": 1, + "and": 2, + "their": 1, + "arguments": 1, + "are": 1, + "embedded": 1, + "into": 1, + "names.": 1, + "kind": 2, + "_gherkin_": 2, + "syntax": 1, + "been": 3, + "made": 1, + "popular": 1, + "http": 1, + "//cukes.info": 1, + "|": 1, + "Cucumber": 1, + "It": 1, + "especially": 1, + "act": 1, + "as": 1, + "examples": 1, + "easily": 1, + "understood": 1, + "also": 2, + "business": 2, + "people.": 1, + "Given": 1, + "calculator": 1, + "cleared": 2, + "When": 1, + "user": 2, + "types": 2, + "pushes": 2, + "equals": 2, + "Then": 1, + "result": 2, + "Calculator": 1, + "User": 2, "All": 1, "contain": 1, "constructed": 1, @@ -59280,15 +59448,10 @@ "without": 1, "programming": 1, "skills.": 1, - "This": 3, - "kind": 2, "normal": 1, "automation.": 1, "If": 1, - "also": 2, - "business": 2, "understand": 1, - "_gherkin_": 2, "may": 1, "work": 1, "better.": 1, @@ -59297,249 +59460,54 @@ "Longer": 1, "Clear": 1, "built": 1, - "variable": 1, - "case": 1, - "gherkin": 1, - "syntax.": 1, - "similar": 1, - "examples.": 1, - "difference": 1, - "higher": 1, - "abstraction": 1, - "level": 1, - "and": 2, - "their": 1, - "arguments": 1, - "are": 1, - "embedded": 1, - "into": 1, - "names.": 1, - "syntax": 1, - "been": 3, - "made": 1, - "popular": 1, - "http": 1, - "//cukes.info": 1, - "|": 1, - "Cucumber": 1, - "It": 1, - "especially": 1, - "act": 1, - "as": 1, - "examples": 1, - "easily": 1, - "understood": 1, - "people.": 1, - "Given": 1, - "calculator": 1, - "cleared": 2, - "When": 1, - "user": 2, - "types": 2, - "pushes": 2, - "equals": 2, - "Then": 1, - "result": 2, - "Calculator": 1, - "User": 2 + "variable": 1 }, "Ruby": { - "module": 8, - "Foo": 1, + "Pry.config.commands.import": 1, + "Pry": 1, + "ExtendedCommands": 1, + "Experimental": 1, + "Pry.config.pager": 1, + "false": 29, + "Pry.config.color": 1, + "Pry.config.commands.alias_command": 1, + "Pry.config.commands.command": 1, + "do": 38, + "|": 93, + "*args": 17, + "output.puts": 1, "end": 239, - "SHEBANG#!rake": 1, + "Pry.config.history.should_save": 1, + "Pry.config.prompt": 1, + "[": 58, + "proc": 2, + "{": 70, + "}": 70, + "]": 58, + "Pry.plugins": 1, + ".disable": 1, + "appraise": 2, + "gem": 3, + "load": 3, + "Dir": 4, + ".each": 4, + "plugin": 3, + "(": 244, + ")": 256, "task": 2, "default": 2, - "do": 38, "puts": 12, - "SHEBANG#!macruby": 1, + "module": 8, + "Foo": 1, "require": 58, - "Resque": 3, - "include": 3, - "Helpers": 1, - "extend": 2, - "self": 11, - "def": 143, - "redis": 7, - "(": 244, - "server": 11, - ")": 256, - "case": 5, - "when": 11, - "String": 2, - "if": 72, - "/redis": 1, - "/": 34, - "//": 3, - "Redis.connect": 2, - "url": 12, - "thread_safe": 2, - "true": 15, - "else": 25, - "namespace": 3, - "server.split": 2, - "host": 3, - "port": 4, - "db": 3, - "Redis.new": 1, - "||": 22, - "resque": 2, - "@redis": 6, - "Redis": 3, - "Namespace.new": 2, - "Namespace": 1, - "@queues": 2, - "Hash.new": 1, - "{": 70, - "|": 93, - "h": 2, - "name": 51, - "[": 58, - "]": 58, - "Queue.new": 1, - "coder": 3, - "}": 70, - "@coder": 1, - "MultiJsonCoder.new": 1, - "attr_writer": 4, - "return": 25, - "self.redis": 2, - "Redis.respond_to": 1, - "connect": 1, - "redis_id": 2, - "redis.respond_to": 2, - "redis.server": 1, - "elsif": 7, - "nodes": 1, - "#": 100, - "distributed": 1, - "redis.nodes.map": 1, - "n": 4, - "n.id": 1, - ".join": 1, - "redis.client.id": 1, - "before_first_fork": 2, - "&": 31, - "block": 30, - "@before_first_fork": 2, - "before_fork": 2, - "@before_fork": 2, - "after_fork": 2, - "@after_fork": 2, - "to_s": 1, - "attr_accessor": 2, - "inline": 3, - "alias": 1, - "push": 1, - "queue": 24, - "item": 4, - "<<": 15, - "pop": 1, - "begin": 9, - ".pop": 1, - "rescue": 13, - "ThreadError": 1, - "nil": 21, - "size": 3, - ".size": 1, - "peek": 1, - "start": 7, - "count": 5, - ".slice": 1, - "list_range": 1, - "key": 8, - "decode": 2, - "redis.lindex": 1, - "Array": 2, - "redis.lrange": 1, - "+": 47, - "-": 34, - ".map": 6, - "queues": 3, - "redis.smembers": 1, - "remove_queue": 1, - ".destroy": 1, - "@queues.delete": 1, - "queue.to_s": 1, - "name.to_s": 3, - "enqueue": 1, - "klass": 16, - "*args": 17, - "enqueue_to": 2, - "queue_from_class": 4, - "before_hooks": 2, - "Plugin.before_enqueue_hooks": 1, - ".collect": 2, - "hook": 9, - "klass.send": 4, - "before_hooks.any": 2, - "result": 8, - "false": 29, - "Job.create": 1, - "Plugin.after_enqueue_hooks": 1, - ".each": 4, - "dequeue": 1, - "Plugin.before_dequeue_hooks": 1, - "Job.destroy": 1, - "Plugin.after_dequeue_hooks": 1, - "klass.instance_variable_get": 1, - "@queue": 1, - "klass.respond_to": 1, - "and": 6, - "klass.queue": 1, - "reserve": 1, - "Job.reserve": 1, - "validate": 1, - "raise": 17, - "NoQueueError.new": 1, - "klass.to_s.empty": 1, - "NoClassError.new": 1, - "workers": 2, - "Worker.all": 1, - "working": 2, - "Worker.working": 1, - "remove_worker": 1, - "worker_id": 2, - "worker": 1, - "Worker.find": 1, - "worker.unregister_worker": 1, - "info": 2, - "pending": 1, - "queues.inject": 1, - "m": 3, - "k": 2, - "processed": 2, - "Stat": 2, - "queues.size": 1, - "workers.size.to_i": 1, - "working.size": 1, - "failed": 3, - "servers": 1, - "environment": 2, - "ENV": 4, - "keys": 6, - "redis.keys": 1, - "key.sub": 1, - "SHEBANG#!python": 1, - "Jenkins": 1, - "Plugin": 1, - "Specification.new": 1, - "plugin": 3, - "plugin.name": 1, - "plugin.display_name": 1, - "plugin.version": 1, - "plugin.description": 1, - "plugin.url": 1, - "plugin.developed_by": 1, - "plugin.uses_repository": 1, - "github": 1, - "plugin.depends_on": 1, - "#plugin.depends_on": 1, "class": 7, "Formula": 2, + "include": 3, "FileUtils": 1, "attr_reader": 5, + "name": 51, "path": 16, + "url": 12, "version": 10, "homepage": 2, "specs": 14, @@ -59551,9 +59519,13 @@ "bottle_url": 3, "bottle_sha1": 2, "buildpath": 1, + "def": 143, "initialize": 2, + "nil": 21, "set_instance_variable": 12, + "if": 72, "@head": 4, + "and": 6, "not": 3, "@url": 8, "or": 7, @@ -59561,10 +59533,12 @@ "@version": 10, "@spec_to_use": 4, "@unstable": 2, + "else": 25, "@standard.nil": 1, "SoftwareSpecification.new": 3, "@specs": 3, "@standard": 3, + "raise": 17, "@url.nil": 1, "@name": 3, "validate_variable": 7, @@ -59572,6 +59546,7 @@ "path.nil": 1, "self.class.path": 1, "Pathname.new": 3, + "||": 22, "@spec_to_use.detect_version": 1, "CHECKSUM_TYPES.each": 1, "type": 10, @@ -59581,10 +59556,14 @@ "@spec_to_use.specs": 1, "@bottle_url": 2, "bottle_base_url": 1, + "+": 47, "bottle_filename": 1, + "self": 11, "@bottle_sha1": 2, "installed": 2, + "return": 25, "installed_prefix.children.length": 1, + "rescue": 13, "explicitly_requested": 1, "ARGV.named.empty": 1, "ARGV.formulae.include": 1, @@ -59601,6 +59580,7 @@ "prefix.parent": 1, "bin": 1, "doc": 1, + "info": 2, "lib": 1, "libexec": 1, "man": 9, @@ -59644,6 +59624,7 @@ "failure.build": 1, "cc.build": 1, "skip_clean": 2, + "true": 15, "self.class.skip_clean_all": 1, "to_check": 2, "path.relative_path_from": 1, @@ -59651,12 +59632,14 @@ "self.class.skip_clean_paths.include": 1, "brew": 2, "stage": 2, + "begin": 9, "patch": 3, "yield": 5, "Interrupt": 2, "RuntimeError": 1, "SystemCallError": 1, "e": 8, + "#": 100, "don": 1, "config.log": 2, "t": 3, @@ -59670,6 +59653,7 @@ "std_cmake_args": 1, "%": 10, "W": 1, + "-": 34, "DCMAKE_INSTALL_PREFIX": 1, "DCMAKE_BUILD_TYPE": 1, "None": 1, @@ -59685,6 +59669,7 @@ "camelcase": 1, "it": 1, "name.capitalize.gsub": 1, + "/": 34, "_.": 1, "s": 2, "zA": 1, @@ -59692,7 +59677,7 @@ "upcase": 1, ".gsub": 5, "self.names": 1, - "Dir": 4, + ".map": 6, "f": 11, "File.basename": 2, ".sort": 2, @@ -59701,13 +59686,16 @@ "self.map": 1, "rv": 3, "each": 1, + "<<": 15, "self.each": 1, "names.each": 1, + "n": 4, "Formula.factory": 2, "onoe": 2, "inspect": 2, "self.aliases": 1, "self.canonical_name": 1, + "name.to_s": 3, "name.kind_of": 2, "Pathname": 2, "formula_with_that_name": 1, @@ -59724,6 +59712,7 @@ "relative_pathname": 1, "relative_pathname.stem.to_s": 1, "tapd.directory": 1, + "elsif": 7, "formula_with_that_name.file": 1, "formula_with_that_name.readable": 1, "possible_alias.file": 1, @@ -59733,6 +59722,7 @@ "self.factory": 1, "https": 1, "ftp": 1, + "//": 3, ".basename": 1, "target_file": 6, "name.basename": 1, @@ -59750,6 +59740,7 @@ "Formula.path": 1, "from_name": 2, "klass_name": 2, + "klass": 16, "Object.const_get": 1, "NameError": 2, "LoadError": 3, @@ -59785,9 +59776,11 @@ "ohai": 3, ".strip": 1, "removed_ENV_variables": 2, + "case": 5, "args.empty": 1, "cmd.split": 1, ".first": 1, + "when": 11, "ENV.remove_cc_etc": 1, "safe_system": 4, "rd": 1, @@ -59807,6 +59800,7 @@ "gets": 1, "here": 1, "threw": 1, + "failed": 3, "wr.close": 1, "out": 4, "rd.read": 1, @@ -59815,7 +59809,9 @@ "Process.wait": 1, ".success": 1, "removed_ENV_variables.each": 1, + "key": 8, "value": 4, + "ENV": 4, "ENV.kind_of": 1, "Hash": 3, "BuildError.new": 1, @@ -59909,6 +59905,8 @@ "skip_clean_all": 2, "cc_failures": 1, "stable": 2, + "&": 31, + "block": 30, "block_given": 5, "instance_eval": 2, "ARGV.build_devel": 2, @@ -59926,6 +59924,7 @@ "sha1.shift": 1, "@sha1": 6, "MacOS.cat": 1, + "String": 2, "MacOS.lion": 1, "self.data": 1, "&&": 8, @@ -59956,6 +59955,319 @@ "@cc_failures": 2, "CompilerFailures.new": 1, "CompilerFailure.new": 2, + "Grit": 1, + "ActiveSupport": 1, + "Inflector": 1, + "extend": 2, + "pluralize": 3, + "word": 10, + "apply_inflections": 3, + "inflections.plurals": 1, + "singularize": 2, + "inflections.singulars": 1, + "camelize": 2, + "term": 1, + "uppercase_first_letter": 2, + "string": 4, + "term.to_s": 1, + "string.sub": 2, + "z": 7, + "d": 6, + "*/": 1, + "inflections.acronyms": 1, + ".capitalize": 1, + "inflections.acronym_regex": 2, + "b": 4, + "A": 5, + "Z_": 1, + "string.gsub": 1, + "_": 2, + "/i": 2, + "underscore": 3, + "camel_cased_word": 6, + "camel_cased_word.to_s.dup": 1, + "word.gsub": 4, + "Za": 1, + "Z": 3, + "word.tr": 1, + "word.downcase": 1, + "humanize": 2, + "lower_case_and_underscored_word": 1, + "result": 8, + "lower_case_and_underscored_word.to_s.dup": 1, + "inflections.humans.each": 1, + "rule": 4, + "replacement": 4, + "break": 4, + "result.sub": 2, + "result.gsub": 2, + "/_id": 1, + "result.tr": 1, + "match": 6, + "w/": 1, + ".upcase": 1, + "titleize": 1, + "": 1, + "capitalize": 1, + "Create": 1, + "of": 1, + "table": 2, + "like": 1, + "Rails": 1, + "does": 1, + "for": 1, + "models": 1, + "to": 1, + "names": 2, + "This": 1, + "uses": 1, + "on": 2, + "last": 4, + "in": 3, + "RawScaledScorer": 1, + "tableize": 2, + "class_name": 2, + "classify": 1, + "table_name": 1, + "table_name.to_s.sub": 1, + "/.*": 1, + "./": 1, + "dasherize": 1, + "underscored_word": 1, + "underscored_word.tr": 1, + "demodulize": 1, + "i": 2, + "path.rindex": 2, + "..": 1, + "deconstantize": 1, + "implementation": 1, + "based": 1, + "one": 1, + "facets": 1, + "id": 1, + "outside": 2, + "inside": 2, + "owned": 1, + "constant": 4, + "constant.ancestors.inject": 1, + "const": 3, + "ancestor": 3, + "Object": 1, + "ancestor.const_defined": 1, + "constant.const_get": 1, + "safe_constantize": 1, + "constantize": 1, + "e.message": 2, + "uninitialized": 1, + "wrong": 1, + "const_regexp": 3, + "e.name.to_s": 1, + "camel_cased_word.to_s": 1, + "ArgumentError": 1, + "/not": 1, + "missing": 1, + "ordinal": 1, + "number": 2, + ".include": 1, + "number.to_i.abs": 2, + "ordinalize": 1, + "nodoc": 3, + "parts": 1, + "camel_cased_word.split": 1, + "parts.pop": 1, + "parts.reverse.inject": 1, + "acc": 2, + "part": 1, + "part.empty": 1, + "rules": 1, + "word.to_s.dup": 1, + "word.empty": 1, + "inflections.uncountables.include": 1, + "result.downcase": 1, + "Z/": 1, + "rules.each": 1, + ".unshift": 1, + "File.dirname": 4, + "__FILE__": 3, + "For": 1, + "use/testing": 1, + "no": 1, + "require_all": 4, + "glob": 2, + "File.join": 6, + "Jekyll": 3, + "VERSION": 1, + "DEFAULTS": 2, + "Dir.pwd": 3, + "self.configuration": 1, + "override": 3, + "source": 2, + "config_file": 2, + "config": 3, + "YAML.load_file": 1, + "config.is_a": 1, + "stdout.puts": 1, + "err": 1, + "stderr.puts": 2, + "err.to_s": 1, + "DEFAULTS.deep_merge": 1, + ".deep_merge": 1, + "Jenkins": 1, + "Plugin": 1, + "Specification.new": 1, + "plugin.name": 1, + "plugin.display_name": 1, + "plugin.version": 1, + "plugin.description": 1, + "plugin.url": 1, + "plugin.developed_by": 1, + "plugin.uses_repository": 1, + "github": 1, + "plugin.depends_on": 1, + "#plugin.depends_on": 1, + "SHEBANG#!macruby": 1, + "object": 2, + "@user": 1, + "person": 1, + "attributes": 2, + "username": 1, + "email": 1, + "location": 1, + "created_at": 1, + "registered_at": 1, + "node": 2, + "role": 1, + "user": 1, + "user.is_admin": 1, + "child": 1, + "phone_numbers": 1, + "pnumbers": 1, + "extends": 1, + "node_numbers": 1, + "u": 1, + "partial": 1, + "u.phone_numbers": 1, + "Resque": 3, + "Helpers": 1, + "redis": 7, + "server": 11, + "/redis": 1, + "Redis.connect": 2, + "thread_safe": 2, + "namespace": 3, + "server.split": 2, + "host": 3, + "port": 4, + "db": 3, + "Redis.new": 1, + "resque": 2, + "@redis": 6, + "Redis": 3, + "Namespace.new": 2, + "Namespace": 1, + "@queues": 2, + "Hash.new": 1, + "h": 2, + "Queue.new": 1, + "coder": 3, + "@coder": 1, + "MultiJsonCoder.new": 1, + "attr_writer": 4, + "self.redis": 2, + "Redis.respond_to": 1, + "connect": 1, + "redis_id": 2, + "redis.respond_to": 2, + "redis.server": 1, + "nodes": 1, + "distributed": 1, + "redis.nodes.map": 1, + "n.id": 1, + ".join": 1, + "redis.client.id": 1, + "before_first_fork": 2, + "@before_first_fork": 2, + "before_fork": 2, + "@before_fork": 2, + "after_fork": 2, + "@after_fork": 2, + "to_s": 1, + "attr_accessor": 2, + "inline": 3, + "alias": 1, + "push": 1, + "queue": 24, + "item": 4, + "pop": 1, + ".pop": 1, + "ThreadError": 1, + "size": 3, + ".size": 1, + "peek": 1, + "start": 7, + "count": 5, + ".slice": 1, + "list_range": 1, + "decode": 2, + "redis.lindex": 1, + "Array": 2, + "redis.lrange": 1, + "queues": 3, + "redis.smembers": 1, + "remove_queue": 1, + ".destroy": 1, + "@queues.delete": 1, + "queue.to_s": 1, + "enqueue": 1, + "enqueue_to": 2, + "queue_from_class": 4, + "before_hooks": 2, + "Plugin.before_enqueue_hooks": 1, + ".collect": 2, + "hook": 9, + "klass.send": 4, + "before_hooks.any": 2, + "Job.create": 1, + "Plugin.after_enqueue_hooks": 1, + "dequeue": 1, + "Plugin.before_dequeue_hooks": 1, + "Job.destroy": 1, + "Plugin.after_dequeue_hooks": 1, + "klass.instance_variable_get": 1, + "@queue": 1, + "klass.respond_to": 1, + "klass.queue": 1, + "reserve": 1, + "Job.reserve": 1, + "validate": 1, + "NoQueueError.new": 1, + "klass.to_s.empty": 1, + "NoClassError.new": 1, + "workers": 2, + "Worker.all": 1, + "working": 2, + "Worker.working": 1, + "remove_worker": 1, + "worker_id": 2, + "worker": 1, + "Worker.find": 1, + "worker.unregister_worker": 1, + "pending": 1, + "queues.inject": 1, + "m": 3, + "k": 2, + "processed": 2, + "Stat": 2, + "queues.size": 1, + "workers.size.to_i": 1, + "working.size": 1, + "servers": 1, + "environment": 2, + "keys": 6, + "redis.keys": 1, + "key.sub": 1, + "SHEBANG#!ruby": 2, + "SHEBANG#!rake": 1, "Sinatra": 2, "Request": 2, "<": 2, @@ -59967,15 +60279,12 @@ "entries.map": 1, "accept_entry": 1, ".sort_by": 1, - "last": 4, "first": 1, "preferred_type": 1, "self.defer": 1, - "match": 6, "pattern": 1, "path.respond_to": 5, "path.keys": 1, - "names": 2, "path.names": 1, "TypeError": 1, "URI": 3, @@ -60022,7 +60331,6 @@ "at": 1, "running": 2, "built": 1, - "in": 3, "now": 1, "http": 1, "webrick": 1, @@ -60038,9 +60346,7 @@ "app_file": 4, "root": 5, "File.expand_path": 1, - "File.dirname": 4, "views": 1, - "File.join": 6, "reload_templates": 1, "lock": 1, "threaded": 1, @@ -60055,7 +60361,6 @@ "configure": 2, "get": 2, "filename": 2, - "__FILE__": 3, "png": 1, "send_file": 1, "NotFound": 1, @@ -60108,7 +60413,6 @@ "super": 3, "self.register": 2, "extensions": 6, - "nodoc": 3, "added_methods": 2, "extensions.map": 1, "m.public_instance_methods": 1, @@ -60156,192 +60460,7 @@ "Delegator.target.helpers": 1, "self.use": 1, "Delegator.target.use": 1, - "Grit": 1, - "SHEBANG#!ruby": 2, - ".unshift": 1, - "For": 1, - "use/testing": 1, - "no": 1, - "gem": 3, - "require_all": 4, - "glob": 2, - "Jekyll": 3, - "VERSION": 1, - "DEFAULTS": 2, - "Dir.pwd": 3, - "self.configuration": 1, - "override": 3, - "source": 2, - "config_file": 2, - "config": 3, - "YAML.load_file": 1, - "config.is_a": 1, - "stdout.puts": 1, - "err": 1, - "stderr.puts": 2, - "err.to_s": 1, - "DEFAULTS.deep_merge": 1, - ".deep_merge": 1, - "load": 3, - "Pry.config.commands.import": 1, - "Pry": 1, - "ExtendedCommands": 1, - "Experimental": 1, - "Pry.config.pager": 1, - "Pry.config.color": 1, - "Pry.config.commands.alias_command": 1, - "Pry.config.commands.command": 1, - "output.puts": 1, - "Pry.config.history.should_save": 1, - "Pry.config.prompt": 1, - "proc": 2, - "Pry.plugins": 1, - ".disable": 1, - "appraise": 2, - "ActiveSupport": 1, - "Inflector": 1, - "pluralize": 3, - "word": 10, - "apply_inflections": 3, - "inflections.plurals": 1, - "singularize": 2, - "inflections.singulars": 1, - "camelize": 2, - "term": 1, - "uppercase_first_letter": 2, - "string": 4, - "term.to_s": 1, - "string.sub": 2, - "z": 7, - "d": 6, - "*/": 1, - "inflections.acronyms": 1, - ".capitalize": 1, - "inflections.acronym_regex": 2, - "b": 4, - "A": 5, - "Z_": 1, - "string.gsub": 1, - "_": 2, - "/i": 2, - "underscore": 3, - "camel_cased_word": 6, - "camel_cased_word.to_s.dup": 1, - "word.gsub": 4, - "Za": 1, - "Z": 3, - "word.tr": 1, - "word.downcase": 1, - "humanize": 2, - "lower_case_and_underscored_word": 1, - "lower_case_and_underscored_word.to_s.dup": 1, - "inflections.humans.each": 1, - "rule": 4, - "replacement": 4, - "break": 4, - "result.sub": 2, - "result.gsub": 2, - "/_id": 1, - "result.tr": 1, - "w/": 1, - ".upcase": 1, - "titleize": 1, - "": 1, - "capitalize": 1, - "Create": 1, - "of": 1, - "table": 2, - "like": 1, - "Rails": 1, - "does": 1, - "for": 1, - "models": 1, - "to": 1, - "This": 1, - "uses": 1, - "on": 2, - "RawScaledScorer": 1, - "tableize": 2, - "class_name": 2, - "classify": 1, - "table_name": 1, - "table_name.to_s.sub": 1, - "/.*": 1, - "./": 1, - "dasherize": 1, - "underscored_word": 1, - "underscored_word.tr": 1, - "demodulize": 1, - "i": 2, - "path.rindex": 2, - "..": 1, - "deconstantize": 1, - "implementation": 1, - "based": 1, - "one": 1, - "facets": 1, - "id": 1, - "outside": 2, - "inside": 2, - "owned": 1, - "constant": 4, - "constant.ancestors.inject": 1, - "const": 3, - "ancestor": 3, - "Object": 1, - "ancestor.const_defined": 1, - "constant.const_get": 1, - "safe_constantize": 1, - "constantize": 1, - "e.message": 2, - "uninitialized": 1, - "wrong": 1, - "const_regexp": 3, - "e.name.to_s": 1, - "camel_cased_word.to_s": 1, - "ArgumentError": 1, - "/not": 1, - "missing": 1, - "ordinal": 1, - "number": 2, - ".include": 1, - "number.to_i.abs": 2, - "ordinalize": 1, - "parts": 1, - "camel_cased_word.split": 1, - "parts.pop": 1, - "parts.reverse.inject": 1, - "acc": 2, - "part": 1, - "part.empty": 1, - "rules": 1, - "word.to_s.dup": 1, - "word.empty": 1, - "inflections.uncountables.include": 1, - "result.downcase": 1, - "Z/": 1, - "rules.each": 1, - "object": 2, - "@user": 1, - "person": 1, - "attributes": 2, - "username": 1, - "email": 1, - "location": 1, - "created_at": 1, - "registered_at": 1, - "node": 2, - "role": 1, - "user": 1, - "user.is_admin": 1, - "child": 1, - "phone_numbers": 1, - "pnumbers": 1, - "extends": 1, - "node_numbers": 1, - "u": 1, - "partial": 1, - "u.phone_numbers": 1 + "SHEBANG#!python": 1 }, "Rust": { "//": 20, @@ -60836,6 +60955,41 @@ "/": 2 }, "SQL": { + "IF": 13, + "EXISTS": 12, + "(": 131, + "SELECT": 4, + "*": 3, + "FROM": 1, + "DBO.SYSOBJECTS": 1, + "WHERE": 1, + "ID": 2, + "OBJECT_ID": 1, + "N": 7, + ")": 131, + "AND": 1, + "OBJECTPROPERTY": 1, + "id": 22, + "DROP": 3, + "PROCEDURE": 1, + "dbo.AvailableInSearchSel": 2, + "GO": 4, + "CREATE": 10, + "Procedure": 1, + "AvailableInSearchSel": 1, + "AS": 1, + "UNION": 2, + "ALL": 2, + "DB_NAME": 1, + "BEGIN": 1, + "GRANT": 1, + "EXECUTE": 1, + "ON": 1, + "TO": 1, + "[": 1, + "rv": 1, + "]": 1, + "END": 1, "SHOW": 2, "WARNINGS": 2, ";": 31, @@ -60845,15 +60999,9 @@ "for": 15, "table": 17, "articles": 4, - "CREATE": 10, "TABLE": 10, - "IF": 13, "NOT": 46, - "EXISTS": 12, - "(": 131, - "id": 22, "int": 28, - ")": 131, "NULL": 91, "AUTO_INCREMENT": 9, "title": 4, @@ -60917,7 +61065,6 @@ "type": 3, "token": 3, "user_has_challenge_token": 3, - "DROP": 3, "create": 2, "FILIAL": 10, "NUMBER": 1, @@ -60937,7 +61084,6 @@ "PK_ID": 1, "primary": 1, "key": 1, - "ID": 2, "grant": 8, "select": 10, "on": 8, @@ -60950,33 +61096,6 @@ "SIEBEL": 1, "VBIS": 1, "VPORTAL": 1, - "SELECT": 4, - "*": 3, - "FROM": 1, - "DBO.SYSOBJECTS": 1, - "WHERE": 1, - "OBJECT_ID": 1, - "N": 7, - "AND": 1, - "OBJECTPROPERTY": 1, - "PROCEDURE": 1, - "dbo.AvailableInSearchSel": 2, - "GO": 4, - "Procedure": 1, - "AvailableInSearchSel": 1, - "AS": 1, - "UNION": 2, - "ALL": 2, - "DB_NAME": 1, - "BEGIN": 1, - "GRANT": 1, - "EXECUTE": 1, - "ON": 1, - "TO": 1, - "[": 1, - "rv": 1, - "]": 1, - "END": 1, "if": 1, "exists": 1, "from": 2, @@ -60999,12 +61118,17 @@ "now": 1 }, "STON": { - "{": 15, "[": 11, "]": 11, - "}": 15, + "{": 15, "#a": 1, "#b": 1, + "}": 15, + "Rectangle": 1, + "#origin": 1, + "Point": 2, + "-": 2, + "#corner": 1, "TestDomainObject": 1, "#created": 1, "DateAndTime": 2, @@ -61022,11 +61146,6 @@ "ByteArray": 1, "#boolean": 1, "false": 1, - "Rectangle": 1, - "#origin": 1, - "Point": 2, - "-": 2, - "#corner": 1, "ZnResponse": 1, "#headers": 2, "ZnHeaders": 1, @@ -61077,27 +61196,51 @@ "scala": 2, "#": 2, "object": 3, - "HelloWorld": 1, + "Beers": 1, + "extends": 1, + "Application": 1, "{": 21, "def": 10, - "main": 1, + "bottles": 3, "(": 67, - "args": 1, - "Array": 1, - "[": 11, + "qty": 12, + "Int": 11, + "f": 4, "String": 5, - "]": 11, ")": 67, - "println": 8, + "//": 29, + "higher": 1, + "-": 5, + "order": 1, + "functions": 2, + "match": 2, + "case": 8, + "+": 49, + "x": 3, "}": 22, + "beers": 3, + "sing": 3, + "implicit": 3, + "song": 3, + "takeOne": 2, + "nextQty": 2, + "nested": 1, + "if": 2, + "else": 2, + "refrain": 2, + ".capitalize": 1, + "tail": 1, + "recursion": 1, + "val": 6, + "headOfSong": 1, + "println": 8, + "parameter": 1, "name": 4, "version": 1, "organization": 1, "libraryDependencies": 3, - "+": 49, "%": 12, "Seq": 3, - "val": 6, "libosmVersion": 4, "from": 1, "maxErrors": 1, @@ -61199,36 +61342,6 @@ "Credentials": 2, "Path.userHome": 1, "/": 2, - "Beers": 1, - "extends": 1, - "Application": 1, - "bottles": 3, - "qty": 12, - "Int": 11, - "f": 4, - "//": 29, - "higher": 1, - "-": 5, - "order": 1, - "functions": 2, - "match": 2, - "case": 8, - "x": 3, - "beers": 3, - "sing": 3, - "implicit": 3, - "song": 3, - "takeOne": 2, - "nextQty": 2, - "nested": 1, - "if": 2, - "else": 2, - "refrain": 2, - ".capitalize": 1, - "tail": 1, - "recursion": 1, - "headOfSong": 1, - "parameter": 1, "math.random": 1, "scala.language.postfixOps": 1, "scala.util._": 1, @@ -61251,7 +61364,9 @@ "Scala": 1, "worksheet": 1, "retry": 3, + "[": 11, "T": 8, + "]": 11, "n": 3, "block": 8, "Future": 5, @@ -61288,7 +61403,11 @@ ".foreach": 1, "Iteration": 5, "java.lang.Exception": 1, - "Hi": 10 + "Hi": 10, + "HelloWorld": 1, + "main": 1, + "args": 1, + "Array": 1 }, "Scaml": { "%": 1, @@ -61495,22 +61614,21 @@ "exported": 1 }, "Scilab": { - "disp": 1, - "(": 7, - "%": 4, - "pi": 3, - ")": 7, - ";": 7, "function": 1, "[": 1, "a": 4, "b": 4, "]": 1, "myfunction": 1, + "(": 7, "d": 2, "e": 4, "f": 2, + ")": 7, "+": 5, + "%": 4, + "pi": 3, + ";": 7, "cos": 1, "cosh": 1, "if": 1, @@ -61523,486 +61641,48 @@ "end": 1, "myvar": 1, "endfunction": 1, + "disp": 1, "assert_checkequal": 1, "assert_checkfalse": 1 }, "Shell": { - "SHEBANG#!sh": 2, - "echo": 71, "SHEBANG#!bash": 8, - "#": 53, - "declare": 22, - "-": 391, - "r": 17, - "sbt_release_version": 2, - "sbt_snapshot_version": 2, - "SNAPSHOT": 3, - "unset": 10, - "sbt_jar": 3, - "sbt_dir": 2, - "sbt_create": 2, - "sbt_snapshot": 1, - "sbt_launch_dir": 3, - "scala_version": 3, - "java_home": 1, - "sbt_explicit_version": 7, - "verbose": 6, - "debug": 11, - "quiet": 6, - "build_props_sbt": 3, - "(": 107, - ")": 154, - "{": 63, - "if": 39, - "[": 85, - "f": 68, - "project/build.properties": 9, - "]": 85, - ";": 138, - "then": 41, - "versionLine": 2, - "grep": 8, - "sbt.version": 3, - "versionString": 3, - "versionLine##sbt.version": 1, - "}": 61, - "fi": 34, - "update_build_props_sbt": 2, - "local": 22, - "ver": 5, - "old": 4, - "return": 3, - "elif": 4, - "perl": 3, - "pi": 1, - "e": 4, - "q": 8, - "||": 12, - "Updated": 1, - "file": 9, - "setting": 2, - "to": 33, - "Previous": 1, - "value": 1, - "was": 1, - "sbt_version": 8, - "n": 22, - "else": 10, - "v": 11, - "echoerr": 3, - "&": 5, - "vlog": 1, - "&&": 65, - "dlog": 8, - "get_script_path": 2, - "path": 13, - "L": 1, - "target": 1, - "readlink": 1, - "get_mem_opts": 3, - "mem": 4, - "perm": 6, - "/": 2, - "<": 2, - "codecache": 1, - "die": 2, - "exit": 10, - "make_url": 3, - "groupid": 1, - "category": 1, - "version": 12, - "default_jvm_opts": 1, - "default_sbt_opts": 1, - "default_sbt_mem": 2, - "noshare_opts": 1, - "sbt_opts_file": 1, - "jvm_opts_file": 1, - "latest_28": 1, - "latest_29": 1, - "latest_210": 1, - "script_path": 1, - "script_dir": 1, - "script_name": 2, - "java_cmd": 2, - "java": 2, - "sbt_mem": 5, - "a": 12, - "residual_args": 4, - "java_args": 3, - "scalac_args": 4, - "sbt_commands": 2, - "build_props_scala": 1, - "build.scala.versions": 1, - "versionLine##build.scala.versions": 1, - "%": 5, - ".*": 2, - "execRunner": 2, - "for": 7, - "arg": 3, - "do": 8, - "printf": 4, - "|": 17, - "done": 8, - "exec": 3, - "sbt_groupid": 3, - "case": 9, - "in": 25, - "*": 11, - "org.scala": 4, - "tools.sbt": 3, - "sbt": 18, - "esac": 7, - "sbt_artifactory_list": 2, - "version0": 2, - "url": 4, - "curl": 8, - "s": 14, - "list": 3, - "only": 6, - "F": 1, - "pe": 1, - "make_release_url": 2, - "releases": 1, - "make_snapshot_url": 2, - "snapshots": 1, - "head": 1, - "/dev/null": 6, - "jar_url": 1, - "jar_file": 1, - "download_url": 2, - "jar": 3, - "mkdir": 2, - "p": 2, - "dirname": 1, - "which": 10, - "fail": 1, - "silent": 1, - "output": 1, - "wget": 2, - "O": 1, - "acquire_sbt_jar": 1, - "sbt_url": 1, - "usage": 2, - "cat": 3, - "<<": 2, - "EOM": 3, - "Usage": 1, - "options": 8, - "h": 3, - "help": 5, - "print": 1, - "this": 6, - "message": 1, - "runner": 1, - "is": 11, - "chattier": 1, - "d": 9, - "set": 21, - "log": 2, - "level": 2, - "Debug": 1, - "Error": 1, - "no": 16, - "colors": 2, - "disable": 1, - "ANSI": 1, - "color": 1, - "codes": 1, - "create": 2, - "start": 1, - "even": 3, - "current": 1, - "directory": 5, - "contains": 2, - "project": 1, - "dir": 3, - "": 3, - "global": 1, - "settings/plugins": 1, - "default": 4, - "/.sbt/": 1, - "": 1, - "boot": 3, - "shared": 1, - "/.sbt/boot": 1, - "series": 1, - "ivy": 2, - "Ivy": 1, - "repository": 3, - "/.ivy2": 1, - "": 1, - "memory": 3, - "share": 2, - "use": 1, - "all": 1, - "caches": 1, - "sharing": 1, - "offline": 3, - "put": 1, - "mode": 2, - "jvm": 2, - "": 1, - "Turn": 1, - "on": 4, - "JVM": 1, - "debugging": 1, - "open": 1, - "at": 1, - "the": 17, - "given": 2, - "port.": 1, - "batch": 2, - "Disable": 1, - "interactive": 1, - "The": 1, - "way": 1, - "accomplish": 1, - "pre": 1, - "there": 2, - "build.properties": 1, - "an": 1, - "property": 1, - "update": 2, - "disk.": 1, - "That": 1, - "scalacOptions": 3, - "S": 2, - "stripped": 1, - "In": 1, - "of": 6, - "duplicated": 1, - "or": 3, - "conflicting": 1, - "order": 1, - "above": 1, - "shows": 1, - "precedence": 1, - "JAVA_OPTS": 1, - "lowest": 1, - "command": 5, - "line": 1, - "highest.": 1, - "addJava": 9, - "addSbt": 12, - "addScalac": 2, - "addResidual": 2, - "addResolver": 1, - "addDebugger": 2, - "get_jvm_opts": 2, - "process_args": 2, - "require_arg": 12, - "type": 5, - "opt": 3, - "z": 12, - "while": 3, - "gt": 1, - "shift": 28, - "integer": 1, - "inc": 1, - "port": 1, - "true": 2, - "snapshot": 1, - "launch": 1, - "scala": 3, - "home": 2, - "D*": 1, - "J*": 1, - "S*": 1, - "sbtargs": 3, - "IFS": 1, - "read": 1, - "<\"$sbt_opts_file\">": 1, - "process": 1, - "combined": 1, - "args": 2, - "reset": 1, - "residuals": 1, - "argumentCount=": 1, - "we": 1, - "were": 1, - "any": 1, - "opts": 1, - "eq": 1, - "0": 1, - "ThisBuild": 1, - "Update": 1, - "build": 2, - "properties": 1, - "disk": 5, - "explicit": 1, - "gives": 1, - "us": 1, - "choice": 1, - "Detected": 1, - "Overriding": 1, - "alert": 1, - "them": 1, - "stuff": 3, - "here": 1, - "argumentCount": 1, - "./build.sbt": 1, - "./project": 1, - "pwd": 1, - "doesn": 1, - "t": 3, - "understand": 1, - "iflast": 1, - "#residual_args": 1, - "@": 3, - "name": 1, - "foodforthought.jpg": 1, - "name##*fo": 1, - "rvm_ignore_rvmrc": 1, - "rvmrc": 3, - "rvm_rvmrc_files": 3, - "ef": 1, - "+": 1, - "GREP_OPTIONS": 1, - "source": 7, - "export": 25, - "rvm_path": 4, - "UID": 1, - "rvm_is_not_a_shell_function": 2, - "rvm_path/scripts": 1, - "rvm": 1, "typeset": 5, + "-": 391, "i": 2, + "n": 22, "bottles": 6, - "Bash": 3, - "script": 1, - "dotfile": 1, - "does": 1, - "lot": 1, - "fun": 2, - "like": 1, - "turning": 1, - "normal": 1, - "dotfiles": 1, - "eg": 1, - ".bashrc": 1, - "into": 3, - "symlinks": 1, - "git": 16, - "pull": 3, - "away": 1, - "optionally": 1, - "moving": 1, - "files": 1, - "so": 1, - "that": 1, - "they": 1, - "can": 3, - "be": 3, - "preserved": 1, - "up": 1, - "cron": 1, - "job": 3, - "automate": 1, - "aforementioned": 1, - "and": 5, - "maybe": 1, - "some": 1, - "more": 3, - "shopt": 13, - "nocasematch": 1, - "This": 1, - "makes": 1, - "pattern": 1, - "matching": 1, - "insensitive": 1, - "POSTFIX": 1, - "URL": 1, - "PUSHURL": 1, - "overwrite": 3, - "print_help": 2, - "k": 1, - "keep": 3, - "false": 2, - "o": 3, - "continue": 1, - "mv": 1, - "rm": 2, - "ln": 1, - "config": 4, - "remote.origin.url": 1, - "remote.origin.pushurl": 1, - "crontab": 1, - ".jobs.cron": 1, - "/.bashrc": 3, - "x": 1, - "system": 1, - "rbenv": 2, - "versions": 1, - "bare": 1, - "prefix": 1, - "SHEBANG#!zsh": 2, - "##############################################################################": 16, - "#Import": 2, - "shell": 4, - "agnostic": 2, - "Zsh": 2, - "environment": 2, - "/.profile": 2, - "HISTSIZE": 2, - "#How": 2, - "many": 2, - "lines": 2, - "history": 18, - "HISTFILE": 2, - "/.zsh_history": 2, - "#Where": 2, - "save": 4, - "SAVEHIST": 2, - "#Number": 2, - "entries": 2, - "HISTDUP": 2, - "erase": 2, - "#Erase": 2, - "duplicates": 2, - "setopt": 8, - "appendhistory": 2, - "#Append": 2, - "overwriting": 2, - "sharehistory": 2, - "#Share": 2, - "across": 2, - "terminals": 2, - "incappendhistory": 2, - "#Immediately": 2, - "append": 2, - "not": 2, - "just": 2, - "when": 2, - "term": 2, - "killed": 2, - "#.": 2, - "/.dotfiles/z": 4, - "zsh/z.sh": 2, - "#function": 2, - "precmd": 2, - ".": 5, - "rupa/z.sh": 2, + "no": 16, + "while": 3, + "[": 85, + "]": 85, + "do": 8, + "echo": 71, + "case": 9, + "{": 63, + "}": 61, + "in": 25, + ")": 154, + "%": 5, + "s": 14, + ";": 138, + "esac": 7, + "done": 8, + "exit": 10, "/usr/bin/clear": 2, - "PATH": 14, - "fpath": 6, - "HOME/.zsh/func": 2, - "U": 2, - "umask": 2, - "/opt/local/bin": 2, - "/opt/local/sbin": 2, - "/bin": 4, - "/usr/bin": 8, - "prompt": 2, - "endif": 2, - "dirpersiststore": 2, - "stty": 2, - "istrip": 2, "##": 28, + "if": 39, + "z": 12, + "then": 41, + "export": 25, "SCREENDIR": 2, + "fi": 34, + "PATH": 14, "/usr/local/bin": 6, "/usr/local/sbin": 6, "/usr/xpg4/bin": 4, "/usr/sbin": 6, + "/usr/bin": 8, "/usr/sfw/bin": 4, "/usr/ccs/bin": 4, "/usr/openwin/bin": 4, @@ -62015,109 +61695,41 @@ "TERM": 4, "COLORTERM": 2, "CLICOLOR": 2, + "#": 53, + "can": 3, + "be": 3, + "set": 21, + "to": 33, "anything": 2, "actually": 2, "DISPLAY": 2, - "pkgname": 1, - "stud": 4, - "pkgver": 1, - "pkgrel": 1, - "pkgdesc": 1, - "arch": 1, - "i686": 1, - "x86_64": 1, - "license": 1, - "depends": 1, - "libev": 1, - "openssl": 1, - "makedepends": 1, - "provides": 1, - "conflicts": 1, - "_gitroot": 1, - "https": 2, - "//github.com/bumptech/stud.git": 1, - "_gitname": 1, - "cd": 11, - "msg": 4, - "origin": 1, - "clone": 5, - "rf": 1, - "make": 6, - "package": 1, - "PREFIX": 1, - "/usr": 1, - "DESTDIR": 1, - "install": 8, - "Dm755": 1, - "init.stud": 1, - "docker": 1, - "from": 1, - "ubuntu": 1, - "maintainer": 1, - "Solomon": 1, - "Hykes": 1, - "": 1, - "run": 13, - "apt": 6, - "get": 6, - "y": 5, - "//go.googlecode.com/files/go1.1.1.linux": 1, - "amd64.tar.gz": 1, - "tar": 1, - "C": 1, - "/usr/local": 1, - "xz": 1, - "env": 4, - "/usr/local/go/bin": 2, - "/sbin": 2, - "GOPATH": 1, - "/go": 1, - "CGO_ENABLED": 1, - "/tmp": 1, - "t.go": 1, - "go": 2, - "test": 1, - "PKG": 12, - "github.com/kr/pty": 1, - "REV": 6, - "c699": 1, - "http": 3, - "//": 3, - "/go/src/": 6, - "checkout": 3, - "github.com/gorilla/context/": 1, - "d61e5": 1, - "github.com/gorilla/mux/": 1, - "b36453141c": 1, - "iptables": 1, - "/etc/apt/sources.list": 1, - "lxc": 1, - "aufs": 1, - "tools": 1, - "add": 1, - "/go/src/github.com/dotcloud/docker": 1, - "/go/src/github.com/dotcloud/docker/docker": 1, - "ldflags": 1, - "/go/bin": 1, - "cmd": 1, + "r": 17, + "&&": 65, + ".": 5, "function": 6, "ls": 6, + "command": 5, "Fh": 2, "l": 8, + "list": 3, "long": 2, "format...": 2, "ll": 2, + "|": 17, "less": 2, "XF": 2, "pipe": 2, + "into": 3, "#CDPATH": 2, "HISTIGNORE": 2, "HISTCONTROL": 2, "ignoreboth": 2, + "shopt": 13, "cdspell": 2, "extglob": 2, "progcomp": 2, "complete": 82, + "f": 68, "X": 54, "bunzip2": 2, "bzcat": 2, @@ -62193,6 +61805,7 @@ "opera": 2, "w3m": 2, "galeon": 2, + "curl": 8, "dillo": 2, "elinks": 2, "links": 2, @@ -62203,6 +61816,7 @@ "user": 2, "commands": 8, "see": 4, + "only": 6, "users": 2, "A": 10, "stopped": 4, @@ -62215,38 +61829,64 @@ "fg": 2, "disown": 2, "other": 2, + "job": 3, + "v": 11, "readonly": 4, + "unset": 10, + "and": 5, + "shell": 4, "variables": 2, + "setopt": 8, + "options": 8, "helptopic": 2, + "help": 5, "helptopics": 2, + "a": 12, "unalias": 4, "aliases": 2, "binding": 2, "bind": 4, "readline": 2, "bindings": 2, + "(": 107, + "make": 6, + "this": 6, + "more": 3, "intelligent": 2, "c": 2, + "type": 5, + "which": 10, "man": 6, "#sudo": 2, + "on": 4, + "d": 9, "pushd": 2, + "cd": 11, "rmdir": 2, "Make": 2, + "directory": 5, "directories": 2, "W": 2, "alias": 42, "filenames": 2, + "for": 7, "PS1": 2, "..": 2, "cd..": 2, + "t": 3, "csh": 2, + "is": 11, "same": 2, "as": 2, "bash...": 2, "quit": 2, + "q": 8, + "even": 3, "shorter": 2, "D": 2, "rehash": 2, + "source": 7, + "/.bashrc": 3, "after": 2, "I": 2, "edit": 2, @@ -62256,14 +61896,497 @@ "sed": 2, "awk": 2, "diff": 2, + "grep": 8, "find": 2, "ps": 2, "whoami": 2, "ping": 2, "histappend": 2, - "PROMPT_COMMAND": 2 + "PROMPT_COMMAND": 2, + "umask": 2, + "path": 13, + "/opt/local/bin": 2, + "/opt/local/sbin": 2, + "/bin": 4, + "prompt": 2, + "history": 18, + "endif": 2, + "stty": 2, + "istrip": 2, + "dirpersiststore": 2, + "##############################################################################": 16, + "#Import": 2, + "the": 17, + "agnostic": 2, + "Bash": 3, + "or": 3, + "Zsh": 2, + "environment": 2, + "config": 4, + "/.profile": 2, + "HISTSIZE": 2, + "#How": 2, + "many": 2, + "lines": 2, + "of": 6, + "keep": 3, + "memory": 3, + "HISTFILE": 2, + "/.zsh_history": 2, + "#Where": 2, + "save": 4, + "disk": 5, + "SAVEHIST": 2, + "#Number": 2, + "entries": 2, + "HISTDUP": 2, + "erase": 2, + "#Erase": 2, + "duplicates": 2, + "file": 9, + "appendhistory": 2, + "#Append": 2, + "overwriting": 2, + "sharehistory": 2, + "#Share": 2, + "across": 2, + "terminals": 2, + "incappendhistory": 2, + "#Immediately": 2, + "append": 2, + "not": 2, + "just": 2, + "when": 2, + "term": 2, + "killed": 2, + "#.": 2, + "/.dotfiles/z": 4, + "zsh/z.sh": 2, + "#function": 2, + "precmd": 2, + "rupa/z.sh": 2, + "fpath": 6, + "HOME/.zsh/func": 2, + "U": 2, + "docker": 1, + "version": 12, + "from": 1, + "ubuntu": 1, + "maintainer": 1, + "Solomon": 1, + "Hykes": 1, + "": 1, + "run": 13, + "apt": 6, + "get": 6, + "install": 8, + "y": 5, + "git": 16, + "https": 2, + "//go.googlecode.com/files/go1.1.1.linux": 1, + "amd64.tar.gz": 1, + "tar": 1, + "C": 1, + "/usr/local": 1, + "xz": 1, + "env": 4, + "/usr/local/go/bin": 2, + "/sbin": 2, + "GOPATH": 1, + "/go": 1, + "CGO_ENABLED": 1, + "/tmp": 1, + "t.go": 1, + "go": 2, + "test": 1, + "PKG": 12, + "github.com/kr/pty": 1, + "REV": 6, + "c699": 1, + "clone": 5, + "http": 3, + "//": 3, + "/go/src/": 6, + "checkout": 3, + "github.com/gorilla/context/": 1, + "d61e5": 1, + "github.com/gorilla/mux/": 1, + "b36453141c": 1, + "iptables": 1, + "/etc/apt/sources.list": 1, + "update": 2, + "lxc": 1, + "aufs": 1, + "tools": 1, + "add": 1, + "/go/src/github.com/dotcloud/docker": 1, + "/go/src/github.com/dotcloud/docker/docker": 1, + "ldflags": 1, + "/go/bin": 1, + "cmd": 1, + "pkgname": 1, + "stud": 4, + "pkgver": 1, + "pkgrel": 1, + "pkgdesc": 1, + "arch": 1, + "i686": 1, + "x86_64": 1, + "url": 4, + "license": 1, + "depends": 1, + "libev": 1, + "openssl": 1, + "makedepends": 1, + "provides": 1, + "conflicts": 1, + "_gitroot": 1, + "//github.com/bumptech/stud.git": 1, + "_gitname": 1, + "build": 2, + "msg": 4, + "pull": 3, + "origin": 1, + "else": 10, + "rm": 2, + "rf": 1, + "package": 1, + "PREFIX": 1, + "/usr": 1, + "DESTDIR": 1, + "Dm755": 1, + "init.stud": 1, + "mkdir": 2, + "p": 2, + "script": 1, + "dotfile": 1, + "repository": 3, + "does": 1, + "lot": 1, + "fun": 2, + "stuff": 3, + "like": 1, + "turning": 1, + "normal": 1, + "dotfiles": 1, + "eg": 1, + ".bashrc": 1, + "symlinks": 1, + "away": 1, + "optionally": 1, + "moving": 1, + "old": 4, + "files": 1, + "so": 1, + "that": 1, + "they": 1, + "preserved": 1, + "setting": 2, + "up": 1, + "cron": 1, + "automate": 1, + "aforementioned": 1, + "maybe": 1, + "some": 1, + "nocasematch": 1, + "This": 1, + "makes": 1, + "pattern": 1, + "matching": 1, + "insensitive": 1, + "POSTFIX": 1, + "URL": 1, + "PUSHURL": 1, + "overwrite": 3, + "true": 2, + "print_help": 2, + "e": 4, + "opt": 3, + "@": 3, + "k": 1, + "local": 22, + "false": 2, + "h": 3, + ".*": 2, + "o": 3, + "continue": 1, + "mv": 1, + "ln": 1, + "remote.origin.url": 1, + "remote.origin.pushurl": 1, + "crontab": 1, + ".jobs.cron": 1, + "x": 1, + "system": 1, + "exec": 3, + "rbenv": 2, + "versions": 1, + "bare": 1, + "&": 5, + "prefix": 1, + "/dev/null": 6, + "rvm_ignore_rvmrc": 1, + "declare": 22, + "rvmrc": 3, + "rvm_rvmrc_files": 3, + "ef": 1, + "+": 1, + "GREP_OPTIONS": 1, + "printf": 4, + "rvm_path": 4, + "UID": 1, + "elif": 4, + "rvm_is_not_a_shell_function": 2, + "rvm_path/scripts": 1, + "rvm": 1, + "sbt_release_version": 2, + "sbt_snapshot_version": 2, + "SNAPSHOT": 3, + "sbt_jar": 3, + "sbt_dir": 2, + "sbt_create": 2, + "sbt_snapshot": 1, + "sbt_launch_dir": 3, + "scala_version": 3, + "java_home": 1, + "sbt_explicit_version": 7, + "verbose": 6, + "debug": 11, + "quiet": 6, + "build_props_sbt": 3, + "project/build.properties": 9, + "versionLine": 2, + "sbt.version": 3, + "versionString": 3, + "versionLine##sbt.version": 1, + "update_build_props_sbt": 2, + "ver": 5, + "return": 3, + "perl": 3, + "pi": 1, + "||": 12, + "Updated": 1, + "Previous": 1, + "value": 1, + "was": 1, + "sbt_version": 8, + "echoerr": 3, + "vlog": 1, + "dlog": 8, + "get_script_path": 2, + "L": 1, + "target": 1, + "readlink": 1, + "get_mem_opts": 3, + "mem": 4, + "perm": 6, + "/": 2, + "<": 2, + "codecache": 1, + "die": 2, + "make_url": 3, + "groupid": 1, + "category": 1, + "default_jvm_opts": 1, + "default_sbt_opts": 1, + "default_sbt_mem": 2, + "noshare_opts": 1, + "sbt_opts_file": 1, + "jvm_opts_file": 1, + "latest_28": 1, + "latest_29": 1, + "latest_210": 1, + "script_path": 1, + "script_dir": 1, + "script_name": 2, + "java_cmd": 2, + "java": 2, + "sbt_mem": 5, + "residual_args": 4, + "java_args": 3, + "scalac_args": 4, + "sbt_commands": 2, + "build_props_scala": 1, + "build.scala.versions": 1, + "versionLine##build.scala.versions": 1, + "execRunner": 2, + "arg": 3, + "sbt_groupid": 3, + "*": 11, + "org.scala": 4, + "tools.sbt": 3, + "sbt": 18, + "sbt_artifactory_list": 2, + "version0": 2, + "F": 1, + "pe": 1, + "make_release_url": 2, + "releases": 1, + "make_snapshot_url": 2, + "snapshots": 1, + "head": 1, + "jar_url": 1, + "jar_file": 1, + "download_url": 2, + "jar": 3, + "dirname": 1, + "fail": 1, + "silent": 1, + "output": 1, + "wget": 2, + "O": 1, + "acquire_sbt_jar": 1, + "sbt_url": 1, + "usage": 2, + "cat": 3, + "<<": 2, + "EOM": 3, + "Usage": 1, + "print": 1, + "message": 1, + "runner": 1, + "chattier": 1, + "log": 2, + "level": 2, + "Debug": 1, + "Error": 1, + "colors": 2, + "disable": 1, + "ANSI": 1, + "color": 1, + "codes": 1, + "create": 2, + "start": 1, + "current": 1, + "contains": 2, + "project": 1, + "dir": 3, + "": 3, + "global": 1, + "settings/plugins": 1, + "default": 4, + "/.sbt/": 1, + "": 1, + "boot": 3, + "shared": 1, + "/.sbt/boot": 1, + "series": 1, + "ivy": 2, + "Ivy": 1, + "/.ivy2": 1, + "": 1, + "share": 2, + "use": 1, + "all": 1, + "caches": 1, + "sharing": 1, + "offline": 3, + "put": 1, + "mode": 2, + "jvm": 2, + "": 1, + "Turn": 1, + "JVM": 1, + "debugging": 1, + "open": 1, + "at": 1, + "given": 2, + "port.": 1, + "batch": 2, + "Disable": 1, + "interactive": 1, + "The": 1, + "way": 1, + "accomplish": 1, + "pre": 1, + "there": 2, + "build.properties": 1, + "an": 1, + "property": 1, + "disk.": 1, + "That": 1, + "scalacOptions": 3, + "S": 2, + "stripped": 1, + "In": 1, + "duplicated": 1, + "conflicting": 1, + "order": 1, + "above": 1, + "shows": 1, + "precedence": 1, + "JAVA_OPTS": 1, + "lowest": 1, + "line": 1, + "highest.": 1, + "addJava": 9, + "addSbt": 12, + "addScalac": 2, + "addResidual": 2, + "addResolver": 1, + "addDebugger": 2, + "get_jvm_opts": 2, + "process_args": 2, + "require_arg": 12, + "gt": 1, + "shift": 28, + "integer": 1, + "inc": 1, + "port": 1, + "snapshot": 1, + "launch": 1, + "scala": 3, + "home": 2, + "D*": 1, + "J*": 1, + "S*": 1, + "sbtargs": 3, + "IFS": 1, + "read": 1, + "<\"$sbt_opts_file\">": 1, + "process": 1, + "combined": 1, + "args": 2, + "reset": 1, + "residuals": 1, + "argumentCount=": 1, + "we": 1, + "were": 1, + "any": 1, + "opts": 1, + "eq": 1, + "0": 1, + "ThisBuild": 1, + "Update": 1, + "properties": 1, + "explicit": 1, + "gives": 1, + "us": 1, + "choice": 1, + "Detected": 1, + "Overriding": 1, + "alert": 1, + "them": 1, + "here": 1, + "argumentCount": 1, + "./build.sbt": 1, + "./project": 1, + "pwd": 1, + "doesn": 1, + "understand": 1, + "iflast": 1, + "#residual_args": 1, + "SHEBANG#!sh": 2, + "SHEBANG#!zsh": 2, + "name": 1, + "foodforthought.jpg": 1, + "name##*fo": 1 }, "ShellSession": { + "echo": 2, + "FOOBAR": 2, + "Hello": 2, + "World": 2, "gem": 4, "install": 4, "nokogiri": 6, @@ -62402,11 +62525,7 @@ "Installing": 2, "ri": 1, "documentation": 2, - "RDoc": 1, - "echo": 2, - "FOOBAR": 2, - "Hello": 2, - "World": 2 + "RDoc": 1 }, "Shen": { "*": 47, @@ -62774,6 +62893,27 @@ "when": 1, "wrapper": 1, "function": 1, + "html.shen": 1, + "html": 2, + "generation": 1, + "functions": 1, + "shen": 1, + "The": 1, + "standard": 1, + "lisp": 1, + "conversion": 1, + "tool": 1, + "suite.": 1, + "Follows": 1, + "some": 1, + "convertions": 1, + "Clojure": 1, + "tasks": 1, + "stuff": 1, + "todo1": 1, + "today": 1, + "attributes": 1, + "AS": 1, "load": 1, "JSON": 1, "Lexer": 1, @@ -62819,28 +62959,7 @@ "tokenise": 1, "JSONString": 2, "CharList": 2, - "explode": 1, - "html.shen": 1, - "html": 2, - "generation": 1, - "functions": 1, - "shen": 1, - "The": 1, - "standard": 1, - "lisp": 1, - "conversion": 1, - "tool": 1, - "suite.": 1, - "Follows": 1, - "some": 1, - "convertions": 1, - "Clojure": 1, - "tasks": 1, - "stuff": 1, - "todo1": 1, - "today": 1, - "attributes": 1, - "AS": 1 + "explode": 1 }, "Slash": { "<%>": 1, @@ -62981,65 +63100,8 @@ "}": 2 }, "Smalltalk": { - "tests": 2, - "testSimpleChainMatches": 1, - "|": 18, - "e": 11, - "eCtrl": 3, - "self": 25, - "eventKey": 3, - "e.": 1, - "ctrl": 5, - "true.": 1, - "assert": 2, - "(": 19, - ")": 19, - "matches": 4, - "{": 4, - "}": 4, - ".": 16, - "eCtrl.": 2, - "deny": 2, - "a": 1, - "Koan": 1, - "subclass": 2, - "TestBasic": 1, - "[": 18, - "": 1, - "A": 1, - "collection": 1, - "of": 1, - "introductory": 1, - "testDeclarationAndAssignment": 1, - "declaration": 2, - "anotherDeclaration": 2, - "_": 1, - "expect": 10, - "fillMeIn": 10, - "toEqual": 10, - "declaration.": 1, - "anotherDeclaration.": 1, - "]": 18, - "testEqualSignIsNotAnAssignmentOperator": 1, - "variableA": 6, - "variableB": 5, - "value": 2, - "variableB.": 2, - "testMultipleStatementsInASingleLine": 1, - "variableC": 2, - "variableA.": 1, - "variableC.": 1, - "testInequality": 1, - "testLogicalOr": 1, - "expression": 4, - "<": 2, - "expression.": 2, - "testLogicalAnd": 1, - "&": 1, - "testNot": 1, - "true": 2, - "not.": 1, "Object": 1, + "subclass": 2, "#Philosophers": 1, "instanceVariableNames": 1, "classVariableNames": 1, @@ -63049,19 +63111,26 @@ "class": 1, "methodsFor": 2, "new": 4, + "self": 25, "shouldNotImplement": 1, "quantity": 2, "super": 1, "initialize": 3, "dine": 4, "seconds": 2, + "(": 19, "Delay": 3, "forSeconds": 1, + ")": 19, "wait.": 5, "philosophers": 2, "do": 1, + "[": 18, "each": 5, + "|": 18, "terminate": 1, + "]": 18, + ".": 16, "size": 4, "leftFork": 6, "n": 11, @@ -63087,6 +63156,7 @@ "status": 8, "n.": 2, "printString": 1, + "true": 2, "whileTrue": 1, "Transcript": 5, "nextPutAll": 5, @@ -63103,7 +63173,56 @@ "userBackgroundPriority": 1, "name": 1, "resume": 1, - "yourself": 1 + "yourself": 1, + "Koan": 1, + "TestBasic": 1, + "": 1, + "A": 1, + "collection": 1, + "of": 1, + "introductory": 1, + "tests": 2, + "testDeclarationAndAssignment": 1, + "declaration": 2, + "anotherDeclaration": 2, + "_": 1, + "expect": 10, + "fillMeIn": 10, + "toEqual": 10, + "declaration.": 1, + "anotherDeclaration.": 1, + "testEqualSignIsNotAnAssignmentOperator": 1, + "variableA": 6, + "variableB": 5, + "value": 2, + "variableB.": 2, + "testMultipleStatementsInASingleLine": 1, + "variableC": 2, + "variableA.": 1, + "variableC.": 1, + "testInequality": 1, + "testLogicalOr": 1, + "expression": 4, + "<": 2, + "expression.": 2, + "testLogicalAnd": 1, + "&": 1, + "testNot": 1, + "not.": 1, + "testSimpleChainMatches": 1, + "e": 11, + "eCtrl": 3, + "eventKey": 3, + "e.": 1, + "ctrl": 5, + "true.": 1, + "assert": 2, + "matches": 4, + "{": 4, + "}": 4, + "eCtrl.": 2, + "deny": 2, + "a": 1 }, "SourcePawn": { "//#define": 1, @@ -63547,6 +63666,14 @@ "Lazy": 2, "LazyFn": 4, "LazyMemo": 2, + "signature": 2, + "sig": 2, + "LAZY": 1, + "bool": 9, + "string": 14, + "*": 9, + "order": 2, + "b": 58, "functor": 2, "Main": 1, "S": 2, @@ -63566,7 +63693,6 @@ "int": 1, "OptPred": 1, "Target": 1, - "string": 14, "Yes": 1, "Show": 1, "Anns": 1, @@ -63586,7 +63712,6 @@ "ccOpts": 6, "linkOpts": 6, "buildConstants": 2, - "bool": 9, "debugRuntime": 3, "debugFormat": 5, "Dwarf": 3, @@ -63733,7 +63858,6 @@ "Coalesce": 1, "limit": 1, "Bool": 10, - "b": 58, "closureConvertGlobalize": 1, "closureConvertShrink": 1, "String.concatWith": 2, @@ -64036,7 +64160,6 @@ "CommandLine.arguments": 1, "RedBlackTree": 1, "key": 16, - "*": 9, "entry": 12, "dict": 17, "Empty": 15, @@ -64080,72 +64203,31 @@ "new": 1, "insert": 2, "table": 14, - "clear": 1, - "signature": 2, - "sig": 2, - "LAZY": 1, - "order": 2 + "clear": 1 }, "Stata": { "local": 6, - "MAXDIM": 1, - "*": 25, - "Setup": 1, - "sysuse": 1, - "auto": 1, - "Fit": 2, - "a": 30, - "linear": 2, - "regression": 2, - "regress": 5, - "mpg": 1, - "weight": 4, - "foreign": 2, - "better": 1, - "from": 6, - "physics": 1, - "standpoint": 1, - "gen": 1, - "gp100m": 2, - "/mpg": 1, - "Obtain": 1, - "beta": 2, - "coefficients": 1, - "without": 2, - "refitting": 1, - "model": 1, - "Suppress": 1, - "intercept": 1, - "term": 1, - "length": 3, - "noconstant": 1, - "Model": 1, - "already": 2, - "has": 6, - "constant": 2, - "bn.foreign": 1, - "hascons": 1, - "numeric": 4, - "matrix": 3, - "tanh": 1, - "(": 60, - "u": 3, - ")": 61, + "inname": 1, + "outname": 1, + "program": 2, + "hello": 1, + "vers": 1, + "display": 1, + "end": 4, "{": 441, - "eu": 4, - "emu": 4, - "exp": 2, - "-": 42, - "return": 1, - "/": 1, - "+": 2, - "}": 440, - "smcl": 1, + "*": 25, "version": 2, + "mar2014": 1, + "}": 440, + "...": 30, + "Hello": 1, + "world": 1, + "p_end": 47, + "MAXDIM": 1, + "smcl": 1, "Matthew": 2, "White": 2, "jan2014": 1, - "...": 30, "title": 7, "Title": 1, "phang": 4, @@ -64153,7 +64235,9 @@ "odkmeta": 17, "hline": 1, "Create": 4, + "a": 30, "do": 22, + "-": 42, "file": 18, "to": 23, "import": 9, @@ -64169,7 +64253,9 @@ "filename": 3, "opt": 25, "csv": 9, + "(": 60, "csvfile": 3, + ")": 61, "Using": 7, "histogram": 2, "as": 29, @@ -64204,6 +64290,7 @@ "in": 24, "first": 2, "column": 18, + "+": 2, "synoptset": 5, "tabbed": 4, "synopthdr": 4, @@ -64216,8 +64303,8 @@ ".csv": 2, "that": 21, "contains": 3, - "p_end": 47, "metadata": 5, + "from": 6, "survey": 14, "worksheet": 5, "choices": 10, @@ -64287,6 +64374,7 @@ "minimum": 2, "minus": 1, "#": 6, + "constant": 2, "for": 13, "all": 3, "labels": 8, @@ -64334,6 +64422,7 @@ "can": 1, "be": 12, "removed": 1, + "without": 2, "affecting": 1, "tasks.": 1, "User": 1, @@ -64358,6 +64447,7 @@ "such": 2, "simserial": 1, "will": 9, + "numeric": 4, "even": 1, "if": 10, "they": 2, @@ -64396,6 +64486,7 @@ "often": 1, "much": 1, "longer": 1, + "length": 3, "limit": 1, "These": 2, "differences": 1, @@ -64453,6 +64544,7 @@ "exceptions": 1, "variables.": 1, "error": 4, + "has": 6, "or": 7, "splitting": 2, "would": 1, @@ -64520,7 +64612,6 @@ "commas": 1, "double": 3, "quotes": 3, - "end": 4, "must": 2, "enclosed": 1, "another": 1, @@ -64573,6 +64664,7 @@ "#delimit": 1, "dlgtab": 1, "Other": 1, + "already": 2, "exists.": 1, "examples": 1, "Examples": 1, @@ -64609,7 +64701,6 @@ "She": 1, "collaborated": 1, "structure": 1, - "program": 2, "was": 1, "very": 1, "helpful": 1, @@ -64622,14 +64713,42 @@ "Author": 1, "mwhite@poverty": 1, "action.org": 1, - "hello": 1, - "vers": 1, - "display": 1, - "mar2014": 1, - "Hello": 1, - "world": 1, - "inname": 1, - "outname": 1 + "Setup": 1, + "sysuse": 1, + "auto": 1, + "Fit": 2, + "linear": 2, + "regression": 2, + "regress": 5, + "mpg": 1, + "weight": 4, + "foreign": 2, + "better": 1, + "physics": 1, + "standpoint": 1, + "gen": 1, + "gp100m": 2, + "/mpg": 1, + "Obtain": 1, + "beta": 2, + "coefficients": 1, + "refitting": 1, + "model": 1, + "Suppress": 1, + "intercept": 1, + "term": 1, + "noconstant": 1, + "Model": 1, + "bn.foreign": 1, + "hascons": 1, + "matrix": 3, + "tanh": 1, + "u": 3, + "eu": 4, + "emu": 4, + "exp": 2, + "return": 1, + "/": 1 }, "Stylus": { "border": 6, @@ -64721,87 +64840,150 @@ ".fork": 1 }, "Swift": { - "var": 42, - "n": 5, - "while": 2, - "<": 4, - "{": 77, - "*": 7, - "}": 77, - "m": 5, - "do": 1, "let": 43, - "optionalSquare": 2, - "Square": 7, - "(": 89, - "sideLength": 17, - "name": 21, - ")": 89, - ".sideLength": 1, - "enum": 4, - "Suit": 2, - "case": 21, - "Spades": 1, - "Hearts": 1, - "Diamonds": 1, - "Clubs": 1, - "func": 24, - "simpleDescription": 14, - "-": 21, - "String": 27, - "switch": 4, - "self": 3, - ".Spades": 2, - "return": 30, - ".Hearts": 1, - ".Diamonds": 1, - ".Clubs": 1, - "hearts": 1, - "Suit.Hearts": 1, - "heartsDescription": 1, - "hearts.simpleDescription": 1, - "interestingNumbers": 2, - "[": 18, - "]": 18, - "largest": 4, - "for": 10, - "kind": 1, - "numbers": 6, - "in": 11, - "number": 13, - "if": 6, - "greet": 2, - "day": 1, "apples": 1, "oranges": 1, "appleSummary": 1, "fruitSummary": 1, - "struct": 2, - "Card": 2, - "rank": 2, - "Rank": 2, - "suit": 2, - "threeOfSpades": 1, - ".Three": 1, - "threeOfSpadesDescription": 1, - "threeOfSpades.simpleDescription": 1, - "anyCommonElements": 2, - "": 1, - "U": 4, + "var": 42, + "shoppingList": 3, + "[": 18, + "]": 18, + "occupations": 2, + "emptyArray": 1, + "String": 27, + "(": 89, + ")": 89, + "emptyDictionary": 1, + "Dictionary": 1, + "": 1, + "Float": 1, + "//": 1, + "Went": 1, + "shopping": 1, + "and": 1, + "bought": 1, + "everything.": 1, + "individualScores": 2, + "teamScore": 4, + "for": 10, + "score": 2, + "in": 11, + "{": 77, + "if": 6, + "+": 15, + "}": 77, + "else": 1, + "optionalString": 2, + "nil": 1, + "optionalName": 2, + "greeting": 2, + "name": 21, + "vegetable": 2, + "switch": 4, + "case": 21, + "vegetableComment": 4, + "x": 1, "where": 2, - "T": 5, - "Sequence": 2, - "GeneratorType": 3, - "Element": 3, - "Equatable": 1, - "lhs": 2, - "rhs": 2, + "x.hasSuffix": 1, + "default": 2, + "interestingNumbers": 2, + "largest": 4, + "kind": 1, + "numbers": 6, + "number": 13, + "n": 5, + "while": 2, + "<": 4, + "*": 7, + "m": 5, + "do": 1, + "firstForLoop": 3, + "i": 6, + "secondForLoop": 3, + ";": 2, + "println": 1, + "func": 24, + "greet": 2, + "day": 1, + "-": 21, + "return": 30, + "getGasPrices": 2, + "Double": 11, + "sumOf": 3, + "Int...": 1, + "Int": 19, + "sum": 3, + "returnFifteen": 2, + "y": 3, + "add": 2, + "makeIncrementer": 2, + "addOne": 2, + "increment": 2, + "hasAnyMatches": 2, + "list": 2, + "condition": 2, "Bool": 4, - "lhsItem": 2, - "rhsItem": 2, + "item": 4, "true": 2, "false": 2, - "Int": 19, + "lessThanTen": 2, + "numbers.map": 2, + "result": 5, + "sort": 1, + "class": 7, + "Shape": 2, + "numberOfSides": 4, + "simpleDescription": 14, + "myVariable": 2, + "myConstant": 1, + "shape": 1, + "shape.numberOfSides": 1, + "shapeDescription": 1, + "shape.simpleDescription": 1, + "NamedShape": 3, + "init": 4, + "self.name": 1, + "Square": 7, + "sideLength": 17, + "self.sideLength": 2, + "super.init": 2, + "area": 1, + "override": 2, + "test": 1, + "test.area": 1, + "test.simpleDescription": 1, + "EquilateralTriangle": 4, + "perimeter": 1, + "get": 2, + "set": 1, + "newValue": 1, + "/": 1, + "triangle": 3, + "triangle.perimeter": 2, + "triangle.sideLength": 2, + "TriangleAndSquare": 2, + "willSet": 2, + "square.sideLength": 1, + "newValue.sideLength": 2, + "square": 2, + "size": 4, + "triangleAndSquare": 1, + "triangleAndSquare.square.sideLength": 1, + "triangleAndSquare.triangle.sideLength": 2, + "triangleAndSquare.square": 1, + "Counter": 2, + "count": 2, + "incrementBy": 1, + "amount": 2, + "numberOfTimes": 2, + "times": 4, + "counter": 1, + "counter.incrementBy": 1, + "optionalSquare": 2, + ".sideLength": 1, + "enum": 4, + "Rank": 2, "Ace": 1, "Two": 1, "Three": 1, @@ -64815,124 +64997,44 @@ "Jack": 1, "Queen": 1, "King": 1, + "self": 3, ".Ace": 1, ".Jack": 1, ".Queen": 1, ".King": 1, - "default": 2, "self.toRaw": 1, "ace": 1, "Rank.Ace": 1, "aceRawValue": 1, "ace.toRaw": 1, - "sort": 1, - "returnFifteen": 2, - "y": 3, - "add": 2, - "+": 15, - "class": 7, - "Shape": 2, - "numberOfSides": 4, - "emptyArray": 1, - "emptyDictionary": 1, - "Dictionary": 1, - "": 1, - "Float": 1, - "println": 1, - "extension": 1, - "ExampleProtocol": 5, - "mutating": 3, - "adjust": 4, - "EquilateralTriangle": 4, - "NamedShape": 3, - "Double": 11, - "init": 4, - "self.sideLength": 2, - "super.init": 2, - "perimeter": 1, - "get": 2, - "set": 1, - "newValue": 1, - "/": 1, - "override": 2, - "triangle": 3, - "triangle.perimeter": 2, - "triangle.sideLength": 2, - "OptionalValue": 2, - "": 1, - "None": 1, - "Some": 1, - "possibleInteger": 2, - "": 1, - ".None": 1, - ".Some": 1, - "SimpleClass": 2, - "anotherProperty": 1, - "a": 2, - "a.adjust": 1, - "aDescription": 1, - "a.simpleDescription": 1, - "SimpleStructure": 2, - "b": 1, - "b.adjust": 1, - "bDescription": 1, - "b.simpleDescription": 1, - "Counter": 2, - "count": 2, - "incrementBy": 1, - "amount": 2, - "numberOfTimes": 2, - "times": 4, - "counter": 1, - "counter.incrementBy": 1, - "getGasPrices": 2, - "myVariable": 2, - "myConstant": 1, "convertedRank": 1, "Rank.fromRaw": 1, "threeDescription": 1, "convertedRank.simpleDescription": 1, - "protocolValue": 1, - "protocolValue.simpleDescription": 1, - "sumOf": 3, - "Int...": 1, - "sum": 3, - "individualScores": 2, - "teamScore": 4, - "score": 2, - "else": 1, - "vegetable": 2, - "vegetableComment": 4, - "x": 1, - "x.hasSuffix": 1, - "optionalString": 2, - "nil": 1, - "optionalName": 2, - "greeting": 2, - "label": 2, - "width": 2, - "widthLabel": 1, - "shape": 1, - "shape.numberOfSides": 1, - "shapeDescription": 1, - "shape.simpleDescription": 1, - "self.name": 1, - "shoppingList": 3, - "occupations": 2, - "numbers.map": 2, - "result": 5, - "area": 1, - "test": 1, - "test.area": 1, - "test.simpleDescription": 1, - "makeIncrementer": 2, - "addOne": 2, - "increment": 2, - "repeat": 2, - "": 1, - "item": 4, - "ItemType": 3, - "i": 6, + "Suit": 2, + "Spades": 1, + "Hearts": 1, + "Diamonds": 1, + "Clubs": 1, + ".Spades": 2, + ".Hearts": 1, + ".Diamonds": 1, + ".Clubs": 1, + "hearts": 1, + "Suit.Hearts": 1, + "heartsDescription": 1, + "hearts.simpleDescription": 1, + "implicitInteger": 1, + "implicitDouble": 1, + "explicitDouble": 1, + "struct": 2, + "Card": 2, + "rank": 2, + "suit": 2, + "threeOfSpades": 1, + ".Three": 1, + "threeOfSpadesDescription": 1, + "threeOfSpades.simpleDescription": 1, "ServerResponse": 1, "Result": 1, "Error": 1, @@ -64946,33 +65048,50 @@ "serverResponse": 2, ".Error": 1, "error": 1, - "//": 1, - "Went": 1, - "shopping": 1, - "and": 1, - "bought": 1, - "everything.": 1, - "TriangleAndSquare": 2, - "willSet": 2, - "square.sideLength": 1, - "newValue.sideLength": 2, - "square": 2, - "size": 4, - "triangleAndSquare": 1, - "triangleAndSquare.square.sideLength": 1, - "triangleAndSquare.triangle.sideLength": 2, - "triangleAndSquare.square": 1, "protocol": 1, - "firstForLoop": 3, - "secondForLoop": 3, - ";": 2, - "implicitInteger": 1, - "implicitDouble": 1, - "explicitDouble": 1, - "hasAnyMatches": 2, - "list": 2, - "condition": 2, - "lessThanTen": 2 + "ExampleProtocol": 5, + "mutating": 3, + "adjust": 4, + "SimpleClass": 2, + "anotherProperty": 1, + "a": 2, + "a.adjust": 1, + "aDescription": 1, + "a.simpleDescription": 1, + "SimpleStructure": 2, + "b": 1, + "b.adjust": 1, + "bDescription": 1, + "b.simpleDescription": 1, + "extension": 1, + "protocolValue": 1, + "protocolValue.simpleDescription": 1, + "repeat": 2, + "": 1, + "ItemType": 3, + "OptionalValue": 2, + "": 1, + "None": 1, + "Some": 1, + "T": 5, + "possibleInteger": 2, + "": 1, + ".None": 1, + ".Some": 1, + "anyCommonElements": 2, + "": 1, + "U": 4, + "Sequence": 2, + "GeneratorType": 3, + "Element": 3, + "Equatable": 1, + "lhs": 2, + "rhs": 2, + "lhsItem": 2, + "rhsItem": 2, + "label": 2, + "width": 2, + "widthLabel": 1 }, "SystemVerilog": { "module": 3, @@ -65122,6 +65241,12 @@ ".wb_ack_o": 1, "sys.ack": 1, "endmodule": 2, + "fifo": 1, + "clk_50": 1, + "clk_2": 1, + "reset_n": 1, + "data_out": 1, + "empty": 1, "priority_encoder": 1, "INPUT_WIDTH": 3, "OUTPUT_WIDTH": 3, @@ -65139,13 +65264,7 @@ "integer": 2, "log2": 4, "x": 6, - "endfunction": 1, - "fifo": 1, - "clk_50": 1, - "clk_2": 1, - "reset_n": 1, - "data_out": 1, - "empty": 1 + "endfunction": 1 }, "TXL": { "define": 12, @@ -65307,311 +65426,12 @@ }, "TeX": { "%": 135, - "NeedsTeXFormat": 1, - "{": 463, - "LaTeX2e": 1, - "}": 469, "ProvidesClass": 2, - "reedthesis": 1, - "[": 81, - "/01/27": 1, - "The": 4, - "Reed": 5, - "College": 5, - "Thesis": 5, - "Class": 4, - "]": 80, + "{": 463, + "problemset": 1, + "}": 469, "DeclareOption*": 2, "PassOptionsToClass": 2, - "CurrentOption": 1, - "book": 2, - "ProcessOptions": 2, - "relax": 3, - "LoadClass": 2, - "RequirePackage": 20, - "fancyhdr": 2, - "AtBeginDocument": 1, - "fancyhf": 2, - "fancyhead": 5, - "LE": 1, - "RO": 1, - "thepage": 2, - "above": 1, - "makes": 2, - "your": 1, - "headers": 6, - "in": 20, - "all": 2, - "caps.": 2, - "If": 1, - "you": 1, - "would": 1, - "like": 1, - "different": 1, - "choose": 1, - "one": 1, - "of": 14, - "the": 19, - "following": 2, - "options": 1, - "(": 12, - "be": 3, - "sure": 1, - "to": 16, - "remove": 1, - "symbol": 4, - "from": 5, - "both": 1, - "right": 16, - "and": 5, - "left": 15, - ")": 12, - "RE": 2, - "slshape": 2, - "nouppercase": 2, - "leftmark": 2, - "This": 2, - "on": 2, - "RIGHT": 2, - "side": 2, - "pages": 2, - "italic": 1, - "use": 1, - "lowercase": 1, - "With": 1, - "Capitals": 1, - "When": 1, - "Specified.": 1, - "LO": 2, - "rightmark": 2, - "does": 1, - "same": 1, - "thing": 1, - "LEFT": 2, - "or": 1, - "scshape": 2, - "will": 2, - "small": 8, - "And": 1, - "so": 1, - "pagestyle": 3, - "fancy": 1, - "let": 11, - "oldthebibliography": 2, - "thebibliography": 2, - "endoldthebibliography": 2, - "endthebibliography": 1, - "renewenvironment": 2, - "#1": 40, - "addcontentsline": 5, - "toc": 5, - "chapter": 9, - "bibname": 2, - "end": 12, - "things": 1, - "for": 21, - "psych": 1, - "majors": 1, - "comment": 1, - "out": 1, - "oldtheindex": 2, - "theindex": 2, - "endoldtheindex": 2, - "endtheindex": 1, - "indexname": 1, - "RToldchapter": 1, - "renewcommand": 10, - "if@openright": 1, - "RTcleardoublepage": 3, - "else": 9, - "clearpage": 4, - "fi": 15, - "thispagestyle": 5, - "empty": 6, - "global": 2, - "@topnum": 1, - "z@": 2, - "@afterindentfalse": 1, - "secdef": 1, - "@chapter": 2, - "@schapter": 1, - "def": 18, - "#2": 17, - "ifnum": 3, - "c@secnumdepth": 1, - "m@ne": 2, - "if@mainmatter": 1, - "refstepcounter": 1, - "typeout": 1, - "@chapapp": 2, - "space": 8, - "thechapter.": 1, - "thechapter": 1, - "space#1": 1, - "chaptermark": 1, - "addtocontents": 2, - "lof": 1, - "protect": 2, - "addvspace": 2, - "p@": 3, - "lot": 1, - "if@twocolumn": 3, - "@topnewpage": 1, - "@makechapterhead": 2, - "@afterheading": 1, - "newcommand": 2, - "if@twoside": 1, - "ifodd": 1, - "c@page": 1, - "hbox": 15, - "newpage": 3, - "RToldcleardoublepage": 1, - "cleardoublepage": 4, - "setlength": 12, - "oddsidemargin": 2, - ".5in": 3, - "evensidemargin": 2, - "textwidth": 4, - "textheight": 4, - "topmargin": 6, - "addtolength": 8, - "headheight": 4, - "headsep": 3, - ".6in": 1, - "pt": 5, - "division#1": 1, - "gdef": 6, - "@division": 3, - "@latex@warning@no@line": 3, - "No": 3, - "noexpand": 3, - "division": 2, - "given": 3, - "department#1": 1, - "@department": 3, - "department": 1, - "thedivisionof#1": 1, - "@thedivisionof": 3, - "Division": 2, - "approvedforthe#1": 1, - "@approvedforthe": 3, - "advisor#1": 1, - "@advisor": 3, - "advisor": 1, - "altadvisor#1": 1, - "@altadvisor": 3, - "@altadvisortrue": 1, - "@empty": 1, - "newif": 1, - "if@altadvisor": 3, - "@altadvisorfalse": 1, - "contentsname": 1, - "Table": 1, - "Contents": 1, - "References": 1, - "l@chapter": 1, - "c@tocdepth": 1, - "addpenalty": 1, - "@highpenalty": 2, - "vskip": 4, - "em": 8, - "@plus": 1, - "@tempdima": 2, - "begingroup": 1, - "parindent": 2, - "rightskip": 1, - "@pnumwidth": 3, - "parfillskip": 1, - "-": 9, - "leavevmode": 1, - "bfseries": 3, - "advance": 1, - "leftskip": 2, - "hskip": 1, - "nobreak": 2, - "normalfont": 1, - "leaders": 1, - "m@th": 1, - "mkern": 2, - "@dotsep": 2, - "mu": 2, - ".": 3, - "hfill": 3, - "hb@xt@": 1, - "hss": 1, - "par": 6, - "penalty": 1, - "endgroup": 1, - "newenvironment": 1, - "abstract": 1, - "@restonecoltrue": 1, - "onecolumn": 1, - "@restonecolfalse": 1, - "Abstract": 2, - "begin": 11, - "center": 7, - "fontsize": 7, - "selectfont": 6, - "if@restonecol": 1, - "twocolumn": 1, - "ifx": 1, - "@pdfoutput": 1, - "@undefined": 1, - "RTpercent": 3, - "@percentchar": 1, - "AtBeginDvi": 2, - "special": 2, - "LaTeX": 3, - "/12/04": 3, - "SN": 3, - "rawpostscript": 1, - "AtEndDocument": 1, - "pdfinfo": 1, - "/Creator": 1, - "maketitle": 1, - "titlepage": 2, - "footnotesize": 2, - "footnoterule": 1, - "footnote": 1, - "thanks": 1, - "baselineskip": 2, - "setbox0": 2, - "Requirements": 2, - "Degree": 2, - "setcounter": 5, - "page": 4, - "null": 3, - "vfil": 8, - "@title": 1, - "centerline": 8, - "wd0": 7, - "hrulefill": 5, - "A": 1, - "Presented": 1, - "In": 1, - "Partial": 1, - "Fulfillment": 1, - "Bachelor": 1, - "Arts": 1, - "bigskip": 2, - "lineskip": 1, - ".75em": 1, - "tabular": 2, - "t": 1, - "c": 5, - "@author": 1, - "@date": 1, - "Approved": 2, - "just": 1, - "below": 2, - "cm": 2, - "not": 2, - "copy0": 1, - "approved": 1, - "major": 1, - "sign": 1, - "makebox": 6, - "problemset": 1, "final": 2, "article": 2, "DeclareOption": 2, @@ -65620,9 +65440,19 @@ "@solutionvis": 3, "expand": 1, "@expand": 3, + "ProcessOptions": 2, + "relax": 3, + "LoadClass": 2, + "[": 81, + "pt": 5, "letterpaper": 1, + "]": 80, + "RequirePackage": 20, "top": 1, + "in": 20, "bottom": 1, + "left": 15, + "right": 16, "geometry": 1, "pgfkeys": 1, "For": 13, @@ -65633,14 +65463,18 @@ "heading": 2, "float": 1, "Used": 6, + "for": 21, "floats": 1, + "(": 12, "tables": 1, "figures": 1, "etc.": 1, + ")": 12, "graphicx": 1, "inserting": 3, "images.": 1, "enumerate": 2, + "the": 19, "mathtools": 2, "Required.": 7, "Loads": 1, @@ -65652,17 +65486,21 @@ "booktabs": 1, "esdiff": 1, "derivatives": 4, + "and": 5, "partial": 2, "Optional.": 1, "shortintertext.": 1, + "fancyhdr": 2, "customizing": 1, "headers/footers.": 1, "lastpage": 1, + "page": 4, "count": 1, "header/footer.": 1, "xcolor": 1, "setting": 3, "color": 3, + "of": 14, "hyperlinks": 2, "obeyFinal": 1, "Disable": 1, @@ -65676,6 +65514,8 @@ "todonotes": 1, "keeping": 1, "track": 1, + "to": 16, + "-": 9, "dos.": 1, "colorlinks": 1, "true": 1, @@ -65684,6 +65524,7 @@ "urlcolor": 1, "black": 2, "hyperref": 1, + "following": 2, "urls": 2, "references": 1, "a": 2, @@ -65692,6 +65533,7 @@ "Enables": 1, "with": 5, "tag": 1, + "all": 2, "hypcap": 1, "definecolor": 2, "gray": 1, @@ -65700,21 +65542,28 @@ "brightness": 1, "RGB": 1, "coloring": 1, + "setlength": 12, "parskip": 1, "ex": 2, "Sets": 1, + "space": 8, "between": 1, "paragraphs.": 2, + "parindent": 2, "Indent": 1, "first": 1, "line": 2, "new": 1, + "let": 11, "VERBATIM": 2, "verbatim": 2, + "def": 18, "verbatim@font": 1, + "small": 8, "ttfamily": 1, "usepackage": 2, "caption": 1, + "footnotesize": 2, "subcaption": 1, "captionsetup": 4, "table": 2, @@ -65732,30 +65581,42 @@ "FALSE": 1, "SHOW": 3, "HIDE": 2, + "thispagestyle": 5, + "empty": 6, "listoftodos": 1, + "clearpage": 4, "pagenumbering": 1, "arabic": 2, "shortname": 2, + "#1": 40, "authorname": 2, + "#2": 17, "coursename": 3, "#3": 8, "assignment": 3, "#4": 4, "duedate": 2, "#5": 2, + "begin": 11, "minipage": 4, + "textwidth": 4, "flushleft": 2, "hypertarget": 1, "@assignment": 2, "textbf": 5, + "end": 12, "flushright": 2, + "renewcommand": 10, "headrulewidth": 1, "footrulewidth": 1, + "pagestyle": 3, "fancyplain": 4, + "fancyhf": 2, "lfoot": 1, "hyperlink": 1, "cfoot": 1, "rfoot": 1, + "thepage": 2, "pageref": 1, "LastPage": 1, "newcounter": 1, @@ -65765,8 +65626,10 @@ "environment": 1, "problem": 1, "addtocounter": 2, + "setcounter": 5, "equation": 1, "noindent": 2, + ".": 3, "textit": 1, "Default": 2, "is": 2, @@ -65775,20 +65638,26 @@ "after": 1, "solution": 2, "qqed": 2, + "hfill": 3, "rule": 1, "mm": 2, + "ifnum": 3, "pagebreak": 2, + "fi": 15, "show": 1, "solutions.": 1, "vspace": 2, + "em": 8, "Solution.": 1, "ifnum#1": 2, + "else": 9, "chap": 1, "section": 2, "Sum": 3, "n": 4, "ensuremath": 15, "sum_": 2, + "from": 5, "infsum": 2, "infty": 2, "Infinite": 1, @@ -65837,8 +65706,10 @@ "circ": 1, "adding": 1, "degree": 1, + "symbol": 4, "even": 1, "if": 1, + "not": 2, "abs": 1, "vert": 3, "Absolute": 1, @@ -65863,6 +65734,7 @@ "into": 2, "mtxt": 1, "insterting": 1, + "on": 2, "either": 1, "side.": 1, "Option": 1, @@ -65892,7 +65764,254 @@ "del": 3, "cdot": 1, "Curl": 1, - "Grad": 1 + "Grad": 1, + "NeedsTeXFormat": 1, + "LaTeX2e": 1, + "reedthesis": 1, + "/01/27": 1, + "The": 4, + "Reed": 5, + "College": 5, + "Thesis": 5, + "Class": 4, + "CurrentOption": 1, + "book": 2, + "AtBeginDocument": 1, + "fancyhead": 5, + "LE": 1, + "RO": 1, + "above": 1, + "makes": 2, + "your": 1, + "headers": 6, + "caps.": 2, + "If": 1, + "you": 1, + "would": 1, + "like": 1, + "different": 1, + "choose": 1, + "one": 1, + "options": 1, + "be": 3, + "sure": 1, + "remove": 1, + "both": 1, + "RE": 2, + "slshape": 2, + "nouppercase": 2, + "leftmark": 2, + "This": 2, + "RIGHT": 2, + "side": 2, + "pages": 2, + "italic": 1, + "use": 1, + "lowercase": 1, + "With": 1, + "Capitals": 1, + "When": 1, + "Specified.": 1, + "LO": 2, + "rightmark": 2, + "does": 1, + "same": 1, + "thing": 1, + "LEFT": 2, + "or": 1, + "scshape": 2, + "will": 2, + "And": 1, + "so": 1, + "fancy": 1, + "oldthebibliography": 2, + "thebibliography": 2, + "endoldthebibliography": 2, + "endthebibliography": 1, + "renewenvironment": 2, + "addcontentsline": 5, + "toc": 5, + "chapter": 9, + "bibname": 2, + "things": 1, + "psych": 1, + "majors": 1, + "comment": 1, + "out": 1, + "oldtheindex": 2, + "theindex": 2, + "endoldtheindex": 2, + "endtheindex": 1, + "indexname": 1, + "RToldchapter": 1, + "if@openright": 1, + "RTcleardoublepage": 3, + "global": 2, + "@topnum": 1, + "z@": 2, + "@afterindentfalse": 1, + "secdef": 1, + "@chapter": 2, + "@schapter": 1, + "c@secnumdepth": 1, + "m@ne": 2, + "if@mainmatter": 1, + "refstepcounter": 1, + "typeout": 1, + "@chapapp": 2, + "thechapter.": 1, + "thechapter": 1, + "space#1": 1, + "chaptermark": 1, + "addtocontents": 2, + "lof": 1, + "protect": 2, + "addvspace": 2, + "p@": 3, + "lot": 1, + "if@twocolumn": 3, + "@topnewpage": 1, + "@makechapterhead": 2, + "@afterheading": 1, + "newcommand": 2, + "if@twoside": 1, + "ifodd": 1, + "c@page": 1, + "hbox": 15, + "newpage": 3, + "RToldcleardoublepage": 1, + "cleardoublepage": 4, + "oddsidemargin": 2, + ".5in": 3, + "evensidemargin": 2, + "textheight": 4, + "topmargin": 6, + "addtolength": 8, + "headheight": 4, + "headsep": 3, + ".6in": 1, + "division#1": 1, + "gdef": 6, + "@division": 3, + "@latex@warning@no@line": 3, + "No": 3, + "noexpand": 3, + "division": 2, + "given": 3, + "department#1": 1, + "@department": 3, + "department": 1, + "thedivisionof#1": 1, + "@thedivisionof": 3, + "Division": 2, + "approvedforthe#1": 1, + "@approvedforthe": 3, + "advisor#1": 1, + "@advisor": 3, + "advisor": 1, + "altadvisor#1": 1, + "@altadvisor": 3, + "@altadvisortrue": 1, + "@empty": 1, + "newif": 1, + "if@altadvisor": 3, + "@altadvisorfalse": 1, + "contentsname": 1, + "Table": 1, + "Contents": 1, + "References": 1, + "l@chapter": 1, + "c@tocdepth": 1, + "addpenalty": 1, + "@highpenalty": 2, + "vskip": 4, + "@plus": 1, + "@tempdima": 2, + "begingroup": 1, + "rightskip": 1, + "@pnumwidth": 3, + "parfillskip": 1, + "leavevmode": 1, + "bfseries": 3, + "advance": 1, + "leftskip": 2, + "hskip": 1, + "nobreak": 2, + "normalfont": 1, + "leaders": 1, + "m@th": 1, + "mkern": 2, + "@dotsep": 2, + "mu": 2, + "hb@xt@": 1, + "hss": 1, + "par": 6, + "penalty": 1, + "endgroup": 1, + "newenvironment": 1, + "abstract": 1, + "@restonecoltrue": 1, + "onecolumn": 1, + "@restonecolfalse": 1, + "Abstract": 2, + "center": 7, + "fontsize": 7, + "selectfont": 6, + "if@restonecol": 1, + "twocolumn": 1, + "ifx": 1, + "@pdfoutput": 1, + "@undefined": 1, + "RTpercent": 3, + "@percentchar": 1, + "AtBeginDvi": 2, + "special": 2, + "LaTeX": 3, + "/12/04": 3, + "SN": 3, + "rawpostscript": 1, + "AtEndDocument": 1, + "pdfinfo": 1, + "/Creator": 1, + "maketitle": 1, + "titlepage": 2, + "footnoterule": 1, + "footnote": 1, + "thanks": 1, + "baselineskip": 2, + "setbox0": 2, + "Requirements": 2, + "Degree": 2, + "null": 3, + "vfil": 8, + "@title": 1, + "centerline": 8, + "wd0": 7, + "hrulefill": 5, + "A": 1, + "Presented": 1, + "In": 1, + "Partial": 1, + "Fulfillment": 1, + "Bachelor": 1, + "Arts": 1, + "bigskip": 2, + "lineskip": 1, + ".75em": 1, + "tabular": 2, + "t": 1, + "c": 5, + "@author": 1, + "@date": 1, + "Approved": 2, + "just": 1, + "below": 2, + "cm": 2, + "copy0": 1, + "approved": 1, + "major": 1, + "sign": 1, + "makebox": 6 }, "Tea": { "<%>": 1, @@ -66542,6 +66661,73 @@ "endcase": 3, "default": 2, "endmodule": 18, + "control": 1, + "en": 13, + "dsp_sel": 9, + "an": 6, + "wire": 67, + "a": 5, + "b": 3, + "c": 3, + "d": 3, + "e": 3, + "f": 2, + "g": 2, + "h": 2, + "i": 62, + "j": 2, + "k": 2, + "l": 2, + "assign": 23, + "FDRSE": 6, + "#": 10, + ".INIT": 6, + "b0": 27, + "Synchronous": 12, + ".S": 6, + "b1": 19, + "Initial": 6, + "value": 6, + "of": 8, + "register": 6, + "DFF2": 1, + ".Q": 6, + "Data": 13, + ".C": 6, + "Clock": 14, + ".CE": 6, + "enable": 6, + ".D": 6, + ".R": 6, + "set": 6, + "DFF0": 1, + "DFF6": 1, + "DFF4": 1, + "DFF10": 1, + "DFF8": 1, + "hex_display": 1, + "num": 5, + "hex0": 2, + "hex1": 2, + "hex2": 2, + "hex3": 2, + "seg_7": 4, + "hex_group0": 1, + ".num": 4, + ".en": 4, + ".seg": 4, + "hex_group1": 1, + "hex_group2": 1, + "hex_group3": 1, + "mux": 1, + "opA": 4, + "opB": 3, + "sum": 5, + "out": 5, + "cout": 4, + "b0000": 1, + "b01": 1, + "b11": 1, "pipeline_registers": 1, "BIT_WIDTH": 5, "pipe_in": 4, @@ -66549,7 +66735,6 @@ "NUMBER_OF_STAGES": 7, "generate": 3, "genvar": 3, - "i": 62, "*": 4, "BIT_WIDTH*": 5, "pipe_gen": 6, @@ -66558,24 +66743,7 @@ "pipeline": 2, "BIT_WIDTH*i": 2, "endgenerate": 3, - "ns/1ps": 2, - "e0": 1, - "x": 41, - "y": 21, - "assign": 23, - "{": 11, - "}": 11, - "e1": 1, - "ch": 1, - "z": 7, - "o": 6, - "&": 6, - "maj": 1, - "|": 2, - "s0": 1, - "s1": 1, "ps2_mouse": 1, - "Clock": 14, "Input": 2, "Reset": 1, "inout": 2, @@ -66583,7 +66751,6 @@ "PS2": 2, "Bidirectional": 2, "ps2_dat": 3, - "Data": 13, "the_command": 2, "Command": 1, "to": 3, @@ -66607,7 +66774,6 @@ "received": 1, "start_receiving_data": 3, "wait_for_incoming_data": 3, - "wire": 67, "ps2_clk_posedge": 3, "Internal": 2, "Wires": 1, @@ -66626,11 +66792,9 @@ "PS2_STATE_2_COMMAND_OUT": 2, "h3": 1, "PS2_STATE_4_END_DELAYED": 4, - "b1": 19, "Defaults": 1, "PS2_STATE_1_DATA_IN": 3, "||": 1, - "b0": 27, "PS2_STATE_3_END_TRANSFER": 3, "h00": 1, "&&": 3, @@ -66657,57 +66821,39 @@ ".ps2_data": 1, ".received_data": 1, ".received_data_en": 1, - "hex_display": 1, - "num": 5, - "en": 13, - "hex0": 2, - "hex1": 2, - "hex2": 2, - "hex3": 2, - "seg_7": 4, - "hex_group0": 1, - ".num": 4, - ".en": 4, - ".seg": 4, - "hex_group1": 1, - "hex_group2": 1, - "hex_group3": 1, - "t_div_pipelined": 1, - "start": 12, - "dividend": 3, - "divisor": 5, - "data_valid": 7, - "div_by_zero": 2, - "quotient": 2, - "quotient_correct": 1, - "BITS": 2, - "div_pipelined": 2, - "#": 10, - ".BITS": 1, - ".reset_n": 3, - ".dividend": 1, - ".divisor": 1, - ".quotient": 1, - ".div_by_zero": 1, - ".start": 2, - ".data_valid": 2, - "initial": 3, - "#10": 10, - "#50": 2, - "#1": 1, - "#1000": 1, - "finish": 2, - "#5": 3, + "ns/1ps": 2, + "e0": 1, + "x": 41, + "y": 21, + "{": 11, + "}": 11, + "e1": 1, + "ch": 1, + "z": 7, + "o": 6, + "&": 6, + "maj": 1, + "|": 2, + "s0": 1, + "s1": 1, + "sign_extender": 1, + "INPUT_WIDTH": 5, + "OUTPUT_WIDTH": 4, + "original": 3, + "sign_extended_original": 2, + "sign_extend": 3, + "gen_sign_extend": 1, "sqrt_pipelined": 3, + "start": 12, "optional": 2, "INPUT_BITS": 28, "radicand": 12, "unsigned": 2, + "data_valid": 7, "valid": 2, "OUTPUT_BITS": 14, "root": 8, "number": 2, - "of": 8, "bits": 2, "any": 1, "integer": 1, @@ -66724,18 +66870,47 @@ "is": 4, "odd": 1, "this": 2, - "a": 5, "INPUT_BITS*": 27, "<<": 2, "i/2": 2, "even": 1, "pipeline_stage": 1, "INPUT_BITS*i": 5, + "t_button_debounce": 1, + ".CLK_FREQUENCY": 1, + ".DEBOUNCE_HZ": 1, + ".reset_n": 3, + ".button": 1, + ".debounce": 1, + "initial": 3, + "bx": 4, + "#10": 10, + "#5": 3, + "#100": 1, + "#0.1": 8, + "t_div_pipelined": 1, + "dividend": 3, + "divisor": 5, + "div_by_zero": 2, + "quotient": 2, + "quotient_correct": 1, + "BITS": 2, + "div_pipelined": 2, + ".BITS": 1, + ".dividend": 1, + ".divisor": 1, + ".quotient": 1, + ".div_by_zero": 1, + ".start": 2, + ".data_valid": 2, + "#50": 2, + "#1": 1, + "#1000": 1, + "finish": 2, "t_sqrt_pipelined": 1, ".INPUT_BITS": 1, ".radicand": 1, ".root": 1, - "bx": 4, "#10000": 1, "vga": 1, "wb_clk_i": 6, @@ -66910,66 +67085,15 @@ ".csrm_sel_o": 1, ".csrm_we_o": 1, ".csrm_dat_o": 1, - ".csrm_dat_i": 1, - "mux": 1, - "opA": 4, - "opB": 3, - "sum": 5, - "dsp_sel": 9, - "out": 5, - "cout": 4, - "b0000": 1, - "b01": 1, - "b11": 1, - "t_button_debounce": 1, - ".CLK_FREQUENCY": 1, - ".DEBOUNCE_HZ": 1, - ".button": 1, - ".debounce": 1, - "#100": 1, - "#0.1": 8, - "sign_extender": 1, - "INPUT_WIDTH": 5, - "OUTPUT_WIDTH": 4, - "original": 3, - "sign_extended_original": 2, - "sign_extend": 3, - "gen_sign_extend": 1, - "control": 1, - "an": 6, - "b": 3, - "c": 3, - "d": 3, - "e": 3, - "f": 2, - "g": 2, - "h": 2, - "j": 2, - "k": 2, - "l": 2, - "FDRSE": 6, - ".INIT": 6, - "Synchronous": 12, - ".S": 6, - "Initial": 6, - "value": 6, - "register": 6, - "DFF2": 1, - ".Q": 6, - ".C": 6, - ".CE": 6, - "enable": 6, - ".D": 6, - ".R": 6, - "set": 6, - "DFF0": 1, - "DFF6": 1, - "DFF4": 1, - "DFF10": 1, - "DFF8": 1 + ".csrm_dat_i": 1 }, "VimL": { + "no": 1, + "toolbar": 1, "set": 7, + "guioptions": 1, + "-": 1, + "T": 1, "nocompatible": 1, "ignorecase": 1, "incsearch": 1, @@ -66977,12 +67101,7 @@ "showmatch": 1, "showcmd": 1, "syntax": 1, - "on": 1, - "no": 1, - "toolbar": 1, - "guioptions": 1, - "-": 1, - "T": 1 + "on": 1 }, "Visual Basic": { "VERSION": 1, @@ -67382,34 +67501,30 @@ "": 6, "": 5, "{": 6, - "D377F": 1, + "D9BF15": 1, "-": 90, - "A": 21, - "A798": 1, - "B3FD04C": 1, + "D10": 1, + "ABAD688E8B": 1, "}": 6, "": 5, "": 4, "Exe": 4, "": 4, - "": 1, - "vbproj_sample.Module1": 1, - "": 1, + "": 2, + "Properties": 3, + "": 2, "": 5, - "vbproj_sample": 1, + "csproj_sample": 1, "": 5, "": 4, - "vbproj": 3, + "csproj": 1, "sample": 6, "": 4, - "": 3, - "": 3, - "": 1, - "Console": 3, - "": 1, "": 5, "v4.5.1": 5, "": 5, + "": 3, + "": 3, "": 3, "true": 24, "": 3, @@ -67421,158 +67536,119 @@ "": 6, "full": 4, "": 6, - "": 2, - "": 2, - "": 2, - "": 2, + "": 7, + "false": 11, + "": 7, "": 8, "bin": 11, "": 8, - "": 5, - "sample.xml": 2, - "": 5, - "": 2, - "": 2, + "": 6, + "DEBUG": 3, + ";": 52, + "TRACE": 6, + "": 6, + "": 4, + "prompt": 4, + "": 4, + "": 8, + "": 8, "pdbonly": 3, - "false": 11, - "": 7, - "": 7, "Release": 6, - "": 1, - "On": 2, - "": 1, - "": 1, - "Binary": 1, - "": 1, - "": 1, - "Off": 1, - "": 1, - "": 1, - "": 1, "": 26, "": 30, "Include=": 78, "": 26, "": 10, - "": 3, - "True": 13, - "": 3, - "": 3, - "Application.myapp": 1, - "": 3, - "": 3, - "": 1, - "": 1, - "Resources.resx": 1, - "Settings.settings": 1, - "": 1, - "": 1, - "": 1, - "": 3, - "VbMyResourcesResXFileCodeGenerator": 1, - "": 3, - "": 3, - "Resources.Designer.vb": 1, - "": 3, - "": 2, - "My.Resources": 1, - "": 2, - "": 1, - "Designer": 1, - "": 1, - "": 1, "": 5, - "MyApplicationCodeGenerator": 1, - "Application.Designer.vb": 1, - "": 2, - "SettingsSingleFileGenerator": 1, - "My": 1, - "Settings.Designer.vb": 1, "": 7, - "": 3, - "MyCommon": 1, - "": 3, - "": 1, - "Name=": 1, - "": 1, - "Text=": 1, - "": 1, - "": 1, - "xmlns": 2, - "ea=": 2, - "": 1, - "organisation=": 3, - "module=": 3, - "revision=": 3, - "status=": 1, - "": 4, - "this": 77, - "is": 123, - "a": 128, - "easyant": 3, - "module.ivy": 1, - "file": 3, - "for": 60, - "java": 1, - "standard": 1, - "application": 2, - "": 4, - "": 1, - "": 1, + "standalone=": 1, + "": 1, + "4": 1, + "0": 2, + "": 1, + "storage_type_id=": 1, + "": 14, + "moduleId=": 14, + "": 2, + "id=": 141, + "buildSystemId=": 2, "name=": 270, - "value=": 11, - "": 1, - "": 1, - "": 1, - "": 1, - "": 2, - "visibility=": 2, + "": 2, + "": 2, + "": 12, + "point=": 12, + "": 2, + "": 7, + "": 2, + "artifactName=": 2, + "buildArtefactType=": 2, + "buildProperties=": 2, + "cleanCommand=": 2, "description=": 4, - "": 1, - "": 1, - "": 4, - "org=": 1, - "rev=": 1, - "conf=": 1, - "default": 9, - "junit": 2, - "test": 7, - "/": 6, - "": 1, - "": 1, + "cdt": 2, + "managedbuild": 2, + "config": 2, + "gnu": 2, + "exe": 2, + "debug": 1, + "1803931088": 1, + "parent=": 2, + "": 2, + "resourcePath=": 2, + "": 2, + "superClass=": 42, + "": 2, + "": 2, + "buildPath=": 2, + "keepEnvironmentInBuildfile=": 2, + "managedBuildOn=": 2, + "": 12, + "": 4, + "": 8, + "": 8, + "defaultValue=": 2, + "": 4, + "kind=": 6, + "paths=": 4, + "": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "flags=": 2, + "": 2, + "": 2, + "": 2, + "release": 1, + "32754498": 1, "": 2, - "This": 21, - "module.ant": 1, - "optionnal": 1, - "and": 44, - "designed": 1, - "to": 164, - "customize": 1, - "your": 8, - "build": 1, - "with": 23, - "own": 2, - "specific": 8, - "target.": 1, - "": 2, - "": 2, - "my": 2, - "awesome": 1, - "additionnal": 1, - "target": 6, - "": 2, - "": 2, - "extensionOf=": 1, - "i": 2, - "would": 2, - "love": 1, - "could": 1, - "easily": 1, - "plug": 1, - "pre": 1, - "compile": 1, - "step": 1, - "": 1, + "projectType=": 1, + "": 5, + "enabled=": 125, + "problemReportingEnabled=": 5, + "selectedProfileId=": 5, + "": 40, + "": 40, + "": 40, + "filePath=": 40, + "": 80, + "": 40, + "": 40, + "": 40, + "arguments=": 40, + "command=": 40, + "useDefault=": 40, + "": 40, + "": 40, + "": 4, + "instanceId=": 4, + "": 4, + "": 1, "": 2, "": 2, "cfa7a11": 1, @@ -67582,20 +67658,18 @@ "fsproj_sample": 2, "": 1, "": 1, + "": 3, "fsproj": 1, + "": 3, "": 2, "": 2, - "": 6, - "DEBUG": 3, - ";": 52, - "TRACE": 6, - "": 6, - "": 8, - "": 8, + "": 5, "fsproj_sample.XML": 2, + "": 5, "": 2, "": 2, "": 2, + "True": 13, "": 2, "": 5, "": 1, @@ -67622,131 +67696,83 @@ "FSharp": 1, "": 1, "": 1, - "": 1, - "": 1, - "c67af951": 1, - "d8d6376993e7": 1, - "": 2, - "Properties": 3, - "": 2, - "nproj_sample": 2, - "": 1, - "": 1, - "": 1, - "Net": 1, - "": 1, - "": 1, - "ProgramFiles": 1, - "Nemerle": 3, - "": 1, - "": 1, - "NemerleBinPathRoot": 1, - "NemerleVersion": 1, - "": 1, - "nproj": 1, - "": 4, - "prompt": 4, - "": 4, - "OutputPath": 1, - "AssemblyName": 1, - ".xml": 1, - "": 3, - "": 3, - "": 1, - "False": 1, - "": 1, - "": 2, - "Nemerle.dll": 1, - "": 2, - "": 1, - "Nemerle.Linq.dll": 1, - "": 1, - "": 1, - "": 1, - "TS": 1, - "": 1, - "language=": 1, - "": 1, - "": 2, - "MainWindow": 1, - "": 2, - "": 8, - "": 8, - "filename=": 8, - "line=": 8, - "": 8, - "United": 1, - "Kingdom": 1, - "": 8, - "": 8, - "Reino": 1, - "Unido": 1, - "": 8, - "": 8, - "God": 1, - "save": 2, - "the": 261, - "Queen": 1, - "Deus": 1, - "salve": 1, - "Rainha": 1, - "England": 1, - "Inglaterra": 1, - "Wales": 1, - "Gales": 1, - "Scotland": 1, - "Esc": 1, - "cia": 1, - "Northern": 1, - "Ireland": 1, - "Irlanda": 1, - "Norte": 1, - "Portuguese": 1, - "Portugu": 1, - "s": 3, - "English": 1, - "Ingl": 1, - "": 1, - "": 1, - "": 1, - "compatVersion=": 1, - "": 1, - "FreeMedForms": 1, - "": 1, - "": 1, - "C": 1, - "by": 14, - "Eric": 1, - "MAEKER": 1, - "MD": 1, - "": 1, - "": 1, - "GPLv3": 1, - "": 1, - "": 1, - "Patient": 1, - "data": 2, - "": 1, - "The": 75, - "XML": 1, - "form": 1, - "loader/saver": 1, - "FreeMedForms.": 1, - "": 1, - "http": 2, - "//www.freemedforms.com/": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "D9BF15": 1, - "D10": 1, - "ABAD688E8B": 1, - "csproj_sample": 1, - "csproj": 1, + "xmlns": 2, + "ea=": 2, + "": 4, + "This": 21, + "easyant": 3, + "module.ant": 1, + "file": 3, + "is": 123, + "optionnal": 1, + "and": 44, + "designed": 1, + "to": 164, + "customize": 1, + "your": 8, + "build": 1, + "with": 23, + "own": 2, + "specific": 8, + "target.": 1, + "": 4, + "": 2, + "": 2, + "my": 2, + "awesome": 1, + "additionnal": 1, + "target": 6, + "": 2, + "": 2, + "extensionOf=": 1, + "i": 2, + "would": 2, + "love": 1, + "could": 1, + "easily": 1, + "plug": 1, + "pre": 1, + "compile": 1, + "step": 1, + "": 1, + "": 1, + "": 1, + "organisation=": 3, + "module=": 3, + "revision=": 3, + "status=": 1, + "this": 77, + "a": 128, + "module.ivy": 1, + "for": 60, + "java": 1, + "standard": 1, + "application": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 2, + "visibility=": 2, + "": 1, + "": 1, + "": 4, + "org=": 1, + "rev=": 1, + "conf=": 1, + "default": 9, + "junit": 2, + "test": 7, + "/": 6, + "": 1, + "": 1, "": 1, "": 1, + "": 2, "ReactiveUI": 2, + "": 2, "": 1, "": 1, "": 120, @@ -67756,6 +67782,7 @@ "interface": 4, "that": 94, "replaces": 1, + "the": 261, "non": 1, "PropertyChangedEventArgs.": 1, "Note": 7, @@ -67779,6 +67806,7 @@ "changes.": 2, "": 122, "": 120, + "The": 75, "object": 42, "has": 16, "raised": 1, @@ -67957,6 +67985,7 @@ "string": 13, "distinguish": 12, "arbitrarily": 2, + "by": 14, "client.": 2, "Listen": 4, "provides": 6, @@ -67968,6 +67997,7 @@ "to.": 7, "": 12, "": 84, + "A": 21, "identical": 11, "types": 10, "one": 27, @@ -68012,6 +68042,7 @@ "allows": 15, "log": 2, "attached.": 1, + "data": 2, "structure": 1, "representation": 1, "memoizing": 2, @@ -68081,6 +68112,7 @@ "object.": 3, "ViewModel": 8, "another": 3, + "s": 3, "Return": 1, "instance": 2, "type.": 3, @@ -68203,6 +68235,7 @@ "manage": 1, "disk": 1, "download": 1, + "save": 2, "temporary": 1, "folder": 1, "onRelease": 1, @@ -68433,6 +68466,244 @@ "setup.": 12, "": 1, "": 1, + "": 1, + "": 1, + "c67af951": 1, + "d8d6376993e7": 1, + "nproj_sample": 2, + "": 1, + "": 1, + "": 1, + "Net": 1, + "": 1, + "": 1, + "ProgramFiles": 1, + "Nemerle": 3, + "": 1, + "": 1, + "NemerleBinPathRoot": 1, + "NemerleVersion": 1, + "": 1, + "nproj": 1, + "OutputPath": 1, + "AssemblyName": 1, + ".xml": 1, + "": 3, + "": 3, + "": 1, + "False": 1, + "": 1, + "": 2, + "Nemerle.dll": 1, + "": 2, + "": 1, + "Nemerle.Linq.dll": 1, + "": 1, + "": 1, + "": 1, + "TS": 1, + "": 1, + "language=": 1, + "": 1, + "MainWindow": 1, + "": 8, + "": 8, + "filename=": 8, + "line=": 8, + "": 8, + "United": 1, + "Kingdom": 1, + "": 8, + "": 8, + "Reino": 1, + "Unido": 1, + "": 8, + "": 8, + "God": 1, + "Queen": 1, + "Deus": 1, + "salve": 1, + "Rainha": 1, + "England": 1, + "Inglaterra": 1, + "Wales": 1, + "Gales": 1, + "Scotland": 1, + "Esc": 1, + "cia": 1, + "Northern": 1, + "Ireland": 1, + "Irlanda": 1, + "Norte": 1, + "Portuguese": 1, + "Portugu": 1, + "English": 1, + "Ingl": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "Sample": 2, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "Hugh": 2, + "Bot": 2, + "": 1, + "": 1, + "": 1, + "package": 1, + "nuget": 1, + "just": 1, + "works": 1, + "": 1, + "http": 2, + "//hubot.github.com": 1, + "": 1, + "": 1, + "": 1, + "https": 1, + "//github.com/github/hubot/LICENSEmd": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "src=": 1, + "target=": 1, + "": 1, + "": 1, + "MyCommon": 1, + "": 1, + "Name=": 1, + "": 1, + "Text=": 1, + "": 1, + "D377F": 1, + "A798": 1, + "B3FD04C": 1, + "": 1, + "vbproj_sample.Module1": 1, + "": 1, + "vbproj_sample": 1, + "vbproj": 3, + "": 1, + "Console": 3, + "": 1, + "": 2, + "": 2, + "": 2, + "": 2, + "sample.xml": 2, + "": 2, + "": 2, + "": 1, + "On": 2, + "": 1, + "": 1, + "Binary": 1, + "": 1, + "": 1, + "Off": 1, + "": 1, + "": 1, + "": 1, + "": 3, + "": 3, + "": 3, + "Application.myapp": 1, + "": 3, + "": 3, + "": 1, + "": 1, + "Resources.resx": 1, + "Settings.settings": 1, + "": 1, + "": 1, + "": 1, + "": 3, + "VbMyResourcesResXFileCodeGenerator": 1, + "": 3, + "": 3, + "Resources.Designer.vb": 1, + "": 3, + "": 2, + "My.Resources": 1, + "": 2, + "": 1, + "Designer": 1, + "": 1, + "": 1, + "MyApplicationCodeGenerator": 1, + "Application.Designer.vb": 1, + "": 2, + "SettingsSingleFileGenerator": 1, + "My": 1, + "Settings.Designer.vb": 1, + "Label=": 11, + "": 2, + "Win32": 2, + "": 2, + "BF6EED48": 1, + "BF18": 1, + "C54": 1, + "F": 1, + "BBF19EEDC7C": 1, + "": 1, + "ManagedCProj": 1, + "": 1, + "vcxprojsample": 1, + "": 2, + "Application": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "v120": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "Unicode": 2, + "": 2, + "": 4, + "": 4, + "": 2, + "": 2, + "": 2, + "": 8, + "Level3": 2, + "": 1, + "Disabled": 1, + "": 1, + "": 2, + "WIN32": 2, + "_DEBUG": 1, + "%": 2, + "PreprocessorDefinitions": 2, + "": 2, + "": 4, + "": 4, + "": 6, + "": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "": 2, + "NDEBUG": 1, + "": 2, + "": 4, + "": 2, + "Create": 2, + "": 2, "": 10, "": 3, "FC737F1": 1, @@ -68490,192 +68761,40 @@ "wav": 1, "mfcribbon": 1, "ms": 1, - "": 2, - "": 4, "Header": 2, "Files": 7, "": 2, - "": 2, "Resource": 2, "": 1, - "": 8, "Source": 3, - "": 6, - "": 2, "": 1, - "Label=": 11, - "": 2, - "Win32": 2, - "": 2, - "BF6EED48": 1, - "BF18": 1, - "C54": 1, - "F": 1, - "BBF19EEDC7C": 1, - "": 1, - "ManagedCProj": 1, - "": 1, - "vcxprojsample": 1, - "": 2, - "Application": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "v120": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "Unicode": 2, - "": 2, - "": 4, - "": 4, - "": 2, - "": 2, - "": 2, - "Level3": 2, - "": 1, - "Disabled": 1, - "": 1, - "": 2, - "WIN32": 2, - "_DEBUG": 1, - "%": 2, - "PreprocessorDefinitions": 2, - "": 2, - "": 4, - "": 4, - "": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "NDEBUG": 1, - "Create": 2, - "standalone=": 1, - "": 1, - "4": 1, - "0": 2, - "": 1, - "storage_type_id=": 1, - "": 14, - "moduleId=": 14, - "": 2, - "id=": 141, - "buildSystemId=": 2, - "": 2, - "": 2, - "": 12, - "point=": 12, - "": 2, - "": 7, - "": 2, - "artifactName=": 2, - "buildArtefactType=": 2, - "buildProperties=": 2, - "cleanCommand=": 2, - "cdt": 2, - "managedbuild": 2, - "config": 2, - "gnu": 2, - "exe": 2, - "debug": 1, - "1803931088": 1, - "parent=": 2, - "": 2, - "resourcePath=": 2, - "": 2, - "superClass=": 42, - "": 2, - "": 2, - "buildPath=": 2, - "keepEnvironmentInBuildfile=": 2, - "managedBuildOn=": 2, - "": 12, - "": 4, - "": 8, - "": 8, - "defaultValue=": 2, - "": 4, - "kind=": 6, - "paths=": 4, - "": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "flags=": 2, - "": 2, - "": 2, - "": 2, - "release": 1, - "32754498": 1, - "projectType=": 1, - "": 5, - "enabled=": 125, - "problemReportingEnabled=": 5, - "selectedProfileId=": 5, - "": 40, - "": 40, - "": 40, - "filePath=": 40, - "": 80, - "": 40, - "": 40, - "": 40, - "arguments=": 40, - "command=": 40, - "useDefault=": 40, - "": 40, - "": 40, - "": 4, - "instanceId=": 4, - "": 4, - "": 1, - "": 1, - "": 1, - "": 1, - "Sample": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "Hugh": 2, - "Bot": 2, - "": 1, - "": 1, - "": 1, - "package": 1, - "nuget": 1, - "just": 1, - "works": 1, - "": 1, - "//hubot.github.com": 1, - "": 1, - "": 1, - "": 1, - "https": 1, - "//github.com/github/hubot/LICENSEmd": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "src=": 1, - "target=": 1, - "": 1, - "": 1 + "": 1, + "compatVersion=": 1, + "": 1, + "FreeMedForms": 1, + "": 1, + "": 1, + "C": 1, + "Eric": 1, + "MAEKER": 1, + "MD": 1, + "": 1, + "": 1, + "GPLv3": 1, + "": 1, + "": 1, + "Patient": 1, + "": 1, + "XML": 1, + "form": 1, + "loader/saver": 1, + "FreeMedForms.": 1, + "": 1, + "//www.freemedforms.com/": 1, + "": 1, + "": 1, + "": 1, + "": 1 }, "XProc": { "": 1, @@ -68831,44 +68950,44 @@ }, "Xojo": { "#tag": 88, - "Menu": 2, - "Begin": 23, - "MainMenuBar": 1, - "MenuItem": 11, - "FileMenu": 1, - "SpecialMenu": 13, - "Text": 13, - "Index": 14, - "-": 14, - "AutoEnable": 13, - "True": 46, - "Visible": 41, - "QuitMenuItem": 1, - "FileQuit": 1, - "ShortcutKey": 6, - "Shortcut": 6, + "Class": 3, + "Protected": 1, + "App": 1, + "Inherits": 1, + "Application": 1, + "Constant": 3, + "Name": 31, + "kEditClear": 1, + "Type": 34, + "String": 3, + "Dynamic": 3, + "False": 14, + "Default": 9, + "Scope": 4, + "Public": 3, + "#Tag": 5, + "Instance": 5, + "Platform": 5, + "Windows": 2, + "Language": 5, + "Definition": 5, + "Linux": 2, + "EndConstant": 3, + "kFileQuit": 1, + "kFileQuitShortcut": 1, + "Mac": 1, + "OS": 1, + "ViewBehavior": 2, + "EndViewBehavior": 2, "End": 27, - "EditMenu": 1, - "EditUndo": 1, - "MenuModifier": 5, - "EditSeparator1": 1, - "EditCut": 1, - "EditCopy": 1, - "EditPaste": 1, - "EditClear": 1, - "EditSeparator2": 1, - "EditSelectAll": 1, - "UntitledSeparator": 1, - "AppleMenuItem": 1, - "AboutItem": 1, - "EndMenu": 1, + "EndClass": 1, "Report": 2, + "Begin": 23, "BillingReport": 1, "Compatibility": 2, "Units": 1, "Width": 3, "PageHeader": 1, - "Type": 34, "Height": 5, "Body": 1, "PageFooter": 1, @@ -68899,35 +69018,35 @@ "db.Rollback": 1, "Else": 2, "db.Commit": 1, - "Class": 3, - "Protected": 1, - "App": 1, - "Inherits": 1, - "Application": 1, - "Constant": 3, - "Name": 31, - "kEditClear": 1, - "String": 3, - "Dynamic": 3, - "False": 14, - "Default": 9, - "Scope": 4, - "Public": 3, - "#Tag": 5, - "Instance": 5, - "Platform": 5, - "Windows": 2, - "Language": 5, - "Definition": 5, - "Linux": 2, - "EndConstant": 3, - "kFileQuit": 1, - "kFileQuitShortcut": 1, - "Mac": 1, - "OS": 1, - "ViewBehavior": 2, - "EndViewBehavior": 2, - "EndClass": 1, + "Menu": 2, + "MainMenuBar": 1, + "MenuItem": 11, + "FileMenu": 1, + "SpecialMenu": 13, + "Text": 13, + "Index": 14, + "-": 14, + "AutoEnable": 13, + "True": 46, + "Visible": 41, + "QuitMenuItem": 1, + "FileQuit": 1, + "ShortcutKey": 6, + "Shortcut": 6, + "EditMenu": 1, + "EditUndo": 1, + "MenuModifier": 5, + "EditSeparator1": 1, + "EditCut": 1, + "EditCopy": 1, + "EditPaste": 1, + "EditClear": 1, + "EditSeparator2": 1, + "EditSelectAll": 1, + "UntitledSeparator": 1, + "AppleMenuItem": 1, + "AboutItem": 1, + "EndMenu": 1, "Toolbar": 2, "MyToolbar": 1, "ToolButton": 2, @@ -69013,93 +69132,36 @@ }, "Xtend": { "package": 2, - "example6": 1, + "example2": 1, "import": 7, "org.junit.Test": 2, "static": 4, "org.junit.Assert.*": 2, - "java.io.FileReader": 1, - "java.util.Set": 1, - "extension": 2, - "com.google.common.io.CharStreams.*": 1, "class": 4, - "Movies": 1, + "BasicExpressions": 2, "{": 14, "@Test": 7, "def": 7, "void": 7, - "numberOfActionMovies": 1, + "literals": 5, "(": 42, ")": 42, - "assertEquals": 14, - "movies.filter": 2, - "[": 9, - "categories.contains": 1, - "]": 9, - ".size": 2, - "}": 13, - "yearOfBestMovieFrom80ies": 1, - ".contains": 1, - "year": 2, - ".sortBy": 1, - "rating": 3, - ".last.year": 1, - "sumOfVotesOfTop2": 1, - "val": 9, - "long": 2, - "movies": 3, - "movies.sortBy": 1, - "-": 5, - ".take": 1, - ".map": 1, - "numberOfVotes": 2, - ".reduce": 1, - "a": 2, - "b": 2, - "|": 2, - "+": 6, - "_229": 1, - "new": 2, - "FileReader": 1, - ".readLines.map": 1, - "line": 1, - "segments": 1, - "line.split": 1, - ".iterator": 2, - "return": 1, - "Movie": 2, - "segments.next": 4, - "Integer": 1, - "parseInt": 1, - "Double": 1, - "parseDouble": 1, - "Long": 1, - "parseLong": 1, - "segments.toSet": 1, - "@Data": 1, - "String": 2, - "title": 1, - "int": 1, - "double": 2, - "Set": 1, - "": 1, - "categories": 1, - "example2": 1, - "BasicExpressions": 2, - "literals": 5, "//": 11, "string": 1, "work": 1, "with": 2, "single": 1, "or": 1, + "double": 2, "quotes": 1, + "assertEquals": 14, "number": 1, "big": 1, "decimals": 1, "in": 2, "this": 1, "case": 1, + "+": 6, "*": 1, "bd": 3, "boolean": 1, @@ -69107,6 +69169,7 @@ "false": 1, "getClass": 1, "typeof": 1, + "}": 13, "collections": 2, "There": 1, "are": 1, @@ -69116,22 +69179,28 @@ "create": 1, "and": 1, "numerous": 1, + "extension": 2, "which": 1, "make": 1, "working": 1, "them": 1, "convenient.": 1, + "val": 9, "list": 1, "newArrayList": 2, "list.map": 1, + "[": 9, "toUpperCase": 1, + "]": 9, ".head": 1, "set": 1, "newHashSet": 1, "set.filter": 1, "it": 2, + ".size": 2, "map": 1, "newHashMap": 1, + "-": 5, "map.get": 1, "controlStructures": 1, "looks": 1, @@ -69152,6 +69221,7 @@ "someValue": 2, "switch": 1, "Number": 1, + "String": 2, "loops": 1, "for": 2, "loop": 2, @@ -69161,11 +69231,73 @@ "..": 1, "while": 2, "iterator": 1, + ".iterator": 2, "iterator.hasNext": 1, - "iterator.next": 1 + "iterator.next": 1, + "example6": 1, + "java.io.FileReader": 1, + "java.util.Set": 1, + "com.google.common.io.CharStreams.*": 1, + "Movies": 1, + "numberOfActionMovies": 1, + "movies.filter": 2, + "categories.contains": 1, + "yearOfBestMovieFrom80ies": 1, + ".contains": 1, + "year": 2, + ".sortBy": 1, + "rating": 3, + ".last.year": 1, + "sumOfVotesOfTop2": 1, + "long": 2, + "movies": 3, + "movies.sortBy": 1, + ".take": 1, + ".map": 1, + "numberOfVotes": 2, + ".reduce": 1, + "a": 2, + "b": 2, + "|": 2, + "_229": 1, + "new": 2, + "FileReader": 1, + ".readLines.map": 1, + "line": 1, + "segments": 1, + "line.split": 1, + "return": 1, + "Movie": 2, + "segments.next": 4, + "Integer": 1, + "parseInt": 1, + "Double": 1, + "parseDouble": 1, + "Long": 1, + "parseLong": 1, + "segments.toSet": 1, + "@Data": 1, + "title": 1, + "int": 1, + "Set": 1, + "": 1, + "categories": 1 }, "YAML": { + "gem": 1, "-": 25, + "local": 1, + "gen": 1, + "rdoc": 2, + "run": 1, + "tests": 1, + "inline": 1, + "source": 1, + "line": 1, + "numbers": 1, + "gempath": 1, + "/usr/local/rubygems": 1, + "/home/gavin/.rubygems": 1, "http_interactions": 1, "request": 1, "method": 1, @@ -69198,29 +69330,62 @@ "Nov": 1, "GMT": 1, "recorded_with": 1, - "VCR": 1, - "gem": 1, - "local": 1, - "gen": 1, - "rdoc": 2, - "run": 1, - "tests": 1, - "inline": 1, - "source": 1, - "line": 1, - "numbers": 1, - "gempath": 1, - "/usr/local/rubygems": 1, - "/home/gavin/.rubygems": 1 + "VCR": 1 }, "Zephir": { + "%": 10, + "{": 58, + "#define": 1, + "MAX_FACTOR": 3, + "}": 52, "namespace": 4, "Test": 4, - "Router": 3, ";": 91, + "#include": 9, + "static": 1, + "long": 3, + "fibonacci": 4, + "(": 59, + "n": 5, + ")": 57, + "if": 39, + "<": 2, + "return": 26, + "else": 11, + "-": 25, + "+": 5, "class": 3, + "Cblock": 1, + "public": 22, + "function": 22, + "testCblock1": 1, + "int": 3, + "a": 6, + "testCblock2": 1, + "#ifdef": 1, + "HAVE_CONFIG_H": 1, + "#endif": 1, + "": 1, + "": 1, + "": 1, + "": 1, + "ZEPHIR_INIT_CLASS": 2, + "Test_Router_Exception": 2, + "ZEPHIR_REGISTER_CLASS_EX": 1, + "Router": 3, + "Exception": 4, + "test": 1, + "router_exception": 1, + "zend_exception_get_default": 1, + "TSRMLS_C": 1, + "NULL": 1, + "SUCCESS": 1, + "extern": 1, + "zend_class_entry": 1, + "*test_router_exception_ce": 1, + "php": 1, + "extends": 1, "Route": 1, - "{": 58, "protected": 9, "_pattern": 3, "_compiledPattern": 3, @@ -69231,27 +69396,19 @@ "_id": 2, "_name": 3, "_beforeMatch": 3, - "public": 22, - "function": 22, "__construct": 1, - "(": 59, "pattern": 37, "paths": 7, "null": 11, "httpMethods": 6, - ")": 57, "this": 28, - "-": 25, "reConfigure": 2, "let": 51, - "}": 52, "compilePattern": 2, "var": 4, "idPattern": 6, - "if": 39, "memstr": 10, "str_replace": 6, - "return": 26, ".": 5, "via": 1, "extractNamedParams": 2, @@ -69263,7 +69420,6 @@ "boolean": 1, "notValid": 5, "false": 3, - "int": 3, "cursor": 4, "cursorVar": 5, "marker": 4, @@ -69282,8 +69438,6 @@ "for": 4, "in": 4, "1": 3, - "else": 11, - "+": 5, "substr": 3, "break": 9, "&&": 6, @@ -69309,7 +69463,6 @@ "typeof": 2, "throw": 1, "new": 1, - "Exception": 4, "explode": 1, "switch": 1, "count": 1, @@ -69349,41 +69502,7 @@ "getHostname": 1, "convert": 1, "converter": 2, - "getConverters": 1, - "%": 10, - "#define": 1, - "MAX_FACTOR": 3, - "#include": 9, - "static": 1, - "long": 3, - "fibonacci": 4, - "n": 5, - "<": 2, - "Cblock": 1, - "testCblock1": 1, - "a": 6, - "testCblock2": 1, - "#ifdef": 1, - "HAVE_CONFIG_H": 1, - "#endif": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "ZEPHIR_INIT_CLASS": 2, - "Test_Router_Exception": 2, - "ZEPHIR_REGISTER_CLASS_EX": 1, - "test": 1, - "router_exception": 1, - "zend_exception_get_default": 1, - "TSRMLS_C": 1, - "NULL": 1, - "SUCCESS": 1, - "php": 1, - "extends": 1, - "extern": 1, - "zend_class_entry": 1, - "*test_router_exception_ce": 1 + "getConverters": 1 }, "Zimpl": { "#": 2, @@ -69451,16 +69570,73 @@ "db.part/user": 17 }, "fish": { - "function": 6, - "eval": 5, - "-": 102, - "S": 1, - "d": 3, "#": 18, + "set": 49, + "-": 102, + "g": 1, + "IFS": 4, + "n": 5, + "t": 2, + "l": 15, + "configdir": 2, + "/.config": 1, + "if": 21, + "q": 9, + "XDG_CONFIG_HOME": 2, + "end": 33, + "not": 8, + "fish_function_path": 4, + "configdir/fish/functions": 1, + "__fish_sysconfdir/functions": 1, + "__fish_datadir/functions": 3, + "contains": 4, + "[": 13, + "]": 13, + "fish_complete_path": 4, + "configdir/fish/completions": 1, + "__fish_sysconfdir/completions": 1, + "__fish_datadir/completions": 3, + "test": 7, + "d": 3, + "/usr/xpg4/bin": 3, + "PATH": 6, + "path_list": 4, + "/bin": 1, + "/usr/bin": 1, + "/usr/X11R6/bin": 1, + "/usr/local/bin": 1, + "__fish_bin_dir": 1, + "switch": 3, + "USER": 1, + "case": 9, + "root": 1, + "/sbin": 1, + "/usr/sbin": 1, + "/usr/local/sbin": 1, + "for": 1, + "i": 5, + "in": 2, + "function": 6, + "fish_sigtrap_handler": 1, + "on": 2, + "signal": 1, + "TRAP": 1, + "no": 2, + "scope": 1, + "shadowing": 1, + "description": 2, + "breakpoint": 1, + "__fish_on_interactive": 2, + "event": 1, + "fish_prompt": 1, + "__fish_config_interactive": 1, + "functions": 5, + "e": 6, + "eval": 5, + "S": 1, "If": 2, "we": 2, "are": 1, - "in": 2, "an": 1, "interactive": 8, "shell": 1, @@ -69479,7 +69655,6 @@ "was": 1, "executed.": 1, "don": 1, - "t": 2, "do": 1, "this": 1, "commands": 1, @@ -69494,15 +69669,11 @@ "work": 1, "using": 1, "eval.": 1, - "set": 49, - "l": 15, "mode": 5, - "if": 21, "status": 7, "is": 3, "else": 3, "none": 1, - "end": 33, "echo": 3, "|": 3, ".": 2, @@ -69511,22 +69682,14 @@ "res": 2, "return": 6, "funced": 3, - "description": 2, "editor": 7, "EDITOR": 1, "funcname": 14, "while": 2, - "q": 9, "argv": 9, - "[": 13, - "]": 13, - "switch": 3, - "case": 9, "h": 1, "help": 1, "__fish_print_help": 1, - "e": 6, - "i": 5, "set_color": 4, "red": 2, "printf": 3, @@ -69537,10 +69700,7 @@ "begin": 2, ";": 7, "or": 3, - "not": 8, - "test": 7, "init": 5, - "n": 5, "nend": 2, "editor_cmd": 2, "type": 1, @@ -69548,10 +69708,7 @@ "/dev/null": 2, "fish": 3, "z": 1, - "IFS": 4, - "functions": 5, "fish_indent": 2, - "no": 2, "indent": 1, "prompt": 2, "read": 1, @@ -69566,45 +69723,7 @@ "self": 2, "random": 2, "stat": 2, - "rm": 1, - "g": 1, - "configdir": 2, - "/.config": 1, - "XDG_CONFIG_HOME": 2, - "fish_function_path": 4, - "configdir/fish/functions": 1, - "__fish_sysconfdir/functions": 1, - "__fish_datadir/functions": 3, - "contains": 4, - "fish_complete_path": 4, - "configdir/fish/completions": 1, - "__fish_sysconfdir/completions": 1, - "__fish_datadir/completions": 3, - "/usr/xpg4/bin": 3, - "PATH": 6, - "path_list": 4, - "/bin": 1, - "/usr/bin": 1, - "/usr/X11R6/bin": 1, - "/usr/local/bin": 1, - "__fish_bin_dir": 1, - "USER": 1, - "root": 1, - "/sbin": 1, - "/usr/sbin": 1, - "/usr/local/sbin": 1, - "for": 1, - "fish_sigtrap_handler": 1, - "on": 2, - "signal": 1, - "TRAP": 1, - "scope": 1, - "shadowing": 1, - "breakpoint": 1, - "__fish_on_interactive": 2, - "event": 1, - "fish_prompt": 1, - "__fish_config_interactive": 1 + "rm": 1 }, "wisp": { ";": 199, @@ -70067,6 +70186,7 @@ "Creole": 134, "Crystal": 1506, "Cuda": 290, + "Cycript": 251, "DM": 169, "Dart": 74, "Diff": 16, @@ -70268,6 +70388,7 @@ "Creole": 1, "Crystal": 3, "Cuda": 2, + "Cycript": 1, "DM": 1, "Dart": 1, "Diff": 1, @@ -70436,5 +70557,5 @@ "fish": 3, "wisp": 1 }, - "md5": "dace5f780133fcc691c410815dc2bf63" + "md5": "87af2c0165a9c7fcb5f88e73d26b3c20" } \ No newline at end of file diff --git a/test/test_samples.rb b/test/test_samples.rb index e0130282..3ee5b64d 100644 --- a/test/test_samples.rb +++ b/test/test_samples.rb @@ -35,15 +35,33 @@ class TestSamples < Test::Unit::TestCase assert_equal data['tokens_total'], data['language_tokens'].inject(0) { |n, (_, c)| n += c } assert_equal data['tokens_total'], data['tokens'].inject(0) { |n, (_, ts)| n += ts.inject(0) { |m, (_, c)| m += c } } end - + + # Check that there aren't samples with extensions that aren't explicitly defined in languages.yml + def test_parity + extensions = Samples::DATA['extnames'] + languages_yml = File.expand_path("../../lib/linguist/languages.yml", __FILE__) + languages = YAML.load_file(languages_yml) + + languages.each do |name, options| + options['extensions'] ||= [] + + if extnames = extensions[name] + extnames.each do |extname| + next if extname == '.script!' + assert options['extensions'].include?(extname), "#{name} has a sample with extension (#{extname}) that isn't explicitly defined in languages.yml" + end + end + end + end + # If a language extension isn't globally unique then make sure there are samples def test_presence Linguist::Language.all.each do |language| language.all_extensions.each do |extension| language_matches = Language.find_by_filename("foo#{extension}") - + # If there is more than one language match for a given extension - # then check that there are examples for that language with the extension + # then check that there are examples for that language with the extension if language_matches.length > 1 language_matches.each do |language| assert File.directory?("samples/#{language.name}"), "#{language.name} is missing a samples directory" From 1bdbadc1b363a21367df96bdc8499e07e3864df8 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Wed, 13 Aug 2014 15:06:17 -0700 Subject: [PATCH 208/268] Adding samples for new extensions --- samples/Perl/example.cgi | 447 +++++++++++++++++++++++++++++++++++++++ samples/Perl/strict.t | 11 + 2 files changed, 458 insertions(+) create mode 100755 samples/Perl/example.cgi create mode 100644 samples/Perl/strict.t diff --git a/samples/Perl/example.cgi b/samples/Perl/example.cgi new file mode 100755 index 00000000..eac1ef92 --- /dev/null +++ b/samples/Perl/example.cgi @@ -0,0 +1,447 @@ +#!/usr/bin/perl + +# v1.0 +# nagiostat, program to insert performance-data from Nagios into RRD-archives +# Copyright (C) 2004 Carl Bingel / Svensk IT konsult AB +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +use strict; + +## Basic configuration options +my $BASE_DIR = "/usr/share/nagiostat"; +my $CONFIG_FILE = "/etc/nagios/nagiostat.conf"; ## Config-file location +my $DEBUG_LOG_FILE = "/var/spool/nagiostat/debug.log"; ## Specify where to create log-file and what filename (must be writable by nagios-user!) +my $DEBUGLEVEL = 1; ## 0=Nothing, 1=Errors, 2=Warnings, 3=Debug +my $DEBUGOUTPUT = 0; ## 0=file, 1=STDERR, 2=STDOUT (for cgi) + +require 'shellwords.pl'; + +## Global vars +my $DEBUG_TIMESTAMP=0; + +## Find out how program is run +if( $ARGV[0] eq "-t") { ## -t = test configuration-file + print STDERR "nagiostat: Testing configuration-file..\n"; + $DEBUGLEVEL=3; + $DEBUGOUTPUT=1; ## output errors to console and not file + my $c = &read_config(); + abort(); +} elsif( $ARGV[0] eq "-p") { ## -p = parse performance-data (when started by nagios) + &parse_perfdata(); +} else { + if( exists $ENV{'GATEWAY_INTERFACE'}) { ## we are run as a CGI-script! + $DEBUGOUTPUT=2; ## output errors to web-browser + &run_as_cgi(); + } else { ## print some help-info + print STDERR "nagiostat: usage: + -t Test configuration-file + -p Parse/import performance-data (used when called from nagios) +"; + } +} + +abort(); + +sub abort { + ## logfile: write blank if we wrote anything... + if( $DEBUG_TIMESTAMP!=0) { + debug( 1, ""); + } + exit; +} + +## +## Program is called as CGI +## +sub run_as_cgi { + use CGI; + my $cgi = new CGI; + + my $graph_name = $cgi->param( "graph_name"); + my $graph_iteration = $cgi->param( "graph_iteration"); + + if( $graph_iteration eq "") { + print "Content-type: text/html\nExpires: 0\n\n"; + } else { + print "Content-type: image/gif\nExpires: 0\n\n"; + } + + my $config = read_config(); + + if( $graph_name eq "") { + ## + ## display index of graphs + ## + display_htmltemplate( $config->{'htmltemplatepath'}."/".$config->{'graphindextemplate'}, $graph_name, $config); + } else { ## display graph + if( ! exists $config->{'graphs'}->{$graph_name}) { + debug( 1, "ERROR: Graph '$graph_name' does not exist!"); + exit; + } elsif( $graph_iteration eq "") { + ## + ## Display HTML-page with all the graphs + ## + if( ! -r $config->{'htmltemplatepath'}."/".$config->{'graphs'}->{$graph_name}->{'htmltemplate'}) { + debug( 1, "ERROR: HTML-template '".($config->{'htmltemplatepath'}."/".$config->{'graphs'}->{$graph_name}->{'htmltemplate'})."' is not readable by effective userid!"); + exit; + } + display_htmltemplate( $config->{'htmltemplatepath'}."/".$config->{'graphs'}->{$graph_name}->{'htmltemplate'}, $graph_name, $config); + } else { + ## + ## generate graph (call 'rrdtool graph') + ## + my $rrdtool_cmdline = $config->{'rrdtoolpath'}." graph - ".join( " ", @{$config->{'plottemplates'}->{ $config->{'graphs'}->{$graph_name}->{'plottemplate'} } }); + + ## expand variables + my $rrdarchive = $config->{'rrdarchivepath'}."/".$config->{'graphs'}->{$graph_name}->{'rrdfilename'}; + $rrdtool_cmdline =~ s/\$f/$rrdarchive/g; + my $t_start = $config->{'graphtimetemplates'}->{ $config->{'graphs'}->{$graph_name}->{'graphtimetemplate'} }->[$graph_iteration]->{'starttime'}; + $rrdtool_cmdline =~ s/\$s/$t_start/g; + my $t_end = $config->{'graphtimetemplates'}->{ $config->{'graphs'}->{$graph_name}->{'graphtimetemplate'} }->[$graph_iteration]->{'endtime'}; + $rrdtool_cmdline =~ s/\$e/$t_end/g; + my $t_descr = $config->{'graphtimetemplates'}->{ $config->{'graphs'}->{$graph_name}->{'graphtimetemplate'} }->[$graph_iteration]->{'description'}; + $rrdtool_cmdline =~ s/\$d/$t_descr/g; + + ## Call rrdtool (should probably be fixed to call it in a better way, like exec) + print `$rrdtool_cmdline`; + } + + } + +} + +## Display HTML template (and do variable-substitution and other stuff) +## +sub display_htmltemplate { + my( $filename, $graph_name, $config) = @_; + + if( -r $filename) { + open( HTML, $filename); + while( ) { + ## All is a big regex.. :-) + s/\$(\w+)/my $t=sub { + my $varname = $_[0]; + if( $varname eq "GRAPHNAME") { ## return the name of the graph + if( $config->{'graphs'}->{$graph_name}->{'title'} ne "") { + return( $config->{'graphs'}->{$graph_name}->{'title'}); + } else { + return( "Graph ".$graph_name); + } + } elsif( $varname eq "CURRENTTIME") { ## return current date-time + return( localtime()); + } elsif( $varname eq "GRAPHINDEX" || $varname eq "GRAPHINDEX_ONEROW") { ## return HTML-code for index of the different graphs + my $return_html; + foreach my $gn ( sort keys %{$config->{'graphs'}}) { + $return_html.=(($varname eq "GRAPHINDEX")?"
  • ":""). + "".($config->{'graphs'}->{$gn}->{'title'})."<\/A>". # must escape slash since were inside an regex! + (($varname eq "GRAPHINDEX_ONEROW")?"  ":""); + } + return( $return_html); + } elsif( $varname eq "GRAPH_AUTOGENERATE") { ## return HTML-code for displaying the actual graph-images + my $iteration_id=0; + my $return_html; + foreach my $time ( @{ $config->{'graphtimetemplates'}->{ $config->{'graphs'}->{$graph_name}->{'graphtimetemplate'} } }) { + $return_html.="

    ".($time->{'description'})."
    "; + $iteration_id++; + } + return( $return_html); + } else { ## unknown variable + return( "##UNKNOWN-VARIABLE##"); + } + }; &$t($1)/eig; ## i thought that regex would never end! + print; + } + close( HTML); + } else { + print "ERROR: HTML-template '$filename' does not exist or is not readable by effective userid."; + } + +} + +## +## Process incoming performance-data (parse output from check-plugin and insert values into rrd-archives) +## +sub parse_perfdata { + + $DEBUG_TIMESTAMP=0; + + my $config = read_config(); + + my $rrd_updates; + + ## Provide more symbolic names (same names as the macros in nagios configuration-file) + + my( $LASTCHECK, $HOSTNAME, $SERVICEDESCR, $SERVICESTATE, $OUTPUT, $PERFDATA) = split( /\|!!\|/, $ARGV[1]); + debug( 3, "**INCOMING PERFDATA:\n LASTCHECK=$LASTCHECK\n HOSTNAME=$HOSTNAME\n SERVICEDESCR=\"$SERVICEDESCR\"\n SERVICESTATE=\"$SERVICESTATE\"\n OUTPUT=\"$OUTPUT\"\n PERFDATA=\"$PERFDATA\""); + + my $host_and_descr_found; + ## Loop through all host_regexes + foreach my $host_regex ( keys %{$config->{'regexes'}}) { + ## Loop through all service_description_regexes + foreach my $service_regex ( keys %{$config->{'regexes'}->{$host_regex}}) { + if( ($HOSTNAME =~ m/$host_regex/i) && ($SERVICEDESCR =~ m/$service_regex/i) ) { ## match! + $host_and_descr_found=1; + ## Loop through all InsertValue-lines with same host and service_description match + foreach my $insert_value ( @{$config->{'regexes'}->{$host_regex}->{$service_regex}} ) { + ## Loop through all regexes that should match values in the output/perfdata + foreach my $regex ( @{ $config->{'valueregextemplates'}->{$insert_value->{'regextemplate'}} }) { + my $regex_string = $regex->{'regex'}; + if( $regex->{'regex_what'} eq "output") { ## do regex on "output" + if( $OUTPUT =~ m/$regex_string/) { + debug( 3, " +VALUE: ".$1); + push( @{$rrd_updates->{$insert_value->{'rrdarchive'}}->{'value'}}, $1); + push( @{$rrd_updates->{$insert_value->{'rrdarchive'}}->{'dsaname'}}, $regex->{'dsaname'}); + $rrd_updates->{$insert_value->{'rrdarchive'}}->{'rrdcreatetemplate'} = $insert_value->{'rrdcreatetemplate'}; #$config->{'regexes'}->{$host_regex}->{$service_regex}->[0]->{'rrdcreatetemplate'}; + } else { + debug( 2, "**WARNING: No match for value with regex on output '$regex_string'."); + } + } else { ## do regex on "perfdata" + if( $PERFDATA =~ m/$regex_string/) { + debug( 3, " +VALUE: ".$1); + push( @{$rrd_updates->{$insert_value->{'rrdarchive'}}->{'value'}}, $1); + push( @{$rrd_updates->{$insert_value->{'rrdarchive'}}->{'dsaname'}}, $regex->{'dsaname'}); + $rrd_updates->{$insert_value->{'rrdarchive'}}->{'rrdcreatetemplate'} = $insert_value->{'rrdcreatetemplate'}; #$config->{'regexes'}->{$host_regex}->{$service_regex}->[0]->{'rrdcreatetemplate'}; + } else { + debug( 2, "**WARNING: No match for value with regex on perfdata '$regex_string'."); + } + } + } + } + + } + } + } + + if( !$host_and_descr_found) { + debug( 2, "**WARNING: Hostname and description didn't match any of the regexes in the config-file."); + } else { + ## + ## Insert the value into the RRD by calling the rrdtool (may be several rrd-archives) + ## + foreach my $archive ( keys %{$rrd_updates}) { + debug( 3, " =INSERT into '$archive': ".join( ",", @{$rrd_updates->{$archive}->{'value'}} )." DSA-names=".join( ",", @{$rrd_updates->{$archive}->{'dsaname'}}) ); + + my $rrdarchive_filename = $config->{'rrdarchivepath'}."/".$archive; + + ## Create RRD-Archive (according to template) if it does not exist + if( ! -e $rrdarchive_filename) { + my $rrdtool_cmdline = $config->{'rrdtoolpath'}." create ".$rrdarchive_filename." ".(join( " ", @{$config->{'rrdcreatetemplates'}->{$rrd_updates->{$archive}->{'rrdcreatetemplate'}}})); + debug( 2, "**CREATING: $rrdarchive_filename, cmdline='".$rrdtool_cmdline."'."); + `$rrdtool_cmdline`; + } + + ## Check if rrd-archive is writable + if( ! -w $rrdarchive_filename) { ## check wheter RRD-archive exists + debug( 1, "!!ERROR: RRD-archive '".$rrdarchive_filename."' does not exist or is not writable by effective UID."); abort(); + } + + ## Assemle command-line for rrdtool + my $rrdtool_cmdline = $config->{'rrdtoolpath'}." update ".$rrdarchive_filename. + " --template ".join( ":", @{$rrd_updates->{$archive}->{'dsaname'}}). + " $LASTCHECK:".join( ":", @{$rrd_updates->{$archive}->{'value'}}); + debug( 3, " !RRDCMDLINE: ".$rrdtool_cmdline); + my $result = `$rrdtool_cmdline`; + if( $result ne "") { + debug( 1, "!!RESULT: $result"); + } + } + } + +} + + + + +## +## Read config-file and check for errors +## +sub read_config { + my $config; + open( CONFIG, $CONFIG_FILE); + my( $line_counter); + while( ) { + $line_counter++; + chomp; + my( @args) = &shellwords( $_); + my $orig_confline = $_; + $args[0] = uc( $args[0]); + + if( $args[0] eq "INSERTVALUE") { ## INSERTVALUE-command + shift @args; + my( $rrd_filename, $rrdcreatetemplate, $hostname_regex, $servicedescr_regex, $regex_template) = @args; + + if( ! exists $config->{'rrdcreatetemplates'}->{$rrdcreatetemplate}) { + debug( 1, "!!ERROR: RRDCreateTemplate '$rrdcreatetemplate' is not defined but refered to in line $line_counter."); abort(); + } + if( $hostname_regex !~ m/^\/(.*)\/$/) { ## verify hostname regex + debug( 1, "!!ERROR: Hostname regex should be enclosed in slashes, i.e. /HOSTNAME/ and optionally enclosed in quotes if needed. Conf-line $line_counter."); abort(); + } else { + $hostname_regex = $1; + } + if( $servicedescr_regex !~ m/^\/(.*)\/$/) { ## verify service description regex + debug( 1, "!!ERROR: Service-description regex should be enclosed in slashes, i.e. /SERVICEDESCR/ and optionally enclosed in quotes if needed. Config-line $line_counter."); + abort(); + } else { + $servicedescr_regex = $1; + } + if( ! exists $config->{'valueregextemplates'}->{$regex_template}) { ## verify value-regex-template exists + debug( 1, "!!ERROR: VALUEREGEXTEMPLATE '$regex_template' is not defined on line $line_counter."); abort(); + } + push( @{$config->{'regexes'}->{$hostname_regex}->{$servicedescr_regex}}, { + 'rrdarchive' => $rrd_filename, + 'rrdcreatetemplate' => $rrdcreatetemplate, + 'regextemplate' => $regex_template + } ); + } elsif( $args[0] =~ m/^(\s*)#/ || $args[0] eq "") { ## comment or blank row + ## do nuthin + } elsif( $args[0] eq "RRDTOOLPATH") { ## RRDToolPath args: path + $config->{'rrdtoolpath'} = $args[1]; + } elsif( $args[0] eq "PLOTTEMPLATE") { ## PlotTemplate args: name,htmltemplate,parameters.. + shift @args; + my( $name, @params) = @args; + if( $name eq "") { + debug( 1, "!!ERROR: PLOTTEMPLATE-name must be specified on line $line_counter."); abort(); + } + if( exists $config->{'plottemplates'}->{$name}) { + debug( 1, "!!ERROR: PLOTTTEMPLATE-names must be uniqe. Duplicate name found on line: $line_counter."); abort(); + } + $config->{'plottemplates'}->{$name} = [ @params]; + } elsif( $args[0] eq "GRAPHTIMETEMPLATE") { ## GraphTimeTemplate args: name,parameters.. + shift @args; + my( $name, @params) = @args; + if( $name eq "") { + debug( 1, "!!ERROR: GRAPHTIMETEMPLATE-name must be specified on line $line_counter."); abort(); + } + if( exists $config->{'graphtimetemplates'}->{$name}) { + debug( 1, "!!ERROR: GRAPHTIMETEMPLATE-names must be uniqe. Duplicate name found on line: $line_counter."); abort(); + } + foreach my $time_template (@params) { + my( $t_start, $t_end, @t_descr) = split( /:/, $time_template); + my $t_descr = join( ":", @t_descr); # workaround if ':' is used in description-string + if( $t_start eq "" || $t_end eq "") { + debug( 1, "!!ERROR: GRAPHTIMETEMPLATE, each time-definition should be defined as '::' on line $line_counter."); + } + push( @{$config->{'graphtimetemplates'}->{$name}}, { + 'starttime' => $t_start, + 'endtime' => $t_end, + 'description' => $t_descr + }); + } + } elsif( $args[0] eq "RRDCREATETEMPLATE") { ## RRDCreateTemplate + shift @args; + my( $name, @params) = @args; + if( $name eq "") { + debug( 1, "!!ERROR: RRDCREATETEMPLATE-name must be specified on line $line_counter."); abort(); + } + if( exists $config->{'rrdcreatetemplates'}->{$name}) { + debug( 1, "!!ERROR: RRDCREATETEMPLATE-names must be uniq. Duplicate name found on line: $line_counter."); abort(); + } + $config->{'rrdcreatetemplates'}->{$name} = [ @params]; + } elsif( $args[0] eq "VALUEREGEXTEMPLATE") { ## ValueRegexTemplate + shift @args; + my( $template_name, @regexes) = @args; + if( $template_name eq "") { + debug( 1, "!!ERROR: VALUEREGEXTEMPLATE-name must be specified on line $line_counter."); abort(); + } + foreach my $r (@regexes) { + if( $r !~ m/^(output|perfdata):(\w+):\/(.*)\/$/) { + debug( 1, "!!ERROR: Value-regex should be formatted as 'output:dsaname:/regex/' or 'perfdata:dsaname:/regex/' depending on in which field to extract the data. The value should be within parantheses in the regex. Config-line $line_counter."); + abort(); + } else { + my( $regex_what, $dsa_name, $regex) = ( $1, $2, $3); + push( @{$config->{'valueregextemplates'}->{$template_name}}, { + 'regex_what' => $regex_what, + 'regex' => $regex, + 'dsaname' => $dsa_name + } ); + } + } + } elsif( $args[0] eq "RRDARCHIVEPATH") { ## RRDARCHIVEPATH + $config->{'rrdarchivepath'} = $args[1]; + } elsif( $args[0] eq "HTMLTEMPLATEPATH") { ## HTMLTemplatePath + $config->{'htmltemplatepath'} = $args[1]; + } elsif( $args[0] eq "GRAPHINDEXTEMPLATE") { ## GraphIndexTemplate + $config->{'graphindextemplate'} = $args[1]; + } elsif( $args[0] eq "GRAPH") { ## GRAPH args: name,rrdfilename,rrdcreatetemplate,graphtimetemplate,plottemplate,htmltemplate + if( $args[1] eq "") { + debug( 1, "!!ERROR: GRAPH-name must be specified on line $line_counter."); abort(); + } + if( ! exists $config->{'graphtimetemplates'}->{$args[3]}) { + debug( 1, "!!ERROR: Unknown GRAPHTIMETEMPLATE on line $line_counter."); abort(); + } + if( ! exists $config->{'plottemplates'}->{$args[4]}) { + debug( 1, "!!ERROR: Unknown PLOTTEMPLATE on line $line_counter."); abort(); + } + if( exists $config->{'graphs'}->{$args[1]}) { + debug( 1, "!!ERROR: Graphnames must be uniqe. Duplicate name found on line: $line_counter."); + abort(); + } else { + $config->{'graphs'}->{$args[1]} = { + 'graphname' => $args[1], + 'rrdfilename' => $args[2], + 'graphtimetemplate' => $args[3], + 'plottemplate' => $args[4], + 'htmltemplate' => $args[5], + 'title' => $args[6] + }; + } + } else { + debug( 1, "!!ERROR: Unknown config-file directive on line $line_counter: '".$args[0]."'"); + } + } + close( CONFIG); + + if( ! -x $config->{'rrdtoolpath'}) { + debug( 1, "!!ERROR: RRDTOOLPATH does not point to executable rrdtool-binary."); + abort(); + } + if( ! -x $config->{'rrdarchivepath'}) { + debug( 1, "!!ERROR: RRDARCHIVEPATH, '".($config->{'rrdarchivepath'})."' is not readable by effective userid."); abort(); + } + if( ! -x $config->{'htmltemplatepath'}) { + debug( 1, "!!ERROR: HTMLTEMPLATEPATH, '".($config->{'htmltemplatepath'})."' is not readable by effective userid."); abort(); + } + + return( $config); +} + + +## +## Write debug-output/logging +## +sub debug { + my( $level, $msg) = @_; + if( $DEBUGLEVEL >= $level) { + + ## write timestamp + if( !$DEBUG_TIMESTAMP) { + $DEBUG_TIMESTAMP=1; + debug( 1, scalar localtime()); + } + + ## write to file or STDERR + if( $DEBUGOUTPUT == 0) { + open( DEBUGOUTPUT, ">>".$DEBUG_LOG_FILE); + print DEBUGOUTPUT $msg."\n"; + close( DEBUGOUTPUT); + } elsif( $DEBUGOUTPUT == 2) { + print "

    $msg
    "; + } else { + print STDERR $msg."\n"; + } + + } +} diff --git a/samples/Perl/strict.t b/samples/Perl/strict.t new file mode 100644 index 00000000..04cea2f8 --- /dev/null +++ b/samples/Perl/strict.t @@ -0,0 +1,11 @@ +use Test::Base; + +__DATA__ +=== Strict Test + +--- perl strict +my $x = 5; +--- strict +use strict; +use warnings; +my $x = 5; \ No newline at end of file From b3aee8ababfc39302768567761c1e3587f19b8f9 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Wed, 13 Aug 2014 15:16:48 -0700 Subject: [PATCH 209/268] Samples update --- lib/linguist/samples.json | 521 ++++++++++++++++++++++++++------------ 1 file changed, 355 insertions(+), 166 deletions(-) diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index d1b10626..007f0158 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -444,6 +444,7 @@ ".dpr" ], "Perl": [ + ".cgi", ".fcgi", ".pl", ".pm", @@ -806,8 +807,8 @@ "exception.zep.php" ] }, - "tokens_total": 632405, - "languages_total": 874, + "tokens_total": 635116, + "languages_total": 876, "tokens": { "ABAP": { "*/**": 1, @@ -51520,35 +51521,35 @@ "package": 14, "App": 131, "Ack": 136, - ";": 1193, - "use": 83, - "warnings": 18, - "strict": 18, + ";": 1376, + "use": 88, + "warnings": 19, + "strict": 22, "File": 54, "Next": 27, "Plugin": 2, - "Basic": 10, + "Basic": 11, "head1": 36, "NAME": 6, - "-": 868, + "-": 1075, "A": 2, "container": 1, - "for": 83, + "for": 88, "functions": 2, - "the": 143, + "the": 153, "ack": 38, - "program": 6, + "program": 7, "VERSION": 15, "Version": 1, "cut": 28, "our": 34, "COPYRIGHT": 7, "BEGIN": 7, - "{": 1121, - "}": 1134, + "{": 1394, + "}": 1407, "fh": 28, "*STDOUT": 6, - "%": 78, + "%": 82, "types": 26, "type_wanted": 20, "mappings": 29, @@ -51559,8 +51560,8 @@ "is_cygwin": 6, "is_windows": 12, "Spec": 13, - "(": 925, - ")": 923, + "(": 1137, + ")": 1136, "Glob": 4, "Getopt": 6, "Long": 6, @@ -51573,11 +51574,11 @@ "_sgbak": 2, "_build": 2, "actionscript": 2, - "[": 159, + "[": 200, "qw": 35, - "as": 37, + "as": 40, "mxml": 2, - "]": 155, + "]": 196, "ada": 4, "adb": 2, "ads": 2, @@ -51591,7 +51592,7 @@ "Binary": 2, "files": 42, "defined": 54, - "by": 16, + "by": 19, "Perl": 9, "T": 2, "op": 2, @@ -51620,25 +51621,25 @@ "xsl": 2, "xslt": 2, "ent": 2, - "while": 31, - "my": 404, + "while": 33, + "my": 458, "type": 69, "exts": 6, "each": 14, - "if": 276, + "if": 322, "ref": 33, "ext": 14, - "@": 38, - "push": 30, - "_": 101, + "@": 54, + "push": 37, + "_": 104, "mk": 2, "mak": 2, - "not": 54, - "t": 18, - "p": 9, + "not": 56, + "t": 21, + "p": 10, "STDIN": 2, "O": 4, - "eq": 31, + "eq": 62, "/MSWin32/": 2, "quotemeta": 5, "catfile": 4, @@ -51646,37 +51647,37 @@ "If": 15, "you": 44, "want": 7, - "to": 95, + "to": 101, "know": 4, "about": 4, "F": 24, "": 13, "see": 5, - "file": 49, + "file": 57, "itself.": 3, "No": 4, - "user": 4, + "user": 5, "serviceable": 1, "parts": 1, "inside.": 1, - "is": 69, - "all": 23, - "that": 33, - "should": 6, + "is": 74, + "all": 28, + "that": 35, + "should": 8, "this.": 1, "FUNCTIONS": 1, "head2": 34, "read_ackrc": 4, "Reads": 1, "contents": 2, - "of": 64, + "of": 67, ".ackrc": 1, - "and": 85, + "and": 92, "returns": 4, "arguments.": 1, - "sub": 225, + "sub": 232, "@files": 12, - "ENV": 40, + "ENV": 41, "ACKRC": 2, "@dirs": 4, "HOME": 4, @@ -51685,55 +51686,55 @@ "grep": 17, "bsd_glob": 4, "GLOB_TILDE": 2, - "filename": 68, - "&&": 83, - "e": 20, - "open": 7, - "or": 49, + "filename": 72, + "&&": 84, + "e": 21, + "open": 10, + "or": 51, "die": 38, "@lines": 21, "/./": 2, - "/": 69, + "/": 82, "s*#/": 2, "<$fh>": 4, - "chomp": 3, - "close": 19, - "s/": 22, - "+": 120, + "chomp": 4, + "close": 22, + "s/": 28, + "+": 126, "//": 9, - "return": 157, + "return": 168, "get_command_line_options": 4, "Gets": 3, - "command": 14, - "line": 20, + "command": 16, + "line": 21, "arguments": 2, - "does": 10, + "does": 11, "specific": 2, "tweaking.": 1, "opt": 291, "pager": 19, "ACK_PAGER_COLOR": 7, - "||": 49, + "||": 52, "ACK_PAGER": 5, "getopt_specs": 6, "m": 17, "after_context": 16, "before_context": 18, - "shift": 165, + "shift": 170, "val": 26, "break": 14, - "c": 5, + "c": 6, "count": 23, "color": 38, "ACK_COLOR_MATCH": 5, "ACK_COLOR_FILENAME": 5, "ACK_COLOR_LINENO": 4, "column": 4, - "#": 99, + "#": 106, "ignore": 7, "this": 22, "option": 7, - "it": 28, + "it": 30, "handled": 2, "beforehand": 2, "f": 25, @@ -51743,14 +51744,14 @@ "heading": 18, "h": 6, "H": 6, - "i": 26, + "i": 27, "invert_file_match": 8, - "lines": 19, + "lines": 20, "l": 17, - "regex": 28, + "regex": 42, "n": 19, "o": 17, - "output": 36, + "output": 40, "undef": 17, "passthru": 9, "print0": 7, @@ -51759,15 +51760,15 @@ "smart_case": 3, "sort_files": 11, "u": 10, - "w": 4, + "w": 7, "remove_dir_sep": 7, "delete": 10, "print_version_statement": 2, - "exit": 16, + "exit": 19, "show_help": 3, - "@_": 43, + "@_": 45, "show_help_types": 2, - "require": 12, + "require": 13, "Pod": 4, "Usage": 4, "pod2usage": 2, @@ -51776,22 +51777,22 @@ "dummy": 2, "wanted": 4, "no//": 2, - "must": 5, - "be": 36, + "must": 7, + "be": 39, "later": 2, - "exists": 19, - "else": 53, + "exists": 31, + "else": 71, "qq": 18, "Unknown": 2, "unshift": 4, "@ARGV": 12, - "split": 13, + "split": 15, "ACK_OPTIONS": 5, "def_types_from_ARGV": 5, "filetypes_supported": 5, "parser": 12, "Parser": 4, - "new": 55, + "new": 56, "configure": 4, "getoptions": 4, "to_screen": 10, @@ -51801,27 +51802,27 @@ "Console": 2, "ANSI": 3, "key": 20, - "value": 12, + "value": 14, "<": 15, - "join": 5, + "join": 7, "map": 10, "@ret": 10, - "from": 19, + "from": 20, "warn": 22, "..": 7, "uniq": 4, "@uniq": 2, - "sort": 8, - "a": 85, + "sort": 9, + "a": 88, "<=>": 2, "b": 6, - "keys": 15, + "keys": 19, "numerical": 2, "occurs": 2, "only": 11, "once": 4, "Go": 1, - "through": 6, + "through": 10, "look": 2, "I": 68, "<--type-set>": 1, @@ -51829,14 +51830,14 @@ "bar": 3, "<--type-add>": 1, "xml=": 1, - ".": 125, + ".": 166, "Remove": 1, "them": 5, "add": 9, "supported": 1, "filetypes": 8, "i.e.": 2, - "into": 6, + "into": 8, "etc.": 3, "@typedef": 8, "td": 6, @@ -51844,12 +51845,12 @@ "Builtin": 4, "cannot": 4, "changed.": 4, - "ne": 9, + "ne": 11, "delete_type": 5, "Type": 2, - "exist": 4, + "exist": 5, "creating": 3, - "with": 26, + "with": 28, "...": 2, "unless": 39, "@exts": 8, @@ -51877,9 +51878,9 @@ "directory": 8, "any": 4, "ones": 1, - "we": 7, + "we": 9, "ignore.": 1, - "path": 28, + "path": 29, "This": 27, "removes": 1, "trailing": 1, @@ -51912,16 +51913,16 @@ "constant": 2, "TEXT": 16, "basename": 9, - ".*": 2, + ".*": 5, "is_searchable": 8, "lc_basename": 8, "lc": 5, - "r": 14, + "r": 18, "B": 76, "header": 17, "SHEBANG#!#!": 2, "ruby": 3, - "|": 28, + "|": 31, "lua": 2, "erl": 2, "hp": 2, @@ -51944,15 +51945,15 @@ "U": 2, "y": 8, "tr/": 2, - "x": 7, + "x": 12, "w/": 3, "nOo_/": 2, "_thpppt": 3, "_get_thpppt": 3, - "print": 35, + "print": 46, "_bar": 3, "<<": 10, - "&": 22, + "&": 27, "*I": 2, "g": 7, "#.": 6, @@ -51961,15 +51962,15 @@ "#I": 6, "#7": 4, "results.": 2, - "on": 25, - "when": 18, - "used": 12, + "on": 27, + "when": 19, + "used": 13, "interactively": 6, "no": 22, "Print": 6, "between": 4, "results": 8, - "different": 2, + "different": 3, "files.": 6, "group": 2, "Same": 8, @@ -51983,7 +51984,7 @@ "Windows": 4, "colour": 2, "COLOR": 6, - "match": 21, + "match": 24, "lineno": 2, "Set": 3, "filenames": 7, @@ -52009,7 +52010,7 @@ "invert": 2, "Print/search": 2, "handle": 3, - "do": 12, + "do": 16, "g/": 2, "G.": 2, "show": 3, @@ -52017,15 +52018,15 @@ "which": 7, "has.": 2, "inclusion/exclusion": 2, - "All": 4, + "All": 5, "searched": 5, "Ignores": 2, ".svn": 3, - "other": 5, + "other": 6, "ignored": 6, "directories": 9, "unrestricted": 2, - "name": 44, + "name": 60, "Add/Remove": 2, "dirs": 2, "R": 2, @@ -52055,12 +52056,12 @@ "res": 59, "next_text": 8, "has_lines": 4, - "scalar": 2, - "m/": 4, + "scalar": 3, + "m/": 12, "regex/": 9, "next": 9, "print_match_or_context": 13, - "elsif": 10, + "elsif": 26, "last": 17, "max": 12, "nmatches": 61, @@ -52074,7 +52075,7 @@ "match_start": 5, "match_end": 3, "Prints": 4, - "out": 2, + "out": 3, "context": 1, "around": 5, "match.": 3, @@ -52115,7 +52116,7 @@ "print_count0": 2, "filetypes_supported_set": 9, "True/False": 1, - "are": 25, + "are": 26, "print_files": 4, "iter": 23, "returned": 3, @@ -52127,10 +52128,10 @@ "<$ors>": 1, "<\"\\n\">": 1, "defines": 2, - "what": 14, + "what": 15, "filename.": 1, "print_files_with_matches": 4, - "where": 3, + "where": 4, "was": 2, "repo": 18, "Repository": 11, @@ -52157,7 +52158,7 @@ "EXPAND_FILENAMES_SCOPE": 4, "argv": 12, "attr": 6, - "foreach": 4, + "foreach": 13, "pattern": 10, "@results": 14, "didn": 2, @@ -52165,7 +52166,7 @@ "tried": 2, "load": 2, "GetAttributes": 2, - "end": 9, + "end": 10, "attributes": 4, "got": 2, "get_starting_points": 4, @@ -52173,7 +52174,7 @@ "@what": 14, "reslash": 4, "Assume": 2, - "current": 5, + "current": 6, "start_point": 4, "_match": 8, "target": 6, @@ -52188,7 +52189,7 @@ "is_interesting": 4, "descend_filter": 11, "error_handler": 5, - "msg": 4, + "msg": 5, "follow_symlinks": 6, "set_up_pager": 3, "Unable": 2, @@ -52201,7 +52202,7 @@ "code.": 2, "otherwise": 2, "handed": 1, - "in": 36, + "in": 40, "argument.": 1, "rc": 11, "LICENSE": 3, @@ -52218,6 +52219,236 @@ "License": 2, "v2.0.": 2, "End": 3, + "SHEBANG#!perl": 6, + "##": 79, + "configuration": 3, + "options": 8, + "BASE_DIR": 1, + "CONFIG_FILE": 2, + "Config": 1, + "location": 5, + "DEBUG_LOG_FILE": 2, + "Specify": 2, + "create": 4, + "log": 4, + "writable": 2, + "nagios": 3, + "DEBUGLEVEL": 3, + "Nothing": 1, + "Errors": 1, + "Warnings": 1, + "Debug": 1, + "DEBUGOUTPUT": 8, + "STDERR": 5, + "STDOUT": 1, + "cgi": 4, + "Global": 1, + "vars": 1, + "DEBUG_TIMESTAMP": 5, + "Find": 1, + "how": 2, + "run": 3, + "ARGV": 5, + "test": 1, + "errors": 4, + "console": 1, + "read_config": 4, + "abort": 23, + "parse": 3, + "performance": 2, + "data": 5, + "started": 1, + "parse_perfdata": 2, + "CGI": 10, + "script": 1, + "web": 9, + "browser": 1, + "run_as_cgi": 2, + "some": 2, + "help": 3, + "info": 1, + "logfile": 1, + "write": 5, + "blank": 2, + "wrote": 1, + "anything...": 1, + "debug": 39, + "Program": 1, + "called": 5, + "graph_name": 18, + "param": 10, + "graph_iteration": 6, + "config": 67, + "display": 2, + "index": 2, + "graphs": 3, + "display_htmltemplate": 3, + "graph": 4, + "Display": 3, + "HTML": 6, + "page": 1, + "generate": 1, + "call": 4, + "rrdtool_cmdline": 11, + ".join": 5, + "expand": 1, + "variables": 1, + "rrdarchive": 1, + "f/": 1, + "rrdarchive/g": 1, + "t_start": 4, + "t_start/g": 1, + "t_end": 4, + "e/": 1, + "t_end/g": 1, + "t_descr": 3, + "d/": 1, + "t_descr/g": 1, + "Call": 1, + "rrdtool": 3, + "probably": 1, + "fixed": 1, + "better": 1, + "way": 3, + "like": 14, + "exec": 1, + "template": 3, + "variable": 3, + "substitution": 1, + "stuff": 1, + "": 1, + "big": 2, + "regex..": 1, + "/my": 1, + "varname": 8, + "date": 3, + "time": 6, + "localtime": 2, + "code": 10, + "return_html": 4, + "gn": 2, + "return_html.": 2, + "escape": 1, + "slash": 1, + "since": 2, + "were": 2, + "inside": 1, + "an": 17, + "displaying": 1, + "actual": 1, + "images": 1, + "iteration_id": 2, + "unknown": 1, + "/eig": 1, + "thought": 1, + "would": 6, + "never": 2, + "Process": 1, + "incoming": 1, + "check": 3, + "plugin": 1, + "insert": 1, + "values": 7, + "rrd": 3, + "archives": 2, + "rrd_updates": 13, + "Provide": 1, + "more": 3, + "symbolic": 1, + "names": 3, + "same": 4, + "macros": 1, + "LASTCHECK": 1, + "HOSTNAME": 2, + "SERVICEDESCR": 2, + "SERVICESTATE": 1, + "OUTPUT": 2, + "PERFDATA": 2, + "host_and_descr_found": 3, + "Loop": 4, + "host_regexes": 1, + "host_regex": 5, + "service_description_regexes": 1, + "service_regex": 4, + "host_regex/i": 1, + "service_regex/i": 1, + "InsertValue": 1, + "host": 1, + "service_description": 1, + "insert_value": 10, + "regexes": 4, + "output/perfdata": 1, + "regex_string": 1, + "regex_string/": 2, + "Insert": 1, + "RRD": 3, + "calling": 1, + "may": 4, + "several": 1, + "archive": 9, + "rrdarchive_filename": 3, + "Create": 1, + "Archive": 1, + "according": 1, + "rrdarchive_filename.": 3, + "rrdtool_cmdline.": 1, + "Check": 1, + "wheter": 1, + "Assemle": 1, + "result": 3, + "Read": 1, + "CONFIG": 2, + "line_counter": 2, + "": 1, + "@args": 11, + "shellwords": 1, + "orig_confline": 1, + "args": 37, + "uc": 1, + "INSERTVALUE": 1, + "rrd_filename": 2, + "rrdcreatetemplate": 4, + "hostname_regex": 4, + "servicedescr_regex": 4, + "regex_template": 3, + "verify": 3, + "hostname": 2, + "service": 1, + "description": 2, + "s*": 1, + "#/": 1, + "comment": 1, + "row": 1, + "nuthin": 1, + "RRDToolPath": 1, + "PlotTemplate": 1, + "htmltemplate": 2, + "parameters..": 2, + "@params": 7, + "GraphTimeTemplate": 1, + "time_template": 2, + "@t_descr": 2, + "workaround": 1, + "string": 6, + "RRDCreateTemplate": 1, + "ValueRegexTemplate": 1, + "template_name": 3, + "@regexes": 2, + "perfdata": 1, + "regex_what": 2, + "dsa_name": 2, + "RRDARCHIVEPATH": 1, + "HTMLTemplatePath": 1, + "GraphIndexTemplate": 1, + "GRAPH": 1, + "rrdfilename": 1, + "graphtimetemplate": 1, + "plottemplate": 1, + "Write": 1, + "output/logging": 1, + "level": 3, + "timestamp": 1, + "msg.": 2, "SHEBANG#!#! perl": 4, "examples/benchmarks/fib.pl": 1, "Fibonacci": 2, @@ -52232,7 +52463,6 @@ "SEE": 4, "ALSO": 4, "": 1, - "SHEBANG#!perl": 5, "MAIN": 1, "main": 3, "env_is_usable": 3, @@ -52251,9 +52481,7 @@ "Resource": 5, "file_matching": 2, "check_regex": 2, - "like": 13, "finder": 1, - "options": 7, "FILE...": 1, "DIRECTORY...": 1, "designed": 1, @@ -52270,7 +52498,6 @@ "By": 2, "prints": 2, "also": 7, - "would": 5, "actually": 1, "let": 1, "take": 5, @@ -52284,7 +52511,6 @@ "symlinks": 1, "than": 5, "whatever": 1, - "were": 1, "specified": 3, "line.": 4, "default.": 2, @@ -52312,7 +52538,6 @@ "groups": 1, "with.": 1, "interactively.": 1, - "result": 1, "per": 1, "grep.": 2, "redirected.": 1, @@ -52326,14 +52551,12 @@ "searched.": 1, "<--help>": 1, "short": 1, - "help": 2, "statement.": 1, "<--ignore-case>": 1, "Ignore": 3, "case": 3, "strings.": 1, "applies": 3, - "regexes": 3, "<-g>": 5, "<-G>": 3, "options.": 4, @@ -52343,7 +52566,6 @@ "directories.": 2, "mason": 1, "users": 4, - "may": 3, "wish": 1, "include": 1, "<--ignore-dir=data>": 1, @@ -52390,7 +52612,6 @@ "": 2, "equivalent": 2, "specifying": 1, - "Specify": 1, "explicitly.": 1, "helpful": 2, "don": 2, @@ -52469,7 +52690,6 @@ "associates": 1, "Works": 1, "<--thpppt>": 1, - "Display": 1, "important": 1, "Bill": 1, "Cat": 1, @@ -52480,12 +52700,11 @@ "<--thpppppt>": 1, "important.": 1, "make": 3, - "perl": 8, + "perl": 9, "php": 2, "python": 1, "looks": 2, "location.": 1, - "variable": 1, "specifies": 1, "placed": 1, "front": 1, @@ -52539,7 +52758,6 @@ "both": 1, "understands": 1, "sequences.": 1, - "never": 1, "back": 4, "ACK": 2, "OTHER": 1, @@ -52564,7 +52782,6 @@ "Jackson": 1, "put": 1, "together": 2, - "an": 16, "": 1, "extension": 1, "": 1, @@ -52577,11 +52794,9 @@ "Code": 1, "greater": 1, "normal": 1, - "code": 8, "<$?=256>": 1, "": 1, "backticks.": 1, - "errors": 1, "used.": 1, "at": 4, "least": 1, @@ -52602,10 +52817,7 @@ "too.": 1, "there.": 1, "working": 1, - "big": 1, "codesets": 1, - "more": 2, - "create": 3, "tree": 2, "ideal": 1, "sending": 1, @@ -52624,7 +52836,6 @@ "": 1, "took": 1, "access": 2, - "log": 3, "scanned": 1, "twice.": 1, "aa.bb.cc.dd": 1, @@ -52670,7 +52881,6 @@ "metadata": 1, "wastes": 1, "lot": 1, - "time": 3, "those": 2, "well": 2, "returning": 1, @@ -52683,7 +52893,6 @@ "has": 3, "perfectly": 1, "good": 2, - "way": 2, "using": 5, "<-p>": 1, "<-n>": 1, @@ -52699,7 +52908,6 @@ "<.xyz>": 1, "already": 2, "program/package": 1, - "called": 4, "ack.": 2, "Yes": 1, "know.": 1, @@ -52799,7 +53007,6 @@ "seek": 4, "readline": 1, "nexted": 3, - "CGI": 6, "Fast": 3, "XML": 2, "Hash": 11, @@ -52819,21 +53026,18 @@ "Request": 11, "*STDERR": 1, "int": 2, - "ARGV": 2, "conv": 2, "use_attr": 1, "indent": 1, "xml_decl": 1, "tmpl_path": 2, "tmpl": 5, - "data": 3, "nick": 1, "parent": 5, "third_party": 1, "artist_name": 2, "venue": 2, "event": 2, - "date": 2, "zA": 1, "Z0": 1, "Content": 2, @@ -52855,7 +53059,6 @@ "": 3, "specification": 3, "interface": 1, - "web": 8, "servers": 2, "based": 2, "applications": 2, @@ -52863,7 +53066,6 @@ "supports": 1, "writing": 1, "portable": 1, - "run": 1, "various": 2, "methods": 4, "standalone": 1, @@ -52887,7 +53089,6 @@ "": 1, "root": 1, "application.": 1, - "write": 2, "own": 4, ".psgi": 7, "Writing": 2, @@ -52921,7 +53122,6 @@ "setting": 2, "wrapped": 1, "": 1, - "some": 1, "engine": 1, "fixes": 1, "uniform": 1, @@ -52933,7 +53133,6 @@ "override": 1, "providing": 2, "none": 1, - "call": 2, "MyApp": 1, "Thus": 1, "functionality": 1, @@ -52954,7 +53153,6 @@ "Catalyst.pm": 1, "library": 2, "software.": 1, - "same": 2, "Plack": 25, "_001": 1, "HTTP": 16, @@ -53022,13 +53220,11 @@ "query": 4, "flatten": 3, "uploads": 5, - "hostname": 1, "url_scheme": 1, "params": 1, "query_params": 1, "body_params": 1, "cookie": 6, - "param": 8, "get_all": 2, "upload": 13, "raw_uri": 1, @@ -53084,7 +53280,6 @@ "": 1, "provide": 1, "higher": 1, - "level": 1, "top": 1, "PSGI.": 1, "METHODS": 2, @@ -53098,9 +53293,7 @@ "noted": 1, "": 1, "passing": 1, - "values": 5, "accessor": 1, - "debug": 1, "set.": 1, "": 2, "request.": 1, @@ -53128,7 +53321,6 @@ "allow": 1, "modifying": 1, "@values": 1, - "@params": 1, "convenient": 1, "@fields": 1, "Creates": 2, @@ -53155,7 +53347,6 @@ "scalars": 1, "references": 1, "ARRAY": 1, - "parse": 1, "twice": 1, "efficiency.": 1, "DISPATCHING": 1, @@ -53167,7 +53358,6 @@ "": 1, "virtual": 1, "regardless": 1, - "how": 1, "mounted.": 1, "hosted": 1, "scripts": 1, @@ -53178,7 +53368,6 @@ "subclass": 1, "define": 1, "uri_for": 2, - "args": 3, "So": 1, "say": 1, "link": 1, @@ -53190,7 +53379,6 @@ "Cookie": 2, "handling": 1, "simplified": 1, - "string": 5, "encoding": 2, "decoding": 1, "totally": 1, @@ -53217,7 +53405,6 @@ "Accessor": 1, "status": 17, "Scalar": 2, - "location": 4, "redirect": 1, "url": 2, "clone": 1, @@ -53230,7 +53417,6 @@ "//g": 1, "CR": 1, "LF": 1, - "since": 1, "char": 1, "invalid": 1, "header_field_names": 1, @@ -53301,7 +53487,6 @@ "responsible": 1, "properly": 1, "": 1, - "names": 1, "their": 1, "corresponding": 1, "": 2, @@ -53318,7 +53503,11 @@ "formats": 1, "<+3M>": 1, "reference.": 1, - "AUTHOR": 1 + "AUTHOR": 1, + "Test": 2, + "Base": 1, + "__DATA__": 1, + "Strict": 1 }, "Perl6": { "token": 6, @@ -70281,7 +70470,7 @@ "Parrot Assembly": 6, "Parrot Internal Representation": 5, "Pascal": 30, - "Perl": 17979, + "Perl": 20690, "Perl6": 372, "Pike": 1835, "Pod": 658, @@ -70483,7 +70672,7 @@ "Parrot Assembly": 1, "Parrot Internal Representation": 1, "Pascal": 1, - "Perl": 15, + "Perl": 17, "Perl6": 3, "Pike": 2, "Pod": 1, @@ -70557,5 +70746,5 @@ "fish": 3, "wisp": 1 }, - "md5": "87af2c0165a9c7fcb5f88e73d26b3c20" + "md5": "d971d6864a8d0015426cdbe759c98969" } \ No newline at end of file From f5723dcccffdd3bb78eae79c2724e6b15c21e15e Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Wed, 13 Aug 2014 15:48:12 -0700 Subject: [PATCH 210/268] Samples --- lib/linguist/samples.json | 55 ++++++++++++++++++++++++++++++++++++--- 1 file changed, 52 insertions(+), 3 deletions(-) diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index 7da2a415..0cb5f3ac 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -322,6 +322,9 @@ "Logtalk": [ ".lgt" ], + "LookML": [ + ".lookml" + ], "Lua": [ ".pd_lua" ], @@ -810,8 +813,8 @@ "exception.zep.php" ] }, - "tokens_total": 644723, - "languages_total": 881, + "tokens_total": 644822, + "languages_total": 882, "tokens": { "ABAP": { "*/**": 1, @@ -36980,6 +36983,50 @@ "write": 1, "end_object.": 1 }, + "LookML": { + "-": 12, + "view": 1, + "comments": 1, + "fields": 1, + "dimension": 4, + "id": 2, + "primary_key": 1, + "true": 3, + "type": 6, + "int": 3, + "sql": 6, + "{": 6, + "TABLE": 6, + "}": 6, + ".id": 1, + "body": 1, + ".body": 1, + "dimension_group": 2, + "created": 1, + "time": 4, + "timeframes": 2, + "[": 2, + "date": 2, + "week": 2, + "month": 2, + "]": 2, + ".created_at": 1, + "headline_id": 1, + "hidden": 2, + ".headline_id": 1, + "updated": 1, + ".updated_at": 1, + "user_id": 1, + ".user_id": 1, + "measure": 1, + "count": 2, + "detail": 2, + "detail*": 1, + "sets": 1, + "headlines.id": 1, + "headlines.name": 1, + "users.id": 1 + }, "Lua": { "-": 60, "A": 1, @@ -71228,6 +71275,7 @@ "LiveScript": 123, "Logos": 93, "Logtalk": 36, + "LookML": 99, "Lua": 724, "M": 23615, "MTML": 93, @@ -71431,6 +71479,7 @@ "LiveScript": 1, "Logos": 1, "Logtalk": 1, + "LookML": 1, "Lua": 3, "M": 29, "MTML": 1, @@ -71543,5 +71592,5 @@ "fish": 3, "wisp": 1 }, - "md5": "aa575c1bfc22b599f29c4d570b6c747d" + "md5": "c0578d3ebf3d2a7af99eb8ba9e32d209" } \ No newline at end of file From dea03b7a46312ae1245d4c892a37d3783dd261a4 Mon Sep 17 00:00:00 2001 From: Paul Chaignon Date: Thu, 14 Aug 2014 08:43:39 +0200 Subject: [PATCH 211/268] Improve vendor regex for third party folders --- lib/linguist/vendor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/vendor.yml b/lib/linguist/vendor.yml index 78e3d6a2..d93a8a89 100644 --- a/lib/linguist/vendor.yml +++ b/lib/linguist/vendor.yml @@ -48,7 +48,7 @@ - animate.min.css # Vendored dependencies -- thirdparty/ +- third[-_]?party/ - vendors?/ - extern(al)?/ From a8d387200255572236ccd3597fedd4d9e4d5cf9b Mon Sep 17 00:00:00 2001 From: Paul Chaignon Date: Thu, 14 Aug 2014 08:45:17 +0200 Subject: [PATCH 212/268] Add 3rdparty as third party folder --- lib/linguist/vendor.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/linguist/vendor.yml b/lib/linguist/vendor.yml index d93a8a89..541272b0 100644 --- a/lib/linguist/vendor.yml +++ b/lib/linguist/vendor.yml @@ -49,6 +49,7 @@ # Vendored dependencies - third[-_]?party/ +- 3rd[-_]?party/ - vendors?/ - extern(al)?/ From 8ff7eaf89352b02c17801f9b79a1cc7578419c6f Mon Sep 17 00:00:00 2001 From: maieul Date: Thu, 14 Aug 2014 12:13:41 +0200 Subject: [PATCH 213/268] example for bbx,cbx,lbx file (extracted from http://github.com/plk/biblatex) --- samples/TeX/authortitle.cbx | 119 ++++++++ samples/TeX/english.lbx | 554 ++++++++++++++++++++++++++++++++++++ samples/TeX/verbose.bbx | 6 + 3 files changed, 679 insertions(+) create mode 100644 samples/TeX/authortitle.cbx create mode 100644 samples/TeX/english.lbx create mode 100644 samples/TeX/verbose.bbx diff --git a/samples/TeX/authortitle.cbx b/samples/TeX/authortitle.cbx new file mode 100644 index 00000000..0ba18e87 --- /dev/null +++ b/samples/TeX/authortitle.cbx @@ -0,0 +1,119 @@ +\ProvidesFile{authortitle.cbx} +[\abx@cbxid] + +\ExecuteBibliographyOptions{uniquename,uniquelist,autocite=footnote} + +\renewcommand*{\iffinalcitedelim}{\iflastcitekey} + +\newbool{cbx:parens} + +\newbibmacro*{cite}{% + \iffieldundef{shorthand} + {\ifnameundef{labelname} + {} + {\printnames{labelname}% + \setunit{\nametitledelim}}% + \usebibmacro{cite:title}}% + {\usebibmacro{cite:shorthand}}} + +\newbibmacro*{citetitle}{% + \iffieldundef{shorthand} + {\usebibmacro{cite:title}}% + {\usebibmacro{cite:shorthand}}} + +\newbibmacro*{textcite}{% + \ifnameundef{labelname} + {} + {\printnames{labelname}% + \setunit{% + \global\booltrue{cbx:parens}% + \addspace\bibopenparen}}% + \ifnumequal{\value{citecount}}{1} + {\usebibmacro{prenote}} + {}% + \iffieldundef{shorthand} + {\usebibmacro{cite:title}}% + {\usebibmacro{cite:shorthand}}} + +\newbibmacro*{cite:title}{% + \printtext[bibhyperref]{% + \printfield[citetitle]{labeltitle}}} + +\newbibmacro*{cite:shorthand}{% + \printtext[bibhyperref]{\printfield{shorthand}}} + +\newbibmacro*{textcite:postnote}{% + \iffieldundef{postnote} + {\ifbool{cbx:parens} + {\bibcloseparen} + {}} + {\ifbool{cbx:parens} + {\postnotedelim} + {\addspace\bibopenparen}% + \printfield{postnote}\bibcloseparen}} + +\DeclareCiteCommand{\cite} + {\usebibmacro{prenote}} + {\usebibmacro{citeindex}% + \usebibmacro{cite}} + {\multicitedelim} + {\usebibmacro{postnote}} + +\DeclareCiteCommand*{\cite} + {\usebibmacro{prenote}} + {\usebibmacro{citeindex}% + \usebibmacro{citetitle}} + {\multicitedelim} + {\usebibmacro{postnote}} + +\DeclareCiteCommand{\parencite}[\mkbibparens] + {\usebibmacro{prenote}} + {\usebibmacro{citeindex}% + \usebibmacro{cite}} + {\multicitedelim} + {\usebibmacro{postnote}} + +\DeclareCiteCommand*{\parencite}[\mkbibparens] + {\usebibmacro{prenote}} + {\usebibmacro{citeindex}% + \usebibmacro{citetitle}} + {\multicitedelim} + {\usebibmacro{postnote}} + +\DeclareCiteCommand{\footcite}[\mkbibfootnote] + {\usebibmacro{prenote}} + {\usebibmacro{citeindex}% + \usebibmacro{cite}} + {\multicitedelim} + {\usebibmacro{postnote}} + +\DeclareCiteCommand{\footcitetext}[\mkbibfootnotetext] + {\usebibmacro{prenote}} + {\usebibmacro{citeindex}% + \usebibmacro{cite}} + {\multicitedelim} + {\usebibmacro{postnote}} + +\DeclareCiteCommand{\smartcite}[\iffootnote\mkbibparens\mkbibfootnote] + {\usebibmacro{prenote}} + {\usebibmacro{citeindex}% + \usebibmacro{cite}} + {\multicitedelim} + {\usebibmacro{postnote}} + +\DeclareCiteCommand{\textcite} + {\boolfalse{cbx:parens}} + {\usebibmacro{citeindex}% + \iffirstcitekey + {\setcounter{textcitetotal}{1}} + {\stepcounter{textcitetotal}% + \textcitedelim}% + \usebibmacro{textcite}} + {\ifbool{cbx:parens} + {\bibcloseparen\global\boolfalse{cbx:parens}} + {}} + {\usebibmacro{textcite:postnote}} + +\DeclareMultiCiteCommand{\textcites}{\textcite}{} + +\endinput diff --git a/samples/TeX/english.lbx b/samples/TeX/english.lbx new file mode 100644 index 00000000..754cc293 --- /dev/null +++ b/samples/TeX/english.lbx @@ -0,0 +1,554 @@ +\ProvidesFile{english.lbx} +[\abx@lbxid] + +\DeclareRedundantLanguages{english,american}{english,american,british, +canadian,australian,newzealand,USenglish,UKenglish} + +\DeclareBibliographyExtras{% + \protected\def\bibrangedash{% + \textendash\penalty\hyphenpenalty}% breakable dash + \protected\def\bibdatedash{\bibrangedash}% + \def\finalandcomma{\addcomma}% + \def\finalandsemicolon{\addsemicolon}% + \protected\def\mkbibordinal#1{% + \begingroup + \@tempcnta0#1\relax\number\@tempcnta + \@whilenum\@tempcnta>100\do{\advance\@tempcnta-100\relax}% + \ifnum\@tempcnta>20 + \@whilenum\@tempcnta>9\do{\advance\@tempcnta-10\relax}% + \fi + \ifcase\@tempcnta th\or st\or nd\or rd\else th\fi + \endgroup}% + \protected\def\mkbibmascord{\mkbibordinal}% + \protected\def\mkbibfemord{\mkbibordinal}% + \protected\def\mkbibneutord{\mkbibordinal}% + \protected\def\mkbibdatelong#1#2#3{% + \iffieldundef{#2} + {} + {\mkbibmonth{\thefield{#2}}% + \iffieldundef{#3} + {\iffieldundef{#1}{}{\space}} + {\nobreakspace}}% + \iffieldundef{#3} + {} + {\stripzeros{\thefield{#3}}% + \iffieldundef{#1}{}{,\space}}% + \iffieldbibstring{#1} + {\bibstring{\thefield{#1}}} + {\stripzeros{\thefield{#1}}}}% + \protected\def\mkbibdateshort#1#2#3{% + \iffieldundef{#2} + {} + {\mkdatezeros{\thefield{#2}}% + \iffieldundef{#3} + {\iffieldundef{#1}{}{/}} + {/}}% + \iffieldundef{#3} + {} + {\mkdatezeros{\thefield{#3}}% + \iffieldundef{#1}{}{/}}% + \iffieldbibstring{#1} + {\bibstring{\thefield{#1}}} + {\mkdatezeros{\thefield{#1}}}}% + \savecommand\mkbibrangecomp + \savecommand\mkbibrangecompextra + \savecommand\mkbibrangeterse + \savecommand\mkbibrangeterseextra + \protected\def\mkbibrangecomp{% + \lbx@us@mkbibrangetrunc@long{long}}% + \protected\def\mkbibrangeterse{% + \lbx@us@mkbibrangetrunc@short{short}}% + \protected\def\mkbibrangecompextra{% + \lbx@us@mkbibrangetruncextra@long{long}}% + \protected\def\mkbibrangeterseextra{% + \lbx@us@mkbibrangetruncextra@short{short}}% +} + +\UndeclareBibliographyExtras{% + \restorecommand\mkbibrangecomp + \restorecommand\mkbibrangecompextra + \restorecommand\mkbibrangeterse + \restorecommand\mkbibrangeterseextra +} + +\DeclareBibliographyStrings{% + bibliography = {{Bibliography}{Bibliography}}, + references = {{References}{References}}, + shorthands = {{List of Abbreviations}{Abbreviations}}, + editor = {{editor}{ed\adddot}}, + editors = {{editors}{eds\adddot}}, + compiler = {{compiler}{comp\adddot}}, + compilers = {{compilers}{comp\adddot}}, + redactor = {{redactor}{red\adddot}}, + redactors = {{redactors}{red\adddot}}, + reviser = {{reviser}{rev\adddot}}, + revisers = {{revisers}{rev\adddot}}, + founder = {{founder}{found\adddot}}, + founders = {{founders}{found\adddot}}, + continuator = {{continued}{cont\adddot}},% FIXME: unsure + continuators = {{continued}{cont\adddot}},% FIXME: unsure + collaborator = {{collaborator}{collab\adddot}},% FIXME: unsure + collaborators = {{collaborators}{collab\adddot}},% FIXME: unsure + translator = {{translator}{trans\adddot}}, + translators = {{translators}{trans\adddot}}, + commentator = {{commentator}{comm\adddot}}, + commentators = {{commentators}{comm\adddot}}, + annotator = {{annotator}{annot\adddot}}, + annotators = {{annotators}{annot\adddot}}, + commentary = {{commentary}{comm\adddot}}, + annotations = {{annotations}{annot\adddot}}, + introduction = {{introduction}{intro\adddot}}, + foreword = {{foreword}{forew\adddot}}, + afterword = {{afterword}{afterw\adddot}}, + editortr = {{editor and translator}% + {ed\adddotspace and trans\adddot}}, + editorstr = {{editors and translators}% + {eds\adddotspace and trans\adddot}}, + editorco = {{editor and commentator}% + {ed\adddotspace and comm\adddot}}, + editorsco = {{editors and commentators}% + {eds\adddotspace and comm\adddot}}, + editoran = {{editor and annotator}% + {ed\adddotspace and annot\adddot}}, + editorsan = {{editors and annotators}% + {eds\adddotspace and annot\adddot}}, + editorin = {{editor and introduction}% + {ed\adddotspace and introd\adddot}}, + editorsin = {{editors and introduction}% + {eds\adddotspace and introd\adddot}}, + editorfo = {{editor and foreword}% + {ed\adddotspace and forew\adddot}}, + editorsfo = {{editors and foreword}% + {eds\adddotspace and forew\adddot}}, + editoraf = {{editor and afterword}% + {ed\adddotspace and afterw\adddot}}, + editorsaf = {{editors and afterword}% + {eds\adddotspace and afterw\adddot}}, + editortrco = {{editor, translator\finalandcomma\ and commentator}% + {ed.,\addabbrvspace trans\adddot\finalandcomma\ and comm\adddot}}, + editorstrco = {{editors, translators\finalandcomma\ and commentators}% + {eds.,\addabbrvspace trans\adddot\finalandcomma\ and comm\adddot}}, + editortran = {{editor, translator\finalandcomma\ and annotator}% + {ed.,\addabbrvspace trans\adddot\finalandcomma\ and annot\adddot}}, + editorstran = {{editors, translators\finalandcomma\ and annotators}% + {eds.,\addabbrvspace trans\adddot\finalandcomma\ and annot\adddot}}, + editortrin = {{editor, translator\finalandcomma\ and introduction}% + {ed.,\addabbrvspace trans\adddot\finalandcomma\ and introd\adddot}}, + editorstrin = {{editors, translators\finalandcomma\ and introduction}% + {eds.,\addabbrvspace trans\adddot\finalandcomma\ and introd\adddot}}, + editortrfo = {{editor, translator\finalandcomma\ and foreword}% + {ed.,\addabbrvspace trans\adddot\finalandcomma\ and forew\adddot}}, + editorstrfo = {{editors, translators\finalandcomma\ and foreword}% + {eds.,\addabbrvspace trans\adddot\finalandcomma\ and forew\adddot}}, + editortraf = {{editor, translator\finalandcomma\ and afterword}% + {ed.,\addabbrvspace trans\adddot\finalandcomma\ and afterw\adddot}}, + editorstraf = {{editors, translators\finalandcomma\ and afterword}% + {eds.,\addabbrvspace trans\adddot\finalandcomma\ and afterw\adddot}}, + editorcoin = {{editor, commentator\finalandcomma\ and introduction}% + {ed.,\addabbrvspace comm\adddot\finalandcomma\ and introd\adddot}}, + editorscoin = {{editors, commentators\finalandcomma\ and introduction}% + {eds.,\addabbrvspace comm\adddot\finalandcomma\ and introd\adddot}}, + editorcofo = {{editor, commentator\finalandcomma\ and foreword}% + {ed.,\addabbrvspace comm\adddot\finalandcomma\ and forew\adddot}}, + editorscofo = {{editors, commentators\finalandcomma\ and foreword}% + {eds.,\addabbrvspace comm\adddot\finalandcomma\ and forew\adddot}}, + editorcoaf = {{editor, commentator\finalandcomma\ and afterword}% + {ed.,\addabbrvspace comm\adddot\finalandcomma\ and afterw\adddot}}, + editorscoaf = {{editors, commentators\finalandcomma\ and afterword}% + {eds.,\addabbrvspace comm\adddot\finalandcomma\ and afterw\adddot}}, + editoranin = {{editor, annotator\finalandcomma\ and introduction}% + {ed.,\addabbrvspace annot\adddot\finalandcomma\ and introd\adddot}}, + editorsanin = {{editors, annotators\finalandcomma\ and introduction}% + {eds.,\addabbrvspace annot\adddot\finalandcomma\ and introd\adddot}}, + editoranfo = {{editor, annotator\finalandcomma\ and foreword}% + {ed.,\addabbrvspace annot\adddot\finalandcomma\ and forew\adddot}}, + editorsanfo = {{editors, annotators\finalandcomma\ and foreword}% + {eds.,\addabbrvspace annot\adddot\finalandcomma\ and forew\adddot}}, + editoranaf = {{editor, annotator\finalandcomma\ and afterword}% + {ed.,\addabbrvspace annot\adddot\finalandcomma\ and afterw\adddot}}, + editorsanaf = {{editors, annotators\finalandcomma\ and afterword}% + {eds.,\addabbrvspace annot\adddot\finalandcomma\ and afterw\adddot}}, + editortrcoin = {{editor, translator, commentator\finalandcomma\ and introduction}% + {ed.,\addabbrvspace trans., comm\adddot\finalandcomma\ and introd\adddot}}, + editorstrcoin = {{editors, translators, commentators\finalandcomma\ and introduction}% + {eds.,\addabbrvspace trans., comm\adddot\finalandcomma\ and introd\adddot}}, + editortrcofo = {{editor, translator, commentator\finalandcomma\ and foreword}% + {ed.,\addabbrvspace trans., comm\adddot\finalandcomma\ and forew\adddot}}, + editorstrcofo = {{editors, translators, commentators\finalandcomma\ and foreword}% + {eds.,\addabbrvspace trans., comm\adddot\finalandcomma\ and forew\adddot}}, + editortrcoaf = {{editor, translator, commentator\finalandcomma\ and afterword}% + {ed.,\addabbrvspace trans., comm\adddot\finalandcomma\ and afterw\adddot}}, + editorstrcoaf = {{editors, translators, commentators\finalandcomma\ and afterword}% + {eds.,\addabbrvspace trans., comm\adddot\finalandcomma\ and afterw\adddot}}, + editortranin = {{editor, translator, annotator\finalandcomma\ and introduction}% + {ed.,\addabbrvspace trans., annot\adddot\finalandcomma\ and introd\adddot}}, + editorstranin = {{editors, translators, annotators\finalandcomma\ and introduction}% + {eds.,\addabbrvspace trans., annot\adddot\finalandcomma\ and introd\adddot}}, + editortranfo = {{editor, translator, annotator\finalandcomma\ and foreword}% + {ed.,\addabbrvspace trans., annot\adddot\finalandcomma\ and forew\adddot}}, + editorstranfo = {{editors, translators, annotators\finalandcomma\ and foreword}% + {eds.,\addabbrvspace trans., annot\adddot\finalandcomma\ and forew\adddot}}, + editortranaf = {{editor, translator, annotator\finalandcomma\ and afterword}% + {ed.,\addabbrvspace trans., annot\adddot\finalandcomma\ and afterw\adddot}}, + editorstranaf = {{editors, translators, annotators\finalandcomma\ and afterword}% + {eds.,\addabbrvspace trans., annot\adddot\finalandcomma\ and afterw\adddot}}, + translatorco = {{translator and commentator}% + {trans\adddot\ and comm\adddot}}, + translatorsco = {{translators and commentators}% + {trans\adddot\ and comm\adddot}}, + translatoran = {{translator and annotator}% + {trans\adddot\ and annot\adddot}}, + translatorsan = {{translators and annotators}% + {trans\adddot\ and annot\adddot}}, + translatorin = {{translation and introduction}% + {trans\adddot\ and introd\adddot}}, + translatorsin = {{translation and introduction}% + {trans\adddot\ and introd\adddot}}, + translatorfo = {{translation and foreword}% + {trans\adddot\ and forew\adddot}}, + translatorsfo = {{translation and foreword}% + {trans\adddot\ and forew\adddot}}, + translatoraf = {{translation and afterword}% + {trans\adddot\ and afterw\adddot}}, + translatorsaf = {{translation and afterword}% + {trans\adddot\ and afterw\adddot}}, + translatorcoin = {{translation, commentary\finalandcomma\ and introduction}% + {trans., comm\adddot\finalandcomma\ and introd\adddot}}, + translatorscoin = {{translation, commentary\finalandcomma\ and introduction}% + {trans., comm\adddot\finalandcomma\ and introd\adddot}}, + translatorcofo = {{translation, commentary\finalandcomma\ and foreword}% + {trans., comm\adddot\finalandcomma\ and forew\adddot}}, + translatorscofo = {{translation, commentary\finalandcomma\ and foreword}% + {trans., comm\adddot\finalandcomma\ and forew\adddot}}, + translatorcoaf = {{translation, commentary\finalandcomma\ and afterword}% + {trans., comm\adddot\finalandcomma\ and afterw\adddot}}, + translatorscoaf = {{translation, commentary\finalandcomma\ and afterword}% + {trans., comm\adddot\finalandcomma\ and afterw\adddot}}, + translatoranin = {{translation, annotations\finalandcomma\ and introduction}% + {trans., annot\adddot\finalandcomma\ and introd\adddot}}, + translatorsanin = {{translation, annotations\finalandcomma\ and introduction}% + {trans., annot\adddot\finalandcomma\ and introd\adddot}}, + translatoranfo = {{translation, annotations\finalandcomma\ and foreword}% + {trans., annot\adddot\finalandcomma\ and forew\adddot}}, + translatorsanfo = {{translation, annotations\finalandcomma\ and foreword}% + {trans., annot\adddot\finalandcomma\ and forew\adddot}}, + translatoranaf = {{translation, annotations\finalandcomma\ and afterword}% + {trans., annot\adddot\finalandcomma\ and afterw\adddot}}, + translatorsanaf = {{translation, annotations\finalandcomma\ and afterword}% + {trans., annot\adddot\finalandcomma\ and afterw\adddot}}, + byauthor = {{by}{by}}, + byeditor = {{edited by}{ed\adddotspace by}}, + bycompiler = {{compiled by}{comp\adddotspace by}}, + byredactor = {{redacted by}{red\adddotspace by}}, + byreviser = {{revised by}{rev\adddotspace by}}, + byreviewer = {{reviewed by}{rev\adddotspace by}}, + byfounder = {{founded by}{found\adddotspace by}}, + bycontinuator = {{continued by}{cont\adddotspace by}}, + bycollaborator = {{in collaboration with}{in collab\adddotspace with}},% FIXME: unsure + bytranslator = {{translated \lbx@lfromlang\ by}{trans\adddot\ \lbx@sfromlang\ by}}, + bycommentator = {{commented by}{comm\adddot\ by}}, + byannotator = {{annotated by}{annot\adddot\ by}}, + withcommentator = {{with a commentary by}{with a comment\adddot\ by}}, + withannotator = {{with annotations by}{with annots\adddot\ by}}, + withintroduction = {{with an introduction by}{with an intro\adddot\ by}}, + withforeword = {{with a foreword by}{with a forew\adddot\ by}}, + withafterword = {{with an afterword by}{with an afterw\adddot\ by}}, + byeditortr = {{edited and translated \lbx@lfromlang\ by}% + {ed\adddotspace and trans\adddot\ \lbx@sfromlang\ by}}, + byeditorco = {{edited and commented by}% + {ed\adddotspace and comm\adddot\ by}}, + byeditoran = {{edited and annotated by}% + {ed\adddotspace and annot\adddot\ by}}, + byeditorin = {{edited, with an introduction, by}% + {ed.,\addabbrvspace with an introd., by}}, + byeditorfo = {{edited, with a foreword, by}% + {ed.,\addabbrvspace with a forew., by}}, + byeditoraf = {{edited, with an afterword, by}% + {ed.,\addabbrvspace with an afterw., by}}, + byeditortrco = {{edited, translated \lbx@lfromlang\finalandcomma\ and commented by}% + {ed.,\addabbrvspace trans\adddot\ \lbx@sfromlang\finalandcomma\ and comm\adddot\ by}}, + byeditortran = {{edited, translated \lbx@lfromlang\finalandcomma\ and annotated by}% + {ed.,\addabbrvspace trans\adddot\ \lbx@sfromlang\finalandcomma\ and annot\adddot\ by}}, + byeditortrin = {{edited and translated \lbx@lfromlang, with an introduction, by}% + {ed\adddotspace and trans\adddot\ \lbx@sfromlang, with an introd., by}}, + byeditortrfo = {{edited and translated \lbx@lfromlang, with a foreword, by}% + {ed\adddotspace and trans\adddot\ \lbx@sfromlang, with a forew., by}}, + byeditortraf = {{edited and translated \lbx@lfromlang, with an afterword, by}% + {ed\adddotspace and trans\adddot\ \lbx@sfromlang, with an afterw., by}}, + byeditorcoin = {{edited and commented, with an introduction, by}% + {ed\adddotspace and comm., with an introd., by}}, + byeditorcofo = {{edited and commented, with a foreword, by}% + {ed\adddotspace and comm., with a forew., by}}, + byeditorcoaf = {{edited and commented, with an afterword, by}% + {ed\adddotspace and comm., with an afterw., by}}, + byeditoranin = {{edited and annotated, with an introduction, by}% + {ed\adddotspace and annot., with an introd., by}}, + byeditoranfo = {{edited and annotated, with a foreword, by}% + {ed\adddotspace and annot., with a forew., by}}, + byeditoranaf = {{edited and annotated, with an afterword, by}% + {ed\adddotspace and annot., with an afterw., by}}, + byeditortrcoin = {{edited, translated \lbx@lfromlang\finalandcomma\ and commented, with an introduction, by}% + {ed.,\addabbrvspace trans\adddot\ \lbx@sfromlang\finalandcomma\ and comm., with an introd., by}}, + byeditortrcofo = {{edited, translated \lbx@lfromlang\finalandcomma\ and commented, with a foreword, by}% + {ed.,\addabbrvspace trans\adddot\ \lbx@sfromlang\finalandcomma\ and comm., with a forew., by}}, + byeditortrcoaf = {{edited, translated \lbx@lfromlang\finalandcomma\ and commented, with an afterword, by}% + {ed.,\addabbrvspace trans\adddot\ \lbx@sfromlang\finalandcomma\ and comm., with an afterw., by}}, + byeditortranin = {{edited, translated \lbx@lfromlang\finalandcomma\ and annotated, with an introduction, by}% + {ed.,\addabbrvspace trans\adddot\ \lbx@sfromlang\finalandcomma\ and annot, with an introd., by}}, + byeditortranfo = {{edited, translated \lbx@lfromlang\finalandcomma\ and annotated, with a foreword, by}% + {ed.,\addabbrvspace trans\adddot\ \lbx@sfromlang\finalandcomma\ and annot, with a forew., by}}, + byeditortranaf = {{edited, translated \lbx@lfromlang\finalandcomma\ and annotated, with an afterword, by}% + {ed.,\addabbrvspace trans\adddot\ \lbx@sfromlang\finalandcomma\ and annot, with an afterw., by}}, + bytranslatorco = {{translated \lbx@lfromlang\ and commented by}% + {trans\adddot\ \lbx@sfromlang\ and comm\adddot\ by}}, + bytranslatoran = {{translated \lbx@lfromlang\ and annotated by}% + {trans\adddot\ \lbx@sfromlang\ and annot\adddot\ by}}, + bytranslatorin = {{translated \lbx@lfromlang, with an introduction, by}% + {trans\adddot\ \lbx@sfromlang, with an introd., by}}, + bytranslatorfo = {{translated \lbx@lfromlang, with a foreword, by}% + {trans\adddot\ \lbx@sfromlang, with a forew., by}}, + bytranslatoraf = {{translated \lbx@lfromlang, with an afterword, by}% + {trans\adddot\ \lbx@sfromlang, with an afterw., by}}, + bytranslatorcoin = {{translated \lbx@lfromlang\ and commented, with an introduction, by}% + {trans\adddot\ \lbx@sfromlang\ and comm., with an introd., by}}, + bytranslatorcofo = {{translated \lbx@lfromlang\ and commented, with a foreword, by}% + {trans\adddot\ \lbx@sfromlang\ and comm., with a forew., by}}, + bytranslatorcoaf = {{translated \lbx@lfromlang\ and commented, with an afterword, by}% + {trans\adddot\ \lbx@sfromlang\ and comm., with an afterw., by}}, + bytranslatoranin = {{translated \lbx@lfromlang\ and annotated, with an introduction, by}% + {trans\adddot\ \lbx@sfromlang\ and annot., with an introd., by}}, + bytranslatoranfo = {{translated \lbx@lfromlang\ and annotated, with a foreword, by}% + {trans\adddot\ \lbx@sfromlang\ and annot., with a forew., by}}, + bytranslatoranaf = {{translated \lbx@lfromlang\ and annotated, with an afterword, by}% + {trans\adddot\ \lbx@sfromlang\ and annot., with an afterw., by}}, + and = {{and}{and}}, + andothers = {{et\addabbrvspace al\adddot}{et\addabbrvspace al\adddot}}, + andmore = {{et\addabbrvspace al\adddot}{et\addabbrvspace al\adddot}}, + volume = {{volume}{vol\adddot}}, + volumes = {{volumes}{vols\adddot}}, + involumes = {{in}{in}}, + jourvol = {{volume}{vol\adddot}}, + jourser = {{series}{ser\adddot}}, + book = {{book}{book}}, + part = {{part}{part}}, + issue = {{issue}{issue}}, + newseries = {{new series}{new ser\adddot}}, + oldseries = {{old series}{old ser\adddot}}, + edition = {{edition}{ed\adddot}}, + reprint = {{reprint}{repr\adddot}}, + reprintof = {{reprint of}{repr\adddotspace of}}, + reprintas = {{reprinted as}{rpt\adddotspace as}}, + reprintfrom = {{reprinted from}{repr\adddotspace from}}, + reviewof = {{review of}{rev\adddotspace of}}, + translationof = {{translation of}{trans\adddotspace of}}, + translationas = {{translated as}{trans\adddotspace as}}, + translationfrom = {{translated from}{trans\adddotspace from}}, + origpubas = {{originally published as}{orig\adddotspace pub\adddotspace as}}, + origpubin = {{originally published in}{orig\adddotspace pub\adddotspace in}}, + astitle = {{as}{as}}, + bypublisher = {{by}{by}}, + page = {{page}{p\adddot}}, + pages = {{pages}{pp\adddot}}, + column = {{column}{col\adddot}}, + columns = {{columns}{cols\adddot}}, + line = {{line}{l\adddot}}, + lines = {{lines}{ll\adddot}}, + nodate = {{no date}{n\adddot d\adddot}}, + verse = {{verse}{v\adddot}}, + verses = {{verses}{vv\adddot}}, + section = {{section}{\S}}, + sections = {{sections}{\S\S}}, + paragraph = {{paragraph}{par\adddot}}, + paragraphs = {{paragraphs}{par\adddot}}, + in = {{in}{in}}, + inseries = {{in}{in}}, + ofseries = {{of}{of}}, + number = {{number}{no\adddot}}, + chapter = {{chapter}{chap\adddot}}, + mathesis = {{Master's thesis}{MA\addabbrvspace thesis}}, + phdthesis = {{PhD\addabbrvspace thesis}{PhD\addabbrvspace thesis}}, + candthesis = {{Candidate thesis}{Cand\adddotspace thesis}}, + resreport = {{research report}{research rep\adddot}}, + techreport = {{technical report}{tech\adddotspace rep\adddot}}, + software = {{computer software}{comp\adddotspace software}}, + datacd = {{CD-ROM}{CD-ROM}}, + audiocd = {{audio CD}{audio CD}}, + version = {{version}{version}}, + url = {{address}{address}}, + urlfrom = {{available from}{available from}}, + urlseen = {{visited on}{visited on}}, + inpreparation = {{in preparation}{in preparation}}, + submitted = {{submitted}{submitted}}, + forthcoming = {{forthcoming}{forthcoming}}, + inpress = {{in press}{in press}}, + prepublished = {{pre-published}{pre-published}}, + citedas = {{henceforth cited as}{henceforth cited as}}, + thiscite = {{especially}{esp\adddot}}, + seenote = {{see note}{see n\adddot}}, + quotedin = {{quoted in}{qtd\adddotspace in}}, + idem = {{idem}{idem}}, + idemsm = {{idem}{idem}}, + idemsf = {{eadem}{eadem}}, + idemsn = {{idem}{idem}}, + idempm = {{eidem}{eidem}}, + idempf = {{eaedem}{eaedem}}, + idempn = {{eadem}{eadem}}, + idempp = {{eidem}{eidem}}, + ibidem = {{ibidem}{ibid\adddot}}, + opcit = {{op\adddotspace cit\adddot}{op\adddotspace cit\adddot}}, + loccit = {{loc\adddotspace cit\adddot}{loc\adddotspace cit\adddot}}, + confer = {{cf\adddot}{cf\adddot}}, + sequens = {{sq\adddot}{sq\adddot}}, + sequentes = {{sqq\adddot}{sqq\adddot}}, + passim = {{passim}{pass\adddot}}, + see = {{see}{see}}, + seealso = {{see also}{see also}}, + backrefpage = {{cited on page}{cit\adddotspace on p\adddot}}, + backrefpages = {{cited on pages}{cit\adddotspace on pp\adddot}}, + january = {{January}{Jan\adddot}}, + february = {{February}{Feb\adddot}}, + march = {{March}{Mar\adddot}}, + april = {{April}{Apr\adddot}}, + may = {{May}{May}}, + june = {{June}{June}}, + july = {{July}{July}}, + august = {{August}{Aug\adddot}}, + september = {{September}{Sept\adddot}}, + october = {{October}{Oct\adddot}}, + november = {{November}{Nov\adddot}}, + december = {{December}{Dec\adddot}}, + langamerican = {{American}{American}}, + langbrazilian = {{Brazilian}{Brazilian}}, + langcatalan = {{Catalan}{Catalan}}, + langcroatian = {{Croatian}{Croatian}}, + langczech = {{Czech}{Czech}}, + langdanish = {{Danish}{Danish}}, + langdutch = {{Dutch}{Dutch}}, + langenglish = {{English}{English}}, + langfinnish = {{Finnish}{Finnish}}, + langfrench = {{French}{French}}, + langgerman = {{German}{German}}, + langgreek = {{Greek}{Greek}}, + langitalian = {{Italian}{Italian}}, + langlatin = {{Latin}{Latin}}, + langnorwegian = {{Norwegian}{Norwegian}}, + langpolish = {{Polish}{Polish}}, + langportuguese = {{Portuguese}{Portuguese}}, + langrussian = {{Russian}{Russian}}, + langslovene = {{Slovene}{Slovene}}, + langspanish = {{Spanish}{Spanish}}, + langswedish = {{Swedish}{Swedish}}, + fromamerican = {{from the American}{from the American}}, + frombrazilian = {{from the Brazilian}{from the Brazilian}}, + fromcatalan = {{from the Catalan}{from the Catalan}}, + fromcroatian = {{from the Croatian}{from the Croatian}}, + fromczech = {{from the Czech}{from the Czech}}, + fromdanish = {{from the Danish}{from the Danish}}, + fromdutch = {{from the Dutch}{from the Dutch}}, + fromenglish = {{from the English}{from the English}}, + fromfinnish = {{from the Finnish}{from the Finnish}}, + fromfrench = {{from the French}{from the French}}, + fromgerman = {{from the German}{from the German}}, + fromgreek = {{from the Greek}{from the Greek}}, + fromitalian = {{from the Italian}{from the Italian}}, + fromlatin = {{from the Latin}{from the Latin}}, + fromnorwegian = {{from the Norwegian}{from the Norwegian}}, + frompolish = {{from the Polish}{from the Polish}}, + fromportuguese = {{from the Portuguese}{from the Portuguese}}, + fromrussian = {{from the Russian}{from the Russian}}, + fromslovene = {{from the Slovene}{from the Slovene}}, + fromspanish = {{from the Spanish}{from the Spanish}}, + fromswedish = {{from the Swedish}{from the Swedish}}, + countryde = {{Germany}{DE}}, + countryeu = {{European Union}{EU}}, + countryep = {{European Union}{EP}}, + countryfr = {{France}{FR}}, + countryuk = {{United Kingdom}{GB}}, + countryus = {{United States of America}{US}}, + patent = {{patent}{pat\adddot}}, + patentde = {{German patent}{German pat\adddot}}, + patenteu = {{European patent}{European pat\adddot}}, + patentfr = {{French patent}{French pat\adddot}}, + patentuk = {{British patent}{British pat\adddot}}, + patentus = {{U.S\adddotspace patent}{U.S\adddotspace pat\adddot}}, + patreq = {{patent request}{pat\adddot\ req\adddot}}, + patreqde = {{German patent request}{German pat\adddot\ req\adddot}}, + patreqeu = {{European patent request}{European pat\adddot\ req\adddot}}, + patreqfr = {{French patent request}{French pat\adddot\ req\adddot}}, + patrequk = {{British patent request}{British pat\adddot\ req\adddot}}, + patrequs = {{U.S\adddotspace patent request}{U.S\adddotspace pat\adddot\ req\adddot}}, + file = {{file}{file}}, + library = {{library}{library}}, + abstract = {{abstract}{abstract}}, + annotation = {{annotations}{annotations}}, +} + +\protected\gdef\lbx@us@mkbibrangetrunc@long#1#2{% + \iffieldundef{#2year} + {} + {\printtext[#2date]{% + \iffieldsequal{#2year}{#2endyear} + {\csuse{mkbibdate#1}{}{#2month}{#2day}} + {\csuse{mkbibdate#1}{#2year}{#2month}{#2day}}% + \iffieldundef{#2endyear} + {} + {\iffieldequalstr{#2endyear}{} + {\mbox{\bibdatedash}} + {\bibdatedash + \iffieldsequal{#2year}{#2endyear} + {\iffieldsequal{#2month}{#2endmonth} + {\csuse{mkbibdate#1}{#2endyear}{}{#2endday}} + {\csuse{mkbibdate#1}{#2endyear}{#2endmonth}{#2endday}}} + {\csuse{mkbibdate#1}{#2endyear}{#2endmonth}{#2endday}}}}}}} + +\protected\gdef\lbx@us@mkbibrangetrunc@short#1#2{% + \iffieldundef{#2year} + {} + {\printtext[#2date]{% + \iffieldsequal{#2year}{#2endyear} + {\csuse{mkbibdate#1}{}{#2month}{#2day}} + {\csuse{mkbibdate#1}{#2year}{#2month}{#2day}}% + \iffieldundef{#2endyear} + {} + {\iffieldequalstr{#2endyear}{} + {\mbox{\bibdatedash}} + {\bibdatedash + \csuse{mkbibdate#1}{#2endyear}{#2endmonth}{#2endday}}}}}} + +\protected\gdef\lbx@us@mkbibrangetruncextra@long#1#2{% + \iffieldundef{#2year} + {} + {\printtext[#2date]{% + \iffieldsequal{#2year}{#2endyear} + {\csuse{mkbibdate#1}{}{#2month}{#2day}} + {\csuse{mkbibdate#1}{#2year}{#2month}{#2day}}% + \iffieldundef{#2endyear} + {\printfield{extrayear}} + {\iffieldequalstr{#2endyear}{} + {\printfield{extrayear}% + \mbox{\bibdatedash}} + {\bibdatedash + \iffieldsequal{#2year}{#2endyear} + {\iffieldsequal{#2month}{#2endmonth} + {\csuse{mkbibdate#1}{#2endyear}{}{#2endday}} + {\csuse{mkbibdate#1}{#2endyear}{#2endmonth}{#2endday}}} + {\csuse{mkbibdate#1}{#2endyear}{#2endmonth}{#2endday}}% + \printfield{extrayear}}}}}} + +\protected\gdef\lbx@us@mkbibrangetruncextra@short#1#2{% + \iffieldundef{#2year} + {} + {\printtext[#2date]{% + \iffieldsequal{#2year}{#2endyear} + {\csuse{mkbibdate#1}{}{#2month}{#2day}} + {\csuse{mkbibdate#1}{#2year}{#2month}{#2day}}% + \iffieldundef{#2endyear} + {\printfield{extrayear}} + {\iffieldequalstr{#2endyear}{} + {\printfield{extrayear}% + \mbox{\bibdatedash}} + {\bibdatedash + \csuse{mkbibdate#1}{#2endyear}{#2endmonth}{#2endday}% + \printfield{extrayear}}}}}} + +\endinput diff --git a/samples/TeX/verbose.bbx b/samples/TeX/verbose.bbx new file mode 100644 index 00000000..fdba2250 --- /dev/null +++ b/samples/TeX/verbose.bbx @@ -0,0 +1,6 @@ +\ProvidesFile{verbose.bbx} +[\abx@bbxid] + +\RequireBibliographyStyle{authortitle} + +\endinput From 6e2bb25b6e63b9bd26a2bd5e3d74c386124a63c4 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Thu, 14 Aug 2014 09:31:47 -0500 Subject: [PATCH 214/268] Samples --- lib/linguist/samples.json | 733 +++++++++++++++++++++++++++++++++++--- 1 file changed, 674 insertions(+), 59 deletions(-) diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index 0cb5f3ac..701befb6 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -650,7 +650,10 @@ ".tm" ], "TeX": [ - ".cls" + ".bbx", + ".cbx", + ".cls", + ".lbx" ], "Tea": [ ".tea" @@ -813,8 +816,8 @@ "exception.zep.php" ] }, - "tokens_total": 644822, - "languages_total": 882, + "tokens_total": 650670, + "languages_total": 885, "tokens": { "ABAP": { "*/**": 1, @@ -66456,11 +66459,668 @@ "XDG_RUNTIME_DIR": 1 }, "TeX": { - "%": 135, + "ProvidesFile": 3, + "{": 1765, + "authortitle.cbx": 1, + "}": 1771, + "[": 96, + "abx@cbxid": 1, + "]": 95, + "ExecuteBibliographyOptions": 1, + "uniquename": 1, + "uniquelist": 1, + "autocite": 1, + "footnote": 2, + "renewcommand*": 1, + "iffinalcitedelim": 1, + "iflastcitekey": 1, + "newbool": 1, + "cbx": 7, + "parens": 8, + "newbibmacro*": 6, + "cite": 16, + "%": 321, + "iffieldundef": 22, + "shorthand": 8, + "ifnameundef": 2, + "labelname": 4, + "printnames": 2, + "setunit": 2, + "nametitledelim": 1, + "usebibmacro": 38, + "title": 4, + "citetitle": 4, + "textcite": 6, + "global": 4, + "booltrue": 1, + "addspace": 2, + "bibopenparen": 2, + "ifnumequal": 1, + "value": 1, + "citecount": 1, + "prenote": 8, + "printtext": 6, + "bibhyperref": 2, + "printfield": 9, + "labeltitle": 1, + "postnote": 11, + "ifbool": 3, + "bibcloseparen": 3, + "postnotedelim": 1, + "DeclareCiteCommand": 6, + "citeindex": 8, + "multicitedelim": 7, + "DeclareCiteCommand*": 2, + "parencite": 2, + "mkbibparens": 3, + "footcite": 1, + "mkbibfootnote": 2, + "footcitetext": 1, + "mkbibfootnotetext": 1, + "smartcite": 1, + "iffootnote": 1, + "boolfalse": 2, + "iffirstcitekey": 1, + "setcounter": 6, + "textcitetotal": 2, + "stepcounter": 1, + "textcitedelim": 1, + "DeclareMultiCiteCommand": 1, + "textcites": 1, + "endinput": 3, + "english.lbx": 1, + "abx@lbxid": 1, + "DeclareRedundantLanguages": 1, + "english": 2, + "american": 2, + "british": 1, + "canadian": 1, + "australian": 1, + "newzealand": 1, + "USenglish": 1, + "UKenglish": 1, + "DeclareBibliographyExtras": 1, + "protected": 16, + "def": 32, + "bibrangedash": 2, + "textendash": 1, + "penalty": 2, + "hyphenpenalty": 1, + "breakable": 1, + "dash": 1, + "bibdatedash": 9, + "finalandcomma": 109, + "addcomma": 1, + "finalandsemicolon": 1, + "addsemicolon": 1, + "mkbibordinal#1": 1, + "begingroup": 2, + "@tempcnta0#1": 1, + "relax": 6, + "number": 3, + "@tempcnta": 7, + "@whilenum": 2, + "do": 2, + "advance": 3, + "-": 15, + "ifnum": 4, + "fi": 17, + "ifcase": 1, + "th": 2, + "or": 4, + "st": 1, + "nd": 1, + "rd": 1, + "else": 10, + "endgroup": 2, + "mkbibmascord": 1, + "mkbibordinal": 3, + "mkbibfemord": 1, + "mkbibneutord": 1, + "mkbibdatelong#1#2#3": 1, + "#2": 21, + "mkbibmonth": 1, + "thefield": 8, + "#3": 14, + "#1": 50, + "space": 10, + "nobreakspace": 1, + "stripzeros": 2, + "iffieldbibstring": 2, + "bibstring": 2, + "mkbibdateshort#1#2#3": 1, + "mkdatezeros": 3, + "/": 4, + "savecommand": 4, + "mkbibrangecomp": 3, + "mkbibrangecompextra": 3, + "mkbibrangeterse": 3, + "mkbibrangeterseextra": 3, + "lbx@us@mkbibrangetrunc@long": 1, + "long": 2, + "lbx@us@mkbibrangetrunc@short": 1, + "short": 2, + "lbx@us@mkbibrangetruncextra@long": 1, + "lbx@us@mkbibrangetruncextra@short": 1, + "UndeclareBibliographyExtras": 1, + "restorecommand": 4, + "DeclareBibliographyStrings": 1, + "bibliography": 1, + "Bibliography": 2, + "references": 2, + "References": 3, + "shorthands": 1, + "List": 1, + "of": 24, + "Abbreviations": 2, + "editor": 25, + "ed": 21, + "adddot": 257, + "editors": 25, + "eds": 7, + "compiler": 2, + "comp": 4, + "compilers": 2, + "redactor": 2, + "red": 4, + "redactors": 2, + "reviser": 2, + "rev": 5, + "revisers": 2, + "founder": 2, + "found": 3, + "founders": 2, + "continuator": 1, + "continued": 3, + "cont": 3, + "FIXME": 5, + "unsure": 5, + "continuators": 1, + "collaborator": 2, + "collab": 3, + "collaborators": 2, + "translator": 16, + "trans": 51, + "translators": 16, + "commentator": 11, + "comm": 31, + "commentators": 11, + "annotator": 11, + "annot": 34, + "annotators": 11, + "commentary": 9, + "annotations": 11, + "introduction": 30, + "intro": 2, + "foreword": 30, + "forew": 20, + "afterword": 30, + "afterw": 20, + "editortr": 1, + "and": 200, + "adddotspace": 57, + "editorstr": 1, + "editorco": 1, + "editorsco": 1, + "editoran": 1, + "editorsan": 1, + "editorin": 1, + "introd": 18, + "editorsin": 1, + "editorfo": 1, + "editorsfo": 1, + "editoraf": 1, + "editorsaf": 1, + "editortrco": 1, + "ed.": 28, + "addabbrvspace": 52, + "editorstrco": 1, + "eds.": 17, + "editortran": 1, + "editorstran": 1, + "editortrin": 1, + "editorstrin": 1, + "editortrfo": 1, + "editorstrfo": 1, + "editortraf": 1, + "editorstraf": 1, + "editorcoin": 1, + "editorscoin": 1, + "editorcofo": 1, + "editorscofo": 1, + "editorcoaf": 1, + "editorscoaf": 1, + "editoranin": 1, + "editorsanin": 1, + "editoranfo": 1, + "editorsanfo": 1, + "editoranaf": 1, + "editorsanaf": 1, + "editortrcoin": 1, + "trans.": 24, + "editorstrcoin": 1, + "editortrcofo": 1, + "editorstrcofo": 1, + "editortrcoaf": 1, + "editorstrcoaf": 1, + "editortranin": 1, + "editorstranin": 1, + "editortranfo": 1, + "editorstranfo": 1, + "editortranaf": 1, + "editorstranaf": 1, + "translatorco": 1, + "translatorsco": 1, + "translatoran": 1, + "translatorsan": 1, + "translatorin": 1, + "translation": 19, + "translatorsin": 1, + "translatorfo": 1, + "translatorsfo": 1, + "translatoraf": 1, + "translatorsaf": 1, + "translatorcoin": 1, + "translatorscoin": 1, + "translatorcofo": 1, + "translatorscofo": 1, + "translatorcoaf": 1, + "translatorscoaf": 1, + "translatoranin": 1, + "translatorsanin": 1, + "translatoranfo": 1, + "translatorsanfo": 1, + "translatoranaf": 1, + "translatorsanaf": 1, + "byauthor": 1, + "by": 103, + "byeditor": 1, + "edited": 24, + "bycompiler": 1, + "compiled": 1, + "byredactor": 1, + "redacted": 1, + "byreviser": 1, + "revised": 1, + "byreviewer": 1, + "reviewed": 1, + "byfounder": 1, + "founded": 1, + "bycontinuator": 1, + "bycollaborator": 1, + "in": 37, + "collaboration": 1, + "with": 71, + "bytranslator": 1, + "translated": 26, + "lbx@lfromlang": 24, + "lbx@sfromlang": 24, + "bycommentator": 1, + "commented": 13, + "byannotator": 1, + "annotated": 13, + "withcommentator": 1, + "a": 24, + "comment": 2, + "withannotator": 1, + "annots": 1, + "withintroduction": 1, + "an": 40, + "withforeword": 1, + "withafterword": 1, + "byeditortr": 1, + "byeditorco": 1, + "byeditoran": 1, + "byeditorin": 1, + "introd.": 9, + "byeditorfo": 1, + "forew.": 9, + "byeditoraf": 1, + "afterw.": 9, + "byeditortrco": 1, + "byeditortran": 1, + "byeditortrin": 1, + "byeditortrfo": 1, + "byeditortraf": 1, + "byeditorcoin": 1, + "comm.": 9, + "byeditorcofo": 1, + "byeditorcoaf": 1, + "byeditoranin": 1, + "annot.": 6, + "byeditoranfo": 1, + "byeditoranaf": 1, + "byeditortrcoin": 1, + "byeditortrcofo": 1, + "byeditortrcoaf": 1, + "byeditortranin": 1, + "byeditortranfo": 1, + "byeditortranaf": 1, + "bytranslatorco": 1, + "bytranslatoran": 1, + "bytranslatorin": 1, + "bytranslatorfo": 1, + "bytranslatoraf": 1, + "bytranslatorcoin": 1, + "bytranslatorcofo": 1, + "bytranslatorcoaf": 1, + "bytranslatoranin": 1, + "bytranslatoranfo": 1, + "bytranslatoranaf": 1, + "andothers": 1, + "et": 4, + "al": 4, + "andmore": 1, + "volume": 3, + "vol": 2, + "volumes": 2, + "vols": 1, + "involumes": 1, + "jourvol": 1, + "jourser": 1, + "series": 3, + "ser": 3, + "book": 5, + "part": 3, + "issue": 3, + "newseries": 1, + "new": 3, + "oldseries": 1, + "old": 2, + "edition": 2, + "reprint": 3, + "repr": 3, + "reprintof": 1, + "reprintas": 1, + "reprinted": 2, + "as": 10, + "rpt": 1, + "reprintfrom": 1, + "from": 53, + "reviewof": 1, + "review": 1, + "translationof": 1, + "translationas": 1, + "translationfrom": 1, + "origpubas": 1, + "originally": 2, + "published": 4, + "orig": 2, + "pub": 2, + "origpubin": 1, + "astitle": 1, + "bypublisher": 1, + "page": 7, + "p": 2, + "pages": 5, + "pp": 2, + "column": 2, + "col": 1, + "columns": 2, + "cols": 1, + "line": 4, + "l": 1, + "lines": 2, + "ll": 1, + "nodate": 1, + "no": 2, + "date": 1, + "n": 6, + "d": 2, + "verse": 2, + "v": 1, + "verses": 2, + "vv": 1, + "section": 4, + "S": 3, + "sections": 2, + "paragraph": 2, + "par": 8, + "paragraphs": 2, + "inseries": 1, + "ofseries": 1, + "chapter": 11, + "chap": 2, + "mathesis": 1, + "Master": 1, + "s": 1, + "thesis": 6, + "MA": 1, + "phdthesis": 1, + "PhD": 2, + "candthesis": 1, + "Candidate": 1, + "Cand": 1, + "resreport": 1, + "research": 2, + "report": 2, + "rep": 2, + "techreport": 1, + "technical": 1, + "tech": 1, + "software": 3, + "computer": 1, + "datacd": 1, + "CD": 4, + "ROM": 2, + "audiocd": 1, + "audio": 2, + "version": 3, + "url": 3, + "address": 2, + "urlfrom": 1, + "available": 2, + "urlseen": 1, + "visited": 2, + "on": 8, + "inpreparation": 1, + "preparation": 2, + "submitted": 3, + "forthcoming": 3, + "inpress": 1, + "press": 2, + "prepublished": 1, + "pre": 2, + "citedas": 1, + "henceforth": 2, + "cited": 4, + "thiscite": 1, + "especially": 1, + "esp": 1, + "seenote": 1, + "see": 7, + "note": 1, + "quotedin": 1, + "quoted": 1, + "qtd": 1, + "idem": 7, + "idemsm": 1, + "idemsf": 1, + "eadem": 4, + "idemsn": 1, + "idempm": 1, + "eidem": 4, + "idempf": 1, + "eaedem": 2, + "idempn": 1, + "idempp": 1, + "ibidem": 2, + "ibid": 1, + "opcit": 1, + "op": 2, + "cit": 6, + "loccit": 1, + "loc": 2, + "confer": 1, + "cf": 2, + "sequens": 1, + "sq": 2, + "sequentes": 1, + "sqq": 2, + "passim": 2, + "pass": 1, + "seealso": 1, + "also": 2, + "backrefpage": 1, + "backrefpages": 1, + "january": 1, + "January": 1, + "Jan": 1, + "february": 1, + "February": 1, + "Feb": 1, + "march": 1, + "March": 1, + "Mar": 1, + "april": 1, + "April": 1, + "Apr": 1, + "may": 1, + "May": 2, + "june": 1, + "June": 2, + "july": 1, + "July": 2, + "august": 1, + "August": 1, + "Aug": 1, + "september": 1, + "September": 1, + "Sept": 1, + "october": 1, + "October": 1, + "Oct": 1, + "november": 1, + "November": 1, + "Nov": 1, + "december": 1, + "December": 1, + "Dec": 1, + "langamerican": 1, + "American": 4, + "langbrazilian": 1, + "Brazilian": 4, + "langcatalan": 1, + "Catalan": 4, + "langcroatian": 1, + "Croatian": 4, + "langczech": 1, + "Czech": 4, + "langdanish": 1, + "Danish": 4, + "langdutch": 1, + "Dutch": 4, + "langenglish": 1, + "English": 4, + "langfinnish": 1, + "Finnish": 4, + "langfrench": 1, + "French": 8, + "langgerman": 1, + "German": 8, + "langgreek": 1, + "Greek": 4, + "langitalian": 1, + "Italian": 4, + "langlatin": 1, + "Latin": 4, + "langnorwegian": 1, + "Norwegian": 4, + "langpolish": 1, + "Polish": 4, + "langportuguese": 1, + "Portuguese": 4, + "langrussian": 1, + "Russian": 4, + "langslovene": 1, + "Slovene": 4, + "langspanish": 1, + "Spanish": 4, + "langswedish": 1, + "Swedish": 4, + "fromamerican": 1, + "the": 61, + "frombrazilian": 1, + "fromcatalan": 1, + "fromcroatian": 1, + "fromczech": 1, + "fromdanish": 1, + "fromdutch": 1, + "fromenglish": 1, + "fromfinnish": 1, + "fromfrench": 1, + "fromgerman": 1, + "fromgreek": 1, + "fromitalian": 1, + "fromlatin": 1, + "fromnorwegian": 1, + "frompolish": 1, + "fromportuguese": 1, + "fromrussian": 1, + "fromslovene": 1, + "fromspanish": 1, + "fromswedish": 1, + "countryde": 1, + "Germany": 1, + "DE": 1, + "countryeu": 1, + "European": 6, + "Union": 2, + "EU": 1, + "countryep": 1, + "EP": 1, + "countryfr": 1, + "France": 1, + "FR": 1, + "countryuk": 1, + "United": 2, + "Kingdom": 1, + "GB": 1, + "countryus": 1, + "States": 1, + "America": 1, + "US": 1, + "patent": 13, + "pat": 12, + "patentde": 1, + "patenteu": 1, + "patentfr": 1, + "patentuk": 1, + "British": 4, + "patentus": 1, + "U.S": 4, + "patreq": 1, + "request": 6, + "req": 6, + "patreqde": 1, + "patreqeu": 1, + "patreqfr": 1, + "patrequk": 1, + "patrequs": 1, + "file": 3, + "library": 3, + "abstract": 4, + "annotation": 1, + "gdef": 10, + "lbx@us@mkbibrangetrunc@long#1#2": 1, + "#2year": 14, + "#2date": 4, + "iffieldsequal": 8, + "#2endyear": 22, + "csuse": 16, + "mkbibdate#1": 16, + "#2month": 10, + "#2day": 8, + "iffieldequalstr": 4, + "mbox": 4, + "#2endmonth": 8, + "#2endday": 8, + "lbx@us@mkbibrangetrunc@short#1#2": 1, + "lbx@us@mkbibrangetruncextra@long#1#2": 1, + "extrayear": 6, + "lbx@us@mkbibrangetruncextra@short#1#2": 1, "ProvidesClass": 2, - "{": 463, "problemset": 1, - "}": 469, "DeclareOption*": 2, "PassOptionsToClass": 2, "final": 2, @@ -66472,15 +67132,11 @@ "expand": 1, "@expand": 3, "ProcessOptions": 2, - "relax": 3, "LoadClass": 2, - "[": 81, "pt": 5, "letterpaper": 1, - "]": 80, "RequirePackage": 20, "top": 1, - "in": 20, "bottom": 1, "left": 15, "right": 16, @@ -66505,7 +67161,6 @@ "inserting": 3, "images.": 1, "enumerate": 2, - "the": 19, "mathtools": 2, "Required.": 7, "Loads": 1, @@ -66517,7 +67172,6 @@ "booktabs": 1, "esdiff": 1, "derivatives": 4, - "and": 5, "partial": 2, "Optional.": 1, "shortintertext.": 1, @@ -66525,28 +67179,23 @@ "customizing": 1, "headers/footers.": 1, "lastpage": 1, - "page": 4, "count": 1, "header/footer.": 1, "xcolor": 1, "setting": 3, "color": 3, - "of": 14, "hyperlinks": 2, "obeyFinal": 1, "Disable": 1, "todos": 1, - "by": 1, "option": 1, "class": 1, "@todoclr": 2, "linecolor": 1, - "red": 1, "todonotes": 1, "keeping": 1, "track": 1, "to": 16, - "-": 9, "dos.": 1, "colorlinks": 1, "true": 1, @@ -66557,12 +67206,8 @@ "hyperref": 1, "following": 2, "urls": 2, - "references": 1, - "a": 2, "document.": 1, - "url": 2, "Enables": 1, - "with": 5, "tag": 1, "all": 2, "hypcap": 1, @@ -66577,18 +67222,14 @@ "parskip": 1, "ex": 2, "Sets": 1, - "space": 8, "between": 1, "paragraphs.": 2, "parindent": 2, "Indent": 1, "first": 1, - "line": 2, - "new": 1, "let": 11, "VERBATIM": 2, "verbatim": 2, - "def": 18, "verbatim@font": 1, "small": 8, "ttfamily": 1, @@ -66606,7 +67247,6 @@ "bf": 4, "figure": 2, "subtable": 1, - "parens": 1, "subfigure": 1, "TRUE": 1, "FALSE": 1, @@ -66619,11 +67259,8 @@ "pagenumbering": 1, "arabic": 2, "shortname": 2, - "#1": 40, "authorname": 2, - "#2": 17, "coursename": 3, - "#3": 8, "assignment": 3, "#4": 4, "duedate": 2, @@ -66657,7 +67294,6 @@ "environment": 1, "problem": 1, "addtocounter": 2, - "setcounter": 5, "equation": 1, "noindent": 2, ".": 3, @@ -66672,23 +67308,16 @@ "hfill": 3, "rule": 1, "mm": 2, - "ifnum": 3, "pagebreak": 2, - "fi": 15, "show": 1, "solutions.": 1, "vspace": 2, "em": 8, "Solution.": 1, "ifnum#1": 2, - "else": 9, - "chap": 1, - "section": 2, "Sum": 3, - "n": 4, "ensuremath": 15, "sum_": 2, - "from": 5, "infsum": 2, "infty": 2, "Infinite": 1, @@ -66697,7 +67326,6 @@ "x": 4, "int_": 1, "mathrm": 1, - "d": 1, "Integrate": 1, "respect": 1, "Lim": 2, @@ -66708,7 +67336,6 @@ "infinity": 1, "f": 1, "Frac": 1, - "/": 1, "_": 1, "Slanted": 1, "fraction": 1, @@ -66765,7 +67392,6 @@ "into": 2, "mtxt": 1, "insterting": 1, - "on": 2, "either": 1, "side.": 1, "Option": 1, @@ -66806,7 +67432,6 @@ "Thesis": 5, "Class": 4, "CurrentOption": 1, - "book": 2, "AtBeginDocument": 1, "fancyhead": 5, "LE": 1, @@ -66835,7 +67460,6 @@ "This": 2, "RIGHT": 2, "side": 2, - "pages": 2, "italic": 1, "use": 1, "lowercase": 1, @@ -66849,7 +67473,6 @@ "same": 1, "thing": 1, "LEFT": 2, - "or": 1, "scshape": 2, "will": 2, "And": 1, @@ -66862,12 +67485,10 @@ "renewenvironment": 2, "addcontentsline": 5, "toc": 5, - "chapter": 9, "bibname": 2, "things": 1, "psych": 1, "majors": 1, - "comment": 1, "out": 1, "oldtheindex": 2, "theindex": 2, @@ -66877,7 +67498,6 @@ "RToldchapter": 1, "if@openright": 1, "RTcleardoublepage": 3, - "global": 2, "@topnum": 1, "z@": 2, "@afterindentfalse": 1, @@ -66922,7 +67542,6 @@ "headsep": 3, ".6in": 1, "division#1": 1, - "gdef": 6, "@division": 3, "@latex@warning@no@line": 3, "No": 3, @@ -66950,7 +67569,6 @@ "contentsname": 1, "Table": 1, "Contents": 1, - "References": 1, "l@chapter": 1, "c@tocdepth": 1, "addpenalty": 1, @@ -66958,13 +67576,11 @@ "vskip": 4, "@plus": 1, "@tempdima": 2, - "begingroup": 1, "rightskip": 1, "@pnumwidth": 3, "parfillskip": 1, "leavevmode": 1, "bfseries": 3, - "advance": 1, "leftskip": 2, "hskip": 1, "nobreak": 2, @@ -66976,11 +67592,7 @@ "mu": 2, "hb@xt@": 1, "hss": 1, - "par": 6, - "penalty": 1, - "endgroup": 1, "newenvironment": 1, - "abstract": 1, "@restonecoltrue": 1, "onecolumn": 1, "@restonecolfalse": 1, @@ -67007,7 +67619,6 @@ "maketitle": 1, "titlepage": 2, "footnoterule": 1, - "footnote": 1, "thanks": 1, "baselineskip": 2, "setbox0": 2, @@ -67042,7 +67653,11 @@ "approved": 1, "major": 1, "sign": 1, - "makebox": 6 + "makebox": 6, + "verbose.bbx": 1, + "abx@bbxid": 1, + "RequireBibliographyStyle": 1, + "authortitle": 1 }, "Tea": { "<%>": 1, @@ -71363,7 +71978,7 @@ "SystemVerilog": 541, "TXL": 213, "Tcl": 1133, - "TeX": 2701, + "TeX": 8549, "Tea": 3, "Turing": 44, "TypeScript": 109, @@ -71567,7 +72182,7 @@ "SystemVerilog": 4, "TXL": 1, "Tcl": 2, - "TeX": 2, + "TeX": 5, "Tea": 1, "Turing": 1, "TypeScript": 3, @@ -71592,5 +72207,5 @@ "fish": 3, "wisp": 1 }, - "md5": "c0578d3ebf3d2a7af99eb8ba9e32d209" + "md5": "36a56236dcc5c12b9f65b00f5e6477ad" } \ No newline at end of file From 478b9cf1895ef42d9b24553d0b17c639483c2c99 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Thu, 14 Aug 2014 12:16:35 -0500 Subject: [PATCH 215/268] Samples --- lib/linguist/samples.json | 61 +++++++++++++++++++++++++++++++++++---- 1 file changed, 56 insertions(+), 5 deletions(-) diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index 8d64e1b2..0fc82b97 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -557,8 +557,8 @@ ".scss" ], "SQF": [ - ".sqf", - ".hqf" + ".hqf", + ".sqf" ], "SQL": [ ".prc", @@ -820,8 +820,8 @@ "exception.zep.php" ] }, - "tokens_total": 650670, - "languages_total": 885, + "tokens_total": 650866, + "languages_total": 887, "tokens": { "ABAP": { "*/**": 1, @@ -61992,6 +61992,55 @@ "padding": 1, "/": 2 }, + "SQF": { + "private": 2, + "[": 4, + "]": 4, + ";": 32, + "AGM_Core_remoteFnc": 2, + "_this": 4, + "_arguments": 6, + "select": 4, + "_function": 6, + "call": 6, + "compile": 1, + "(": 12, + ")": 12, + "_unit": 6, + "if": 7, + "isNil": 1, + "then": 6, + "{": 16, + "}": 16, + "typeName": 1, + "exitWith": 1, + "switch": 1, + "do": 1, + "case": 4, + "isServer": 3, + "else": 4, + "publicVariableServer": 3, + "set": 1, + "publicVariable": 1, + "isDedicated": 1, + "local": 1, + "_id": 2, + "owner": 1, + "publicVariableClient": 1, + "#include": 1, + "": 1, + "#define": 4, + "SET": 1, + "VAR": 5, + "VALUE": 2, + "#VAR": 1, + "CONV": 1, + "ARRAY": 2, + "POOL": 2, + "find": 1, + "ALL_HITPOINTS_MAN": 1, + "ALL_HITPOINTS_VEH": 1 + }, "SQL": { "IF": 13, "EXISTS": 12, @@ -71959,6 +72008,7 @@ "Rust": 3566, "SAS": 93, "SCSS": 39, + "SQF": 196, "SQL": 1485, "STON": 100, "Sass": 56, @@ -72163,6 +72213,7 @@ "Rust": 1, "SAS": 2, "SCSS": 1, + "SQF": 2, "SQL": 5, "STON": 7, "Sass": 2, @@ -72211,5 +72262,5 @@ "fish": 3, "wisp": 1 }, - "md5": "36a56236dcc5c12b9f65b00f5e6477ad" + "md5": "b0c3e81b634238f9c3aa99820624e389" } \ No newline at end of file From 1cd5ae2d57d77f84d34ba0fe5879af12a213545e Mon Sep 17 00:00:00 2001 From: joeyspin Date: Thu, 14 Aug 2014 14:21:18 -0500 Subject: [PATCH 216/268] Add LabVIEW to languages.yml Adding XML LabVIEW project per discussion at #1386 and #1387 --- lib/linguist/languages.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index ff9e76f7..b1dd79a6 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1160,6 +1160,11 @@ LFE: LLVM: extensions: - .ll + +LabVIEW: + type: programming + lexer: Text only + extensions: .lvproj Lasso: type: programming From d64104f4723dbca9d0c38a6907b72b19a5f27ef7 Mon Sep 17 00:00:00 2001 From: joeyspin Date: Thu, 14 Aug 2014 14:42:58 -0500 Subject: [PATCH 217/268] Update languages.yml --- lib/linguist/languages.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index b1dd79a6..70f5ace6 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1149,6 +1149,12 @@ Kotlin: - .ktm - .kts +LabVIEW: + type: programming + lexer: Text only + extensions: + - .lvproj + LFE: type: programming extensions: @@ -1160,11 +1166,6 @@ LFE: LLVM: extensions: - .ll - -LabVIEW: - type: programming - lexer: Text only - extensions: .lvproj Lasso: type: programming From a47dde21664df3d221a9120071bd62eda4dfe20c Mon Sep 17 00:00:00 2001 From: joeyspin Date: Thu, 14 Aug 2014 16:39:04 -0500 Subject: [PATCH 218/268] Update languages.yml Put LabVIEW order after LFE and after LLVM to meet test.pedantic --- lib/linguist/languages.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 70f5ace6..1c09cfc7 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1149,12 +1149,6 @@ Kotlin: - .ktm - .kts -LabVIEW: - type: programming - lexer: Text only - extensions: - - .lvproj - LFE: type: programming extensions: @@ -1166,6 +1160,12 @@ LFE: LLVM: extensions: - .ll + +LabVIEW: + type: programming + lexer: Text only + extensions: + - .lvproj Lasso: type: programming From a4433808695a5d408820e1fac351739333305e2f Mon Sep 17 00:00:00 2001 From: Edmundo Ruiz Date: Sat, 16 Aug 2014 11:51:15 -0700 Subject: [PATCH 219/268] Added Adventure Game Studio (AGS) Script language definition and samples. --- lib/linguist/languages.yml | 10 + samples/AGS Script/GlobalScript.asc | 521 ++++++++++++++++++++ samples/AGS Script/GlobalScript.ash | 4 + samples/AGS Script/KeyboardMovement_102.asc | 216 ++++++++ samples/AGS Script/KeyboardMovement_102.ash | 13 + 5 files changed, 764 insertions(+) create mode 100644 samples/AGS Script/GlobalScript.asc create mode 100644 samples/AGS Script/GlobalScript.ash create mode 100644 samples/AGS Script/KeyboardMovement_102.asc create mode 100644 samples/AGS Script/KeyboardMovement_102.ash diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index b7defba5..111ca481 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -28,6 +28,16 @@ ABAP: extensions: - .abap +AGS Script: + type: programming + lexer: C++ + color: "#B9D9FF" + aliases: + - ags + extensions: + - .asc + - .ash + ANTLR: type: programming color: "#9DC3FF" diff --git a/samples/AGS Script/GlobalScript.asc b/samples/AGS Script/GlobalScript.asc new file mode 100644 index 00000000..507cb071 --- /dev/null +++ b/samples/AGS Script/GlobalScript.asc @@ -0,0 +1,521 @@ +// main global script file + +// A function that initializes a bunch of stuff. +function initialize_control_panel() { + // Centre the control panel + gPanel.Centre(); + // Centre the Restart dialog as well + gRestartYN.Centre(); + if (!IsSpeechVoxAvailable()) { + // If there is no speech-vox file, and therefore no speech, + // disable all the controls related with speech. + lblVoice.Visible = false; + btnVoice.Visible = false; + sldVoice.Visible = false; + } + else { + // If there *is*, then set it to voice and text. It's best to use + // both whenever possible, for the player's sake. + SetVoiceMode(eSpeechVoiceAndText); + // And reflect this in the control panel. + btnVoice.Text = "Voice and Text"; + } + if (!System.SupportsGammaControl) { + // If we can't change the gamma settings, disable the relevant options. + sldGamma.Visible = false; + lblGamma.Visible = false; + } + + //And now, set all the defaults + System.Volume = 100; + sldAudio.Value = System.Volume; + SetGameSpeed(40); + sldSpeed.Value = 40; + if (IsSpeechVoxAvailable()) { + SetVoiceMode(eSpeechVoiceAndText); + btnVoice.Text = "Voice and Text"; + sldVoice.Value = 255; + SetSpeechVolume(255); + } + if (System.SupportsGammaControl) { + System.Gamma = 100; + sldGamma.Value = 100; + } +} + +// Called when the game starts, before the first room is loaded +function game_start() { + // Put the code all in a function and then just call the function. + // It saves cluttering up places like game_start. + initialize_control_panel(); + // Use the KeyboardMovement module to, per default, replicate the standard + // keyboard movement of most Sierra games. See KeyboardMovement.txt for more info + KeyboardMovement.SetMode(eKeyboardMovement_Tapping); +} + +function repeatedly_execute() { + + // Put here anything you want to happen every game cycle, even when + // the game is paused. This will not run when the game is blocked + // inside a command like a blocking Walk() + + if (IsGamePaused() == 1) return; + + // Put here anything you want to happen every game cycle, but not + // when the game is paused. +} + +function repeatedly_execute_always() { + + // Put anything you want to happen every game cycle, even + // when the game is blocked inside a command like a + // blocking Walk(). + // You cannot run blocking commands from this function. + +} + +function show_inventory_window () +{ + gInventory.Visible = true; + // switch to the Use cursor (to select items with) + mouse.Mode = eModeInteract; + // But, override the appearance to look like the arrow + mouse.UseModeGraphic(eModePointer); +} + +function show_save_game_dialog() +{ + gSaveGame.Visible = true; + // Get the list of save games + lstSaveGamesList.FillSaveGameList(); + if (lstSaveGamesList.ItemCount > 0) + { + // If there is at least one, set the default text + // to be the first game's name + txtNewSaveName.Text = lstSaveGamesList.Items[0]; + } + else + { + // No save games yet, default empty text. + txtNewSaveName.Text = ""; + } + mouse.UseModeGraphic(eModePointer); + gIconbar.Visible = false; +} + +function show_restore_game_dialog() +{ + gRestoreGame.Visible = true; + lstRestoreGamesList.FillSaveGameList(); + mouse.UseModeGraphic(eModePointer); + gIconbar.Visible = false; +} + +function close_save_game_dialog() +{ + gSaveGame.Visible = false; + mouse.UseDefaultGraphic(); + gIconbar.Visible = true; +} + +function close_restore_game_dialog() +{ + gRestoreGame.Visible = false; + mouse.UseDefaultGraphic(); + gIconbar.Visible = true; +} + +// Called when a key is pressed. keycode holds the key's ASCII code +function on_key_press(eKeyCode keycode) { + // The following is called before "if game is paused keycode=0", so + // it'll happen even when the game is paused. + + if ((keycode == eKeyEscape) && gRestartYN.Visible) { + //Use ESC to cancel restart. + gRestartYN.Visible = false; + gIconbar.Visible = true; + // If the panel's not ON, then the player must have gotten here by tapping F9, + // therefore his cursor needs restoring. If the panel IS on, then it doesn't, + // because it's already a pointer. Get used to thinking like this!! + if (!gPanel.Visible) mouse.UseDefaultGraphic(); + return; + } + if ((keycode == eKeyEscape) && gPanel.Visible) { + // Use ESC to turn the panel off. + gPanel.Visible = false; + mouse.UseDefaultGraphic(); + gIconbar.Visible = true; + return; + } + if ((keycode == eKeyEscape) && (gSaveGame.Visible)) + { + // Use ESC to close the save game dialog + close_save_game_dialog(); + return; + } + if ((keycode == eKeyEscape) && (gRestoreGame.Visible)) + { + // Use ESC to close the restore game dialog + close_restore_game_dialog(); + return; + } + + if (keycode == eKeyReturn) { + // ENTER, in this case merely confirms restart + if (gRestartYN.Visible) RestartGame(); + } + + if (IsGamePaused() || (IsInterfaceEnabled() == 0)) + { + // If the game is paused with a modal GUI on the + // screen, or the player interface is disabled in + // a cut scene, ignore any keypresses. + return; + } + + // FUNCTION KEYS AND SYSTEM SHORTCUTS + if (keycode == eKeyEscape) { + // ESC + gPanel.Visible = true; + gIconbar.Visible = false; + mouse.UseModeGraphic(eModePointer); + } + if (keycode == eKeyCtrlQ) QuitGame(1); // Ctrl-Q + if (keycode == eKeyF5) show_save_game_dialog(); // F5 + if (keycode == eKeyF7) show_restore_game_dialog(); // F7 + if (keycode == eKeyF9) { + // F9, asks the player to confirm restarting (so much better to always confirm first) + gRestartYN.Visible = true; + gIconbar.Visible = false; + mouse.UseModeGraphic(eModePointer); + } + if (keycode == eKeyF12) SaveScreenShot("scrnshot.bmp"); // F12 + if (keycode == eKeyTab) show_inventory_window(); // Tab, show inventory + + // GAME COMMAND SHORTCUTS + if (keycode == 'W') mouse.Mode=eModeWalkto; //Notice this alternate way to indicate keycodes. + if (keycode == 'L') mouse.Mode=eModeLookat; //Note that all we do here is set modes. + if (keycode == 'U') mouse.Mode=eModeInteract; //If you want something else to happen, such as GUI buttons highlighting, + if (keycode == 'T') mouse.Mode=eModeTalkto; //you'll need some more scripting done. + if (keycode == 'I') mouse.Mode=eModeUseinv; //But this will, as-is, give you some standard keyboard shortcuts your players will very much appreciate. + + // For extra cursor modes, such as pick up, feel free to add as you will. + // Uncomment the line below if you use the "Pick Up" mode. + //if (keycode == 'P' || keycode == 'G') mouse.Mode=eModePickup; + + // DEBUG FUNCTIONS + if (keycode == eKeyCtrlS) Debug(0,0); // Ctrl-S, give all inventory + if (keycode == eKeyCtrlV) Debug(1,0); // Ctrl-V, version + if (keycode == eKeyCtrlA) Debug(2,0); // Ctrl-A, show walkable areas + if (keycode == eKeyCtrlX) Debug(3,0); // Ctrl-X, teleport to room + if (keycode == eKeyCtrlW && game.debug_mode) + player.PlaceOnWalkableArea(); //Ctrl-W, move to walkable area +} + + +function on_mouse_click(MouseButton button) { + // called when a mouse button is clicked. button is either LEFT or RIGHT + if (IsGamePaused() == 1) { + // Game is paused, so do nothing (ie. don't allow mouse click) + } + else if (button == eMouseLeft) { + ProcessClick(mouse.x, mouse.y, mouse.Mode ); + } + else if (button == eMouseRight || button == eMouseWheelSouth){ + // right-click our mouse-wheel down, so cycle cursor + mouse.SelectNextMode(); + } + else if (button == eMouseMiddle) { + // Middle-button-click, default make character walk to clicked area (a little shortcut) + // Could have been just "player.Walk(mouse.x,mouse.y)", but it's best to + // leave our options open - what if you have a special script triggered + // on "walking" mode? + ProcessClick(mouse.x, mouse.y, eModeWalkto); + } + else if (button == eMouseWheelNorth) { + // Mouse-wheel up, cycle cursors + // If mode isn't WALK, set the previous mode (notice usage of numbers instead + // of eNums, when it suits us)... + if (mouse.Mode>0) mouse.Mode=mouse.Mode-1; + else + { + // ...but if it is WALK mode... + if (player.ActiveInventory!=null) + { + //...and the player has a selected inventory item, set mouse mode to UseInv. + mouse.Mode=eModeUseinv; + } + else + { + // If they don't, however, just set it to mode TALK (change this line if you add more cursor modes) + mouse.Mode=eModeTalkto; + } + } + } +} + +function interface_click(int interface, int button) { + // This function is obsolete, from 2.62 and earlier versions. +} + +function btnInvUp_Click(GUIControl *control, MouseButton button) { + invCustomInv.ScrollUp(); +} + +function btnInvDown_Click(GUIControl *control, MouseButton button) { + invCustomInv.ScrollDown(); +} + +function btnInvOK_Click(GUIControl *control, MouseButton button) { + // They pressed the OK button, close the GUI + gInventory.Visible = false; + mouse.UseDefaultGraphic(); +} + +function btnInvSelect_Click(GUIControl *control, MouseButton button) { + + // They pressed SELECT, so switch to the Get cursor + mouse.Mode = eModeInteract; + // But, override the appearance to look like the arrow + mouse.UseModeGraphic(eModePointer); +} + +function btnIconInv_Click(GUIControl *control, MouseButton button) { + + show_inventory_window(); +} + +function btnIconCurInv_Click(GUIControl *control, MouseButton button) { + + if (player.ActiveInventory != null) + mouse.Mode = eModeUseinv; +} + +function btnIconSave_Click(GUIControl *control, MouseButton button) +{ + show_save_game_dialog(); +} + +function btnIconLoad_Click(GUIControl *control, MouseButton button) +{ + show_restore_game_dialog(); +} + +function btnIconExit_Click(GUIControl *control, MouseButton button) { + + QuitGame(1); +} + +function btnIconAbout_Click(GUIControl *control, MouseButton button) { + + gPanel.Visible=true; + gIconbar.Visible=false; + mouse.UseModeGraphic(eModePointer); +} + +function cEgo_Look() +{ + Display("Damn, I'm looking good!"); +} + +function cEgo_Interact() +{ + Display("You rub your hands up and down your clothes."); +} + +function cEgo_Talk() +{ + Display("Talking to yourself is a sign of madness!"); +} + +//START OF CONTROL PANEL FUNCTIONS +function btnSave_OnClick(GUIControl *control, MouseButton button) +{ + gPanel.Visible = false; + mouse.UseDefaultGraphic(); + gIconbar.Visible = true; + Wait(1); + btnIconSave_Click(btnIconSave, eMouseLeft); +} + +function gControl_OnClick(GUI *theGui, MouseButton button) +{ + +} + +function btnAbout_OnClick(GUIControl *control, MouseButton button) +{ +Display("Adventure Game Studio run-time engine default game."); +} + +function btnQuit_OnClick(GUIControl *control, MouseButton button) +{ + gPanel.Visible = false; + Wait(1); + QuitGame(1); + gPanel.Visible = true; + gIconbar.Visible = false; + mouse.UseModeGraphic(eModePointer); +} + +function btnLoad_OnClick(GUIControl *control, MouseButton button) +{ + gPanel.Visible = false; + mouse.UseDefaultGraphic(); + gIconbar.Visible = true; + Wait(1); + btnIconLoad_Click(btnIconLoad, eMouseLeft); +} + +function btnResume_OnClick(GUIControl *control, MouseButton button) +{ + gPanel.Visible = false; + mouse.UseDefaultGraphic(); + gIconbar.Visible = true; +} + +function sldAudio_OnChange(GUIControl *control) +{ + System.Volume = sldAudio.Value; +} + +function sldVoice_OnChange(GUIControl *control) +{ + // Sets voice volume. Note that we don't check for the existence of speech.vox - + // we did that in game_start, so if it's not there the slider won't even be available. + SetSpeechVolume(sldVoice.Value); +} + +function btnVoice_OnClick(GUIControl *control, MouseButton button) +{ + // Note that we don't check for the existence of speech.vox - we did that in game_start, + // so if it's not there the button won't even be available. + if (btnVoice.Text == "Voice and Text") { + SetVoiceMode(eSpeechVoiceOnly); + btnVoice.Text = "Voice only"; + } + else if (btnVoice.Text == "Voice only") { + SetVoiceMode(eSpeechTextOnly); + btnVoice.Text = "Text only"; + } + else if (btnVoice.Text == "Text only") { + SetVoiceMode(eSpeechVoiceAndText); + btnVoice.Text = "Voice and Text"; + } +} + +function sldGamma_OnChange(GUIControl *control) +{ + // Set the gamma. Note there's no need to check for anything else, as we ensured, + // in game_start, that the slider won't even appear if it's not possible to do this. + System.Gamma = sldGamma.Value; +} + +function btnDefault_OnClick(GUIControl *control, MouseButton button) +{ + // Reset everything to default. You'll have to edit these as well as the sliders + // if you'd rather have different default parameters. + System.Volume = 100; + sldAudio.Value = System.Volume; + sldSpeed.Value = 40; + SetGameSpeed(40); + if (IsSpeechVoxAvailable()) { + SetVoiceMode(eSpeechVoiceAndText); + btnVoice.Text = "Voice and Text"; + sldVoice.Value = 255; + SetSpeechVolume(255); + } + if (System.SupportsGammaControl) { + System.Gamma = 100; + sldGamma.Value = 100; + } +} +//END OF CONTROL PANEL FUNCTIONS + +function dialog_request(int param) +{ + // This is used by the dialog text parser if you need to process + // text that the player types in to the parser. + // It is not used by default. +} + +function sldSpeed_OnChange(GUIControl *control) +{ + SetGameSpeed(sldSpeed.Value); +} + +function btnRestart_OnClick(GUIControl *control, MouseButton button) +{ + gRestartYN.Visible=true; + gIconbar.Visible=false; +} + +function btnRestartYes_OnClick(GUIControl *control, MouseButton button) +{ + RestartGame(); +} + +function btnRestartNo_OnClick(GUIControl *control, MouseButton button) +{ + gRestartYN.Visible = false; + gIconbar.Visible = true; + // If the panel's not ON, then the player must have gotten here by tapping F9, + // therefore his cursor needs restoring. If the panel IS on, then it doesn't, + // because it's already a pointer. Get used to thinking like this!! + if (!gPanel.Visible) mouse.UseDefaultGraphic(); +} + +function btnCancelSave_OnClick(GUIControl *control, MouseButton button) +{ + close_save_game_dialog(); +} + +function btnSaveGame_OnClick(GUIControl *control, MouseButton button) +{ + int gameSlotToSaveInto = lstSaveGamesList.ItemCount + 1; + int i = 0; + while (i < lstSaveGamesList.ItemCount) + { + if (lstSaveGamesList.Items[i] == txtNewSaveName.Text) + { + gameSlotToSaveInto = lstSaveGamesList.SaveGameSlots[i]; + } + i++; + } + SaveGameSlot(gameSlotToSaveInto, txtNewSaveName.Text); + close_save_game_dialog(); +} + +function btnCancelRestore_OnClick(GUIControl *control, MouseButton button) +{ + close_restore_game_dialog(); +} + +function btnRestoreGame_OnClick(GUIControl *control, MouseButton button) +{ + if (lstRestoreGamesList.SelectedIndex >= 0) + { + RestoreGameSlot(lstRestoreGamesList.SaveGameSlots[lstRestoreGamesList.SelectedIndex]); + } + close_restore_game_dialog(); +} + +function lstSaveGamesList_OnSelectionCh(GUIControl *control) +{ + txtNewSaveName.Text = lstSaveGamesList.Items[lstSaveGamesList.SelectedIndex]; +} + +function txtNewSaveName_OnActivate(GUIControl *control) +{ + // Pressing return in the text box simulates clicking the Save button + btnSaveGame_OnClick(control, eMouseLeft); +} + +function btnDeleteSave_OnClick(GUIControl *control, MouseButton button) +{ + if (lstSaveGamesList.SelectedIndex >= 0) + { + DeleteSaveSlot(lstSaveGamesList.SaveGameSlots[lstSaveGamesList.SelectedIndex]); + lstSaveGamesList.FillSaveGameList(); + } +} diff --git a/samples/AGS Script/GlobalScript.ash b/samples/AGS Script/GlobalScript.ash new file mode 100644 index 00000000..2dab2f11 --- /dev/null +++ b/samples/AGS Script/GlobalScript.ash @@ -0,0 +1,4 @@ +// Main header script - this will be included into every script in +// the game (local and global). Do not place functions here; rather, +// place import definitions and #define names here to be used by all +// scripts. diff --git a/samples/AGS Script/KeyboardMovement_102.asc b/samples/AGS Script/KeyboardMovement_102.asc new file mode 100644 index 00000000..8776789a --- /dev/null +++ b/samples/AGS Script/KeyboardMovement_102.asc @@ -0,0 +1,216 @@ +// Main script for module 'KeyboardMovement' + +//**************************************************************************************************** +// DEFINITIONS +//**************************************************************************************************** + +#define DISTANCE 10000// distance player walks in Tapping mode before he stops + +enum KeyboardMovement_Directions { + eKeyboardMovement_Stop, + eKeyboardMovement_DownLeft, + eKeyboardMovement_Down, + eKeyboardMovement_DownRight, + eKeyboardMovement_Left, + eKeyboardMovement_Right, + eKeyboardMovement_UpLeft, + eKeyboardMovement_Up, + eKeyboardMovement_UpRight +}; + +//**************************************************************************************************** +// VARIABLES +//**************************************************************************************************** + +// keycodes as variables for future key customization functions (static variables?): +int KeyboardMovement_KeyDown = 380; // down arrow +int KeyboardMovement_KeyLeft = 375; // left arrow +int KeyboardMovement_KeyRight = 377; // right arrow +int KeyboardMovement_KeyUp = 372; // up arrow +int KeyboardMovement_KeyDownRight = 381; // PgDn (numpad) +int KeyboardMovement_KeyUpRight = 373; // PgUp (numpad) +int KeyboardMovement_KeyDownLeft = 379; // End (numpad) +int KeyboardMovement_KeyUpLeft = 371; // Home (numpad) +int KeyboardMovement_KeyStop = 376; // 5 (numpad) + +KeyboardMovement_Modes KeyboardMovement_Mode = eKeyboardMovement_None; // stores current keyboard control mode (disabled by default) + +KeyboardMovement_Directions KeyboardMovement_CurrentDirection = eKeyboardMovement_Stop; // stores current walking direction of player character + +//**************************************************************************************************** +// USER FUNCTIONS +//**************************************************************************************************** + +//==================================================================================================== + +static function KeyboardMovement::SetMode(KeyboardMovement_Modes mode) { + KeyboardMovement_Mode = mode; +} + +//==================================================================================================== + +// key customization functions here + +//==================================================================================================== + +//**************************************************************************************************** +// EVENT HANDLER FUNCTIONS +//**************************************************************************************************** + +//==================================================================================================== + +function repeatedly_execute() { + + //-------------------------------------------------- + // Pressing mode + //-------------------------------------------------- + + if ((IsGamePaused() == true) || (KeyboardMovement_Mode != eKeyboardMovement_Pressing) || (IsInterfaceEnabled() == false) || (player.on == false)) return 0; + // if game is paused, module or mode disabled, interface disabled or player character hidden, quit function + + KeyboardMovement_Directions newdirection; // declare variable storing new direction + + // get new direction: + if ( ((IsKeyPressed(KeyboardMovement_KeyDown)) && (IsKeyPressed(KeyboardMovement_KeyRight))) || (IsKeyPressed(KeyboardMovement_KeyDownRight)) ) newdirection = eKeyboardMovement_DownRight; // if down&right arrows or PgDn (numeric pad) held down, set new direction to Down-Right + else if ( ((IsKeyPressed(KeyboardMovement_KeyUp)) && (IsKeyPressed(KeyboardMovement_KeyRight))) || (IsKeyPressed(KeyboardMovement_KeyUpRight)) ) newdirection = eKeyboardMovement_UpRight; // up&right arrows or PgUp (numpad) + else if ( ((IsKeyPressed(KeyboardMovement_KeyDown)) && (IsKeyPressed(KeyboardMovement_KeyLeft))) || (IsKeyPressed(KeyboardMovement_KeyDownLeft)) ) newdirection = eKeyboardMovement_DownLeft; // down&left arrows or End (numpad) + else if ( ((IsKeyPressed(KeyboardMovement_KeyUp)) && (IsKeyPressed(KeyboardMovement_KeyLeft))) || (IsKeyPressed(KeyboardMovement_KeyUpLeft)) ) newdirection = eKeyboardMovement_UpLeft; // up&left arrows or Home (numpad) + else if (IsKeyPressed(KeyboardMovement_KeyDown)) newdirection = eKeyboardMovement_Down; // down arrow + else if (IsKeyPressed(KeyboardMovement_KeyLeft)) newdirection = eKeyboardMovement_Left; // left arrow + else if (IsKeyPressed(KeyboardMovement_KeyRight)) newdirection = eKeyboardMovement_Right; // right arrow + else if (IsKeyPressed(KeyboardMovement_KeyUp)) newdirection = eKeyboardMovement_Up; // up arrow + else newdirection = eKeyboardMovement_Stop; // if none of the above held down, set it to stop player character + + if (IsKeyPressed(KeyboardMovement_KeyStop)) newdirection = eKeyboardMovement_Stop; // if 5 (numeric pad) held down, stop player character, regardless of whether some of the above are held down + + if (newdirection != KeyboardMovement_CurrentDirection) { // if new direction is different from current direction + + if (newdirection == eKeyboardMovement_Stop) player.StopMoving(); // if new direction is the Stop command, stop movement of player character + else { // if new direction is NOT the Stop command + + int dx, dy; // declare variables storing new walk coordinates + if (newdirection == eKeyboardMovement_DownRight) { + dx = DISTANCE; + dy = DISTANCE; + } + else if (newdirection == eKeyboardMovement_UpRight) { + dx = DISTANCE; + dy = -DISTANCE; + } + else if (newdirection == eKeyboardMovement_DownLeft) { + dx = -DISTANCE; + dy = DISTANCE; + } + else if (newdirection == eKeyboardMovement_UpLeft) { + dx = -DISTANCE; + dy = -DISTANCE; + } + else if (newdirection == eKeyboardMovement_Down) { + dx = 0; + dy = DISTANCE; + } + else if (newdirection == eKeyboardMovement_Left) { + dx = -DISTANCE; + dy = 0; + } + else if (newdirection == eKeyboardMovement_Right) { + dx = DISTANCE; + dy = 0; + } + else if (newdirection == eKeyboardMovement_Up) { + dx = 0; + dy = -DISTANCE; + } + + player.WalkStraight(player.x + dx, player.y + dy, eNoBlock); // walk player character to the new coordinates + } + KeyboardMovement_CurrentDirection = newdirection; // update current direction to new direction + + } + +} + +//==================================================================================================== + +function on_key_press(int keycode) { + + //-------------------------------------------------- + // Tapping mode + //-------------------------------------------------- + + if ((IsGamePaused() == true) || (KeyboardMovement_Mode != eKeyboardMovement_Tapping) || (IsInterfaceEnabled() == false) || (player.on == false)) return 0; + // if game is paused, module or mode disabled, interface disabled or player character hidden, quit function + + KeyboardMovement_Directions newdirection; // declare variable storing new direction + + // get new direction: + if (keycode == KeyboardMovement_KeyDownRight) newdirection = eKeyboardMovement_DownRight; // if down-right key pressed, set new direction to Down-Right + else if (keycode == KeyboardMovement_KeyUpRight) newdirection = eKeyboardMovement_UpRight; + else if (keycode == KeyboardMovement_KeyDownLeft) newdirection = eKeyboardMovement_DownLeft; + else if (keycode == KeyboardMovement_KeyUpLeft) newdirection = eKeyboardMovement_UpLeft; + else if (keycode == KeyboardMovement_KeyDown) newdirection = eKeyboardMovement_Down; + else if (keycode == KeyboardMovement_KeyLeft) newdirection = eKeyboardMovement_Left; + else if (keycode == KeyboardMovement_KeyRight) newdirection = eKeyboardMovement_Right; + else if (keycode == KeyboardMovement_KeyUp) newdirection = eKeyboardMovement_Up; + else if (keycode == KeyboardMovement_KeyStop) newdirection = eKeyboardMovement_Stop; // if stop key pressed, set to stop player character + + if (newdirection != KeyboardMovement_CurrentDirection) { // if new direction is different from current direction + + if (newdirection == eKeyboardMovement_Stop) player.StopMoving(); // if new direction is the Stop command, stop movement of player character + else { // if new direction is NOT the Stop command + + int dx, dy; // declare variables storing new walk coordinates + if (newdirection == eKeyboardMovement_DownRight) { + dx = DISTANCE; + dy = DISTANCE; + } + else if (newdirection == eKeyboardMovement_UpRight) { + dx = DISTANCE; + dy = -DISTANCE; + } + else if (newdirection == eKeyboardMovement_DownLeft) { + dx = -DISTANCE; + dy = DISTANCE; + } + else if (newdirection == eKeyboardMovement_UpLeft) { + dx = -DISTANCE; + dy = -DISTANCE; + } + else if (newdirection == eKeyboardMovement_Down) { + dx = 0; + dy = DISTANCE; + } + else if (newdirection == eKeyboardMovement_Left) { + dx = -DISTANCE; + dy = 0; + } + else if (newdirection == eKeyboardMovement_Right) { + dx = DISTANCE; + dy = 0; + } + else if (newdirection == eKeyboardMovement_Up) { + dx = 0; + dy = -DISTANCE; + } + + player.WalkStraight(player.x + dx, player.y + dy, eNoBlock); // walk player character to the new coordinates + } + KeyboardMovement_CurrentDirection = newdirection; // update current direction to new direction + + } + else { // if new direction is same as current direction + player.StopMoving(); // stop player character + KeyboardMovement_CurrentDirection = eKeyboardMovement_Stop; // update current direction + } + +} + +//==================================================================================================== + +function on_event(EventType event, int data) { + + if (event == eEventLeaveRoom) KeyboardMovement_CurrentDirection = eKeyboardMovement_Stop; + +} + +//==================================================================================================== diff --git a/samples/AGS Script/KeyboardMovement_102.ash b/samples/AGS Script/KeyboardMovement_102.ash new file mode 100644 index 00000000..a1e28c2c --- /dev/null +++ b/samples/AGS Script/KeyboardMovement_102.ash @@ -0,0 +1,13 @@ +// Script header for module 'KeyboardMovement' + +#define KeyboardMovement_VERSION 101 + +enum KeyboardMovement_Modes { + eKeyboardMovement_None, + eKeyboardMovement_Tapping, + eKeyboardMovement_Pressing +}; + +struct KeyboardMovement { + import static function SetMode(KeyboardMovement_Modes mode); +}; From be86f28be175d871df22efe1437bbaf5595e3f7b Mon Sep 17 00:00:00 2001 From: Edmundo Ruiz Date: Sat, 16 Aug 2014 12:22:22 -0700 Subject: [PATCH 220/268] Raked samples file with AGS Script. --- lib/linguist/samples.json | 368 +++++++++++++++++++++++++++++++++++++- 1 file changed, 365 insertions(+), 3 deletions(-) diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index 68ba6f6b..d981b824 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -3,6 +3,10 @@ "ABAP": [ ".abap" ], + "AGS Script": [ + ".asc", + ".ash" + ], "ATS": [ ".atxt", ".dats", @@ -829,8 +833,8 @@ "exception.zep.php" ] }, - "tokens_total": 651675, - "languages_total": 892, + "tokens_total": 654392, + "languages_total": 896, "tokens": { "ABAP": { "*/**": 1, @@ -1091,6 +1095,362 @@ "pos": 2, "endclass.": 1 }, + "AGS Script": { + "function": 54, + "initialize_control_panel": 2, + "(": 281, + ")": 282, + "{": 106, + "gPanel.Centre": 1, + ";": 235, + "gRestartYN.Centre": 1, + "if": 96, + "IsSpeechVoxAvailable": 3, + "lblVoice.Visible": 1, + "false": 26, + "btnVoice.Visible": 1, + "sldVoice.Visible": 1, + "}": 107, + "else": 44, + "SetVoiceMode": 6, + "eSpeechVoiceAndText": 4, + "btnVoice.Text": 9, + "System.SupportsGammaControl": 3, + "sldGamma.Visible": 1, + "lblGamma.Visible": 1, + "//And": 1, + "now": 1, + "set": 7, + "all": 2, + "the": 15, + "defaults": 1, + "System.Volume": 5, + "sldAudio.Value": 3, + "SetGameSpeed": 3, + "sldSpeed.Value": 3, + "sldVoice.Value": 3, + "SetSpeechVolume": 3, + "System.Gamma": 3, + "sldGamma.Value": 3, + "game_start": 1, + "KeyboardMovement.SetMode": 1, + "eKeyboardMovement_Tapping": 3, + "repeatedly_execute": 2, + "IsGamePaused": 4, + "return": 8, + "repeatedly_execute_always": 1, + "show_inventory_window": 3, + "gInventory.Visible": 2, + "true": 18, + "mouse.Mode": 13, + "eModeInteract": 3, + "mouse.UseModeGraphic": 8, + "eModePointer": 8, + "show_save_game_dialog": 3, + "gSaveGame.Visible": 3, + "lstSaveGamesList.FillSaveGameList": 2, + "lstSaveGamesList.ItemCount": 3, + "txtNewSaveName.Text": 5, + "lstSaveGamesList.Items": 3, + "[": 6, + "]": 6, + "gIconbar.Visible": 15, + "show_restore_game_dialog": 3, + "gRestoreGame.Visible": 3, + "lstRestoreGamesList.FillSaveGameList": 1, + "close_save_game_dialog": 4, + "mouse.UseDefaultGraphic": 9, + "close_restore_game_dialog": 4, + "on_key_press": 2, + "eKeyCode": 1, + "keycode": 27, + "eKeyEscape": 5, + "&&": 8, + "gRestartYN.Visible": 6, + "//Use": 1, + "ESC": 1, + "to": 14, + "cancel": 1, + "restart.": 1, + "gPanel.Visible": 11, + "eKeyReturn": 1, + "RestartGame": 2, + "||": 12, + "IsInterfaceEnabled": 3, + "eKeyCtrlQ": 1, + "QuitGame": 3, + "//": 66, + "Ctrl": 1, + "-": 217, + "Q": 1, + "eKeyF5": 1, + "F5": 1, + "eKeyF7": 1, + "F7": 1, + "eKeyF9": 1, + "eKeyF12": 1, + "SaveScreenShot": 1, + "F12": 1, + "eKeyTab": 1, + "Tab": 1, + "show": 1, + "inventory": 2, + "eModeWalkto": 2, + "//Notice": 1, + "this": 1, + "alternate": 1, + "way": 1, + "indicate": 1, + "keycodes.": 1, + "eModeLookat": 1, + "//Note": 1, + "that": 1, + "we": 1, + "do": 1, + "here": 1, + "is": 10, + "modes.": 1, + "//If": 1, + "you": 1, + "want": 1, + "something": 1, + "happen": 1, + "such": 1, + "as": 2, + "GUI": 3, + "buttons": 1, + "highlighting": 1, + "eModeTalkto": 2, + "//you": 1, + "I": 1, + "P": 1, + "G": 1, + "t": 1, + "allow": 1, + "mouse": 2, + "click": 1, + "button": 33, + "eMouseLeft": 4, + "ProcessClick": 2, + "mouse.x": 2, + "mouse.y": 2, + "eMouseRight": 1, + "eMouseWheelSouth": 1, + "mouse.SelectNextMode": 1, + "eMouseMiddle": 1, + "eMouseWheelNorth": 1, + "player.ActiveInventory": 2, + "null": 2, + "//...and": 1, + "player": 13, + "has": 1, + "a": 1, + "selected": 1, + "item": 1, + "mode": 10, + "UseInv.": 1, + "eModeUseinv": 2, + "interface_click": 1, + "int": 18, + "interface": 3, + "btnInvUp_Click": 1, + "GUIControl": 31, + "*control": 31, + "MouseButton": 26, + "invCustomInv.ScrollUp": 1, + "btnInvDown_Click": 1, + "invCustomInv.ScrollDown": 1, + "btnInvOK_Click": 1, + "They": 2, + "pressed": 4, + "OK": 1, + "close": 1, + "btnInvSelect_Click": 1, + "SELECT": 1, + "so": 1, + "switch": 1, + "Get": 1, + "cursor": 1, + "But": 1, + "override": 1, + "appearance": 1, + "look": 1, + "like": 1, + "arrow": 9, + "btnIconInv_Click": 1, + "btnIconCurInv_Click": 1, + "btnIconSave_Click": 2, + "btnIconLoad_Click": 2, + "btnIconExit_Click": 1, + "btnIconAbout_Click": 1, + "cEgo_Look": 1, + "Display": 4, + "cEgo_Interact": 1, + "cEgo_Talk": 1, + "//START": 1, + "OF": 2, + "CONTROL": 2, + "PANEL": 2, + "FUNCTIONS": 2, + "btnSave_OnClick": 1, + "Wait": 3, + "btnIconSave": 1, + "gControl_OnClick": 1, + "*theGui": 1, + "btnAbout_OnClick": 1, + "btnQuit_OnClick": 1, + "btnLoad_OnClick": 1, + "btnIconLoad": 1, + "btnResume_OnClick": 1, + "sldAudio_OnChange": 1, + "sldVoice_OnChange": 1, + "btnVoice_OnClick": 1, + "eSpeechVoiceOnly": 1, + "eSpeechTextOnly": 1, + "sldGamma_OnChange": 1, + "btnDefault_OnClick": 1, + "//END": 1, + "dialog_request": 1, + "param": 1, + "sldSpeed_OnChange": 1, + "btnRestart_OnClick": 1, + "btnRestartYes_OnClick": 1, + "btnRestartNo_OnClick": 1, + "btnCancelSave_OnClick": 1, + "btnSaveGame_OnClick": 2, + "gameSlotToSaveInto": 3, + "+": 7, + "i": 5, + "while": 1, + "<": 1, + "lstSaveGamesList.SaveGameSlots": 2, + "SaveGameSlot": 1, + "btnCancelRestore_OnClick": 1, + "btnRestoreGame_OnClick": 1, + "lstRestoreGamesList.SelectedIndex": 2, + "RestoreGameSlot": 1, + "lstRestoreGamesList.SaveGameSlots": 1, + "lstSaveGamesList_OnSelectionCh": 1, + "lstSaveGamesList.SelectedIndex": 3, + "txtNewSaveName_OnActivate": 1, + "control": 2, + "btnDeleteSave_OnClick": 1, + "DeleteSaveSlot": 1, + "//****************************************************************************************************": 8, + "#define": 2, + "DISTANCE": 25, + "distance": 1, + "walks": 1, + "in": 1, + "Tapping": 2, + "before": 1, + "he": 1, + "stops": 1, + "enum": 2, + "KeyboardMovement_Directions": 4, + "eKeyboardMovement_Stop": 9, + "eKeyboardMovement_DownLeft": 5, + "eKeyboardMovement_Down": 5, + "eKeyboardMovement_DownRight": 5, + "eKeyboardMovement_Left": 5, + "eKeyboardMovement_Right": 5, + "eKeyboardMovement_UpLeft": 5, + "eKeyboardMovement_Up": 5, + "eKeyboardMovement_UpRight": 5, + "KeyboardMovement_KeyDown": 5, + "down": 9, + "KeyboardMovement_KeyLeft": 5, + "left": 4, + "KeyboardMovement_KeyRight": 5, + "right": 5, + "KeyboardMovement_KeyUp": 5, + "up": 4, + "KeyboardMovement_KeyDownRight": 3, + "PgDn": 2, + "numpad": 8, + "KeyboardMovement_KeyUpRight": 3, + "PgUp": 2, + "KeyboardMovement_KeyDownLeft": 3, + "End": 2, + "KeyboardMovement_KeyUpLeft": 3, + "Home": 2, + "KeyboardMovement_KeyStop": 3, + "KeyboardMovement_Modes": 4, + "KeyboardMovement_Mode": 4, + "eKeyboardMovement_None": 2, + "stores": 2, + "current": 8, + "keyboard": 1, + "disabled": 5, + "by": 1, + "default": 1, + "KeyboardMovement_CurrentDirection": 7, + "walking": 1, + "direction": 22, + "of": 6, + "character": 11, + "static": 2, + "KeyboardMovement": 2, + "SetMode": 2, + "Pressing": 1, + "eKeyboardMovement_Pressing": 2, + "player.on": 2, + "game": 2, + "paused": 2, + "module": 2, + "or": 8, + "hidden": 2, + "quit": 2, + "newdirection": 43, + "declare": 4, + "variable": 2, + "storing": 4, + "new": 19, + "get": 2, + "IsKeyPressed": 17, + "&": 4, + "arrows": 4, + "numeric": 2, + "pad": 2, + "held": 4, + "Down": 2, + "Right": 2, + "none": 1, + "above": 2, + "it": 1, + "stop": 7, + "regardless": 1, + "whether": 1, + "some": 1, + "are": 1, + "different": 2, + "from": 2, + "player.StopMoving": 3, + "Stop": 4, + "command": 4, + "movement": 2, + "NOT": 2, + "dx": 20, + "dy": 20, + "variables": 2, + "walk": 4, + "coordinates": 4, + "player.WalkStraight": 2, + "player.x": 2, + "player.y": 2, + "eNoBlock": 2, + "update": 3, + "key": 2, + "same": 1, + "on_event": 1, + "EventType": 1, + "event": 2, + "data": 1, + "eEventLeaveRoom": 1, + "KeyboardMovement_VERSION": 1, + "struct": 1, + "import": 1 + }, "ATS": { "//": 211, "#include": 16, @@ -72103,6 +72463,7 @@ }, "language_tokens": { "ABAP": 1500, + "AGS Script": 2717, "ATS": 4558, "Agda": 376, "Alloy": 1143, @@ -72311,6 +72672,7 @@ }, "languages": { "ABAP": 1, + "AGS Script": 4, "ATS": 10, "Agda": 1, "Alloy": 3, @@ -72517,5 +72879,5 @@ "fish": 3, "wisp": 1 }, - "md5": "6ad93b92805b6680a539a188d7c820fa" + "md5": "bfcc1394a867e7d464859dd597eba7ad" } \ No newline at end of file From e5f20314e99ffe567fd0d1afc66279f8d6a8754d Mon Sep 17 00:00:00 2001 From: James Adams Date: Tue, 19 Aug 2014 13:17:26 +0100 Subject: [PATCH 221/268] Use Pygments Pan lexer The upstream pygments patches seem to have landed at GitHub as Pan code blocks are being correctly highlighted, we should extend this to files in repositories as well. --- lib/linguist/languages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 551ad886..0b53b1fe 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1637,7 +1637,7 @@ PHP: Pan: type: programming - lexer: Text only + lexer: Pan color: '#cc0000' extensions: - .pan From bc01f8b25f4deb37dee05be3e8eb897507a749a7 Mon Sep 17 00:00:00 2001 From: Thomas Braun Date: Tue, 19 Aug 2014 17:14:13 +0200 Subject: [PATCH 222/268] Add highlighting for Igor Pro procedures Available in pygments since 5ceb7533e214. Signed-off-by: Thomas Braun --- lib/linguist/languages.yml | 6 ++++++ samples/IGOR Pro/functions.ipf | 38 ++++++++++++++++++++++++++++++++++ samples/IGOR Pro/generic.ipf | 21 +++++++++++++++++++ 3 files changed, 65 insertions(+) create mode 100644 samples/IGOR Pro/functions.ipf create mode 100644 samples/IGOR Pro/generic.ipf diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 551ad886..5507967b 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -996,6 +996,12 @@ IDL: - .pro - .dlm +IGOR Pro: + type: programming + lexer: Igor + extensions: + - .ipf + INI: type: data extensions: diff --git a/samples/IGOR Pro/functions.ipf b/samples/IGOR Pro/functions.ipf new file mode 100644 index 00000000..a1c82363 --- /dev/null +++ b/samples/IGOR Pro/functions.ipf @@ -0,0 +1,38 @@ +#pragma rtGlobals=3 + +Function FooBar() + return 0 +End + +Function FooBarSubType() : ButtonControl + return 0 +End + +Function/D FooBarVar() + return 0 +End + +static Function FooBarStatic() + return 0 +End + +threadsafe static Function FooBarStaticThreadsafe() + return 0 +End + +threadsafe Function FooBarThread() + return 0 +End + +Function CallOperationsAndBuiltInFuncs(string var) + + string someDQString = "abcd" + + Make/N=(1,2,3,4) myWave + Redimension/N=(-1,-1,-1,5) myWave + + print strlen(someDQString) + + return 0 +End + diff --git a/samples/IGOR Pro/generic.ipf b/samples/IGOR Pro/generic.ipf new file mode 100644 index 00000000..63f96aeb --- /dev/null +++ b/samples/IGOR Pro/generic.ipf @@ -0,0 +1,21 @@ +#pragma rtGlobals=3 + +StrConstant myConstString="abcd" +// some comment +constant myConst=123 + +Structure struct1 + string str + variable var +EndStructure + +static Structure struct2 + string str + variable var +EndStructure + +#include "someFile" + +#ifdef NOT_DEFINED + // conditional compilation +#endif From a24afb0e12b71cce0199dfa85e0e09043f5fb7f4 Mon Sep 17 00:00:00 2001 From: John Haugeland Date: Wed, 20 Aug 2014 19:30:57 -0700 Subject: [PATCH 223/268] Add APL to recognized languages --- lib/linguist/languages.yml | 6 ++++++ samples/APL/DeepakChopra.apl | 18 ++++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 samples/APL/DeepakChopra.apl diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 551ad886..d85d33e1 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -45,6 +45,12 @@ ANTLR: extensions: - .g4 +APL: + type: programming + color: "#8a0707" + extensions: + - .apl + ASP: type: programming color: "#6a40fd" diff --git a/samples/APL/DeepakChopra.apl b/samples/APL/DeepakChopra.apl new file mode 100644 index 00000000..ba7fd625 --- /dev/null +++ b/samples/APL/DeepakChopra.apl @@ -0,0 +1,18 @@ +⍝ You can try this at http://tryapl.org/ +⍝ I can not explain how much I suddenly love this crypto-language + + + +Starts ← 'Experiential truth ' 'The physical world ' 'Non-judgment ' 'Quantum physics ' +Middles ← 'nurtures an ' 'projects onto ' 'imparts reality to ' 'constructs with ' +Qualifiers ← 'abundance of ' 'the barrier of ' 'self-righteous ' 'potential ' +Finishes ← 'marvel.' 'choices.' 'creativity.' 'actions.' + +rf ← {(?⍴⍵)⊃⍵} +erf ← {rf ¨ ⍵} + +deepak ← {erf Starts Middles Qualifiers Finishes} + + + +deepak ⍬ \ No newline at end of file From edaea7bede50e878b895ff54a878c7274bd173eb Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Thu, 21 Aug 2014 15:32:16 -0500 Subject: [PATCH 224/268] Samples update --- lib/linguist/samples.json | 76 +++++++++++++++++++++++++++++++++++++-- 1 file changed, 73 insertions(+), 3 deletions(-) diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index d981b824..dd234ab0 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -7,6 +7,9 @@ ".asc", ".ash" ], + "APL": [ + ".apl" + ], "ATS": [ ".atxt", ".dats", @@ -163,6 +166,9 @@ "Emacs Lisp": [ ".el" ], + "EmberScript": [ + ".em" + ], "Erlang": [ ".erl", ".escript", @@ -833,8 +839,8 @@ "exception.zep.php" ] }, - "tokens_total": 654392, - "languages_total": 896, + "tokens_total": 654479, + "languages_total": 898, "tokens": { "ABAP": { "*/**": 1, @@ -1451,6 +1457,36 @@ "struct": 1, "import": 1 }, + "APL": { + "You": 1, + "can": 2, + "try": 1, + "this": 2, + "at": 1, + "http": 1, + "//tryapl.org/": 1, + "I": 2, + "not": 1, + "explain": 1, + "how": 1, + "much": 1, + "suddenly": 1, + "love": 1, + "crypto": 1, + "-": 1, + "language": 1, + "Starts": 2, + "Middles": 2, + "Qualifiers": 2, + "Finishes": 2, + "rf": 2, + "{": 3, + "(": 1, + ")": 1, + "}": 3, + "erf": 2, + "deepak": 2 + }, "ATS": { "//": 211, "#include": 16, @@ -21285,6 +21321,36 @@ "screws": 1, "egrep": 1 }, + "EmberScript": { + "class": 1, + "App.FromNowView": 2, + "extends": 1, + "Ember.View": 1, + "tagName": 1, + "template": 1, + "Ember.Handlebars.compile": 1, + "output": 1, + "return": 1, + "moment": 1, + "(": 5, + "@value": 1, + ")": 5, + ".fromNow": 1, + "didInsertElement": 1, + "-": 4, + "@tick": 2, + "tick": 1, + "f": 2, + "@notifyPropertyChange": 1, + "nextTick": 4, + "Ember.run.later": 1, + "this": 1, + "@set": 1, + "willDestroyElement": 1, + "@nextTick": 1, + "Ember.run.cancel": 1, + "Ember.Handlebars.helper": 1 + }, "Erlang": { "SHEBANG#!escript": 3, "%": 134, @@ -72464,6 +72530,7 @@ "language_tokens": { "ABAP": 1500, "AGS Script": 2717, + "APL": 42, "ATS": 4558, "Agda": 376, "Alloy": 1143, @@ -72508,6 +72575,7 @@ "Eagle": 30089, "Elm": 628, "Emacs Lisp": 1756, + "EmberScript": 45, "Erlang": 2928, "Forth": 1516, "Frege": 5564, @@ -72673,6 +72741,7 @@ "languages": { "ABAP": 1, "AGS Script": 4, + "APL": 1, "ATS": 10, "Agda": 1, "Alloy": 3, @@ -72717,6 +72786,7 @@ "Eagle": 2, "Elm": 3, "Emacs Lisp": 2, + "EmberScript": 1, "Erlang": 5, "Forth": 7, "Frege": 4, @@ -72879,5 +72949,5 @@ "fish": 3, "wisp": 1 }, - "md5": "bfcc1394a867e7d464859dd597eba7ad" + "md5": "b7e3e6804093f11267b22f781f54de75" } \ No newline at end of file From c97abe7ef58d495d1b109373268778950940e38f Mon Sep 17 00:00:00 2001 From: John Haugeland Date: Wed, 20 Aug 2014 20:31:29 -0700 Subject: [PATCH 225/268] Add Opal to list of recognized languages --- lib/linguist/languages.yml | 7 +++++++ samples/Opal/DeepakChopra.opal | 9 +++++++++ 2 files changed, 16 insertions(+) create mode 100644 samples/Opal/DeepakChopra.opal diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 551ad886..e5c04112 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1564,6 +1564,13 @@ Opa: extensions: - .opa +Opal: + type: programming + color: "#f7ede0" + lexer: Text only + extensions: + - .opal + OpenCL: type: programming group: C diff --git a/samples/Opal/DeepakChopra.opal b/samples/Opal/DeepakChopra.opal new file mode 100644 index 00000000..dfab7289 --- /dev/null +++ b/samples/Opal/DeepakChopra.opal @@ -0,0 +1,9 @@ +-- Deepak Chopra nonsense text generator +-- see https://github.com/StoneCypher/DeepakChopra_Opal/ + +starts = ["Experiential truth ", "The physical world ", "Non-judgment ", "Quantum physics "] +middles = ["nurtures an ", "projects onto ", "imparts reality to ", "constructs with "] +qualifiers = ["abundance of ", "the barrier of ", "self-righteous ", "potential "] +finishes = ["marvel.", "choices.", "creativity.", "actions."] + +alert starts.sample + middles.sample + qualifiers.sample + finishes.sample \ No newline at end of file From 5d4a24dd4f92073e96628f9fc04b5c8aab291854 Mon Sep 17 00:00:00 2001 From: "Dennis J. McWherter Jr" Date: Fri, 22 Aug 2014 20:51:36 -0500 Subject: [PATCH 226/268] Added PigLatin language identification. Updated languages.yml to associate *.pig files with PigLatin. Added pig script example to samples/. Updated the samples.json with to account for new sample. --- lib/linguist/languages.yml | 7 +++++++ lib/linguist/samples.json | 34 +++++++++++++++++++++++++++++++--- samples/PigLatin/example.pig | 10 ++++++++++ 3 files changed, 48 insertions(+), 3 deletions(-) create mode 100644 samples/PigLatin/example.pig diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index b306aea5..8812b92f 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1714,6 +1714,13 @@ Perl6: - .pl6 - .pm6 +PigLatin: + type: programming + color: "#fcd7de" + lexer: Text only + extensions: + - .pig + Pike: type: programming color: "#066ab2" diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index dd234ab0..d1bbdd78 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -481,6 +481,9 @@ ".p6", ".pm6" ], + "PigLatin": [ + ".pig" + ], "Pike": [ ".pike", ".pmod" @@ -839,8 +842,8 @@ "exception.zep.php" ] }, - "tokens_total": 654479, - "languages_total": 898, + "tokens_total": 654509, + "languages_total": 899, "tokens": { "ABAP": { "*/**": 1, @@ -55158,6 +55161,29 @@ "": 1, "roleq": 1 }, + "PigLatin": { + "REGISTER": 1, + "SOME_JAR": 1, + ";": 4, + "A": 2, + "LOAD": 1, + "USING": 1, + "PigStorage": 1, + "(": 2, + ")": 2, + "AS": 1, + "name": 2, + "chararray": 1, + "age": 1, + "int": 1, + "-": 2, + "Load": 1, + "person": 1, + "B": 2, + "FOREACH": 1, + "generate": 1, + "DUMP": 1 + }, "Pike": { "#pike": 2, "__REAL_VERSION__": 2, @@ -72665,6 +72691,7 @@ "Pascal": 30, "Perl": 20690, "Perl6": 372, + "PigLatin": 30, "Pike": 1835, "Pod": 658, "PogoScript": 250, @@ -72876,6 +72903,7 @@ "Pascal": 1, "Perl": 17, "Perl6": 3, + "PigLatin": 1, "Pike": 2, "Pod": 1, "PogoScript": 1, @@ -72949,5 +72977,5 @@ "fish": 3, "wisp": 1 }, - "md5": "b7e3e6804093f11267b22f781f54de75" + "md5": "17cee34e914b3954bc81eacdef0b0ab8" } \ No newline at end of file diff --git a/samples/PigLatin/example.pig b/samples/PigLatin/example.pig new file mode 100644 index 00000000..6c6f73a8 --- /dev/null +++ b/samples/PigLatin/example.pig @@ -0,0 +1,10 @@ +/** + * sample.pig + */ + +REGISTER $SOME_JAR; + +A = LOAD 'person' USING PigStorage() AS (name:chararray, age:int); -- Load person +B = FOREACH A generate name; +DUMP B; + From 5409c39e354d35b23077b6dbbc8beb0f5f0cd98a Mon Sep 17 00:00:00 2001 From: "Dennis J. McWherter Jr" Date: Sat, 23 Aug 2014 15:39:31 -0500 Subject: [PATCH 227/268] Reverted samples.json. --- lib/linguist/samples.json | 34 +++------------------------------- 1 file changed, 3 insertions(+), 31 deletions(-) diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index d1bbdd78..dd234ab0 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -481,9 +481,6 @@ ".p6", ".pm6" ], - "PigLatin": [ - ".pig" - ], "Pike": [ ".pike", ".pmod" @@ -842,8 +839,8 @@ "exception.zep.php" ] }, - "tokens_total": 654509, - "languages_total": 899, + "tokens_total": 654479, + "languages_total": 898, "tokens": { "ABAP": { "*/**": 1, @@ -55161,29 +55158,6 @@ "": 1, "roleq": 1 }, - "PigLatin": { - "REGISTER": 1, - "SOME_JAR": 1, - ";": 4, - "A": 2, - "LOAD": 1, - "USING": 1, - "PigStorage": 1, - "(": 2, - ")": 2, - "AS": 1, - "name": 2, - "chararray": 1, - "age": 1, - "int": 1, - "-": 2, - "Load": 1, - "person": 1, - "B": 2, - "FOREACH": 1, - "generate": 1, - "DUMP": 1 - }, "Pike": { "#pike": 2, "__REAL_VERSION__": 2, @@ -72691,7 +72665,6 @@ "Pascal": 30, "Perl": 20690, "Perl6": 372, - "PigLatin": 30, "Pike": 1835, "Pod": 658, "PogoScript": 250, @@ -72903,7 +72876,6 @@ "Pascal": 1, "Perl": 17, "Perl6": 3, - "PigLatin": 1, "Pike": 2, "Pod": 1, "PogoScript": 1, @@ -72977,5 +72949,5 @@ "fish": 3, "wisp": 1 }, - "md5": "17cee34e914b3954bc81eacdef0b0ab8" + "md5": "b7e3e6804093f11267b22f781f54de75" } \ No newline at end of file From 474e536ae8417ab11deb611d7cc2b5fab588b720 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Thu, 28 Aug 2014 09:41:19 -0500 Subject: [PATCH 228/268] Samples --- lib/linguist/samples.json | 34 +++++++++++++++++++++++++++++++--- 1 file changed, 31 insertions(+), 3 deletions(-) diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index dd234ab0..d1bbdd78 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -481,6 +481,9 @@ ".p6", ".pm6" ], + "PigLatin": [ + ".pig" + ], "Pike": [ ".pike", ".pmod" @@ -839,8 +842,8 @@ "exception.zep.php" ] }, - "tokens_total": 654479, - "languages_total": 898, + "tokens_total": 654509, + "languages_total": 899, "tokens": { "ABAP": { "*/**": 1, @@ -55158,6 +55161,29 @@ "": 1, "roleq": 1 }, + "PigLatin": { + "REGISTER": 1, + "SOME_JAR": 1, + ";": 4, + "A": 2, + "LOAD": 1, + "USING": 1, + "PigStorage": 1, + "(": 2, + ")": 2, + "AS": 1, + "name": 2, + "chararray": 1, + "age": 1, + "int": 1, + "-": 2, + "Load": 1, + "person": 1, + "B": 2, + "FOREACH": 1, + "generate": 1, + "DUMP": 1 + }, "Pike": { "#pike": 2, "__REAL_VERSION__": 2, @@ -72665,6 +72691,7 @@ "Pascal": 30, "Perl": 20690, "Perl6": 372, + "PigLatin": 30, "Pike": 1835, "Pod": 658, "PogoScript": 250, @@ -72876,6 +72903,7 @@ "Pascal": 1, "Perl": 17, "Perl6": 3, + "PigLatin": 1, "Pike": 2, "Pod": 1, "PogoScript": 1, @@ -72949,5 +72977,5 @@ "fish": 3, "wisp": 1 }, - "md5": "b7e3e6804093f11267b22f781f54de75" + "md5": "17cee34e914b3954bc81eacdef0b0ab8" } \ No newline at end of file From e9623d542d700f065f74d5c11a7ddf2cfecf60ec Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Thu, 28 Aug 2014 09:48:53 -0500 Subject: [PATCH 229/268] Samples --- lib/linguist/samples.json | 34 +++++++++++++++++++++++++++++++--- 1 file changed, 31 insertions(+), 3 deletions(-) diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index d1bbdd78..ef1b399e 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -427,6 +427,9 @@ "Opa": [ ".opa" ], + "Opal": [ + ".opal" + ], "OpenCL": [ ".cl" ], @@ -842,8 +845,8 @@ "exception.zep.php" ] }, - "tokens_total": 654509, - "languages_total": 899, + "tokens_total": 654541, + "languages_total": 900, "tokens": { "ABAP": { "*/**": 1, @@ -50867,6 +50870,29 @@ "}": 2, "title": 1 }, + "Opal": { + "-": 4, + "Deepak": 1, + "Chopra": 1, + "nonsense": 1, + "text": 1, + "generator": 1, + "see": 1, + "https": 1, + "//github.com/StoneCypher/DeepakChopra_Opal/": 1, + "starts": 1, + "[": 4, + "]": 4, + "middles": 1, + "qualifiers": 1, + "finishes": 1, + "alert": 1, + "starts.sample": 1, + "+": 3, + "middles.sample": 1, + "qualifiers.sample": 1, + "finishes.sample": 1 + }, "OpenCL": { "double": 3, "run_fftw": 1, @@ -72677,6 +72703,7 @@ "Objective-C++": 6021, "Omgrofl": 57, "Opa": 28, + "Opal": 32, "OpenCL": 144, "OpenEdge ABL": 762, "OpenSCAD": 67, @@ -72889,6 +72916,7 @@ "Objective-C++": 2, "Omgrofl": 1, "Opa": 2, + "Opal": 1, "OpenCL": 2, "OpenEdge ABL": 5, "OpenSCAD": 2, @@ -72977,5 +73005,5 @@ "fish": 3, "wisp": 1 }, - "md5": "17cee34e914b3954bc81eacdef0b0ab8" + "md5": "7a970958bd95602c130be259e8f3fc31" } \ No newline at end of file From 79da17c5c820921519d7113cbccd969f3e7fe39b Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Thu, 28 Aug 2014 11:17:50 -0500 Subject: [PATCH 230/268] Bumping version number --- lib/linguist/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/version.rb b/lib/linguist/version.rb index 05d68a15..281ca9a1 100644 --- a/lib/linguist/version.rb +++ b/lib/linguist/version.rb @@ -1,3 +1,3 @@ module Linguist - VERSION = "3.1.1" + VERSION = "3.1.2" end From e76837fa20c3ec8408bf23ccc81c1d198f534284 Mon Sep 17 00:00:00 2001 From: Paul Chaignon Date: Tue, 2 Sep 2014 10:33:53 -0400 Subject: [PATCH 231/268] Change lexer for Emacs Lisp from Scheme to Common Lisp --- lib/linguist/languages.yml | 2 +- test/test_language.rb | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 323d48cf..586a53f5 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -647,7 +647,7 @@ Elm: Emacs Lisp: type: programming - lexer: Scheme + lexer: Common Lisp color: "#c065db" aliases: - elisp diff --git a/test/test_language.rb b/test/test_language.rb index 1f151eeb..3bd41c65 100644 --- a/test/test_language.rb +++ b/test/test_language.rb @@ -46,7 +46,6 @@ class TestLanguage < Test::Unit::TestCase assert_equal Lexer['Ruby'], Language['Mirah'].lexer assert_equal Lexer['Ruby'], Language['Ruby'].lexer assert_equal Lexer['S'], Language['R'].lexer - assert_equal Lexer['Scheme'], Language['Emacs Lisp'].lexer assert_equal Lexer['Scheme'], Language['Nu'].lexer assert_equal Lexer['Racket'], Language['Racket'].lexer assert_equal Lexer['Scheme'], Language['Scheme'].lexer From 17d4eb7a5ebad4f1361b32a4ff5e5fa4dd76938a Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Thu, 4 Sep 2014 11:51:41 -0500 Subject: [PATCH 232/268] Samples --- lib/linguist/samples.json | 128 +++++++++++++++++++++++++++++++++++++- 1 file changed, 125 insertions(+), 3 deletions(-) diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index ef1b399e..aa13d4b2 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -254,6 +254,9 @@ ".dlm", ".pro" ], + "IGOR Pro": [ + ".ipf" + ], "Idris": [ ".idr" ], @@ -308,6 +311,9 @@ "LFE": [ ".lfe" ], + "LSL": [ + ".lsl" + ], "Lasso": [ ".las", ".lasso", @@ -845,8 +851,8 @@ "exception.zep.php" ] }, - "tokens_total": 654541, - "languages_total": 900, + "tokens_total": 654836, + "languages_total": 903, "tokens": { "ABAP": { "*/**": 1, @@ -28185,6 +28191,52 @@ "L": 1, "example": 1 }, + "IGOR Pro": { + "#pragma": 2, + "rtGlobals": 2, + "Function": 6, + "FooBar": 1, + "(": 10, + ")": 10, + "return": 7, + "End": 7, + "FooBarSubType": 1, + "ButtonControl": 1, + "Function/D": 1, + "FooBarVar": 1, + "static": 3, + "FooBarStatic": 1, + "threadsafe": 2, + "FooBarStaticThreadsafe": 1, + "FooBarThread": 1, + "CallOperationsAndBuiltInFuncs": 1, + "string": 4, + "var": 3, + "someDQString": 2, + "Make/N": 1, + "myWave": 2, + "Redimension/N": 1, + "-": 3, + "print": 1, + "strlen": 1, + "StrConstant": 1, + "myConstString": 1, + "constant": 1, + "myConst": 1, + "Structure": 2, + "struct1": 1, + "str": 2, + "variable": 2, + "EndStructure": 2, + "struct2": 1, + "#include": 1, + "#ifdef": 1, + "NOT_DEFINED": 1, + "//": 1, + "conditional": 1, + "compilation": 1, + "#endif": 1 + }, "INI": { ";": 1, "editorconfig.org": 1, @@ -35990,6 +36042,72 @@ "info": 1, "reproduce": 1 }, + "LSL": { + "integer": 8, + "someIntNormal": 2, + ";": 29, + "someIntHex": 2, + "someIntMath": 2, + "PI_BY_TWO": 2, + "event": 2, + "//": 5, + "is": 3, + "invalid.illegal": 2, + "key": 3, + "someKeyTexture": 2, + "TEXTURE_DEFAULT": 2, + "string": 5, + "someStringSpecial": 2, + "EOF": 2, + "some_user_defined_function_without_return_type": 2, + "(": 19, + "inputAsString": 2, + ")": 19, + "{": 9, + "llSay": 1, + "PUBLIC_CHANNEL": 4, + "}": 9, + "user_defined_function_returning_a_string": 2, + "inputAsKey": 2, + "return": 1, + "default": 2, + "state_entry": 2, + "someKey": 3, + "NULL_KEY": 1, + "llGetOwner": 1, + "someString": 2, + "touch_start": 1, + "num_detected": 2, + "list": 1, + "agentsInRegion": 3, + "llGetAgentList": 1, + "AGENT_LIST_REGION": 1, + "[": 1, + "]": 1, + "numOfAgents": 2, + "llGetListLength": 1, + "index": 4, + "defaults": 1, + "to": 1, + "for": 2, + "<": 1, + "-": 1, + "+": 2, + "each": 1, + "agent": 1, + "in": 1, + "region": 1, + "llRegionSayTo": 1, + "llList2Key": 1, + "touch_end": 1, + "llSetInventoryPermMask": 1, + "MASK_NEXT": 1, + "PERM_ALL": 1, + "reserved.godmode": 1, + "llWhisper": 2, + "state": 3, + "other": 2 + }, "Lasso": { "<": 7, "LassoScript": 1, @@ -72649,6 +72767,7 @@ "Haskell": 302, "Hy": 155, "IDL": 418, + "IGOR Pro": 97, "INI": 27, "Idris": 148, "Inform 7": 75, @@ -72666,6 +72785,7 @@ "Kit": 6, "Kotlin": 155, "LFE": 1711, + "LSL": 198, "Lasso": 9849, "Latte": 759, "Less": 39, @@ -72862,6 +72982,7 @@ "Haskell": 3, "Hy": 2, "IDL": 4, + "IGOR Pro": 2, "INI": 2, "Idris": 1, "Inform 7": 2, @@ -72879,6 +73000,7 @@ "Kit": 1, "Kotlin": 1, "LFE": 4, + "LSL": 1, "Lasso": 4, "Latte": 2, "Less": 1, @@ -73005,5 +73127,5 @@ "fish": 3, "wisp": 1 }, - "md5": "7a970958bd95602c130be259e8f3fc31" + "md5": "74f6109f5d8edac6b3f2bd3d65b9d210" } \ No newline at end of file From 305293d3e56a0183b047417317dd226d4e565138 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Thu, 4 Sep 2014 11:57:10 -0500 Subject: [PATCH 233/268] For the pendants --- lib/linguist/languages.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index a7c7e5ad..ad92d00a 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1202,12 +1202,6 @@ LFE: LLVM: extensions: - .ll - -LabVIEW: - type: programming - lexer: Text only - extensions: - - .lvproj LSL: type: programming @@ -1218,6 +1212,12 @@ LSL: interpreters: - lsl color: '#3d9970' + +LabVIEW: + type: programming + lexer: Text only + extensions: + - .lvproj Lasso: type: programming From fae6dbfebde8f1ea5ffeb311153d887320ee3fd2 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Thu, 4 Sep 2014 13:49:30 -0500 Subject: [PATCH 234/268] Taking Heuristics for a spin. --- lib/linguist/heuristics.rb | 19 +- lib/linguist/language.rb | 2 +- lib/linguist/languages.yml | 6 +- lib/linguist/samples.json | 524 +++++++++++++++--- samples/Prolog/admin.pl | 1051 ++++++++++++++++++++++++++++++++++++ 5 files changed, 1514 insertions(+), 88 deletions(-) create mode 100755 samples/Prolog/admin.pl diff --git a/lib/linguist/heuristics.rb b/lib/linguist/heuristics.rb index c1116780..b22422c3 100644 --- a/lib/linguist/heuristics.rb +++ b/lib/linguist/heuristics.rb @@ -1,7 +1,7 @@ module Linguist # A collection of simple heuristics that can be used to better analyze languages. class Heuristics - ACTIVE = false + ACTIVE = true # Public: Given an array of String language names, # apply heuristics against the given data and return an array @@ -13,24 +13,13 @@ module Linguist # Returns an array of Languages or [] def self.find_by_heuristics(data, languages) if active? - if languages.all? { |l| ["Objective-C", "C++"].include?(l) } - disambiguate_c(data, languages) - end if languages.all? { |l| ["Perl", "Prolog"].include?(l) } - disambiguate_pl(data, languages) + result = disambiguate_pl(data, languages) end if languages.all? { |l| ["ECL", "Prolog"].include?(l) } - disambiguate_ecl(data, languages) - end - if languages.all? { |l| ["TypeScript", "XML"].include?(l) } - disambiguate_ts(data, languages) - end - if languages.all? { |l| ["Common Lisp", "OpenCL"].include?(l) } - disambiguate_cl(data, languages) - end - if languages.all? { |l| ["Rebol", "R"].include?(l) } - disambiguate_r(data, languages) + result = disambiguate_ecl(data, languages) end + return result end end diff --git a/lib/linguist/language.rb b/lib/linguist/language.rb index 6066b204..e42fbdc9 100644 --- a/lib/linguist/language.rb +++ b/lib/linguist/language.rb @@ -136,7 +136,7 @@ module Linguist elsif (determined = Heuristics.find_by_heuristics(data, possible_language_names)) && !determined.empty? determined.first # Lastly, fall back to the probablistic classifier. - elsif classified = Classifier.classify(Samples::DATA, data, possible_language_names ).first + elsif classified = Classifier.classify(Samples::DATA, data, possible_language_names).first # Return the actual Language object based of the string language name (i.e., first element of `#classify`) Language[classified[0]] end diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index e55c09eb..015c9577 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1202,7 +1202,7 @@ LFE: LLVM: extensions: - .ll - + LabVIEW: type: programming lexer: Text only @@ -1784,9 +1784,9 @@ Prolog: type: programming color: "#74283c" extensions: - - .prolog - - .ecl - .pl + - .ecl + - .prolog Propeller Spin: type: programming diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index ef1b399e..273c5360 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -254,6 +254,9 @@ ".dlm", ".pro" ], + "IGOR Pro": [ + ".ipf" + ], "Idris": [ ".idr" ], @@ -845,8 +848,8 @@ "exception.zep.php" ] }, - "tokens_total": 654541, - "languages_total": 900, + "tokens_total": 659103, + "languages_total": 903, "tokens": { "ABAP": { "*/**": 1, @@ -28185,6 +28188,52 @@ "L": 1, "example": 1 }, + "IGOR Pro": { + "#pragma": 2, + "rtGlobals": 2, + "Function": 6, + "FooBar": 1, + "(": 10, + ")": 10, + "return": 7, + "End": 7, + "FooBarSubType": 1, + "ButtonControl": 1, + "Function/D": 1, + "FooBarVar": 1, + "static": 3, + "FooBarStatic": 1, + "threadsafe": 2, + "FooBarStaticThreadsafe": 1, + "FooBarThread": 1, + "CallOperationsAndBuiltInFuncs": 1, + "string": 4, + "var": 3, + "someDQString": 2, + "Make/N": 1, + "myWave": 2, + "Redimension/N": 1, + "-": 3, + "print": 1, + "strlen": 1, + "StrConstant": 1, + "myConstString": 1, + "constant": 1, + "myConst": 1, + "Structure": 2, + "struct1": 1, + "str": 2, + "variable": 2, + "EndStructure": 2, + "struct2": 1, + "#include": 1, + "#ifdef": 1, + "NOT_DEFINED": 1, + "//": 1, + "conditional": 1, + "compilation": 1, + "#endif": 1 + }, "INI": { ";": 1, "editorconfig.org": 1, @@ -55878,54 +55927,434 @@ "TWO_PI": 1 }, "Prolog": { - "-": 161, - "module": 3, - "(": 327, + "-": 348, + "module": 4, + "(": 1156, + "cpa_admin": 1, + "[": 290, + "change_password_form//1": 1, + "]": 288, + ")": 1153, + ".": 230, + "use_module": 20, + "user": 45, + "user_db": 1, + "library": 19, + "http/http_parameters": 1, + "http/http_session": 1, + "http/html_write": 1, + "http/html_head": 1, + "http/mimetype": 1, + "http/http_dispatch": 1, + "url": 1, + "debug": 5, + "lists": 1, + "option": 8, + "http_settings": 1, + "http_handler": 20, + "cliopatria": 38, + "list_users": 13, + "create_admin": 3, + "add_user_form": 4, + "add_openid_server_form": 4, + "add_user": 6, + "self_register": 4, + "add_openid_server": 3, + "edit_user_form": 7, + "edit_user": 4, + "del_user": 5, + "edit_openid_server_form": 6, + "edit_openid_server": 4, + "del_openid_server": 4, + "change_password_form": 7, + "change_password": 5, + "login_form": 4, + "user_login": 4, + "user_logout": 4, + "settings": 4, + "save_settings": 3, + "%": 193, + "+": 47, + "Request": 46, + "HTTP": 4, + "Handler": 1, + "listing": 1, + "registered": 3, + "users.": 2, + "_Request": 11, + "authorized": 13, + "admin": 31, + "if_allowed": 4, + "edit": 15, + "true": 32, + "UserOptions": 5, + "openid": 5, + "OpenIDOptions": 2, + "reply_html_page": 15, + "default": 16, + "title": 13, + "h1": 15, + "user_table": 3, + "p": 11, + "action": 18, + "location_by_id": 13, + "openid_server_table": 4, + "Token": 2, + "Options": 43, + "logged_on": 4, + "User": 77, + "anonymous": 2, + "catch": 2, + "check_permission": 1, + "_": 62, + "fail": 3, + "//": 7, + "HTML": 4, + "component": 3, + "generating": 1, + "a": 25, + "table": 9, + "of": 10, + "{": 22, + "setof": 3, + "U": 2, + "current_user": 6, + "Users": 2, + "}": 22, + "html": 25, + "class": 14, + "block": 2, + "tr": 16, + "th": 12, + "|": 44, + "T": 4, + "user_property": 8, + "realname": 18, + "Name": 19, + "findall": 1, + "Idle": 6, + "Login": 9, + "connection": 1, + "Pairs0": 2, + "keysort": 1, + "Pairs": 4, + "OnLine": 4, + ";": 37, + "length": 9, + "N": 7, + "online": 3, + "td": 20, + "on_since": 3, + "idle": 3, + "edit_user_button": 3, + "href": 6, + "encode": 4, + "_Idle": 1, + "_Connections": 2, + "format_time": 1, + "string": 10, + "Date": 2, + "_Login": 1, + "mmss_duration": 2, + "String": 10, + "Time": 3, + "in": 1, + "seconds": 1, + "Secs": 4, + "is": 24, + "round": 1, + "Hour": 2, + "Min": 4, + "mod": 2, + "Sec": 2, + "format": 9, + "Create": 2, + "the": 14, + "administrator": 1, + "login.": 2, + "throw": 12, + "error": 13, + "permission_error": 4, + "create": 3, + "context": 3, + "align": 16, + "center": 6, + "new_user_form": 3, + "real_name": 2, + "Form": 3, + "to": 19, + "register": 3, + "user.": 2, + "value": 11, + "PermUser": 3, + "form": 14, + "method": 6, + "input": 25, + "pwd1": 5, + "type": 16, + "password": 21, + "pwd2": 5, + "permissions": 5, + "buttons": 5, + "colspan": 6, + "right": 11, + "submit": 6, + "Label": 10, + "name": 8, + "size": 5, + "Only": 1, + "provide": 1, + "field": 4, + "if": 4, + "this": 1, + "not": 1, + "already": 2, + "given.": 1, + "This": 2, + "because": 1, + "firefox": 1, + "determines": 1, + "login": 3, + "from": 3, + "text": 6, + "immediately": 1, + "above": 1, + "entry.": 1, + "Other": 1, + "browsers": 1, + "may": 1, + "do": 1, + "it": 1, + "different": 1, + "so": 1, + "only": 2, + "having": 1, + "one": 1, + "probably": 1, + "savest": 1, + "solution.": 1, + "RealName": 13, + "hidden": 7, + "_Options": 1, + "API": 1, + "new": 6, + "The": 3, + "current": 3, + "must": 3, + "have": 1, + "administrative": 2, + "rights": 2, + "or": 3, + "database": 1, + "be": 6, + "empty.": 1, + "FirstUser": 2, + "http_parameters": 10, + "Password": 13, + "Retype": 4, + "read": 13, + "Read": 12, + "write": 11, + "Write": 12, + "Admin": 12, + "attribute_declarations": 10, + "attribute_decl": 21, + "password_mismatch": 2, + "password_hash": 3, + "Hash": 6, + "phrase": 6, + "allow": 17, + "Allow": 11, + "user_add": 3, + "reply_login": 5, + "Self": 1, + "and": 6, + "enable_self_register": 3, + "set": 2, + "true.": 1, + "limited": 1, + "annotate": 2, + "access.": 1, + "Returns": 1, + "forbidden": 3, + "false": 5, + "exists": 1, + "http_location_by_id": 1, + "MyUrl": 3, + "setting": 1, + "http_reply": 3, + "properties": 3, + "User.": 1, + "b": 6, + "i": 1, + "Term": 16, + "..": 11, + "Value": 15, + "O2": 6, + "p_name": 2, + "permission_checkbox": 4, + "Actions": 3, + "openid_server_property": 3, + "pterm": 5, + "Action": 17, + "memberchk": 4, + "Opts": 4, + "checked": 2, + "def_user_permissions": 3, + "DefPermissions": 2, + "checkbox": 1, + "Handle": 3, + "reply": 3, + "form.": 2, + "optional": 6, + "description": 18, + "modify_user": 2, + "modify_permissions": 2, + "Property": 6, + "_Name": 2, + "var": 7, + "set_user_property": 3, + "Access": 2, + "on": 2, + "_Access": 1, + "off": 5, + "_Repositiory": 2, + "_Action": 3, + "Delete": 2, + "delete": 2, + "user_del": 1, + "change": 2, + "context_error": 2, + "not_logged_in": 2, + "UserID": 1, + "that": 2, + "shows": 1, + "for": 4, + "changing": 1, + "UserID.": 1, + "id": 3, + "user_or_old": 3, + "pwd0": 2, + "handler": 2, + "password.": 1, + "logged": 1, + "on.": 1, + "New": 3, + "existence_error": 1, + "validate_password": 2, + "presents": 1, + "If": 2, + "there": 1, + "parameter": 2, + "return_to": 3, + "openid.return_to": 1, + "using": 1, + "redirect": 1, + "given": 2, + "URL.": 1, + "Otherwise": 1, + "display": 1, + "welcome": 1, + "page.": 1, + "ReturnTo": 6, + "Extra": 3, + "moved_temporary": 1, + "Logout": 1, + "logout": 1, + "Param": 1, + "DeclObtions": 1, + "semidet.": 4, + "Provide": 1, + "reusable": 1, + "declarations": 1, + "calls": 2, + "http_parameters/3.": 1, + "openid_server": 9, + "bool": 4, + "Def": 2, + "oneof": 1, + "Return": 1, + "an": 3, + "page": 1, + "add": 2, + "OpenID": 4, + "server.": 1, + "new_openid_form": 2, + "new_openid_form//": 1, + "det.": 5, + "Present": 1, + "provider.": 1, + "openid_description": 1, + "code": 2, + "canonical_url": 1, + "URL0": 2, + "URL": 4, + "parse_url": 2, + "Parts": 2, + "Server": 30, + "openid_property": 2, + "List": 1, + "servers": 1, + "S": 2, + "openid_current_server": 1, + "Servers": 2, + "openid_list_servers": 4, + "H": 2, + "openid_list_server": 2, + "openid_field": 3, + "edit_openid_button": 3, + "Field": 2, + "server": 1, + "Description": 2, + "modify_openid": 2, + "openid_modify_permissions": 2, + "openid_set_property": 2, + "openid_del_server": 1, + "Show": 1, + "settings.": 3, + "has": 1, + "editing": 1, + "edit_settings": 2, + "Edit": 4, + "http_show_settings": 1, + "hide_module": 1, + "warn_no_edit": 3, + "settings_no_edit": 1, + "Save": 1, + "modified": 1, + "http_apply_settings": 1, + "save": 1, + "with": 3, + "br": 1, "format_spec": 12, - "[": 87, "format_error/2": 1, "format_spec/2": 1, "format_spec//1": 1, "spec_arity/2": 1, "spec_types/2": 1, - "]": 87, - ")": 326, - ".": 107, - "use_module": 8, - "library": 8, "dcg/basics": 1, "eos//0": 1, "integer//1": 1, "string_without//2": 1, - "error": 6, "when": 3, "when/2": 1, - "%": 71, "mavis": 1, "format_error": 8, - "+": 14, "Goal": 29, "Error": 25, - "string": 8, - "is": 12, "nondet.": 1, - "format": 8, "Format": 23, "Args": 19, "format_error_": 5, - "_": 30, - "debug": 4, "Spec": 10, "is_list": 1, "spec_types": 8, "Types": 16, "types_error": 3, - "length": 4, "TypesLen": 3, "ArgsLen": 3, "types_error_": 4, "Arg": 6, - "|": 25, "Type": 3, "ground": 5, "is_of_type": 2, @@ -55940,13 +56369,9 @@ "format_fail/3.": 1, "prolog_walk_code": 1, "module_class": 1, - "user": 5, "infer_meta_predicates": 1, - "false": 2, "autoload": 1, "format/": 1, - "{": 7, - "}": 7, "are": 3, "always": 1, "loaded": 1, @@ -55967,7 +56392,6 @@ "checker.": 1, "succeed": 2, "even": 1, - "if": 1, "no": 1, "found": 1, "Module": 4, @@ -55975,12 +56399,10 @@ "predicate_property": 1, "imported_from": 1, "Source": 2, - "memberchk": 2, "system": 1, "prolog_debug": 1, "can_check": 2, "assert": 2, - "to": 5, "avoid": 1, "printing": 1, "goals": 1, @@ -55989,32 +56411,22 @@ "prolog": 2, "message": 1, "message_location": 1, - "//": 1, "eos.": 1, "escape": 2, "Numeric": 4, "Modifier": 2, - "Action": 15, "Rest": 12, "numeric_argument": 5, "modifier_argument": 3, - "action": 6, - "text": 4, - "String": 6, - ";": 12, "Codes": 21, "string_codes": 4, "string_without": 1, "list": 4, - "semidet.": 3, "text_codes": 6, - "phrase": 3, "spec_arity": 2, "FormatSpec": 2, "Arity": 3, "positive_integer": 1, - "det.": 4, - "type": 2, "Item": 2, "Items": 2, "item_types": 3, @@ -56029,17 +56441,14 @@ "Text": 1, "codes": 5, "Var": 5, - "var": 4, "Atom": 3, "atom": 6, - "N": 5, "integer": 7, "C": 5, "colon": 1, "no_colon": 1, "is_action": 4, "multi.": 1, - "a": 4, "d": 3, "e": 1, "float": 3, @@ -56047,7 +56456,6 @@ "G": 2, "I": 1, "n": 1, - "p": 1, "any": 3, "r": 1, "s": 2, @@ -56056,7 +56464,6 @@ "func": 13, "op": 2, "xfy": 2, - "of": 8, "/2": 3, "list_util": 1, "xfy_list/3": 1, @@ -56070,7 +56477,6 @@ "at": 3, "compile": 3, "time": 3, - "for": 1, "macro": 1, "expansion.": 1, "compile_function/4.": 1, @@ -56081,19 +56487,14 @@ "evaluable/1": 1, "throws": 1, "exception": 1, - "with": 2, "strings": 1, "evaluable": 1, "term_variables": 1, "F": 26, "function_composition_term": 2, "Functor": 8, - "true": 5, - "..": 6, "format_template": 7, "has_type": 2, - "fail": 1, - "be": 4, "explicit": 1, "Dict": 3, "is_dict": 1, @@ -56101,7 +56502,6 @@ "Function": 5, "Argument": 1, "Apply": 1, - "an": 1, "Argument.": 1, "A": 1, "predicate": 4, @@ -56110,18 +56510,15 @@ "argument": 2, "generates": 1, "output": 1, - "and": 2, "penultimate": 1, "accepts": 1, "input.": 1, - "This": 1, "realized": 1, "by": 2, "expanding": 1, "function": 2, "application": 2, "chained": 1, - "calls": 1, "time.": 1, "itself": 1, "can": 3, @@ -56130,12 +56527,8 @@ "reverse": 4, "sort": 2, "c": 2, - "b": 4, "meta_predicate": 2, - "throw": 1, - "permission_error": 1, "call": 4, - "context": 1, "X": 10, "Y": 7, "defer": 1, @@ -56143,13 +56536,10 @@ "run": 1, "P": 2, "Creates": 1, - "new": 2, "composing": 1, "G.": 1, - "The": 1, "functions": 2, "composed": 1, - "create": 1, "compiled": 1, "which": 1, "behaves": 1, @@ -56164,7 +56554,6 @@ "syntax": 1, "highlighting": 1, "functions_to_compose": 2, - "Term": 10, "Funcs": 7, "functor": 1, "Op": 3, @@ -56186,9 +56575,7 @@ "compile_predicates": 1, "Output": 2, "compound": 1, - "setof": 1, "arg": 1, - "Name": 2, "Args0": 2, "nth1": 2, "lib": 1, @@ -56199,11 +56586,9 @@ "#": 9, "labeling": 2, "vabsIC": 1, - "or": 1, "faitListe": 3, "First": 2, "Taille": 2, - "Min": 2, "Max": 2, "Min..Max": 1, "Taille1": 2, @@ -56258,7 +56643,6 @@ "Rs1": 2, "left": 4, "stay": 1, - "right": 1, "L": 2 }, "Propeller Spin": { @@ -72649,6 +73033,7 @@ "Haskell": 302, "Hy": 155, "IDL": 418, + "IGOR Pro": 97, "INI": 27, "Idris": 148, "Inform 7": 75, @@ -72725,7 +73110,7 @@ "PostScript": 107, "PowerShell": 12, "Processing": 74, - "Prolog": 2420, + "Prolog": 6885, "Propeller Spin": 13519, "Protocol Buffer": 63, "PureScript": 1652, @@ -72862,6 +73247,7 @@ "Haskell": 3, "Hy": 2, "IDL": 4, + "IGOR Pro": 2, "INI": 2, "Idris": 1, "Inform 7": 2, @@ -72938,7 +73324,7 @@ "PostScript": 1, "PowerShell": 2, "Processing": 1, - "Prolog": 5, + "Prolog": 6, "Propeller Spin": 10, "Protocol Buffer": 1, "PureScript": 4, @@ -73005,5 +73391,5 @@ "fish": 3, "wisp": 1 }, - "md5": "7a970958bd95602c130be259e8f3fc31" + "md5": "1500ca2d5506e7d4e02f8c1d14e348a4" } \ No newline at end of file diff --git a/samples/Prolog/admin.pl b/samples/Prolog/admin.pl new file mode 100755 index 00000000..39a6a538 --- /dev/null +++ b/samples/Prolog/admin.pl @@ -0,0 +1,1051 @@ +/* Part of ClioPatria SeRQL and SPARQL server + + Author: Jan Wielemaker + E-mail: J.Wielemaker@cs.vu.nl + WWW: http://www.swi-prolog.org + Copyright (C): 2004-2010, University of Amsterdam, + VU University Amsterdam + + This program is free software; you can redistribute it and/o ClioPatria administrative interface + +This module provides HTTP services to perform administrative actions. + +@tbd Ideally, this module should be split into an api-part, a + component-part and the actual pages. This also implies that + the current `action'-operations must (optionally) return + machine-friendly results. +*/ + + +:- http_handler(cliopatria('admin/listUsers'), list_users, []). +:- http_handler(cliopatria('admin/form/createAdmin'), create_admin, []). +:- http_handler(cliopatria('admin/form/addUser'), add_user_form, []). +:- http_handler(cliopatria('admin/form/addOpenIDServer'), add_openid_server_form, []). +:- http_handler(cliopatria('admin/addUser'), add_user, []). +:- http_handler(cliopatria('admin/selfRegister'), self_register, []). +:- http_handler(cliopatria('admin/addOpenIDServer'), add_openid_server, []). +:- http_handler(cliopatria('admin/form/editUser'), edit_user_form, []). +:- http_handler(cliopatria('admin/editUser'), edit_user, []). +:- http_handler(cliopatria('admin/delUser'), del_user, []). +:- http_handler(cliopatria('admin/form/editOpenIDServer'), edit_openid_server_form, []). +:- http_handler(cliopatria('admin/editOpenIDServer'), edit_openid_server, []). +:- http_handler(cliopatria('admin/delOpenIDServer'), del_openid_server, []). +:- http_handler(cliopatria('admin/form/changePassword'), change_password_form, []). +:- http_handler(cliopatria('admin/changePassword'), change_password, []). +:- http_handler(cliopatria('user/form/login'), login_form, []). +:- http_handler(cliopatria('user/login'), user_login, []). +:- http_handler(cliopatria('user/logout'), user_logout, []). +:- http_handler(cliopatria('admin/settings'), settings, []). +:- http_handler(cliopatria('admin/save_settings'), save_settings, []). + +%% list_users(+Request) +% +% HTTP Handler listing registered users. + +list_users(_Request) :- + authorized(admin(list_users)), + if_allowed(admin(user(edit)), [edit(true)], UserOptions), + if_allowed(admin(openid(edit)), [edit(true)], OpenIDOptions), + reply_html_page(cliopatria(default), + title('Users'), + [ h1('Users'), + \user_table(UserOptions), + p(\action(location_by_id(add_user_form), 'Add user')), + h1('OpenID servers'), + \openid_server_table(OpenIDOptions), + p(\action(location_by_id(add_openid_server_form), 'Add OpenID server')) + ]). + +if_allowed(Token, Options, Options) :- + logged_on(User, anonymous), + catch(check_permission(User, Token), _, fail), !. +if_allowed(_, _, []). + +%% user_table(+Options)// +% +% HTML component generating a table of registered users. + +user_table(Options) --> + { setof(U, current_user(U), Users) + }, + html([ table([ class(block) + ], + [ tr([ th('UserID'), + th('RealName'), + th('On since'), + th('Idle') + ]) + | \list_users(Users, Options) + ]) + ]). + +list_users([], _) --> + []. +list_users([User|T], Options) --> + { user_property(User, realname(Name)), + findall(Idle-Login, + user_property(User, connection(Login, Idle)), + Pairs0), + keysort(Pairs0, Pairs), + ( Pairs == [] + -> OnLine = (-) + ; length(Pairs, N), + Pairs = [Idle-Login|_], + OnLine = online(Login, Idle, N) + ) + }, + html(tr([ td(User), + td(Name), + td(\on_since(OnLine)), + td(\idle(OnLine)), + \edit_user_button(User, Options) + ])), + list_users(T, Options). + +edit_user_button(User, Options) --> + { option(edit(true), Options) }, !, + html(td(a(href(location_by_id(edit_user_form)+'?user='+encode(User)), 'Edit'))). +edit_user_button(_, _) --> + []. + +on_since(online(Login, _Idle, _Connections)) --> !, + { format_time(string(Date), '%+', Login) + }, + html(Date). +on_since(_) --> + html(-). + +idle(online(_Login, Idle, _Connections)) --> + { mmss_duration(Idle, String) + }, + html(String). +idle(_) --> + html(-). + + +mmss_duration(Time, String) :- % Time in seconds + Secs is round(Time), + Hour is Secs // 3600, + Min is (Secs // 60) mod 60, + Sec is Secs mod 60, + format(string(String), '~`0t~d~2|:~`0t~d~5|:~`0t~d~8|', [Hour, Min, Sec]). + + + + /******************************* + * ADD USERS * + *******************************/ + +%% create_admin(+Request) +% +% Create the administrator login. + +create_admin(_Request) :- + ( current_user(_) + -> throw(error(permission_error(create, user, admin), + context(_, 'Already initialized'))) + ; true + ), + reply_html_page(cliopatria(default), + title('Create administrator'), + [ h1(align(center), 'Create administrator'), + + p('No accounts are available on this server. \c + This form allows for creation of an administrative \c + account that can subsequently be used to create \c + new users.'), + + \new_user_form([ user(admin), + real_name('Administrator') + ]) + ]). + + +%% add_user_form(+Request) +% +% Form to register a user. + +add_user_form(_Request) :- + authorized(admin(add_user)), + reply_html_page(cliopatria(default), + title('Add new user'), + [ \new_user_form([]) + ]). + +new_user_form(Options) --> + { ( option(user(User), Options) + -> UserOptions = [value(User)], + PermUser = User + ; UserOptions = [], + PermUser = (-) + ) + }, + html([ h1('Add new user'), + form([ action(location_by_id(add_user)), + method('POST') + ], + table([ class((form)) + ], + [ \realname(Options), + \input(user, 'Login', + UserOptions), + \input(pwd1, 'Password', + [type(password)]), + \input(pwd2, 'Retype', + [type(password)]), + \permissions(PermUser), + tr(class(buttons), + td([ colspan(2), + align(right) + ], + input([ type(submit), + value('Create') + ]))) + ])) + ]). + + +input(Name, Label, Options) --> + html(tr([ th(align(right), Label), + td(input([name(Name),size(40)|Options])) + ])). + +% Only provide a realname field if this is not already given. This +% is because firefox determines the login user from the text field +% immediately above the password entry. Other browsers may do it +% different, so only having one text-field is probably the savest +% solution. + +realname(Options) --> + { option(real_name(RealName), Options) }, !, + hidden(realname, RealName). +realname(_Options) --> + input(realname, 'Realname', []). + + +%% add_user(+Request) +% +% API to register a new user. The current user must have +% administrative rights or the user-database must be empty. + +add_user(Request) :- + ( \+ current_user(_) + -> FirstUser = true + ; authorized(admin(add_user)) + ), + http_parameters(Request, + [ user(User), + realname(RealName), + pwd1(Password), + pwd2(Retype), + read(Read), + write(Write), + admin(Admin) + ], + [ attribute_declarations(attribute_decl) + ]), + ( current_user(User) + -> throw(error(permission_error(create, user, User), + context(_, 'Already present'))) + ; true + ), + ( Password == Retype + -> true + ; throw(password_mismatch) + ), + password_hash(Password, Hash), + phrase(allow(Read, Write, Admin), Allow), + user_add(User, + [ realname(RealName), + password(Hash), + allow(Allow) + ]), + ( FirstUser == true + -> user_add(anonymous, + [ realname('Define rights for not-logged in users'), + allow([read(_,_)]) + ]), + reply_login([user(User), password(Password)]) + ; list_users(Request) + ). + +%% self_register(Request) +% +% Self-register and login a new user if +% cliopatria:enable_self_register is set to true. +% Users are registered with full read +% and limited (annotate-only) write access. +% +% Returns a HTTP 403 forbidden error if: +% - cliopatria:enable_self_register is set to false +% - the user already exists + +self_register(Request) :- + http_location_by_id(self_register, MyUrl), + ( \+ setting(cliopatria:enable_self_register, true) + -> throw(http_reply(forbidden(MyUrl))) + ; true + ), + http_parameters(Request, + [ user(User), + realname(RealName), + password(Password) + ], + [ attribute_declarations(attribute_decl) + ]), + ( current_user(User) + -> throw(http_reply(forbidden(MyUrl))) + ; true + ), + password_hash(Password, Hash), + Allow = [ read(_,_), write(_,annotate) ], + user_add(User, [realname(RealName), password(Hash), allow(Allow)]), + reply_login([user(User), password(Password)]). + + +%% edit_user_form(+Request) +% +% Form to edit user properties + +edit_user_form(Request) :- + authorized(admin(user(edit))), + http_parameters(Request, + [ user(User) + ], + [ attribute_declarations(attribute_decl) + ]), + + reply_html_page(cliopatria(default), + title('Edit user'), + \edit_user_form(User)). + +%% edit_user_form(+User)// +% +% HTML component to edit the properties of User. + +edit_user_form(User) --> + { user_property(User, realname(RealName)) + }, + html([ h1(['Edit user ', User, ' (', RealName, ')']), + + form([ action(location_by_id(edit_user)), + method('POST') + ], + [ \hidden(user, User), + table([ class((form)) + ], + [ \user_property(User, realname, 'Real name', []), + \permissions(User), + tr(class(buttons), + td([ colspan(2), + align(right) + ], + input([ type(submit), + value('Modify') + ]))) + ]) + ]), + + p(\action(location_by_id(del_user)+'?user='+encode(User), + [ 'Delete user ', b(User), ' (', i(RealName), ')' ])) + ]). + +user_property(User, Name, Label, Options) --> + { Term =.. [Name, Value], + user_property(User, Term) + -> O2 = [value(Value)|Options] + ; O2 = Options + }, + html(tr([ th(class(p_name), Label), + td(input([name(Name),size(40)|O2])) + ])). + +permissions(User) --> + html(tr([ th(class(p_name), 'Permissions'), + td([ \permission_checkbox(User, read, 'Read'), + \permission_checkbox(User, write, 'Write'), + \permission_checkbox(User, admin, 'Admin') + ]) + ])). + +permission_checkbox(User, Name, Label) --> + { ( User \== (-), + ( user_property(User, allow(Actions)) + -> true + ; openid_server_property(User, allow(Actions)) + ), + pterm(Name, Action), + memberchk(Action, Actions) + -> Opts = [checked] + ; def_user_permissions(User, DefPermissions), + memberchk(Name, DefPermissions) + -> Opts = [checked] + ; Opts = [] + ) + }, + html([ input([ type(checkbox), + name(Name) + | Opts + ]), + Label + ]). + +def_user_permissions(-, [read]). +def_user_permissions(admin, [read, write, admin]). + + +%% edit_user(Request) +% +% Handle reply from edit user form. + +edit_user(Request) :- + authorized(admin(user(edit))), + http_parameters(Request, + [ user(User), + realname(RealName, + [ optional(true), + length > 2, + description('Comment on user identifier-name') + ]), + read(Read), + write(Write), + admin(Admin) + ], + [ attribute_declarations(attribute_decl) + ]), + modify_user(User, realname(RealName)), + modify_permissions(User, Read, Write, Admin), + list_users(Request). + + +modify_user(User, Property) :- + Property =.. [_Name|Value], + ( ( var(Value) + ; Value == '' + ) + -> true + ; set_user_property(User, Property) + ). + +modify_permissions(User, Read, Write, Admin) :- + phrase(allow(Read, Write, Admin), Allow), + set_user_property(User, allow(Allow)). + +allow(Read, Write, Admin) --> + allow(read, Read), + allow(write, Write), + allow(admin, Admin). + +allow(Access, on) --> + { pterm(Access, Allow) + }, !, + [ Allow + ]. +allow(_Access, off) --> !, + []. + +pterm(read, read(_Repositiory, _Action)). +pterm(write, write(_Repositiory, _Action)). +pterm(admin, admin(_Action)). + + +%% del_user(+Request) +% +% Delete a user + +del_user(Request) :- !, + authorized(admin(del_user)), + http_parameters(Request, + [ user(User) + ], + [ attribute_declarations(attribute_decl) + ]), + ( User == admin + -> throw(error(permission_error(delete, user, User), _)) + ; true + ), + user_del(User), + list_users(Request). + + +%% change_password_form(+Request) +% +% Allow user to change the password + +change_password_form(_Request) :- + logged_on(User), !, + user_property(User, realname(RealName)), + reply_html_page(cliopatria(default), + title('Change password'), + [ h1(['Change password for ', User, ' (', RealName, ')']), + + \change_password_form(User) + ]). +change_password_form(_Request) :- + throw(error(context_error(not_logged_in), _)). + + +%% change_password_form(+UserID)// +% +% HTML component that shows a form for changing the password for +% UserID. + +change_password_form(User) --> + html(form([ action(location_by_id(change_password)), + method('POST') + ], + [ table([ id('change-password-form'), + class(form) + ], + [ \user_or_old(User), + \input(pwd1, 'New Password', + [type(password)]), + \input(pwd2, 'Retype', + [type(password)]), + tr(class(buttons), + td([ align(right), + colspan(2) + ], + input([ type(submit), + value('Change password') + ]))) + ]) + ])). + +user_or_old(admin) --> !, + input(user, 'User', []). +user_or_old(_) --> + input(pwd0, 'Old password', [type(password)]). + + +%% change_password(+Request) +% +% HTTP handler to change the password. The user must be logged on. + +change_password(Request) :- + logged_on(Login), !, + http_parameters(Request, + [ user(User, [ optional(true), + description('User identifier-name') + ]), + pwd0(Password, [ optional(true), + description('Current password') + ]), + pwd1(New), + pwd2(Retype) + ], + [ attribute_declarations(attribute_decl) + ]), + ( Login == admin + -> ( current_user(User) + -> true + ; throw(error(existence_error(user, User), _)) + ) + ; Login = User, + validate_password(User, Password) + ), + ( New == Retype + -> true + ; throw(password_mismatch) + ), + password_hash(New, Hash), + set_user_property(User, password(Hash)), + reply_html_page(cliopatria(default), + 'Password changed', + [ h1(align(center), 'Password changed'), + p([ 'Your password has been changed successfully' ]) + ]). +change_password(_Request) :- + throw(error(context_error(not_logged_in), _)). + + + + /******************************* + * LOGIN * + *******************************/ + +%% login_form(+Request) +% +% HTTP handler that presents a form to login. + +login_form(_Request) :- + reply_html_page(cliopatria(default), + 'Login', + [ h1(align(center), 'Login'), + form([ action(location_by_id(user_login)), + method('POST') + ], + table([ tr([ th(align(right), 'User:'), + td(input([ name(user), + size(40) + ])) + ]), + tr([ th(align(right), 'Password:'), + td(input([ type(password), + name(password), + size(40) + ])) + ]), + tr([ td([ align(right), colspan(2) ], + input([ type(submit), + value('Login') + ])) + ]) + ]) + ) + ]). + +%% user_login(+Request) +% +% Handle =user= and =password=. If there is a parameter +% =return_to= or =|openid.return_to|=, reply using a redirect to +% the given URL. Otherwise display a welcome page. + +user_login(Request) :- !, + http_parameters(Request, + [ user(User), + password(Password), + 'openid.return_to'(ReturnTo, [optional(true)]), + 'return_to'(ReturnTo, [optional(true)]) + ], + [ attribute_declarations(attribute_decl) + ]), + ( var(ReturnTo) + -> Extra = [] + ; Extra = [ return_to(ReturnTo) ] + ), + reply_login([ user(User), + password(Password) + | Extra + ]). + + +reply_login(Options) :- + option(user(User), Options), + option(password(Password), Options), + validate_password(User, Password), !, + login(User), + ( option(return_to(ReturnTo), Options) + -> throw(http_reply(moved_temporary(ReturnTo))) + ; reply_html_page(cliopatria(default), + title('Login ok'), + h1(align(center), ['Welcome ', User])) + ). +reply_login(_) :- + reply_html_page(cliopatria(default), + title('Login failed'), + [ h1('Login failed'), + p(['Password incorrect']) + ]). + +%% user_logout(+Request) +% +% Logout the current user + +user_logout(_Request) :- + logged_on(User), !, + logout(User), + reply_html_page(cliopatria(default), + title('Logout'), + h1(align(center), ['Logged out ', User])). +user_logout(_Request) :- + reply_html_page(cliopatria(default), + title('Logout'), + [ h1(align(center), ['Not logged on']), + p(['Possibly you are logged out because the session ', + 'has timed out.']) + ]). + +%% attribute_decl(+Param, -DeclObtions) is semidet. +% +% Provide reusable parameter declarations for calls to +% http_parameters/3. + +attribute_decl(user, + [ description('User identifier-name'), + length > 1 + ]). +attribute_decl(realname, + [ description('Comment on user identifier-name') + ]). +attribute_decl(description, + [ optional(true), + description('Descriptive text') + ]). +attribute_decl(password, + [ description('Password') + ]). +attribute_decl(pwd1, + [ length > 5, + description('Password') + ]). +attribute_decl(pwd2, + [ length > 5, + description('Re-typed password') + ]). +attribute_decl(openid_server, + [ description('URL of an OpenID server') + ]). +attribute_decl(read, + [ description('Provide read-only access to the RDF store') + | Options]) :- bool(off, Options). +attribute_decl(write, + [ description('Provide write access to the RDF store') + | Options]) :- bool(off, Options). +attribute_decl(admin, + [ description('Provide administrative rights') + | Options]) :- bool(off, Options). + +bool(Def, + [ default(Def), + oneof([on, off]) + ]). + + + /******************************* + * OPENID ADMIN * + *******************************/ + +%% add_openid_server_form(+Request) +% +% Return an HTML page to add a new OpenID server. + +add_openid_server_form(_Request) :- + authorized(admin(add_openid_server)), + reply_html_page(cliopatria(default), + title('Add OpenID server'), + [ \new_openid_form + ]). + + +%% new_openid_form// is det. +% +% Present form to add a new OpenID provider. + +new_openid_form --> + html([ h1('Add new OpenID server'), + form([ action(location_by_id(add_openid_server)), + method('GET') + ], + table([ id('add-openid-server'), + class(form) + ], + [ \input(openid_server, 'Server homepage', []), + \input(openid_description, 'Server description', + []), + \permissions(-), + tr(class(buttons), + td([ colspan(2), + align(right) + ], + input([ type(submit), + value('Create') + ]))) + ])), + p([ 'Use this form to define access rights for users of an ', + a(href('http://www.openid.net'), 'OpenID'), ' server. ', + 'The special server ', code(*), ' specifies access for all OpenID servers. ', + 'Here are some examples of servers:' + ]), + ul([ li(code('http://myopenid.com')) + ]) + ]). + + +%% add_openid_server(+Request) +% +% Allow access from an OpenID server + +add_openid_server(Request) :- + authorized(admin(add_openid_server)), + http_parameters(Request, + [ openid_server(Server0, + [ description('URL of the server to allow')]), + openid_description(Description, + [ optional(true), + description('Description of the server') + ]), + read(Read), + write(Write) + ], + [ attribute_declarations(attribute_decl) + ]), + phrase(allow(Read, Write, off), Allow), + canonical_url(Server0, Server), + Options = [ description(Description), + allow(Allow) + ], + remove_optional(Options, Properties), + openid_add_server(Server, Properties), + list_users(Request). + +remove_optional([], []). +remove_optional([H|T0], [H|T]) :- + arg(1, H, A), + nonvar(A), !, + remove_optional(T0, T). +remove_optional([_|T0], T) :- + remove_optional(T0, T). + + +canonical_url(Var, Var) :- + var(Var), !. +canonical_url(*, *) :- !. +canonical_url(URL0, URL) :- + parse_url(URL0, Parts), + parse_url(URL, Parts). + + +%% edit_openid_server_form(+Request) +% +% Form to edit user properties + +edit_openid_server_form(Request) :- + authorized(admin(openid(edit))), + http_parameters(Request, + [ openid_server(Server) + ], + [ attribute_declarations(attribute_decl) + ]), + + reply_html_page(cliopatria(default), + title('Edit OpenID server'), + \edit_openid_server_form(Server)). + +edit_openid_server_form(Server) --> + html([ h1(['Edit OpenID server ', Server]), + + form([ action(location_by_id(edit_openid_server)), + method('GET') + ], + [ \hidden(openid_server, Server), + table([ class(form) + ], + [ \openid_property(Server, description, 'Description', []), + \permissions(Server), + tr(class(buttons), + td([ colspan(2), + align(right) + ], + input([ type(submit), + value('Modify') + ]))) + ]) + ]), + + p(\action(location_by_id(del_openid_server) + + '?openid_server=' + encode(Server), + [ 'Delete ', b(Server) ])) + ]). + + +openid_property(Server, Name, Label, Options) --> + { Term =.. [Name, Value], + openid_server_property(Server, Term) + -> O2 = [value(Value)|Options] + ; O2 = Options + }, + html(tr([ th(align(right), Label), + td(input([name(Name),size(40)|O2])) + ])). + + +%% openid_server_table(+Options)// +% +% List registered openid servers + +openid_server_table(Options) --> + { setof(S, openid_current_server(S), Servers), ! + }, + html([ table([ class(block) + ], + [ tr([ th('Server'), + th('Description') + ]) + | \openid_list_servers(Servers, Options) + ]) + ]). +openid_server_table(_) --> + []. + +openid_list_servers([], _) --> + []. +openid_list_servers([H|T], Options) --> + openid_list_server(H, Options), + openid_list_servers(T, Options). + +openid_list_server(Server, Options) --> + html(tr([td(\openid_server(Server)), + td(\openid_field(Server, description)), + \edit_openid_button(Server, Options) + ])). + +edit_openid_button(Server, Options) --> + { option(edit(true), Options) }, !, + html(td(a(href(location_by_id(edit_openid_server_form) + + '?openid_server='+encode(Server) + ), 'Edit'))). +edit_openid_button(_, _) --> []. + + + +openid_server(*) --> !, + html(*). +openid_server(Server) --> + html(a(href(Server), Server)). + +openid_field(Server, Field) --> + { Term =.. [Field, Value], + openid_server_property(Server, Term) + }, !, + html(Value). +openid_field(_, _) --> + []. + + +%% edit_openid_server(Request) +% +% Handle reply from OpenID server form. + +edit_openid_server(Request) :- + authorized(admin(openid(edit))), + http_parameters(Request, + [ openid_server(Server), + description(Description), + read(Read), + write(Write), + admin(Admin) + ], + [ attribute_declarations(attribute_decl) + ]), + modify_openid(Server, description(Description)), + openid_modify_permissions(Server, Read, Write, Admin), + list_users(Request). + + +modify_openid(User, Property) :- + Property =.. [_Name|Value], + ( ( var(Value) + ; Value == '' + ) + -> true + ; openid_set_property(User, Property) + ). + + +openid_modify_permissions(Server, Read, Write, Admin) :- + phrase(allow(Read, Write, Admin), Allow), + openid_set_property(Server, allow(Allow)). + + +%% del_openid_server(+Request) +% +% Delete an OpenID Server + +del_openid_server(Request) :- !, + authorized(admin(openid(delete))), + http_parameters(Request, + [ openid_server(Server) + ], + [ attribute_declarations(attribute_decl) + ]), + openid_del_server(Server), + list_users(Request). + + + /******************************* + * SETTINGS * + *******************************/ + +%% settings(+Request) +% +% Show current settings. If user has administrative rights, allow +% editing the settings. + +settings(_Request) :- + ( catch(authorized(admin(edit_settings)), _, fail) + -> Edit = true + ; authorized(read(admin, settings)), + Edit = false + ), + reply_html_page(cliopatria(default), + title('Settings'), + [ h1('Application settings'), + \http_show_settings([ edit(Edit), + hide_module(false), + action('save_settings') + ]), + \warn_no_edit(Edit) + ]). + +warn_no_edit(true) --> !. +warn_no_edit(_) --> + html(p(id(settings_no_edit), + [ a(href(location_by_id(login_form)), 'Login'), + ' as ', code(admin), ' to edit the settings.' ])). + +%% save_settings(+Request) +% +% Save modified settings. + +save_settings(Request) :- + authorized(admin(edit_settings)), + reply_html_page(cliopatria(default), + title('Save settings'), + \http_apply_settings(Request, [save(true)])). + + + /******************************* + * EMIT * + *******************************/ + +%% hidden(+Name, +Value) +% +% Create a hidden input field with given name and value + +hidden(Name, Value) --> + html(input([ type(hidden), + name(Name), + value(Value) + ])). + +action(URL, Label) --> + html([a([href(URL)], Label), br([])]). From bca9716fc64c41583a6aeb88df26ecf9246e4984 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Thu, 4 Sep 2014 13:53:36 -0500 Subject: [PATCH 235/268] Another sample file --- lib/linguist/samples.json | 28 +++++++++++++++++----------- samples/Prolog/ex6.pl | 5 +++++ 2 files changed, 22 insertions(+), 11 deletions(-) create mode 100644 samples/Prolog/ex6.pl diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index 273c5360..81464828 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -848,8 +848,8 @@ "exception.zep.php" ] }, - "tokens_total": 659103, - "languages_total": 903, + "tokens_total": 659134, + "languages_total": 904, "tokens": { "ABAP": { "*/**": 1, @@ -55927,15 +55927,15 @@ "TWO_PI": 1 }, "Prolog": { - "-": 348, + "-": 350, "module": 4, - "(": 1156, + "(": 1161, "cpa_admin": 1, "[": 290, "change_password_form//1": 1, "]": 288, - ")": 1153, - ".": 230, + ")": 1158, + ".": 232, "use_module": 20, "user": 45, "user_db": 1, @@ -55973,7 +55973,7 @@ "user_logout": 4, "settings": 4, "save_settings": 3, - "%": 193, + "%": 194, "+": 47, "Request": 46, "HTTP": 4, @@ -56326,6 +56326,13 @@ "save": 1, "with": 3, "br": 1, + "subset": 2, + "Set": 4, + "Subset": 6, + "append": 3, + "L1": 1, + "powerset": 1, + "bagof": 1, "format_spec": 12, "format_error/2": 1, "format_spec/2": 1, @@ -56562,7 +56569,6 @@ "Goals": 2, "Tmp": 3, "instantiation_error": 1, - "append": 2, "NewArgs": 2, "variant_sha1": 1, "Sha": 2, @@ -73110,7 +73116,7 @@ "PostScript": 107, "PowerShell": 12, "Processing": 74, - "Prolog": 6885, + "Prolog": 6916, "Propeller Spin": 13519, "Protocol Buffer": 63, "PureScript": 1652, @@ -73324,7 +73330,7 @@ "PostScript": 1, "PowerShell": 2, "Processing": 1, - "Prolog": 6, + "Prolog": 7, "Propeller Spin": 10, "Protocol Buffer": 1, "PureScript": 4, @@ -73391,5 +73397,5 @@ "fish": 3, "wisp": 1 }, - "md5": "1500ca2d5506e7d4e02f8c1d14e348a4" + "md5": "50b2227d023291a6a909ca3866c171c8" } \ No newline at end of file diff --git a/samples/Prolog/ex6.pl b/samples/Prolog/ex6.pl new file mode 100644 index 00000000..0b1b74eb --- /dev/null +++ b/samples/Prolog/ex6.pl @@ -0,0 +1,5 @@ +%6.8 +subset(Set, Subset) :- + append(L1, Subset, Set). +powerset(Set, Subset) :- + bagof(Subset, subset(Set, Subset), Subset). From cc476e212e794a4d5f96f1f6ffd0c39c960245b0 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Thu, 4 Sep 2014 13:53:36 -0500 Subject: [PATCH 236/268] Another sample file Conflicts: lib/linguist/samples.json --- lib/linguist/samples.json | 28 +++++++++++++++++----------- samples/Prolog/ex6.pl | 5 +++++ 2 files changed, 22 insertions(+), 11 deletions(-) create mode 100644 samples/Prolog/ex6.pl diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index aa13d4b2..d9c1559a 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -851,8 +851,8 @@ "exception.zep.php" ] }, - "tokens_total": 654836, - "languages_total": 903, + "tokens_total": 654867, + "languages_total": 904, "tokens": { "ABAP": { "*/**": 1, @@ -55996,9 +55996,19 @@ "TWO_PI": 1 }, "Prolog": { - "-": 161, + "%": 72, + "subset": 2, + "(": 332, + "Set": 4, + "Subset": 6, + ")": 331, + "-": 163, + "append": 3, + "L1": 1, + ".": 109, + "powerset": 1, + "bagof": 1, "module": 3, - "(": 327, "format_spec": 12, "[": 87, "format_error/2": 1, @@ -56007,8 +56017,6 @@ "spec_arity/2": 1, "spec_types/2": 1, "]": 87, - ")": 326, - ".": 107, "use_module": 8, "library": 8, "dcg/basics": 1, @@ -56018,7 +56026,6 @@ "error": 6, "when": 3, "when/2": 1, - "%": 71, "mavis": 1, "format_error": 8, "+": 14, @@ -56291,7 +56298,6 @@ "Goals": 2, "Tmp": 3, "instantiation_error": 1, - "append": 2, "NewArgs": 2, "variant_sha1": 1, "Sha": 2, @@ -72845,7 +72851,7 @@ "PostScript": 107, "PowerShell": 12, "Processing": 74, - "Prolog": 2420, + "Prolog": 2451, "Propeller Spin": 13519, "Protocol Buffer": 63, "PureScript": 1652, @@ -73060,7 +73066,7 @@ "PostScript": 1, "PowerShell": 2, "Processing": 1, - "Prolog": 5, + "Prolog": 6, "Propeller Spin": 10, "Protocol Buffer": 1, "PureScript": 4, @@ -73127,5 +73133,5 @@ "fish": 3, "wisp": 1 }, - "md5": "74f6109f5d8edac6b3f2bd3d65b9d210" + "md5": "a27211466edff986df556defef2e4e84" } \ No newline at end of file diff --git a/samples/Prolog/ex6.pl b/samples/Prolog/ex6.pl new file mode 100644 index 00000000..0b1b74eb --- /dev/null +++ b/samples/Prolog/ex6.pl @@ -0,0 +1,5 @@ +%6.8 +subset(Set, Subset) :- + append(L1, Subset, Set). +powerset(Set, Subset) :- + bagof(Subset, subset(Set, Subset), Subset). From 2dfb864e4eeb0663314c7b2d8ddef30071509650 Mon Sep 17 00:00:00 2001 From: Paul Chaignon Date: Thu, 4 Sep 2014 20:32:45 -0400 Subject: [PATCH 237/268] Add .cgi as an extension for Python and Bash --- lib/linguist/languages.yml | 2 + samples/Python/action.cgi | 82 ++++++++++++++++++++++++++++++++++++++ samples/Shell/settime.cgi | 27 +++++++++++++ 3 files changed, 111 insertions(+) create mode 100644 samples/Python/action.cgi create mode 100644 samples/Shell/settime.cgi diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 47616921..a6f0054b 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1841,6 +1841,7 @@ Python: color: "#3581ba" extensions: - .py + - .cgi - .gyp - .lmi - .pyde @@ -2150,6 +2151,7 @@ Shell: - .sh - .bash - .bats + - .cgi - .tmux - .zsh interpreters: diff --git a/samples/Python/action.cgi b/samples/Python/action.cgi new file mode 100644 index 00000000..80630783 --- /dev/null +++ b/samples/Python/action.cgi @@ -0,0 +1,82 @@ +#!/usr/bin/python + +from model import Feed +import session +import datetime +import sys + +argv = session.argv() + +feed = Feed.get(guid=argv[1]) +action = argv[2] + +if action == 'done': + when = feed.notify_interval * feed.notify_unit +elif action == 'snooze': + if len(argv) > 3: + when = int(argv[3]) + else: + when = 3600 +else: + print '''Status: 400 Bad request +Content-type: text/html + +Unknown action %s''' % action + sys.exit(1) + +feed.notify_next = datetime.datetime.utcnow() + datetime.timedelta(seconds=when) +feed.save() + +response = '''Content-type: text/html + +Alarm reset + + + + +
    + +

    Reminder Me

    + +''' + +when_left = when +duration_list = [] +for (label,period) in [('month',86400*365/12), + ('week',86400*7), + ('day',86400), + ('hour',3600), + ('minute',60), + ('second',1)]: + if when == period: + duration_list = [label] + break + + val = when_left/period + if val: + duration_list.append("%d %s%s" % ( + val, + label, + val > 1 and 's' or '')) + when_left -= val*period + +basedir=session.request_script_dir() + +print response.format(guid=feed.guid, + name=feed.name, + edit_url="%s/edit.cgi" % basedir, + base_url=basedir, + duration=', '.join(duration_list)) + diff --git a/samples/Shell/settime.cgi b/samples/Shell/settime.cgi new file mode 100644 index 00000000..bdff9ec9 --- /dev/null +++ b/samples/Shell/settime.cgi @@ -0,0 +1,27 @@ +#!/bin/bash +echo "Content-type: text/html" +day=`echo "$QUERY_STRING" | sed -n 's/^.*day=\([^&]*\).*$/\1/p' | sed "s/%20/ /g"` +month=`echo "$QUERY_STRING" | sed -n 's/^.*month=\([^&]*\).*$/\1/p' | sed "s/%20/ /g"` +year=`echo "$QUERY_STRING" | sed -n 's/^.*year=\([^&]*\).*$/\1/p' | sed "s/%20/ /g"` +hour=`echo "$QUERY_STRING" | sed -n 's/^.*hour=\([^&]*\).*$/\1/p' | sed "s/%20/ /g"` +minute=`echo "$QUERY_STRING" | sed -n 's/^.*minute=\([^&]*\).*$/\1/p' | sed "s/%20/ /g"` +second=`echo "$QUERY_STRING" | sed -n 's/^.*second=\([^&]*\).*$/\1/p' | sed "s/%20/ /g"` +echo "" +echo "" + +echo "
     $(killall ems) 
    " + + + +echo "
     $(date $month$day$hour$minute$year.$second) 
    " + +echo "
     $(/sbin/hwclock -w>/dev/null & /sbin/reboot) 
    " + +echo "
     $(/sbin/reboot) 
    " + + + + + + +echo "" \ No newline at end of file From 62b181629734238a433ad8dbeb8c38d96c75a0e6 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Fri, 5 Sep 2014 10:40:37 -0500 Subject: [PATCH 238/268] 3.1.4 --- lib/linguist/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/version.rb b/lib/linguist/version.rb index 281ca9a1..2b2e68f7 100644 --- a/lib/linguist/version.rb +++ b/lib/linguist/version.rb @@ -1,3 +1,3 @@ module Linguist - VERSION = "3.1.2" + VERSION = "3.1.4" end From 34218c5f5867ae1f703e5d4021ee7e6a997e8108 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Fri, 5 Sep 2014 13:00:19 -0500 Subject: [PATCH 239/268] Scripty Prolog --- lib/linguist/samples.json | 38 +++++++++++++++++++---------- samples/Prolog/dleak-report.script! | 11 +++++++++ 2 files changed, 36 insertions(+), 13 deletions(-) create mode 100644 samples/Prolog/dleak-report.script! diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index 5b818edd..0089cffe 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -516,7 +516,8 @@ "Prolog": [ ".ecl", ".pl", - ".prolog" + ".prolog", + ".script!" ], "Propeller Spin": [ ".spin" @@ -851,8 +852,8 @@ "exception.zep.php" ] }, - "tokens_total": 659332, - "languages_total": 905, + "tokens_total": 659364, + "languages_total": 906, "tokens": { "ABAP": { "*/**": 1, @@ -55996,16 +55997,16 @@ "TWO_PI": 1 }, "Prolog": { - "-": 350, + "-": 354, "module": 4, - "(": 1161, + "(": 1165, "cpa_admin": 1, - "[": 290, + "[": 291, "change_password_form//1": 1, - "]": 288, - ")": 1158, - ".": 232, - "use_module": 20, + "]": 289, + ")": 1162, + ".": 235, + "use_module": 21, "user": 45, "user_db": 1, "library": 19, @@ -56395,6 +56396,17 @@ "save": 1, "with": 3, "br": 1, + "SHEBANG#!swipl": 1, + "set_prolog_flag": 1, + "verbose": 1, + "silent": 1, + "dleak": 2, + "initialization": 1, + "main": 2, + "halt.": 1, + "current_prolog_flag": 1, + "argv": 1, + "File": 2, "subset": 2, "Set": 4, "Subset": 6, @@ -73186,7 +73198,7 @@ "PostScript": 107, "PowerShell": 12, "Processing": 74, - "Prolog": 6916, + "Prolog": 6948, "Propeller Spin": 13519, "Protocol Buffer": 63, "PureScript": 1652, @@ -73401,7 +73413,7 @@ "PostScript": 1, "PowerShell": 2, "Processing": 1, - "Prolog": 7, + "Prolog": 8, "Propeller Spin": 10, "Protocol Buffer": 1, "PureScript": 4, @@ -73468,5 +73480,5 @@ "fish": 3, "wisp": 1 }, - "md5": "3778b7ad7414915c83e6960531006542" + "md5": "3aca50df0a36ba29502d437de1226495" } \ No newline at end of file diff --git a/samples/Prolog/dleak-report.script! b/samples/Prolog/dleak-report.script! new file mode 100644 index 00000000..8e97abed --- /dev/null +++ b/samples/Prolog/dleak-report.script! @@ -0,0 +1,11 @@ +#!/usr/bin/env swipl + +:- set_prolog_flag(verbose, silent). +:- use_module(dleak). + +:- initialization + main, halt. + +main :- + current_prolog_flag(argv, [File]), + dleak(File). From 35a9d241fcafdf43568d697088a6d4705772d0f7 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Fri, 5 Sep 2014 13:23:10 -0500 Subject: [PATCH 240/268] Samples --- lib/linguist/samples.json | 144 ++++++++++++++++++++++++++------------ 1 file changed, 101 insertions(+), 43 deletions(-) diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index 0089cffe..559ef894 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -529,6 +529,7 @@ ".purs" ], "Python": [ + ".cgi", ".py", ".pyde", ".pyp", @@ -625,6 +626,7 @@ ], "Shell": [ ".bash", + ".cgi", ".script!", ".sh", ".zsh" @@ -852,8 +854,8 @@ "exception.zep.php" ] }, - "tokens_total": 659364, - "languages_total": 906, + "tokens_total": 659559, + "languages_total": 908, "tokens": { "ABAP": { "*/**": 1, @@ -59074,6 +59076,86 @@ "entry.completed": 1 }, "Python": { + "SHEBANG#!python": 5, + "from": 37, + "model": 9, + "import": 59, + "Feed": 1, + "session": 1, + "datetime": 1, + "sys": 4, + "argv": 5, + "session.argv": 1, + "(": 859, + ")": 871, + "feed": 1, + "Feed.get": 1, + "guid": 1, + "[": 168, + "]": 168, + "action": 5, + "if": 162, + "when": 4, + "feed.notify_interval": 1, + "*": 39, + "feed.notify_unit": 1, + "elif": 5, + "len": 12, + "int": 2, + "else": 35, + "print": 40, + "%": 34, + "sys.exit": 2, + "feed.notify_next": 1, + "datetime.datetime.utcnow": 1, + "+": 52, + "datetime.timedelta": 1, + "seconds": 1, + "feed.save": 1, + "response": 1, + "t": 9, + "be": 2, + "notified": 1, + "for": 70, + "another": 2, + "": 1, + "class=": 2, + "{": 28, + "duration": 1, + "}": 28, + "": 1, + ".": 2, + "

    ": 3, + "

    ": 2, + "Actions": 1, + "

    ": 1, + "": 2, + "": 1, + "": 1, + "month": 1, + "week": 1, + "day": 1, + "hour": 1, + "minute": 1, + "second": 1, + "s": 2, + ".join": 5, + "duration_list": 1, "xspacing": 4, "#": 28, "How": 2, @@ -59083,7 +59165,6 @@ "each": 1, "horizontal": 1, "location": 1, - "be": 1, "spaced": 1, "maxwaves": 3, "total": 1, @@ -59094,24 +59175,18 @@ "together": 1, "theta": 3, "amplitude": 3, - "[": 165, - "]": 165, "Height": 1, "wave": 2, "dx": 8, "yvalues": 7, "def": 87, "setup": 2, - "(": 850, - ")": 861, "size": 5, "frameRate": 1, "colorMode": 1, "RGB": 1, "w": 2, "width": 1, - "+": 51, - "for": 69, "i": 13, "in": 91, "range": 5, @@ -59121,25 +59196,19 @@ "many": 1, "pixels": 1, "before": 1, - "the": 6, "repeats": 1, "dx.append": 1, "TWO_PI": 1, "/": 26, - "*": 38, "_": 6, "yvalues.append": 1, "draw": 2, "background": 2, "calcWave": 2, "renderWave": 2, - "len": 11, "j": 7, "x": 34, - "if": 160, - "%": 33, "sin": 1, - "else": 33, "cos": 1, "noStroke": 2, "fill": 2, @@ -59149,14 +59218,11 @@ "enumerate": 2, "ellipse": 1, "height": 1, - "import": 55, "os": 2, - "sys": 3, "json": 1, "c4d": 1, "c4dtools": 1, "itertools": 1, - "from": 36, "c4d.modules": 1, "graphview": 1, "as": 14, @@ -59170,9 +59236,7 @@ "__res__": 1, "settings": 2, "c4dtools.helpers.Attributor": 2, - "{": 27, "res.file": 3, - "}": 27, "align_nodes": 2, "nodes": 11, "mode": 5, @@ -59183,7 +59247,6 @@ "return": 68, "raise": 23, "ValueError": 6, - ".join": 4, "get_0": 12, "lambda": 6, "x.x": 1, @@ -59430,7 +59493,6 @@ "field.name": 14, "base.__name__": 2, "base._meta.abstract": 2, - "elif": 4, "attr_name": 3, "base._meta.module_name": 1, "auto_created": 1, @@ -59468,7 +59530,6 @@ "is_next": 9, "cls.get_previous_in_order": 1, "make_foreign_order_accessors": 2, - "model": 8, "field.rel.to": 2, "cls.__name__.lower": 2, "method_get_order": 2, @@ -59751,7 +59812,6 @@ "A": 1, "which": 1, "methods": 5, - "this": 2, "pluggable": 1, "view": 2, "can": 1, @@ -59763,7 +59823,6 @@ "based": 1, "views": 1, "as_view": 1, - ".": 1, "However": 1, "since": 1, "moves": 1, @@ -59773,7 +59832,6 @@ "place": 1, "where": 1, "it": 1, - "s": 1, "also": 1, "used": 1, "instantiating": 1, @@ -59852,14 +59910,11 @@ "Person": 1, "_message.Message": 1, "_reflection.GeneratedProtocolMessageType": 1, - "SHEBANG#!python": 4, - "print": 39, "main": 4, "usage": 3, "string": 1, "command": 4, "sys.argv": 2, - "sys.exit": 1, "printDelimiter": 4, "get": 1, "a": 2, @@ -59897,7 +59952,6 @@ "V": 12, "np.genfromtxt": 8, "delimiter": 8, - "t": 8, "U_err": 7, "offset": 13, "np.mean": 1, @@ -60044,7 +60098,6 @@ "help": 2, "dest": 1, "default": 1, - "action": 1, "version": 6, "parser.parse_args": 1, "absolute_import": 1, @@ -60132,7 +60185,6 @@ "connection": 5, "content_length": 6, "headers.get": 2, - "int": 1, "self.stream.max_buffer_size": 1, "self.stream.read_bytes": 1, "self._on_request_body": 1, @@ -63931,18 +63983,18 @@ "assert_checkfalse": 1 }, "Shell": { - "SHEBANG#!bash": 8, + "SHEBANG#!bash": 9, "typeset": 5, - "-": 391, + "-": 397, "i": 2, - "n": 22, + "n": 28, "bottles": 6, "no": 16, "while": 3, "[": 85, "]": 85, "do": 8, - "echo": 71, + "echo": 85, "case": 9, "{": 63, "}": 61, @@ -64000,7 +64052,7 @@ "long": 2, "format...": 2, "ll": 2, - "|": 17, + "|": 29, "less": 2, "XF": 2, "pipe": 2, @@ -64178,7 +64230,7 @@ "it": 2, "pg": 2, "patch": 2, - "sed": 2, + "sed": 14, "awk": 2, "diff": 2, "grep": 8, @@ -64663,6 +64715,12 @@ "#residual_args": 1, "SHEBANG#!sh": 2, "SHEBANG#!zsh": 2, + "day": 1, + "month": 1, + "year": 1, + "hour": 1, + "minute": 1, + "second": 1, "name": 1, "foodforthought.jpg": 1, "name##*fo": 1 @@ -73202,7 +73260,7 @@ "Propeller Spin": 13519, "Protocol Buffer": 63, "PureScript": 1652, - "Python": 6587, + "Python": 6725, "QMake": 119, "R": 1790, "RDoc": 279, @@ -73224,7 +73282,7 @@ "Scaml": 4, "Scheme": 3515, "Scilab": 69, - "Shell": 3744, + "Shell": 3801, "ShellSession": 233, "Shen": 3472, "Slash": 187, @@ -73417,7 +73475,7 @@ "Propeller Spin": 10, "Protocol Buffer": 1, "PureScript": 4, - "Python": 10, + "Python": 11, "QMake": 4, "R": 7, "RDoc": 1, @@ -73439,7 +73497,7 @@ "Scaml": 1, "Scheme": 2, "Scilab": 3, - "Shell": 37, + "Shell": 38, "ShellSession": 3, "Shen": 3, "Slash": 1, @@ -73480,5 +73538,5 @@ "fish": 3, "wisp": 1 }, - "md5": "3aca50df0a36ba29502d437de1226495" + "md5": "1a8591982ec28c592a742122734c142c" } \ No newline at end of file From 6f896d988f7c52e9bee0b66c3d376e237138c70e Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Fri, 5 Sep 2014 13:24:39 -0500 Subject: [PATCH 241/268] 3.1.5 --- lib/linguist/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/version.rb b/lib/linguist/version.rb index 2b2e68f7..b5bd50de 100644 --- a/lib/linguist/version.rb +++ b/lib/linguist/version.rb @@ -1,3 +1,3 @@ module Linguist - VERSION = "3.1.4" + VERSION = "3.1.5" end From dab75f6f97940362ca1fe05a00efc8ede415bf8b Mon Sep 17 00:00:00 2001 From: Brandon Keepers Date: Wed, 10 Sep 2014 15:47:44 -0500 Subject: [PATCH 242/268] Rework benchmarking script to avoid git operations $ git checkout master $ bundle exec rake benchmark:generate CORPUS=~/Downloads/samples-9 wrote benchmark/results/samples-9-8cdb8ed4.json $ git checkout branch-name $ bx rake benchmark:generate CORPUS=~/Downloads/samples-9 wrote benchmark/results/samples-9-8d8020dd.json $ bx rake benchmark:compare REFERENCE=benchmark/results/samples-9-8cdb8ed4.json CANDIDATE=benchmark/results/samples-9-8d8020dd.json LanguageA changed from 95.9% to 0.0% LanguageB changed from 4.0% to 99.9% --- Rakefile | 170 +++++++++++++------------------------------------------ 1 file changed, 39 insertions(+), 131 deletions(-) diff --git a/Rakefile b/Rakefile index 53f5e924..4d52d197 100644 --- a/Rakefile +++ b/Rakefile @@ -23,156 +23,57 @@ task :build_gem do File.delete("lib/linguist/languages.json") end -# Want to do: rake benchmark:compare refs=20154eb04...6ed0a05b4 -# If output for 20154eb04 or 6ed0a05b4 doesn't exist then should throw error -# Classification outputs for each commit need to be generated before the comparison can be done -# With something like: rake benchmark:generate ref=20154eb04 - namespace :benchmark do - require 'git' benchmark_path = "benchmark/results" - git = Git.open('.') - - desc "Compare outputs" - task :compare do - reference, compare = ENV['refs'].split('...') - puts "Comparing #{reference}...#{compare}" - - # Abort if there are uncommitted changes - abort("Uncommitted changes -- aborting") if git.status.changed.any? - - [reference, compare].each do |ref| - abort("No output file for #{ref}, run 'rake benchmark:generate ref=#{ref}'") unless File.exist?("#{benchmark_path}/#{ref}.json") - end - end - - desc "Generate classification summary for given ref" + # $ rake benchmark:generate CORPUS=path/to/samples + desc "Generate results for" task :generate do - ref = ENV['ref'] - abort("Must specify a commit ref, e.g. 'rake benchmark:generate ref=08819f82'") unless ref - abort("Unstaged changes - aborting") if git.status.changed.any? - - # Get the current branch - # Would like to get this from the Git gem - current_branch = `git rev-parse --abbrev-ref HEAD`.strip - - puts "Checking out #{ref}" - git.checkout(ref) - - # RUN BENCHMARK - # Go through benchmark/samples/LANG dirs - # For each Language - - Rake::Task["benchmark:index"].execute(:commit => ref) - - # Checkout original branch - git.checkout(current_branch) - end - - desc "Build benchmark index" - task :index, [:commit] do |t, args| + ref = `git rev-parse HEAD`.strip[0,8] + corpus = File.expand_path(ENV["CORPUS"] || "samples") require 'linguist/language' + results = Hash.new - languages = Dir.glob('benchmark/samples/*') - - languages.each do |lang| - puts "" - puts "Starting with #{lang}" - results[lang] = {} - files = Dir.glob("#{lang}/*") - files.each do |file| - next unless File.file?(file) - puts " #{file}" - - blob = Linguist::FileBlob.new(file, Dir.pwd) - result = blob.language - - filename = File.basename(file) - if result.nil? # No results - results[lang][filename] = "No language" - else - results[lang][filename] = result.name - end - end + Dir.glob("#{corpus}/**/*").each do |file| + next unless File.file?(file) + filename = file.gsub("#{corpus}/", "") + results[filename] = Linguist::FileBlob.new(file).language end - File.open("benchmark/results/#{args[:commit]}.json", "w") {|f| f.write(results.to_json) } + # Ensure results directory exists + FileUtils.mkdir_p("benchmark/results") + + # Write results + result_filename = "benchmark/results/#{File.basename(corpus)}-#{ref}.json" + File.write(result_filename, results.to_json) + puts "wrote #{result_filename}" end + # $ rake benchmark:compare REFERENCE=path/to/reference.json CANDIDATE=path/to/candidate.json desc "Compare results" - task :results do - # Deep diffing - require './lib/linguist/diff' + task :compare do + reference_file = ENV["REFERENCE"] + candidate_file = ENV["CANDIDATE"] - reference, compare = ENV['refs'].split('...') + reference = JSON.parse(File.read(reference_file)) + reference_counts = Hash.new(0) + reference.each { |filename, language| reference_counts[language] += 1 } - reference_classifications_file = "benchmark/results/#{reference}.json" - compare_classifications_file = "benchmark/results/#{compare}.json" + candidate = JSON.parse(File.read(candidate_file)) + candidate_counts = Hash.new(0) + candidate.each { |filename, language| candidate_counts[language] += 1 } - # DO COMPARISON... - abort("No result files to compare") unless (File.exist?(reference_classifications_file) && File.exist?(compare_classifications_file)) - reference_classifications = JSON.parse(File.read(reference_classifications_file)) - compare_classifications = JSON.parse(File.read(compare_classifications_file)) + changes = diff(reference_counts, candidate_counts) - # Check if samples don't match current classification - puts "" - puts "Potential misclassifications for #{reference}" - reference_classifications.each do |lang, files| - language_name = lang.split('/').last - - files.each do |name, classification| - # FIXME Don't want to report stuff from these dirs for now - next if ['Binary', 'Text'].include?(language_name) - unless classification == language_name - puts " #{name} is classified as #{classification} but #{language_name} was expected" - end - end - end - - # Check if samples don't match current classification - # TODO DRY this up. - puts "" - puts "Potential misclassifications for #{compare}" - compare_classifications.each do |lang, files| - language_name = lang.split('/').last - - files.each do |name, classification| - # FIXME Don't want to report stuff from these dirs for now - next if ['Binary', 'Text'].include?(language_name) - unless classification == language_name - puts " #{name} is classified as #{classification} but #{language_name} was expected" - end - end - end - - puts "" - puts "Changes between #{reference}...#{compare}" - changes = reference_classifications.deep_diff(compare_classifications) - - # Are there any differences in the linguist classification? if changes.any? - changes.each do |lang, files| - previous_count = reference_classifications[lang].size - - # Count the number of changed classifications (language and number) - summary = changes[lang].inject(Hash.new(0)) do |result, (key, val)| - new_lang = val.last - result[new_lang] += 1 - result - end - - puts "#{lang}" - - # Work out the percentage change - summary.each do |new_lang, count| - percent = count / previous_count.to_f - puts " #{sprintf("%.2f", percent)}% change to #{new_lang} (count files)" - end + changes.each do |language, (before, after)| + before_percent = 100 * before / reference.size.to_f + after_percent = 100 * after / candidate.size.to_f + puts "%s changed from %.1f%% to %.1f%%" % [language || 'unknown', before_percent, after_percent] end else - puts " No changes" + puts "No changes" end end end @@ -226,3 +127,10 @@ namespace :classifier do end end end + + +def diff(a, b) + (a.keys | b.keys).each_with_object({}) do |key, diff| + diff[key] = [a[key], b[key]] unless a[key] == b[key] + end +end From 9288f784a17a92bc43c02798326bffab3eeb2422 Mon Sep 17 00:00:00 2001 From: Brandon Keepers Date: Wed, 10 Sep 2014 15:49:54 -0500 Subject: [PATCH 243/268] remove hash extension --- lib/linguist/diff.rb | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 lib/linguist/diff.rb diff --git a/lib/linguist/diff.rb b/lib/linguist/diff.rb deleted file mode 100644 index 759fc7e7..00000000 --- a/lib/linguist/diff.rb +++ /dev/null @@ -1,19 +0,0 @@ -module HashDiff - def deep_diff(b) - a = self - (a.keys | b.keys).inject({}) do |diff, k| - if a[k] != b[k] - if a[k].respond_to?(:deep_diff) && b[k].respond_to?(:deep_diff) - diff[k] = a[k].deep_diff(b[k]) - else - diff[k] = [a[k], b[k]] - end - end - diff - end - end -end - -class Hash - include HashDiff -end From 68504990563fb663269513d569c43c727cd91899 Mon Sep 17 00:00:00 2001 From: Brandon Keepers Date: Wed, 10 Sep 2014 15:49:59 -0500 Subject: [PATCH 244/268] Remove git dependency --- github-linguist.gemspec | 1 - 1 file changed, 1 deletion(-) diff --git a/github-linguist.gemspec b/github-linguist.gemspec index d61d7658..382b6cae 100644 --- a/github-linguist.gemspec +++ b/github-linguist.gemspec @@ -19,7 +19,6 @@ Gem::Specification.new do |s| s.add_dependency 'pygments.rb', '~> 0.6.0' s.add_dependency 'rugged', '~> 0.21.0' - s.add_development_dependency 'git' s.add_development_dependency 'json' s.add_development_dependency 'mocha' s.add_development_dependency 'pry' From ff457af2d4ddec0577219f761dce3431e9829661 Mon Sep 17 00:00:00 2001 From: Paulo Moura Date: Fri, 12 Sep 2014 20:49:54 +0100 Subject: [PATCH 245/268] Use the Logtalk lexer for syntax coloring of Prolog files --- lib/linguist/languages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index a6f0054b..5c6e147d 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1792,6 +1792,7 @@ Processing: Prolog: type: programming + lexer: Logtalk color: "#74283c" extensions: - .pl From 98977c87dbf1d72c0a990dbb42eececaf902b322 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Fri, 12 Sep 2014 16:32:21 -0500 Subject: [PATCH 246/268] Heuristics on for .cl --- lib/linguist/heuristics.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/linguist/heuristics.rb b/lib/linguist/heuristics.rb index b22422c3..219f6dc6 100644 --- a/lib/linguist/heuristics.rb +++ b/lib/linguist/heuristics.rb @@ -19,6 +19,9 @@ module Linguist if languages.all? { |l| ["ECL", "Prolog"].include?(l) } result = disambiguate_ecl(data, languages) end + if languages.all? { |l| ["Common Lisp", "OpenCL"].include?(l) } + result = disambiguate_cl(data, languages) + end return result end end From 5932f5f27348890d1114d5e9feefc4d5a176e569 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Sat, 13 Sep 2014 11:06:15 -0500 Subject: [PATCH 247/268] Allow for result to be generated when there are un-committed changes. --- Rakefile | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/Rakefile b/Rakefile index 4d52d197..9c3aa2ee 100644 --- a/Rakefile +++ b/Rakefile @@ -26,10 +26,11 @@ end namespace :benchmark do benchmark_path = "benchmark/results" - # $ rake benchmark:generate CORPUS=path/to/samples + # $ bundle exec rake benchmark:generate CORPUS=path/to/samples desc "Generate results for" task :generate do ref = `git rev-parse HEAD`.strip[0,8] + corpus = File.expand_path(ENV["CORPUS"] || "samples") require 'linguist/language' @@ -45,12 +46,17 @@ namespace :benchmark do FileUtils.mkdir_p("benchmark/results") # Write results - result_filename = "benchmark/results/#{File.basename(corpus)}-#{ref}.json" + if `git status`.include?('working directory clean') + result_filename = "benchmark/results/#{File.basename(corpus)}-#{ref}.json" + else + result_filename = "benchmark/results/#{File.basename(corpus)}-#{ref}-unstaged.json" + end + File.write(result_filename, results.to_json) puts "wrote #{result_filename}" end - # $ rake benchmark:compare REFERENCE=path/to/reference.json CANDIDATE=path/to/candidate.json + # $ bundle exec rake benchmark:compare REFERENCE=path/to/reference.json CANDIDATE=path/to/candidate.json desc "Compare results" task :compare do reference_file = ENV["REFERENCE"] From 1cf7a6389cfadadec07ea352f8d4c2530fe68ed3 Mon Sep 17 00:00:00 2001 From: Ankit Ranjan Date: Sat, 13 Sep 2014 12:00:30 -0700 Subject: [PATCH 248/268] Changes C# to proposed color in #1332 --- lib/linguist/languages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index a6f0054b..ef125973 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -283,7 +283,7 @@ C#: type: programming ace_mode: csharp search_term: csharp - color: "#5a25a2" + color: "#178600" aliases: - csharp extensions: From 54a7cf6785bb57eb8a79597b65d8217cd5a636c6 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Mon, 15 Sep 2014 13:20:09 +0200 Subject: [PATCH 249/268] Fix typos --- lib/linguist/heuristics.rb | 2 +- lib/linguist/language.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/linguist/heuristics.rb b/lib/linguist/heuristics.rb index b22422c3..d39ae423 100644 --- a/lib/linguist/heuristics.rb +++ b/lib/linguist/heuristics.rb @@ -23,7 +23,7 @@ module Linguist end end - # .h extensions are ambigious between C, C++, and Objective-C. + # .h extensions are ambiguous between C, C++, and Objective-C. # We want to shortcut look for Objective-C _and_ now C++ too! # # Returns an array of Languages or [] diff --git a/lib/linguist/language.rb b/lib/linguist/language.rb index e42fbdc9..e9e519b8 100644 --- a/lib/linguist/language.rb +++ b/lib/linguist/language.rb @@ -135,7 +135,7 @@ module Linguist # No shebang. Still more work to do. Try to find it with our heuristics. elsif (determined = Heuristics.find_by_heuristics(data, possible_language_names)) && !determined.empty? determined.first - # Lastly, fall back to the probablistic classifier. + # Lastly, fall back to the probabilistic classifier. elsif classified = Classifier.classify(Samples::DATA, data, possible_language_names).first # Return the actual Language object based of the string language name (i.e., first element of `#classify`) Language[classified[0]] From 393c9b759e6a8fb900f01d48491960838591c885 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Mon, 15 Sep 2014 14:28:16 +0200 Subject: [PATCH 250/268] Add support for the GDScript language References: * https://github.com/okamstudio/godot/wiki/gdscript * http://www.godotengine.org/ Some projects using it: * https://github.com/okamstudio/godot * https://github.com/Qwertie-/Godot-games My motivation for adding it: To disambiguate these .gd files from GAP .gd files. --- lib/linguist/languages.yml | 6 + samples/GDScript/example.gd | 57 +++++++++ samples/GDScript/grid.gd | 216 ++++++++++++++++++++++++++++++++ samples/GDScript/player.gd | 243 ++++++++++++++++++++++++++++++++++++ samples/GDScript/pong.gd | 73 +++++++++++ 5 files changed, 595 insertions(+) create mode 100644 samples/GDScript/example.gd create mode 100644 samples/GDScript/grid.gd create mode 100644 samples/GDScript/player.gd create mode 100644 samples/GDScript/pong.gd diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index a6f0054b..bd8f49e7 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -785,6 +785,12 @@ GAS: - .s - .S +GDScript: + type: programming + lexer: Text only + extensions: + - .gd + GLSL: group: C type: programming diff --git a/samples/GDScript/example.gd b/samples/GDScript/example.gd new file mode 100644 index 00000000..3f55d169 --- /dev/null +++ b/samples/GDScript/example.gd @@ -0,0 +1,57 @@ +# Taken from https://github.com/okamstudio/godot/wiki/gdscript +# a file is a class! + +# inheritance + +extends BaseClass + +# member variables + +var a = 5 +var s = "Hello" +var arr = [1, 2, 3] +var dict = {"key":"value", 2:3} + +# constants + +const answer = 42 +const thename = "Charly" + +# built-in vector types + +var v2 = Vector2(1, 2) +var v3 = Vector3(1, 2, 3) + +# function + +func some_function(param1, param2): + var local_var = 5 + + if param1 < local_var: + print(param1) + elif param2 > 5: + print(param2) + else: + print("fail!") + + for i in range(20): + print(i) + + while(param2 != 0): + param2 -= 1 + + var local_var2 = param1+3 + return local_var2 + + +# subclass + +class Something: + var a = 10 + +# constructor + +func _init(): + print("constructed!") + var lv = Something.new() + print(lv.a) diff --git a/samples/GDScript/grid.gd b/samples/GDScript/grid.gd new file mode 100644 index 00000000..dc893008 --- /dev/null +++ b/samples/GDScript/grid.gd @@ -0,0 +1,216 @@ + + +extends Control + +# Simple Tetris-like demo, (c) 2012 Juan Linietsky +# Implemented by using a regular Control and drawing on it during the _draw() callback. +# The drawing surface is updated only when changes happen (by calling update()) + + +var score = 0 +var score_label=null + +const MAX_SHAPES = 7 + +var block = preload("block.png") + +var block_colors=[ + Color(1,0.5,0.5), + Color(0.5,1,0.5), + Color(0.5,0.5,1), + Color(0.8,0.4,0.8), + Color(0.8,0.8,0.4), + Color(0.4,0.8,0.8), + Color(0.7,0.7,0.7)] + +var block_shapes=[ + [ Vector2(0,-1),Vector2(0,0),Vector2(0,1),Vector2(0,2) ], # I + [ Vector2(0,0),Vector2(1,0),Vector2(1,1),Vector2(0,1) ], # O + [ Vector2(-1,1),Vector2(0,1),Vector2(0,0),Vector2(1,0) ], # S + [ Vector2(1,1),Vector2(0,1),Vector2(0,0),Vector2(-1,0) ], # Z + [ Vector2(-1,1),Vector2(-1,0),Vector2(0,0),Vector2(1,0) ], # L + [ Vector2(1,1),Vector2(1,0),Vector2(0,0),Vector2(-1,0) ], # J + [ Vector2(0,1),Vector2(1,0),Vector2(0,0),Vector2(-1,0) ]] # T + + +var block_rotations=[ + Matrix32( Vector2(1,0),Vector2(0,1), Vector2() ), + Matrix32( Vector2(0,1),Vector2(-1,0), Vector2() ), + Matrix32( Vector2(-1,0),Vector2(0,-1), Vector2() ), + Matrix32( Vector2(0,-1),Vector2(1,0), Vector2() ) +] + + +var width=0 +var height=0 + +var cells={} + +var piece_active=false +var piece_shape=0 +var piece_pos=Vector2() +var piece_rot=0 + + +func piece_cell_xform(p,er=0): + var r = (4+er+piece_rot)%4 + return piece_pos+block_rotations[r].xform(p) + +func _draw(): + + var sb = get_stylebox("bg","Tree") # use line edit bg + draw_style_box(sb,Rect2(Vector2(),get_size()).grow(3)) + + var bs = block.get_size() + for y in range(height): + for x in range(width): + if (Vector2(x,y) in cells): + draw_texture_rect(block,Rect2(Vector2(x,y)*bs,bs),false,block_colors[cells[Vector2(x,y)]]) + + if (piece_active): + + for c in block_shapes[piece_shape]: + draw_texture_rect(block,Rect2(piece_cell_xform(c)*bs,bs),false,block_colors[piece_shape]) + + +func piece_check_fit(ofs,er=0): + + for c in block_shapes[piece_shape]: + var pos = piece_cell_xform(c,er)+ofs + if (pos.x < 0): + return false + if (pos.y < 0): + return false + if (pos.x >= width): + return false + if (pos.y >= height): + return false + if (pos in cells): + return false + + return true + +func new_piece(): + + piece_shape = randi() % MAX_SHAPES + piece_pos = Vector2(width/2,0) + piece_active=true + piece_rot=0 + if (piece_shape==0): + piece_pos.y+=1 + + if (not piece_check_fit(Vector2())): + #game over + #print("GAME OVER!") + game_over() + + update() + + +func test_collapse_rows(): + var accum_down=0 + for i in range(height): + var y = height - i - 1 + var collapse = true + for x in range(width): + if (Vector2(x,y) in cells): + if (accum_down): + cells[ Vector2(x,y+accum_down) ] = cells[Vector2(x,y)] + else: + collapse=false + if (accum_down): + cells.erase( Vector2(x,y+accum_down) ) + + if (collapse): + accum_down+=1 + + + score+=accum_down*100 + score_label.set_text(str(score)) + + +func game_over(): + + piece_active=false + get_node("gameover").set_text("Game Over") + update() + + +func restart_pressed(): + + score=0 + score_label.set_text("0") + cells.clear() + get_node("gameover").set_text("") + piece_active=true + update() + + + +func piece_move_down(): + + if (!piece_active): + return + if (piece_check_fit(Vector2(0,1))): + piece_pos.y+=1 + update() + else: + + for c in block_shapes[piece_shape]: + var pos = piece_cell_xform(c) + cells[pos]=piece_shape + test_collapse_rows() + new_piece() + + +func piece_rotate(): + + var adv = 1 + if (not piece_check_fit(Vector2(),1)): + return + piece_rot = (piece_rot + adv) % 4 + update() + + + +func _input(ie): + + + if (not piece_active): + return + if (!ie.is_pressed()): + return + + if (ie.is_action("move_left")): + if (piece_check_fit(Vector2(-1,0))): + piece_pos.x-=1 + update() + elif (ie.is_action("move_right")): + if (piece_check_fit(Vector2(1,0))): + piece_pos.x+=1 + update() + elif (ie.is_action("move_down")): + piece_move_down() + elif (ie.is_action("rotate")): + piece_rotate() + + +func setup(w,h): + width=w + height=h + set_size( Vector2(w,h)*block.get_size() ) + new_piece() + get_node("timer").start() + + +func _ready(): + # Initalization here + + setup(10,20) + score_label = get_node("../score") + + set_process_input(true) + + + + diff --git a/samples/GDScript/player.gd b/samples/GDScript/player.gd new file mode 100644 index 00000000..4eeb12e2 --- /dev/null +++ b/samples/GDScript/player.gd @@ -0,0 +1,243 @@ + +extends RigidBody + +# member variables here, example: +# var a=2 +# var b="textvar" + +#var dir=Vector3() + +const ANIM_FLOOR = 0 +const ANIM_AIR_UP = 1 +const ANIM_AIR_DOWN = 2 + +const SHOOT_TIME = 1.5 +const SHOOT_SCALE = 2 + +const CHAR_SCALE = Vector3(0.3,0.3,0.3) + +var facing_dir = Vector3(1, 0, 0) +var movement_dir = Vector3() + +var jumping=false + +var turn_speed=40 +var keep_jump_inertia = true +var air_idle_deaccel = false +var accel=19.0 +var deaccel=14.0 +var sharp_turn_threshhold = 140 + +var max_speed=3.1 +var on_floor = false + +var prev_shoot = false + +var last_floor_velocity = Vector3() + +var shoot_blend = 0 + +func adjust_facing(p_facing, p_target,p_step, p_adjust_rate,current_gn): + + var n = p_target # normal + var t = n.cross(current_gn).normalized() + + var x = n.dot(p_facing) + var y = t.dot(p_facing) + + var ang = atan2(y,x) + + if (abs(ang)<0.001): # too small + return p_facing + + var s = sign(ang) + ang = ang * s + var turn = ang * p_adjust_rate * p_step + var a + if (ang 0.1 and rad2deg(acos(target_dir.dot(hdir))) > sharp_turn_threshhold + + if (dir.length()>0.1 and !sharp_turn) : + if (hspeed > 0.001) : + + #linear_dir = linear_h_velocity/linear_vel + #if (linear_vel > brake_velocity_limit and linear_dir.dot(ctarget_dir)<-cos(Math::deg2rad(brake_angular_limit))) + # brake=true + #else + hdir = adjust_facing(hdir,target_dir,delta,1.0/hspeed*turn_speed,up) + facing_dir = hdir + else: + + hdir = target_dir + + if (hspeed0): + anim=ANIM_AIR_UP + else: + anim=ANIM_AIR_DOWN + + var hs + if (dir.length()>0.1): + + hv += target_dir * (accel * 0.2) * delta + if (hv.length() > max_speed): + hv = hv.normalized() * max_speed + + else: + + if (air_idle_deaccel): + hspeed = hspeed - (deaccel * 0.2) * delta + if (hspeed<0): + hspeed=0 + + hv = hdir*hspeed + + + if (jumping and vv < 0): + jumping=false + + lv = hv+up*vv + + + + if (onfloor): + + movement_dir = lv + #lv += floor_velocity + last_floor_velocity = floor_velocity + else: + + if (on_floor) : + + #if (keep_jump_inertia): + # lv += last_floor_velocity + pass + + last_floor_velocity = Vector3() + movement_dir = lv + + on_floor = onfloor + + state.set_linear_velocity(lv) + + if (shoot_blend>0): + shoot_blend -= delta * SHOOT_SCALE + if (shoot_blend<0): + shoot_blend=0 + + if (shoot_attempt and not prev_shoot): + shoot_blend = SHOOT_TIME + var bullet = preload("res://bullet.scn").instance() + bullet.set_transform( get_node("Armature/bullet").get_global_transform().orthonormalized() ) + get_parent().add_child( bullet ) + bullet.set_linear_velocity( get_node("Armature/bullet").get_global_transform().basis[2].normalized() * 20 ) + PS.body_add_collision_exception( bullet.get_rid(), get_rid() ) #add it to bullet + get_node("sfx").play("shoot") + + prev_shoot = shoot_attempt + + if (onfloor): + get_node("AnimationTreePlayer").blend2_node_set_amount("walk",hspeed / max_speed) + + get_node("AnimationTreePlayer").transition_node_set_current("state",anim) + get_node("AnimationTreePlayer").blend2_node_set_amount("gun",min(shoot_blend,1.0)) +# state.set_angular_velocity(Vector3()) + + + + +func _ready(): + + + # Initalization here + get_node("AnimationTreePlayer").set_active(true) + pass + + diff --git a/samples/GDScript/pong.gd b/samples/GDScript/pong.gd new file mode 100644 index 00000000..bfffdcf0 --- /dev/null +++ b/samples/GDScript/pong.gd @@ -0,0 +1,73 @@ + +extends Node2D + +# member variables here, example: +# var a=2 +# var b="textvar" +const INITIAL_BALL_SPEED = 80 +var ball_speed = INITIAL_BALL_SPEED +var screen_size = Vector2(640,400) +#default ball direction +var direction = Vector2(-1,0) +var pad_size = Vector2(8,32) +const PAD_SPEED = 150 + + +func _process(delta): + + + # get ball positio and pad rectangles + var ball_pos = get_node("ball").get_pos() + var left_rect = Rect2( get_node("left").get_pos() - pad_size*0.5, pad_size ) + var right_rect = Rect2( get_node("right").get_pos() - pad_size*0.5, pad_size ) + + #integrate new ball postion + ball_pos+=direction*ball_speed*delta + + #flip when touching roof or floor + if ( (ball_pos.y<0 and direction.y <0) or (ball_pos.y>screen_size.y and direction.y>0)): + direction.y = -direction.y + + #flip, change direction and increase speed when touching pads + if ( (left_rect.has_point(ball_pos) and direction.x < 0) or (right_rect.has_point(ball_pos) and direction.x > 0)): + direction.x=-direction.x + ball_speed*=1.1 + direction.y=randf()*2.0-1 + direction = direction.normalized() + + #check gameover + if (ball_pos.x<0 or ball_pos.x>screen_size.x): + ball_pos=screen_size*0.5 + ball_speed=INITIAL_BALL_SPEED + direction=Vector2(-1,0) + + + get_node("ball").set_pos(ball_pos) + + #move left pad + var left_pos = get_node("left").get_pos() + + if (left_pos.y > 0 and Input.is_action_pressed("left_move_up")): + left_pos.y+=-PAD_SPEED*delta + if (left_pos.y < screen_size.y and Input.is_action_pressed("left_move_down")): + left_pos.y+=PAD_SPEED*delta + + get_node("left").set_pos(left_pos) + + #move right pad + var right_pos = get_node("right").get_pos() + + if (right_pos.y > 0 and Input.is_action_pressed("right_move_up")): + right_pos.y+=-PAD_SPEED*delta + if (right_pos.y < screen_size.y and Input.is_action_pressed("right_move_down")): + right_pos.y+=PAD_SPEED*delta + + get_node("right").set_pos(right_pos) + + + +func _ready(): + screen_size = get_viewport_rect().size # get actual size + pad_size = get_node("left").get_texture().get_size() + set_process(true) + From b67c2bc2b2df22999736ee1725e9acb96a620152 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Mon, 15 Sep 2014 14:50:24 +0200 Subject: [PATCH 251/268] Add support for G-code language This is a special language controlling 3D printers (by RepRap, Makerbot, Ultimaker etc.). It is not a general purpose programming language, but still contains commands for e.g. looping. On the other hand, most of the time it will be generated by another program, not hand-written. Hence I classified it as "data". Specification: * http://reprap.org/wiki/G-code Some repositories with examples: * https://github.com/reprappro/Mendel * https://github.com/BLLIP/bllip-parser * https://github.com/MakerGear/M2 --- lib/linguist/languages.yml | 8 + samples/G-code/duettest.g | 57 + samples/G-code/lm.g | 25912 ++++++++++++++++++++++++++++++ samples/G-code/rm.g | 29735 +++++++++++++++++++++++++++++++++++ samples/G-code/square.g | 13 + 5 files changed, 55725 insertions(+) create mode 100644 samples/G-code/duettest.g create mode 100644 samples/G-code/lm.g create mode 100644 samples/G-code/rm.g create mode 100644 samples/G-code/square.g diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index a6f0054b..b4fa067e 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -756,6 +756,14 @@ Frege: extensions: - .fr +G-code: + type: data + lexer: Text only + extensions: + - .g + - .gco + - .gcode + Game Maker Language: type: programming color: "#8ad353" diff --git a/samples/G-code/duettest.g b/samples/G-code/duettest.g new file mode 100644 index 00000000..bd8b73a4 --- /dev/null +++ b/samples/G-code/duettest.g @@ -0,0 +1,57 @@ +; RepRapPro Ormerod +; Board test GCodes +M111 S1; Debug on +G21 ; mm +G90 ; Absolute positioning +M83 ; Extrusion relative +M906 X800 Y800 Z800 E800 ; Motor currents (mA) +T0 ; Extruder 0 +G1 X50 F500 +G1 X0 +G4 P500 +G1 Y50 F500 +G1 Y0 +G4 P500 +G1 Z20 F200 +G1 Z0 +G4 P500 +G1 E20 F200 +G1 E-20 +G4 P500 +M106 S255 +G4 P500 +M106 S0 +G4 P500 +M105 +G10 P0 S100 +T0 +M140 S100 +G4 P5000 +M105 +G4 P5000 +M105 +G4 P5000 +M105 +G4 P5000 +M105 +G4 P5000 +M105 +G4 P5000 +M105 +G4 P5000 +M105 +G4 P5000 +M105 +G4 P5000 +M105 +G4 P5000 +M105 +G4 P5000 +M105 +G4 P5000 +M105 +M0 + + + + diff --git a/samples/G-code/lm.g b/samples/G-code/lm.g new file mode 100644 index 00000000..4b60a136 --- /dev/null +++ b/samples/G-code/lm.g @@ -0,0 +1,25912 @@ +48 36266 43 38 + 0 0.259 + 1 0.00232 + 2 0.0392 + 3 0.0317 + 4 0.141 + 6 0.000138 + 7 0.0468 + 8 0.036 + 9 0.0021 + 10 0.00146 + 13 0.0395 + 14 0.0443 + 15 0.00874 + 16 0.000331 + 18 0.013 + 19 0.0104 + 20 0.0106 + 21 0.121 + 22 0.0148 + 23 0.00816 + 24 0.000772 + 25 0.000165 + 26 0.004 + 28 0.0217 + 29 0.0184 + 30 0.00976 + 31 0.0173 + 32 0.00767 + 33 0.0122 + 34 5.51e-05 + 35 5.51e-05 + 36 0.000276 + 37 0.000551 + 38 2.76e-05 + 39 0.00645 + 40 0.000138 + 41 0.0352 + 42 0.00447 + 43 0.000221 + 44 0.00149 + 45 0.0171 + 46 0.00105 + 47 0.0106 + + 0 4 3 0 + 2 0.25 + 13 0.5 + 19 0.25 + + 2 619 18 15 + 0 0.00323 + 3 0.00808 + 4 0.00808 + 7 0.00162 + 8 0.784 + 9 0.042 + 10 0.00646 + 13 0.0517 + 14 0.00323 + 15 0.00969 + 20 0.00162 + 28 0.00162 + 29 0.00162 + 30 0.00485 + 31 0.0307 + 41 0.0178 + 42 0.00969 + 46 0.0145 + + 3 1 1 0 + 3 1 + + 4 1 1 0 + 4 1 + + 8 526 12 0 + 4 0.0076 + 7 0.0019 + 8 0.901 + 10 0.0019 + 13 0.0342 + 15 0.0019 + 29 0.0019 + 30 0.0057 + 31 0.019 + 41 0.0114 + 42 0.00951 + 46 0.0038 + + 9 37 5 0 + 3 0.027 + 8 0.162 + 9 0.703 + 41 0.0811 + 42 0.027 + + 10 3 1 0 + 10 1 + + 13 15 4 0 + 3 0.0667 + 13 0.8 + 14 0.0667 + 41 0.0667 + + 14 1 1 0 + 14 1 + + 15 5 1 0 + 15 1 + + 20 1 1 0 + 20 1 + + 21 5 3 0 + 0 0.2 + 8 0.6 + 41 0.2 + + 28 1 1 0 + 28 1 + + 31 10 2 0 + 13 0.1 + 31 0.9 + + 39 1 1 0 + 3 1 + + 45 7 1 0 + 46 1 + + 48 2 2 0 + 0 0.5 + 3 0.5 + + 3 1036 24 8 + 0 0.00869 + 2 0.00965 + 3 0.0425 + 4 0.496 + 7 0.0734 + 8 0.0502 + 9 0.000965 + 13 0.00579 + 14 0.000965 + 15 0.029 + 18 0.0463 + 20 0.0299 + 24 0.000965 + 26 0.000965 + 28 0.00579 + 30 0.00483 + 31 0.0029 + 32 0.00193 + 33 0.0029 + 38 0.000965 + 39 0.166 + 41 0.0154 + 42 0.0029 + 45 0.000965 + + 2 4 4 0 + 7 0.25 + 13 0.25 + 28 0.25 + 39 0.25 + + 3 39 6 0 + 4 0.128 + 7 0.385 + 8 0.0256 + 18 0.0769 + 32 0.0256 + 39 0.359 + + 8 34 10 0 + 0 0.0294 + 2 0.0882 + 3 0.0294 + 4 0.5 + 8 0.0882 + 18 0.0294 + 20 0.0882 + 28 0.0294 + 32 0.0294 + 39 0.0882 + + 9 2 2 0 + 0 0.5 + 13 0.5 + + 13 769 21 0 + 0 0.0065 + 2 0.0065 + 3 0.0325 + 4 0.635 + 7 0.078 + 8 0.0611 + 9 0.0013 + 13 0.0026 + 14 0.0013 + 15 0.0351 + 18 0.0572 + 20 0.0364 + 24 0.0013 + 26 0.0013 + 28 0.0052 + 30 0.0065 + 31 0.0039 + 33 0.0039 + 41 0.0195 + 42 0.0039 + 45 0.0013 + + 14 2 2 0 + 2 0.5 + 41 0.5 + + 41 1 1 0 + 13 1 + + 47 184 9 0 + 0 0.0109 + 2 0.00543 + 3 0.0978 + 4 0.0163 + 8 0.00543 + 13 0.00543 + 15 0.0163 + 38 0.00543 + 39 0.837 + + 4 59 13 4 + 0 0.305 + 2 0.0847 + 7 0.186 + 10 0.0169 + 13 0.0678 + 21 0.0339 + 28 0.0678 + 29 0.0678 + 30 0.0169 + 31 0.0339 + 41 0.0508 + 42 0.0169 + 47 0.0508 + + 2 5 2 0 + 0 0.2 + 7 0.8 + + 21 4 2 0 + 0 0.75 + 31 0.25 + + 47 8 5 0 + 2 0.375 + 7 0.25 + 10 0.125 + 29 0.125 + 47 0.125 + + 48 3 3 0 + 0 0.333 + 41 0.333 + 42 0.333 + + 6 14 7 1 + 4 0.143 + 6 0.357 + 7 0.143 + 13 0.0714 + 20 0.0714 + 40 0.0714 + 45 0.143 + + 6 5 3 0 + 4 0.4 + 7 0.4 + 20 0.2 + + 7 72 19 3 + 0 0.222 + 2 0.0139 + 3 0.0278 + 7 0.0278 + 8 0.0278 + 9 0.0139 + 13 0.0694 + 14 0.0833 + 15 0.0278 + 21 0.153 + 22 0.0139 + 28 0.0278 + 29 0.0417 + 30 0.0139 + 31 0.0833 + 33 0.0278 + 41 0.0694 + 42 0.0278 + 47 0.0278 + + 8 21 10 0 + 0 0.0952 + 9 0.0476 + 13 0.0476 + 14 0.0476 + 21 0.286 + 22 0.0476 + 28 0.0476 + 31 0.19 + 33 0.0476 + 41 0.143 + + 13 5 5 0 + 3 0.2 + 7 0.2 + 13 0.2 + 42 0.2 + 47 0.2 + + 21 6 5 0 + 0 0.333 + 8 0.167 + 14 0.167 + 29 0.167 + 41 0.167 + + 8 10450 37 10 + 0 0.257 + 1 0.0022 + 2 0.0624 + 3 0.00545 + 4 0.0268 + 7 0.0371 + 8 0.0275 + 9 0.00191 + 10 0.00383 + 13 0.0362 + 14 0.0615 + 15 0.00766 + 16 0.000287 + 18 0.00287 + 19 0.00957 + 20 0.00268 + 21 0.235 + 22 0.0462 + 23 0.0262 + 24 0.000287 + 26 0.00373 + 28 0.0187 + 29 0.0162 + 30 0.00612 + 31 0.0156 + 32 0.00689 + 33 0.0111 + 37 0.000574 + 39 0.00593 + 40 0.000191 + 41 0.0333 + 42 0.00201 + 43 9.57e-05 + 44 0.000383 + 45 0.0185 + 46 0.000957 + 47 0.00785 + + 2 485 30 0 + 0 0.103 + 2 0.0206 + 3 0.00412 + 4 0.181 + 7 0.146 + 8 0.0701 + 9 0.00412 + 13 0.00619 + 14 0.00206 + 15 0.00825 + 18 0.0247 + 19 0.00206 + 20 0.0309 + 21 0.0577 + 22 0.0186 + 23 0.0144 + 24 0.00206 + 26 0.0165 + 28 0.0227 + 29 0.0124 + 30 0.0206 + 31 0.00619 + 32 0.00412 + 33 0.0144 + 40 0.00206 + 41 0.126 + 42 0.00825 + 45 0.0454 + 46 0.00206 + 47 0.0227 + + 8 227 22 0 + 0 0.0308 + 2 0.0837 + 3 0.0176 + 4 0.348 + 7 0.185 + 8 0.0617 + 10 0.00881 + 18 0.0176 + 19 0.00441 + 20 0.0352 + 23 0.00441 + 26 0.022 + 28 0.00441 + 29 0.0264 + 30 0.0132 + 31 0.00441 + 32 0.00441 + 33 0.00441 + 41 0.0264 + 42 0.00441 + 46 0.00441 + 47 0.0881 + + 9 9 5 0 + 0 0.222 + 2 0.111 + 4 0.444 + 20 0.111 + 28 0.111 + + 10 12 2 0 + 4 0.5 + 18 0.5 + + 23 4 1 0 + 4 1 + + 26 11 6 0 + 0 0.0909 + 4 0.273 + 7 0.364 + 29 0.0909 + 41 0.0909 + 45 0.0909 + + 41 91 20 0 + 0 0.0879 + 2 0.022 + 3 0.011 + 4 0.187 + 7 0.231 + 8 0.022 + 15 0.011 + 18 0.011 + 20 0.011 + 21 0.033 + 22 0.022 + 23 0.022 + 28 0.011 + 29 0.011 + 30 0.011 + 31 0.011 + 41 0.143 + 42 0.022 + 45 0.0879 + 47 0.033 + + 42 4 3 0 + 4 0.5 + 7 0.25 + 21 0.25 + + 46 9 1 0 + 45 1 + + 47 9595 37 0 + 0 0.272 + 1 0.0024 + 2 0.0646 + 3 0.00521 + 4 0.00803 + 7 0.0258 + 8 0.0247 + 9 0.00188 + 10 0.00396 + 13 0.0391 + 14 0.0669 + 15 0.00782 + 16 0.000313 + 18 0.00073 + 19 0.0102 + 20 0.000313 + 21 0.252 + 22 0.0492 + 23 0.0275 + 24 0.000208 + 26 0.00271 + 28 0.0189 + 29 0.0162 + 30 0.00521 + 31 0.0165 + 32 0.00719 + 33 0.0113 + 37 0.000625 + 39 0.00646 + 40 0.000104 + 41 0.0278 + 42 0.00146 + 43 0.000104 + 44 0.000417 + 45 0.0158 + 46 0.000834 + 47 0.005 + + 9 882 28 4 + 0 0.22 + 1 0.00227 + 2 0.0737 + 3 0.0317 + 4 0.0249 + 7 0.0181 + 8 0.0159 + 13 0.0964 + 14 0.0351 + 15 0.00227 + 18 0.00113 + 19 0.0204 + 20 0.00113 + 21 0.339 + 22 0.00113 + 24 0.00113 + 26 0.00227 + 28 0.0147 + 29 0.0238 + 30 0.017 + 31 0.0068 + 32 0.00907 + 33 0.0102 + 34 0.00113 + 41 0.017 + 42 0.00113 + 45 0.00794 + 47 0.00454 + + 2 26 16 0 + 0 0.0769 + 1 0.0385 + 4 0.0385 + 7 0.0385 + 13 0.0385 + 14 0.115 + 19 0.0385 + 21 0.0385 + 28 0.115 + 29 0.0385 + 30 0.0769 + 32 0.0385 + 33 0.0385 + 41 0.154 + 45 0.0769 + 47 0.0385 + + 8 15 7 0 + 4 0.2 + 7 0.4 + 8 0.0667 + 13 0.0667 + 20 0.0667 + 28 0.0667 + 30 0.133 + + 41 7 7 0 + 0 0.143 + 2 0.143 + 4 0.143 + 7 0.143 + 14 0.143 + 28 0.143 + 32 0.143 + + 47 829 27 0 + 0 0.23 + 1 0.00121 + 2 0.0772 + 3 0.0338 + 4 0.0169 + 7 0.00965 + 8 0.0157 + 13 0.1 + 14 0.0326 + 15 0.00241 + 18 0.00121 + 19 0.0193 + 21 0.359 + 22 0.00121 + 24 0.00121 + 26 0.00241 + 28 0.00844 + 29 0.0241 + 30 0.0133 + 31 0.00724 + 32 0.00724 + 33 0.00965 + 34 0.00121 + 41 0.0133 + 42 0.00121 + 45 0.00603 + 47 0.00362 + + 10 101 11 2 + 0 0.0495 + 2 0.0495 + 4 0.277 + 7 0.119 + 8 0.119 + 18 0.158 + 20 0.0792 + 21 0.119 + 29 0.0099 + 42 0.0099 + 46 0.0099 + + 8 29 4 0 + 2 0.0345 + 4 0.552 + 18 0.241 + 20 0.172 + + 47 68 11 0 + 0 0.0735 + 2 0.0588 + 4 0.162 + 7 0.176 + 8 0.176 + 18 0.103 + 20 0.0294 + 21 0.176 + 29 0.0147 + 42 0.0147 + 46 0.0147 + + 13 1069 25 11 + 0 0.0131 + 2 0.0215 + 3 0.836 + 4 0.0187 + 7 0.0159 + 8 0.00935 + 9 0.00187 + 10 0.000935 + 13 0.0337 + 14 0.00281 + 15 0.00468 + 18 0.00281 + 20 0.00468 + 21 0.00468 + 22 0.000935 + 25 0.000935 + 26 0.00187 + 28 0.00374 + 29 0.00187 + 30 0.00281 + 31 0.00468 + 33 0.000935 + 41 0.00655 + 45 0.00281 + 47 0.00187 + + 2 32 12 0 + 2 0.0938 + 4 0.219 + 7 0.125 + 8 0.0938 + 15 0.0625 + 18 0.0312 + 20 0.0938 + 28 0.0312 + 30 0.0625 + 31 0.0625 + 33 0.0312 + 41 0.0938 + + 3 3 3 0 + 4 0.333 + 26 0.333 + 41 0.333 + + 8 23 10 0 + 0 0.304 + 2 0.13 + 3 0.0435 + 4 0.087 + 8 0.0435 + 13 0.13 + 21 0.13 + 41 0.0435 + 45 0.0435 + 47 0.0435 + + 9 4 2 0 + 0 0.25 + 4 0.75 + + 13 11 5 0 + 3 0.364 + 4 0.0909 + 7 0.182 + 8 0.273 + 26 0.0909 + + 21 1 1 0 + 25 1 + + 29 5 3 0 + 3 0.4 + 4 0.2 + 13 0.4 + + 31 13 6 0 + 0 0.154 + 3 0.308 + 4 0.154 + 7 0.0769 + 13 0.231 + 21 0.0769 + + 41 5 3 0 + 7 0.4 + 8 0.2 + 20 0.4 + + 42 2 2 0 + 18 0.5 + 47 0.5 + + 47 967 20 0 + 0 0.00414 + 2 0.0165 + 3 0.913 + 4 0.00207 + 7 0.00724 + 8 0.00207 + 9 0.00207 + 10 0.00103 + 13 0.029 + 14 0.0031 + 15 0.0031 + 18 0.00103 + 21 0.00103 + 22 0.00103 + 28 0.0031 + 29 0.00207 + 30 0.00103 + 31 0.0031 + 41 0.00207 + 45 0.00207 + + 14 13 7 0 + 2 0.0769 + 3 0.538 + 4 0.0769 + 14 0.0769 + 33 0.0769 + 42 0.0769 + 47 0.0769 + + 15 172 19 7 + 0 0.0174 + 2 0.064 + 3 0.0116 + 4 0.279 + 7 0.157 + 8 0.0291 + 15 0.198 + 18 0.0174 + 20 0.0116 + 26 0.00581 + 28 0.0116 + 31 0.0174 + 33 0.0116 + 41 0.0465 + 42 0.00581 + 43 0.00581 + 44 0.00581 + 45 0.0116 + 47 0.093 + + 2 6 4 0 + 4 0.5 + 7 0.167 + 8 0.167 + 41 0.167 + + 3 4 2 0 + 4 0.5 + 20 0.5 + + 8 54 11 0 + 0 0.0185 + 4 0.37 + 7 0.278 + 8 0.037 + 15 0.0185 + 18 0.037 + 26 0.0185 + 33 0.0185 + 41 0.0556 + 45 0.0185 + 47 0.13 + + 13 3 3 0 + 3 0.333 + 8 0.333 + 15 0.333 + + 15 30 10 0 + 2 0.1 + 3 0.0333 + 4 0.433 + 7 0.133 + 8 0.0333 + 15 0.0667 + 28 0.0333 + 33 0.0333 + 45 0.0333 + 47 0.1 + + 41 35 8 0 + 2 0.0286 + 4 0.286 + 7 0.143 + 15 0.286 + 18 0.0286 + 28 0.0286 + 41 0.0857 + 47 0.114 + + 47 39 10 0 + 0 0.0513 + 2 0.179 + 7 0.0513 + 15 0.487 + 31 0.0769 + 41 0.0256 + 42 0.0256 + 43 0.0256 + 44 0.0256 + 47 0.0513 + + 20 2 2 0 + 2 0.5 + 7 0.5 + + 21 3162 36 12 + 0 0.285 + 1 0.00316 + 2 0.038 + 3 0.00506 + 4 0.189 + 7 0.0664 + 8 0.00538 + 9 0.000633 + 13 0.0417 + 14 0.0237 + 15 0.00253 + 16 0.000316 + 18 0.0104 + 19 0.012 + 20 0.012 + 21 0.0904 + 22 0.00285 + 23 0.0038 + 24 0.00158 + 25 0.000316 + 26 0.00633 + 28 0.0266 + 29 0.0256 + 30 0.0139 + 31 0.0202 + 32 0.013 + 33 0.0164 + 35 0.000316 + 37 0.00158 + 41 0.0332 + 42 0.00506 + 43 0.000633 + 44 0.00127 + 45 0.031 + 46 0.000316 + 47 0.0104 + + 7 3 3 0 + 2 0.333 + 13 0.333 + 24 0.333 + + 8 1970 32 0 + 0 0.342 + 1 0.00305 + 2 0.0396 + 3 0.00457 + 4 0.177 + 7 0.0503 + 8 0.00508 + 9 0.000508 + 13 0.0315 + 14 0.0107 + 15 0.00152 + 18 0.00812 + 19 0.0142 + 20 0.00914 + 21 0.0985 + 22 0.00254 + 23 0.00254 + 24 0.00152 + 26 0.00558 + 28 0.0223 + 29 0.0198 + 30 0.0117 + 31 0.0173 + 32 0.0107 + 33 0.0183 + 37 0.00254 + 41 0.0294 + 42 0.00508 + 43 0.00102 + 44 0.00152 + 45 0.0421 + 47 0.0102 + + 9 279 22 0 + 0 0.305 + 1 0.00358 + 2 0.0287 + 3 0.00358 + 4 0.219 + 7 0.0645 + 13 0.0287 + 14 0.0179 + 19 0.00717 + 21 0.0358 + 26 0.0108 + 28 0.0538 + 29 0.0538 + 30 0.0323 + 31 0.0215 + 32 0.0251 + 33 0.0179 + 41 0.0394 + 42 0.0108 + 45 0.00717 + 46 0.00358 + 47 0.0108 + + 10 12 3 0 + 2 0.0833 + 4 0.667 + 18 0.25 + + 13 2 1 0 + 21 1 + + 21 123 19 0 + 0 0.358 + 1 0.00813 + 2 0.0732 + 4 0.0244 + 7 0.0325 + 13 0.0407 + 14 0.0976 + 15 0.00813 + 20 0.00813 + 21 0.0732 + 28 0.0244 + 29 0.0163 + 31 0.0488 + 32 0.0244 + 35 0.00813 + 41 0.0732 + 42 0.0244 + 45 0.0407 + 47 0.0163 + + 22 35 12 0 + 0 0.4 + 2 0.114 + 4 0.143 + 7 0.0286 + 13 0.0571 + 19 0.0286 + 21 0.0286 + 28 0.0571 + 29 0.0286 + 30 0.0286 + 32 0.0286 + 41 0.0571 + + 23 2 1 0 + 47 1 + + 31 380 26 0 + 0 0.1 + 2 0.0316 + 3 0.0158 + 4 0.395 + 7 0.168 + 8 0.0105 + 9 0.00263 + 13 0.0132 + 14 0.00263 + 18 0.0289 + 20 0.05 + 21 0.0368 + 22 0.00526 + 23 0.0132 + 25 0.00263 + 26 0.0132 + 28 0.0184 + 29 0.0184 + 30 0.00526 + 31 0.00526 + 32 0.00526 + 33 0.0105 + 41 0.0211 + 44 0.00263 + 45 0.0105 + 47 0.0132 + + 41 5 4 0 + 0 0.4 + 4 0.2 + 31 0.2 + 45 0.2 + + 45 6 5 0 + 0 0.167 + 4 0.167 + 7 0.333 + 19 0.167 + 45 0.167 + + 47 339 26 0 + 0 0.112 + 1 0.0059 + 2 0.0206 + 4 0.056 + 7 0.0649 + 8 0.00885 + 13 0.145 + 14 0.106 + 15 0.0118 + 16 0.00295 + 18 0.00885 + 19 0.0177 + 21 0.165 + 22 0.0059 + 23 0.0059 + 24 0.00295 + 26 0.00295 + 28 0.0383 + 29 0.0501 + 30 0.0265 + 31 0.0442 + 32 0.0206 + 33 0.0206 + 41 0.0472 + 45 0.0059 + 47 0.00295 + + 22 504 23 6 + 0 0.246 + 2 0.0417 + 3 0.00198 + 4 0.188 + 7 0.0258 + 13 0.0516 + 14 0.0675 + 15 0.00992 + 18 0.00397 + 19 0.0298 + 20 0.00198 + 21 0.101 + 24 0.00198 + 26 0.00595 + 28 0.0417 + 29 0.0218 + 30 0.0357 + 31 0.0198 + 32 0.00397 + 33 0.0159 + 41 0.0397 + 45 0.0179 + 47 0.0258 + + 8 431 21 0 + 0 0.262 + 2 0.0464 + 4 0.213 + 7 0.0255 + 13 0.0441 + 14 0.0534 + 15 0.00464 + 18 0.00464 + 19 0.0255 + 21 0.111 + 24 0.00232 + 26 0.00696 + 28 0.0394 + 29 0.0116 + 30 0.0302 + 31 0.0186 + 32 0.00464 + 33 0.0139 + 41 0.0418 + 45 0.0162 + 47 0.0232 + + 21 5 5 0 + 2 0.2 + 7 0.2 + 14 0.2 + 30 0.2 + 41 0.2 + + 30 3 2 0 + 0 0.667 + 7 0.333 + + 31 18 8 0 + 0 0.389 + 14 0.111 + 15 0.167 + 20 0.0556 + 29 0.111 + 33 0.0556 + 41 0.0556 + 45 0.0556 + + 45 3 2 0 + 4 0.667 + 30 0.333 + + 47 42 13 0 + 0 0.0476 + 3 0.0238 + 13 0.167 + 14 0.19 + 19 0.0952 + 21 0.0714 + 28 0.0714 + 29 0.0952 + 30 0.0714 + 31 0.0476 + 33 0.0238 + 45 0.0238 + 47 0.0714 + + 23 292 18 1 + 0 0.0651 + 2 0.0514 + 3 0.0274 + 4 0.634 + 8 0.0171 + 13 0.0103 + 14 0.00342 + 15 0.00342 + 18 0.0548 + 19 0.00342 + 20 0.0548 + 21 0.0171 + 28 0.00342 + 31 0.00342 + 32 0.00342 + 41 0.0205 + 42 0.00342 + 47 0.024 + + 21 11 4 0 + 2 0.0909 + 4 0.727 + 31 0.0909 + 41 0.0909 + + 24 7 2 0 + 0 0.857 + 21 0.143 + + 26 11 1 0 + 8 1 + + 28 10 7 0 + 2 0.1 + 15 0.1 + 19 0.1 + 21 0.1 + 26 0.3 + 28 0.2 + 45 0.1 + + 29 10 4 0 + 2 0.2 + 13 0.6 + 21 0.1 + 32 0.1 + + 30 47 15 1 + 0 0.447 + 2 0.0213 + 4 0.0426 + 7 0.0213 + 10 0.0213 + 13 0.0426 + 14 0.0213 + 21 0.106 + 22 0.0638 + 28 0.0213 + 31 0.0426 + 32 0.0213 + 41 0.0426 + 45 0.0426 + 47 0.0426 + + 2 3 2 0 + 4 0.667 + 7 0.333 + + 31 750 26 3 + 0 0.145 + 1 0.00133 + 2 0.0187 + 3 0.00267 + 4 0.0187 + 7 0.00933 + 8 0.00267 + 9 0.00133 + 13 0.0373 + 14 0.04 + 15 0.00133 + 19 0.00533 + 20 0.00133 + 21 0.583 + 22 0.028 + 23 0.0107 + 25 0.00133 + 28 0.0187 + 29 0.016 + 30 0.004 + 31 0.004 + 32 0.004 + 33 0.0147 + 41 0.00667 + 45 0.00933 + 47 0.0147 + + 2 19 10 0 + 2 0.0526 + 4 0.211 + 7 0.0526 + 8 0.105 + 14 0.0526 + 15 0.0526 + 21 0.105 + 22 0.0526 + 41 0.0526 + 47 0.263 + + 41 2 2 0 + 4 0.5 + 41 0.5 + + 47 728 24 0 + 0 0.15 + 1 0.00137 + 2 0.0179 + 3 0.00275 + 4 0.0124 + 7 0.00824 + 9 0.00137 + 13 0.0385 + 14 0.0398 + 19 0.00549 + 20 0.00137 + 21 0.598 + 22 0.0275 + 23 0.011 + 25 0.00137 + 28 0.0192 + 29 0.0151 + 30 0.00412 + 31 0.00412 + 32 0.00412 + 33 0.0151 + 41 0.00412 + 45 0.00962 + 47 0.00824 + + 32 2 1 0 + 14 1 + + 37 1 1 0 + 47 1 + + 39 235 16 2 + 2 0.017 + 4 0.66 + 7 0.034 + 8 0.0809 + 9 0.0128 + 13 0.00426 + 18 0.0468 + 20 0.0426 + 28 0.017 + 29 0.00851 + 30 0.00426 + 31 0.0128 + 36 0.0128 + 41 0.034 + 42 0.00851 + 44 0.00426 + + 3 172 15 0 + 2 0.0233 + 4 0.721 + 7 0.0291 + 8 0.0698 + 9 0.00581 + 13 0.00581 + 18 0.0407 + 20 0.0233 + 28 0.0233 + 29 0.0116 + 30 0.00581 + 31 0.0174 + 41 0.00581 + 42 0.0116 + 44 0.00581 + + 8 62 8 0 + 4 0.484 + 7 0.0484 + 8 0.113 + 9 0.0323 + 18 0.0645 + 20 0.0968 + 36 0.0484 + 41 0.113 + + 41 151 10 6 + 2 0.00662 + 3 0.00662 + 8 0.603 + 9 0.0464 + 13 0.0331 + 14 0.00662 + 15 0.232 + 21 0.0464 + 31 0.0132 + 42 0.00662 + + 2 11 4 0 + 8 0.545 + 9 0.273 + 13 0.0909 + 31 0.0909 + + 8 109 4 0 + 8 0.642 + 13 0.0183 + 15 0.321 + 21 0.0183 + + 9 2 1 0 + 9 1 + + 13 4 3 0 + 3 0.25 + 8 0.25 + 13 0.5 + + 21 13 4 0 + 8 0.385 + 9 0.154 + 14 0.0769 + 21 0.385 + + 49 1 1 0 + 2 1 + + 42 10 6 0 + 7 0.1 + 8 0.4 + 9 0.1 + 13 0.2 + 15 0.1 + 46 0.1 + + 45 91 17 2 + 0 0.473 + 1 0.011 + 2 0.0989 + 3 0.011 + 4 0.044 + 7 0.0879 + 8 0.033 + 9 0.011 + 13 0.0549 + 14 0.011 + 18 0.011 + 19 0.011 + 21 0.0769 + 22 0.033 + 28 0.011 + 30 0.011 + 31 0.011 + + 21 18 5 0 + 0 0.722 + 2 0.0556 + 4 0.0556 + 7 0.0556 + 21 0.111 + + 48 7 3 0 + 0 0.429 + 7 0.143 + 13 0.429 + + 46 13 3 0 + 8 0.692 + 9 0.0769 + 41 0.231 + + 47 14411 40 29 + 0 0.326 + 1 0.00291 + 2 0.0278 + 3 0.005 + 4 0.176 + 7 0.0572 + 8 0.0154 + 9 0.000555 + 10 0.000416 + 13 0.043 + 14 0.0509 + 15 0.00638 + 16 0.000416 + 18 0.0164 + 19 0.0131 + 20 0.0133 + 21 0.0505 + 22 0.000833 + 23 0.000139 + 24 0.000971 + 25 0.000208 + 26 0.00465 + 28 0.0271 + 29 0.0232 + 30 0.0121 + 31 0.021 + 32 0.00965 + 33 0.0153 + 34 6.94e-05 + 35 6.94e-05 + 36 0.000347 + 37 0.000625 + 40 0.000139 + 41 0.0389 + 42 0.00527 + 43 0.000208 + 44 0.0018 + 45 0.0184 + 46 0.000833 + 47 0.0134 + + 0 4 3 0 + 2 0.25 + 13 0.5 + 19 0.25 + + 2 4 3 0 + 0 0.5 + 7 0.25 + 29 0.25 + + 3 814 22 0 + 0 0.0111 + 2 0.0111 + 3 0.00614 + 4 0.63 + 7 0.0934 + 8 0.0639 + 9 0.00123 + 13 0.00369 + 14 0.00123 + 15 0.0319 + 18 0.059 + 20 0.0381 + 24 0.00123 + 26 0.00123 + 28 0.00614 + 30 0.00614 + 31 0.00369 + 32 0.00246 + 33 0.00369 + 41 0.0197 + 42 0.00369 + 45 0.00123 + + 4 55 12 0 + 0 0.327 + 2 0.0727 + 7 0.164 + 13 0.0727 + 21 0.0364 + 28 0.0727 + 29 0.0727 + 30 0.0182 + 31 0.0364 + 41 0.0545 + 42 0.0182 + 47 0.0545 + + 6 8 5 0 + 4 0.25 + 7 0.25 + 20 0.125 + 40 0.125 + 45 0.25 + + 7 60 17 0 + 0 0.267 + 2 0.0167 + 3 0.0333 + 7 0.0333 + 8 0.0333 + 13 0.0833 + 14 0.0833 + 15 0.0333 + 21 0.117 + 28 0.0333 + 29 0.0333 + 30 0.0167 + 31 0.1 + 33 0.0333 + 41 0.0167 + 42 0.0333 + 47 0.0333 + + 8 6320 35 0 + 0 0.424 + 1 0.00364 + 2 0.0198 + 3 0.00301 + 4 0.0399 + 7 0.0562 + 8 0.00918 + 9 0.000316 + 10 0.000949 + 13 0.0546 + 14 0.0835 + 15 0.00411 + 16 0.000475 + 18 0.00475 + 19 0.0158 + 20 0.00443 + 21 0.0685 + 22 0.00127 + 23 0.000158 + 24 0.000475 + 26 0.00459 + 28 0.0309 + 29 0.0267 + 30 0.0101 + 31 0.0258 + 32 0.0114 + 33 0.0184 + 37 0.000633 + 40 0.000158 + 41 0.0375 + 42 0.00301 + 44 0.000475 + 45 0.0209 + 46 0.00111 + 47 0.013 + + 9 432 27 0 + 0 0.449 + 1 0.00463 + 2 0.0648 + 3 0.00926 + 4 0.0394 + 7 0.0347 + 8 0.00231 + 13 0.0509 + 14 0.0417 + 15 0.00463 + 18 0.00231 + 19 0.0417 + 20 0.00231 + 21 0.0255 + 24 0.00231 + 26 0.00231 + 28 0.0278 + 29 0.0486 + 30 0.0347 + 31 0.0139 + 32 0.0185 + 33 0.0208 + 34 0.00231 + 41 0.0301 + 42 0.00231 + 45 0.0139 + 47 0.00926 + + 10 72 9 0 + 0 0.0694 + 2 0.0278 + 4 0.361 + 7 0.167 + 18 0.222 + 20 0.111 + 29 0.0139 + 42 0.0139 + 46 0.0139 + + 13 133 22 0 + 0 0.105 + 2 0.0602 + 3 0.0602 + 4 0.128 + 7 0.0902 + 8 0.0752 + 13 0.18 + 14 0.0226 + 15 0.015 + 18 0.0226 + 20 0.0376 + 21 0.0226 + 25 0.00752 + 26 0.015 + 28 0.0226 + 29 0.015 + 30 0.0226 + 31 0.0376 + 33 0.00752 + 41 0.0226 + 45 0.015 + 47 0.015 + + 14 5 5 0 + 4 0.2 + 14 0.2 + 33 0.2 + 42 0.2 + 47 0.2 + + 15 130 17 0 + 0 0.0231 + 2 0.0462 + 4 0.369 + 7 0.2 + 8 0.0385 + 15 0.0308 + 18 0.0231 + 20 0.0154 + 26 0.00769 + 28 0.0154 + 31 0.0231 + 33 0.0154 + 41 0.0385 + 43 0.00769 + 44 0.00769 + 45 0.0154 + 47 0.123 + + 21 2958 36 0 + 0 0.305 + 1 0.00338 + 2 0.0389 + 3 0.00507 + 4 0.2 + 7 0.069 + 8 0.00541 + 9 0.000338 + 13 0.0433 + 14 0.0237 + 15 0.0027 + 16 0.000338 + 18 0.0112 + 19 0.0128 + 20 0.0128 + 21 0.0541 + 22 0.00101 + 23 0.000338 + 24 0.00169 + 25 0.000338 + 26 0.00676 + 28 0.0284 + 29 0.0274 + 30 0.0145 + 31 0.0213 + 32 0.0139 + 33 0.0176 + 35 0.000338 + 37 0.00169 + 41 0.0311 + 42 0.00541 + 43 0.000338 + 44 0.00135 + 45 0.027 + 46 0.000338 + 47 0.0112 + + 22 451 23 0 + 0 0.275 + 2 0.0466 + 3 0.00222 + 4 0.208 + 7 0.0288 + 13 0.0355 + 14 0.071 + 15 0.0111 + 18 0.00443 + 19 0.0333 + 20 0.00222 + 21 0.0244 + 24 0.00222 + 26 0.00665 + 28 0.0466 + 29 0.0244 + 30 0.0399 + 31 0.0222 + 32 0.00443 + 33 0.0177 + 41 0.0443 + 45 0.02 + 47 0.0288 + + 23 286 18 0 + 0 0.0664 + 2 0.0524 + 3 0.028 + 4 0.647 + 8 0.0035 + 13 0.0105 + 14 0.0035 + 15 0.0035 + 18 0.0559 + 19 0.0035 + 20 0.0559 + 21 0.0105 + 28 0.0035 + 31 0.0035 + 32 0.0035 + 41 0.021 + 42 0.0035 + 47 0.0245 + + 24 7 2 0 + 0 0.857 + 21 0.143 + + 28 9 6 0 + 15 0.111 + 19 0.111 + 21 0.111 + 26 0.333 + 28 0.222 + 45 0.111 + + 29 5 4 0 + 2 0.4 + 13 0.2 + 21 0.2 + 32 0.2 + + 30 38 12 0 + 0 0.553 + 4 0.0526 + 7 0.0263 + 13 0.0263 + 14 0.0263 + 21 0.0789 + 28 0.0263 + 31 0.0526 + 32 0.0263 + 41 0.0526 + 45 0.0263 + 47 0.0526 + + 31 286 25 0 + 0 0.381 + 1 0.0035 + 2 0.0105 + 3 0.00699 + 4 0.042 + 7 0.0245 + 8 0.0035 + 9 0.0035 + 13 0.0385 + 14 0.105 + 15 0.0035 + 19 0.014 + 20 0.0035 + 21 0.119 + 22 0.0035 + 25 0.0035 + 28 0.049 + 29 0.042 + 30 0.0105 + 31 0.0105 + 32 0.0105 + 33 0.0385 + 41 0.014 + 45 0.021 + 47 0.0385 + + 32 2 1 0 + 14 1 + + 39 234 16 0 + 2 0.0128 + 4 0.662 + 7 0.0342 + 8 0.0812 + 9 0.0128 + 13 0.00427 + 18 0.047 + 20 0.0427 + 28 0.0171 + 29 0.00855 + 30 0.00427 + 31 0.0128 + 36 0.0128 + 41 0.0342 + 42 0.00855 + 44 0.00427 + + 44 1 1 0 + 3 1 + + 45 74 15 0 + 0 0.581 + 1 0.0135 + 2 0.027 + 3 0.0135 + 4 0.0541 + 7 0.108 + 8 0.0405 + 13 0.0676 + 14 0.0135 + 18 0.0135 + 19 0.0135 + 21 0.0135 + 28 0.0135 + 30 0.0135 + 31 0.0135 + + 48 753 27 0 + 0 0.493 + 1 0.00531 + 2 0.0372 + 3 0.00133 + 4 0.089 + 7 0.0266 + 8 0.00266 + 13 0.0505 + 14 0.0398 + 15 0.00133 + 18 0.0186 + 19 0.00797 + 20 0.00797 + 21 0.0544 + 24 0.00266 + 26 0.00266 + 28 0.0133 + 29 0.0133 + 30 0.0093 + 31 0.00664 + 32 0.00531 + 33 0.0146 + 41 0.0452 + 42 0.0186 + 45 0.0212 + 46 0.00266 + 47 0.0093 + + 49 148 24 0 + 0 0.412 + 1 0.00676 + 2 0.0405 + 3 0.00676 + 4 0.142 + 7 0.027 + 13 0.00676 + 14 0.0203 + 15 0.0135 + 18 0.0135 + 19 0.00676 + 21 0.0405 + 26 0.00676 + 28 0.0608 + 29 0.0135 + 30 0.00676 + 31 0.0405 + 32 0.0135 + 33 0.0135 + 41 0.0473 + 42 0.00676 + 45 0.0203 + 46 0.00676 + 47 0.027 + + 55 268 22 0 + 0 0.31 + 2 0.0373 + 3 0.00373 + 4 0.00746 + 7 0.0187 + 13 0.0224 + 14 0.0261 + 16 0.00373 + 18 0.00373 + 19 0.00746 + 21 0.0299 + 24 0.00373 + 26 0.0149 + 28 0.0299 + 29 0.056 + 30 0.0261 + 31 0.00746 + 33 0.00746 + 41 0.347 + 42 0.0187 + 45 0.00746 + 47 0.0112 + + 57 3 3 0 + 2 0.333 + 13 0.333 + 41 0.333 + + 60 843 26 0 + 0 0.0119 + 2 0.00949 + 3 0.00356 + 4 0.619 + 7 0.051 + 8 0.0605 + 13 0.00356 + 15 0.013 + 16 0.00119 + 18 0.0652 + 19 0.00119 + 20 0.0522 + 21 0.00237 + 28 0.0142 + 29 0.00119 + 30 0.00593 + 31 0.0225 + 32 0.00237 + 33 0.00119 + 36 0.00237 + 41 0.019 + 42 0.0107 + 43 0.00119 + 44 0.0202 + 45 0.00237 + 47 0.00237 + + 48 771 28 1 + 0 0.481 + 1 0.00519 + 2 0.0389 + 3 0.00259 + 4 0.0908 + 7 0.0259 + 8 0.00259 + 13 0.0493 + 14 0.0389 + 15 0.0013 + 18 0.0182 + 19 0.00778 + 20 0.00778 + 21 0.0584 + 22 0.0013 + 24 0.00259 + 26 0.00259 + 28 0.013 + 29 0.013 + 30 0.00908 + 31 0.00649 + 32 0.00519 + 33 0.0143 + 41 0.0441 + 42 0.0182 + 45 0.0298 + 46 0.00259 + 47 0.00908 + + 8 2 2 0 + 14 0.5 + 29 0.5 + + 49 153 24 9 + 0 0.399 + 1 0.00654 + 2 0.0392 + 3 0.00654 + 4 0.137 + 7 0.0261 + 13 0.00654 + 14 0.0196 + 15 0.0131 + 18 0.0131 + 19 0.00654 + 21 0.0588 + 26 0.00654 + 28 0.0588 + 29 0.0131 + 30 0.00654 + 31 0.0392 + 32 0.0131 + 33 0.0131 + 41 0.0523 + 42 0.00654 + 45 0.0261 + 46 0.00654 + 47 0.0261 + + 4 2 2 0 + 7 0.5 + 47 0.5 + + 8 94 19 0 + 0 0.457 + 1 0.0106 + 2 0.0319 + 4 0.17 + 7 0.0106 + 14 0.0106 + 19 0.0106 + 21 0.0532 + 26 0.0106 + 28 0.0638 + 29 0.0213 + 30 0.0106 + 31 0.0319 + 32 0.0213 + 33 0.0106 + 41 0.0319 + 45 0.0213 + 46 0.0106 + 47 0.0106 + + 9 3 1 0 + 28 1 + + 22 4 4 0 + 2 0.25 + 13 0.25 + 31 0.25 + 47 0.25 + + 30 3 3 0 + 14 0.333 + 18 0.333 + 41 0.333 + + 31 27 11 0 + 0 0.37 + 2 0.037 + 3 0.037 + 4 0.185 + 7 0.0741 + 18 0.037 + 21 0.0741 + 31 0.037 + 33 0.037 + 45 0.0741 + 47 0.037 + + 47 5 5 0 + 0 0.2 + 15 0.2 + 21 0.2 + 31 0.2 + 42 0.2 + + 48 3 3 0 + 0 0.333 + 14 0.333 + 15 0.333 + + 55 2 1 0 + 41 1 + + 50 5 4 0 + 8 0.4 + 13 0.2 + 28 0.2 + 46 0.2 + + 55 276 23 7 + 0 0.301 + 2 0.0362 + 3 0.0109 + 4 0.00725 + 7 0.0181 + 13 0.0217 + 14 0.029 + 16 0.00362 + 18 0.00362 + 19 0.00725 + 21 0.0435 + 24 0.00362 + 26 0.0145 + 28 0.029 + 29 0.0543 + 30 0.0254 + 31 0.00725 + 33 0.00725 + 41 0.337 + 42 0.0181 + 44 0.00362 + 45 0.00725 + 47 0.0109 + + 8 141 15 0 + 0 0.206 + 2 0.0355 + 4 0.00709 + 7 0.0213 + 13 0.0142 + 14 0.00709 + 16 0.00709 + 19 0.0142 + 21 0.0567 + 29 0.00709 + 30 0.0142 + 33 0.00709 + 41 0.582 + 45 0.00709 + 47 0.0142 + + 9 97 15 0 + 0 0.423 + 2 0.0309 + 7 0.0206 + 13 0.0309 + 14 0.0309 + 21 0.0309 + 24 0.0103 + 26 0.0412 + 28 0.0515 + 29 0.144 + 30 0.0412 + 33 0.0103 + 41 0.0722 + 42 0.0515 + 47 0.0103 + + 21 8 6 0 + 0 0.25 + 3 0.125 + 13 0.125 + 14 0.25 + 30 0.125 + 45 0.125 + + 22 12 6 0 + 0 0.333 + 2 0.0833 + 21 0.0833 + 28 0.25 + 31 0.167 + 41 0.0833 + + 47 5 4 0 + 0 0.2 + 3 0.4 + 14 0.2 + 44 0.2 + + 48 1 1 0 + 18 1 + + 55 2 2 0 + 2 0.5 + 4 0.5 + + 57 5 5 0 + 2 0.2 + 9 0.2 + 13 0.2 + 31 0.2 + 41 0.2 + + 58 4 3 0 + 0 0.25 + 2 0.5 + 21 0.25 + + 60 843 26 5 + 0 0.0119 + 2 0.00949 + 3 0.00356 + 4 0.619 + 7 0.051 + 8 0.0605 + 13 0.00356 + 15 0.013 + 16 0.00119 + 18 0.0652 + 19 0.00119 + 20 0.0522 + 21 0.00237 + 28 0.0142 + 29 0.00119 + 30 0.00593 + 31 0.0225 + 32 0.00237 + 33 0.00119 + 36 0.00237 + 41 0.019 + 42 0.0107 + 43 0.00119 + 44 0.0202 + 45 0.00237 + 47 0.00237 + + 9 7 5 0 + 0 0.286 + 15 0.143 + 28 0.286 + 41 0.143 + 45 0.143 + + 13 117 18 0 + 0 0.0256 + 2 0.00855 + 4 0.282 + 7 0.308 + 8 0.00855 + 13 0.00855 + 15 0.0855 + 16 0.00855 + 18 0.0427 + 20 0.0598 + 21 0.00855 + 28 0.0256 + 29 0.00855 + 31 0.0171 + 32 0.00855 + 36 0.00855 + 41 0.0342 + 42 0.0513 + + 14 5 4 0 + 4 0.4 + 18 0.2 + 30 0.2 + 43 0.2 + + 21 4 3 0 + 0 0.5 + 21 0.25 + 28 0.25 + + 47 702 21 0 + 0 0.00285 + 2 0.00997 + 3 0.00427 + 4 0.689 + 7 0.00997 + 8 0.0712 + 13 0.00285 + 18 0.0698 + 19 0.00142 + 20 0.0513 + 28 0.00712 + 30 0.0057 + 31 0.0242 + 32 0.00142 + 33 0.00142 + 36 0.00142 + 41 0.0128 + 42 0.00427 + 44 0.0242 + 45 0.00142 + 47 0.00285 + + 64 4 2 0 + 9 0.25 + 13 0.75 + +49 42427 42 32 + 0 0.124 + 1 0.000896 + 2 0.0365 + 3 0.00983 + 4 0.00596 + 5 0.00099 + 6 0.000165 + 7 0.0272 + 8 0.00695 + 9 0.00104 + 10 0.000754 + 12 0.0316 + 13 0.111 + 14 0.0815 + 15 0.04 + 16 0.00189 + 17 9.43e-05 + 18 0.000707 + 19 0.0424 + 20 4.71e-05 + 21 0.054 + 22 0.00429 + 23 0.00099 + 24 0.00568 + 26 0.00653 + 28 0.0383 + 29 0.0368 + 30 0.025 + 31 0.0372 + 32 0.0107 + 33 0.0115 + 34 0.00938 + 35 0.00481 + 37 0.00033 + 40 9.43e-05 + 41 0.112 + 42 0.0079 + 43 0.000754 + 44 0.00113 + 45 0.00988 + 46 0.00189 + 47 0.0968 + + 2 138 19 10 + 2 0.0145 + 3 0.0145 + 4 0.0725 + 7 0.087 + 8 0.029 + 9 0.0145 + 10 0.00725 + 13 0.029 + 14 0.00725 + 19 0.00725 + 21 0.536 + 22 0.0725 + 24 0.00725 + 26 0.00725 + 31 0.00725 + 41 0.0435 + 45 0.00725 + 46 0.00725 + 47 0.029 + + 2 2 2 0 + 2 0.5 + 3 0.5 + + 7 9 1 0 + 7 1 + + 8 5 2 0 + 7 0.6 + 8 0.4 + + 9 2 1 0 + 9 1 + + 10 1 1 0 + 10 1 + + 13 3 2 0 + 4 0.333 + 13 0.667 + + 21 82 7 0 + 8 0.0122 + 13 0.0122 + 21 0.878 + 22 0.0122 + 26 0.0122 + 41 0.061 + 47 0.0122 + + 22 10 2 0 + 14 0.1 + 22 0.9 + + 24 1 1 0 + 24 1 + + 47 20 10 0 + 2 0.05 + 4 0.45 + 8 0.05 + 13 0.05 + 19 0.05 + 21 0.05 + 31 0.05 + 45 0.05 + 46 0.05 + 47 0.15 + + 3 35 11 3 + 2 0.0286 + 4 0.0286 + 7 0.0286 + 14 0.114 + 16 0.0286 + 26 0.371 + 28 0.0286 + 29 0.114 + 30 0.0286 + 31 0.0286 + 41 0.2 + + 13 3 3 0 + 4 0.333 + 26 0.333 + 28 0.333 + + 26 10 4 0 + 7 0.1 + 14 0.1 + 29 0.1 + 41 0.7 + + 47 20 6 0 + 2 0.05 + 14 0.15 + 26 0.55 + 29 0.15 + 30 0.05 + 31 0.05 + + 4 146 26 8 + 0 0.151 + 1 0.00685 + 2 0.00685 + 3 0.0274 + 4 0.00685 + 7 0.349 + 8 0.0205 + 12 0.00685 + 13 0.0342 + 14 0.0616 + 15 0.0137 + 17 0.0274 + 19 0.0205 + 21 0.0479 + 26 0.00685 + 28 0.0342 + 29 0.0137 + 30 0.0205 + 31 0.0342 + 33 0.00685 + 34 0.00685 + 41 0.0274 + 42 0.0137 + 44 0.00685 + 45 0.0274 + 47 0.0205 + + 2 10 6 0 + 0 0.5 + 1 0.1 + 15 0.1 + 21 0.1 + 26 0.1 + 31 0.1 + + 7 9 8 0 + 8 0.111 + 13 0.222 + 15 0.111 + 21 0.111 + 29 0.111 + 31 0.111 + 45 0.111 + 47 0.111 + + 8 4 3 0 + 8 0.25 + 17 0.5 + 45 0.25 + + 9 4 3 0 + 0 0.5 + 13 0.25 + 31 0.25 + + 13 9 7 0 + 3 0.111 + 7 0.111 + 8 0.111 + 12 0.111 + 19 0.222 + 41 0.222 + 45 0.111 + + 21 17 10 0 + 0 0.294 + 7 0.0588 + 13 0.0588 + 14 0.0588 + 21 0.176 + 29 0.0588 + 30 0.0588 + 41 0.0588 + 42 0.118 + 45 0.0588 + + 22 14 6 0 + 0 0.429 + 17 0.143 + 28 0.214 + 31 0.0714 + 33 0.0714 + 47 0.0714 + + 47 77 16 0 + 0 0.0519 + 2 0.013 + 3 0.039 + 4 0.013 + 7 0.636 + 13 0.013 + 14 0.0909 + 19 0.013 + 21 0.026 + 28 0.013 + 30 0.026 + 31 0.013 + 34 0.013 + 41 0.013 + 44 0.013 + 47 0.013 + + 5 2 2 0 + 7 0.5 + 14 0.5 + + 6 14 7 2 + 2 0.0714 + 6 0.5 + 13 0.0714 + 21 0.0714 + 41 0.143 + 42 0.0714 + 45 0.0714 + + 6 7 6 0 + 2 0.143 + 13 0.143 + 21 0.143 + 41 0.286 + 42 0.143 + 45 0.143 + + 47 7 1 0 + 6 1 + + 7 947 30 7 + 0 0.103 + 2 0.0454 + 3 0.00528 + 4 0.0127 + 7 0.0275 + 8 0.0158 + 9 0.0116 + 12 0.00422 + 13 0.13 + 14 0.106 + 15 0.0106 + 19 0.0106 + 21 0.0232 + 22 0.0422 + 23 0.00106 + 24 0.00528 + 28 0.0465 + 29 0.0232 + 30 0.0338 + 31 0.038 + 32 0.0106 + 33 0.0095 + 34 0.00106 + 35 0.00106 + 41 0.229 + 42 0.0106 + 44 0.00106 + 45 0.00317 + 46 0.00317 + 47 0.0348 + + 2 12 7 0 + 2 0.0833 + 21 0.0833 + 28 0.167 + 30 0.25 + 32 0.0833 + 33 0.167 + 47 0.167 + + 4 49 14 0 + 4 0.0408 + 7 0.0204 + 8 0.0612 + 12 0.0204 + 13 0.286 + 14 0.102 + 15 0.0408 + 19 0.0408 + 21 0.0816 + 24 0.0408 + 28 0.102 + 31 0.102 + 41 0.0408 + 47 0.0204 + + 8 3 3 0 + 9 0.333 + 14 0.333 + 47 0.333 + + 10 127 17 0 + 0 0.0551 + 2 0.134 + 3 0.00787 + 7 0.165 + 8 0.0157 + 12 0.0157 + 13 0.00787 + 14 0.0394 + 15 0.00787 + 21 0.0315 + 28 0.0709 + 30 0.0236 + 31 0.0157 + 34 0.00787 + 41 0.299 + 42 0.0394 + 47 0.063 + + 13 5 3 0 + 0 0.4 + 13 0.2 + 31 0.4 + + 21 75 20 0 + 0 0.107 + 2 0.0133 + 4 0.0267 + 7 0.0133 + 8 0.08 + 13 0.12 + 14 0.0667 + 15 0.0133 + 21 0.0533 + 22 0.107 + 24 0.04 + 28 0.0267 + 29 0.0133 + 31 0.0133 + 32 0.0133 + 35 0.0133 + 41 0.0933 + 42 0.0133 + 46 0.0133 + 47 0.16 + + 47 667 27 0 + 0 0.12 + 2 0.0345 + 3 0.006 + 4 0.012 + 7 0.003 + 8 0.006 + 9 0.015 + 12 0.0015 + 13 0.145 + 14 0.124 + 15 0.009 + 19 0.012 + 21 0.0135 + 22 0.048 + 23 0.0015 + 28 0.0375 + 29 0.0315 + 30 0.039 + 31 0.039 + 32 0.012 + 33 0.0105 + 41 0.25 + 42 0.006 + 44 0.0015 + 45 0.0045 + 46 0.003 + 47 0.0135 + + 8 249 26 3 + 0 0.0723 + 2 0.0723 + 3 0.012 + 4 0.0201 + 7 0.0482 + 8 0.0161 + 13 0.12 + 14 0.108 + 15 0.0281 + 19 0.0161 + 21 0.0281 + 22 0.0201 + 23 0.0161 + 24 0.00803 + 28 0.0683 + 29 0.0482 + 30 0.0442 + 31 0.0281 + 32 0.0161 + 33 0.0161 + 41 0.0643 + 42 0.00402 + 44 0.00402 + 45 0.00803 + 46 0.00402 + 47 0.108 + + 2 3 2 0 + 30 0.333 + 41 0.667 + + 13 11 8 0 + 2 0.0909 + 7 0.0909 + 13 0.273 + 28 0.0909 + 29 0.182 + 31 0.0909 + 41 0.0909 + 47 0.0909 + + 21 2 2 0 + 4 0.5 + 28 0.5 + + 9 115 18 1 + 0 0.0696 + 2 0.0348 + 3 0.0783 + 4 0.0435 + 8 0.0087 + 13 0.2 + 14 0.139 + 15 0.0087 + 21 0.0261 + 28 0.0522 + 29 0.191 + 30 0.0174 + 31 0.0087 + 32 0.0261 + 33 0.0174 + 41 0.0087 + 45 0.0174 + 47 0.0522 + + 7 9 6 0 + 0 0.222 + 4 0.111 + 13 0.111 + 14 0.333 + 28 0.111 + 45 0.111 + + 10 136 9 1 + 2 0.00735 + 4 0.00735 + 7 0.934 + 13 0.00735 + 14 0.00735 + 18 0.00735 + 19 0.00735 + 33 0.00735 + 41 0.0147 + + 2 1 1 0 + 18 1 + + 11 6 1 0 + 47 1 + + 13 104 21 2 + 0 0.0577 + 2 0.0481 + 3 0.0481 + 4 0.0865 + 7 0.0577 + 8 0.135 + 13 0.0865 + 14 0.0385 + 18 0.00962 + 19 0.0192 + 21 0.00962 + 26 0.0288 + 28 0.0577 + 29 0.0385 + 30 0.125 + 31 0.0577 + 32 0.00962 + 33 0.00962 + 34 0.00962 + 41 0.0577 + 42 0.00962 + + 7 12 8 0 + 0 0.25 + 2 0.0833 + 8 0.0833 + 19 0.0833 + 21 0.0833 + 29 0.0833 + 41 0.25 + 42 0.0833 + + 26 3 3 0 + 14 0.333 + 28 0.333 + 30 0.333 + + 14 6 3 0 + 3 0.333 + 13 0.5 + 41 0.167 + + 15 28 4 0 + 15 0.0714 + 18 0.0357 + 45 0.0714 + 47 0.821 + + 17 5 4 0 + 0 0.2 + 7 0.2 + 31 0.2 + 47 0.4 + + 19 7 4 0 + 3 0.143 + 14 0.571 + 34 0.143 + 45 0.143 + + 21 18349 40 5 + 0 0.129 + 1 0.000872 + 2 0.038 + 3 0.00283 + 4 0.00474 + 5 0.00114 + 7 0.0186 + 8 0.0055 + 9 0.000708 + 10 0.00125 + 12 0.0355 + 13 0.106 + 14 0.0861 + 15 0.0422 + 16 0.00202 + 18 0.00049 + 19 0.0463 + 20 5.45e-05 + 21 0.0809 + 22 0.00665 + 23 0.00196 + 24 0.00501 + 26 0.00605 + 28 0.0338 + 29 0.0305 + 30 0.0215 + 31 0.0337 + 32 0.00948 + 33 0.0101 + 34 0.0104 + 35 0.00534 + 37 0.000381 + 40 0.000109 + 41 0.105 + 42 0.00741 + 43 0.000708 + 44 0.00109 + 45 0.00981 + 46 0.00191 + 47 0.0966 + + 2 72 20 0 + 0 0.125 + 2 0.0417 + 4 0.0417 + 8 0.0139 + 13 0.125 + 14 0.111 + 15 0.0139 + 19 0.0556 + 21 0.0694 + 22 0.0278 + 23 0.0139 + 28 0.0556 + 30 0.0556 + 31 0.0556 + 33 0.0139 + 40 0.0139 + 41 0.0694 + 42 0.0278 + 45 0.0278 + 47 0.0417 + + 21 918 33 0 + 0 0.0915 + 2 0.0447 + 3 0.00109 + 4 0.00871 + 7 0.0229 + 8 0.012 + 9 0.00109 + 10 0.00763 + 12 0.0272 + 13 0.127 + 14 0.0915 + 15 0.0196 + 16 0.00218 + 18 0.00109 + 19 0.0272 + 21 0.0664 + 24 0.0185 + 26 0.00218 + 28 0.0566 + 29 0.037 + 30 0.0403 + 31 0.0632 + 32 0.0174 + 33 0.0153 + 34 0.00436 + 35 0.00109 + 41 0.0436 + 42 0.00871 + 43 0.00327 + 44 0.00218 + 45 0.0251 + 46 0.00436 + 47 0.105 + + 22 11 7 0 + 2 0.182 + 13 0.0909 + 19 0.0909 + 24 0.0909 + 28 0.273 + 31 0.182 + 47 0.0909 + + 26 2 2 0 + 2 0.5 + 29 0.5 + + 47 17337 40 0 + 0 0.131 + 1 0.000923 + 2 0.0375 + 3 0.00294 + 4 0.00438 + 5 0.00121 + 7 0.0185 + 8 0.00513 + 9 0.000692 + 10 0.000923 + 12 0.0362 + 13 0.105 + 14 0.0858 + 15 0.0435 + 16 0.00202 + 18 0.000461 + 19 0.0473 + 20 5.77e-05 + 21 0.0817 + 22 0.00692 + 23 0.00202 + 24 0.00427 + 26 0.00629 + 28 0.0322 + 29 0.0302 + 30 0.0204 + 31 0.032 + 32 0.00911 + 33 0.00981 + 34 0.0108 + 35 0.00559 + 37 0.000404 + 40 5.77e-05 + 41 0.109 + 42 0.00727 + 43 0.000577 + 44 0.00104 + 45 0.00894 + 46 0.00179 + 47 0.0964 + + 22 773 27 5 + 0 0.0414 + 1 0.00129 + 2 0.0388 + 3 0.00259 + 4 0.0233 + 7 0.0103 + 8 0.00647 + 12 0.0155 + 13 0.364 + 14 0.0893 + 15 0.0168 + 18 0.00129 + 19 0.0142 + 21 0.0349 + 24 0.00776 + 26 0.0194 + 28 0.0699 + 29 0.066 + 30 0.0401 + 31 0.0375 + 32 0.0233 + 33 0.022 + 35 0.00259 + 41 0.00906 + 42 0.00388 + 45 0.00259 + 47 0.0362 + + 2 10 6 0 + 2 0.2 + 14 0.1 + 26 0.2 + 32 0.2 + 33 0.1 + 41 0.2 + + 7 39 17 0 + 0 0.282 + 2 0.0513 + 4 0.0256 + 7 0.0256 + 8 0.0256 + 12 0.0769 + 13 0.128 + 14 0.0513 + 15 0.0513 + 19 0.0513 + 26 0.0769 + 28 0.0256 + 29 0.0256 + 32 0.0256 + 41 0.0256 + 42 0.0256 + 47 0.0256 + + 8 4 3 0 + 28 0.25 + 41 0.25 + 47 0.5 + + 21 119 22 0 + 0 0.0504 + 1 0.0084 + 2 0.0756 + 4 0.0336 + 7 0.0336 + 12 0.0168 + 13 0.0672 + 14 0.0672 + 15 0.0252 + 19 0.0168 + 21 0.134 + 24 0.0168 + 26 0.0252 + 28 0.109 + 29 0.0084 + 30 0.0588 + 31 0.0588 + 32 0.0252 + 41 0.0168 + 42 0.0168 + 45 0.0168 + 47 0.118 + + 47 601 24 0 + 0 0.025 + 2 0.0283 + 3 0.00333 + 4 0.0216 + 7 0.00499 + 8 0.00666 + 12 0.0116 + 13 0.446 + 14 0.0965 + 15 0.0133 + 18 0.00166 + 19 0.0116 + 21 0.0183 + 24 0.00666 + 26 0.0116 + 28 0.0649 + 29 0.0815 + 30 0.0399 + 31 0.0366 + 32 0.02 + 33 0.0266 + 35 0.00333 + 41 0.00166 + 47 0.0183 + + 23 76 21 2 + 0 0.184 + 2 0.0263 + 3 0.0132 + 4 0.0921 + 7 0.0395 + 12 0.0263 + 13 0.0789 + 14 0.0658 + 18 0.0132 + 19 0.0395 + 21 0.0132 + 26 0.0132 + 28 0.0132 + 29 0.0526 + 30 0.0132 + 31 0.0395 + 32 0.0132 + 33 0.0263 + 41 0.105 + 42 0.0395 + 47 0.0921 + + 21 35 14 0 + 0 0.0571 + 2 0.0571 + 3 0.0286 + 4 0.143 + 13 0.0857 + 14 0.0571 + 18 0.0286 + 19 0.0571 + 21 0.0286 + 29 0.0571 + 30 0.0286 + 41 0.143 + 42 0.0857 + 47 0.143 + + 47 36 15 0 + 0 0.306 + 4 0.0278 + 7 0.0556 + 12 0.0556 + 13 0.0833 + 14 0.0833 + 19 0.0278 + 26 0.0278 + 28 0.0278 + 29 0.0556 + 31 0.0833 + 32 0.0278 + 33 0.0556 + 41 0.0278 + 47 0.0556 + + 24 97 16 1 + 0 0.144 + 2 0.0103 + 4 0.0206 + 8 0.0206 + 9 0.0103 + 13 0.134 + 14 0.0928 + 19 0.0309 + 21 0.0412 + 28 0.155 + 29 0.134 + 30 0.0722 + 31 0.0309 + 32 0.0206 + 33 0.0515 + 41 0.0309 + + 21 3 3 0 + 21 0.333 + 30 0.333 + 33 0.333 + + 26 19 7 2 + 3 0.526 + 8 0.0526 + 13 0.158 + 14 0.0526 + 21 0.105 + 30 0.0526 + 31 0.0526 + + 3 11 2 0 + 3 0.909 + 14 0.0909 + + 13 3 1 0 + 13 1 + + 28 9 5 0 + 2 0.111 + 21 0.111 + 26 0.111 + 41 0.556 + 42 0.111 + + 31 2 2 0 + 28 0.5 + 30 0.5 + + 37 3 2 0 + 28 0.333 + 47 0.667 + + 41 6 3 0 + 7 0.167 + 13 0.167 + 21 0.667 + + 42 2 2 0 + 21 0.5 + 31 0.5 + + 45 5 4 0 + 0 0.4 + 13 0.2 + 14 0.2 + 42 0.2 + + 47 19808 40 27 + 0 0.133 + 1 0.000959 + 2 0.0361 + 3 0.00979 + 4 0.00464 + 5 0.00106 + 7 0.022 + 8 0.00687 + 9 0.000808 + 10 0.000353 + 12 0.0339 + 13 0.105 + 14 0.0777 + 15 0.0428 + 16 0.00202 + 18 0.000757 + 19 0.0454 + 20 5.05e-05 + 21 0.0318 + 22 0.000252 + 23 5.05e-05 + 24 0.00596 + 26 0.00651 + 28 0.0409 + 29 0.0394 + 30 0.0268 + 31 0.0399 + 32 0.0114 + 33 0.0123 + 34 0.01 + 35 0.00515 + 37 0.000353 + 40 0.000101 + 41 0.12 + 42 0.00838 + 43 0.000808 + 44 0.00121 + 45 0.0105 + 46 0.00202 + 47 0.104 + + 2 16 11 0 + 3 0.0625 + 8 0.0625 + 13 0.0625 + 14 0.0625 + 19 0.0625 + 21 0.125 + 31 0.0625 + 41 0.125 + 45 0.0625 + 46 0.0625 + 47 0.25 + + 3 23 10 0 + 4 0.0435 + 7 0.0435 + 14 0.174 + 16 0.0435 + 26 0.087 + 28 0.0435 + 29 0.174 + 30 0.0435 + 31 0.0435 + 41 0.304 + + 4 91 25 0 + 0 0.242 + 1 0.011 + 2 0.011 + 3 0.044 + 4 0.011 + 7 0.022 + 8 0.033 + 12 0.011 + 13 0.0549 + 14 0.0989 + 15 0.022 + 19 0.033 + 21 0.0549 + 26 0.011 + 28 0.0549 + 29 0.022 + 30 0.033 + 31 0.0549 + 33 0.011 + 34 0.011 + 41 0.044 + 42 0.022 + 44 0.011 + 45 0.044 + 47 0.033 + + 6 6 5 0 + 2 0.167 + 13 0.167 + 41 0.333 + 42 0.167 + 45 0.167 + + 7 750 29 0 + 0 0.131 + 2 0.0453 + 3 0.00667 + 4 0.004 + 7 0.0347 + 8 0.0187 + 9 0.00267 + 12 0.00533 + 13 0.0747 + 14 0.056 + 15 0.0133 + 19 0.0133 + 21 0.024 + 22 0.00133 + 24 0.00667 + 28 0.0587 + 29 0.0293 + 30 0.0427 + 31 0.048 + 32 0.0133 + 33 0.012 + 34 0.00133 + 35 0.00133 + 41 0.289 + 42 0.0133 + 44 0.00133 + 45 0.004 + 46 0.004 + 47 0.044 + + 8 223 25 0 + 0 0.0807 + 2 0.0583 + 3 0.0135 + 4 0.00448 + 7 0.0404 + 8 0.0179 + 13 0.13 + 14 0.112 + 15 0.0269 + 19 0.0179 + 21 0.0314 + 22 0.00448 + 24 0.00897 + 28 0.0673 + 29 0.0538 + 30 0.0493 + 31 0.0314 + 32 0.0179 + 33 0.0179 + 41 0.0717 + 42 0.00448 + 44 0.00448 + 45 0.00897 + 46 0.00448 + 47 0.121 + + 9 67 16 0 + 0 0.119 + 2 0.0299 + 4 0.0149 + 13 0.0597 + 14 0.0746 + 15 0.0149 + 21 0.0299 + 28 0.0896 + 29 0.328 + 30 0.0299 + 31 0.0149 + 32 0.0448 + 33 0.0299 + 41 0.0149 + 45 0.0149 + 47 0.0896 + + 10 8 7 0 + 4 0.125 + 13 0.125 + 14 0.125 + 18 0.125 + 19 0.125 + 33 0.125 + 41 0.25 + + 11 6 1 0 + 47 1 + + 13 69 19 0 + 0 0.087 + 2 0.029 + 3 0.029 + 7 0.0145 + 8 0.0435 + 13 0.116 + 14 0.058 + 18 0.0145 + 19 0.029 + 21 0.0145 + 28 0.087 + 29 0.058 + 30 0.188 + 31 0.087 + 32 0.0145 + 33 0.0145 + 34 0.0145 + 41 0.087 + 42 0.0145 + + 14 4 2 0 + 13 0.75 + 41 0.25 + + 15 27 4 0 + 15 0.037 + 18 0.037 + 45 0.0741 + 47 0.852 + + 17 4 3 0 + 0 0.25 + 31 0.25 + 47 0.5 + + 19 7 4 0 + 3 0.143 + 14 0.571 + 34 0.143 + 45 0.143 + + 21 16535 40 0 + 0 0.143 + 1 0.000968 + 2 0.0372 + 3 0.00302 + 4 0.00423 + 5 0.00127 + 7 0.0161 + 8 0.00593 + 9 0.000786 + 10 0.000363 + 12 0.0394 + 13 0.102 + 14 0.0788 + 15 0.0469 + 16 0.00224 + 18 0.000544 + 19 0.0513 + 20 6.05e-05 + 21 0.0339 + 22 0.000181 + 23 6.05e-05 + 24 0.00538 + 26 0.00659 + 28 0.0374 + 29 0.0337 + 30 0.0238 + 31 0.0374 + 32 0.0105 + 33 0.0112 + 34 0.0116 + 35 0.00593 + 37 0.000423 + 40 0.000121 + 41 0.117 + 42 0.00816 + 43 0.000786 + 44 0.00121 + 45 0.0107 + 46 0.00212 + 47 0.107 + + 22 466 26 0 + 0 0.0687 + 1 0.00215 + 2 0.0429 + 4 0.00858 + 7 0.0172 + 8 0.00644 + 12 0.0258 + 13 0.0987 + 14 0.088 + 15 0.0279 + 18 0.00215 + 19 0.0236 + 21 0.0236 + 24 0.0129 + 26 0.0322 + 28 0.116 + 29 0.109 + 30 0.0665 + 31 0.0622 + 32 0.0386 + 33 0.0365 + 35 0.00429 + 41 0.015 + 42 0.00644 + 45 0.00429 + 47 0.0601 + + 23 72 20 0 + 0 0.194 + 2 0.0278 + 3 0.0139 + 4 0.0833 + 12 0.0278 + 13 0.0833 + 14 0.0694 + 18 0.0139 + 19 0.0417 + 21 0.0139 + 26 0.0139 + 28 0.0139 + 29 0.0556 + 30 0.0139 + 31 0.0417 + 32 0.0139 + 33 0.0278 + 41 0.111 + 42 0.0417 + 47 0.0972 + + 24 90 14 0 + 0 0.156 + 4 0.0111 + 8 0.0111 + 13 0.133 + 14 0.1 + 19 0.0333 + 21 0.0333 + 28 0.156 + 29 0.144 + 30 0.0778 + 31 0.0333 + 32 0.0222 + 33 0.0556 + 41 0.0333 + + 26 2 2 0 + 30 0.5 + 31 0.5 + + 28 8 4 0 + 2 0.125 + 21 0.125 + 41 0.625 + 42 0.125 + + 31 2 2 0 + 28 0.5 + 30 0.5 + + 37 3 2 0 + 28 0.333 + 47 0.667 + + 45 4 3 0 + 0 0.5 + 13 0.25 + 14 0.25 + + 48 5 4 0 + 0 0.2 + 13 0.4 + 14 0.2 + 30 0.2 + + 49 347 26 0 + 0 0.0519 + 2 0.0202 + 4 0.00288 + 7 0.0202 + 8 0.0144 + 10 0.00288 + 13 0.15 + 14 0.098 + 15 0.0144 + 16 0.00288 + 18 0.00288 + 19 0.0173 + 21 0.0288 + 24 0.0231 + 28 0.0778 + 29 0.0605 + 30 0.0663 + 31 0.107 + 32 0.0288 + 33 0.0403 + 34 0.00288 + 41 0.0951 + 42 0.0173 + 44 0.00288 + 45 0.0115 + 47 0.0403 + + 55 960 29 0 + 0 0.026 + 1 0.00104 + 2 0.0177 + 3 0.132 + 4 0.00208 + 7 0.12 + 8 0.00417 + 9 0.00104 + 13 0.155 + 14 0.0521 + 15 0.0354 + 16 0.00104 + 19 0.00729 + 21 0.00833 + 24 0.00833 + 26 0.00104 + 28 0.0156 + 29 0.0667 + 30 0.00938 + 31 0.0406 + 32 0.00313 + 33 0.00208 + 34 0.00313 + 35 0.00104 + 41 0.142 + 42 0.00313 + 43 0.00313 + 45 0.00938 + 47 0.128 + + 60 5 4 0 + 0 0.2 + 28 0.2 + 29 0.4 + 33 0.2 + + 48 5 4 0 + 0 0.2 + 13 0.4 + 14 0.2 + 30 0.2 + + 49 357 27 2 + 0 0.0504 + 2 0.0224 + 4 0.0028 + 7 0.028 + 8 0.014 + 10 0.0028 + 13 0.148 + 14 0.098 + 15 0.014 + 16 0.0028 + 18 0.0028 + 19 0.0168 + 21 0.028 + 24 0.0252 + 26 0.0028 + 28 0.0756 + 29 0.0588 + 30 0.0644 + 31 0.104 + 32 0.028 + 33 0.0392 + 34 0.0028 + 41 0.0924 + 42 0.0196 + 44 0.0028 + 45 0.014 + 47 0.0392 + + 21 15 6 0 + 2 0.133 + 14 0.0667 + 21 0.0667 + 28 0.0667 + 31 0.0667 + 41 0.6 + + 41 3 3 0 + 13 0.333 + 14 0.333 + 42 0.333 + + 55 962 29 6 + 0 0.026 + 1 0.00104 + 2 0.0177 + 3 0.132 + 4 0.00208 + 7 0.121 + 8 0.00416 + 9 0.00104 + 13 0.156 + 14 0.052 + 15 0.0353 + 16 0.00104 + 19 0.00728 + 21 0.00832 + 24 0.00832 + 26 0.00104 + 28 0.0156 + 29 0.0665 + 30 0.00936 + 31 0.0405 + 32 0.00312 + 33 0.00208 + 34 0.00312 + 35 0.00104 + 41 0.141 + 42 0.00312 + 43 0.00312 + 45 0.00936 + 47 0.128 + + 6 1 1 0 + 30 1 + + 7 114 18 0 + 0 0.0263 + 2 0.00877 + 3 0.14 + 7 0.184 + 9 0.00877 + 13 0.132 + 14 0.0439 + 15 0.0614 + 21 0.0175 + 26 0.00877 + 29 0.0351 + 30 0.00877 + 31 0.0439 + 34 0.00877 + 35 0.00877 + 41 0.132 + 45 0.0263 + 47 0.105 + + 9 39 13 0 + 0 0.0769 + 2 0.0256 + 7 0.0769 + 13 0.0513 + 15 0.0256 + 24 0.0256 + 28 0.103 + 29 0.41 + 30 0.0256 + 31 0.0769 + 33 0.0256 + 41 0.0513 + 47 0.0256 + + 21 527 25 0 + 0 0.0266 + 2 0.0152 + 3 0.108 + 4 0.0038 + 7 0.0892 + 8 0.00759 + 13 0.186 + 14 0.0455 + 15 0.0493 + 16 0.0019 + 19 0.00759 + 21 0.0114 + 24 0.0133 + 28 0.00759 + 29 0.0531 + 30 0.00569 + 31 0.055 + 32 0.0038 + 33 0.0019 + 34 0.0038 + 41 0.108 + 42 0.0019 + 43 0.0038 + 45 0.0114 + 47 0.178 + + 22 269 17 0 + 0 0.0186 + 1 0.00372 + 2 0.0112 + 3 0.201 + 7 0.16 + 13 0.123 + 14 0.0743 + 19 0.0112 + 28 0.026 + 29 0.052 + 30 0.0112 + 31 0.00743 + 32 0.00372 + 41 0.227 + 42 0.00743 + 43 0.00372 + 47 0.0595 + + 47 5 3 0 + 2 0.6 + 13 0.2 + 14 0.2 + + 57 3 3 0 + 7 0.333 + 21 0.333 + 47 0.333 + + 60 5 4 0 + 0 0.2 + 28 0.2 + 29 0.4 + 33 0.2 + +50 1035 26 5 + 0 0.0058 + 2 0.0213 + 7 0.0174 + 8 0.0232 + 13 0.111 + 14 0.0889 + 15 0.0193 + 16 0.00193 + 19 0.00193 + 21 0.382 + 22 0.00193 + 24 0.00193 + 26 0.00483 + 28 0.00773 + 29 0.0058 + 30 0.00966 + 31 0.00773 + 32 0.00386 + 33 0.00773 + 41 0.222 + 42 0.0174 + 43 0.00193 + 44 0.00193 + 45 0.00193 + 46 0.00966 + 47 0.0213 + + 2 22 4 0 + 13 0.227 + 14 0.0455 + 22 0.0455 + 41 0.682 + + 7 223 5 3 + 7 0.00897 + 13 0.00897 + 14 0.00448 + 21 0.928 + 41 0.0493 + + 7 2 2 0 + 14 0.5 + 41 0.5 + + 21 11 2 0 + 13 0.182 + 41 0.818 + + 47 209 2 0 + 7 0.00957 + 21 0.99 + + 21 472 24 5 + 0 0.00636 + 2 0.0466 + 7 0.0275 + 8 0.0254 + 13 0.106 + 14 0.0932 + 15 0.0212 + 16 0.00212 + 19 0.00212 + 21 0.373 + 24 0.00212 + 28 0.00847 + 29 0.00636 + 30 0.0106 + 31 0.00847 + 32 0.00424 + 33 0.00847 + 41 0.189 + 42 0.0191 + 43 0.00212 + 44 0.00212 + 45 0.00212 + 46 0.0106 + 47 0.0233 + + 7 206 14 0 + 7 0.00485 + 8 0.0146 + 13 0.117 + 14 0.0922 + 15 0.00971 + 21 0.612 + 28 0.00485 + 29 0.00485 + 30 0.00485 + 31 0.00485 + 32 0.00971 + 41 0.0874 + 42 0.0243 + 46 0.00971 + + 8 4 3 0 + 0 0.25 + 8 0.5 + 33 0.25 + + 21 174 21 0 + 0 0.0115 + 7 0.00575 + 8 0.0402 + 13 0.149 + 14 0.144 + 15 0.046 + 16 0.00575 + 19 0.00575 + 24 0.00575 + 28 0.0172 + 29 0.0115 + 30 0.023 + 31 0.0172 + 33 0.0172 + 41 0.391 + 42 0.0172 + 43 0.00575 + 44 0.00575 + 45 0.00575 + 46 0.0172 + 47 0.0575 + + 26 5 3 0 + 41 0.6 + 42 0.2 + 47 0.2 + + 47 83 3 0 + 2 0.265 + 7 0.133 + 21 0.602 + + 28 5 1 0 + 26 1 + + 47 302 24 2 + 0 0.00993 + 7 0.00662 + 8 0.0397 + 13 0.189 + 14 0.152 + 15 0.0331 + 16 0.00331 + 19 0.00331 + 21 0.00993 + 22 0.00331 + 24 0.00331 + 28 0.0132 + 29 0.00993 + 30 0.0166 + 31 0.0132 + 32 0.00662 + 33 0.0132 + 41 0.381 + 42 0.0298 + 43 0.00331 + 44 0.00331 + 45 0.00331 + 46 0.0166 + 47 0.0364 + + 2 22 4 0 + 13 0.227 + 14 0.0455 + 22 0.0455 + 41 0.682 + + 7 15 4 0 + 13 0.133 + 14 0.0667 + 21 0.0667 + 41 0.733 + +51 1504 36 26 + 0 0.00399 + 2 0.0259 + 3 0.0153 + 4 0.000665 + 6 0.000665 + 7 0.118 + 8 0.00798 + 9 0.00266 + 10 0.000665 + 13 0.0465 + 14 0.0226 + 15 0.0426 + 16 0.00199 + 19 0.00266 + 21 0.0326 + 22 0.000665 + 24 0.00133 + 25 0.00864 + 27 0.00332 + 28 0.0166 + 29 0.00399 + 30 0.000665 + 31 0.00399 + 32 0.00332 + 33 0.00199 + 34 0.00798 + 35 0.00665 + 37 0.00798 + 40 0.00532 + 41 0.0951 + 42 0.0864 + 43 0.00465 + 44 0.00598 + 45 0.0598 + 46 0.00332 + 47 0.347 + + 2 50 6 0 + 13 0.14 + 14 0.02 + 41 0.24 + 42 0.04 + 45 0.02 + 47 0.54 + + 4 3 2 0 + 7 0.667 + 28 0.333 + + 7 7 5 0 + 2 0.143 + 35 0.286 + 41 0.143 + 45 0.143 + 47 0.286 + + 8 5 4 0 + 4 0.2 + 7 0.4 + 21 0.2 + 47 0.2 + + 21 48 11 0 + 2 0.229 + 7 0.167 + 10 0.0208 + 21 0.146 + 28 0.0208 + 35 0.0208 + 37 0.0833 + 41 0.0417 + 42 0.0208 + 45 0.0417 + 47 0.208 + + 35 4 4 0 + 2 0.25 + 21 0.25 + 42 0.25 + 43 0.25 + + 40 3 2 0 + 15 0.667 + 27 0.333 + + 41 96 15 8 + 0 0.0104 + 3 0.167 + 6 0.0104 + 8 0.0521 + 13 0.156 + 14 0.0417 + 15 0.323 + 16 0.0312 + 19 0.0312 + 21 0.0938 + 27 0.0417 + 28 0.0104 + 29 0.0104 + 30 0.0104 + 43 0.0104 + + 2 4 2 0 + 13 0.75 + 28 0.25 + + 45 2 2 0 + 19 0.5 + 29 0.5 + + 49 7 6 0 + 8 0.143 + 13 0.143 + 19 0.143 + 21 0.286 + 27 0.143 + 43 0.143 + + 55 48 9 0 + 3 0.312 + 8 0.0208 + 13 0.146 + 14 0.0208 + 15 0.292 + 16 0.0417 + 19 0.0208 + 21 0.0833 + 27 0.0625 + + 57 16 2 0 + 8 0.0625 + 15 0.938 + + 64 6 4 0 + 0 0.167 + 8 0.167 + 13 0.5 + 30 0.167 + + 69 2 2 0 + 3 0.5 + 6 0.5 + + 71 3 2 0 + 8 0.333 + 21 0.667 + + 42 78 15 4 + 3 0.0128 + 8 0.0128 + 13 0.218 + 14 0.167 + 15 0.269 + 21 0.0385 + 25 0.103 + 28 0.0128 + 29 0.0128 + 31 0.0385 + 32 0.0128 + 33 0.0128 + 43 0.0513 + 46 0.0128 + 47 0.0256 + + 45 24 6 0 + 13 0.125 + 14 0.125 + 15 0.5 + 21 0.0417 + 33 0.0417 + 43 0.167 + + 55 20 10 0 + 3 0.05 + 8 0.05 + 13 0.05 + 14 0.1 + 15 0.15 + 25 0.3 + 28 0.05 + 29 0.05 + 31 0.15 + 46 0.05 + + 62 19 3 0 + 13 0.632 + 14 0.211 + 15 0.158 + + 69 5 3 0 + 14 0.2 + 25 0.4 + 47 0.4 + + 45 37 5 0 + 41 0.0811 + 42 0.649 + 43 0.027 + 44 0.0541 + 47 0.189 + + 47 495 24 19 + 0 0.00404 + 2 0.0283 + 3 0.00202 + 7 0.178 + 13 0.0242 + 14 0.00606 + 15 0.00202 + 21 0.0121 + 24 0.00202 + 28 0.0202 + 29 0.00404 + 31 0.00202 + 32 0.00404 + 33 0.00202 + 34 0.0121 + 35 0.00202 + 37 0.00606 + 40 0.00404 + 41 0.0444 + 42 0.0525 + 44 0.00606 + 45 0.0525 + 46 0.00202 + 47 0.527 + + 2 42 5 0 + 13 0.119 + 41 0.19 + 42 0.0238 + 45 0.0238 + 47 0.643 + + 4 3 2 0 + 7 0.667 + 28 0.333 + + 21 24 7 0 + 2 0.0833 + 7 0.292 + 21 0.0417 + 28 0.0417 + 41 0.0417 + 45 0.0833 + 47 0.417 + + 41 2 2 0 + 13 0.5 + 21 0.5 + + 42 4 3 0 + 13 0.25 + 32 0.25 + 47 0.5 + + 45 8 2 0 + 44 0.125 + 47 0.875 + + 48 41 8 0 + 0 0.0244 + 7 0.439 + 21 0.0488 + 28 0.0244 + 37 0.0488 + 42 0.0244 + 45 0.0488 + 47 0.341 + + 49 47 8 0 + 2 0.0851 + 7 0.255 + 28 0.0213 + 37 0.0213 + 41 0.0638 + 42 0.0213 + 45 0.0213 + 47 0.511 + + 51 5 3 0 + 7 0.2 + 42 0.6 + 47 0.2 + + 52 7 3 0 + 40 0.143 + 45 0.429 + 47 0.429 + + 55 145 12 0 + 2 0.0138 + 7 0.166 + 14 0.0069 + 29 0.0069 + 33 0.0069 + 34 0.0414 + 35 0.0069 + 41 0.0276 + 42 0.0828 + 44 0.0069 + 45 0.0483 + 47 0.586 + + 57 55 15 0 + 0 0.0182 + 3 0.0182 + 7 0.127 + 13 0.0909 + 14 0.0182 + 15 0.0182 + 21 0.0182 + 28 0.0182 + 31 0.0182 + 41 0.0182 + 42 0.0364 + 44 0.0182 + 45 0.0364 + 46 0.0182 + 47 0.527 + + 64 18 4 0 + 2 0.0556 + 7 0.111 + 45 0.111 + 47 0.722 + + 65 1 1 0 + 40 1 + + 69 15 6 0 + 7 0.533 + 21 0.0667 + 29 0.0667 + 41 0.0667 + 42 0.0667 + 47 0.2 + + 71 13 7 0 + 2 0.231 + 14 0.0769 + 24 0.0769 + 28 0.154 + 41 0.0769 + 42 0.0769 + 47 0.308 + + 72 11 5 0 + 2 0.0909 + 28 0.0909 + 42 0.0909 + 45 0.273 + 47 0.455 + + 73 2 1 0 + 28 1 + + 74 17 4 0 + 7 0.0588 + 32 0.0588 + 41 0.0588 + 47 0.824 + + 48 49 12 3 + 0 0.0204 + 7 0.367 + 13 0.0408 + 15 0.0408 + 21 0.0612 + 28 0.0204 + 37 0.0408 + 40 0.0204 + 41 0.0204 + 42 0.0204 + 45 0.0612 + 47 0.286 + + 41 5 2 0 + 42 0.2 + 47 0.8 + + 42 2 2 0 + 15 0.5 + 21 0.5 + + 47 34 10 0 + 0 0.0294 + 7 0.529 + 13 0.0588 + 21 0.0588 + 28 0.0294 + 37 0.0588 + 40 0.0294 + 41 0.0294 + 45 0.0588 + 47 0.118 + + 49 64 14 3 + 2 0.0625 + 7 0.188 + 8 0.0156 + 13 0.0312 + 14 0.0156 + 19 0.0156 + 21 0.0312 + 28 0.0156 + 35 0.0156 + 37 0.0156 + 41 0.156 + 42 0.0469 + 45 0.0156 + 47 0.375 + + 41 8 2 0 + 41 0.125 + 47 0.875 + + 47 35 11 0 + 2 0.0286 + 7 0.314 + 8 0.0286 + 13 0.0571 + 14 0.0286 + 21 0.0571 + 35 0.0286 + 37 0.0286 + 41 0.2 + 42 0.0286 + 47 0.2 + + 49 3 3 0 + 2 0.333 + 7 0.333 + 28 0.333 + + 51 11 5 0 + 7 0.0909 + 41 0.0909 + 42 0.636 + 45 0.0909 + 47 0.0909 + + 52 11 4 0 + 40 0.0909 + 41 0.182 + 45 0.455 + 47 0.273 + + 55 273 23 6 + 2 0.00733 + 7 0.0879 + 8 0.00366 + 9 0.011 + 13 0.0183 + 14 0.0293 + 15 0.00733 + 21 0.033 + 25 0.00733 + 28 0.00366 + 29 0.00366 + 31 0.00366 + 33 0.00366 + 34 0.022 + 35 0.00366 + 37 0.00733 + 40 0.00733 + 41 0.194 + 42 0.117 + 44 0.011 + 45 0.103 + 46 0.00366 + 47 0.311 + + 2 2 2 0 + 33 0.5 + 47 0.5 + + 40 2 2 0 + 40 0.5 + 45 0.5 + + 41 57 7 0 + 2 0.0175 + 13 0.0175 + 21 0.0175 + 41 0.526 + 42 0.0351 + 45 0.0526 + 47 0.333 + + 42 26 3 0 + 42 0.0385 + 44 0.0769 + 47 0.885 + + 47 162 22 0 + 2 0.00617 + 7 0.13 + 8 0.00617 + 9 0.0185 + 13 0.0185 + 14 0.0432 + 15 0.0123 + 21 0.0494 + 25 0.0123 + 28 0.00617 + 29 0.00617 + 31 0.00617 + 34 0.037 + 35 0.00617 + 37 0.0123 + 40 0.00617 + 41 0.13 + 42 0.167 + 44 0.00617 + 45 0.142 + 46 0.00617 + 47 0.173 + + 62 5 2 0 + 7 0.6 + 47 0.4 + + 57 74 16 5 + 0 0.0135 + 3 0.0135 + 7 0.0946 + 8 0.0135 + 13 0.0676 + 14 0.0135 + 15 0.0135 + 21 0.0135 + 28 0.027 + 31 0.0135 + 41 0.243 + 42 0.027 + 44 0.0135 + 45 0.027 + 46 0.0135 + 47 0.392 + + 41 7 5 0 + 41 0.143 + 42 0.143 + 44 0.143 + 45 0.143 + 47 0.429 + + 42 24 3 0 + 41 0.458 + 45 0.0417 + 47 0.5 + + 47 26 12 0 + 0 0.0385 + 3 0.0385 + 7 0.192 + 13 0.192 + 14 0.0385 + 15 0.0385 + 21 0.0385 + 28 0.0385 + 31 0.0385 + 41 0.0385 + 46 0.0385 + 47 0.269 + + 55 9 3 0 + 7 0.222 + 42 0.111 + 47 0.667 + + 58 4 1 0 + 41 1 + + 58 8 5 0 + 13 0.125 + 15 0.5 + 32 0.125 + 46 0.125 + 47 0.125 + + 62 55 11 1 + 3 0.0727 + 7 0.0909 + 8 0.0182 + 9 0.0182 + 13 0.0182 + 14 0.0182 + 22 0.0182 + 35 0.0182 + 42 0.345 + 45 0.236 + 47 0.145 + + 42 3 1 0 + 47 1 + + 64 37 10 1 + 2 0.027 + 7 0.0541 + 8 0.0541 + 13 0.0541 + 21 0.108 + 35 0.0811 + 41 0.162 + 42 0.027 + 45 0.0811 + 47 0.351 + + 41 8 4 0 + 2 0.125 + 7 0.125 + 45 0.125 + 47 0.625 + + 65 1 1 0 + 40 1 + + 69 29 9 1 + 7 0.276 + 14 0.0345 + 21 0.103 + 25 0.103 + 29 0.0345 + 40 0.0345 + 41 0.103 + 42 0.207 + 47 0.103 + + 42 3 1 0 + 47 1 + + 71 17 7 0 + 2 0.235 + 14 0.0588 + 24 0.0588 + 28 0.118 + 41 0.235 + 42 0.0588 + 47 0.235 + + 72 11 5 0 + 2 0.0909 + 28 0.0909 + 42 0.0909 + 45 0.273 + 47 0.455 + + 73 2 1 0 + 28 1 + + 74 19 6 0 + 0 0.0526 + 7 0.0526 + 28 0.0526 + 32 0.0526 + 41 0.0526 + 47 0.737 + +52 280 19 10 + 2 0.0214 + 4 0.0179 + 7 0.00714 + 8 0.0107 + 13 0.00357 + 15 0.00357 + 20 0.00357 + 27 0.0286 + 28 0.05 + 29 0.0143 + 30 0.0143 + 33 0.00714 + 40 0.0107 + 41 0.225 + 42 0.0214 + 44 0.05 + 45 0.175 + 46 0.00714 + 47 0.329 + + 0 3 1 0 + 4 1 + + 13 6 4 0 + 8 0.5 + 41 0.167 + 44 0.167 + 47 0.167 + + 15 3 3 0 + 15 0.333 + 20 0.333 + 47 0.333 + + 21 18 5 0 + 28 0.0556 + 33 0.0556 + 41 0.111 + 42 0.0556 + 47 0.722 + + 27 86 13 0 + 2 0.0233 + 4 0.0116 + 7 0.0116 + 27 0.0349 + 28 0.0349 + 29 0.0233 + 30 0.0233 + 40 0.0233 + 41 0.221 + 42 0.0116 + 44 0.0581 + 45 0.267 + 47 0.256 + + 28 13 4 0 + 41 0.769 + 45 0.0769 + 46 0.0769 + 47 0.0769 + + 41 5 3 0 + 13 0.2 + 27 0.4 + 28 0.4 + + 45 3 3 0 + 2 0.333 + 28 0.333 + 47 0.333 + + 47 127 15 3 + 2 0.0236 + 4 0.00787 + 7 0.00787 + 27 0.00787 + 28 0.0472 + 29 0.0157 + 30 0.0157 + 33 0.00787 + 40 0.00787 + 41 0.228 + 42 0.0236 + 44 0.0551 + 45 0.181 + 46 0.00787 + 47 0.362 + + 21 17 5 0 + 28 0.0588 + 33 0.0588 + 41 0.0588 + 42 0.0588 + 47 0.765 + + 28 11 4 0 + 41 0.727 + 45 0.0909 + 46 0.0909 + 47 0.0909 + + 52 2 2 0 + 28 0.5 + 44 0.5 + + 52 2 2 0 + 28 0.5 + 44 0.5 + +53 81 5 3 + 2 0.0494 + 7 0.0494 + 42 0.173 + 44 0.0617 + 47 0.667 + + 13 2 1 0 + 44 1 + + 44 5 3 0 + 2 0.4 + 7 0.2 + 42 0.4 + + 47 38 4 1 + 2 0.0526 + 7 0.0526 + 42 0.184 + 47 0.711 + + 44 5 3 0 + 2 0.4 + 7 0.2 + 42 0.4 + +54 1410 26 10 + 0 0.00142 + 2 0.0128 + 3 0.0163 + 4 0.351 + 7 0.044 + 8 0.0326 + 13 0.00355 + 14 0.000709 + 15 0.241 + 16 0.00213 + 18 0.0184 + 20 0.0348 + 21 0.00142 + 26 0.00426 + 28 0.00284 + 29 0.00284 + 30 0.00142 + 31 0.000709 + 33 0.00426 + 34 0.00142 + 39 0.000709 + 41 0.178 + 44 0.00284 + 45 0.0163 + 46 0.00142 + 47 0.0227 + + 3 2 2 0 + 4 0.5 + 39 0.5 + + 4 5 4 0 + 7 0.4 + 21 0.2 + 33 0.2 + 41 0.2 + + 8 11 9 0 + 4 0.0909 + 7 0.0909 + 8 0.0909 + 18 0.0909 + 20 0.0909 + 29 0.0909 + 41 0.0909 + 45 0.182 + 47 0.182 + + 13 19 9 0 + 2 0.0526 + 3 0.158 + 4 0.105 + 7 0.0526 + 8 0.211 + 15 0.158 + 30 0.0526 + 31 0.0526 + 45 0.158 + + 15 697 20 3 + 0 0.00143 + 2 0.0115 + 3 0.01 + 4 0.34 + 7 0.0373 + 8 0.0301 + 13 0.0043 + 15 0.135 + 18 0.0158 + 20 0.0316 + 26 0.0043 + 28 0.00287 + 29 0.00143 + 33 0.00143 + 34 0.00143 + 41 0.344 + 44 0.00287 + 45 0.00574 + 46 0.00143 + 47 0.0172 + + 15 89 12 0 + 2 0.0112 + 3 0.0337 + 4 0.629 + 7 0.0787 + 8 0.0449 + 13 0.0112 + 15 0.0674 + 20 0.0674 + 26 0.0112 + 34 0.0112 + 41 0.0225 + 45 0.0112 + + 41 231 8 0 + 2 0.013 + 4 0.61 + 7 0.0216 + 8 0.026 + 15 0.238 + 18 0.0346 + 20 0.0519 + 33 0.00433 + + 47 371 18 0 + 0 0.0027 + 2 0.0108 + 3 0.0108 + 4 0.097 + 7 0.0377 + 8 0.027 + 13 0.00539 + 15 0.0889 + 18 0.00809 + 20 0.0108 + 26 0.00539 + 28 0.00539 + 29 0.0027 + 41 0.639 + 44 0.00539 + 45 0.00809 + 46 0.0027 + 47 0.0323 + + 16 7 2 0 + 3 0.286 + 15 0.714 + + 41 235 2 0 + 15 0.987 + 16 0.0128 + + 47 411 22 5 + 0 0.00243 + 2 0.0219 + 3 0.0268 + 4 0.596 + 7 0.0754 + 8 0.0438 + 13 0.00487 + 15 0.0146 + 18 0.0316 + 20 0.0584 + 21 0.00243 + 26 0.0073 + 28 0.00487 + 29 0.00487 + 30 0.00243 + 33 0.0073 + 34 0.00243 + 41 0.0195 + 44 0.00487 + 45 0.0268 + 46 0.00243 + 47 0.0389 + + 4 5 4 0 + 7 0.4 + 21 0.2 + 33 0.2 + 41 0.2 + + 8 8 6 0 + 7 0.125 + 18 0.125 + 29 0.125 + 41 0.125 + 45 0.25 + 47 0.25 + + 13 11 7 0 + 2 0.0909 + 3 0.182 + 4 0.182 + 7 0.0909 + 15 0.0909 + 30 0.0909 + 45 0.273 + + 15 365 20 0 + 0 0.00274 + 2 0.0219 + 3 0.0192 + 4 0.638 + 7 0.0712 + 8 0.0466 + 13 0.00548 + 15 0.0137 + 18 0.0301 + 20 0.0603 + 26 0.00822 + 28 0.00548 + 29 0.00274 + 33 0.00274 + 34 0.00274 + 41 0.0164 + 44 0.00548 + 45 0.011 + 46 0.00274 + 47 0.0329 + + 16 2 1 0 + 3 1 + + 54 6 4 0 + 4 0.5 + 7 0.167 + 20 0.167 + 33 0.167 + + 55 10 8 0 + 4 0.3 + 8 0.1 + 14 0.1 + 18 0.1 + 20 0.1 + 41 0.1 + 45 0.1 + 47 0.1 + +55 887998 48 60 + 0 0.0273 + 1 0.000351 + 2 0.0385 + 3 0.0187 + 4 0.0895 + 5 1.13e-05 + 6 0.00017 + 7 0.269 + 8 0.0578 + 9 0.00198 + 10 0.00144 + 11 4.5e-06 + 12 0.000276 + 13 0.0448 + 14 0.00865 + 15 0.0601 + 16 0.00132 + 17 0.000474 + 18 0.00933 + 19 0.00118 + 20 0.00947 + 21 0.00895 + 22 0.00032 + 23 7.09e-05 + 24 0.0044 + 25 2.93e-05 + 26 0.0257 + 27 9.01e-06 + 28 0.0421 + 29 0.0397 + 30 0.0252 + 31 0.0126 + 32 0.00881 + 33 0.0183 + 34 0.0013 + 35 0.000993 + 36 2.14e-05 + 37 0.00439 + 38 1.46e-05 + 39 9.01e-06 + 40 0.000164 + 41 0.0609 + 42 0.00956 + 43 0.000404 + 44 0.0025 + 45 0.0118 + 46 0.00365 + 47 0.078 + + 0 15 6 0 + 7 0.0667 + 13 0.133 + 14 0.0667 + 15 0.6 + 19 0.0667 + 44 0.0667 + + 2 4952 33 24 + 0 0.00101 + 2 0.000404 + 3 0.0186 + 4 0.00323 + 6 0.000202 + 7 0.00424 + 8 0.0307 + 9 0.000808 + 10 0.000404 + 13 0.33 + 14 0.202 + 15 0.361 + 16 0.0224 + 18 0.000404 + 19 0.00141 + 20 0.000808 + 21 0.00101 + 26 0.000202 + 28 0.00121 + 29 0.000202 + 30 0.00363 + 31 0.000808 + 32 0.000202 + 33 0.000404 + 34 0.000202 + 40 0.000202 + 41 0.00687 + 42 0.00182 + 43 0.000202 + 44 0.000202 + 45 0.000202 + 46 0.00283 + 47 0.00263 + + 3 95 6 0 + 3 0.884 + 7 0.0105 + 8 0.0105 + 13 0.0632 + 21 0.0105 + 41 0.0211 + + 4 22 10 0 + 0 0.0909 + 3 0.0455 + 4 0.273 + 7 0.227 + 8 0.0455 + 13 0.0909 + 15 0.0909 + 21 0.0455 + 32 0.0455 + 47 0.0455 + + 6 1 1 0 + 6 1 + + 8 278 11 0 + 3 0.0036 + 4 0.0216 + 8 0.432 + 9 0.00719 + 13 0.439 + 14 0.0396 + 15 0.036 + 31 0.00719 + 40 0.0036 + 41 0.0036 + 42 0.00719 + + 9 4 2 0 + 3 0.5 + 9 0.5 + + 10 2 1 0 + 10 1 + + 13 1555 11 0 + 4 0.00257 + 8 0.0167 + 13 0.826 + 14 0.134 + 15 0.00257 + 16 0.000643 + 30 0.0045 + 41 0.00836 + 42 0.00129 + 46 0.00193 + 47 0.00129 + + 14 982 10 0 + 3 0.00102 + 7 0.00102 + 8 0.00204 + 13 0.196 + 14 0.785 + 15 0.0102 + 16 0.00102 + 19 0.00204 + 33 0.00102 + 41 0.00102 + + 15 1822 10 0 + 8 0.0011 + 13 0.00549 + 14 0.000549 + 15 0.945 + 16 0.0406 + 18 0.0011 + 19 0.0011 + 30 0.000549 + 41 0.00384 + 43 0.000549 + + 16 66 3 0 + 14 0.0152 + 15 0.455 + 16 0.53 + + 19 5 3 0 + 7 0.2 + 15 0.2 + 19 0.6 + + 20 5 2 0 + 7 0.2 + 20 0.8 + + 21 4 2 0 + 13 0.5 + 21 0.5 + + 28 4 1 0 + 28 1 + + 30 15 3 0 + 13 0.333 + 14 0.0667 + 30 0.6 + + 31 4 2 0 + 13 0.75 + 31 0.25 + + 45 12 3 0 + 15 0.0833 + 42 0.167 + 46 0.75 + + 47 9 8 0 + 0 0.111 + 3 0.111 + 13 0.222 + 14 0.111 + 28 0.111 + 41 0.111 + 45 0.111 + 46 0.111 + + 48 3 2 0 + 13 0.667 + 31 0.333 + + 49 1 1 0 + 41 1 + + 54 2 2 0 + 15 0.5 + 41 0.5 + + 55 57 18 0 + 0 0.0351 + 2 0.0351 + 3 0.0351 + 7 0.193 + 13 0.0877 + 14 0.0526 + 15 0.0877 + 21 0.0175 + 26 0.0175 + 28 0.0175 + 29 0.0175 + 30 0.0175 + 33 0.0175 + 34 0.0175 + 41 0.105 + 42 0.0526 + 46 0.0175 + 47 0.175 + + 56 1 1 0 + 7 1 + + 57 2 2 0 + 41 0.5 + 44 0.5 + + 3 14951 40 22 + 0 0.0276 + 1 0.000334 + 2 0.0587 + 3 0.0198 + 4 0.0795 + 7 0.288 + 8 0.0544 + 9 0.000401 + 10 0.00114 + 12 0.000134 + 13 0.0364 + 14 0.00408 + 15 0.0177 + 16 6.69e-05 + 18 0.0093 + 19 0.001 + 20 0.00816 + 21 0.0375 + 24 0.00294 + 25 6.69e-05 + 26 0.066 + 28 0.0289 + 29 0.106 + 30 0.0142 + 31 0.0122 + 32 0.00375 + 33 0.0142 + 34 0.00127 + 35 0.000201 + 37 0.000936 + 38 0.00087 + 39 0.000535 + 40 0.000334 + 41 0.0413 + 42 0.026 + 43 0.000669 + 44 0.00261 + 45 0.00348 + 46 0.00107 + 47 0.0286 + + 2 89 12 0 + 0 0.0337 + 2 0.0112 + 4 0.124 + 7 0.461 + 8 0.0449 + 13 0.0225 + 20 0.0225 + 21 0.0337 + 28 0.0112 + 41 0.213 + 45 0.0112 + 46 0.0112 + + 3 284 22 0 + 0 0.00704 + 2 0.0141 + 3 0.00352 + 4 0.0141 + 7 0.387 + 8 0.0176 + 13 0.00352 + 14 0.0106 + 15 0.00352 + 21 0.0176 + 26 0.268 + 28 0.0141 + 29 0.13 + 30 0.00352 + 31 0.0211 + 33 0.0106 + 34 0.00704 + 39 0.00704 + 41 0.0141 + 42 0.0352 + 45 0.00352 + 47 0.00704 + + 7 3 1 0 + 4 1 + + 8 787 30 0 + 0 0.0419 + 1 0.00127 + 2 0.0801 + 3 0.0102 + 4 0.131 + 7 0.26 + 8 0.0305 + 13 0.00635 + 14 0.00254 + 15 0.0152 + 18 0.0343 + 20 0.0267 + 21 0.0178 + 24 0.0127 + 26 0.0165 + 28 0.0394 + 29 0.0496 + 30 0.0267 + 31 0.0114 + 32 0.00508 + 33 0.033 + 34 0.00127 + 35 0.00127 + 37 0.00254 + 39 0.00127 + 41 0.0343 + 42 0.0114 + 44 0.00127 + 45 0.00381 + 47 0.0902 + + 9 19 8 0 + 0 0.158 + 7 0.263 + 13 0.0526 + 28 0.0526 + 29 0.158 + 30 0.0526 + 41 0.0526 + 47 0.211 + + 10 28 4 0 + 4 0.643 + 7 0.0357 + 18 0.25 + 20 0.0714 + + 13 4530 37 0 + 0 0.0232 + 1 0.000442 + 2 0.0433 + 3 0.00596 + 4 0.0656 + 7 0.201 + 8 0.0272 + 9 0.000221 + 10 0.000662 + 12 0.000221 + 13 0.0347 + 14 0.00177 + 15 0.034 + 18 0.0102 + 20 0.00927 + 21 0.0408 + 24 0.00419 + 25 0.000221 + 26 0.0682 + 28 0.0563 + 29 0.179 + 30 0.0143 + 31 0.015 + 32 0.00574 + 33 0.0232 + 34 0.000442 + 35 0.000442 + 37 0.0011 + 39 0.000442 + 40 0.0011 + 41 0.0219 + 42 0.07 + 43 0.00177 + 44 0.00287 + 45 0.00419 + 46 0.0011 + 47 0.0302 + + 14 4275 34 0 + 0 0.0262 + 2 0.106 + 3 0.00819 + 4 0.116 + 7 0.244 + 8 0.0952 + 9 0.000234 + 10 0.00257 + 13 0.0732 + 14 0.00444 + 15 0.0133 + 16 0.000234 + 18 0.0101 + 19 0.00211 + 20 0.00959 + 21 0.0428 + 24 0.00281 + 26 0.0414 + 28 0.018 + 29 0.0648 + 30 0.0131 + 31 0.0159 + 32 0.00327 + 33 0.00912 + 34 0.00211 + 37 0.000468 + 39 0.000468 + 41 0.0409 + 42 0.00795 + 43 0.000234 + 44 0.00234 + 45 0.00234 + 46 0.000234 + 47 0.0201 + + 15 275 26 0 + 0 0.0182 + 2 0.0291 + 3 0.00364 + 4 0.2 + 7 0.153 + 8 0.0327 + 13 0.0436 + 15 0.08 + 18 0.04 + 19 0.00364 + 20 0.0291 + 21 0.00727 + 26 0.0182 + 28 0.0473 + 29 0.0509 + 30 0.0109 + 31 0.0145 + 32 0.00364 + 33 0.0545 + 34 0.0109 + 41 0.0582 + 42 0.00727 + 44 0.00727 + 45 0.00364 + 46 0.00364 + 47 0.0691 + + 16 24 11 0 + 0 0.0417 + 2 0.0417 + 4 0.375 + 7 0.167 + 8 0.0417 + 28 0.0417 + 29 0.0833 + 30 0.0833 + 33 0.0417 + 46 0.0417 + 47 0.0417 + + 18 25 6 0 + 4 0.04 + 7 0.64 + 15 0.2 + 26 0.04 + 28 0.04 + 29 0.04 + + 21 20 6 0 + 2 0.05 + 4 0.1 + 7 0.7 + 20 0.05 + 41 0.05 + 44 0.05 + + 30 15 6 0 + 4 0.267 + 7 0.333 + 18 0.0667 + 20 0.0667 + 28 0.133 + 47 0.133 + + 31 22 12 0 + 0 0.0909 + 2 0.0455 + 4 0.0909 + 7 0.273 + 8 0.0455 + 13 0.136 + 20 0.0455 + 29 0.0909 + 30 0.0455 + 39 0.0455 + 41 0.0455 + 47 0.0455 + + 41 29 8 0 + 2 0.0345 + 3 0.0345 + 4 0.069 + 7 0.172 + 8 0.241 + 21 0.069 + 28 0.0345 + 41 0.345 + + 43 1 1 0 + 44 1 + + 45 9 6 0 + 2 0.222 + 4 0.222 + 7 0.222 + 15 0.111 + 20 0.111 + 28 0.111 + + 46 4 3 0 + 8 0.25 + 13 0.25 + 45 0.5 + + 47 4447 34 0 + 0 0.0324 + 1 0.00045 + 2 0.0322 + 3 0.0501 + 4 0.0369 + 7 0.422 + 8 0.0515 + 9 0.000899 + 10 0.000675 + 12 0.000225 + 13 0.0103 + 14 0.00652 + 15 0.00225 + 19 0.00112 + 20 0.000225 + 21 0.0376 + 24 0.000675 + 26 0.0911 + 28 0.00967 + 29 0.0902 + 30 0.0139 + 31 0.00607 + 32 0.00225 + 33 0.00472 + 34 0.00045 + 37 0.000899 + 38 0.00292 + 41 0.0573 + 42 0.00382 + 43 0.000225 + 44 0.00247 + 45 0.00337 + 46 0.00135 + 47 0.0232 + + 48 43 14 0 + 0 0.0233 + 4 0.233 + 7 0.163 + 8 0.0233 + 13 0.0698 + 15 0.0233 + 18 0.093 + 28 0.0233 + 29 0.0233 + 33 0.0233 + 37 0.0233 + 41 0.209 + 46 0.0233 + 47 0.0465 + + 54 7 4 0 + 2 0.143 + 4 0.429 + 7 0.286 + 8 0.143 + + 55 9 8 0 + 2 0.111 + 4 0.222 + 7 0.111 + 8 0.111 + 15 0.111 + 20 0.111 + 32 0.111 + 33 0.111 + + 4 80857 41 32 + 0 0.0477 + 1 0.000742 + 2 0.0329 + 3 0.0128 + 4 0.00155 + 5 2.47e-05 + 6 2.47e-05 + 7 0.398 + 8 0.00234 + 9 0.000247 + 10 0.000371 + 12 0.000408 + 13 0.0102 + 14 0.0123 + 15 0.00247 + 16 9.89e-05 + 17 0.00409 + 18 2.47e-05 + 19 0.00233 + 21 0.0171 + 22 0.002 + 23 1.24e-05 + 24 0.00694 + 26 0.0309 + 28 0.0629 + 29 0.0511 + 30 0.0334 + 31 0.0145 + 32 0.0125 + 33 0.0213 + 34 0.00146 + 35 0.00124 + 37 0.00651 + 40 4.95e-05 + 41 0.0794 + 42 0.0066 + 43 0.00042 + 44 0.00117 + 45 0.0123 + 46 0.0031 + 47 0.107 + + 2 16 6 0 + 7 0.312 + 26 0.0625 + 28 0.25 + 30 0.188 + 32 0.0625 + 47 0.125 + + 3 1180 26 0 + 0 0.0127 + 2 0.0314 + 3 0.00169 + 7 0.618 + 8 0.00169 + 13 0.00678 + 14 0.00254 + 15 0.000847 + 17 0.00169 + 21 0.00763 + 24 0.00254 + 26 0.0178 + 28 0.0356 + 29 0.0322 + 30 0.0322 + 31 0.00847 + 32 0.00339 + 33 0.00763 + 34 0.000847 + 37 0.00508 + 41 0.05 + 42 0.00763 + 44 0.00169 + 45 0.00254 + 46 0.00254 + 47 0.105 + + 4 71 16 0 + 0 0.0423 + 7 0.394 + 8 0.0141 + 13 0.0141 + 21 0.0423 + 24 0.0141 + 28 0.0845 + 29 0.0141 + 30 0.0563 + 31 0.0282 + 32 0.0423 + 33 0.0282 + 41 0.0282 + 42 0.0141 + 45 0.0563 + 47 0.127 + + 6 18 9 0 + 0 0.0556 + 2 0.111 + 7 0.389 + 8 0.0556 + 28 0.111 + 31 0.0556 + 35 0.0556 + 41 0.0556 + 47 0.111 + + 7 1 1 0 + 15 1 + + 8 17405 38 0 + 0 0.078 + 1 0.00109 + 2 0.0307 + 3 0.00167 + 4 0.000862 + 5 0.000115 + 7 0.426 + 8 0.00184 + 9 5.75e-05 + 10 0.000632 + 12 0.000402 + 13 0.00718 + 14 0.00431 + 15 0.00218 + 16 5.75e-05 + 17 0.00287 + 19 0.00247 + 21 0.0196 + 22 5.75e-05 + 24 0.00678 + 26 0.0298 + 28 0.0666 + 29 0.0525 + 30 0.0357 + 31 0.0159 + 32 0.0133 + 33 0.0219 + 34 0.000804 + 35 0.000919 + 37 0.00368 + 40 5.75e-05 + 41 0.0705 + 42 0.00672 + 43 0.000172 + 44 0.000689 + 45 0.0106 + 46 0.00195 + 47 0.0812 + + 9 397 24 0 + 0 0.0907 + 2 0.063 + 7 0.378 + 13 0.00504 + 14 0.00756 + 15 0.00756 + 16 0.00252 + 17 0.00252 + 19 0.0101 + 21 0.0126 + 24 0.00252 + 26 0.0327 + 28 0.0932 + 29 0.0403 + 30 0.0529 + 31 0.0126 + 32 0.0277 + 33 0.0428 + 37 0.00252 + 41 0.0479 + 42 0.00756 + 44 0.00252 + 45 0.00252 + 47 0.0529 + + 10 727 22 0 + 0 0.144 + 1 0.00275 + 2 0.0151 + 7 0.38 + 13 0.00275 + 17 0.00138 + 19 0.00138 + 21 0.0578 + 24 0.00138 + 26 0.0289 + 28 0.0385 + 29 0.0399 + 30 0.00825 + 31 0.0165 + 32 0.0206 + 33 0.0179 + 37 0.00138 + 41 0.0894 + 42 0.011 + 44 0.00275 + 45 0.0179 + 47 0.1 + + 12 2 2 0 + 0 0.5 + 2 0.5 + + 13 38560 39 0 + 0 0.0431 + 1 0.000726 + 2 0.0281 + 3 0.0249 + 4 0.00114 + 6 2.59e-05 + 7 0.377 + 8 0.00319 + 9 0.000441 + 10 0.000363 + 12 0.000441 + 13 0.0138 + 14 0.0218 + 15 0.00265 + 16 7.78e-05 + 17 0.00423 + 18 5.19e-05 + 19 0.00202 + 21 0.0182 + 22 0.00412 + 24 0.00747 + 26 0.0309 + 28 0.0659 + 29 0.0534 + 30 0.0347 + 31 0.0155 + 32 0.0119 + 33 0.0219 + 34 0.00187 + 35 0.00119 + 37 0.00778 + 40 2.59e-05 + 41 0.0783 + 42 0.00578 + 43 0.000622 + 44 0.00137 + 45 0.0108 + 46 0.00371 + 47 0.101 + + 14 5945 33 0 + 0 0.0192 + 2 0.0441 + 4 0.00404 + 7 0.376 + 8 0.00202 + 10 0.000336 + 12 0.000168 + 13 0.00673 + 14 0.00471 + 15 0.000505 + 16 0.000168 + 17 0.0116 + 19 0.000505 + 21 0.0104 + 23 0.000168 + 24 0.00976 + 26 0.031 + 28 0.0833 + 29 0.0474 + 30 0.0368 + 31 0.00908 + 32 0.0172 + 33 0.02 + 34 0.00118 + 35 0.0032 + 37 0.00622 + 41 0.076 + 42 0.00706 + 43 0.000168 + 44 0.00135 + 45 0.0163 + 46 0.00219 + 47 0.152 + + 15 8602 35 0 + 0 0.0117 + 1 0.000465 + 2 0.0398 + 3 0.000581 + 4 0.00221 + 7 0.483 + 8 0.000581 + 12 0.000698 + 13 0.00581 + 14 0.00174 + 15 0.00267 + 16 0.000116 + 17 0.00093 + 19 0.00105 + 21 0.00523 + 22 0.000116 + 24 0.00302 + 26 0.038 + 28 0.0367 + 29 0.031 + 30 0.0208 + 31 0.0086 + 32 0.00732 + 33 0.0166 + 34 0.00221 + 35 0.00105 + 37 0.0086 + 40 0.000116 + 41 0.114 + 42 0.00546 + 43 0.000116 + 44 0.000814 + 45 0.00802 + 46 0.0057 + 47 0.135 + + 16 411 25 0 + 0 0.00243 + 2 0.0706 + 4 0.00243 + 7 0.406 + 13 0.0243 + 14 0.00487 + 17 0.00243 + 21 0.0219 + 24 0.00973 + 26 0.0487 + 28 0.0535 + 29 0.0316 + 30 0.0219 + 31 0.0073 + 32 0.00487 + 33 0.0073 + 34 0.00487 + 35 0.00243 + 37 0.0292 + 40 0.00243 + 41 0.0925 + 42 0.00487 + 44 0.00243 + 45 0.0122 + 47 0.129 + + 19 14 8 0 + 2 0.143 + 7 0.214 + 21 0.0714 + 26 0.143 + 29 0.0714 + 41 0.0714 + 45 0.143 + 47 0.143 + + 20 23 9 0 + 7 0.304 + 21 0.087 + 24 0.087 + 28 0.174 + 30 0.0435 + 31 0.0435 + 32 0.13 + 35 0.0435 + 45 0.087 + + 21 134 19 0 + 0 0.231 + 2 0.0149 + 4 0.00746 + 7 0.291 + 14 0.0224 + 15 0.00746 + 19 0.0224 + 21 0.0448 + 24 0.0149 + 26 0.0224 + 28 0.0522 + 29 0.0299 + 30 0.0522 + 33 0.0299 + 37 0.00746 + 41 0.0746 + 42 0.0149 + 45 0.0373 + 47 0.0224 + + 22 13 7 0 + 0 0.0769 + 4 0.0769 + 7 0.462 + 28 0.0769 + 29 0.0769 + 30 0.154 + 33 0.0769 + + 23 34 11 0 + 0 0.206 + 2 0.0294 + 7 0.235 + 21 0.0294 + 26 0.0294 + 28 0.0294 + 29 0.0588 + 31 0.0882 + 42 0.0294 + 45 0.0588 + 47 0.206 + + 30 600 27 0 + 0 0.0817 + 1 0.00333 + 2 0.0267 + 7 0.398 + 8 0.00167 + 13 0.005 + 14 0.00167 + 15 0.00333 + 17 0.005 + 19 0.00167 + 21 0.015 + 24 0.01 + 26 0.0333 + 28 0.055 + 29 0.0433 + 30 0.0367 + 31 0.00833 + 32 0.0217 + 33 0.045 + 34 0.00167 + 37 0.00667 + 41 0.0767 + 42 0.00833 + 43 0.00167 + 45 0.00833 + 46 0.00167 + 47 0.0983 + + 31 594 25 0 + 0 0.0303 + 2 0.0354 + 4 0.00673 + 7 0.468 + 8 0.00168 + 9 0.00168 + 13 0.00842 + 14 0.00337 + 17 0.00337 + 19 0.00168 + 21 0.00673 + 22 0.00168 + 24 0.0118 + 26 0.0286 + 28 0.0724 + 29 0.0825 + 30 0.0488 + 31 0.0152 + 32 0.0168 + 33 0.0118 + 37 0.00673 + 41 0.0488 + 42 0.00842 + 45 0.00168 + 47 0.0774 + + 39 26 10 0 + 2 0.0769 + 7 0.5 + 13 0.0385 + 14 0.0385 + 21 0.0385 + 26 0.115 + 29 0.0769 + 30 0.0385 + 41 0.0385 + 47 0.0385 + + 44 28 10 0 + 0 0.0714 + 2 0.107 + 7 0.393 + 19 0.0357 + 21 0.0357 + 28 0.0357 + 30 0.0357 + 35 0.0357 + 41 0.0357 + 45 0.214 + + 45 444 26 0 + 0 0.0968 + 1 0.00901 + 2 0.0203 + 7 0.358 + 9 0.00225 + 13 0.027 + 14 0.0045 + 15 0.0113 + 16 0.00225 + 17 0.00676 + 19 0.0113 + 21 0.0158 + 24 0.0045 + 26 0.027 + 28 0.0676 + 29 0.0968 + 30 0.0495 + 31 0.045 + 32 0.00676 + 33 0.0518 + 37 0.00225 + 41 0.0293 + 42 0.0135 + 45 0.00225 + 46 0.00225 + 47 0.036 + + 47 2538 32 0 + 0 0.0303 + 2 0.0693 + 3 0.0146 + 4 0.00473 + 7 0.265 + 8 0.00197 + 10 0.000394 + 12 0.000394 + 13 0.00709 + 14 0.00512 + 15 0.00197 + 17 0.0106 + 19 0.0118 + 21 0.0296 + 24 0.00591 + 26 0.0209 + 28 0.0571 + 29 0.0201 + 30 0.0197 + 31 0.00906 + 32 0.0197 + 33 0.015 + 34 0.000394 + 35 0.00236 + 37 0.00591 + 41 0.0563 + 42 0.0146 + 43 0.00118 + 44 0.00355 + 45 0.0583 + 46 0.00197 + 47 0.235 + + 48 2419 31 0 + 0 0.0864 + 1 0.000413 + 2 0.0364 + 3 0.00165 + 4 0.000827 + 6 0.000413 + 7 0.329 + 8 0.00248 + 10 0.000827 + 12 0.000413 + 13 0.00537 + 14 0.000827 + 15 0.00661 + 17 0.000413 + 19 0.00331 + 21 0.0215 + 24 0.0103 + 26 0.0302 + 28 0.0566 + 29 0.127 + 30 0.0463 + 31 0.0265 + 32 0.012 + 33 0.0294 + 37 0.00248 + 41 0.0744 + 42 0.00951 + 43 0.000413 + 45 0.0112 + 46 0.000827 + 47 0.0661 + + 49 8 4 0 + 0 0.375 + 7 0.375 + 29 0.125 + 32 0.125 + + 54 240 13 0 + 0 0.0125 + 2 0.0125 + 7 0.292 + 13 0.00417 + 26 0.00833 + 28 0.00833 + 29 0.0208 + 30 0.0208 + 31 0.0167 + 33 0.0208 + 41 0.383 + 42 0.00417 + 47 0.196 + + 55 157 17 0 + 0 0.0318 + 2 0.00637 + 7 0.395 + 13 0.00637 + 19 0.00637 + 21 0.00637 + 24 0.0127 + 26 0.0318 + 28 0.0446 + 29 0.0637 + 30 0.0318 + 31 0.0318 + 32 0.00637 + 33 0.0318 + 34 0.00637 + 41 0.146 + 47 0.14 + + 56 123 14 0 + 0 0.065 + 2 0.0325 + 7 0.463 + 21 0.0244 + 26 0.0325 + 28 0.0732 + 30 0.0244 + 31 0.00813 + 32 0.0325 + 33 0.0244 + 41 0.114 + 42 0.0163 + 45 0.00813 + 47 0.0813 + + 58 10 6 0 + 0 0.1 + 7 0.4 + 28 0.1 + 29 0.1 + 45 0.2 + 47 0.1 + + 60 63 9 0 + 0 0.0476 + 2 0.0317 + 7 0.714 + 21 0.0159 + 26 0.0476 + 28 0.0952 + 29 0.0159 + 30 0.0159 + 41 0.0159 + + 68 43 11 0 + 0 0.0465 + 2 0.0233 + 4 0.0465 + 7 0.628 + 26 0.0465 + 28 0.0233 + 29 0.0233 + 30 0.0465 + 33 0.0465 + 41 0.0233 + 47 0.0465 + + 5 861 24 0 + 0 0.00581 + 2 0.0918 + 7 0.18 + 8 0.00465 + 10 0.00348 + 13 0.0186 + 14 0.00465 + 15 0.00232 + 16 0.00116 + 19 0.00232 + 21 0.029 + 28 0.0163 + 29 0.0395 + 30 0.00465 + 31 0.00232 + 32 0.0279 + 33 0.0151 + 34 0.00813 + 37 0.0267 + 41 0.143 + 42 0.00813 + 44 0.00232 + 45 0.167 + 47 0.195 + + 6 150 19 6 + 2 0.0133 + 3 0.00667 + 4 0.127 + 6 0.193 + 7 0.12 + 8 0.02 + 15 0.28 + 18 0.0133 + 19 0.00667 + 20 0.0133 + 25 0.0133 + 26 0.0133 + 28 0.0133 + 29 0.00667 + 32 0.00667 + 33 0.00667 + 41 0.0333 + 45 0.0667 + 47 0.0467 + + 6 29 12 0 + 2 0.0345 + 4 0.241 + 6 0.172 + 7 0.138 + 8 0.0345 + 15 0.0345 + 18 0.069 + 28 0.0345 + 29 0.0345 + 41 0.0345 + 45 0.069 + 47 0.103 + + 13 12 4 0 + 4 0.25 + 6 0.583 + 8 0.0833 + 15 0.0833 + + 14 7 3 0 + 3 0.143 + 6 0.714 + 7 0.143 + + 15 42 2 0 + 6 0.0476 + 15 0.952 + + 46 2 1 0 + 45 1 + + 47 53 14 0 + 2 0.0189 + 4 0.151 + 6 0.17 + 7 0.226 + 19 0.0189 + 20 0.0377 + 25 0.0377 + 26 0.0377 + 28 0.0189 + 32 0.0189 + 33 0.0189 + 41 0.0755 + 45 0.0943 + 47 0.0755 + + 7 318 24 10 + 0 0.044 + 2 0.0314 + 3 0.0157 + 4 0.00314 + 7 0.151 + 8 0.0126 + 10 0.00314 + 13 0.132 + 14 0.0975 + 15 0.0943 + 18 0.00314 + 21 0.0535 + 26 0.0283 + 28 0.0566 + 29 0.0409 + 30 0.022 + 31 0.022 + 32 0.00943 + 33 0.0252 + 35 0.00314 + 41 0.0472 + 42 0.00943 + 45 0.00943 + 47 0.0849 + + 3 47 13 0 + 0 0.0851 + 3 0.0638 + 7 0.468 + 13 0.0426 + 15 0.0213 + 21 0.0213 + 26 0.106 + 29 0.0213 + 30 0.0426 + 31 0.0213 + 41 0.0638 + 42 0.0213 + 47 0.0213 + + 4 30 11 0 + 0 0.167 + 7 0.233 + 15 0.1 + 21 0.1 + 26 0.0667 + 28 0.0333 + 31 0.0333 + 33 0.0667 + 41 0.1 + 45 0.0333 + 47 0.0667 + + 8 19 11 0 + 0 0.0526 + 4 0.0526 + 7 0.0526 + 8 0.0526 + 14 0.0526 + 21 0.105 + 26 0.0526 + 28 0.316 + 29 0.105 + 31 0.105 + 41 0.0526 + + 13 86 17 0 + 0 0.0116 + 2 0.0116 + 3 0.0116 + 7 0.0581 + 8 0.0233 + 10 0.0116 + 13 0.337 + 14 0.267 + 18 0.0116 + 21 0.0698 + 28 0.0116 + 29 0.0349 + 30 0.0116 + 32 0.0116 + 33 0.0233 + 41 0.0581 + 47 0.0349 + + 14 2 2 0 + 45 0.5 + 47 0.5 + + 15 49 8 0 + 7 0.0204 + 13 0.184 + 14 0.102 + 15 0.531 + 28 0.0204 + 30 0.0408 + 31 0.0612 + 47 0.0408 + + 21 3 2 0 + 2 0.333 + 28 0.667 + + 39 2 2 0 + 21 0.5 + 26 0.5 + + 47 67 17 0 + 0 0.0448 + 2 0.119 + 7 0.149 + 8 0.0149 + 13 0.0149 + 14 0.0149 + 21 0.0597 + 28 0.104 + 29 0.0746 + 30 0.0149 + 32 0.0299 + 33 0.0448 + 35 0.0149 + 41 0.0299 + 42 0.0149 + 45 0.0149 + 47 0.239 + + 55 6 5 0 + 7 0.333 + 13 0.167 + 14 0.167 + 41 0.167 + 42 0.167 + + 8 48850 43 29 + 0 0.0133 + 1 0.000184 + 2 0.0351 + 3 0.0255 + 4 0.357 + 6 0.000143 + 7 0.172 + 8 0.0864 + 9 0.00254 + 10 0.00328 + 12 6.14e-05 + 13 0.0137 + 14 0.00282 + 15 0.0132 + 16 0.000246 + 17 2.05e-05 + 18 0.0354 + 19 0.000676 + 20 0.0406 + 21 0.00948 + 22 0.00086 + 23 0.00102 + 24 0.00264 + 25 2.05e-05 + 26 0.0131 + 28 0.0268 + 29 0.0167 + 30 0.0198 + 31 0.0105 + 32 0.00571 + 33 0.0085 + 34 0.000655 + 35 0.000205 + 36 6.14e-05 + 37 0.00192 + 40 4.09e-05 + 41 0.0306 + 42 0.00268 + 43 0.000368 + 44 0.00086 + 45 0.0123 + 46 0.000512 + 47 0.0316 + + 2 152 23 0 + 0 0.00658 + 2 0.0132 + 3 0.0263 + 4 0.289 + 7 0.23 + 8 0.0395 + 9 0.00658 + 13 0.0132 + 15 0.0263 + 18 0.0263 + 20 0.0197 + 21 0.0132 + 24 0.00658 + 26 0.0263 + 28 0.0263 + 30 0.0197 + 32 0.0132 + 33 0.0197 + 41 0.0855 + 42 0.00658 + 44 0.00658 + 45 0.0526 + 47 0.0263 + + 3 710 19 0 + 0 0.00282 + 2 0.00282 + 3 0.00845 + 4 0.785 + 7 0.141 + 8 0.00282 + 14 0.00282 + 18 0.0183 + 20 0.0127 + 21 0.00141 + 26 0.00141 + 28 0.00282 + 29 0.00563 + 30 0.00282 + 32 0.00141 + 33 0.00141 + 41 0.00141 + 42 0.00282 + 45 0.00282 + + 4 67 13 0 + 0 0.134 + 2 0.0299 + 7 0.328 + 21 0.0597 + 24 0.0149 + 26 0.0149 + 28 0.164 + 29 0.0149 + 30 0.0597 + 37 0.0149 + 41 0.0299 + 45 0.0149 + 47 0.119 + + 6 2 2 0 + 3 0.5 + 8 0.5 + + 8 3996 36 0 + 0 0.0133 + 1 0.000501 + 2 0.0511 + 3 0.0198 + 4 0.362 + 7 0.183 + 8 0.0568 + 9 0.00025 + 10 0.0015 + 13 0.00701 + 14 0.000501 + 15 0.00475 + 18 0.0455 + 19 0.001 + 20 0.048 + 21 0.00551 + 22 0.000751 + 23 0.00025 + 24 0.00375 + 26 0.00976 + 28 0.0263 + 29 0.0235 + 30 0.0205 + 31 0.00826 + 32 0.00676 + 33 0.00826 + 35 0.000501 + 37 0.00225 + 40 0.00025 + 41 0.04 + 42 0.00601 + 43 0.000501 + 44 0.000501 + 45 0.01 + 46 0.00025 + 47 0.0313 + + 9 12 8 0 + 0 0.0833 + 2 0.0833 + 4 0.417 + 7 0.0833 + 18 0.0833 + 31 0.0833 + 45 0.0833 + 47 0.0833 + + 10 7 3 0 + 4 0.429 + 7 0.143 + 18 0.429 + + 13 26070 40 0 + 0 0.011 + 1 0.000153 + 2 0.024 + 3 0.0157 + 4 0.465 + 6 0.000192 + 7 0.112 + 8 0.0908 + 9 0.00226 + 10 0.00315 + 13 0.0171 + 14 0.00345 + 15 0.0185 + 16 0.000345 + 18 0.043 + 19 0.000575 + 20 0.0436 + 21 0.00832 + 22 0.000921 + 23 0.000806 + 24 0.00146 + 25 3.84e-05 + 26 0.00809 + 28 0.0181 + 29 0.0136 + 30 0.0134 + 31 0.00951 + 32 0.00326 + 33 0.0061 + 34 0.000614 + 35 0.000115 + 36 7.67e-05 + 37 0.00119 + 41 0.0252 + 42 0.00153 + 43 0.000422 + 44 0.000959 + 45 0.0114 + 46 0.00046 + 47 0.0233 + + 14 13431 41 0 + 0 0.0187 + 1 0.000223 + 2 0.0561 + 3 0.0497 + 4 0.12 + 6 0.000149 + 7 0.281 + 8 0.11 + 9 0.00439 + 10 0.00499 + 12 0.000223 + 13 0.00864 + 14 0.00127 + 15 0.00849 + 16 0.000149 + 18 0.0237 + 19 0.00067 + 20 0.0344 + 21 0.00834 + 22 0.000968 + 23 0.00119 + 24 0.00499 + 26 0.0237 + 28 0.0472 + 29 0.0201 + 30 0.0331 + 31 0.0135 + 32 0.0108 + 33 0.0134 + 34 0.000968 + 35 0.000298 + 36 7.45e-05 + 37 0.00328 + 40 7.45e-05 + 41 0.0369 + 42 0.00335 + 43 0.000298 + 44 0.00067 + 45 0.00752 + 46 0.000819 + 47 0.0462 + + 15 1891 29 0 + 0 0.00635 + 2 0.0212 + 3 0.028 + 4 0.366 + 7 0.24 + 8 0.0317 + 9 0.00159 + 10 0.000529 + 13 0.027 + 14 0.0111 + 15 0.01 + 18 0.0296 + 19 0.000529 + 20 0.0317 + 21 0.00687 + 24 0.000529 + 26 0.0169 + 28 0.0164 + 29 0.0196 + 30 0.0206 + 31 0.0169 + 32 0.00212 + 33 0.0074 + 37 0.00106 + 41 0.0365 + 42 0.0037 + 45 0.0037 + 46 0.000529 + 47 0.0418 + + 16 101 21 0 + 2 0.0594 + 3 0.0396 + 4 0.168 + 7 0.277 + 8 0.0396 + 10 0.0099 + 13 0.0297 + 15 0.0198 + 20 0.0396 + 21 0.0099 + 26 0.0297 + 28 0.0198 + 29 0.0099 + 30 0.0297 + 31 0.0198 + 32 0.0099 + 33 0.0198 + 41 0.0495 + 42 0.0198 + 45 0.0099 + 47 0.0891 + + 18 12 5 0 + 4 0.583 + 7 0.0833 + 8 0.0833 + 13 0.167 + 47 0.0833 + + 21 3 3 0 + 2 0.333 + 4 0.333 + 15 0.333 + + 30 120 24 0 + 0 0.00833 + 2 0.158 + 3 0.0333 + 4 0.267 + 7 0.15 + 8 0.0333 + 10 0.00833 + 13 0.00833 + 14 0.00833 + 15 0.00833 + 18 0.05 + 20 0.05 + 21 0.0167 + 24 0.00833 + 26 0.0167 + 28 0.0333 + 29 0.00833 + 30 0.0333 + 31 0.00833 + 32 0.00833 + 33 0.025 + 41 0.025 + 45 0.00833 + 47 0.025 + + 31 89 15 0 + 0 0.0225 + 2 0.0112 + 3 0.0112 + 4 0.258 + 7 0.247 + 8 0.124 + 13 0.0674 + 15 0.0337 + 18 0.0562 + 20 0.0337 + 21 0.0112 + 28 0.0225 + 29 0.0449 + 30 0.0337 + 47 0.0225 + + 39 13 2 0 + 4 0.923 + 19 0.0769 + + 41 312 24 0 + 0 0.0128 + 2 0.00962 + 3 0.00641 + 4 0.471 + 7 0.17 + 8 0.0417 + 15 0.00321 + 18 0.00641 + 20 0.0577 + 21 0.00641 + 23 0.00321 + 24 0.00321 + 26 0.0128 + 28 0.0128 + 29 0.00641 + 30 0.00962 + 31 0.00321 + 32 0.00962 + 33 0.016 + 34 0.00321 + 41 0.0641 + 42 0.00641 + 45 0.0192 + 47 0.0449 + + 43 3 3 0 + 2 0.333 + 4 0.333 + 44 0.333 + + 44 7 5 0 + 2 0.143 + 4 0.286 + 7 0.286 + 21 0.143 + 29 0.143 + + 45 95 14 0 + 0 0.0105 + 2 0.0211 + 3 0.0105 + 4 0.537 + 7 0.147 + 8 0.0526 + 13 0.0105 + 18 0.0316 + 20 0.0421 + 28 0.0421 + 30 0.0211 + 31 0.0105 + 41 0.0526 + 47 0.0105 + + 46 136 9 0 + 2 0.00735 + 4 0.00735 + 8 0.0221 + 16 0.00735 + 19 0.00735 + 20 0.00735 + 21 0.0147 + 41 0.0147 + 45 0.912 + + 47 1224 33 0 + 0 0.018 + 2 0.0359 + 3 0.0098 + 4 0.393 + 7 0.151 + 8 0.0237 + 9 0.000817 + 10 0.00163 + 13 0.0106 + 14 0.00408 + 18 0.000817 + 19 0.00163 + 20 0.0474 + 21 0.0637 + 22 0.00163 + 23 0.00817 + 24 0.00163 + 26 0.0147 + 28 0.0221 + 29 0.0327 + 30 0.0163 + 31 0.00817 + 32 0.00654 + 33 0.0106 + 34 0.00163 + 35 0.000817 + 37 0.0049 + 41 0.0408 + 42 0.00572 + 43 0.000817 + 44 0.00327 + 45 0.00654 + 47 0.0507 + + 48 199 22 0 + 0 0.0101 + 2 0.0201 + 3 0.00503 + 4 0.533 + 7 0.121 + 8 0.0452 + 17 0.00503 + 18 0.0653 + 20 0.0704 + 21 0.0151 + 23 0.00503 + 24 0.00503 + 26 0.00503 + 28 0.0101 + 30 0.0151 + 31 0.00503 + 32 0.0101 + 33 0.00503 + 41 0.0201 + 42 0.00503 + 45 0.00503 + 47 0.0201 + + 54 13 5 0 + 4 0.385 + 7 0.308 + 8 0.154 + 20 0.0769 + 29 0.0769 + + 55 22 9 0 + 2 0.0455 + 3 0.0455 + 4 0.455 + 7 0.0909 + 8 0.0455 + 18 0.0909 + 20 0.0909 + 21 0.0909 + 30 0.0455 + + 56 68 12 0 + 2 0.0147 + 3 0.0294 + 4 0.309 + 7 0.221 + 8 0.0441 + 20 0.0882 + 26 0.0441 + 28 0.0735 + 29 0.0294 + 30 0.0441 + 31 0.0294 + 41 0.0735 + + 58 17 5 0 + 0 0.118 + 4 0.588 + 7 0.176 + 24 0.0588 + 33 0.0588 + + 60 30 3 0 + 4 0.9 + 7 0.0333 + 20 0.0667 + + 68 40 12 0 + 2 0.025 + 4 0.475 + 7 0.15 + 8 0.025 + 20 0.025 + 26 0.05 + 28 0.075 + 29 0.025 + 30 0.025 + 37 0.025 + 41 0.05 + 47 0.05 + + 9 1597 31 14 + 0 0.0601 + 1 0.00125 + 2 0.0507 + 3 0.015 + 4 0.249 + 7 0.193 + 8 0.0106 + 12 0.000626 + 13 0.0025 + 14 0.00689 + 15 0.0025 + 16 0.000626 + 18 0.0113 + 19 0.0025 + 20 0.0144 + 21 0.0244 + 24 0.00626 + 26 0.0288 + 28 0.102 + 29 0.0394 + 30 0.0557 + 31 0.01 + 32 0.0276 + 33 0.0244 + 34 0.000626 + 37 0.000626 + 41 0.025 + 42 0.00313 + 43 0.000626 + 45 0.01 + 47 0.02 + + 2 4 4 0 + 0 0.25 + 7 0.25 + 28 0.25 + 41 0.25 + + 3 5 1 0 + 4 1 + + 8 103 16 0 + 0 0.0291 + 2 0.117 + 4 0.214 + 7 0.243 + 21 0.0194 + 24 0.00971 + 26 0.0777 + 28 0.0485 + 29 0.0583 + 30 0.0485 + 31 0.0194 + 32 0.0291 + 33 0.0194 + 41 0.0291 + 45 0.0194 + 47 0.0194 + + 13 734 28 0 + 0 0.0436 + 1 0.00136 + 2 0.0354 + 3 0.0109 + 4 0.384 + 7 0.147 + 8 0.00954 + 12 0.00136 + 13 0.00136 + 14 0.00817 + 15 0.00545 + 16 0.00136 + 18 0.0177 + 19 0.00545 + 20 0.0123 + 21 0.0123 + 24 0.0109 + 26 0.03 + 28 0.0858 + 29 0.0245 + 30 0.045 + 31 0.00545 + 32 0.0232 + 33 0.0204 + 41 0.0327 + 42 0.00545 + 45 0.00545 + 47 0.0136 + + 14 473 26 0 + 0 0.0402 + 2 0.0465 + 3 0.0275 + 4 0.0867 + 7 0.296 + 8 0.0148 + 13 0.00211 + 14 0.00423 + 18 0.0106 + 20 0.0169 + 21 0.0127 + 24 0.00211 + 26 0.0317 + 28 0.123 + 29 0.0613 + 30 0.0677 + 31 0.00846 + 32 0.0317 + 33 0.0296 + 34 0.00211 + 37 0.00211 + 41 0.0233 + 42 0.00211 + 43 0.00211 + 45 0.0148 + 47 0.0402 + + 15 39 8 0 + 2 0.0513 + 4 0.513 + 7 0.154 + 20 0.0513 + 28 0.103 + 29 0.0256 + 30 0.0769 + 41 0.0256 + + 16 2 2 0 + 8 0.5 + 29 0.5 + + 30 2 2 0 + 2 0.5 + 26 0.5 + + 41 17 7 0 + 4 0.471 + 7 0.235 + 20 0.0588 + 30 0.0588 + 31 0.0588 + 32 0.0588 + 33 0.0588 + + 45 3 3 0 + 0 0.333 + 4 0.333 + 33 0.333 + + 46 1 1 0 + 45 1 + + 47 201 18 0 + 0 0.194 + 1 0.00498 + 2 0.0896 + 3 0.0149 + 4 0.0746 + 7 0.109 + 8 0.00995 + 13 0.00995 + 14 0.0149 + 20 0.00498 + 21 0.109 + 28 0.154 + 29 0.0398 + 30 0.0647 + 31 0.0249 + 32 0.0398 + 33 0.0299 + 45 0.00995 + + 48 4 3 0 + 4 0.25 + 7 0.25 + 20 0.5 + + 56 5 4 0 + 7 0.2 + 28 0.2 + 30 0.4 + 47 0.2 + + 10 1526 27 9 + 0 0.00197 + 2 0.0262 + 3 0.019 + 4 0.479 + 7 0.106 + 8 0.00524 + 13 0.00262 + 14 0.000655 + 18 0.132 + 19 0.000655 + 20 0.0511 + 21 0.0059 + 24 0.00459 + 26 0.00328 + 28 0.0105 + 29 0.0151 + 30 0.00655 + 31 0.00262 + 32 0.00328 + 33 0.00721 + 34 0.00131 + 35 0.00131 + 37 0.00262 + 41 0.0256 + 42 0.00262 + 45 0.0177 + 47 0.0655 + + 3 13 2 0 + 4 0.923 + 7 0.0769 + + 8 156 15 0 + 2 0.0128 + 3 0.0449 + 4 0.429 + 7 0.147 + 8 0.00641 + 18 0.154 + 20 0.0897 + 21 0.00641 + 28 0.00641 + 29 0.00641 + 35 0.00641 + 41 0.0192 + 42 0.00641 + 45 0.0321 + 47 0.0321 + + 13 661 14 0 + 2 0.00756 + 3 0.0121 + 4 0.632 + 7 0.0242 + 8 0.00756 + 13 0.00151 + 18 0.219 + 19 0.00151 + 20 0.059 + 28 0.00151 + 33 0.00151 + 37 0.00151 + 41 0.00756 + 47 0.0227 + + 14 291 20 0 + 2 0.0447 + 3 0.0412 + 4 0.316 + 7 0.22 + 8 0.00687 + 13 0.00344 + 14 0.00344 + 18 0.0962 + 20 0.0481 + 21 0.00687 + 26 0.00687 + 29 0.00687 + 33 0.0103 + 34 0.00344 + 35 0.00344 + 37 0.00344 + 41 0.055 + 42 0.00344 + 45 0.0447 + 47 0.0756 + + 15 19 9 0 + 2 0.0526 + 3 0.0526 + 4 0.211 + 7 0.263 + 26 0.0526 + 28 0.0526 + 33 0.105 + 41 0.0526 + 47 0.158 + + 16 3 3 0 + 4 0.333 + 7 0.333 + 32 0.333 + + 31 3 3 0 + 3 0.333 + 18 0.333 + 20 0.333 + + 47 359 21 0 + 0 0.00836 + 2 0.0501 + 4 0.351 + 7 0.139 + 13 0.00557 + 20 0.0279 + 21 0.0167 + 24 0.0195 + 26 0.00557 + 28 0.0362 + 29 0.0557 + 30 0.0279 + 31 0.00836 + 32 0.0111 + 33 0.0139 + 34 0.00279 + 37 0.00279 + 41 0.039 + 42 0.00557 + 45 0.0195 + 47 0.153 + + 56 3 3 0 + 4 0.333 + 31 0.333 + 37 0.333 + + 12 5 4 0 + 4 0.4 + 15 0.2 + 45 0.2 + 46 0.2 + + 13 129892 43 24 + 0 0.0054 + 1 0.000123 + 2 0.0201 + 3 0.0473 + 4 0.298 + 6 0.000123 + 7 0.0813 + 8 0.21 + 9 0.00684 + 10 0.00527 + 12 3.85e-05 + 13 0.123 + 14 0.0094 + 15 0.0406 + 16 0.000762 + 18 0.0276 + 19 0.000362 + 20 0.0287 + 21 0.00234 + 22 5.39e-05 + 23 7.7e-06 + 24 0.000993 + 25 1.54e-05 + 26 0.0052 + 27 1.54e-05 + 28 0.0115 + 29 0.00598 + 30 0.0138 + 31 0.00949 + 32 0.00208 + 33 0.00347 + 34 0.000223 + 35 0.000108 + 36 1.54e-05 + 37 0.000908 + 40 0.0001 + 41 0.0179 + 42 0.00142 + 43 0.000508 + 44 0.000608 + 45 0.00449 + 46 0.00184 + 47 0.0122 + + 2 1627 31 0 + 0 0.0086 + 2 0.0172 + 3 0.00738 + 4 0.189 + 7 0.205 + 8 0.144 + 9 0.00553 + 10 0.00246 + 13 0.0688 + 14 0.00738 + 15 0.0277 + 16 0.00123 + 18 0.0332 + 20 0.0424 + 21 0.00307 + 24 0.00123 + 26 0.0117 + 28 0.0203 + 29 0.0086 + 30 0.0178 + 31 0.0135 + 32 0.00246 + 33 0.00676 + 37 0.000615 + 41 0.119 + 42 0.0043 + 43 0.00123 + 44 0.00123 + 45 0.00615 + 46 0.000615 + 47 0.0209 + + 3 92 11 0 + 3 0.0217 + 4 0.478 + 7 0.174 + 8 0.0435 + 13 0.0217 + 15 0.0109 + 18 0.163 + 20 0.0217 + 30 0.0109 + 41 0.0435 + 45 0.0109 + + 4 1 1 0 + 31 1 + + 8 268 24 0 + 0 0.00373 + 2 0.123 + 3 0.0336 + 4 0.243 + 7 0.127 + 8 0.097 + 9 0.00373 + 10 0.0112 + 13 0.104 + 14 0.00373 + 15 0.0373 + 18 0.0672 + 20 0.0299 + 26 0.00746 + 28 0.0187 + 29 0.0149 + 30 0.0149 + 31 0.00373 + 33 0.00373 + 37 0.00373 + 41 0.0261 + 42 0.00373 + 45 0.00746 + 47 0.0112 + + 10 1 1 0 + 45 1 + + 13 15006 38 0 + 0 0.004 + 1 0.0002 + 2 0.0364 + 3 0.0287 + 4 0.304 + 6 0.000267 + 7 0.0826 + 8 0.211 + 9 0.00553 + 10 0.0072 + 13 0.0804 + 14 0.00653 + 15 0.0508 + 16 0.0004 + 18 0.0394 + 19 0.0002 + 20 0.0337 + 21 0.00187 + 22 6.66e-05 + 24 0.0008 + 25 0.000133 + 26 0.00433 + 28 0.0114 + 29 0.00513 + 30 0.0114 + 31 0.011 + 32 0.0022 + 33 0.0046 + 35 0.0002 + 37 0.001 + 40 0.0004 + 41 0.028 + 42 0.00233 + 43 0.0006 + 44 0.000666 + 45 0.0076 + 46 0.0016 + 47 0.0133 + + 14 9907 35 0 + 0 0.00757 + 2 0.0784 + 3 0.0262 + 4 0.0705 + 7 0.178 + 8 0.229 + 9 0.0139 + 10 0.00737 + 13 0.0728 + 14 0.00262 + 15 0.0373 + 16 0.000101 + 18 0.0196 + 19 0.000303 + 20 0.0263 + 21 0.00313 + 23 0.000101 + 24 0.00444 + 26 0.0146 + 28 0.0333 + 29 0.013 + 30 0.028 + 31 0.0133 + 32 0.00616 + 33 0.0125 + 34 0.000808 + 35 0.000202 + 37 0.00384 + 41 0.0365 + 42 0.00303 + 43 0.000202 + 44 0.000505 + 45 0.00757 + 46 0.00212 + 47 0.0461 + + 15 788 27 0 + 0 0.00635 + 2 0.0127 + 3 0.0178 + 4 0.0787 + 7 0.085 + 8 0.184 + 13 0.221 + 14 0.0127 + 15 0.225 + 16 0.0152 + 18 0.0127 + 20 0.019 + 24 0.00127 + 26 0.00888 + 28 0.00381 + 29 0.0114 + 30 0.00888 + 31 0.00381 + 33 0.014 + 35 0.00127 + 37 0.00254 + 41 0.0292 + 42 0.00127 + 44 0.00254 + 45 0.00381 + 46 0.00254 + 47 0.0152 + + 16 9 7 0 + 2 0.222 + 4 0.222 + 7 0.111 + 13 0.111 + 14 0.111 + 15 0.111 + 20 0.111 + + 18 2901 26 0 + 0 0.00103 + 2 0.00483 + 3 0.00345 + 4 0.694 + 7 0.0476 + 8 0.0958 + 9 0.00276 + 10 0.00207 + 13 0.0589 + 14 0.00414 + 15 0.0269 + 19 0.000345 + 20 0.0203 + 21 0.000689 + 26 0.00483 + 28 0.00172 + 29 0.0031 + 30 0.00552 + 31 0.00172 + 32 0.00138 + 33 0.00138 + 41 0.00276 + 42 0.000345 + 44 0.000345 + 45 0.000689 + 47 0.0138 + + 20 2 2 0 + 7 0.5 + 26 0.5 + + 21 3 3 0 + 2 0.333 + 7 0.333 + 21 0.333 + + 26 2 2 0 + 3 0.5 + 29 0.5 + + 29 11 5 0 + 3 0.273 + 4 0.0909 + 7 0.0909 + 8 0.273 + 13 0.273 + + 30 102 12 0 + 2 0.186 + 4 0.412 + 7 0.0392 + 8 0.118 + 10 0.0294 + 13 0.0588 + 15 0.0392 + 18 0.0392 + 20 0.0196 + 31 0.0196 + 41 0.0294 + 45 0.0098 + + 31 13 5 0 + 7 0.538 + 8 0.154 + 13 0.0769 + 15 0.154 + 41 0.0769 + + 41 247 24 0 + 0 0.00405 + 2 0.0162 + 4 0.19 + 7 0.243 + 8 0.0729 + 9 0.00405 + 10 0.00405 + 13 0.0567 + 15 0.00405 + 18 0.0162 + 20 0.0364 + 21 0.00405 + 26 0.0162 + 28 0.0121 + 29 0.0121 + 30 0.0202 + 31 0.0162 + 32 0.00405 + 33 0.0202 + 41 0.174 + 42 0.0162 + 44 0.00405 + 45 0.0202 + 47 0.0324 + + 42 4 2 0 + 4 0.5 + 7 0.5 + + 43 15 3 0 + 2 0.0667 + 8 0.2 + 44 0.733 + + 45 36 10 0 + 2 0.0556 + 3 0.0556 + 4 0.389 + 7 0.25 + 8 0.111 + 15 0.0278 + 26 0.0278 + 30 0.0278 + 42 0.0278 + 47 0.0278 + + 46 101 7 0 + 4 0.0198 + 7 0.0099 + 8 0.307 + 13 0.119 + 15 0.0099 + 20 0.0198 + 45 0.515 + + 47 98717 41 0 + 0 0.0055 + 1 0.000132 + 2 0.0119 + 3 0.0547 + 4 0.312 + 6 0.000122 + 7 0.0697 + 8 0.213 + 9 0.00656 + 10 0.00492 + 12 5.06e-05 + 13 0.137 + 14 0.0107 + 15 0.0387 + 16 0.00079 + 18 0.0272 + 19 0.000405 + 20 0.0283 + 21 0.00239 + 22 6.08e-05 + 24 0.000709 + 26 0.00422 + 27 2.03e-05 + 28 0.00951 + 29 0.00538 + 30 0.013 + 31 0.0091 + 32 0.00169 + 33 0.00229 + 34 0.000213 + 35 8.1e-05 + 36 2.03e-05 + 37 0.000618 + 40 7.09e-05 + 41 0.0127 + 42 0.00106 + 43 0.000537 + 44 0.000476 + 45 0.00321 + 46 0.00193 + 47 0.00844 + + 48 12 4 0 + 4 0.667 + 7 0.0833 + 18 0.167 + 47 0.0833 + + 58 9 5 0 + 2 0.111 + 8 0.222 + 13 0.333 + 14 0.222 + 20 0.111 + + 14 59133 41 12 + 0 0.00551 + 1 8.46e-05 + 2 0.028 + 3 0.0954 + 4 0.101 + 6 0.000135 + 7 0.098 + 8 0.238 + 9 0.00913 + 10 0.00495 + 12 6.76e-05 + 13 0.172 + 14 0.0106 + 15 0.0368 + 16 0.000507 + 18 0.019 + 19 0.000287 + 20 0.0275 + 21 0.00211 + 22 1.69e-05 + 23 3.38e-05 + 24 0.00215 + 26 0.00883 + 28 0.0216 + 29 0.0107 + 30 0.0221 + 31 0.0124 + 32 0.00499 + 33 0.00504 + 34 0.00093 + 35 0.000237 + 36 3.38e-05 + 37 0.00277 + 40 6.76e-05 + 41 0.0213 + 42 0.00235 + 43 0.000541 + 44 0.000321 + 45 0.00424 + 46 0.00194 + 47 0.0282 + + 2 995 29 0 + 0 0.00603 + 2 0.0101 + 3 0.0141 + 4 0.112 + 7 0.22 + 8 0.166 + 9 0.0111 + 10 0.00503 + 13 0.112 + 14 0.00101 + 15 0.0211 + 18 0.0221 + 19 0.00101 + 20 0.0332 + 21 0.00402 + 24 0.00302 + 26 0.0121 + 28 0.0322 + 29 0.00503 + 30 0.0251 + 31 0.0121 + 32 0.00704 + 33 0.00603 + 35 0.00101 + 37 0.00201 + 41 0.109 + 42 0.00201 + 46 0.00201 + 47 0.0442 + + 7 1 1 0 + 21 1 + + 8 4 4 0 + 10 0.25 + 15 0.25 + 31 0.25 + 47 0.25 + + 13 1104 26 0 + 0 0.000906 + 2 0.0435 + 3 0.0154 + 4 0.302 + 7 0.0462 + 8 0.232 + 9 0.00181 + 10 0.00543 + 13 0.137 + 14 0.00996 + 15 0.067 + 18 0.0362 + 20 0.0272 + 21 0.000906 + 26 0.00181 + 28 0.00634 + 29 0.00181 + 30 0.00453 + 31 0.0127 + 33 0.00362 + 40 0.000906 + 41 0.0317 + 42 0.00181 + 44 0.000906 + 45 0.00272 + 47 0.00634 + + 14 561 28 0 + 0 0.00891 + 1 0.00178 + 2 0.082 + 3 0.0321 + 4 0.0731 + 7 0.152 + 8 0.225 + 9 0.00535 + 10 0.0125 + 13 0.0927 + 14 0.00891 + 15 0.0392 + 16 0.00178 + 18 0.0232 + 20 0.0214 + 21 0.00178 + 26 0.016 + 28 0.0107 + 29 0.0214 + 30 0.025 + 31 0.016 + 32 0.0125 + 33 0.00713 + 37 0.00535 + 41 0.0232 + 42 0.00891 + 45 0.00535 + 47 0.0677 + + 15 46 14 0 + 2 0.087 + 4 0.0652 + 7 0.174 + 8 0.0652 + 13 0.152 + 14 0.0217 + 15 0.217 + 24 0.0217 + 26 0.0217 + 30 0.0217 + 34 0.0217 + 37 0.0217 + 41 0.0435 + 47 0.0652 + + 18 545 28 0 + 0 0.00183 + 2 0.0183 + 3 0.0312 + 4 0.27 + 7 0.196 + 8 0.128 + 10 0.00734 + 13 0.0569 + 14 0.00917 + 15 0.0404 + 18 0.00734 + 20 0.0514 + 21 0.00183 + 24 0.00183 + 26 0.0202 + 28 0.0422 + 29 0.0183 + 30 0.0239 + 31 0.0147 + 32 0.00183 + 33 0.011 + 34 0.00183 + 37 0.0055 + 41 0.011 + 42 0.0055 + 45 0.00734 + 46 0.00183 + 47 0.0128 + + 21 2 2 0 + 7 0.5 + 45 0.5 + + 30 5 3 0 + 3 0.2 + 13 0.4 + 28 0.4 + + 41 126 20 0 + 3 0.00794 + 4 0.0794 + 7 0.23 + 8 0.0714 + 13 0.0952 + 14 0.00794 + 15 0.0159 + 18 0.0317 + 20 0.0397 + 21 0.00794 + 26 0.0159 + 28 0.0159 + 29 0.0159 + 30 0.0397 + 32 0.0159 + 33 0.00794 + 41 0.238 + 42 0.0317 + 45 0.0159 + 47 0.0159 + + 46 7 3 0 + 8 0.286 + 14 0.143 + 45 0.571 + + 47 55733 41 0 + 0 0.00562 + 1 7.18e-05 + 2 0.0276 + 3 0.1 + 4 0.0954 + 6 0.000144 + 7 0.095 + 8 0.241 + 9 0.0094 + 10 0.00484 + 12 7.18e-05 + 13 0.176 + 14 0.0108 + 15 0.0363 + 16 0.00052 + 18 0.0186 + 19 0.000287 + 20 0.0273 + 21 0.00208 + 22 1.79e-05 + 23 3.59e-05 + 24 0.00219 + 26 0.0087 + 28 0.0216 + 29 0.0108 + 30 0.0223 + 31 0.0124 + 32 0.00499 + 33 0.00497 + 34 0.000951 + 35 0.000233 + 36 3.59e-05 + 37 0.00278 + 40 5.38e-05 + 41 0.0191 + 42 0.00221 + 43 0.000574 + 44 0.000323 + 45 0.0042 + 46 0.00201 + 47 0.0281 + + 15 90066 40 28 + 0 0.00298 + 1 4.44e-05 + 2 0.0414 + 3 0.00516 + 4 0.0969 + 6 0.000544 + 7 0.163 + 8 0.0247 + 9 0.000611 + 10 0.000244 + 12 7.77e-05 + 13 0.0143 + 14 0.00192 + 15 0.379 + 16 0.00816 + 18 0.00975 + 19 0.000155 + 20 0.0042 + 21 0.00236 + 24 0.000744 + 25 2.22e-05 + 26 0.0111 + 28 0.00883 + 29 0.0172 + 30 0.00653 + 31 0.0057 + 32 0.00205 + 33 0.0132 + 34 0.00101 + 35 0.000489 + 36 2.22e-05 + 37 0.00244 + 40 0.000644 + 41 0.0659 + 42 0.00489 + 43 0.000533 + 44 0.00461 + 45 0.00521 + 46 0.00472 + 47 0.0883 + + 0 7 5 0 + 4 0.143 + 7 0.429 + 8 0.143 + 41 0.143 + 47 0.143 + + 2 1783 31 0 + 0 0.00112 + 2 0.0202 + 3 0.00449 + 4 0.0892 + 6 0.000561 + 7 0.192 + 8 0.0135 + 13 0.00953 + 14 0.0101 + 15 0.306 + 16 0.0107 + 18 0.0129 + 20 0.00449 + 21 0.00112 + 24 0.00224 + 26 0.0107 + 28 0.00729 + 29 0.00897 + 30 0.00897 + 31 0.00168 + 32 0.000561 + 33 0.0028 + 34 0.000561 + 37 0.00112 + 40 0.00449 + 41 0.183 + 42 0.00449 + 44 0.0028 + 45 0.00393 + 46 0.000561 + 47 0.0802 + + 3 170 13 0 + 2 0.0118 + 3 0.0235 + 4 0.494 + 7 0.118 + 8 0.0471 + 15 0.0529 + 18 0.0706 + 20 0.129 + 28 0.0118 + 33 0.00588 + 41 0.0176 + 45 0.00588 + 47 0.0118 + + 4 9 5 0 + 0 0.111 + 2 0.111 + 7 0.222 + 15 0.444 + 45 0.111 + + 6 42 14 0 + 0 0.0238 + 2 0.0238 + 4 0.0476 + 6 0.0714 + 7 0.0952 + 8 0.0476 + 13 0.0238 + 15 0.357 + 26 0.0238 + 30 0.0238 + 33 0.0476 + 40 0.0476 + 41 0.0476 + 47 0.119 + + 7 26 10 0 + 4 0.0769 + 7 0.0769 + 13 0.0385 + 14 0.0385 + 15 0.385 + 18 0.0385 + 26 0.0385 + 41 0.154 + 45 0.115 + 47 0.0385 + + 8 530 25 0 + 0 0.00189 + 2 0.0226 + 3 0.0245 + 4 0.219 + 7 0.117 + 8 0.0528 + 9 0.00377 + 10 0.00377 + 13 0.017 + 15 0.408 + 18 0.00566 + 20 0.0151 + 26 0.00189 + 28 0.00377 + 29 0.00755 + 30 0.00755 + 31 0.00566 + 32 0.00189 + 33 0.00566 + 34 0.00189 + 37 0.00189 + 41 0.0283 + 44 0.00189 + 45 0.00189 + 47 0.0396 + + 13 5143 34 0 + 0 0.00136 + 2 0.0212 + 3 0.0148 + 4 0.396 + 6 0.000194 + 7 0.0609 + 8 0.0791 + 9 0.00331 + 10 0.000972 + 13 0.00719 + 14 0.000778 + 15 0.278 + 16 0.00486 + 18 0.0282 + 19 0.000583 + 20 0.0249 + 21 0.00156 + 24 0.000583 + 26 0.0035 + 28 0.00681 + 29 0.00506 + 30 0.00817 + 31 0.00564 + 32 0.00156 + 33 0.00506 + 37 0.00117 + 40 0.000583 + 41 0.0124 + 42 0.00117 + 43 0.000194 + 44 0.00117 + 45 0.00136 + 46 0.000194 + 47 0.021 + + 14 2150 33 0 + 0 0.00465 + 2 0.0488 + 3 0.0512 + 4 0.107 + 7 0.158 + 8 0.0963 + 9 0.00884 + 10 0.00279 + 13 0.00186 + 14 0.00093 + 15 0.25 + 16 0.00186 + 18 0.00837 + 20 0.0163 + 21 0.00279 + 24 0.00186 + 26 0.0223 + 28 0.0219 + 29 0.0107 + 30 0.0163 + 31 0.00744 + 32 0.00279 + 33 0.00651 + 34 0.00093 + 36 0.000465 + 37 0.0014 + 41 0.047 + 42 0.00279 + 43 0.00093 + 44 0.0014 + 45 0.00233 + 46 0.00093 + 47 0.093 + + 15 33917 38 0 + 0 0.00433 + 1 2.95e-05 + 2 0.0472 + 3 0.00448 + 4 0.102 + 6 0.000383 + 7 0.168 + 8 0.0195 + 9 0.000206 + 10 0.000236 + 12 5.9e-05 + 13 0.0196 + 14 0.00162 + 15 0.265 + 16 0.00363 + 18 0.0144 + 19 0.000147 + 20 0.00419 + 21 0.00242 + 24 0.000885 + 26 0.0134 + 28 0.00867 + 29 0.0286 + 30 0.00678 + 31 0.00436 + 32 0.00236 + 33 0.0287 + 34 0.00115 + 35 0.000649 + 37 0.00327 + 40 0.000472 + 41 0.0754 + 42 0.00669 + 43 0.000118 + 44 0.00313 + 45 0.00566 + 46 0.0108 + 47 0.142 + + 16 1508 30 0 + 0 0.00265 + 2 0.059 + 3 0.0106 + 4 0.115 + 7 0.208 + 8 0.0232 + 13 0.00464 + 14 0.00133 + 15 0.273 + 16 0.00133 + 18 0.0199 + 20 0.00862 + 21 0.000663 + 24 0.00133 + 25 0.000663 + 26 0.00995 + 28 0.00597 + 29 0.00995 + 30 0.00862 + 31 0.00464 + 33 0.00597 + 34 0.000663 + 35 0.000663 + 37 0.00133 + 41 0.0603 + 42 0.0179 + 43 0.000663 + 44 0.000663 + 45 0.00663 + 47 0.137 + + 18 5065 34 0 + 0 0.0101 + 2 0.0369 + 3 0.00118 + 4 0.0539 + 7 0.243 + 8 0.00967 + 9 0.000197 + 13 0.00296 + 14 0.00079 + 15 0.351 + 16 0.00415 + 18 0.00079 + 19 0.000197 + 20 0.000592 + 21 0.00494 + 24 0.00257 + 26 0.017 + 28 0.0265 + 29 0.0186 + 30 0.0128 + 31 0.00731 + 32 0.00592 + 33 0.0113 + 34 0.000592 + 35 0.000395 + 36 0.000197 + 37 0.00138 + 41 0.0661 + 42 0.00415 + 43 0.000197 + 44 0.00118 + 45 0.00395 + 46 0.00237 + 47 0.0971 + + 19 6 3 0 + 7 0.333 + 15 0.5 + 45 0.167 + + 21 4 1 0 + 47 1 + + 29 4 3 0 + 4 0.5 + 15 0.25 + 20 0.25 + + 30 22 6 0 + 2 0.0455 + 4 0.273 + 8 0.0909 + 15 0.5 + 18 0.0455 + 29 0.0455 + + 40 80 12 0 + 2 0.0625 + 4 0.0625 + 7 0.15 + 13 0.0125 + 15 0.463 + 16 0.0375 + 18 0.0125 + 31 0.0125 + 41 0.075 + 44 0.05 + 45 0.0125 + 47 0.05 + + 41 441 25 0 + 0 0.00454 + 2 0.0635 + 3 0.00227 + 4 0.0385 + 7 0.413 + 8 0.00907 + 13 0.0204 + 14 0.00454 + 15 0.0794 + 16 0.00454 + 18 0.00907 + 20 0.00454 + 21 0.00454 + 26 0.0181 + 28 0.00907 + 29 0.00454 + 30 0.00907 + 31 0.00454 + 37 0.00227 + 40 0.00227 + 41 0.204 + 42 0.0136 + 44 0.00227 + 45 0.0068 + 47 0.0658 + + 43 18 4 0 + 4 0.0556 + 13 0.0556 + 15 0.5 + 44 0.389 + + 44 6 5 0 + 2 0.167 + 4 0.167 + 15 0.333 + 26 0.167 + 32 0.167 + + 45 26 8 0 + 3 0.0385 + 4 0.192 + 7 0.154 + 8 0.0385 + 15 0.423 + 33 0.0385 + 41 0.0769 + 45 0.0385 + + 46 51 8 0 + 4 0.0196 + 7 0.0196 + 8 0.0196 + 15 0.333 + 18 0.0196 + 28 0.0196 + 45 0.49 + 47 0.0784 + + 47 38960 39 0 + 0 0.00108 + 1 7.7e-05 + 2 0.0398 + 3 0.00198 + 4 0.0551 + 6 0.000796 + 7 0.158 + 8 0.0203 + 9 0.000231 + 10 2.57e-05 + 12 0.000128 + 13 0.0134 + 14 0.00218 + 15 0.515 + 16 0.0138 + 18 0.0037 + 19 0.000128 + 20 0.000385 + 21 0.00223 + 24 0.000282 + 25 2.57e-05 + 26 0.00893 + 28 0.00649 + 29 0.0102 + 30 0.00454 + 31 0.00685 + 32 0.00149 + 33 0.00249 + 34 0.00113 + 35 0.000488 + 37 0.00223 + 40 0.000719 + 41 0.0599 + 42 0.00357 + 43 0.001 + 44 0.00706 + 45 0.0049 + 46 0.0011 + 47 0.0488 + + 48 41 7 0 + 4 0.146 + 7 0.0488 + 8 0.0244 + 15 0.707 + 18 0.0244 + 28 0.0244 + 47 0.0244 + + 54 5 3 0 + 4 0.6 + 7 0.2 + 47 0.2 + + 55 2 2 0 + 3 0.5 + 8 0.5 + + 58 35 7 0 + 2 0.0571 + 4 0.0857 + 7 0.0857 + 8 0.0857 + 15 0.629 + 20 0.0286 + 30 0.0286 + + 68 6 2 0 + 4 0.5 + 7 0.5 + + 16 2650 32 9 + 0 0.00189 + 2 0.0325 + 3 0.0136 + 4 0.156 + 7 0.0634 + 8 0.0408 + 9 0.000755 + 10 0.00113 + 13 0.00453 + 14 0.000755 + 15 0.57 + 16 0.0158 + 18 0.0125 + 19 0.000377 + 20 0.00189 + 21 0.0034 + 26 0.00377 + 28 0.00453 + 29 0.00113 + 30 0.00415 + 31 0.00151 + 32 0.000377 + 33 0.00226 + 34 0.000377 + 37 0.00113 + 40 0.00189 + 41 0.0208 + 42 0.00189 + 44 0.00113 + 45 0.00528 + 46 0.000377 + 47 0.0298 + + 2 111 10 0 + 3 0.00901 + 4 0.468 + 7 0.0631 + 8 0.018 + 15 0.288 + 18 0.00901 + 26 0.018 + 41 0.0541 + 45 0.018 + 47 0.0541 + + 8 8 3 0 + 3 0.125 + 15 0.75 + 45 0.125 + + 13 94 10 0 + 2 0.0426 + 3 0.0106 + 4 0.0638 + 7 0.0106 + 8 0.0426 + 13 0.0106 + 15 0.787 + 16 0.0106 + 20 0.0106 + 41 0.0106 + + 14 27 7 0 + 2 0.111 + 4 0.111 + 7 0.0741 + 15 0.593 + 16 0.037 + 28 0.037 + 47 0.037 + + 15 731 19 0 + 0 0.00137 + 2 0.0369 + 4 0.0301 + 7 0.0451 + 8 0.00274 + 13 0.0041 + 15 0.774 + 16 0.00684 + 18 0.0301 + 20 0.00274 + 21 0.00274 + 26 0.00137 + 29 0.00137 + 30 0.00137 + 33 0.00274 + 40 0.00547 + 41 0.0219 + 45 0.00137 + 47 0.0274 + + 16 42 11 0 + 3 0.143 + 4 0.119 + 7 0.119 + 8 0.119 + 15 0.167 + 26 0.0238 + 28 0.0238 + 41 0.0714 + 42 0.0238 + 45 0.0238 + 47 0.167 + + 18 66 8 0 + 2 0.0152 + 4 0.439 + 7 0.0303 + 8 0.0303 + 15 0.439 + 20 0.0152 + 26 0.0152 + 47 0.0152 + + 41 8 4 0 + 7 0.125 + 15 0.25 + 41 0.5 + 42 0.125 + + 47 1553 32 0 + 0 0.00258 + 2 0.0328 + 3 0.0174 + 4 0.191 + 7 0.0753 + 8 0.0599 + 9 0.00129 + 10 0.00193 + 13 0.00515 + 14 0.00129 + 15 0.495 + 16 0.0225 + 18 0.00644 + 19 0.000644 + 20 0.000644 + 21 0.00451 + 26 0.00322 + 28 0.00644 + 29 0.00129 + 30 0.00644 + 31 0.00258 + 32 0.000644 + 33 0.00258 + 34 0.000644 + 37 0.00193 + 40 0.000644 + 41 0.0161 + 42 0.00193 + 44 0.00193 + 45 0.0058 + 46 0.000644 + 47 0.0283 + + 17 321 24 2 + 0 0.0592 + 1 0.00312 + 2 0.0436 + 7 0.364 + 8 0.00312 + 9 0.00312 + 13 0.00623 + 14 0.00623 + 15 0.00312 + 19 0.00623 + 21 0.0343 + 24 0.00935 + 26 0.0218 + 28 0.103 + 29 0.0498 + 30 0.0498 + 31 0.0374 + 32 0.0156 + 33 0.0218 + 37 0.0125 + 41 0.0405 + 42 0.00312 + 45 0.0187 + 47 0.0841 + + 20 19 9 0 + 0 0.0526 + 7 0.316 + 26 0.0526 + 28 0.158 + 29 0.105 + 30 0.158 + 32 0.0526 + 42 0.0526 + 47 0.0526 + + 55 18 11 0 + 0 0.0556 + 2 0.0556 + 7 0.333 + 21 0.0556 + 26 0.111 + 28 0.0556 + 30 0.0556 + 31 0.0556 + 37 0.111 + 41 0.0556 + 47 0.0556 + + 18 8667 14 1 + 0 0.000115 + 3 0.00288 + 6 0.000231 + 8 0.00138 + 13 0.335 + 14 0.0631 + 15 0.587 + 16 0.00762 + 19 0.000808 + 21 0.000692 + 28 0.000577 + 30 0.000115 + 31 0.000346 + 32 0.000115 + + 13 4 4 0 + 13 0.25 + 14 0.25 + 15 0.25 + 21 0.25 + + 19 17428 40 9 + 0 0.00947 + 1 0.000115 + 2 0.0516 + 3 0.00138 + 4 0.0023 + 5 5.74e-05 + 7 0.171 + 8 0.00482 + 9 0.000402 + 10 0.000574 + 12 0.00304 + 13 0.0332 + 14 0.0155 + 15 0.00419 + 16 0.00023 + 18 5.74e-05 + 19 0.00161 + 21 0.0168 + 22 0.000402 + 23 5.74e-05 + 24 0.000115 + 26 0.00637 + 27 5.74e-05 + 28 0.0543 + 29 0.101 + 30 0.0205 + 31 0.0106 + 32 0.0237 + 33 0.0276 + 34 0.00861 + 35 0.0122 + 37 0.0274 + 40 5.74e-05 + 41 0.12 + 42 0.011 + 43 0.000516 + 44 0.00161 + 45 0.0876 + 46 0.0315 + 47 0.139 + + 2 7 5 0 + 2 0.286 + 7 0.286 + 26 0.143 + 34 0.143 + 41 0.143 + + 8 10 7 0 + 7 0.1 + 21 0.1 + 28 0.1 + 29 0.2 + 30 0.3 + 33 0.1 + 45 0.1 + + 13 15 7 0 + 2 0.0667 + 7 0.267 + 28 0.133 + 29 0.333 + 32 0.0667 + 33 0.0667 + 47 0.0667 + + 14 6 5 0 + 4 0.167 + 7 0.333 + 41 0.167 + 45 0.167 + 47 0.167 + + 15 4 4 0 + 4 0.25 + 15 0.25 + 18 0.25 + 47 0.25 + + 18 7 5 0 + 26 0.143 + 28 0.143 + 30 0.286 + 41 0.286 + 42 0.143 + + 41 1 1 0 + 15 1 + + 46 1 1 0 + 8 1 + + 48 4 3 0 + 7 0.5 + 33 0.25 + 41 0.25 + + 20 8397 36 20 + 0 0.0151 + 1 0.000357 + 2 0.0497 + 3 0.000357 + 4 0.00691 + 7 0.425 + 8 0.00214 + 9 0.000238 + 10 0.000119 + 12 0.000238 + 13 0.00429 + 14 0.00155 + 15 0.00131 + 16 0.000119 + 17 0.0031 + 18 0.000238 + 19 0.000238 + 21 0.00893 + 24 0.0168 + 26 0.0355 + 28 0.134 + 29 0.0905 + 30 0.0537 + 31 0.022 + 32 0.0139 + 33 0.0257 + 34 0.000834 + 35 0.00143 + 37 0.00631 + 41 0.025 + 42 0.00441 + 43 0.000119 + 44 0.000715 + 45 0.00965 + 46 0.00131 + 47 0.0381 + + 3 122 14 0 + 0 0.0164 + 2 0.0902 + 7 0.549 + 13 0.0082 + 15 0.0082 + 26 0.041 + 28 0.082 + 29 0.107 + 30 0.0246 + 31 0.0082 + 32 0.0082 + 33 0.0082 + 45 0.0082 + 47 0.041 + + 8 1980 30 0 + 0 0.0232 + 2 0.0399 + 3 0.000505 + 4 0.00253 + 7 0.483 + 8 0.00202 + 9 0.000505 + 13 0.00253 + 14 0.00101 + 15 0.00202 + 16 0.000505 + 17 0.00101 + 19 0.000505 + 21 0.00808 + 24 0.0121 + 26 0.0348 + 28 0.122 + 29 0.0884 + 30 0.05 + 31 0.0197 + 32 0.0136 + 33 0.0242 + 35 0.000505 + 37 0.00354 + 41 0.0217 + 42 0.00707 + 44 0.00101 + 45 0.00707 + 46 0.00101 + 47 0.0258 + + 9 23 6 0 + 2 0.0435 + 7 0.696 + 28 0.0435 + 29 0.087 + 41 0.0435 + 47 0.087 + + 10 78 15 0 + 0 0.0641 + 2 0.0256 + 7 0.449 + 8 0.0128 + 14 0.0128 + 26 0.0897 + 28 0.0256 + 29 0.0513 + 30 0.0256 + 31 0.0256 + 32 0.0128 + 37 0.0256 + 41 0.115 + 42 0.0128 + 47 0.0513 + + 13 3723 32 0 + 0 0.0142 + 2 0.047 + 4 0.00967 + 7 0.385 + 8 0.00161 + 9 0.000269 + 12 0.000537 + 13 0.00537 + 14 0.00161 + 15 0.00161 + 17 0.00322 + 18 0.000537 + 19 0.000269 + 21 0.0094 + 24 0.0172 + 26 0.033 + 28 0.132 + 29 0.107 + 30 0.0543 + 31 0.0277 + 32 0.0126 + 33 0.0312 + 34 0.00134 + 35 0.00134 + 37 0.00779 + 41 0.0263 + 42 0.00349 + 43 0.000269 + 44 0.000806 + 45 0.0145 + 46 0.00134 + 47 0.0486 + + 14 1627 27 0 + 0 0.00922 + 1 0.00184 + 2 0.0719 + 4 0.00676 + 7 0.406 + 8 0.00369 + 10 0.000615 + 13 0.00307 + 14 0.00246 + 17 0.00676 + 21 0.0117 + 24 0.0252 + 26 0.0363 + 28 0.154 + 29 0.0615 + 30 0.0639 + 31 0.0191 + 32 0.024 + 33 0.0234 + 34 0.000615 + 35 0.00307 + 37 0.00553 + 41 0.024 + 42 0.00492 + 45 0.00492 + 46 0.00123 + 47 0.0252 + + 15 368 17 0 + 0 0.00272 + 2 0.0272 + 4 0.00815 + 7 0.478 + 13 0.00272 + 24 0.0136 + 26 0.0408 + 28 0.163 + 29 0.111 + 30 0.0489 + 31 0.00815 + 33 0.0163 + 35 0.00272 + 37 0.0109 + 41 0.0109 + 45 0.00272 + 47 0.0516 + + 21 5 4 0 + 0 0.4 + 7 0.2 + 30 0.2 + 41 0.2 + + 29 1 1 0 + 42 1 + + 30 55 11 0 + 2 0.0727 + 7 0.436 + 8 0.0182 + 21 0.0182 + 24 0.0727 + 26 0.0364 + 28 0.218 + 29 0.0182 + 30 0.0545 + 33 0.0182 + 41 0.0364 + + 31 52 13 0 + 0 0.0192 + 2 0.0385 + 7 0.442 + 24 0.0192 + 26 0.0577 + 28 0.173 + 29 0.0962 + 30 0.0385 + 31 0.0192 + 37 0.0192 + 41 0.0192 + 46 0.0192 + 47 0.0385 + + 43 1 1 0 + 44 1 + + 44 5 3 0 + 7 0.6 + 32 0.2 + 45 0.2 + + 45 40 10 0 + 2 0.05 + 7 0.4 + 26 0.1 + 28 0.1 + 29 0.075 + 30 0.125 + 31 0.025 + 33 0.05 + 41 0.025 + 47 0.05 + + 47 34 12 0 + 0 0.0294 + 2 0.0588 + 3 0.0588 + 7 0.5 + 26 0.0294 + 28 0.0294 + 29 0.0294 + 30 0.0588 + 31 0.0294 + 33 0.0294 + 41 0.0294 + 47 0.118 + + 48 185 19 0 + 0 0.00541 + 2 0.027 + 4 0.00541 + 7 0.465 + 13 0.0162 + 17 0.00541 + 21 0.0216 + 24 0.0108 + 26 0.0216 + 28 0.195 + 29 0.0811 + 30 0.0486 + 31 0.0108 + 32 0.00541 + 33 0.0108 + 41 0.0378 + 45 0.00541 + 46 0.00541 + 47 0.0216 + + 54 23 6 0 + 2 0.13 + 7 0.522 + 13 0.0435 + 26 0.087 + 28 0.087 + 47 0.13 + + 56 36 12 0 + 2 0.0278 + 4 0.0278 + 7 0.5 + 26 0.0556 + 28 0.167 + 29 0.0278 + 31 0.0278 + 33 0.0278 + 34 0.0278 + 37 0.0278 + 41 0.0278 + 47 0.0556 + + 60 7 4 0 + 2 0.143 + 7 0.571 + 26 0.143 + 30 0.143 + + 68 4 3 0 + 4 0.25 + 7 0.5 + 28 0.25 + + 21 1703 33 27 + 0 0.102 + 1 0.00176 + 2 0.0552 + 3 0.0182 + 4 0.0804 + 7 0.203 + 8 0.00411 + 10 0.00117 + 12 0.000587 + 13 0.0393 + 14 0.0252 + 15 0.0153 + 18 0.00117 + 19 0.00294 + 20 0.00294 + 21 0.0687 + 23 0.000587 + 24 0.00646 + 26 0.00763 + 28 0.0399 + 29 0.0341 + 30 0.0164 + 31 0.0188 + 32 0.00881 + 33 0.0241 + 34 0.00411 + 37 0.00528 + 41 0.0781 + 42 0.017 + 44 0.00294 + 45 0.0153 + 46 0.00117 + 47 0.0981 + + 2 4 2 0 + 0 0.25 + 7 0.75 + + 3 108 17 0 + 0 0.13 + 1 0.00926 + 2 0.0648 + 7 0.296 + 13 0.0185 + 15 0.037 + 21 0.0463 + 24 0.00926 + 26 0.00926 + 28 0.0463 + 29 0.13 + 32 0.00926 + 33 0.0278 + 37 0.00926 + 41 0.0648 + 44 0.00926 + 47 0.0833 + + 4 458 23 0 + 0 0.138 + 1 0.00437 + 2 0.0852 + 3 0.00437 + 7 0.17 + 13 0.0524 + 14 0.0306 + 15 0.0131 + 21 0.048 + 24 0.00873 + 28 0.0218 + 29 0.0349 + 30 0.024 + 31 0.0284 + 32 0.00873 + 33 0.0328 + 34 0.00437 + 37 0.00218 + 41 0.105 + 42 0.024 + 45 0.0197 + 46 0.00218 + 47 0.138 + + 7 11 7 0 + 0 0.0909 + 7 0.182 + 14 0.364 + 21 0.0909 + 24 0.0909 + 30 0.0909 + 42 0.0909 + + 8 298 28 0 + 0 0.094 + 2 0.0235 + 3 0.0101 + 4 0.225 + 7 0.124 + 8 0.00671 + 10 0.00336 + 13 0.0268 + 14 0.0168 + 15 0.0134 + 18 0.00671 + 19 0.00336 + 20 0.0168 + 21 0.057 + 24 0.0101 + 26 0.0168 + 28 0.057 + 29 0.0436 + 30 0.0268 + 31 0.0101 + 32 0.0201 + 33 0.0302 + 37 0.0101 + 41 0.047 + 42 0.0101 + 45 0.0268 + 46 0.00336 + 47 0.0604 + + 9 27 12 0 + 0 0.148 + 4 0.0741 + 7 0.259 + 8 0.037 + 15 0.037 + 21 0.037 + 26 0.0741 + 28 0.0741 + 29 0.037 + 30 0.0741 + 33 0.037 + 41 0.111 + + 10 5 1 0 + 4 1 + + 13 130 21 0 + 0 0.115 + 2 0.0231 + 3 0.0231 + 4 0.0615 + 7 0.192 + 8 0.00769 + 13 0.0308 + 14 0.0154 + 15 0.0231 + 21 0.0538 + 26 0.00769 + 28 0.0231 + 29 0.0154 + 30 0.00769 + 31 0.0231 + 33 0.0154 + 37 0.0154 + 41 0.154 + 42 0.0231 + 44 0.00769 + 47 0.162 + + 14 42 13 0 + 0 0.0714 + 2 0.119 + 7 0.0952 + 13 0.0238 + 15 0.0476 + 19 0.0238 + 21 0.0476 + 33 0.0238 + 34 0.0238 + 41 0.262 + 42 0.0238 + 45 0.0476 + 47 0.19 + + 15 57 11 0 + 2 0.0351 + 3 0.263 + 7 0.0526 + 13 0.105 + 14 0.0702 + 28 0.0175 + 31 0.0175 + 32 0.0351 + 41 0.193 + 42 0.0175 + 47 0.193 + + 16 5 3 0 + 2 0.4 + 15 0.4 + 21 0.2 + + 17 8 5 0 + 7 0.25 + 21 0.125 + 29 0.125 + 33 0.125 + 47 0.375 + + 18 4 1 0 + 13 1 + + 19 3 3 0 + 7 0.333 + 41 0.333 + 45 0.333 + + 20 17 8 0 + 0 0.0588 + 2 0.118 + 7 0.235 + 21 0.118 + 28 0.176 + 41 0.118 + 44 0.0588 + 47 0.118 + + 21 57 20 0 + 0 0.0702 + 2 0.0877 + 4 0.0175 + 7 0.123 + 8 0.0175 + 13 0.0175 + 14 0.0526 + 15 0.0351 + 21 0.0351 + 28 0.158 + 29 0.0351 + 30 0.0175 + 31 0.0702 + 32 0.0351 + 33 0.0351 + 34 0.0175 + 41 0.0175 + 42 0.0351 + 44 0.0175 + 47 0.105 + + 22 8 6 0 + 0 0.25 + 4 0.125 + 7 0.125 + 19 0.25 + 41 0.125 + 47 0.125 + + 28 3 3 0 + 0 0.333 + 45 0.333 + 47 0.333 + + 30 5 4 0 + 0 0.2 + 2 0.4 + 4 0.2 + 28 0.2 + + 31 26 9 0 + 0 0.115 + 3 0.0385 + 4 0.423 + 7 0.192 + 8 0.0385 + 30 0.0385 + 37 0.0385 + 41 0.0385 + 47 0.0769 + + 39 2 2 0 + 2 0.5 + 28 0.5 + + 40 2 1 0 + 3 1 + + 47 369 26 0 + 0 0.0623 + 2 0.0379 + 3 0.0108 + 4 0.106 + 7 0.347 + 8 0.00271 + 10 0.00271 + 12 0.00271 + 13 0.0461 + 14 0.0244 + 15 0.00542 + 19 0.00271 + 21 0.144 + 23 0.00271 + 24 0.00542 + 26 0.0108 + 28 0.0379 + 29 0.0244 + 30 0.00542 + 31 0.0217 + 33 0.0108 + 34 0.00542 + 37 0.00271 + 41 0.019 + 45 0.00813 + 47 0.0515 + + 48 7 5 0 + 0 0.286 + 4 0.143 + 41 0.143 + 42 0.143 + 45 0.286 + + 49 2 2 0 + 33 0.5 + 42 0.5 + + 55 30 12 0 + 0 0.167 + 2 0.0667 + 7 0.1 + 14 0.0333 + 21 0.1 + 28 0.0333 + 30 0.0333 + 33 0.0333 + 41 0.133 + 42 0.167 + 44 0.0333 + 47 0.1 + + 56 3 3 0 + 0 0.333 + 4 0.333 + 34 0.333 + + 22 205 23 5 + 0 0.039 + 2 0.0195 + 3 0.00488 + 4 0.0634 + 7 0.0585 + 8 0.0146 + 13 0.146 + 14 0.0585 + 15 0.0634 + 16 0.00488 + 19 0.00488 + 21 0.0683 + 24 0.0146 + 26 0.00488 + 28 0.0293 + 29 0.0634 + 30 0.0293 + 31 0.0634 + 32 0.00976 + 33 0.0244 + 41 0.0195 + 45 0.0146 + 47 0.18 + + 4 128 16 0 + 0 0.00781 + 2 0.0156 + 3 0.00781 + 7 0.0156 + 8 0.0234 + 13 0.234 + 14 0.0859 + 15 0.102 + 16 0.00781 + 19 0.00781 + 21 0.0391 + 24 0.00781 + 29 0.0859 + 31 0.0781 + 41 0.0156 + 47 0.266 + + 8 34 14 0 + 0 0.0588 + 2 0.0588 + 4 0.265 + 7 0.147 + 14 0.0294 + 21 0.0294 + 24 0.0294 + 28 0.0294 + 30 0.118 + 31 0.0294 + 33 0.0294 + 41 0.0588 + 45 0.0588 + 47 0.0588 + + 13 4 4 0 + 0 0.25 + 4 0.25 + 26 0.25 + 47 0.25 + + 47 34 12 0 + 0 0.118 + 4 0.0588 + 7 0.118 + 21 0.235 + 24 0.0294 + 28 0.0882 + 29 0.0588 + 30 0.0294 + 31 0.0588 + 32 0.0588 + 33 0.118 + 45 0.0294 + + 48 3 3 0 + 4 0.333 + 7 0.333 + 28 0.333 + + 23 73 13 2 + 0 0.0411 + 2 0.0685 + 4 0.466 + 7 0.151 + 8 0.0137 + 13 0.0274 + 18 0.0137 + 20 0.0137 + 29 0.0137 + 32 0.0137 + 33 0.0137 + 41 0.0548 + 47 0.11 + + 8 50 11 0 + 0 0.06 + 2 0.04 + 4 0.6 + 7 0.1 + 8 0.02 + 13 0.02 + 18 0.02 + 20 0.02 + 32 0.02 + 41 0.02 + 47 0.08 + + 47 19 8 0 + 2 0.105 + 4 0.211 + 7 0.263 + 13 0.0526 + 29 0.0526 + 33 0.0526 + 41 0.105 + 47 0.158 + + 24 4 3 0 + 22 0.25 + 24 0.25 + 30 0.5 + + 25 14 3 0 + 15 0.0714 + 42 0.0714 + 47 0.857 + + 26 6 4 0 + 3 0.333 + 13 0.333 + 21 0.167 + 47 0.167 + + 27 8 5 0 + 0 0.125 + 4 0.125 + 26 0.125 + 30 0.125 + 45 0.5 + + 28 126 20 5 + 0 0.0317 + 2 0.0952 + 4 0.0159 + 7 0.0159 + 12 0.00794 + 13 0.00794 + 14 0.00794 + 19 0.00794 + 21 0.0317 + 26 0.46 + 28 0.0952 + 30 0.0238 + 32 0.00794 + 34 0.00794 + 35 0.00794 + 41 0.00794 + 42 0.0238 + 44 0.0238 + 45 0.0556 + 47 0.0635 + + 2 4 3 0 + 26 0.25 + 28 0.25 + 44 0.5 + + 3 4 3 0 + 2 0.25 + 14 0.25 + 26 0.5 + + 13 10 6 0 + 0 0.1 + 2 0.2 + 26 0.2 + 41 0.1 + 42 0.1 + 47 0.3 + + 14 16 7 0 + 2 0.312 + 4 0.0625 + 12 0.0625 + 13 0.0625 + 26 0.312 + 35 0.0625 + 42 0.125 + + 47 80 13 0 + 0 0.0375 + 2 0.0375 + 4 0.0125 + 7 0.025 + 19 0.0125 + 21 0.05 + 26 0.538 + 28 0.125 + 30 0.025 + 32 0.0125 + 34 0.0125 + 45 0.0625 + 47 0.05 + + 29 40 11 2 + 2 0.125 + 4 0.025 + 7 0.025 + 13 0.325 + 14 0.025 + 15 0.15 + 20 0.025 + 21 0.025 + 31 0.025 + 41 0.2 + 42 0.05 + + 8 11 3 0 + 13 0.545 + 31 0.0909 + 41 0.364 + + 14 10 5 0 + 7 0.1 + 13 0.4 + 14 0.1 + 15 0.2 + 42 0.2 + + 30 1783 33 10 + 0 0.00673 + 2 0.0432 + 3 0.0107 + 4 0.337 + 7 0.204 + 8 0.0707 + 9 0.00112 + 10 0.00112 + 13 0.06 + 14 0.00393 + 15 0.0123 + 16 0.00112 + 18 0.0488 + 19 0.000561 + 20 0.0308 + 21 0.00393 + 22 0.000561 + 24 0.00393 + 26 0.0123 + 28 0.0275 + 29 0.0123 + 30 0.0157 + 31 0.00617 + 32 0.00449 + 33 0.00897 + 36 0.000561 + 37 0.0028 + 41 0.0314 + 42 0.0028 + 43 0.000561 + 45 0.00505 + 46 0.000561 + 47 0.0286 + + 2 15 6 0 + 4 0.2 + 7 0.467 + 22 0.0667 + 28 0.0667 + 41 0.133 + 47 0.0667 + + 3 8 1 0 + 4 1 + + 8 96 15 0 + 0 0.0104 + 2 0.0312 + 3 0.0104 + 4 0.417 + 7 0.25 + 8 0.0104 + 13 0.0104 + 15 0.0104 + 18 0.0938 + 20 0.0312 + 26 0.0104 + 28 0.0312 + 29 0.0312 + 30 0.0208 + 47 0.0312 + + 13 884 28 0 + 0 0.00226 + 2 0.0351 + 3 0.00792 + 4 0.436 + 7 0.0995 + 8 0.0735 + 13 0.106 + 14 0.00339 + 15 0.0181 + 16 0.00226 + 18 0.0622 + 20 0.0328 + 21 0.00226 + 24 0.00452 + 26 0.00452 + 28 0.0158 + 29 0.0102 + 30 0.00905 + 31 0.00566 + 32 0.00113 + 33 0.00679 + 36 0.00113 + 37 0.00113 + 41 0.0317 + 42 0.00113 + 43 0.00113 + 45 0.00566 + 47 0.0192 + + 14 489 28 0 + 0 0.0123 + 2 0.0654 + 3 0.0204 + 4 0.131 + 7 0.299 + 8 0.115 + 9 0.00409 + 10 0.00409 + 13 0.0245 + 14 0.00613 + 15 0.0102 + 18 0.0389 + 19 0.00204 + 20 0.0389 + 21 0.00204 + 24 0.00409 + 26 0.0204 + 28 0.0389 + 29 0.00818 + 30 0.0307 + 31 0.00409 + 32 0.0143 + 33 0.0102 + 37 0.00613 + 41 0.0327 + 42 0.00613 + 46 0.00204 + 47 0.0491 + + 15 59 12 0 + 2 0.0339 + 3 0.0169 + 4 0.593 + 7 0.136 + 8 0.0169 + 18 0.0508 + 20 0.0339 + 26 0.0339 + 31 0.0169 + 33 0.0169 + 41 0.0339 + 47 0.0169 + + 30 4 4 0 + 4 0.25 + 7 0.25 + 29 0.25 + 41 0.25 + + 46 3 1 0 + 45 1 + + 47 198 20 0 + 0 0.0152 + 2 0.0455 + 4 0.237 + 7 0.439 + 8 0.00505 + 14 0.00505 + 20 0.00505 + 21 0.0202 + 24 0.00505 + 26 0.0202 + 28 0.0606 + 29 0.0253 + 30 0.0101 + 31 0.0152 + 33 0.0202 + 37 0.00505 + 41 0.0354 + 42 0.00505 + 45 0.00505 + 47 0.0202 + + 48 8 5 0 + 4 0.5 + 8 0.125 + 18 0.125 + 20 0.125 + 26 0.125 + + 31 1447 30 13 + 0 0.0104 + 2 0.0297 + 3 0.02 + 4 0.411 + 7 0.157 + 8 0.0643 + 9 0.00138 + 10 0.00207 + 13 0.0145 + 14 0.00138 + 15 0.00484 + 16 0.000691 + 18 0.0408 + 19 0.000691 + 20 0.0359 + 21 0.0221 + 24 0.00415 + 26 0.0194 + 28 0.0235 + 29 0.0111 + 30 0.027 + 31 0.00484 + 32 0.00346 + 33 0.00898 + 37 0.000691 + 41 0.0235 + 42 0.0152 + 43 0.00138 + 45 0.00829 + 47 0.0318 + + 2 4 2 0 + 4 0.5 + 47 0.5 + + 3 16 4 0 + 4 0.75 + 7 0.125 + 13 0.0625 + 14 0.0625 + + 8 111 18 0 + 0 0.00901 + 2 0.045 + 4 0.342 + 7 0.252 + 8 0.0811 + 9 0.00901 + 18 0.018 + 20 0.027 + 21 0.018 + 26 0.027 + 28 0.027 + 29 0.00901 + 30 0.00901 + 31 0.00901 + 33 0.00901 + 41 0.027 + 45 0.00901 + 47 0.0721 + + 13 747 27 0 + 0 0.00803 + 2 0.0241 + 3 0.0161 + 4 0.483 + 7 0.123 + 8 0.0589 + 9 0.00134 + 10 0.00268 + 13 0.00803 + 14 0.00134 + 15 0.00535 + 18 0.0589 + 19 0.00134 + 20 0.0455 + 21 0.0201 + 24 0.00402 + 26 0.012 + 28 0.0187 + 29 0.012 + 30 0.0228 + 31 0.00268 + 32 0.00402 + 33 0.00669 + 41 0.0214 + 42 0.00669 + 45 0.00669 + 47 0.0241 + + 14 423 27 0 + 0 0.0165 + 2 0.0473 + 3 0.0402 + 4 0.199 + 7 0.215 + 8 0.0922 + 10 0.00236 + 13 0.0331 + 15 0.00709 + 16 0.00236 + 18 0.0284 + 20 0.0213 + 21 0.026 + 24 0.00709 + 26 0.0355 + 28 0.0402 + 29 0.0142 + 30 0.0473 + 31 0.00946 + 32 0.00473 + 33 0.0165 + 37 0.00236 + 41 0.0165 + 42 0.0355 + 43 0.00473 + 45 0.00709 + 47 0.0284 + + 15 45 6 0 + 4 0.711 + 7 0.178 + 20 0.0222 + 21 0.0444 + 30 0.0222 + 41 0.0222 + + 18 3 2 0 + 4 0.333 + 41 0.667 + + 30 4 3 0 + 0 0.25 + 7 0.25 + 41 0.5 + + 41 7 2 0 + 4 0.714 + 41 0.286 + + 46 3 1 0 + 45 1 + + 47 45 6 0 + 4 0.733 + 7 0.0222 + 20 0.0444 + 21 0.0444 + 42 0.0444 + 47 0.111 + + 48 19 4 0 + 4 0.737 + 18 0.0526 + 20 0.158 + 26 0.0526 + + 60 8 1 0 + 4 1 + + 32 7 4 0 + 7 0.571 + 15 0.143 + 16 0.143 + 41 0.143 + + 33 22 11 0 + 0 0.136 + 2 0.227 + 4 0.0909 + 7 0.0909 + 13 0.0455 + 19 0.0909 + 21 0.0909 + 32 0.0455 + 41 0.0909 + 42 0.0455 + 44 0.0455 + + 34 68 18 2 + 2 0.0441 + 7 0.103 + 8 0.0294 + 13 0.0147 + 14 0.0294 + 15 0.0147 + 21 0.0147 + 28 0.0147 + 30 0.0147 + 32 0.0147 + 33 0.0147 + 35 0.0147 + 37 0.0147 + 41 0.397 + 42 0.0441 + 45 0.0147 + 46 0.0147 + 47 0.191 + + 13 4 3 0 + 7 0.5 + 8 0.25 + 28 0.25 + + 14 3 2 0 + 30 0.333 + 47 0.667 + + 35 8 6 0 + 0 0.125 + 2 0.125 + 26 0.125 + 28 0.125 + 33 0.125 + 47 0.375 + + 36 7 3 0 + 13 0.143 + 14 0.143 + 41 0.714 + + 37 5 4 0 + 7 0.2 + 21 0.2 + 28 0.4 + 33 0.2 + + 38 13 6 0 + 7 0.308 + 24 0.0769 + 26 0.385 + 28 0.0769 + 29 0.0769 + 33 0.0769 + + 39 1798 26 1 + 0 0.0289 + 2 0.191 + 4 0.015 + 6 0.00111 + 7 0.391 + 8 0.0106 + 13 0.00334 + 14 0.00167 + 15 0.00278 + 18 0.00222 + 19 0.00167 + 20 0.00222 + 21 0.0384 + 24 0.00222 + 26 0.12 + 28 0.0211 + 29 0.0651 + 30 0.0117 + 31 0.0117 + 32 0.00222 + 33 0.00612 + 41 0.0184 + 42 0.0139 + 43 0.000556 + 44 0.035 + 47 0.00222 + + 3 8 5 0 + 2 0.25 + 4 0.25 + 20 0.25 + 33 0.125 + 41 0.125 + + 40 83 3 0 + 15 0.964 + 16 0.012 + 21 0.0241 + + 41 1289 21 18 + 0 0.000776 + 2 0.000776 + 3 0.0279 + 7 0.00155 + 8 0.26 + 9 0.014 + 10 0.00388 + 11 0.00155 + 13 0.206 + 14 0.102 + 15 0.353 + 16 0.00698 + 19 0.00233 + 21 0.00233 + 22 0.000776 + 24 0.000776 + 29 0.000776 + 30 0.00465 + 31 0.00853 + 33 0.000776 + 43 0.000776 + + 2 27 6 0 + 3 0.0741 + 8 0.037 + 13 0.481 + 14 0.111 + 15 0.259 + 33 0.037 + + 3 25 1 0 + 3 1 + + 8 318 11 0 + 0 0.00314 + 3 0.0252 + 8 0.836 + 9 0.0252 + 13 0.0597 + 14 0.00314 + 15 0.00629 + 16 0.00314 + 24 0.00314 + 30 0.0126 + 31 0.022 + + 9 9 3 0 + 8 0.556 + 9 0.333 + 13 0.111 + + 10 1 1 0 + 10 1 + + 13 240 5 0 + 8 0.05 + 13 0.729 + 14 0.162 + 15 0.0542 + 31 0.00417 + + 14 117 4 0 + 8 0.0256 + 13 0.248 + 14 0.718 + 21 0.00855 + + 15 430 6 0 + 8 0.00233 + 9 0.00233 + 13 0.0093 + 15 0.981 + 19 0.00233 + 43 0.00233 + + 16 9 2 0 + 15 0.222 + 16 0.778 + + 21 9 4 0 + 2 0.111 + 8 0.444 + 13 0.222 + 15 0.222 + + 31 4 3 0 + 8 0.5 + 13 0.25 + 31 0.25 + + 46 11 2 0 + 13 0.727 + 15 0.273 + + 48 53 7 0 + 8 0.698 + 9 0.0943 + 10 0.0755 + 13 0.0566 + 14 0.0189 + 30 0.0189 + 31 0.0377 + + 49 1 1 0 + 21 1 + + 50 1 1 0 + 22 1 + + 55 16 8 0 + 3 0.0625 + 11 0.0625 + 13 0.25 + 14 0.188 + 15 0.188 + 19 0.125 + 29 0.0625 + 30 0.0625 + + 61 1 1 0 + 16 1 + + 64 6 5 0 + 7 0.333 + 11 0.167 + 13 0.167 + 14 0.167 + 21 0.167 + + 42 86 19 4 + 0 0.0116 + 4 0.0233 + 7 0.0233 + 8 0.0581 + 11 0.0233 + 13 0.0698 + 14 0.0233 + 15 0.0116 + 19 0.0116 + 21 0.0116 + 25 0.0116 + 27 0.0233 + 28 0.0116 + 29 0.0116 + 30 0.0116 + 40 0.0116 + 42 0.0116 + 46 0.0116 + 47 0.628 + + 2 6 3 0 + 8 0.333 + 13 0.333 + 27 0.333 + + 15 31 2 0 + 15 0.0323 + 47 0.968 + + 55 24 14 0 + 7 0.0833 + 8 0.0417 + 11 0.0833 + 13 0.0833 + 14 0.0833 + 21 0.0417 + 25 0.0417 + 28 0.0417 + 29 0.0417 + 30 0.0417 + 40 0.0417 + 42 0.0417 + 46 0.0417 + 47 0.292 + + 62 2 2 0 + 0 0.5 + 19 0.5 + + 43 48 9 1 + 3 0.0208 + 4 0.0208 + 8 0.0625 + 13 0.312 + 15 0.396 + 18 0.0625 + 20 0.0208 + 28 0.0208 + 40 0.0833 + + 15 13 4 0 + 4 0.0769 + 13 0.0769 + 15 0.769 + 40 0.0769 + + 44 91 19 7 + 0 0.011 + 2 0.033 + 3 0.011 + 4 0.319 + 7 0.121 + 8 0.0769 + 13 0.033 + 14 0.022 + 15 0.0879 + 20 0.0549 + 23 0.011 + 26 0.033 + 28 0.044 + 30 0.011 + 34 0.011 + 40 0.044 + 41 0.011 + 42 0.011 + 47 0.0549 + + 4 2 2 0 + 0 0.5 + 26 0.5 + + 8 10 5 0 + 4 0.4 + 7 0.2 + 8 0.2 + 26 0.1 + 40 0.1 + + 13 25 9 0 + 3 0.04 + 4 0.44 + 7 0.08 + 8 0.12 + 13 0.04 + 15 0.08 + 20 0.12 + 23 0.04 + 28 0.04 + + 15 33 12 0 + 2 0.0606 + 4 0.303 + 7 0.152 + 8 0.0303 + 13 0.0303 + 15 0.182 + 20 0.0303 + 28 0.0303 + 30 0.0303 + 34 0.0303 + 40 0.0909 + 41 0.0303 + + 19 2 2 0 + 2 0.5 + 13 0.5 + + 55 10 5 0 + 4 0.1 + 7 0.2 + 28 0.1 + 42 0.1 + 47 0.5 + + 60 2 1 0 + 14 1 + + 45 1242 32 20 + 0 0.0266 + 1 0.000805 + 2 0.0282 + 3 0.0121 + 4 0.357 + 7 0.153 + 8 0.0837 + 9 0.00242 + 10 0.00161 + 13 0.0346 + 14 0.00322 + 15 0.0225 + 18 0.0548 + 19 0.00161 + 20 0.0322 + 21 0.00483 + 22 0.000805 + 24 0.00322 + 26 0.00886 + 28 0.0242 + 29 0.0169 + 30 0.0298 + 31 0.0185 + 32 0.00242 + 33 0.0137 + 40 0.000805 + 41 0.0145 + 42 0.00805 + 44 0.00564 + 45 0.000805 + 46 0.00242 + 47 0.0298 + + 3 11 6 0 + 0 0.0909 + 2 0.0909 + 4 0.545 + 7 0.0909 + 8 0.0909 + 33 0.0909 + + 4 35 13 0 + 0 0.143 + 2 0.0286 + 4 0.0286 + 7 0.229 + 13 0.0571 + 21 0.0571 + 28 0.0857 + 29 0.0286 + 30 0.0286 + 33 0.0571 + 41 0.0857 + 42 0.0571 + 47 0.114 + + 6 4 3 0 + 2 0.25 + 4 0.5 + 42 0.25 + + 8 363 25 0 + 0 0.00826 + 2 0.00551 + 3 0.0165 + 4 0.551 + 7 0.107 + 8 0.0606 + 9 0.00275 + 10 0.00275 + 13 0.00826 + 15 0.00275 + 18 0.0468 + 19 0.00275 + 20 0.0358 + 21 0.00551 + 22 0.00275 + 24 0.00551 + 26 0.00826 + 28 0.0275 + 29 0.0193 + 30 0.0303 + 31 0.0193 + 33 0.00551 + 41 0.0138 + 42 0.00275 + 47 0.00826 + + 10 6 2 0 + 4 0.833 + 20 0.167 + + 13 292 19 0 + 2 0.0445 + 3 0.00685 + 4 0.5 + 7 0.0616 + 8 0.12 + 9 0.00342 + 13 0.0753 + 14 0.00685 + 15 0.0103 + 18 0.0651 + 20 0.0342 + 26 0.00685 + 28 0.00685 + 29 0.00342 + 30 0.0103 + 31 0.0205 + 41 0.00342 + 46 0.0103 + 47 0.0103 + + 14 68 17 0 + 0 0.0147 + 2 0.0294 + 3 0.0147 + 4 0.103 + 7 0.0588 + 8 0.338 + 9 0.0147 + 10 0.0147 + 13 0.162 + 15 0.0147 + 18 0.118 + 19 0.0147 + 20 0.0294 + 28 0.0294 + 30 0.0147 + 31 0.0147 + 33 0.0147 + + 15 97 14 0 + 2 0.0103 + 3 0.0103 + 4 0.34 + 7 0.0412 + 8 0.0928 + 13 0.0309 + 15 0.196 + 18 0.134 + 20 0.0412 + 31 0.0103 + 33 0.0103 + 40 0.0103 + 44 0.0103 + 47 0.0619 + + 16 3 3 0 + 8 0.333 + 20 0.333 + 29 0.333 + + 20 6 5 0 + 4 0.167 + 7 0.333 + 8 0.167 + 18 0.167 + 33 0.167 + + 21 5 5 0 + 4 0.2 + 7 0.2 + 24 0.2 + 29 0.2 + 33 0.2 + + 22 2 2 0 + 20 0.5 + 26 0.5 + + 27 4 3 0 + 2 0.5 + 30 0.25 + 32 0.25 + + 30 6 3 0 + 4 0.667 + 7 0.167 + 31 0.167 + + 31 8 6 0 + 0 0.125 + 8 0.25 + 18 0.25 + 20 0.125 + 29 0.125 + 31 0.125 + + 48 28 9 0 + 0 0.0714 + 4 0.5 + 7 0.179 + 8 0.0357 + 13 0.0357 + 18 0.0357 + 29 0.0357 + 30 0.0714 + 31 0.0357 + + 54 10 7 0 + 0 0.1 + 2 0.1 + 3 0.1 + 4 0.2 + 15 0.2 + 18 0.2 + 20 0.1 + + 55 237 25 0 + 0 0.0717 + 1 0.00422 + 2 0.0422 + 3 0.00844 + 4 0.00844 + 7 0.409 + 8 0.00422 + 13 0.00422 + 14 0.00422 + 15 0.00844 + 18 0.00422 + 21 0.00422 + 24 0.00422 + 26 0.0211 + 28 0.0549 + 29 0.0338 + 30 0.0759 + 31 0.0211 + 32 0.00844 + 33 0.0338 + 41 0.038 + 42 0.0211 + 44 0.0211 + 45 0.00422 + 47 0.0886 + + 56 22 6 0 + 3 0.0455 + 4 0.364 + 8 0.318 + 18 0.0909 + 20 0.136 + 21 0.0455 + + 62 21 8 0 + 0 0.0952 + 3 0.0476 + 4 0.286 + 7 0.333 + 14 0.0476 + 20 0.0952 + 42 0.0476 + 44 0.0476 + + 46 382 21 10 + 3 0.0105 + 6 0.00524 + 8 0.387 + 9 0.00262 + 10 0.00524 + 13 0.304 + 14 0.0183 + 15 0.162 + 16 0.0105 + 18 0.00524 + 19 0.00524 + 21 0.00262 + 27 0.00262 + 28 0.00785 + 29 0.00262 + 30 0.0131 + 31 0.0157 + 40 0.00524 + 41 0.0288 + 46 0.00262 + 47 0.00262 + + 2 14 5 0 + 13 0.643 + 14 0.143 + 15 0.0714 + 41 0.0714 + 47 0.0714 + + 3 2 2 0 + 9 0.5 + 15 0.5 + + 8 15 5 0 + 6 0.0667 + 8 0.467 + 13 0.333 + 28 0.0667 + 31 0.0667 + + 13 206 14 0 + 3 0.00971 + 8 0.422 + 10 0.00485 + 13 0.325 + 14 0.0146 + 15 0.136 + 16 0.0146 + 18 0.00971 + 19 0.00971 + 27 0.00485 + 28 0.00971 + 30 0.0194 + 31 0.0146 + 46 0.00485 + + 14 99 11 0 + 3 0.0202 + 6 0.0101 + 8 0.495 + 10 0.0101 + 13 0.333 + 14 0.0202 + 15 0.0606 + 16 0.0101 + 21 0.0101 + 29 0.0101 + 31 0.0202 + + 15 30 5 0 + 8 0.1 + 13 0.0667 + 15 0.767 + 30 0.0333 + 40 0.0333 + + 45 3 1 0 + 41 1 + + 48 1 1 0 + 40 1 + + 55 6 1 0 + 41 1 + + 58 3 1 0 + 15 1 + + 47 311752 45 53 + 0 0.0388 + 1 0.0005 + 2 0.0469 + 3 0.00405 + 4 0.00179 + 5 1.6e-05 + 6 7.7e-05 + 7 0.382 + 8 0.00254 + 9 0.000189 + 10 9.3e-05 + 12 0.000388 + 13 0.0121 + 14 0.00672 + 15 0.00325 + 16 0.000112 + 17 0.000106 + 18 0.000202 + 19 0.00157 + 20 7.7e-05 + 21 0.0104 + 22 0.00016 + 23 1.28e-05 + 24 0.00627 + 25 3.85e-05 + 26 0.0366 + 27 6.42e-06 + 28 0.0599 + 29 0.0565 + 30 0.0332 + 31 0.0151 + 32 0.0125 + 33 0.026 + 34 0.00184 + 35 0.00141 + 36 1.92e-05 + 37 0.00624 + 40 9.94e-05 + 41 0.0842 + 42 0.0135 + 43 0.00033 + 44 0.00341 + 45 0.0148 + 46 0.00455 + 47 0.111 + + 0 3 3 0 + 7 0.333 + 14 0.333 + 44 0.333 + + 2 61 15 0 + 0 0.0656 + 2 0.0328 + 7 0.344 + 21 0.0164 + 26 0.0164 + 29 0.0164 + 30 0.0492 + 32 0.0164 + 33 0.0328 + 34 0.0164 + 41 0.0984 + 42 0.0492 + 44 0.0164 + 45 0.0164 + 47 0.213 + + 3 11856 34 0 + 0 0.0347 + 1 0.000422 + 2 0.066 + 3 0.000506 + 4 0.000759 + 7 0.359 + 8 0.00793 + 13 0.038 + 14 0.00506 + 15 0.00793 + 16 8.43e-05 + 18 0.000169 + 19 0.0011 + 21 0.038 + 24 0.00371 + 25 8.43e-05 + 26 0.083 + 28 0.0361 + 29 0.134 + 30 0.0172 + 31 0.0135 + 32 0.00472 + 33 0.0179 + 34 0.0016 + 35 0.000253 + 37 0.00118 + 40 0.000253 + 41 0.0499 + 42 0.0328 + 43 0.000843 + 44 0.00321 + 45 0.00346 + 46 0.00118 + 47 0.0361 + + 4 79613 41 0 + 0 0.0484 + 1 0.000754 + 2 0.0331 + 3 0.013 + 4 0.000666 + 5 2.51e-05 + 6 2.51e-05 + 7 0.404 + 8 0.00131 + 9 0.000214 + 10 7.54e-05 + 12 0.000415 + 13 0.0103 + 14 0.0123 + 15 0.0024 + 16 0.0001 + 17 0.000301 + 18 1.26e-05 + 19 0.00236 + 21 0.0111 + 22 0.000377 + 23 1.26e-05 + 24 0.00705 + 26 0.0314 + 28 0.0638 + 29 0.0519 + 30 0.0339 + 31 0.0147 + 32 0.0126 + 33 0.0216 + 34 0.00148 + 35 0.00126 + 37 0.00661 + 40 5.02e-05 + 41 0.0806 + 42 0.00671 + 43 0.000427 + 44 0.00117 + 45 0.0121 + 46 0.00315 + 47 0.108 + + 5 861 24 0 + 0 0.00581 + 2 0.0918 + 7 0.18 + 8 0.00465 + 10 0.00348 + 13 0.0186 + 14 0.00465 + 15 0.00232 + 16 0.00116 + 19 0.00232 + 21 0.029 + 28 0.0163 + 29 0.0395 + 30 0.00465 + 31 0.00232 + 32 0.0279 + 33 0.0151 + 34 0.00813 + 37 0.0267 + 41 0.143 + 42 0.00813 + 44 0.00232 + 45 0.167 + 47 0.195 + + 6 48 13 0 + 2 0.0208 + 4 0.0208 + 7 0.375 + 19 0.0208 + 25 0.0417 + 26 0.0417 + 28 0.0417 + 29 0.0208 + 32 0.0208 + 33 0.0208 + 41 0.104 + 45 0.125 + 47 0.146 + + 7 266 22 0 + 0 0.0526 + 2 0.0376 + 3 0.00376 + 7 0.18 + 8 0.0113 + 10 0.00376 + 13 0.147 + 14 0.105 + 15 0.015 + 21 0.0188 + 26 0.0338 + 28 0.0639 + 29 0.0489 + 30 0.0263 + 31 0.0263 + 32 0.0113 + 33 0.0301 + 35 0.00376 + 41 0.0564 + 42 0.0113 + 45 0.0113 + 47 0.102 + + 8 19385 39 0 + 0 0.0334 + 1 0.000464 + 2 0.0742 + 3 0.00284 + 4 0.00212 + 6 0.000258 + 7 0.434 + 8 0.00175 + 9 5.16e-05 + 12 0.000155 + 13 0.0156 + 14 0.00655 + 15 0.00542 + 16 0.000206 + 18 0.000516 + 19 0.00119 + 20 5.16e-05 + 21 0.00774 + 22 0.000155 + 24 0.00665 + 25 5.16e-05 + 26 0.0329 + 28 0.0675 + 29 0.0412 + 30 0.0447 + 31 0.0181 + 32 0.0144 + 33 0.0214 + 34 0.0016 + 35 0.000516 + 36 0.000103 + 37 0.00464 + 41 0.0594 + 42 0.00645 + 43 0.000258 + 44 0.00165 + 45 0.0122 + 46 0.000413 + 47 0.0797 + + 9 1078 30 0 + 0 0.0891 + 1 0.00186 + 2 0.0714 + 3 0.000928 + 4 0.000928 + 7 0.286 + 8 0.00371 + 12 0.000928 + 13 0.00278 + 14 0.00742 + 15 0.00371 + 16 0.000928 + 18 0.00278 + 19 0.00371 + 21 0.0111 + 24 0.00928 + 26 0.0427 + 28 0.151 + 29 0.0584 + 30 0.0826 + 31 0.0139 + 32 0.0408 + 33 0.0362 + 34 0.000928 + 37 0.000928 + 41 0.0288 + 42 0.00464 + 43 0.000928 + 45 0.0121 + 47 0.0297 + + 10 467 25 0 + 0 0.00642 + 2 0.0814 + 3 0.00214 + 4 0.00642 + 7 0.343 + 8 0.00214 + 13 0.00642 + 14 0.00214 + 19 0.00214 + 21 0.00857 + 24 0.015 + 26 0.0107 + 28 0.0343 + 29 0.0493 + 30 0.0214 + 31 0.00857 + 32 0.0107 + 33 0.0236 + 34 0.00428 + 35 0.00428 + 37 0.00857 + 41 0.0814 + 42 0.00857 + 45 0.045 + 47 0.214 + + 12 2 2 0 + 45 0.5 + 46 0.5 + + 13 22292 40 0 + 0 0.0312 + 1 0.000718 + 2 0.0474 + 3 0.000942 + 4 0.00493 + 7 0.47 + 8 0.00287 + 9 0.000449 + 10 8.97e-05 + 12 0.000224 + 13 0.0139 + 14 0.00453 + 15 0.00359 + 16 0.000135 + 18 0.000224 + 19 0.00144 + 20 4.49e-05 + 21 0.00763 + 22 8.97e-05 + 24 0.00574 + 25 8.97e-05 + 26 0.0302 + 27 4.49e-05 + 28 0.0663 + 29 0.0343 + 30 0.0394 + 31 0.0156 + 32 0.012 + 33 0.0202 + 34 0.00112 + 35 0.000538 + 37 0.00529 + 40 4.49e-05 + 41 0.0834 + 42 0.00745 + 43 0.000179 + 44 0.00242 + 45 0.0131 + 46 0.00112 + 47 0.0713 + + 14 14611 37 0 + 0 0.0223 + 1 0.000342 + 2 0.0463 + 3 0.000137 + 4 0.0011 + 6 6.84e-05 + 7 0.397 + 8 0.0024 + 9 0.000274 + 10 6.84e-05 + 12 0.000274 + 13 0.00609 + 14 0.00342 + 15 0.000342 + 18 0.000274 + 19 0.000753 + 21 0.00527 + 22 6.84e-05 + 24 0.00862 + 26 0.0357 + 28 0.0862 + 29 0.0426 + 30 0.0557 + 31 0.0153 + 32 0.0201 + 33 0.0203 + 34 0.00356 + 35 0.000958 + 37 0.0112 + 40 0.000137 + 41 0.0757 + 42 0.00897 + 43 0.000205 + 44 0.00103 + 45 0.0125 + 46 0.000958 + 47 0.114 + + 15 39318 40 0 + 0 0.00677 + 1 0.000102 + 2 0.0486 + 3 0.00145 + 4 0.00305 + 6 0.000178 + 7 0.372 + 8 0.00542 + 9 0.000203 + 10 7.63e-05 + 12 0.000153 + 13 0.0124 + 14 0.0032 + 15 0.0044 + 16 5.09e-05 + 18 0.000382 + 19 0.000254 + 20 0.000254 + 21 0.00387 + 24 0.0017 + 25 2.54e-05 + 26 0.0255 + 28 0.0202 + 29 0.0393 + 30 0.0134 + 31 0.011 + 32 0.00471 + 33 0.0302 + 34 0.00231 + 35 0.00112 + 36 5.09e-05 + 37 0.0056 + 40 0.000203 + 41 0.14 + 42 0.0104 + 43 0.000102 + 44 0.00972 + 45 0.00946 + 46 0.01 + 47 0.202 + + 16 399 24 0 + 0 0.0125 + 2 0.0501 + 4 0.00752 + 7 0.421 + 8 0.00251 + 13 0.00752 + 14 0.00501 + 15 0.00251 + 20 0.00251 + 21 0.01 + 26 0.0251 + 28 0.0301 + 29 0.00752 + 30 0.0226 + 31 0.00501 + 32 0.00251 + 33 0.015 + 34 0.00251 + 37 0.00752 + 41 0.115 + 42 0.0125 + 44 0.00752 + 45 0.0276 + 47 0.198 + + 17 312 24 0 + 0 0.0609 + 1 0.00321 + 2 0.0449 + 7 0.372 + 8 0.00321 + 9 0.00321 + 13 0.00641 + 14 0.00641 + 15 0.00321 + 19 0.00641 + 21 0.00962 + 24 0.00962 + 26 0.0224 + 28 0.106 + 29 0.0513 + 30 0.0513 + 31 0.0385 + 32 0.016 + 33 0.0224 + 37 0.0128 + 41 0.0417 + 42 0.00321 + 45 0.0192 + 47 0.0865 + + 18 4 1 0 + 28 1 + + 19 17392 39 0 + 0 0.00949 + 1 0.000115 + 2 0.0515 + 3 0.00138 + 4 0.00149 + 5 5.75e-05 + 7 0.171 + 8 0.00477 + 9 0.000402 + 10 0.000575 + 12 0.00305 + 13 0.0331 + 14 0.0155 + 15 0.00385 + 16 0.00023 + 19 0.00161 + 21 0.0166 + 22 0.000402 + 23 5.75e-05 + 24 0.000115 + 26 0.00638 + 27 5.75e-05 + 28 0.0544 + 29 0.101 + 30 0.0205 + 31 0.0106 + 32 0.0237 + 33 0.0277 + 34 0.00862 + 35 0.0122 + 37 0.0274 + 40 5.75e-05 + 41 0.12 + 42 0.011 + 43 0.000517 + 44 0.00149 + 45 0.0877 + 46 0.0316 + 47 0.14 + + 20 8301 36 0 + 0 0.0153 + 1 0.000361 + 2 0.0496 + 3 0.000361 + 4 0.00422 + 7 0.429 + 8 0.00169 + 9 0.000241 + 10 0.00012 + 12 0.000241 + 13 0.00361 + 14 0.00108 + 15 0.00133 + 16 0.00012 + 17 0.00012 + 18 0.000241 + 19 0.000241 + 21 0.00675 + 24 0.017 + 26 0.0359 + 28 0.136 + 29 0.0916 + 30 0.0543 + 31 0.0223 + 32 0.0141 + 33 0.026 + 34 0.000723 + 35 0.00145 + 37 0.00638 + 41 0.0253 + 42 0.00446 + 43 0.00012 + 44 0.000602 + 45 0.00904 + 46 0.00133 + 47 0.0385 + + 21 1441 29 0 + 0 0.12 + 1 0.00208 + 2 0.0625 + 3 0.00625 + 4 0.00208 + 7 0.237 + 8 0.00278 + 12 0.000694 + 13 0.0437 + 14 0.0278 + 15 0.0153 + 19 0.00278 + 21 0.0396 + 24 0.00763 + 26 0.00902 + 28 0.0472 + 29 0.0402 + 30 0.0194 + 31 0.0222 + 32 0.0104 + 33 0.0285 + 34 0.00486 + 37 0.00625 + 41 0.0861 + 42 0.0201 + 44 0.00347 + 45 0.0146 + 46 0.00139 + 47 0.116 + + 22 181 22 0 + 0 0.0442 + 2 0.0221 + 3 0.00552 + 7 0.0663 + 8 0.0166 + 13 0.166 + 14 0.0663 + 15 0.0718 + 16 0.00552 + 19 0.00552 + 21 0.0331 + 24 0.0166 + 26 0.00552 + 28 0.0331 + 29 0.0718 + 30 0.0331 + 31 0.0718 + 32 0.011 + 33 0.0276 + 41 0.0166 + 45 0.00552 + 47 0.204 + + 23 35 9 0 + 0 0.0571 + 2 0.143 + 7 0.314 + 13 0.0571 + 29 0.0286 + 32 0.0286 + 33 0.0286 + 41 0.114 + 47 0.229 + + 24 2 2 0 + 22 0.5 + 24 0.5 + + 25 13 2 0 + 42 0.0769 + 47 0.923 + + 27 3 3 0 + 0 0.333 + 26 0.333 + 30 0.333 + + 28 113 18 0 + 0 0.0354 + 2 0.0708 + 7 0.0177 + 12 0.00885 + 14 0.00885 + 19 0.00885 + 21 0.00885 + 26 0.513 + 28 0.106 + 30 0.0265 + 32 0.00885 + 34 0.00885 + 35 0.00885 + 41 0.00885 + 42 0.0265 + 44 0.0177 + 45 0.0442 + 47 0.0708 + + 29 19 7 0 + 2 0.263 + 7 0.0526 + 13 0.0526 + 15 0.0526 + 31 0.0526 + 41 0.421 + 42 0.105 + + 30 714 22 0 + 0 0.0154 + 2 0.0868 + 7 0.51 + 8 0.0014 + 13 0.0028 + 14 0.0028 + 19 0.0014 + 21 0.0028 + 24 0.0098 + 26 0.0308 + 28 0.0672 + 29 0.0308 + 30 0.0336 + 31 0.0084 + 32 0.0112 + 33 0.0224 + 37 0.007 + 41 0.0714 + 42 0.007 + 43 0.0014 + 45 0.0042 + 47 0.0714 + + 31 540 22 0 + 0 0.0278 + 2 0.0722 + 4 0.00185 + 7 0.419 + 13 0.0037 + 14 0.00185 + 15 0.00556 + 21 0.0111 + 24 0.0111 + 26 0.0519 + 28 0.063 + 29 0.0296 + 30 0.0685 + 31 0.00556 + 32 0.00926 + 33 0.0241 + 37 0.00185 + 41 0.0556 + 42 0.0407 + 43 0.0037 + 45 0.00741 + 47 0.0852 + + 32 6 3 0 + 7 0.667 + 15 0.167 + 41 0.167 + + 33 18 9 0 + 0 0.167 + 2 0.278 + 7 0.111 + 19 0.111 + 21 0.0556 + 32 0.0556 + 41 0.111 + 42 0.0556 + 44 0.0556 + + 34 67 17 0 + 2 0.0448 + 7 0.104 + 8 0.0299 + 13 0.0149 + 14 0.0299 + 15 0.0149 + 28 0.0149 + 30 0.0149 + 32 0.0149 + 33 0.0149 + 35 0.0149 + 37 0.0149 + 41 0.403 + 42 0.0448 + 45 0.0149 + 46 0.0149 + 47 0.194 + + 35 8 6 0 + 0 0.125 + 2 0.125 + 26 0.125 + 28 0.125 + 33 0.125 + 47 0.375 + + 36 7 3 0 + 13 0.143 + 14 0.143 + 41 0.714 + + 37 4 3 0 + 7 0.25 + 28 0.5 + 33 0.25 + + 38 13 6 0 + 7 0.308 + 24 0.0769 + 26 0.385 + 28 0.0769 + 29 0.0769 + 33 0.0769 + + 39 1743 25 0 + 0 0.0298 + 2 0.197 + 4 0.000574 + 6 0.00115 + 7 0.402 + 8 0.00344 + 13 0.00229 + 14 0.00172 + 15 0.00287 + 19 0.00172 + 20 0.000574 + 21 0.0384 + 24 0.00229 + 26 0.124 + 28 0.0218 + 29 0.0671 + 30 0.012 + 31 0.0103 + 32 0.00229 + 33 0.00631 + 41 0.0189 + 42 0.0143 + 43 0.000574 + 44 0.0361 + 47 0.00229 + + 41 2 2 0 + 0 0.5 + 3 0.5 + + 42 57 4 0 + 14 0.0175 + 40 0.0175 + 42 0.0175 + 47 0.947 + + 44 39 13 0 + 0 0.0256 + 2 0.0769 + 4 0.0256 + 7 0.282 + 14 0.0513 + 15 0.0513 + 26 0.0769 + 28 0.103 + 34 0.0256 + 40 0.103 + 41 0.0256 + 42 0.0256 + 47 0.128 + + 45 468 24 0 + 0 0.0662 + 1 0.00214 + 2 0.0491 + 3 0.00427 + 7 0.404 + 13 0.0128 + 14 0.00427 + 15 0.00427 + 18 0.00427 + 19 0.00214 + 21 0.00427 + 24 0.00855 + 26 0.0235 + 28 0.0641 + 29 0.0449 + 30 0.0726 + 31 0.0406 + 32 0.00641 + 33 0.0363 + 41 0.0299 + 42 0.0192 + 44 0.015 + 45 0.00214 + 47 0.0791 + + 48 1258 29 0 + 0 0.0819 + 1 0.000795 + 2 0.0429 + 4 0.00238 + 7 0.431 + 13 0.00477 + 14 0.00159 + 15 0.00238 + 18 0.000795 + 19 0.00238 + 21 0.0127 + 23 0.000795 + 24 0.00477 + 25 0.00159 + 26 0.0334 + 28 0.0787 + 29 0.0437 + 30 0.0437 + 31 0.0151 + 32 0.0207 + 33 0.0231 + 35 0.000795 + 36 0.000795 + 37 0.00397 + 41 0.0453 + 42 0.0167 + 45 0.0175 + 46 0.000795 + 47 0.0652 + + 49 116 18 0 + 0 0.0776 + 2 0.0776 + 3 0.0172 + 7 0.241 + 13 0.0517 + 14 0.00862 + 21 0.00862 + 26 0.00862 + 28 0.0517 + 29 0.0431 + 30 0.0345 + 31 0.0345 + 32 0.00862 + 34 0.00862 + 41 0.284 + 42 0.0259 + 46 0.00862 + 47 0.00862 + + 50 10 7 0 + 0 0.2 + 14 0.1 + 28 0.1 + 29 0.1 + 30 0.2 + 33 0.2 + 42 0.1 + + 53 7 4 0 + 2 0.143 + 7 0.143 + 42 0.429 + 47 0.286 + + 54 72 13 0 + 0 0.0139 + 2 0.0556 + 4 0.0139 + 7 0.417 + 26 0.0417 + 28 0.0278 + 29 0.0278 + 30 0.0139 + 33 0.0278 + 34 0.0139 + 41 0.111 + 46 0.0139 + 47 0.222 + + 55 80263 43 0 + 0 0.0575 + 1 0.000536 + 2 0.0458 + 3 0.000461 + 4 0.00156 + 5 2.49e-05 + 6 8.72e-05 + 7 0.377 + 8 0.00127 + 9 9.97e-05 + 10 2.49e-05 + 12 0.00015 + 13 0.00471 + 14 0.00257 + 15 0.00239 + 16 9.97e-05 + 17 9.97e-05 + 18 0.000174 + 19 0.00179 + 20 0.000125 + 21 0.00893 + 22 6.23e-05 + 24 0.00776 + 25 3.74e-05 + 26 0.0369 + 28 0.0637 + 29 0.0564 + 30 0.0373 + 31 0.0168 + 32 0.0133 + 33 0.0337 + 34 0.000648 + 35 0.000336 + 36 1.25e-05 + 37 0.00262 + 40 8.72e-05 + 41 0.0805 + 42 0.0217 + 43 0.000336 + 44 0.00209 + 45 0.00795 + 46 0.00182 + 47 0.111 + + 57 11 7 0 + 2 0.273 + 24 0.0909 + 28 0.182 + 33 0.182 + 41 0.0909 + 42 0.0909 + 44 0.0909 + + 58 14 6 0 + 0 0.0714 + 2 0.0714 + 7 0.643 + 28 0.0714 + 31 0.0714 + 41 0.0714 + + 60 8061 34 0 + 0 0.0514 + 1 0.000124 + 2 0.0294 + 3 0.000496 + 4 0.00062 + 7 0.386 + 8 0.00248 + 9 0.000124 + 13 0.016 + 14 0.00657 + 15 0.00385 + 16 0.000124 + 18 0.000496 + 19 0.00124 + 21 0.0112 + 22 0.000124 + 23 0.000124 + 24 0.00844 + 26 0.154 + 28 0.0624 + 29 0.08 + 30 0.0249 + 31 0.02 + 32 0.00893 + 33 0.0238 + 34 0.000744 + 37 0.00211 + 41 0.0215 + 42 0.0383 + 43 0.000124 + 44 0.0203 + 45 0.00136 + 46 0.000248 + 47 0.0226 + + 62 34 6 0 + 7 0.647 + 26 0.0882 + 30 0.0294 + 42 0.0294 + 45 0.0588 + 47 0.147 + + 64 40 15 0 + 0 0.1 + 2 0.025 + 7 0.2 + 13 0.025 + 19 0.05 + 24 0.025 + 26 0.05 + 28 0.1 + 29 0.05 + 30 0.025 + 31 0.075 + 33 0.075 + 41 0.1 + 45 0.075 + 47 0.025 + + 68 95 14 0 + 0 0.0105 + 2 0.0211 + 7 0.516 + 21 0.0105 + 26 0.0421 + 28 0.0737 + 29 0.0105 + 30 0.0632 + 31 0.0105 + 32 0.0211 + 33 0.0632 + 41 0.0211 + 42 0.0211 + 47 0.116 + + 48 4567 37 18 + 0 0.0274 + 1 0.000219 + 2 0.0125 + 3 0.0103 + 4 0.53 + 7 0.119 + 8 0.0458 + 9 0.00153 + 10 0.000438 + 13 0.00613 + 14 0.000438 + 15 0.0101 + 16 0.000219 + 18 0.0469 + 19 0.00153 + 20 0.0405 + 21 0.00504 + 22 0.000876 + 23 0.000219 + 24 0.00131 + 25 0.000438 + 26 0.0092 + 28 0.0217 + 29 0.0123 + 30 0.0138 + 31 0.00963 + 32 0.00569 + 33 0.00635 + 35 0.000219 + 36 0.000438 + 37 0.00109 + 40 0.000219 + 41 0.0243 + 42 0.0046 + 45 0.0109 + 46 0.000438 + 47 0.018 + + 3 17 2 0 + 4 0.941 + 18 0.0588 + + 4 16 7 0 + 0 0.375 + 7 0.125 + 21 0.188 + 28 0.0625 + 32 0.125 + 37 0.0625 + 45 0.0625 + + 8 500 23 0 + 0 0.03 + 2 0.016 + 3 0.024 + 4 0.448 + 7 0.148 + 8 0.034 + 13 0.014 + 15 0.006 + 18 0.058 + 20 0.064 + 22 0.002 + 26 0.008 + 28 0.012 + 29 0.016 + 30 0.012 + 31 0.02 + 32 0.004 + 33 0.016 + 35 0.002 + 41 0.036 + 42 0.014 + 45 0.004 + 47 0.012 + + 9 5 4 0 + 2 0.2 + 4 0.4 + 7 0.2 + 30 0.2 + + 13 2669 34 0 + 0 0.0217 + 1 0.000375 + 2 0.00712 + 3 0.0045 + 4 0.651 + 7 0.0573 + 8 0.0476 + 9 0.00225 + 10 0.000375 + 13 0.00525 + 14 0.000749 + 15 0.00599 + 18 0.0555 + 19 0.00187 + 20 0.0412 + 21 0.00337 + 22 0.000749 + 23 0.000375 + 24 0.00112 + 25 0.000375 + 26 0.00599 + 28 0.0139 + 29 0.0109 + 30 0.0105 + 31 0.00974 + 32 0.003 + 33 0.003 + 36 0.000749 + 40 0.000375 + 41 0.0161 + 42 0.00187 + 45 0.00599 + 46 0.000749 + 47 0.00862 + + 14 854 30 0 + 0 0.0457 + 2 0.0269 + 3 0.0234 + 4 0.196 + 7 0.292 + 8 0.0679 + 9 0.00117 + 10 0.00117 + 13 0.00468 + 15 0.0304 + 16 0.00117 + 18 0.0222 + 19 0.00117 + 20 0.0293 + 21 0.0082 + 22 0.00117 + 24 0.00351 + 25 0.00117 + 26 0.0152 + 28 0.0504 + 29 0.0222 + 30 0.0258 + 31 0.0082 + 32 0.0129 + 33 0.0141 + 37 0.00351 + 41 0.0293 + 42 0.0082 + 45 0.0152 + 47 0.0386 + + 15 246 19 0 + 0 0.0122 + 2 0.0203 + 3 0.00813 + 4 0.537 + 7 0.142 + 8 0.0122 + 13 0.00407 + 15 0.00407 + 18 0.0407 + 20 0.0325 + 21 0.00407 + 26 0.0285 + 28 0.0163 + 30 0.0163 + 32 0.00813 + 33 0.00407 + 37 0.00407 + 41 0.0407 + 47 0.065 + + 16 8 5 0 + 4 0.25 + 7 0.375 + 26 0.125 + 41 0.125 + 47 0.125 + + 18 2 1 0 + 13 1 + + 30 11 5 0 + 4 0.545 + 7 0.0909 + 20 0.182 + 28 0.0909 + 45 0.0909 + + 31 14 5 0 + 4 0.429 + 7 0.214 + 18 0.143 + 20 0.143 + 42 0.0714 + + 41 40 10 0 + 2 0.025 + 3 0.025 + 4 0.55 + 7 0.075 + 18 0.05 + 20 0.075 + 21 0.025 + 30 0.025 + 41 0.125 + 47 0.025 + + 46 19 2 0 + 4 0.158 + 45 0.842 + + 47 89 12 0 + 0 0.0225 + 4 0.753 + 7 0.0674 + 8 0.0112 + 19 0.0112 + 20 0.0112 + 21 0.0225 + 28 0.0562 + 30 0.0112 + 31 0.0112 + 32 0.0112 + 41 0.0112 + + 48 29 9 0 + 0 0.069 + 4 0.414 + 7 0.069 + 18 0.0345 + 20 0.0345 + 26 0.0345 + 28 0.0345 + 41 0.276 + 45 0.0345 + + 55 7 5 0 + 4 0.286 + 7 0.286 + 20 0.143 + 28 0.143 + 47 0.143 + + 56 9 4 0 + 4 0.444 + 7 0.333 + 8 0.111 + 47 0.111 + + 58 6 4 0 + 4 0.333 + 7 0.333 + 8 0.167 + 42 0.167 + + 49 130 21 9 + 0 0.0692 + 2 0.0769 + 3 0.0154 + 4 0.0615 + 7 0.215 + 13 0.0462 + 14 0.00769 + 18 0.00769 + 21 0.0231 + 26 0.00769 + 28 0.0462 + 29 0.0385 + 30 0.0308 + 31 0.0308 + 32 0.00769 + 34 0.00769 + 41 0.262 + 42 0.0231 + 45 0.00769 + 46 0.00769 + 47 0.00769 + + 3 7 3 0 + 7 0.429 + 30 0.143 + 41 0.429 + + 4 51 12 0 + 0 0.0588 + 2 0.118 + 7 0.294 + 13 0.118 + 28 0.0588 + 29 0.0392 + 30 0.0392 + 31 0.0588 + 32 0.0196 + 41 0.157 + 42 0.0196 + 47 0.0196 + + 8 6 4 0 + 7 0.5 + 28 0.167 + 29 0.167 + 31 0.167 + + 13 19 10 0 + 0 0.0526 + 4 0.368 + 7 0.158 + 14 0.0526 + 28 0.0526 + 29 0.0526 + 30 0.0526 + 41 0.105 + 42 0.0526 + 45 0.0526 + + 14 4 4 0 + 4 0.25 + 7 0.25 + 26 0.25 + 29 0.25 + + 15 5 3 0 + 18 0.2 + 41 0.6 + 42 0.2 + + 41 3 2 0 + 3 0.667 + 7 0.333 + + 47 1 1 0 + 34 1 + + 55 29 7 0 + 0 0.138 + 2 0.138 + 7 0.069 + 21 0.069 + 28 0.0345 + 41 0.517 + 46 0.0345 + + 50 14 10 0 + 0 0.143 + 14 0.143 + 15 0.0714 + 28 0.0714 + 29 0.0714 + 30 0.143 + 32 0.0714 + 33 0.143 + 41 0.0714 + 42 0.0714 + + 53 7 4 0 + 2 0.143 + 7 0.143 + 42 0.429 + 47 0.286 + + 54 390 20 6 + 0 0.00256 + 2 0.0154 + 3 0.0282 + 4 0.618 + 7 0.0769 + 8 0.0359 + 13 0.00256 + 15 0.0128 + 18 0.0308 + 20 0.059 + 26 0.00769 + 28 0.00513 + 29 0.00513 + 30 0.00256 + 33 0.00513 + 34 0.00256 + 41 0.0205 + 45 0.0256 + 46 0.00256 + 47 0.041 + + 8 28 2 0 + 3 0.0714 + 4 0.929 + + 13 239 11 0 + 2 0.00418 + 3 0.0167 + 4 0.762 + 7 0.0251 + 8 0.0418 + 15 0.00837 + 18 0.046 + 20 0.0753 + 33 0.00837 + 41 0.00837 + 47 0.00418 + + 14 26 8 0 + 2 0.0769 + 3 0.115 + 4 0.462 + 18 0.0385 + 20 0.115 + 28 0.0385 + 41 0.0385 + 47 0.115 + + 15 74 17 0 + 0 0.0135 + 2 0.0405 + 3 0.027 + 4 0.189 + 7 0.27 + 8 0.0541 + 13 0.0135 + 15 0.0405 + 26 0.027 + 28 0.0135 + 29 0.027 + 30 0.0135 + 34 0.0135 + 41 0.0676 + 45 0.027 + 46 0.0135 + 47 0.149 + + 18 3 2 0 + 7 0.667 + 26 0.333 + + 46 8 1 0 + 45 1 + + 55 80957 43 26 + 0 0.057 + 1 0.000531 + 2 0.0461 + 3 0.000581 + 4 0.00351 + 5 2.47e-05 + 6 8.65e-05 + 7 0.374 + 8 0.00166 + 9 9.88e-05 + 10 4.94e-05 + 12 0.000148 + 13 0.00473 + 14 0.00267 + 15 0.00241 + 16 9.88e-05 + 17 0.000371 + 18 0.000259 + 19 0.00178 + 20 0.000259 + 21 0.00965 + 22 7.41e-05 + 24 0.0077 + 25 3.71e-05 + 26 0.0366 + 28 0.0632 + 29 0.0559 + 30 0.037 + 31 0.0167 + 32 0.0131 + 33 0.0334 + 34 0.000642 + 35 0.000334 + 36 1.24e-05 + 37 0.00259 + 40 8.65e-05 + 41 0.0801 + 42 0.0218 + 43 0.000371 + 44 0.0022 + 45 0.0108 + 46 0.00188 + 47 0.11 + + 0 4 4 0 + 7 0.25 + 29 0.25 + 30 0.25 + 32 0.25 + + 2 4 3 0 + 4 0.25 + 7 0.5 + 47 0.25 + + 3 137 16 0 + 0 0.0073 + 2 0.0146 + 7 0.577 + 13 0.0073 + 14 0.0146 + 24 0.0146 + 26 0.0292 + 28 0.0438 + 29 0.0365 + 30 0.0073 + 31 0.0073 + 32 0.0438 + 33 0.0365 + 34 0.0073 + 41 0.0803 + 47 0.073 + + 4 2 2 0 + 13 0.5 + 26 0.5 + + 8 1730 27 0 + 0 0.0254 + 2 0.0353 + 3 0.00116 + 4 0.00578 + 7 0.478 + 8 0.000578 + 9 0.000578 + 13 0.00347 + 18 0.00116 + 21 0.00925 + 24 0.00925 + 26 0.0364 + 28 0.0572 + 29 0.041 + 30 0.0272 + 31 0.00925 + 32 0.00578 + 33 0.0168 + 34 0.00116 + 35 0.00173 + 37 0.00173 + 41 0.102 + 42 0.00694 + 44 0.000578 + 45 0.00347 + 46 0.00347 + 47 0.115 + + 9 15 7 0 + 7 0.467 + 26 0.0667 + 28 0.0667 + 29 0.0667 + 31 0.0667 + 33 0.0667 + 41 0.2 + + 10 202 18 0 + 0 0.114 + 2 0.0248 + 3 0.00495 + 7 0.347 + 15 0.00495 + 20 0.00495 + 21 0.0248 + 24 0.00495 + 26 0.00495 + 28 0.0248 + 29 0.0198 + 30 0.0347 + 31 0.0198 + 32 0.00495 + 33 0.00495 + 41 0.262 + 42 0.0099 + 47 0.0842 + + 13 3620 33 0 + 0 0.0177 + 2 0.0282 + 3 0.0011 + 4 0.0113 + 7 0.41 + 8 0.00414 + 10 0.000276 + 13 0.00249 + 14 0.00166 + 15 0.00138 + 17 0.0011 + 18 0.000276 + 19 0.000552 + 20 0.0011 + 21 0.00912 + 24 0.00691 + 26 0.0373 + 28 0.0715 + 29 0.0561 + 30 0.0331 + 31 0.0133 + 32 0.0127 + 33 0.0218 + 34 0.000552 + 35 0.000276 + 37 0.00331 + 41 0.0956 + 42 0.00635 + 43 0.000552 + 44 0.00138 + 45 0.0047 + 46 0.00221 + 47 0.142 + + 14 1127 28 0 + 0 0.00532 + 2 0.024 + 3 0.00177 + 4 0.0071 + 7 0.482 + 8 0.0071 + 13 0.00532 + 14 0.00177 + 15 0.000887 + 17 0.00177 + 21 0.00266 + 24 0.00621 + 26 0.0417 + 28 0.0816 + 29 0.0488 + 30 0.039 + 31 0.0177 + 32 0.0115 + 33 0.0195 + 34 0.00266 + 35 0.00177 + 37 0.00799 + 41 0.0532 + 42 0.00444 + 44 0.00177 + 45 0.00444 + 46 0.000887 + 47 0.117 + + 15 868 28 0 + 0 0.0104 + 2 0.0657 + 3 0.0023 + 4 0.00806 + 7 0.468 + 8 0.00691 + 13 0.0023 + 14 0.00115 + 15 0.00115 + 18 0.00461 + 20 0.00115 + 21 0.0023 + 24 0.00115 + 26 0.0415 + 28 0.0173 + 29 0.0242 + 30 0.0161 + 31 0.00461 + 32 0.00346 + 33 0.0242 + 34 0.0023 + 37 0.00115 + 41 0.0668 + 42 0.0127 + 44 0.00115 + 45 0.00806 + 46 0.0023 + 47 0.199 + + 16 33 9 0 + 2 0.0303 + 7 0.455 + 20 0.0606 + 28 0.0909 + 30 0.0303 + 32 0.0303 + 41 0.0606 + 45 0.0303 + 47 0.212 + + 18 5 4 0 + 2 0.4 + 7 0.2 + 26 0.2 + 45 0.2 + + 23 2 2 0 + 2 0.5 + 33 0.5 + + 30 87 11 0 + 2 0.023 + 7 0.575 + 26 0.046 + 28 0.103 + 29 0.0345 + 30 0.0345 + 31 0.023 + 33 0.023 + 41 0.092 + 42 0.0115 + 47 0.0345 + + 31 59 13 0 + 2 0.0339 + 4 0.0339 + 7 0.475 + 14 0.0169 + 24 0.0169 + 26 0.0339 + 28 0.0508 + 29 0.102 + 30 0.0508 + 31 0.0169 + 41 0.0169 + 46 0.0169 + 47 0.136 + + 41 5 5 0 + 2 0.2 + 4 0.2 + 7 0.2 + 28 0.2 + 41 0.2 + + 43 4 2 0 + 7 0.25 + 44 0.75 + + 45 68 11 0 + 0 0.0441 + 2 0.0147 + 7 0.426 + 15 0.0147 + 26 0.0735 + 28 0.0735 + 29 0.132 + 30 0.0294 + 33 0.0441 + 41 0.0294 + 47 0.118 + + 46 6 2 0 + 19 0.167 + 45 0.833 + + 47 72658 43 0 + 0 0.0614 + 1 0.000592 + 2 0.0476 + 3 0.000495 + 4 0.0029 + 5 2.75e-05 + 6 9.63e-05 + 7 0.366 + 8 0.00143 + 9 9.63e-05 + 10 4.13e-05 + 12 0.000165 + 13 0.00491 + 14 0.00278 + 15 0.00256 + 16 0.00011 + 17 0.00033 + 18 0.000193 + 19 0.00193 + 20 0.000179 + 21 0.00988 + 22 8.26e-05 + 24 0.0078 + 25 4.13e-05 + 26 0.0365 + 28 0.0633 + 29 0.0569 + 30 0.0378 + 31 0.0172 + 32 0.0135 + 33 0.0349 + 34 0.000578 + 35 0.000289 + 36 1.38e-05 + 37 0.00255 + 40 9.63e-05 + 41 0.0789 + 42 0.0236 + 43 0.000385 + 44 0.00228 + 45 0.0115 + 46 0.00183 + 47 0.107 + + 48 235 20 0 + 0 0.0255 + 2 0.0255 + 4 0.00851 + 7 0.417 + 14 0.00851 + 19 0.00426 + 21 0.0128 + 24 0.0128 + 26 0.034 + 28 0.0638 + 29 0.0213 + 30 0.0255 + 31 0.017 + 32 0.00851 + 33 0.0213 + 41 0.0979 + 42 0.00851 + 45 0.00426 + 46 0.00426 + 47 0.179 + + 54 12 2 0 + 7 0.833 + 28 0.167 + + 55 7 6 0 + 7 0.286 + 13 0.143 + 26 0.143 + 28 0.143 + 29 0.143 + 47 0.143 + + 57 19 7 0 + 4 0.0526 + 7 0.526 + 26 0.0526 + 29 0.105 + 30 0.0526 + 33 0.0526 + 41 0.158 + + 60 22 6 0 + 7 0.682 + 21 0.0455 + 28 0.0455 + 30 0.0455 + 41 0.0909 + 47 0.0909 + + 68 8 5 0 + 7 0.375 + 28 0.25 + 30 0.125 + 32 0.125 + 47 0.125 + + 56 295 15 2 + 2 0.00678 + 3 0.0542 + 4 0.42 + 7 0.00339 + 8 0.251 + 9 0.0169 + 10 0.0102 + 15 0.00339 + 20 0.122 + 21 0.0102 + 30 0.00678 + 31 0.0102 + 34 0.00339 + 41 0.00678 + 45 0.0746 + + 15 2 2 0 + 7 0.5 + 8 0.5 + + 46 2 1 0 + 45 1 + + 57 38 11 4 + 2 0.132 + 13 0.0526 + 14 0.0263 + 15 0.5 + 24 0.0263 + 28 0.0526 + 33 0.0526 + 41 0.0526 + 42 0.0263 + 44 0.0263 + 45 0.0526 + + 18 19 2 0 + 13 0.0526 + 15 0.947 + + 41 4 4 0 + 2 0.25 + 24 0.25 + 41 0.25 + 45 0.25 + + 47 4 4 0 + 13 0.25 + 14 0.25 + 28 0.25 + 33 0.25 + + 55 5 4 0 + 2 0.4 + 28 0.2 + 41 0.2 + 44 0.2 + + 58 108 17 5 + 0 0.00926 + 2 0.00926 + 3 0.037 + 4 0.0926 + 6 0.0185 + 7 0.0833 + 8 0.167 + 13 0.102 + 15 0.333 + 16 0.00926 + 18 0.0185 + 20 0.0278 + 28 0.00926 + 31 0.00926 + 40 0.0185 + 41 0.0185 + 46 0.037 + + 8 10 7 0 + 0 0.1 + 2 0.1 + 4 0.1 + 7 0.2 + 8 0.3 + 18 0.1 + 20 0.1 + + 13 37 10 0 + 3 0.0811 + 4 0.216 + 6 0.027 + 7 0.0811 + 8 0.216 + 13 0.135 + 15 0.162 + 18 0.027 + 20 0.027 + 46 0.027 + + 14 21 10 0 + 4 0.0476 + 6 0.0476 + 7 0.0952 + 8 0.238 + 13 0.19 + 15 0.19 + 20 0.0476 + 28 0.0476 + 31 0.0476 + 46 0.0476 + + 15 31 5 0 + 7 0.0645 + 8 0.0323 + 15 0.806 + 16 0.0323 + 40 0.0645 + + 47 5 4 0 + 3 0.2 + 13 0.2 + 41 0.2 + 46 0.4 + + 60 8217 36 21 + 0 0.0504 + 1 0.000122 + 2 0.0288 + 3 0.00231 + 4 0.00828 + 7 0.378 + 8 0.00633 + 9 0.000122 + 10 0.000122 + 13 0.0158 + 14 0.00645 + 15 0.00377 + 16 0.000122 + 18 0.00316 + 19 0.00122 + 20 0.000852 + 21 0.0113 + 22 0.000122 + 23 0.000122 + 24 0.00828 + 26 0.151 + 28 0.0612 + 29 0.0785 + 30 0.0245 + 31 0.0207 + 32 0.00876 + 33 0.0234 + 34 0.00073 + 37 0.00207 + 41 0.0211 + 42 0.0376 + 43 0.000122 + 44 0.0202 + 45 0.00146 + 46 0.000243 + 47 0.0221 + + 2 2 2 0 + 31 0.5 + 41 0.5 + + 3 8 4 0 + 0 0.25 + 26 0.375 + 28 0.125 + 29 0.25 + + 4 63 16 0 + 0 0.143 + 2 0.111 + 7 0.143 + 13 0.0317 + 14 0.0317 + 15 0.0159 + 24 0.0317 + 26 0.0317 + 28 0.0317 + 29 0.0476 + 31 0.0159 + 32 0.0159 + 33 0.0317 + 41 0.206 + 42 0.0159 + 47 0.0952 + + 7 7 5 0 + 0 0.429 + 2 0.143 + 7 0.143 + 13 0.143 + 45 0.143 + + 8 300 22 0 + 0 0.0933 + 2 0.0467 + 4 0.0267 + 7 0.31 + 8 0.00333 + 13 0.01 + 15 0.00667 + 18 0.03 + 20 0.00333 + 21 0.0133 + 24 0.0133 + 26 0.02 + 28 0.0867 + 29 0.05 + 30 0.0367 + 31 0.0267 + 32 0.00667 + 33 0.0333 + 37 0.00333 + 41 0.04 + 42 0.09 + 47 0.05 + + 9 5 5 0 + 2 0.2 + 28 0.2 + 29 0.2 + 32 0.2 + 41 0.2 + + 13 1033 27 0 + 0 0.0552 + 1 0.000968 + 2 0.0387 + 3 0.000968 + 4 0.0155 + 7 0.284 + 8 0.0029 + 13 0.00581 + 14 0.0106 + 15 0.00194 + 18 0.0029 + 19 0.00194 + 21 0.0271 + 24 0.00678 + 26 0.0736 + 28 0.0697 + 29 0.0794 + 30 0.0368 + 31 0.0281 + 32 0.0126 + 33 0.0523 + 37 0.000968 + 41 0.0542 + 42 0.092 + 44 0.00678 + 45 0.00194 + 47 0.0368 + + 14 1393 31 0 + 0 0.0682 + 2 0.0223 + 3 0.00144 + 4 0.0215 + 7 0.363 + 8 0.0223 + 9 0.000718 + 13 0.0625 + 14 0.00718 + 15 0.00287 + 16 0.000718 + 18 0.00718 + 19 0.00287 + 20 0.00359 + 21 0.0122 + 24 0.00861 + 26 0.0818 + 28 0.0653 + 29 0.0639 + 30 0.023 + 31 0.0294 + 32 0.0108 + 33 0.0294 + 34 0.000718 + 37 0.0101 + 41 0.0251 + 42 0.0101 + 43 0.000718 + 44 0.00144 + 45 0.00287 + 47 0.038 + + 15 70 16 0 + 0 0.0143 + 2 0.0286 + 4 0.0857 + 7 0.386 + 8 0.0143 + 18 0.0143 + 20 0.0143 + 28 0.0857 + 29 0.0571 + 30 0.0286 + 31 0.0143 + 33 0.0571 + 41 0.0286 + 42 0.0429 + 46 0.0143 + 47 0.114 + + 16 12 5 0 + 0 0.0833 + 4 0.333 + 7 0.25 + 28 0.167 + 47 0.167 + + 20 18 11 0 + 0 0.111 + 2 0.111 + 7 0.167 + 26 0.0556 + 28 0.0556 + 29 0.111 + 30 0.0556 + 32 0.0556 + 33 0.111 + 41 0.111 + 42 0.0556 + + 21 4 3 0 + 18 0.25 + 31 0.5 + 42 0.25 + + 31 5 3 0 + 0 0.4 + 7 0.4 + 33 0.2 + + 45 1 1 0 + 32 1 + + 46 1 1 0 + 45 1 + + 47 5237 31 0 + 0 0.0405 + 2 0.0258 + 3 0.00306 + 4 0.000573 + 7 0.409 + 8 0.00286 + 10 0.000191 + 13 0.00592 + 14 0.00573 + 15 0.0042 + 18 0.000382 + 19 0.000764 + 21 0.0084 + 22 0.000191 + 23 0.000191 + 24 0.00802 + 26 0.198 + 28 0.0571 + 29 0.0852 + 30 0.0223 + 31 0.0164 + 32 0.00726 + 33 0.0145 + 34 0.000955 + 37 0.000191 + 41 0.00955 + 42 0.0315 + 44 0.03 + 45 0.000382 + 46 0.000191 + 47 0.0107 + + 48 4 4 0 + 7 0.25 + 28 0.25 + 41 0.25 + 47 0.25 + + 55 19 8 0 + 0 0.105 + 2 0.158 + 7 0.368 + 26 0.105 + 28 0.0526 + 42 0.105 + 45 0.0526 + 47 0.0526 + + 56 14 6 0 + 4 0.0714 + 7 0.571 + 24 0.0714 + 29 0.0714 + 33 0.143 + 47 0.0714 + + 58 1 1 0 + 45 1 + + 60 15 4 0 + 7 0.8 + 8 0.0667 + 26 0.0667 + 31 0.0667 + + 62 60 9 3 + 7 0.367 + 18 0.0167 + 26 0.05 + 30 0.0167 + 34 0.0167 + 41 0.0167 + 42 0.05 + 45 0.383 + 47 0.0833 + + 2 10 3 0 + 7 0.7 + 26 0.2 + 30 0.1 + + 46 14 1 0 + 45 1 + + 47 13 6 0 + 7 0.308 + 34 0.0769 + 41 0.0769 + 42 0.154 + 45 0.154 + 47 0.231 + + 64 48 16 4 + 0 0.0833 + 2 0.0208 + 7 0.188 + 13 0.0208 + 19 0.0417 + 24 0.0208 + 26 0.0417 + 28 0.0833 + 29 0.0417 + 30 0.0208 + 31 0.0625 + 33 0.0625 + 41 0.208 + 45 0.0625 + 46 0.0208 + 47 0.0208 + + 2 5 4 0 + 7 0.4 + 28 0.2 + 29 0.2 + 45 0.2 + + 41 9 7 0 + 0 0.222 + 2 0.111 + 7 0.222 + 19 0.111 + 24 0.111 + 26 0.111 + 47 0.111 + + 42 11 8 0 + 0 0.0909 + 7 0.364 + 13 0.0909 + 26 0.0909 + 28 0.0909 + 29 0.0909 + 30 0.0909 + 33 0.0909 + + 47 22 9 0 + 0 0.0455 + 7 0.0455 + 19 0.0455 + 28 0.0455 + 31 0.136 + 33 0.0909 + 41 0.455 + 45 0.0909 + 46 0.0455 + + 68 206 22 3 + 0 0.00971 + 2 0.00971 + 3 0.00971 + 4 0.209 + 7 0.238 + 8 0.194 + 9 0.00485 + 13 0.0146 + 15 0.0291 + 18 0.034 + 20 0.0194 + 21 0.00485 + 26 0.0194 + 28 0.034 + 29 0.00485 + 30 0.0388 + 31 0.0146 + 32 0.00971 + 33 0.0291 + 41 0.00971 + 42 0.00971 + 47 0.0534 + + 8 17 5 0 + 7 0.294 + 8 0.529 + 15 0.0588 + 32 0.0588 + 47 0.0588 + + 13 71 12 0 + 2 0.0282 + 4 0.465 + 7 0.127 + 8 0.183 + 9 0.0141 + 13 0.0423 + 15 0.0423 + 26 0.0141 + 30 0.0141 + 33 0.0282 + 41 0.0141 + 47 0.0282 + + 14 113 19 0 + 0 0.0177 + 3 0.0177 + 4 0.0796 + 7 0.274 + 8 0.159 + 15 0.0177 + 18 0.0619 + 20 0.0354 + 21 0.00885 + 26 0.0265 + 28 0.0619 + 29 0.00885 + 30 0.0619 + 31 0.0265 + 32 0.00885 + 33 0.0354 + 41 0.00885 + 42 0.0177 + 47 0.0708 + + 69 5 3 0 + 4 0.2 + 18 0.4 + 45 0.4 + +56 3353 24 19 + 2 0.24 + 3 0.0289 + 4 0.15 + 6 0.000596 + 7 0.00209 + 8 0.17 + 9 0.00716 + 10 0.00388 + 13 0.0674 + 14 0.0155 + 15 0.0692 + 16 0.00418 + 18 0.0746 + 20 0.0435 + 21 0.00507 + 30 0.00537 + 31 0.00775 + 34 0.00119 + 36 0.00119 + 39 0.000596 + 40 0.000298 + 41 0.0537 + 42 0.000596 + 45 0.0474 + + 2 8 4 0 + 13 0.375 + 14 0.125 + 15 0.375 + 16 0.125 + + 3 22 9 1 + 2 0.318 + 4 0.136 + 8 0.182 + 15 0.0455 + 18 0.0909 + 20 0.0455 + 21 0.0455 + 39 0.0909 + 45 0.0455 + + 47 7 4 0 + 8 0.429 + 21 0.143 + 39 0.286 + 45 0.143 + + 4 10 4 0 + 2 0.1 + 21 0.1 + 41 0.1 + 45 0.7 + + 6 8 2 0 + 6 0.25 + 45 0.75 + + 7 3 1 0 + 15 1 + + 8 253 14 4 + 2 0.506 + 3 0.0356 + 4 0.107 + 7 0.00395 + 8 0.119 + 9 0.0119 + 13 0.00395 + 15 0.00791 + 18 0.0711 + 20 0.0395 + 30 0.00395 + 31 0.00395 + 41 0.0632 + 45 0.0237 + + 8 21 4 0 + 2 0.857 + 18 0.0476 + 41 0.0476 + 45 0.0476 + + 13 140 14 0 + 2 0.464 + 3 0.00714 + 4 0.15 + 7 0.00714 + 8 0.157 + 9 0.00714 + 13 0.00714 + 15 0.00714 + 18 0.0786 + 20 0.0357 + 30 0.00714 + 31 0.00714 + 41 0.0357 + 45 0.0286 + + 14 76 10 0 + 2 0.5 + 3 0.0526 + 4 0.0263 + 8 0.105 + 9 0.0263 + 15 0.0132 + 18 0.0789 + 20 0.0526 + 41 0.132 + 45 0.0132 + + 47 3 1 0 + 3 1 + + 13 596 17 4 + 2 0.201 + 3 0.0185 + 4 0.0839 + 8 0.309 + 9 0.00503 + 10 0.00336 + 13 0.173 + 14 0.0101 + 15 0.0436 + 18 0.0453 + 20 0.0185 + 30 0.0134 + 31 0.0101 + 34 0.00168 + 36 0.00168 + 41 0.052 + 45 0.0101 + + 13 101 12 0 + 2 0.337 + 3 0.0198 + 4 0.129 + 8 0.248 + 9 0.0099 + 10 0.0099 + 13 0.0891 + 15 0.0297 + 20 0.0198 + 31 0.0099 + 41 0.0891 + 45 0.0099 + + 14 94 9 0 + 2 0.479 + 4 0.0638 + 8 0.266 + 9 0.0106 + 13 0.0319 + 15 0.0106 + 20 0.0319 + 31 0.0213 + 41 0.0851 + + 30 4 1 0 + 2 1 + + 47 392 17 0 + 2 0.0893 + 3 0.023 + 4 0.0791 + 8 0.339 + 9 0.00255 + 10 0.00255 + 13 0.23 + 14 0.0153 + 15 0.0536 + 18 0.0689 + 20 0.0153 + 30 0.0204 + 31 0.00765 + 34 0.00255 + 36 0.00255 + 41 0.0357 + 45 0.0128 + + 14 320 16 1 + 2 0.0781 + 3 0.0375 + 4 0.0531 + 8 0.312 + 9 0.00625 + 10 0.00625 + 13 0.306 + 14 0.00313 + 15 0.0281 + 18 0.0188 + 20 0.0281 + 21 0.00938 + 30 0.00938 + 31 0.0281 + 41 0.0719 + 45 0.00313 + + 13 6 4 0 + 2 0.333 + 13 0.167 + 20 0.167 + 41 0.333 + + 15 301 16 6 + 2 0.159 + 3 0.0133 + 4 0.0897 + 7 0.0133 + 8 0.0399 + 9 0.00332 + 13 0.00664 + 14 0.0332 + 15 0.412 + 16 0.00997 + 18 0.0365 + 20 0.0133 + 21 0.00332 + 40 0.00332 + 41 0.0399 + 45 0.123 + + 7 3 3 0 + 2 0.333 + 15 0.333 + 40 0.333 + + 13 17 9 0 + 2 0.0588 + 4 0.294 + 8 0.235 + 14 0.0588 + 15 0.118 + 18 0.0588 + 20 0.0588 + 41 0.0588 + 45 0.0588 + + 14 6 6 0 + 2 0.167 + 3 0.167 + 4 0.167 + 8 0.167 + 9 0.167 + 15 0.167 + + 15 119 11 0 + 2 0.261 + 4 0.118 + 7 0.0084 + 8 0.0336 + 14 0.0672 + 15 0.252 + 16 0.0084 + 18 0.042 + 20 0.0084 + 41 0.0672 + 45 0.134 + + 16 9 5 0 + 2 0.222 + 15 0.222 + 18 0.111 + 20 0.222 + 45 0.222 + + 47 139 13 0 + 2 0.0719 + 3 0.0216 + 4 0.0432 + 7 0.0216 + 8 0.0216 + 13 0.0144 + 14 0.00719 + 15 0.612 + 16 0.0144 + 18 0.0216 + 21 0.00719 + 41 0.0216 + 45 0.122 + + 16 14 4 0 + 2 0.143 + 4 0.143 + 15 0.643 + 41 0.0714 + + 21 5 2 0 + 2 0.8 + 41 0.2 + + 30 11 4 0 + 2 0.273 + 8 0.273 + 13 0.364 + 20 0.0909 + + 31 9 3 0 + 2 0.556 + 4 0.222 + 21 0.222 + + 45 9 6 0 + 2 0.111 + 3 0.111 + 13 0.222 + 14 0.111 + 18 0.333 + 20 0.111 + + 47 1311 20 13 + 2 0.304 + 3 0.0297 + 4 0.188 + 7 0.00153 + 8 0.12 + 9 0.00763 + 10 0.00458 + 13 0.00763 + 14 0.0168 + 15 0.0259 + 16 0.00458 + 18 0.0931 + 20 0.0549 + 21 0.00458 + 30 0.00305 + 31 0.00534 + 34 0.00153 + 36 0.00153 + 41 0.0686 + 45 0.0572 + + 4 9 3 0 + 2 0.111 + 41 0.111 + 45 0.778 + + 6 6 1 0 + 45 1 + + 8 224 12 0 + 2 0.571 + 3 0.0268 + 4 0.116 + 7 0.00446 + 8 0.0402 + 9 0.00893 + 15 0.00446 + 18 0.0804 + 20 0.0446 + 30 0.00446 + 41 0.0714 + 45 0.0268 + + 13 298 15 0 + 2 0.396 + 3 0.00671 + 4 0.154 + 8 0.134 + 9 0.00671 + 10 0.00336 + 13 0.00336 + 15 0.0302 + 18 0.0906 + 20 0.0369 + 31 0.00671 + 34 0.00336 + 36 0.00336 + 41 0.104 + 45 0.0201 + + 14 117 13 0 + 2 0.197 + 3 0.0855 + 4 0.12 + 8 0.197 + 9 0.00855 + 10 0.0171 + 13 0.0342 + 15 0.0256 + 18 0.0342 + 20 0.0598 + 30 0.00855 + 31 0.0171 + 41 0.197 + + 15 154 13 0 + 2 0.292 + 4 0.162 + 7 0.00649 + 8 0.039 + 13 0.00649 + 14 0.0649 + 15 0.026 + 16 0.013 + 18 0.0455 + 20 0.026 + 21 0.00649 + 41 0.0779 + 45 0.234 + + 21 5 2 0 + 2 0.8 + 41 0.2 + + 31 9 3 0 + 2 0.556 + 4 0.222 + 21 0.222 + + 45 9 6 0 + 2 0.111 + 3 0.111 + 13 0.222 + 14 0.111 + 18 0.333 + 20 0.111 + + 48 10 4 0 + 2 0.6 + 4 0.2 + 18 0.1 + 20 0.1 + + 55 17 5 0 + 2 0.412 + 3 0.0588 + 4 0.0588 + 18 0.0588 + 45 0.412 + + 56 414 19 0 + 2 0.101 + 3 0.0459 + 4 0.297 + 8 0.181 + 9 0.0121 + 10 0.00725 + 13 0.00483 + 14 0.0266 + 15 0.0411 + 16 0.00966 + 18 0.14 + 20 0.087 + 21 0.00725 + 30 0.00483 + 31 0.00725 + 34 0.00242 + 36 0.00242 + 41 0.0121 + 45 0.00966 + + 62 2 1 0 + 45 1 + + 48 11 5 0 + 2 0.545 + 4 0.182 + 8 0.0909 + 18 0.0909 + 20 0.0909 + + 55 22 6 0 + 2 0.318 + 3 0.0909 + 4 0.0455 + 18 0.0455 + 42 0.0909 + 45 0.409 + + 56 419 19 0 + 2 0.1 + 3 0.0453 + 4 0.294 + 8 0.179 + 9 0.0119 + 10 0.00716 + 13 0.00477 + 14 0.0263 + 15 0.0406 + 16 0.00955 + 18 0.138 + 20 0.0859 + 21 0.00716 + 30 0.00477 + 31 0.00716 + 34 0.00239 + 36 0.00239 + 41 0.0119 + 45 0.0215 + + 62 2 1 0 + 45 1 + +57 191766 42 26 + 0 0.0127 + 1 6.26e-05 + 2 0.00876 + 3 0.0413 + 4 0.00784 + 6 9.91e-05 + 7 0.0115 + 8 0.0343 + 9 0.00545 + 10 0.00283 + 12 0.000167 + 13 0.352 + 14 0.15 + 15 0.0378 + 16 0.00175 + 18 0.000245 + 19 0.00638 + 20 5.21e-06 + 21 0.0315 + 22 0.00242 + 23 0.000209 + 24 0.00711 + 25 3.65e-05 + 26 0.000136 + 27 7.3e-05 + 28 0.0277 + 29 0.0264 + 30 0.0277 + 31 0.0819 + 32 0.00613 + 33 0.00986 + 34 0.000375 + 35 0.000261 + 37 9.39e-05 + 40 4.17e-05 + 41 0.0447 + 42 0.00376 + 43 0.00162 + 44 0.00109 + 45 0.00293 + 46 0.00618 + 47 0.0445 + + 2 77 17 3 + 0 0.013 + 3 0.0519 + 4 0.0519 + 8 0.013 + 9 0.013 + 13 0.338 + 14 0.0779 + 15 0.026 + 18 0.013 + 19 0.013 + 21 0.0519 + 24 0.026 + 28 0.026 + 31 0.013 + 41 0.221 + 42 0.026 + 46 0.026 + + 7 4 3 0 + 24 0.25 + 31 0.25 + 41 0.5 + + 47 57 10 0 + 3 0.0702 + 4 0.0702 + 8 0.0175 + 13 0.439 + 14 0.0702 + 15 0.0351 + 18 0.0175 + 21 0.0702 + 41 0.193 + 42 0.0175 + + 57 14 10 0 + 0 0.0714 + 9 0.0714 + 13 0.0714 + 14 0.143 + 19 0.0714 + 24 0.0714 + 28 0.0714 + 41 0.286 + 42 0.0714 + 46 0.0714 + + 4 29 13 2 + 0 0.103 + 7 0.069 + 8 0.103 + 13 0.0345 + 14 0.103 + 24 0.069 + 28 0.0345 + 29 0.0345 + 32 0.069 + 33 0.103 + 41 0.207 + 46 0.0345 + 47 0.0345 + + 7 18 9 0 + 0 0.111 + 7 0.111 + 14 0.0556 + 24 0.111 + 29 0.0556 + 32 0.0556 + 33 0.167 + 41 0.278 + 47 0.0556 + + 57 11 8 0 + 0 0.0909 + 8 0.273 + 13 0.0909 + 14 0.182 + 28 0.0909 + 32 0.0909 + 41 0.0909 + 46 0.0909 + + 6 16 6 1 + 3 0.0625 + 6 0.188 + 13 0.188 + 15 0.188 + 41 0.188 + 44 0.188 + + 6 3 1 0 + 44 1 + + 7 83565 41 0 + 0 0.0129 + 1 7.18e-05 + 2 0.00859 + 3 0.0374 + 4 0.00881 + 6 7.18e-05 + 7 0.0117 + 8 0.0334 + 9 0.00596 + 10 0.00335 + 12 0.000168 + 13 0.369 + 14 0.156 + 15 0.0407 + 16 0.00188 + 18 0.000239 + 19 0.006 + 21 0.0348 + 22 0.00268 + 23 0.000215 + 24 0.00704 + 25 2.39e-05 + 26 0.000132 + 27 1.2e-05 + 28 0.0257 + 29 0.0221 + 30 0.0204 + 31 0.0807 + 32 0.00594 + 33 0.00902 + 34 0.000419 + 35 0.000299 + 37 8.38e-05 + 40 3.59e-05 + 41 0.0318 + 42 0.00281 + 43 0.0017 + 44 0.00107 + 45 0.00294 + 46 0.0061 + 47 0.0473 + + 8 392 18 5 + 0 0.0281 + 2 0.00255 + 3 0.00255 + 8 0.0051 + 13 0.0765 + 14 0.436 + 20 0.00255 + 21 0.0179 + 24 0.00255 + 29 0.00255 + 30 0.00255 + 31 0.00255 + 41 0.342 + 42 0.0281 + 44 0.0051 + 45 0.0051 + 46 0.0332 + 47 0.0051 + + 7 342 7 0 + 8 0.00292 + 13 0.0614 + 14 0.488 + 41 0.377 + 42 0.0322 + 44 0.00585 + 46 0.0322 + + 14 1 1 0 + 20 1 + + 26 12 8 0 + 3 0.0833 + 13 0.167 + 14 0.0833 + 21 0.0833 + 31 0.0833 + 41 0.25 + 45 0.167 + 47 0.0833 + + 47 25 9 0 + 0 0.44 + 2 0.04 + 8 0.04 + 13 0.12 + 14 0.12 + 21 0.12 + 24 0.04 + 29 0.04 + 30 0.04 + + 57 10 5 0 + 13 0.3 + 21 0.3 + 41 0.2 + 46 0.1 + 47 0.1 + + 9 2 2 0 + 0 0.5 + 33 0.5 + + 13 8 5 0 + 3 0.125 + 8 0.125 + 13 0.5 + 28 0.125 + 41 0.125 + + 15 11 5 0 + 15 0.455 + 16 0.0909 + 42 0.0909 + 45 0.273 + 47 0.0909 + + 21 467 30 5 + 0 0.0428 + 2 0.0428 + 3 0.00214 + 4 0.00214 + 7 0.0171 + 8 0.03 + 10 0.00214 + 13 0.107 + 14 0.122 + 15 0.0107 + 18 0.00428 + 19 0.0214 + 21 0.0685 + 22 0.00214 + 24 0.00214 + 28 0.0364 + 29 0.0321 + 30 0.0193 + 31 0.0664 + 32 0.00642 + 33 0.0236 + 34 0.00214 + 37 0.00214 + 41 0.165 + 42 0.0257 + 43 0.00428 + 44 0.00857 + 45 0.0193 + 46 0.00642 + 47 0.105 + + 7 289 25 0 + 0 0.0346 + 2 0.0554 + 3 0.00346 + 7 0.0138 + 8 0.0381 + 10 0.00346 + 13 0.111 + 14 0.135 + 15 0.0138 + 19 0.00692 + 21 0.0554 + 22 0.00346 + 28 0.0208 + 29 0.0138 + 31 0.0727 + 32 0.00692 + 33 0.00346 + 37 0.00346 + 41 0.221 + 42 0.0311 + 43 0.00692 + 44 0.00346 + 45 0.0138 + 46 0.00692 + 47 0.121 + + 21 10 7 0 + 0 0.1 + 13 0.1 + 14 0.2 + 29 0.1 + 41 0.3 + 44 0.1 + 47 0.1 + + 30 4 3 0 + 41 0.5 + 44 0.25 + 47 0.25 + + 47 90 23 0 + 0 0.0556 + 2 0.0333 + 7 0.0444 + 8 0.0111 + 13 0.133 + 14 0.1 + 15 0.0111 + 18 0.0111 + 19 0.0667 + 21 0.144 + 24 0.0111 + 28 0.0444 + 29 0.0444 + 30 0.0556 + 31 0.0667 + 32 0.0111 + 33 0.0667 + 34 0.0111 + 41 0.0111 + 42 0.0111 + 45 0.0111 + 46 0.0111 + 47 0.0333 + + 57 62 18 0 + 0 0.0645 + 4 0.0161 + 8 0.0323 + 13 0.0484 + 14 0.0968 + 18 0.0161 + 19 0.0323 + 21 0.0323 + 28 0.0968 + 29 0.0968 + 30 0.0645 + 31 0.0645 + 33 0.0645 + 41 0.0645 + 42 0.0323 + 44 0.0161 + 45 0.0323 + 47 0.129 + + 22 7 7 0 + 0 0.143 + 21 0.143 + 22 0.143 + 30 0.143 + 33 0.143 + 41 0.143 + 47 0.143 + + 24 55 11 0 + 0 0.0182 + 13 0.0909 + 14 0.0545 + 19 0.0545 + 28 0.2 + 29 0.109 + 30 0.145 + 31 0.236 + 32 0.0182 + 33 0.0545 + 41 0.0182 + + 26 8661 35 0 + 0 0.00185 + 2 0.00496 + 3 0.0928 + 4 0.00127 + 6 0.000231 + 7 0.00947 + 8 0.068 + 9 0.00266 + 10 0.000115 + 13 0.286 + 14 0.103 + 15 0.02 + 16 0.000924 + 19 0.00935 + 21 0.0461 + 22 0.00173 + 23 0.000231 + 24 0.00877 + 26 0.000115 + 27 0.000693 + 28 0.0462 + 29 0.0701 + 30 0.076 + 31 0.0876 + 32 0.00774 + 33 0.0162 + 35 0.000115 + 40 0.000115 + 41 0.0264 + 42 0.00196 + 43 0.00127 + 44 0.000231 + 45 0.000462 + 46 0.00531 + 47 0.00231 + + 28 3 3 0 + 2 0.333 + 14 0.333 + 41 0.333 + + 29 2 1 0 + 41 1 + + 30 1062 21 2 + 2 0.00847 + 3 0.00659 + 7 0.00282 + 8 0.00282 + 13 0.0574 + 14 0.0433 + 15 0.0122 + 16 0.00188 + 19 0.00282 + 21 0.0104 + 22 0.000942 + 28 0.000942 + 29 0.00188 + 30 0.000942 + 31 0.0132 + 41 0.65 + 42 0.0377 + 44 0.00188 + 45 0.00282 + 46 0.0113 + 47 0.13 + + 47 613 20 0 + 2 0.00326 + 3 0.00979 + 7 0.00326 + 8 0.00489 + 13 0.0897 + 14 0.0669 + 15 0.0212 + 16 0.00326 + 19 0.00326 + 21 0.0179 + 22 0.00163 + 28 0.00163 + 29 0.00326 + 31 0.0179 + 41 0.622 + 42 0.0636 + 44 0.00326 + 45 0.00163 + 46 0.00653 + 47 0.0555 + + 57 448 12 0 + 2 0.0156 + 3 0.00223 + 7 0.00223 + 13 0.0134 + 14 0.0112 + 19 0.00223 + 30 0.00223 + 31 0.0067 + 41 0.69 + 45 0.00446 + 46 0.0179 + 47 0.232 + + 31 361 21 3 + 2 0.0166 + 3 0.036 + 4 0.00554 + 7 0.0166 + 8 0.036 + 9 0.00277 + 13 0.108 + 14 0.0526 + 15 0.00277 + 21 0.0139 + 28 0.00277 + 30 0.00277 + 31 0.0139 + 32 0.00277 + 41 0.593 + 42 0.00554 + 43 0.00277 + 44 0.00277 + 45 0.0111 + 46 0.00277 + 47 0.0693 + + 7 2 1 0 + 14 1 + + 47 57 12 0 + 2 0.105 + 4 0.0175 + 7 0.0351 + 8 0.0702 + 13 0.0351 + 21 0.0351 + 28 0.0175 + 41 0.404 + 42 0.0175 + 44 0.0175 + 45 0.0526 + 47 0.193 + + 57 302 18 0 + 3 0.043 + 4 0.00331 + 7 0.0132 + 8 0.0298 + 9 0.00331 + 13 0.123 + 14 0.0563 + 15 0.00331 + 21 0.00993 + 30 0.00331 + 31 0.0166 + 32 0.00331 + 41 0.632 + 42 0.00331 + 43 0.00331 + 45 0.00331 + 46 0.00331 + 47 0.0464 + + 41 8 6 0 + 2 0.125 + 13 0.125 + 14 0.125 + 15 0.125 + 18 0.25 + 21 0.25 + + 42 3 1 0 + 25 1 + + 45 10 7 0 + 0 0.2 + 3 0.1 + 13 0.2 + 14 0.1 + 19 0.1 + 21 0.2 + 47 0.1 + + 46 2 1 0 + 21 1 + + 47 94690 41 22 + 0 0.0128 + 1 6.34e-05 + 2 0.00877 + 3 0.0418 + 4 0.00773 + 6 8.45e-05 + 7 0.0116 + 8 0.0327 + 9 0.00546 + 10 0.00276 + 12 0.000169 + 13 0.357 + 14 0.151 + 15 0.0383 + 16 0.00177 + 18 0.000232 + 19 0.00646 + 21 0.0268 + 22 0.00233 + 23 0.000211 + 24 0.0072 + 25 2.11e-05 + 26 0.000137 + 27 7.39e-05 + 28 0.0281 + 29 0.0267 + 30 0.0257 + 31 0.0814 + 32 0.00621 + 33 0.00998 + 34 0.00038 + 35 0.000253 + 37 9.5e-05 + 40 4.22e-05 + 41 0.0452 + 42 0.00379 + 43 0.00163 + 44 0.0011 + 45 0.00291 + 46 0.00625 + 47 0.045 + + 2 75 16 0 + 0 0.0133 + 3 0.0533 + 4 0.0533 + 8 0.0133 + 9 0.0133 + 13 0.347 + 14 0.08 + 15 0.0267 + 19 0.0133 + 21 0.0533 + 24 0.0267 + 28 0.0133 + 31 0.0133 + 41 0.227 + 42 0.0267 + 46 0.0267 + + 4 29 13 0 + 0 0.103 + 7 0.069 + 8 0.103 + 13 0.0345 + 14 0.103 + 24 0.069 + 28 0.0345 + 29 0.0345 + 32 0.069 + 33 0.103 + 41 0.207 + 46 0.0345 + 47 0.0345 + + 6 13 5 0 + 3 0.0769 + 13 0.231 + 15 0.231 + 41 0.231 + 44 0.231 + + 7 82196 41 0 + 0 0.0132 + 1 7.3e-05 + 2 0.00869 + 3 0.0379 + 4 0.00861 + 6 7.3e-05 + 7 0.0119 + 8 0.0297 + 9 0.00592 + 10 0.00316 + 12 0.00017 + 13 0.375 + 14 0.158 + 15 0.0413 + 16 0.00191 + 18 0.000243 + 19 0.0061 + 21 0.0258 + 22 0.00248 + 23 0.000219 + 24 0.00715 + 25 2.43e-05 + 26 0.000134 + 27 1.22e-05 + 28 0.0261 + 29 0.0225 + 30 0.0207 + 31 0.082 + 32 0.00603 + 33 0.00917 + 34 0.000426 + 35 0.00028 + 37 8.52e-05 + 40 3.65e-05 + 41 0.0323 + 42 0.00286 + 43 0.0017 + 44 0.00107 + 45 0.00293 + 46 0.00618 + 47 0.0481 + + 8 387 17 0 + 0 0.0284 + 2 0.00258 + 3 0.00258 + 8 0.00258 + 13 0.0775 + 14 0.442 + 21 0.0103 + 24 0.00258 + 29 0.00258 + 30 0.00258 + 31 0.00258 + 41 0.346 + 42 0.0284 + 44 0.00517 + 45 0.00517 + 46 0.0336 + 47 0.00517 + + 9 2 2 0 + 0 0.5 + 33 0.5 + + 13 7 5 0 + 3 0.143 + 8 0.143 + 13 0.429 + 28 0.143 + 41 0.143 + + 15 11 5 0 + 15 0.455 + 16 0.0909 + 42 0.0909 + 45 0.273 + 47 0.0909 + + 21 439 28 0 + 0 0.0456 + 2 0.0456 + 3 0.00228 + 4 0.00228 + 7 0.0182 + 8 0.0296 + 13 0.114 + 14 0.125 + 15 0.0114 + 18 0.00456 + 19 0.0228 + 21 0.0296 + 24 0.00228 + 28 0.0387 + 29 0.0342 + 30 0.0205 + 31 0.0706 + 32 0.00683 + 33 0.0251 + 34 0.00228 + 37 0.00228 + 41 0.173 + 42 0.0273 + 43 0.00456 + 44 0.00911 + 45 0.0137 + 46 0.00683 + 47 0.112 + + 22 7 7 0 + 0 0.143 + 21 0.143 + 22 0.143 + 30 0.143 + 33 0.143 + 41 0.143 + 47 0.143 + + 24 55 11 0 + 0 0.0182 + 13 0.0909 + 14 0.0545 + 19 0.0545 + 28 0.2 + 29 0.109 + 30 0.145 + 31 0.236 + 32 0.0182 + 33 0.0545 + 41 0.0182 + + 26 8601 35 0 + 0 0.00186 + 2 0.00488 + 3 0.0935 + 4 0.00128 + 6 0.000233 + 7 0.00953 + 8 0.0671 + 9 0.00267 + 10 0.000116 + 13 0.288 + 14 0.103 + 15 0.0201 + 16 0.00093 + 19 0.00942 + 21 0.0414 + 22 0.00163 + 23 0.000233 + 24 0.00884 + 26 0.000116 + 27 0.000698 + 28 0.0465 + 29 0.0706 + 30 0.0765 + 31 0.0882 + 32 0.00779 + 33 0.0163 + 35 0.000116 + 40 0.000116 + 41 0.0265 + 42 0.00198 + 43 0.00128 + 44 0.000233 + 45 0.000465 + 46 0.00535 + 47 0.00233 + + 29 2 1 0 + 41 1 + + 30 1055 21 0 + 2 0.00853 + 3 0.00664 + 7 0.00284 + 8 0.00284 + 13 0.0578 + 14 0.0436 + 15 0.0123 + 16 0.0019 + 19 0.00284 + 21 0.00379 + 22 0.000948 + 28 0.000948 + 29 0.0019 + 30 0.000948 + 31 0.0133 + 41 0.654 + 42 0.0379 + 44 0.0019 + 45 0.00284 + 46 0.0114 + 47 0.131 + + 31 358 21 0 + 2 0.0168 + 3 0.0363 + 4 0.00559 + 7 0.0168 + 8 0.0363 + 9 0.00279 + 13 0.109 + 14 0.0531 + 15 0.00279 + 21 0.00559 + 28 0.00279 + 30 0.00279 + 31 0.014 + 32 0.00279 + 41 0.598 + 42 0.00559 + 43 0.00279 + 44 0.00279 + 45 0.0112 + 46 0.00279 + 47 0.0698 + + 41 2 2 0 + 2 0.5 + 15 0.5 + + 45 9 7 0 + 0 0.222 + 3 0.111 + 13 0.222 + 14 0.111 + 19 0.111 + 21 0.111 + 47 0.111 + + 49 623 28 0 + 0 0.0674 + 2 0.0369 + 3 0.00321 + 4 0.00642 + 7 0.00482 + 8 0.0161 + 9 0.00161 + 12 0.00161 + 13 0.114 + 14 0.0867 + 15 0.0112 + 19 0.00963 + 21 0.0321 + 22 0.00161 + 24 0.00963 + 28 0.0161 + 29 0.0289 + 30 0.0144 + 31 0.0754 + 32 0.00482 + 33 0.0144 + 37 0.00161 + 41 0.319 + 42 0.0385 + 44 0.00321 + 45 0.0161 + 46 0.00482 + 47 0.0594 + + 50 17 10 0 + 8 0.176 + 13 0.118 + 14 0.0588 + 24 0.0588 + 28 0.0588 + 30 0.0588 + 31 0.118 + 33 0.0588 + 41 0.235 + 45 0.0588 + + 55 135 19 0 + 0 0.141 + 2 0.0593 + 7 0.133 + 8 0.0148 + 13 0.0815 + 14 0.0519 + 15 0.00741 + 21 0.037 + 24 0.00741 + 26 0.00741 + 28 0.0444 + 29 0.0444 + 31 0.0741 + 32 0.00741 + 33 0.0296 + 41 0.156 + 42 0.037 + 46 0.00741 + 47 0.0593 + + 57 656 25 0 + 0 0.0244 + 2 0.00915 + 3 0.00457 + 4 0.00305 + 7 0.00457 + 8 0.0457 + 9 0.0061 + 12 0.00152 + 13 0.245 + 14 0.148 + 15 0.0259 + 19 0.00915 + 21 0.0152 + 24 0.0061 + 28 0.0884 + 29 0.0381 + 30 0.061 + 31 0.123 + 32 0.0213 + 33 0.0274 + 41 0.0396 + 42 0.0152 + 45 0.00305 + 46 0.00305 + 47 0.0305 + + 74 5 2 0 + 41 0.2 + 47 0.8 + + 49 628 28 4 + 0 0.0669 + 2 0.0366 + 3 0.00318 + 4 0.00637 + 7 0.00478 + 8 0.0175 + 9 0.00159 + 12 0.00159 + 13 0.113 + 14 0.086 + 15 0.0111 + 19 0.00955 + 21 0.035 + 22 0.00159 + 24 0.00955 + 28 0.0159 + 29 0.0287 + 30 0.0143 + 31 0.0748 + 32 0.00478 + 33 0.0143 + 37 0.00159 + 41 0.318 + 42 0.0382 + 44 0.00318 + 45 0.0175 + 46 0.00478 + 47 0.0589 + + 21 11 6 0 + 0 0.273 + 2 0.0909 + 13 0.0909 + 14 0.182 + 21 0.0909 + 41 0.273 + + 26 36 15 0 + 0 0.0278 + 2 0.0833 + 8 0.0833 + 13 0.306 + 14 0.0833 + 15 0.0278 + 19 0.0278 + 21 0.0556 + 28 0.0278 + 29 0.0556 + 30 0.0278 + 31 0.0833 + 33 0.0278 + 41 0.0556 + 44 0.0278 + + 48 1 1 0 + 7 1 + + 57 6 3 0 + 21 0.333 + 33 0.167 + 42 0.5 + + 50 17 10 0 + 8 0.176 + 13 0.118 + 14 0.0588 + 24 0.0588 + 28 0.0588 + 30 0.0588 + 31 0.118 + 33 0.0588 + 41 0.235 + 45 0.0588 + + 55 142 21 4 + 0 0.134 + 2 0.0563 + 3 0.00704 + 7 0.141 + 8 0.0141 + 13 0.0775 + 14 0.0493 + 15 0.00704 + 21 0.0423 + 24 0.00704 + 26 0.00704 + 28 0.0423 + 29 0.0423 + 30 0.00704 + 31 0.0704 + 32 0.00704 + 33 0.0282 + 41 0.162 + 42 0.0352 + 46 0.00704 + 47 0.0563 + + 41 2 2 0 + 30 0.5 + 41 0.5 + + 47 5 3 0 + 2 0.2 + 3 0.2 + 7 0.6 + + 55 3 2 0 + 8 0.333 + 41 0.667 + + 57 5 4 0 + 2 0.2 + 13 0.2 + 26 0.2 + 41 0.4 + + 57 1537 25 1 + 0 0.0104 + 2 0.013 + 3 0.00195 + 4 0.00846 + 7 0.00195 + 8 0.028 + 9 0.0026 + 12 0.000651 + 13 0.108 + 14 0.0638 + 15 0.0111 + 19 0.0039 + 21 0.0592 + 24 0.0026 + 28 0.0377 + 29 0.0163 + 30 0.318 + 31 0.249 + 32 0.00911 + 33 0.0117 + 41 0.0176 + 42 0.00846 + 45 0.00195 + 46 0.0013 + 47 0.013 + + 7 8 4 0 + 0 0.125 + 4 0.125 + 31 0.125 + 41 0.625 + + 74 5 2 0 + 41 0.2 + 47 0.8 + +58 7648 40 29 + 0 0.00628 + 2 0.0209 + 3 0.0234 + 4 0.0068 + 6 0.00157 + 7 0.0111 + 8 0.028 + 9 0.00144 + 10 0.00105 + 11 0.000262 + 12 0.00144 + 13 0.168 + 14 0.125 + 15 0.117 + 16 0.00405 + 18 0.00131 + 19 0.00902 + 20 0.000785 + 21 0.0369 + 22 0.00105 + 23 0.000262 + 24 0.00105 + 26 0.000785 + 28 0.00732 + 29 0.0034 + 30 0.00288 + 31 0.011 + 32 0.00366 + 33 0.00484 + 34 0.00209 + 35 0.000523 + 37 0.00235 + 40 0.0123 + 41 0.151 + 42 0.0554 + 43 0.000523 + 44 0.132 + 45 0.00392 + 46 0.036 + 47 0.00314 + + 0 2 1 0 + 2 1 + + 2 101 4 0 + 15 0.0099 + 41 0.327 + 42 0.406 + 44 0.257 + + 4 1 1 0 + 28 1 + + 7 6 3 0 + 41 0.333 + 42 0.167 + 44 0.5 + + 8 16 2 0 + 2 0.125 + 44 0.875 + + 13 22 5 0 + 2 0.0909 + 8 0.136 + 13 0.182 + 15 0.0455 + 44 0.545 + + 15 36 5 0 + 2 0.0556 + 15 0.139 + 41 0.0278 + 44 0.75 + 45 0.0278 + + 21 14 6 0 + 2 0.214 + 7 0.143 + 12 0.0714 + 41 0.143 + 42 0.286 + 44 0.143 + + 28 3 2 0 + 2 0.333 + 44 0.667 + + 32 2 1 0 + 2 1 + + 41 1008 32 9 + 0 0.0129 + 2 0.0595 + 3 0.0188 + 4 0.0109 + 6 0.00198 + 7 0.0218 + 8 0.0506 + 9 0.00298 + 10 0.000992 + 11 0.000992 + 12 0.00198 + 13 0.309 + 14 0.143 + 15 0.143 + 16 0.00397 + 18 0.00198 + 19 0.0139 + 21 0.101 + 22 0.00397 + 23 0.000992 + 24 0.00397 + 26 0.00198 + 28 0.0109 + 29 0.00893 + 30 0.00496 + 31 0.0268 + 32 0.00794 + 33 0.0129 + 34 0.00694 + 35 0.00198 + 37 0.00794 + 43 0.000992 + + 2 23 12 0 + 0 0.0435 + 3 0.0435 + 4 0.0435 + 6 0.0435 + 8 0.087 + 13 0.261 + 14 0.087 + 15 0.087 + 21 0.087 + 31 0.087 + 32 0.0435 + 33 0.087 + + 46 99 15 0 + 0 0.0202 + 4 0.0202 + 7 0.0202 + 8 0.121 + 13 0.424 + 14 0.152 + 15 0.0606 + 16 0.0101 + 19 0.0303 + 21 0.0505 + 24 0.0101 + 28 0.0303 + 31 0.0202 + 32 0.0202 + 43 0.0101 + + 49 51 12 0 + 0 0.0196 + 2 0.294 + 3 0.0196 + 7 0.0588 + 8 0.0784 + 13 0.216 + 14 0.118 + 15 0.0588 + 21 0.0588 + 28 0.0196 + 29 0.0196 + 31 0.0392 + + 52 6 3 0 + 7 0.5 + 13 0.333 + 30 0.167 + + 55 139 10 0 + 0 0.0144 + 3 0.0216 + 8 0.0144 + 10 0.00719 + 13 0.122 + 14 0.129 + 15 0.619 + 21 0.0576 + 31 0.00719 + 33 0.00719 + + 57 77 19 0 + 0 0.013 + 2 0.26 + 7 0.0649 + 8 0.039 + 13 0.221 + 14 0.104 + 15 0.0779 + 16 0.039 + 21 0.026 + 22 0.013 + 26 0.013 + 28 0.013 + 29 0.013 + 30 0.013 + 31 0.013 + 33 0.026 + 34 0.013 + 35 0.013 + 37 0.026 + + 62 507 29 0 + 0 0.00789 + 2 0.0375 + 3 0.0256 + 4 0.0158 + 6 0.00197 + 7 0.00986 + 8 0.0375 + 9 0.00592 + 11 0.00197 + 12 0.00197 + 13 0.349 + 14 0.168 + 15 0.0671 + 18 0.00394 + 19 0.0158 + 21 0.142 + 22 0.00592 + 23 0.00197 + 24 0.00592 + 26 0.00197 + 28 0.00789 + 29 0.00986 + 30 0.00394 + 31 0.0355 + 32 0.00789 + 33 0.00986 + 34 0.00592 + 35 0.00197 + 37 0.00986 + + 64 50 16 0 + 0 0.02 + 2 0.08 + 7 0.04 + 8 0.12 + 12 0.02 + 13 0.32 + 14 0.06 + 15 0.04 + 19 0.02 + 21 0.06 + 28 0.04 + 29 0.02 + 32 0.02 + 33 0.06 + 34 0.06 + 37 0.02 + + 66 45 12 0 + 2 0.0444 + 3 0.0222 + 7 0.0444 + 8 0.0222 + 13 0.378 + 14 0.156 + 15 0.0889 + 19 0.0444 + 21 0.133 + 29 0.0222 + 30 0.0222 + 31 0.0222 + + 42 412 25 9 + 0 0.00971 + 2 0.0146 + 3 0.034 + 4 0.00485 + 7 0.0121 + 8 0.0558 + 9 0.00243 + 10 0.00243 + 12 0.00243 + 13 0.354 + 14 0.26 + 15 0.102 + 16 0.00971 + 18 0.00243 + 19 0.00485 + 21 0.034 + 26 0.00243 + 28 0.017 + 29 0.00485 + 30 0.00485 + 31 0.0243 + 32 0.00971 + 33 0.00728 + 43 0.00243 + 46 0.0218 + + 2 40 13 0 + 3 0.05 + 4 0.025 + 8 0.125 + 13 0.325 + 14 0.025 + 15 0.075 + 21 0.1 + 28 0.025 + 29 0.05 + 30 0.05 + 31 0.05 + 32 0.075 + 46 0.025 + + 48 11 7 0 + 2 0.0909 + 3 0.0909 + 7 0.0909 + 8 0.0909 + 13 0.182 + 14 0.364 + 15 0.0909 + + 49 27 10 0 + 0 0.037 + 3 0.037 + 8 0.0741 + 12 0.037 + 13 0.481 + 14 0.148 + 15 0.0741 + 18 0.037 + 21 0.037 + 31 0.037 + + 51 3 3 0 + 13 0.333 + 15 0.333 + 26 0.333 + + 55 119 16 0 + 0 0.0168 + 2 0.0084 + 3 0.042 + 7 0.0084 + 8 0.0168 + 9 0.0084 + 13 0.345 + 14 0.319 + 15 0.118 + 16 0.0168 + 19 0.0084 + 21 0.0336 + 28 0.0168 + 31 0.0084 + 43 0.0084 + 46 0.0252 + + 57 81 15 0 + 0 0.0123 + 2 0.037 + 3 0.0617 + 4 0.0123 + 7 0.0247 + 8 0.0247 + 10 0.0123 + 13 0.309 + 14 0.321 + 15 0.037 + 21 0.0494 + 28 0.0123 + 31 0.037 + 33 0.0123 + 46 0.037 + + 62 65 12 0 + 2 0.0154 + 7 0.0154 + 8 0.138 + 13 0.385 + 14 0.277 + 15 0.0308 + 19 0.0154 + 21 0.0154 + 28 0.0154 + 31 0.0462 + 33 0.0308 + 46 0.0154 + + 64 38 8 0 + 8 0.0263 + 13 0.368 + 14 0.158 + 15 0.316 + 16 0.0526 + 28 0.0263 + 32 0.0263 + 46 0.0263 + + 69 15 3 0 + 13 0.467 + 14 0.333 + 15 0.2 + + 44 1007 29 18 + 0 0.00794 + 2 0.000993 + 3 0.0566 + 4 0.0119 + 6 0.00397 + 7 0.0129 + 8 0.0298 + 9 0.000993 + 10 0.000993 + 12 0.00199 + 13 0.183 + 14 0.229 + 15 0.291 + 16 0.00695 + 18 0.00199 + 19 0.0139 + 20 0.00298 + 21 0.00894 + 28 0.00894 + 29 0.00199 + 30 0.00397 + 31 0.00497 + 32 0.00199 + 33 0.00199 + 37 0.000993 + 40 0.0467 + 41 0.00993 + 46 0.0437 + 47 0.00894 + + 2 26 9 0 + 0 0.0769 + 6 0.0385 + 13 0.423 + 14 0.192 + 15 0.0769 + 16 0.0385 + 28 0.0385 + 30 0.0769 + 31 0.0385 + + 8 14 7 0 + 4 0.214 + 7 0.214 + 8 0.214 + 9 0.0714 + 13 0.143 + 15 0.0714 + 40 0.0714 + + 9 1 1 0 + 20 1 + + 13 12 7 0 + 3 0.167 + 4 0.333 + 7 0.167 + 10 0.0833 + 13 0.0833 + 15 0.0833 + 31 0.0833 + + 14 2 2 0 + 8 0.5 + 41 0.5 + + 15 27 6 0 + 4 0.111 + 15 0.667 + 16 0.037 + 19 0.0741 + 28 0.037 + 40 0.0741 + + 21 2 2 0 + 0 0.5 + 14 0.5 + + 28 2 1 0 + 28 1 + + 45 24 5 0 + 13 0.375 + 14 0.0417 + 15 0.458 + 18 0.0417 + 46 0.0833 + + 48 24 10 0 + 0 0.0417 + 2 0.0417 + 3 0.25 + 4 0.0417 + 8 0.125 + 13 0.333 + 14 0.0417 + 15 0.0417 + 16 0.0417 + 40 0.0417 + + 49 12 7 0 + 0 0.0833 + 8 0.25 + 12 0.167 + 13 0.25 + 15 0.0833 + 33 0.0833 + 47 0.0833 + + 51 3 3 0 + 8 0.333 + 15 0.333 + 47 0.333 + + 52 5 2 0 + 13 0.8 + 21 0.2 + + 55 676 20 0 + 3 0.0621 + 4 0.00148 + 6 0.00444 + 7 0.00888 + 8 0.00888 + 13 0.129 + 14 0.266 + 15 0.354 + 16 0.00592 + 18 0.00148 + 19 0.0163 + 20 0.00296 + 21 0.00296 + 28 0.00296 + 29 0.00148 + 31 0.00148 + 40 0.0636 + 41 0.00888 + 46 0.0562 + 47 0.00148 + + 57 52 14 0 + 0 0.0192 + 3 0.0192 + 8 0.0962 + 13 0.385 + 14 0.25 + 15 0.0385 + 19 0.0192 + 21 0.0385 + 28 0.0192 + 29 0.0192 + 30 0.0192 + 31 0.0385 + 41 0.0192 + 46 0.0192 + + 62 63 14 0 + 0 0.0317 + 3 0.0476 + 7 0.0159 + 8 0.0794 + 13 0.302 + 14 0.159 + 15 0.111 + 21 0.0635 + 28 0.0159 + 32 0.0317 + 33 0.0159 + 37 0.0159 + 46 0.0159 + 47 0.0952 + + 64 23 7 0 + 3 0.087 + 8 0.0435 + 13 0.565 + 14 0.174 + 28 0.0435 + 41 0.0435 + 46 0.0435 + + 69 25 5 0 + 3 0.04 + 13 0.16 + 14 0.56 + 15 0.2 + 30 0.04 + + 45 30 4 0 + 41 0.0667 + 42 0.1 + 44 0.8 + 46 0.0333 + + 46 105 4 1 + 13 0.00952 + 33 0.00952 + 41 0.962 + 46 0.019 + + 42 1 1 0 + 13 1 + + 47 2420 38 11 + 0 0.00909 + 2 0.0298 + 3 0.0364 + 4 0.0107 + 6 0.00248 + 7 0.0165 + 8 0.0434 + 9 0.00207 + 10 0.00124 + 11 0.000413 + 12 0.00207 + 13 0.26 + 14 0.194 + 15 0.163 + 16 0.0062 + 18 0.00207 + 19 0.012 + 20 0.00124 + 21 0.0496 + 22 0.00165 + 23 0.000413 + 24 0.00165 + 26 0.00124 + 28 0.0116 + 29 0.00537 + 30 0.00455 + 31 0.0174 + 32 0.00579 + 33 0.00744 + 34 0.00331 + 35 0.000826 + 37 0.00372 + 40 0.0194 + 41 0.0306 + 42 0.00248 + 43 0.000826 + 46 0.0351 + 47 0.00496 + + 2 12 3 0 + 15 0.0833 + 41 0.833 + 42 0.0833 + + 41 884 32 0 + 0 0.0113 + 2 0.0679 + 3 0.0192 + 4 0.0124 + 6 0.00226 + 7 0.0249 + 8 0.0577 + 9 0.00339 + 10 0.00113 + 11 0.00113 + 12 0.00226 + 13 0.337 + 14 0.145 + 15 0.0679 + 16 0.00339 + 18 0.00226 + 19 0.0158 + 21 0.11 + 22 0.00452 + 23 0.00113 + 24 0.00452 + 26 0.00226 + 28 0.0124 + 29 0.0102 + 30 0.00566 + 31 0.0305 + 32 0.00905 + 33 0.0147 + 34 0.00792 + 35 0.00226 + 37 0.00905 + 43 0.00113 + + 42 407 25 0 + 0 0.00983 + 2 0.0147 + 3 0.0344 + 4 0.00491 + 7 0.0123 + 8 0.0565 + 9 0.00246 + 10 0.00246 + 12 0.00246 + 13 0.359 + 14 0.263 + 15 0.0958 + 16 0.00983 + 18 0.00246 + 19 0.00246 + 21 0.0344 + 26 0.00246 + 28 0.0172 + 29 0.00491 + 30 0.00491 + 31 0.0246 + 32 0.00983 + 33 0.00737 + 43 0.00246 + 46 0.0197 + + 44 1007 29 0 + 0 0.00794 + 2 0.000993 + 3 0.0566 + 4 0.0119 + 6 0.00397 + 7 0.0129 + 8 0.0298 + 9 0.000993 + 10 0.000993 + 12 0.00199 + 13 0.183 + 14 0.229 + 15 0.291 + 16 0.00695 + 18 0.00199 + 19 0.0139 + 20 0.00298 + 21 0.00894 + 28 0.00894 + 29 0.00199 + 30 0.00397 + 31 0.00497 + 32 0.00199 + 33 0.00199 + 37 0.000993 + 40 0.0467 + 41 0.00993 + 46 0.0437 + 47 0.00894 + + 49 6 3 0 + 41 0.667 + 42 0.167 + 46 0.167 + + 51 1 1 0 + 42 1 + + 55 5 3 0 + 41 0.4 + 46 0.4 + 47 0.2 + + 57 9 5 0 + 2 0.333 + 14 0.111 + 15 0.111 + 41 0.333 + 42 0.111 + + 62 70 9 0 + 4 0.0143 + 8 0.0143 + 14 0.0286 + 16 0.0143 + 34 0.0143 + 41 0.557 + 42 0.0286 + 46 0.3 + 47 0.0286 + + 64 3 2 0 + 2 0.667 + 46 0.333 + + 66 12 2 0 + 41 0.333 + 46 0.667 + + 48 48 7 0 + 0 0.0208 + 13 0.0417 + 21 0.146 + 41 0.0208 + 42 0.229 + 44 0.5 + 45 0.0417 + + 49 102 7 3 + 7 0.0098 + 14 0.0098 + 21 0.0392 + 41 0.539 + 42 0.275 + 44 0.118 + 46 0.0098 + + 41 4 1 0 + 42 1 + + 47 57 5 0 + 14 0.0175 + 21 0.0526 + 41 0.684 + 42 0.14 + 44 0.105 + + 48 6 3 0 + 21 0.167 + 41 0.333 + 44 0.5 + + 51 8 3 0 + 41 0.125 + 42 0.5 + 44 0.375 + + 52 12 3 0 + 41 0.5 + 42 0.0833 + 44 0.417 + + 55 985 13 2 + 3 0.00102 + 7 0.00203 + 8 0.00102 + 9 0.00102 + 13 0.00102 + 19 0.00203 + 21 0.0223 + 41 0.143 + 42 0.121 + 44 0.686 + 45 0.0122 + 46 0.00609 + 47 0.00102 + + 41 101 4 0 + 41 0.109 + 42 0.0297 + 44 0.851 + 46 0.0099 + + 69 25 2 0 + 41 0.96 + 46 0.04 + + 57 225 9 1 + 2 0.0178 + 13 0.00889 + 14 0.00889 + 15 0.00444 + 41 0.356 + 42 0.364 + 44 0.231 + 45 0.00444 + 46 0.00444 + + 41 12 2 0 + 42 0.917 + 44 0.0833 + + 58 4 3 0 + 13 0.5 + 21 0.25 + 46 0.25 + + 62 781 11 2 + 4 0.00128 + 8 0.00128 + 14 0.00256 + 16 0.00128 + 34 0.00128 + 41 0.699 + 42 0.0858 + 44 0.0807 + 45 0.0128 + 46 0.111 + 47 0.00256 + + 41 5 3 0 + 41 0.2 + 42 0.4 + 45 0.4 + + 46 2 1 0 + 45 1 + + 64 117 8 0 + 2 0.0171 + 10 0.00855 + 15 0.00855 + 21 0.00855 + 41 0.427 + 42 0.325 + 44 0.197 + 46 0.00855 + + 66 86 2 0 + 41 0.57 + 46 0.43 + + 67 6 3 0 + 41 0.167 + 44 0.167 + 45 0.667 + + 68 4 3 0 + 21 0.25 + 42 0.5 + 44 0.25 + + 69 68 9 0 + 10 0.0147 + 13 0.0294 + 14 0.0441 + 15 0.176 + 19 0.118 + 21 0.0147 + 41 0.0147 + 42 0.221 + 44 0.368 + +59 5288 19 7 + 0 0.00265 + 2 0.000378 + 3 0.000378 + 4 0.00151 + 7 0.000378 + 8 0.00227 + 9 0.000378 + 13 0.0223 + 14 0.0129 + 15 0.00227 + 19 0.0318 + 21 0.000756 + 24 0.000756 + 28 0.326 + 29 0.179 + 30 0.151 + 31 0.169 + 32 0.0416 + 33 0.0552 + + 2 2 1 0 + 24 1 + + 7 65 11 0 + 8 0.0154 + 13 0.0308 + 14 0.0154 + 15 0.0154 + 19 0.0769 + 28 0.154 + 29 0.277 + 30 0.108 + 31 0.215 + 32 0.0308 + 33 0.0615 + + 8 6 4 0 + 8 0.167 + 14 0.167 + 28 0.5 + 31 0.167 + + 21 84 12 0 + 0 0.0119 + 3 0.0119 + 13 0.0833 + 14 0.0238 + 15 0.0119 + 19 0.0714 + 28 0.238 + 29 0.107 + 30 0.155 + 31 0.226 + 32 0.0238 + 33 0.0357 + + 23 1 1 0 + 0 1 + + 24 2483 18 1 + 0 0.00201 + 2 0.000805 + 4 0.00161 + 7 0.000403 + 8 0.00161 + 9 0.000403 + 13 0.0201 + 14 0.0117 + 15 0.00161 + 19 0.0294 + 21 0.000805 + 24 0.000403 + 28 0.333 + 29 0.178 + 30 0.153 + 31 0.166 + 32 0.0427 + 33 0.056 + + 2 2 1 0 + 13 1 + + 47 2642 18 4 + 0 0.00265 + 3 0.000379 + 4 0.00151 + 7 0.000379 + 8 0.00227 + 9 0.000379 + 13 0.0223 + 14 0.0129 + 15 0.00227 + 19 0.0318 + 21 0.000757 + 24 0.000379 + 28 0.326 + 29 0.179 + 30 0.151 + 31 0.169 + 32 0.0416 + 33 0.0553 + + 7 65 11 0 + 8 0.0154 + 13 0.0308 + 14 0.0154 + 15 0.0154 + 19 0.0769 + 28 0.154 + 29 0.277 + 30 0.108 + 31 0.215 + 32 0.0308 + 33 0.0615 + + 8 6 4 0 + 8 0.167 + 14 0.167 + 28 0.5 + 31 0.167 + + 21 84 12 0 + 0 0.0119 + 3 0.0119 + 13 0.0833 + 14 0.0238 + 15 0.0119 + 19 0.0714 + 28 0.238 + 29 0.107 + 30 0.155 + 31 0.226 + 32 0.0238 + 33 0.0357 + + 23 1 1 0 + 0 1 + +60 27233 41 25 + 0 0.0313 + 1 7.34e-05 + 2 0.0264 + 3 0.111 + 4 0.0584 + 7 0.296 + 8 0.0205 + 9 0.0164 + 10 0.0061 + 13 0.0187 + 14 0.00639 + 15 0.00323 + 16 0.000147 + 17 0.000257 + 18 0.00804 + 19 0.000808 + 20 0.00463 + 21 0.0559 + 22 0.00382 + 23 7.34e-05 + 24 0.0051 + 25 0.00011 + 26 0.11 + 28 0.038 + 29 0.0476 + 30 0.0154 + 31 0.0166 + 32 0.00543 + 33 0.0142 + 34 0.000441 + 36 0.000147 + 37 0.00125 + 38 0.0047 + 39 0.00683 + 41 0.0143 + 42 0.0234 + 43 0.000184 + 44 0.0134 + 45 0.00114 + 46 0.00022 + 47 0.0135 + + 2 230 9 4 + 3 0.626 + 4 0.0304 + 7 0.00435 + 8 0.00435 + 13 0.265 + 14 0.0565 + 31 0.00435 + 41 0.00435 + 43 0.00435 + + 3 94 4 0 + 3 0.543 + 4 0.0426 + 13 0.404 + 31 0.0106 + + 7 4 3 0 + 3 0.25 + 4 0.5 + 7 0.25 + + 9 51 3 0 + 3 0.627 + 13 0.176 + 14 0.196 + + 39 43 5 0 + 3 0.907 + 4 0.0233 + 14 0.0233 + 41 0.0233 + 43 0.0233 + + 3 6618 35 9 + 0 0.011 + 2 0.0193 + 3 0.317 + 4 0.0252 + 7 0.221 + 8 0.0113 + 9 0.000151 + 10 0.0192 + 13 0.0119 + 14 0.00287 + 15 0.00181 + 16 0.000151 + 18 0.00468 + 19 0.000302 + 20 0.00181 + 21 0.0979 + 22 0.000151 + 24 0.00121 + 25 0.000453 + 26 0.116 + 28 0.00861 + 29 0.0323 + 30 0.00378 + 31 0.00423 + 32 0.00212 + 33 0.00242 + 34 0.000453 + 38 0.0192 + 39 0.0264 + 41 0.0068 + 42 0.0258 + 43 0.000151 + 44 0.000453 + 45 0.000907 + 47 0.00181 + + 2 115 19 0 + 0 0.0261 + 2 0.0435 + 3 0.209 + 4 0.0609 + 7 0.243 + 8 0.0435 + 13 0.0174 + 14 0.0087 + 19 0.0087 + 21 0.0261 + 26 0.0087 + 28 0.0261 + 29 0.0174 + 31 0.0261 + 32 0.0087 + 33 0.0087 + 38 0.0087 + 39 0.191 + 45 0.0174 + + 3 2100 30 0 + 0 0.0229 + 2 0.0143 + 4 0.0305 + 7 0.277 + 8 0.0162 + 10 0.00143 + 13 0.00286 + 14 0.00667 + 15 0.00524 + 16 0.000476 + 18 0.0138 + 20 0.00571 + 21 0.0419 + 22 0.000476 + 24 0.00238 + 25 0.00143 + 26 0.224 + 28 0.0181 + 29 0.0929 + 30 0.00857 + 31 0.00905 + 32 0.000952 + 33 0.00476 + 34 0.00143 + 38 0.0576 + 39 0.0376 + 41 0.0171 + 42 0.0786 + 44 0.000476 + 47 0.00571 + + 7 33 11 0 + 0 0.0303 + 2 0.0606 + 3 0.0303 + 7 0.303 + 13 0.0303 + 21 0.303 + 31 0.0303 + 32 0.0606 + 33 0.0303 + 41 0.0909 + 42 0.0303 + + 8 4 2 0 + 3 0.5 + 4 0.5 + + 9 13 8 0 + 0 0.154 + 2 0.0769 + 10 0.0769 + 28 0.0769 + 29 0.231 + 30 0.0769 + 32 0.0769 + 41 0.231 + + 13 293 22 0 + 0 0.0205 + 2 0.0751 + 3 0.294 + 4 0.0546 + 7 0.171 + 8 0.0102 + 10 0.00341 + 13 0.0102 + 14 0.00683 + 15 0.00341 + 18 0.00341 + 21 0.041 + 26 0.232 + 28 0.0137 + 29 0.00683 + 30 0.00683 + 31 0.0102 + 32 0.0137 + 33 0.00683 + 39 0.00683 + 42 0.00341 + 45 0.00683 + + 14 71 14 0 + 0 0.0986 + 2 0.127 + 3 0.0423 + 4 0.0141 + 7 0.254 + 14 0.0141 + 21 0.127 + 26 0.169 + 28 0.0563 + 29 0.0141 + 41 0.0282 + 42 0.0282 + 44 0.0141 + 45 0.0141 + + 26 310 22 0 + 0 0.0194 + 3 0.171 + 4 0.0258 + 7 0.155 + 8 0.0194 + 9 0.00323 + 10 0.00323 + 13 0.216 + 19 0.00323 + 21 0.0419 + 24 0.00645 + 28 0.0226 + 29 0.0323 + 30 0.0129 + 31 0.00323 + 32 0.0129 + 33 0.00645 + 39 0.232 + 42 0.00323 + 43 0.00323 + 44 0.00323 + 45 0.00323 + + 47 3678 16 0 + 2 0.016 + 3 0.525 + 4 0.0188 + 7 0.198 + 8 0.00734 + 10 0.0329 + 14 0.000272 + 18 0.000272 + 21 0.139 + 24 0.000272 + 26 0.0593 + 29 0.000272 + 31 0.000272 + 38 0.00136 + 41 0.000272 + 42 0.000272 + + 4 242 23 7 + 0 0.0124 + 2 0.0248 + 3 0.00413 + 4 0.00413 + 7 0.343 + 10 0.0289 + 13 0.0207 + 14 0.00413 + 17 0.0289 + 21 0.165 + 24 0.0165 + 26 0.0331 + 28 0.0702 + 29 0.0702 + 30 0.0165 + 31 0.0248 + 32 0.00413 + 33 0.0289 + 41 0.00826 + 42 0.00826 + 44 0.00413 + 46 0.00413 + 47 0.0744 + + 2 7 5 0 + 7 0.286 + 29 0.286 + 31 0.143 + 32 0.143 + 47 0.143 + + 3 79 19 0 + 0 0.0253 + 2 0.038 + 3 0.0127 + 7 0.278 + 10 0.0253 + 13 0.0506 + 17 0.0127 + 21 0.0127 + 24 0.0127 + 26 0.0253 + 28 0.0633 + 29 0.127 + 30 0.0253 + 33 0.038 + 41 0.0253 + 42 0.0253 + 44 0.0127 + 46 0.0127 + 47 0.177 + + 8 39 9 0 + 7 0.154 + 10 0.0769 + 13 0.0256 + 14 0.0256 + 21 0.513 + 26 0.0769 + 28 0.0769 + 29 0.0256 + 30 0.0256 + + 9 7 3 0 + 7 0.429 + 26 0.429 + 28 0.143 + + 13 35 12 0 + 0 0.0286 + 2 0.0571 + 4 0.0286 + 7 0.429 + 17 0.114 + 21 0.143 + 24 0.0286 + 28 0.0286 + 29 0.0286 + 31 0.0286 + 33 0.0571 + 47 0.0286 + + 39 24 9 0 + 7 0.208 + 17 0.0417 + 21 0.0833 + 28 0.25 + 29 0.0833 + 30 0.0417 + 31 0.167 + 33 0.0833 + 47 0.0417 + + 47 41 6 0 + 7 0.634 + 10 0.0488 + 17 0.0244 + 21 0.244 + 24 0.0244 + 47 0.0244 + + 7 1759 31 14 + 0 0.0352 + 1 0.000569 + 2 0.0222 + 3 0.0188 + 4 0.00227 + 7 0.204 + 8 0.0824 + 9 0.252 + 10 0.00114 + 13 0.00569 + 14 0.0131 + 15 0.00114 + 16 0.000569 + 19 0.00114 + 21 0.0495 + 22 0.0563 + 24 0.00682 + 26 0.0324 + 28 0.0591 + 29 0.0233 + 30 0.021 + 31 0.0171 + 32 0.00625 + 33 0.0347 + 37 0.00625 + 41 0.0148 + 42 0.00455 + 44 0.00284 + 45 0.00227 + 46 0.00114 + 47 0.0222 + + 3 910 26 0 + 0 0.0297 + 2 0.0176 + 3 0.0275 + 4 0.0022 + 7 0.137 + 8 0.112 + 9 0.289 + 13 0.0011 + 14 0.0044 + 15 0.0011 + 16 0.0011 + 21 0.0593 + 22 0.0725 + 24 0.0022 + 26 0.0396 + 28 0.0418 + 29 0.0286 + 30 0.0231 + 31 0.0154 + 32 0.0044 + 33 0.0396 + 37 0.0011 + 41 0.0187 + 42 0.00549 + 45 0.0011 + 47 0.0242 + + 4 45 17 0 + 0 0.0222 + 3 0.0444 + 4 0.0222 + 7 0.0889 + 8 0.0222 + 9 0.333 + 10 0.0222 + 13 0.0222 + 14 0.0444 + 21 0.0444 + 22 0.156 + 24 0.0222 + 29 0.0222 + 31 0.0444 + 33 0.0222 + 41 0.0222 + 42 0.0444 + + 7 5 2 0 + 3 0.8 + 9 0.2 + + 8 11 4 0 + 8 0.0909 + 14 0.364 + 21 0.273 + 22 0.273 + + 10 161 20 0 + 0 0.0435 + 1 0.00621 + 2 0.0497 + 7 0.404 + 8 0.00621 + 13 0.00621 + 14 0.00621 + 21 0.00621 + 24 0.0248 + 26 0.0248 + 28 0.137 + 29 0.0248 + 30 0.0435 + 31 0.0248 + 32 0.00621 + 33 0.0186 + 37 0.0621 + 41 0.0248 + 45 0.00621 + 47 0.0745 + + 13 26 13 0 + 0 0.115 + 4 0.0385 + 9 0.346 + 13 0.0385 + 21 0.0769 + 22 0.0769 + 26 0.0385 + 30 0.0385 + 31 0.0385 + 33 0.0769 + 42 0.0385 + 45 0.0385 + 47 0.0385 + + 14 16 5 0 + 2 0.125 + 7 0.0625 + 9 0.375 + 14 0.375 + 46 0.0625 + + 17 27 10 0 + 0 0.0741 + 7 0.111 + 9 0.481 + 21 0.0741 + 22 0.0741 + 26 0.037 + 28 0.037 + 30 0.037 + 32 0.037 + 45 0.037 + + 21 16 8 0 + 0 0.125 + 3 0.0625 + 8 0.0625 + 9 0.438 + 13 0.0625 + 21 0.0625 + 22 0.0625 + 41 0.125 + + 26 53 12 0 + 7 0.472 + 13 0.0377 + 14 0.0566 + 19 0.0189 + 21 0.0189 + 24 0.0189 + 28 0.226 + 31 0.0189 + 32 0.0377 + 33 0.0377 + 41 0.0377 + 47 0.0189 + + 28 2 1 0 + 22 1 + + 38 10 8 0 + 2 0.2 + 8 0.1 + 9 0.1 + 21 0.1 + 26 0.1 + 28 0.2 + 29 0.1 + 33 0.1 + + 39 470 23 0 + 0 0.0404 + 2 0.0213 + 7 0.287 + 8 0.0809 + 9 0.27 + 10 0.00213 + 13 0.00638 + 14 0.00638 + 15 0.00213 + 19 0.00213 + 21 0.0404 + 22 0.034 + 24 0.00851 + 26 0.0298 + 28 0.0596 + 29 0.0191 + 30 0.0149 + 31 0.0149 + 32 0.00638 + 33 0.034 + 44 0.0106 + 46 0.00213 + 47 0.00638 + + 47 3 3 0 + 2 0.333 + 9 0.333 + 21 0.333 + + 8 256 17 9 + 0 0.0117 + 2 0.00391 + 3 0.0156 + 4 0.195 + 7 0.117 + 10 0.00781 + 15 0.00391 + 21 0.594 + 22 0.00391 + 26 0.00781 + 28 0.00391 + 29 0.00391 + 30 0.00781 + 31 0.00781 + 33 0.00781 + 39 0.00391 + 41 0.00391 + + 3 37 9 0 + 0 0.0541 + 4 0.459 + 7 0.297 + 26 0.027 + 28 0.027 + 29 0.027 + 30 0.027 + 31 0.0541 + 33 0.027 + + 7 140 4 0 + 0 0.00714 + 4 0.00714 + 7 0.00714 + 21 0.979 + + 13 4 3 0 + 4 0.5 + 7 0.25 + 41 0.25 + + 14 3 3 0 + 2 0.333 + 7 0.333 + 33 0.333 + + 21 1 1 0 + 30 1 + + 26 4 3 0 + 4 0.25 + 7 0.5 + 15 0.25 + + 39 8 3 0 + 4 0.625 + 7 0.25 + 21 0.125 + + 41 1 1 0 + 39 1 + + 47 56 7 0 + 3 0.0714 + 4 0.411 + 7 0.196 + 10 0.0357 + 21 0.25 + 22 0.0179 + 26 0.0179 + + 9 511 25 2 + 0 0.0509 + 2 0.133 + 3 0.0254 + 4 0.0274 + 7 0.29 + 8 0.00196 + 13 0.0157 + 14 0.00783 + 15 0.00391 + 19 0.00196 + 20 0.00196 + 21 0.047 + 24 0.00391 + 26 0.0391 + 28 0.0685 + 29 0.0705 + 30 0.0352 + 31 0.0391 + 32 0.00587 + 33 0.0235 + 37 0.00391 + 41 0.0509 + 42 0.0157 + 45 0.00196 + 47 0.0352 + + 7 443 23 0 + 0 0.0587 + 2 0.0384 + 4 0.0316 + 7 0.334 + 13 0.0158 + 14 0.00677 + 15 0.00451 + 19 0.00226 + 20 0.00226 + 21 0.0519 + 24 0.00451 + 26 0.0451 + 28 0.079 + 29 0.0813 + 30 0.0406 + 31 0.0451 + 32 0.00677 + 33 0.0271 + 37 0.00451 + 41 0.0587 + 42 0.0181 + 45 0.00226 + 47 0.0406 + + 47 67 5 0 + 2 0.761 + 3 0.194 + 8 0.0149 + 14 0.0149 + 21 0.0149 + + 10 163 2 0 + 2 0.00613 + 7 0.994 + + 13 383 11 5 + 3 0.765 + 4 0.094 + 7 0.0731 + 8 0.0104 + 10 0.00522 + 20 0.00261 + 21 0.0339 + 24 0.00261 + 26 0.00783 + 33 0.00261 + 42 0.00261 + + 2 23 1 0 + 3 1 + + 7 3 2 0 + 4 0.667 + 7 0.333 + + 26 108 3 0 + 3 0.972 + 7 0.0185 + 21 0.00926 + + 39 1 1 0 + 20 1 + + 47 248 10 0 + 3 0.665 + 4 0.137 + 7 0.101 + 8 0.0161 + 10 0.00806 + 21 0.0484 + 24 0.00403 + 26 0.0121 + 33 0.00403 + 42 0.00403 + + 14 104 11 4 + 2 0.00962 + 3 0.683 + 4 0.00962 + 7 0.173 + 8 0.0288 + 15 0.00962 + 21 0.0385 + 26 0.00962 + 28 0.0192 + 41 0.00962 + 45 0.00962 + + 3 1 1 0 + 4 1 + + 7 10 6 0 + 2 0.1 + 3 0.4 + 7 0.1 + 28 0.2 + 41 0.1 + 45 0.1 + + 47 82 4 0 + 3 0.707 + 7 0.207 + 8 0.0366 + 21 0.0488 + + 58 1 1 0 + 15 1 + + 15 2 2 0 + 3 0.5 + 15 0.5 + + 17 43 7 0 + 4 0.0233 + 7 0.628 + 10 0.0698 + 14 0.0233 + 21 0.209 + 28 0.0233 + 31 0.0233 + + 21 1368 30 13 + 0 0.0775 + 2 0.0702 + 3 0.00146 + 4 0.0139 + 7 0.284 + 8 0.00439 + 13 0.0168 + 14 0.0102 + 15 0.00512 + 18 0.00146 + 19 0.00292 + 20 0.00146 + 21 0.0694 + 23 0.000731 + 24 0.0146 + 26 0.0373 + 28 0.0877 + 29 0.0687 + 30 0.0234 + 31 0.0307 + 32 0.0183 + 33 0.0424 + 36 0.000731 + 37 0.00219 + 41 0.0387 + 42 0.0175 + 43 0.000731 + 44 0.00512 + 45 0.00219 + 47 0.0497 + + 3 628 30 0 + 0 0.0955 + 2 0.0446 + 3 0.00318 + 4 0.00796 + 7 0.247 + 8 0.00159 + 13 0.0175 + 14 0.00478 + 15 0.00955 + 18 0.00159 + 19 0.00318 + 20 0.00318 + 21 0.0525 + 23 0.00159 + 24 0.00637 + 26 0.0318 + 28 0.0732 + 29 0.0971 + 30 0.0271 + 31 0.035 + 32 0.0223 + 33 0.0589 + 36 0.00159 + 37 0.00318 + 41 0.0478 + 42 0.0159 + 43 0.00159 + 44 0.00796 + 45 0.00318 + 47 0.0732 + + 4 38 10 0 + 2 0.0526 + 7 0.263 + 14 0.0263 + 21 0.0789 + 28 0.0263 + 29 0.0789 + 31 0.0526 + 33 0.105 + 41 0.132 + 47 0.184 + + 7 71 14 0 + 0 0.0845 + 2 0.0423 + 7 0.183 + 8 0.0423 + 21 0.394 + 24 0.0423 + 26 0.0141 + 28 0.0282 + 29 0.0282 + 32 0.0141 + 33 0.0563 + 41 0.0141 + 42 0.0282 + 47 0.0282 + + 8 152 20 0 + 0 0.0461 + 2 0.0592 + 4 0.00658 + 7 0.375 + 8 0.00658 + 13 0.0132 + 14 0.0263 + 21 0.0461 + 24 0.0329 + 26 0.0526 + 28 0.164 + 29 0.0526 + 30 0.0197 + 31 0.0197 + 32 0.0132 + 33 0.0132 + 37 0.00658 + 41 0.0132 + 42 0.0132 + 47 0.0197 + + 9 15 9 0 + 0 0.0667 + 4 0.133 + 7 0.267 + 21 0.0667 + 26 0.0667 + 28 0.0667 + 32 0.133 + 41 0.133 + 45 0.0667 + + 13 12 8 0 + 2 0.25 + 21 0.0833 + 24 0.0833 + 28 0.0833 + 29 0.0833 + 32 0.0833 + 41 0.0833 + 47 0.25 + + 14 4 3 0 + 7 0.5 + 24 0.25 + 29 0.25 + + 17 9 6 0 + 2 0.111 + 7 0.222 + 24 0.111 + 29 0.222 + 33 0.111 + 47 0.222 + + 21 59 17 0 + 0 0.0508 + 2 0.0169 + 7 0.102 + 13 0.0508 + 14 0.0847 + 19 0.0339 + 21 0.0169 + 24 0.0169 + 26 0.0169 + 28 0.288 + 29 0.0508 + 31 0.0678 + 32 0.0339 + 33 0.0508 + 41 0.0847 + 42 0.0169 + 47 0.0169 + + 26 21 10 0 + 0 0.19 + 2 0.0952 + 7 0.19 + 14 0.0476 + 15 0.0476 + 28 0.19 + 30 0.0952 + 33 0.0476 + 41 0.0476 + 42 0.0476 + + 38 11 8 0 + 7 0.182 + 21 0.0909 + 24 0.0909 + 26 0.182 + 28 0.182 + 29 0.0909 + 31 0.0909 + 42 0.0909 + + 39 296 20 0 + 0 0.0811 + 2 0.0676 + 4 0.0372 + 7 0.409 + 8 0.00338 + 13 0.0236 + 18 0.00338 + 21 0.0304 + 24 0.0101 + 26 0.0608 + 28 0.0709 + 29 0.0405 + 30 0.0338 + 31 0.0338 + 32 0.0101 + 33 0.0203 + 41 0.0203 + 42 0.0236 + 44 0.00676 + 47 0.0135 + + 47 51 3 0 + 2 0.529 + 7 0.255 + 21 0.216 + + 22 108 17 2 + 0 0.0556 + 2 0.0648 + 4 0.037 + 7 0.333 + 8 0.0185 + 13 0.00926 + 14 0.00926 + 21 0.0278 + 24 0.0185 + 26 0.00926 + 28 0.0185 + 29 0.0926 + 30 0.13 + 31 0.0556 + 33 0.037 + 41 0.0463 + 47 0.037 + + 26 2 2 0 + 0 0.5 + 28 0.5 + + 47 6 3 0 + 2 0.667 + 13 0.167 + 14 0.167 + + 24 3 3 0 + 21 0.333 + 28 0.333 + 41 0.333 + + 25 3 2 0 + 7 0.667 + 30 0.333 + + 26 510 10 4 + 3 0.608 + 7 0.104 + 8 0.00784 + 13 0.212 + 14 0.0118 + 21 0.0412 + 22 0.00392 + 24 0.00196 + 28 0.00784 + 32 0.00196 + + 3 345 9 0 + 3 0.539 + 7 0.0957 + 13 0.304 + 14 0.0145 + 21 0.0261 + 22 0.0029 + 24 0.0029 + 28 0.0116 + 32 0.0029 + + 8 1 1 0 + 8 1 + + 39 157 7 0 + 3 0.783 + 7 0.115 + 8 0.0127 + 13 0.00637 + 14 0.00637 + 21 0.0701 + 22 0.00637 + + 47 1 1 0 + 8 1 + + 31 6 2 0 + 4 0.833 + 20 0.167 + + 38 128 14 0 + 2 0.0312 + 4 0.102 + 7 0.43 + 8 0.0312 + 13 0.0156 + 18 0.0391 + 21 0.0859 + 24 0.00781 + 26 0.195 + 28 0.0156 + 29 0.0156 + 31 0.00781 + 42 0.0156 + 47 0.00781 + + 39 5335 31 2 + 0 0.0274 + 2 0.0231 + 3 0.00075 + 4 0.108 + 7 0.384 + 8 0.0249 + 10 0.00394 + 13 0.00506 + 14 0.00281 + 15 0.00356 + 18 0.0135 + 19 0.000375 + 20 0.00862 + 21 0.0583 + 24 0.00375 + 26 0.153 + 28 0.0319 + 29 0.0437 + 30 0.0144 + 31 0.0172 + 32 0.00356 + 33 0.00619 + 34 0.000562 + 36 0.000187 + 37 0.000187 + 41 0.00656 + 42 0.0191 + 44 0.0313 + 45 0.000187 + 46 0.000187 + 47 0.0045 + + 3 165 16 0 + 0 0.0182 + 2 0.0242 + 4 0.103 + 7 0.582 + 8 0.0242 + 15 0.00606 + 18 0.0121 + 20 0.00606 + 21 0.0727 + 26 0.0121 + 28 0.0485 + 29 0.0182 + 31 0.0364 + 33 0.00606 + 42 0.0121 + 44 0.0182 + + 8 1 1 0 + 20 1 + + 41 2 2 0 + 8 0.5 + 38 0.5 + + 45 3 3 0 + 0 0.333 + 21 0.333 + 28 0.333 + + 46 2 2 0 + 9 0.5 + 10 0.5 + + 47 9444 38 17 + 0 0.0451 + 1 0.000106 + 2 0.026 + 3 0.00381 + 4 0.0736 + 7 0.334 + 8 0.019 + 9 0.000106 + 10 0.000106 + 13 0.0197 + 14 0.00805 + 15 0.00455 + 16 0.000212 + 18 0.0115 + 19 0.00116 + 20 0.00667 + 21 0.0109 + 22 0.000106 + 23 0.000106 + 24 0.0072 + 26 0.132 + 28 0.0547 + 29 0.0686 + 30 0.0222 + 31 0.0236 + 32 0.00784 + 33 0.0205 + 34 0.000635 + 36 0.000212 + 37 0.0018 + 39 0.00106 + 41 0.0205 + 42 0.0338 + 43 0.000212 + 44 0.0194 + 45 0.00148 + 46 0.000212 + 47 0.0195 + + 2 79 4 0 + 3 0.367 + 13 0.468 + 14 0.152 + 31 0.0127 + + 3 1998 31 0 + 0 0.0365 + 2 0.017 + 4 0.044 + 7 0.278 + 8 0.019 + 9 0.000501 + 13 0.0395 + 14 0.00901 + 15 0.00601 + 16 0.000501 + 18 0.015 + 19 0.001 + 20 0.00601 + 21 0.01 + 22 0.000501 + 24 0.0035 + 26 0.212 + 28 0.0285 + 29 0.107 + 30 0.0125 + 31 0.0135 + 32 0.00701 + 33 0.00801 + 34 0.0015 + 39 0.00501 + 41 0.022 + 42 0.0856 + 43 0.000501 + 44 0.0015 + 45 0.003 + 47 0.00601 + + 4 139 20 0 + 0 0.0216 + 2 0.0288 + 3 0.00719 + 7 0.273 + 13 0.036 + 14 0.00719 + 21 0.0144 + 24 0.0216 + 26 0.0432 + 28 0.122 + 29 0.122 + 30 0.0288 + 31 0.0432 + 32 0.00719 + 33 0.0504 + 41 0.0144 + 42 0.0144 + 44 0.00719 + 46 0.00719 + 47 0.129 + + 7 944 27 0 + 0 0.0657 + 1 0.00106 + 2 0.0371 + 4 0.00212 + 7 0.374 + 8 0.0053 + 13 0.00636 + 14 0.0138 + 15 0.00212 + 16 0.00106 + 19 0.00212 + 21 0.0169 + 24 0.0127 + 26 0.0604 + 28 0.11 + 29 0.0434 + 30 0.0392 + 31 0.0318 + 32 0.0117 + 33 0.0646 + 37 0.0117 + 41 0.0275 + 42 0.00847 + 44 0.0053 + 45 0.00318 + 46 0.00106 + 47 0.0413 + + 8 45 12 0 + 0 0.0667 + 2 0.0222 + 4 0.244 + 7 0.422 + 15 0.0222 + 26 0.0222 + 28 0.0222 + 29 0.0222 + 30 0.0444 + 31 0.0444 + 33 0.0444 + 41 0.0222 + + 9 422 23 0 + 0 0.0616 + 2 0.0403 + 4 0.0166 + 7 0.351 + 13 0.0166 + 14 0.00711 + 15 0.00474 + 19 0.00237 + 20 0.00237 + 21 0.0213 + 24 0.00474 + 26 0.0474 + 28 0.0829 + 29 0.0853 + 30 0.0427 + 31 0.0474 + 32 0.00711 + 33 0.0284 + 37 0.00474 + 41 0.0616 + 42 0.019 + 45 0.00237 + 47 0.0427 + + 13 8 7 0 + 4 0.125 + 7 0.25 + 20 0.125 + 21 0.125 + 24 0.125 + 33 0.125 + 42 0.125 + + 14 8 6 0 + 2 0.125 + 4 0.125 + 7 0.25 + 26 0.125 + 28 0.25 + 41 0.125 + + 17 3 3 0 + 14 0.333 + 28 0.333 + 31 0.333 + + 21 1259 30 0 + 0 0.0842 + 2 0.054 + 3 0.00159 + 4 0.0127 + 7 0.296 + 8 0.00397 + 13 0.0183 + 14 0.0103 + 15 0.00556 + 18 0.00159 + 19 0.00318 + 20 0.00159 + 21 0.0286 + 23 0.000794 + 24 0.0159 + 26 0.0397 + 28 0.0953 + 29 0.0747 + 30 0.0254 + 31 0.0334 + 32 0.0199 + 33 0.0461 + 36 0.000794 + 37 0.00238 + 41 0.0421 + 42 0.0191 + 43 0.000794 + 44 0.00556 + 45 0.00238 + 47 0.054 + + 22 100 16 0 + 0 0.06 + 2 0.03 + 4 0.01 + 7 0.36 + 8 0.02 + 13 0.01 + 21 0.03 + 24 0.02 + 26 0.01 + 28 0.02 + 29 0.1 + 30 0.14 + 31 0.06 + 33 0.04 + 41 0.05 + 47 0.04 + + 24 2 2 0 + 28 0.5 + 41 0.5 + + 26 5 2 0 + 28 0.8 + 32 0.2 + + 31 6 2 0 + 4 0.833 + 20 0.167 + + 38 105 13 0 + 2 0.019 + 4 0.124 + 7 0.429 + 8 0.0381 + 13 0.019 + 18 0.0476 + 24 0.00952 + 26 0.238 + 28 0.019 + 29 0.019 + 31 0.00952 + 42 0.019 + 47 0.00952 + + 39 4310 30 0 + 0 0.0339 + 2 0.0186 + 3 0.000928 + 4 0.128 + 7 0.366 + 8 0.029 + 10 0.000232 + 13 0.00603 + 14 0.00348 + 15 0.00441 + 18 0.0167 + 19 0.000464 + 20 0.0107 + 21 0.00348 + 24 0.00464 + 26 0.152 + 28 0.0394 + 29 0.0541 + 30 0.0179 + 31 0.0202 + 32 0.00441 + 33 0.00766 + 34 0.000696 + 36 0.000232 + 37 0.000232 + 41 0.00812 + 42 0.0237 + 44 0.0387 + 45 0.000232 + 47 0.00557 + + 45 3 3 0 + 0 0.333 + 21 0.333 + 28 0.333 + + 55 4 3 0 + 7 0.5 + 42 0.25 + 45 0.25 + + 58 1 1 0 + 14 1 + +61 127 13 5 + 2 0.0315 + 3 0.00787 + 4 0.0315 + 8 0.0157 + 13 0.189 + 14 0.0709 + 15 0.00787 + 21 0.15 + 24 0.00787 + 28 0.0157 + 41 0.441 + 42 0.0157 + 46 0.0157 + + 47 47 8 0 + 2 0.0426 + 4 0.0426 + 13 0.191 + 14 0.0851 + 28 0.0213 + 41 0.574 + 42 0.0213 + 46 0.0213 + + 49 32 6 0 + 2 0.0625 + 4 0.0625 + 13 0.0938 + 14 0.0625 + 24 0.0312 + 41 0.688 + + 55 24 7 0 + 8 0.0833 + 13 0.0833 + 14 0.0417 + 15 0.0417 + 21 0.667 + 41 0.0417 + 46 0.0417 + + 57 11 4 0 + 13 0.455 + 14 0.0909 + 28 0.0909 + 41 0.364 + + 64 1 1 0 + 3 1 + +62 295300 46 32 + 0 0.00594 + 1 0.000213 + 2 0.0265 + 3 0.00539 + 4 0.00642 + 5 0.0029 + 6 5.08e-05 + 7 0.092 + 8 0.0115 + 9 0.000735 + 10 0.000362 + 11 4.06e-05 + 12 0.000328 + 13 0.0983 + 14 0.0637 + 15 0.0501 + 16 0.00223 + 17 1.35e-05 + 18 0.000511 + 19 0.0512 + 20 4.74e-05 + 21 0.0258 + 22 0.00043 + 23 4.74e-05 + 24 0.000969 + 25 2.37e-05 + 26 0.00111 + 27 0.000102 + 28 0.0131 + 29 0.035 + 30 0.00893 + 31 0.0163 + 32 0.0106 + 33 0.0136 + 34 0.0284 + 35 0.0149 + 36 6.77e-06 + 37 0.0127 + 40 0.000139 + 41 0.079 + 42 0.0087 + 43 0.000972 + 44 0.00109 + 45 0.0288 + 46 0.00572 + 47 0.275 + + 0 8 5 0 + 2 0.125 + 13 0.375 + 14 0.25 + 15 0.125 + 37 0.125 + + 2 2293 7 5 + 9 0.000436 + 13 0.000436 + 41 0.00741 + 42 0.00174 + 45 0.044 + 46 0.000436 + 47 0.945 + + 55 1575 4 0 + 41 0.0019 + 45 0.047 + 46 0.000635 + 47 0.95 + + 57 241 3 0 + 42 0.0083 + 45 0.0124 + 47 0.979 + + 62 101 4 0 + 41 0.109 + 42 0.0099 + 45 0.0594 + 47 0.822 + + 66 1 1 0 + 41 1 + + 69 19 5 0 + 9 0.0526 + 13 0.0526 + 41 0.0526 + 45 0.105 + 47 0.737 + + 4 32 9 0 + 4 0.0312 + 8 0.0312 + 14 0.156 + 15 0.312 + 19 0.25 + 34 0.0625 + 35 0.0312 + 41 0.0938 + 42 0.0312 + + 7 39 2 0 + 45 0.0256 + 47 0.974 + + 12 4 3 0 + 14 0.25 + 19 0.5 + 37 0.25 + + 21 199 25 5 + 0 0.0101 + 2 0.0201 + 7 0.101 + 8 0.0201 + 12 0.0201 + 13 0.0704 + 14 0.0452 + 15 0.0201 + 19 0.0452 + 21 0.0151 + 23 0.00503 + 24 0.00503 + 25 0.00503 + 28 0.00503 + 29 0.106 + 31 0.0302 + 32 0.00503 + 33 0.00503 + 35 0.00503 + 37 0.00503 + 41 0.0704 + 42 0.0151 + 45 0.0251 + 46 0.0101 + 47 0.337 + + 41 7 2 0 + 45 0.143 + 47 0.857 + + 55 44 5 0 + 2 0.0682 + 37 0.0227 + 41 0.114 + 45 0.0455 + 47 0.75 + + 57 7 1 0 + 47 1 + + 64 5 1 0 + 47 1 + + 69 122 24 0 + 0 0.0164 + 2 0.0082 + 7 0.148 + 8 0.0328 + 12 0.0328 + 13 0.107 + 14 0.0738 + 15 0.0328 + 19 0.0738 + 21 0.0164 + 23 0.0082 + 24 0.0082 + 25 0.0082 + 28 0.0082 + 29 0.172 + 31 0.0492 + 32 0.0082 + 33 0.0082 + 35 0.0082 + 41 0.0656 + 42 0.0246 + 45 0.0164 + 46 0.0164 + 47 0.0574 + + 26 5 3 0 + 8 0.6 + 13 0.2 + 19 0.2 + + 40 10 6 0 + 8 0.1 + 13 0.4 + 14 0.2 + 19 0.1 + 21 0.1 + 27 0.1 + + 41 12917 37 14 + 0 0.00356 + 2 0.00434 + 3 0.0433 + 4 0.0079 + 5 0.000155 + 6 7.74e-05 + 7 0.00596 + 8 0.0321 + 9 0.00341 + 10 0.00147 + 11 0.000387 + 12 0.000774 + 13 0.376 + 14 0.157 + 15 0.124 + 16 0.00426 + 18 0.000387 + 19 0.0109 + 20 7.74e-05 + 21 0.16 + 22 0.00395 + 23 0.000232 + 24 0.00348 + 26 0.000155 + 27 0.00194 + 28 0.00898 + 29 0.00681 + 30 0.00457 + 31 0.0181 + 32 0.00341 + 33 0.00735 + 34 0.000542 + 35 0.000232 + 37 0.000387 + 42 0.000155 + 43 0.00333 + 46 0.000232 + + 2 15 7 0 + 8 0.133 + 13 0.267 + 14 0.133 + 15 0.267 + 18 0.0667 + 19 0.0667 + 27 0.0667 + + 21 6 3 0 + 13 0.667 + 19 0.167 + 28 0.167 + + 45 125 16 0 + 0 0.008 + 2 0.016 + 3 0.016 + 4 0.008 + 8 0.024 + 13 0.256 + 14 0.216 + 15 0.12 + 16 0.008 + 19 0.04 + 21 0.112 + 28 0.008 + 29 0.024 + 30 0.016 + 31 0.032 + 33 0.096 + + 46 950 26 0 + 0 0.0158 + 2 0.00105 + 3 0.0158 + 4 0.0179 + 7 0.00947 + 8 0.0884 + 9 0.00737 + 10 0.00105 + 12 0.00632 + 13 0.379 + 14 0.154 + 15 0.0674 + 16 0.00526 + 19 0.0442 + 21 0.0695 + 22 0.00105 + 24 0.0126 + 26 0.00105 + 28 0.0316 + 29 0.0147 + 30 0.00947 + 31 0.0337 + 32 0.00421 + 33 0.00632 + 42 0.00211 + 43 0.00105 + + 48 3 3 0 + 0 0.333 + 13 0.333 + 14 0.333 + + 49 375 22 0 + 2 0.016 + 3 0.032 + 4 0.008 + 7 0.0107 + 8 0.008 + 9 0.00267 + 10 0.00267 + 13 0.339 + 14 0.216 + 15 0.171 + 16 0.00533 + 18 0.00533 + 19 0.0347 + 21 0.112 + 24 0.008 + 27 0.00267 + 30 0.00267 + 31 0.00533 + 32 0.00533 + 33 0.00533 + 34 0.00267 + 43 0.00533 + + 55 9312 33 0 + 0 0.00268 + 2 0.00129 + 3 0.0493 + 4 0.00709 + 5 0.000215 + 7 0.00473 + 8 0.0306 + 9 0.00365 + 10 0.00183 + 11 0.000537 + 12 0.00043 + 13 0.39 + 14 0.156 + 15 0.113 + 16 0.00397 + 18 0.000107 + 19 0.00655 + 20 0.000107 + 21 0.165 + 22 0.00515 + 23 0.000322 + 24 0.00279 + 26 0.000107 + 27 0.00215 + 28 0.00805 + 29 0.00677 + 30 0.00451 + 31 0.0183 + 32 0.00333 + 33 0.00698 + 37 0.00043 + 43 0.00365 + 46 0.000322 + + 57 600 21 0 + 2 0.0383 + 3 0.035 + 4 0.01 + 7 0.0183 + 8 0.00167 + 13 0.258 + 14 0.132 + 15 0.275 + 16 0.00667 + 19 0.0117 + 21 0.182 + 22 0.00167 + 27 0.00167 + 29 0.00167 + 30 0.00167 + 31 0.00333 + 32 0.00333 + 34 0.00833 + 35 0.005 + 37 0.00167 + 43 0.00333 + + 58 38 9 0 + 2 0.0263 + 8 0.0263 + 9 0.0263 + 13 0.474 + 14 0.132 + 15 0.105 + 21 0.158 + 32 0.0263 + 33 0.0263 + + 62 430 21 0 + 0 0.00465 + 2 0.00233 + 3 0.0256 + 4 0.00233 + 7 0.0093 + 8 0.0209 + 9 0.00233 + 13 0.302 + 14 0.184 + 15 0.258 + 16 0.00233 + 19 0.0093 + 21 0.135 + 24 0.00698 + 28 0.00698 + 29 0.00698 + 30 0.00233 + 31 0.00465 + 32 0.00233 + 33 0.00698 + 43 0.00465 + + 64 201 16 0 + 0 0.00498 + 2 0.0448 + 3 0.0846 + 4 0.00498 + 7 0.0199 + 8 0.0149 + 13 0.269 + 14 0.114 + 15 0.124 + 16 0.0149 + 21 0.269 + 22 0.00498 + 28 0.00995 + 31 0.00995 + 33 0.00498 + 34 0.00498 + + 66 1 1 0 + 2 1 + + 69 839 21 0 + 0 0.00119 + 3 0.0262 + 4 0.00834 + 7 0.00119 + 8 0.0274 + 13 0.398 + 14 0.16 + 15 0.113 + 16 0.00238 + 18 0.00119 + 19 0.00715 + 21 0.205 + 24 0.00119 + 27 0.00238 + 28 0.00477 + 29 0.00358 + 30 0.00358 + 31 0.0238 + 32 0.00238 + 33 0.00477 + 43 0.00238 + + 74 11 7 0 + 6 0.0909 + 13 0.364 + 14 0.182 + 19 0.0909 + 29 0.0909 + 32 0.0909 + 33 0.0909 + + 42 133 20 7 + 3 0.00752 + 4 0.015 + 8 0.0602 + 11 0.0226 + 13 0.233 + 14 0.143 + 15 0.0677 + 19 0.0226 + 21 0.0226 + 24 0.00752 + 25 0.0301 + 28 0.00752 + 29 0.015 + 40 0.00752 + 41 0.015 + 42 0.00752 + 43 0.00752 + 45 0.00752 + 46 0.015 + 47 0.286 + + 45 19 6 0 + 13 0.0526 + 15 0.158 + 19 0.158 + 24 0.0526 + 29 0.0526 + 47 0.526 + + 49 4 4 0 + 8 0.25 + 14 0.25 + 15 0.25 + 28 0.25 + + 55 51 14 0 + 8 0.0392 + 11 0.0392 + 13 0.255 + 14 0.118 + 15 0.0588 + 21 0.0196 + 25 0.0196 + 29 0.0196 + 40 0.0196 + 41 0.0196 + 42 0.0196 + 43 0.0196 + 46 0.0392 + 47 0.314 + + 57 6 3 0 + 4 0.167 + 13 0.167 + 47 0.667 + + 62 17 6 0 + 13 0.353 + 14 0.176 + 15 0.0588 + 21 0.118 + 45 0.0588 + 47 0.235 + + 66 6 3 0 + 4 0.167 + 8 0.667 + 13 0.167 + + 69 22 8 0 + 3 0.0455 + 8 0.0455 + 11 0.0455 + 13 0.227 + 14 0.409 + 15 0.0455 + 25 0.136 + 41 0.0455 + + 43 32 6 0 + 11 0.0938 + 13 0.344 + 14 0.125 + 15 0.281 + 18 0.0312 + 19 0.125 + + 44 156 17 1 + 0 0.00641 + 2 0.0128 + 4 0.00641 + 7 0.0385 + 8 0.00641 + 13 0.0128 + 14 0.0128 + 21 0.0192 + 28 0.0256 + 29 0.00641 + 32 0.00641 + 33 0.00641 + 35 0.00641 + 41 0.0192 + 45 0.0128 + 46 0.00641 + 47 0.795 + + 57 22 1 0 + 47 1 + + 45 2718 26 8 + 0 0.0011 + 2 0.00478 + 3 0.00258 + 4 0.0011 + 7 0.0118 + 8 0.000736 + 13 0.0545 + 14 0.0309 + 15 0.0213 + 16 0.000736 + 18 0.000736 + 19 0.0169 + 21 0.00331 + 28 0.00184 + 29 0.00258 + 31 0.0118 + 32 0.000736 + 33 0.00736 + 37 0.000368 + 40 0.000368 + 41 0.0982 + 42 0.0232 + 44 0.00221 + 45 0.000736 + 46 0.000736 + 47 0.699 + + 2 87 1 0 + 47 1 + + 48 56 9 0 + 2 0.0179 + 4 0.0179 + 13 0.5 + 14 0.25 + 15 0.0179 + 19 0.125 + 31 0.0357 + 33 0.0179 + 42 0.0179 + + 49 64 7 0 + 13 0.0625 + 14 0.0312 + 15 0.0312 + 19 0.0156 + 41 0.0781 + 42 0.0625 + 47 0.719 + + 55 1037 20 0 + 0 0.00193 + 2 0.00964 + 7 0.0251 + 13 0.0135 + 14 0.000964 + 15 0.00193 + 19 0.0116 + 21 0.00482 + 28 0.00386 + 29 0.00482 + 31 0.026 + 32 0.00193 + 33 0.0145 + 37 0.000964 + 40 0.000964 + 41 0.165 + 42 0.0328 + 44 0.00482 + 46 0.00193 + 47 0.673 + + 57 75 6 0 + 2 0.0133 + 7 0.04 + 31 0.0133 + 41 0.0533 + 42 0.0133 + 47 0.867 + + 62 945 9 0 + 7 0.00317 + 29 0.00106 + 31 0.00106 + 33 0.00106 + 41 0.0254 + 42 0.0159 + 44 0.00106 + 45 0.00212 + 47 0.949 + + 64 96 4 0 + 2 0.0104 + 41 0.104 + 42 0.0417 + 47 0.844 + + 69 334 18 0 + 0 0.00299 + 3 0.021 + 4 0.00599 + 8 0.00599 + 13 0.305 + 14 0.198 + 15 0.159 + 16 0.00599 + 18 0.00599 + 19 0.0778 + 21 0.012 + 28 0.00299 + 29 0.00299 + 31 0.00299 + 33 0.00898 + 41 0.15 + 42 0.00599 + 47 0.0269 + + 46 1060 13 6 + 3 0.000943 + 8 0.00283 + 13 0.0236 + 14 0.0123 + 15 0.0236 + 16 0.00189 + 19 0.000943 + 21 0.000943 + 30 0.000943 + 40 0.0151 + 41 0.899 + 46 0.00472 + 47 0.0132 + + 49 3 3 0 + 13 0.333 + 15 0.333 + 47 0.333 + + 55 921 6 0 + 13 0.00217 + 14 0.00217 + 40 0.0163 + 41 0.967 + 46 0.00434 + 47 0.0076 + + 57 3 2 0 + 41 0.333 + 47 0.667 + + 62 10 2 0 + 41 0.7 + 47 0.3 + + 64 3 2 0 + 8 0.667 + 41 0.333 + + 69 99 12 0 + 3 0.0101 + 8 0.0101 + 13 0.222 + 14 0.111 + 15 0.242 + 16 0.0202 + 19 0.0101 + 21 0.0101 + 30 0.0101 + 40 0.0101 + 41 0.333 + 46 0.0101 + + 47 95402 42 25 + 0 0.00867 + 1 0.000325 + 2 0.0289 + 3 0.0027 + 4 0.00311 + 6 1.05e-05 + 7 0.141 + 8 0.0136 + 9 0.00066 + 10 0.000136 + 12 0.000419 + 13 0.0355 + 14 0.0168 + 15 0.00423 + 16 0.000199 + 17 2.1e-05 + 18 3.14e-05 + 19 0.00112 + 21 0.00595 + 22 0.00022 + 23 2.1e-05 + 24 0.00122 + 25 1.05e-05 + 26 0.00167 + 28 0.0194 + 29 0.0534 + 30 0.0131 + 31 0.0233 + 32 0.016 + 33 0.0203 + 34 0.0436 + 35 0.023 + 36 1.05e-05 + 37 0.0196 + 40 2.1e-05 + 41 0.0307 + 42 0.0112 + 43 0.000199 + 44 0.00087 + 45 0.0302 + 46 0.00213 + 47 0.426 + + 2 2188 5 0 + 41 0.000457 + 42 0.00183 + 45 0.0064 + 46 0.000457 + 47 0.991 + + 4 5 4 0 + 8 0.2 + 34 0.4 + 35 0.2 + 41 0.2 + + 7 38 1 0 + 47 1 + + 21 173 25 0 + 0 0.0116 + 2 0.00578 + 7 0.116 + 8 0.0231 + 12 0.0173 + 13 0.0636 + 14 0.0405 + 15 0.0173 + 19 0.0289 + 21 0.00578 + 23 0.00578 + 24 0.00578 + 25 0.00578 + 28 0.00578 + 29 0.121 + 31 0.0347 + 32 0.00578 + 33 0.00578 + 35 0.00578 + 37 0.00578 + 41 0.0462 + 42 0.0173 + 45 0.00578 + 46 0.0116 + 47 0.387 + + 26 5 3 0 + 8 0.6 + 13 0.2 + 19 0.2 + + 41 29 9 0 + 2 0.069 + 4 0.0345 + 7 0.379 + 15 0.0345 + 21 0.0345 + 31 0.069 + 34 0.241 + 35 0.103 + 37 0.0345 + + 42 40 3 0 + 4 0.025 + 45 0.025 + 47 0.95 + + 44 146 14 0 + 0 0.00685 + 2 0.0137 + 4 0.00685 + 7 0.0411 + 8 0.00685 + 14 0.00685 + 21 0.00685 + 28 0.0274 + 29 0.00685 + 32 0.00685 + 33 0.00685 + 35 0.00685 + 45 0.00685 + 47 0.849 + + 45 2081 17 0 + 0 0.00144 + 2 0.000481 + 7 0.0154 + 13 0.000961 + 14 0.000481 + 21 0.000481 + 28 0.0024 + 29 0.00288 + 31 0.0149 + 32 0.000961 + 33 0.00865 + 37 0.000481 + 41 0.0139 + 42 0.0207 + 44 0.00192 + 45 0.000481 + 47 0.914 + + 46 14 1 0 + 47 1 + + 48 401 21 0 + 0 0.00249 + 2 0.0125 + 7 0.0499 + 13 0.0125 + 14 0.00249 + 15 0.00748 + 16 0.00249 + 21 0.00748 + 24 0.00499 + 28 0.0698 + 29 0.122 + 30 0.0374 + 31 0.387 + 32 0.0249 + 33 0.0249 + 34 0.00249 + 37 0.00249 + 41 0.0823 + 42 0.00249 + 45 0.00998 + 47 0.132 + + 49 2499 23 0 + 0 0.0016 + 2 0.0272 + 7 0.0344 + 8 0.0004 + 12 0.0004 + 13 0.0068 + 14 0.0024 + 15 0.0016 + 21 0.006 + 24 0.0008 + 28 0.0012 + 29 0.0012 + 30 0.0012 + 31 0.0016 + 32 0.002 + 33 0.0016 + 34 0.0656 + 35 0.0324 + 37 0.0012 + 41 0.0312 + 42 0.0156 + 45 0.0228 + 47 0.741 + + 50 6 1 0 + 47 1 + + 51 15 6 0 + 2 0.0667 + 7 0.0667 + 32 0.0667 + 33 0.0667 + 45 0.2 + 47 0.533 + + 52 43 8 0 + 2 0.0233 + 28 0.0233 + 41 0.0233 + 42 0.0233 + 44 0.0233 + 45 0.209 + 46 0.0233 + 47 0.651 + + 53 30 4 0 + 2 0.0333 + 7 0.0333 + 42 0.1 + 47 0.833 + + 55 52582 38 0 + 0 0.00203 + 1 0.000342 + 2 0.0449 + 3 0.00038 + 4 0.00443 + 7 0.183 + 8 0.00304 + 9 0.000133 + 10 0.000133 + 12 1.9e-05 + 13 0.0151 + 14 0.00688 + 15 0.000856 + 16 3.8e-05 + 17 3.8e-05 + 18 1.9e-05 + 19 0.000513 + 21 0.00382 + 22 0.000114 + 24 0.000114 + 26 0.000228 + 28 0.0187 + 29 0.071 + 30 0.00837 + 31 0.0106 + 32 0.018 + 33 0.0195 + 34 0.0097 + 35 0.00778 + 36 1.9e-05 + 37 0.0328 + 41 0.0205 + 42 0.0131 + 43 0.000114 + 44 0.00103 + 45 0.0401 + 46 0.00202 + 47 0.461 + + 57 4707 21 0 + 2 0.0191 + 4 0.00085 + 7 0.0416 + 8 0.000212 + 13 0.000637 + 14 0.000212 + 21 0.00085 + 28 0.000637 + 29 0.000212 + 31 0.00106 + 32 0.000212 + 33 0.000425 + 34 0.00722 + 35 0.00297 + 37 0.00149 + 40 0.000212 + 41 0.0161 + 42 0.0117 + 44 0.00085 + 45 0.021 + 47 0.872 + + 58 17 7 0 + 4 0.0588 + 7 0.294 + 34 0.235 + 35 0.118 + 37 0.118 + 42 0.0588 + 47 0.118 + + 62 4872 24 0 + 0 0.00144 + 2 0.00944 + 4 0.00123 + 7 0.0515 + 8 0.000205 + 13 0.00205 + 14 0.000411 + 15 0.000205 + 19 0.000205 + 21 0.00164 + 28 0.00164 + 29 0.0133 + 30 0.00144 + 31 0.00103 + 32 0.00226 + 33 0.00431 + 34 0.00554 + 35 0.00144 + 37 0.00513 + 41 0.00513 + 42 0.016 + 44 0.000821 + 45 0.0525 + 47 0.821 + + 64 1775 16 0 + 0 0.00113 + 2 0.0293 + 4 0.00169 + 7 0.0958 + 21 0.00225 + 29 0.00451 + 30 0.000563 + 32 0.00282 + 33 0.00169 + 34 0.000563 + 35 0.000563 + 37 0.00113 + 41 0.0169 + 42 0.0135 + 45 0.093 + 47 0.735 + + 66 16 3 0 + 2 0.0625 + 42 0.0625 + 47 0.875 + + 68 15 7 0 + 7 0.0667 + 13 0.0667 + 28 0.0667 + 31 0.0667 + 42 0.0667 + 45 0.0667 + 47 0.6 + + 69 23688 39 0 + 0 0.0296 + 1 0.000549 + 2 0.0054 + 3 0.01 + 4 0.00198 + 6 4.22e-05 + 7 0.13 + 8 0.0475 + 9 0.00236 + 10 0.000253 + 12 0.00148 + 13 0.107 + 14 0.0514 + 15 0.0146 + 16 0.000675 + 18 8.44e-05 + 19 0.00308 + 21 0.0139 + 22 0.000633 + 23 4.22e-05 + 24 0.00443 + 26 0.00621 + 28 0.0343 + 29 0.0511 + 30 0.0331 + 31 0.0616 + 32 0.0226 + 33 0.0358 + 34 0.144 + 35 0.0708 + 37 0.00414 + 40 4.22e-05 + 41 0.0661 + 42 0.00515 + 43 0.000549 + 44 0.000675 + 45 0.0068 + 46 0.00393 + 47 0.0277 + + 74 7 5 0 + 2 0.286 + 41 0.143 + 42 0.143 + 45 0.143 + 47 0.286 + + 48 954 28 7 + 0 0.00105 + 2 0.00629 + 3 0.00314 + 4 0.00524 + 7 0.021 + 8 0.00314 + 13 0.155 + 14 0.142 + 15 0.0304 + 16 0.00314 + 18 0.00105 + 19 0.169 + 21 0.0136 + 22 0.00105 + 24 0.0021 + 28 0.0294 + 29 0.0514 + 30 0.0157 + 31 0.162 + 32 0.0105 + 33 0.0115 + 34 0.00105 + 37 0.00105 + 41 0.0388 + 42 0.0021 + 45 0.0629 + 46 0.00105 + 47 0.0556 + + 41 16 6 0 + 2 0.125 + 21 0.0625 + 41 0.0625 + 42 0.0625 + 45 0.125 + 47 0.562 + + 47 806 26 0 + 0 0.00124 + 2 0.00372 + 3 0.00372 + 4 0.0062 + 7 0.0223 + 8 0.00372 + 13 0.176 + 14 0.164 + 15 0.036 + 16 0.00372 + 19 0.102 + 21 0.0149 + 22 0.00124 + 24 0.00248 + 28 0.0211 + 29 0.0521 + 30 0.0136 + 31 0.185 + 32 0.0124 + 33 0.00993 + 37 0.00124 + 41 0.0397 + 42 0.00124 + 45 0.0682 + 46 0.00124 + 47 0.0533 + + 49 5 4 0 + 2 0.2 + 13 0.4 + 14 0.2 + 18 0.2 + + 55 19 8 0 + 13 0.0526 + 28 0.211 + 29 0.263 + 30 0.105 + 31 0.158 + 33 0.0526 + 41 0.105 + 47 0.0526 + + 62 36 5 0 + 7 0.0278 + 13 0.0278 + 14 0.0278 + 19 0.889 + 45 0.0278 + + 64 63 9 0 + 13 0.0317 + 14 0.0159 + 19 0.683 + 28 0.111 + 29 0.0317 + 30 0.0317 + 31 0.0476 + 33 0.0317 + 41 0.0159 + + 69 2 2 0 + 34 0.5 + 41 0.5 + + 49 6007 36 13 + 0 0.00117 + 2 0.0255 + 3 0.00117 + 4 0.00383 + 5 0.00333 + 7 0.0146 + 8 0.00133 + 9 0.000333 + 10 0.000166 + 12 0.000166 + 13 0.122 + 14 0.107 + 15 0.101 + 16 0.00449 + 18 0.00117 + 19 0.108 + 21 0.0103 + 23 0.000166 + 24 0.000333 + 28 0.000499 + 29 0.000666 + 30 0.000832 + 31 0.000832 + 32 0.000999 + 33 0.000999 + 34 0.0276 + 35 0.0135 + 37 0.000499 + 40 0.000333 + 41 0.106 + 42 0.00916 + 43 0.000832 + 44 0.000666 + 45 0.0201 + 46 0.0025 + 47 0.308 + + 41 1889 16 0 + 2 0.0238 + 4 0.000529 + 7 0.00106 + 13 0.00318 + 14 0.00159 + 15 0.00106 + 19 0.000529 + 21 0.00424 + 32 0.000529 + 40 0.00106 + 41 0.157 + 42 0.00794 + 44 0.00159 + 45 0.0312 + 46 0.000529 + 47 0.764 + + 44 2 2 0 + 2 0.5 + 45 0.5 + + 45 7 4 0 + 7 0.143 + 14 0.286 + 15 0.286 + 47 0.286 + + 47 59 15 0 + 4 0.0169 + 8 0.0339 + 13 0.237 + 14 0.22 + 15 0.102 + 19 0.0169 + 21 0.0339 + 28 0.0169 + 29 0.0339 + 30 0.0339 + 31 0.0339 + 32 0.0169 + 33 0.0169 + 41 0.119 + 47 0.0678 + + 48 9 4 0 + 14 0.111 + 21 0.111 + 41 0.222 + 47 0.556 + + 49 30 9 0 + 2 0.0333 + 7 0.0333 + 13 0.0667 + 14 0.133 + 15 0.2 + 19 0.233 + 41 0.1 + 42 0.0333 + 47 0.167 + + 55 493 13 0 + 2 0.178 + 7 0.0365 + 9 0.00203 + 13 0.00203 + 14 0.00609 + 21 0.0183 + 32 0.00203 + 34 0.00203 + 37 0.00406 + 41 0.0953 + 42 0.0325 + 45 0.069 + 47 0.552 + + 57 31 7 0 + 2 0.161 + 14 0.0323 + 41 0.0645 + 42 0.0323 + 44 0.0323 + 45 0.0645 + 47 0.613 + + 58 78 5 0 + 2 0.0641 + 41 0.0128 + 42 0.0256 + 45 0.0641 + 47 0.833 + + 62 11 4 0 + 2 0.182 + 42 0.0909 + 45 0.182 + 47 0.545 + + 64 6 3 0 + 2 0.167 + 45 0.5 + 47 0.333 + + 66 3 2 0 + 21 0.667 + 47 0.333 + + 69 3383 34 0 + 0 0.00207 + 2 0.00118 + 3 0.00207 + 4 0.00621 + 5 0.00591 + 7 0.0195 + 8 0.00177 + 9 0.000296 + 10 0.000296 + 12 0.000296 + 13 0.21 + 14 0.181 + 15 0.175 + 16 0.00798 + 18 0.00207 + 19 0.189 + 21 0.0118 + 23 0.000296 + 24 0.000591 + 28 0.000591 + 29 0.000591 + 30 0.000887 + 31 0.000887 + 32 0.000887 + 33 0.00148 + 34 0.0488 + 35 0.0239 + 37 0.000296 + 41 0.0822 + 42 0.00562 + 43 0.00148 + 45 0.00414 + 46 0.00414 + 47 0.00739 + + 50 8 3 0 + 14 0.125 + 19 0.125 + 47 0.75 + + 51 20 7 0 + 2 0.05 + 7 0.05 + 32 0.05 + 33 0.05 + 41 0.05 + 45 0.35 + 47 0.4 + + 52 51 9 1 + 2 0.0196 + 27 0.0196 + 28 0.0196 + 41 0.098 + 42 0.0196 + 44 0.0196 + 45 0.235 + 46 0.0196 + 47 0.549 + + 55 4 3 0 + 28 0.25 + 45 0.5 + 46 0.25 + + 53 30 4 0 + 2 0.0333 + 7 0.0333 + 42 0.1 + 47 0.833 + + 55 67719 43 18 + 0 0.00162 + 1 0.000266 + 2 0.0581 + 3 0.000753 + 4 0.0036 + 5 1.48e-05 + 7 0.143 + 8 0.00282 + 9 0.000266 + 10 0.00034 + 12 2.95e-05 + 13 0.019 + 14 0.00755 + 15 0.00347 + 16 8.86e-05 + 17 2.95e-05 + 18 4.43e-05 + 19 0.00157 + 21 0.0104 + 22 0.000192 + 23 1.48e-05 + 24 8.86e-05 + 25 1.48e-05 + 26 0.000177 + 27 1.48e-05 + 28 0.0146 + 29 0.0552 + 30 0.00653 + 31 0.00828 + 32 0.0141 + 33 0.0153 + 34 0.00755 + 35 0.00604 + 36 1.48e-05 + 37 0.0255 + 40 4.43e-05 + 41 0.159 + 42 0.0118 + 43 0.000295 + 44 0.00233 + 45 0.0466 + 46 0.0162 + 47 0.358 + + 4 27 11 0 + 7 0.037 + 8 0.037 + 13 0.037 + 14 0.037 + 28 0.037 + 29 0.0741 + 32 0.037 + 41 0.0741 + 45 0.037 + 46 0.037 + 47 0.556 + + 12 3 3 0 + 2 0.333 + 33 0.333 + 42 0.333 + + 21 9 5 0 + 7 0.111 + 13 0.111 + 28 0.333 + 29 0.222 + 31 0.222 + + 41 1402 27 0 + 0 0.000713 + 2 0.0464 + 4 0.000713 + 7 0.0464 + 8 0.000713 + 10 0.000713 + 13 0.0728 + 14 0.00499 + 15 0.0278 + 19 0.000713 + 21 0.0107 + 27 0.000713 + 28 0.000713 + 29 0.0157 + 30 0.000713 + 31 0.00143 + 32 0.00713 + 33 0.00214 + 34 0.00214 + 37 0.00285 + 41 0.0449 + 42 0.0157 + 43 0.000713 + 44 0.00357 + 45 0.0271 + 46 0.00143 + 47 0.66 + + 42 27 7 0 + 2 0.111 + 7 0.148 + 21 0.037 + 29 0.0741 + 41 0.111 + 45 0.185 + 47 0.333 + + 43 29 2 0 + 7 0.069 + 44 0.931 + + 45 366 17 0 + 2 0.0273 + 7 0.167 + 13 0.0109 + 14 0.00273 + 21 0.00273 + 22 0.00273 + 28 0.0328 + 29 0.29 + 30 0.0355 + 31 0.0082 + 32 0.0109 + 33 0.082 + 34 0.00273 + 37 0.00273 + 41 0.0765 + 42 0.00273 + 47 0.243 + + 46 63 7 0 + 2 0.0159 + 7 0.0159 + 28 0.0317 + 29 0.0159 + 34 0.0159 + 41 0.0159 + 45 0.889 + + 47 833 26 0 + 0 0.0072 + 2 0.0336 + 3 0.0012 + 4 0.0096 + 7 0.0204 + 8 0.0192 + 9 0.0012 + 13 0.0636 + 14 0.0156 + 15 0.048 + 16 0.0012 + 18 0.0024 + 19 0.0876 + 21 0.0168 + 28 0.0396 + 29 0.0564 + 30 0.0072 + 31 0.376 + 32 0.0072 + 33 0.0264 + 34 0.0048 + 41 0.0264 + 42 0.0108 + 43 0.0024 + 45 0.0888 + 47 0.0264 + + 48 482 15 0 + 0 0.00622 + 2 0.027 + 7 0.0373 + 14 0.00207 + 28 0.344 + 29 0.0996 + 30 0.168 + 31 0.0705 + 32 0.0975 + 33 0.104 + 41 0.0228 + 42 0.00415 + 44 0.00415 + 45 0.00207 + 47 0.0104 + + 49 2900 25 0 + 0 0.00069 + 2 0.0714 + 3 0.000345 + 4 0.00103 + 7 0.108 + 8 0.00069 + 13 0.0121 + 14 0.00448 + 15 0.000345 + 21 0.0031 + 28 0.00586 + 29 0.0366 + 30 0.00138 + 31 0.00276 + 32 0.00931 + 33 0.00931 + 34 0.00586 + 35 0.00655 + 37 0.0169 + 41 0.128 + 42 0.0134 + 44 0.0031 + 45 0.0345 + 46 0.0031 + 47 0.521 + + 55 480 19 0 + 2 0.0854 + 4 0.00417 + 7 0.0437 + 13 0.0104 + 15 0.00208 + 21 0.00833 + 28 0.0896 + 29 0.0854 + 30 0.0479 + 31 0.0146 + 32 0.05 + 33 0.0646 + 35 0.00208 + 37 0.0125 + 41 0.102 + 42 0.0333 + 45 0.0167 + 46 0.00208 + 47 0.325 + + 57 150 18 0 + 0 0.0133 + 1 0.00667 + 2 0.0467 + 4 0.00667 + 7 0.06 + 13 0.0467 + 14 0.02 + 29 0.0333 + 30 0.0133 + 32 0.0267 + 33 0.00667 + 34 0.00667 + 37 0.02 + 41 0.187 + 42 0.0133 + 44 0.02 + 45 0.0267 + 47 0.447 + + 58 218 11 0 + 2 0.0505 + 7 0.0275 + 14 0.00459 + 21 0.00459 + 28 0.00459 + 34 0.00459 + 35 0.00459 + 41 0.0367 + 42 0.0183 + 45 0.0826 + 47 0.761 + + 62 10 5 0 + 2 0.1 + 14 0.1 + 19 0.2 + 37 0.1 + 47 0.5 + + 64 14 5 0 + 2 0.143 + 19 0.0714 + 32 0.0714 + 45 0.0714 + 47 0.643 + + 68 3 3 0 + 30 0.333 + 31 0.333 + 32 0.333 + + 69 60692 42 0 + 0 0.00158 + 1 0.00028 + 2 0.0584 + 3 0.000807 + 4 0.00377 + 5 1.65e-05 + 7 0.151 + 8 0.00282 + 9 0.00028 + 10 0.000362 + 12 3.3e-05 + 13 0.0177 + 14 0.00774 + 15 0.00254 + 16 8.24e-05 + 17 3.3e-05 + 18 1.65e-05 + 19 0.000478 + 21 0.0109 + 22 0.000198 + 23 1.65e-05 + 24 9.89e-05 + 25 1.65e-05 + 26 0.000198 + 28 0.0117 + 29 0.0552 + 30 0.00512 + 31 0.00315 + 32 0.0136 + 33 0.0144 + 34 0.00796 + 35 0.00639 + 36 1.65e-05 + 37 0.0274 + 40 4.94e-05 + 41 0.167 + 42 0.0115 + 43 0.00028 + 44 0.00185 + 45 0.047 + 46 0.0179 + 47 0.35 + + 57 5900 27 12 + 2 0.0561 + 3 0.000339 + 4 0.00102 + 7 0.0334 + 8 0.000508 + 9 0.000169 + 13 0.0149 + 14 0.00797 + 15 0.00831 + 16 0.000169 + 19 0.000339 + 21 0.00746 + 28 0.000508 + 29 0.000169 + 31 0.000847 + 32 0.000169 + 33 0.000339 + 34 0.00576 + 35 0.00237 + 37 0.00119 + 40 0.000678 + 41 0.117 + 42 0.0103 + 44 0.00441 + 45 0.0295 + 46 0.000508 + 47 0.696 + + 41 4850 19 0 + 2 0.0485 + 3 0.000206 + 4 0.000412 + 7 0.0221 + 13 0.00536 + 14 0.00103 + 15 0.00227 + 21 0.00515 + 28 0.000206 + 29 0.000206 + 34 0.000206 + 37 0.000412 + 40 0.000619 + 41 0.132 + 42 0.00928 + 44 0.00536 + 45 0.0262 + 46 0.000412 + 47 0.74 + + 42 18 3 0 + 42 0.111 + 45 0.0556 + 47 0.833 + + 44 2 1 0 + 45 1 + + 46 2 1 0 + 45 1 + + 47 28 11 0 + 7 0.107 + 8 0.0357 + 13 0.107 + 14 0.0357 + 31 0.179 + 32 0.0357 + 37 0.0357 + 41 0.0714 + 42 0.0357 + 45 0.0714 + 47 0.286 + + 49 12 5 0 + 2 0.167 + 13 0.167 + 35 0.0833 + 41 0.0833 + 47 0.5 + + 55 612 13 0 + 2 0.126 + 4 0.00327 + 7 0.127 + 13 0.031 + 21 0.0261 + 28 0.00327 + 33 0.00163 + 37 0.00654 + 40 0.00163 + 41 0.0392 + 42 0.018 + 45 0.049 + 47 0.567 + + 57 50 8 0 + 2 0.02 + 7 0.02 + 14 0.02 + 15 0.02 + 41 0.08 + 42 0.02 + 45 0.02 + 47 0.8 + + 58 106 7 0 + 2 0.0755 + 13 0.00943 + 41 0.00943 + 42 0.00943 + 45 0.066 + 46 0.00943 + 47 0.821 + + 62 14 4 0 + 2 0.286 + 9 0.0714 + 21 0.0714 + 47 0.571 + + 64 6 4 0 + 8 0.167 + 19 0.167 + 45 0.167 + 47 0.5 + + 69 196 17 0 + 2 0.0153 + 3 0.0051 + 4 0.0102 + 7 0.0408 + 8 0.0051 + 13 0.189 + 14 0.204 + 15 0.189 + 16 0.0051 + 19 0.0051 + 21 0.0102 + 33 0.0051 + 34 0.168 + 35 0.0663 + 41 0.0714 + 45 0.0051 + 47 0.0051 + + 58 579 32 8 + 0 0.00173 + 2 0.0311 + 3 0.00864 + 4 0.0155 + 7 0.0138 + 8 0.019 + 9 0.00345 + 10 0.00173 + 11 0.00173 + 13 0.337 + 14 0.162 + 15 0.0725 + 16 0.00345 + 18 0.00345 + 19 0.0104 + 21 0.154 + 22 0.00518 + 23 0.00173 + 24 0.00173 + 28 0.00345 + 29 0.00345 + 30 0.00345 + 31 0.0173 + 32 0.00345 + 33 0.00864 + 34 0.00691 + 35 0.00345 + 37 0.00345 + 41 0.0691 + 42 0.00173 + 46 0.0242 + 47 0.00345 + + 41 32 9 0 + 2 0.0312 + 3 0.0312 + 13 0.25 + 14 0.0312 + 21 0.0625 + 32 0.0312 + 41 0.156 + 46 0.375 + 47 0.0312 + + 42 3 3 0 + 21 0.333 + 41 0.333 + 47 0.333 + + 45 95 13 0 + 2 0.0421 + 4 0.0316 + 7 0.0211 + 8 0.0211 + 13 0.368 + 14 0.158 + 15 0.0526 + 19 0.0105 + 21 0.168 + 31 0.0316 + 33 0.0105 + 37 0.0105 + 41 0.0737 + + 55 212 26 0 + 0 0.00472 + 2 0.0425 + 3 0.0142 + 4 0.00943 + 7 0.00943 + 8 0.0236 + 9 0.00472 + 10 0.00472 + 11 0.00472 + 13 0.259 + 14 0.118 + 15 0.0283 + 19 0.0142 + 21 0.278 + 22 0.00943 + 23 0.00472 + 24 0.00472 + 28 0.00472 + 29 0.00943 + 30 0.00472 + 31 0.0236 + 32 0.00472 + 33 0.0189 + 37 0.00472 + 41 0.0849 + 46 0.00943 + + 57 3 3 0 + 2 0.333 + 21 0.333 + 42 0.333 + + 62 13 9 0 + 3 0.0769 + 7 0.0769 + 8 0.0769 + 9 0.0769 + 13 0.308 + 14 0.0769 + 21 0.154 + 31 0.0769 + 41 0.0769 + + 64 6 3 0 + 2 0.5 + 13 0.167 + 21 0.333 + + 69 207 17 0 + 4 0.0193 + 7 0.0145 + 8 0.0145 + 13 0.435 + 14 0.237 + 15 0.14 + 16 0.00966 + 18 0.00966 + 19 0.00966 + 21 0.029 + 22 0.00483 + 28 0.00483 + 30 0.00483 + 31 0.00483 + 34 0.0193 + 35 0.00966 + 41 0.0338 + + 62 6481 29 9 + 0 0.00108 + 2 0.0227 + 4 0.000926 + 7 0.0389 + 8 0.00463 + 9 0.00108 + 13 0.00339 + 14 0.000463 + 15 0.000309 + 19 0.000309 + 21 0.00355 + 22 0.000154 + 28 0.00123 + 29 0.01 + 30 0.00108 + 31 0.000771 + 32 0.0017 + 33 0.00324 + 34 0.00417 + 35 0.00108 + 37 0.00386 + 40 0.000154 + 41 0.0728 + 42 0.0151 + 43 0.000154 + 44 0.00278 + 45 0.186 + 46 0.00154 + 47 0.617 + + 41 2566 9 0 + 2 0.00857 + 7 0.000779 + 21 0.000779 + 41 0.0744 + 42 0.00468 + 44 0.00039 + 45 0.295 + 46 0.00234 + 47 0.613 + + 42 4 2 0 + 42 0.75 + 45 0.25 + + 45 3 1 0 + 7 1 + + 46 10 1 0 + 45 1 + + 47 3515 29 0 + 0 0.00199 + 2 0.0259 + 4 0.00171 + 7 0.0512 + 8 0.00853 + 9 0.00199 + 13 0.00597 + 14 0.000853 + 15 0.000569 + 19 0.000569 + 21 0.00455 + 22 0.000284 + 28 0.00228 + 29 0.0182 + 30 0.00199 + 31 0.00142 + 32 0.00199 + 33 0.00569 + 34 0.00768 + 35 0.00199 + 37 0.00683 + 40 0.000284 + 41 0.0688 + 42 0.0216 + 43 0.000284 + 44 0.00427 + 45 0.118 + 46 0.00114 + 47 0.634 + + 49 6 4 0 + 2 0.167 + 7 0.333 + 41 0.333 + 47 0.167 + + 55 102 6 0 + 2 0.049 + 13 0.0098 + 41 0.0098 + 42 0.0196 + 45 0.0098 + 47 0.902 + + 58 17 3 0 + 2 0.118 + 45 0.0588 + 47 0.824 + + 69 256 12 0 + 2 0.102 + 7 0.254 + 21 0.0195 + 29 0.00391 + 32 0.0156 + 33 0.00391 + 37 0.00391 + 41 0.141 + 42 0.0195 + 44 0.00781 + 45 0.0664 + 47 0.363 + + 64 2370 27 7 + 0 0.000844 + 2 0.0992 + 4 0.00127 + 7 0.0726 + 8 0.0207 + 9 0.00127 + 10 0.000422 + 13 0.00464 + 14 0.00338 + 19 0.000422 + 21 0.00759 + 22 0.00169 + 29 0.00338 + 30 0.000422 + 32 0.00211 + 33 0.00127 + 34 0.000422 + 35 0.000422 + 37 0.000844 + 40 0.000844 + 41 0.101 + 42 0.0122 + 43 0.000422 + 44 0.00127 + 45 0.11 + 46 0.00127 + 47 0.55 + + 41 1979 21 0 + 0 0.000505 + 2 0.099 + 4 0.00152 + 7 0.0753 + 10 0.000505 + 13 0.00152 + 14 0.000505 + 21 0.00707 + 29 0.00303 + 32 0.00202 + 33 0.00101 + 35 0.000505 + 37 0.000505 + 40 0.000505 + 41 0.111 + 42 0.0116 + 43 0.000505 + 44 0.00152 + 45 0.106 + 46 0.000505 + 47 0.576 + + 47 74 10 0 + 8 0.662 + 9 0.0405 + 13 0.0811 + 14 0.0541 + 19 0.0135 + 21 0.0405 + 22 0.0541 + 41 0.0135 + 46 0.027 + 47 0.0135 + + 49 6 4 0 + 32 0.167 + 41 0.333 + 45 0.333 + 47 0.167 + + 55 100 11 0 + 2 0.12 + 7 0.13 + 13 0.01 + 14 0.01 + 21 0.01 + 29 0.02 + 40 0.01 + 41 0.11 + 42 0.03 + 45 0.08 + 47 0.47 + + 58 68 6 0 + 2 0.132 + 7 0.0147 + 41 0.0441 + 42 0.0147 + 45 0.118 + 47 0.676 + + 62 3 2 0 + 2 0.333 + 45 0.667 + + 69 121 13 0 + 0 0.00826 + 2 0.116 + 7 0.0496 + 13 0.00826 + 14 0.0165 + 30 0.00826 + 33 0.00826 + 34 0.00826 + 37 0.00826 + 41 0.00826 + 42 0.00826 + 45 0.231 + 47 0.521 + + 65 8 2 0 + 45 0.5 + 47 0.5 + + 66 35 6 1 + 2 0.0571 + 21 0.286 + 41 0.0286 + 42 0.2 + 44 0.0286 + 47 0.4 + + 47 3 2 0 + 2 0.667 + 42 0.333 + + 67 6 2 0 + 45 0.667 + 47 0.333 + + 68 21 11 0 + 7 0.0476 + 13 0.0476 + 14 0.0476 + 19 0.0952 + 21 0.0476 + 28 0.0476 + 31 0.0476 + 41 0.0476 + 42 0.0476 + 45 0.0952 + 47 0.429 + + 69 90079 42 2 + 0 0.00829 + 1 0.000155 + 2 0.00168 + 3 0.00775 + 4 0.0133 + 5 0.00924 + 6 0.000144 + 7 0.0348 + 8 0.0152 + 9 0.000844 + 10 0.000544 + 12 0.000444 + 13 0.201 + 14 0.151 + 15 0.13 + 16 0.00602 + 18 0.0014 + 19 0.154 + 20 0.000144 + 21 0.0443 + 22 0.000366 + 23 5.55e-05 + 24 0.00124 + 26 0.00173 + 27 2.22e-05 + 28 0.00959 + 29 0.0139 + 30 0.00948 + 31 0.0174 + 32 0.00625 + 33 0.00968 + 34 0.0385 + 35 0.0187 + 37 0.00109 + 40 9.99e-05 + 41 0.0694 + 42 0.00417 + 43 0.00219 + 44 0.000244 + 45 0.00562 + 46 0.0036 + 47 0.00728 + + 41 4 2 0 + 13 0.75 + 15 0.25 + + 69 6 5 0 + 13 0.167 + 14 0.333 + 34 0.167 + 41 0.167 + 46 0.167 + + 74 22 8 0 + 2 0.0909 + 5 0.0455 + 13 0.0455 + 18 0.0455 + 41 0.545 + 42 0.0455 + 45 0.0909 + 47 0.0909 + +63 79666 1 0 + 47 1 + +64 56433 41 26 + 0 0.0151 + 1 3.54e-05 + 2 0.021 + 3 0.00828 + 4 0.00434 + 5 7.09e-05 + 6 3.54e-05 + 7 0.0226 + 8 0.0251 + 9 0.00383 + 10 0.000656 + 12 3.54e-05 + 13 0.178 + 14 0.1 + 15 0.0189 + 16 0.00159 + 17 0.000106 + 18 0.000213 + 19 0.00564 + 21 0.0233 + 22 0.00184 + 24 0.00365 + 26 0.00124 + 28 0.0339 + 29 0.164 + 30 0.0194 + 31 0.0203 + 32 0.0433 + 33 0.0486 + 34 3.54e-05 + 35 0.000284 + 36 1.77e-05 + 37 8.86e-05 + 40 7.09e-05 + 41 0.155 + 42 0.0084 + 43 0.000939 + 44 0.00119 + 45 0.0125 + 46 0.0073 + 47 0.0483 + + 2 17 8 0 + 7 0.176 + 13 0.0588 + 22 0.0588 + 28 0.176 + 30 0.0588 + 41 0.294 + 46 0.0588 + 47 0.118 + + 4 202 17 0 + 0 0.0891 + 2 0.0594 + 3 0.0149 + 8 0.00495 + 13 0.144 + 14 0.00495 + 21 0.0149 + 24 0.0099 + 28 0.0743 + 29 0.342 + 30 0.0396 + 31 0.0347 + 32 0.099 + 33 0.0446 + 41 0.0149 + 42 0.00495 + 45 0.00495 + + 7 10218 35 1 + 0 0.0262 + 2 0.0361 + 3 0.00861 + 4 0.000587 + 7 0.0236 + 8 0.0418 + 9 0.00803 + 10 0.000685 + 12 9.79e-05 + 13 0.141 + 14 0.0686 + 15 0.0234 + 16 0.00147 + 18 0.000294 + 19 0.00832 + 21 0.065 + 22 0.00431 + 24 0.00528 + 26 0.000391 + 28 0.0397 + 29 0.102 + 30 0.0302 + 31 0.0349 + 32 0.0379 + 33 0.0506 + 34 9.79e-05 + 35 0.00108 + 37 9.79e-05 + 41 0.11 + 42 0.00851 + 43 0.00127 + 44 0.00137 + 45 0.019 + 46 0.00617 + 47 0.0931 + + 7 48 15 0 + 0 0.0208 + 8 0.0208 + 13 0.125 + 14 0.125 + 18 0.0208 + 21 0.104 + 28 0.0625 + 29 0.0208 + 30 0.0417 + 32 0.0208 + 33 0.0625 + 41 0.229 + 42 0.0417 + 46 0.0208 + 47 0.0833 + + 12 1 1 0 + 42 1 + + 13 8 7 0 + 2 0.125 + 7 0.125 + 8 0.125 + 13 0.25 + 14 0.125 + 21 0.125 + 30 0.125 + + 15 14 1 0 + 47 1 + + 21 385 23 4 + 0 0.0182 + 2 0.0779 + 3 0.0104 + 4 0.0026 + 7 0.0545 + 8 0.0234 + 13 0.0909 + 14 0.0649 + 15 0.013 + 19 0.0104 + 21 0.0571 + 24 0.013 + 28 0.0234 + 29 0.013 + 30 0.0156 + 31 0.0312 + 32 0.0026 + 33 0.0026 + 41 0.249 + 42 0.026 + 45 0.0416 + 46 0.013 + 47 0.145 + + 7 246 21 0 + 2 0.0813 + 3 0.0122 + 7 0.061 + 8 0.0325 + 13 0.0854 + 14 0.061 + 15 0.0163 + 19 0.0122 + 21 0.0285 + 24 0.00407 + 28 0.00813 + 29 0.0122 + 30 0.0122 + 31 0.0163 + 32 0.00407 + 33 0.00407 + 41 0.297 + 42 0.0407 + 45 0.0407 + 46 0.0203 + 47 0.15 + + 21 13 8 0 + 2 0.0769 + 7 0.0769 + 8 0.0769 + 13 0.231 + 14 0.154 + 21 0.231 + 29 0.0769 + 41 0.0769 + + 47 118 18 0 + 0 0.0508 + 2 0.0678 + 3 0.00847 + 4 0.00847 + 7 0.0424 + 13 0.0932 + 14 0.0593 + 15 0.00847 + 19 0.00847 + 21 0.102 + 24 0.0339 + 28 0.0508 + 29 0.00847 + 30 0.0254 + 31 0.0678 + 41 0.178 + 45 0.0424 + 47 0.144 + + 71 5 5 0 + 2 0.2 + 14 0.2 + 28 0.2 + 45 0.2 + 47 0.2 + + 26 2 1 0 + 30 1 + + 34 10 5 0 + 2 0.1 + 13 0.4 + 14 0.1 + 41 0.2 + 47 0.2 + + 35 5 2 0 + 2 0.4 + 47 0.6 + + 41 8 5 0 + 8 0.25 + 13 0.375 + 14 0.125 + 28 0.125 + 33 0.125 + + 44 5 4 0 + 2 0.2 + 8 0.4 + 14 0.2 + 30 0.2 + + 45 26 7 0 + 2 0.0385 + 13 0.0769 + 14 0.0769 + 28 0.0769 + 29 0.269 + 33 0.192 + 41 0.269 + + 47 27924 40 25 + 0 0.0152 + 1 3.58e-05 + 2 0.0212 + 3 0.00834 + 4 0.00437 + 5 7.16e-05 + 6 3.58e-05 + 7 0.0219 + 8 0.0252 + 9 0.0038 + 10 0.000573 + 12 3.58e-05 + 13 0.18 + 14 0.1 + 15 0.0191 + 16 0.00161 + 17 0.000107 + 18 0.000215 + 19 0.00569 + 21 0.0165 + 22 0.00175 + 24 0.00369 + 26 0.00125 + 28 0.0342 + 29 0.166 + 30 0.0196 + 31 0.0206 + 32 0.0438 + 33 0.0491 + 34 3.58e-05 + 35 0.000179 + 37 7.16e-05 + 40 7.16e-05 + 41 0.156 + 42 0.00849 + 43 0.000931 + 44 0.00111 + 45 0.0122 + 46 0.00734 + 47 0.0488 + + 2 12 7 0 + 7 0.25 + 13 0.0833 + 22 0.0833 + 28 0.25 + 30 0.0833 + 41 0.0833 + 47 0.167 + + 4 201 17 0 + 0 0.0896 + 2 0.0597 + 3 0.0149 + 8 0.00498 + 13 0.144 + 14 0.00498 + 21 0.00995 + 24 0.00995 + 28 0.0746 + 29 0.343 + 30 0.0398 + 31 0.0348 + 32 0.0995 + 33 0.0448 + 41 0.0149 + 42 0.00498 + 45 0.00498 + + 7 9753 35 0 + 0 0.0275 + 2 0.0378 + 3 0.00892 + 4 0.000615 + 7 0.0198 + 8 0.0437 + 9 0.00841 + 10 0.000513 + 12 0.000103 + 13 0.146 + 14 0.0687 + 15 0.0245 + 16 0.00154 + 18 0.000308 + 19 0.00872 + 21 0.0321 + 22 0.00451 + 24 0.00554 + 26 0.00041 + 28 0.0416 + 29 0.107 + 30 0.0317 + 31 0.0366 + 32 0.0397 + 33 0.053 + 34 0.000103 + 35 0.000513 + 37 0.000103 + 41 0.115 + 42 0.00892 + 43 0.00133 + 44 0.00113 + 45 0.0199 + 46 0.00646 + 47 0.0975 + + 12 1 1 0 + 42 1 + + 13 7 6 0 + 2 0.143 + 8 0.143 + 13 0.286 + 14 0.143 + 21 0.143 + 30 0.143 + + 15 14 1 0 + 47 1 + + 21 367 23 0 + 0 0.0191 + 2 0.0817 + 3 0.0109 + 4 0.00272 + 7 0.0572 + 8 0.0245 + 13 0.0899 + 14 0.0654 + 15 0.0136 + 19 0.0109 + 21 0.0191 + 24 0.0136 + 28 0.0245 + 29 0.0136 + 30 0.0163 + 31 0.0327 + 32 0.00272 + 33 0.00272 + 41 0.262 + 42 0.0272 + 45 0.0436 + 46 0.0136 + 47 0.153 + + 26 2 1 0 + 30 1 + + 34 10 5 0 + 2 0.1 + 13 0.4 + 14 0.1 + 41 0.2 + 47 0.2 + + 35 4 2 0 + 2 0.25 + 47 0.75 + + 41 2 2 0 + 28 0.5 + 33 0.5 + + 44 5 4 0 + 2 0.2 + 8 0.4 + 14 0.2 + 30 0.2 + + 45 24 7 0 + 2 0.0417 + 13 0.0833 + 14 0.0833 + 28 0.0833 + 29 0.292 + 33 0.208 + 41 0.208 + + 49 130 21 0 + 0 0.0385 + 2 0.0385 + 7 0.00769 + 8 0.0308 + 13 0.0923 + 14 0.0385 + 15 0.00769 + 19 0.00769 + 21 0.0385 + 24 0.00769 + 28 0.00769 + 29 0.0154 + 30 0.00769 + 31 0.0231 + 33 0.00769 + 41 0.369 + 42 0.0615 + 44 0.00769 + 45 0.0308 + 46 0.0154 + 47 0.146 + + 55 50 13 0 + 2 0.02 + 7 0.04 + 13 0.14 + 14 0.08 + 15 0.06 + 21 0.04 + 29 0.1 + 30 0.02 + 31 0.04 + 33 0.12 + 41 0.2 + 42 0.02 + 47 0.12 + + 57 13 9 0 + 8 0.0769 + 13 0.231 + 14 0.154 + 29 0.0769 + 31 0.0769 + 41 0.154 + 42 0.0769 + 46 0.0769 + 47 0.0769 + + 62 7901 29 0 + 0 0.00253 + 2 0.000506 + 3 0.00797 + 4 0.00367 + 7 0.00101 + 8 0.0221 + 9 0.0024 + 10 0.00101 + 13 0.172 + 14 0.078 + 15 0.00848 + 16 0.000127 + 17 0.000253 + 18 0.000127 + 19 0.00329 + 21 0.00633 + 22 0.000127 + 24 0.000759 + 28 0.0291 + 29 0.424 + 30 0.0182 + 31 0.0151 + 32 0.0938 + 33 0.0919 + 41 0.0103 + 42 0.00101 + 43 0.000506 + 45 0.00165 + 46 0.00354 + + 64 337 24 0 + 0 0.0326 + 2 0.0089 + 4 0.00593 + 7 0.0386 + 8 0.0326 + 13 0.131 + 14 0.0504 + 15 0.0089 + 19 0.0119 + 21 0.00297 + 22 0.00297 + 24 0.0119 + 26 0.00297 + 28 0.0801 + 29 0.285 + 30 0.0178 + 31 0.0148 + 32 0.0475 + 33 0.107 + 41 0.0623 + 42 0.0089 + 44 0.00297 + 45 0.0178 + 47 0.0148 + + 66 31 12 0 + 2 0.0645 + 7 0.0323 + 9 0.0645 + 13 0.226 + 14 0.0323 + 15 0.0645 + 18 0.0323 + 28 0.0323 + 29 0.0323 + 31 0.0968 + 41 0.0968 + 47 0.226 + + 68 2 2 0 + 8 0.5 + 47 0.5 + + 70 36 15 0 + 0 0.0278 + 2 0.0833 + 7 0.167 + 13 0.0278 + 19 0.0278 + 24 0.0278 + 28 0.111 + 29 0.0278 + 30 0.0278 + 31 0.0278 + 32 0.111 + 33 0.139 + 42 0.0278 + 45 0.0556 + 47 0.111 + + 71 1934 30 0 + 0 0.0274 + 2 0.0398 + 3 0.015 + 4 0.000517 + 7 0.0729 + 8 0.0217 + 9 0.00103 + 10 0.00103 + 13 0.171 + 14 0.0693 + 15 0.0274 + 18 0.000517 + 19 0.00982 + 21 0.0274 + 22 0.000517 + 24 0.0062 + 26 0.0031 + 28 0.06 + 29 0.0186 + 30 0.0129 + 31 0.0202 + 32 0.0119 + 33 0.0186 + 40 0.00103 + 41 0.204 + 42 0.014 + 44 0.00155 + 45 0.0264 + 46 0.0114 + 47 0.105 + + 72 6740 35 0 + 0 0.00608 + 1 0.000148 + 2 0.0113 + 3 0.00653 + 4 0.012 + 5 0.000297 + 6 0.000148 + 7 0.0323 + 8 0.00445 + 9 0.000148 + 10 0.000148 + 13 0.241 + 14 0.19 + 15 0.0223 + 16 0.00415 + 17 0.000148 + 19 0.00282 + 21 0.00415 + 22 0.000148 + 24 0.00267 + 26 0.00356 + 28 0.02 + 29 0.00341 + 30 0.00564 + 31 0.00356 + 32 0.0046 + 33 0.00401 + 37 0.000148 + 41 0.368 + 42 0.012 + 43 0.00134 + 44 0.00208 + 45 0.00712 + 46 0.0111 + 47 0.0126 + + 73 321 18 0 + 0 0.00312 + 2 0.0125 + 3 0.00935 + 4 0.00623 + 8 0.00623 + 13 0.424 + 14 0.137 + 15 0.0343 + 16 0.00312 + 28 0.0125 + 30 0.00623 + 31 0.00312 + 33 0.00623 + 41 0.277 + 42 0.0187 + 44 0.00312 + 45 0.00935 + 46 0.028 + + 74 14 5 0 + 7 0.286 + 41 0.143 + 42 0.143 + 45 0.143 + 47 0.286 + + 49 130 21 3 + 0 0.0385 + 2 0.0385 + 7 0.00769 + 8 0.0308 + 13 0.0923 + 14 0.0385 + 15 0.00769 + 19 0.00769 + 21 0.0385 + 24 0.00769 + 28 0.00769 + 29 0.0154 + 30 0.00769 + 31 0.0231 + 33 0.00769 + 41 0.369 + 42 0.0615 + 44 0.00769 + 45 0.0308 + 46 0.0154 + 47 0.146 + + 21 2 2 0 + 30 0.5 + 31 0.5 + + 71 10 6 0 + 8 0.1 + 14 0.1 + 41 0.3 + 42 0.2 + 46 0.1 + 47 0.2 + + 72 7 5 0 + 0 0.429 + 21 0.143 + 33 0.143 + 41 0.143 + 47 0.143 + + 55 50 13 0 + 2 0.02 + 7 0.04 + 13 0.14 + 14 0.08 + 15 0.06 + 21 0.04 + 29 0.1 + 30 0.02 + 31 0.04 + 33 0.12 + 41 0.2 + 42 0.02 + 47 0.12 + + 57 13 9 0 + 8 0.0769 + 13 0.231 + 14 0.154 + 29 0.0769 + 31 0.0769 + 41 0.154 + 42 0.0769 + 46 0.0769 + 47 0.0769 + + 62 7950 30 0 + 0 0.00252 + 2 0.000503 + 3 0.00792 + 4 0.00365 + 7 0.00126 + 8 0.022 + 9 0.00289 + 10 0.00113 + 13 0.172 + 14 0.0776 + 15 0.00843 + 16 0.000126 + 17 0.000252 + 18 0.000126 + 19 0.00327 + 21 0.00654 + 22 0.000881 + 24 0.000755 + 28 0.0289 + 29 0.421 + 30 0.0181 + 31 0.015 + 32 0.0932 + 33 0.0913 + 37 0.000126 + 41 0.0102 + 42 0.00101 + 43 0.000629 + 45 0.00453 + 46 0.00365 + + 64 340 24 0 + 0 0.0324 + 2 0.00882 + 4 0.00588 + 7 0.0382 + 8 0.0324 + 13 0.129 + 14 0.05 + 15 0.00882 + 19 0.0118 + 21 0.0118 + 22 0.00294 + 24 0.0118 + 26 0.00294 + 28 0.0794 + 29 0.282 + 30 0.0176 + 31 0.0147 + 32 0.0471 + 33 0.106 + 41 0.0618 + 42 0.00882 + 44 0.00294 + 45 0.0176 + 47 0.0147 + + 66 31 12 0 + 2 0.0645 + 7 0.0323 + 9 0.0645 + 13 0.226 + 14 0.0323 + 15 0.0645 + 18 0.0323 + 28 0.0323 + 29 0.0323 + 31 0.0968 + 41 0.0968 + 47 0.226 + + 68 2 2 0 + 8 0.5 + 47 0.5 + + 70 36 15 0 + 0 0.0278 + 2 0.0833 + 7 0.167 + 13 0.0278 + 19 0.0278 + 24 0.0278 + 28 0.111 + 29 0.0278 + 30 0.0278 + 31 0.0278 + 32 0.111 + 33 0.139 + 42 0.0278 + 45 0.0556 + 47 0.111 + + 71 1950 30 0 + 0 0.0272 + 2 0.04 + 3 0.0149 + 4 0.000513 + 7 0.0723 + 8 0.0215 + 9 0.00103 + 10 0.00205 + 13 0.169 + 14 0.0687 + 15 0.0272 + 18 0.000513 + 19 0.00974 + 21 0.0338 + 22 0.000513 + 24 0.00615 + 26 0.00308 + 28 0.0595 + 29 0.0185 + 30 0.0128 + 31 0.02 + 32 0.0118 + 33 0.0185 + 40 0.00103 + 41 0.202 + 42 0.0138 + 44 0.00154 + 45 0.0262 + 46 0.0113 + 47 0.105 + + 72 6757 36 0 + 0 0.00607 + 1 0.000148 + 2 0.0112 + 3 0.00651 + 4 0.0121 + 5 0.000296 + 6 0.000148 + 7 0.0323 + 8 0.00474 + 9 0.000148 + 10 0.000148 + 13 0.24 + 14 0.19 + 15 0.0222 + 16 0.00414 + 17 0.000148 + 19 0.00281 + 21 0.00503 + 22 0.000148 + 24 0.00266 + 26 0.00355 + 28 0.02 + 29 0.0034 + 30 0.00562 + 31 0.00355 + 32 0.00459 + 33 0.004 + 36 0.000148 + 37 0.000148 + 41 0.367 + 42 0.012 + 43 0.00133 + 44 0.00237 + 45 0.00755 + 46 0.0111 + 47 0.0126 + + 73 321 18 0 + 0 0.00312 + 2 0.0125 + 3 0.00935 + 4 0.00623 + 8 0.00623 + 13 0.424 + 14 0.137 + 15 0.0343 + 16 0.00312 + 28 0.0125 + 30 0.00623 + 31 0.00312 + 33 0.00623 + 41 0.277 + 42 0.0187 + 44 0.00312 + 45 0.00935 + 46 0.028 + + 74 14 5 0 + 7 0.286 + 41 0.143 + 42 0.143 + 45 0.143 + 47 0.286 + +65 683 22 14 + 0 0.00878 + 2 0.0293 + 7 0.00293 + 8 0.00586 + 9 0.00146 + 12 0.00146 + 13 0.0293 + 14 0.00732 + 15 0.00146 + 21 0.0351 + 28 0.00439 + 31 0.00146 + 34 0.00146 + 35 0.124 + 37 0.113 + 40 0.00586 + 41 0.0527 + 42 0.0366 + 44 0.00293 + 45 0.133 + 46 0.00293 + 47 0.398 + + 2 12 3 0 + 0 0.0833 + 44 0.0833 + 47 0.833 + + 21 11 3 0 + 0 0.0909 + 45 0.0909 + 47 0.818 + + 41 14 6 0 + 8 0.214 + 13 0.429 + 15 0.0714 + 21 0.143 + 31 0.0714 + 37 0.0714 + + 45 28 3 0 + 41 0.143 + 42 0.0357 + 47 0.821 + + 46 2 1 0 + 41 1 + + 47 198 10 1 + 0 0.00505 + 2 0.0202 + 7 0.00505 + 21 0.00505 + 28 0.00505 + 40 0.0101 + 41 0.0455 + 42 0.0606 + 45 0.157 + 47 0.687 + + 45 27 3 0 + 41 0.111 + 42 0.037 + 47 0.852 + + 58 5 3 0 + 13 0.2 + 28 0.2 + 37 0.6 + + 62 7 4 0 + 14 0.143 + 35 0.429 + 37 0.286 + 47 0.143 + + 64 12 4 0 + 0 0.0833 + 42 0.0833 + 45 0.25 + 47 0.583 + + 65 3 3 0 + 2 0.333 + 41 0.333 + 42 0.333 + + 67 184 13 0 + 0 0.00543 + 2 0.0109 + 8 0.00543 + 9 0.00543 + 12 0.00543 + 13 0.0652 + 14 0.0217 + 21 0.0489 + 34 0.00543 + 35 0.429 + 37 0.37 + 41 0.0217 + 45 0.00543 + + 69 1 1 0 + 0 1 + + 71 83 9 0 + 2 0.0843 + 21 0.0723 + 28 0.012 + 41 0.0723 + 42 0.0361 + 44 0.012 + 45 0.301 + 46 0.012 + 47 0.398 + + 72 108 9 0 + 2 0.0556 + 7 0.00926 + 21 0.0556 + 40 0.0185 + 41 0.0833 + 42 0.0648 + 45 0.278 + 46 0.00926 + 47 0.426 + +66 9695 38 20 + 0 0.00743 + 2 0.00918 + 3 0.0032 + 4 0.00196 + 5 0.000103 + 6 0.000103 + 7 0.0099 + 8 0.0141 + 9 0.00124 + 10 0.000103 + 12 0.00258 + 13 0.0709 + 14 0.033 + 15 0.00949 + 16 0.000413 + 18 0.000309 + 19 0.00825 + 21 0.0228 + 22 0.000825 + 24 0.00175 + 26 0.000413 + 28 0.00495 + 29 0.00155 + 30 0.00196 + 31 0.00495 + 32 0.00155 + 33 0.00134 + 34 0.000413 + 35 0.000722 + 37 0.000206 + 40 0.00144 + 41 0.158 + 42 0.0033 + 43 0.000619 + 44 0.000309 + 45 0.108 + 46 0.14 + 47 0.372 + + 0 88 14 2 + 2 0.227 + 3 0.0227 + 4 0.0114 + 7 0.227 + 9 0.0227 + 13 0.114 + 14 0.0227 + 18 0.0114 + 21 0.205 + 31 0.0341 + 35 0.0114 + 41 0.0227 + 42 0.0114 + 47 0.0568 + + 47 34 7 0 + 2 0.235 + 4 0.0294 + 7 0.559 + 13 0.0588 + 21 0.0588 + 35 0.0294 + 41 0.0294 + + 55 54 12 0 + 2 0.222 + 3 0.037 + 7 0.0185 + 9 0.037 + 13 0.148 + 14 0.037 + 18 0.0185 + 21 0.296 + 31 0.0556 + 41 0.0185 + 42 0.0185 + 47 0.0926 + + 2 31 3 0 + 41 0.0323 + 45 0.0323 + 47 0.935 + + 12 26 8 0 + 2 0.308 + 13 0.154 + 15 0.0769 + 21 0.231 + 35 0.0385 + 37 0.0385 + 41 0.0769 + 47 0.0769 + + 21 7 4 0 + 12 0.143 + 19 0.286 + 42 0.143 + 47 0.429 + + 33 4 2 0 + 21 0.75 + 47 0.25 + + 40 9 5 0 + 8 0.111 + 13 0.556 + 24 0.111 + 30 0.111 + 42 0.111 + + 41 1398 28 4 + 0 0.0122 + 2 0.000715 + 3 0.0179 + 4 0.00787 + 5 0.000715 + 6 0.000715 + 7 0.0114 + 8 0.0858 + 9 0.00572 + 10 0.000715 + 12 0.00143 + 13 0.408 + 14 0.192 + 15 0.0451 + 16 0.00286 + 19 0.0258 + 21 0.0672 + 22 0.00501 + 24 0.0114 + 26 0.00215 + 28 0.0315 + 29 0.00858 + 30 0.0107 + 31 0.0222 + 32 0.00858 + 33 0.00787 + 35 0.000715 + 43 0.00429 + + 46 1150 27 0 + 0 0.0139 + 3 0.0104 + 4 0.00957 + 5 0.00087 + 6 0.00087 + 7 0.013 + 8 0.0957 + 9 0.00522 + 10 0.00087 + 12 0.00174 + 13 0.415 + 14 0.17 + 15 0.0435 + 16 0.00348 + 19 0.0304 + 21 0.0661 + 22 0.00435 + 24 0.0139 + 26 0.00261 + 28 0.0322 + 29 0.0087 + 30 0.013 + 31 0.0235 + 32 0.00957 + 33 0.00609 + 35 0.00087 + 43 0.00435 + + 49 7 6 0 + 3 0.143 + 8 0.143 + 13 0.143 + 14 0.143 + 15 0.143 + 29 0.286 + + 57 6 3 0 + 13 0.333 + 14 0.167 + 21 0.5 + + 69 231 17 0 + 0 0.00433 + 2 0.00433 + 3 0.0519 + 7 0.00433 + 8 0.039 + 9 0.00866 + 13 0.385 + 14 0.303 + 15 0.0519 + 19 0.00433 + 21 0.0606 + 22 0.00866 + 28 0.0303 + 31 0.0173 + 32 0.00433 + 33 0.0173 + 43 0.00433 + + 45 1037 7 1 + 2 0.00193 + 34 0.000964 + 41 0.000964 + 42 0.00193 + 44 0.000964 + 46 0.000964 + 47 0.992 + + 69 1 1 0 + 46 1 + + 46 1179 3 0 + 40 0.0119 + 41 0.978 + 46 0.0102 + + 47 2027 21 10 + 2 0.0143 + 7 0.0192 + 9 0.000987 + 13 0.00345 + 14 0.000493 + 15 0.000987 + 18 0.000493 + 21 0.00691 + 28 0.000493 + 29 0.000493 + 31 0.00148 + 32 0.000493 + 34 0.000987 + 35 0.00148 + 37 0.000493 + 41 0.0276 + 42 0.0074 + 44 0.000493 + 45 0.00296 + 46 0.0183 + 47 0.89 + + 0 52 11 0 + 2 0.115 + 7 0.385 + 9 0.0385 + 13 0.0577 + 14 0.0192 + 18 0.0192 + 21 0.154 + 31 0.0577 + 35 0.0192 + 41 0.0385 + 47 0.0962 + + 2 30 2 0 + 45 0.0333 + 47 0.967 + + 12 20 8 0 + 2 0.25 + 13 0.2 + 15 0.1 + 21 0.15 + 35 0.05 + 37 0.05 + 41 0.1 + 47 0.1 + + 45 1033 4 0 + 2 0.000968 + 34 0.000968 + 42 0.00194 + 47 0.996 + + 49 86 6 0 + 2 0.151 + 28 0.0116 + 42 0.0116 + 44 0.0116 + 45 0.0116 + 47 0.802 + + 51 6 2 0 + 42 0.333 + 47 0.667 + + 55 11 3 0 + 2 0.182 + 42 0.364 + 47 0.455 + + 57 83 5 0 + 2 0.012 + 7 0.012 + 42 0.012 + 45 0.012 + 47 0.952 + + 62 456 3 0 + 34 0.00219 + 42 0.00439 + 47 0.993 + + 69 198 10 0 + 7 0.0909 + 21 0.0152 + 29 0.00505 + 32 0.00505 + 35 0.00505 + 41 0.253 + 42 0.00505 + 45 0.0101 + 46 0.187 + 47 0.424 + + 48 31 3 0 + 2 0.0323 + 21 0.129 + 47 0.839 + + 49 98 8 0 + 2 0.163 + 21 0.0204 + 28 0.0102 + 41 0.0714 + 42 0.0102 + 44 0.0102 + 45 0.0102 + 47 0.704 + + 51 14 3 0 + 42 0.143 + 45 0.571 + 47 0.286 + + 55 97 11 4 + 0 0.567 + 2 0.0309 + 8 0.0103 + 12 0.227 + 15 0.0103 + 21 0.0103 + 33 0.0103 + 42 0.0412 + 45 0.0309 + 46 0.0103 + 47 0.0515 + + 41 5 4 0 + 2 0.2 + 15 0.2 + 45 0.4 + 47 0.2 + + 47 5 2 0 + 2 0.2 + 42 0.8 + + 57 1 1 0 + 33 1 + + 69 83 8 0 + 0 0.639 + 2 0.012 + 8 0.012 + 12 0.265 + 21 0.012 + 45 0.012 + 46 0.012 + 47 0.0361 + + 57 99 10 3 + 2 0.0303 + 7 0.0101 + 8 0.0101 + 13 0.0202 + 14 0.0101 + 21 0.0404 + 41 0.0606 + 42 0.0101 + 45 0.0101 + 47 0.798 + + 0 9 3 0 + 21 0.333 + 42 0.111 + 47 0.556 + + 41 8 2 0 + 41 0.625 + 47 0.375 + + 69 77 7 0 + 2 0.026 + 7 0.013 + 13 0.013 + 14 0.013 + 21 0.013 + 45 0.013 + 47 0.909 + + 58 6 5 0 + 8 0.167 + 13 0.333 + 14 0.167 + 15 0.167 + 19 0.167 + + 62 1478 6 2 + 2 0.00271 + 34 0.000677 + 41 0.000677 + 42 0.00135 + 45 0.688 + 47 0.306 + + 41 1357 6 0 + 2 0.00295 + 34 0.000737 + 41 0.000737 + 42 0.00147 + 45 0.739 + 47 0.255 + + 69 111 2 0 + 45 0.036 + 47 0.964 + + 64 11 5 0 + 2 0.0909 + 13 0.0909 + 41 0.0909 + 45 0.0909 + 47 0.636 + + 65 9 3 0 + 42 0.111 + 45 0.667 + 47 0.222 + + 69 2030 25 4 + 2 0.000493 + 3 0.00197 + 4 0.00345 + 7 0.00985 + 8 0.0064 + 13 0.0404 + 14 0.0227 + 15 0.0113 + 18 0.000493 + 19 0.0202 + 21 0.036 + 22 0.000493 + 26 0.000493 + 28 0.000985 + 29 0.000985 + 30 0.00148 + 31 0.00542 + 32 0.000985 + 33 0.000493 + 35 0.000493 + 41 0.146 + 42 0.000493 + 45 0.00148 + 46 0.645 + 47 0.0414 + + 41 2 2 0 + 19 0.5 + 47 0.5 + + 47 1970 23 0 + 3 0.00203 + 4 0.00355 + 7 0.00964 + 8 0.0066 + 13 0.0416 + 14 0.0228 + 15 0.0117 + 18 0.000508 + 19 0.0203 + 21 0.0315 + 22 0.000508 + 26 0.000508 + 28 0.00102 + 29 0.000508 + 30 0.00152 + 31 0.00558 + 32 0.00102 + 33 0.000508 + 35 0.000508 + 41 0.151 + 45 0.00152 + 46 0.665 + 47 0.0208 + + 58 2 1 0 + 21 1 + + 69 54 6 0 + 2 0.0185 + 7 0.0185 + 21 0.167 + 29 0.0185 + 42 0.0185 + 47 0.759 + +67 759 24 13 + 0 0.00527 + 2 0.0527 + 4 0.00132 + 7 0.00395 + 8 0.00264 + 9 0.00264 + 12 0.00264 + 13 0.0395 + 14 0.0145 + 15 0.00922 + 19 0.00922 + 21 0.0329 + 31 0.00132 + 33 0.00132 + 34 0.00264 + 35 0.215 + 37 0.182 + 40 0.00395 + 41 0.0461 + 42 0.0237 + 44 0.00527 + 45 0.0777 + 46 0.00132 + 47 0.264 + + 0 167 13 0 + 0 0.00599 + 2 0.0778 + 8 0.00599 + 13 0.0359 + 14 0.012 + 21 0.0359 + 35 0.15 + 37 0.228 + 40 0.00599 + 41 0.0659 + 42 0.0359 + 45 0.0958 + 47 0.246 + + 2 15 2 0 + 46 0.0667 + 47 0.933 + + 12 94 11 0 + 2 0.117 + 9 0.0106 + 13 0.0319 + 14 0.0106 + 21 0.0319 + 35 0.128 + 37 0.245 + 41 0.106 + 42 0.0106 + 45 0.0532 + 47 0.255 + + 14 2 1 0 + 45 1 + + 41 17 9 1 + 4 0.0588 + 7 0.0588 + 13 0.235 + 14 0.118 + 15 0.118 + 19 0.0588 + 21 0.235 + 31 0.0588 + 33 0.0588 + + 12 7 5 0 + 4 0.143 + 13 0.286 + 14 0.286 + 19 0.143 + 31 0.143 + + 45 6 5 0 + 2 0.167 + 7 0.167 + 42 0.167 + 44 0.333 + 47 0.167 + + 46 1 1 0 + 40 1 + + 47 342 18 10 + 0 0.00585 + 2 0.038 + 7 0.00292 + 8 0.00292 + 9 0.00292 + 12 0.00292 + 13 0.0351 + 14 0.0117 + 21 0.0263 + 34 0.00292 + 35 0.237 + 37 0.202 + 40 0.00292 + 41 0.0263 + 42 0.0263 + 44 0.00585 + 45 0.076 + 47 0.292 + + 0 148 13 0 + 0 0.00676 + 2 0.0338 + 8 0.00676 + 13 0.0405 + 14 0.00676 + 21 0.0338 + 35 0.169 + 37 0.257 + 40 0.00676 + 41 0.027 + 42 0.0405 + 45 0.0946 + 47 0.277 + + 2 14 1 0 + 47 1 + + 12 82 11 0 + 2 0.0854 + 9 0.0122 + 13 0.0366 + 14 0.0122 + 21 0.0366 + 35 0.146 + 37 0.28 + 41 0.0366 + 42 0.0122 + 45 0.0488 + 47 0.293 + + 14 2 1 0 + 45 1 + + 45 5 4 0 + 7 0.2 + 42 0.2 + 44 0.4 + 47 0.2 + + 49 5 2 0 + 14 0.2 + 47 0.8 + + 55 7 6 0 + 0 0.143 + 2 0.143 + 12 0.143 + 21 0.143 + 35 0.143 + 45 0.286 + + 57 6 2 0 + 37 0.167 + 47 0.833 + + 64 6 3 0 + 41 0.333 + 45 0.167 + 47 0.5 + + 69 56 7 0 + 13 0.0536 + 14 0.0179 + 34 0.0179 + 35 0.768 + 37 0.0714 + 45 0.0357 + 47 0.0357 + + 49 5 2 0 + 14 0.2 + 47 0.8 + + 55 10 7 0 + 0 0.1 + 2 0.1 + 12 0.1 + 15 0.3 + 21 0.1 + 35 0.1 + 45 0.2 + + 57 6 2 0 + 37 0.167 + 47 0.833 + + 64 8 4 0 + 2 0.125 + 41 0.25 + 45 0.25 + 47 0.375 + + 69 67 10 0 + 13 0.0597 + 14 0.0149 + 15 0.0299 + 19 0.0896 + 21 0.0299 + 34 0.0149 + 35 0.642 + 37 0.0597 + 45 0.0299 + 47 0.0299 + +68 1958 35 27 + 0 0.0827 + 1 0.00102 + 2 0.111 + 3 0.0133 + 4 0.0511 + 7 0.072 + 8 0.116 + 9 0.00358 + 13 0.15 + 14 0.0572 + 15 0.0465 + 16 0.000511 + 18 0.00715 + 19 0.00511 + 20 0.00409 + 21 0.0235 + 22 0.00102 + 24 0.00306 + 26 0.00562 + 27 0.000511 + 28 0.0225 + 29 0.00562 + 30 0.0163 + 31 0.0235 + 32 0.00358 + 33 0.0097 + 37 0.00153 + 40 0.00153 + 41 0.0914 + 42 0.0184 + 43 0.00153 + 44 0.00102 + 45 0.00919 + 46 0.00613 + 47 0.0337 + + 2 466 18 9 + 0 0.00429 + 3 0.0343 + 7 0.0172 + 8 0.193 + 9 0.00858 + 13 0.369 + 14 0.0687 + 15 0.122 + 16 0.00215 + 19 0.00215 + 21 0.0343 + 22 0.00215 + 30 0.00429 + 31 0.00429 + 37 0.00644 + 41 0.109 + 43 0.00644 + 46 0.0107 + + 7 1 1 0 + 37 1 + + 8 110 4 0 + 8 0.109 + 13 0.682 + 14 0.0182 + 15 0.191 + + 13 55 4 0 + 8 0.545 + 13 0.345 + 14 0.0727 + 41 0.0364 + + 14 10 2 0 + 8 0.2 + 13 0.8 + + 15 19 3 0 + 8 0.474 + 14 0.0526 + 15 0.474 + + 30 3 1 0 + 8 1 + + 47 253 17 0 + 3 0.0593 + 7 0.0316 + 8 0.119 + 9 0.0158 + 13 0.265 + 14 0.0988 + 15 0.107 + 16 0.00395 + 19 0.00395 + 21 0.0593 + 22 0.00395 + 30 0.00791 + 31 0.00791 + 37 0.00791 + 41 0.182 + 43 0.0119 + 46 0.0158 + + 48 3 2 0 + 0 0.333 + 8 0.667 + + 57 1 1 0 + 0 1 + + 4 9 5 0 + 0 0.222 + 7 0.444 + 13 0.111 + 41 0.111 + 45 0.111 + + 7 4 4 0 + 2 0.25 + 8 0.25 + 21 0.25 + 41 0.25 + + 8 194 20 4 + 0 0.00515 + 2 0.572 + 3 0.0103 + 4 0.0722 + 7 0.0619 + 8 0.067 + 13 0.0155 + 15 0.0155 + 18 0.0206 + 20 0.00515 + 21 0.00515 + 26 0.0103 + 28 0.0206 + 29 0.00515 + 30 0.0155 + 31 0.00515 + 33 0.0155 + 41 0.0464 + 42 0.0103 + 47 0.0206 + + 2 58 17 0 + 0 0.0172 + 2 0.0172 + 3 0.0345 + 4 0.172 + 7 0.121 + 8 0.155 + 13 0.0517 + 15 0.0345 + 18 0.0345 + 21 0.0172 + 28 0.069 + 29 0.0172 + 30 0.0345 + 31 0.0172 + 33 0.0345 + 41 0.103 + 47 0.069 + + 13 3 3 0 + 8 0.333 + 18 0.333 + 26 0.333 + + 41 18 9 0 + 4 0.222 + 7 0.222 + 8 0.0556 + 18 0.0556 + 26 0.0556 + 30 0.0556 + 33 0.0556 + 41 0.167 + 42 0.111 + + 47 111 4 0 + 2 0.973 + 7 0.00901 + 8 0.00901 + 15 0.00901 + + 13 182 19 3 + 0 0.00549 + 2 0.308 + 3 0.00549 + 4 0.11 + 7 0.137 + 8 0.132 + 9 0.00549 + 13 0.022 + 15 0.022 + 18 0.0165 + 20 0.011 + 26 0.011 + 28 0.0165 + 30 0.022 + 31 0.00549 + 32 0.011 + 33 0.011 + 41 0.132 + 47 0.0165 + + 2 103 19 0 + 0 0.00971 + 2 0.00971 + 3 0.00971 + 4 0.136 + 7 0.204 + 8 0.214 + 9 0.00971 + 13 0.0291 + 15 0.0194 + 18 0.0194 + 20 0.00971 + 26 0.0194 + 28 0.0291 + 30 0.0291 + 31 0.00971 + 32 0.00971 + 33 0.00971 + 41 0.204 + 47 0.0194 + + 41 17 10 0 + 4 0.294 + 7 0.176 + 8 0.0588 + 15 0.0588 + 18 0.0588 + 30 0.0588 + 32 0.0588 + 33 0.0588 + 41 0.118 + 47 0.0588 + + 47 51 2 0 + 2 0.98 + 13 0.0196 + + 14 21 6 2 + 2 0.476 + 4 0.143 + 8 0.0952 + 13 0.0952 + 33 0.0476 + 41 0.143 + + 2 7 4 0 + 4 0.429 + 8 0.143 + 33 0.143 + 41 0.286 + + 47 13 3 0 + 2 0.769 + 8 0.0769 + 13 0.154 + + 15 60 9 2 + 2 0.317 + 4 0.15 + 7 0.117 + 8 0.15 + 13 0.0167 + 15 0.133 + 20 0.0167 + 41 0.0333 + 47 0.0667 + + 2 31 7 0 + 4 0.226 + 7 0.194 + 8 0.258 + 13 0.0323 + 15 0.129 + 20 0.0323 + 47 0.129 + + 47 18 2 0 + 2 0.833 + 15 0.167 + + 21 16 5 1 + 0 0.188 + 2 0.5 + 13 0.125 + 21 0.125 + 42 0.0625 + + 48 3 1 0 + 0 1 + + 30 5 3 0 + 2 0.6 + 7 0.2 + 13 0.2 + + 41 124 16 4 + 3 0.0403 + 4 0.00806 + 8 0.29 + 9 0.00806 + 13 0.387 + 14 0.0887 + 15 0.0242 + 19 0.00806 + 21 0.0403 + 22 0.00806 + 26 0.00806 + 29 0.00806 + 30 0.0323 + 31 0.0161 + 33 0.00806 + 40 0.0242 + + 2 50 12 0 + 3 0.08 + 8 0.16 + 13 0.36 + 14 0.12 + 15 0.02 + 19 0.02 + 21 0.1 + 22 0.02 + 29 0.02 + 30 0.04 + 31 0.04 + 33 0.02 + + 13 22 3 0 + 4 0.0455 + 8 0.591 + 13 0.364 + + 46 5 3 0 + 8 0.2 + 13 0.2 + 40 0.6 + + 48 9 4 0 + 3 0.111 + 8 0.667 + 9 0.111 + 30 0.111 + + 42 11 6 0 + 4 0.0909 + 7 0.0909 + 8 0.273 + 13 0.364 + 15 0.0909 + 47 0.0909 + + 45 10 7 0 + 0 0.1 + 2 0.1 + 7 0.2 + 19 0.1 + 24 0.1 + 42 0.1 + 46 0.3 + + 46 9 4 0 + 8 0.222 + 27 0.111 + 32 0.111 + 41 0.556 + + 47 494 29 16 + 0 0.164 + 1 0.00202 + 2 0.00405 + 3 0.00405 + 4 0.0911 + 7 0.132 + 8 0.0891 + 9 0.00202 + 13 0.0587 + 14 0.0688 + 15 0.0202 + 18 0.0142 + 19 0.0081 + 20 0.0081 + 21 0.0121 + 24 0.00607 + 26 0.0101 + 28 0.0445 + 29 0.0101 + 30 0.0263 + 31 0.0425 + 32 0.00607 + 33 0.0182 + 41 0.0547 + 42 0.0243 + 44 0.00202 + 45 0.0081 + 46 0.00202 + 47 0.0668 + + 4 8 4 0 + 0 0.25 + 7 0.5 + 41 0.125 + 45 0.125 + + 8 71 19 0 + 0 0.0141 + 2 0.0141 + 3 0.0282 + 4 0.197 + 7 0.155 + 8 0.155 + 13 0.0423 + 15 0.0282 + 18 0.0563 + 20 0.0141 + 21 0.0141 + 26 0.0282 + 28 0.0563 + 29 0.0141 + 30 0.0423 + 31 0.0141 + 33 0.0423 + 42 0.0282 + 47 0.0563 + + 13 93 17 0 + 0 0.0108 + 2 0.0108 + 4 0.172 + 7 0.269 + 8 0.226 + 9 0.0108 + 15 0.043 + 18 0.0323 + 20 0.0215 + 26 0.0215 + 28 0.0323 + 30 0.043 + 31 0.0108 + 32 0.0215 + 33 0.0215 + 41 0.0215 + 47 0.0323 + + 14 4 2 0 + 4 0.75 + 33 0.25 + + 15 30 5 0 + 4 0.3 + 7 0.233 + 8 0.3 + 20 0.0333 + 47 0.133 + + 21 5 3 0 + 0 0.6 + 13 0.2 + 42 0.2 + + 45 6 5 0 + 0 0.167 + 7 0.333 + 19 0.167 + 24 0.167 + 42 0.167 + + 48 60 12 0 + 0 0.533 + 1 0.0167 + 4 0.0333 + 7 0.0333 + 13 0.05 + 14 0.0667 + 28 0.0333 + 29 0.0167 + 41 0.0833 + 42 0.0333 + 45 0.0167 + 47 0.0833 + + 49 34 12 0 + 0 0.206 + 7 0.0882 + 13 0.0882 + 14 0.147 + 21 0.0294 + 28 0.118 + 29 0.0294 + 30 0.0294 + 31 0.0294 + 41 0.147 + 42 0.0294 + 47 0.0588 + + 50 2 1 0 + 41 1 + + 55 61 17 0 + 0 0.246 + 4 0.0164 + 7 0.148 + 13 0.0328 + 14 0.131 + 19 0.0328 + 21 0.0328 + 26 0.0164 + 28 0.0656 + 30 0.0328 + 31 0.0328 + 32 0.0164 + 33 0.0328 + 41 0.0656 + 42 0.0492 + 44 0.0164 + 47 0.0328 + + 57 68 17 0 + 0 0.147 + 8 0.0147 + 13 0.191 + 14 0.147 + 15 0.0588 + 19 0.0147 + 21 0.0147 + 24 0.0147 + 28 0.0294 + 29 0.0294 + 30 0.0441 + 31 0.162 + 33 0.0147 + 41 0.0441 + 42 0.0147 + 45 0.0147 + 47 0.0441 + + 62 13 6 0 + 7 0.0769 + 14 0.0769 + 31 0.154 + 41 0.0769 + 46 0.0769 + 47 0.538 + + 64 10 8 0 + 0 0.1 + 8 0.1 + 13 0.2 + 24 0.1 + 28 0.1 + 31 0.2 + 42 0.1 + 47 0.1 + + 65 1 1 0 + 45 1 + + 69 17 5 0 + 0 0.353 + 13 0.0588 + 14 0.353 + 21 0.0588 + 41 0.176 + + 48 82 14 3 + 0 0.39 + 1 0.0122 + 2 0.0366 + 4 0.0488 + 7 0.0244 + 13 0.0366 + 14 0.0488 + 21 0.0488 + 28 0.0244 + 29 0.0122 + 41 0.171 + 42 0.0366 + 45 0.0488 + 47 0.061 + + 41 24 7 0 + 0 0.333 + 14 0.0417 + 21 0.0833 + 28 0.0417 + 41 0.333 + 45 0.0417 + 47 0.125 + + 46 2 1 0 + 45 1 + + 47 2 2 0 + 14 0.5 + 42 0.5 + + 49 40 14 1 + 0 0.175 + 2 0.025 + 4 0.05 + 7 0.075 + 13 0.075 + 14 0.125 + 21 0.05 + 28 0.1 + 29 0.025 + 30 0.025 + 31 0.025 + 41 0.175 + 42 0.025 + 47 0.05 + + 41 7 4 0 + 13 0.286 + 21 0.143 + 29 0.143 + 41 0.429 + + 50 4 1 0 + 41 1 + + 51 2 2 0 + 28 0.5 + 42 0.5 + + 52 1 1 0 + 45 1 + + 55 85 19 3 + 0 0.176 + 4 0.0118 + 7 0.106 + 13 0.0235 + 14 0.106 + 19 0.0235 + 21 0.0471 + 26 0.0118 + 28 0.0471 + 30 0.0235 + 31 0.0235 + 32 0.0118 + 33 0.0235 + 41 0.176 + 42 0.118 + 44 0.0118 + 45 0.0118 + 46 0.0235 + 47 0.0235 + + 2 49 17 0 + 0 0.163 + 4 0.0204 + 7 0.143 + 13 0.0408 + 14 0.163 + 19 0.0204 + 21 0.0408 + 26 0.0204 + 28 0.0408 + 30 0.0408 + 31 0.0408 + 32 0.0204 + 33 0.0204 + 41 0.143 + 42 0.0204 + 45 0.0204 + 47 0.0408 + + 41 20 8 0 + 0 0.3 + 7 0.1 + 19 0.05 + 28 0.1 + 33 0.05 + 41 0.25 + 42 0.1 + 44 0.05 + + 47 15 5 0 + 14 0.0667 + 21 0.133 + 41 0.2 + 42 0.467 + 46 0.133 + + 57 75 19 2 + 0 0.133 + 2 0.0133 + 7 0.0133 + 8 0.0133 + 13 0.173 + 14 0.133 + 15 0.0533 + 19 0.0133 + 21 0.04 + 24 0.0133 + 28 0.0267 + 29 0.0267 + 30 0.04 + 31 0.147 + 33 0.0133 + 41 0.08 + 42 0.0133 + 45 0.0133 + 47 0.04 + + 2 53 15 0 + 0 0.113 + 2 0.0189 + 7 0.0189 + 8 0.0189 + 13 0.151 + 14 0.189 + 15 0.0566 + 21 0.0566 + 24 0.0189 + 28 0.0189 + 29 0.0377 + 30 0.0189 + 31 0.151 + 41 0.113 + 47 0.0189 + + 41 19 11 0 + 0 0.211 + 13 0.158 + 15 0.0526 + 19 0.0526 + 28 0.0526 + 30 0.105 + 31 0.158 + 33 0.0526 + 42 0.0526 + 45 0.0526 + 47 0.0526 + + 62 19 9 2 + 7 0.0526 + 14 0.0526 + 21 0.0526 + 31 0.105 + 41 0.158 + 42 0.105 + 45 0.0526 + 46 0.0526 + 47 0.368 + + 2 7 5 0 + 7 0.143 + 14 0.143 + 31 0.286 + 41 0.286 + 46 0.143 + + 42 5 1 0 + 47 1 + + 64 11 8 0 + 0 0.0909 + 8 0.0909 + 13 0.182 + 24 0.0909 + 28 0.0909 + 31 0.182 + 42 0.182 + 47 0.0909 + + 65 3 1 0 + 45 1 + + 67 2 1 0 + 45 1 + + 69 19 5 0 + 0 0.316 + 13 0.0526 + 14 0.316 + 21 0.0526 + 41 0.263 + + 71 2 2 0 + 31 0.5 + 47 0.5 + +69 294981 43 37 + 0 0.105 + 1 0.00265 + 2 0.0256 + 3 0.00552 + 4 0.00905 + 5 0.00567 + 6 9.49e-05 + 7 0.0229 + 8 0.00961 + 9 0.000532 + 10 0.000431 + 12 0.0558 + 13 0.14 + 14 0.108 + 15 0.0833 + 16 0.00388 + 18 0.000919 + 19 0.0976 + 20 9.49e-05 + 21 0.0678 + 22 0.000427 + 23 0.000122 + 24 0.00078 + 25 2.37e-05 + 26 0.0912 + 27 1.36e-05 + 28 0.00706 + 29 0.00917 + 30 0.00623 + 31 0.0111 + 32 0.00412 + 33 0.00631 + 34 0.0243 + 35 0.0121 + 37 0.000692 + 40 7.12e-05 + 41 0.0548 + 42 0.00322 + 43 0.00148 + 44 0.000363 + 45 0.00512 + 46 0.0116 + 47 0.00527 + + 0 33828 41 0 + 0 0.0459 + 1 0.000443 + 2 0.0164 + 3 0.00573 + 4 0.0196 + 5 0.0219 + 6 0.000118 + 7 0.00198 + 8 0.00399 + 9 0.000236 + 10 0.000709 + 12 0.0834 + 13 0.183 + 14 0.139 + 15 0.0942 + 16 0.00562 + 18 0.0013 + 19 0.154 + 20 8.87e-05 + 21 0.0574 + 22 0.000118 + 23 2.96e-05 + 24 0.000177 + 26 0.0434 + 28 0.00121 + 29 0.00127 + 30 0.00139 + 31 0.0018 + 32 0.00106 + 33 0.000709 + 34 0.0345 + 35 0.0178 + 37 5.91e-05 + 40 2.96e-05 + 41 0.0478 + 42 0.00328 + 43 0.00207 + 44 2.96e-05 + 45 0.00532 + 46 0.00316 + 47 0.000207 + + 1 555 24 0 + 0 0.342 + 2 0.018 + 4 0.0036 + 7 0.245 + 8 0.0018 + 13 0.0613 + 14 0.0721 + 15 0.00541 + 19 0.00541 + 20 0.0036 + 21 0.101 + 24 0.00541 + 26 0.0198 + 28 0.0126 + 29 0.0036 + 31 0.0036 + 32 0.0018 + 33 0.0036 + 41 0.0378 + 42 0.0036 + 43 0.0036 + 45 0.0144 + 46 0.0036 + 47 0.027 + + 2 411 19 14 + 0 0.00243 + 7 0.00487 + 8 0.00973 + 12 0.017 + 13 0.00973 + 14 0.0146 + 15 0.00487 + 28 0.338 + 29 0.0779 + 30 0.151 + 31 0.173 + 32 0.0779 + 33 0.09 + 34 0.00243 + 41 0.0146 + 42 0.00243 + 43 0.00243 + 44 0.00243 + 46 0.00487 + + 0 2 2 0 + 8 0.5 + 12 0.5 + + 8 2 1 0 + 8 1 + + 12 3 1 0 + 12 1 + + 13 2 1 0 + 13 1 + + 21 2 2 0 + 28 0.5 + 46 0.5 + + 28 142 4 0 + 28 0.972 + 41 0.0141 + 42 0.00704 + 43 0.00704 + + 29 33 2 0 + 29 0.97 + 41 0.0303 + + 30 64 3 0 + 7 0.0156 + 8 0.0156 + 30 0.969 + + 31 73 3 0 + 31 0.973 + 41 0.0137 + 44 0.0137 + + 32 34 3 0 + 0 0.0294 + 32 0.941 + 41 0.0294 + + 33 37 1 0 + 33 1 + + 45 1 1 0 + 46 1 + + 47 1 1 0 + 15 1 + + 69 13 6 0 + 7 0.0769 + 12 0.231 + 13 0.154 + 14 0.385 + 15 0.0769 + 34 0.0769 + + 4 9 6 0 + 0 0.111 + 7 0.111 + 13 0.111 + 19 0.111 + 26 0.222 + 41 0.333 + + 7 23 6 0 + 0 0.522 + 8 0.0435 + 13 0.087 + 14 0.0435 + 21 0.261 + 41 0.0435 + + 8 152 22 1 + 0 0.283 + 1 0.0132 + 2 0.0329 + 4 0.0197 + 7 0.0658 + 8 0.00658 + 13 0.0329 + 14 0.0724 + 15 0.0132 + 16 0.00658 + 19 0.00658 + 21 0.25 + 22 0.0197 + 23 0.00658 + 26 0.0526 + 28 0.0132 + 29 0.0132 + 32 0.00658 + 41 0.0395 + 45 0.0263 + 46 0.00658 + 47 0.0132 + + 2 3 2 0 + 4 0.667 + 22 0.333 + + 12 9669 37 0 + 0 0.000207 + 2 0.0233 + 3 0.00776 + 4 0.0185 + 5 0.00755 + 6 0.000207 + 7 0.00114 + 8 0.00259 + 9 0.00031 + 10 0.000207 + 12 0.000103 + 13 0.242 + 14 0.173 + 15 0.106 + 16 0.00641 + 18 0.00103 + 19 0.222 + 21 0.0332 + 22 0.00031 + 23 0.000103 + 24 0.000103 + 28 0.00124 + 29 0.00124 + 30 0.000931 + 31 0.00238 + 32 0.00207 + 33 0.00176 + 34 0.0602 + 35 0.0146 + 40 0.000103 + 41 0.0506 + 42 0.00434 + 43 0.00321 + 44 0.000103 + 45 0.00858 + 46 0.0031 + 47 0.000103 + + 13 318 31 3 + 0 0.0252 + 1 0.00943 + 2 0.0629 + 3 0.066 + 4 0.0377 + 7 0.145 + 8 0.0252 + 10 0.0126 + 12 0.00314 + 13 0.164 + 14 0.0283 + 15 0.0377 + 16 0.00943 + 18 0.00314 + 19 0.00314 + 21 0.066 + 24 0.00629 + 26 0.151 + 28 0.0252 + 29 0.0189 + 30 0.00943 + 31 0.0157 + 32 0.00629 + 34 0.00314 + 37 0.00314 + 41 0.0346 + 42 0.00314 + 43 0.00314 + 45 0.00943 + 46 0.00314 + 47 0.00943 + + 2 2 2 0 + 7 0.5 + 31 0.5 + + 28 3 3 0 + 7 0.333 + 12 0.333 + 45 0.333 + + 69 12 6 0 + 2 0.0833 + 3 0.0833 + 13 0.583 + 15 0.0833 + 18 0.0833 + 41 0.0833 + + 14 122 21 0 + 0 0.0656 + 2 0.123 + 3 0.0328 + 4 0.0082 + 7 0.041 + 8 0.0246 + 13 0.262 + 14 0.0164 + 15 0.254 + 18 0.0082 + 19 0.0164 + 21 0.0082 + 30 0.0082 + 34 0.0082 + 35 0.0164 + 41 0.0574 + 42 0.0082 + 43 0.0082 + 45 0.0164 + 46 0.0082 + 47 0.0082 + + 15 37 10 0 + 0 0.108 + 2 0.027 + 7 0.0541 + 15 0.297 + 18 0.027 + 26 0.0541 + 33 0.027 + 42 0.027 + 45 0.162 + 47 0.216 + + 18 30 6 0 + 4 0.1 + 5 0.367 + 7 0.0667 + 13 0.0667 + 19 0.367 + 34 0.0333 + + 21 80 22 8 + 0 0.1 + 1 0.0125 + 2 0.0875 + 7 0.112 + 8 0.025 + 10 0.0125 + 12 0.112 + 13 0.15 + 14 0.0625 + 16 0.0125 + 19 0.0875 + 21 0.0375 + 26 0.0375 + 28 0.0125 + 29 0.0125 + 31 0.0125 + 32 0.0125 + 35 0.0125 + 41 0.05 + 42 0.0125 + 45 0.0125 + 47 0.0125 + + 0 4 2 0 + 12 0.25 + 19 0.75 + + 26 4 3 0 + 2 0.25 + 13 0.5 + 31 0.25 + + 28 9 6 0 + 2 0.444 + 7 0.111 + 12 0.111 + 13 0.111 + 16 0.111 + 42 0.111 + + 30 12 7 0 + 0 0.0833 + 7 0.25 + 13 0.25 + 19 0.0833 + 26 0.0833 + 32 0.0833 + 41 0.167 + + 31 10 5 0 + 0 0.1 + 7 0.1 + 14 0.5 + 41 0.2 + 47 0.1 + + 47 15 10 0 + 0 0.267 + 1 0.0667 + 2 0.0667 + 7 0.0667 + 10 0.0667 + 13 0.0667 + 21 0.133 + 26 0.133 + 28 0.0667 + 29 0.0667 + + 49 7 6 0 + 0 0.143 + 7 0.143 + 8 0.143 + 13 0.286 + 19 0.143 + 45 0.143 + + 69 13 6 0 + 8 0.0769 + 12 0.538 + 13 0.0769 + 19 0.154 + 21 0.0769 + 35 0.0769 + + 22 3 1 0 + 0 1 + + 26 13048 39 0 + 0 0.0513 + 1 0.00107 + 2 0.0104 + 3 0.018 + 4 0.00107 + 5 7.66e-05 + 6 0.000153 + 7 0.00613 + 8 0.084 + 9 0.00429 + 10 0.00046 + 12 0.00245 + 13 0.2 + 14 0.114 + 15 0.0403 + 16 0.00215 + 18 0.000153 + 19 0.0154 + 21 0.0327 + 22 0.000996 + 23 0.000153 + 24 0.00452 + 26 7.66e-05 + 28 0.0401 + 29 0.073 + 30 0.0567 + 31 0.105 + 32 0.0336 + 33 0.0583 + 34 0.000307 + 35 0.00115 + 37 0.00452 + 41 0.0174 + 42 0.00268 + 43 0.00115 + 44 0.000383 + 45 0.00261 + 46 0.0049 + 47 0.00897 + + 28 21028 36 3 + 0 0.00471 + 1 4.76e-05 + 2 0.0342 + 3 4.76e-05 + 4 0.000856 + 7 0.00185 + 8 0.00019 + 10 0.00019 + 12 0.238 + 13 0.00623 + 14 0.00923 + 15 0.00385 + 16 4.76e-05 + 18 0.000143 + 19 0.00956 + 21 0.117 + 22 0.00105 + 23 9.51e-05 + 26 0.538 + 27 9.51e-05 + 28 0.00518 + 29 0.00271 + 30 0.000476 + 31 0.000618 + 32 0.000666 + 33 0.000808 + 34 0.00019 + 35 0.000428 + 40 0.000333 + 41 0.00704 + 42 0.00195 + 43 0.000333 + 44 0.000666 + 45 0.00818 + 46 0.000238 + 47 0.0049 + + 2 139 9 0 + 2 0.0144 + 12 0.137 + 13 0.00719 + 14 0.0144 + 15 0.00719 + 21 0.0719 + 26 0.669 + 41 0.0647 + 45 0.0144 + + 41 17 6 0 + 0 0.0588 + 12 0.294 + 21 0.0588 + 26 0.353 + 33 0.0588 + 41 0.176 + + 46 2 1 0 + 45 1 + + 29 21706 36 1 + 0 0.00438 + 1 0.00101 + 2 0.0333 + 3 0.00604 + 4 0.00392 + 7 0.00143 + 8 0.00207 + 9 0.000184 + 10 9.21e-05 + 12 0.000276 + 13 0.196 + 14 0.136 + 15 0.23 + 16 0.00792 + 18 0.0018 + 19 0.133 + 21 0.0658 + 22 0.000322 + 23 4.61e-05 + 26 0.000138 + 28 9.21e-05 + 29 0.000322 + 30 0.000461 + 31 0.000921 + 32 4.61e-05 + 33 0.000138 + 34 0.0313 + 35 0.0208 + 37 9.21e-05 + 41 0.0885 + 42 0.0024 + 43 0.00147 + 44 9.21e-05 + 45 0.00235 + 46 0.0266 + 47 0.000645 + + 2 32 10 0 + 2 0.0312 + 13 0.156 + 14 0.0625 + 15 0.156 + 19 0.188 + 21 0.188 + 22 0.0312 + 35 0.125 + 41 0.0312 + 45 0.0312 + + 30 11273 33 1 + 0 0.265 + 2 0.0353 + 3 0.00284 + 4 0.00213 + 7 0.227 + 8 0.00319 + 9 8.87e-05 + 10 0.000355 + 13 0.0685 + 14 0.0679 + 15 0.0108 + 16 0.000621 + 18 0.00115 + 19 0.00337 + 20 0.00071 + 21 0.0726 + 22 0.000355 + 24 0.00364 + 26 0.0114 + 28 0.0184 + 29 0.0169 + 30 0.00337 + 31 0.00523 + 32 0.00417 + 33 0.0047 + 37 0.0016 + 41 0.126 + 42 0.00523 + 43 0.000266 + 44 0.000532 + 45 0.00772 + 46 0.00408 + 47 0.0245 + + 2 62 14 0 + 0 0.0968 + 2 0.0161 + 3 0.0161 + 7 0.355 + 13 0.0323 + 14 0.0968 + 15 0.0161 + 19 0.0323 + 21 0.0806 + 22 0.0161 + 26 0.113 + 28 0.0323 + 33 0.0161 + 41 0.0806 + + 31 15631 38 1 + 0 0.586 + 1 0.0204 + 2 0.0168 + 3 0.00448 + 4 0.00435 + 6 6.4e-05 + 7 0.0117 + 8 0.00032 + 9 0.000128 + 10 0.000256 + 12 0.00032 + 13 0.0843 + 14 0.0769 + 15 0.00409 + 16 0.000384 + 18 0.000256 + 19 0.00186 + 21 0.11 + 22 0.000768 + 23 0.00109 + 26 0.000128 + 28 0.00211 + 29 0.00211 + 30 0.000768 + 31 0.00102 + 32 0.000768 + 33 0.00122 + 34 0.000256 + 35 0.000128 + 37 0.00109 + 40 6.4e-05 + 41 0.047 + 42 0.00237 + 43 0.000448 + 44 0.00147 + 45 0.00333 + 46 0.00224 + 47 0.0094 + + 2 71 8 0 + 0 0.69 + 1 0.0563 + 13 0.0141 + 14 0.0423 + 19 0.0141 + 21 0.0986 + 41 0.0704 + 45 0.0141 + + 32 5414 31 1 + 2 0.0296 + 3 0.00166 + 4 0.0133 + 7 0.00129 + 8 0.00332 + 9 0.000369 + 10 0.00222 + 12 0.000185 + 13 0.0334 + 14 0.401 + 15 0.0253 + 16 0.0105 + 18 0.000739 + 19 0.248 + 21 0.0876 + 22 0.000185 + 23 0.000185 + 29 0.000185 + 30 0.000369 + 31 0.00185 + 32 0.000369 + 33 0.000369 + 34 0.0567 + 35 0.0412 + 37 0.000185 + 41 0.0292 + 42 0.00332 + 43 0.00259 + 45 0.00314 + 46 0.00148 + 47 0.000185 + + 2 32 7 0 + 2 0.0312 + 14 0.406 + 19 0.219 + 21 0.0312 + 34 0.156 + 35 0.0625 + 41 0.0938 + + 33 9604 31 2 + 2 0.0311 + 3 0.00281 + 4 0.0167 + 5 0.000625 + 6 0.000416 + 7 0.00198 + 8 0.00167 + 9 0.000104 + 10 0.000104 + 13 0.207 + 14 0.0117 + 15 0.162 + 16 0.0025 + 18 0.000937 + 19 0.192 + 21 0.0798 + 22 0.000312 + 25 0.000312 + 28 0.000104 + 29 0.000625 + 30 0.000416 + 31 0.000521 + 32 0.000312 + 34 0.0715 + 35 0.0271 + 41 0.0868 + 42 0.00344 + 43 0.00281 + 45 0.00573 + 46 0.0842 + 47 0.00375 + + 2 37 10 0 + 8 0.027 + 13 0.189 + 15 0.189 + 16 0.027 + 18 0.027 + 19 0.0811 + 21 0.027 + 34 0.243 + 35 0.0541 + 41 0.135 + + 41 2 2 0 + 2 0.5 + 34 0.5 + + 41 83 16 15 + 0 0.012 + 2 0.0482 + 3 0.012 + 8 0.0241 + 12 0.012 + 13 0.205 + 14 0.012 + 15 0.0482 + 19 0.0361 + 21 0.145 + 28 0.205 + 29 0.0241 + 30 0.0361 + 31 0.0843 + 32 0.0723 + 33 0.0241 + + 0 5 3 0 + 13 0.6 + 14 0.2 + 21 0.2 + + 2 6 4 0 + 28 0.333 + 29 0.167 + 31 0.333 + 32 0.167 + + 12 4 2 0 + 13 0.5 + 19 0.5 + + 26 5 2 0 + 13 0.6 + 21 0.4 + + 28 14 2 0 + 21 0.0714 + 28 0.929 + + 29 7 4 0 + 13 0.286 + 15 0.429 + 21 0.143 + 29 0.143 + + 30 2 1 0 + 30 1 + + 31 6 2 0 + 21 0.167 + 31 0.833 + + 32 4 1 0 + 32 1 + + 33 2 1 0 + 33 1 + + 49 6 5 0 + 2 0.167 + 12 0.167 + 13 0.333 + 21 0.167 + 28 0.167 + + 55 5 3 0 + 3 0.2 + 13 0.6 + 19 0.2 + + 57 5 3 0 + 2 0.6 + 8 0.2 + 21 0.2 + + 64 3 2 0 + 8 0.333 + 21 0.667 + + 69 6 4 0 + 13 0.333 + 15 0.167 + 21 0.333 + 30 0.167 + + 42 7 3 0 + 25 0.143 + 28 0.143 + 47 0.714 + + 44 5 4 0 + 13 0.4 + 19 0.2 + 26 0.2 + 31 0.2 + + 45 119 15 9 + 0 0.193 + 2 0.0336 + 4 0.0168 + 6 0.0084 + 7 0.0336 + 12 0.0924 + 13 0.134 + 14 0.0588 + 15 0.0252 + 19 0.0672 + 21 0.0672 + 26 0.193 + 28 0.0168 + 35 0.0084 + 41 0.0504 + + 0 6 5 0 + 13 0.167 + 14 0.167 + 15 0.167 + 35 0.167 + 41 0.333 + + 28 35 5 0 + 0 0.0286 + 2 0.0286 + 12 0.2 + 21 0.114 + 26 0.629 + + 29 14 5 0 + 13 0.357 + 14 0.143 + 15 0.143 + 19 0.286 + 41 0.0714 + + 30 15 6 0 + 0 0.267 + 7 0.2 + 14 0.0667 + 21 0.2 + 28 0.133 + 41 0.133 + + 31 14 5 0 + 0 0.714 + 2 0.0714 + 13 0.0714 + 14 0.0714 + 21 0.0714 + + 32 4 3 0 + 2 0.25 + 14 0.25 + 19 0.5 + + 33 8 3 0 + 2 0.125 + 13 0.75 + 19 0.125 + + 49 10 7 0 + 0 0.3 + 4 0.1 + 12 0.2 + 13 0.1 + 14 0.1 + 26 0.1 + 41 0.1 + + 69 9 6 0 + 0 0.333 + 4 0.111 + 6 0.111 + 12 0.111 + 13 0.222 + 19 0.111 + + 46 4 3 0 + 0 0.25 + 21 0.25 + 28 0.5 + + 47 145999 43 35 + 0 0.106 + 1 0.00268 + 2 0.0245 + 3 0.00554 + 4 0.00909 + 5 0.00573 + 6 9.59e-05 + 7 0.023 + 8 0.00966 + 9 0.000527 + 10 0.000404 + 12 0.0564 + 13 0.141 + 14 0.109 + 15 0.0841 + 16 0.00392 + 18 0.000918 + 19 0.0986 + 20 9.59e-05 + 21 0.0628 + 22 0.000363 + 23 6.16e-05 + 24 0.000788 + 25 2.05e-05 + 26 0.0921 + 27 1.37e-05 + 28 0.00658 + 29 0.00915 + 30 0.00608 + 31 0.011 + 32 0.00403 + 33 0.00624 + 34 0.0245 + 35 0.0122 + 37 0.000699 + 40 6.85e-05 + 41 0.0551 + 42 0.00323 + 43 0.00149 + 44 0.000349 + 45 0.00476 + 46 0.0117 + 47 0.00533 + + 0 33747 40 0 + 0 0.046 + 1 0.000444 + 2 0.0164 + 3 0.00572 + 4 0.0196 + 5 0.022 + 6 0.000119 + 7 0.00199 + 8 0.004 + 9 0.000237 + 10 0.000711 + 12 0.0836 + 13 0.183 + 14 0.139 + 15 0.0945 + 16 0.00563 + 18 0.0013 + 19 0.155 + 20 8.89e-05 + 21 0.0558 + 22 0.000119 + 23 2.96e-05 + 24 0.000178 + 26 0.0435 + 28 0.00121 + 29 0.00127 + 30 0.00139 + 31 0.00181 + 32 0.00107 + 33 0.000711 + 34 0.0346 + 35 0.0179 + 37 5.93e-05 + 40 2.96e-05 + 41 0.0477 + 42 0.00329 + 43 0.00207 + 45 0.00516 + 46 0.00317 + 47 0.000207 + + 1 547 24 0 + 0 0.347 + 2 0.0183 + 4 0.00366 + 7 0.249 + 8 0.00183 + 13 0.0622 + 14 0.0731 + 15 0.00548 + 19 0.00548 + 20 0.00366 + 21 0.0878 + 24 0.00548 + 26 0.0201 + 28 0.0128 + 29 0.00366 + 31 0.00366 + 32 0.00183 + 33 0.00366 + 41 0.0384 + 42 0.00366 + 43 0.00366 + 45 0.0146 + 46 0.00366 + 47 0.0274 + + 2 16 6 0 + 7 0.125 + 12 0.25 + 13 0.125 + 14 0.312 + 15 0.125 + 34 0.0625 + + 4 9 6 0 + 0 0.111 + 7 0.111 + 13 0.111 + 19 0.111 + 26 0.222 + 41 0.333 + + 7 23 6 0 + 0 0.522 + 8 0.0435 + 13 0.087 + 14 0.0435 + 21 0.261 + 41 0.0435 + + 8 124 20 0 + 0 0.347 + 1 0.0161 + 2 0.0242 + 4 0.0161 + 7 0.0645 + 8 0.00806 + 13 0.0403 + 14 0.0887 + 15 0.0161 + 16 0.00806 + 19 0.00806 + 21 0.169 + 26 0.0645 + 28 0.0161 + 29 0.0161 + 32 0.00806 + 41 0.0484 + 45 0.0161 + 46 0.00806 + 47 0.0161 + + 12 9643 36 0 + 0 0.000207 + 2 0.023 + 3 0.00778 + 4 0.0186 + 5 0.00757 + 6 0.000207 + 7 0.00114 + 8 0.00259 + 9 0.000311 + 10 0.000207 + 12 0.000104 + 13 0.243 + 14 0.174 + 15 0.106 + 16 0.00643 + 18 0.00104 + 19 0.222 + 21 0.0317 + 22 0.000311 + 23 0.000104 + 24 0.000104 + 28 0.00124 + 29 0.00124 + 30 0.000933 + 31 0.00239 + 32 0.00207 + 33 0.00176 + 34 0.0604 + 35 0.0146 + 40 0.000104 + 41 0.0502 + 42 0.00436 + 43 0.00321 + 45 0.00861 + 46 0.00301 + 47 0.000104 + + 13 311 31 0 + 0 0.0257 + 1 0.00965 + 2 0.0579 + 3 0.0675 + 4 0.0386 + 7 0.148 + 8 0.0257 + 10 0.00643 + 12 0.00322 + 13 0.164 + 14 0.0289 + 15 0.0386 + 16 0.00965 + 18 0.00322 + 19 0.00322 + 21 0.0675 + 24 0.00643 + 26 0.154 + 28 0.0257 + 29 0.0193 + 30 0.00965 + 31 0.0161 + 32 0.00643 + 34 0.00322 + 37 0.00322 + 41 0.0354 + 42 0.00322 + 43 0.00322 + 45 0.00322 + 46 0.00322 + 47 0.00965 + + 14 121 21 0 + 0 0.0661 + 2 0.116 + 3 0.0331 + 4 0.00826 + 7 0.0413 + 8 0.0248 + 13 0.264 + 14 0.0165 + 15 0.256 + 18 0.00826 + 19 0.0165 + 21 0.00826 + 30 0.00826 + 34 0.00826 + 35 0.0165 + 41 0.0579 + 42 0.00826 + 43 0.00826 + 45 0.0165 + 46 0.00826 + 47 0.00826 + + 15 37 10 0 + 0 0.108 + 2 0.027 + 7 0.0541 + 15 0.297 + 18 0.027 + 26 0.0541 + 33 0.027 + 42 0.027 + 45 0.162 + 47 0.216 + + 18 30 6 0 + 4 0.1 + 5 0.367 + 7 0.0667 + 13 0.0667 + 19 0.367 + 34 0.0333 + + 21 72 21 0 + 0 0.0972 + 1 0.0139 + 2 0.0694 + 7 0.111 + 8 0.0278 + 12 0.125 + 13 0.153 + 14 0.0694 + 16 0.0139 + 19 0.0972 + 21 0.0139 + 26 0.0417 + 28 0.0139 + 29 0.0139 + 31 0.0139 + 32 0.0139 + 35 0.0139 + 41 0.0556 + 42 0.0139 + 45 0.0139 + 47 0.0139 + + 22 3 1 0 + 0 1 + + 26 13034 39 0 + 0 0.0514 + 1 0.00107 + 2 0.0104 + 3 0.018 + 4 0.000997 + 5 7.67e-05 + 6 0.000153 + 7 0.00606 + 8 0.0841 + 9 0.0043 + 10 0.00046 + 12 0.00246 + 13 0.2 + 14 0.114 + 15 0.0404 + 16 0.00215 + 18 0.000153 + 19 0.0154 + 21 0.0322 + 22 0.000997 + 23 0.000153 + 24 0.00453 + 26 7.67e-05 + 28 0.0401 + 29 0.0731 + 30 0.0568 + 31 0.105 + 32 0.0337 + 33 0.0584 + 34 0.000307 + 35 0.00115 + 37 0.00453 + 41 0.017 + 42 0.00269 + 43 0.00115 + 44 0.000384 + 45 0.00261 + 46 0.00491 + 47 0.00898 + + 28 20589 35 0 + 0 0.00481 + 1 4.86e-05 + 2 0.028 + 3 4.86e-05 + 4 0.000777 + 7 0.0016 + 8 0.000194 + 10 9.71e-05 + 12 0.243 + 13 0.00612 + 14 0.00937 + 15 0.00393 + 16 4.86e-05 + 18 0.000146 + 19 0.00976 + 21 0.109 + 22 0.000486 + 26 0.55 + 27 9.71e-05 + 28 0.00525 + 29 0.00277 + 30 0.000486 + 31 0.000631 + 32 0.00068 + 33 0.000826 + 34 0.000194 + 35 0.000437 + 40 0.000291 + 41 0.00641 + 42 0.00175 + 43 0.000291 + 44 0.000631 + 45 0.00665 + 46 0.000243 + 47 0.005 + + 29 21355 36 0 + 0 0.00445 + 1 0.00103 + 2 0.0322 + 3 0.00609 + 4 0.00393 + 7 0.00103 + 8 0.00206 + 9 0.000187 + 10 4.68e-05 + 12 0.000281 + 13 0.199 + 14 0.138 + 15 0.234 + 16 0.00805 + 18 0.00183 + 19 0.135 + 21 0.0543 + 22 0.000328 + 23 4.68e-05 + 26 0.00014 + 28 9.37e-05 + 29 0.000328 + 30 0.000468 + 31 0.000937 + 32 4.68e-05 + 33 0.00014 + 34 0.0318 + 35 0.0212 + 37 9.37e-05 + 41 0.0896 + 42 0.00244 + 43 0.0015 + 44 4.68e-05 + 45 0.00173 + 46 0.0271 + 47 0.000656 + + 30 10957 33 0 + 0 0.273 + 2 0.0305 + 3 0.00292 + 4 0.0021 + 7 0.234 + 8 0.00301 + 9 9.13e-05 + 10 0.000365 + 13 0.0703 + 14 0.0698 + 15 0.0111 + 16 0.000639 + 18 0.00119 + 19 0.00347 + 20 0.00073 + 21 0.0539 + 22 0.000365 + 24 0.00374 + 26 0.0118 + 28 0.0189 + 29 0.0174 + 30 0.00347 + 31 0.00538 + 32 0.00429 + 33 0.00484 + 37 0.00164 + 41 0.129 + 42 0.00538 + 43 0.000274 + 44 0.000548 + 45 0.00657 + 46 0.0042 + 47 0.0252 + + 31 14933 38 0 + 0 0.613 + 1 0.0214 + 2 0.0127 + 3 0.00469 + 4 0.00449 + 6 6.7e-05 + 7 0.0115 + 8 0.000335 + 9 0.000134 + 10 0.000134 + 12 0.000335 + 13 0.088 + 14 0.0805 + 15 0.00429 + 16 0.000402 + 18 0.000268 + 19 0.00194 + 21 0.0765 + 22 0.000603 + 23 0.000268 + 26 0.000134 + 28 0.00221 + 29 0.00221 + 30 0.000804 + 31 0.00107 + 32 0.000804 + 33 0.00127 + 34 0.000268 + 35 0.000134 + 37 0.00114 + 40 6.7e-05 + 41 0.0488 + 42 0.00248 + 43 0.000469 + 44 0.00154 + 45 0.00254 + 46 0.00234 + 47 0.00984 + + 32 5292 30 0 + 2 0.0238 + 3 0.0017 + 4 0.0136 + 7 0.000945 + 8 0.0034 + 9 0.000378 + 10 0.00227 + 12 0.000189 + 13 0.034 + 14 0.41 + 15 0.0259 + 16 0.0108 + 18 0.000756 + 19 0.254 + 21 0.0752 + 22 0.000189 + 29 0.000189 + 30 0.000378 + 31 0.00189 + 32 0.000378 + 33 0.000378 + 34 0.058 + 35 0.0421 + 37 0.000189 + 41 0.0291 + 42 0.0034 + 43 0.00265 + 45 0.00246 + 46 0.00151 + 47 0.000189 + + 33 9413 30 0 + 2 0.0278 + 3 0.00287 + 4 0.017 + 5 0.000637 + 6 0.000425 + 7 0.00181 + 8 0.0017 + 9 0.000106 + 13 0.212 + 14 0.0119 + 15 0.166 + 16 0.00255 + 18 0.000956 + 19 0.196 + 21 0.0667 + 22 0.000212 + 25 0.000319 + 28 0.000106 + 29 0.000637 + 30 0.000425 + 31 0.000531 + 32 0.000319 + 34 0.073 + 35 0.0276 + 41 0.0882 + 42 0.00351 + 43 0.00287 + 45 0.00499 + 46 0.0859 + 47 0.00382 + + 41 7 4 0 + 0 0.143 + 2 0.571 + 12 0.143 + 21 0.143 + + 42 5 1 0 + 47 1 + + 45 114 15 0 + 0 0.202 + 2 0.0263 + 4 0.00877 + 6 0.00877 + 7 0.0351 + 12 0.0965 + 13 0.14 + 14 0.0614 + 15 0.0263 + 19 0.0702 + 21 0.0439 + 26 0.202 + 28 0.0175 + 35 0.00877 + 41 0.0526 + + 48 40 3 0 + 2 0.925 + 21 0.025 + 41 0.05 + + 49 1672 33 0 + 0 0.197 + 1 0.00538 + 2 0.145 + 3 0.00359 + 4 0.00718 + 7 0.0317 + 8 0.0012 + 10 0.0012 + 12 0.0514 + 13 0.106 + 14 0.103 + 15 0.0532 + 16 0.00239 + 18 0.000598 + 19 0.0371 + 21 0.0568 + 26 0.0359 + 28 0.0012 + 29 0.00239 + 30 0.0012 + 31 0.0012 + 32 0.000598 + 33 0.000598 + 34 0.0179 + 35 0.0102 + 37 0.0012 + 41 0.101 + 42 0.00538 + 43 0.000598 + 44 0.00179 + 45 0.00478 + 46 0.00299 + 47 0.00897 + + 50 8 7 0 + 0 0.125 + 13 0.125 + 14 0.125 + 15 0.25 + 30 0.125 + 33 0.125 + 41 0.125 + + 53 1 1 0 + 42 1 + + 55 113 11 0 + 0 0.0619 + 2 0.708 + 7 0.0177 + 14 0.0177 + 15 0.00885 + 19 0.0177 + 21 0.00885 + 26 0.0177 + 40 0.00885 + 41 0.106 + 42 0.0265 + + 57 77 6 0 + 0 0.234 + 2 0.558 + 12 0.039 + 15 0.013 + 21 0.039 + 41 0.117 + + 58 8 4 0 + 2 0.625 + 12 0.125 + 41 0.125 + 42 0.125 + + 60 2 2 0 + 0 0.5 + 2 0.5 + + 62 5 2 0 + 2 0.8 + 15 0.2 + + 64 7 4 0 + 0 0.286 + 2 0.429 + 7 0.143 + 41 0.143 + + 69 3673 34 0 + 0 0.0792 + 1 0.00136 + 2 0.00327 + 3 0.00163 + 4 0.00517 + 5 0.000817 + 7 0.0343 + 8 0.00463 + 10 0.000545 + 12 0.0686 + 13 0.141 + 14 0.107 + 15 0.116 + 16 0.00436 + 18 0.000545 + 19 0.106 + 20 0.000272 + 21 0.0482 + 24 0.000817 + 26 0.1 + 28 0.00327 + 29 0.0049 + 30 0.00218 + 31 0.0049 + 32 0.00218 + 33 0.00272 + 34 0.0302 + 35 0.0166 + 41 0.0803 + 42 0.00762 + 43 0.00191 + 45 0.00871 + 46 0.00299 + 47 0.00681 + + 74 1 1 0 + 47 1 + + 48 42 4 0 + 2 0.881 + 9 0.0238 + 21 0.0476 + 41 0.0476 + + 49 1717 34 19 + 0 0.192 + 1 0.00524 + 2 0.142 + 3 0.00466 + 4 0.00699 + 7 0.0309 + 8 0.00116 + 10 0.00116 + 12 0.0501 + 13 0.104 + 14 0.102 + 15 0.0524 + 16 0.00233 + 18 0.000582 + 19 0.0361 + 21 0.0658 + 22 0.000582 + 26 0.0349 + 28 0.00116 + 29 0.00233 + 30 0.00116 + 31 0.00116 + 32 0.000582 + 33 0.000582 + 34 0.0175 + 35 0.0099 + 37 0.00116 + 41 0.103 + 42 0.00524 + 43 0.000582 + 44 0.00175 + 45 0.0105 + 46 0.00291 + 47 0.00874 + + 0 55 10 0 + 0 0.0364 + 2 0.491 + 7 0.0182 + 12 0.0545 + 13 0.0909 + 15 0.0909 + 19 0.0727 + 21 0.0727 + 35 0.0182 + 41 0.0545 + + 1 6 4 0 + 2 0.333 + 7 0.167 + 13 0.333 + 14 0.167 + + 8 23 9 0 + 0 0.478 + 2 0.0435 + 12 0.0435 + 13 0.0435 + 14 0.13 + 21 0.13 + 29 0.0435 + 41 0.0435 + 47 0.0435 + + 12 15 4 0 + 2 0.733 + 13 0.133 + 14 0.0667 + 21 0.0667 + + 21 3 3 0 + 13 0.333 + 26 0.333 + 41 0.333 + + 26 4 4 0 + 0 0.25 + 2 0.25 + 8 0.25 + 29 0.25 + + 28 218 14 0 + 2 0.156 + 7 0.00459 + 12 0.362 + 13 0.0183 + 14 0.0229 + 15 0.00917 + 19 0.0183 + 21 0.101 + 26 0.261 + 37 0.00459 + 41 0.0183 + 42 0.00459 + 45 0.0138 + 47 0.00459 + + 29 283 14 0 + 0 0.0247 + 2 0.194 + 13 0.184 + 14 0.0954 + 15 0.205 + 16 0.00707 + 19 0.0777 + 21 0.0565 + 34 0.0283 + 35 0.0212 + 41 0.0883 + 43 0.00353 + 45 0.0106 + 46 0.00353 + + 30 218 18 0 + 0 0.216 + 2 0.078 + 4 0.00459 + 7 0.188 + 13 0.0872 + 14 0.147 + 15 0.0138 + 19 0.0138 + 21 0.0459 + 26 0.00459 + 29 0.00459 + 30 0.00459 + 31 0.00917 + 32 0.00459 + 41 0.128 + 42 0.0183 + 45 0.00917 + 47 0.0229 + + 31 583 24 0 + 0 0.437 + 1 0.0154 + 2 0.048 + 3 0.0103 + 4 0.0103 + 7 0.00858 + 10 0.00343 + 12 0.00172 + 13 0.0978 + 14 0.11 + 15 0.00515 + 18 0.00172 + 19 0.00343 + 21 0.0703 + 28 0.00343 + 29 0.00172 + 34 0.00172 + 37 0.00172 + 41 0.132 + 42 0.00515 + 44 0.00515 + 45 0.0103 + 46 0.00343 + 47 0.012 + + 32 79 12 0 + 2 0.152 + 4 0.0253 + 13 0.0127 + 14 0.392 + 15 0.038 + 16 0.0127 + 19 0.19 + 21 0.0633 + 34 0.0506 + 35 0.038 + 41 0.0127 + 46 0.0127 + + 33 142 15 0 + 2 0.204 + 4 0.0141 + 7 0.0211 + 13 0.232 + 14 0.0141 + 15 0.106 + 16 0.00704 + 19 0.0704 + 21 0.0352 + 30 0.00704 + 34 0.12 + 35 0.0352 + 41 0.106 + 45 0.0211 + 46 0.00704 + + 41 10 2 0 + 2 0.1 + 41 0.9 + + 45 2 2 0 + 7 0.5 + 21 0.5 + + 46 1 1 0 + 4 1 + + 47 29 9 0 + 0 0.172 + 2 0.345 + 3 0.069 + 12 0.0345 + 14 0.103 + 15 0.0345 + 21 0.103 + 22 0.0345 + 41 0.103 + + 49 11 4 0 + 2 0.545 + 14 0.0909 + 35 0.0909 + 41 0.273 + + 55 6 3 0 + 2 0.5 + 41 0.333 + 42 0.167 + + 69 25 13 0 + 0 0.04 + 2 0.12 + 8 0.04 + 13 0.08 + 14 0.2 + 19 0.08 + 21 0.08 + 26 0.04 + 33 0.04 + 35 0.04 + 41 0.16 + 45 0.04 + 47 0.04 + + 50 13 9 0 + 0 0.0769 + 13 0.154 + 14 0.0769 + 15 0.154 + 30 0.0769 + 31 0.0769 + 32 0.0769 + 33 0.0769 + 41 0.231 + + 53 1 1 0 + 42 1 + + 55 130 17 5 + 0 0.0538 + 2 0.615 + 4 0.00769 + 7 0.0154 + 9 0.00769 + 13 0.00769 + 14 0.0231 + 15 0.00769 + 19 0.0154 + 21 0.0462 + 26 0.0154 + 28 0.00769 + 33 0.00769 + 40 0.00769 + 41 0.131 + 42 0.0231 + 46 0.00769 + + 31 6 2 0 + 0 0.833 + 40 0.167 + + 41 3 3 0 + 15 0.333 + 19 0.333 + 41 0.333 + + 47 89 12 0 + 0 0.0225 + 2 0.652 + 4 0.0112 + 9 0.0112 + 13 0.0112 + 21 0.0449 + 26 0.0112 + 28 0.0112 + 33 0.0112 + 41 0.169 + 42 0.0337 + 46 0.0112 + + 55 4 3 0 + 2 0.5 + 19 0.25 + 26 0.25 + + 62 10 4 0 + 2 0.6 + 7 0.2 + 14 0.1 + 41 0.1 + + 57 96 9 6 + 0 0.188 + 2 0.448 + 3 0.0104 + 8 0.0104 + 12 0.0312 + 13 0.115 + 15 0.0208 + 21 0.0312 + 41 0.146 + + 0 7 1 0 + 2 1 + + 29 7 1 0 + 2 1 + + 41 17 2 0 + 2 0.294 + 41 0.706 + + 47 36 8 0 + 0 0.472 + 2 0.167 + 3 0.0278 + 8 0.0278 + 12 0.0833 + 13 0.167 + 15 0.0278 + 21 0.0278 + + 64 3 2 0 + 13 0.667 + 21 0.333 + + 69 2 2 0 + 13 0.5 + 15 0.5 + + 58 10 6 0 + 2 0.5 + 8 0.1 + 12 0.1 + 28 0.1 + 41 0.1 + 42 0.1 + + 62 16 7 0 + 2 0.25 + 3 0.125 + 4 0.0625 + 13 0.25 + 14 0.188 + 15 0.0625 + 41 0.0625 + + 64 18 10 1 + 0 0.111 + 2 0.167 + 3 0.111 + 7 0.0556 + 8 0.0556 + 9 0.0556 + 13 0.111 + 14 0.0556 + 16 0.0556 + 41 0.222 + + 41 4 2 0 + 2 0.75 + 41 0.25 + + 69 3772 35 0 + 0 0.0771 + 1 0.00133 + 2 0.00663 + 3 0.00159 + 4 0.0061 + 5 0.000795 + 7 0.0334 + 8 0.00477 + 10 0.00053 + 12 0.0668 + 13 0.141 + 14 0.104 + 15 0.114 + 16 0.00424 + 18 0.00133 + 19 0.103 + 20 0.000265 + 21 0.0586 + 23 0.000265 + 24 0.000795 + 26 0.0978 + 28 0.00318 + 29 0.00477 + 30 0.00212 + 31 0.00477 + 32 0.00212 + 33 0.00265 + 34 0.0294 + 35 0.0162 + 41 0.0798 + 42 0.00769 + 43 0.00186 + 45 0.0109 + 46 0.00292 + 47 0.00663 + + 74 1 1 0 + 47 1 + +70 128 19 3 + 0 0.0156 + 2 0.0703 + 7 0.156 + 8 0.0234 + 13 0.0312 + 19 0.0156 + 21 0.0547 + 24 0.0312 + 28 0.172 + 29 0.0312 + 30 0.0312 + 31 0.0312 + 32 0.0781 + 33 0.109 + 37 0.00781 + 41 0.0156 + 42 0.0312 + 45 0.0312 + 47 0.0625 + + 8 3 3 0 + 2 0.333 + 21 0.333 + 37 0.333 + + 21 7 6 0 + 2 0.143 + 28 0.286 + 29 0.143 + 33 0.143 + 42 0.143 + 47 0.143 + + 47 59 17 1 + 0 0.0169 + 2 0.0678 + 7 0.169 + 8 0.0169 + 13 0.0339 + 19 0.0169 + 24 0.0339 + 28 0.186 + 29 0.0339 + 30 0.0339 + 31 0.0339 + 32 0.0847 + 33 0.119 + 41 0.0169 + 42 0.0339 + 45 0.0339 + 47 0.0678 + + 21 7 6 0 + 2 0.143 + 28 0.286 + 29 0.143 + 33 0.143 + 42 0.143 + 47 0.143 + +71 4170 32 7 + 0 0.0254 + 2 0.0451 + 3 0.0139 + 4 0.00048 + 7 0.0686 + 8 0.0206 + 9 0.000959 + 10 0.00192 + 13 0.158 + 14 0.0652 + 15 0.0254 + 18 0.00048 + 19 0.00959 + 21 0.0415 + 22 0.00048 + 24 0.00624 + 26 0.00288 + 28 0.058 + 29 0.0177 + 30 0.012 + 31 0.0197 + 32 0.011 + 33 0.0173 + 34 0.00024 + 37 0.00168 + 40 0.000959 + 41 0.194 + 42 0.0149 + 44 0.00192 + 45 0.0367 + 46 0.011 + 47 0.116 + + 2 6 1 0 + 37 1 + + 7 30 8 0 + 0 0.0333 + 3 0.0667 + 13 0.4 + 14 0.2 + 15 0.133 + 21 0.0667 + 41 0.0667 + 46 0.0333 + + 13 1 1 0 + 34 1 + + 21 24 14 0 + 0 0.0417 + 2 0.0833 + 7 0.0833 + 8 0.0833 + 13 0.0417 + 14 0.0833 + 24 0.0833 + 28 0.125 + 31 0.0833 + 40 0.0417 + 41 0.0417 + 42 0.0833 + 45 0.0417 + 47 0.0833 + + 37 2036 31 1 + 0 0.025 + 2 0.0462 + 3 0.0133 + 4 0.000491 + 7 0.0693 + 8 0.0192 + 9 0.000982 + 10 0.00196 + 13 0.155 + 14 0.0624 + 15 0.0241 + 18 0.000491 + 19 0.00982 + 21 0.0486 + 22 0.000491 + 24 0.0054 + 26 0.00295 + 28 0.057 + 29 0.0182 + 30 0.0123 + 31 0.0192 + 32 0.0113 + 33 0.0172 + 37 0.000491 + 40 0.000491 + 41 0.196 + 42 0.0142 + 44 0.00196 + 45 0.0373 + 46 0.0108 + 47 0.117 + + 2 6 3 0 + 21 0.333 + 28 0.167 + 30 0.5 + + 47 2063 30 3 + 0 0.0257 + 2 0.0441 + 3 0.0141 + 4 0.000485 + 7 0.0693 + 8 0.0208 + 9 0.000969 + 10 0.00194 + 13 0.16 + 14 0.0659 + 15 0.0257 + 18 0.000485 + 19 0.00969 + 21 0.0349 + 22 0.000485 + 24 0.0063 + 26 0.00291 + 28 0.0587 + 29 0.0179 + 30 0.0121 + 31 0.0199 + 32 0.0111 + 33 0.0175 + 40 0.000969 + 41 0.196 + 42 0.015 + 44 0.00194 + 45 0.0368 + 46 0.0111 + 47 0.117 + + 7 30 8 0 + 0 0.0333 + 3 0.0667 + 13 0.4 + 14 0.2 + 15 0.133 + 21 0.0667 + 41 0.0667 + 46 0.0333 + + 21 24 14 0 + 0 0.0417 + 2 0.0833 + 7 0.0833 + 8 0.0833 + 13 0.0417 + 14 0.0833 + 24 0.0833 + 28 0.125 + 31 0.0833 + 40 0.0417 + 41 0.0417 + 42 0.0833 + 45 0.0417 + 47 0.0833 + + 49 6 5 0 + 2 0.167 + 8 0.333 + 14 0.167 + 28 0.167 + 33 0.167 + + 49 6 5 0 + 2 0.167 + 8 0.333 + 14 0.167 + 28 0.167 + 33 0.167 + +72 14825 39 21 + 0 0.00567 + 1 0.000135 + 2 0.0114 + 3 0.00614 + 4 0.0123 + 5 0.00027 + 6 0.000135 + 7 0.0813 + 8 0.00668 + 9 0.000202 + 10 0.000337 + 13 0.22 + 14 0.173 + 15 0.0205 + 16 0.00378 + 17 0.000135 + 19 0.00256 + 21 0.00621 + 22 0.000135 + 23 0.000135 + 24 0.00243 + 26 0.0058 + 28 0.0188 + 29 0.00351 + 30 0.00513 + 31 0.00351 + 32 0.00445 + 33 0.00391 + 35 6.75e-05 + 36 0.000135 + 37 0.00256 + 40 0.000405 + 41 0.342 + 42 0.0121 + 43 0.00121 + 44 0.00216 + 45 0.0119 + 46 0.0103 + 47 0.0185 + + 3 7 1 0 + 41 1 + + 4 73 16 0 + 2 0.0411 + 3 0.0685 + 7 0.0274 + 13 0.315 + 14 0.0274 + 17 0.0137 + 21 0.0411 + 24 0.0274 + 28 0.0137 + 30 0.0137 + 31 0.0411 + 32 0.0137 + 33 0.0274 + 41 0.274 + 42 0.0274 + 45 0.0274 + + 7 358 17 0 + 2 0.00279 + 3 0.0168 + 4 0.00279 + 6 0.00279 + 8 0.0112 + 9 0.00279 + 10 0.00279 + 13 0.592 + 14 0.291 + 15 0.0223 + 19 0.00559 + 21 0.0112 + 22 0.00279 + 31 0.00279 + 41 0.014 + 42 0.0112 + 46 0.00559 + + 8 33 4 0 + 8 0.0303 + 23 0.0606 + 37 0.848 + 41 0.0606 + + 9 2 1 0 + 8 1 + + 10 5 1 0 + 41 1 + + 13 19 6 0 + 4 0.158 + 8 0.526 + 13 0.105 + 15 0.105 + 35 0.0526 + 41 0.0526 + + 14 19 5 0 + 8 0.789 + 9 0.0526 + 13 0.0526 + 15 0.0526 + 41 0.0526 + + 15 4 3 0 + 2 0.25 + 8 0.5 + 36 0.25 + + 21 17 9 2 + 0 0.0588 + 2 0.0588 + 13 0.0588 + 28 0.0588 + 29 0.0588 + 31 0.0588 + 32 0.118 + 33 0.0588 + 37 0.471 + + 35 5 4 0 + 0 0.2 + 29 0.2 + 32 0.4 + 33 0.2 + + 47 8 1 0 + 37 1 + + 23 2 1 0 + 4 1 + + 34 4214 26 0 + 0 0.00119 + 2 0.00498 + 3 0.00617 + 4 0.0038 + 7 0.0835 + 8 0.00166 + 13 0.245 + 14 0.173 + 15 0.0209 + 16 0.000237 + 19 0.00119 + 21 0.00119 + 26 0.00403 + 28 0.0038 + 29 0.000949 + 30 0.000475 + 31 0.00119 + 32 0.000475 + 33 0.000949 + 41 0.407 + 42 0.0135 + 43 0.00142 + 44 0.00237 + 45 0.00285 + 46 0.014 + 47 0.0038 + + 35 2343 31 0 + 0 0.0149 + 1 0.000427 + 2 0.0201 + 3 0.00299 + 4 0.0282 + 5 0.000854 + 7 0.0973 + 8 0.00683 + 13 0.141 + 14 0.178 + 15 0.023 + 16 0.0111 + 19 0.00469 + 21 0.0145 + 24 0.0064 + 26 0.0107 + 28 0.0405 + 29 0.00683 + 30 0.0141 + 31 0.00512 + 32 0.0102 + 33 0.00598 + 37 0.000427 + 40 0.000854 + 41 0.257 + 42 0.0102 + 43 0.00128 + 44 0.00256 + 45 0.0294 + 46 0.00555 + 47 0.0495 + + 36 159 11 0 + 2 0.0377 + 7 0.0126 + 13 0.145 + 14 0.157 + 16 0.00629 + 28 0.00629 + 32 0.00629 + 41 0.604 + 42 0.00629 + 46 0.0126 + 47 0.00629 + + 37 36 12 1 + 2 0.0556 + 7 0.222 + 8 0.0833 + 13 0.0278 + 19 0.0278 + 21 0.0833 + 28 0.333 + 33 0.0556 + 41 0.0278 + 42 0.0278 + 45 0.0278 + 47 0.0278 + + 21 8 6 0 + 7 0.125 + 8 0.25 + 21 0.125 + 28 0.125 + 33 0.25 + 42 0.125 + + 47 7352 37 14 + 0 0.00571 + 1 0.000136 + 2 0.0114 + 3 0.00598 + 4 0.0112 + 5 0.000272 + 6 0.000136 + 7 0.082 + 8 0.00449 + 9 0.000136 + 10 0.000136 + 13 0.222 + 14 0.174 + 15 0.0204 + 16 0.00381 + 17 0.000136 + 19 0.00258 + 21 0.00558 + 22 0.000136 + 24 0.00245 + 26 0.00585 + 28 0.0189 + 29 0.00354 + 30 0.00517 + 31 0.00354 + 32 0.00449 + 33 0.00394 + 36 0.000136 + 37 0.000136 + 40 0.000408 + 41 0.345 + 42 0.0122 + 43 0.00122 + 44 0.00218 + 45 0.012 + 46 0.0103 + 47 0.0186 + + 3 7 1 0 + 41 1 + + 4 73 16 0 + 2 0.0411 + 3 0.0685 + 7 0.0274 + 13 0.315 + 14 0.0274 + 17 0.0137 + 21 0.0411 + 24 0.0274 + 28 0.0137 + 30 0.0137 + 31 0.0411 + 32 0.0137 + 33 0.0274 + 41 0.274 + 42 0.0274 + 45 0.0274 + + 7 358 17 0 + 2 0.00279 + 3 0.0168 + 4 0.00279 + 6 0.00279 + 8 0.0112 + 9 0.00279 + 10 0.00279 + 13 0.592 + 14 0.291 + 15 0.0223 + 19 0.00559 + 21 0.0112 + 22 0.00279 + 31 0.00279 + 41 0.014 + 42 0.0112 + 46 0.00559 + + 10 5 1 0 + 41 1 + + 15 1 1 0 + 36 1 + + 21 9 8 0 + 0 0.111 + 2 0.111 + 13 0.111 + 28 0.111 + 29 0.111 + 31 0.111 + 32 0.222 + 33 0.111 + + 34 4211 26 0 + 0 0.00119 + 2 0.00499 + 3 0.00617 + 4 0.00356 + 7 0.0836 + 8 0.00166 + 13 0.246 + 14 0.174 + 15 0.0209 + 16 0.000237 + 19 0.00119 + 21 0.000712 + 26 0.00404 + 28 0.0038 + 29 0.00095 + 30 0.000475 + 31 0.00119 + 32 0.000475 + 33 0.00095 + 41 0.407 + 42 0.0135 + 43 0.00142 + 44 0.00237 + 45 0.00285 + 46 0.014 + 47 0.0038 + + 35 2336 31 0 + 0 0.015 + 1 0.000428 + 2 0.0201 + 3 0.003 + 4 0.0283 + 5 0.000856 + 7 0.0976 + 8 0.00642 + 13 0.141 + 14 0.178 + 15 0.0231 + 16 0.0111 + 19 0.00471 + 21 0.012 + 24 0.00642 + 26 0.0107 + 28 0.0407 + 29 0.00685 + 30 0.0141 + 31 0.00514 + 32 0.0103 + 33 0.00599 + 37 0.000428 + 40 0.000856 + 41 0.258 + 42 0.0103 + 43 0.00128 + 44 0.00257 + 45 0.0295 + 46 0.00557 + 47 0.0497 + + 36 159 11 0 + 2 0.0377 + 7 0.0126 + 13 0.145 + 14 0.157 + 16 0.00629 + 28 0.00629 + 32 0.00629 + 41 0.604 + 42 0.00629 + 46 0.0126 + 47 0.00629 + + 37 34 12 0 + 2 0.0588 + 7 0.235 + 8 0.0882 + 13 0.0294 + 19 0.0294 + 21 0.0294 + 28 0.353 + 33 0.0588 + 41 0.0294 + 42 0.0294 + 45 0.0294 + 47 0.0294 + + 55 43 9 0 + 8 0.0233 + 13 0.0233 + 14 0.0233 + 21 0.0233 + 28 0.0233 + 30 0.0233 + 33 0.0465 + 41 0.767 + 47 0.0465 + + 70 20 10 0 + 2 0.05 + 7 0.2 + 8 0.05 + 24 0.05 + 28 0.35 + 29 0.05 + 30 0.05 + 31 0.05 + 32 0.05 + 33 0.1 + + 71 7 6 0 + 7 0.143 + 8 0.143 + 14 0.143 + 28 0.286 + 29 0.143 + 31 0.143 + + 72 78 17 0 + 0 0.0128 + 2 0.0128 + 7 0.0769 + 8 0.0128 + 13 0.0513 + 21 0.0128 + 26 0.0128 + 28 0.0385 + 29 0.0385 + 31 0.0256 + 32 0.0256 + 33 0.0256 + 40 0.0128 + 41 0.564 + 42 0.0128 + 45 0.0513 + 47 0.0128 + + 55 44 9 1 + 8 0.0227 + 13 0.0227 + 14 0.0227 + 21 0.0227 + 28 0.0227 + 30 0.0227 + 33 0.0455 + 41 0.773 + 47 0.0455 + + 73 23 2 0 + 21 0.0435 + 41 0.957 + + 70 20 10 0 + 2 0.05 + 7 0.2 + 8 0.05 + 24 0.05 + 28 0.35 + 29 0.05 + 30 0.05 + 31 0.05 + 32 0.05 + 33 0.1 + + 71 7 6 0 + 7 0.143 + 8 0.143 + 14 0.143 + 28 0.286 + 29 0.143 + 31 0.143 + + 72 78 17 0 + 0 0.0128 + 2 0.0128 + 7 0.0769 + 8 0.0128 + 13 0.0513 + 21 0.0128 + 26 0.0128 + 28 0.0385 + 29 0.0385 + 31 0.0256 + 32 0.0256 + 33 0.0256 + 40 0.0128 + 41 0.564 + 42 0.0128 + 45 0.0513 + 47 0.0128 + + 73 23 5 0 + 3 0.13 + 4 0.522 + 8 0.087 + 10 0.13 + 13 0.13 + +73 782 20 2 + 0 0.00256 + 2 0.0128 + 3 0.0384 + 4 0.0767 + 8 0.0205 + 10 0.0205 + 13 0.371 + 14 0.115 + 15 0.0281 + 16 0.00256 + 28 0.0153 + 30 0.00512 + 31 0.00256 + 33 0.00512 + 41 0.23 + 42 0.0153 + 44 0.00256 + 45 0.00767 + 46 0.023 + 47 0.00512 + + 26 18 7 0 + 8 0.0556 + 13 0.444 + 14 0.0556 + 28 0.0556 + 31 0.0556 + 41 0.278 + 46 0.0556 + + 47 391 20 1 + 0 0.00256 + 2 0.0128 + 3 0.0384 + 4 0.0767 + 8 0.0205 + 10 0.0205 + 13 0.371 + 14 0.115 + 15 0.0281 + 16 0.00256 + 28 0.0153 + 30 0.00512 + 31 0.00256 + 33 0.00512 + 41 0.23 + 42 0.0153 + 44 0.00256 + 45 0.00767 + 46 0.023 + 47 0.00512 + + 26 18 7 0 + 8 0.0556 + 13 0.444 + 14 0.0556 + 28 0.0556 + 31 0.0556 + 41 0.278 + 46 0.0556 + +74 443 33 26 + 0 0.0113 + 2 0.0113 + 3 0.0361 + 4 0.0971 + 5 0.00451 + 6 0.00677 + 7 0.0474 + 8 0.00677 + 9 0.00677 + 12 0.00451 + 13 0.0564 + 14 0.0271 + 15 0.0113 + 16 0.00226 + 18 0.00451 + 19 0.00903 + 21 0.0113 + 22 0.00226 + 24 0.00451 + 25 0.00677 + 26 0.00226 + 28 0.00903 + 29 0.0226 + 30 0.00451 + 31 0.00903 + 32 0.00451 + 33 0.00226 + 40 0.00226 + 41 0.147 + 42 0.0271 + 44 0.00451 + 45 0.0406 + 47 0.357 + + 0 2 2 0 + 18 0.5 + 28 0.5 + + 2 5 3 0 + 13 0.2 + 14 0.4 + 47 0.4 + + 4 47 10 0 + 0 0.0426 + 2 0.0213 + 4 0.0213 + 7 0.149 + 13 0.0213 + 32 0.0213 + 41 0.447 + 42 0.0638 + 45 0.0851 + 47 0.128 + + 6 5 4 0 + 6 0.4 + 13 0.2 + 41 0.2 + 45 0.2 + + 7 11 9 0 + 2 0.0909 + 3 0.182 + 4 0.0909 + 13 0.0909 + 14 0.182 + 19 0.0909 + 28 0.0909 + 29 0.0909 + 41 0.0909 + + 8 4 4 0 + 14 0.25 + 22 0.25 + 26 0.25 + 44 0.25 + + 9 26 1 0 + 4 1 + + 12 1 1 0 + 12 1 + + 13 5 4 0 + 6 0.2 + 9 0.4 + 41 0.2 + 47 0.2 + + 14 4 3 0 + 2 0.25 + 8 0.5 + 9 0.25 + + 15 7 6 0 + 7 0.143 + 15 0.286 + 16 0.143 + 40 0.143 + 41 0.143 + 47 0.143 + + 21 3 3 0 + 4 0.333 + 7 0.333 + 13 0.333 + + 22 11 1 0 + 4 1 + + 25 39 4 0 + 3 0.0513 + 13 0.0513 + 14 0.0256 + 47 0.872 + + 26 6 5 0 + 3 0.333 + 7 0.167 + 13 0.167 + 14 0.167 + 29 0.167 + + 40 1 1 0 + 8 1 + + 41 9 4 0 + 0 0.111 + 13 0.333 + 21 0.444 + 33 0.111 + + 42 4 2 0 + 13 0.25 + 25 0.75 + + 47 174 22 15 + 0 0.0115 + 2 0.0115 + 3 0.046 + 4 0.0115 + 5 0.00575 + 7 0.0517 + 12 0.00575 + 13 0.0517 + 14 0.0287 + 18 0.00575 + 19 0.0115 + 24 0.00575 + 28 0.0115 + 29 0.0287 + 30 0.00575 + 31 0.0115 + 32 0.00575 + 41 0.161 + 42 0.023 + 44 0.00575 + 45 0.046 + 47 0.454 + + 0 2 2 0 + 18 0.5 + 28 0.5 + + 4 47 10 0 + 0 0.0426 + 2 0.0213 + 4 0.0213 + 7 0.149 + 13 0.0213 + 32 0.0213 + 41 0.447 + 42 0.0638 + 45 0.0851 + 47 0.128 + + 6 2 2 0 + 13 0.5 + 45 0.5 + + 7 10 9 0 + 2 0.1 + 3 0.2 + 4 0.1 + 13 0.1 + 14 0.1 + 19 0.1 + 28 0.1 + 29 0.1 + 41 0.1 + + 8 2 2 0 + 14 0.5 + 44 0.5 + + 12 1 1 0 + 12 1 + + 21 2 2 0 + 7 0.5 + 13 0.5 + + 25 39 4 0 + 3 0.0513 + 13 0.0513 + 14 0.0256 + 47 0.872 + + 26 5 4 0 + 3 0.4 + 13 0.2 + 14 0.2 + 29 0.2 + + 49 7 3 0 + 31 0.143 + 45 0.143 + 47 0.714 + + 55 15 7 0 + 3 0.0667 + 19 0.0667 + 29 0.133 + 31 0.0667 + 41 0.133 + 45 0.0667 + 47 0.467 + + 57 5 4 0 + 3 0.2 + 13 0.4 + 24 0.2 + 30 0.2 + + 64 2 2 0 + 7 0.5 + 42 0.5 + + 69 1 1 0 + 5 1 + + 74 19 3 0 + 41 0.0526 + 45 0.0526 + 47 0.895 + + 49 7 3 0 + 31 0.143 + 45 0.143 + 47 0.714 + + 55 25 12 0 + 3 0.04 + 7 0.04 + 13 0.04 + 15 0.08 + 19 0.04 + 21 0.04 + 29 0.08 + 31 0.04 + 41 0.2 + 42 0.04 + 45 0.08 + 47 0.28 + + 57 5 4 0 + 3 0.2 + 13 0.4 + 24 0.2 + 30 0.2 + + 62 3 3 0 + 29 0.333 + 42 0.333 + 47 0.333 + + 64 5 4 0 + 7 0.2 + 13 0.2 + 41 0.4 + 42 0.2 + + 69 2 2 0 + 5 0.5 + 42 0.5 + + 74 23 3 0 + 41 0.174 + 45 0.087 + 47 0.739 + diff --git a/samples/G-code/rm.g b/samples/G-code/rm.g new file mode 100644 index 00000000..89c5aa24 --- /dev/null +++ b/samples/G-code/rm.g @@ -0,0 +1,29735 @@ +48 34015 42 38 + 0 0.0085 + 2 0.0361 + 3 0.0052 + 4 0.00714 + 5 0.000206 + 6 0.000147 + 7 0.166 + 8 0.0349 + 9 0.00138 + 10 5.88e-05 + 12 0.00218 + 13 0.166 + 14 0.0529 + 15 0.0215 + 16 0.000529 + 17 0.000176 + 18 0.000118 + 19 0.00285 + 20 0.000353 + 21 0.0147 + 22 0.00171 + 23 0.000441 + 24 0.000353 + 26 0.0645 + 28 0.000147 + 29 0.0052 + 30 0.00409 + 31 0.003 + 32 0.00171 + 33 0.000823 + 34 0.0005 + 35 0.00047 + 37 0.00318 + 39 0.00173 + 40 0.223 + 41 0.136 + 42 0.0157 + 43 0.00247 + 44 0.00326 + 45 0.00173 + 46 0.00808 + 47 0.001 + + 0 6 4 0 + 21 0.167 + 30 0.167 + 40 0.333 + 41 0.333 + + 2 252 19 5 + 0 0.00397 + 3 0.0357 + 4 0.0238 + 7 0.0159 + 8 0.206 + 9 0.0437 + 10 0.00794 + 13 0.0556 + 14 0.00397 + 15 0.0119 + 21 0.341 + 22 0.0714 + 23 0.0516 + 29 0.0119 + 30 0.0238 + 31 0.0357 + 39 0.0159 + 41 0.0119 + 45 0.0278 + + 8 29 7 0 + 4 0.103 + 13 0.241 + 14 0.0345 + 21 0.138 + 29 0.0345 + 30 0.172 + 31 0.276 + + 41 42 10 0 + 3 0.0714 + 4 0.0238 + 7 0.0476 + 8 0.19 + 9 0.0476 + 10 0.0238 + 13 0.0238 + 21 0.452 + 29 0.0238 + 39 0.0952 + + 42 4 4 0 + 8 0.25 + 10 0.25 + 13 0.25 + 23 0.25 + + 46 4 1 0 + 45 1 + + 48 170 15 0 + 0 0.00588 + 3 0.0353 + 4 0.0118 + 7 0.0118 + 8 0.253 + 9 0.0529 + 13 0.0294 + 15 0.0176 + 21 0.365 + 22 0.106 + 23 0.0647 + 29 0.00588 + 31 0.00588 + 41 0.0176 + 45 0.0176 + + 3 192 10 5 + 3 0.00521 + 4 0.0104 + 7 0.0104 + 8 0.13 + 13 0.703 + 14 0.0573 + 15 0.0521 + 41 0.0156 + 43 0.0104 + 44 0.00521 + + 2 1 1 0 + 43 1 + + 3 19 5 0 + 8 0.105 + 13 0.421 + 14 0.105 + 15 0.263 + 41 0.105 + + 38 1 1 0 + 44 1 + + 39 155 8 0 + 3 0.00645 + 4 0.0129 + 8 0.142 + 13 0.748 + 14 0.0452 + 15 0.0323 + 41 0.00645 + 43 0.00645 + + 47 6 2 0 + 7 0.333 + 13 0.667 + + 4 32 7 1 + 8 0.312 + 13 0.438 + 14 0.0625 + 15 0.0312 + 39 0.0938 + 41 0.0312 + 42 0.0312 + + 47 5 3 0 + 39 0.6 + 41 0.2 + 42 0.2 + + 6 10 6 0 + 7 0.1 + 8 0.1 + 13 0.4 + 40 0.2 + 44 0.1 + 46 0.1 + + 7 50 13 2 + 2 0.04 + 3 0.02 + 7 0.32 + 8 0.02 + 9 0.02 + 13 0.04 + 14 0.04 + 21 0.18 + 26 0.1 + 30 0.02 + 31 0.02 + 40 0.14 + 41 0.04 + + 41 3 2 0 + 8 0.333 + 21 0.667 + + 47 36 10 0 + 2 0.0278 + 3 0.0278 + 7 0.389 + 9 0.0278 + 14 0.0556 + 21 0.111 + 26 0.139 + 30 0.0278 + 40 0.139 + 41 0.0556 + + 8 9595 38 23 + 0 0.00563 + 2 0.0308 + 3 0.0112 + 4 0.00834 + 5 0.000417 + 6 0.000104 + 7 0.235 + 8 0.0211 + 9 0.000208 + 12 0.00104 + 13 0.116 + 14 0.0552 + 15 0.0311 + 16 0.000521 + 19 0.00584 + 20 0.00073 + 21 0.0174 + 22 0.000521 + 24 0.000208 + 26 0.161 + 28 0.000104 + 29 0.000625 + 30 0.00396 + 31 0.00177 + 32 0.000208 + 33 0.000521 + 34 0.000625 + 35 0.000938 + 37 0.00427 + 39 0.00198 + 40 0.132 + 41 0.117 + 42 0.0148 + 43 0.00146 + 44 0.00208 + 45 0.00188 + 46 0.0127 + 47 0.000104 + + 2 518 18 0 + 0 0.00193 + 2 0.00965 + 7 0.0328 + 8 0.029 + 12 0.00193 + 13 0.342 + 14 0.322 + 15 0.00772 + 16 0.00386 + 19 0.00193 + 21 0.00579 + 26 0.0212 + 40 0.0927 + 41 0.0907 + 42 0.0116 + 43 0.00193 + 45 0.00579 + 46 0.0174 + + 3 34 6 0 + 8 0.0588 + 13 0.618 + 14 0.206 + 40 0.0294 + 41 0.0294 + 44 0.0588 + + 4 11 7 0 + 7 0.273 + 8 0.0909 + 13 0.182 + 14 0.0909 + 15 0.0909 + 21 0.0909 + 41 0.182 + + 7 20 7 0 + 7 0.15 + 8 0.05 + 13 0.1 + 14 0.35 + 15 0.05 + 40 0.2 + 41 0.1 + + 8 227 11 0 + 0 0.00441 + 2 0.0132 + 7 0.00441 + 8 0.0793 + 13 0.498 + 14 0.313 + 15 0.0529 + 30 0.00441 + 39 0.00441 + 40 0.00441 + 41 0.022 + + 9 15 3 0 + 2 0.0667 + 13 0.4 + 14 0.533 + + 10 29 4 0 + 8 0.069 + 13 0.621 + 14 0.276 + 41 0.0345 + + 13 23 7 0 + 2 0.13 + 7 0.304 + 8 0.174 + 13 0.087 + 14 0.087 + 40 0.087 + 41 0.13 + + 14 2 1 0 + 41 1 + + 15 54 8 0 + 8 0.111 + 13 0.259 + 14 0.037 + 15 0.519 + 16 0.0185 + 40 0.0185 + 41 0.0185 + 45 0.0185 + + 21 1945 28 0 + 0 0.00463 + 2 0.0221 + 3 0.0072 + 4 0.0118 + 7 0.217 + 8 0.0411 + 9 0.000514 + 13 0.202 + 14 0.074 + 15 0.0226 + 19 0.00308 + 21 0.00977 + 26 0.0833 + 28 0.000514 + 30 0.00463 + 31 0.000514 + 33 0.000514 + 34 0.000514 + 35 0.00103 + 37 0.00411 + 39 0.00103 + 40 0.128 + 41 0.116 + 42 0.0165 + 43 0.00206 + 44 0.00257 + 45 0.00206 + 46 0.0211 + + 22 423 21 0 + 0 0.00946 + 2 0.0402 + 3 0.00473 + 4 0.00946 + 7 0.229 + 8 0.0402 + 13 0.196 + 14 0.0757 + 15 0.00946 + 16 0.00236 + 19 0.00236 + 21 0.00473 + 26 0.13 + 30 0.00236 + 37 0.00709 + 39 0.00473 + 40 0.109 + 41 0.0969 + 42 0.0118 + 45 0.00236 + 46 0.0118 + + 23 263 15 0 + 0 0.0076 + 2 0.0114 + 7 0.076 + 8 0.0875 + 12 0.0038 + 13 0.441 + 14 0.205 + 15 0.0266 + 19 0.0038 + 26 0.0418 + 31 0.0114 + 40 0.0152 + 41 0.0532 + 42 0.0114 + 45 0.0038 + + 26 10 4 0 + 8 0.1 + 13 0.6 + 14 0.1 + 15 0.2 + + 37 1 1 0 + 19 1 + + 39 62 6 0 + 8 0.0968 + 13 0.742 + 14 0.0161 + 15 0.0161 + 31 0.0161 + 41 0.113 + + 41 59 8 0 + 2 0.0339 + 13 0.525 + 14 0.0678 + 15 0.288 + 16 0.0169 + 40 0.0169 + 41 0.0339 + 45 0.0169 + + 45 44 8 0 + 2 0.0227 + 7 0.0227 + 13 0.0455 + 21 0.0227 + 40 0.159 + 41 0.0455 + 42 0.0227 + 46 0.659 + + 47 5604 35 0 + 0 0.00625 + 2 0.0373 + 3 0.0162 + 4 0.00946 + 5 0.000714 + 7 0.294 + 8 0.00428 + 9 0.000178 + 12 0.00143 + 13 0.0121 + 14 0.00178 + 15 0.0316 + 19 0.00821 + 20 0.00125 + 21 0.0244 + 22 0.000892 + 24 0.000357 + 26 0.231 + 29 0.000892 + 30 0.00464 + 31 0.00214 + 32 0.000178 + 33 0.000714 + 34 0.000892 + 35 0.00125 + 37 0.00482 + 39 0.0025 + 40 0.155 + 41 0.118 + 42 0.0162 + 43 0.00161 + 44 0.00214 + 45 0.00125 + 46 0.00642 + 47 0.000178 + + 49 92 12 0 + 0 0.0109 + 2 0.0109 + 6 0.0109 + 7 0.25 + 8 0.0217 + 13 0.141 + 14 0.0761 + 26 0.141 + 40 0.152 + 41 0.141 + 42 0.0217 + 46 0.0217 + + 50 4 2 0 + 2 0.25 + 14 0.75 + + 55 141 13 0 + 0 0.00709 + 2 0.0496 + 7 0.0638 + 13 0.00709 + 21 0.0213 + 29 0.00709 + 30 0.00709 + 32 0.00709 + 37 0.0213 + 40 0.135 + 41 0.652 + 42 0.0142 + 44 0.00709 + + 60 4 2 0 + 13 0.75 + 40 0.25 + + 9 829 25 8 + 0 0.00362 + 2 0.0338 + 3 0.00362 + 4 0.00362 + 7 0.422 + 8 0.0169 + 12 0.00241 + 13 0.171 + 14 0.0627 + 15 0.0109 + 17 0.00121 + 21 0.00965 + 24 0.00483 + 26 0.0627 + 29 0.00241 + 30 0.00121 + 31 0.00121 + 32 0.00241 + 37 0.00241 + 40 0.0953 + 41 0.0724 + 42 0.00844 + 43 0.00121 + 46 0.00241 + 47 0.00121 + + 2 36 12 0 + 2 0.0278 + 7 0.111 + 8 0.0556 + 13 0.167 + 14 0.25 + 15 0.0556 + 21 0.0278 + 26 0.0556 + 40 0.111 + 41 0.0556 + 42 0.0556 + 46 0.0278 + + 4 5 2 0 + 13 0.6 + 14 0.4 + + 8 9 3 0 + 2 0.222 + 13 0.556 + 14 0.222 + + 21 279 14 0 + 2 0.00717 + 3 0.0108 + 4 0.0108 + 7 0.287 + 8 0.0358 + 13 0.348 + 14 0.0932 + 15 0.0179 + 26 0.0358 + 40 0.0824 + 41 0.0573 + 42 0.00717 + 43 0.00358 + 46 0.00358 + + 47 383 20 0 + 0 0.00261 + 2 0.0601 + 7 0.517 + 8 0.00261 + 12 0.00522 + 13 0.0261 + 14 0.00261 + 15 0.00261 + 17 0.00261 + 21 0.0183 + 24 0.0104 + 26 0.102 + 29 0.00522 + 30 0.00261 + 31 0.00261 + 32 0.00522 + 37 0.00522 + 40 0.123 + 41 0.0966 + 42 0.00783 + + 49 3 2 0 + 13 0.333 + 14 0.667 + + 55 96 9 0 + 0 0.0208 + 7 0.656 + 8 0.0104 + 13 0.156 + 14 0.0625 + 26 0.0104 + 40 0.0417 + 41 0.0312 + 47 0.0104 + + 60 7 6 0 + 7 0.143 + 13 0.143 + 14 0.286 + 15 0.143 + 40 0.143 + 41 0.143 + + 10 68 16 4 + 2 0.132 + 4 0.0294 + 7 0.103 + 8 0.0441 + 13 0.294 + 14 0.0147 + 15 0.0147 + 21 0.0147 + 30 0.0441 + 31 0.0294 + 37 0.0147 + 39 0.0147 + 40 0.0147 + 41 0.191 + 42 0.0294 + 46 0.0147 + + 4 2 2 0 + 2 0.5 + 14 0.5 + + 8 12 3 0 + 8 0.167 + 13 0.75 + 41 0.0833 + + 21 12 5 0 + 7 0.0833 + 8 0.0833 + 13 0.417 + 41 0.333 + 46 0.0833 + + 47 39 13 0 + 2 0.205 + 4 0.0513 + 7 0.154 + 13 0.0769 + 15 0.0256 + 21 0.0256 + 30 0.0769 + 31 0.0513 + 37 0.0256 + 39 0.0256 + 40 0.0256 + 41 0.205 + 42 0.0513 + + 13 1034 21 11 + 0 0.0029 + 2 0.00774 + 4 0.00193 + 7 0.0338 + 8 0.088 + 9 0.00677 + 12 0.000967 + 13 0.632 + 14 0.147 + 15 0.0126 + 21 0.000967 + 26 0.0106 + 29 0.000967 + 30 0.00387 + 31 0.00677 + 33 0.000967 + 40 0.0106 + 41 0.0155 + 42 0.000967 + 44 0.0087 + 46 0.00677 + + 2 23 5 0 + 7 0.0435 + 13 0.304 + 14 0.522 + 40 0.0435 + 41 0.087 + + 3 766 12 0 + 2 0.00392 + 8 0.0914 + 9 0.00261 + 13 0.77 + 14 0.106 + 15 0.0117 + 30 0.00392 + 31 0.00522 + 40 0.00131 + 41 0.00131 + 44 0.00131 + 46 0.00131 + + 8 37 10 0 + 0 0.0811 + 2 0.0811 + 7 0.108 + 8 0.027 + 13 0.27 + 14 0.0811 + 15 0.027 + 41 0.135 + 44 0.0811 + 46 0.108 + + 9 7 5 0 + 7 0.286 + 8 0.143 + 14 0.143 + 26 0.143 + 41 0.286 + + 10 2 2 0 + 7 0.5 + 8 0.5 + + 21 7 4 0 + 7 0.429 + 14 0.286 + 40 0.143 + 44 0.143 + + 45 2 1 0 + 46 1 + + 47 48 11 0 + 2 0.0208 + 4 0.0417 + 7 0.396 + 12 0.0208 + 15 0.0417 + 26 0.188 + 30 0.0208 + 31 0.0208 + 40 0.104 + 41 0.125 + 42 0.0208 + + 49 2 2 0 + 26 0.5 + 40 0.5 + + 55 1 1 0 + 40 1 + + 60 117 12 0 + 7 0.0171 + 8 0.154 + 9 0.0427 + 13 0.291 + 14 0.41 + 15 0.00855 + 21 0.00855 + 29 0.00855 + 31 0.0171 + 33 0.00855 + 40 0.00855 + 44 0.0256 + + 14 11 8 0 + 8 0.182 + 9 0.0909 + 13 0.0909 + 14 0.0909 + 15 0.0909 + 40 0.0909 + 41 0.182 + 44 0.182 + + 15 45 14 3 + 2 0.0444 + 7 0.178 + 8 0.0444 + 13 0.2 + 14 0.111 + 15 0.178 + 16 0.0444 + 21 0.0222 + 26 0.0444 + 40 0.0444 + 41 0.0222 + 42 0.0222 + 43 0.0222 + 47 0.0222 + + 2 5 3 0 + 14 0.4 + 15 0.4 + 40 0.2 + + 15 19 8 0 + 2 0.0526 + 8 0.105 + 13 0.368 + 14 0.105 + 15 0.211 + 26 0.0526 + 42 0.0526 + 47 0.0526 + + 47 15 8 0 + 2 0.0667 + 7 0.533 + 16 0.0667 + 21 0.0667 + 26 0.0667 + 40 0.0667 + 41 0.0667 + 43 0.0667 + + 21 402 29 7 + 0 0.0199 + 2 0.0199 + 3 0.0249 + 4 0.0896 + 6 0.00249 + 7 0.216 + 8 0.0224 + 9 0.00249 + 12 0.00249 + 13 0.0249 + 14 0.00249 + 15 0.00249 + 17 0.00249 + 18 0.00498 + 19 0.00249 + 20 0.00249 + 21 0.0373 + 22 0.0522 + 26 0.197 + 28 0.00249 + 29 0.00498 + 30 0.0796 + 31 0.00746 + 33 0.00249 + 40 0.097 + 41 0.0547 + 42 0.0174 + 46 0.00249 + 47 0.00249 + + 2 9 4 0 + 8 0.444 + 21 0.333 + 40 0.111 + 41 0.111 + + 8 48 10 0 + 2 0.0208 + 4 0.0208 + 7 0.229 + 13 0.0208 + 15 0.0208 + 21 0.0208 + 26 0.479 + 40 0.0833 + 41 0.0833 + 42 0.0208 + + 21 41 10 0 + 2 0.0244 + 4 0.0244 + 7 0.439 + 8 0.0732 + 13 0.0244 + 21 0.0244 + 26 0.22 + 40 0.0732 + 41 0.0732 + 42 0.0244 + + 23 2 2 0 + 28 0.5 + 40 0.5 + + 41 3 3 0 + 8 0.333 + 21 0.333 + 30 0.333 + + 47 282 27 0 + 0 0.0248 + 2 0.0142 + 3 0.0355 + 4 0.117 + 6 0.00355 + 7 0.188 + 8 0.00355 + 9 0.00355 + 12 0.00355 + 13 0.0248 + 14 0.00355 + 17 0.00355 + 18 0.00709 + 19 0.00355 + 20 0.00355 + 21 0.0284 + 22 0.0745 + 26 0.16 + 29 0.00709 + 30 0.11 + 31 0.00709 + 33 0.00355 + 40 0.0957 + 41 0.0496 + 42 0.0177 + 46 0.00355 + 47 0.00355 + + 55 6 5 0 + 0 0.167 + 2 0.167 + 4 0.167 + 31 0.167 + 40 0.333 + + 22 62 10 2 + 0 0.0161 + 2 0.0323 + 7 0.452 + 8 0.113 + 21 0.0161 + 22 0.0161 + 26 0.0806 + 31 0.0161 + 40 0.161 + 41 0.0968 + + 21 20 7 0 + 7 0.3 + 8 0.3 + 21 0.05 + 26 0.1 + 31 0.05 + 40 0.15 + 41 0.05 + + 47 34 7 0 + 0 0.0294 + 2 0.0588 + 7 0.5 + 22 0.0294 + 26 0.0882 + 40 0.176 + 41 0.118 + + 24 11 5 0 + 7 0.273 + 21 0.0909 + 30 0.0909 + 40 0.182 + 41 0.364 + + 26 2 2 0 + 13 0.5 + 21 0.5 + + 28 7 6 0 + 4 0.143 + 7 0.286 + 13 0.143 + 19 0.143 + 42 0.143 + 46 0.143 + + 29 12 5 1 + 7 0.167 + 8 0.417 + 13 0.25 + 26 0.0833 + 41 0.0833 + + 47 4 3 0 + 7 0.5 + 26 0.25 + 41 0.25 + + 30 83 12 4 + 0 0.0361 + 2 0.012 + 7 0.157 + 8 0.0482 + 13 0.277 + 14 0.0602 + 15 0.0482 + 26 0.0723 + 40 0.169 + 41 0.0964 + 43 0.012 + 46 0.012 + + 21 28 6 0 + 8 0.143 + 13 0.5 + 14 0.0714 + 15 0.107 + 26 0.107 + 41 0.0714 + + 45 1 1 0 + 46 1 + + 47 34 8 0 + 0 0.0588 + 2 0.0294 + 7 0.294 + 13 0.0294 + 26 0.0882 + 40 0.353 + 41 0.118 + 43 0.0294 + + 49 3 3 0 + 0 0.333 + 7 0.333 + 14 0.333 + + 31 741 29 9 + 0 0.0027 + 2 0.0243 + 3 0.0121 + 4 0.0081 + 7 0.192 + 8 0.0715 + 9 0.00135 + 12 0.00135 + 13 0.19 + 14 0.117 + 15 0.0526 + 16 0.00135 + 17 0.00135 + 19 0.0027 + 21 0.00675 + 24 0.0081 + 26 0.101 + 30 0.00135 + 31 0.00135 + 37 0.00135 + 39 0.0162 + 40 0.0931 + 41 0.0607 + 42 0.0054 + 43 0.0027 + 44 0.00135 + 45 0.00675 + 46 0.0135 + 47 0.00135 + + 2 18 7 0 + 0 0.0556 + 7 0.111 + 8 0.0556 + 13 0.222 + 14 0.389 + 40 0.111 + 46 0.0556 + + 7 1 1 0 + 46 1 + + 13 13 6 0 + 2 0.0769 + 8 0.538 + 13 0.154 + 14 0.0769 + 26 0.0769 + 40 0.0769 + + 21 379 22 0 + 2 0.0132 + 3 0.0132 + 7 0.0633 + 8 0.106 + 9 0.00264 + 13 0.322 + 14 0.201 + 15 0.095 + 16 0.00264 + 21 0.00528 + 24 0.00792 + 26 0.0343 + 30 0.00264 + 31 0.00264 + 37 0.00264 + 39 0.029 + 40 0.0475 + 41 0.0237 + 42 0.00528 + 43 0.00528 + 45 0.0106 + 46 0.00528 + + 22 17 7 0 + 2 0.118 + 7 0.471 + 13 0.0588 + 14 0.0588 + 40 0.118 + 41 0.118 + 46 0.0588 + + 23 8 6 0 + 2 0.25 + 13 0.25 + 14 0.125 + 24 0.125 + 40 0.125 + 41 0.125 + + 47 268 22 0 + 0 0.00373 + 2 0.0299 + 3 0.0112 + 4 0.0224 + 7 0.358 + 8 0.00373 + 12 0.00373 + 13 0.00746 + 15 0.00746 + 17 0.00373 + 19 0.00746 + 21 0.0112 + 24 0.00746 + 26 0.224 + 39 0.00373 + 40 0.153 + 41 0.112 + 42 0.00373 + 44 0.00373 + 45 0.00373 + 46 0.0149 + 47 0.00373 + + 49 27 11 0 + 3 0.037 + 7 0.333 + 8 0.148 + 13 0.148 + 14 0.037 + 15 0.037 + 26 0.037 + 40 0.0741 + 41 0.0741 + 42 0.037 + 46 0.037 + + 55 5 3 0 + 7 0.6 + 40 0.2 + 41 0.2 + + 39 2 1 0 + 3 1 + + 40 8 3 0 + 6 0.125 + 46 0.25 + 47 0.625 + + 41 149 17 7 + 0 0.0134 + 2 0.289 + 3 0.00671 + 7 0.101 + 8 0.134 + 9 0.0134 + 13 0.0805 + 14 0.0671 + 15 0.00671 + 19 0.0268 + 21 0.121 + 22 0.0403 + 23 0.00671 + 26 0.0403 + 31 0.0134 + 39 0.0134 + 46 0.0268 + + 8 19 10 0 + 2 0.105 + 7 0.0526 + 13 0.211 + 14 0.263 + 19 0.0526 + 21 0.105 + 26 0.0526 + 31 0.0526 + 39 0.0526 + 46 0.0526 + + 9 3 1 0 + 14 1 + + 10 1 1 0 + 23 1 + + 13 2 1 0 + 13 1 + + 48 105 16 0 + 0 0.00952 + 2 0.371 + 3 0.00952 + 7 0.0571 + 8 0.162 + 9 0.019 + 13 0.0476 + 14 0.019 + 15 0.00952 + 19 0.019 + 21 0.152 + 22 0.0571 + 26 0.019 + 31 0.00952 + 39 0.00952 + 46 0.0286 + + 55 6 2 0 + 7 0.667 + 26 0.333 + + 57 6 4 0 + 0 0.167 + 7 0.5 + 8 0.167 + 19 0.167 + + 42 16 7 0 + 2 0.375 + 7 0.125 + 14 0.125 + 21 0.188 + 26 0.0625 + 32 0.0625 + 34 0.0625 + + 44 1 1 0 + 39 1 + + 45 9 6 0 + 7 0.222 + 8 0.222 + 9 0.111 + 13 0.111 + 14 0.111 + 31 0.222 + + 46 73 14 5 + 2 0.11 + 4 0.0274 + 7 0.452 + 8 0.0274 + 13 0.0959 + 14 0.0274 + 19 0.0411 + 21 0.0548 + 26 0.0959 + 29 0.0137 + 30 0.0137 + 42 0.0137 + 44 0.0137 + 45 0.0137 + + 8 56 9 0 + 2 0.0893 + 4 0.0357 + 7 0.518 + 8 0.0179 + 13 0.107 + 14 0.0179 + 19 0.0536 + 21 0.0536 + 26 0.107 + + 13 3 3 0 + 8 0.333 + 14 0.333 + 44 0.333 + + 41 3 3 0 + 21 0.333 + 30 0.333 + 45 0.333 + + 48 5 3 0 + 2 0.6 + 7 0.2 + 42 0.2 + + 57 1 1 0 + 29 1 + + 47 14411 39 31 + 0 0.00992 + 2 0.0338 + 3 0.00222 + 4 0.00583 + 5 0.000139 + 6 0.000139 + 7 0.126 + 8 0.038 + 9 0.00104 + 12 0.00257 + 13 0.193 + 14 0.0622 + 15 0.0192 + 16 0.000625 + 17 0.000208 + 18 0.000139 + 19 0.0018 + 20 0.000278 + 21 0.00971 + 22 0.000416 + 26 0.0212 + 28 0.000139 + 29 0.00597 + 30 0.00285 + 31 0.00285 + 32 0.00201 + 33 0.000971 + 34 0.000555 + 35 0.000486 + 37 0.00347 + 39 0.00118 + 40 0.263 + 41 0.155 + 42 0.0176 + 43 0.00285 + 44 0.00298 + 45 0.00167 + 46 0.00701 + 47 0.00118 + + 0 5 3 0 + 30 0.2 + 40 0.4 + 41 0.4 + + 3 187 8 0 + 4 0.0107 + 8 0.134 + 13 0.711 + 14 0.0588 + 15 0.0535 + 41 0.016 + 43 0.0107 + 44 0.00535 + + 4 28 5 0 + 8 0.357 + 13 0.5 + 14 0.0714 + 15 0.0357 + 41 0.0357 + + 6 8 5 0 + 7 0.125 + 8 0.125 + 13 0.5 + 44 0.125 + 46 0.125 + + 7 20 7 0 + 2 0.1 + 7 0.2 + 13 0.05 + 14 0.1 + 21 0.1 + 40 0.35 + 41 0.1 + + 8 6530 37 0 + 0 0.00827 + 2 0.0409 + 3 0.00322 + 4 0.00796 + 5 0.000153 + 6 0.000153 + 7 0.169 + 8 0.0297 + 9 0.000153 + 12 0.00153 + 13 0.163 + 14 0.0809 + 15 0.0204 + 16 0.000766 + 19 0.00337 + 20 0.000613 + 21 0.0139 + 22 0.000613 + 26 0.0383 + 28 0.000153 + 29 0.000919 + 30 0.00383 + 31 0.00214 + 32 0.000306 + 33 0.000766 + 34 0.000919 + 35 0.00107 + 37 0.00551 + 39 0.000766 + 40 0.194 + 41 0.168 + 42 0.0208 + 43 0.00214 + 44 0.00306 + 45 0.00245 + 46 0.0101 + 47 0.000153 + + 9 730 23 0 + 0 0.00411 + 2 0.0384 + 3 0.00411 + 4 0.00411 + 7 0.403 + 8 0.0192 + 12 0.00274 + 13 0.185 + 14 0.0712 + 15 0.0123 + 17 0.00137 + 21 0.00959 + 26 0.037 + 29 0.00274 + 31 0.00137 + 32 0.00274 + 37 0.00274 + 40 0.108 + 41 0.0781 + 42 0.00822 + 43 0.00137 + 46 0.00137 + 47 0.00137 + + 10 56 14 0 + 2 0.143 + 4 0.0357 + 7 0.0714 + 8 0.0536 + 13 0.321 + 14 0.0179 + 15 0.0179 + 21 0.0179 + 37 0.0179 + 39 0.0179 + 40 0.0179 + 41 0.214 + 42 0.0357 + 46 0.0179 + + 13 1001 21 0 + 0 0.003 + 2 0.00799 + 4 0.002 + 7 0.021 + 8 0.0909 + 9 0.00699 + 12 0.000999 + 13 0.651 + 14 0.152 + 15 0.012 + 21 0.000999 + 26 0.000999 + 29 0.000999 + 30 0.003 + 31 0.00699 + 33 0.000999 + 40 0.011 + 41 0.014 + 42 0.000999 + 44 0.00799 + 46 0.004 + + 14 10 7 0 + 8 0.2 + 9 0.1 + 13 0.1 + 14 0.1 + 40 0.1 + 41 0.2 + 44 0.2 + + 15 39 13 0 + 2 0.0513 + 7 0.179 + 8 0.0513 + 13 0.231 + 14 0.128 + 15 0.128 + 16 0.0513 + 21 0.0256 + 40 0.0513 + 41 0.0256 + 42 0.0256 + 43 0.0256 + 47 0.0256 + + 21 161 21 0 + 0 0.0373 + 2 0.0435 + 4 0.0683 + 7 0.224 + 8 0.0373 + 9 0.00621 + 12 0.00621 + 13 0.0124 + 17 0.00621 + 18 0.0124 + 21 0.0559 + 22 0.00621 + 26 0.0248 + 30 0.00621 + 31 0.0186 + 33 0.00621 + 40 0.236 + 41 0.137 + 42 0.0435 + 46 0.00621 + 47 0.00621 + + 22 58 10 0 + 0 0.0172 + 2 0.0345 + 7 0.448 + 8 0.121 + 21 0.0172 + 22 0.0172 + 26 0.0517 + 31 0.0172 + 40 0.172 + 41 0.103 + + 24 9 4 0 + 7 0.222 + 21 0.111 + 40 0.222 + 41 0.444 + + 28 5 5 0 + 4 0.2 + 13 0.2 + 19 0.2 + 42 0.2 + 46 0.2 + + 29 10 4 0 + 7 0.1 + 8 0.5 + 13 0.3 + 41 0.1 + + 30 74 11 0 + 0 0.0405 + 2 0.0135 + 7 0.122 + 8 0.0541 + 13 0.311 + 14 0.0676 + 15 0.0541 + 26 0.027 + 40 0.189 + 41 0.108 + 43 0.0135 + + 31 530 25 0 + 0 0.00377 + 2 0.034 + 3 0.0113 + 7 0.0585 + 8 0.1 + 9 0.00189 + 12 0.00189 + 13 0.266 + 14 0.164 + 15 0.0717 + 16 0.00189 + 17 0.00189 + 21 0.00566 + 26 0.00189 + 30 0.00189 + 31 0.00189 + 37 0.00189 + 39 0.0208 + 40 0.13 + 41 0.083 + 42 0.00755 + 43 0.00377 + 45 0.00755 + 46 0.0151 + 47 0.00189 + + 40 8 3 0 + 6 0.125 + 46 0.25 + 47 0.625 + + 41 29 9 0 + 0 0.069 + 7 0.0345 + 8 0.0345 + 13 0.414 + 14 0.31 + 15 0.0345 + 26 0.0345 + 31 0.0345 + 46 0.0345 + + 42 5 4 0 + 2 0.2 + 7 0.2 + 14 0.4 + 32 0.2 + + 46 27 11 0 + 2 0.148 + 7 0.222 + 8 0.0741 + 13 0.259 + 14 0.0741 + 19 0.037 + 26 0.037 + 29 0.037 + 30 0.037 + 42 0.037 + 44 0.037 + + 48 221 17 0 + 0 0.00452 + 2 0.0136 + 7 0.0588 + 8 0.0452 + 12 0.00452 + 13 0.167 + 14 0.104 + 15 0.0226 + 16 0.00452 + 21 0.00452 + 26 0.0136 + 30 0.0136 + 40 0.385 + 41 0.109 + 42 0.0317 + 44 0.00452 + 46 0.0136 + + 49 12 4 0 + 2 0.0833 + 7 0.0833 + 40 0.5 + 41 0.333 + + 55 300 18 0 + 0 0.0467 + 2 0.0267 + 3 0.00333 + 7 0.03 + 8 0.00333 + 9 0.00333 + 12 0.0133 + 13 0.0233 + 21 0.01 + 26 0.01 + 29 0.0833 + 31 0.03 + 32 0.0133 + 37 0.00333 + 40 0.213 + 41 0.47 + 42 0.0133 + 46 0.00333 + + 57 2237 27 0 + 0 0.0152 + 2 0.0434 + 4 0.00358 + 7 0.0724 + 8 0.00134 + 12 0.00581 + 13 0.00179 + 14 0.00224 + 15 0.000447 + 19 0.000894 + 21 0.00492 + 26 0.00402 + 28 0.000447 + 29 0.0219 + 30 0.000894 + 32 0.00894 + 33 0.00268 + 34 0.000447 + 37 0.00268 + 40 0.553 + 41 0.219 + 42 0.0259 + 43 0.00134 + 44 0.000894 + 45 0.000894 + 46 0.00358 + 47 0.000894 + + 58 36 11 0 + 2 0.0556 + 7 0.0556 + 8 0.0278 + 13 0.528 + 14 0.0556 + 15 0.0278 + 26 0.0278 + 30 0.0278 + 40 0.0833 + 41 0.0833 + 47 0.0278 + + 59 7 5 0 + 3 0.143 + 7 0.286 + 8 0.286 + 21 0.143 + 40 0.143 + + 60 706 15 0 + 2 0.00142 + 4 0.00283 + 8 0.154 + 9 0.00425 + 13 0.687 + 14 0.00992 + 15 0.0793 + 21 0.00142 + 29 0.00142 + 30 0.00283 + 31 0.00567 + 41 0.0142 + 43 0.0241 + 44 0.0085 + 45 0.00283 + + 62 898 17 0 + 0 0.0189 + 2 0.0156 + 7 0.0746 + 12 0.00445 + 13 0.00111 + 21 0.00557 + 29 0.00111 + 30 0.00111 + 33 0.00111 + 34 0.00111 + 37 0.00334 + 40 0.653 + 41 0.199 + 42 0.0134 + 44 0.00111 + 46 0.00223 + 47 0.00334 + + 64 460 11 0 + 0 0.00652 + 2 0.0283 + 4 0.00217 + 5 0.00217 + 7 0.0326 + 21 0.00217 + 40 0.672 + 41 0.222 + 42 0.0283 + 46 0.00217 + 47 0.00217 + + 48 1047 22 10 + 0 0.000955 + 2 0.165 + 4 0.00573 + 7 0.449 + 8 0.0115 + 12 0.000955 + 13 0.0363 + 14 0.022 + 15 0.00478 + 16 0.000955 + 19 0.000955 + 21 0.00955 + 22 0.000955 + 26 0.0229 + 30 0.00287 + 31 0.000955 + 40 0.0812 + 41 0.129 + 42 0.0229 + 43 0.000955 + 44 0.0229 + 46 0.00764 + + 2 207 18 0 + 0 0.00483 + 2 0.0193 + 4 0.00483 + 7 0.0773 + 8 0.0435 + 12 0.00483 + 13 0.164 + 14 0.106 + 15 0.0145 + 16 0.00483 + 21 0.00966 + 26 0.00966 + 30 0.0145 + 40 0.319 + 41 0.135 + 42 0.0483 + 44 0.00966 + 46 0.00966 + + 4 3 1 0 + 2 1 + + 7 5 3 0 + 8 0.4 + 40 0.4 + 41 0.2 + + 21 10 4 0 + 2 0.1 + 15 0.1 + 40 0.4 + 41 0.4 + + 41 42 8 0 + 2 0.452 + 13 0.0238 + 15 0.0238 + 21 0.0476 + 40 0.119 + 41 0.286 + 44 0.0238 + 46 0.0238 + + 42 3 2 0 + 40 0.667 + 41 0.333 + + 44 1 1 0 + 43 1 + + 45 12 5 0 + 2 0.0833 + 7 0.167 + 40 0.167 + 41 0.167 + 46 0.417 + + 47 750 13 0 + 2 0.191 + 4 0.00667 + 7 0.603 + 8 0.00133 + 13 0.00133 + 19 0.00133 + 21 0.008 + 22 0.00133 + 26 0.028 + 31 0.00133 + 41 0.111 + 42 0.0187 + 44 0.028 + + 50 4 2 0 + 14 0.25 + 41 0.75 + + 49 35 9 3 + 2 0.0286 + 7 0.229 + 8 0.0571 + 13 0.0857 + 15 0.0857 + 21 0.0286 + 26 0.114 + 40 0.171 + 41 0.2 + + 8 16 8 0 + 2 0.0625 + 7 0.125 + 8 0.0625 + 13 0.188 + 15 0.188 + 21 0.0625 + 26 0.25 + 40 0.0625 + + 47 5 2 0 + 7 0.8 + 41 0.2 + + 48 7 3 0 + 7 0.143 + 40 0.571 + 41 0.286 + + 50 4 2 0 + 8 0.75 + 31 0.25 + + 55 335 19 8 + 0 0.0418 + 2 0.0239 + 3 0.00299 + 7 0.0478 + 8 0.00299 + 9 0.00299 + 12 0.0119 + 13 0.0209 + 21 0.00896 + 26 0.0716 + 29 0.0746 + 31 0.0269 + 32 0.0119 + 37 0.00299 + 40 0.191 + 41 0.439 + 42 0.0119 + 43 0.00299 + 46 0.00299 + + 7 4 1 0 + 40 1 + + 8 287 17 0 + 0 0.0418 + 2 0.0279 + 3 0.00348 + 7 0.0279 + 8 0.00348 + 12 0.00697 + 13 0.00697 + 21 0.00697 + 26 0.0836 + 29 0.0871 + 31 0.0314 + 32 0.0105 + 37 0.00348 + 40 0.199 + 41 0.446 + 42 0.0105 + 46 0.00348 + + 21 14 6 0 + 0 0.0714 + 7 0.357 + 12 0.0714 + 21 0.0714 + 32 0.0714 + 41 0.357 + + 31 3 3 0 + 0 0.333 + 12 0.333 + 40 0.333 + + 44 1 1 0 + 43 1 + + 47 1 1 0 + 9 1 + + 48 7 4 0 + 7 0.143 + 13 0.429 + 40 0.143 + 41 0.286 + + 49 8 4 0 + 7 0.125 + 40 0.125 + 41 0.625 + 42 0.125 + + 57 2329 28 15 + 0 0.0146 + 2 0.0416 + 4 0.00386 + 7 0.0932 + 8 0.00129 + 9 0.000429 + 12 0.00558 + 13 0.00215 + 14 0.00215 + 15 0.000859 + 19 0.000859 + 21 0.00558 + 26 0.0125 + 28 0.000429 + 29 0.021 + 30 0.000859 + 32 0.00859 + 33 0.00258 + 34 0.000429 + 37 0.00258 + 40 0.532 + 41 0.213 + 42 0.0258 + 43 0.00129 + 44 0.000859 + 45 0.000859 + 46 0.00386 + 47 0.000859 + + 2 1 1 0 + 9 1 + + 7 12 3 0 + 2 0.0833 + 7 0.333 + 40 0.583 + + 8 1515 26 0 + 0 0.0165 + 2 0.0436 + 4 0.00198 + 7 0.0904 + 8 0.00132 + 12 0.00726 + 13 0.00198 + 14 0.00198 + 15 0.00132 + 19 0.00132 + 21 0.00528 + 26 0.0112 + 28 0.00066 + 29 0.0277 + 30 0.00066 + 32 0.00858 + 33 0.00132 + 34 0.00066 + 37 0.00264 + 40 0.525 + 41 0.222 + 42 0.0205 + 43 0.00132 + 44 0.00066 + 46 0.0033 + 47 0.00066 + + 9 57 9 0 + 0 0.0351 + 2 0.0526 + 4 0.0526 + 7 0.228 + 8 0.0175 + 14 0.0175 + 40 0.421 + 41 0.14 + 42 0.0351 + + 13 19 7 0 + 0 0.0526 + 7 0.158 + 26 0.0526 + 37 0.0526 + 40 0.368 + 41 0.263 + 45 0.0526 + + 21 76 13 0 + 0 0.0132 + 2 0.0263 + 7 0.0658 + 21 0.0132 + 26 0.0658 + 29 0.0526 + 32 0.0526 + 33 0.0395 + 37 0.0132 + 40 0.408 + 41 0.224 + 42 0.0132 + 47 0.0132 + + 31 139 13 0 + 0 0.0144 + 2 0.0647 + 4 0.00719 + 7 0.0719 + 21 0.00719 + 29 0.00719 + 32 0.0144 + 33 0.00719 + 40 0.532 + 41 0.245 + 42 0.0144 + 43 0.00719 + 45 0.00719 + + 32 2 2 0 + 29 0.5 + 32 0.5 + + 42 2 2 0 + 40 0.5 + 46 0.5 + + 46 30 5 0 + 2 0.0667 + 7 0.0333 + 40 0.7 + 41 0.167 + 42 0.0333 + + 48 350 15 0 + 0 0.00571 + 2 0.0343 + 4 0.00571 + 7 0.114 + 12 0.00286 + 13 0.00286 + 14 0.00286 + 21 0.00857 + 26 0.0143 + 30 0.00286 + 40 0.569 + 41 0.186 + 42 0.0429 + 44 0.00286 + 46 0.00571 + + 55 27 3 0 + 40 0.815 + 41 0.0741 + 42 0.111 + + 57 54 7 0 + 2 0.0185 + 7 0.0185 + 12 0.0185 + 29 0.0185 + 40 0.685 + 41 0.222 + 42 0.0185 + + 58 1 1 0 + 46 1 + + 60 1 1 0 + 13 1 + + 58 55 15 3 + 2 0.0545 + 4 0.0182 + 7 0.164 + 8 0.0182 + 13 0.345 + 14 0.0364 + 15 0.0182 + 19 0.0182 + 21 0.0182 + 23 0.0182 + 26 0.0909 + 30 0.0182 + 40 0.0545 + 41 0.109 + 47 0.0182 + + 2 2 2 0 + 21 0.5 + 23 0.5 + + 8 10 5 0 + 4 0.1 + 7 0.3 + 13 0.1 + 19 0.1 + 26 0.4 + + 48 37 11 0 + 2 0.0811 + 7 0.108 + 8 0.027 + 13 0.459 + 14 0.027 + 15 0.027 + 26 0.027 + 30 0.027 + 40 0.0541 + 41 0.135 + 47 0.027 + + 59 11 6 0 + 3 0.0909 + 7 0.364 + 8 0.182 + 21 0.0909 + 26 0.182 + 40 0.0909 + + 60 708 16 1 + 2 0.00141 + 4 0.00282 + 7 0.00141 + 8 0.154 + 9 0.00424 + 13 0.685 + 14 0.00989 + 15 0.0791 + 21 0.00141 + 29 0.00141 + 30 0.00282 + 31 0.00565 + 41 0.0155 + 43 0.024 + 44 0.00847 + 45 0.00282 + + 8 1 1 0 + 29 1 + + 62 909 18 4 + 0 0.0187 + 2 0.0154 + 7 0.0781 + 12 0.0044 + 13 0.0011 + 21 0.0066 + 26 0.0011 + 29 0.0011 + 30 0.0011 + 33 0.0011 + 34 0.0011 + 37 0.0066 + 40 0.646 + 41 0.197 + 42 0.0132 + 44 0.0011 + 46 0.0033 + 47 0.0033 + + 9 6 2 0 + 7 0.5 + 40 0.5 + + 21 35 7 0 + 0 0.114 + 2 0.0286 + 33 0.0286 + 40 0.657 + 41 0.114 + 42 0.0286 + 47 0.0286 + + 31 30 2 0 + 40 0.867 + 41 0.133 + + 57 15 3 0 + 37 0.2 + 40 0.533 + 41 0.267 + + 64 463 12 2 + 0 0.00648 + 2 0.0281 + 4 0.00216 + 5 0.00216 + 7 0.0346 + 21 0.00216 + 26 0.00216 + 40 0.667 + 41 0.22 + 42 0.0302 + 46 0.00216 + 47 0.00216 + + 9 16 5 0 + 0 0.0625 + 2 0.0625 + 7 0.25 + 40 0.438 + 41 0.188 + + 58 8 2 0 + 40 0.875 + 47 0.125 + +49 42263 41 35 + 0 0.065 + 1 0.00182 + 2 0.0136 + 3 0.0157 + 4 0.0309 + 5 0.00128 + 7 0.159 + 8 0.0225 + 9 0.00199 + 10 0.000118 + 12 0.0152 + 13 0.00757 + 14 0.00327 + 15 0.00613 + 16 9.46e-05 + 17 7.1e-05 + 19 0.0103 + 20 0.00149 + 21 0.0208 + 22 0.00442 + 23 0.000189 + 24 0.00026 + 26 0.0331 + 28 0.0399 + 29 0.067 + 30 0.0304 + 31 0.063 + 32 0.0227 + 33 0.0363 + 34 0.000284 + 35 0.00133 + 37 0.00338 + 39 0.00251 + 40 0.131 + 41 0.171 + 42 0.00989 + 43 0.000875 + 44 0.000592 + 45 0.00163 + 46 0.00244 + 47 0.00128 + + 2 55 16 5 + 0 0.0182 + 3 0.109 + 4 0.0364 + 7 0.109 + 8 0.0545 + 9 0.0182 + 19 0.0182 + 21 0.236 + 22 0.109 + 26 0.0182 + 28 0.0182 + 29 0.0909 + 31 0.0727 + 39 0.0182 + 41 0.0545 + 45 0.0182 + + 4 9 4 0 + 8 0.111 + 28 0.111 + 29 0.444 + 31 0.333 + + 22 3 1 0 + 22 1 + + 41 7 4 0 + 3 0.286 + 7 0.143 + 21 0.429 + 39 0.143 + + 47 10 9 0 + 0 0.1 + 7 0.1 + 8 0.1 + 19 0.1 + 21 0.1 + 26 0.1 + 29 0.1 + 31 0.1 + 41 0.2 + + 49 23 7 0 + 3 0.174 + 4 0.087 + 7 0.174 + 8 0.0435 + 21 0.348 + 22 0.13 + 45 0.0435 + + 3 20 7 1 + 2 0.05 + 7 0.1 + 14 0.05 + 15 0.05 + 26 0.05 + 40 0.35 + 41 0.35 + + 47 8 4 0 + 2 0.125 + 15 0.125 + 26 0.125 + 41 0.625 + + 4 84 15 3 + 0 0.0357 + 4 0.0119 + 7 0.19 + 8 0.0595 + 13 0.0238 + 14 0.0238 + 26 0.0119 + 28 0.0119 + 29 0.0119 + 30 0.0119 + 31 0.0357 + 32 0.0476 + 40 0.333 + 41 0.179 + 42 0.0119 + + 7 52 8 0 + 0 0.0192 + 4 0.0192 + 7 0.115 + 8 0.0385 + 28 0.0192 + 31 0.0192 + 40 0.481 + 41 0.288 + + 21 4 2 0 + 8 0.5 + 13 0.5 + + 47 28 11 0 + 0 0.0714 + 7 0.357 + 8 0.0357 + 14 0.0714 + 26 0.0357 + 29 0.0357 + 30 0.0357 + 31 0.0714 + 32 0.143 + 40 0.107 + 42 0.0357 + + 5 2 2 0 + 0 0.5 + 35 0.5 + + 6 7 4 0 + 15 0.143 + 41 0.571 + 42 0.143 + 46 0.143 + + 7 697 30 8 + 0 0.0143 + 2 0.0201 + 3 0.187 + 4 0.0459 + 5 0.00143 + 7 0.244 + 8 0.0244 + 12 0.0043 + 13 0.01 + 14 0.00717 + 15 0.01 + 17 0.00143 + 19 0.00717 + 20 0.00574 + 21 0.0301 + 22 0.0043 + 26 0.0301 + 28 0.00717 + 29 0.0258 + 30 0.0115 + 31 0.0359 + 32 0.0043 + 33 0.00717 + 35 0.00143 + 39 0.0258 + 40 0.115 + 41 0.109 + 42 0.00287 + 45 0.00143 + 47 0.00574 + + 2 9 3 0 + 7 0.111 + 21 0.556 + 41 0.333 + + 4 7 5 0 + 0 0.143 + 4 0.143 + 19 0.143 + 40 0.286 + 41 0.286 + + 9 8 4 0 + 8 0.25 + 29 0.25 + 30 0.125 + 31 0.375 + + 13 12 10 0 + 2 0.0833 + 8 0.25 + 13 0.0833 + 29 0.0833 + 30 0.0833 + 31 0.0833 + 33 0.0833 + 40 0.0833 + 41 0.0833 + 42 0.0833 + + 21 28 11 0 + 3 0.0357 + 4 0.25 + 7 0.179 + 8 0.0714 + 13 0.107 + 15 0.0357 + 21 0.0357 + 26 0.0357 + 30 0.0714 + 40 0.107 + 41 0.0714 + + 22 33 8 0 + 8 0.182 + 21 0.0303 + 28 0.152 + 29 0.212 + 30 0.0303 + 31 0.273 + 32 0.0606 + 33 0.0606 + + 47 482 28 0 + 0 0.0145 + 2 0.0228 + 3 0.268 + 4 0.0436 + 7 0.332 + 8 0.00622 + 12 0.00207 + 13 0.00622 + 14 0.0104 + 15 0.0124 + 17 0.00207 + 19 0.0083 + 20 0.00622 + 21 0.0249 + 22 0.00622 + 26 0.0332 + 29 0.00622 + 30 0.00622 + 31 0.0207 + 32 0.00207 + 33 0.00207 + 35 0.00207 + 39 0.0373 + 40 0.0581 + 41 0.0539 + 42 0.00207 + 45 0.00207 + 47 0.0083 + + 55 114 14 0 + 0 0.0175 + 2 0.0175 + 4 0.0263 + 5 0.00877 + 7 0.0351 + 12 0.0175 + 20 0.00877 + 21 0.0175 + 26 0.0351 + 29 0.0439 + 31 0.00877 + 33 0.00877 + 40 0.404 + 41 0.351 + + 8 310 25 8 + 0 0.00323 + 2 0.00968 + 3 0.0129 + 4 0.0161 + 7 0.31 + 8 0.0161 + 9 0.00323 + 12 0.00323 + 13 0.0419 + 14 0.0226 + 15 0.029 + 19 0.00323 + 21 0.00968 + 26 0.142 + 29 0.00968 + 30 0.00645 + 32 0.00323 + 35 0.00645 + 37 0.00323 + 40 0.129 + 41 0.19 + 42 0.0129 + 43 0.00645 + 46 0.00645 + 47 0.00323 + + 2 5 3 0 + 4 0.2 + 7 0.2 + 41 0.6 + + 4 6 4 0 + 7 0.333 + 40 0.167 + 41 0.167 + 42 0.333 + + 7 5 4 0 + 13 0.2 + 29 0.2 + 40 0.4 + 41 0.2 + + 21 71 10 0 + 4 0.0423 + 7 0.451 + 13 0.0845 + 14 0.0141 + 15 0.0282 + 26 0.127 + 29 0.0141 + 35 0.0141 + 40 0.0845 + 41 0.141 + + 22 7 3 0 + 7 0.286 + 41 0.571 + 46 0.143 + + 23 4 4 0 + 9 0.25 + 14 0.25 + 26 0.25 + 41 0.25 + + 28 2 1 0 + 13 1 + + 47 204 24 0 + 0 0.0049 + 2 0.0147 + 3 0.0196 + 4 0.0049 + 7 0.275 + 8 0.0245 + 12 0.0049 + 13 0.0196 + 14 0.0245 + 15 0.0294 + 19 0.0049 + 21 0.0147 + 26 0.167 + 29 0.0049 + 30 0.0098 + 32 0.0049 + 35 0.0049 + 37 0.0049 + 40 0.142 + 41 0.191 + 42 0.0098 + 43 0.0098 + 46 0.0049 + 47 0.0049 + + 9 132 13 4 + 0 0.00758 + 2 0.0152 + 4 0.0303 + 7 0.508 + 8 0.0303 + 13 0.053 + 14 0.0152 + 15 0.0303 + 21 0.00758 + 26 0.053 + 33 0.00758 + 40 0.106 + 41 0.136 + + 4 4 3 0 + 13 0.25 + 15 0.25 + 41 0.5 + + 21 29 10 0 + 0 0.0345 + 4 0.103 + 7 0.379 + 8 0.103 + 13 0.103 + 15 0.069 + 26 0.0345 + 33 0.0345 + 40 0.103 + 41 0.0345 + + 47 55 9 0 + 2 0.0182 + 4 0.0182 + 7 0.473 + 13 0.0364 + 15 0.0182 + 21 0.0182 + 26 0.0545 + 40 0.164 + 41 0.2 + + 55 39 7 0 + 2 0.0256 + 7 0.692 + 13 0.0256 + 14 0.0256 + 26 0.0769 + 40 0.0513 + 41 0.103 + + 10 131 21 1 + 0 0.0229 + 3 0.0382 + 4 0.191 + 5 0.0153 + 7 0.183 + 8 0.0611 + 13 0.0534 + 15 0.0153 + 19 0.0458 + 20 0.00763 + 21 0.107 + 26 0.0153 + 28 0.0229 + 29 0.00763 + 30 0.0153 + 31 0.0229 + 33 0.00763 + 37 0.0153 + 40 0.0305 + 41 0.107 + 42 0.0153 + + 47 7 5 0 + 0 0.143 + 7 0.286 + 26 0.143 + 31 0.286 + 40 0.143 + + 11 6 1 0 + 41 1 + + 13 92 23 6 + 0 0.0217 + 2 0.0543 + 4 0.0326 + 7 0.293 + 8 0.0217 + 9 0.0109 + 13 0.0217 + 15 0.0109 + 19 0.0109 + 21 0.0217 + 26 0.109 + 28 0.0109 + 29 0.0326 + 30 0.0109 + 31 0.0217 + 32 0.0109 + 33 0.0109 + 34 0.0109 + 35 0.0217 + 37 0.0217 + 40 0.13 + 41 0.0978 + 42 0.0109 + + 2 3 2 0 + 7 0.667 + 42 0.333 + + 3 2 2 0 + 9 0.5 + 13 0.5 + + 4 11 9 0 + 0 0.0909 + 7 0.0909 + 13 0.0909 + 28 0.0909 + 30 0.0909 + 33 0.0909 + 35 0.182 + 37 0.182 + 40 0.0909 + + 7 6 5 0 + 7 0.167 + 8 0.167 + 26 0.167 + 40 0.333 + 41 0.167 + + 8 11 7 0 + 2 0.0909 + 7 0.182 + 8 0.0909 + 19 0.0909 + 26 0.273 + 32 0.0909 + 40 0.182 + + 47 50 12 0 + 0 0.02 + 2 0.04 + 4 0.06 + 7 0.34 + 15 0.02 + 21 0.02 + 26 0.12 + 29 0.06 + 31 0.04 + 34 0.02 + 40 0.12 + 41 0.14 + + 14 5 3 0 + 2 0.4 + 7 0.2 + 26 0.4 + + 15 26 4 0 + 4 0.0385 + 15 0.0769 + 40 0.0385 + 41 0.846 + + 19 6 4 0 + 0 0.333 + 7 0.167 + 40 0.167 + 41 0.333 + + 21 17337 41 14 + 0 0.0758 + 1 0.00225 + 2 0.01 + 3 0.0253 + 4 0.0318 + 5 0.00127 + 7 0.155 + 8 0.0237 + 9 0.00323 + 10 0.000173 + 12 0.018 + 13 0.00675 + 14 0.00271 + 15 0.00583 + 16 0.000115 + 17 5.77e-05 + 19 0.0114 + 20 0.00144 + 21 0.0224 + 22 0.00848 + 23 0.000231 + 24 0.000404 + 26 0.0337 + 28 0.0465 + 29 0.0786 + 30 0.0359 + 31 0.0731 + 32 0.0269 + 33 0.0436 + 34 0.000115 + 35 0.00121 + 37 0.00335 + 39 0.00438 + 40 0.0751 + 41 0.159 + 42 0.00594 + 43 0.000577 + 44 0.00075 + 45 0.00173 + 46 0.0026 + 47 0.000577 + + 2 80 22 0 + 0 0.0125 + 2 0.025 + 3 0.0125 + 4 0.0125 + 7 0.188 + 8 0.0125 + 10 0.0125 + 15 0.0125 + 19 0.0125 + 21 0.05 + 22 0.0125 + 26 0.025 + 28 0.0125 + 29 0.0125 + 30 0.025 + 31 0.0625 + 32 0.0125 + 40 0.175 + 41 0.262 + 42 0.025 + 44 0.0125 + 45 0.0125 + + 4 12 7 0 + 0 0.0833 + 4 0.0833 + 8 0.333 + 19 0.0833 + 22 0.0833 + 26 0.0833 + 40 0.25 + + 7 72 14 0 + 0 0.0417 + 2 0.0278 + 4 0.125 + 7 0.0556 + 8 0.0139 + 9 0.0278 + 15 0.0278 + 21 0.0139 + 26 0.0278 + 30 0.0278 + 31 0.0417 + 40 0.153 + 41 0.389 + 42 0.0278 + + 10 4 2 0 + 4 0.75 + 15 0.25 + + 19 1 1 0 + 13 1 + + 21 886 32 0 + 0 0.044 + 2 0.0135 + 3 0.00113 + 4 0.044 + 5 0.00339 + 7 0.31 + 8 0.0282 + 9 0.00226 + 10 0.00113 + 12 0.00903 + 13 0.00339 + 14 0.00339 + 15 0.00226 + 19 0.0113 + 21 0.0147 + 22 0.00564 + 26 0.035 + 28 0.0181 + 29 0.0169 + 30 0.00677 + 31 0.0406 + 32 0.00903 + 33 0.0169 + 35 0.00339 + 37 0.00564 + 40 0.159 + 41 0.172 + 42 0.0102 + 43 0.00226 + 44 0.00226 + 45 0.00113 + 46 0.00339 + + 22 117 12 0 + 2 0.00855 + 4 0.0171 + 7 0.342 + 8 0.0598 + 26 0.0427 + 28 0.0513 + 30 0.0171 + 31 0.0598 + 37 0.0171 + 40 0.094 + 41 0.274 + 42 0.0171 + + 23 34 13 0 + 0 0.0294 + 2 0.0294 + 7 0.0588 + 8 0.118 + 12 0.0882 + 14 0.0294 + 15 0.0882 + 19 0.0294 + 29 0.0294 + 31 0.235 + 32 0.0294 + 41 0.206 + 43 0.0294 + + 24 3 3 0 + 7 0.333 + 40 0.333 + 46 0.333 + + 41 2 2 0 + 3 0.5 + 4 0.5 + + 45 3 3 0 + 7 0.333 + 21 0.333 + 46 0.333 + + 47 15577 41 0 + 0 0.0812 + 1 0.0025 + 2 0.00905 + 3 0.0279 + 4 0.0315 + 5 0.00122 + 7 0.146 + 8 0.0237 + 9 0.00327 + 10 6.42e-05 + 12 0.0193 + 13 0.00719 + 14 0.00276 + 15 0.00578 + 16 0.000128 + 17 6.42e-05 + 19 0.0115 + 20 0.0016 + 21 0.0236 + 22 0.00899 + 23 0.000257 + 24 0.000449 + 26 0.0343 + 28 0.0503 + 29 0.0859 + 30 0.0391 + 31 0.0774 + 32 0.0293 + 33 0.0475 + 34 0.000128 + 35 0.00116 + 37 0.00308 + 39 0.00488 + 40 0.0583 + 41 0.149 + 42 0.00507 + 43 0.000449 + 44 0.000642 + 45 0.0018 + 46 0.0025 + 47 0.000642 + + 49 10 5 0 + 3 0.1 + 7 0.4 + 9 0.1 + 40 0.2 + 41 0.2 + + 55 526 17 0 + 0 0.0076 + 2 0.0285 + 4 0.00951 + 7 0.12 + 13 0.0019 + 15 0.0038 + 19 0.00951 + 26 0.0152 + 29 0.0152 + 30 0.0019 + 31 0.0019 + 33 0.0019 + 37 0.0057 + 40 0.395 + 41 0.363 + 42 0.0171 + 46 0.0019 + + 22 718 21 5 + 0 0.00418 + 2 0.0334 + 3 0.00139 + 4 0.0432 + 7 0.297 + 8 0.0752 + 12 0.00279 + 13 0.00279 + 21 0.00696 + 26 0.0306 + 28 0.0306 + 29 0.00696 + 30 0.00557 + 31 0.0153 + 32 0.00139 + 33 0.00418 + 40 0.298 + 41 0.127 + 42 0.0111 + 43 0.00139 + 45 0.00139 + + 2 11 5 0 + 7 0.364 + 8 0.0909 + 28 0.0909 + 40 0.0909 + 41 0.364 + + 4 13 6 0 + 7 0.231 + 8 0.385 + 13 0.0769 + 30 0.154 + 32 0.0769 + 42 0.0769 + + 21 114 13 0 + 2 0.0263 + 4 0.0263 + 7 0.289 + 8 0.325 + 12 0.00877 + 21 0.0351 + 26 0.0351 + 28 0.0439 + 30 0.0175 + 31 0.0263 + 33 0.0175 + 40 0.105 + 41 0.0439 + + 47 311 19 0 + 0 0.00322 + 2 0.0482 + 3 0.00322 + 4 0.0836 + 7 0.476 + 8 0.0161 + 12 0.00322 + 13 0.00322 + 21 0.00322 + 26 0.0482 + 28 0.0514 + 29 0.0161 + 31 0.0257 + 33 0.00322 + 40 0.109 + 41 0.09 + 42 0.00965 + 43 0.00322 + 45 0.00322 + + 55 266 9 0 + 0 0.00752 + 2 0.0226 + 4 0.00752 + 7 0.0827 + 8 0.0226 + 26 0.0113 + 40 0.628 + 41 0.203 + 42 0.015 + + 23 36 13 1 + 0 0.0278 + 4 0.0278 + 7 0.194 + 8 0.0278 + 12 0.0278 + 21 0.0278 + 26 0.0556 + 28 0.0556 + 31 0.389 + 32 0.0278 + 40 0.0556 + 41 0.0278 + 42 0.0556 + + 7 2 2 0 + 12 0.5 + 21 0.5 + + 24 95 19 2 + 0 0.0105 + 2 0.0105 + 3 0.0316 + 4 0.0421 + 7 0.232 + 8 0.0105 + 13 0.0211 + 14 0.0421 + 15 0.0105 + 20 0.0211 + 21 0.0421 + 26 0.0632 + 30 0.0316 + 39 0.0105 + 40 0.274 + 41 0.116 + 42 0.0105 + 46 0.0105 + 47 0.0105 + + 2 1 1 0 + 42 1 + + 8 1 1 0 + 0 1 + + 28 6 3 0 + 8 0.167 + 28 0.333 + 41 0.5 + + 29 1 1 0 + 42 1 + + 31 4 3 0 + 13 0.25 + 26 0.5 + 40 0.25 + + 37 3 2 0 + 4 0.333 + 41 0.667 + + 40 10 3 0 + 43 0.1 + 46 0.1 + 47 0.8 + + 41 32 10 2 + 2 0.219 + 3 0.0625 + 4 0.0312 + 7 0.219 + 8 0.0312 + 21 0.0625 + 26 0.0312 + 29 0.0625 + 31 0.0312 + 37 0.25 + + 21 2 1 0 + 29 1 + + 57 3 1 0 + 7 1 + + 42 3 3 0 + 2 0.333 + 7 0.333 + 22 0.333 + + 46 7 4 0 + 7 0.571 + 8 0.143 + 26 0.143 + 47 0.143 + + 47 19808 41 32 + 0 0.0693 + 1 0.00192 + 2 0.0136 + 3 0.00353 + 4 0.0311 + 5 0.00136 + 7 0.139 + 8 0.0218 + 9 0.00121 + 10 0.000101 + 12 0.0163 + 13 0.00777 + 14 0.00343 + 15 0.00631 + 16 0.000101 + 17 5.05e-05 + 19 0.0109 + 20 0.00157 + 21 0.0207 + 22 0.00151 + 23 0.000202 + 24 0.000202 + 26 0.0283 + 28 0.0426 + 29 0.0715 + 30 0.0323 + 31 0.0671 + 32 0.0242 + 33 0.0388 + 34 0.000303 + 35 0.00136 + 37 0.00323 + 39 0.000505 + 40 0.139 + 41 0.181 + 42 0.0104 + 43 0.000909 + 44 0.000606 + 45 0.00172 + 46 0.00242 + 47 0.00136 + + 2 21 10 0 + 0 0.0476 + 7 0.0476 + 8 0.0952 + 19 0.0476 + 21 0.0952 + 26 0.0476 + 28 0.0476 + 29 0.238 + 31 0.19 + 41 0.143 + + 3 20 7 0 + 2 0.05 + 7 0.1 + 14 0.05 + 15 0.05 + 26 0.05 + 40 0.35 + 41 0.35 + + 4 79 14 0 + 0 0.038 + 4 0.0127 + 7 0.19 + 8 0.038 + 14 0.0253 + 26 0.0127 + 28 0.0127 + 29 0.0127 + 30 0.0127 + 31 0.038 + 32 0.0506 + 40 0.354 + 41 0.19 + 42 0.0127 + + 5 2 2 0 + 0 0.5 + 35 0.5 + + 6 6 3 0 + 41 0.667 + 42 0.167 + 46 0.167 + + 7 377 27 0 + 0 0.0265 + 2 0.0371 + 3 0.00531 + 4 0.0398 + 5 0.00265 + 7 0.111 + 8 0.0371 + 12 0.00796 + 13 0.0159 + 14 0.0133 + 15 0.00531 + 19 0.0133 + 20 0.0106 + 21 0.0451 + 26 0.0292 + 28 0.0133 + 29 0.0477 + 30 0.0159 + 31 0.0663 + 32 0.00796 + 33 0.0133 + 35 0.00265 + 40 0.212 + 41 0.202 + 42 0.00531 + 45 0.00265 + 47 0.0106 + + 8 234 25 0 + 0 0.00427 + 2 0.0128 + 3 0.00427 + 4 0.0214 + 7 0.274 + 8 0.00427 + 9 0.00427 + 12 0.00427 + 13 0.047 + 14 0.0299 + 15 0.0342 + 19 0.00427 + 21 0.0128 + 26 0.0427 + 29 0.0128 + 30 0.00855 + 32 0.00427 + 35 0.00855 + 37 0.00427 + 40 0.171 + 41 0.252 + 42 0.0171 + 43 0.00855 + 46 0.00855 + 47 0.00427 + + 9 130 13 0 + 0 0.00769 + 2 0.0154 + 4 0.0308 + 7 0.508 + 8 0.0308 + 13 0.0538 + 14 0.0154 + 15 0.0308 + 21 0.00769 + 26 0.0462 + 33 0.00769 + 40 0.108 + 41 0.138 + + 10 129 21 0 + 0 0.0233 + 3 0.0388 + 4 0.194 + 5 0.0155 + 7 0.178 + 8 0.062 + 13 0.0543 + 15 0.0155 + 19 0.0465 + 20 0.00775 + 21 0.109 + 26 0.00775 + 28 0.0233 + 29 0.00775 + 30 0.0155 + 31 0.0233 + 33 0.00775 + 37 0.0155 + 40 0.031 + 41 0.109 + 42 0.0155 + + 11 6 1 0 + 41 1 + + 13 78 21 0 + 0 0.0256 + 2 0.0641 + 4 0.0385 + 7 0.269 + 8 0.0256 + 9 0.0128 + 13 0.0256 + 15 0.0128 + 19 0.0128 + 21 0.0256 + 26 0.0769 + 28 0.0128 + 29 0.0385 + 30 0.0128 + 31 0.0256 + 32 0.0128 + 33 0.0128 + 34 0.0128 + 40 0.154 + 41 0.115 + 42 0.0128 + + 14 2 1 0 + 2 1 + + 15 26 4 0 + 4 0.0385 + 15 0.0769 + 40 0.0385 + 41 0.846 + + 19 6 4 0 + 0 0.333 + 7 0.167 + 40 0.167 + 41 0.333 + + 21 15861 41 0 + 0 0.0829 + 1 0.0024 + 2 0.0109 + 3 0.00372 + 4 0.033 + 5 0.00139 + 7 0.134 + 8 0.0212 + 9 0.00132 + 10 0.000126 + 12 0.0197 + 13 0.00694 + 14 0.0029 + 15 0.00624 + 16 0.000126 + 17 6.3e-05 + 19 0.0122 + 20 0.00151 + 21 0.0221 + 22 0.00189 + 23 0.000252 + 24 0.000252 + 26 0.0281 + 28 0.0508 + 29 0.0859 + 30 0.039 + 31 0.0798 + 32 0.0294 + 33 0.0477 + 34 0.000126 + 35 0.00132 + 37 0.00347 + 39 0.000567 + 40 0.0816 + 41 0.174 + 42 0.00643 + 43 0.00063 + 44 0.000757 + 45 0.00189 + 46 0.00265 + 47 0.00063 + + 22 659 20 0 + 0 0.00455 + 2 0.0319 + 4 0.0212 + 7 0.284 + 8 0.0774 + 12 0.00303 + 13 0.00303 + 21 0.00759 + 26 0.0212 + 28 0.0334 + 29 0.00759 + 30 0.00607 + 31 0.0167 + 32 0.00152 + 33 0.00455 + 40 0.323 + 41 0.138 + 42 0.0121 + 43 0.00152 + 45 0.00152 + + 23 35 13 0 + 0 0.0286 + 4 0.0286 + 7 0.171 + 8 0.0286 + 12 0.0286 + 21 0.0286 + 26 0.0571 + 28 0.0571 + 31 0.4 + 32 0.0286 + 40 0.0571 + 41 0.0286 + 42 0.0571 + + 24 74 17 0 + 0 0.0135 + 2 0.0135 + 3 0.0135 + 4 0.0541 + 7 0.162 + 8 0.0135 + 13 0.027 + 14 0.0541 + 15 0.0135 + 20 0.027 + 21 0.0405 + 30 0.027 + 39 0.0135 + 40 0.351 + 41 0.149 + 42 0.0135 + 47 0.0135 + + 28 6 3 0 + 8 0.167 + 28 0.333 + 41 0.5 + + 29 1 1 0 + 42 1 + + 31 3 3 0 + 13 0.333 + 26 0.333 + 40 0.333 + + 37 3 2 0 + 4 0.333 + 41 0.667 + + 40 9 2 0 + 43 0.111 + 47 0.889 + + 41 5 4 0 + 7 0.2 + 26 0.2 + 29 0.4 + 31 0.2 + + 46 2 2 0 + 8 0.5 + 47 0.5 + + 49 42 5 0 + 7 0.119 + 12 0.0238 + 40 0.619 + 41 0.19 + 42 0.0476 + + 55 524 14 0 + 0 0.00573 + 2 0.0134 + 4 0.00763 + 7 0.143 + 13 0.00382 + 19 0.00191 + 21 0.00573 + 26 0.0687 + 29 0.00763 + 31 0.00191 + 40 0.458 + 41 0.191 + 42 0.0897 + 43 0.00191 + + 57 1267 29 0 + 0 0.0189 + 2 0.0316 + 3 0.00158 + 4 0.00947 + 5 0.00158 + 7 0.0805 + 8 0.00395 + 9 0.000789 + 12 0.00158 + 13 0.00316 + 15 0.00395 + 19 0.00395 + 21 0.00474 + 26 0.0166 + 29 0.00868 + 30 0.000789 + 31 0.000789 + 32 0.000789 + 33 0.000789 + 34 0.00237 + 35 0.000789 + 37 0.00474 + 40 0.514 + 41 0.257 + 42 0.0213 + 43 0.00158 + 45 0.00158 + 46 0.00158 + 47 0.00158 + + 58 3 2 0 + 30 0.333 + 40 0.667 + + 59 1 1 0 + 35 1 + + 62 30 5 0 + 0 0.0333 + 21 0.0333 + 40 0.7 + 41 0.133 + 42 0.1 + + 64 156 13 0 + 0 0.00641 + 2 0.00641 + 4 0.0128 + 7 0.00641 + 14 0.00641 + 19 0.00641 + 21 0.00641 + 26 0.0192 + 40 0.615 + 41 0.288 + 42 0.0128 + 43 0.00641 + 46 0.00641 + + 48 6 3 0 + 7 0.5 + 40 0.167 + 41 0.333 + + 49 384 14 4 + 2 0.0599 + 4 0.0234 + 7 0.695 + 8 0.00781 + 12 0.0026 + 14 0.0026 + 19 0.00521 + 21 0.0026 + 26 0.0104 + 37 0.00521 + 40 0.0703 + 41 0.0911 + 42 0.0182 + 46 0.00521 + + 2 27 5 0 + 7 0.111 + 12 0.037 + 40 0.556 + 41 0.259 + 42 0.037 + + 21 14 5 0 + 7 0.429 + 40 0.357 + 41 0.0714 + 42 0.0714 + 46 0.0714 + + 41 4 1 0 + 40 1 + + 47 327 12 0 + 2 0.0703 + 4 0.0275 + 7 0.771 + 8 0.00917 + 14 0.00306 + 19 0.00612 + 21 0.00306 + 26 0.0122 + 37 0.00612 + 41 0.0734 + 42 0.0153 + 46 0.00306 + + 55 740 14 5 + 0 0.00405 + 2 0.00946 + 4 0.00541 + 7 0.307 + 13 0.0027 + 19 0.00135 + 21 0.00541 + 26 0.132 + 29 0.00541 + 31 0.00135 + 40 0.324 + 41 0.136 + 42 0.0635 + 43 0.00135 + + 7 178 10 0 + 2 0.0112 + 7 0.275 + 13 0.0112 + 21 0.0112 + 26 0.0787 + 29 0.00562 + 31 0.00562 + 40 0.365 + 41 0.129 + 42 0.107 + + 21 514 10 0 + 2 0.00584 + 4 0.00778 + 7 0.323 + 21 0.00195 + 26 0.15 + 29 0.00195 + 40 0.321 + 41 0.132 + 42 0.0545 + 43 0.00195 + + 22 18 6 0 + 0 0.0556 + 7 0.222 + 26 0.111 + 29 0.111 + 40 0.222 + 41 0.278 + + 47 4 2 0 + 7 0.75 + 21 0.25 + + 49 10 6 0 + 0 0.2 + 2 0.1 + 7 0.1 + 19 0.1 + 26 0.2 + 41 0.3 + + 57 1294 29 10 + 0 0.0185 + 2 0.0309 + 3 0.00232 + 4 0.00927 + 5 0.00155 + 7 0.0927 + 8 0.00386 + 9 0.000773 + 12 0.00155 + 13 0.00309 + 15 0.00386 + 19 0.00386 + 21 0.00464 + 26 0.0185 + 29 0.0085 + 30 0.000773 + 31 0.000773 + 32 0.000773 + 33 0.000773 + 34 0.00232 + 35 0.000773 + 37 0.00464 + 40 0.503 + 41 0.254 + 42 0.0209 + 43 0.00232 + 45 0.00155 + 46 0.00155 + 47 0.00155 + + 7 133 14 0 + 0 0.0226 + 2 0.0226 + 3 0.00752 + 7 0.0602 + 8 0.015 + 12 0.00752 + 19 0.00752 + 26 0.0301 + 34 0.00752 + 40 0.466 + 41 0.323 + 42 0.015 + 43 0.00752 + 47 0.00752 + + 8 63 10 0 + 0 0.0159 + 2 0.0159 + 4 0.0159 + 7 0.127 + 13 0.0159 + 32 0.0159 + 33 0.0159 + 40 0.476 + 41 0.286 + 45 0.0159 + + 13 10 6 0 + 2 0.1 + 7 0.2 + 15 0.1 + 35 0.1 + 40 0.4 + 41 0.1 + + 21 614 22 0 + 0 0.0277 + 2 0.0326 + 3 0.00326 + 4 0.013 + 5 0.00163 + 7 0.0765 + 9 0.00163 + 12 0.00163 + 13 0.00326 + 15 0.00489 + 19 0.00651 + 21 0.00814 + 26 0.0212 + 29 0.013 + 30 0.00163 + 34 0.00326 + 37 0.00651 + 40 0.484 + 41 0.269 + 42 0.0163 + 45 0.00163 + 46 0.00326 + + 22 32 6 0 + 0 0.0625 + 7 0.188 + 29 0.0625 + 40 0.5 + 41 0.156 + 47 0.0312 + + 24 16 6 0 + 2 0.0625 + 7 0.188 + 8 0.0625 + 21 0.0625 + 40 0.25 + 41 0.375 + + 44 1 1 0 + 43 1 + + 49 164 12 0 + 2 0.0244 + 4 0.0122 + 7 0.183 + 8 0.0122 + 15 0.0061 + 26 0.0122 + 29 0.0061 + 37 0.0061 + 40 0.488 + 41 0.207 + 42 0.0366 + 43 0.0061 + + 55 215 9 0 + 0 0.00465 + 2 0.0465 + 5 0.00465 + 7 0.0605 + 26 0.0186 + 31 0.00465 + 40 0.6 + 41 0.223 + 42 0.0372 + + 57 20 6 0 + 7 0.05 + 13 0.05 + 37 0.05 + 40 0.65 + 41 0.15 + 42 0.05 + + 58 6 4 0 + 7 0.333 + 26 0.167 + 30 0.167 + 40 0.333 + + 59 1 1 0 + 35 1 + + 62 30 5 0 + 0 0.0333 + 21 0.0333 + 40 0.7 + 41 0.133 + 42 0.1 + + 64 159 13 2 + 0 0.00629 + 2 0.00629 + 4 0.0126 + 7 0.0126 + 14 0.00629 + 19 0.00629 + 21 0.00629 + 26 0.0189 + 40 0.61 + 41 0.289 + 42 0.0126 + 43 0.00629 + 46 0.00629 + + 21 35 6 0 + 4 0.0286 + 19 0.0286 + 21 0.0286 + 26 0.0286 + 40 0.486 + 41 0.4 + + 41 10 1 0 + 40 1 + +50 604 25 5 + 0 0.0364 + 1 0.00662 + 3 0.0166 + 4 0.212 + 7 0.166 + 8 0.113 + 9 0.00993 + 12 0.00993 + 13 0.0629 + 14 0.0662 + 15 0.0298 + 16 0.00662 + 20 0.0298 + 21 0.0298 + 22 0.00331 + 26 0.043 + 28 0.043 + 29 0.0132 + 30 0.0497 + 31 0.0232 + 32 0.00662 + 33 0.00993 + 35 0.00331 + 39 0.00331 + 45 0.00662 + + 7 209 21 0 + 0 0.00957 + 1 0.00957 + 3 0.0239 + 4 0.22 + 7 0.115 + 8 0.129 + 9 0.0144 + 13 0.0861 + 14 0.0766 + 15 0.0431 + 16 0.00478 + 20 0.0144 + 21 0.0335 + 26 0.0335 + 28 0.0622 + 30 0.0718 + 31 0.0287 + 32 0.00478 + 35 0.00478 + 39 0.00478 + 45 0.00957 + + 8 4 3 0 + 7 0.5 + 8 0.25 + 26 0.25 + + 21 83 15 3 + 0 0.108 + 4 0.181 + 7 0.289 + 8 0.0723 + 12 0.0361 + 14 0.0241 + 16 0.012 + 20 0.0723 + 21 0.0241 + 22 0.012 + 26 0.0602 + 29 0.0482 + 31 0.012 + 32 0.012 + 33 0.0361 + + 2 22 8 0 + 4 0.227 + 7 0.364 + 14 0.0909 + 20 0.0909 + 22 0.0455 + 26 0.0455 + 29 0.0909 + 31 0.0455 + + 7 11 5 0 + 4 0.364 + 7 0.0909 + 8 0.364 + 20 0.0909 + 21 0.0909 + + 21 50 12 0 + 0 0.18 + 4 0.12 + 7 0.3 + 8 0.04 + 12 0.06 + 16 0.02 + 20 0.06 + 21 0.02 + 26 0.08 + 29 0.04 + 32 0.02 + 33 0.06 + + 28 5 3 0 + 4 0.6 + 13 0.2 + 14 0.2 + + 47 302 25 4 + 0 0.0364 + 1 0.00662 + 3 0.0166 + 4 0.212 + 7 0.166 + 8 0.113 + 9 0.00993 + 12 0.00993 + 13 0.0629 + 14 0.0662 + 15 0.0298 + 16 0.00662 + 20 0.0298 + 21 0.0298 + 22 0.00331 + 26 0.043 + 28 0.043 + 29 0.0132 + 30 0.0497 + 31 0.0232 + 32 0.00662 + 33 0.00993 + 35 0.00331 + 39 0.00331 + 45 0.00662 + + 7 209 21 0 + 0 0.00957 + 1 0.00957 + 3 0.0239 + 4 0.22 + 7 0.115 + 8 0.129 + 9 0.0144 + 13 0.0861 + 14 0.0766 + 15 0.0431 + 16 0.00478 + 20 0.0144 + 21 0.0335 + 26 0.0335 + 28 0.0622 + 30 0.0718 + 31 0.0287 + 32 0.00478 + 35 0.00478 + 39 0.00478 + 45 0.00957 + + 8 4 3 0 + 7 0.5 + 8 0.25 + 26 0.25 + + 21 83 15 0 + 0 0.108 + 4 0.181 + 7 0.289 + 8 0.0723 + 12 0.0361 + 14 0.0241 + 16 0.012 + 20 0.0723 + 21 0.0241 + 22 0.012 + 26 0.0602 + 29 0.0482 + 31 0.012 + 32 0.012 + 33 0.0361 + + 28 5 3 0 + 4 0.6 + 13 0.2 + 14 0.2 + +51 1442 32 20 + 0 0.000693 + 2 0.00763 + 3 0.00139 + 4 0.0146 + 7 0.0444 + 8 0.00416 + 9 0.000693 + 12 0.000693 + 13 0.00347 + 14 0.00139 + 15 0.000693 + 19 0.00347 + 20 0.000693 + 21 0.0173 + 22 0.000693 + 26 0.00832 + 27 0.00208 + 28 0.00208 + 29 0.00277 + 30 0.00208 + 33 0.00139 + 34 0.000693 + 35 0.00139 + 37 0.00139 + 39 0.000693 + 40 0.279 + 41 0.164 + 42 0.025 + 43 0.0118 + 44 0.00139 + 46 0.0374 + 47 0.356 + + 2 42 15 1 + 3 0.0238 + 4 0.167 + 7 0.143 + 8 0.0238 + 9 0.0238 + 13 0.0238 + 14 0.0238 + 19 0.0238 + 21 0.333 + 26 0.0238 + 27 0.0238 + 28 0.0238 + 35 0.0476 + 37 0.0238 + 41 0.0714 + + 41 6 5 0 + 3 0.167 + 4 0.333 + 14 0.167 + 21 0.167 + 35 0.167 + + 4 2 2 0 + 27 0.5 + 41 0.5 + + 7 6 4 0 + 4 0.333 + 13 0.333 + 30 0.167 + 34 0.167 + + 21 42 15 5 + 3 0.0238 + 4 0.143 + 7 0.167 + 8 0.0476 + 13 0.0476 + 15 0.0238 + 19 0.0238 + 21 0.19 + 22 0.0238 + 26 0.0476 + 28 0.0476 + 37 0.0238 + 40 0.143 + 41 0.0238 + 42 0.0238 + + 2 9 4 0 + 7 0.333 + 15 0.111 + 21 0.444 + 41 0.111 + + 21 3 1 0 + 4 1 + + 47 19 10 0 + 3 0.0526 + 4 0.105 + 7 0.211 + 8 0.105 + 13 0.105 + 21 0.211 + 22 0.0526 + 26 0.0526 + 40 0.0526 + 42 0.0526 + + 49 3 2 0 + 26 0.333 + 40 0.667 + + 71 3 2 0 + 28 0.667 + 40 0.333 + + 40 210 3 0 + 43 0.00476 + 46 0.176 + 47 0.819 + + 41 31 12 2 + 2 0.0645 + 4 0.0323 + 7 0.548 + 14 0.0323 + 19 0.0323 + 20 0.0323 + 21 0.0323 + 27 0.0323 + 30 0.0645 + 39 0.0323 + 46 0.0645 + 47 0.0323 + + 51 4 3 0 + 2 0.5 + 19 0.25 + 39 0.25 + + 57 5 4 0 + 4 0.2 + 7 0.4 + 14 0.2 + 47 0.2 + + 42 16 4 0 + 7 0.125 + 8 0.0625 + 40 0.188 + 47 0.625 + + 46 38 4 0 + 7 0.0263 + 33 0.0263 + 43 0.0526 + 47 0.895 + + 47 495 14 13 + 2 0.00808 + 4 0.00202 + 7 0.00202 + 19 0.00202 + 26 0.00606 + 29 0.00404 + 33 0.00202 + 40 0.194 + 41 0.208 + 42 0.0202 + 43 0.0141 + 44 0.00202 + 46 0.0162 + 47 0.519 + + 21 5 3 0 + 19 0.2 + 40 0.6 + 41 0.2 + + 40 174 2 0 + 46 0.0115 + 47 0.989 + + 42 10 1 0 + 47 1 + + 46 36 3 0 + 33 0.0278 + 43 0.0278 + 47 0.944 + + 48 32 9 0 + 2 0.0312 + 7 0.0312 + 26 0.0625 + 40 0.188 + 41 0.531 + 42 0.0312 + 43 0.0625 + 46 0.0312 + 47 0.0312 + + 49 26 4 0 + 40 0.385 + 41 0.5 + 43 0.0769 + 47 0.0385 + + 51 4 1 0 + 40 1 + + 55 86 7 0 + 2 0.0116 + 29 0.0233 + 40 0.267 + 41 0.465 + 42 0.0465 + 46 0.0233 + 47 0.163 + + 57 51 6 0 + 26 0.0196 + 40 0.471 + 41 0.196 + 42 0.0588 + 43 0.0196 + 47 0.235 + + 62 13 4 0 + 40 0.385 + 41 0.462 + 46 0.0769 + 47 0.0769 + + 64 11 4 0 + 2 0.0909 + 40 0.455 + 41 0.0909 + 47 0.364 + + 69 17 5 0 + 4 0.0588 + 40 0.471 + 41 0.353 + 46 0.0588 + 47 0.0588 + + 71 9 6 0 + 2 0.111 + 40 0.333 + 41 0.222 + 43 0.111 + 44 0.111 + 47 0.111 + + 48 39 9 0 + 2 0.0256 + 7 0.0256 + 26 0.0513 + 40 0.308 + 41 0.436 + 42 0.0513 + 43 0.0513 + 46 0.0256 + 47 0.0256 + + 49 53 10 2 + 4 0.0377 + 7 0.132 + 8 0.0189 + 12 0.0189 + 21 0.0189 + 40 0.377 + 41 0.321 + 42 0.0189 + 43 0.0377 + 47 0.0189 + + 2 10 6 0 + 4 0.2 + 7 0.3 + 12 0.1 + 21 0.1 + 40 0.2 + 41 0.1 + + 47 21 5 0 + 7 0.0476 + 40 0.429 + 41 0.429 + 42 0.0476 + 47 0.0476 + + 51 16 5 1 + 2 0.0625 + 40 0.562 + 41 0.25 + 42 0.0625 + 46 0.0625 + + 47 5 3 0 + 2 0.2 + 41 0.6 + 42 0.2 + + 52 8 3 0 + 19 0.125 + 40 0.5 + 41 0.375 + + 55 193 13 8 + 0 0.00518 + 2 0.00518 + 7 0.0518 + 8 0.00518 + 21 0.00518 + 26 0.0155 + 29 0.0104 + 40 0.487 + 41 0.259 + 42 0.0622 + 43 0.00518 + 46 0.0155 + 47 0.0725 + + 2 9 3 0 + 0 0.111 + 40 0.778 + 41 0.111 + + 41 21 4 0 + 40 0.714 + 41 0.19 + 42 0.0476 + 46 0.0476 + + 42 17 5 0 + 40 0.706 + 41 0.0588 + 43 0.0588 + 46 0.0588 + 47 0.118 + + 45 17 2 0 + 40 0.941 + 42 0.0588 + + 47 77 9 0 + 7 0.104 + 21 0.013 + 26 0.039 + 29 0.026 + 40 0.221 + 41 0.429 + 42 0.039 + 46 0.013 + 47 0.117 + + 48 1 1 0 + 8 1 + + 52 1 1 0 + 2 1 + + 57 9 3 0 + 40 0.222 + 41 0.111 + 42 0.667 + + 57 89 8 3 + 4 0.0112 + 7 0.0562 + 26 0.0112 + 40 0.551 + 41 0.169 + 42 0.0562 + 43 0.0112 + 47 0.135 + + 47 26 5 0 + 26 0.0385 + 40 0.385 + 41 0.115 + 42 0.0385 + 47 0.423 + + 49 7 2 0 + 4 0.143 + 40 0.857 + + 55 15 4 0 + 7 0.2 + 40 0.467 + 41 0.267 + 43 0.0667 + + 62 54 5 1 + 40 0.815 + 41 0.111 + 42 0.037 + 46 0.0185 + 47 0.0185 + + 47 8 3 0 + 40 0.25 + 41 0.625 + 46 0.125 + + 64 40 4 0 + 2 0.025 + 40 0.8 + 41 0.075 + 47 0.1 + + 69 31 5 0 + 4 0.0323 + 40 0.71 + 41 0.194 + 46 0.0323 + 47 0.0323 + + 71 11 7 0 + 2 0.0909 + 7 0.0909 + 40 0.364 + 41 0.182 + 43 0.0909 + 44 0.0909 + 47 0.0909 + + 72 6 3 0 + 7 0.667 + 40 0.167 + 41 0.167 + +52 275 19 11 + 0 0.00727 + 2 0.0109 + 4 0.00727 + 7 0.0145 + 13 0.00727 + 19 0.0145 + 20 0.00727 + 21 0.00727 + 26 0.04 + 27 0.0109 + 28 0.0291 + 37 0.00727 + 40 0.142 + 41 0.52 + 42 0.00364 + 43 0.0291 + 45 0.00364 + 46 0.0364 + 47 0.102 + + 2 1 1 0 + 45 1 + + 13 5 2 0 + 40 0.8 + 46 0.2 + + 15 2 2 0 + 41 0.5 + 42 0.5 + + 21 18 5 0 + 4 0.0556 + 21 0.0556 + 37 0.0556 + 40 0.0556 + 41 0.778 + + 27 80 9 1 + 13 0.0125 + 19 0.0125 + 26 0.075 + 27 0.0125 + 28 0.025 + 40 0.225 + 41 0.538 + 43 0.0375 + 46 0.0625 + + 45 2 1 0 + 46 1 + + 28 11 4 0 + 0 0.0909 + 20 0.0909 + 28 0.182 + 41 0.636 + + 40 13 1 0 + 47 1 + + 41 1 1 0 + 27 1 + + 46 2 2 0 + 2 0.5 + 7 0.5 + + 47 127 17 7 + 0 0.00787 + 2 0.00787 + 4 0.00787 + 7 0.0157 + 13 0.00787 + 19 0.0157 + 20 0.00787 + 21 0.00787 + 26 0.0394 + 27 0.00787 + 28 0.0315 + 37 0.00787 + 40 0.102 + 41 0.559 + 43 0.0315 + 46 0.0315 + 47 0.11 + + 13 2 2 0 + 40 0.5 + 46 0.5 + + 21 17 4 0 + 4 0.0588 + 21 0.0588 + 37 0.0588 + 41 0.824 + + 27 70 9 0 + 13 0.0143 + 19 0.0143 + 26 0.0714 + 27 0.0143 + 28 0.0286 + 40 0.157 + 41 0.614 + 43 0.0429 + 46 0.0429 + + 28 11 4 0 + 0 0.0909 + 20 0.0909 + 28 0.182 + 41 0.636 + + 40 13 1 0 + 47 1 + + 46 2 2 0 + 2 0.5 + 7 0.5 + + 52 2 2 0 + 7 0.5 + 43 0.5 + + 52 4 4 0 + 2 0.25 + 7 0.25 + 41 0.25 + 43 0.25 + +53 99 14 6 + 4 0.0606 + 7 0.0808 + 8 0.0606 + 14 0.0202 + 15 0.0404 + 19 0.0404 + 21 0.0202 + 28 0.141 + 31 0.0202 + 37 0.0202 + 40 0.121 + 41 0.101 + 42 0.101 + 43 0.172 + + 8 3 1 0 + 41 1 + + 11 30 4 0 + 40 0.4 + 41 0.0667 + 42 0.167 + 43 0.367 + + 40 12 4 0 + 7 0.25 + 21 0.0833 + 28 0.583 + 37 0.0833 + + 42 2 1 0 + 15 1 + + 43 11 6 0 + 4 0.273 + 7 0.0909 + 8 0.273 + 14 0.0909 + 19 0.182 + 31 0.0909 + + 47 38 13 5 + 4 0.0789 + 7 0.105 + 8 0.0789 + 14 0.0263 + 15 0.0526 + 19 0.0526 + 21 0.0263 + 28 0.184 + 31 0.0263 + 37 0.0263 + 41 0.132 + 42 0.132 + 43 0.0789 + + 8 3 1 0 + 41 1 + + 11 10 3 0 + 41 0.2 + 42 0.5 + 43 0.3 + + 40 12 4 0 + 7 0.25 + 21 0.0833 + 28 0.583 + 37 0.0833 + + 42 2 1 0 + 15 1 + + 43 11 6 0 + 4 0.273 + 7 0.0909 + 8 0.273 + 14 0.0909 + 19 0.182 + 31 0.0909 + +54 1254 23 14 + 0 0.00159 + 2 0.00478 + 3 0.0271 + 4 0.00399 + 6 0.00159 + 7 0.112 + 8 0.0478 + 13 0.386 + 14 0.0447 + 15 0.121 + 18 0.00478 + 26 0.00638 + 29 0.00159 + 30 0.00319 + 31 0.00159 + 34 0.000797 + 40 0.00558 + 41 0.203 + 42 0.00159 + 43 0.00319 + 44 0.00239 + 45 0.00159 + 46 0.0136 + + 3 35 5 1 + 7 0.0286 + 13 0.257 + 15 0.0571 + 41 0.629 + 45 0.0286 + + 41 11 1 0 + 41 1 + + 4 4 1 0 + 8 1 + + 8 6 3 0 + 7 0.167 + 13 0.667 + 42 0.167 + + 13 18 4 0 + 7 0.722 + 26 0.167 + 40 0.0556 + 46 0.0556 + + 14 2 2 0 + 2 0.5 + 34 0.5 + + 15 371 10 3 + 3 0.062 + 4 0.0108 + 6 0.00539 + 7 0.299 + 8 0.0027 + 13 0.0108 + 26 0.0135 + 40 0.0027 + 41 0.59 + 43 0.0027 + + 15 29 4 0 + 7 0.897 + 13 0.0345 + 26 0.0345 + 41 0.0345 + + 41 232 4 0 + 3 0.0431 + 8 0.00431 + 13 0.0129 + 41 0.94 + + 47 105 7 0 + 3 0.124 + 4 0.0381 + 6 0.019 + 7 0.762 + 26 0.0381 + 40 0.00952 + 43 0.00952 + + 16 4 1 0 + 7 1 + + 40 1 1 0 + 43 1 + + 41 237 7 3 + 2 0.00844 + 3 0.0464 + 8 0.097 + 13 0.751 + 14 0.0717 + 15 0.0169 + 30 0.00844 + + 3 22 2 0 + 3 0.5 + 13 0.5 + + 15 213 6 0 + 2 0.00469 + 8 0.108 + 13 0.779 + 14 0.0798 + 15 0.0188 + 30 0.00939 + + 54 1 1 0 + 2 1 + + 47 411 18 8 + 0 0.00243 + 2 0.00487 + 7 0.0073 + 8 0.0681 + 13 0.589 + 14 0.0681 + 15 0.182 + 18 0.0073 + 29 0.00243 + 30 0.00487 + 31 0.00243 + 40 0.0073 + 41 0.0219 + 42 0.00243 + 43 0.00487 + 44 0.00243 + 45 0.00243 + 46 0.0195 + + 3 12 3 0 + 13 0.75 + 15 0.167 + 45 0.0833 + + 8 5 2 0 + 13 0.8 + 42 0.2 + + 13 1 1 0 + 40 1 + + 14 1 1 0 + 2 1 + + 15 15 5 0 + 7 0.2 + 8 0.0667 + 13 0.267 + 41 0.4 + 43 0.0667 + + 40 1 1 0 + 43 1 + + 41 225 6 0 + 2 0.00444 + 8 0.102 + 13 0.791 + 14 0.0756 + 15 0.0178 + 30 0.00889 + + 57 143 12 0 + 0 0.00699 + 8 0.021 + 13 0.294 + 14 0.0769 + 15 0.476 + 18 0.021 + 29 0.00699 + 31 0.00699 + 40 0.014 + 41 0.021 + 44 0.00699 + 46 0.049 + + 54 7 5 0 + 2 0.143 + 7 0.429 + 13 0.143 + 41 0.143 + 44 0.143 + + 55 8 5 0 + 4 0.125 + 7 0.375 + 13 0.25 + 15 0.125 + 41 0.125 + + 57 145 13 2 + 0 0.0069 + 7 0.0069 + 8 0.0207 + 13 0.29 + 14 0.0759 + 15 0.476 + 18 0.0207 + 29 0.0069 + 31 0.0069 + 40 0.0138 + 41 0.0207 + 44 0.0069 + 46 0.0483 + + 13 16 6 0 + 8 0.0625 + 13 0.312 + 14 0.0625 + 15 0.25 + 41 0.0625 + 46 0.25 + + 55 3 3 0 + 7 0.333 + 8 0.333 + 46 0.333 + + 64 1 1 0 + 46 1 + +55 743201 48 64 + 0 0.0725 + 1 0.000324 + 2 0.0381 + 3 0.0109 + 4 0.0192 + 5 9.28e-05 + 6 8.48e-05 + 7 0.218 + 8 0.0157 + 9 0.00101 + 10 0.000679 + 11 2.69e-06 + 12 0.0255 + 13 0.0155 + 14 0.00484 + 15 0.0115 + 16 0.000159 + 17 3.5e-05 + 18 0.000148 + 19 0.00383 + 20 0.000667 + 21 0.0224 + 22 0.00163 + 23 0.000167 + 24 0.000495 + 25 3.23e-05 + 26 0.0314 + 27 2.69e-06 + 28 0.00194 + 29 0.0528 + 30 0.00873 + 31 0.013 + 32 0.0128 + 33 0.0187 + 34 0.0103 + 35 0.00461 + 36 0.000354 + 37 0.00247 + 38 2.96e-05 + 39 0.00155 + 40 0.175 + 41 0.167 + 42 0.0181 + 43 0.00332 + 44 0.00367 + 45 0.00252 + 46 0.00333 + 47 0.00429 + + 0 57 13 3 + 0 0.0175 + 7 0.123 + 8 0.0877 + 13 0.0351 + 15 0.0175 + 21 0.246 + 23 0.175 + 29 0.105 + 30 0.0877 + 31 0.0526 + 41 0.0175 + 43 0.0175 + 45 0.0175 + + 13 25 7 0 + 7 0.08 + 8 0.16 + 13 0.04 + 21 0.2 + 23 0.4 + 30 0.08 + 45 0.04 + + 15 26 9 0 + 7 0.154 + 8 0.0385 + 13 0.0385 + 15 0.0385 + 21 0.346 + 29 0.231 + 30 0.0385 + 31 0.0769 + 41 0.0385 + + 19 3 3 0 + 0 0.333 + 7 0.333 + 30 0.333 + + 1 3 2 0 + 26 0.333 + 40 0.667 + + 2 6940 35 14 + 0 0.000144 + 2 0.000144 + 3 0.104 + 4 0.195 + 6 0.000144 + 7 0.0062 + 8 0.168 + 9 0.0107 + 10 0.00072 + 13 0.114 + 14 0.0501 + 15 0.186 + 16 0.00202 + 17 0.00101 + 19 0.00187 + 20 0.0399 + 21 0.0278 + 22 0.000576 + 23 0.000144 + 26 0.000432 + 28 0.000865 + 29 0.000576 + 30 0.0098 + 31 0.00548 + 33 0.00101 + 34 0.000144 + 35 0.00115 + 36 0.000144 + 37 0.000432 + 38 0.000288 + 39 0.0588 + 41 0.00346 + 42 0.000432 + 44 0.000576 + 45 0.00749 + + 3 18 3 0 + 3 0.889 + 7 0.0556 + 21 0.0556 + + 13 15 7 0 + 3 0.133 + 4 0.0667 + 8 0.2 + 21 0.267 + 28 0.133 + 30 0.133 + 33 0.0667 + + 14 6 2 0 + 30 0.167 + 33 0.833 + + 15 3 2 0 + 15 0.667 + 21 0.333 + + 41 1384 25 0 + 3 0.318 + 4 0.103 + 7 0.0224 + 8 0.0412 + 9 0.00939 + 10 0.00145 + 13 0.0549 + 14 0.0253 + 15 0.091 + 16 0.000723 + 19 0.000723 + 20 0.0065 + 21 0.0571 + 22 0.00145 + 23 0.000723 + 26 0.000723 + 28 0.000723 + 29 0.000723 + 30 0.00361 + 31 0.00289 + 34 0.000723 + 35 0.00217 + 39 0.249 + 41 0.00145 + 45 0.00434 + + 42 77 15 0 + 3 0.0649 + 4 0.156 + 8 0.0779 + 9 0.026 + 13 0.0649 + 14 0.0519 + 15 0.286 + 17 0.013 + 21 0.117 + 28 0.013 + 36 0.013 + 39 0.0519 + 41 0.039 + 44 0.013 + 45 0.013 + + 45 5 3 0 + 4 0.6 + 14 0.2 + 20 0.2 + + 46 35 7 0 + 4 0.143 + 8 0.143 + 13 0.0571 + 21 0.0286 + 22 0.0286 + 31 0.0286 + 45 0.571 + + 47 1 1 0 + 0 1 + + 55 5370 31 0 + 2 0.000186 + 3 0.0477 + 4 0.221 + 6 0.000186 + 7 0.00186 + 8 0.204 + 9 0.011 + 10 0.000559 + 13 0.131 + 14 0.0572 + 15 0.212 + 16 0.00242 + 17 0.00112 + 19 0.00223 + 20 0.0497 + 21 0.0177 + 22 0.000186 + 26 0.000372 + 28 0.000372 + 29 0.000559 + 30 0.0101 + 31 0.00615 + 33 0.000186 + 35 0.000931 + 37 0.000186 + 38 0.000372 + 39 0.0112 + 41 0.00354 + 42 0.000559 + 44 0.000559 + 45 0.00447 + + 57 4 3 0 + 7 0.25 + 13 0.5 + 21 0.25 + + 58 6 6 0 + 4 0.167 + 8 0.167 + 15 0.167 + 21 0.167 + 30 0.167 + 45 0.167 + + 62 6 2 0 + 4 0.167 + 30 0.833 + + 64 3 2 0 + 4 0.333 + 37 0.667 + + 3 8212 38 21 + 0 0.0178 + 2 0.0314 + 3 0.00499 + 4 0.0933 + 6 0.000122 + 7 0.167 + 8 0.00402 + 9 0.00244 + 10 0.000365 + 12 0.00706 + 13 0.00426 + 14 0.00146 + 15 0.00402 + 19 0.00231 + 20 0.000244 + 21 0.0108 + 22 0.000487 + 23 0.000122 + 25 0.000122 + 26 0.0899 + 28 0.000122 + 29 0.0141 + 30 0.00329 + 31 0.00548 + 32 0.0011 + 33 0.00329 + 34 0.00256 + 35 0.000852 + 37 0.00317 + 39 0.000122 + 40 0.2 + 41 0.278 + 42 0.0226 + 43 0.0167 + 44 0.0017 + 45 0.00134 + 46 0.000974 + 47 0.00195 + + 2 92 17 0 + 0 0.0326 + 2 0.0326 + 4 0.0109 + 7 0.0652 + 8 0.0109 + 12 0.0109 + 21 0.0109 + 26 0.0109 + 31 0.0109 + 33 0.0109 + 34 0.0109 + 40 0.304 + 41 0.391 + 42 0.0217 + 43 0.0217 + 44 0.0217 + 45 0.0217 + + 3 254 17 0 + 0 0.00787 + 2 0.0197 + 4 0.0276 + 7 0.217 + 8 0.00394 + 9 0.00394 + 12 0.0118 + 13 0.00787 + 14 0.00394 + 15 0.0354 + 26 0.287 + 32 0.00394 + 40 0.201 + 41 0.126 + 42 0.0236 + 43 0.0118 + 47 0.00787 + + 4 159 24 0 + 0 0.164 + 2 0.0377 + 4 0.00629 + 7 0.195 + 8 0.00629 + 10 0.0126 + 12 0.044 + 13 0.0126 + 14 0.00629 + 15 0.00629 + 19 0.00629 + 21 0.044 + 23 0.00629 + 26 0.0252 + 29 0.0314 + 31 0.0189 + 32 0.00629 + 33 0.00629 + 34 0.0126 + 35 0.0126 + 40 0.164 + 41 0.151 + 42 0.0126 + 45 0.0126 + + 7 12 7 0 + 3 0.0833 + 4 0.25 + 7 0.25 + 14 0.0833 + 21 0.0833 + 40 0.0833 + 41 0.167 + + 8 155 14 0 + 0 0.071 + 2 0.0516 + 7 0.116 + 12 0.00645 + 14 0.00645 + 19 0.0129 + 26 0.0323 + 31 0.0194 + 33 0.00645 + 34 0.00645 + 40 0.374 + 41 0.252 + 42 0.0387 + 47 0.00645 + + 9 3 2 0 + 33 0.667 + 34 0.333 + + 10 1 1 0 + 8 1 + + 13 164 20 0 + 0 0.0366 + 2 0.0549 + 4 0.0061 + 7 0.171 + 8 0.0061 + 12 0.0061 + 13 0.0061 + 14 0.0122 + 19 0.0061 + 26 0.0305 + 29 0.0061 + 30 0.0061 + 32 0.0122 + 33 0.0427 + 34 0.0061 + 40 0.14 + 41 0.378 + 42 0.0488 + 43 0.0122 + 46 0.0122 + + 14 12 7 0 + 2 0.167 + 3 0.167 + 7 0.0833 + 26 0.0833 + 30 0.0833 + 40 0.167 + 41 0.25 + + 15 1421 30 0 + 0 0.019 + 2 0.0394 + 3 0.000704 + 4 0.00281 + 7 0.0739 + 8 0.00141 + 9 0.000704 + 12 0.00563 + 13 0.00141 + 15 0.00422 + 19 0.00141 + 20 0.00141 + 21 0.00281 + 26 0.0387 + 28 0.000704 + 29 0.031 + 30 0.00211 + 31 0.00493 + 32 0.000704 + 33 0.00211 + 34 0.000704 + 37 0.00352 + 39 0.000704 + 40 0.251 + 41 0.481 + 42 0.00844 + 43 0.0169 + 44 0.00141 + 45 0.000704 + 47 0.000704 + + 20 1 1 0 + 30 1 + + 21 31 11 0 + 0 0.0323 + 2 0.0323 + 4 0.0323 + 7 0.484 + 14 0.0323 + 21 0.0323 + 26 0.0323 + 29 0.0645 + 37 0.0645 + 40 0.0968 + 41 0.0968 + + 29 1 1 0 + 14 1 + + 31 2 2 0 + 0 0.5 + 26 0.5 + + 38 13 6 0 + 4 0.0769 + 7 0.0769 + 40 0.231 + 41 0.154 + 42 0.0769 + 44 0.385 + + 39 1781 28 0 + 0 0.000561 + 2 0.0247 + 3 0.0202 + 4 0.396 + 6 0.000561 + 7 0.14 + 8 0.0101 + 9 0.000561 + 12 0.000561 + 13 0.0112 + 15 0.00225 + 19 0.00168 + 21 0.00786 + 22 0.00112 + 26 0.0415 + 29 0.000561 + 30 0.00168 + 31 0.00786 + 33 0.000561 + 34 0.00225 + 35 0.000561 + 37 0.00112 + 40 0.12 + 41 0.149 + 42 0.0118 + 43 0.0444 + 44 0.00112 + 47 0.000561 + + 41 320 10 0 + 2 0.025 + 7 0.00313 + 13 0.00313 + 25 0.00313 + 31 0.00313 + 40 0.172 + 41 0.669 + 42 0.0719 + 43 0.0188 + 47 0.0312 + + 45 3 1 0 + 46 1 + + 47 3753 32 0 + 0 0.0181 + 2 0.0306 + 3 0.000266 + 4 0.0107 + 7 0.227 + 8 0.00213 + 9 0.00453 + 10 0.000266 + 12 0.00959 + 13 0.00187 + 14 0.000799 + 15 0.00346 + 19 0.00266 + 21 0.016 + 22 0.000533 + 26 0.137 + 29 0.0168 + 30 0.0048 + 31 0.00426 + 32 0.00107 + 33 0.00293 + 34 0.00266 + 35 0.00107 + 37 0.00453 + 40 0.217 + 41 0.242 + 42 0.028 + 43 0.00533 + 44 0.000799 + 45 0.00133 + 46 0.000799 + 47 0.000266 + + 55 8 4 0 + 14 0.125 + 40 0.375 + 41 0.375 + 45 0.125 + + 60 6 5 0 + 2 0.167 + 21 0.167 + 26 0.167 + 40 0.333 + 41 0.167 + + 4 2568 37 12 + 0 0.247 + 1 0.000779 + 2 0.00857 + 3 0.00273 + 4 0.00584 + 7 0.274 + 8 0.00935 + 9 0.000389 + 10 0.000389 + 12 0.0666 + 13 0.00701 + 14 0.00117 + 15 0.00156 + 18 0.000779 + 19 0.00857 + 21 0.0238 + 22 0.000389 + 24 0.00195 + 26 0.00701 + 28 0.00389 + 29 0.0269 + 30 0.00701 + 31 0.0245 + 32 0.0218 + 33 0.0592 + 34 0.00584 + 35 0.0253 + 37 0.000389 + 38 0.000779 + 39 0.0343 + 40 0.0401 + 41 0.0666 + 42 0.0101 + 44 0.00117 + 45 0.00117 + 46 0.00117 + 47 0.00195 + + 2 6 1 0 + 7 1 + + 3 4 2 0 + 7 0.5 + 41 0.5 + + 4 9 6 0 + 0 0.111 + 7 0.111 + 12 0.111 + 33 0.222 + 35 0.111 + 41 0.333 + + 7 1 1 0 + 19 1 + + 8 9 4 0 + 7 0.556 + 12 0.111 + 26 0.111 + 29 0.222 + + 13 3 2 0 + 4 0.333 + 7 0.667 + + 15 3 2 0 + 8 0.667 + 42 0.333 + + 17 25 10 0 + 0 0.24 + 2 0.04 + 7 0.08 + 29 0.04 + 30 0.04 + 31 0.04 + 33 0.12 + 35 0.04 + 40 0.12 + 41 0.24 + + 19 8 7 0 + 12 0.125 + 24 0.125 + 29 0.25 + 32 0.125 + 33 0.125 + 40 0.125 + 41 0.125 + + 21 42 9 0 + 0 0.0476 + 7 0.571 + 29 0.0238 + 31 0.0714 + 35 0.0238 + 40 0.143 + 41 0.0238 + 42 0.0714 + 46 0.0238 + + 28 1 1 0 + 8 1 + + 60 3 3 0 + 7 0.333 + 38 0.333 + 40 0.333 + + 5 861 10 0 + 0 0.861 + 4 0.00232 + 12 0.0848 + 18 0.0128 + 19 0.00116 + 21 0.0244 + 26 0.00116 + 33 0.00697 + 35 0.00116 + 41 0.00465 + + 6 75 17 7 + 0 0.0533 + 2 0.0267 + 6 0.107 + 7 0.08 + 8 0.0133 + 12 0.0267 + 26 0.0533 + 31 0.0133 + 33 0.0533 + 39 0.0133 + 40 0.24 + 41 0.173 + 42 0.0267 + 43 0.0133 + 44 0.0267 + 45 0.0133 + 46 0.0667 + + 4 8 5 0 + 7 0.125 + 33 0.5 + 40 0.125 + 41 0.125 + 45 0.125 + + 6 17 6 0 + 6 0.176 + 7 0.235 + 40 0.118 + 41 0.235 + 43 0.0588 + 46 0.176 + + 8 5 4 0 + 0 0.2 + 6 0.4 + 26 0.2 + 44 0.2 + + 41 5 4 0 + 39 0.2 + 40 0.2 + 41 0.2 + 42 0.4 + + 43 1 1 0 + 8 1 + + 45 4 3 0 + 6 0.5 + 40 0.25 + 46 0.25 + + 47 31 9 0 + 0 0.0645 + 2 0.0645 + 12 0.0645 + 26 0.0968 + 31 0.0323 + 40 0.419 + 41 0.194 + 44 0.0323 + 46 0.0323 + + 7 103 24 7 + 0 0.117 + 2 0.00971 + 3 0.0194 + 4 0.117 + 5 0.00971 + 7 0.175 + 8 0.0291 + 12 0.0291 + 13 0.0583 + 14 0.00971 + 15 0.0194 + 18 0.0194 + 19 0.0291 + 21 0.0291 + 22 0.00971 + 24 0.00971 + 26 0.0194 + 29 0.00971 + 31 0.0485 + 33 0.0291 + 39 0.0194 + 40 0.0874 + 41 0.0874 + 47 0.00971 + + 8 2 2 0 + 7 0.5 + 15 0.5 + + 13 8 6 0 + 7 0.125 + 26 0.125 + 33 0.125 + 40 0.375 + 41 0.125 + 47 0.125 + + 21 9 4 0 + 4 0.444 + 8 0.222 + 13 0.222 + 14 0.111 + + 41 2 2 0 + 13 0.5 + 21 0.5 + + 47 62 20 0 + 0 0.177 + 2 0.0161 + 4 0.0484 + 5 0.0161 + 7 0.177 + 8 0.0161 + 12 0.0484 + 15 0.0161 + 18 0.0323 + 19 0.0484 + 21 0.0161 + 22 0.0161 + 24 0.0161 + 26 0.0161 + 29 0.0161 + 31 0.0806 + 33 0.0323 + 39 0.0323 + 40 0.0484 + 41 0.129 + + 55 10 4 0 + 3 0.1 + 4 0.5 + 13 0.3 + 40 0.1 + + 60 4 1 0 + 7 1 + + 8 1338 39 20 + 0 0.059 + 1 0.000747 + 2 0.0329 + 3 0.00673 + 4 0.0112 + 6 0.00374 + 7 0.361 + 8 0.00897 + 9 0.00747 + 10 0.00224 + 12 0.0112 + 13 0.0142 + 14 0.00673 + 15 0.00598 + 19 0.00299 + 21 0.0172 + 22 0.00299 + 24 0.000747 + 26 0.0471 + 27 0.000747 + 28 0.00374 + 29 0.0262 + 30 0.0172 + 31 0.00523 + 32 0.0105 + 33 0.00972 + 34 0.00224 + 35 0.00299 + 37 0.000747 + 38 0.00149 + 39 0.0493 + 40 0.116 + 41 0.116 + 42 0.0179 + 43 0.00448 + 44 0.00448 + 45 0.00374 + 46 0.00374 + 47 0.000747 + + 2 12 5 0 + 0 0.0833 + 7 0.25 + 14 0.167 + 40 0.333 + 41 0.167 + + 3 4 3 0 + 2 0.25 + 9 0.5 + 40 0.25 + + 4 482 34 0 + 0 0.0622 + 2 0.0456 + 3 0.0124 + 4 0.0187 + 6 0.00207 + 7 0.255 + 8 0.0104 + 9 0.0083 + 10 0.00622 + 12 0.0124 + 13 0.0104 + 14 0.00415 + 15 0.00415 + 19 0.00415 + 21 0.0187 + 22 0.00415 + 24 0.00207 + 26 0.0539 + 27 0.00207 + 28 0.00622 + 29 0.0104 + 30 0.0166 + 32 0.00622 + 33 0.0166 + 34 0.00207 + 35 0.00415 + 37 0.00207 + 38 0.00415 + 39 0.135 + 40 0.133 + 41 0.0996 + 42 0.0207 + 44 0.00207 + 45 0.00415 + + 7 4 4 0 + 7 0.25 + 12 0.25 + 21 0.25 + 26 0.25 + + 8 31 13 0 + 1 0.0323 + 7 0.226 + 14 0.0323 + 15 0.0323 + 21 0.0323 + 22 0.0323 + 26 0.0323 + 29 0.0645 + 33 0.0645 + 35 0.0323 + 40 0.161 + 41 0.226 + 44 0.0323 + + 13 49 12 0 + 0 0.0816 + 2 0.0408 + 4 0.0204 + 7 0.327 + 12 0.0612 + 14 0.0204 + 29 0.0204 + 30 0.0204 + 40 0.163 + 41 0.204 + 42 0.0204 + 46 0.0204 + + 14 11 5 0 + 2 0.0909 + 7 0.364 + 40 0.182 + 41 0.273 + 42 0.0909 + + 15 12 7 0 + 2 0.0833 + 7 0.25 + 22 0.0833 + 26 0.0833 + 29 0.333 + 40 0.0833 + 42 0.0833 + + 20 57 10 0 + 2 0.0526 + 7 0.14 + 13 0.0351 + 15 0.0175 + 21 0.0351 + 26 0.0351 + 29 0.0175 + 33 0.0175 + 40 0.368 + 41 0.281 + + 21 63 11 0 + 0 0.0635 + 2 0.0159 + 7 0.603 + 19 0.0159 + 21 0.0159 + 26 0.111 + 32 0.0159 + 40 0.0794 + 41 0.0476 + 44 0.0159 + 46 0.0159 + + 22 2 2 0 + 28 0.5 + 40 0.5 + + 23 10 4 0 + 0 0.1 + 7 0.5 + 40 0.3 + 46 0.1 + + 30 2 2 0 + 13 0.5 + 41 0.5 + + 42 2 2 0 + 14 0.5 + 26 0.5 + + 45 2 2 0 + 19 0.5 + 46 0.5 + + 47 537 30 0 + 0 0.0689 + 2 0.0149 + 3 0.00186 + 4 0.00745 + 6 0.00559 + 7 0.492 + 8 0.00745 + 9 0.00745 + 12 0.00745 + 13 0.0168 + 14 0.00372 + 15 0.00745 + 21 0.0168 + 26 0.0447 + 28 0.00186 + 29 0.0391 + 30 0.0205 + 31 0.00931 + 32 0.0168 + 33 0.00372 + 34 0.00372 + 35 0.00186 + 39 0.00186 + 40 0.0596 + 41 0.102 + 42 0.0186 + 43 0.00931 + 44 0.00559 + 46 0.00186 + 47 0.00186 + + 48 13 6 0 + 0 0.0769 + 2 0.0769 + 7 0.0769 + 31 0.0769 + 40 0.0769 + 41 0.615 + + 54 1 1 0 + 31 1 + + 55 27 14 0 + 0 0.037 + 2 0.0741 + 3 0.0741 + 4 0.037 + 7 0.185 + 8 0.111 + 13 0.0741 + 29 0.037 + 30 0.0741 + 32 0.037 + 40 0.0741 + 41 0.037 + 43 0.037 + 45 0.111 + + 60 8 6 0 + 2 0.25 + 6 0.125 + 7 0.125 + 12 0.125 + 40 0.25 + 41 0.125 + + 9 236 14 6 + 0 0.0212 + 2 0.00847 + 4 0.00847 + 7 0.619 + 12 0.00424 + 21 0.0254 + 26 0.0763 + 29 0.00424 + 30 0.00424 + 31 0.0127 + 40 0.114 + 41 0.089 + 42 0.00847 + 44 0.00424 + + 4 15 5 0 + 4 0.0667 + 7 0.6 + 31 0.0667 + 40 0.133 + 41 0.133 + + 13 7 5 0 + 0 0.143 + 7 0.429 + 12 0.143 + 40 0.143 + 41 0.143 + + 14 2 2 0 + 0 0.5 + 2 0.5 + + 21 19 4 0 + 7 0.737 + 40 0.158 + 41 0.0526 + 42 0.0526 + + 47 160 11 0 + 0 0.0125 + 2 0.00625 + 7 0.606 + 21 0.0375 + 26 0.106 + 29 0.00625 + 30 0.00625 + 40 0.112 + 41 0.0938 + 42 0.00625 + 44 0.00625 + + 55 9 4 0 + 4 0.111 + 7 0.667 + 31 0.111 + 41 0.111 + + 10 370 23 6 + 0 0.0568 + 2 0.0027 + 4 0.00811 + 5 0.0027 + 7 0.705 + 8 0.00541 + 12 0.00541 + 13 0.00811 + 19 0.00811 + 21 0.0162 + 26 0.0135 + 28 0.0027 + 29 0.0027 + 30 0.00811 + 31 0.0027 + 32 0.0324 + 37 0.0027 + 40 0.0459 + 41 0.0486 + 42 0.0135 + 44 0.0027 + 45 0.0027 + 46 0.0027 + + 2 2 2 0 + 26 0.5 + 46 0.5 + + 4 125 17 0 + 0 0.064 + 2 0.008 + 4 0.024 + 5 0.008 + 7 0.552 + 8 0.016 + 12 0.008 + 13 0.024 + 19 0.016 + 21 0.04 + 26 0.016 + 30 0.008 + 32 0.016 + 40 0.112 + 41 0.056 + 42 0.024 + 44 0.008 + + 20 10 6 0 + 7 0.3 + 26 0.2 + 37 0.1 + 40 0.1 + 41 0.2 + 45 0.1 + + 21 5 2 0 + 7 0.4 + 41 0.6 + + 47 216 12 0 + 0 0.0602 + 7 0.838 + 12 0.00463 + 19 0.00463 + 21 0.00463 + 28 0.00463 + 29 0.00463 + 30 0.00926 + 31 0.00463 + 32 0.0463 + 40 0.00926 + 41 0.00926 + + 55 6 3 0 + 7 0.333 + 41 0.5 + 42 0.167 + + 12 3 3 0 + 40 0.333 + 41 0.333 + 43 0.333 + + 13 98717 46 40 + 0 0.0625 + 1 0.000365 + 2 0.0342 + 3 0.00661 + 4 0.0085 + 5 0.000152 + 6 6.08e-05 + 7 0.33 + 8 0.00775 + 9 0.00124 + 10 5.06e-05 + 12 0.0236 + 13 0.004 + 14 0.000952 + 15 0.00478 + 16 3.04e-05 + 17 2.03e-05 + 18 2.03e-05 + 19 0.00561 + 20 0.000274 + 21 0.0242 + 22 0.00352 + 23 0.000111 + 24 0.000537 + 25 4.05e-05 + 26 0.051 + 28 0.00134 + 29 0.0429 + 30 0.00867 + 31 0.0138 + 32 0.00181 + 33 0.0202 + 34 0.0105 + 35 0.00329 + 36 0.000243 + 37 0.00321 + 38 3.04e-05 + 39 0.000263 + 40 0.146 + 41 0.15 + 42 0.015 + 43 0.00203 + 44 0.002 + 45 0.00284 + 46 0.00573 + 47 0.000669 + + 0 3 3 0 + 3 0.333 + 7 0.333 + 41 0.333 + + 2 783 25 0 + 0 0.0396 + 2 0.0179 + 4 0.00383 + 6 0.00128 + 7 0.298 + 8 0.00383 + 12 0.0204 + 21 0.0153 + 26 0.0383 + 29 0.014 + 30 0.00511 + 31 0.0153 + 32 0.014 + 33 0.0115 + 34 0.0102 + 35 0.00255 + 37 0.00383 + 40 0.25 + 41 0.183 + 42 0.0307 + 43 0.00383 + 44 0.00255 + 45 0.00511 + 46 0.00894 + 47 0.00128 + + 3 4034 35 0 + 0 0.0151 + 1 0.000496 + 2 0.0288 + 3 0.0654 + 4 0.0206 + 7 0.335 + 8 0.0107 + 9 0.00868 + 12 0.00645 + 13 0.00372 + 14 0.000496 + 15 0.00843 + 19 0.00347 + 20 0.000744 + 21 0.0121 + 22 0.00198 + 24 0.000496 + 26 0.128 + 28 0.000496 + 29 0.0129 + 30 0.00397 + 31 0.00744 + 32 0.000248 + 33 0.00645 + 34 0.00347 + 35 0.00198 + 37 0.00223 + 40 0.143 + 41 0.127 + 42 0.0273 + 43 0.00322 + 44 0.00545 + 45 0.00223 + 46 0.00149 + 47 0.000992 + + 4 30713 45 0 + 0 0.078 + 1 0.000456 + 2 0.022 + 3 0.00156 + 4 0.00834 + 5 0.000195 + 6 3.26e-05 + 7 0.359 + 8 0.00703 + 9 0.000977 + 10 9.77e-05 + 12 0.0316 + 13 0.00371 + 14 0.00107 + 15 0.00391 + 16 6.51e-05 + 18 6.51e-05 + 19 0.00834 + 20 0.000456 + 21 0.0346 + 22 0.00866 + 23 0.000195 + 24 0.000912 + 25 3.26e-05 + 26 0.0489 + 28 0.00166 + 29 0.0524 + 30 0.00853 + 31 0.0151 + 32 0.00147 + 33 0.0292 + 34 0.013 + 35 0.00293 + 36 0.000293 + 37 0.00414 + 38 3.26e-05 + 39 0.000521 + 40 0.108 + 41 0.125 + 42 0.00856 + 43 0.00143 + 44 0.000814 + 45 0.00378 + 46 0.00199 + 47 0.000358 + + 6 8 6 0 + 0 0.125 + 2 0.125 + 7 0.25 + 40 0.125 + 41 0.125 + 42 0.25 + + 7 79 12 0 + 0 0.0759 + 2 0.038 + 7 0.152 + 12 0.0253 + 15 0.0127 + 21 0.0253 + 26 0.0253 + 30 0.0253 + 31 0.0127 + 33 0.0127 + 40 0.392 + 41 0.203 + + 8 20150 43 0 + 0 0.0496 + 1 0.000397 + 2 0.0359 + 3 0.00179 + 4 0.00794 + 5 0.000199 + 6 4.96e-05 + 7 0.34 + 8 0.00591 + 9 0.000397 + 10 9.93e-05 + 12 0.0205 + 13 0.00437 + 14 0.000794 + 15 0.00536 + 16 4.96e-05 + 19 0.00541 + 20 0.000149 + 21 0.0172 + 22 0.000844 + 23 4.96e-05 + 24 0.000248 + 25 4.96e-05 + 26 0.0461 + 28 0.00124 + 29 0.032 + 30 0.0103 + 31 0.0154 + 32 0.000943 + 33 0.0144 + 34 0.00983 + 35 0.00407 + 36 0.000248 + 37 0.00323 + 39 9.93e-05 + 40 0.175 + 41 0.158 + 42 0.0168 + 43 0.00159 + 44 0.00199 + 45 0.00149 + 46 0.00928 + 47 0.000596 + + 9 517 25 0 + 0 0.0406 + 2 0.0426 + 4 0.00387 + 7 0.453 + 8 0.0058 + 12 0.0174 + 13 0.00193 + 15 0.00193 + 17 0.00193 + 19 0.00387 + 21 0.0193 + 26 0.0754 + 29 0.00774 + 30 0.0155 + 31 0.0058 + 32 0.0058 + 33 0.0193 + 34 0.00387 + 40 0.128 + 41 0.112 + 42 0.0251 + 43 0.00193 + 44 0.00193 + 45 0.00193 + 46 0.00387 + + 10 469 25 0 + 0 0.0768 + 2 0.0171 + 4 0.0149 + 7 0.36 + 8 0.0149 + 12 0.0213 + 13 0.00426 + 14 0.00426 + 15 0.0064 + 19 0.0107 + 21 0.032 + 26 0.0597 + 29 0.064 + 30 0.0107 + 31 0.00426 + 32 0.00426 + 33 0.0235 + 35 0.00426 + 37 0.00213 + 39 0.00213 + 40 0.109 + 41 0.134 + 42 0.0149 + 44 0.00213 + 46 0.00213 + + 13 12677 39 0 + 0 0.0652 + 1 0.000473 + 2 0.0461 + 3 0.00252 + 4 0.00529 + 7 0.248 + 8 0.00718 + 9 0.000631 + 12 0.0242 + 13 0.00363 + 14 0.000631 + 15 0.00552 + 17 7.89e-05 + 19 0.00387 + 20 0.000158 + 21 0.0204 + 22 0.000868 + 24 0.000158 + 26 0.0311 + 28 0.00142 + 29 0.0506 + 30 0.00812 + 31 0.0177 + 32 0.00252 + 33 0.02 + 34 0.0165 + 35 0.00371 + 36 0.000473 + 37 0.00331 + 38 7.89e-05 + 39 0.000237 + 40 0.189 + 41 0.186 + 42 0.0185 + 43 0.00174 + 44 0.00268 + 45 0.00316 + 46 0.00702 + 47 0.0011 + + 14 957 30 0 + 0 0.0742 + 1 0.00104 + 2 0.0366 + 3 0.0115 + 4 0.00522 + 7 0.222 + 8 0.00522 + 12 0.023 + 13 0.00209 + 14 0.00104 + 15 0.00522 + 19 0.00313 + 21 0.023 + 24 0.00104 + 26 0.0303 + 29 0.0815 + 30 0.00104 + 31 0.0219 + 32 0.00418 + 33 0.0136 + 34 0.0167 + 35 0.00209 + 37 0.00104 + 40 0.181 + 41 0.203 + 42 0.0167 + 43 0.00104 + 44 0.00522 + 45 0.00418 + 46 0.00313 + + 15 3706 37 0 + 0 0.0815 + 2 0.0364 + 3 0.0054 + 4 0.00729 + 7 0.181 + 8 0.00648 + 9 0.00108 + 12 0.0324 + 13 0.00863 + 14 0.00054 + 15 0.00405 + 19 0.00189 + 20 0.00027 + 21 0.0216 + 22 0.00189 + 23 0.000809 + 24 0.00027 + 26 0.0321 + 28 0.000809 + 29 0.11 + 30 0.00756 + 31 0.0165 + 32 0.0027 + 33 0.0262 + 34 0.0132 + 35 0.0108 + 36 0.000809 + 37 0.00162 + 39 0.00054 + 40 0.174 + 41 0.186 + 42 0.0135 + 43 0.0027 + 44 0.0027 + 45 0.00513 + 46 0.00243 + 47 0.00027 + + 16 73 10 0 + 0 0.0685 + 2 0.0411 + 7 0.219 + 13 0.0137 + 15 0.0411 + 21 0.0548 + 26 0.0822 + 29 0.123 + 40 0.178 + 41 0.178 + + 18 2 2 0 + 2 0.5 + 21 0.5 + + 19 13 2 0 + 7 0.231 + 41 0.769 + + 20 2788 31 0 + 0 0.0897 + 2 0.0308 + 3 0.000717 + 4 0.00825 + 5 0.00108 + 7 0.303 + 8 0.00933 + 12 0.0233 + 13 0.00287 + 14 0.000717 + 15 0.00323 + 19 0.00143 + 21 0.0326 + 22 0.00179 + 24 0.00251 + 26 0.0976 + 28 0.00395 + 29 0.0334 + 30 0.00825 + 31 0.00753 + 32 0.000717 + 33 0.0197 + 34 0.00108 + 37 0.0043 + 39 0.000359 + 40 0.145 + 41 0.142 + 42 0.0169 + 44 0.00215 + 45 0.00251 + 46 0.00359 + + 21 101 20 0 + 0 0.0693 + 2 0.0396 + 4 0.0297 + 7 0.297 + 8 0.0297 + 12 0.0396 + 14 0.0099 + 15 0.0099 + 19 0.0099 + 21 0.0297 + 26 0.0396 + 29 0.0198 + 33 0.0396 + 35 0.0099 + 40 0.0693 + 41 0.208 + 42 0.0099 + 43 0.0099 + 44 0.0198 + 46 0.0099 + + 22 4 3 0 + 7 0.25 + 8 0.25 + 41 0.5 + + 28 6 5 0 + 7 0.167 + 15 0.167 + 26 0.167 + 40 0.333 + 41 0.167 + + 29 9 3 0 + 0 0.111 + 7 0.667 + 40 0.222 + + 30 711 25 0 + 0 0.0394 + 1 0.00141 + 2 0.0338 + 4 0.00422 + 7 0.422 + 8 0.00844 + 9 0.00141 + 12 0.0197 + 13 0.00141 + 15 0.00281 + 19 0.00422 + 21 0.0127 + 26 0.0352 + 29 0.038 + 30 0.00985 + 31 0.0155 + 32 0.00422 + 33 0.0113 + 34 0.00844 + 35 0.00281 + 40 0.148 + 41 0.152 + 42 0.0197 + 45 0.00141 + 46 0.00281 + + 31 547 23 0 + 0 0.0622 + 2 0.0329 + 3 0.00183 + 4 0.00366 + 7 0.419 + 8 0.00183 + 12 0.0347 + 13 0.00183 + 14 0.00183 + 15 0.00183 + 19 0.00366 + 21 0.0165 + 26 0.0548 + 29 0.00548 + 30 0.00914 + 31 0.00548 + 33 0.0219 + 34 0.00366 + 35 0.00548 + 40 0.163 + 41 0.126 + 42 0.0201 + 44 0.00366 + + 34 4 4 0 + 2 0.25 + 7 0.25 + 40 0.25 + 44 0.25 + + 35 2 2 0 + 5 0.5 + 7 0.5 + + 40 6 5 0 + 0 0.167 + 40 0.333 + 42 0.167 + 43 0.167 + 47 0.167 + + 41 22 10 0 + 0 0.0455 + 2 0.0455 + 12 0.0455 + 26 0.0455 + 29 0.136 + 31 0.0455 + 34 0.0455 + 40 0.273 + 41 0.227 + 43 0.0909 + + 42 5 2 0 + 7 0.2 + 40 0.8 + + 43 16 9 0 + 0 0.25 + 7 0.125 + 8 0.0625 + 12 0.0625 + 29 0.0625 + 33 0.0625 + 35 0.0625 + 40 0.125 + 41 0.188 + + 44 11 2 0 + 7 0.182 + 43 0.818 + + 45 138 8 0 + 0 0.0145 + 7 0.188 + 8 0.00725 + 21 0.00725 + 26 0.029 + 40 0.116 + 41 0.0725 + 46 0.565 + + 46 169 21 0 + 0 0.0592 + 2 0.0296 + 4 0.0178 + 7 0.325 + 8 0.00592 + 12 0.0237 + 15 0.00592 + 19 0.0118 + 21 0.0118 + 26 0.0237 + 29 0.0355 + 30 0.0296 + 31 0.0118 + 33 0.0355 + 34 0.0473 + 37 0.00592 + 40 0.148 + 41 0.142 + 42 0.0178 + 44 0.00592 + 45 0.00592 + + 47 13978 39 0 + 0 0.0505 + 1 0.000215 + 2 0.0552 + 3 0.0124 + 4 0.0107 + 6 0.000215 + 7 0.343 + 8 0.0098 + 9 0.00114 + 12 0.0152 + 13 0.00501 + 14 0.00157 + 15 0.00558 + 19 0.00622 + 20 0.000215 + 21 0.022 + 22 0.00172 + 23 7.15e-05 + 24 0.000358 + 25 0.000143 + 26 0.0519 + 28 0.00143 + 29 0.028 + 30 0.00959 + 31 0.01 + 32 0.00272 + 33 0.0132 + 34 0.00637 + 35 0.00265 + 37 0.00286 + 38 7.15e-05 + 40 0.131 + 41 0.166 + 42 0.0189 + 43 0.00365 + 44 0.0015 + 45 0.0015 + 46 0.00651 + 47 0.00136 + + 48 2092 30 0 + 0 0.0344 + 2 0.0191 + 3 0.000956 + 4 0.0086 + 5 0.000478 + 7 0.497 + 8 0.0196 + 12 0.012 + 13 0.00287 + 14 0.000478 + 15 0.00191 + 19 0.00335 + 20 0.000478 + 21 0.00956 + 24 0.000478 + 26 0.0531 + 28 0.000478 + 29 0.0129 + 30 0.0139 + 31 0.0167 + 33 0.0163 + 34 0.00717 + 35 0.000956 + 37 0.00239 + 40 0.132 + 41 0.106 + 42 0.0201 + 44 0.000956 + 45 0.00143 + 46 0.00478 + + 49 17 5 0 + 7 0.529 + 21 0.0588 + 30 0.0588 + 40 0.176 + 41 0.176 + + 54 152 19 0 + 0 0.0658 + 2 0.0263 + 4 0.00658 + 7 0.289 + 12 0.0263 + 13 0.00658 + 14 0.00658 + 15 0.0132 + 19 0.00658 + 21 0.0132 + 26 0.0132 + 29 0.132 + 31 0.00658 + 33 0.0132 + 34 0.0461 + 35 0.0132 + 40 0.158 + 41 0.151 + 45 0.00658 + + 55 2721 34 0 + 0 0.0978 + 1 0.000368 + 2 0.0298 + 3 0.0011 + 4 0.00257 + 7 0.27 + 8 0.00551 + 12 0.0305 + 13 0.00147 + 14 0.000735 + 15 0.00368 + 19 0.000735 + 21 0.0243 + 22 0.0011 + 24 0.000368 + 26 0.0724 + 28 0.000368 + 29 0.0592 + 30 0.00515 + 31 0.00368 + 32 0.00147 + 33 0.0287 + 34 0.00331 + 35 0.00147 + 37 0.00184 + 39 0.000368 + 40 0.166 + 41 0.16 + 42 0.0103 + 43 0.00221 + 44 0.0011 + 45 0.00845 + 46 0.00257 + 47 0.0011 + + 57 1 1 0 + 31 1 + + 58 31 13 0 + 0 0.0968 + 2 0.0323 + 4 0.0323 + 7 0.194 + 13 0.0645 + 21 0.0323 + 26 0.0323 + 29 0.0323 + 31 0.0645 + 33 0.0645 + 40 0.194 + 41 0.129 + 46 0.0323 + + 60 950 25 0 + 0 0.0137 + 2 0.0179 + 3 0.0621 + 4 0.0189 + 7 0.479 + 8 0.0211 + 9 0.0211 + 12 0.00211 + 13 0.00105 + 15 0.00316 + 21 0.0189 + 22 0.00632 + 26 0.0653 + 29 0.0105 + 30 0.00211 + 31 0.0105 + 32 0.00526 + 33 0.00211 + 34 0.00211 + 40 0.132 + 41 0.0705 + 42 0.00947 + 43 0.00421 + 44 0.02 + 46 0.00105 + + 68 43 12 0 + 0 0.0465 + 2 0.0233 + 7 0.186 + 8 0.0233 + 12 0.0233 + 26 0.0233 + 29 0.0465 + 31 0.0465 + 36 0.0233 + 40 0.279 + 41 0.233 + 42 0.0465 + + 14 55733 44 33 + 0 0.0834 + 1 0.000718 + 2 0.044 + 3 0.0017 + 4 0.0176 + 5 8.97e-05 + 7 0.251 + 8 0.0175 + 9 0.001 + 10 3.59e-05 + 12 0.0299 + 13 0.00215 + 14 0.000807 + 15 0.0023 + 16 3.59e-05 + 17 5.38e-05 + 18 3.59e-05 + 19 0.00468 + 20 0.000161 + 21 0.0335 + 22 0.00206 + 23 0.000126 + 24 0.000646 + 25 1.79e-05 + 26 0.0419 + 28 0.00355 + 29 0.0527 + 30 0.0145 + 31 0.0224 + 32 0.0385 + 33 0.00206 + 34 0.0131 + 35 0.00736 + 36 0.000467 + 37 0.00224 + 39 0.000323 + 40 0.144 + 41 0.13 + 42 0.0201 + 43 0.00169 + 44 0.00452 + 45 0.00237 + 46 0.00397 + 47 0.00106 + + 2 903 28 0 + 0 0.0709 + 2 0.0244 + 4 0.00443 + 7 0.199 + 8 0.00443 + 9 0.00221 + 12 0.0321 + 19 0.00554 + 21 0.0377 + 22 0.00221 + 26 0.0255 + 28 0.00111 + 29 0.0532 + 30 0.0166 + 31 0.0233 + 32 0.041 + 33 0.00775 + 34 0.0177 + 35 0.00443 + 36 0.00111 + 37 0.00221 + 40 0.229 + 41 0.142 + 42 0.031 + 43 0.00554 + 45 0.00111 + 46 0.00554 + 47 0.00886 + + 3 4221 37 0 + 0 0.0315 + 2 0.0334 + 4 0.129 + 7 0.211 + 8 0.0339 + 9 0.00379 + 12 0.00782 + 13 0.00355 + 14 0.000237 + 15 0.00498 + 16 0.000237 + 19 0.00498 + 20 0.000237 + 21 0.0576 + 22 0.00426 + 23 0.000237 + 25 0.000237 + 26 0.0431 + 28 0.00118 + 29 0.0206 + 30 0.00805 + 31 0.0199 + 32 0.00877 + 33 0.00142 + 34 0.00332 + 35 0.00284 + 36 0.000474 + 37 0.00118 + 39 0.000711 + 40 0.154 + 41 0.137 + 42 0.0566 + 43 0.00237 + 44 0.00877 + 45 0.000474 + 46 0.00118 + 47 0.00166 + + 4 5302 37 0 + 0 0.151 + 1 0.00132 + 2 0.0228 + 3 0.000566 + 4 0.00622 + 7 0.247 + 8 0.0104 + 9 0.000377 + 12 0.0541 + 13 0.0017 + 14 0.00189 + 15 0.00302 + 17 0.000189 + 19 0.0164 + 20 0.000377 + 21 0.0353 + 22 0.00113 + 23 0.000189 + 24 0.00207 + 26 0.0313 + 28 0.00453 + 29 0.0621 + 30 0.00962 + 31 0.0226 + 32 0.0732 + 33 0.00245 + 34 0.0143 + 35 0.00905 + 36 0.000566 + 37 0.00226 + 40 0.101 + 41 0.0934 + 42 0.0106 + 43 0.000943 + 44 0.0017 + 45 0.00245 + 46 0.00264 + + 6 7 5 0 + 7 0.429 + 26 0.143 + 31 0.143 + 40 0.143 + 44 0.143 + + 8 12828 41 0 + 0 0.075 + 1 0.00039 + 2 0.0472 + 3 0.000468 + 4 0.00834 + 5 7.8e-05 + 7 0.251 + 8 0.0159 + 9 0.000312 + 12 0.0288 + 13 0.00195 + 14 0.00101 + 15 0.0014 + 16 7.8e-05 + 17 7.8e-05 + 18 7.8e-05 + 19 0.00366 + 21 0.0241 + 22 0.00148 + 23 7.8e-05 + 24 0.000156 + 26 0.0391 + 28 0.00226 + 29 0.0366 + 30 0.0132 + 31 0.0214 + 32 0.029 + 33 0.00187 + 34 0.0136 + 35 0.0067 + 36 0.000546 + 37 0.00249 + 39 0.000702 + 40 0.18 + 41 0.153 + 42 0.0216 + 43 0.00164 + 44 0.00639 + 45 0.00226 + 46 0.00514 + 47 0.00156 + + 9 459 25 0 + 0 0.0566 + 1 0.00218 + 2 0.0501 + 4 0.00436 + 7 0.322 + 8 0.00871 + 12 0.0392 + 13 0.00654 + 15 0.00218 + 19 0.00654 + 21 0.0349 + 26 0.0588 + 28 0.00436 + 29 0.0174 + 30 0.0174 + 31 0.0109 + 32 0.0196 + 34 0.0131 + 35 0.00654 + 37 0.00436 + 40 0.15 + 41 0.146 + 42 0.0131 + 44 0.00218 + 46 0.00218 + + 10 269 24 0 + 0 0.126 + 2 0.0112 + 4 0.00372 + 7 0.216 + 8 0.0149 + 12 0.0595 + 13 0.00372 + 19 0.0186 + 21 0.0297 + 24 0.00372 + 26 0.0335 + 28 0.00372 + 29 0.0335 + 30 0.0297 + 31 0.0112 + 32 0.1 + 33 0.00743 + 34 0.00372 + 35 0.00372 + 40 0.0818 + 41 0.167 + 42 0.0186 + 43 0.00372 + 45 0.0149 + + 13 9556 39 0 + 0 0.0876 + 1 0.00115 + 2 0.0643 + 3 0.000837 + 4 0.0068 + 5 0.000105 + 7 0.187 + 8 0.0139 + 9 0.000733 + 12 0.0274 + 13 0.00199 + 14 0.000105 + 15 0.00199 + 18 0.000105 + 19 0.00199 + 20 0.000314 + 21 0.0331 + 22 0.00167 + 23 0.000105 + 24 0.000523 + 26 0.0328 + 28 0.00262 + 29 0.0671 + 30 0.013 + 31 0.0202 + 32 0.0419 + 33 0.0023 + 34 0.0142 + 35 0.0045 + 36 0.000209 + 37 0.00188 + 40 0.173 + 41 0.167 + 42 0.0168 + 43 0.00188 + 44 0.0023 + 45 0.0023 + 46 0.00366 + 47 0.000942 + + 14 538 26 0 + 0 0.0874 + 2 0.0502 + 4 0.00929 + 7 0.18 + 8 0.00929 + 10 0.00186 + 12 0.0297 + 13 0.00558 + 15 0.00186 + 21 0.0335 + 26 0.0372 + 28 0.00186 + 29 0.0967 + 30 0.00558 + 31 0.00929 + 32 0.0409 + 33 0.00372 + 34 0.00929 + 35 0.00558 + 40 0.19 + 41 0.139 + 42 0.0353 + 44 0.00186 + 45 0.00743 + 46 0.00558 + 47 0.00186 + + 15 2001 34 0 + 0 0.125 + 1 0.001 + 2 0.037 + 3 0.006 + 4 0.005 + 7 0.147 + 8 0.013 + 12 0.0335 + 13 0.0005 + 14 0.0015 + 15 0.0045 + 19 0.003 + 21 0.026 + 22 0.003 + 23 0.0005 + 26 0.039 + 28 0.0025 + 29 0.141 + 30 0.0155 + 31 0.015 + 32 0.0465 + 33 0.004 + 34 0.0145 + 35 0.008 + 37 0.0025 + 39 0.0005 + 40 0.14 + 41 0.133 + 42 0.0145 + 43 0.0025 + 44 0.0045 + 45 0.004 + 46 0.003 + 47 0.0015 + + 16 26 9 0 + 0 0.115 + 7 0.0769 + 26 0.115 + 29 0.269 + 32 0.0385 + 40 0.231 + 41 0.0769 + 42 0.0385 + 44 0.0385 + + 19 6 5 0 + 12 0.167 + 21 0.333 + 29 0.167 + 35 0.167 + 40 0.167 + + 20 1519 34 0 + 0 0.107 + 1 0.000658 + 2 0.0434 + 3 0.00132 + 4 0.0105 + 5 0.000658 + 7 0.244 + 8 0.00658 + 9 0.00132 + 12 0.0217 + 13 0.00263 + 14 0.00197 + 15 0.000658 + 19 0.00132 + 21 0.0421 + 22 0.00263 + 23 0.000658 + 24 0.00329 + 26 0.0737 + 28 0.0118 + 29 0.029 + 30 0.00592 + 31 0.0151 + 32 0.0263 + 33 0.00197 + 35 0.00263 + 37 0.00395 + 39 0.000658 + 40 0.185 + 41 0.132 + 42 0.0132 + 43 0.000658 + 45 0.00395 + 46 0.00197 + + 21 38 15 0 + 0 0.0789 + 2 0.0263 + 7 0.316 + 12 0.0263 + 21 0.0263 + 26 0.105 + 29 0.0263 + 30 0.0526 + 31 0.0526 + 32 0.0526 + 35 0.0526 + 40 0.0263 + 41 0.105 + 42 0.0263 + 46 0.0263 + + 23 2 1 0 + 21 1 + + 28 16 6 0 + 7 0.562 + 12 0.125 + 26 0.0625 + 28 0.125 + 32 0.0625 + 41 0.0625 + + 29 9 5 0 + 7 0.444 + 12 0.222 + 15 0.111 + 21 0.111 + 40 0.111 + + 30 480 24 0 + 0 0.0562 + 2 0.0542 + 4 0.00417 + 7 0.296 + 8 0.0104 + 12 0.0229 + 13 0.00208 + 15 0.00417 + 19 0.00417 + 21 0.0208 + 22 0.00208 + 26 0.0312 + 29 0.0521 + 30 0.00625 + 31 0.0146 + 32 0.0229 + 33 0.00208 + 34 0.0104 + 35 0.00417 + 39 0.00208 + 40 0.2 + 41 0.169 + 42 0.00625 + 46 0.00208 + + 31 394 24 0 + 0 0.0558 + 2 0.0508 + 4 0.00761 + 5 0.00254 + 7 0.289 + 8 0.0228 + 12 0.0431 + 19 0.00761 + 21 0.0305 + 26 0.0431 + 29 0.0203 + 30 0.0178 + 31 0.0152 + 32 0.0279 + 33 0.00254 + 34 0.0178 + 35 0.00761 + 40 0.15 + 41 0.142 + 42 0.0127 + 43 0.00254 + 44 0.0203 + 45 0.00508 + 46 0.00508 + + 34 3 2 0 + 7 0.667 + 44 0.333 + + 41 4 4 0 + 7 0.25 + 12 0.25 + 26 0.25 + 41 0.25 + + 42 3 3 0 + 7 0.333 + 40 0.333 + 46 0.333 + + 43 15 7 0 + 0 0.0667 + 2 0.133 + 7 0.0667 + 12 0.133 + 21 0.0667 + 40 0.133 + 41 0.4 + + 44 4 1 0 + 43 1 + + 45 61 6 0 + 0 0.0492 + 7 0.115 + 26 0.0328 + 40 0.148 + 41 0.0984 + 46 0.557 + + 46 98 17 0 + 0 0.0408 + 2 0.051 + 4 0.0102 + 7 0.214 + 8 0.0306 + 21 0.0102 + 26 0.0918 + 29 0.0102 + 30 0.0102 + 31 0.0306 + 32 0.0306 + 34 0.0612 + 35 0.0102 + 36 0.0102 + 40 0.163 + 41 0.173 + 42 0.051 + + 47 13576 41 0 + 0 0.0748 + 1 0.000737 + 2 0.0447 + 3 0.00464 + 4 0.00722 + 5 7.37e-05 + 7 0.329 + 8 0.018 + 9 0.00147 + 10 7.37e-05 + 12 0.0322 + 13 0.0025 + 14 0.000958 + 15 0.00214 + 17 7.37e-05 + 19 0.00412 + 20 0.000221 + 21 0.0351 + 22 0.00258 + 23 7.37e-05 + 24 0.000737 + 26 0.0542 + 28 0.00567 + 29 0.0577 + 30 0.022 + 31 0.0306 + 32 0.0463 + 33 0.00147 + 34 0.0171 + 35 0.0127 + 36 0.000737 + 37 0.00302 + 39 0.000221 + 40 0.0806 + 41 0.0854 + 42 0.0123 + 43 0.00125 + 44 0.00133 + 45 0.00243 + 46 0.00258 + 47 0.00081 + + 48 813 27 0 + 0 0.0652 + 1 0.00123 + 2 0.0271 + 4 0.00738 + 7 0.26 + 8 0.0726 + 9 0.00123 + 12 0.0123 + 15 0.00123 + 19 0.00369 + 21 0.0308 + 26 0.0308 + 28 0.00369 + 29 0.0246 + 30 0.0271 + 31 0.0308 + 32 0.0185 + 33 0.00123 + 34 0.00984 + 35 0.00615 + 40 0.194 + 41 0.143 + 42 0.016 + 43 0.00123 + 44 0.00123 + 45 0.00123 + 46 0.00861 + + 54 11 8 0 + 2 0.0909 + 7 0.0909 + 21 0.0909 + 26 0.0909 + 29 0.182 + 32 0.273 + 34 0.0909 + 40 0.0909 + + 55 1044 28 0 + 0 0.136 + 1 0.000958 + 2 0.0345 + 3 0.000958 + 4 0.00287 + 7 0.221 + 8 0.0125 + 12 0.0354 + 13 0.00192 + 15 0.000958 + 21 0.0172 + 22 0.00287 + 24 0.00192 + 26 0.0489 + 28 0.00479 + 29 0.0766 + 30 0.00958 + 31 0.00287 + 32 0.0326 + 33 0.00287 + 34 0.000958 + 35 0.000958 + 37 0.00192 + 40 0.199 + 41 0.126 + 42 0.0153 + 45 0.0067 + 46 0.000958 + + 58 20 11 0 + 0 0.1 + 1 0.05 + 2 0.1 + 7 0.15 + 8 0.05 + 21 0.05 + 31 0.05 + 40 0.2 + 41 0.15 + 42 0.05 + 44 0.05 + + 60 1381 27 0 + 0 0.034 + 2 0.021 + 4 0.0587 + 7 0.254 + 8 0.0391 + 9 0.00145 + 12 0.0101 + 13 0.00217 + 14 0.000724 + 15 0.00579 + 19 0.00145 + 21 0.0434 + 22 0.00362 + 26 0.0268 + 29 0.0224 + 30 0.0101 + 31 0.0203 + 32 0.00507 + 33 0.000724 + 34 0.00434 + 35 0.00217 + 40 0.177 + 41 0.159 + 42 0.0485 + 43 0.00362 + 44 0.0434 + 46 0.000724 + + 68 113 16 0 + 0 0.0619 + 2 0.0265 + 4 0.00885 + 7 0.142 + 8 0.00885 + 12 0.0177 + 21 0.0531 + 26 0.00885 + 29 0.0442 + 31 0.00885 + 32 0.0177 + 33 0.00885 + 34 0.0354 + 40 0.363 + 41 0.177 + 42 0.0177 + + 15 38960 40 26 + 0 0.0826 + 1 7.7e-05 + 2 0.0494 + 3 0.039 + 4 0.00503 + 5 5.13e-05 + 6 2.57e-05 + 7 0.091 + 8 0.00395 + 9 0.000231 + 12 0.0263 + 13 0.00357 + 14 0.00113 + 15 0.00572 + 17 2.57e-05 + 18 0.000642 + 19 0.00167 + 20 0.000282 + 21 0.0216 + 22 0.000796 + 24 7.7e-05 + 26 0.0177 + 28 0.0021 + 29 0.128 + 30 0.00359 + 31 0.00182 + 32 0.00347 + 33 0.0401 + 34 0.00228 + 35 0.00139 + 37 0.00126 + 39 0.000616 + 40 0.125 + 41 0.3 + 42 0.016 + 43 0.00726 + 44 0.00667 + 45 0.00195 + 46 0.00385 + 47 0.00316 + + 2 1047 29 0 + 0 0.0965 + 2 0.0506 + 4 0.00573 + 7 0.085 + 8 0.00669 + 12 0.022 + 13 0.00382 + 14 0.000955 + 15 0.00287 + 18 0.000955 + 19 0.000955 + 21 0.0172 + 26 0.0086 + 28 0.00191 + 29 0.11 + 30 0.00382 + 32 0.0181 + 33 0.0162 + 34 0.00573 + 35 0.000955 + 37 0.000955 + 40 0.226 + 41 0.29 + 42 0.0162 + 43 0.000955 + 44 0.00191 + 45 0.000955 + 46 0.00287 + 47 0.000955 + + 3 26 9 0 + 2 0.0385 + 3 0.0385 + 7 0.154 + 12 0.0385 + 15 0.0385 + 29 0.192 + 40 0.0769 + 41 0.385 + 42 0.0385 + + 4 2090 35 0 + 0 0.116 + 2 0.0656 + 3 0.0172 + 4 0.0067 + 7 0.201 + 8 0.0067 + 9 0.000957 + 12 0.0536 + 13 0.00335 + 14 0.00431 + 15 0.011 + 19 0.00239 + 20 0.00144 + 21 0.0292 + 22 0.00191 + 24 0.000478 + 26 0.0316 + 28 0.00574 + 29 0.0914 + 30 0.00526 + 31 0.00526 + 32 0.00526 + 33 0.0421 + 34 0.00431 + 35 0.00335 + 37 0.000957 + 39 0.000478 + 40 0.106 + 41 0.15 + 42 0.011 + 43 0.00144 + 44 0.00383 + 45 0.00335 + 46 0.00383 + 47 0.00287 + + 6 28 8 0 + 0 0.0714 + 2 0.179 + 7 0.0357 + 29 0.107 + 40 0.0714 + 41 0.464 + 42 0.0357 + 44 0.0357 + + 7 37 9 0 + 2 0.0811 + 3 0.0811 + 12 0.027 + 26 0.027 + 29 0.0541 + 40 0.378 + 41 0.27 + 42 0.027 + 46 0.0541 + + 8 578 29 0 + 0 0.045 + 2 0.0346 + 3 0.0225 + 4 0.00865 + 7 0.133 + 8 0.00346 + 9 0.00173 + 12 0.026 + 13 0.00173 + 14 0.00346 + 15 0.00173 + 19 0.00519 + 21 0.00519 + 26 0.0242 + 28 0.00346 + 29 0.026 + 30 0.00692 + 31 0.00173 + 32 0.00692 + 33 0.0173 + 34 0.0104 + 35 0.00346 + 37 0.00519 + 40 0.253 + 41 0.325 + 42 0.0138 + 44 0.00346 + 46 0.00173 + 47 0.00519 + + 9 2 2 0 + 0 0.5 + 33 0.5 + + 13 164 20 0 + 0 0.0793 + 2 0.0244 + 3 0.0122 + 7 0.0976 + 12 0.0122 + 13 0.0122 + 15 0.0122 + 21 0.0183 + 26 0.0122 + 29 0.122 + 30 0.0061 + 31 0.0061 + 33 0.0427 + 34 0.0061 + 37 0.0122 + 40 0.122 + 41 0.317 + 42 0.0427 + 44 0.0305 + 46 0.0122 + + 15 19923 36 0 + 0 0.0786 + 2 0.0509 + 3 0.00181 + 4 0.00467 + 7 0.0876 + 8 0.00301 + 9 0.000151 + 12 0.0213 + 13 0.00221 + 14 0.000803 + 15 0.00427 + 18 0.000452 + 19 0.00136 + 20 0.000201 + 21 0.0202 + 22 0.000803 + 24 5.02e-05 + 26 0.013 + 28 0.00176 + 29 0.151 + 30 0.00351 + 31 0.00131 + 32 0.00296 + 33 0.0504 + 34 0.00171 + 35 0.00161 + 37 0.000653 + 39 0.000452 + 40 0.113 + 41 0.34 + 42 0.0163 + 43 0.00407 + 44 0.0102 + 45 0.00216 + 46 0.00371 + 47 0.00386 + + 16 534 23 0 + 0 0.0337 + 2 0.073 + 4 0.00375 + 7 0.0974 + 8 0.00187 + 12 0.015 + 13 0.00375 + 15 0.00187 + 21 0.00749 + 26 0.0169 + 28 0.00187 + 29 0.152 + 30 0.00562 + 32 0.00375 + 33 0.0169 + 34 0.00187 + 35 0.00375 + 39 0.00187 + 40 0.204 + 41 0.307 + 42 0.0393 + 44 0.00187 + 47 0.00562 + + 20 11 8 0 + 0 0.0909 + 2 0.0909 + 7 0.182 + 26 0.0909 + 31 0.0909 + 40 0.273 + 41 0.0909 + 44 0.0909 + + 21 37 10 0 + 0 0.0541 + 2 0.027 + 7 0.108 + 13 0.0541 + 15 0.0541 + 29 0.027 + 33 0.027 + 40 0.243 + 41 0.378 + 42 0.027 + + 30 7 3 0 + 0 0.143 + 40 0.571 + 41 0.286 + + 31 8 7 0 + 2 0.125 + 7 0.25 + 12 0.125 + 33 0.125 + 34 0.125 + 41 0.125 + 42 0.125 + + 40 23 10 0 + 2 0.13 + 6 0.0435 + 7 0.13 + 29 0.087 + 33 0.0435 + 40 0.0435 + 41 0.391 + 43 0.0435 + 44 0.0435 + 47 0.0435 + + 41 51 7 0 + 2 0.0392 + 3 0.098 + 7 0.0196 + 29 0.0588 + 40 0.275 + 41 0.471 + 42 0.0392 + + 43 10 4 0 + 0 0.3 + 2 0.2 + 29 0.1 + 41 0.4 + + 44 8 2 0 + 41 0.125 + 43 0.875 + + 45 19 5 0 + 3 0.0526 + 7 0.211 + 40 0.105 + 41 0.211 + 46 0.421 + + 46 22 9 0 + 0 0.0909 + 7 0.0455 + 26 0.0455 + 29 0.0455 + 33 0.0455 + 40 0.0909 + 41 0.545 + 42 0.0455 + 46 0.0455 + + 47 14081 39 0 + 0 0.0871 + 1 0.000213 + 2 0.0447 + 3 0.101 + 4 0.0054 + 5 0.000142 + 7 0.076 + 8 0.0049 + 9 0.000142 + 12 0.0304 + 13 0.0054 + 14 0.00107 + 15 0.00746 + 17 7.1e-05 + 18 0.00107 + 19 0.00206 + 20 0.000284 + 21 0.0248 + 22 0.000781 + 24 7.1e-05 + 26 0.0229 + 28 0.00213 + 29 0.108 + 30 0.0032 + 31 0.00206 + 32 0.00284 + 33 0.0295 + 34 0.0022 + 35 0.00071 + 37 0.00199 + 39 0.000923 + 40 0.127 + 41 0.266 + 42 0.0149 + 43 0.0135 + 44 0.00241 + 45 0.00178 + 46 0.00355 + 47 0.0022 + + 48 43 13 0 + 0 0.14 + 2 0.0698 + 3 0.0233 + 7 0.14 + 8 0.0233 + 12 0.0698 + 26 0.0465 + 29 0.0698 + 31 0.0233 + 33 0.0233 + 40 0.186 + 41 0.163 + 42 0.0233 + + 54 20 6 0 + 0 0.05 + 7 0.3 + 29 0.1 + 33 0.05 + 40 0.3 + 41 0.2 + + 55 144 17 0 + 0 0.0347 + 2 0.0347 + 3 0.0139 + 7 0.236 + 12 0.0208 + 13 0.00694 + 21 0.0139 + 26 0.0208 + 29 0.181 + 30 0.0139 + 33 0.0347 + 40 0.111 + 41 0.25 + 42 0.00694 + 44 0.00694 + 46 0.00694 + 47 0.00694 + + 58 27 6 0 + 7 0.037 + 12 0.037 + 31 0.037 + 33 0.0741 + 40 0.593 + 41 0.222 + + 60 6 5 0 + 0 0.167 + 3 0.167 + 7 0.333 + 9 0.167 + 14 0.167 + + 16 1553 34 14 + 0 0.122 + 2 0.0599 + 3 0.00129 + 4 0.00515 + 5 0.000644 + 7 0.109 + 8 0.00515 + 9 0.000644 + 12 0.0399 + 13 0.00515 + 14 0.00193 + 15 0.00451 + 19 0.00258 + 20 0.000644 + 21 0.0258 + 22 0.000644 + 26 0.0232 + 28 0.000644 + 29 0.111 + 30 0.0058 + 31 0.00386 + 32 0.0367 + 33 0.0155 + 34 0.000644 + 35 0.0167 + 36 0.000644 + 40 0.127 + 41 0.214 + 42 0.0328 + 43 0.00386 + 44 0.00386 + 45 0.00193 + 46 0.00386 + 47 0.0135 + + 2 42 15 0 + 0 0.0714 + 2 0.0238 + 7 0.0952 + 19 0.0238 + 21 0.0714 + 28 0.0238 + 29 0.0238 + 31 0.0238 + 33 0.0238 + 35 0.0238 + 40 0.143 + 41 0.31 + 42 0.0714 + 45 0.0238 + 47 0.0476 + + 3 16 9 0 + 0 0.125 + 2 0.125 + 7 0.25 + 8 0.0625 + 12 0.0625 + 30 0.0625 + 31 0.0625 + 35 0.0625 + 41 0.188 + + 4 295 23 0 + 0 0.183 + 2 0.0542 + 4 0.00339 + 5 0.00339 + 7 0.0881 + 8 0.0136 + 12 0.0746 + 13 0.0102 + 19 0.00339 + 20 0.00339 + 21 0.0475 + 26 0.0373 + 29 0.119 + 30 0.0102 + 31 0.00339 + 32 0.0847 + 33 0.00339 + 35 0.0102 + 40 0.0915 + 41 0.132 + 42 0.0169 + 43 0.00339 + 45 0.00339 + + 8 87 15 0 + 0 0.207 + 2 0.023 + 7 0.115 + 12 0.0345 + 21 0.0115 + 26 0.023 + 29 0.046 + 31 0.0115 + 32 0.0805 + 34 0.0115 + 35 0.069 + 36 0.0115 + 40 0.149 + 41 0.161 + 42 0.046 + + 13 6 5 0 + 0 0.167 + 12 0.167 + 26 0.167 + 30 0.167 + 41 0.333 + + 15 766 24 0 + 0 0.0888 + 2 0.0614 + 3 0.00261 + 4 0.00522 + 7 0.101 + 8 0.00131 + 12 0.017 + 13 0.00392 + 15 0.00261 + 21 0.0157 + 22 0.00131 + 26 0.0144 + 29 0.144 + 30 0.00131 + 32 0.00653 + 33 0.0261 + 35 0.00653 + 40 0.148 + 41 0.273 + 42 0.0405 + 43 0.00392 + 44 0.00783 + 46 0.00522 + 47 0.0235 + + 16 35 13 0 + 0 0.0857 + 2 0.0286 + 4 0.0286 + 7 0.0857 + 12 0.0571 + 21 0.0571 + 26 0.0286 + 29 0.0286 + 32 0.0286 + 33 0.0286 + 40 0.0857 + 41 0.343 + 42 0.114 + + 21 5 4 0 + 0 0.2 + 2 0.2 + 7 0.2 + 42 0.4 + + 30 2 2 0 + 2 0.5 + 32 0.5 + + 45 1 1 0 + 46 1 + + 47 257 24 0 + 0 0.128 + 2 0.0778 + 4 0.00389 + 7 0.152 + 8 0.00778 + 9 0.00389 + 12 0.0623 + 13 0.00778 + 14 0.0117 + 15 0.0195 + 19 0.00778 + 21 0.0272 + 26 0.0389 + 29 0.0739 + 30 0.00778 + 31 0.00778 + 32 0.0661 + 35 0.0311 + 40 0.105 + 41 0.136 + 42 0.00778 + 43 0.00778 + 45 0.00389 + 46 0.00389 + + 48 8 7 0 + 7 0.125 + 12 0.125 + 32 0.125 + 33 0.125 + 40 0.125 + 41 0.25 + 47 0.125 + + 55 10 7 0 + 4 0.1 + 7 0.2 + 12 0.1 + 21 0.1 + 29 0.1 + 40 0.3 + 41 0.1 + + 60 11 6 0 + 0 0.273 + 7 0.0909 + 30 0.0909 + 35 0.182 + 40 0.182 + 41 0.182 + + 17 3 1 0 + 4 1 + + 18 8656 34 12 + 0 0.00508 + 2 0.0067 + 3 0.0261 + 4 0.000231 + 6 0.000231 + 7 0.00208 + 8 0.207 + 9 0.00173 + 10 0.026 + 12 0.00104 + 13 0.417 + 14 0.13 + 15 0.104 + 16 0.00381 + 19 0.000116 + 21 0.00555 + 22 0.000347 + 23 0.00208 + 26 0.000231 + 28 0.000347 + 29 0.00439 + 30 0.0117 + 31 0.00739 + 32 0.000462 + 33 0.00104 + 38 0.000578 + 39 0.0101 + 40 0.00485 + 41 0.00601 + 42 0.000231 + 43 0.000924 + 44 0.000231 + 45 0.0117 + 46 0.000231 + + 3 25 6 0 + 3 0.04 + 8 0.36 + 13 0.36 + 14 0.12 + 40 0.08 + 41 0.04 + + 6 2 2 0 + 13 0.5 + 46 0.5 + + 8 12 4 0 + 13 0.417 + 14 0.417 + 15 0.0833 + 29 0.0833 + + 13 2900 22 0 + 2 0.00103 + 3 0.0238 + 6 0.00069 + 7 0.00103 + 8 0.236 + 9 0.00172 + 10 0.04 + 13 0.477 + 14 0.132 + 15 0.0441 + 16 0.00103 + 21 0.00483 + 22 0.000345 + 23 0.0031 + 30 0.00793 + 31 0.00655 + 39 0.00931 + 40 0.00207 + 41 0.000345 + 42 0.000345 + 43 0.00069 + 45 0.00724 + + 14 544 15 0 + 2 0.00368 + 3 0.011 + 7 0.00184 + 8 0.0974 + 9 0.00184 + 10 0.00184 + 13 0.417 + 14 0.415 + 15 0.0129 + 23 0.00184 + 26 0.00368 + 30 0.0147 + 31 0.00735 + 40 0.00184 + 45 0.00735 + + 15 5059 31 0 + 0 0.0083 + 2 0.0103 + 3 0.0289 + 4 0.000395 + 7 0.00277 + 8 0.205 + 9 0.00178 + 10 0.0213 + 12 0.00178 + 13 0.381 + 14 0.0996 + 15 0.147 + 16 0.00534 + 19 0.000198 + 21 0.00672 + 22 0.000395 + 23 0.00158 + 29 0.00731 + 30 0.0134 + 31 0.00791 + 32 0.000791 + 33 0.00178 + 38 0.000988 + 39 0.0117 + 40 0.00633 + 41 0.00988 + 42 0.000198 + 43 0.00119 + 44 0.000395 + 45 0.015 + 46 0.000198 + + 16 66 9 0 + 0 0.0152 + 3 0.0303 + 8 0.121 + 13 0.545 + 14 0.0455 + 15 0.167 + 16 0.0455 + 30 0.0152 + 31 0.0152 + + 21 3 2 0 + 13 0.667 + 40 0.333 + + 28 1 1 0 + 0 1 + + 47 4 2 0 + 15 0.25 + 28 0.75 + + 55 3 2 0 + 2 0.333 + 13 0.667 + + 57 19 6 0 + 3 0.0526 + 8 0.0526 + 13 0.421 + 15 0.368 + 30 0.0526 + 39 0.0526 + + 19 17366 41 5 + 0 0.301 + 1 0.000173 + 2 0.0076 + 3 0.000864 + 4 0.012 + 5 0.000115 + 6 5.76e-05 + 7 0.0348 + 8 0.00749 + 9 0.00132 + 10 0.000115 + 12 0.124 + 13 0.00202 + 14 0.000749 + 15 0.000576 + 17 0.000115 + 18 0.000633 + 19 0.00161 + 20 0.000115 + 21 0.0537 + 22 0.00155 + 23 0.000173 + 24 0.00455 + 26 0.0163 + 28 0.0117 + 29 0.166 + 30 0.00242 + 31 0.0019 + 32 0.0774 + 33 0.106 + 34 0.000288 + 35 0.000633 + 37 0.00121 + 39 0.000288 + 40 0.0313 + 41 0.021 + 42 0.00334 + 43 0.000461 + 44 0.000921 + 45 0.00346 + 46 0.000461 + + 4 12 6 0 + 0 0.417 + 7 0.0833 + 12 0.25 + 29 0.0833 + 33 0.0833 + 40 0.0833 + + 13 2 2 0 + 26 0.5 + 40 0.5 + + 15 4 4 0 + 0 0.25 + 29 0.25 + 33 0.25 + 37 0.25 + + 21 3 2 0 + 12 0.667 + 41 0.333 + + 44 2 1 0 + 43 1 + + 20 34 11 0 + 0 0.0882 + 1 0.0588 + 13 0.0882 + 15 0.0294 + 21 0.0294 + 30 0.235 + 39 0.324 + 40 0.0294 + 41 0.0588 + 42 0.0294 + 43 0.0294 + + 21 674 33 12 + 0 0.049 + 2 0.0208 + 3 0.0089 + 4 0.0831 + 6 0.00148 + 7 0.2 + 8 0.0386 + 9 0.0134 + 12 0.0119 + 13 0.0326 + 14 0.0208 + 15 0.0208 + 19 0.0163 + 20 0.00148 + 21 0.0371 + 22 0.0089 + 26 0.0252 + 28 0.00297 + 29 0.00445 + 30 0.00593 + 31 0.00742 + 32 0.00445 + 33 0.0104 + 34 0.00148 + 37 0.00148 + 39 0.0089 + 40 0.168 + 41 0.169 + 42 0.0178 + 43 0.00148 + 44 0.00297 + 46 0.00148 + 47 0.00148 + + 2 50 13 0 + 3 0.02 + 4 0.38 + 8 0.02 + 9 0.02 + 13 0.14 + 14 0.08 + 15 0.1 + 21 0.06 + 28 0.02 + 39 0.02 + 40 0.06 + 41 0.06 + 42 0.02 + + 3 49 11 0 + 2 0.0408 + 3 0.0204 + 7 0.0612 + 8 0.0204 + 13 0.0816 + 29 0.0204 + 37 0.0204 + 40 0.571 + 41 0.122 + 42 0.0204 + 47 0.0204 + + 4 39 12 0 + 0 0.0256 + 4 0.0256 + 6 0.0256 + 7 0.0513 + 8 0.359 + 9 0.179 + 21 0.0256 + 22 0.154 + 30 0.0256 + 33 0.0256 + 40 0.0769 + 41 0.0256 + + 13 84 16 0 + 0 0.0714 + 2 0.0476 + 7 0.202 + 12 0.0119 + 13 0.0119 + 14 0.0119 + 19 0.0238 + 21 0.0238 + 26 0.0476 + 31 0.0119 + 33 0.0357 + 40 0.19 + 41 0.226 + 42 0.0595 + 44 0.0119 + 46 0.0119 + + 14 20 6 0 + 7 0.1 + 15 0.05 + 32 0.05 + 40 0.45 + 41 0.3 + 42 0.05 + + 15 7 5 0 + 2 0.143 + 29 0.143 + 40 0.143 + 41 0.429 + 42 0.143 + + 21 46 11 0 + 4 0.0435 + 7 0.674 + 8 0.0217 + 15 0.0217 + 19 0.0435 + 21 0.0435 + 26 0.0217 + 30 0.0217 + 31 0.0217 + 40 0.0652 + 41 0.0217 + + 41 60 12 0 + 3 0.05 + 4 0.333 + 7 0.0167 + 8 0.1 + 9 0.0167 + 13 0.117 + 14 0.117 + 15 0.0833 + 20 0.0167 + 21 0.1 + 33 0.0167 + 41 0.0333 + + 42 7 2 0 + 4 0.857 + 15 0.143 + + 47 289 26 0 + 0 0.0865 + 2 0.0242 + 3 0.00346 + 4 0.0242 + 7 0.263 + 8 0.0104 + 12 0.0242 + 13 0.0104 + 14 0.00346 + 15 0.00346 + 19 0.0242 + 21 0.0138 + 26 0.0346 + 28 0.00346 + 29 0.00346 + 30 0.00692 + 31 0.0104 + 32 0.00692 + 33 0.00692 + 34 0.00346 + 39 0.0173 + 40 0.163 + 41 0.235 + 42 0.0104 + 43 0.00346 + 44 0.00346 + + 49 2 2 0 + 4 0.5 + 14 0.5 + + 55 10 4 0 + 21 0.5 + 26 0.1 + 40 0.1 + 41 0.3 + + 22 48 11 2 + 2 0.0625 + 7 0.521 + 8 0.0417 + 12 0.0208 + 21 0.0208 + 29 0.0208 + 31 0.0208 + 37 0.0208 + 40 0.0833 + 41 0.167 + 42 0.0208 + + 4 2 2 0 + 8 0.5 + 40 0.5 + + 14 2 2 0 + 29 0.5 + 40 0.5 + + 23 19 8 1 + 7 0.579 + 8 0.0526 + 19 0.0526 + 21 0.105 + 29 0.0526 + 31 0.0526 + 40 0.0526 + 41 0.0526 + + 4 4 4 0 + 8 0.25 + 31 0.25 + 40 0.25 + 41 0.25 + + 24 8 3 0 + 7 0.5 + 40 0.25 + 41 0.25 + + 25 13 2 0 + 3 0.0769 + 42 0.923 + + 26 52 5 0 + 3 0.808 + 14 0.0192 + 15 0.0192 + 28 0.0385 + 39 0.115 + + 27 6 4 0 + 40 0.333 + 41 0.167 + 42 0.333 + 46 0.167 + + 28 92 16 2 + 0 0.0109 + 2 0.0326 + 4 0.087 + 7 0.424 + 8 0.0326 + 13 0.0109 + 15 0.0109 + 21 0.0435 + 26 0.0761 + 29 0.0217 + 40 0.0978 + 41 0.087 + 42 0.0217 + 45 0.0109 + 46 0.0217 + 47 0.0109 + + 13 5 4 0 + 7 0.2 + 26 0.4 + 29 0.2 + 45 0.2 + + 21 3 3 0 + 4 0.333 + 7 0.333 + 47 0.333 + + 29 6 5 0 + 4 0.167 + 7 0.333 + 8 0.167 + 29 0.167 + 33 0.167 + + 30 261 26 5 + 0 0.069 + 2 0.0307 + 3 0.00383 + 4 0.00766 + 7 0.429 + 8 0.0192 + 12 0.0268 + 13 0.00383 + 14 0.00383 + 19 0.00383 + 21 0.0307 + 22 0.00383 + 26 0.0307 + 29 0.023 + 30 0.00383 + 31 0.00766 + 32 0.00383 + 33 0.0153 + 37 0.00383 + 39 0.0115 + 40 0.138 + 41 0.0958 + 42 0.0153 + 43 0.00383 + 44 0.00383 + 46 0.0115 + + 2 9 3 0 + 7 0.778 + 21 0.111 + 40 0.111 + + 4 47 12 0 + 0 0.191 + 2 0.0213 + 3 0.0213 + 7 0.277 + 12 0.106 + 21 0.0426 + 29 0.0426 + 33 0.0851 + 39 0.0638 + 40 0.0426 + 41 0.0638 + 42 0.0426 + + 8 17 8 0 + 7 0.353 + 12 0.0588 + 21 0.0588 + 26 0.0588 + 29 0.0588 + 31 0.0588 + 40 0.118 + 41 0.235 + + 13 28 11 0 + 0 0.0357 + 2 0.0714 + 4 0.0357 + 7 0.536 + 8 0.0357 + 13 0.0357 + 14 0.0357 + 22 0.0357 + 26 0.0714 + 41 0.0714 + 44 0.0357 + + 47 136 19 0 + 0 0.0588 + 2 0.0294 + 4 0.00735 + 7 0.397 + 8 0.0221 + 12 0.00735 + 19 0.00735 + 21 0.0294 + 26 0.0368 + 29 0.0147 + 30 0.00735 + 31 0.00735 + 32 0.00735 + 37 0.00735 + 40 0.206 + 41 0.11 + 42 0.0147 + 43 0.00735 + 46 0.0221 + + 31 60 15 7 + 0 0.0333 + 2 0.0333 + 3 0.0167 + 4 0.0167 + 7 0.0833 + 12 0.05 + 14 0.0167 + 24 0.0167 + 26 0.0333 + 29 0.0833 + 30 0.0167 + 39 0.483 + 40 0.0667 + 41 0.0333 + 45 0.0167 + + 3 2 2 0 + 2 0.5 + 14 0.5 + + 4 33 6 0 + 0 0.0303 + 2 0.0303 + 3 0.0303 + 12 0.0303 + 39 0.848 + 40 0.0303 + + 13 7 6 0 + 4 0.143 + 7 0.286 + 12 0.143 + 26 0.143 + 41 0.143 + 45 0.143 + + 15 2 1 0 + 29 1 + + 21 2 2 0 + 7 0.5 + 41 0.5 + + 47 8 5 0 + 0 0.125 + 12 0.125 + 24 0.125 + 29 0.375 + 40 0.25 + + 55 2 2 0 + 26 0.5 + 30 0.5 + + 32 3 3 0 + 0 0.333 + 32 0.333 + 33 0.333 + + 33 65 17 5 + 0 0.0154 + 3 0.0462 + 4 0.169 + 7 0.138 + 8 0.0923 + 10 0.0154 + 13 0.0154 + 14 0.0308 + 19 0.0615 + 21 0.0308 + 22 0.0154 + 26 0.108 + 30 0.0154 + 34 0.0154 + 40 0.0154 + 41 0.2 + 45 0.0154 + + 2 6 3 0 + 4 0.5 + 7 0.333 + 8 0.167 + + 13 24 10 0 + 4 0.125 + 7 0.125 + 8 0.0417 + 13 0.0417 + 14 0.0417 + 19 0.0833 + 21 0.0417 + 26 0.167 + 34 0.0417 + 41 0.292 + + 14 3 3 0 + 8 0.333 + 19 0.333 + 45 0.333 + + 15 8 6 0 + 0 0.125 + 3 0.25 + 4 0.125 + 7 0.125 + 8 0.25 + 41 0.125 + + 47 17 12 0 + 3 0.0588 + 4 0.0588 + 7 0.176 + 8 0.0588 + 10 0.0588 + 19 0.0588 + 21 0.0588 + 22 0.0588 + 26 0.0588 + 30 0.0588 + 40 0.0588 + 41 0.235 + + 34 58 6 0 + 0 0.259 + 4 0.0172 + 12 0.379 + 21 0.0345 + 29 0.19 + 33 0.121 + + 35 6 4 0 + 0 0.333 + 26 0.167 + 40 0.333 + 41 0.167 + + 39 1790 1 0 + 3 1 + + 40 1001 17 7 + 0 0.000999 + 3 0.002 + 4 0.000999 + 12 0.000999 + 13 0.000999 + 14 0.002 + 15 0.00599 + 21 0.000999 + 26 0.000999 + 31 0.000999 + 35 0.000999 + 42 0.004 + 43 0.0679 + 44 0.0509 + 45 0.000999 + 46 0.014 + 47 0.844 + + 3 10 3 0 + 21 0.1 + 26 0.1 + 47 0.8 + + 15 187 8 0 + 0 0.00535 + 12 0.00535 + 15 0.0321 + 43 0.337 + 44 0.267 + 45 0.00535 + 46 0.0214 + 47 0.326 + + 55 492 11 0 + 3 0.00407 + 4 0.00203 + 13 0.00203 + 14 0.00407 + 31 0.00203 + 35 0.00203 + 42 0.00813 + 43 0.00203 + 44 0.00203 + 46 0.0061 + 47 0.965 + + 57 129 3 0 + 43 0.00775 + 46 0.0233 + 47 0.969 + + 62 40 1 0 + 47 1 + + 67 1 1 0 + 46 1 + + 69 35 1 0 + 47 1 + + 41 20629 39 17 + 0 0.0576 + 1 0.000145 + 2 0.0758 + 3 0.0369 + 4 0.147 + 6 0.000436 + 7 0.0581 + 8 0.0435 + 9 0.00145 + 10 0.000436 + 12 0.0155 + 13 0.0636 + 14 0.0132 + 15 0.126 + 16 0.00097 + 17 4.85e-05 + 19 0.00102 + 20 0.00305 + 21 0.044 + 22 0.000291 + 23 0.000242 + 24 0.000145 + 26 0.01 + 27 4.85e-05 + 28 0.000436 + 29 0.0714 + 30 0.0248 + 31 0.0326 + 32 0.00315 + 33 0.0252 + 34 0.0794 + 35 0.028 + 36 0.00499 + 37 0.014 + 39 0.00155 + 42 0.000145 + 44 0.000339 + 45 0.00344 + 46 0.0109 + + 2 7 3 0 + 7 0.429 + 21 0.429 + 22 0.143 + + 3 358 9 0 + 0 0.0112 + 2 0.00559 + 3 0.888 + 4 0.00279 + 7 0.0447 + 26 0.0196 + 31 0.0196 + 32 0.00559 + 46 0.00279 + + 13 26 10 0 + 3 0.0385 + 4 0.0385 + 6 0.0385 + 7 0.269 + 21 0.0385 + 26 0.0385 + 29 0.0385 + 30 0.0385 + 34 0.0385 + 46 0.423 + + 14 11 6 0 + 0 0.0909 + 6 0.0909 + 7 0.0909 + 13 0.0909 + 21 0.273 + 46 0.364 + + 15 18 9 0 + 0 0.0556 + 2 0.0556 + 3 0.0556 + 4 0.0556 + 7 0.278 + 14 0.0556 + 21 0.111 + 29 0.278 + 33 0.0556 + + 27 1 1 0 + 46 1 + + 48 242 18 0 + 0 0.211 + 2 0.0165 + 4 0.0207 + 7 0.128 + 8 0.0165 + 12 0.0868 + 13 0.0165 + 15 0.00826 + 21 0.062 + 22 0.00413 + 26 0.0372 + 29 0.062 + 30 0.0207 + 31 0.215 + 32 0.0124 + 33 0.0579 + 34 0.0207 + 37 0.00413 + + 49 44 13 0 + 0 0.136 + 2 0.159 + 4 0.182 + 7 0.205 + 12 0.0227 + 13 0.0227 + 15 0.0682 + 21 0.0455 + 29 0.0227 + 30 0.0455 + 31 0.0455 + 32 0.0227 + 46 0.0227 + + 55 17277 39 0 + 0 0.0341 + 1 0.000116 + 2 0.0865 + 3 0.0252 + 4 0.17 + 6 0.000347 + 7 0.0512 + 8 0.0478 + 9 0.00145 + 10 0.000463 + 12 0.00666 + 13 0.0737 + 14 0.0153 + 15 0.148 + 16 0.00116 + 17 5.79e-05 + 19 0.000868 + 20 0.00359 + 21 0.0416 + 22 0.000232 + 23 0.000289 + 24 5.79e-05 + 26 0.007 + 27 5.79e-05 + 28 0.000405 + 29 0.0587 + 30 0.0212 + 31 0.0301 + 32 0.00127 + 33 0.0201 + 34 0.0843 + 35 0.0312 + 36 0.00561 + 37 0.0149 + 39 0.00185 + 42 0.000174 + 44 0.000347 + 45 0.00313 + 46 0.0102 + + 56 4 3 0 + 12 0.25 + 30 0.25 + 46 0.5 + + 57 1015 30 0 + 0 0.106 + 1 0.000985 + 2 0.0177 + 3 0.00394 + 4 0.0236 + 6 0.000985 + 7 0.164 + 8 0.0433 + 9 0.00394 + 12 0.0286 + 13 0.00591 + 14 0.00197 + 15 0.0197 + 20 0.000985 + 21 0.07 + 24 0.000985 + 26 0.0424 + 28 0.000985 + 29 0.0562 + 30 0.1 + 31 0.067 + 32 0.00788 + 33 0.0177 + 34 0.144 + 35 0.0256 + 36 0.00493 + 37 0.0246 + 44 0.000985 + 45 0.00296 + 46 0.0118 + + 58 63 17 0 + 0 0.0317 + 2 0.0317 + 3 0.0159 + 4 0.27 + 7 0.0794 + 8 0.0476 + 9 0.0159 + 13 0.159 + 15 0.0159 + 21 0.0317 + 29 0.0317 + 30 0.0317 + 33 0.0159 + 34 0.0317 + 35 0.127 + 37 0.0159 + 45 0.0476 + + 61 13 6 0 + 0 0.308 + 7 0.0769 + 12 0.231 + 29 0.231 + 31 0.0769 + 33 0.0769 + + 62 20 11 0 + 0 0.05 + 2 0.05 + 3 0.05 + 4 0.1 + 7 0.1 + 8 0.1 + 13 0.15 + 21 0.05 + 29 0.05 + 30 0.1 + 46 0.2 + + 64 1038 24 0 + 0 0.286 + 2 0.0231 + 4 0.0116 + 7 0.0222 + 8 0.0106 + 10 0.000963 + 12 0.0983 + 13 0.00771 + 14 0.00482 + 15 0.0154 + 19 0.00482 + 21 0.0626 + 26 0.0125 + 28 0.000963 + 29 0.283 + 30 0.0164 + 31 0.0135 + 32 0.0183 + 33 0.0877 + 34 0.00289 + 35 0.000963 + 37 0.000963 + 45 0.00867 + 46 0.00578 + + 68 2 2 0 + 0 0.5 + 33 0.5 + + 69 481 24 0 + 0 0.254 + 2 0.0187 + 4 0.0125 + 7 0.0915 + 8 0.0166 + 12 0.0977 + 13 0.00832 + 14 0.00208 + 15 0.00832 + 19 0.00208 + 21 0.0478 + 24 0.00208 + 26 0.027 + 29 0.166 + 30 0.0291 + 31 0.0187 + 32 0.0208 + 33 0.0956 + 34 0.0499 + 35 0.00624 + 36 0.00208 + 37 0.00416 + 45 0.00416 + 46 0.0146 + + 42 2040 38 16 + 0 0.0211 + 2 0.0422 + 3 0.259 + 4 0.102 + 5 0.00049 + 7 0.0284 + 8 0.0373 + 9 0.00294 + 10 0.00049 + 11 0.00098 + 12 0.00686 + 13 0.0422 + 14 0.0304 + 15 0.123 + 16 0.00098 + 19 0.00343 + 20 0.00392 + 21 0.0338 + 22 0.00049 + 25 0.00049 + 26 0.00833 + 28 0.00588 + 29 0.0137 + 30 0.0191 + 31 0.0132 + 32 0.00196 + 33 0.00392 + 34 0.0123 + 35 0.00539 + 37 0.00637 + 38 0.00098 + 39 0.0574 + 40 0.00441 + 42 0.00049 + 44 0.00049 + 45 0.0152 + 46 0.00098 + 47 0.0897 + + 3 11 1 0 + 47 1 + + 13 23 4 0 + 7 0.087 + 8 0.0435 + 26 0.13 + 47 0.739 + + 14 55 4 0 + 2 0.0182 + 7 0.0182 + 40 0.127 + 47 0.836 + + 15 54 1 0 + 47 1 + + 16 10 2 0 + 40 0.2 + 47 0.8 + + 40 3 2 0 + 15 0.333 + 39 0.667 + + 41 3 2 0 + 13 0.333 + 39 0.667 + + 46 11 7 0 + 4 0.364 + 7 0.0909 + 8 0.0909 + 12 0.0909 + 13 0.0909 + 14 0.182 + 15 0.0909 + + 48 5 5 0 + 0 0.2 + 2 0.2 + 7 0.2 + 12 0.2 + 21 0.2 + + 49 2 2 0 + 7 0.5 + 29 0.5 + + 55 1709 36 0 + 0 0.0164 + 2 0.0474 + 3 0.305 + 4 0.116 + 5 0.000585 + 7 0.0199 + 8 0.0392 + 9 0.00351 + 10 0.000585 + 11 0.00117 + 12 0.00293 + 13 0.0486 + 14 0.0339 + 15 0.143 + 16 0.00117 + 19 0.00351 + 20 0.00468 + 21 0.0363 + 22 0.000585 + 25 0.000585 + 26 0.00644 + 28 0.00702 + 29 0.00995 + 30 0.0164 + 31 0.0135 + 32 0.000585 + 33 0.0041 + 34 0.0117 + 35 0.00585 + 37 0.00702 + 38 0.00117 + 39 0.0655 + 42 0.000585 + 44 0.000585 + 45 0.0164 + 47 0.00819 + + 57 51 19 0 + 0 0.118 + 2 0.0196 + 4 0.0588 + 7 0.216 + 8 0.0588 + 12 0.0588 + 15 0.0392 + 19 0.0196 + 21 0.0392 + 26 0.0196 + 29 0.0392 + 30 0.0784 + 33 0.0196 + 34 0.0784 + 35 0.0196 + 37 0.0196 + 45 0.0196 + 46 0.0196 + 47 0.0588 + + 58 39 9 0 + 3 0.179 + 7 0.0256 + 8 0.0256 + 21 0.0256 + 29 0.0513 + 31 0.0513 + 34 0.0256 + 45 0.0256 + 47 0.59 + + 62 5 4 0 + 2 0.2 + 7 0.2 + 30 0.4 + 46 0.2 + + 64 34 15 0 + 0 0.176 + 2 0.0294 + 4 0.0882 + 7 0.0882 + 8 0.0588 + 12 0.118 + 13 0.0294 + 14 0.0588 + 21 0.0294 + 26 0.0294 + 29 0.118 + 30 0.0294 + 31 0.0588 + 32 0.0294 + 47 0.0588 + + 69 20 11 0 + 0 0.1 + 4 0.05 + 7 0.1 + 8 0.05 + 21 0.1 + 26 0.05 + 29 0.1 + 30 0.15 + 32 0.1 + 45 0.05 + 47 0.15 + + 43 97 22 8 + 0 0.0928 + 2 0.0825 + 4 0.0206 + 6 0.0103 + 7 0.144 + 12 0.0412 + 15 0.0103 + 19 0.0103 + 21 0.0206 + 26 0.0103 + 29 0.0103 + 30 0.0103 + 31 0.0103 + 32 0.0206 + 33 0.0619 + 34 0.0103 + 35 0.0103 + 40 0.134 + 41 0.113 + 42 0.103 + 44 0.0103 + 47 0.0619 + + 13 12 7 0 + 0 0.0833 + 2 0.0833 + 7 0.0833 + 33 0.333 + 40 0.0833 + 41 0.167 + 42 0.167 + + 14 8 7 0 + 0 0.25 + 7 0.125 + 12 0.125 + 31 0.125 + 32 0.125 + 34 0.125 + 35 0.125 + + 15 12 9 0 + 0 0.167 + 4 0.0833 + 7 0.0833 + 12 0.0833 + 26 0.0833 + 29 0.0833 + 40 0.0833 + 42 0.25 + 47 0.0833 + + 40 2 1 0 + 47 1 + + 55 37 13 0 + 0 0.027 + 2 0.135 + 4 0.027 + 6 0.027 + 7 0.189 + 15 0.027 + 19 0.027 + 33 0.027 + 40 0.216 + 41 0.135 + 42 0.108 + 44 0.027 + 47 0.027 + + 57 16 10 0 + 0 0.188 + 2 0.125 + 7 0.125 + 12 0.125 + 21 0.0625 + 30 0.0625 + 32 0.0625 + 40 0.0625 + 41 0.0625 + 47 0.125 + + 58 2 1 0 + 41 1 + + 69 2 2 0 + 21 0.5 + 40 0.5 + + 44 52 11 0 + 2 0.0769 + 3 0.0192 + 4 0.0577 + 7 0.25 + 8 0.0385 + 13 0.0385 + 15 0.25 + 21 0.0192 + 30 0.0385 + 35 0.0192 + 39 0.192 + + 45 238 22 10 + 0 0.0252 + 2 0.0252 + 3 0.0084 + 4 0.126 + 6 0.0168 + 7 0.0924 + 8 0.0798 + 9 0.0042 + 12 0.0042 + 13 0.0924 + 15 0.311 + 16 0.0084 + 19 0.0546 + 21 0.0294 + 26 0.0042 + 28 0.021 + 30 0.0168 + 31 0.0252 + 32 0.0042 + 34 0.0168 + 35 0.021 + 37 0.0126 + + 2 30 9 0 + 0 0.0333 + 3 0.0333 + 4 0.0667 + 8 0.133 + 9 0.0333 + 13 0.167 + 15 0.467 + 16 0.0333 + 37 0.0333 + + 8 5 4 0 + 6 0.2 + 8 0.2 + 15 0.4 + 21 0.2 + + 13 11 6 0 + 3 0.0909 + 4 0.0909 + 6 0.0909 + 7 0.0909 + 15 0.545 + 30 0.0909 + + 41 40 14 0 + 0 0.025 + 2 0.05 + 4 0.225 + 7 0.05 + 8 0.075 + 12 0.025 + 13 0.125 + 15 0.175 + 16 0.025 + 19 0.05 + 21 0.05 + 28 0.05 + 30 0.025 + 35 0.05 + + 42 21 8 0 + 0 0.143 + 4 0.143 + 7 0.0476 + 8 0.143 + 13 0.0476 + 19 0.381 + 31 0.0476 + 37 0.0476 + + 46 8 3 0 + 4 0.25 + 13 0.125 + 15 0.625 + + 55 107 16 0 + 2 0.00935 + 4 0.121 + 6 0.0187 + 7 0.15 + 8 0.0467 + 13 0.0935 + 15 0.355 + 19 0.028 + 21 0.0187 + 26 0.00935 + 28 0.028 + 30 0.00935 + 31 0.0467 + 34 0.028 + 35 0.028 + 37 0.00935 + + 57 5 4 0 + 2 0.2 + 7 0.4 + 8 0.2 + 34 0.2 + + 58 6 4 0 + 0 0.167 + 2 0.333 + 21 0.333 + 30 0.167 + + 69 1 1 0 + 32 1 + + 46 898 32 13 + 0 0.0635 + 1 0.00223 + 2 0.0668 + 3 0.00445 + 4 0.0568 + 7 0.345 + 8 0.0212 + 12 0.0167 + 13 0.00557 + 14 0.00223 + 15 0.0167 + 19 0.0078 + 20 0.00111 + 21 0.0323 + 26 0.0646 + 29 0.0212 + 30 0.0212 + 31 0.0345 + 32 0.00334 + 33 0.0167 + 34 0.0624 + 35 0.0111 + 36 0.00223 + 37 0.0122 + 40 0.00334 + 41 0.00668 + 42 0.0323 + 43 0.00334 + 44 0.0379 + 45 0.00891 + 46 0.00223 + 47 0.0134 + + 6 2 2 0 + 0 0.5 + 41 0.5 + + 8 3 3 0 + 7 0.333 + 33 0.333 + 42 0.333 + + 13 251 24 0 + 0 0.0598 + 1 0.00398 + 2 0.0478 + 4 0.00797 + 7 0.498 + 8 0.012 + 12 0.0398 + 19 0.00398 + 21 0.0279 + 26 0.0876 + 29 0.012 + 30 0.0159 + 31 0.0359 + 33 0.00797 + 34 0.0518 + 35 0.00797 + 37 0.012 + 40 0.00797 + 41 0.00398 + 42 0.0279 + 43 0.00398 + 44 0.0159 + 46 0.00398 + 47 0.00398 + + 14 66 15 0 + 0 0.0606 + 2 0.0606 + 7 0.333 + 8 0.0303 + 12 0.0152 + 19 0.0152 + 21 0.0455 + 26 0.152 + 29 0.0152 + 31 0.0455 + 32 0.0455 + 34 0.0455 + 35 0.0606 + 37 0.0152 + 42 0.0606 + + 15 21 11 0 + 2 0.0476 + 4 0.0476 + 7 0.286 + 12 0.0952 + 21 0.0952 + 26 0.0476 + 33 0.0952 + 34 0.0476 + 40 0.0476 + 41 0.143 + 46 0.0476 + + 40 11 3 0 + 15 0.182 + 21 0.0909 + 47 0.727 + + 41 222 23 0 + 0 0.0721 + 2 0.045 + 3 0.018 + 4 0.203 + 7 0.0856 + 8 0.0405 + 12 0.0045 + 13 0.018 + 14 0.00901 + 15 0.0541 + 19 0.00901 + 20 0.0045 + 21 0.0495 + 26 0.018 + 29 0.045 + 30 0.036 + 31 0.045 + 33 0.0225 + 34 0.144 + 35 0.018 + 36 0.00901 + 37 0.0135 + 45 0.036 + + 42 2 2 0 + 33 0.5 + 47 0.5 + + 55 241 21 0 + 0 0.0207 + 1 0.00415 + 2 0.12 + 4 0.0124 + 7 0.448 + 8 0.0166 + 15 0.00415 + 19 0.0083 + 21 0.0124 + 26 0.083 + 29 0.0083 + 30 0.0207 + 31 0.0332 + 33 0.0083 + 34 0.0249 + 37 0.0124 + 41 0.00415 + 42 0.0539 + 43 0.0083 + 44 0.0913 + 47 0.00415 + + 56 26 9 0 + 0 0.269 + 7 0.231 + 12 0.0385 + 19 0.0385 + 29 0.115 + 33 0.0385 + 34 0.0385 + 37 0.0385 + 44 0.192 + + 57 34 10 0 + 0 0.147 + 2 0.118 + 7 0.471 + 8 0.0294 + 13 0.0294 + 21 0.0294 + 26 0.0294 + 30 0.0588 + 31 0.0294 + 42 0.0588 + + 62 10 6 0 + 0 0.2 + 7 0.2 + 21 0.1 + 33 0.1 + 42 0.1 + 44 0.3 + + 65 1 1 0 + 47 1 + + 47 311752 46 59 + 0 0.0863 + 1 0.000289 + 2 0.0341 + 3 0.00328 + 4 0.0119 + 5 0.000103 + 6 4.49e-05 + 7 0.192 + 8 0.0132 + 9 0.000908 + 10 0.000763 + 12 0.0303 + 13 0.0146 + 14 0.00451 + 15 0.00615 + 16 0.000122 + 17 2.57e-05 + 18 0.000176 + 19 0.00338 + 20 0.000186 + 21 0.0233 + 22 0.00185 + 23 0.00017 + 24 0.000565 + 25 2.89e-05 + 26 0.031 + 28 0.00225 + 29 0.0626 + 30 0.00728 + 31 0.0105 + 32 0.0152 + 33 0.0222 + 34 0.00651 + 35 0.00307 + 36 0.00017 + 37 0.00209 + 38 1.92e-05 + 39 0.000504 + 40 0.207 + 41 0.166 + 42 0.0179 + 43 0.0038 + 44 0.00306 + 45 0.00251 + 46 0.00252 + 47 0.00512 + + 0 56 13 0 + 0 0.0179 + 7 0.125 + 8 0.0893 + 13 0.0357 + 15 0.0179 + 21 0.25 + 23 0.179 + 29 0.107 + 30 0.0714 + 31 0.0536 + 41 0.0179 + 43 0.0179 + 45 0.0179 + + 1 3 2 0 + 26 0.333 + 40 0.667 + + 2 3 2 0 + 0 0.333 + 21 0.667 + + 3 7697 38 0 + 0 0.019 + 2 0.0298 + 3 0.00065 + 4 0.099 + 6 0.00013 + 7 0.178 + 8 0.00429 + 9 0.00208 + 10 0.00013 + 12 0.00754 + 13 0.00455 + 14 0.00143 + 15 0.00429 + 19 0.00247 + 20 0.00026 + 21 0.0052 + 22 0.00026 + 23 0.00013 + 25 0.00013 + 26 0.0958 + 28 0.00013 + 29 0.0151 + 30 0.00338 + 31 0.00559 + 32 0.00117 + 33 0.00351 + 34 0.00273 + 35 0.000909 + 37 0.00338 + 39 0.00013 + 40 0.212 + 41 0.251 + 42 0.0227 + 43 0.0178 + 44 0.00182 + 45 0.0013 + 46 0.00065 + 47 0.00208 + + 4 2457 34 0 + 0 0.258 + 1 0.000814 + 2 0.00895 + 3 0.00204 + 4 0.00611 + 7 0.286 + 8 0.00773 + 9 0.000407 + 10 0.000407 + 12 0.0696 + 13 0.00692 + 14 0.00122 + 15 0.00122 + 18 0.000814 + 19 0.00895 + 21 0.0232 + 24 0.00204 + 26 0.00733 + 28 0.00407 + 29 0.0281 + 30 0.00692 + 31 0.0248 + 32 0.0228 + 33 0.0619 + 34 0.00611 + 35 0.0265 + 37 0.000407 + 40 0.0419 + 41 0.0696 + 42 0.0106 + 44 0.000407 + 45 0.00122 + 46 0.000814 + 47 0.00204 + + 5 861 10 0 + 0 0.861 + 4 0.00232 + 12 0.0848 + 18 0.0128 + 19 0.00116 + 21 0.0244 + 26 0.00116 + 33 0.00697 + 35 0.00116 + 41 0.00465 + + 6 59 14 0 + 0 0.0678 + 2 0.0339 + 7 0.102 + 12 0.0339 + 26 0.0678 + 31 0.0169 + 33 0.0678 + 40 0.254 + 41 0.203 + 42 0.0339 + 43 0.0169 + 44 0.0339 + 45 0.0169 + 46 0.0508 + + 7 79 19 0 + 0 0.152 + 2 0.0127 + 4 0.0506 + 5 0.0127 + 7 0.228 + 8 0.0127 + 12 0.038 + 18 0.0253 + 19 0.038 + 21 0.0253 + 22 0.0127 + 24 0.0127 + 26 0.0253 + 29 0.0127 + 31 0.0633 + 33 0.038 + 40 0.114 + 41 0.114 + 47 0.0127 + + 8 1187 34 0 + 0 0.0666 + 1 0.000842 + 2 0.0371 + 3 0.00253 + 4 0.00505 + 7 0.405 + 8 0.00758 + 9 0.00421 + 10 0.000842 + 12 0.0118 + 13 0.0143 + 14 0.00505 + 15 0.00421 + 19 0.00337 + 21 0.0177 + 22 0.00337 + 24 0.000842 + 26 0.0497 + 28 0.00168 + 29 0.0286 + 30 0.00505 + 31 0.00505 + 32 0.0118 + 33 0.00927 + 34 0.00253 + 35 0.00253 + 37 0.000842 + 40 0.131 + 41 0.131 + 42 0.0194 + 43 0.00505 + 44 0.00421 + 46 0.00168 + 47 0.000842 + + 9 235 13 0 + 0 0.0213 + 2 0.00851 + 4 0.00851 + 7 0.621 + 12 0.00426 + 21 0.0255 + 26 0.0766 + 29 0.00426 + 30 0.00426 + 31 0.0128 + 40 0.115 + 41 0.0894 + 42 0.00851 + + 10 367 21 0 + 0 0.0572 + 2 0.00272 + 4 0.00817 + 5 0.00272 + 7 0.711 + 8 0.00545 + 12 0.00545 + 13 0.00817 + 19 0.00817 + 21 0.0163 + 26 0.0109 + 28 0.00272 + 29 0.00272 + 30 0.00817 + 31 0.00272 + 32 0.0327 + 37 0.00272 + 40 0.0463 + 41 0.049 + 42 0.0136 + 45 0.00272 + + 12 3 3 0 + 40 0.333 + 41 0.333 + 43 0.333 + + 13 96406 46 0 + 0 0.0637 + 1 0.000353 + 2 0.0345 + 3 0.00505 + 4 0.00829 + 5 0.000145 + 6 5.19e-05 + 7 0.333 + 8 0.00742 + 9 0.00119 + 10 4.15e-05 + 12 0.0242 + 13 0.00407 + 14 0.000944 + 15 0.0048 + 16 3.11e-05 + 17 2.07e-05 + 18 2.07e-05 + 19 0.00561 + 20 0.00027 + 21 0.0238 + 22 0.0035 + 23 0.000114 + 24 0.000467 + 25 4.15e-05 + 26 0.0426 + 28 0.00132 + 29 0.0439 + 30 0.00859 + 31 0.0141 + 32 0.00186 + 33 0.0205 + 34 0.0107 + 35 0.00337 + 36 0.000249 + 37 0.00326 + 38 1.04e-05 + 39 0.000145 + 40 0.149 + 41 0.153 + 42 0.0151 + 43 0.00195 + 44 0.00201 + 45 0.00279 + 46 0.00327 + 47 0.000685 + + 14 55109 44 0 + 0 0.0843 + 1 0.000726 + 2 0.0441 + 3 0.00132 + 4 0.0177 + 5 9.07e-05 + 7 0.251 + 8 0.0175 + 9 0.00098 + 10 3.63e-05 + 12 0.0303 + 13 0.00218 + 14 0.000817 + 15 0.00212 + 16 3.63e-05 + 17 5.44e-05 + 18 3.63e-05 + 19 0.00468 + 20 0.000163 + 21 0.0335 + 22 0.00205 + 23 0.000127 + 24 0.000653 + 25 1.81e-05 + 26 0.0385 + 28 0.00356 + 29 0.0533 + 30 0.0147 + 31 0.0227 + 32 0.0389 + 33 0.00203 + 34 0.0132 + 35 0.00744 + 36 0.000472 + 37 0.00227 + 39 0.000327 + 40 0.146 + 41 0.131 + 42 0.0194 + 43 0.00156 + 44 0.00454 + 45 0.00238 + 46 0.00281 + 47 0.00107 + + 15 37150 40 0 + 0 0.0859 + 1 8.08e-05 + 2 0.0517 + 3 0.00261 + 4 0.0052 + 5 5.38e-05 + 6 2.69e-05 + 7 0.0953 + 8 0.00377 + 9 0.000242 + 12 0.0275 + 13 0.00353 + 14 0.00116 + 15 0.00571 + 17 2.69e-05 + 18 0.000673 + 19 0.00175 + 20 0.000296 + 21 0.0225 + 22 0.000834 + 24 8.08e-05 + 26 0.0186 + 28 0.00221 + 29 0.135 + 30 0.00363 + 31 0.00186 + 32 0.00363 + 33 0.0419 + 34 0.0024 + 35 0.00145 + 37 0.00132 + 39 0.000619 + 40 0.126 + 41 0.315 + 42 0.0153 + 43 0.00729 + 44 0.00686 + 45 0.00202 + 46 0.00347 + 47 0.00331 + + 16 1540 34 0 + 0 0.123 + 2 0.0604 + 3 0.0013 + 4 0.00519 + 5 0.000649 + 7 0.11 + 8 0.00519 + 9 0.000649 + 12 0.0403 + 13 0.00519 + 14 0.00195 + 15 0.00325 + 19 0.0026 + 20 0.000649 + 21 0.026 + 22 0.000649 + 26 0.0234 + 28 0.000649 + 29 0.112 + 30 0.00584 + 31 0.0039 + 32 0.037 + 33 0.0156 + 34 0.000649 + 35 0.0169 + 36 0.000649 + 40 0.128 + 41 0.216 + 42 0.0266 + 43 0.0039 + 44 0.0039 + 45 0.00195 + 46 0.00325 + 47 0.0136 + + 17 3 1 0 + 4 1 + + 18 8655 34 0 + 0 0.00508 + 2 0.00659 + 3 0.0261 + 4 0.000231 + 6 0.000231 + 7 0.00208 + 8 0.207 + 9 0.00173 + 10 0.026 + 12 0.00104 + 13 0.417 + 14 0.13 + 15 0.104 + 16 0.00381 + 19 0.000116 + 21 0.00555 + 22 0.000347 + 23 0.00208 + 26 0.000231 + 28 0.000347 + 29 0.00439 + 30 0.0117 + 31 0.00739 + 32 0.000462 + 33 0.00104 + 38 0.000578 + 39 0.0101 + 40 0.00485 + 41 0.00601 + 42 0.000231 + 43 0.000924 + 44 0.000231 + 45 0.0117 + 46 0.000231 + + 19 17347 41 0 + 0 0.301 + 1 0.000173 + 2 0.00761 + 3 0.000807 + 4 0.0115 + 5 0.000115 + 6 5.76e-05 + 7 0.0349 + 8 0.00738 + 9 0.00133 + 10 0.000115 + 12 0.124 + 13 0.00202 + 14 0.000749 + 15 0.000576 + 17 0.000115 + 18 0.000634 + 19 0.00161 + 20 0.000115 + 21 0.0537 + 22 0.00156 + 23 0.000173 + 24 0.00455 + 26 0.0163 + 28 0.0117 + 29 0.166 + 30 0.00242 + 31 0.0019 + 32 0.0775 + 33 0.106 + 34 0.000288 + 35 0.000634 + 37 0.00121 + 39 0.000288 + 40 0.0313 + 41 0.021 + 42 0.00334 + 43 0.000346 + 44 0.000865 + 45 0.00346 + 46 0.000461 + + 20 22 10 0 + 0 0.136 + 1 0.0909 + 13 0.0909 + 15 0.0455 + 21 0.0455 + 30 0.364 + 40 0.0455 + 41 0.0909 + 42 0.0455 + 43 0.0455 + + 21 515 31 0 + 0 0.0641 + 2 0.0272 + 3 0.00388 + 4 0.0155 + 6 0.00194 + 7 0.243 + 8 0.035 + 9 0.0136 + 12 0.0155 + 13 0.0136 + 14 0.00388 + 15 0.00388 + 19 0.0194 + 21 0.0214 + 22 0.0117 + 26 0.0311 + 28 0.00388 + 29 0.00583 + 30 0.00583 + 31 0.00971 + 32 0.00583 + 33 0.0117 + 34 0.00194 + 37 0.00194 + 40 0.181 + 41 0.217 + 42 0.0214 + 43 0.00194 + 44 0.00388 + 46 0.00194 + 47 0.00194 + + 22 48 11 0 + 2 0.0625 + 7 0.521 + 8 0.0417 + 12 0.0208 + 21 0.0208 + 29 0.0208 + 31 0.0208 + 37 0.0208 + 40 0.0833 + 41 0.167 + 42 0.0208 + + 23 19 8 0 + 7 0.579 + 8 0.0526 + 19 0.0526 + 21 0.105 + 29 0.0526 + 31 0.0526 + 40 0.0526 + 41 0.0526 + + 24 8 3 0 + 7 0.5 + 40 0.25 + 41 0.25 + + 25 13 2 0 + 3 0.0769 + 42 0.923 + + 26 1 1 0 + 28 1 + + 27 4 3 0 + 40 0.5 + 42 0.25 + 46 0.25 + + 28 87 15 0 + 0 0.0115 + 2 0.0345 + 4 0.0805 + 7 0.437 + 8 0.0345 + 13 0.0115 + 15 0.0115 + 21 0.046 + 26 0.069 + 29 0.023 + 40 0.103 + 41 0.092 + 42 0.0115 + 46 0.023 + 47 0.0115 + + 29 6 5 0 + 4 0.167 + 7 0.333 + 8 0.167 + 29 0.167 + 33 0.167 + + 30 255 24 0 + 0 0.0706 + 2 0.0314 + 4 0.00784 + 7 0.435 + 8 0.0196 + 12 0.0275 + 13 0.00392 + 14 0.00392 + 19 0.00392 + 21 0.0275 + 22 0.00392 + 26 0.0314 + 29 0.0235 + 30 0.00392 + 31 0.00784 + 32 0.00392 + 33 0.0157 + 37 0.00392 + 40 0.141 + 41 0.098 + 42 0.0157 + 43 0.00392 + 44 0.00392 + 46 0.0118 + + 31 27 11 0 + 0 0.0741 + 2 0.0741 + 4 0.037 + 7 0.185 + 12 0.111 + 14 0.037 + 24 0.037 + 26 0.037 + 29 0.185 + 40 0.148 + 41 0.0741 + + 32 3 3 0 + 0 0.333 + 32 0.333 + 33 0.333 + + 33 63 17 0 + 0 0.0159 + 3 0.0476 + 4 0.175 + 7 0.127 + 8 0.0952 + 10 0.0159 + 13 0.0159 + 14 0.0317 + 19 0.0635 + 21 0.0317 + 22 0.0159 + 26 0.0952 + 30 0.0159 + 34 0.0159 + 40 0.0159 + 41 0.206 + 45 0.0159 + + 34 58 6 0 + 0 0.259 + 4 0.0172 + 12 0.379 + 21 0.0345 + 29 0.19 + 33 0.121 + + 35 6 4 0 + 0 0.333 + 26 0.167 + 40 0.333 + 41 0.167 + + 40 975 10 0 + 0 0.00103 + 12 0.00103 + 15 0.00615 + 21 0.00103 + 26 0.00103 + 43 0.0677 + 44 0.0513 + 45 0.00103 + 46 0.00308 + 47 0.867 + + 41 4997 30 0 + 0 0.238 + 2 0.0332 + 3 0.0014 + 4 0.0254 + 7 0.0903 + 8 0.0054 + 9 0.0004 + 10 0.0002 + 12 0.064 + 13 0.00981 + 14 0.0036 + 15 0.00961 + 19 0.003 + 21 0.0476 + 22 0.0006 + 23 0.0002 + 26 0.0272 + 28 0.0012 + 29 0.288 + 30 0.00901 + 31 0.0124 + 32 0.013 + 33 0.104 + 34 0.0038 + 35 0.0012 + 36 0.0002 + 37 0.0026 + 39 0.0002 + 45 0.0042 + 46 0.0006 + + 42 330 23 0 + 0 0.115 + 2 0.0212 + 4 0.0152 + 7 0.0485 + 8 0.00303 + 12 0.0424 + 13 0.00303 + 14 0.00606 + 15 0.00606 + 19 0.00606 + 20 0.00303 + 21 0.0273 + 26 0.0121 + 28 0.00606 + 29 0.0758 + 30 0.00303 + 31 0.00606 + 32 0.0121 + 33 0.0212 + 34 0.00303 + 37 0.00606 + 45 0.00303 + 47 0.555 + + 43 92 18 0 + 0 0.0978 + 2 0.087 + 4 0.0217 + 7 0.152 + 12 0.0435 + 21 0.0217 + 26 0.0109 + 29 0.0109 + 30 0.0109 + 31 0.0109 + 32 0.0217 + 33 0.0652 + 34 0.0109 + 35 0.0109 + 40 0.13 + 41 0.12 + 42 0.109 + 47 0.0652 + + 45 4 4 0 + 0 0.25 + 2 0.25 + 7 0.25 + 32 0.25 + + 46 480 27 0 + 0 0.119 + 1 0.00208 + 2 0.0542 + 4 0.0208 + 7 0.365 + 8 0.0104 + 12 0.0292 + 13 0.00417 + 15 0.00833 + 19 0.00833 + 21 0.0396 + 26 0.0521 + 29 0.0396 + 30 0.00833 + 31 0.0292 + 32 0.00625 + 33 0.0292 + 34 0.0417 + 35 0.0125 + 37 0.0125 + 40 0.00625 + 41 0.0104 + 42 0.0333 + 43 0.00625 + 44 0.0229 + 46 0.00417 + 47 0.025 + + 48 1062 27 0 + 0 0.0546 + 2 0.032 + 4 0.000942 + 7 0.0706 + 8 0.000942 + 9 0.000942 + 12 0.0188 + 13 0.00471 + 15 0.000942 + 19 0.000942 + 21 0.00659 + 26 0.0141 + 28 0.000942 + 29 0.0753 + 30 0.000942 + 31 0.00377 + 32 0.0226 + 33 0.00847 + 34 0.000942 + 37 0.00282 + 40 0.469 + 41 0.171 + 42 0.032 + 43 0.000942 + 44 0.000942 + 45 0.00282 + 46 0.000942 + + 49 817 24 0 + 0 0.0673 + 2 0.0171 + 4 0.00367 + 7 0.0355 + 8 0.00245 + 12 0.00857 + 15 0.00122 + 21 0.00857 + 22 0.00122 + 26 0.0122 + 28 0.00245 + 29 0.0257 + 30 0.00367 + 31 0.00122 + 32 0.0147 + 33 0.00612 + 34 0.00122 + 40 0.518 + 41 0.179 + 42 0.071 + 44 0.00122 + 45 0.00367 + 46 0.00245 + 47 0.0122 + + 51 8 5 0 + 2 0.125 + 33 0.125 + 40 0.25 + 41 0.125 + 47 0.375 + + 54 7 4 0 + 0 0.143 + 13 0.143 + 40 0.429 + 41 0.286 + + 55 13149 39 0 + 0 0.0396 + 2 0.00867 + 3 0.00205 + 4 0.0054 + 5 7.61e-05 + 6 0.000152 + 7 0.0588 + 8 0.00342 + 9 0.000456 + 12 0.0129 + 13 0.000913 + 14 0.000152 + 15 0.000913 + 19 0.000532 + 20 0.000152 + 21 0.00829 + 22 0.000456 + 23 7.61e-05 + 24 0.000152 + 25 0.000152 + 26 0.013 + 28 0.000989 + 29 0.0295 + 30 0.00205 + 31 0.0035 + 32 0.0103 + 33 0.00464 + 34 0.00243 + 35 0.000913 + 36 7.61e-05 + 37 0.000608 + 40 0.508 + 41 0.208 + 42 0.0503 + 43 0.00973 + 44 0.00106 + 45 0.000913 + 46 0.00122 + 47 0.01 + + 56 409 24 0 + 0 0.0513 + 2 0.0122 + 3 0.00244 + 4 0.00978 + 7 0.174 + 8 0.00244 + 12 0.0269 + 14 0.00244 + 21 0.00489 + 26 0.0171 + 28 0.00244 + 29 0.0147 + 30 0.00733 + 31 0.00978 + 32 0.0269 + 33 0.00489 + 34 0.0122 + 35 0.00978 + 39 0.00244 + 40 0.35 + 41 0.237 + 42 0.0122 + 44 0.00244 + 46 0.00489 + + 57 38167 39 0 + 0 0.0755 + 1 0.000105 + 2 0.0403 + 3 0.00055 + 4 0.0043 + 5 0.000131 + 6 2.62e-05 + 7 0.0629 + 8 0.00333 + 9 0.000131 + 12 0.0243 + 13 0.0021 + 14 0.000812 + 15 0.0017 + 19 0.00102 + 20 2.62e-05 + 21 0.0137 + 22 0.000786 + 23 2.62e-05 + 24 7.86e-05 + 26 0.0196 + 28 0.000891 + 29 0.0437 + 30 0.00424 + 31 0.00383 + 32 0.0103 + 33 0.0117 + 34 0.00113 + 35 0.00055 + 37 0.00186 + 39 0.000131 + 40 0.432 + 41 0.205 + 42 0.0232 + 43 0.0022 + 44 0.00191 + 45 0.00176 + 46 0.0027 + 47 0.00144 + + 58 873 28 0 + 0 0.123 + 2 0.0767 + 3 0.0115 + 4 0.0275 + 7 0.139 + 8 0.00229 + 12 0.0401 + 13 0.00229 + 14 0.00344 + 15 0.00229 + 19 0.00458 + 20 0.00115 + 21 0.0229 + 26 0.0321 + 28 0.00229 + 29 0.0527 + 30 0.00344 + 31 0.00229 + 32 0.0275 + 33 0.0367 + 34 0.00458 + 35 0.00229 + 39 0.00115 + 40 0.181 + 41 0.136 + 42 0.0504 + 45 0.00115 + 47 0.0103 + + 60 5584 31 0 + 0 0.00985 + 2 0.0177 + 3 0.00681 + 4 0.0518 + 7 0.358 + 8 0.00734 + 9 0.00412 + 12 0.00304 + 13 0.00358 + 14 0.000179 + 15 0.00304 + 19 0.00125 + 20 0.000179 + 21 0.00591 + 22 0.000179 + 25 0.000179 + 26 0.0566 + 29 0.00304 + 30 0.00251 + 31 0.0077 + 34 0.000895 + 35 0.000537 + 37 0.000179 + 40 0.186 + 41 0.219 + 42 0.0136 + 43 0.0279 + 44 0.00663 + 45 0.000358 + 46 0.000179 + 47 0.00125 + + 61 29 6 0 + 0 0.0345 + 29 0.0345 + 33 0.0345 + 40 0.69 + 41 0.138 + 42 0.069 + + 62 1522 28 0 + 0 0.0453 + 2 0.0191 + 3 0.000657 + 4 0.00197 + 7 0.0315 + 8 0.000657 + 12 0.021 + 15 0.00131 + 19 0.000657 + 21 0.00788 + 22 0.00131 + 26 0.00197 + 28 0.000657 + 29 0.0177 + 30 0.000657 + 31 0.00131 + 32 0.00263 + 33 0.00986 + 34 0.000657 + 37 0.00131 + 40 0.633 + 41 0.171 + 42 0.0138 + 43 0.00329 + 44 0.000657 + 45 0.00197 + 46 0.00263 + 47 0.00526 + + 64 8611 29 0 + 0 0.046 + 2 0.0135 + 4 0.00105 + 7 0.0108 + 12 0.017 + 13 0.000465 + 14 0.000116 + 15 0.000232 + 19 0.000929 + 20 0.000116 + 21 0.0043 + 22 0.000348 + 26 0.00325 + 28 0.000697 + 29 0.00975 + 30 0.000813 + 31 0.000581 + 32 0.00499 + 33 0.00325 + 34 0.000116 + 37 0.000232 + 40 0.694 + 41 0.157 + 42 0.0238 + 43 0.00151 + 44 0.00151 + 45 0.00128 + 46 0.00116 + 47 0.00128 + + 65 8 3 0 + 40 0.5 + 46 0.125 + 47 0.375 + + 67 4 4 0 + 40 0.25 + 42 0.25 + 46 0.25 + 47 0.25 + + 68 65 9 0 + 0 0.0308 + 2 0.0308 + 7 0.0769 + 26 0.0308 + 29 0.0308 + 32 0.0462 + 40 0.631 + 41 0.0769 + 42 0.0462 + + 69 4185 30 0 + 0 0.0712 + 2 0.0229 + 3 0.000239 + 4 0.00191 + 7 0.0244 + 8 0.000478 + 12 0.0318 + 13 0.000478 + 15 0.000239 + 21 0.00956 + 22 0.000956 + 26 0.00789 + 28 0.00119 + 29 0.037 + 30 0.00119 + 31 0.0043 + 32 0.0148 + 33 0.0103 + 34 0.000478 + 35 0.000239 + 37 0.000478 + 39 0.000239 + 40 0.542 + 41 0.18 + 42 0.0277 + 43 0.00335 + 44 0.00119 + 45 0.000717 + 46 0.00119 + 47 0.00215 + + 73 3 3 0 + 0 0.333 + 32 0.333 + 41 0.333 + + 74 13 5 0 + 0 0.0769 + 26 0.0769 + 40 0.154 + 41 0.0769 + 47 0.615 + + 48 1396 29 9 + 0 0.0415 + 2 0.0244 + 4 0.00143 + 7 0.0752 + 8 0.00143 + 9 0.00645 + 12 0.0143 + 13 0.0043 + 15 0.000716 + 19 0.00143 + 21 0.00716 + 26 0.0186 + 28 0.00143 + 29 0.0573 + 30 0.00215 + 31 0.00716 + 32 0.0172 + 33 0.00716 + 34 0.00143 + 35 0.000716 + 37 0.00215 + 39 0.0043 + 40 0.362 + 41 0.304 + 42 0.0279 + 43 0.00143 + 44 0.00215 + 45 0.00287 + 46 0.00143 + + 0 1 1 0 + 44 1 + + 4 66 14 0 + 0 0.0455 + 2 0.0152 + 7 0.379 + 8 0.0152 + 12 0.0152 + 13 0.0152 + 19 0.0152 + 26 0.0455 + 29 0.0152 + 30 0.0152 + 39 0.0909 + 40 0.152 + 41 0.136 + 42 0.0455 + + 41 264 6 0 + 2 0.00379 + 7 0.00758 + 26 0.0114 + 40 0.261 + 41 0.705 + 42 0.0114 + + 42 18 3 0 + 40 0.667 + 41 0.0556 + 42 0.278 + + 44 1 1 0 + 43 1 + + 45 6 5 0 + 40 0.333 + 41 0.167 + 42 0.167 + 44 0.167 + 46 0.167 + + 47 19 8 0 + 2 0.0526 + 7 0.211 + 9 0.421 + 13 0.105 + 28 0.0526 + 30 0.0526 + 33 0.0526 + 40 0.0526 + + 55 951 28 0 + 0 0.0568 + 2 0.0326 + 4 0.0021 + 7 0.0747 + 8 0.00105 + 9 0.00105 + 12 0.0189 + 13 0.00315 + 15 0.00105 + 19 0.00105 + 21 0.0105 + 26 0.021 + 28 0.00105 + 29 0.0831 + 30 0.00105 + 31 0.0105 + 32 0.0252 + 33 0.00946 + 34 0.0021 + 35 0.00105 + 37 0.00315 + 40 0.396 + 41 0.209 + 42 0.0263 + 43 0.00105 + 44 0.00105 + 45 0.00421 + 46 0.00105 + + 57 51 5 0 + 7 0.0196 + 12 0.0196 + 40 0.471 + 41 0.451 + 42 0.0392 + + 49 1035 32 6 + 0 0.0531 + 1 0.000966 + 2 0.0145 + 3 0.00483 + 4 0.0386 + 7 0.0725 + 8 0.0145 + 9 0.00193 + 12 0.00676 + 13 0.0164 + 14 0.0116 + 15 0.0116 + 20 0.0029 + 21 0.00966 + 22 0.00193 + 26 0.0184 + 28 0.00193 + 29 0.0203 + 30 0.0029 + 31 0.00193 + 32 0.0116 + 33 0.00483 + 34 0.00386 + 35 0.00386 + 37 0.000966 + 40 0.411 + 41 0.184 + 42 0.058 + 44 0.000966 + 45 0.0029 + 46 0.00193 + 47 0.00966 + + 2 45 9 0 + 4 0.311 + 8 0.133 + 13 0.156 + 14 0.133 + 15 0.0667 + 20 0.0444 + 21 0.0222 + 40 0.0444 + 41 0.0889 + + 41 350 16 0 + 2 0.00286 + 3 0.0143 + 4 0.0629 + 7 0.00286 + 8 0.00857 + 9 0.00571 + 13 0.0229 + 14 0.0171 + 15 0.02 + 20 0.00286 + 21 0.00571 + 22 0.00286 + 40 0.506 + 41 0.166 + 42 0.131 + 47 0.0286 + + 42 10 5 0 + 8 0.2 + 13 0.1 + 40 0.4 + 41 0.1 + 42 0.2 + + 47 1 1 0 + 32 1 + + 55 548 26 0 + 0 0.0912 + 1 0.00182 + 2 0.0237 + 4 0.00547 + 7 0.128 + 8 0.0073 + 12 0.00912 + 13 0.00182 + 15 0.00365 + 21 0.0109 + 22 0.00182 + 26 0.031 + 28 0.00365 + 29 0.0328 + 30 0.00547 + 31 0.00365 + 32 0.0182 + 33 0.0073 + 34 0.00365 + 35 0.00547 + 37 0.00182 + 40 0.369 + 41 0.204 + 42 0.0201 + 45 0.00547 + 46 0.00365 + + 57 73 15 0 + 0 0.0685 + 2 0.0137 + 7 0.0411 + 12 0.0274 + 21 0.0137 + 26 0.0137 + 29 0.0411 + 32 0.0137 + 33 0.0137 + 34 0.0274 + 35 0.0137 + 40 0.534 + 41 0.151 + 42 0.0137 + 44 0.0137 + + 50 146 15 1 + 3 0.0342 + 4 0.384 + 8 0.144 + 9 0.0137 + 13 0.123 + 14 0.13 + 15 0.0548 + 16 0.00685 + 20 0.0411 + 21 0.0137 + 22 0.00685 + 30 0.0137 + 31 0.0137 + 39 0.00685 + 45 0.0137 + + 46 1 1 0 + 45 1 + + 51 8 5 0 + 2 0.125 + 33 0.125 + 40 0.25 + 41 0.125 + 47 0.375 + + 54 8 4 0 + 0 0.125 + 13 0.125 + 40 0.375 + 41 0.375 + + 55 92386 44 25 + 0 0.00569 + 1 0.000487 + 2 0.0599 + 3 0.0061 + 4 0.022 + 5 3.25e-05 + 6 7.58e-05 + 7 0.423 + 8 0.0122 + 9 0.000509 + 10 0.000108 + 12 0.00184 + 13 0.00187 + 14 0.000682 + 15 0.00441 + 16 3.25e-05 + 17 2.16e-05 + 19 0.00704 + 20 0.000216 + 21 0.011 + 22 0.000346 + 23 0.000152 + 24 7.58e-05 + 25 5.41e-05 + 26 0.0266 + 28 0.000162 + 29 0.0062 + 30 0.0132 + 31 0.0246 + 32 0.00149 + 33 0.000671 + 34 0.0181 + 35 0.00889 + 36 0.000563 + 37 0.00232 + 39 0.000433 + 40 0.0776 + 41 0.217 + 42 0.0281 + 43 0.00179 + 44 0.00812 + 45 0.0015 + 46 0.00279 + 47 0.00143 + + 2 6756 35 0 + 0 0.0628 + 2 0.0154 + 3 0.000148 + 4 0.00681 + 5 0.000148 + 7 0.0813 + 8 0.00488 + 9 0.000148 + 12 0.0207 + 13 0.00133 + 14 0.000888 + 15 0.000888 + 19 0.000592 + 21 0.0148 + 22 0.000444 + 23 0.000148 + 26 0.016 + 28 0.00192 + 29 0.0423 + 30 0.00355 + 31 0.00459 + 32 0.017 + 33 0.00266 + 34 0.00429 + 35 0.00148 + 36 0.000148 + 37 0.000888 + 40 0.412 + 41 0.25 + 42 0.0232 + 43 0.00192 + 44 0.00133 + 45 0.00148 + 46 0.00192 + 47 0.00178 + + 4 104 10 0 + 0 0.0192 + 2 0.865 + 3 0.00962 + 7 0.00962 + 9 0.00962 + 12 0.00962 + 21 0.00962 + 29 0.0192 + 40 0.0192 + 41 0.0288 + + 6 2 2 0 + 40 0.5 + 47 0.5 + + 7 24 7 0 + 0 0.0417 + 2 0.0417 + 29 0.0417 + 32 0.0417 + 40 0.5 + 41 0.25 + 42 0.0833 + + 8 5 4 0 + 7 0.2 + 29 0.2 + 40 0.4 + 42 0.2 + + 13 6 4 0 + 4 0.167 + 30 0.167 + 40 0.167 + 41 0.5 + + 15 8 5 0 + 2 0.125 + 7 0.125 + 29 0.125 + 41 0.5 + 42 0.125 + + 17 14 4 0 + 0 0.0714 + 2 0.714 + 40 0.143 + 41 0.0714 + + 20 4 3 0 + 12 0.25 + 40 0.5 + 41 0.25 + + 21 120 9 0 + 0 0.00833 + 2 0.0667 + 7 0.025 + 8 0.0167 + 26 0.00833 + 40 0.55 + 41 0.292 + 42 0.025 + 43 0.00833 + + 26 49 8 0 + 3 0.49 + 4 0.0408 + 7 0.102 + 8 0.0204 + 19 0.0204 + 40 0.224 + 41 0.0408 + 42 0.0612 + + 40 7 2 0 + 40 0.857 + 41 0.143 + + 41 8157 24 0 + 0 0.00356 + 2 0.114 + 4 0.000613 + 7 0.00282 + 12 0.000613 + 14 0.000245 + 20 0.000123 + 21 0.00049 + 22 0.000123 + 26 0.000613 + 29 0.00699 + 31 0.000368 + 32 0.000123 + 33 0.00331 + 34 0.000736 + 35 0.0011 + 40 0.303 + 41 0.527 + 42 0.0177 + 43 0.0116 + 44 0.00147 + 45 0.000123 + 46 0.000245 + 47 0.00368 + + 42 1360 18 0 + 0 0.00147 + 2 0.00588 + 3 0.00368 + 6 0.000735 + 7 0.00515 + 8 0.000735 + 9 0.000735 + 19 0.000735 + 25 0.00221 + 30 0.00147 + 32 0.000735 + 34 0.000735 + 40 0.561 + 41 0.0449 + 42 0.318 + 43 0.011 + 46 0.00441 + 47 0.036 + + 44 37 5 0 + 7 0.0811 + 40 0.027 + 41 0.027 + 42 0.0811 + 43 0.784 + + 45 324 10 0 + 2 0.0185 + 7 0.0494 + 21 0.00309 + 26 0.00309 + 30 0.00309 + 34 0.00309 + 40 0.133 + 41 0.327 + 42 0.00617 + 46 0.454 + + 46 65 5 0 + 7 0.0154 + 40 0.523 + 41 0.431 + 43 0.0154 + 46 0.0154 + + 47 72120 41 0 + 0 6.93e-05 + 1 0.000624 + 2 0.0597 + 3 0.00738 + 4 0.027 + 5 2.77e-05 + 6 6.93e-05 + 7 0.529 + 8 0.0149 + 9 0.000568 + 10 0.000139 + 13 0.0022 + 14 0.000749 + 15 0.00535 + 16 4.16e-05 + 17 2.77e-05 + 19 0.00892 + 20 0.00025 + 21 0.0123 + 22 0.000333 + 23 0.00018 + 24 6.93e-05 + 25 1.39e-05 + 26 0.0315 + 28 2.77e-05 + 29 0.00257 + 30 0.0164 + 31 0.0309 + 32 4.16e-05 + 33 1.39e-05 + 34 0.0226 + 35 0.0111 + 36 0.000707 + 37 0.00284 + 39 0.000527 + 40 0.000111 + 41 0.177 + 42 0.0204 + 44 0.0101 + 45 0.00176 + 46 0.00122 + + 48 4 4 0 + 0 0.25 + 2 0.25 + 12 0.25 + 40 0.25 + + 49 129 11 0 + 0 0.0155 + 2 0.093 + 4 0.00775 + 7 0.093 + 22 0.00775 + 26 0.0233 + 35 0.0155 + 37 0.00775 + 40 0.419 + 41 0.302 + 42 0.0155 + + 50 156 12 0 + 0 0.00641 + 2 0.0385 + 7 0.0449 + 12 0.00641 + 13 0.00641 + 14 0.00641 + 29 0.00641 + 31 0.00641 + 32 0.00641 + 40 0.66 + 41 0.192 + 42 0.0192 + + 55 2717 34 0 + 0 0.0184 + 2 0.0158 + 3 0.000368 + 4 0.00957 + 6 0.000368 + 7 0.119 + 8 0.00405 + 9 0.0011 + 12 0.00626 + 13 0.00147 + 15 0.00552 + 19 0.000368 + 20 0.000368 + 21 0.00589 + 22 0.0011 + 24 0.000736 + 25 0.000368 + 26 0.025 + 29 0.0118 + 30 0.00147 + 31 0.00405 + 32 0.00515 + 33 0.00552 + 34 0.00184 + 35 0.000368 + 37 0.000736 + 40 0.259 + 41 0.342 + 42 0.134 + 43 0.00331 + 44 0.000368 + 45 0.000368 + 46 0.000368 + 47 0.0144 + + 57 160 13 0 + 0 0.0375 + 2 0.0437 + 7 0.0812 + 12 0.025 + 26 0.025 + 29 0.0437 + 31 0.00625 + 32 0.0125 + 33 0.00625 + 35 0.00625 + 40 0.494 + 41 0.206 + 43 0.0125 + + 58 37 7 0 + 0 0.027 + 7 0.0811 + 40 0.541 + 41 0.216 + 42 0.0811 + 44 0.027 + 47 0.027 + + 60 8 5 0 + 2 0.125 + 7 0.125 + 21 0.125 + 39 0.25 + 40 0.375 + + 56 440 24 15 + 0 0.0477 + 2 0.0114 + 3 0.00227 + 4 0.00909 + 7 0.161 + 8 0.00227 + 12 0.025 + 14 0.00227 + 21 0.00455 + 26 0.0159 + 28 0.00227 + 29 0.0136 + 30 0.00909 + 31 0.00909 + 32 0.025 + 33 0.00455 + 34 0.0114 + 35 0.00909 + 39 0.00227 + 40 0.325 + 41 0.23 + 42 0.0114 + 44 0.00227 + 46 0.0636 + + 4 120 16 0 + 0 0.0583 + 2 0.0167 + 7 0.242 + 12 0.0667 + 14 0.00833 + 28 0.00833 + 31 0.025 + 32 0.025 + 33 0.00833 + 34 0.0167 + 35 0.00833 + 40 0.317 + 41 0.167 + 42 0.00833 + 44 0.00833 + 46 0.0167 + + 8 69 14 0 + 0 0.0725 + 3 0.0145 + 4 0.0145 + 7 0.217 + 8 0.0145 + 12 0.0145 + 21 0.0145 + 26 0.0435 + 30 0.0145 + 32 0.0145 + 34 0.0145 + 35 0.0145 + 40 0.333 + 41 0.203 + + 13 3 2 0 + 30 0.667 + 40 0.333 + + 14 11 7 0 + 2 0.0909 + 29 0.0909 + 32 0.0909 + 33 0.0909 + 40 0.364 + 41 0.182 + 46 0.0909 + + 15 14 4 0 + 0 0.143 + 7 0.0714 + 40 0.357 + 41 0.429 + + 20 36 9 0 + 0 0.0278 + 2 0.0278 + 7 0.25 + 26 0.0278 + 29 0.0556 + 32 0.0556 + 40 0.306 + 41 0.222 + 42 0.0278 + + 21 3 3 0 + 12 0.333 + 41 0.333 + 42 0.333 + + 30 2 2 0 + 0 0.5 + 34 0.5 + + 31 2 2 0 + 7 0.5 + 34 0.5 + + 34 1 1 0 + 4 1 + + 45 61 3 0 + 40 0.246 + 41 0.344 + 46 0.41 + + 48 10 6 0 + 4 0.1 + 7 0.2 + 21 0.1 + 32 0.1 + 40 0.4 + 41 0.1 + + 54 2 2 0 + 35 0.5 + 40 0.5 + + 55 75 12 0 + 0 0.0533 + 2 0.0133 + 4 0.0133 + 7 0.107 + 12 0.0133 + 26 0.0267 + 29 0.0267 + 32 0.0133 + 39 0.0133 + 40 0.347 + 41 0.36 + 42 0.0133 + + 60 14 6 0 + 7 0.214 + 30 0.0714 + 31 0.0714 + 32 0.0714 + 35 0.0714 + 40 0.5 + + 57 43057 41 14 + 0 0.0669 + 1 0.000279 + 2 0.0358 + 3 0.00065 + 4 0.00604 + 5 0.000139 + 6 4.65e-05 + 7 0.106 + 8 0.00476 + 9 0.000139 + 12 0.0216 + 13 0.00232 + 14 0.000836 + 15 0.00272 + 19 0.00183 + 20 2.32e-05 + 21 0.0136 + 22 0.000883 + 23 2.32e-05 + 24 6.97e-05 + 25 2.32e-05 + 26 0.0268 + 28 0.00079 + 29 0.039 + 30 0.00595 + 31 0.00711 + 32 0.00917 + 33 0.0104 + 34 0.0066 + 35 0.00249 + 36 2.32e-05 + 37 0.00221 + 39 0.000116 + 40 0.386 + 41 0.206 + 42 0.0223 + 43 0.00232 + 44 0.00221 + 45 0.00167 + 46 0.00318 + 47 0.00128 + + 2 4 4 0 + 4 0.25 + 15 0.25 + 40 0.25 + 41 0.25 + + 13 20 7 0 + 4 0.05 + 12 0.05 + 26 0.1 + 34 0.05 + 40 0.5 + 41 0.2 + 46 0.05 + + 41 1101 20 0 + 0 0.00363 + 2 0.00272 + 4 0.00182 + 7 0.0163 + 12 0.00182 + 15 0.000908 + 21 0.00182 + 26 0.00363 + 29 0.00636 + 31 0.00182 + 32 0.00182 + 33 0.00182 + 34 0.00182 + 40 0.554 + 41 0.378 + 42 0.0145 + 43 0.00182 + 44 0.000908 + 46 0.000908 + 47 0.00363 + + 42 51 5 0 + 7 0.0196 + 40 0.392 + 41 0.0784 + 42 0.471 + 46 0.0392 + + 44 14 2 0 + 0 0.0714 + 43 0.929 + + 45 21 5 0 + 7 0.0476 + 40 0.476 + 41 0.238 + 42 0.0952 + 46 0.143 + + 46 145 15 0 + 0 0.0345 + 2 0.0138 + 4 0.0069 + 7 0.0483 + 8 0.0069 + 21 0.0207 + 26 0.0207 + 29 0.0069 + 33 0.0069 + 34 0.0069 + 40 0.434 + 41 0.331 + 42 0.0345 + 44 0.0138 + 45 0.0138 + + 48 31 5 0 + 2 0.0323 + 7 0.226 + 40 0.419 + 41 0.29 + 42 0.0323 + + 49 43 8 0 + 0 0.0233 + 2 0.0233 + 7 0.0698 + 26 0.0465 + 29 0.0233 + 40 0.419 + 41 0.372 + 42 0.0233 + + 55 39258 41 0 + 0 0.0695 + 1 0.000306 + 2 0.0374 + 3 0.000662 + 4 0.00642 + 5 0.000153 + 6 5.09e-05 + 7 0.111 + 8 0.00497 + 9 0.000153 + 12 0.0224 + 13 0.00242 + 14 0.000917 + 15 0.00285 + 19 0.00199 + 20 2.55e-05 + 21 0.0143 + 22 0.000942 + 23 2.55e-05 + 24 7.64e-05 + 25 2.55e-05 + 26 0.0284 + 28 0.000841 + 29 0.0411 + 30 0.00629 + 31 0.00746 + 32 0.00978 + 33 0.0109 + 34 0.00693 + 35 0.0027 + 36 2.55e-05 + 37 0.00211 + 39 0.000127 + 40 0.374 + 41 0.202 + 42 0.0215 + 43 0.00201 + 44 0.00217 + 45 0.00163 + 46 0.00326 + 47 0.0012 + + 57 2232 30 0 + 0 0.06 + 2 0.0291 + 3 0.000896 + 4 0.00134 + 7 0.0824 + 8 0.00358 + 12 0.0206 + 13 0.00224 + 15 0.00134 + 19 0.000448 + 21 0.00806 + 22 0.000448 + 26 0.0116 + 28 0.000448 + 29 0.0233 + 30 0.00358 + 31 0.00448 + 32 0.00358 + 33 0.00851 + 34 0.00314 + 35 0.000448 + 37 0.00538 + 40 0.5 + 41 0.187 + 42 0.0269 + 43 0.00269 + 44 0.00314 + 45 0.00269 + 46 0.000896 + 47 0.00134 + + 58 51 12 0 + 0 0.0392 + 7 0.0784 + 21 0.0196 + 26 0.0196 + 29 0.0392 + 30 0.0196 + 31 0.0196 + 32 0.0196 + 40 0.431 + 41 0.235 + 42 0.0588 + 47 0.0196 + + 64 38 8 0 + 0 0.0789 + 8 0.0263 + 26 0.0526 + 29 0.0263 + 34 0.0263 + 40 0.474 + 41 0.237 + 42 0.0789 + + 69 41 6 0 + 0 0.0244 + 2 0.0732 + 29 0.0244 + 40 0.707 + 41 0.146 + 42 0.0244 + + 58 1135 32 9 + 0 0.0943 + 1 0.000881 + 2 0.0643 + 3 0.0106 + 4 0.037 + 7 0.157 + 8 0.00705 + 12 0.0308 + 13 0.00617 + 14 0.00352 + 15 0.00617 + 19 0.00352 + 20 0.00352 + 21 0.0194 + 26 0.0326 + 28 0.00176 + 29 0.0405 + 30 0.00529 + 31 0.00705 + 32 0.0211 + 33 0.0282 + 34 0.0167 + 35 0.00705 + 37 0.00176 + 39 0.000881 + 40 0.142 + 41 0.16 + 42 0.074 + 43 0.00176 + 44 0.000881 + 45 0.00617 + 47 0.00793 + + 2 23 9 0 + 4 0.304 + 8 0.087 + 13 0.174 + 14 0.0435 + 15 0.13 + 20 0.13 + 21 0.0435 + 30 0.0435 + 41 0.0435 + + 13 11 5 0 + 0 0.273 + 7 0.273 + 26 0.273 + 33 0.0909 + 40 0.0909 + + 15 4 4 0 + 2 0.25 + 21 0.25 + 26 0.25 + 41 0.25 + + 41 10 6 0 + 2 0.1 + 29 0.1 + 30 0.1 + 33 0.1 + 40 0.4 + 41 0.2 + + 46 32 7 0 + 0 0.125 + 4 0.0312 + 7 0.125 + 35 0.0312 + 40 0.188 + 41 0.469 + 42 0.0312 + + 55 969 32 0 + 0 0.0949 + 1 0.00103 + 2 0.066 + 3 0.00619 + 4 0.0341 + 7 0.161 + 8 0.00413 + 12 0.032 + 13 0.0031 + 14 0.0031 + 15 0.00413 + 19 0.0031 + 20 0.00103 + 21 0.0165 + 26 0.031 + 28 0.00206 + 29 0.0433 + 30 0.0031 + 31 0.00826 + 32 0.0248 + 33 0.0299 + 34 0.0186 + 35 0.00722 + 37 0.00206 + 39 0.00103 + 40 0.143 + 41 0.156 + 42 0.0826 + 43 0.00206 + 44 0.00103 + 45 0.00413 + 47 0.00929 + + 57 57 17 0 + 0 0.0877 + 2 0.0877 + 3 0.105 + 4 0.0175 + 7 0.105 + 8 0.0351 + 12 0.0351 + 21 0.0526 + 26 0.0175 + 29 0.0351 + 30 0.0175 + 33 0.0175 + 34 0.0175 + 40 0.158 + 41 0.123 + 42 0.0351 + 45 0.0526 + + 60 2 2 0 + 0 0.5 + 21 0.5 + + 64 5 4 0 + 0 0.2 + 2 0.4 + 19 0.2 + 41 0.2 + + 59 3 3 0 + 7 0.333 + 14 0.333 + 40 0.333 + + 60 5599 31 16 + 0 0.00982 + 2 0.0179 + 3 0.00679 + 4 0.0516 + 7 0.357 + 8 0.00732 + 9 0.00411 + 12 0.00304 + 13 0.00357 + 14 0.000179 + 15 0.00304 + 19 0.00125 + 20 0.000179 + 21 0.00589 + 22 0.000179 + 25 0.000179 + 26 0.0564 + 29 0.00304 + 30 0.0025 + 31 0.00768 + 34 0.000893 + 35 0.000536 + 37 0.000179 + 40 0.187 + 41 0.219 + 42 0.0136 + 43 0.0282 + 44 0.00679 + 45 0.000357 + 46 0.000179 + 47 0.00125 + + 3 11 8 0 + 0 0.182 + 2 0.0909 + 7 0.0909 + 14 0.0909 + 26 0.0909 + 29 0.0909 + 40 0.0909 + 41 0.273 + + 4 101 15 0 + 0 0.0396 + 2 0.0297 + 4 0.0891 + 7 0.564 + 8 0.0198 + 12 0.0099 + 15 0.0297 + 19 0.0198 + 21 0.0099 + 26 0.0297 + 29 0.0099 + 31 0.0891 + 40 0.0297 + 41 0.0198 + 44 0.0099 + + 8 72 10 0 + 0 0.0278 + 7 0.486 + 12 0.0139 + 13 0.0139 + 21 0.0278 + 26 0.0694 + 31 0.0139 + 40 0.125 + 41 0.208 + 44 0.0139 + + 13 49 7 0 + 4 0.0612 + 7 0.327 + 21 0.0204 + 34 0.0204 + 40 0.224 + 41 0.327 + 44 0.0204 + + 14 21 6 0 + 7 0.0476 + 19 0.0476 + 30 0.0476 + 40 0.714 + 41 0.0952 + 42 0.0476 + + 20 12 3 0 + 7 0.833 + 8 0.0833 + 40 0.0833 + + 21 8 4 0 + 4 0.125 + 7 0.5 + 40 0.25 + 42 0.125 + + 30 4 3 0 + 7 0.5 + 12 0.25 + 40 0.25 + + 31 30 8 0 + 0 0.1 + 4 0.0667 + 7 0.433 + 13 0.0333 + 26 0.0667 + 31 0.0667 + 40 0.133 + 41 0.1 + + 39 9 7 0 + 2 0.111 + 4 0.222 + 26 0.111 + 40 0.222 + 41 0.111 + 43 0.111 + 47 0.111 + + 42 1 1 0 + 47 1 + + 44 2 1 0 + 43 1 + + 47 5218 30 0 + 0 0.00824 + 2 0.0178 + 3 0.00728 + 4 0.0519 + 7 0.353 + 8 0.00709 + 9 0.00422 + 12 0.00268 + 13 0.00345 + 15 0.00268 + 19 0.000767 + 20 0.000192 + 21 0.00556 + 22 0.000192 + 25 0.000192 + 26 0.0583 + 29 0.00268 + 30 0.00249 + 31 0.00594 + 34 0.000767 + 35 0.000575 + 37 0.000192 + 40 0.186 + 41 0.226 + 42 0.0142 + 43 0.0295 + 44 0.00652 + 45 0.000383 + 46 0.000192 + 47 0.000958 + + 48 6 3 0 + 7 0.167 + 40 0.667 + 44 0.167 + + 55 34 8 0 + 0 0.0294 + 2 0.0588 + 7 0.441 + 8 0.0294 + 9 0.0294 + 29 0.0294 + 40 0.265 + 41 0.118 + + 60 16 4 0 + 4 0.0625 + 7 0.125 + 40 0.688 + 41 0.125 + + 61 43 6 0 + 0 0.0233 + 29 0.0233 + 33 0.0233 + 40 0.465 + 41 0.395 + 42 0.0698 + + 62 1601 28 11 + 0 0.0431 + 2 0.02 + 3 0.000625 + 4 0.00187 + 7 0.03 + 8 0.000625 + 12 0.02 + 15 0.00125 + 19 0.000625 + 21 0.0075 + 22 0.00125 + 26 0.00187 + 28 0.000625 + 29 0.0169 + 30 0.000625 + 31 0.00125 + 32 0.0025 + 33 0.00937 + 34 0.000625 + 37 0.00125 + 40 0.626 + 41 0.176 + 42 0.0162 + 43 0.00312 + 44 0.00125 + 45 0.00187 + 46 0.00874 + 47 0.005 + + 2 20 3 0 + 29 0.05 + 40 0.75 + 41 0.2 + + 4 2 2 0 + 40 0.5 + 43 0.5 + + 8 5 4 0 + 40 0.4 + 41 0.2 + 43 0.2 + 46 0.2 + + 13 936 26 0 + 0 0.0513 + 2 0.016 + 3 0.00107 + 4 0.00214 + 7 0.031 + 8 0.00107 + 12 0.0246 + 15 0.00107 + 19 0.00107 + 21 0.00962 + 22 0.00107 + 26 0.00321 + 28 0.00107 + 29 0.0214 + 31 0.00214 + 33 0.0118 + 34 0.00107 + 37 0.00214 + 40 0.607 + 41 0.185 + 42 0.0139 + 43 0.00107 + 44 0.00107 + 45 0.00321 + 46 0.00321 + 47 0.00321 + + 14 215 16 0 + 0 0.0698 + 2 0.0419 + 4 0.00465 + 7 0.0512 + 12 0.0279 + 15 0.00465 + 21 0.0093 + 22 0.00465 + 29 0.0233 + 30 0.00465 + 32 0.014 + 33 0.00465 + 40 0.581 + 41 0.144 + 42 0.00465 + 47 0.0093 + + 41 42 5 0 + 2 0.0714 + 40 0.548 + 41 0.333 + 42 0.0238 + 43 0.0238 + + 42 99 5 0 + 40 0.889 + 41 0.0303 + 42 0.0505 + 46 0.0101 + 47 0.0202 + + 45 38 4 0 + 40 0.553 + 41 0.184 + 42 0.0263 + 46 0.237 + + 47 8 4 0 + 12 0.25 + 33 0.125 + 40 0.5 + 47 0.125 + + 55 65 7 0 + 0 0.0154 + 2 0.0462 + 7 0.0615 + 40 0.569 + 41 0.246 + 42 0.0462 + 44 0.0154 + + 57 132 12 0 + 0 0.0303 + 2 0.00758 + 7 0.0227 + 12 0.00758 + 21 0.00758 + 29 0.00758 + 32 0.00758 + 33 0.0152 + 40 0.689 + 41 0.182 + 42 0.0152 + 43 0.00758 + + 64 9765 30 13 + 0 0.0406 + 2 0.012 + 4 0.00113 + 7 0.0138 + 8 0.000102 + 12 0.015 + 13 0.00041 + 14 0.000102 + 15 0.000307 + 19 0.000819 + 20 0.000102 + 21 0.00379 + 22 0.000307 + 26 0.00379 + 28 0.000614 + 29 0.0086 + 30 0.00102 + 31 0.000512 + 32 0.0044 + 33 0.00287 + 34 0.00041 + 37 0.000205 + 40 0.613 + 41 0.245 + 42 0.0247 + 43 0.00143 + 44 0.00164 + 45 0.00113 + 46 0.00113 + 47 0.00113 + + 2 12 3 0 + 40 0.75 + 41 0.0833 + 42 0.167 + + 8 2 2 0 + 40 0.5 + 44 0.5 + + 13 484 13 0 + 0 0.0331 + 2 0.00826 + 7 0.00413 + 12 0.0145 + 26 0.00207 + 29 0.0124 + 33 0.00826 + 40 0.731 + 41 0.157 + 42 0.0227 + 43 0.00207 + 45 0.00207 + 46 0.00207 + + 14 162 8 0 + 0 0.037 + 2 0.00617 + 12 0.00617 + 29 0.0123 + 32 0.00617 + 40 0.79 + 41 0.136 + 42 0.00617 + + 41 2797 15 0 + 0 0.00465 + 2 0.00107 + 4 0.000358 + 7 0.000358 + 12 0.000715 + 15 0.000358 + 21 0.000715 + 29 0.0025 + 33 0.000715 + 40 0.555 + 41 0.417 + 42 0.0136 + 43 0.000715 + 44 0.000358 + 47 0.00179 + + 42 55 4 0 + 40 0.545 + 41 0.0364 + 42 0.4 + 46 0.0182 + + 44 1 1 0 + 43 1 + + 46 78 5 0 + 2 0.0128 + 40 0.718 + 41 0.244 + 42 0.0128 + 44 0.0128 + + 49 18 3 0 + 22 0.0556 + 40 0.667 + 41 0.278 + + 55 5353 30 0 + 0 0.0616 + 2 0.0189 + 4 0.00187 + 7 0.023 + 8 0.000187 + 12 0.023 + 13 0.000747 + 14 0.000187 + 15 0.000374 + 19 0.00149 + 20 0.000187 + 21 0.00654 + 22 0.000187 + 26 0.00579 + 28 0.000934 + 29 0.0116 + 30 0.00187 + 31 0.000747 + 32 0.0071 + 33 0.00411 + 34 0.000747 + 37 0.000374 + 40 0.611 + 41 0.181 + 42 0.0275 + 43 0.00187 + 44 0.00205 + 45 0.00168 + 46 0.00168 + 47 0.00112 + + 57 678 15 0 + 0 0.0383 + 2 0.00885 + 7 0.0133 + 12 0.0192 + 22 0.00147 + 26 0.00737 + 28 0.00147 + 29 0.00885 + 31 0.00147 + 32 0.0059 + 40 0.715 + 41 0.15 + 42 0.0236 + 44 0.00295 + 45 0.00147 + + 58 36 4 0 + 0 0.0278 + 40 0.806 + 41 0.111 + 42 0.0556 + + 69 29 3 0 + 40 0.862 + 41 0.103 + 42 0.0345 + + 65 9 3 0 + 40 0.444 + 46 0.222 + 47 0.333 + + 67 5 4 0 + 40 0.4 + 42 0.2 + 46 0.2 + 47 0.2 + + 68 68 9 1 + 0 0.0294 + 2 0.0294 + 7 0.0882 + 26 0.0294 + 29 0.0294 + 32 0.0441 + 40 0.603 + 41 0.103 + 42 0.0441 + + 57 10 3 0 + 2 0.2 + 40 0.7 + 42 0.1 + + 69 4817 31 8 + 0 0.0619 + 2 0.0199 + 3 0.000415 + 4 0.00166 + 7 0.0309 + 8 0.00145 + 12 0.0276 + 13 0.000415 + 15 0.000208 + 21 0.0083 + 22 0.00083 + 25 0.000208 + 26 0.00851 + 28 0.00104 + 29 0.0324 + 30 0.00208 + 31 0.00415 + 32 0.0129 + 33 0.00893 + 34 0.00353 + 35 0.000623 + 37 0.000415 + 39 0.000208 + 40 0.478 + 41 0.256 + 42 0.0286 + 43 0.00332 + 44 0.00145 + 45 0.00083 + 46 0.00104 + 47 0.00187 + + 41 789 13 0 + 0 0.00634 + 2 0.00253 + 7 0.0152 + 12 0.00127 + 21 0.00127 + 26 0.00253 + 29 0.0139 + 32 0.00253 + 33 0.00634 + 40 0.326 + 41 0.597 + 42 0.0228 + 47 0.00253 + + 42 8 2 0 + 40 0.25 + 42 0.75 + + 44 2 1 0 + 43 1 + + 45 5 5 0 + 0 0.2 + 8 0.2 + 40 0.2 + 41 0.2 + 44 0.2 + + 46 31 6 0 + 0 0.0323 + 21 0.0323 + 32 0.0323 + 40 0.516 + 41 0.355 + 45 0.0323 + + 48 7 1 0 + 41 1 + + 55 3706 31 0 + 0 0.0739 + 2 0.0237 + 3 0.00054 + 4 0.00216 + 7 0.0351 + 8 0.00162 + 12 0.0351 + 13 0.00054 + 15 0.00027 + 21 0.00944 + 22 0.000809 + 25 0.00027 + 26 0.0105 + 28 0.00135 + 29 0.0364 + 30 0.0027 + 31 0.0054 + 32 0.0159 + 33 0.0103 + 34 0.00459 + 35 0.000809 + 37 0.00054 + 39 0.00027 + 40 0.502 + 41 0.188 + 42 0.0286 + 43 0.00324 + 44 0.00162 + 45 0.000809 + 46 0.00135 + 47 0.00189 + + 57 248 11 0 + 0 0.0645 + 2 0.0202 + 7 0.0282 + 12 0.00806 + 21 0.0121 + 22 0.00403 + 29 0.0403 + 40 0.597 + 41 0.185 + 42 0.0323 + 43 0.00806 + + 73 3 3 0 + 0 0.333 + 32 0.333 + 41 0.333 + + 74 16 7 0 + 0 0.0625 + 26 0.0625 + 35 0.0625 + 40 0.125 + 41 0.125 + 42 0.0625 + 47 0.5 + +56 3639 35 22 + 0 0.0231 + 2 0.288 + 3 0.00302 + 4 0.00769 + 6 0.000275 + 7 0.104 + 8 0.0445 + 9 0.0011 + 12 0.0115 + 13 0.0409 + 14 0.0168 + 15 0.0176 + 16 0.00055 + 18 0.000824 + 20 0.000275 + 21 0.0055 + 23 0.000275 + 26 0.00907 + 28 0.0011 + 29 0.00632 + 30 0.00467 + 31 0.0055 + 32 0.0121 + 33 0.00247 + 34 0.00632 + 35 0.00467 + 37 0.000275 + 39 0.0022 + 40 0.144 + 41 0.192 + 42 0.00714 + 43 0.00055 + 44 0.0118 + 45 0.0011 + 46 0.0231 + + 2 357 16 3 + 3 0.0224 + 4 0.0056 + 8 0.361 + 9 0.0112 + 13 0.325 + 14 0.0728 + 15 0.126 + 16 0.0028 + 20 0.0028 + 21 0.0196 + 23 0.0028 + 30 0.0084 + 31 0.014 + 33 0.0028 + 39 0.0112 + 45 0.0112 + + 41 17 7 0 + 8 0.118 + 13 0.412 + 14 0.0588 + 15 0.118 + 31 0.0588 + 39 0.176 + 45 0.0588 + + 46 3 1 0 + 45 1 + + 56 337 15 0 + 3 0.0237 + 4 0.00593 + 8 0.377 + 9 0.0119 + 13 0.323 + 14 0.0742 + 15 0.128 + 16 0.00297 + 20 0.00297 + 21 0.0208 + 23 0.00297 + 30 0.0089 + 31 0.0119 + 33 0.00297 + 39 0.00297 + + 3 7 5 0 + 2 0.286 + 4 0.286 + 40 0.143 + 41 0.143 + 46 0.143 + + 6 7 3 0 + 40 0.286 + 41 0.286 + 46 0.429 + + 13 392 19 8 + 0 0.0102 + 2 0.416 + 7 0.148 + 12 0.0102 + 14 0.0051 + 21 0.00255 + 26 0.0102 + 29 0.0051 + 30 0.00255 + 31 0.00255 + 32 0.0051 + 33 0.00255 + 34 0.0051 + 35 0.00255 + 39 0.00255 + 40 0.107 + 41 0.24 + 42 0.0051 + 46 0.0179 + + 3 7 5 0 + 2 0.429 + 7 0.143 + 14 0.143 + 31 0.143 + 40 0.143 + + 4 4 2 0 + 41 0.25 + 46 0.75 + + 8 107 13 0 + 0 0.00935 + 2 0.271 + 7 0.15 + 12 0.0187 + 21 0.00935 + 26 0.00935 + 29 0.00935 + 32 0.0187 + 34 0.0187 + 40 0.103 + 41 0.355 + 42 0.00935 + 46 0.0187 + + 9 1 1 0 + 42 1 + + 13 89 11 0 + 0 0.0337 + 2 0.371 + 7 0.169 + 12 0.0112 + 26 0.0112 + 29 0.0112 + 33 0.0112 + 39 0.0112 + 40 0.135 + 41 0.225 + 46 0.0112 + + 14 6 2 0 + 2 0.5 + 40 0.5 + + 30 8 3 0 + 7 0.125 + 40 0.5 + 41 0.375 + + 47 147 10 0 + 2 0.565 + 7 0.156 + 12 0.0068 + 14 0.0068 + 26 0.0136 + 30 0.0068 + 35 0.0068 + 40 0.0544 + 41 0.177 + 46 0.0068 + + 14 312 22 7 + 0 0.0353 + 2 0.385 + 4 0.00321 + 7 0.0994 + 8 0.016 + 12 0.00962 + 14 0.00321 + 21 0.00321 + 26 0.0192 + 28 0.00321 + 29 0.00641 + 30 0.00962 + 31 0.00641 + 32 0.0192 + 34 0.00962 + 35 0.00962 + 40 0.128 + 41 0.212 + 42 0.00321 + 43 0.00321 + 44 0.00641 + 46 0.00962 + + 8 75 12 0 + 0 0.0267 + 2 0.333 + 7 0.0933 + 8 0.0533 + 21 0.0133 + 26 0.04 + 28 0.0133 + 29 0.0133 + 35 0.0133 + 40 0.2 + 41 0.187 + 46 0.0133 + + 13 93 15 0 + 0 0.0753 + 2 0.312 + 4 0.0108 + 7 0.118 + 12 0.0215 + 30 0.0108 + 31 0.0215 + 32 0.0323 + 34 0.0108 + 35 0.0215 + 40 0.172 + 41 0.161 + 43 0.0108 + 44 0.0108 + 46 0.0108 + + 15 6 5 0 + 2 0.333 + 12 0.167 + 26 0.167 + 29 0.167 + 41 0.167 + + 21 3 3 0 + 2 0.333 + 7 0.333 + 14 0.333 + + 31 5 5 0 + 0 0.2 + 2 0.2 + 30 0.2 + 41 0.2 + 44 0.2 + + 45 1 1 0 + 46 1 + + 47 111 10 0 + 2 0.523 + 7 0.0721 + 8 0.00901 + 26 0.018 + 30 0.00901 + 32 0.027 + 34 0.018 + 40 0.0631 + 41 0.252 + 42 0.00901 + + 15 139 12 3 + 0 0.00719 + 2 0.266 + 7 0.0719 + 14 0.00719 + 18 0.0216 + 29 0.00719 + 32 0.0144 + 33 0.00719 + 40 0.194 + 41 0.223 + 44 0.0863 + 46 0.0935 + + 3 3 3 0 + 2 0.333 + 7 0.333 + 14 0.333 + + 15 83 9 0 + 2 0.265 + 7 0.012 + 29 0.012 + 32 0.0241 + 33 0.012 + 40 0.229 + 41 0.253 + 44 0.12 + 46 0.0723 + + 47 45 8 0 + 0 0.0222 + 2 0.244 + 7 0.178 + 18 0.0667 + 40 0.156 + 41 0.156 + 44 0.0444 + 46 0.133 + + 16 12 6 0 + 0 0.0833 + 2 0.417 + 7 0.0833 + 41 0.25 + 42 0.0833 + 46 0.0833 + + 18 3 3 0 + 0 0.333 + 7 0.333 + 12 0.333 + + 30 2 2 0 + 2 0.5 + 4 0.5 + + 33 1 1 0 + 4 1 + + 41 116 15 1 + 0 0.0172 + 2 0.155 + 3 0.00862 + 4 0.0259 + 6 0.00862 + 7 0.0172 + 8 0.138 + 13 0.267 + 14 0.19 + 15 0.103 + 16 0.00862 + 21 0.0172 + 31 0.00862 + 35 0.00862 + 46 0.0259 + + 57 3 3 0 + 0 0.333 + 21 0.333 + 46 0.333 + + 42 3 3 0 + 4 0.333 + 32 0.333 + 37 0.333 + + 45 3 1 0 + 15 1 + + 46 8 4 0 + 2 0.5 + 7 0.125 + 29 0.125 + 34 0.25 + + 47 1311 27 19 + 0 0.032 + 2 0.263 + 3 0.00153 + 4 0.00763 + 7 0.127 + 8 0.00458 + 12 0.016 + 13 0.000763 + 14 0.00381 + 15 0.00153 + 21 0.00381 + 26 0.0114 + 28 0.00153 + 29 0.00839 + 30 0.00534 + 31 0.00534 + 32 0.0168 + 33 0.00305 + 34 0.00763 + 35 0.0061 + 39 0.00153 + 40 0.2 + 41 0.222 + 42 0.00839 + 43 0.000763 + 44 0.0114 + 46 0.029 + + 2 2 2 0 + 3 0.5 + 30 0.5 + + 3 7 5 0 + 2 0.286 + 4 0.286 + 40 0.143 + 41 0.143 + 46 0.143 + + 6 7 3 0 + 40 0.286 + 41 0.286 + 46 0.429 + + 13 389 18 0 + 0 0.0103 + 2 0.419 + 7 0.147 + 12 0.0103 + 14 0.00514 + 21 0.00257 + 26 0.00771 + 29 0.00514 + 31 0.00257 + 32 0.00514 + 33 0.00257 + 34 0.00514 + 35 0.00257 + 39 0.00257 + 40 0.108 + 41 0.242 + 42 0.00514 + 46 0.018 + + 14 310 22 0 + 0 0.0355 + 2 0.387 + 4 0.00323 + 7 0.0968 + 8 0.0161 + 12 0.00968 + 14 0.00323 + 21 0.00323 + 26 0.0194 + 28 0.00323 + 29 0.00645 + 30 0.00968 + 31 0.00645 + 32 0.0194 + 34 0.00968 + 35 0.00968 + 40 0.129 + 41 0.213 + 42 0.00323 + 43 0.00323 + 44 0.00645 + 46 0.00645 + + 15 135 11 0 + 0 0.00741 + 2 0.274 + 7 0.0667 + 14 0.00741 + 29 0.00741 + 32 0.0148 + 33 0.00741 + 40 0.2 + 41 0.23 + 44 0.0889 + 46 0.0963 + + 16 12 6 0 + 0 0.0833 + 2 0.417 + 7 0.0833 + 41 0.25 + 42 0.0833 + 46 0.0833 + + 18 3 3 0 + 0 0.333 + 7 0.333 + 12 0.333 + + 30 2 2 0 + 2 0.5 + 4 0.5 + + 33 1 1 0 + 4 1 + + 41 7 5 0 + 0 0.286 + 2 0.143 + 3 0.143 + 7 0.286 + 31 0.143 + + 46 3 3 0 + 2 0.333 + 7 0.333 + 29 0.333 + + 48 4 1 0 + 40 1 + + 55 8 4 0 + 7 0.125 + 40 0.5 + 41 0.25 + 46 0.125 + + 56 346 23 0 + 0 0.0578 + 2 0.00867 + 4 0.0116 + 7 0.173 + 8 0.00289 + 12 0.0289 + 14 0.00289 + 21 0.00578 + 26 0.0173 + 28 0.00289 + 29 0.0145 + 30 0.00867 + 31 0.00867 + 32 0.0318 + 33 0.00578 + 34 0.0145 + 35 0.0116 + 39 0.00289 + 40 0.344 + 41 0.22 + 42 0.0116 + 44 0.00289 + 46 0.0116 + + 57 45 12 0 + 0 0.0222 + 2 0.0667 + 4 0.0222 + 7 0.0889 + 12 0.0667 + 13 0.0222 + 15 0.0444 + 21 0.0222 + 40 0.333 + 41 0.2 + 42 0.0222 + 46 0.0889 + + 58 13 4 0 + 2 0.308 + 40 0.308 + 41 0.231 + 42 0.154 + + 60 3 1 0 + 41 1 + + 64 5 4 0 + 0 0.2 + 40 0.4 + 41 0.2 + 46 0.2 + + 48 4 1 0 + 40 1 + + 55 20 9 1 + 2 0.05 + 7 0.35 + 29 0.05 + 31 0.05 + 34 0.05 + 40 0.2 + 41 0.1 + 42 0.1 + 46 0.05 + + 47 10 6 0 + 2 0.1 + 7 0.5 + 29 0.1 + 31 0.1 + 34 0.1 + 42 0.1 + + 56 860 23 4 + 0 0.0233 + 2 0.395 + 4 0.00698 + 7 0.11 + 8 0.00581 + 12 0.0116 + 14 0.00465 + 21 0.00349 + 26 0.0093 + 28 0.00116 + 29 0.00581 + 30 0.00349 + 31 0.00349 + 32 0.0128 + 33 0.00233 + 34 0.00581 + 35 0.00465 + 39 0.00116 + 40 0.138 + 41 0.217 + 42 0.00698 + 44 0.0163 + 46 0.0093 + + 2 351 23 0 + 0 0.057 + 2 0.0114 + 4 0.0114 + 7 0.177 + 8 0.00285 + 12 0.0285 + 14 0.0114 + 21 0.0057 + 26 0.0171 + 28 0.00285 + 29 0.0142 + 30 0.00855 + 31 0.00855 + 32 0.0313 + 33 0.0057 + 34 0.0142 + 35 0.0114 + 39 0.00285 + 40 0.328 + 41 0.225 + 42 0.0114 + 44 0.00285 + 46 0.0114 + + 41 83 2 0 + 2 0.675 + 41 0.325 + + 45 8 3 0 + 40 0.25 + 41 0.25 + 46 0.5 + + 47 414 9 0 + 2 0.676 + 4 0.00483 + 7 0.0773 + 8 0.00966 + 21 0.00242 + 26 0.00483 + 41 0.188 + 42 0.00483 + 44 0.0314 + + 57 50 12 0 + 0 0.02 + 2 0.06 + 4 0.02 + 7 0.12 + 12 0.06 + 13 0.02 + 15 0.04 + 21 0.02 + 40 0.3 + 41 0.24 + 42 0.02 + 46 0.08 + + 58 14 4 0 + 2 0.286 + 40 0.286 + 41 0.286 + 42 0.143 + + 60 3 1 0 + 41 1 + + 64 6 4 0 + 0 0.167 + 40 0.333 + 41 0.333 + 46 0.167 + +57 285122 47 41 + 0 0.025 + 1 0.000582 + 2 0.0249 + 3 0.0218 + 4 0.118 + 5 0.000179 + 6 8.77e-05 + 7 0.0779 + 8 0.0345 + 9 0.00187 + 10 0.000544 + 12 0.0081 + 13 0.0408 + 14 0.0204 + 15 0.0544 + 16 0.000593 + 17 0.000368 + 18 0.000154 + 19 0.00467 + 20 0.0129 + 21 0.012 + 22 0.000722 + 23 7.01e-05 + 24 2.1e-05 + 25 1.4e-05 + 26 0.018 + 27 7.01e-06 + 28 0.000656 + 29 0.0139 + 30 0.013 + 31 0.0035 + 32 0.00343 + 33 0.0038 + 34 0.00234 + 35 0.00156 + 36 1.05e-05 + 37 0.00221 + 38 0.000277 + 39 0.0111 + 40 0.28 + 41 0.164 + 42 0.0145 + 43 0.00169 + 44 0.00118 + 45 0.00235 + 46 0.00192 + 47 0.00108 + + 2 472 17 6 + 3 0.00847 + 4 0.0275 + 7 0.684 + 8 0.0424 + 9 0.00636 + 13 0.0169 + 14 0.0169 + 15 0.0106 + 20 0.00212 + 21 0.0826 + 22 0.00212 + 26 0.0742 + 30 0.00424 + 31 0.00424 + 39 0.00212 + 41 0.0127 + 45 0.00212 + + 3 1 1 0 + 3 1 + + 7 33 2 0 + 4 0.0606 + 7 0.939 + + 41 83 8 0 + 3 0.0241 + 4 0.012 + 7 0.602 + 21 0.253 + 22 0.012 + 26 0.0723 + 31 0.012 + 45 0.012 + + 47 56 10 0 + 3 0.0179 + 4 0.179 + 8 0.357 + 9 0.0357 + 13 0.125 + 14 0.143 + 15 0.0714 + 30 0.0357 + 31 0.0179 + 39 0.0179 + + 55 3 3 0 + 13 0.333 + 15 0.333 + 20 0.333 + + 57 280 5 0 + 7 0.807 + 9 0.00357 + 21 0.0643 + 26 0.104 + 41 0.0214 + + 6 13 5 0 + 4 0.154 + 8 0.231 + 14 0.0769 + 15 0.462 + 39 0.0769 + + 7 83957 45 12 + 0 0.000107 + 1 0.00155 + 2 0.00102 + 3 0.0553 + 4 0.345 + 5 3.57e-05 + 6 0.000226 + 7 0.0167 + 8 0.0969 + 9 0.00506 + 10 0.00163 + 12 4.76e-05 + 13 0.119 + 14 0.0601 + 15 0.16 + 16 0.00185 + 17 0.00114 + 19 0.00769 + 20 0.0394 + 21 0.0123 + 22 0.000643 + 23 0.000167 + 25 1.19e-05 + 26 0.000798 + 27 1.19e-05 + 28 0.000119 + 29 2.38e-05 + 30 0.0324 + 31 0.00273 + 32 1.19e-05 + 33 2.38e-05 + 34 0.000226 + 35 0.00219 + 36 1.19e-05 + 37 0.00157 + 38 0.000584 + 39 0.0269 + 40 0.000655 + 41 0.000691 + 42 0.000202 + 43 3.57e-05 + 44 0.00031 + 45 0.00479 + 46 0.000119 + 47 0.000191 + + 2 40 9 0 + 3 0.025 + 4 0.35 + 7 0.1 + 8 0.025 + 13 0.175 + 14 0.05 + 15 0.225 + 19 0.025 + 20 0.025 + + 4 18 7 0 + 2 0.167 + 4 0.278 + 13 0.0556 + 14 0.0556 + 15 0.278 + 20 0.111 + 40 0.0556 + + 7 356 14 0 + 3 0.00562 + 4 0.41 + 8 0.16 + 9 0.0281 + 13 0.129 + 14 0.0927 + 15 0.0365 + 20 0.0871 + 21 0.00281 + 30 0.014 + 31 0.014 + 35 0.00281 + 39 0.00281 + 45 0.014 + + 8 342 16 0 + 3 0.00292 + 4 0.146 + 7 0.00585 + 8 0.12 + 9 0.00585 + 13 0.184 + 14 0.0848 + 15 0.371 + 20 0.00292 + 21 0.00585 + 30 0.0263 + 31 0.00292 + 32 0.00292 + 37 0.00585 + 41 0.00585 + 45 0.0263 + + 21 289 21 0 + 1 0.0138 + 3 0.0346 + 4 0.301 + 7 0.0484 + 8 0.0934 + 9 0.00346 + 10 0.00346 + 13 0.111 + 14 0.0484 + 15 0.0727 + 19 0.00346 + 20 0.0381 + 21 0.0277 + 26 0.0104 + 28 0.00692 + 30 0.163 + 31 0.00346 + 35 0.00346 + 39 0.00346 + 41 0.00346 + 45 0.00692 + + 22 5 4 0 + 4 0.4 + 14 0.2 + 15 0.2 + 28 0.2 + + 44 1 1 0 + 43 1 + + 45 5 4 0 + 4 0.2 + 13 0.4 + 21 0.2 + 30 0.2 + + 47 82196 44 0 + 0 0.000109 + 1 0.0015 + 2 0.00101 + 3 0.0561 + 4 0.345 + 5 3.65e-05 + 6 0.000231 + 7 0.0161 + 8 0.0969 + 9 0.00495 + 10 0.00164 + 12 4.87e-05 + 13 0.118 + 14 0.0599 + 15 0.16 + 16 0.00189 + 17 0.00117 + 19 0.00779 + 20 0.0393 + 21 0.0123 + 22 0.000657 + 23 0.00017 + 25 1.22e-05 + 26 0.000766 + 27 1.22e-05 + 28 8.52e-05 + 29 2.43e-05 + 30 0.032 + 31 0.0027 + 33 1.22e-05 + 34 0.000231 + 35 0.0022 + 36 1.22e-05 + 37 0.00157 + 38 0.000596 + 39 0.0274 + 40 0.000657 + 41 0.000645 + 42 0.000207 + 43 2.43e-05 + 44 0.000316 + 45 0.00467 + 46 0.000109 + 47 0.000182 + + 49 561 20 0 + 1 0.00535 + 3 0.0232 + 4 0.385 + 7 0.0945 + 8 0.0731 + 9 0.00891 + 10 0.00178 + 13 0.171 + 14 0.0624 + 15 0.0838 + 19 0.00713 + 20 0.0285 + 21 0.00535 + 30 0.0357 + 33 0.00178 + 35 0.00178 + 39 0.00357 + 45 0.00357 + 46 0.00178 + 47 0.00178 + + 55 124 13 0 + 3 0.0242 + 4 0.54 + 8 0.0403 + 13 0.0968 + 14 0.00806 + 15 0.0645 + 20 0.105 + 21 0.0161 + 26 0.00806 + 30 0.0645 + 37 0.00806 + 39 0.00806 + 41 0.0161 + + 57 8 4 0 + 4 0.125 + 7 0.625 + 13 0.125 + 21 0.125 + + 8 27 13 0 + 3 0.0741 + 4 0.111 + 9 0.037 + 13 0.148 + 14 0.111 + 15 0.111 + 19 0.037 + 20 0.037 + 26 0.111 + 30 0.111 + 39 0.037 + 40 0.037 + 46 0.037 + + 13 8 4 0 + 3 0.125 + 15 0.375 + 40 0.25 + 41 0.25 + + 14 6 4 0 + 2 0.167 + 32 0.167 + 40 0.333 + 41 0.333 + + 15 12 4 0 + 4 0.25 + 14 0.0833 + 15 0.583 + 16 0.0833 + + 20 2 1 0 + 14 1 + + 21 132 17 5 + 2 0.00758 + 3 0.0227 + 4 0.0985 + 7 0.205 + 8 0.114 + 9 0.00758 + 13 0.0455 + 14 0.00758 + 15 0.0379 + 19 0.0303 + 20 0.0227 + 21 0.197 + 26 0.0455 + 30 0.053 + 31 0.0227 + 40 0.0455 + 41 0.0379 + + 2 14 2 0 + 7 0.714 + 26 0.286 + + 7 10 5 0 + 4 0.1 + 19 0.1 + 21 0.1 + 40 0.3 + 41 0.4 + + 41 14 4 0 + 7 0.786 + 21 0.0714 + 26 0.0714 + 30 0.0714 + + 47 80 15 0 + 2 0.0125 + 3 0.0375 + 4 0.138 + 7 0.05 + 8 0.162 + 9 0.0125 + 13 0.075 + 15 0.0125 + 19 0.025 + 20 0.0375 + 21 0.275 + 26 0.0125 + 30 0.075 + 31 0.0375 + 40 0.0375 + + 49 8 6 0 + 4 0.125 + 8 0.25 + 14 0.125 + 15 0.25 + 19 0.125 + 21 0.125 + + 22 2 2 0 + 8 0.5 + 14 0.5 + + 23 4 2 0 + 26 0.5 + 41 0.5 + + 24 55 14 0 + 0 0.0364 + 3 0.0545 + 4 0.145 + 7 0.182 + 8 0.0545 + 14 0.0364 + 15 0.0727 + 21 0.0364 + 26 0.145 + 30 0.0182 + 31 0.0182 + 40 0.145 + 41 0.0182 + 45 0.0364 + + 26 8661 37 4 + 0 0.000231 + 1 0.00115 + 2 0.00104 + 3 0.158 + 4 0.289 + 6 0.000231 + 7 0.00912 + 8 0.0774 + 9 0.00774 + 10 0.000577 + 13 0.0784 + 14 0.0602 + 15 0.116 + 16 0.00115 + 17 0.000808 + 19 0.0128 + 20 0.0344 + 21 0.0102 + 22 0.000693 + 23 0.000115 + 27 0.000115 + 28 0.00739 + 30 0.0172 + 31 0.00323 + 34 0.000346 + 35 0.00254 + 37 0.000693 + 38 0.00346 + 39 0.1 + 40 0.000462 + 41 0.00104 + 42 0.000115 + 43 0.000115 + 44 0.000346 + 45 0.00323 + 46 0.000115 + 47 0.000462 + + 8 12 6 0 + 4 0.417 + 8 0.0833 + 13 0.167 + 14 0.0833 + 15 0.0833 + 20 0.167 + + 21 8 4 0 + 4 0.625 + 8 0.125 + 14 0.125 + 31 0.125 + + 41 1 1 0 + 28 1 + + 49 36 8 0 + 3 0.0278 + 4 0.556 + 8 0.111 + 9 0.111 + 13 0.0833 + 14 0.0278 + 15 0.0278 + 20 0.0556 + + 28 2 2 0 + 4 0.5 + 37 0.5 + + 29 2 1 0 + 4 1 + + 30 613 21 0 + 3 0.0375 + 4 0.401 + 7 0.00489 + 8 0.106 + 9 0.00816 + 13 0.116 + 14 0.0571 + 15 0.166 + 16 0.00163 + 19 0.00163 + 20 0.0277 + 21 0.00326 + 22 0.00163 + 25 0.00163 + 30 0.0147 + 31 0.00816 + 37 0.00489 + 39 0.0245 + 41 0.00326 + 42 0.00163 + 45 0.00816 + + 31 57 10 0 + 4 0.526 + 7 0.123 + 8 0.0877 + 13 0.0175 + 15 0.0877 + 19 0.0351 + 20 0.0702 + 29 0.0175 + 30 0.0175 + 35 0.0175 + + 40 16 3 0 + 40 0.188 + 46 0.125 + 47 0.688 + + 41 284 20 7 + 0 0.0106 + 2 0.317 + 3 0.00704 + 4 0.173 + 5 0.00352 + 7 0.19 + 8 0.00704 + 13 0.00704 + 15 0.00352 + 19 0.00352 + 20 0.00352 + 21 0.148 + 22 0.00704 + 26 0.0634 + 28 0.00704 + 29 0.0106 + 34 0.00704 + 37 0.00352 + 45 0.0141 + 46 0.0141 + + 2 2 1 0 + 22 1 + + 7 7 3 0 + 21 0.286 + 28 0.286 + 45 0.429 + + 48 2 1 0 + 46 1 + + 49 6 4 0 + 2 0.167 + 4 0.167 + 7 0.5 + 34 0.167 + + 52 3 2 0 + 13 0.667 + 20 0.333 + + 55 71 12 0 + 0 0.0282 + 2 0.0423 + 4 0.62 + 5 0.0141 + 7 0.169 + 8 0.0282 + 15 0.0141 + 19 0.0141 + 21 0.0141 + 26 0.0141 + 29 0.0282 + 46 0.0141 + + 57 189 11 0 + 0 0.00529 + 2 0.45 + 3 0.0106 + 4 0.0212 + 7 0.206 + 21 0.196 + 26 0.0899 + 29 0.00529 + 34 0.00529 + 37 0.00529 + 45 0.00529 + + 42 32 10 3 + 2 0.219 + 4 0.0938 + 7 0.125 + 8 0.0312 + 13 0.0312 + 21 0.125 + 26 0.0312 + 30 0.0312 + 42 0.0312 + 47 0.281 + + 7 5 4 0 + 4 0.4 + 8 0.2 + 30 0.2 + 42 0.2 + + 55 10 2 0 + 13 0.1 + 47 0.9 + + 57 16 4 0 + 2 0.438 + 7 0.25 + 21 0.25 + 26 0.0625 + + 43 7 6 0 + 0 0.143 + 2 0.143 + 3 0.143 + 14 0.143 + 15 0.143 + 41 0.286 + + 44 4 3 0 + 4 0.25 + 15 0.5 + 21 0.25 + + 45 232 15 3 + 1 0.00862 + 3 0.00862 + 4 0.168 + 7 0.00431 + 8 0.22 + 10 0.00431 + 13 0.159 + 14 0.0517 + 15 0.241 + 19 0.00431 + 21 0.0431 + 28 0.0129 + 30 0.056 + 31 0.00431 + 35 0.0129 + + 26 17 8 0 + 3 0.0588 + 4 0.0588 + 8 0.176 + 13 0.235 + 15 0.294 + 21 0.0588 + 28 0.0588 + 30 0.0588 + + 41 2 2 0 + 10 0.5 + 15 0.5 + + 55 1 1 0 + 7 1 + + 46 72 19 4 + 0 0.0139 + 2 0.111 + 4 0.0972 + 7 0.208 + 8 0.0278 + 12 0.0278 + 13 0.0417 + 14 0.0417 + 15 0.0417 + 20 0.0139 + 21 0.0278 + 26 0.0833 + 29 0.0139 + 32 0.0139 + 33 0.0417 + 40 0.0278 + 42 0.0972 + 44 0.0139 + 47 0.0556 + + 7 10 4 0 + 4 0.4 + 14 0.3 + 15 0.2 + 20 0.1 + + 41 4 4 0 + 4 0.25 + 13 0.25 + 15 0.25 + 29 0.25 + + 55 44 14 0 + 0 0.0227 + 2 0.159 + 7 0.318 + 8 0.0455 + 12 0.0455 + 13 0.0227 + 21 0.0227 + 26 0.136 + 32 0.0227 + 33 0.0682 + 40 0.0455 + 42 0.0455 + 44 0.0227 + 47 0.0227 + + 62 2 1 0 + 42 1 + + 47 94690 45 25 + 0 0.0377 + 1 0.000127 + 2 0.0352 + 3 0.000898 + 4 0.00774 + 5 0.000253 + 6 2.11e-05 + 7 0.106 + 8 0.0044 + 9 0.000158 + 10 6.34e-05 + 12 0.0122 + 13 0.00432 + 14 0.000993 + 15 0.00449 + 16 1.06e-05 + 17 1.06e-05 + 18 0.000232 + 19 0.00299 + 20 0.00018 + 21 0.0112 + 22 0.00075 + 23 3.17e-05 + 24 3.17e-05 + 25 1.06e-05 + 26 0.0254 + 28 0.00057 + 29 0.0208 + 30 0.00416 + 31 0.00387 + 32 0.00516 + 33 0.00571 + 34 0.00339 + 35 0.00124 + 36 1.06e-05 + 37 0.00257 + 39 9.5e-05 + 40 0.421 + 41 0.245 + 42 0.0216 + 43 0.0025 + 44 0.00162 + 45 0.0012 + 46 0.00251 + 47 0.00163 + + 7 248 21 0 + 0 0.0282 + 2 0.121 + 4 0.0685 + 7 0.117 + 8 0.0242 + 12 0.0161 + 13 0.0121 + 14 0.0121 + 15 0.0121 + 20 0.00403 + 21 0.0323 + 22 0.00403 + 26 0.0323 + 29 0.00403 + 31 0.00806 + 37 0.00806 + 40 0.222 + 41 0.169 + 42 0.0363 + 43 0.00403 + 47 0.0645 + + 8 4 2 0 + 26 0.75 + 40 0.25 + + 14 6 4 0 + 2 0.167 + 32 0.167 + 40 0.333 + 41 0.333 + + 21 20 8 0 + 2 0.05 + 4 0.05 + 7 0.2 + 19 0.05 + 21 0.05 + 26 0.05 + 40 0.3 + 41 0.25 + + 23 4 2 0 + 26 0.5 + 41 0.5 + + 24 17 7 0 + 0 0.118 + 7 0.176 + 15 0.0588 + 21 0.0588 + 26 0.0588 + 40 0.471 + 41 0.0588 + + 26 38 12 0 + 0 0.0526 + 2 0.0789 + 4 0.0526 + 7 0.237 + 14 0.0263 + 15 0.0526 + 19 0.0263 + 21 0.0526 + 23 0.0263 + 40 0.105 + 41 0.184 + 47 0.105 + + 40 11 1 0 + 47 1 + + 41 27 12 0 + 0 0.111 + 2 0.0741 + 3 0.037 + 4 0.185 + 5 0.037 + 7 0.185 + 15 0.037 + 19 0.037 + 21 0.037 + 26 0.148 + 29 0.0741 + 45 0.037 + + 42 10 2 0 + 13 0.1 + 47 0.9 + + 43 4 3 0 + 0 0.25 + 2 0.25 + 41 0.5 + + 46 58 17 0 + 0 0.0172 + 2 0.138 + 4 0.0345 + 7 0.259 + 8 0.0345 + 12 0.0345 + 13 0.0172 + 15 0.0172 + 21 0.0172 + 26 0.103 + 29 0.0172 + 32 0.0172 + 33 0.0517 + 40 0.0345 + 42 0.121 + 44 0.0172 + 47 0.069 + + 48 254 23 0 + 0 0.0394 + 2 0.0394 + 4 0.0276 + 7 0.157 + 12 0.00787 + 13 0.00394 + 14 0.0157 + 15 0.00394 + 21 0.00787 + 22 0.00394 + 26 0.0394 + 29 0.00787 + 30 0.00394 + 31 0.00787 + 33 0.00394 + 37 0.00787 + 39 0.00394 + 40 0.26 + 41 0.291 + 42 0.0394 + 43 0.00394 + 45 0.0118 + 46 0.0118 + + 49 446 17 0 + 0 0.0112 + 2 0.0202 + 4 0.00897 + 7 0.0336 + 8 0.00224 + 13 0.00224 + 15 0.00673 + 19 0.00448 + 26 0.0224 + 29 0.00448 + 32 0.00224 + 33 0.00224 + 40 0.601 + 41 0.258 + 42 0.0157 + 43 0.00224 + 46 0.00224 + + 51 17 2 0 + 40 0.706 + 41 0.294 + + 55 87632 45 0 + 0 0.0392 + 1 0.000137 + 2 0.0359 + 3 0.000913 + 4 0.0077 + 5 0.000262 + 6 2.28e-05 + 7 0.111 + 8 0.0046 + 9 0.00016 + 10 6.85e-05 + 12 0.0127 + 13 0.00454 + 14 0.000959 + 15 0.00461 + 16 1.14e-05 + 17 1.14e-05 + 18 0.000251 + 19 0.00304 + 20 0.000183 + 21 0.0117 + 22 0.000742 + 23 2.28e-05 + 24 3.42e-05 + 25 1.14e-05 + 26 0.0265 + 28 0.000605 + 29 0.0222 + 30 0.00445 + 31 0.00404 + 32 0.00544 + 33 0.00598 + 34 0.00358 + 35 0.0013 + 36 1.14e-05 + 37 0.00261 + 39 9.13e-05 + 40 0.408 + 41 0.246 + 42 0.0216 + 43 0.00251 + 44 0.00163 + 45 0.00118 + 46 0.00252 + 47 0.00106 + + 57 2302 31 0 + 0 0.0122 + 2 0.0187 + 3 0.0013 + 4 0.00608 + 7 0.0478 + 8 0.0013 + 9 0.000434 + 12 0.00348 + 13 0.00174 + 14 0.000869 + 15 0.00348 + 19 0.00174 + 21 0.00608 + 22 0.0013 + 26 0.0113 + 29 0.00521 + 30 0.000434 + 31 0.00174 + 32 0.00217 + 33 0.000869 + 34 0.000434 + 35 0.0013 + 37 0.00217 + 40 0.595 + 41 0.241 + 42 0.0204 + 43 0.00304 + 44 0.00174 + 45 0.000869 + 46 0.00261 + 47 0.00304 + + 58 9 5 0 + 2 0.111 + 4 0.111 + 7 0.222 + 40 0.333 + 41 0.222 + + 62 3086 28 0 + 0 0.0198 + 2 0.0237 + 3 0.000324 + 4 0.00162 + 7 0.0256 + 8 0.000648 + 12 0.00713 + 15 0.000324 + 19 0.00259 + 21 0.00324 + 22 0.000324 + 26 0.00551 + 28 0.000324 + 29 0.00259 + 30 0.000648 + 31 0.0013 + 32 0.000972 + 33 0.00324 + 34 0.00162 + 37 0.0013 + 40 0.631 + 41 0.239 + 42 0.0185 + 43 0.00194 + 44 0.000972 + 45 0.00162 + 46 0.00162 + 47 0.00259 + + 64 448 14 0 + 0 0.0246 + 2 0.0134 + 7 0.0246 + 12 0.00893 + 21 0.00223 + 26 0.00223 + 32 0.00223 + 34 0.00223 + 40 0.696 + 41 0.192 + 42 0.0223 + 43 0.00223 + 44 0.00446 + 46 0.00223 + + 67 1 1 0 + 46 1 + + 68 17 2 0 + 40 0.765 + 41 0.235 + + 69 14 6 0 + 0 0.0714 + 2 0.0714 + 37 0.0714 + 40 0.571 + 41 0.143 + 42 0.0714 + + 72 5 2 0 + 0 0.6 + 29 0.4 + + 74 3 2 0 + 40 0.333 + 47 0.667 + + 48 259 23 3 + 0 0.0386 + 2 0.0386 + 4 0.027 + 7 0.154 + 12 0.00772 + 13 0.00386 + 14 0.0154 + 15 0.00386 + 21 0.00772 + 22 0.00386 + 26 0.0386 + 29 0.00772 + 30 0.00386 + 31 0.00772 + 33 0.00386 + 37 0.00772 + 39 0.00386 + 40 0.255 + 41 0.293 + 42 0.0386 + 43 0.00386 + 45 0.0116 + 46 0.0232 + + 21 14 5 0 + 4 0.0714 + 7 0.0714 + 40 0.5 + 41 0.214 + 46 0.143 + + 26 22 5 0 + 7 0.5 + 14 0.0455 + 40 0.182 + 41 0.182 + 42 0.0909 + + 45 14 3 0 + 40 0.5 + 41 0.286 + 46 0.214 + + 49 475 17 5 + 0 0.0105 + 2 0.0189 + 4 0.0168 + 7 0.0674 + 8 0.00211 + 13 0.00211 + 15 0.00842 + 19 0.00421 + 26 0.0232 + 29 0.00421 + 32 0.00211 + 33 0.00211 + 40 0.564 + 41 0.255 + 42 0.0147 + 43 0.00211 + 46 0.00211 + + 2 12 3 0 + 4 0.0833 + 7 0.833 + 26 0.0833 + + 7 209 16 0 + 0 0.0191 + 2 0.0287 + 4 0.0335 + 7 0.067 + 8 0.00478 + 15 0.0144 + 19 0.00957 + 26 0.0431 + 29 0.00957 + 32 0.00478 + 33 0.00478 + 40 0.364 + 41 0.368 + 42 0.0191 + 43 0.00478 + 46 0.00478 + + 21 6 5 0 + 0 0.167 + 7 0.167 + 13 0.167 + 40 0.333 + 41 0.167 + + 41 53 4 0 + 7 0.113 + 26 0.0189 + 40 0.755 + 41 0.113 + + 55 186 5 0 + 2 0.0161 + 7 0.00538 + 40 0.785 + 41 0.177 + 42 0.0161 + + 50 38 2 0 + 7 0.842 + 26 0.158 + + 51 18 3 0 + 40 0.667 + 41 0.278 + 46 0.0556 + + 52 3 1 0 + 41 1 + + 55 88258 45 19 + 0 0.0389 + 1 0.000136 + 2 0.0356 + 3 0.000974 + 4 0.00988 + 5 0.000261 + 6 2.27e-05 + 7 0.112 + 8 0.00509 + 9 0.000159 + 10 6.8e-05 + 12 0.0126 + 13 0.00455 + 14 0.000952 + 15 0.00487 + 16 1.13e-05 + 17 1.13e-05 + 18 0.000249 + 19 0.00301 + 20 0.000181 + 21 0.0119 + 22 0.000748 + 23 2.27e-05 + 24 3.4e-05 + 25 1.13e-05 + 26 0.0263 + 28 0.000601 + 29 0.022 + 30 0.00442 + 31 0.00401 + 32 0.0054 + 33 0.00594 + 34 0.00356 + 35 0.00129 + 36 1.13e-05 + 37 0.00261 + 39 9.06e-05 + 40 0.405 + 41 0.245 + 42 0.0216 + 43 0.00253 + 44 0.00162 + 45 0.00118 + 46 0.003 + 47 0.00105 + + 2 62 11 0 + 0 0.0323 + 2 0.0161 + 7 0.0806 + 13 0.0323 + 21 0.0161 + 26 0.0161 + 40 0.258 + 41 0.435 + 42 0.0806 + 43 0.0161 + 47 0.0161 + + 6 13 6 0 + 0 0.0769 + 13 0.0769 + 15 0.0769 + 40 0.385 + 43 0.231 + 47 0.154 + + 7 78674 44 0 + 0 0.0417 + 1 0.000153 + 2 0.0359 + 3 0.000953 + 4 0.01 + 5 0.000267 + 6 2.54e-05 + 7 0.102 + 8 0.0053 + 9 0.000165 + 10 7.63e-05 + 12 0.0136 + 13 0.00469 + 14 0.00103 + 15 0.00516 + 16 1.27e-05 + 17 1.27e-05 + 18 0.00028 + 19 0.00324 + 20 0.000178 + 21 0.0122 + 22 0.000775 + 23 2.54e-05 + 24 3.81e-05 + 26 0.0278 + 28 0.000636 + 29 0.0238 + 30 0.00456 + 31 0.0044 + 32 0.00578 + 33 0.0063 + 34 0.00385 + 35 0.0014 + 36 1.27e-05 + 37 0.00253 + 39 8.9e-05 + 40 0.401 + 41 0.25 + 42 0.0215 + 43 0.00247 + 44 0.00174 + 45 0.00114 + 46 0.00262 + 47 0.00105 + + 8 16 7 0 + 2 0.0625 + 7 0.188 + 21 0.125 + 25 0.0625 + 26 0.125 + 40 0.25 + 41 0.188 + + 13 4 3 0 + 7 0.25 + 29 0.25 + 41 0.5 + + 15 11 4 0 + 40 0.273 + 41 0.364 + 42 0.0909 + 46 0.273 + + 21 54 11 0 + 2 0.111 + 4 0.0185 + 7 0.111 + 8 0.0185 + 15 0.0185 + 19 0.0185 + 26 0.0185 + 32 0.0185 + 40 0.426 + 41 0.185 + 42 0.0556 + + 24 23 7 0 + 2 0.0435 + 4 0.0435 + 7 0.13 + 13 0.0435 + 40 0.435 + 41 0.261 + 43 0.0435 + + 26 8384 35 0 + 0 0.0173 + 2 0.0354 + 3 0.00131 + 4 0.00942 + 5 0.000239 + 7 0.22 + 8 0.0037 + 9 0.000119 + 12 0.00549 + 13 0.00334 + 14 0.000358 + 15 0.00262 + 19 0.00119 + 20 0.000239 + 21 0.0099 + 22 0.000596 + 26 0.0149 + 28 0.000358 + 29 0.00704 + 30 0.0037 + 31 0.000954 + 32 0.00239 + 33 0.00322 + 34 0.00131 + 35 0.000358 + 37 0.0037 + 39 0.000119 + 40 0.433 + 41 0.191 + 42 0.0198 + 43 0.00191 + 44 0.000716 + 45 0.00143 + 46 0.00155 + 47 0.000716 + + 30 598 14 0 + 0 0.00836 + 2 0.00836 + 4 0.00167 + 7 0.0134 + 13 0.00167 + 29 0.0134 + 32 0.00167 + 33 0.00167 + 40 0.562 + 41 0.319 + 42 0.0602 + 43 0.00502 + 45 0.00167 + 47 0.00167 + + 31 45 5 0 + 2 0.0222 + 40 0.267 + 41 0.644 + 42 0.0444 + 43 0.0222 + + 41 10 2 0 + 40 0.8 + 41 0.2 + + 42 5 1 0 + 40 1 + + 44 3 1 0 + 43 1 + + 45 185 5 0 + 2 0.00541 + 7 0.00541 + 40 0.497 + 41 0.259 + 46 0.232 + + 46 12 4 0 + 7 0.0833 + 40 0.583 + 41 0.25 + 45 0.0833 + + 55 121 7 0 + 2 0.0248 + 7 0.0496 + 21 0.00826 + 40 0.736 + 41 0.165 + 42 0.00826 + 43 0.00826 + + 57 10 6 0 + 0 0.2 + 7 0.2 + 21 0.1 + 35 0.1 + 40 0.2 + 41 0.2 + + 58 15 3 0 + 29 0.0667 + 40 0.667 + 41 0.267 + + 57 3084 31 15 + 0 0.00908 + 2 0.105 + 3 0.000973 + 4 0.00681 + 7 0.0516 + 8 0.0013 + 9 0.000324 + 12 0.00259 + 13 0.00162 + 14 0.0013 + 15 0.00292 + 19 0.00162 + 21 0.0123 + 22 0.000973 + 26 0.0717 + 29 0.00389 + 30 0.000324 + 31 0.0013 + 32 0.00162 + 33 0.000649 + 34 0.000324 + 35 0.000973 + 37 0.00195 + 40 0.445 + 41 0.243 + 42 0.0211 + 43 0.00259 + 44 0.00195 + 45 0.000649 + 46 0.00227 + 47 0.00227 + + 2 354 24 0 + 0 0.00847 + 2 0.0254 + 4 0.0169 + 7 0.0508 + 12 0.00282 + 13 0.00282 + 14 0.00282 + 15 0.00282 + 19 0.00282 + 21 0.00847 + 26 0.00847 + 29 0.0169 + 31 0.00282 + 32 0.00282 + 35 0.00282 + 37 0.00282 + 40 0.621 + 41 0.169 + 42 0.0282 + 43 0.00565 + 44 0.00282 + 45 0.00565 + 46 0.00282 + 47 0.00282 + + 4 11 2 0 + 2 0.818 + 41 0.182 + + 7 619 28 0 + 0 0.0226 + 2 0.0468 + 3 0.00162 + 4 0.0162 + 7 0.0565 + 8 0.00485 + 9 0.00162 + 12 0.00808 + 13 0.00485 + 14 0.00323 + 15 0.00646 + 19 0.00485 + 21 0.0162 + 22 0.00162 + 26 0.00808 + 29 0.00969 + 30 0.00162 + 31 0.00162 + 32 0.00485 + 33 0.00162 + 35 0.00323 + 37 0.00646 + 40 0.439 + 41 0.288 + 42 0.0242 + 43 0.00646 + 46 0.00646 + 47 0.00323 + + 8 10 3 0 + 0 0.1 + 40 0.7 + 41 0.2 + + 21 90 8 0 + 2 0.111 + 3 0.0111 + 7 0.0778 + 12 0.0111 + 21 0.0111 + 40 0.444 + 41 0.322 + 46 0.0111 + + 24 12 6 0 + 2 0.0833 + 7 0.167 + 22 0.0833 + 40 0.5 + 41 0.0833 + 42 0.0833 + + 30 448 11 0 + 0 0.00223 + 3 0.00223 + 4 0.00446 + 7 0.0067 + 12 0.00223 + 15 0.0067 + 33 0.00223 + 40 0.629 + 41 0.33 + 42 0.0112 + 44 0.00223 + + 31 302 10 0 + 4 0.00331 + 7 0.00993 + 13 0.00331 + 21 0.00331 + 22 0.00331 + 40 0.788 + 41 0.172 + 42 0.00331 + 44 0.00331 + 47 0.00993 + + 41 66 5 0 + 2 0.227 + 7 0.0152 + 40 0.348 + 41 0.379 + 42 0.0303 + + 44 1 1 0 + 43 1 + + 47 644 10 0 + 2 0.354 + 4 0.00155 + 7 0.0652 + 21 0.0326 + 26 0.289 + 37 0.00155 + 41 0.225 + 42 0.0264 + 44 0.00311 + 46 0.00155 + + 49 25 7 0 + 2 0.04 + 7 0.12 + 19 0.04 + 21 0.04 + 40 0.48 + 41 0.24 + 42 0.04 + + 50 54 5 0 + 2 0.204 + 14 0.0185 + 40 0.537 + 41 0.222 + 42 0.0185 + + 55 185 10 0 + 0 0.00541 + 2 0.0378 + 7 0.151 + 8 0.00541 + 26 0.0541 + 40 0.557 + 41 0.168 + 42 0.0108 + 44 0.00541 + 47 0.00541 + + 57 241 14 0 + 0 0.0332 + 2 0.0166 + 4 0.00415 + 7 0.0705 + 15 0.00415 + 21 0.00415 + 26 0.0705 + 31 0.0083 + 32 0.00415 + 34 0.00415 + 40 0.531 + 41 0.207 + 42 0.0373 + 43 0.00415 + + 58 32 12 3 + 2 0.156 + 3 0.0625 + 4 0.156 + 7 0.0938 + 8 0.125 + 14 0.0312 + 15 0.0938 + 26 0.0625 + 30 0.0312 + 39 0.0312 + 40 0.0938 + 41 0.0625 + + 2 3 2 0 + 7 0.333 + 26 0.667 + + 7 15 9 0 + 2 0.0667 + 3 0.133 + 4 0.0667 + 8 0.2 + 14 0.0667 + 15 0.2 + 30 0.0667 + 39 0.0667 + 41 0.133 + + 57 9 3 0 + 2 0.444 + 7 0.222 + 40 0.333 + + 62 3093 28 4 + 0 0.0197 + 2 0.0236 + 3 0.000323 + 4 0.00162 + 7 0.0259 + 8 0.000647 + 12 0.00711 + 15 0.000323 + 19 0.00259 + 21 0.00323 + 22 0.000323 + 26 0.0055 + 28 0.000323 + 29 0.00259 + 30 0.000647 + 31 0.00129 + 32 0.00097 + 33 0.00323 + 34 0.00162 + 37 0.00129 + 40 0.63 + 41 0.239 + 42 0.0188 + 43 0.00194 + 44 0.00097 + 45 0.00162 + 46 0.00226 + 47 0.00259 + + 26 148 11 0 + 0 0.0135 + 2 0.0135 + 7 0.0338 + 15 0.00676 + 26 0.00676 + 29 0.00676 + 33 0.00676 + 40 0.635 + 41 0.264 + 46 0.00676 + 47 0.00676 + + 41 1 1 0 + 45 1 + + 45 22 3 0 + 40 0.682 + 41 0.227 + 46 0.0909 + + 58 1 1 0 + 12 1 + + 64 449 14 1 + 0 0.0245 + 2 0.0134 + 7 0.0245 + 12 0.00891 + 21 0.00223 + 26 0.00223 + 32 0.00223 + 34 0.00223 + 40 0.695 + 41 0.192 + 42 0.0223 + 43 0.00223 + 44 0.00445 + 46 0.00445 + + 45 2 2 0 + 40 0.5 + 46 0.5 + + 65 2 2 0 + 40 0.5 + 46 0.5 + + 67 1 1 0 + 46 1 + + 68 17 2 0 + 40 0.765 + 41 0.235 + + 69 14 6 0 + 0 0.0714 + 2 0.0714 + 37 0.0714 + 40 0.571 + 41 0.143 + 42 0.0714 + + 72 5 2 0 + 0 0.6 + 29 0.4 + + 74 4 3 0 + 40 0.25 + 46 0.25 + 47 0.5 + +58 7315 39 31 + 0 0.063 + 1 0.000547 + 2 0.0418 + 3 0.00465 + 4 0.0407 + 5 0.000957 + 7 0.0861 + 8 0.0161 + 9 0.000684 + 10 0.00109 + 12 0.0257 + 13 0.0245 + 14 0.0164 + 15 0.0215 + 16 0.000547 + 19 0.0178 + 20 0.0026 + 21 0.0178 + 22 0.000273 + 23 0.000273 + 26 0.0161 + 28 0.00602 + 29 0.0187 + 30 0.00574 + 31 0.00437 + 32 0.00916 + 33 0.0145 + 34 0.00547 + 35 0.00273 + 37 0.00191 + 39 0.000547 + 40 0.0711 + 41 0.194 + 42 0.076 + 43 0.139 + 44 0.00041 + 45 0.0428 + 46 0.00342 + 47 0.00547 + + 2 85 22 4 + 0 0.0235 + 3 0.0353 + 4 0.0824 + 5 0.0118 + 7 0.0941 + 8 0.0353 + 9 0.0118 + 12 0.0235 + 13 0.0706 + 14 0.0471 + 15 0.0118 + 19 0.0353 + 21 0.341 + 22 0.0235 + 26 0.0118 + 29 0.0118 + 30 0.0118 + 31 0.0118 + 32 0.0118 + 33 0.0235 + 41 0.0588 + 45 0.0118 + + 41 20 9 0 + 0 0.05 + 3 0.05 + 7 0.1 + 13 0.1 + 15 0.05 + 21 0.45 + 22 0.1 + 33 0.05 + 45 0.05 + + 42 31 12 0 + 3 0.0323 + 4 0.161 + 5 0.0323 + 7 0.129 + 8 0.0323 + 12 0.0323 + 13 0.0645 + 14 0.0645 + 19 0.0968 + 21 0.29 + 26 0.0323 + 32 0.0323 + + 44 22 13 0 + 0 0.0455 + 4 0.0909 + 7 0.0455 + 8 0.0455 + 12 0.0455 + 13 0.0909 + 14 0.0909 + 21 0.182 + 29 0.0455 + 30 0.0455 + 31 0.0455 + 33 0.0455 + 41 0.182 + + 47 12 6 0 + 3 0.0833 + 7 0.0833 + 8 0.0833 + 9 0.0833 + 21 0.583 + 41 0.0833 + + 4 1 1 0 + 44 1 + + 7 5 4 0 + 9 0.2 + 21 0.2 + 26 0.2 + 43 0.4 + + 8 13 3 0 + 40 0.154 + 42 0.154 + 43 0.692 + + 13 17 3 0 + 41 0.0588 + 42 0.0588 + 43 0.882 + + 14 3 1 0 + 43 1 + + 15 30 4 1 + 40 0.233 + 41 0.1 + 43 0.633 + 46 0.0333 + + 2 2 1 0 + 41 1 + + 21 13 9 0 + 4 0.385 + 7 0.0769 + 8 0.0769 + 13 0.0769 + 20 0.0769 + 26 0.0769 + 31 0.0769 + 42 0.0769 + 43 0.0769 + + 28 3 1 0 + 43 1 + + 32 2 1 0 + 42 1 + + 40 16 3 0 + 4 0.0625 + 43 0.875 + 46 0.0625 + + 41 895 30 11 + 0 0.115 + 2 0.067 + 3 0.00447 + 4 0.0983 + 5 0.00335 + 7 0.124 + 8 0.038 + 9 0.00112 + 10 0.00447 + 12 0.0503 + 13 0.0313 + 14 0.0391 + 15 0.0402 + 16 0.00223 + 19 0.0391 + 20 0.0067 + 21 0.0291 + 23 0.00112 + 26 0.019 + 28 0.0145 + 29 0.0223 + 30 0.0145 + 31 0.00447 + 32 0.0134 + 33 0.019 + 34 0.00223 + 35 0.00559 + 37 0.00335 + 45 0.184 + 46 0.00223 + + 2 5 2 0 + 7 0.8 + 21 0.2 + + 15 3 2 0 + 13 0.667 + 14 0.333 + + 48 5 4 0 + 7 0.2 + 13 0.4 + 14 0.2 + 30 0.2 + + 49 33 14 0 + 0 0.0606 + 3 0.0303 + 4 0.121 + 7 0.273 + 8 0.182 + 13 0.0303 + 15 0.0303 + 19 0.0303 + 20 0.0606 + 21 0.0303 + 26 0.0303 + 28 0.0303 + 29 0.0606 + 35 0.0303 + + 52 7 6 0 + 2 0.143 + 4 0.143 + 7 0.143 + 15 0.286 + 26 0.143 + 30 0.143 + + 55 24 12 0 + 0 0.125 + 4 0.0417 + 7 0.417 + 13 0.0417 + 14 0.0417 + 30 0.0417 + 31 0.0417 + 32 0.0833 + 34 0.0417 + 35 0.0417 + 45 0.0417 + 46 0.0417 + + 57 83 23 0 + 0 0.0723 + 2 0.0723 + 3 0.012 + 4 0.157 + 7 0.157 + 8 0.0241 + 12 0.0241 + 13 0.0843 + 14 0.012 + 15 0.0361 + 19 0.012 + 20 0.012 + 21 0.0361 + 23 0.012 + 26 0.0602 + 28 0.0241 + 29 0.0723 + 30 0.012 + 32 0.012 + 33 0.0602 + 35 0.012 + 45 0.012 + 46 0.012 + + 62 585 28 0 + 0 0.126 + 2 0.0786 + 3 0.00342 + 4 0.101 + 5 0.00513 + 7 0.0906 + 8 0.0376 + 9 0.00171 + 10 0.00513 + 12 0.0632 + 13 0.0188 + 14 0.0393 + 15 0.041 + 16 0.00342 + 19 0.0479 + 20 0.00342 + 21 0.0291 + 26 0.0103 + 28 0.012 + 29 0.0171 + 30 0.0154 + 31 0.00513 + 32 0.012 + 33 0.0154 + 34 0.00171 + 35 0.00342 + 37 0.00513 + 45 0.207 + + 64 50 15 0 + 0 0.18 + 2 0.06 + 4 0.06 + 7 0.22 + 12 0.06 + 13 0.02 + 14 0.04 + 15 0.04 + 21 0.08 + 26 0.06 + 28 0.04 + 29 0.02 + 32 0.02 + 33 0.04 + 45 0.06 + + 66 71 15 0 + 0 0.0986 + 2 0.0423 + 7 0.0986 + 8 0.0141 + 10 0.0141 + 12 0.0423 + 13 0.0141 + 14 0.0704 + 15 0.0141 + 19 0.0141 + 28 0.0141 + 29 0.0141 + 32 0.0141 + 33 0.0141 + 45 0.521 + + 69 24 11 0 + 2 0.0417 + 4 0.292 + 7 0.0833 + 8 0.0833 + 13 0.0417 + 14 0.0417 + 15 0.125 + 19 0.167 + 20 0.0417 + 26 0.0417 + 45 0.0417 + + 42 358 24 11 + 0 0.182 + 2 0.0782 + 3 0.00559 + 4 0.0587 + 7 0.168 + 8 0.0196 + 12 0.0587 + 13 0.0279 + 14 0.0168 + 15 0.0251 + 19 0.0363 + 20 0.00838 + 21 0.0279 + 26 0.0503 + 28 0.014 + 29 0.0531 + 30 0.0168 + 31 0.0168 + 32 0.0307 + 33 0.0419 + 34 0.0363 + 35 0.00838 + 37 0.00559 + 45 0.014 + + 21 1 1 0 + 28 1 + + 32 2 1 0 + 4 1 + + 46 2 2 0 + 31 0.5 + 33 0.5 + + 48 14 10 0 + 0 0.143 + 2 0.0714 + 3 0.0714 + 4 0.0714 + 8 0.0714 + 13 0.143 + 14 0.0714 + 26 0.0714 + 30 0.0714 + 34 0.214 + + 49 11 6 0 + 0 0.0909 + 4 0.0909 + 7 0.455 + 12 0.0909 + 26 0.182 + 30 0.0909 + + 55 125 19 0 + 0 0.232 + 2 0.048 + 4 0.032 + 7 0.152 + 12 0.096 + 14 0.008 + 15 0.032 + 19 0.024 + 20 0.008 + 21 0.048 + 26 0.064 + 28 0.008 + 29 0.064 + 30 0.016 + 31 0.024 + 32 0.04 + 33 0.048 + 34 0.04 + 35 0.016 + + 57 68 22 0 + 0 0.206 + 2 0.0441 + 3 0.0147 + 4 0.0735 + 7 0.162 + 8 0.0294 + 12 0.0441 + 13 0.0441 + 14 0.0147 + 15 0.0294 + 19 0.0147 + 20 0.0147 + 21 0.0294 + 26 0.0294 + 28 0.0147 + 29 0.0735 + 30 0.0147 + 31 0.0294 + 32 0.0294 + 34 0.0441 + 37 0.0147 + 45 0.0294 + + 62 59 19 0 + 0 0.0678 + 2 0.169 + 4 0.0339 + 7 0.203 + 8 0.0508 + 12 0.0169 + 13 0.0678 + 14 0.0169 + 15 0.0339 + 19 0.0847 + 21 0.0169 + 26 0.0508 + 28 0.0169 + 29 0.0169 + 30 0.0169 + 32 0.0169 + 33 0.0678 + 34 0.0169 + 45 0.0339 + + 64 40 12 0 + 0 0.225 + 2 0.1 + 4 0.1 + 7 0.125 + 12 0.075 + 19 0.075 + 26 0.05 + 29 0.075 + 32 0.05 + 33 0.075 + 34 0.025 + 35 0.025 + + 67 1 1 0 + 45 1 + + 69 27 14 0 + 0 0.148 + 2 0.111 + 4 0.0741 + 7 0.259 + 8 0.037 + 12 0.037 + 15 0.037 + 20 0.037 + 21 0.037 + 28 0.037 + 29 0.0741 + 32 0.037 + 33 0.037 + 37 0.037 + + 43 1007 28 21 + 0 0.0487 + 1 0.00199 + 2 0.0616 + 3 0.00993 + 4 0.0248 + 7 0.132 + 8 0.0139 + 12 0.0199 + 13 0.0457 + 14 0.0159 + 15 0.0328 + 19 0.00497 + 21 0.0119 + 26 0.0218 + 28 0.00298 + 29 0.0278 + 30 0.000993 + 31 0.00497 + 32 0.00894 + 33 0.0189 + 34 0.00497 + 35 0.00199 + 39 0.000993 + 40 0.167 + 41 0.206 + 42 0.0894 + 45 0.000993 + 47 0.0189 + + 0 2 2 0 + 13 0.5 + 31 0.5 + + 7 2 2 0 + 7 0.5 + 19 0.5 + + 8 9 3 0 + 8 0.111 + 13 0.556 + 14 0.333 + + 13 15 6 0 + 7 0.267 + 13 0.333 + 14 0.2 + 15 0.0667 + 26 0.0667 + 42 0.0667 + + 14 3 3 0 + 8 0.333 + 21 0.333 + 29 0.333 + + 15 19 6 0 + 12 0.105 + 13 0.211 + 14 0.105 + 15 0.474 + 26 0.0526 + 42 0.0526 + + 20 1 1 0 + 8 1 + + 21 1 1 0 + 8 1 + + 28 3 3 0 + 2 0.333 + 4 0.333 + 13 0.333 + + 40 14 7 0 + 2 0.0714 + 7 0.0714 + 13 0.143 + 14 0.0714 + 15 0.429 + 19 0.0714 + 47 0.143 + + 46 20 8 0 + 0 0.05 + 2 0.15 + 8 0.05 + 12 0.1 + 15 0.05 + 40 0.3 + 41 0.2 + 42 0.1 + + 48 29 7 0 + 2 0.0345 + 8 0.138 + 13 0.552 + 14 0.069 + 15 0.0345 + 40 0.069 + 41 0.103 + + 49 6 5 0 + 1 0.167 + 2 0.167 + 28 0.333 + 40 0.167 + 47 0.167 + + 51 4 3 0 + 40 0.25 + 41 0.5 + 47 0.25 + + 52 3 1 0 + 40 1 + + 54 2 2 0 + 8 0.5 + 15 0.5 + + 55 691 24 0 + 0 0.0507 + 2 0.0651 + 3 0.00289 + 4 0.0304 + 7 0.161 + 8 0.00579 + 12 0.013 + 13 0.013 + 14 0.00434 + 15 0.0188 + 21 0.0116 + 26 0.0232 + 28 0.00145 + 29 0.0347 + 30 0.00145 + 31 0.00289 + 32 0.0101 + 33 0.0232 + 34 0.00579 + 35 0.00145 + 40 0.158 + 41 0.236 + 42 0.113 + 47 0.013 + + 57 52 15 0 + 0 0.173 + 2 0.0577 + 4 0.0385 + 7 0.154 + 12 0.115 + 13 0.0192 + 19 0.0385 + 26 0.0192 + 29 0.0192 + 32 0.0192 + 34 0.0192 + 39 0.0192 + 40 0.135 + 41 0.154 + 47 0.0192 + + 62 68 17 0 + 0 0.0147 + 1 0.0147 + 2 0.0441 + 4 0.0147 + 7 0.0441 + 13 0.0147 + 19 0.0147 + 21 0.0147 + 29 0.0147 + 31 0.0147 + 33 0.0147 + 35 0.0147 + 40 0.382 + 41 0.235 + 42 0.0588 + 45 0.0147 + 47 0.0735 + + 64 23 8 0 + 0 0.13 + 2 0.087 + 7 0.087 + 12 0.0435 + 26 0.0435 + 32 0.0435 + 40 0.261 + 41 0.304 + + 69 30 11 0 + 2 0.0667 + 3 0.267 + 7 0.1 + 21 0.0667 + 26 0.0667 + 29 0.0333 + 31 0.0333 + 33 0.0667 + 40 0.133 + 41 0.0667 + 42 0.1 + + 45 37 11 0 + 0 0.135 + 2 0.0811 + 4 0.135 + 7 0.108 + 8 0.027 + 12 0.135 + 14 0.027 + 19 0.216 + 21 0.0541 + 26 0.027 + 37 0.0541 + + 46 23 3 0 + 29 0.0435 + 42 0.087 + 43 0.87 + + 47 2420 38 14 + 0 0.0946 + 1 0.000826 + 2 0.0632 + 3 0.0062 + 4 0.0583 + 5 0.00124 + 7 0.124 + 8 0.0227 + 9 0.000413 + 10 0.00165 + 12 0.0384 + 13 0.0351 + 14 0.024 + 15 0.0322 + 16 0.000826 + 19 0.026 + 20 0.00372 + 21 0.0198 + 23 0.000413 + 26 0.0236 + 28 0.00909 + 29 0.0281 + 30 0.00785 + 31 0.0062 + 32 0.0136 + 33 0.0215 + 34 0.00826 + 35 0.00413 + 37 0.00289 + 39 0.000826 + 40 0.104 + 41 0.108 + 42 0.0409 + 43 0.00165 + 44 0.000413 + 45 0.057 + 46 0.000413 + 47 0.00826 + + 41 842 30 0 + 0 0.122 + 2 0.0713 + 3 0.00356 + 4 0.102 + 5 0.00356 + 7 0.121 + 8 0.0392 + 9 0.00119 + 10 0.00475 + 12 0.0534 + 13 0.0321 + 14 0.0416 + 15 0.0428 + 16 0.00238 + 19 0.0416 + 20 0.00713 + 21 0.0297 + 23 0.00119 + 26 0.019 + 28 0.0154 + 29 0.0238 + 30 0.0143 + 31 0.00475 + 32 0.0143 + 33 0.0202 + 34 0.00238 + 35 0.00594 + 37 0.00356 + 45 0.154 + 46 0.00119 + + 42 357 24 0 + 0 0.182 + 2 0.0784 + 3 0.0056 + 4 0.0588 + 7 0.168 + 8 0.0196 + 12 0.0588 + 13 0.028 + 14 0.0168 + 15 0.0252 + 19 0.0364 + 20 0.0084 + 21 0.028 + 26 0.0504 + 28 0.014 + 29 0.0532 + 30 0.0168 + 31 0.0168 + 32 0.0308 + 33 0.042 + 34 0.0364 + 35 0.0084 + 37 0.0056 + 45 0.0112 + + 43 1006 28 0 + 0 0.0487 + 1 0.00199 + 2 0.0616 + 3 0.00994 + 4 0.0249 + 7 0.131 + 8 0.0139 + 12 0.0199 + 13 0.0457 + 14 0.0159 + 15 0.0328 + 19 0.00497 + 21 0.0119 + 26 0.0219 + 28 0.00298 + 29 0.0278 + 30 0.000994 + 31 0.00497 + 32 0.00895 + 33 0.0189 + 34 0.00497 + 35 0.00199 + 39 0.000994 + 40 0.167 + 41 0.206 + 42 0.0895 + 45 0.000994 + 47 0.0189 + + 45 36 11 0 + 0 0.139 + 2 0.0833 + 4 0.139 + 7 0.111 + 8 0.0278 + 12 0.139 + 14 0.0278 + 19 0.222 + 21 0.0278 + 26 0.0278 + 37 0.0556 + + 48 7 4 0 + 13 0.143 + 32 0.143 + 40 0.571 + 41 0.143 + + 49 9 2 0 + 40 0.889 + 41 0.111 + + 51 2 2 0 + 41 0.5 + 43 0.5 + + 55 28 4 0 + 13 0.0357 + 40 0.857 + 41 0.0714 + 43 0.0357 + + 57 30 7 0 + 0 0.0333 + 4 0.0333 + 7 0.0333 + 40 0.733 + 41 0.1 + 42 0.0333 + 44 0.0333 + + 62 71 12 0 + 0 0.0423 + 4 0.0282 + 12 0.0282 + 28 0.0141 + 33 0.0141 + 39 0.0141 + 40 0.211 + 41 0.507 + 42 0.0704 + 43 0.0282 + 45 0.0282 + 47 0.0141 + + 64 6 3 0 + 40 0.667 + 41 0.167 + 42 0.167 + + 66 15 6 0 + 0 0.2 + 19 0.133 + 40 0.133 + 41 0.4 + 42 0.0667 + 45 0.0667 + + 68 2 1 0 + 40 1 + + 69 6 3 0 + 40 0.333 + 41 0.5 + 42 0.167 + + 48 57 7 4 + 13 0.0175 + 32 0.0175 + 40 0.0702 + 41 0.105 + 42 0.246 + 43 0.509 + 46 0.0351 + + 42 11 2 0 + 32 0.0909 + 42 0.909 + + 44 24 1 0 + 43 1 + + 45 2 1 0 + 46 1 + + 49 7 4 0 + 13 0.143 + 40 0.143 + 41 0.286 + 43 0.429 + + 49 78 10 5 + 0 0.0128 + 4 0.0256 + 7 0.141 + 8 0.0256 + 9 0.0128 + 21 0.0256 + 40 0.103 + 41 0.436 + 42 0.141 + 43 0.0769 + + 2 17 9 0 + 0 0.0588 + 4 0.118 + 7 0.176 + 8 0.118 + 9 0.0588 + 21 0.118 + 40 0.176 + 41 0.118 + 42 0.0588 + + 41 39 4 0 + 7 0.128 + 40 0.0256 + 41 0.744 + 42 0.103 + + 42 8 3 0 + 7 0.125 + 40 0.125 + 42 0.75 + + 44 6 1 0 + 43 1 + + 49 5 2 0 + 40 0.6 + 41 0.4 + + 51 9 4 0 + 40 0.111 + 41 0.222 + 42 0.111 + 43 0.556 + + 52 11 3 0 + 40 0.0909 + 41 0.636 + 43 0.273 + + 54 3 2 0 + 42 0.333 + 43 0.667 + + 55 884 7 8 + 7 0.00226 + 13 0.00113 + 40 0.0305 + 41 0.0294 + 42 0.141 + 43 0.783 + 46 0.0124 + + 2 18 4 0 + 40 0.167 + 41 0.167 + 42 0.444 + 43 0.222 + + 21 6 4 0 + 40 0.333 + 41 0.333 + 42 0.167 + 43 0.167 + + 41 106 6 0 + 7 0.00943 + 13 0.00943 + 40 0.0566 + 41 0.0472 + 42 0.0377 + 43 0.84 + + 42 115 4 0 + 40 0.0696 + 41 0.0261 + 42 0.878 + 43 0.0261 + + 44 585 2 0 + 41 0.00342 + 43 0.997 + + 45 13 2 0 + 41 0.154 + 46 0.846 + + 47 3 3 0 + 7 0.333 + 40 0.333 + 43 0.333 + + 49 28 4 0 + 40 0.25 + 41 0.25 + 42 0.357 + 43 0.143 + + 57 236 10 8 + 0 0.00424 + 4 0.00424 + 7 0.00424 + 19 0.00424 + 30 0.00847 + 40 0.0932 + 41 0.364 + 42 0.292 + 43 0.22 + 44 0.00424 + + 2 7 4 0 + 19 0.143 + 30 0.286 + 40 0.429 + 42 0.143 + + 21 2 1 0 + 40 1 + + 41 82 4 0 + 40 0.0488 + 41 0.878 + 42 0.0366 + 43 0.0366 + + 42 68 3 0 + 7 0.0147 + 40 0.0588 + 42 0.926 + + 43 1 1 0 + 0 1 + + 44 49 1 0 + 43 1 + + 47 9 4 0 + 4 0.111 + 40 0.222 + 41 0.556 + 44 0.111 + + 49 11 3 0 + 40 0.455 + 41 0.455 + 42 0.0909 + + 58 4 3 0 + 8 0.25 + 41 0.25 + 43 0.5 + + 62 789 13 7 + 0 0.0038 + 4 0.00253 + 12 0.00253 + 28 0.00127 + 33 0.00127 + 39 0.00127 + 40 0.0203 + 41 0.787 + 42 0.0811 + 43 0.0887 + 45 0.00253 + 46 0.00634 + 47 0.00127 + + 2 13 4 0 + 40 0.0769 + 41 0.0769 + 42 0.615 + 43 0.231 + + 41 507 6 0 + 0 0.00197 + 39 0.00197 + 40 0.00789 + 41 0.98 + 42 0.00592 + 43 0.00197 + + 42 62 5 0 + 4 0.0161 + 40 0.129 + 42 0.806 + 43 0.0323 + 47 0.0161 + + 44 64 2 0 + 40 0.0156 + 43 0.984 + + 45 6 2 0 + 41 0.167 + 46 0.833 + + 46 66 3 0 + 4 0.0152 + 41 0.97 + 45 0.0152 + + 47 69 9 0 + 0 0.029 + 12 0.029 + 28 0.0145 + 33 0.0145 + 40 0.0145 + 41 0.841 + 42 0.029 + 43 0.0145 + 45 0.0145 + + 64 119 4 3 + 40 0.0336 + 41 0.429 + 42 0.345 + 43 0.193 + + 41 51 3 0 + 40 0.0392 + 41 0.941 + 42 0.0196 + + 42 38 2 0 + 40 0.0263 + 42 0.974 + + 44 23 1 0 + 43 1 + + 66 86 6 1 + 0 0.0349 + 19 0.0233 + 40 0.0233 + 41 0.895 + 42 0.0116 + 45 0.0116 + + 47 12 4 0 + 0 0.0833 + 19 0.167 + 40 0.167 + 41 0.583 + + 67 7 4 0 + 40 0.286 + 42 0.143 + 43 0.286 + 46 0.286 + + 68 4 2 0 + 40 0.5 + 42 0.5 + + 69 87 4 3 + 40 0.023 + 41 0.31 + 42 0.322 + 43 0.345 + + 42 15 1 0 + 42 1 + + 44 25 1 0 + 43 1 + + 55 25 2 0 + 41 0.96 + 42 0.04 + +59 5284 34 6 + 0 0.00151 + 1 0.00114 + 2 0.0151 + 3 0.0178 + 4 0.211 + 7 0.239 + 8 0.0503 + 9 0.00492 + 10 0.00265 + 12 0.000379 + 13 0.0492 + 14 0.0462 + 15 0.0235 + 17 0.00114 + 19 0.000757 + 20 0.0526 + 21 0.0488 + 22 0.00454 + 24 0.00114 + 26 0.0462 + 30 0.0163 + 31 0.00189 + 35 0.00568 + 37 0.00492 + 38 0.000757 + 39 0.00871 + 40 0.0765 + 41 0.05 + 42 0.00568 + 43 0.000757 + 44 0.000379 + 45 0.00454 + 46 0.0053 + 47 0.000379 + + 7 65 7 0 + 2 0.0615 + 8 0.0154 + 21 0.0154 + 40 0.523 + 41 0.308 + 42 0.0615 + 43 0.0154 + + 8 6 3 0 + 3 0.167 + 7 0.667 + 14 0.167 + + 21 84 9 0 + 0 0.0119 + 2 0.143 + 7 0.0833 + 8 0.0119 + 26 0.0119 + 40 0.464 + 41 0.214 + 42 0.0476 + 47 0.0119 + + 22 1 1 0 + 24 1 + + 24 2481 33 0 + 0 0.00121 + 1 0.00121 + 2 0.00967 + 3 0.0185 + 4 0.225 + 7 0.25 + 8 0.0528 + 9 0.00524 + 10 0.00282 + 12 0.000403 + 13 0.052 + 14 0.0484 + 15 0.025 + 17 0.00121 + 19 0.000806 + 20 0.056 + 21 0.0512 + 22 0.00484 + 24 0.000806 + 26 0.0488 + 30 0.0173 + 31 0.00202 + 35 0.00605 + 37 0.00524 + 38 0.000806 + 39 0.00927 + 40 0.0516 + 41 0.0379 + 42 0.00282 + 43 0.000403 + 44 0.000403 + 45 0.00484 + 46 0.00564 + + 47 2642 34 5 + 0 0.00151 + 1 0.00114 + 2 0.0151 + 3 0.0178 + 4 0.211 + 7 0.239 + 8 0.0503 + 9 0.00492 + 10 0.00265 + 12 0.000379 + 13 0.0492 + 14 0.0462 + 15 0.0235 + 17 0.00114 + 19 0.000757 + 20 0.0526 + 21 0.0488 + 22 0.00454 + 24 0.00114 + 26 0.0462 + 30 0.0163 + 31 0.00189 + 35 0.00568 + 37 0.00492 + 38 0.000757 + 39 0.00871 + 40 0.0765 + 41 0.05 + 42 0.00568 + 43 0.000757 + 44 0.000379 + 45 0.00454 + 46 0.0053 + 47 0.000379 + + 7 65 7 0 + 2 0.0615 + 8 0.0154 + 21 0.0154 + 40 0.523 + 41 0.308 + 42 0.0615 + 43 0.0154 + + 8 6 3 0 + 3 0.167 + 7 0.667 + 14 0.167 + + 21 84 9 0 + 0 0.0119 + 2 0.143 + 7 0.0833 + 8 0.0119 + 26 0.0119 + 40 0.464 + 41 0.214 + 42 0.0476 + 47 0.0119 + + 22 1 1 0 + 24 1 + + 24 2481 33 0 + 0 0.00121 + 1 0.00121 + 2 0.00967 + 3 0.0185 + 4 0.225 + 7 0.25 + 8 0.0528 + 9 0.00524 + 10 0.00282 + 12 0.000403 + 13 0.052 + 14 0.0484 + 15 0.025 + 17 0.00121 + 19 0.000806 + 20 0.056 + 21 0.0512 + 22 0.00484 + 24 0.000806 + 26 0.0488 + 30 0.0173 + 31 0.00202 + 35 0.00605 + 37 0.00524 + 38 0.000806 + 39 0.00927 + 40 0.0516 + 41 0.0379 + 42 0.00282 + 43 0.000403 + 44 0.000403 + 45 0.00484 + 46 0.00564 + +60 29066 33 16 + 0 0.00378 + 2 0.00932 + 3 0.35 + 4 0.0253 + 6 6.88e-05 + 7 0.139 + 8 0.0319 + 9 0.00368 + 12 0.00117 + 13 0.114 + 14 0.0974 + 15 0.0103 + 16 0.000826 + 19 0.000482 + 20 0.00131 + 21 0.0032 + 22 0.000344 + 25 6.88e-05 + 26 0.0221 + 29 0.00131 + 30 0.00124 + 31 0.00365 + 34 0.000344 + 35 0.000482 + 37 6.88e-05 + 40 0.072 + 41 0.0853 + 42 0.00523 + 43 0.012 + 44 0.0031 + 45 0.000344 + 46 0.000172 + 47 0.000482 + + 2 37 4 0 + 3 0.108 + 9 0.73 + 13 0.027 + 21 0.135 + + 3 13760 32 11 + 0 0.00363 + 2 0.00996 + 3 0.356 + 4 0.0206 + 6 7.27e-05 + 7 0.136 + 8 0.0312 + 9 0.00203 + 12 0.00124 + 13 0.115 + 14 0.0988 + 15 0.0102 + 16 0.000872 + 19 0.000436 + 20 7.27e-05 + 21 0.0024 + 22 0.000145 + 25 7.27e-05 + 26 0.0225 + 29 0.00109 + 30 0.00124 + 31 0.00356 + 34 0.000363 + 37 7.27e-05 + 40 0.0715 + 41 0.0883 + 42 0.00516 + 43 0.0126 + 44 0.00327 + 45 0.000363 + 46 7.27e-05 + 47 0.000509 + + 2 62 12 0 + 3 0.0161 + 4 0.0161 + 7 0.113 + 8 0.0323 + 13 0.0323 + 14 0.548 + 21 0.0161 + 31 0.0161 + 34 0.0161 + 40 0.0806 + 41 0.0968 + 45 0.0161 + + 3 6824 31 0 + 0 0.00659 + 2 0.0182 + 3 0.000293 + 4 0.0262 + 6 0.000147 + 7 0.257 + 8 0.0478 + 9 0.00249 + 12 0.00205 + 13 0.119 + 14 0.0928 + 15 0.0147 + 16 0.000879 + 19 0.000879 + 20 0.000147 + 21 0.0041 + 22 0.000147 + 25 0.000147 + 26 0.0441 + 29 0.00147 + 30 0.0022 + 31 0.00659 + 34 0.000586 + 40 0.137 + 41 0.174 + 42 0.00996 + 43 0.0246 + 44 0.00601 + 45 0.00044 + 46 0.000147 + 47 0.00103 + + 4 70 7 0 + 7 0.0286 + 8 0.129 + 13 0.229 + 14 0.486 + 15 0.0857 + 16 0.0286 + 41 0.0143 + + 7 732 17 0 + 0 0.00273 + 2 0.00137 + 3 0.00137 + 4 0.0041 + 7 0.0232 + 8 0.056 + 9 0.00137 + 12 0.00137 + 13 0.493 + 14 0.373 + 15 0.0246 + 29 0.00273 + 31 0.00137 + 37 0.00137 + 40 0.0082 + 41 0.00273 + 44 0.00137 + + 8 27 4 0 + 7 0.037 + 13 0.37 + 14 0.556 + 15 0.037 + + 10 120 8 0 + 7 0.0333 + 8 0.175 + 9 0.0167 + 13 0.233 + 14 0.483 + 15 0.0333 + 30 0.0167 + 40 0.00833 + + 21 513 14 0 + 0 0.00195 + 2 0.00195 + 3 0.00195 + 7 0.0253 + 8 0.0507 + 9 0.00585 + 13 0.567 + 14 0.312 + 15 0.0156 + 16 0.0039 + 29 0.0039 + 31 0.00195 + 40 0.00585 + 41 0.00195 + + 26 226 16 0 + 0 0.00885 + 2 0.00442 + 3 0.00442 + 4 0.00885 + 7 0.0221 + 8 0.0133 + 9 0.00442 + 13 0.23 + 14 0.664 + 15 0.00885 + 16 0.00885 + 21 0.00442 + 22 0.00442 + 40 0.00442 + 41 0.00442 + 42 0.00442 + + 38 5 4 0 + 9 0.2 + 40 0.4 + 41 0.2 + 44 0.2 + + 39 5169 20 0 + 2 0.00193 + 3 0.946 + 4 0.0192 + 7 0.0135 + 8 0.000193 + 9 0.00058 + 12 0.000387 + 13 0.00271 + 14 0.000387 + 15 0.000193 + 21 0.00058 + 26 0.00174 + 29 0.000193 + 31 0.000193 + 40 0.00658 + 41 0.00368 + 42 0.000387 + 43 0.00116 + 44 0.000193 + 45 0.000193 + + 41 1 1 0 + 44 1 + + 4 42 8 0 + 0 0.0238 + 3 0.0238 + 4 0.0476 + 7 0.0952 + 13 0.738 + 15 0.0238 + 35 0.0238 + 42 0.0238 + + 7 10 6 0 + 3 0.4 + 4 0.2 + 8 0.1 + 13 0.1 + 20 0.1 + 40 0.1 + + 8 58 11 2 + 4 0.069 + 7 0.276 + 8 0.0862 + 13 0.103 + 14 0.328 + 15 0.0345 + 20 0.0345 + 29 0.0172 + 31 0.0172 + 35 0.0172 + 40 0.0172 + + 4 23 5 0 + 7 0.348 + 8 0.0435 + 13 0.0435 + 14 0.522 + 29 0.0435 + + 7 12 8 0 + 4 0.167 + 7 0.0833 + 8 0.167 + 13 0.167 + 14 0.167 + 15 0.0833 + 20 0.0833 + 31 0.0833 + + 9 98 14 3 + 0 0.0102 + 2 0.0102 + 4 0.0204 + 7 0.194 + 8 0.0714 + 13 0.112 + 14 0.102 + 15 0.0204 + 19 0.0102 + 26 0.0204 + 29 0.0102 + 40 0.337 + 41 0.0612 + 42 0.0204 + + 2 78 13 0 + 0 0.0128 + 2 0.0128 + 4 0.0256 + 7 0.244 + 8 0.0513 + 13 0.0256 + 14 0.0897 + 19 0.0128 + 26 0.0256 + 29 0.0128 + 40 0.41 + 41 0.0641 + 42 0.0128 + + 3 13 7 0 + 8 0.154 + 13 0.308 + 14 0.154 + 15 0.154 + 40 0.0769 + 41 0.0769 + 42 0.0769 + + 13 4 2 0 + 13 0.75 + 14 0.25 + + 13 248 19 6 + 0 0.00403 + 2 0.0605 + 3 0.153 + 4 0.0282 + 7 0.343 + 8 0.0242 + 9 0.0282 + 13 0.0605 + 14 0.0605 + 20 0.0161 + 21 0.00806 + 26 0.0605 + 31 0.00403 + 35 0.00806 + 40 0.0927 + 41 0.0323 + 42 0.00806 + 43 0.00403 + 46 0.00403 + + 3 165 15 0 + 2 0.0667 + 3 0.218 + 4 0.0242 + 7 0.255 + 8 0.0121 + 9 0.0242 + 13 0.0848 + 14 0.0303 + 21 0.00606 + 26 0.0788 + 31 0.00606 + 40 0.127 + 41 0.0485 + 42 0.0121 + 43 0.00606 + + 4 33 8 0 + 2 0.0606 + 3 0.0606 + 7 0.394 + 8 0.121 + 9 0.0303 + 14 0.273 + 21 0.0303 + 46 0.0303 + + 7 24 8 0 + 0 0.0417 + 4 0.0833 + 7 0.5 + 13 0.0417 + 14 0.0417 + 20 0.125 + 35 0.0833 + 40 0.0833 + + 8 4 2 0 + 7 0.75 + 9 0.25 + + 21 12 3 0 + 4 0.0833 + 7 0.833 + 20 0.0833 + + 47 5 4 0 + 2 0.2 + 7 0.2 + 9 0.2 + 26 0.4 + + 14 83 17 4 + 0 0.012 + 3 0.012 + 4 0.205 + 7 0.229 + 8 0.0843 + 9 0.0723 + 13 0.0361 + 14 0.0602 + 15 0.0602 + 20 0.0482 + 21 0.0602 + 22 0.0361 + 29 0.012 + 31 0.012 + 35 0.0361 + 41 0.012 + 46 0.012 + + 3 59 14 0 + 3 0.0169 + 4 0.288 + 7 0.0339 + 8 0.119 + 9 0.0847 + 13 0.0508 + 14 0.0847 + 15 0.0678 + 20 0.0508 + 21 0.0847 + 22 0.0339 + 29 0.0169 + 31 0.0169 + 35 0.0508 + + 7 16 5 0 + 0 0.0625 + 7 0.75 + 9 0.0625 + 15 0.0625 + 46 0.0625 + + 8 3 2 0 + 7 0.667 + 22 0.333 + + 21 4 2 0 + 7 0.75 + 41 0.25 + + 17 36 2 0 + 4 0.833 + 20 0.167 + + 21 56 10 3 + 0 0.0179 + 4 0.304 + 7 0.0893 + 8 0.143 + 14 0.125 + 20 0.0179 + 21 0.0536 + 31 0.0179 + 40 0.0714 + 41 0.161 + + 2 32 8 0 + 0 0.0312 + 4 0.0625 + 7 0.125 + 8 0.125 + 14 0.219 + 21 0.0312 + 40 0.125 + 41 0.281 + + 7 12 5 0 + 4 0.417 + 7 0.0833 + 8 0.333 + 20 0.0833 + 31 0.0833 + + 21 11 2 0 + 4 0.818 + 21 0.182 + + 22 6 6 0 + 8 0.167 + 9 0.167 + 13 0.167 + 29 0.167 + 30 0.167 + 40 0.167 + + 23 1 1 0 + 21 1 + + 26 12 1 0 + 3 1 + + 28 2 1 0 + 4 1 + + 39 5169 1 0 + 3 1 + + 47 9444 33 13 + 0 0.00582 + 2 0.0125 + 3 0.00498 + 4 0.0389 + 6 0.000106 + 7 0.213 + 8 0.049 + 9 0.00402 + 12 0.0018 + 13 0.175 + 14 0.15 + 15 0.0159 + 16 0.00127 + 19 0.000741 + 20 0.00201 + 21 0.00466 + 22 0.000529 + 25 0.000106 + 26 0.0335 + 29 0.00201 + 30 0.00191 + 31 0.00561 + 34 0.000529 + 35 0.000741 + 37 0.000106 + 40 0.111 + 41 0.131 + 42 0.00805 + 43 0.0185 + 44 0.00476 + 45 0.000529 + 46 0.000212 + 47 0.000741 + + 3 8844 32 0 + 0 0.00565 + 2 0.0131 + 3 0.000905 + 4 0.0321 + 6 0.000113 + 7 0.212 + 8 0.0485 + 9 0.00317 + 12 0.00192 + 13 0.179 + 14 0.154 + 15 0.0158 + 16 0.00136 + 19 0.000678 + 20 0.000113 + 21 0.00373 + 22 0.000226 + 25 0.000113 + 26 0.0351 + 29 0.0017 + 30 0.00192 + 31 0.00554 + 34 0.000565 + 37 0.000113 + 40 0.111 + 41 0.137 + 42 0.00803 + 43 0.0197 + 44 0.00509 + 45 0.000565 + 46 0.000113 + 47 0.000791 + + 4 41 7 0 + 0 0.0244 + 4 0.0488 + 7 0.0976 + 13 0.756 + 15 0.0244 + 35 0.0244 + 42 0.0244 + + 7 3 3 0 + 4 0.333 + 20 0.333 + 40 0.333 + + 8 58 11 0 + 4 0.069 + 7 0.276 + 8 0.0862 + 13 0.103 + 14 0.328 + 15 0.0345 + 20 0.0345 + 29 0.0172 + 31 0.0172 + 35 0.0172 + 40 0.0172 + + 9 98 14 0 + 0 0.0102 + 2 0.0102 + 4 0.0204 + 7 0.194 + 8 0.0714 + 13 0.112 + 14 0.102 + 15 0.0204 + 19 0.0102 + 26 0.0204 + 29 0.0102 + 40 0.337 + 41 0.0612 + 42 0.0204 + + 13 211 19 0 + 0 0.00474 + 2 0.00474 + 3 0.175 + 4 0.0332 + 7 0.37 + 8 0.0284 + 9 0.0142 + 13 0.0711 + 14 0.0711 + 20 0.019 + 21 0.00948 + 26 0.019 + 31 0.00474 + 35 0.00948 + 40 0.109 + 41 0.0379 + 42 0.00948 + 43 0.00474 + 46 0.00474 + + 14 82 16 0 + 0 0.0122 + 3 0.0122 + 4 0.207 + 7 0.232 + 8 0.0854 + 9 0.0732 + 13 0.0366 + 14 0.061 + 15 0.061 + 20 0.0488 + 21 0.061 + 22 0.0366 + 29 0.0122 + 31 0.0122 + 35 0.0366 + 41 0.0122 + + 17 36 2 0 + 4 0.833 + 20 0.167 + + 21 56 10 0 + 0 0.0179 + 4 0.304 + 7 0.0893 + 8 0.143 + 14 0.125 + 20 0.0179 + 21 0.0536 + 31 0.0179 + 40 0.0714 + 41 0.161 + + 22 6 6 0 + 8 0.167 + 9 0.167 + 13 0.167 + 29 0.167 + 30 0.167 + 40 0.167 + + 23 1 1 0 + 21 1 + + 26 1 1 0 + 3 1 + + 28 2 1 0 + 4 1 + +61 113 10 4 + 0 0.0177 + 2 0.0265 + 7 0.133 + 21 0.00885 + 29 0.0177 + 30 0.00885 + 33 0.0177 + 40 0.372 + 41 0.327 + 42 0.0708 + + 2 1 1 0 + 21 1 + + 47 47 7 0 + 0 0.0213 + 2 0.0213 + 29 0.0213 + 33 0.0213 + 40 0.447 + 41 0.383 + 42 0.0851 + + 49 14 4 0 + 7 0.786 + 30 0.0714 + 41 0.0714 + 42 0.0714 + + 57 19 3 0 + 40 0.579 + 41 0.316 + 42 0.105 + +62 239664 43 23 + 0 0.00769 + 1 8.35e-06 + 2 0.0246 + 3 0.000417 + 4 0.00451 + 5 0.000255 + 6 8.35e-06 + 7 0.0107 + 8 0.00105 + 9 7.09e-05 + 10 7.09e-05 + 11 8.35e-06 + 12 0.00318 + 13 0.00107 + 14 0.00113 + 15 0.00279 + 16 2.5e-05 + 17 2.09e-05 + 19 0.00431 + 20 0.000559 + 21 0.00236 + 22 9.6e-05 + 23 2.09e-05 + 26 0.00115 + 27 1.25e-05 + 28 0.000221 + 29 0.0016 + 30 0.000421 + 31 0.000184 + 32 0.00053 + 33 0.0016 + 34 0.0002 + 35 3.34e-05 + 37 0.000526 + 39 3.34e-05 + 40 0.438 + 41 0.154 + 42 0.0193 + 43 0.00174 + 44 0.000538 + 45 0.000726 + 46 0.0115 + 47 0.303 + + 0 1 1 0 + 21 1 + + 2 2635 38 8 + 0 0.00835 + 1 0.00038 + 2 0.00038 + 3 0.022 + 4 0.25 + 5 0.0121 + 7 0.049 + 8 0.0509 + 9 0.0038 + 10 0.00607 + 12 0.00417 + 13 0.055 + 14 0.0687 + 15 0.12 + 16 0.00152 + 17 0.00114 + 19 0.205 + 20 0.0364 + 21 0.0509 + 22 0.00114 + 23 0.00114 + 26 0.00569 + 27 0.00038 + 28 0.00342 + 29 0.00114 + 30 0.00873 + 31 0.00152 + 32 0.00038 + 33 0.00152 + 34 0.00114 + 35 0.000759 + 37 0.00569 + 39 0.00114 + 41 0.0114 + 42 0.00038 + 43 0.00038 + 44 0.00152 + 45 0.00645 + + 41 1755 33 0 + 0 0.00627 + 2 0.00057 + 3 0.0131 + 4 0.271 + 5 0.0114 + 7 0.0581 + 8 0.0541 + 9 0.00399 + 10 0.00513 + 12 0.00399 + 13 0.045 + 14 0.0638 + 15 0.113 + 16 0.00228 + 17 0.00114 + 19 0.226 + 20 0.0336 + 21 0.049 + 22 0.00114 + 23 0.00114 + 26 0.00285 + 28 0.00228 + 29 0.00057 + 30 0.0108 + 31 0.00171 + 34 0.00057 + 35 0.00057 + 37 0.00741 + 39 0.00114 + 41 0.00342 + 42 0.00057 + 44 0.00057 + 45 0.00399 + + 42 83 20 0 + 0 0.0241 + 1 0.012 + 3 0.0361 + 4 0.229 + 7 0.0602 + 8 0.0361 + 10 0.0241 + 12 0.012 + 13 0.0482 + 14 0.0241 + 15 0.108 + 19 0.157 + 20 0.012 + 21 0.0964 + 26 0.012 + 27 0.012 + 28 0.012 + 35 0.012 + 41 0.0602 + 44 0.012 + + 44 1 1 0 + 43 1 + + 45 16 5 0 + 4 0.188 + 13 0.125 + 14 0.0625 + 19 0.562 + 21 0.0625 + + 46 38 11 0 + 4 0.158 + 7 0.0263 + 13 0.0526 + 14 0.0526 + 15 0.0789 + 19 0.316 + 20 0.0526 + 21 0.0526 + 22 0.0263 + 37 0.0263 + 45 0.158 + + 58 43 14 0 + 3 0.0465 + 4 0.256 + 5 0.0465 + 7 0.0233 + 8 0.0698 + 12 0.0233 + 13 0.0698 + 14 0.093 + 15 0.0465 + 19 0.186 + 20 0.0698 + 21 0.0233 + 28 0.0233 + 45 0.0233 + + 62 696 30 0 + 0 0.0129 + 3 0.0388 + 4 0.208 + 5 0.0144 + 7 0.0287 + 8 0.0474 + 9 0.00431 + 10 0.00718 + 12 0.00287 + 13 0.079 + 14 0.0862 + 15 0.149 + 17 0.00144 + 19 0.147 + 20 0.0445 + 21 0.0517 + 23 0.00144 + 26 0.0129 + 28 0.00431 + 29 0.00287 + 30 0.00575 + 31 0.00144 + 32 0.00144 + 33 0.00575 + 34 0.00287 + 37 0.00144 + 39 0.00144 + 41 0.0273 + 44 0.00287 + 45 0.00431 + + 69 2 1 0 + 3 1 + + 7 42 8 1 + 3 0.0238 + 4 0.286 + 5 0.0238 + 7 0.0238 + 13 0.0476 + 14 0.167 + 15 0.0476 + 19 0.381 + + 62 4 3 0 + 3 0.25 + 4 0.25 + 14 0.5 + + 21 32 13 1 + 3 0.0312 + 4 0.156 + 7 0.0312 + 8 0.0312 + 9 0.0312 + 15 0.0625 + 19 0.312 + 20 0.0625 + 21 0.0938 + 26 0.0625 + 28 0.0312 + 37 0.0625 + 41 0.0312 + + 2 7 5 0 + 4 0.429 + 15 0.143 + 19 0.143 + 21 0.143 + 37 0.143 + + 40 35953 5 2 + 40 2.78e-05 + 43 0.00337 + 45 0.000278 + 46 0.06 + 47 0.936 + + 6 1 1 0 + 43 1 + + 62 2516 4 0 + 43 0.00556 + 45 0.000795 + 46 0.0823 + 47 0.911 + + 41 2397 27 8 + 0 0.00167 + 2 0.736 + 3 0.00292 + 4 0.0217 + 5 0.00375 + 6 0.000417 + 7 0.0321 + 8 0.000834 + 9 0.000417 + 12 0.000417 + 13 0.00709 + 14 0.00501 + 15 0.0375 + 19 0.0209 + 20 0.00167 + 21 0.0196 + 23 0.000417 + 26 0.00125 + 27 0.000417 + 28 0.00125 + 29 0.00125 + 30 0.00626 + 33 0.00292 + 34 0.000834 + 45 0.00501 + 46 0.0868 + 47 0.00209 + + 2 26 8 0 + 3 0.0385 + 4 0.0385 + 7 0.615 + 9 0.0385 + 19 0.0769 + 21 0.115 + 27 0.0385 + 30 0.0385 + + 6 1 1 0 + 26 1 + + 21 1 1 0 + 45 1 + + 49 4 3 0 + 2 0.25 + 7 0.5 + 21 0.25 + + 55 8 5 0 + 7 0.25 + 15 0.125 + 21 0.125 + 30 0.125 + 46 0.375 + + 58 7 3 0 + 2 0.143 + 14 0.143 + 45 0.714 + + 62 2139 22 0 + 2 0.813 + 3 0.00234 + 4 0.0229 + 5 0.00421 + 6 0.000468 + 7 0.022 + 8 0.000935 + 13 0.00748 + 14 0.00421 + 15 0.0411 + 19 0.0206 + 20 0.0014 + 21 0.0173 + 23 0.000468 + 26 0.000935 + 28 0.0014 + 29 0.000468 + 30 0.00468 + 33 0.000935 + 34 0.000468 + 45 0.00234 + 46 0.0299 + + 69 206 19 0 + 0 0.0194 + 2 0.0971 + 3 0.00485 + 4 0.00971 + 7 0.0388 + 12 0.00485 + 13 0.00485 + 14 0.00971 + 15 0.00485 + 19 0.0194 + 20 0.00485 + 21 0.0243 + 29 0.00971 + 30 0.0146 + 33 0.0243 + 34 0.00485 + 45 0.00485 + 46 0.675 + 47 0.0243 + + 42 977 35 6 + 0 0.00102 + 1 0.00102 + 2 0.088 + 3 0.0143 + 4 0.148 + 5 0.00614 + 7 0.0645 + 8 0.0287 + 9 0.00409 + 10 0.00102 + 11 0.00205 + 13 0.0409 + 14 0.0409 + 15 0.1 + 16 0.00205 + 17 0.00102 + 19 0.141 + 20 0.0194 + 21 0.0522 + 23 0.00102 + 26 0.00512 + 27 0.00102 + 28 0.00921 + 30 0.00614 + 31 0.00102 + 34 0.00205 + 35 0.00205 + 37 0.00512 + 39 0.00205 + 40 0.0747 + 41 0.00102 + 42 0.00205 + 45 0.0491 + 46 0.00409 + 47 0.0768 + + 42 2 1 0 + 45 1 + + 46 6 1 0 + 47 1 + + 58 4 3 0 + 7 0.25 + 21 0.25 + 45 0.5 + + 62 815 34 0 + 0 0.00123 + 1 0.00123 + 2 0.103 + 3 0.0172 + 4 0.178 + 5 0.00736 + 7 0.0736 + 8 0.0331 + 9 0.00491 + 10 0.00123 + 11 0.00245 + 13 0.0479 + 14 0.0491 + 15 0.119 + 16 0.00245 + 17 0.00123 + 19 0.168 + 20 0.0233 + 21 0.0577 + 23 0.00123 + 26 0.00613 + 27 0.00123 + 28 0.011 + 30 0.00736 + 31 0.00123 + 34 0.00245 + 35 0.00245 + 37 0.00491 + 39 0.00123 + 40 0.00859 + 42 0.00245 + 45 0.0528 + 46 0.00245 + 47 0.00245 + + 66 3 3 0 + 2 0.333 + 8 0.333 + 40 0.333 + + 69 144 13 0 + 2 0.00694 + 7 0.0139 + 13 0.00694 + 15 0.00694 + 19 0.00694 + 21 0.0208 + 37 0.00694 + 39 0.00694 + 40 0.444 + 41 0.00694 + 45 0.00694 + 46 0.0139 + 47 0.451 + + 43 125 4 3 + 20 0.008 + 40 0.032 + 42 0.008 + 47 0.952 + + 2 1 1 0 + 20 1 + + 40 115 2 0 + 42 0.0087 + 47 0.991 + + 69 4 1 0 + 40 1 + + 45 82 15 5 + 0 0.0244 + 2 0.22 + 4 0.134 + 5 0.0122 + 7 0.11 + 8 0.0122 + 13 0.0244 + 14 0.0122 + 15 0.0244 + 19 0.146 + 20 0.0366 + 21 0.0732 + 28 0.0366 + 37 0.0122 + 47 0.122 + + 2 15 7 0 + 0 0.0667 + 4 0.4 + 5 0.0667 + 7 0.133 + 19 0.0667 + 21 0.133 + 28 0.133 + + 40 10 1 0 + 47 1 + + 41 11 4 0 + 2 0.636 + 8 0.0909 + 19 0.182 + 21 0.0909 + + 42 31 11 0 + 0 0.0323 + 4 0.161 + 7 0.194 + 13 0.0645 + 14 0.0323 + 15 0.0645 + 19 0.258 + 20 0.0968 + 21 0.0323 + 28 0.0323 + 37 0.0323 + + 58 13 3 0 + 2 0.846 + 7 0.0769 + 19 0.0769 + + 46 2445 19 7 + 0 0.00164 + 2 0.0225 + 4 0.00204 + 6 0.000409 + 7 0.00573 + 15 0.00777 + 19 0.0151 + 21 0.00164 + 26 0.000818 + 28 0.000409 + 29 0.0139 + 30 0.000409 + 33 0.0278 + 40 0.00409 + 42 0.00327 + 43 0.00368 + 45 0.000409 + 46 0.00859 + 47 0.88 + + 40 2157 5 0 + 2 0.000464 + 42 0.00278 + 43 0.00278 + 46 0.00881 + 47 0.985 + + 41 201 13 0 + 0 0.00995 + 2 0.169 + 4 0.0249 + 6 0.00498 + 7 0.0149 + 15 0.0796 + 19 0.179 + 21 0.00498 + 29 0.169 + 30 0.00498 + 33 0.328 + 45 0.00498 + 46 0.00498 + + 42 4 3 0 + 28 0.25 + 40 0.25 + 47 0.5 + + 48 12 2 0 + 2 0.667 + 7 0.333 + + 55 11 6 0 + 2 0.182 + 7 0.364 + 21 0.0909 + 26 0.0909 + 33 0.0909 + 42 0.182 + + 62 7 4 0 + 2 0.571 + 15 0.143 + 19 0.143 + 47 0.143 + + 69 33 10 0 + 0 0.0606 + 2 0.182 + 7 0.0909 + 15 0.0606 + 21 0.0606 + 26 0.0303 + 40 0.273 + 43 0.0909 + 46 0.0303 + 47 0.121 + + 47 95402 34 17 + 0 0.00953 + 2 0.0171 + 3 8.39e-05 + 4 0.000954 + 5 6.29e-05 + 7 0.0109 + 8 0.000419 + 12 0.00393 + 13 0.000241 + 14 0.000157 + 15 0.000618 + 19 0.00136 + 20 5.24e-05 + 21 0.00164 + 22 0.000105 + 26 0.00125 + 28 0.000136 + 29 0.00199 + 30 0.000293 + 31 0.000199 + 32 0.00066 + 33 0.00197 + 34 0.00021 + 35 2.1e-05 + 37 0.000514 + 39 2.1e-05 + 40 0.361 + 41 0.181 + 42 0.0191 + 43 0.00153 + 44 0.000566 + 45 0.000356 + 46 0.00162 + 47 0.38 + + 40 33670 2 0 + 43 0.000178 + 47 1 + + 41 47 15 0 + 0 0.0851 + 2 0.17 + 4 0.0213 + 7 0.0213 + 12 0.0213 + 13 0.0213 + 14 0.0426 + 15 0.0213 + 19 0.0851 + 20 0.0213 + 29 0.0638 + 33 0.149 + 45 0.0213 + 46 0.149 + 47 0.106 + + 42 78 4 0 + 19 0.0128 + 39 0.0128 + 41 0.0128 + 47 0.962 + + 43 119 1 0 + 47 1 + + 45 10 1 0 + 47 1 + + 46 2350 15 0 + 0 0.0017 + 2 0.00723 + 4 0.00213 + 7 0.00383 + 15 0.00766 + 19 0.014 + 21 0.0017 + 26 0.000851 + 29 0.0145 + 33 0.0277 + 42 0.000851 + 43 0.0017 + 45 0.000426 + 46 0.000426 + 47 0.915 + + 48 773 21 0 + 0 0.0103 + 2 0.0414 + 4 0.00517 + 7 0.19 + 12 0.00517 + 14 0.00129 + 15 0.00129 + 19 0.00259 + 21 0.00517 + 26 0.00129 + 30 0.00129 + 31 0.00129 + 32 0.00129 + 33 0.00129 + 37 0.00259 + 40 0.446 + 41 0.254 + 42 0.0207 + 43 0.00259 + 46 0.00129 + 47 0.00388 + + 49 56 9 0 + 0 0.0357 + 2 0.0357 + 7 0.125 + 15 0.0179 + 40 0.393 + 41 0.304 + 42 0.0536 + 46 0.0179 + 47 0.0179 + + 55 709 22 0 + 0 0.00846 + 2 0.0367 + 4 0.00282 + 7 0.0339 + 8 0.00282 + 12 0.00705 + 15 0.00282 + 21 0.00564 + 22 0.00141 + 26 0.00423 + 29 0.00282 + 30 0.00423 + 32 0.00423 + 33 0.00141 + 34 0.00564 + 37 0.00282 + 40 0.54 + 41 0.288 + 42 0.0339 + 43 0.00282 + 46 0.00423 + 47 0.00423 + + 57 217 12 0 + 0 0.00461 + 2 0.023 + 7 0.0184 + 12 0.00461 + 19 0.00461 + 21 0.0138 + 26 0.0138 + 40 0.479 + 41 0.392 + 42 0.0369 + 46 0.00461 + 47 0.00461 + + 58 11 4 0 + 8 0.0909 + 28 0.0909 + 40 0.545 + 41 0.273 + + 62 880 12 0 + 2 0.00227 + 7 0.00114 + 12 0.00114 + 19 0.00227 + 28 0.00114 + 29 0.00227 + 40 0.512 + 41 0.441 + 42 0.017 + 43 0.00341 + 46 0.00568 + 47 0.0102 + + 64 87 4 0 + 7 0.0115 + 40 0.747 + 41 0.23 + 43 0.0115 + + 65 4 4 0 + 40 0.25 + 41 0.25 + 46 0.25 + 47 0.25 + + 67 7 2 0 + 46 0.143 + 47 0.857 + + 68 12 6 0 + 2 0.0833 + 15 0.0833 + 19 0.0833 + 40 0.417 + 41 0.25 + 42 0.0833 + + 69 56363 34 0 + 0 0.0157 + 2 0.0273 + 3 0.000142 + 4 0.0014 + 5 0.000106 + 7 0.015 + 8 0.000656 + 12 0.00644 + 13 0.00039 + 14 0.000213 + 15 0.000621 + 19 0.00153 + 20 7.1e-05 + 21 0.0025 + 22 0.00016 + 26 0.00195 + 28 0.000195 + 29 0.00264 + 30 0.000426 + 31 0.000319 + 32 0.00105 + 33 0.00202 + 34 0.000284 + 35 3.55e-05 + 37 0.000798 + 39 1.77e-05 + 40 0.587 + 41 0.29 + 42 0.031 + 43 0.00227 + 44 0.000958 + 45 0.000568 + 46 0.00238 + 47 0.00405 + + 48 811 21 4 + 0 0.00986 + 2 0.0395 + 4 0.00493 + 7 0.211 + 12 0.00493 + 14 0.00123 + 15 0.00123 + 19 0.00247 + 21 0.00493 + 26 0.00123 + 30 0.00123 + 31 0.00123 + 32 0.00123 + 33 0.00123 + 37 0.00247 + 40 0.428 + 41 0.242 + 42 0.0197 + 43 0.00247 + 46 0.016 + 47 0.0037 + + 45 54 4 0 + 7 0.037 + 40 0.556 + 41 0.204 + 46 0.204 + + 47 350 14 0 + 2 0.0229 + 4 0.0114 + 7 0.354 + 14 0.00286 + 19 0.00286 + 21 0.00857 + 26 0.00286 + 30 0.00286 + 31 0.00286 + 32 0.00286 + 33 0.00286 + 40 0.291 + 41 0.28 + 42 0.0114 + + 49 8 2 0 + 40 0.125 + 41 0.875 + + 55 393 14 0 + 0 0.0204 + 2 0.0611 + 7 0.115 + 12 0.0102 + 15 0.00254 + 19 0.00254 + 21 0.00254 + 37 0.00509 + 40 0.532 + 41 0.201 + 42 0.0305 + 43 0.00509 + 46 0.00509 + 47 0.00763 + + 49 97 22 6 + 0 0.0309 + 2 0.0206 + 3 0.0103 + 4 0.0515 + 7 0.144 + 8 0.0206 + 12 0.0103 + 13 0.0103 + 14 0.0309 + 15 0.0206 + 19 0.0515 + 21 0.0206 + 26 0.0309 + 28 0.0103 + 33 0.0103 + 37 0.0103 + 40 0.237 + 41 0.216 + 42 0.0309 + 45 0.0103 + 46 0.0103 + 47 0.0103 + + 2 20 13 0 + 0 0.05 + 4 0.1 + 7 0.05 + 8 0.05 + 12 0.05 + 13 0.05 + 14 0.1 + 19 0.2 + 26 0.1 + 33 0.05 + 40 0.05 + 41 0.1 + 45 0.05 + + 41 20 11 0 + 3 0.05 + 4 0.15 + 8 0.05 + 14 0.05 + 15 0.05 + 19 0.05 + 21 0.1 + 28 0.05 + 40 0.2 + 41 0.1 + 42 0.15 + + 47 18 6 0 + 0 0.0556 + 7 0.222 + 40 0.222 + 41 0.389 + 46 0.0556 + 47 0.0556 + + 48 5 2 0 + 40 0.8 + 41 0.2 + + 55 31 7 0 + 0 0.0323 + 2 0.0645 + 7 0.29 + 15 0.0323 + 26 0.0323 + 40 0.258 + 41 0.29 + + 69 2 2 0 + 37 0.5 + 40 0.5 + + 51 13 2 0 + 40 0.846 + 41 0.154 + + 55 895 23 6 + 0 0.0067 + 2 0.0291 + 4 0.00223 + 7 0.15 + 8 0.00223 + 12 0.00559 + 15 0.00223 + 21 0.00559 + 22 0.00112 + 26 0.0101 + 29 0.00223 + 30 0.00335 + 32 0.00335 + 33 0.00112 + 34 0.00447 + 37 0.00223 + 40 0.482 + 41 0.237 + 42 0.0268 + 43 0.00223 + 45 0.00223 + 46 0.0156 + 47 0.00335 + + 45 72 4 0 + 40 0.556 + 41 0.278 + 42 0.0139 + 46 0.153 + + 47 526 22 0 + 0 0.0076 + 2 0.0209 + 4 0.0019 + 7 0.228 + 8 0.0019 + 12 0.0076 + 15 0.0038 + 21 0.0076 + 22 0.0019 + 26 0.0152 + 29 0.0038 + 30 0.0057 + 32 0.0038 + 33 0.0019 + 34 0.0076 + 37 0.0019 + 40 0.376 + 41 0.27 + 42 0.0228 + 43 0.0038 + 45 0.0038 + 46 0.0019 + + 48 18 6 0 + 2 0.0556 + 7 0.167 + 26 0.0556 + 40 0.389 + 41 0.278 + 47 0.0556 + + 49 11 3 0 + 7 0.273 + 40 0.0909 + 41 0.636 + + 55 195 14 0 + 0 0.00513 + 2 0.0718 + 4 0.00513 + 7 0.041 + 8 0.00513 + 12 0.00513 + 21 0.00513 + 32 0.00513 + 37 0.00513 + 40 0.631 + 41 0.159 + 42 0.0462 + 46 0.00513 + 47 0.0103 + + 69 59 4 0 + 0 0.0169 + 40 0.915 + 41 0.0508 + 42 0.0169 + + 57 259 12 4 + 0 0.00386 + 2 0.0193 + 7 0.0502 + 12 0.00386 + 19 0.00386 + 21 0.0116 + 26 0.0154 + 40 0.517 + 41 0.332 + 42 0.0347 + 46 0.00386 + 47 0.00386 + + 41 24 4 0 + 7 0.0417 + 40 0.833 + 41 0.0833 + 42 0.0417 + + 47 26 4 0 + 21 0.0385 + 26 0.0385 + 40 0.269 + 41 0.654 + + 48 24 6 0 + 2 0.0417 + 7 0.167 + 40 0.333 + 41 0.333 + 42 0.0833 + 47 0.0417 + + 69 30 5 0 + 0 0.0333 + 26 0.0333 + 40 0.7 + 41 0.2 + 42 0.0333 + + 58 100 11 4 + 2 0.43 + 7 0.08 + 8 0.02 + 19 0.01 + 21 0.01 + 26 0.01 + 28 0.01 + 40 0.14 + 41 0.1 + 42 0.04 + 45 0.15 + + 2 3 3 0 + 8 0.333 + 19 0.333 + 26 0.333 + + 46 9 4 0 + 40 0.222 + 41 0.556 + 42 0.111 + 45 0.111 + + 62 73 9 0 + 2 0.562 + 7 0.0274 + 8 0.0137 + 21 0.0137 + 28 0.0137 + 40 0.11 + 41 0.0411 + 42 0.0411 + 45 0.178 + + 69 11 4 0 + 7 0.545 + 40 0.273 + 41 0.0909 + 45 0.0909 + + 62 7159 19 11 + 2 0.0976 + 4 0.00014 + 7 0.00279 + 8 0.000419 + 12 0.00014 + 15 0.00014 + 19 0.000419 + 21 0.000419 + 28 0.00014 + 29 0.000279 + 37 0.000279 + 40 0.414 + 41 0.361 + 42 0.116 + 43 0.000419 + 44 0.00182 + 45 0.00014 + 46 0.00168 + 47 0.00126 + + 2 2599 15 0 + 2 0.0104 + 7 0.00577 + 8 0.000385 + 12 0.000385 + 19 0.00077 + 28 0.000385 + 29 0.00077 + 37 0.000385 + 40 0.809 + 41 0.155 + 42 0.0119 + 43 0.00077 + 44 0.000385 + 46 0.00154 + 47 0.00192 + + 7 43 4 0 + 2 0.0233 + 40 0.86 + 41 0.093 + 44 0.0233 + + 21 30 5 0 + 2 0.0333 + 40 0.767 + 41 0.133 + 42 0.0333 + 46 0.0333 + + 41 488 5 0 + 2 0.248 + 40 0.184 + 41 0.514 + 42 0.0492 + 46 0.0041 + + 42 697 6 0 + 2 0.00717 + 40 0.859 + 41 0.0689 + 42 0.0588 + 46 0.00143 + 47 0.0043 + + 44 12 3 0 + 2 0.167 + 41 0.5 + 42 0.333 + + 45 222 7 0 + 2 0.113 + 7 0.0045 + 40 0.189 + 41 0.568 + 42 0.104 + 46 0.018 + 47 0.0045 + + 47 2942 13 0 + 2 0.171 + 4 0.00034 + 7 0.00102 + 8 0.00068 + 15 0.00034 + 19 0.00034 + 21 0.00102 + 37 0.00034 + 40 0.00034 + 41 0.582 + 42 0.238 + 44 0.00374 + 45 0.00034 + + 48 36 3 0 + 7 0.0278 + 40 0.833 + 41 0.139 + + 49 36 4 0 + 2 0.0556 + 40 0.75 + 41 0.167 + 43 0.0278 + + 57 12 3 0 + 2 0.5 + 40 0.167 + 41 0.333 + + 64 106 7 1 + 2 0.00943 + 7 0.00943 + 21 0.00943 + 40 0.755 + 41 0.198 + 42 0.00943 + 43 0.00943 + + 47 1 1 0 + 42 1 + + 66 32 3 0 + 40 0.781 + 41 0.125 + 42 0.0938 + + 67 9 3 0 + 40 0.222 + 46 0.111 + 47 0.667 + + 68 12 6 0 + 2 0.0833 + 15 0.0833 + 19 0.0833 + 40 0.417 + 41 0.25 + 42 0.0833 + + 69 90067 36 14 + 0 0.00981 + 2 0.0171 + 3 0.000111 + 4 0.000999 + 5 6.66e-05 + 7 0.00973 + 8 0.000411 + 9 1.11e-05 + 12 0.00403 + 13 0.000289 + 14 0.000133 + 15 0.000811 + 17 1.11e-05 + 19 0.000966 + 20 4.44e-05 + 21 0.0016 + 22 9.99e-05 + 26 0.00123 + 28 0.000122 + 29 0.00165 + 30 0.000266 + 31 0.000211 + 32 0.000655 + 33 0.00127 + 34 0.000189 + 35 2.22e-05 + 37 0.000522 + 39 1.11e-05 + 40 0.736 + 41 0.184 + 42 0.021 + 43 0.00147 + 44 0.000644 + 45 0.000366 + 46 0.00185 + 47 0.00253 + + 2 19 3 0 + 40 0.895 + 41 0.0526 + 44 0.0526 + + 4 32 4 0 + 7 0.0312 + 12 0.0312 + 40 0.844 + 41 0.0938 + + 21 122 8 0 + 0 0.0082 + 2 0.0082 + 7 0.0246 + 29 0.0164 + 40 0.631 + 41 0.27 + 42 0.0328 + 47 0.0082 + + 41 838 11 0 + 0 0.00119 + 2 0.00477 + 4 0.00119 + 15 0.0143 + 33 0.00119 + 37 0.00119 + 40 0.899 + 41 0.0513 + 42 0.0203 + 43 0.00239 + 47 0.00358 + + 43 28 3 0 + 0 0.0714 + 40 0.464 + 41 0.464 + + 45 334 7 0 + 2 0.00898 + 7 0.00299 + 40 0.557 + 41 0.38 + 42 0.018 + 46 0.0269 + 47 0.00599 + + 46 98 10 0 + 0 0.0102 + 2 0.0102 + 3 0.0102 + 4 0.0204 + 7 0.0102 + 15 0.255 + 40 0.531 + 41 0.122 + 42 0.0204 + 43 0.0102 + + 47 23686 34 0 + 0 0.0246 + 2 0.021 + 3 0.000253 + 4 0.00186 + 5 8.44e-05 + 7 0.0269 + 8 0.00118 + 12 0.0117 + 13 0.00076 + 14 0.000169 + 15 0.000844 + 17 4.22e-05 + 19 0.00101 + 20 4.22e-05 + 21 0.00422 + 22 0.000338 + 26 0.00355 + 28 0.000296 + 29 0.00469 + 30 0.000633 + 31 0.000633 + 32 0.00182 + 33 0.00338 + 34 0.000464 + 37 0.00148 + 39 4.22e-05 + 40 0.625 + 41 0.231 + 42 0.0221 + 43 0.00207 + 44 0.000929 + 45 0.000929 + 46 0.00312 + 47 0.00262 + + 49 3383 23 0 + 0 0.00532 + 2 0.00769 + 3 0.000296 + 4 0.000887 + 7 0.00236 + 9 0.000296 + 12 0.00236 + 13 0.000591 + 15 0.000591 + 19 0.000296 + 21 0.00118 + 26 0.000296 + 29 0.000887 + 30 0.000887 + 32 0.000887 + 33 0.000887 + 40 0.792 + 41 0.156 + 42 0.021 + 43 0.00118 + 44 0.000296 + 46 0.00148 + 47 0.00207 + + 55 60684 33 0 + 0 0.0046 + 2 0.0165 + 3 3.3e-05 + 4 0.000659 + 5 6.59e-05 + 7 0.00369 + 8 0.000148 + 12 0.00125 + 13 9.89e-05 + 14 0.000132 + 15 0.000214 + 19 0.00101 + 20 4.94e-05 + 21 0.000659 + 22 1.65e-05 + 26 0.000428 + 28 6.59e-05 + 29 0.000527 + 30 9.89e-05 + 31 6.59e-05 + 32 0.000214 + 33 0.000478 + 34 9.89e-05 + 35 3.3e-05 + 37 0.000181 + 40 0.774 + 41 0.168 + 42 0.0204 + 43 0.00125 + 44 0.00056 + 45 0.000165 + 46 0.00129 + 47 0.0025 + + 57 196 6 0 + 2 0.0153 + 29 0.0051 + 40 0.811 + 41 0.122 + 42 0.0408 + 45 0.0051 + + 58 207 4 0 + 2 0.00966 + 40 0.928 + 41 0.0338 + 42 0.029 + + 62 256 6 0 + 2 0.00781 + 15 0.00391 + 33 0.00391 + 40 0.793 + 41 0.148 + 42 0.043 + + 64 121 6 0 + 19 0.00826 + 40 0.785 + 41 0.132 + 42 0.0579 + 46 0.00826 + 47 0.00826 + +63 79666 1 0 + 47 1 + +64 76641 43 33 + 0 0.0391 + 1 9.13e-05 + 2 0.0169 + 3 0.00201 + 4 0.0542 + 5 0.0026 + 7 0.0151 + 8 0.011 + 9 0.000692 + 10 0.000665 + 11 1.3e-05 + 12 0.0139 + 13 0.0113 + 14 0.0129 + 15 0.0225 + 16 0.000209 + 17 0.000326 + 18 2.61e-05 + 19 0.0442 + 20 0.00497 + 21 0.00892 + 22 0.000248 + 23 1.3e-05 + 26 0.00343 + 28 0.000613 + 29 0.0176 + 30 0.00316 + 31 0.00274 + 32 0.00857 + 33 0.0137 + 34 0.000626 + 35 0.000535 + 36 5.22e-05 + 37 0.001 + 39 0.000183 + 40 0.488 + 41 0.175 + 42 0.0152 + 43 0.00151 + 44 0.000887 + 45 0.0024 + 46 0.00119 + 47 0.00198 + + 0 1 1 0 + 14 1 + + 2 337 19 7 + 0 0.00297 + 3 0.00297 + 4 0.0623 + 5 0.00297 + 7 0.623 + 8 0.00297 + 14 0.0119 + 15 0.00297 + 19 0.0089 + 20 0.00297 + 21 0.0415 + 22 0.00297 + 26 0.00297 + 34 0.0564 + 35 0.0712 + 36 0.0119 + 37 0.0742 + 41 0.0089 + 45 0.00593 + + 7 2 1 0 + 21 1 + + 41 107 11 0 + 4 0.0467 + 7 0.729 + 14 0.00935 + 19 0.00935 + 21 0.028 + 22 0.00935 + 34 0.0654 + 35 0.0374 + 37 0.0374 + 41 0.00935 + 45 0.0187 + + 42 9 4 0 + 7 0.444 + 34 0.111 + 37 0.333 + 41 0.111 + + 46 8 2 0 + 7 0.875 + 14 0.125 + + 47 10 7 0 + 4 0.2 + 5 0.1 + 8 0.1 + 14 0.2 + 19 0.2 + 20 0.1 + 26 0.1 + + 62 6 2 0 + 15 0.167 + 21 0.833 + + 64 194 10 0 + 0 0.00515 + 3 0.00515 + 4 0.0722 + 7 0.619 + 21 0.0206 + 34 0.0567 + 35 0.103 + 36 0.0206 + 37 0.0928 + 41 0.00515 + + 4 202 13 0 + 3 0.0149 + 7 0.0297 + 8 0.153 + 10 0.0149 + 13 0.411 + 15 0.158 + 20 0.173 + 21 0.0099 + 31 0.00495 + 33 0.00495 + 41 0.00495 + 42 0.0099 + 44 0.0099 + + 7 10169 37 8 + 0 0.00521 + 1 0.000492 + 2 0.00059 + 3 0.0103 + 4 0.305 + 5 0.0145 + 7 0.0308 + 8 0.061 + 9 0.00403 + 10 0.00334 + 11 9.83e-05 + 12 9.83e-05 + 13 0.0558 + 14 0.0677 + 15 0.116 + 16 0.00108 + 17 0.00187 + 19 0.217 + 20 0.0234 + 21 0.0175 + 22 0.000885 + 26 0.00413 + 28 0.000983 + 29 9.83e-05 + 30 0.0177 + 31 0.0146 + 32 0.000295 + 33 0.000492 + 34 0.000197 + 35 0.000787 + 37 0.00256 + 39 0.000787 + 41 0.006 + 42 0.000197 + 43 0.000197 + 44 0.000787 + 45 0.0137 + + 7 48 11 0 + 4 0.25 + 5 0.0208 + 10 0.0208 + 13 0.0625 + 14 0.0625 + 15 0.0208 + 19 0.458 + 20 0.0208 + 26 0.0417 + 30 0.0208 + 42 0.0208 + + 21 246 16 0 + 4 0.341 + 5 0.0163 + 7 0.0203 + 8 0.061 + 9 0.00407 + 13 0.061 + 14 0.0447 + 15 0.0813 + 19 0.285 + 20 0.0203 + 21 0.0163 + 26 0.00407 + 28 0.0244 + 30 0.0122 + 31 0.00407 + 45 0.00407 + + 35 5 2 0 + 4 0.8 + 13 0.2 + + 44 3 2 0 + 15 0.333 + 43 0.667 + + 47 9705 36 0 + 0 0.00546 + 1 0.000515 + 2 0.000618 + 3 0.0108 + 4 0.304 + 5 0.0145 + 7 0.0316 + 8 0.0613 + 9 0.00412 + 10 0.0034 + 11 0.000103 + 12 0.000103 + 13 0.0551 + 14 0.0687 + 15 0.117 + 16 0.00113 + 17 0.00196 + 19 0.214 + 20 0.0236 + 21 0.0177 + 22 0.000927 + 26 0.00402 + 28 0.000412 + 29 0.000103 + 30 0.018 + 31 0.015 + 32 0.000309 + 33 0.000515 + 34 0.000206 + 35 0.000824 + 37 0.00268 + 39 0.000824 + 41 0.00629 + 42 0.000103 + 44 0.000721 + 45 0.0141 + + 49 106 13 0 + 4 0.311 + 5 0.00943 + 7 0.00943 + 8 0.066 + 13 0.0943 + 14 0.066 + 15 0.123 + 19 0.255 + 20 0.0189 + 21 0.0189 + 30 0.00943 + 31 0.00943 + 44 0.00943 + + 55 47 6 0 + 4 0.383 + 8 0.0213 + 13 0.0638 + 15 0.298 + 19 0.213 + 20 0.0213 + + 57 5 3 0 + 4 0.4 + 8 0.4 + 45 0.2 + + 12 1 1 0 + 9 1 + + 13 52 10 2 + 4 0.0385 + 5 0.0192 + 7 0.0385 + 13 0.0192 + 14 0.0192 + 15 0.0192 + 19 0.0385 + 26 0.75 + 30 0.0385 + 41 0.0192 + + 7 45 5 0 + 4 0.0444 + 5 0.0222 + 14 0.0222 + 19 0.0444 + 26 0.867 + + 47 7 5 0 + 7 0.286 + 13 0.143 + 15 0.143 + 30 0.286 + 41 0.143 + + 15 14 3 0 + 4 0.0714 + 15 0.857 + 19 0.0714 + + 21 134 22 5 + 0 0.0224 + 3 0.0149 + 4 0.239 + 5 0.00746 + 7 0.0448 + 8 0.0896 + 9 0.0224 + 10 0.00746 + 13 0.0299 + 14 0.00746 + 15 0.0373 + 19 0.134 + 20 0.0224 + 21 0.112 + 26 0.0149 + 28 0.00746 + 30 0.0149 + 31 0.0821 + 40 0.0224 + 41 0.0373 + 44 0.0149 + 45 0.0149 + + 2 7 4 0 + 19 0.143 + 40 0.429 + 41 0.286 + 45 0.143 + + 7 7 5 0 + 4 0.143 + 7 0.143 + 8 0.143 + 19 0.429 + 26 0.143 + + 21 6 4 0 + 4 0.167 + 15 0.5 + 26 0.167 + 44 0.167 + + 37 1 1 0 + 28 1 + + 47 107 19 0 + 0 0.028 + 3 0.0187 + 4 0.252 + 5 0.00935 + 7 0.0374 + 8 0.103 + 9 0.028 + 10 0.00935 + 13 0.0374 + 14 0.00935 + 15 0.0187 + 19 0.121 + 20 0.028 + 21 0.14 + 30 0.0187 + 31 0.0935 + 41 0.028 + 44 0.00935 + 45 0.00935 + + 26 2 1 0 + 4 1 + + 28 1 1 0 + 26 1 + + 34 10 8 0 + 4 0.1 + 5 0.1 + 8 0.1 + 10 0.1 + 14 0.1 + 15 0.1 + 20 0.1 + 21 0.3 + + 37 1 1 0 + 21 1 + + 40 24 3 0 + 42 0.0417 + 46 0.292 + 47 0.667 + + 41 246 21 8 + 0 0.0122 + 2 0.423 + 3 0.00407 + 4 0.0203 + 7 0.301 + 8 0.0163 + 13 0.00813 + 15 0.00407 + 19 0.0122 + 20 0.00407 + 21 0.0569 + 26 0.00407 + 29 0.00407 + 30 0.0366 + 31 0.0122 + 33 0.00407 + 34 0.0163 + 35 0.00813 + 37 0.0203 + 45 0.00813 + 46 0.0244 + + 7 49 10 0 + 4 0.0204 + 7 0.673 + 8 0.0204 + 20 0.0204 + 21 0.0204 + 26 0.0204 + 30 0.102 + 31 0.0612 + 37 0.0204 + 45 0.0408 + + 49 2 2 0 + 34 0.5 + 37 0.5 + + 55 1 1 0 + 0 1 + + 57 2 1 0 + 19 1 + + 62 7 5 0 + 4 0.143 + 13 0.286 + 19 0.143 + 21 0.286 + 29 0.143 + + 64 136 10 0 + 0 0.0147 + 2 0.765 + 4 0.00735 + 7 0.0809 + 21 0.0221 + 30 0.00735 + 34 0.0221 + 35 0.0147 + 37 0.0221 + 46 0.0441 + + 71 11 5 0 + 4 0.0909 + 7 0.273 + 8 0.273 + 21 0.273 + 30 0.0909 + + 72 36 6 0 + 3 0.0278 + 7 0.75 + 15 0.0278 + 21 0.111 + 30 0.0556 + 33 0.0278 + + 42 22 7 1 + 1 0.0455 + 2 0.409 + 7 0.136 + 21 0.0455 + 37 0.227 + 45 0.0455 + 47 0.0909 + + 62 2 1 0 + 47 1 + + 43 4 4 0 + 4 0.25 + 9 0.25 + 12 0.25 + 29 0.25 + + 44 1 1 0 + 26 1 + + 45 112 19 3 + 0 0.0179 + 1 0.00893 + 3 0.0179 + 4 0.259 + 5 0.0536 + 7 0.0804 + 8 0.0536 + 10 0.0179 + 13 0.0536 + 14 0.0625 + 15 0.0179 + 17 0.00893 + 19 0.259 + 20 0.0268 + 21 0.0179 + 31 0.00893 + 33 0.00893 + 34 0.00893 + 37 0.0179 + + 41 2 2 0 + 15 0.5 + 31 0.5 + + 58 2 2 0 + 10 0.5 + 37 0.5 + + 72 2 2 0 + 0 0.5 + 33 0.5 + + 46 17 5 3 + 2 0.412 + 34 0.0588 + 42 0.0588 + 44 0.0588 + 47 0.412 + + 40 7 1 0 + 47 1 + + 41 6 2 0 + 2 0.833 + 34 0.167 + + 62 2 2 0 + 42 0.5 + 44 0.5 + + 47 27924 33 12 + 0 0.0193 + 2 0.0173 + 4 0.00147 + 5 0.000215 + 7 0.00806 + 8 0.000143 + 12 0.00623 + 13 0.00043 + 14 0.000215 + 15 0.00043 + 19 0.0024 + 20 0.000179 + 21 0.00208 + 22 0.000107 + 26 0.00161 + 28 0.000322 + 29 0.00326 + 30 0.00043 + 31 0.000215 + 32 0.00165 + 33 0.00154 + 34 0.000322 + 35 7.16e-05 + 37 0.000251 + 39 3.58e-05 + 40 0.669 + 41 0.235 + 42 0.0204 + 43 0.00201 + 44 0.000967 + 45 0.000466 + 46 0.00133 + 47 0.00272 + + 40 17 2 0 + 42 0.0588 + 47 0.941 + + 41 9 6 0 + 0 0.222 + 4 0.111 + 13 0.222 + 19 0.111 + 21 0.222 + 29 0.111 + + 42 2 1 0 + 47 1 + + 45 1 1 0 + 19 1 + + 46 9 3 0 + 42 0.111 + 44 0.111 + 47 0.778 + + 51 89 9 0 + 2 0.0112 + 4 0.0112 + 7 0.0112 + 26 0.0225 + 40 0.236 + 41 0.652 + 42 0.0337 + 46 0.0112 + 47 0.0112 + + 62 27364 33 0 + 0 0.0196 + 2 0.0175 + 4 0.00139 + 5 0.000219 + 7 0.00819 + 8 0.000146 + 12 0.00636 + 13 0.000365 + 14 0.000219 + 15 0.000439 + 19 0.00238 + 20 0.000183 + 21 0.00205 + 22 0.00011 + 26 0.00157 + 28 0.000329 + 29 0.00329 + 30 0.000439 + 31 0.000219 + 32 0.00168 + 33 0.00157 + 34 0.000292 + 35 7.31e-05 + 37 0.000256 + 39 3.65e-05 + 40 0.669 + 41 0.236 + 42 0.0203 + 43 0.00201 + 44 0.000914 + 45 0.000475 + 46 0.00132 + 47 0.00175 + + 64 335 5 0 + 40 0.887 + 41 0.0925 + 42 0.0149 + 43 0.00299 + 44 0.00299 + + 65 1 1 0 + 47 1 + + 66 76 6 0 + 2 0.0263 + 4 0.0132 + 34 0.0132 + 40 0.697 + 41 0.237 + 42 0.0132 + + 67 1 1 0 + 47 1 + + 72 3 2 0 + 40 0.333 + 42 0.667 + + 49 5 3 0 + 7 0.4 + 33 0.2 + 41 0.4 + + 50 2 2 0 + 0 0.5 + 7 0.5 + + 51 89 9 1 + 2 0.0112 + 4 0.0112 + 7 0.0112 + 26 0.0225 + 40 0.236 + 41 0.652 + 42 0.0337 + 46 0.0112 + 47 0.0112 + + 21 4 3 0 + 26 0.25 + 41 0.5 + 46 0.25 + + 58 20 13 2 + 0 0.1 + 2 0.05 + 4 0.15 + 7 0.05 + 15 0.1 + 19 0.1 + 20 0.05 + 32 0.05 + 33 0.05 + 35 0.05 + 40 0.05 + 41 0.1 + 45 0.1 + + 2 2 2 0 + 7 0.5 + 35 0.5 + + 72 5 4 0 + 0 0.4 + 4 0.2 + 15 0.2 + 33 0.2 + + 62 27403 33 15 + 0 0.0196 + 2 0.0177 + 4 0.00139 + 5 0.000219 + 7 0.00821 + 8 0.000146 + 12 0.00635 + 13 0.000365 + 14 0.000219 + 15 0.000438 + 19 0.00237 + 20 0.000182 + 21 0.00204 + 22 0.000109 + 26 0.00157 + 28 0.000328 + 29 0.00328 + 30 0.000438 + 31 0.000219 + 32 0.00168 + 33 0.00157 + 34 0.000292 + 35 7.3e-05 + 37 0.000255 + 39 3.65e-05 + 40 0.668 + 41 0.236 + 42 0.0204 + 43 0.00201 + 44 0.000912 + 45 0.000511 + 46 0.00139 + 47 0.00175 + + 4 201 8 0 + 0 0.00995 + 2 0.0498 + 7 0.00498 + 29 0.00498 + 30 0.00498 + 40 0.796 + 41 0.124 + 42 0.00498 + + 7 9838 29 0 + 0 0.00498 + 2 0.0176 + 4 0.00203 + 5 0.000305 + 7 0.00407 + 8 0.000102 + 12 0.00173 + 13 0.000203 + 14 0.000407 + 15 0.000813 + 19 0.00335 + 20 0.000203 + 21 0.00102 + 26 0.000712 + 28 0.000305 + 29 0.00122 + 32 0.000407 + 33 0.00152 + 34 0.000102 + 37 0.000203 + 39 0.000102 + 40 0.665 + 41 0.273 + 42 0.0147 + 43 0.00193 + 44 0.00061 + 45 0.000305 + 46 0.000813 + 47 0.00173 + + 13 50 6 0 + 2 0.02 + 7 0.02 + 40 0.68 + 41 0.22 + 42 0.04 + 46 0.02 + + 15 14 3 0 + 0 0.0714 + 33 0.0714 + 41 0.857 + + 21 118 6 0 + 2 0.00847 + 7 0.0169 + 40 0.525 + 41 0.432 + 42 0.00847 + 47 0.00847 + + 41 95 3 0 + 2 0.0105 + 40 0.905 + 41 0.0842 + + 45 132 6 0 + 35 0.00758 + 40 0.788 + 41 0.136 + 42 0.0303 + 46 0.0152 + 47 0.0227 + + 47 7896 30 0 + 0 0.0215 + 2 0.0193 + 4 0.000887 + 5 0.000127 + 7 0.0146 + 8 0.000253 + 12 0.0057 + 13 0.00038 + 15 0.000253 + 19 0.00127 + 21 0.00177 + 22 0.00038 + 26 0.00203 + 28 0.000253 + 29 0.0019 + 30 0.00076 + 31 0.000127 + 32 0.000633 + 33 0.00127 + 34 0.00038 + 35 0.000127 + 37 0.000633 + 40 0.769 + 41 0.135 + 42 0.0168 + 43 0.000633 + 44 0.00076 + 45 0.000253 + 46 0.00139 + 47 0.0019 + + 58 12 4 0 + 19 0.0833 + 40 0.667 + 41 0.167 + 43 0.0833 + + 68 2 2 0 + 19 0.5 + 46 0.5 + + 70 36 6 0 + 0 0.0278 + 12 0.0278 + 40 0.556 + 41 0.333 + 42 0.0278 + 44 0.0278 + + 71 1931 24 0 + 0 0.0109 + 2 0.0166 + 4 0.00311 + 5 0.000518 + 7 0.0088 + 12 0.00414 + 13 0.00104 + 14 0.00104 + 15 0.000518 + 19 0.00984 + 20 0.00104 + 21 0.00104 + 29 0.000518 + 31 0.000518 + 32 0.00104 + 34 0.000518 + 40 0.572 + 41 0.328 + 42 0.029 + 43 0.00363 + 44 0.00155 + 45 0.000518 + 46 0.00311 + 47 0.00104 + + 72 6697 28 0 + 0 0.0426 + 2 0.0166 + 4 0.000597 + 5 0.000149 + 7 0.00732 + 8 0.000149 + 12 0.0148 + 13 0.000448 + 15 0.000149 + 19 0.000149 + 20 0.000149 + 21 0.00433 + 26 0.00284 + 28 0.000597 + 29 0.00881 + 30 0.000747 + 31 0.000597 + 32 0.00523 + 33 0.00254 + 34 0.000448 + 40 0.579 + 41 0.274 + 42 0.03 + 43 0.00314 + 44 0.00119 + 45 0.00119 + 46 0.00134 + 47 0.00134 + + 73 320 12 0 + 0 0.025 + 2 0.0125 + 12 0.0125 + 21 0.00313 + 26 0.00313 + 29 0.00625 + 40 0.669 + 41 0.216 + 42 0.0406 + 43 0.00625 + 44 0.00313 + 47 0.00313 + + 74 14 2 0 + 4 0.0714 + 41 0.929 + + 64 690 9 3 + 2 0.281 + 7 0.00145 + 35 0.00145 + 40 0.432 + 41 0.243 + 42 0.0348 + 43 0.00145 + 44 0.00145 + 46 0.0029 + + 2 306 6 0 + 7 0.00327 + 40 0.892 + 41 0.0882 + 42 0.0098 + 43 0.00327 + 44 0.00327 + + 42 7 2 0 + 40 0.429 + 42 0.571 + + 47 337 5 0 + 2 0.561 + 35 0.00297 + 41 0.38 + 42 0.0504 + 46 0.00593 + + 65 1 1 0 + 47 1 + + 66 76 6 0 + 2 0.0263 + 4 0.0132 + 34 0.0132 + 40 0.697 + 41 0.237 + 42 0.0132 + + 67 2 2 0 + 40 0.5 + 47 0.5 + + 70 36 7 0 + 4 0.417 + 9 0.0278 + 14 0.0278 + 15 0.0278 + 19 0.444 + 20 0.0278 + 26 0.0278 + + 71 1951 27 2 + 0 0.000513 + 3 0.00718 + 4 0.281 + 5 0.0118 + 7 0.00923 + 8 0.0492 + 9 0.00154 + 10 0.00205 + 13 0.063 + 14 0.0866 + 15 0.121 + 16 0.00154 + 17 0.00205 + 19 0.255 + 20 0.0297 + 21 0.0128 + 26 0.0308 + 28 0.000513 + 29 0.00103 + 30 0.0118 + 31 0.00923 + 34 0.000513 + 35 0.000513 + 39 0.000513 + 40 0.000513 + 41 0.00871 + 45 0.00154 + + 2 1 1 0 + 28 1 + + 21 5 4 0 + 4 0.2 + 8 0.2 + 19 0.4 + 31 0.2 + + 72 6756 35 3 + 0 0.274 + 2 0.000296 + 3 0.00074 + 4 0.0333 + 5 0.000148 + 7 0.00873 + 8 0.00784 + 9 0.000444 + 10 0.000888 + 12 0.106 + 13 0.00562 + 14 0.00977 + 15 0.0255 + 16 0.000148 + 17 0.000148 + 18 0.000296 + 19 0.0598 + 20 0.0037 + 21 0.0465 + 22 0.000444 + 23 0.000148 + 26 0.00296 + 28 0.00252 + 29 0.172 + 30 0.000296 + 31 0.00237 + 32 0.083 + 33 0.141 + 34 0.000296 + 40 0.000148 + 41 0.00918 + 42 0.000296 + 43 0.000296 + 44 0.000296 + 45 0.000888 + + 44 2 1 0 + 43 1 + + 49 7 4 0 + 0 0.143 + 4 0.143 + 15 0.143 + 19 0.571 + + 60 3 2 0 + 4 0.667 + 8 0.333 + + 73 321 15 0 + 0 0.00623 + 3 0.0654 + 4 0.249 + 5 0.0187 + 8 0.0312 + 13 0.0623 + 14 0.112 + 15 0.159 + 16 0.00312 + 19 0.249 + 20 0.0125 + 21 0.00312 + 26 0.0156 + 39 0.00935 + 41 0.00312 + +65 580 13 7 + 2 0.00862 + 4 0.0069 + 19 0.00345 + 29 0.0069 + 30 0.00345 + 33 0.00345 + 37 0.00172 + 40 0.372 + 41 0.0069 + 42 0.0138 + 43 0.00172 + 46 0.0914 + 47 0.479 + + 2 1 1 0 + 37 1 + + 40 158 6 1 + 4 0.00633 + 41 0.00633 + 42 0.00633 + 43 0.00633 + 46 0.215 + 47 0.759 + + 72 1 1 0 + 42 1 + + 46 19 5 0 + 19 0.0526 + 29 0.105 + 33 0.0526 + 46 0.0526 + 47 0.737 + + 47 198 11 3 + 2 0.0101 + 4 0.0101 + 19 0.00505 + 29 0.0101 + 30 0.00505 + 33 0.00505 + 40 0.146 + 41 0.0101 + 42 0.0101 + 46 0.0859 + 47 0.702 + + 40 139 5 0 + 4 0.00719 + 41 0.00719 + 42 0.00719 + 46 0.115 + 47 0.863 + + 46 18 4 0 + 19 0.0556 + 29 0.111 + 33 0.0556 + 47 0.778 + + 67 32 7 0 + 2 0.0625 + 4 0.0312 + 30 0.0312 + 40 0.781 + 41 0.0312 + 42 0.0312 + 46 0.0312 + + 62 6 2 0 + 40 0.833 + 42 0.167 + + 65 2 2 0 + 2 0.5 + 40 0.5 + + 67 184 7 0 + 2 0.0109 + 4 0.00543 + 30 0.00543 + 40 0.946 + 41 0.00543 + 42 0.0217 + 46 0.00543 + +66 8140 31 21 + 0 0.00123 + 2 0.00147 + 3 0.00909 + 4 0.0339 + 5 0.000246 + 7 0.00823 + 8 0.0043 + 9 0.000246 + 13 0.00799 + 14 0.00381 + 15 0.177 + 16 0.000123 + 17 0.000123 + 19 0.00332 + 20 0.00209 + 21 0.00209 + 26 0.00135 + 30 0.00455 + 31 0.000369 + 34 0.000246 + 35 0.000369 + 37 0.000614 + 39 0.000123 + 40 0.239 + 41 0.0378 + 42 0.0108 + 43 0.000123 + 44 0.000123 + 45 0.00639 + 46 0.00541 + 47 0.438 + + 0 38 10 0 + 4 0.263 + 8 0.0789 + 13 0.0789 + 14 0.0526 + 15 0.316 + 17 0.0263 + 19 0.0789 + 20 0.0526 + 21 0.0263 + 31 0.0263 + + 2 4 4 0 + 0 0.25 + 20 0.25 + 21 0.25 + 30 0.25 + + 12 3 3 0 + 4 0.333 + 19 0.333 + 20 0.333 + + 28 1 1 0 + 3 1 + + 29 3 3 0 + 4 0.333 + 13 0.333 + 42 0.333 + + 32 1 1 0 + 13 1 + + 33 3 3 0 + 4 0.333 + 13 0.333 + 15 0.333 + + 40 1764 4 2 + 43 0.000567 + 45 0.0034 + 46 0.0227 + 47 0.973 + + 55 1602 4 0 + 43 0.000624 + 45 0.00375 + 46 0.00936 + 47 0.986 + + 62 82 2 0 + 46 0.293 + 47 0.707 + + 41 62 7 1 + 2 0.0484 + 4 0.0161 + 7 0.194 + 13 0.0161 + 21 0.0484 + 30 0.516 + 45 0.161 + + 64 2 1 0 + 21 1 + + 42 53 8 0 + 3 0.0189 + 4 0.0189 + 15 0.0189 + 21 0.0377 + 31 0.0189 + 40 0.0755 + 45 0.585 + 47 0.226 + + 45 45 9 2 + 4 0.178 + 5 0.0444 + 7 0.111 + 13 0.0444 + 19 0.378 + 35 0.0444 + 37 0.0444 + 44 0.0222 + 47 0.133 + + 40 6 1 0 + 47 1 + + 42 28 6 0 + 4 0.25 + 7 0.143 + 13 0.0357 + 19 0.464 + 35 0.0357 + 37 0.0714 + + 46 40 1 0 + 47 1 + + 47 2027 11 8 + 0 0.00148 + 2 0.00197 + 4 0.000493 + 19 0.000987 + 34 0.000493 + 40 0.0449 + 41 0.0607 + 42 0.00839 + 45 0.000493 + 46 0.000987 + 47 0.879 + + 40 1717 1 0 + 47 1 + + 46 40 1 0 + 47 1 + + 48 4 2 0 + 40 0.5 + 41 0.5 + + 55 174 9 0 + 0 0.0115 + 2 0.00575 + 19 0.0115 + 40 0.333 + 41 0.546 + 42 0.046 + 45 0.00575 + 46 0.0115 + 47 0.0287 + + 57 11 4 0 + 0 0.0909 + 40 0.182 + 41 0.364 + 42 0.364 + + 64 3 2 0 + 40 0.333 + 42 0.667 + + 66 1 1 0 + 42 1 + + 69 55 6 0 + 2 0.0545 + 4 0.0182 + 34 0.0182 + 40 0.491 + 41 0.382 + 42 0.0364 + + 48 6 3 0 + 7 0.167 + 40 0.5 + 41 0.333 + + 49 5 4 0 + 0 0.4 + 13 0.2 + 40 0.2 + 41 0.2 + + 55 1940 18 5 + 0 0.00103 + 2 0.000515 + 4 0.00258 + 7 0.017 + 8 0.00206 + 13 0.000515 + 14 0.000515 + 15 0.000515 + 19 0.00103 + 21 0.00206 + 26 0.00464 + 30 0.00103 + 40 0.856 + 41 0.0778 + 42 0.0278 + 45 0.00155 + 46 0.00103 + 47 0.00258 + + 0 38 7 0 + 2 0.0263 + 4 0.132 + 8 0.105 + 14 0.0263 + 21 0.0526 + 40 0.553 + 41 0.105 + + 12 3 3 0 + 21 0.333 + 40 0.333 + 41 0.333 + + 47 5 1 0 + 26 1 + + 55 8 3 0 + 7 0.25 + 40 0.625 + 41 0.125 + + 69 1873 14 0 + 0 0.00107 + 7 0.0166 + 13 0.000534 + 15 0.000534 + 19 0.00107 + 21 0.000534 + 26 0.0016 + 30 0.00107 + 40 0.868 + 41 0.0758 + 42 0.0278 + 45 0.0016 + 46 0.00107 + 47 0.00267 + + 57 52 9 3 + 0 0.0192 + 4 0.0385 + 7 0.154 + 8 0.0192 + 13 0.0192 + 21 0.0192 + 40 0.538 + 41 0.115 + 42 0.0769 + + 41 9 2 0 + 40 0.667 + 41 0.333 + + 55 34 8 0 + 0 0.0294 + 4 0.0588 + 7 0.235 + 8 0.0294 + 13 0.0294 + 21 0.0294 + 40 0.529 + 41 0.0588 + + 57 8 3 0 + 40 0.375 + 41 0.125 + 42 0.5 + + 62 85 2 0 + 40 0.976 + 42 0.0235 + + 64 28 3 1 + 40 0.786 + 41 0.0714 + 42 0.143 + + 47 3 2 0 + 41 0.667 + 42 0.333 + + 66 6 4 0 + 2 0.167 + 40 0.333 + 41 0.167 + 42 0.333 + + 69 1970 25 11 + 0 0.000508 + 2 0.00152 + 3 0.0365 + 4 0.124 + 7 0.00406 + 8 0.0137 + 9 0.00102 + 13 0.0269 + 14 0.0142 + 15 0.722 + 16 0.000508 + 19 0.00102 + 20 0.0066 + 21 0.00254 + 26 0.00102 + 30 0.00102 + 31 0.000508 + 34 0.000508 + 35 0.000508 + 37 0.00152 + 39 0.000508 + 40 0.0264 + 41 0.0107 + 42 0.00203 + 45 0.000508 + + 21 4 3 0 + 3 0.25 + 4 0.25 + 40 0.5 + + 41 231 7 0 + 3 0.0216 + 4 0.104 + 8 0.013 + 13 0.0346 + 14 0.0346 + 15 0.788 + 16 0.00433 + + 46 1168 6 0 + 3 0.0402 + 4 0.0753 + 8 0.00856 + 13 0.018 + 15 0.854 + 20 0.00342 + + 47 152 13 0 + 0 0.00658 + 3 0.0263 + 4 0.178 + 8 0.0197 + 13 0.0592 + 14 0.0197 + 15 0.605 + 19 0.0132 + 20 0.0395 + 21 0.00658 + 30 0.0132 + 31 0.00658 + 42 0.00658 + + 48 25 7 0 + 3 0.04 + 4 0.56 + 7 0.08 + 8 0.08 + 15 0.16 + 20 0.04 + 35 0.04 + + 49 54 9 0 + 3 0.037 + 4 0.463 + 8 0.037 + 9 0.0185 + 13 0.185 + 14 0.0741 + 15 0.0926 + 21 0.037 + 37 0.0556 + + 55 82 7 0 + 2 0.0366 + 4 0.0488 + 7 0.0122 + 34 0.0122 + 40 0.61 + 41 0.256 + 42 0.0244 + + 57 76 11 0 + 3 0.0526 + 4 0.382 + 7 0.0526 + 8 0.0132 + 13 0.0263 + 14 0.118 + 15 0.289 + 20 0.0132 + 21 0.0263 + 39 0.0132 + 45 0.0132 + + 58 6 4 0 + 4 0.333 + 7 0.167 + 15 0.167 + 26 0.333 + + 62 111 5 0 + 3 0.0541 + 4 0.045 + 8 0.00901 + 13 0.018 + 15 0.874 + + 69 54 9 0 + 3 0.0185 + 4 0.407 + 8 0.0926 + 9 0.0185 + 13 0.0185 + 14 0.0741 + 15 0.333 + 20 0.0185 + 42 0.0185 + +67 1431 33 20 + 0 0.0314 + 1 0.000699 + 2 0.00699 + 4 0.0664 + 5 0.0021 + 7 0.0175 + 8 0.0133 + 12 0.000699 + 13 0.0175 + 14 0.00559 + 15 0.0182 + 16 0.0014 + 17 0.000699 + 19 0.0783 + 20 0.000699 + 21 0.051 + 24 0.000699 + 26 0.0021 + 28 0.0783 + 29 0.0014 + 30 0.0168 + 31 0.00839 + 32 0.0028 + 34 0.000699 + 35 0.0028 + 37 0.0014 + 40 0.366 + 41 0.0175 + 42 0.00978 + 43 0.0028 + 45 0.0014 + 46 0.0266 + 47 0.148 + + 0 167 12 1 + 4 0.299 + 5 0.018 + 7 0.024 + 8 0.018 + 13 0.0599 + 14 0.018 + 15 0.108 + 16 0.00599 + 17 0.00599 + 19 0.311 + 21 0.108 + 30 0.024 + + 2 8 3 0 + 13 0.125 + 15 0.125 + 19 0.75 + + 2 5 4 0 + 0 0.4 + 12 0.2 + 13 0.2 + 35 0.2 + + 12 94 11 0 + 0 0.0426 + 4 0.202 + 8 0.0106 + 13 0.0319 + 14 0.0319 + 15 0.0532 + 19 0.447 + 20 0.0106 + 21 0.106 + 28 0.0532 + 45 0.0106 + + 14 2 1 0 + 4 1 + + 21 28 6 1 + 4 0.286 + 13 0.0714 + 15 0.0357 + 16 0.0357 + 19 0.536 + 30 0.0357 + + 55 2 2 0 + 15 0.5 + 30 0.5 + + 40 130 8 1 + 0 0.00769 + 4 0.00769 + 35 0.00769 + 40 0.0231 + 41 0.0154 + 42 0.0154 + 46 0.146 + 47 0.777 + + 40 3 2 0 + 40 0.667 + 47 0.333 + + 41 11 6 0 + 0 0.0909 + 2 0.273 + 4 0.0909 + 7 0.273 + 21 0.0909 + 28 0.182 + + 45 2 2 0 + 15 0.5 + 37 0.5 + + 46 8 4 0 + 7 0.125 + 28 0.125 + 43 0.125 + 47 0.625 + + 47 342 12 7 + 0 0.00292 + 2 0.00877 + 4 0.00292 + 7 0.00585 + 30 0.00292 + 35 0.00292 + 40 0.576 + 41 0.0175 + 42 0.0205 + 43 0.00585 + 46 0.0439 + 47 0.31 + + 40 120 7 0 + 0 0.00833 + 4 0.00833 + 35 0.00833 + 41 0.0167 + 42 0.0167 + 46 0.1 + 47 0.842 + + 46 7 3 0 + 7 0.143 + 43 0.143 + 47 0.714 + + 48 8 2 0 + 40 0.875 + 41 0.125 + + 55 14 3 0 + 40 0.786 + 42 0.0714 + 46 0.143 + + 57 8 2 0 + 7 0.125 + 40 0.875 + + 69 176 5 0 + 2 0.017 + 30 0.00568 + 40 0.943 + 41 0.017 + 42 0.017 + + 73 1 1 0 + 43 1 + + 48 23 5 0 + 7 0.13 + 21 0.0435 + 26 0.0435 + 40 0.739 + 41 0.0435 + + 49 29 11 0 + 0 0.138 + 4 0.069 + 7 0.0345 + 8 0.069 + 13 0.0345 + 21 0.0345 + 28 0.414 + 29 0.0345 + 30 0.0345 + 40 0.103 + 41 0.0345 + + 55 278 19 8 + 0 0.112 + 4 0.036 + 7 0.0324 + 8 0.0468 + 13 0.0288 + 14 0.00719 + 21 0.144 + 24 0.0036 + 26 0.00719 + 28 0.331 + 29 0.0036 + 30 0.0576 + 31 0.0432 + 32 0.0144 + 37 0.0036 + 40 0.0935 + 41 0.0216 + 42 0.0036 + 46 0.0108 + + 0 145 17 0 + 0 0.0621 + 4 0.0621 + 7 0.0414 + 8 0.0552 + 13 0.0414 + 21 0.193 + 24 0.0069 + 26 0.0138 + 28 0.248 + 29 0.0069 + 30 0.11 + 31 0.0828 + 32 0.0207 + 37 0.0069 + 40 0.0345 + 41 0.0069 + 42 0.0069 + + 12 75 6 0 + 0 0.253 + 21 0.107 + 28 0.587 + 32 0.0133 + 40 0.0133 + 41 0.0267 + + 14 2 1 0 + 13 1 + + 21 27 8 0 + 0 0.111 + 4 0.037 + 8 0.148 + 14 0.037 + 21 0.0741 + 28 0.444 + 40 0.111 + 41 0.037 + + 45 1 1 0 + 46 1 + + 49 4 3 0 + 21 0.25 + 40 0.5 + 41 0.25 + + 55 16 3 0 + 7 0.0625 + 40 0.812 + 46 0.125 + + 69 5 5 0 + 7 0.2 + 8 0.2 + 14 0.2 + 21 0.2 + 41 0.2 + + 57 11 3 0 + 7 0.0909 + 40 0.818 + 41 0.0909 + + 58 2 2 0 + 34 0.5 + 45 0.5 + + 62 6 3 0 + 4 0.167 + 40 0.667 + 41 0.167 + + 64 10 2 0 + 40 0.9 + 41 0.1 + + 67 13 7 1 + 0 0.0769 + 2 0.0769 + 7 0.0769 + 35 0.0769 + 40 0.385 + 41 0.231 + 46 0.0769 + + 47 5 3 0 + 0 0.2 + 2 0.2 + 41 0.6 + + 69 267 9 1 + 1 0.00375 + 2 0.0112 + 15 0.00375 + 19 0.0112 + 21 0.00749 + 30 0.00375 + 40 0.936 + 41 0.0112 + 42 0.0112 + + 47 56 8 0 + 1 0.0179 + 2 0.0179 + 15 0.0179 + 19 0.0357 + 21 0.0357 + 30 0.0179 + 40 0.821 + 42 0.0357 + + 73 1 1 0 + 43 1 + +68 1301 34 22 + 0 0.00692 + 2 0.00692 + 3 0.000769 + 4 0.0208 + 6 0.000769 + 7 0.0653 + 8 0.0507 + 9 0.00922 + 12 0.000769 + 13 0.119 + 14 0.175 + 15 0.00999 + 16 0.00154 + 19 0.00231 + 20 0.00154 + 21 0.0515 + 22 0.00384 + 23 0.000769 + 26 0.0146 + 29 0.00461 + 30 0.0123 + 31 0.0138 + 32 0.00461 + 34 0.000769 + 35 0.000769 + 36 0.000769 + 37 0.00461 + 40 0.271 + 41 0.0953 + 42 0.0238 + 44 0.000769 + 45 0.00231 + 46 0.00384 + 47 0.0184 + + 2 253 25 10 + 0 0.00395 + 3 0.00395 + 4 0.0553 + 6 0.00395 + 7 0.233 + 8 0.103 + 9 0.0474 + 12 0.00395 + 13 0.0356 + 15 0.00395 + 19 0.00395 + 20 0.00791 + 21 0.241 + 22 0.0198 + 23 0.00395 + 26 0.0474 + 29 0.00791 + 30 0.0593 + 31 0.0593 + 35 0.00395 + 36 0.00395 + 37 0.0237 + 41 0.00791 + 44 0.00395 + 45 0.0119 + + 15 2 1 0 + 8 1 + + 41 45 16 0 + 0 0.0222 + 3 0.0222 + 4 0.0667 + 6 0.0222 + 7 0.2 + 8 0.0889 + 9 0.0222 + 13 0.0444 + 21 0.2 + 22 0.0444 + 26 0.0667 + 29 0.0444 + 30 0.0222 + 31 0.0667 + 36 0.0222 + 37 0.0444 + + 46 3 2 0 + 8 0.333 + 45 0.667 + + 48 47 10 0 + 4 0.128 + 7 0.213 + 8 0.0426 + 12 0.0213 + 13 0.0426 + 21 0.234 + 30 0.128 + 31 0.149 + 41 0.0213 + 45 0.0213 + + 49 27 7 0 + 7 0.63 + 8 0.037 + 15 0.037 + 20 0.037 + 21 0.111 + 23 0.037 + 30 0.111 + + 55 47 14 0 + 4 0.0426 + 7 0.106 + 8 0.0851 + 9 0.213 + 13 0.0213 + 19 0.0213 + 21 0.298 + 22 0.0213 + 26 0.0638 + 30 0.0213 + 31 0.0426 + 35 0.0213 + 37 0.0213 + 41 0.0213 + + 57 51 12 0 + 4 0.0588 + 7 0.157 + 8 0.0196 + 9 0.0196 + 13 0.0588 + 21 0.373 + 22 0.0196 + 26 0.118 + 30 0.0784 + 31 0.0588 + 37 0.0196 + 44 0.0196 + + 62 7 2 0 + 7 0.857 + 21 0.143 + + 66 1 1 0 + 20 1 + + 69 15 5 0 + 7 0.0667 + 8 0.6 + 13 0.0667 + 21 0.2 + 22 0.0667 + + 8 111 5 0 + 8 0.117 + 13 0.306 + 14 0.559 + 16 0.00901 + 42 0.00901 + + 13 51 3 0 + 13 0.333 + 14 0.627 + 41 0.0392 + + 14 13 2 0 + 13 0.538 + 14 0.462 + + 15 18 4 0 + 8 0.167 + 13 0.222 + 14 0.389 + 15 0.222 + + 21 9 5 0 + 4 0.222 + 7 0.222 + 8 0.333 + 21 0.111 + 26 0.111 + + 30 4 1 0 + 13 1 + + 40 12 2 0 + 46 0.0833 + 47 0.917 + + 41 10 8 0 + 2 0.1 + 4 0.1 + 7 0.1 + 8 0.1 + 13 0.2 + 19 0.1 + 21 0.2 + 31 0.1 + + 42 2 2 0 + 34 0.5 + 47 0.5 + + 45 3 3 0 + 4 0.333 + 8 0.333 + 30 0.333 + + 46 1 1 0 + 46 1 + + 47 494 20 17 + 0 0.0081 + 2 0.0081 + 4 0.0081 + 7 0.0142 + 8 0.0344 + 13 0.148 + 14 0.231 + 15 0.0101 + 16 0.00202 + 19 0.00202 + 21 0.00202 + 26 0.00607 + 29 0.00405 + 31 0.00202 + 32 0.00607 + 40 0.344 + 41 0.113 + 42 0.0283 + 46 0.00405 + 47 0.0243 + + 7 1 1 0 + 4 1 + + 8 110 4 0 + 8 0.118 + 13 0.309 + 14 0.564 + 16 0.00909 + + 13 49 2 0 + 13 0.347 + 14 0.653 + + 14 13 2 0 + 13 0.538 + 14 0.462 + + 15 18 4 0 + 8 0.167 + 13 0.222 + 14 0.389 + 15 0.222 + + 30 4 1 0 + 13 1 + + 40 12 2 0 + 46 0.0833 + 47 0.917 + + 41 6 5 0 + 4 0.167 + 7 0.167 + 13 0.333 + 19 0.167 + 31 0.167 + + 46 1 1 0 + 46 1 + + 48 45 9 0 + 2 0.0444 + 7 0.0889 + 13 0.0444 + 14 0.0444 + 26 0.0222 + 32 0.0444 + 40 0.533 + 41 0.111 + 42 0.0667 + + 49 46 7 0 + 0 0.0435 + 2 0.0217 + 7 0.0435 + 26 0.0217 + 32 0.0217 + 40 0.63 + 41 0.217 + + 55 38 6 0 + 14 0.0526 + 15 0.0263 + 29 0.0263 + 40 0.605 + 41 0.211 + 42 0.0789 + + 57 69 7 0 + 0 0.0145 + 2 0.0145 + 21 0.0145 + 29 0.0145 + 40 0.652 + 41 0.232 + 42 0.058 + + 62 17 4 0 + 4 0.0588 + 40 0.647 + 41 0.235 + 42 0.0588 + + 64 21 3 0 + 40 0.714 + 41 0.238 + 42 0.0476 + + 69 34 6 0 + 0 0.0294 + 13 0.0588 + 26 0.0294 + 40 0.618 + 41 0.206 + 42 0.0588 + + 71 1 1 0 + 4 1 + + 48 50 10 0 + 2 0.04 + 4 0.02 + 7 0.1 + 13 0.04 + 14 0.04 + 26 0.02 + 32 0.04 + 40 0.48 + 41 0.16 + 42 0.06 + + 49 57 10 0 + 0 0.0351 + 2 0.0175 + 4 0.0175 + 7 0.14 + 8 0.0351 + 26 0.0175 + 31 0.0175 + 32 0.0175 + 40 0.509 + 41 0.193 + + 55 48 6 0 + 14 0.0417 + 15 0.0417 + 29 0.0208 + 40 0.583 + 41 0.229 + 42 0.0833 + + 57 70 7 0 + 0 0.0143 + 2 0.0143 + 21 0.0143 + 29 0.0143 + 40 0.643 + 41 0.243 + 42 0.0571 + + 58 3 2 0 + 7 0.667 + 14 0.333 + + 62 21 4 0 + 4 0.0476 + 40 0.714 + 41 0.19 + 42 0.0476 + + 64 23 4 0 + 7 0.0435 + 40 0.696 + 41 0.217 + 42 0.0435 + + 65 1 1 0 + 46 1 + + 69 35 7 0 + 0 0.0286 + 13 0.0571 + 15 0.0286 + 26 0.0286 + 40 0.6 + 41 0.2 + 42 0.0571 + +69 482293 48 46 + 0 0.0224 + 1 0.00057 + 2 0.0308 + 3 0.00808 + 4 0.0469 + 5 0.000257 + 6 4.15e-05 + 7 0.0864 + 8 0.0202 + 9 0.00219 + 10 0.000199 + 11 2.07e-06 + 12 0.00331 + 13 0.0122 + 14 0.00875 + 15 0.014 + 16 8.5e-05 + 17 0.000261 + 18 8.29e-06 + 19 0.00971 + 20 0.00668 + 21 0.0342 + 22 0.00161 + 23 0.000114 + 24 0.00542 + 25 4.15e-06 + 26 0.0285 + 27 5.81e-05 + 28 0.0407 + 29 0.00358 + 30 0.0133 + 31 0.0242 + 32 0.000977 + 33 0.0015 + 34 0.000506 + 35 0.000666 + 36 4.15e-06 + 37 0.00212 + 38 2.28e-05 + 39 0.00219 + 40 0.418 + 41 0.127 + 42 0.0138 + 43 0.00104 + 44 0.00067 + 45 0.00305 + 46 0.0022 + 47 0.00131 + + 0 33826 40 4 + 0 0.0458 + 1 0.00556 + 2 0.000887 + 3 0.0145 + 4 0.115 + 5 5.91e-05 + 7 0.0456 + 8 0.1 + 9 0.00955 + 10 0.000237 + 12 5.91e-05 + 13 0.021 + 14 0.00958 + 15 0.00695 + 16 0.000118 + 17 0.000562 + 19 0.00251 + 20 0.00364 + 21 0.192 + 22 0.00514 + 23 0.000828 + 24 0.000769 + 26 0.0203 + 27 2.96e-05 + 28 0.00304 + 29 0.00263 + 30 0.0892 + 31 0.274 + 33 8.87e-05 + 34 0.000148 + 35 0.00106 + 37 0.00154 + 39 0.00585 + 40 0.00411 + 41 0.00532 + 42 0.00101 + 43 0.000148 + 44 0.000384 + 45 0.0103 + 46 0.000148 + + 44 1 1 0 + 43 1 + + 45 6 4 0 + 4 0.167 + 8 0.167 + 21 0.5 + 26 0.167 + + 49 55 14 0 + 0 0.0364 + 3 0.0909 + 4 0.127 + 8 0.0727 + 9 0.0364 + 13 0.0545 + 14 0.0182 + 15 0.0182 + 21 0.164 + 26 0.0364 + 30 0.0909 + 31 0.218 + 41 0.0182 + 42 0.0182 + + 57 7 5 0 + 8 0.143 + 13 0.143 + 21 0.429 + 30 0.143 + 31 0.143 + + 1 555 21 1 + 0 0.027 + 3 0.00901 + 4 0.11 + 7 0.0126 + 8 0.0613 + 9 0.00721 + 13 0.0342 + 14 0.00901 + 15 0.00721 + 17 0.0018 + 19 0.0036 + 20 0.00541 + 21 0.0541 + 22 0.0018 + 26 0.0234 + 28 0.0018 + 29 0.0396 + 31 0.577 + 35 0.0018 + 40 0.0018 + 45 0.0108 + + 49 6 3 0 + 0 0.167 + 3 0.167 + 31 0.667 + + 2 3483 26 11 + 0 0.152 + 1 0.00258 + 3 0.00632 + 4 0.00718 + 7 0.0135 + 8 0.0126 + 9 0.00201 + 12 0.0617 + 13 0.00689 + 14 0.00402 + 15 0.00144 + 20 0.00172 + 21 0.0939 + 22 0.00172 + 23 0.000287 + 26 0.0284 + 28 0.159 + 29 0.194 + 30 0.0764 + 31 0.0485 + 32 0.0356 + 33 0.0744 + 39 0.00172 + 41 0.0089 + 42 0.000574 + 45 0.00488 + + 0 2 2 0 + 4 0.5 + 30 0.5 + + 28 1 1 0 + 13 1 + + 31 1 1 0 + 8 1 + + 41 654 21 0 + 0 0.19 + 1 0.00306 + 3 0.00765 + 4 0.00917 + 7 0.0291 + 8 0.00612 + 9 0.00153 + 12 0.0765 + 13 0.00306 + 14 0.00306 + 21 0.15 + 22 0.00459 + 26 0.0352 + 28 0.0703 + 29 0.226 + 30 0.052 + 31 0.0138 + 32 0.0291 + 33 0.081 + 41 0.00306 + 45 0.00612 + + 42 39 13 0 + 0 0.103 + 4 0.0256 + 7 0.0769 + 12 0.103 + 21 0.154 + 26 0.0256 + 28 0.128 + 29 0.154 + 30 0.0513 + 31 0.0513 + 32 0.0513 + 33 0.0256 + 41 0.0513 + + 46 38 9 0 + 0 0.132 + 12 0.0789 + 21 0.105 + 28 0.105 + 29 0.289 + 30 0.0263 + 31 0.0526 + 33 0.158 + 45 0.0526 + + 47 1 1 0 + 4 1 + + 55 4 4 0 + 8 0.25 + 21 0.25 + 29 0.25 + 30 0.25 + + 57 2 2 0 + 3 0.5 + 7 0.5 + + 58 5 5 0 + 12 0.2 + 21 0.2 + 28 0.2 + 30 0.2 + 45 0.2 + + 69 2736 26 0 + 0 0.144 + 1 0.00256 + 3 0.00585 + 4 0.00585 + 7 0.00877 + 8 0.0139 + 9 0.00219 + 12 0.0574 + 13 0.00768 + 14 0.00439 + 15 0.00183 + 20 0.00219 + 21 0.0793 + 22 0.0011 + 23 0.000365 + 26 0.0274 + 28 0.182 + 29 0.186 + 30 0.0826 + 31 0.057 + 32 0.0376 + 33 0.0727 + 39 0.00219 + 41 0.00987 + 42 0.000731 + 45 0.00365 + + 4 42 14 2 + 0 0.0238 + 4 0.0238 + 6 0.0238 + 7 0.143 + 8 0.0952 + 13 0.0238 + 16 0.0238 + 21 0.0952 + 28 0.0952 + 29 0.0952 + 30 0.0952 + 31 0.214 + 32 0.0238 + 45 0.0238 + + 0 34 12 0 + 0 0.0294 + 4 0.0294 + 6 0.0294 + 7 0.118 + 8 0.118 + 13 0.0294 + 16 0.0294 + 21 0.0882 + 29 0.118 + 30 0.118 + 31 0.265 + 45 0.0294 + + 12 4 2 0 + 28 0.75 + 32 0.25 + + 7 36 11 4 + 4 0.139 + 7 0.0556 + 8 0.0833 + 13 0.0278 + 14 0.0278 + 19 0.0278 + 20 0.0278 + 26 0.472 + 28 0.0556 + 37 0.0278 + 41 0.0556 + + 29 2 2 0 + 8 0.5 + 13 0.5 + + 30 3 3 0 + 4 0.333 + 7 0.333 + 41 0.333 + + 47 23 5 0 + 4 0.13 + 8 0.087 + 14 0.0435 + 19 0.0435 + 26 0.696 + + 69 3 2 0 + 28 0.667 + 37 0.333 + + 8 152 17 2 + 2 0.0329 + 3 0.0132 + 4 0.0329 + 7 0.395 + 8 0.0329 + 13 0.0658 + 14 0.0724 + 15 0.0197 + 20 0.0197 + 21 0.0395 + 22 0.00658 + 24 0.0132 + 26 0.0855 + 32 0.00658 + 40 0.125 + 41 0.0263 + 46 0.0132 + + 45 2 1 0 + 46 1 + + 49 22 7 0 + 4 0.0455 + 7 0.5 + 14 0.0455 + 21 0.0455 + 26 0.0909 + 40 0.227 + 41 0.0455 + + 12 9666 21 2 + 0 0.291 + 2 0.000724 + 4 0.000828 + 7 0.00197 + 12 0.000207 + 13 0.00031 + 21 0.171 + 22 0.00124 + 23 0.000207 + 26 0.00331 + 28 0.517 + 29 0.000621 + 31 0.000517 + 32 0.000103 + 40 0.00207 + 41 0.00331 + 42 0.000724 + 43 0.000103 + 44 0.000207 + 45 0.00455 + 46 0.000207 + + 41 4 1 0 + 0 1 + + 44 1 1 0 + 43 1 + + 13 297 26 2 + 0 0.0101 + 2 0.0168 + 3 0.0135 + 4 0.0976 + 7 0.256 + 8 0.0168 + 9 0.00337 + 12 0.0101 + 13 0.0404 + 14 0.111 + 15 0.0202 + 19 0.00673 + 20 0.0101 + 21 0.0438 + 22 0.00337 + 24 0.0707 + 26 0.0606 + 29 0.00337 + 30 0.0135 + 31 0.00337 + 39 0.00337 + 40 0.0707 + 41 0.0909 + 42 0.0135 + 45 0.00337 + 46 0.00673 + + 2 3 3 0 + 7 0.333 + 13 0.333 + 46 0.333 + + 45 1 1 0 + 46 1 + + 14 122 18 0 + 2 0.0164 + 4 0.082 + 7 0.197 + 8 0.0328 + 13 0.0246 + 14 0.082 + 15 0.0164 + 19 0.0082 + 21 0.0246 + 24 0.041 + 26 0.246 + 30 0.0246 + 31 0.0082 + 32 0.0082 + 34 0.0082 + 37 0.0164 + 40 0.0984 + 41 0.0656 + + 15 35 10 0 + 4 0.114 + 7 0.143 + 15 0.514 + 19 0.0286 + 21 0.0286 + 24 0.0286 + 26 0.0286 + 32 0.0286 + 42 0.0286 + 46 0.0571 + + 18 27 10 0 + 3 0.037 + 7 0.185 + 8 0.296 + 9 0.148 + 13 0.0741 + 14 0.0741 + 15 0.037 + 20 0.0741 + 37 0.037 + 45 0.037 + + 21 4005 31 12 + 0 0.146 + 1 0.0035 + 2 0.00025 + 3 0.0015 + 4 0.0442 + 7 0.0215 + 8 0.0662 + 9 0.00025 + 12 0.000749 + 13 0.0115 + 14 0.00175 + 15 0.00125 + 20 0.00225 + 21 0.0969 + 24 0.000499 + 26 0.00449 + 28 0.405 + 29 0.0135 + 30 0.04 + 31 0.118 + 32 0.000749 + 33 0.000749 + 35 0.000749 + 37 0.000749 + 40 0.00874 + 41 0.00524 + 42 0.00125 + 43 0.00025 + 45 0.002 + 46 0.00025 + 47 0.00025 + + 0 2915 27 0 + 0 0.0803 + 1 0.0048 + 2 0.000343 + 3 0.00172 + 4 0.0583 + 7 0.0274 + 8 0.0864 + 9 0.000343 + 13 0.0141 + 14 0.0024 + 15 0.00172 + 20 0.00309 + 21 0.113 + 24 0.000343 + 26 0.0024 + 28 0.352 + 29 0.0151 + 30 0.0528 + 31 0.162 + 32 0.000343 + 35 0.00103 + 37 0.00103 + 40 0.0103 + 41 0.00515 + 42 0.00137 + 43 0.000343 + 45 0.00172 + + 2 30 12 0 + 0 0.0333 + 4 0.0333 + 8 0.0333 + 12 0.1 + 21 0.0667 + 28 0.267 + 29 0.2 + 30 0.0667 + 31 0.0333 + 32 0.0333 + 33 0.0667 + 41 0.0667 + + 12 987 12 0 + 0 0.347 + 3 0.00101 + 4 0.00101 + 7 0.00304 + 21 0.0466 + 26 0.00101 + 28 0.588 + 40 0.00405 + 41 0.00405 + 42 0.00101 + 45 0.00304 + 46 0.00101 + + 21 3 2 0 + 8 0.667 + 28 0.333 + + 28 1 1 0 + 47 1 + + 32 7 6 0 + 4 0.143 + 13 0.286 + 26 0.143 + 29 0.143 + 30 0.143 + 40 0.143 + + 33 1 1 0 + 13 1 + + 41 20 9 0 + 0 0.05 + 7 0.05 + 13 0.05 + 21 0.15 + 26 0.2 + 28 0.25 + 29 0.15 + 30 0.05 + 33 0.05 + + 42 1 1 0 + 32 1 + + 45 4 2 0 + 8 0.5 + 21 0.5 + + 47 12 7 0 + 0 0.0833 + 4 0.167 + 7 0.0833 + 8 0.0833 + 13 0.0833 + 21 0.0833 + 26 0.417 + + 49 21 8 0 + 0 0.143 + 4 0.0952 + 7 0.0476 + 8 0.333 + 21 0.19 + 24 0.0476 + 30 0.0952 + 31 0.0476 + + 22 5 3 0 + 26 0.2 + 41 0.6 + 42 0.2 + + 25 2 1 0 + 6 1 + + 26 13048 19 0 + 0 0.112 + 1 7.66e-05 + 4 0.000307 + 7 0.000153 + 8 0.000613 + 13 0.0036 + 15 0.000153 + 21 0.0082 + 22 0.00107 + 28 0.867 + 29 0.00023 + 30 0.000153 + 31 0.000153 + 40 0.000996 + 41 0.000536 + 42 7.66e-05 + 44 0.000153 + 45 0.00429 + 46 0.000153 + + 28 20867 44 10 + 0 0.00192 + 1 0.000335 + 2 0.00441 + 3 0.0235 + 4 0.245 + 5 0.000671 + 6 9.58e-05 + 7 0.129 + 8 0.073 + 9 0.0104 + 10 0.000767 + 12 0.000575 + 13 0.0718 + 14 0.0604 + 15 0.0381 + 16 0.000575 + 17 0.00163 + 18 0.000192 + 19 0.0453 + 20 0.054 + 21 0.0454 + 22 0.00407 + 23 9.58e-05 + 24 0.0409 + 26 0.0441 + 27 0.000144 + 28 0.00565 + 30 0.0123 + 31 0.00398 + 33 4.79e-05 + 34 0.000863 + 35 0.0046 + 36 4.79e-05 + 37 0.00666 + 38 0.000144 + 39 0.0102 + 40 0.0288 + 41 0.0185 + 42 0.00259 + 43 0.000192 + 44 0.0012 + 45 0.00474 + 46 0.00264 + 47 0.000144 + + 2 142 19 0 + 3 0.0211 + 4 0.296 + 7 0.0493 + 8 0.0915 + 13 0.0704 + 14 0.12 + 15 0.0282 + 16 0.00704 + 19 0.0563 + 20 0.0423 + 21 0.0211 + 31 0.00704 + 35 0.00704 + 37 0.00704 + 40 0.0634 + 41 0.0704 + 42 0.0211 + 44 0.00704 + 45 0.0141 + + 13 3 2 0 + 4 0.667 + 46 0.333 + + 21 8 7 0 + 4 0.25 + 8 0.125 + 13 0.125 + 19 0.125 + 21 0.125 + 41 0.125 + 42 0.125 + + 42 5 3 0 + 4 0.6 + 14 0.2 + 24 0.2 + + 44 1 1 0 + 43 1 + + 45 34 10 0 + 2 0.0294 + 4 0.0882 + 7 0.0294 + 13 0.0294 + 17 0.0294 + 21 0.118 + 24 0.0294 + 35 0.0294 + 40 0.0294 + 46 0.588 + + 47 20444 44 0 + 0 0.00196 + 1 0.000342 + 2 0.0044 + 3 0.0238 + 4 0.243 + 5 0.000685 + 6 9.78e-05 + 7 0.131 + 8 0.0732 + 9 0.0105 + 10 0.000783 + 12 0.000587 + 13 0.072 + 14 0.0602 + 15 0.038 + 16 0.000538 + 17 0.00161 + 18 0.000196 + 19 0.0453 + 20 0.0539 + 21 0.0458 + 22 0.00406 + 23 9.78e-05 + 24 0.0412 + 26 0.0446 + 27 9.78e-05 + 28 0.00577 + 30 0.0125 + 31 0.00401 + 33 4.89e-05 + 34 0.00088 + 35 0.00445 + 36 4.89e-05 + 37 0.00675 + 38 0.000147 + 39 0.0103 + 40 0.0288 + 41 0.018 + 42 0.00235 + 43 0.000147 + 44 0.00113 + 45 0.0047 + 46 0.00157 + 47 0.000147 + + 49 216 24 0 + 2 0.00463 + 4 0.352 + 7 0.0694 + 8 0.0602 + 9 0.00463 + 13 0.0556 + 14 0.0509 + 15 0.0741 + 19 0.0463 + 20 0.088 + 21 0.0185 + 22 0.00926 + 24 0.0417 + 26 0.0417 + 27 0.00463 + 30 0.00926 + 35 0.0139 + 39 0.00463 + 40 0.00463 + 41 0.0185 + 42 0.00926 + 44 0.00463 + 45 0.00463 + 46 0.00926 + + 50 3 3 0 + 4 0.333 + 40 0.333 + 41 0.333 + + 57 3 3 0 + 3 0.333 + 4 0.333 + 8 0.333 + + 29 21672 44 8 + 0 0.00198 + 1 9.23e-05 + 2 0.0024 + 3 0.0832 + 4 0.195 + 5 0.00157 + 6 4.61e-05 + 7 0.138 + 8 0.0454 + 9 0.00655 + 10 0.00111 + 12 0.000554 + 13 0.0358 + 14 0.0287 + 15 0.0713 + 16 0.000138 + 17 0.000738 + 19 0.0812 + 20 0.0351 + 21 0.0391 + 22 0.00401 + 23 0.000231 + 24 0.0213 + 26 0.072 + 27 0.000138 + 28 0.00263 + 29 0.000277 + 30 0.00992 + 31 0.00291 + 32 4.61e-05 + 33 0.000231 + 34 0.000185 + 35 0.000738 + 37 0.00175 + 38 0.000138 + 39 0.0162 + 40 0.0611 + 41 0.0302 + 42 0.00392 + 43 0.000138 + 44 0.000138 + 45 0.00383 + 46 0.000461 + 47 4.61e-05 + + 2 33 13 0 + 3 0.0606 + 4 0.273 + 7 0.152 + 8 0.0909 + 13 0.0303 + 14 0.0303 + 19 0.0606 + 20 0.0606 + 24 0.0303 + 40 0.0303 + 41 0.121 + 42 0.0303 + 45 0.0303 + + 41 6 6 0 + 4 0.167 + 14 0.167 + 20 0.167 + 26 0.167 + 28 0.167 + 42 0.167 + + 44 1 1 0 + 43 1 + + 45 14 7 0 + 4 0.214 + 7 0.143 + 14 0.0714 + 19 0.0714 + 21 0.0714 + 27 0.0714 + 46 0.357 + + 47 21324 44 0 + 0 0.00202 + 1 9.38e-05 + 2 0.00234 + 3 0.0843 + 4 0.193 + 5 0.00159 + 6 4.69e-05 + 7 0.138 + 8 0.0455 + 9 0.00642 + 10 0.00113 + 12 0.000563 + 13 0.0356 + 14 0.0286 + 15 0.0715 + 16 0.000141 + 17 0.00075 + 19 0.0818 + 20 0.0347 + 21 0.039 + 22 0.00394 + 23 0.000234 + 24 0.0213 + 26 0.0718 + 27 9.38e-05 + 28 0.00263 + 29 0.000281 + 30 0.00994 + 31 0.00281 + 32 4.69e-05 + 33 0.000234 + 34 0.000141 + 35 0.000703 + 37 0.00169 + 38 0.000141 + 39 0.0164 + 40 0.0618 + 41 0.0303 + 42 0.00389 + 43 9.38e-05 + 44 0.000141 + 45 0.00385 + 46 0.000141 + 47 4.69e-05 + + 49 281 24 0 + 2 0.00712 + 3 0.0178 + 4 0.267 + 7 0.142 + 8 0.0356 + 9 0.0142 + 13 0.0463 + 14 0.0285 + 15 0.0783 + 19 0.0356 + 20 0.0498 + 21 0.0498 + 22 0.0107 + 24 0.0249 + 26 0.103 + 30 0.0107 + 31 0.0107 + 34 0.00356 + 35 0.00356 + 37 0.00712 + 39 0.00712 + 40 0.0214 + 41 0.0178 + 46 0.00712 + + 55 5 4 0 + 7 0.2 + 13 0.2 + 19 0.4 + 20 0.2 + + 57 7 5 0 + 4 0.429 + 9 0.143 + 14 0.143 + 19 0.143 + 20 0.143 + + 30 11209 39 4 + 0 0.00241 + 2 0.00419 + 3 0.0186 + 4 0.22 + 5 0.000357 + 7 0.173 + 8 0.078 + 9 0.0106 + 10 0.000892 + 12 0.000178 + 13 0.0741 + 14 0.0694 + 15 0.0376 + 16 0.000714 + 17 0.00143 + 19 0.0317 + 20 0.0388 + 21 0.0465 + 22 0.00607 + 23 8.92e-05 + 24 0.0352 + 26 0.0869 + 27 0.000268 + 28 0.00116 + 29 0.000357 + 30 0.00473 + 31 0.00419 + 32 8.92e-05 + 34 0.000268 + 35 0.00294 + 37 0.00205 + 39 0.00714 + 40 0.0168 + 41 0.0121 + 42 0.00223 + 43 0.000268 + 44 0.000446 + 45 0.00598 + 46 0.00223 + + 2 63 12 0 + 4 0.238 + 7 0.127 + 8 0.111 + 13 0.111 + 14 0.206 + 15 0.0317 + 19 0.0159 + 20 0.0635 + 21 0.0159 + 40 0.0317 + 41 0.0317 + 42 0.0159 + + 21 12 9 0 + 3 0.0833 + 4 0.167 + 7 0.25 + 14 0.0833 + 20 0.0833 + 26 0.0833 + 35 0.0833 + 37 0.0833 + 40 0.0833 + + 45 15 4 0 + 4 0.133 + 7 0.0667 + 14 0.0667 + 46 0.733 + + 49 214 24 0 + 2 0.00935 + 3 0.0187 + 4 0.28 + 7 0.136 + 8 0.0888 + 9 0.00467 + 13 0.0561 + 14 0.0654 + 15 0.0467 + 19 0.0234 + 20 0.0514 + 21 0.0374 + 24 0.0327 + 26 0.0794 + 27 0.00467 + 31 0.00935 + 35 0.00467 + 37 0.00935 + 39 0.00935 + 40 0.00935 + 41 0.00935 + 42 0.00467 + 45 0.00467 + 46 0.00467 + + 31 15551 42 7 + 0 0.00386 + 1 0.000129 + 2 0.0102 + 3 0.0112 + 4 0.0743 + 5 0.000129 + 7 0.434 + 8 0.0333 + 9 0.0027 + 10 0.000257 + 12 0.00122 + 13 0.0231 + 14 0.0143 + 15 0.0274 + 16 0.000129 + 17 0.000836 + 19 0.0116 + 20 0.0116 + 21 0.0532 + 22 0.00373 + 23 0.000257 + 24 0.0271 + 26 0.132 + 28 0.000836 + 29 0.000965 + 30 0.00514 + 31 0.00174 + 32 0.000643 + 33 0.000322 + 34 0.000322 + 35 0.000707 + 37 0.00257 + 38 6.43e-05 + 39 0.00367 + 40 0.0578 + 41 0.037 + 42 0.00424 + 43 0.00103 + 44 0.000386 + 45 0.00482 + 46 0.00167 + 47 0.000193 + + 2 72 17 0 + 4 0.0694 + 7 0.417 + 9 0.0139 + 14 0.0278 + 17 0.0139 + 19 0.0139 + 20 0.0139 + 21 0.0417 + 26 0.0278 + 29 0.0139 + 30 0.0278 + 39 0.0139 + 40 0.153 + 41 0.0972 + 42 0.0139 + 43 0.0139 + 46 0.0278 + + 21 9 4 0 + 0 0.111 + 7 0.667 + 12 0.111 + 47 0.111 + + 41 2 2 0 + 2 0.5 + 40 0.5 + + 45 13 6 0 + 7 0.231 + 8 0.0769 + 17 0.0769 + 21 0.0769 + 24 0.0769 + 46 0.462 + + 47 14860 42 0 + 0 0.0035 + 1 0.000135 + 2 0.00976 + 3 0.0116 + 4 0.0758 + 5 0.000135 + 7 0.43 + 8 0.0338 + 9 0.00276 + 10 0.000269 + 12 0.00108 + 13 0.0238 + 14 0.0147 + 15 0.028 + 16 0.000135 + 17 0.00074 + 19 0.0118 + 20 0.0114 + 21 0.0543 + 22 0.00384 + 23 0.000269 + 24 0.0281 + 26 0.134 + 28 0.000875 + 29 0.000875 + 30 0.00518 + 31 0.00182 + 32 0.000673 + 33 0.000336 + 34 0.000336 + 35 0.00074 + 37 0.00262 + 38 6.73e-05 + 39 0.00377 + 40 0.0559 + 41 0.0355 + 42 0.00397 + 43 0.000875 + 44 0.000404 + 45 0.00491 + 46 0.00101 + 47 0.000135 + + 49 583 25 0 + 0 0.012 + 2 0.0223 + 3 0.00172 + 4 0.0429 + 7 0.52 + 8 0.024 + 12 0.00343 + 13 0.0103 + 14 0.00515 + 15 0.0172 + 19 0.00515 + 20 0.0172 + 21 0.0274 + 22 0.00172 + 24 0.00686 + 26 0.0909 + 29 0.00172 + 30 0.00172 + 37 0.00172 + 40 0.0961 + 41 0.0686 + 42 0.0103 + 43 0.00343 + 45 0.00343 + 46 0.00515 + + 55 6 2 0 + 7 0.833 + 40 0.167 + + 32 5375 43 3 + 0 0.00651 + 1 0.000186 + 2 0.00335 + 3 0.0134 + 4 0.192 + 5 0.00447 + 6 0.000186 + 7 0.169 + 8 0.0662 + 9 0.0108 + 10 0.00093 + 12 0.00372 + 13 0.0506 + 14 0.0545 + 15 0.0344 + 16 0.000186 + 17 0.00093 + 19 0.0768 + 20 0.0218 + 21 0.0508 + 22 0.00409 + 23 0.000558 + 24 0.0203 + 26 0.0941 + 28 0.0026 + 29 0.000372 + 30 0.0104 + 31 0.00391 + 32 0.000186 + 33 0.000558 + 34 0.000558 + 35 0.00447 + 36 0.000186 + 37 0.00521 + 39 0.00428 + 40 0.0383 + 41 0.0387 + 42 0.00521 + 43 0.000558 + 44 0.000558 + 45 0.00316 + 46 0.000744 + 47 0.000186 + + 2 34 10 0 + 3 0.0294 + 4 0.0882 + 7 0.235 + 8 0.176 + 13 0.0588 + 14 0.206 + 20 0.0294 + 21 0.0294 + 40 0.0882 + 41 0.0588 + + 45 4 3 0 + 4 0.25 + 24 0.25 + 46 0.5 + + 49 79 19 0 + 3 0.0127 + 4 0.19 + 7 0.19 + 8 0.114 + 9 0.0127 + 12 0.0127 + 13 0.0886 + 14 0.0506 + 19 0.0506 + 20 0.0253 + 21 0.0253 + 24 0.0253 + 26 0.0759 + 30 0.0127 + 37 0.0127 + 40 0.0506 + 41 0.0253 + 42 0.0127 + 43 0.0127 + + 33 9565 42 3 + 0 0.0024 + 1 0.000209 + 2 0.00157 + 3 0.0238 + 4 0.181 + 5 0.00136 + 6 0.000105 + 7 0.141 + 8 0.0558 + 9 0.00659 + 10 0.00115 + 12 0.00178 + 13 0.0474 + 14 0.0311 + 15 0.124 + 16 0.000627 + 17 0.000732 + 19 0.0499 + 20 0.0226 + 21 0.0374 + 22 0.00355 + 23 0.000314 + 24 0.0154 + 26 0.0935 + 28 0.00178 + 29 0.000314 + 30 0.00711 + 31 0.0045 + 32 0.000209 + 34 0.000418 + 35 0.00157 + 37 0.0046 + 38 0.000105 + 39 0.0046 + 40 0.0667 + 41 0.0484 + 42 0.00815 + 43 0.000209 + 44 0.000418 + 45 0.00742 + 46 0.000209 + 47 0.000105 + + 2 37 10 0 + 4 0.243 + 7 0.135 + 8 0.162 + 9 0.027 + 12 0.027 + 13 0.135 + 14 0.135 + 15 0.027 + 21 0.027 + 40 0.0811 + + 45 8 7 0 + 7 0.125 + 8 0.125 + 13 0.125 + 21 0.125 + 24 0.125 + 26 0.25 + 46 0.125 + + 49 142 21 0 + 0 0.00704 + 3 0.0141 + 4 0.324 + 7 0.12 + 8 0.0634 + 10 0.00704 + 13 0.0634 + 14 0.00704 + 15 0.0352 + 17 0.0141 + 19 0.0845 + 20 0.0634 + 21 0.0211 + 24 0.0493 + 26 0.0423 + 30 0.0141 + 39 0.00704 + 40 0.0211 + 41 0.00704 + 42 0.0141 + 45 0.0211 + + 40 18 4 0 + 27 0.0556 + 43 0.0556 + 46 0.333 + 47 0.556 + + 41 6243 35 21 + 0 0.00416 + 1 0.0024 + 2 0.113 + 3 0.00432 + 4 0.0271 + 6 0.000641 + 7 0.276 + 8 0.0128 + 9 0.000481 + 10 0.000481 + 12 0.00176 + 13 0.00449 + 14 0.00384 + 15 0.00144 + 16 0.00016 + 19 0.00256 + 20 0.00176 + 21 0.149 + 22 0.00032 + 24 0.00016 + 26 0.0284 + 27 0.000961 + 28 0.0123 + 29 0.0111 + 30 0.222 + 31 0.0368 + 32 0.00352 + 33 0.00352 + 34 0.0103 + 35 0.00128 + 37 0.00657 + 39 0.000481 + 44 0.00016 + 45 0.0365 + 46 0.0189 + + 0 65 14 0 + 0 0.0154 + 4 0.0154 + 7 0.415 + 13 0.0462 + 15 0.0154 + 16 0.0154 + 19 0.0923 + 21 0.185 + 26 0.0154 + 27 0.0308 + 28 0.0154 + 30 0.0154 + 37 0.0615 + 45 0.0615 + + 2 14 4 0 + 4 0.0714 + 7 0.5 + 21 0.357 + 26 0.0714 + + 12 12 3 0 + 3 0.0833 + 7 0.75 + 21 0.167 + + 13 4 4 0 + 7 0.25 + 27 0.25 + 30 0.25 + 46 0.25 + + 28 63 13 0 + 2 0.0159 + 4 0.0159 + 6 0.0159 + 7 0.286 + 8 0.0476 + 12 0.0159 + 13 0.0159 + 14 0.0317 + 21 0.206 + 28 0.0159 + 30 0.0952 + 31 0.0159 + 45 0.222 + + 29 225 14 0 + 0 0.00444 + 7 0.107 + 13 0.00444 + 14 0.00444 + 15 0.00444 + 19 0.00444 + 20 0.00444 + 21 0.12 + 22 0.00444 + 26 0.0133 + 30 0.249 + 31 0.00444 + 45 0.471 + 46 0.00444 + + 30 30 5 0 + 2 0.0667 + 7 0.433 + 21 0.133 + 30 0.0333 + 45 0.333 + + 31 73 10 0 + 4 0.0274 + 7 0.411 + 8 0.0137 + 12 0.0137 + 14 0.0274 + 21 0.233 + 26 0.0137 + 30 0.205 + 31 0.0274 + 45 0.0274 + + 32 25 9 0 + 4 0.08 + 7 0.2 + 8 0.04 + 15 0.04 + 20 0.04 + 21 0.28 + 30 0.12 + 37 0.04 + 45 0.16 + + 33 92 8 0 + 7 0.152 + 14 0.0217 + 19 0.0109 + 21 0.0978 + 27 0.0109 + 28 0.0217 + 30 0.185 + 45 0.5 + + 48 218 13 0 + 1 0.00459 + 2 0.00459 + 3 0.00459 + 4 0.00917 + 7 0.44 + 8 0.0183 + 15 0.00459 + 21 0.234 + 26 0.00917 + 30 0.202 + 31 0.0275 + 45 0.00459 + 46 0.0367 + + 49 387 22 0 + 0 0.00258 + 1 0.00258 + 2 0.0155 + 3 0.00258 + 4 0.0284 + 7 0.488 + 8 0.0233 + 13 0.00775 + 14 0.00775 + 15 0.00258 + 19 0.00517 + 20 0.00258 + 21 0.106 + 26 0.0362 + 28 0.00775 + 30 0.178 + 31 0.0155 + 34 0.0129 + 35 0.00775 + 37 0.0129 + 45 0.0233 + 46 0.0103 + + 52 8 5 0 + 4 0.125 + 8 0.375 + 13 0.125 + 37 0.125 + 39 0.25 + + 55 1378 26 0 + 1 0.00145 + 2 0.0116 + 3 0.00508 + 4 0.0152 + 6 0.000726 + 7 0.319 + 8 0.00871 + 10 0.00145 + 12 0.000726 + 13 0.00218 + 14 0.0029 + 19 0.00145 + 20 0.000726 + 21 0.166 + 26 0.0689 + 27 0.00145 + 28 0.00145 + 29 0.000726 + 30 0.296 + 31 0.0537 + 33 0.000726 + 34 0.00581 + 35 0.00145 + 37 0.00871 + 45 0.00943 + 46 0.0145 + + 57 1875 30 0 + 0 0.00373 + 1 0.00427 + 2 0.0101 + 3 0.00427 + 4 0.0331 + 6 0.00107 + 7 0.341 + 8 0.0197 + 9 0.000533 + 10 0.000533 + 12 0.00107 + 13 0.00427 + 14 0.00267 + 15 0.00213 + 19 0.0016 + 20 0.00213 + 21 0.202 + 24 0.000533 + 26 0.0235 + 28 0.00267 + 29 0.0016 + 30 0.25 + 31 0.0485 + 32 0.00107 + 34 0.00853 + 35 0.00107 + 37 0.008 + 39 0.000533 + 45 0.00693 + 46 0.0133 + + 58 6 5 0 + 4 0.167 + 7 0.333 + 21 0.167 + 31 0.167 + 45 0.167 + + 59 16 8 0 + 2 0.0625 + 7 0.25 + 8 0.0625 + 13 0.0625 + 21 0.312 + 28 0.0625 + 30 0.125 + 46 0.0625 + + 62 353 19 0 + 0 0.00283 + 2 0.0113 + 3 0.00283 + 4 0.0085 + 7 0.34 + 8 0.0142 + 13 0.00283 + 14 0.00283 + 21 0.122 + 26 0.00567 + 29 0.00567 + 30 0.354 + 31 0.0567 + 34 0.00567 + 35 0.00283 + 37 0.0085 + 44 0.00283 + 45 0.00283 + 46 0.0482 + + 64 171 17 0 + 0 0.0117 + 1 0.00585 + 2 0.0234 + 4 0.0175 + 7 0.327 + 12 0.0117 + 13 0.00585 + 19 0.00585 + 21 0.117 + 26 0.0175 + 28 0.00585 + 29 0.00585 + 30 0.351 + 31 0.0234 + 34 0.0117 + 45 0.0117 + 46 0.0468 + + 68 7 6 0 + 7 0.143 + 21 0.143 + 26 0.143 + 30 0.286 + 45 0.143 + 46 0.143 + + 69 1214 24 0 + 0 0.0107 + 1 0.00165 + 2 0.537 + 3 0.00659 + 4 0.0478 + 7 0.0231 + 8 0.00329 + 9 0.00165 + 12 0.00329 + 13 0.00412 + 14 0.00329 + 20 0.00247 + 21 0.0527 + 22 0.000824 + 26 0.00824 + 28 0.0502 + 29 0.0511 + 30 0.0865 + 31 0.0198 + 32 0.0165 + 33 0.0173 + 34 0.0255 + 45 0.000824 + 46 0.0255 + + 42 485 30 16 + 0 0.00412 + 2 0.0866 + 3 0.0103 + 4 0.136 + 6 0.00206 + 7 0.144 + 8 0.0124 + 9 0.00206 + 11 0.00206 + 12 0.0103 + 13 0.0165 + 14 0.0124 + 15 0.0206 + 19 0.0103 + 21 0.101 + 22 0.00206 + 23 0.00206 + 26 0.00825 + 28 0.0103 + 29 0.00206 + 30 0.0474 + 31 0.0165 + 33 0.00412 + 34 0.00619 + 35 0.00619 + 37 0.00619 + 39 0.00206 + 42 0.00619 + 44 0.00206 + 45 0.307 + + 0 14 10 0 + 0 0.0714 + 2 0.0714 + 4 0.0714 + 7 0.143 + 15 0.143 + 28 0.143 + 30 0.0714 + 35 0.0714 + 42 0.0714 + 45 0.143 + + 12 2 2 0 + 0 0.5 + 11 0.5 + + 28 9 8 0 + 4 0.111 + 13 0.111 + 14 0.111 + 23 0.111 + 26 0.111 + 35 0.111 + 37 0.111 + 45 0.222 + + 29 63 4 0 + 3 0.0159 + 4 0.0317 + 7 0.0159 + 45 0.937 + + 30 12 3 0 + 4 0.0833 + 7 0.0833 + 45 0.833 + + 32 7 4 0 + 4 0.286 + 7 0.286 + 15 0.143 + 42 0.286 + + 33 49 4 0 + 3 0.0204 + 4 0.0204 + 14 0.0204 + 45 0.939 + + 42 3 2 0 + 4 0.333 + 13 0.667 + + 46 2 2 0 + 7 0.5 + 31 0.5 + + 48 16 7 0 + 4 0.125 + 7 0.25 + 21 0.25 + 26 0.0625 + 30 0.188 + 44 0.0625 + 45 0.0625 + + 49 20 8 0 + 4 0.05 + 7 0.3 + 8 0.1 + 12 0.05 + 13 0.05 + 21 0.25 + 37 0.05 + 45 0.15 + + 55 64 10 0 + 4 0.125 + 7 0.328 + 12 0.0156 + 13 0.0156 + 19 0.0312 + 21 0.25 + 28 0.0156 + 30 0.0938 + 35 0.0156 + 45 0.109 + + 57 82 17 0 + 3 0.0122 + 4 0.171 + 6 0.0122 + 7 0.232 + 8 0.0366 + 9 0.0122 + 12 0.0122 + 13 0.0122 + 14 0.0244 + 15 0.061 + 19 0.0122 + 21 0.146 + 26 0.0244 + 30 0.0366 + 31 0.0122 + 39 0.0122 + 45 0.171 + + 62 14 7 0 + 2 0.0714 + 3 0.0714 + 7 0.357 + 15 0.0714 + 19 0.0714 + 21 0.214 + 30 0.143 + + 64 16 7 0 + 4 0.25 + 7 0.25 + 8 0.0625 + 13 0.0625 + 19 0.0625 + 30 0.25 + 45 0.0625 + + 69 99 17 0 + 2 0.394 + 3 0.0101 + 4 0.242 + 7 0.0202 + 12 0.0202 + 13 0.0101 + 14 0.0202 + 21 0.0808 + 22 0.0101 + 28 0.0202 + 29 0.0101 + 30 0.0303 + 31 0.0505 + 33 0.0202 + 34 0.0303 + 37 0.0101 + 45 0.0202 + + 43 36 15 4 + 0 0.0278 + 2 0.0556 + 4 0.0556 + 7 0.167 + 12 0.0278 + 13 0.0278 + 19 0.0278 + 21 0.139 + 26 0.0556 + 28 0.0278 + 30 0.0278 + 31 0.0556 + 40 0.139 + 41 0.139 + 42 0.0278 + + 0 4 3 0 + 21 0.25 + 30 0.25 + 31 0.5 + + 28 2 2 0 + 13 0.5 + 19 0.5 + + 55 13 7 0 + 2 0.154 + 7 0.231 + 12 0.0769 + 21 0.308 + 26 0.0769 + 40 0.0769 + 41 0.0769 + + 57 9 5 0 + 7 0.222 + 26 0.111 + 40 0.222 + 41 0.333 + 42 0.111 + + 44 27 12 2 + 4 0.111 + 7 0.296 + 8 0.0741 + 13 0.111 + 14 0.037 + 15 0.148 + 26 0.037 + 28 0.037 + 31 0.037 + 34 0.037 + 37 0.037 + 45 0.037 + + 28 8 5 0 + 4 0.125 + 7 0.125 + 8 0.25 + 13 0.25 + 15 0.25 + + 55 5 3 0 + 7 0.6 + 13 0.2 + 26 0.2 + + 45 947 30 20 + 0 0.0169 + 1 0.00106 + 2 0.00211 + 3 0.00845 + 4 0.147 + 5 0.0116 + 6 0.00528 + 7 0.0993 + 8 0.119 + 9 0.00739 + 12 0.00845 + 13 0.0401 + 14 0.0201 + 15 0.0264 + 16 0.00211 + 17 0.00106 + 19 0.141 + 20 0.00422 + 21 0.116 + 22 0.00422 + 26 0.0211 + 27 0.0116 + 28 0.0919 + 29 0.00317 + 30 0.0348 + 31 0.0275 + 34 0.00211 + 35 0.0095 + 37 0.0127 + 42 0.00317 + + 0 241 18 0 + 1 0.00415 + 3 0.0083 + 4 0.149 + 7 0.0664 + 8 0.249 + 9 0.0083 + 12 0.00415 + 13 0.0207 + 14 0.0124 + 15 0.0124 + 21 0.224 + 22 0.0083 + 26 0.0124 + 28 0.0124 + 29 0.00415 + 30 0.104 + 31 0.0954 + 37 0.00415 + + 1 4 3 0 + 7 0.5 + 21 0.25 + 31 0.25 + + 2 14 4 0 + 0 0.286 + 12 0.357 + 28 0.214 + 29 0.143 + + 12 33 4 0 + 0 0.0909 + 21 0.0909 + 28 0.788 + 37 0.0303 + + 21 4 3 0 + 21 0.25 + 28 0.5 + 30 0.25 + + 26 33 2 0 + 21 0.0303 + 28 0.97 + + 28 57 16 0 + 3 0.0351 + 4 0.246 + 7 0.0351 + 8 0.228 + 9 0.0351 + 13 0.123 + 14 0.0351 + 15 0.0351 + 19 0.0175 + 20 0.0175 + 21 0.105 + 22 0.0175 + 26 0.0175 + 28 0.0175 + 30 0.0175 + 35 0.0175 + + 29 48 16 0 + 0 0.0208 + 4 0.25 + 5 0.0208 + 6 0.0417 + 7 0.104 + 8 0.125 + 13 0.0625 + 14 0.0208 + 15 0.0833 + 19 0.0417 + 21 0.0833 + 26 0.0417 + 28 0.0417 + 30 0.0208 + 34 0.0208 + 37 0.0208 + + 30 36 11 0 + 4 0.278 + 7 0.0278 + 8 0.194 + 9 0.0278 + 13 0.111 + 14 0.0278 + 15 0.0833 + 17 0.0278 + 21 0.167 + 26 0.0278 + 28 0.0278 + + 31 23 10 0 + 3 0.0435 + 4 0.13 + 6 0.087 + 7 0.087 + 8 0.087 + 13 0.0435 + 14 0.13 + 15 0.0435 + 21 0.304 + 28 0.0435 + + 32 12 7 0 + 4 0.0833 + 7 0.0833 + 8 0.333 + 13 0.0833 + 15 0.167 + 28 0.167 + 30 0.0833 + + 33 30 13 0 + 3 0.0667 + 4 0.167 + 5 0.0333 + 7 0.133 + 8 0.2 + 9 0.0333 + 13 0.0667 + 14 0.0667 + 15 0.0333 + 19 0.1 + 21 0.0333 + 22 0.0333 + 30 0.0333 + + 41 196 20 0 + 0 0.0306 + 2 0.0102 + 4 0.128 + 5 0.0153 + 7 0.0765 + 8 0.0255 + 13 0.0408 + 14 0.0102 + 15 0.0153 + 16 0.0051 + 19 0.398 + 20 0.0102 + 21 0.0714 + 27 0.0357 + 28 0.0459 + 30 0.0051 + 31 0.0051 + 35 0.0357 + 37 0.0255 + 42 0.0102 + + 42 126 18 0 + 4 0.183 + 5 0.0476 + 7 0.0714 + 8 0.0397 + 12 0.0159 + 13 0.0397 + 14 0.0238 + 15 0.0317 + 16 0.00794 + 19 0.381 + 20 0.00794 + 21 0.0397 + 27 0.0317 + 28 0.0317 + 34 0.00794 + 35 0.00794 + 37 0.0238 + 42 0.00794 + + 48 2 2 0 + 7 0.5 + 26 0.5 + + 49 13 9 0 + 0 0.0769 + 4 0.231 + 7 0.0769 + 8 0.154 + 21 0.154 + 28 0.0769 + 30 0.0769 + 31 0.0769 + 37 0.0769 + + 55 39 9 0 + 3 0.0256 + 4 0.103 + 7 0.487 + 8 0.0256 + 9 0.0256 + 13 0.0256 + 14 0.0256 + 21 0.0769 + 26 0.205 + + 57 18 7 0 + 4 0.111 + 7 0.556 + 8 0.0556 + 19 0.0556 + 21 0.0556 + 26 0.111 + 30 0.0556 + + 58 10 5 0 + 0 0.1 + 4 0.1 + 7 0.5 + 21 0.1 + 26 0.2 + + 59 8 7 0 + 6 0.125 + 7 0.125 + 8 0.125 + 13 0.125 + 14 0.125 + 15 0.25 + 19 0.125 + + 46 498 27 21 + 0 0.01 + 2 0.151 + 3 0.00402 + 4 0.0723 + 7 0.398 + 8 0.0161 + 12 0.00201 + 13 0.0161 + 14 0.01 + 15 0.0321 + 19 0.0141 + 20 0.00602 + 21 0.0221 + 26 0.0683 + 28 0.00402 + 29 0.00803 + 30 0.0743 + 31 0.00201 + 33 0.00602 + 35 0.00402 + 37 0.0201 + 40 0.00201 + 41 0.00201 + 42 0.0141 + 44 0.012 + 46 0.0141 + 47 0.0161 + + 13 2 2 0 + 8 0.5 + 15 0.5 + + 26 1 1 0 + 28 1 + + 28 48 12 0 + 3 0.0208 + 4 0.354 + 7 0.229 + 8 0.0625 + 13 0.0417 + 14 0.0417 + 15 0.0833 + 19 0.0417 + 20 0.0417 + 35 0.0208 + 37 0.0417 + 44 0.0208 + + 29 9 6 0 + 4 0.222 + 7 0.111 + 13 0.111 + 21 0.111 + 26 0.222 + 30 0.222 + + 30 21 7 0 + 3 0.0476 + 4 0.333 + 7 0.19 + 13 0.0476 + 14 0.0476 + 15 0.286 + 20 0.0476 + + 31 21 8 0 + 4 0.0952 + 7 0.429 + 13 0.0476 + 14 0.0476 + 15 0.0476 + 19 0.0476 + 26 0.238 + 37 0.0476 + + 40 5 2 0 + 46 0.2 + 47 0.8 + + 41 118 15 0 + 0 0.0169 + 2 0.246 + 4 0.0254 + 7 0.237 + 8 0.00847 + 13 0.00847 + 15 0.00847 + 19 0.0169 + 21 0.0593 + 26 0.0169 + 29 0.0254 + 30 0.28 + 31 0.00847 + 33 0.0254 + 46 0.0169 + + 48 39 7 0 + 0 0.0256 + 2 0.308 + 7 0.487 + 8 0.0256 + 26 0.0513 + 37 0.0513 + 44 0.0513 + + 49 34 11 0 + 0 0.0294 + 2 0.0294 + 4 0.0588 + 7 0.529 + 13 0.0294 + 26 0.176 + 28 0.0294 + 30 0.0294 + 35 0.0294 + 37 0.0294 + 42 0.0294 + + 51 1 1 0 + 44 1 + + 52 2 2 0 + 2 0.5 + 37 0.5 + + 55 98 11 0 + 0 0.0102 + 2 0.0918 + 7 0.724 + 12 0.0102 + 19 0.0102 + 26 0.0816 + 29 0.0102 + 30 0.0102 + 41 0.0102 + 42 0.0306 + 44 0.0102 + + 57 31 9 0 + 2 0.129 + 4 0.0323 + 7 0.516 + 8 0.0323 + 13 0.0323 + 21 0.0323 + 26 0.129 + 37 0.0645 + 40 0.0323 + + 59 13 5 0 + 4 0.0769 + 7 0.462 + 15 0.154 + 21 0.0769 + 26 0.231 + + 62 11 7 0 + 2 0.0909 + 7 0.364 + 26 0.0909 + 42 0.0909 + 44 0.0909 + 46 0.182 + 47 0.0909 + + 64 5 2 0 + 7 0.8 + 8 0.2 + + 65 6 4 0 + 2 0.167 + 15 0.167 + 46 0.333 + 47 0.333 + + 66 2 2 0 + 37 0.5 + 42 0.5 + + 67 3 3 0 + 4 0.333 + 19 0.333 + 47 0.333 + + 69 22 4 0 + 2 0.773 + 7 0.136 + 21 0.0455 + 42 0.0455 + + 47 145999 39 35 + 0 0.0116 + 1 6.85e-06 + 2 0.0386 + 3 0.000603 + 4 0.0028 + 5 6.16e-05 + 7 0.0116 + 8 0.000671 + 9 2.05e-05 + 12 0.00449 + 13 0.000678 + 14 0.000404 + 15 0.0104 + 16 6.85e-06 + 17 6.85e-06 + 19 0.000808 + 20 0.000178 + 21 0.00211 + 22 0.000137 + 25 6.85e-06 + 26 0.0016 + 28 0.000164 + 29 0.00262 + 30 0.000384 + 31 0.000349 + 32 0.00107 + 33 0.00145 + 34 0.000288 + 35 4.11e-05 + 37 0.000623 + 39 2.05e-05 + 40 0.691 + 41 0.188 + 42 0.0209 + 43 0.00159 + 44 0.000692 + 45 0.000336 + 46 0.00192 + 47 0.00216 + + 0 598 28 0 + 0 0.0485 + 1 0.00167 + 2 0.0318 + 3 0.0167 + 4 0.164 + 7 0.0518 + 8 0.0234 + 9 0.00502 + 12 0.00334 + 13 0.0284 + 14 0.0301 + 15 0.0853 + 19 0.00669 + 20 0.00836 + 21 0.0167 + 26 0.01 + 30 0.00502 + 31 0.00167 + 34 0.00167 + 35 0.00167 + 37 0.00836 + 39 0.00167 + 40 0.232 + 41 0.176 + 42 0.0301 + 43 0.00167 + 45 0.00334 + 46 0.00502 + + 2 1 1 0 + 30 1 + + 7 2 2 0 + 13 0.5 + 41 0.5 + + 8 34 7 0 + 2 0.147 + 7 0.118 + 20 0.0294 + 21 0.0294 + 32 0.0294 + 40 0.559 + 41 0.0882 + + 12 59 11 0 + 0 0.0508 + 2 0.0508 + 4 0.0169 + 7 0.0508 + 13 0.0169 + 21 0.0339 + 26 0.0339 + 40 0.339 + 41 0.288 + 42 0.0847 + 46 0.0339 + + 13 57 9 0 + 0 0.0351 + 2 0.0877 + 7 0.0351 + 12 0.0351 + 26 0.0175 + 30 0.0175 + 40 0.368 + 41 0.368 + 42 0.0351 + + 15 4 2 0 + 15 0.5 + 46 0.5 + + 21 60 9 0 + 0 0.0167 + 8 0.0167 + 21 0.0167 + 28 0.0333 + 40 0.583 + 41 0.233 + 42 0.0667 + 46 0.0167 + 47 0.0167 + + 22 3 1 0 + 41 1 + + 26 26 8 0 + 0 0.0385 + 7 0.0769 + 21 0.0385 + 28 0.0385 + 40 0.5 + 41 0.231 + 42 0.0385 + 46 0.0385 + + 28 1249 28 0 + 0 0.028 + 2 0.0697 + 4 0.00961 + 5 0.000801 + 7 0.0641 + 8 0.0032 + 12 0.00881 + 13 0.0056 + 15 0.0016 + 17 0.000801 + 19 0.004 + 20 0.0016 + 21 0.00881 + 26 0.004 + 30 0.000801 + 31 0.000801 + 33 0.000801 + 34 0.000801 + 37 0.0048 + 39 0.000801 + 40 0.481 + 41 0.254 + 42 0.0336 + 43 0.0016 + 44 0.0016 + 45 0.000801 + 46 0.0056 + 47 0.0024 + + 29 2544 28 0 + 0 0.00825 + 2 0.0197 + 3 0.0157 + 4 0.0204 + 7 0.00432 + 8 0.000786 + 12 0.000393 + 13 0.00314 + 14 0.000786 + 15 0.219 + 16 0.000393 + 19 0.000786 + 20 0.000786 + 21 0.00118 + 26 0.00118 + 28 0.000393 + 29 0.00197 + 30 0.000393 + 31 0.000786 + 32 0.000393 + 33 0.00118 + 40 0.521 + 41 0.167 + 42 0.00825 + 43 0.000786 + 45 0.000393 + 46 0.000393 + 47 0.000393 + + 30 440 24 0 + 0 0.0591 + 2 0.0977 + 3 0.00227 + 4 0.00227 + 7 0.0659 + 8 0.00909 + 12 0.00455 + 13 0.0114 + 14 0.00682 + 15 0.00227 + 19 0.00227 + 20 0.00227 + 21 0.00909 + 22 0.00227 + 26 0.00227 + 28 0.00227 + 32 0.00227 + 37 0.00227 + 40 0.427 + 41 0.239 + 42 0.0273 + 43 0.00682 + 44 0.00455 + 46 0.00909 + + 31 1808 30 0 + 0 0.0321 + 2 0.0857 + 3 0.000553 + 4 0.00332 + 7 0.0243 + 8 0.00111 + 12 0.0083 + 13 0.000553 + 14 0.000553 + 15 0.00111 + 19 0.00111 + 20 0.000553 + 21 0.00387 + 22 0.000553 + 26 0.00332 + 29 0.0083 + 30 0.000553 + 31 0.000553 + 32 0.00553 + 33 0.00277 + 35 0.000553 + 37 0.00221 + 40 0.497 + 41 0.269 + 42 0.0321 + 43 0.0083 + 44 0.00111 + 45 0.000553 + 46 0.00277 + 47 0.00166 + + 32 490 22 0 + 0 0.0286 + 2 0.0347 + 4 0.0184 + 7 0.0163 + 8 0.00612 + 12 0.0184 + 13 0.00408 + 14 0.0184 + 15 0.00204 + 19 0.00408 + 21 0.00816 + 26 0.00204 + 29 0.00204 + 32 0.00204 + 35 0.00204 + 40 0.42 + 41 0.361 + 42 0.0347 + 43 0.00612 + 44 0.00408 + 46 0.00408 + 47 0.00204 + + 33 2098 25 0 + 0 0.00763 + 2 0.0062 + 3 0.0114 + 4 0.0472 + 7 0.00477 + 8 0.00477 + 12 0.00191 + 13 0.0124 + 15 0.404 + 19 0.000477 + 20 0.00286 + 21 0.000477 + 26 0.000477 + 29 0.000477 + 30 0.000477 + 31 0.000477 + 32 0.000477 + 40 0.304 + 41 0.173 + 42 0.0129 + 43 0.000953 + 44 0.000953 + 45 0.000477 + 46 0.000477 + 47 0.000477 + + 40 11 2 0 + 46 0.0909 + 47 0.909 + + 41 55 17 0 + 0 0.0727 + 2 0.364 + 4 0.109 + 7 0.0545 + 8 0.0182 + 12 0.109 + 13 0.0182 + 14 0.0364 + 15 0.0182 + 19 0.0364 + 21 0.0364 + 29 0.0182 + 30 0.0182 + 31 0.0182 + 32 0.0182 + 37 0.0364 + 45 0.0182 + + 42 5 4 0 + 4 0.2 + 12 0.2 + 19 0.4 + 31 0.2 + + 43 14 5 0 + 2 0.143 + 12 0.0714 + 40 0.357 + 41 0.357 + 42 0.0714 + + 46 81 16 0 + 0 0.037 + 2 0.42 + 4 0.0247 + 7 0.0864 + 12 0.0123 + 15 0.0247 + 19 0.0494 + 21 0.0123 + 29 0.037 + 33 0.0247 + 40 0.0123 + 41 0.0123 + 42 0.0494 + 44 0.0123 + 46 0.0864 + 47 0.0988 + + 48 4185 23 0 + 0 0.0098 + 2 0.0437 + 5 0.000239 + 7 0.00621 + 8 0.000239 + 12 0.00119 + 19 0.00143 + 20 0.000239 + 21 0.000717 + 26 0.000717 + 29 0.000717 + 30 0.000717 + 32 0.000239 + 33 0.000478 + 34 0.000478 + 40 0.651 + 41 0.249 + 42 0.0284 + 43 0.000956 + 44 0.000478 + 45 0.000239 + 46 0.00143 + 47 0.00143 + + 49 3148 26 0 + 0 0.0156 + 2 0.0594 + 3 0.000318 + 4 0.000635 + 7 0.0133 + 8 0.000318 + 12 0.00762 + 13 0.000318 + 15 0.000318 + 19 0.000953 + 21 0.00254 + 26 0.00159 + 28 0.000318 + 29 0.00349 + 30 0.000635 + 32 0.00127 + 33 0.00222 + 34 0.000318 + 37 0.000635 + 40 0.619 + 41 0.234 + 42 0.027 + 43 0.00286 + 45 0.000318 + 46 0.00191 + 47 0.00222 + + 51 49 5 0 + 40 0.735 + 41 0.102 + 42 0.0204 + 43 0.0408 + 47 0.102 + + 55 29370 35 0 + 0 0.0136 + 2 0.0618 + 3 0.00017 + 4 0.00109 + 5 3.4e-05 + 7 0.0157 + 8 0.000613 + 12 0.00582 + 13 0.000204 + 14 0.000136 + 15 0.000477 + 19 0.000783 + 20 6.81e-05 + 21 0.00289 + 22 0.000238 + 25 3.4e-05 + 26 0.00221 + 28 0.000272 + 29 0.00371 + 30 0.000272 + 31 0.000477 + 32 0.00112 + 33 0.00197 + 34 0.000409 + 35 3.4e-05 + 37 0.000783 + 39 3.4e-05 + 40 0.65 + 41 0.205 + 42 0.0224 + 43 0.0018 + 44 0.000647 + 45 0.000409 + 46 0.00211 + 47 0.00218 + + 57 28760 33 0 + 0 0.0139 + 2 0.0438 + 3 6.95e-05 + 4 0.00104 + 5 6.95e-05 + 7 0.00883 + 8 0.000556 + 12 0.00619 + 13 0.000417 + 14 0.000104 + 15 0.000313 + 19 0.000626 + 20 0.000104 + 21 0.00209 + 22 0.000139 + 26 0.00205 + 28 0.000209 + 29 0.00466 + 30 0.000522 + 31 0.000591 + 32 0.00191 + 33 0.00209 + 34 0.000487 + 35 3.48e-05 + 37 0.000313 + 40 0.684 + 41 0.195 + 42 0.0239 + 43 0.00212 + 44 0.00101 + 45 0.000382 + 46 0.00125 + 47 0.00174 + + 58 125 18 0 + 0 0.04 + 2 0.112 + 4 0.016 + 7 0.008 + 12 0.032 + 15 0.04 + 19 0.04 + 20 0.008 + 21 0.008 + 26 0.008 + 29 0.016 + 33 0.008 + 35 0.008 + 40 0.512 + 41 0.112 + 42 0.016 + 45 0.008 + 47 0.008 + + 59 392 14 0 + 0 0.0102 + 2 0.0969 + 4 0.00765 + 7 0.0255 + 8 0.00255 + 12 0.00255 + 21 0.0051 + 26 0.0051 + 40 0.51 + 41 0.291 + 42 0.0332 + 43 0.0051 + 46 0.00255 + 47 0.00255 + + 62 12424 28 0 + 0 0.00789 + 2 0.0249 + 3 8.05e-05 + 4 0.000644 + 7 0.00539 + 8 0.000241 + 12 0.0037 + 13 8.05e-05 + 14 0.000402 + 15 8.05e-05 + 19 0.000644 + 21 0.00145 + 26 0.000644 + 29 0.00129 + 30 0.000241 + 31 8.05e-05 + 32 0.000805 + 33 0.00121 + 34 0.000402 + 37 0.000322 + 40 0.761 + 41 0.163 + 42 0.0182 + 43 0.000563 + 44 0.000724 + 45 0.000402 + 46 0.0025 + 47 0.00266 + + 64 13381 22 0 + 0 0.00239 + 2 0.0106 + 4 7.47e-05 + 5 7.47e-05 + 7 0.000374 + 8 7.47e-05 + 12 0.00105 + 13 7.47e-05 + 15 7.47e-05 + 19 0.000374 + 21 7.47e-05 + 29 0.000299 + 32 0.000149 + 33 0.000224 + 34 7.47e-05 + 40 0.86 + 41 0.106 + 42 0.0132 + 43 0.000972 + 44 0.000224 + 46 0.000972 + 47 0.00277 + + 65 17 2 0 + 40 0.765 + 47 0.235 + + 67 12 4 0 + 40 0.5 + 42 0.0833 + 46 0.25 + 47 0.167 + + 68 148 8 0 + 0 0.0135 + 2 0.00676 + 4 0.00676 + 31 0.00676 + 40 0.73 + 41 0.189 + 42 0.0405 + 46 0.00676 + + 69 44302 32 0 + 0 0.0102 + 2 0.0279 + 3 6.77e-05 + 4 0.000971 + 5 6.77e-05 + 7 0.0133 + 8 0.000361 + 12 0.00354 + 13 0.000203 + 14 0.000271 + 15 0.000406 + 19 0.000564 + 20 2.26e-05 + 21 0.00185 + 22 0.000158 + 26 0.00144 + 28 9.03e-05 + 29 0.00174 + 30 0.000339 + 31 0.000226 + 32 0.00079 + 33 0.00124 + 34 0.000113 + 37 0.00079 + 40 0.719 + 41 0.189 + 42 0.0194 + 43 0.0012 + 44 0.000632 + 45 0.000248 + 46 0.00192 + 47 0.00156 + + 74 15 3 0 + 40 0.4 + 41 0.0667 + 47 0.533 + + 48 5913 33 15 + 0 0.00727 + 2 0.0313 + 3 0.00101 + 4 0.00643 + 5 0.000169 + 7 0.163 + 8 0.00372 + 12 0.00101 + 13 0.00558 + 14 0.000338 + 15 0.00169 + 17 0.000507 + 19 0.00152 + 20 0.000169 + 21 0.0167 + 22 0.000507 + 26 0.0338 + 29 0.000507 + 30 0.00355 + 31 0.0022 + 32 0.000169 + 33 0.000338 + 34 0.00101 + 35 0.000676 + 37 0.00693 + 40 0.461 + 41 0.214 + 42 0.0237 + 43 0.000676 + 44 0.00152 + 45 0.000507 + 46 0.00761 + 47 0.00101 + + 0 4156 30 0 + 0 0.00794 + 2 0.0337 + 3 0.000722 + 4 0.00553 + 5 0.000241 + 7 0.149 + 8 0.00217 + 12 0.0012 + 13 0.00674 + 14 0.000241 + 15 0.000962 + 17 0.000481 + 19 0.00144 + 21 0.0156 + 26 0.038 + 29 0.000722 + 30 0.00337 + 31 0.00265 + 33 0.000481 + 34 0.0012 + 35 0.000481 + 37 0.00577 + 40 0.474 + 41 0.217 + 42 0.0231 + 43 0.000722 + 44 0.00192 + 45 0.000481 + 46 0.00217 + 47 0.00144 + + 1 36 8 0 + 0 0.0278 + 7 0.194 + 19 0.0278 + 21 0.0278 + 40 0.333 + 41 0.306 + 42 0.0556 + 46 0.0278 + + 21 356 17 0 + 0 0.00562 + 2 0.0169 + 4 0.00281 + 7 0.152 + 8 0.00281 + 19 0.00281 + 21 0.014 + 26 0.014 + 30 0.00281 + 32 0.00281 + 34 0.00281 + 35 0.00281 + 37 0.0225 + 40 0.458 + 41 0.256 + 42 0.0365 + 46 0.00562 + + 28 251 17 0 + 0 0.012 + 2 0.0239 + 4 0.0199 + 7 0.243 + 8 0.0199 + 12 0.00398 + 14 0.00398 + 15 0.00398 + 20 0.00398 + 21 0.0239 + 26 0.0438 + 30 0.00398 + 40 0.394 + 41 0.175 + 42 0.0159 + 43 0.00398 + 45 0.00398 + + 29 218 16 0 + 0 0.00459 + 2 0.0275 + 3 0.00917 + 4 0.0275 + 7 0.284 + 8 0.0229 + 13 0.00917 + 15 0.0138 + 21 0.0275 + 22 0.0138 + 26 0.0275 + 30 0.00917 + 37 0.0138 + 40 0.362 + 41 0.138 + 42 0.00917 + + 30 87 10 0 + 0 0.0115 + 2 0.0345 + 4 0.0115 + 7 0.184 + 15 0.0115 + 17 0.0115 + 21 0.0345 + 26 0.0115 + 40 0.517 + 41 0.172 + + 31 99 12 0 + 2 0.0202 + 4 0.0101 + 7 0.343 + 15 0.0101 + 21 0.0202 + 26 0.0303 + 30 0.0101 + 37 0.0101 + 40 0.374 + 41 0.141 + 42 0.0202 + 44 0.0101 + + 32 99 9 0 + 2 0.0303 + 4 0.0101 + 7 0.172 + 13 0.0101 + 26 0.0101 + 37 0.0101 + 40 0.475 + 41 0.253 + 42 0.0303 + + 33 166 10 0 + 2 0.0301 + 7 0.0904 + 13 0.00602 + 21 0.0361 + 26 0.0241 + 31 0.00602 + 37 0.00602 + 40 0.53 + 41 0.235 + 42 0.0361 + + 41 43 6 0 + 7 0.0698 + 21 0.0233 + 30 0.0233 + 40 0.651 + 41 0.186 + 42 0.0465 + + 45 96 7 0 + 2 0.0104 + 7 0.0312 + 30 0.0104 + 31 0.0104 + 40 0.354 + 41 0.25 + 46 0.333 + + 47 37 1 0 + 7 1 + + 49 232 14 0 + 0 0.00431 + 2 0.0517 + 7 0.142 + 8 0.00862 + 13 0.00431 + 19 0.00431 + 21 0.0172 + 26 0.0474 + 35 0.00431 + 37 0.0129 + 40 0.418 + 41 0.25 + 42 0.0302 + 46 0.00431 + + 59 3 3 0 + 3 0.333 + 40 0.333 + 42 0.333 + + 69 2 2 0 + 0 0.5 + 40 0.5 + + 49 8591 38 29 + 0 0.047 + 1 0.00291 + 2 0.0221 + 3 0.00466 + 4 0.0363 + 7 0.185 + 8 0.0282 + 9 0.00163 + 10 0.000116 + 12 0.00326 + 13 0.00873 + 14 0.00384 + 15 0.00349 + 17 0.000116 + 19 0.00105 + 20 0.00186 + 21 0.0312 + 22 0.00233 + 24 0.000466 + 26 0.0481 + 28 0.0638 + 29 0.00349 + 30 0.0345 + 31 0.076 + 32 0.000931 + 33 0.00128 + 34 0.000233 + 35 0.00151 + 37 0.00442 + 39 0.000698 + 40 0.227 + 41 0.132 + 42 0.0128 + 43 0.00105 + 44 0.000698 + 45 0.0021 + 46 0.00466 + 47 0.000815 + + 0 2149 33 0 + 0 0.0558 + 1 0.0116 + 2 0.00558 + 3 0.00651 + 4 0.0879 + 7 0.102 + 8 0.0814 + 9 0.00605 + 12 0.000465 + 13 0.0172 + 14 0.00745 + 15 0.00465 + 17 0.000465 + 20 0.000465 + 21 0.053 + 22 0.00279 + 24 0.0014 + 26 0.0219 + 28 0.00279 + 29 0.000465 + 30 0.117 + 31 0.276 + 32 0.000465 + 33 0.000465 + 35 0.00372 + 37 0.00233 + 39 0.000931 + 40 0.0749 + 41 0.0433 + 42 0.00465 + 45 0.00558 + 46 0.000465 + 47 0.000465 + + 1 9 3 0 + 0 0.111 + 31 0.778 + 47 0.111 + + 2 61 13 0 + 0 0.115 + 7 0.0328 + 8 0.0164 + 12 0.0492 + 21 0.0164 + 26 0.0656 + 28 0.18 + 29 0.213 + 30 0.0984 + 31 0.082 + 32 0.0492 + 33 0.0656 + 45 0.0164 + + 8 4 2 0 + 7 0.75 + 41 0.25 + + 12 581 7 0 + 0 0.31 + 21 0.0172 + 22 0.00172 + 28 0.664 + 29 0.00172 + 32 0.00172 + 41 0.00344 + + 13 14 7 0 + 7 0.357 + 14 0.143 + 26 0.143 + 30 0.0714 + 37 0.0714 + 40 0.143 + 41 0.0714 + + 21 224 16 0 + 0 0.196 + 3 0.00446 + 4 0.0491 + 7 0.0268 + 8 0.0714 + 13 0.0179 + 20 0.00446 + 21 0.0179 + 26 0.0179 + 28 0.366 + 30 0.0402 + 31 0.156 + 40 0.00893 + 41 0.00893 + 42 0.00893 + 46 0.00446 + + 26 59 4 0 + 0 0.0169 + 21 0.0169 + 28 0.932 + 45 0.0339 + + 28 735 26 0 + 0 0.00544 + 2 0.0667 + 3 0.00272 + 4 0.0517 + 7 0.291 + 8 0.015 + 12 0.00136 + 13 0.0068 + 14 0.00816 + 15 0.00544 + 20 0.0068 + 21 0.0381 + 22 0.00408 + 26 0.0803 + 29 0.00136 + 30 0.00952 + 31 0.00136 + 35 0.00408 + 37 0.0109 + 39 0.00272 + 40 0.215 + 41 0.144 + 42 0.00952 + 44 0.00136 + 46 0.015 + 47 0.00136 + + 29 723 27 0 + 0 0.00138 + 2 0.0277 + 3 0.0166 + 4 0.0194 + 7 0.383 + 8 0.0194 + 9 0.00138 + 12 0.00138 + 13 0.0138 + 14 0.00553 + 15 0.0152 + 19 0.00692 + 20 0.00692 + 21 0.0332 + 22 0.00277 + 26 0.116 + 30 0.00553 + 31 0.00138 + 32 0.00138 + 37 0.00415 + 40 0.169 + 41 0.129 + 42 0.0111 + 43 0.00138 + 44 0.00138 + 45 0.00138 + 46 0.00415 + + 30 476 29 0 + 0 0.0168 + 2 0.0147 + 3 0.0063 + 4 0.0315 + 7 0.332 + 8 0.0105 + 10 0.0021 + 12 0.0126 + 13 0.0126 + 14 0.0105 + 15 0.0021 + 20 0.0021 + 21 0.0441 + 22 0.0021 + 26 0.105 + 28 0.0021 + 29 0.0021 + 30 0.0084 + 31 0.0021 + 33 0.0084 + 34 0.0021 + 35 0.0021 + 37 0.0063 + 39 0.0042 + 40 0.197 + 41 0.139 + 42 0.0126 + 43 0.0042 + 46 0.0042 + + 31 679 25 0 + 0 0.0103 + 2 0.0353 + 3 0.00736 + 4 0.0177 + 7 0.384 + 8 0.00884 + 12 0.0103 + 13 0.00295 + 15 0.00147 + 19 0.00295 + 20 0.00147 + 21 0.0177 + 26 0.0854 + 29 0.0118 + 30 0.00442 + 35 0.00147 + 37 0.00295 + 40 0.225 + 41 0.137 + 42 0.0206 + 43 0.00147 + 44 0.00442 + 45 0.00147 + 46 0.00147 + 47 0.00147 + + 32 203 15 0 + 0 0.0197 + 2 0.0542 + 4 0.0345 + 7 0.31 + 8 0.00985 + 13 0.0148 + 21 0.0394 + 22 0.00493 + 26 0.0788 + 31 0.00493 + 32 0.00493 + 37 0.00493 + 40 0.241 + 41 0.163 + 42 0.0148 + + 33 209 19 0 + 2 0.0287 + 3 0.00957 + 4 0.0383 + 7 0.297 + 8 0.0239 + 13 0.00478 + 19 0.00478 + 20 0.00478 + 21 0.0383 + 22 0.00478 + 26 0.0718 + 34 0.00478 + 37 0.00957 + 40 0.254 + 41 0.167 + 42 0.0191 + 43 0.00478 + 46 0.00478 + 47 0.00957 + + 41 627 13 0 + 0 0.00159 + 2 0.00159 + 7 0.0223 + 20 0.00159 + 21 0.00159 + 26 0.00319 + 29 0.00638 + 30 0.00797 + 31 0.00159 + 40 0.619 + 41 0.313 + 42 0.0191 + 47 0.00159 + + 42 15 6 0 + 7 0.0667 + 26 0.0667 + 40 0.667 + 41 0.0667 + 42 0.0667 + 43 0.0667 + + 43 4 3 0 + 2 0.25 + 7 0.25 + 40 0.5 + + 45 38 7 0 + 7 0.105 + 21 0.105 + 28 0.0526 + 31 0.105 + 40 0.237 + 41 0.0789 + 46 0.316 + + 46 6 2 0 + 40 0.333 + 41 0.667 + + 47 19 5 0 + 2 0.0526 + 7 0.421 + 26 0.0526 + 40 0.263 + 41 0.211 + + 48 81 9 0 + 0 0.0123 + 2 0.0123 + 7 0.173 + 13 0.0123 + 15 0.0247 + 26 0.037 + 40 0.444 + 41 0.247 + 42 0.037 + + 49 150 16 0 + 0 0.0133 + 2 0.0133 + 4 0.02 + 7 0.147 + 8 0.0133 + 13 0.00667 + 21 0.02 + 22 0.0133 + 26 0.0533 + 28 0.0333 + 30 0.02 + 31 0.02 + 40 0.327 + 41 0.267 + 42 0.0133 + 46 0.02 + + 55 1082 27 0 + 0 0.012 + 2 0.0407 + 3 0.000924 + 4 0.0129 + 7 0.174 + 8 0.00277 + 12 0.00555 + 13 0.0037 + 15 0.000924 + 19 0.000924 + 21 0.0213 + 22 0.00185 + 24 0.000924 + 26 0.0434 + 29 0.000924 + 30 0.00277 + 31 0.000924 + 32 0.000924 + 33 0.000924 + 37 0.00555 + 40 0.418 + 41 0.216 + 42 0.0259 + 43 0.00185 + 44 0.000924 + 45 0.000924 + 46 0.00277 + + 57 294 15 0 + 0 0.034 + 2 0.0272 + 7 0.119 + 8 0.0034 + 12 0.0102 + 13 0.0034 + 21 0.0068 + 26 0.0136 + 33 0.0034 + 37 0.0102 + 40 0.497 + 41 0.248 + 42 0.0136 + 43 0.0034 + 46 0.0068 + + 59 95 10 0 + 2 0.0211 + 4 0.0105 + 7 0.242 + 21 0.0316 + 22 0.0105 + 26 0.0737 + 37 0.0316 + 40 0.326 + 41 0.221 + 42 0.0316 + + 62 38 6 0 + 7 0.158 + 21 0.0263 + 26 0.0263 + 40 0.5 + 41 0.237 + 42 0.0526 + + 64 6 3 0 + 2 0.167 + 7 0.333 + 40 0.5 + + 68 1 1 0 + 42 1 + + 69 3 3 0 + 37 0.333 + 40 0.333 + 41 0.333 + + 50 39 9 0 + 0 0.0513 + 1 0.0513 + 13 0.0256 + 21 0.103 + 26 0.0769 + 28 0.256 + 29 0.0513 + 30 0.308 + 31 0.0769 + + 51 53 8 1 + 26 0.0189 + 40 0.679 + 41 0.113 + 42 0.0189 + 43 0.0377 + 44 0.0189 + 46 0.0189 + 47 0.0943 + + 28 8 4 0 + 40 0.5 + 42 0.125 + 43 0.25 + 47 0.125 + + 52 22 6 1 + 7 0.0455 + 21 0.0455 + 26 0.182 + 40 0.273 + 41 0.364 + 46 0.0909 + + 41 9 2 0 + 40 0.111 + 41 0.889 + + 55 47284 43 31 + 0 0.00854 + 1 2.11e-05 + 2 0.0387 + 3 0.00247 + 4 0.0117 + 5 8.46e-05 + 6 4.23e-05 + 7 0.211 + 8 0.00544 + 9 0.000656 + 10 6.34e-05 + 12 0.00364 + 13 0.00398 + 14 0.000613 + 15 0.00271 + 17 0.000106 + 19 0.0018 + 20 0.000338 + 21 0.0256 + 22 0.00235 + 23 6.34e-05 + 24 0.00343 + 25 2.11e-05 + 26 0.0759 + 28 0.000486 + 29 0.00235 + 30 0.00334 + 31 0.00131 + 32 0.000698 + 33 0.00123 + 34 0.000761 + 35 0.000423 + 37 0.00419 + 38 2.11e-05 + 39 0.000952 + 40 0.404 + 41 0.157 + 42 0.0156 + 43 0.0014 + 44 0.000909 + 45 0.00123 + 46 0.00338 + 47 0.00135 + + 0 6750 33 0 + 0 0.00252 + 2 0.0296 + 3 0.000444 + 4 0.00504 + 7 0.114 + 8 0.00296 + 12 0.000889 + 13 0.00207 + 14 0.000148 + 15 0.000593 + 19 0.00119 + 20 0.000296 + 21 0.0169 + 22 0.000148 + 23 0.000148 + 24 0.000148 + 26 0.0105 + 29 0.000593 + 30 0.00222 + 31 0.00207 + 32 0.000296 + 33 0.000148 + 34 0.00207 + 35 0.00148 + 37 0.00252 + 40 0.549 + 41 0.221 + 42 0.0246 + 43 0.00119 + 44 0.00104 + 45 0.000741 + 46 0.00252 + 47 0.00119 + + 1 94 13 0 + 0 0.0426 + 2 0.0532 + 4 0.0319 + 7 0.117 + 12 0.0106 + 21 0.0213 + 26 0.0213 + 30 0.0426 + 31 0.0213 + 33 0.0213 + 40 0.34 + 41 0.255 + 42 0.0213 + + 2 4 4 0 + 2 0.25 + 4 0.25 + 7 0.25 + 40 0.25 + + 8 38 9 0 + 0 0.0526 + 2 0.0263 + 7 0.211 + 19 0.0526 + 21 0.0526 + 26 0.0263 + 40 0.342 + 41 0.184 + 42 0.0526 + + 12 4 3 0 + 0 0.25 + 26 0.25 + 28 0.5 + + 13 94 10 0 + 0 0.0426 + 2 0.0638 + 7 0.234 + 12 0.0213 + 13 0.0106 + 21 0.0106 + 26 0.0957 + 34 0.0106 + 40 0.362 + 41 0.149 + + 14 29 7 0 + 2 0.0345 + 7 0.448 + 21 0.0345 + 26 0.069 + 30 0.0345 + 40 0.276 + 41 0.103 + + 15 17 7 0 + 7 0.0588 + 26 0.0588 + 40 0.294 + 41 0.294 + 42 0.0588 + 46 0.176 + 47 0.0588 + + 18 17 5 0 + 7 0.0588 + 21 0.176 + 26 0.0588 + 40 0.588 + 41 0.118 + + 21 265 16 0 + 0 0.00377 + 2 0.0226 + 3 0.00377 + 7 0.117 + 19 0.00377 + 21 0.0113 + 26 0.0113 + 28 0.00755 + 31 0.00377 + 35 0.00755 + 40 0.494 + 41 0.245 + 42 0.0566 + 44 0.00377 + 46 0.00377 + 47 0.00377 + + 28 12476 38 0 + 0 0.00697 + 2 0.0437 + 3 0.00176 + 4 0.013 + 7 0.248 + 8 0.00601 + 9 0.0012 + 10 8.02e-05 + 12 0.00353 + 13 0.00449 + 14 0.000721 + 15 0.00208 + 17 8.02e-05 + 19 0.00168 + 20 0.000802 + 21 0.0374 + 22 0.00297 + 23 8.02e-05 + 24 0.00513 + 26 0.0612 + 28 0.000641 + 29 0.00224 + 30 0.00313 + 31 0.00104 + 32 0.000321 + 33 0.00128 + 34 0.000481 + 35 0.000321 + 37 0.00529 + 39 0.0016 + 40 0.389 + 41 0.134 + 42 0.0119 + 43 0.0012 + 44 0.000721 + 45 0.00136 + 46 0.00361 + 47 0.00112 + + 29 8581 37 0 + 0 0.00373 + 2 0.0332 + 3 0.00629 + 4 0.0124 + 5 0.000233 + 7 0.253 + 8 0.0107 + 9 0.000699 + 10 0.000117 + 12 0.00105 + 13 0.00594 + 14 0.000583 + 15 0.00886 + 19 0.00408 + 21 0.0198 + 22 0.00431 + 24 0.00408 + 26 0.19 + 28 0.000583 + 29 0.0021 + 30 0.00501 + 31 0.00163 + 32 0.000233 + 33 0.000233 + 34 0.000117 + 35 0.000117 + 37 0.00373 + 38 0.000117 + 39 0.0021 + 40 0.295 + 41 0.117 + 42 0.00979 + 43 0.000932 + 44 0.000233 + 45 0.00128 + 46 0.000583 + 47 0.000699 + + 30 6281 37 0 + 0 0.0275 + 2 0.0393 + 3 0.00271 + 4 0.0146 + 6 0.000159 + 7 0.217 + 8 0.00494 + 9 0.000478 + 12 0.0126 + 13 0.0035 + 14 0.000955 + 15 0.00191 + 17 0.000318 + 19 0.00127 + 20 0.000318 + 21 0.0318 + 22 0.00223 + 24 0.0043 + 26 0.0715 + 28 0.000159 + 29 0.00462 + 30 0.00239 + 31 0.00127 + 32 0.00223 + 33 0.00478 + 34 0.000955 + 35 0.000159 + 37 0.00478 + 39 0.000159 + 40 0.367 + 41 0.154 + 42 0.0135 + 43 0.000955 + 44 0.00127 + 45 0.00191 + 46 0.00191 + 47 0.000478 + + 31 2695 36 0 + 0 0.00631 + 2 0.0445 + 3 0.00223 + 4 0.0137 + 6 0.000371 + 7 0.277 + 8 0.00334 + 12 0.00186 + 13 0.00445 + 14 0.00148 + 15 0.000742 + 19 0.00148 + 20 0.000371 + 21 0.0249 + 22 0.00223 + 24 0.00223 + 25 0.000371 + 26 0.0716 + 28 0.000742 + 29 0.00519 + 30 0.00334 + 31 0.000742 + 32 0.000742 + 33 0.000371 + 34 0.000371 + 35 0.000371 + 37 0.00297 + 39 0.000742 + 40 0.35 + 41 0.157 + 42 0.0122 + 43 0.00223 + 44 0.000742 + 45 0.00148 + 46 0.00148 + 47 0.000742 + + 32 1863 32 0 + 0 0.00966 + 2 0.0446 + 3 0.00215 + 4 0.0193 + 5 0.000537 + 7 0.188 + 8 0.00376 + 9 0.00161 + 10 0.000537 + 12 0.00429 + 13 0.00429 + 15 0.00107 + 17 0.00107 + 19 0.000537 + 21 0.0327 + 22 0.00376 + 24 0.0059 + 26 0.0505 + 28 0.00107 + 29 0.00107 + 30 0.00322 + 32 0.00322 + 37 0.00751 + 39 0.000537 + 40 0.429 + 41 0.144 + 42 0.0247 + 43 0.000537 + 44 0.00161 + 45 0.00161 + 46 0.00215 + 47 0.00429 + + 33 3326 33 0 + 0 0.00301 + 2 0.0427 + 3 0.0018 + 4 0.018 + 7 0.196 + 8 0.00331 + 9 0.0012 + 12 0.0018 + 13 0.00481 + 14 0.000601 + 15 0.0012 + 19 0.000902 + 20 0.000301 + 21 0.0216 + 22 0.0021 + 23 0.000301 + 24 0.00541 + 26 0.0496 + 29 0.0015 + 30 0.0021 + 31 0.000601 + 33 0.000902 + 34 0.000301 + 37 0.00241 + 39 0.000902 + 40 0.442 + 41 0.164 + 42 0.0213 + 43 0.0015 + 44 0.0012 + 45 0.0012 + 46 0.0012 + 47 0.00361 + + 41 223 9 0 + 0 0.00448 + 2 0.00448 + 3 0.00448 + 30 0.00448 + 40 0.807 + 41 0.139 + 42 0.0269 + 43 0.00448 + 46 0.00448 + + 42 82 6 0 + 7 0.0122 + 13 0.0122 + 40 0.939 + 41 0.0122 + 42 0.0122 + 46 0.0122 + + 44 13 2 0 + 40 0.0769 + 43 0.923 + + 45 212 7 0 + 7 0.0425 + 21 0.00472 + 26 0.00943 + 40 0.448 + 41 0.241 + 42 0.0142 + 46 0.241 + + 46 73 8 0 + 0 0.0274 + 2 0.0137 + 7 0.247 + 21 0.0274 + 37 0.0137 + 40 0.479 + 41 0.178 + 42 0.0137 + + 47 75 7 0 + 7 0.693 + 26 0.213 + 31 0.0133 + 40 0.0267 + 41 0.0267 + 42 0.0133 + 46 0.0133 + + 48 97 10 0 + 0 0.0206 + 2 0.0825 + 4 0.0103 + 7 0.134 + 12 0.0103 + 26 0.0619 + 37 0.0103 + 40 0.433 + 41 0.206 + 42 0.0309 + + 49 604 21 0 + 0 0.00331 + 2 0.0348 + 3 0.00166 + 4 0.00828 + 7 0.118 + 8 0.00331 + 13 0.00331 + 21 0.00993 + 26 0.0281 + 29 0.00166 + 33 0.00166 + 34 0.00331 + 35 0.00166 + 37 0.00166 + 40 0.518 + 41 0.214 + 42 0.0315 + 43 0.00331 + 44 0.00166 + 46 0.00497 + 47 0.00662 + + 55 1276 24 0 + 0 0.00549 + 1 0.000784 + 2 0.0353 + 3 0.000784 + 4 0.00392 + 7 0.143 + 8 0.00157 + 12 0.000784 + 13 0.000784 + 21 0.00862 + 26 0.0533 + 28 0.000784 + 29 0.00313 + 30 0.00784 + 31 0.00157 + 32 0.00157 + 34 0.00235 + 37 0.00705 + 40 0.472 + 41 0.226 + 42 0.0188 + 43 0.000784 + 46 0.00157 + 47 0.00235 + + 57 656 22 0 + 0 0.0107 + 2 0.0366 + 4 0.00457 + 7 0.145 + 8 0.00152 + 12 0.00305 + 14 0.00152 + 15 0.00152 + 19 0.00152 + 26 0.0244 + 29 0.00152 + 30 0.00457 + 31 0.00152 + 32 0.00152 + 33 0.00152 + 34 0.00152 + 37 0.0061 + 40 0.486 + 41 0.248 + 42 0.0122 + 43 0.00152 + 44 0.00305 + + 58 23 4 0 + 7 0.087 + 29 0.0435 + 40 0.696 + 41 0.174 + + 59 1272 26 0 + 0 0.0118 + 2 0.0645 + 3 0.000786 + 4 0.0055 + 5 0.000786 + 7 0.21 + 8 0.0055 + 12 0.00629 + 13 0.00314 + 14 0.000786 + 15 0.000786 + 19 0.000786 + 21 0.0204 + 22 0.00157 + 26 0.0558 + 29 0.00314 + 30 0.00393 + 33 0.000786 + 37 0.00472 + 40 0.411 + 41 0.166 + 42 0.0118 + 44 0.00236 + 45 0.00157 + 46 0.00472 + 47 0.00157 + + 62 57 9 0 + 0 0.0351 + 4 0.0175 + 7 0.175 + 21 0.0175 + 31 0.0175 + 37 0.0175 + 40 0.368 + 41 0.316 + 42 0.0351 + + 69 56 6 0 + 2 0.0536 + 7 0.179 + 26 0.0536 + 40 0.5 + 41 0.196 + 44 0.0179 + + 74 2 2 0 + 31 0.5 + 40 0.5 + + 57 37637 38 30 + 0 0.0109 + 2 0.0336 + 3 0.00109 + 4 0.00717 + 5 5.31e-05 + 7 0.128 + 8 0.00438 + 9 2.66e-05 + 10 0.000106 + 12 0.00476 + 13 0.00404 + 14 0.000372 + 15 0.00215 + 17 2.66e-05 + 19 0.000797 + 20 0.000239 + 21 0.0102 + 22 0.000771 + 23 5.31e-05 + 26 0.0253 + 28 0.000345 + 29 0.00361 + 30 0.00321 + 31 0.00138 + 32 0.00149 + 33 0.00159 + 34 0.000824 + 35 0.000159 + 37 0.00343 + 39 7.97e-05 + 40 0.523 + 41 0.199 + 42 0.0209 + 43 0.00186 + 44 0.00104 + 45 0.000824 + 46 0.00178 + 47 0.00133 + + 0 1140 30 0 + 0 0.0105 + 2 0.0184 + 3 0.00175 + 4 0.0123 + 7 0.113 + 8 0.0114 + 10 0.000877 + 12 0.00351 + 13 0.00614 + 15 0.00175 + 19 0.00175 + 21 0.0281 + 22 0.000877 + 26 0.0211 + 28 0.000877 + 29 0.00175 + 30 0.00439 + 31 0.0123 + 32 0.00175 + 33 0.00351 + 34 0.000877 + 35 0.00175 + 37 0.00614 + 39 0.000877 + 40 0.482 + 41 0.218 + 42 0.0281 + 44 0.00351 + 45 0.00175 + 46 0.000877 + + 8 57 8 0 + 0 0.0175 + 2 0.0702 + 7 0.123 + 29 0.0175 + 37 0.0351 + 40 0.491 + 41 0.228 + 42 0.0175 + + 12 9 4 0 + 0 0.111 + 28 0.333 + 31 0.222 + 40 0.333 + + 13 73 10 0 + 0 0.0137 + 2 0.0548 + 7 0.164 + 8 0.0137 + 26 0.0274 + 29 0.0137 + 33 0.0274 + 40 0.534 + 41 0.137 + 42 0.0137 + + 14 26 7 0 + 0 0.0385 + 2 0.0385 + 7 0.192 + 8 0.0385 + 40 0.5 + 41 0.154 + 42 0.0385 + + 15 6 4 0 + 2 0.167 + 7 0.167 + 40 0.5 + 46 0.167 + + 21 68 10 0 + 0 0.0147 + 4 0.0147 + 7 0.0735 + 21 0.0735 + 28 0.0441 + 32 0.0147 + 40 0.471 + 41 0.221 + 42 0.0588 + 46 0.0147 + + 28 2496 32 0 + 0 0.012 + 2 0.0341 + 3 0.0028 + 4 0.018 + 7 0.156 + 8 0.00401 + 10 0.000401 + 12 0.00361 + 13 0.00561 + 14 0.0016 + 15 0.0028 + 19 0.000801 + 20 0.0016 + 21 0.0148 + 26 0.0268 + 29 0.002 + 30 0.002 + 31 0.000401 + 32 0.0016 + 33 0.0012 + 34 0.000401 + 35 0.000401 + 37 0.00801 + 39 0.000401 + 40 0.508 + 41 0.163 + 42 0.018 + 43 0.000801 + 44 0.0016 + 45 0.002 + 46 0.002 + 47 0.002 + + 29 2493 30 0 + 0 0.00682 + 2 0.0253 + 3 0.00201 + 4 0.014 + 7 0.271 + 8 0.0132 + 10 0.000401 + 12 0.00281 + 13 0.01 + 14 0.0012 + 15 0.00722 + 19 0.00361 + 21 0.016 + 22 0.000802 + 23 0.000401 + 26 0.0401 + 29 0.00321 + 30 0.00361 + 31 0.000401 + 32 0.0012 + 34 0.000401 + 37 0.00441 + 39 0.000401 + 40 0.361 + 41 0.192 + 42 0.0136 + 43 0.000802 + 44 0.0012 + 45 0.0012 + 46 0.0016 + + 30 1791 27 0 + 0 0.029 + 2 0.0374 + 3 0.00112 + 4 0.0207 + 7 0.13 + 8 0.00503 + 12 0.014 + 13 0.00838 + 15 0.00391 + 19 0.00168 + 20 0.000558 + 21 0.0151 + 22 0.00279 + 26 0.0352 + 28 0.000558 + 29 0.00335 + 30 0.00391 + 31 0.00168 + 32 0.00447 + 33 0.00558 + 37 0.00112 + 40 0.419 + 41 0.229 + 42 0.0218 + 44 0.00112 + 46 0.00168 + 47 0.00168 + + 31 7097 32 0 + 0 0.0194 + 2 0.0327 + 3 0.000986 + 4 0.00592 + 7 0.131 + 8 0.00535 + 10 0.000141 + 12 0.0069 + 13 0.0038 + 14 0.000564 + 15 0.00268 + 19 0.000423 + 21 0.00972 + 22 0.00127 + 26 0.034 + 28 0.000423 + 29 0.00986 + 30 0.00211 + 31 0.00211 + 32 0.00352 + 33 0.00352 + 34 0.00141 + 35 0.000282 + 37 0.00211 + 40 0.477 + 41 0.215 + 42 0.0201 + 43 0.00366 + 44 0.00113 + 45 0.000705 + 46 0.00155 + 47 0.00127 + + 32 565 24 0 + 0 0.0159 + 2 0.0425 + 3 0.00177 + 4 0.0106 + 7 0.113 + 8 0.00354 + 12 0.0124 + 13 0.00177 + 14 0.00177 + 15 0.00177 + 19 0.00354 + 21 0.0283 + 23 0.00177 + 26 0.023 + 29 0.00531 + 30 0.00354 + 31 0.00177 + 32 0.00177 + 37 0.00708 + 40 0.487 + 41 0.196 + 42 0.0301 + 43 0.00354 + 46 0.00177 + + 33 905 26 0 + 0 0.00663 + 2 0.0365 + 4 0.0133 + 5 0.0011 + 7 0.105 + 8 0.0011 + 9 0.0011 + 12 0.00552 + 13 0.00442 + 14 0.0011 + 15 0.00221 + 19 0.0011 + 20 0.0011 + 21 0.00884 + 26 0.0177 + 29 0.00221 + 30 0.00442 + 31 0.00331 + 37 0.00552 + 40 0.543 + 41 0.19 + 42 0.032 + 43 0.00331 + 44 0.00221 + 46 0.00331 + 47 0.00442 + + 41 1622 14 0 + 2 0.00185 + 7 0.0333 + 8 0.00123 + 13 0.00185 + 15 0.000617 + 19 0.000617 + 21 0.00185 + 26 0.00308 + 40 0.763 + 41 0.179 + 42 0.00863 + 43 0.000617 + 44 0.000617 + 47 0.00308 + + 42 61 6 0 + 4 0.0328 + 21 0.0164 + 40 0.721 + 41 0.082 + 42 0.131 + 46 0.0164 + + 43 6 4 0 + 0 0.167 + 40 0.5 + 41 0.167 + 42 0.167 + + 44 8 1 0 + 43 1 + + 45 65 9 0 + 7 0.0769 + 21 0.0154 + 26 0.0308 + 29 0.0154 + 31 0.0154 + 40 0.569 + 41 0.154 + 42 0.0154 + 46 0.108 + + 46 184 13 0 + 2 0.038 + 4 0.0109 + 7 0.0435 + 13 0.00543 + 21 0.00543 + 26 0.00543 + 30 0.00543 + 33 0.00543 + 40 0.543 + 41 0.304 + 42 0.0109 + 44 0.00543 + 45 0.0163 + + 47 27 4 0 + 0 0.037 + 40 0.815 + 41 0.111 + 42 0.037 + + 48 712 17 0 + 0 0.0014 + 2 0.0435 + 4 0.00281 + 7 0.0955 + 12 0.00421 + 13 0.00281 + 21 0.00843 + 26 0.00983 + 30 0.0014 + 31 0.00281 + 37 0.0014 + 40 0.552 + 41 0.256 + 42 0.0126 + 44 0.0014 + 46 0.00281 + 47 0.0014 + + 49 1600 26 0 + 0 0.00938 + 2 0.0425 + 4 0.00313 + 5 0.000625 + 7 0.109 + 8 0.00187 + 12 0.0025 + 13 0.005 + 15 0.00187 + 20 0.000625 + 21 0.01 + 26 0.0244 + 29 0.000625 + 30 0.0025 + 31 0.000625 + 32 0.000625 + 33 0.00125 + 37 0.00438 + 40 0.514 + 41 0.233 + 42 0.0269 + 43 0.00125 + 44 0.000625 + 45 0.000625 + 46 0.00187 + 47 0.00125 + + 55 11225 30 0 + 0 0.00775 + 2 0.0394 + 3 0.00098 + 4 0.00383 + 7 0.139 + 8 0.00276 + 12 0.00454 + 13 0.00249 + 15 0.00107 + 19 0.000356 + 21 0.00775 + 22 0.000713 + 26 0.0247 + 28 0.000178 + 29 0.00205 + 30 0.0049 + 31 0.000356 + 32 0.000535 + 33 0.000802 + 34 0.00125 + 35 8.91e-05 + 37 0.00365 + 40 0.533 + 41 0.192 + 42 0.0211 + 43 0.00125 + 44 0.000624 + 45 0.000713 + 46 0.00151 + 47 0.00134 + + 57 4244 30 0 + 0 0.00683 + 2 0.028 + 3 0.000943 + 4 0.00259 + 7 0.0738 + 8 0.00448 + 12 0.00212 + 13 0.00259 + 14 0.000236 + 15 0.00212 + 19 0.000707 + 20 0.000236 + 21 0.00448 + 22 0.000943 + 26 0.0179 + 29 0.00283 + 30 0.00259 + 31 0.000707 + 32 0.00118 + 33 0.000236 + 34 0.000943 + 37 0.00283 + 40 0.621 + 41 0.192 + 42 0.0229 + 43 0.00189 + 44 0.000707 + 45 0.000236 + 46 0.000943 + 47 0.00141 + + 58 46 6 0 + 2 0.0652 + 7 0.0217 + 40 0.804 + 41 0.0435 + 42 0.0435 + 44 0.0217 + + 59 626 24 0 + 0 0.00479 + 2 0.0399 + 3 0.00319 + 4 0.0208 + 7 0.128 + 8 0.00319 + 12 0.00799 + 13 0.00479 + 17 0.0016 + 20 0.0016 + 21 0.024 + 26 0.0272 + 29 0.0016 + 30 0.00319 + 31 0.0016 + 33 0.00319 + 37 0.0016 + 40 0.494 + 41 0.193 + 42 0.024 + 43 0.0016 + 44 0.0016 + 45 0.00479 + 46 0.00319 + + 62 377 12 0 + 0 0.00265 + 2 0.0796 + 7 0.0531 + 12 0.00265 + 13 0.00796 + 21 0.00265 + 26 0.00531 + 33 0.00265 + 40 0.637 + 41 0.191 + 42 0.0133 + 46 0.00265 + + 64 28 5 0 + 0 0.0357 + 26 0.0357 + 40 0.714 + 41 0.143 + 42 0.0714 + + 67 1 1 0 + 43 1 + + 69 45 7 0 + 0 0.0222 + 2 0.0222 + 26 0.0222 + 37 0.0222 + 40 0.756 + 41 0.0889 + 42 0.0667 + + 58 317 27 20 + 0 0.0252 + 1 0.00315 + 2 0.0631 + 4 0.0599 + 7 0.271 + 8 0.0126 + 9 0.00315 + 12 0.0126 + 13 0.0158 + 15 0.0158 + 19 0.0158 + 20 0.00631 + 21 0.041 + 26 0.0315 + 28 0.0315 + 29 0.0126 + 30 0.0284 + 31 0.0158 + 32 0.00315 + 33 0.00315 + 35 0.00315 + 37 0.0126 + 40 0.202 + 41 0.0631 + 42 0.00631 + 45 0.0379 + 47 0.00315 + + 0 16 10 0 + 0 0.0625 + 1 0.0625 + 4 0.188 + 7 0.0625 + 9 0.0625 + 13 0.0625 + 29 0.0625 + 31 0.0625 + 40 0.25 + 45 0.125 + + 2 10 7 0 + 0 0.2 + 21 0.1 + 28 0.3 + 29 0.1 + 30 0.1 + 32 0.1 + 45 0.1 + + 12 3 1 0 + 28 1 + + 13 3 3 0 + 7 0.333 + 8 0.333 + 45 0.333 + + 21 3 3 0 + 4 0.333 + 21 0.333 + 28 0.333 + + 28 13 7 0 + 0 0.0769 + 2 0.0769 + 4 0.308 + 7 0.231 + 13 0.154 + 21 0.0769 + 40 0.0769 + + 29 9 4 0 + 0 0.111 + 4 0.111 + 7 0.556 + 26 0.222 + + 30 3 2 0 + 4 0.667 + 40 0.333 + + 31 18 8 0 + 7 0.556 + 15 0.0556 + 20 0.0556 + 21 0.0556 + 30 0.0556 + 37 0.0556 + 40 0.0556 + 41 0.111 + + 32 9 6 0 + 2 0.111 + 4 0.222 + 7 0.222 + 8 0.111 + 21 0.222 + 45 0.111 + + 33 9 7 0 + 4 0.111 + 7 0.333 + 8 0.111 + 13 0.111 + 26 0.111 + 30 0.111 + 40 0.111 + + 41 15 3 0 + 40 0.733 + 41 0.133 + 42 0.133 + + 46 7 4 0 + 2 0.143 + 35 0.143 + 40 0.571 + 41 0.143 + + 48 19 8 0 + 2 0.0526 + 4 0.0526 + 7 0.263 + 12 0.158 + 37 0.0526 + 40 0.211 + 41 0.158 + 45 0.0526 + + 49 14 8 0 + 2 0.0714 + 7 0.357 + 12 0.0714 + 28 0.0714 + 37 0.0714 + 40 0.214 + 41 0.0714 + 45 0.0714 + + 55 63 13 0 + 0 0.0317 + 2 0.0794 + 4 0.0159 + 7 0.365 + 19 0.0159 + 21 0.0317 + 26 0.0794 + 30 0.0317 + 31 0.0159 + 40 0.19 + 41 0.0794 + 45 0.0476 + 47 0.0159 + + 57 50 12 0 + 2 0.08 + 4 0.02 + 7 0.3 + 15 0.02 + 19 0.06 + 29 0.02 + 30 0.06 + 31 0.06 + 37 0.02 + 40 0.26 + 41 0.08 + 45 0.02 + + 62 11 6 0 + 7 0.455 + 15 0.0909 + 21 0.182 + 26 0.0909 + 40 0.0909 + 45 0.0909 + + 64 4 3 0 + 30 0.25 + 40 0.5 + 41 0.25 + + 69 30 16 0 + 0 0.0333 + 2 0.2 + 4 0.0333 + 7 0.167 + 8 0.0333 + 13 0.0333 + 15 0.0667 + 19 0.0333 + 20 0.0333 + 21 0.0667 + 26 0.0333 + 28 0.0333 + 29 0.0333 + 33 0.0333 + 40 0.133 + 41 0.0333 + + 59 2627 34 12 + 0 0.00152 + 1 0.00114 + 2 0.0152 + 3 0.0175 + 4 0.212 + 7 0.239 + 8 0.0499 + 9 0.00495 + 10 0.00266 + 12 0.000381 + 13 0.0495 + 14 0.0461 + 15 0.0236 + 17 0.00114 + 19 0.000761 + 20 0.0529 + 21 0.0487 + 22 0.00457 + 24 0.00114 + 26 0.0457 + 30 0.0164 + 31 0.0019 + 35 0.00533 + 37 0.00495 + 38 0.000761 + 39 0.00876 + 40 0.0761 + 41 0.0502 + 42 0.00571 + 43 0.000761 + 44 0.000381 + 45 0.00457 + 46 0.00533 + 47 0.000381 + + 0 6 5 0 + 4 0.167 + 7 0.333 + 9 0.167 + 21 0.167 + 26 0.167 + + 8 2 2 0 + 13 0.5 + 26 0.5 + + 13 19 8 0 + 4 0.263 + 7 0.0526 + 8 0.0526 + 13 0.158 + 14 0.211 + 20 0.158 + 21 0.0526 + 40 0.0526 + + 14 7 6 0 + 4 0.286 + 7 0.143 + 8 0.143 + 13 0.143 + 14 0.143 + 20 0.143 + + 15 2 2 0 + 4 0.5 + 47 0.5 + + 28 861 27 0 + 1 0.00232 + 2 0.0105 + 3 0.0186 + 4 0.28 + 7 0.163 + 8 0.065 + 9 0.00581 + 10 0.00348 + 13 0.0674 + 14 0.0569 + 15 0.0267 + 17 0.00232 + 20 0.0767 + 21 0.0465 + 22 0.00116 + 24 0.00116 + 26 0.0279 + 30 0.0267 + 31 0.00116 + 35 0.0105 + 37 0.00813 + 38 0.00116 + 39 0.0105 + 40 0.0511 + 41 0.0267 + 45 0.00581 + 46 0.00348 + + 29 473 25 0 + 0 0.00634 + 2 0.0127 + 3 0.0381 + 4 0.22 + 7 0.271 + 8 0.0338 + 10 0.00211 + 13 0.0359 + 14 0.0486 + 15 0.0296 + 19 0.00423 + 20 0.0507 + 21 0.0381 + 22 0.00634 + 24 0.00211 + 26 0.0592 + 30 0.0148 + 31 0.00211 + 35 0.00211 + 39 0.0169 + 40 0.0592 + 41 0.0359 + 42 0.00423 + 45 0.00423 + 46 0.00211 + + 30 399 24 0 + 2 0.0125 + 3 0.01 + 4 0.236 + 7 0.188 + 8 0.0852 + 9 0.00752 + 10 0.00251 + 13 0.0677 + 14 0.0727 + 15 0.0276 + 20 0.0501 + 21 0.0351 + 22 0.00752 + 26 0.0376 + 30 0.015 + 31 0.00501 + 35 0.00752 + 37 0.00501 + 39 0.00752 + 40 0.0652 + 41 0.0376 + 42 0.01 + 45 0.00251 + 46 0.00501 + + 31 440 26 0 + 0 0.00227 + 2 0.0159 + 3 0.00455 + 4 0.132 + 7 0.398 + 8 0.0205 + 9 0.00682 + 12 0.00227 + 13 0.0341 + 14 0.0136 + 15 0.0227 + 17 0.00227 + 20 0.0318 + 21 0.0591 + 22 0.00682 + 26 0.0545 + 30 0.00227 + 31 0.00227 + 37 0.00227 + 39 0.00682 + 40 0.107 + 41 0.0477 + 42 0.00682 + 43 0.00227 + 45 0.00682 + 46 0.00909 + + 32 110 19 0 + 2 0.0273 + 3 0.0364 + 4 0.164 + 7 0.2 + 8 0.0818 + 9 0.00909 + 10 0.00909 + 13 0.0545 + 14 0.0545 + 15 0.0273 + 20 0.0364 + 21 0.0818 + 22 0.00909 + 26 0.00909 + 30 0.0364 + 38 0.00909 + 40 0.0636 + 41 0.0818 + 46 0.00909 + + 33 146 20 0 + 1 0.00685 + 2 0.00685 + 3 0.0137 + 4 0.199 + 7 0.24 + 8 0.0342 + 10 0.00685 + 13 0.0137 + 14 0.0205 + 15 0.00685 + 20 0.0479 + 21 0.0753 + 26 0.089 + 35 0.00685 + 37 0.00685 + 40 0.089 + 41 0.103 + 42 0.0205 + 45 0.00685 + 46 0.00685 + + 55 159 15 0 + 2 0.0566 + 4 0.0252 + 7 0.289 + 21 0.0503 + 22 0.00629 + 24 0.00629 + 26 0.0818 + 30 0.0126 + 37 0.0126 + 40 0.214 + 41 0.201 + 42 0.0189 + 43 0.00629 + 44 0.00629 + 46 0.0126 + + 62 13537 29 20 + 0 0.00731 + 2 0.0228 + 3 0.000443 + 4 0.0017 + 7 0.044 + 8 0.00185 + 12 0.00362 + 13 0.000517 + 14 0.000369 + 15 0.000813 + 19 0.000591 + 21 0.00451 + 22 0.000295 + 26 0.00399 + 29 0.00118 + 30 0.000886 + 31 0.000369 + 32 0.000739 + 33 0.00111 + 34 0.000369 + 37 0.00207 + 40 0.699 + 41 0.177 + 42 0.0179 + 43 0.000517 + 44 0.000739 + 45 0.000369 + 46 0.0031 + 47 0.00244 + + 0 792 16 0 + 0 0.00758 + 2 0.0177 + 4 0.00379 + 7 0.0366 + 8 0.00253 + 13 0.00126 + 19 0.00126 + 21 0.0114 + 26 0.0265 + 33 0.00253 + 37 0.00253 + 40 0.652 + 41 0.206 + 42 0.0215 + 46 0.00379 + 47 0.00379 + + 1 31 8 0 + 0 0.0645 + 2 0.0323 + 7 0.0645 + 12 0.0968 + 37 0.0323 + 40 0.419 + 41 0.258 + 42 0.0323 + + 12 37 3 0 + 40 0.784 + 41 0.189 + 46 0.027 + + 14 26 3 0 + 2 0.0769 + 40 0.885 + 46 0.0385 + + 28 1599 24 0 + 0 0.0075 + 2 0.0275 + 4 0.0025 + 7 0.0619 + 8 0.00375 + 12 0.00313 + 14 0.00125 + 15 0.00188 + 19 0.00125 + 21 0.00813 + 26 0.00375 + 29 0.00125 + 30 0.000625 + 31 0.000625 + 32 0.00125 + 33 0.0025 + 37 0.005 + 40 0.634 + 41 0.204 + 42 0.0219 + 43 0.00125 + 44 0.00125 + 46 0.00375 + 47 0.000625 + + 29 1679 23 0 + 0 0.00596 + 2 0.0381 + 3 0.00179 + 4 0.00357 + 7 0.0643 + 8 0.00596 + 12 0.00119 + 14 0.000596 + 15 0.00357 + 21 0.00357 + 22 0.00119 + 26 0.00238 + 29 0.00179 + 30 0.00179 + 31 0.000596 + 32 0.000596 + 37 0.00238 + 40 0.671 + 41 0.172 + 42 0.0125 + 44 0.000596 + 46 0.00238 + 47 0.00238 + + 30 1088 23 0 + 0 0.0165 + 2 0.0239 + 3 0.000919 + 4 0.00368 + 7 0.0469 + 8 0.000919 + 12 0.011 + 13 0.000919 + 14 0.000919 + 19 0.000919 + 21 0.00368 + 22 0.000919 + 26 0.00276 + 29 0.0046 + 30 0.000919 + 32 0.000919 + 33 0.00184 + 40 0.626 + 41 0.226 + 42 0.0184 + 45 0.00276 + 46 0.00368 + 47 0.000919 + + 31 2064 26 0 + 0 0.00678 + 2 0.0252 + 3 0.000484 + 4 0.000969 + 7 0.0766 + 8 0.000969 + 12 0.00436 + 14 0.000484 + 15 0.000484 + 19 0.000484 + 21 0.00775 + 22 0.000484 + 26 0.00388 + 29 0.00145 + 30 0.00242 + 31 0.000484 + 32 0.00194 + 33 0.00145 + 34 0.00194 + 37 0.00242 + 40 0.636 + 41 0.195 + 42 0.0233 + 43 0.00145 + 46 0.00145 + 47 0.00194 + + 32 768 19 0 + 0 0.0143 + 2 0.0273 + 4 0.0013 + 7 0.0352 + 12 0.00391 + 13 0.0026 + 19 0.0013 + 21 0.00781 + 26 0.00391 + 29 0.0026 + 30 0.0013 + 32 0.0013 + 34 0.0013 + 40 0.647 + 41 0.224 + 42 0.0156 + 44 0.0026 + 46 0.00391 + 47 0.0026 + + 33 1187 17 0 + 0 0.00758 + 2 0.027 + 7 0.0278 + 12 0.00421 + 13 0.000842 + 19 0.000842 + 21 0.00253 + 26 0.00505 + 30 0.000842 + 33 0.00168 + 37 0.00337 + 40 0.732 + 41 0.152 + 42 0.0236 + 44 0.00168 + 46 0.00337 + 47 0.00505 + + 41 1264 6 0 + 7 0.00158 + 40 0.902 + 41 0.087 + 42 0.00791 + 44 0.000791 + 46 0.000791 + + 42 63 5 0 + 7 0.0159 + 40 0.889 + 41 0.0635 + 42 0.0159 + 46 0.0159 + + 45 324 6 0 + 21 0.00309 + 40 0.873 + 41 0.0741 + 42 0.0216 + 46 0.0216 + 47 0.00617 + + 48 188 11 0 + 2 0.00532 + 4 0.00532 + 7 0.0851 + 21 0.00532 + 26 0.00532 + 31 0.00532 + 37 0.0106 + 40 0.574 + 41 0.293 + 42 0.00532 + 46 0.00532 + + 49 234 8 0 + 0 0.00427 + 2 0.0256 + 7 0.0342 + 12 0.00427 + 40 0.701 + 41 0.192 + 42 0.0342 + 46 0.00427 + + 55 1193 18 0 + 0 0.00922 + 2 0.0277 + 3 0.000838 + 4 0.000838 + 7 0.0285 + 8 0.00168 + 12 0.00503 + 26 0.000838 + 33 0.00168 + 37 0.000838 + 40 0.733 + 41 0.163 + 42 0.0142 + 43 0.00168 + 44 0.00168 + 45 0.000838 + 46 0.00168 + 47 0.00587 + + 57 699 16 0 + 0 0.00572 + 2 0.01 + 4 0.00143 + 7 0.0243 + 8 0.00286 + 12 0.00143 + 13 0.00286 + 15 0.00143 + 21 0.00286 + 29 0.00143 + 31 0.00143 + 32 0.00143 + 40 0.758 + 41 0.162 + 42 0.02 + 47 0.00286 + + 58 17 1 0 + 40 1 + + 59 102 11 0 + 0 0.0098 + 2 0.0196 + 7 0.049 + 12 0.0098 + 19 0.0098 + 26 0.0098 + 37 0.0098 + 40 0.667 + 41 0.196 + 42 0.0098 + 47 0.0098 + + 62 50 4 0 + 2 0.06 + 40 0.76 + 41 0.16 + 45 0.02 + + 64 13660 26 19 + 0 0.00234 + 2 0.0104 + 4 0.00022 + 5 7.32e-05 + 7 0.00425 + 8 0.000146 + 12 0.00102 + 13 0.000293 + 15 7.32e-05 + 19 0.000366 + 21 0.000659 + 26 0.00022 + 29 0.000293 + 30 0.000146 + 31 7.32e-05 + 32 0.000146 + 33 0.00022 + 34 0.000146 + 37 0.000366 + 40 0.842 + 41 0.117 + 42 0.0141 + 43 0.0011 + 44 0.000439 + 46 0.00132 + 47 0.00271 + + 0 384 11 0 + 2 0.0026 + 7 0.00781 + 12 0.0026 + 15 0.0026 + 21 0.0026 + 40 0.76 + 41 0.206 + 42 0.00781 + 43 0.0026 + 46 0.0026 + 47 0.0026 + + 21 14 3 0 + 7 0.0714 + 40 0.571 + 41 0.357 + + 28 886 15 0 + 0 0.00903 + 2 0.0158 + 5 0.00113 + 7 0.0147 + 8 0.00113 + 12 0.00226 + 21 0.00339 + 33 0.00113 + 37 0.00226 + 40 0.699 + 41 0.218 + 42 0.0237 + 43 0.00113 + 46 0.00451 + 47 0.00339 + + 29 4524 17 0 + 0 0.00133 + 2 0.0124 + 4 0.000221 + 7 0.00133 + 8 0.000221 + 13 0.000442 + 19 0.000442 + 21 0.000442 + 29 0.000663 + 30 0.000221 + 37 0.000663 + 40 0.914 + 41 0.0573 + 42 0.00685 + 43 0.000442 + 46 0.000663 + 47 0.00287 + + 30 513 12 0 + 0 0.0039 + 2 0.0117 + 7 0.00975 + 12 0.0039 + 21 0.00195 + 30 0.00195 + 32 0.00195 + 40 0.768 + 41 0.183 + 42 0.00585 + 44 0.0039 + 46 0.0039 + + 31 497 12 0 + 2 0.0121 + 7 0.00402 + 12 0.00201 + 26 0.00201 + 29 0.00201 + 40 0.779 + 41 0.171 + 42 0.0181 + 43 0.00201 + 44 0.00201 + 46 0.00201 + 47 0.00402 + + 32 1197 13 0 + 0 0.00251 + 2 0.0109 + 7 0.00334 + 12 0.00167 + 13 0.000835 + 19 0.000835 + 21 0.000835 + 32 0.000835 + 34 0.000835 + 40 0.785 + 41 0.17 + 42 0.0209 + 47 0.00167 + + 33 1314 12 0 + 0 0.00381 + 2 0.0122 + 7 0.00228 + 19 0.000761 + 31 0.000761 + 40 0.867 + 41 0.0883 + 42 0.0183 + 43 0.000761 + 44 0.000761 + 46 0.00152 + 47 0.00381 + + 41 1017 7 0 + 7 0.000983 + 21 0.000983 + 40 0.887 + 41 0.0895 + 42 0.0167 + 43 0.00295 + 47 0.00197 + + 42 45 4 0 + 40 0.844 + 41 0.0444 + 42 0.0889 + 47 0.0222 + + 44 3 2 0 + 40 0.333 + 43 0.667 + + 48 353 6 0 + 2 0.00567 + 7 0.0085 + 40 0.822 + 41 0.159 + 42 0.00283 + 47 0.00283 + + 49 245 9 0 + 0 0.00408 + 2 0.0163 + 7 0.00408 + 19 0.00408 + 26 0.00408 + 33 0.00408 + 40 0.784 + 41 0.167 + 42 0.0122 + + 55 1264 13 0 + 0 0.00158 + 2 0.00791 + 4 0.00158 + 7 0.00949 + 12 0.00316 + 13 0.000791 + 26 0.000791 + 40 0.803 + 41 0.147 + 42 0.019 + 44 0.000791 + 46 0.00237 + 47 0.00237 + + 57 868 12 0 + 0 0.00346 + 2 0.0104 + 7 0.00346 + 12 0.0023 + 33 0.00115 + 34 0.00115 + 40 0.829 + 41 0.121 + 42 0.0219 + 43 0.0023 + 46 0.0023 + 47 0.00115 + + 58 60 3 0 + 40 0.95 + 41 0.0333 + 47 0.0167 + + 59 89 5 0 + 0 0.0112 + 2 0.0225 + 40 0.73 + 41 0.191 + 42 0.0449 + + 62 197 7 0 + 7 0.00508 + 40 0.827 + 41 0.142 + 42 0.0102 + 43 0.00508 + 44 0.00508 + 47 0.00508 + + 64 36 4 0 + 40 0.778 + 41 0.139 + 42 0.0556 + 43 0.0278 + + 65 23 3 0 + 40 0.565 + 46 0.261 + 47 0.174 + + 66 5 2 0 + 40 0.6 + 46 0.4 + + 67 16 5 0 + 7 0.0625 + 40 0.375 + 42 0.0625 + 46 0.375 + 47 0.125 + + 68 161 12 4 + 0 0.0124 + 2 0.00621 + 4 0.00621 + 7 0.00621 + 13 0.0124 + 21 0.00621 + 26 0.00621 + 31 0.00621 + 40 0.671 + 41 0.217 + 42 0.0435 + 46 0.00621 + + 4 1 1 0 + 13 1 + + 29 4 3 0 + 7 0.25 + 26 0.25 + 40 0.5 + + 55 15 4 0 + 21 0.0667 + 40 0.733 + 41 0.0667 + 42 0.133 + + 57 1 1 0 + 31 1 + + 69 48590 32 19 + 0 0.00926 + 2 0.0818 + 3 8.23e-05 + 4 0.00134 + 5 6.17e-05 + 7 0.0134 + 8 0.000535 + 12 0.00323 + 13 0.000288 + 14 0.000391 + 15 0.000412 + 19 0.000535 + 20 0.000185 + 21 0.00241 + 22 0.000144 + 26 0.00161 + 28 0.000144 + 29 0.00158 + 30 0.000391 + 31 0.000206 + 32 0.00072 + 33 0.00113 + 34 0.000144 + 37 0.000782 + 40 0.656 + 41 0.198 + 42 0.02 + 43 0.00111 + 44 0.000741 + 45 0.000226 + 46 0.0022 + 47 0.00142 + + 0 14471 30 0 + 0 0.00947 + 2 0.0333 + 4 0.00104 + 5 6.91e-05 + 7 0.00442 + 8 6.91e-05 + 12 0.00228 + 13 0.000138 + 14 0.000346 + 15 0.000276 + 19 0.000691 + 20 6.91e-05 + 21 0.000829 + 22 6.91e-05 + 26 0.00076 + 28 0.000138 + 29 0.00131 + 30 0.000207 + 31 6.91e-05 + 32 0.00111 + 33 0.000967 + 37 0.000276 + 40 0.728 + 41 0.189 + 42 0.0207 + 43 0.00159 + 44 0.000622 + 45 6.91e-05 + 46 0.00111 + 47 0.00117 + + 1 372 15 0 + 0 0.0188 + 2 0.0457 + 7 0.00538 + 12 0.00538 + 15 0.00269 + 21 0.00538 + 26 0.00538 + 31 0.00269 + 32 0.00538 + 37 0.00269 + 40 0.645 + 41 0.228 + 42 0.0161 + 43 0.00538 + 46 0.00538 + + 2 3353 26 0 + 0 0.00328 + 2 0.00746 + 3 0.000298 + 4 0.00537 + 7 0.0197 + 8 0.00298 + 12 0.000895 + 13 0.00119 + 14 0.00209 + 15 0.000596 + 19 0.000298 + 20 0.00179 + 21 0.00358 + 26 0.00388 + 28 0.000895 + 29 0.000298 + 31 0.000298 + 32 0.000298 + 37 0.000298 + 40 0.775 + 41 0.15 + 42 0.0155 + 43 0.000895 + 45 0.000298 + 46 0.00239 + 47 0.000298 + + 4 29 3 0 + 2 0.172 + 40 0.759 + 41 0.069 + + 12 7932 26 0 + 0 0.00693 + 2 0.0241 + 4 0.000504 + 5 0.000126 + 7 0.00403 + 8 0.000504 + 12 0.00277 + 13 0.000126 + 14 0.000378 + 15 0.000252 + 19 0.000252 + 21 0.00063 + 26 0.000378 + 29 0.00126 + 30 0.000252 + 31 0.000126 + 32 0.000504 + 33 0.00151 + 37 0.000126 + 40 0.759 + 41 0.175 + 42 0.0173 + 43 0.00113 + 44 0.000756 + 46 0.000756 + 47 0.00151 + + 15 2 1 0 + 46 1 + + 21 2998 22 0 + 0 0.006 + 2 0.0317 + 4 0.000667 + 7 0.004 + 12 0.00167 + 14 0.000667 + 15 0.000334 + 19 0.001 + 21 0.000334 + 26 0.000334 + 28 0.000334 + 29 0.001 + 32 0.000334 + 33 0.000334 + 37 0.000334 + 40 0.662 + 41 0.255 + 42 0.027 + 43 0.000667 + 45 0.000334 + 46 0.00367 + 47 0.002 + + 26 12919 31 0 + 0 0.016 + 2 0.0296 + 3 0.000232 + 4 0.0017 + 5 7.74e-05 + 7 0.0358 + 8 0.000774 + 12 0.00658 + 13 0.000464 + 14 0.000155 + 15 0.000697 + 19 0.000774 + 21 0.00441 + 22 0.000464 + 26 0.00348 + 28 7.74e-05 + 29 0.00333 + 30 0.000774 + 31 0.000464 + 32 0.000774 + 33 0.00217 + 34 0.00031 + 37 0.00224 + 40 0.666 + 41 0.197 + 42 0.0184 + 43 0.000697 + 44 0.000851 + 45 0.000542 + 46 0.00279 + 47 0.00224 + + 28 80 8 0 + 0 0.0125 + 2 0.0375 + 7 0.0125 + 8 0.0125 + 40 0.712 + 41 0.188 + 42 0.0125 + 46 0.0125 + + 29 67 6 0 + 2 0.0597 + 7 0.0149 + 26 0.0149 + 40 0.597 + 41 0.254 + 42 0.0597 + + 41 356 8 0 + 2 0.419 + 26 0.00281 + 37 0.00281 + 40 0.242 + 41 0.312 + 42 0.0169 + 46 0.00281 + 47 0.00281 + + 42 25 4 0 + 2 0.04 + 40 0.36 + 41 0.12 + 42 0.48 + + 44 2 2 0 + 40 0.5 + 43 0.5 + + 45 144 6 0 + 2 0.0625 + 40 0.618 + 41 0.215 + 42 0.0139 + 46 0.0833 + 47 0.00694 + + 47 3672 10 0 + 2 0.69 + 4 0.000545 + 7 0.000817 + 21 0.00735 + 30 0.00109 + 34 0.000545 + 41 0.27 + 42 0.0248 + 44 0.00218 + 46 0.00245 + + 49 1916 19 0 + 0 0.00678 + 2 0.0339 + 7 0.00365 + 12 0.00365 + 13 0.000522 + 15 0.000522 + 20 0.000522 + 21 0.000522 + 26 0.000522 + 29 0.000522 + 34 0.000522 + 40 0.724 + 41 0.196 + 42 0.0209 + 43 0.00261 + 44 0.00104 + 45 0.000522 + 46 0.00157 + 47 0.00104 + + 50 47 7 0 + 2 0.0426 + 4 0.0426 + 7 0.0213 + 20 0.0213 + 40 0.574 + 41 0.277 + 42 0.0213 + + 57 48 3 0 + 2 0.0208 + 40 0.875 + 41 0.104 + + 58 21 3 0 + 32 0.0476 + 40 0.857 + 41 0.0952 + + 74 23 8 1 + 4 0.0435 + 7 0.13 + 8 0.0435 + 26 0.087 + 28 0.0435 + 40 0.261 + 41 0.0435 + 47 0.348 + + 29 5 4 0 + 4 0.2 + 8 0.2 + 26 0.2 + 40 0.4 + +70 183 17 7 + 0 0.0109 + 2 0.0109 + 4 0.164 + 6 0.00546 + 7 0.0109 + 8 0.317 + 9 0.0328 + 13 0.0874 + 14 0.109 + 15 0.0109 + 19 0.175 + 20 0.0109 + 21 0.0109 + 26 0.0109 + 41 0.0219 + 45 0.00546 + 46 0.00546 + + 8 58 11 0 + 2 0.0345 + 4 0.259 + 7 0.0345 + 8 0.0172 + 9 0.0517 + 13 0.121 + 14 0.172 + 15 0.0172 + 19 0.259 + 20 0.0172 + 41 0.0172 + + 21 2 2 0 + 0 0.5 + 8 0.5 + + 37 56 3 0 + 8 0.946 + 21 0.0357 + 45 0.0179 + + 45 1 1 0 + 6 1 + + 47 59 11 1 + 0 0.0169 + 4 0.254 + 8 0.0169 + 9 0.0508 + 13 0.136 + 14 0.169 + 15 0.0169 + 19 0.271 + 20 0.0169 + 26 0.0169 + 41 0.0339 + + 57 2 2 0 + 26 0.5 + 41 0.5 + + 48 1 1 0 + 46 1 + + 57 2 2 0 + 26 0.5 + 41 0.5 + +71 4205 34 8 + 0 0.0219 + 2 0.00166 + 3 0.00666 + 4 0.263 + 5 0.0109 + 7 0.00951 + 8 0.0533 + 9 0.00143 + 10 0.0019 + 12 0.0133 + 13 0.0604 + 14 0.0818 + 15 0.113 + 16 0.00143 + 17 0.0019 + 19 0.236 + 20 0.0276 + 21 0.0252 + 26 0.0285 + 28 0.000951 + 29 0.000951 + 30 0.0109 + 31 0.00856 + 32 0.000476 + 34 0.000476 + 35 0.000476 + 39 0.000476 + 40 0.00309 + 41 0.0109 + 43 0.000476 + 44 0.000476 + 45 0.00143 + 46 0.000238 + 47 0.000476 + + 7 30 7 0 + 4 0.3 + 8 0.0667 + 13 0.0333 + 14 0.0667 + 15 0.233 + 19 0.2 + 20 0.1 + + 8 23 7 0 + 4 0.217 + 8 0.087 + 13 0.348 + 14 0.13 + 15 0.13 + 19 0.0435 + 40 0.0435 + + 21 45 14 0 + 0 0.0667 + 2 0.0222 + 4 0.289 + 7 0.0222 + 8 0.0222 + 12 0.0222 + 13 0.0222 + 14 0.0444 + 15 0.133 + 19 0.222 + 20 0.0444 + 21 0.0222 + 28 0.0444 + 40 0.0222 + + 37 2029 31 3 + 0 0.0202 + 2 0.00148 + 3 0.0069 + 4 0.259 + 5 0.0113 + 7 0.00936 + 8 0.0591 + 9 0.00148 + 10 0.00197 + 12 0.0128 + 13 0.0586 + 14 0.0808 + 15 0.108 + 16 0.00148 + 17 0.00197 + 19 0.235 + 20 0.0261 + 21 0.036 + 26 0.0291 + 29 0.000986 + 30 0.0113 + 31 0.00887 + 32 0.000493 + 34 0.000493 + 35 0.000493 + 39 0.000493 + 40 0.00246 + 41 0.0113 + 43 0.000493 + 44 0.000493 + 45 0.00148 + + 2 6 2 0 + 4 0.833 + 26 0.167 + + 21 21 9 0 + 0 0.0476 + 4 0.19 + 8 0.19 + 13 0.0952 + 15 0.0476 + 19 0.238 + 20 0.0952 + 21 0.0476 + 31 0.0476 + + 49 6 3 0 + 4 0.167 + 5 0.333 + 19 0.5 + + 40 1 1 0 + 46 1 + + 46 1 1 0 + 47 1 + + 47 2063 33 5 + 0 0.0223 + 2 0.00145 + 3 0.00679 + 4 0.268 + 5 0.0111 + 7 0.00969 + 8 0.048 + 9 0.00145 + 10 0.00194 + 12 0.0136 + 13 0.0606 + 14 0.0834 + 15 0.115 + 16 0.00145 + 17 0.00194 + 19 0.241 + 20 0.0281 + 21 0.015 + 26 0.0291 + 28 0.000969 + 29 0.000969 + 30 0.0111 + 31 0.00873 + 32 0.000485 + 34 0.000485 + 35 0.000485 + 39 0.000485 + 40 0.00291 + 41 0.0111 + 43 0.000485 + 44 0.000485 + 45 0.00145 + 47 0.000485 + + 7 30 7 0 + 4 0.3 + 8 0.0667 + 13 0.0333 + 14 0.0667 + 15 0.233 + 19 0.2 + 20 0.1 + + 8 18 6 0 + 4 0.278 + 8 0.111 + 13 0.222 + 14 0.167 + 15 0.167 + 19 0.0556 + + 21 43 12 0 + 0 0.0698 + 4 0.302 + 7 0.0233 + 8 0.0233 + 12 0.0233 + 13 0.0233 + 14 0.0465 + 15 0.14 + 19 0.233 + 20 0.0465 + 28 0.0465 + 40 0.0233 + + 46 1 1 0 + 47 1 + + 55 4 3 0 + 0 0.5 + 4 0.25 + 12 0.25 + + 55 4 3 0 + 0 0.5 + 4 0.25 + 12 0.25 + +72 15188 37 29 + 0 0.257 + 2 0.000856 + 3 0.00356 + 4 0.0405 + 5 0.000922 + 7 0.0239 + 8 0.0117 + 9 0.000527 + 10 0.000856 + 12 0.0985 + 13 0.0189 + 14 0.0197 + 15 0.0309 + 16 0.000329 + 17 0.000132 + 18 0.000263 + 19 0.0643 + 20 0.00382 + 21 0.0426 + 22 0.000395 + 23 0.000132 + 26 0.00375 + 28 0.00224 + 29 0.155 + 30 0.000329 + 31 0.0023 + 32 0.0744 + 33 0.128 + 34 0.000263 + 39 0.000593 + 40 0.000658 + 41 0.00974 + 42 0.000263 + 43 0.000395 + 44 0.000461 + 45 0.000988 + 46 0.000132 + + 2 8 3 0 + 7 0.125 + 13 0.625 + 14 0.25 + + 3 9 3 0 + 7 0.778 + 8 0.111 + 14 0.111 + + 4 71 11 1 + 0 0.225 + 7 0.211 + 8 0.0282 + 12 0.0986 + 13 0.169 + 15 0.113 + 18 0.0141 + 21 0.0141 + 29 0.0141 + 32 0.0423 + 33 0.0704 + + 35 4 2 0 + 8 0.5 + 13 0.5 + + 7 358 24 0 + 0 0.00559 + 3 0.00279 + 4 0.154 + 7 0.014 + 8 0.0559 + 9 0.00279 + 10 0.00838 + 13 0.0223 + 14 0.0922 + 15 0.19 + 16 0.00279 + 19 0.237 + 20 0.0279 + 21 0.0447 + 22 0.00279 + 23 0.00279 + 28 0.00279 + 29 0.0279 + 30 0.00559 + 31 0.0251 + 32 0.00838 + 33 0.0168 + 41 0.0447 + 45 0.00279 + + 8 76 17 5 + 0 0.0263 + 4 0.0921 + 7 0.0789 + 8 0.0658 + 13 0.329 + 14 0.171 + 15 0.0395 + 17 0.0132 + 19 0.0658 + 20 0.0263 + 29 0.0132 + 31 0.0132 + 40 0.0132 + 41 0.0132 + 42 0.0132 + 45 0.0132 + 46 0.0132 + + 21 1 1 0 + 17 1 + + 23 2 1 0 + 7 1 + + 36 30 6 0 + 8 0.167 + 13 0.467 + 14 0.267 + 31 0.0333 + 41 0.0333 + 45 0.0333 + + 37 25 10 0 + 0 0.08 + 4 0.28 + 7 0.08 + 13 0.04 + 15 0.12 + 19 0.2 + 20 0.08 + 29 0.04 + 40 0.04 + 42 0.04 + + 47 2 1 0 + 7 1 + + 9 3 3 0 + 12 0.333 + 14 0.333 + 15 0.333 + + 10 6 2 0 + 7 0.833 + 13 0.167 + + 13 186 16 9 + 0 0.269 + 2 0.0108 + 4 0.0806 + 7 0.145 + 8 0.0108 + 12 0.0269 + 13 0.0645 + 14 0.0323 + 15 0.0323 + 19 0.0806 + 21 0.0215 + 26 0.0215 + 29 0.0753 + 33 0.086 + 41 0.0376 + 44 0.00538 + + 2 5 4 0 + 0 0.4 + 13 0.2 + 14 0.2 + 29 0.2 + + 4 5 3 0 + 0 0.2 + 7 0.6 + 19 0.2 + + 8 25 13 0 + 0 0.24 + 2 0.04 + 7 0.04 + 13 0.08 + 14 0.04 + 15 0.04 + 19 0.04 + 21 0.12 + 26 0.04 + 29 0.08 + 33 0.12 + 41 0.08 + 44 0.04 + + 13 13 8 0 + 0 0.231 + 7 0.231 + 8 0.0769 + 12 0.0769 + 19 0.154 + 21 0.0769 + 29 0.0769 + 33 0.0769 + + 34 39 13 0 + 0 0.103 + 2 0.0256 + 4 0.256 + 7 0.128 + 12 0.0256 + 13 0.0513 + 14 0.0256 + 15 0.0513 + 19 0.179 + 26 0.0256 + 29 0.0256 + 33 0.0256 + 41 0.0769 + + 35 14 8 0 + 0 0.286 + 4 0.0714 + 7 0.286 + 14 0.0714 + 19 0.0714 + 26 0.0714 + 29 0.0714 + 41 0.0714 + + 36 58 11 0 + 0 0.362 + 7 0.121 + 12 0.0172 + 13 0.121 + 14 0.0345 + 15 0.0172 + 19 0.0345 + 26 0.0172 + 29 0.103 + 33 0.155 + 41 0.0172 + + 70 7 4 0 + 0 0.286 + 4 0.286 + 8 0.143 + 15 0.286 + + 71 2 1 0 + 4 1 + + 14 114 16 6 + 0 0.307 + 2 0.0439 + 4 0.0263 + 7 0.0526 + 8 0.0175 + 12 0.0439 + 13 0.0175 + 15 0.00877 + 19 0.0965 + 21 0.0175 + 26 0.0351 + 29 0.105 + 32 0.202 + 34 0.00877 + 41 0.00877 + 45 0.00877 + + 8 15 8 0 + 0 0.2 + 12 0.0667 + 19 0.0667 + 21 0.0667 + 29 0.2 + 32 0.267 + 34 0.0667 + 45 0.0667 + + 15 2 2 0 + 4 0.5 + 29 0.5 + + 34 17 9 0 + 0 0.294 + 4 0.0588 + 7 0.176 + 12 0.0588 + 15 0.0588 + 19 0.0588 + 26 0.0588 + 29 0.0588 + 32 0.176 + + 35 5 4 0 + 0 0.2 + 4 0.2 + 12 0.2 + 26 0.4 + + 36 48 8 0 + 0 0.354 + 2 0.104 + 13 0.0417 + 19 0.0833 + 21 0.0208 + 29 0.0833 + 32 0.292 + 41 0.0208 + + 71 3 3 0 + 8 0.333 + 12 0.333 + 19 0.333 + + 15 18 6 0 + 7 0.0556 + 13 0.278 + 14 0.0556 + 15 0.5 + 16 0.0556 + 33 0.0556 + + 21 12 6 0 + 0 0.167 + 4 0.0833 + 7 0.333 + 8 0.0833 + 12 0.167 + 19 0.167 + + 31 2 2 0 + 13 0.5 + 14 0.5 + + 32 1 1 0 + 28 1 + + 34 4214 29 1 + 0 0.274 + 2 0.000475 + 3 0.00522 + 4 0.0282 + 5 0.00142 + 7 0.00878 + 8 0.00807 + 9 0.000475 + 10 0.000237 + 12 0.133 + 13 0.0157 + 14 0.0164 + 15 0.0216 + 16 0.000237 + 18 0.000237 + 19 0.0356 + 20 0.00119 + 21 0.046 + 26 0.000949 + 28 0.00119 + 29 0.159 + 31 0.000949 + 32 0.0729 + 33 0.161 + 39 0.000712 + 41 0.00617 + 42 0.000237 + 44 0.000237 + 45 0.000475 + + 21 2 1 0 + 13 1 + + 35 2343 27 2 + 0 0.268 + 3 0.00128 + 4 0.0448 + 7 0.0128 + 8 0.00512 + 9 0.000427 + 10 0.000854 + 12 0.0657 + 13 0.0111 + 14 0.00896 + 15 0.0188 + 19 0.0905 + 20 0.00512 + 21 0.0448 + 22 0.000854 + 26 0.0064 + 28 0.00427 + 29 0.193 + 31 0.000854 + 32 0.0952 + 33 0.111 + 34 0.000427 + 40 0.000854 + 41 0.00683 + 43 0.00128 + 44 0.000427 + 45 0.000854 + + 21 5 4 0 + 19 0.4 + 20 0.2 + 26 0.2 + 33 0.2 + + 49 1 1 0 + 28 1 + + 36 159 12 0 + 3 0.0126 + 8 0.201 + 9 0.00629 + 10 0.00629 + 13 0.371 + 14 0.302 + 15 0.0566 + 21 0.00629 + 30 0.00629 + 31 0.00629 + 39 0.0189 + 45 0.00629 + + 41 6 6 0 + 0 0.167 + 12 0.167 + 15 0.167 + 31 0.167 + 45 0.167 + 46 0.167 + + 45 2 1 0 + 8 1 + + 47 7352 36 19 + 0 0.266 + 2 0.000408 + 3 0.00354 + 4 0.0415 + 5 0.000952 + 7 0.0181 + 8 0.00871 + 9 0.000408 + 10 0.000816 + 12 0.102 + 13 0.00789 + 14 0.0139 + 15 0.0305 + 16 0.000272 + 17 0.000136 + 18 0.000272 + 19 0.0664 + 20 0.00394 + 21 0.0435 + 22 0.000408 + 23 0.000136 + 26 0.00367 + 28 0.00231 + 29 0.161 + 30 0.000272 + 31 0.00218 + 32 0.0768 + 33 0.132 + 34 0.000272 + 39 0.000408 + 40 0.00068 + 41 0.00952 + 42 0.000272 + 43 0.000408 + 44 0.000408 + 45 0.000816 + + 3 5 1 0 + 7 1 + + 4 61 10 0 + 0 0.262 + 7 0.148 + 12 0.115 + 13 0.164 + 15 0.131 + 18 0.0164 + 21 0.0164 + 29 0.0164 + 32 0.0492 + 33 0.082 + + 7 358 24 0 + 0 0.00559 + 3 0.00279 + 4 0.154 + 7 0.014 + 8 0.0559 + 9 0.00279 + 10 0.00838 + 13 0.0223 + 14 0.0922 + 15 0.19 + 16 0.00279 + 19 0.237 + 20 0.0279 + 21 0.0447 + 22 0.00279 + 23 0.00279 + 28 0.00279 + 29 0.0279 + 30 0.00559 + 31 0.0251 + 32 0.00838 + 33 0.0168 + 41 0.0447 + 45 0.00279 + + 8 31 12 0 + 0 0.0645 + 4 0.226 + 7 0.194 + 13 0.0323 + 15 0.0968 + 17 0.0323 + 19 0.161 + 20 0.0645 + 29 0.0323 + 40 0.0323 + 41 0.0323 + 42 0.0323 + + 9 2 2 0 + 12 0.5 + 15 0.5 + + 10 4 1 0 + 7 1 + + 13 163 13 0 + 0 0.307 + 4 0.092 + 7 0.147 + 8 0.0123 + 12 0.0307 + 15 0.0368 + 19 0.092 + 21 0.0245 + 26 0.0245 + 29 0.0859 + 33 0.0982 + 41 0.0429 + 44 0.00613 + + 14 107 14 0 + 0 0.327 + 4 0.028 + 7 0.0561 + 8 0.0187 + 12 0.0467 + 15 0.00935 + 19 0.103 + 21 0.0187 + 26 0.0374 + 29 0.112 + 32 0.215 + 34 0.00935 + 41 0.00935 + 45 0.00935 + + 15 2 2 0 + 7 0.5 + 33 0.5 + + 21 11 5 0 + 0 0.182 + 4 0.0909 + 7 0.364 + 12 0.182 + 19 0.182 + + 32 1 1 0 + 28 1 + + 34 4153 29 0 + 0 0.278 + 2 0.000482 + 3 0.0053 + 4 0.0287 + 5 0.00144 + 7 0.00891 + 8 0.00722 + 9 0.000482 + 10 0.000241 + 12 0.135 + 13 0.0065 + 14 0.0125 + 15 0.0219 + 16 0.000241 + 18 0.000241 + 19 0.0361 + 20 0.0012 + 21 0.0467 + 26 0.000963 + 28 0.0012 + 29 0.161 + 31 0.000963 + 32 0.0739 + 33 0.164 + 39 0.000722 + 41 0.00602 + 42 0.000241 + 44 0.000241 + 45 0.000482 + + 35 2312 26 0 + 0 0.271 + 3 0.0013 + 4 0.0433 + 7 0.013 + 8 0.00433 + 10 0.000865 + 12 0.0666 + 13 0.00519 + 14 0.00692 + 15 0.019 + 19 0.0917 + 20 0.00519 + 21 0.0437 + 22 0.000865 + 26 0.00649 + 28 0.00433 + 29 0.196 + 31 0.000865 + 32 0.0965 + 33 0.112 + 34 0.000433 + 40 0.000865 + 41 0.00692 + 43 0.0013 + 44 0.000433 + 45 0.000865 + + 49 2 2 0 + 15 0.5 + 19 0.5 + + 55 7 5 0 + 0 0.143 + 21 0.143 + 29 0.143 + 32 0.286 + 41 0.286 + + 57 59 14 0 + 0 0.407 + 4 0.0678 + 5 0.0169 + 12 0.0847 + 14 0.0169 + 15 0.0169 + 19 0.0508 + 21 0.0169 + 29 0.186 + 31 0.0169 + 32 0.0169 + 33 0.0508 + 40 0.0169 + 41 0.0339 + + 60 2 1 0 + 7 1 + + 62 1 1 0 + 40 1 + + 73 62 7 0 + 0 0.581 + 2 0.0161 + 12 0.129 + 19 0.0323 + 29 0.161 + 32 0.0484 + 33 0.0323 + + 48 4 2 0 + 13 0.75 + 19 0.25 + + 49 2 2 0 + 15 0.5 + 19 0.5 + + 55 28 8 4 + 0 0.0357 + 7 0.607 + 13 0.0357 + 21 0.0357 + 26 0.0357 + 29 0.0357 + 32 0.0714 + 41 0.143 + + 36 4 3 0 + 13 0.25 + 21 0.25 + 32 0.5 + + 41 3 1 0 + 41 1 + + 47 18 2 0 + 7 0.944 + 26 0.0556 + + 72 2 2 0 + 0 0.5 + 29 0.5 + + 57 60 15 1 + 0 0.4 + 4 0.0667 + 5 0.0167 + 7 0.0167 + 12 0.0833 + 14 0.0167 + 15 0.0167 + 19 0.05 + 21 0.0167 + 29 0.183 + 31 0.0167 + 32 0.0167 + 33 0.05 + 40 0.0167 + 41 0.0333 + + 55 18 6 0 + 0 0.444 + 4 0.0556 + 5 0.0556 + 12 0.111 + 21 0.0556 + 29 0.278 + + 58 4 4 0 + 0 0.25 + 4 0.25 + 13 0.25 + 19 0.25 + + 60 2 1 0 + 7 1 + + 62 1 1 0 + 40 1 + + 69 1 1 0 + 41 1 + + 72 78 8 0 + 7 0.846 + 8 0.0128 + 15 0.0128 + 19 0.0128 + 21 0.0256 + 26 0.0256 + 41 0.0513 + 44 0.0128 + + 73 62 7 0 + 0 0.581 + 2 0.0161 + 12 0.129 + 19 0.0323 + 29 0.161 + 32 0.0484 + 33 0.0323 + +73 1173 26 5 + 0 0.0682 + 2 0.00171 + 3 0.0358 + 4 0.137 + 5 0.0102 + 8 0.0171 + 12 0.0153 + 13 0.0341 + 14 0.0614 + 15 0.087 + 16 0.00171 + 19 0.14 + 20 0.00682 + 21 0.00171 + 26 0.00853 + 29 0.0171 + 32 0.00682 + 33 0.00341 + 34 0.299 + 35 0.0315 + 36 0.000853 + 37 0.000853 + 39 0.00512 + 40 0.00341 + 41 0.00341 + 43 0.00171 + + 7 373 5 0 + 4 0.00268 + 34 0.903 + 35 0.0885 + 36 0.00268 + 37 0.00268 + + 26 18 2 0 + 34 0.778 + 35 0.222 + + 47 391 22 1 + 0 0.102 + 2 0.00256 + 3 0.0537 + 4 0.205 + 5 0.0153 + 8 0.0256 + 12 0.023 + 13 0.0512 + 14 0.0921 + 15 0.13 + 16 0.00256 + 19 0.21 + 20 0.0102 + 21 0.00256 + 26 0.0128 + 29 0.0256 + 32 0.0102 + 33 0.00512 + 39 0.00767 + 40 0.00512 + 41 0.00512 + 43 0.00256 + + 64 1 1 0 + 41 1 + + 64 1 1 0 + 41 1 + + 72 389 22 1 + 0 0.1 + 2 0.00257 + 3 0.054 + 4 0.206 + 5 0.0154 + 8 0.0257 + 12 0.0231 + 13 0.0514 + 14 0.0925 + 15 0.131 + 16 0.00257 + 19 0.211 + 20 0.0103 + 21 0.00257 + 26 0.0129 + 29 0.0257 + 32 0.0103 + 33 0.00514 + 39 0.00771 + 40 0.00514 + 41 0.00257 + 43 0.00257 + + 26 18 8 0 + 4 0.389 + 13 0.0556 + 14 0.0556 + 15 0.0556 + 19 0.278 + 21 0.0556 + 40 0.0556 + 43 0.0556 + +74 426 24 23 + 0 0.00939 + 4 0.0986 + 7 0.0657 + 8 0.0188 + 10 0.00469 + 13 0.0329 + 14 0.0164 + 15 0.00939 + 19 0.0775 + 20 0.0164 + 21 0.0164 + 22 0.00939 + 26 0.0164 + 28 0.00469 + 31 0.00939 + 33 0.0141 + 34 0.00235 + 35 0.00469 + 40 0.124 + 41 0.0516 + 42 0.12 + 43 0.00469 + 46 0.00939 + 47 0.263 + + 2 4 4 0 + 7 0.25 + 14 0.25 + 19 0.25 + 26 0.25 + + 4 8 4 0 + 7 0.125 + 10 0.125 + 22 0.5 + 47 0.25 + + 6 2 2 0 + 8 0.5 + 40 0.5 + + 7 9 5 0 + 4 0.111 + 7 0.222 + 8 0.111 + 35 0.111 + 47 0.444 + + 9 23 6 0 + 4 0.348 + 7 0.0435 + 13 0.13 + 14 0.13 + 19 0.261 + 20 0.087 + + 12 1 1 0 + 28 1 + + 13 4 4 0 + 0 0.25 + 4 0.25 + 7 0.25 + 41 0.25 + + 14 2 2 0 + 8 0.5 + 40 0.5 + + 15 4 3 0 + 26 0.25 + 40 0.5 + 43 0.25 + + 21 3 3 0 + 20 0.333 + 40 0.333 + 41 0.333 + + 22 10 2 0 + 4 0.3 + 19 0.7 + + 25 39 9 0 + 7 0.0513 + 8 0.0256 + 13 0.0769 + 15 0.0256 + 21 0.0513 + 31 0.0256 + 33 0.0769 + 42 0.538 + 47 0.128 + + 26 5 2 0 + 26 0.4 + 47 0.6 + + 35 2 1 0 + 7 1 + + 40 23 2 0 + 46 0.087 + 47 0.913 + + 41 4 2 0 + 4 0.75 + 7 0.25 + + 42 9 5 0 + 7 0.444 + 13 0.111 + 21 0.111 + 31 0.111 + 47 0.222 + + 47 174 22 17 + 0 0.0115 + 4 0.092 + 7 0.0517 + 8 0.0172 + 10 0.00575 + 13 0.0345 + 14 0.0172 + 15 0.00575 + 19 0.092 + 20 0.0172 + 21 0.0115 + 26 0.0172 + 28 0.00575 + 31 0.00575 + 33 0.0172 + 35 0.00575 + 40 0.0862 + 41 0.0517 + 42 0.121 + 43 0.00575 + 46 0.00575 + 47 0.322 + + 4 4 3 0 + 7 0.25 + 10 0.25 + 47 0.5 + + 7 8 4 0 + 7 0.25 + 8 0.125 + 35 0.125 + 47 0.5 + + 9 22 5 0 + 4 0.364 + 13 0.136 + 14 0.136 + 19 0.273 + 20 0.0909 + + 12 1 1 0 + 28 1 + + 13 4 4 0 + 0 0.25 + 4 0.25 + 7 0.25 + 41 0.25 + + 14 2 2 0 + 8 0.5 + 40 0.5 + + 15 3 3 0 + 26 0.333 + 40 0.333 + 43 0.333 + + 21 3 3 0 + 20 0.333 + 40 0.333 + 41 0.333 + + 22 10 2 0 + 4 0.3 + 19 0.7 + + 25 39 9 0 + 7 0.0513 + 8 0.0256 + 13 0.0769 + 15 0.0256 + 21 0.0513 + 31 0.0256 + 33 0.0769 + 42 0.538 + 47 0.128 + + 26 5 2 0 + 26 0.4 + 47 0.6 + + 35 2 1 0 + 7 1 + + 40 21 1 0 + 47 1 + + 48 5 3 0 + 4 0.4 + 19 0.4 + 47 0.2 + + 55 19 5 0 + 4 0.0526 + 7 0.0526 + 40 0.368 + 41 0.316 + 47 0.211 + + 57 10 3 0 + 40 0.2 + 46 0.1 + 47 0.7 + + 69 1 1 0 + 0 1 + + 48 6 4 0 + 4 0.333 + 19 0.333 + 40 0.167 + 47 0.167 + + 55 33 8 0 + 4 0.0303 + 7 0.0606 + 15 0.0303 + 34 0.0303 + 40 0.485 + 41 0.212 + 42 0.0303 + 47 0.121 + + 57 15 4 0 + 40 0.333 + 42 0.133 + 46 0.0667 + 47 0.467 + + 69 4 2 0 + 0 0.25 + 40 0.75 + + 74 26 11 1 + 4 0.231 + 7 0.0769 + 8 0.0385 + 13 0.0385 + 15 0.0385 + 20 0.0385 + 21 0.0769 + 31 0.0385 + 40 0.0769 + 41 0.115 + 42 0.231 + + 41 6 4 0 + 4 0.333 + 13 0.167 + 20 0.167 + 40 0.333 + diff --git a/samples/G-code/square.g b/samples/G-code/square.g new file mode 100644 index 00000000..b0fa2630 --- /dev/null +++ b/samples/G-code/square.g @@ -0,0 +1,13 @@ +G28 X0 Y0 +G1 X55 Y5 F2000 +G1 Y180 +G1 X180 +G1 Y5 +G1 X55 +G1 Y180 +G1 X180 +G1 Y5 +G1 X55 +M0 + + From f38e15790e80a72c9a3f35457a2bd65fd891b8b1 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Mon, 15 Sep 2014 15:01:46 +0200 Subject: [PATCH 252/268] Update samples.json --- lib/linguist/samples.json | 74 +++++++++++++++++++++++++++++++++++++-- 1 file changed, 71 insertions(+), 3 deletions(-) diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index 559ef894..c076f9b9 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -181,6 +181,9 @@ "Frege": [ ".fr" ], + "G-code": [ + ".g" + ], "GAMS": [ ".gms" ], @@ -854,8 +857,8 @@ "exception.zep.php" ] }, - "tokens_total": 659559, - "languages_total": 908, + "tokens_total": 659991, + "languages_total": 912, "tokens": { "ABAP": { "*/**": 1, @@ -22836,6 +22839,69 @@ "newContentPane.setOpaque": 1, "frame.setContentPane": 1 }, + "G-code": { + ";": 8, + "RepRapPro": 1, + "Ormerod": 1, + "Board": 1, + "test": 1, + "GCodes": 1, + "M111": 1, + "S1": 1, + "Debug": 1, + "on": 1, + "G21": 1, + "mm": 1, + "G90": 1, + "Absolute": 1, + "positioning": 1, + "M83": 1, + "Extrusion": 1, + "relative": 1, + "M906": 1, + "X800": 1, + "Y800": 1, + "Z800": 1, + "E800": 1, + "Motor": 1, + "currents": 1, + "(": 1, + "mA": 1, + ")": 1, + "T0": 2, + "Extruder": 1, + "G1": 17, + "X50": 1, + "F500": 2, + "X0": 2, + "G4": 18, + "P500": 6, + "Y50": 1, + "Y0": 2, + "Z20": 1, + "F200": 2, + "Z0": 1, + "E20": 1, + "E": 1, + "-": 146, + "M106": 2, + "S255": 1, + "S0": 1, + "M105": 13, + "G10": 1, + "P0": 1, + "S100": 2, + "M140": 1, + "P5000": 12, + "M0": 2, + "e": 145, + "G28": 1, + "X55": 3, + "Y5": 3, + "F2000": 1, + "Y180": 2, + "X180": 2 + }, "GAMS": { "*Basic": 1, "example": 2, @@ -73160,6 +73226,7 @@ "Erlang": 2928, "Forth": 1516, "Frege": 5564, + "G-code": 432, "GAMS": 363, "GAP": 9944, "GAS": 133, @@ -73375,6 +73442,7 @@ "Erlang": 5, "Forth": 7, "Frege": 4, + "G-code": 4, "GAMS": 1, "GAP": 7, "GAS": 1, @@ -73538,5 +73606,5 @@ "fish": 3, "wisp": 1 }, - "md5": "1a8591982ec28c592a742122734c142c" + "md5": "6c25d61196c927beac580e2dbb592c51" } \ No newline at end of file From 3b4d2499eb4fa32e75f9eef7d2b4381040ab4a91 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Mon, 15 Sep 2014 15:02:25 +0200 Subject: [PATCH 253/268] Update samples.json --- lib/linguist/samples.json | 396 +++++++++++++++++++++++++++++++++++++- 1 file changed, 393 insertions(+), 3 deletions(-) diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json index 559ef894..3e45ce61 100644 --- a/lib/linguist/samples.json +++ b/lib/linguist/samples.json @@ -192,6 +192,9 @@ "GAS": [ ".s" ], + "GDScript": [ + ".gd" + ], "GLSL": [ ".fp", ".frag", @@ -854,8 +857,8 @@ "exception.zep.php" ] }, - "tokens_total": 659559, - "languages_total": 908, + "tokens_total": 661517, + "languages_total": 912, "tokens": { "ABAP": { "*/**": 1, @@ -24207,6 +24210,391 @@ "xd": 1, ".subsections_via_symbols": 1 }, + "GDScript": { + "extends": 4, + "BaseClass": 1, + "var": 86, + "a": 6, + "s": 4, + "arr": 1, + "[": 22, + "]": 22, + "dict": 1, + "{": 2, + "}": 2, + "const": 11, + "answer": 1, + "thename": 1, + "v2": 1, + "Vector2": 61, + "(": 314, + ")": 313, + "v3": 1, + "Vector3": 9, + "func": 19, + "some_function": 1, + "param1": 4, + "param2": 5, + "local_var": 2, + "if": 56, + "<": 14, + "print": 6, + "elif": 4, + "else": 11, + "for": 9, + "i": 7, + "in": 12, + "range": 6, + "while": 1, + "-": 31, + "local_var2": 2, + "+": 24, + "return": 14, + "class": 1, + "Something": 1, + "_init": 1, + "lv": 10, + "Something.new": 1, + "lv.a": 1, + "Control": 1, + "score": 4, + "score_label": 2, + "null": 1, + "MAX_SHAPES": 2, + "block": 3, + "preload": 2, + "block_colors": 3, + "Color": 7, + "block_shapes": 4, + "#": 18, + "I": 1, + "O": 1, + "S": 1, + "Z": 1, + "L": 1, + "J": 1, + "T": 1, + "block_rotations": 2, + "Matrix32": 4, + "width": 5, + "height": 6, + "cells": 8, + "piece_active": 7, + "false": 16, + "piece_shape": 8, + "piece_pos": 3, + "piece_rot": 5, + "piece_cell_xform": 4, + "p": 2, + "er": 4, + "r": 2, + "%": 3, + ".xform": 1, + "_draw": 1, + "sb": 2, + "get_stylebox": 1, + "use": 1, + "line": 1, + "edit": 1, + "bg": 1, + "draw_style_box": 1, + "Rect2": 5, + "get_size": 1, + ".grow": 1, + "bs": 3, + "block.get_size": 1, + "y": 12, + "x": 12, + "draw_texture_rect": 2, + "*bs": 2, + "c": 6, + "piece_check_fit": 6, + "ofs": 2, + "pos": 4, + "pos.x": 2, + "pos.y": 2, + "true": 11, + "new_piece": 3, + "randi": 1, + "width/2": 1, + "piece_pos.y": 2, + "not": 5, + "#game": 1, + "over": 1, + "#print": 1, + "game_over": 2, + "update": 7, + "test_collapse_rows": 2, + "accum_down": 6, + "collapse": 3, + "cells.erase": 1, + "accum_down*100": 1, + "score_label.set_text": 2, + "str": 1, + "get_node": 24, + ".set_text": 2, + "restart_pressed": 1, + "cells.clear": 1, + "piece_move_down": 2, + "piece_rotate": 2, + "adv": 2, + "_input": 1, + "ie": 1, + "ie.is_pressed": 1, + "ie.is_action": 4, + "piece_pos.x": 2, + "setup": 2, + "w": 3, + "h": 3, + "set_size": 1, + "*block.get_size": 1, + ".start": 1, + "_ready": 3, + "Initalization": 2, + "here": 2, + "set_process_input": 1, + "RigidBody": 1, + "#var": 1, + "dir": 8, + "ANIM_FLOOR": 2, + "ANIM_AIR_UP": 2, + "ANIM_AIR_DOWN": 2, + "SHOOT_TIME": 2, + "SHOOT_SCALE": 2, + "CHAR_SCALE": 2, + "facing_dir": 2, + "movement_dir": 3, + "jumping": 5, + "turn_speed": 2, + "keep_jump_inertia": 2, + "air_idle_deaccel": 2, + "accel": 2, + "deaccel": 2, + "sharp_turn_threshhold": 2, + "max_speed": 5, + "on_floor": 3, + "prev_shoot": 3, + "last_floor_velocity": 5, + "shoot_blend": 7, + "adjust_facing": 3, + "p_facing": 4, + "p_target": 2, + "p_step": 2, + "p_adjust_rate": 2, + "current_gn": 2, + "n": 2, + "normal": 1, + "t": 2, + "n.cross": 1, + ".normalized": 2, + "n.dot": 1, + "t.dot": 1, + "ang": 12, + "atan2": 1, + "abs": 1, + "too": 1, + "small": 1, + "sign": 1, + "*": 15, + "turn": 3, + "cos": 2, + "sin": 1, + "p_facing.length": 1, + "_integrate_forces": 1, + "state": 5, + "state.get_linear_velocity": 1, + "linear": 1, + "velocity": 3, + "g": 3, + "state.get_total_gravity": 1, + "delta": 8, + "state.get_step": 1, + "d": 2, + "delta*state.get_total_density": 1, + "<0):>": 2, + "d=": 1, + "apply": 1, + "gravity": 2, + "anim": 4, + "up": 12, + "normalized": 6, + "is": 1, + "against": 1, + "vv": 5, + "dot": 3, + "vertical": 1, + "hv": 8, + "horizontal": 3, + "hdir": 7, + "direction": 6, + "hspeed": 14, + "length": 1, + "speed": 2, + "floor_velocity": 5, + "onfloor": 6, + "get_contact_count": 2, + "0": 6, + "get_contact_local_shape": 1, + "1": 2, + "continue": 1, + "get_contact_collider_velocity_at_pos": 1, + "break": 1, + "where": 1, + "does": 1, + "the": 1, + "player": 1, + "intend": 1, + "to": 3, + "walk": 1, + "cam_xform": 5, + "target": 1, + "camera": 1, + "get_global_transform": 1, + "Input": 6, + "is_action_pressed": 6, + "move_forward": 1, + "basis": 5, + "2": 2, + "move_backwards": 1, + "move_left": 1, + "move_right": 1, + "jump_attempt": 2, + "jump": 2, + "shoot_attempt": 3, + "shoot": 1, + "target_dir": 5, + "sharp_turn": 2, + "and": 16, + "rad2deg": 1, + "acos": 1, + "target_dir.dot": 1, + "dir.length": 2, + "#linear_dir": 1, + "linear_h_velocity/linear_vel": 1, + "#if": 2, + "linear_vel": 1, + "brake_velocity_limit": 1, + "linear_dir.dot": 1, + "ctarget_dir": 1, + "Math": 1, + "deg2rad": 1, + "brake_angular_limit": 1, + "brake": 1, + "#else": 1, + "/hspeed*turn_speed": 1, + "accel*delta": 1, + "deaccel*delta": 1, + "hspeed=": 1, + "mesh_xform": 2, + "Armature": 2, + "get_transform": 1, + "facing_mesh=": 1, + "facing_mesh": 7, + "m3": 2, + "Matrix3": 1, + "cross": 1, + "scaled": 1, + "set_transform": 1, + "Transform": 1, + "origin": 1, + "7": 1, + "sfx": 1, + "play": 1, + "hs": 1, + "hv.length": 1, + "hv.normalized": 1, + "hdir*hspeed": 1, + "up*vv": 1, + "#lv": 1, + "pass": 2, + "state.set_linear_velocity": 1, + "bullet": 3, + ".instance": 1, + "bullet.set_transform": 1, + ".get_global_transform": 2, + ".orthonormalized": 1, + "get_parent": 1, + ".add_child": 1, + "bullet.set_linear_velocity": 1, + ".basis": 1, + "PS.body_add_collision_exception": 1, + "bullet.get_rid": 1, + "get_rid": 1, + "#add": 1, + "it": 1, + ".play": 1, + ".blend2_node_set_amount": 2, + "/": 1, + ".transition_node_set_current": 1, + "min": 1, + "state.set_angular_velocity": 1, + ".set_active": 1, + "Node2D": 1, + "INITIAL_BALL_SPEED": 3, + "ball_speed": 2, + "screen_size": 2, + "#default": 1, + "ball": 3, + "pad_size": 4, + "PAD_SPEED": 1, + "_process": 1, + "get": 2, + "positio": 1, + "pad": 3, + "rectangles": 1, + "ball_pos": 8, + ".get_pos": 5, + "left_rect": 1, + "pad_size*0.5": 2, + "right_rect": 1, + "#integrate": 1, + "new": 1, + "postion": 1, + "direction*ball_speed*delta": 1, + "#flip": 2, + "when": 2, + "touching": 2, + "roof": 1, + "or": 4, + "floor": 1, + "ball_pos.y": 1, + "direction.y": 5, + "<0)>": 1, + "screen_size.y": 3, + "change": 1, + "increase": 1, + "pads": 1, + "left_rect.has_point": 1, + "direction.x": 4, + "right_rect.has_point": 1, + "ball_speed*": 1, + "randf": 1, + "*2.0": 1, + "direction.normalized": 1, + "#check": 1, + "gameover": 1, + "ball_pos.x": 1, + "<0>": 1, + "screen_size.x": 1, + "screen_size*0.5": 1, + ".set_pos": 3, + "#move": 2, + "left": 1, + "left_pos": 2, + "left_pos.y": 4, + "Input.is_action_pressed": 4, + "PAD_SPEED*delta": 4, + "right": 1, + "right_pos": 2, + "right_pos.y": 4, + "get_viewport_rect": 1, + ".size": 1, + "actual": 1, + "size": 1, + ".get_texture": 1, + ".get_size": 1, + "set_process": 1 + }, "GLSL": { "////": 4, "High": 1, @@ -73163,6 +73551,7 @@ "GAMS": 363, "GAP": 9944, "GAS": 133, + "GDScript": 1958, "GLSL": 4076, "Game Maker Language": 13310, "Gnuplot": 1023, @@ -73378,6 +73767,7 @@ "GAMS": 1, "GAP": 7, "GAS": 1, + "GDScript": 4, "GLSL": 7, "Game Maker Language": 13, "Gnuplot": 6, @@ -73538,5 +73928,5 @@ "fish": 3, "wisp": 1 }, - "md5": "1a8591982ec28c592a742122734c142c" + "md5": "0eb7eaca3b173ad8d75c6149bd01fc6e" } \ No newline at end of file From ac32b09a6b7c511563f671d8bf2b640d5145d8b9 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Mon, 15 Sep 2014 13:17:38 -0500 Subject: [PATCH 254/268] Generate samples before build --- .travis.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 3a5791da..c851f345 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,10 @@ -before_install: +before_install: - git fetch origin master:master - git fetch origin v2.0.0:v2.0.0 - sudo apt-get install libicu-dev -y - gem update --system 2.1.11 +before_script: + - bundle exec rake samples rvm: - 1.9.3 - 2.0.0 From 71d1bd75c0d18907beb32e7958b156668ec6bfbc Mon Sep 17 00:00:00 2001 From: Paul Chaignon Date: Mon, 15 Sep 2014 16:10:36 -0400 Subject: [PATCH 255/268] Use Java lexer for Apex --- lib/linguist/languages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index cd345450..7923b7da 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -119,7 +119,7 @@ ApacheConf: Apex: type: programming - lexer: Text only + lexer: Java extensions: - .cls From 156985ed52cf56bc2c40b3c51ccc2fafc10aeb94 Mon Sep 17 00:00:00 2001 From: Brandon Keepers Date: Tue, 16 Sep 2014 10:08:57 -0400 Subject: [PATCH 256/268] Remove samples.json from version control --- .gitignore | 1 + lib/linguist/samples.json | 74000 ------------------------------------ 2 files changed, 1 insertion(+), 74000 deletions(-) delete mode 100644 lib/linguist/samples.json diff --git a/.gitignore b/.gitignore index 391e05a0..243eb9ab 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ Gemfile.lock .bundle/ vendor/ benchmark/ +lib/linguist/samples.json diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json deleted file mode 100644 index df281b30..00000000 --- a/lib/linguist/samples.json +++ /dev/null @@ -1,74000 +0,0 @@ -{ - "extnames": { - "ABAP": [ - ".abap" - ], - "AGS Script": [ - ".asc", - ".ash" - ], - "APL": [ - ".apl" - ], - "ATS": [ - ".atxt", - ".dats", - ".hats", - ".sats" - ], - "Agda": [ - ".agda" - ], - "Alloy": [ - ".als" - ], - "Apex": [ - ".cls" - ], - "AppleScript": [ - ".applescript" - ], - "Arduino": [ - ".ino" - ], - "AsciiDoc": [ - ".adoc", - ".asc", - ".asciidoc" - ], - "AspectJ": [ - ".aj" - ], - "Assembly": [ - ".asm" - ], - "AutoHotkey": [ - ".ahk" - ], - "Awk": [ - ".awk" - ], - "BlitzBasic": [ - ".bb" - ], - "BlitzMax": [ - ".bmx" - ], - "Bluespec": [ - ".bsv" - ], - "Brightscript": [ - ".brs" - ], - "C": [ - ".c", - ".cats", - ".h" - ], - "C#": [ - ".cs", - ".cshtml" - ], - "C++": [ - ".cc", - ".cpp", - ".h", - ".hpp", - ".inl", - ".ipp" - ], - "COBOL": [ - ".cbl", - ".ccp", - ".cob", - ".cpy" - ], - "CSS": [ - ".css" - ], - "Ceylon": [ - ".ceylon" - ], - "Chapel": [ - ".chpl" - ], - "Cirru": [ - ".cirru" - ], - "Clojure": [ - ".cl2", - ".clj", - ".cljc", - ".cljs", - ".cljscm", - ".cljx", - ".hic", - ".hl" - ], - "CoffeeScript": [ - ".coffee" - ], - "ColdFusion": [ - ".cfm" - ], - "ColdFusion CFC": [ - ".cfc" - ], - "Common Lisp": [ - ".cl", - ".lisp" - ], - "Component Pascal": [ - ".cp", - ".cps" - ], - "Coq": [ - ".v" - ], - "Creole": [ - ".creole" - ], - "Crystal": [ - ".cr" - ], - "Cuda": [ - ".cu", - ".cuh" - ], - "Cycript": [ - ".cy" - ], - "DM": [ - ".dm" - ], - "Dart": [ - ".dart" - ], - "Diff": [ - ".patch" - ], - "Dogescript": [ - ".djs" - ], - "E": [ - ".E" - ], - "ECL": [ - ".ecl" - ], - "Eagle": [ - ".brd", - ".sch" - ], - "Elm": [ - ".elm" - ], - "Emacs Lisp": [ - ".el" - ], - "EmberScript": [ - ".em" - ], - "Erlang": [ - ".erl", - ".escript", - ".script!" - ], - "Forth": [ - ".forth", - ".fth" - ], - "Frege": [ - ".fr" - ], - "G-code": [ - ".g" - ], - "GAMS": [ - ".gms" - ], - "GAP": [ - ".g", - ".gd", - ".gi" - ], - "GAS": [ - ".s" - ], - "GDScript": [ - ".gd" - ], - "GLSL": [ - ".fp", - ".frag", - ".frg", - ".glsl", - ".vrx" - ], - "Game Maker Language": [ - ".gml" - ], - "Gnuplot": [ - ".gnu", - ".gp" - ], - "Gosu": [ - ".gs", - ".gst", - ".gsx", - ".vark" - ], - "Grace": [ - ".grace" - ], - "Grammatical Framework": [ - ".gf" - ], - "Groovy": [ - ".gradle", - ".grt", - ".gtpl", - ".gvy", - ".script!" - ], - "Groovy Server Pages": [ - ".gsp" - ], - "HTML": [ - ".html", - ".st" - ], - "HTML+ERB": [ - ".deface", - ".erb" - ], - "Haml": [ - ".deface", - ".haml" - ], - "Handlebars": [ - ".handlebars", - ".hbs" - ], - "Haskell": [ - ".hs" - ], - "Hy": [ - ".hy" - ], - "IDL": [ - ".dlm", - ".pro" - ], - "IGOR Pro": [ - ".ipf" - ], - "Idris": [ - ".idr" - ], - "Inform 7": [ - ".i7x", - ".ni" - ], - "Ioke": [ - ".ik" - ], - "Isabelle": [ - ".thy" - ], - "JSON": [ - ".json", - ".lock" - ], - "JSON5": [ - ".json5" - ], - "JSONLD": [ - ".jsonld" - ], - "JSONiq": [ - ".jq" - ], - "Jade": [ - ".jade" - ], - "Java": [ - ".java" - ], - "JavaScript": [ - ".frag", - ".js", - ".script!", - ".xsjs", - ".xsjslib" - ], - "Julia": [ - ".jl" - ], - "KRL": [ - ".krl" - ], - "Kit": [ - ".kit" - ], - "Kotlin": [ - ".kt" - ], - "LFE": [ - ".lfe" - ], - "LSL": [ - ".lsl" - ], - "Lasso": [ - ".las", - ".lasso", - ".lasso9", - ".ldml" - ], - "Latte": [ - ".latte" - ], - "Less": [ - ".less" - ], - "Liquid": [ - ".liquid" - ], - "Literate Agda": [ - ".lagda" - ], - "Literate CoffeeScript": [ - ".litcoffee" - ], - "LiveScript": [ - ".ls" - ], - "Logos": [ - ".xm" - ], - "Logtalk": [ - ".lgt" - ], - "LookML": [ - ".lookml" - ], - "Lua": [ - ".pd_lua" - ], - "M": [ - ".m" - ], - "MTML": [ - ".mtml" - ], - "Makefile": [ - ".script!" - ], - "Markdown": [ - ".md" - ], - "Mask": [ - ".mask" - ], - "Mathematica": [ - ".m", - ".nb" - ], - "Matlab": [ - ".m" - ], - "Max": [ - ".maxhelp", - ".maxpat", - ".mxt" - ], - "MediaWiki": [ - ".mediawiki" - ], - "Mercury": [ - ".m", - ".moo" - ], - "Monkey": [ - ".monkey" - ], - "Moocode": [ - ".moo" - ], - "MoonScript": [ - ".moon" - ], - "NSIS": [ - ".nsh", - ".nsi" - ], - "Nemerle": [ - ".n" - ], - "NetLogo": [ - ".nlogo" - ], - "Nimrod": [ - ".nim" - ], - "Nit": [ - ".nit" - ], - "Nix": [ - ".nix" - ], - "Nu": [ - ".nu", - ".script!" - ], - "OCaml": [ - ".eliom", - ".ml" - ], - "Objective-C": [ - ".h", - ".m" - ], - "Objective-C++": [ - ".mm" - ], - "Omgrofl": [ - ".omgrofl" - ], - "Opa": [ - ".opa" - ], - "Opal": [ - ".opal" - ], - "OpenCL": [ - ".cl" - ], - "OpenEdge ABL": [ - ".cls", - ".p" - ], - "OpenSCAD": [ - ".scad" - ], - "Org": [ - ".org" - ], - "Ox": [ - ".ox", - ".oxh", - ".oxo" - ], - "Oxygene": [ - ".oxygene" - ], - "PAWN": [ - ".pwn" - ], - "PHP": [ - ".module", - ".php", - ".script!" - ], - "Pan": [ - ".pan" - ], - "Parrot Assembly": [ - ".pasm" - ], - "Parrot Internal Representation": [ - ".pir" - ], - "Pascal": [ - ".dpr" - ], - "Perl": [ - ".cgi", - ".fcgi", - ".pl", - ".pm", - ".pod", - ".script!", - ".t" - ], - "Perl6": [ - ".p6", - ".pm6" - ], - "PigLatin": [ - ".pig" - ], - "Pike": [ - ".pike", - ".pmod" - ], - "Pod": [ - ".pod" - ], - "PogoScript": [ - ".pogo" - ], - "PostScript": [ - ".ps" - ], - "PowerShell": [ - ".ps1", - ".psm1" - ], - "Processing": [ - ".pde" - ], - "Prolog": [ - ".ecl", - ".pl", - ".prolog", - ".script!" - ], - "Propeller Spin": [ - ".spin" - ], - "Protocol Buffer": [ - ".proto" - ], - "PureScript": [ - ".purs" - ], - "Python": [ - ".cgi", - ".py", - ".pyde", - ".pyp", - ".script!" - ], - "QMake": [ - ".pri", - ".pro", - ".script!" - ], - "R": [ - ".R", - ".Rd", - ".r", - ".rsx", - ".script!" - ], - "RDoc": [ - ".rdoc" - ], - "RMarkdown": [ - ".rmd" - ], - "Racket": [ - ".scrbl" - ], - "Ragel in Ruby Host": [ - ".rl" - ], - "Rebol": [ - ".r", - ".r2", - ".r3", - ".reb", - ".rebol" - ], - "Red": [ - ".red", - ".reds" - ], - "RobotFramework": [ - ".robot" - ], - "Ruby": [ - ".pluginspec", - ".rabl", - ".rake", - ".rb", - ".script!" - ], - "Rust": [ - ".rs" - ], - "SAS": [ - ".sas" - ], - "SCSS": [ - ".scss" - ], - "SQF": [ - ".hqf", - ".sqf" - ], - "SQL": [ - ".prc", - ".sql", - ".tab", - ".udf", - ".viw" - ], - "STON": [ - ".ston" - ], - "Sass": [ - ".sass", - ".scss" - ], - "Scala": [ - ".sbt", - ".sc", - ".script!" - ], - "Scaml": [ - ".scaml" - ], - "Scheme": [ - ".sld", - ".sps" - ], - "Scilab": [ - ".sce", - ".sci", - ".tst" - ], - "Shell": [ - ".bash", - ".cgi", - ".script!", - ".sh", - ".zsh" - ], - "ShellSession": [ - ".sh-session" - ], - "Shen": [ - ".shen" - ], - "Slash": [ - ".sl" - ], - "Slim": [ - ".slim" - ], - "Smalltalk": [ - ".st" - ], - "SourcePawn": [ - ".sp" - ], - "Squirrel": [ - ".nut" - ], - "Standard ML": [ - ".ML", - ".fun", - ".sig", - ".sml" - ], - "Stata": [ - ".ado", - ".do", - ".doh", - ".ihlp", - ".mata", - ".matah", - ".sthlp" - ], - "Stylus": [ - ".styl" - ], - "SuperCollider": [ - ".scd" - ], - "Swift": [ - ".swift" - ], - "SystemVerilog": [ - ".sv", - ".svh", - ".vh" - ], - "TXL": [ - ".txl" - ], - "Tcl": [ - ".tm" - ], - "TeX": [ - ".bbx", - ".cbx", - ".cls", - ".lbx" - ], - "Tea": [ - ".tea" - ], - "Turing": [ - ".t" - ], - "TypeScript": [ - ".ts" - ], - "UnrealScript": [ - ".uc" - ], - "VCL": [ - ".vcl" - ], - "VHDL": [ - ".vhd" - ], - "Verilog": [ - ".v" - ], - "Visual Basic": [ - ".cls", - ".vb", - ".vbhtml" - ], - "Volt": [ - ".volt" - ], - "XC": [ - ".xc" - ], - "XML": [ - ".ant", - ".csproj", - ".filters", - ".fsproj", - ".ivy", - ".nproj", - ".nuspec", - ".pluginspec", - ".targets", - ".vbproj", - ".vcxproj", - ".xml" - ], - "XProc": [ - ".xpl" - ], - "XQuery": [ - ".xqm" - ], - "XSLT": [ - ".xslt" - ], - "Xojo": [ - ".xojo_code", - ".xojo_menu", - ".xojo_report", - ".xojo_script", - ".xojo_toolbar", - ".xojo_window" - ], - "Xtend": [ - ".xtend" - ], - "YAML": [ - ".yml" - ], - "Zephir": [ - ".zep" - ], - "Zimpl": [ - ".zmpl" - ], - "edn": [ - ".edn" - ], - "fish": [ - ".fish" - ], - "wisp": [ - ".wisp" - ] - }, - "interpreters": { - - }, - "filenames": { - "ApacheConf": [ - ".htaccess", - "apache2.conf", - "httpd.conf" - ], - "INI": [ - ".editorconfig", - ".gitconfig" - ], - "Makefile": [ - "Makefile" - ], - "Nginx": [ - "nginx.conf" - ], - "PHP": [ - ".php" - ], - "Perl": [ - "ack" - ], - "R": [ - "expr-dist" - ], - "Ruby": [ - ".pryrc", - "Appraisals", - "Capfile", - "Rakefile" - ], - "Shell": [ - ".bash_logout", - ".bash_profile", - ".bashrc", - ".cshrc", - ".login", - ".profile", - ".zlogin", - ".zlogout", - ".zprofile", - ".zshenv", - ".zshrc", - "Dockerfile", - "PKGBUILD", - "bash_logout", - "bash_profile", - "bashrc", - "cshrc", - "login", - "profile", - "zlogin", - "zlogout", - "zprofile", - "zshenv", - "zshrc" - ], - "VimL": [ - ".gvimrc", - ".vimrc" - ], - "XML": [ - ".cproject" - ], - "YAML": [ - ".gemrc" - ], - "Zephir": [ - "exception.zep.c", - "exception.zep.h", - "exception.zep.php" - ] - }, - "tokens_total": 661949, - "languages_total": 916, - "tokens": { - "ABAP": { - "*/**": 1, - "*": 56, - "The": 2, - "MIT": 2, - "License": 1, - "(": 8, - ")": 8, - "Copyright": 1, - "c": 3, - "Ren": 1, - "van": 1, - "Mil": 1, - "Permission": 1, - "is": 2, - "hereby": 1, - "granted": 1, - "free": 1, - "of": 6, - "charge": 1, - "to": 10, - "any": 1, - "person": 1, - "obtaining": 1, - "a": 1, - "copy": 2, - "this": 2, - "software": 1, - "and": 3, - "associated": 1, - "documentation": 1, - "files": 4, - "the": 10, - "deal": 1, - "in": 3, - "Software": 3, - "without": 2, - "restriction": 1, - "including": 1, - "limitation": 1, - "rights": 1, - "use": 1, - "modify": 1, - "merge": 1, - "publish": 1, - "distribute": 1, - "sublicense": 1, - "and/or": 1, - "sell": 1, - "copies": 2, - "permit": 1, - "persons": 1, - "whom": 1, - "furnished": 1, - "do": 4, - "so": 1, - "subject": 1, - "following": 1, - "conditions": 1, - "above": 1, - "copyright": 1, - "notice": 2, - "permission": 1, - "shall": 1, - "be": 1, - "included": 1, - "all": 1, - "or": 1, - "substantial": 1, - "portions": 1, - "Software.": 1, - "THE": 6, - "SOFTWARE": 2, - "IS": 1, - "PROVIDED": 1, - "WITHOUT": 1, - "WARRANTY": 1, - "OF": 4, - "ANY": 2, - "KIND": 1, - "EXPRESS": 1, - "OR": 7, - "IMPLIED": 1, - "INCLUDING": 1, - "BUT": 1, - "NOT": 1, - "LIMITED": 1, - "TO": 2, - "WARRANTIES": 1, - "MERCHANTABILITY": 1, - "FITNESS": 1, - "FOR": 2, - "A": 1, - "PARTICULAR": 1, - "PURPOSE": 1, - "AND": 1, - "NONINFRINGEMENT.": 1, - "IN": 4, - "NO": 1, - "EVENT": 1, - "SHALL": 1, - "AUTHORS": 1, - "COPYRIGHT": 1, - "HOLDERS": 1, - "BE": 1, - "LIABLE": 1, - "CLAIM": 1, - "DAMAGES": 1, - "OTHER": 2, - "LIABILITY": 1, - "WHETHER": 1, - "AN": 1, - "ACTION": 1, - "CONTRACT": 1, - "TORT": 1, - "OTHERWISE": 1, - "ARISING": 1, - "FROM": 1, - "OUT": 1, - "CONNECTION": 1, - "WITH": 1, - "USE": 1, - "DEALINGS": 1, - "SOFTWARE.": 1, - "*/": 1, - "-": 978, - "CLASS": 2, - "CL_CSV_PARSER": 6, - "DEFINITION": 2, - "class": 2, - "cl_csv_parser": 2, - "definition": 1, - "public": 3, - "inheriting": 1, - "from": 1, - "cl_object": 1, - "final": 1, - "create": 1, - ".": 9, - "section.": 3, - "not": 3, - "include": 3, - "other": 3, - "source": 3, - "here": 3, - "type": 11, - "pools": 1, - "abap": 1, - "methods": 2, - "constructor": 2, - "importing": 1, - "delegate": 1, - "ref": 1, - "if_csv_parser_delegate": 1, - "csvstring": 1, - "string": 1, - "separator": 1, - "skip_first_line": 1, - "abap_bool": 2, - "parse": 2, - "raising": 1, - "cx_csv_parse_error": 2, - "protected": 1, - "private": 1, - "constants": 1, - "_textindicator": 1, - "value": 2, - "IMPLEMENTATION": 2, - "implementation.": 1, - "": 2, - "+": 9, - "|": 7, - "Instance": 2, - "Public": 1, - "Method": 2, - "CONSTRUCTOR": 1, - "[": 5, - "]": 5, - "DELEGATE": 1, - "TYPE": 5, - "REF": 1, - "IF_CSV_PARSER_DELEGATE": 1, - "CSVSTRING": 1, - "STRING": 1, - "SEPARATOR": 1, - "C": 1, - "SKIP_FIRST_LINE": 1, - "ABAP_BOOL": 1, - "": 2, - "method": 2, - "constructor.": 1, - "super": 1, - "_delegate": 1, - "delegate.": 1, - "_csvstring": 2, - "csvstring.": 1, - "_separator": 1, - "separator.": 1, - "_skip_first_line": 1, - "skip_first_line.": 1, - "endmethod.": 2, - "Get": 1, - "lines": 4, - "data": 3, - "is_first_line": 1, - "abap_true.": 2, - "standard": 2, - "table": 3, - "string.": 3, - "_lines": 1, - "field": 1, - "symbols": 1, - "": 3, - "loop": 1, - "at": 2, - "assigning": 1, - "Parse": 1, - "line": 1, - "values": 2, - "_parse_line": 2, - "Private": 1, - "_LINES": 1, - "<": 1, - "RETURNING": 1, - "STRINGTAB": 1, - "_lines.": 1, - "split": 1, - "cl_abap_char_utilities": 1, - "cr_lf": 1, - "into": 6, - "returning.": 1, - "Space": 2, - "concatenate": 4, - "csvvalue": 6, - "csvvalue.": 5, - "else.": 4, - "char": 2, - "endif.": 6, - "This": 1, - "indicates": 1, - "an": 1, - "error": 1, - "CSV": 1, - "formatting": 1, - "text_ended": 1, - "message": 2, - "e003": 1, - "csv": 1, - "msg.": 2, - "raise": 1, - "exception": 1, - "exporting": 1, - "endwhile.": 2, - "append": 2, - "csvvalues.": 2, - "clear": 1, - "pos": 2, - "endclass.": 1 - }, - "AGS Script": { - "function": 54, - "initialize_control_panel": 2, - "(": 281, - ")": 282, - "{": 106, - "gPanel.Centre": 1, - ";": 235, - "gRestartYN.Centre": 1, - "if": 96, - "IsSpeechVoxAvailable": 3, - "lblVoice.Visible": 1, - "false": 26, - "btnVoice.Visible": 1, - "sldVoice.Visible": 1, - "}": 107, - "else": 44, - "SetVoiceMode": 6, - "eSpeechVoiceAndText": 4, - "btnVoice.Text": 9, - "System.SupportsGammaControl": 3, - "sldGamma.Visible": 1, - "lblGamma.Visible": 1, - "//And": 1, - "now": 1, - "set": 7, - "all": 2, - "the": 15, - "defaults": 1, - "System.Volume": 5, - "sldAudio.Value": 3, - "SetGameSpeed": 3, - "sldSpeed.Value": 3, - "sldVoice.Value": 3, - "SetSpeechVolume": 3, - "System.Gamma": 3, - "sldGamma.Value": 3, - "game_start": 1, - "KeyboardMovement.SetMode": 1, - "eKeyboardMovement_Tapping": 3, - "repeatedly_execute": 2, - "IsGamePaused": 4, - "return": 8, - "repeatedly_execute_always": 1, - "show_inventory_window": 3, - "gInventory.Visible": 2, - "true": 18, - "mouse.Mode": 13, - "eModeInteract": 3, - "mouse.UseModeGraphic": 8, - "eModePointer": 8, - "show_save_game_dialog": 3, - "gSaveGame.Visible": 3, - "lstSaveGamesList.FillSaveGameList": 2, - "lstSaveGamesList.ItemCount": 3, - "txtNewSaveName.Text": 5, - "lstSaveGamesList.Items": 3, - "[": 6, - "]": 6, - "gIconbar.Visible": 15, - "show_restore_game_dialog": 3, - "gRestoreGame.Visible": 3, - "lstRestoreGamesList.FillSaveGameList": 1, - "close_save_game_dialog": 4, - "mouse.UseDefaultGraphic": 9, - "close_restore_game_dialog": 4, - "on_key_press": 2, - "eKeyCode": 1, - "keycode": 27, - "eKeyEscape": 5, - "&&": 8, - "gRestartYN.Visible": 6, - "//Use": 1, - "ESC": 1, - "to": 14, - "cancel": 1, - "restart.": 1, - "gPanel.Visible": 11, - "eKeyReturn": 1, - "RestartGame": 2, - "||": 12, - "IsInterfaceEnabled": 3, - "eKeyCtrlQ": 1, - "QuitGame": 3, - "//": 66, - "Ctrl": 1, - "-": 217, - "Q": 1, - "eKeyF5": 1, - "F5": 1, - "eKeyF7": 1, - "F7": 1, - "eKeyF9": 1, - "eKeyF12": 1, - "SaveScreenShot": 1, - "F12": 1, - "eKeyTab": 1, - "Tab": 1, - "show": 1, - "inventory": 2, - "eModeWalkto": 2, - "//Notice": 1, - "this": 1, - "alternate": 1, - "way": 1, - "indicate": 1, - "keycodes.": 1, - "eModeLookat": 1, - "//Note": 1, - "that": 1, - "we": 1, - "do": 1, - "here": 1, - "is": 10, - "modes.": 1, - "//If": 1, - "you": 1, - "want": 1, - "something": 1, - "happen": 1, - "such": 1, - "as": 2, - "GUI": 3, - "buttons": 1, - "highlighting": 1, - "eModeTalkto": 2, - "//you": 1, - "I": 1, - "P": 1, - "G": 1, - "t": 1, - "allow": 1, - "mouse": 2, - "click": 1, - "button": 33, - "eMouseLeft": 4, - "ProcessClick": 2, - "mouse.x": 2, - "mouse.y": 2, - "eMouseRight": 1, - "eMouseWheelSouth": 1, - "mouse.SelectNextMode": 1, - "eMouseMiddle": 1, - "eMouseWheelNorth": 1, - "player.ActiveInventory": 2, - "null": 2, - "//...and": 1, - "player": 13, - "has": 1, - "a": 1, - "selected": 1, - "item": 1, - "mode": 10, - "UseInv.": 1, - "eModeUseinv": 2, - "interface_click": 1, - "int": 18, - "interface": 3, - "btnInvUp_Click": 1, - "GUIControl": 31, - "*control": 31, - "MouseButton": 26, - "invCustomInv.ScrollUp": 1, - "btnInvDown_Click": 1, - "invCustomInv.ScrollDown": 1, - "btnInvOK_Click": 1, - "They": 2, - "pressed": 4, - "OK": 1, - "close": 1, - "btnInvSelect_Click": 1, - "SELECT": 1, - "so": 1, - "switch": 1, - "Get": 1, - "cursor": 1, - "But": 1, - "override": 1, - "appearance": 1, - "look": 1, - "like": 1, - "arrow": 9, - "btnIconInv_Click": 1, - "btnIconCurInv_Click": 1, - "btnIconSave_Click": 2, - "btnIconLoad_Click": 2, - "btnIconExit_Click": 1, - "btnIconAbout_Click": 1, - "cEgo_Look": 1, - "Display": 4, - "cEgo_Interact": 1, - "cEgo_Talk": 1, - "//START": 1, - "OF": 2, - "CONTROL": 2, - "PANEL": 2, - "FUNCTIONS": 2, - "btnSave_OnClick": 1, - "Wait": 3, - "btnIconSave": 1, - "gControl_OnClick": 1, - "*theGui": 1, - "btnAbout_OnClick": 1, - "btnQuit_OnClick": 1, - "btnLoad_OnClick": 1, - "btnIconLoad": 1, - "btnResume_OnClick": 1, - "sldAudio_OnChange": 1, - "sldVoice_OnChange": 1, - "btnVoice_OnClick": 1, - "eSpeechVoiceOnly": 1, - "eSpeechTextOnly": 1, - "sldGamma_OnChange": 1, - "btnDefault_OnClick": 1, - "//END": 1, - "dialog_request": 1, - "param": 1, - "sldSpeed_OnChange": 1, - "btnRestart_OnClick": 1, - "btnRestartYes_OnClick": 1, - "btnRestartNo_OnClick": 1, - "btnCancelSave_OnClick": 1, - "btnSaveGame_OnClick": 2, - "gameSlotToSaveInto": 3, - "+": 7, - "i": 5, - "while": 1, - "<": 1, - "lstSaveGamesList.SaveGameSlots": 2, - "SaveGameSlot": 1, - "btnCancelRestore_OnClick": 1, - "btnRestoreGame_OnClick": 1, - "lstRestoreGamesList.SelectedIndex": 2, - "RestoreGameSlot": 1, - "lstRestoreGamesList.SaveGameSlots": 1, - "lstSaveGamesList_OnSelectionCh": 1, - "lstSaveGamesList.SelectedIndex": 3, - "txtNewSaveName_OnActivate": 1, - "control": 2, - "btnDeleteSave_OnClick": 1, - "DeleteSaveSlot": 1, - "//****************************************************************************************************": 8, - "#define": 2, - "DISTANCE": 25, - "distance": 1, - "walks": 1, - "in": 1, - "Tapping": 2, - "before": 1, - "he": 1, - "stops": 1, - "enum": 2, - "KeyboardMovement_Directions": 4, - "eKeyboardMovement_Stop": 9, - "eKeyboardMovement_DownLeft": 5, - "eKeyboardMovement_Down": 5, - "eKeyboardMovement_DownRight": 5, - "eKeyboardMovement_Left": 5, - "eKeyboardMovement_Right": 5, - "eKeyboardMovement_UpLeft": 5, - "eKeyboardMovement_Up": 5, - "eKeyboardMovement_UpRight": 5, - "KeyboardMovement_KeyDown": 5, - "down": 9, - "KeyboardMovement_KeyLeft": 5, - "left": 4, - "KeyboardMovement_KeyRight": 5, - "right": 5, - "KeyboardMovement_KeyUp": 5, - "up": 4, - "KeyboardMovement_KeyDownRight": 3, - "PgDn": 2, - "numpad": 8, - "KeyboardMovement_KeyUpRight": 3, - "PgUp": 2, - "KeyboardMovement_KeyDownLeft": 3, - "End": 2, - "KeyboardMovement_KeyUpLeft": 3, - "Home": 2, - "KeyboardMovement_KeyStop": 3, - "KeyboardMovement_Modes": 4, - "KeyboardMovement_Mode": 4, - "eKeyboardMovement_None": 2, - "stores": 2, - "current": 8, - "keyboard": 1, - "disabled": 5, - "by": 1, - "default": 1, - "KeyboardMovement_CurrentDirection": 7, - "walking": 1, - "direction": 22, - "of": 6, - "character": 11, - "static": 2, - "KeyboardMovement": 2, - "SetMode": 2, - "Pressing": 1, - "eKeyboardMovement_Pressing": 2, - "player.on": 2, - "game": 2, - "paused": 2, - "module": 2, - "or": 8, - "hidden": 2, - "quit": 2, - "newdirection": 43, - "declare": 4, - "variable": 2, - "storing": 4, - "new": 19, - "get": 2, - "IsKeyPressed": 17, - "&": 4, - "arrows": 4, - "numeric": 2, - "pad": 2, - "held": 4, - "Down": 2, - "Right": 2, - "none": 1, - "above": 2, - "it": 1, - "stop": 7, - "regardless": 1, - "whether": 1, - "some": 1, - "are": 1, - "different": 2, - "from": 2, - "player.StopMoving": 3, - "Stop": 4, - "command": 4, - "movement": 2, - "NOT": 2, - "dx": 20, - "dy": 20, - "variables": 2, - "walk": 4, - "coordinates": 4, - "player.WalkStraight": 2, - "player.x": 2, - "player.y": 2, - "eNoBlock": 2, - "update": 3, - "key": 2, - "same": 1, - "on_event": 1, - "EventType": 1, - "event": 2, - "data": 1, - "eEventLeaveRoom": 1, - "KeyboardMovement_VERSION": 1, - "struct": 1, - "import": 1 - }, - "APL": { - "You": 1, - "can": 2, - "try": 1, - "this": 2, - "at": 1, - "http": 1, - "//tryapl.org/": 1, - "I": 2, - "not": 1, - "explain": 1, - "how": 1, - "much": 1, - "suddenly": 1, - "love": 1, - "crypto": 1, - "-": 1, - "language": 1, - "Starts": 2, - "Middles": 2, - "Qualifiers": 2, - "Finishes": 2, - "rf": 2, - "{": 3, - "(": 1, - ")": 1, - "}": 3, - "erf": 2, - "deepak": 2 - }, - "ATS": { - "//": 211, - "#include": 16, - "staload": 25, - "_": 25, - "sortdef": 2, - "ftype": 13, - "type": 30, - "-": 49, - "infixr": 2, - "(": 562, - ")": 567, - "typedef": 10, - "a": 200, - "b": 26, - "": 2, - "functor": 12, - "F": 34, - "{": 142, - "}": 141, - "list0": 9, - "extern": 13, - "val": 95, - "functor_list0": 7, - "implement": 55, - "f": 22, - "lam": 20, - "xs": 82, - "list0_map": 2, - "": 14, - "": 3, - "datatype": 4, - "CoYoneda": 7, - "r": 25, - "of": 59, - "fun": 56, - "CoYoneda_phi": 2, - "CoYoneda_psi": 3, - "ftor": 9, - "fx": 8, - "x": 48, - "int0": 4, - "I": 8, - "int": 2, - "bool": 27, - "True": 7, - "|": 22, - "False": 8, - "boxed": 2, - "boolean": 2, - "bool2string": 4, - "string": 2, - "case": 9, - "+": 20, - "fprint_val": 2, - "": 2, - "out": 8, - "fprint": 3, - "int2bool": 2, - "i": 6, - "let": 34, - "in": 48, - "if": 7, - "then": 11, - "else": 7, - "end": 73, - "myintlist0": 2, - "g0ofg1": 1, - "list": 1, - "myboolist0": 9, - "fprintln": 3, - "stdout_ref": 4, - "main0": 3, - "UN": 3, - "phil_left": 3, - "n": 51, - "phil_right": 3, - "nmod": 1, - "NPHIL": 6, - "randsleep": 6, - "intGte": 1, - "void": 14, - "ignoret": 2, - "sleep": 2, - "UN.cast": 2, - "uInt": 1, - "rand": 1, - "mod": 1, - "phil_think": 3, - "println": 9, - "phil_dine": 3, - "lf": 5, - "rf": 5, - "phil_loop": 10, - "nl": 2, - "nr": 2, - "ch_lfork": 2, - "fork_changet": 5, - "ch_rfork": 2, - "channel_takeout": 4, - "HX": 1, - "try": 1, - "to": 16, - "actively": 1, - "induce": 1, - "deadlock": 2, - "ch_forktray": 3, - "forktray_changet": 4, - "channel_insert": 5, - "[": 49, - "]": 48, - "cleaner_wash": 3, - "fork_get_num": 4, - "cleaner_return": 4, - "ch": 7, - "cleaner_loop": 6, - "f0": 3, - "dynload": 3, - "local": 10, - "mythread_create_cloptr": 6, - "llam": 6, - "while": 1, - "true": 5, - "%": 7, - "#": 7, - "#define": 4, - "nphil": 13, - "natLt": 2, - "absvtype": 2, - "fork_vtype": 3, - "ptr": 2, - "vtypedef": 2, - "fork": 16, - "channel": 11, - "datavtype": 1, - "FORK": 3, - "assume": 2, - "the_forkarray": 2, - "t": 1, - "array_tabulate": 1, - "fopr": 1, - "": 2, - "where": 6, - "channel_create_exn": 2, - "": 2, - "i2sz": 4, - "arrayref_tabulate": 1, - "the_forktray": 2, - "set_vtype": 3, - "t@ype": 2, - "set": 34, - "t0p": 31, - "compare_elt_elt": 4, - "x1": 1, - "x2": 1, - "<": 14, - "linset_nil": 2, - "linset_make_nil": 2, - "linset_sing": 2, - "": 16, - "linset_make_sing": 2, - "linset_make_list": 1, - "List": 1, - "INV": 24, - "linset_is_nil": 2, - "linset_isnot_nil": 2, - "linset_size": 2, - "size_t": 1, - "linset_is_member": 3, - "x0": 22, - "linset_isnot_member": 1, - "linset_copy": 2, - "linset_free": 2, - "linset_insert": 3, - "&": 17, - "linset_takeout": 1, - "res": 9, - "opt": 6, - "endfun": 1, - "linset_takeout_opt": 1, - "Option_vt": 4, - "linset_remove": 2, - "linset_choose": 3, - "linset_choose_opt": 1, - "linset_takeoutmax": 1, - "linset_takeoutmax_opt": 1, - "linset_takeoutmin": 1, - "linset_takeoutmin_opt": 1, - "fprint_linset": 3, - "sep": 1, - "FILEref": 2, - "overload": 1, - "with": 1, - "env": 11, - "vt0p": 2, - "linset_foreach": 3, - "fwork": 3, - "linset_foreach_env": 3, - "linset_listize": 2, - "List0_vt": 5, - "linset_listize1": 2, - "code": 6, - "reuse": 2, - "elt": 2, - "list_vt_nil": 16, - "list_vt_cons": 17, - "list_vt_is_nil": 1, - "list_vt_is_cons": 1, - "list_vt_length": 1, - "aux": 4, - "nat": 4, - ".": 14, - "": 3, - "list_vt": 7, - "sgn": 9, - "false": 6, - "list_vt_copy": 2, - "list_vt_free": 1, - "mynode_cons": 4, - "nx": 22, - "mynode1": 6, - "xs1": 15, - "UN.castvwtp0": 8, - "List1_vt": 5, - "@list_vt_cons": 5, - "xs2": 3, - "prval": 20, - "UN.cast2void": 5, - ";": 4, - "fold@": 8, - "ins": 3, - "tail": 1, - "recursive": 1, - "n1": 4, - "<=>": 1, - "1": 3, - "mynode_make_elt": 4, - "ans": 2, - "is": 26, - "found": 1, - "effmask_all": 3, - "free@": 1, - "xs1_": 3, - "rem": 1, - "*": 2, - "opt_some": 1, - "opt_none": 1, - "list_vt_foreach": 1, - "": 3, - "list_vt_foreach_env": 1, - "mynode_null": 5, - "mynode": 3, - "null": 1, - "the_null_ptr": 1, - "mynode_free": 1, - "nx2": 4, - "mynode_get_elt": 1, - "nx1": 7, - "UN.castvwtp1": 2, - "mynode_set_elt": 1, - "l": 3, - "__assert": 2, - "praxi": 1, - "mynode_getfree_elt": 1, - "linset_takeout_ngc": 2, - "takeout": 3, - "mynode0": 1, - "pf_x": 6, - "view@x": 3, - "pf_xs1": 6, - "view@xs1": 3, - "linset_takeoutmax_ngc": 2, - "xs_": 4, - "@list_vt_nil": 1, - "linset_takeoutmin_ngc": 2, - "unsnoc": 4, - "pos": 1, - "and": 10, - "fold@xs": 1, - "ATS_PACKNAME": 1, - "ATS_STALOADFLAG": 1, - "no": 2, - "static": 1, - "loading": 1, - "at": 2, - "run": 1, - "time": 1, - "castfn": 1, - "linset2list": 1, - "": 1, - "html": 1, - "PUBLIC": 1, - "W3C": 1, - "DTD": 2, - "XHTML": 1, - "EN": 1, - "http": 2, - "www": 1, - "w3": 1, - "org": 1, - "TR": 1, - "xhtml11": 2, - "dtd": 1, - "": 1, - "xmlns=": 1, - "": 1, - "": 1, - "equiv=": 1, - "content=": 1, - "": 1, - "EFFECTIVATS": 1, - "DiningPhil2": 1, - "": 1, - "#patscode_style": 1, - "": 1, - "": 1, - "

    ": 1, - "Effective": 1, - "ATS": 2, - "Dining": 2, - "Philosophers": 2, - "

    ": 1, - "In": 2, - "this": 2, - "article": 2, - "present": 1, - "an": 6, - "implementation": 3, - "slight": 1, - "variant": 1, - "the": 30, - "famous": 1, - "problem": 1, - "by": 4, - "Dijkstra": 1, - "that": 8, - "makes": 1, - "simple": 1, - "but": 1, - "convincing": 1, - "use": 1, - "linear": 2, - "types.": 1, - "

    ": 8, - "The": 8, - "Original": 2, - "Problem": 2, - "

    ": 8, - "There": 3, - "are": 7, - "five": 1, - "philosophers": 1, - "sitting": 1, - "around": 1, - "table": 3, - "there": 3, - "also": 3, - "forks": 7, - "placed": 1, - "on": 8, - "such": 1, - "each": 2, - "located": 2, - "between": 1, - "left": 3, - "hand": 6, - "philosopher": 5, - "right": 3, - "another": 1, - "philosopher.": 1, - "Each": 4, - "does": 1, - "following": 6, - "routine": 1, - "repeatedly": 1, - "thinking": 1, - "dining.": 1, - "order": 1, - "dine": 1, - "needs": 2, - "first": 2, - "acquire": 1, - "two": 3, - "one": 3, - "his": 4, - "side": 2, - "other": 2, - "side.": 2, - "After": 2, - "finishing": 1, - "dining": 1, - "puts": 2, - "acquired": 1, - "onto": 1, - "A": 6, - "Variant": 1, - "twist": 1, - "added": 1, - "original": 1, - "version": 1, - "

    ": 1, - "used": 1, - "it": 2, - "becomes": 1, - "be": 9, - "put": 1, - "tray": 2, - "for": 15, - "dirty": 2, - "forks.": 1, - "cleaner": 2, - "who": 1, - "cleans": 1, - "them": 2, - "back": 1, - "table.": 1, - "Channels": 1, - "Communication": 1, - "just": 1, - "shared": 1, - "queue": 1, - "fixed": 1, - "capacity.": 1, - "functions": 1, - "inserting": 1, - "element": 5, - "into": 3, - "taking": 1, - "given": 4, - "

    ": 7,
    -      "class=": 6,
    -      "#pats2xhtml_sats": 3,
    -      "
    ": 7, - "If": 2, - "called": 2, - "full": 4, - "caller": 2, - "blocked": 3, - "until": 2, - "taken": 1, - "channel.": 2, - "empty": 1, - "inserted": 1, - "Channel": 2, - "Fork": 3, - "Forks": 1, - "resources": 1, - "type.": 1, - "initially": 1, - "stored": 2, - "which": 2, - "can": 4, - "obtained": 2, - "calling": 2, - "function": 3, - "defined": 1, - "natural": 1, - "numbers": 1, - "less": 1, - "than": 1, - "channels": 4, - "storing": 3, - "chosen": 3, - "capacity": 3, - "reason": 1, - "store": 1, - "most": 1, - "guarantee": 1, - "these": 1, - "never": 2, - "so": 2, - "attempt": 1, - "made": 1, - "send": 1, - "signals": 1, - "awake": 1, - "callers": 1, - "supposedly": 1, - "being": 2, - "due": 1, - "Tray": 1, - "instead": 1, - "become": 1, - "as": 4, - "only": 1, - "total": 1, - "Philosopher": 1, - "Loop": 2, - "implemented": 2, - "loop": 2, - "#pats2xhtml_dats": 3, - "It": 2, - "should": 3, - "straighforward": 2, - "follow": 2, - "Cleaner": 1, - "finds": 1, - "number": 2, - "uses": 1, - "locate": 1, - "fork.": 1, - "Its": 1, - "actual": 1, - "follows": 1, - "now": 1, - "Testing": 1, - "entire": 1, - "files": 1, - "DiningPhil2.sats": 1, - "DiningPhil2.dats": 1, - "DiningPhil2_fork.dats": 1, - "DiningPhil2_thread.dats": 1, - "Makefile": 1, - "available": 1, - "compiling": 1, - "source": 1, - "excutable": 1, - "testing.": 1, - "One": 1, - "able": 1, - "encounter": 1, - "after": 1, - "running": 1, - "simulation": 1, - "while.": 1, - "
    ": 1, - "size=": 1, - "This": 1, - "written": 1, - "href=": 1, - "Hongwei": 1, - "Xi": 1, - "
    ": 1, - "": 1, - "": 1, - "main": 1, - "fprint_filsub": 1, - "option0": 3, - "functor_option0": 2, - "option0_map": 1, - "functor_homres": 2, - "c": 3, - "Yoneda_phi": 3, - "Yoneda_psi": 3, - "m": 4, - "mf": 4, - "natrans": 3, - "G": 2, - "Yoneda_phi_nat": 2, - "Yoneda_psi_nat": 2, - "list_t": 1, - "g0ofg1_list": 1, - "Yoneda_bool_list0": 3, - "myboolist1": 2 - }, - "Agda": { - "module": 3, - "NatCat": 1, - "where": 2, - "open": 2, - "import": 2, - "Relation.Binary.PropositionalEquality": 1, - "-": 21, - "If": 1, - "you": 2, - "can": 1, - "show": 1, - "that": 1, - "a": 1, - "relation": 1, - "only": 1, - "ever": 1, - "has": 1, - "one": 1, - "inhabitant": 5, - "get": 1, - "the": 1, - "category": 1, - "laws": 1, - "for": 1, - "free": 1, - "EasyCategory": 3, - "(": 36, - "obj": 4, - "Set": 2, - ")": 36, - "_": 6, - "{": 10, - "x": 34, - "y": 28, - "z": 18, - "}": 10, - "id": 9, - "single": 4, - "r": 26, - "s": 29, - "assoc": 2, - "w": 4, - "t": 6, - "Data.Nat": 1, - "same": 5, - ".0": 2, - "n": 14, - "refl": 6, - ".": 5, - "suc": 6, - "m": 6, - "cong": 1, - "trans": 5, - ".n": 1, - "zero": 1, - "Nat": 1 - }, - "Alloy": { - "module": 3, - "examples/systems/file_system": 1, - "abstract": 2, - "sig": 20, - "Object": 10, - "{": 54, - "}": 60, - "Name": 2, - "File": 1, - "extends": 10, - "some": 3, - "d": 3, - "Dir": 8, - "|": 19, - "this": 14, - "in": 19, - "d.entries.contents": 1, - "entries": 3, - "set": 10, - "DirEntry": 2, - "parent": 3, - "lone": 6, - "this.": 4, - "@contents.": 1, - "@entries": 1, - "all": 16, - "e1": 2, - "e2": 2, - "e1.name": 1, - "e2.name": 1, - "@parent": 2, - "Root": 5, - "one": 8, - "no": 8, - "Cur": 1, - "name": 1, - "contents": 2, - "pred": 16, - "OneParent_buggyVersion": 2, - "-": 41, - "d.parent": 2, - "OneParent_correctVersion": 2, - "(": 12, - "&&": 2, - "contents.d": 1, - ")": 9, - "NoDirAliases": 3, - "o": 1, - "o.": 1, - "check": 6, - "for": 7, - "expect": 6, - "examples/systems/marksweepgc": 1, - "Node": 10, - "HeapState": 5, - "left": 3, - "right": 1, - "marked": 1, - "freeList": 1, - "clearMarks": 1, - "[": 82, - "hs": 16, - ".marked": 3, - ".right": 4, - "hs.right": 3, - "fun": 1, - "reachable": 1, - "n": 5, - "]": 80, - "+": 14, - "n.": 1, - "hs.left": 2, - "mark": 1, - "from": 2, - "hs.reachable": 1, - "setFreeList": 1, - ".freeList.*": 3, - ".left": 5, - "hs.marked": 1, - "GC": 1, - "root": 5, - "assert": 3, - "Soundness1": 2, - "h": 9, - "live": 3, - "h.reachable": 1, - "h.right": 1, - "Soundness2": 2, - ".reachable": 2, - "h.GC": 1, - ".freeList": 1, - "Completeness": 1, - "examples/systems/views": 1, - "open": 2, - "util/ordering": 1, - "State": 16, - "as": 2, - "so": 1, - "util/relation": 1, - "rel": 1, - "Ref": 19, - "t": 16, - "b": 13, - "v": 25, - "views": 2, - "when": 1, - "is": 1, - "view": 2, - "of": 3, - "type": 1, - "backing": 1, - "dirty": 3, - "contains": 1, - "refs": 7, - "that": 1, - "have": 1, - "been": 1, - "invalidated": 1, - "obj": 1, - "ViewType": 8, - "anyviews": 2, - "visualization": 1, - "ViewType.views": 1, - "Map": 2, - "keys": 3, - "map": 2, - "s": 6, - "Ref.map": 1, - "s.refs": 3, - "MapRef": 4, - "fact": 4, - "State.obj": 3, - "Iterator": 2, - "done": 3, - "lastRef": 2, - "IteratorRef": 5, - "Set": 2, - "elts": 2, - "SetRef": 5, - "KeySetView": 6, - "State.views": 1, - "IteratorView": 3, - "s.views": 2, - "handle": 1, - "possibility": 1, - "modifying": 1, - "an": 1, - "object": 1, - "and": 1, - "its": 1, - "at": 1, - "once": 1, - "*": 1, - "should": 1, - "we": 1, - "limit": 1, - "frame": 1, - "conds": 1, - "to": 1, - "non": 1, - "*/": 1, - "modifies": 5, - "pre": 15, - "post": 14, - "rs": 4, - "let": 5, - "vr": 1, - "pre.views": 8, - "mods": 3, - "rs.*vr": 1, - "r": 3, - "pre.refs": 6, - "pre.obj": 10, - "post.obj": 7, - "viewFrame": 4, - "post.dirty": 1, - "pre.dirty": 1, - "allocates": 5, - "&": 3, - "post.refs": 1, - ".map": 3, - ".elts": 3, - "dom": 1, - "<:>": 1, - "setRefs": 1, - "MapRef.put": 1, - "k": 5, - "none": 4, - "post.views": 4, - "SetRef.iterator": 1, - "iterRef": 4, - "i": 7, - "i.left": 3, - "i.done": 1, - "i.lastRef": 1, - "IteratorRef.remove": 1, - ".lastRef": 2, - "IteratorRef.next": 1, - "ref": 3, - "IteratorRef.hasNext": 1, - "s.obj": 1, - "zippishOK": 2, - "ks": 6, - "vs": 6, - "m": 4, - "ki": 2, - "vi": 2, - "s0": 4, - "so/first": 1, - "s1": 4, - "so/next": 7, - "s2": 6, - "s3": 4, - "s4": 4, - "s5": 4, - "s6": 4, - "s7": 2, - "precondition": 2, - "s0.dirty": 1, - "ks.iterator": 1, - "vs.iterator": 1, - "ki.hasNext": 1, - "vi.hasNext": 1, - "ki.this/next": 1, - "vi.this/next": 1, - "m.put": 1, - "ki.remove": 1, - "vi.remove": 1, - "State.dirty": 1, - "ViewType.pre.views": 2, - "but": 1, - "#s.obj": 1, - "<": 1 - }, - "ApacheConf": { - "ServerSignature": 1, - "Off": 1, - "RewriteCond": 15, - "%": 48, - "{": 16, - "REQUEST_METHOD": 1, - "}": 16, - "(": 16, - "HEAD": 1, - "|": 80, - "TRACE": 1, - "DELETE": 1, - "TRACK": 1, - ")": 17, - "[": 17, - "NC": 13, - "OR": 14, - "]": 17, - "THE_REQUEST": 1, - "r": 1, - "n": 1, - "A": 6, - "D": 6, - "HTTP_REFERER": 1, - "<|>": 6, - "C": 5, - "E": 5, - "HTTP_COOKIE": 1, - "REQUEST_URI": 1, - "/": 3, - ";": 2, - "<": 1, - ".": 7, - "HTTP_USER_AGENT": 5, - "java": 1, - "curl": 2, - "wget": 2, - "winhttp": 1, - "HTTrack": 1, - "clshttp": 1, - "archiver": 1, - "loader": 1, - "email": 1, - "harvest": 1, - "extract": 1, - "grab": 1, - "miner": 1, - "libwww": 1, - "-": 43, - "perl": 1, - "python": 1, - "nikto": 1, - "scan": 1, - "#Block": 1, - "mySQL": 1, - "injects": 1, - "QUERY_STRING": 5, - ".*": 3, - "*": 1, - "union": 1, - "select": 1, - "insert": 1, - "cast": 1, - "set": 1, - "declare": 1, - "drop": 1, - "update": 1, - "md5": 1, - "benchmark": 1, - "./": 1, - "localhost": 1, - "loopback": 1, - ".0": 2, - ".1": 1, - "a": 1, - "z0": 1, - "RewriteRule": 1, - "index.php": 1, - "F": 1, - "#": 182, - "ServerRoot": 2, - "#Listen": 2, - "Listen": 2, - "LoadModule": 126, - "authn_file_module": 2, - "/usr/lib/apache2/modules/mod_authn_file.so": 1, - "authn_dbm_module": 2, - "/usr/lib/apache2/modules/mod_authn_dbm.so": 1, - "authn_anon_module": 2, - "/usr/lib/apache2/modules/mod_authn_anon.so": 1, - "authn_dbd_module": 2, - "/usr/lib/apache2/modules/mod_authn_dbd.so": 1, - "authn_default_module": 2, - "/usr/lib/apache2/modules/mod_authn_default.so": 1, - "authn_alias_module": 1, - "/usr/lib/apache2/modules/mod_authn_alias.so": 1, - "authz_host_module": 2, - "/usr/lib/apache2/modules/mod_authz_host.so": 1, - "authz_groupfile_module": 2, - "/usr/lib/apache2/modules/mod_authz_groupfile.so": 1, - "authz_user_module": 2, - "/usr/lib/apache2/modules/mod_authz_user.so": 1, - "authz_dbm_module": 2, - "/usr/lib/apache2/modules/mod_authz_dbm.so": 1, - "authz_owner_module": 2, - "/usr/lib/apache2/modules/mod_authz_owner.so": 1, - "authnz_ldap_module": 1, - "/usr/lib/apache2/modules/mod_authnz_ldap.so": 1, - "authz_default_module": 2, - "/usr/lib/apache2/modules/mod_authz_default.so": 1, - "auth_basic_module": 2, - "/usr/lib/apache2/modules/mod_auth_basic.so": 1, - "auth_digest_module": 2, - "/usr/lib/apache2/modules/mod_auth_digest.so": 1, - "file_cache_module": 1, - "/usr/lib/apache2/modules/mod_file_cache.so": 1, - "cache_module": 2, - "/usr/lib/apache2/modules/mod_cache.so": 1, - "disk_cache_module": 2, - "/usr/lib/apache2/modules/mod_disk_cache.so": 1, - "mem_cache_module": 2, - "/usr/lib/apache2/modules/mod_mem_cache.so": 1, - "dbd_module": 2, - "/usr/lib/apache2/modules/mod_dbd.so": 1, - "dumpio_module": 2, - "/usr/lib/apache2/modules/mod_dumpio.so": 1, - "ext_filter_module": 2, - "/usr/lib/apache2/modules/mod_ext_filter.so": 1, - "include_module": 2, - "/usr/lib/apache2/modules/mod_include.so": 1, - "filter_module": 2, - "/usr/lib/apache2/modules/mod_filter.so": 1, - "charset_lite_module": 1, - "/usr/lib/apache2/modules/mod_charset_lite.so": 1, - "deflate_module": 2, - "/usr/lib/apache2/modules/mod_deflate.so": 1, - "ldap_module": 1, - "/usr/lib/apache2/modules/mod_ldap.so": 1, - "log_forensic_module": 2, - "/usr/lib/apache2/modules/mod_log_forensic.so": 1, - "env_module": 2, - "/usr/lib/apache2/modules/mod_env.so": 1, - "mime_magic_module": 2, - "/usr/lib/apache2/modules/mod_mime_magic.so": 1, - "cern_meta_module": 2, - "/usr/lib/apache2/modules/mod_cern_meta.so": 1, - "expires_module": 2, - "/usr/lib/apache2/modules/mod_expires.so": 1, - "headers_module": 2, - "/usr/lib/apache2/modules/mod_headers.so": 1, - "ident_module": 2, - "/usr/lib/apache2/modules/mod_ident.so": 1, - "usertrack_module": 2, - "/usr/lib/apache2/modules/mod_usertrack.so": 1, - "unique_id_module": 2, - "/usr/lib/apache2/modules/mod_unique_id.so": 1, - "setenvif_module": 2, - "/usr/lib/apache2/modules/mod_setenvif.so": 1, - "version_module": 2, - "/usr/lib/apache2/modules/mod_version.so": 1, - "proxy_module": 2, - "/usr/lib/apache2/modules/mod_proxy.so": 1, - "proxy_connect_module": 2, - "/usr/lib/apache2/modules/mod_proxy_connect.so": 1, - "proxy_ftp_module": 2, - "/usr/lib/apache2/modules/mod_proxy_ftp.so": 1, - "proxy_http_module": 2, - "/usr/lib/apache2/modules/mod_proxy_http.so": 1, - "proxy_ajp_module": 2, - "/usr/lib/apache2/modules/mod_proxy_ajp.so": 1, - "proxy_balancer_module": 2, - "/usr/lib/apache2/modules/mod_proxy_balancer.so": 1, - "ssl_module": 4, - "/usr/lib/apache2/modules/mod_ssl.so": 1, - "mime_module": 4, - "/usr/lib/apache2/modules/mod_mime.so": 1, - "dav_module": 2, - "/usr/lib/apache2/modules/mod_dav.so": 1, - "status_module": 2, - "/usr/lib/apache2/modules/mod_status.so": 1, - "autoindex_module": 2, - "/usr/lib/apache2/modules/mod_autoindex.so": 1, - "asis_module": 2, - "/usr/lib/apache2/modules/mod_asis.so": 1, - "info_module": 2, - "/usr/lib/apache2/modules/mod_info.so": 1, - "suexec_module": 1, - "/usr/lib/apache2/modules/mod_suexec.so": 1, - "cgid_module": 3, - "/usr/lib/apache2/modules/mod_cgid.so": 1, - "cgi_module": 2, - "/usr/lib/apache2/modules/mod_cgi.so": 1, - "dav_fs_module": 2, - "/usr/lib/apache2/modules/mod_dav_fs.so": 1, - "dav_lock_module": 1, - "/usr/lib/apache2/modules/mod_dav_lock.so": 1, - "vhost_alias_module": 2, - "/usr/lib/apache2/modules/mod_vhost_alias.so": 1, - "negotiation_module": 2, - "/usr/lib/apache2/modules/mod_negotiation.so": 1, - "dir_module": 4, - "/usr/lib/apache2/modules/mod_dir.so": 1, - "imagemap_module": 2, - "/usr/lib/apache2/modules/mod_imagemap.so": 1, - "actions_module": 2, - "/usr/lib/apache2/modules/mod_actions.so": 1, - "speling_module": 2, - "/usr/lib/apache2/modules/mod_speling.so": 1, - "userdir_module": 2, - "/usr/lib/apache2/modules/mod_userdir.so": 1, - "alias_module": 4, - "/usr/lib/apache2/modules/mod_alias.so": 1, - "rewrite_module": 2, - "/usr/lib/apache2/modules/mod_rewrite.so": 1, - "": 17, - "mpm_netware_module": 2, - "User": 2, - "daemon": 2, - "Group": 2, - "": 17, - "ServerAdmin": 2, - "you@example.com": 2, - "#ServerName": 2, - "www.example.com": 2, - "DocumentRoot": 2, - "": 6, - "Options": 6, - "FollowSymLinks": 4, - "AllowOverride": 6, - "None": 8, - "Order": 10, - "deny": 10, - "allow": 10, - "Deny": 6, - "from": 10, - "all": 10, - "": 6, - "usr": 2, - "share": 1, - "apache2": 1, - "default": 1, - "site": 1, - "htdocs": 1, - "Indexes": 2, - "Allow": 4, - "DirectoryIndex": 2, - "index.html": 2, - "": 2, - "ht": 1, - "Satisfy": 4, - "All": 4, - "": 2, - "ErrorLog": 2, - "/var/log/apache2/error_log": 1, - "LogLevel": 2, - "warn": 2, - "log_config_module": 3, - "LogFormat": 6, - "combined": 4, - "common": 4, - "logio_module": 3, - "combinedio": 2, - "CustomLog": 2, - "/var/log/apache2/access_log": 2, - "#CustomLog": 2, - "ScriptAlias": 1, - "/cgi": 2, - "bin/": 2, - "#Scriptsock": 2, - "/var/run/apache2/cgisock": 1, - "lib": 1, - "cgi": 3, - "bin": 1, - "DefaultType": 2, - "text/plain": 2, - "TypesConfig": 2, - "/etc/apache2/mime.types": 1, - "#AddType": 4, - "application/x": 6, - "gzip": 6, - ".tgz": 6, - "#AddEncoding": 4, - "x": 4, - "compress": 4, - ".Z": 4, - ".gz": 4, - "AddType": 4, - "#AddHandler": 4, - "script": 2, - ".cgi": 2, - "type": 2, - "map": 2, - "var": 2, - "text/html": 2, - ".shtml": 4, - "#AddOutputFilter": 2, - "INCLUDES": 2, - "#MIMEMagicFile": 2, - "/etc/apache2/magic": 1, - "#ErrorDocument": 8, - "/missing.html": 2, - "http": 2, - "//www.example.com/subscription_info.html": 2, - "#EnableMMAP": 2, - "off": 5, - "#EnableSendfile": 2, - "#Include": 17, - "/etc/apache2/extra/httpd": 11, - "mpm.conf": 2, - "multilang": 2, - "errordoc.conf": 2, - "autoindex.conf": 2, - "languages.conf": 2, - "userdir.conf": 2, - "info.conf": 2, - "vhosts.conf": 2, - "manual.conf": 2, - "dav.conf": 2, - "default.conf": 2, - "ssl.conf": 2, - "SSLRandomSeed": 4, - "startup": 2, - "builtin": 4, - "connect": 2, - "libexec/apache2/mod_authn_file.so": 1, - "libexec/apache2/mod_authn_dbm.so": 1, - "libexec/apache2/mod_authn_anon.so": 1, - "libexec/apache2/mod_authn_dbd.so": 1, - "libexec/apache2/mod_authn_default.so": 1, - "libexec/apache2/mod_authz_host.so": 1, - "libexec/apache2/mod_authz_groupfile.so": 1, - "libexec/apache2/mod_authz_user.so": 1, - "libexec/apache2/mod_authz_dbm.so": 1, - "libexec/apache2/mod_authz_owner.so": 1, - "libexec/apache2/mod_authz_default.so": 1, - "libexec/apache2/mod_auth_basic.so": 1, - "libexec/apache2/mod_auth_digest.so": 1, - "libexec/apache2/mod_cache.so": 1, - "libexec/apache2/mod_disk_cache.so": 1, - "libexec/apache2/mod_mem_cache.so": 1, - "libexec/apache2/mod_dbd.so": 1, - "libexec/apache2/mod_dumpio.so": 1, - "reqtimeout_module": 1, - "libexec/apache2/mod_reqtimeout.so": 1, - "libexec/apache2/mod_ext_filter.so": 1, - "libexec/apache2/mod_include.so": 1, - "libexec/apache2/mod_filter.so": 1, - "substitute_module": 1, - "libexec/apache2/mod_substitute.so": 1, - "libexec/apache2/mod_deflate.so": 1, - "libexec/apache2/mod_log_config.so": 1, - "libexec/apache2/mod_log_forensic.so": 1, - "libexec/apache2/mod_logio.so": 1, - "libexec/apache2/mod_env.so": 1, - "libexec/apache2/mod_mime_magic.so": 1, - "libexec/apache2/mod_cern_meta.so": 1, - "libexec/apache2/mod_expires.so": 1, - "libexec/apache2/mod_headers.so": 1, - "libexec/apache2/mod_ident.so": 1, - "libexec/apache2/mod_usertrack.so": 1, - "#LoadModule": 4, - "libexec/apache2/mod_unique_id.so": 1, - "libexec/apache2/mod_setenvif.so": 1, - "libexec/apache2/mod_version.so": 1, - "libexec/apache2/mod_proxy.so": 1, - "libexec/apache2/mod_proxy_connect.so": 1, - "libexec/apache2/mod_proxy_ftp.so": 1, - "libexec/apache2/mod_proxy_http.so": 1, - "proxy_scgi_module": 1, - "libexec/apache2/mod_proxy_scgi.so": 1, - "libexec/apache2/mod_proxy_ajp.so": 1, - "libexec/apache2/mod_proxy_balancer.so": 1, - "libexec/apache2/mod_ssl.so": 1, - "libexec/apache2/mod_mime.so": 1, - "libexec/apache2/mod_dav.so": 1, - "libexec/apache2/mod_status.so": 1, - "libexec/apache2/mod_autoindex.so": 1, - "libexec/apache2/mod_asis.so": 1, - "libexec/apache2/mod_info.so": 1, - "libexec/apache2/mod_cgi.so": 1, - "libexec/apache2/mod_dav_fs.so": 1, - "libexec/apache2/mod_vhost_alias.so": 1, - "libexec/apache2/mod_negotiation.so": 1, - "libexec/apache2/mod_dir.so": 1, - "libexec/apache2/mod_imagemap.so": 1, - "libexec/apache2/mod_actions.so": 1, - "libexec/apache2/mod_speling.so": 1, - "libexec/apache2/mod_userdir.so": 1, - "libexec/apache2/mod_alias.so": 1, - "libexec/apache2/mod_rewrite.so": 1, - "perl_module": 1, - "libexec/apache2/mod_perl.so": 1, - "php5_module": 1, - "libexec/apache2/libphp5.so": 1, - "hfs_apple_module": 1, - "libexec/apache2/mod_hfs_apple.so": 1, - "mpm_winnt_module": 1, - "_www": 2, - "Library": 2, - "WebServer": 2, - "Documents": 1, - "MultiViews": 1, - "Hh": 1, - "Tt": 1, - "Dd": 1, - "Ss": 2, - "_": 1, - "": 1, - "rsrc": 1, - "": 1, - "": 1, - "namedfork": 1, - "": 1, - "ScriptAliasMatch": 1, - "i": 1, - "webobjects": 1, - "/private/var/run/cgisock": 1, - "CGI": 1, - "Executables": 1, - "/private/etc/apache2/mime.types": 1, - "/private/etc/apache2/magic": 1, - "#MaxRanges": 1, - "unlimited": 1, - "TraceEnable": 1, - "Include": 6, - "/private/etc/apache2/extra/httpd": 11, - "/private/etc/apache2/other/*.conf": 1 - }, - "Apex": { - "global": 70, - "class": 7, - "ArrayUtils": 1, - "{": 219, - "static": 83, - "String": 60, - "[": 102, - "]": 102, - "EMPTY_STRING_ARRAY": 1, - "new": 60, - "}": 219, - ";": 308, - "Integer": 34, - "MAX_NUMBER_OF_ELEMENTS_IN_LIST": 5, - "get": 4, - "return": 106, - "List": 71, - "": 30, - "objectToString": 1, - "(": 481, - "": 22, - "objects": 3, - ")": 481, - "strings": 3, - "null": 92, - "if": 91, - "objects.size": 1, - "for": 24, - "Object": 23, - "obj": 3, - "instanceof": 1, - "strings.add": 1, - "reverse": 2, - "anArray": 14, - "i": 55, - "j": 10, - "anArray.size": 2, - "-": 18, - "tmp": 6, - "while": 8, - "+": 75, - "SObject": 19, - "lowerCase": 1, - "strs": 9, - "returnValue": 22, - "strs.size": 3, - "str": 10, - "returnValue.add": 3, - "str.toLowerCase": 1, - "upperCase": 1, - "str.toUpperCase": 1, - "trim": 1, - "str.trim": 3, - "mergex": 2, - "array1": 8, - "array2": 9, - "merged": 6, - "array1.size": 4, - "array2.size": 2, - "<": 32, - "": 19, - "sObj": 4, - "merged.add": 2, - "Boolean": 38, - "isEmpty": 7, - "objectArray": 17, - "true": 12, - "objectArray.size": 6, - "isNotEmpty": 4, - "pluck": 1, - "fieldName": 3, - "||": 12, - "fieldName.trim": 2, - ".length": 2, - "plucked": 3, - ".get": 4, - "toString": 3, - "void": 9, - "assertArraysAreEqual": 2, - "expected": 16, - "actual": 16, - "//check": 2, - "to": 4, - "see": 2, - "one": 2, - "param": 2, - "is": 5, - "but": 2, - "the": 4, - "other": 2, - "not": 3, - "System.assert": 6, - "&&": 46, - "ArrayUtils.toString": 12, - "expected.size": 4, - "actual.size": 2, - "merg": 2, - "list1": 15, - "list2": 9, - "returnList": 11, - "list1.size": 6, - "list2.size": 2, - "throw": 6, - "IllegalArgumentException": 5, - "elmt": 8, - "returnList.add": 8, - "subset": 6, - "aList": 4, - "count": 10, - "startIndex": 9, - "<=>": 2, - "size": 2, - "1": 2, - "list1.get": 2, - "//": 11, - "//LIST/ARRAY": 1, - "SORTING": 1, - "//FOR": 2, - "FORCE.COM": 1, - "PRIMITIVES": 1, - "Double": 1, - "ID": 1, - "etc.": 1, - "qsort": 18, - "theList": 72, - "PrimitiveComparator": 2, - "sortAsc": 24, - "ObjectComparator": 3, - "comparator": 14, - "theList.size": 2, - "SALESFORCE": 1, - "OBJECTS": 1, - "sObjects": 1, - "ISObjectComparator": 3, - "private": 10, - "lo0": 6, - "hi0": 8, - "lo": 42, - "hi": 50, - "else": 25, - "comparator.compare": 12, - "prs": 8, - "pivot": 14, - "/": 4, - "BooleanUtils": 1, - "isFalse": 1, - "bool": 32, - "false": 13, - "isNotFalse": 1, - "isNotTrue": 1, - "isTrue": 1, - "negate": 1, - "toBooleanDefaultIfNull": 1, - "defaultVal": 2, - "toBoolean": 2, - "value": 10, - "strToBoolean": 1, - "StringUtils.equalsIgnoreCase": 1, - "//Converts": 1, - "an": 4, - "int": 1, - "a": 6, - "boolean": 1, - "specifying": 1, - "//the": 2, - "conversion": 1, - "values.": 1, - "//Returns": 1, - "//Throws": 1, - "trueValue": 2, - "falseValue": 2, - "toInteger": 1, - "toStringYesNo": 1, - "toStringYN": 1, - "trueString": 2, - "falseString": 2, - "xor": 1, - "boolArray": 4, - "boolArray.size": 1, - "firstItem": 2, - "EmailUtils": 1, - "sendEmailWithStandardAttachments": 3, - "recipients": 11, - "emailSubject": 10, - "body": 8, - "useHTML": 6, - "": 1, - "attachmentIDs": 2, - "": 2, - "stdAttachments": 4, - "SELECT": 1, - "id": 1, - "name": 2, - "FROM": 1, - "Attachment": 2, - "WHERE": 1, - "Id": 1, - "IN": 1, - "": 3, - "fileAttachments": 5, - "attachment": 1, - "Messaging.EmailFileAttachment": 2, - "fileAttachment": 2, - "fileAttachment.setFileName": 1, - "attachment.Name": 1, - "fileAttachment.setBody": 1, - "attachment.Body": 1, - "fileAttachments.add": 1, - "sendEmail": 4, - "sendTextEmail": 1, - "textBody": 2, - "sendHTMLEmail": 1, - "htmlBody": 2, - "recipients.size": 1, - "Messaging.SingleEmailMessage": 3, - "mail": 2, - "email": 1, - "saved": 1, - "as": 1, - "activity.": 1, - "mail.setSaveAsActivity": 1, - "mail.setToAddresses": 1, - "mail.setSubject": 1, - "mail.setBccSender": 1, - "mail.setUseSignature": 1, - "mail.setHtmlBody": 1, - "mail.setPlainTextBody": 1, - "fileAttachments.size": 1, - "mail.setFileAttachments": 1, - "Messaging.sendEmail": 1, - "isValidEmailAddress": 2, - "split": 5, - "str.split": 1, - "split.size": 2, - ".split": 1, - "isNotValidEmailAddress": 1, - "public": 10, - "GeoUtils": 1, - "generate": 1, - "KML": 1, - "string": 7, - "given": 2, - "page": 1, - "reference": 1, - "call": 1, - "getContent": 1, - "then": 1, - "cleanup": 1, - "output.": 1, - "generateFromContent": 1, - "PageReference": 2, - "pr": 1, - "ret": 7, - "try": 1, - "pr.getContent": 1, - ".toString": 1, - "ret.replaceAll": 4, - "content": 1, - "produces": 1, - "quote": 1, - "chars": 1, - "we": 1, - "need": 1, - "escape": 1, - "these": 2, - "in": 1, - "node": 1, - "catch": 1, - "exception": 1, - "e": 2, - "system.debug": 2, - "must": 1, - "use": 1, - "ALL": 1, - "since": 1, - "many": 1, - "line": 1, - "may": 1, - "also": 1, - "Map": 33, - "": 2, - "geo_response": 1, - "accountAddressString": 2, - "account": 2, - "acct": 1, - "form": 1, - "address": 1, - "object": 1, - "adr": 9, - "acct.billingstreet": 1, - "acct.billingcity": 1, - "acct.billingstate": 1, - "acct.billingpostalcode": 2, - "acct.billingcountry": 2, - "adr.replaceAll": 4, - "testmethod": 1, - "t1": 1, - "pageRef": 3, - "Page.kmlPreviewTemplate": 1, - "Test.setCurrentPage": 1, - "system.assert": 1, - "GeoUtils.generateFromContent": 1, - "Account": 2, - "billingstreet": 1, - "billingcity": 1, - "billingstate": 1, - "billingpostalcode": 1, - "billingcountry": 1, - "insert": 1, - "system.assertEquals": 1, - "LanguageUtils": 1, - "final": 6, - "HTTP_LANGUAGE_CODE_PARAMETER_KEY": 2, - "DEFAULT_LANGUAGE_CODE": 3, - "Set": 6, - "SUPPORTED_LANGUAGE_CODES": 2, - "//Chinese": 2, - "Simplified": 1, - "Traditional": 1, - "//Dutch": 1, - "//English": 1, - "//Finnish": 1, - "//French": 1, - "//German": 1, - "//Italian": 1, - "//Japanese": 1, - "//Korean": 1, - "//Polish": 1, - "//Portuguese": 1, - "Brazilian": 1, - "//Russian": 1, - "//Spanish": 1, - "//Swedish": 1, - "//Thai": 1, - "//Czech": 1, - "//Danish": 1, - "//Hungarian": 1, - "//Indonesian": 1, - "//Turkish": 1, - "": 29, - "DEFAULTS": 1, - "getLangCodeByHttpParam": 4, - "LANGUAGE_CODE_SET": 1, - "getSuppLangCodeSet": 2, - "ApexPages.currentPage": 4, - ".getParameters": 2, - "LANGUAGE_HTTP_PARAMETER": 7, - "StringUtils.lowerCase": 3, - "StringUtils.replaceChars": 2, - "//underscore": 1, - "//dash": 1, - "DEFAULTS.containsKey": 3, - "DEFAULTS.get": 3, - "StringUtils.isNotBlank": 1, - "SUPPORTED_LANGUAGE_CODES.contains": 2, - "getLangCodeByBrowser": 4, - "LANGUAGES_FROM_BROWSER_AS_STRING": 2, - ".getHeaders": 1, - "LANGUAGES_FROM_BROWSER_AS_LIST": 3, - "splitAndFilterAcceptLanguageHeader": 2, - "LANGUAGES_FROM_BROWSER_AS_LIST.size": 1, - "languageFromBrowser": 6, - "getLangCodeByUser": 3, - "UserInfo.getLanguage": 1, - "getLangCodeByHttpParamOrIfNullThenBrowser": 1, - "StringUtils.defaultString": 4, - "getLangCodeByHttpParamOrIfNullThenUser": 1, - "getLangCodeByBrowserOrIfNullThenHttpParam": 1, - "getLangCodeByBrowserOrIfNullThenUser": 1, - "header": 2, - "tokens": 3, - "StringUtils.split": 1, - "token": 7, - "token.contains": 1, - "token.substring": 1, - "token.indexOf": 1, - "StringUtils.length": 1, - "StringUtils.substring": 1, - "langCodes": 2, - "langCode": 3, - "langCodes.add": 1, - "getLanguageName": 1, - "displayLanguageCode": 13, - "languageCode": 2, - "translatedLanguageNames.get": 2, - "filterLanguageCode": 4, - "getAllLanguages": 3, - "translatedLanguageNames.containsKey": 1, - "translatedLanguageNames": 1, - "TwilioAPI": 2, - "MissingTwilioConfigCustomSettingsException": 2, - "extends": 1, - "Exception": 1, - "TwilioRestClient": 5, - "client": 2, - "getDefaultClient": 2, - "TwilioConfig__c": 5, - "twilioCfg": 7, - "getTwilioConfig": 3, - "TwilioAPI.client": 2, - "twilioCfg.AccountSid__c": 3, - "twilioCfg.AuthToken__c": 3, - "TwilioAccount": 1, - "getDefaultAccount": 1, - ".getAccount": 2, - "TwilioCapability": 2, - "createCapability": 1, - "createClient": 1, - "accountSid": 2, - "authToken": 2, - "Test.isRunningTest": 1, - "dummy": 2, - "sid": 1, - "TwilioConfig__c.getOrgDefaults": 1, - "@isTest": 1, - "test_TwilioAPI": 1, - "System.assertEquals": 5, - "TwilioAPI.getTwilioConfig": 2, - ".AccountSid__c": 1, - ".AuthToken__c": 1, - "TwilioAPI.getDefaultClient": 2, - ".getAccountSid": 1, - ".getSid": 2, - "TwilioAPI.getDefaultAccount": 1 - }, - "AppleScript": { - "set": 108, - "windowWidth": 3, - "to": 128, - "windowHeight": 3, - "delay": 3, - "AppleScript": 2, - "s": 3, - "text": 13, - "item": 13, - "delimiters": 1, - "tell": 40, - "application": 16, - "screen_width": 2, - "(": 89, - "do": 4, - "JavaScript": 2, - "in": 13, - "document": 2, - ")": 88, - "screen_height": 2, - "end": 67, - "myFrontMost": 3, - "name": 8, - "of": 72, - "first": 1, - "processes": 2, - "whose": 1, - "frontmost": 1, - "is": 40, - "true": 8, - "{": 32, - "desktopTop": 2, - "desktopLeft": 1, - "desktopRight": 1, - "desktopBottom": 1, - "}": 32, - "bounds": 2, - "desktop": 1, - "try": 10, - "process": 5, - "w": 5, - "h": 4, - "size": 5, - "drawer": 2, - "window": 5, - "on": 18, - "error": 3, - "position": 1, - "-": 57, - "/": 2, - "property": 7, - "type_list": 6, - "extension_list": 6, - "html": 2, - "not": 5, - "currently": 2, - "handled": 2, - "run": 4, - "FinderSelection": 4, - "the": 56, - "selection": 2, - "as": 27, - "alias": 8, - "list": 9, - "FS": 10, - "Ideally": 2, - "this": 2, - "could": 2, - "be": 2, - "passed": 2, - "open": 8, - "handler": 2, - "SelectionCount": 6, - "number": 6, - "count": 10, - "if": 50, - "then": 28, - "userPicksFolder": 6, - "else": 14, - "MyPath": 4, - "path": 6, - "me": 2, - "If": 2, - "I": 2, - "m": 2, - "a": 4, - "double": 2, - "clicked": 2, - "droplet": 2, - "these_items": 18, - "choose": 2, - "file": 6, - "with": 11, - "prompt": 2, - "type": 6, - "thesefiles": 2, - "item_info": 24, - "repeat": 19, - "i": 10, - "from": 9, - "this_item": 14, - "info": 4, - "for": 5, - "folder": 10, - "processFolder": 8, - "false": 9, - "and": 7, - "or": 6, - "extension": 4, - "theFilePath": 8, - "string": 17, - "thePOSIXFilePath": 8, - "POSIX": 4, - "processFile": 8, - "folders": 2, - "theFolder": 6, - "without": 2, - "invisibles": 2, - "&": 63, - "thePOSIXFileName": 6, - "terminalCommand": 6, - "convertCommand": 4, - "newFileName": 4, - "shell": 2, - "script": 2, - "need": 1, - "pass": 1, - "URL": 1, - "Terminal": 1, - "localMailboxes": 3, - "every": 3, - "mailbox": 2, - "greater": 5, - "than": 6, - "messageCountDisplay": 5, - "return": 16, - "my": 3, - "getMessageCountsForMailboxes": 4, - "everyAccount": 2, - "account": 1, - "eachAccount": 3, - "accountMailboxes": 3, - "outputMessage": 2, - "make": 3, - "new": 2, - "outgoing": 2, - "message": 2, - "properties": 2, - "content": 2, - "subject": 1, - "visible": 2, - "font": 2, - "theMailboxes": 2, - "mailboxes": 1, - "returns": 2, - "displayString": 4, - "eachMailbox": 4, - "mailboxName": 2, - "messageCount": 2, - "messages": 1, - "unreadCount": 2, - "unread": 1, - "padString": 3, - "theString": 4, - "fieldLength": 5, - "integer": 3, - "stringLength": 4, - "length": 1, - "paddedString": 5, - "character": 2, - "less": 1, - "equal": 3, - "paddingLength": 2, - "times": 1, - "space": 1, - "lowFontSize": 9, - "highFontSize": 6, - "messageText": 4, - "userInput": 4, - "display": 4, - "dialog": 4, - "default": 4, - "answer": 3, - "buttons": 3, - "button": 4, - "returned": 5, - "minimumFontSize": 4, - "newFontSize": 6, - "result": 2, - "theText": 3, - "exit": 1, - "fontList": 2, - "activate": 3, - "crazyTextMessage": 2, - "eachCharacter": 4, - "characters": 1, - "some": 1, - "random": 4, - "color": 1, - "current": 3, - "pane": 4, - "UI": 1, - "elements": 1, - "enabled": 2, - "tab": 1, - "group": 1, - "click": 1, - "radio": 1, - "get": 1, - "value": 1, - "field": 1, - "isVoiceOverRunning": 3, - "isRunning": 3, - "contains": 1, - "isVoiceOverRunningWithAppleScript": 3, - "isRunningWithAppleScript": 3, - "VoiceOver": 1, - "x": 1, - "vo": 1, - "cursor": 1, - "currentDate": 3, - "date": 1, - "amPM": 4, - "currentHour": 9, - "minutes": 2, - "<": 2, - "below": 1, - "sound": 1, - "nice": 1, - "currentMinutes": 4, - "ensure": 1, - "nn": 2, - "gets": 1, - "AM": 1, - "readjust": 1, - "hour": 1, - "time": 1, - "currentTime": 3, - "day": 1, - "output": 1, - "say": 1 - }, - "Arduino": { - "void": 2, - "setup": 1, - "(": 4, - ")": 4, - "{": 2, - "Serial.begin": 1, - ";": 2, - "}": 2, - "loop": 1, - "Serial.print": 1 - }, - "AsciiDoc": { - "Gregory": 2, - "Rom": 2, - "has": 2, - "written": 2, - "an": 2, - "AsciiDoc": 3, - "plugin": 2, - "for": 2, - "the": 2, - "Redmine": 2, - "project": 2, - "management": 2, - "application.": 2, - "https": 1, - "//github.com/foo": 1, - "-": 4, - "users/foo": 1, - "vicmd": 1, - "gif": 1, - "tag": 1, - "rom": 2, - "[": 2, - "]": 2, - "end": 1, - "berschrift": 1, - "*": 4, - "Codierungen": 1, - "sind": 1, - "verr": 1, - "ckt": 1, - "auf": 1, - "lteren": 1, - "Versionen": 1, - "von": 1, - "Ruby": 1, - "Home": 1, - "Page": 1, - "Example": 1, - "Articles": 1, - "Item": 6, - "Document": 1, - "Title": 1, - "Doc": 1, - "Writer": 1, - "": 1, - "idprefix": 1, - "id_": 1, - "Preamble": 1, - "paragraph.": 4, - "NOTE": 1, - "This": 1, - "is": 1, - "test": 1, - "only": 1, - "a": 1, - "test.": 1, - "Section": 3, - "A": 2, - "*Section": 3, - "A*": 2, - "Subsection": 1, - "B": 2, - "B*": 1, - ".Section": 1, - "list": 1 - }, - "AspectJ": { - "package": 2, - "com.blogspot.miguelinlas3.aspectj.cache": 1, - ";": 29, - "import": 5, - "java.util.Map": 2, - "java.util.WeakHashMap": 1, - "org.aspectj.lang.JoinPoint": 1, - "com.blogspot.miguelinlas3.aspectj.cache.marker.Cachable": 1, - "public": 6, - "aspect": 2, - "CacheAspect": 1, - "{": 11, - "pointcut": 3, - "cache": 3, - "(": 46, - "Cachable": 2, - "cachable": 5, - ")": 46, - "execution": 1, - "@Cachable": 2, - "*": 2, - "..": 1, - "&&": 2, - "@annotation": 1, - "Object": 15, - "around": 2, - "String": 3, - "evaluatedKey": 6, - "this.evaluateKey": 1, - "cachable.scriptKey": 1, - "thisJoinPoint": 1, - "if": 2, - "cache.containsKey": 1, - "System.out.println": 5, - "+": 7, - "return": 5, - "this.cache.get": 1, - "}": 11, - "value": 3, - "proceed": 2, - "cache.put": 1, - "protected": 2, - "evaluateKey": 1, - "key": 2, - "JoinPoint": 1, - "joinPoint": 1, - "//": 1, - "TODO": 1, - "add": 1, - "some": 1, - "smart": 1, - "staff": 1, - "to": 1, - "allow": 1, - "simple": 1, - "scripting": 1, - "in": 1, - "annotation": 1, - "Map": 3, - "": 2, - "new": 1, - "WeakHashMap": 1, - "aspects.caching": 1, - "abstract": 3, - "OptimizeRecursionCache": 2, - "@SuppressWarnings": 3, - "private": 1, - "_cache": 2, - "getCache": 2, - "operation": 4, - "o": 16, - "topLevelOperation": 4, - "cflowbelow": 1, - "before": 1, - "cachedValue": 4, - "_cache.get": 1, - "null": 1, - "after": 2, - "returning": 2, - "result": 3, - "_cache.put": 1, - "_cache.size": 1 - }, - "Assembly": { - ";": 3, - "flat": 1, - "assembler": 2, - "interface": 1, - "for": 1, - "Win32": 1, - "Copyright": 1, - "(": 2, - "c": 1, - ")": 2, - "-": 2, - "Tomasz": 1, - "Grysztar.": 1, - "All": 1, - "rights": 1, - "reserved.": 1, - "format": 1, - "PE": 1, - "console": 1, - "section": 4, - "code": 1, - "readable": 4, - "executable": 1, - "start": 1, - "mov": 28, - "[": 25, - "con_handle": 2, - "]": 25, - "STD_OUTPUT_HANDLE": 1, - "esi": 12, - "_logo": 2, - "call": 25, - "display_string": 7, - "get_params": 2, - "jc": 3, - "information": 2, - "init_memory": 1, - "_memory_prefix": 2, - "eax": 18, - "memory_end": 1, - "sub": 4, - "memory_start": 1, - "add": 2, - "additional_memory_end": 1, - "additional_memory": 1, - "shr": 1, - "display_number": 5, - "_memory_suffix": 2, - "GetTickCount": 3, - "start_time": 3, - "preprocessor": 1, - "parser": 1, - "formatter": 1, - "display_user_messages": 1, - "movzx": 1, - "current_pass": 1, - "inc": 1, - "_passes_suffix": 2, - "xor": 5, - "edx": 15, - "ebx": 4, - "div": 2, - "or": 11, - "jz": 11, - "display_bytes_count": 2, - "push": 1, - "dl": 1, - "display_character": 1, - "pop": 1, - "_seconds_suffix": 2, - "written_size": 1, - "_bytes_suffix": 2, - "al": 48, - "jmp": 12, - "exit_program": 2, - "_usage": 2, - "input_file": 4, - "output_file": 3, - "symbols_file": 2, - "memory_setting": 3, - "passes_limit": 2, - "GetCommandLine": 2, - "edi": 4, - "params": 2, - "find_command_start": 2, - "lodsb": 11, - "cmp": 31, - "h": 18, - "je": 25, - "skip_quoted_name": 3, - "skip_name": 2, - "find_param": 7, - "all_params": 5, - "option_param": 2, - "Dh": 15, - "jne": 3, - "get_output_file": 2, - "process_param": 3, - "bad_params": 11, - "string_param": 3, - "copy_param": 2, - "stosb": 3, - "param_end": 6, - "string_param_end": 2, - "memory_option": 4, - "passes_option": 4, - "symbols_option": 3, - "stc": 2, - "ret": 4, - "get_option_value": 3, - "get_option_digit": 2, - "option_value_ok": 4, - "invalid_option_value": 5, - "ja": 2, - "imul": 1, - "jo": 1, - "dec": 4, - "clc": 2, - "shl": 1, - "jae": 1, - "dx": 1, - "find_symbols_file_name": 2, - "include": 15, - "data": 3, - "writeable": 2, - "_copyright": 1, - "db": 30, - "Ah": 9, - "VERSION_STRING": 1, - "align": 1, - "dd": 22, - "bytes_count": 1, - "displayed_count": 1, - "character": 1, - "last_displayed": 1, - "rb": 4, - "options": 1, - "buffer": 1, - "stack": 1, - "import": 1, - "rva": 16, - "kernel_name": 2, - "kernel_table": 2, - "ExitProcess": 1, - "_ExitProcess": 2, - "CreateFile": 1, - "_CreateFileA": 2, - "ReadFile": 1, - "_ReadFile": 2, - "WriteFile": 1, - "_WriteFile": 2, - "CloseHandle": 1, - "_CloseHandle": 2, - "SetFilePointer": 1, - "_SetFilePointer": 2, - "_GetCommandLineA": 2, - "GetEnvironmentVariable": 1, - "_GetEnvironmentVariable": 2, - "GetStdHandle": 1, - "_GetStdHandle": 2, - "VirtualAlloc": 1, - "_VirtualAlloc": 2, - "VirtualFree": 1, - "_VirtualFree": 2, - "_GetTickCount": 2, - "GetSystemTime": 1, - "_GetSystemTime": 2, - "GlobalMemoryStatus": 1, - "_GlobalMemoryStatus": 2, - "dw": 14, - "fixups": 1, - "discardable": 1 - }, - "AutoHotkey": { - "MsgBox": 1, - "Hello": 1, - "World": 1 - }, - "Awk": { - "SHEBANG#!awk": 1, - "BEGIN": 1, - "{": 17, - "n": 13, - ";": 55, - "printf": 1, - "network_max_bandwidth_in_byte": 3, - "network_max_packet_per_second": 3, - "last3": 3, - "last4": 3, - "last5": 3, - "last6": 3, - "}": 17, - "if": 14, - "(": 14, - "/Average/": 1, - ")": 14, - "#": 48, - "Skip": 1, - "the": 12, - "Average": 1, - "values": 1, - "next": 1, - "/all/": 1, - "This": 8, - "is": 7, - "cpu": 1, - "info": 7, - "print": 35, - "FILENAME": 35, - "-": 2, - "/eth0/": 1, - "eth0": 1, - "network": 1, - "Total": 9, - "number": 9, - "of": 22, - "packets": 4, - "received": 4, - "per": 14, - "second.": 8, - "else": 4, - "transmitted": 4, - "bytes": 4, - "/proc": 1, - "|": 4, - "cswch": 1, - "tps": 1, - "kbmemfree": 1, - "totsck/": 1, - "/": 2, - "[": 1, - "]": 1, - "proc/s": 1, - "context": 1, - "switches": 1, - "second": 6, - "disk": 1, - "total": 1, - "transfers": 1, - "read": 1, - "requests": 2, - "write": 1, - "block": 2, - "reads": 1, - "writes": 1, - "mem": 1, - "Amount": 7, - "free": 2, - "memory": 6, - "available": 1, - "in": 11, - "kilobytes.": 7, - "used": 8, - "does": 1, - "not": 1, - "take": 1, - "into": 1, - "account": 1, - "by": 4, - "kernel": 3, - "itself.": 1, - "Percentage": 2, - "memory.": 1, - "X": 1, - "shared": 1, - "system": 1, - "Always": 1, - "zero": 1, - "with": 1, - "kernels.": 1, - "as": 1, - "buffers": 1, - "to": 1, - "cache": 1, - "data": 1, - "swap": 3, - "space": 2, - "space.": 1, - "socket": 1, - "sockets.": 1, - "Number": 4, - "TCP": 1, - "sockets": 3, - "currently": 4, - "use.": 4, - "UDP": 1, - "RAW": 1, - "IP": 1, - "fragments": 1, - "END": 1 - }, - "BlitzBasic": { - "Local": 34, - "bk": 3, - "CreateBank": 5, - "(": 125, - ")": 126, - "PokeFloat": 3, - "-": 24, - "Print": 13, - "Bin": 4, - "PeekInt": 4, - "%": 6, - "Shl": 7, - "f": 5, - "ff": 1, - "+": 11, - "Hex": 2, - "FloatToHalf": 3, - "HalfToFloat": 1, - "FToI": 2, - "WaitKey": 2, - "End": 58, - ";": 57, - "Half": 1, - "precision": 2, - "bit": 2, - "arithmetic": 2, - "library": 2, - "Global": 2, - "Half_CBank_": 13, - "Function": 101, - "f#": 3, - "If": 25, - "Then": 18, - "Return": 36, - "HalfToFloat#": 1, - "h": 4, - "signBit": 6, - "exponent": 22, - "fraction": 9, - "fBits": 8, - "And": 8, - "<": 18, - "Shr": 3, - "F": 3, - "FF": 2, - "ElseIf": 1, - "Or": 4, - "PokeInt": 2, - "PeekFloat": 1, - "F800000": 1, - "FFFFF": 1, - "Abs": 1, - "*": 2, - "Sgn": 1, - "Else": 7, - "EndIf": 7, - "HalfAdd": 1, - "l": 84, - "r": 12, - "HalfSub": 1, - "HalfMul": 1, - "HalfDiv": 1, - "HalfLT": 1, - "HalfGT": 1, - "Double": 2, - "DoubleOut": 1, - "[": 2, - "]": 2, - "Double_CBank_": 1, - "DoubleToFloat#": 1, - "d": 1, - "FloatToDouble": 1, - "IntToDouble": 1, - "i": 49, - "SefToDouble": 1, - "s": 12, - "e": 4, - "DoubleAdd": 1, - "DoubleSub": 1, - "DoubleMul": 1, - "DoubleDiv": 1, - "DoubleLT": 1, - "DoubleGT": 1, - "IDEal": 3, - "Editor": 3, - "Parameters": 3, - "F#1A#20#2F": 1, - "C#Blitz3D": 3, - "linked": 2, - "list": 32, - "container": 1, - "class": 1, - "with": 3, - "thanks": 1, - "to": 11, - "MusicianKool": 3, - "for": 3, - "concept": 1, - "and": 9, - "issue": 1, - "fixes": 1, - "Type": 8, - "LList": 3, - "Field": 10, - "head_.ListNode": 1, - "tail_.ListNode": 1, - "ListNode": 8, - "pv_.ListNode": 1, - "nx_.ListNode": 1, - "Value": 37, - "Iterator": 2, - "l_.LList": 1, - "cn_.ListNode": 1, - "cni_": 8, - "Create": 4, - "a": 46, - "new": 4, - "object": 2, - "CreateList.LList": 1, - "l.LList": 20, - "New": 11, - "head_": 35, - "tail_": 34, - "nx_": 33, - "caps": 1, - "pv_": 27, - "These": 1, - "make": 1, - "it": 1, - "more": 1, - "or": 4, - "less": 1, - "safe": 1, - "iterate": 2, - "freely": 1, - "Free": 1, - "all": 3, - "elements": 4, - "not": 4, - "any": 1, - "values": 4, - "FreeList": 1, - "ClearList": 2, - "Delete": 6, - "Remove": 7, - "the": 52, - "from": 15, - "does": 1, - "free": 1, - "n.ListNode": 12, - "While": 7, - "n": 54, - "nx.ListNode": 1, - "nx": 1, - "Wend": 6, - "Count": 1, - "number": 1, - "of": 16, - "in": 4, - "slow": 3, - "ListLength": 2, - "i.Iterator": 6, - "GetIterator": 3, - "elems": 4, - "EachIn": 5, - "True": 4, - "if": 2, - "contains": 1, - "given": 7, - "value": 16, - "ListContains": 1, - "ListFindNode": 2, - "Null": 15, - "intvalues": 1, - "bank": 8, - "ListFromBank.LList": 1, - "CreateList": 2, - "size": 4, - "BankSize": 1, - "p": 7, - "For": 6, - "To": 6, - "Step": 2, - "ListAddLast": 2, - "Next": 7, - "containing": 3, - "ListToBank": 1, - "Swap": 1, - "contents": 1, - "two": 1, - "objects": 1, - "SwapLists": 1, - "l1.LList": 1, - "l2.LList": 1, - "tempH.ListNode": 1, - "l1": 4, - "tempT.ListNode": 1, - "l2": 4, - "tempH": 1, - "tempT": 1, - "same": 1, - "as": 2, - "first": 5, - "CopyList.LList": 1, - "lo.LList": 1, - "ln.LList": 1, - "lo": 1, - "ln": 2, - "Reverse": 1, - "order": 1, - "ReverseList": 1, - "n1.ListNode": 1, - "n2.ListNode": 1, - "tmp.ListNode": 1, - "n1": 5, - "n2": 6, - "tmp": 4, - "Search": 1, - "retrieve": 1, - "node": 8, - "ListFindNode.ListNode": 1, - "Append": 1, - "end": 5, - "fast": 2, - "return": 7, - "ListAddLast.ListNode": 1, - "Attach": 1, - "start": 13, - "ListAddFirst.ListNode": 1, - "occurence": 1, - "ListRemove": 1, - "RemoveListNode": 6, - "element": 4, - "at": 5, - "position": 4, - "backwards": 2, - "negative": 2, - "index": 13, - "ValueAtIndex": 1, - "ListNodeAtIndex": 3, - "invalid": 1, - "ListNodeAtIndex.ListNode": 1, - "Beyond": 1, - "valid": 2, - "Negative": 1, - "count": 1, - "backward": 1, - "Before": 3, - "Replace": 1, - "added": 2, - "by": 3, - "ReplaceValueAtIndex": 1, - "RemoveNodeAtIndex": 1, - "tval": 3, - "Retrieve": 2, - "ListFirst": 1, - "last": 2, - "ListLast": 1, - "its": 2, - "ListRemoveFirst": 1, - "val": 6, - "ListRemoveLast": 1, - "Insert": 3, - "into": 2, - "before": 2, - "specified": 2, - "InsertBeforeNode.ListNode": 1, - "bef.ListNode": 1, - "bef": 7, - "after": 1, - "then": 1, - "InsertAfterNode.ListNode": 1, - "aft.ListNode": 1, - "aft": 7, - "Get": 1, - "an": 4, - "iterator": 4, - "use": 1, - "loop": 2, - "This": 1, - "function": 1, - "means": 1, - "that": 1, - "most": 1, - "programs": 1, - "won": 1, - "available": 1, - "moment": 1, - "l_": 7, - "Exit": 1, - "there": 1, - "wasn": 1, - "t": 1, - "create": 1, - "one": 1, - "cn_": 12, - "No": 1, - "especial": 1, - "reason": 1, - "why": 1, - "this": 2, - "has": 1, - "be": 1, - "anything": 1, - "but": 1, - "meh": 1, - "Use": 1, - "argument": 1, - "over": 1, - "members": 1, - "Still": 1, - "items": 1, - "Disconnect": 1, - "having": 1, - "reached": 1, - "False": 3, - "currently": 1, - "pointed": 1, - "IteratorRemove": 1, - "temp.ListNode": 1, - "temp": 1, - "Call": 1, - "breaking": 1, - "out": 1, - "disconnect": 1, - "IteratorBreak": 1, - "F#5#A#10#18#2A#32#3E#47#4C#58#66#6F#78#8F#9B#A9#B7#BD#C5#CC": 1, - "F#E3#E9#EF#F4#F9#103#10D#11B#12B#13F#152#163": 1, - "result": 4, - "s.Sum3Obj": 2, - "Sum3Obj": 6, - "Handle": 2, - "MilliSecs": 4, - "Sum3_": 2, - "MakeSum3Obj": 2, - "Sum3": 2, - "b": 7, - "c": 7, - "isActive": 4, - "Last": 1, - "Restore": 1, - "label": 1, - "Read": 1, - "foo": 1, - ".label": 1, - "Data": 1, - "a_": 2, - "a.Sum3Obj": 1, - "Object.Sum3Obj": 1, - "return_": 2, - "First": 1 - }, - "BlitzMax": { - "SuperStrict": 1, - "Framework": 1, - "Brl.StandardIO": 1, - "Type": 2, - "TMyType": 3, - "Field": 1, - "property": 1, - "int": 3, - "Function": 1, - "A": 1, - "(": 5, - "param": 1, - ")": 5, - "do": 1, - "nothing": 1, - "End": 2, - "Method": 1, - "Global": 1, - "my": 1, - "new": 1, - "Win32": 1, - "my.A": 2, - "my.B": 2, - "Linux": 1 - }, - "Bluespec": { - "package": 2, - "TbTL": 1, - ";": 156, - "import": 1, - "TL": 6, - "*": 1, - "interface": 2, - "Lamp": 3, - "method": 42, - "Bool": 32, - "changed": 2, - "Action": 17, - "show_offs": 2, - "show_ons": 2, - "reset": 2, - "endinterface": 2, - "module": 3, - "mkLamp#": 1, - "(": 158, - "String": 1, - "name": 3, - "lamp": 5, - ")": 163, - "Reg#": 15, - "prev": 5, - "<": 44, - "-": 29, - "mkReg": 15, - "False": 9, - "if": 9, - "&&": 3, - "write": 2, - "+": 7, - "endmethod": 8, - "endmodule": 3, - "mkTest": 1, - "let": 1, - "dut": 2, - "sysTL": 3, - "Bit#": 1, - "ctr": 8, - "carN": 4, - "carS": 2, - "carE": 2, - "carW": 2, - "lamps": 15, - "[": 17, - "]": 17, - "mkLamp": 12, - "dut.lampRedNS": 1, - "dut.lampAmberNS": 1, - "dut.lampGreenNS": 1, - "dut.lampRedE": 1, - "dut.lampAmberE": 1, - "dut.lampGreenE": 1, - "dut.lampRedW": 1, - "dut.lampAmberW": 1, - "dut.lampGreenW": 1, - "dut.lampRedPed": 1, - "dut.lampAmberPed": 1, - "dut.lampGreenPed": 1, - "rule": 10, - "start": 1, - "dumpvars": 1, - "endrule": 10, - "detect_cars": 1, - "dut.set_car_state_N": 1, - "dut.set_car_state_S": 1, - "dut.set_car_state_E": 1, - "dut.set_car_state_W": 1, - "go": 1, - "True": 6, - "<=>": 3, - "12_000": 1, - "ped_button_push": 4, - "stop": 1, - "display": 2, - "finish": 1, - "function": 10, - "do_offs": 2, - "l": 3, - "l.show_offs": 1, - "do_ons": 2, - "l.show_ons": 1, - "do_reset": 2, - "l.reset": 1, - "do_it": 4, - "f": 2, - "action": 3, - "for": 3, - "Integer": 3, - "i": 15, - "endaction": 3, - "endfunction": 7, - "any_changes": 2, - "b": 12, - "||": 7, - ".changed": 1, - "return": 9, - "show": 1, - "time": 1, - "endpackage": 2, - "set_car_state_N": 2, - "x": 8, - "set_car_state_S": 2, - "set_car_state_E": 2, - "set_car_state_W": 2, - "lampRedNS": 2, - "lampAmberNS": 2, - "lampGreenNS": 2, - "lampRedE": 2, - "lampAmberE": 2, - "lampGreenE": 2, - "lampRedW": 2, - "lampAmberW": 2, - "lampGreenW": 2, - "lampRedPed": 2, - "lampAmberPed": 2, - "lampGreenPed": 2, - "typedef": 3, - "enum": 1, - "{": 1, - "AllRed": 4, - "GreenNS": 9, - "AmberNS": 5, - "GreenE": 8, - "AmberE": 5, - "GreenW": 8, - "AmberW": 5, - "GreenPed": 4, - "AmberPed": 3, - "}": 1, - "TLstates": 11, - "deriving": 1, - "Eq": 1, - "Bits": 1, - "UInt#": 2, - "Time32": 9, - "CtrSize": 3, - "allRedDelay": 2, - "amberDelay": 2, - "nsGreenDelay": 2, - "ewGreenDelay": 3, - "pedGreenDelay": 1, - "pedAmberDelay": 1, - "clocks_per_sec": 2, - "state": 21, - "next_green": 8, - "secs": 7, - "ped_button_pushed": 4, - "car_present_N": 3, - "car_present_S": 3, - "car_present_E": 4, - "car_present_W": 4, - "car_present_NS": 3, - "cycle_ctr": 6, - "dec_cycle_ctr": 1, - "Rules": 5, - "low_priority_rule": 2, - "rules": 4, - "inc_sec": 1, - "endrules": 4, - "next_state": 8, - "ns": 4, - "0": 2, - "green_seq": 7, - "case": 2, - "endcase": 2, - "car_present": 4, - "make_from_green_rule": 5, - "green_state": 2, - "delay": 2, - "car_is_present": 2, - "from_green": 1, - "make_from_amber_rule": 5, - "amber_state": 2, - "ng": 2, - "from_amber": 1, - "hprs": 10, - "7": 1, - "1": 1, - "2": 1, - "3": 1, - "4": 1, - "5": 1, - "6": 1, - "fromAllRed": 2, - "else": 4, - "noAction": 1, - "high_priority_rules": 4, - "rJoin": 1, - "addRules": 1, - "preempts": 1 - }, - "Brightscript": { - "**": 17, - "Simple": 1, - "Grid": 2, - "Screen": 2, - "Demonstration": 1, - "App": 1, - "Copyright": 1, - "(": 32, - "c": 1, - ")": 31, - "Roku": 1, - "Inc.": 1, - "All": 3, - "Rights": 1, - "Reserved.": 1, - "************************************************************": 2, - "Sub": 2, - "Main": 1, - "set": 2, - "to": 10, - "go": 1, - "time": 1, - "get": 1, - "started": 1, - "while": 4, - "gridstyle": 7, - "<": 1, - "print": 7, - ";": 10, - "screen": 5, - "preShowGridScreen": 2, - "showGridScreen": 2, - "end": 2, - "End": 4, - "Set": 1, - "the": 17, - "configurable": 1, - "theme": 3, - "attributes": 2, - "for": 10, - "application": 1, - "Configure": 1, - "custom": 1, - "overhang": 1, - "and": 4, - "Logo": 1, - "are": 2, - "artwork": 2, - "colors": 1, - "offsets": 1, - "specific": 1, - "app": 1, - "******************************************************": 4, - "Screens": 1, - "can": 2, - "make": 1, - "slight": 1, - "adjustments": 1, - "default": 1, - "individual": 1, - "attributes.": 1, - "these": 1, - "greyscales": 1, - "theme.GridScreenBackgroundColor": 1, - "theme.GridScreenMessageColor": 1, - "theme.GridScreenRetrievingColor": 1, - "theme.GridScreenListNameColor": 1, - "used": 1, - "in": 3, - "theme.CounterTextLeft": 1, - "theme.CounterSeparator": 1, - "theme.CounterTextRight": 1, - "theme.GridScreenLogoHD": 1, - "theme.GridScreenLogoOffsetHD_X": 1, - "theme.GridScreenLogoOffsetHD_Y": 1, - "theme.GridScreenOverhangHeightHD": 1, - "theme.GridScreenLogoSD": 1, - "theme.GridScreenOverhangHeightSD": 1, - "theme.GridScreenLogoOffsetSD_X": 1, - "theme.GridScreenLogoOffsetSD_Y": 1, - "theme.GridScreenFocusBorderSD": 1, - "theme.GridScreenFocusBorderHD": 1, - "use": 1, - "your": 1, - "own": 1, - "description": 1, - "background": 1, - "theme.GridScreenDescriptionOffsetSD": 1, - "theme.GridScreenDescriptionOffsetHD": 1, - "return": 5, - "Function": 5, - "Perform": 1, - "any": 1, - "startup/initialization": 1, - "stuff": 1, - "prior": 1, - "style": 6, - "as": 2, - "string": 3, - "As": 3, - "Object": 2, - "m.port": 3, - "CreateObject": 2, - "screen.SetMessagePort": 1, - "screen.": 1, - "The": 1, - "will": 3, - "show": 1, - "retreiving": 1, - "categoryList": 4, - "getCategoryList": 1, - "[": 3, - "]": 4, - "+": 1, - "screen.setupLists": 1, - "categoryList.count": 2, - "screen.SetListNames": 1, - "StyleButtons": 3, - "getGridControlButtons": 1, - "screen.SetContentList": 2, - "i": 3, - "-": 15, - "getShowsForCategoryItem": 1, - "screen.Show": 1, - "true": 1, - "msg": 3, - "wait": 1, - "getmessageport": 1, - "does": 1, - "not": 2, - "work": 1, - "on": 1, - "gridscreen": 1, - "type": 2, - "if": 3, - "then": 3, - "msg.GetMessage": 1, - "msg.GetIndex": 3, - "msg.getData": 2, - "msg.isListItemFocused": 1, - "else": 1, - "msg.isListItemSelected": 1, - "row": 2, - "selection": 3, - "yes": 1, - "so": 2, - "we": 3, - "come": 1, - "back": 1, - "with": 2, - "new": 1, - ".Title": 1, - "endif": 1, - "**********************************************************": 1, - "this": 3, - "function": 1, - "passing": 1, - "an": 1, - "roAssociativeArray": 2, - "be": 2, - "sufficient": 1, - "springboard": 2, - "display": 2, - "add": 1, - "code": 1, - "create": 1, - "now": 1, - "do": 1, - "nothing": 1, - "Return": 1, - "list": 1, - "of": 5, - "categories": 1, - "filter": 1, - "all": 1, - "categories.": 1, - "just": 2, - "static": 1, - "data": 2, - "example.": 1, - "********************************************************************": 1, - "ContentMetaData": 1, - "objects": 1, - "shows": 1, - "category.": 1, - "For": 1, - "example": 1, - "cheat": 1, - "but": 2, - "ideally": 1, - "you": 1, - "dynamically": 1, - "content": 2, - "each": 1, - "category": 1, - "is": 1, - "dynamic": 1, - "s": 1, - "one": 3, - "small": 1, - "step": 1, - "a": 4, - "man": 1, - "giant": 1, - "leap": 1, - "mankind.": 1, - "http": 14, - "//upload.wikimedia.org/wikipedia/commons/1/1e/Apollo_11_first_step.jpg": 2, - "I": 2, - "have": 2, - "Dream": 1, - "PG": 1, - "dream": 1, - "that": 1, - "my": 1, - "four": 1, - "little": 1, - "children": 1, - "day": 1, - "live": 1, - "nation": 1, - "where": 1, - "they": 1, - "judged": 1, - "by": 2, - "color": 1, - "their": 2, - "skin": 1, - "character.": 1, - "//upload.wikimedia.org/wikipedia/commons/8/81/Martin_Luther_King_": 2, - "_March_on_Washington.jpg": 2, - "Flat": 6, - "Movie": 2, - "HD": 6, - "x2": 4, - "SD": 5, - "Netflix": 1, - "//upload.wikimedia.org/wikipedia/commons/4/43/Gold_star_on_blue.gif": 2, - "Landscape": 1, - "x3": 6, - "Channel": 1, - "Store": 1, - "//upload.wikimedia.org/wikipedia/commons/thumb/9/96/Dunkery_Hill.jpg/800px": 2, - "Dunkery_Hill.jpg": 2, - "Portrait": 1, - "x4": 1, - "posters": 3, - "//upload.wikimedia.org/wikipedia/commons/9/9f/Kane_George_Gurnett.jpg": 2, - "Square": 1, - "x1": 1, - "//upload.wikimedia.org/wikipedia/commons/thumb/d/de/SQUARE_SHAPE.svg/536px": 2, - "SQUARE_SHAPE.svg.png": 2, - "x9": 1, - "//upload.wikimedia.org/wikipedia/commons/thumb/2/22/": 2, - "%": 8, - "C3": 4, - "cran_TV_plat.svg/200px": 2, - "cran_TV_plat.svg.png": 2, - "}": 1, - "buttons": 1 - }, - "C": { - "#include": 154, - "const": 358, - "char": 530, - "*blob_type": 2, - ";": 5465, - "struct": 360, - "blob": 6, - "*lookup_blob": 2, - "(": 6243, - "unsigned": 140, - "*sha1": 16, - ")": 6245, - "{": 1531, - "object": 41, - "*obj": 9, - "lookup_object": 2, - "sha1": 20, - "if": 1015, - "obj": 48, - "return": 529, - "create_object": 2, - "OBJ_BLOB": 3, - "alloc_blob_node": 1, - "-": 1803, - "type": 36, - "error": 96, - "sha1_to_hex": 8, - "typename": 2, - "NULL": 330, - "}": 1547, - "*": 261, - "int": 446, - "parse_blob_buffer": 2, - "*item": 10, - "void": 288, - "*buffer": 6, - "long": 105, - "size": 120, - "item": 24, - "object.parsed": 4, - "#ifndef": 89, - "BLOB_H": 2, - "#define": 920, - "extern": 38, - "#endif": 243, - "BOOTSTRAP_H": 2, - "": 8, - "__GNUC__": 8, - "typedef": 191, - "*true": 1, - "*false": 1, - "*eof": 1, - "*empty_list": 1, - "*global_enviroment": 1, - "enum": 30, - "obj_type": 1, - "scm_bool": 1, - "scm_empty_list": 1, - "scm_eof": 1, - "scm_char": 1, - "scm_int": 1, - "scm_pair": 1, - "scm_symbol": 1, - "scm_prim_fun": 1, - "scm_lambda": 1, - "scm_str": 1, - "scm_file": 1, - "*eval_proc": 1, - "*maybe_add_begin": 1, - "*code": 2, - "init_enviroment": 1, - "*env": 4, - "eval_err": 1, - "*msg": 7, - "__attribute__": 1, - "noreturn": 1, - "define_var": 1, - "*var": 4, - "*val": 6, - "set_var": 1, - "*get_var": 1, - "*cond2nested_if": 1, - "*cond": 1, - "*let2lambda": 1, - "*let": 1, - "*and2nested_if": 1, - "*and": 1, - "*or2nested_if": 1, - "*or": 1, - "git_cache_init": 1, - "git_cache": 4, - "*cache": 4, - "size_t": 52, - "git_cached_obj_freeptr": 1, - "free_ptr": 2, - "<": 219, - "git__size_t_powerof2": 1, - "cache": 26, - "size_mask": 6, - "lru_count": 1, - "free_obj": 4, - "git_mutex_init": 1, - "&": 442, - "lock": 6, - "nodes": 10, - "git__malloc": 3, - "sizeof": 71, - "git_cached_obj": 5, - "GITERR_CHECK_ALLOC": 3, - "memset": 4, - "git_cache_free": 1, - "i": 410, - "for": 88, - "+": 551, - "[": 601, - "]": 601, - "git_cached_obj_decref": 3, - "git__free": 15, - "*git_cache_get": 1, - "git_oid": 7, - "*oid": 2, - "uint32_t": 144, - "hash": 12, - "*node": 2, - "*result": 1, - "memcpy": 35, - "oid": 17, - "id": 13, - "git_mutex_lock": 2, - "node": 9, - "&&": 248, - "git_oid_cmp": 6, - "git_cached_obj_incref": 3, - "result": 48, - "git_mutex_unlock": 2, - "*git_cache_try_store": 1, - "*_entry": 1, - "*entry": 2, - "_entry": 1, - "entry": 17, - "else": 190, - "save_commit_buffer": 3, - "*commit_type": 2, - "static": 455, - "commit": 59, - "*check_commit": 1, - "quiet": 5, - "OBJ_COMMIT": 5, - "*lookup_commit_reference_gently": 2, - "deref_tag": 1, - "parse_object": 1, - "check_commit": 2, - "*lookup_commit_reference": 2, - "lookup_commit_reference_gently": 1, - "*lookup_commit_or_die": 2, - "*ref_name": 2, - "*c": 69, - "lookup_commit_reference": 2, - "c": 252, - "die": 5, - "_": 3, - "ref_name": 2, - "hashcmp": 2, - "object.sha1": 8, - "warning": 1, - "*lookup_commit": 2, - "alloc_commit_node": 1, - "*lookup_commit_reference_by_name": 2, - "*name": 12, - "*commit": 10, - "get_sha1": 1, - "name": 28, - "||": 141, - "parse_commit": 3, - "parse_commit_date": 2, - "*buf": 10, - "*tail": 2, - "*dateptr": 1, - "buf": 57, - "tail": 12, - "memcmp": 6, - "while": 70, - "dateptr": 2, - "strtoul": 2, - "commit_graft": 13, - "**commit_graft": 1, - "commit_graft_alloc": 4, - "commit_graft_nr": 5, - "commit_graft_pos": 2, - "lo": 6, - "hi": 5, - "mi": 5, - "/": 9, - "*graft": 3, - "cmp": 9, - "graft": 10, - "register_commit_graft": 2, - "ignore_dups": 2, - "pos": 7, - "free": 62, - "alloc_nr": 1, - "xrealloc": 2, - "parse_commit_buffer": 3, - "buffer": 10, - "*bufptr": 1, - "parent": 7, - "commit_list": 35, - "**pptr": 1, - "<=>": 16, - "bufptr": 12, - "46": 1, - "tree": 3, - "5": 1, - "45": 1, - "n": 70, - "bogus": 1, - "s": 154, - "get_sha1_hex": 2, - "lookup_tree": 1, - "pptr": 5, - "parents": 4, - "lookup_commit_graft": 1, - "*new_parent": 2, - "48": 1, - "7": 1, - "47": 1, - "bad": 1, - "in": 11, - "nr_parent": 3, - "grafts_replace_parents": 1, - "continue": 20, - "new_parent": 6, - "lookup_commit": 2, - "commit_list_insert": 2, - "next": 8, - "date": 5, - "object_type": 1, - "ret": 142, - "read_sha1_file": 1, - "find_commit_subject": 2, - "*commit_buffer": 2, - "**subject": 2, - "*eol": 1, - "*p": 9, - "commit_buffer": 1, - "a": 80, - "b_date": 3, - "b": 66, - "a_date": 2, - "*commit_list_get_next": 1, - "*a": 9, - "commit_list_set_next": 1, - "*next": 6, - "commit_list_sort_by_date": 2, - "**list": 5, - "*list": 2, - "llist_mergesort": 1, - "peel_to_type": 1, - "util": 3, - "merge_remote_desc": 3, - "*desc": 1, - "desc": 5, - "xmalloc": 2, - "strdup": 1, - "**commit_list_append": 2, - "**next": 2, - "*new": 1, - "new": 4, - "COMMIT_H": 2, - "*util": 1, - "indegree": 1, - "*parents": 4, - "*tree": 3, - "decoration": 1, - "name_decoration": 3, - "*commit_list_insert": 1, - "commit_list_count": 1, - "*l": 1, - "*commit_list_insert_by_date": 1, - "free_commit_list": 1, - "cmit_fmt": 3, - "CMIT_FMT_RAW": 1, - "CMIT_FMT_MEDIUM": 2, - "CMIT_FMT_DEFAULT": 1, - "CMIT_FMT_SHORT": 1, - "CMIT_FMT_FULL": 1, - "CMIT_FMT_FULLER": 1, - "CMIT_FMT_ONELINE": 1, - "CMIT_FMT_EMAIL": 1, - "CMIT_FMT_USERFORMAT": 1, - "CMIT_FMT_UNSPECIFIED": 1, - "pretty_print_context": 6, - "fmt": 4, - "abbrev": 1, - "*subject": 1, - "*after_subject": 1, - "preserve_subject": 1, - "date_mode": 2, - "date_mode_explicit": 1, - "need_8bit_cte": 2, - "show_notes": 1, - "reflog_walk_info": 1, - "*reflog_info": 1, - "*output_encoding": 2, - "userformat_want": 2, - "notes": 1, - "has_non_ascii": 1, - "*text": 1, - "rev_info": 2, - "*logmsg_reencode": 1, - "*reencode_commit_message": 1, - "**encoding_p": 1, - "get_commit_format": 1, - "*arg": 1, - "*format_subject": 1, - "strbuf": 12, - "*sb": 7, - "*line_separator": 1, - "userformat_find_requirements": 1, - "*fmt": 2, - "*w": 2, - "format_commit_message": 1, - "*format": 2, - "*context": 1, - "pretty_print_commit": 1, - "*pp": 4, - "pp_commit_easy": 1, - "pp_user_info": 1, - "*what": 1, - "*line": 1, - "*encoding": 2, - "pp_title_line": 1, - "**msg_p": 2, - "pp_remainder": 1, - "indent": 1, - "*pop_most_recent_commit": 1, - "mark": 3, - "*pop_commit": 1, - "**stack": 1, - "clear_commit_marks": 1, - "clear_commit_marks_for_object_array": 1, - "object_array": 2, - "sort_in_topological_order": 1, - "**": 6, - "list": 1, - "lifo": 1, - "FLEX_ARRAY": 1, - "*read_graft_line": 1, - "len": 30, - "*lookup_commit_graft": 1, - "*get_merge_bases": 1, - "*rev1": 1, - "*rev2": 1, - "cleanup": 12, - "*get_merge_bases_many": 1, - "*one": 1, - "**twos": 1, - "*get_octopus_merge_bases": 1, - "*in": 1, - "register_shallow": 1, - "unregister_shallow": 1, - "for_each_commit_graft": 1, - "each_commit_graft_fn": 1, - "is_repository_shallow": 1, - "*get_shallow_commits": 1, - "*heads": 2, - "depth": 2, - "shallow_flag": 1, - "not_shallow_flag": 1, - "is_descendant_of": 1, - "in_merge_bases": 1, - "interactive_add": 1, - "argc": 26, - "**argv": 6, - "*prefix": 7, - "patch": 1, - "run_add_interactive": 1, - "*revision": 1, - "*patch_mode": 1, - "**pathspec": 1, - "inline": 3, - "single_parent": 1, - "*reduce_heads": 1, - "commit_extra_header": 7, - "*key": 5, - "*value": 5, - "append_merge_tag_headers": 1, - "***tail": 1, - "commit_tree": 1, - "*ret": 20, - "*author": 2, - "*sign_commit": 2, - "commit_tree_extended": 1, - "*read_commit_extra_headers": 1, - "*read_commit_extra_header_lines": 1, - "free_commit_extra_headers": 1, - "*extra": 1, - "merge_remote_util": 1, - "*get_merge_parent": 1, - "parse_signed_commit": 1, - "*message": 1, - "*signature": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "#ifdef": 66, - "CONFIG_SMP": 1, - "DEFINE_MUTEX": 1, - "cpu_add_remove_lock": 3, - "cpu_maps_update_begin": 9, - "mutex_lock": 5, - "cpu_maps_update_done": 9, - "mutex_unlock": 6, - "RAW_NOTIFIER_HEAD": 1, - "cpu_chain": 4, - "cpu_hotplug_disabled": 7, - "CONFIG_HOTPLUG_CPU": 2, - "task_struct": 5, - "*active_writer": 1, - "mutex": 1, - "refcount": 2, - "cpu_hotplug": 1, - ".active_writer": 1, - ".lock": 1, - "__MUTEX_INITIALIZER": 1, - "cpu_hotplug.lock": 8, - ".refcount": 1, - "get_online_cpus": 2, - "might_sleep": 1, - "cpu_hotplug.active_writer": 6, - "current": 5, - "cpu_hotplug.refcount": 3, - "EXPORT_SYMBOL_GPL": 4, - "put_online_cpus": 2, - "unlikely": 54, - "wake_up_process": 1, - "cpu_hotplug_begin": 4, - "likely": 22, - "break": 244, - "__set_current_state": 1, - "TASK_UNINTERRUPTIBLE": 1, - "schedule": 1, - "cpu_hotplug_done": 4, - "#else": 94, - "__ref": 6, - "register_cpu_notifier": 2, - "notifier_block": 3, - "*nb": 3, - "raw_notifier_chain_register": 1, - "nb": 2, - "__cpu_notify": 6, - "val": 20, - "*v": 3, - "nr_to_call": 2, - "*nr_calls": 1, - "__raw_notifier_call_chain": 1, - "v": 11, - "nr_calls": 9, - "notifier_to_errno": 1, - "cpu_notify": 5, - "cpu_notify_nofail": 4, - "BUG_ON": 4, - "EXPORT_SYMBOL": 8, - "unregister_cpu_notifier": 2, - "raw_notifier_chain_unregister": 1, - "clear_tasks_mm_cpumask": 1, - "cpu": 57, - "WARN_ON": 1, - "cpu_online": 5, - "rcu_read_lock": 1, - "for_each_process": 2, - "p": 60, - "*t": 2, - "t": 32, - "find_lock_task_mm": 1, - "cpumask_clear_cpu": 5, - "mm_cpumask": 1, - "mm": 1, - "task_unlock": 1, - "rcu_read_unlock": 1, - "check_for_tasks": 2, - "write_lock_irq": 1, - "tasklist_lock": 2, - "task_cpu": 1, - "state": 104, - "TASK_RUNNING": 1, - "utime": 1, - "stime": 1, - "printk": 12, - "KERN_WARNING": 3, - "comm": 1, - "task_pid_nr": 1, - "flags": 89, - "write_unlock_irq": 1, - "take_cpu_down_param": 3, - "mod": 13, - "*hcpu": 3, - "take_cpu_down": 2, - "*_param": 1, - "*param": 1, - "_param": 1, - "err": 38, - "__cpu_disable": 1, - "CPU_DYING": 1, - "|": 132, - "param": 2, - "hcpu": 10, - "_cpu_down": 3, - "tasks_frozen": 4, - "CPU_TASKS_FROZEN": 2, - "tcd_param": 2, - ".mod": 1, - ".hcpu": 1, - "num_online_cpus": 2, - "EBUSY": 3, - "EINVAL": 6, - "CPU_DOWN_PREPARE": 1, - "CPU_DOWN_FAILED": 2, - "__func__": 2, - "goto": 159, - "out_release": 3, - "__stop_machine": 1, - "cpumask_of": 1, - "idle_cpu": 1, - "cpu_relax": 1, - "__cpu_die": 1, - "CPU_DEAD": 1, - "CPU_POST_DEAD": 1, - "cpu_down": 2, - "out": 18, - "__cpuinit": 3, - "_cpu_up": 3, - "*idle": 1, - "cpu_present": 1, - "idle": 4, - "idle_thread_get": 1, - "IS_ERR": 1, - "PTR_ERR": 1, - "CPU_UP_PREPARE": 1, - "out_notify": 3, - "__cpu_up": 1, - "CPU_ONLINE": 1, - "CPU_UP_CANCELED": 1, - "cpu_up": 2, - "CONFIG_MEMORY_HOTPLUG": 2, - "nid": 5, - "pg_data_t": 1, - "*pgdat": 1, - "cpu_possible": 1, - "KERN_ERR": 5, - "#if": 92, - "defined": 42, - "CONFIG_IA64": 1, - "cpu_to_node": 1, - "node_online": 1, - "mem_online_node": 1, - "pgdat": 3, - "NODE_DATA": 1, - "ENOMEM": 4, - "node_zonelists": 1, - "_zonerefs": 1, - "zone": 1, - "zonelists_mutex": 2, - "build_all_zonelists": 1, - "CONFIG_PM_SLEEP_SMP": 2, - "cpumask_var_t": 1, - "frozen_cpus": 9, - "__weak": 4, - "arch_disable_nonboot_cpus_begin": 2, - "arch_disable_nonboot_cpus_end": 2, - "disable_nonboot_cpus": 1, - "first_cpu": 3, - "cpumask_first": 1, - "cpu_online_mask": 3, - "cpumask_clear": 2, - "for_each_online_cpu": 1, - "cpumask_set_cpu": 5, - "arch_enable_nonboot_cpus_begin": 2, - "arch_enable_nonboot_cpus_end": 2, - "enable_nonboot_cpus": 1, - "cpumask_empty": 1, - "KERN_INFO": 2, - "for_each_cpu": 1, - "__init": 2, - "alloc_frozen_cpus": 2, - "alloc_cpumask_var": 1, - "GFP_KERNEL": 1, - "__GFP_ZERO": 1, - "core_initcall": 2, - "cpu_hotplug_disable_before_freeze": 2, - "cpu_hotplug_enable_after_thaw": 2, - "cpu_hotplug_pm_callback": 2, - "action": 2, - "*ptr": 1, - "switch": 46, - "case": 273, - "PM_SUSPEND_PREPARE": 1, - "PM_HIBERNATION_PREPARE": 1, - "PM_POST_SUSPEND": 1, - "PM_POST_HIBERNATION": 1, - "default": 33, - "NOTIFY_DONE": 1, - "NOTIFY_OK": 1, - "cpu_hotplug_pm_sync_init": 2, - "pm_notifier": 1, - "notify_cpu_starting": 1, - "CPU_STARTING": 1, - "cpumask_test_cpu": 1, - "CPU_STARTING_FROZEN": 1, - "MASK_DECLARE_1": 3, - "x": 57, - "UL": 1, - "<<": 56, - "MASK_DECLARE_2": 3, - "MASK_DECLARE_4": 3, - "MASK_DECLARE_8": 9, - "cpu_bit_bitmap": 2, - "BITS_PER_LONG": 2, - "BITS_TO_LONGS": 1, - "NR_CPUS": 2, - "DECLARE_BITMAP": 6, - "cpu_all_bits": 2, - "CPU_BITS_ALL": 2, - "CONFIG_INIT_ALL_POSSIBLE": 1, - "cpu_possible_bits": 6, - "CONFIG_NR_CPUS": 5, - "__read_mostly": 5, - "cpumask": 7, - "*const": 4, - "cpu_possible_mask": 2, - "to_cpumask": 15, - "cpu_online_bits": 5, - "cpu_present_bits": 5, - "cpu_present_mask": 2, - "cpu_active_bits": 4, - "cpu_active_mask": 2, - "set_cpu_possible": 1, - "bool": 6, - "possible": 2, - "set_cpu_present": 1, - "present": 2, - "set_cpu_online": 1, - "online": 2, - "set_cpu_active": 1, - "active": 2, - "init_cpu_present": 1, - "*src": 3, - "cpumask_copy": 3, - "src": 16, - "init_cpu_possible": 1, - "init_cpu_online": 1, - "*diff_prefix_from_pathspec": 1, - "git_strarray": 2, - "*pathspec": 2, - "git_buf": 3, - "prefix": 34, - "GIT_BUF_INIT": 3, - "*scan": 2, - "git_buf_common_prefix": 1, - "pathspec": 15, - "scan": 4, - "prefix.ptr": 2, - "git__iswildcard": 1, - "git_buf_truncate": 1, - "prefix.size": 1, - "git_buf_detach": 1, - "git_buf_free": 4, - "diff_pathspec_is_interesting": 2, - "*str": 1, - "count": 17, - "false": 77, - "true": 73, - "str": 162, - "strings": 5, - "diff_path_matches_pathspec": 3, - "git_diff_list": 17, - "*diff": 8, - "*path": 2, - "git_attr_fnmatch": 4, - "*match": 3, - "diff": 93, - "pathspec.length": 1, - "git_vector_foreach": 4, - "match": 16, - "p_fnmatch": 1, - "pattern": 3, - "path": 20, - "FNM_NOMATCH": 1, - "GIT_ATTR_FNMATCH_HASWILD": 1, - "strncmp": 1, - "length": 58, - "GIT_ATTR_FNMATCH_NEGATIVE": 1, - "git_diff_delta": 19, - "*diff_delta__alloc": 1, - "git_delta_t": 5, - "status": 57, - "*delta": 6, - "git__calloc": 3, - "delta": 54, - "old_file.path": 12, - "git_pool_strdup": 3, - "pool": 12, - "new_file.path": 6, - "opts.flags": 8, - "GIT_DIFF_REVERSE": 3, - "GIT_DELTA_ADDED": 4, - "GIT_DELTA_DELETED": 7, - "*diff_delta__dup": 1, - "*d": 1, - "git_pool": 4, - "*pool": 3, - "d": 16, - "fail": 19, - "*diff_delta__merge_like_cgit": 1, - "*b": 6, - "*dup": 1, - "diff_delta__dup": 3, - "dup": 15, - "new_file.oid": 7, - "git_oid_cpy": 5, - "new_file.mode": 4, - "new_file.size": 3, - "new_file.flags": 4, - "old_file.oid": 3, - "GIT_DELTA_UNTRACKED": 5, - "GIT_DELTA_IGNORED": 5, - "GIT_DELTA_UNMODIFIED": 11, - "diff_delta__from_one": 5, - "git_index_entry": 8, - "GIT_DIFF_INCLUDE_IGNORED": 1, - "GIT_DIFF_INCLUDE_UNTRACKED": 1, - "diff_delta__alloc": 2, - "assert": 41, - "GIT_DELTA_MODIFIED": 3, - "old_file.mode": 2, - "mode": 11, - "old_file.size": 1, - "file_size": 6, - "old_file.flags": 2, - "GIT_DIFF_FILE_VALID_OID": 4, - "git_vector_insert": 4, - "deltas": 8, - "diff_delta__from_two": 2, - "*old_entry": 1, - "*new_entry": 1, - "*new_oid": 1, - "GIT_DIFF_INCLUDE_UNMODIFIED": 1, - "*temp": 1, - "old_entry": 5, - "new_entry": 5, - "temp": 11, - "new_oid": 3, - "git_oid_iszero": 2, - "*diff_strdup_prefix": 1, - "strlen": 17, - "git_pool_strcat": 1, - "git_pool_strndup": 1, - "diff_delta__cmp": 3, - "*da": 1, - "*db": 3, - "strcmp": 20, - "da": 2, - "db": 10, - "config_bool": 5, - "git_config": 3, - "*cfg": 2, - "defvalue": 2, - "git_config_get_bool": 1, - "cfg": 6, - "giterr_clear": 1, - "*git_diff_list_alloc": 1, - "git_repository": 7, - "*repo": 7, - "git_diff_options": 7, - "*opts": 6, - "repo": 23, - "git_vector_init": 3, - "git_pool_init": 2, - "git_repository_config__weakptr": 1, - "diffcaps": 13, - "GIT_DIFFCAPS_HAS_SYMLINKS": 2, - "GIT_DIFFCAPS_ASSUME_UNCHANGED": 2, - "GIT_DIFFCAPS_TRUST_EXEC_BIT": 2, - "GIT_DIFFCAPS_TRUST_CTIME": 2, - "opts": 24, - "opts.pathspec": 2, - "opts.old_prefix": 4, - "diff_strdup_prefix": 2, - "old_prefix": 2, - "DIFF_OLD_PREFIX_DEFAULT": 1, - "opts.new_prefix": 4, - "new_prefix": 2, - "DIFF_NEW_PREFIX_DEFAULT": 1, - "*swap": 1, - "swap": 9, - "pathspec.count": 2, - "*pattern": 1, - "pathspec.strings": 1, - "GIT_ATTR_FNMATCH_ALLOWSPACE": 1, - "git_attr_fnmatch__parse": 1, - "GIT_ENOTFOUND": 1, - "git_diff_list_free": 3, - "deltas.contents": 1, - "git_vector_free": 3, - "pathspec.contents": 1, - "git_pool_clear": 2, - "oid_for_workdir_item": 2, - "full_path": 3, - "git_buf_joinpath": 1, - "git_repository_workdir": 1, - "S_ISLNK": 2, - "git_odb__hashlink": 1, - "full_path.ptr": 2, - "git__is_sizet": 1, - "giterr_set": 1, - "GITERR_OS": 1, - "fd": 34, - "git_futils_open_ro": 1, - "git_odb__hashfd": 1, - "GIT_OBJ_BLOB": 1, - "p_close": 1, - "EXEC_BIT_MASK": 3, - "maybe_modified": 2, - "git_iterator": 8, - "*old_iter": 2, - "*oitem": 2, - "*new_iter": 2, - "*nitem": 2, - "noid": 4, - "*use_noid": 1, - "omode": 8, - "oitem": 29, - "nmode": 10, - "nitem": 32, - "GIT_UNUSED": 1, - "old_iter": 8, - "S_ISREG": 1, - "GIT_MODE_TYPE": 3, - "GIT_MODE_PERMS_MASK": 1, - "flags_extended": 2, - "GIT_IDXENTRY_INTENT_TO_ADD": 1, - "GIT_IDXENTRY_SKIP_WORKTREE": 1, - "new_iter": 13, - "GIT_ITERATOR_WORKDIR": 2, - "ctime.seconds": 2, - "mtime.seconds": 2, - "GIT_DIFFCAPS_USE_DEV": 1, - "dev": 2, - "ino": 2, - "uid": 2, - "gid": 2, - "S_ISGITLINK": 1, - "git_submodule": 1, - "*sub": 1, - "GIT_DIFF_IGNORE_SUBMODULES": 1, - "git_submodule_lookup": 1, - "sub": 12, - "ignore": 1, - "GIT_SUBMODULE_IGNORE_ALL": 1, - "use_noid": 2, - "diff_from_iterators": 5, - "**diff_ptr": 1, - "ignore_prefix": 6, - "git_diff_list_alloc": 1, - "old_src": 1, - "new_src": 3, - "git_iterator_current": 2, - "git_iterator_advance": 5, - "delta_type": 8, - "git_buf_len": 1, - "git__prefixcmp": 2, - "git_buf_cstr": 1, - "S_ISDIR": 1, - "GIT_DIFF_RECURSE_UNTRACKED_DIRS": 1, - "git_iterator_current_is_ignored": 2, - "git_buf_sets": 1, - "git_iterator_advance_into_directory": 1, - "git_iterator_free": 4, - "*diff_ptr": 2, - "git_diff_tree_to_tree": 1, - "git_tree": 4, - "*old_tree": 3, - "*new_tree": 1, - "**diff": 4, - "diff_prefix_from_pathspec": 4, - "old_tree": 5, - "new_tree": 2, - "git_iterator_for_tree_range": 4, - "git_diff_index_to_tree": 1, - "git_iterator_for_index_range": 2, - "git_diff_workdir_to_index": 1, - "git_iterator_for_workdir_range": 2, - "git_diff_workdir_to_tree": 1, - "git_diff_merge": 1, - "*onto": 1, - "*from": 1, - "onto_pool": 7, - "git_vector": 1, - "onto_new": 6, - "j": 206, - "onto": 7, - "from": 16, - "deltas.length": 4, - "*o": 8, - "GIT_VECTOR_GET": 2, - "*f": 2, - "f": 184, - "o": 80, - "diff_delta__merge_like_cgit": 1, - "git_vector_swap": 1, - "git_pool_swap": 1, - "ATSHOME_LIBATS_DYNARRAY_CATS": 3, - "": 5, - "atslib_dynarray_memcpy": 1, - "atslib_dynarray_memmove": 1, - "memmove": 2, - "//": 262, - "ifndef": 2, - "git_usage_string": 2, - "git_more_info_string": 2, - "N_": 1, - "startup_info": 3, - "git_startup_info": 2, - "use_pager": 8, - "pager_config": 3, - "*cmd": 5, - "want": 3, - "pager_command_config": 2, - "*data": 12, - "data": 69, - "prefixcmp": 3, - "var": 7, - "cmd": 46, - "git_config_maybe_bool": 1, - "value": 9, - "xstrdup": 2, - "check_pager_config": 3, - "c.cmd": 1, - "c.want": 2, - "c.value": 3, - "pager_program": 1, - "commit_pager_choice": 4, - "setenv": 1, - "setup_pager": 1, - "handle_options": 2, - "***argv": 2, - "*argc": 1, - "*envchanged": 1, - "**orig_argv": 1, - "*argv": 6, - "new_argv": 7, - "option_count": 1, - "alias_command": 4, - "trace_argv_printf": 3, - "*argcp": 4, - "subdir": 3, - "chdir": 2, - "die_errno": 3, - "errno": 20, - "saved_errno": 1, - "git_version_string": 1, - "GIT_VERSION": 1, - "RUN_SETUP": 81, - "RUN_SETUP_GENTLY": 16, - "USE_PAGER": 3, - "NEED_WORK_TREE": 18, - "cmd_struct": 4, - "option": 9, - "run_builtin": 2, - "help": 4, - "stat": 3, - "st": 2, - "argv": 54, - "setup_git_directory": 1, - "nongit_ok": 2, - "setup_git_directory_gently": 1, - "have_repository": 1, - "trace_repo_setup": 1, - "setup_work_tree": 1, - "fn": 5, - "fstat": 1, - "fileno": 1, - "stdout": 5, - "S_ISFIFO": 1, - "st.st_mode": 2, - "S_ISSOCK": 1, - "fflush": 2, - "ferror": 2, - "fclose": 5, - "handle_internal_command": 3, - "commands": 3, - "cmd_add": 2, - "cmd_annotate": 1, - "cmd_apply": 1, - "cmd_archive": 1, - "cmd_bisect__helper": 1, - "cmd_blame": 2, - "cmd_branch": 1, - "cmd_bundle": 1, - "cmd_cat_file": 1, - "cmd_check_attr": 1, - "cmd_check_ref_format": 1, - "cmd_checkout": 1, - "cmd_checkout_index": 1, - "cmd_cherry": 1, - "cmd_cherry_pick": 1, - "cmd_clean": 1, - "cmd_clone": 1, - "cmd_column": 1, - "cmd_commit": 1, - "cmd_commit_tree": 1, - "cmd_config": 1, - "cmd_count_objects": 1, - "cmd_describe": 1, - "cmd_diff": 1, - "cmd_diff_files": 1, - "cmd_diff_index": 1, - "cmd_diff_tree": 1, - "cmd_fast_export": 1, - "cmd_fetch": 1, - "cmd_fetch_pack": 1, - "cmd_fmt_merge_msg": 1, - "cmd_for_each_ref": 1, - "cmd_format_patch": 1, - "cmd_fsck": 2, - "cmd_gc": 1, - "cmd_get_tar_commit_id": 1, - "cmd_grep": 1, - "cmd_hash_object": 1, - "cmd_help": 1, - "cmd_index_pack": 1, - "cmd_init_db": 2, - "cmd_log": 1, - "cmd_ls_files": 1, - "cmd_ls_remote": 2, - "cmd_ls_tree": 1, - "cmd_mailinfo": 1, - "cmd_mailsplit": 1, - "cmd_merge": 1, - "cmd_merge_base": 1, - "cmd_merge_file": 1, - "cmd_merge_index": 1, - "cmd_merge_ours": 1, - "cmd_merge_recursive": 4, - "cmd_merge_tree": 1, - "cmd_mktag": 1, - "cmd_mktree": 1, - "cmd_mv": 1, - "cmd_name_rev": 1, - "cmd_notes": 1, - "cmd_pack_objects": 1, - "cmd_pack_redundant": 1, - "cmd_pack_refs": 1, - "cmd_patch_id": 1, - "cmd_prune": 1, - "cmd_prune_packed": 1, - "cmd_push": 1, - "cmd_read_tree": 1, - "cmd_receive_pack": 1, - "cmd_reflog": 1, - "cmd_remote": 1, - "cmd_remote_ext": 1, - "cmd_remote_fd": 1, - "cmd_replace": 1, - "cmd_repo_config": 1, - "cmd_rerere": 1, - "cmd_reset": 1, - "cmd_rev_list": 1, - "cmd_rev_parse": 1, - "cmd_revert": 1, - "cmd_rm": 1, - "cmd_send_pack": 1, - "cmd_shortlog": 1, - "cmd_show": 1, - "cmd_show_branch": 1, - "cmd_show_ref": 1, - "cmd_status": 1, - "cmd_stripspace": 1, - "cmd_symbolic_ref": 1, - "cmd_tag": 1, - "cmd_tar_tree": 1, - "cmd_unpack_file": 1, - "cmd_unpack_objects": 1, - "cmd_update_index": 1, - "cmd_update_ref": 1, - "cmd_update_server_info": 1, - "cmd_upload_archive": 1, - "cmd_upload_archive_writer": 1, - "cmd_var": 1, - "cmd_verify_pack": 1, - "cmd_verify_tag": 1, - "cmd_version": 1, - "cmd_whatchanged": 1, - "cmd_write_tree": 1, - "ext": 4, - "STRIP_EXTENSION": 1, - "*argv0": 1, - "argv0": 2, - "ARRAY_SIZE": 1, - "exit": 20, - "execv_dashed_external": 2, - "STRBUF_INIT": 1, - "*tmp": 1, - "strbuf_addf": 1, - "tmp": 6, - "cmd.buf": 1, - "run_command_v_opt": 1, - "RUN_SILENT_EXEC_FAILURE": 1, - "RUN_CLEAN_ON_EXIT": 1, - "ENOENT": 3, - "strbuf_release": 1, - "run_argv": 2, - "done_alias": 4, - "argcp": 2, - "handle_alias": 1, - "main": 3, - "git_extract_argv0_path": 1, - "git_setup_gettext": 1, - "printf": 4, - "list_common_cmds_help": 1, - "setup_path": 1, - "done_help": 3, - "was_alias": 3, - "fprintf": 18, - "stderr": 15, - "help_unknown_cmd": 1, - "strerror": 4, - "PPC_SHA1": 1, - "git_hash_ctx": 7, - "SHA_CTX": 3, - "*git_hash_new_ctx": 1, - "*ctx": 5, - "ctx": 16, - "SHA1_Init": 4, - "git_hash_free_ctx": 1, - "git_hash_init": 1, - "git_hash_update": 1, - "SHA1_Update": 3, - "git_hash_final": 1, - "*out": 3, - "SHA1_Final": 3, - "git_hash_buf": 1, - "git_hash_vec": 1, - "git_buf_vec": 1, - "*vec": 1, - "vec": 2, - ".data": 1, - ".len": 3, - "HELLO_H": 2, - "hello": 1, - "": 5, - "": 2, - "": 3, - "": 3, - "": 2, - "ULLONG_MAX": 10, - "MIN": 3, - "HTTP_PARSER_DEBUG": 4, - "SET_ERRNO": 47, - "e": 4, - "do": 21, - "parser": 334, - "http_errno": 11, - "error_lineno": 3, - "__LINE__": 50, - "CALLBACK_NOTIFY_": 3, - "FOR": 11, - "ER": 4, - "HTTP_PARSER_ERRNO": 10, - "HPE_OK": 10, - "settings": 6, - "on_##FOR": 4, - "HPE_CB_##FOR": 2, - "CALLBACK_NOTIFY": 10, - "CALLBACK_NOTIFY_NOADVANCE": 2, - "CALLBACK_DATA_": 4, - "LEN": 2, - "FOR##_mark": 7, - "CALLBACK_DATA": 10, - "CALLBACK_DATA_NOADVANCE": 6, - "MARK": 7, - "PROXY_CONNECTION": 4, - "CONNECTION": 4, - "CONTENT_LENGTH": 4, - "TRANSFER_ENCODING": 4, - "UPGRADE": 4, - "CHUNKED": 4, - "KEEP_ALIVE": 4, - "CLOSE": 4, - "*method_strings": 1, - "XX": 63, - "num": 24, - "string": 18, - "#string": 1, - "HTTP_METHOD_MAP": 3, - "#undef": 7, - "tokens": 5, - "int8_t": 3, - "unhex": 3, - "HTTP_PARSER_STRICT": 5, - "uint8_t": 6, - "normal_url_char": 3, - "T": 3, - "s_dead": 10, - "s_start_req_or_res": 4, - "s_res_or_resp_H": 3, - "s_start_res": 5, - "s_res_H": 3, - "s_res_HT": 4, - "s_res_HTT": 3, - "s_res_HTTP": 3, - "s_res_first_http_major": 3, - "s_res_http_major": 3, - "s_res_first_http_minor": 3, - "s_res_http_minor": 3, - "s_res_first_status_code": 3, - "s_res_status_code": 3, - "s_res_status": 3, - "s_res_line_almost_done": 4, - "s_start_req": 6, - "s_req_method": 4, - "s_req_spaces_before_url": 5, - "s_req_schema": 6, - "s_req_schema_slash": 6, - "s_req_schema_slash_slash": 6, - "s_req_host_start": 8, - "s_req_host_v6_start": 7, - "s_req_host_v6": 7, - "s_req_host_v6_end": 7, - "s_req_host": 8, - "s_req_port_start": 7, - "s_req_port": 6, - "s_req_path": 8, - "s_req_query_string_start": 8, - "s_req_query_string": 7, - "s_req_fragment_start": 7, - "s_req_fragment": 7, - "s_req_http_start": 3, - "s_req_http_H": 3, - "s_req_http_HT": 3, - "s_req_http_HTT": 3, - "s_req_http_HTTP": 3, - "s_req_first_http_major": 3, - "s_req_http_major": 3, - "s_req_first_http_minor": 3, - "s_req_http_minor": 3, - "s_req_line_almost_done": 4, - "s_header_field_start": 12, - "s_header_field": 4, - "s_header_value_start": 4, - "s_header_value": 5, - "s_header_value_lws": 3, - "s_header_almost_done": 6, - "s_chunk_size_start": 4, - "s_chunk_size": 3, - "s_chunk_parameters": 3, - "s_chunk_size_almost_done": 4, - "s_headers_almost_done": 4, - "s_headers_done": 4, - "s_chunk_data": 3, - "s_chunk_data_almost_done": 3, - "s_chunk_data_done": 3, - "s_body_identity": 3, - "s_body_identity_eof": 4, - "s_message_done": 3, - "PARSING_HEADER": 2, - "header_states": 1, - "h_general": 23, - "0": 11, - "h_C": 3, - "h_CO": 3, - "h_CON": 3, - "h_matching_connection": 3, - "h_matching_proxy_connection": 3, - "h_matching_content_length": 3, - "h_matching_transfer_encoding": 3, - "h_matching_upgrade": 3, - "h_connection": 6, - "h_content_length": 5, - "h_transfer_encoding": 5, - "h_upgrade": 4, - "h_matching_transfer_encoding_chunked": 3, - "h_matching_connection_keep_alive": 3, - "h_matching_connection_close": 3, - "h_transfer_encoding_chunked": 4, - "h_connection_keep_alive": 4, - "h_connection_close": 4, - "Macros": 1, - "character": 11, - "classes": 1, - "depends": 1, - "on": 4, - "strict": 2, - "define": 14, - "CR": 18, - "r": 58, - "LF": 21, - "LOWER": 7, - "0x20": 1, - "IS_ALPHA": 5, - "z": 47, - "IS_NUM": 14, - "9": 1, - "IS_ALPHANUM": 3, - "IS_HEX": 2, - "TOKEN": 4, - "IS_URL_CHAR": 6, - "IS_HOST_CHAR": 4, - "0x80": 1, - "endif": 6, - "start_state": 1, - "HTTP_REQUEST": 7, - "cond": 1, - "HPE_STRICT": 1, - "HTTP_STRERROR_GEN": 3, - "#n": 1, - "*description": 1, - "http_strerror_tab": 7, - "HTTP_ERRNO_MAP": 3, - "http_message_needs_eof": 4, - "http_parser": 13, - "*parser": 9, - "parse_url_char": 5, - "ch": 145, - "http_parser_execute": 2, - "http_parser_settings": 5, - "*settings": 2, - "unhex_val": 7, - "*header_field_mark": 1, - "*header_value_mark": 1, - "*url_mark": 1, - "*body_mark": 1, - "message_complete": 7, - "HPE_INVALID_EOF_STATE": 1, - "header_field_mark": 2, - "header_value_mark": 2, - "url_mark": 2, - "nread": 7, - "HTTP_MAX_HEADER_SIZE": 2, - "HPE_HEADER_OVERFLOW": 1, - "reexecute_byte": 7, - "HPE_CLOSED_CONNECTION": 1, - "content_length": 27, - "message_begin": 3, - "HTTP_RESPONSE": 3, - "HPE_INVALID_CONSTANT": 3, - "method": 39, - "HTTP_HEAD": 2, - "index": 58, - "STRICT_CHECK": 15, - "HPE_INVALID_VERSION": 12, - "http_major": 11, - "http_minor": 11, - "HPE_INVALID_STATUS": 3, - "status_code": 8, - "HPE_INVALID_METHOD": 4, - "http_method": 4, - "HTTP_CONNECT": 4, - "HTTP_DELETE": 1, - "HTTP_GET": 1, - "HTTP_LOCK": 1, - "HTTP_MKCOL": 2, - "HTTP_NOTIFY": 1, - "HTTP_OPTIONS": 1, - "HTTP_POST": 2, - "HTTP_REPORT": 1, - "HTTP_SUBSCRIBE": 2, - "HTTP_TRACE": 1, - "HTTP_UNLOCK": 2, - "*matcher": 1, - "matcher": 3, - "method_strings": 2, - "HTTP_CHECKOUT": 1, - "HTTP_COPY": 1, - "HTTP_MOVE": 1, - "HTTP_MERGE": 1, - "HTTP_MSEARCH": 1, - "HTTP_MKACTIVITY": 1, - "HTTP_SEARCH": 1, - "HTTP_PROPFIND": 2, - "HTTP_PUT": 2, - "HTTP_PATCH": 1, - "HTTP_PURGE": 1, - "HTTP_UNSUBSCRIBE": 1, - "HTTP_PROPPATCH": 1, - "url": 4, - "HPE_INVALID_URL": 4, - "HPE_LF_EXPECTED": 1, - "HPE_INVALID_HEADER_TOKEN": 2, - "header_field": 5, - "header_state": 42, - "header_value": 6, - "F_UPGRADE": 3, - "HPE_INVALID_CONTENT_LENGTH": 4, - "uint64_t": 8, - "F_CONNECTION_KEEP_ALIVE": 3, - "F_CONNECTION_CLOSE": 3, - "F_CHUNKED": 11, - "F_TRAILING": 3, - "NEW_MESSAGE": 6, - "upgrade": 3, - "on_headers_complete": 3, - "F_SKIPBODY": 4, - "HPE_CB_headers_complete": 1, - "to_read": 6, - "body": 6, - "body_mark": 2, - "HPE_INVALID_CHUNK_SIZE": 2, - "HPE_INVALID_INTERNAL_STATE": 1, - "1": 2, - "HPE_UNKNOWN": 1, - "Does": 1, - "the": 91, - "need": 5, - "to": 37, - "see": 2, - "an": 2, - "EOF": 26, - "find": 1, - "end": 48, - "of": 44, - "message": 3, - "http_should_keep_alive": 2, - "http_method_str": 1, - "m": 8, - "http_parser_init": 2, - "http_parser_type": 3, - "http_errno_name": 1, - "/sizeof": 4, - ".name": 1, - "http_errno_description": 1, - ".description": 1, - "http_parser_parse_url": 2, - "buflen": 3, - "is_connect": 4, - "http_parser_url": 3, - "*u": 2, - "http_parser_url_fields": 2, - "uf": 14, - "old_uf": 4, - "u": 18, - "port": 7, - "field_set": 5, - "UF_MAX": 3, - "UF_SCHEMA": 2, - "UF_HOST": 3, - "UF_PORT": 5, - "UF_PATH": 2, - "UF_QUERY": 2, - "UF_FRAGMENT": 2, - "field_data": 5, - ".off": 2, - "xffff": 1, - "uint16_t": 12, - "http_parser_pause": 2, - "paused": 3, - "HPE_PAUSED": 2, - "http_parser_h": 2, - "__cplusplus": 20, - "HTTP_PARSER_VERSION_MAJOR": 1, - "HTTP_PARSER_VERSION_MINOR": 1, - "": 2, - "_WIN32": 3, - "__MINGW32__": 1, - "_MSC_VER": 5, - "__int8": 2, - "__int16": 2, - "int16_t": 1, - "__int32": 2, - "int32_t": 112, - "__int64": 3, - "int64_t": 2, - "ssize_t": 1, - "": 1, - "*1024": 4, - "DELETE": 2, - "GET": 2, - "HEAD": 2, - "POST": 2, - "PUT": 2, - "CONNECT": 2, - "OPTIONS": 2, - "TRACE": 2, - "COPY": 2, - "LOCK": 2, - "MKCOL": 2, - "MOVE": 2, - "PROPFIND": 2, - "PROPPATCH": 2, - "SEARCH": 3, - "UNLOCK": 2, - "REPORT": 2, - "MKACTIVITY": 2, - "CHECKOUT": 2, - "MERGE": 2, - "MSEARCH": 1, - "M": 1, - "NOTIFY": 2, - "SUBSCRIBE": 2, - "UNSUBSCRIBE": 2, - "PATCH": 2, - "PURGE": 2, - "HTTP_##name": 1, - "HTTP_BOTH": 1, - "OK": 1, - "CB_message_begin": 1, - "CB_url": 1, - "CB_header_field": 1, - "CB_header_value": 1, - "CB_headers_complete": 1, - "CB_body": 1, - "CB_message_complete": 1, - "INVALID_EOF_STATE": 1, - "HEADER_OVERFLOW": 1, - "CLOSED_CONNECTION": 1, - "INVALID_VERSION": 1, - "INVALID_STATUS": 1, - "INVALID_METHOD": 1, - "INVALID_URL": 1, - "INVALID_HOST": 1, - "INVALID_PORT": 1, - "INVALID_PATH": 1, - "INVALID_QUERY_STRING": 1, - "INVALID_FRAGMENT": 1, - "LF_EXPECTED": 1, - "INVALID_HEADER_TOKEN": 1, - "INVALID_CONTENT_LENGTH": 1, - "INVALID_CHUNK_SIZE": 1, - "INVALID_CONSTANT": 1, - "INVALID_INTERNAL_STATE": 1, - "STRICT": 1, - "PAUSED": 1, - "UNKNOWN": 1, - "HTTP_ERRNO_GEN": 3, - "HPE_##n": 1, - "HTTP_PARSER_ERRNO_LINE": 2, - "short": 6, - "http_cb": 3, - "on_message_begin": 1, - "http_data_cb": 4, - "on_url": 1, - "on_header_field": 1, - "on_header_value": 1, - "on_body": 1, - "on_message_complete": 1, - "off": 8, - "*http_method_str": 1, - "*http_errno_name": 1, - "*http_errno_description": 1, - "": 1, - "_Included_jni_JniLayer": 2, - "JNIEXPORT": 6, - "jlong": 6, - "JNICALL": 6, - "Java_jni_JniLayer_jni_1layer_1initialize": 1, - "JNIEnv": 6, - "jobject": 6, - "jintArray": 1, - "jint": 7, - "Java_jni_JniLayer_jni_1layer_1mainloop": 1, - "Java_jni_JniLayer_jni_1layer_1set_1button": 1, - "Java_jni_JniLayer_jni_1layer_1set_1analog": 1, - "jfloat": 1, - "Java_jni_JniLayer_jni_1layer_1report_1analog_1chg": 1, - "Java_jni_JniLayer_jni_1layer_1kill": 1, - "strncasecmp": 2, - "_strnicmp": 1, - "REF_TABLE_SIZE": 1, - "BUFFER_BLOCK": 5, - "BUFFER_SPAN": 9, - "MKD_LI_END": 1, - "gperf_case_strncmp": 1, - "s1": 6, - "s2": 6, - "GPERF_DOWNCASE": 1, - "GPERF_CASE_STRNCMP": 1, - "link_ref": 2, - "*link": 1, - "*title": 1, - "sd_markdown": 6, - "tag": 1, - "tag_len": 3, - "w": 6, - "is_empty": 4, - "htmlblock_end": 3, - "*curtag": 2, - "*rndr": 4, - "start_of_line": 2, - "tag_size": 3, - "curtag": 8, - "end_tag": 4, - "block_lines": 3, - "htmlblock_end_tag": 1, - "rndr": 25, - "parse_htmlblock": 1, - "*ob": 3, - "do_render": 4, - "tag_end": 7, - "work": 4, - "find_block_tag": 1, - "work.size": 5, - "cb.blockhtml": 6, - "ob": 14, - "opaque": 8, - "parse_table_row": 1, - "columns": 3, - "*col_data": 1, - "header_flag": 3, - "col": 9, - "*row_work": 1, - "cb.table_cell": 3, - "cb.table_row": 2, - "row_work": 4, - "rndr_newbuf": 2, - "cell_start": 5, - "cell_end": 6, - "*cell_work": 1, - "cell_work": 3, - "_isspace": 3, - "parse_inline": 1, - "col_data": 2, - "rndr_popbuf": 2, - "empty_cell": 2, - "parse_table_header": 1, - "*columns": 2, - "**column_data": 1, - "pipes": 23, - "header_end": 7, - "under_end": 1, - "*column_data": 1, - "calloc": 1, - "beg": 10, - "doc_size": 6, - "document": 9, - "UTF8_BOM": 1, - "is_ref": 1, - "md": 18, - "refs": 2, - "expand_tabs": 1, - "text": 22, - "bufputc": 2, - "bufgrow": 1, - "MARKDOWN_GROW": 1, - "cb.doc_header": 2, - "parse_block": 1, - "cb.doc_footer": 2, - "bufrelease": 3, - "free_link_refs": 1, - "work_bufs": 8, - ".size": 2, - "sd_markdown_free": 1, - "*md": 1, - ".asize": 2, - ".item": 2, - "stack_free": 2, - "sd_version": 1, - "*ver_major": 2, - "*ver_minor": 2, - "*ver_revision": 2, - "SUNDOWN_VER_MAJOR": 1, - "SUNDOWN_VER_MINOR": 1, - "SUNDOWN_VER_REVISION": 1, - "": 4, - "": 2, - "": 1, - "": 1, - "": 2, - "__APPLE__": 2, - "TARGET_OS_IPHONE": 1, - "**environ": 1, - "uv__chld": 2, - "EV_P_": 1, - "ev_child*": 1, - "watcher": 4, - "revents": 2, - "rstatus": 1, - "exit_status": 3, - "term_signal": 3, - "uv_process_t": 1, - "*process": 1, - "process": 19, - "child_watcher": 5, - "EV_CHILD": 1, - "ev_child_stop": 2, - "EV_A_": 1, - "WIFEXITED": 1, - "WEXITSTATUS": 2, - "WIFSIGNALED": 2, - "WTERMSIG": 2, - "exit_cb": 3, - "uv__make_socketpair": 2, - "fds": 20, - "SOCK_NONBLOCK": 2, - "fl": 8, - "SOCK_CLOEXEC": 1, - "UV__F_NONBLOCK": 5, - "socketpair": 2, - "AF_UNIX": 2, - "SOCK_STREAM": 2, - "uv__cloexec": 4, - "uv__nonblock": 5, - "uv__make_pipe": 2, - "__linux__": 3, - "UV__O_CLOEXEC": 1, - "UV__O_NONBLOCK": 1, - "uv__pipe2": 1, - "ENOSYS": 1, - "pipe": 1, - "uv__process_init_stdio": 2, - "uv_stdio_container_t*": 4, - "container": 17, - "writable": 8, - "UV_IGNORE": 2, - "UV_CREATE_PIPE": 4, - "UV_INHERIT_FD": 3, - "UV_INHERIT_STREAM": 2, - "data.stream": 7, - "UV_NAMED_PIPE": 2, - "data.fd": 1, - "uv__process_stdio_flags": 2, - "uv_pipe_t*": 1, - "ipc": 1, - "UV_STREAM_READABLE": 2, - "UV_STREAM_WRITABLE": 2, - "uv__process_open_stream": 2, - "child_fd": 3, - "close": 13, - "uv__stream_open": 1, - "uv_stream_t*": 2, - "uv__process_close_stream": 2, - "uv__stream_close": 1, - "uv__process_child_init": 2, - "uv_process_options_t": 2, - "options": 62, - "stdio_count": 7, - "int*": 22, - "options.flags": 4, - "UV_PROCESS_DETACHED": 2, - "setsid": 2, - "close_fd": 2, - "use_fd": 7, - "open": 4, - "O_RDONLY": 1, - "O_RDWR": 2, - "perror": 5, - "_exit": 6, - "dup2": 4, - "options.cwd": 2, - "UV_PROCESS_SETGID": 2, - "setgid": 1, - "options.gid": 1, - "UV_PROCESS_SETUID": 2, - "setuid": 1, - "options.uid": 1, - "environ": 4, - "options.env": 1, - "execvp": 1, - "options.file": 2, - "options.args": 1, - "SPAWN_WAIT_EXEC": 5, - "uv_spawn": 1, - "uv_loop_t*": 1, - "loop": 9, - "uv_process_t*": 3, - "char**": 7, - "save_our_env": 3, - "options.stdio_count": 4, - "malloc": 3, - "signal_pipe": 7, - "pollfd": 1, - "pfd": 2, - "pid_t": 2, - "pid": 13, - "UV_PROCESS_WINDOWS_VERBATIM_ARGUMENTS": 1, - "uv__handle_init": 1, - "uv_handle_t*": 1, - "UV_PROCESS": 1, - "counters.process_init": 1, - "uv__handle_start": 1, - "options.exit_cb": 1, - "options.stdio": 3, - "fork": 2, - "pfd.fd": 1, - "pfd.events": 1, - "POLLIN": 1, - "POLLHUP": 1, - "pfd.revents": 1, - "poll": 1, - "EINTR": 1, - "ev_child_init": 1, - "ev_child_start": 1, - "ev": 2, - "child_watcher.data": 1, - "uv__set_sys_error": 2, - "uv_process_kill": 1, - "signum": 4, - "kill": 4, - "uv_err_t": 1, - "uv_kill": 1, - "uv__new_sys_error": 1, - "uv_ok_": 1, - "uv__process_close": 1, - "handle": 10, - "uv__handle_stop": 1, - "VALUE": 13, - "rb_cRDiscount": 4, - "rb_rdiscount_to_html": 2, - "self": 9, - "*res": 2, - "szres": 8, - "encoding": 14, - "rb_funcall": 14, - "rb_intern": 15, - "rb_str_buf_new": 2, - "Check_Type": 2, - "T_STRING": 2, - "rb_rdiscount__get_flags": 3, - "MMIOT": 2, - "*doc": 2, - "mkd_string": 2, - "RSTRING_PTR": 2, - "RSTRING_LEN": 2, - "mkd_compile": 2, - "doc": 6, - "mkd_document": 1, - "res": 4, - "rb_str_cat": 4, - "mkd_cleanup": 2, - "rb_respond_to": 1, - "rb_rdiscount_toc_content": 2, - "mkd_toc": 1, - "ruby_obj": 11, - "MKD_TABSTOP": 1, - "MKD_NOHEADER": 1, - "Qtrue": 10, - "MKD_NOPANTS": 1, - "MKD_NOHTML": 1, - "MKD_TOC": 1, - "MKD_NOIMAGE": 1, - "MKD_NOLINKS": 1, - "MKD_NOTABLES": 1, - "MKD_STRICT": 1, - "MKD_AUTOLINK": 1, - "MKD_SAFELINK": 1, - "MKD_NO_EXT": 1, - "Init_rdiscount": 1, - "rb_define_class": 1, - "rb_cObject": 1, - "rb_define_method": 2, - "READLINE_READLINE_CATS": 3, - "": 1, - "atscntrb_readline_rl_library_version": 1, - "char*": 167, - "rl_library_version": 1, - "atscntrb_readline_rl_readline_version": 1, - "rl_readline_version": 1, - "atscntrb_readline_readline": 1, - "readline": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 2, - "": 1, - "": 1, - "": 3, - "": 1, - "sharedObjectsStruct": 1, - "shared": 1, - "double": 126, - "R_Zero": 2, - "R_PosInf": 2, - "R_NegInf": 2, - "R_Nan": 2, - "redisServer": 1, - "server": 1, - "redisCommand": 6, - "*commandTable": 1, - "redisCommandTable": 5, - "getCommand": 1, - "setCommand": 1, - "noPreloadGetKeys": 6, - "setnxCommand": 1, - "setexCommand": 1, - "psetexCommand": 1, - "appendCommand": 1, - "strlenCommand": 1, - "delCommand": 1, - "existsCommand": 1, - "setbitCommand": 1, - "getbitCommand": 1, - "setrangeCommand": 1, - "getrangeCommand": 2, - "incrCommand": 1, - "decrCommand": 1, - "mgetCommand": 1, - "rpushCommand": 1, - "lpushCommand": 1, - "rpushxCommand": 1, - "lpushxCommand": 1, - "linsertCommand": 1, - "rpopCommand": 1, - "lpopCommand": 1, - "brpopCommand": 1, - "brpoplpushCommand": 1, - "blpopCommand": 1, - "llenCommand": 1, - "lindexCommand": 1, - "lsetCommand": 1, - "lrangeCommand": 1, - "ltrimCommand": 1, - "lremCommand": 1, - "rpoplpushCommand": 1, - "saddCommand": 1, - "sremCommand": 1, - "smoveCommand": 1, - "sismemberCommand": 1, - "scardCommand": 1, - "spopCommand": 1, - "srandmemberCommand": 1, - "sinterCommand": 2, - "sinterstoreCommand": 1, - "sunionCommand": 1, - "sunionstoreCommand": 1, - "sdiffCommand": 1, - "sdiffstoreCommand": 1, - "zaddCommand": 1, - "zincrbyCommand": 1, - "zremCommand": 1, - "zremrangebyscoreCommand": 1, - "zremrangebyrankCommand": 1, - "zunionstoreCommand": 1, - "zunionInterGetKeys": 4, - "zinterstoreCommand": 1, - "zrangeCommand": 1, - "zrangebyscoreCommand": 1, - "zrevrangebyscoreCommand": 1, - "zcountCommand": 1, - "zrevrangeCommand": 1, - "zcardCommand": 1, - "zscoreCommand": 1, - "zrankCommand": 1, - "zrevrankCommand": 1, - "hsetCommand": 1, - "hsetnxCommand": 1, - "hgetCommand": 1, - "hmsetCommand": 1, - "hmgetCommand": 1, - "hincrbyCommand": 1, - "hincrbyfloatCommand": 1, - "hdelCommand": 1, - "hlenCommand": 1, - "hkeysCommand": 1, - "hvalsCommand": 1, - "hgetallCommand": 1, - "hexistsCommand": 1, - "incrbyCommand": 1, - "decrbyCommand": 1, - "incrbyfloatCommand": 1, - "getsetCommand": 1, - "msetCommand": 1, - "msetnxCommand": 1, - "randomkeyCommand": 1, - "selectCommand": 1, - "moveCommand": 1, - "renameCommand": 1, - "renameGetKeys": 2, - "renamenxCommand": 1, - "expireCommand": 1, - "expireatCommand": 1, - "pexpireCommand": 1, - "pexpireatCommand": 1, - "keysCommand": 1, - "dbsizeCommand": 1, - "authCommand": 3, - "pingCommand": 2, - "echoCommand": 2, - "saveCommand": 1, - "bgsaveCommand": 1, - "bgrewriteaofCommand": 1, - "shutdownCommand": 2, - "lastsaveCommand": 1, - "typeCommand": 1, - "multiCommand": 2, - "execCommand": 2, - "discardCommand": 2, - "syncCommand": 1, - "flushdbCommand": 1, - "flushallCommand": 1, - "sortCommand": 1, - "infoCommand": 4, - "monitorCommand": 2, - "ttlCommand": 1, - "pttlCommand": 1, - "persistCommand": 1, - "slaveofCommand": 2, - "debugCommand": 1, - "configCommand": 1, - "subscribeCommand": 2, - "unsubscribeCommand": 2, - "psubscribeCommand": 2, - "punsubscribeCommand": 2, - "publishCommand": 1, - "watchCommand": 2, - "unwatchCommand": 1, - "clusterCommand": 1, - "restoreCommand": 1, - "migrateCommand": 1, - "askingCommand": 1, - "dumpCommand": 1, - "objectCommand": 1, - "clientCommand": 1, - "evalCommand": 1, - "evalShaCommand": 1, - "slowlogCommand": 1, - "scriptCommand": 2, - "timeCommand": 2, - "bitopCommand": 1, - "bitcountCommand": 1, - "redisLogRaw": 3, - "level": 12, - "syslogLevelMap": 2, - "LOG_DEBUG": 1, - "LOG_INFO": 1, - "LOG_NOTICE": 1, - "LOG_WARNING": 1, - "FILE": 3, - "*fp": 3, - "rawmode": 2, - "REDIS_LOG_RAW": 2, - "xff": 3, - "server.verbosity": 4, - "fp": 13, - "server.logfile": 8, - "fopen": 3, - "msg": 10, - "timeval": 4, - "tv": 8, - "gettimeofday": 4, - "strftime": 1, - "localtime": 1, - "tv.tv_sec": 4, - "snprintf": 2, - "tv.tv_usec/1000": 1, - "getpid": 7, - "server.syslog_enabled": 3, - "syslog": 1, - "redisLog": 33, - "...": 127, - "va_list": 3, - "ap": 4, - "REDIS_MAX_LOGMSG_LEN": 1, - "va_start": 3, - "vsnprintf": 1, - "va_end": 3, - "redisLogFromHandler": 2, - "server.daemonize": 5, - "O_APPEND": 2, - "O_CREAT": 2, - "O_WRONLY": 2, - "STDOUT_FILENO": 2, - "ll2string": 3, - "write": 7, - "time": 10, - "oom": 3, - "REDIS_WARNING": 19, - "sleep": 1, - "abort": 1, - "ustime": 7, - "ust": 7, - "*1000000": 1, - "tv.tv_usec": 3, - "mstime": 5, - "/1000": 1, - "exitFromChild": 1, - "retcode": 3, - "COVERAGE_TEST": 1, - "dictVanillaFree": 1, - "*privdata": 8, - "DICT_NOTUSED": 6, - "privdata": 8, - "zfree": 2, - "dictListDestructor": 2, - "listRelease": 1, - "list*": 1, - "dictSdsKeyCompare": 6, - "*key1": 4, - "*key2": 4, - "l1": 4, - "l2": 3, - "sdslen": 14, - "sds": 13, - "key1": 5, - "key2": 5, - "dictSdsKeyCaseCompare": 2, - "strcasecmp": 13, - "dictRedisObjectDestructor": 7, - "decrRefCount": 6, - "dictSdsDestructor": 4, - "sdsfree": 2, - "dictObjKeyCompare": 2, - "robj": 7, - "*o1": 2, - "*o2": 2, - "o1": 7, - "ptr": 18, - "o2": 7, - "dictObjHash": 2, - "key": 9, - "dictGenHashFunction": 5, - "dictSdsHash": 4, - "dictSdsCaseHash": 2, - "dictGenCaseHashFunction": 1, - "dictEncObjKeyCompare": 4, - "robj*": 3, - "REDIS_ENCODING_INT": 4, - "getDecodedObject": 3, - "dictEncObjHash": 4, - "REDIS_ENCODING_RAW": 1, - "dictType": 8, - "setDictType": 1, - "zsetDictType": 1, - "dbDictType": 2, - "keyptrDictType": 2, - "commandTableDictType": 2, - "hashDictType": 1, - "keylistDictType": 4, - "clusterNodesDictType": 1, - "htNeedsResize": 3, - "dict": 11, - "*dict": 5, - "used": 10, - "dictSlots": 3, - "dictSize": 10, - "DICT_HT_INITIAL_SIZE": 2, - "used*100/size": 1, - "REDIS_HT_MINFILL": 1, - "tryResizeHashTables": 2, - "server.dbnum": 8, - "server.db": 23, - ".dict": 9, - "dictResize": 2, - ".expires": 8, - "incrementallyRehash": 2, - "dictIsRehashing": 2, - "dictRehashMilliseconds": 2, - "updateDictResizePolicy": 2, - "server.rdb_child_pid": 12, - "server.aof_child_pid": 10, - "dictEnableResize": 1, - "dictDisableResize": 1, - "activeExpireCycle": 2, - "iteration": 6, - "start": 10, - "timelimit": 5, - "*REDIS_EXPIRELOOKUPS_TIME_PERC/REDIS_HZ/100": 1, - "expired": 4, - "redisDb": 3, - "expires": 3, - "slots": 2, - "now": 5, - "num*100/slots": 1, - "REDIS_EXPIRELOOKUPS_PER_CRON": 2, - "dictEntry": 2, - "*de": 2, - "de": 12, - "dictGetRandomKey": 4, - "dictGetSignedIntegerVal": 1, - "dictGetKey": 4, - "*keyobj": 2, - "createStringObject": 11, - "propagateExpire": 2, - "keyobj": 6, - "dbDelete": 2, - "server.stat_expiredkeys": 3, - "xf": 1, - "REDIS_EXPIRELOOKUPS_PER_CRON/4": 1, - "updateLRUClock": 3, - "server.lruclock": 2, - "server.unixtime/REDIS_LRU_CLOCK_RESOLUTION": 1, - "REDIS_LRU_CLOCK_MAX": 1, - "trackOperationsPerSecond": 2, - "server.ops_sec_last_sample_time": 3, - "ops": 1, - "server.stat_numcommands": 4, - "server.ops_sec_last_sample_ops": 3, - "ops_sec": 3, - "ops*1000/t": 1, - "server.ops_sec_samples": 4, - "server.ops_sec_idx": 4, - "%": 2, - "REDIS_OPS_SEC_SAMPLES": 3, - "getOperationsPerSecond": 2, - "sum": 3, - "clientsCronHandleTimeout": 2, - "redisClient": 12, - "time_t": 4, - "server.unixtime": 10, - "server.maxidletime": 3, - "REDIS_SLAVE": 3, - "REDIS_MASTER": 2, - "REDIS_BLOCKED": 2, - "pubsub_channels": 2, - "listLength": 14, - "pubsub_patterns": 2, - "lastinteraction": 3, - "REDIS_VERBOSE": 3, - "freeClient": 1, - "bpop.timeout": 2, - "addReply": 13, - "shared.nullmultibulk": 2, - "unblockClientWaitingData": 1, - "clientsCronResizeQueryBuffer": 2, - "querybuf_size": 3, - "sdsAllocSize": 1, - "querybuf": 6, - "idletime": 2, - "REDIS_MBULK_BIG_ARG": 1, - "querybuf_size/": 1, - "querybuf_peak": 2, - "sdsavail": 1, - "sdsRemoveFreeSpace": 1, - "clientsCron": 2, - "numclients": 3, - "server.clients": 7, - "iterations": 4, - "numclients/": 1, - "REDIS_HZ*10": 1, - "listNode": 4, - "*head": 1, - "listRotate": 1, - "head": 3, - "listFirst": 2, - "listNodeValue": 3, - "run_with_period": 6, - "_ms_": 2, - "loops": 2, - "/REDIS_HZ": 2, - "serverCron": 2, - "aeEventLoop": 2, - "*eventLoop": 2, - "*clientData": 1, - "server.cronloops": 3, - "REDIS_NOTUSED": 5, - "eventLoop": 2, - "clientData": 1, - "server.watchdog_period": 3, - "watchdogScheduleSignal": 1, - "zmalloc_used_memory": 8, - "server.stat_peak_memory": 5, - "server.shutdown_asap": 3, - "prepareForShutdown": 2, - "REDIS_OK": 23, - "vkeys": 8, - "server.activerehashing": 2, - "server.slaves": 9, - "server.aof_rewrite_scheduled": 4, - "rewriteAppendOnlyFileBackground": 2, - "statloc": 5, - "wait3": 1, - "WNOHANG": 1, - "exitcode": 3, - "bysignal": 4, - "backgroundSaveDoneHandler": 1, - "backgroundRewriteDoneHandler": 1, - "server.saveparamslen": 3, - "saveparam": 1, - "*sp": 1, - "server.saveparams": 2, - "server.dirty": 3, - "sp": 4, - "changes": 2, - "server.lastsave": 3, - "seconds": 2, - "REDIS_NOTICE": 13, - "rdbSaveBackground": 1, - "server.rdb_filename": 4, - "server.aof_rewrite_perc": 3, - "server.aof_current_size": 2, - "server.aof_rewrite_min_size": 2, - "base": 1, - "server.aof_rewrite_base_size": 4, - "growth": 3, - "server.aof_current_size*100/base": 1, - "server.aof_flush_postponed_start": 2, - "flushAppendOnlyFile": 2, - "server.masterhost": 7, - "freeClientsInAsyncFreeQueue": 1, - "replicationCron": 1, - "server.cluster_enabled": 6, - "clusterCron": 1, - "beforeSleep": 2, - "*ln": 3, - "server.unblocked_clients": 4, - "ln": 8, - "redisAssert": 1, - "listDelNode": 1, - "REDIS_UNBLOCKED": 1, - "server.current_client": 3, - "processInputBuffer": 1, - "createSharedObjects": 2, - "shared.crlf": 2, - "createObject": 31, - "REDIS_STRING": 31, - "sdsnew": 27, - "shared.ok": 3, - "shared.err": 1, - "shared.emptybulk": 1, - "shared.czero": 1, - "shared.cone": 1, - "shared.cnegone": 1, - "shared.nullbulk": 1, - "shared.emptymultibulk": 1, - "shared.pong": 2, - "shared.queued": 2, - "shared.wrongtypeerr": 1, - "shared.nokeyerr": 1, - "shared.syntaxerr": 2, - "shared.sameobjecterr": 1, - "shared.outofrangeerr": 1, - "shared.noscripterr": 1, - "shared.loadingerr": 2, - "shared.slowscripterr": 2, - "shared.masterdownerr": 2, - "shared.bgsaveerr": 2, - "shared.roslaveerr": 2, - "shared.oomerr": 2, - "shared.space": 1, - "shared.colon": 1, - "shared.plus": 1, - "REDIS_SHARED_SELECT_CMDS": 1, - "shared.select": 1, - "sdscatprintf": 24, - "sdsempty": 8, - "shared.messagebulk": 1, - "shared.pmessagebulk": 1, - "shared.subscribebulk": 1, - "shared.unsubscribebulk": 1, - "shared.psubscribebulk": 1, - "shared.punsubscribebulk": 1, - "shared.del": 1, - "shared.rpop": 1, - "shared.lpop": 1, - "REDIS_SHARED_INTEGERS": 1, - "shared.integers": 2, - "void*": 135, - "REDIS_SHARED_BULKHDR_LEN": 1, - "shared.mbulkhdr": 1, - "shared.bulkhdr": 1, - "initServerConfig": 2, - "getRandomHexChars": 1, - "server.runid": 3, - "REDIS_RUN_ID_SIZE": 2, - "server.arch_bits": 3, - "server.port": 7, - "REDIS_SERVERPORT": 1, - "server.bindaddr": 2, - "server.unixsocket": 7, - "server.unixsocketperm": 2, - "server.ipfd": 9, - "server.sofd": 9, - "REDIS_DEFAULT_DBNUM": 1, - "REDIS_MAXIDLETIME": 1, - "server.client_max_querybuf_len": 1, - "REDIS_MAX_QUERYBUF_LEN": 1, - "server.loading": 4, - "server.syslog_ident": 2, - "zstrdup": 5, - "server.syslog_facility": 2, - "LOG_LOCAL0": 1, - "server.aof_state": 7, - "REDIS_AOF_OFF": 5, - "server.aof_fsync": 1, - "AOF_FSYNC_EVERYSEC": 1, - "server.aof_no_fsync_on_rewrite": 1, - "REDIS_AOF_REWRITE_PERC": 1, - "REDIS_AOF_REWRITE_MIN_SIZE": 1, - "server.aof_last_fsync": 1, - "server.aof_rewrite_time_last": 2, - "server.aof_rewrite_time_start": 2, - "server.aof_delayed_fsync": 2, - "server.aof_fd": 4, - "server.aof_selected_db": 1, - "server.pidfile": 3, - "server.aof_filename": 3, - "server.requirepass": 4, - "server.rdb_compression": 1, - "server.rdb_checksum": 1, - "server.maxclients": 6, - "REDIS_MAX_CLIENTS": 1, - "server.bpop_blocked_clients": 2, - "server.maxmemory": 6, - "server.maxmemory_policy": 11, - "REDIS_MAXMEMORY_VOLATILE_LRU": 3, - "server.maxmemory_samples": 3, - "server.hash_max_ziplist_entries": 1, - "REDIS_HASH_MAX_ZIPLIST_ENTRIES": 1, - "server.hash_max_ziplist_value": 1, - "REDIS_HASH_MAX_ZIPLIST_VALUE": 1, - "server.list_max_ziplist_entries": 1, - "REDIS_LIST_MAX_ZIPLIST_ENTRIES": 1, - "server.list_max_ziplist_value": 1, - "REDIS_LIST_MAX_ZIPLIST_VALUE": 1, - "server.set_max_intset_entries": 1, - "REDIS_SET_MAX_INTSET_ENTRIES": 1, - "server.zset_max_ziplist_entries": 1, - "REDIS_ZSET_MAX_ZIPLIST_ENTRIES": 1, - "server.zset_max_ziplist_value": 1, - "REDIS_ZSET_MAX_ZIPLIST_VALUE": 1, - "server.repl_ping_slave_period": 1, - "REDIS_REPL_PING_SLAVE_PERIOD": 1, - "server.repl_timeout": 1, - "REDIS_REPL_TIMEOUT": 1, - "server.cluster.configfile": 1, - "server.lua_caller": 1, - "server.lua_time_limit": 1, - "REDIS_LUA_TIME_LIMIT": 1, - "server.lua_client": 1, - "server.lua_timedout": 2, - "resetServerSaveParams": 2, - "appendServerSaveParams": 3, - "*60": 1, - "server.masterauth": 1, - "server.masterport": 2, - "server.master": 3, - "server.repl_state": 6, - "REDIS_REPL_NONE": 1, - "server.repl_syncio_timeout": 1, - "REDIS_REPL_SYNCIO_TIMEOUT": 1, - "server.repl_serve_stale_data": 2, - "server.repl_slave_ro": 2, - "server.repl_down_since": 2, - "server.client_obuf_limits": 9, - "REDIS_CLIENT_LIMIT_CLASS_NORMAL": 3, - ".hard_limit_bytes": 3, - ".soft_limit_bytes": 3, - ".soft_limit_seconds": 3, - "REDIS_CLIENT_LIMIT_CLASS_SLAVE": 3, - "*1024*256": 1, - "*1024*64": 1, - "REDIS_CLIENT_LIMIT_CLASS_PUBSUB": 3, - "*1024*32": 1, - "*1024*8": 1, - "/R_Zero": 2, - "R_Zero/R_Zero": 1, - "server.commands": 1, - "dictCreate": 6, - "populateCommandTable": 2, - "server.delCommand": 1, - "lookupCommandByCString": 3, - "server.multiCommand": 1, - "server.lpushCommand": 1, - "server.slowlog_log_slower_than": 1, - "REDIS_SLOWLOG_LOG_SLOWER_THAN": 1, - "server.slowlog_max_len": 1, - "REDIS_SLOWLOG_MAX_LEN": 1, - "server.assert_failed": 1, - "server.assert_file": 1, - "server.assert_line": 1, - "server.bug_report_start": 1, - "adjustOpenFilesLimit": 2, - "rlim_t": 3, - "maxfiles": 6, - "rlimit": 1, - "limit": 3, - "getrlimit": 1, - "RLIMIT_NOFILE": 2, - "oldlimit": 5, - "limit.rlim_cur": 2, - "limit.rlim_max": 1, - "setrlimit": 1, - "initServer": 2, - "signal": 2, - "SIGHUP": 1, - "SIG_IGN": 2, - "SIGPIPE": 1, - "setupSignalHandlers": 2, - "openlog": 1, - "LOG_PID": 1, - "LOG_NDELAY": 1, - "LOG_NOWAIT": 1, - "listCreate": 6, - "server.clients_to_close": 1, - "server.monitors": 2, - "server.el": 7, - "aeCreateEventLoop": 1, - "zmalloc": 2, - "*server.dbnum": 1, - "anetTcpServer": 1, - "server.neterr": 4, - "ANET_ERR": 2, - "unlink": 3, - "anetUnixServer": 1, - ".blocking_keys": 1, - ".watched_keys": 1, - ".id": 1, - "server.pubsub_channels": 2, - "server.pubsub_patterns": 4, - "listSetFreeMethod": 1, - "freePubsubPattern": 1, - "listSetMatchMethod": 1, - "listMatchPubsubPattern": 1, - "aofRewriteBufferReset": 1, - "server.aof_buf": 3, - "server.rdb_save_time_last": 2, - "server.rdb_save_time_start": 2, - "server.stat_numconnections": 2, - "server.stat_evictedkeys": 3, - "server.stat_starttime": 2, - "server.stat_keyspace_misses": 2, - "server.stat_keyspace_hits": 2, - "server.stat_fork_time": 2, - "server.stat_rejected_conn": 2, - "server.lastbgsave_status": 3, - "server.stop_writes_on_bgsave_err": 2, - "aeCreateTimeEvent": 1, - "aeCreateFileEvent": 2, - "AE_READABLE": 2, - "acceptTcpHandler": 1, - "AE_ERR": 2, - "acceptUnixHandler": 1, - "REDIS_AOF_ON": 2, - "LL*": 1, - "REDIS_MAXMEMORY_NO_EVICTION": 2, - "clusterInit": 1, - "scriptingInit": 1, - "slowlogInit": 1, - "bioInit": 1, - "numcommands": 5, - "sflags": 1, - "retval": 3, - "arity": 3, - "addReplyErrorFormat": 1, - "authenticated": 3, - "proc": 14, - "addReplyError": 6, - "getkeys_proc": 1, - "firstkey": 1, - "hashslot": 3, - "server.cluster.state": 1, - "REDIS_CLUSTER_OK": 1, - "ask": 3, - "clusterNode": 1, - "*n": 1, - "getNodeByQuery": 1, - "server.cluster.myself": 1, - "addReplySds": 3, - "ip": 4, - "freeMemoryIfNeeded": 2, - "REDIS_CMD_DENYOOM": 1, - "REDIS_ERR": 5, - "REDIS_CMD_WRITE": 2, - "REDIS_REPL_CONNECTED": 3, - "tolower": 2, - "REDIS_MULTI": 1, - "queueMultiCommand": 1, - "call": 1, - "REDIS_CALL_FULL": 1, - "save": 2, - "REDIS_SHUTDOWN_SAVE": 1, - "nosave": 2, - "REDIS_SHUTDOWN_NOSAVE": 1, - "SIGKILL": 2, - "rdbRemoveTempFile": 1, - "aof_fsync": 1, - "rdbSave": 1, - "addReplyBulk": 1, - "addReplyMultiBulkLen": 1, - "addReplyBulkLongLong": 2, - "bytesToHuman": 3, - "*s": 3, - "sprintf": 10, - "n/": 3, - "LL*1024*1024": 2, - "LL*1024*1024*1024": 1, - "genRedisInfoString": 2, - "*section": 2, - "info": 64, - "uptime": 2, - "rusage": 1, - "self_ru": 2, - "c_ru": 2, - "lol": 3, - "bib": 3, - "allsections": 12, - "defsections": 11, - "sections": 11, - "section": 14, - "getrusage": 2, - "RUSAGE_SELF": 1, - "RUSAGE_CHILDREN": 1, - "getClientsMaxBuffers": 1, - "utsname": 1, - "sdscat": 14, - "uname": 1, - "REDIS_VERSION": 4, - "redisGitSHA1": 3, - "strtol": 2, - "redisGitDirty": 3, - "name.sysname": 1, - "name.release": 1, - "name.machine": 1, - "aeGetApiName": 1, - "__GNUC_MINOR__": 2, - "__GNUC_PATCHLEVEL__": 1, - "uptime/": 1, - "*24": 1, - "hmem": 3, - "peak_hmem": 3, - "zmalloc_get_rss": 1, - "lua_gc": 1, - "server.lua": 1, - "LUA_GCCOUNT": 1, - "*1024LL": 1, - "zmalloc_get_fragmentation_ratio": 1, - "ZMALLOC_LIB": 2, - "aofRewriteBufferSize": 2, - "bioPendingJobsOfType": 1, - "REDIS_BIO_AOF_FSYNC": 1, - "perc": 3, - "eta": 4, - "elapsed": 3, - "off_t": 1, - "remaining_bytes": 1, - "server.loading_total_bytes": 3, - "server.loading_loaded_bytes": 3, - "server.loading_start_time": 2, - "elapsed*remaining_bytes": 1, - "/server.loading_loaded_bytes": 1, - "REDIS_REPL_TRANSFER": 2, - "server.repl_transfer_left": 1, - "server.repl_transfer_lastio": 1, - "slaveid": 3, - "listIter": 2, - "li": 6, - "listRewind": 2, - "listNext": 2, - "*slave": 2, - "*state": 1, - "anetPeerToString": 1, - "slave": 3, - "replstate": 1, - "REDIS_REPL_WAIT_BGSAVE_START": 1, - "REDIS_REPL_WAIT_BGSAVE_END": 1, - "REDIS_REPL_SEND_BULK": 1, - "REDIS_REPL_ONLINE": 1, - "float": 26, - "self_ru.ru_stime.tv_sec": 1, - "self_ru.ru_stime.tv_usec/1000000": 1, - "self_ru.ru_utime.tv_sec": 1, - "self_ru.ru_utime.tv_usec/1000000": 1, - "c_ru.ru_stime.tv_sec": 1, - "c_ru.ru_stime.tv_usec/1000000": 1, - "c_ru.ru_utime.tv_sec": 1, - "c_ru.ru_utime.tv_usec/1000000": 1, - "calls": 4, - "microseconds": 1, - "microseconds/c": 1, - "keys": 4, - "REDIS_MONITOR": 1, - "slaveseldb": 1, - "listAddNodeTail": 1, - "mem_used": 9, - "mem_tofree": 3, - "mem_freed": 4, - "slaves": 3, - "obuf_bytes": 3, - "getClientOutputBufferMemoryUsage": 1, - "k": 15, - "keys_freed": 3, - "bestval": 5, - "bestkey": 9, - "REDIS_MAXMEMORY_ALLKEYS_LRU": 2, - "REDIS_MAXMEMORY_ALLKEYS_RANDOM": 2, - "REDIS_MAXMEMORY_VOLATILE_RANDOM": 1, - "thiskey": 7, - "thisval": 8, - "dictFind": 1, - "dictGetVal": 2, - "estimateObjectIdleTime": 1, - "REDIS_MAXMEMORY_VOLATILE_TTL": 1, - "flushSlavesOutputBuffers": 1, - "linuxOvercommitMemoryValue": 2, - "fgets": 1, - "atoi": 3, - "linuxOvercommitMemoryWarning": 2, - "createPidFile": 2, - "daemonize": 2, - "STDIN_FILENO": 1, - "STDERR_FILENO": 2, - "version": 4, - "usage": 2, - "redisAsciiArt": 2, - "*16": 2, - "ascii_logo": 1, - "sigtermHandler": 2, - "sig": 2, - "sigaction": 6, - "act": 6, - "sigemptyset": 2, - "act.sa_mask": 2, - "act.sa_flags": 2, - "act.sa_handler": 1, - "SIGTERM": 1, - "HAVE_BACKTRACE": 1, - "SA_NODEFER": 1, - "SA_RESETHAND": 1, - "SA_SIGINFO": 1, - "act.sa_sigaction": 1, - "sigsegvHandler": 1, - "SIGSEGV": 1, - "SIGBUS": 1, - "SIGFPE": 1, - "SIGILL": 1, - "memtest": 2, - "megabytes": 1, - "passes": 1, - "zmalloc_enable_thread_safeness": 1, - "srand": 1, - "dictSetHashFunctionSeed": 1, - "*configfile": 1, - "configfile": 2, - "sdscatrepr": 1, - "loadServerConfig": 1, - "loadAppendOnlyFile": 1, - "/1000000": 2, - "rdbLoad": 1, - "aeSetBeforeSleepProc": 1, - "aeMain": 1, - "aeDeleteEventLoop": 1, - "": 1, - "": 2, - "": 2, - "rfUTF8_IsContinuationbyte": 1, - "e.t.c.": 1, - "rfFReadLine_UTF8": 5, - "FILE*": 64, - "utf8": 36, - "uint32_t*": 34, - "byteLength": 197, - "bufferSize": 6, - "eof": 53, - "bytesN": 98, - "bIndex": 5, - "RF_NEWLINE_CRLF": 1, - "newLineFound": 1, - "*bufferSize": 1, - "RF_OPTION_FGETS_READBYTESN": 5, - "RF_MALLOC": 47, - "tempBuff": 6, - "RF_LF": 10, - "buff": 95, - "RF_SUCCESS": 14, - "RE_FILE_EOF": 22, - "found": 20, - "*eofReached": 14, - "LOG_ERROR": 64, - "RF_HEXEQ_UI": 7, - "rfFgetc_UTF32BE": 3, - "else//": 14, - "undo": 5, - "peek": 5, - "ahead": 5, - "file": 6, - "pointer": 5, - "fseek": 19, - "SEEK_CUR": 19, - "rfFgets_UTF32LE": 2, - "eofReached": 4, - "rfFgetc_UTF32LE": 4, - "rfFgets_UTF16BE": 2, - "rfFgetc_UTF16BE": 4, - "rfFgets_UTF16LE": 2, - "rfFgetc_UTF16LE": 4, - "rfFgets_UTF8": 2, - "rfFgetc_UTF8": 3, - "RF_HEXEQ_C": 9, - "fgetc": 9, - "check": 8, - "RE_FILE_READ": 2, - "cp": 12, - "c2": 13, - "c3": 9, - "c4": 5, - "i_READ_CHECK": 20, - "///": 4, - "success": 4, - "cc": 24, - "we": 10, - "more": 2, - "bytes": 225, - "xC0": 3, - "xC1": 1, - "RE_UTF8_INVALID_SEQUENCE_INVALID_BYTE": 6, - "RE_UTF8_INVALID_SEQUENCE_END": 6, - "rfUTF8_IsContinuationByte": 12, - "RE_UTF8_INVALID_SEQUENCE_CONBYTE": 6, - "decoded": 3, - "codepoint": 47, - "F": 38, - "xE0": 2, - "xF": 5, - "decode": 6, - "xF0": 2, - "RF_HEXGE_C": 1, - "xBF": 2, - "//invalid": 1, - "byte": 6, - "are": 6, - "xFF": 1, - "//if": 1, - "needing": 1, - "than": 5, - "swapE": 21, - "v1": 38, - "v2": 26, - "rfUTILS_Endianess": 24, - "RF_LITTLE_ENDIAN": 23, - "fread": 12, - "endianess": 40, - "needed": 10, - "rfUTILS_SwapEndianUS": 10, - "RF_HEXGE_US": 4, - "xD800": 8, - "RF_HEXLE_US": 4, - "xDFFF": 8, - "RF_HEXL_US": 8, - "RF_HEXG_US": 8, - "xDBFF": 4, - "RE_UTF16_INVALID_SEQUENCE": 20, - "RE_UTF16_NO_SURRPAIR": 2, - "xDC00": 4, - "user": 2, - "wants": 2, - "ff": 10, - "uint16_t*": 11, - "surrogate": 4, - "pair": 4, - "existence": 2, - "RF_BIG_ENDIAN": 10, - "rfUTILS_SwapEndianUI": 11, - "rfFback_UTF32BE": 2, - "i_FSEEK_CHECK": 14, - "rfFback_UTF32LE": 2, - "rfFback_UTF16BE": 2, - "rfFback_UTF16LE": 2, - "rfFback_UTF8": 2, - "depending": 1, - "number": 19, - "read": 1, - "backwards": 1, - "RE_UTF8_INVALID_SEQUENCE": 2, - "REFU_IO_H": 2, - "": 2, - "opening": 2, - "bracket": 4, - "calling": 4, - "C": 14, - "xA": 1, - "RF_CR": 1, - "xD": 1, - "REFU_WIN32_VERSION": 1, - "i_PLUSB_WIN32": 2, - "foff_rft": 2, - "off64_t": 1, - "///Fseek": 1, - "and": 15, - "Ftelll": 1, - "definitions": 1, - "rfFseek": 2, - "i_FILE_": 16, - "i_OFFSET_": 4, - "i_WHENCE_": 4, - "_fseeki64": 1, - "rfFtell": 2, - "_ftelli64": 1, - "fseeko64": 1, - "ftello64": 1, - "i_DECLIMEX_": 121, - "rfFReadLine_UTF16BE": 6, - "rfFReadLine_UTF16LE": 4, - "rfFReadLine_UTF32BE": 1, - "rfFReadLine_UTF32LE": 4, - "rfFgets_UTF32BE": 1, - "RF_IAMHERE_FOR_DOXYGEN": 22, - "rfPopen": 2, - "command": 2, - "i_rfPopen": 2, - "i_CMD_": 2, - "i_MODE_": 2, - "i_rfLMS_WRAP2": 5, - "rfPclose": 1, - "stream": 3, - "///closing": 1, - "#endif//include": 1, - "guards": 2, - "": 1, - "": 2, - "local": 5, - "stack": 6, - "memory": 4, - "RF_OPTION_DEFAULT_ARGUMENTS": 24, - "RF_String*": 222, - "rfString_Create": 4, - "i_rfString_Create": 3, - "READ_VSNPRINTF_ARGS": 5, - "rfUTF8_VerifySequence": 7, - "RF_FAILURE": 24, - "RE_STRING_INIT_FAILURE": 8, - "buffAllocated": 11, - "RF_String": 27, - "i_NVrfString_Create": 3, - "i_rfString_CreateLocal1": 3, - "RF_OPTION_SOURCE_ENCODING": 30, - "RF_UTF8": 8, - "characterLength": 16, - "*codepoints": 2, - "rfLMS_MacroEvalPtr": 2, - "RF_LMS": 6, - "RF_UTF16_LE": 9, - "RF_UTF16_BE": 7, - "codepoints": 44, - "i/2": 2, - "#elif": 14, - "RF_UTF32_LE": 3, - "RF_UTF32_BE": 3, - "UTF16": 4, - "rfUTF16_Decode": 5, - "rfUTF16_Decode_swap": 5, - "RF_UTF16_BE//": 2, - "RF_UTF32_LE//": 2, - "copy": 4, - "UTF32": 4, - "into": 8, - "RF_UTF32_BE//": 2, - "": 2, - "any": 3, - "other": 16, - "UTF": 17, - "8": 15, - "encode": 2, - "them": 3, - "rfUTF8_Encode": 4, - "While": 2, - "attempting": 2, - "create": 2, - "temporary": 4, - "given": 5, - "sequence": 6, - "could": 2, - "not": 6, - "be": 6, - "properly": 2, - "encoded": 2, - "RE_UTF8_ENCODING": 2, - "End": 2, - "Non": 2, - "code=": 2, - "normally": 1, - "since": 5, - "here": 5, - "have": 2, - "validity": 2, - "get": 4, - "Error": 2, - "at": 3, - "String": 11, - "Allocation": 2, - "due": 2, - "invalid": 2, - "rfLMS_Push": 4, - "Memory": 4, - "allocation": 3, - "Local": 2, - "Stack": 2, - "failed": 2, - "Insufficient": 2, - "space": 4, - "Consider": 2, - "compiling": 2, - "library": 3, - "with": 9, - "bigger": 3, - "Quitting": 2, - "proccess": 2, - "RE_LOCALMEMSTACK_INSUFFICIENT": 8, - "i_NVrfString_CreateLocal": 3, - "during": 1, - "rfString_Init": 3, - "i_rfString_Init": 3, - "i_NVrfString_Init": 3, - "rfString_Create_cp": 2, - "rfString_Init_cp": 3, - "RF_HEXLE_UI": 8, - "RF_HEXGE_UI": 6, - "C0": 3, - "ffff": 4, - "xFC0": 4, - "xF000": 2, - "xE": 2, - "F000": 2, - "C0000": 2, - "E": 11, - "RE_UTF8_INVALID_CODE_POINT": 2, - "rfString_Create_i": 2, - "numLen": 8, - "max": 4, - "is": 17, - "most": 3, - "environment": 3, - "so": 4, - "chars": 3, - "will": 3, - "certainly": 3, - "fit": 3, - "it": 12, - "strcpy": 4, - "rfString_Init_i": 2, - "rfString_Create_f": 2, - "rfString_Init_f": 2, - "rfString_Create_UTF16": 2, - "rfString_Init_UTF16": 3, - "utf8ByteLength": 34, - "last": 1, - "utf": 1, - "null": 4, - "termination": 3, - "byteLength*2": 1, - "allocate": 1, - "same": 1, - "as": 4, - "different": 1, - "RE_INPUT": 1, - "ends": 3, - "rfString_Create_UTF32": 2, - "rfString_Init_UTF32": 3, - "codeBuffer": 9, - "xFEFF": 1, - "big": 14, - "endian": 20, - "xFFFE0000": 1, - "little": 7, - "according": 1, - "standard": 1, - "no": 4, - "BOM": 1, - "means": 1, - "rfUTF32_Length": 1, - "i_rfString_Assign": 3, - "dest": 7, - "sourceP": 2, - "source": 8, - "RF_REALLOC": 9, - "rfString_Assign_char": 2, - "<5)>": 1, - "rfString_Create_nc": 3, - "i_rfString_Create_nc": 3, - "bytesWritten": 2, - "i_NVrfString_Create_nc": 3, - "rfString_Init_nc": 4, - "i_rfString_Init_nc": 3, - "i_NVrfString_Init_nc": 3, - "rfString_Destroy": 2, - "rfString_Deinit": 3, - "rfString_ToUTF16": 4, - "charsN": 5, - "rfUTF8_Decode": 2, - "rfUTF16_Encode": 1, - "rfString_ToUTF32": 4, - "rfString_Length": 5, - "RF_STRING_ITERATE_START": 9, - "RF_STRING_ITERATE_END": 9, - "rfString_GetChar": 2, - "thisstr": 210, - "codePoint": 18, - "RF_STRING_INDEX_OUT_OF_BOUNDS": 2, - "rfString_BytePosToCodePoint": 7, - "rfString_BytePosToCharPos": 4, - "thisstrP": 32, - "bytepos": 12, - "before": 4, - "charPos": 8, - "byteI": 7, - "i_rfString_Equal": 3, - "s1P": 2, - "s2P": 2, - "i_rfString_Find": 5, - "sstrP": 6, - "optionsP": 11, - "sstr": 39, - "*optionsP": 8, - "RF_BITFLAG_ON": 5, - "RF_CASE_IGNORE": 2, - "strstr": 2, - "RF_MATCH_WORD": 5, - "exact": 6, - "": 1, - "0x5a": 1, - "0x7a": 1, - "substring": 5, - "search": 1, - "zero": 2, - "equals": 1, - "then": 1, - "okay": 1, - "rfString_Equal": 4, - "RFS_": 8, - "ERANGE": 1, - "RE_STRING_TOFLOAT_UNDERFLOW": 1, - "RE_STRING_TOFLOAT": 1, - "rfString_Copy_OUT": 2, - "srcP": 6, - "rfString_Copy_IN": 2, - "dst": 15, - "rfString_Copy_chars": 2, - "bytePos": 23, - "terminate": 1, - "i_rfString_ScanfAfter": 3, - "afterstrP": 2, - "format": 4, - "afterstr": 5, - "sscanf": 1, - "<=0)>": 1, - "Counts": 1, - "how": 1, - "many": 1, - "times": 1, - "occurs": 1, - "inside": 2, - "i_rfString_Count": 5, - "sstr2": 2, - "move": 12, - "rfString_FindBytePos": 10, - "rfString_Tokenize": 2, - "sep": 3, - "tokensN": 2, - "RF_String**": 2, - "*tokensN": 1, - "rfString_Count": 4, - "lstr": 6, - "lstrP": 1, - "rstr": 24, - "rstrP": 5, - "rfString_After": 4, - "rfString_Beforev": 4, - "parNP": 6, - "i_rfString_Beforev": 16, - "parN": 10, - "*parNP": 2, - "minPos": 17, - "thisPos": 8, - "argList": 8, - "va_arg": 2, - "i_rfString_Before": 5, - "i_rfString_After": 5, - "afterP": 2, - "after": 6, - "rfString_Afterv": 4, - "i_rfString_Afterv": 16, - "minPosLength": 3, - "go": 8, - "i_rfString_Append": 3, - "otherP": 4, - "strncat": 1, - "rfString_Append_i": 2, - "rfString_Append_f": 2, - "i_rfString_Prepend": 3, - "goes": 1, - "i_rfString_Remove": 6, - "numberP": 1, - "*numberP": 1, - "occurences": 5, - "done": 1, - "<=thisstr->": 1, - "i_rfString_KeepOnly": 3, - "keepstrP": 2, - "keepLength": 2, - "charValue": 12, - "*keepChars": 1, - "keepstr": 5, - "exists": 6, - "charBLength": 5, - "keepChars": 4, - "*keepLength": 1, - "rfString_Iterate_Start": 6, - "rfString_Iterate_End": 4, - "": 1, - "does": 1, - "exist": 2, - "back": 1, - "cover": 1, - "that": 9, - "effectively": 1, - "gets": 1, - "deleted": 1, - "rfUTF8_FromCodepoint": 1, - "this": 5, - "kind": 1, - "non": 1, - "clean": 1, - "way": 1, - "macro": 2, - "internally": 1, - "uses": 1, - "byteIndex_": 12, - "variable": 1, - "use": 1, - "determine": 1, - "backs": 1, - "by": 1, - "contiuing": 1, - "make": 3, - "sure": 2, - "position": 1, - "won": 1, - "array": 1, - "rfString_PruneStart": 2, - "nBytePos": 23, - "rfString_PruneEnd": 2, - "RF_STRING_ITERATEB_START": 2, - "RF_STRING_ITERATEB_END": 2, - "rfString_PruneMiddleB": 2, - "pBytePos": 15, - "indexing": 1, - "works": 1, - "pbytePos": 2, - "pth": 2, - "include": 6, - "rfString_PruneMiddleF": 2, - "got": 1, - "all": 2, - "i_rfString_Replace": 6, - "numP": 1, - "*numP": 1, - "RF_StringX": 2, - "just": 1, - "finding": 1, - "foundN": 10, - "bSize": 4, - "bytePositions": 17, - "bSize*sizeof": 1, - "rfStringX_FromString_IN": 1, - "temp.bIndex": 2, - "temp.bytes": 1, - "temp.byteLength": 1, - "rfStringX_Deinit": 1, - "replace": 3, - "removed": 2, - "one": 2, - "orSize": 5, - "nSize": 4, - "number*diff": 1, - "strncpy": 3, - "smaller": 1, - "diff*number": 1, - "remove": 1, - "equal": 1, - "i_rfString_StripStart": 3, - "subP": 7, - "RF_String*sub": 2, - "noMatch": 8, - "*subValues": 2, - "subLength": 6, - "subValues": 8, - "*subLength": 2, - "i_rfString_StripEnd": 3, - "lastBytePos": 4, - "testity": 2, - "i_rfString_Strip": 3, - "res1": 2, - "rfString_StripStart": 3, - "res2": 2, - "rfString_StripEnd": 3, - "rfString_Create_fUTF8": 2, - "rfString_Init_fUTF8": 3, - "unused": 3, - "rfString_Assign_fUTF8": 2, - "FILE*f": 2, - "utf8BufferSize": 4, - "function": 6, - "rfString_Append_fUTF8": 2, - "rfString_Append": 5, - "rfString_Create_fUTF16": 2, - "rfString_Init_fUTF16": 3, - "rfString_Assign_fUTF16": 2, - "rfString_Append_fUTF16": 2, - "char*utf8": 3, - "rfString_Create_fUTF32": 2, - "rfString_Init_fUTF32": 3, - "<0)>": 1, - "Failure": 1, - "initialize": 1, - "reading": 1, - "Little": 1, - "Endian": 1, - "32": 1, - "bytesN=": 1, - "rfString_Assign_fUTF32": 2, - "rfString_Append_fUTF32": 2, - "i_rfString_Fwrite": 5, - "sP": 2, - "encodingP": 1, - "*utf32": 1, - "utf16": 11, - "*encodingP": 1, - "fwrite": 5, - "logging": 5, - "utf32": 10, - "i_WRITE_CHECK": 1, - "RE_FILE_WRITE": 1, - "REFU_USTRING_H": 2, - "": 1, - "RF_MODULE_STRINGS//": 1, - "included": 2, - "module": 3, - "": 1, - "argument": 1, - "wrapping": 1, - "functionality": 1, - "": 1, - "unicode": 2, - "xFF0FFFF": 1, - "rfUTF8_IsContinuationByte2": 1, - "b__": 3, - "0xBF": 1, - "pragma": 1, - "pack": 2, - "push": 1, - "internal": 4, - "author": 1, - "Lefteris": 1, - "09": 1, - "12": 1, - "2010": 1, - "endinternal": 1, - "brief": 1, - "A": 11, - "representation": 2, - "The": 1, - "Refu": 2, - "Unicode": 1, - "has": 2, - "two": 1, - "versions": 1, - "One": 1, - "ref": 1, - "what": 1, - "operations": 1, - "can": 2, - "performed": 1, - "extended": 3, - "Strings": 2, - "Functions": 1, - "convert": 1, - "but": 1, - "always": 2, - "Once": 1, - "been": 1, - "created": 1, - "assumed": 1, - "valid": 1, - "every": 1, - "performs": 1, - "unless": 1, - "otherwise": 1, - "specified": 1, - "All": 1, - "functions": 2, - "which": 1, - "isinherited": 1, - "StringX": 2, - "their": 1, - "description": 1, - "safely": 1, - "specific": 1, - "or": 1, - "needs": 1, - "manipulate": 1, - "Extended": 1, - "To": 1, - "documentation": 1, - "even": 1, - "clearer": 1, - "should": 2, - "marked": 1, - "notinherited": 1, - "cppcode": 1, - "constructor": 1, - "i_StringCHandle": 1, - "@endcpp": 1, - "@endinternal": 1, - "*/": 1, - "#pragma": 1, - "pop": 1, - "i_rfString_CreateLocal": 2, - "__VA_ARGS__": 66, - "RP_SELECT_FUNC_IF_NARGIS": 5, - "i_SELECT_RF_STRING_CREATE": 1, - "i_SELECT_RF_STRING_CREATE1": 1, - "i_SELECT_RF_STRING_CREATE0": 1, - "///Internal": 1, - "creates": 1, - "i_SELECT_RF_STRING_CREATELOCAL": 1, - "i_SELECT_RF_STRING_CREATELOCAL1": 1, - "i_SELECT_RF_STRING_CREATELOCAL0": 1, - "i_SELECT_RF_STRING_INIT": 1, - "i_SELECT_RF_STRING_INIT1": 1, - "i_SELECT_RF_STRING_INIT0": 1, - "code": 6, - "i_SELECT_RF_STRING_CREATE_NC": 1, - "i_SELECT_RF_STRING_CREATE_NC1": 1, - "i_SELECT_RF_STRING_CREATE_NC0": 1, - "i_SELECT_RF_STRING_INIT_NC": 1, - "i_SELECT_RF_STRING_INIT_NC1": 1, - "i_SELECT_RF_STRING_INIT_NC0": 1, - "//@": 1, - "rfString_Assign": 2, - "i_DESTINATION_": 2, - "i_SOURCE_": 2, - "rfString_ToUTF8": 2, - "i_STRING_": 2, - "rfString_ToCstr": 2, - "uint32_t*length": 1, - "string_": 9, - "startCharacterPos_": 4, - "characterUnicodeValue_": 4, - "j_": 6, - "//Two": 1, - "macros": 1, - "accomplish": 1, - "going": 1, - "backwards.": 1, - "This": 1, - "its": 1, - "pair.": 1, - "rfString_IterateB_Start": 1, - "characterPos_": 5, - "b_index_": 6, - "c_index_": 3, - "rfString_IterateB_End": 1, - "i_STRING1_": 2, - "i_STRING2_": 2, - "i_rfLMSX_WRAP2": 4, - "rfString_Find": 3, - "i_THISSTR_": 60, - "i_SEARCHSTR_": 26, - "i_OPTIONS_": 28, - "i_rfLMS_WRAP3": 4, - "i_RFI8_": 54, - "RF_SELECT_FUNC_IF_NARGGT": 10, - "i_NPSELECT_RF_STRING_FIND": 1, - "i_NPSELECT_RF_STRING_FIND1": 1, - "RF_COMPILE_ERROR": 33, - "i_NPSELECT_RF_STRING_FIND0": 1, - "RF_SELECT_FUNC": 10, - "i_SELECT_RF_STRING_FIND": 1, - "i_SELECT_RF_STRING_FIND2": 1, - "i_SELECT_RF_STRING_FIND3": 1, - "i_SELECT_RF_STRING_FIND1": 1, - "i_SELECT_RF_STRING_FIND0": 1, - "rfString_ToInt": 1, - "int32_t*": 1, - "rfString_ToDouble": 1, - "double*": 1, - "rfString_ScanfAfter": 2, - "i_AFTERSTR_": 8, - "i_FORMAT_": 2, - "i_VAR_": 2, - "i_rfLMSX_WRAP4": 11, - "i_NPSELECT_RF_STRING_COUNT": 1, - "i_NPSELECT_RF_STRING_COUNT1": 1, - "i_NPSELECT_RF_STRING_COUNT0": 1, - "i_SELECT_RF_STRING_COUNT": 1, - "i_SELECT_RF_STRING_COUNT2": 1, - "i_rfLMSX_WRAP3": 5, - "i_SELECT_RF_STRING_COUNT3": 1, - "i_SELECT_RF_STRING_COUNT1": 1, - "i_SELECT_RF_STRING_COUNT0": 1, - "rfString_Between": 3, - "i_rfString_Between": 4, - "i_NPSELECT_RF_STRING_BETWEEN": 1, - "i_NPSELECT_RF_STRING_BETWEEN1": 1, - "i_NPSELECT_RF_STRING_BETWEEN0": 1, - "i_SELECT_RF_STRING_BETWEEN": 1, - "i_SELECT_RF_STRING_BETWEEN4": 1, - "i_LEFTSTR_": 6, - "i_RIGHTSTR_": 6, - "i_RESULT_": 12, - "i_rfLMSX_WRAP5": 9, - "i_SELECT_RF_STRING_BETWEEN5": 1, - "i_SELECT_RF_STRING_BETWEEN3": 1, - "i_SELECT_RF_STRING_BETWEEN2": 1, - "i_SELECT_RF_STRING_BETWEEN1": 1, - "i_SELECT_RF_STRING_BETWEEN0": 1, - "i_NPSELECT_RF_STRING_BEFOREV": 1, - "i_NPSELECT_RF_STRING_BEFOREV1": 1, - "RF_SELECT_FUNC_IF_NARGGT2": 2, - "i_LIMSELECT_RF_STRING_BEFOREV": 1, - "i_NPSELECT_RF_STRING_BEFOREV0": 1, - "i_LIMSELECT_RF_STRING_BEFOREV1": 1, - "i_LIMSELECT_RF_STRING_BEFOREV0": 1, - "i_SELECT_RF_STRING_BEFOREV": 1, - "i_SELECT_RF_STRING_BEFOREV5": 1, - "i_ARG1_": 56, - "i_ARG2_": 56, - "i_ARG3_": 56, - "i_ARG4_": 56, - "i_RFUI8_": 28, - "i_SELECT_RF_STRING_BEFOREV6": 1, - "i_rfLMSX_WRAP6": 2, - "i_SELECT_RF_STRING_BEFOREV7": 1, - "i_rfLMSX_WRAP7": 2, - "i_SELECT_RF_STRING_BEFOREV8": 1, - "i_rfLMSX_WRAP8": 2, - "i_SELECT_RF_STRING_BEFOREV9": 1, - "i_rfLMSX_WRAP9": 2, - "i_SELECT_RF_STRING_BEFOREV10": 1, - "i_rfLMSX_WRAP10": 2, - "i_SELECT_RF_STRING_BEFOREV11": 1, - "i_rfLMSX_WRAP11": 2, - "i_SELECT_RF_STRING_BEFOREV12": 1, - "i_rfLMSX_WRAP12": 2, - "i_SELECT_RF_STRING_BEFOREV13": 1, - "i_rfLMSX_WRAP13": 2, - "i_SELECT_RF_STRING_BEFOREV14": 1, - "i_rfLMSX_WRAP14": 2, - "i_SELECT_RF_STRING_BEFOREV15": 1, - "i_rfLMSX_WRAP15": 2, - "i_SELECT_RF_STRING_BEFOREV16": 1, - "i_rfLMSX_WRAP16": 2, - "i_SELECT_RF_STRING_BEFOREV17": 1, - "i_rfLMSX_WRAP17": 2, - "i_SELECT_RF_STRING_BEFOREV18": 1, - "i_rfLMSX_WRAP18": 2, - "rfString_Before": 3, - "i_NPSELECT_RF_STRING_BEFORE": 1, - "i_NPSELECT_RF_STRING_BEFORE1": 1, - "i_NPSELECT_RF_STRING_BEFORE0": 1, - "i_SELECT_RF_STRING_BEFORE": 1, - "i_SELECT_RF_STRING_BEFORE3": 1, - "i_SELECT_RF_STRING_BEFORE4": 1, - "i_SELECT_RF_STRING_BEFORE2": 1, - "i_SELECT_RF_STRING_BEFORE1": 1, - "i_SELECT_RF_STRING_BEFORE0": 1, - "i_NPSELECT_RF_STRING_AFTER": 1, - "i_NPSELECT_RF_STRING_AFTER1": 1, - "i_NPSELECT_RF_STRING_AFTER0": 1, - "i_SELECT_RF_STRING_AFTER": 1, - "i_SELECT_RF_STRING_AFTER3": 1, - "i_OUTSTR_": 6, - "i_SELECT_RF_STRING_AFTER4": 1, - "i_SELECT_RF_STRING_AFTER2": 1, - "i_SELECT_RF_STRING_AFTER1": 1, - "i_SELECT_RF_STRING_AFTER0": 1, - "i_NPSELECT_RF_STRING_AFTERV": 1, - "i_NPSELECT_RF_STRING_AFTERV1": 1, - "i_LIMSELECT_RF_STRING_AFTERV": 1, - "i_NPSELECT_RF_STRING_AFTERV0": 1, - "i_LIMSELECT_RF_STRING_AFTERV1": 1, - "i_LIMSELECT_RF_STRING_AFTERV0": 1, - "i_SELECT_RF_STRING_AFTERV": 1, - "i_SELECT_RF_STRING_AFTERV5": 1, - "i_SELECT_RF_STRING_AFTERV6": 1, - "i_SELECT_RF_STRING_AFTERV7": 1, - "i_SELECT_RF_STRING_AFTERV8": 1, - "i_SELECT_RF_STRING_AFTERV9": 1, - "i_SELECT_RF_STRING_AFTERV10": 1, - "i_SELECT_RF_STRING_AFTERV11": 1, - "i_SELECT_RF_STRING_AFTERV12": 1, - "i_SELECT_RF_STRING_AFTERV13": 1, - "i_SELECT_RF_STRING_AFTERV14": 1, - "i_SELECT_RF_STRING_AFTERV15": 1, - "i_SELECT_RF_STRING_AFTERV16": 1, - "i_SELECT_RF_STRING_AFTERV17": 1, - "i_SELECT_RF_STRING_AFTERV18": 1, - "i_OTHERSTR_": 4, - "rfString_Prepend": 2, - "rfString_Remove": 3, - "i_NPSELECT_RF_STRING_REMOVE": 1, - "i_NPSELECT_RF_STRING_REMOVE1": 1, - "i_NPSELECT_RF_STRING_REMOVE0": 1, - "i_SELECT_RF_STRING_REMOVE": 1, - "i_SELECT_RF_STRING_REMOVE2": 1, - "i_REPSTR_": 16, - "i_RFUI32_": 8, - "i_SELECT_RF_STRING_REMOVE3": 1, - "i_NUMBER_": 12, - "i_SELECT_RF_STRING_REMOVE4": 1, - "i_SELECT_RF_STRING_REMOVE1": 1, - "i_SELECT_RF_STRING_REMOVE0": 1, - "rfString_KeepOnly": 2, - "I_KEEPSTR_": 2, - "rfString_Replace": 3, - "i_NPSELECT_RF_STRING_REPLACE": 1, - "i_NPSELECT_RF_STRING_REPLACE1": 1, - "i_NPSELECT_RF_STRING_REPLACE0": 1, - "i_SELECT_RF_STRING_REPLACE": 1, - "i_SELECT_RF_STRING_REPLACE3": 1, - "i_SELECT_RF_STRING_REPLACE4": 1, - "i_SELECT_RF_STRING_REPLACE5": 1, - "i_SELECT_RF_STRING_REPLACE2": 1, - "i_SELECT_RF_STRING_REPLACE1": 1, - "i_SELECT_RF_STRING_REPLACE0": 1, - "i_SUBSTR_": 6, - "rfString_Strip": 2, - "rfString_Fwrite": 2, - "i_NPSELECT_RF_STRING_FWRITE": 1, - "i_NPSELECT_RF_STRING_FWRITE1": 1, - "i_NPSELECT_RF_STRING_FWRITE0": 1, - "i_SELECT_RF_STRING_FWRITE": 1, - "i_SELECT_RF_STRING_FWRITE3": 1, - "i_STR_": 8, - "i_ENCODING_": 4, - "i_SELECT_RF_STRING_FWRITE2": 1, - "i_SELECT_RF_STRING_FWRITE1": 1, - "i_SELECT_RF_STRING_FWRITE0": 1, - "rfString_Fwrite_fUTF8": 1, - "closing": 1, - "#error": 4, - "Attempted": 1, - "manipulation": 1, - "flag": 1, - "off.": 1, - "Rebuild": 1, - "added": 1, - "you": 1, - "#endif//": 1, - "PY_SSIZE_T_CLEAN": 1, - "Py_PYTHON_H": 1, - "Python": 2, - "headers": 1, - "compile": 1, - "extensions": 1, - "please": 1, - "install": 1, - "development": 1, - "Python.": 1, - "PY_VERSION_HEX": 11, - "Cython": 1, - "requires": 1, - ".": 1, - "offsetof": 2, - "member": 2, - "type*": 1, - "WIN32": 2, - "MS_WINDOWS": 2, - "__stdcall": 2, - "__cdecl": 2, - "__fastcall": 2, - "DL_IMPORT": 2, - "DL_EXPORT": 2, - "PY_LONG_LONG": 5, - "LONG_LONG": 1, - "Py_HUGE_VAL": 2, - "HUGE_VAL": 1, - "PYPY_VERSION": 1, - "CYTHON_COMPILING_IN_PYPY": 3, - "CYTHON_COMPILING_IN_CPYTHON": 6, - "Py_ssize_t": 35, - "PY_SSIZE_T_MAX": 1, - "INT_MAX": 1, - "PY_SSIZE_T_MIN": 1, - "INT_MIN": 1, - "PY_FORMAT_SIZE_T": 1, - "CYTHON_FORMAT_SSIZE_T": 2, - "PyInt_FromSsize_t": 6, - "PyInt_FromLong": 3, - "PyInt_AsSsize_t": 3, - "__Pyx_PyInt_AsInt": 2, - "PyNumber_Index": 1, - "PyNumber_Check": 2, - "PyFloat_Check": 2, - "PyNumber_Int": 1, - "PyErr_Format": 4, - "PyExc_TypeError": 4, - "Py_TYPE": 7, - "tp_name": 4, - "PyObject*": 24, - "__Pyx_PyIndex_Check": 3, - "PyComplex_Check": 1, - "PyIndex_Check": 2, - "PyErr_WarnEx": 1, - "category": 2, - "stacklevel": 1, - "PyErr_Warn": 1, - "__PYX_BUILD_PY_SSIZE_T": 2, - "Py_REFCNT": 1, - "ob_refcnt": 1, - "ob_type": 7, - "Py_SIZE": 1, - "PyVarObject*": 1, - "ob_size": 1, - "PyVarObject_HEAD_INIT": 1, - "PyObject_HEAD_INIT": 1, - "PyType_Modified": 1, - "PyObject": 276, - "itemsize": 1, - "readonly": 1, - "ndim": 2, - "*shape": 1, - "*strides": 1, - "*suboffsets": 1, - "*internal": 1, - "Py_buffer": 6, - "PyBUF_SIMPLE": 1, - "PyBUF_WRITABLE": 3, - "PyBUF_FORMAT": 3, - "PyBUF_ND": 2, - "PyBUF_STRIDES": 6, - "PyBUF_C_CONTIGUOUS": 1, - "PyBUF_F_CONTIGUOUS": 1, - "PyBUF_ANY_CONTIGUOUS": 1, - "PyBUF_INDIRECT": 2, - "PyBUF_RECORDS": 1, - "PyBUF_FULL": 1, - "PY_MAJOR_VERSION": 13, - "__Pyx_BUILTIN_MODULE_NAME": 2, - "__Pyx_PyCode_New": 2, - "l": 7, - "fv": 4, - "cell": 4, - "fline": 4, - "lnos": 4, - "PyCode_New": 2, - "PY_MINOR_VERSION": 1, - "PyUnicode_FromString": 2, - "PyUnicode_Decode": 1, - "Py_TPFLAGS_CHECKTYPES": 1, - "Py_TPFLAGS_HAVE_INDEX": 1, - "Py_TPFLAGS_HAVE_NEWBUFFER": 1, - "PyUnicode_KIND": 1, - "CYTHON_PEP393_ENABLED": 2, - "__Pyx_PyUnicode_READY": 2, - "op": 8, - "PyUnicode_IS_READY": 1, - "_PyUnicode_Ready": 1, - "__Pyx_PyUnicode_GET_LENGTH": 2, - "PyUnicode_GET_LENGTH": 1, - "__Pyx_PyUnicode_READ_CHAR": 2, - "PyUnicode_READ_CHAR": 1, - "__Pyx_PyUnicode_READ": 2, - "PyUnicode_READ": 1, - "PyUnicode_GET_SIZE": 1, - "Py_UCS4": 2, - "PyUnicode_AS_UNICODE": 1, - "Py_UNICODE*": 1, - "PyBaseString_Type": 1, - "PyUnicode_Type": 2, - "PyStringObject": 2, - "PyUnicodeObject": 1, - "PyString_Type": 2, - "PyString_Check": 2, - "PyUnicode_Check": 1, - "PyString_CheckExact": 2, - "PyUnicode_CheckExact": 1, - "PyBytesObject": 1, - "PyBytes_Type": 1, - "PyBytes_Check": 1, - "PyBytes_CheckExact": 1, - "PyBytes_FromString": 2, - "PyString_FromString": 2, - "PyBytes_FromStringAndSize": 1, - "PyString_FromStringAndSize": 1, - "PyBytes_FromFormat": 1, - "PyString_FromFormat": 1, - "PyBytes_DecodeEscape": 1, - "PyString_DecodeEscape": 1, - "PyBytes_AsString": 2, - "PyString_AsString": 1, - "PyBytes_AsStringAndSize": 1, - "PyString_AsStringAndSize": 1, - "PyBytes_Size": 1, - "PyString_Size": 1, - "PyBytes_AS_STRING": 1, - "PyString_AS_STRING": 1, - "PyBytes_GET_SIZE": 1, - "PyString_GET_SIZE": 1, - "PyBytes_Repr": 1, - "PyString_Repr": 1, - "PyBytes_Concat": 1, - "PyString_Concat": 1, - "PyBytes_ConcatAndDel": 1, - "PyString_ConcatAndDel": 1, - "PySet_Check": 1, - "PyObject_TypeCheck": 3, - "PySet_Type": 2, - "PyFrozenSet_Check": 1, - "PyFrozenSet_Type": 1, - "PySet_CheckExact": 2, - "__Pyx_TypeCheck": 1, - "PyTypeObject": 25, - "PyIntObject": 1, - "PyLongObject": 2, - "PyInt_Type": 1, - "PyLong_Type": 1, - "PyInt_Check": 1, - "PyLong_Check": 1, - "PyInt_CheckExact": 1, - "PyLong_CheckExact": 1, - "PyInt_FromString": 1, - "PyLong_FromString": 1, - "PyInt_FromUnicode": 1, - "PyLong_FromUnicode": 1, - "PyLong_FromLong": 1, - "PyInt_FromSize_t": 1, - "PyLong_FromSize_t": 1, - "PyLong_FromSsize_t": 1, - "PyInt_AsLong": 2, - "PyLong_AsLong": 1, - "PyInt_AS_LONG": 1, - "PyLong_AS_LONG": 1, - "PyLong_AsSsize_t": 1, - "PyInt_AsUnsignedLongMask": 1, - "PyLong_AsUnsignedLongMask": 1, - "PyInt_AsUnsignedLongLongMask": 1, - "PyLong_AsUnsignedLongLongMask": 1, - "PyBoolObject": 1, - "Py_hash_t": 1, - "__Pyx_PyInt_FromHash_t": 2, - "__Pyx_PyInt_AsHash_t": 2, - "__Pyx_PySequence_GetSlice": 2, - "PySequence_GetSlice": 2, - "__Pyx_PySequence_SetSlice": 2, - "PySequence_SetSlice": 2, - "__Pyx_PySequence_DelSlice": 2, - "PySequence_DelSlice": 2, - "PyErr_SetString": 3, - "PyExc_SystemError": 3, - "tp_as_mapping": 3, - "PyMethod_New": 2, - "func": 3, - "klass": 1, - "PyInstanceMethod_New": 1, - "__Pyx_GetAttrString": 2, - "PyObject_GetAttrString": 2, - "__Pyx_SetAttrString": 2, - "PyObject_SetAttrString": 2, - "__Pyx_DelAttrString": 2, - "PyObject_DelAttrString": 2, - "__Pyx_NAMESTR": 2, - "__Pyx_DOCSTR": 2, - "__Pyx_PyNumber_Divide": 2, - "y": 14, - "PyNumber_TrueDivide": 1, - "__Pyx_PyNumber_InPlaceDivide": 2, - "PyNumber_InPlaceTrueDivide": 1, - "PyNumber_Divide": 1, - "PyNumber_InPlaceDivide": 1, - "__PYX_EXTERN_C": 3, - "_USE_MATH_DEFINES": 1, - "__PYX_HAVE__sklearn__linear_model__sgd_fast": 1, - "__PYX_HAVE_API__sklearn__linear_model__sgd_fast": 1, - "_OPENMP": 1, - "": 1, - "PYREX_WITHOUT_ASSERTIONS": 1, - "CYTHON_WITHOUT_ASSERTIONS": 1, - "CYTHON_INLINE": 65, - "__inline__": 1, - "__inline": 1, - "__STDC_VERSION__": 2, - "L": 1, - "CYTHON_UNUSED": 14, - "**p": 1, - "is_unicode": 1, - "is_str": 1, - "intern": 1, - "__Pyx_StringTabEntry": 2, - "__Pyx_PyBytes_FromUString": 1, - "__Pyx_PyBytes_AsUString": 1, - "__Pyx_Owned_Py_None": 1, - "Py_INCREF": 10, - "Py_None": 8, - "__Pyx_PyBool_FromLong": 1, - "Py_True": 2, - "Py_False": 2, - "__Pyx_PyObject_IsTrue": 1, - "__Pyx_PyNumber_Int": 1, - "__Pyx_PyIndex_AsSsize_t": 1, - "__Pyx_PyInt_FromSize_t": 1, - "__Pyx_PyInt_AsSize_t": 1, - "__pyx_PyFloat_AsDouble": 12, - "PyFloat_CheckExact": 1, - "PyFloat_AS_DOUBLE": 1, - "PyFloat_AsDouble": 2, - "__pyx_PyFloat_AsFloat": 1, - "__builtin_expect": 2, - "*__pyx_m": 1, - "*__pyx_b": 1, - "*__pyx_empty_tuple": 1, - "*__pyx_empty_bytes": 1, - "__pyx_lineno": 58, - "__pyx_clineno": 58, - "__pyx_cfilenm": 1, - "__FILE__": 4, - "*__pyx_filename": 7, - "CYTHON_CCOMPLEX": 12, - "_Complex_I": 3, - "": 1, - "": 1, - "__sun__": 1, - "fj": 1, - "*__pyx_f": 1, - "IS_UNSIGNED": 1, - "__Pyx_StructField_": 2, - "__PYX_BUF_FLAGS_PACKED_STRUCT": 1, - "__Pyx_StructField_*": 1, - "fields": 1, - "arraysize": 1, - "typegroup": 1, - "is_unsigned": 1, - "__Pyx_TypeInfo": 2, - "__Pyx_TypeInfo*": 2, - "offset": 1, - "__Pyx_StructField": 2, - "__Pyx_StructField*": 1, - "field": 1, - "parent_offset": 1, - "__Pyx_BufFmt_StackElem": 1, - "root": 1, - "__Pyx_BufFmt_StackElem*": 2, - "fmt_offset": 1, - "new_count": 1, - "enc_count": 1, - "struct_alignment": 1, - "is_complex": 1, - "enc_type": 1, - "new_packmode": 1, - "enc_packmode": 1, - "is_valid_array": 1, - "__Pyx_BufFmt_Context": 1, - "npy_int8": 1, - "__pyx_t_5numpy_int8_t": 1, - "npy_int16": 1, - "__pyx_t_5numpy_int16_t": 1, - "npy_int32": 1, - "__pyx_t_5numpy_int32_t": 4, - "npy_int64": 1, - "__pyx_t_5numpy_int64_t": 1, - "npy_uint8": 1, - "__pyx_t_5numpy_uint8_t": 1, - "npy_uint16": 1, - "__pyx_t_5numpy_uint16_t": 1, - "npy_uint32": 1, - "__pyx_t_5numpy_uint32_t": 1, - "npy_uint64": 1, - "__pyx_t_5numpy_uint64_t": 1, - "npy_float32": 1, - "__pyx_t_5numpy_float32_t": 1, - "npy_float64": 1, - "__pyx_t_5numpy_float64_t": 4, - "npy_long": 1, - "__pyx_t_5numpy_int_t": 1, - "npy_longlong": 2, - "__pyx_t_5numpy_long_t": 1, - "__pyx_t_5numpy_longlong_t": 1, - "npy_ulong": 1, - "__pyx_t_5numpy_uint_t": 1, - "npy_ulonglong": 2, - "__pyx_t_5numpy_ulong_t": 1, - "__pyx_t_5numpy_ulonglong_t": 1, - "npy_intp": 1, - "__pyx_t_5numpy_intp_t": 1, - "npy_uintp": 1, - "__pyx_t_5numpy_uintp_t": 1, - "npy_double": 2, - "__pyx_t_5numpy_float_t": 1, - "__pyx_t_5numpy_double_t": 1, - "npy_longdouble": 1, - "__pyx_t_5numpy_longdouble_t": 1, - "__pyx_t_7sklearn_5utils_13weight_vector_DOUBLE": 2, - "__pyx_t_7sklearn_5utils_13weight_vector_INTEGER": 1, - "__pyx_t_7sklearn_5utils_11seq_dataset_DOUBLE": 7, - "__pyx_t_7sklearn_5utils_11seq_dataset_INTEGER": 7, - "__pyx_t_7sklearn_12linear_model_8sgd_fast_DOUBLE": 4, - "__pyx_t_7sklearn_12linear_model_8sgd_fast_INTEGER": 3, - "std": 8, - "complex": 2, - "__pyx_t_float_complex": 27, - "_Complex": 2, - "real": 2, - "imag": 2, - "__pyx_t_double_complex": 27, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_LossFunction": 15, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Regression": 11, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Huber": 6, - "__pyx_obj_7sklearn_5utils_11seq_dataset_SequentialDataset": 5, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 6, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Classification": 7, - "__pyx_obj_7sklearn_5utils_11seq_dataset_CSRDataset": 2, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Log": 5, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_Hinge": 6, - "__pyx_obj_7sklearn_5utils_11seq_dataset_ArrayDataset": 2, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 6, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_ModifiedHuber": 5, - "__pyx_obj_7sklearn_5utils_13weight_vector_WeightVector": 3, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredLoss": 5, - "__pyx_obj_7sklearn_12linear_model_8sgd_fast_SquaredEpsilonInsensitive": 6, - "npy_cfloat": 1, - "__pyx_t_5numpy_cfloat_t": 1, - "npy_cdouble": 2, - "__pyx_t_5numpy_cdouble_t": 1, - "npy_clongdouble": 1, - "__pyx_t_5numpy_clongdouble_t": 1, - "__pyx_t_5numpy_complex_t": 1, - "PyObject_HEAD": 3, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_LossFunction": 5, - "*__pyx_vtab": 3, - "__pyx_base": 18, - "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_SequentialDataset": 4, - "n_samples": 1, - "epsilon": 2, - "current_index": 2, - "stride": 2, - "*X_data_ptr": 2, - "*X_indptr_ptr": 1, - "*X_indices_ptr": 1, - "*Y_data_ptr": 2, - "PyArrayObject": 8, - "*feature_indices": 2, - "*feature_indices_ptr": 2, - "*index": 2, - "*index_data_ptr": 2, - "*sample_weight_data": 2, - "threshold": 2, - "n_features": 2, - "__pyx_vtabstruct_7sklearn_5utils_13weight_vector_WeightVector": 3, - "*w_data_ptr": 1, - "wscale": 1, - "sq_norm": 1, - "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_SequentialDataset": 1, - "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_ArrayDataset": 2, - "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_ArrayDataset": 1, - "__pyx_vtabstruct_7sklearn_5utils_11seq_dataset_CSRDataset": 2, - "*__pyx_vtabptr_7sklearn_5utils_11seq_dataset_CSRDataset": 1, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 2, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Regression": 3, - "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 1, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 2, - "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 1, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Huber": 2, - "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_Huber": 1, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Hinge": 2, - "__pyx_vtabstruct_7sklearn_12linear_model_8sgd_fast_Classification": 1, - "*__pyx_vtabptr_7sklearn_12linear_model_8sgd_fast_Hinge": 1, - "*__pyx_vtabptr_7sklearn_5utils_13weight_vector_WeightVector": 1, - "CYTHON_REFNANNY": 3, - "__Pyx_RefNannyAPIStruct": 3, - "*__Pyx_RefNanny": 1, - "*__Pyx_RefNannyImportAPI": 1, - "*modname": 1, - "__Pyx_RefNannyDeclarations": 11, - "*__pyx_refnanny": 1, - "WITH_THREAD": 1, - "__Pyx_RefNannySetupContext": 12, - "acquire_gil": 4, - "PyGILState_STATE": 1, - "__pyx_gilstate_save": 2, - "PyGILState_Ensure": 1, - "__pyx_refnanny": 8, - "__Pyx_RefNanny": 8, - "SetupContext": 3, - "PyGILState_Release": 1, - "__Pyx_RefNannyFinishContext": 14, - "FinishContext": 1, - "__Pyx_INCREF": 6, - "INCREF": 1, - "__Pyx_DECREF": 20, - "DECREF": 1, - "__Pyx_GOTREF": 24, - "GOTREF": 1, - "__Pyx_GIVEREF": 9, - "GIVEREF": 1, - "__Pyx_XINCREF": 2, - "__Pyx_XDECREF": 20, - "__Pyx_XGOTREF": 2, - "__Pyx_XGIVEREF": 5, - "Py_DECREF": 2, - "Py_XINCREF": 1, - "Py_XDECREF": 1, - "__Pyx_CLEAR": 1, - "__Pyx_XCLEAR": 1, - "*__Pyx_GetName": 1, - "__Pyx_ErrRestore": 1, - "*type": 4, - "*tb": 2, - "__Pyx_ErrFetch": 1, - "**type": 1, - "**value": 1, - "**tb": 1, - "__Pyx_Raise": 4, - "*cause": 1, - "__Pyx_RaiseArgtupleInvalid": 7, - "func_name": 2, - "num_min": 1, - "num_max": 1, - "num_found": 1, - "__Pyx_RaiseDoubleKeywordsError": 1, - "kw_name": 1, - "__Pyx_ParseOptionalKeywords": 4, - "*kwds": 1, - "**argnames": 1, - "*kwds2": 1, - "*values": 1, - "num_pos_args": 1, - "function_name": 1, - "__Pyx_ArgTypeTest": 1, - "none_allowed": 1, - "__Pyx_GetBufferAndValidate": 1, - "Py_buffer*": 2, - "dtype": 1, - "nd": 1, - "cast": 1, - "__Pyx_SafeReleaseBuffer": 1, - "__Pyx_TypeTest": 1, - "__Pyx_RaiseBufferFallbackError": 1, - "*__Pyx_GetItemInt_Generic": 1, - "*r": 7, - "PyObject_GetItem": 1, - "__Pyx_GetItemInt_List": 1, - "to_py_func": 6, - "__Pyx_GetItemInt_List_Fast": 1, - "__Pyx_GetItemInt_Generic": 6, - "*__Pyx_GetItemInt_List_Fast": 1, - "PyList_GET_SIZE": 5, - "PyList_GET_ITEM": 3, - "PySequence_GetItem": 3, - "__Pyx_GetItemInt_Tuple": 1, - "__Pyx_GetItemInt_Tuple_Fast": 1, - "*__Pyx_GetItemInt_Tuple_Fast": 1, - "PyTuple_GET_SIZE": 14, - "PyTuple_GET_ITEM": 15, - "__Pyx_GetItemInt": 1, - "__Pyx_GetItemInt_Fast": 2, - "PyList_CheckExact": 1, - "PyTuple_CheckExact": 1, - "PySequenceMethods": 1, - "*m": 1, - "tp_as_sequence": 1, - "sq_item": 2, - "sq_length": 2, - "PySequence_Check": 1, - "__Pyx_RaiseTooManyValuesError": 1, - "expected": 2, - "__Pyx_RaiseNeedMoreValuesError": 1, - "__Pyx_RaiseNoneNotIterableError": 1, - "__Pyx_IterFinish": 1, - "__Pyx_IternextUnpackEndCheck": 1, - "*retval": 1, - "shape": 1, - "strides": 1, - "suboffsets": 1, - "__Pyx_Buf_DimInfo": 2, - "pybuffer": 1, - "__Pyx_Buffer": 2, - "*rcbuffer": 1, - "diminfo": 1, - "__Pyx_LocalBuf_ND": 1, - "__Pyx_GetBuffer": 2, - "*view": 2, - "__Pyx_ReleaseBuffer": 2, - "PyObject_GetBuffer": 1, - "PyBuffer_Release": 1, - "__Pyx_zeros": 1, - "__Pyx_minusones": 1, - "*__Pyx_Import": 1, - "*from_list": 1, - "__Pyx_RaiseImportError": 1, - "__Pyx_Print": 1, - "__pyx_print": 1, - "__pyx_print_kwargs": 1, - "__Pyx_PrintOne": 1, - "__Pyx_CREAL": 4, - ".real": 3, - "__Pyx_CIMAG": 4, - ".imag": 3, - "__real__": 1, - "__imag__": 1, - "__Pyx_SET_CREAL": 2, - "__Pyx_SET_CIMAG": 2, - "__pyx_t_float_complex_from_parts": 1, - "__Pyx_c_eqf": 2, - "__Pyx_c_sumf": 2, - "__Pyx_c_difff": 2, - "__Pyx_c_prodf": 2, - "__Pyx_c_quotf": 2, - "__Pyx_c_negf": 2, - "__Pyx_c_is_zerof": 3, - "__Pyx_c_conjf": 3, - "conj": 3, - "__Pyx_c_absf": 3, - "abs": 2, - "__Pyx_c_powf": 3, - "pow": 2, - "conjf": 1, - "cabsf": 1, - "cpowf": 1, - "__pyx_t_double_complex_from_parts": 1, - "__Pyx_c_eq": 2, - "__Pyx_c_sum": 2, - "__Pyx_c_diff": 2, - "__Pyx_c_prod": 2, - "__Pyx_c_quot": 2, - "__Pyx_c_neg": 2, - "__Pyx_c_is_zero": 3, - "__Pyx_c_conj": 3, - "__Pyx_c_abs": 3, - "__Pyx_c_pow": 3, - "cabs": 1, - "cpow": 1, - "__Pyx_PyInt_AsUnsignedChar": 1, - "__Pyx_PyInt_AsUnsignedShort": 1, - "__Pyx_PyInt_AsUnsignedInt": 1, - "__Pyx_PyInt_AsChar": 1, - "__Pyx_PyInt_AsShort": 1, - "signed": 5, - "__Pyx_PyInt_AsSignedChar": 1, - "__Pyx_PyInt_AsSignedShort": 1, - "__Pyx_PyInt_AsSignedInt": 1, - "__Pyx_PyInt_AsLongDouble": 1, - "__Pyx_PyInt_AsUnsignedLong": 1, - "__Pyx_PyInt_AsUnsignedLongLong": 1, - "__Pyx_PyInt_AsLong": 1, - "__Pyx_PyInt_AsLongLong": 1, - "__Pyx_PyInt_AsSignedLong": 1, - "__Pyx_PyInt_AsSignedLongLong": 1, - "__Pyx_WriteUnraisable": 4, - "clineno": 1, - "lineno": 1, - "*filename": 2, - "__Pyx_check_binary_version": 1, - "__Pyx_SetVtable": 1, - "*vtable": 1, - "__Pyx_PyIdentifier_FromString": 3, - "*__Pyx_ImportModule": 1, - "*__Pyx_ImportType": 1, - "*module_name": 1, - "*class_name": 1, - "__Pyx_GetVtable": 1, - "code_line": 4, - "PyCodeObject*": 2, - "code_object": 2, - "__Pyx_CodeObjectCacheEntry": 1, - "__Pyx_CodeObjectCache": 2, - "max_count": 1, - "__Pyx_CodeObjectCacheEntry*": 2, - "entries": 2, - "__pyx_code_cache": 1, - "__pyx_bisect_code_objects": 1, - "PyCodeObject": 1, - "*__pyx_find_code_object": 1, - "__pyx_insert_code_object": 1, - "__Pyx_AddTraceback": 7, - "*funcname": 1, - "c_line": 1, - "py_line": 1, - "__Pyx_InitStrings": 1, - "*__pyx_ptype_7cpython_4type_type": 1, - "*__pyx_ptype_5numpy_dtype": 1, - "*__pyx_ptype_5numpy_flatiter": 1, - "*__pyx_ptype_5numpy_broadcast": 1, - "*__pyx_ptype_5numpy_ndarray": 1, - "*__pyx_ptype_5numpy_ufunc": 1, - "*__pyx_f_5numpy__util_dtypestring": 1, - "PyArray_Descr": 1, - "*__pyx_ptype_7sklearn_5utils_13weight_vector_WeightVector": 1, - "*__pyx_ptype_7sklearn_5utils_11seq_dataset_SequentialDataset": 1, - "*__pyx_ptype_7sklearn_5utils_11seq_dataset_ArrayDataset": 1, - "*__pyx_ptype_7sklearn_5utils_11seq_dataset_CSRDataset": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_LossFunction": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Regression": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Classification": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_ModifiedHuber": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Hinge": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredHinge": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Log": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredLoss": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_Huber": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_EpsilonInsensitive": 1, - "*__pyx_ptype_7sklearn_12linear_model_8sgd_fast_SquaredEpsilonInsensitive": 1, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_max": 1, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_min": 1, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_sqnorm": 1, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_l1penalty": 1, - "__Pyx_TypeInfo_nn___pyx_t_7sklearn_12linear_model_8sgd_fast_DOUBLE": 1, - "__Pyx_MODULE_NAME": 1, - "__pyx_module_is_main_sklearn__linear_model__sgd_fast": 1, - "*__pyx_builtin_NotImplementedError": 1, - "*__pyx_builtin_range": 1, - "*__pyx_builtin_ValueError": 1, - "*__pyx_builtin_RuntimeError": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 2, - "*__pyx_v_self": 52, - "__pyx_v_p": 46, - "__pyx_v_y": 46, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 2, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 2, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_2dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_14Classification_loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_14Classification_2dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_2dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_13ModifiedHuber_4__reduce__": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge___init__": 1, - "__pyx_v_threshold": 2, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_2loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_4dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Hinge_6__reduce__": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge___init__": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_2loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_4dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_12SquaredHinge_6__reduce__": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_2dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_3Log_4__reduce__": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_2dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_11SquaredLoss_4__reduce__": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber___init__": 1, - "__pyx_v_c": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_2loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_4dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_5Huber_6__reduce__": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive___init__": 1, - "__pyx_v_epsilon": 2, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_2loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_4dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_18EpsilonInsensitive_6__reduce__": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive___init__": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_2loss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_4dloss": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_25SquaredEpsilonInsensitive_6__reduce__": 1, - "*__pyx_pf_7sklearn_12linear_model_8sgd_fast_plain_sgd": 1, - "*__pyx_self": 1, - "*__pyx_v_weights": 1, - "__pyx_v_intercept": 1, - "*__pyx_v_loss": 1, - "__pyx_v_penalty_type": 1, - "__pyx_v_alpha": 1, - "__pyx_v_C": 1, - "__pyx_v_rho": 1, - "*__pyx_v_dataset": 1, - "__pyx_v_n_iter": 1, - "__pyx_v_fit_intercept": 1, - "__pyx_v_verbose": 1, - "__pyx_v_shuffle": 1, - "*__pyx_v_seed": 1, - "__pyx_v_weight_pos": 1, - "__pyx_v_weight_neg": 1, - "__pyx_v_learning_rate": 1, - "__pyx_v_eta0": 1, - "__pyx_v_power_t": 1, - "__pyx_v_t": 1, - "__pyx_v_intercept_decay": 1, - "__pyx_pf_5numpy_7ndarray___getbuffer__": 1, - "*__pyx_v_info": 2, - "__pyx_v_flags": 1, - "__pyx_pf_5numpy_7ndarray_2__releasebuffer__": 1, - "__pyx_k_1": 1, - "__pyx_k_2": 1, - "__pyx_k_3": 1, - "__pyx_k_4": 1, - "__pyx_k_6": 1, - "__pyx_k_8": 1, - "__pyx_k_10": 1, - "__pyx_k_12": 1, - "__pyx_k_13": 1, - "__pyx_k_16": 1, - "__pyx_k_20": 1, - "__pyx_k_21": 1, - "__pyx_k__B": 1, - "__pyx_k__C": 1, - "__pyx_k__H": 1, - "__pyx_k__I": 1, - "__pyx_k__L": 1, - "__pyx_k__O": 1, - "__pyx_k__Q": 1, - "__pyx_k__b": 1, - "__pyx_k__c": 1, - "__pyx_k__d": 1, - "__pyx_k__f": 1, - "__pyx_k__g": 1, - "__pyx_k__h": 1, - "__pyx_k__i": 1, - "__pyx_k__l": 1, - "__pyx_k__p": 1, - "__pyx_k__q": 1, - "__pyx_k__t": 1, - "__pyx_k__u": 1, - "__pyx_k__w": 1, - "__pyx_k__y": 1, - "__pyx_k__Zd": 1, - "__pyx_k__Zf": 1, - "__pyx_k__Zg": 1, - "__pyx_k__np": 1, - "__pyx_k__any": 1, - "__pyx_k__eta": 1, - "__pyx_k__rho": 1, - "__pyx_k__sys": 1, - "__pyx_k__eta0": 1, - "__pyx_k__loss": 1, - "__pyx_k__seed": 1, - "__pyx_k__time": 1, - "__pyx_k__xnnz": 1, - "__pyx_k__alpha": 1, - "__pyx_k__count": 1, - "__pyx_k__dloss": 1, - "__pyx_k__dtype": 1, - "__pyx_k__epoch": 1, - "__pyx_k__isinf": 1, - "__pyx_k__isnan": 1, - "__pyx_k__numpy": 1, - "__pyx_k__order": 1, - "__pyx_k__range": 1, - "__pyx_k__shape": 1, - "__pyx_k__zeros": 1, - "__pyx_k__n_iter": 1, - "__pyx_k__update": 1, - "__pyx_k__dataset": 1, - "__pyx_k__epsilon": 1, - "__pyx_k__float64": 1, - "__pyx_k__nonzero": 1, - "__pyx_k__power_t": 1, - "__pyx_k__shuffle": 1, - "__pyx_k__sumloss": 1, - "__pyx_k__t_start": 1, - "__pyx_k__verbose": 1, - "__pyx_k__weights": 1, - "__pyx_k____main__": 1, - "__pyx_k____test__": 1, - "__pyx_k__is_hinge": 1, - "__pyx_k__intercept": 1, - "__pyx_k__n_samples": 1, - "__pyx_k__plain_sgd": 1, - "__pyx_k__threshold": 1, - "__pyx_k__x_ind_ptr": 1, - "__pyx_k__ValueError": 1, - "__pyx_k__n_features": 1, - "__pyx_k__q_data_ptr": 1, - "__pyx_k__weight_neg": 1, - "__pyx_k__weight_pos": 1, - "__pyx_k__x_data_ptr": 1, - "__pyx_k__RuntimeError": 1, - "__pyx_k__class_weight": 1, - "__pyx_k__penalty_type": 1, - "__pyx_k__fit_intercept": 1, - "__pyx_k__learning_rate": 1, - "__pyx_k__sample_weight": 1, - "__pyx_k__intercept_decay": 1, - "__pyx_k__NotImplementedError": 1, - "*__pyx_kp_s_1": 1, - "*__pyx_kp_u_10": 1, - "*__pyx_kp_u_12": 1, - "*__pyx_kp_u_13": 1, - "*__pyx_kp_u_16": 1, - "*__pyx_kp_s_2": 1, - "*__pyx_kp_s_20": 1, - "*__pyx_n_s_21": 1, - "*__pyx_kp_s_3": 1, - "*__pyx_kp_s_4": 1, - "*__pyx_kp_u_6": 1, - "*__pyx_kp_u_8": 1, - "*__pyx_n_s__C": 1, - "*__pyx_n_s__NotImplementedError": 1, - "*__pyx_n_s__RuntimeError": 1, - "*__pyx_n_s__ValueError": 1, - "*__pyx_n_s____main__": 1, - "*__pyx_n_s____test__": 1, - "*__pyx_n_s__alpha": 1, - "*__pyx_n_s__any": 1, - "*__pyx_n_s__c": 1, - "*__pyx_n_s__class_weight": 1, - "*__pyx_n_s__count": 1, - "*__pyx_n_s__dataset": 1, - "*__pyx_n_s__dloss": 1, - "*__pyx_n_s__dtype": 1, - "*__pyx_n_s__epoch": 1, - "*__pyx_n_s__epsilon": 1, - "*__pyx_n_s__eta": 1, - "*__pyx_n_s__eta0": 1, - "*__pyx_n_s__fit_intercept": 1, - "*__pyx_n_s__float64": 1, - "*__pyx_n_s__i": 1, - "*__pyx_n_s__intercept": 1, - "*__pyx_n_s__intercept_decay": 1, - "*__pyx_n_s__is_hinge": 1, - "*__pyx_n_s__isinf": 1, - "*__pyx_n_s__isnan": 1, - "*__pyx_n_s__learning_rate": 1, - "*__pyx_n_s__loss": 1, - "*__pyx_n_s__n_features": 1, - "*__pyx_n_s__n_iter": 1, - "*__pyx_n_s__n_samples": 1, - "*__pyx_n_s__nonzero": 1, - "*__pyx_n_s__np": 1, - "*__pyx_n_s__numpy": 1, - "*__pyx_n_s__order": 1, - "*__pyx_n_s__p": 1, - "*__pyx_n_s__penalty_type": 1, - "*__pyx_n_s__plain_sgd": 1, - "*__pyx_n_s__power_t": 1, - "*__pyx_n_s__q": 1, - "*__pyx_n_s__q_data_ptr": 1, - "*__pyx_n_s__range": 1, - "*__pyx_n_s__rho": 1, - "*__pyx_n_s__sample_weight": 1, - "*__pyx_n_s__seed": 1, - "*__pyx_n_s__shape": 1, - "*__pyx_n_s__shuffle": 1, - "*__pyx_n_s__sumloss": 1, - "*__pyx_n_s__sys": 1, - "*__pyx_n_s__t": 1, - "*__pyx_n_s__t_start": 1, - "*__pyx_n_s__threshold": 1, - "*__pyx_n_s__time": 1, - "*__pyx_n_s__u": 1, - "*__pyx_n_s__update": 1, - "*__pyx_n_s__verbose": 1, - "*__pyx_n_s__w": 1, - "*__pyx_n_s__weight_neg": 1, - "*__pyx_n_s__weight_pos": 1, - "*__pyx_n_s__weights": 1, - "*__pyx_n_s__x_data_ptr": 1, - "*__pyx_n_s__x_ind_ptr": 1, - "*__pyx_n_s__xnnz": 1, - "*__pyx_n_s__y": 1, - "*__pyx_n_s__zeros": 1, - "*__pyx_int_15": 1, - "*__pyx_k_tuple_5": 1, - "*__pyx_k_tuple_7": 1, - "*__pyx_k_tuple_9": 1, - "*__pyx_k_tuple_11": 1, - "*__pyx_k_tuple_14": 1, - "*__pyx_k_tuple_15": 1, - "*__pyx_k_tuple_17": 1, - "*__pyx_k_tuple_18": 1, - "*__pyx_k_codeobj_19": 1, - "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_1loss": 3, - "*__pyx_args": 9, - "*__pyx_kwds": 9, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, - "__pyx_skip_dispatch": 6, - "__pyx_r": 39, - "*__pyx_t_1": 6, - "*__pyx_t_2": 3, - "*__pyx_t_3": 3, - "*__pyx_t_4": 3, - "__pyx_t_5": 12, - "__pyx_v_self": 15, - "tp_dictoffset": 3, - "__pyx_t_1": 69, - "PyObject_GetAttr": 3, - "__pyx_n_s__loss": 2, - "__pyx_filename": 51, - "__pyx_f": 42, - "__pyx_L1_error": 33, - "PyCFunction_Check": 3, - "PyCFunction_GET_FUNCTION": 3, - "PyCFunction": 3, - "__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_1loss": 1, - "__pyx_t_2": 21, - "PyFloat_FromDouble": 9, - "__pyx_t_3": 39, - "__pyx_t_4": 27, - "PyTuple_New": 3, - "PyTuple_SET_ITEM": 6, - "PyObject_Call": 6, - "PyErr_Occurred": 9, - "__pyx_L0": 18, - "__pyx_builtin_NotImplementedError": 3, - "__pyx_empty_tuple": 3, - "__pyx_doc_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, - "*__pyx_r": 6, - "**__pyx_pyargnames": 3, - "__pyx_n_s__p": 6, - "__pyx_n_s__y": 6, - "values": 30, - "__pyx_kwds": 15, - "kw_args": 15, - "pos_args": 12, - "__pyx_args": 21, - "__pyx_L5_argtuple_error": 12, - "PyDict_Size": 3, - "PyDict_GetItem": 6, - "__pyx_L3_error": 18, - "__pyx_pyargnames": 3, - "__pyx_L4_argument_unpacking_done": 6, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_loss": 1, - "__pyx_vtab": 2, - "loss": 1, - "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_3dloss": 3, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_12LossFunction_dloss": 1, - "__pyx_n_s__dloss": 1, - "__pyx_pw_7sklearn_12linear_model_8sgd_fast_12LossFunction_3dloss": 1, - "__pyx_doc_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_12LossFunction_2dloss": 1, - "dloss": 1, - "*__pyx_pw_7sklearn_12linear_model_8sgd_fast_10Regression_1loss": 3, - "__pyx_f_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 1, - "__pyx_pw_7sklearn_12linear_model_8sgd_fast_10Regression_1loss": 1, - "__pyx_pf_7sklearn_12linear_model_8sgd_fast_10Regression_loss": 1, - "__pyx_base.__pyx_vtab": 1, - "__pyx_base.loss": 1, - "syscalldef": 1, - "syscalldefs": 1, - "SYSCALL_OR_NUM": 3, - "SYS_restart_syscall": 1, - "MAKE_UINT16": 3, - "SYS_exit": 1, - "SYS_fork": 1, - "__wglew_h__": 2, - "__WGLEW_H__": 1, - "__wglext_h_": 2, - "wglext.h": 1, - "wglew.h": 1, - "WINAPI": 119, - "": 1, - "GLEW_STATIC": 1, - "WGL_3DFX_multisample": 2, - "WGL_SAMPLE_BUFFERS_3DFX": 1, - "WGL_SAMPLES_3DFX": 1, - "WGLEW_3DFX_multisample": 1, - "WGLEW_GET_VAR": 49, - "__WGLEW_3DFX_multisample": 2, - "WGL_3DL_stereo_control": 2, - "WGL_STEREO_EMITTER_ENABLE_3DL": 1, - "WGL_STEREO_EMITTER_DISABLE_3DL": 1, - "WGL_STEREO_POLARITY_NORMAL_3DL": 1, - "WGL_STEREO_POLARITY_INVERT_3DL": 1, - "BOOL": 84, - "PFNWGLSETSTEREOEMITTERSTATE3DLPROC": 2, - "HDC": 65, - "hDC": 33, - "UINT": 30, - "uState": 1, - "wglSetStereoEmitterState3DL": 1, - "WGLEW_GET_FUN": 120, - "__wglewSetStereoEmitterState3DL": 2, - "WGLEW_3DL_stereo_control": 1, - "__WGLEW_3DL_stereo_control": 2, - "WGL_AMD_gpu_association": 2, - "WGL_GPU_VENDOR_AMD": 1, - "F00": 1, - "WGL_GPU_RENDERER_STRING_AMD": 1, - "F01": 1, - "WGL_GPU_OPENGL_VERSION_STRING_AMD": 1, - "F02": 1, - "WGL_GPU_FASTEST_TARGET_GPUS_AMD": 1, - "A2": 2, - "WGL_GPU_RAM_AMD": 1, - "A3": 2, - "WGL_GPU_CLOCK_AMD": 1, - "A4": 2, - "WGL_GPU_NUM_PIPES_AMD": 1, - "A5": 3, - "WGL_GPU_NUM_SIMD_AMD": 1, - "A6": 2, - "WGL_GPU_NUM_RB_AMD": 1, - "A7": 2, - "WGL_GPU_NUM_SPI_AMD": 1, - "A8": 2, - "VOID": 6, - "PFNWGLBLITCONTEXTFRAMEBUFFERAMDPROC": 2, - "HGLRC": 14, - "dstCtx": 1, - "GLint": 18, - "srcX0": 1, - "srcY0": 1, - "srcX1": 1, - "srcY1": 1, - "dstX0": 1, - "dstY0": 1, - "dstX1": 1, - "dstY1": 1, - "GLbitfield": 1, - "mask": 1, - "GLenum": 8, - "filter": 1, - "PFNWGLCREATEASSOCIATEDCONTEXTAMDPROC": 2, - "PFNWGLCREATEASSOCIATEDCONTEXTATTRIBSAMDPROC": 2, - "hShareContext": 2, - "attribList": 2, - "PFNWGLDELETEASSOCIATEDCONTEXTAMDPROC": 2, - "hglrc": 5, - "PFNWGLGETCONTEXTGPUIDAMDPROC": 2, - "PFNWGLGETCURRENTASSOCIATEDCONTEXTAMDPROC": 2, - "PFNWGLGETGPUIDSAMDPROC": 2, - "maxCount": 1, - "UINT*": 6, - "ids": 1, - "INT": 3, - "PFNWGLGETGPUINFOAMDPROC": 2, - "property": 1, - "dataType": 1, - "PFNWGLMAKEASSOCIATEDCONTEXTCURRENTAMDPROC": 2, - "wglBlitContextFramebufferAMD": 1, - "__wglewBlitContextFramebufferAMD": 2, - "wglCreateAssociatedContextAMD": 1, - "__wglewCreateAssociatedContextAMD": 2, - "wglCreateAssociatedContextAttribsAMD": 1, - "__wglewCreateAssociatedContextAttribsAMD": 2, - "wglDeleteAssociatedContextAMD": 1, - "__wglewDeleteAssociatedContextAMD": 2, - "wglGetContextGPUIDAMD": 1, - "__wglewGetContextGPUIDAMD": 2, - "wglGetCurrentAssociatedContextAMD": 1, - "__wglewGetCurrentAssociatedContextAMD": 2, - "wglGetGPUIDsAMD": 1, - "__wglewGetGPUIDsAMD": 2, - "wglGetGPUInfoAMD": 1, - "__wglewGetGPUInfoAMD": 2, - "wglMakeAssociatedContextCurrentAMD": 1, - "__wglewMakeAssociatedContextCurrentAMD": 2, - "WGLEW_AMD_gpu_association": 1, - "__WGLEW_AMD_gpu_association": 2, - "WGL_ARB_buffer_region": 2, - "WGL_FRONT_COLOR_BUFFER_BIT_ARB": 1, - "WGL_BACK_COLOR_BUFFER_BIT_ARB": 1, - "WGL_DEPTH_BUFFER_BIT_ARB": 1, - "WGL_STENCIL_BUFFER_BIT_ARB": 1, - "HANDLE": 14, - "PFNWGLCREATEBUFFERREGIONARBPROC": 2, - "iLayerPlane": 5, - "uType": 1, - "PFNWGLDELETEBUFFERREGIONARBPROC": 2, - "hRegion": 3, - "PFNWGLRESTOREBUFFERREGIONARBPROC": 2, - "width": 3, - "height": 3, - "xSrc": 1, - "ySrc": 1, - "PFNWGLSAVEBUFFERREGIONARBPROC": 2, - "wglCreateBufferRegionARB": 1, - "__wglewCreateBufferRegionARB": 2, - "wglDeleteBufferRegionARB": 1, - "__wglewDeleteBufferRegionARB": 2, - "wglRestoreBufferRegionARB": 1, - "__wglewRestoreBufferRegionARB": 2, - "wglSaveBufferRegionARB": 1, - "__wglewSaveBufferRegionARB": 2, - "WGLEW_ARB_buffer_region": 1, - "__WGLEW_ARB_buffer_region": 2, - "WGL_ARB_create_context": 2, - "WGL_CONTEXT_DEBUG_BIT_ARB": 1, - "WGL_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB": 1, - "WGL_CONTEXT_MAJOR_VERSION_ARB": 1, - "WGL_CONTEXT_MINOR_VERSION_ARB": 1, - "WGL_CONTEXT_LAYER_PLANE_ARB": 1, - "WGL_CONTEXT_FLAGS_ARB": 1, - "ERROR_INVALID_VERSION_ARB": 1, - "ERROR_INVALID_PROFILE_ARB": 1, - "PFNWGLCREATECONTEXTATTRIBSARBPROC": 2, - "wglCreateContextAttribsARB": 1, - "__wglewCreateContextAttribsARB": 2, - "WGLEW_ARB_create_context": 1, - "__WGLEW_ARB_create_context": 2, - "WGL_ARB_create_context_profile": 2, - "WGL_CONTEXT_CORE_PROFILE_BIT_ARB": 1, - "WGL_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB": 1, - "WGL_CONTEXT_PROFILE_MASK_ARB": 1, - "WGLEW_ARB_create_context_profile": 1, - "__WGLEW_ARB_create_context_profile": 2, - "WGL_ARB_create_context_robustness": 2, - "WGL_CONTEXT_ROBUST_ACCESS_BIT_ARB": 1, - "WGL_LOSE_CONTEXT_ON_RESET_ARB": 1, - "WGL_CONTEXT_RESET_NOTIFICATION_STRATEGY_ARB": 1, - "WGL_NO_RESET_NOTIFICATION_ARB": 1, - "WGLEW_ARB_create_context_robustness": 1, - "__WGLEW_ARB_create_context_robustness": 2, - "WGL_ARB_extensions_string": 2, - "PFNWGLGETEXTENSIONSSTRINGARBPROC": 2, - "hdc": 16, - "wglGetExtensionsStringARB": 1, - "__wglewGetExtensionsStringARB": 2, - "WGLEW_ARB_extensions_string": 1, - "__WGLEW_ARB_extensions_string": 2, - "WGL_ARB_framebuffer_sRGB": 2, - "WGL_FRAMEBUFFER_SRGB_CAPABLE_ARB": 1, - "A9": 2, - "WGLEW_ARB_framebuffer_sRGB": 1, - "__WGLEW_ARB_framebuffer_sRGB": 2, - "WGL_ARB_make_current_read": 2, - "ERROR_INVALID_PIXEL_TYPE_ARB": 1, - "ERROR_INCOMPATIBLE_DEVICE_CONTEXTS_ARB": 1, - "PFNWGLGETCURRENTREADDCARBPROC": 2, - "PFNWGLMAKECONTEXTCURRENTARBPROC": 2, - "hDrawDC": 2, - "hReadDC": 2, - "wglGetCurrentReadDCARB": 1, - "__wglewGetCurrentReadDCARB": 2, - "wglMakeContextCurrentARB": 1, - "__wglewMakeContextCurrentARB": 2, - "WGLEW_ARB_make_current_read": 1, - "__WGLEW_ARB_make_current_read": 2, - "WGL_ARB_multisample": 2, - "WGL_SAMPLE_BUFFERS_ARB": 1, - "WGL_SAMPLES_ARB": 1, - "WGLEW_ARB_multisample": 1, - "__WGLEW_ARB_multisample": 2, - "WGL_ARB_pbuffer": 2, - "WGL_DRAW_TO_PBUFFER_ARB": 1, - "D": 8, - "WGL_MAX_PBUFFER_PIXELS_ARB": 1, - "WGL_MAX_PBUFFER_WIDTH_ARB": 1, - "WGL_MAX_PBUFFER_HEIGHT_ARB": 1, - "WGL_PBUFFER_LARGEST_ARB": 1, - "WGL_PBUFFER_WIDTH_ARB": 1, - "WGL_PBUFFER_HEIGHT_ARB": 1, - "WGL_PBUFFER_LOST_ARB": 1, - "DECLARE_HANDLE": 6, - "HPBUFFERARB": 12, - "PFNWGLCREATEPBUFFERARBPROC": 2, - "iPixelFormat": 6, - "iWidth": 2, - "iHeight": 2, - "piAttribList": 4, - "PFNWGLDESTROYPBUFFERARBPROC": 2, - "hPbuffer": 14, - "PFNWGLGETPBUFFERDCARBPROC": 2, - "PFNWGLQUERYPBUFFERARBPROC": 2, - "iAttribute": 8, - "piValue": 8, - "PFNWGLRELEASEPBUFFERDCARBPROC": 2, - "wglCreatePbufferARB": 1, - "__wglewCreatePbufferARB": 2, - "wglDestroyPbufferARB": 1, - "__wglewDestroyPbufferARB": 2, - "wglGetPbufferDCARB": 1, - "__wglewGetPbufferDCARB": 2, - "wglQueryPbufferARB": 1, - "__wglewQueryPbufferARB": 2, - "wglReleasePbufferDCARB": 1, - "__wglewReleasePbufferDCARB": 2, - "WGLEW_ARB_pbuffer": 1, - "__WGLEW_ARB_pbuffer": 2, - "WGL_ARB_pixel_format": 2, - "WGL_NUMBER_PIXEL_FORMATS_ARB": 1, - "WGL_DRAW_TO_WINDOW_ARB": 1, - "WGL_DRAW_TO_BITMAP_ARB": 1, - "WGL_ACCELERATION_ARB": 1, - "WGL_NEED_PALETTE_ARB": 1, - "WGL_NEED_SYSTEM_PALETTE_ARB": 1, - "WGL_SWAP_LAYER_BUFFERS_ARB": 1, - "WGL_SWAP_METHOD_ARB": 1, - "WGL_NUMBER_OVERLAYS_ARB": 1, - "WGL_NUMBER_UNDERLAYS_ARB": 1, - "WGL_TRANSPARENT_ARB": 1, - "WGL_SHARE_DEPTH_ARB": 1, - "WGL_SHARE_STENCIL_ARB": 1, - "WGL_SHARE_ACCUM_ARB": 1, - "WGL_SUPPORT_GDI_ARB": 1, - "WGL_SUPPORT_OPENGL_ARB": 1, - "WGL_DOUBLE_BUFFER_ARB": 1, - "WGL_STEREO_ARB": 1, - "WGL_PIXEL_TYPE_ARB": 1, - "WGL_COLOR_BITS_ARB": 1, - "WGL_RED_BITS_ARB": 1, - "WGL_RED_SHIFT_ARB": 1, - "WGL_GREEN_BITS_ARB": 1, - "WGL_GREEN_SHIFT_ARB": 1, - "WGL_BLUE_BITS_ARB": 1, - "WGL_BLUE_SHIFT_ARB": 1, - "WGL_ALPHA_BITS_ARB": 1, - "B": 9, - "WGL_ALPHA_SHIFT_ARB": 1, - "WGL_ACCUM_BITS_ARB": 1, - "WGL_ACCUM_RED_BITS_ARB": 1, - "WGL_ACCUM_GREEN_BITS_ARB": 1, - "WGL_ACCUM_BLUE_BITS_ARB": 1, - "WGL_ACCUM_ALPHA_BITS_ARB": 1, - "WGL_DEPTH_BITS_ARB": 1, - "WGL_STENCIL_BITS_ARB": 1, - "WGL_AUX_BUFFERS_ARB": 1, - "WGL_NO_ACCELERATION_ARB": 1, - "WGL_GENERIC_ACCELERATION_ARB": 1, - "WGL_FULL_ACCELERATION_ARB": 1, - "WGL_SWAP_EXCHANGE_ARB": 1, - "WGL_SWAP_COPY_ARB": 1, - "WGL_SWAP_UNDEFINED_ARB": 1, - "WGL_TYPE_RGBA_ARB": 1, - "WGL_TYPE_COLORINDEX_ARB": 1, - "WGL_TRANSPARENT_RED_VALUE_ARB": 1, - "WGL_TRANSPARENT_GREEN_VALUE_ARB": 1, - "WGL_TRANSPARENT_BLUE_VALUE_ARB": 1, - "WGL_TRANSPARENT_ALPHA_VALUE_ARB": 1, - "WGL_TRANSPARENT_INDEX_VALUE_ARB": 1, - "PFNWGLCHOOSEPIXELFORMATARBPROC": 2, - "piAttribIList": 2, - "FLOAT": 4, - "*pfAttribFList": 2, - "nMaxFormats": 2, - "*piFormats": 2, - "*nNumFormats": 2, - "PFNWGLGETPIXELFORMATATTRIBFVARBPROC": 2, - "nAttributes": 4, - "piAttributes": 4, - "*pfValues": 2, - "PFNWGLGETPIXELFORMATATTRIBIVARBPROC": 2, - "*piValues": 2, - "wglChoosePixelFormatARB": 1, - "__wglewChoosePixelFormatARB": 2, - "wglGetPixelFormatAttribfvARB": 1, - "__wglewGetPixelFormatAttribfvARB": 2, - "wglGetPixelFormatAttribivARB": 1, - "__wglewGetPixelFormatAttribivARB": 2, - "WGLEW_ARB_pixel_format": 1, - "__WGLEW_ARB_pixel_format": 2, - "WGL_ARB_pixel_format_float": 2, - "WGL_TYPE_RGBA_FLOAT_ARB": 1, - "A0": 3, - "WGLEW_ARB_pixel_format_float": 1, - "__WGLEW_ARB_pixel_format_float": 2, - "WGL_ARB_render_texture": 2, - "WGL_BIND_TO_TEXTURE_RGB_ARB": 1, - "WGL_BIND_TO_TEXTURE_RGBA_ARB": 1, - "WGL_TEXTURE_FORMAT_ARB": 1, - "WGL_TEXTURE_TARGET_ARB": 1, - "WGL_MIPMAP_TEXTURE_ARB": 1, - "WGL_TEXTURE_RGB_ARB": 1, - "WGL_TEXTURE_RGBA_ARB": 1, - "WGL_NO_TEXTURE_ARB": 2, - "WGL_TEXTURE_CUBE_MAP_ARB": 1, - "WGL_TEXTURE_1D_ARB": 1, - "WGL_TEXTURE_2D_ARB": 1, - "WGL_MIPMAP_LEVEL_ARB": 1, - "WGL_CUBE_MAP_FACE_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB": 1, - "WGL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB": 1, - "WGL_FRONT_LEFT_ARB": 1, - "WGL_FRONT_RIGHT_ARB": 1, - "WGL_BACK_LEFT_ARB": 1, - "WGL_BACK_RIGHT_ARB": 1, - "WGL_AUX0_ARB": 1, - "WGL_AUX1_ARB": 1, - "WGL_AUX2_ARB": 1, - "WGL_AUX3_ARB": 1, - "WGL_AUX4_ARB": 1, - "WGL_AUX5_ARB": 1, - "WGL_AUX6_ARB": 1, - "WGL_AUX7_ARB": 1, - "WGL_AUX8_ARB": 1, - "WGL_AUX9_ARB": 1, - "PFNWGLBINDTEXIMAGEARBPROC": 2, - "iBuffer": 2, - "PFNWGLRELEASETEXIMAGEARBPROC": 2, - "PFNWGLSETPBUFFERATTRIBARBPROC": 2, - "wglBindTexImageARB": 1, - "__wglewBindTexImageARB": 2, - "wglReleaseTexImageARB": 1, - "__wglewReleaseTexImageARB": 2, - "wglSetPbufferAttribARB": 1, - "__wglewSetPbufferAttribARB": 2, - "WGLEW_ARB_render_texture": 1, - "__WGLEW_ARB_render_texture": 2, - "WGL_ATI_pixel_format_float": 2, - "WGL_TYPE_RGBA_FLOAT_ATI": 1, - "GL_RGBA_FLOAT_MODE_ATI": 1, - "GL_COLOR_CLEAR_UNCLAMPED_VALUE_ATI": 1, - "WGLEW_ATI_pixel_format_float": 1, - "__WGLEW_ATI_pixel_format_float": 2, - "WGL_ATI_render_texture_rectangle": 2, - "WGL_TEXTURE_RECTANGLE_ATI": 1, - "WGLEW_ATI_render_texture_rectangle": 1, - "__WGLEW_ATI_render_texture_rectangle": 2, - "WGL_EXT_create_context_es2_profile": 2, - "WGL_CONTEXT_ES2_PROFILE_BIT_EXT": 1, - "WGLEW_EXT_create_context_es2_profile": 1, - "__WGLEW_EXT_create_context_es2_profile": 2, - "WGL_EXT_depth_float": 2, - "WGL_DEPTH_FLOAT_EXT": 1, - "WGLEW_EXT_depth_float": 1, - "__WGLEW_EXT_depth_float": 2, - "WGL_EXT_display_color_table": 2, - "GLboolean": 53, - "PFNWGLBINDDISPLAYCOLORTABLEEXTPROC": 2, - "GLushort": 3, - "PFNWGLCREATEDISPLAYCOLORTABLEEXTPROC": 2, - "PFNWGLDESTROYDISPLAYCOLORTABLEEXTPROC": 2, - "PFNWGLLOADDISPLAYCOLORTABLEEXTPROC": 2, - "GLushort*": 1, - "table": 1, - "GLuint": 9, - "wglBindDisplayColorTableEXT": 1, - "__wglewBindDisplayColorTableEXT": 2, - "wglCreateDisplayColorTableEXT": 1, - "__wglewCreateDisplayColorTableEXT": 2, - "wglDestroyDisplayColorTableEXT": 1, - "__wglewDestroyDisplayColorTableEXT": 2, - "wglLoadDisplayColorTableEXT": 1, - "__wglewLoadDisplayColorTableEXT": 2, - "WGLEW_EXT_display_color_table": 1, - "__WGLEW_EXT_display_color_table": 2, - "WGL_EXT_extensions_string": 2, - "PFNWGLGETEXTENSIONSSTRINGEXTPROC": 2, - "wglGetExtensionsStringEXT": 1, - "__wglewGetExtensionsStringEXT": 2, - "WGLEW_EXT_extensions_string": 1, - "__WGLEW_EXT_extensions_string": 2, - "WGL_EXT_framebuffer_sRGB": 2, - "WGL_FRAMEBUFFER_SRGB_CAPABLE_EXT": 1, - "WGLEW_EXT_framebuffer_sRGB": 1, - "__WGLEW_EXT_framebuffer_sRGB": 2, - "WGL_EXT_make_current_read": 2, - "ERROR_INVALID_PIXEL_TYPE_EXT": 1, - "PFNWGLGETCURRENTREADDCEXTPROC": 2, - "PFNWGLMAKECONTEXTCURRENTEXTPROC": 2, - "wglGetCurrentReadDCEXT": 1, - "__wglewGetCurrentReadDCEXT": 2, - "wglMakeContextCurrentEXT": 1, - "__wglewMakeContextCurrentEXT": 2, - "WGLEW_EXT_make_current_read": 1, - "__WGLEW_EXT_make_current_read": 2, - "WGL_EXT_multisample": 2, - "WGL_SAMPLE_BUFFERS_EXT": 1, - "WGL_SAMPLES_EXT": 1, - "WGLEW_EXT_multisample": 1, - "__WGLEW_EXT_multisample": 2, - "WGL_EXT_pbuffer": 2, - "WGL_DRAW_TO_PBUFFER_EXT": 1, - "WGL_MAX_PBUFFER_PIXELS_EXT": 1, - "WGL_MAX_PBUFFER_WIDTH_EXT": 1, - "WGL_MAX_PBUFFER_HEIGHT_EXT": 1, - "WGL_OPTIMAL_PBUFFER_WIDTH_EXT": 1, - "WGL_OPTIMAL_PBUFFER_HEIGHT_EXT": 1, - "WGL_PBUFFER_LARGEST_EXT": 1, - "WGL_PBUFFER_WIDTH_EXT": 1, - "WGL_PBUFFER_HEIGHT_EXT": 1, - "HPBUFFEREXT": 6, - "PFNWGLCREATEPBUFFEREXTPROC": 2, - "PFNWGLDESTROYPBUFFEREXTPROC": 2, - "PFNWGLGETPBUFFERDCEXTPROC": 2, - "PFNWGLQUERYPBUFFEREXTPROC": 2, - "PFNWGLRELEASEPBUFFERDCEXTPROC": 2, - "wglCreatePbufferEXT": 1, - "__wglewCreatePbufferEXT": 2, - "wglDestroyPbufferEXT": 1, - "__wglewDestroyPbufferEXT": 2, - "wglGetPbufferDCEXT": 1, - "__wglewGetPbufferDCEXT": 2, - "wglQueryPbufferEXT": 1, - "__wglewQueryPbufferEXT": 2, - "wglReleasePbufferDCEXT": 1, - "__wglewReleasePbufferDCEXT": 2, - "WGLEW_EXT_pbuffer": 1, - "__WGLEW_EXT_pbuffer": 2, - "WGL_EXT_pixel_format": 2, - "WGL_NUMBER_PIXEL_FORMATS_EXT": 1, - "WGL_DRAW_TO_WINDOW_EXT": 1, - "WGL_DRAW_TO_BITMAP_EXT": 1, - "WGL_ACCELERATION_EXT": 1, - "WGL_NEED_PALETTE_EXT": 1, - "WGL_NEED_SYSTEM_PALETTE_EXT": 1, - "WGL_SWAP_LAYER_BUFFERS_EXT": 1, - "WGL_SWAP_METHOD_EXT": 1, - "WGL_NUMBER_OVERLAYS_EXT": 1, - "WGL_NUMBER_UNDERLAYS_EXT": 1, - "WGL_TRANSPARENT_EXT": 1, - "WGL_TRANSPARENT_VALUE_EXT": 1, - "WGL_SHARE_DEPTH_EXT": 1, - "WGL_SHARE_STENCIL_EXT": 1, - "WGL_SHARE_ACCUM_EXT": 1, - "WGL_SUPPORT_GDI_EXT": 1, - "WGL_SUPPORT_OPENGL_EXT": 1, - "WGL_DOUBLE_BUFFER_EXT": 1, - "WGL_STEREO_EXT": 1, - "WGL_PIXEL_TYPE_EXT": 1, - "WGL_COLOR_BITS_EXT": 1, - "WGL_RED_BITS_EXT": 1, - "WGL_RED_SHIFT_EXT": 1, - "WGL_GREEN_BITS_EXT": 1, - "WGL_GREEN_SHIFT_EXT": 1, - "WGL_BLUE_BITS_EXT": 1, - "WGL_BLUE_SHIFT_EXT": 1, - "WGL_ALPHA_BITS_EXT": 1, - "WGL_ALPHA_SHIFT_EXT": 1, - "WGL_ACCUM_BITS_EXT": 1, - "WGL_ACCUM_RED_BITS_EXT": 1, - "WGL_ACCUM_GREEN_BITS_EXT": 1, - "WGL_ACCUM_BLUE_BITS_EXT": 1, - "WGL_ACCUM_ALPHA_BITS_EXT": 1, - "WGL_DEPTH_BITS_EXT": 1, - "WGL_STENCIL_BITS_EXT": 1, - "WGL_AUX_BUFFERS_EXT": 1, - "WGL_NO_ACCELERATION_EXT": 1, - "WGL_GENERIC_ACCELERATION_EXT": 1, - "WGL_FULL_ACCELERATION_EXT": 1, - "WGL_SWAP_EXCHANGE_EXT": 1, - "WGL_SWAP_COPY_EXT": 1, - "WGL_SWAP_UNDEFINED_EXT": 1, - "WGL_TYPE_RGBA_EXT": 1, - "WGL_TYPE_COLORINDEX_EXT": 1, - "PFNWGLCHOOSEPIXELFORMATEXTPROC": 2, - "PFNWGLGETPIXELFORMATATTRIBFVEXTPROC": 2, - "PFNWGLGETPIXELFORMATATTRIBIVEXTPROC": 2, - "wglChoosePixelFormatEXT": 1, - "__wglewChoosePixelFormatEXT": 2, - "wglGetPixelFormatAttribfvEXT": 1, - "__wglewGetPixelFormatAttribfvEXT": 2, - "wglGetPixelFormatAttribivEXT": 1, - "__wglewGetPixelFormatAttribivEXT": 2, - "WGLEW_EXT_pixel_format": 1, - "__WGLEW_EXT_pixel_format": 2, - "WGL_EXT_pixel_format_packed_float": 2, - "WGL_TYPE_RGBA_UNSIGNED_FLOAT_EXT": 1, - "WGLEW_EXT_pixel_format_packed_float": 1, - "__WGLEW_EXT_pixel_format_packed_float": 2, - "WGL_EXT_swap_control": 2, - "PFNWGLGETSWAPINTERVALEXTPROC": 2, - "PFNWGLSWAPINTERVALEXTPROC": 2, - "interval": 1, - "wglGetSwapIntervalEXT": 1, - "__wglewGetSwapIntervalEXT": 2, - "wglSwapIntervalEXT": 1, - "__wglewSwapIntervalEXT": 2, - "WGLEW_EXT_swap_control": 1, - "__WGLEW_EXT_swap_control": 2, - "WGL_I3D_digital_video_control": 2, - "WGL_DIGITAL_VIDEO_CURSOR_ALPHA_FRAMEBUFFER_I3D": 1, - "WGL_DIGITAL_VIDEO_CURSOR_ALPHA_VALUE_I3D": 1, - "WGL_DIGITAL_VIDEO_CURSOR_INCLUDED_I3D": 1, - "WGL_DIGITAL_VIDEO_GAMMA_CORRECTED_I3D": 1, - "PFNWGLGETDIGITALVIDEOPARAMETERSI3DPROC": 2, - "PFNWGLSETDIGITALVIDEOPARAMETERSI3DPROC": 2, - "wglGetDigitalVideoParametersI3D": 1, - "__wglewGetDigitalVideoParametersI3D": 2, - "wglSetDigitalVideoParametersI3D": 1, - "__wglewSetDigitalVideoParametersI3D": 2, - "WGLEW_I3D_digital_video_control": 1, - "__WGLEW_I3D_digital_video_control": 2, - "WGL_I3D_gamma": 2, - "WGL_GAMMA_TABLE_SIZE_I3D": 1, - "WGL_GAMMA_EXCLUDE_DESKTOP_I3D": 1, - "PFNWGLGETGAMMATABLEI3DPROC": 2, - "iEntries": 2, - "USHORT*": 2, - "puRed": 2, - "USHORT": 4, - "*puGreen": 2, - "*puBlue": 2, - "PFNWGLGETGAMMATABLEPARAMETERSI3DPROC": 2, - "PFNWGLSETGAMMATABLEI3DPROC": 2, - "PFNWGLSETGAMMATABLEPARAMETERSI3DPROC": 2, - "wglGetGammaTableI3D": 1, - "__wglewGetGammaTableI3D": 2, - "wglGetGammaTableParametersI3D": 1, - "__wglewGetGammaTableParametersI3D": 2, - "wglSetGammaTableI3D": 1, - "__wglewSetGammaTableI3D": 2, - "wglSetGammaTableParametersI3D": 1, - "__wglewSetGammaTableParametersI3D": 2, - "WGLEW_I3D_gamma": 1, - "__WGLEW_I3D_gamma": 2, - "WGL_I3D_genlock": 2, - "WGL_GENLOCK_SOURCE_MULTIVIEW_I3D": 1, - "WGL_GENLOCK_SOURCE_EXTERNAL_SYNC_I3D": 1, - "WGL_GENLOCK_SOURCE_EXTERNAL_FIELD_I3D": 1, - "WGL_GENLOCK_SOURCE_EXTERNAL_TTL_I3D": 1, - "WGL_GENLOCK_SOURCE_DIGITAL_SYNC_I3D": 1, - "WGL_GENLOCK_SOURCE_DIGITAL_FIELD_I3D": 1, - "WGL_GENLOCK_SOURCE_EDGE_FALLING_I3D": 1, - "WGL_GENLOCK_SOURCE_EDGE_RISING_I3D": 1, - "WGL_GENLOCK_SOURCE_EDGE_BOTH_I3D": 1, - "PFNWGLDISABLEGENLOCKI3DPROC": 2, - "PFNWGLENABLEGENLOCKI3DPROC": 2, - "PFNWGLGENLOCKSAMPLERATEI3DPROC": 2, - "uRate": 2, - "PFNWGLGENLOCKSOURCEDELAYI3DPROC": 2, - "uDelay": 2, - "PFNWGLGENLOCKSOURCEEDGEI3DPROC": 2, - "uEdge": 2, - "PFNWGLGENLOCKSOURCEI3DPROC": 2, - "uSource": 2, - "PFNWGLGETGENLOCKSAMPLERATEI3DPROC": 2, - "PFNWGLGETGENLOCKSOURCEDELAYI3DPROC": 2, - "PFNWGLGETGENLOCKSOURCEEDGEI3DPROC": 2, - "PFNWGLGETGENLOCKSOURCEI3DPROC": 2, - "PFNWGLISENABLEDGENLOCKI3DPROC": 2, - "BOOL*": 3, - "pFlag": 3, - "PFNWGLQUERYGENLOCKMAXSOURCEDELAYI3DPROC": 2, - "uMaxLineDelay": 1, - "*uMaxPixelDelay": 1, - "wglDisableGenlockI3D": 1, - "__wglewDisableGenlockI3D": 2, - "wglEnableGenlockI3D": 1, - "__wglewEnableGenlockI3D": 2, - "wglGenlockSampleRateI3D": 1, - "__wglewGenlockSampleRateI3D": 2, - "wglGenlockSourceDelayI3D": 1, - "__wglewGenlockSourceDelayI3D": 2, - "wglGenlockSourceEdgeI3D": 1, - "__wglewGenlockSourceEdgeI3D": 2, - "wglGenlockSourceI3D": 1, - "__wglewGenlockSourceI3D": 2, - "wglGetGenlockSampleRateI3D": 1, - "__wglewGetGenlockSampleRateI3D": 2, - "wglGetGenlockSourceDelayI3D": 1, - "__wglewGetGenlockSourceDelayI3D": 2, - "wglGetGenlockSourceEdgeI3D": 1, - "__wglewGetGenlockSourceEdgeI3D": 2, - "wglGetGenlockSourceI3D": 1, - "__wglewGetGenlockSourceI3D": 2, - "wglIsEnabledGenlockI3D": 1, - "__wglewIsEnabledGenlockI3D": 2, - "wglQueryGenlockMaxSourceDelayI3D": 1, - "__wglewQueryGenlockMaxSourceDelayI3D": 2, - "WGLEW_I3D_genlock": 1, - "__WGLEW_I3D_genlock": 2, - "WGL_I3D_image_buffer": 2, - "WGL_IMAGE_BUFFER_MIN_ACCESS_I3D": 1, - "WGL_IMAGE_BUFFER_LOCK_I3D": 1, - "PFNWGLASSOCIATEIMAGEBUFFEREVENTSI3DPROC": 2, - "HANDLE*": 3, - "pEvent": 1, - "LPVOID": 3, - "*pAddress": 1, - "DWORD": 5, - "*pSize": 1, - "PFNWGLCREATEIMAGEBUFFERI3DPROC": 2, - "dwSize": 1, - "uFlags": 1, - "PFNWGLDESTROYIMAGEBUFFERI3DPROC": 2, - "pAddress": 2, - "PFNWGLRELEASEIMAGEBUFFEREVENTSI3DPROC": 2, - "LPVOID*": 1, - "wglAssociateImageBufferEventsI3D": 1, - "__wglewAssociateImageBufferEventsI3D": 2, - "wglCreateImageBufferI3D": 1, - "__wglewCreateImageBufferI3D": 2, - "wglDestroyImageBufferI3D": 1, - "__wglewDestroyImageBufferI3D": 2, - "wglReleaseImageBufferEventsI3D": 1, - "__wglewReleaseImageBufferEventsI3D": 2, - "WGLEW_I3D_image_buffer": 1, - "__WGLEW_I3D_image_buffer": 2, - "WGL_I3D_swap_frame_lock": 2, - "PFNWGLDISABLEFRAMELOCKI3DPROC": 2, - "PFNWGLENABLEFRAMELOCKI3DPROC": 2, - "PFNWGLISENABLEDFRAMELOCKI3DPROC": 2, - "PFNWGLQUERYFRAMELOCKMASTERI3DPROC": 2, - "wglDisableFrameLockI3D": 1, - "__wglewDisableFrameLockI3D": 2, - "wglEnableFrameLockI3D": 1, - "__wglewEnableFrameLockI3D": 2, - "wglIsEnabledFrameLockI3D": 1, - "__wglewIsEnabledFrameLockI3D": 2, - "wglQueryFrameLockMasterI3D": 1, - "__wglewQueryFrameLockMasterI3D": 2, - "WGLEW_I3D_swap_frame_lock": 1, - "__WGLEW_I3D_swap_frame_lock": 2, - "WGL_I3D_swap_frame_usage": 2, - "PFNWGLBEGINFRAMETRACKINGI3DPROC": 2, - "PFNWGLENDFRAMETRACKINGI3DPROC": 2, - "PFNWGLGETFRAMEUSAGEI3DPROC": 2, - "float*": 1, - "pUsage": 1, - "PFNWGLQUERYFRAMETRACKINGI3DPROC": 2, - "DWORD*": 1, - "pFrameCount": 1, - "*pMissedFrames": 1, - "*pLastMissedUsage": 1, - "wglBeginFrameTrackingI3D": 1, - "__wglewBeginFrameTrackingI3D": 2, - "wglEndFrameTrackingI3D": 1, - "__wglewEndFrameTrackingI3D": 2, - "wglGetFrameUsageI3D": 1, - "__wglewGetFrameUsageI3D": 2, - "wglQueryFrameTrackingI3D": 1, - "__wglewQueryFrameTrackingI3D": 2, - "WGLEW_I3D_swap_frame_usage": 1, - "__WGLEW_I3D_swap_frame_usage": 2, - "WGL_NV_DX_interop": 2, - "WGL_ACCESS_READ_ONLY_NV": 1, - "WGL_ACCESS_READ_WRITE_NV": 1, - "WGL_ACCESS_WRITE_DISCARD_NV": 1, - "PFNWGLDXCLOSEDEVICENVPROC": 2, - "hDevice": 9, - "PFNWGLDXLOCKOBJECTSNVPROC": 2, - "hObjects": 2, - "PFNWGLDXOBJECTACCESSNVPROC": 2, - "hObject": 2, - "access": 2, - "PFNWGLDXOPENDEVICENVPROC": 2, - "dxDevice": 1, - "PFNWGLDXREGISTEROBJECTNVPROC": 2, - "dxObject": 2, - "PFNWGLDXSETRESOURCESHAREHANDLENVPROC": 2, - "shareHandle": 1, - "PFNWGLDXUNLOCKOBJECTSNVPROC": 2, - "PFNWGLDXUNREGISTEROBJECTNVPROC": 2, - "wglDXCloseDeviceNV": 1, - "__wglewDXCloseDeviceNV": 2, - "wglDXLockObjectsNV": 1, - "__wglewDXLockObjectsNV": 2, - "wglDXObjectAccessNV": 1, - "__wglewDXObjectAccessNV": 2, - "wglDXOpenDeviceNV": 1, - "__wglewDXOpenDeviceNV": 2, - "wglDXRegisterObjectNV": 1, - "__wglewDXRegisterObjectNV": 2, - "wglDXSetResourceShareHandleNV": 1, - "__wglewDXSetResourceShareHandleNV": 2, - "wglDXUnlockObjectsNV": 1, - "__wglewDXUnlockObjectsNV": 2, - "wglDXUnregisterObjectNV": 1, - "__wglewDXUnregisterObjectNV": 2, - "WGLEW_NV_DX_interop": 1, - "__WGLEW_NV_DX_interop": 2, - "WGL_NV_copy_image": 2, - "PFNWGLCOPYIMAGESUBDATANVPROC": 2, - "hSrcRC": 1, - "srcName": 1, - "srcTarget": 1, - "srcLevel": 1, - "srcX": 1, - "srcY": 1, - "srcZ": 1, - "hDstRC": 1, - "dstName": 1, - "dstTarget": 1, - "dstLevel": 1, - "dstX": 1, - "dstY": 1, - "dstZ": 1, - "GLsizei": 4, - "wglCopyImageSubDataNV": 1, - "__wglewCopyImageSubDataNV": 2, - "WGLEW_NV_copy_image": 1, - "__WGLEW_NV_copy_image": 2, - "WGL_NV_float_buffer": 2, - "WGL_FLOAT_COMPONENTS_NV": 1, - "B0": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_R_NV": 1, - "B1": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RG_NV": 1, - "B2": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGB_NV": 1, - "B3": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGBA_NV": 1, - "B4": 1, - "WGL_TEXTURE_FLOAT_R_NV": 1, - "B5": 1, - "WGL_TEXTURE_FLOAT_RG_NV": 1, - "B6": 1, - "WGL_TEXTURE_FLOAT_RGB_NV": 1, - "B7": 1, - "WGL_TEXTURE_FLOAT_RGBA_NV": 1, - "B8": 1, - "WGLEW_NV_float_buffer": 1, - "__WGLEW_NV_float_buffer": 2, - "WGL_NV_gpu_affinity": 2, - "WGL_ERROR_INCOMPATIBLE_AFFINITY_MASKS_NV": 1, - "D0": 1, - "WGL_ERROR_MISSING_AFFINITY_MASK_NV": 1, - "D1": 1, - "HGPUNV": 5, - "_GPU_DEVICE": 1, - "cb": 1, - "CHAR": 2, - "DeviceName": 1, - "DeviceString": 1, - "Flags": 1, - "RECT": 1, - "rcVirtualScreen": 1, - "GPU_DEVICE": 1, - "*PGPU_DEVICE": 1, - "PFNWGLCREATEAFFINITYDCNVPROC": 2, - "*phGpuList": 1, - "PFNWGLDELETEDCNVPROC": 2, - "PFNWGLENUMGPUDEVICESNVPROC": 2, - "hGpu": 1, - "iDeviceIndex": 1, - "PGPU_DEVICE": 1, - "lpGpuDevice": 1, - "PFNWGLENUMGPUSFROMAFFINITYDCNVPROC": 2, - "hAffinityDC": 1, - "iGpuIndex": 2, - "*hGpu": 1, - "PFNWGLENUMGPUSNVPROC": 2, - "*phGpu": 1, - "wglCreateAffinityDCNV": 1, - "__wglewCreateAffinityDCNV": 2, - "wglDeleteDCNV": 1, - "__wglewDeleteDCNV": 2, - "wglEnumGpuDevicesNV": 1, - "__wglewEnumGpuDevicesNV": 2, - "wglEnumGpusFromAffinityDCNV": 1, - "__wglewEnumGpusFromAffinityDCNV": 2, - "wglEnumGpusNV": 1, - "__wglewEnumGpusNV": 2, - "WGLEW_NV_gpu_affinity": 1, - "__WGLEW_NV_gpu_affinity": 2, - "WGL_NV_multisample_coverage": 2, - "WGL_COVERAGE_SAMPLES_NV": 1, - "WGL_COLOR_SAMPLES_NV": 1, - "B9": 1, - "WGLEW_NV_multisample_coverage": 1, - "__WGLEW_NV_multisample_coverage": 2, - "WGL_NV_present_video": 2, - "WGL_NUM_VIDEO_SLOTS_NV": 1, - "F0": 1, - "HVIDEOOUTPUTDEVICENV": 2, - "PFNWGLBINDVIDEODEVICENVPROC": 2, - "hDc": 6, - "uVideoSlot": 2, - "hVideoDevice": 4, - "PFNWGLENUMERATEVIDEODEVICESNVPROC": 2, - "HVIDEOOUTPUTDEVICENV*": 1, - "phDeviceList": 2, - "PFNWGLQUERYCURRENTCONTEXTNVPROC": 2, - "wglBindVideoDeviceNV": 1, - "__wglewBindVideoDeviceNV": 2, - "wglEnumerateVideoDevicesNV": 1, - "__wglewEnumerateVideoDevicesNV": 2, - "wglQueryCurrentContextNV": 1, - "__wglewQueryCurrentContextNV": 2, - "WGLEW_NV_present_video": 1, - "__WGLEW_NV_present_video": 2, - "WGL_NV_render_depth_texture": 2, - "WGL_BIND_TO_TEXTURE_DEPTH_NV": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_DEPTH_NV": 1, - "WGL_DEPTH_TEXTURE_FORMAT_NV": 1, - "WGL_TEXTURE_DEPTH_COMPONENT_NV": 1, - "WGL_DEPTH_COMPONENT_NV": 1, - "WGLEW_NV_render_depth_texture": 1, - "__WGLEW_NV_render_depth_texture": 2, - "WGL_NV_render_texture_rectangle": 2, - "WGL_BIND_TO_TEXTURE_RECTANGLE_RGB_NV": 1, - "WGL_BIND_TO_TEXTURE_RECTANGLE_RGBA_NV": 1, - "A1": 1, - "WGL_TEXTURE_RECTANGLE_NV": 1, - "WGLEW_NV_render_texture_rectangle": 1, - "__WGLEW_NV_render_texture_rectangle": 2, - "WGL_NV_swap_group": 2, - "PFNWGLBINDSWAPBARRIERNVPROC": 2, - "group": 3, - "barrier": 1, - "PFNWGLJOINSWAPGROUPNVPROC": 2, - "PFNWGLQUERYFRAMECOUNTNVPROC": 2, - "GLuint*": 3, - "PFNWGLQUERYMAXSWAPGROUPSNVPROC": 2, - "maxGroups": 1, - "*maxBarriers": 1, - "PFNWGLQUERYSWAPGROUPNVPROC": 2, - "*barrier": 1, - "PFNWGLRESETFRAMECOUNTNVPROC": 2, - "wglBindSwapBarrierNV": 1, - "__wglewBindSwapBarrierNV": 2, - "wglJoinSwapGroupNV": 1, - "__wglewJoinSwapGroupNV": 2, - "wglQueryFrameCountNV": 1, - "__wglewQueryFrameCountNV": 2, - "wglQueryMaxSwapGroupsNV": 1, - "__wglewQueryMaxSwapGroupsNV": 2, - "wglQuerySwapGroupNV": 1, - "__wglewQuerySwapGroupNV": 2, - "wglResetFrameCountNV": 1, - "__wglewResetFrameCountNV": 2, - "WGLEW_NV_swap_group": 1, - "__WGLEW_NV_swap_group": 2, - "WGL_NV_vertex_array_range": 2, - "PFNWGLALLOCATEMEMORYNVPROC": 2, - "GLfloat": 3, - "readFrequency": 1, - "writeFrequency": 1, - "priority": 1, - "PFNWGLFREEMEMORYNVPROC": 2, - "*pointer": 1, - "wglAllocateMemoryNV": 1, - "__wglewAllocateMemoryNV": 2, - "wglFreeMemoryNV": 1, - "__wglewFreeMemoryNV": 2, - "WGLEW_NV_vertex_array_range": 1, - "__WGLEW_NV_vertex_array_range": 2, - "WGL_NV_video_capture": 2, - "WGL_UNIQUE_ID_NV": 1, - "CE": 1, - "WGL_NUM_VIDEO_CAPTURE_SLOTS_NV": 1, - "CF": 1, - "HVIDEOINPUTDEVICENV": 5, - "PFNWGLBINDVIDEOCAPTUREDEVICENVPROC": 2, - "PFNWGLENUMERATEVIDEOCAPTUREDEVICESNVPROC": 2, - "HVIDEOINPUTDEVICENV*": 1, - "PFNWGLLOCKVIDEOCAPTUREDEVICENVPROC": 2, - "PFNWGLQUERYVIDEOCAPTUREDEVICENVPROC": 2, - "PFNWGLRELEASEVIDEOCAPTUREDEVICENVPROC": 2, - "wglBindVideoCaptureDeviceNV": 1, - "__wglewBindVideoCaptureDeviceNV": 2, - "wglEnumerateVideoCaptureDevicesNV": 1, - "__wglewEnumerateVideoCaptureDevicesNV": 2, - "wglLockVideoCaptureDeviceNV": 1, - "__wglewLockVideoCaptureDeviceNV": 2, - "wglQueryVideoCaptureDeviceNV": 1, - "__wglewQueryVideoCaptureDeviceNV": 2, - "wglReleaseVideoCaptureDeviceNV": 1, - "__wglewReleaseVideoCaptureDeviceNV": 2, - "WGLEW_NV_video_capture": 1, - "__WGLEW_NV_video_capture": 2, - "WGL_NV_video_output": 2, - "WGL_BIND_TO_VIDEO_RGB_NV": 1, - "WGL_BIND_TO_VIDEO_RGBA_NV": 1, - "C1": 1, - "WGL_BIND_TO_VIDEO_RGB_AND_DEPTH_NV": 1, - "C2": 1, - "WGL_VIDEO_OUT_COLOR_NV": 1, - "C3": 1, - "WGL_VIDEO_OUT_ALPHA_NV": 1, - "C4": 1, - "WGL_VIDEO_OUT_DEPTH_NV": 1, - "C5": 1, - "WGL_VIDEO_OUT_COLOR_AND_ALPHA_NV": 1, - "C6": 1, - "WGL_VIDEO_OUT_COLOR_AND_DEPTH_NV": 1, - "C7": 1, - "WGL_VIDEO_OUT_FRAME": 1, - "C8": 1, - "WGL_VIDEO_OUT_FIELD_1": 1, - "C9": 1, - "WGL_VIDEO_OUT_FIELD_2": 1, - "CA": 1, - "WGL_VIDEO_OUT_STACKED_FIELDS_1_2": 1, - "CB": 1, - "WGL_VIDEO_OUT_STACKED_FIELDS_2_1": 1, - "CC": 1, - "HPVIDEODEV": 4, - "PFNWGLBINDVIDEOIMAGENVPROC": 2, - "iVideoBuffer": 2, - "PFNWGLGETVIDEODEVICENVPROC": 2, - "numDevices": 1, - "HPVIDEODEV*": 1, - "PFNWGLGETVIDEOINFONVPROC": 2, - "hpVideoDevice": 1, - "long*": 2, - "pulCounterOutputPbuffer": 1, - "*pulCounterOutputVideo": 1, - "PFNWGLRELEASEVIDEODEVICENVPROC": 2, - "PFNWGLRELEASEVIDEOIMAGENVPROC": 2, - "PFNWGLSENDPBUFFERTOVIDEONVPROC": 2, - "iBufferType": 1, - "pulCounterPbuffer": 1, - "bBlock": 1, - "wglBindVideoImageNV": 1, - "__wglewBindVideoImageNV": 2, - "wglGetVideoDeviceNV": 1, - "__wglewGetVideoDeviceNV": 2, - "wglGetVideoInfoNV": 1, - "__wglewGetVideoInfoNV": 2, - "wglReleaseVideoDeviceNV": 1, - "__wglewReleaseVideoDeviceNV": 2, - "wglReleaseVideoImageNV": 1, - "__wglewReleaseVideoImageNV": 2, - "wglSendPbufferToVideoNV": 1, - "__wglewSendPbufferToVideoNV": 2, - "WGLEW_NV_video_output": 1, - "__WGLEW_NV_video_output": 2, - "WGL_OML_sync_control": 2, - "PFNWGLGETMSCRATEOMLPROC": 2, - "INT32*": 1, - "numerator": 1, - "INT32": 1, - "*denominator": 1, - "PFNWGLGETSYNCVALUESOMLPROC": 2, - "INT64*": 3, - "INT64": 18, - "*msc": 3, - "*sbc": 3, - "PFNWGLSWAPBUFFERSMSCOMLPROC": 2, - "target_msc": 3, - "divisor": 3, - "remainder": 3, - "PFNWGLSWAPLAYERBUFFERSMSCOMLPROC": 2, - "fuPlanes": 1, - "PFNWGLWAITFORMSCOMLPROC": 2, - "PFNWGLWAITFORSBCOMLPROC": 2, - "target_sbc": 1, - "wglGetMscRateOML": 1, - "__wglewGetMscRateOML": 2, - "wglGetSyncValuesOML": 1, - "__wglewGetSyncValuesOML": 2, - "wglSwapBuffersMscOML": 1, - "__wglewSwapBuffersMscOML": 2, - "wglSwapLayerBuffersMscOML": 1, - "__wglewSwapLayerBuffersMscOML": 2, - "wglWaitForMscOML": 1, - "__wglewWaitForMscOML": 2, - "wglWaitForSbcOML": 1, - "__wglewWaitForSbcOML": 2, - "WGLEW_OML_sync_control": 1, - "__WGLEW_OML_sync_control": 2, - "GLEW_MX": 4, - "WGLEW_EXPORT": 167, - "GLEWAPI": 6, - "WGLEWContextStruct": 2, - "WGLEWContext": 1, - "wglewContextInit": 2, - "WGLEWContext*": 2, - "wglewContextIsSupported": 2, - "wglewInit": 1, - "wglewGetContext": 4, - "wglewIsSupported": 2, - "wglewGetExtension": 1, - "yajl_status_to_string": 1, - "yajl_status": 4, - "statStr": 6, - "yajl_status_ok": 1, - "yajl_status_client_canceled": 1, - "yajl_status_insufficient_data": 1, - "yajl_status_error": 1, - "yajl_handle": 10, - "yajl_alloc": 1, - "yajl_callbacks": 1, - "callbacks": 3, - "yajl_parser_config": 1, - "config": 4, - "yajl_alloc_funcs": 3, - "afs": 8, - "allowComments": 4, - "validateUTF8": 3, - "hand": 28, - "afsBuffer": 3, - "realloc": 1, - "yajl_set_default_alloc_funcs": 1, - "YA_MALLOC": 1, - "yajl_handle_t": 1, - "alloc": 6, - "checkUTF8": 1, - "lexer": 4, - "yajl_lex_alloc": 1, - "bytesConsumed": 2, - "decodeBuf": 2, - "yajl_buf_alloc": 1, - "yajl_bs_init": 1, - "stateStack": 3, - "yajl_bs_push": 1, - "yajl_state_start": 1, - "yajl_reset_parser": 1, - "yajl_lex_realloc": 1, - "yajl_free": 1, - "yajl_bs_free": 1, - "yajl_buf_free": 1, - "yajl_lex_free": 1, - "YA_FREE": 2, - "yajl_parse": 2, - "jsonText": 4, - "jsonTextLen": 4, - "yajl_do_parse": 1, - "yajl_parse_complete": 1, - "yajl_get_error": 1, - "verbose": 2, - "yajl_render_error_string": 1, - "yajl_get_bytes_consumed": 1, - "yajl_free_error": 1 - }, - "C#": { - "@": 1, - "{": 5, - "ViewBag.Title": 1, - ";": 8, - "}": 5, - "@section": 1, - "featured": 1, - "
    ": 1, - "class=": 7, - "
    ": 1, - "
    ": 1, - "

    ": 1, - "@ViewBag.Title.": 1, - "

    ": 1, - "

    ": 1, - "@ViewBag.Message": 1, - "

    ": 1, - "
    ": 1, - "

    ": 1, - "To": 1, - "learn": 1, - "more": 4, - "about": 2, - "ASP.NET": 5, - "MVC": 4, - "visit": 2, - "": 5, - "href=": 5, - "title=": 2, - "http": 1, - "//asp.net/mvc": 1, - "": 5, - ".": 2, - "The": 1, - "page": 1, - "features": 3, - "": 1, - "videos": 1, - "tutorials": 1, - "and": 6, - "samples": 1, - "": 1, - "to": 4, - "help": 1, - "you": 4, - "get": 1, - "the": 5, - "most": 1, - "from": 1, - "MVC.": 1, - "If": 1, - "have": 1, - "any": 1, - "questions": 1, - "our": 1, - "forums": 1, - "

    ": 1, - "
    ": 1, - "
    ": 1, - "

    ": 1, - "We": 1, - "suggest": 1, - "following": 1, - "

    ": 1, - "
      ": 1, - "
    1. ": 3, - "
      ": 3, - "Getting": 1, - "Started": 1, - "
      ": 3, - "gives": 2, - "a": 3, - "powerful": 1, - "patterns": 1, - "-": 3, - "based": 1, - "way": 1, - "build": 1, - "dynamic": 1, - "websites": 1, - "that": 5, - "enables": 1, - "clean": 1, - "separation": 1, - "of": 2, - "concerns": 1, - "full": 1, - "control": 1, - "over": 1, - "markup": 1, - "for": 4, - "enjoyable": 1, - "agile": 1, - "development.": 1, - "includes": 1, - "many": 1, - "enable": 1, - "fast": 1, - "TDD": 1, - "friendly": 1, - "development": 1, - "creating": 1, - "sophisticated": 1, - "applications": 1, - "use": 1, - "latest": 1, - "web": 2, - "standards.": 1, - "Learn": 3, - "
    2. ": 3, - "Add": 1, - "NuGet": 2, - "packages": 1, - "jump": 1, - "start": 1, - "your": 2, - "coding": 1, - "makes": 1, - "it": 2, - "easy": 1, - "install": 1, - "update": 1, - "free": 1, - "libraries": 1, - "tools.": 1, - "Find": 1, - "Web": 1, - "Hosting": 1, - "You": 1, - "can": 1, - "easily": 1, - "find": 1, - "hosting": 1, - "company": 1, - "offers": 1, - "right": 1, - "mix": 1, - "price": 1, - "applications.": 1, - "
    ": 1, - "using": 5, - "System": 1, - "System.Collections.Generic": 1, - "System.Linq": 1, - "System.Text": 1, - "System.Threading.Tasks": 1, - "namespace": 1, - "LittleSampleApp": 1, - "///": 4, - "": 1, - "Just": 1, - "what": 1, - "says": 1, - "on": 1, - "tin.": 1, - "A": 1, - "little": 1, - "sample": 1, - "application": 1, - "Linguist": 1, - "try": 1, - "out.": 1, - "": 1, - "class": 1, - "Program": 1, - "static": 1, - "void": 1, - "Main": 1, - "(": 3, - "string": 1, - "[": 1, - "]": 1, - "args": 1, - ")": 3, - "Console.WriteLine": 2 - }, - "C++": { - "class": 40, - "Bar": 2, - "{": 726, - "protected": 4, - "char": 127, - "*name": 6, - ";": 2783, - "public": 33, - "void": 241, - "hello": 2, - "(": 3102, - ")": 3105, - "}": 726, - "//": 315, - "///": 843, - "mainpage": 1, - "C": 6, - "library": 14, - "for": 105, - "Broadcom": 3, - "BCM": 14, - "as": 28, - "used": 17, - "in": 165, - "Raspberry": 6, - "Pi": 5, - "This": 19, - "is": 102, - "a": 157, - "RPi": 17, - ".": 16, - "It": 7, - "provides": 3, - "access": 17, - "to": 254, - "GPIO": 87, - "and": 118, - "other": 17, - "IO": 2, - "functions": 19, - "on": 55, - "the": 541, - "chip": 9, - "allowing": 3, - "pins": 40, - "pin": 90, - "IDE": 4, - "plug": 3, - "board": 2, - "so": 2, - "you": 29, - "can": 21, - "control": 17, - "interface": 9, - "with": 33, - "various": 4, - "external": 3, - "devices.": 1, - "reading": 3, - "digital": 2, - "inputs": 2, - "setting": 2, - "outputs": 1, - "using": 11, - "SPI": 44, - "I2C": 29, - "accessing": 2, - "system": 13, - "timers.": 1, - "Pin": 65, - "event": 3, - "detection": 2, - "supported": 3, - "by": 53, - "polling": 1, - "interrupts": 1, - "are": 36, - "not": 29, - "+": 80, - "compatible": 1, - "installs": 1, - "header": 7, - "file": 31, - "non": 2, - "-": 438, - "shared": 2, - "any": 23, - "Linux": 2, - "based": 4, - "distro": 1, - "but": 5, - "clearly": 1, - "no": 7, - "use": 37, - "except": 2, - "or": 44, - "another": 1, - "The": 50, - "version": 38, - "of": 215, - "package": 1, - "that": 36, - "this": 57, - "documentation": 3, - "refers": 1, - "be": 35, - "downloaded": 1, - "from": 91, - "http": 11, - "//www.airspayce.com/mikem/bcm2835/bcm2835": 1, - "tar.gz": 1, - "You": 9, - "find": 2, - "latest": 2, - "at": 20, - "//www.airspayce.com/mikem/bcm2835": 1, - "Several": 1, - "example": 3, - "programs": 4, - "provided.": 1, - "Based": 1, - "data": 26, - "//elinux.org/RPi_Low": 1, - "level_peripherals": 1, - "//www.raspberrypi.org/wp": 1, - "content/uploads/2012/02/BCM2835": 1, - "ARM": 5, - "Peripherals.pdf": 1, - "//www.scribd.com/doc/101830961/GPIO": 2, - "Pads": 3, - "Control2": 2, - "also": 3, - "online": 1, - "help": 1, - "discussion": 1, - "//groups.google.com/group/bcm2835": 1, - "Please": 4, - "group": 23, - "all": 11, - "questions": 1, - "discussions": 1, - "topic.": 1, - "Do": 1, - "contact": 1, - "author": 3, - "directly": 2, - "unless": 1, - "it": 19, - "discuss": 1, - "commercial": 1, - "licensing.": 1, - "Tested": 1, - "debian6": 1, - "wheezy": 3, - "raspbian": 3, - "Occidentalisv01": 2, - "CAUTION": 1, - "has": 29, - "been": 14, - "observed": 1, - "when": 22, - "detect": 3, - "enables": 3, - "such": 4, - "bcm2835_gpio_len": 5, - "pulled": 1, - "LOW": 8, - "cause": 1, - "temporary": 1, - "hangs": 1, - "Occidentalisv01.": 1, - "Reason": 1, - "yet": 1, - "determined": 1, - "suspect": 1, - "an": 23, - "interrupt": 3, - "handler": 1, - "hitting": 1, - "hard": 1, - "loop": 2, - "those": 3, - "OSs.": 1, - "If": 11, - "must": 6, - "friends": 2, - "make": 6, - "sure": 6, - "disable": 2, - "bcm2835_gpio_cler_len": 1, - "after": 18, - "use.": 1, - "par": 9, - "Installation": 1, - "consists": 1, - "single": 2, - "which": 14, - "will": 15, - "installed": 1, - "usual": 3, - "places": 1, - "install": 3, - "code": 12, - "#": 1, - "download": 2, - "say": 1, - "bcm2835": 7, - "xx.tar.gz": 2, - "then": 15, - "tar": 1, - "zxvf": 1, - "cd": 1, - "xx": 2, - "./configure": 1, - "sudo": 2, - "check": 4, - "endcode": 2, - "Physical": 21, - "Addresses": 6, - "bcm2835_peri_read": 3, - "bcm2835_peri_write": 3, - "bcm2835_peri_set_bits": 2, - "low": 5, - "level": 10, - "peripheral": 14, - "register": 17, - "functions.": 4, - "They": 1, - "designed": 3, - "physical": 4, - "addresses": 4, - "described": 1, - "section": 6, - "BCM2835": 2, - "Peripherals": 1, - "manual.": 1, - "range": 3, - "FFFFFF": 1, - "peripherals.": 1, - "bus": 4, - "peripherals": 2, - "set": 18, - "up": 18, - "map": 3, - "onto": 1, - "address": 13, - "starting": 1, - "E000000.": 1, - "Thus": 1, - "advertised": 1, - "manual": 8, - "Ennnnnn": 1, - "available": 6, - "nnnnnn.": 1, - "base": 8, - "registers": 12, - "following": 2, - "externals": 1, - "bcm2835_gpio": 2, - "bcm2835_pwm": 2, - "bcm2835_clk": 2, - "bcm2835_pads": 2, - "bcm2835_spio0": 1, - "bcm2835_st": 1, - "bcm2835_bsc0": 1, - "bcm2835_bsc1": 1, - "Numbering": 1, - "numbering": 1, - "different": 5, - "inconsistent": 1, - "underlying": 4, - "numbering.": 1, - "//elinux.org/RPi_BCM2835_GPIOs": 1, - "some": 4, - "well": 1, - "power": 1, - "ground": 1, - "pins.": 1, - "Not": 4, - "header.": 1, - "Version": 40, - "P5": 6, - "connector": 1, - "V": 2, - "Gnd.": 1, - "passed": 4, - "number": 52, - "_not_": 1, - "number.": 1, - "There": 1, - "symbolic": 1, - "definitions": 3, - "each": 7, - "should": 10, - "convenience.": 1, - "See": 7, - "ref": 32, - "RPiGPIOPin.": 22, - "Pins": 2, - "bcm2835_spi_*": 1, - "allow": 5, - "SPI0": 17, - "send": 3, - "received": 3, - "Serial": 3, - "Peripheral": 6, - "Interface": 2, - "For": 6, - "more": 4, - "information": 3, - "about": 6, - "see": 14, - "//en.wikipedia.org/wiki/Serial_Peripheral_Interface_Bus": 1, - "When": 12, - "bcm2835_spi_begin": 3, - "called": 13, - "changes": 2, - "bahaviour": 1, - "their": 6, - "default": 14, - "behaviour": 1, - "order": 14, - "support": 4, - "SPI.": 1, - "While": 1, - "able": 2, - "state": 33, - "through": 4, - "bcm2835_spi_gpio_write": 1, - "bcm2835_spi_end": 4, - "revert": 1, - "configured": 1, - "controled": 1, - "bcm2835_gpio_*": 1, - "calls.": 1, - "P1": 56, - "MOSI": 8, - "MISO": 6, - "CLK": 6, - "CE0": 5, - "CE1": 6, - "bcm2835_i2c_*": 2, - "BSC": 10, - "generically": 1, - "referred": 1, - "I": 4, - "//en.wikipedia.org/wiki/I": 1, - "%": 7, - "C2": 1, - "B2C": 1, - "V2": 2, - "SDA": 3, - "SLC": 1, - "Real": 1, - "Time": 1, - "performance": 2, - "constraints": 2, - "user": 3, - "i.e.": 1, - "they": 2, - "run": 2, - "Such": 1, - "part": 1, - "kernel": 4, - "usually": 2, - "subject": 1, - "paging": 1, - "swapping": 2, - "while": 17, - "does": 4, - "things": 1, - "besides": 1, - "running": 1, - "your": 12, - "program.": 1, - "means": 8, - "expect": 2, - "get": 5, - "real": 4, - "time": 10, - "timing": 3, - "programs.": 1, - "In": 2, - "particular": 1, - "there": 4, - "guarantee": 1, - "bcm2835_delay": 5, - "bcm2835_delayMicroseconds": 6, - "return": 240, - "exactly": 2, - "requested.": 1, - "fact": 2, - "depending": 1, - "activity": 1, - "host": 1, - "etc": 1, - "might": 1, - "significantly": 1, - "longer": 1, - "delay": 9, - "times": 2, - "than": 6, - "one": 73, - "asked": 1, - "for.": 1, - "So": 1, - "please": 2, - "dont": 1, - "request.": 1, - "Arjan": 2, - "reports": 1, - "prevent": 4, - "fragment": 2, - "struct": 13, - "sched_param": 1, - "sp": 4, - "memset": 3, - "&": 203, - "sizeof": 15, - "sp.sched_priority": 1, - "sched_get_priority_max": 1, - "SCHED_FIFO": 2, - "sched_setscheduler": 1, - "mlockall": 1, - "MCL_CURRENT": 1, - "|": 40, - "MCL_FUTURE": 1, - "Open": 2, - "Source": 2, - "Licensing": 2, - "GPL": 2, - "appropriate": 7, - "option": 1, - "if": 359, - "want": 5, - "share": 2, - "source": 12, - "application": 2, - "everyone": 1, - "distribute": 1, - "give": 2, - "them": 1, - "right": 9, - "who": 1, - "uses": 4, - "it.": 3, - "wish": 2, - "software": 1, - "under": 2, - "contribute": 1, - "open": 6, - "community": 1, - "accordance": 1, - "distributed.": 1, - "//www.gnu.org/copyleft/gpl.html": 1, - "COPYING": 1, - "Acknowledgements": 1, - "Some": 1, - "inspired": 2, - "Dom": 1, - "Gert.": 1, - "Alan": 1, - "Barr.": 1, - "Revision": 1, - "History": 1, - "Initial": 1, - "release": 1, - "Minor": 1, - "bug": 1, - "fixes": 1, - "Added": 11, - "bcm2835_spi_transfern": 3, - "Fixed": 4, - "problem": 2, - "prevented": 1, - "being": 4, - "used.": 2, - "Reported": 5, - "David": 1, - "Robinson.": 1, - "bcm2835_close": 4, - "deinit": 1, - "library.": 3, - "Suggested": 1, - "sar": 1, - "Ortiz": 1, - "Document": 1, - "testing": 2, - "Functions": 1, - "bcm2835_gpio_ren": 3, - "bcm2835_gpio_fen": 3, - "bcm2835_gpio_hen": 3, - "bcm2835_gpio_aren": 3, - "bcm2835_gpio_afen": 3, - "now": 4, - "only": 6, - "specified.": 1, - "Other": 1, - "were": 1, - "already": 1, - "previously": 10, - "enabled": 4, - "stay": 1, - "enabled.": 1, - "bcm2835_gpio_clr_ren": 2, - "bcm2835_gpio_clr_fen": 2, - "bcm2835_gpio_clr_hen": 2, - "bcm2835_gpio_clr_len": 2, - "bcm2835_gpio_clr_aren": 2, - "bcm2835_gpio_clr_afen": 2, - "clear": 3, - "enable": 3, - "individual": 1, - "suggested": 3, - "Andreas": 1, - "Sundstrom.": 1, - "bcm2835_spi_transfernb": 2, - "buffers": 3, - "read": 21, - "write.": 1, - "Improvements": 3, - "barrier": 3, - "maddin.": 1, - "contributed": 1, - "mikew": 1, - "noticed": 1, - "was": 6, - "mallocing": 1, - "memory": 14, - "mmaps": 1, - "/dev/mem.": 1, - "ve": 4, - "removed": 1, - "mallocs": 1, - "frees": 1, - "found": 1, - "calling": 9, - "nanosleep": 7, - "takes": 1, - "least": 2, - "us.": 1, - "need": 6, - "link": 3, - "version.": 1, - "s": 26, - "doc": 1, - "Also": 1, - "added": 2, - "define": 2, - "passwrd": 1, - "value": 50, - "Gert": 1, - "says": 1, - "needed": 3, - "change": 3, - "pad": 4, - "settings.": 1, - "Changed": 1, - "names": 3, - "collisions": 1, - "wiringPi.": 1, - "Macros": 2, - "delayMicroseconds": 3, - "disabled": 2, - "defining": 1, - "BCM2835_NO_DELAY_COMPATIBILITY": 2, - "incorrect": 2, - "New": 6, - "mapping": 3, - "Hardware": 1, - "pointers": 2, - "initialisation": 2, - "externally": 1, - "bcm2835_spi0.": 1, - "Now": 4, - "compiles": 1, - "even": 2, - "CLOCK_MONOTONIC_RAW": 1, - "CLOCK_MONOTONIC": 3, - "instead.": 1, - "errors": 1, - "divider": 15, - "frequencies": 2, - "MHz": 14, - "clock.": 6, - "Ben": 1, - "Simpson.": 1, - "end": 23, - "examples": 1, - "Mark": 5, - "Wolfe.": 1, - "bcm2835_gpio_set_multi": 2, - "bcm2835_gpio_clr_multi": 2, - "bcm2835_gpio_write_multi": 4, - "mask": 20, - "once.": 1, - "Requested": 2, - "Sebastian": 2, - "Loncar.": 2, - "bcm2835_gpio_write_mask.": 1, - "Changes": 1, - "timer": 2, - "counter": 1, - "instead": 4, - "clock_gettime": 1, - "improved": 1, - "accuracy.": 1, - "No": 2, - "lrt": 1, - "now.": 1, - "Contributed": 1, - "van": 1, - "Vught.": 1, - "Removed": 1, - "inlines": 1, - "previous": 6, - "patch": 1, - "since": 3, - "don": 1, - "t": 15, - "seem": 1, - "work": 1, - "everywhere.": 1, - "olly.": 1, - "Patch": 2, - "Dootson": 2, - "close": 7, - "/dev/mem": 4, - "granted.": 1, - "susceptible": 1, - "bit": 19, - "overruns.": 1, - "courtesy": 1, - "Jeremy": 1, - "Mortis.": 1, - "definition": 3, - "BCM2835_GPFEN0": 2, - "broke": 1, - "ability": 1, - "falling": 4, - "edge": 8, - "events.": 1, - "Dootson.": 2, - "bcm2835_i2c_set_baudrate": 2, - "bcm2835_i2c_read_register_rs.": 1, - "bcm2835_i2c_read": 4, - "bcm2835_i2c_write": 4, - "fix": 1, - "ocasional": 1, - "reads": 2, - "completing.": 1, - "Patched": 1, - "p": 6, - "[": 293, - "atched": 1, - "his": 1, - "submitted": 1, - "high": 5, - "load": 1, - "processes.": 1, - "Updated": 1, - "distribution": 1, - "location": 6, - "details": 1, - "airspayce.com": 1, - "missing": 1, - "unmapmem": 1, - "pads": 7, - "leak.": 1, - "Hartmut": 1, - "Henkel.": 1, - "Mike": 1, - "McCauley": 1, - "mikem@airspayce.com": 1, - "DO": 1, - "NOT": 3, - "CONTACT": 1, - "THE": 2, - "AUTHOR": 1, - "DIRECTLY": 1, - "USE": 1, - "LISTS": 1, - "#ifndef": 29, - "BCM2835_H": 3, - "#define": 343, - "#include": 129, - "": 2, - "defgroup": 7, - "constants": 1, - "Constants": 1, - "passing": 1, - "values": 3, - "here": 1, - "@": 14, - "HIGH": 12, - "true": 49, - "volts": 2, - "pin.": 21, - "false": 48, - "Speed": 1, - "core": 1, - "clock": 21, - "core_clk": 1, - "BCM2835_CORE_CLK_HZ": 1, - "<": 255, - "Base": 17, - "Address": 10, - "BCM2835_PERI_BASE": 9, - "System": 10, - "Timer": 9, - "BCM2835_ST_BASE": 1, - "BCM2835_GPIO_PADS": 2, - "Clock/timer": 1, - "BCM2835_CLOCK_BASE": 1, - "BCM2835_GPIO_BASE": 6, - "BCM2835_SPI0_BASE": 1, - "BSC0": 2, - "BCM2835_BSC0_BASE": 1, - "PWM": 2, - "BCM2835_GPIO_PWM": 1, - "C000": 1, - "BSC1": 2, - "BCM2835_BSC1_BASE": 1, - "ST": 1, - "registers.": 10, - "Available": 8, - "bcm2835_init": 11, - "extern": 72, - "volatile": 13, - "uint32_t": 39, - "*bcm2835_st": 1, - "*bcm2835_gpio": 1, - "*bcm2835_pwm": 1, - "*bcm2835_clk": 1, - "PADS": 1, - "*bcm2835_pads": 1, - "*bcm2835_spi0": 1, - "*bcm2835_bsc0": 1, - "*bcm2835_bsc1": 1, - "Size": 2, - "page": 5, - "BCM2835_PAGE_SIZE": 1, - "*1024": 2, - "block": 7, - "BCM2835_BLOCK_SIZE": 1, - "offsets": 2, - "BCM2835_GPIO_BASE.": 1, - "Offsets": 1, - "into": 6, - "bytes": 29, - "per": 3, - "Register": 1, - "View": 1, - "BCM2835_GPFSEL0": 1, - "Function": 8, - "Select": 49, - "BCM2835_GPFSEL1": 1, - "BCM2835_GPFSEL2": 1, - "BCM2835_GPFSEL3": 1, - "c": 72, - "BCM2835_GPFSEL4": 1, - "BCM2835_GPFSEL5": 1, - "BCM2835_GPSET0": 1, - "Output": 6, - "Set": 2, - "BCM2835_GPSET1": 1, - "BCM2835_GPCLR0": 1, - "Clear": 18, - "BCM2835_GPCLR1": 1, - "BCM2835_GPLEV0": 1, - "Level": 2, - "BCM2835_GPLEV1": 1, - "BCM2835_GPEDS0": 1, - "Event": 11, - "Detect": 35, - "Status": 6, - "BCM2835_GPEDS1": 1, - "BCM2835_GPREN0": 1, - "Rising": 8, - "Edge": 16, - "Enable": 38, - "BCM2835_GPREN1": 1, - "Falling": 8, - "BCM2835_GPFEN1": 1, - "BCM2835_GPHEN0": 1, - "High": 4, - "BCM2835_GPHEN1": 1, - "BCM2835_GPLEN0": 1, - "Low": 5, - "BCM2835_GPLEN1": 1, - "BCM2835_GPAREN0": 1, - "Async.": 4, - "BCM2835_GPAREN1": 1, - "BCM2835_GPAFEN0": 1, - "BCM2835_GPAFEN1": 1, - "BCM2835_GPPUD": 1, - "Pull": 11, - "up/down": 10, - "BCM2835_GPPUDCLK0": 1, - "Clock": 11, - "BCM2835_GPPUDCLK1": 1, - "brief": 12, - "bcm2835PortFunction": 1, - "Port": 1, - "function": 19, - "select": 9, - "modes": 1, - "bcm2835_gpio_fsel": 2, - "typedef": 50, - "enum": 17, - "BCM2835_GPIO_FSEL_INPT": 1, - "b000": 1, - "Input": 2, - "BCM2835_GPIO_FSEL_OUTP": 1, - "b001": 1, - "BCM2835_GPIO_FSEL_ALT0": 1, - "b100": 1, - "Alternate": 6, - "BCM2835_GPIO_FSEL_ALT1": 1, - "b101": 1, - "BCM2835_GPIO_FSEL_ALT2": 1, - "b110": 1, - "BCM2835_GPIO_FSEL_ALT3": 1, - "b111": 2, - "BCM2835_GPIO_FSEL_ALT4": 1, - "b011": 1, - "BCM2835_GPIO_FSEL_ALT5": 1, - "b010": 1, - "BCM2835_GPIO_FSEL_MASK": 1, - "bits": 11, - "bcm2835FunctionSelect": 2, - "bcm2835PUDControl": 4, - "Pullup/Pulldown": 1, - "defines": 3, - "bcm2835_gpio_pud": 5, - "BCM2835_GPIO_PUD_OFF": 1, - "b00": 1, - "Off": 3, - "pull": 1, - "BCM2835_GPIO_PUD_DOWN": 1, - "b01": 1, - "Down": 1, - "BCM2835_GPIO_PUD_UP": 1, - "b10": 1, - "Up": 1, - "Pad": 11, - "BCM2835_PADS_GPIO_0_27": 1, - "BCM2835_PADS_GPIO_28_45": 1, - "BCM2835_PADS_GPIO_46_53": 1, - "Control": 6, - "masks": 1, - "BCM2835_PAD_PASSWRD": 1, - "A": 7, - "<<": 29, - "Password": 1, - "BCM2835_PAD_SLEW_RATE_UNLIMITED": 1, - "Slew": 1, - "rate": 3, - "unlimited": 1, - "BCM2835_PAD_HYSTERESIS_ENABLED": 1, - "Hysteresis": 1, - "BCM2835_PAD_DRIVE_2mA": 1, - "mA": 8, - "drive": 8, - "current": 26, - "BCM2835_PAD_DRIVE_4mA": 1, - "BCM2835_PAD_DRIVE_6mA": 1, - "BCM2835_PAD_DRIVE_8mA": 1, - "BCM2835_PAD_DRIVE_10mA": 1, - "BCM2835_PAD_DRIVE_12mA": 1, - "BCM2835_PAD_DRIVE_14mA": 1, - "BCM2835_PAD_DRIVE_16mA": 1, - "bcm2835PadGroup": 4, - "specification": 1, - "bcm2835_gpio_pad": 2, - "BCM2835_PAD_GROUP_GPIO_0_27": 1, - "BCM2835_PAD_GROUP_GPIO_28_45": 1, - "BCM2835_PAD_GROUP_GPIO_46_53": 1, - "Numbers": 1, - "Here": 1, - "we": 10, - "terms": 4, - "numbers.": 1, - "These": 6, - "requiring": 1, - "bin": 1, - "connected": 1, - "adopt": 1, - "alternate": 7, - "function.": 3, - "slightly": 1, - "pinouts": 1, - "these": 1, - "RPI_V2_*.": 1, - "At": 1, - "bootup": 1, - "UART0_TXD": 3, - "UART0_RXD": 3, - "ie": 3, - "alt0": 1, - "respectively": 1, - "dedicated": 1, - "cant": 1, - "controlled": 1, - "independently": 1, - "RPI_GPIO_P1_03": 6, - "RPI_GPIO_P1_05": 6, - "RPI_GPIO_P1_07": 1, - "RPI_GPIO_P1_08": 1, - "defaults": 4, - "alt": 4, - "RPI_GPIO_P1_10": 1, - "RPI_GPIO_P1_11": 1, - "RPI_GPIO_P1_12": 1, - "RPI_GPIO_P1_13": 1, - "RPI_GPIO_P1_15": 1, - "RPI_GPIO_P1_16": 1, - "RPI_GPIO_P1_18": 1, - "RPI_GPIO_P1_19": 1, - "RPI_GPIO_P1_21": 1, - "RPI_GPIO_P1_22": 1, - "RPI_GPIO_P1_23": 1, - "RPI_GPIO_P1_24": 1, - "RPI_GPIO_P1_26": 1, - "RPI_V2_GPIO_P1_03": 1, - "RPI_V2_GPIO_P1_05": 1, - "RPI_V2_GPIO_P1_07": 1, - "RPI_V2_GPIO_P1_08": 1, - "RPI_V2_GPIO_P1_10": 1, - "RPI_V2_GPIO_P1_11": 1, - "RPI_V2_GPIO_P1_12": 1, - "RPI_V2_GPIO_P1_13": 1, - "RPI_V2_GPIO_P1_15": 1, - "RPI_V2_GPIO_P1_16": 1, - "RPI_V2_GPIO_P1_18": 1, - "RPI_V2_GPIO_P1_19": 1, - "RPI_V2_GPIO_P1_21": 1, - "RPI_V2_GPIO_P1_22": 1, - "RPI_V2_GPIO_P1_23": 1, - "RPI_V2_GPIO_P1_24": 1, - "RPI_V2_GPIO_P1_26": 1, - "RPI_V2_GPIO_P5_03": 1, - "RPI_V2_GPIO_P5_04": 1, - "RPI_V2_GPIO_P5_05": 1, - "RPI_V2_GPIO_P5_06": 1, - "RPiGPIOPin": 1, - "BCM2835_SPI0_CS": 1, - "Master": 12, - "BCM2835_SPI0_FIFO": 1, - "TX": 5, - "RX": 7, - "FIFOs": 1, - "BCM2835_SPI0_CLK": 1, - "Divider": 2, - "BCM2835_SPI0_DLEN": 1, - "Data": 9, - "Length": 2, - "BCM2835_SPI0_LTOH": 1, - "LOSSI": 1, - "mode": 24, - "TOH": 1, - "BCM2835_SPI0_DC": 1, - "DMA": 3, - "DREQ": 1, - "Controls": 1, - "BCM2835_SPI0_CS_LEN_LONG": 1, - "Long": 1, - "word": 7, - "Lossi": 2, - "DMA_LEN": 1, - "BCM2835_SPI0_CS_DMA_LEN": 1, - "BCM2835_SPI0_CS_CSPOL2": 1, - "Chip": 9, - "Polarity": 5, - "BCM2835_SPI0_CS_CSPOL1": 1, - "BCM2835_SPI0_CS_CSPOL0": 1, - "BCM2835_SPI0_CS_RXF": 1, - "RXF": 2, - "FIFO": 25, - "Full": 1, - "BCM2835_SPI0_CS_RXR": 1, - "RXR": 3, - "needs": 4, - "Reading": 1, - "full": 9, - "BCM2835_SPI0_CS_TXD": 1, - "TXD": 2, - "accept": 2, - "BCM2835_SPI0_CS_RXD": 1, - "RXD": 2, - "contains": 2, - "BCM2835_SPI0_CS_DONE": 1, - "Done": 3, - "transfer": 8, - "BCM2835_SPI0_CS_TE_EN": 1, - "Unused": 2, - "BCM2835_SPI0_CS_LMONO": 1, - "BCM2835_SPI0_CS_LEN": 1, - "LEN": 1, - "LoSSI": 1, - "BCM2835_SPI0_CS_REN": 1, - "REN": 1, - "Read": 3, - "BCM2835_SPI0_CS_ADCS": 1, - "ADCS": 1, - "Automatically": 1, - "Deassert": 1, - "BCM2835_SPI0_CS_INTR": 1, - "INTR": 1, - "Interrupt": 5, - "BCM2835_SPI0_CS_INTD": 1, - "INTD": 1, - "BCM2835_SPI0_CS_DMAEN": 1, - "DMAEN": 1, - "BCM2835_SPI0_CS_TA": 1, - "Transfer": 3, - "Active": 2, - "BCM2835_SPI0_CS_CSPOL": 1, - "BCM2835_SPI0_CS_CLEAR": 1, - "BCM2835_SPI0_CS_CLEAR_RX": 1, - "BCM2835_SPI0_CS_CLEAR_TX": 1, - "BCM2835_SPI0_CS_CPOL": 1, - "BCM2835_SPI0_CS_CPHA": 1, - "Phase": 1, - "BCM2835_SPI0_CS_CS": 1, - "bcm2835SPIBitOrder": 3, - "Bit": 1, - "Specifies": 5, - "ordering": 4, - "bcm2835_spi_setBitOrder": 2, - "BCM2835_SPI_BIT_ORDER_LSBFIRST": 1, - "LSB": 1, - "First": 2, - "BCM2835_SPI_BIT_ORDER_MSBFIRST": 1, - "MSB": 1, - "Specify": 2, - "bcm2835_spi_setDataMode": 2, - "BCM2835_SPI_MODE0": 1, - "CPOL": 4, - "CPHA": 4, - "BCM2835_SPI_MODE1": 1, - "BCM2835_SPI_MODE2": 1, - "BCM2835_SPI_MODE3": 1, - "bcm2835SPIMode": 2, - "bcm2835SPIChipSelect": 3, - "BCM2835_SPI_CS0": 1, - "BCM2835_SPI_CS1": 1, - "BCM2835_SPI_CS2": 1, - "CS1": 1, - "CS2": 1, - "asserted": 3, - "BCM2835_SPI_CS_NONE": 1, - "CS": 5, - "yourself": 1, - "bcm2835SPIClockDivider": 3, - "generate": 2, - "Figures": 1, - "below": 1, - "period": 1, - "frequency.": 1, - "divided": 2, - "nominal": 2, - "reported": 2, - "contrary": 1, - "may": 9, - "shown": 1, - "have": 4, - "confirmed": 1, - "measurement": 2, - "BCM2835_SPI_CLOCK_DIVIDER_65536": 1, - "us": 12, - "kHz": 10, - "BCM2835_SPI_CLOCK_DIVIDER_32768": 1, - "BCM2835_SPI_CLOCK_DIVIDER_16384": 1, - "BCM2835_SPI_CLOCK_DIVIDER_8192": 1, - "/51757813kHz": 1, - "BCM2835_SPI_CLOCK_DIVIDER_4096": 1, - "BCM2835_SPI_CLOCK_DIVIDER_2048": 1, - "BCM2835_SPI_CLOCK_DIVIDER_1024": 1, - "BCM2835_SPI_CLOCK_DIVIDER_512": 1, - "BCM2835_SPI_CLOCK_DIVIDER_256": 1, - "BCM2835_SPI_CLOCK_DIVIDER_128": 1, - "ns": 9, - "BCM2835_SPI_CLOCK_DIVIDER_64": 1, - "BCM2835_SPI_CLOCK_DIVIDER_32": 1, - "BCM2835_SPI_CLOCK_DIVIDER_16": 1, - "BCM2835_SPI_CLOCK_DIVIDER_8": 1, - "BCM2835_SPI_CLOCK_DIVIDER_4": 1, - "BCM2835_SPI_CLOCK_DIVIDER_2": 1, - "fastest": 1, - "BCM2835_SPI_CLOCK_DIVIDER_1": 1, - "same": 3, - "/65536": 1, - "BCM2835_BSC_C": 1, - "BCM2835_BSC_S": 1, - "BCM2835_BSC_DLEN": 1, - "BCM2835_BSC_A": 1, - "Slave": 1, - "BCM2835_BSC_FIFO": 1, - "BCM2835_BSC_DIV": 1, - "BCM2835_BSC_DEL": 1, - "Delay": 4, - "BCM2835_BSC_CLKT": 1, - "Stretch": 2, - "Timeout": 2, - "BCM2835_BSC_C_I2CEN": 1, - "BCM2835_BSC_C_INTR": 1, - "BCM2835_BSC_C_INTT": 1, - "BCM2835_BSC_C_INTD": 1, - "DONE": 2, - "BCM2835_BSC_C_ST": 1, - "Start": 4, - "new": 13, - "BCM2835_BSC_C_CLEAR_1": 1, - "BCM2835_BSC_C_CLEAR_2": 1, - "BCM2835_BSC_C_READ": 1, - "BCM2835_BSC_S_CLKT": 1, - "stretch": 1, - "timeout": 5, - "BCM2835_BSC_S_ERR": 1, - "ACK": 1, - "error": 8, - "BCM2835_BSC_S_RXF": 1, - "BCM2835_BSC_S_TXE": 1, - "TXE": 1, - "BCM2835_BSC_S_RXD": 1, - "BCM2835_BSC_S_TXD": 1, - "BCM2835_BSC_S_RXR": 1, - "BCM2835_BSC_S_TXW": 1, - "TXW": 1, - "writing": 2, - "BCM2835_BSC_S_DONE": 1, - "BCM2835_BSC_S_TA": 1, - "BCM2835_BSC_FIFO_SIZE": 1, - "size": 13, - "bcm2835I2CClockDivider": 3, - "BCM2835_I2C_CLOCK_DIVIDER_2500": 1, - "BCM2835_I2C_CLOCK_DIVIDER_626": 1, - "BCM2835_I2C_CLOCK_DIVIDER_150": 1, - "reset": 1, - "BCM2835_I2C_CLOCK_DIVIDER_148": 1, - "bcm2835I2CReasonCodes": 5, - "reason": 4, - "codes": 1, - "BCM2835_I2C_REASON_OK": 1, - "Success": 1, - "BCM2835_I2C_REASON_ERROR_NACK": 1, - "Received": 4, - "NACK": 1, - "BCM2835_I2C_REASON_ERROR_CLKT": 1, - "BCM2835_I2C_REASON_ERROR_DATA": 1, - "sent": 1, - "/": 16, - "BCM2835_ST_CS": 1, - "Control/Status": 1, - "BCM2835_ST_CLO": 1, - "Counter": 4, - "Lower": 2, - "BCM2835_ST_CHI": 1, - "Upper": 1, - "BCM2835_PWM_CONTROL": 1, - "BCM2835_PWM_STATUS": 1, - "BCM2835_PWM0_RANGE": 1, - "BCM2835_PWM0_DATA": 1, - "BCM2835_PWM1_RANGE": 1, - "BCM2835_PWM1_DATA": 1, - "BCM2835_PWMCLK_CNTL": 1, - "BCM2835_PWMCLK_DIV": 1, - "BCM2835_PWM1_MS_MODE": 1, - "Run": 4, - "MS": 2, - "BCM2835_PWM1_USEFIFO": 1, - "BCM2835_PWM1_REVPOLAR": 1, - "Reverse": 2, - "polarity": 3, - "BCM2835_PWM1_OFFSTATE": 1, - "Ouput": 2, - "BCM2835_PWM1_REPEATFF": 1, - "Repeat": 2, - "last": 6, - "empty": 2, - "BCM2835_PWM1_SERIAL": 1, - "serial": 2, - "BCM2835_PWM1_ENABLE": 1, - "Channel": 2, - "BCM2835_PWM0_MS_MODE": 1, - "BCM2835_PWM0_USEFIFO": 1, - "BCM2835_PWM0_REVPOLAR": 1, - "BCM2835_PWM0_OFFSTATE": 1, - "BCM2835_PWM0_REPEATFF": 1, - "BCM2835_PWM0_SERIAL": 1, - "BCM2835_PWM0_ENABLE": 1, - "x": 86, - "#endif": 110, - "#ifdef": 19, - "__cplusplus": 12, - "init": 2, - "Library": 1, - "management": 1, - "intialise": 1, - "Initialise": 1, - "opening": 1, - "getting": 1, - "internal": 47, - "device": 7, - "call": 4, - "successfully": 1, - "before": 7, - "bcm2835_set_debug": 2, - "fails": 1, - "returning": 1, - "result": 8, - "crashes": 1, - "failures.": 1, - "Prints": 1, - "messages": 1, - "stderr": 1, - "case": 34, - "errors.": 1, - "successful": 2, - "else": 58, - "int": 218, - "Close": 1, - "deallocating": 1, - "allocated": 2, - "closing": 3, - "Sets": 24, - "debug": 6, - "prevents": 1, - "makes": 1, - "print": 5, - "out": 5, - "what": 2, - "would": 2, - "do": 13, - "rather": 2, - "causes": 1, - "normal": 1, - "operation.": 2, - "Call": 2, - "param": 72, - "]": 292, - "level.": 3, - "uint8_t": 43, - "lowlevel": 2, - "provide": 1, - "generally": 1, - "Reads": 5, - "done": 3, - "twice": 3, - "therefore": 6, - "always": 3, - "safe": 4, - "precautions": 3, - "correct": 3, - "paddr": 10, - "from.": 6, - "etc.": 5, - "sa": 30, - "uint32_t*": 7, - "without": 3, - "within": 4, - "occurred": 2, - "since.": 2, - "bcm2835_peri_read_nb": 1, - "Writes": 2, - "write": 8, - "bcm2835_peri_write_nb": 1, - "Alters": 1, - "regsiter.": 1, - "valu": 1, - "alters": 1, - "deines": 1, - "according": 1, - "value.": 2, - "All": 1, - "unaffected.": 1, - "Use": 8, - "alter": 2, - "subset": 1, - "register.": 3, - "masked": 2, - "mask.": 1, - "Bitmask": 1, - "altered": 1, - "gpio": 1, - "interface.": 3, - "input": 12, - "output": 21, - "state.": 1, - "given": 16, - "configures": 1, - "RPI_GPIO_P1_*": 21, - "Mode": 1, - "BCM2835_GPIO_FSEL_*": 1, - "specified": 27, - "HIGH.": 2, - "bcm2835_gpio_write": 3, - "bcm2835_gpio_set": 1, - "LOW.": 5, - "bcm2835_gpio_clr": 1, - "first": 13, - "Mask": 6, - "affect.": 4, - "eg": 5, - "returns": 4, - "either": 4, - "Works": 1, - "whether": 4, - "output.": 1, - "bcm2835_gpio_lev": 1, - "Status.": 7, - "Tests": 1, - "detected": 7, - "requested": 1, - "flag": 3, - "bcm2835_gpio_set_eds": 2, - "status": 1, - "th": 1, - "true.": 2, - "bcm2835_gpio_eds": 1, - "effect": 3, - "clearing": 1, - "flag.": 1, - "afer": 1, - "seeing": 1, - "rising": 3, - "sets": 8, - "GPRENn": 2, - "synchronous": 2, - "detection.": 2, - "signal": 4, - "sampled": 6, - "looking": 2, - "pattern": 2, - "signal.": 2, - "suppressing": 2, - "glitches.": 2, - "Disable": 6, - "Asynchronous": 6, - "incoming": 2, - "As": 2, - "edges": 2, - "very": 2, - "short": 5, - "duration": 2, - "detected.": 2, - "bcm2835_gpio_pudclk": 3, - "resistor": 1, - "However": 3, - "convenient": 2, - "bcm2835_gpio_set_pud": 4, - "pud": 4, - "desired": 7, - "mode.": 4, - "One": 3, - "BCM2835_GPIO_PUD_*": 2, - "Clocks": 3, - "earlier": 1, - "remove": 2, - "group.": 2, - "BCM2835_PAD_GROUP_GPIO_*": 2, - "BCM2835_PAD_*": 2, - "bcm2835_gpio_set_pad": 1, - "Delays": 3, - "milliseconds.": 1, - "Uses": 4, - "CPU": 5, - "until": 1, - "up.": 1, - "mercy": 2, - "From": 2, - "interval": 4, - "req": 2, - "exact": 2, - "multiple": 2, - "granularity": 2, - "rounded": 2, - "next": 9, - "multiple.": 2, - "Furthermore": 2, - "sleep": 2, - "completes": 2, - "still": 3, - "becomes": 2, - "free": 4, - "once": 5, - "again": 2, - "execute": 3, - "thread.": 2, - "millis": 2, - "milliseconds": 1, - "unsigned": 22, - "microseconds.": 2, - "combination": 2, - "busy": 2, - "wait": 2, - "timers": 1, - "less": 1, - "microseconds": 6, - "Timer.": 1, - "RaspberryPi": 1, - "Your": 1, - "mileage": 1, - "vary.": 1, - "micros": 5, - "uint64_t": 8, - "required": 2, - "bcm2835_gpio_write_mask": 1, - "clocking": 1, - "spi": 1, - "let": 2, - "device.": 2, - "operations.": 4, - "Forces": 2, - "ALT0": 2, - "funcitons": 1, - "complete": 3, - "End": 2, - "returned": 5, - "INPUT": 2, - "behaviour.": 2, - "NOTE": 1, - "effect.": 1, - "SPI0.": 1, - "Defaults": 1, - "BCM2835_SPI_BIT_ORDER_*": 1, - "speed.": 2, - "BCM2835_SPI_CLOCK_DIVIDER_*": 1, - "bcm2835_spi_setClockDivider": 1, - "uint16_t": 2, - "polariy": 1, - "phase": 1, - "BCM2835_SPI_MODE*": 1, - "bcm2835_spi_transfer": 5, - "made": 1, - "selected": 13, - "during": 4, - "transfer.": 4, - "cs": 4, - "activate": 1, - "slave.": 7, - "BCM2835_SPI_CS*": 1, - "bcm2835_spi_chipSelect": 4, - "occurs": 1, - "currently": 12, - "active.": 1, - "transfers": 1, - "happening": 1, - "complement": 1, - "inactive": 1, - "affect": 1, - "active": 3, - "Whether": 1, - "bcm2835_spi_setChipSelectPolarity": 1, - "Transfers": 6, - "byte": 6, - "Asserts": 3, - "simultaneously": 3, - "clocks": 2, - "MISO.": 2, - "Returns": 2, - "polled": 2, - "Peripherls": 2, - "len": 15, - "slave": 8, - "placed": 1, - "rbuf.": 1, - "rbuf": 3, - "long": 15, - "tbuf": 4, - "Buffer": 10, - "send.": 5, - "put": 1, - "buffer": 9, - "Number": 8, - "send/received": 2, - "char*": 24, - "bcm2835_spi_transfernb.": 1, - "replaces": 1, - "transmitted": 1, - "buffer.": 1, - "buf": 14, - "replace": 1, - "contents": 3, - "eh": 2, - "bcm2835_spi_writenb": 1, - "i2c": 1, - "Philips": 1, - "bus/interface": 1, - "January": 1, - "SCL": 2, - "bcm2835_i2c_end": 3, - "bcm2835_i2c_begin": 1, - "address.": 2, - "addr": 2, - "bcm2835_i2c_setSlaveAddress": 4, - "BCM2835_I2C_CLOCK_DIVIDER_*": 1, - "bcm2835_i2c_setClockDivider": 2, - "converting": 1, - "baudrate": 4, - "parameter": 1, - "equivalent": 1, - "divider.": 1, - "standard": 2, - "khz": 1, - "corresponds": 1, - "its": 1, - "driver.": 1, - "Of": 1, - "course": 2, - "nothing": 1, - "driver": 1, - "const": 172, - "*": 183, - "receive.": 2, - "received.": 2, - "Allows": 2, - "slaves": 1, - "require": 3, - "repeated": 1, - "start": 12, - "prior": 1, - "stop": 1, - "set.": 1, - "popular": 1, - "MPL3115A2": 1, - "pressure": 1, - "temperature": 1, - "sensor.": 1, - "Note": 1, - "combined": 1, - "better": 1, - "choice.": 1, - "Will": 1, - "regaddr": 2, - "containing": 2, - "bcm2835_i2c_read_register_rs": 1, - "st": 1, - "delays": 1, - "Counter.": 1, - "bcm2835_st_read": 1, - "offset.": 1, - "offset_micros": 2, - "Offset": 1, - "bcm2835_st_delay": 1, - "@example": 5, - "blink.c": 1, - "Blinks": 1, - "off": 1, - "input.c": 1, - "event.c": 1, - "Shows": 3, - "how": 3, - "spi.c": 1, - "spin.c": 1, - "#pragma": 3, - "": 4, - "": 4, - "": 2, - "namespace": 38, - "std": 53, - "DEFAULT_DELIMITER": 1, - "CsvStreamer": 5, - "private": 16, - "ofstream": 1, - "File": 1, - "stream": 6, - "vector": 16, - "row_buffer": 1, - "stores": 3, - "row": 12, - "flushed/written": 1, - "fields": 4, - "columns": 2, - "rows": 3, - "records": 2, - "including": 2, - "delimiter": 2, - "Delimiter": 1, - "character": 10, - "comma": 2, - "string": 24, - "sanitize": 1, - "ready": 1, - "Empty": 1, - "CSV": 4, - "streamer...": 1, - "Same": 1, - "...": 1, - "Opens": 3, - "path/name": 3, - "Ensures": 1, - "closed": 1, - "saved": 1, - "delimiting": 1, - "add_field": 1, - "line": 11, - "adds": 1, - "field": 5, - "save_fields": 1, - "save": 1, - "writes": 2, - "append": 8, - "Appends": 5, - "quoted": 1, - "leading/trailing": 1, - "spaces": 3, - "trimmed": 1, - "bool": 111, - "Like": 1, - "specify": 1, - "trim": 2, - "keep": 1, - "float": 74, - "double": 25, - "writeln": 1, - "Flushes": 1, - "Saves": 1, - "closes": 1, - "field_count": 1, - "Gets": 2, - "row_count": 1, - "": 1, - "": 1, - "": 2, - "static": 263, - "Env": 13, - "*env_instance": 1, - "NULL": 109, - "*Env": 1, - "instance": 4, - "env_instance": 3, - "QObject": 2, - "QCoreApplication": 1, - "parse": 3, - "**envp": 1, - "**env": 1, - "**": 2, - "QString": 20, - "envvar": 2, - "name": 25, - "indexOfEquals": 5, - "env": 3, - "envp": 4, - "*env": 1, - "envvar.indexOf": 1, - "continue": 2, - "envvar.left": 1, - "envvar.mid": 1, - "m_map.insert": 1, - "QVariantMap": 3, - "asVariantMap": 2, - "m_map": 2, - "ENV_H": 3, - "": 1, - "Q_OBJECT": 1, - "*instance": 1, - "BOOST_ASIO_DETAIL_IMPL_EPOLL_REACTOR_IPP": 3, - "#if": 63, - "defined": 49, - "_MSC_VER": 7, - "&&": 29, - "": 1, - "BOOST_ASIO_HAS_EPOLL": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "BOOST_ASIO_HAS_TIMERFD": 19, - "": 1, - "boost": 18, - "asio": 14, - "detail": 5, - "epoll_reactor": 40, - "io_service": 6, - "service_base": 1, - "": 1, - "io_service_": 1, - "use_service": 1, - "": 1, - "mutex_": 13, - "interrupter_": 5, - "epoll_fd_": 20, - "do_epoll_create": 3, - "timer_fd_": 21, - "do_timerfd_create": 3, - "shutdown_": 10, - "epoll_event": 10, - "ev": 21, - "ev.events": 13, - "EPOLLIN": 8, - "EPOLLERR": 8, - "EPOLLET": 5, - "ev.data.ptr": 10, - "epoll_ctl": 12, - "EPOLL_CTL_ADD": 7, - "interrupter_.read_descriptor": 3, - "interrupter_.interrupt": 2, - "shutdown_service": 1, - "mutex": 16, - "scoped_lock": 16, - "lock": 5, - "lock.unlock": 1, - "op_queue": 6, - "": 6, - "ops": 10, - "descriptor_state*": 6, - "registered_descriptors_.first": 2, - "i": 106, - "max_ops": 6, - "ops.push": 5, - "op_queue_": 12, - "registered_descriptors_.free": 2, - "timer_queues_.get_all_timers": 1, - "io_service_.abandon_operations": 1, - "fork_service": 1, - "fork_event": 1, - "fork_ev": 2, - "fork_child": 1, - "interrupter_.recreate": 1, - "update_timeout": 2, - "descriptors_lock": 3, - "registered_descriptors_mutex_": 3, - "next_": 3, - "registered_events_": 8, - "descriptor_": 5, - "error_code": 4, - "ec": 6, - "errno": 10, - "get_system_category": 3, - "throw_error": 2, - "init_task": 1, - "io_service_.init_task": 1, - "register_descriptor": 1, - "socket_type": 7, - "descriptor": 15, - "per_descriptor_data": 8, - "descriptor_data": 60, - "allocate_descriptor_state": 3, - "descriptor_lock": 7, - "reactor_": 7, - "EPOLLHUP": 3, - "EPOLLPRI": 3, - "register_internal_descriptor": 1, - "op_type": 8, - "reactor_op*": 5, - "op": 28, - ".push": 2, - "move_descriptor": 1, - "target_descriptor_data": 2, - "source_descriptor_data": 3, - "start_op": 1, - "is_continuation": 5, - "allow_speculative": 2, - "ec_": 4, - "bad_descriptor": 1, - "post_immediate_completion": 2, - ".empty": 5, - "read_op": 1, - "||": 19, - "except_op": 1, - "perform": 2, - "descriptor_lock.unlock": 4, - "io_service_.post_immediate_completion": 2, - "write_op": 2, - "EPOLLOUT": 4, - "EPOLL_CTL_MOD": 3, - "io_service_.work_started": 2, - "cancel_ops": 1, - ".front": 3, - "operation_aborted": 2, - ".pop": 3, - "io_service_.post_deferred_completions": 3, - "deregister_descriptor": 1, - "EPOLL_CTL_DEL": 2, - "free_descriptor_state": 3, - "deregister_internal_descriptor": 1, - "get_timeout": 5, - "events": 8, - "num_events": 2, - "epoll_wait": 1, - "check_timers": 6, - "#else": 35, - "void*": 2, - "ptr": 6, - ".data.ptr": 1, - "static_cast": 14, - "": 2, - "set_ready_events": 1, - ".events": 1, - "common_lock": 1, - "timer_queues_.get_ready_timers": 1, - "itimerspec": 5, - "new_timeout": 6, - "old_timeout": 4, - "flags": 4, - "timerfd_settime": 2, - "EPOLL_CLOEXEC": 4, - "fd": 15, - "epoll_create1": 1, - "EINVAL": 4, - "ENOSYS": 1, - "epoll_create": 1, - "epoll_size": 1, - "fcntl": 2, - "F_SETFD": 2, - "FD_CLOEXEC": 2, - "timerfd_create": 2, - "TFD_CLOEXEC": 1, - "registered_descriptors_.alloc": 1, - "do_add_timer_queue": 1, - "timer_queue_base": 2, - "queue": 4, - "timer_queues_.insert": 1, - "do_remove_timer_queue": 1, - "timer_queues_.erase": 1, - "timer_queues_.wait_duration_msec": 1, - "ts": 1, - "ts.it_interval.tv_sec": 1, - "ts.it_interval.tv_nsec": 1, - "usec": 5, - "timer_queues_.wait_duration_usec": 1, - "ts.it_value.tv_sec": 1, - "ts.it_value.tv_nsec": 1, - "TFD_TIMER_ABSTIME": 1, - "perform_io_cleanup_on_block_exit": 4, - "explicit": 5, - "epoll_reactor*": 2, - "r": 38, - "first_op_": 3, - "ops_.empty": 1, - "ops_": 2, - "operation*": 4, - "descriptor_state": 5, - "operation": 2, - "do_complete": 2, - "perform_io": 2, - "mutex_.lock": 1, - "io_cleanup": 1, - "adopt_lock": 1, - "j": 10, - "io_cleanup.ops_.push": 1, - "break": 35, - "io_cleanup.first_op_": 2, - "io_cleanup.ops_.front": 1, - "io_cleanup.ops_.pop": 1, - "io_service_impl*": 1, - "owner": 3, - "size_t": 6, - "bytes_transferred": 2, - "": 1, - "": 1, - "Field": 2, - "Free": 1, - "Black": 1, - "White": 1, - "Illegal": 1, - "Player": 1, - "GDSDBREADER_H": 3, - "": 1, - "GDS_DIR": 1, - "LEVEL_ONE": 1, - "LEVEL_TWO": 1, - "LEVEL_THREE": 1, - "dbDataStructure": 2, - "label": 1, - "quint32": 3, - "depth": 1, - "userIndex": 1, - "QByteArray": 1, - "COMPRESSED": 1, - "optimize": 1, - "ram": 1, - "disk": 2, - "space": 2, - "decompressed": 1, - "quint64": 1, - "uniqueID": 1, - "QVector": 2, - "": 1, - "nextItems": 1, - "": 1, - "nextItemsIndices": 1, - "dbDataStructure*": 1, - "father": 1, - "fatherIndex": 1, - "noFatherRoot": 1, - "Used": 2, - "tell": 1, - "node": 1, - "root": 1, - "hasn": 1, - "argument": 1, - "list": 3, - "operator": 10, - "overload.": 1, - "friend": 10, - "myclass.label": 2, - "myclass.depth": 2, - "myclass.userIndex": 2, - "qCompress": 2, - "myclass.data": 4, - "myclass.uniqueID": 2, - "myclass.nextItemsIndices": 2, - "myclass.fatherIndex": 2, - "myclass.noFatherRoot": 2, - "myclass.fileName": 2, - "myclass.firstLineData": 4, - "myclass.linesNumbers": 2, - "QDataStream": 2, - "myclass": 1, - "//Don": 1, - "qUncompress": 2, - "": 2, - "main": 2, - "cout": 2, - "endl": 1, - "": 1, - "": 1, - "": 1, - "EC_KEY_regenerate_key": 1, - "EC_KEY": 3, - "*eckey": 2, - "BIGNUM": 9, - "*priv_key": 1, - "ok": 3, - "BN_CTX": 2, - "*ctx": 2, - "EC_POINT": 4, - "*pub_key": 1, - "eckey": 7, - "EC_GROUP": 2, - "*group": 2, - "EC_KEY_get0_group": 2, - "ctx": 26, - "BN_CTX_new": 2, - "goto": 156, - "err": 26, - "pub_key": 6, - "EC_POINT_new": 4, - "EC_POINT_mul": 3, - "priv_key": 2, - "EC_KEY_set_private_key": 1, - "EC_KEY_set_public_key": 2, - "EC_POINT_free": 4, - "BN_CTX_free": 2, - "ECDSA_SIG_recover_key_GFp": 3, - "ECDSA_SIG": 3, - "*ecsig": 1, - "*msg": 2, - "msglen": 2, - "recid": 3, - "ret": 24, - "*x": 1, - "*e": 1, - "*order": 1, - "*sor": 1, - "*eor": 1, - "*field": 1, - "*R": 1, - "*O": 1, - "*Q": 1, - "*rr": 1, - "*zero": 1, - "n": 28, - "BN_CTX_start": 1, - "BN_CTX_get": 8, - "EC_GROUP_get_order": 1, - "BN_copy": 1, - "BN_mul_word": 1, - "BN_add": 1, - "ecsig": 3, - "EC_GROUP_get_curve_GFp": 1, - "BN_cmp": 1, - "R": 6, - "EC_POINT_set_compressed_coordinates_GFp": 1, - "O": 5, - "EC_POINT_is_at_infinity": 1, - "Q": 5, - "EC_GROUP_get_degree": 1, - "e": 15, - "BN_bin2bn": 3, - "msg": 1, - "*msglen": 1, - "BN_rshift": 1, - "zero": 5, - "BN_zero": 1, - "BN_mod_sub": 1, - "rr": 4, - "BN_mod_inverse": 1, - "sor": 3, - "BN_mod_mul": 2, - "eor": 3, - "BN_CTX_end": 1, - "CKey": 26, - "SetCompressedPubKey": 4, - "EC_KEY_set_conv_form": 1, - "pkey": 14, - "POINT_CONVERSION_COMPRESSED": 1, - "fCompressedPubKey": 5, - "Reset": 5, - "EC_KEY_new_by_curve_name": 2, - "NID_secp256k1": 2, - "throw": 4, - "key_error": 6, - "fSet": 7, - "b": 57, - "EC_KEY_dup": 1, - "b.pkey": 2, - "b.fSet": 2, - "EC_KEY_copy": 1, - "hash": 20, - "vchSig": 18, - "nSize": 2, - "vchSig.clear": 2, - "vchSig.resize": 2, - "Shrink": 1, - "fit": 1, - "actual": 1, - "SignCompact": 2, - "uint256": 10, - "": 19, - "fOk": 3, - "*sig": 2, - "ECDSA_do_sign": 1, - "sig": 11, - "nBitsR": 3, - "BN_num_bits": 2, - "nBitsS": 3, - "nRecId": 4, - "<4;>": 1, - "keyRec": 5, - "1": 4, - "GetPubKey": 5, - "BN_bn2bin": 2, - "/8": 2, - "ECDSA_SIG_free": 2, - "SetCompactSignature": 2, - "vchSig.size": 2, - "nV": 6, - "<27>": 1, - "ECDSA_SIG_new": 1, - "EC_KEY_free": 1, - "Verify": 2, - "ECDSA_verify": 1, - "VerifyCompact": 2, - "key": 23, - "key.SetCompactSignature": 1, - "key.GetPubKey": 1, - "IsValid": 4, - "fCompr": 3, - "CSecret": 4, - "secret": 2, - "GetSecret": 2, - "key2": 1, - "key2.SetSecret": 1, - "key2.GetPubKey": 1, - "BITCOIN_KEY_H": 2, - "": 1, - "": 1, - "runtime_error": 2, - "str": 2, - "CKeyID": 5, - "uint160": 8, - "CScriptID": 3, - "CPubKey": 11, - "vchPubKey": 6, - "vchPubKeyIn": 2, - "a.vchPubKey": 3, - "b.vchPubKey": 3, - "IMPLEMENT_SERIALIZE": 1, - "READWRITE": 1, - "GetID": 1, - "Hash160": 1, - "GetHash": 1, - "Hash": 1, - "vchPubKey.begin": 1, - "vchPubKey.end": 1, - "vchPubKey.size": 3, - "IsCompressed": 2, - "Raw": 1, - "secure_allocator": 2, - "CPrivKey": 3, - "EC_KEY*": 1, - "IsNull": 1, - "MakeNewKey": 1, - "fCompressed": 3, - "SetPrivKey": 1, - "vchPrivKey": 1, - "SetSecret": 1, - "vchSecret": 1, - "GetPrivKey": 1, - "SetPubKey": 1, - "Sign": 2, - "LIBCANIH": 2, - "": 1, - "": 1, - "int64": 1, - "//#define": 1, - "DEBUG": 5, - "dout": 2, - "cerr": 1, - "libcanister": 2, - "//the": 8, - "canmem": 22, - "object": 3, - "generic": 1, - "container": 2, - "commonly": 1, - "//throughout": 1, - "canister": 14, - "framework": 1, - "hold": 1, - "uncertain": 1, - "//length": 1, - "contain": 1, - "null": 3, - "bytes.": 1, - "raw": 2, - "absolute": 1, - "length": 10, - "//creates": 3, - "unallocated": 1, - "allocsize": 1, - "blank": 1, - "strdata": 1, - "//automates": 1, - "creation": 1, - "limited": 2, - "canmems": 1, - "//cleans": 1, - "zeromem": 1, - "//overwrites": 2, - "fragmem": 1, - "notation": 1, - "countlen": 1, - "//counts": 1, - "strings": 1, - "//removes": 1, - "nulls": 1, - "//returns": 2, - "singleton": 2, - "//contains": 2, - "caninfo": 2, - "path": 8, - "//physical": 1, - "internalname": 1, - "//a": 1, - "numfiles": 1, - "files": 6, - "//necessary": 1, - "type": 7, - "canfile": 7, - "//this": 1, - "holds": 2, - "//canister": 1, - "canister*": 1, - "parent": 1, - "//internal": 1, - "id": 4, - "//use": 1, - "own.": 1, - "newline": 2, - "delimited": 2, - "container.": 1, - "TOC": 1, - "info": 2, - "general": 1, - "canfiles": 1, - "recommended": 1, - "modify": 1, - "//these": 1, - "enforced.": 1, - "canfile*": 1, - "readonly": 3, - "//if": 1, - "routines": 1, - "anything": 1, - "//maximum": 1, - "//time": 1, - "whatever": 1, - "suits": 1, - "application.": 1, - "cachemax": 2, - "cachecnt": 1, - "//number": 1, - "cache": 2, - "modified": 3, - "//both": 1, - "initialize": 1, - "fspath": 3, - "//destroys": 1, - "flushing": 1, - "modded": 1, - "//open": 1, - "//does": 1, - "exist": 2, - "//close": 1, - "flush": 1, - "clean": 2, - "//deletes": 1, - "inside": 1, - "delFile": 1, - "//pulls": 1, - "getFile": 1, - "otherwise": 1, - "overwrites": 1, - "succeeded": 2, - "writeFile": 2, - "//get": 1, - "//list": 1, - "paths": 1, - "getTOC": 1, - "//brings": 1, - "back": 1, - "limit": 1, - "//important": 1, - "sCFID": 2, - "CFID": 2, - "avoid": 1, - "uncaching": 1, - "//really": 1, - "just": 2, - "internally": 1, - "harm.": 1, - "cacheclean": 1, - "dFlush": 1, - "Q_OS_LINUX": 2, - "": 1, - "QT_VERSION": 1, - "QT_VERSION_CHECK": 1, - "#error": 9, - "Something": 1, - "wrong": 1, - "setup.": 1, - "report": 3, - "mailing": 1, - "argc": 2, - "char**": 2, - "argv": 2, - "google_breakpad": 1, - "ExceptionHandler": 1, - "Utils": 4, - "exceptionHandler": 2, - "qInstallMsgHandler": 1, - "messageHandler": 2, - "QApplication": 1, - "app": 1, - "STATIC_BUILD": 1, - "Q_INIT_RESOURCE": 2, - "WebKit": 1, - "InspectorBackendStub": 1, - "app.setWindowIcon": 1, - "QIcon": 1, - "app.setApplicationName": 1, - "app.setOrganizationName": 1, - "app.setOrganizationDomain": 1, - "app.setApplicationVersion": 1, - "PHANTOMJS_VERSION_STRING": 1, - "Phantom": 1, - "phantom": 1, - "phantom.execute": 1, - "app.exec": 1, - "phantom.returnValue": 1, - "__OG_MATH_INL__": 2, - "og": 1, - "OG_INLINE": 41, - "Math": 41, - "Abs": 1, - "MASK_SIGNED": 2, - "y": 16, - "Fabs": 1, - "f": 104, - "uInt": 1, - "*pf": 1, - "reinterpret_cast": 8, - "": 1, - "pf": 1, - "fabsf": 1, - "Round": 1, - "floorf": 2, - "Floor": 1, - "Ceil": 1, - "ceilf": 1, - "Ftoi": 1, - "@todo": 1, - "note": 1, - "sse": 1, - "cvttss2si": 2, - "OG_ASM_MSVC": 4, - "OG_FTOI_USE_SSE": 2, - "SysInfo": 2, - "cpu.general.SSE": 2, - "__asm": 8, - "eax": 5, - "mov": 6, - "fld": 4, - "fistp": 3, - "//__asm": 3, - "O_o": 3, - "#elif": 7, - "OG_ASM_GNU": 4, - "__asm__": 4, - "__volatile__": 4, - "cast": 7, - "why": 3, - "did": 3, - "": 3, - "FtoiFast": 2, - "Ftol": 1, - "": 1, - "Fmod": 1, - "numerator": 2, - "denominator": 2, - "fmodf": 1, - "Modf": 2, - "modff": 2, - "Sqrt": 2, - "sqrtf": 2, - "InvSqrt": 1, - "OG_ASSERT": 4, - "RSqrt": 1, - "g": 2, - "*reinterpret_cast": 3, - "guess": 1, - "f375a86": 1, - "": 1, - "Newtons": 1, - "calculation": 1, - "Log": 1, - "logf": 3, - "Log2": 1, - "INV_LN_2": 1, - "Log10": 1, - "INV_LN_10": 1, - "Pow": 1, - "exp": 2, - "powf": 1, - "Exp": 1, - "expf": 1, - "IsPowerOfTwo": 4, - "faster": 3, - "two": 2, - "known": 1, - "methods": 2, - "moved": 1, - "beginning": 1, - "HigherPowerOfTwo": 4, - "LowerPowerOfTwo": 2, - "FloorPowerOfTwo": 1, - "CeilPowerOfTwo": 1, - "ClosestPowerOfTwo": 1, - "Digits": 1, - "digits": 6, - "step": 3, - "Sin": 2, - "sinf": 1, - "ASin": 1, - "<=>": 2, - "0f": 2, - "HALF_PI": 2, - "asinf": 1, - "Cos": 2, - "cosf": 1, - "ACos": 1, - "PI": 1, - "acosf": 1, - "Tan": 1, - "tanf": 1, - "ATan": 2, - "atanf": 1, - "f1": 2, - "f2": 2, - "atan2f": 1, - "SinCos": 1, - "sometimes": 1, - "assembler": 1, - "waaayy": 1, - "_asm": 1, - "fsincos": 1, - "ecx": 2, - "edx": 2, - "fstp": 2, - "dword": 2, - "asm": 1, - "Deg2Rad": 1, - "DEG_TO_RAD": 1, - "Rad2Deg": 1, - "RAD_TO_DEG": 1, - "Square": 1, - "v": 10, - "Cube": 1, - "Sec2Ms": 1, - "sec": 2, - "Ms2Sec": 1, - "ms": 2, - "NINJA_METRICS_H_": 3, - "int64_t.": 1, - "Metrics": 2, - "module": 1, - "dumps": 1, - "stats": 2, - "actions.": 1, - "To": 1, - "METRIC_RECORD": 4, - "below.": 1, - "metrics": 2, - "hit": 1, - "path.": 2, - "count": 1, - "Total": 1, - "spent": 1, - "int64_t": 3, - "sum": 1, - "scoped": 1, - "recording": 1, - "metric": 2, - "across": 1, - "body": 1, - "macro.": 1, - "ScopedMetric": 4, - "Metric*": 4, - "metric_": 1, - "Timestamp": 1, - "started.": 1, - "Value": 24, - "platform": 2, - "dependent.": 1, - "start_": 1, - "prints": 1, - "report.": 1, - "NewMetric": 2, - "Print": 2, - "summary": 1, - "stdout.": 1, - "Report": 1, - "": 1, - "metrics_": 1, - "Get": 1, - "relative": 2, - "epoch.": 1, - "Epoch": 1, - "varies": 1, - "between": 1, - "platforms": 1, - "useful": 1, - "measuring": 1, - "elapsed": 1, - "time.": 1, - "GetTimeMillis": 1, - "simple": 1, - "stopwatch": 1, - "seconds": 1, - "Restart": 3, - "called.": 1, - "Stopwatch": 2, - "started_": 4, - "Seconds": 1, - "call.": 1, - "Elapsed": 1, - "": 1, - "primary": 1, - "metrics.": 1, - "top": 1, - "recorded": 1, - "metrics_h_metric": 2, - "g_metrics": 3, - "metrics_h_scoped": 1, - "Metrics*": 1, - "INTERNAL_SUPPRESS_PROTOBUF_FIELD_DEPRECATION": 1, - "": 1, - "": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "persons": 4, - "google": 72, - "protobuf": 72, - "Descriptor*": 3, - "Person_descriptor_": 6, - "GeneratedMessageReflection*": 1, - "Person_reflection_": 4, - "protobuf_AssignDesc_protocol_2dbuffer_2eproto": 4, - "protobuf_AddDesc_protocol_2dbuffer_2eproto": 6, - "FileDescriptor*": 1, - "DescriptorPool": 3, - "generated_pool": 2, - "FindFileByName": 1, - "GOOGLE_CHECK": 1, - "message_type": 1, - "Person_offsets_": 2, - "GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET": 3, - "Person": 65, - "name_": 30, - "GeneratedMessageReflection": 1, - "default_instance_": 8, - "_has_bits_": 14, - "_unknown_fields_": 5, - "MessageFactory": 3, - "generated_factory": 1, - "GOOGLE_PROTOBUF_DECLARE_ONCE": 1, - "protobuf_AssignDescriptors_once_": 2, - "inline": 39, - "protobuf_AssignDescriptorsOnce": 4, - "GoogleOnceInit": 1, - "protobuf_RegisterTypes": 2, - "InternalRegisterGeneratedMessage": 1, - "default_instance": 3, - "protobuf_ShutdownFile_protocol_2dbuffer_2eproto": 4, - "delete": 6, - "already_here": 3, - "GOOGLE_PROTOBUF_VERIFY_VERSION": 1, - "InternalAddGeneratedFile": 1, - "InternalRegisterGeneratedFile": 1, - "InitAsDefaultInstance": 3, - "OnShutdown": 1, - "StaticDescriptorInitializer_protocol_2dbuffer_2eproto": 2, - "static_descriptor_initializer_protocol_2dbuffer_2eproto_": 1, - "kNameFieldNumber": 2, - "Message": 7, - "SharedCtor": 4, - "MergeFrom": 9, - "_cached_size_": 7, - "const_cast": 3, - "string*": 11, - "kEmptyString": 12, - "SharedDtor": 3, - "SetCachedSize": 2, - "GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN": 2, - "GOOGLE_SAFE_CONCURRENT_WRITES_END": 2, - "*default_instance_": 1, - "Person*": 7, - "xffu": 3, - "has_name": 6, - "mutable_unknown_fields": 4, - "MergePartialFromCodedStream": 2, - "io": 4, - "CodedInputStream*": 2, - "DO_": 4, - "EXPRESSION": 2, - "uint32": 2, - "tag": 6, - "ReadTag": 1, - "switch": 3, - "WireFormatLite": 9, - "GetTagFieldNumber": 1, - "GetTagWireType": 2, - "WIRETYPE_LENGTH_DELIMITED": 1, - "ReadString": 1, - "mutable_name": 3, - "WireFormat": 10, - "VerifyUTF8String": 3, - ".data": 3, - ".length": 3, - "PARSE": 1, - "handle_uninterpreted": 2, - "ExpectAtEnd": 1, - "WIRETYPE_END_GROUP": 1, - "SkipField": 1, - "#undef": 3, - "SerializeWithCachedSizes": 2, - "CodedOutputStream*": 2, - "SERIALIZE": 2, - "WriteString": 1, - "unknown_fields": 7, - "SerializeUnknownFields": 1, - "uint8*": 4, - "SerializeWithCachedSizesToArray": 2, - "target": 6, - "WriteStringToArray": 1, - "SerializeUnknownFieldsToArray": 1, - "ByteSize": 2, - "total_size": 5, - "StringSize": 1, - "ComputeUnknownFieldsSize": 1, - "GOOGLE_CHECK_NE": 2, - "dynamic_cast_if_available": 1, - "": 12, - "ReflectionOps": 1, - "Merge": 1, - "from._has_bits_": 1, - "from.has_name": 1, - "set_name": 7, - "from.name": 1, - "from.unknown_fields": 1, - "CopyFrom": 5, - "IsInitialized": 3, - "Swap": 2, - "swap": 3, - "_unknown_fields_.Swap": 1, - "Metadata": 3, - "GetMetadata": 2, - "metadata": 2, - "metadata.descriptor": 1, - "metadata.reflection": 1, - "PROTOBUF_protocol_2dbuffer_2eproto__INCLUDED": 3, - "GOOGLE_PROTOBUF_VERSION": 1, - "generated": 2, - "newer": 2, - "protoc": 2, - "incompatible": 2, - "Protocol": 2, - "headers.": 3, - "update": 1, - "GOOGLE_PROTOBUF_MIN_PROTOC_VERSION": 1, - "older": 1, - "regenerate": 1, - "protoc.": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "virtual": 10, - "*this": 1, - "UnknownFieldSet": 2, - "UnknownFieldSet*": 1, - "GetCachedSize": 1, - "clear_name": 2, - "release_name": 2, - "set_allocated_name": 2, - "set_has_name": 7, - "clear_has_name": 5, - "mutable": 1, - "u": 9, - "*name_": 1, - "assign": 3, - "temp": 2, - "SWIG": 2, - "QSCICOMMAND_H": 2, - "__APPLE__": 4, - "": 1, - "": 2, - "": 1, - "QsciScintilla": 7, - "QsciCommand": 7, - "represents": 1, - "editor": 1, - "command": 9, - "keys": 3, - "bound": 4, - "Methods": 1, - "provided": 1, - "binding.": 1, - "Each": 1, - "friendly": 2, - "description": 3, - "dialogs.": 1, - "QSCINTILLA_EXPORT": 2, - "commands": 1, - "assigned": 1, - "key.": 1, - "Command": 4, - "Move": 26, - "down": 12, - "line.": 33, - "LineDown": 1, - "QsciScintillaBase": 100, - "SCI_LINEDOWN": 1, - "Extend": 33, - "selection": 39, - "LineDownExtend": 1, - "SCI_LINEDOWNEXTEND": 1, - "rectangular": 9, - "LineDownRectExtend": 1, - "SCI_LINEDOWNRECTEXTEND": 1, - "Scroll": 5, - "view": 2, - "LineScrollDown": 1, - "SCI_LINESCROLLDOWN": 1, - "LineUp": 1, - "SCI_LINEUP": 1, - "LineUpExtend": 1, - "SCI_LINEUPEXTEND": 1, - "LineUpRectExtend": 1, - "SCI_LINEUPRECTEXTEND": 1, - "LineScrollUp": 1, - "SCI_LINESCROLLUP": 1, - "document.": 8, - "ScrollToStart": 1, - "SCI_SCROLLTOSTART": 1, - "ScrollToEnd": 1, - "SCI_SCROLLTOEND": 1, - "vertically": 1, - "centre": 1, - "VerticalCentreCaret": 1, - "SCI_VERTICALCENTRECARET": 1, - "paragraph.": 4, - "ParaDown": 1, - "SCI_PARADOWN": 1, - "ParaDownExtend": 1, - "SCI_PARADOWNEXTEND": 1, - "ParaUp": 1, - "SCI_PARAUP": 1, - "ParaUpExtend": 1, - "SCI_PARAUPEXTEND": 1, - "left": 7, - "character.": 9, - "CharLeft": 1, - "SCI_CHARLEFT": 1, - "CharLeftExtend": 1, - "SCI_CHARLEFTEXTEND": 1, - "CharLeftRectExtend": 1, - "SCI_CHARLEFTRECTEXTEND": 1, - "CharRight": 1, - "SCI_CHARRIGHT": 1, - "CharRightExtend": 1, - "SCI_CHARRIGHTEXTEND": 1, - "CharRightRectExtend": 1, - "SCI_CHARRIGHTRECTEXTEND": 1, - "word.": 9, - "WordLeft": 1, - "SCI_WORDLEFT": 1, - "WordLeftExtend": 1, - "SCI_WORDLEFTEXTEND": 1, - "WordRight": 1, - "SCI_WORDRIGHT": 1, - "WordRightExtend": 1, - "SCI_WORDRIGHTEXTEND": 1, - "WordLeftEnd": 1, - "SCI_WORDLEFTEND": 1, - "WordLeftEndExtend": 1, - "SCI_WORDLEFTENDEXTEND": 1, - "WordRightEnd": 1, - "SCI_WORDRIGHTEND": 1, - "WordRightEndExtend": 1, - "SCI_WORDRIGHTENDEXTEND": 1, - "part.": 4, - "WordPartLeft": 1, - "SCI_WORDPARTLEFT": 1, - "WordPartLeftExtend": 1, - "SCI_WORDPARTLEFTEXTEND": 1, - "WordPartRight": 1, - "SCI_WORDPARTRIGHT": 1, - "WordPartRightExtend": 1, - "SCI_WORDPARTRIGHTEXTEND": 1, - "document": 16, - "Home": 1, - "SCI_HOME": 1, - "HomeExtend": 1, - "SCI_HOMEEXTEND": 1, - "HomeRectExtend": 1, - "SCI_HOMERECTEXTEND": 1, - "displayed": 10, - "HomeDisplay": 1, - "SCI_HOMEDISPLAY": 1, - "HomeDisplayExtend": 1, - "SCI_HOMEDISPLAYEXTEND": 1, - "HomeWrap": 1, - "SCI_HOMEWRAP": 1, - "HomeWrapExtend": 1, - "SCI_HOMEWRAPEXTEND": 1, - "visible": 6, - "VCHome": 1, - "SCI_VCHOME": 1, - "VCHomeExtend": 1, - "SCI_VCHOMEEXTEND": 1, - "VCHomeRectExtend": 1, - "SCI_VCHOMERECTEXTEND": 1, - "VCHomeWrap": 1, - "SCI_VCHOMEWRAP": 1, - "VCHomeWrapExtend": 1, - "SCI_VCHOMEWRAPEXTEND": 1, - "LineEnd": 1, - "SCI_LINEEND": 1, - "LineEndExtend": 1, - "SCI_LINEENDEXTEND": 1, - "LineEndRectExtend": 1, - "SCI_LINEENDRECTEXTEND": 1, - "LineEndDisplay": 1, - "SCI_LINEENDDISPLAY": 1, - "LineEndDisplayExtend": 1, - "SCI_LINEENDDISPLAYEXTEND": 1, - "LineEndWrap": 1, - "SCI_LINEENDWRAP": 1, - "LineEndWrapExtend": 1, - "SCI_LINEENDWRAPEXTEND": 1, - "DocumentStart": 1, - "SCI_DOCUMENTSTART": 1, - "DocumentStartExtend": 1, - "SCI_DOCUMENTSTARTEXTEND": 1, - "DocumentEnd": 1, - "SCI_DOCUMENTEND": 1, - "DocumentEndExtend": 1, - "SCI_DOCUMENTENDEXTEND": 1, - "page.": 13, - "PageUp": 1, - "SCI_PAGEUP": 1, - "PageUpExtend": 1, - "SCI_PAGEUPEXTEND": 1, - "PageUpRectExtend": 1, - "SCI_PAGEUPRECTEXTEND": 1, - "PageDown": 1, - "SCI_PAGEDOWN": 1, - "PageDownExtend": 1, - "SCI_PAGEDOWNEXTEND": 1, - "PageDownRectExtend": 1, - "SCI_PAGEDOWNRECTEXTEND": 1, - "Stuttered": 4, - "move": 2, - "StutteredPageUp": 1, - "SCI_STUTTEREDPAGEUP": 1, - "extend": 2, - "StutteredPageUpExtend": 1, - "SCI_STUTTEREDPAGEUPEXTEND": 1, - "StutteredPageDown": 1, - "SCI_STUTTEREDPAGEDOWN": 1, - "StutteredPageDownExtend": 1, - "SCI_STUTTEREDPAGEDOWNEXTEND": 1, - "Delete": 10, - "SCI_CLEAR": 1, - "DeleteBack": 1, - "SCI_DELETEBACK": 1, - "DeleteBackNotLine": 1, - "SCI_DELETEBACKNOTLINE": 1, - "left.": 2, - "DeleteWordLeft": 1, - "SCI_DELWORDLEFT": 1, - "right.": 2, - "DeleteWordRight": 1, - "SCI_DELWORDRIGHT": 1, - "DeleteWordRightEnd": 1, - "SCI_DELWORDRIGHTEND": 1, - "DeleteLineLeft": 1, - "SCI_DELLINELEFT": 1, - "DeleteLineRight": 1, - "SCI_DELLINERIGHT": 1, - "LineDelete": 1, - "SCI_LINEDELETE": 1, - "Cut": 2, - "clipboard.": 5, - "LineCut": 1, - "SCI_LINECUT": 1, - "Copy": 2, - "LineCopy": 1, - "SCI_LINECOPY": 1, - "Transpose": 1, - "lines.": 1, - "LineTranspose": 1, - "SCI_LINETRANSPOSE": 1, - "Duplicate": 2, - "LineDuplicate": 1, - "SCI_LINEDUPLICATE": 1, - "whole": 2, - "SelectAll": 1, - "SCI_SELECTALL": 1, - "lines": 3, - "MoveSelectedLinesUp": 1, - "SCI_MOVESELECTEDLINESUP": 1, - "MoveSelectedLinesDown": 1, - "SCI_MOVESELECTEDLINESDOWN": 1, - "selection.": 1, - "SelectionDuplicate": 1, - "SCI_SELECTIONDUPLICATE": 1, - "Convert": 2, - "lower": 1, - "case.": 2, - "SelectionLowerCase": 1, - "SCI_LOWERCASE": 1, - "upper": 1, - "SelectionUpperCase": 1, - "SCI_UPPERCASE": 1, - "SelectionCut": 1, - "SCI_CUT": 1, - "SelectionCopy": 1, - "SCI_COPY": 1, - "Paste": 2, - "SCI_PASTE": 1, - "Toggle": 1, - "insert/overtype.": 1, - "EditToggleOvertype": 1, - "SCI_EDITTOGGLEOVERTYPE": 1, - "Insert": 2, - "dependent": 1, - "newline.": 1, - "Newline": 1, - "SCI_NEWLINE": 1, - "formfeed.": 1, - "Formfeed": 1, - "SCI_FORMFEED": 1, - "Indent": 1, - "Tab": 1, - "SCI_TAB": 1, - "De": 1, - "indent": 1, - "Backtab": 1, - "SCI_BACKTAB": 1, - "Cancel": 2, - "SCI_CANCEL": 1, - "Undo": 2, - "command.": 5, - "SCI_UNDO": 1, - "Redo": 2, - "SCI_REDO": 1, - "Zoom": 2, - "in.": 1, - "ZoomIn": 1, - "SCI_ZOOMIN": 1, - "out.": 1, - "ZoomOut": 1, - "SCI_ZOOMOUT": 1, - "Return": 3, - "executed": 1, - "instance.": 2, - "scicmd": 2, - "Execute": 1, - "Binds": 2, - "binding": 3, - "removed.": 2, - "invalid": 5, - "unchanged.": 1, - "Valid": 1, - "Key_Down": 1, - "Key_Up": 1, - "Key_Left": 1, - "Key_Right": 1, - "Key_Home": 1, - "Key_End": 1, - "Key_PageUp": 1, - "Key_PageDown": 1, - "Key_Delete": 1, - "Key_Insert": 1, - "Key_Escape": 1, - "Key_Backspace": 1, - "Key_Tab": 1, - "Key_Return.": 1, - "Keys": 1, - "SHIFT": 1, - "CTRL": 1, - "ALT": 1, - "META.": 1, - "setAlternateKey": 3, - "validKey": 3, - "setKey": 3, - "altkey": 3, - "alternateKey": 3, - "returned.": 4, - "qkey": 2, - "qaltkey": 2, - "valid": 2, - "QsciCommandSet": 1, - "*qs": 1, - "cmd": 1, - "*desc": 1, - "bindKey": 1, - "qk": 1, - "scik": 1, - "*qsCmd": 1, - "scikey": 1, - "scialtkey": 1, - "*descCmd": 1, - "QSCIPRINTER_H": 2, - "": 1, - "": 1, - "QT_BEGIN_NAMESPACE": 1, - "QRect": 2, - "QPainter": 2, - "QT_END_NAMESPACE": 1, - "QsciPrinter": 9, - "sub": 2, - "Qt": 1, - "QPrinter": 3, - "text": 5, - "Scintilla": 2, - "further": 1, - "classed": 1, - "layout": 1, - "adding": 2, - "headers": 3, - "footers": 2, - "example.": 1, - "Constructs": 1, - "printer": 1, - "paint": 1, - "PrinterMode": 1, - "ScreenResolution": 1, - "Destroys": 1, - "Format": 1, - "drawn": 2, - "painter": 4, - "add": 3, - "customised": 2, - "graphics.": 2, - "drawing": 4, - "actually": 1, - "sized.": 1, - "area": 5, - "draw": 1, - "text.": 3, - "necessary": 1, - "reserve": 1, - "By": 1, - "printable": 1, - "setFullPage": 1, - "because": 2, - "printRange": 2, - "try": 1, - "over": 1, - "pagenr": 2, - "numbered": 1, - "formatPage": 1, - "points": 2, - "font": 2, - "printing.": 2, - "setMagnification": 2, - "magnification": 3, - "mag": 2, - "printing": 2, - "magnification.": 1, - "qsb.": 1, - "negative": 2, - "signifies": 2, - "error.": 1, - "*qsb": 1, - "wrap": 4, - "WrapWord.": 1, - "setWrapMode": 2, - "WrapMode": 3, - "wrapMode": 2, - "wmode.": 1, - "wmode": 1, - "": 2, - "Gui": 1, - "rpc_init": 1, - "rpc_server_loop": 1, - "v8": 9, - "Scanner": 16, - "UnicodeCache*": 4, - "unicode_cache": 3, - "unicode_cache_": 10, - "octal_pos_": 5, - "Location": 14, - "harmony_scoping_": 4, - "harmony_modules_": 4, - "Initialize": 4, - "Utf16CharacterStream*": 3, - "source_": 7, - "Init": 3, - "has_line_terminator_before_next_": 9, - "SkipWhiteSpace": 4, - "Scan": 5, - "uc32": 19, - "ScanHexNumber": 2, - "expected_length": 4, - "ASSERT": 17, - "overflow": 1, - "c0_": 64, - "d": 8, - "HexValue": 2, - "PushBack": 8, - "Advance": 44, - "STATIC_ASSERT": 5, - "Token": 212, - "NUM_TOKENS": 1, - "one_char_tokens": 2, - "ILLEGAL": 120, - "LPAREN": 2, - "RPAREN": 2, - "COMMA": 2, - "COLON": 2, - "SEMICOLON": 2, - "CONDITIONAL": 2, - "LBRACK": 2, - "RBRACK": 2, - "LBRACE": 2, - "RBRACE": 2, - "BIT_NOT": 2, - "Next": 3, - "current_": 2, - "has_multiline_comment_before_next_": 5, - "token": 64, - "": 1, - "pos": 12, - "source_pos": 10, - "next_.token": 3, - "next_.location.beg_pos": 3, - "next_.location.end_pos": 4, - "current_.token": 4, - "IsByteOrderMark": 2, - "xFEFF": 1, - "xFFFE": 1, - "start_position": 2, - "IsWhiteSpace": 2, - "IsLineTerminator": 6, - "SkipSingleLineComment": 6, - "undo": 4, - "WHITESPACE": 6, - "SkipMultiLineComment": 3, - "ch": 5, - "ScanHtmlComment": 3, - "LT": 2, - "next_.literal_chars": 13, - "ScanString": 3, - "LTE": 1, - "ASSIGN_SHL": 1, - "SHL": 1, - "GTE": 1, - "ASSIGN_SAR": 1, - "ASSIGN_SHR": 1, - "SHR": 1, - "SAR": 1, - "GT": 1, - "EQ_STRICT": 1, - "EQ": 1, - "ASSIGN": 1, - "NE_STRICT": 1, - "NE": 1, - "INC": 1, - "ASSIGN_ADD": 1, - "ADD": 1, - "DEC": 1, - "ASSIGN_SUB": 1, - "SUB": 1, - "ASSIGN_MUL": 1, - "MUL": 1, - "ASSIGN_MOD": 1, - "MOD": 1, - "ASSIGN_DIV": 1, - "DIV": 1, - "AND": 1, - "ASSIGN_BIT_AND": 1, - "BIT_AND": 1, - "OR": 1, - "ASSIGN_BIT_OR": 1, - "BIT_OR": 1, - "ASSIGN_BIT_XOR": 1, - "BIT_XOR": 1, - "IsDecimalDigit": 2, - "ScanNumber": 3, - "PERIOD": 1, - "IsIdentifierStart": 2, - "ScanIdentifierOrKeyword": 2, - "EOS": 1, - "SeekForward": 4, - "current_pos": 4, - "ASSERT_EQ": 1, - "ScanEscape": 2, - "IsCarriageReturn": 2, - "IsLineFeed": 2, - "fall": 2, - "xxx": 1, - "immediately": 1, - "octal": 1, - "escape": 1, - "quote": 3, - "consume": 2, - "LiteralScope": 4, - "literal": 2, - "X": 2, - "E": 3, - "l": 1, - "w": 1, - "keyword": 1, - "Unescaped": 1, - "in_character_class": 2, - "AddLiteralCharAdvance": 3, - "literal.Complete": 2, - "ScanLiteralUnicodeEscape": 3, - "V8_SCANNER_H_": 3, - "ParsingFlags": 1, - "kNoParsingFlags": 1, - "kLanguageModeMask": 4, - "kAllowLazy": 1, - "kAllowNativesSyntax": 1, - "kAllowModules": 1, - "CLASSIC_MODE": 2, - "STRICT_MODE": 2, - "EXTENDED_MODE": 2, - "x16": 1, - "x36.": 1, - "Utf16CharacterStream": 3, - "pos_": 6, - "buffer_cursor_": 5, - "buffer_end_": 3, - "ReadBlock": 2, - "": 1, - "kEndOfInput": 2, - "code_unit_count": 7, - "buffered_chars": 2, - "SlowSeekForward": 2, - "int32_t": 1, - "code_unit": 6, - "uc16*": 3, - "UnicodeCache": 3, - "unibrow": 11, - "Utf8InputBuffer": 2, - "<1024>": 2, - "Utf8Decoder": 2, - "StaticResource": 2, - "": 2, - "utf8_decoder": 1, - "utf8_decoder_": 2, - "uchar": 4, - "kIsIdentifierStart.get": 1, - "IsIdentifierPart": 1, - "kIsIdentifierPart.get": 1, - "kIsLineTerminator.get": 1, - "kIsWhiteSpace.get": 1, - "Predicate": 4, - "": 1, - "128": 4, - "kIsIdentifierStart": 1, - "": 1, - "kIsIdentifierPart": 1, - "": 1, - "kIsLineTerminator": 1, - "": 1, - "kIsWhiteSpace": 1, - "DISALLOW_COPY_AND_ASSIGN": 2, - "LiteralBuffer": 6, - "is_ascii_": 10, - "position_": 17, - "backing_store_": 7, - "backing_store_.length": 4, - "backing_store_.Dispose": 3, - "INLINE": 2, - "AddChar": 2, - "ExpandBuffer": 2, - "kMaxAsciiCharCodeU": 1, - "": 6, - "kASCIISize": 1, - "ConvertToUtf16": 2, - "": 2, - "kUC16Size": 2, - "is_ascii": 3, - "Vector": 13, - "uc16": 5, - "utf16_literal": 3, - "backing_store_.start": 5, - "ascii_literal": 3, - "kInitialCapacity": 2, - "kGrowthFactory": 2, - "kMinConversionSlack": 1, - "kMaxGrowth": 2, - "MB": 1, - "NewCapacity": 3, - "min_capacity": 2, - "capacity": 3, - "Max": 1, - "new_capacity": 2, - "Min": 1, - "new_store": 6, - "memcpy": 1, - "new_store.start": 3, - "new_content_size": 4, - "src": 2, - "": 1, - "dst": 2, - "Scanner*": 2, - "self": 5, - "scanner_": 5, - "complete_": 4, - "StartLiteral": 2, - "DropLiteral": 2, - "Complete": 1, - "TerminateLiteral": 2, - "beg_pos": 5, - "end_pos": 4, - "kNoOctalLocation": 1, - "scanner_contants": 1, - "current_token": 1, - "current_.location": 2, - "literal_ascii_string": 1, - "ASSERT_NOT_NULL": 9, - "current_.literal_chars": 11, - "literal_utf16_string": 1, - "is_literal_ascii": 1, - "literal_length": 1, - "literal_contains_escapes": 1, - "source_length": 3, - "location.end_pos": 1, - "location.beg_pos": 1, - "STRING": 1, - "peek": 1, - "peek_location": 1, - "next_.location": 1, - "next_literal_ascii_string": 1, - "next_literal_utf16_string": 1, - "is_next_literal_ascii": 1, - "next_literal_length": 1, - "kCharacterLookaheadBufferSize": 3, - "ScanOctalEscape": 1, - "octal_position": 1, - "clear_octal_position": 1, - "HarmonyScoping": 1, - "SetHarmonyScoping": 1, - "scoping": 2, - "HarmonyModules": 1, - "SetHarmonyModules": 1, - "modules": 2, - "HasAnyLineTerminatorBeforeNext": 1, - "ScanRegExpPattern": 1, - "seen_equal": 1, - "ScanRegExpFlags": 1, - "IsIdentifier": 1, - "CharacterStream*": 1, - "TokenDesc": 3, - "LiteralBuffer*": 2, - "literal_chars": 1, - "free_buffer": 3, - "literal_buffer1_": 3, - "literal_buffer2_": 2, - "AddLiteralChar": 2, - "tok": 2, - "else_": 2, - "ScanDecimalDigits": 1, - "seen_period": 1, - "ScanIdentifierSuffix": 1, - "LiteralScope*": 1, - "ScanIdentifierUnicodeEscape": 1, - "desc": 2, - "look": 1, - "ahead": 1, - "smallPrime_t": 1, - "UTILS_H": 3, - "": 1, - "": 1, - "": 1, - "QTemporaryFile": 1, - "showUsage": 1, - "QtMsgType": 1, - "dump_path": 1, - "minidump_id": 1, - "context": 8, - "QVariant": 1, - "coffee2js": 1, - "script": 1, - "injectJsInFrame": 2, - "jsFilePath": 5, - "libraryPath": 5, - "QWebFrame": 4, - "*targetFrame": 4, - "startingScript": 2, - "Encoding": 3, - "jsFileEnc": 2, - "readResourceFileUtf8": 1, - "resourceFilePath": 1, - "loadJSForDebug": 2, - "autorun": 2, - "cleanupFromDebug": 1, - "findScript": 1, - "jsFromScriptFile": 1, - "scriptPath": 1, - "enc": 1, - "shouldn": 1, - "instantiated": 1, - "QTemporaryFile*": 2, - "m_tempHarness": 1, - "We": 1, - "ourselves": 1, - "m_tempWrapper": 1, - "V8_DECLARE_ONCE": 1, - "init_once": 2, - "V8": 21, - "is_running_": 6, - "has_been_set_up_": 4, - "has_been_disposed_": 6, - "has_fatal_error_": 5, - "use_crankshaft_": 6, - "List": 3, - "": 3, - "call_completed_callbacks_": 16, - "LazyMutex": 1, - "entropy_mutex": 1, - "LAZY_MUTEX_INITIALIZER": 1, - "EntropySource": 3, - "entropy_source": 4, - "Deserializer*": 2, - "des": 3, - "FlagList": 1, - "EnforceFlagImplications": 1, - "InitializeOncePerProcess": 4, - "Isolate": 9, - "CurrentPerIsolateThreadData": 4, - "EnterDefaultIsolate": 1, - "thread_id": 1, - ".Equals": 1, - "ThreadId": 1, - "Current": 5, - "isolate": 15, - "IsDead": 2, - "Isolate*": 6, - "SetFatalError": 2, - "TearDown": 5, - "IsDefaultIsolate": 1, - "ElementsAccessor": 2, - "LOperand": 2, - "TearDownCaches": 1, - "RegisteredExtension": 1, - "UnregisterAll": 1, - "OS": 3, - "seed_random": 2, - "FLAG_random_seed": 2, - "val": 3, - "ScopedLock": 1, - "entropy_mutex.Pointer": 1, - "random": 1, - "random_base": 3, - "xFFFF": 2, - "FFFF": 1, - "SetEntropySource": 2, - "SetReturnAddressLocationResolver": 3, - "ReturnAddressLocationResolver": 2, - "resolver": 3, - "StackFrame": 1, - "Random": 3, - "Context*": 4, - "IsGlobalContext": 1, - "ByteArray*": 1, - "seed": 2, - "random_seed": 1, - "": 1, - "GetDataStartAddress": 1, - "RandomPrivate": 2, - "private_random_seed": 1, - "IdleNotification": 3, - "hint": 3, - "FLAG_use_idle_notification": 1, - "HEAP": 1, - "AddCallCompletedCallback": 2, - "CallCompletedCallback": 4, - "callback": 7, - "Lazy": 1, - "init.": 1, - "Add": 1, - "RemoveCallCompletedCallback": 2, - "Remove": 1, - "FireCallCompletedCallback": 2, - "HandleScopeImplementer*": 1, - "handle_scope_implementer": 5, - "CallDepthIsZero": 1, - "IncrementCallDepth": 1, - "DecrementCallDepth": 1, - "union": 1, - "double_value": 1, - "uint64_t_value": 1, - "double_int_union": 2, - "Object*": 4, - "FillHeapNumberWithRandom": 2, - "heap_number": 4, - "random_bits": 2, - "binary_million": 3, - "r.double_value": 3, - "r.uint64_t_value": 1, - "HeapNumber": 1, - "set_value": 1, - "InitializeOncePerProcessImpl": 3, - "SetUp": 4, - "FLAG_crankshaft": 1, - "Serializer": 1, - "SupportsCrankshaft": 1, - "PostSetUp": 1, - "RuntimeProfiler": 1, - "GlobalSetUp": 1, - "FLAG_stress_compaction": 1, - "FLAG_force_marking_deque_overflows": 1, - "FLAG_gc_global": 1, - "FLAG_max_new_space_size": 1, - "kPageSizeBits": 1, - "SetUpCaches": 1, - "SetUpJSCallerSavedCodeData": 1, - "SamplerRegistry": 1, - "ExternalReference": 1, - "CallOnce": 1, - "V8_V8_H_": 3, - "GOOGLE3": 2, - "NDEBUG": 4, - "both": 1, - "Deserializer": 1, - "AllStatic": 1, - "IsRunning": 1, - "UseCrankshaft": 1, - "FatalProcessOutOfMemory": 1, - "take_snapshot": 1, - "NilValue": 1, - "kNullValue": 1, - "kUndefinedValue": 1, - "EqualityKind": 1, - "kStrictEquality": 1, - "kNonStrictEquality": 1, - "PY_SSIZE_T_CLEAN": 1, - "Py_PYTHON_H": 1, - "Python": 1, - "compile": 1, - "extensions": 1, - "development": 1, - "Python.": 1, - "": 1, - "offsetof": 2, - "member": 2, - "type*": 1, - "WIN32": 2, - "MS_WINDOWS": 2, - "__stdcall": 2, - "__cdecl": 2, - "__fastcall": 2, - "DL_IMPORT": 2, - "DL_EXPORT": 2, - "PY_LONG_LONG": 5, - "LONG_LONG": 1, - "PY_VERSION_HEX": 9, - "METH_COEXIST": 1, - "PyDict_CheckExact": 1, - "Py_TYPE": 4, - "PyDict_Type": 1, - "PyDict_Contains": 1, - "o": 20, - "PySequence_Contains": 1, - "Py_ssize_t": 17, - "PY_SSIZE_T_MAX": 1, - "INT_MAX": 1, - "PY_SSIZE_T_MIN": 1, - "INT_MIN": 1, - "PY_FORMAT_SIZE_T": 1, - "PyInt_FromSsize_t": 2, - "z": 46, - "PyInt_FromLong": 13, - "PyInt_AsSsize_t": 2, - "PyInt_AsLong": 2, - "PyNumber_Index": 1, - "PyNumber_Int": 1, - "PyIndex_Check": 1, - "PyNumber_Check": 1, - "PyErr_WarnEx": 1, - "category": 2, - "message": 2, - "stacklevel": 1, - "PyErr_Warn": 1, - "Py_REFCNT": 1, - "ob": 6, - "PyObject*": 16, - "ob_refcnt": 1, - "ob_type": 7, - "Py_SIZE": 1, - "PyVarObject*": 1, - "ob_size": 1, - "PyVarObject_HEAD_INIT": 1, - "PyObject_HEAD_INIT": 1, - "PyType_Modified": 1, - "*buf": 1, - "PyObject": 221, - "*obj": 2, - "itemsize": 2, - "ndim": 2, - "*format": 1, - "*shape": 1, - "*strides": 1, - "*suboffsets": 1, - "*internal": 1, - "Py_buffer": 5, - "PyBUF_SIMPLE": 1, - "PyBUF_WRITABLE": 1, - "PyBUF_FORMAT": 1, - "PyBUF_ND": 2, - "PyBUF_STRIDES": 5, - "PyBUF_C_CONTIGUOUS": 3, - "PyBUF_F_CONTIGUOUS": 3, - "PyBUF_ANY_CONTIGUOUS": 1, - "PyBUF_INDIRECT": 1, - "PY_MAJOR_VERSION": 10, - "__Pyx_BUILTIN_MODULE_NAME": 2, - "Py_TPFLAGS_CHECKTYPES": 1, - "Py_TPFLAGS_HAVE_INDEX": 1, - "Py_TPFLAGS_HAVE_NEWBUFFER": 1, - "PyBaseString_Type": 1, - "PyUnicode_Type": 2, - "PyStringObject": 2, - "PyUnicodeObject": 1, - "PyString_Type": 2, - "PyString_Check": 2, - "PyUnicode_Check": 1, - "PyString_CheckExact": 2, - "PyUnicode_CheckExact": 1, - "PyBytesObject": 1, - "PyBytes_Type": 1, - "PyBytes_Check": 1, - "PyBytes_CheckExact": 1, - "PyBytes_FromString": 2, - "PyString_FromString": 1, - "PyBytes_FromStringAndSize": 1, - "PyString_FromStringAndSize": 1, - "PyBytes_FromFormat": 1, - "PyString_FromFormat": 1, - "PyBytes_DecodeEscape": 1, - "PyString_DecodeEscape": 1, - "PyBytes_AsString": 2, - "PyString_AsString": 1, - "PyBytes_AsStringAndSize": 1, - "PyString_AsStringAndSize": 1, - "PyBytes_Size": 1, - "PyString_Size": 1, - "PyBytes_AS_STRING": 1, - "PyString_AS_STRING": 1, - "PyBytes_GET_SIZE": 1, - "PyString_GET_SIZE": 1, - "PyBytes_Repr": 1, - "PyString_Repr": 1, - "PyBytes_Concat": 1, - "PyString_Concat": 1, - "PyBytes_ConcatAndDel": 1, - "PyString_ConcatAndDel": 1, - "PySet_Check": 1, - "obj": 42, - "PyObject_TypeCheck": 3, - "PySet_Type": 2, - "PyFrozenSet_Check": 1, - "PyFrozenSet_Type": 1, - "PySet_CheckExact": 2, - "__Pyx_TypeCheck": 1, - "PyTypeObject": 2, - "PyIntObject": 1, - "PyLongObject": 2, - "PyInt_Type": 1, - "PyLong_Type": 1, - "PyInt_Check": 1, - "PyLong_Check": 1, - "PyInt_CheckExact": 1, - "PyLong_CheckExact": 1, - "PyInt_FromString": 1, - "PyLong_FromString": 1, - "PyInt_FromUnicode": 1, - "PyLong_FromUnicode": 1, - "PyLong_FromLong": 1, - "PyInt_FromSize_t": 1, - "PyLong_FromSize_t": 1, - "PyLong_FromSsize_t": 1, - "PyLong_AsLong": 1, - "PyInt_AS_LONG": 1, - "PyLong_AS_LONG": 1, - "PyLong_AsSsize_t": 1, - "PyInt_AsUnsignedLongMask": 1, - "PyLong_AsUnsignedLongMask": 1, - "PyInt_AsUnsignedLongLongMask": 1, - "PyLong_AsUnsignedLongLongMask": 1, - "PyBoolObject": 1, - "__Pyx_PyNumber_Divide": 2, - "PyNumber_TrueDivide": 1, - "__Pyx_PyNumber_InPlaceDivide": 2, - "PyNumber_InPlaceTrueDivide": 1, - "PyNumber_Divide": 1, - "PyNumber_InPlaceDivide": 1, - "__Pyx_PySequence_GetSlice": 2, - "PySequence_GetSlice": 2, - "__Pyx_PySequence_SetSlice": 2, - "PySequence_SetSlice": 2, - "__Pyx_PySequence_DelSlice": 2, - "PySequence_DelSlice": 2, - "unlikely": 69, - "PyErr_SetString": 4, - "PyExc_SystemError": 3, - "likely": 15, - "tp_as_mapping": 3, - "PyErr_Format": 4, - "PyExc_TypeError": 5, - "tp_name": 4, - "PyMethod_New": 2, - "func": 3, - "klass": 1, - "PyInstanceMethod_New": 1, - "__Pyx_GetAttrString": 2, - "PyObject_GetAttrString": 3, - "__Pyx_SetAttrString": 2, - "PyObject_SetAttrString": 2, - "__Pyx_DelAttrString": 2, - "PyObject_DelAttrString": 2, - "__Pyx_NAMESTR": 3, - "__Pyx_DOCSTR": 3, - "__PYX_EXTERN_C": 2, - "_USE_MATH_DEFINES": 1, - "": 1, - "__PYX_HAVE_API__wrapper_inner": 1, - "PYREX_WITHOUT_ASSERTIONS": 1, - "CYTHON_WITHOUT_ASSERTIONS": 1, - "CYTHON_INLINE": 68, - "__GNUC__": 5, - "__inline__": 1, - "__inline": 1, - "__STDC_VERSION__": 2, - "L": 1, - "CYTHON_UNUSED": 7, - "**p": 1, - "*s": 1, - "encoding": 1, - "is_unicode": 1, - "is_str": 1, - "intern": 1, - "__Pyx_StringTabEntry": 1, - "__Pyx_PyBytes_FromUString": 1, - "__Pyx_PyBytes_AsUString": 1, - "__Pyx_PyBool_FromLong": 1, - "Py_INCREF": 3, - "Py_True": 2, - "Py_False": 2, - "__Pyx_PyObject_IsTrue": 8, - "__Pyx_PyNumber_Int": 1, - "__Pyx_PyIndex_AsSsize_t": 1, - "__Pyx_PyInt_FromSize_t": 1, - "__Pyx_PyInt_AsSize_t": 1, - "__pyx_PyFloat_AsDouble": 3, - "PyFloat_CheckExact": 1, - "PyFloat_AS_DOUBLE": 1, - "PyFloat_AsDouble": 1, - "__GNUC_MINOR__": 1, - "__builtin_expect": 2, - "*__pyx_m": 1, - "*__pyx_b": 1, - "*__pyx_empty_tuple": 1, - "*__pyx_empty_bytes": 1, - "__pyx_lineno": 80, - "__pyx_clineno": 80, - "__pyx_cfilenm": 1, - "__FILE__": 2, - "*__pyx_filename": 1, - "CYTHON_CCOMPLEX": 12, - "_Complex_I": 3, - "": 1, - "": 1, - "__sun__": 1, - "fj": 1, - "*__pyx_f": 1, - "npy_int8": 1, - "__pyx_t_5numpy_int8_t": 1, - "npy_int16": 1, - "__pyx_t_5numpy_int16_t": 1, - "npy_int32": 1, - "__pyx_t_5numpy_int32_t": 1, - "npy_int64": 1, - "__pyx_t_5numpy_int64_t": 1, - "npy_uint8": 1, - "__pyx_t_5numpy_uint8_t": 1, - "npy_uint16": 1, - "__pyx_t_5numpy_uint16_t": 1, - "npy_uint32": 1, - "__pyx_t_5numpy_uint32_t": 1, - "npy_uint64": 1, - "__pyx_t_5numpy_uint64_t": 1, - "npy_float32": 1, - "__pyx_t_5numpy_float32_t": 1, - "npy_float64": 1, - "__pyx_t_5numpy_float64_t": 1, - "npy_long": 1, - "__pyx_t_5numpy_int_t": 1, - "npy_longlong": 1, - "__pyx_t_5numpy_long_t": 1, - "npy_intp": 10, - "__pyx_t_5numpy_intp_t": 1, - "npy_uintp": 1, - "__pyx_t_5numpy_uintp_t": 1, - "npy_ulong": 1, - "__pyx_t_5numpy_uint_t": 1, - "npy_ulonglong": 1, - "__pyx_t_5numpy_ulong_t": 1, - "npy_double": 2, - "__pyx_t_5numpy_float_t": 1, - "__pyx_t_5numpy_double_t": 1, - "npy_longdouble": 1, - "__pyx_t_5numpy_longdouble_t": 1, - "complex": 2, - "__pyx_t_float_complex": 27, - "_Complex": 2, - "imag": 2, - "__pyx_t_double_complex": 27, - "npy_cfloat": 1, - "__pyx_t_5numpy_cfloat_t": 1, - "npy_cdouble": 2, - "__pyx_t_5numpy_cdouble_t": 1, - "npy_clongdouble": 1, - "__pyx_t_5numpy_clongdouble_t": 1, - "__pyx_t_5numpy_complex_t": 1, - "CYTHON_REFNANNY": 3, - "__Pyx_RefNannyAPIStruct": 4, - "*__Pyx_RefNanny": 1, - "__Pyx_RefNannyImportAPI": 1, - "*modname": 1, - "*m": 1, - "*p": 1, - "*r": 1, - "m": 4, - "PyImport_ImportModule": 1, - "modname": 1, - "PyLong_AsVoidPtr": 1, - "Py_XDECREF": 3, - "__Pyx_RefNannySetupContext": 13, - "*__pyx_refnanny": 1, - "__Pyx_RefNanny": 6, - "SetupContext": 1, - "__LINE__": 84, - "__Pyx_RefNannyFinishContext": 12, - "FinishContext": 1, - "__pyx_refnanny": 5, - "__Pyx_INCREF": 36, - "INCREF": 1, - "__Pyx_DECREF": 66, - "DECREF": 1, - "__Pyx_GOTREF": 60, - "GOTREF": 1, - "__Pyx_GIVEREF": 10, - "GIVEREF": 1, - "__Pyx_XDECREF": 26, - "Py_DECREF": 1, - "__Pyx_XGIVEREF": 7, - "__Pyx_XGOTREF": 1, - "__Pyx_TypeTest": 4, - "*type": 3, - "*__Pyx_GetName": 1, - "*dict": 1, - "__Pyx_ErrRestore": 1, - "*value": 2, - "*tb": 2, - "__Pyx_ErrFetch": 1, - "**type": 1, - "**value": 1, - "**tb": 1, - "__Pyx_Raise": 8, - "__Pyx_RaiseNoneNotIterableError": 1, - "__Pyx_RaiseNeedMoreValuesError": 1, - "index": 2, - "__Pyx_RaiseTooManyValuesError": 1, - "expected": 1, - "__Pyx_UnpackTupleError": 2, - "*__Pyx_Import": 1, - "*from_list": 1, - "__Pyx_Print": 1, - "__pyx_print": 1, - "__pyx_print_kwargs": 1, - "__Pyx_PrintOne": 4, - "*o": 1, - "*__Pyx_PyInt_to_py_Py_intptr_t": 1, - "Py_intptr_t": 1, - "__Pyx_CREAL": 4, - ".real": 3, - "__Pyx_CIMAG": 4, - ".imag": 3, - "__real__": 1, - "__imag__": 1, - "_WIN32": 1, - "__Pyx_SET_CREAL": 2, - "__Pyx_SET_CIMAG": 2, - "__pyx_t_float_complex_from_parts": 1, - "__Pyx_c_eqf": 2, - "__Pyx_c_sumf": 2, - "__Pyx_c_difff": 2, - "__Pyx_c_prodf": 2, - "__Pyx_c_quotf": 2, - "__Pyx_c_negf": 2, - "__Pyx_c_is_zerof": 3, - "__Pyx_c_conjf": 3, - "conj": 3, - "__Pyx_c_absf": 3, - "abs": 2, - "__Pyx_c_powf": 3, - "pow": 2, - "conjf": 1, - "cabsf": 1, - "cpowf": 1, - "__pyx_t_double_complex_from_parts": 1, - "__Pyx_c_eq": 2, - "__Pyx_c_sum": 2, - "__Pyx_c_diff": 2, - "__Pyx_c_prod": 2, - "__Pyx_c_quot": 2, - "__Pyx_c_neg": 2, - "__Pyx_c_is_zero": 3, - "__Pyx_c_conj": 3, - "__Pyx_c_abs": 3, - "__Pyx_c_pow": 3, - "cabs": 1, - "cpow": 1, - "__Pyx_PyInt_AsUnsignedChar": 1, - "__Pyx_PyInt_AsUnsignedShort": 1, - "__Pyx_PyInt_AsUnsignedInt": 1, - "__Pyx_PyInt_AsChar": 1, - "__Pyx_PyInt_AsShort": 1, - "__Pyx_PyInt_AsInt": 1, - "signed": 5, - "__Pyx_PyInt_AsSignedChar": 1, - "__Pyx_PyInt_AsSignedShort": 1, - "__Pyx_PyInt_AsSignedInt": 1, - "__Pyx_PyInt_AsLongDouble": 1, - "__Pyx_PyInt_AsUnsignedLong": 1, - "__Pyx_PyInt_AsUnsignedLongLong": 1, - "__Pyx_PyInt_AsLong": 1, - "__Pyx_PyInt_AsLongLong": 1, - "__Pyx_PyInt_AsSignedLong": 1, - "__Pyx_PyInt_AsSignedLongLong": 1, - "__Pyx_WriteUnraisable": 3, - "__Pyx_ExportFunction": 1, - "*__pyx_f_5numpy_PyArray_MultiIterNew2": 2, - "*__pyx_f_5numpy_PyArray_MultiIterNew3": 2, - "*__pyx_f_5numpy_PyArray_MultiIterNew4": 2, - "*__pyx_f_5numpy_PyArray_MultiIterNew5": 2, - "*__pyx_f_5numpy__util_dtypestring": 2, - "PyArray_Descr": 6, - "__pyx_f_5numpy_set_array_base": 1, - "PyArrayObject": 19, - "*__pyx_f_5numpy_get_array_base": 1, - "inner_work_1d": 2, - "inner_work_2d": 2, - "__Pyx_MODULE_NAME": 1, - "__pyx_module_is_main_wrapper_inner": 1, - "*__pyx_builtin_ValueError": 1, - "*__pyx_builtin_range": 1, - "*__pyx_builtin_RuntimeError": 1, - "__pyx_k_1": 1, - "__pyx_k_2": 1, - "__pyx_k_3": 1, - "__pyx_k_5": 1, - "__pyx_k_7": 1, - "__pyx_k_9": 1, - "__pyx_k_11": 1, - "__pyx_k_12": 1, - "__pyx_k_15": 1, - "__pyx_k__B": 2, - "__pyx_k__H": 2, - "__pyx_k__I": 2, - "__pyx_k__L": 2, - "__pyx_k__O": 2, - "__pyx_k__Q": 2, - "__pyx_k__b": 2, - "__pyx_k__d": 2, - "__pyx_k__f": 2, - "__pyx_k__g": 2, - "__pyx_k__h": 2, - "__pyx_k__i": 2, - "__pyx_k__l": 2, - "__pyx_k__q": 2, - "__pyx_k__Zd": 2, - "__pyx_k__Zf": 2, - "__pyx_k__Zg": 2, - "__pyx_k__np": 1, - "__pyx_k__buf": 1, - "__pyx_k__obj": 1, - "__pyx_k__base": 1, - "__pyx_k__ndim": 1, - "__pyx_k__ones": 1, - "__pyx_k__descr": 1, - "__pyx_k__names": 1, - "__pyx_k__numpy": 1, - "__pyx_k__range": 1, - "__pyx_k__shape": 1, - "__pyx_k__fields": 1, - "__pyx_k__format": 1, - "__pyx_k__strides": 1, - "__pyx_k____main__": 1, - "__pyx_k____test__": 1, - "__pyx_k__itemsize": 1, - "__pyx_k__readonly": 1, - "__pyx_k__type_num": 1, - "__pyx_k__byteorder": 1, - "__pyx_k__ValueError": 1, - "__pyx_k__suboffsets": 1, - "__pyx_k__work_module": 1, - "__pyx_k__RuntimeError": 1, - "__pyx_k__pure_py_test": 1, - "__pyx_k__wrapper_inner": 1, - "__pyx_k__do_awesome_work": 1, - "*__pyx_kp_s_1": 1, - "*__pyx_kp_u_11": 1, - "*__pyx_kp_u_12": 1, - "*__pyx_kp_u_15": 1, - "*__pyx_kp_s_2": 1, - "*__pyx_kp_s_3": 1, - "*__pyx_kp_u_5": 1, - "*__pyx_kp_u_7": 1, - "*__pyx_kp_u_9": 1, - "*__pyx_n_s__RuntimeError": 1, - "*__pyx_n_s__ValueError": 1, - "*__pyx_n_s____main__": 1, - "*__pyx_n_s____test__": 1, - "*__pyx_n_s__base": 1, - "*__pyx_n_s__buf": 1, - "*__pyx_n_s__byteorder": 1, - "*__pyx_n_s__descr": 1, - "*__pyx_n_s__do_awesome_work": 1, - "*__pyx_n_s__fields": 1, - "*__pyx_n_s__format": 1, - "*__pyx_n_s__itemsize": 1, - "*__pyx_n_s__names": 1, - "*__pyx_n_s__ndim": 1, - "*__pyx_n_s__np": 1, - "*__pyx_n_s__numpy": 1, - "*__pyx_n_s__obj": 1, - "*__pyx_n_s__ones": 1, - "*__pyx_n_s__pure_py_test": 1, - "*__pyx_n_s__range": 1, - "*__pyx_n_s__readonly": 1, - "*__pyx_n_s__shape": 1, - "*__pyx_n_s__strides": 1, - "*__pyx_n_s__suboffsets": 1, - "*__pyx_n_s__type_num": 1, - "*__pyx_n_s__work_module": 1, - "*__pyx_n_s__wrapper_inner": 1, - "*__pyx_int_5": 1, - "*__pyx_int_15": 1, - "*__pyx_k_tuple_4": 1, - "*__pyx_k_tuple_6": 1, - "*__pyx_k_tuple_8": 1, - "*__pyx_k_tuple_10": 1, - "*__pyx_k_tuple_13": 1, - "*__pyx_k_tuple_14": 1, - "*__pyx_k_tuple_16": 1, - "__pyx_v_num_x": 4, - "*__pyx_v_data_ptr": 2, - "*__pyx_v_answer_ptr": 2, - "__pyx_v_nd": 6, - "*__pyx_v_dims": 2, - "__pyx_v_typenum": 6, - "*__pyx_v_data_np": 2, - "__pyx_v_sum": 6, - "__pyx_t_1": 154, - "*__pyx_t_2": 4, - "*__pyx_t_3": 4, - "*__pyx_t_4": 3, - "__pyx_t_5": 75, - "__pyx_kp_s_1": 1, - "__pyx_filename": 79, - "__pyx_f": 79, - "__pyx_L1_error": 88, - "__pyx_v_dims": 4, - "NPY_DOUBLE": 3, - "__pyx_t_2": 120, - "PyArray_SimpleNewFromData": 2, - "__pyx_v_data_ptr": 2, - "Py_None": 38, - "__pyx_ptype_5numpy_ndarray": 2, - "__pyx_v_data_np": 10, - "__Pyx_GetName": 4, - "__pyx_m": 4, - "__pyx_n_s__work_module": 3, - "__pyx_t_3": 113, - "PyObject_GetAttr": 4, - "__pyx_n_s__do_awesome_work": 3, - "PyTuple_New": 4, - "PyTuple_SET_ITEM": 4, - "__pyx_t_4": 35, - "PyObject_Call": 11, - "PyErr_Occurred": 2, - "__pyx_v_answer_ptr": 2, - "__pyx_L0": 24, - "__pyx_v_num_y": 2, - "__pyx_kp_s_2": 1, - "*__pyx_pf_13wrapper_inner_pure_py_test": 2, - "*__pyx_self": 2, - "*unused": 2, - "PyMethodDef": 1, - "__pyx_mdef_13wrapper_inner_pure_py_test": 1, - "PyCFunction": 1, - "__pyx_pf_13wrapper_inner_pure_py_test": 1, - "METH_NOARGS": 1, - "*__pyx_v_data": 1, - "*__pyx_r": 7, - "*__pyx_t_1": 8, - "__pyx_self": 2, - "__pyx_v_data": 7, - "__pyx_kp_s_3": 1, - "__pyx_n_s__np": 1, - "__pyx_n_s__ones": 1, - "__pyx_k_tuple_4": 1, - "__pyx_r": 39, - "__Pyx_AddTraceback": 7, - "__pyx_pf_5numpy_7ndarray___getbuffer__": 2, - "*__pyx_v_self": 4, - "*__pyx_v_info": 4, - "__pyx_v_flags": 4, - "__pyx_v_copy_shape": 5, - "__pyx_v_i": 6, - "__pyx_v_ndim": 6, - "__pyx_v_endian_detector": 6, - "__pyx_v_little_endian": 8, - "__pyx_v_t": 29, - "*__pyx_v_f": 2, - "*__pyx_v_descr": 2, - "__pyx_v_offset": 9, - "__pyx_v_hasfields": 4, - "__pyx_t_6": 40, - "__pyx_t_7": 9, - "*__pyx_t_8": 1, - "*__pyx_t_9": 1, - "__pyx_v_info": 33, - "__pyx_v_self": 16, - "PyArray_NDIM": 1, - "__pyx_L5": 6, - "PyArray_CHKFLAGS": 2, - "NPY_C_CONTIGUOUS": 1, - "__pyx_builtin_ValueError": 5, - "__pyx_k_tuple_6": 1, - "__pyx_L6": 6, - "NPY_F_CONTIGUOUS": 1, - "__pyx_k_tuple_8": 1, - "__pyx_L7": 2, - "PyArray_DATA": 1, - "strides": 5, - "malloc": 2, - "shape": 3, - "PyArray_STRIDES": 2, - "PyArray_DIMS": 2, - "__pyx_L8": 2, - "suboffsets": 1, - "PyArray_ITEMSIZE": 1, - "PyArray_ISWRITEABLE": 1, - "__pyx_v_f": 31, - "descr": 2, - "__pyx_v_descr": 10, - "PyDataType_HASFIELDS": 2, - "__pyx_L11": 7, - "type_num": 2, - "byteorder": 4, - "__pyx_k_tuple_10": 1, - "__pyx_L13": 2, - "NPY_BYTE": 2, - "__pyx_L14": 18, - "NPY_UBYTE": 2, - "NPY_SHORT": 2, - "NPY_USHORT": 2, - "NPY_INT": 2, - "NPY_UINT": 2, - "NPY_LONG": 1, - "NPY_ULONG": 1, - "NPY_LONGLONG": 1, - "NPY_ULONGLONG": 1, - "NPY_FLOAT": 1, - "NPY_LONGDOUBLE": 1, - "NPY_CFLOAT": 1, - "NPY_CDOUBLE": 1, - "NPY_CLONGDOUBLE": 1, - "NPY_OBJECT": 1, - "__pyx_t_8": 16, - "PyNumber_Remainder": 1, - "__pyx_kp_u_11": 1, - "format": 6, - "__pyx_L12": 2, - "__pyx_t_9": 7, - "__pyx_f_5numpy__util_dtypestring": 1, - "__pyx_L2": 2, - "__pyx_pf_5numpy_7ndarray_1__releasebuffer__": 2, - "PyArray_HASFIELDS": 1, - "*__pyx_f_5numpy_PyArray_MultiIterNew1": 1, - "*__pyx_v_a": 5, - "PyArray_MultiIterNew": 5, - "__pyx_v_a": 5, - "*__pyx_v_b": 4, - "__pyx_v_b": 4, - "*__pyx_v_c": 3, - "__pyx_v_c": 3, - "*__pyx_v_d": 2, - "__pyx_v_d": 2, - "*__pyx_v_e": 1, - "__pyx_v_e": 1, - "*__pyx_v_end": 1, - "*__pyx_v_offset": 1, - "*__pyx_v_child": 1, - "*__pyx_v_fields": 1, - "*__pyx_v_childname": 1, - "*__pyx_v_new_offset": 1, - "*__pyx_v_t": 1, - "*__pyx_t_5": 1, - "__pyx_t_10": 7, - "*__pyx_t_11": 1, - "__pyx_v_child": 8, - "__pyx_v_fields": 7, - "__pyx_v_childname": 4, - "__pyx_v_new_offset": 5, - "PyTuple_GET_SIZE": 2, - "PyTuple_GET_ITEM": 3, - "PyObject_GetItem": 1, - "PyTuple_CheckExact": 1, - "tuple": 3, - "__pyx_ptype_5numpy_dtype": 1, - "__pyx_v_end": 2, - "PyNumber_Subtract": 2, - "PyObject_RichCompare": 8, - "__pyx_int_15": 1, - "Py_LT": 2, - "__pyx_builtin_RuntimeError": 2, - "__pyx_k_tuple_13": 1, - "__pyx_k_tuple_14": 1, - "elsize": 1, - "__pyx_k_tuple_16": 1, - "__pyx_L10": 2, - "Py_EQ": 6 - }, - "COBOL": { - "program": 1, - "-": 19, - "id.": 1, - "hello.": 3, - "procedure": 1, - "division.": 1, - "display": 1, - ".": 3, - "stop": 1, - "run.": 1, - "IDENTIFICATION": 2, - "DIVISION.": 4, - "PROGRAM": 2, - "ID.": 2, - "PROCEDURE": 2, - "DISPLAY": 2, - "STOP": 2, - "RUN.": 2, - "COBOL": 7, - "TEST": 2, - "RECORD.": 1, - "USAGES.": 1, - "COMP": 5, - "PIC": 5, - "S9": 4, - "(": 5, - ")": 5, - "COMP.": 3, - "COMP2": 2 - }, - "CSS": { - ".clearfix": 8, - "{": 1661, - "*zoom": 48, - ";": 4219, - "}": 1705, - "before": 48, - "after": 96, - "display": 135, - "table": 44, - "content": 66, - "line": 97, - "-": 8839, - "height": 141, - "clear": 32, - "both": 30, - ".hide": 12, - "text": 129, - "font": 142, - "/0": 2, - "a": 268, - "color": 711, - "transparent": 148, - "shadow": 254, - "none": 128, - "background": 770, - "border": 912, - ".input": 216, - "block": 133, - "level": 2, - "width": 215, - "%": 366, - "min": 14, - "px": 2535, - "webkit": 364, - "box": 264, - "sizing": 27, - "moz": 316, - "article": 2, - "aside": 2, - "details": 2, - "figcaption": 2, - "figure": 2, - "footer": 2, - "header": 12, - "hgroup": 2, - "nav": 2, - "section": 2, - "audio": 4, - "canvas": 2, - "video": 4, - "inline": 116, - "*display": 20, - "not": 6, - "(": 748, - "[": 384, - "controls": 2, - "]": 384, - ")": 748, - "html": 4, - "size": 104, - "adjust": 6, - "ms": 13, - "focus": 232, - "outline": 30, - "thin": 8, - "dotted": 10, - "#333": 6, - "auto": 50, - "ring": 6, - "offset": 6, - "hover": 144, - "active": 46, - "sub": 4, - "sup": 4, - "position": 342, - "relative": 18, - "vertical": 56, - "align": 72, - "baseline": 4, - "top": 376, - "em": 6, - "bottom": 309, - "img": 14, - "max": 18, - "middle": 20, - "interpolation": 2, - "mode": 2, - "bicubic": 2, - "#map_canvas": 2, - ".google": 2, - "maps": 2, - "button": 18, - "input": 336, - "select": 90, - "textarea": 76, - "margin": 424, - "*overflow": 3, - "visible": 8, - "normal": 18, - "inner": 37, - "padding": 174, - "type": 174, - "appearance": 6, - "cursor": 30, - "pointer": 12, - "label": 20, - "textfield": 2, - "search": 66, - "decoration": 33, - "cancel": 2, - "overflow": 21, - "@media": 2, - "print": 4, - "*": 2, - "important": 18, - "#000": 2, - "visited": 2, - "underline": 6, - "href": 28, - "attr": 4, - "abbr": 6, - "title": 10, - ".ir": 2, - "pre": 16, - "blockquote": 14, - "solid": 93, - "#999": 6, - "page": 6, - "break": 12, - "inside": 4, - "avoid": 6, - "thead": 38, - "group": 120, - "tr": 92, - "@page": 2, - "cm": 2, - "p": 14, - "h2": 14, - "h3": 14, - "orphans": 2, - "widows": 2, - "body": 3, - "family": 10, - "Helvetica": 6, - "Arial": 6, - "sans": 6, - "serif": 6, - "#333333": 26, - "#ffffff": 136, - "#0088cc": 24, - "#005580": 8, - ".img": 6, - "rounded": 2, - "radius": 534, - "polaroid": 2, - "#fff": 10, - "#ccc": 13, - "rgba": 409, - "circle": 18, - ".row": 126, - "left": 489, - "class*": 100, - "float": 84, - ".container": 32, - ".navbar": 332, - "static": 14, - "fixed": 36, - ".span12": 4, - ".span11": 4, - ".span10": 4, - ".span9": 4, - ".span8": 4, - ".span7": 4, - ".span6": 4, - ".span5": 4, - ".span4": 4, - ".span3": 4, - ".span2": 4, - ".span1": 4, - ".offset12": 6, - ".offset11": 6, - ".offset10": 6, - ".offset9": 6, - ".offset8": 6, - ".offset7": 6, - ".offset6": 6, - ".offset5": 6, - ".offset4": 6, - ".offset3": 6, - ".offset2": 6, - ".offset1": 6, - "fluid": 126, - "*margin": 70, - "first": 179, - "child": 301, - ".controls": 28, - "row": 20, - "+": 105, - "*width": 26, - ".pull": 16, - "right": 258, - ".lead": 2, - "weight": 28, - "small": 66, - "strong": 2, - "bold": 14, - "style": 21, - "italic": 4, - "cite": 2, - ".muted": 2, - "#999999": 50, - "a.muted": 4, - "#808080": 2, - ".text": 14, - "warning": 33, - "#c09853": 14, - "a.text": 16, - "#a47e3c": 4, - "error": 10, - "#b94a48": 20, - "#953b39": 6, - "info": 37, - "#3a87ad": 18, - "#2d6987": 6, - "success": 35, - "#468847": 18, - "#356635": 6, - "center": 17, - "h1": 11, - "h4": 20, - "h5": 6, - "h6": 6, - "inherit": 8, - "rendering": 2, - "optimizelegibility": 2, - ".page": 2, - "#eeeeee": 31, - "ul": 84, - "ol": 10, - "li": 205, - "ul.unstyled": 2, - "ol.unstyled": 2, - "list": 44, - "ul.inline": 4, - "ol.inline": 4, - "dl": 2, - "dt": 6, - "dd": 6, - ".dl": 12, - "horizontal": 60, - "hidden": 9, - "ellipsis": 2, - "white": 25, - "space": 23, - "nowrap": 14, - "hr": 2, - "data": 2, - "original": 2, - "help": 2, - "abbr.initialism": 2, - "transform": 4, - "uppercase": 4, - "blockquote.pull": 10, - "q": 4, - "address": 2, - "code": 6, - "Monaco": 2, - "Menlo": 2, - "Consolas": 2, - "monospace": 2, - "#d14": 2, - "#f7f7f9": 2, - "#e1e1e8": 2, - "word": 6, - "all": 10, - "wrap": 6, - "#f5f5f5": 26, - "pre.prettyprint": 2, - ".pre": 2, - "scrollable": 2, - "y": 2, - "scroll": 2, - ".label": 30, - ".badge": 30, - "empty": 7, - "a.label": 4, - "a.badge": 4, - "#f89406": 27, - "#c67605": 4, - "inverse": 110, - "#1a1a1a": 2, - ".btn": 506, - "mini": 34, - "collapse": 12, - "spacing": 3, - ".table": 180, - "th": 70, - "td": 66, - "#dddddd": 16, - "caption": 18, - "colgroup": 18, - "tbody": 68, - "condensed": 4, - "bordered": 76, - "separate": 4, - "*border": 8, - "topleft": 16, - "last": 118, - "topright": 16, - "tfoot": 12, - "bottomleft": 16, - "bottomright": 16, - "striped": 13, - "nth": 4, - "odd": 4, - "#f9f9f9": 12, - "cell": 2, - "td.span1": 2, - "th.span1": 2, - "td.span2": 2, - "th.span2": 2, - "td.span3": 2, - "th.span3": 2, - "td.span4": 2, - "th.span4": 2, - "td.span5": 2, - "th.span5": 2, - "td.span6": 2, - "th.span6": 2, - "td.span7": 2, - "th.span7": 2, - "td.span8": 2, - "th.span8": 2, - "td.span9": 2, - "th.span9": 2, - "td.span10": 2, - "th.span10": 2, - "td.span11": 2, - "th.span11": 2, - "td.span12": 2, - "th.span12": 2, - "tr.success": 4, - "#dff0d8": 6, - "tr.error": 4, - "#f2dede": 6, - "tr.warning": 4, - "#fcf8e3": 6, - "tr.info": 4, - "#d9edf7": 6, - "#d0e9c6": 2, - "#ebcccc": 2, - "#faf2cc": 2, - "#c4e3f3": 2, - "form": 38, - "fieldset": 2, - "legend": 6, - "#e5e5e5": 28, - ".uneditable": 80, - "#555555": 18, - "#cccccc": 18, - "inset": 132, - "transition": 36, - "linear": 204, - ".2s": 16, - "o": 48, - ".075": 12, - ".6": 6, - "multiple": 2, - "#fcfcfc": 2, - "allowed": 4, - "placeholder": 18, - ".radio": 26, - ".checkbox": 26, - ".radio.inline": 6, - ".checkbox.inline": 6, - "medium": 2, - "large": 40, - "xlarge": 2, - "xxlarge": 2, - "append": 120, - "prepend": 82, - "input.span12": 4, - "textarea.span12": 2, - "input.span11": 4, - "textarea.span11": 2, - "input.span10": 4, - "textarea.span10": 2, - "input.span9": 4, - "textarea.span9": 2, - "input.span8": 4, - "textarea.span8": 2, - "input.span7": 4, - "textarea.span7": 2, - "input.span6": 4, - "textarea.span6": 2, - "input.span5": 4, - "textarea.span5": 2, - "input.span4": 4, - "textarea.span4": 2, - "input.span3": 4, - "textarea.span3": 2, - "input.span2": 4, - "textarea.span2": 2, - "input.span1": 4, - "textarea.span1": 2, - "disabled": 36, - "readonly": 10, - ".control": 150, - "group.warning": 32, - ".help": 44, - "#dbc59e": 6, - ".add": 36, - "on": 36, - "group.error": 32, - "#d59392": 6, - "group.success": 32, - "#7aba7b": 6, - "group.info": 32, - "#7ab5d3": 6, - "invalid": 12, - "#ee5f5b": 18, - "#e9322d": 2, - "#f8b9b7": 6, - ".form": 132, - "actions": 10, - "#595959": 2, - ".dropdown": 126, - "menu": 42, - ".popover": 14, - "z": 12, - "index": 14, - "toggle": 84, - ".active": 86, - "#a9dba9": 2, - "#46a546": 2, - "prepend.input": 22, - "input.search": 2, - "query": 22, - ".search": 22, - "*padding": 36, - "image": 187, - "gradient": 175, - "#e6e6e6": 20, - "from": 40, - "to": 75, - "repeat": 66, - "x": 30, - "filter": 57, - "progid": 48, - "DXImageTransform.Microsoft.gradient": 48, - "startColorstr": 30, - "endColorstr": 30, - "GradientType": 30, - "#bfbfbf": 4, - "*background": 36, - "enabled": 18, - "false": 18, - "#b3b3b3": 2, - ".3em": 6, - ".2": 12, - ".05": 24, - ".btn.active": 8, - ".btn.disabled": 4, - "#d9d9d9": 4, - "s": 25, - ".15": 24, - "default": 12, - "opacity": 15, - "alpha": 7, - "class": 26, - "primary.active": 6, - "warning.active": 6, - "danger.active": 6, - "success.active": 6, - "info.active": 6, - "inverse.active": 6, - "primary": 14, - "#006dcc": 2, - "#0044cc": 20, - "#002a80": 2, - "primary.disabled": 2, - "#003bb3": 2, - "#003399": 2, - "#faa732": 3, - "#fbb450": 16, - "#ad6704": 2, - "warning.disabled": 2, - "#df8505": 2, - "danger": 21, - "#da4f49": 2, - "#bd362f": 20, - "#802420": 2, - "danger.disabled": 2, - "#a9302a": 2, - "#942a25": 2, - "#5bb75b": 2, - "#62c462": 16, - "#51a351": 20, - "#387038": 2, - "success.disabled": 2, - "#499249": 2, - "#408140": 2, - "#49afcd": 2, - "#5bc0de": 16, - "#2f96b4": 20, - "#1f6377": 2, - "info.disabled": 2, - "#2a85a0": 2, - "#24748c": 2, - "#363636": 2, - "#444444": 10, - "#222222": 32, - "#000000": 14, - "inverse.disabled": 2, - "#151515": 12, - "#080808": 2, - "button.btn": 4, - "button.btn.btn": 6, - ".btn.btn": 6, - "link": 28, - "url": 4, - "no": 2, - ".icon": 288, - ".nav": 308, - "pills": 28, - "submenu": 8, - "glass": 2, - "music": 2, - "envelope": 2, - "heart": 2, - "star": 4, - "user": 2, - "film": 2, - "ok": 6, - "remove": 6, - "zoom": 5, - "in": 10, - "out": 10, - "off": 4, - "signal": 2, - "cog": 2, - "trash": 2, - "home": 2, - "file": 2, - "time": 2, - "road": 2, - "download": 4, - "alt": 6, - "upload": 2, - "inbox": 2, - "play": 4, - "refresh": 2, - "lock": 2, - "flag": 2, - "headphones": 2, - "volume": 6, - "down": 12, - "up": 12, - "qrcode": 2, - "barcode": 2, - "tag": 2, - "tags": 2, - "book": 2, - "bookmark": 2, - "camera": 2, - "justify": 2, - "indent": 4, - "facetime": 2, - "picture": 2, - "pencil": 2, - "map": 2, - "marker": 2, - "tint": 2, - "edit": 2, - "share": 4, - "check": 2, - "move": 2, - "step": 4, - "backward": 6, - "fast": 4, - "pause": 2, - "stop": 32, - "forward": 6, - "eject": 2, - "chevron": 8, - "plus": 4, - "sign": 16, - "minus": 4, - "question": 2, - "screenshot": 2, - "ban": 2, - "arrow": 21, - "resize": 8, - "full": 2, - "asterisk": 2, - "exclamation": 2, - "gift": 2, - "leaf": 2, - "fire": 2, - "eye": 4, - "open": 4, - "close": 4, - "plane": 2, - "calendar": 2, - "random": 2, - "comment": 2, - "magnet": 2, - "retweet": 2, - "shopping": 2, - "cart": 2, - "folder": 4, - "hdd": 2, - "bullhorn": 2, - "bell": 2, - "certificate": 2, - "thumbs": 4, - "hand": 8, - "globe": 2, - "wrench": 2, - "tasks": 2, - "briefcase": 2, - "fullscreen": 2, - "toolbar": 8, - ".btn.large": 4, - ".large.dropdown": 2, - "group.open": 18, - ".125": 6, - ".btn.dropdown": 2, - "primary.dropdown": 2, - "warning.dropdown": 2, - "danger.dropdown": 2, - "success.dropdown": 2, - "info.dropdown": 2, - "inverse.dropdown": 2, - ".caret": 70, - ".dropup": 2, - ".divider": 8, - "tabs": 94, - "#ddd": 38, - "stacked": 24, - "tabs.nav": 12, - "pills.nav": 4, - ".dropdown.active": 4, - ".open": 8, - "li.dropdown.open.active": 14, - "li.dropdown.open": 14, - ".tabs": 62, - ".tabbable": 8, - ".tab": 8, - "below": 18, - "pane": 4, - ".pill": 6, - ".disabled": 22, - "*position": 2, - "*z": 2, - "#fafafa": 2, - "#f2f2f2": 22, - "#d4d4d4": 2, - "collapse.collapse": 2, - ".brand": 14, - "#777777": 12, - ".1": 24, - ".nav.pull": 2, - "navbar": 28, - "#ededed": 2, - "navbar.active": 8, - "navbar.disabled": 4, - "bar": 21, - "absolute": 8, - "li.dropdown": 12, - "li.dropdown.active": 8, - "menu.pull": 8, - "#1b1b1b": 2, - "#111111": 18, - "#252525": 2, - "#515151": 2, - "query.focused": 2, - "#0e0e0e": 2, - "#040404": 18, - ".breadcrumb": 8, - ".pagination": 78, - "span": 38, - "centered": 2, - ".pager": 34, - ".next": 4, - ".previous": 4, - ".thumbnails": 12, - ".thumbnail": 6, - "ease": 12, - "a.thumbnail": 4, - ".caption": 2, - ".alert": 34, - "#fbeed5": 2, - ".close": 2, - "#d6e9c6": 2, - "#eed3d7": 2, - "#bce8f1": 2, - "@": 8, - "keyframes": 8, - "progress": 15, - "stripes": 15, - "@keyframes": 2, - ".progress": 22, - "#f7f7f7": 3, - ".bar": 22, - "#0e90d2": 2, - "#149bdf": 11, - "#0480be": 10, - "deg": 20, - ".progress.active": 1, - "animation": 5, - "infinite": 5, - "#dd514c": 1, - "#c43c35": 5, - "danger.progress": 1, - "#5eb95e": 1, - "#57a957": 5, - "success.progress": 1, - "#4bb1cf": 1, - "#339bb9": 5, - "info.progress": 1, - "warning.progress": 1, - ".hero": 3, - "unit": 3, - "letter": 1, - ".media": 11, - "object": 1, - "heading": 1, - ".tooltip": 7, - "visibility": 1, - ".tooltip.in": 1, - ".tooltip.top": 2, - ".tooltip.right": 2, - ".tooltip.bottom": 2, - ".tooltip.left": 2, - "clip": 3, - ".popover.top": 3, - ".popover.right": 3, - ".popover.bottom": 3, - ".popover.left": 3, - "#ebebeb": 1, - ".arrow": 12, - ".modal": 5, - "backdrop": 2, - "backdrop.fade": 1, - "backdrop.fade.in": 1 - }, - "Ceylon": { - "doc": 2, - "by": 1, - "shared": 5, - "void": 1, - "test": 1, - "(": 4, - ")": 4, - "{": 3, - "print": 1, - ";": 4, - "}": 3, - "class": 1, - "Test": 2, - "name": 4, - "satisfies": 1, - "Comparable": 1, - "": 1, - "String": 2, - "actual": 2, - "string": 1, - "Comparison": 1, - "compare": 1, - "other": 1, - "return": 1, - "<=>": 1, - "other.name": 1 - }, - "Chapel": { - "//": 150, - "use": 5, - "BlockDist": 2, - "CyclicDist": 1, - "BlockCycDist": 1, - "ReplicatedDist": 2, - ";": 516, - "DimensionalDist2D": 2, - "ReplicatedDim": 2, - "BlockCycDim": 1, - "config": 10, - "const": 59, - "n": 16, - "Space": 12, - "{": 122, - "}": 120, - "BlockSpace": 2, - "dmapped": 8, - "Block": 4, - "(": 626, - "boundingBox": 2, - ")": 626, - "var": 72, - "BA": 3, - "[": 920, - "]": 920, - "int": 21, - "forall": 43, - "ba": 4, - "in": 76, - "do": 62, - "here.id": 7, - "writeln": 53, - "MyLocaleView": 5, - "#numLocales": 1, - "MyLocales": 5, - "locale": 1, - "reshape": 2, - "Locales": 6, - "BlockSpace2": 2, - "targetLocales": 1, - "BA2": 3, - "CyclicSpace": 2, - "Cyclic": 1, - "startIdx": 2, - "Space.low": 5, - "CA": 3, - "ca": 2, - "BlkCycSpace": 2, - "BlockCyclic": 1, - "blocksize": 1, - "BCA": 3, - "bca": 2, - "ReplicatedSpace": 2, - "RA": 11, - "ra": 4, - "RA.numElements": 1, - "A": 13, - "i": 250, - "j": 25, - "i*100": 1, - "+": 334, - "on": 7, - "here": 3, - "LocaleSpace.high": 3, - "nl1": 2, - "nl2": 2, - "if": 98, - "numLocales": 5, - "then": 80, - "else": 16, - "numLocales/2": 1, - "#nl1": 2, - "#nl2": 1, - "#nl1*nl2": 1, - "DimReplicatedBlockcyclicSpace": 2, - "new": 7, - "BlockCyclicDim": 1, - "lowIdx": 1, - "blockSize": 1, - "DRBA": 3, - "for": 36, - "locId1": 2, - "drba": 2, - "Helper": 2, - "print": 5, - "to": 9, - "the": 10, - "console": 1, - "Time": 2, - "get": 3, - "timing": 6, - "routines": 1, - "benchmarking": 1, - "block": 1, - "-": 345, - "distributed": 1, - "arrays": 6, - "luleshInit": 1, - "initialization": 1, - "code": 1, - "data": 1, - "set": 4, - "param": 25, - "useBlockDist": 5, - "CHPL_COMM": 1, - "use3DRepresentation": 4, - "false": 4, - "useSparseMaterials": 3, - "true": 5, - "printWarnings": 3, - "&&": 9, - "luleshInit.filename": 1, - "halt": 5, - "initialEnergy": 2, - "e": 84, - "initial": 1, - "energy": 5, - "value": 1, - "showProgress": 3, - "time": 9, - "and": 4, - "dt": 14, - "values": 1, - "each": 1, - "step": 1, - "debug": 8, - "various": 1, - "info": 1, - "doTiming": 4, - "main": 3, - "timestep": 1, - "loop": 2, - "printCoords": 2, - "final": 1, - "computed": 1, - "coordinates": 2, - "XI_M": 2, - "XI_M_SYMM": 4, - "XI_M_FREE": 3, - "XI_P": 2, - "c": 7, - "XI_P_SYMM": 3, - "XI_P_FREE": 3, - "ETA_M": 2, - "ETA_M_SYMM": 4, - "ETA_M_FREE": 3, - "ETA_P": 2, - "c0": 1, - "ETA_P_SYMM": 3, - "ETA_P_FREE": 3, - "ZETA_M": 2, - "ZETA_M_SYMM": 4, - "ZETA_M_FREE": 3, - "ZETA_P": 2, - "xc00": 1, - "ZETA_P_SYMM": 3, - "ZETA_P_FREE": 3, - "numElems": 2, - "numNodes": 1, - "initProblemSize": 1, - "ElemSpace": 4, - "#elemsPerEdge": 3, - "#numElems": 1, - "NodeSpace": 4, - "#nodesPerEdge": 3, - "#numNodes": 1, - "Elems": 45, - "Nodes": 16, - "x": 111, - "y": 107, - "z": 107, - "real": 60, - "nodesPerElem": 6, - "elemToNode": 7, - "nodesPerElem*index": 1, - "lxim": 3, - "lxip": 3, - "letam": 3, - "letap": 3, - "lzetam": 3, - "lzetap": 3, - "index": 4, - "XSym": 4, - "YSym": 4, - "ZSym": 4, - "sparse": 3, - "subdomain": 3, - "u_cut": 5, - "hgcoef": 1, - "qstop": 2, - "monoq_max_slope": 7, - "monoq_limiter_mult": 7, - "e_cut": 3, - "p_cut": 6, - "ss4o3": 1, - "/3.0": 2, - "q_cut": 2, - "v_cut": 2, - "qlc_monoq": 2, - "qqc_monoq": 2, - "qqc": 1, - "qqc2": 1, - "*": 260, - "qqc**2": 1, - "eosvmax": 14, - "eosvmin": 9, - "pmin": 7, - "emin": 7, - "dvovmax": 1, - "refdens": 3, - "deltatimemultlb": 1, - "deltatimemultub": 1, - "dtmax": 1, - "stoptime": 3, - "maxcycles": 3, - "max": 2, - "dtfixed": 2, - "MatElems": 9, - "MatElemsType": 2, - "enumerateMatElems": 2, - "proc": 44, - "type": 1, - "return": 15, - "Elems.type": 1, - "iter": 3, - "yield": 3, - "elemBC": 16, - "p": 10, - "pressure": 1, - "q": 13, - "ql": 3, - "linear": 1, - "term": 2, - "qq": 3, - "quadratic": 1, - "v": 9, - "//relative": 1, - "volume": 21, - "vnew": 9, - "volo": 5, - "reference": 1, - "delv": 3, - "m_vnew": 1, - "m_v": 1, - "vdov": 4, - "derivative": 1, - "over": 2, - "arealg": 2, - "elem": 3, - "characteristic": 2, - "length": 2, - "ss": 2, - "elemMass": 4, - "mass": 12, - "xd": 8, - "yd": 8, - "zd": 8, - "velocities": 2, - "xdd": 3, - "ydd": 3, - "zdd": 3, - "acceleration": 1, - "fx": 8, - "fy": 8, - "fz": 8, - "atomic": 2, - "forces": 1, - "nodalMass": 3, - "current": 1, - "deltatime": 3, - "variable": 1, - "increment": 1, - "dtcourant": 1, - "e20": 2, - "courant": 1, - "constraint": 2, - "dthydro": 1, - "change": 2, - "cycle": 5, - "iteration": 1, - "count": 1, - "simulation": 1, - "initLulesh": 2, - "st": 4, - "getCurrentTime": 4, - "while": 4, - "<": 42, - "iterTime": 2, - "TimeIncrement": 2, - "LagrangeLeapFrog": 1, - "deprint": 3, - "format": 9, - "et": 3, - "/cycle": 1, - "outfile": 1, - "open": 1, - "iomode.cw": 1, - "writer": 1, - "outfile.writer": 1, - "fmtstr": 4, - "writer.writeln": 1, - "writer.close": 1, - "outfile.close": 1, - "initCoordinates": 1, - "initElemToNodeMapping": 1, - "initGreekVars": 1, - "initXSyms": 1, - "initYSyms": 1, - "initZSyms": 1, - "//calculated": 1, - "fly": 1, - "using": 1, - "elemToNodes": 3, - "initMasses": 2, - "octantCorner": 2, - "initBoundaryConditions": 2, - "massAccum": 3, - "eli": 18, - "x_local": 11, - "y_local": 11, - "z_local": 11, - "*real": 40, - "localizeNeighborNodes": 6, - "CalcElemVolume": 3, - "neighbor": 2, - ".add": 1, - ".read": 1, - "/": 26, - "surfaceNode": 8, - "mask": 16, - "<<": 2, - "&": 18, - "f": 4, - "|": 14, - "xf0": 4, - "xcc": 4, - "check": 3, - "loc": 4, - "maxloc": 1, - "reduce": 2, - "zip": 1, - "freeSurface": 3, - "initFreeSurface": 1, - "b": 4, - "inline": 5, - "ref": 19, - "noi": 4, - "TripleProduct": 4, - "x1": 1, - "y1": 1, - "z1": 1, - "x2": 1, - "y2": 1, - "z2": 1, - "x3": 1, - "y3": 1, - "z3": 1, - "x1*": 1, - "y2*z3": 1, - "z2*y3": 1, - "x2*": 1, - "z1*y3": 1, - "y1*z3": 1, - "x3*": 1, - "y1*z2": 1, - "z1*y2": 1, - "dx61": 2, - "dy61": 2, - "dz61": 2, - "dx70": 2, - "dy70": 2, - "dz70": 2, - "dx63": 2, - "dy63": 2, - "dz63": 2, - "dx20": 2, - "dy20": 2, - "dz20": 2, - "dx50": 2, - "dy50": 2, - "dz50": 2, - "dx64": 2, - "dy64": 2, - "dz64": 2, - "dx31": 2, - "dy31": 2, - "dz31": 2, - "dx72": 2, - "dy72": 2, - "dz72": 2, - "dx43": 2, - "dy43": 2, - "dz43": 2, - "dx57": 2, - "dy57": 2, - "dz57": 2, - "dx14": 2, - "dy14": 2, - "dz14": 2, - "dx25": 2, - "dy25": 2, - "dz25": 2, - "InitStressTermsForElems": 1, - "sigxx": 2, - "sigyy": 2, - "sigzz": 2, - "D": 9, - "CalcElemShapeFunctionDerivatives": 2, - "b_x": 18, - "b_y": 18, - "b_z": 18, - "fjxxi": 5, - ".125": 9, - "fjxet": 6, - "fjxze": 5, - "fjyxi": 5, - "fjyet": 6, - "fjyze": 5, - "fjzxi": 5, - "fjzet": 6, - "fjzze": 5, - "cjxxi": 5, - "cjxet": 6, - "cjxze": 5, - "cjyxi": 5, - "cjyet": 6, - "cjyze": 5, - "cjzxi": 5, - "cjzet": 6, - "cjzze": 5, - "CalcElemNodeNormals": 1, - "pfx": 15, - "pfy": 15, - "pfz": 15, - "ElemFaceNormal": 7, - "n1": 23, - "n2": 23, - "n3": 23, - "n4": 23, - "bisectX0": 3, - "bisectY0": 3, - "bisectZ0": 3, - "bisectX1": 3, - "bisectY1": 3, - "bisectZ1": 3, - "areaX": 5, - "areaY": 5, - "areaZ": 5, - "rx": 6, - "ry": 6, - "rz": 6, - "//results": 1, - "SumElemStressesToNodeForces": 1, - "stress_xx": 2, - "stress_yy": 2, - "stress_zz": 2, - "CalcElemVolumeDerivative": 1, - "VoluDer": 9, - "n0": 13, - "n5": 13, - "ox": 1, - "oy": 1, - "oz": 1, - "ox/12.0": 1, - "oy/12.0": 1, - "oz/12.0": 1, - "dvdx": 10, - "dvdy": 10, - "dvdz": 10, - "CalcElemFBHourglassForce": 1, - "hourgam": 7, - "coefficient": 4, - "hgfx": 2, - "hgfy": 2, - "hgfz": 2, - "hx": 3, - "hy": 3, - "hz": 3, - "shx": 3, - "shy": 3, - "shz": 3, - "CalcElemCharacteristicLength": 2, - "AreaFace": 7, - "p0": 7, - "p1": 7, - "p2": 7, - "p3": 7, - "gx": 5, - "gy": 5, - "gz": 5, - "area": 2, - "charLength": 2, - "sqrt": 10, - "CalcElemVelocityGradient": 2, - "xvel": 25, - "yvel": 25, - "zvel": 25, - "detJ": 5, - "d": 12, - "inv_detJ": 10, - "dyddx": 2, - "dxddy": 2, - "dzddx": 2, - "dxddz": 2, - "dzddy": 2, - "dyddz": 2, - "CalcPressureForElems": 4, - "p_new": 17, - "bvc": 15, - "pbvc": 14, - "e_old": 7, - "compression": 10, - "vnewc": 22, - "c1s": 3, - "abs": 8, - "//impossible": 1, - "targetdt": 1, - "//don": 1, - "t": 3, - "have": 2, - "negative": 2, - "determ": 1, - "can": 2, - "we": 1, - "be": 2, - "able": 1, - "write": 1, - "these": 1, - "as": 1, - "follows": 1, - "CalcVelocityForNodes": 1, - "local": 8, - "xdtmp": 4, - "ydtmp": 4, - "zdtmp": 4, - "CalcPositionForNodes": 1, - "ijk": 7, - "CalcLagrangeElements": 1, - "dxx": 6, - "dyy": 6, - "dzz": 6, - "CalcKinematicsForElems": 2, - "k": 20, - "vdovthird": 4, - "<=>": 7, - "0": 5, - "all": 1, - "elements": 3, - "8": 4, - "6": 1, - "nodal": 2, - "from": 2, - "global": 3, - "copy": 2, - "into": 3, - "xd_local": 4, - "yd_local": 4, - "zd_local": 4, - "dt2": 4, - "5": 1, - "wish": 1, - "this": 2, - "was": 1, - "too": 1, - "calculations": 1, - "relativeVolume": 3, - "1": 2, - "put": 1, - "velocity": 3, - "gradient": 3, - "quantities": 1, - "their": 1, - "2": 1, - "3": 1, - "sungeun": 1, - "Temporary": 1, - "array": 4, - "reused": 1, - "throughout": 1, - "delv_xi": 12, - "delv_eta": 12, - "delv_zeta": 12, - "position": 1, - "delx_xi": 7, - "delx_eta": 7, - "delx_zeta": 7, - "CalcQForElems": 1, - "MONOTONIC": 1, - "Q": 1, - "option": 1, - "Calculate": 1, - "gradients": 2, - "CalcMonotonicQGradientsForElems": 2, - "Transfer": 2, - "veloctiy": 1, - "first": 1, - "order": 1, - "problem": 1, - "commElements": 1, - "CommElements": 1, - "monoQ": 1, - "*/": 1, - "CalcMonotonicQForElems": 2, - "ApplyMaterialPropertiesForElems": 1, - "matelm": 2, - "vc": 6, - "exit": 1, - "EvalEOSForElems": 2, - "UpdateVolumesForElems": 1, - "tmpV": 4, - "ptiny": 9, - "xl": 26, - "yl": 26, - "zl": 26, - "xvl": 26, - "yvl": 26, - "zvl": 26, - "vol": 5, - "norm": 20, - "ax": 7, - "ay": 7, - "az": 7, - "dxv": 4, - "dyv": 4, - "dzv": 4, - "dxj": 1, - "dyj": 1, - "dzj": 1, - "dxi": 1, - "dyi": 1, - "dzi": 1, - "dxk": 1, - "dyk": 1, - "dzk": 1, - "dyi*dzj": 1, - "dzi*dyj": 1, - "dzi*dxj": 1, - "dxi*dzj": 1, - "dxi*dyj": 1, - "dyi*dxj": 1, - "ax*ax": 3, - "ay*ay": 3, - "az*az": 3, - "ax*dxv": 3, - "ay*dyv": 3, - "az*dzv": 3, - "dyj*dzk": 1, - "dzj*dyk": 1, - "dzj*dxk": 1, - "dxj*dzk": 1, - "dxj*dyk": 1, - "dyj*dxk": 1, - "dyk*dzi": 1, - "dzk*dyi": 1, - "dzk*dxi": 1, - "dxk*dzi": 1, - "dxk*dyi": 1, - "dyk*dxi": 1, - "//got": 1, - "rid": 1, - "of": 3, - "call": 1, - "through": 1, - "bcMask": 7, - "delvm": 27, - "delvp": 27, - "select": 6, - "when": 18, - "phixi": 10, - "phieta": 10, - "phizeta": 10, - "qlin": 4, - "qquad": 4, - "delvxxi": 4, - "delvxeta": 4, - "delvxzeta": 4, - "rho": 3, - "delvxxi**2": 1, - "phixi**2": 1, - "delvxeta**2": 1, - "phieta**2": 1, - "delvxzeta**2": 1, - "phizeta**2": 1, - "rho0": 8, - "delvc": 11, - "p_old": 8, - "q_old": 7, - "compHalfStep": 8, - "qq_old": 7, - "ql_old": 7, - "work": 5, - "e_new": 25, - "q_new": 11, - "vchalf": 2, - "CalcEnergyForElems": 2, - "CalcSoundSpeedForElems": 2, - "sixth": 2, - "pHalfStep": 5, - "vhalf": 1, - "ssc": 18, - "vhalf**2": 1, - "q_tilde": 4, - "**2": 6, - "enewc": 2, - "pnewc": 2, - "ssTmp": 4, - "elemToNodesTuple": 1, - "title": 2, - "string": 1, - "pi": 1, - "solarMass": 7, - "pi**2": 1, - "daysPerYear": 13, - "record": 1, - "body": 6, - "pos": 5, - "does": 1, - "not": 1, - "after": 1, - "it": 1, - "is": 1, - "up": 1, - "bodies": 8, - "numbodies": 5, - "bodies.numElements": 1, - "initSun": 2, - "writef": 2, - "advance": 2, - "b.v": 2, - "b.mass": 1, - ".v": 1, - "updateVelocities": 2, - "b1": 2, - "b2": 2, - "dpos": 4, - "b1.pos": 2, - "b2.pos": 2, - "mag": 3, - "sumOfSquares": 4, - "**3": 1, - "b1.v": 2, - "b2.mass": 2, - "b2.v": 1, - "b1.mass": 3, - "b.pos": 1, - "Random": 1, - "random": 1, - "number": 1, - "generation": 1, - "Timer": 2, - "class": 1, - "timer": 2, - "sort": 1, - "**15": 1, - "size": 1, - "sorted": 1, - "thresh": 6, - "recursive": 1, - "depth": 1, - "serialize": 1, - "verbose": 7, - "out": 1, - "many": 1, - "bool": 1, - "disable": 1, - "numbers": 1, - "fillRandom": 1, - "timer.start": 1, - "pqsort": 4, - "timer.stop": 1, - "timer.elapsed": 1, - "arr": 32, - "low": 12, - "arr.domain.low": 1, - "high": 14, - "arr.domain.high": 1, - "where": 2, - "arr.rank": 2, - "bubbleSort": 2, - "pivotVal": 9, - "findPivot": 2, - "pivotLoc": 3, - "partition": 2, - "serial": 1, - "cobegin": 1, - "mid": 7, - "ilo": 9, - "ihi": 6, - "low..high": 2 - }, - "Cirru": { - "print": 38, - "array": 14, - "int": 36, - "string": 7, - "set": 12, - "f": 3, - "block": 1, - "(": 20, - "a": 22, - "b": 7, - "c": 9, - ")": 20, - "call": 1, - "bool": 6, - "true": 1, - "false": 1, - "yes": 1, - "no": 1, - "map": 8, - "m": 3, - "float": 1, - "require": 1, - "./stdio.cr": 1, - "self": 2, - "child": 1, - "under": 2, - "parent": 1, - "get": 4, - "x": 2, - "just": 4, - "-": 4, - "code": 4, - "eval": 2, - "nothing": 1, - "container": 3 - }, - "Clojure": { - "(": 258, - "defn": 14, - "prime": 2, - "[": 67, - "n": 9, - "]": 67, - "not": 9, - "-": 70, - "any": 3, - "zero": 2, - "map": 3, - "#": 14, - "rem": 2, - "%": 6, - ")": 259, - "range": 3, - ";": 353, - "while": 3, - "stops": 1, - "at": 2, - "the": 5, - "first": 2, - "collection": 1, - "element": 1, - "that": 1, - "evaluates": 1, - "to": 2, - "false": 6, - "like": 1, - "take": 1, - "for": 4, - "x": 8, - "html": 2, - "head": 2, - "meta": 3, - "{": 17, - "charset": 2, - "}": 17, - "link": 2, - "rel": 2, - "href": 6, - "script": 1, - "src": 1, - "body": 2, - "div.nav": 1, - "p": 4, - "Copyright": 1, - "c": 1, - "Alan": 1, - "Dipert": 1, - "and": 8, - "Micha": 1, - "Niskin.": 1, - "All": 1, - "rights": 1, - "reserved.": 1, - "The": 1, - "use": 3, - "distribution": 1, - "terms": 2, - "this": 6, - "software": 2, - "are": 2, - "covered": 1, - "by": 4, - "Eclipse": 1, - "Public": 1, - "License": 1, - "http": 2, - "//opensource.org/licenses/eclipse": 1, - "php": 1, - "which": 2, - "can": 1, - "be": 2, - "found": 1, - "in": 4, - "file": 1, - "epl": 1, - "v10.html": 1, - "root": 1, - "of": 2, - "distribution.": 1, - "By": 1, - "using": 1, - "fashion": 1, - "you": 1, - "agreeing": 1, - "bound": 1, - "license.": 1, - "You": 1, - "must": 1, - "remove": 3, - "notice": 1, - "or": 2, - "other": 1, - "from": 1, - "software.": 1, - "page": 2, - "refer": 4, - "clojure": 1, - "exclude": 1, - "nth": 2, - "require": 2, - "tailrecursion.hoplon.reload": 1, - "reload": 2, - "all": 5, - "tailrecursion.hoplon.util": 1, - "name": 1, - "pluralize": 2, - "tailrecursion.hoplon.storage": 1, - "atom": 1, - "local": 3, - "storage": 2, - "utility": 1, - "functions": 2, - "declare": 1, - "route": 11, - "state": 15, - "editing": 13, - "def": 4, - "mapvi": 2, - "comp": 1, - "vec": 2, - "indexed": 1, - "dissocv": 2, - "v": 15, - "i": 20, - "let": 3, - "z": 4, - "dec": 1, - "count": 5, - "cond": 2, - "neg": 1, - "pop": 1, - "pos": 1, - "into": 3, - "subvec": 2, - "inc": 2, - "decorate": 2, - "todo": 10, - "done": 12, - "completed": 12, - "text": 14, - "assoc": 4, - "visible": 2, - "empty": 8, - "persisted": 1, - "cell": 12, - "AKA": 1, - "stem": 1, - "store": 1, - "cells": 2, - "defc": 6, - "loaded": 1, - "nil": 3, - "formula": 1, - "computed": 1, - "filter": 2, - "active": 5, - "plural": 1, - "item": 1, - "todos": 2, - "list": 1, - "transition": 1, - "t": 5, - "destroy": 3, - "swap": 6, - "clear": 2, - "&": 1, - "_": 4, - "new": 5, - "when": 3, - "conj": 1, - "mapv": 1, - "fn": 3, - "reset": 1, - "if": 3, - "lang": 1, - "equiv": 1, - "content": 1, - "title": 1, - "noscript": 1, - "div": 3, - "id": 20, - "section": 2, - "header": 1, - "h1": 1, - "form": 2, - "on": 11, - "submit": 2, - "do": 15, - "val": 4, - "value": 3, - "input": 4, - "type": 8, - "autofocus": 1, - "true": 5, - "placeholder": 1, - "blur": 2, - "toggle": 4, - "attr": 2, - "checked": 2, - "click": 4, - "label": 2, - "ul": 2, - "loop": 2, - "tpl": 1, - "reverse": 1, - "bind": 1, - "ids": 1, - "done#": 3, - "edit#": 3, - "bindings": 1, - "edit": 3, - "show": 2, - "li": 4, - "class": 8, - "dblclick": 1, - "@i": 6, - "button": 2, - "focus": 1, - "@edit": 2, - "change": 1, - "footer": 2, - "span": 2, - "strong": 1, - "a": 7, - "selected": 3, - "array": 3, - "aseq": 8, - "make": 1, - "seq": 1, - "<": 1, - "aset": 1, - "recur": 1, - "next": 1, - "defprotocol": 1, - "ISound": 4, - "sound": 5, - "deftype": 2, - "Cat": 1, - "Dog": 1, - "extend": 1, - "default": 1, - "rand": 2, - "scm*": 1, - "random": 1, - "real": 1, - "clj": 1, - "ns": 2, - "c2.svg": 2, - "c2.core": 2, - "only": 4, - "unify": 2, - "c2.maths": 2, - "Pi": 2, - "Tau": 2, - "radians": 2, - "per": 2, - "degree": 2, - "sin": 2, - "cos": 2, - "mean": 2, - "cljs": 3, - "c2.dom": 1, - "as": 1, - "dom": 1, - "Stub": 1, - "float": 2, - "does": 1, - "exist": 1, - "runtime": 1, - "identity": 1, - "xy": 1, - "coordinates": 7, - "vector": 1, - "y": 1, - "deftest": 1, - "function": 1, - "tests": 1, - "is": 7, - "contains": 1, - "foo": 6, - "bar": 4, - "select": 1, - "keys": 2, - "baz": 4, - "vals": 1 - }, - "CoffeeScript": { - "CoffeeScript": 1, - "require": 21, - "CoffeeScript.require": 1, - "CoffeeScript.eval": 1, - "(": 193, - "code": 20, - "options": 16, - "{": 31, - "}": 34, - ")": 196, - "-": 107, - "options.bare": 2, - "on": 3, - "eval": 2, - "CoffeeScript.compile": 2, - "CoffeeScript.run": 3, - "Function": 1, - "return": 29, - "unless": 19, - "window": 1, - "CoffeeScript.load": 2, - "url": 2, - "callback": 35, - "xhr": 2, - "new": 12, - "window.ActiveXObject": 1, - "or": 22, - "XMLHttpRequest": 1, - "xhr.open": 1, - "true": 8, - "xhr.overrideMimeType": 1, - "if": 102, - "of": 7, - "xhr.onreadystatechange": 1, - "xhr.readyState": 1, - "is": 36, - "xhr.status": 1, - "in": 32, - "[": 134, - "]": 134, - "xhr.responseText": 1, - "else": 53, - "throw": 3, - "Error": 1, - "xhr.send": 1, - "null": 15, - "runScripts": 3, - "scripts": 2, - "document.getElementsByTagName": 1, - "coffees": 2, - "s": 10, - "for": 14, - "when": 16, - "s.type": 1, - "index": 4, - "length": 4, - "coffees.length": 1, - "do": 2, - "execute": 3, - "script": 7, - "+": 31, - ".type": 1, - "script.src": 2, - "script.innerHTML": 1, - "window.addEventListener": 1, - "addEventListener": 1, - "no": 3, - "attachEvent": 1, - "class": 11, - "Animal": 3, - "constructor": 6, - "@name": 2, - "move": 3, - "meters": 2, - "alert": 4, - "Snake": 2, - "extends": 6, - "super": 4, - "Horse": 2, - "sam": 1, - "tom": 1, - "sam.move": 1, - "tom.move": 1, - "#": 35, - "fs": 2, - "path": 3, - "Lexer": 3, - "RESERVED": 3, - "parser": 1, - "vm": 1, - "require.extensions": 3, - "module": 1, - "filename": 6, - "content": 4, - "compile": 5, - "fs.readFileSync": 1, - "module._compile": 1, - "require.registerExtension": 2, - "exports.VERSION": 1, - "exports.RESERVED": 1, - "exports.helpers": 2, - "exports.compile": 1, - "merge": 1, - "try": 3, - "js": 5, - "parser.parse": 3, - "lexer.tokenize": 3, - ".compile": 1, - "options.header": 1, - "catch": 2, - "err": 20, - "err.message": 2, - "options.filename": 5, - "header": 1, - "exports.tokens": 1, - "exports.nodes": 1, - "source": 5, - "typeof": 2, - "exports.run": 1, - "mainModule": 1, - "require.main": 1, - "mainModule.filename": 4, - "process.argv": 1, - "then": 24, - "fs.realpathSync": 2, - "mainModule.moduleCache": 1, - "and": 20, - "mainModule.paths": 1, - "._nodeModulePaths": 1, - "path.dirname": 2, - "path.extname": 1, - "isnt": 7, - "mainModule._compile": 2, - "exports.eval": 1, - "code.trim": 1, - "Script": 2, - "vm.Script": 1, - "options.sandbox": 4, - "instanceof": 2, - "Script.createContext": 2, - ".constructor": 1, - "sandbox": 8, - "k": 4, - "v": 4, - "own": 2, - "sandbox.global": 1, - "sandbox.root": 1, - "sandbox.GLOBAL": 1, - "global": 3, - "sandbox.__filename": 3, - "||": 3, - "sandbox.__dirname": 1, - "sandbox.module": 2, - "sandbox.require": 2, - "Module": 2, - "_module": 3, - "options.modulename": 1, - "_require": 2, - "Module._load": 1, - "_module.filename": 1, - "r": 4, - "Object.getOwnPropertyNames": 1, - "_require.paths": 1, - "_module.paths": 1, - "Module._nodeModulePaths": 1, - "process.cwd": 1, - "_require.resolve": 1, - "request": 2, - "Module._resolveFilename": 1, - "o": 4, - "o.bare": 1, - "ensure": 1, - "value": 25, - "vm.runInThisContext": 1, - "vm.runInContext": 1, - "lexer": 1, - "parser.lexer": 1, - "lex": 1, - "tag": 33, - "@yytext": 1, - "@yylineno": 1, - "@tokens": 7, - "@pos": 2, - "setInput": 1, - "upcomingInput": 1, - "parser.yy": 1, - "console.log": 1, - "number": 13, - "opposite": 2, - "square": 4, - "x": 6, - "*": 21, - "list": 2, - "math": 1, - "root": 1, - "Math.sqrt": 1, - "cube": 1, - "race": 1, - "winner": 2, - "runners...": 1, - "print": 1, - "runners": 1, - "elvis": 1, - "cubes": 1, - "math.cube": 1, - "num": 2, - "Rewriter": 2, - "INVERSES": 2, - "count": 5, - "starts": 1, - "compact": 1, - "last": 3, - "exports.Lexer": 1, - "tokenize": 1, - "opts": 1, - "WHITESPACE.test": 1, - "code.replace": 1, - "/": 44, - "r/g": 1, - ".replace": 3, - "TRAILING_SPACES": 2, - "@code": 1, - "The": 7, - "remainder": 1, - "the": 4, - "code.": 1, - "@line": 4, - "opts.line": 1, - "current": 5, - "line.": 1, - "@indent": 3, - "indentation": 3, - "level.": 3, - "@indebt": 1, - "over": 1, - "at": 2, - "@outdebt": 1, - "under": 1, - "outdentation": 1, - "@indents": 1, - "stack": 4, - "all": 1, - "levels.": 1, - "@ends": 1, - "pairing": 1, - "up": 1, - "tokens.": 1, - "Stream": 1, - "parsed": 1, - "tokens": 5, - "form": 1, - "line": 6, - ".": 13, - "i": 8, - "while": 4, - "@chunk": 9, - "i..": 1, - "@identifierToken": 1, - "@commentToken": 1, - "@whitespaceToken": 1, - "@lineToken": 1, - "@heredocToken": 1, - "@stringToken": 1, - "@numberToken": 1, - "@regexToken": 1, - "@jsToken": 1, - "@literalToken": 1, - "@closeIndentation": 1, - "@error": 10, - "@ends.pop": 1, - "opts.rewrite": 1, - "off": 1, - ".rewrite": 1, - "identifierToken": 1, - "match": 23, - "IDENTIFIER.exec": 1, - "input": 1, - "id": 16, - "colon": 3, - "@tag": 3, - "@token": 12, - "id.length": 1, - "forcedIdentifier": 4, - "prev": 17, - "not": 4, - "prev.spaced": 3, - "JS_KEYWORDS": 1, - "COFFEE_KEYWORDS": 1, - "id.toUpperCase": 1, - "LINE_BREAK": 2, - "@seenFor": 4, - "yes": 5, - "UNARY": 4, - "RELATION": 3, - "@value": 1, - "@tokens.pop": 1, - "JS_FORBIDDEN": 1, - "String": 1, - "id.reserved": 1, - "COFFEE_ALIAS_MAP": 1, - "COFFEE_ALIASES": 1, - "switch": 7, - "input.length": 1, - "numberToken": 1, - "NUMBER.exec": 1, - "BOX": 1, - "/.test": 4, - "/E/.test": 1, - "x/.test": 1, - "d*": 1, - "d": 2, - "lexedLength": 2, - "number.length": 1, - "octalLiteral": 2, - "/.exec": 2, - "parseInt": 5, - ".toString": 3, - "binaryLiteral": 2, - "b": 1, - "stringToken": 1, - "@chunk.charAt": 3, - "SIMPLESTR.exec": 1, - "string": 9, - "MULTILINER": 2, - "@balancedString": 1, - "<": 6, - "string.indexOf": 1, - "@interpolateString": 2, - "@escapeLines": 1, - "octalEsc": 1, - "|": 21, - "string.length": 1, - "heredocToken": 1, - "HEREDOC.exec": 1, - "heredoc": 4, - "quote": 5, - "heredoc.charAt": 1, - "doc": 11, - "@sanitizeHeredoc": 2, - "indent": 7, - "<=>": 1, - "indexOf": 1, - "interpolateString": 1, - "token": 1, - "STRING": 2, - "makeString": 1, - "n": 16, - "Matches": 1, - "consumes": 1, - "comments": 1, - "commentToken": 1, - "@chunk.match": 1, - "COMMENT": 2, - "comment": 2, - "here": 3, - "herecomment": 4, - "Array": 1, - ".join": 2, - "comment.length": 1, - "jsToken": 1, - "JSTOKEN.exec": 1, - "script.length": 1, - "regexToken": 1, - "HEREGEX.exec": 1, - "@heregexToken": 1, - "NOT_REGEX": 2, - "NOT_SPACED_REGEX": 2, - "REGEX.exec": 1, - "regex": 5, - "flags": 2, - "..1": 1, - "match.length": 1, - "heregexToken": 1, - "heregex": 1, - "body": 2, - "body.indexOf": 1, - "re": 1, - "body.replace": 1, - "HEREGEX_OMIT": 3, - "//g": 1, - "re.match": 1, - "*/": 2, - "heregex.length": 1, - "@tokens.push": 1, - "tokens.push": 1, - "value...": 1, - "continue": 3, - "value.replace": 2, - "/g": 3, - "spaced": 1, - "reserved": 1, - "word": 1, - "value.length": 2, - "MATH": 3, - "COMPARE": 3, - "COMPOUND_ASSIGN": 2, - "SHIFT": 3, - "LOGIC": 3, - ".spaced": 1, - "CALLABLE": 2, - "INDEXABLE": 2, - "@ends.push": 1, - "@pair": 1, - "sanitizeHeredoc": 1, - "HEREDOC_ILLEGAL.test": 1, - "doc.indexOf": 1, - "HEREDOC_INDENT.exec": 1, - "attempt": 2, - "attempt.length": 1, - "indent.length": 1, - "doc.replace": 2, - "///": 12, - "///g": 1, - "n/": 1, - "tagParameters": 1, - "this": 6, - "tokens.length": 1, - "tok": 5, - "stack.push": 1, - "stack.length": 1, - "stack.pop": 2, - "closeIndentation": 1, - "@outdentToken": 1, - "balancedString": 1, - "str": 1, - "end": 2, - "continueCount": 3, - "str.length": 1, - "letter": 1, - "str.charAt": 1, - "missing": 1, - "starting": 1, - "Hello": 1, - "name.capitalize": 1, - "OUTDENT": 1, - "THROW": 1, - "EXTENDS": 1, - "&": 4, - "false": 4, - "delete": 1, - "break": 1, - "debugger": 1, - "finally": 2, - "undefined": 1, - "until": 1, - "loop": 1, - "by": 1, - "&&": 1, - "case": 1, - "default": 1, - "function": 2, - "var": 1, - "void": 1, - "with": 1, - "const": 1, - "let": 2, - "enum": 1, - "export": 1, - "import": 1, - "native": 1, - "__hasProp": 1, - "__extends": 1, - "__slice": 1, - "__bind": 1, - "__indexOf": 1, - "implements": 1, - "interface": 1, - "package": 1, - "private": 1, - "protected": 1, - "public": 1, - "static": 1, - "yield": 1, - "arguments": 1, - "S": 10, - "OPERATOR": 1, - "%": 1, - "compound": 1, - "assign": 1, - "compare": 1, - "zero": 1, - "fill": 1, - "right": 1, - "shift": 2, - "doubles": 1, - "logic": 1, - "soak": 1, - "access": 1, - "range": 1, - "splat": 1, - "WHITESPACE": 1, - "###": 3, - "s*#": 1, - "##": 1, - ".*": 1, - "CODE": 1, - "MULTI_DENT": 1, - "SIMPLESTR": 1, - "JSTOKEN": 1, - "REGEX": 1, - "disallow": 1, - "leading": 1, - "whitespace": 1, - "equals": 1, - "signs": 1, - "every": 1, - "other": 1, - "thing": 1, - "anything": 1, - "escaped": 1, - "character": 1, - "imgy": 2, - "w": 2, - "HEREGEX": 1, - "#.*": 1, - "n/g": 1, - "HEREDOC_INDENT": 1, - "HEREDOC_ILLEGAL": 1, - "//": 1, - "LINE_CONTINUER": 1, - "s*": 1, - "BOOL": 1, - "NOT_REGEX.concat": 1, - "CALLABLE.concat": 1, - "async": 1, - "nack": 1, - "bufferLines": 3, - "pause": 2, - "sourceScriptEnv": 3, - "join": 8, - "exists": 5, - "basename": 2, - "resolve": 2, - "module.exports": 1, - "RackApplication": 1, - "@configuration": 1, - "@root": 8, - "@firstHost": 1, - "@logger": 1, - "@configuration.getLogger": 1, - "@readyCallbacks": 3, - "@quitCallbacks": 3, - "@statCallbacks": 3, - "ready": 1, - "@state": 11, - "@readyCallbacks.push": 1, - "@initialize": 2, - "quit": 1, - "@quitCallbacks.push": 1, - "@terminate": 2, - "queryRestartFile": 1, - "fs.stat": 1, - "stats": 1, - "@mtime": 5, - "lastMtime": 2, - "stats.mtime.getTime": 1, - "setPoolRunOnceFlag": 1, - "@statCallbacks.length": 1, - "alwaysRestart": 2, - "@pool.runOnce": 1, - "statCallback": 2, - "@statCallbacks.push": 1, - "loadScriptEnvironment": 1, - "env": 18, - "async.reduce": 1, - "scriptExists": 2, - "loadRvmEnvironment": 1, - "rvmrcExists": 2, - "rvm": 1, - "@configuration.rvmPath": 1, - "rvmExists": 2, - "libexecPath": 1, - "before": 2, - ".trim": 1, - "loadEnvironment": 1, - "@queryRestartFile": 2, - "@loadScriptEnvironment": 1, - "@configuration.env": 1, - "@loadRvmEnvironment": 1, - "initialize": 1, - "@quit": 3, - "@loadEnvironment": 1, - "@logger.error": 3, - "@pool": 2, - "nack.createPool": 1, - "size": 1, - ".POW_WORKERS": 1, - "@configuration.workers": 1, - "idle": 1, - ".POW_TIMEOUT": 1, - "@configuration.timeout": 1, - "@pool.stdout": 1, - "@logger.info": 1, - "@pool.stderr": 1, - "@logger.warning": 1, - "@pool.on": 2, - "process": 2, - "@logger.debug": 2, - "readyCallback": 2, - "terminate": 1, - "@ready": 3, - "@pool.quit": 1, - "quitCallback": 2, - "handle": 1, - "req": 4, - "res": 3, - "next": 3, - "resume": 2, - "@setPoolRunOnceFlag": 1, - "@restartIfNecessary": 1, - "req.proxyMetaVariables": 1, - "SERVER_PORT": 1, - "@configuration.dstPort.toString": 1, - "@pool.proxy": 1, - "restart": 1, - "restartIfNecessary": 1, - "mtimeChanged": 2, - "@restart": 1, - "writeRvmBoilerplate": 1, - "powrc": 3, - "boilerplate": 2, - "@constructor.rvmBoilerplate": 1, - "fs.readFile": 1, - "contents": 2, - "contents.indexOf": 1, - "fs.writeFile": 1, - "@rvmBoilerplate": 1, - "dnsserver": 1, - "exports.Server": 1, - "Server": 2, - "dnsserver.Server": 1, - "NS_T_A": 3, - "NS_T_NS": 2, - "NS_T_CNAME": 1, - "NS_T_SOA": 2, - "NS_C_IN": 5, - "NS_RCODE_NXDOMAIN": 2, - "domain": 6, - "@rootAddress": 2, - "@domain": 3, - "domain.toLowerCase": 1, - "@soa": 2, - "createSOA": 2, - "@on": 1, - "@handleRequest": 1, - "handleRequest": 1, - "question": 5, - "req.question": 1, - "subdomain": 10, - "@extractSubdomain": 1, - "question.name": 3, - "isARequest": 2, - "res.addRR": 2, - "subdomain.getAddress": 1, - ".isEmpty": 1, - "isNSRequest": 2, - "res.header.rcode": 1, - "res.send": 1, - "extractSubdomain": 1, - "name": 5, - "Subdomain.extract": 1, - "question.type": 2, - "question.class": 2, - "mname": 2, - "rname": 2, - "serial": 2, - "Date": 1, - ".getTime": 1, - "refresh": 2, - "retry": 2, - "expire": 2, - "minimum": 2, - "dnsserver.createSOA": 1, - "exports.createServer": 1, - "address": 4, - "exports.Subdomain": 1, - "Subdomain": 4, - "@extract": 1, - "name.toLowerCase": 1, - "offset": 4, - "name.length": 1, - "domain.length": 1, - "name.slice": 2, - "@for": 2, - "IPAddressSubdomain.pattern.test": 1, - "IPAddressSubdomain": 2, - "EncodedSubdomain.pattern.test": 1, - "EncodedSubdomain": 2, - "@subdomain": 1, - "@address": 2, - "@labels": 2, - ".split": 1, - "@length": 3, - "@labels.length": 1, - "isEmpty": 1, - "getAddress": 3, - "@pattern": 2, - "@labels.slice": 1, - "a": 2, - "z0": 2, - "decode": 2, - "exports.encode": 1, - "encode": 1, - "ip": 2, - "byte": 2, - "ip.split": 1, - "<<": 1, - "PATTERN": 1, - "exports.decode": 1, - "PATTERN.test": 1, - "ip.push": 1, - "xFF": 1, - "ip.join": 1 - }, - "ColdFusion": { - "-": 12, - "": 1, - "": 1, - "": 1, - "Date": 1, - "Functions": 1, - "": 1, - "": 1, - "": 1, - "": 15, - "RightNow": 7, - "Now": 1, - "": 3, - "#RightNow#": 1, - "
    ": 8, - "#DateFormat": 2, - "(": 8, - ")": 8, - "#": 8, - "#TimeFormat": 2, - "#IsDate": 3, - "#DaysInMonth": 1, - "
    ": 3, - "x=": 1, - "y=": 1, - "z=": 1, - "group=": 1, - "#x#": 1, - "#y#": 1, - "#z#": 1, - "": 1, - "": 1, - "person": 2, - "Paul": 1, - "greeting": 2, - "Hello": 2, - "world": 1, - "a": 7, - "5": 1, - "b": 7, - "10": 1, - "c": 6, - "MOD": 1, - "comment": 1 - }, - "ColdFusion CFC": { - "component": 1, - "extends": 1, - "singleton": 1, - "{": 22, - "//": 16, - "DI": 1, - "property": 10, - "name": 10, - "inject": 10, - ";": 55, - "ContentService": 1, - "function": 12, - "init": 2, - "(": 58, - "entityName": 2, - ")": 58, - "it": 1, - "super.init": 1, - "arguments.entityName": 1, - "useQueryCaching": 1, - "true": 12, - "Test": 1, - "scope": 1, - "coloring": 1, - "in": 1, - "pygments": 1, - "this.colorTestVar": 1, - "cookie.colorTestVar": 1, - "client.colorTestVar": 1, - "session.colorTestVar": 1, - "application.colorTestVar": 1, - "return": 11, - "this": 10, - "}": 22, - "clearAllCaches": 1, - "boolean": 6, - "async": 7, - "false": 7, - "var": 15, - "settings": 6, - "settingService.getAllSettings": 6, - "asStruct": 6, - "Get": 6, - "appropriate": 6, - "cache": 12, - "provider": 6, - "cacheBox.getCache": 6, - "settings.cb_content_cacheName": 6, - "cache.clearByKeySnippet": 3, - "keySnippet": 3, - "arguments.async": 3, - "clearAllPageWrapperCaches": 1, - "clearPageWrapperCaches": 1, - "required": 5, - "any": 5, - "slug": 2, - "clearPageWrapper": 1, - "cache.clear": 3, - "searchContent": 1, - "searchTerm": 1, - "numeric": 2, - "max": 2, - "offset": 2, - "asQuery": 2, - "sortOrder": 2, - "isPublished": 1, - "searchActiveContent": 1, - "results": 2, - "c": 1, - "newCriteria": 1, - "only": 1, - "published": 1, - "content": 2, - "if": 4, - "isBoolean": 1, - "arguments.isPublished": 3, - "Published": 2, - "bit": 1, - "c.isEq": 1, - "javaCast": 1, - "eq": 1, - "evaluate": 1, - "other": 1, - "params": 1, - "c.isLt": 1, - "now": 2, - ".": 1, - "or": 3, - "c.restrictions.isNull": 1, - "c.restrictions.isGT": 1, - ".isEq": 1, - "Search": 1, - "Criteria": 1, - "len": 1, - "arguments.searchTerm": 1, - "like": 1, - "disjunctions": 1, - "c.createAlias": 1, - "Do": 1, - "we": 1, - "search": 1, - "title": 2, - "and": 2, - "active": 1, - "just": 1, - "arguments.searchActiveContent": 1, - "c.": 1, - "c.restrictions.like": 2, - "else": 1, - "c.like": 1, - "run": 1, - "criteria": 1, - "query": 1, - "projections": 1, - "count": 1, - "results.count": 1, - "c.count": 1, - "results.content": 1, - "c.resultTransformer": 1, - "c.DISTINCT_ROOT_ENTITY": 1, - ".list": 1, - "arguments.offset": 1, - "arguments.max": 1, - "arguments.sortOrder": 1, - "arguments.asQuery": 1, - "private": 4, - "syncUpdateHits": 1, - "contentID": 1, - "q": 1, - "new": 1, - "Query": 1, - "sql": 1, - ".execute": 1, - "closureTest": 1, - "methodCall": 1, - "param1": 2, - "arg1": 4, - "arg2": 2, - "StructliteralTest": 1, - "foo": 3, - "bar": 1, - "brad": 3, - "func": 1, - "array": 1, - "[": 2, - "wood": 2, - "null": 2, - "]": 2, - "last": 1, - "arrayliteralTest": 1, - "": 1, - "": 2, - "name=": 4, - "access=": 2, - "returntype=": 2, - "": 2, - "type=": 2, - "required=": 2, - "": 2, - "myVariable": 1, - "arguments": 2, - "": 1, - "": 2, - "": 1, - "structKeyExists": 1, - "writeoutput": 1, - "Argument": 1, - "exists": 1, - "": 1, - "": 1 - }, - "Common Lisp": { - ";": 152, - "@file": 1, - "macros": 2, - "-": 161, - "advanced.cl": 1, - "@breif": 1, - "Advanced": 1, - "macro": 5, - "practices": 1, - "defining": 1, - "your": 1, - "own": 1, - "Macro": 1, - "definition": 1, - "skeleton": 1, - "(": 365, - "defmacro": 5, - "name": 6, - "parameter*": 1, - ")": 372, - "body": 8, - "form*": 1, - "Note": 2, - "that": 5, - "backquote": 1, - "expression": 2, - "is": 6, - "most": 2, - "often": 1, - "used": 2, - "in": 23, - "the": 35, - "form": 1, - "primep": 4, - "test": 1, - "a": 7, - "number": 2, - "for": 3, - "prime": 12, - "defun": 23, - "n": 8, - "if": 14, - "<": 1, - "return": 3, - "from": 8, - "do": 9, - "i": 8, - "+": 35, - "p": 10, - "t": 7, - "not": 6, - "zerop": 1, - "mod": 1, - "sqrt": 1, - "when": 4, - "next": 11, - "bigger": 1, - "than": 1, - "specified": 2, - "The": 2, - "recommended": 1, - "procedures": 1, - "to": 4, - "writting": 1, - "new": 6, - "are": 2, - "as": 1, - "follows": 1, - "Write": 2, - "sample": 2, - "call": 2, - "and": 12, - "code": 2, - "it": 2, - "should": 1, - "expand": 1, - "into": 2, - "primes": 3, - "format": 3, - "Expected": 1, - "expanded": 1, - "codes": 1, - "generate": 1, - "hardwritten": 1, - "expansion": 2, - "arguments": 1, - "var": 49, - "range": 4, - "&": 8, - "rest": 5, - "let": 6, - "first": 5, - "start": 5, - "second": 3, - "end": 8, - "third": 2, - "@body": 4, - "More": 1, - "concise": 1, - "implementations": 1, - "with": 7, - "synonym": 1, - "also": 1, - "emits": 1, - "more": 1, - "friendly": 1, - "messages": 1, - "on": 1, - "incorrent": 1, - "input.": 1, - "Test": 1, - "result": 1, - "of": 3, - "macroexpand": 2, - "function": 2, - "gensyms": 4, - "value": 8, - "Define": 1, - "note": 1, - "how": 1, - "comma": 1, - "interpolate": 1, - "loop": 2, - "names": 2, - "collect": 1, - "gensym": 1, - "#": 15, - "|": 9, - "ESCUELA": 1, - "POLITECNICA": 1, - "SUPERIOR": 1, - "UNIVERSIDAD": 1, - "AUTONOMA": 1, - "DE": 1, - "MADRID": 1, - "INTELIGENCIA": 1, - "ARTIFICIAL": 1, - "Motor": 1, - "de": 2, - "inferencia": 1, - "Basado": 1, - "en": 2, - "parte": 1, - "Peter": 1, - "Norvig": 1, - "Global": 1, - "variables": 6, - "defvar": 4, - "*hypothesis": 1, - "list*": 7, - "*rule": 4, - "*fact": 2, - "Constants": 1, - "defconstant": 2, - "fail": 10, - "nil": 3, - "no": 6, - "bindings": 45, - "lambda": 4, - "b": 6, - "mapcar": 2, - "man": 3, - "luis": 1, - "pedro": 1, - "woman": 2, - "mart": 1, - "daniel": 1, - "laura": 1, - "facts": 1, - "x": 47, - "aux": 3, - "unify": 12, - "hypothesis": 10, - "list": 9, - "____________________________________________________________________________": 5, - "FUNCTION": 3, - "FIND": 1, - "RULES": 2, - "COMMENTS": 3, - "Returns": 2, - "rules": 5, - "whose": 1, - "THENs": 1, - "term": 1, - "given": 3, - "": 2, - "satisfy": 1, - "this": 1, - "requirement": 1, - "renamed.": 1, - "EXAMPLES": 2, - "setq": 1, - "renamed": 3, - "rule": 17, - "rename": 1, - "then": 7, - "unless": 3, - "null": 1, - "equal": 4, - "VALUE": 1, - "FROM": 1, - "all": 2, - "solutions": 1, - "found": 5, - "using": 1, - "": 1, - ".": 10, - "single": 1, - "can": 4, - "have": 1, - "multiple": 1, - "solutions.": 1, - "mapcan": 1, - "R1": 2, - "pertenece": 3, - "E": 4, - "_": 8, - "R2": 2, - "Xs": 2, - "Then": 1, - "EVAL": 2, - "RULE": 2, - "PERTENECE": 6, - "E.42": 2, - "returns": 4, - "NIL": 3, - "That": 2, - "query": 4, - "be": 2, - "proven": 2, - "binding": 17, - "necessary": 2, - "fact": 4, - "has": 1, - "On": 1, - "other": 1, - "hand": 1, - "E.49": 2, - "XS.50": 2, - "R2.": 1, - "eval": 6, - "ifs": 1, - "NOT": 2, - "question": 1, - "T": 1, - "equality": 2, - "UNIFY": 1, - "Finds": 1, - "general": 1, - "unifier": 1, - "two": 2, - "input": 2, - "expressions": 2, - "taking": 1, - "account": 1, - "": 1, - "In": 1, - "case": 1, - "total": 1, - "unification.": 1, - "Otherwise": 1, - "which": 1, - "constant": 1, - "anonymous": 4, - "make": 4, - "variable": 6, - "Auxiliary": 1, - "Functions": 1, - "cond": 3, - "or": 4, - "get": 5, - "lookup": 5, - "occurs": 5, - "extend": 2, - "symbolp": 2, - "eql": 2, - "char": 2, - "symbol": 2, - "assoc": 1, - "car": 2, - "val": 6, - "cdr": 2, - "cons": 2, - "append": 1, - "eq": 7, - "consp": 2, - "subst": 3, - "listp": 1, - "exp": 1, - "unique": 3, - "find": 6, - "anywhere": 6, - "predicate": 8, - "tree": 11, - "optional": 2, - "so": 4, - "far": 4, - "atom": 3, - "funcall": 2, - "pushnew": 1, - "gentemp": 2, - "quote": 3, - "s/reuse": 1, - "cons/cons": 1, - "expresion": 2, - "some": 1, - "EOF": 1, - "*": 2, - "lisp": 1, - "package": 1, - "foo": 2, - "Header": 1, - "comment.": 4, - "*foo*": 1, - "execute": 1, - "compile": 1, - "toplevel": 2, - "load": 1, - "add": 1, - "y": 2, - "key": 1, - "z": 2, - "declare": 1, - "ignore": 1, - "Inline": 1, - "Multi": 1, - "line": 2, - "After": 1 - }, - "Component Pascal": { - "MODULE": 2, - "ObxControls": 1, - ";": 123, - "IMPORT": 2, - "Dialog": 1, - "Ports": 1, - "Properties": 1, - "Views": 1, - "CONST": 1, - "beginner": 5, - "advanced": 3, - "expert": 1, - "guru": 2, - "TYPE": 1, - "View": 6, - "POINTER": 2, - "TO": 2, - "RECORD": 2, - "(": 91, - "Views.View": 2, - ")": 94, - "size": 1, - "INTEGER": 10, - "END": 31, - "VAR": 9, - "data*": 1, - "class*": 1, - "list*": 1, - "Dialog.List": 1, - "width*": 1, - "predef": 12, - "ARRAY": 2, - "OF": 2, - "PROCEDURE": 12, - "SetList": 4, - "BEGIN": 13, - "IF": 11, - "data.class": 5, - "THEN": 12, - "data.list.SetLen": 3, - "data.list.SetItem": 11, - "ELSIF": 1, - "ELSE": 3, - "v": 6, - "CopyFromSimpleView": 2, - "source": 2, - "v.size": 10, - ".size": 1, - "Restore": 2, - "f": 1, - "Views.Frame": 1, - "l": 1, - "t": 1, - "r": 7, - "b": 1, - "[": 13, - "]": 13, - "f.DrawRect": 1, - "Ports.fill": 1, - "Ports.red": 1, - "HandlePropMsg": 2, - "msg": 2, - "Views.PropMessage": 1, - "WITH": 1, - "Properties.SizePref": 1, - "DO": 4, - "msg.w": 1, - "msg.h": 1, - "ClassNotify*": 1, - "op": 4, - "from": 2, - "to": 5, - "Dialog.changed": 2, - "OR": 4, - "&": 8, - "data.list.index": 3, - "data.width": 4, - "Dialog.Update": 2, - "data": 2, - "Dialog.UpdateList": 1, - "data.list": 1, - "ClassNotify": 1, - "ListNotify*": 1, - "ListNotify": 1, - "ListGuard*": 1, - "par": 2, - "Dialog.Par": 2, - "par.disabled": 1, - "ListGuard": 1, - "WidthGuard*": 1, - "par.readOnly": 1, - "#": 3, - "WidthGuard": 1, - "Open*": 1, - "NEW": 2, - "*": 1, - "Ports.mm": 1, - "Views.OpenAux": 1, - "Open": 1, - "ObxControls.": 1, - "ObxFact": 1, - "Stores": 1, - "Models": 1, - "TextModels": 1, - "TextControllers": 1, - "Integers": 1, - "Read": 3, - "TextModels.Reader": 2, - "x": 15, - "Integers.Integer": 3, - "i": 17, - "len": 5, - "beg": 11, - "ch": 14, - "CHAR": 3, - "buf": 5, - "r.ReadChar": 5, - "WHILE": 3, - "r.eot": 4, - "<=>": 1, - "ReadChar": 1, - "ASSERT": 1, - "eot": 1, - "<": 8, - "r.Pos": 2, - "-": 1, - "REPEAT": 3, - "INC": 4, - "UNTIL": 3, - "+": 1, - "r.SetPos": 2, - "X": 1, - "Integers.ConvertFromString": 1, - "Write": 3, - "w": 4, - "TextModels.Writer": 2, - "Integers.Sign": 2, - "w.WriteChar": 3, - "Integers.Digits10Of": 1, - "DEC": 1, - "Integers.ThisDigit10": 1, - "Compute*": 1, - "end": 6, - "n": 3, - "s": 3, - "Stores.Operation": 1, - "attr": 3, - "TextModels.Attributes": 1, - "c": 3, - "TextControllers.Controller": 1, - "TextControllers.Focus": 1, - "NIL": 3, - "c.HasSelection": 1, - "c.GetSelection": 1, - "c.text.NewReader": 1, - "r.ReadPrev": 2, - "r.attr": 1, - "Integers.Compare": 1, - "Integers.Long": 3, - "MAX": 1, - "LONGINT": 1, - "SHORT": 1, - "Integers.Short": 1, - "Integers.Product": 1, - "Models.BeginScript": 1, - "c.text": 2, - "c.text.Delete": 1, - "c.text.NewWriter": 1, - "w.SetPos": 1, - "w.SetAttr": 1, - "Models.EndScript": 1, - "Compute": 1, - "ObxFact.": 1 - }, - "Coq": { - "Inductive": 41, - "day": 9, - "Type": 86, - "|": 457, - "monday": 5, - "tuesday": 3, - "wednesday": 3, - "thursday": 3, - "friday": 3, - "saturday": 3, - "sunday": 2, - "day.": 1, - "Definition": 46, - "next_weekday": 3, - "(": 1248, - "d": 6, - ")": 1249, - "match": 70, - "with": 223, - "end.": 52, - "Example": 37, - "test_next_weekday": 1, - "tuesday.": 1, - "Proof.": 208, - "simpl.": 70, - "reflexivity.": 199, - "Qed.": 194, - "bool": 38, - "true": 68, - "false": 48, - "bool.": 1, - "negb": 10, - "b": 89, - "andb": 8, - "b1": 35, - "b2": 23, - "orb": 8, - "test_orb1": 1, - "true.": 16, - "test_orb2": 1, - "false.": 12, - "test_orb3": 1, - "test_orb4": 1, - "nandb": 5, - "end": 16, - "test_nandb1": 1, - "test_nandb2": 1, - "test_nandb3": 1, - "test_nandb4": 1, - "andb3": 5, - "b3": 2, - "test_andb31": 1, - "test_andb32": 1, - "test_andb33": 1, - "test_andb34": 1, - "Module": 11, - "Playground1.": 5, - "nat": 108, - "O": 98, - "S": 186, - "-": 508, - "nat.": 4, - "pred": 3, - "n": 369, - "minustwo": 1, - "Fixpoint": 36, - "evenb": 5, - "oddb": 5, - ".": 433, - "test_oddb1": 1, - "test_oddb2": 1, - "plus": 10, - "m": 201, - "mult": 3, - "minus": 3, - "_": 67, - "exp": 2, - "base": 3, - "power": 2, - "p": 81, - "factorial": 2, - "test_factorial1": 1, - "Notation": 39, - "x": 266, - "y": 116, - "at": 17, - "level": 11, - "left": 6, - "associativity": 7, - "nat_scope.": 3, - "beq_nat": 24, - "forall": 248, - "+": 227, - "n.": 44, - "Theorem": 115, - "plus_O_n": 1, - "intros": 258, - "plus_1_1": 1, - "mult_0_1": 1, - "*": 59, - "O.": 5, - "plus_id_example": 1, - "m.": 21, - "H.": 100, - "rewrite": 241, - "plus_id_exercise": 1, - "o": 25, - "o.": 4, - "H": 76, - "mult_0_plus": 1, - "plus_O_n.": 1, - "mult_1_plus": 1, - "plus_1_1.": 1, - "mult_1": 1, - "induction": 81, - "as": 77, - "[": 170, - "plus_1_neq_0": 1, - "destruct": 94, - "]": 173, - "Case": 51, - "IHn": 12, - "plus_comm": 3, - "plus_distr.": 1, - "beq_nat_refl": 3, - "plus_rearrange": 1, - "q": 15, - "q.": 2, - "assert": 68, - "plus_comm.": 3, - "plus_swap": 2, - "p.": 9, - "plus_assoc.": 4, - "H2": 12, - "H2.": 20, - "plus_swap.": 2, - "<->": 31, - "IHm": 2, - "reflexivity": 16, - "Qed": 23, - "mult_comm": 2, - "Proof": 12, - "0": 5, - "simpl": 116, - "mult_0_r.": 4, - "mult_distr": 1, - "mult_1_distr.": 1, - "mult_1.": 1, - "bad": 1, - "zero_nbeq_S": 1, - "andb_false_r": 1, - "plus_ble_compat_1": 1, - "ble_nat": 6, - "IHp.": 2, - "S_nbeq_0": 1, - "mult_1_1": 1, - "plus_0_r.": 1, - "all3_spec": 1, - "c": 70, - "c.": 5, - "b.": 14, - "Lemma": 51, - "mult_plus_1": 1, - "IHm.": 1, - "mult_mult": 1, - "IHn.": 3, - "mult_plus_1.": 1, - "mult_plus_distr_r": 1, - "mult_mult.": 3, - "H1": 18, - "plus_assoc": 1, - "H1.": 31, - "H3": 4, - "H3.": 5, - "mult_assoc": 1, - "mult_plus_distr_r.": 1, - "bin": 9, - "BO": 4, - "D": 9, - "M": 4, - "bin.": 1, - "incbin": 2, - "bin2un": 3, - "bin_comm": 1, - "End": 15, - "Require": 17, - "Import": 11, - "List": 2, - "Multiset": 2, - "PermutSetoid": 1, - "Relations": 2, - "Sorting.": 1, - "Section": 4, - "defs.": 2, - "Variable": 7, - "A": 113, - "Type.": 3, - "leA": 25, - "relation": 19, - "A.": 6, - "eqA": 29, - "Let": 8, - "gtA": 1, - "y.": 15, - "Hypothesis": 7, - "leA_dec": 4, - "{": 39, - "}": 35, - "eqA_dec": 26, - "leA_refl": 1, - "leA_trans": 2, - "z": 14, - "z.": 6, - "leA_antisym": 1, - "Hint": 9, - "Resolve": 5, - "leA_refl.": 1, - "Immediate": 1, - "leA_antisym.": 1, - "emptyBag": 4, - "EmptyBag": 2, - "singletonBag": 10, - "SingletonBag": 2, - "eqA_dec.": 2, - "Tree": 24, - "Tree_Leaf": 9, - "Tree_Node": 11, - "Tree.": 1, - "leA_Tree": 16, - "a": 207, - "t": 93, - "True": 1, - "T1": 25, - "T2": 20, - "leA_Tree_Leaf": 5, - "Tree_Leaf.": 1, - ";": 375, - "auto": 73, - "datatypes.": 47, - "leA_Tree_Node": 1, - "G": 6, - "is_heap": 18, - "Prop": 17, - "nil_is_heap": 5, - "node_is_heap": 7, - "invert_heap": 3, - "/": 41, - "T2.": 1, - "inversion": 104, - "is_heap_rect": 1, - "P": 32, - "T": 49, - "T.": 9, - "simple": 7, - "PG": 2, - "PD": 2, - "PN.": 2, - "elim": 21, - "H4": 7, - "intros.": 27, - "apply": 340, - "X0": 2, - "is_heap_rec": 1, - "Set": 4, - "X": 191, - "low_trans": 3, - "merge_lem": 3, - "l1": 89, - "l2": 73, - "list": 78, - "merge_exist": 5, - "l": 379, - "Sorted": 5, - "meq": 15, - "list_contents": 30, - "munion": 18, - "HdRel": 4, - "l2.": 8, - "Morphisms.": 2, - "Instance": 7, - "Equivalence": 2, - "@meq": 4, - "constructor": 6, - "red.": 1, - "meq_trans.": 1, - "Defined.": 1, - "Proper": 5, - "@munion": 1, - "now": 24, - "meq_congr.": 1, - "merge": 5, - "fix": 2, - "l1.": 5, - "rename": 2, - "into": 2, - "l.": 26, - "revert": 5, - "H0.": 24, - "a0": 15, - "l0": 7, - "Sorted_inv": 2, - "in": 221, - "H0": 16, - "clear": 7, - "merge0.": 2, - "using": 18, - "cons_sort": 2, - "cons_leA": 2, - "munion_ass.": 2, - "cons_leA.": 2, - "@HdRel_inv": 2, - "trivial": 15, - "merge0": 1, - "setoid_rewrite": 2, - "munion_ass": 1, - "munion_comm.": 2, - "repeat": 11, - "munion_comm": 1, - "contents": 12, - "multiset": 2, - "t1": 48, - "t2": 51, - "equiv_Tree": 1, - "insert_spec": 3, - "insert_exist": 4, - "insert": 2, - "unfold": 58, - "T0": 2, - "treesort_twist1": 1, - "T3": 2, - "HeapT3": 1, - "ConT3": 1, - "LeA.": 1, - "LeA": 1, - "treesort_twist2": 1, - "build_heap": 3, - "heap_exist": 3, - "list_to_heap": 2, - "nil": 46, - "exact": 4, - "nil_is_heap.": 1, - "i": 11, - "meq_trans": 10, - "meq_right": 2, - "meq_sym": 2, - "flat_spec": 3, - "flat_exist": 3, - "heap_to_list": 2, - "h": 14, - "s1": 20, - "i1": 15, - "m1": 1, - "s2": 2, - "i2": 10, - "m2.": 1, - "meq_congr": 1, - "munion_rotate.": 1, - "treesort": 1, - "&": 21, - "permutation": 43, - "intro": 27, - "permutation.": 1, - "exists": 60, - "Export": 10, - "SfLib.": 2, - "AExp.": 2, - "aexp": 30, - "ANum": 18, - "APlus": 14, - "AMinus": 9, - "AMult": 9, - "aexp.": 1, - "bexp": 22, - "BTrue": 10, - "BFalse": 11, - "BEq": 9, - "BLe": 9, - "BNot": 9, - "BAnd": 10, - "bexp.": 1, - "aeval": 46, - "e": 53, - "a1": 56, - "a2": 62, - "test_aeval1": 1, - "beval": 16, - "optimize_0plus": 15, - "e2": 54, - "e1": 58, - "test_optimize_0plus": 1, - "optimize_0plus_sound": 4, - "e.": 15, - "e1.": 1, - "SCase": 24, - "SSCase": 3, - "IHe2.": 10, - "IHe1.": 11, - "aexp_cases": 3, - "try": 17, - "IHe1": 6, - "IHe2": 6, - "optimize_0plus_all": 2, - "Tactic": 9, - "tactic": 9, - "first": 18, - "ident": 9, - "Case_aux": 38, - "optimize_0plus_all_sound": 1, - "bexp_cases": 4, - "optimize_and": 5, - "optimize_and_sound": 1, - "IHe": 2, - "aevalR_first_try.": 2, - "aevalR": 18, - "E_Anum": 1, - "E_APlus": 2, - "n1": 45, - "n2": 41, - "E_AMinus": 2, - "E_AMult": 2, - "Reserved": 4, - "E_ANum": 1, - "where": 6, - "bevalR": 11, - "E_BTrue": 1, - "E_BFalse": 1, - "E_BEq": 1, - "E_BLe": 1, - "E_BNot": 1, - "E_BAnd": 1, - "aeval_iff_aevalR": 9, - "split.": 17, - "subst": 7, - "generalize": 13, - "dependent": 6, - "IHa1": 1, - "IHa2": 1, - "beval_iff_bevalR": 1, - "*.": 110, - "subst.": 43, - "IHbevalR": 1, - "IHbevalR1": 1, - "IHbevalR2": 1, - "a.": 6, - "constructor.": 16, - "<": 76, - "remember": 12, - "IHa.": 1, - "IHa1.": 1, - "IHa2.": 1, - "silly_presburger_formula": 1, - "<=>": 12, - "3": 2, - "omega": 7, - "Id": 7, - "id": 7, - "id.": 1, - "beq_id": 14, - "id1": 2, - "id2": 2, - "beq_id_refl": 1, - "i.": 2, - "beq_nat_refl.": 1, - "beq_id_eq": 4, - "i2.": 8, - "i1.": 3, - "beq_nat_eq": 2, - "beq_id_false_not_eq": 1, - "C.": 3, - "n0": 5, - "beq_false_not_eq": 1, - "not_eq_beq_id_false": 1, - "not_eq_beq_false.": 1, - "beq_nat_sym": 2, - "AId": 4, - "com_cases": 1, - "SKIP": 5, - "IFB": 4, - "WHILE": 5, - "c1": 14, - "c2": 9, - "e3": 1, - "cl": 1, - "st": 113, - "E_IfTrue": 2, - "THEN": 3, - "ELSE": 3, - "FI": 3, - "E_WhileEnd": 2, - "DO": 4, - "END": 4, - "E_WhileLoop": 2, - "ceval_cases": 1, - "E_Skip": 1, - "E_Ass": 1, - "E_Seq": 1, - "E_IfFalse": 1, - "assignment": 1, - "command": 2, - "if": 10, - "st1": 2, - "IHi1": 3, - "Heqst1": 1, - "Hceval.": 4, - "Hceval": 2, - "assumption.": 61, - "bval": 2, - "ceval_step": 3, - "Some": 21, - "ceval_step_more": 7, - "x1.": 3, - "omega.": 7, - "x2.": 2, - "IHHce.": 2, - "%": 3, - "IHHce1.": 1, - "IHHce2.": 1, - "x0": 14, - "plus2": 1, - "nx": 3, - "Y": 38, - "ny": 2, - "XtimesYinZ": 1, - "Z": 11, - "ny.": 1, - "loop": 2, - "contra.": 19, - "loopdef.": 1, - "Heqloopdef.": 8, - "contra1.": 1, - "IHcontra2.": 1, - "no_whiles": 15, - "com": 5, - "ct": 2, - "cf": 2, - "no_Whiles": 10, - "noWhilesSKIP": 1, - "noWhilesAss": 1, - "noWhilesSeq": 1, - "noWhilesIf": 1, - "no_whiles_eqv": 1, - "noWhilesSKIP.": 1, - "noWhilesAss.": 1, - "noWhilesSeq.": 1, - "IHc1.": 2, - "auto.": 47, - "eauto": 10, - "andb_true_elim1": 4, - "IHc2.": 2, - "andb_true_elim2": 4, - "noWhilesIf.": 1, - "andb_true_intro.": 2, - "no_whiles_terminate": 1, - "state": 6, - "st.": 7, - "update": 2, - "IHc1": 2, - "IHc2": 2, - "H5.": 1, - "x1": 11, - "r": 11, - "r.": 3, - "symmetry": 4, - "Heqr.": 1, - "H4.": 2, - "s": 13, - "Heqr": 3, - "H8.": 1, - "H10": 1, - "assumption": 10, - "beval_short_circuit": 5, - "beval_short_circuit_eqv": 1, - "sinstr": 8, - "SPush": 8, - "SLoad": 6, - "SPlus": 10, - "SMinus": 11, - "SMult": 11, - "sinstr.": 1, - "s_execute": 21, - "stack": 7, - "prog": 2, - "cons": 26, - "al": 3, - "bl": 3, - "s_execute1": 1, - "empty_state": 2, - "s_execute2": 1, - "s_compile": 36, - "v": 28, - "s_compile1": 1, - "execute_theorem": 1, - "other": 20, - "other.": 4, - "app_ass.": 6, - "s_compile_correct": 1, - "app_nil_end.": 1, - "execute_theorem.": 1, - "Eqdep_dec.": 1, - "Arith.": 2, - "eq_rect_eq_nat": 2, - "Q": 3, - "eq_rect": 3, - "h.": 1, - "K_dec_set": 1, - "eq_nat_dec.": 1, - "Scheme": 1, - "le_ind": 1, - "replace": 4, - "le_n": 4, - "fun": 17, - "refl_equal": 4, - "pattern": 2, - "case": 2, - "trivial.": 14, - "contradiction": 8, - "le_Sn_n": 5, - "le_S": 6, - "Heq": 8, - "m0": 1, - "HeqS": 3, - "injection": 4, - "HeqS.": 2, - "eq_rect_eq_nat.": 1, - "IHp": 2, - "dep_pair_intro": 2, - "Hx": 20, - "Hy": 14, - "<=n),>": 1, - "x=": 1, - "exist": 7, - "Hy.": 3, - "Heq.": 6, - "le_uniqueness_proof": 1, - "Hy0": 1, - "card": 2, - "f": 108, - "card_interval": 1, - "<=n}>": 1, - "proj1_sig": 1, - "proj2_sig": 1, - "Hp": 5, - "Hq": 3, - "Hpq.": 1, - "Hmn.": 1, - "Hmn": 1, - "interval_dec": 1, - "left.": 3, - "dep_pair_intro.": 3, - "right.": 9, - "discriminate": 3, - "le_Sn_le": 2, - "eq_S.": 1, - "Hneq.": 2, - "card_inj_aux": 1, - "g": 6, - "False.": 1, - "Hfbound": 1, - "Hfinj": 1, - "Hgsurj.": 1, - "Hgsurj": 3, - "Hfx": 2, - "le_n_O_eq.": 2, - "Hfbound.": 2, - "Hx.": 5, - "le_lt_dec": 9, - "xSn": 21, - "then": 9, - "else": 9, - "is": 4, - "bounded": 1, - "injective": 6, - "Hlefx": 1, - "Hgefx": 1, - "Hlefy": 1, - "Hgefy": 1, - "Hfinj.": 3, - "sym_not_eq.": 2, - "Heqf.": 2, - "Hneqy.": 2, - "le_lt_trans": 2, - "le_O_n.": 2, - "le_neq_lt": 2, - "Hneqx.": 2, - "pred_inj.": 1, - "lt_O_neq": 2, - "neq_dep_intro": 2, - "inj_restrict": 1, - "Heqf": 1, - "surjective": 1, - "Hlep.": 3, - "Hle": 1, - "Hlt": 3, - "Hfsurj": 2, - "le_n_S": 1, - "Hlep": 4, - "Hneq": 7, - "Heqx.": 2, - "Heqx": 4, - "Hle.": 1, - "le_not_lt": 1, - "lt_trans": 4, - "lt_n_Sn.": 1, - "Hlt.": 1, - "lt_irrefl": 2, - "lt_le_trans": 1, - "pose": 2, - "let": 3, - "Hneqx": 1, - "Hneqy": 1, - "Heqg": 1, - "Hdec": 3, - "Heqy": 1, - "Hginj": 1, - "HSnx.": 1, - "HSnx": 1, - "interval_discr": 1, - "<=m}>": 1, - "card_inj": 1, - "interval_dec.": 1, - "card_interval.": 2, - "Basics.": 2, - "NatList.": 2, - "natprod": 5, - "pair": 7, - "natprod.": 1, - "fst": 3, - "snd": 3, - "swap_pair": 1, - "surjective_pairing": 1, - "count": 7, - "remove_one": 3, - "test_remove_one1": 1, - "remove_all": 2, - "bag": 3, - "app_ass": 1, - "l3": 12, - "natlist": 7, - "l3.": 1, - "remove_decreases_count": 1, - "s.": 4, - "ble_n_Sn.": 1, - "IHs.": 2, - "natoption": 5, - "None": 9, - "natoption.": 1, - "index": 3, - "option_elim": 2, - "hd_opt": 8, - "test_hd_opt1": 2, - "None.": 2, - "test_hd_opt2": 2, - "option_elim_hd": 1, - "head": 1, - "beq_natlist": 5, - "v1": 7, - "r1": 2, - "v2": 2, - "r2": 2, - "test_beq_natlist1": 1, - "test_beq_natlist2": 1, - "beq_natlist_refl": 1, - "IHl.": 7, - "silly1": 1, - "eq1": 6, - "eq2.": 9, - "eq2": 1, - "silly2a": 1, - "eq1.": 5, - "silly_ex": 1, - "silly3": 1, - "symmetry.": 2, - "rev_exercise": 1, - "rev_involutive.": 1, - "Setoid": 1, - "Compare_dec": 1, - "ListNotations.": 1, - "Implicit": 15, - "Arguments.": 2, - "Permutation.": 2, - "Permutation": 38, - "perm_nil": 1, - "perm_skip": 1, - "Local": 7, - "Constructors": 3, - "Permutation_nil": 2, - "HF.": 3, - "@nil": 1, - "HF": 2, - "||": 1, - "Permutation_nil_cons": 1, - "discriminate.": 2, - "Permutation_refl": 1, - "Permutation_sym": 1, - "Hperm": 7, - "perm_trans": 1, - "Permutation_trans": 4, - "Logic.eq": 2, - "@Permutation": 5, - "iff": 1, - "@In": 1, - "red": 6, - "Permutation_in.": 2, - "Permutation_app_tail": 2, - "tl": 8, - "eapply": 8, - "Permutation_app_head": 2, - "app_comm_cons": 5, - "Permutation_app": 3, - "Hpermmm": 1, - "idtac": 1, - "Global": 5, - "@app": 1, - "Permutation_app.": 1, - "Permutation_add_inside": 1, - "Permutation_cons_append": 1, - "IHl": 8, - "Permutation_cons_append.": 3, - "Permutation_app_comm": 3, - "app_nil_r": 1, - "app_assoc": 2, - "Permutation_cons_app": 3, - "Permutation_middle": 2, - "Permutation_rev": 3, - "rev": 7, - "1": 1, - "@rev": 1, - "2": 1, - "Permutation_length": 2, - "length": 21, - "transitivity": 4, - "@length": 1, - "Permutation_length.": 1, - "Permutation_ind_bis": 2, - "Hnil": 1, - "Hskip": 3, - "Hswap": 2, - "Htrans.": 1, - "Htrans": 1, - "eauto.": 7, - "Ltac": 1, - "break_list": 5, - "Permutation_nil_app_cons": 1, - "l4": 3, - "P.": 5, - "IH": 3, - "Permutation_middle.": 3, - "perm_swap.": 2, - "perm_swap": 1, - "eq_refl": 2, - "In_split": 1, - "Permutation_app_inv": 1, - "NoDup": 4, - "incl": 3, - "N.": 1, - "E": 7, - "Ha": 6, - "In": 6, - "N": 1, - "Hal": 1, - "Hl": 1, - "exfalso.": 1, - "NoDup_Permutation_bis": 2, - "inversion_clear": 6, - "intuition.": 2, - "Permutation_NoDup": 1, - "Permutation_map": 1, - "Hf": 15, - "injective_bounded_surjective": 1, - "set": 1, - "seq": 2, - "map": 4, - "x.": 3, - "in_map_iff.": 2, - "in_seq": 4, - "arith": 4, - "NoDup_cardinal_incl": 1, - "injective_map_NoDup": 2, - "seq_NoDup": 1, - "map_length": 1, - "by": 7, - "in_map_iff": 1, - "split": 14, - "nat_bijection_Permutation": 1, - "BD.": 1, - "seq_NoDup.": 1, - "map_length.": 1, - "Injection": 1, - "Permutation_alt": 1, - "Alternative": 1, - "characterization": 1, - "of": 4, - "via": 1, - "nth_error": 7, - "and": 1, - "nth": 2, - "adapt": 4, - "adapt_injective": 1, - "adapt.": 2, - "EQ.": 2, - "LE": 11, - "LT": 14, - "eq_add_S": 2, - "Hf.": 1, - "Lt.le_lt_or_eq": 3, - "LE.": 3, - "EQ": 8, - "lt": 3, - "LT.": 5, - "Lt.S_pred": 3, - "Lt.lt_not_le": 2, - "adapt_ok": 2, - "nth_error_app1": 1, - "nth_error_app2": 1, - "arith.": 8, - "Minus.minus_Sn_m": 1, - "Permutation_nth_error": 2, - "IHP": 2, - "IHP2": 1, - "Hg": 2, - "E.": 2, - "L12": 2, - "app_length.": 2, - "plus_n_Sm.": 1, - "adapt_injective.": 1, - "nth_error_None": 4, - "Hn": 1, - "Hf2": 1, - "Hf3": 2, - "Lt.le_or_lt": 1, - "Lt.lt_irrefl": 2, - "Lt.lt_le_trans": 2, - "Hf1": 1, - "do": 4, - "congruence.": 1, - "Permutation_alt.": 1, - "Permutation_app_swap": 1, - "only": 3, - "parsing": 3, - "Omega": 1, - "SetoidList.": 1, - "nil.": 2, - "..": 4, - "Permut.": 1, - "eqA_equiv": 1, - "eqA.": 1, - "list_contents_app": 5, - "permut_refl": 1, - "permut_sym": 4, - "permut_trans": 5, - "permut_cons_eq": 3, - "meq_left": 1, - "meq_singleton": 1, - "permut_cons": 5, - "permut_app": 1, - "specialize": 6, - "a0.": 1, - "decide": 1, - "permut_add_inside_eq": 1, - "permut_add_cons_inside": 3, - "permut_add_inside": 1, - "permut_middle": 1, - "permut_refl.": 5, - "permut_sym_app": 1, - "permut_rev": 1, - "permut_add_cons_inside.": 1, - "app_nil_end": 1, - "results": 1, - "permut_conv_inv": 1, - "plus_reg_l.": 1, - "permut_app_inv1": 1, - "list_contents_app.": 1, - "plus_reg_l": 1, - "multiplicity": 6, - "Fact": 3, - "if_eqA_then": 1, - "B": 6, - "if_eqA_refl": 3, - "decide_left": 1, - "if_eqA": 1, - "contradict": 3, - "A1": 2, - "if_eqA_rewrite_r": 1, - "A2": 4, - "Hxx": 1, - "multiplicity_InA": 4, - "InA": 8, - "multiplicity_InA_O": 2, - "multiplicity_InA_S": 1, - "multiplicity_NoDupA": 1, - "NoDupA": 3, - "NEQ": 1, - "compatible": 1, - "permut_InA_InA": 3, - "multiplicity_InA.": 1, - "meq.": 2, - "permut_cons_InA": 3, - "permut_nil": 3, - "Abs": 2, - "permut_length_1": 1, - "permut_length_2": 1, - "permut_length_1.": 2, - "@if_eqA_rewrite_l": 2, - "permut_length": 1, - "InA_split": 1, - "h2": 1, - "plus_n_Sm": 1, - "f_equal.": 1, - "app_length": 1, - "IHl1": 1, - "permut_remove_hd": 1, - "f_equal": 1, - "if_eqA_rewrite_l": 1, - "NoDupA_equivlistA_permut": 1, - "Equivalence_Reflexive.": 1, - "change": 1, - "Equivalence_Reflexive": 1, - "Forall2": 2, - "permutation_Permutation": 1, - "Forall2.": 1, - "proof": 1, - "IHA": 2, - "Forall2_app_inv_r": 1, - "Hl1": 1, - "Hl2": 1, - "Forall2_app": 1, - "Forall2_cons": 1, - "Permutation_impl_permutation": 1, - "permut_eqA": 1, - "Permut_permut.": 1, - "permut_right": 1, - "permut_tran": 1, - "Lists.": 1, - "X.": 4, - "app": 5, - "snoc": 9, - "Arguments": 11, - "list123": 1, - "right": 2, - "test_repeat1": 1, - "nil_app": 1, - "rev_snoc": 1, - "snoc_with_append": 1, - "v.": 1, - "IHl1.": 1, - "prod": 3, - "Y.": 1, - "type_scope.": 1, - "combine": 3, - "lx": 4, - "ly": 4, - "tx": 2, - "ty": 7, - "tp": 2, - "option": 6, - "xs": 7, - "plus3": 2, - "prod_curry": 3, - "prod_uncurry": 3, - "uncurry_uncurry": 1, - "curry_uncurry": 1, - "filter": 3, - "test": 4, - "countoddmembers": 1, - "k": 7, - "fmostlytrue": 5, - "override": 5, - "ftrue": 1, - "override_example1": 1, - "override_example2": 1, - "override_example3": 1, - "override_example4": 1, - "override_example": 1, - "constfun": 1, - "unfold_example_bad": 1, - "plus3.": 1, - "override_eq": 1, - "f.": 1, - "override.": 2, - "override_neq": 1, - "x2": 3, - "k1": 5, - "k2": 4, - "eq.": 11, - "silly4": 1, - "silly5": 1, - "sillyex1": 1, - "j": 6, - "j.": 1, - "silly6": 1, - "silly7": 1, - "sillyex2": 1, - "assertion": 3, - "Hl.": 1, - "eq": 4, - "beq_nat_O_l": 1, - "beq_nat_O_r": 1, - "double_injective": 1, - "double": 2, - "fold_map": 2, - "fold": 1, - "total": 2, - "fold_map_correct": 1, - "fold_map.": 1, - "forallb": 4, - "existsb": 3, - "existsb2": 2, - "existsb_correct": 1, - "existsb2.": 1, - "index_okx": 1, - "mumble": 5, - "mumble.": 1, - "grumble": 3, - "Logic.": 1, - "Prop.": 1, - "partial_function": 6, - "R": 54, - "y1": 6, - "y2": 5, - "y2.": 3, - "next_nat_partial_function": 1, - "next_nat.": 1, - "partial_function.": 5, - "Q.": 2, - "le_not_a_partial_function": 1, - "le": 1, - "not.": 3, - "Nonsense.": 4, - "le_n.": 6, - "le_S.": 4, - "total_relation_not_partial_function": 1, - "total_relation": 1, - "total_relation1.": 2, - "empty_relation_not_partial_funcion": 1, - "empty_relation.": 1, - "reflexive": 5, - "le_reflexive": 1, - "le.": 4, - "reflexive.": 1, - "transitive": 8, - "le_trans": 4, - "Hnm": 3, - "Hmo.": 4, - "Hnm.": 3, - "IHHmo.": 1, - "lt.": 2, - "transitive.": 1, - "Hm": 1, - "le_S_n": 2, - "Sn_le_Sm__n_le_m.": 1, - "not": 1, - "TODO": 1, - "Hmo": 1, - "symmetric": 2, - "antisymmetric": 3, - "le_antisymmetric": 1, - "Sn_le_Sm__n_le_m": 2, - "IHb": 1, - "equivalence": 1, - "order": 2, - "preorder": 1, - "le_order": 1, - "order.": 1, - "le_reflexive.": 1, - "le_antisymmetric.": 1, - "le_trans.": 1, - "clos_refl_trans": 8, - "rt_step": 1, - "rt_refl": 1, - "rt_trans": 3, - "next_nat_closure_is_le": 1, - "next_nat": 1, - "rt_refl.": 2, - "IHle.": 1, - "rt_step.": 2, - "nn.": 1, - "IHclos_refl_trans1.": 2, - "IHclos_refl_trans2.": 2, - "refl_step_closure": 11, - "rsc_refl": 1, - "rsc_step": 4, - "rsc_R": 2, - "rsc_refl.": 4, - "rsc_trans": 4, - "IHrefl_step_closure": 1, - "rtc_rsc_coincide": 1, - "IHrefl_step_closure.": 1, - "Imp.": 1, - "Relations.": 1, - "tm": 43, - "tm_const": 45, - "tm_plus": 30, - "tm.": 3, - "SimpleArith0.": 2, - "eval": 8, - "SimpleArith1.": 2, - "E_Const": 2, - "E_Plus": 2, - "test_step_1": 1, - "ST_Plus1.": 2, - "ST_PlusConstConst.": 3, - "test_step_2": 1, - "ST_Plus2.": 2, - "step_deterministic": 1, - "step.": 3, - "Hy1": 2, - "Hy2.": 2, - "step_cases": 4, - "Hy2": 3, - "SCase.": 3, - "Hy1.": 5, - "IHHy1": 2, - "SimpleArith2.": 1, - "value": 25, - "v_const": 4, - "step": 9, - "ST_PlusConstConst": 3, - "ST_Plus1": 2, - "strong_progress": 2, - "value_not_same_as_normal_form": 2, - "normal_form": 3, - "t.": 4, - "normal_form.": 2, - "v_funny.": 1, - "Temp1.": 1, - "Temp2.": 1, - "ST_Funny": 1, - "Temp3.": 1, - "Temp4.": 2, - "tm_true": 8, - "tm_false": 5, - "tm_if": 10, - "v_true": 1, - "v_false": 1, - "tm_false.": 3, - "ST_IfTrue": 1, - "ST_IfFalse": 1, - "ST_If": 1, - "t3": 6, - "bool_step_prop4": 1, - "bool_step_prop4_holds": 1, - "bool_step_prop4.": 2, - "ST_ShortCut.": 1, - "IHt1.": 1, - "t2.": 4, - "t3.": 2, - "ST_If.": 2, - "Temp5.": 1, - "stepmany": 4, - "normalizing": 1, - "IHt2": 3, - "H11": 2, - "H12": 2, - "H21": 3, - "H22": 2, - "nf_same_as_value": 3, - "H12.": 1, - "H22.": 1, - "H11.": 1, - "stepmany_congr_1": 1, - "stepmany_congr2": 1, - "eval__value": 1, - "HE.": 1, - "eval_cases": 1, - "HE": 1, - "v_const.": 1, - "Sorted.": 1, - "Mergesort.": 1, - "STLC.": 1, - "ty_Bool": 10, - "ty_arrow": 7, - "ty.": 2, - "tm_var": 6, - "tm_app": 7, - "tm_abs": 9, - "idB": 2, - "idBB": 2, - "idBBBB": 2, - "v_abs": 1, - "t_true": 1, - "t_false": 1, - "value.": 1, - "ST_App2": 1, - "step_example3": 1, - "idB.": 1, - "rsc_step.": 2, - "ST_App1.": 2, - "ST_AppAbs.": 3, - "v_abs.": 2, - "context": 1, - "partial_map": 4, - "Context.": 1, - "empty": 3, - "extend": 1, - "Gamma": 10, - "has_type": 4, - "appears_free_in": 1, - "S.": 1, - "HT": 1, - "T_Var.": 1, - "extend_neq": 1, - "Heqe.": 3, - "T_Abs.": 1, - "context_invariance...": 2, - "Hafi.": 2, - "extend.": 2, - "IHt.": 1, - "Coiso1.": 2, - "Coiso2.": 3, - "HeqCoiso1.": 1, - "HeqCoiso2.": 1, - "beq_id_false_not_eq.": 1, - "ex_falso_quodlibet.": 1, - "preservation": 1, - "HT.": 1, - "substitution_preserves_typing": 1, - "T11.": 4, - "HT1.": 1, - "T_App": 2, - "IHHT1.": 1, - "IHHT2.": 1, - "tm_cases": 1, - "Ht": 1, - "Ht.": 3, - "IHt1": 2, - "T11": 2, - "ST_App2.": 1, - "ty_Bool.": 1, - "IHt3": 1, - "ST_IfTrue.": 1, - "ST_IfFalse.": 1, - "types_unique": 1, - "T12": 2, - "IHhas_type.": 1, - "IHhas_type1.": 1, - "IHhas_type2.": 1 - }, - "Creole": { - "Creole": 6, - "is": 3, - "a": 2, - "-": 5, - "to": 2, - "HTML": 1, - "converter": 2, - "for": 1, - "the": 5, - "lightweight": 1, - "markup": 1, - "language": 1, - "(": 5, - "http": 4, - "//wikicreole.org/": 1, - ")": 5, - ".": 1, - "Github": 1, - "uses": 1, - "this": 1, - "render": 1, - "*.creole": 1, - "files.": 1, - "Project": 1, - "page": 1, - "on": 2, - "github": 1, - "*": 5, - "//github.com/minad/creole": 1, - "Travis": 1, - "CI": 1, - "https": 1, - "//travis": 1, - "ci.org/minad/creole": 1, - "RDOC": 1, - "//rdoc.info/projects/minad/creole": 1, - "INSTALLATION": 1, - "{": 6, - "gem": 1, - "install": 1, - "creole": 1, - "}": 6, - "SYNOPSIS": 1, - "require": 1, - "html": 1, - "Creole.creolize": 1, - "BUGS": 1, - "If": 1, - "you": 1, - "found": 1, - "bug": 1, - "please": 1, - "report": 1, - "it": 1, - "at": 1, - "project": 1, - "s": 1, - "tracker": 1, - "GitHub": 1, - "//github.com/minad/creole/issues": 1, - "AUTHORS": 1, - "Lars": 2, - "Christensen": 2, - "larsch": 1, - "Daniel": 2, - "Mendler": 1, - "minad": 1, - "LICENSE": 1, - "Copyright": 1, - "c": 1, - "Mendler.": 1, - "It": 1, - "free": 1, - "software": 1, - "and": 1, - "may": 1, - "be": 1, - "redistributed": 1, - "under": 1, - "terms": 1, - "specified": 1, - "in": 1, - "README": 1, - "file": 1, - "of": 1, - "Ruby": 1, - "distribution.": 1 - }, - "Crystal": { - "SHEBANG#!bin/crystal": 2, - "require": 2, - "describe": 2, - "do": 26, - "it": 21, - "run": 14, - "(": 201, - ")": 201, - ".to_i.should": 11, - "eq": 16, - "end": 135, - ".to_f32.should": 2, - ".to_b.should": 1, - "be_true": 1, - "assert_type": 7, - "{": 7, - "int32": 8, - "}": 7, - "union_of": 1, - "char": 1, - "result": 3, - "types": 3, - "[": 9, - "]": 9, - "mod": 1, - "result.program": 1, - "foo": 3, - "mod.types": 1, - "as": 4, - "NonGenericClassType": 1, - "foo.instance_vars": 1, - ".type.should": 3, - "mod.int32": 1, - "GenericClassType": 2, - "foo_i32": 4, - "foo.instantiate": 2, - "of": 3, - "Type": 2, - "|": 8, - "ASTNode": 4, - "foo_i32.lookup_instance_var": 2, - "module": 1, - "Crystal": 1, - "class": 2, - "def": 84, - "transform": 81, - "transformer": 1, - "transformer.before_transform": 1, - "self": 77, - "node": 164, - "transformer.transform": 1, - "transformer.after_transform": 1, - "Transformer": 1, - "before_transform": 1, - "after_transform": 1, - "Expressions": 2, - "exps": 6, - "node.expressions.each": 1, - "exp": 3, - "new_exp": 3, - "exp.transform": 3, - "if": 23, - "new_exp.is_a": 1, - "exps.concat": 1, - "new_exp.expressions": 1, - "else": 2, - "<<": 1, - "exps.length": 1, - "node.expressions": 3, - "Call": 1, - "node_obj": 1, - "node.obj": 9, - "node_obj.transform": 1, - "transform_many": 23, - "node.args": 3, - "node_block": 1, - "node.block": 2, - "node_block.transform": 1, - "node_block_arg": 1, - "node.block_arg": 6, - "node_block_arg.transform": 1, - "And": 1, - "node.left": 3, - "node.left.transform": 3, - "node.right": 3, - "node.right.transform": 3, - "Or": 1, - "StringInterpolation": 1, - "ArrayLiteral": 1, - "node.elements": 1, - "node_of": 1, - "node.of": 2, - "node_of.transform": 1, - "HashLiteral": 1, - "node.keys": 1, - "node.values": 2, - "of_key": 1, - "node.of_key": 2, - "of_key.transform": 1, - "of_value": 1, - "node.of_value": 2, - "of_value.transform": 1, - "If": 1, - "node.cond": 5, - "node.cond.transform": 5, - "node.then": 3, - "node.then.transform": 3, - "node.else": 5, - "node.else.transform": 3, - "Unless": 1, - "IfDef": 1, - "MultiAssign": 1, - "node.targets": 1, - "SimpleOr": 1, - "Def": 1, - "node.body": 12, - "node.body.transform": 10, - "receiver": 2, - "node.receiver": 4, - "receiver.transform": 2, - "block_arg": 2, - "block_arg.transform": 2, - "Macro": 1, - "PointerOf": 1, - "node.exp": 3, - "node.exp.transform": 3, - "SizeOf": 1, - "InstanceSizeOf": 1, - "IsA": 1, - "node.obj.transform": 5, - "node.const": 1, - "node.const.transform": 1, - "RespondsTo": 1, - "Case": 1, - "node.whens": 1, - "node_else": 1, - "node_else.transform": 1, - "When": 1, - "node.conds": 1, - "ImplicitObj": 1, - "ClassDef": 1, - "superclass": 1, - "node.superclass": 2, - "superclass.transform": 1, - "ModuleDef": 1, - "While": 1, - "Generic": 1, - "node.name": 5, - "node.name.transform": 5, - "node.type_vars": 1, - "ExceptionHandler": 1, - "node.rescues": 1, - "node_ensure": 1, - "node.ensure": 2, - "node_ensure.transform": 1, - "Rescue": 1, - "node.types": 2, - "Union": 1, - "Hierarchy": 1, - "Metaclass": 1, - "Arg": 1, - "default_value": 1, - "node.default_value": 2, - "default_value.transform": 1, - "restriction": 1, - "node.restriction": 2, - "restriction.transform": 1, - "BlockArg": 1, - "node.fun": 1, - "node.fun.transform": 1, - "Fun": 1, - "node.inputs": 1, - "output": 1, - "node.output": 2, - "output.transform": 1, - "Block": 1, - "node.args.map": 1, - "Var": 2, - "FunLiteral": 1, - "node.def.body": 1, - "node.def.body.transform": 1, - "FunPointer": 1, - "obj": 1, - "obj.transform": 1, - "Return": 1, - "node.exps": 5, - "Break": 1, - "Next": 1, - "Yield": 1, - "scope": 1, - "node.scope": 2, - "scope.transform": 1, - "Include": 1, - "Extend": 1, - "RangeLiteral": 1, - "node.from": 1, - "node.from.transform": 1, - "node.to": 2, - "node.to.transform": 2, - "Assign": 1, - "node.target": 1, - "node.target.transform": 1, - "node.value": 3, - "node.value.transform": 3, - "Nop": 1, - "NilLiteral": 1, - "BoolLiteral": 1, - "NumberLiteral": 1, - "CharLiteral": 1, - "StringLiteral": 1, - "SymbolLiteral": 1, - "RegexLiteral": 1, - "MetaVar": 1, - "InstanceVar": 1, - "ClassVar": 1, - "Global": 1, - "Require": 1, - "Path": 1, - "Self": 1, - "LibDef": 1, - "FunDef": 1, - "body": 1, - "body.transform": 1, - "TypeDef": 1, - "StructDef": 1, - "UnionDef": 1, - "EnumDef": 1, - "ExternalVar": 1, - "IndirectRead": 1, - "IndirectWrite": 1, - "TypeOf": 1, - "Primitive": 1, - "Not": 1, - "TypeFilteredNode": 1, - "TupleLiteral": 1, - "Cast": 1, - "DeclareVar": 1, - "node.var": 1, - "node.var.transform": 1, - "node.declared_type": 1, - "node.declared_type.transform": 1, - "Alias": 1, - "TupleIndexer": 1, - "Attribute": 1, - "exps.map": 1 - }, - "Cuda": { - "__global__": 2, - "void": 3, - "scalarProdGPU": 1, - "(": 20, - "float": 8, - "*d_C": 1, - "*d_A": 1, - "*d_B": 1, - "int": 14, - "vectorN": 2, - "elementN": 3, - ")": 20, - "{": 8, - "//Accumulators": 1, - "cache": 1, - "__shared__": 1, - "accumResult": 5, - "[": 11, - "ACCUM_N": 4, - "]": 11, - ";": 30, - "////////////////////////////////////////////////////////////////////////////": 2, - "for": 5, - "vec": 5, - "blockIdx.x": 2, - "<": 5, - "+": 12, - "gridDim.x": 1, - "vectorBase": 3, - "IMUL": 1, - "vectorEnd": 2, - "////////////////////////////////////////////////////////////////////////": 4, - "iAccum": 10, - "threadIdx.x": 4, - "blockDim.x": 3, - "sum": 3, - "pos": 5, - "d_A": 2, - "*": 2, - "d_B": 2, - "}": 8, - "stride": 5, - "/": 2, - "__syncthreads": 1, - "if": 3, - "d_C": 2, - "#include": 2, - "": 1, - "": 1, - "vectorAdd": 2, - "const": 2, - "*A": 1, - "*B": 1, - "*C": 1, - "numElements": 4, - "i": 5, - "C": 1, - "A": 1, - "B": 1, - "main": 1, - "cudaError_t": 1, - "err": 5, - "cudaSuccess": 2, - "threadsPerBlock": 4, - "blocksPerGrid": 1, - "-": 1, - "<<": 1, - "": 1, - "cudaGetLastError": 1, - "fprintf": 1, - "stderr": 1, - "cudaGetErrorString": 1, - "exit": 1, - "EXIT_FAILURE": 1, - "cudaDeviceReset": 1, - "return": 1 - }, - "Cycript": { - "(": 12, - "function": 2, - "utils": 2, - ")": 12, - "{": 8, - "//": 4, - "Load": 1, - "C": 2, - "functions": 3, - "declared": 1, - "in": 2, - "utils.loadFuncs": 1, - "var": 6, - "shouldLoadCFuncs": 2, - "true": 2, - ";": 21, - "Expose": 2, - "the": 1, - "to": 4, - "cycript": 2, - "s": 2, - "global": 1, - "scope": 1, - "shouldExposeConsts": 2, - "defined": 1, - "here": 1, - "t": 1, - "be": 2, - "found": 2, - "with": 1, - "dlsym": 1, - "Failed": 1, - "load": 1, - "mach_vm_address_t": 1, - "string": 4, - "@encode": 2, - "infinite": 1, - "*": 1, - "length": 1, - "[": 8, - "object": 1, - "Struct": 1, - "]": 8, - "%": 8, - "@": 3, - "<%@:>": 1, - "0x": 1, - "+": 3, - "-": 2, - "printf": 1, - ".3s": 1, - "d": 2, - "c": 5, - "float": 1, - "f": 1, - "n": 1, - "foo": 2, - "barrrr": 1, - "Args": 1, - "needs": 1, - "an": 1, - "array": 1, - "number": 1, - "Function": 1, - "not": 1, - "foobar": 2, - "strdup": 2, - "pipe": 1, - "write": 1, - "close": 2, - "int": 1, - "a": 1, - "short": 1, - "b": 1, - "char": 1, - "uint64_t": 1, - "double": 1, - "e": 1, - "struct": 1, - "}": 9, - "return": 1, - "new": 1, - "Type": 1, - "typeStr": 1, - "Various": 1, - "constants": 1, - "utils.constants": 2, - "VM_PROT_NONE": 1, - "VM_PROT_READ": 1, - "VM_PROT_WRITE": 1, - "VM_PROT_EXECUTE": 1, - "VM_PROT_NO_CHANGE": 1, - "VM_PROT_COPY": 1, - "VM_PROT_WANTS_COPY": 1, - "VM_PROT_IS_MASK": 1, - "c.VM_PROT_DEFAULT": 1, - "c.VM_PROT_READ": 2, - "|": 3, - "c.VM_PROT_WRITE": 2, - "c.VM_PROT_ALL": 1, - "c.VM_PROT_EXECUTE": 1, - "if": 3, - "for": 2, - "k": 3, - "Cycript.all": 2, - "shouldExposeFuncs": 1, - "i": 4, - "<": 1, - "funcsToExpose.length": 1, - "name": 3, - "funcsToExpose": 1, - "utils.loadfuncs": 1, - "shouldExposeCFuncs": 1, - "exports": 1 - }, - "DM": { - "#define": 4, - "PI": 6, - "#if": 1, - "G": 1, - "#elif": 1, - "I": 1, - "#else": 1, - "K": 1, - "#endif": 1, - "var/GlobalCounter": 1, - "var/const/CONST_VARIABLE": 1, - "var/list/MyList": 1, - "list": 3, - "(": 17, - "new": 1, - "/datum/entity": 2, - ")": 17, - "var/list/EmptyList": 1, - "[": 2, - "]": 2, - "//": 6, - "creates": 1, - "a": 1, - "of": 1, - "null": 2, - "entries": 1, - "var/list/NullList": 1, - "var/name": 1, - "var/number": 1, - "/datum/entity/proc/myFunction": 1, - "world.log": 5, - "<<": 5, - "/datum/entity/New": 1, - "number": 2, - "GlobalCounter": 1, - "+": 3, - "/datum/entity/unit": 1, - "name": 1, - "/datum/entity/unit/New": 1, - "..": 1, - "calls": 1, - "the": 2, - "parent": 1, - "s": 1, - "proc": 1, - ";": 3, - "equal": 1, - "to": 1, - "super": 1, - "and": 1, - "base": 1, - "in": 1, - "other": 1, - "languages": 1, - "rand": 1, - "/datum/entity/unit/myFunction": 1, - "/proc/ReverseList": 1, - "var/list/input": 1, - "var/list/output": 1, - "for": 1, - "var/i": 1, - "input.len": 1, - "i": 3, - "-": 2, - "IMPORTANT": 1, - "List": 1, - "Arrays": 1, - "count": 1, - "from": 1, - "output": 2, - "input": 1, - "is": 2, - "return": 3, - "/proc/DoStuff": 1, - "var/bitflag": 2, - "bitflag": 4, - "|": 1, - "/proc/DoOtherStuff": 1, - "bits": 1, - "maximum": 1, - "amount": 1, - "&": 1, - "/proc/DoNothing": 1, - "var/pi": 1, - "if": 2, - "pi": 2, - "else": 2, - "CONST_VARIABLE": 1, - "#undef": 1, - "Undefine": 1 - }, - "Dart": { - "import": 1, - "as": 1, - "math": 1, - ";": 9, - "class": 1, - "Point": 5, - "{": 3, - "num": 2, - "x": 2, - "y": 2, - "(": 7, - "this.x": 1, - "this.y": 1, - ")": 7, - "distanceTo": 1, - "other": 1, - "var": 4, - "dx": 3, - "-": 2, - "other.x": 1, - "dy": 3, - "other.y": 1, - "return": 1, - "math.sqrt": 1, - "*": 2, - "+": 1, - "}": 3, - "void": 1, - "main": 1, - "p": 1, - "new": 2, - "q": 1, - "print": 1 - }, - "Diff": { - "diff": 1, - "-": 5, - "git": 1, - "a/lib/linguist.rb": 2, - "b/lib/linguist.rb": 2, - "index": 1, - "d472341..8ad9ffb": 1, - "+": 3 - }, - "Dogescript": { - "quiet": 1, - "wow": 4, - "such": 2, - "language": 3, - "very": 1, - "syntax": 1, - "github": 1, - "recognized": 1, - "loud": 1, - "much": 1, - "friendly": 2, - "rly": 1, - "is": 2, - "true": 1, - "plz": 2, - "console.loge": 2, - "with": 2, - "but": 1, - "module.exports": 1 - }, - "E": { - "def": 24, - "makeVehicle": 3, - "(": 65, - "self": 1, - ")": 64, - "{": 57, - "vehicle": 2, - "to": 27, - "milesTillEmpty": 1, - "return": 19, - "self.milesPerGallon": 1, - "*": 1, - "self.getFuelRemaining": 1, - "}": 57, - "makeCar": 4, - "var": 6, - "fuelRemaining": 4, - "car": 8, - "extends": 2, - "milesPerGallon": 2, - "getFuelRemaining": 2, - "makeJet": 1, - "jet": 3, - "println": 2, - "The": 2, - "can": 1, - "go": 1, - "car.milesTillEmpty": 1, - "miles.": 1, - "name": 4, - "x": 3, - "y": 3, - "moveTo": 1, - "newX": 2, - "newY": 2, - "getX": 1, - "getY": 1, - "setName": 1, - "newName": 2, - "getName": 1, - "sportsCar": 1, - "sportsCar.moveTo": 1, - "sportsCar.getName": 1, - "is": 1, - "at": 1, - "X": 1, - "location": 1, - "sportsCar.getX": 1, - "makeVOCPair": 1, - "brandName": 3, - "String": 1, - "near": 6, - "myTempContents": 6, - "none": 2, - "brand": 5, - "__printOn": 4, - "out": 4, - "TextWriter": 4, - "void": 5, - "out.print": 4, - "ProveAuth": 2, - "<$brandName>": 3, - "prover": 1, - "getBrand": 4, - "coerce": 2, - "specimen": 2, - "optEjector": 3, - "sealedBox": 2, - "offerContent": 1, - "CheckAuth": 2, - "checker": 3, - "template": 1, - "match": 4, - "[": 10, - "get": 2, - "authList": 2, - "any": 2, - "]": 10, - "specimenBox": 2, - "null": 1, - "if": 2, - "specimenBox.__respondsTo": 1, - "specimenBox.offerContent": 1, - "else": 1, - "for": 3, - "auth": 3, - "in": 1, - "throw.eject": 1, - "Unmatched": 1, - "authorization": 1, - "__respondsTo": 2, - "_": 3, - "true": 1, - "false": 1, - "__getAllegedType": 1, - "null.__getAllegedType": 1, - "#File": 1, - "objects": 1, - "hardwired": 1, - "files": 1, - "file1": 1, - "": 1, - "file2": 1, - "": 1, - "#Using": 2, - "a": 4, - "variable": 1, - "file": 3, - "filePath": 2, - "file3": 1, - "": 1, - "single": 1, - "character": 1, - "specify": 1, - "Windows": 1, - "drive": 1, - "file4": 1, - "": 1, - "file5": 1, - "": 1, - "file6": 1, - "": 1, - "pragma.syntax": 1, - "send": 1, - "message": 4, - "when": 2, - "friend": 4, - "<-receive(message))>": 1, - "chatUI.showMessage": 4, - "catch": 2, - "prob": 2, - "receive": 1, - "receiveFriend": 2, - "friendRcvr": 2, - "bind": 2, - "save": 1, - "file.setText": 1, - "makeURIFromObject": 1, - "chatController": 2, - "load": 1, - "getObjectFromURI": 1, - "file.getText": 1, - "<": 1, - "-": 2, - "tempVow": 2, - "#...use": 1, - "#....": 1, - "report": 1, - "problem": 1, - "finally": 1, - "#....log": 1, - "event": 1 - }, - "ECL": { - "#option": 1, - "(": 32, - "true": 1, - ")": 32, - ";": 23, - "namesRecord": 4, - "RECORD": 1, - "string20": 1, - "surname": 1, - "string10": 2, - "forename": 1, - "integer2": 5, - "age": 2, - "dadAge": 1, - "mumAge": 1, - "END": 1, - "namesRecord2": 3, - "record": 1, - "extra": 1, - "end": 1, - "namesTable": 11, - "dataset": 2, - "FLAT": 2, - "namesTable2": 9, - "aveAgeL": 3, - "l": 1, - "l.dadAge": 1, - "+": 16, - "l.mumAge": 1, - "/2": 2, - "aveAgeR": 4, - "r": 1, - "r.dadAge": 1, - "r.mumAge": 1, - "output": 9, - "join": 11, - "left": 2, - "right": 3, - "//Several": 1, - "simple": 1, - "examples": 1, - "of": 1, - "sliding": 2, - "syntax": 1, - "left.age": 8, - "right.age": 12, - "-": 5, - "and": 10, - "<": 1, - "between": 7, - "//Same": 1, - "but": 1, - "on": 1, - "strings.": 1, - "Also": 1, - "includes": 1, - "to": 1, - "ensure": 1, - "sort": 1, - "is": 1, - "done": 1, - "by": 1, - "non": 1, - "before": 1, - "sliding.": 1, - "left.surname": 2, - "right.surname": 4, - "[": 4, - "]": 4, - "all": 1, - "//This": 1, - "should": 1, - "not": 1, - "generate": 1, - "a": 1, - "self": 1 - }, - "Eagle": { - "": 2, - "version=": 4, - "encoding=": 2, - "": 2, - "eagle": 4, - "SYSTEM": 2, - "dtd": 2, - "": 2, - "": 2, - "": 2, - "": 4, - "alwaysvectorfont=": 2, - "verticaltext=": 2, - "": 2, - "": 2, - "distance=": 2, - "unitdist=": 2, - "unit=": 2, - "style=": 2, - "multiple=": 2, - "display=": 2, - "altdistance=": 2, - "altunitdist=": 2, - "altunit=": 2, - "": 2, - "": 118, - "number=": 119, - "name=": 447, - "color=": 118, - "fill=": 118, - "visible=": 118, - "active=": 125, - "": 2, - "": 1, - "": 1, - "": 497, - "x1=": 630, - "y1=": 630, - "x2=": 630, - "y2=": 630, - "width=": 512, - "layer=": 822, - "": 1, - "": 2, - "": 4, - "": 60, - "&": 5501, - "lt": 2665, - ";": 5567, - "b": 64, - "gt": 2770, - "Resistors": 2, - "Capacitors": 4, - "Inductors": 2, - "/b": 64, - "p": 65, - "Based": 2, - "on": 2, - "the": 5, - "previous": 2, - "libraries": 2, - "ul": 2, - "li": 12, - "r.lbr": 2, - "cap.lbr": 2, - "cap": 2, - "-": 768, - "fe.lbr": 2, - "captant.lbr": 2, - "polcap.lbr": 2, - "ipc": 2, - "smd.lbr": 2, - "/ul": 2, - "All": 2, - "SMD": 4, - "packages": 2, - "are": 2, - "defined": 2, - "according": 2, - "to": 3, - "IPC": 2, - "specifications": 2, - "and": 5, - "CECC": 2, - "author": 3, - "Created": 3, - "by": 3, - "librarian@cadsoft.de": 3, - "/author": 3, - "for": 5, - "Electrolyt": 2, - "see": 4, - "also": 2, - "www.bccomponents.com": 2, - "www.panasonic.com": 2, - "www.kemet.com": 2, - "http": 4, - "//www.secc.co.jp/pdf/os_e/2004/e_os_all.pdf": 2, - "(": 4, - "SANYO": 2, - ")": 4, - "trimmer": 2, - "refence": 2, - "u": 2, - "www.electrospec": 2, - "inc.com/cross_references/trimpotcrossref.asp": 2, - "/u": 2, - "table": 2, - "border": 2, - "cellspacing": 2, - "cellpadding": 2, - "width": 6, - "cellpaddding": 2, - "tr": 2, - "valign": 2, - "td": 4, - "amp": 66, - "nbsp": 66, - "/td": 4, - "font": 2, - "color": 20, - "size": 2, - "TRIM": 4, - "POT": 4, - "CROSS": 4, - "REFERENCE": 4, - "/font": 2, - "P": 128, - "TABLE": 4, - "BORDER": 4, - "CELLSPACING": 4, - "CELLPADDING": 4, - "TR": 36, - "TD": 170, - "COLSPAN": 16, - "FONT": 166, - "SIZE": 166, - "FACE": 166, - "ARIAL": 166, - "B": 106, - "RECTANGULAR": 2, - "MULTI": 6, - "TURN": 10, - "/B": 90, - "/FONT": 166, - "/TD": 170, - "/TR": 36, - "ALIGN": 124, - "CENTER": 124, - "BOURNS": 6, - "BI": 10, - "TECH": 10, - "DALE": 10, - "VISHAY": 10, - "PHILIPS/MEPCO": 10, - "MURATA": 6, - "PANASONIC": 10, - "SPECTROL": 6, - "MILSPEC": 6, - "BGCOLOR": 76, - "BR": 1478, - "W": 92, - "Y": 36, - "J": 12, - "L": 18, - "X": 82, - "PH": 2, - "XH": 2, - "SLT": 2, - "ALT": 42, - "T8S": 2, - "T18/784": 2, - "/1897": 2, - "/1880": 2, - "EKP/CT20/RJ": 2, - "RJ": 14, - "EKQ": 4, - "EKR": 4, - "EKJ": 2, - "EKL": 2, - "S": 18, - "EVMCOG": 2, - "T602": 2, - "RT/RTR12": 6, - "RJ/RJR12": 6, - "SQUARE": 2, - "BOURN": 4, - "H": 24, - "Z": 16, - "T63YB": 2, - "T63XB": 2, - "T93Z": 2, - "T93YA": 2, - "T93XA": 2, - "T93YB": 2, - "T93XB": 2, - "EKP": 8, - "EKW": 6, - "EKM": 4, - "EKB": 2, - "EKN": 2, - "P/CT9P": 2, - "P/3106P": 2, - "W/3106W": 2, - "X/3106X": 2, - "Y/3106Y": 2, - "Z/3105Z": 2, - "EVMCBG": 2, - "EVMCCG": 2, - "RT/RTR22": 8, - "RJ/RJR22": 6, - "RT/RTR26": 6, - "RJ/RJR26": 12, - "RT/RTR24": 6, - "RJ/RJR24": 12, - "SINGLE": 4, - "E": 6, - "K": 4, - "T": 10, - "V": 10, - "M": 10, - "R": 6, - "U": 4, - "C": 6, - "F": 4, - "RX": 6, - "PA": 2, - "A": 16, - "XW": 2, - "XL": 2, - "PM": 2, - "PX": 2, - "RXW": 2, - "RXL": 2, - "T7YB": 2, - "T7YA": 2, - "TXD": 2, - "TYA": 2, - "TYP": 2, - "TYD": 2, - "TX": 4, - "SX": 6, - "ET6P": 2, - "ET6S": 2, - "ET6X": 2, - "W/8014EMW": 2, - "P/8014EMP": 2, - "X/8014EMX": 2, - "TM7W": 2, - "TM7P": 2, - "TM7X": 2, - "SMS": 2, - "SMB": 2, - "SMA": 2, - "CT": 12, - "EKV": 2, - "EKX": 2, - "EKZ": 2, - "N": 2, - "RVA0911V304A": 2, - "RVA0911H413A": 2, - "RVG0707V100A": 2, - "RVA0607V": 2, - "RVA1214H213A": 2, - "EVMQ0G": 4, - "EVMQIG": 2, - "EVMQ3G": 2, - "EVMS0G": 2, - "EVMG0G": 2, - "EVMK4GA00B": 2, - "EVM30GA00B": 2, - "EVMK0GA00B": 2, - "EVM38GA00B": 2, - "EVMB6": 2, - "EVLQ0": 2, - "EVMMSG": 2, - "EVMMBG": 2, - "EVMMAG": 2, - "EVMMCS": 2, - "EVMM1": 2, - "EVMM0": 2, - "EVMM3": 2, - "RJ/RJR50": 6, - "/TABLE": 4, - "TOCOS": 4, - "AUX/KYOCERA": 4, - "G": 10, - "ST63Z": 2, - "ST63Y": 2, - "ST5P": 2, - "ST5W": 2, - "ST5X": 2, - "A/B": 2, - "C/D": 2, - "W/X": 2, - "ST5YL/ST53YL": 2, - "ST5YJ/5T53YJ": 2, - "ST": 14, - "EVM": 8, - "YS": 2, - "D": 2, - "G4B": 2, - "G4A": 2, - "TR04": 2, - "S1": 4, - "TRG04": 2, - "DVR": 2, - "CVR": 4, - "A/C": 2, - "ALTERNATE": 2, - "/tr": 2, - "/table": 2, - "": 60, - "": 4, - "": 53, - "RESISTOR": 52, - "": 64, - "x=": 240, - "y=": 242, - "dx=": 64, - "dy=": 64, - "": 108, - "size=": 114, - "NAME": 52, - "": 108, - "VALUE": 52, - "": 132, - "": 52, - "": 3, - "": 3, - "Pin": 1, - "Header": 1, - "Connectors": 1, - "PIN": 1, - "HEADER": 1, - "": 39, - "drill=": 41, - "shape=": 39, - "ratio=": 41, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "language=": 2, - "EAGLE": 2, - "Design": 5, - "Rules": 5, - "Die": 1, - "Standard": 1, - "sind": 1, - "so": 2, - "gew": 1, - "hlt": 1, - "dass": 1, - "sie": 1, - "f": 1, - "r": 1, - "die": 3, - "meisten": 1, - "Anwendungen": 1, - "passen.": 1, - "Sollte": 1, - "ihre": 1, - "Platine": 1, - "besondere": 1, - "Anforderungen": 1, - "haben": 1, - "treffen": 1, - "Sie": 1, - "erforderlichen": 1, - "Einstellungen": 1, - "hier": 1, - "und": 1, - "speichern": 1, - "unter": 1, - "einem": 1, - "neuen": 1, - "Namen": 1, - "ab.": 1, - "The": 1, - "default": 1, - "have": 2, - "been": 1, - "set": 1, - "cover": 1, - "a": 2, - "wide": 1, - "range": 1, - "of": 1, - "applications.": 1, - "Your": 1, - "particular": 1, - "design": 2, - "may": 1, - "different": 1, - "requirements": 1, - "please": 1, - "make": 1, - "necessary": 1, - "adjustments": 1, - "save": 1, - "your": 1, - "customized": 1, - "rules": 1, - "under": 1, - "new": 1, - "name.": 1, - "": 142, - "value=": 145, - "": 1, - "": 1, - "": 8, - "": 8, - "refer=": 7, - "": 1, - "": 1, - "": 3, - "library=": 3, - "package=": 3, - "smashed=": 3, - "": 6, - "": 3, - "1": 1, - "778": 1, - "16": 1, - "002": 1, - "": 1, - "": 1, - "": 3, - "": 4, - "element=": 4, - "pad=": 4, - "": 1, - "extent=": 1, - "": 3, - "": 2, - "": 8, - "": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "xreflabel=": 1, - "xrefpart=": 1, - "Frames": 1, - "Sheet": 2, - "Layout": 1, - "": 1, - "": 1, - "font=": 4, - "DRAWING_NAME": 1, - "LAST_DATE_TIME": 1, - "SHEET": 1, - "": 1, - "columns=": 1, - "rows=": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "prefix=": 1, - "uservalue=": 1, - "FRAME": 1, - "DIN": 1, - "A4": 1, - "landscape": 1, - "with": 1, - "location": 1, - "doc.": 1, - "field": 1, - "": 1, - "": 1, - "symbol=": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "wave": 10, - "soldering": 10, - "Source": 2, - "//download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf": 2, - "MELF": 8, - "type": 20, - "grid": 20, - "mm": 20, - "curve=": 56, - "": 12, - "radius=": 12 - }, - "Elm": { - "import": 3, - "List": 1, - "(": 119, - "intercalate": 2, - "intersperse": 3, - ")": 116, - "Website.Skeleton": 1, - "Website.ColorScheme": 1, - "addFolder": 4, - "folder": 2, - "lst": 6, - "let": 2, - "add": 2, - "x": 13, - "y": 7, - "+": 14, - "in": 2, - "f": 8, - "n": 2, - "xs": 9, - "map": 11, - "elements": 2, - "[": 31, - "]": 31, - "functional": 2, - "reactive": 2, - "-": 11, - "example": 3, - "name": 6, - "loc": 2, - "Text.link": 1, - "toText": 6, - "toLinks": 2, - "title": 2, - "links": 2, - "flow": 4, - "right": 8, - "width": 3, - "text": 4, - "italic": 1, - "bold": 2, - ".": 9, - "Text.color": 1, - "accent4": 1, - "insertSpace": 2, - "case": 5, - "of": 7, - "{": 1, - "spacer": 2, - ";": 1, - "}": 1, - "subsection": 2, - "w": 7, - "info": 2, - "down": 3, - "words": 2, - "markdown": 1, - "|": 3, - "###": 1, - "Basic": 1, - "Examples": 1, - "Each": 1, - "listed": 1, - "below": 1, - "focuses": 1, - "on": 1, - "a": 5, - "single": 1, - "function": 1, - "or": 1, - "concept.": 1, - "These": 1, - "examples": 1, - "demonstrate": 1, - "all": 1, - "the": 1, - "basic": 1, - "building": 1, - "blocks": 1, - "Elm.": 1, - "content": 2, - "exampleSets": 2, - "plainText": 1, - "main": 3, - "lift": 1, - "skeleton": 1, - "Window.width": 1, - "asText": 1, - "qsort": 4, - "filter": 2, - "<)x)>": 1, - "data": 1, - "Tree": 3, - "Node": 8, - "Empty": 8, - "empty": 2, - "singleton": 2, - "v": 8, - "insert": 4, - "tree": 7, - "left": 7, - "if": 2, - "then": 2, - "else": 2, - "<": 1, - "fromList": 3, - "foldl": 1, - "depth": 5, - "max": 1, - "t1": 2, - "t2": 3, - "display": 4, - "monospace": 1, - "concat": 1, - "show": 2 - }, - "Emacs Lisp": { - "(": 156, - "print": 1, - ")": 144, - ";": 333, - "ess": 48, - "-": 294, - "julia.el": 2, - "ESS": 5, - "julia": 39, - "mode": 12, - "and": 3, - "inferior": 13, - "interaction": 1, - "Copyright": 1, - "C": 2, - "Vitalie": 3, - "Spinu.": 1, - "Filename": 1, - "Author": 1, - "Spinu": 2, - "based": 1, - "on": 2, - "mode.el": 1, - "from": 3, - "lang": 1, - "project": 1, - "Maintainer": 1, - "Created": 1, - "Keywords": 1, - "This": 4, - "file": 10, - "is": 5, - "*NOT*": 1, - "part": 2, - "of": 8, - "GNU": 4, - "Emacs.": 1, - "program": 6, - "free": 1, - "software": 1, - "you": 1, - "can": 1, - "redistribute": 1, - "it": 3, - "and/or": 1, - "modify": 5, - "under": 1, - "the": 10, - "terms": 1, - "General": 3, - "Public": 3, - "License": 3, - "as": 1, - "published": 1, - "by": 1, - "Free": 2, - "Software": 2, - "Foundation": 2, - "either": 1, - "version": 2, - "any": 1, - "later": 1, - "version.": 1, - "distributed": 1, - "in": 3, - "hope": 1, - "that": 2, - "will": 1, - "be": 2, - "useful": 1, - "but": 2, - "WITHOUT": 1, - "ANY": 1, - "WARRANTY": 1, - "without": 1, - "even": 1, - "implied": 1, - "warranty": 1, - "MERCHANTABILITY": 1, - "or": 3, - "FITNESS": 1, - "FOR": 1, - "A": 1, - "PARTICULAR": 1, - "PURPOSE.": 1, - "See": 1, - "for": 8, - "more": 1, - "details.": 1, - "You": 1, - "should": 2, - "have": 1, - "received": 1, - "a": 4, - "copy": 2, - "along": 1, - "with": 4, - "this": 1, - "see": 2, - "COPYING.": 1, - "If": 1, - "not": 1, - "write": 2, - "to": 4, - "Inc.": 1, - "Franklin": 1, - "Street": 1, - "Fifth": 1, - "Floor": 1, - "Boston": 1, - "MA": 1, - "USA.": 1, - "Commentary": 1, - "customise": 1, - "name": 8, - "point": 6, - "your": 1, - "release": 1, - "basic": 1, - "start": 13, - "M": 2, - "x": 2, - "julia.": 2, - "require": 2, - "auto": 1, - "alist": 9, - "table": 9, - "character": 1, - "quote": 2, - "transpose": 1, - "syntax": 7, - "entry": 4, - ".": 40, - "Syntax": 3, - "inside": 1, - "char": 6, - "defvar": 5, - "let": 3, - "make": 4, - "defconst": 5, - "regex": 5, - "unquote": 1, - "forloop": 1, - "subset": 2, - "regexp": 6, - "font": 6, - "lock": 6, - "defaults": 2, - "list": 3, - "identity": 1, - "keyword": 2, - "face": 4, - "constant": 1, - "cons": 1, - "function": 7, - "keep": 2, - "string": 8, - "paragraph": 3, - "concat": 7, - "page": 2, - "delimiter": 2, - "separate": 1, - "ignore": 2, - "fill": 1, - "prefix": 2, - "t": 6, - "final": 1, - "newline": 1, - "comment": 6, - "add": 4, - "skip": 1, - "column": 1, - "indent": 8, - "S": 2, - "line": 5, - "calculate": 1, - "parse": 1, - "sexp": 1, - "comments": 1, - "style": 2, - "default": 1, - "ignored": 1, - "local": 6, - "process": 5, - "nil": 12, - "dump": 2, - "files": 1, - "_": 1, - "autoload": 1, - "defun": 5, - "send": 3, - "visibly": 1, - "temporary": 1, - "directory": 2, - "temp": 2, - "insert": 1, - "format": 3, - "load": 1, - "command": 5, - "get": 3, - "help": 3, - "topics": 1, - "&": 3, - "optional": 3, - "proc": 3, - "words": 1, - "vector": 1, - "com": 1, - "error": 6, - "s": 5, - "*in": 1, - "[": 3, - "n": 1, - "]": 3, - "*": 1, - "at": 5, - ".*": 2, - "+": 5, - "w*": 1, - "http": 1, - "//docs.julialang.org/en/latest/search/": 1, - "q": 1, - "%": 1, - "include": 1, - "funargs": 1, - "re": 2, - "args": 10, - "language": 1, - "STERM": 1, - "editor": 2, - "R": 2, - "pager": 2, - "versions": 1, - "Julia": 1, - "made": 1, - "available.": 1, - "String": 1, - "arguments": 2, - "used": 1, - "when": 2, - "starting": 1, - "group": 1, - "###autoload": 2, - "interactive": 2, - "setq": 2, - "customize": 5, - "emacs": 1, - "<": 1, - "hook": 4, - "complete": 1, - "object": 2, - "completion": 4, - "functions": 2, - "first": 1, - "if": 4, - "fboundp": 1, - "end": 1, - "workaround": 1, - "set": 3, - "variable": 3, - "post": 1, - "run": 2, - "settings": 1, - "notably": 1, - "null": 1, - "dribble": 1, - "buffer": 3, - "debugging": 1, - "only": 1, - "dialect": 1, - "current": 2, - "arg": 1, - "let*": 2, - "jl": 2, - "space": 1, - "just": 1, - "case": 1, - "read": 1, - "..": 3, - "multi": 1, - "...": 1, - "tb": 1, - "logo": 1, - "goto": 2, - "min": 1, - "while": 1, - "search": 1, - "forward": 1, - "replace": 1, - "match": 1, - "max": 1, - "inject": 1, - "code": 1, - "etc": 1, - "hooks": 1, - "busy": 1, - "funname": 5, - "eldoc": 1, - "show": 1, - "symbol": 2, - "aggressive": 1, - "car": 1, - "funname.start": 1, - "sequence": 1, - "nth": 1, - "W": 1, - "window": 2, - "width": 1, - "minibuffer": 1, - "length": 1, - "doc": 1, - "propertize": 1, - "use": 1, - "classes": 1, - "screws": 1, - "egrep": 1 - }, - "EmberScript": { - "class": 1, - "App.FromNowView": 2, - "extends": 1, - "Ember.View": 1, - "tagName": 1, - "template": 1, - "Ember.Handlebars.compile": 1, - "output": 1, - "return": 1, - "moment": 1, - "(": 5, - "@value": 1, - ")": 5, - ".fromNow": 1, - "didInsertElement": 1, - "-": 4, - "@tick": 2, - "tick": 1, - "f": 2, - "@notifyPropertyChange": 1, - "nextTick": 4, - "Ember.run.later": 1, - "this": 1, - "@set": 1, - "willDestroyElement": 1, - "@nextTick": 1, - "Ember.run.cancel": 1, - "Ember.Handlebars.helper": 1 - }, - "Erlang": { - "SHEBANG#!escript": 3, - "%": 134, - "-": 262, - "*": 9, - "erlang": 5, - "smp": 1, - "enable": 1, - "sname": 1, - "factorial": 1, - "mnesia": 1, - "debug": 1, - "verbose": 1, - "main": 4, - "(": 236, - "[": 66, - "String": 2, - "]": 61, - ")": 230, - "try": 2, - "N": 6, - "list_to_integer": 1, - "F": 16, - "fac": 4, - "io": 5, - "format": 7, - "catch": 2, - "_": 52, - "usage": 3, - "end": 3, - ";": 56, - ".": 37, - "halt": 2, - "export": 2, - "main/1": 1, - "For": 1, - "each": 1, - "header": 1, - "file": 6, - "it": 2, - "scans": 1, - "thru": 1, - "all": 1, - "records": 1, - "and": 8, - "create": 1, - "helper": 1, - "functions": 2, - "Helper": 1, - "are": 3, - "setters": 1, - "getters": 1, - "fields": 4, - "fields_atom": 4, - "type": 6, - "module": 2, - "record_helper": 1, - "make/1": 1, - "make/2": 1, - "make": 3, - "HeaderFiles": 5, - "atom_to_list": 18, - "X": 12, - "||": 6, - "<->": 5, - "hrl": 1, - "relative": 1, - "to": 2, - "current": 1, - "dir": 1, - "OutDir": 4, - "ModuleName": 3, - "HeaderComment": 2, - "ModuleDeclaration": 2, - "+": 214, - "<": 1, - "Src": 10, - "format_src": 8, - "lists": 11, - "sort": 1, - "flatten": 6, - "read": 2, - "generate_type_default_function": 2, - "write_file": 1, - "erl": 1, - "list_to_binary": 1, - "HeaderFile": 4, - "epp": 1, - "parse_file": 1, - "of": 9, - "{": 109, - "ok": 34, - "Tree": 4, - "}": 109, - "parse": 2, - "error": 4, - "Error": 4, - "catched_error": 1, - "end.": 3, - "|": 25, - "T": 24, - "when": 29, - "length": 6, - "Type": 3, - "A": 5, - "B": 4, - "NSrc": 4, - "_Type": 1, - "Type1": 2, - "parse_record": 3, - "attribute": 1, - "record": 4, - "RecordInfo": 2, - "RecordName": 41, - "RecordFields": 10, - "if": 1, - "generate_setter_getter_function": 5, - "generate_type_function": 3, - "true": 3, - "generate_fields_function": 2, - "generate_fields_atom_function": 2, - "parse_field_name": 5, - "record_field": 9, - "atom": 9, - "FieldName": 26, - "field": 4, - "_FieldName": 2, - "ParentRecordName": 8, - "parent_field": 2, - "parse_field_name_atom": 5, - "concat": 5, - "_S": 3, - "S": 6, - "concat_ext": 4, - "parse_field": 6, - "AccFields": 6, - "AccParentFields": 6, - "case": 3, - "Field": 2, - "PField": 2, - "parse_field_atom": 4, - "zzz": 1, - "Fields": 4, - "field_atom": 1, - "to_setter_getter_function": 5, - "setter": 2, - "getter": 2, - "This": 2, - "is": 1, - "auto": 1, - "generated": 1, - "file.": 1, - "Please": 1, - "don": 1, - "t": 1, - "edit": 1, - "record_utils": 1, - "compile": 2, - "export_all": 1, - "include": 1, - "abstract_message": 21, - "async_message": 12, - "clientId": 5, - "destination": 5, - "messageId": 5, - "timestamp": 5, - "timeToLive": 5, - "headers": 5, - "body": 5, - "correlationId": 5, - "correlationIdBytes": 5, - "get": 12, - "Obj": 49, - "is_record": 25, - "Obj#abstract_message.body": 1, - "Obj#abstract_message.clientId": 1, - "Obj#abstract_message.destination": 1, - "Obj#abstract_message.headers": 1, - "Obj#abstract_message.messageId": 1, - "Obj#abstract_message.timeToLive": 1, - "Obj#abstract_message.timestamp": 1, - "Obj#async_message.correlationId": 1, - "Obj#async_message.correlationIdBytes": 1, - "parent": 5, - "Obj#async_message.parent": 3, - "ParentProperty": 6, - "is_atom": 2, - "set": 13, - "Value": 35, - "NewObj": 20, - "Obj#abstract_message": 7, - "Obj#async_message": 3, - "NewParentObject": 2, - "undefined.": 1, - "Mode": 1, - "coding": 1, - "utf": 1, - "tab": 1, - "width": 1, - "c": 2, - "basic": 1, - "offset": 1, - "indent": 1, - "tabs": 1, - "mode": 2, - "BSD": 1, - "LICENSE": 1, - "Copyright": 1, - "Michael": 2, - "Truog": 2, - "": 1, - "at": 1, - "gmail": 1, - "dot": 1, - "com": 1, - "All": 2, - "rights": 1, - "reserved.": 1, - "Redistribution": 1, - "use": 2, - "in": 3, - "source": 2, - "binary": 2, - "forms": 1, - "with": 2, - "or": 3, - "without": 2, - "modification": 1, - "permitted": 1, - "provided": 2, - "that": 1, - "the": 9, - "following": 4, - "conditions": 3, - "met": 1, - "Redistributions": 2, - "code": 2, - "must": 3, - "retain": 1, - "above": 2, - "copyright": 2, - "notice": 2, - "this": 4, - "list": 2, - "disclaimer.": 1, - "form": 1, - "reproduce": 1, - "disclaimer": 1, - "documentation": 1, - "and/or": 1, - "other": 1, - "materials": 2, - "distribution.": 1, - "advertising": 1, - "mentioning": 1, - "features": 1, - "software": 3, - "display": 1, - "acknowledgment": 1, - "product": 1, - "includes": 1, - "developed": 1, - "by": 1, - "The": 1, - "name": 1, - "author": 2, - "may": 1, - "not": 1, - "be": 1, - "used": 1, - "endorse": 1, - "promote": 1, - "products": 1, - "derived": 1, - "from": 1, - "specific": 1, - "prior": 1, - "written": 1, - "permission": 1, - "THIS": 2, - "SOFTWARE": 2, - "IS": 1, - "PROVIDED": 1, - "BY": 1, - "THE": 5, - "COPYRIGHT": 2, - "HOLDERS": 1, - "AND": 4, - "CONTRIBUTORS": 2, - "ANY": 4, - "EXPRESS": 1, - "OR": 8, - "IMPLIED": 2, - "WARRANTIES": 2, - "INCLUDING": 3, - "BUT": 2, - "NOT": 2, - "LIMITED": 2, - "TO": 2, - "OF": 8, - "MERCHANTABILITY": 1, - "FITNESS": 1, - "FOR": 2, - "PARTICULAR": 1, - "PURPOSE": 1, - "ARE": 1, - "DISCLAIMED.": 1, - "IN": 3, - "NO": 1, - "EVENT": 1, - "SHALL": 1, - "OWNER": 1, - "BE": 1, - "LIABLE": 1, - "DIRECT": 1, - "INDIRECT": 1, - "INCIDENTAL": 1, - "SPECIAL": 1, - "EXEMPLARY": 1, - "CONSEQUENTIAL": 1, - "DAMAGES": 1, - "PROCUREMENT": 1, - "SUBSTITUTE": 1, - "GOODS": 1, - "SERVICES": 1, - "LOSS": 1, - "USE": 2, - "DATA": 1, - "PROFITS": 1, - "BUSINESS": 1, - "INTERRUPTION": 1, - "HOWEVER": 1, - "CAUSED": 1, - "ON": 1, - "THEORY": 1, - "LIABILITY": 2, - "WHETHER": 1, - "CONTRACT": 1, - "STRICT": 1, - "TORT": 1, - "NEGLIGENCE": 1, - "OTHERWISE": 1, - "ARISING": 1, - "WAY": 1, - "OUT": 1, - "EVEN": 1, - "IF": 1, - "ADVISED": 1, - "POSSIBILITY": 1, - "SUCH": 1, - "DAMAGE.": 1, - "sys": 2, - "RelToolConfig": 5, - "target_dir": 2, - "TargetDir": 14, - "overlay": 2, - "OverlayConfig": 4, - "consult": 1, - "Spec": 2, - "reltool": 2, - "get_target_spec": 1, - "make_dir": 1, - "eexist": 1, - "exit_code": 3, - "eval_target_spec": 1, - "root_dir": 1, - "process_overlay": 2, - "shell": 3, - "Command": 3, - "Arguments": 3, - "CommandSuffix": 2, - "reverse": 4, - "os": 1, - "cmd": 1, - "io_lib": 2, - "boot_rel_vsn": 2, - "Config": 2, - "_RelToolConfig": 1, - "rel": 2, - "_Name": 1, - "Ver": 1, - "proplists": 1, - "lookup": 1, - "Ver.": 1, - "minimal": 2, - "parsing": 1, - "for": 1, - "handling": 1, - "mustache": 11, - "syntax": 1, - "Body": 2, - "Context": 11, - "Result": 10, - "_Context": 1, - "KeyStr": 6, - "mustache_key": 4, - "C": 4, - "Rest": 10, - "Key": 2, - "list_to_existing_atom": 1, - "dict": 2, - "find": 1, - "support": 1, - "based": 1, - "on": 1, - "rebar": 1, - "overlays": 1, - "BootRelVsn": 2, - "OverlayVars": 2, - "from_list": 1, - "erts_vsn": 1, - "system_info": 1, - "version": 1, - "rel_vsn": 1, - "hostname": 1, - "net_adm": 1, - "localhost": 1, - "BaseDir": 7, - "get_cwd": 1, - "execute_overlay": 6, - "_Vars": 1, - "_BaseDir": 1, - "_TargetDir": 1, - "mkdir": 1, - "Out": 4, - "Vars": 7, - "filename": 3, - "join": 3, - "copy": 1, - "In": 2, - "InFile": 3, - "OutFile": 2, - "filelib": 1, - "is_file": 1, - "ExitCode": 2, - "flush": 1 - }, - "Forth": { - "(": 88, - "Block": 2, - "words.": 6, - ")": 87, - "variable": 3, - "blk": 3, - "current": 5, - "-": 473, - "block": 8, - "n": 22, - "addr": 11, - ";": 61, - "buffer": 2, - "evaluate": 1, - "extended": 3, - "semantics": 3, - "flush": 1, - "load": 2, - "...": 4, - "dup": 10, - "save": 2, - "input": 2, - "in": 4, - "@": 13, - "source": 5, - "#source": 2, - "interpret": 1, - "restore": 1, - "buffers": 2, - "update": 1, - "extension": 4, - "empty": 2, - "scr": 2, - "list": 1, - "bounds": 1, - "do": 2, - "i": 5, - "emit": 2, - "loop": 4, - "refill": 2, - "thru": 1, - "x": 10, - "y": 5, - "+": 17, - "swap": 12, - "*": 9, - "forth": 2, - "Copyright": 3, - "Lars": 3, - "Brinkhoff": 3, - "Kernel": 4, - "#tib": 2, - "TODO": 12, - ".r": 1, - ".": 5, - "[": 16, - "char": 10, - "]": 15, - "parse": 5, - "type": 3, - "immediate": 19, - "<": 14, - "flag": 4, - "r": 18, - "x1": 5, - "x2": 5, - "R": 13, - "rot": 2, - "r@": 2, - "noname": 1, - "align": 2, - "here": 9, - "c": 3, - "allot": 2, - "lastxt": 4, - "SP": 1, - "query": 1, - "tib": 1, - "body": 1, - "true": 1, - "tuck": 2, - "over": 5, - "u.r": 1, - "u": 3, - "if": 9, - "drop": 4, - "false": 1, - "else": 6, - "then": 5, - "unused": 1, - "value": 1, - "create": 2, - "does": 5, - "within": 1, - "compile": 2, - "Forth2012": 2, - "core": 1, - "action": 1, - "of": 3, - "defer": 2, - "name": 1, - "s": 4, - "c@": 2, - "negate": 1, - "nip": 2, - "bl": 4, - "word": 9, - "ahead": 2, - "resolve": 4, - "literal": 4, - "postpone": 14, - "nonimmediate": 1, - "caddr": 1, - "C": 9, - "find": 2, - "cells": 1, - "postponers": 1, - "execute": 1, - "unresolved": 4, - "orig": 5, - "chars": 1, - "n1": 2, - "n2": 2, - "orig1": 1, - "orig2": 1, - "branch": 5, - "dodoes_code": 1, - "code": 3, - "begin": 2, - "dest": 5, - "while": 2, - "repeat": 2, - "until": 1, - "recurse": 1, - "pad": 3, - "If": 1, - "necessary": 1, - "and": 3, - "keep": 1, - "parsing.": 1, - "string": 3, - "cmove": 1, - "state": 2, - "cr": 3, - "abort": 3, - "": 1, - "Undefined": 1, - "ok": 1, - "HELLO": 4, - "KataDiversion": 1, - "Forth": 1, - "utils": 1, - "the": 7, - "stack": 3, - "EMPTY": 1, - "DEPTH": 2, - "IF": 10, - "BEGIN": 3, - "DROP": 5, - "UNTIL": 3, - "THEN": 10, - "power": 2, - "**": 2, - "n1_pow_n2": 1, - "SWAP": 8, - "DUP": 14, - "DO": 2, - "OVER": 2, - "LOOP": 2, - "NIP": 4, - "compute": 1, - "highest": 1, - "below": 1, - "N.": 1, - "e.g.": 2, - "MAXPOW2": 2, - "log2_n": 1, - "ABORT": 1, - "ELSE": 7, - "|": 4, - "I": 5, - "i*2": 1, - "/": 3, - "kata": 1, - "test": 1, - "given": 3, - "N": 6, - "has": 1, - "two": 2, - "adjacent": 2, - "bits": 3, - "NOT": 3, - "TWO": 3, - "ADJACENT": 3, - "BITS": 3, - "bool": 1, - "uses": 1, - "following": 1, - "algorithm": 1, - "return": 5, - "A": 5, - "X": 5, - "LOG2": 1, - "end": 1, - "OR": 1, - "INVERT": 1, - "maximum": 1, - "number": 4, - "which": 3, - "can": 2, - "be": 2, - "made": 2, - "with": 2, - "MAX": 2, - "NB": 3, - "m": 2, - "**n": 1, - "numbers": 1, - "or": 1, - "less": 1, - "have": 1, - "not": 1, - "bits.": 1, - "see": 1, - "http": 1, - "//www.codekata.com/2007/01/code_kata_fifte.html": 1, - "HOW": 1, - "MANY": 1, - "Tools": 2, - ".s": 1, - "depth": 1, - "traverse": 1, - "dictionary": 1, - "assembler": 1, - "kernel": 1, - "bye": 1, - "cs": 2, - "pick": 1, - "roll": 1, - "editor": 1, - "forget": 1, - "reveal": 1, - "tools": 1, - "nr": 1, - "synonym": 1, - "undefined": 2, - "defined": 1, - "invert": 1, - "/cell": 2, - "cell": 2 - }, - "Frege": { - "module": 2, - "examples.CommandLineClock": 1, - "where": 39, - "data": 3, - "Date": 5, - "native": 4, - "java.util.Date": 1, - "new": 9, - "(": 339, - ")": 345, - "-": 730, - "IO": 13, - "MutableIO": 1, - "toString": 2, - "Mutable": 1, - "s": 21, - "ST": 1, - "String": 9, - "d.toString": 1, - "action": 2, - "to": 13, - "give": 2, - "us": 1, - "the": 20, - "current": 4, - "time": 1, - "as": 33, - "do": 38, - "d": 3, - "<->": 35, - "java": 5, - "lang": 2, - "Thread": 2, - "sleep": 4, - "takes": 1, - "a": 99, - "long": 4, - "and": 14, - "returns": 2, - "nothing": 2, - "but": 2, - "may": 1, - "throw": 1, - "an": 6, - "InterruptedException": 4, - "This": 2, - "is": 24, - "without": 1, - "doubt": 1, - "public": 1, - "static": 1, - "void": 2, - "millis": 1, - "throws": 4, - "Encoded": 1, - "in": 22, - "Frege": 1, - "argument": 1, - "type": 8, - "Long": 3, - "result": 11, - "does": 2, - "defined": 1, - "frege": 1, - "Lang": 1, - "main": 11, - "args": 2, - "forever": 1, - "print": 25, - "stdout.flush": 1, - "Thread.sleep": 4, - "examples.Concurrent": 1, - "import": 7, - "System.Random": 1, - "Java.Net": 1, - "URL": 2, - "Control.Concurrent": 1, - "C": 6, - "main2": 1, - "m": 2, - "<": 84, - "newEmptyMVar": 1, - "forkIO": 11, - "m.put": 3, - "replicateM_": 3, - "c": 33, - "m.take": 1, - "println": 25, - "example1": 1, - "putChar": 2, - "example2": 2, - "getLine": 2, - "case": 6, - "of": 32, - "Right": 6, - "n": 38, - "setReminder": 3, - "Left": 5, - "_": 60, - "+": 200, - "show": 24, - "L*n": 1, - "table": 1, - "mainPhil": 2, - "[": 120, - "fork1": 3, - "fork2": 3, - "fork3": 3, - "fork4": 3, - "fork5": 3, - "]": 116, - "mapM": 3, - "MVar": 3, - "1": 2, - "5": 1, - "philosopher": 7, - "Kant": 1, - "Locke": 1, - "Wittgenstein": 1, - "Nozick": 1, - "Mises": 1, - "return": 17, - "Int": 6, - "me": 13, - "left": 4, - "right": 4, - "g": 4, - "Random.newStdGen": 1, - "let": 8, - "phil": 4, - "tT": 2, - "g1": 2, - "Random.randomR": 2, - "L": 6, - "eT": 2, - "g2": 3, - "thinkTime": 3, - "*": 5, - "eatTime": 3, - "fl": 4, - "left.take": 1, - "rFork": 2, - "poll": 1, - "Just": 2, - "fr": 3, - "right.put": 1, - "left.put": 2, - "table.notifyAll": 2, - "Nothing": 2, - "table.wait": 1, - "inter": 3, - "catch": 2, - "getURL": 4, - "xx": 2, - "url": 1, - "URL.new": 1, - "con": 3, - "url.openConnection": 1, - "con.connect": 1, - "con.getInputStream": 1, - "typ": 5, - "con.getContentType": 1, - "stderr.println": 3, - "ir": 2, - "InputStreamReader.new": 2, - "fromMaybe": 1, - "charset": 2, - "unsupportedEncoding": 3, - "br": 4, - "BufferedReader": 1, - "getLines": 1, - "InputStream": 1, - "UnsupportedEncodingException": 1, - "InputStreamReader": 1, - "x": 45, - "x.catched": 1, - "ctyp": 2, - "charset=": 1, - "m.group": 1, - "SomeException": 2, - "Throwable": 1, - "m1": 1, - "MVar.newEmpty": 3, - "m2": 1, - "m3": 2, - "r": 7, - "catchAll": 3, - ".": 41, - "m1.put": 1, - "m2.put": 1, - "m3.put": 1, - "r1": 2, - "m1.take": 1, - "r2": 3, - "m2.take": 1, - "r3": 3, - "take": 13, - "ss": 8, - "mapM_": 5, - "putStrLn": 2, - "|": 62, - "x.getClass.getName": 1, - "y": 15, - "sum": 2, - "map": 49, - "length": 20, - "package": 2, - "examples.Sudoku": 1, - "Data.TreeMap": 1, - "Tree": 4, - "keys": 2, - "Data.List": 1, - "DL": 1, - "hiding": 1, - "find": 20, - "union": 10, - "Element": 6, - "Zelle": 8, - "set": 4, - "candidates": 18, - "Position": 22, - "Feld": 3, - "Brett": 13, - "for": 25, - "assumptions": 10, - "conclusions": 2, - "Assumption": 21, - "ISNOT": 14, - "IS": 16, - "derive": 2, - "Eq": 1, - "Ord": 1, - "instance": 1, - "Show": 1, - "p": 72, - "e": 15, - "pname": 10, - "e.show": 2, - "showcs": 5, - "cs": 27, - "joined": 4, - "Assumption.show": 1, - "elements": 12, - "all": 22, - "possible": 2, - "..": 1, - "positions": 16, - "rowstarts": 4, - "row": 20, - "starting": 3, - "colstarts": 3, - "column": 2, - "boxstarts": 3, - "box": 15, - "boxmuster": 3, - "pattern": 1, - "by": 3, - "adding": 1, - "upper": 2, - "position": 9, - "results": 1, - "real": 1, - "extract": 2, - "field": 9, - "getf": 16, - "f": 19, - "fs": 22, - "fst": 9, - "otherwise": 8, - "cell": 24, - "getc": 12, - "b": 113, - "snd": 20, - "compute": 5, - "list": 7, - "that": 18, - "belong": 3, - "same": 8, - "given": 3, - "z..": 1, - "z": 12, - "quot": 1, - "col": 17, - "mod": 3, - "ri": 2, - "div": 3, - "or": 15, - "depending": 1, - "on": 4, - "ci": 3, - "index": 3, - "middle": 2, - "check": 2, - "if": 5, - "candidate": 10, - "has": 2, - "exactly": 2, - "one": 2, - "member": 1, - "i.e.": 1, - "been": 1, - "solved": 1, - "single": 9, - "Bool": 2, - "true": 16, - "false": 13, - "unsolved": 10, - "rows": 4, - "cols": 6, - "boxes": 1, - "allrows": 8, - "allcols": 5, - "allboxs": 5, - "allrcb": 5, - "zip": 7, - "repeat": 3, - "containers": 6, - "PRINTING": 1, - "printable": 1, - "coordinate": 1, - "a1": 3, - "lower": 1, - "i9": 1, - "packed": 1, - "chr": 2, - "ord": 6, - "board": 41, - "printb": 4, - "p1line": 2, - "pfld": 4, - "line": 2, - "brief": 1, - "no": 4, - "some": 2, - "zs": 1, - "initial/final": 1, - "msg": 6, - "res012": 2, - "concatMap": 1, - "a*100": 1, - "b*10": 1, - "BOARD": 1, - "ALTERATION": 1, - "ACTIONS": 1, - "message": 1, - "about": 1, - "what": 1, - "done": 1, - "turnoff1": 3, - "i": 16, - "off": 11, - "nc": 7, - "head": 19, - "newb": 7, - "filter": 26, - "notElem": 7, - "turnoff": 11, - "turnoffh": 1, - "ps": 8, - "foldM": 2, - "toh": 2, - "setto": 3, - "cname": 4, - "nf": 2, - "SOLVING": 1, - "STRATEGIES": 1, - "reduce": 3, - "sets": 2, - "contains": 1, - "numbers": 1, - "already": 1, - "finds": 1, - "logs": 1, - "NAKED": 5, - "SINGLEs": 1, - "passing.": 1, - "sss": 3, - "each": 2, - "with": 15, - "more": 2, - "than": 2, - "fields": 6, - "are": 6, - "rcb": 16, - "elem": 16, - "collect": 1, - "remove": 3, - "from": 7, - "look": 10, - "number": 4, - "appears": 1, - "container": 9, - "this": 2, - "can": 9, - "go": 1, - "other": 2, - "place": 1, - "HIDDEN": 6, - "SINGLE": 1, - "hiddenSingle": 2, - "select": 1, - "containername": 1, - "FOR": 11, - "IN": 9, - "occurs": 5, - "PAIRS": 8, - "TRIPLES": 8, - "QUADS": 2, - "nakedPair": 4, - "t": 14, - "nm": 6, - "SELECT": 3, - "pos": 5, - "tuple": 2, - "name": 2, - "//": 8, - "u": 6, - "fold": 7, - "non": 2, - "outof": 6, - "tuples": 2, - "hit": 7, - "subset": 3, - "any": 3, - "hiddenPair": 4, - "minus": 2, - "uniq": 4, - "sort": 4, - "common": 4, - "bs": 7, - "undefined": 1, - "cannot": 1, - "happen": 1, - "because": 1, - "either": 1, - "empty": 4, - "not": 5, - "intersectionlist": 2, - "intersections": 2, - "reason": 8, - "reson": 1, - "cpos": 7, - "WHERE": 2, - "tail": 2, - "intersection": 1, - "we": 5, - "occurences": 1, - "XY": 2, - "Wing": 2, - "there": 6, - "exists": 6, - "A": 7, - "X": 5, - "Y": 4, - "B": 5, - "Z": 6, - "shares": 2, - "reasoning": 1, - "will": 4, - "be": 9, - "since": 1, - "indeed": 1, - "thus": 1, - "see": 1, - "xyWing": 2, - "rcba": 4, - "share": 1, - "b1": 11, - "b2": 10, - "&&": 9, - "||": 2, - "then": 1, - "else": 1, - "c1": 4, - "c2": 3, - "N": 5, - "Fish": 1, - "Swordfish": 1, - "Jellyfish": 1, - "When": 2, - "particular": 1, - "digit": 1, - "located": 2, - "only": 1, - "columns": 2, - "eliminate": 1, - "those": 2, - "which": 2, - "fish": 7, - "fishname": 5, - "rset": 4, - "certain": 1, - "rflds": 2, - "rowset": 1, - "colss": 3, - "must": 4, - "appear": 1, - "at": 3, - "least": 3, - "cstart": 2, - "immediate": 1, - "consequences": 6, - "assumption": 8, - "form": 1, - "conseq": 3, - "cp": 3, - "two": 1, - "contradict": 2, - "contradicts": 7, - "get": 3, - "aPos": 5, - "List": 1, - "turned": 1, - "when": 2, - "true/false": 1, - "toClear": 7, - "whose": 1, - "implications": 5, - "themself": 1, - "chain": 2, - "paths": 12, - "solution": 6, - "reverse": 4, - "css": 7, - "yields": 1, - "contradictory": 1, - "chainContra": 2, - "pro": 7, - "contra": 4, - "ALL": 2, - "conlusions": 1, - "uniqBy": 2, - "using": 2, - "sortBy": 2, - "comparing": 2, - "conslusion": 1, - "chains": 4, - "LET": 1, - "BE": 1, - "final": 2, - "conclusion": 4, - "THE": 1, - "FIRST": 1, - "implication": 2, - "ai": 2, - "so": 1, - "a0": 1, - "OR": 7, - "a2": 2, - "...": 2, - "IMPLIES": 1, - "For": 2, - "cells": 1, - "pi": 2, - "have": 1, - "construct": 2, - "p0": 1, - "p1": 1, - "c0": 1, - "cellRegionChain": 2, - "os": 3, - "cellas": 2, - "regionas": 2, - "iss": 3, - "ass": 2, - "first": 2, - "candidates@": 1, - "region": 2, - "oss": 2, - "Liste": 1, - "aller": 1, - "Annahmen": 1, - "ein": 1, - "bestimmtes": 1, - "acstree": 3, - "Tree.fromList": 1, - "bypass": 1, - "maybe": 1, - "tree": 1, - "lookup": 2, - "error": 1, - "performance": 1, - "resons": 1, - "confine": 1, - "ourselves": 1, - "20": 1, - "per": 1, - "mkPaths": 3, - "acst": 3, - "impl": 2, - "{": 1, - "a3": 1, - "ordered": 1, - "impls": 2, - "ns": 2, - "concat": 1, - "takeUntil": 1, - "null": 1, - "iterate": 1, - "expandchain": 3, - "avoid": 1, - "loops": 1, - "uni": 3, - "SOLVE": 1, - "SUDOKU": 1, - "Apply": 1, - "available": 1, - "strategies": 1, - "until": 1, - "changes": 1, - "anymore": 1, - "Strategy": 1, - "functions": 2, - "supposed": 1, - "applied": 1, - "changed": 1, - "board.": 1, - "strategy": 2, - "anything": 1, - "alter": 1, - "it": 2, - "next": 1, - "tried.": 1, - "solve": 19, - "res@": 16, - "apply": 17, - "res": 16, - "smallest": 1, - "comment": 16, - "SINGLES": 1, - "locked": 1, - "2": 3, - "QUADRUPELS": 6, - "3": 3, - "4": 3, - "WINGS": 1, - "FISH": 3, - "pcomment": 2, - "9": 5, - "forcing": 1, - "allow": 1, - "infer": 1, - "both": 1, - "brd": 2, - "com": 5, - "stderr": 3, - "<<": 4, - "log": 1, - "turn": 1, - "string": 3, - "into": 1, - "mkrow": 2, - "mkrow1": 2, - "xs": 4, - "make": 1, - "sure": 1, - "unpacked": 2, - "<=>": 1, - "0": 2, - "ignored": 1, - "h": 1, - "help": 1, - "usage": 1, - "Sudoku": 2, - "file": 4, - "81": 3, - "char": 1, - "consisting": 1, - "digits": 2, - "One": 1, - "such": 1, - "going": 1, - "http": 3, - "www": 1, - "sudokuoftheday": 1, - "pages": 1, - "o": 1, - "php": 1, - "click": 1, - "puzzle": 1, - "open": 1, - "tab": 1, - "Copy": 1, - "address": 1, - "your": 1, - "browser": 1, - "There": 1, - "also": 1, - "hard": 1, - "sudokus": 1, - "examples": 1, - "top95": 1, - "txt": 1, - "W": 1, - "felder": 2, - "decode": 4, - "files": 2, - "forM_": 1, - "sudoku": 2, - "openReader": 1, - "lines": 2, - "BufferedReader.getLines": 1, - "process": 5, - "candi": 2, - "consider": 3, - "acht": 4, - "neun": 2, - "examples.SwingExamples": 1, - "Java.Awt": 1, - "ActionListener": 2, - "Java.Swing": 1, - "rs": 2, - "Runnable.new": 1, - "helloWorldGUI": 2, - "buttonDemoGUI": 2, - "celsiusConverterGUI": 2, - "invokeLater": 1, - "tempTextField": 2, - "JTextField.new": 1, - "celsiusLabel": 1, - "JLabel.new": 3, - "convertButton": 1, - "JButton.new": 3, - "fahrenheitLabel": 1, - "frame": 3, - "JFrame.new": 3, - "frame.setDefaultCloseOperation": 3, - "JFrame.dispose_on_close": 3, - "frame.setTitle": 1, - "celsiusLabel.setText": 1, - "convertButton.setText": 1, - "convertButtonActionPerformed": 2, - "celsius": 3, - "getText": 1, - "double": 1, - "fahrenheitLabel.setText": 3, - "c*1.8": 1, - ".long": 1, - "ActionListener.new": 2, - "convertButton.addActionListener": 1, - "contentPane": 2, - "frame.getContentPane": 2, - "layout": 2, - "GroupLayout.new": 1, - "contentPane.setLayout": 1, - "TODO": 1, - "continue": 1, - "//docs.oracle.com/javase/tutorial/displayCode.html": 1, - "code": 1, - "//docs.oracle.com/javase/tutorial/uiswing/examples/learn/CelsiusConverterProject/src/learn/CelsiusConverterGUI.java": 1, - "frame.pack": 3, - "frame.setVisible": 3, - "label": 2, - "cp.add": 1, - "newContentPane": 2, - "JPanel.new": 1, - "JButton": 4, - "b1.setVerticalTextPosition": 1, - "SwingConstants.center": 2, - "b1.setHorizontalTextPosition": 1, - "SwingConstants.leading": 2, - "b2.setVerticalTextPosition": 1, - "b2.setHorizontalTextPosition": 1, - "b3": 7, - "Enable": 1, - "button": 1, - "setVerticalTextPosition": 1, - "SwingConstants": 2, - "center": 1, - "setHorizontalTextPosition": 1, - "leading": 1, - "setEnabled": 7, - "action1": 2, - "action3": 2, - "b1.addActionListener": 1, - "b3.addActionListener": 1, - "newContentPane.add": 3, - "newContentPane.setOpaque": 1, - "frame.setContentPane": 1 - }, - "G-code": { - ";": 8, - "RepRapPro": 1, - "Ormerod": 1, - "Board": 1, - "test": 1, - "GCodes": 1, - "M111": 1, - "S1": 1, - "Debug": 1, - "on": 1, - "G21": 1, - "mm": 1, - "G90": 1, - "Absolute": 1, - "positioning": 1, - "M83": 1, - "Extrusion": 1, - "relative": 1, - "M906": 1, - "X800": 1, - "Y800": 1, - "Z800": 1, - "E800": 1, - "Motor": 1, - "currents": 1, - "(": 1, - "mA": 1, - ")": 1, - "T0": 2, - "Extruder": 1, - "G1": 17, - "X50": 1, - "F500": 2, - "X0": 2, - "G4": 18, - "P500": 6, - "Y50": 1, - "Y0": 2, - "Z20": 1, - "F200": 2, - "Z0": 1, - "E20": 1, - "E": 1, - "-": 146, - "M106": 2, - "S255": 1, - "S0": 1, - "M105": 13, - "G10": 1, - "P0": 1, - "S100": 2, - "M140": 1, - "P5000": 12, - "M0": 2, - "e": 145, - "G28": 1, - "X55": 3, - "Y5": 3, - "F2000": 1, - "Y180": 2, - "X180": 2 - }, - "GAMS": { - "*Basic": 1, - "example": 2, - "of": 7, - "transport": 5, - "model": 6, - "from": 2, - "GAMS": 5, - "library": 3, - "Title": 1, - "A": 3, - "Transportation": 1, - "Problem": 1, - "(": 22, - "TRNSPORT": 1, - "SEQ": 1, - ")": 22, - "Ontext": 1, - "This": 2, - "problem": 1, - "finds": 1, - "a": 3, - "least": 1, - "cost": 4, - "shipping": 1, - "schedule": 1, - "that": 1, - "meets": 1, - "requirements": 1, - "at": 5, - "markets": 2, - "and": 2, - "supplies": 1, - "factories.": 1, - "Dantzig": 1, - "G": 1, - "B": 1, - "Chapter": 2, - "In": 2, - "Linear": 1, - "Programming": 1, - "Extensions.": 1, - "Princeton": 2, - "University": 1, - "Press": 2, - "New": 1, - "Jersey": 1, - "formulation": 1, - "is": 1, - "described": 1, - "in": 10, - "detail": 1, - "Rosenthal": 1, - "R": 1, - "E": 1, - "Tutorial.": 1, - "User": 1, - "s": 1, - "Guide.": 1, - "The": 2, - "Scientific": 1, - "Redwood": 1, - "City": 1, - "California": 1, - "line": 1, - "numbers": 1, - "will": 1, - "not": 1, - "match": 1, - "those": 1, - "the": 1, - "book": 1, - "because": 1, - "these": 1, - "comments.": 1, - "Offtext": 1, - "Sets": 1, - "i": 18, - "canning": 1, - "plants": 1, - "/": 9, - "seattle": 3, - "san": 3, - "-": 6, - "diego": 3, - "j": 18, - "new": 3, - "york": 3, - "chicago": 3, - "topeka": 3, - ";": 15, - "Parameters": 1, - "capacity": 1, - "plant": 2, - "cases": 3, - "b": 2, - "demand": 4, - "market": 2, - "Table": 1, - "d": 2, - "distance": 1, - "thousands": 3, - "miles": 2, - "Scalar": 1, - "f": 2, - "freight": 1, - "dollars": 3, - "per": 3, - "case": 2, - "thousand": 1, - "/90/": 1, - "Parameter": 1, - "c": 3, - "*": 1, - "Variables": 1, - "x": 4, - "shipment": 1, - "quantities": 1, - "z": 3, - "total": 1, - "transportation": 1, - "costs": 1, - "Positive": 1, - "Variable": 1, - "Equations": 1, - "define": 1, - "objective": 1, - "function": 1, - "supply": 3, - "observe": 1, - "limit": 1, - "satisfy": 1, - "..": 3, - "e": 1, - "sum": 3, - "*x": 1, - "l": 1, - "g": 1, - "Model": 1, - "/all/": 1, - "Solve": 1, - "using": 1, - "lp": 1, - "minimizing": 1, - "Display": 1, - "x.l": 1, - "x.m": 1, - "ontext": 1, - "#user": 1, - "stuff": 1, - "Main": 1, - "topic": 1, - "Basic": 2, - "Featured": 4, - "item": 4, - "Trnsport": 1, - "Description": 1, - "offtext": 1 - }, - "GAP": { - "#############################################################################": 63, - "##": 766, - "#W": 4, - "example.gd": 2, - "This": 10, - "file": 7, - "contains": 7, - "a": 113, - "sample": 2, - "of": 114, - "GAP": 15, - "declaration": 1, - "file.": 3, - "DeclareProperty": 2, - "(": 721, - "IsLeftModule": 6, - ")": 722, - ";": 569, - "DeclareGlobalFunction": 5, - "#C": 7, - "IsQuuxFrobnicator": 1, - "": 3, - "": 28, - "": 7, - "Name=": 33, - "Arg=": 33, - "Type=": 7, - "": 28, - "Tests": 1, - "whether": 5, - "R": 5, - "is": 72, - "quux": 1, - "frobnicator.": 1, - "": 28, - "": 28, - "DeclareSynonym": 17, - "IsField": 1, - "and": 102, - "IsGroup": 1, - "implementation": 1, - "#M": 20, - "SomeOperation": 1, - "": 2, - "performs": 1, - "some": 2, - "operation": 1, - "on": 5, - "InstallMethod": 18, - "SomeProperty": 1, - "[": 145, - "]": 169, - "function": 37, - "M": 7, - "if": 103, - "IsFreeLeftModule": 3, - "not": 49, - "IsTrivial": 1, - "then": 128, - "return": 41, - "true": 21, - "fi": 91, - "TryNextMethod": 7, - "end": 34, - "#F": 17, - "SomeGlobalFunction": 2, - "A": 9, - "global": 1, - "variadic": 1, - "funfion.": 1, - "InstallGlobalFunction": 5, - "arg": 16, - "Length": 14, - "+": 9, - "*": 12, - "elif": 21, - "-": 67, - "else": 25, - "Error": 7, - "#": 73, - "SomeFunc": 1, - "x": 14, - "y": 8, - "local": 16, - "z": 3, - "func": 3, - "tmp": 20, - "j": 3, - "mod": 2, - "List": 6, - "while": 5, - "do": 18, - "for": 53, - "in": 64, - "Print": 24, - "od": 15, - "repeat": 1, - "until": 1, - "<": 17, - "Magic.gd": 1, - "AutoDoc": 4, - "package": 10, - "Copyright": 6, - "Max": 2, - "Horn": 2, - "JLU": 2, - "Giessen": 2, - "Sebastian": 2, - "Gutsche": 2, - "University": 4, - "Kaiserslautern": 2, - "SHEBANG#!#! @Description": 1, - "SHEBANG#!#! This": 1, - "SHEBANG#!#! any": 1, - "SHEBANG#!#! ": 1, - "SHEBANG#!#! ": 5, - "SHEBANG#!#! It": 3, - "SHEBANG#!#! That": 1, - "SHEBANG#!#! of": 1, - "SHEBANG#!#! (with": 1, - "SHEBANG#!#! main": 1, - "SHEBANG#!#! XML": 1, - "SHEBANG#!#! other": 1, - "SHEBANG#!#! as": 1, - "SHEBANG#!#! to": 2, - "SHEBANG#!#! Secondly,": 1, - "SHEBANG#!#! page": 1, - "SHEBANG#!#! (name,": 1, - "SHEBANG#!#! on": 1, - "SHEBANG#!Item>": 25, - "SHEBANG#!#! tags": 1, - "SHEBANG#!#! This": 1, - "SHEBANG#!#! produce": 1, - "SHEBANG#!#! MathJaX": 1, - "SHEBANG#!#! generated": 1, - "SHEBANG#!#! this,": 1, - "SHEBANG#!#! supplementary": 1, - "SHEBANG#!#! (see": 1, - "SHEBANG#!Enum>": 1, - "SHEBANG#!#! For": 1, - "SHEBANG#!>": 11, - "SHEBANG#!#! The": 1, - "SHEBANG#!#! ": 1, - "SHEBANG#!Mark>": 22, - "SHEBANG#!#! The": 2, - "SHEBANG#!A>": 1, - "SHEBANG#!#! ": 1, - "SHEBANG#!#! ": 4, - "SHEBANG#!#! This": 4, - "SHEBANG#!#! Directory()": 1, - "SHEBANG#!#! (i.e.": 1, - "SHEBANG#!#! Default": 1, - "SHEBANG#!#! for": 1, - "SHEBANG#!#! The": 3, - "SHEBANG#!#! record.": 3, - "SHEBANG#!#! equivalent": 3, - "SHEBANG#!#! enabled.": 3, - "SHEBANG#!#! package's": 1, - "SHEBANG#!#! In": 3, - "SHEBANG#!K>),": 3, - "SHEBANG#!#! If": 3, - "####": 34, - "TODO": 3, - "mention": 1, - "merging": 1, - "with": 24, - "PackageInfo.AutoDoc": 1, - "SHEBANG#!#! ": 3, - "SHEBANG#!#! ": 13, - "SHEBANG#!#! A": 6, - "SHEBANG#!#! If": 2, - "SHEBANG#!#! your": 1, - "SHEBANG#!#! you": 1, - "SHEBANG#!#! to": 4, - "SHEBANG#!#! is": 1, - "SHEBANG#!#! of": 2, - "SHEBANG#!#! This": 3, - "SHEBANG#!#! i.e.": 1, - "SHEBANG#!#! The": 2, - "SHEBANG#!#! then": 1, - "The": 21, - "param": 1, - "bit": 2, - "strange.": 1, - "We": 4, - "should": 2, - "probably": 2, - "change": 1, - "it": 8, - "to": 37, - "be": 24, - "more": 3, - "general": 1, - "as": 23, - "one": 11, - "might": 1, - "want": 1, - "define": 2, - "other": 4, - "entities...": 1, - "For": 10, - "now": 1, - "we": 3, - "document": 1, - "leave": 1, - "us": 1, - "the": 136, - "choice": 1, - "revising": 1, - "how": 1, - "works.": 1, - "": 2, - "": 117, - "entities": 2, - "": 117, - "": 2, - "": 2, - "list": 16, - "names": 1, - "or": 13, - "which": 8, - "are": 14, - "used": 10, - "corresponding": 1, - "XML": 4, - "entities.": 1, - "example": 3, - "set": 6, - "containing": 1, - "string": 6, - "": 2, - "SomePackage": 3, - "": 2, - "following": 4, - "added": 1, - "preamble": 1, - "": 2, - "CDATA": 2, - "ENTITY": 2, - "": 2, - "allows": 1, - "you": 3, - "write": 3, - "&": 37, - "amp": 1, - "your": 1, - "documentation": 2, - "reference": 1, - "that": 39, - "package.": 2, - "If": 11, - "another": 1, - "type": 2, - "entity": 1, - "desired": 1, - "can": 12, - "simply": 2, - "add": 2, - "instead": 1, - "two": 13, - "entry": 2, - "list.": 2, - "It": 1, - "will": 5, - "handled": 3, - "so": 3, - "please": 1, - "careful.": 1, - "": 2, - "SHEBANG#!#! for": 1, - "SHEBANG#!#! statement": 1, - "SHEBANG#!#! components": 2, - "SHEBANG#!#! example,": 1, - "SHEBANG#!#! acknowledgements": 1, - "SHEBANG#!#! ": 6, - "SHEBANG#!#! by": 1, - "SHEBANG#!#! package": 1, - "SHEBANG#!#! Usually": 2, - "SHEBANG#!#! are": 2, - "SHEBANG#!#! Default": 3, - "SHEBANG#!#! When": 1, - "SHEBANG#!#! they": 1, - "Document": 1, - "section_intros": 2, - "later": 1, - "on.": 1, - "However": 2, - "note": 2, - "thanks": 1, - "new": 2, - "comment": 1, - "syntax": 1, - "only": 5, - "remaining": 1, - "use": 5, - "this": 15, - "seems": 1, - "ability": 1, - "specify": 3, - "order": 1, - "chapters": 1, - "sections.": 1, - "TODO.": 1, - "SHEBANG#!#! files": 1, - "Note": 3, - "strictly": 1, - "speaking": 1, - "also": 3, - "scaffold.": 1, - "uses": 2, - "scaffolding": 2, - "mechanism": 4, - "really": 4, - "necessary": 2, - "custom": 1, - "name": 2, - "main": 1, - "Thus": 3, - "purpose": 1, - "parameter": 1, - "cater": 1, - "packages": 5, - "have": 3, - "existing": 1, - "using": 2, - "different": 2, - "wish": 1, - "scaffolding.": 1, - "explain": 1, - "why": 2, - "allow": 1, - "specifying": 1, - "gapdoc.main.": 1, - "code": 1, - "still": 1, - "honor": 1, - "though": 1, - "just": 1, - "case.": 1, - "SHEBANG#!#! In": 1, - "maketest": 12, - "part.": 1, - "Still": 1, - "under": 1, - "construction.": 1, - "SHEBANG#!#! ": 1, - "SHEBANG#!#! The": 1, - "SHEBANG#!#! a": 1, - "SHEBANG#!#! which": 1, - "SHEBANG#!#! the": 1, - "SHEBANG#!#! ": 1, - "SHEBANG#!#! ": 2, - "SHEBANG#!#! Sets": 1, - "SHEBANG#!#! A": 1, - "SHEBANG#!#! will": 1, - "SHEBANG#!#! @Returns": 1, - "SHEBANG#!#! @Arguments": 1, - "SHEBANG#!#! @ChapterInfo": 1, - "Magic.gi": 1, - "BindGlobal": 7, - "str": 8, - "suffix": 3, - "n": 31, - "m": 8, - "{": 21, - "}": 21, - "i": 25, - "d": 16, - "IsDirectoryPath": 1, - "CreateDir": 2, - "currently": 1, - "undocumented": 1, - "fail": 18, - "LastSystemError": 1, - ".message": 1, - "false": 7, - "pkg": 32, - "subdirs": 2, - "extensions": 1, - "d_rel": 6, - "files": 4, - "result": 9, - "DirectoriesPackageLibrary": 2, - "IsEmpty": 6, - "continue": 3, - "Directory": 5, - "DirectoryContents": 1, - "Sort": 1, - "AUTODOC_GetSuffix": 2, - "IsReadableFile": 2, - "Filename": 8, - "Add": 4, - "Make": 1, - "callable": 1, - "package_name": 1, - "AutoDocWorksheet.": 1, - "Which": 1, - "create": 1, - "worksheet": 1, - "package_info": 3, - "opt": 3, - "scaffold": 12, - "gapdoc": 7, - "autodoc": 8, - "pkg_dir": 5, - "doc_dir": 18, - "doc_dir_rel": 3, - "title_page": 7, - "tree": 8, - "is_worksheet": 13, - "position_document_class": 7, - "gapdoc_latex_option_record": 4, - "LowercaseString": 3, - "rec": 20, - "DirectoryCurrent": 1, - "PackageInfo": 1, - "key": 3, - "val": 4, - "ValueOption": 1, - "opt.": 1, - "IsBound": 39, - "opt.dir": 4, - "IsString": 7, - "IsDirectory": 1, - "AUTODOC_CreateDirIfMissing": 1, - "opt.scaffold": 5, - "package_info.AutoDoc": 3, - "IsRecord": 7, - "IsBool": 4, - "AUTODOC_APPEND_RECORD_WRITEONCE": 3, - "AUTODOC_WriteOnce": 10, - "opt.autodoc": 5, - "Concatenation": 15, - "package_info.Dependencies.NeededOtherPackages": 1, - "package_info.Dependencies.SuggestedOtherPackages": 1, - "ForAny": 1, - "autodoc.files": 7, - "autodoc.scan_dirs": 5, - "autodoc.level": 3, - "PushOptions": 1, - "level_value": 1, - "Append": 2, - "AUTODOC_FindMatchingFiles": 2, - "opt.gapdoc": 5, - "opt.maketest": 4, - "gapdoc.main": 8, - "package_info.PackageDoc": 3, - ".BookName": 2, - "gapdoc.bookname": 4, - "#Print": 1, - "gapdoc.files": 9, - "gapdoc.scan_dirs": 3, - "Set": 1, - "Number": 1, - "ListWithIdenticalEntries": 1, - "f": 11, - "DocumentationTree": 1, - "autodoc.section_intros": 2, - "AUTODOC_PROCESS_INTRO_STRINGS": 1, - "Tree": 2, - "AutoDocScanFiles": 1, - "PackageName": 2, - "scaffold.TitlePage": 4, - "scaffold.TitlePage.Title": 2, - ".TitlePage.Title": 2, - "Position": 2, - "Remove": 2, - "JoinStringsWithSeparator": 1, - "ReplacedString": 2, - "Syntax": 1, - "scaffold.document_class": 7, - "PositionSublist": 5, - "GAPDoc2LaTeXProcs.Head": 14, - "..": 6, - "scaffold.latex_header_file": 2, - "StringFile": 2, - "scaffold.gapdoc_latex_options": 4, - "RecNames": 1, - "scaffold.gapdoc_latex_options.": 5, - "IsList": 1, - "scaffold.includes": 4, - "scaffold.bib": 7, - "Unbind": 1, - "scaffold.main_xml_file": 2, - ".TitlePage": 1, - "ExtractTitleInfoFromPackageInfo": 1, - "CreateTitlePage": 1, - "scaffold.MainPage": 2, - "scaffold.dir": 1, - "scaffold.book_name": 1, - "CreateMainPage": 1, - "WriteDocumentation": 1, - "SetGapDocLaTeXOptions": 1, - "MakeGAPDocDoc": 1, - "CopyHTMLStyleFiles": 1, - "GAPDocManualLab": 1, - "maketest.folder": 3, - "maketest.scan_dir": 3, - "CreateMakeTest": 1, - "PackageInfo.g": 2, - "cvec": 1, - "s": 4, - "template": 1, - "SetPackageInfo": 1, - "Subtitle": 1, - "Version": 1, - "Date": 1, - "dd/mm/yyyy": 1, - "format": 2, - "Information": 1, - "about": 3, - "authors": 1, - "maintainers.": 1, - "Persons": 1, - "LastName": 1, - "FirstNames": 1, - "IsAuthor": 1, - "IsMaintainer": 1, - "Email": 1, - "WWWHome": 1, - "PostalAddress": 1, - "Place": 1, - "Institution": 1, - "Status": 2, - "information.": 1, - "Currently": 1, - "cases": 2, - "recognized": 1, - "successfully": 2, - "refereed": 2, - "developers": 1, - "agreed": 1, - "distribute": 1, - "them": 1, - "core": 1, - "system": 1, - "development": 1, - "versions": 1, - "all": 18, - "You": 1, - "must": 6, - "provide": 2, - "next": 6, - "entries": 8, - "status": 1, - "because": 2, - "was": 1, - "#CommunicatedBy": 1, - "#AcceptDate": 1, - "PackageWWWHome": 1, - "README_URL": 1, - ".PackageWWWHome": 2, - "PackageInfoURL": 1, - "ArchiveURL": 1, - ".Version": 2, - "ArchiveFormats": 1, - "Here": 2, - "short": 1, - "abstract": 1, - "explaining": 1, - "content": 1, - "HTML": 1, - "overview": 1, - "Web": 1, - "page": 1, - "an": 17, - "URL": 1, - "Webpage": 1, - "detailed": 1, - "information": 1, - "than": 1, - "few": 1, - "lines": 1, - "less": 1, - "ok": 1, - "Please": 1, - "specifing": 1, - "names.": 1, - "AbstractHTML": 1, - "PackageDoc": 1, - "BookName": 1, - "ArchiveURLSubset": 1, - "HTMLStart": 1, - "PDFFile": 1, - "SixFile": 1, - "LongTitle": 1, - "Dependencies": 1, - "NeededOtherPackages": 1, - "SuggestedOtherPackages": 1, - "ExternalConditions": 1, - "AvailabilityTest": 1, - "SHOW_STAT": 1, - "DirectoriesPackagePrograms": 1, - "#Info": 1, - "InfoWarning": 1, - "*Optional*": 2, - "but": 1, - "recommended": 1, - "path": 1, - "relative": 1, - "root": 1, - "many": 1, - "tests": 1, - "functionality": 1, - "sensible.": 1, - "#TestFile": 1, - "keyword": 1, - "related": 1, - "topic": 1, - "Keywords": 1, - "vspc.gd": 1, - "library": 2, - "Thomas": 2, - "Breuer": 2, - "#Y": 6, - "C": 11, - "Lehrstuhl": 2, - "D": 36, - "r": 2, - "Mathematik": 2, - "RWTH": 2, - "Aachen": 2, - "Germany": 2, - "School": 2, - "Math": 2, - "Comp.": 2, - "Sci.": 2, - "St": 2, - "Andrews": 2, - "Scotland": 2, - "Group": 3, - "declares": 1, - "operations": 2, - "vector": 67, - "spaces.": 4, - "bases": 5, - "free": 3, - "left": 15, - "modules": 1, - "found": 1, - "": 10, - "lib/basis.gd": 1, - ".": 257, - "IsLeftOperatorRing": 1, - "IsLeftOperatorAdditiveGroup": 2, - "IsRing": 1, - "IsAssociativeLOpDProd": 2, - "#T": 6, - "IsLeftOperatorRingWithOne": 2, - "IsRingWithOne": 1, - "IsLeftVectorSpace": 3, - "": 38, - "IsVectorSpace": 26, - "<#GAPDoc>": 17, - "Label=": 19, - "": 12, - "space": 74, - "": 12, - "module": 2, - "see": 30, - "nbsp": 30, - "": 71, - "Func=": 40, - "over": 24, - "division": 15, - "ring": 14, - "Chapter": 3, - "Chap=": 3, - "

    ": 23, - "Whenever": 1, - "talk": 1, - "": 42, - "F": 61, - "": 41, - "V": 152, - "additive": 1, - "group": 2, - "acts": 1, - "via": 6, - "multiplication": 1, - "from": 5, - "such": 4, - "action": 4, - "addition": 1, - "right": 2, - "distributive.": 1, - "accessed": 1, - "value": 9, - "attribute": 2, - "Vector": 1, - "spaces": 15, - "always": 1, - "Filt=": 4, - "synonyms.": 1, - "<#/GAPDoc>": 17, - "IsLeftActedOnByDivisionRing": 4, - "InstallTrueMethod": 4, - "IsGaussianSpace": 10, - "": 14, - "filter": 3, - "Sect=": 6, - "row": 17, - "matrix": 5, - "field": 12, - "say": 1, - "indicates": 3, - "vectors": 16, - "matrices": 5, - "respectively": 1, - "contained": 4, - "In": 3, - "case": 2, - "called": 1, - "Gaussian": 19, - "space.": 5, - "Bases": 1, - "computed": 2, - "elimination": 5, - "given": 4, - "generators.": 1, - "": 12, - "": 12, - "gap": 41, - "mats": 5, - "VectorSpace": 13, - "Rationals": 13, - "E": 2, - "element": 2, - "extension": 3, - "Field": 1, - "": 12, - "DeclareFilter": 1, - "IsFullMatrixModule": 1, - "IsFullRowModule": 1, - "IsDivisionRing": 5, - "": 12, - "nontrivial": 1, - "associative": 1, - "algebra": 2, - "multiplicative": 1, - "inverse": 1, - "each": 2, - "nonzero": 3, - "element.": 1, - "every": 1, - "possibly": 1, - "itself": 1, - "being": 2, - "thus": 1, - "property": 2, - "get": 1, - "usually": 1, - "represented": 1, - "coefficients": 3, - "stored": 1, - "DeclareSynonymAttr": 4, - "IsMagmaWithInversesIfNonzero": 1, - "IsNonTrivial": 1, - "IsAssociative": 1, - "IsEuclideanRing": 1, - "#A": 7, - "GeneratorsOfLeftVectorSpace": 1, - "GeneratorsOfVectorSpace": 2, - "": 7, - "Attr=": 10, - "returns": 14, - "generate": 1, - "FullRowSpace": 5, - "GeneratorsOfLeftOperatorAdditiveGroup": 2, - "CanonicalBasis": 3, - "supports": 1, - "canonical": 6, - "basis": 14, - "otherwise": 2, - "": 3, - "": 3, - "returned.": 4, - "defining": 1, - "its": 2, - "uniquely": 1, - "determined": 1, - "by": 14, - "exist": 1, - "same": 6, - "acting": 8, - "domain": 17, - "equality": 1, - "these": 5, - "decided": 1, - "comparing": 1, - "bases.": 1, - "exact": 1, - "meaning": 1, - "depends": 1, - "Canonical": 1, - "defined": 3, - "designs": 1, - "kind": 1, - "defines": 1, - "method": 4, - "installs": 1, - "call": 1, - "On": 1, - "hand": 1, - "install": 1, - "calls": 1, - "": 10, - "CANONICAL_BASIS_FLAGS": 1, - "": 9, - "vecs": 4, - "B": 16, - "": 8, - "3": 5, - "generators": 16, - "BasisVectors": 4, - "DeclareAttribute": 4, - "IsRowSpace": 2, - "consists": 7, - "IsRowModule": 1, - "IsGaussianRowSpace": 1, - "scalars": 2, - "occur": 2, - "vectors.": 2, - "calculations.": 2, - "Otherwise": 3, - "non": 4, - "Gaussian.": 2, - "need": 3, - "flag": 2, - "down": 2, - "methods": 4, - "delegate": 2, - "ones.": 2, - "IsNonGaussianRowSpace": 1, - "expresses": 2, - "cannot": 2, - "compute": 3, - "nice": 4, - "way.": 2, - "Let": 4, - "K": 4, - "spanned": 4, - "Then": 1, - "/": 12, - "cap": 1, - "v": 5, - "replacing": 1, - "forming": 1, - "concatenation.": 1, - "So": 2, - "associated": 3, - "DeclareHandlingByNiceBasis": 2, - "IsMatrixSpace": 2, - "IsMatrixModule": 1, - "IsGaussianMatrixSpace": 1, - "IsNonGaussianMatrixSpace": 1, - "irrelevant": 1, - "concatenation": 1, - "rows": 1, - "necessarily": 1, - "NormedRowVectors": 2, - "normed": 1, - "finite": 5, - "those": 1, - "first": 1, - "component.": 1, - "yields": 1, - "natural": 1, - "dimensional": 5, - "subspaces": 17, - "GF": 22, - "*Z": 5, - "Z": 6, - "Action": 1, - "GL": 1, - "OnLines": 1, - "TrivialSubspace": 2, - "subspace": 7, - "zero": 4, - "triv": 2, - "0": 2, - "AsSet": 1, - "TrivialSubmodule": 1, - "": 5, - "": 2, - "collection": 3, - "gens": 16, - "elements": 7, - "optional": 3, - "argument": 1, - "empty.": 1, - "known": 5, - "linearly": 3, - "independent": 3, - "particular": 1, - "dimension": 9, - "immediately": 2, - "formed": 1, - "argument.": 1, - "2": 1, - "Subspace": 4, - "generated": 1, - "SubspaceNC": 2, - "subset": 4, - "empty": 1, - "trivial": 1, - "parent": 3, - "returned": 3, - "does": 1, - "except": 1, - "omits": 1, - "check": 5, - "both": 2, - "W": 32, - "1": 3, - "Submodule": 1, - "SubmoduleNC": 1, - "#O": 2, - "AsVectorSpace": 4, - "view": 4, - "": 2, - "domain.": 1, - "form": 2, - "Oper=": 6, - "smaller": 1, - "larger": 1, - "ring.": 3, - "Dimension": 6, - "LeftActingDomain": 29, - "9": 1, - "AsLeftModule": 6, - "AsSubspace": 5, - "": 6, - "U": 12, - "collection.": 1, - "/2": 4, - "Parent": 4, - "DeclareOperation": 2, - "IsCollection": 3, - "Intersection2Spaces": 4, - "": 2, - "": 2, - "": 2, - "takes": 1, - "arguments": 1, - "intersection": 5, - "domains": 3, - "let": 1, - "their": 1, - "intersection.": 1, - "AsStruct": 2, - "equal": 1, - "either": 2, - "Substruct": 1, - "common": 1, - "Struct": 1, - "basis.": 1, - "handle": 1, - "intersections": 1, - "algebras": 2, - "ideals": 2, - "sided": 1, - "ideals.": 1, - "": 2, - "": 2, - "nonnegative": 2, - "integer": 2, - "length": 1, - "An": 2, - "alternative": 2, - "construct": 2, - "above": 2, - "FullRowModule": 2, - "FullMatrixSpace": 2, - "": 1, - "positive": 1, - "integers": 1, - "fact": 1, - "FullMatrixModule": 3, - "IsSubspacesVectorSpace": 9, - "fixed": 1, - "lies": 1, - "category": 1, - "Subspaces": 8, - "Size": 5, - "iter": 17, - "Iterator": 5, - "NextIterator": 5, - "DeclareCategory": 1, - "IsDomain": 1, - "IsFinite": 4, - "Returns": 1, - "": 1, - "Called": 2, - "k": 17, - "Special": 1, - "provided": 1, - "domains.": 1, - "IsInt": 3, - "IsSubspace": 3, - "OrthogonalSpaceInFullRowSpace": 1, - "complement": 1, - "full": 2, - "#P": 1, - "IsVectorSpaceHomomorphism": 3, - "": 2, - "": 1, - "mapping": 2, - "homomorphism": 1, - "linear": 1, - "source": 2, - "range": 1, - "b": 8, - "hold": 1, - "IsGeneralMapping": 2, - "#E": 2, - "vspc.gi": 1, - "generic": 1, - "SetLeftActingDomain": 2, - "": 2, - "external": 1, - "knows": 1, - "e.g.": 1, - "tell": 1, - "InstallOtherMethod": 3, - "IsAttributeStoringRep": 2, - "IsLeftActedOnByRing": 2, - "IsObject": 1, - "extL": 2, - "HasIsDivisionRing": 1, - "SetIsLeftActedOnByDivisionRing": 1, - "IsExtLSet": 1, - "IsIdenticalObj": 5, - "difference": 1, - "between": 1, - "shall": 1, - "CallFuncList": 1, - "FreeLeftModule": 1, - "newC": 7, - "IsSubset": 4, - "SetParent": 1, - "UseIsomorphismRelation": 2, - "UseSubsetRelation": 4, - "View": 1, - "base": 5, - "gen": 5, - "loop": 2, - "newgens": 4, - "extended": 1, - "Characteristic": 2, - "Basis": 5, - "AsField": 2, - "GeneratorsOfLeftModule": 9, - "LeftModuleByGenerators": 5, - "Zero": 5, - "Intersection": 1, - "ViewObj": 4, - "print": 1, - "no.": 1, - "HasGeneratorsOfLeftModule": 2, - "HasDimension": 1, - "override": 1, - "PrintObj": 5, - "HasZero": 1, - "": 2, - "factor": 2, - "": 1, - "ImagesSource": 1, - "NaturalHomomorphismBySubspace": 1, - "AsStructure": 3, - "Substructure": 3, - "Structure": 2, - "inters": 17, - "gensV": 7, - "gensW": 7, - "VW": 3, - "sum": 1, - "Intersection2": 4, - "IsFiniteDimensional": 2, - "Coefficients": 3, - "SumIntersectionMat": 1, - "LinearCombination": 2, - "HasParent": 2, - "SetIsTrivial": 1, - "ClosureLeftModule": 2, - "": 1, - "closure": 1, - "IsCollsElms": 1, - "HasBasis": 1, - "IsVector": 1, - "w": 3, - "easily": 1, - "UseBasis": 1, - "Methods": 1, - "collections": 1, - "#R": 1, - "IsSubspacesVectorSpaceDefaultRep": 7, - "representation": 1, - "components": 1, - "means": 1, - "DeclareRepresentation": 1, - "IsComponentObjectRep": 1, - ".dimension": 9, - ".structure": 9, - "number": 2, - "q": 20, - "prod_": 2, - "frac": 3, - "recursion": 1, - "sum_": 1, - "size": 12, - "qn": 10, - "qd": 10, - "ank": 6, - "Int": 1, - "Enumerator": 2, - "Use": 1, - "iterator": 3, - "allowed": 1, - "elms": 4, - "IsDoneIterator": 3, - ".associatedIterator": 3, - ".basis": 2, - "structure": 4, - "associatedIterator": 2, - "ShallowCopy": 2, - "IteratorByFunctions": 1, - "IsDoneIterator_Subspaces": 1, - "NextIterator_Subspaces": 1, - "ShallowCopy_Subspaces": 1, - "": 1, - "dim": 2, - "Objectify": 2, - "NewType": 2, - "CollectionsFamily": 2, - "FamilyObj": 2, - "map": 4, - "S": 4, - "Source": 1, - "Range": 1, - "IsLinearMapping": 1 - }, - "GAS": { - ".cstring": 1, - "LC0": 2, - ".ascii": 2, - ".text": 1, - ".globl": 2, - "_main": 2, - "LFB3": 4, - "pushq": 1, - "%": 6, - "rbp": 2, - "LCFI0": 3, - "movq": 1, - "rsp": 1, - "LCFI1": 2, - "leaq": 1, - "(": 1, - "rip": 1, - ")": 1, - "rdi": 1, - "call": 1, - "_puts": 1, - "movl": 1, - "eax": 1, - "leave": 1, - "ret": 1, - "LFE3": 2, - ".section": 1, - "__TEXT": 1, - "__eh_frame": 1, - "coalesced": 1, - "no_toc": 1, - "+": 2, - "strip_static_syms": 1, - "live_support": 1, - "EH_frame1": 2, - ".set": 5, - "L": 10, - "set": 10, - "LECIE1": 2, - "-": 7, - "LSCIE1": 2, - ".long": 6, - ".byte": 20, - "xc": 1, - ".align": 2, - "_main.eh": 2, - "LSFDE1": 1, - "LEFDE1": 2, - "LASFDE1": 3, - ".quad": 2, - ".": 1, - "xe": 1, - "xd": 1, - ".subsections_via_symbols": 1 - }, - "GDScript": { - "extends": 4, - "BaseClass": 1, - "var": 86, - "a": 6, - "s": 4, - "arr": 1, - "[": 22, - "]": 22, - "dict": 1, - "{": 2, - "}": 2, - "const": 11, - "answer": 1, - "thename": 1, - "v2": 1, - "Vector2": 61, - "(": 314, - ")": 313, - "v3": 1, - "Vector3": 9, - "func": 19, - "some_function": 1, - "param1": 4, - "param2": 5, - "local_var": 2, - "if": 56, - "<": 14, - "print": 6, - "elif": 4, - "else": 11, - "for": 9, - "i": 7, - "in": 12, - "range": 6, - "while": 1, - "-": 31, - "local_var2": 2, - "+": 24, - "return": 14, - "class": 1, - "Something": 1, - "_init": 1, - "lv": 10, - "Something.new": 1, - "lv.a": 1, - "Control": 1, - "score": 4, - "score_label": 2, - "null": 1, - "MAX_SHAPES": 2, - "block": 3, - "preload": 2, - "block_colors": 3, - "Color": 7, - "block_shapes": 4, - "#": 18, - "I": 1, - "O": 1, - "S": 1, - "Z": 1, - "L": 1, - "J": 1, - "T": 1, - "block_rotations": 2, - "Matrix32": 4, - "width": 5, - "height": 6, - "cells": 8, - "piece_active": 7, - "false": 16, - "piece_shape": 8, - "piece_pos": 3, - "piece_rot": 5, - "piece_cell_xform": 4, - "p": 2, - "er": 4, - "r": 2, - "%": 3, - ".xform": 1, - "_draw": 1, - "sb": 2, - "get_stylebox": 1, - "use": 1, - "line": 1, - "edit": 1, - "bg": 1, - "draw_style_box": 1, - "Rect2": 5, - "get_size": 1, - ".grow": 1, - "bs": 3, - "block.get_size": 1, - "y": 12, - "x": 12, - "draw_texture_rect": 2, - "*bs": 2, - "c": 6, - "piece_check_fit": 6, - "ofs": 2, - "pos": 4, - "pos.x": 2, - "pos.y": 2, - "true": 11, - "new_piece": 3, - "randi": 1, - "width/2": 1, - "piece_pos.y": 2, - "not": 5, - "#game": 1, - "over": 1, - "#print": 1, - "game_over": 2, - "update": 7, - "test_collapse_rows": 2, - "accum_down": 6, - "collapse": 3, - "cells.erase": 1, - "accum_down*100": 1, - "score_label.set_text": 2, - "str": 1, - "get_node": 24, - ".set_text": 2, - "restart_pressed": 1, - "cells.clear": 1, - "piece_move_down": 2, - "piece_rotate": 2, - "adv": 2, - "_input": 1, - "ie": 1, - "ie.is_pressed": 1, - "ie.is_action": 4, - "piece_pos.x": 2, - "setup": 2, - "w": 3, - "h": 3, - "set_size": 1, - "*block.get_size": 1, - ".start": 1, - "_ready": 3, - "Initalization": 2, - "here": 2, - "set_process_input": 1, - "RigidBody": 1, - "#var": 1, - "dir": 8, - "ANIM_FLOOR": 2, - "ANIM_AIR_UP": 2, - "ANIM_AIR_DOWN": 2, - "SHOOT_TIME": 2, - "SHOOT_SCALE": 2, - "CHAR_SCALE": 2, - "facing_dir": 2, - "movement_dir": 3, - "jumping": 5, - "turn_speed": 2, - "keep_jump_inertia": 2, - "air_idle_deaccel": 2, - "accel": 2, - "deaccel": 2, - "sharp_turn_threshhold": 2, - "max_speed": 5, - "on_floor": 3, - "prev_shoot": 3, - "last_floor_velocity": 5, - "shoot_blend": 7, - "adjust_facing": 3, - "p_facing": 4, - "p_target": 2, - "p_step": 2, - "p_adjust_rate": 2, - "current_gn": 2, - "n": 2, - "normal": 1, - "t": 2, - "n.cross": 1, - ".normalized": 2, - "n.dot": 1, - "t.dot": 1, - "ang": 12, - "atan2": 1, - "abs": 1, - "too": 1, - "small": 1, - "sign": 1, - "*": 15, - "turn": 3, - "cos": 2, - "sin": 1, - "p_facing.length": 1, - "_integrate_forces": 1, - "state": 5, - "state.get_linear_velocity": 1, - "linear": 1, - "velocity": 3, - "g": 3, - "state.get_total_gravity": 1, - "delta": 8, - "state.get_step": 1, - "d": 2, - "delta*state.get_total_density": 1, - "<0):>": 2, - "d=": 1, - "apply": 1, - "gravity": 2, - "anim": 4, - "up": 12, - "normalized": 6, - "is": 1, - "against": 1, - "vv": 5, - "dot": 3, - "vertical": 1, - "hv": 8, - "horizontal": 3, - "hdir": 7, - "direction": 6, - "hspeed": 14, - "length": 1, - "speed": 2, - "floor_velocity": 5, - "onfloor": 6, - "get_contact_count": 2, - "0": 6, - "get_contact_local_shape": 1, - "1": 2, - "continue": 1, - "get_contact_collider_velocity_at_pos": 1, - "break": 1, - "where": 1, - "does": 1, - "the": 1, - "player": 1, - "intend": 1, - "to": 3, - "walk": 1, - "cam_xform": 5, - "target": 1, - "camera": 1, - "get_global_transform": 1, - "Input": 6, - "is_action_pressed": 6, - "move_forward": 1, - "basis": 5, - "2": 2, - "move_backwards": 1, - "move_left": 1, - "move_right": 1, - "jump_attempt": 2, - "jump": 2, - "shoot_attempt": 3, - "shoot": 1, - "target_dir": 5, - "sharp_turn": 2, - "and": 16, - "rad2deg": 1, - "acos": 1, - "target_dir.dot": 1, - "dir.length": 2, - "#linear_dir": 1, - "linear_h_velocity/linear_vel": 1, - "#if": 2, - "linear_vel": 1, - "brake_velocity_limit": 1, - "linear_dir.dot": 1, - "ctarget_dir": 1, - "Math": 1, - "deg2rad": 1, - "brake_angular_limit": 1, - "brake": 1, - "#else": 1, - "/hspeed*turn_speed": 1, - "accel*delta": 1, - "deaccel*delta": 1, - "hspeed=": 1, - "mesh_xform": 2, - "Armature": 2, - "get_transform": 1, - "facing_mesh=": 1, - "facing_mesh": 7, - "m3": 2, - "Matrix3": 1, - "cross": 1, - "scaled": 1, - "set_transform": 1, - "Transform": 1, - "origin": 1, - "7": 1, - "sfx": 1, - "play": 1, - "hs": 1, - "hv.length": 1, - "hv.normalized": 1, - "hdir*hspeed": 1, - "up*vv": 1, - "#lv": 1, - "pass": 2, - "state.set_linear_velocity": 1, - "bullet": 3, - ".instance": 1, - "bullet.set_transform": 1, - ".get_global_transform": 2, - ".orthonormalized": 1, - "get_parent": 1, - ".add_child": 1, - "bullet.set_linear_velocity": 1, - ".basis": 1, - "PS.body_add_collision_exception": 1, - "bullet.get_rid": 1, - "get_rid": 1, - "#add": 1, - "it": 1, - ".play": 1, - ".blend2_node_set_amount": 2, - "/": 1, - ".transition_node_set_current": 1, - "min": 1, - "state.set_angular_velocity": 1, - ".set_active": 1, - "Node2D": 1, - "INITIAL_BALL_SPEED": 3, - "ball_speed": 2, - "screen_size": 2, - "#default": 1, - "ball": 3, - "pad_size": 4, - "PAD_SPEED": 1, - "_process": 1, - "get": 2, - "positio": 1, - "pad": 3, - "rectangles": 1, - "ball_pos": 8, - ".get_pos": 5, - "left_rect": 1, - "pad_size*0.5": 2, - "right_rect": 1, - "#integrate": 1, - "new": 1, - "postion": 1, - "direction*ball_speed*delta": 1, - "#flip": 2, - "when": 2, - "touching": 2, - "roof": 1, - "or": 4, - "floor": 1, - "ball_pos.y": 1, - "direction.y": 5, - "<0)>": 1, - "screen_size.y": 3, - "change": 1, - "increase": 1, - "pads": 1, - "left_rect.has_point": 1, - "direction.x": 4, - "right_rect.has_point": 1, - "ball_speed*": 1, - "randf": 1, - "*2.0": 1, - "direction.normalized": 1, - "#check": 1, - "gameover": 1, - "ball_pos.x": 1, - "<0>": 1, - "screen_size.x": 1, - "screen_size*0.5": 1, - ".set_pos": 3, - "#move": 2, - "left": 1, - "left_pos": 2, - "left_pos.y": 4, - "Input.is_action_pressed": 4, - "PAD_SPEED*delta": 4, - "right": 1, - "right_pos": 2, - "right_pos.y": 4, - "get_viewport_rect": 1, - ".size": 1, - "actual": 1, - "size": 1, - ".get_texture": 1, - ".get_size": 1, - "set_process": 1 - }, - "GLSL": { - "////": 4, - "High": 1, - "quality": 2, - "(": 437, - "Some": 1, - "browsers": 1, - "may": 1, - "freeze": 1, - "or": 1, - "crash": 1, - ")": 437, - "//#define": 10, - "HIGHQUALITY": 2, - "Medium": 1, - "Should": 1, - "be": 1, - "fine": 1, - "on": 3, - "all": 1, - "systems": 1, - "works": 1, - "Intel": 1, - "HD2000": 1, - "Win7": 1, - "but": 1, - "quite": 1, - "slow": 1, - "MEDIUMQUALITY": 2, - "Defaults": 1, - "REFLECTIONS": 3, - "#define": 13, - "SHADOWS": 5, - "GRASS": 3, - "SMALL_WAVES": 4, - "RAGGED_LEAVES": 5, - "DETAILED_NOISE": 3, - "LIGHT_AA": 3, - "//": 38, - "sample": 2, - "SSAA": 2, - "HEAVY_AA": 2, - "x2": 5, - "RG": 1, - "TONEMAP": 5, - "Configurations": 1, - "#ifdef": 14, - "#endif": 14, - "const": 19, - "float": 105, - "eps": 5, - "e": 4, - "-": 108, - ";": 391, - "PI": 3, - "vec3": 165, - "sunDir": 5, - "skyCol": 4, - "sandCol": 2, - "treeCol": 2, - "grassCol": 2, - "leavesCol": 4, - "leavesPos": 4, - "sunCol": 5, - "#else": 5, - "exposure": 1, - "Only": 1, - "used": 1, - "when": 1, - "tonemapping": 1, - "mod289": 4, - "x": 11, - "{": 84, - "return": 47, - "floor": 8, - "*": 116, - "/": 24, - "}": 84, - "vec4": 77, - "permute": 4, - "x*34.0": 1, - "+": 108, - "*x": 3, - "taylorInvSqrt": 2, - "r": 14, - "snoise": 7, - "v": 8, - "vec2": 26, - "C": 1, - "/6.0": 1, - "/3.0": 1, - "D": 1, - "i": 38, - "dot": 30, - "C.yyy": 2, - "x0": 7, - "C.xxx": 2, - "g": 2, - "step": 2, - "x0.yzx": 1, - "x0.xyz": 1, - "l": 1, - "i1": 2, - "min": 11, - "g.xyz": 2, - "l.zxy": 2, - "i2": 2, - "max": 9, - "x1": 4, - "*C.x": 2, - "/3": 1, - "C.y": 1, - "x3": 4, - "D.yyy": 1, - "D.y": 1, - "p": 26, - "i.z": 1, - "i1.z": 1, - "i2.z": 1, - "i.y": 1, - "i1.y": 1, - "i2.y": 1, - "i.x": 1, - "i1.x": 1, - "i2.x": 1, - "n_": 2, - "/7.0": 1, - "ns": 4, - "D.wyz": 1, - "D.xzx": 1, - "j": 4, - "ns.z": 3, - "mod": 2, - "*7": 1, - "x_": 3, - "y_": 2, - "N": 1, - "*ns.x": 2, - "ns.yyyy": 2, - "y": 2, - "h": 21, - "abs": 2, - "b0": 3, - "x.xy": 1, - "y.xy": 1, - "b1": 3, - "x.zw": 1, - "y.zw": 1, - "//vec4": 3, - "s0": 2, - "lessThan": 2, - "*2.0": 4, - "s1": 2, - "sh": 1, - "a0": 1, - "b0.xzyw": 1, - "s0.xzyw*sh.xxyy": 1, - "a1": 1, - "b1.xzyw": 1, - "s1.xzyw*sh.zzww": 1, - "p0": 5, - "a0.xy": 1, - "h.x": 1, - "p1": 5, - "a0.zw": 1, - "h.y": 1, - "p2": 5, - "a1.xy": 1, - "h.z": 1, - "p3": 5, - "a1.zw": 1, - "h.w": 1, - "//Normalise": 1, - "gradients": 1, - "norm": 1, - "norm.x": 1, - "norm.y": 1, - "norm.z": 1, - "norm.w": 1, - "m": 8, - "m*m": 1, - "fbm": 2, - "final": 5, - "waterHeight": 4, - "d": 10, - "length": 7, - "p.xz": 2, - "sin": 8, - "iGlobalTime": 7, - "Island": 1, - "waves": 3, - "p*0.5": 1, - "Other": 1, - "bump": 2, - "pos": 43, - "rayDir": 43, - "s": 23, - "Fade": 1, - "out": 1, - "to": 1, - "reduce": 1, - "aliasing": 1, - "dist": 7, - "<": 23, - "sqrt": 6, - "Calculate": 1, - "normal": 7, - "from": 2, - "heightmap": 1, - "pos.x": 1, - "iGlobalTime*0.5": 1, - "pos.z": 2, - "*0.7": 1, - "*s": 4, - "normalize": 14, - "e.xyy": 1, - "e.yxy": 1, - "intersectSphere": 2, - "rpos": 5, - "rdir": 3, - "rad": 2, - "op": 5, - "b": 5, - "det": 11, - "b*b": 2, - "rad*rad": 2, - "if": 29, - "t": 44, - "rdir*t": 1, - "intersectCylinder": 1, - "rdir2": 2, - "rdir.yz": 1, - "op.yz": 3, - "rpos.yz": 2, - "rdir2*t": 2, - "pos.yz": 2, - "intersectPlane": 3, - "rayPos": 38, - "n": 18, - "sign": 1, - "rotate": 5, - "theta": 6, - "c": 6, - "cos": 4, - "p.x": 2, - "p.z": 2, - "p.y": 1, - "impulse": 2, - "k": 8, - "by": 1, - "iq": 2, - "k*x": 1, - "exp": 2, - "grass": 2, - "Optimization": 1, - "Avoid": 1, - "noise": 1, - "too": 1, - "far": 1, - "away": 1, - "pos.y": 8, - "tree": 2, - "pos.y*0.03": 2, - "mat2": 2, - "m*pos.xy": 1, - "width": 2, - "clamp": 4, - "scene": 7, - "vtree": 4, - "vgrass": 2, - ".x": 4, - "eps.xyy": 1, - "eps.yxy": 1, - "eps.yyx": 1, - "plantsShadow": 2, - "Soft": 1, - "shadow": 4, - "taken": 1, - "for": 7, - "int": 8, - "rayDir*t": 2, - "res": 6, - "res.x": 3, - "k*res.x/t": 1, - "s*s*": 1, - "intersectWater": 2, - "rayPos.y": 1, - "rayDir.y": 1, - "intersectSand": 3, - "intersectTreasure": 2, - "intersectLeaf": 2, - "openAmount": 4, - "dir": 2, - "offset": 5, - "rayDir*res.w": 1, - "pos*0.8": 2, - "||": 3, - "res.w": 6, - "res2": 2, - "dir.xy": 1, - "dir.z": 1, - "rayDir*res2.w": 1, - "res2.w": 3, - "&&": 10, - "leaves": 7, - "e20": 3, - "sway": 5, - "fract": 1, - "upDownSway": 2, - "angleOffset": 3, - "Left": 1, - "right": 1, - "alpha": 3, - "Up": 1, - "down": 1, - "k*10.0": 1, - "p.xzy": 1, - ".xzy": 2, - "d.xzy": 1, - "Shift": 1, - "Intersect": 11, - "individual": 1, - "leaf": 1, - "res.xyz": 1, - "sand": 2, - "resSand": 2, - "//if": 1, - "resSand.w": 4, - "plants": 6, - "resLeaves": 3, - "resLeaves.w": 10, - "e7": 3, - "light": 5, - "sunDir*0.01": 2, - "col": 32, - "n.y": 3, - "lightLeaves": 3, - "ao": 5, - "sky": 5, - "res.y": 2, - "uvFact": 2, - "uv": 12, - "n.x": 1, - "tex": 6, - "texture2D": 6, - "iChannel0": 3, - ".rgb": 2, - "e8": 1, - "traceReflection": 2, - "resPlants": 2, - "resPlants.w": 6, - "resPlants.xyz": 2, - "pos.xz": 2, - "leavesPos.xz": 2, - ".r": 3, - "resLeaves.xyz": 2, - "trace": 2, - "resSand.xyz": 1, - "treasure": 1, - "chest": 1, - "resTreasure": 1, - "resTreasure.w": 4, - "resTreasure.xyz": 1, - "water": 1, - "resWater": 1, - "resWater.w": 4, - "ct": 2, - "fresnel": 2, - "pow": 3, - "trans": 2, - "reflDir": 3, - "reflect": 1, - "refl": 3, - "resWater.t": 1, - "mix": 2, - "camera": 8, - "px": 4, - "rd": 1, - "iResolution.yy": 1, - "iResolution.x/iResolution.y*0.5": 1, - "rd.x": 1, - "rd.y": 1, - "void": 33, - "main": 7, - "gl_FragCoord.xy": 7, - "*0.25": 4, - "*0.5": 1, - "Optimized": 1, - "Haarm": 1, - "Peter": 1, - "Duiker": 1, - "curve": 1, - "col*exposure": 1, - "x*": 2, - ".5": 1, - "gl_FragColor": 4, - "varying": 6, - "v_color": 4, - "uniform": 8, - "mat4": 1, - "u_MVPMatrix": 2, - "attribute": 2, - "a_position": 1, - "a_color": 2, - "gl_Position": 1, - "#version": 2, - "core": 1, - "cbar": 2, - "cfoo": 1, - "CB": 2, - "CD": 2, - "CA": 1, - "CC": 1, - "CBT": 5, - "CDT": 3, - "CAT": 1, - "CCT": 1, - "norA": 4, - "norB": 3, - "norC": 1, - "norD": 1, - "norE": 4, - "norF": 1, - "norG": 1, - "norH": 1, - "norI": 1, - "norcA": 2, - "norcB": 3, - "norcC": 2, - "norcD": 2, - "head": 1, - "of": 1, - "cycle": 2, - "norcE": 1, - "lead": 1, - "into": 1, - "NUM_LIGHTS": 4, - "AMBIENT": 2, - "MAX_DIST": 3, - "MAX_DIST_SQUARED": 3, - "lightColor": 3, - "[": 29, - "]": 29, - "fragmentNormal": 2, - "cameraVector": 2, - "lightVector": 4, - "initialize": 1, - "diffuse/specular": 1, - "lighting": 1, - "diffuse": 4, - "specular": 4, - "the": 1, - "fragment": 1, - "and": 2, - "direction": 1, - "cameraDir": 2, - "loop": 1, - "through": 1, - "each": 1, - "calculate": 1, - "distance": 1, - "between": 1, - "distFactor": 3, - "lightDir": 3, - "diffuseDot": 2, - "halfAngle": 2, - "specularColor": 2, - "specularDot": 2, - "sample.rgb": 1, - "sample.a": 1, - "static": 1, - "char*": 1, - "SimpleFragmentShader": 1, - "STRINGIFY": 1, - "FrontColor": 2, - "kCoeff": 2, - "kCube": 2, - "uShift": 3, - "vShift": 3, - "chroma_red": 2, - "chroma_green": 2, - "chroma_blue": 2, - "bool": 1, - "apply_disto": 4, - "sampler2D": 1, - "input1": 4, - "adsk_input1_w": 4, - "adsk_input1_h": 3, - "adsk_input1_aspect": 1, - "adsk_input1_frameratio": 5, - "adsk_result_w": 3, - "adsk_result_h": 2, - "distortion_f": 3, - "f": 17, - "r*r": 1, - "inverse_f": 2, - "lut": 9, - "max_r": 2, - "incr": 2, - "lut_r": 5, - ".z": 5, - ".y": 2, - "aberrate": 4, - "chroma": 2, - "chromaticize_and_invert": 2, - "rgb_f": 5, - "px.x": 2, - "px.y": 2, - "uv.x": 11, - "uv.y": 7, - "*2": 2, - "uv.x*uv.x": 1, - "uv.y*uv.y": 1, - "else": 1, - "rgb_uvs": 12, - "rgb_f.rr": 1, - "rgb_f.gg": 1, - "rgb_f.bb": 1, - "sampled": 1, - "sampled.r": 1, - "sampled.g": 1, - ".g": 1, - "sampled.b": 1, - ".b": 1, - "gl_FragColor.rgba": 1, - "sampled.rgb": 1 - }, - "Game Maker Language": { - "//draws": 1, - "the": 62, - "sprite": 12, - "draw": 3, - "true": 73, - ";": 1282, - "if": 397, - "(": 1501, - "facing": 17, - "RIGHT": 10, - ")": 1502, - "image_xscale": 17, - "-": 212, - "else": 151, - "blinkToggle": 1, - "{": 300, - "state": 50, - "CLIMBING": 5, - "or": 78, - "sprite_index": 14, - "sPExit": 1, - "sDamselExit": 1, - "sTunnelExit": 1, - "and": 155, - "global.hasJetpack": 4, - "not": 63, - "whipping": 5, - "draw_sprite_ext": 10, - "x": 76, - "y": 85, - "image_yscale": 14, - "image_angle": 14, - "image_blend": 2, - "image_alpha": 10, - "//draw_sprite": 1, - "draw_sprite": 9, - "sJetpackBack": 1, - "false": 85, - "}": 307, - "sJetpackRight": 1, - "sJetpackLeft": 1, - "+": 206, - "redColor": 2, - "make_color_rgb": 1, - "holdArrow": 4, - "ARROW_NORM": 2, - "sArrowRight": 1, - "ARROW_BOMB": 2, - "holdArrowToggle": 2, - "sBombArrowRight": 2, - "LEFT": 7, - "sArrowLeft": 1, - "sBombArrowLeft": 2, - "hangCountMax": 2, - "//////////////////////////////////////": 2, - "kLeft": 12, - "checkLeft": 1, - "kLeftPushedSteps": 3, - "kLeftPressed": 2, - "checkLeftPressed": 1, - "kLeftReleased": 3, - "checkLeftReleased": 1, - "kRight": 12, - "checkRight": 1, - "kRightPushedSteps": 3, - "kRightPressed": 2, - "checkRightPressed": 1, - "kRightReleased": 3, - "checkRightReleased": 1, - "kUp": 5, - "checkUp": 1, - "kDown": 5, - "checkDown": 1, - "//key": 1, - "canRun": 1, - "kRun": 2, - "kJump": 6, - "checkJump": 1, - "kJumpPressed": 11, - "checkJumpPressed": 1, - "kJumpReleased": 5, - "checkJumpReleased": 1, - "cantJump": 3, - "global.isTunnelMan": 1, - "sTunnelAttackL": 1, - "holdItem": 1, - "kAttack": 2, - "checkAttack": 2, - "kAttackPressed": 2, - "checkAttackPressed": 1, - "kAttackReleased": 2, - "checkAttackReleased": 1, - "kItemPressed": 2, - "checkItemPressed": 1, - "xPrev": 1, - "yPrev": 1, - "stunned": 3, - "dead": 3, - "//////////////////////////////////////////": 2, - "colSolidLeft": 4, - "colSolidRight": 3, - "colLeft": 6, - "colRight": 6, - "colTop": 4, - "colBot": 11, - "colLadder": 3, - "colPlatBot": 6, - "colPlat": 5, - "colWaterTop": 3, - "colIceBot": 2, - "runKey": 4, - "isCollisionMoveableSolidLeft": 1, - "isCollisionMoveableSolidRight": 1, - "isCollisionLeft": 2, - "isCollisionRight": 2, - "isCollisionTop": 1, - "isCollisionBottom": 1, - "isCollisionLadder": 1, - "isCollisionPlatformBottom": 1, - "isCollisionPlatform": 1, - "isCollisionWaterTop": 1, - "collision_point": 30, - "oIce": 1, - "checkRun": 1, - "runHeld": 3, - "HANGING": 10, - "approximatelyZero": 4, - "xVel": 24, - "xAcc": 12, - "platformCharacterIs": 23, - "ON_GROUND": 18, - "DUCKING": 4, - "pushTimer": 3, - "//if": 5, - "SS_IsSoundPlaying": 2, - "global.sndPush": 4, - "playSound": 3, - "runAcc": 2, - "abs": 9, - "alarm": 13, - "[": 99, - "]": 103, - "<": 39, - "floor": 11, - "/": 5, - "/xVel": 1, - "instance_exists": 8, - "oCape": 2, - "oCape.open": 6, - "kJumped": 7, - "ladderTimer": 4, - "ladder": 5, - "oLadder": 4, - "ladder.x": 3, - "oLadderTop": 2, - "yAcc": 26, - "climbAcc": 2, - "FALLING": 8, - "STANDING": 2, - "departLadderXVel": 2, - "departLadderYVel": 1, - "JUMPING": 6, - "jumpButtonReleased": 7, - "jumpTime": 8, - "IN_AIR": 5, - "gravityIntensity": 2, - "yVel": 20, - "RUNNING": 3, - "jumps": 3, - "//playSound": 1, - "global.sndLand": 1, - "grav": 22, - "global.hasGloves": 3, - "hangCount": 14, - "*": 18, - "yVel*0.3": 1, - "oWeb": 2, - "obj": 14, - "instance_place": 3, - "obj.life": 1, - "initialJumpAcc": 6, - "xVel/2": 3, - "gravNorm": 7, - "global.hasCape": 1, - "jetpackFuel": 2, - "fallTimer": 2, - "global.hasJordans": 1, - "yAccLimit": 2, - "global.hasSpringShoes": 1, - "global.sndJump": 1, - "jumpTimeTotal": 2, - "//let": 1, - "character": 20, - "continue": 4, - "to": 62, - "jump": 1, - "jumpTime/jumpTimeTotal": 1, - "looking": 2, - "UP": 1, - "LOOKING_UP": 4, - "oSolid": 14, - "move_snap": 6, - "oTree": 4, - "oArrow": 5, - "instance_nearest": 1, - "obj.stuck": 1, - "//the": 2, - "can": 1, - "t": 23, - "want": 1, - "use": 4, - "because": 2, - "is": 9, - "too": 2, - "high": 1, - "yPrevHigh": 1, - "//": 11, - "we": 5, - "ll": 1, - "move": 2, - "correct": 1, - "distance": 1, - "but": 2, - "need": 1, - "shorten": 1, - "out": 4, - "a": 55, - "little": 1, - "ratio": 1, - "xVelInteger": 2, - "/dist*0.9": 1, - "//can": 1, - "be": 4, - "changed": 1, - "moveTo": 2, - "round": 6, - "xVelInteger*ratio": 1, - "yVelInteger*ratio": 1, - "slopeChangeInY": 1, - "maxDownSlope": 1, - "floating": 1, - "just": 1, - "above": 1, - "slope": 1, - "so": 2, - "down": 1, - "upYPrev": 1, - "for": 26, - "<=upYPrev+maxDownSlope;y+=1)>": 1, - "hit": 1, - "solid": 1, - "below": 1, - "upYPrev=": 1, - "I": 1, - "know": 1, - "that": 2, - "this": 2, - "doesn": 1, - "seem": 1, - "make": 1, - "sense": 1, - "of": 25, - "name": 9, - "variable": 1, - "it": 6, - "all": 3, - "works": 1, - "correctly": 1, - "after": 1, - "break": 58, - "loop": 1, - "y=": 1, - "figures": 1, - "what": 1, - "index": 11, - "should": 25, - "characterSprite": 1, - "sets": 1, - "previous": 2, - "previously": 1, - "statePrevPrev": 1, - "statePrev": 2, - "calculates": 1, - "image_speed": 9, - "based": 1, - "on": 4, - "s": 6, - "velocity": 1, - "runAnimSpeed": 1, - "0": 21, - "1": 32, - "sqrt": 1, - "sqr": 2, - "climbAnimSpeed": 1, - "<=>": 3, - "4": 2, - "setCollisionBounds": 3, - "8": 9, - "5": 5, - "DUCKTOHANG": 1, - "image_index": 1, - "limit": 5, - "at": 23, - "animation": 1, - "always": 1, - "looks": 1, - "good": 1, - "var": 79, - "i": 95, - "playerObject": 1, - "playerID": 1, - "player": 36, - "otherPlayerID": 1, - "otherPlayer": 1, - "sameVersion": 1, - "buffer": 1, - "plugins": 4, - "pluginsRequired": 2, - "usePlugins": 1, - "tcp_eof": 3, - "global.serverSocket": 10, - "gotServerHello": 2, - "show_message": 7, - "instance_destroy": 7, - "exit": 10, - "room": 1, - "DownloadRoom": 1, - "keyboard_check": 1, - "vk_escape": 1, - "downloadingMap": 2, - "while": 15, - "tcp_receive": 3, - "min": 4, - "downloadMapBytes": 2, - "buffer_size": 2, - "downloadMapBuffer": 6, - "write_buffer": 2, - "write_buffer_to_file": 1, - "downloadMapName": 3, - "buffer_destroy": 8, - "roomchange": 2, - "do": 1, - "switch": 9, - "read_ubyte": 10, - "case": 50, - "HELLO": 1, - "global.joinedServerName": 2, - "receivestring": 4, - "advertisedMapMd5": 1, - "receiveCompleteMessage": 1, - "global.tempBuffer": 3, - "string_pos": 20, - "Server": 3, - "sent": 7, - "illegal": 2, - "map": 47, - "This": 2, - "server": 10, - "requires": 1, - "following": 2, - "play": 2, - "#": 3, - "suggests": 1, - "optional": 1, - "Error": 2, - "ocurred": 1, - "loading": 1, - "plugins.": 1, - "Maps/": 2, - ".png": 2, - "The": 6, - "version": 4, - "Enter": 1, - "Password": 1, - "Incorrect": 1, - "Password.": 1, - "Incompatible": 1, - "protocol": 3, - "version.": 1, - "Name": 1, - "Exploit": 1, - "Invalid": 2, - "plugin": 6, - "packet": 3, - "ID": 2, - "There": 1, - "are": 1, - "many": 1, - "connections": 1, - "from": 5, - "your": 1, - "IP": 1, - "You": 1, - "have": 2, - "been": 1, - "kicked": 1, - "server.": 1, - ".": 12, - "#Server": 1, - "went": 1, - "invalid": 1, - "internal": 1, - "#Exiting.": 1, - "full.": 1, - "noone": 7, - "ERROR": 1, - "when": 1, - "reading": 1, - "no": 1, - "such": 1, - "unexpected": 1, - "data.": 1, - "until": 1, - "downloadHandle": 3, - "url": 62, - "tmpfile": 3, - "window_oldshowborder": 2, - "window_oldfullscreen": 2, - "timeLeft": 1, - "counter": 1, - "AudioControlPlaySong": 1, - "window_get_showborder": 1, - "window_get_fullscreen": 1, - "window_set_fullscreen": 2, - "window_set_showborder": 1, - "global.updaterBetaChannel": 3, - "UPDATE_SOURCE_BETA": 1, - "UPDATE_SOURCE": 1, - "temp_directory": 1, - "httpGet": 1, - "httpRequestStatus": 1, - "download": 1, - "isn": 1, - "extract": 1, - "downloaded": 1, - "file": 2, - "now.": 1, - "extractzip": 1, - "working_directory": 6, - "execute_program": 1, - "game_end": 1, - "victim": 10, - "killer": 11, - "assistant": 16, - "damageSource": 18, - "argument0": 28, - "argument1": 10, - "argument2": 3, - "argument3": 1, - "//*************************************": 6, - "//*": 3, - "Scoring": 1, - "Kill": 1, - "log": 1, - "recordKillInLog": 1, - "victim.stats": 1, - "DEATHS": 1, - "WEAPON_KNIFE": 1, - "||": 16, - "WEAPON_BACKSTAB": 1, - "killer.stats": 8, - "STABS": 2, - "killer.roundStats": 8, - "POINTS": 10, - "victim.object.currentWeapon.object_index": 1, - "Medigun": 2, - "victim.object.currentWeapon.uberReady": 1, - "BONUS": 2, - "KILLS": 2, - "victim.object.intel": 1, - "DEFENSES": 2, - "recordEventInLog": 1, - "killer.team": 1, - "killer.name": 2, - "global.myself": 4, - "assistant.stats": 2, - "ASSISTS": 2, - "assistant.roundStats": 2, - ".5": 2, - "//SPEC": 1, - "instance_create": 20, - "victim.object.x": 3, - "victim.object.y": 3, - "Spectator": 1, - "Gibbing": 2, - "xoffset": 5, - "yoffset": 5, - "xsize": 3, - "ysize": 3, - "view_xview": 3, - "view_yview": 3, - "view_wview": 2, - "view_hview": 2, - "randomize": 1, - "with": 47, - "victim.object": 2, - "WEAPON_ROCKETLAUNCHER": 1, - "WEAPON_MINEGUN": 1, - "FRAG_BOX": 2, - "WEAPON_REFLECTED_STICKY": 1, - "WEAPON_REFLECTED_ROCKET": 1, - "FINISHED_OFF_GIB": 2, - "GENERATOR_EXPLOSION": 2, - "player.class": 15, - "CLASS_QUOTE": 3, - "global.gibLevel": 14, - "distance_to_point": 3, - "xsize/2": 2, - "ysize/2": 2, - "hasReward": 4, - "repeat": 7, - "createGib": 14, - "PumpkinGib": 1, - "hspeed": 14, - "vspeed": 13, - "random": 21, - "choose": 8, - "Gib": 1, - "player.team": 8, - "TEAM_BLUE": 6, - "BlueClump": 1, - "TEAM_RED": 8, - "RedClump": 1, - "blood": 2, - "BloodDrop": 1, - "blood.hspeed": 1, - "blood.vspeed": 1, - "blood.sprite_index": 1, - "PumpkinJuiceS": 1, - "//All": 1, - "Classes": 1, - "gib": 1, - "head": 1, - "hands": 2, - "feet": 1, - "Headgib": 1, - "//Medic": 1, - "has": 2, - "specially": 1, - "colored": 1, - "CLASS_MEDIC": 2, - "Hand": 3, - "Feet": 1, - "//Class": 1, - "specific": 1, - "gibs": 1, - "CLASS_PYRO": 2, - "Accesory": 5, - "CLASS_SOLDIER": 2, - "CLASS_ENGINEER": 3, - "CLASS_SNIPER": 3, - "playsound": 2, - "deadbody": 2, - "DeathSnd1": 1, - "DeathSnd2": 1, - "DeadGuy": 1, - "deadbody.sprite_index": 2, - "haxxyStatue": 1, - "deadbody.image_index": 2, - "CHARACTER_ANIMATION_DEAD": 1, - "deadbody.hspeed": 1, - "deadbody.vspeed": 1, - "deadbody.image_xscale": 1, - "global.gg_birthday": 1, - "myHat": 2, - "PartyHat": 1, - "myHat.image_index": 2, - "victim.team": 2, - "global.xmas": 1, - "XmasHat": 1, - "Deathcam": 1, - "global.killCam": 3, - "KILL_BOX": 1, - "FINISHED_OFF": 5, - "DeathCam": 1, - "DeathCam.killedby": 1, - "DeathCam.name": 1, - "DeathCam.oldxview": 1, - "DeathCam.oldyview": 1, - "DeathCam.lastDamageSource": 1, - "DeathCam.team": 1, - "global.myself.team": 3, - "xr": 19, - "yr": 19, - "cloakAlpha": 1, - "team": 13, - "canCloak": 1, - "cloakAlpha/2": 1, - "invisible": 1, - "stabbing": 2, - "power": 1, - "currentWeapon.stab.alpha": 1, - "&&": 6, - "global.showHealthBar": 3, - "draw_set_alpha": 3, - "draw_healthbar": 1, - "hp*100/maxHp": 1, - "c_black": 1, - "c_red": 3, - "c_green": 1, - "mouse_x": 1, - "mouse_y": 1, - "<25)>": 1, - "cloak": 2, - "global": 8, - "myself": 2, - "draw_set_halign": 1, - "fa_center": 1, - "draw_set_valign": 1, - "fa_bottom": 1, - "team=": 1, - "draw_set_color": 2, - "c_blue": 2, - "draw_text": 4, - "35": 1, - "showTeammateStats": 1, - "weapons": 3, - "50": 3, - "Superburst": 1, - "string": 13, - "currentWeapon": 2, - "uberCharge": 1, - "20": 1, - "Shotgun": 1, - "Nuts": 1, - "N": 1, - "Bolts": 1, - "nutsNBolts": 1, - "Minegun": 1, - "Lobbed": 1, - "Mines": 1, - "lobbed": 1, - "ubercolour": 6, - "overlaySprite": 6, - "zoomed": 1, - "SniperCrouchRedS": 1, - "SniperCrouchBlueS": 1, - "sniperCrouchOverlay": 1, - "overlay": 1, - "omnomnomnom": 2, - "draw_sprite_ext_overlay": 7, - "omnomnomnomSprite": 2, - "omnomnomnomOverlay": 2, - "omnomnomnomindex": 4, - "c_white": 13, - "ubered": 7, - "7": 4, - "taunting": 2, - "tauntsprite": 2, - "tauntOverlay": 2, - "tauntindex": 2, - "humiliated": 1, - "humiliationPoses": 1, - "animationImage": 9, - "humiliationOffset": 1, - "animationOffset": 6, - "burnDuration": 2, - "burnIntensity": 2, - "numFlames": 1, - "maxIntensity": 1, - "FlameS": 1, - "flameArray_x": 1, - "flameArray_y": 1, - "maxDuration": 1, - "demon": 4, - "demonX": 5, - "median": 2, - "demonY": 4, - "demonOffset": 4, - "demonDir": 2, - "dir": 3, - "demonFrame": 5, - "sprite_get_number": 1, - "*player.team": 2, - "dir*1": 2, - "#define": 26, - "__http_init": 3, - "global.__HttpClient": 4, - "object_add": 1, - "object_set_persistent": 1, - "__http_split": 3, - "text": 19, - "delimeter": 7, - "list": 36, - "count": 4, - "ds_list_create": 5, - "ds_list_add": 23, - "string_copy": 32, - "string_length": 25, - "return": 56, - "__http_parse_url": 4, - "ds_map_create": 4, - "ds_map_add": 15, - "colonPos": 22, - "string_char_at": 13, - "slashPos": 13, - "real": 14, - "queryPos": 12, - "ds_map_destroy": 6, - "__http_resolve_url": 2, - "baseUrl": 3, - "refUrl": 18, - "urlParts": 15, - "refUrlParts": 5, - "canParseRefUrl": 3, - "result": 11, - "ds_map_find_value": 22, - "__http_resolve_path": 3, - "ds_map_replace": 3, - "ds_map_exists": 11, - "ds_map_delete": 1, - "path": 10, - "query": 4, - "relUrl": 1, - "__http_construct_url": 2, - "basePath": 4, - "refPath": 7, - "parts": 29, - "refParts": 5, - "lastPart": 3, - "ds_list_find_value": 9, - "ds_list_size": 11, - "ds_list_delete": 5, - "ds_list_destroy": 4, - "part": 6, - "ds_list_replace": 3, - "__http_parse_hex": 2, - "hexString": 4, - "hexValues": 3, - "digit": 4, - "__http_prepare_request": 4, - "client": 33, - "headers": 11, - "parsed": 18, - "show_error": 2, - "destroyed": 3, - "CR": 10, - "chr": 3, - "LF": 5, - "CRLF": 17, - "socket": 40, - "tcp_connect": 1, - "errored": 19, - "error": 18, - "linebuf": 33, - "line": 19, - "statusCode": 6, - "reasonPhrase": 2, - "responseBody": 19, - "buffer_create": 7, - "responseBodySize": 5, - "responseBodyProgress": 5, - "responseHeaders": 9, - "requestUrl": 2, - "requestHeaders": 2, - "write_string": 9, - "key": 17, - "ds_map_find_first": 1, - "is_string": 2, - "ds_map_find_next": 1, - "socket_send": 1, - "__http_parse_header": 3, - "ord": 16, - "headerValue": 9, - "string_lower": 3, - "headerName": 4, - "__http_client_step": 2, - "socket_has_error": 1, - "socket_error": 1, - "__http_client_destroy": 20, - "available": 7, - "tcp_receive_available": 1, - "bytesRead": 6, - "c": 20, - "read_string": 9, - "Reached": 2, - "end": 11, - "HTTP": 1, - "defines": 1, - "sequence": 2, - "as": 1, - "marker": 1, - "elements": 1, - "except": 2, - "entity": 1, - "body": 2, - "see": 1, - "appendix": 1, - "19": 1, - "3": 1, - "tolerant": 1, - "applications": 1, - "Strip": 1, - "trailing": 1, - "First": 1, - "status": 2, - "code": 2, - "first": 3, - "Response": 1, - "message": 1, - "Status": 1, - "Line": 1, - "consisting": 1, - "followed": 1, - "by": 5, - "numeric": 1, - "its": 1, - "associated": 1, - "textual": 1, - "phrase": 1, - "each": 18, - "element": 8, - "separated": 1, - "SP": 1, - "characters": 3, - "No": 3, - "allowed": 1, - "in": 21, - "final": 1, - "httpVer": 2, - "spacePos": 11, - "space": 4, - "response": 5, - "second": 2, - "Other": 1, - "Blank": 1, - "write": 1, - "remainder": 1, - "write_buffer_part": 3, - "Header": 1, - "Receiving": 1, - "transfer": 6, - "encoding": 2, - "chunked": 4, - "Chunked": 1, - "let": 1, - "decode": 36, - "actualResponseBody": 8, - "actualResponseSize": 1, - "actualResponseBodySize": 3, - "Parse": 1, - "chunks": 1, - "chunk": 12, - "size": 7, - "extension": 3, - "data": 4, - "HEX": 1, - "buffer_bytes_left": 6, - "chunkSize": 11, - "Read": 1, - "byte": 2, - "We": 1, - "found": 21, - "semicolon": 1, - "beginning": 1, - "skip": 1, - "stuff": 2, - "header": 2, - "Doesn": 1, - "did": 1, - "empty": 13, - "something": 1, - "up": 6, - "Parsing": 1, - "failed": 56, - "hex": 2, - "was": 1, - "hexadecimal": 1, - "Is": 1, - "bigger": 2, - "than": 1, - "remaining": 1, - "2": 2, - "responseHaders": 1, - "location": 4, - "resolved": 5, - "socket_destroy": 4, - "http_new_get": 1, - "variable_global_exists": 2, - "http_new_get_ex": 1, - "http_step": 1, - "client.errored": 3, - "client.state": 3, - "http_status_code": 1, - "client.statusCode": 1, - "http_reason_phrase": 1, - "client.error": 1, - "client.reasonPhrase": 1, - "http_response_body": 1, - "client.responseBody": 1, - "http_response_body_size": 1, - "client.responseBodySize": 1, - "http_response_body_progress": 1, - "client.responseBodyProgress": 1, - "http_response_headers": 1, - "client.responseHeaders": 1, - "http_destroy": 1, - "RoomChangeObserver": 1, - "set_little_endian_global": 1, - "file_exists": 5, - "file_delete": 3, - "backupFilename": 5, - "file_find_first": 1, - "file_find_next": 1, - "file_find_close": 1, - "customMapRotationFile": 7, - "restart": 4, - "//import": 1, - "wav": 1, - "files": 1, - "music": 1, - "global.MenuMusic": 3, - "sound_add": 3, - "global.IngameMusic": 3, - "global.FaucetMusic": 3, - "sound_volume": 3, - "global.sendBuffer": 19, - "global.HudCheck": 1, - "global.map_rotation": 19, - "global.CustomMapCollisionSprite": 1, - "window_set_region_scale": 1, - "ini_open": 2, - "global.playerName": 7, - "ini_read_string": 12, - "string_count": 2, - "MAX_PLAYERNAME_LENGTH": 2, - "global.fullscreen": 3, - "ini_read_real": 65, - "global.useLobbyServer": 2, - "global.hostingPort": 2, - "global.music": 2, - "MUSIC_BOTH": 1, - "global.playerLimit": 4, - "//thy": 1, - "playerlimit": 1, - "shalt": 1, - "exceed": 1, - "global.dedicatedMode": 7, - "ini_write_real": 60, - "global.multiClientLimit": 2, - "global.particles": 2, - "PARTICLES_NORMAL": 1, - "global.monitorSync": 3, - "set_synchronization": 2, - "global.medicRadar": 2, - "global.showHealer": 2, - "global.showHealing": 2, - "global.showTeammateStats": 2, - "global.serverPluginsPrompt": 2, - "global.restartPrompt": 2, - "//user": 1, - "HUD": 1, - "settings": 1, - "global.timerPos": 2, - "global.killLogPos": 2, - "global.kothHudPos": 2, - "global.clientPassword": 1, - "global.shuffleRotation": 2, - "global.timeLimitMins": 2, - "max": 2, - "global.serverPassword": 2, - "global.mapRotationFile": 1, - "global.serverName": 2, - "global.welcomeMessage": 2, - "global.caplimit": 3, - "global.caplimitBkup": 1, - "global.autobalance": 2, - "global.Server_RespawntimeSec": 4, - "global.rewardKey": 1, - "unhex": 1, - "global.rewardId": 1, - "global.mapdownloadLimitBps": 2, - "isBetaVersion": 1, - "global.attemptPortForward": 2, - "global.serverPluginList": 3, - "global.serverPluginsRequired": 2, - "CrosshairFilename": 5, - "CrosshairRemoveBG": 4, - "global.queueJumping": 2, - "global.backgroundHash": 2, - "global.backgroundTitle": 2, - "global.backgroundURL": 2, - "global.backgroundShowVersion": 2, - "readClasslimitsFromIni": 1, - "global.currentMapArea": 1, - "global.totalMapAreas": 1, - "global.setupTimer": 1, - "global.serverPluginsInUse": 1, - "global.pluginPacketBuffers": 1, - "global.pluginPacketPlayers": 1, - "ini_write_string": 10, - "ini_key_delete": 1, - "global.classlimits": 10, - "CLASS_SCOUT": 1, - "CLASS_HEAVY": 2, - "CLASS_DEMOMAN": 1, - "CLASS_SPY": 1, - "//screw": 1, - "will": 1, - "start": 1, - "//map_truefort": 1, - "maps": 37, - "//map_2dfort": 1, - "//map_conflict": 1, - "//map_classicwell": 1, - "//map_waterway": 1, - "//map_orange": 1, - "//map_dirtbowl": 1, - "//map_egypt": 1, - "//arena_montane": 1, - "//arena_lumberyard": 1, - "//gen_destroy": 1, - "//koth_valley": 1, - "//koth_corinth": 1, - "//koth_harvest": 1, - "//dkoth_atalia": 1, - "//dkoth_sixties": 1, - "//Server": 1, - "respawn": 1, - "time": 1, - "calculator.": 1, - "Converts": 1, - "frame.": 1, - "read": 1, - "multiply": 1, - "hehe": 1, - "global.Server_Respawntime": 3, - "global.mapchanging": 1, - "ini_close": 2, - "global.protocolUuid": 2, - "parseUuid": 2, - "PROTOCOL_UUID": 1, - "global.gg2lobbyId": 2, - "GG2_LOBBY_UUID": 1, - "initRewards": 1, - "IPRaw": 3, - "portRaw": 3, - "doubleCheck": 8, - "global.launchMap": 5, - "parameter_count": 1, - "parameter_string": 8, - "global.serverPort": 1, - "global.serverIP": 1, - "global.isHost": 1, - "Client": 1, - "global.customMapdesginated": 2, - "fileHandle": 6, - "mapname": 9, - "file_text_open_read": 1, - "file_text_eof": 1, - "file_text_read_string": 1, - "starts": 1, - "tab": 2, - "string_delete": 1, - "delete": 1, - "comment": 1, - "starting": 1, - "file_text_readln": 1, - "file_text_close": 1, - "load": 1, - "ini": 1, - "Maps": 9, - "section": 1, - "//Set": 1, - "rotation": 1, - "sort_list": 7, - "*maps": 1, - "ds_list_sort": 1, - "mod": 1, - "global.gg2Font": 2, - "font_add_sprite": 2, - "gg2FontS": 1, - "global.countFont": 1, - "countFontS": 1, - "draw_set_font": 1, - "cursor_sprite": 1, - "CrosshairS": 5, - "directory_exists": 2, - "directory_create": 2, - "AudioControl": 1, - "SSControl": 1, - "message_background": 1, - "popupBackgroundB": 1, - "message_button": 1, - "popupButtonS": 1, - "message_text_font": 1, - "message_button_font": 1, - "message_input_font": 1, - "//Key": 1, - "Mapping": 1, - "global.jump": 1, - "global.down": 1, - "global.left": 1, - "global.right": 1, - "global.attack": 1, - "MOUSE_LEFT": 1, - "global.special": 1, - "MOUSE_RIGHT": 1, - "global.taunt": 1, - "global.chat1": 1, - "global.chat2": 1, - "global.chat3": 1, - "global.medic": 1, - "global.drop": 1, - "global.changeTeam": 1, - "global.changeClass": 1, - "global.showScores": 1, - "vk_shift": 1, - "calculateMonthAndDay": 1, - "loadplugins": 1, - "registry_set_root": 1, - "HKLM": 1, - "global.NTKernelVersion": 1, - "registry_read_string_ext": 1, - "CurrentVersion": 1, - "SIC": 1, - "sprite_replace": 1, - "sprite_set_offset": 1, - "sprite_get_width": 1, - "/2": 2, - "sprite_get_height": 1, - "AudioControlToggleMute": 1, - "room_goto_fix": 2, - "Menu": 2, - "__jso_gmt_tuple": 1, - "//Position": 1, - "address": 1, - "table": 1, - "pos": 2, - "addr_table": 2, - "*argument_count": 1, - "//Build": 1, - "tuple": 1, - "ca": 1, - "isstr": 1, - "datastr": 1, - "argument_count": 1, - "//Check": 1, - "argument": 10, - "Unexpected": 18, - "position": 16, - "f": 5, - "JSON": 5, - "string.": 5, - "Cannot": 5, - "parse": 3, - "boolean": 3, - "value": 13, - "expecting": 9, - "digit.": 9, - "e": 4, - "E": 4, - "dot": 1, - "an": 24, - "integer": 6, - "Expected": 6, - "least": 6, - "arguments": 26, - "got": 6, - "find": 10, - "lookup.": 4, - "indices": 1, - "nested": 27, - "lists": 6, - "Index": 1, - "overflow": 4, - "Recursive": 1, - "abcdef": 1, - "number": 7, - "num": 1, - "assert_true": 1, - "_assert_error_popup": 2, - "string_repeat": 2, - "_assert_newline": 2, - "assert_false": 1, - "assert_equal": 1, - "//Safe": 1, - "equality": 1, - "check": 1, - "won": 1, - "support": 1, - "instead": 1, - "_assert_debug_value": 1, - "//String": 1, - "os_browser": 1, - "browser_not_a_browser": 1, - "string_replace_all": 1, - "//Numeric": 1, - "GMTuple": 1, - "jso_encode_string": 1, - "encode": 8, - "escape": 2, - "jso_encode_map": 4, - "one": 42, - "key1": 3, - "key2": 3, - "multi": 7, - "jso_encode_list": 3, - "three": 36, - "_jso_decode_string": 5, - "small": 1, - "quick": 2, - "brown": 2, - "fox": 2, - "over": 2, - "lazy": 2, - "dog.": 2, - "simple": 1, - "Waahoo": 1, - "negg": 1, - "mixed": 1, - "_jso_decode_boolean": 2, - "_jso_decode_real": 11, - "standard": 1, - "zero": 4, - "signed": 2, - "decimal": 1, - "digits": 1, - "positive": 7, - "negative": 7, - "exponent": 4, - "_jso_decode_integer": 3, - "_jso_decode_map": 14, - "didn": 14, - "include": 14, - "right": 14, - "prefix": 14, - "#1": 14, - "#2": 14, - "entry": 29, - "pi": 2, - "bool": 2, - "waahoo": 10, - "woohah": 8, - "mix": 4, - "_jso_decode_list": 14, - "woo": 2, - "Empty": 4, - "equal": 20, - "other.": 12, - "junk": 2, - "info": 1, - "taxi": 1, - "An": 4, - "filled": 4, - "map.": 2, - "A": 24, - "B": 18, - "C": 8, - "same": 6, - "content": 4, - "entered": 4, - "different": 12, - "orders": 4, - "D": 1, - "keys": 2, - "values": 4, - "six": 1, - "corresponding": 4, - "types": 4, - "other": 4, - "crash.": 4, - "list.": 2, - "Lists": 4, - "two": 16, - "entries": 2, - "also": 2, - "jso_map_check": 9, - "existing": 9, - "single": 11, - "jso_map_lookup": 3, - "wrong": 10, - "trap": 2, - "jso_map_lookup_type": 3, - "type": 8, - "four": 21, - "inexistent": 11, - "multiple": 20, - "jso_list_check": 8, - "jso_list_lookup": 3, - "jso_list_lookup_type": 3, - "inner": 1, - "indexing": 1, - "bad": 1, - "jso_cleanup_map": 1, - "one_map": 1, - "hashList": 5, - "pluginname": 9, - "pluginhash": 4, - "realhash": 1, - "handle": 1, - "filesize": 1, - "progress": 1, - "tempfile": 1, - "tempdir": 1, - "lastContact": 2, - "isCached": 2, - "isDebug": 2, - "split": 1, - "checkpluginname": 1, - "ds_list_find_index": 1, - ".zip": 3, - "ServerPluginsCache": 6, - "@": 5, - ".zip.tmp": 1, - ".tmp": 2, - "ServerPluginsDebug": 1, - "Warning": 2, - "being": 2, - "loaded": 2, - "ServerPluginsDebug.": 2, - "Make": 2, - "sure": 2, - "clients": 1, - "they": 1, - "may": 2, - "unable": 2, - "connect.": 2, - "you": 1, - "Downloading": 1, - "last_plugin.log": 2, - "plugin.gml": 1, - "playerId": 11, - "commandLimitRemaining": 4, - "variable_local_exists": 4, - "commandReceiveState": 1, - "commandReceiveExpectedBytes": 1, - "commandReceiveCommand": 1, - "player.socket": 12, - "player.commandReceiveExpectedBytes": 7, - "player.commandReceiveState": 7, - "player.commandReceiveCommand": 4, - "commandBytes": 2, - "commandBytesInvalidCommand": 1, - "commandBytesPrefixLength1": 1, - "commandBytesPrefixLength2": 1, - "default": 1, - "read_ushort": 2, - "PLAYER_LEAVE": 1, - "PLAYER_CHANGECLASS": 1, - "class": 8, - "getCharacterObject": 2, - "player.object": 12, - "SpawnRoom": 2, - "lastDamageDealer": 8, - "sendEventPlayerDeath": 4, - "BID_FAREWELL": 4, - "doEventPlayerDeath": 4, - "secondToLastDamageDealer": 2, - "lastDamageDealer.object": 2, - "lastDamageDealer.object.healer": 4, - "player.alarm": 4, - "<=0)>": 1, - "checkClasslimits": 2, - "ServerPlayerChangeclass": 2, - "sendBuffer": 1, - "PLAYER_CHANGETEAM": 1, - "newTeam": 7, - "balance": 5, - "redSuperiority": 6, - "calculate": 1, - "which": 1, - "Player": 1, - "TEAM_SPECTATOR": 1, - "newClass": 4, - "ServerPlayerChangeteam": 1, - "ServerBalanceTeams": 1, - "CHAT_BUBBLE": 2, - "bubbleImage": 5, - "global.aFirst": 1, - "write_ubyte": 20, - "setChatBubble": 1, - "BUILD_SENTRY": 2, - "collision_circle": 1, - "player.object.x": 3, - "player.object.y": 3, - "Sentry": 1, - "player.object.nutsNBolts": 1, - "player.sentry": 2, - "player.object.onCabinet": 1, - "write_ushort": 2, - "global.serializeBuffer": 3, - "player.object.x*5": 1, - "player.object.y*5": 1, - "write_byte": 1, - "player.object.image_xscale": 2, - "buildSentry": 1, - "DESTROY_SENTRY": 1, - "DROP_INTEL": 1, - "player.object.intel": 1, - "sendEventDropIntel": 1, - "doEventDropIntel": 1, - "OMNOMNOMNOM": 2, - "player.humiliated": 1, - "player.object.taunting": 1, - "player.object.omnomnomnom": 1, - "player.object.canEat": 1, - "omnomnomnomend": 2, - "xscale": 1, - "TOGGLE_ZOOM": 2, - "toggleZoom": 1, - "PLAYER_CHANGENAME": 2, - "nameLength": 4, - "socket_receivebuffer_size": 3, - "KICK": 2, - "KICK_NAME": 1, - "current_time": 2, - "lastNamechange": 2, - "INPUTSTATE": 1, - "keyState": 1, - "netAimDirection": 1, - "aimDirection": 1, - "netAimDirection*360/65536": 1, - "event_user": 1, - "REWARD_REQUEST": 1, - "player.rewardId": 1, - "player.challenge": 2, - "rewardCreateChallenge": 1, - "REWARD_CHALLENGE_CODE": 1, - "write_binstring": 1, - "REWARD_CHALLENGE_RESPONSE": 1, - "answer": 3, - "authbuffer": 1, - "read_binstring": 1, - "rewardAuthStart": 1, - "challenge": 1, - "rewardId": 1, - "PLUGIN_PACKET": 1, - "packetID": 3, - "buf": 5, - "success": 3, - "_PluginPacketPush": 1, - "KICK_BAD_PLUGIN_PACKET": 1, - "CLIENT_SETTINGS": 2, - "mirror": 4, - "player.queueJump": 1, - "global.levelType": 22, - "//global.currLevel": 1, - "global.currLevel": 22, - "global.hadDarkLevel": 4, - "global.startRoomX": 1, - "global.startRoomY": 1, - "global.endRoomX": 1, - "global.endRoomY": 1, - "oGame.levelGen": 2, - "j": 14, - "global.roomPath": 1, - "k": 5, - "global.lake": 3, - "isLevel": 1, - "999": 2, - "levelType": 2, - "16": 14, - "656": 3, - "oDark": 2, - "invincible": 2, - "sDark": 1, - "oTemple": 2, - "cityOfGold": 1, - "sTemple": 2, - "lake": 1, - "i*16": 8, - "j*16": 6, - "oLush": 2, - "obj.sprite_index": 4, - "sLush": 2, - "obj.invincible": 3, - "oBrick": 1, - "sBrick": 1, - "global.cityOfGold": 2, - "*16": 2, - "//instance_create": 2, - "oSpikes": 1, - "background_index": 1, - "bgTemple": 1, - "global.temp1": 1, - "global.gameStart": 3, - "scrLevelGen": 1, - "global.cemetary": 3, - "rand": 10, - "global.probCemetary": 1, - "oRoom": 1, - "scrRoomGen": 1, - "global.blackMarket": 3, - "scrRoomGenMarket": 1, - "scrRoomGen2": 1, - "global.yetiLair": 2, - "scrRoomGenYeti": 1, - "scrRoomGen3": 1, - "scrRoomGen4": 1, - "scrRoomGen5": 1, - "global.darkLevel": 4, - "global.noDarkLevel": 1, - "global.probDarkLevel": 1, - "oPlayer1.x": 2, - "oPlayer1.y": 2, - "oFlare": 1, - "global.genUdjatEye": 4, - "global.madeUdjatEye": 1, - "global.genMarketEntrance": 4, - "global.madeMarketEntrance": 1, - "////////////////////////////": 2, - "global.temp2": 1, - "isRoom": 3, - "scrEntityGen": 1, - "oEntrance": 1, - "global.customLevel": 1, - "oEntrance.x": 1, - "oEntrance.y": 1, - "global.snakePit": 1, - "global.alienCraft": 1, - "global.sacrificePit": 1, - "oPlayer1": 1, - "scrSetupWalls": 3, - "global.graphicsHigh": 1, - "tile_add": 4, - "bgExtrasLush": 1, - "*rand": 12, - "bgExtrasIce": 1, - "bgExtrasTemple": 1, - "bgExtras": 1, - "global.murderer": 1, - "global.thiefLevel": 1, - "isRealLevel": 1, - "oExit": 1, - "oShopkeeper": 1, - "obj.status": 1, - "oTreasure": 1, - "oWater": 1, - "sWaterTop": 1, - "sLavaTop": 1, - "scrCheckWaterTop": 1, - "global.temp3": 1 - }, - "Gnuplot": { - "set": 98, - "label": 14, - "at": 14, - "-": 102, - "left": 15, - "norotate": 18, - "back": 23, - "textcolor": 13, - "rgb": 8, - "nopoint": 14, - "offset": 25, - "character": 22, - "lt": 15, - "style": 7, - "line": 4, - "linetype": 11, - "linecolor": 4, - "linewidth": 11, - "pointtype": 4, - "pointsize": 4, - "default": 4, - "pointinterval": 4, - "noxtics": 2, - "noytics": 2, - "title": 13, - "xlabel": 6, - "xrange": 3, - "[": 18, - "]": 18, - "noreverse": 13, - "nowriteback": 12, - "yrange": 4, - "bmargin": 1, - "unset": 2, - "colorbox": 3, - "plot": 3, - "cos": 9, - "(": 52, - "x": 7, - ")": 52, - "ls": 4, - ".2": 1, - ".4": 1, - ".6": 1, - ".8": 1, - "lc": 3, - "boxwidth": 1, - "absolute": 1, - "fill": 1, - "solid": 1, - "border": 3, - "key": 1, - "inside": 1, - "right": 1, - "top": 1, - "vertical": 2, - "Right": 1, - "noenhanced": 1, - "autotitles": 1, - "nobox": 1, - "histogram": 1, - "clustered": 1, - "gap": 1, - "datafile": 1, - "missing": 1, - "data": 1, - "histograms": 1, - "xtics": 3, - "in": 1, - "scale": 1, - "nomirror": 1, - "rotate": 3, - "by": 3, - "autojustify": 1, - "norangelimit": 3, - "font": 8, - "i": 1, - "using": 2, - "xtic": 1, - "ti": 4, - "col": 4, - "u": 25, - "SHEBANG#!gnuplot": 1, - "reset": 1, - "terminal": 1, - "png": 1, - "output": 1, - "ylabel": 5, - "#set": 2, - "xr": 1, - "yr": 1, - "pt": 2, - "notitle": 15, - "dummy": 3, - "v": 31, - "arrow": 7, - "from": 7, - "to": 7, - "head": 7, - "nofilled": 7, - "parametric": 3, - "view": 3, - "samples": 3, - "isosamples": 3, - "hidden3d": 2, - "trianglepattern": 2, - "undefined": 2, - "altdiagonal": 2, - "bentover": 2, - "ztics": 2, - "zlabel": 4, - "zrange": 2, - "sinc": 13, - "sin": 3, - "sqrt": 4, - "u**2": 4, - "+": 6, - "v**2": 4, - "/": 2, - "GPFUN_sinc": 2, - "xx": 2, - "dx": 2, - "x0": 4, - "x1": 4, - "x2": 4, - "x3": 4, - "x4": 4, - "x5": 4, - "x6": 4, - "x7": 4, - "x8": 4, - "x9": 4, - "splot": 3, - "<": 10, - "xmin": 3, - "xmax": 1, - "n": 1, - "zbase": 2, - ".5": 2, - "*n": 1, - "floor": 3, - "u/3": 1, - "*dx": 1, - "%": 2, - "u/3.*dx": 1, - "/0": 1, - "angles": 1, - "degrees": 1, - "mapping": 1, - "spherical": 1, - "noztics": 1, - "urange": 1, - "vrange": 1, - "cblabel": 1, - "cbrange": 1, - "user": 1, - "origin": 1, - "screen": 2, - "size": 1, - "front": 1, - "bdefault": 1, - "*cos": 1, - "*sin": 1, - "with": 3, - "lines": 2, - "labels": 1, - "point": 1, - "lw": 1, - ".1": 1, - "tc": 1, - "pal": 1 - }, - "Gosu": { - "<%!-->": 1, - "defined": 1, - "in": 3, - "Hello": 2, - "gst": 1, - "<": 1, - "%": 2, - "@": 1, - "params": 1, - "(": 53, - "users": 2, - "Collection": 1, - "": 1, - ")": 54, - "<%>": 2, - "for": 2, - "user": 1, - "{": 28, - "user.LastName": 1, - "}": 28, - "user.FirstName": 1, - "user.Department": 1, - "package": 2, - "example": 2, - "enhancement": 1, - "String": 6, - "function": 11, - "toPerson": 1, - "Person": 7, - "var": 10, - "vals": 4, - "this.split": 1, - "return": 4, - "new": 6, - "[": 4, - "]": 4, - "as": 3, - "int": 2, - "Relationship.valueOf": 2, - "hello": 1, - "print": 3, - "uses": 2, - "java.util.*": 1, - "java.io.File": 1, - "class": 1, - "extends": 1, - "Contact": 1, - "implements": 1, - "IEmailable": 2, - "_name": 4, - "_age": 3, - "Integer": 3, - "Age": 1, - "_relationship": 2, - "Relationship": 3, - "readonly": 1, - "RelationshipOfPerson": 1, - "delegate": 1, - "_emailHelper": 2, - "represents": 1, - "enum": 1, - "FRIEND": 1, - "FAMILY": 1, - "BUSINESS_CONTACT": 1, - "static": 7, - "ALL_PEOPLE": 2, - "HashMap": 1, - "": 1, - "construct": 1, - "name": 4, - "age": 4, - "relationship": 2, - "EmailHelper": 1, - "this": 1, - "property": 2, - "get": 1, - "Name": 3, - "set": 1, - "override": 1, - "getEmailName": 1, - "incrementAge": 1, - "+": 2, - "@Deprecated": 1, - "printPersonInfo": 1, - "addPerson": 4, - "p": 5, - "if": 4, - "ALL_PEOPLE.containsKey": 2, - ".Name": 1, - "throw": 1, - "IllegalArgumentException": 1, - "p.Name": 2, - "addAllPeople": 1, - "contacts": 2, - "List": 1, - "": 1, - "contact": 3, - "typeis": 1, - "and": 1, - "not": 1, - "contact.Name": 1, - "getAllPeopleOlderThanNOrderedByName": 1, - "allPeople": 1, - "ALL_PEOPLE.Values": 3, - "allPeople.where": 1, - "-": 3, - "p.Age": 1, - ".orderBy": 1, - "loadPersonFromDB": 1, - "id": 1, - "using": 2, - "conn": 1, - "DBConnectionManager.getConnection": 1, - "stmt": 1, - "conn.prepareStatement": 1, - "stmt.setInt": 1, - "result": 1, - "stmt.executeQuery": 1, - "result.next": 1, - "result.getString": 2, - "result.getInt": 1, - "loadFromFile": 1, - "file": 3, - "File": 2, - "file.eachLine": 1, - "line": 1, - "line.HasContent": 1, - "line.toPerson": 1, - "saveToFile": 1, - "writer": 2, - "FileWriter": 1, - "PersonCSVTemplate.renderToString": 1, - "PersonCSVTemplate.render": 1 - }, - "Grace": { - "method": 10, - "ack": 4, - "(": 215, - "m": 5, - "Number": 4, - "n": 4, - ")": 215, - "-": 16, - "{": 61, - "print": 2, - "if": 23, - "<": 5, - "then": 24, - "+": 29, - "}": 61, - "elseif": 1, - "else": 7, - "import": 7, - "as": 7, - "gtk": 1, - "io": 1, - "collections": 1, - "button_factory": 1, - "dialog_factory": 1, - "highlighter": 1, - "aComp": 1, - "//TODO": 1, - "def": 56, - "window": 2, - "gtk.window": 3, - "gtk.GTK_WINDOW_TOPLEVEL": 3, - "window.title": 1, - "window.set_default_size": 1, - "var": 33, - "popped": 3, - "mBox": 2, - "gtk.box": 6, - "gtk.GTK_ORIENTATION_VERTICAL": 4, - "buttonBox": 2, - "gtk.GTK_ORIENTATION_HORIZONTAL": 5, - "consoleButtons": 2, - "consoleBox": 2, - "editorBox": 2, - "splitPane": 4, - "gtk.paned": 1, - "menuBox": 2, - "runButton": 2, - "button_factory.make": 10, - "clearButton": 2, - "outButton": 2, - "errorButton": 2, - "popButton": 2, - "newButton": 2, - "openButton": 2, - "saveButton": 2, - "saveAsButton": 2, - "closeButton": 2, - "tEdit": 3, - "gtk.text_view": 5, - "tEdit.set_size_request": 1, - "scrolled_main": 4, - "gtk.scrolled_window": 5, - "scrolled_main.set_size_request": 1, - "scrolled_main.add": 1, - "notebook": 8, - "gtk.notebook": 1, - "notebook.scrollable": 1, - "true": 8, - "editor_map": 8, - "collections.map.new": 4, - "editor_map.put": 1, - "scrolled_map": 6, - "scrolled_map.put": 1, - "lighter": 3, - "highlighter.Syntax_Highlighter.new": 1, - "tEdit.buffer.on": 1, - "do": 14, - "lighter.highlightLine": 1, - "completer": 1, - "aComp.Auto_Completer.new": 1, - "deleteCompileFiles": 3, - "page_num": 7, - "cur_scrolled": 9, - "scrolled_map.get": 8, - "filename": 6, - "notebook.get_tab_label_text": 3, - "filename.substringFrom": 1, - "to": 1, - "filename.size": 1, - "//Removes": 1, - ".grace": 1, - "extension": 1, - "io.system": 13, - "currentConsole": 17, - "//": 3, - "Which": 1, - "console": 1, - "is": 1, - "being": 1, - "shown": 1, - "out": 9, - "false": 9, - "outText": 4, - "errorText": 4, - "runButton.on": 1, - "clearConsoles": 4, - "cur_page_num": 15, - "notebook.current_page": 6, - "cur_page": 5, - "editor_map.get": 7, - "cur_page_label": 6, - "sIter": 9, - "gtk.text_iter": 6, - "eIter": 9, - "cur_page.buffer.get_iter_at_offset": 4, - "text": 4, - "cur_page.buffer.get_text": 2, - "file": 2, - "io.open": 4, - "file.write": 2, - "file.close": 2, - "outputFile": 1, - "errorFile": 1, - "outputFile.read": 1, - "errorFile.read": 1, - "switched": 4, - "outText.size": 2, - "&&": 4, - "switch_to_output": 3, - "errorText.size": 2, - "switch_to_errors": 3, - "populateConsoles": 4, - "clearButton.on": 1, - "outButton.on": 1, - "errorButton.on": 1, - "popButton.on": 1, - "popIn": 2, - "popOut": 2, - "newButton.on": 1, - "new_window_class": 1, - "dialog_factory.new.new": 1, - "new_window": 1, - "new_window_class.window": 1, - "new_window.show_all": 1, - "openButton.on": 1, - "open_window_class": 1, - "dialog_factory.open.new": 1, - "open_window": 1, - "open_window_class.window": 1, - "open_window.show_all": 1, - "saveButton.on": 1, - "saveAs_window_class": 2, - "dialog_factory.save.new": 2, - "saveAs_window": 2, - "saveAs_window_class.window": 2, - "saveAs_window.show_all": 2, - "saveAsButton.on": 1, - "closeButton.on": 1, - "num_pages": 3, - "notebook.n_pages": 2, - "e_map": 2, - "s_map": 2, - "x": 21, - "while": 3, - "eValue": 4, - "sValue": 4, - "e_map.put": 2, - "s_map.put": 2, - "notebook.remove_page": 1, - "notebook.show_all": 1, - "outConsole": 4, - "outScroll": 5, - "errorConsole": 4, - "errorScroll": 4, - "errorTag": 3, - "errorConsole.buffer.create_tag": 2, - "createOut": 3, - "outScroll.add": 1, - "outConsole.set_size_request": 5, - "outScroll.set_size_request": 5, - "outConsole.editable": 1, - "outConsole.buffer.set_text": 3, - "createError": 3, - "errorScroll.add": 1, - "errorConsole.set_size_request": 5, - "errorScroll.set_size_request": 5, - "errorConsole.editable": 1, - "errorConsole.buffer.set_text": 3, - "consoleBox.remove": 2, - "This": 2, - "destroys": 2, - "the": 2, - "consoleBox.add": 5, - "popped.show_all": 3, - "window.show_all": 3, - "errorConsole.buffer.get_iter_at_offset": 2, - "errorConsole.buffer.apply_tag": 1, - "popInBlock": 2, - "consoleBox.reparent": 3, - "popButton.label": 3, - "cur_page.set_size_request": 3, - "cur_scrolled.set_size_request": 3, - "popped.visible": 3, - "popped.connect": 1, - "hSeparator1": 2, - "gtk.separator": 2, - "hSeparator2": 2, - "menuBox.add": 4, - "buttonBox.add": 2, - "consoleButtons.add": 4, - "editorBox.add": 2, - "notebook.add": 1, - "notebook.set_tab_label_text": 1, - "splitPane.add1": 1, - "splitPane.add2": 1, - "mBox.add": 3, - "window.add": 1, - "exit": 2, - "gtk.main_quit": 1, - "window.connect": 1, - "gtk.main": 1 - }, - "Grammatical Framework": { - "-": 594, - "(": 256, - "c": 73, - ")": 256, - "Aarne": 13, - "Ranta": 13, - "under": 33, - "LGPL": 33, - "abstract": 1, - "Foods": 34, - "{": 579, - "flags": 32, - "startcat": 1, - "Comment": 31, - ";": 1399, - "cat": 1, - "Item": 31, - "Kind": 33, - "Quality": 34, - "fun": 1, - "Pred": 30, - "This": 29, - "That": 29, - "These": 28, - "Those": 28, - "Mod": 29, - "Wine": 29, - "Cheese": 29, - "Fish": 29, - "Pizza": 28, - "Very": 29, - "Fresh": 29, - "Warm": 29, - "Italian": 29, - "Expensive": 29, - "Delicious": 29, - "Boring": 29, - "}": 580, - "Laurette": 2, - "Pretorius": 2, - "Sr": 2, - "&": 2, - "Jr": 2, - "and": 4, - "Ansu": 2, - "Berg": 2, - "concrete": 33, - "FoodsAfr": 1, - "of": 89, - "open": 23, - "Prelude": 11, - "Predef": 3, - "in": 32, - "coding": 29, - "utf8": 29, - "lincat": 28, - "s": 365, - "Str": 394, - "Number": 207, - "n": 206, - "AdjAP": 10, - "lin": 28, - "item": 36, - "quality": 90, - "item.s": 24, - "+": 480, - "quality.s": 50, - "Predic": 3, - "kind": 115, - "kind.s": 46, - "Sg": 184, - "Pl": 182, - "table": 148, - "Attr": 9, - "declNoun_e": 2, - "declNoun_aa": 2, - "declNoun_ss": 2, - "declNoun_s": 2, - "veryAdj": 2, - "regAdj": 61, - "smartAdj_e": 4, - "param": 22, - "|": 122, - "oper": 29, - "Noun": 9, - "operations": 2, - "wyn": 1, - "kaas": 1, - "vis": 1, - "pizza": 1, - "x": 74, - "let": 8, - "v": 6, - "tk": 1, - "last": 3, - "Adjective": 9, - "mkAdj": 27, - "y": 3, - "declAdj_e": 2, - "declAdj_g": 2, - "w": 15, - "init": 4, - "declAdj_oog": 2, - "i": 2, - "a": 57, - "x.s": 8, - "case": 44, - "_": 68, - "FoodsAmh": 1, - "Krasimir": 1, - "Angelov": 1, - "FoodsBul": 1, - "Gender": 94, - "Masc": 67, - "Fem": 65, - "Neutr": 21, - "Agr": 3, - "ASg": 23, - "APl": 11, - "g": 132, - "qual": 8, - "item.a": 2, - "qual.s": 8, - "kind.g": 38, - "#": 14, - "path": 14, - ".": 13, - "present": 7, - "Jordi": 2, - "Saludes": 2, - "FoodsCat": 1, - "FoodsI": 6, - "with": 5, - "Syntax": 7, - "SyntaxCat": 2, - "LexFoods": 12, - "LexFoodsCat": 2, - "FoodsChi": 1, - "p": 11, - "quality.p": 2, - "kind.c": 11, - "geKind": 5, - "longQuality": 8, - "mkKind": 2, - "Katerina": 2, - "Bohmova": 2, - "FoodsCze": 1, - "ResCze": 2, - "NounPhrase": 3, - "copula": 33, - "item.n": 29, - "item.g": 12, - "det": 86, - "noun": 51, - "regnfAdj": 2, - "Femke": 1, - "Johansson": 1, - "FoodsDut": 1, - "AForm": 4, - "APred": 8, - "AAttr": 3, - "regNoun": 38, - "f": 16, - "a.s": 8, - "regadj": 6, - "adj": 38, - "noun.s": 7, - "man": 10, - "men": 10, - "wijn": 3, - "koud": 3, - "duur": 2, - "dure": 2, - "FoodsEng": 1, - "language": 2, - "en_US": 1, - "car": 6, - "cold": 4, - "Julia": 1, - "Hammar": 1, - "FoodsEpo": 1, - "SS": 6, - "ss": 13, - "d": 6, - "cn": 11, - "cn.s": 8, - "vino": 3, - "nova": 3, - "FoodsFin": 1, - "SyntaxFin": 2, - "LexFoodsFin": 2, - "../foods": 1, - "FoodsFre": 1, - "SyntaxFre": 1, - "ParadigmsFre": 1, - "Utt": 4, - "NP": 4, - "CN": 4, - "AP": 4, - "mkUtt": 4, - "mkCl": 4, - "mkNP": 16, - "this_QuantSg": 2, - "that_QuantSg": 2, - "these_QuantPl": 2, - "those_QuantPl": 2, - "mkCN": 20, - "mkAP": 28, - "very_AdA": 4, - "mkN": 46, - "masculine": 4, - "feminine": 2, - "mkA": 47, - "FoodsGer": 1, - "SyntaxGer": 2, - "LexFoodsGer": 2, - "alltenses": 3, - "Dana": 1, - "Dannells": 1, - "Licensed": 1, - "FoodsHeb": 2, - "Species": 8, - "mod": 7, - "Modified": 5, - "sp": 11, - "Indef": 6, - "Def": 21, - "T": 2, - "regAdj2": 3, - "F": 2, - "Type": 9, - "Adj": 4, - "m": 9, - "cn.mod": 2, - "cn.g": 10, - "gvina": 6, - "hagvina": 3, - "gvinot": 6, - "hagvinot": 3, - "defH": 7, - "replaceLastLetter": 7, - "adjective": 22, - "tov": 6, - "tova": 3, - "tovim": 3, - "tovot": 3, - "to": 6, - "c@": 3, - "italki": 3, - "italk": 4, - "Vikash": 1, - "Rauniyar": 1, - "FoodsHin": 2, - "regN": 15, - "lark": 8, - "ms": 4, - "mp": 4, - "acch": 6, - "incomplete": 1, - "this_Det": 2, - "that_Det": 2, - "these_Det": 2, - "those_Det": 2, - "wine_N": 7, - "pizza_N": 7, - "cheese_N": 7, - "fish_N": 8, - "fresh_A": 7, - "warm_A": 8, - "italian_A": 7, - "expensive_A": 7, - "delicious_A": 7, - "boring_A": 7, - "prelude": 2, - "Martha": 1, - "Dis": 1, - "Brandt": 1, - "FoodsIce": 1, - "Defin": 9, - "Ind": 14, - "the": 7, - "word": 3, - "is": 6, - "more": 1, - "commonly": 1, - "used": 2, - "Iceland": 1, - "but": 1, - "Icelandic": 1, - "for": 6, - "it": 2, - "defOrInd": 2, - "order": 1, - "given": 1, - "forms": 2, - "mSg": 1, - "fSg": 1, - "nSg": 1, - "mPl": 1, - "fPl": 1, - "nPl": 1, - "mSgDef": 1, - "f/nSgDef": 1, - "_PlDef": 1, - "masc": 3, - "fem": 2, - "neutr": 2, - "x1": 3, - "x9": 1, - "ferskur": 5, - "fersk": 11, - "ferskt": 2, - "ferskir": 2, - "ferskar": 2, - "fersk_pl": 2, - "ferski": 2, - "ferska": 2, - "fersku": 2, - "t": 28, - "": 1, - "<": 10, - "Predef.tk": 2, - "FoodsIta": 1, - "SyntaxIta": 2, - "LexFoodsIta": 2, - "../lib/src/prelude": 1, - "Zofia": 1, - "Stankiewicz": 1, - "FoodsJpn": 1, - "Style": 3, - "AdjUse": 4, - "AdjType": 4, - "quality.t": 3, - "IAdj": 4, - "Plain": 3, - "Polite": 4, - "NaAdj": 4, - "na": 1, - "adjectives": 2, - "have": 2, - "different": 1, - "as": 2, - "attributes": 1, - "predicates": 2, - "phrase": 1, - "types": 1, - "can": 1, - "form": 4, - "without": 1, - "cannot": 1, - "sakana": 6, - "chosenna": 2, - "chosen": 2, - "akai": 2, - "Inese": 1, - "Bernsone": 1, - "FoodsLav": 1, - "Q": 5, - "Q1": 5, - "q": 10, - "spec": 2, - "Q2": 3, - "specAdj": 2, - "skaists": 5, - "skaista": 2, - "skaisti": 2, - "skaistas": 2, - "skaistais": 2, - "skaistaa": 2, - "skaistie": 2, - "skaistaas": 2, - "skaist": 8, - "John": 1, - "J.": 1, - "Camilleri": 1, - "FoodsMlt": 1, - "uniAdj": 2, - "Create": 6, - "an": 2, - "full": 1, - "function": 1, - "Params": 4, - "Sing": 4, - "Plural": 2, - "iswed": 2, - "sewda": 2, - "suwed": 3, - "regular": 2, - "Param": 2, - "frisk": 4, - "eg": 1, - "tal": 1, - "buzz": 1, - "uni": 4, - "Singular": 1, - "inherent": 1, - "ktieb": 2, - "kotba": 2, - "Copula": 1, - "linking": 1, - "verb": 1, - "article": 3, - "taking": 1, - "into": 1, - "account": 1, - "first": 1, - "letter": 1, - "next": 1, - "pre": 1, - "cons@": 1, - "cons": 1, - "determinant": 1, - "Sg/Pl": 1, - "string": 1, - "default": 1, - "gender": 2, - "number": 2, - "/GF/lib/src/prelude": 1, - "Nyamsuren": 1, - "Erdenebadrakh": 1, - "FoodsMon": 1, - "prefixSS": 1, - "Dinesh": 1, - "Simkhada": 1, - "FoodsNep": 1, - "adjPl": 2, - "bor": 2, - "FoodsOri": 1, - "FoodsPes": 1, - "optimize": 1, - "noexpand": 1, - "Add": 8, - "prep": 11, - "Indep": 4, - "kind.prep": 1, - "quality.prep": 1, - "at": 3, - "a.prep": 1, - "must": 1, - "be": 1, - "written": 1, - "x4": 2, - "pytzA": 3, - "pytzAy": 1, - "pytzAhA": 3, - "pr": 4, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "mrd": 8, - "tAzh": 8, - "tAzhy": 2, - "Rami": 1, - "Shashati": 1, - "FoodsPor": 1, - "mkAdjReg": 7, - "QualityT": 5, - "bonito": 2, - "bonita": 2, - "bonitos": 2, - "bonitas": 2, - "pattern": 1, - "adjSozinho": 2, - "sozinho": 3, - "sozinh": 4, - "independent": 1, - "adjUtil": 2, - "util": 3, - "uteis": 3, - "smart": 1, - "paradigm": 1, - "adjcetives": 1, - "ItemT": 2, - "KindT": 4, - "num": 6, - "noun.g": 3, - "animal": 2, - "animais": 2, - "gen": 4, - "carro": 3, - "Ramona": 1, - "Enache": 1, - "FoodsRon": 1, - "NGender": 6, - "NMasc": 2, - "NFem": 3, - "NNeut": 2, - "mkTab": 5, - "mkNoun": 5, - "getAgrGender": 3, - "acesta": 2, - "aceasta": 2, - "gg": 3, - "det.s": 1, - "peste": 2, - "pesti": 2, - "scump": 2, - "scumpa": 2, - "scumpi": 2, - "scumpe": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "ng": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "FoodsSpa": 1, - "SyntaxSpa": 1, - "StructuralSpa": 1, - "ParadigmsSpa": 1, - "FoodsSwe": 1, - "SyntaxSwe": 2, - "LexFoodsSwe": 2, - "**": 1, - "sv_SE": 1, - "FoodsTha": 1, - "SyntaxTha": 1, - "LexiconTha": 1, - "ParadigmsTha": 1, - "R": 4, - "ResTha": 1, - "R.thword": 4, - "FoodsTsn": 1, - "NounClass": 28, - "r": 9, - "b": 9, - "Bool": 5, - "p_form": 18, - "TType": 16, - "mkPredDescrCop": 2, - "item.c": 1, - "quality.p_form": 1, - "kind.w": 4, - "mkDemPron1": 3, - "kind.q": 4, - "mkDemPron2": 3, - "mkMod": 2, - "Lexicon": 1, - "mkNounNC14_6": 2, - "mkNounNC9_10": 4, - "smartVery": 2, - "mkVarAdj": 2, - "mkOrdAdj": 4, - "mkPerAdj": 2, - "mkVerbRel": 2, - "NC9_10": 14, - "NC14_6": 14, - "P": 4, - "V": 4, - "ModV": 4, - "y.b": 1, - "True": 3, - "y.w": 2, - "y.r": 2, - "y.c": 14, - "y.q": 4, - "smartQualRelPart": 5, - "x.t": 10, - "smartDescrCop": 5, - "False": 3, - "mkVeryAdj": 2, - "x.p_form": 2, - "mkVeryVerb": 3, - "mkQualRelPart_PName": 2, - "mkQualRelPart": 2, - "mkDescrCop_PName": 2, - "mkDescrCop": 2, - "FoodsTur": 1, - "Case": 10, - "softness": 4, - "Softness": 5, - "h": 4, - "Harmony": 5, - "Reason": 1, - "excluding": 1, - "plural": 3, - "In": 1, - "Turkish": 1, - "if": 1, - "subject": 1, - "not": 2, - "human": 2, - "being": 1, - "then": 1, - "singular": 1, - "regardless": 1, - "subject.": 1, - "Since": 1, - "all": 1, - "possible": 1, - "subjects": 1, - "are": 1, - "non": 1, - "do": 1, - "need": 1, - "form.": 1, - "quality.softness": 1, - "quality.h": 1, - "quality.c": 1, - "Nom": 9, - "Gen": 5, - "a.c": 1, - "a.softness": 1, - "a.h": 1, - "I_Har": 4, - "Ih_Har": 4, - "U_Har": 4, - "Uh_Har": 4, - "Ih": 1, - "Uh": 1, - "Soft": 3, - "Hard": 3, - "overload": 1, - "mkn": 1, - "peynir": 2, - "peynirler": 2, - "[": 2, - "]": 2, - "sarap": 2, - "saraplar": 2, - "sarabi": 2, - "saraplari": 2, - "italyan": 4, - "ca": 2, - "getSoftness": 2, - "getHarmony": 2, - "See": 1, - "comment": 1, - "lines": 1, - "excluded": 1, - "copula.": 1, - "base": 4, - "*": 1, - "Shafqat": 1, - "Virk": 1, - "FoodsUrd": 1, - "coupla": 2, - "interface": 1, - "N": 4, - "A": 6, - "instance": 5, - "ParadigmsCat": 1, - "M": 1, - "MorphoCat": 1, - "M.Masc": 2, - "ParadigmsFin": 1, - "ParadigmsGer": 1, - "ParadigmsIta": 1, - "ParadigmsSwe": 1, - "resource": 1, - "ne": 2, - "muz": 2, - "muzi": 2, - "msg": 3, - "fsg": 3, - "nsg": 3, - "mpl": 3, - "fpl": 3, - "npl": 3, - "mlad": 7, - "vynikajici": 7 - }, - "Groovy": { - "task": 1, - "echoDirListViaAntBuilder": 1, - "(": 7, - ")": 7, - "{": 9, - "description": 1, - "//Docs": 1, - "http": 1, - "//ant.apache.org/manual/Types/fileset.html": 1, - "//Echo": 1, - "the": 3, - "Gradle": 1, - "project": 1, - "name": 1, - "via": 1, - "ant": 1, - "echo": 1, - "plugin": 1, - "ant.echo": 3, - "message": 1, - "project.name": 1, - "path": 2, - "//Gather": 1, - "list": 1, - "of": 1, - "files": 1, - "in": 1, - "a": 1, - "subdirectory": 1, - "ant.fileScanner": 1, - "fileset": 1, - "dir": 1, - "}": 9, - ".each": 1, - "//Print": 1, - "each": 1, - "file": 1, - "to": 1, - "screen": 1, - "with": 1, - "CWD": 1, - "projectDir": 1, - "removed.": 1, - "println": 3, - "it.toString": 1, - "-": 1, - "SHEBANG#!groovy": 2, - "html": 3, - "head": 2, - "component": 1, - "title": 2, - "body": 1, - "p": 1 - }, - "Groovy Server Pages": { - "": 4, - "": 4, - "": 4, - "http": 3, - "equiv=": 3, - "content=": 4, - "": 4, - "Testing": 3, - "with": 3, - "SiteMesh": 2, - "and": 2, - "Resources": 2, - "": 4, - "name=": 1, - "": 2, - "module=": 2, - "": 4, - "": 4, - "": 4, - "": 4, - "<%@>": 1, - "page": 2, - "contentType=": 1, - "Using": 1, - "directive": 1, - "tag": 1, - "

    ": 2, - "Print": 1, - "{": 1, - "example": 1, - "}": 1 - }, - "HTML": { - "": 2, - "HTML": 2, - "PUBLIC": 2, - "W3C": 2, - "DTD": 3, - "4": 1, - "0": 2, - "Frameset": 1, - "EN": 2, - "http": 3, - "www": 2, - "w3": 2, - "org": 2, - "TR": 2, - "REC": 1, - "html40": 1, - "frameset": 1, - "dtd": 2, - "": 2, - "": 2, - "Common_meta": 1, - "(": 14, - ")": 14, - "": 2, - "Android": 5, - "API": 7, - "Differences": 2, - "Report": 2, - "": 2, - "": 2, - "
    ": 10, - "class=": 22, - "Header": 1, - "

    ": 1, - "

    ": 1, - "

    ": 3, - "This": 1, - "document": 1, - "details": 1, - "the": 11, - "changes": 2, - "in": 4, - "framework": 2, - "API.": 3, - "It": 2, - "shows": 1, - "additions": 1, - "modifications": 1, - "and": 5, - "removals": 2, - "for": 2, - "packages": 1, - "classes": 1, - "methods": 1, - "fields.": 1, - "Each": 1, - "reference": 1, - "to": 3, - "an": 3, - "change": 2, - "includes": 1, - "a": 4, - "brief": 1, - "description": 1, - "of": 5, - "explanation": 1, - "suggested": 1, - "workaround": 1, - "where": 1, - "available.": 1, - "

    ": 3, - "The": 2, - "differences": 2, - "described": 1, - "this": 2, - "report": 1, - "are": 3, - "based": 1, - "comparison": 1, - "APIs": 1, - "whose": 1, - "versions": 1, - "specified": 1, - "upper": 1, - "-": 1, - "right": 1, - "corner": 1, - "page.": 1, - "compares": 1, - "newer": 1, - "older": 2, - "version": 1, - "noting": 1, - "any": 1, - "relative": 1, - "So": 1, - "example": 1, - "indicated": 1, - "no": 1, - "longer": 1, - "present": 1, - "For": 1, - "more": 1, - "information": 1, - "about": 1, - "SDK": 1, - "see": 1, - "": 8, - "href=": 9, - "target=": 3, - "product": 1, - "site": 1, - "": 8, - ".": 1, - "if": 4, - "no_delta": 1, - "

    ": 1, - "Congratulation": 1, - "

    ": 1, - "No": 1, - "were": 1, - "detected": 1, - "between": 1, - "two": 1, - "provided": 1, - "APIs.": 1, - "endif": 4, - "removed_packages": 2, - "Table": 3, - "name": 3, - "rows": 3, - "{": 3, - "it.from": 1, - "ModelElementRow": 1, - "}": 3, - "
    ": 3, - "added_packages": 2, - "it.to": 2, - "PackageAddedLink": 1, - "SimpleTableRow": 2, - "changed_packages": 2, - "PackageChangedLink": 1, - "
    ": 11, - "": 2, - "": 2, - "html": 1, - "XHTML": 1, - "1": 1, - "Transitional": 1, - "xhtml1": 2, - "transitional": 1, - "xmlns=": 1, - "": 1, - "equiv=": 1, - "content=": 1, - "Related": 2, - "Pages": 2, - "": 1, - "rel=": 1, - "type=": 1, - "": 1, - "Main": 1, - "Page": 1, - "&": 3, - "middot": 3, - ";": 3, - "Class": 2, - "Overview": 2, - "Hierarchy": 1, - "All": 1, - "Classes": 1, - "Here": 1, - "is": 1, - "list": 1, - "all": 1, - "related": 1, - "documentation": 1, - "pages": 1, - "": 1, - "": 2, - "id=": 2, - "": 4, - "": 2, - "16": 1, - "Layout": 1, - "System": 1, - "
    ": 4, - "": 2, - "src=": 2, - "alt=": 2, - "width=": 1, - "height=": 2, - "
    ": 1, - "Generated": 1, - "with": 1, - "Doxygen": 1 - }, - "HTML+ERB": { - "<%>": 12, - "if": 3, - "Spree": 4, - "Config": 4, - "enable_fishbowl": 1, - "
    ": 23, - "class=": 24, - "id=": 1, - "
    ": 1, - "": 1, - "align=": 1, - "<%=>": 12, - "t": 4, - "fishbowl_settings": 1, - "": 1, - "fishbowl_options": 1, - "each": 1, - "do": 2, - "key": 5, - "label_tag": 2, - "to_s": 2, - "gsub": 1, - "fishbowl_": 1, - "to_sym": 1, - "tag": 2, - "br": 2, - "text_field_tag": 1, - "preferences": 4, - "size": 1, - "class": 2, - "}": 3, - ")": 4, - "%": 2, - "
    ": 23, - "end": 5, - "hidden_field_tag": 1, - "fishbowl_always_fetch_current_inventory": 3, - "0": 1, - "check_box_tag": 1, - "1": 1, - "always_fetch_current_inventory": 1, - "location_groups": 2, - "empty": 1, - "fishbowl_location_group": 3, - "location_group": 1, - "select": 1, - "selected": 1, - "[": 2, - "]": 2, - "{": 1, - "": 1, - "": 1, - "provide": 1, - "title": 1, - "header": 2, - "present": 1, - "users": 3, - "user_presenter": 1, - "

    ": 1, - "

    ": 1, - "will_paginate": 2, - "Name": 1, - "Email": 1, - "Chords": 1, - "Keys": 1, - "Tunings": 1, - "Credits": 1, - "Prem": 1, - "Since": 1, - "No": 1, - "Users": 1, - "else": 1, - "render": 1 - }, - "Haml": { - "/": 1, - "replace": 1, - ".pull": 1, - "-": 16, - "right": 1, - ".btn": 2, - "group": 2, - "link_to": 4, - "page.url": 1, - "target": 1, - "title": 5, - "t": 5, - "(": 10, - ")": 10, - "class": 4, - "do": 4, - "%": 7, - "i.icon": 5, - "picture.row": 1, - "black": 1, - "refinery.edit_admin_page_path": 1, - "page.nested_url": 2, - "switch_locale": 1, - "page.translations.first.locale": 1, - "unless": 1, - "page.translated_to_default_locale": 1, - "scope": 4, - "edit.row": 1, - "blue": 1, - "if": 1, - "page.deletable": 1, - "refinery.admin_page_path": 1, - "methode": 1, - "delete": 1, - "data": 1, - "{": 1, - "confirm": 1, - "page_title_with_translations": 1, - "page": 1, - "}": 1, - "trash.row": 1, - "red": 1, - "else": 1, - "button.btn.btn": 1, - "xs.btn": 1, - "default.disabled": 1, - "trash": 1, - "refinery.new_admin_page_path": 1, - "parent_id": 1, - "page.id": 1, - "plus.row": 1, - "green": 1, - "p": 1, - "Hello": 1, - "World": 1 - }, - "Handlebars": { - "
    ": 5, - "class=": 5, - "

    ": 3, - "{": 16, - "title": 1, - "}": 16, - "

    ": 3, - "body": 3, - "
    ": 5, - "By": 2, - "fullName": 2, - "author": 2, - "Comments": 1, - "#each": 1, - "comments": 1, - "

    ": 1, - "

    ": 1, - "/each": 1 - }, - "Haskell": { - "import": 6, - "Data.Char": 1, - "main": 4, - "IO": 2, - "(": 8, - ")": 8, - "do": 3, - "let": 2, - "hello": 2, - "putStrLn": 3, - "map": 13, - "toUpper": 1, - "module": 2, - "Main": 1, - "where": 4, - "Sudoku": 9, - "Data.Maybe": 2, - "sudoku": 36, - "[": 4, - "]": 3, - "pPrint": 5, - "+": 2, - "fromMaybe": 1, - "solve": 5, - "isSolved": 4, - "Data.List": 1, - "Data.List.Split": 1, - "type": 1, - "Int": 1, - "-": 3, - "Maybe": 1, - "|": 8, - "Just": 1, - "otherwise": 2, - "index": 27, - "<": 1, - "elemIndex": 1, - "sudokus": 2, - "nextTest": 5, - "i": 7, - "<->": 1, - "1": 2, - "9": 7, - "checkRow": 2, - "checkColumn": 2, - "checkBox": 2, - "listToMaybe": 1, - "mapMaybe": 1, - "take": 1, - "drop": 1, - "length": 12, - "getRow": 3, - "nub": 6, - "getColumn": 3, - "getBox": 3, - "filter": 3, - "0": 3, - "chunksOf": 10, - "quot": 3, - "transpose": 4, - "mod": 2, - "concat": 2, - "concatMap": 2, - "3": 4, - "27": 1, - "Bool": 1, - "product": 1, - "False": 4, - ".": 4, - "sudokuRows": 4, - "/": 3, - "sudokuColumns": 3, - "sudokuBoxes": 3, - "True": 1, - "String": 1, - "intercalate": 2, - "show": 1 - }, - "Hy": { - ";": 4, - "Fibonacci": 1, - "example": 2, - "in": 2, - "Hy.": 2, - "(": 28, - "defn": 2, - "fib": 4, - "[": 10, - "n": 5, - "]": 10, - "if": 2, - "<": 1, - ")": 28, - "+": 1, - "-": 10, - "__name__": 1, - "for": 2, - "x": 3, - "print": 1, - "The": 1, - "concurrent.futures": 2, - "import": 1, - "ThreadPoolExecutor": 2, - "as": 3, - "completed": 2, - "random": 1, - "randint": 2, - "sh": 1, - "sleep": 2, - "task": 2, - "to": 2, - "do": 2, - "with": 1, - "executor": 2, - "setv": 1, - "jobs": 2, - "list": 1, - "comp": 1, - ".submit": 1, - "range": 1, - "future": 2, - ".result": 1 - }, - "IDL": { - ";": 59, - "docformat": 3, - "+": 8, - "Inverse": 1, - "hyperbolic": 2, - "cosine.": 1, - "Uses": 1, - "the": 7, - "formula": 1, - "text": 1, - "{": 3, - "acosh": 1, - "}": 3, - "(": 26, - "z": 9, - ")": 26, - "ln": 1, - "sqrt": 4, - "-": 14, - "Examples": 2, - "The": 1, - "arc": 1, - "sine": 1, - "function": 4, - "looks": 1, - "like": 2, - "IDL": 5, - "x": 8, - "*": 2, - "findgen": 1, - "/": 1, - "plot": 1, - "mg_acosh": 2, - "xstyle": 1, - "This": 1, - "should": 1, - "look": 1, - "..": 1, - "image": 1, - "acosh.png": 1, - "Returns": 3, - "float": 1, - "double": 2, - "complex": 2, - "or": 1, - "depending": 1, - "on": 1, - "input": 2, - "Params": 3, - "in": 4, - "required": 4, - "type": 5, - "numeric": 1, - "compile_opt": 3, - "strictarr": 3, - "return": 5, - "alog": 1, - "end": 5, - "MODULE": 1, - "mg_analysis": 1, - "DESCRIPTION": 1, - "Tools": 1, - "for": 2, - "analysis": 1, - "VERSION": 1, - "SOURCE": 1, - "mgalloy": 1, - "BUILD_DATE": 1, - "January": 1, - "FUNCTION": 2, - "MG_ARRAY_EQUAL": 1, - "KEYWORDS": 1, - "MG_TOTAL": 1, - "Find": 1, - "greatest": 1, - "common": 1, - "denominator": 1, - "GCD": 1, - "two": 1, - "positive": 2, - "integers.": 1, - "integer": 5, - "a": 4, - "first": 1, - "b": 4, - "second": 1, - "mg_gcd": 2, - "on_error": 1, - "if": 5, - "n_params": 1, - "ne": 1, - "then": 5, - "message": 2, - "mg_isinteger": 2, - "||": 1, - "begin": 2, - "endif": 2, - "_a": 3, - "abs": 2, - "_b": 3, - "minArg": 5, - "<": 1, - "maxArg": 3, - "eq": 2, - "remainder": 3, - "mod": 1, - "Truncate": 1, - "argument": 2, - "towards": 1, - "i.e.": 1, - "takes": 1, - "FLOOR": 1, - "of": 4, - "values": 2, - "and": 1, - "CEIL": 1, - "negative": 1, - "values.": 1, - "Try": 1, - "main": 2, - "level": 2, - "program": 2, - "at": 1, - "this": 1, - "file.": 1, - "It": 1, - "does": 1, - "print": 4, - "mg_trunc": 3, - "[": 6, - "]": 6, - "floor": 2, - "ceil": 2, - "array": 2, - "same": 1, - "as": 1, - "float/double": 1, - "containing": 1, - "to": 1, - "truncate": 1, - "result": 3, - "posInd": 3, - "where": 1, - "gt": 2, - "nposInd": 2, - "L": 1, - "example": 1 - }, - "IGOR Pro": { - "#pragma": 2, - "rtGlobals": 2, - "Function": 6, - "FooBar": 1, - "(": 10, - ")": 10, - "return": 7, - "End": 7, - "FooBarSubType": 1, - "ButtonControl": 1, - "Function/D": 1, - "FooBarVar": 1, - "static": 3, - "FooBarStatic": 1, - "threadsafe": 2, - "FooBarStaticThreadsafe": 1, - "FooBarThread": 1, - "CallOperationsAndBuiltInFuncs": 1, - "string": 4, - "var": 3, - "someDQString": 2, - "Make/N": 1, - "myWave": 2, - "Redimension/N": 1, - "-": 3, - "print": 1, - "strlen": 1, - "StrConstant": 1, - "myConstString": 1, - "constant": 1, - "myConst": 1, - "Structure": 2, - "struct1": 1, - "str": 2, - "variable": 2, - "EndStructure": 2, - "struct2": 1, - "#include": 1, - "#ifdef": 1, - "NOT_DEFINED": 1, - "//": 1, - "conditional": 1, - "compilation": 1, - "#endif": 1 - }, - "INI": { - ";": 1, - "editorconfig.org": 1, - "root": 1, - "true": 3, - "[": 2, - "*": 1, - "]": 2, - "indent_style": 1, - "space": 1, - "indent_size": 1, - "end_of_line": 1, - "lf": 1, - "charset": 1, - "utf": 1, - "-": 1, - "trim_trailing_whitespace": 1, - "insert_final_newline": 1, - "user": 1, - "name": 1, - "Josh": 1, - "Peek": 1, - "email": 1, - "josh@github.com": 1 - }, - "Idris": { - "module": 1, - "Prelude.Char": 1, - "import": 1, - "Builtins": 1, - "isUpper": 4, - "Char": 13, - "-": 8, - "Bool": 8, - "x": 36, - "&&": 3, - "<=>": 3, - "Z": 1, - "isLower": 4, - "z": 1, - "isAlpha": 3, - "||": 9, - "isDigit": 3, - "(": 8, - "9": 1, - "isAlphaNum": 2, - "isSpace": 2, - "isNL": 2, - "toUpper": 3, - "if": 2, - ")": 7, - "then": 2, - "prim__intToChar": 2, - "prim__charToInt": 2, - "else": 2, - "toLower": 2, - "+": 1, - "isHexDigit": 2, - "elem": 1, - "hexChars": 3, - "where": 1, - "List": 1, - "[": 1, - "]": 1 - }, - "Inform 7": { - "by": 3, - "Andrew": 3, - "Plotkin.": 2, - "Include": 1, - "Trivial": 3, - "Extension": 3, - "The": 1, - "Kitchen": 1, - "is": 4, - "a": 2, - "room.": 1, - "[": 1, - "This": 1, - "kitchen": 1, - "modelled": 1, - "after": 1, - "the": 4, - "one": 1, - "in": 2, - "Zork": 1, - "although": 1, - "it": 1, - "lacks": 1, - "detail": 1, - "to": 2, - "establish": 1, - "this": 1, - "player.": 1, - "]": 1, - "A": 3, - "purple": 1, - "cow": 3, - "called": 1, - "Gelett": 2, - "Kitchen.": 1, - "Instead": 1, - "of": 3, - "examining": 1, - "say": 1, - "Version": 1, - "Plotkin": 1, - "begins": 1, - "here.": 2, - "kind": 1, - "animal.": 1, - "can": 1, - "be": 1, - "purple.": 1, - "ends": 1 - }, - "Ioke": { - "SHEBANG#!ioke": 1, - "println": 1 - }, - "Isabelle": { - "theory": 1, - "HelloWorld": 3, - "imports": 1, - "Main": 1, - "begin": 1, - "section": 1, - "{": 5, - "*Playing": 1, - "around": 1, - "with": 2, - "Isabelle*": 1, - "}": 5, - "text": 4, - "*": 4, - "creating": 1, - "a": 2, - "lemma": 2, - "the": 2, - "name": 1, - "hello_world*": 1, - "hello_world": 2, - "by": 9, - "simp": 8, - "thm": 1, - "defining": 1, - "string": 1, - "constant": 1, - "definition": 1, - "where": 1, - "theorem": 2, - "(": 5, - "fact": 1, - "List.rev_rev_ident": 4, - ")": 5, - "*now": 1, - "we": 1, - "delete": 1, - "already": 1, - "proven": 1, - "lema": 1, - "and": 1, - "show": 2, - "it": 2, - "hand*": 1, - "declare": 1, - "[": 1, - "del": 1, - "]": 1, - "hide_fact": 1, - "corollary": 2, - "apply": 1, - "add": 1, - "HelloWorld_def": 1, - "done": 1, - "*does": 1, - "hold": 1, - "in": 1, - "general": 1, - "rev_rev_ident": 2, - "proof": 1, - "induction": 1, - "l": 2, - "case": 3, - "Nil": 1, - "thus": 1, - "next": 1, - "Cons": 1, - "ls": 1, - "assume": 1, - "IH": 2, - "have": 2, - "hence": 1, - "also": 1, - "finally": 1, - "using": 1, - "qed": 1, - "fastforce": 1, - "intro": 1, - "end": 1 - }, - "JSON": { - "{": 73, - "[": 17, - "]": 17, - "}": 73, - "true": 3 - }, - "JSON5": { - "{": 6, - "foo": 1, - "while": 1, - "true": 1, - "this": 1, - "here": 1, - "//": 2, - "inline": 1, - "comment": 1, - "hex": 1, - "xDEADbeef": 1, - "half": 1, - ".5": 1, - "delta": 1, - "+": 1, - "to": 1, - "Infinity": 1, - "and": 1, - "beyond": 1, - "finally": 1, - "oh": 1, - "[": 3, - "]": 3, - "}": 6, - "name": 1, - "version": 1, - "description": 1, - "keywords": 1, - "author": 1, - "contributors": 1, - "main": 1, - "bin": 1, - "dependencies": 1, - "devDependencies": 1, - "mocha": 1, - "scripts": 1, - "build": 1, - "test": 1, - "homepage": 1, - "repository": 1, - "type": 1, - "url": 1 - }, - "JSONLD": { - "{": 7, - "}": 7, - "[": 1, - "null": 2, - "]": 1 - }, - "JSONiq": { - "(": 14, - "Query": 2, - "for": 4, - "returning": 1, - "one": 1, - "database": 2, - "entry": 1, - ")": 14, - "import": 5, - "module": 5, - "namespace": 5, - "req": 6, - ";": 9, - "catalog": 4, - "variable": 4, - "id": 3, - "param": 4, - "-": 11, - "values": 4, - "[": 5, - "]": 5, - "part": 2, - "get": 2, - "data": 4, - "by": 2, - "key": 1, - "searching": 1, - "the": 1, - "keywords": 1, - "index": 3, - "phrase": 2, - "limit": 2, - "integer": 1, - "result": 1, - "at": 1, - "idx": 2, - "in": 1, - "search": 1, - "where": 1, - "le": 1, - "let": 1, - "result.s": 1, - "result.p": 1, - "return": 1, - "{": 2, - "|": 2, - "score": 1, - "result.r": 1, - "}": 2 - }, - "Jade": { - "p.": 1, - "Hello": 1, - "World": 1 - }, - "Java": { - "package": 6, - "clojure.asm": 1, - ";": 891, - "import": 66, - "java.lang.reflect.Constructor": 1, - "java.lang.reflect.Method": 1, - "public": 214, - "class": 12, - "Type": 42, - "{": 434, - "final": 78, - "static": 141, - "int": 62, - "VOID": 5, - "BOOLEAN": 6, - "CHAR": 6, - "BYTE": 6, - "SHORT": 6, - "INT": 6, - "FLOAT": 6, - "LONG": 7, - "DOUBLE": 7, - "ARRAY": 6, - "OBJECT": 7, - "VOID_TYPE": 3, - "new": 131, - "(": 1097, - ")": 1097, - "BOOLEAN_TYPE": 3, - "CHAR_TYPE": 3, - "BYTE_TYPE": 3, - "SHORT_TYPE": 3, - "INT_TYPE": 3, - "FLOAT_TYPE": 3, - "LONG_TYPE": 3, - "DOUBLE_TYPE": 3, - "private": 77, - "sort": 18, - "char": 13, - "[": 54, - "]": 54, - "buf": 43, - "off": 25, - "len": 24, - "this.sort": 2, - "this.len": 2, - "}": 434, - "this.buf": 2, - "this.off": 1, - "getType": 10, - "String": 33, - "typeDescriptor": 1, - "return": 267, - "typeDescriptor.toCharArray": 1, - "Class": 10, - "c": 21, - "if": 116, - "c.isPrimitive": 2, - "Integer.TYPE": 2, - "else": 33, - "Void.TYPE": 3, - "Boolean.TYPE": 2, - "Byte.TYPE": 2, - "Character.TYPE": 2, - "Short.TYPE": 2, - "Double.TYPE": 2, - "Float.TYPE": 2, - "getDescriptor": 15, - "getObjectType": 1, - "name": 10, - "l": 5, - "name.length": 2, - "+": 83, - "name.getChars": 1, - "getArgumentTypes": 2, - "methodDescriptor": 2, - "methodDescriptor.toCharArray": 2, - "size": 16, - "while": 10, - "true": 21, - "car": 18, - "break": 4, - "args": 6, - ".len": 1, - "Method": 3, - "method": 2, - "classes": 2, - "method.getParameterTypes": 1, - "types": 3, - "classes.length": 2, - "for": 16, - "i": 54, - "-": 15, - "getReturnType": 2, - "methodDescriptor.indexOf": 1, - "method.getReturnType": 1, - "switch": 6, - "case": 56, - "//": 16, - "default": 6, - "getSort": 1, - "getDimensions": 3, - "getElementType": 2, - "getClassName": 1, - "StringBuffer": 14, - "b": 7, - ".getClassName": 1, - "b.append": 1, - "b.toString": 1, - ".replace": 2, - "getInternalName": 2, - "buf.toString": 4, - "getMethodDescriptor": 2, - "returnType": 1, - "argumentTypes": 2, - "buf.append": 21, - "<": 13, - "argumentTypes.length": 1, - ".getDescriptor": 1, - "returnType.getDescriptor": 1, - "void": 25, - "c.getName": 1, - "getConstructorDescriptor": 1, - "Constructor": 1, - "parameters": 4, - "c.getParameterTypes": 1, - "parameters.length": 2, - ".toString": 1, - "m": 1, - "m.getParameterTypes": 1, - "m.getReturnType": 1, - "d": 10, - "d.isPrimitive": 1, - "d.isArray": 1, - "d.getComponentType": 1, - "d.getName": 1, - "name.charAt": 1, - "getSize": 1, - "||": 8, - "getOpcode": 1, - "opcode": 17, - "Opcodes.IALOAD": 1, - "Opcodes.IASTORE": 1, - "boolean": 36, - "equals": 2, - "Object": 31, - "o": 12, - "this": 16, - "instanceof": 19, - "false": 12, - "t": 6, - "t.sort": 1, - "Type.OBJECT": 2, - "Type.ARRAY": 2, - "t.len": 1, - "j": 9, - "t.off": 1, - "end": 4, - "t.buf": 1, - "hashCode": 1, - "hc": 4, - "*": 2, - "toString": 1, - "clojure.lang": 1, - "java.lang.ref.Reference": 1, - "java.math.BigInteger": 1, - "java.util.Map": 3, - "java.util.concurrent.ConcurrentHashMap": 1, - "java.lang.ref.SoftReference": 1, - "java.lang.ref.ReferenceQueue": 1, - "Util": 1, - "equiv": 17, - "k1": 40, - "k2": 38, - "null": 80, - "Number": 9, - "&&": 6, - "Numbers.equal": 1, - "IPersistentCollection": 5, - "pcequiv": 2, - "k1.equals": 2, - "long": 5, - "double": 4, - "c1": 2, - "c2": 2, - ".equiv": 2, - "identical": 1, - "classOf": 1, - "x": 8, - "x.getClass": 1, - "compare": 1, - "Numbers.compare": 1, - "Comparable": 1, - ".compareTo": 1, - "hash": 3, - "o.hashCode": 2, - "hasheq": 1, - "Numbers.hasheq": 1, - "IHashEq": 2, - ".hasheq": 1, - "hashCombine": 1, - "seed": 5, - "//a": 1, - "la": 1, - "boost": 1, - "e3779b9": 1, - "<<": 1, - "isPrimitive": 1, - "isInteger": 1, - "Integer": 2, - "Long": 1, - "BigInt": 1, - "BigInteger": 1, - "ret1": 2, - "ret": 4, - "nil": 2, - "ISeq": 2, - "": 1, - "clearCache": 1, - "ReferenceQueue": 1, - "rq": 1, - "ConcurrentHashMap": 1, - "K": 2, - "Reference": 3, - "": 3, - "cache": 1, - "//cleanup": 1, - "any": 1, - "dead": 1, - "entries": 1, - "rq.poll": 2, - "Map.Entry": 1, - "e": 31, - "cache.entrySet": 1, - "val": 3, - "e.getValue": 1, - "val.get": 1, - "cache.remove": 1, - "e.getKey": 1, - "RuntimeException": 5, - "runtimeException": 2, - "s": 10, - "Throwable": 4, - "sneakyThrow": 1, - "throw": 9, - "NullPointerException": 3, - "Util.": 1, - "": 1, - "sneakyThrow0": 2, - "@SuppressWarnings": 1, - "": 1, - "extends": 10, - "throws": 26, - "T": 2, - "nokogiri.internals": 1, - "nokogiri.internals.NokogiriHelpers.getNokogiriClass": 1, - "nokogiri.internals.NokogiriHelpers.isNamespace": 1, - "nokogiri.internals.NokogiriHelpers.stringOrNil": 1, - "nokogiri.HtmlDocument": 1, - "nokogiri.NokogiriService": 1, - "nokogiri.XmlDocument": 1, - "org.apache.xerces.parsers.DOMParser": 1, - "org.apache.xerces.xni.Augmentations": 1, - "org.apache.xerces.xni.QName": 1, - "org.apache.xerces.xni.XMLAttributes": 1, - "org.apache.xerces.xni.XNIException": 1, - "org.apache.xerces.xni.parser.XMLDocumentFilter": 1, - "org.apache.xerces.xni.parser.XMLParserConfiguration": 1, - "org.cyberneko.html.HTMLConfiguration": 1, - "org.cyberneko.html.filters.DefaultFilter": 1, - "org.jruby.Ruby": 2, - "org.jruby.RubyClass": 2, - "org.jruby.runtime.ThreadContext": 1, - "org.jruby.runtime.builtin.IRubyObject": 2, - "org.w3c.dom.Document": 1, - "org.w3c.dom.NamedNodeMap": 1, - "org.w3c.dom.NodeList": 1, - "HtmlDomParserContext": 3, - "XmlDomParserContext": 1, - "Ruby": 43, - "runtime": 88, - "IRubyObject": 35, - "options": 4, - "super": 7, - "encoding": 2, - "@Override": 6, - "protected": 8, - "initErrorHandler": 1, - "options.strict": 1, - "errorHandler": 6, - "NokogiriStrictErrorHandler": 1, - "options.noError": 2, - "options.noWarning": 2, - "NokogiriNonStrictErrorHandler4NekoHtml": 1, - "initParser": 1, - "XMLParserConfiguration": 1, - "config": 2, - "HTMLConfiguration": 1, - "XMLDocumentFilter": 3, - "removeNSAttrsFilter": 2, - "RemoveNSAttrsFilter": 2, - "elementValidityCheckFilter": 3, - "ElementValidityCheckFilter": 3, - "//XMLDocumentFilter": 1, - "filters": 3, - "config.setErrorHandler": 1, - "this.errorHandler": 2, - "parser": 1, - "DOMParser": 1, - "setProperty": 4, - "java_encoding": 2, - "setFeature": 4, - "enableDocumentFragment": 1, - "XmlDocument": 8, - "getNewEmptyDocument": 1, - "ThreadContext": 2, - "context": 8, - "XmlDocument.rbNew": 1, - "getNokogiriClass": 1, - "context.getRuntime": 3, - "wrapDocument": 1, - "RubyClass": 92, - "klazz": 107, - "Document": 2, - "document": 5, - "HtmlDocument": 7, - "htmlDocument": 6, - "NokogiriService.HTML_DOCUMENT_ALLOCATOR.allocate": 1, - "htmlDocument.setDocumentNode": 1, - "ruby_encoding.isNil": 1, - "detected_encoding": 2, - "detected_encoding.isNil": 1, - "ruby_encoding": 3, - "charset": 2, - "tryGetCharsetFromHtml5MetaTag": 2, - "stringOrNil": 1, - "htmlDocument.setEncoding": 1, - "htmlDocument.setParsedEncoding": 1, - ".equalsIgnoreCase": 5, - "document.getDocumentElement": 2, - ".getNodeName": 4, - "NodeList": 2, - "list": 1, - ".getChildNodes": 2, - "list.getLength": 1, - "list.item": 2, - "headers": 1, - "headers.getLength": 1, - "headers.item": 2, - "NamedNodeMap": 1, - "nodeMap": 1, - ".getAttributes": 1, - "k": 5, - "nodeMap.getLength": 1, - "nodeMap.item": 2, - ".getNodeValue": 1, - "DefaultFilter": 2, - "startElement": 2, - "QName": 2, - "element": 3, - "XMLAttributes": 2, - "attrs": 4, - "Augmentations": 2, - "augs": 4, - "XNIException": 2, - "attrs.getLength": 1, - "isNamespace": 1, - "attrs.getQName": 1, - "attrs.removeAttributeAt": 1, - "element.uri": 1, - "super.startElement": 2, - "NokogiriErrorHandler": 2, - "element_names": 3, - "g": 1, - "r": 1, - "w": 1, - "y": 1, - "z": 1, - "isValid": 2, - "testee": 1, - "testee.toCharArray": 1, - "index": 4, - ".length": 1, - "testee.equals": 1, - "name.rawname": 2, - "errorHandler.getErrors": 1, - ".add": 1, - "Exception": 1, - "hudson.model": 1, - "hudson.ExtensionListView": 1, - "hudson.Functions": 1, - "hudson.Platform": 1, - "hudson.PluginManager": 1, - "hudson.cli.declarative.CLIResolver": 1, - "hudson.model.listeners.ItemListener": 1, - "hudson.slaves.ComputerListener": 1, - "hudson.util.CopyOnWriteList": 1, - "hudson.util.FormValidation": 1, - "jenkins.model.Jenkins": 1, - "org.jvnet.hudson.reactor.ReactorException": 1, - "org.kohsuke.stapler.QueryParameter": 1, - "org.kohsuke.stapler.Stapler": 1, - "org.kohsuke.stapler.StaplerRequest": 1, - "org.kohsuke.stapler.StaplerResponse": 1, - "javax.servlet.ServletContext": 1, - "javax.servlet.ServletException": 1, - "java.io.File": 1, - "java.io.IOException": 10, - "java.text.NumberFormat": 1, - "java.text.ParseException": 1, - "java.util.Collections": 2, - "java.util.List": 1, - "hudson.Util.fixEmpty": 1, - "Hudson": 5, - "Jenkins": 2, - "transient": 2, - "CopyOnWriteList": 4, - "": 2, - "itemListeners": 2, - "ExtensionListView.createCopyOnWriteList": 2, - "ItemListener.class": 1, - "": 2, - "computerListeners": 2, - "ComputerListener.class": 1, - "@CLIResolver": 1, - "getInstance": 2, - "Jenkins.getInstance": 2, - "File": 2, - "root": 6, - "ServletContext": 2, - "IOException": 8, - "InterruptedException": 2, - "ReactorException": 2, - "PluginManager": 1, - "pluginManager": 2, - "getJobListeners": 1, - "getComputerListeners": 1, - "Slave": 3, - "getSlave": 1, - "Node": 1, - "n": 3, - "getNode": 1, - "List": 3, - "": 2, - "getSlaves": 1, - "slaves": 3, - "setSlaves": 1, - "setNodes": 1, - "TopLevelItem": 3, - "getJob": 1, - "getItem": 1, - "getJobCaseInsensitive": 1, - "match": 2, - "Functions.toEmailSafeString": 2, - "item": 2, - "getItems": 1, - "item.getName": 1, - "synchronized": 1, - "doQuietDown": 2, - "StaplerResponse": 4, - "rsp": 6, - "ServletException": 3, - ".generateResponse": 2, - "doLogRss": 1, - "StaplerRequest": 4, - "req": 6, - "qs": 3, - "req.getQueryString": 1, - "rsp.sendRedirect2": 1, - "doFieldCheck": 3, - "fixEmpty": 8, - "req.getParameter": 4, - "FormValidation": 2, - "@QueryParameter": 4, - "value": 11, - "type": 3, - "errorText": 3, - "warningText": 3, - "FormValidation.error": 4, - "FormValidation.warning": 1, - "try": 26, - "type.equalsIgnoreCase": 2, - "NumberFormat.getInstance": 2, - ".parse": 2, - ".floatValue": 1, - "<=>": 1, - "0": 1, - "error": 1, - "Messages": 1, - "Hudson_NotAPositiveNumber": 1, - "equalsIgnoreCase": 1, - "number": 1, - "negative": 1, - "NumberFormat": 1, - "parse": 1, - "floatValue": 1, - "Messages.Hudson_NotANegativeNumber": 1, - "catch": 27, - "ParseException": 1, - "Messages.Hudson_NotANumber": 1, - "FormValidation.ok": 1, - "isWindows": 1, - "File.pathSeparatorChar": 1, - "isDarwin": 1, - "Platform.isDarwin": 1, - "adminCheck": 3, - "Stapler.getCurrentRequest": 1, - "Stapler.getCurrentResponse": 1, - "isAdmin": 4, - "rsp.sendError": 1, - "StaplerResponse.SC_FORBIDDEN": 1, - ".getACL": 1, - ".hasPermission": 1, - "ADMINISTER": 1, - "XSTREAM.alias": 1, - "Hudson.class": 1, - "MasterComputer": 1, - "Jenkins.MasterComputer": 1, - "CloudList": 3, - "Jenkins.CloudList": 1, - "h": 2, - "needed": 1, - "XStream": 1, - "deserialization": 1, - "nokogiri": 6, - "java.util.HashMap": 1, - "org.jruby.RubyArray": 1, - "org.jruby.RubyFixnum": 1, - "org.jruby.RubyModule": 1, - "org.jruby.runtime.ObjectAllocator": 1, - "org.jruby.runtime.load.BasicLibraryService": 1, - "NokogiriService": 1, - "implements": 3, - "BasicLibraryService": 1, - "nokogiriClassCacheGvarName": 1, - "Map": 1, - "": 2, - "nokogiriClassCache": 2, - "basicLoad": 1, - "ruby": 25, - "init": 2, - "createNokogiriClassCahce": 2, - "Collections.synchronizedMap": 1, - "HashMap": 1, - "nokogiriClassCache.put": 26, - "ruby.getClassFromPath": 26, - "RubyModule": 18, - "ruby.defineModule": 1, - "xmlModule": 7, - "nokogiri.defineModuleUnder": 3, - "xmlSaxModule": 3, - "xmlModule.defineModuleUnder": 1, - "htmlModule": 5, - "htmlSaxModule": 3, - "htmlModule.defineModuleUnder": 1, - "xsltModule": 3, - "createNokogiriModule": 2, - "createSyntaxErrors": 2, - "xmlNode": 5, - "createXmlModule": 2, - "createHtmlModule": 2, - "createDocuments": 2, - "createSaxModule": 2, - "createXsltModule": 2, - "encHandler": 1, - "nokogiri.defineClassUnder": 2, - "ruby.getObject": 13, - "ENCODING_HANDLER_ALLOCATOR": 2, - "encHandler.defineAnnotatedMethods": 1, - "EncodingHandler.class": 1, - "syntaxError": 2, - "ruby.getStandardError": 2, - ".getAllocator": 1, - "xmlSyntaxError": 4, - "xmlModule.defineClassUnder": 23, - "XML_SYNTAXERROR_ALLOCATOR": 2, - "xmlSyntaxError.defineAnnotatedMethods": 1, - "XmlSyntaxError.class": 1, - "node": 14, - "XML_NODE_ALLOCATOR": 2, - "node.defineAnnotatedMethods": 1, - "XmlNode.class": 1, - "attr": 1, - "XML_ATTR_ALLOCATOR": 2, - "attr.defineAnnotatedMethods": 1, - "XmlAttr.class": 1, - "attrDecl": 1, - "XML_ATTRIBUTE_DECL_ALLOCATOR": 2, - "attrDecl.defineAnnotatedMethods": 1, - "XmlAttributeDecl.class": 1, - "characterData": 3, - "comment": 1, - "XML_COMMENT_ALLOCATOR": 2, - "comment.defineAnnotatedMethods": 1, - "XmlComment.class": 1, - "text": 2, - "XML_TEXT_ALLOCATOR": 2, - "text.defineAnnotatedMethods": 1, - "XmlText.class": 1, - "cdata": 1, - "XML_CDATA_ALLOCATOR": 2, - "cdata.defineAnnotatedMethods": 1, - "XmlCdata.class": 1, - "dtd": 1, - "XML_DTD_ALLOCATOR": 2, - "dtd.defineAnnotatedMethods": 1, - "XmlDtd.class": 1, - "documentFragment": 1, - "XML_DOCUMENT_FRAGMENT_ALLOCATOR": 2, - "documentFragment.defineAnnotatedMethods": 1, - "XmlDocumentFragment.class": 1, - "XML_ELEMENT_ALLOCATOR": 2, - "element.defineAnnotatedMethods": 1, - "XmlElement.class": 1, - "elementContent": 1, - "XML_ELEMENT_CONTENT_ALLOCATOR": 2, - "elementContent.defineAnnotatedMethods": 1, - "XmlElementContent.class": 1, - "elementDecl": 1, - "XML_ELEMENT_DECL_ALLOCATOR": 2, - "elementDecl.defineAnnotatedMethods": 1, - "XmlElementDecl.class": 1, - "entityDecl": 1, - "XML_ENTITY_DECL_ALLOCATOR": 2, - "entityDecl.defineAnnotatedMethods": 1, - "XmlEntityDecl.class": 1, - "entityDecl.defineConstant": 6, - "RubyFixnum.newFixnum": 6, - "XmlEntityDecl.INTERNAL_GENERAL": 1, - "XmlEntityDecl.EXTERNAL_GENERAL_PARSED": 1, - "XmlEntityDecl.EXTERNAL_GENERAL_UNPARSED": 1, - "XmlEntityDecl.INTERNAL_PARAMETER": 1, - "XmlEntityDecl.EXTERNAL_PARAMETER": 1, - "XmlEntityDecl.INTERNAL_PREDEFINED": 1, - "entref": 1, - "XML_ENTITY_REFERENCE_ALLOCATOR": 2, - "entref.defineAnnotatedMethods": 1, - "XmlEntityReference.class": 1, - "namespace": 1, - "XML_NAMESPACE_ALLOCATOR": 2, - "namespace.defineAnnotatedMethods": 1, - "XmlNamespace.class": 1, - "nodeSet": 1, - "XML_NODESET_ALLOCATOR": 2, - "nodeSet.defineAnnotatedMethods": 1, - "XmlNodeSet.class": 1, - "pi": 1, - "XML_PROCESSING_INSTRUCTION_ALLOCATOR": 2, - "pi.defineAnnotatedMethods": 1, - "XmlProcessingInstruction.class": 1, - "reader": 1, - "XML_READER_ALLOCATOR": 2, - "reader.defineAnnotatedMethods": 1, - "XmlReader.class": 1, - "schema": 2, - "XML_SCHEMA_ALLOCATOR": 2, - "schema.defineAnnotatedMethods": 1, - "XmlSchema.class": 1, - "relaxng": 1, - "XML_RELAXNG_ALLOCATOR": 2, - "relaxng.defineAnnotatedMethods": 1, - "XmlRelaxng.class": 1, - "xpathContext": 1, - "XML_XPATHCONTEXT_ALLOCATOR": 2, - "xpathContext.defineAnnotatedMethods": 1, - "XmlXpathContext.class": 1, - "htmlElemDesc": 1, - "htmlModule.defineClassUnder": 3, - "HTML_ELEMENT_DESCRIPTION_ALLOCATOR": 2, - "htmlElemDesc.defineAnnotatedMethods": 1, - "HtmlElementDescription.class": 1, - "htmlEntityLookup": 1, - "HTML_ENTITY_LOOKUP_ALLOCATOR": 2, - "htmlEntityLookup.defineAnnotatedMethods": 1, - "HtmlEntityLookup.class": 1, - "xmlDocument": 5, - "XML_DOCUMENT_ALLOCATOR": 2, - "xmlDocument.defineAnnotatedMethods": 1, - "XmlDocument.class": 1, - "//RubyModule": 1, - "htmlDoc": 1, - "html.defineOrGetClassUnder": 1, - "HTML_DOCUMENT_ALLOCATOR": 2, - "htmlDocument.defineAnnotatedMethods": 1, - "HtmlDocument.class": 1, - "xmlSaxParserContext": 5, - "xmlSaxModule.defineClassUnder": 2, - "XML_SAXPARSER_CONTEXT_ALLOCATOR": 2, - "xmlSaxParserContext.defineAnnotatedMethods": 1, - "XmlSaxParserContext.class": 1, - "xmlSaxPushParser": 1, - "XML_SAXPUSHPARSER_ALLOCATOR": 2, - "xmlSaxPushParser.defineAnnotatedMethods": 1, - "XmlSaxPushParser.class": 1, - "htmlSaxParserContext": 4, - "htmlSaxModule.defineClassUnder": 1, - "HTML_SAXPARSER_CONTEXT_ALLOCATOR": 2, - "htmlSaxParserContext.defineAnnotatedMethods": 1, - "HtmlSaxParserContext.class": 1, - "stylesheet": 1, - "xsltModule.defineClassUnder": 1, - "XSLT_STYLESHEET_ALLOCATOR": 2, - "stylesheet.defineAnnotatedMethods": 1, - "XsltStylesheet.class": 2, - "xsltModule.defineAnnotatedMethod": 1, - "ObjectAllocator": 60, - "allocate": 30, - "EncodingHandler": 1, - "clone": 47, - "htmlDocument.clone": 1, - "clone.setMetaClass": 23, - "CloneNotSupportedException": 23, - "HtmlSaxParserContext": 5, - "htmlSaxParserContext.clone": 1, - "HtmlElementDescription": 1, - "HtmlEntityLookup": 1, - "XmlAttr": 5, - "xmlAttr": 3, - "xmlAttr.clone": 1, - "XmlCdata": 5, - "xmlCdata": 3, - "xmlCdata.clone": 1, - "XmlComment": 5, - "xmlComment": 3, - "xmlComment.clone": 1, - "xmlDocument.clone": 1, - "XmlDocumentFragment": 5, - "xmlDocumentFragment": 3, - "xmlDocumentFragment.clone": 1, - "XmlDtd": 5, - "xmlDtd": 3, - "xmlDtd.clone": 1, - "XmlElement": 5, - "xmlElement": 3, - "xmlElement.clone": 1, - "XmlElementDecl": 5, - "xmlElementDecl": 3, - "xmlElementDecl.clone": 1, - "XmlEntityReference": 5, - "xmlEntityRef": 3, - "xmlEntityRef.clone": 1, - "XmlNamespace": 5, - "xmlNamespace": 3, - "xmlNamespace.clone": 1, - "XmlNode": 5, - "xmlNode.clone": 1, - "XmlNodeSet": 5, - "xmlNodeSet": 5, - "xmlNodeSet.clone": 1, - "xmlNodeSet.setNodes": 1, - "RubyArray.newEmptyArray": 1, - "XmlProcessingInstruction": 5, - "xmlProcessingInstruction": 3, - "xmlProcessingInstruction.clone": 1, - "XmlReader": 5, - "xmlReader": 5, - "xmlReader.clone": 1, - "XmlAttributeDecl": 1, - "XmlEntityDecl": 1, - "runtime.newNotImplementedError": 1, - "XmlRelaxng": 5, - "xmlRelaxng": 3, - "xmlRelaxng.clone": 1, - "XmlSaxParserContext": 5, - "xmlSaxParserContext.clone": 1, - "XmlSaxPushParser": 1, - "XmlSchema": 5, - "xmlSchema": 3, - "xmlSchema.clone": 1, - "XmlSyntaxError": 5, - "xmlSyntaxError.clone": 1, - "XmlText": 6, - "xmlText": 3, - "xmlText.clone": 1, - "XmlXpathContext": 5, - "xmlXpathContext": 3, - "xmlXpathContext.clone": 1, - "XsltStylesheet": 4, - "xsltStylesheet": 3, - "xsltStylesheet.clone": 1, - "persons": 1, - "ProtocolBuffer": 2, - "registerAllExtensions": 1, - "com.google.protobuf.ExtensionRegistry": 2, - "registry": 1, - "interface": 1, - "PersonOrBuilder": 2, - "com.google.protobuf.MessageOrBuilder": 1, - "hasName": 5, - "java.lang.String": 15, - "getName": 3, - "com.google.protobuf.ByteString": 13, - "getNameBytes": 5, - "Person": 10, - "com.google.protobuf.GeneratedMessage": 1, - "com.google.protobuf.GeneratedMessage.Builder": 2, - "": 1, - "builder": 4, - "this.unknownFields": 4, - "builder.getUnknownFields": 1, - "noInit": 1, - "com.google.protobuf.UnknownFieldSet.getDefaultInstance": 1, - "defaultInstance": 4, - "getDefaultInstance": 2, - "getDefaultInstanceForType": 2, - "com.google.protobuf.UnknownFieldSet": 2, - "unknownFields": 3, - "@java.lang.Override": 4, - "getUnknownFields": 3, - "com.google.protobuf.CodedInputStream": 5, - "input": 18, - "com.google.protobuf.ExtensionRegistryLite": 8, - "extensionRegistry": 16, - "com.google.protobuf.InvalidProtocolBufferException": 9, - "initFields": 2, - "mutable_bitField0_": 1, - "com.google.protobuf.UnknownFieldSet.Builder": 1, - "com.google.protobuf.UnknownFieldSet.newBuilder": 1, - "done": 4, - "tag": 3, - "input.readTag": 1, - "parseUnknownField": 1, - "bitField0_": 15, - "|": 5, - "name_": 18, - "input.readBytes": 1, - "e.setUnfinishedMessage": 1, - "e.getMessage": 1, - ".setUnfinishedMessage": 1, - "finally": 2, - "unknownFields.build": 1, - "makeExtensionsImmutable": 1, - "com.google.protobuf.Descriptors.Descriptor": 4, - "persons.ProtocolBuffer.internal_static_persons_Person_descriptor": 3, - "com.google.protobuf.GeneratedMessage.FieldAccessorTable": 4, - "internalGetFieldAccessorTable": 2, - "persons.ProtocolBuffer.internal_static_persons_Person_fieldAccessorTable": 2, - ".ensureFieldAccessorsInitialized": 2, - "persons.ProtocolBuffer.Person.class": 2, - "persons.ProtocolBuffer.Person.Builder.class": 2, - "com.google.protobuf.Parser": 2, - "": 3, - "PARSER": 2, - "com.google.protobuf.AbstractParser": 1, - "parsePartialFrom": 1, - "getParserForType": 1, - "NAME_FIELD_NUMBER": 1, - "java.lang.Object": 7, - "&": 7, - "ref": 16, - "bs": 1, - "bs.toStringUtf8": 1, - "bs.isValidUtf8": 1, - "com.google.protobuf.ByteString.copyFromUtf8": 2, - "byte": 4, - "memoizedIsInitialized": 4, - "isInitialized": 5, - "writeTo": 1, - "com.google.protobuf.CodedOutputStream": 2, - "output": 2, - "getSerializedSize": 2, - "output.writeBytes": 1, - ".writeTo": 1, - "memoizedSerializedSize": 3, - ".computeBytesSize": 1, - ".getSerializedSize": 1, - "serialVersionUID": 1, - "L": 1, - "writeReplace": 1, - "java.io.ObjectStreamException": 1, - "super.writeReplace": 1, - "persons.ProtocolBuffer.Person": 22, - "parseFrom": 8, - "data": 8, - "PARSER.parseFrom": 8, - "java.io.InputStream": 4, - "parseDelimitedFrom": 2, - "PARSER.parseDelimitedFrom": 2, - "Builder": 20, - "newBuilder": 5, - "Builder.create": 1, - "newBuilderForType": 2, - "prototype": 2, - ".mergeFrom": 2, - "toBuilder": 1, - "com.google.protobuf.GeneratedMessage.BuilderParent": 2, - "parent": 4, - "": 1, - "persons.ProtocolBuffer.PersonOrBuilder": 1, - "maybeForceBuilderInitialization": 3, - "com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders": 1, - "create": 2, - "clear": 1, - "super.clear": 1, - "buildPartial": 3, - "getDescriptorForType": 1, - "persons.ProtocolBuffer.Person.getDefaultInstance": 2, - "build": 1, - "result": 5, - "result.isInitialized": 1, - "newUninitializedMessageException": 1, - "from_bitField0_": 2, - "to_bitField0_": 3, - "result.name_": 1, - "result.bitField0_": 1, - "onBuilt": 1, - "mergeFrom": 5, - "com.google.protobuf.Message": 1, - "other": 6, - "super.mergeFrom": 1, - "other.hasName": 1, - "other.name_": 1, - "onChanged": 4, - "this.mergeUnknownFields": 1, - "other.getUnknownFields": 1, - "parsedMessage": 5, - "PARSER.parsePartialFrom": 1, - "e.getUnfinishedMessage": 1, - ".toStringUtf8": 1, - "setName": 1, - "clearName": 1, - ".getName": 1, - "setNameBytes": 1, - "defaultInstance.initFields": 1, - "internal_static_persons_Person_descriptor": 3, - "internal_static_persons_Person_fieldAccessorTable": 2, - "com.google.protobuf.Descriptors.FileDescriptor": 5, - "descriptor": 3, - "descriptorData": 2, - "com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner": 2, - "assigner": 2, - "assignDescriptors": 1, - ".getMessageTypes": 1, - ".get": 1, - ".internalBuildGeneratedFileFrom": 1 - }, - "JavaScript": { - "function": 1214, - "(": 8528, - ")": 8536, - "{": 2742, - ";": 4066, - "//": 410, - "jshint": 1, - "_": 9, - "var": 916, - "Modal": 2, - "content": 5, - "options": 56, - "this.options": 6, - "this.": 2, - "element": 19, - ".delegate": 2, - ".proxy": 1, - "this.hide": 1, - "this": 578, - "}": 2718, - "Modal.prototype": 1, - "constructor": 8, - "toggle": 10, - "return": 947, - "[": 1461, - "this.isShown": 3, - "]": 1458, - "show": 10, - "that": 33, - "e": 663, - ".Event": 1, - "element.trigger": 1, - "if": 1230, - "||": 648, - "e.isDefaultPrevented": 2, - ".addClass": 1, - "true": 147, - "escape.call": 1, - "backdrop.call": 1, - "transition": 1, - ".support.transition": 1, - "&&": 1017, - "that.": 3, - "element.hasClass": 1, - "element.parent": 1, - ".length": 24, - "element.appendTo": 1, - "document.body": 8, - "//don": 1, - "in": 170, - "shown": 2, - "hide": 8, - "body": 22, - "modal": 4, - "-": 706, - "open": 2, - "fade": 4, - "hidden": 12, - "
    ": 4, - "class=": 5, - "static": 2, - "keyup.dismiss.modal": 2, - "object": 59, - "string": 41, - "click.modal.data": 1, - "api": 1, - "data": 145, - "target": 44, - "href": 9, - ".extend": 1, - "target.data": 1, - "this.data": 5, - "e.preventDefault": 1, - "target.modal": 1, - "option": 12, - "window.jQuery": 7, - "Animal": 12, - "Horse": 12, - "Snake": 12, - "sam": 4, - "tom": 4, - "__hasProp": 2, - "Object.prototype.hasOwnProperty": 6, - "__extends": 6, - "child": 17, - "parent": 15, - "for": 262, - "key": 85, - "__hasProp.call": 2, - "ctor": 6, - "this.constructor": 5, - "ctor.prototype": 3, - "parent.prototype": 6, - "child.prototype": 4, - "new": 86, - "child.__super__": 3, - "name": 161, - "this.name": 7, - "Animal.prototype.move": 2, - "meters": 4, - "alert": 11, - "+": 1136, - "Snake.__super__.constructor.apply": 2, - "arguments": 83, - "Snake.prototype.move": 2, - "Snake.__super__.move.call": 2, - "Horse.__super__.constructor.apply": 2, - "Horse.prototype.move": 2, - "Horse.__super__.move.call": 2, - "sam.move": 2, - "tom.move": 2, - ".call": 10, - ".hasOwnProperty": 2, - "Animal.name": 1, - "_super": 4, - "Snake.name": 1, - "Horse.name": 1, - "console.log": 3, - "hanaMath": 1, - ".import": 1, - "x": 41, - "parseFloat": 32, - ".request.parameters.get": 2, - "y": 109, - "result": 12, - "hanaMath.multiply": 1, - "output": 2, - "title": 1, - "input": 26, - ".response.contentType": 1, - ".response.statusCode": 1, - ".net.http.OK": 1, - ".response.setBody": 1, - "JSON.stringify": 5, - "multiply": 1, - "*": 71, - "add": 16, - "util": 1, - "require": 9, - "net": 1, - "stream": 1, - "url": 23, - "EventEmitter": 3, - ".EventEmitter": 1, - "FreeList": 2, - ".FreeList": 1, - "HTTPParser": 2, - "process.binding": 1, - ".HTTPParser": 1, - "assert": 8, - ".ok": 1, - "END_OF_FILE": 3, - "debug": 15, - "process.env.NODE_DEBUG": 2, - "/http/.test": 1, - "console.error": 3, - "else": 307, - "parserOnHeaders": 2, - "headers": 41, - "this.maxHeaderPairs": 2, - "<": 209, - "this._headers.length": 1, - "this._headers": 13, - "this._headers.concat": 1, - "this._url": 1, - "parserOnHeadersComplete": 2, - "info": 2, - "parser": 27, - "info.headers": 1, - "info.url": 1, - "parser._headers": 6, - "parser._url": 4, - "parser.incoming": 9, - "IncomingMessage": 4, - "parser.socket": 4, - "parser.incoming.httpVersionMajor": 1, - "info.versionMajor": 2, - "parser.incoming.httpVersionMinor": 1, - "info.versionMinor": 2, - "parser.incoming.httpVersion": 1, - "parser.incoming.url": 1, - "n": 874, - "headers.length": 2, - "parser.maxHeaderPairs": 4, - "Math.min": 5, - "i": 853, - "k": 302, - "v": 135, - "parser.incoming._addHeaderLine": 2, - "info.method": 2, - "parser.incoming.method": 1, - "parser.incoming.statusCode": 2, - "info.statusCode": 1, - "parser.incoming.upgrade": 4, - "info.upgrade": 2, - "skipBody": 3, - "false": 142, - "response": 3, - "to": 92, - "HEAD": 3, - "or": 38, - "CONNECT": 1, - "parser.onIncoming": 3, - "info.shouldKeepAlive": 1, - "parserOnBody": 2, - "b": 961, - "start": 20, - "len": 11, - "slice": 10, - "b.slice": 1, - "parser.incoming._paused": 2, - "parser.incoming._pendings.length": 2, - "parser.incoming._pendings.push": 2, - "parser.incoming._emitData": 1, - "parserOnMessageComplete": 2, - "parser.incoming.complete": 2, - "parser.incoming.readable": 1, - "parser.incoming._emitEnd": 1, - "parser.socket.readable": 1, - "parser.socket.resume": 1, - "parsers": 2, - "HTTPParser.REQUEST": 2, - "parser.onHeaders": 1, - "parser.onHeadersComplete": 1, - "parser.onBody": 1, - "parser.onMessageComplete": 1, - "exports.parsers": 1, - "CRLF": 13, - "STATUS_CODES": 2, - "exports.STATUS_CODES": 1, - "RFC": 16, - "obsoleted": 1, - "by": 12, - "connectionExpression": 1, - "/Connection/i": 1, - "transferEncodingExpression": 1, - "/Transfer": 1, - "Encoding/i": 1, - "closeExpression": 1, - "/close/i": 1, - "chunkExpression": 1, - "/chunk/i": 1, - "contentLengthExpression": 1, - "/Content": 1, - "Length/i": 1, - "dateExpression": 1, - "/Date/i": 1, - "expectExpression": 1, - "/Expect/i": 1, - "continueExpression": 1, - "/100": 2, - "continue/i": 1, - "dateCache": 5, - "utcDate": 2, - "d": 771, - "Date": 4, - "d.toUTCString": 1, - "setTimeout": 19, - "undefined": 328, - "d.getMilliseconds": 1, - "socket": 26, - "stream.Stream.call": 2, - "this.socket": 10, - "this.connection": 8, - "this.httpVersion": 1, - "null": 427, - "this.complete": 2, - "this.headers": 2, - "this.trailers": 2, - "this.readable": 1, - "this._paused": 3, - "this._pendings": 1, - "this._endEmitted": 3, - "this.url": 1, - "this.method": 2, - "this.statusCode": 3, - "this.client": 1, - "util.inherits": 7, - "stream.Stream": 2, - "exports.IncomingMessage": 1, - "IncomingMessage.prototype.destroy": 1, - "error": 20, - "this.socket.destroy": 3, - "IncomingMessage.prototype.setEncoding": 1, - "encoding": 26, - "StringDecoder": 2, - ".StringDecoder": 1, - "lazy": 1, - "load": 5, - "this._decoder": 2, - "IncomingMessage.prototype.pause": 1, - "this.socket.pause": 1, - "IncomingMessage.prototype.resume": 1, - "this.socket.resume": 1, - "this._emitPending": 1, - "IncomingMessage.prototype._emitPending": 1, - "callback": 23, - "this._pendings.length": 1, - "self": 17, - "process.nextTick": 1, - "while": 53, - "self._paused": 1, - "self._pendings.length": 2, - "chunk": 14, - "self._pendings.shift": 1, - "Buffer.isBuffer": 2, - "self._emitData": 1, - "self.readable": 1, - "self._emitEnd": 1, - "IncomingMessage.prototype._emitData": 1, - "this._decoder.write": 1, - "string.length": 1, - "this.emit": 5, - "IncomingMessage.prototype._emitEnd": 1, - "IncomingMessage.prototype._addHeaderLine": 1, - "field": 36, - "value": 98, - "dest": 12, - "field.toLowerCase": 1, - "switch": 30, - "case": 136, - ".push": 3, - "break": 111, - "default": 21, - "field.slice": 1, - "OutgoingMessage": 5, - "this.output": 3, - "this.outputEncodings": 2, - "this.writable": 1, - "this._last": 3, - "this.chunkedEncoding": 6, - "this.shouldKeepAlive": 4, - "this.useChunkedEncodingByDefault": 4, - "this.sendDate": 3, - "this._hasBody": 6, - "this._trailer": 5, - "this.finished": 4, - "exports.OutgoingMessage": 1, - "OutgoingMessage.prototype.destroy": 1, - "OutgoingMessage.prototype._send": 1, - "this._headerSent": 5, - "typeof": 132, - "this._header": 10, - "this.output.unshift": 1, - "this.outputEncodings.unshift": 1, - "this._writeRaw": 2, - "OutgoingMessage.prototype._writeRaw": 1, - "data.length": 3, - "this.connection._httpMessage": 3, - "this.connection.writable": 3, - "this.output.length": 5, - "this._buffer": 2, - "c": 775, - "this.output.shift": 2, - "this.outputEncodings.shift": 2, - "this.connection.write": 4, - "OutgoingMessage.prototype._buffer": 1, - "length": 48, - "this.output.push": 2, - "this.outputEncodings.push": 2, - "lastEncoding": 2, - "lastData": 2, - "data.constructor": 1, - "lastData.constructor": 1, - "OutgoingMessage.prototype._storeHeader": 1, - "firstLine": 2, - "sentConnectionHeader": 3, - "sentContentLengthHeader": 4, - "sentTransferEncodingHeader": 3, - "sentDateHeader": 3, - "sentExpect": 3, - "messageHeader": 7, - "store": 3, - "connectionExpression.test": 1, - "closeExpression.test": 1, - "self._last": 4, - "self.shouldKeepAlive": 4, - "transferEncodingExpression.test": 1, - "chunkExpression.test": 1, - "self.chunkedEncoding": 1, - "contentLengthExpression.test": 1, - "dateExpression.test": 1, - "expectExpression.test": 1, - "keys": 11, - "Object.keys": 5, - "isArray": 10, - "Array.isArray": 7, - "l": 312, - "keys.length": 5, - "j": 265, - "value.length": 1, - "shouldSendKeepAlive": 2, - "this.agent": 2, - "this._send": 8, - "OutgoingMessage.prototype.setHeader": 1, - "arguments.length": 18, - "throw": 27, - "Error": 16, - "name.toLowerCase": 6, - "this._headerNames": 5, - "OutgoingMessage.prototype.getHeader": 1, - "OutgoingMessage.prototype.removeHeader": 1, - "delete": 39, - "OutgoingMessage.prototype._renderHeaders": 1, - "OutgoingMessage.prototype.write": 1, - "this._implicitHeader": 2, - "TypeError": 2, - "chunk.length": 2, - "ret": 62, - "Buffer.byteLength": 2, - "len.toString": 2, - "OutgoingMessage.prototype.addTrailers": 1, - "OutgoingMessage.prototype.end": 1, - "hot": 3, - ".toString": 3, - "this.write": 1, - "Last": 2, - "chunk.": 1, - "this._finish": 2, - "OutgoingMessage.prototype._finish": 1, - "instanceof": 19, - "ServerResponse": 5, - "DTRACE_HTTP_SERVER_RESPONSE": 1, - "ClientRequest": 6, - "DTRACE_HTTP_CLIENT_REQUEST": 1, - "OutgoingMessage.prototype._flush": 1, - "this.socket.writable": 2, - "XXX": 1, - "Necessary": 1, - "this.socket.write": 1, - "req": 32, - "OutgoingMessage.call": 2, - "req.method": 5, - "req.httpVersionMajor": 2, - "req.httpVersionMinor": 2, - "exports.ServerResponse": 1, - "ServerResponse.prototype.statusCode": 1, - "onServerResponseClose": 3, - "this._httpMessage.emit": 2, - "ServerResponse.prototype.assignSocket": 1, - "socket._httpMessage": 9, - "socket.on": 2, - "this._flush": 1, - "ServerResponse.prototype.detachSocket": 1, - "socket.removeListener": 5, - "ServerResponse.prototype.writeContinue": 1, - "this._sent100": 2, - "ServerResponse.prototype._implicitHeader": 1, - "this.writeHead": 1, - "ServerResponse.prototype.writeHead": 1, - "statusCode": 7, - "reasonPhrase": 4, - "headerIndex": 4, - "obj": 40, - "this._renderHeaders": 3, - "obj.length": 1, - "obj.push": 1, - "statusLine": 2, - "statusCode.toString": 1, - "this._expect_continue": 1, - "this._storeHeader": 2, - "ServerResponse.prototype.writeHeader": 1, - "this.writeHead.apply": 1, - "Agent": 5, - "self.options": 2, - "self.requests": 6, - "self.sockets": 3, - "self.maxSockets": 1, - "self.options.maxSockets": 1, - "Agent.defaultMaxSockets": 2, - "self.on": 1, - "host": 29, - "port": 29, - "localAddress": 15, - ".shift": 1, - ".onSocket": 1, - "socket.destroy": 10, - "self.createConnection": 2, - "net.createConnection": 3, - "exports.Agent": 1, - "Agent.prototype.defaultPort": 1, - "Agent.prototype.addRequest": 1, - "this.sockets": 9, - "this.maxSockets": 1, - "req.onSocket": 1, - "this.createSocket": 2, - "this.requests": 5, - "Agent.prototype.createSocket": 1, - "util._extend": 1, - "options.port": 4, - "options.host": 4, - "options.localAddress": 3, - "s": 290, - "onFree": 3, - "self.emit": 9, - "s.on": 4, - "onClose": 3, - "err": 5, - "self.removeSocket": 2, - "onRemove": 3, - "s.removeListener": 3, - "Agent.prototype.removeSocket": 1, - "index": 5, - ".indexOf": 2, - ".splice": 5, - ".emit": 1, - "globalAgent": 3, - "exports.globalAgent": 1, - "cb": 16, - "self.agent": 3, - "options.agent": 3, - "defaultPort": 3, - "options.defaultPort": 1, - "options.hostname": 1, - "options.setHost": 1, - "setHost": 2, - "self.socketPath": 4, - "options.socketPath": 1, - "method": 30, - "self.method": 3, - "options.method": 2, - ".toUpperCase": 3, - "self.path": 3, - "options.path": 2, - "self.once": 2, - "options.headers": 7, - "self.setHeader": 1, - "this.getHeader": 2, - "hostHeader": 3, - "this.setHeader": 2, - "options.auth": 2, - "//basic": 1, - "auth": 1, - "Buffer": 1, - "self.useChunkedEncodingByDefault": 2, - "self._storeHeader": 2, - "self.getHeader": 1, - "self._renderHeaders": 1, - "options.createConnection": 4, - "self.onSocket": 3, - "self.agent.addRequest": 1, - "conn": 3, - "self._deferToConnect": 1, - "self._flush": 1, - "exports.ClientRequest": 1, - "ClientRequest.prototype._implicitHeader": 1, - "this.path": 1, - "ClientRequest.prototype.abort": 1, - "this._deferToConnect": 3, - "createHangUpError": 3, - "error.code": 1, - "freeParser": 9, - "parser.socket.onend": 1, - "parser.socket.ondata": 1, - "parser.socket.parser": 1, - "parsers.free": 1, - "req.parser": 1, - "socketCloseListener": 2, - "socket.parser": 3, - "req.emit": 8, - "req.res": 8, - "req.res.readable": 1, - "req.res.emit": 1, - "res": 14, - "req.res._emitPending": 1, - "res._emitEnd": 1, - "res.emit": 1, - "req._hadError": 3, - "parser.finish": 6, - "socketErrorListener": 2, - "err.message": 1, - "err.stack": 1, - "socketOnEnd": 1, - "this._httpMessage": 3, - "this.parser": 2, - "socketOnData": 1, - "end": 14, - "parser.execute": 2, - "bytesParsed": 4, - "socket.ondata": 3, - "socket.onend": 3, - "bodyHead": 4, - "d.slice": 2, - "eventName": 21, - "req.listeners": 1, - "req.upgradeOrConnect": 1, - "socket.emit": 1, - "parserOnIncomingClient": 1, - "shouldKeepAlive": 4, - "res.upgrade": 1, - "skip": 5, - "isHeadResponse": 2, - "res.statusCode": 1, - "Clear": 1, - "so": 8, - "we": 25, - "don": 5, - "continue": 18, - "ve": 3, - "been": 5, - "upgraded": 1, - "via": 2, - "WebSockets": 1, - "also": 5, - "shouldn": 2, - "AGENT": 2, - "socket.destroySoon": 2, - "keep": 1, - "alive": 1, - "close": 2, - "free": 1, - "number": 13, - "an": 12, - "important": 1, - "promisy": 1, - "thing": 2, - "all": 16, - "the": 107, - "onSocket": 3, - "self.socket.writable": 1, - "self.socket": 5, - ".apply": 7, - "arguments_": 2, - "self.socket.once": 1, - "ClientRequest.prototype.setTimeout": 1, - "msecs": 4, - "this.once": 2, - "emitTimeout": 4, - "this.socket.setTimeout": 1, - "this.socket.once": 1, - "this.setTimeout": 3, - "sock": 1, - "ClientRequest.prototype.setNoDelay": 1, - "ClientRequest.prototype.setSocketKeepAlive": 1, - "ClientRequest.prototype.clearTimeout": 1, - "exports.request": 2, - "url.parse": 1, - "options.protocol": 3, - "exports.get": 1, - "req.end": 1, - "ondrain": 3, - "httpSocketSetup": 2, - "Server": 6, - "requestListener": 6, - "net.Server.call": 1, - "allowHalfOpen": 1, - "this.addListener": 2, - "this.httpAllowHalfOpen": 1, - "connectionListener": 3, - "net.Server": 1, - "exports.Server": 1, - "exports.createServer": 1, - "outgoing": 2, - "incoming": 2, - "abortIncoming": 3, - "incoming.length": 2, - "incoming.shift": 2, - "serverSocketCloseListener": 3, - "socket.setTimeout": 1, - "minute": 1, - "timeout": 2, - "socket.once": 1, - "parsers.alloc": 1, - "parser.reinitialize": 1, - "this.maxHeadersCount": 2, - "<<": 4, - "socket.addListener": 2, - "self.listeners": 2, - "req.socket": 1, - "self.httpAllowHalfOpen": 1, - "socket.writable": 2, - "socket.end": 2, - "outgoing.length": 2, - "._last": 1, - "socket._httpMessage._last": 1, - "incoming.push": 1, - "res.shouldKeepAlive": 1, - "DTRACE_HTTP_SERVER_REQUEST": 1, - "outgoing.push": 1, - "res.assignSocket": 1, - "res.on": 1, - "res.detachSocket": 1, - "res._last": 1, - "m": 76, - "outgoing.shift": 1, - "m.assignSocket": 1, - "req.headers": 2, - "continueExpression.test": 1, - "res._expect_continue": 1, - "res.writeContinue": 1, - "Not": 4, - "a": 1489, - "response.": 1, - "even": 3, - "exports._connectionListener": 1, - "Client": 6, - "this.host": 1, - "this.port": 1, - "maxSockets": 1, - "Client.prototype.request": 1, - "path": 5, - "self.host": 1, - "self.port": 1, - "c.on": 2, - "exports.Client": 1, - "module.deprecate": 2, - "exports.createClient": 1, - "cubes": 4, - "list": 21, - "math": 4, - "num": 23, - "opposite": 6, - "race": 4, - "square": 10, - "__slice": 2, - "Array.prototype.slice": 6, - "root": 5, - "Math.sqrt": 2, - "cube": 2, - "runners": 6, - "winner": 6, - "__slice.call": 2, - "print": 2, - "elvis": 4, - "_i": 10, - "_len": 6, - "_results": 6, - "list.length": 5, - "_results.push": 2, - "math.cube": 2, - ".slice": 6, - "window": 18, - "angular": 1, - "Array.prototype.last": 1, - "this.length": 41, - "app": 3, - "angular.module": 1, - "A": 24, - "w": 110, - "ma": 3, - "c.isReady": 4, - "try": 44, - "s.documentElement.doScroll": 2, - "catch": 38, - "c.ready": 7, - "Qa": 1, - "b.src": 4, - "c.ajax": 1, - "async": 5, - "dataType": 6, - "c.globalEval": 1, - "b.text": 3, - "b.textContent": 2, - "b.innerHTML": 3, - "b.parentNode": 4, - "b.parentNode.removeChild": 2, - "X": 6, - "f": 666, - "a.length": 23, - "o": 322, - "c.isFunction": 9, - "d.call": 3, - "J": 5, - ".getTime": 3, - "Y": 3, - "Z": 6, - "na": 1, - ".type": 2, - "c.event.handle.apply": 1, - "oa": 1, - "r": 261, - "c.data": 12, - "a.liveFired": 4, - "i.live": 1, - "a.button": 2, - "a.type": 14, - "u": 304, - "i.live.slice": 1, - "u.length": 3, - "i.origType.replace": 1, - "O": 6, - "f.push": 5, - "i.selector": 3, - "u.splice": 1, - "a.target": 5, - ".closest": 4, - "a.currentTarget": 4, - "j.length": 2, - ".selector": 1, - ".elem": 1, - "i.preType": 2, - "a.relatedTarget": 2, - "d.push": 1, - "elem": 101, - "handleObj": 2, - "d.length": 8, - "j.elem": 2, - "a.data": 2, - "j.handleObj.data": 1, - "a.handleObj": 2, - "j.handleObj": 1, - "j.handleObj.origHandler.apply": 1, - "pa": 1, - "b.replace": 3, - "/": 290, - "./g": 2, - ".replace": 38, - "/g": 37, - "qa": 1, - "a.parentNode": 6, - "a.parentNode.nodeType": 2, - "ra": 1, - "b.each": 1, - "this.nodeName": 4, - ".nodeName": 2, - "f.events": 1, - "e.handle": 2, - "e.events": 2, - "c.event.add": 1, - ".data": 3, - "sa": 2, - ".ownerDocument": 5, - "ta.test": 1, - "c.support.checkClone": 2, - "ua.test": 1, - "c.fragments": 2, - "b.createDocumentFragment": 1, - "c.clean": 1, - "fragment": 27, - "cacheable": 2, - "K": 4, - "c.each": 2, - "va.concat.apply": 1, - "va.slice": 1, - "wa": 1, - "a.document": 3, - "a.nodeType": 27, - "a.defaultView": 2, - "a.parentWindow": 2, - "c.fn.init": 1, - "Ra": 2, - "A.jQuery": 3, - "Sa": 2, - "A.": 3, - "A.document": 1, - "T": 4, - "Ta": 1, - "<[\\w\\W]+>": 4, - "|": 206, - "#": 13, - "Ua": 1, - ".": 91, - "Va": 1, - "S/": 4, - "Wa": 2, - "u00A0": 2, - "Xa": 1, - "<(\\w+)\\s*\\/?>": 4, - "<\\/\\1>": 4, - "P": 4, - "navigator.userAgent": 3, - "xa": 3, - "Q": 6, - "L": 10, - "Object.prototype.toString": 7, - "aa": 1, - "ba": 3, - "Array.prototype.push": 4, - "R": 2, - "ya": 2, - "Array.prototype.indexOf": 4, - "c.fn": 2, - "c.prototype": 1, - "init": 7, - "this.context": 17, - "s.body": 2, - "this.selector": 16, - "Ta.exec": 1, - "b.ownerDocument": 6, - "Xa.exec": 1, - "c.isPlainObject": 3, - "s.createElement": 10, - "c.fn.attr.call": 1, - "f.createElement": 1, - "a.cacheable": 1, - "a.fragment.cloneNode": 1, - "a.fragment": 1, - ".childNodes": 2, - "c.merge": 4, - "s.getElementById": 1, - "b.id": 1, - "T.find": 1, - "/.test": 19, - "s.getElementsByTagName": 2, - "b.jquery": 1, - ".find": 5, - "T.ready": 1, - "a.selector": 4, - "a.context": 2, - "c.makeArray": 3, - "selector": 40, - "jquery": 3, - "size": 6, - "toArray": 2, - "R.call": 2, - "get": 24, - "this.toArray": 3, - "this.slice": 5, - "pushStack": 4, - "c.isArray": 5, - "ba.apply": 1, - "f.prevObject": 1, - "f.context": 1, - "f.selector": 2, - "each": 17, - "ready": 31, - "c.bindReady": 1, - "a.call": 17, - "Q.push": 1, - "eq": 2, - "first": 10, - "this.eq": 4, - "last": 6, - "this.pushStack": 12, - "R.apply": 1, - ".join": 14, - "map": 7, - "c.map": 1, - "this.prevObject": 3, - "push": 11, - "sort": 4, - ".sort": 9, - "splice": 5, - "c.fn.init.prototype": 1, - "c.extend": 7, - "c.fn.extend": 4, - "noConflict": 4, - "isReady": 5, - "c.fn.triggerHandler": 1, - ".triggerHandler": 1, - "bindReady": 5, - "s.readyState": 2, - "s.addEventListener": 3, - "A.addEventListener": 1, - "s.attachEvent": 3, - "A.attachEvent": 1, - "A.frameElement": 1, - "isFunction": 12, - "isPlainObject": 4, - "a.setInterval": 2, - "a.constructor": 2, - "aa.call": 3, - "a.constructor.prototype": 2, - "isEmptyObject": 7, - "parseJSON": 4, - "c.trim": 3, - "a.replace": 7, - "@": 1, - "d*": 8, - "eE": 4, - "s*": 15, - "A.JSON": 1, - "A.JSON.parse": 2, - "Function": 3, - "c.error": 2, - "noop": 3, - "globalEval": 2, - "Va.test": 1, - "s.documentElement": 2, - "d.type": 2, - "c.support.scriptEval": 2, - "d.appendChild": 3, - "s.createTextNode": 2, - "d.text": 1, - "b.insertBefore": 3, - "b.firstChild": 5, - "b.removeChild": 3, - "nodeName": 20, - "a.nodeName": 12, - "a.nodeName.toUpperCase": 2, - "b.toUpperCase": 3, - "b.apply": 2, - "b.call": 4, - "trim": 5, - "makeArray": 3, - "ba.call": 1, - "inArray": 5, - "b.indexOf": 2, - "b.length": 12, - "merge": 2, - "grep": 6, - "f.length": 5, - "f.concat.apply": 1, - "guid": 5, - "proxy": 4, - "a.apply": 2, - "b.guid": 2, - "a.guid": 7, - "c.guid": 1, - "uaMatch": 3, - "a.toLowerCase": 4, - "webkit": 6, - "w.": 17, - "/.exec": 4, - "opera": 4, - ".*version": 4, - "msie": 4, - "/compatible/.test": 1, - "mozilla": 4, - ".*": 20, - "rv": 4, - "browser": 11, - "version": 10, - "c.uaMatch": 1, - "P.browser": 2, - "c.browser": 1, - "c.browser.version": 1, - "P.version": 1, - "c.browser.webkit": 1, - "c.browser.safari": 1, - "c.inArray": 2, - "ya.call": 1, - "s.removeEventListener": 1, - "s.detachEvent": 1, - "c.support": 2, - "d.style.display": 5, - "d.innerHTML": 2, - "d.getElementsByTagName": 6, - "e.length": 9, - "leadingWhitespace": 3, - "d.firstChild.nodeType": 1, - "tbody": 7, - "htmlSerialize": 3, - "style": 30, - "/red/.test": 1, - "j.getAttribute": 2, - "hrefNormalized": 3, - "opacity": 13, - "j.style.opacity": 1, - "cssFloat": 4, - "j.style.cssFloat": 1, - "checkOn": 4, - ".value": 1, - "optSelected": 3, - ".appendChild": 1, - ".selected": 1, - "parentNode": 10, - "d.removeChild": 1, - ".parentNode": 7, - "deleteExpando": 3, - "checkClone": 1, - "scriptEval": 1, - "noCloneEvent": 3, - "boxModel": 1, - "b.type": 4, - "b.appendChild": 1, - "a.insertBefore": 2, - "a.firstChild": 6, - "b.test": 1, - "c.support.deleteExpando": 2, - "a.removeChild": 2, - "d.attachEvent": 2, - "d.fireEvent": 1, - "c.support.noCloneEvent": 1, - "d.detachEvent": 1, - "d.cloneNode": 1, - ".fireEvent": 3, - "s.createDocumentFragment": 1, - "a.appendChild": 3, - "d.firstChild": 2, - "a.cloneNode": 3, - ".cloneNode": 4, - ".lastChild.checked": 2, - "k.style.width": 1, - "k.style.paddingLeft": 1, - "s.body.appendChild": 1, - "c.boxModel": 1, - "c.support.boxModel": 1, - "k.offsetWidth": 1, - "s.body.removeChild": 1, - ".style.display": 5, - "n.setAttribute": 1, - "c.support.submitBubbles": 1, - "c.support.changeBubbles": 1, - "c.props": 2, - "readonly": 3, - "maxlength": 2, - "cellspacing": 2, - "rowspan": 2, - "colspan": 2, - "tabindex": 4, - "usemap": 2, - "frameborder": 2, - "G": 11, - "Ya": 2, - "za": 3, - "cache": 45, - "expando": 14, - "noData": 3, - "embed": 3, - "applet": 2, - "c.noData": 2, - "a.nodeName.toLowerCase": 3, - "c.cache": 2, - "removeData": 8, - "c.isEmptyObject": 1, - "c.removeData": 2, - "c.expando": 2, - "a.removeAttribute": 3, - "this.each": 42, - "a.split": 4, - "this.triggerHandler": 6, - "this.trigger": 2, - ".each": 3, - "queue": 7, - "dequeue": 6, - "c.queue": 3, - "d.shift": 2, - "d.unshift": 2, - "f.call": 1, - "c.dequeue": 4, - "delay": 4, - "c.fx": 1, - "c.fx.speeds": 1, - "this.queue": 4, - "clearQueue": 2, - "Aa": 3, - "t": 436, - "ca": 6, - "Za": 2, - "r/g": 2, - "/href": 1, - "src": 7, - "style/": 1, - "ab": 1, - "button": 24, - "/i": 22, - "bb": 2, - "select": 20, - "textarea": 8, - "area": 2, - "Ba": 3, - "/radio": 1, - "checkbox/": 1, - "attr": 13, - "c.attr": 4, - "removeAttr": 5, - "this.nodeType": 4, - "this.removeAttribute": 1, - "addClass": 2, - "r.addClass": 1, - "r.attr": 1, - ".split": 19, - "e.nodeType": 7, - "e.className": 14, - "j.indexOf": 1, - "removeClass": 2, - "n.removeClass": 1, - "n.attr": 1, - "j.replace": 2, - "toggleClass": 2, - "j.toggleClass": 1, - "j.attr": 1, - "i.hasClass": 1, - "this.className": 10, - "hasClass": 2, - "": 1, - "className": 4, - "replace": 8, - "indexOf": 5, - "val": 13, - "c.nodeName": 4, - "b.attributes.value": 1, - ".specified": 1, - "b.value": 4, - "b.selectedIndex": 2, - "b.options": 1, - "": 1, - "i=": 31, - "selected": 5, - "a=": 23, - "test": 21, - "type": 49, - "support": 13, - "getAttribute": 3, - "on": 37, - "o=": 13, - "n=": 10, - "r=": 18, - "nodeType=": 6, - "call": 9, - "checked=": 1, - "this.selected": 1, - ".val": 5, - "this.selectedIndex": 1, - "this.value": 4, - "attrFn": 2, - "css": 7, - "html": 10, - "text": 14, - "width": 32, - "height": 25, - "offset": 21, - "c.attrFn": 1, - "c.isXMLDoc": 1, - "a.test": 2, - "ab.test": 1, - "a.getAttributeNode": 7, - ".nodeValue": 1, - "b.specified": 2, - "bb.test": 2, - "cb.test": 1, - "a.href": 2, - "c.support.style": 1, - "a.style.cssText": 3, - "a.setAttribute": 7, - "c.support.hrefNormalized": 1, - "a.getAttribute": 11, - "c.style": 1, - "db": 1, - "handle": 15, - "click": 11, - "events": 18, - "altKey": 4, - "attrChange": 4, - "attrName": 4, - "bubbles": 4, - "cancelable": 4, - "charCode": 7, - "clientX": 6, - "clientY": 5, - "ctrlKey": 6, - "currentTarget": 4, - "detail": 3, - "eventPhase": 4, - "fromElement": 6, - "handler": 14, - "keyCode": 6, - "layerX": 3, - "layerY": 3, - "metaKey": 5, - "newValue": 3, - "offsetX": 4, - "offsetY": 4, - "originalTarget": 1, - "pageX": 4, - "pageY": 4, - "prevValue": 3, - "relatedNode": 4, - "relatedTarget": 6, - "screenX": 4, - "screenY": 4, - "shiftKey": 4, - "srcElement": 5, - "toElement": 5, - "view": 4, - "wheelDelta": 3, - "which": 8, - "mouseover": 12, - "mouseout": 12, - "form": 12, - "click.specialSubmit": 2, - "submit": 14, - "image": 5, - "keypress.specialSubmit": 2, - "password": 5, - ".specialSubmit": 2, - "radio": 17, - "checkbox": 14, - "multiple": 7, - "_change_data": 6, - "focusout": 11, - "change": 16, - "file": 5, - ".specialChange": 4, - "focusin": 9, - "bind": 3, - "one": 15, - "unload": 5, - "live": 8, - "lastToggle": 4, - "die": 3, - "hover": 3, - "mouseenter": 9, - "mouseleave": 9, - "focus": 7, - "blur": 8, - "resize": 3, - "scroll": 6, - "dblclick": 3, - "mousedown": 3, - "mouseup": 3, - "mousemove": 3, - "keydown": 4, - "keypress": 4, - "keyup": 3, - "onunload": 1, - "g": 441, - "h": 499, - "q": 34, - "h.nodeType": 4, - "p": 110, - "S": 8, - "H": 8, - "M": 9, - "I": 7, - "f.exec": 2, - "p.push": 2, - "p.length": 10, - "r.exec": 1, - "n.relative": 5, - "ga": 2, - "p.shift": 4, - "n.match.ID.test": 2, - "k.find": 6, - "v.expr": 4, - "k.filter": 5, - "v.set": 5, - "expr": 2, - "p.pop": 4, - "set": 22, - "z": 21, - "h.parentNode": 3, - "D": 9, - "k.error": 2, - "j.call": 2, - ".nodeType": 9, - "E": 11, - "l.push": 2, - "l.push.apply": 1, - "k.uniqueSort": 5, - "B": 5, - "g.sort": 1, - "g.length": 2, - "g.splice": 2, - "k.matches": 1, - "n.order.length": 1, - "n.order": 1, - "n.leftMatch": 1, - ".exec": 2, - "q.splice": 1, - "y.substr": 1, - "y.length": 1, - "Syntax": 3, - "unrecognized": 3, - "expression": 4, - "ID": 8, - "NAME": 2, - "TAG": 2, - "u00c0": 2, - "uFFFF": 2, - "leftMatch": 2, - "attrMap": 2, - "attrHandle": 2, - "g.getAttribute": 1, - "relative": 4, - "W/.test": 1, - "h.toLowerCase": 2, - "": 1, - "previousSibling": 5, - "nth": 5, - "odd": 2, - "not": 26, - "reset": 2, - "contains": 8, - "only": 10, - "id": 38, - "class": 5, - "Array": 3, - "sourceIndex": 1, - "div": 28, - "script": 7, - "": 4, - "name=": 2, - "href=": 2, - "": 2, - "

    ": 2, - "

    ": 2, - ".TEST": 2, - "
    ": 3, - "CLASS": 1, - "HTML": 9, - "find": 7, - "filter": 10, - "nextSibling": 3, - "iframe": 3, - "": 1, - "": 1, - "
    ": 1, - "
    ": 1, - "": 4, - "
    ": 5, - "": 3, - "": 3, - "": 2, - "": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "before": 8, - "after": 7, - "position": 7, - "absolute": 2, - "top": 12, - "left": 14, - "margin": 8, - "border": 7, - "px": 31, - "solid": 2, - "#000": 2, - "padding": 4, - "": 1, - "": 1, - "fixed": 1, - "marginTop": 3, - "marginLeft": 2, - "using": 5, - "borderTopWidth": 1, - "borderLeftWidth": 1, - "Left": 1, - "Top": 1, - "pageXOffset": 2, - "pageYOffset": 1, - "Height": 1, - "Width": 1, - "inner": 2, - "outer": 2, - "scrollTo": 1, - "CSS1Compat": 1, - "client": 3, - "document": 26, - "window.document": 2, - "navigator": 3, - "window.navigator": 2, - "location": 2, - "window.location": 5, - "jQuery": 48, - "context": 48, - "The": 9, - "is": 67, - "actually": 2, - "just": 2, - "jQuery.fn.init": 2, - "rootjQuery": 8, - "Map": 4, - "over": 7, - "of": 28, - "overwrite": 4, - "_jQuery": 4, - "window.": 6, - "central": 2, - "reference": 5, - "simple": 3, - "way": 2, - "check": 8, - "strings": 8, - "both": 2, - "optimize": 3, - "quickExpr": 2, - "Check": 10, - "has": 9, - "non": 8, - "whitespace": 7, - "character": 3, - "it": 112, - "rnotwhite": 2, - "Used": 3, - "trimming": 2, - "trimLeft": 4, - "trimRight": 4, - "digits": 3, - "rdigit": 1, - "d/": 3, - "Match": 3, - "standalone": 2, - "tag": 2, - "rsingleTag": 2, - "JSON": 5, - "RegExp": 12, - "rvalidchars": 2, - "rvalidescape": 2, - "rvalidbraces": 2, - "Useragent": 2, - "rwebkit": 2, - "ropera": 2, - "rmsie": 2, - "rmozilla": 2, - "Keep": 2, - "UserAgent": 2, - "use": 10, - "with": 18, - "jQuery.browser": 4, - "userAgent": 3, - "For": 5, - "matching": 3, - "engine": 2, - "and": 42, - "browserMatch": 3, - "deferred": 25, - "used": 13, - "DOM": 21, - "readyList": 6, - "event": 31, - "DOMContentLoaded": 14, - "Save": 2, - "some": 2, - "core": 2, - "methods": 8, - "toString": 4, - "hasOwn": 2, - "String.prototype.trim": 3, - "Class": 2, - "pairs": 2, - "class2type": 3, - "jQuery.fn": 4, - "jQuery.prototype": 2, - "match": 30, - "doc": 4, - "Handle": 14, - "DOMElement": 2, - "selector.nodeType": 2, - "exists": 9, - "once": 4, - "finding": 2, - "Are": 2, - "dealing": 2, - "selector.charAt": 4, - "selector.length": 4, - "Assume": 2, - "are": 18, - "regex": 3, - "quickExpr.exec": 2, - "Verify": 3, - "no": 19, - "was": 6, - "specified": 4, - "#id": 3, - "HANDLE": 2, - "array": 7, - "context.ownerDocument": 2, - "If": 21, - "single": 2, - "passed": 5, - "clean": 3, - "like": 5, - "method.": 3, - "jQuery.fn.init.prototype": 2, - "jQuery.extend": 11, - "jQuery.fn.extend": 4, - "copy": 16, - "copyIsArray": 2, - "clone": 5, - "deep": 12, - "situation": 2, - "boolean": 8, - "when": 20, - "something": 3, - "possible": 3, - "jQuery.isFunction": 6, - "extend": 13, - "itself": 4, - "argument": 2, - "Only": 5, - "deal": 2, - "null/undefined": 2, - "values": 10, - "Extend": 2, - "base": 2, - "Prevent": 2, - "never": 2, - "ending": 2, - "loop": 7, - "Recurse": 2, - "bring": 2, - "Return": 2, - "modified": 3, - "Is": 2, - "be": 12, - "Set": 4, - "occurs.": 2, - "counter": 2, - "track": 2, - "how": 2, - "many": 3, - "items": 2, - "wait": 12, - "fires.": 2, - "See": 9, - "#6781": 2, - "readyWait": 6, - "Hold": 2, - "release": 2, - "holdReady": 3, - "hold": 6, - "jQuery.readyWait": 6, - "jQuery.ready": 16, - "Either": 2, - "released": 2, - "DOMready/load": 2, - "yet": 2, - "jQuery.isReady": 6, - "Make": 17, - "sure": 18, - "at": 58, - "least": 4, - "IE": 28, - "gets": 6, - "little": 4, - "overzealous": 4, - "ticket": 4, - "#5443": 4, - "Remember": 2, - "normal": 2, - "Ready": 2, - "fired": 12, - "decrement": 2, - "need": 10, - "there": 6, - "functions": 6, - "bound": 8, - "execute": 4, - "readyList.resolveWith": 1, - "Trigger": 2, - "any": 12, - "jQuery.fn.trigger": 2, - ".trigger": 3, - ".unbind": 4, - "jQuery._Deferred": 3, - "Catch": 2, - "cases": 4, - "where": 2, - ".ready": 2, - "called": 2, - "already": 6, - "occurred.": 2, - "document.readyState": 4, - "asynchronously": 2, - "allow": 6, - "scripts": 2, - "opportunity": 2, - "Mozilla": 2, - "Opera": 2, - "nightlies": 3, - "currently": 4, - "document.addEventListener": 6, - "Use": 7, - "handy": 2, - "fallback": 4, - "window.onload": 4, - "will": 7, - "always": 6, - "work": 6, - "window.addEventListener": 2, - "model": 14, - "document.attachEvent": 6, - "ensure": 2, - "firing": 16, - "onload": 2, - "maybe": 2, - "late": 2, - "but": 4, - "safe": 3, - "iframes": 2, - "window.attachEvent": 2, - "frame": 23, - "continually": 2, - "see": 6, - "toplevel": 7, - "window.frameElement": 2, - "document.documentElement.doScroll": 4, - "doScrollCheck": 6, - "test/unit/core.js": 2, - "details": 3, - "concerning": 2, - "isFunction.": 2, - "Since": 3, - "aren": 5, - "pass": 7, - "through": 3, - "as": 11, - "well": 2, - "jQuery.type": 4, - "obj.nodeType": 2, - "jQuery.isWindow": 2, - "own": 4, - "property": 15, - "must": 4, - "Object": 4, - "obj.constructor": 2, - "hasOwn.call": 6, - "obj.constructor.prototype": 2, - "Own": 2, - "properties": 7, - "enumerated": 2, - "firstly": 2, - "speed": 4, - "up": 4, - "then": 8, - "own.": 2, - "msg": 4, - "leading/trailing": 2, - "removed": 3, - "can": 10, - "breaking": 1, - "spaces": 3, - "rnotwhite.test": 2, - "xA0": 7, - "document.removeEventListener": 2, - "document.detachEvent": 2, - "trick": 2, - "Diego": 2, - "Perini": 2, - "http": 6, - "//javascript.nwbox.com/IEContentLoaded/": 2, - "waiting": 2, - "Promise": 1, - "promiseMethods": 3, - "Static": 1, - "sliceDeferred": 1, - "Create": 1, - "callbacks": 10, - "_Deferred": 4, - "stored": 4, - "args": 31, - "avoid": 5, - "doing": 3, - "flag": 1, - "know": 3, - "cancelled": 5, - "done": 10, - "f1": 1, - "f2": 1, - "...": 1, - "_fired": 5, - "args.length": 3, - "deferred.done.apply": 2, - "callbacks.push": 1, - "deferred.resolveWith": 5, - "resolve": 7, - "given": 3, - "resolveWith": 4, - "make": 2, - "available": 1, - "#8421": 1, - "callbacks.shift": 1, - "finally": 3, - "Has": 1, - "resolved": 1, - "isResolved": 3, - "Cancel": 1, - "cancel": 6, - "Full": 1, - "fledged": 1, - "two": 1, - "Deferred": 5, - "func": 3, - "failDeferred": 1, - "promise": 14, - "Add": 4, - "errorDeferred": 1, - "doneCallbacks": 2, - "failCallbacks": 2, - "deferred.done": 2, - ".fail": 2, - ".fail.apply": 1, - "fail": 10, - "failDeferred.done": 1, - "rejectWith": 2, - "failDeferred.resolveWith": 1, - "reject": 4, - "failDeferred.resolve": 1, - "isRejected": 2, - "failDeferred.isResolved": 1, - "pipe": 2, - "fnDone": 2, - "fnFail": 2, - "jQuery.Deferred": 1, - "newDefer": 3, - "jQuery.each": 2, - "fn": 14, - "action": 3, - "returned": 4, - "fn.apply": 1, - "returned.promise": 2, - ".then": 3, - "newDefer.resolve": 1, - "newDefer.reject": 1, - ".promise": 5, - "Get": 4, - "provided": 1, - "aspect": 1, - "added": 1, - "promiseMethods.length": 1, - "failDeferred.cancel": 1, - "deferred.cancel": 2, - "Unexpose": 1, - "Call": 1, - "func.call": 1, - "helper": 1, - "firstParam": 6, - "count": 4, - "<=>": 1, - "1": 97, - "resolveFunc": 2, - "sliceDeferred.call": 2, - "Strange": 1, - "bug": 3, - "FF4": 1, - "Values": 1, - "changed": 3, - "onto": 2, - "sometimes": 1, - "outside": 2, - ".when": 1, - "Cloning": 2, - "into": 2, - "fresh": 1, - "solves": 1, - "issue": 1, - "deferred.reject": 1, - "deferred.promise": 1, - "jQuery.support": 1, - "document.createElement": 26, - "documentElement": 2, - "document.documentElement": 2, - "opt": 2, - "marginDiv": 5, - "bodyStyle": 1, - "tds": 6, - "isSupported": 7, - "Preliminary": 1, - "tests": 48, - "div.setAttribute": 1, - "div.innerHTML": 7, - "div.getElementsByTagName": 6, - "Can": 2, - "automatically": 2, - "inserted": 1, - "insert": 1, - "them": 3, - "empty": 3, - "tables": 1, - "link": 2, - "elements": 9, - "serialized": 3, - "correctly": 1, - "innerHTML": 1, - "This": 3, - "requires": 1, - "wrapper": 1, - "information": 5, - "from": 7, - "uses": 3, - ".cssText": 2, - "instead": 6, - "/top/.test": 2, - "URLs": 1, - "optgroup": 5, - "opt.selected": 1, - "Test": 3, - "setAttribute": 1, - "camelCase": 3, - "class.": 1, - "works": 1, - "attrFixes": 1, - "get/setAttribute": 1, - "ie6/7": 1, - "getSetAttribute": 3, - "div.className": 1, - "Will": 2, - "defined": 3, - "later": 1, - "submitBubbles": 3, - "changeBubbles": 3, - "focusinBubbles": 2, - "inlineBlockNeedsLayout": 3, - "shrinkWrapBlocks": 2, - "reliableMarginRight": 2, - "checked": 4, - "status": 3, - "properly": 2, - "cloned": 1, - "input.checked": 1, - "support.noCloneChecked": 1, - "input.cloneNode": 1, - ".checked": 2, - "inside": 3, - "disabled": 11, - "selects": 1, - "Fails": 2, - "Internet": 1, - "Explorer": 1, - "div.test": 1, - "support.deleteExpando": 1, - "div.addEventListener": 1, - "div.attachEvent": 2, - "div.fireEvent": 1, - "node": 23, - "being": 2, - "appended": 2, - "input.value": 5, - "input.setAttribute": 5, - "support.radioValue": 2, - "div.appendChild": 4, - "document.createDocumentFragment": 3, - "fragment.appendChild": 2, - "div.firstChild": 3, - "WebKit": 9, - "doesn": 2, - "inline": 3, - "display": 7, - "none": 4, - "GC": 2, - "references": 1, - "across": 1, - "JS": 7, - "boundary": 1, - "isNode": 11, - "elem.nodeType": 8, - "nodes": 14, - "global": 5, - "attached": 1, - "directly": 2, - "occur": 1, - "jQuery.cache": 3, - "defining": 1, - "objects": 7, - "its": 2, - "allows": 1, - "code": 2, - "shortcut": 1, - "same": 1, - "jQuery.expando": 12, - "Avoid": 1, - "more": 6, - "than": 3, - "trying": 1, - "pvt": 8, - "internalKey": 12, - "getByName": 3, - "unique": 2, - "since": 1, - "their": 3, - "ends": 1, - "jQuery.uuid": 1, - "TODO": 2, - "hack": 2, - "ONLY.": 2, - "Avoids": 2, - "exposing": 2, - "metadata": 2, - "plain": 2, - ".toJSON": 4, - "jQuery.noop": 2, - "An": 1, - "jQuery.data": 15, - "key/value": 1, - "pair": 1, - "shallow": 1, - "copied": 1, - "existing": 1, - "thisCache": 15, - "Internal": 1, - "separate": 1, - "destroy": 1, - "unless": 2, - "internal": 8, - "had": 1, - "isEmptyDataObject": 3, - "internalCache": 3, - "Browsers": 1, - "deletion": 1, - "refuse": 1, - "expandos": 2, - "other": 3, - "browsers": 2, - "faster": 1, - "iterating": 1, - "persist": 1, - "existed": 1, - "Otherwise": 2, - "eliminate": 2, - "lookups": 2, - "entries": 2, - "longer": 2, - "exist": 2, - "does": 9, - "us": 2, - "nor": 2, - "have": 6, - "removeAttribute": 3, - "Document": 2, - "these": 2, - "jQuery.support.deleteExpando": 3, - "elem.removeAttribute": 6, - "only.": 2, - "_data": 3, - "determining": 3, - "acceptData": 3, - "elem.nodeName": 2, - "jQuery.noData": 2, - "elem.nodeName.toLowerCase": 2, - "elem.getAttribute": 7, - ".attributes": 2, - "attr.length": 2, - ".name": 3, - "name.indexOf": 2, - "jQuery.camelCase": 6, - "name.substring": 2, - "dataAttr": 6, - "parts": 28, - "key.split": 2, - "Try": 4, - "fetch": 4, - "internally": 5, - "jQuery.removeData": 2, - "nothing": 2, - "found": 10, - "HTML5": 3, - "attribute": 5, - "key.replace": 2, - "rmultiDash": 3, - ".toLowerCase": 7, - "jQuery.isNaN": 1, - "rbrace.test": 2, - "jQuery.parseJSON": 2, - "isn": 2, - "option.selected": 2, - "jQuery.support.optDisabled": 2, - "option.disabled": 2, - "option.getAttribute": 2, - "option.parentNode.disabled": 2, - "jQuery.nodeName": 3, - "option.parentNode": 2, - "specific": 2, - "We": 6, - "get/set": 2, - "attributes": 14, - "comment": 3, - "nType": 8, - "jQuery.attrFn": 2, - "Fallback": 2, - "prop": 24, - "supported": 2, - "jQuery.prop": 2, - "hooks": 14, - "notxml": 8, - "jQuery.isXMLDoc": 2, - "Normalize": 1, - "needed": 2, - "jQuery.attrFix": 2, - "jQuery.attrHooks": 2, - "boolHook": 3, - "rboolean.test": 4, - "value.toLowerCase": 2, - "formHook": 3, - "forms": 1, - "certain": 2, - "characters": 6, - "rinvalidChar.test": 1, - "jQuery.removeAttr": 2, - "hooks.set": 2, - "elem.setAttribute": 2, - "hooks.get": 2, - "Non": 3, - "existent": 2, - "normalize": 2, - "propName": 8, - "jQuery.support.getSetAttribute": 1, - "jQuery.attr": 2, - "elem.removeAttributeNode": 1, - "elem.getAttributeNode": 1, - "corresponding": 2, - "jQuery.propFix": 2, - "attrHooks": 3, - "tabIndex": 4, - "readOnly": 2, - "htmlFor": 2, - "maxLength": 2, - "cellSpacing": 2, - "cellPadding": 2, - "rowSpan": 2, - "colSpan": 2, - "useMap": 2, - "frameBorder": 2, - "contentEditable": 2, - "auto": 3, - "&": 13, - "getData": 3, - "setData": 3, - "changeData": 3, - "bubbling": 1, - "live.": 2, - "hasDuplicate": 1, - "baseHasDuplicate": 2, - "rBackslash": 1, - "rNonWord": 1, - "W/": 2, - "Sizzle": 1, - "results": 4, - "seed": 1, - "origContext": 1, - "context.nodeType": 2, - "checkSet": 1, - "extra": 1, - "cur": 6, - "pop": 1, - "prune": 1, - "contextXML": 1, - "Sizzle.isXML": 1, - "soFar": 1, - "Reset": 1, - "cy": 4, - "f.isWindow": 2, - "cv": 2, - "cj": 4, - ".appendTo": 2, - "b.css": 1, - "b.remove": 1, - "ck": 5, - "c.createElement": 12, - "ck.frameBorder": 1, - "ck.width": 1, - "ck.height": 1, - "c.body.appendChild": 1, - "cl": 3, - "ck.createElement": 1, - "ck.contentWindow": 1, - "ck.contentDocument": 1, - ".document": 1, - "cl.write": 1, - "cl.createElement": 1, - "cl.body.appendChild": 1, - "f.css": 24, - "c.body.removeChild": 1, - "cu": 18, - "f.each": 21, - "cp.concat.apply": 1, - "cp.slice": 1, - "ct": 34, - "cq": 3, - "cs": 3, - "f.now": 2, - "ci": 29, - "a.ActiveXObject": 3, - "ch": 58, - "a.XMLHttpRequest": 1, - "a.dataFilter": 2, - "a.dataType": 1, - "a.dataTypes": 2, - "a.converters": 3, - "o.split": 1, - "f.error": 4, - "m.replace": 1, - "a.contents": 1, - "a.responseFields": 1, - "f.shift": 1, - "a.mimeType": 1, - "c.getResponseHeader": 1, - ".test": 1, - "f.unshift": 2, - "b_": 4, - "f.isArray": 8, - "bF.test": 1, - "c.dataTypes": 1, - "h.length": 3, - "bU": 4, - "c.dataTypes.unshift": 1, - "bZ": 3, - "f.isFunction": 21, - "b.toLowerCase": 3, - "bQ": 3, - "h.substr": 1, - "bD": 3, - "bx": 2, - "a.offsetWidth": 6, - "a.offsetHeight": 2, - "bn": 2, - "f.ajax": 3, - "f.globalEval": 2, - "bf": 6, - "bm": 3, - "f.nodeName": 16, - "bl": 3, - "a.getElementsByTagName": 9, - "f.grep": 3, - "a.defaultChecked": 1, - "a.checked": 4, - "bk": 5, - "a.querySelectorAll": 1, - "bj": 3, - "b.nodeType": 6, - "b.clearAttributes": 2, - "b.mergeAttributes": 2, - "b.nodeName.toLowerCase": 1, - "b.outerHTML": 1, - "a.outerHTML": 1, - "b.selected": 1, - "a.defaultSelected": 1, - "b.defaultValue": 1, - "a.defaultValue": 1, - "b.defaultChecked": 1, - "b.checked": 1, - "a.value": 8, - "b.removeAttribute": 3, - "f.expando": 23, - "bi": 27, - "f.hasData": 2, - "f.data": 25, - "d.events": 1, - "f.extend": 23, - "": 1, - "bh": 1, - "table": 6, - "getElementsByTagName": 1, - "0": 220, - "appendChild": 1, - "ownerDocument": 9, - "createElement": 3, - "b=": 25, - "e=": 21, - "nodeType": 1, - "d=": 15, - "W": 3, - "N": 2, - "f._data": 15, - "r.live": 1, - "a.target.disabled": 1, - "a.namespace": 1, - "a.namespace.split": 1, - "r.live.slice": 1, - "s.length": 2, - "g.origType.replace": 1, - "q.push": 1, - "g.selector": 3, - "s.splice": 1, - "m.selector": 1, - "n.test": 2, - "g.namespace": 1, - "m.elem.disabled": 1, - "m.elem": 1, - "g.preType": 3, - "f.contains": 5, - "level": 3, - "m.level": 1, - "": 1, - "e.elem": 2, - "e.handleObj.data": 1, - "e.handleObj": 1, - "e.handleObj.origHandler.apply": 1, - "a.isPropagationStopped": 1, - "e.level": 1, - "a.isImmediatePropagationStopped": 1, - "e.type": 6, - "e.originalEvent": 1, - "e.liveFired": 1, - "f.event.handle.call": 1, - ".preventDefault": 1, - "F": 8, - "f.removeData": 4, - "i.resolve": 1, - "c.replace": 4, - "f.isNaN": 3, - "i.test": 1, - "f.parseJSON": 2, - "a.navigator": 1, - "a.location": 1, - "e.isReady": 1, - "c.documentElement.doScroll": 2, - "e.ready": 6, - "e.fn.init": 1, - "a.jQuery": 2, - "a.": 2, - "d.userAgent": 1, - "C": 4, - "e.fn": 2, - "e.prototype": 1, - "c.body": 4, - "a.charAt": 2, - "i.exec": 1, - "d.ownerDocument": 1, - "n.exec": 1, - "e.isPlainObject": 1, - "e.fn.attr.call": 1, - "k.createElement": 1, - "e.buildFragment": 1, - "j.cacheable": 1, - "e.clone": 1, - "j.fragment": 2, - "e.merge": 3, - "c.getElementById": 1, - "h.id": 1, - "f.find": 2, - "d.jquery": 1, - "e.isFunction": 5, - "f.ready": 1, - "e.makeArray": 1, - "D.call": 4, - "e.isArray": 2, - "C.apply": 1, - "d.prevObject": 1, - "d.context": 2, - "d.selector": 2, - "e.each": 2, - "e.bindReady": 1, - "y.done": 1, - "D.apply": 1, - "e.map": 1, - "e.fn.init.prototype": 1, - "e.extend": 2, - "e.fn.extend": 1, - "": 1, - "f=": 13, - "g=": 15, - "h=": 19, - "jQuery=": 2, - "isReady=": 1, - "y.resolveWith": 1, - "e.fn.trigger": 1, - "e._Deferred": 1, - "c.readyState": 2, - "c.addEventListener": 4, - "a.addEventListener": 4, - "c.attachEvent": 3, - "a.attachEvent": 6, - "a.frameElement": 1, - "isWindow": 2, - "isNaN": 6, - "m.test": 1, - "String": 2, - "A.call": 1, - "e.isWindow": 2, - "B.call": 3, - "e.trim": 1, - "a.JSON": 1, - "a.JSON.parse": 2, - "o.test": 1, - "e.error": 2, - "parseXML": 1, - "a.DOMParser": 1, - "DOMParser": 1, - "d.parseFromString": 1, - "ActiveXObject": 1, - "c.async": 4, - "c.loadXML": 1, - "c.documentElement": 4, - "d.nodeName": 4, - "j.test": 3, - "a.execScript": 1, - "a.eval.call": 1, - "c.apply": 2, - "c.call": 3, - "E.call": 1, - "C.call": 1, - "F.call": 1, - "c.length": 8, - "": 1, - "j=": 14, - "k=": 11, - "h.concat.apply": 1, - "f.concat": 1, - "g.guid": 3, - "e.guid": 3, - "access": 2, - "e.access": 1, - "now": 5, - "s.exec": 1, - "t.exec": 1, - "u.exec": 1, - "a.indexOf": 2, - "v.exec": 1, - "sub": 4, - "a.fn.init": 2, - "a.superclass": 1, - "a.fn": 2, - "a.prototype": 1, - "a.fn.constructor": 1, - "a.sub": 1, - "this.sub": 2, - "e.fn.init.call": 1, - "a.fn.init.prototype": 1, - "e.uaMatch": 1, - "x.browser": 2, - "e.browser": 1, - "e.browser.version": 1, - "x.version": 1, - "e.browser.webkit": 1, - "e.browser.safari": 1, - "c.removeEventListener": 2, - "c.detachEvent": 1, - "": 1, - "c=": 24, - "shift": 1, - "apply": 8, - "h.call": 2, - "g.resolveWith": 3, - "<=1&&a&&f.isFunction(a.promise)?a:f.Deferred();if(d>": 1, - "g.reject": 1, - "g.promise": 1, - "f.support": 2, - "a.innerHTML": 7, - "f.appendChild": 1, - "a.firstChild.nodeType": 2, - "e.getAttribute": 2, - "e.style.opacity": 1, - "e.style.cssFloat": 1, - "h.value": 3, - "g.selected": 1, - "a.className": 1, - "h.checked": 2, - "j.noCloneChecked": 1, - "h.cloneNode": 1, - "f.disabled": 1, - "j.optDisabled": 1, - "g.disabled": 1, - "j.deleteExpando": 1, - "a.fireEvent": 1, - "j.noCloneEvent": 1, - "a.detachEvent": 1, - "h.setAttribute": 2, - "j.radioValue": 1, - "c.createDocumentFragment": 1, - "k.appendChild": 1, - "j.checkClone": 1, - "k.cloneNode": 1, - "a.style.width": 1, - "a.style.paddingLeft": 1, - "visibility": 3, - "background": 56, - "l.style": 1, - "l.appendChild": 1, - "j.appendChecked": 1, - "j.boxModel": 1, - "a.style": 8, - "a.style.display": 3, - "a.style.zoom": 1, - "j.inlineBlockNeedsLayout": 1, - "j.shrinkWrapBlocks": 1, - ".offsetHeight": 4, - "j.reliableHiddenOffsets": 1, - "c.defaultView": 2, - "c.defaultView.getComputedStyle": 3, - "i.style.width": 1, - "i.style.marginRight": 1, - "j.reliableMarginRight": 1, - "parseInt": 12, - "marginRight": 2, - ".marginRight": 2, - "l.innerHTML": 1, - "f.boxModel": 1, - "f.support.boxModel": 4, - "uuid": 2, - "f.fn.jquery": 1, - "Math.random": 2, - "D/g": 2, - "hasData": 2, - "f.cache": 5, - "f.acceptData": 4, - "f.uuid": 1, - "f.noop": 4, - "f.camelCase": 5, - ".events": 1, - "f.support.deleteExpando": 3, - "f.noData": 2, - "f.fn.extend": 9, - "g.indexOf": 2, - "g.substring": 1, - "b.triggerHandler": 2, - "_mark": 2, - "_unmark": 3, - "f.makeArray": 5, - "e.push": 3, - "f.queue": 3, - "c.shift": 2, - "c.unshift": 1, - "f.dequeue": 4, - "f.fx": 2, - "f.fx.speeds": 1, - "d.resolveWith": 1, - "f.Deferred": 2, - "f._Deferred": 2, - "l.done": 1, - "d.promise": 1, - "rea": 1, - "autofocus": 1, - "autoplay": 1, - "controls": 1, - "defer": 1, - "required": 1, - "scoped": 1, - "f.access": 3, - "f.attr": 2, - "f.removeAttr": 3, - "f.prop": 2, - "removeProp": 1, - "f.propFix": 6, - "c.addClass": 1, - "f.trim": 2, - "c.removeClass": 1, - "g.nodeType": 6, - "g.className": 4, - "h.replace": 2, - "d.toggleClass": 1, - "d.attr": 1, - "h.hasClass": 1, - "": 1, - "f.valHooks": 7, - "e.nodeName.toLowerCase": 1, - "c.get": 1, - "e.value": 1, - "e.val": 1, - "f.map": 5, - "this.nodeName.toLowerCase": 1, - "this.type": 3, - "c.set": 1, - "valHooks": 1, - "a.attributes.value": 1, - "a.text": 1, - "a.selectedIndex": 3, - "a.options": 2, - "": 3, - "optDisabled": 1, - "selected=": 1, - "attrFix": 1, - "f.attrFn": 3, - "f.isXMLDoc": 4, - "f.attrFix": 3, - "f.attrHooks": 5, - "t.test": 2, - "d.toLowerCase": 1, - "c.toLowerCase": 4, - "u.test": 1, - "i.set": 1, - "i.get": 1, - "f.support.getSetAttribute": 2, - "a.removeAttributeNode": 1, - "q.test": 1, - "f.support.radioValue": 1, - "c.specified": 1, - "c.value": 1, - "r.test": 1, - "s.test": 1, - "propFix": 1, - "cellpadding": 1, - "contenteditable": 1, - "f.propHooks": 1, - "h.set": 1, - "h.get": 1, - "propHooks": 1, - "f.attrHooks.value": 1, - "v.get": 1, - "f.attrHooks.name": 1, - "f.valHooks.button": 1, - "d.nodeValue": 3, - "f.support.hrefNormalized": 1, - "f.support.style": 1, - "f.attrHooks.style": 1, - "a.style.cssText.toLowerCase": 1, - "f.support.optSelected": 1, - "f.propHooks.selected": 2, - "b.parentNode.selectedIndex": 1, - "f.support.checkOn": 1, - "f.inArray": 4, - "s.": 1, - "f.event": 2, - "d.handler": 1, - "g.handler": 1, - "d.guid": 4, - "f.guid": 3, - "i.events": 2, - "i.handle": 2, - "f.event.triggered": 3, - "f.event.handle.apply": 1, - "k.elem": 2, - "c.split": 2, - "l.indexOf": 1, - "l.split": 1, - "n.shift": 1, - "h.namespace": 2, - "n.slice": 1, - "h.type": 1, - "h.guid": 2, - "f.event.special": 5, - "p.setup": 1, - "p.setup.call": 1, - "p.add": 1, - "p.add.call": 1, - "h.handler.guid": 2, - "o.push": 1, - "f.event.global": 2, - "remove": 9, - "s.events": 1, - "c.type": 9, - "c.handler": 1, - "c.charAt": 1, - "f.event.remove": 5, - "h.indexOf": 3, - "h.split": 2, - "m.shift": 1, - "m.slice": 1, - "q.namespace": 1, - "q.handler": 1, - "p.splice": 1, - "": 1, - "u=": 12, - "elem=": 4, - "customEvent": 1, - "trigger": 4, - "h.slice": 1, - "i.shift": 1, - "i.sort": 1, - "f.event.customEvent": 1, - "f.Event": 2, - "c.exclusive": 2, - "c.namespace": 2, - "i.join": 2, - "c.namespace_re": 1, - "c.preventDefault": 3, - "c.stopPropagation": 1, - "b.events": 4, - "f.event.trigger": 6, - "b.handle.elem": 2, - "c.result": 3, - "c.target": 3, - "do": 15, - "c.currentTarget": 2, - "m.apply": 1, - "k.parentNode": 1, - "k.ownerDocument": 1, - "c.target.ownerDocument": 1, - "c.isPropagationStopped": 1, - "c.isDefaultPrevented": 2, - "o._default": 1, - "o._default.call": 1, - "e.ownerDocument": 1, - "f.event.fix": 2, - "a.event": 1, - "Array.prototype.slice.call": 1, - "namespace_re": 1, - "namespace": 1, - "handler=": 1, - "data=": 2, - "handleObj=": 1, - "result=": 1, - "preventDefault": 4, - "stopPropagation": 5, - "isImmediatePropagationStopped": 2, - "props": 21, - "split": 4, - "fix": 1, - "Event": 3, - "target=": 2, - "relatedTarget=": 1, - "fromElement=": 1, - "pageX=": 2, - "scrollLeft": 2, - "clientLeft": 2, - "pageY=": 1, - "scrollTop": 2, - "clientTop": 2, - "which=": 3, - "metaKey=": 1, - "2": 66, - "3": 13, - "4": 4, - "1e8": 1, - "special": 3, - "setup": 5, - "teardown": 6, - "origType": 2, - "beforeunload": 1, - "onbeforeunload=": 3, - "removeEvent=": 1, - "removeEventListener": 3, - "detachEvent": 2, - "Event=": 1, - "originalEvent=": 1, - "type=": 5, - "isDefaultPrevented=": 2, - "defaultPrevented": 1, - "returnValue=": 2, - "getPreventDefault": 2, - "timeStamp=": 1, - "prototype=": 2, - "originalEvent": 2, - "isPropagationStopped=": 1, - "cancelBubble=": 1, - "stopImmediatePropagation": 1, - "isImmediatePropagationStopped=": 1, - "isDefaultPrevented": 1, - "isPropagationStopped": 1, - "G=": 1, - "H=": 1, - "submit=": 1, - "specialSubmit": 3, - "closest": 3, - "keyCode=": 1, - "J=": 1, - "selectedIndex": 1, - "a.selected": 1, - "z.test": 3, - "d.readOnly": 1, - "c.liveFired": 1, - "f.event.special.change": 1, - "filters": 1, - "beforedeactivate": 1, - "K.call": 2, - "a.keyCode": 2, - "beforeactivate": 1, - "f.event.add": 2, - "f.event.special.change.filters": 1, - "I.focus": 1, - "I.beforeactivate": 1, - "f.support.focusinBubbles": 1, - "c.originalEvent": 1, - "a.preventDefault": 3, - "f.fn": 9, - "e.apply": 1, - "this.one": 1, - "unbind": 2, - "this.unbind": 2, - "delegate": 1, - "this.live": 1, - "undelegate": 1, - "this.die": 1, - "triggerHandler": 1, - "%": 26, - ".guid": 1, - "this.click": 1, - "this.mouseenter": 1, - ".mouseleave": 1, - "g.charAt": 1, - "n.unbind": 1, - "y.exec": 1, - "a.push": 2, - "n.length": 1, - "": 1, - "this.bind": 2, - "": 2, - "sizcache=": 4, - "sizset": 2, - "sizset=": 2, - "toLowerCase": 3, - "d.nodeType": 5, - "k.isXML": 4, - "a.exec": 2, - "x.push": 1, - "x.length": 8, - "m.exec": 1, - "l.relative": 6, - "x.shift": 4, - "l.match.ID.test": 2, - "q.expr": 4, - "q.set": 4, - "x.pop": 4, - "d.parentNode": 4, - "e.call": 1, - "f.push.apply": 1, - "k.contains": 5, - "a.sort": 1, - "": 1, - "matches=": 1, - "matchesSelector=": 1, - "l.order.length": 1, - "l.order": 1, - "l.leftMatch": 1, - "j.substr": 1, - "": 1, - "__sizzle__": 1, - "sizzle": 1, - "l.match.PSEUDO.test": 1, - "a.document.nodeType": 1, - "a.getElementsByClassName": 3, - "a.lastChild.className": 1, - "l.order.splice": 1, - "l.find.CLASS": 1, - "b.getElementsByClassName": 2, - "c.documentElement.contains": 1, - "a.contains": 2, - "c.documentElement.compareDocumentPosition": 1, - "a.compareDocumentPosition": 1, - "a.ownerDocument": 1, - ".documentElement": 1, - "b.nodeName": 2, - "l.match.PSEUDO.exec": 1, - "l.match.PSEUDO": 1, - "f.expr": 4, - "k.selectors": 1, - "f.expr.filters": 3, - "f.unique": 4, - "f.text": 2, - "k.getText": 1, - "/Until": 1, - "parents": 2, - "prevUntil": 2, - "prevAll": 2, - "U": 1, - "f.expr.match.POS": 1, - "V": 2, - "children": 3, - "contents": 4, - "next": 9, - "prev": 2, - ".filter": 2, - "": 1, - "e.splice": 1, - "this.filter": 2, - "": 1, - "": 1, - ".is": 2, - "c.push": 3, - "g.parentNode": 2, - "U.test": 1, - "": 1, - "f.find.matchesSelector": 2, - "g.ownerDocument": 1, - "this.parent": 2, - ".children": 1, - "a.jquery": 2, - "f.merge": 2, - "this.get": 1, - "andSelf": 1, - "this.add": 1, - "f.dir": 6, - "parentsUntil": 1, - "f.nth": 2, - "nextAll": 1, - "nextUntil": 1, - "siblings": 1, - "f.sibling": 2, - "a.parentNode.firstChild": 1, - "a.contentDocument": 1, - "a.contentWindow.document": 1, - "a.childNodes": 1, - "T.call": 1, - "P.test": 1, - "f.filter": 2, - "R.test": 1, - "Q.test": 1, - "e.reverse": 1, - "g.join": 1, - "f.find.matches": 1, - "dir": 1, - "sibling": 1, - "a.nextSibling": 1, - "<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:]+)[^>": 1, - "/ig": 3, - "tbody/i": 1, - "bc": 1, - "bd": 1, - "/checked": 1, - "s*.checked.": 1, - "java": 1, - "ecma": 1, - "script/i": 1, - "CDATA": 1, - "bg": 3, - "legend": 1, - "thead": 2, - "tr": 23, - "td": 3, - "col": 7, - "_default": 5, - "bg.optgroup": 1, - "bg.option": 1, - "bg.tbody": 1, - "bg.tfoot": 1, - "bg.colgroup": 1, - "bg.caption": 1, - "bg.thead": 1, - "bg.th": 1, - "bg.td": 1, - "f.support.htmlSerialize": 1, - "bg._default": 2, - "c.text": 2, - "this.empty": 3, - ".append": 6, - ".createTextNode": 1, - "wrapAll": 1, - ".wrapAll": 2, - ".eq": 1, - ".clone": 1, - "b.map": 1, - "wrapInner": 1, - ".wrapInner": 1, - "b.contents": 1, - "c.wrapAll": 1, - "b.append": 1, - "wrap": 2, - "unwrap": 1, - ".replaceWith": 1, - "this.childNodes": 1, - ".end": 1, - "append": 1, - "this.domManip": 4, - "this.appendChild": 1, - "prepend": 1, - "this.insertBefore": 1, - "this.firstChild": 1, - "this.parentNode.insertBefore": 2, - "a.push.apply": 2, - "this.nextSibling": 2, - ".toArray": 1, - "f.cleanData": 4, - "d.parentNode.removeChild": 1, - "b.getElementsByTagName": 1, - "this.map": 3, - "f.clone": 2, - ".innerHTML.replace": 1, - "bc.test": 2, - "f.support.leadingWhitespace": 2, - "Z.test": 2, - "_.exec": 2, - ".getElementsByTagName": 2, - ".innerHTML": 3, - "c.html": 3, - "replaceWith": 1, - "c.replaceWith": 1, - ".detach": 1, - "this.parentNode": 1, - ".remove": 2, - ".before": 1, - "detach": 1, - "this.remove": 1, - "domManip": 1, - "f.support.checkClone": 2, - "bd.test": 2, - ".domManip": 1, - "g.html": 1, - "g.domManip": 1, - "j.parentNode": 1, - "f.support.parentNode": 1, - "i.nodeType": 1, - "i.childNodes.length": 1, - "f.buildFragment": 2, - "e.fragment": 1, - "h.childNodes.length": 1, - "h.firstChild": 2, - "": 1, - "k.length": 2, - ".charAt": 1, - "f.fragments": 3, - "i.createDocumentFragment": 1, - "f.clean": 1, - "appendTo": 1, - "prependTo": 1, - "insertBefore": 1, - "insertAfter": 1, - "replaceAll": 1, - "g.childNodes.length": 1, - "this.clone": 1, - ".get": 3, - "d.concat": 1, - "e.selector": 1, - "f.support.noCloneEvent": 1, - "f.support.noCloneChecked": 1, - "b.createElement": 2, - "b.createTextNode": 2, - "k.replace": 2, - "o.innerHTML": 1, - "o.lastChild": 1, - "f.support.tbody": 1, - "ba.test": 1, - "o.firstChild": 2, - "o.firstChild.childNodes": 1, - "o.childNodes": 2, - "q.length": 1, - ".childNodes.length": 1, - ".parentNode.removeChild": 2, - "o.insertBefore": 1, - "Z.exec": 1, - "f.support.appendChecked": 1, - "k.nodeType": 1, - "h.push": 1, - "be.test": 1, - ".type.toLowerCase": 1, - "h.splice.apply": 1, - ".concat": 3, - "cleanData": 1, - "j.nodeName": 1, - "j.nodeName.toLowerCase": 1, - "f.removeEvent": 1, - "b.handle": 2, - "j.removeAttribute": 2, - "bo": 2, - "/alpha": 1, - "bp": 1, - "/opacity": 1, - "bq": 2, - "br": 19, - "ms": 2, - "bs": 2, - "bt": 42, - "bu": 11, - "bv": 2, - "de": 1, - "bw": 2, - "bz": 7, - "bA": 3, - "bB": 5, - "bC": 2, - "f.fn.css": 1, - "f.style": 4, - "cssHooks": 1, - "a.style.opacity": 2, - "cssNumber": 3, - "zIndex": 1, - "fontWeight": 1, - "zoom": 1, - "lineHeight": 1, - "widows": 1, - "orphans": 1, - "cssProps": 1, - "f.support.cssFloat": 1, - "f.cssHooks": 3, - "f.cssProps": 2, - "k.get": 1, - "bu.test": 1, - "d.replace": 1, - "f.cssNumber": 1, - "k.set": 1, - "g.get": 1, - "swap": 1, - "f.curCSS": 1, - "f.swap": 2, - "<0||e==null){e=a.style[b];return>": 1, - "0px": 1, - "f.support.opacity": 1, - "f.cssHooks.opacity": 1, - "bp.test": 1, - "a.currentStyle": 4, - "a.currentStyle.filter": 1, - "a.style.filter": 1, - "RegExp.": 1, - "c.zoom": 1, - "b*100": 1, - "d.filter": 1, - "c.filter": 2, - "bo.test": 1, - "g.replace": 1, - "f.support.reliableMarginRight": 1, - "f.cssHooks.marginRight": 1, - "a.style.marginRight": 1, - "a.ownerDocument.defaultView": 1, - "e.getComputedStyle": 1, - "g.getPropertyValue": 1, - "a.ownerDocument.documentElement": 1, - "c.documentElement.currentStyle": 1, - "a.runtimeStyle": 2, - "bs.test": 1, - "bt.test": 1, - "f.left": 3, - "a.runtimeStyle.left": 2, - "a.currentStyle.left": 1, - "f.pixelLeft": 1, - "f.expr.filters.hidden": 2, - "f.support.reliableHiddenOffsets": 1, - "f.expr.filters.visible": 1, - "bE": 2, - "bF": 1, - "bG": 3, - "n/g": 1, - "bH": 2, - "/#.*": 1, - "bI": 1, - "/mg": 1, - "bJ": 1, - "color": 4, - "date": 1, - "datetime": 1, - "email": 2, - "month": 1, - "range": 2, - "search": 5, - "tel": 2, - "time": 1, - "week": 1, - "bK": 1, - "about": 1, - "storage": 1, - "extension": 1, - "widget": 1, - "bL": 1, - "GET": 1, - "bM": 2, - "bN": 2, - "bO": 2, - "<\\/script>": 2, - "/gi": 2, - "bP": 1, - "bR": 2, - "*/": 2, - "bS": 1, - "bT": 2, - "f.fn.load": 1, - "bV": 3, - "bW": 5, - "bX": 8, - "e.href": 1, - "bY": 1, - "bW.href": 2, - "bS.exec": 1, - "bW.toLowerCase": 1, - "bT.apply": 1, - "a.slice": 2, - "f.param": 2, - "f.ajaxSettings.traditional": 2, - "complete": 6, - "a.responseText": 1, - "a.isResolved": 1, - "a.done": 1, - "i.html": 1, - "i.each": 1, - "serialize": 1, - "this.serializeArray": 1, - "serializeArray": 1, - "this.elements": 2, - "this.disabled": 1, - "this.checked": 1, - "bP.test": 1, - "bJ.test": 1, - ".map": 1, - "b.name": 2, - "success": 2, - "getScript": 1, - "f.get": 2, - "getJSON": 1, - "ajaxSetup": 1, - "f.ajaxSettings": 4, - "ajaxSettings": 1, - "isLocal": 1, - "bK.test": 1, - "contentType": 4, - "processData": 3, - "accepts": 5, - "xml": 3, - "json": 2, - "/xml/": 1, - "/html/": 1, - "/json/": 1, - "responseFields": 1, - "converters": 2, - "a.String": 1, - "f.parseXML": 1, - "ajaxPrefilter": 1, - "ajaxTransport": 1, - "ajax": 2, - "clearTimeout": 2, - "v.readyState": 1, - "d.ifModified": 1, - "v.getResponseHeader": 2, - "f.lastModified": 1, - "f.etag": 1, - "v.status": 1, - "v.statusText": 1, - "h.resolveWith": 1, - "h.rejectWith": 1, - "v.statusCode": 2, - "g.trigger": 2, - "i.resolveWith": 1, - "f.active": 1, - "f.ajaxSetup": 3, - "d.statusCode": 1, - "readyState": 1, - "setRequestHeader": 6, - "getAllResponseHeaders": 1, - "getResponseHeader": 1, - "bI.exec": 1, - "overrideMimeType": 1, - "d.mimeType": 1, - "abort": 4, - "p.abort": 1, - "h.promise": 1, - "v.success": 1, - "v.done": 1, - "v.error": 1, - "v.fail": 1, - "v.complete": 1, - "i.done": 1, - "<2)for(b>": 1, - "url=": 1, - "dataTypes=": 1, - "crossDomain=": 2, - "exec": 8, - "80": 2, - "443": 2, - "param": 3, - "traditional": 1, - "s=": 12, - "t=": 19, - "toUpperCase": 1, - "hasContent=": 1, - "active": 2, - "ajaxStart": 1, - "hasContent": 2, - "cache=": 1, - "x=": 1, - "y=": 5, - "1_=": 1, - "_=": 1, - "Content": 1, - "Type": 1, - "ifModified": 1, - "lastModified": 3, - "Modified": 1, - "etag": 3, - "None": 1, - "Accept": 1, - "dataTypes": 4, - "q=": 1, - "01": 1, - "beforeSend": 2, - "p=": 5, - "No": 1, - "Transport": 1, - "readyState=": 1, - "ajaxSend": 1, - "v.abort": 1, - "d.timeout": 1, - "p.send": 1, - "encodeURIComponent": 2, - "f.isPlainObject": 1, - "d.join": 1, - "cc": 2, - "cd": 3, - "jsonp": 1, - "jsonpCallback": 1, - "f.ajaxPrefilter": 2, - "b.contentType": 1, - "b.data": 5, - "b.dataTypes": 2, - "b.jsonp": 3, - "cd.test": 2, - "b.url": 4, - "b.jsonpCallback": 4, - "d.always": 1, - "b.converters": 1, - "/javascript": 1, - "ecmascript/": 1, - "a.cache": 2, - "a.crossDomain": 2, - "a.global": 1, - "f.ajaxTransport": 2, - "c.head": 1, - "c.getElementsByTagName": 1, - "send": 2, - "d.async": 1, - "a.scriptCharset": 2, - "d.charset": 1, - "d.src": 1, - "a.url": 1, - "d.onload": 3, - "d.onreadystatechange": 2, - "d.readyState": 2, - "/loaded": 1, - "complete/.test": 1, - "e.removeChild": 1, - "e.insertBefore": 1, - "e.firstChild": 1, - "ce": 6, - "cg": 7, - "cf": 7, - "f.ajaxSettings.xhr": 2, - "this.isLocal": 1, - "cors": 1, - "f.support.ajax": 1, - "c.crossDomain": 3, - "f.support.cors": 1, - "c.xhr": 1, - "c.username": 2, - "h.open": 2, - "c.url": 2, - "c.password": 1, - "c.xhrFields": 3, - "c.mimeType": 2, - "h.overrideMimeType": 2, - "h.setRequestHeader": 1, - "h.send": 1, - "c.hasContent": 1, - "h.readyState": 3, - "h.onreadystatechange": 2, - "h.abort": 1, - "h.status": 1, - "h.getAllResponseHeaders": 1, - "h.responseXML": 1, - "n.documentElement": 1, - "m.xml": 1, - "m.text": 2, - "h.responseText": 1, - "h.statusText": 1, - "c.isLocal": 1, - ".unload": 1, - "cm": 2, - "cn": 1, - "co": 5, - "cp": 1, - "cr": 20, - "a.webkitRequestAnimationFrame": 1, - "a.mozRequestAnimationFrame": 1, - "a.oRequestAnimationFrame": 1, - "this.animate": 2, - "d.style": 3, - ".style": 1, - "": 1, - "_toggle": 2, - "animate": 4, - "fadeTo": 1, - "queue=": 2, - "animatedProperties=": 1, - "animatedProperties": 2, - "specialEasing": 2, - "easing": 3, - "swing": 2, - "overflow=": 2, - "overflow": 2, - "overflowX": 1, - "overflowY": 1, - "float": 3, - "display=": 3, - "zoom=": 1, - "fx": 10, - "l=": 10, - "m=": 2, - "custom": 5, - "stop": 7, - "timers": 3, - "slideDown": 1, - "slideUp": 1, - "slideToggle": 1, - "fadeIn": 1, - "fadeOut": 1, - "fadeToggle": 1, - "duration": 4, - "duration=": 2, - "off": 1, - "speeds": 4, - "old=": 1, - "complete=": 1, - "old": 2, - "linear": 1, - "Math": 51, - "cos": 1, - "PI": 54, - "5": 23, - "options=": 1, - "prop=": 3, - "orig=": 1, - "orig": 3, - "step": 7, - "startTime=": 1, - "start=": 1, - "end=": 1, - "unit=": 1, - "unit": 1, - "now=": 1, - "pos=": 1, - "state=": 1, - "co=": 2, - "tick": 3, - "interval": 3, - "show=": 1, - "hide=": 1, - "e.duration": 3, - "this.startTime": 2, - "this.now": 3, - "this.end": 2, - "this.pos": 4, - "this.state": 3, - "this.update": 2, - "e.animatedProperties": 5, - "this.prop": 2, - "e.overflow": 2, - "f.support.shrinkWrapBlocks": 1, - "e.hide": 2, - ".hide": 2, - "e.show": 1, - "e.orig": 1, - "e.complete.call": 1, - "Infinity": 1, - "h/e.duration": 1, - "f.easing": 1, - "this.start": 2, - "*this.pos": 1, - "f.timers": 2, - "a.splice": 1, - "f.fx.stop": 1, - "clearInterval": 6, - "slow": 1, - "fast": 1, - "a.elem": 2, - "a.now": 4, - "a.elem.style": 3, - "a.prop": 5, - "Math.max": 10, - "a.unit": 1, - "f.expr.filters.animated": 1, - "b.elem": 1, - "cw": 1, - "able": 1, - "cx": 2, - "f.fn.offset": 2, - "f.offset.setOffset": 2, - "b.ownerDocument.body": 2, - "f.offset.bodyOffset": 2, - "b.getBoundingClientRect": 1, - "e.documentElement": 4, - "c.top": 4, - "c.left": 4, - "e.body": 3, - "g.clientTop": 1, - "h.clientTop": 1, - "g.clientLeft": 1, - "h.clientLeft": 1, - "i.pageYOffset": 1, - "g.scrollTop": 1, - "h.scrollTop": 2, - "i.pageXOffset": 1, - "g.scrollLeft": 1, - "h.scrollLeft": 2, - "f.offset.initialize": 3, - "b.offsetParent": 2, - "g.documentElement": 1, - "g.body": 1, - "g.defaultView": 1, - "j.getComputedStyle": 2, - "b.currentStyle": 2, - "b.offsetTop": 2, - "b.offsetLeft": 2, - "f.offset.supportsFixedPosition": 2, - "k.position": 4, - "b.scrollTop": 1, - "b.scrollLeft": 1, - "f.offset.doesNotAddBorder": 1, - "f.offset.doesAddBorderForTableAndCells": 1, - "cw.test": 1, - "c.borderTopWidth": 2, - "c.borderLeftWidth": 2, - "f.offset.subtractsBorderForOverflowNotVisible": 1, - "c.overflow": 1, - "i.offsetTop": 1, - "i.offsetLeft": 1, - "i.scrollTop": 1, - "i.scrollLeft": 1, - "f.offset": 1, - "initialize": 3, - "b.style": 1, - "d.nextSibling.firstChild.firstChild": 1, - "this.doesNotAddBorder": 1, - "e.offsetTop": 4, - "this.doesAddBorderForTableAndCells": 1, - "h.offsetTop": 1, - "e.style.position": 2, - "e.style.top": 2, - "this.supportsFixedPosition": 1, - "d.style.overflow": 1, - "d.style.position": 1, - "this.subtractsBorderForOverflowNotVisible": 1, - "this.doesNotIncludeMarginInBodyOffset": 1, - "a.offsetTop": 2, - "bodyOffset": 1, - "a.offsetLeft": 1, - "f.offset.doesNotIncludeMarginInBodyOffset": 1, - "setOffset": 1, - "a.style.position": 1, - "e.offset": 1, - "e.position": 1, - "l.top": 1, - "l.left": 1, - "b.top": 2, - "k.top": 1, - "g.top": 1, - "b.left": 2, - "k.left": 1, - "g.left": 1, - "b.using.call": 1, - "e.css": 1, - "this.offsetParent": 2, - "this.offset": 2, - "cx.test": 2, - "b.offset": 1, - "d.top": 2, - "d.left": 2, - "offsetParent": 1, - "a.offsetParent": 1, - "g.document.documentElement": 1, - "g.document.body": 1, - "g.scrollTo": 1, - ".scrollLeft": 1, - ".scrollTop": 1, - "e.document.documentElement": 1, - "e.document.compatMode": 1, - "e.document.body": 1, - "this.css": 1, - "Prioritize": 1, - "": 1, - "XSS": 1, - "location.hash": 1, - "#9521": 1, - "Matches": 1, - "dashed": 1, - "camelizing": 1, - "rdashAlpha": 1, - "rmsPrefix": 1, - "fcamelCase": 1, - "letter": 3, - "readyList.fireWith": 1, - ".off": 1, - "jQuery.Callbacks": 2, - "IE8": 2, - "exceptions": 2, - "#9897": 1, - "elems": 9, - "chainable": 4, - "emptyGet": 3, - "bulk": 3, - "elems.length": 1, - "Sets": 3, - "jQuery.access": 2, - "Optionally": 1, - "executed": 1, - "Bulk": 1, - "operations": 1, - "iterate": 1, - "executing": 1, - "exec.call": 1, - "they": 2, - "run": 1, - "against": 1, - "entire": 1, - "fn.call": 2, - "value.call": 1, - "Gets": 2, - "frowned": 1, - "upon.": 1, - "More": 1, - "//docs.jquery.com/Utilities/jQuery.browser": 1, - "ua": 6, - "ua.toLowerCase": 1, - "rwebkit.exec": 1, - "ropera.exec": 1, - "rmsie.exec": 1, - "ua.indexOf": 1, - "rmozilla.exec": 1, - "jQuerySub": 7, - "jQuerySub.fn.init": 2, - "jQuerySub.superclass": 1, - "jQuerySub.fn": 2, - "jQuerySub.prototype": 1, - "jQuerySub.fn.constructor": 1, - "jQuerySub.sub": 1, - "jQuery.fn.init.call": 1, - "rootjQuerySub": 2, - "jQuerySub.fn.init.prototype": 1, - "jQuery.uaMatch": 1, - "browserMatch.browser": 2, - "jQuery.browser.version": 1, - "browserMatch.version": 1, - "jQuery.browser.webkit": 1, - "jQuery.browser.safari": 1, - "flagsCache": 3, - "createFlags": 2, - "flags": 13, - "flags.split": 1, - "flags.length": 1, - "Convert": 1, - "formatted": 2, - "Actual": 2, - "Stack": 1, - "fire": 4, - "calls": 1, - "repeatable": 1, - "lists": 2, - "stack": 2, - "forgettable": 1, - "memory": 8, - "Flag": 2, - "First": 3, - "fireWith": 1, - "firingStart": 3, - "End": 1, - "firingLength": 4, - "Index": 1, - "firingIndex": 5, - "several": 1, - "actual": 1, - "Inspect": 1, - "recursively": 1, - "mode": 1, - "flags.unique": 1, - "self.has": 1, - "list.push": 1, - "Fire": 1, - "flags.memory": 1, - "flags.stopOnFalse": 1, - "Mark": 1, - "halted": 1, - "flags.once": 1, - "stack.length": 1, - "stack.shift": 1, - "self.fireWith": 1, - "self.disable": 1, - "Callbacks": 1, - "collection": 3, - "Do": 2, - "current": 7, - "batch": 2, - "With": 1, - "/a": 1, - ".55": 1, - "basic": 1, - "all.length": 1, - "supports": 2, - "select.appendChild": 1, - "strips": 1, - "leading": 1, - "div.firstChild.nodeType": 1, - "manipulated": 1, - "normalizes": 1, - "around": 1, - "issue.": 1, - "#5145": 1, - "existence": 1, - "styleFloat": 1, - "a.style.cssFloat": 1, - "defaults": 3, - "working": 1, - "property.": 1, - "too": 1, - "marked": 1, - "marks": 1, - "select.disabled": 1, - "support.optDisabled": 1, - "opt.disabled": 1, - "handlers": 1, - "support.noCloneEvent": 1, - "div.cloneNode": 1, - "maintains": 1, - "#11217": 1, - "loses": 1, - "div.lastChild": 1, - "conMarginTop": 3, - "paddingMarginBorder": 5, - "positionTopLeftWidthHeight": 3, - "paddingMarginBorderVisibility": 3, - "container": 4, - "container.style.cssText": 1, - "body.insertBefore": 1, - "body.firstChild": 1, - "Construct": 1, - "container.appendChild": 1, - "cells": 3, - "still": 4, - "offsetWidth/Height": 3, - "visible": 1, - "row": 1, - "reliable": 1, - "offsets": 1, - "safety": 1, - "goggles": 1, - "#4512": 1, - "fails": 2, - "support.reliableHiddenOffsets": 1, - "explicit": 1, - "right": 3, - "incorrectly": 1, - "computed": 1, - "based": 1, - "container.": 1, - "#3333": 1, - "Feb": 1, - "Bug": 1, - "getComputedStyle": 3, - "returns": 1, - "wrong": 1, - "window.getComputedStyle": 6, - "marginDiv.style.width": 1, - "marginDiv.style.marginRight": 1, - "div.style.width": 2, - "support.reliableMarginRight": 1, - "div.style.zoom": 2, - "natively": 1, - "block": 4, - "act": 1, - "setting": 2, - "giving": 1, - "layout": 2, - "div.style.padding": 1, - "div.style.border": 1, - "div.style.overflow": 2, - "div.style.display": 2, - "support.inlineBlockNeedsLayout": 1, - "div.offsetWidth": 2, - "shrink": 1, - "support.shrinkWrapBlocks": 1, - "div.style.cssText": 1, - "outer.firstChild": 1, - "outer.nextSibling.firstChild.firstChild": 1, - "offsetSupport": 2, - "doesNotAddBorder": 1, - "inner.offsetTop": 4, - "doesAddBorderForTableAndCells": 1, - "td.offsetTop": 1, - "inner.style.position": 2, - "inner.style.top": 2, - "safari": 1, - "subtracts": 1, - "here": 1, - "offsetSupport.fixedPosition": 1, - "outer.style.overflow": 1, - "outer.style.position": 1, - "offsetSupport.subtractsBorderForOverflowNotVisible": 1, - "offsetSupport.doesNotIncludeMarginInBodyOffset": 1, - "body.offsetTop": 1, - "div.style.marginTop": 1, - "support.pixelMargin": 1, - ".marginTop": 1, - "container.style.zoom": 2, - "body.removeChild": 1, - "rbrace": 1, - "Please": 1, - "caution": 1, - "Unique": 1, - "page": 1, - "rinlinejQuery": 1, - "jQuery.fn.jquery": 1, - "following": 1, - "uncatchable": 1, - "you": 1, - "attempt": 2, - "them.": 1, - "Ban": 1, - "except": 1, - "Flash": 1, - "jQuery.acceptData": 2, - "privateCache": 1, - "differently": 1, - "because": 1, - "IE6": 1, - "order": 1, - "collisions": 1, - "between": 1, - "user": 1, - "data.": 1, - "thisCache.data": 3, - "Users": 1, - "should": 1, - "inspect": 1, - "undocumented": 1, - "subject": 1, - "change.": 1, - "But": 1, - "anyone": 1, - "listen": 1, - "No.": 1, - "isEvents": 1, - "privateCache.events": 1, - "converted": 2, - "camel": 2, - "names": 2, - "camelCased": 1, - "Reference": 1, - "entry": 1, - "purpose": 1, - "continuing": 1, - "Support": 1, - "space": 1, - "separated": 1, - "jQuery.isArray": 1, - "manipulation": 1, - "cased": 1, - "name.split": 1, - "name.length": 1, - "want": 1, - "let": 1, - "destroyed": 2, - "jQuery.isEmptyObject": 1, - "Don": 1, - "care": 1, - "Ensure": 1, - "#10080": 1, - "cache.setInterval": 1, - "part": 8, - "jQuery._data": 2, - "elem.attributes": 1, - "self.triggerHandler": 2, - "jQuery.isNumeric": 1, - "All": 1, - "lowercase": 1, - "Grab": 1, - "necessary": 1, - "hook": 1, - "nodeHook": 1, - "attrNames": 3, - "isBool": 4, - "rspace": 1, - "attrNames.length": 1, - "#9699": 1, - "explanation": 1, - "approach": 1, - "removal": 1, - "#10870": 1, - "**": 1, - "timeStamp": 1, - "char": 2, - "buttons": 1, - "SHEBANG#!node": 2, - "http.createServer": 1, - "res.writeHead": 1, - "res.end": 1, - ".listen": 1, - "Date.prototype.toJSON": 2, - "isFinite": 1, - "this.valueOf": 2, - "this.getUTCFullYear": 1, - "this.getUTCMonth": 1, - "this.getUTCDate": 1, - "this.getUTCHours": 1, - "this.getUTCMinutes": 1, - "this.getUTCSeconds": 1, - "String.prototype.toJSON": 1, - "Number.prototype.toJSON": 1, - "Boolean.prototype.toJSON": 1, - "u0000": 1, - "u00ad": 1, - "u0600": 1, - "u0604": 1, - "u070f": 1, - "u17b4": 1, - "u17b5": 1, - "u200c": 1, - "u200f": 1, - "u2028": 3, - "u202f": 1, - "u2060": 1, - "u206f": 1, - "ufeff": 1, - "ufff0": 1, - "uffff": 1, - "escapable": 1, - "/bfnrt": 1, - "fA": 2, - "JSON.parse": 1, - "PUT": 1, - "DELETE": 1, - "_id": 1, - "ties": 1, - "collection.": 1, - "_removeReference": 1, - "model.collection": 2, - "model.unbind": 1, - "this._onModelEvent": 1, - "_onModelEvent": 1, - "ev": 5, - "this._remove": 1, - "model.idAttribute": 2, - "this._byId": 2, - "model.previous": 1, - "model.id": 1, - "this.trigger.apply": 2, - "_.each": 1, - "Backbone.Collection.prototype": 1, - "this.models": 1, - "_.toArray": 1, - "Backbone.Router": 1, - "options.routes": 2, - "this.routes": 4, - "this._bindRoutes": 1, - "this.initialize.apply": 2, - "namedParam": 2, - "splatParam": 2, - "escapeRegExp": 2, - "_.extend": 9, - "Backbone.Router.prototype": 1, - "Backbone.Events": 2, - "route": 18, - "Backbone.history": 2, - "Backbone.History": 2, - "_.isRegExp": 1, - "this._routeToRegExp": 1, - "Backbone.history.route": 1, - "_.bind": 2, - "this._extractParameters": 1, - "callback.apply": 1, - "navigate": 2, - "triggerRoute": 4, - "Backbone.history.navigate": 1, - "_bindRoutes": 1, - "routes": 4, - "routes.unshift": 1, - "routes.length": 1, - "this.route": 1, - "_routeToRegExp": 1, - "route.replace": 1, - "_extractParameters": 1, - "route.exec": 1, - "this.handlers": 2, - "_.bindAll": 1, - "hashStrip": 4, - "#*": 1, - "isExplorer": 1, - "/msie": 1, - "historyStarted": 3, - "Backbone.History.prototype": 1, - "getFragment": 1, - "forcePushState": 2, - "this._hasPushState": 6, - "window.location.pathname": 1, - "window.location.search": 1, - "fragment.indexOf": 1, - "this.options.root": 6, - "fragment.substr": 1, - "this.options.root.length": 1, - "window.location.hash": 3, - "fragment.replace": 1, - "this._wantsPushState": 3, - "this.options.pushState": 2, - "window.history": 2, - "window.history.pushState": 2, - "this.getFragment": 6, - "docMode": 3, - "document.documentMode": 3, - "oldIE": 3, - "isExplorer.exec": 1, - "navigator.userAgent.toLowerCase": 1, - "this.iframe": 4, - ".contentWindow": 1, - "this.navigate": 2, - ".bind": 3, - "this.checkUrl": 3, - "setInterval": 6, - "this.interval": 1, - "this.fragment": 13, - "loc": 2, - "atRoot": 3, - "loc.pathname": 1, - "loc.hash": 1, - "loc.hash.replace": 1, - "window.history.replaceState": 1, - "document.title": 2, - "loc.protocol": 2, - "loc.host": 2, - "this.loadUrl": 4, - "this.handlers.unshift": 1, - "checkUrl": 1, - "this.iframe.location.hash": 3, - "decodeURIComponent": 2, - "loadUrl": 1, - "fragmentOverride": 2, - "matched": 2, - "_.any": 1, - "handler.route.test": 1, - "handler.callback": 1, - "frag": 13, - "frag.indexOf": 1, - "this.iframe.document.open": 1, - ".close": 1, - "Backbone.View": 1, - "this.cid": 3, - "_.uniqueId": 1, - "this._configure": 1, - "this._ensureElement": 1, - "this.delegateEvents": 1, - "selectorDelegate": 2, - "this.el": 10, - "eventSplitter": 2, - "viewOptions": 2, - "Backbone.View.prototype": 1, - "tagName": 3, - "render": 1, - "el": 4, - ".attr": 1, - ".html": 1, - "delegateEvents": 1, - "this.events": 1, - "key.match": 1, - "_configure": 1, - "viewOptions.length": 1, - "_ensureElement": 1, - "attrs": 6, - "this.attributes": 1, - "this.id": 2, - "attrs.id": 1, - "this.make": 1, - "this.tagName": 1, - "_.isString": 1, - "protoProps": 6, - "classProps": 2, - "inherits": 2, - "child.extend": 1, - "this.extend": 1, - "Backbone.Model.extend": 1, - "Backbone.Collection.extend": 1, - "Backbone.Router.extend": 1, - "Backbone.View.extend": 1, - "methodMap": 2, - "Backbone.sync": 1, - "params": 2, - "params.url": 2, - "getUrl": 2, - "urlError": 2, - "params.data": 5, - "params.contentType": 2, - "model.toJSON": 1, - "Backbone.emulateJSON": 2, - "params.processData": 1, - "Backbone.emulateHTTP": 1, - "params.data._method": 1, - "params.type": 1, - "params.beforeSend": 1, - "xhr": 1, - "xhr.setRequestHeader": 1, - ".ajax": 1, - "staticProps": 3, - "protoProps.hasOwnProperty": 1, - "protoProps.constructor": 1, - "parent.apply": 1, - "child.prototype.constructor": 1, - "object.url": 4, - "_.isFunction": 1, - "wrapError": 1, - "onError": 3, - "resp": 3, - "model.trigger": 1, - "escapeHTML": 1, - "string.replace": 1, - "#x": 1, - "da": 1, - "": 1, - "lt": 55, - "#x27": 1, - "#x2F": 1, - "window.Modernizr": 1, - "Modernizr": 12, - "enableClasses": 3, - "docElement": 1, - "mod": 12, - "modElem": 2, - "mStyle": 2, - "modElem.style": 1, - "inputElem": 6, - "smile": 4, - "prefixes": 2, - "omPrefixes": 1, - "cssomPrefixes": 2, - "omPrefixes.split": 1, - "domPrefixes": 3, - "omPrefixes.toLowerCase": 1, - "ns": 1, - "inputs": 3, - "classes": 1, - "classes.slice": 1, - "featureName": 5, - "testing": 1, - "injectElementWithStyles": 9, - "rule": 5, - "testnames": 3, - "fakeBody": 4, - "node.id": 1, - "div.id": 1, - "fakeBody.appendChild": 1, - "//avoid": 1, - "crashing": 1, - "fakeBody.style.background": 1, - "docElement.appendChild": 2, - "fakeBody.parentNode.removeChild": 1, - "div.parentNode.removeChild": 1, - "testMediaQuery": 2, - "mq": 3, - "matchMedia": 3, - "window.matchMedia": 1, - "window.msMatchMedia": 1, - ".matches": 1, - "bool": 30, - "node.currentStyle": 2, - "isEventSupported": 5, - "TAGNAMES": 2, - "element.setAttribute": 3, - "element.removeAttribute": 2, - "_hasOwnProperty": 2, - "hasOwnProperty": 5, - "_hasOwnProperty.call": 2, - "object.constructor.prototype": 1, - "Function.prototype.bind": 2, - "slice.call": 3, - "F.prototype": 1, - "target.prototype": 1, - "target.apply": 2, - "args.concat": 2, - "setCss": 7, - "str": 4, - "mStyle.cssText": 1, - "setCssAll": 2, - "str1": 6, - "str2": 4, - "prefixes.join": 3, - "substr": 2, - "testProps": 3, - "prefixed": 7, - "testDOMProps": 2, - "item": 4, - "item.bind": 1, - "testPropsAll": 17, - "ucProp": 5, - "prop.charAt": 1, - "prop.substr": 1, - "cssomPrefixes.join": 1, - "elem.getContext": 2, - ".getContext": 8, - ".fillText": 1, - "window.WebGLRenderingContext": 1, - "window.DocumentTouch": 1, - "DocumentTouch": 1, - "node.offsetTop": 1, - "window.postMessage": 1, - "window.openDatabase": 1, - "history.pushState": 1, - "mStyle.backgroundColor": 3, - "mStyle.background": 1, - ".style.textShadow": 1, - "mStyle.opacity": 1, - "str3": 2, - "str1.length": 1, - "mStyle.backgroundImage": 1, - "docElement.style": 1, - "node.offsetLeft": 1, - "node.offsetHeight": 2, - "document.styleSheets": 1, - "document.styleSheets.length": 1, - "cssText": 4, - "style.cssRules": 3, - "style.cssText": 1, - "/src/i.test": 1, - "cssText.indexOf": 1, - "rule.split": 1, - "elem.canPlayType": 10, - "Boolean": 2, - "bool.ogg": 2, - "bool.h264": 1, - "bool.webm": 1, - "bool.mp3": 1, - "bool.wav": 1, - "bool.m4a": 1, - "localStorage.setItem": 1, - "localStorage.removeItem": 1, - "sessionStorage.setItem": 1, - "sessionStorage.removeItem": 1, - "window.Worker": 1, - "window.applicationCache": 1, - "document.createElementNS": 6, - "ns.svg": 4, - ".createSVGRect": 1, - "div.firstChild.namespaceURI": 1, - "/SVGAnimate/.test": 1, - "toString.call": 2, - "/SVGClipPath/.test": 1, - "webforms": 2, - "props.length": 2, - "attrs.list": 2, - "window.HTMLDataListElement": 1, - "inputElemType": 5, - "defaultView": 2, - "inputElem.setAttribute": 1, - "inputElem.type": 1, - "inputElem.value": 2, - "inputElem.style.cssText": 1, - "inputElem.style.WebkitAppearance": 1, - "document.defaultView": 1, - "defaultView.getComputedStyle": 2, - ".WebkitAppearance": 1, - "inputElem.offsetHeight": 1, - "docElement.removeChild": 1, - "inputElem.checkValidity": 2, - "feature": 12, - "feature.toLowerCase": 2, - "classes.push": 1, - "Modernizr.input": 1, - "Modernizr.addTest": 2, - "docElement.className": 2, - "chaining.": 1, - "window.html5": 2, - "reSkip": 1, - "saveClones": 1, - "fieldset": 1, - "h1": 5, - "h2": 5, - "h3": 3, - "h4": 3, - "h5": 1, - "h6": 1, - "img": 1, - "label": 2, - "li": 19, - "ol": 1, - "span": 1, - "strong": 1, - "tfoot": 1, - "th": 1, - "ul": 1, - "supportsHtml5Styles": 5, - "supportsUnknownElements": 3, - "//if": 2, - "implemented": 1, - "assume": 1, - "Styles": 1, - "Chrome": 2, - "additional": 1, - "solve": 1, - "node.hidden": 1, - ".display": 1, - "a.childNodes.length": 1, - "frag.cloneNode": 1, - "frag.createDocumentFragment": 1, - "frag.createElement": 2, - "addStyleSheet": 2, - "ownerDocument.createElement": 3, - "ownerDocument.getElementsByTagName": 1, - "ownerDocument.documentElement": 1, - "p.innerHTML": 1, - "parent.insertBefore": 1, - "p.lastChild": 1, - "parent.firstChild": 1, - "getElements": 2, - "html5.elements": 1, - "elements.split": 1, - "shivMethods": 2, - "docCreateElement": 5, - "docCreateFragment": 2, - "ownerDocument.createDocumentFragment": 2, - "//abort": 1, - "shiv": 1, - "html5.shivMethods": 1, - "saveClones.test": 1, - "node.canHaveChildren": 1, - "reSkip.test": 1, - "frag.appendChild": 1, - "html5": 3, - "shivDocument": 3, - "shived": 5, - "ownerDocument.documentShived": 2, - "html5.shivCSS": 1, - "options.elements": 1, - "options.shivCSS": 1, - "options.shivMethods": 1, - "Modernizr._version": 1, - "Modernizr._prefixes": 1, - "Modernizr._domPrefixes": 1, - "Modernizr._cssomPrefixes": 1, - "Modernizr.mq": 1, - "Modernizr.hasEvent": 1, - "Modernizr.testProp": 1, - "Modernizr.testAllProps": 1, - "Modernizr.testStyles": 1, - "Modernizr.prefixed": 1, - "docElement.className.replace": 1, - "js": 1, - "classes.join": 1, - "this.document": 1, - "window.angular": 1, - "PEG.parser": 1, - "quote": 3, - "result0": 264, - "result1": 81, - "result2": 77, - "parse_singleQuotedCharacter": 3, - "result1.push": 3, - "input.charCodeAt": 18, - "pos": 197, - "reportFailures": 64, - "matchFailed": 40, - "pos1": 63, - "chars": 1, - "chars.join": 1, - "pos0": 51, - "parse_simpleSingleQuotedCharacter": 2, - "parse_simpleEscapeSequence": 3, - "parse_zeroEscapeSequence": 3, - "parse_hexEscapeSequence": 3, - "parse_unicodeEscapeSequence": 3, - "parse_eolEscapeSequence": 3, - "pos2": 22, - "parse_eolChar": 6, - "input.length": 9, - "input.charAt": 21, - "char_": 9, - "parse_class": 1, - "result3": 35, - "result4": 12, - "result5": 4, - "parse_classCharacterRange": 3, - "parse_classCharacter": 5, - "result2.push": 1, - "parse___": 2, - "inverted": 4, - "partsConverted": 2, - "part.data": 1, - "rawText": 5, - "part.rawText": 1, - "ignoreCase": 1, - "begin": 1, - "begin.data.charCodeAt": 1, - "end.data.charCodeAt": 1, - "this.SyntaxError": 2, - "begin.rawText": 2, - "end.rawText": 2, - "begin.data": 1, - "end.data": 1, - "parse_bracketDelimitedCharacter": 2, - "quoteForRegexpClass": 1, - "parse_simpleBracketDelimitedCharacter": 2, - "parse_digit": 3, - "recognize": 1, - "input.substr": 9, - "parse_hexDigit": 7, - "String.fromCharCode": 4, - "parse_eol": 4, - "eol": 2, - "parse_letter": 1, - "parse_lowerCaseLetter": 2, - "parse_upperCaseLetter": 2, - "parse_whitespace": 3, - "parse_comment": 3, - "result0.push": 1, - "parse_singleLineComment": 2, - "parse_multiLineComment": 2, - "u2029": 2, - "x0B": 1, - "uFEFF": 1, - "u1680": 1, - "u180E": 1, - "u2000": 1, - "u200A": 1, - "u202F": 1, - "u205F": 1, - "u3000": 1, - "cleanupExpected": 2, - "expected": 12, - "expected.sort": 1, - "lastExpected": 3, - "cleanExpected": 2, - "expected.length": 4, - "cleanExpected.push": 1, - "computeErrorPosition": 2, - "line": 14, - "column": 8, - "seenCR": 5, - "rightmostFailuresPos": 2, - "parseFunctions": 1, - "startRule": 1, - "errorPosition": 1, - "rightmostFailuresExpected": 1, - "errorPosition.line": 1, - "errorPosition.column": 1, - "toSource": 1, - "this._source": 1, - "result.SyntaxError": 1, - "buildMessage": 2, - "expectedHumanized": 5, - "foundHumanized": 3, - "expected.slice": 1, - "this.expected": 1, - "this.found": 1, - "this.message": 3, - "this.line": 3, - "this.column": 1, - "result.SyntaxError.prototype": 1, - "Error.prototype": 1, - "steelseries": 10, - "n.charAt": 1, - "n.substring": 1, - "i.substring": 3, - "this.color": 1, - "ui": 31, - "/255": 1, - "t.getRed": 4, - "t.getGreen": 4, - "t.getBlue": 4, - "t.getAlpha": 4, - "i.getRed": 1, - "i.getGreen": 1, - "i.getBlue": 1, - "i.getAlpha": 1, - "*f": 2, - "w/r": 1, - "p/r": 1, - "s/r": 1, - "o/r": 1, - "e*u": 1, - ".toFixed": 3, - "l*u": 1, - "c*u": 1, - "h*u": 1, - "vr": 20, - "Math.floor": 26, - "Math.log10": 1, - "n/Math.pow": 1, - "": 1, - "beginPath": 12, - "moveTo": 10, - "lineTo": 22, - "quadraticCurveTo": 4, - "closePath": 8, - "stroke": 7, - "canvas": 22, - "width=": 17, - "height=": 17, - "ii": 29, - "getContext": 26, - "2d": 26, - "ft": 70, - "fillStyle=": 13, - "rect": 3, - "fill": 10, - "getImageData": 1, - "wt": 26, - "32": 1, - "62": 1, - "84": 1, - "94": 1, - "ar": 20, - "255": 3, - "max": 1, - "min": 2, - ".5": 7, - "u/": 3, - "/u": 3, - "f/": 1, - "vt": 50, - "n*6": 2, - "i*": 3, - "h*t": 1, - "*t": 3, - "f*255": 1, - "u*255": 1, - "r*255": 1, - "st": 59, - "n/255": 1, - "t/255": 1, - "i/255": 1, - "f/r": 1, - "/f": 3, - "<0?0:n>": 1, - "si": 23, - "ti": 39, - "Math.round": 7, - "/r": 1, - "u*r": 1, - "ni": 30, - "tt": 53, - "ei": 26, - "ot": 43, - "i.gaugeType": 6, - "steelseries.GaugeType.TYPE4": 2, - "i.size": 6, - "i.minValue": 10, - "i.maxValue": 10, - "i.niceScale": 10, - "i.threshold": 10, - "/2": 25, - "i.section": 8, - "i.area": 4, - "lu": 10, - "i.titleString": 10, - "au": 10, - "i.unitString": 10, - "hu": 11, - "i.frameDesign": 10, - "steelseries.FrameDesign.METAL": 7, - "wu": 9, - "i.frameVisible": 10, - "i.backgroundColor": 10, - "steelseries.BackgroundColor.DARK_GRAY": 7, - "i.backgroundVisible": 10, - "pt": 48, - "i.pointerType": 4, - "steelseries.PointerType.TYPE1": 3, - "i.pointerColor": 4, - "steelseries.ColorDef.RED": 7, - "ee": 2, - "i.knobType": 4, - "steelseries.KnobType.STANDARD_KNOB": 14, - "fi": 26, - "i.knobStyle": 4, - "steelseries.KnobStyle.SILVER": 4, - "i.lcdColor": 8, - "steelseries.LcdColor.STANDARD": 9, - "i.lcdVisible": 8, - "eu": 13, - "i.lcdDecimals": 8, - "ye": 2, - "i.digitalFont": 8, - "pe": 2, - "i.fractionalScaleDecimals": 4, - "i.ledColor": 10, - "steelseries.LedColor.RED_LED": 7, - "ru": 14, - "i.ledVisible": 10, - "vf": 5, - "i.thresholdVisible": 8, - "kr": 17, - "i.minMeasuredValueVisible": 8, - "dr": 16, - "i.maxMeasuredValueVisible": 8, - "i.foregroundType": 6, - "steelseries.ForegroundType.TYPE1": 5, - "af": 5, - "i.foregroundVisible": 10, - "oe": 2, - "i.labelNumberFormat": 10, - "steelseries.LabelNumberFormat.STANDARD": 5, - "yr": 17, - "i.playAlarm": 10, - "uf": 5, - "i.alarmSound": 10, - "fe": 2, - "i.customLayer": 4, - "le": 1, - "i.tickLabelOrientation": 4, - "steelseries.GaugeType.TYPE1": 4, - "steelseries.TickLabelOrientation.TANGENT": 2, - "steelseries.TickLabelOrientation.NORMAL": 2, - "wr": 18, - "i.trendVisible": 4, - "hr": 17, - "i.trendColors": 4, - "steelseries.LedColor.GREEN_LED": 2, - "steelseries.LedColor.CYAN_LED": 2, - "sr": 21, - "i.useOdometer": 2, - "i.odometerParams": 2, - "wf": 4, - "i.odometerUseValue": 2, - "ki": 21, - "r.createElement": 11, - "ki.setAttribute": 2, - "yf": 3, - "ri": 24, - "ht": 34, - "ef": 5, - "steelseries.TrendState.OFF": 4, - "lr": 19, - "f*.06": 1, - "f*.29": 19, - "er": 19, - "f*.36": 4, - "et": 45, - "gi": 26, - "rr": 21, - "*lt": 9, - "r.getElementById": 7, - "u.save": 7, - "u.clearRect": 5, - "u.canvas.width": 7, - "u.canvas.height": 7, - "s/2": 2, - "k/2": 1, - "pf": 4, - ".6*s": 1, - "ne": 2, - ".4*k": 1, - "pr": 16, - "s/10": 1, - "ae": 2, - "hf": 4, - "k*.13": 2, - "s*.4": 1, - "sf": 5, - "rf": 5, - "k*.57": 1, - "tf": 5, - "k*.61": 1, - "Math.PI/2": 40, - "ue": 1, - "Math.PI/180": 5, - "ff": 5, - "ir": 23, - "nr": 22, - "ai": 21, - "yt": 32, - "fr": 21, - "oi": 23, - "lf": 5, - "re": 2, - "ai/": 2, - "h/vt": 1, - "*vt": 4, - "Math.ceil": 63, - "b/vt": 1, - "vt/": 3, - "ot.type": 10, - "Math.PI": 13, - "at/yt": 4, - "*Math.PI": 10, - "*ue": 1, - "ci/2": 1, - "wi": 24, - "nf": 7, - "wi.getContext": 2, - "di": 22, - "ut": 59, - "di.getContext": 2, - "fu": 13, - "hi": 15, - "f*.093457": 10, - "uu": 13, - "hi.getContext": 6, - "gt": 32, - "nu": 11, - "gt.getContext": 3, - "iu": 14, - "f*.028037": 6, - "se": 1, - "iu.getContext": 1, - "gr": 12, - "he": 1, - "gr.getContext": 1, - "vi": 16, - "tu": 13, - "vi.getContext": 2, - "yi": 17, - "ou": 13, - "yi.getContext": 2, - "pi": 24, - "kt": 24, - "pi.getContext": 2, - "pu": 9, - "li.getContext": 6, - "gu": 9, - "du": 10, - "ku": 9, - "yu": 10, - "su": 12, - "tr.getContext": 1, - "kf": 3, - "u.textAlign": 2, - "u.strokeStyle": 2, - "ei.textColor": 2, - "u.fillStyle": 2, - "steelseries.LcdColor.STANDARD_GREEN": 4, - "u.shadowColor": 2, - "u.shadowOffsetX": 2, - "s*.007": 3, - "u.shadowOffsetY": 2, - "u.shadowBlur": 2, - "u.font": 2, - "u.fillText": 2, - "n.toFixed": 2, - "bi*.05": 1, - "hf*.5": 1, - "pr*.38": 1, - "bi*.9": 1, - "u.restore": 6, - "te": 2, - "n.save": 35, - "n.drawImage": 14, - "k*.037383": 11, - "s*.523364": 2, - "k*.130841": 1, - "s*.130841": 1, - "k*.514018": 2, - "s*.831775": 1, - "k*.831775": 1, - "s*.336448": 1, - "k*.803738": 2, - "s*.626168": 1, - "n.restore": 35, - "ie": 2, - "t.width": 2, - "f*.046728": 1, - "t.height": 2, - "t.width*.9": 4, - "t.getContext": 2, - "n.createLinearGradient": 17, - ".1": 18, - "t.height*.9": 6, - "i.addColorStop": 27, - ".3": 8, - ".59": 4, - "n.fillStyle": 36, - "n.beginPath": 39, - "n.moveTo": 37, - "t.width*.5": 4, - "n.lineTo": 33, - "t.width*.1": 2, - "n.closePath": 34, - "n.fill": 17, - "n.strokeStyle": 27, - "n.stroke": 31, - "vu": 10, - "": 1, - "": 1, - "n.lineWidth": 30, - "s*.035": 2, - "at/yt*t": 1, - "at/yt*h": 1, - "yt/at": 1, - "n.translate": 93, - "n.rotate": 53, - "n.arc": 6, - "s*.365": 2, - "n.lineWidth/2": 2, - "df": 3, - "bt.labelColor.setAlpha": 1, - "n.textAlign": 12, - "n.textBaseline": 10, - "s*.04": 1, - "n.font": 34, - "bt.labelColor.getRgbaColor": 2, - "lt*fr": 1, - "s*.38": 2, - "s*.35": 1, - "s*.355": 1, - "s*.36": 1, - "s*.3": 1, - "s*.1": 1, - "oi/2": 2, - "b.toFixed": 1, - "c.toFixed": 2, - "le.type": 1, - "t.format": 7, - "n.fillText": 54, - "e.toFixed": 2, - "e.toPrecision": 1, - "n.frame": 22, - "n.background": 22, - "n.led": 20, - "n.pointer": 10, - "n.foreground": 22, - "n.trend": 4, - "n.odo": 2, - "rt": 45, - "uu.drawImage": 1, - "nu.drawImage": 3, - "se.drawImage": 1, - "steelseries.ColorDef.BLUE.dark.getRgbaColor": 6, - "he.drawImage": 1, - "steelseries.ColorDef.RED.medium.getRgbaColor": 6, - "ii.length": 2, - ".start": 12, - ".stop": 11, - ".color": 13, - "ui.length": 2, - "ut.save": 1, - "ut.translate": 3, - "ut.rotate": 1, - "ut.drawImage": 2, - "s*.475": 1, - "ut.restore": 1, - "steelseries.Odometer": 1, - "_context": 1, - "f*.075": 1, - "decimals": 1, - "wt.decimals": 1, - "wt.digits": 2, - "valueForeColor": 1, - "wt.valueForeColor": 1, - "valueBackColor": 1, - "wt.valueBackColor": 1, - "decimalForeColor": 1, - "wt.decimalForeColor": 1, - "decimalBackColor": 1, - "wt.decimalBackColor": 1, - "font": 1, - "wt.font": 1, - "tr.width": 1, - "nt": 75, - "bt.labelColor": 2, - "pt.type": 6, - "steelseries.TrendState.UP": 2, - "steelseries.TrendState.STEADY": 2, - "steelseries.TrendState.DOWN": 2, - "dt": 30, - "wi.width": 1, - "wi.height": 1, - "di.width": 1, - "di.height": 1, - "hi.width": 3, - "hi.height": 3, - "gt.width": 2, - "gt.height": 1, - "vi.width": 1, - "vi.height": 1, - "yi.width": 1, - "yi.height": 1, - "pi.width": 1, - "pi.height": 1, - "li.width": 3, - "li.height": 3, - "gf": 2, - "yf.repaint": 1, - "ur": 20, - "e3": 5, - "this.setValue": 7, - "": 5, - "ki.pause": 1, - "ki.play": 1, - "this.repaint": 126, - "this.getValue": 7, - "this.setOdoValue": 1, - "this.getOdoValue": 1, - "this.setValueAnimated": 7, - "t.playing": 1, - "t.stop": 1, - "Tween": 11, - "Tween.regularEaseInOut": 6, - "t.onMotionChanged": 1, - "n.target._pos": 7, - "": 1, - "i.repaint": 1, - "t.start": 1, - "this.resetMinMeasuredValue": 4, - "this.resetMaxMeasuredValue": 4, - "this.setMinMeasuredValueVisible": 4, - "this.setMaxMeasuredValueVisible": 4, - "this.setMaxMeasuredValue": 3, - "this.setMinMeasuredValue": 3, - "this.setTitleString": 4, - "this.setUnitString": 4, - "this.setMinValue": 4, - "this.getMinValue": 3, - "this.setMaxValue": 3, - "this.getMaxValue": 4, - "this.setThreshold": 4, - "this.setArea": 1, - "foreground": 30, - "this.setSection": 4, - "this.setThresholdVisible": 4, - "this.setLcdDecimals": 3, - "this.setFrameDesign": 7, - "this.setBackgroundColor": 7, - "pointer": 28, - "this.setForegroundType": 5, - "this.setPointerType": 3, - "this.setPointerColor": 4, - "this.setLedColor": 5, - "led": 18, - "this.setLcdColor": 5, - "this.setTrend": 2, - "this.setTrendVisible": 2, - "trend": 2, - "odo": 1, - "u.drawImage": 22, - "cu.setValue": 1, - "of.state": 1, - "u.translate": 8, - "u.rotate": 4, - "u.canvas.width*.4865": 2, - "u.canvas.height*.105": 2, - "s*.006": 1, - "kt.clearRect": 1, - "kt.save": 1, - "kt.translate": 2, - "kt.rotate": 1, - "kt.drawImage": 1, - "kt.restore": 1, - "i.useSectionColors": 4, - "i.valueColor": 6, - "i.valueGradient": 4, - "i.useValueGradient": 4, - "yi.setAttribute": 2, - "e/2": 2, - "ut/2": 4, - "e/10": 3, - "ut*.13": 1, - "e*.4": 1, - "or/2": 1, - "e*.116822": 3, - "e*.485981": 3, - "s*.093457": 5, - "e*.53": 1, - "ut*.61": 1, - "s*.06": 1, - "s*.57": 1, - "dt.type": 4, - "l/Math.PI*180": 4, - "l/et": 8, - "Math.PI/3": 1, - "ft/2": 2, - "Math.PI/": 1, - "ai.getContext": 2, - "s*.060747": 2, - "s*.023364": 2, - "ri.getContext": 6, - "yt.getContext": 5, - "si.getContext": 4, - "ci/": 2, - "f/ht": 1, - "*ht": 8, - "h/ht": 1, - "ht/": 2, - "*kt": 5, - "angle": 1, - "*st": 1, - "n.value": 4, - "tu.drawImage": 1, - "gr.drawImage": 3, - "at.getImageData": 1, - "at.drawImage": 1, - "bt.length": 4, - "ii.push": 1, - "Math.abs": 19, - "ai.width": 1, - "ai.height": 1, - "ri.width": 3, - "ri.height": 3, - "yt.width": 2, - "yt.height": 2, - "si.width": 2, - "si.height": 2, - "s*.085": 1, - "e*.35514": 2, - ".107476*ut": 1, - ".897195*ut": 1, - "t.addColorStop": 6, - ".22": 1, - ".76": 1, - "s*.075": 1, - ".112149*ut": 1, - ".892523*ut": 1, - "r.addColorStop": 6, - "e*.060747": 2, - "e*.023364": 2, - "n.createRadialGradient": 4, - ".030373*e": 1, - "u.addColorStop": 14, - "i*kt": 1, - "n.rect": 4, - "n.canvas.width": 3, - "n.canvas.height": 3, - "n.canvas.width/2": 6, - "n.canvas.height/2": 4, - "u.createRadialGradient": 1, - "t.light.getRgbaColor": 2, - "t.dark.getRgbaColor": 2, - "ni.textColor": 2, - "e*.007": 5, - "oi*.05": 1, - "or*.5": 1, - "cr*.38": 1, - "oi*.9": 1, - "ei.labelColor.setAlpha": 1, - "e*.04": 1, - "ei.labelColor.getRgbaColor": 2, - "st*di": 1, - "e*.28": 1, - "e*.1": 1, - "e*.0375": 1, - "h.toFixed": 3, - "df.type": 1, - "u.toFixed": 2, - "u.toPrecision": 1, - "kf.repaint": 1, - "": 3, - "yi.pause": 1, - "yi.play": 1, - "ti.playing": 1, - "ti.stop": 1, - "ti.onMotionChanged": 1, - "t.repaint": 4, - "ti.start": 1, - "this.setValueColor": 3, - "this.setSectionActive": 2, - "this.setGradient": 2, - "this.setGradientActive": 2, - "useGradient": 2, - "n/lt*": 1, - "vi.getEnd": 1, - "vi.getStart": 1, - "s/c": 1, - "vi.getColorAt": 1, - ".getRgbaColor": 3, - "": 1, - "e.medium.getHexColor": 1, - "i.medium.getHexColor": 1, - "n*kt": 1, - "pu.state": 1, - "i.orientation": 2, - "steelseries.Orientation.NORTH": 2, - "hi.setAttribute": 2, - "steelseries.GaugeType.TYPE5": 1, - "kt/at": 2, - "f.clearRect": 2, - "f.canvas.width": 3, - "f.canvas.height": 3, - "h/2": 1, - "k*.733644": 1, - ".455*h": 1, - ".51*k": 1, - "bi/": 2, - "l/ot": 1, - "*ot": 2, - "d/ot": 1, - "ot/": 1, - "ui.getContext": 4, - "u*.093457": 10, - "ii.getContext": 5, - "st.getContext": 2, - "u*.028037": 6, - "hr.getContext": 1, - "er.getContext": 1, - "fi.getContext": 4, - "kr.type": 1, - "ft.type": 1, - "h*.44": 3, - "k*.8": 1, - "k*.16": 1, - "h*.2": 2, - "k*.446666": 2, - "h*.8": 1, - "u*.046728": 1, - "h*.035": 1, - "kt/at*t": 1, - "kt/at*l": 1, - "at/kt": 1, - "h*.365": 2, - "it.labelColor.getRgbaColor": 4, - "vertical": 1, - ".046728*h": 1, - "n.measureText": 2, - ".width": 2, - "k*.4": 1, - "h*.3": 1, - "k*.47": 1, - "it.labelColor.setAlpha": 1, - "steelseries.Orientation.WEST": 6, - "h*.04": 1, - "ht*yi": 1, - "h*.41": 1, - "h*.415": 1, - "h*.42": 1, - "h*.48": 1, - "h*.0375": 1, - "d.toFixed": 1, - "f.toFixed": 1, - "i.toFixed": 2, - "i.toPrecision": 1, - "u/2": 5, - "cr.drawImage": 3, - "ar.drawImage": 1, - "or.drawImage": 1, - "or.restore": 1, - "rr.drawImage": 1, - "rr.restore": 1, - "gt.length": 2, - "p.save": 2, - "p.translate": 8, - "p.rotate": 4, - "p.restore": 3, - "ni.length": 2, - "p.drawImage": 1, - "h*.475": 1, - "k*.32": 1, - "h*1.17": 2, - "it.labelColor": 2, - "ut.type": 6, - "ui.width": 2, - "ui.height": 2, - "ii.width": 2, - "ii.height": 2, - "st.width": 1, - "st.height": 1, - "fi.width": 2, - "fi.height": 2, - "wu.repaint": 1, - "": 2, - "hi.pause": 1, - "hi.play": 1, - "dt.playing": 2, - "dt.stop": 2, - "dt.onMotionChanged": 2, - "": 1, - "dt.start": 2, - "f.save": 5, - "f.drawImage": 9, - "f.translate": 10, - "f.rotate": 5, - "f.canvas.width*.4865": 2, - "f.canvas.height*.27": 2, - "f.restore": 5, - "h*.006": 1, - "h*1.17/2": 1, - "et.clearRect": 1, - "et.save": 1, - "et.translate": 2, - "et.rotate": 1, - "et.drawImage": 1, - "et.restore": 1, - "i.width": 6, - "i.height": 6, - "fi.setAttribute": 2, - "l.type": 26, - "y.clearRect": 2, - "y.canvas.width": 3, - "y.canvas.height": 3, - "*.05": 4, - "f/2": 13, - "it/2": 2, - ".053": 1, - ".038": 1, - "*u": 1, - "u/22": 2, - ".89*f": 2, - "u/10": 2, - "ei/": 1, - "e/ut": 1, - "*ut": 2, - "s/ut": 1, - "ut/": 1, - "kt.getContext": 2, - "rt.getContext": 2, - "dt.getContext": 1, - "ni.getContext": 4, - "lt.textColor": 2, - "n.shadowColor": 2, - "n.shadowOffsetX": 4, - "u*.003": 2, - "n.shadowOffsetY": 4, - "n.shadowBlur": 4, - "u*.004": 1, - "u*.007": 2, - "u*.009": 1, - "f*.571428": 8, - "u*.88": 2, - "u*.055": 2, - "f*.7": 2, - "f*.695": 4, - "f*.18": 4, - "u*.22": 3, - "u*.15": 2, - "t.toFixed": 2, - "i.getContext": 2, - "t.save": 2, - "t.createLinearGradient": 2, - "i.height*.9": 6, - "t.fillStyle": 2, - "t.beginPath": 4, - "t.moveTo": 4, - "i.height*.5": 2, - "t.lineTo": 8, - "i.width*.9": 6, - "t.closePath": 4, - "i.width*.5": 2, - "t.fill": 2, - "t.strokeStyle": 2, - "t.stroke": 2, - "t.restore": 2, - "w.labelColor.setAlpha": 1, - "f*.1": 5, - "w.labelColor.getRgbaColor": 2, - ".34*f": 2, - ".36*f": 6, - ".33*f": 2, - ".32*f": 2, - "u*.12864": 3, - "u*.856796": 1, - "u*.7475": 1, - "c/": 2, - ".65*u": 1, - ".63*u": 3, - ".66*u": 1, - ".67*u": 1, - "f*.142857": 4, - "f*.871012": 2, - "f*.19857": 1, - "f*.82": 1, - "v/": 1, - "tickCounter": 4, - "currentPos": 20, - "tickCounter*a": 2, - "r.toFixed": 8, - "f*.28": 6, - "r.toPrecision": 4, - "u*.73": 3, - "ui/2": 1, - "vi.drawImage": 2, - "yi.drawImage": 2, - "hr.drawImage": 2, - "k.save": 1, - ".856796": 2, - ".7475": 2, - ".12864": 2, - "u*i": 1, - "u*r*": 1, - "bt/": 1, - "k.translate": 2, - "f*.365": 2, - "nt/2": 2, - ".871012": 3, - ".82": 2, - ".142857": 5, - ".19857": 6, - "f*r*bt/": 1, - "f*": 5, - "u*.58": 1, - "k.drawImage": 3, - "k.restore": 1, - "kt.width": 1, - "b*.093457": 2, - "kt.height": 1, - "d*.093457": 2, - "rt.width": 1, - "rt.height": 1, - "ni.width": 2, - "ni.height": 2, - "hu.repaint": 1, - "w.labelColor": 1, - "i*.12864": 2, - "i*.856796": 2, - "i*.7475": 1, - "t*.871012": 1, - "t*.142857": 8, - "t*.82": 1, - "t*.19857": 1, - "steelseries.BackgroundColor.CARBON": 2, - "steelseries.BackgroundColor.PUNCHED_SHEET": 2, - "steelseries.BackgroundColor.STAINLESS": 2, - "steelseries.BackgroundColor.BRUSHED_STAINLESS": 2, - "steelseries.BackgroundColor.TURNED": 2, - "r.setAlpha": 8, - ".05": 2, - "p.addColorStop": 4, - "r.getRgbaColor": 8, - ".15": 2, - ".48": 7, - ".49": 4, - "n.fillRect": 16, - "t*.435714": 4, - "i*.435714": 4, - "i*.142857": 1, - "b.addColorStop": 4, - ".69": 1, - ".7": 1, - ".4": 2, - "t*.007142": 4, - "t*.571428": 2, - "i*.007142": 4, - "i*.571428": 2, - "t*.45": 4, - "t*.114285": 1, - "t/2": 1, - "i*.0486/2": 1, - "i*.053": 1, - "i*.45": 4, - "i*.114285": 1, - "i/2": 1, - "t*.025": 1, - "t*.053": 1, - "ut.addColorStop": 2, - "wt.medium.getRgbaColor": 3, - "wt.light.getRgbaColor": 2, - "i*.05": 2, - "t*.05": 2, - "ot.addColorStop": 2, - ".98": 1, - "Math.PI*.5": 2, - "f*.05": 2, - ".049*t": 8, - ".825*t": 9, - "n.bezierCurveTo": 42, - ".7975*t": 2, - ".0264*t": 4, - ".775*t": 3, - ".0013*t": 12, - ".85*t": 2, - ".8725*t": 3, - ".0365*t": 9, - ".8075*t": 4, - ".7925*t": 3, - ".0214*t": 13, - ".7875*t": 4, - ".7825*t": 5, - ".0189*t": 4, - ".785*t": 1, - ".8175*t": 2, - ".815*t": 1, - ".8125*t": 2, - ".8*t": 2, - ".0377*t": 2, - ".86*t": 4, - ".0415*t": 2, - ".845*t": 1, - ".0465*t": 2, - ".805*t": 2, - ".0113*t": 10, - ".0163*t": 7, - ".8025*t": 1, - ".8225*t": 3, - ".8425*t": 1, - ".03*t": 2, - ".115*t": 5, - ".1075*t": 2, - ".1025*t": 8, - ".0038*t": 2, - ".76*t": 4, - ".7675*t": 2, - ".7725*t": 6, - ".34": 1, - ".0516*t": 7, - ".8525*t": 2, - ".0289*t": 8, - ".875*t": 3, - ".044*t": 1, - ".0314*t": 5, - ".12*t": 4, - ".0875*t": 3, - ".79*t": 1, - "": 5, - "fi.pause": 1, - "fi.play": 1, - "yt.playing": 1, - "yt.stop": 1, - "yt.onMotionChanged": 1, - "t.setValue": 1, - "yt.start": 1, - "mminMeasuredValue": 1, - "": 1, - "setMaxValue=": 1, - "y.drawImage": 6, - "u*n": 2, - "u*i*": 2, - "at/": 1, - "f*.34": 3, - "gt.height/2": 2, - "f*i*at/": 1, - "u*.65": 2, - "ft/": 1, - "dt.width": 1, - "dt.height/2": 2, - ".8": 1, - ".14857": 1, - "f*i*ft/": 1, - "y.save": 1, - "y.restore": 1, - "oi.setAttribute": 2, - "v.clearRect": 2, - "v.canvas.width": 4, - "v.canvas.height": 4, - ".053*e": 1, - "e/22": 2, - "e/1.95": 1, - "u/vt": 1, - "s/vt": 1, - "g.width": 4, - "f*.121428": 2, - "g.height": 4, - "e*.012135": 2, - "f*.012135": 2, - "e*.121428": 2, - "g.getContext": 2, - "d.width": 4, - "d.height": 4, - "d.getContext": 2, - "pt.getContext": 2, - "ci.getContext": 1, - "kt.textColor": 2, - "f*.007": 2, - "f*.009": 1, - "e*.009": 1, - "e*.88": 2, - "e*.055": 2, - "e*.22": 3, - "e*.15": 2, - "k.labelColor.setAlpha": 1, - "k.labelColor.getRgbaColor": 5, - "e*.12864": 3, - "e*.856796": 3, - ".65*e": 1, - ".63*e": 3, - ".66*e": 1, - ".67*e": 1, - "g/": 1, - "tickCounter*h": 2, - "e*.73": 3, - "ti/2": 1, - "n.bargraphled": 4, - "nr.drawImage": 2, - "tr.drawImage": 2, - "nt.save": 1, - "e*.728155*": 1, - "st/": 1, - "nt.translate": 2, - "rt/2": 2, - "f*.856796": 2, - "f*.12864": 2, - "*st/": 1, - "e*.58": 1, - "nt.drawImage": 3, - "nt.restore": 1, - "f*.012135/2": 1, - "ft.push": 1, - "*c": 2, - "y*.121428": 2, - "w*.012135": 2, - "y*.012135": 2, - "w*.121428": 2, - "y*.093457": 2, - "w*.093457": 2, - "pt.width": 1, - "pt.height": 1, - "ku.repaint": 1, - "k.labelColor": 1, - "r*": 2, - "r*1.014": 5, - "t*.856796": 1, - "t*.12864": 1, - "t*.13": 3, - "r*1.035": 4, - "f.setAlpha": 8, - ".047058": 2, - "rt.addColorStop": 4, - "f.getRgbaColor": 8, - ".145098": 1, - ".149019": 1, - "t*.15": 1, - "i*.152857": 1, - ".298039": 1, - "it.addColorStop": 4, - ".686274": 1, - ".698039": 1, - "i*.851941": 1, - "t*.121428": 1, - "i*.012135": 1, - "t*.012135": 1, - "i*.121428": 1, - "*r": 4, - "o/r*": 1, - "yt.getEnd": 2, - "yt.getStart": 2, - "lt/ct": 2, - "yt.getColorAt": 2, - "": 1, - "st.medium.getHexColor": 2, - "a.medium.getHexColor": 2, - "b/2": 2, - "e/r*": 1, - "": 1, - "v.createRadialGradient": 2, - "": 5, - "oi.pause": 1, - "oi.play": 1, - "": 1, - "bargraphled": 3, - "v.drawImage": 2, - "": 1, - "856796": 4, - "728155": 2, - "34": 2, - "12864": 2, - "142857": 2, - "65": 2, - "drawImage": 12, - "save": 27, - "restore": 14, - "repaint": 23, - "dr=": 1, - "128": 2, - "48": 1, - "w=": 4, - "lcdColor": 4, - "LcdColor": 4, - "STANDARD": 3, - "pt=": 5, - "lcdDecimals": 4, - "lt=": 4, - "unitString": 4, - "at=": 3, - "unitStringVisible": 4, - "ht=": 6, - "digitalFont": 4, - "bt=": 3, - "valuesNumeric": 4, - "ct=": 5, - "autoScroll": 2, - "section": 2, - "wt=": 3, - "getElementById": 4, - "clearRect": 8, - "v=": 5, - "floor": 13, - "ot=": 4, - "sans": 12, - "serif": 13, - "it=": 7, - "nt=": 5, - "et=": 6, - "kt=": 4, - "textAlign=": 7, - "strokeStyle=": 8, - "clip": 1, - "font=": 28, - "measureText": 4, - "toFixed": 3, - "fillText": 23, - "38": 5, - "o*.2": 1, - "<=o-4&&(e=0,c=!1),u.fillText(n,o-2-e,h*.5+v*.38)),u.restore()},dt=function(n,i,r,u){var>": 1, - "rt=": 3, - "095": 1, - "createLinearGradient": 6, - "addColorStop": 25, - "4c4c4c": 1, - "08": 1, - "666666": 2, - "92": 1, - "e6e6e6": 1, - "gradientStartColor": 1, - "tt=": 3, - "gradientFraction1Color": 1, - "gradientFraction2Color": 1, - "gradientFraction3Color": 1, - "gradientStopColor": 1, - "yt=": 4, - "31": 26, - "ut=": 6, - "rgb": 6, - "03": 1, - "49": 1, - "57": 1, - "83": 1, - "wt.repaint": 1, - "resetBuffers": 1, - "this.setScrolling": 1, - "w.textColor": 1, - "": 1, - "<=f[n].stop){t=et[n],i=ut[n];break}u.drawImage(t,0,0),kt(a,i)},this.repaint(),this},wr=function(n,t){t=t||{};var>": 1, - "64": 1, - "875": 2, - "textBaseline=": 4, - "textColor": 2, - "STANDARD_GREEN": 1, - "shadowColor=": 1, - "shadowOffsetX=": 1, - "05": 2, - "shadowOffsetY=": 1, - "shadowBlur=": 1, - "06": 1, - "46": 1, - "8": 2, - "setValue=": 2, - "setLcdColor=": 2, - "repaint=": 2, - "br=": 1, - "200": 2, - "st=": 3, - "decimalsVisible": 2, - "gt=": 1, - "textOrientationFixed": 2, - "frameDesign": 4, - "FrameDesign": 2, - "METAL": 2, - "frameVisible": 4, - "backgroundColor": 2, - "BackgroundColor": 1, - "DARK_GRAY": 1, - "vt=": 2, - "backgroundVisible": 2, - "pointerColor": 4, - "ColorDef": 2, - "RED": 1, - "foregroundType": 4, - "ForegroundType": 2, - "TYPE1": 2, - "foregroundVisible": 4, - "180": 26, - "ni=": 1, - "labelColor": 6, - "getRgbaColor": 21, - "translate": 38, - "360": 15, - "p.labelColor.getRgbaColor": 4, - "f*.38": 7, - "f*.37": 3, - "": 1, - "rotate": 31, - "u00b0": 8, - "41": 3, - "45": 5, - "25": 9, - "085": 4, - "100": 4, - "90": 3, - "21": 2, - "u221e": 2, - "135": 1, - "225": 1, - "75": 3, - "270": 1, - "315": 1, - "ti=": 2, - "200934": 2, - "434579": 4, - "163551": 5, - "560747": 4, - "lineWidth=": 6, - "lineCap=": 5, - "lineJoin=": 5, - "471962": 4, - "205607": 1, - "523364": 5, - "799065": 2, - "836448": 5, - "794392": 1, - "ii=": 2, - "350467": 5, - "130841": 1, - "476635": 2, - "bezierCurveTo": 6, - "490654": 3, - "345794": 3, - "509345": 1, - "154205": 1, - "350466": 1, - "dark": 2, - "light": 5, - "setAlpha": 8, - "70588": 4, - "59": 3, - "dt=": 2, - "285046": 5, - "514018": 6, - "21028": 1, - "481308": 4, - "280373": 3, - "495327": 2, - "504672": 2, - "224299": 1, - "289719": 1, - "714953": 5, - "789719": 1, - "719626": 3, - "7757": 1, - "71028": 1, - "ft=": 3, - "*10": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "<-90&&e>": 2, - "<-180&&e>": 2, - "<-270&&e>": 2, - "d.playing": 2, - "d.stop": 2, - "d.onMotionChanged": 2, - "d.start": 2, - "s.save": 4, - "s.clearRect": 3, - "s.canvas.width": 4, - "s.canvas.height": 4, - "s.drawImage": 8, - "e*kt": 1, - "s.translate": 6, - "s.rotate": 3, - "s.fillStyle": 1, - "s.textAlign": 1, - "s.textBaseline": 1, - "s.restore": 6, - "s.font": 2, - "f*.15": 2, - "s.fillText": 2, - "f*.35": 26, - "f*.2": 1, - "k*Math.PI/180": 1, - "u.size": 4, - "u.frameDesign": 4, - "u.frameVisible": 4, - "u.backgroundColor": 4, - "u.backgroundVisible": 4, - "u.pointerType": 2, - "steelseries.PointerType.TYPE2": 1, - "u.pointerColor": 4, - "u.knobType": 4, - "u.knobStyle": 4, - "u.foregroundType": 4, - "u.foregroundVisible": 4, - "u.pointSymbols": 4, - "u.customLayer": 4, - "u.degreeScale": 4, - "u.roseVisible": 4, - "ft.getContext": 2, - "ut.getContext": 2, - "it.getContext": 2, - "ot.getContext": 3, - "et.getContext": 2, - "tt.labelColor.getRgbaColor": 2, - ".08*f": 1, - "f*.033": 1, - "st*10": 2, - ".substring": 2, - ".12*f": 2, - ".06*f": 2, - "tt.symbolColor.getRgbaColor": 1, - "st*2.5": 1, - "bt.type": 1, - "f*.53271": 6, - "e*.453271": 5, - "f*.5": 17, - "e*.149532": 8, - "f*.467289": 6, - "f*.453271": 2, - "e*.462616": 2, - "f*.443925": 9, - "e*.481308": 2, - "e*.5": 10, - "f*.556074": 9, - "f*.546728": 2, - ".471962*f": 5, - ".528036*f": 5, - "o.addColorStop": 4, - "h.light.getRgbaColor": 6, - ".46": 3, - ".47": 3, - "h.medium.getRgbaColor": 6, - "h.dark.getRgbaColor": 3, - "n.lineCap": 5, - "n.lineJoin": 5, - "e*.546728": 5, - "e*.850467": 4, - "e*.537383": 2, - "e*.518691": 2, - "s.addColorStop": 4, - "e*.490654": 2, - "e*.53271": 2, - "e*.556074": 3, - "e*.495327": 4, - "f*.528037": 2, - "f*.471962": 2, - "e*.504672": 4, - ".480099": 1, - "f*.006": 2, - "ft.width": 1, - "ft.height": 1, - "ut.width": 1, - "ut.height": 1, - "it.width": 1, - "it.height": 1, - "ot.width": 1, - "ot.height": 1, - "et.width": 1, - "et.height": 1, - "Tween.elasticEaseOut": 1, - "r.repaint": 1, - "this.setPointSymbols": 1, - "p*st": 1, - "b.clearRect": 1, - "b.save": 1, - "b.translate": 2, - "b.rotate": 1, - "b.drawImage": 1, - "b.restore": 1, - "u.pointerTypeLatest": 2, - "u.pointerTypeAverage": 2, - "steelseries.PointerType.TYPE8": 1, - "u.pointerColorAverage": 2, - "steelseries.ColorDef.BLUE": 1, - "u.lcdColor": 2, - "u.lcdVisible": 2, - "u.digitalFont": 2, - "u.section": 2, - "u.area": 2, - "u.lcdTitleStrings": 2, - "u.titleString": 2, - "u.useColorLabels": 2, - "this.valueLatest": 1, - "this.valueAverage": 1, - "Math.PI*2": 1, - "e.save": 2, - "e.clearRect": 1, - "e.canvas.width": 2, - "e.canvas.height": 2, - "f/10": 1, - "f*.3": 4, - "s*.12": 1, - "s*.32": 1, - "s*.565": 1, - "bt.getContext": 1, - "at.getContext": 1, - "vt.getContext": 1, - "lt.getContext": 1, - "wt.getContext": 1, - "e.textAlign": 1, - "e.strokeStyle": 1, - "ht.textColor": 2, - "e.fillStyle": 1, - "<0&&(n+=360),n=\"00\"+Math.round(n),n=n.substring(n.length,n.length-3),(ht===steelseries.LcdColor.STANDARD||ht===steelseries.LcdColor.STANDARD_GREEN)&&(e.shadowColor=\"gray\",e.shadowOffsetX=f*.007,e.shadowOffsetY=f*.007,e.shadowBlur=f*.007),e.font=pr?gr:br,e.fillText(n+\"\\u00b0\",f/2+gt*.05,(t?or:cr)+er*.5+ui*.38,gt*.9),e.restore()},wi=function(n,t,i,r,u){n.save(),n.strokeStyle=r,n.fillStyle=r,n.lineWidth=f*.035;var>": 1, - "arc": 2, - "365": 2, - "lineWidth": 1, - "lr=": 1, - "35": 1, - "355": 1, - "36": 2, - "bold": 1, - "04": 2, - "ct*5": 1, - "k.symbolColor.getRgbaColor": 1, - "ct*2.5": 1, - "ti.length": 1, - "kt.medium.getRgbaColor": 1, - ".04*f": 1, - "s*.29": 1, - "ii.medium.getRgbaColor": 1, - "s*.71": 1, - "rr.length": 1, - ".0467*f": 1, - "s*.5": 1, - "et.length": 2, - "ft.length": 2, - "": 1, - "ci=": 1, - "li=": 1, - "ai=": 1, - "ki=": 1, - "yi=": 1, - "setValueLatest=": 1, - "getValueLatest=": 1, - "setValueAverage=": 1, - "getValueAverage=": 1, - "setValueAnimatedLatest=": 1, - "playing": 2, - "regularEaseInOut": 2, - "onMotionChanged=": 2, - "_pos": 2, - "onMotionFinished=": 2, - "setValueAnimatedAverage=": 1, - "setArea=": 1, - "setSection=": 1, - "setFrameDesign=": 1, - "pi=": 1, - "setBackgroundColor=": 1, - "setForegroundType=": 1, - "si=": 1, - "setPointerColor=": 1, - "setPointerColorAverage=": 1, - "setPointerType=": 1, - "setPointerTypeAverage=": 1, - "ri=": 1, - "setPointSymbols=": 1, - "setLcdTitleStrings=": 1, - "fi=": 1, - "006": 1, - "ei=": 1, - "ru=": 1, - "WHITE": 1, - "037383": 1, - "056074": 1, - "7fd5f0": 2, - "3c4439": 2, - "72": 1, - "KEYWORDS": 2, - "array_to_hash": 11, - "RESERVED_WORDS": 2, - "KEYWORDS_BEFORE_EXPRESSION": 2, - "KEYWORDS_ATOM": 2, - "OPERATOR_CHARS": 1, - "RE_HEX_NUMBER": 1, - "RE_OCT_NUMBER": 1, - "RE_DEC_NUMBER": 1, - "OPERATORS": 2, - "WHITESPACE_CHARS": 2, - "PUNC_BEFORE_EXPRESSION": 2, - "PUNC_CHARS": 1, - "REGEXP_MODIFIERS": 1, - "UNICODE": 1, - "non_spacing_mark": 1, - "space_combining_mark": 1, - "connector_punctuation": 1, - "is_letter": 3, - "UNICODE.letter.test": 1, - "is_digit": 3, - "ch.charCodeAt": 1, - "//XXX": 1, - "out": 1, - "means": 1, - "is_alphanumeric_char": 3, - "is_unicode_combining_mark": 2, - "UNICODE.non_spacing_mark.test": 1, - "UNICODE.space_combining_mark.test": 1, - "is_unicode_connector_punctuation": 2, - "UNICODE.connector_punctuation.test": 1, - "is_identifier_start": 2, - "is_identifier_char": 1, - "zero": 2, - "joiner": 2, - "": 1, - "": 1, - "my": 1, - "ECMA": 1, - "PDF": 1, - "parse_js_number": 2, - "RE_HEX_NUMBER.test": 1, - "num.substr": 2, - "RE_OCT_NUMBER.test": 1, - "RE_DEC_NUMBER.test": 1, - "JS_Parse_Error": 2, - "message": 5, - "this.col": 2, - "ex": 3, - "ex.name": 1, - "this.stack": 2, - "ex.stack": 1, - "JS_Parse_Error.prototype.toString": 1, - "js_error": 2, - "is_token": 1, - "token": 5, - "token.type": 1, - "token.value": 1, - "EX_EOF": 3, - "tokenizer": 2, - "TEXT": 1, - "TEXT.replace": 1, - "uFEFF/": 1, - "tokpos": 1, - "tokline": 1, - "tokcol": 1, - "newline_before": 1, - "regex_allowed": 1, - "comments_before": 1, - "peek": 5, - "S.text.charAt": 2, - "S.pos": 4, - "signal_eof": 4, - "S.newline_before": 3, - "S.line": 2, - "S.col": 3, - "eof": 6, - "S.peek": 1, - "what": 2, - "S.text.indexOf": 1, - "start_token": 1, - "S.tokline": 3, - "S.tokcol": 3, - "S.tokpos": 3, - "is_comment": 2, - "S.regex_allowed": 1, - "HOP": 5, - "UNARY_POSTFIX": 1, - "nlb": 1, - "ret.comments_before": 1, - "S.comments_before": 2, - "skip_whitespace": 1, - "read_while": 2, - "pred": 2, - "parse_error": 3, - "read_num": 1, - "prefix": 6, - "has_e": 3, - "after_e": 5, - "has_x": 5, - "has_dot": 3, - "valid": 4, - "read_escaped_char": 1, - "hex_bytes": 3, - "digit": 3, - "read_string": 1, - "with_eof_error": 1, - "comment1": 1, - "Unterminated": 2, - "multiline": 1, - "comment2": 1, - "WARNING": 1, - "***": 1, - "Found": 1, - "warn": 3, - "tok": 1, - "read_name": 1, - "backslash": 2, - "Expecting": 1, - "UnicodeEscapeSequence": 1, - "uXXXX": 1, - "Unicode": 1, - "identifier": 1, - "regular": 1, - "regexp": 5, - "operator": 14, - "punc": 27, - "atom": 5, - "keyword": 11, - "Unexpected": 3, - "void": 1, - "<\",>": 1, - "<=\",>": 1, - "debugger": 2, - "const": 2, - "stat": 1, - "Label": 1, - "without": 1, - "statement": 1, - "defun": 1, - "Name": 1, - "Missing": 1, - "catch/finally": 1, - "blocks": 1, - "unary": 2, - "dot": 2, - "postfix": 1, - "Invalid": 2, - "binary": 1, - "conditional": 1, - "assign": 1, - "assignment": 1, - "seq": 1, - "member": 2, - "array.length": 1, - "Object.prototype.hasOwnProperty.call": 1, - "exports.tokenizer": 1, - "exports.parse": 1, - "parse": 1, - "exports.slice": 1, - "exports.curry": 1, - "curry": 1, - "exports.member": 1, - "exports.array_to_hash": 1, - "exports.PRECEDENCE": 1, - "PRECEDENCE": 1, - "exports.KEYWORDS_ATOM": 1, - "exports.RESERVED_WORDS": 1, - "exports.KEYWORDS": 1, - "exports.ATOMIC_START_TOKEN": 1, - "ATOMIC_START_TOKEN": 1, - "exports.OPERATORS": 1, - "exports.is_alphanumeric_char": 1, - "exports.set_logger": 1, - "logger": 2 - }, - "Julia": { - "##": 5, - "Test": 1, - "case": 1, - "from": 1, - "Issue": 1, - "#445": 1, - "#STOCKCORR": 1, - "-": 11, - "The": 1, - "original": 1, - "unoptimised": 1, - "code": 1, - "that": 1, - "simulates": 1, - "two": 2, - "correlated": 1, - "assets": 1, - "function": 1, - "stockcorr": 1, - "(": 13, - ")": 13, - "Correlated": 1, - "asset": 1, - "information": 1, - "CurrentPrice": 3, - "[": 20, - "]": 20, - "#": 11, - "Initial": 1, - "Prices": 1, - "of": 6, - "the": 2, - "stocks": 1, - "Corr": 2, - ";": 1, - "Correlation": 1, - "Matrix": 2, - "T": 5, - "Number": 2, - "days": 3, - "to": 1, - "simulate": 1, - "years": 1, - "n": 4, - "simulations": 1, - "dt": 3, - "/250": 1, - "Time": 1, - "step": 1, - "year": 1, - "Div": 3, - "Dividend": 1, - "Vol": 5, - "Volatility": 1, - "Market": 1, - "Information": 1, - "r": 3, - "Risk": 1, - "free": 1, - "rate": 1, - "Define": 1, - "storages": 1, - "SimulPriceA": 5, - "zeros": 2, - "Simulated": 2, - "Price": 2, - "Asset": 2, - "A": 1, - "SimulPriceB": 5, - "B": 1, - "Generating": 1, - "paths": 1, - "stock": 1, - "prices": 1, - "by": 2, - "Geometric": 1, - "Brownian": 1, - "Motion": 1, - "UpperTriangle": 2, - "chol": 1, - "Cholesky": 1, - "decomposition": 1, - "for": 2, - "i": 5, - "Wiener": 1, - "randn": 1, - "CorrWiener": 1, - "Wiener*UpperTriangle": 1, - "j": 7, - "*exp": 2, - "/2": 2, - "*dt": 2, - "+": 2, - "*sqrt": 2, - "*CorrWiener": 2, - "end": 3, - "return": 1 - }, - "KRL": { - "ruleset": 1, - "sample": 1, - "{": 3, - "meta": 1, - "name": 1, - "description": 1, - "<<": 1, - "Hello": 1, - "world": 1, - "author": 1, - "}": 3, - "rule": 1, - "hello": 1, - "select": 1, - "when": 1, - "web": 1, - "pageview": 1, - "notify": 1, - "(": 1, - ")": 1, - ";": 1 - }, - "Kit": { - "
    ": 1, - "

    ": 1, - "

    ": 1, - "

    ": 1, - "

    ": 1, - "
    ": 1 - }, - "Kotlin": { - "package": 1, - "addressbook": 1, - "class": 5, - "Contact": 1, - "(": 15, - "val": 16, - "name": 2, - "String": 7, - "emails": 1, - "List": 3, - "": 1, - "addresses": 1, - "": 1, - "phonenums": 1, - "": 1, - ")": 15, - "EmailAddress": 1, - "user": 1, - "host": 1, - "PostalAddress": 1, - "streetAddress": 1, - "city": 1, - "zip": 1, - "state": 2, - "USState": 1, - "country": 3, - "Country": 7, - "{": 6, - "assert": 1, - "null": 3, - "xor": 1, - "Countries": 2, - "[": 3, - "]": 3, - "}": 6, - "PhoneNumber": 1, - "areaCode": 1, - "Int": 1, - "number": 1, - "Long": 1, - "object": 1, - "fun": 1, - "get": 2, - "id": 2, - "CountryID": 1, - "countryTable": 2, - "private": 2, - "var": 1, - "table": 5, - "Map": 2, - "": 2, - "if": 1, - "HashMap": 1, - "for": 1, - "line": 3, - "in": 1, - "TextFile": 1, - ".lines": 1, - "stripWhiteSpace": 1, - "true": 1, - "return": 1 - }, - "LFE": { - ";": 213, - "Copyright": 4, - "(": 217, - "c": 4, - ")": 231, - "Duncan": 4, - "McGreggor": 4, - "": 2, - "Licensed": 3, - "under": 9, - "the": 36, - "Apache": 3, - "License": 12, - "Version": 3, - "you": 3, - "may": 6, - "not": 5, - "use": 6, - "this": 3, - "file": 6, - "except": 3, - "in": 10, - "compliance": 3, - "with": 8, - "License.": 6, - "You": 3, - "obtain": 3, - "a": 8, - "copy": 3, - "of": 10, - "at": 4, - "http": 4, - "//www.apache.org/licenses/LICENSE": 3, - "-": 98, - "Unless": 3, - "required": 3, - "by": 4, - "applicable": 3, - "law": 3, - "or": 6, - "agreed": 3, - "to": 10, - "writing": 3, - "software": 3, - "distributed": 6, - "is": 5, - "on": 4, - "an": 5, - "BASIS": 3, - "WITHOUT": 3, - "WARRANTIES": 3, - "OR": 3, - "CONDITIONS": 3, - "OF": 3, - "ANY": 3, - "KIND": 3, - "either": 3, - "express": 3, - "implied.": 3, - "See": 3, - "for": 5, - "specific": 3, - "language": 3, - "governing": 3, - "permissions": 3, - "and": 7, - "limitations": 3, - "File": 4, - "church.lfe": 1, - "Author": 3, - "Purpose": 3, - "Demonstrating": 2, - "church": 20, - "numerals": 1, - "from": 2, - "lambda": 18, - "calculus": 1, - "The": 4, - "code": 2, - "below": 3, - "was": 1, - "used": 1, - "create": 4, - "section": 1, - "user": 1, - "guide": 1, - "here": 1, - "//lfe.github.io/user": 1, - "guide/recursion/5.html": 1, - "Here": 1, - "some": 2, - "example": 2, - "usage": 1, - "slurp": 2, - "five/0": 2, - "int2": 1, - "get": 21, - "defmodule": 2, - "export": 2, - "all": 1, - "defun": 20, - "zero": 2, - "s": 19, - "x": 12, - "one": 1, - "funcall": 23, - "two": 1, - "three": 1, - "four": 1, - "five": 1, - "int": 2, - "successor": 3, - "n": 4, - "+": 2, - "int1": 1, - "numeral": 8, - "#": 3, - "successor/1": 1, - "count": 7, - "limit": 4, - "cond": 1, - "/": 1, - "integer": 2, - "*": 6, - "Mode": 1, - "LFE": 4, - "Code": 1, - "Paradigms": 1, - "Artificial": 1, - "Intelligence": 1, - "Programming": 1, - "Peter": 1, - "Norvig": 1, - "gps1.lisp": 1, - "First": 1, - "version": 1, - "GPS": 1, - "General": 1, - "Problem": 1, - "Solver": 1, - "Converted": 1, - "Robert": 3, - "Virding": 3, - "Define": 1, - "macros": 1, - "global": 2, - "variable": 2, - "access.": 1, - "This": 2, - "hack": 1, - "very": 1, - "naughty": 1, - "defsyntax": 2, - "defvar": 2, - "[": 3, - "name": 8, - "val": 2, - "]": 3, - "let": 6, - "v": 3, - "put": 1, - "getvar": 3, - "solved": 1, - "gps": 1, - "state": 4, - "goals": 2, - "Set": 1, - "variables": 1, - "but": 1, - "existing": 1, - "*ops*": 1, - "*state*": 5, - "current": 1, - "list": 13, - "conditions.": 1, - "if": 1, - "every": 1, - "fun": 1, - "achieve": 1, - "op": 8, - "action": 3, - "setvar": 2, - "set": 1, - "difference": 1, - "del": 5, - "union": 1, - "add": 3, - "drive": 1, - "son": 2, - "school": 2, - "preconds": 4, - "shop": 6, - "installs": 1, - "battery": 1, - "car": 1, - "works": 1, - "make": 2, - "communication": 2, - "telephone": 1, - "have": 3, - "phone": 1, - "book": 1, - "give": 1, - "money": 3, - "has": 1, - "mnesia_demo.lfe": 1, - "A": 1, - "simple": 4, - "Mnesia": 2, - "demo": 2, - "LFE.": 1, - "contains": 1, - "using": 1, - "access": 1, - "tables.": 1, - "It": 1, - "shows": 2, - "how": 2, - "emp": 1, - "XXXX": 1, - "macro": 1, - "ETS": 1, - "match": 5, - "pattern": 1, - "together": 1, - "mnesia": 8, - "match_object": 1, - "specifications": 1, - "select": 1, - "Query": 2, - "List": 2, - "Comprehensions.": 1, - "mnesia_demo": 1, - "new": 2, - "by_place": 1, - "by_place_ms": 1, - "by_place_qlc": 2, - "defrecord": 1, - "person": 8, - "place": 7, - "job": 3, - "Start": 1, - "table": 2, - "we": 1, - "will": 1, - "memory": 1, - "only": 1, - "schema.": 1, - "start": 1, - "create_table": 1, - "attributes": 1, - "Initialise": 1, - "table.": 1, - "people": 1, - "spec": 1, - "p": 2, - "j": 2, - "when": 1, - "tuple": 1, - "transaction": 2, - "f": 3, - "Use": 1, - "Comprehensions": 1, - "records": 1, - "q": 2, - "qlc": 2, - "lc": 1, - "<": 1, - "e": 1, - "object.lfe": 1, - "OOP": 1, - "closures": 1, - "object": 16, - "system": 1, - "demonstrated": 1, - "do": 2, - "following": 2, - "objects": 2, - "call": 2, - "methods": 5, - "those": 1, - "which": 1, - "can": 1, - "other": 1, - "update": 1, - "instance": 2, - "Note": 1, - "however": 1, - "that": 1, - "his": 1, - "does": 1, - "demonstrate": 1, - "inheritance.": 1, - "To": 1, - "cd": 1, - "examples": 1, - "../bin/lfe": 1, - "pa": 1, - "../ebin": 1, - "Load": 1, - "fish": 6, - "class": 3, - "#Fun": 1, - "": 1, - "Execute": 1, - "basic": 1, - "species": 7, - "mommy": 3, - "move": 4, - "Carp": 1, - "swam": 1, - "feet": 1, - "ok": 1, - "id": 9, - "Now": 1, - "strictly": 1, - "necessary.": 1, - "When": 1, - "isn": 1, - "children": 10, - "formatted": 1, - "verb": 2, - "self": 6, - "distance": 2, - "erlang": 1, - "length": 1, - "method": 7, - "define": 1, - "info": 1, - "reproduce": 1 - }, - "LSL": { - "integer": 8, - "someIntNormal": 2, - ";": 29, - "someIntHex": 2, - "someIntMath": 2, - "PI_BY_TWO": 2, - "event": 2, - "//": 5, - "is": 3, - "invalid.illegal": 2, - "key": 3, - "someKeyTexture": 2, - "TEXTURE_DEFAULT": 2, - "string": 5, - "someStringSpecial": 2, - "EOF": 2, - "some_user_defined_function_without_return_type": 2, - "(": 19, - "inputAsString": 2, - ")": 19, - "{": 9, - "llSay": 1, - "PUBLIC_CHANNEL": 4, - "}": 9, - "user_defined_function_returning_a_string": 2, - "inputAsKey": 2, - "return": 1, - "default": 2, - "state_entry": 2, - "someKey": 3, - "NULL_KEY": 1, - "llGetOwner": 1, - "someString": 2, - "touch_start": 1, - "num_detected": 2, - "list": 1, - "agentsInRegion": 3, - "llGetAgentList": 1, - "AGENT_LIST_REGION": 1, - "[": 1, - "]": 1, - "numOfAgents": 2, - "llGetListLength": 1, - "index": 4, - "defaults": 1, - "to": 1, - "for": 2, - "<": 1, - "-": 1, - "+": 2, - "each": 1, - "agent": 1, - "in": 1, - "region": 1, - "llRegionSayTo": 1, - "llList2Key": 1, - "touch_end": 1, - "llSetInventoryPermMask": 1, - "MASK_NEXT": 1, - "PERM_ALL": 1, - "reserved.godmode": 1, - "llWhisper": 2, - "state": 3, - "other": 2 - }, - "Lasso": { - "<": 7, - "LassoScript": 1, - "//": 169, - "JSON": 2, - "Encoding": 1, - "and": 52, - "Decoding": 1, - "Copyright": 1, - "-": 2248, - "LassoSoft": 1, - "Inc.": 1, - "": 1, - "": 1, - "": 1, - "This": 5, - "tag": 11, - "is": 35, - "now": 23, - "incorporated": 1, - "in": 46, - "Lasso": 15, - "If": 4, - "(": 640, - "Lasso_TagExists": 1, - ")": 639, - "False": 1, - ";": 573, - "Define_Tag": 1, - "Namespace": 1, - "Required": 1, - "Optional": 1, - "Local": 7, - "Map": 3, - "r": 8, - "n": 30, - "t": 8, - "f": 2, - "b": 2, - "output": 30, - "newoptions": 1, - "options": 2, - "array": 20, - "set": 10, - "list": 4, - "queue": 2, - "priorityqueue": 2, - "stack": 2, - "pair": 1, - "map": 23, - "[": 22, - "]": 23, - "literal": 3, - "string": 59, - "integer": 30, - "decimal": 5, - "boolean": 4, - "null": 26, - "date": 23, - "temp": 12, - "object": 7, - "{": 18, - "}": 18, - "client_ip": 1, - "client_address": 1, - "__jsonclass__": 6, - "deserialize": 2, - "": 3, - "": 3, - "Decode_JSON": 2, - "Decode_": 1, - "value": 14, - "consume_string": 1, - "ibytes": 9, - "unescapes": 1, - "u": 1, - "UTF": 4, - "%": 14, - "QT": 4, - "TZ": 2, - "T": 3, - "consume_token": 1, - "obytes": 3, - "delimit": 7, - "true": 12, - "false": 8, - ".": 5, - "consume_array": 1, - "consume_object": 1, - "key": 3, - "val": 1, - "native": 2, - "comment": 2, - "http": 6, - "//www.lassosoft.com/json": 1, - "start": 5, - "Literal": 2, - "String": 1, - "Object": 2, - "JSON_RPCCall": 1, - "RPCCall": 1, - "JSON_": 1, - "method": 7, - "params": 11, - "id": 7, - "host": 6, - "//localhost/lassoapps.8/rpc/rpc.lasso": 1, - "request": 2, - "result": 6, - "JSON_Records": 3, - "KeyField": 1, - "ReturnField": 1, - "ExcludeField": 1, - "Fields": 1, - "_fields": 1, - "fields": 2, - "No": 1, - "found": 5, - "for": 65, - "_keyfield": 4, - "keyfield": 4, - "ID": 1, - "_index": 1, - "_return": 1, - "returnfield": 1, - "_exclude": 1, - "excludefield": 1, - "_records": 1, - "_record": 1, - "_temp": 1, - "_field": 1, - "_output": 1, - "error_msg": 15, - "error_code": 11, - "found_count": 11, - "rows": 1, - "#_records": 1, - "Return": 7, - "@#_output": 1, - "/Define_Tag": 1, - "/If": 3, - "define": 20, - "trait_json_serialize": 2, - "trait": 1, - "require": 1, - "asString": 3, - "json_serialize": 18, - "e": 13, - "bytes": 8, - "+": 146, - "#e": 13, - "Replace": 19, - "&": 21, - "json_literal": 1, - "asstring": 4, - "format": 7, - "gmt": 1, - "|": 13, - "trait_forEach": 1, - "local": 116, - "foreach": 1, - "#output": 50, - "#delimit": 7, - "#1": 3, - "return": 75, - "with": 25, - "pr": 1, - "eachPair": 1, - "select": 1, - "#pr": 2, - "first": 12, - "second": 8, - "join": 5, - "json_object": 2, - "foreachpair": 1, - "any": 14, - "serialize": 1, - "json_consume_string": 3, - "while": 9, - "#temp": 19, - "#ibytes": 17, - "export8bits": 6, - "#obytes": 5, - "import8bits": 4, - "Escape": 1, - "/while": 7, - "unescape": 1, - "//Replace": 1, - "if": 76, - "BeginsWith": 1, - "&&": 30, - "EndsWith": 1, - "Protect": 1, - "serialization_reader": 1, - "xml": 1, - "read": 1, - "/Protect": 1, - "else": 32, - "size": 24, - "or": 6, - "regexp": 1, - "d": 2, - "Z": 1, - "matches": 1, - "Format": 1, - "yyyyMMdd": 2, - "HHmmssZ": 1, - "HHmmss": 1, - "/if": 53, - "json_consume_token": 2, - "marker": 4, - "Is": 1, - "also": 5, - "end": 2, - "of": 24, - "token": 1, - "//............................................................................": 2, - "string_IsNumeric": 1, - "json_consume_array": 3, - "While": 1, - "Discard": 1, - "whitespace": 3, - "Else": 7, - "insert": 18, - "#key": 12, - "json_consume_object": 2, - "Loop_Abort": 1, - "/While": 1, - "Find": 3, - "isa": 25, - "First": 4, - "find": 57, - "Second": 1, - "json_deserialize": 1, - "removeLeading": 1, - "bom_utf8": 1, - "Reset": 1, - "on": 1, - "provided": 1, - "**/": 1, - "type": 63, - "parent": 5, - "public": 1, - "onCreate": 1, - "...": 3, - "..onCreate": 1, - "#rest": 1, - "json_rpccall": 1, - "#id": 2, - "#host": 4, - "Lasso_UniqueID": 1, - "Include_URL": 1, - "PostParams": 1, - "Encode_JSON": 1, - "#method": 1, - "#params": 5, - "": 6, - "2009": 14, - "09": 10, - "04": 8, - "JS": 126, - "Added": 40, - "content_body": 14, - "compatibility": 4, - "pre": 4, - "8": 6, - "5": 4, - "05": 4, - "07": 6, - "timestamp": 4, - "to": 98, - "knop_cachestore": 4, - "maxage": 2, - "parameter": 8, - "knop_cachefetch": 4, - "Corrected": 8, - "construction": 2, - "cache_name": 2, - "internally": 2, - "the": 86, - "knop_cache": 2, - "tags": 14, - "so": 16, - "it": 20, - "will": 12, - "work": 6, - "correctly": 2, - "at": 10, - "site": 4, - "root": 2, - "2008": 6, - "11": 8, - "dummy": 2, - "knop_debug": 4, - "ctype": 2, - "be": 38, - "able": 14, - "transparently": 2, - "without": 4, - "L": 2, - "Debug": 2, - "24": 2, - "knop_stripbackticks": 2, - "01": 4, - "28": 2, - "Cache": 2, - "name": 32, - "used": 12, - "when": 10, - "using": 8, - "session": 4, - "storage": 8, - "2007": 6, - "12": 8, - "knop_cachedelete": 2, - "Created": 4, - "03": 2, - "knop_foundrows": 2, - "condition": 4, - "returning": 2, - "normal": 2, - "For": 2, - "lasso_tagexists": 4, - "define_tag": 48, - "namespace=": 12, - "__html_reply__": 4, - "define_type": 14, - "debug": 2, - "_unknowntag": 6, - "onconvert": 2, - "stripbackticks": 2, - "description=": 2, - "priority=": 2, - "required=": 2, - "input": 2, - "split": 2, - "@#output": 2, - "/define_tag": 36, - "description": 34, - "namespace": 16, - "priority": 8, - "Johan": 2, - "S": 2, - "lve": 2, - "#charlist": 6, - "current": 10, - "time": 8, - "a": 52, - "mixed": 2, - "up": 4, - "as": 26, - "seed": 6, - "#seed": 36, - "convert": 4, - "this": 14, - "base": 6, - "conversion": 4, - "get": 12, - "#base": 8, - "/": 6, - "over": 2, - "new": 14, - "chunk": 2, - "millisecond": 2, - "math_random": 2, - "lower": 2, - "upper": 2, - "__lassoservice_ip__": 2, - "response_localpath": 8, - "removetrailing": 8, - "response_filepath": 8, - "//tagswap.net/found_rows": 2, - "action_statement": 2, - "string_findregexp": 8, - "#sql": 42, - "ignorecase": 12, - "||": 8, - "maxrecords_value": 2, - "inaccurate": 2, - "must": 4, - "accurate": 2, - "Default": 2, - "usually": 2, - "fastest.": 2, - "Can": 2, - "not": 10, - "GROUP": 4, - "BY": 6, - "example.": 2, - "normalize": 4, - "around": 2, - "FROM": 2, - "expression": 6, - "string_replaceregexp": 8, - "replace": 8, - "ReplaceOnlyOne": 2, - "substring": 6, - "remove": 6, - "ORDER": 2, - "statement": 4, - "since": 4, - "causes": 4, - "problems": 2, - "field": 26, - "aliases": 2, - "we": 2, - "can": 14, - "simple": 2, - "later": 2, - "query": 4, - "contains": 2, - "use": 10, - "SQL_CALC_FOUND_ROWS": 2, - "which": 2, - "much": 2, - "slower": 2, - "see": 16, - "//bugs.mysql.com/bug.php": 2, - "removeleading": 2, - "inline": 4, - "sql": 2, - "exit": 2, - "here": 2, - "normally": 2, - "/inline": 2, - "fallback": 4, - "required": 10, - "optional": 36, - "local_defined": 26, - "knop_seed": 2, - "#RandChars": 4, - "Get": 2, - "Math_Random": 2, - "Min": 2, - "Max": 2, - "Size": 2, - "#value": 14, - "#numericValue": 4, - "length": 8, - "#cryptvalue": 10, - "#anyChar": 2, - "Encrypt_Blowfish": 2, - "decrypt_blowfish": 2, - "String_Remove": 2, - "StartPosition": 2, - "EndPosition": 2, - "Seed": 2, - "String_IsAlphaNumeric": 2, - "self": 72, - "_date_msec": 4, - "/define_type": 4, - "seconds": 4, - "default": 4, - "store": 4, - "all": 6, - "page": 14, - "vars": 8, - "specified": 8, - "iterate": 12, - "keys": 6, - "var": 38, - "#item": 10, - "#type": 26, - "#data": 14, - "/iterate": 12, - "//fail_if": 6, - "session_id": 6, - "#session": 10, - "session_addvar": 4, - "#cache_name": 72, - "duration": 4, - "#expires": 4, - "server_name": 6, - "initiate": 10, - "thread": 6, - "RW": 6, - "lock": 24, - "global": 40, - "Thread_RWLock": 6, - "create": 6, - "reference": 10, - "@": 8, - "writing": 6, - "#lock": 12, - "writelock": 4, - "check": 6, - "cache": 4, - "unlock": 6, - "writeunlock": 4, - "#maxage": 4, - "cached": 8, - "data": 12, - "too": 4, - "old": 4, - "reading": 2, - "readlock": 2, - "readunlock": 2, - "ignored": 2, - "//##################################################################": 4, - "knoptype": 2, - "All": 4, - "Knop": 6, - "custom": 8, - "types": 10, - "should": 4, - "have": 6, - "identify": 2, - "registered": 2, - "knop": 6, - "isknoptype": 2, - "knop_knoptype": 2, - "prototype": 4, - "version": 4, - "14": 4, - "Base": 2, - "framework": 2, - "Contains": 2, - "common": 4, - "member": 10, - "Used": 2, - "boilerplate": 2, - "creating": 4, - "other": 4, - "instance": 8, - "variables": 2, - "are": 4, - "available": 2, - "well": 2, - "CHANGE": 4, - "NOTES": 4, - "Syntax": 4, - "adjustments": 4, - "9": 2, - "Changed": 6, - "error": 22, - "numbers": 2, - "added": 10, - "even": 2, - "language": 10, - "already": 2, - "exists.": 2, - "improved": 4, - "reporting": 2, - "messages": 6, - "such": 2, - "from": 6, - "bad": 2, - "database": 14, - "queries": 2, - "error_lang": 2, - "provide": 2, - "knop_lang": 8, - "add": 12, - "localized": 2, - "except": 2, - "knop_base": 8, - "html": 4, - "xhtml": 28, - "help": 10, - "nicely": 2, - "formatted": 2, - "output.": 2, - "Centralized": 2, - "knop_base.": 2, - "Moved": 6, - "codes": 2, - "improve": 2, - "documentation.": 2, - "It": 2, - "always": 2, - "an": 8, - "parameter.": 2, - "trace": 2, - "tagtime": 4, - "was": 6, - "nav": 4, - "earlier": 2, - "varname": 4, - "retreive": 2, - "variable": 8, - "that": 18, - "stored": 2, - "in.": 2, - "automatically": 2, - "sense": 2, - "doctype": 6, - "exists": 2, - "buffer.": 2, - "The": 6, - "performance.": 2, - "internal": 2, - "html.": 2, - "Introduced": 2, - "_knop_data": 10, - "general": 2, - "level": 2, - "caching": 2, - "between": 2, - "different": 2, - "objects.": 2, - "TODO": 2, - "option": 2, - "Google": 2, - "Code": 2, - "Wiki": 2, - "working": 2, - "properly": 4, - "run": 2, - "by": 12, - "atbegin": 2, - "handler": 2, - "explicitly": 2, - "*/": 2, - "entire": 4, - "ms": 2, - "defined": 4, - "each": 8, - "instead": 4, - "avoid": 2, - "recursion": 2, - "properties": 4, - "#endslash": 10, - "#tags": 2, - "#t": 2, - "doesn": 4, - "p": 2, - "Parameters": 4, - "nParameters": 2, - "Internal.": 2, - "Finds": 2, - "out": 2, - "used.": 2, - "Looks": 2, - "unless": 2, - "array.": 2, - "variable.": 2, - "Looking": 2, - "#xhtmlparam": 4, - "plain": 2, - "#doctype": 4, - "copy": 4, - "standard": 2, - "code": 2, - "errors": 12, - "error_data": 12, - "form": 2, - "grid": 2, - "lang": 2, - "user": 4, - "#error_lang": 12, - "addlanguage": 4, - "strings": 6, - "@#errorcodes": 2, - "#error_lang_custom": 2, - "#custom_language": 10, - "once": 4, - "one": 2, - "#custom_string": 4, - "#errorcodes": 4, - "#error_code": 10, - "message": 6, - "getstring": 2, - "test": 2, - "known": 2, - "lasso": 2, - "knop_timer": 2, - "knop_unique": 2, - "look": 2, - "#varname": 6, - "loop_abort": 2, - "tag_name": 2, - "#timer": 2, - "#trace": 4, - "merge": 2, - "#eol": 8, - "2010": 4, - "23": 4, - "Custom": 2, - "interact": 2, - "databases": 2, - "Supports": 4, - "both": 2, - "MySQL": 2, - "FileMaker": 2, - "datasources": 2, - "2012": 4, - "06": 2, - "10": 2, - "SP": 4, - "Fix": 2, - "precision": 2, - "bug": 2, - "6": 2, - "0": 2, - "1": 2, - "renderfooter": 2, - "15": 2, - "Add": 2, - "support": 6, - "Thanks": 2, - "Ric": 2, - "Lewis": 2, - "settable": 4, - "removed": 2, - "table": 6, - "nextrecord": 12, - "deprecation": 2, - "warning": 2, - "corrected": 2, - "verification": 2, - "index": 4, - "before": 4, - "calling": 2, - "resultset_count": 6, - "break": 2, - "versions": 2, - "fixed": 4, - "incorrect": 2, - "debug_trace": 2, - "addrecord": 4, - "how": 2, - "keyvalue": 10, - "returned": 6, - "adding": 2, - "records": 4, - "inserting": 2, - "generated": 2, - "suppressed": 2, - "specifying": 2, - "saverecord": 8, - "deleterecord": 4, - "case.": 2, - "recorddata": 6, - "no": 2, - "longer": 2, - "touch": 2, - "current_record": 2, - "zero": 2, - "access": 2, - "occurrence": 2, - "same": 4, - "returns": 4, - "knop_databaserows": 2, - "inlinename.": 4, - "next.": 2, - "remains": 2, - "supported": 2, - "backwards": 2, - "compatibility.": 2, - "resets": 2, - "record": 20, - "pointer": 8, - "reaching": 2, - "last": 4, - "honors": 2, - "incremented": 2, - "recordindex": 4, - "specific": 2, - "found.": 2, - "getrecord": 8, - "REALLY": 2, - "works": 4, - "keyvalues": 4, - "double": 2, - "oops": 4, - "I": 4, - "thought": 2, - "but": 2, - "misplaced": 2, - "paren...": 2, - "corresponding": 2, - "resultset": 2, - "/resultset": 2, - "through": 2, - "handling": 2, - "better": 2, - "knop_user": 4, - "keeplock": 4, - "updates": 2, - "datatype": 2, - "knop_databaserow": 2, - "iterated.": 2, - "When": 2, - "iterating": 2, - "row": 2, - "values.": 2, - "Addedd": 2, - "increments": 2, - "recordpointer": 2, - "called": 2, - "until": 2, - "reached.": 2, - "Returns": 2, - "long": 2, - "there": 2, - "more": 2, - "records.": 2, - "Useful": 2, - "loop": 2, - "example": 2, - "below": 2, - "Implemented": 2, - "reset": 2, - "query.": 2, - "shortcut": 2, - "Removed": 2, - "onassign": 2, - "touble": 2, - "Extended": 2, - "field_names": 2, - "names": 4, - "db": 2, - "objects": 2, - "never": 2, - "been": 2, - "optionally": 2, - "supports": 2, - "sql.": 2, - "Make": 2, - "sure": 2, - "SQL": 2, - "includes": 2, - "relevant": 2, - "lockfield": 2, - "locking": 4, - "capturesearchvars": 2, - "mysteriously": 2, - "after": 2, - "operations": 2, - "caused": 2, - "errors.": 2, - "flag": 2, - "save": 2, - "locked": 2, - "releasing": 2, - "Adding": 2, - "progress.": 2, - "Done": 2, - "oncreate": 2, - "getrecord.": 2, - "documentation": 2, - "most": 2, - "existing": 2, - "it.": 2, - "Faster": 2, - "than": 2, - "scratch.": 2, - "shown_first": 2, - "again": 2, - "hoping": 2, - "s": 2, - "only": 2, - "captured": 2, - "update": 2, - "uselimit": 2, - "querys": 2, - "LIMIT": 2, - "still": 2, - "gets": 2, - "proper": 2, - "searchresult": 2, - "separate": 2, - "COUNT": 2 - }, - "Latte": { - "{": 54, - "**": 1, - "*": 4, - "@param": 3, - "string": 2, - "basePath": 1, - "web": 1, - "base": 1, - "path": 1, - "robots": 2, - "tell": 1, - "how": 1, - "to": 2, - "index": 1, - "the": 1, - "content": 1, - "of": 3, - "a": 4, - "page": 1, - "(": 18, - "optional": 1, - ")": 18, - "array": 1, - "flashes": 1, - "flash": 3, - "messages": 1, - "}": 54, - "": 1, - "html": 1, - "": 1, - "": 1, - "": 6, - "charset=": 1, - "name=": 4, - "content=": 5, - "n": 8, - "ifset=": 1, - "http": 1, - "equiv=": 1, - "": 1, - "ifset": 1, - "title": 4, - "/ifset": 1, - "Translation": 1, - "report": 1, - "": 1, - "": 2, - "rel=": 2, - "media=": 1, - "href=": 4, - "": 3, - "block": 3, - "#head": 1, - "/block": 3, - "": 1, - "": 1, - "class=": 12, - "document.documentElement.className": 1, - "+": 3, - "#navbar": 1, - "include": 3, - "_navbar.latte": 1, - "
    ": 6, - "inner": 1, - "foreach=": 3, - "_flash.latte": 1, - "
    ": 7, - "#content": 1, - "
    ": 1, - "
    ": 1, - "src=": 1, - "#scripts": 1, - "": 1, - "": 1, - "var": 3, - "define": 1, - "author": 7, - "": 2, - "Author": 2, - "authorId": 2, - "-": 71, - "id": 3, - "black": 2, - "avatar": 2, - "img": 2, - "rounded": 2, - "class": 2, - "tooltip": 4, - "Total": 1, - "time": 4, - "shortName": 1, - "translated": 4, - "on": 5, - "all": 1, - "videos.": 1, - "amaraCallbackLink": 1, - "row": 2, - "col": 3, - "md": 2, - "outOf": 5, - "done": 7, - "threshold": 4, - "alert": 2, - "warning": 2, - "<=>": 2, - "Seems": 1, - "complete": 1, - "|": 6, - "out": 1, - "

    ": 2, - "elseif": 2, - "<": 1, - "p": 1, - "if": 7, - "Although": 1, - "is": 1, - "there": 1, - "are": 1, - "no": 1, - "English": 1, - "subtitles": 1, - "for": 1, - "comparison.": 1, - "/if": 8, - "/cache": 1, - "editor": 1, - "ksid": 2, - "new": 5, - "video": 2, - "siteId": 1, - "Video": 1, - "khanovaskola.cz": 1, - "revision": 18, - "rev": 4, - "this": 3, - "older": 1, - "#": 2, - "else": 2, - "newer": 1, - "
    ": 1, - "

    ": 1, - "diffs": 3, - "noescape": 2, - "

    ": 1, - "description": 1, - "text": 4, - "as": 2, - "line": 3, - "context": 1, - "splitter": 1, - "template": 1, - "bottom": 1, - "Expand": 1, - "fa": 16, - "sort": 1, - "ellipsis": 1, - "h": 1, - "success": 1, - "amaraEdit": 1, - "amaraId": 2, - "editButton": 1, - "btn": 17, - "default": 6, - "edit": 1, - "khanAcademy": 1, - "kaButton": 1, - "link": 1, - "info": 1, - "group": 4, - "approve": 1, - "thumbs": 3, - "up": 1, - "markIncomplete": 2, - "down": 2, - "redirectToAdd": 1, - "plus": 1, - "square": 1, - "table": 2, - "condensed": 1, - "revisions": 1, - "revId": 1, - "secondary": 2, - "Percent": 1, - "lines": 1, - "&": 1, - "thinsp": 1, - "%": 1, - "": 3, - "": 3, - "": 2, - "incomplete": 3, - "approved": 2, - "": 1, - "user": 1, - "loggedIn": 1, - "&&": 1, - "comments": 2, - "count": 1, - "": 2, - "": 2, - "colspan=": 1, - "": 1, - "comment": 4, - "left": 1, - "createdAt": 1, - "timeAgo": 1, - "noborder": 1, - "input": 3, - "form": 1, - "control": 1, - "Comment": 1, - "only": 1, - "visible": 1, - "other": 1, - "editors": 1, - "save": 1, - "share": 1, - "": 1, - "": 1, - "/form": 1, - "/foreach": 1, - "
    ": 1 - }, - "Less": { - "@blue": 4, - "#3bbfce": 1, - ";": 7, - "@margin": 3, - "px": 1, - ".content": 1, - "-": 3, - "navigation": 1, - "{": 2, - "border": 2, - "color": 3, - "darken": 1, - "(": 1, - "%": 1, - ")": 1, - "}": 2, - ".border": 1, - "padding": 1, - "/": 2, - "margin": 1 - }, - "Liquid": { - "": 1, - "html": 1, - "PUBLIC": 1, - "W3C": 1, - "DTD": 2, - "XHTML": 1, - "1": 1, - "0": 1, - "Transitional": 1, - "EN": 1, - "http": 2, - "www": 1, - "w3": 1, - "org": 1, - "TR": 1, - "xhtml1": 2, - "transitional": 1, - "dtd": 1, - "": 1, - "xmlns=": 1, - "xml": 1, - "lang=": 2, - "": 1, - "": 1, - "equiv=": 1, - "content=": 1, - "": 1, - "{": 89, - "shop.name": 2, - "}": 89, - "-": 4, - "page_title": 1, - "": 1, - "|": 31, - "global_asset_url": 5, - "stylesheet_tag": 3, - "script_tag": 5, - "shopify_asset_url": 1, - "asset_url": 2, - "content_for_header": 1, - "": 1, - "": 1, - "id=": 28, - "

    ": 1, - "class=": 14, - "": 9, - "href=": 9, - "Skip": 1, - "to": 1, - "navigation.": 1, - "": 9, - "

    ": 1, - "%": 46, - "if": 5, - "cart.item_count": 7, - "
    ": 23, - "style=": 5, - "

    ": 3, - "There": 1, - "pluralize": 3, - "in": 8, - "title=": 3, - "your": 1, - "cart": 1, - "

    ": 3, - "

    ": 1, - "Your": 1, - "subtotal": 1, - "is": 1, - "cart.total_price": 2, - "money": 5, - ".": 3, - "

    ": 1, - "for": 6, - "item": 1, - "cart.items": 1, - "onMouseover=": 2, - "onMouseout=": 2, - "": 4, - "src=": 5, - "
    ": 23, - "endfor": 6, - "
    ": 2, - "endif": 5, - "

    ": 1, - "

    ": 1, - "onclick=": 1, - "View": 1, - "Mini": 1, - "Cart": 1, - "(": 1, - ")": 1, - "
    ": 3, - "content_for_layout": 1, - "
      ": 5, - "link": 2, - "linklists.main": 1, - "menu.links": 1, - "
    • ": 5, - "link.title": 2, - "link_to": 2, - "link.url": 2, - "
    • ": 5, - "
    ": 5, - "tags": 1, - "tag": 4, - "collection.tags": 1, - "": 1, - "link_to_add_tag": 1, - "": 1, - "highlight_active_tag": 1, - "link_to_tag": 1, - "linklists.footer.links": 1, - "All": 1, - "prices": 1, - "are": 1, - "shop.currency": 1, - "Powered": 1, - "by": 1, - "Shopify": 1, - "": 1, - "": 1, - "

    ": 1, - "We": 1, - "have": 1, - "wonderful": 1, - "products": 1, - "

    ": 1, - "image": 1, - "product.images": 1, - "forloop.first": 1, - "rel=": 2, - "alt=": 2, - "else": 1, - "product.title": 1, - "Vendor": 1, - "product.vendor": 1, - "link_to_vendor": 1, - "Type": 1, - "product.type": 1, - "link_to_type": 1, - "": 1, - "product.price_min": 1, - "product.price_varies": 1, - "product.price_max": 1, - "": 1, - "
    ": 1, - "action=": 1, - "method=": 1, - "": 1, - "": 1, - "type=": 2, - "
    ": 1, - "product.description": 1, - "": 1 - }, - "Literate Agda": { - "documentclass": 1, - "{": 35, - "article": 1, - "}": 35, - "usepackage": 7, - "amssymb": 1, - "bbm": 1, - "[": 2, - "greek": 1, - "english": 1, - "]": 2, - "babel": 1, - "ucs": 1, - "utf8x": 1, - "inputenc": 1, - "autofe": 1, - "DeclareUnicodeCharacter": 3, - "ensuremath": 3, - "ulcorner": 1, - "urcorner": 1, - "overline": 1, - "equiv": 1, - "fancyvrb": 1, - "DefineVerbatimEnvironment": 1, - "code": 3, - "Verbatim": 1, - "%": 1, - "Add": 1, - "fancy": 1, - "options": 1, - "here": 1, - "if": 1, - "you": 3, - "like.": 1, - "begin": 2, - "document": 2, - "module": 3, - "NatCat": 1, - "where": 2, - "open": 2, - "import": 2, - "Relation.Binary.PropositionalEquality": 1, - "-": 21, - "If": 1, - "can": 1, - "show": 1, - "that": 1, - "a": 1, - "relation": 1, - "only": 1, - "ever": 1, - "has": 1, - "one": 1, - "inhabitant": 5, - "get": 1, - "the": 1, - "category": 1, - "laws": 1, - "for": 1, - "free": 1, - "EasyCategory": 3, - "(": 36, - "obj": 4, - "Set": 2, - ")": 36, - "_": 6, - "x": 34, - "y": 28, - "z": 18, - "id": 9, - "single": 4, - "r": 26, - "s": 29, - "assoc": 2, - "w": 4, - "t": 6, - "Data.Nat": 1, - "same": 5, - ".0": 2, - "n": 14, - "refl": 6, - ".": 5, - "suc": 6, - "m": 6, - "cong": 1, - "trans": 5, - ".n": 1, - "zero": 1, - "Nat": 1, - "end": 2 - }, - "Literate CoffeeScript": { - "The": 2, - "**Scope**": 2, - "class": 2, - "regulates": 1, - "lexical": 1, - "scoping": 1, - "within": 2, - "CoffeeScript.": 1, - "As": 1, - "you": 2, - "generate": 1, - "code": 1, - "create": 1, - "a": 8, - "tree": 1, - "of": 4, - "scopes": 1, - "in": 2, - "the": 12, - "same": 1, - "shape": 1, - "as": 3, - "nested": 1, - "function": 2, - "bodies.": 1, - "Each": 1, - "scope": 2, - "knows": 1, - "about": 1, - "variables": 3, - "declared": 2, - "it": 4, - "and": 5, - "has": 1, - "reference": 3, - "to": 8, - "its": 3, - "parent": 2, - "enclosing": 1, - "scope.": 2, - "In": 1, - "this": 3, - "way": 1, - "we": 4, - "know": 1, - "which": 3, - "are": 3, - "new": 2, - "need": 2, - "be": 2, - "with": 3, - "var": 4, - "shared": 1, - "external": 1, - "scopes.": 1, - "Import": 1, - "helpers": 1, - "plan": 1, - "use.": 1, - "{": 4, - "extend": 1, - "last": 1, - "}": 4, - "require": 1, - "exports.Scope": 1, - "Scope": 1, - "root": 1, - "is": 3, - "top": 2, - "-": 5, - "level": 1, - "object": 1, - "for": 3, - "given": 1, - "file.": 1, - "@root": 1, - "null": 1, - "Initialize": 1, - "lookups": 1, - "up": 1, - "chain": 1, - "well": 1, - "**Block**": 1, - "node": 1, - "belongs": 2, - "where": 1, - "should": 1, - "declare": 1, - "that": 2, - "to.": 1, - "constructor": 1, - "(": 5, - "@parent": 2, - "@expressions": 1, - "@method": 1, - ")": 6, - "@variables": 3, - "[": 4, - "name": 8, - "type": 5, - "]": 4, - "@positions": 4, - "Scope.root": 1, - "unless": 1, - "Adds": 1, - "variable": 1, - "or": 1, - "overrides": 1, - "an": 1, - "existing": 1, - "one.": 1, - "add": 1, - "immediate": 3, - "return": 1, - "@parent.add": 1, - "if": 2, - "@shared": 1, - "not": 1, - "Object": 1, - "hasOwnProperty.call": 1, - ".type": 1, - "else": 2, - "@variables.push": 1, - "When": 1, - "super": 1, - "called": 1, - "find": 1, - "current": 1, - "method": 1, - "param": 1, - "_": 3, - "then": 1, - "tempVars": 1, - "realVars": 1, - ".push": 1, - "v.name": 1, - "realVars.sort": 1, - ".concat": 1, - "tempVars.sort": 1, - "Return": 1, - "list": 1, - "assignments": 1, - "supposed": 1, - "made": 1, - "at": 1, - "assignedVariables": 1, - "v": 1, - "when": 1, - "v.type.assigned": 1 - }, - "LiveScript": { - "a": 8, - "-": 25, - "const": 1, - "b": 3, - "var": 1, - "c": 3, - "d": 3, - "_000_000km": 1, - "*": 1, - "ms": 1, - "e": 2, - "(": 9, - ")": 10, - "dashes": 1, - "identifiers": 1, - "underscores_i": 1, - "/regexp1/": 1, - "and": 3, - "//regexp2//g": 1, - "strings": 1, - "[": 2, - "til": 1, - "]": 2, - "or": 2, - "to": 2, - "|": 3, - "map": 1, - "filter": 1, - "fold": 1, - "+": 1, - "class": 1, - "Class": 1, - "extends": 1, - "Anc": 1, - "est": 1, - "args": 1, - "copy": 1, - "from": 1, - "callback": 4, - "error": 6, - "data": 2, - "<": 1, - "read": 1, - "file": 2, - "return": 2, - "if": 2, - "<~>": 1, - "write": 1 - }, - "Logos": { - "%": 15, - "hook": 2, - "ABC": 2, - "-": 3, - "(": 8, - "id": 2, - ")": 8, - "a": 1, - "B": 1, - "b": 1, - "{": 4, - "log": 1, - ";": 8, - "return": 2, - "orig": 2, - "nil": 2, - "}": 4, - "end": 4, - "subclass": 1, - "DEF": 1, - "NSObject": 1, - "init": 3, - "[": 2, - "c": 1, - "RuntimeAccessibleClass": 1, - "alloc": 1, - "]": 2, - "group": 1, - "OptionalHooks": 2, - "void": 1, - "release": 1, - "self": 1, - "retain": 1, - "ctor": 1, - "if": 1, - "OptionalCondition": 1 - }, - "Logtalk": { - "-": 3, - "object": 2, - "(": 4, - "hello_world": 1, - ")": 4, - ".": 2, - "%": 2, - "the": 2, - "initialization/1": 1, - "directive": 1, - "argument": 1, - "is": 2, - "automatically": 1, - "executed": 1, - "when": 1, - "loaded": 1, - "into": 1, - "memory": 1, - "initialization": 1, - "nl": 2, - "write": 1, - "end_object.": 1 - }, - "LookML": { - "-": 12, - "view": 1, - "comments": 1, - "fields": 1, - "dimension": 4, - "id": 2, - "primary_key": 1, - "true": 3, - "type": 6, - "int": 3, - "sql": 6, - "{": 6, - "TABLE": 6, - "}": 6, - ".id": 1, - "body": 1, - ".body": 1, - "dimension_group": 2, - "created": 1, - "time": 4, - "timeframes": 2, - "[": 2, - "date": 2, - "week": 2, - "month": 2, - "]": 2, - ".created_at": 1, - "headline_id": 1, - "hidden": 2, - ".headline_id": 1, - "updated": 1, - ".updated_at": 1, - "user_id": 1, - ".user_id": 1, - "measure": 1, - "count": 2, - "detail": 2, - "detail*": 1, - "sets": 1, - "headlines.id": 1, - "headlines.name": 1, - "users.id": 1 - }, - "Lua": { - "-": 60, - "A": 1, - "simple": 1, - "counting": 1, - "object": 1, - "that": 1, - "increments": 1, - "an": 1, - "internal": 1, - "counter": 1, - "whenever": 1, - "it": 2, - "receives": 2, - "a": 5, - "bang": 3, - "at": 2, - "its": 2, - "first": 1, - "inlet": 2, - "or": 2, - "changes": 1, - "to": 8, - "whatever": 1, - "number": 3, - "second": 1, - "inlet.": 1, - "local": 11, - "HelloCounter": 4, - "pd.Class": 3, - "new": 3, - "(": 56, - ")": 56, - "register": 3, - "function": 16, - "initialize": 3, - "sel": 3, - "atoms": 3, - "self.inlets": 3, - "self.outlets": 3, - "self.num": 5, - "return": 3, - "true": 3, - "end": 26, - "in_1_bang": 2, - "self": 10, - "outlet": 10, - "{": 16, - "}": 16, - "+": 3, - "in_2_float": 2, - "f": 12, - "FileListParser": 5, - "Base": 1, - "filename": 2, - "File": 2, - "extension": 2, - "Number": 4, - "of": 9, - "files": 1, - "in": 7, - "batch": 2, - "To": 3, - "[": 17, - "list": 1, - "trim": 1, - "]": 17, - "binfile": 3, - "vidya": 1, - "file": 8, - "modder": 1, - "s": 5, - "mechanisms": 1, - "self.extension": 3, - "the": 7, - "last": 1, - "self.batchlimit": 3, - "in_1_symbol": 1, - "for": 9, - "i": 10, - "do": 8, - "..": 7, - "in_2_list": 1, - "d": 9, - "in_3_float": 1, - "FileModder": 10, - "Object": 1, - "triggering": 1, - "Incoming": 1, - "single": 1, - "data": 2, - "bytes": 3, - "from": 3, - "Total": 1, - "route": 1, - "buflength": 1, - "Glitch": 3, - "type": 2, - "point": 2, - "times": 2, - "glitch": 2, - "Toggle": 1, - "randomized": 1, - "glitches": 3, - "within": 2, - "bounds": 2, - "Active": 1, - "get": 1, - "next": 1, - "byte": 2, - "clear": 2, - "buffer": 2, - "FLOAT": 1, - "write": 3, - "Currently": 1, - "active": 2, - "namedata": 1, - "self.filedata": 4, - "pattern": 1, - "random": 3, - "splice": 1, - "self.glitchtype": 5, - "Minimum": 1, - "image": 1, - "self.glitchpoint": 6, - "repeat": 1, - "on": 1, - "given": 1, - "self.randrepeat": 5, - "Toggles": 1, - "whether": 1, - "repeating": 1, - "should": 1, - "be": 1, - "self.randtoggle": 3, - "Hold": 1, - "all": 1, - "which": 1, - "are": 1, - "converted": 1, - "ints": 1, - "range": 1, - "self.bytebuffer": 8, - "Buffer": 1, - "length": 1, - "currently": 1, - "self.buflength": 7, - "if": 2, - "then": 4, - "plen": 2, - "math.random": 8, - "patbuffer": 3, - "table.insert": 4, - "%": 1, - "#patbuffer": 1, - "elseif": 2, - "randlimit": 4, - "else": 1, - "sloc": 3, - "schunksize": 2, - "splicebuffer": 3, - "table.remove": 1, - "insertpoint": 2, - "#self.bytebuffer": 1, - "_": 2, - "v": 4, - "ipairs": 2, - "outname": 3, - "pd.post": 1, - "in_3_list": 1, - "Shift": 1, - "indexed": 2, - "in_4_list": 1, - "in_5_float": 1, - "in_6_float": 1, - "in_7_list": 1, - "in_8_list": 1 - }, - "M": { - "%": 207, - "zewdAPI": 52, - ";": 1309, - "Enterprise": 5, - "Web": 5, - "Developer": 5, - "run": 2, - "-": 1605, - "time": 9, - "functions": 4, - "and": 59, - "user": 27, - "APIs": 1, - "Product": 2, - "(": 2144, - "Build": 6, - ")": 2152, - "Date": 2, - "Fri": 1, - "Nov": 1, - "|": 171, - "for": 77, - "GT.M": 30, - "m_apache": 3, - "Copyright": 12, - "c": 113, - "M/Gateway": 4, - "Developments": 4, - "Ltd": 4, - "Reigate": 4, - "Surrey": 4, - "UK.": 4, - "All": 4, - "rights": 4, - "reserved.": 4, - "http": 13, - "//www.mgateway.com": 4, - "Email": 4, - "rtweed@mgateway.com": 4, - "This": 26, - "program": 19, - "is": 88, - "free": 15, - "software": 12, - "you": 17, - "can": 20, - "redistribute": 11, - "it": 45, - "and/or": 11, - "modify": 11, - "under": 14, - "the": 223, - "terms": 11, - "of": 84, - "GNU": 33, - "Affero": 33, - "General": 33, - "Public": 33, - "License": 48, - "as": 23, - "published": 11, - "by": 35, - "Free": 11, - "Software": 11, - "Foundation": 11, - "either": 13, - "version": 16, - "or": 50, - "at": 21, - "your": 16, - "option": 12, - "any": 16, - "later": 11, - "version.": 11, - "distributed": 13, - "in": 80, - "hope": 11, - "that": 19, - "will": 23, - "be": 35, - "useful": 11, - "but": 19, - "WITHOUT": 12, - "ANY": 12, - "WARRANTY": 11, - "without": 11, - "even": 12, - "implied": 11, - "warranty": 11, - "MERCHANTABILITY": 11, - "FITNESS": 11, - "FOR": 15, - "A": 12, - "PARTICULAR": 11, - "PURPOSE.": 11, - "See": 15, - "more": 13, - "details.": 12, - "You": 13, - "should": 16, - "have": 21, - "received": 11, - "a": 130, - "copy": 13, - "along": 11, - "with": 45, - "this": 39, - "program.": 9, - "If": 14, - "not": 39, - "see": 26, - "": 11, - ".": 815, - "QUIT": 251, - "_": 127, - "getVersion": 1, - "zewdCompiler": 6, - "date": 1, - "getDate": 1, - "compilePage": 2, - "app": 13, - "page": 12, - "mode": 12, - "technology": 9, - "outputPath": 4, - "multilingual": 4, - "maxLines": 4, - "d": 381, - "g": 228, - "compileAll": 2, - "templatePageName": 2, - "autoTranslate": 2, - "language": 6, - "verbose": 2, - "zewdMgr": 1, - "startSession": 2, - "requestArray": 2, - "serverArray": 1, - "sessionArray": 5, - "filesArray": 1, - "zewdPHP": 8, - ".requestArray": 2, - ".serverArray": 1, - ".sessionArray": 3, - ".filesArray": 1, - "closeSession": 2, - "saveSession": 2, - "endOfPage": 2, - "prePageScript": 2, - "sessid": 146, - "releaseLock": 2, - "tokeniseURL": 2, - "url": 2, - "zewdCompiler16": 5, - "getSessid": 1, - "token": 21, - "i": 465, - "isTokenExpired": 2, - "p": 84, - "zewdSession": 39, - "initialiseSession": 1, - "k": 122, - "deleteSession": 2, - "changeApp": 1, - "appName": 4, - "setSessionValue": 6, - "setRedirect": 1, - "toPage": 1, - "e": 210, - "n": 197, - "path": 4, - "s": 775, - "getRootURL": 1, - "l": 84, - "zewd": 17, - "trace": 24, - "_sessid_": 3, - "_token_": 1, - "_nextPage": 1, - "zcvt": 11, - "nextPage": 1, - "isNextPageTokenValid": 2, - "zewdCompiler13": 10, - "isCSP": 1, - "normaliseTextValue": 1, - "text": 6, - "replaceAll": 11, - "writeLine": 2, - "line": 14, - "CacheTempBuffer": 2, - "j": 67, - "increment": 11, - "w": 127, - "displayOptions": 2, - "fieldName": 5, - "listName": 6, - "escape": 7, - "codeValue": 7, - "name": 121, - "nnvp": 1, - "nvp": 1, - "pos": 33, - "textValue": 6, - "value": 72, - "getSessionValue": 3, - "tr": 13, - "+": 189, - "f": 93, - "o": 51, - "q": 244, - "codeValueEsc": 7, - "textValueEsc": 7, - "htmlOutputEncode": 2, - "zewdAPI2": 5, - "_codeValueEsc_": 1, - "selected": 4, - "translationMode": 1, - "_appName": 1, - "typex": 1, - "type": 2, - "avoid": 1, - "Cache": 3, - "bug": 2, - "getPhraseIndex": 1, - "zewdCompiler5": 1, - "licensed": 1, - "setWarning": 2, - "isTemp": 11, - "setWLDSymbol": 1, - "Duplicate": 1, - "performance": 1, - "also": 4, - "wldAppName": 1, - "wldName": 1, - "wldSessid": 1, - "zzname": 1, - "zv": 6, - "[": 54, - "extcErr": 1, - "mess": 3, - "namespace": 1, - "zt": 20, - "valueErr": 1, - "exportCustomTags": 2, - "tagList": 1, - "filepath": 10, - ".tagList": 1, - "exportAllCustomTags": 2, - "importCustomTags": 2, - "filePath": 2, - "zewdForm": 1, - "stripSpaces": 6, - "np": 17, - "obj": 6, - "prop": 6, - "setSessionObject": 3, - "allowJSONAccess": 1, - "sessionName": 30, - "access": 21, - "disallowJSONAccess": 1, - "JSONAccess": 1, - "existsInSession": 2, - "existsInSessionArray": 2, - "p1": 5, - "p2": 10, - "p3": 3, - "p4": 2, - "p5": 2, - "p6": 2, - "p7": 2, - "p8": 2, - "p9": 2, - "p10": 2, - "p11": 2, - "clearSessionArray": 1, - "arrayName": 35, - "setSessionArray": 1, - "itemName": 16, - "itemValue": 7, - "getSessionArray": 1, - "array": 22, - "clearArray": 2, - "set": 98, - "m": 37, - "getSessionArrayErr": 1, - "Come": 1, - "here": 4, - "if": 44, - "error": 62, - "occurred": 2, - "addToSession": 2, - "@name": 4, - "mergeToSession": 1, - "mergeGlobalToSession": 2, - "globalName": 7, - "mergeGlobalFromSession": 2, - "mergeArrayToSession": 1, - "mergeArrayToSessionObject": 2, - ".array": 1, - "mergeArrayFromSession": 1, - "mergeFromSession": 1, - "deleteFromSession": 1, - "deleteFromSessionObject": 1, - "sessionNameExists": 1, - "getSessionArrayValue": 2, - "subscript": 7, - "exists": 6, - ".exists": 1, - "sessionArrayValueExists": 2, - "deleteSessionArrayValue": 2, - "Objects": 1, - "objectName": 13, - "propertyName": 3, - "propertyValue": 5, - "comma": 3, - "x": 96, - "replace": 27, - "objectName_": 2, - "_propertyName": 2, - "_propertyName_": 2, - "_propertyValue_": 1, - "_p": 1, - "quoted": 1, - "string": 50, - "FromStr": 6, - "S": 99, - "ToStr": 4, - "InText": 4, - "old": 3, - "new": 15, - "ok": 14, - "removeDocument": 1, - "zewdDOM": 3, - "instanceName": 2, - "clearXMLIndex": 1, - "zewdSchemaForm": 1, - "closeDOM": 1, - "makeTokenString": 1, - "length": 7, - "token_": 1, - "r": 88, - "makeString": 3, - "char": 9, - "len": 8, - "create": 6, - "characters": 8, - "str": 15, - "convertDateToSeconds": 1, - "hdate": 7, - "Q": 58, - "hdate*86400": 1, - "convertSecondsToDate": 1, - "secs": 2, - "secs#86400": 1, - "getTokenExpiry": 2, - "h*86400": 1, - "h": 39, - "randChar": 1, - "R": 2, - "lowerCase": 2, - "stripLeadingSpaces": 2, - "stripTrailingSpaces": 2, - "d1": 7, - "zd": 1, - "yy": 19, - "dd": 4, - "I": 43, - "<10>": 1, - "dd=": 2, - "mm=": 3, - "1": 74, - "d1=": 1, - "2": 14, - "p1=": 1, - "mm": 7, - "p2=": 1, - "yy=": 1, - "3": 6, - "dd_": 1, - "mm_": 1, - "inetTime": 1, - "Decode": 1, - "Internet": 1, - "Format": 1, - "Time": 1, - "from": 16, - "H": 1, - "format": 2, - "Offset": 1, - "relative": 1, - "to": 74, - "GMT": 1, - "eg": 3, - "hh": 4, - "ss": 4, - "<": 20, - "_hh": 1, - "time#3600": 1, - "_mm": 1, - "time#60": 1, - "_ss": 2, - "hh_": 1, - "_mm_": 1, - "openNewFile": 2, - "openFile": 2, - "openDOM": 2, - "&": 28, - "#39": 1, - "<\",\"<\")>": 1, - "string=": 1, - "gt": 1, - "amp": 1, - "HTML": 1, - "quot": 2, - "stop": 20, - "no": 54, - "no2": 1, - "p1_c_p2": 1, - "getIP": 2, - "Get": 2, - "own": 2, - "IP": 1, - "address": 1, - "ajaxErrorRedirect": 2, - "classExport": 2, - "className": 2, - "methods": 2, - ".methods": 1, - "strx": 2, - "disableEwdMgr": 1, - "enableEwdMgr": 1, - "enableWLDAccess": 1, - "disableWLDAccess": 1, - "isSSOValid": 2, - "sso": 2, - "username": 8, - "password": 8, - "zewdMgrAjax2": 1, - "uniqueId": 1, - "nodeOID": 2, - "filename": 2, - "linkToParentSession": 2, - "zewdCompiler20": 1, - "exportToGTM": 1, - "routine": 6, - "zewdDemo": 1, - "Tutorial": 1, - "Wed": 1, - "Apr": 1, - "getLanguage": 1, - "getRequestValue": 1, - "login": 1, - "getTextValue": 4, - "getPasswordValue": 2, - "_username_": 1, - "_password": 1, - "logine": 1, - "message": 8, - "textid": 1, - "errorMessage": 1, - "ewdDemo": 8, - "clearList": 2, - "appendToList": 4, - "addUsername": 1, - "newUsername": 5, - "newUsername_": 1, - "setTextValue": 4, - "testValue": 1, - "pass": 24, - "getSelectValue": 3, - "_user": 1, - "getPassword": 1, - "setPassword": 1, - "getObjDetails": 1, - "data": 43, - "_user_": 1, - "_data": 2, - "setRadioOn": 2, - "initialiseCheckbox": 2, - "setCheckboxOn": 3, - "createLanguageList": 1, - "setMultipleSelectOn": 2, - "clearTextArea": 2, - "textarea": 2, - "createTextArea": 1, - ".textarea": 1, - "userType": 4, - "setMultipleSelectValues": 1, - ".selected": 1, - "testField3": 3, - ".value": 1, - "testField2": 1, - "field3": 1, - "must": 8, - "null": 6, - "dateTime": 1, - "start": 26, - "student": 14, - "zwrite": 1, - "write": 59, - "order": 11, - "do": 15, - "quit": 30, - "file": 10, - "part": 3, - "DataBallet.": 4, - "C": 9, - "Laurent": 2, - "Parenteau": 2, - "": 2, - "DataBallet": 4, - "encode": 1, - "Return": 1, - "base64": 6, - "URL": 2, - "Filename": 1, - "safe": 3, - "alphabet": 2, - "RFC": 1, - "todrop": 2, - "Populate": 1, - "values": 4, - "on": 17, - "first": 10, - "use": 5, - "only.": 1, - "zextract": 3, - "zlength": 3, - "Comment": 1, - "comment": 4, - "block": 1, - "comments": 5, - "always": 2, - "semicolon": 1, - "next": 1, - "while": 4, - "legal": 1, - "blank": 1, - "whitespace": 2, - "alone": 1, - "valid": 2, - "**": 4, - "Comments": 1, - "graphic": 3, - "character": 5, - "such": 1, - "@#": 1, - "*": 6, - "{": 5, - "}": 5, - "]": 15, - "/": 3, - "space": 1, - "considered": 1, - "though": 1, - "t": 12, - "it.": 2, - "ASCII": 2, - "whose": 1, - "numeric": 8, - "code": 29, - "above": 3, - "below": 1, - "are": 14, - "NOT": 2, - "allowed": 18, - "routine.": 1, - "multiple": 1, - "semicolons": 1, - "okay": 1, - "has": 7, - "tag": 2, - "after": 3, - "does": 1, - "command": 11, - "Tag1": 1, - "Tags": 2, - "an": 14, - "uppercase": 2, - "lowercase": 1, - "alphabetic": 2, - "series": 2, - "HELO": 1, - "most": 1, - "common": 1, - "label": 5, - "LABEL": 1, - "followed": 1, - "directly": 1, - "open": 1, - "parenthesis": 2, - "formal": 1, - "list": 1, - "variables": 3, - "close": 1, - "ANOTHER": 1, - "X": 19, - "Normally": 1, - "subroutine": 1, - "would": 2, - "ended": 1, - "we": 1, - "taking": 1, - "advantage": 1, - "rule": 1, - "END": 1, - "implicit": 1, - "Digest": 2, - "Extension": 9, - "Piotr": 7, - "Koper": 7, - "": 7, - "trademark": 2, - "Fidelity": 2, - "Information": 2, - "Services": 2, - "Inc.": 2, - "//sourceforge.net/projects/fis": 2, - "gtm/": 2, - "simple": 2, - "OpenSSL": 3, - "based": 1, - "digest": 19, - "extension": 3, - "rewrite": 1, - "EVP_DigestInit": 1, - "usage": 3, - "example": 5, - "additional": 5, - "M": 24, - "wrapper.": 1, - "//www.openssl.org/docs/crypto/EVP_DigestInit.html": 1, - "The": 11, - "return": 7, - "digest.init": 3, - "usually": 1, - "when": 11, - "invalid": 4, - "algorithm": 1, - "was": 5, - "specification.": 1, - "Anyway": 1, - "properly": 1, - "used": 6, - "never": 4, - "fail.": 1, - "Please": 2, - "feel": 2, - "contact": 2, - "me": 2, - "questions": 2, - "returns": 7, - "HEX": 1, - "all": 8, - "one": 5, - "digest.update": 2, - ".c": 2, - ".m": 11, - "digest.final": 2, - ".d": 1, - "init": 6, - "alg": 3, - "context": 1, - "handler": 9, - "try": 1, - "etc": 1, - "returned": 1, - "occurs": 1, - "e.g.": 2, - "unknown": 1, - "update": 1, - "ctx": 4, - "msg": 6, - "updates": 1, - ".ctx": 2, - ".msg": 1, - "final": 1, - "hex": 1, - "encoded": 8, - "frees": 1, - "memory": 1, - "allocated": 1, - ".digest": 1, - "algorithms": 1, - "availability": 1, - "depends": 1, - "libcrypto": 1, - "configuration": 1, - "md4": 1, - "md5": 2, - "sha": 1, - "sha1": 1, - "sha224": 1, - "sha256": 1, - "sha512": 1, - "dss1": 1, - "ripemd160": 1, - "These": 2, - "two": 2, - "routines": 6, - "illustrate": 1, - "dynamic": 1, - "scope": 1, - "triangle1": 1, - "sum": 15, - "main2": 1, - "y": 33, - "triangle2": 1, - "compute": 2, - "Fibonacci": 1, - "b": 64, - "term": 10, - "start1": 2, - "entry": 5, - "start2": 1, - "function": 6, - "computes": 1, - "factorial": 3, - "f*n": 1, - "main": 1, - "GMRGPNB0": 1, - "CISC/JH/RM": 1, - "NARRATIVE": 1, - "BUILDER": 1, - "TEXT": 5, - "GENERATOR": 1, - "cont.": 1, - "/20/91": 1, - "Text": 1, - "Generator": 1, - "Jan": 1, - "ENTRY": 2, - "WITH": 1, - "GMRGA": 1, - "SET": 3, - "TO": 6, - "POINT": 1, - "AT": 1, - "WHICH": 1, - "WANT": 1, - "START": 1, - "BUILDING": 1, - "GMRGE0": 11, - "GMRGADD": 4, - "D": 64, - "GMR": 6, - "GMRGA0": 11, - "GMRGPDA": 9, - "GMRGCSW": 2, - "NOW": 1, - "DTC": 1, - "GMRGB0": 9, - "O": 24, - "GMRGST": 6, - "GMRGPDT": 2, - "STAT": 8, - "GMRGRUT0": 3, - "GMRGF0": 3, - "GMRGSTAT": 8, - "P": 68, - "_GMRGB0_": 2, - "GMRD": 6, - "GMRGSSW": 3, - "SNT": 1, - "GMRGPNB1": 1, - "GMRGNAR": 8, - "GMRGPAR_": 2, - "_GMRGSPC_": 3, - "_GMRGRM": 2, - "_GMRGE0": 1, - "STORETXT": 1, - "GMRGRUT1": 1, - "GMRGSPC": 3, - "F": 10, - "GMRGD0": 7, - "ALIST": 1, - "G": 40, - "TMP": 26, - "J": 38, - "GMRGPLVL": 6, - "GMRGA0_": 1, - "_GMRGD0_": 1, - "_GMRGSSW_": 1, - "_GMRGADD": 1, - "GMRGI0": 6, - "label1": 1, - "if1": 2, - "statement": 3, - "if2": 2, - "statements": 1, - "contrasted": 1, - "": 3, - "variable": 8, - "a=": 3, - "smaller": 3, - "than": 4, - "b=": 4, - "if3": 1, - "else": 7, - "clause": 2, - "if4": 1, - "bodies": 1, - "exercise": 1, - "car": 14, - "@": 8, - "MD5": 6, - "Implementation": 1, - "It": 2, - "works": 1, - "ZCHSET": 2, - "please": 1, - "don": 1, - "only": 9, - "joke.": 1, - "Serves": 1, - "well": 2, - "reverse": 1, - "engineering": 1, - "obtaining": 1, - "boolean": 2, - "integer": 1, - "addition": 1, - "modulo": 1, - "division.": 1, - "//en.wikipedia.org/wiki/MD5": 1, - "#64": 1, - "msg_": 1, - "_m_": 1, - "n64": 2, - "*8": 2, - "read": 2, - ".p": 1, - "..": 28, - "...": 6, - "*i": 3, - "#16": 3, - "xor": 4, - "rotate": 5, - "#4294967296": 6, - "n32h": 5, - "bit": 5, - "#2": 1, - "*2147483648": 2, - "a#2": 1, - "b#2": 1, - ".a": 1, - ".b": 1, - "rol": 1, - "a*": 1, - "**n": 1, - "c#4294967296": 1, - "*n": 1, - "n#256": 1, - "n#16": 2, - "MDB": 60, - "M/DB": 2, - "Mumps": 1, - "Emulation": 1, - "Amazon": 1, - "SimpleDB": 1, - "buildDate": 1, - "indexLength": 10, - "Note": 2, - "keyId": 108, - "been": 4, - "tested": 1, - "these": 1, - "called": 8, - "To": 2, - "Initialise": 2, - "service": 1, - "//192.168.1.xxx/mdb/test.mgwsi": 1, - "Action": 2, - "addUser": 2, - "userKeyId": 6, - "userSecretKey": 6, - "requestId": 17, - "boxUsage": 11, - "startTime": 21, - ".startTime": 5, - "MDBUAF": 2, - "end": 33, - ".boxUsage": 22, - "createDomain": 1, - "domainName": 38, - "dn": 4, - "dnx": 3, - "id": 33, - "noOfDomains": 12, - "MDBConfig": 1, - "getDomainId": 3, - "found": 7, - "namex": 8, - "buildItemNameIndex": 2, - "domainId": 53, - "itemId": 41, - "itemValuex": 3, - "countDomains": 2, - "key": 22, - "deleteDomain": 2, - "listDomains": 1, - "maxNoOfDomains": 2, - "nextToken": 7, - "domainList": 3, - "fullName": 3, - "decodeBase64": 1, - "encodeBase64": 1, - "itemExists": 1, - "getItemId": 2, - "getAttributeValueId": 3, - "attribId": 36, - "valuex": 13, - "putAttributes": 2, - "attributes": 32, - "valueId": 16, - "xvalue": 4, - "add": 5, - "Item": 1, - "Domain": 1, - "itemNamex": 4, - "parseJSON": 1, - "zmwire": 53, - "attributesJSON": 1, - ".attributes": 5, - "attribute": 14, - "getAttributeId": 2, - "domain": 1, - "Not": 1, - "same": 2, - "remove": 6, - "existing": 2, - "now": 1, - "name/value": 2, - "pair": 1, - "getAttributes": 2, - "suppressBoxUsage": 1, - "attrNo": 9, - "valueNo": 6, - "delete": 2, - "item": 2, - "associated": 1, - "queryIndex": 1, - "records": 2, - "specified": 4, - "pairs": 2, - "vno": 2, - "left": 5, - "completely": 3, - "references": 1, - "maxNoOfItems": 3, - "itemList": 12, - "session": 1, - "identifier": 1, - "stored": 1, - "queryExpression": 16, - "relink": 1, - "zewdGTMRuntime": 1, - "CGIEVAR": 1, - "cgi": 1, - "unescName": 5, - "urlDecode": 2, - "KEY": 36, - "response": 29, - "WebLink": 1, - "point": 2, - "action": 15, - "AWSAcessKeyId": 1, - "db": 9, - "hash": 1, - "itemsAndAttrs": 2, - "secretKey": 1, - "signatureMethod": 2, - "signatureVersion": 3, - "stringToSign": 2, - "rltKey": 2, - "_action_": 2, - "h_": 3, - "mdbKey": 2, - "errorResponse": 9, - "initialise": 3, - ".requestId": 7, - "createResponse": 4, - "installMDBM": 1, - "authenticate": 1, - "MDBSession": 1, - "createResponseStringToSign": 1, - "Security": 1, - "OK": 6, - "_db": 1, - "MDBAPI": 1, - "lineNo": 19, - "CacheTempEWD": 16, - "_db_": 1, - "db_": 1, - "_action": 1, - "resp": 5, - "metaData": 1, - "domainMetadata": 1, - ".metaData": 1, - "paramName": 8, - "paramValue": 5, - "_i_": 5, - "Query": 1, - "DomainName": 2, - "QueryExpression": 2, - "MaxNumberOfItems": 2, - "NextToken": 3, - "QueryWithAttributes": 1, - "AttributeName.": 2, - "Select": 2, - "SelectExpression": 1, - "entering": 1, - "runSelect.": 1, - "selectExpression": 3, - "finished": 1, - "runSelect": 3, - "count": 18, - "select": 3, - "where": 6, - "limit": 14, - "asc": 1, - "inValue": 6, - "expr": 18, - "rel": 2, - "itemStack": 3, - "between": 2, - "<=\">": 1, - "lastWord=": 7, - "inAttr=": 5, - "expr=": 10, - "thisWord=": 7, - "inAttr": 2, - "c=": 28, - "queryExpression=": 4, - "_queryExpression": 2, - "4": 5, - "isNull": 1, - "5": 1, - "8": 1, - "isNotNull": 1, - "9": 1, - "offset": 6, - "prevName": 1, - "np=": 1, - "diffNames": 6, - "_term": 3, - "expr_": 1, - "_orderBy": 1, - "runQuery": 2, - ".itemList": 4, - "escVals": 1, - "str_c": 2, - "_x_": 1, - "query": 4, - "orderBy": 1, - "_query": 1, - "parseSelect": 1, - ".domainName": 2, - ".queryExpression": 1, - ".orderBy": 1, - ".limit": 1, - "executeSelect": 1, - ".itemStack": 1, - "***": 2, - "listCopy": 3, - "N.N": 12, - "N.N1": 4, - "externalSelect": 2, - "json": 9, - "_keyId_": 1, - "_selectExpression": 1, - "spaces": 3, - "string_spaces": 1, - "test": 6, - "miles": 4, - "gallons": 4, - "miles/gallons": 1, - "computepesimist": 1, - "miles/": 1, - "computeoptimist": 1, - "/gallons": 1, - "Mumtris": 3, - "tetris": 1, - "game": 1, - "MUMPS": 1, - "fun.": 1, - "Resize": 1, - "terminal": 2, - "maximize": 1, - "PuTTY": 1, - "window": 1, - "restart": 3, - "so": 4, - "report": 1, - "true": 2, - "size": 3, - "mumtris.": 1, - "Try": 2, - "setting": 3, - "ansi": 2, - "compatible": 1, - "cursor": 1, - "positioning.": 1, - "NOTICE": 1, - "uses": 1, - "making": 1, - "delays": 1, - "lower": 1, - "s.": 1, - "That": 1, - "means": 2, - "CPU": 1, - "fall": 5, - "lock": 2, - "clear": 6, - "change": 6, - "preview": 3, - "over": 2, - "exit": 3, - "short": 1, - "circuit": 1, - "redraw": 3, - "timeout": 1, - "harddrop": 1, - "other": 1, - "ex": 5, - "hd": 3, - "*c": 1, - "<0&'d>": 1, - "i=": 14, - "st": 6, - "t10m": 1, - "0": 23, - "<0>": 2, - "q=": 6, - "d=": 1, - "zb": 2, - "right": 3, - "fl=": 1, - "gr=": 1, - "hl": 2, - "help": 2, - "drop": 2, - "hd=": 1, - "matrix": 2, - "stack": 8, - "draw": 3, - "ticks": 2, - "h=": 2, - "1000000000": 1, - "e=": 1, - "t10m=": 1, - "100": 2, - "n=": 1, - "ne=": 1, - "x=": 5, - "y=": 3, - "r=": 3, - "collision": 6, - "score": 5, - "k=": 1, - "j=": 4, - "<1))))>": 1, - "800": 1, - "200": 1, - "lv": 5, - "lc=": 1, - "10": 1, - "lc": 3, - "mt_": 2, - "cls": 6, - ".s": 5, - "dh/2": 6, - "dw/2": 6, - "*s": 4, - "u": 6, - "echo": 1, - "intro": 1, - "workaround": 1, - "ANSI": 1, - "driver": 1, - "NL": 1, - "some": 1, - "place": 9, - "clearscreen": 1, - "N": 19, - "h/2": 3, - "*w/2": 3, - "fill": 3, - "fl": 2, - "*x": 1, - "mx": 4, - "my": 5, - "step": 8, - "**lv*sb": 1, - "*lv": 1, - "sc": 3, - "ne": 2, - "gr": 1, - "w*3": 1, - "dev": 1, - "zsh": 1, - "dw": 1, - "dh": 1, - "elements": 3, - "elemId": 3, - "rotateVersions": 1, - "rotateVersion": 2, - "bottom": 1, - "coordinate": 1, - "____": 1, - "__": 2, - "||": 1, - "ax": 2, - "bx": 2, - "cx": 2, - "ay": 2, - "cy": 2, - "sumx": 3, - "sqrx": 3, - "sumxy": 5, - "x*x": 1, - "x*y": 1, - "PCRE": 23, - "tries": 1, - "deliver": 1, - "best": 2, - "possible": 5, - "interface": 1, - "world": 4, - "providing": 1, - "support": 3, - "arrays": 1, - "stringified": 2, - "parameter": 1, - "names": 3, - "simplified": 1, - "API": 7, - "locales": 2, - "exceptions": 1, - "Perl5": 1, - "Global": 8, - "Match.": 1, - "pcreexamples.m": 2, - "comprehensive": 1, - "examples": 4, - "pcre": 59, - "beginner": 1, - "level": 5, - "tips": 1, - "match": 41, - "limits": 6, - "exception": 12, - "handling": 2, - "UTF": 17, - "GT.M.": 1, - "out": 2, - "known": 2, - "book": 1, - "regular": 1, - "expressions": 1, - "//regex.info/": 1, - "For": 3, - "information": 1, - "//pcre.org/": 1, - "Initial": 2, - "release": 2, - "pkoper": 2, - "pcre.version": 1, - "config": 3, - "case": 7, - "insensitive": 7, - "protect": 11, - "erropt": 6, - "isstring": 5, - "pcre.config": 1, - ".name": 1, - ".erropt": 3, - ".isstring": 1, - ".n": 20, - "ec": 10, - "compile": 14, - "pattern": 21, - "options": 45, - "locale": 24, - "mlimit": 20, - "reclimit": 19, - "optional": 16, - "joined": 3, - "Unix": 1, - "pcre_maketables": 2, - "cases": 1, - "undefined": 1, - "environment": 7, - "defined": 2, - "LANG": 4, - "LC_*": 1, - "output": 49, - "Debian": 2, - "tip": 1, - "dpkg": 1, - "reconfigure": 1, - "enable": 1, - "system": 1, - "wide": 1, - "number": 5, - "internal": 3, - "matching": 4, - "calls": 1, - "pcre_exec": 4, - "execution": 2, - "manual": 2, - "details": 5, - "depth": 1, - "recursion": 1, - "calling": 2, - "ref": 41, - "err": 4, - "erroffset": 3, - "pcre.compile": 1, - ".pattern": 3, - ".ref": 13, - ".err": 1, - ".erroffset": 1, - "exec": 4, - "subject": 24, - "startoffset": 3, - "octets": 2, - "starts": 1, - "like": 4, - "chars": 3, - "pcre.exec": 2, - ".subject": 3, - "zl": 7, - "ec=": 7, - "ovector": 25, - "element": 1, - "code=": 4, - "ovecsize": 5, - "fullinfo": 3, - "OPTIONS": 2, - "SIZE": 1, - "CAPTURECOUNT": 1, - "BACKREFMAX": 1, - "FIRSTBYTE": 1, - "FIRSTTABLE": 1, - "LASTLITERAL": 1, - "NAMEENTRYSIZE": 1, - "NAMECOUNT": 1, - "STUDYSIZE": 1, - "OKPARTIAL": 1, - "JCHANGED": 1, - "HASCRORLF": 1, - "MINLENGTH": 1, - "JIT": 1, - "JITSIZE": 1, - "NAME": 3, - "nametable": 4, - "index": 1, - "indexed": 4, - "substring": 1, - "begin": 18, - "begin=": 3, - "end=": 4, - "contains": 2, - "octet": 4, - "UNICODE": 1, - "ze": 8, - "begin_": 1, - "_end": 1, - "store": 6, - "stores": 1, - "captured": 6, - "key=": 2, - "gstore": 3, - "round": 12, - "byref": 5, - "global": 26, - "ref=": 3, - "l=": 2, - "capture": 10, - "indexes": 1, - "extended": 1, - "NAMED_ONLY": 2, - "named": 12, - "groups": 5, - "OVECTOR": 2, - "namedonly": 9, - "options=": 4, - "o=": 12, - "namedonly=": 2, - "ovector=": 2, - "NO_AUTO_CAPTURE": 2, - "_capture_": 2, - "matches": 10, - "s=": 4, - "_s_": 1, - "GROUPED": 1, - "group": 4, - "result": 3, - "patterns": 3, - "pcredemo": 1, - "pcreccp": 1, - "cc": 1, - "procedure": 2, - "Perl": 1, - "utf8": 2, - "crlf": 6, - "empty": 7, - "skip": 6, - "determine": 1, - "them": 1, - "before": 2, - "byref=": 2, - "check": 2, - "UTF8": 2, - "double": 1, - "utf8=": 1, - "crlf=": 3, - "NL_CRLF": 1, - "NL_ANY": 1, - "NL_ANYCRLF": 1, - "none": 1, - "build": 2, - "NEWLINE": 1, - ".start": 1, - "unwind": 1, - "call": 1, - "optimize": 1, - "leave": 1, - "advance": 1, - "LF": 1, - "CR": 1, - "CRLF": 1, - "middle": 1, - ".i": 2, - ".match": 2, - ".round": 2, - ".byref": 2, - ".ovector": 2, - "subst": 3, - "last": 4, - "occurrences": 1, - "matched": 1, - "back": 4, - "th": 3, - "replaced": 1, - "substitution": 2, - "begins": 1, - "substituted": 2, - "defaults": 3, - "ends": 1, - "backref": 1, - "boffset": 1, - "prepare": 1, - "reference": 2, - ".subst": 1, - ".backref": 1, - "silently": 1, - "zco": 1, - "": 1, - "s/": 6, - "b*": 7, - "/Xy/g": 6, - "print": 8, - "aa": 9, - "et": 4, - "direct": 3, - "take": 1, - "default": 6, - "setup": 3, - "trap": 10, - "source": 3, - "location": 5, - "argument": 1, - "@ref": 2, - "E": 12, - "COMPILE": 2, - "meaning": 1, - "zs": 2, - "re": 2, - "raise": 3, - "XC": 1, - "specific": 3, - "U16384": 1, - "U16385": 1, - "U16386": 1, - "U16387": 1, - "U16388": 2, - "U16389": 1, - "U16390": 1, - "U16391": 1, - "U16392": 2, - "U16393": 1, - "NOTES": 1, - "U16401": 2, - "raised": 2, - "i.e.": 3, - "NOMATCH": 2, - "ever": 1, - "uncommon": 1, - "situation": 1, - "too": 1, - "small": 1, - "considering": 1, - "controlled": 1, - "U16402": 1, - "U16403": 1, - "U16404": 1, - "U16405": 1, - "U16406": 1, - "U16407": 1, - "U16408": 1, - "U16409": 1, - "U16410": 1, - "U16411": 1, - "U16412": 1, - "U16414": 1, - "U16415": 1, - "U16416": 1, - "U16417": 1, - "U16418": 1, - "U16419": 1, - "U16420": 1, - "U16421": 1, - "U16423": 1, - "U16424": 1, - "U16425": 1, - "U16426": 1, - "U16427": 1, - "Examples": 4, - "pcre.m": 1, - "parameters": 1, - "pcreexamples": 32, - "shining": 1, - "Test": 1, - "Simple": 2, - "zwr": 17, - "Match": 4, - "grouped": 2, - "Just": 1, - "Change": 2, - "word": 3, - "Escape": 1, - "sequence": 1, - "More": 1, - "Low": 1, - "api": 1, - "Setup": 1, - "myexception2": 2, - "st_": 1, - "zl_": 2, - "Compile": 2, - ".options": 1, - "Run": 1, - ".offset": 1, - "used.": 2, - "strings": 1, - "submitted": 1, - "exact": 1, - "usable": 1, - "integers": 1, - "way": 1, - "i*2": 3, - "what": 2, - "/mg": 2, - "aaa": 1, - "nbb": 1, - ".*": 1, - "discover": 1, - "stackusage": 3, - "Locale": 5, - "Support": 1, - "Polish": 1, - "I18N": 2, - "PCRE.": 1, - "Polish.": 1, - "second": 1, - "letter": 1, - "": 1, - "which": 4, - "ISO8859": 1, - "//en.wikipedia.org/wiki/Polish_code_pages": 1, - "complete": 1, - "listing": 1, - "CHAR": 1, - "different": 3, - "modes": 1, - "In": 1, - "probably": 1, - "expected": 1, - "working": 1, - "single": 2, - "ISO": 3, - "chars.": 1, - "Use": 1, - "zch": 7, - "prepared": 1, - "GTM": 8, - "BADCHAR": 1, - "errors.": 1, - "Also": 1, - "others": 1, - "might": 1, - "expected.": 1, - "POSIX": 1, - "localization": 1, - "nolocale": 2, - "zchset": 2, - "isolocale": 2, - "utflocale": 2, - "LC_CTYPE": 1, - "Set": 2, - "obtain": 2, - "results.": 1, - "envlocale": 2, - "ztrnlnm": 2, - "Notes": 1, - "Enabling": 1, - "native": 1, - "requires": 1, - "libicu": 2, - "gtm_chset": 1, - "gtm_icu_version": 1, - "recompiled": 1, - "object": 4, - "files": 4, - "Instructions": 1, - "Install": 1, - "libicu48": 2, - "apt": 1, - "get": 2, - "install": 1, - "append": 1, - "chown": 1, - "gtm": 1, - "/opt/gtm": 1, - "Startup": 1, - "errors": 6, - "INVOBJ": 1, - "Cannot": 1, - "ZLINK": 1, - "due": 1, - "unexpected": 1, - "Object": 1, - "compiled": 1, - "CHSET": 1, - "written": 3, - "startup": 1, - "correct": 1, - "above.": 1, - "Limits": 1, - "built": 1, - "recursion.": 1, - "Those": 1, - "prevent": 1, - "engine": 1, - "very": 2, - "long": 2, - "runs": 2, - "especially": 1, - "there": 2, - "paths": 2, - "tree": 1, - "checked.": 1, - "Functions": 1, - "using": 4, - "itself": 1, - "allows": 1, - "MATCH_LIMIT": 1, - "MATCH_LIMIT_RECURSION": 1, - "arguments": 1, - "library": 1, - "compilation": 2, - "Example": 1, - "longrun": 3, - "Equal": 1, - "corrected": 1, - "shortrun": 2, - "Enforced": 1, - "enforcedlimit": 2, - "Exception": 2, - "Handling": 1, - "Error": 1, - "conditions": 1, - "handled": 1, - "zc": 1, - "codes": 1, - "labels": 1, - "file.": 1, - "When": 2, - "neither": 1, - "nor": 1, - "within": 1, - "mechanism.": 1, - "depending": 1, - "caller": 1, - "exception.": 1, - "lead": 1, - "writing": 4, - "prompt": 1, - "terminating": 1, - "image.": 1, - "define": 2, - "handlers.": 1, - "Handler": 1, - "No": 17, - "nohandler": 4, - "Pattern": 1, - "failed": 1, - "unmatched": 1, - "parentheses": 1, - "<-->": 1, - "HERE": 1, - "RTSLOC": 2, - "At": 2, - "SETECODE": 1, - "Non": 1, - "assigned": 1, - "ECODE": 1, - "32": 1, - "GT": 1, - "image": 1, - "terminated": 1, - "myexception1": 3, - "zt=": 1, - "mytrap1": 2, - "zg": 2, - "mytrap3": 1, - "DETAILS": 1, - "executed": 1, - "frame": 1, - "called.": 1, - "deeper": 1, - "frames": 1, - "already": 1, - "dropped": 1, - "local": 1, - "available": 1, - "context.": 1, - "Thats": 1, - "why": 1, - "doesn": 1, - "unless": 1, - "cleared.": 1, - "Always": 1, - "done.": 2, - "Execute": 1, - "p5global": 1, - "p5replace": 1, - "p5lf": 1, - "p5nl": 1, - "newline": 1, - "utf8support": 1, - "myexception3": 1, - "contrasting": 1, - "postconditionals": 1, - "IF": 9, - "commands": 1, - "post1": 1, - "postconditional": 3, - "purposely": 4, - "TEST": 16, - "false": 5, - "post2": 1, - "special": 2, - "post": 1, - "condition": 1, - "PRCAAPR": 1, - "WASH": 1, - "ISC@ALTOONA": 1, - "PA/RGY": 1, - "PATIENT": 5, - "ACCOUNT": 1, - "PROFILE": 1, - "CONT": 1, - "/9/94": 1, - "AM": 1, - "V": 2, - "Accounts": 1, - "Receivable": 1, - "**198": 1, - "Mar": 1, - "Per": 1, - "VHA": 1, - "Directive": 1, - "modified.": 1, - "EN": 2, - "PRCATY": 2, - "NEW": 3, - "DIC": 6, - "Y": 26, - "DEBT": 10, - "PRCADB": 5, - "DA": 4, - "PRCA": 14, - "COUNT": 2, - "OUT": 2, - "SEL": 1, - "BILL": 11, - "BAT": 8, - "TRAN": 5, - "DR": 4, - "DXS": 1, - "DTOUT": 2, - "DIROUT": 1, - "DIRUT": 1, - "DUOUT": 1, - "ASK": 3, - "DPTNOFZY": 2, - "DPTNOFZK": 2, - "K": 5, - "DTIME": 1, - "UPPER": 1, - "VALM1": 1, - "RCD": 1, - "DISV": 2, - "DUZ": 3, - "NAM": 1, - "RCFN01": 1, - "COMP": 2, - "EN1": 1, - "PRCAATR": 1, - "Y_": 3, - "PRCADB_": 1, - "HDR": 1, - "PRCAAPR1": 3, - "HDR2": 1, - "DIS": 1, - "STAT1": 2, - "_PRCATY_": 1, - "COMP1": 2, - "RCY": 5, - "COMP2": 2, - "_STAT_": 1, - "_STAT": 1, - "payments": 1, - "_TRAN": 1, - "Keith": 1, - "Lynch": 1, - "p#f": 1, - "PXAI": 1, - "ISL/JVS": 1, - "ISA/KWP": 1, - "ESW": 1, - "PCE": 2, - "DRIVING": 1, - "RTN": 1, - "/20/03": 1, - "am": 1, - "CARE": 1, - "ENCOUNTER": 2, - "**15": 1, - "Aug": 1, - "DATA2PCE": 1, - "PXADATA": 7, - "PXAPKG": 9, - "PXASOURC": 10, - "PXAVISIT": 8, - "PXAUSER": 6, - "PXANOT": 3, - "ERRRET": 2, - "PXAPREDT": 2, - "PXAPROB": 15, - "PXACCNT": 2, - "add/edit/delete": 1, - "PCE.": 1, - "required": 4, - "pointer": 4, - "visit": 3, - "related.": 1, - "then": 2, - "nodes": 1, - "needed": 1, - "lookup/create": 1, - "visit.": 1, - "adding": 1, - "data.": 1, - "displayed": 1, - "screen": 1, - "debugging": 1, - "initial": 1, - "code.": 1, - "passed": 4, - "reference.": 2, - "present": 1, - "PXKERROR": 2, - "caller.": 1, - "want": 1, - "edit": 1, - "Primary": 3, - "Provider": 1, - "moment": 1, - "editing": 2, - "being": 1, - "dangerous": 1, - "dotted": 1, - "name.": 1, - "warnings": 1, - "occur": 1, - "They": 1, - "form": 1, - "general": 1, - "description": 1, - "problem.": 1, - "ERROR1": 1, - "GENERAL": 2, - "ERRORS": 4, - "SUBSCRIPT": 5, - "PASSED": 4, - "IN": 4, - "FIELD": 2, - "FROM": 5, - "WARNING2": 1, - "WARNINGS": 2, - "WARNING3": 1, - "SERVICE": 1, - "CONNECTION": 1, - "REASON": 9, - "ERROR4": 1, - "PROBLEM": 1, - "LIST": 1, - "Returns": 2, - "PFSS": 2, - "Account": 2, - "Reference": 2, - "known.": 1, - "Returned": 1, - "located": 1, - "Order": 1, - "#100": 1, - "process": 3, - "processed": 1, - "could": 1, - "incorrectly": 1, - "VARIABLES": 1, - "NOVSIT": 1, - "PXAK": 20, - "DFN": 1, - "PXAERRF": 3, - "PXADEC": 1, - "PXELAP": 1, - "PXASUB": 2, - "VALQUIET": 2, - "PRIMFND": 7, - "PXAERROR": 1, - "PXAERR": 7, - "PRVDR": 1, - "needs": 1, - "look": 1, - "up": 1, - "passed.": 1, - "@PXADATA@": 8, - "SOR": 1, - "SOURCE": 2, - "PKG2IEN": 1, - "VSIT": 1, - "PXAPIUTL": 2, - "TMPSOURC": 1, - "SAVES": 1, - "CREATES": 1, - "VST": 2, - "VISIT": 3, - "KILL": 1, - "VPTR": 1, - "PXAIVSTV": 1, - "ERR": 2, - "PXAIVST": 1, - "PRV": 1, - "PROVIDER": 1, - "AUPNVSIT": 1, - ".I": 4, - "..S": 7, - "status": 2, - "Secondary": 2, - ".S": 6, - "..I": 2, - "PXADI": 4, - "NODE": 5, - "SCREEN": 2, - "VA": 1, - "EXTERNAL": 2, - "INTERNAL": 2, - "ARRAY": 2, - "PXAICPTV": 1, - "SEND": 1, - "W": 4, - "BLD": 2, - "DIALOG": 4, - ".PXAERR": 3, - "MSG": 2, - "GLOBAL": 1, - "NA": 1, - "PROVDRST": 1, - "Check": 1, - "provider": 1, - "PRVIEN": 14, - "DETS": 7, - "DIQ": 3, - "PRI": 3, - "PRVPRIM": 2, - "AUPNVPRV": 2, - "U": 14, - ".04": 1, - "DIQ1": 1, - "POVPRM": 1, - "POVARR": 1, - "STOP": 1, - "LPXAK": 4, - "ORDX": 14, - "NDX": 7, - "ORDXP": 3, - "DX": 2, - "ICD9": 2, - "AUPNVPOV": 2, - "@POVARR@": 6, - "force": 1, - "originally": 1, - "primary": 1, - "diagnosis": 1, - "flag": 1, - ".F": 2, - "..E": 1, - "...S": 5, - "decode": 1, - "val": 5, - "Decoded": 1, - "Encoded": 1, - "decoded": 3, - "decoded_": 1, - "safechar": 3, - "zchar": 1, - "encoded_c": 1, - "encoded_": 2, - "FUNC": 1, - "DH": 1, - "zascii": 1, - "WVBRNOT": 1, - "HCIOFO/FT": 1, - "JR": 1, - "IHS/ANMC/MWR": 1, - "BROWSE": 1, - "NOTIFICATIONS": 1, - "/30/98": 1, - "WOMEN": 1, - "WVDATE": 8, - "WVENDDT1": 2, - "WVIEN": 13, - "..F": 2, - "WV": 8, - "WVXREF": 1, - "WVDFN": 6, - "SELECTING": 1, - "ONE": 2, - "CASE": 1, - "MANAGER": 1, - "AND": 3, - "THIS": 3, - "DOESN": 1, - "WVE": 2, - "": 2, - "STORE": 3, - "WVA": 2, - "WVBEGDT1": 1, - "NOTIFICATION": 1, - "IS": 3, - "QUEUED.": 1, - "WVB": 4, - "OR": 2, - "OPEN": 1, - "ONLY": 1, - "CLOSED.": 1, - ".Q": 1, - "EP": 4, - "ALREADY": 1, - "LL": 1, - "SORT": 3, - "ABOVE.": 1, - "DATE": 1, - "WVCHRT": 1, - "SSN": 1, - "WVUTL1": 2, - "SSN#": 1, - "WVNAME": 4, - "WVACC": 4, - "ACCESSION#": 1, - "WVSTAT": 1, - "STATUS": 2, - "WVUTL4": 1, - "WVPRIO": 5, - "PRIORITY": 1, - "WVCHRT_U_WVNAME_U_WVDATE_U_WVACC_U_WVSTAT_U_WVPRIO_U_WVIEN": 1, - "WVC": 4, - "COPYGBL": 3, - "COPY": 1, - "MAKE": 1, - "IT": 1, - "FLAT.": 1, - "...F": 1, - "....S": 1, - "DEQUEUE": 1, - "TASKMAN": 1, - "QUEUE": 1, - "OF": 2, - "PRINTOUT.": 1, - "SETVARS": 2, - "WVUTL5": 2, - "WVBRNOT1": 2, - "EXIT": 1, - "FOLLOW": 1, - "CALLED": 1, - "PROCEDURE": 1, - "FOLLOWUP": 1, - "MENU.": 1, - "WVBEGDT": 1, - "DT": 2, - "WVENDDT": 1, - "DEVICE": 1, - "WVBRNOT2": 1, - "WVPOP": 1, - "WVLOOP": 1, - "ZDIOUT1": 1, - "Experimental": 1, - "FileMan": 1, - "host": 2, - "Open": 1, - "Source": 1, - "Electronic": 1, - "Health": 1, - "Record": 1, - "Agent": 1, - "Licensed": 1, - "Apache": 1, - "Version": 1, - "may": 3, - "except": 1, - "compliance": 1, - "License.": 2, - "//www.apache.org/licenses/LICENSE": 1, - "Unless": 1, - "applicable": 1, - "law": 1, - "agreed": 1, - "BASIS": 1, - "WARRANTIES": 1, - "CONDITIONS": 1, - "KIND": 1, - "express": 1, - "implied.": 1, - "governing": 1, - "permissions": 2, - "limitations": 1, - "ASKFILE": 1, - "FILE": 5, - "ASKDIR": 1, - "DIR": 3, - "SAVEFILE": 2, - "Save": 1, - "given": 1, - "directory": 1, - "CHECK": 1, - "FGR": 4, - "_FILE": 1, - "IO": 4, - "DIR_": 1, - "L": 1, - "FILENAME": 1, - "_IO_": 1, - "_P_": 1, - "NM": 1, - "non": 1, - "printing": 1, - "escaped": 1, - "evaluation": 1, - "RHS": 1, - "SET.": 1, - "TODO": 1, - "Caller": 1, - "indentation": 1, - "tab": 1, - "space.": 1, - "M/Wire": 4, - "Protocol": 2, - "Systems": 1, - "By": 1, - "server": 1, - "port": 4, - "systems": 3, - "invoked": 2, - "via": 2, - "xinetd": 2, - "Edit": 1, - "/etc/services": 1, - "mwire": 2, - "/tcp": 1, - "#": 1, - "Service": 1, - "Copy": 2, - "/etc/xinetd.d/mwire": 1, - "/usr/local/gtm/zmwire": 1, - "its": 1, - "executable": 1, - "edited": 1, - "Restart": 1, - "sudo": 1, - "/etc/init.d/xinetd": 1, - "On": 1, - "installed": 1, - "MGWSI": 1, - "provide": 1, - "hashing": 1, - "passwords": 1, - "Alternatively": 1, - "substitute": 1, - "callout": 1, - "choice": 1, - "Daemon": 2, - "running": 1, - "jobbed": 1, - "job": 1, - "zmwireDaemon": 2, - "simply": 1, - "Stop": 1, - "RESJOB": 1, - "mwireVersion": 4, - "mwireDate": 2, - "July": 1, - "_crlf": 22, - "_response_": 4, - "_crlf_response_crlf": 4, - "authNeeded": 6, - "input": 41, - "cleardown": 2, - "zint": 1, - "role": 3, - "loop": 7, - "log": 1, - "halt": 3, - "auth": 2, - "ignore": 12, - "pid": 36, - "monitor": 1, - "input_crlf": 1, - "zsy": 2, - "_pid_": 1, - "_pid": 1, - "monitoroutput": 1, - "logger": 17, - "tot": 2, - "mwireLogger": 3, - "info": 1, - "response_": 1, - "_count": 1, - "setpassword": 1, - "SETPASSWORD": 2, - "secret": 2, - "": 1, - "role=": 1, - "admin": 1, - "newrole": 4, - "getGloRef": 3, - "gloName": 1, - "gloRef": 15, - "nb": 2, - "subs": 8, - "nsp": 1, - "subs_": 2, - "_data_": 3, - "subscripts": 8, - "_value_": 1, - "_error_": 1, - "kill": 3, - "xx": 16, - "method": 2, - "Missing": 5, - "JSON": 7, - "transaction": 6, - "document": 6, - "setJSON": 4, - "GlobalName": 3, - "setGlobal": 1, - "zmwire_null_value": 1, - "Invalid": 1, - "props": 1, - "arr": 2, - "getJSON": 2, - "incr": 1, - "incrbr": 1, - "class": 1, - "##": 2, - "decr": 1, - "decrby": 1, - "direction": 1, - "subscriptValue": 1, - "dataStatus": 1, - "dataValue": 1, - "nextsubscript": 2, - "reverseorder": 1, - "*2": 1, - "queryget": 1, - "xxyy": 2, - "zz": 2, - "getallsubscripts": 1, - "orderall": 1, - "": 3, - "note": 2, - "escaping": 1, - "foo": 2, - "_gloRef": 1, - "@x": 4, - "_crlf_": 1, - "j_": 1, - "params": 10, - "_crlf_resp_crlf": 2, - "_crlf_data_crlf": 2, - "mergeto": 1, - "dataLength": 4, - "keyLength": 6, - "noOfRecs": 6, - "MERGETO": 1, - "myglobal": 1, - "*6": 1, - "hello": 1, - "": 2, - "put": 1, - "top": 1, - "noOfRecs#2": 1, - "noOfRecs/2": 1, - "gloRef1": 2, - "gloRef1_": 2, - "_gloRef1_key_": 1, - "sub": 2, - "literal": 2, - "valquot_value_valquot": 1, - "json_value_": 1, - "subscripts1": 2, - "subx": 3, - "subNo": 1, - "numsub": 1, - "json_": 2, - "removeControlChars": 2, - "zobj1": 1, - "buff": 10, - "parseJSONObject": 2, - ".buff": 2, - "subs2": 6, - "_name_": 1, - "subs2_": 2, - "value_c": 1, - "newString": 4, - "newString_c": 1, - "utfConvert": 1, - "Unescape": 1, - "buf": 4, - "c1": 4, - "buf_c1_": 1 - }, - "MTML": { - "<$mt:Var>": 15, - "name=": 19, - "value=": 9, - "": 1, - "op=": 8, - "setvar=": 9, - "": 1, - "<": 2, - "a": 1, - "href": 1, - "<$mt:CategoryLabel>": 1, - "remove_html=": 1, - "": 1, - "": 1, - "": 1, - "function=": 1, - "": 1, - "gt=": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 2, - "from=": 2, - "to=": 2, - "div": 1, - "class": 1, - "col_num": 1, - "": 2, - "": 1 - }, - "Makefile": { - "all": 1, - "hello": 4, - "main.o": 3, - "factorial.o": 3, - "hello.o": 3, - "g": 4, - "+": 8, - "-": 6, - "o": 1, - "main.cpp": 2, - "c": 3, - "factorial.cpp": 2, - "hello.cpp": 2, - "clean": 1, - "rm": 1, - "rf": 1, - "*o": 1, - "SHEBANG#!make": 1, - "%": 1, - "ls": 1, - "l": 1 - }, - "Markdown": { - "Tender": 1 - }, - "Mask": { - "header": 1, - "{": 10, - "img": 1, - ".logo": 1, - "src": 1, - "alt": 1, - "logo": 1, - ";": 3, - "h4": 1, - "if": 1, - "(": 3, - "currentUser": 1, - ")": 3, - ".account": 1, - "a": 1, - "href": 1, - "}": 10, - ".view": 1, - "ul": 1, - "for": 1, - "user": 1, - "index": 1, - "of": 1, - "users": 1, - "li.user": 1, - "data": 1, - "-": 3, - "id": 1, - ".name": 1, - ".count": 1, - ".date": 1, - "countdownComponent": 1, - "input": 1, - "type": 1, - "text": 1, - "dualbind": 1, - "value": 1, - "button": 1, - "x": 2, - "signal": 1, - "h5": 1, - "animation": 1, - "slot": 1, - "@model": 1, - "@next": 1, - "footer": 1, - "bazCompo": 1 - }, - "Mathematica": { - "Get": 1, - "[": 307, - "]": 286, - "Notebook": 2, - "{": 227, - "Cell": 28, - "CellGroupData": 8, - "BoxData": 19, - "RowBox": 34, - "}": 222, - "CellChangeTimes": 13, - "-": 134, - "*": 19, - "SuperscriptBox": 1, - "MultilineFunction": 1, - "None": 8, - "Open": 7, - "NumberMarks": 3, - "False": 19, - "GraphicsBox": 2, - "Hue": 5, - "LineBox": 5, - "CompressedData": 9, - "AspectRatio": 1, - "NCache": 1, - "GoldenRatio": 1, - "(": 2, - ")": 1, - "Axes": 1, - "True": 7, - "AxesLabel": 1, - "AxesOrigin": 1, - "Method": 2, - "PlotRange": 1, - "PlotRangeClipping": 1, - "PlotRangePadding": 1, - "Scaled": 10, - "WindowSize": 1, - "WindowMargins": 1, - "Automatic": 9, - "FrontEndVersion": 1, - "StyleDefinitions": 1, - "NamespaceBox": 1, - "DynamicModuleBox": 1, - "Typeset": 7, - "q": 1, - "opts": 1, - "AppearanceElements": 1, - "Asynchronous": 1, - "All": 1, - "TimeConstraint": 1, - "elements": 1, - "pod1": 1, - "XMLElement": 13, - "FormBox": 4, - "TagBox": 9, - "GridBox": 2, - "PaneBox": 1, - "StyleBox": 4, - "CellContext": 5, - "TagBoxWrapper": 4, - "AstronomicalData": 1, - "Identity": 2, - "LineIndent": 4, - "LineSpacing": 2, - "GridBoxBackground": 1, - "GrayLevel": 17, - "GridBoxItemSize": 2, - "ColumnsEqual": 2, - "RowsEqual": 2, - "GridBoxDividers": 1, - "GridBoxSpacings": 2, - "GridBoxAlignment": 1, - "Left": 1, - "Baseline": 1, - "AllowScriptLevelChange": 2, - "BaselinePosition": 2, - "Center": 1, - "AbsoluteThickness": 3, - "TraditionalForm": 3, - "PolynomialForm": 1, - "#": 2, - "TraditionalOrder": 1, - "&": 2, - "pod2": 1, - "LinebreakAdjustments": 2, - "FontFamily": 1, - "UnitFontFamily": 1, - "FontSize": 1, - "Smaller": 1, - "StripOnInput": 1, - "SyntaxForm": 2, - "Dot": 2, - "ZeroWidthTimes": 1, - "pod3": 1, - "TemplateBox": 1, - "GraphicsComplexBox": 1, - "EdgeForm": 2, - "Directive": 5, - "Opacity": 2, - "GraphicsGroupBox": 2, - "PolygonBox": 3, - "RGBColor": 3, - "Dashing": 1, - "Small": 1, - "GridLines": 1, - "Dynamic": 1, - "Join": 1, - "Replace": 1, - "MousePosition": 1, - "Graphics": 1, - "Pattern": 2, - "CalculateUtilities": 5, - "GraphicsUtilities": 5, - "Private": 5, - "x": 2, - "Blank": 2, - "y": 2, - "Epilog": 1, - "CapForm": 1, - "Offset": 8, - "DynamicBox": 1, - "ToBoxes": 1, - "DynamicModule": 1, - "pt": 1, - "NearestFunction": 1, - "Paclet": 1, - "Name": 1, - "Version": 1, - "MathematicaVersion": 1, - "Description": 1, - "Creator": 1, - "Extensions": 1, - "Language": 1, - "MainPage": 1, - "BeginPackage": 1, - ";": 42, - "PossiblyTrueQ": 3, - "usage": 22, - "PossiblyFalseQ": 2, - "PossiblyNonzeroQ": 3, - "Begin": 2, - "expr_": 4, - "Not": 6, - "TrueQ": 4, - "expr": 4, - "End": 2, - "AnyQ": 3, - "AnyElementQ": 4, - "AllQ": 2, - "AllElementQ": 2, - "AnyNonzeroQ": 2, - "AnyPossiblyNonzeroQ": 2, - "RealQ": 3, - "PositiveQ": 3, - "NonnegativeQ": 3, - "PositiveIntegerQ": 3, - "NonnegativeIntegerQ": 4, - "IntegerListQ": 5, - "PositiveIntegerListQ": 3, - "NonnegativeIntegerListQ": 3, - "IntegerOrListQ": 2, - "PositiveIntegerOrListQ": 2, - "NonnegativeIntegerOrListQ": 2, - "SymbolQ": 2, - "SymbolOrNumberQ": 2, - "cond_": 4, - "L_": 5, - "Fold": 3, - "Or": 1, - "cond": 4, - "/@": 3, - "L": 4, - "Flatten": 1, - "And": 4, - "SHEBANG#!#!=": 1, - "n_": 5, - "Im": 1, - "n": 8, - "Positive": 2, - "IntegerQ": 3, - "&&": 4, - "input_": 6, - "ListQ": 1, - "input": 11, - "MemberQ": 3, - "IntegerQ/@input": 1, - "||": 4, - "a_": 2, - "Head": 2, - "a": 3, - "Symbol": 2, - "NumericQ": 1, - "EndPackage": 1, - "Do": 1, - "If": 1, - "Length": 1, - "Divisors": 1, - "Binomial": 2, - "i": 3, - "+": 2, - "Print": 1, - "Break": 1 - }, - "Matlab": { - "function": 34, - "[": 311, - "dx": 6, - "y": 25, - "]": 311, - "adapting_structural_model": 2, - "(": 1379, - "t": 32, - "x": 46, - "u": 3, - "varargin": 25, - ")": 1380, - "%": 554, - "size": 11, - "aux": 3, - "{": 157, - "end": 150, - "}": 157, - ";": 909, - "m": 44, - "zeros": 61, - "b": 12, - "for": 78, - "i": 338, - "if": 52, - "+": 169, - "elseif": 14, - "else": 23, - "display": 10, - "aux.pars": 3, - ".*": 2, - "Yp": 2, - "human": 1, - "aux.timeDelay": 2, - "c1": 5, - "aux.m": 3, - "*": 46, - "aux.b": 3, - "e": 14, - "-": 673, - "c2": 5, - "Yc": 5, - "parallel": 2, - "plant": 4, - "aux.plantFirst": 2, - "aux.plantSecond": 2, - "Ys": 1, - "feedback": 1, - "A": 11, - "B": 9, - "C": 13, - "D": 7, - "tf2ss": 1, - "Ys.num": 1, - "Ys.den": 1, - "average": 1, - "n": 102, - "|": 2, - "&": 4, - "error": 16, - "sum": 2, - "/length": 1, - "bicycle": 7, - "bicycle_state_space": 1, - "speed": 20, - "S": 5, - "dbstack": 1, - "CURRENT_DIRECTORY": 2, - "fileparts": 1, - ".file": 1, - "par": 7, - "par_text_to_struct": 4, - "filesep": 14, - "...": 162, - "whipple_pull_force_abcd": 2, - "states": 7, - "outputs": 10, - "inputs": 14, - "defaultSettings.states": 1, - "defaultSettings.inputs": 1, - "defaultSettings.outputs": 1, - "userSettings": 3, - "varargin_to_structure": 2, - "struct": 1, - "settings": 3, - "overwrite_settings": 2, - "defaultSettings": 3, - "minStates": 2, - "ismember": 15, - "settings.states": 3, - "<": 9, - "keepStates": 2, - "find": 24, - "removeStates": 1, - "row": 6, - "abs": 12, - "col": 5, - "s": 13, - "sprintf": 11, - "removeInputs": 2, - "settings.inputs": 1, - "keepOutputs": 2, - "settings.outputs": 1, - "It": 1, - "is": 7, - "not": 3, - "possible": 1, - "to": 9, - "keep": 1, - "output": 7, - "because": 1, - "it": 1, - "depends": 1, - "on": 13, - "input": 14, - "StateName": 1, - "OutputName": 1, - "InputName": 1, - "x_0": 45, - "linspace": 14, - "vx_0": 37, - "z": 3, - "j": 242, - "*vx_0": 1, - "figure": 17, - "pcolor": 2, - "shading": 3, - "flat": 3, - "name": 4, - "order": 11, - "convert_variable": 1, - "variable": 10, - "coordinates": 6, - "speeds": 21, - "get_variables": 2, - "columns": 4, - "create_ieee_paper_plots": 2, - "data": 27, - "rollData": 8, - "global": 6, - "goldenRatio": 12, - "sqrt": 14, - "/": 59, - "exist": 1, - "mkdir": 1, - "linestyles": 15, - "colors": 13, - "loop_shape_example": 3, - "data.Benchmark.Medium": 2, - "plot_io_roll": 3, - "open_loop_all_bikes": 1, - "handling_all_bikes": 1, - "path_plots": 1, - "var": 3, - "io": 7, - "typ": 3, - "length": 49, - "plot_io": 1, - "phase_portraits": 2, - "eigenvalues": 2, - "bikeData": 2, - "figWidth": 24, - "figHeight": 19, - "set": 43, - "gcf": 17, - "freq": 12, - "hold": 23, - "all": 15, - "closedLoops": 1, - "bikeData.closedLoops": 1, - "bops": 7, - "bodeoptions": 1, - "bops.FreqUnits": 1, - "strcmp": 24, - "gray": 7, - "deltaNum": 2, - "closedLoops.Delta.num": 1, - "deltaDen": 2, - "closedLoops.Delta.den": 1, - "bodeplot": 6, - "tf": 18, - "neuroNum": 2, - "neuroDen": 2, - "whichLines": 3, - "phiDotNum": 2, - "closedLoops.PhiDot.num": 1, - "phiDotDen": 2, - "closedLoops.PhiDot.den": 1, - "closedBode": 3, - "off": 10, - "opts": 4, - "getoptions": 2, - "opts.YLim": 3, - "opts.PhaseMatching": 2, - "opts.PhaseMatchingValue": 2, - "opts.Title.String": 2, - "setoptions": 2, - "lines": 17, - "findobj": 5, - "raise": 19, - "plotAxes": 22, - "curPos1": 4, - "get": 11, - "curPos2": 4, - "xLab": 8, - "legWords": 3, - "closeLeg": 2, - "legend": 7, - "axes": 9, - "db1": 4, - "text": 11, - "db2": 2, - "dArrow1": 2, - "annotation": 13, - "dArrow2": 2, - "dArrow": 2, - "filename": 21, - "pathToFile": 11, - "print": 6, - "fix_ps_linestyle": 6, - "openLoops": 1, - "bikeData.openLoops": 1, - "num": 24, - "openLoops.Phi.num": 1, - "den": 15, - "openLoops.Phi.den": 1, - "openLoops.Psi.num": 1, - "openLoops.Psi.den": 1, - "openLoops.Y.num": 1, - "openLoops.Y.den": 1, - "openBode": 3, - "line": 15, - "wc": 14, - "wShift": 5, - "num2str": 10, - "bikeData.handlingMetric.num": 1, - "bikeData.handlingMetric.den": 1, - "w": 6, - "mag": 4, - "phase": 2, - "bode": 5, - "metricLine": 1, - "plot": 26, - "k": 75, - "Linewidth": 7, - "Color": 13, - "Linestyle": 6, - "Handling": 2, - "Quality": 2, - "Metric": 2, - "Frequency": 2, - "rad/s": 4, - "Level": 6, - "benchmark": 1, - "Handling.eps": 1, - "plots": 4, - "deps2": 1, - "loose": 4, - "PaperOrientation": 3, - "portrait": 3, - "PaperUnits": 3, - "inches": 3, - "PaperPositionMode": 3, - "manual": 3, - "PaperPosition": 3, - "PaperSize": 3, - "rad/sec": 1, - "phi": 13, - "Open": 1, - "Loop": 1, - "Bode": 1, - "Diagrams": 1, - "at": 3, - "m/s": 6, - "Latex": 1, - "type": 4, - "LineStyle": 2, - "LineWidth": 2, - "Location": 2, - "Southwest": 1, - "Fontsize": 4, - "YColor": 2, - "XColor": 1, - "Position": 6, - "Xlabel": 1, - "Units": 1, - "normalized": 1, - "openBode.eps": 1, - "deps2c": 3, - "maxMag": 2, - "max": 9, - "magnitudes": 1, - "area": 1, - "fillColors": 1, - "gca": 8, - "speedNames": 12, - "metricLines": 2, - "bikes": 24, - "data.": 6, - ".": 13, - ".handlingMetric.num": 1, - ".handlingMetric.den": 1, - "chil": 2, - "legLines": 1, - "Hands": 1, - "free": 1, - "@": 1, - "handling.eps": 1, - "f": 13, - "YTick": 1, - "YTickLabel": 1, - "Path": 1, - "Southeast": 1, - "Distance": 1, - "Lateral": 1, - "Deviation": 1, - "paths.eps": 1, - "d": 12, - "like": 1, - "plot.": 1, - "names": 6, - "prettyNames": 3, - "units": 3, - "index": 6, - "fieldnames": 5, - "data.Browser": 1, - "maxValue": 4, - "oneSpeed": 3, - "history": 7, - "oneSpeed.": 3, - "round": 1, - "pad": 10, - "yShift": 16, - "xShift": 3, - "time": 21, - "oneSpeed.time": 2, - "oneSpeed.speed": 2, - "distance": 6, - "xAxis": 12, - "xData": 3, - "textX": 3, - "ylim": 2, - "ticks": 4, - "xlabel": 8, - "xLimits": 6, - "xlim": 8, - "loc": 3, - "l1": 2, - "l2": 2, - "first": 3, - "ylabel": 4, - "box": 4, - "&&": 13, - "x_r": 6, - "y_r": 6, - "w_r": 5, - "h_r": 5, - "rectangle": 2, - "w_r/2": 4, - "h_r/2": 4, - "x_a": 10, - "y_a": 10, - "w_a": 7, - "h_a": 5, - "ax": 15, - "axis": 5, - "rollData.speed": 1, - "rollData.time": 1, - "path": 3, - "rollData.path": 1, - "frontWheel": 3, - "rollData.outputs": 3, - "rollAngle": 4, - "steerAngle": 4, - "rollTorque": 4, - "rollData.inputs": 1, - "subplot": 3, - "h1": 5, - "h2": 5, - "plotyy": 3, - "inset": 3, - "gainChanges": 2, - "loopNames": 4, - "xy": 7, - "xySource": 7, - "xlabels": 2, - "ylabels": 2, - "legends": 3, - "floatSpec": 3, - "twentyPercent": 1, - "generate_data": 5, - "nominalData": 1, - "nominalData.": 2, - "bikeData.": 2, - "twentyPercent.": 2, - "equal": 2, - "leg1": 2, - "bikeData.modelPar.": 1, - "leg2": 2, - "twentyPercent.modelPar.": 1, - "eVals": 5, - "pathToParFile": 2, - "str": 2, - "eigenValues": 1, - "eig": 6, - "real": 3, - "zeroIndices": 3, - "ones": 6, - "maxEvals": 4, - "maxLine": 7, - "minLine": 4, - "min": 1, - "speedInd": 12, - "cross_validation": 1, - "hyper_parameter": 3, - "num_data": 2, - "K": 4, - "indices": 2, - "crossvalind": 1, - "errors": 4, - "test_idx": 4, - "train_idx": 3, - "x_train": 2, - "y_train": 2, - "train": 1, - "x_test": 3, - "y_test": 3, - "calc_cost": 1, - "calc_error": 2, - "mean": 2, - "value": 2, - "isterminal": 2, - "direction": 2, - "mu": 73, - "FIXME": 1, - "from": 2, - "the": 14, - "largest": 1, - "primary": 1, - "clear": 13, - "tic": 7, - "T": 22, - "x_min": 3, - "x_max": 3, - "y_min": 3, - "y_max": 3, - "how": 1, - "many": 1, - "points": 11, - "per": 5, - "one": 3, - "measure": 1, - "unit": 1, - "both": 1, - "in": 8, - "and": 7, - "ds": 1, - "x_res": 7, - "*n": 2, - "y_res": 7, - "grid_x": 3, - "grid_y": 3, - "advected_x": 12, - "advected_y": 12, - "parfor": 5, - "X": 6, - "ode45": 6, - "@dg": 1, - "store": 4, - "advected": 2, - "positions": 2, - "as": 4, - "they": 2, - "would": 2, - "appear": 2, - "coords": 2, - "Compute": 3, - "FTLE": 14, - "sigma": 6, - "compute": 2, - "Jacobian": 3, - "*ds": 4, - "eigenvalue": 2, - "of": 35, - "*phi": 2, - "log": 2, - "lambda_max": 2, - "/abs": 3, - "*T": 3, - "toc": 5, - "field": 2, - "contourf": 2, - "location": 1, - "EastOutside": 1, - "f_x_t": 2, - "inline": 1, - "grid_min": 3, - "grid_max": 3, - "grid_width": 1, - "grid_spacing": 5, - "grid_width/": 1, - "*grid_width/": 4, - "colorbar": 1, - "load_data": 4, - "t0": 6, - "t1": 6, - "t2": 6, - "t3": 1, - "dataPlantOne": 3, - "data.Ts": 6, - "dataAdapting": 3, - "dataPlantTwo": 3, - "guessPlantOne": 4, - "resultPlantOne": 1, - "find_structural_gains": 2, - "yh": 2, - "fit": 6, - "x0": 4, - "compare": 3, - "resultPlantOne.fit": 1, - "guessPlantTwo": 3, - "resultPlantTwo": 1, - "resultPlantTwo.fit": 1, - "kP1": 4, - "resultPlantOne.fit.par": 1, - "kP2": 3, - "resultPlantTwo.fit.par": 1, - "gainSlopeOffset": 6, - "eye": 9, - "this": 2, - "only": 7, - "uses": 1, - "tau": 1, - "through": 1, - "wfs": 1, - "true": 2, - "plantOneSlopeOffset": 3, - "plantTwoSlopeOffset": 3, - "mod": 3, - "idnlgrey": 1, - "pem": 1, - "guess.plantOne": 3, - "guess.plantTwo": 2, - "plantNum.plantOne": 2, - "plantNum.plantTwo": 2, - "sections": 13, - "secData.": 1, - "||": 3, - "guess.": 2, - "result.": 2, - ".fit.par": 1, - "currentGuess": 2, - "warning": 1, - "randomGuess": 1, - "The": 6, - "self": 2, - "validation": 2, - "VAF": 2, - "f.": 2, - "data/": 1, - "results.mat": 1, - "guess": 1, - "plantNum": 1, - "result": 5, - "plots/": 1, - ".png": 1, - "task": 1, - "closed": 1, - "loop": 1, - "system": 2, - "u.": 1, - "gain": 1, - "guesses": 1, - "k1": 4, - "k2": 3, - "k3": 3, - "k4": 4, - "identified": 1, - "gains": 12, - ".vaf": 1, - "Elements": 1, - "grid": 1, - "definition": 2, - "Dimensionless": 1, - "integrating": 1, - "Choice": 2, - "mass": 2, - "parameter": 2, - "Computation": 9, - "Lagrangian": 3, - "Points": 2, - "xl1": 13, - "yl1": 12, - "xl2": 9, - "yl2": 8, - "xl3": 8, - "yl3": 8, - "xl4": 10, - "yl4": 9, - "xl5": 8, - "yl5": 8, - "Lagr": 6, - "initial": 5, - "total": 6, - "energy": 8, - "E_L1": 4, - "Omega": 7, - "C_L1": 3, - "*E_L1": 1, - "Szebehely": 1, - "E": 8, - "Offset": 2, - "Initial": 3, - "conditions": 3, - "range": 2, - "x_0_min": 8, - "x_0_max": 8, - "vx_0_min": 8, - "vx_0_max": 8, - "y_0": 29, - "ndgrid": 2, - "vy_0": 22, - "*E": 2, - "*Omega": 5, - "vx_0.": 2, - "E_cin": 4, - "x_T": 25, - "y_T": 17, - "vx_T": 22, - "vy_T": 12, - "filtro": 15, - "E_T": 11, - "delta_E": 7, - "a": 17, - "matrix": 3, - "numbers": 2, - "integration": 9, - "steps": 2, - "each": 2, - "np": 8, - "number": 2, - "integrated": 5, - "fprintf": 18, - "Energy": 4, - "tolerance": 2, - "setting": 4, - "energy_tol": 6, - "Setting": 1, - "options": 14, - "integrator": 2, - "RelTol": 2, - "AbsTol": 2, - "From": 1, - "Short": 1, - "odeset": 4, - "Parallel": 2, - "equations": 2, - "motion": 2, - "h": 19, - "waitbar": 6, - "r1": 3, - "r2": 3, - "g": 5, - "i/n": 1, - "y_0.": 2, - "./": 1, - "mu./": 1, - "isreal": 8, - "Check": 6, - "velocity": 2, - "positive": 2, - "Kinetic": 2, - "Y": 19, - "@f_reg": 1, - "Saving": 4, - "solutions": 2, - "final": 2, - "difference": 2, - "with": 2, - "conservation": 2, - "position": 2, - "point": 14, - "interesting": 4, - "non": 2, - "sense": 2, - "bad": 4, - "close": 4, - "t_integrazione": 3, - "filtro_1": 12, - "dphi": 12, - "ftle": 10, - "ftle_norm": 1, - "ds_x": 1, - "ds_vx": 1, - "La": 1, - "direzione": 1, - "dello": 1, - "spostamento": 1, - "la": 2, - "decide": 1, - "il": 1, - "denominatore": 1, - "TODO": 1, - "spiegarsi": 1, - "teoricamente": 1, - "come": 1, - "mai": 1, - "matrice": 1, - "pu": 1, - "essere": 1, - "ridotta": 1, - "x2": 1, - "*ds_x": 2, - "*ds_vx": 2, - "Manual": 2, - "visualize": 2, - "*log": 2, - "dphi*dphi": 1, - "tempo": 4, - "integrare": 2, - ".2f": 5, - "calcolare": 2, - "var_": 2, - "_": 2, - "var_xvx_": 2, - "ode00": 2, - "_n": 2, - "save": 2, - "nome": 2, - "Transforming": 1, - "into": 1, - "Hamiltonian": 1, - "variables": 2, - "px_0": 2, - "py_0": 2, - "px_T": 4, - "py_T": 4, - "inf": 1, - "@cr3bp_jac": 1, - "@fH": 1, - "EnergyH": 1, - "t_integr": 1, - "Back": 1, - "Inf": 1, - "_e": 1, - "_H": 1, - "Range": 1, - "E_0": 4, - "C_L1/2": 1, - "Y_0": 4, - "nx": 32, - "nvx": 32, - "dvx": 3, - "ny": 29, - "dy": 5, - "/2": 3, - "ne": 29, - "de": 4, - "e_0": 7, - "Definition": 1, - "arrays": 1, - "In": 1, - "approach": 1, - "useful": 9, - "pints": 1, - "are": 1, - "stored": 1, - "filter": 14, - "l": 64, - "v_y": 3, - "*e_0": 3, - "vx": 2, - "vy": 2, - "Selection": 1, - "Data": 2, - "transfer": 1, - "GPU": 3, - "x_gpu": 3, - "gpuArray": 4, - "y_gpu": 3, - "vx_gpu": 3, - "vy_gpu": 3, - "Integration": 2, - "N": 9, - "x_f": 3, - "y_f": 3, - "vx_f": 3, - "vy_f": 3, - "arrayfun": 2, - "@RKF45_FILE_gpu": 1, - "back": 1, - "CPU": 1, - "memory": 1, - "cleaning": 1, - "gather": 4, - "Construction": 1, - "computation": 2, - "X_T": 4, - "Y_T": 4, - "VX_T": 4, - "VY_T": 3, - "filter_ftle": 11, - "Compute_FILE_gpu": 1, - "Plot": 1, - "results": 1, - "squeeze": 1, - "clc": 1, - "load_bikes": 2, - "e_T": 7, - "Integrate_FILE": 1, - "Integrate": 6, - "Look": 2, - "phisically": 2, - "meaningful": 6, - "meaningless": 2, - "i/nx": 2, - "*Potential": 5, - "ci": 9, - "te": 2, - "ye": 9, - "ie": 2, - "@f": 6, - "Potential": 1, - "delta_e": 3, - "Integrate_FTLE_Gawlick_ell": 1, - "ecc": 2, - "nu": 2, - "ecc*cos": 1, - "@f_ell": 1, - "Consider": 1, - "also": 1, - "negative": 1, - "goodness": 1, - "roots": 3, - "*mu": 6, - "c3": 3, - "lane_change": 1, - "start": 4, - "width": 3, - "slope": 3, - "pathLength": 3, - "single": 1, - "double": 1, - "Double": 1, - "lane": 4, - "change": 1, - "needs": 1, - "lane.": 1, - "laneLength": 4, - "startOfSlope": 3, - "endOfSlope": 1, - "<=>": 1, - "1": 1, - "downSlope": 3, - "gains.Benchmark.Slow": 1, - "place": 2, - "holder": 2, - "gains.Browserins.Slow": 1, - "gains.Browser.Slow": 1, - "gains.Pista.Slow": 1, - "gains.Fisher.Slow": 1, - "gains.Yellow.Slow": 1, - "gains.Yellowrev.Slow": 1, - "gains.Benchmark.Medium": 1, - "gains.Browserins.Medium": 1, - "gains.Browser.Medium": 1, - "gains.Pista.Medium": 1, - "gains.Fisher.Medium": 1, - "gains.Yellow.Medium": 1, - "gains.Yellowrev.Medium": 1, - "gains.Benchmark.Fast": 1, - "gains.Browserins.Fast": 1, - "gains.Browser.Fast": 1, - "gains.Pista.Fast": 1, - "gains.Fisher.Fast": 1, - "gains.Yellow.Fast": 1, - "gains.Yellowrev.Fast": 1, - "gains.": 1, - "parser": 1, - "inputParser": 1, - "parser.addRequired": 1, - "parser.addParamValue": 3, - "parser.parse": 1, - "args": 1, - "parser.Results": 1, - "raw": 1, - "load": 1, - "args.directory": 1, - "iddata": 1, - "raw.theta": 1, - "raw.theta_c": 1, - "args.sampleTime": 1, - "args.detrend": 1, - "detrend": 1, - "filtfcn": 2, - "statefcn": 2, - "makeFilter": 1, - "v": 12, - "@iirFilter": 1, - "@getState": 1, - "yn": 2, - "iirFilter": 1, - "xn": 4, - "vOut": 2, - "getState": 1, - "classdef": 1, - "matlab_class": 2, - "properties": 1, - "R": 1, - "G": 1, - "methods": 1, - "obj": 2, - "r": 2, - "obj.R": 2, - "obj.G": 2, - "obj.B": 2, - "disp": 8, - "enumeration": 1, - "red": 1, - "green": 1, - "blue": 1, - "cyan": 1, - "magenta": 1, - "yellow": 1, - "black": 1, - "white": 1, - "ret": 3, - "matlab_function": 5, - "Call": 2, - "which": 2, - "resides": 2, - "same": 2, - "directory": 2, - "value1": 4, - "semicolon": 2, - "mandatory": 2, - "suppresses": 2, - "command": 2, - "line.": 2, - "value2": 4, - "d_mean": 3, - "d_std": 3, - "normalize": 1, - "repmat": 2, - "std": 1, - "d./": 1, - "overrideSettings": 3, - "overrideNames": 2, - "defaultNames": 2, - "notGiven": 5, - "setxor": 1, - "settings.": 1, - "defaultSettings.": 1, - "fid": 7, - "fopen": 2, - "textscan": 1, - "fclose": 2, - "strtrim": 2, - "vals": 2, - "regexp": 1, - "par.": 1, - "str2num": 1, - "choose_plant": 4, - "p": 7, - "Conditions": 1, - "@cross_y": 1, - "ode113": 2, - "RK4": 3, - "fun": 5, - "tspan": 7, - "th": 1, - "Runge": 1, - "Kutta": 1, - "dim": 2, - "while": 1, - "h/2": 2, - "k1*h/2": 1, - "k2*h/2": 1, - "h*k3": 1, - "h/6*": 1, - "*k2": 1, - "*k3": 1, - "arg1": 1, - "arg": 2, - "RK4_par": 1, - "wnm": 11, - "zetanm": 5, - "ss": 3, - "data.modelPar.A": 1, - "data.modelPar.B": 1, - "data.modelPar.C": 1, - "data.modelPar.D": 1, - "bicycle.StateName": 2, - "bicycle.OutputName": 4, - "bicycle.InputName": 2, - "analytic": 3, - "system_state_space": 2, - "numeric": 2, - "data.system.A": 1, - "data.system.B": 1, - "data.system.C": 1, - "data.system.D": 1, - "numeric.StateName": 1, - "data.bicycle.states": 1, - "numeric.InputName": 1, - "data.bicycle.inputs": 1, - "numeric.OutputName": 1, - "data.bicycle.outputs": 1, - "pzplot": 1, - "ss2tf": 2, - "analytic.A": 3, - "analytic.B": 1, - "analytic.C": 1, - "analytic.D": 1, - "mine": 1, - "data.forceTF.PhiDot.num": 1, - "data.forceTF.PhiDot.den": 1, - "numeric.A": 2, - "numeric.B": 1, - "numeric.C": 1, - "numeric.D": 1, - "whipple_pull_force_ABCD": 1, - "bottomRow": 1, - "prod": 3, - "Earth": 2, - "Moon": 2, - "C_star": 1, - "C/2": 1, - "orbit": 1, - "Y0": 6, - "y0": 2, - "vx0": 2, - "vy0": 2, - "l0": 1, - "delta_E0": 1, - "Hill": 1, - "Edgecolor": 1, - "none": 1, - "ok": 2, - "sg": 1, - "sr": 1, - "arguments": 7, - "ischar": 1, - "options.": 1, - "write_gains": 1, - "contents": 1, - "importdata": 1, - "speedsInFile": 5, - "contents.data": 2, - "gainsInFile": 3, - "sameSpeedIndices": 5, - "allGains": 4, - "allSpeeds": 4, - "sort": 1, - "contents.colheaders": 1 - }, - "Max": { - "{": 126, - "}": 126, - "[": 163, - "]": 163, - "max": 1, - "v2": 1, - ";": 39, - "#N": 2, - "vpatcher": 1, - "#P": 33, - "toggle": 1, - "button": 4, - "window": 2, - "setfont": 1, - "Verdana": 1, - "linecount": 1, - "newex": 8, - "r": 1, - "jojo": 2, - "#B": 2, - "color": 2, - "s": 1, - "route": 1, - "append": 1, - "toto": 1, - "%": 1, - "counter": 2, - "#X": 1, - "flags": 1, - "newobj": 1, - "metro": 1, - "t": 2, - "message": 2, - "Goodbye": 1, - "World": 2, - "Hello": 1, - "connect": 13, - "fasten": 1, - "pop": 1 - }, - "MediaWiki": { - "Overview": 1, - "The": 17, - "GDB": 15, - "Tracepoint": 4, - "Analysis": 1, - "feature": 3, - "is": 9, - "an": 3, - "extension": 1, - "to": 12, - "the": 72, - "Tracing": 3, - "and": 20, - "Monitoring": 1, - "Framework": 1, - "that": 4, - "allows": 2, - "visualization": 1, - "analysis": 1, - "of": 8, - "C/C": 10, - "+": 20, - "tracepoint": 5, - "data": 5, - "collected": 2, - "by": 10, - "stored": 1, - "a": 12, - "log": 1, - "file.": 1, - "Getting": 1, - "Started": 1, - "can": 9, - "be": 18, - "installed": 2, - "from": 8, - "Eclipse": 1, - "update": 2, - "site": 1, - "selecting": 1, - ".": 8, - "requires": 1, - "version": 1, - "or": 8, - "later": 1, - "on": 3, - "local": 1, - "host.": 1, - "executable": 3, - "program": 1, - "must": 3, - "found": 1, - "in": 15, - "path.": 1, - "Trace": 9, - "Perspective": 1, - "To": 1, - "open": 1, - "perspective": 2, - "select": 5, - "includes": 1, - "following": 1, - "views": 2, - "default": 2, - "*": 6, - "This": 7, - "view": 7, - "shows": 7, - "projects": 1, - "workspace": 2, - "used": 1, - "create": 1, - "manage": 1, - "projects.": 1, - "running": 1, - "Postmortem": 5, - "Debugger": 4, - "instances": 1, - "displays": 2, - "thread": 1, - "stack": 2, - "trace": 17, - "associated": 1, - "with": 4, - "tracepoint.": 3, - "status": 1, - "debugger": 1, - "navigation": 1, - "records.": 1, - "console": 1, - "output": 1, - "Debugger.": 1, - "editor": 7, - "area": 2, - "contains": 1, - "editors": 1, - "when": 1, - "opened.": 1, - "[": 11, - "Image": 2, - "images/GDBTracePerspective.png": 1, - "]": 11, - "Collecting": 2, - "Data": 4, - "outside": 2, - "scope": 1, - "this": 5, - "feature.": 1, - "It": 1, - "done": 2, - "command": 1, - "line": 2, - "using": 3, - "CDT": 3, - "debug": 1, - "component": 1, - "within": 1, - "Eclipse.": 1, - "See": 1, - "FAQ": 2, - "entry": 2, - "#References": 2, - "|": 2, - "References": 3, - "section.": 2, - "Importing": 2, - "Some": 1, - "information": 1, - "section": 1, - "redundant": 1, - "LTTng": 3, - "User": 3, - "Guide.": 1, - "For": 1, - "further": 1, - "details": 1, - "see": 1, - "Guide": 2, - "Creating": 1, - "Project": 1, - "In": 5, - "right": 3, - "-": 8, - "click": 8, - "context": 4, - "menu.": 4, - "dialog": 1, - "name": 2, - "your": 2, - "project": 2, - "tracing": 1, - "folder": 5, - "Browse": 2, - "enter": 2, - "source": 2, - "directory.": 1, - "Select": 1, - "file": 6, - "tree.": 1, - "Optionally": 1, - "set": 1, - "type": 2, - "Click": 1, - "Alternatively": 1, - "drag": 1, - "&": 1, - "dropped": 1, - "any": 2, - "external": 1, - "manager.": 1, - "Selecting": 2, - "Type": 1, - "Right": 2, - "imported": 1, - "choose": 2, - "step": 1, - "omitted": 1, - "if": 1, - "was": 2, - "selected": 3, - "at": 3, - "import.": 1, - "will": 6, - "updated": 2, - "icon": 1, - "images/gdb_icon16.png": 1, - "Executable": 1, - "created": 1, - "identified": 1, - "so": 2, - "launched": 1, - "properly.": 1, - "path": 1, - "press": 1, - "recognized": 1, - "as": 1, - "executable.": 1, - "Visualizing": 1, - "Opening": 1, - "double": 1, - "it": 3, - "opened": 2, - "Events": 5, - "instance": 1, - "launched.": 1, - "If": 2, - "available": 1, - "code": 1, - "corresponding": 1, - "first": 1, - "record": 2, - "also": 2, - "editor.": 2, - "At": 1, - "point": 1, - "recommended": 1, - "relocate": 1, - "not": 1, - "hidden": 1, - "Viewing": 1, - "table": 1, - "shown": 1, - "one": 1, - "row": 1, - "for": 2, - "each": 1, - "record.": 2, - "column": 6, - "sequential": 1, - "number.": 1, - "number": 2, - "assigned": 1, - "collection": 1, - "time": 2, - "method": 1, - "where": 1, - "set.": 1, - "run": 1, - "Searching": 1, - "filtering": 1, - "entering": 1, - "regular": 1, - "expression": 1, - "header.": 1, - "Navigating": 1, - "records": 1, - "keyboard": 1, - "mouse.": 1, - "show": 1, - "current": 1, - "navigated": 1, - "clicking": 1, - "buttons.": 1, - "updated.": 1, - "http": 4, - "//wiki.eclipse.org/index.php/Linux_Tools_Project/LTTng2/User_Guide": 1, - "//wiki.eclipse.org/CDT/User/FAQ#How_can_I_trace_my_application_using_C.2FC.2B.2B_Tracepoints.3F": 1, - "How": 1, - "I": 1, - "my": 1, - "application": 1, - "Tracepoints": 1, - "Updating": 1, - "Document": 1, - "document": 2, - "maintained": 1, - "collaborative": 1, - "wiki.": 1, - "you": 1, - "wish": 1, - "modify": 1, - "please": 1, - "visit": 1, - "//wiki.eclipse.org/index.php/Linux_Tools_Project/GDB_Tracepoint_Analysis/User_Guide": 1, - "//wiki.eclipse.org/Linux_Tools_Project/GDB_Tracepoint_Analysis/User_Guide": 1 - }, - "Mercury": { - "%": 416, - "-": 6967, - "module": 46, - "ll_backend.code_info.": 1, - "interface.": 13, - "import_module": 126, - "check_hlds.type_util.": 2, - "hlds.code_model.": 1, - "hlds.hlds_data.": 2, - "hlds.hlds_goal.": 2, - "hlds.hlds_llds.": 1, - "hlds.hlds_module.": 2, - "hlds.hlds_pred.": 2, - "hlds.instmap.": 2, - "libs.globals.": 2, - "ll_backend.continuation_info.": 1, - "ll_backend.global_data.": 1, - "ll_backend.layout.": 1, - "ll_backend.llds.": 1, - "ll_backend.trace_gen.": 1, - "mdbcomp.prim_data.": 3, - "mdbcomp.goal_path.": 2, - "parse_tree.prog_data.": 2, - "parse_tree.set_of_var.": 2, - "assoc_list.": 3, - "bool.": 4, - "counter.": 1, - "io.": 8, - "list.": 4, - "map.": 3, - "maybe.": 3, - "set.": 4, - "set_tree234.": 1, - "term.": 3, - "implementation.": 12, - "backend_libs.builtin_ops.": 1, - "backend_libs.proc_label.": 1, - "hlds.arg_info.": 1, - "hlds.hlds_desc.": 1, - "hlds.hlds_rtti.": 2, - "libs.options.": 3, - "libs.trace_params.": 1, - "ll_backend.code_util.": 1, - "ll_backend.opt_debug.": 1, - "ll_backend.var_locn.": 1, - "parse_tree.builtin_lib_types.": 2, - "parse_tree.prog_type.": 2, - "parse_tree.mercury_to_mercury.": 1, - "cord.": 1, - "int.": 4, - "pair.": 3, - "require.": 6, - "stack.": 1, - "string.": 7, - "varset.": 2, - "type": 57, - "code_info.": 1, - "pred": 255, - "code_info_init": 2, - "(": 3351, - "bool": 406, - "in": 510, - "globals": 5, - "pred_id": 15, - "proc_id": 12, - "pred_info": 20, - "proc_info": 11, - "abs_follow_vars": 3, - "module_info": 26, - "static_cell_info": 4, - "const_struct_map": 3, - "resume_point_info": 11, - "out": 337, - "trace_slot_info": 3, - "maybe": 20, - "containing_goal_map": 4, - ")": 3351, - "list": 82, - "string": 115, - "int": 129, - "code_info": 208, - "is": 246, - "det.": 184, - "get_globals": 5, - "get_exprn_opts": 2, - "exprn_opts": 3, - "get_module_info": 7, - "get_pred_id": 6, - "get_proc_id": 5, - "get_pred_info": 2, - "get_proc_info": 4, - "get_varset": 3, - "prog_varset": 14, - "func": 24, - "get_var_types": 3, - "vartypes.": 1, - "get_maybe_trace_info": 2, - "trace_info": 3, - "get_emit_trail_ops": 2, - "add_trail_ops": 5, - "get_emit_region_ops": 2, - "add_region_ops": 6, - "get_forward_live_vars": 2, - "set_of_progvar": 10, - "set_forward_live_vars": 2, - "get_instmap": 4, - "instmap": 3, - "set_instmap": 3, - "get_par_conj_depth": 2, - "set_par_conj_depth": 2, - "get_label_counter": 3, - "counter": 6, - "get_succip_used": 2, - "get_layout_info": 4, - "proc_label_layout_info": 3, - "get_proc_trace_events": 2, - "set_proc_trace_events": 2, - "get_closure_layouts": 3, - "closure_proc_id_data": 4, - "get_max_reg_in_use_at_trace": 2, - "set_max_reg_in_use_at_trace": 2, - "get_created_temp_frame": 2, - "get_static_cell_info": 5, - "set_static_cell_info": 5, - "get_alloc_sites": 3, - "set_tree234": 3, - "alloc_site_info": 4, - "set_alloc_sites": 3, - "get_used_env_vars": 2, - "set": 16, - "set_used_env_vars": 2, - "get_opt_trail_ops": 2, - "get_opt_region_ops": 2, - "get_auto_comments": 2, - "get_lcmc_null": 2, - "get_containing_goal_map": 3, - "get_containing_goal_map_det": 2, - "get_const_struct_map": 2, - "add_out_of_line_code": 2, - "llds_code": 21, - "get_out_of_line_code": 2, - "get_var_slot_count": 2, - "set_maybe_trace_info": 3, - "get_opt_no_return_calls": 2, - "get_zombies": 2, - "set_zombies": 2, - "get_var_locn_info": 7, - "var_locn_info": 3, - "set_var_locn_info": 4, - "get_temps_in_use": 6, - "lval": 114, - "set_temps_in_use": 4, - "get_fail_info": 13, - "fail_info": 24, - "set_fail_info": 9, - "set_label_counter": 3, - "set_succip_used": 3, - "set_layout_info": 4, - "get_max_temp_slot_count": 2, - "set_max_temp_slot_count": 2, - "get_temp_content_map": 3, - "map": 7, - "slot_contents": 4, - "set_temp_content_map": 2, - "get_persistent_temps": 3, - "set_persistent_temps": 2, - "set_closure_layouts": 3, - "get_closure_seq_counter": 3, - "set_closure_seq_counter": 3, - "set_created_temp_frame": 2, - "code_info_static": 26, - "code_info_loc_dep": 22, - "code_info_persistent": 44, - ".": 610, - "cis_globals": 2, - "cis_exprn_opts": 2, - "cis_module_info": 2, - "cis_pred_id": 2, - "cis_proc_id": 2, - "cis_pred_info": 2, - "cis_proc_info": 2, - "cis_proc_label": 1, - "proc_label": 2, - "cis_varset": 2, - "cis_var_slot_count": 2, - "cis_maybe_trace_info": 3, - "cis_opt_no_resume_calls": 2, - "cis_emit_trail_ops": 2, - "cis_opt_trail_ops": 2, - "cis_emit_region_ops": 2, - "cis_opt_region_ops": 2, - "cis_auto_comments": 2, - "cis_lcmc_null": 2, - "cis_containing_goal_map": 2, - "cis_const_struct_map": 2, - "cild_forward_live_vars": 3, - "cild_instmap": 3, - "cild_zombies": 3, - "cild_var_locn_info": 3, - "cild_temps_in_use": 3, - "cild_fail_info": 3, - "cild_par_conj_depth": 3, - "cip_label_num_src": 3, - "cip_store_succip": 3, - "cip_label_info": 3, - "cip_proc_trace_events": 3, - "cip_stackslot_max": 3, - "cip_temp_contents": 3, - "cip_persistent_temps": 3, - "cip_closure_layout_seq": 3, - "cip_closure_layouts": 3, - "cip_max_reg_r_used": 3, - "cip_max_reg_f_used": 2, - "cip_created_temp_frame": 3, - "cip_static_cell_info": 3, - "cip_alloc_sites": 3, - "cip_used_env_vars": 3, - "cip_ts_string_table_size": 3, - "cip_ts_rev_string_table": 4, - "cip_out_of_line_code": 4, - "SaveSuccip": 2, - "Globals": 32, - "PredId": 50, - "ProcId": 31, - "PredInfo": 64, - "ProcInfo": 43, - "FollowVars": 6, - "ModuleInfo": 49, - "StaticCellInfo": 8, - "ConstStructMap": 2, - "ResumePoint": 13, - "TraceSlotInfo": 5, - "MaybeContainingGoalMap": 5, - "TSRevStringTable": 2, - "TSStringTableSize": 2, - "CodeInfo": 2, - "ProcLabel": 8, - "make_proc_label": 1, - "proc_info_get_initial_instmap": 1, - "InstMap": 6, - "proc_info_get_liveness_info": 1, - "Liveness": 4, - "CodeModel": 8, - "proc_info_interface_code_model": 2, - "build_input_arg_list": 1, - "ArgList": 2, - "proc_info_get_varset": 1, - "VarSet": 15, - "proc_info_get_vartypes": 2, - "VarTypes": 22, - "proc_info_get_stack_slots": 1, - "StackSlots": 5, - "ExprnOpts": 4, - "init_exprn_opts": 3, - "globals.lookup_bool_option": 18, - "use_float_registers": 5, - "UseFloatRegs": 6, - "yes": 144, - "FloatRegType": 3, - "reg_f": 1, - ";": 913, - "no": 365, - "reg_r": 2, - "globals.get_trace_level": 1, - "TraceLevel": 5, - "eff_trace_level_is_none": 2, - "trace_fail_vars": 1, - "FailVars": 3, - "MaybeFailVars": 3, - "set_of_var.union": 3, - "EffLiveness": 3, - "init_var_locn_state": 1, - "VarLocnInfo": 12, - "stack.init": 1, - "ResumePoints": 14, - "allow_hijacks": 3, - "AllowHijack": 3, - "Hijack": 6, - "allowed": 6, - "not_allowed": 5, - "DummyFailInfo": 2, - "resume_point_unknown": 9, - "may_be_different": 7, - "not_inside_non_condition": 2, - "map.init": 7, - "TempContentMap": 4, - "set.init": 7, - "PersistentTemps": 4, - "TempsInUse": 8, - "Zombies": 2, - "set_of_var.init": 1, - "LayoutMap": 2, - "max_var_slot": 1, - "VarSlotMax": 2, - "trace_reserved_slots": 1, - "FixedSlots": 2, - "_": 149, - "int.max": 1, - "SlotMax": 2, - "opt_no_return_calls": 3, - "OptNoReturnCalls": 2, - "use_trail": 3, - "UseTrail": 2, - "disable_trail_ops": 3, - "DisableTrailOps": 2, - "EmitTrailOps": 3, - "do_not_add_trail_ops": 1, - "optimize_trail_usage": 3, - "OptTrailOps": 2, - "optimize_region_ops": 3, - "OptRegionOps": 2, - "region_analysis": 3, - "UseRegions": 3, - "EmitRegionOps": 3, - "do_not_add_region_ops": 1, - "auto_comments": 4, - "AutoComments": 2, - "optimize_constructor_last_call_null": 3, - "LCMCNull": 2, - "CodeInfo0": 2, - "init_fail_info": 2, - "will": 1, - "override": 1, - "this": 4, - "dummy": 2, - "value": 16, - "nested": 1, - "parallel": 3, - "conjunction": 1, - "depth": 1, - "counter.init": 2, - "[": 203, - "]": 203, - "set_tree234.init": 1, - "cord.empty": 1, - "init_maybe_trace_info": 3, - "CodeInfo1": 2, - "exprn_opts.": 1, - "gcc_non_local_gotos": 3, - "OptNLG": 3, - "NLG": 3, - "have_non_local_gotos": 1, - "do_not_have_non_local_gotos": 1, - "asm_labels": 3, - "OptASM": 3, - "ASM": 3, - "have_asm_labels": 1, - "do_not_have_asm_labels": 1, - "static_ground_cells": 3, - "OptSGCell": 3, - "SGCell": 3, - "have_static_ground_cells": 1, - "do_not_have_static_ground_cells": 1, - "unboxed_float": 3, - "OptUBF": 3, - "UBF": 3, - "have_unboxed_floats": 1, - "do_not_have_unboxed_floats": 1, - "OptFloatRegs": 3, - "do_not_use_float_registers": 1, - "static_ground_floats": 3, - "OptSGFloat": 3, - "SGFloat": 3, - "have_static_ground_floats": 1, - "do_not_have_static_ground_floats": 1, - "static_code_addresses": 3, - "OptStaticCodeAddr": 3, - "StaticCodeAddrs": 3, - "have_static_code_addresses": 1, - "do_not_have_static_code_addresses": 1, - "trace_level": 4, - "CI": 294, - "proc_info_get_has_tail_call_events": 1, - "HasTailCallEvents": 3, - "tail_call_events": 1, - "get_next_label": 5, - "TailRecLabel": 2, - "MaybeTailRecLabel": 3, - "no_tail_call_events": 1, - "trace_setup": 1, - "TraceInfo": 2, - "MaxRegR": 4, - "MaxRegF": 4, - "cip_max_reg_f_used.": 1, - "TI": 4, - "LV": 2, - "IM": 2, - "Zs": 2, - "EI": 2, - "FI": 2, - "N": 6, - "LC": 2, - "SU": 2, - "LI": 2, - "PTE": 2, - "TM": 2, - "CM": 2, - "PT": 2, - "CLS": 2, - "CG": 2, - "MR": 4, - "MF": 1, - "MF.": 1, - "SCI": 2, - "ASI": 2, - "UEV": 2, - "ContainingGoalMap": 2, - "unexpected": 21, - "NewCode": 2, - "Code0": 2, - ".CI": 29, - "Code": 36, - "+": 127, - "Code.": 1, - "get_stack_slots": 2, - "stack_slots": 1, - "get_follow_var_map": 2, - "abs_follow_vars_map": 1, - "get_next_non_reserved": 2, - "reg_type": 1, - "set_follow_vars": 4, - "pre_goal_update": 3, - "hlds_goal_info": 22, - "has_subgoals": 2, - "post_goal_update": 3, - "body_typeinfo_liveness": 4, - "variable_type": 3, - "prog_var": 58, - "mer_type.": 1, - "variable_is_of_dummy_type": 2, - "is_dummy_type.": 1, - "search_type_defn": 4, - "mer_type": 21, - "hlds_type_defn": 1, - "semidet.": 10, - "lookup_type_defn": 2, - "hlds_type_defn.": 1, - "lookup_cheaper_tag_test": 2, - "maybe_cheaper_tag_test.": 1, - "filter_region_vars": 2, - "set_of_progvar.": 2, - "get_proc_model": 2, - "code_model.": 1, - "get_headvars": 2, - "get_arginfo": 2, - "arg_info": 2, - "get_pred_proc_arginfo": 3, - "current_resume_point_vars": 2, - "variable_name": 2, - "make_proc_entry_label": 2, - "code_addr.": 1, - "label": 5, - "succip_is_used": 2, - "add_trace_layout_for_label": 2, - "term.context": 3, - "trace_port": 1, - "forward_goal_path": 1, - "user_event_info": 1, - "layout_label_info": 2, - "get_cur_proc_label": 4, - "get_next_closure_seq_no": 2, - "add_closure_layout": 2, - "add_threadscope_string": 2, - "get_threadscope_rev_string_table": 2, - "add_scalar_static_cell": 2, - "typed_rval": 1, - "data_id": 3, - "add_scalar_static_cell_natural_types": 2, - "rval": 3, - "add_vector_static_cell": 2, - "llds_type": 1, - "add_alloc_site_info": 2, - "prog_context": 1, - "alloc_site_id": 2, - "add_resume_layout_for_label": 2, - "var_locn_get_stack_slots": 1, - "FollowVarMap": 2, - "var_locn_get_follow_var_map": 1, - "RegType": 2, - "NextNonReserved": 2, - "var_locn_get_next_non_reserved": 1, - "VarLocnInfo0": 4, - "var_locn_set_follow_vars": 1, - "GoalInfo": 44, - "HasSubGoals": 3, - "goal_info_get_resume_point": 1, - "no_resume_point": 1, - "resume_point": 1, - "goal_info_get_follow_vars": 1, - "MaybeFollowVars": 3, - "goal_info_get_pre_deaths": 1, - "PreDeaths": 3, - "rem_forward_live_vars": 3, - "maybe_make_vars_forward_dead": 2, - "goal_info_get_pre_births": 1, - "PreBirths": 2, - "add_forward_live_vars": 2, - "does_not_have_subgoals": 2, - "goal_info_get_post_deaths": 2, - "PostDeaths": 5, - "goal_info_get_post_births": 1, - "PostBirths": 3, - "make_vars_forward_live": 1, - "InstMapDelta": 2, - "goal_info_get_instmap_delta": 1, - "InstMap0": 2, - "instmap.apply_instmap_delta": 1, - "TypeInfoLiveness": 2, - "module_info_pred_info": 6, - "body_should_use_typeinfo_liveness": 1, - "Var": 13, - "Type": 18, - "lookup_var_type": 3, - "IsDummy": 2, - "VarType": 2, - "check_dummy_type": 1, - "TypeDefn": 6, - "type_to_ctor_det": 1, - "TypeCtor": 2, - "module_info_get_type_table": 1, - "TypeTable": 2, - "search_type_ctor_defn": 1, - "TypeDefnPrime": 2, - "CheaperTagTest": 3, - "get_type_defn_body": 1, - "TypeBody": 2, - "hlds_du_type": 1, - "CheaperTagTestPrime": 2, - "no_cheaper_tag_test": 1, - "ForwardLiveVarsBeforeGoal": 6, - "RegionVars": 2, - "code_info.get_var_types": 1, - "set_of_var.filter": 1, - "is_region_var": 1, - "HeadVars": 20, - "module_info_pred_proc_info": 4, - "proc_info_get_headvars": 2, - "ArgInfo": 4, - "proc_info_arg_info": 1, - "ResumeVars": 4, - "FailInfo": 19, - "ResumePointStack": 2, - "stack.det_top": 5, - "ResumePointInfo": 2, - "pick_first_resume_point": 1, - "ResumeMap": 8, - "map.keys": 3, - "ResumeMapVarList": 2, - "set_of_var.list_to_set": 3, - "Name": 4, - "Varset": 2, - "varset.lookup_name": 2, - "Immed0": 3, - "CodeAddr": 2, - "Immed": 3, - "globals.lookup_int_option": 1, - "procs_per_c_function": 3, - "ProcsPerFunc": 2, - "CurPredId": 2, - "CurProcId": 2, - "proc": 2, - "make_entry_label": 1, - "Label": 8, - "C0": 4, - "counter.allocate": 2, - "C": 34, - "internal_label": 3, - "Context": 20, - "Port": 2, - "IsHidden": 2, - "GoalPath": 2, - "MaybeSolverEventInfo": 2, - "Layout": 2, - "Internals0": 8, - "Exec": 5, - "trace_port_layout_info": 1, - "LabelNum": 8, - "entry_label": 2, - "map.search": 2, - "Internal0": 4, - "internal_layout_info": 6, - "Exec0": 3, - "Resume": 5, - "Return": 6, - "Internal": 8, - "map.det_update": 4, - "Internals": 6, - "map.det_insert": 3, - "LayoutInfo": 2, - "Resume0": 3, - "get_active_temps_data": 2, - "assoc_list": 1, - "Temps": 2, - "map.select": 1, - "TempsInUseContentMap": 2, - "map.to_assoc_list": 3, - "cis_proc_label.": 1, - "SeqNo": 2, - "ClosureLayout": 2, - "ClosureLayouts": 2, - "|": 38, - "String": 2, - "SlotNum": 2, - "Size0": 3, - "RevTable0": 2, - "Size": 4, - "RevTable": 3, - "RevTable.": 1, - "TableSize": 2, - "cip_ts_string_table_size.": 1, - "RvalsTypes": 2, - "DataAddr": 6, - "StaticCellInfo0": 6, - "global_data.add_scalar_static_cell": 1, - "Rvals": 2, - "global_data.add_scalar_static_cell_natural_types": 1, - "Types": 6, - "Vector": 2, - "global_data.add_vector_static_cell": 1, - "AllocId": 2, - "AllocSite": 3, - "AllocSites0": 2, - "set_tree234.insert": 1, - "AllocSites": 2, - "position_info.": 1, - "branch_end_info.": 1, - "branch_end": 4, - "branch_end_info": 7, - "remember_position": 3, - "position_info": 14, - "reset_to_position": 4, - "reset_resume_known": 2, - "generate_branch_end": 2, - "abs_store_map": 3, - "after_all_branches": 2, - "save_hp_in_branch": 2, - "pos_get_fail_info": 3, - "fail_info.": 2, - "LocDep": 6, - "cild_fail_info.": 1, - "CurCI": 2, - "NextCI": 2, - "Static": 2, - "Persistent": 2, - "NextCI0": 4, - "TempsInUse0": 4, - "set.union": 2, - "BranchStart": 2, - "BranchStartFailInfo": 2, - "BSResumeKnown": 2, - "CurFailInfo": 2, - "CurFailStack": 2, - "CurCurfMaxfr": 2, - "CurCondEnv": 2, - "CurHijack": 2, - "NewFailInfo": 2, - "StoreMap": 8, - "MaybeEnd0": 3, - "MaybeEnd": 6, - "AbsVarLocs": 3, - "assoc_list.values": 1, - "AbsLocs": 2, - "code_util.max_mentioned_abs_regs": 1, - "instmap_is_reachable": 1, - "VarLocs": 2, - "assoc_list.map_values_only": 2, - "abs_locn_to_lval": 2, - "place_vars": 1, - "remake_with_store_map": 4, - "empty": 9, - "EndCodeInfo1": 5, - "EndCodeInfo0": 3, - "FailInfo0": 13, - "FailInfo1": 2, - "ResumeKnown0": 5, - "CurfrMaxfr0": 2, - "CondEnv0": 3, - "Hijack0": 2, - "R": 2, - "ResumeKnown1": 2, - "CurfrMaxfr1": 2, - "CondEnv1": 2, - "Hijack1": 2, - "resume_point_known": 15, - "Redoip0": 3, - "Redoip1": 2, - "ResumeKnown": 21, - "expect": 15, - "unify": 21, - "must_be_equal": 11, - "CurfrMaxfr": 24, - "EndCodeInfoA": 2, - "TempsInUse1": 2, - "EndCodeInfo": 2, - "BranchEnd": 2, - "BranchEndCodeInfo": 2, - "BranchEndLocDep": 2, - "VarLocns": 2, - "VarLvals": 2, - "reinit_var_locn_state": 1, - "Slot": 2, - "Pos0": 2, - "Pos": 2, - "CI0": 2, - "CIStatic0": 2, - "CILocDep0": 2, - "CIPersistent0": 2, - "LocDep0": 2, - "CI1": 2, - "save_hp": 1, - "CI2": 2, - "CIStatic": 2, - "CIPersistent": 2, - "resume_map.": 1, - "resume_point_info.": 1, - "disj_hijack_info.": 1, - "prepare_for_disj_hijack": 2, - "code_model": 3, - "disj_hijack_info": 3, - "undo_disj_hijack": 2, - "ite_hijack_info.": 1, - "prepare_for_ite_hijack": 2, - "embedded_stack_frame_id": 3, - "ite_hijack_info": 3, - "ite_enter_then": 2, - "simple_neg_info.": 1, - "enter_simple_neg": 2, - "simple_neg_info": 3, - "leave_simple_neg": 2, - "det_commit_info.": 1, - "prepare_for_det_commit": 2, - "det_commit_info": 6, - "generate_det_commit": 2, - "semi_commit_info.": 1, - "prepare_for_semi_commit": 2, - "semi_commit_info": 6, - "generate_semi_commit": 2, - "effect_resume_point": 2, - "pop_resume_point": 1, - "top_resume_point": 1, - "set_resume_point_to_unknown": 1, - "set_resume_point_and_frame_to_unknown": 1, - "generate_failure": 2, - "fail_if_rval_is_false": 1, - "failure_is_direct_branch": 1, - "code_addr": 8, - "may_use_nondet_tailcall": 1, - "nondet_tail_call": 1, - "produce_vars": 1, - "resume_map": 9, - "flush_resume_vars_to_stack": 1, - "make_resume_point": 1, - "resume_locs": 1, - "generate_resume_point": 2, - "resume_point_vars": 1, - "resume_point_stack_addr": 2, - "stack": 1, - "curfr_vs_maxfr": 2, - "condition_env": 3, - "hijack_allowed": 2, - "orig_only": 2, - "stack_only": 2, - "orig_and_stack": 1, - "stack_and_orig": 1, - "redoip_update": 2, - "has_been_done": 5, - "wont_be_done.": 1, - "resume_point_unknown.": 1, - "may_be_different.": 1, - "inside_non_condition": 6, - "not_inside_non_condition.": 1, - "not_allowed.": 1, - "disj_no_hijack": 4, - "disj_temp_frame": 4, - "disj_quarter_hijack": 4, - "disj_half_hijack": 3, - "disj_full_hijack": 3, - "HijackInfo": 29, - "CondEnv": 12, - "Allow": 12, - "model_det": 2, - "model_semi": 3, - "singleton": 28, - "llds_instr": 64, - "comment": 5, - "model_non": 2, - "create_temp_frame": 4, - "do_fail": 6, - "stack.pop": 1, - "TopResumePoint": 6, - "RestResumePoints": 2, - "stack.is_empty": 1, - "wont_be_done": 2, - "acquire_temp_slot": 15, - "slot_lval": 14, - "redoip_slot": 30, - "curfr": 18, - "non_persistent_temp_slot": 15, - "RedoipSlot": 33, - "assign": 46, - "maxfr": 42, - "redofr_slot": 14, - "RedofrSlot": 17, - "from_list": 13, - "prevfr_slot": 3, - "pick_stack_resume_point": 3, - "StackLabel": 9, - "LabelConst": 4, - "const": 10, - "llconst_code_addr": 6, - "true": 3, - "ite_region_info": 5, - "ite_info": 3, - "ite_hijack_type": 2, - "ite_no_hijack": 3, - "ite_temp_frame": 3, - "ite_quarter_hijack": 3, - "ite_half_hijack": 3, - "ite_full_hijack": 3, - "CondCodeModel": 4, - "MaybeEmbeddedFrameId": 5, - "HijackType": 12, - "MaybeRegionInfo": 12, - "MaxfrSlot": 30, - "TempFrameCode": 4, - "MaxfrCode": 7, - "EmbeddedFrameId": 2, - "slot_success_record": 1, - "persistent_temp_slot": 1, - "SuccessRecordSlot": 6, - "InitSuccessCode": 3, - "llconst_false": 1, - "ITEResumePoint": 2, - "ThenCode": 10, - "ElseCode": 7, - "ResumePoints0": 5, - "stack.det_pop": 1, - "HijackResumeKnown": 2, - "OldCondEnv": 2, - "RegionInfo": 2, - "EmbeddedStackFrameId": 2, - "ITEStackResumeCodeAddr": 2, - "llconst_true": 1, - "AfterRegionOp": 3, - "if_val": 1, - "unop": 1, - "logical_not": 1, - "code_label": 2, - "use_and_maybe_pop_region_frame": 1, - "region_ite_nondet_cond_fail": 1, - "goto": 2, - "maybe_pick_stack_resume_point": 1, - "ResumeMap0": 2, - "make_fake_resume_map": 5, - "do_redo": 1, - "is_empty": 1, - "Vars": 10, - "Locns": 2, - "set.make_singleton_set": 1, - "reg": 1, - "pair": 7, - "region_commit_stack_frame": 5, - "AddTrailOps": 4, - "AddRegionOps": 5, - "CommitGoalInfo": 4, - "DetCommitInfo": 4, - "SaveMaxfrCode": 3, - "save_maxfr": 3, - "MaybeMaxfrSlot": 6, - "maybe_save_trail_info": 2, - "MaybeTrailSlots": 8, - "SaveTrailCode": 4, - "maybe_save_region_commit_frame": 4, - "MaybeRegionCommitFrameInfo": 8, - "SaveRegionCommitFrameCode": 2, - "SaveRegionCommitFrameCode.": 2, - "RestoreMaxfrCode": 3, - "restore_maxfr": 3, - "release_temp_slot": 1, - "maybe_restore_trail_info": 2, - "CommitTrailCode": 4, - "maybe_restore_region_commit_frame": 2, - "SuccessRegionCode": 3, - "_FailureRegionCode": 1, - "SuccessRegionCode.": 1, - "commit_hijack_info": 2, - "commit_temp_frame": 3, - "commit_quarter_hijack": 3, - "commit_half_hijack": 3, - "commit_full_hijack": 3, - "SemiCommitInfo": 4, - "clone_resume_point": 1, - "NewResumePoint": 4, - "stack.push": 1, - "StackLabelConst": 7, - "use_minimal_model_stack_copy_cut": 3, - "UseMinimalModelStackCopyCut": 4, - "Components": 4, - "foreign_proc_raw_code": 4, - "cannot_branch_away": 4, - "proc_affects_liveness": 2, - "live_lvals_info": 4, - "proc_does_not_affect_liveness": 2, - "MD": 4, - "proc_may_duplicate": 2, - "MarkCode": 3, - "foreign_proc_code": 2, - "proc_will_not_call_mercury": 2, - "HijackCode": 5, - "UseMinimalModel": 3, - "CutCode": 4, - "SuccessUndoCode": 5, - "FailureUndoCode": 5, - "AfterCommit": 2, - "ResumePointCode": 2, - "FailCode": 2, - "RestoreTrailCode": 2, - "FailureRegionCode": 2, - "SuccLabel": 3, - "GotoSuccLabel": 2, - "SuccLabelCode": 1, - "SuccessCode": 2, - "FailureCode": 2, - "SuccLabelCode.": 1, - "_ForwardLiveVarsBeforeGoal": 1, - "expr.": 1, - "char": 10, - "token": 5, - "num": 11, - "eof": 6, - "parse": 1, - "exprn/1": 1, - "xx": 1, - "scan": 16, - "mode": 8, - "rule": 3, - "exprn": 7, - "Num": 18, - "A": 14, - "term": 10, - "B": 8, - "{": 27, - "}": 28, - "*": 20, - "factor": 6, - "/": 1, - "//": 2, - "Chars": 2, - "Toks": 13, - "Toks0": 11, - "list__reverse": 1, - "Cs": 9, - "char__is_whitespace": 1, - "char__is_digit": 2, - "takewhile": 1, - "Digits": 2, - "Rest": 2, - "string__from_char_list": 1, - "NumStr": 2, - "string__det_to_int": 1, - "error": 7, - "hello.": 1, - "main": 15, - "io": 6, - "di": 54, - "uo": 58, - "IO": 4, - "io.write_string": 1, - "char.": 1, - "getopt_io.": 1, - "short_option": 36, - "option": 9, - "long_option": 241, - "option_defaults": 2, - "option_data": 2, - "nondet.": 1, - "special_handler": 1, - "special_data": 1, - "option_table": 5, - "maybe_option_table": 3, - "inconsequential_options": 1, - "options_help": 1, - "option_table_add_mercury_library_directory": 1, - "option_table.": 2, - "option_table_add_search_library_files_directory": 1, - "quote_arg": 1, - "inhibit_warnings": 4, - "inhibit_accumulator_warnings": 3, - "halt_at_warn": 3, - "halt_at_syntax_errors": 3, - "halt_at_auto_parallel_failure": 3, - "warn_singleton_vars": 3, - "warn_overlapping_scopes": 3, - "warn_det_decls_too_lax": 3, - "warn_inferred_erroneous": 3, - "warn_nothing_exported": 3, - "warn_unused_args": 3, - "warn_interface_imports": 3, - "warn_missing_opt_files": 3, - "warn_missing_trans_opt_files": 3, - "warn_missing_trans_opt_deps": 3, - "warn_non_contiguous_clauses": 3, - "warn_non_contiguous_foreign_procs": 3, - "warn_non_stratification": 3, - "warn_unification_cannot_succeed": 3, - "warn_simple_code": 3, - "warn_duplicate_calls": 3, - "warn_missing_module_name": 3, - "warn_wrong_module_name": 3, - "warn_smart_recompilation": 3, - "warn_undefined_options_variables": 3, - "warn_non_tail_recursion": 3, - "warn_target_code": 3, - "warn_up_to_date": 3, - "warn_stubs": 3, - "warn_dead_procs": 3, - "warn_table_with_inline": 3, - "warn_non_term_special_preds": 3, - "warn_known_bad_format_calls": 3, - "warn_unknown_format_calls": 3, - "warn_obsolete": 3, - "warn_insts_without_matching_type": 3, - "warn_unused_imports": 3, - "inform_ite_instead_of_switch": 3, - "warn_unresolved_polymorphism": 3, - "warn_suspicious_foreign_procs": 3, - "warn_state_var_shadowing": 3, - "inform_inferred": 3, - "inform_inferred_types": 3, - "inform_inferred_modes": 3, - "verbose": 4, - "very_verbose": 4, - "verbose_errors": 4, - "verbose_recompilation": 3, - "find_all_recompilation_reasons": 3, - "verbose_make": 3, - "verbose_commands": 3, - "output_compile_error_lines": 3, - "report_cmd_line_args": 3, - "report_cmd_line_args_in_doterr": 3, - "statistics": 4, - "detailed_statistics": 3, - "proc_size_statistics": 3, - "debug_types": 4, - "debug_modes": 4, - "debug_modes_statistics": 3, - "debug_modes_minimal": 3, - "debug_modes_verbose": 3, - "debug_modes_pred_id": 3, - "debug_dep_par_conj": 3, - "debug_det": 4, - "debug_code_gen_pred_id": 3, - "debug_opt": 3, - "debug_term": 4, - "constraint": 2, - "termination": 3, - "analysis": 1, - "debug_opt_pred_id": 3, - "debug_opt_pred_name": 3, - "debug_pd": 3, - "pd": 1, - "partial": 1, - "deduction/deforestation": 1, - "debug_il_asm": 3, - "il_asm": 1, - "IL": 2, - "generation": 1, - "via": 1, - "asm": 1, - "debug_liveness": 3, - "debug_stack_opt": 3, - "debug_make": 3, - "debug_closure": 3, - "debug_trail_usage": 3, - "debug_mode_constraints": 3, - "debug_intermodule_analysis": 3, - "debug_mm_tabling_analysis": 3, - "debug_indirect_reuse": 3, - "debug_type_rep": 3, - "make_short_interface": 4, - "make_interface": 5, - "make_private_interface": 4, - "make_optimization_interface": 5, - "make_transitive_opt_interface": 5, - "make_analysis_registry": 3, - "make_xml_documentation": 5, - "generate_source_file_mapping": 4, - "generate_dependency_file": 3, - "generate_dependencies": 4, - "generate_module_order": 3, - "generate_standalone_interface": 3, - "convert_to_mercury": 6, - "typecheck_only": 4, - "errorcheck_only": 4, - "target_code_only": 10, - "compile_only": 4, - "compile_to_shared_lib": 3, - "output_grade_string": 3, - "output_link_command": 3, - "output_shared_lib_link_command": 3, - "output_libgrades": 3, - "output_cc": 3, - "output_c_compiler_type": 4, - "output_csharp_compiler_type": 3, - "output_cflags": 3, - "output_library_link_flags": 3, - "output_grade_defines": 3, - "output_c_include_directory_flags": 4, - "smart_recompilation": 3, - "generate_item_version_numbers": 2, - "generate_mmc_make_module_dependencies": 4, - "assume_gmake": 3, - "trace_optimized": 4, - "trace_prof": 3, - "trace_table_io": 3, - "trace_table_io_only_retry": 3, - "trace_table_io_states": 3, - "trace_table_io_require": 3, - "trace_table_io_all": 3, - "trace_goal_flags": 3, - "prof_optimized": 4, - "exec_trace_tail_rec": 3, - "suppress_trace": 3, - "force_disable_tracing": 3, - "delay_death": 3, - "delay_death_max_vars": 3, - "stack_trace_higher_order": 3, - "force_disable_ssdebug": 3, - "generate_bytecode": 3, - "line_numbers": 4, - "frameopt_comments": 3, - "max_error_line_width": 3, - "show_dependency_graph": 3, - "imports_graph": 3, - "dump_trace_counts": 3, - "dump_hlds": 5, - "dump_hlds_pred_id": 3, - "dump_hlds_pred_name": 3, - "dump_hlds_alias": 4, - "dump_hlds_options": 3, - "dump_hlds_inst_limit": 3, - "dump_hlds_file_suffix": 3, - "dump_same_hlds": 3, - "dump_mlds": 4, - "verbose_dump_mlds": 4, - "mode_constraints": 3, - "simple_mode_constraints": 3, - "prop_mode_constraints": 4, - "benchmark_modes": 3, - "benchmark_modes_repeat": 3, - "sign_assembly": 3, - "separate_assemblies": 3, - "reorder_conj": 3, - "reorder_disj": 3, - "fully_strict": 3, - "strict_sequential": 3, - "allow_stubs": 3, - "infer_types": 3, - "infer_modes": 3, - "infer_det": 4, - "infer_all": 3, - "type_inference_iteration_limit": 3, - "mode_inference_iteration_limit": 3, - "event_set_file_name": 3, - "grade": 4, - "target": 14, - "il": 5, - "il_only": 4, - "compile_to_c": 4, - "c": 1, - "java": 35, - "java_only": 4, - "csharp": 6, - "csharp_only": 4, - "x86_64": 6, - "x86_64_only": 4, - "erlang": 6, - "erlang_only": 4, - "exec_trace": 3, - "decl_debug": 3, - "profiling": 5, - "profile_time": 5, - "profile_calls": 6, - "time_profiling": 3, - "memory_profiling": 3, - "profile_mem": 1, - "deep_profiling": 3, - "profile_deep": 4, - "profile_memory": 3, - "use_activation_counts": 3, - "pre_prof_transforms_simplify": 3, - "pre_implicit_parallelism_simplify": 3, - "coverage_profiling": 3, - "coverage_profiling_via_calls": 3, - "coverage_profiling_static": 3, - "profile_deep_coverage_after_goal": 3, - "profile_deep_coverage_branch_ite": 3, - "profile_deep_coverage_branch_switch": 3, - "profile_deep_coverage_branch_disj": 3, - "profile_deep_coverage_use_portcounts": 3, - "profile_deep_coverage_use_trivial": 2, - "profile_for_feedback": 2, - "use_zeroing_for_ho_cycles": 2, - "use_lots_of_ho_specialization": 2, - "deep_profile_tail_recursion": 2, - "record_term_sizes_as_words": 2, - "record_term_sizes_as_cells": 2, - "experimental_complexity": 2, - "gc": 2, - "threadscope": 2, - "trail_segments": 2, - "use_minimal_model_stack_copy": 2, - "use_minimal_model_own_stacks": 2, - "minimal_model_debug": 2, - "single_prec_float": 2, - "type_layout": 2, - "maybe_thread_safe_opt": 2, - "extend_stacks_when_needed": 2, - "stack_segments": 2, - "use_regions": 2, - "use_alloc_regions": 2, - "use_regions_debug": 2, - "use_regions_profiling": 2, - "source_to_source_debug": 5, - "ssdb_trace_level": 3, - "link_ssdb_libs": 4, - "tags": 2, - "num_tag_bits": 2, - "num_reserved_addresses": 2, - "num_reserved_objects": 2, - "bits_per_word": 2, - "bytes_per_word": 2, - "conf_low_tag_bits": 2, - "unboxed_enums": 2, - "unboxed_no_tag_types": 2, - "sync_term_size": 2, - "words": 1, - "gcc_global_registers": 2, - "pic_reg": 2, - "highlevel_code": 3, - "highlevel_data": 2, - "gcc_nested_functions": 2, - "det_copy_out": 2, - "nondet_copy_out": 2, - "put_commit_in_own_func": 2, - "put_nondet_env_on_heap": 2, - "verifiable_code": 2, - "il_refany_fields": 2, - "il_funcptr_types": 2, - "il_byref_tailcalls": 2, - "backend_foreign_languages": 2, - "stack_trace": 2, - "basic_stack_layout": 2, - "agc_stack_layout": 2, - "procid_stack_layout": 2, - "trace_stack_layout": 2, - "can_compare_constants_as_ints": 2, - "pretest_equality_cast_pointers": 2, - "can_compare_compound_values": 2, - "lexically_order_constructors": 2, - "mutable_always_boxed": 2, - "delay_partial_instantiations": 2, - "allow_defn_of_builtins": 2, - "special_preds": 2, - "type_ctor_info": 2, - "type_ctor_layout": 2, - "type_ctor_functors": 2, - "new_type_class_rtti": 2, - "rtti_line_numbers": 2, - "disable_minimal_model_stack_copy_pneg": 2, - "disable_minimal_model_stack_copy_cut": 2, - "use_minimal_model_stack_copy_pneg": 2, - "size_region_ite_fixed": 2, - "size_region_disj_fixed": 2, - "size_region_semi_disj_fixed": 1, - "size_region_commit_fixed": 2, - "size_region_ite_protect": 2, - "size_region_ite_snapshot": 2, - "size_region_semi_disj_protect": 2, - "size_region_disj_snapshot": 2, - "size_region_commit_entry": 2, - "solver_type_auto_init": 2, - "allow_multi_arm_switches": 2, - "type_check_constraints": 2, - "allow_argument_packing": 2, - "low_level_debug": 2, - "table_debug": 2, - "trad_passes": 2, - "parallel_liveness": 2, - "parallel_code_gen": 2, - "polymorphism": 2, - "reclaim_heap_on_failure": 2, - "reclaim_heap_on_semidet_failure": 2, - "reclaim_heap_on_nondet_failure": 2, - "have_delay_slot": 2, - "num_real_r_regs": 2, - "num_real_f_regs": 2, - "num_real_r_temps": 2, - "num_real_f_temps": 2, - "max_jump_table_size": 2, - "max_specialized_do_call_closure": 2, - "max_specialized_do_call_class_method": 2, - "compare_specialization": 2, - "should_pretest_equality": 2, - "fact_table_max_array_size": 2, - "fact_table_hash_percent_full": 2, - "gcc_local_labels": 2, - "prefer_switch": 2, - "opt_level": 3, - "opt_level_number": 2, - "opt_space": 2, - "Default": 3, - "to": 16, - "optimize": 3, - "time.": 1, - "intermodule_optimization": 2, - "read_opt_files_transitively": 2, - "use_opt_files": 2, - "use_trans_opt_files": 2, - "transitive_optimization": 2, - "intermodule_analysis": 2, - "analysis_repeat": 2, - "analysis_file_cache": 2, - "allow_inlining": 2, - "inlining": 2, - "inline_simple": 2, - "inline_builtins": 2, - "inline_single_use": 2, - "inline_call_cost": 2, - "inline_compound_threshold": 2, - "inline_simple_threshold": 2, - "inline_vars_threshold": 2, - "intermod_inline_simple_threshold": 2, - "from_ground_term_threshold": 2, - "enable_const_struct": 2, - "common_struct": 2, - "common_struct_preds": 2, - "common_goal": 2, - "constraint_propagation": 2, - "local_constraint_propagation": 2, - "optimize_unused_args": 2, - "intermod_unused_args": 2, - "optimize_higher_order": 2, - "higher_order_size_limit": 2, - "higher_order_arg_limit": 2, - "unneeded_code": 2, - "unneeded_code_copy_limit": 2, - "unneeded_code_debug": 2, - "unneeded_code_debug_pred_name": 2, - "type_specialization": 2, - "user_guided_type_specialization": 2, - "introduce_accumulators": 2, - "optimize_constructor_last_call_accumulator": 2, - "optimize_constructor_last_call": 2, - "optimize_duplicate_calls": 2, - "constant_propagation": 2, - "excess_assign": 2, - "optimize_format_calls": 2, - "optimize_saved_vars_const": 2, - "optimize_saved_vars_cell": 2, - "optimize_saved_vars_cell_loop": 2, - "optimize_saved_vars_cell_full_path": 2, - "optimize_saved_vars_cell_on_stack": 2, - "optimize_saved_vars_cell_candidate_headvars": 2, - "optimize_saved_vars_cell_cv_store_cost": 2, - "optimize_saved_vars_cell_cv_load_cost": 2, - "optimize_saved_vars_cell_fv_store_cost": 2, - "optimize_saved_vars_cell_fv_load_cost": 2, - "optimize_saved_vars_cell_op_ratio": 2, - "optimize_saved_vars_cell_node_ratio": 2, - "optimize_saved_vars_cell_all_path_node_ratio": 2, - "optimize_saved_vars_cell_include_all_candidates": 2, - "optimize_saved_vars": 2, - "loop_invariants": 2, - "delay_construct": 2, - "follow_code": 2, - "optimize_dead_procs": 2, - "deforestation": 2, - "deforestation_depth_limit": 2, - "deforestation_cost_factor": 2, - "deforestation_vars_threshold": 2, - "deforestation_size_threshold": 2, - "analyse_trail_usage": 2, - "analyse_mm_tabling": 2, - "untuple": 2, - "tuple": 2, - "tuple_trace_counts_file": 2, - "tuple_costs_ratio": 2, - "tuple_min_args": 2, - "inline_par_builtins": 2, - "always_specialize_in_dep_par_conjs": 2, - "allow_some_paths_only_waits": 2, - "structure_sharing_analysis": 2, - "structure_sharing_widening": 2, - "structure_reuse_analysis": 2, - "structure_reuse_constraint": 2, - "structure_reuse_constraint_arg": 2, - "structure_reuse_max_conditions": 2, - "structure_reuse_repeat": 2, - "structure_reuse_free_cells": 2, - "termination_check": 2, - "verbose_check_termination": 2, - "termination_single_args": 2, - "termination_norm": 2, - "termination_error_limit": 2, - "termination_path_limit": 2, - "termination2": 2, - "check_termination2": 2, - "verbose_check_termination2": 2, - "termination2_norm": 2, - "widening_limit": 2, - "arg_size_analysis_only": 2, - "propagate_failure_constrs": 2, - "term2_maximum_matrix_size": 2, - "analyse_exceptions": 2, - "analyse_closures": 2, - "smart_indexing": 2, - "dense_switch_req_density": 2, - "lookup_switch_req_density": 2, - "dense_switch_size": 2, - "lookup_switch_size": 2, - "string_hash_switch_size": 2, - "string_binary_switch_size": 2, - "tag_switch_size": 2, - "try_switch_size": 2, - "binary_switch_size": 2, - "switch_single_rec_base_first": 2, - "switch_multi_rec_base_first": 2, - "use_atomic_cells": 2, - "middle_rec": 2, - "simple_neg": 2, - "optimize_tailcalls": 2, - "optimize_initializations": 2, - "eliminate_local_vars": 2, - "generate_trail_ops_inline": 2, - "common_data": 2, - "common_layout_data": 2, - "Also": 1, - "used": 2, - "for": 8, - "MLDS": 2, - "optimizations.": 1, - "optimize_peep": 2, - "optimize_peep_mkword": 2, - "optimize_jumps": 2, - "optimize_fulljumps": 2, - "pessimize_tailcalls": 2, - "checked_nondet_tailcalls": 2, - "use_local_vars": 2, - "local_var_access_threshold": 2, - "standardize_labels": 2, - "optimize_labels": 2, - "optimize_dups": 2, - "optimize_proc_dups": 2, - "optimize_frames": 2, - "optimize_delay_slot": 2, - "optimize_reassign": 2, - "optimize_repeat": 2, - "layout_compression_limit": 2, - "use_macro_for_redo_fail": 2, - "emit_c_loops": 2, - "everything_in_one_c_function": 2, - "local_thread_engine_base": 2, - "erlang_switch_on_strings_as_atoms": 2, - "target_debug": 2, - "cc": 2, - "cflags": 2, - "quoted_cflag": 2, - "c_include_directory": 2, - "c_optimize": 2, - "ansi_c": 2, - "inline_alloc": 2, - "gcc_flags": 2, - "quoted_gcc_flag": 2, - "clang_flags": 2, - "quoted_clang_flag": 2, - "msvc_flags": 2, - "quoted_msvc_flag": 2, - "cflags_for_warnings": 2, - "cflags_for_optimization": 2, - "cflags_for_ansi": 2, - "cflags_for_regs": 2, - "cflags_for_gotos": 2, - "cflags_for_threads": 2, - "cflags_for_debug": 2, - "cflags_for_pic": 2, - "c_flag_to_name_object_file": 2, - "object_file_extension": 2, - "pic_object_file_extension": 2, - "link_with_pic_object_file_extension": 2, - "c_compiler_type": 2, - "csharp_compiler_type": 2, - "java_compiler": 2, - "java_interpreter": 2, - "java_flags": 2, - "quoted_java_flag": 2, - "java_classpath": 2, - "java_object_file_extension": 2, - "il_assembler": 2, - "ilasm_flags": 2, - "quoted_ilasm_flag": 2, - "dotnet_library_version": 2, - "support_ms_clr": 2, - "support_rotor_clr": 2, - "csharp_compiler": 2, - "csharp_flags": 2, - "quoted_csharp_flag": 2, - "cli_interpreter": 2, - "erlang_compiler": 2, - "erlang_interpreter": 2, - "erlang_flags": 2, - "quoted_erlang_flag": 2, - "erlang_include_directory": 2, - "erlang_object_file_extension": 2, - "erlang_native_code": 2, - "erlang_inhibit_trivial_warnings": 2, - "output_file_name": 3, - "ld_flags": 2, - "quoted_ld_flag": 2, - "ld_libflags": 2, - "quoted_ld_libflag": 2, - "link_library_directories": 3, - "runtime_link_library_directories": 3, - "link_libraries": 3, - "link_objects": 2, - "mercury_library_directories": 2, - "mercury_library_directory_special": 2, - "search_library_files_directories": 2, - "search_library_files_directory_special": 2, - "mercury_libraries": 2, - "mercury_library_special": 2, - "mercury_standard_library_directory": 2, - "mercury_standard_library_directory_special": 2, - "init_file_directories": 2, - "init_files": 2, - "trace_init_files": 2, - "linkage": 2, - "linkage_special": 2, - "mercury_linkage": 2, - "mercury_linkage_special": 2, - "strip": 2, - "demangle": 2, - "allow_undefined": 2, - "use_readline": 2, - "runtime_flags": 2, - "extra_initialization_functions": 2, - "frameworks": 2, - "framework_directories": 3, - "shared_library_extension": 2, - "library_extension": 2, - "executable_file_extension": 2, - "link_executable_command": 2, - "link_shared_lib_command": 2, - "create_archive_command": 2, - "create_archive_command_output_flag": 2, - "create_archive_command_flags": 2, - "ranlib_command": 2, - "ranlib_flags": 2, - "mkinit_command": 2, - "mkinit_erl_command": 2, - "demangle_command": 2, - "filtercc_command": 2, - "trace_libs": 2, - "thread_libs": 2, - "hwloc_libs": 2, - "hwloc_static_libs": 2, - "shared_libs": 2, - "math_lib": 2, - "readline_libs": 2, - "linker_opt_separator": 2, - "linker_thread_flags": 2, - "shlib_linker_thread_flags": 2, - "linker_static_flags": 2, - "linker_strip_flag": 2, - "linker_link_lib_flag": 2, - "linker_link_lib_suffix": 2, - "shlib_linker_link_lib_flag": 2, - "shlib_linker_link_lib_suffix": 2, - "linker_debug_flags": 2, - "shlib_linker_debug_flags": 2, - "linker_trace_flags": 2, - "shlib_linker_trace_flags": 2, - "linker_path_flag": 2, - "linker_rpath_flag": 2, - "linker_rpath_separator": 2, - "shlib_linker_rpath_flag": 2, - "shlib_linker_rpath_separator": 2, - "linker_allow_undefined_flag": 2, - "linker_error_undefined_flag": 2, - "shlib_linker_use_install_name": 2, - "shlib_linker_install_name_flag": 2, - "shlib_linker_install_name_path": 2, - "java_archive_command": 2, - "make": 3, - "keep_going": 3, - "rebuild": 3, - "jobs": 3, - "track_flags": 2, - "invoked_by_mmc_make": 2, - "extra_init_command": 2, - "pre_link_command": 2, - "install_prefix": 2, - "use_symlinks": 2, - "mercury_configuration_directory": 2, - "mercury_configuration_directory_special": 2, - "install_command": 2, - "install_command_dir_option": 2, - "libgrades": 2, - "libgrades_include_components": 2, - "libgrades_exclude_components": 2, - "lib_linkages": 2, - "flags_file": 2, - "options_files": 2, - "config_file": 2, - "options_search_directories": 2, - "use_subdirs": 2, - "use_grade_subdirs": 2, - "search_directories": 3, - "intermod_directories": 2, - "use_search_directories_for_intermod": 2, - "libgrade_install_check": 2, - "order_make_by_timestamp": 2, - "show_make_times": 2, - "extra_library_header": 2, - "restricted_command_line": 2, - "env_type": 2, - "host_env_type": 2, - "target_env_type": 2, - "filenames_from_stdin": 2, - "typecheck_ambiguity_warn_limit": 2, - "typecheck_ambiguity_error_limit": 2, - "help": 4, - "version": 3, - "fullarch": 2, - "cross_compiling": 2, - "local_module_id": 2, - "analysis_file_cache_dir": 2, - "compiler_sufficiently_recent": 2, - "experiment": 2, - "ignore_par_conjunctions": 2, - "control_granularity": 2, - "distance_granularity": 2, - "implicit_parallelism": 2, - "feedback_file": 2, - "par_loop_control": 2, - "par_loop_control_preserve_tail_recursion.": 1, - "libs.handle_options.": 1, - "dir.": 1, - "option_category": 2, - "warning_option": 2, - "verbosity_option": 2, - "output_option": 2, - "aux_output_option": 2, - "language_semantics_option": 2, - "compilation_model_option": 2, - "internal_use_option": 2, - "code_gen_option": 2, - "special_optimization_option": 2, - "optimization_option": 2, - "target_code_compilation_option": 2, - "link_option": 2, - "build_system_option": 2, - "miscellaneous_option.": 1, - "Option": 2, - "option_defaults_2": 18, - "_Category": 1, - "OptionsList": 2, - "list.member": 2, - "multi.": 1, - "bool_special": 7, - "XXX": 3, - "should": 1, - "be": 1, - "accumulating": 49, - "maybe_string": 6, - "special": 17, - "string_special": 18, - "int_special": 1, - "maybe_string_special": 1, - "file_special": 1, - "miscellaneous_option": 1, - "par_loop_control_preserve_tail_recursion": 1, - "check_hlds.polymorphism.": 1, - "hlds.": 1, - "mdbcomp.": 1, - "parse_tree.": 1, - "polymorphism_process_module": 2, - "polymorphism_process_generated_pred": 2, - "unification_typeinfos_rtti_varmaps": 2, - "rtti_varmaps": 9, - "unification": 8, - "polymorphism_process_new_call": 2, - "builtin_state": 1, - "call_unify_context": 2, - "sym_name": 3, - "hlds_goal": 45, - "poly_info": 45, - "polymorphism_make_type_info_vars": 1, - "polymorphism_make_type_info_var": 1, - "int_or_var": 2, - "iov_int": 1, - "iov_var": 1, - "gen_extract_type_info": 1, - "tvar": 10, - "kind": 1, - "vartypes": 12, - "poly_info.": 1, - "create_poly_info": 1, - "poly_info_extract": 1, - "build_typeclass_info_type": 3, - "prog_constraint": 4, - "type_is_typeclass_info": 1, - "type_is_type_info_or_ctor_type": 1, - "build_type_info_type": 1, - "get_special_proc": 1, - "special_pred_id": 2, - "get_special_proc_det": 1, - "convert_pred_to_lambda_goal": 3, - "purity": 1, - "lambda_eval_method": 1, - "unify_context": 3, - "context": 1, - "unify_rhs": 4, - "fix_undetermined_mode_lambda_goal": 2, - "rhs_lambda_goal": 7, - "init_type_info_var": 1, - "init_const_type_ctor_info_var": 1, - "type_ctor": 1, - "cons_id": 2, - "type_info_kind": 2, - "type_info": 8, - "type_ctor_info.": 1, - "new_type_info_var_raw": 1, - "check_hlds.clause_to_proc.": 1, - "check_hlds.mode_util.": 1, - "hlds.from_ground_term_util.": 1, - "hlds.const_struct.": 1, - "hlds.goal_util.": 1, - "hlds.hlds_args.": 1, - "hlds.hlds_clauses.": 1, - "hlds.hlds_code_util.": 1, - "hlds.passes_aux.": 1, - "hlds.pred_table.": 1, - "hlds.quantification.": 1, - "hlds.special_pred.": 1, - "libs.": 1, - "mdbcomp.program_representation.": 1, - "parse_tree.prog_mode.": 1, - "parse_tree.prog_type_subst.": 1, - "solutions.": 1, - "module_info_get_preds": 3, - ".ModuleInfo": 8, - "Preds0": 2, - "PredIds0": 2, - "list.foldl": 6, - "maybe_polymorphism_process_pred": 3, - "Preds1": 2, - "PredIds1": 2, - "fixup_pred_polymorphism": 4, - "expand_class_method_bodies": 1, - "PredModule": 8, - "pred_info_module": 4, - "PredName": 8, - "pred_info_name": 4, - "PredArity": 6, - "pred_info_orig_arity": 3, - "no_type_info_builtin": 3, - "copy_module_clauses_to_procs": 1, - "polymorphism_process_pred_msg": 3, - "PredTable0": 3, - "map.lookup": 2, - "PredInfo0": 16, - "pred_info_get_clauses_info": 2, - "ClausesInfo0": 5, - "clauses_info_get_vartypes": 2, - "VarTypes0": 12, - "clauses_info_get_headvars": 2, - "pred_info_get_arg_types": 7, - "TypeVarSet": 15, - "ExistQVars": 13, - "ArgTypes0": 3, - "proc_arg_vector_partition_poly_args": 1, - "ExtraHeadVarList": 2, - "OldHeadVarList": 2, - "lookup_var_types": 6, - "ExtraArgTypes": 2, - "ArgTypes": 6, - "pred_info_set_arg_types": 1, - "PredInfo1": 5, - "OldHeadVarTypes": 2, - "type_list_subsumes": 2, - "Subn": 3, - "map.is_empty": 1, - "pred_info_set_existq_tvar_binding": 1, - "PredInfo2": 7, - "polymorphism_introduce_exists_casts_pred": 3, - "PredTable": 2, - "module_info_set_preds": 1, - "pred_info_get_procedures": 2, - ".PredInfo": 2, - "Procs0": 4, - "map.map_values_only": 1, - ".ProcInfo": 2, - "det": 21, - "introduce_exists_casts_proc": 1, - "Procs": 4, - "pred_info_set_procedures": 2, - "trace": 4, - "compiletime": 4, - "flag": 4, - "write_pred_progress_message": 1, - "polymorphism_process_pred": 4, - "mutable": 3, - "selected_pred": 1, - "ground": 9, - "untrailed": 2, - "level": 1, - "promise_pure": 30, - "pred_id_to_int": 1, - "impure": 2, - "set_selected_pred": 2, - "polymorphism_process_clause_info": 3, - "ClausesInfo": 13, - "Info": 134, - "ExtraArgModes": 20, - "poly_info_get_module_info": 4, - "poly_info_get_const_struct_db": 1, - "ConstStructDb": 2, - "module_info_set_const_struct_db": 1, - "poly_info_get_typevarset": 4, - "pred_info_set_typevarset": 1, - "pred_info_set_clauses_info": 1, - "ProcIds": 5, - "pred_info_procids": 2, - "polymorphism_process_proc_in_table": 3, - "module_info_set_pred_info": 1, - "clauses_info": 6, - "poly_arg_vector": 9, - "mer_mode": 14, - "ModuleInfo0": 8, - "init_poly_info": 1, - ".ClausesInfo": 2, - "_VarSet": 1, - "ExplicitVarTypes": 2, - "_TVarNameMap": 1, - "_VarTypes": 1, - "HeadVars0": 5, - "ClausesRep0": 2, - "ItemNumbers": 2, - "_RttiVarMaps": 1, - "HaveForeignClauses": 2, - "setup_headvars": 3, - "UnconstrainedTVars": 15, - "ExtraTypeInfoHeadVars": 4, - "ExistTypeClassInfoHeadVars": 6, - "get_clause_list": 1, - "Clauses0": 2, - "list.map_foldl": 2, - "polymorphism_process_clause": 3, - "Clauses": 2, - "poly_info_get_varset": 4, - ".Info": 25, - "poly_info_get_var_types": 6, - "poly_info_get_rtti_varmaps": 4, - "RttiVarMaps": 16, - "set_clause_list": 1, - "ClausesRep": 2, - "TVarNameMap": 2, - "This": 2, - "only": 4, - "while": 1, - "adding": 1, - "the": 27, - "clauses.": 1, - "proc_arg_vector": 9, - "clause": 2, - "OldHeadVars": 2, - "NewHeadVars": 2, - "Clause": 2, - "pred_info_is_imported": 2, - "Goal0": 21, - ".Clause": 1, - "clause_body": 2, - "empty_cache_maps": 4, - "poly_info_set_num_reuses": 1, - "polymorphism_process_goal": 20, - "Goal1": 2, - "produce_existq_tvars": 3, - "Goal2": 2, - "pred_info_get_exist_quant_tvars": 1, - "fixup_quantification": 1, - "Goal": 40, - "proc_table": 2, - "ProcTable": 2, - ".ProcTable": 1, - "ProcInfo0": 2, - "polymorphism_process_proc": 3, - "pred_info_is_pseudo_imported": 1, - "hlds_pred.in_in_unification_proc_id": 1, - "HeadVarList": 4, - "proc_arg_vector_to_list": 2, - "clauses_info_get_rtti_varmaps": 1, - "clauses_info_get_varset": 1, - "proc_info_set_headvars": 1, - "proc_info_set_rtti_varmaps": 1, - "proc_info_set_varset": 1, - "proc_info_set_vartypes": 1, - "copy_clauses_to_proc": 1, - "proc_info_get_argmodes": 2, - "ArgModes1": 2, - "ExtraArgModesList": 2, - "poly_arg_vector_to_list": 1, - "ArgModes": 5, - "proc_info_set_argmodes": 1, - "ExtraHeadTypeInfoVars": 7, - "ExistHeadTypeClassInfoVars": 9, - "pred_info_get_origin": 1, - "Origin": 8, - "ExtraArgModes0": 3, - "poly_arg_vector_init": 1, - "origin_instance_method": 1, - "InstanceMethodConstraints": 4, - "setup_headvars_instance_method": 3, - "origin_special_pred": 1, - "origin_transformed": 1, - "origin_created": 1, - "origin_assertion": 1, - "origin_lambda": 1, - "origin_user": 1, - "pred_info_get_class_context": 4, - "ClassContext": 6, - "InstanceTVars": 7, - "InstanceUnconstrainedTVars": 2, - "InstanceUnconstrainedTypeInfoVars": 2, - "setup_headvars_2": 4, - "instance_method_constraints": 2, - "InstanceTypes": 2, - "InstanceConstraints": 3, - "type_vars_list": 5, - "get_unconstrained_tvars": 1, - "UnconstrainedInstanceTVars": 6, - "ArgTypeVarSet": 5, - "make_head_vars": 3, - "UnconstrainedInstanceTypeInfoVars": 7, - "make_typeclass_info_head_vars": 3, - "do_record_type_info_locns": 3, - "InstanceHeadTypeClassInfoVars": 4, - "proc_arg_vector_set_instance_type_infos": 1, - "proc_arg_vector_set_instance_typeclass_infos": 1, - "RttiVarMaps0": 4, - "rtti_reuse_typeclass_info_var": 3, - "poly_info_set_rtti_varmaps": 3, - "in_mode": 3, - "InMode": 3, - "list.duplicate": 6, - "list.length": 16, - "UnconstrainedInstanceTypeInfoModes": 2, - "InstanceHeadTypeClassInfoModes": 2, - "poly_arg_vector_set_instance_type_infos": 1, - "poly_arg_vector_set_instance_typeclass_infos": 1, - "prog_constraints": 1, - "AllUnconstrainedTVars": 2, - "AllExtraHeadTypeInfoVars": 2, - "constraints": 4, - "UnivConstraints": 3, - "ExistConstraints": 6, - "prog_type.constraint_list_get_tvars": 2, - "UnivConstrainedTVars": 2, - "ExistConstrainedTVars": 2, - "poly_info_get_constraint_map": 4, - "ConstraintMap": 12, - "get_improved_exists_head_constraints": 4, - "ActualExistConstraints": 9, - "pred_info_get_markers": 1, - "PredMarkers": 2, - "check_marker": 1, - "marker_class_method": 1, - "RecordExistQLocns": 3, - "do_not_record_type_info_locns": 1, - "UnivHeadTypeClassInfoVars": 4, - "HeadTypeVars": 2, - "list.delete_elems": 12, - "UnconstrainedTVars0": 2, - "UnconstrainedTVars1": 2, - "UnconstrainedTVars2": 2, - "list.remove_dups": 4, - "UnconstrainedUnivTVars": 7, - "UnconstrainedExistTVars": 6, - "ExistHeadTypeInfoVars": 5, - "UnivHeadTypeInfoVars": 4, - "list.condense": 4, - "proc_arg_vector_set_univ_type_infos": 1, - "HeadVars1": 2, - "proc_arg_vector_set_exist_type_infos": 1, - "HeadVars2": 2, - "proc_arg_vector_set_univ_typeclass_infos": 1, - "HeadVars3": 2, - "proc_arg_vector_set_exist_typeclass_infos": 1, - "In": 6, - "out_mode": 2, - "Out": 6, - "NumUnconstrainedUnivTVars": 2, - "NumUnconstrainedExistTVars": 2, - "NumUnivClassInfoVars": 2, - "NumExistClassInfoVars": 2, - "UnivTypeInfoModes": 2, - "ExistTypeInfoModes": 2, - "UnivTypeClassInfoModes": 2, - "ExistTypeClassInfoModes": 2, - "poly_arg_vector_set_univ_type_infos": 1, - "poly_arg_vector_set_exist_type_infos": 1, - "poly_arg_vector_set_univ_typeclass_infos": 1, - "poly_arg_vector_set_exist_typeclass_infos": 1, - "some": 4, - "ToLocn": 4, - "TheVar": 2, - "TheLocn": 2, - "list.map": 17, - "UnivTypeLocns": 2, - "list.foldl_corresponding": 3, - "rtti_det_insert_type_info_locn": 3, - "ExistTypeLocns": 2, - "UnconstrainedInstanceTypeLocns": 2, - ".RttiVarMaps": 1, - "TypeInfoHeadVars": 2, - "pred_info_get_tvar_kinds": 2, - "KindMap": 2, - "PredClassContext": 5, - "PredExistConstraints": 2, - "exist_constraints": 1, - "ExistQVarsForCall": 2, - "goal_info_get_context": 4, - "make_typeclass_info_vars": 3, - "ExistTypeClassVarsMCAs": 2, - "ExtraTypeClassGoals": 5, - "assoc_list.keys": 8, - "ExistTypeClassVars": 3, - "assign_var_list": 8, - "ExtraTypeClassUnifyGoals": 2, - "vartypes_is_empty": 1, - "PredToActualTypeSubst": 4, - "ActualArgTypes": 8, - "ArgTypeSubst": 2, - "apply_subst_to_tvar_list": 1, - "ActualTypes": 2, - "polymorphism_do_make_type_info_vars": 5, - "TypeInfoVarsMCAs": 2, - "ExtraTypeInfoGoals": 4, - "TypeInfoVars": 5, - "ExtraTypeInfoUnifyGoals": 2, - "GoalList": 8, - "conj_list_to_goal": 6, - "Var1": 5, - "Vars1": 2, - "Var2": 5, - "Vars2": 2, - "Goals": 13, - "assign_var": 3, - "true_goal": 1, - "term.context_init": 2, - "create_pure_atomic_complicated_unification": 1, - "rhs_var": 2, - "umc_explicit": 1, - "constraint_map": 1, - "NumExistConstraints": 4, - "search_hlds_constraint_list": 1, - "unproven": 3, - "goal_id": 1, - "ActualExistConstraints0": 2, - "GoalExpr0": 18, - "GoalInfo0": 41, - "generic_call": 1, - "plain_call": 5, - "ArgVars0": 23, - "polymorphism_process_call": 4, - "ExtraVars": 13, - "ExtraGoals": 13, - "ArgVars": 6, - "CallExpr": 4, - "call_args": 1, - "Call": 4, - "call_foreign_proc": 4, - "polymorphism_process_foreign_proc": 3, - "XVar": 11, - "Y": 9, - "Mode": 12, - "Unification": 16, - "UnifyContext": 15, - "polymorphism_process_unify": 4, - "conj": 5, - "ConjType": 4, - "Goals0": 13, - "plain_conj": 4, - "polymorphism_process_plain_conj": 5, - "parallel_conj": 1, - "get_cache_maps_snapshot": 11, - "InitialSnapshot": 36, - "polymorphism_process_par_conj": 5, - "GoalExpr": 19, - "disj": 2, - "polymorphism_process_disj": 6, - "set_cache_maps_snapshot": 15, - "if_then_else": 2, - "Cond0": 2, - "Then0": 2, - "Else0": 2, - "Cond": 2, - "Then": 2, - "Else": 2, - "negation": 2, - "SubGoal0": 14, - "SubGoal": 16, - "switch": 2, - "CanFail": 4, - "Cases0": 4, - "polymorphism_process_cases": 5, - "Cases": 4, - "scope": 7, - "Reason0": 16, - "from_ground_term": 2, - "TermVar": 4, - "Kind": 5, - "from_ground_term_initial": 2, - "polymorphism_process_from_ground_term_initial": 3, - "from_ground_term_construct": 1, - "from_ground_term_deconstruct": 1, - "from_ground_term_other": 1, - "promise_solutions": 1, - "promise_purity": 1, - "require_detism": 1, - "require_complete_switch": 1, - "commit": 1, - "barrier": 1, - "loop_control": 1, - "exist_quant": 1, - "trace_goal": 1, - "shorthand": 2, - "ShortHand0": 4, - "atomic_goal": 2, - "GoalType": 2, - "Outer": 2, - "Inner": 2, - "MainGoal0": 2, - "OrElseGoals0": 2, - "OrElseInners": 2, - "MainGoal": 2, - "OrElseGoals": 2, - "ShortHand": 3, - "try_goal": 2, - "MaybeIO": 2, - "ResultVar": 2, - "SubGoalExpr0": 4, - "SubGoalInfo": 2, - "Conjuncts0": 2, - "ConjunctA0": 2, - "ConjunctB0": 2, - "ConjunctA": 2, - "ConjunctB": 2, - "Conjuncts": 2, - "SubGoalExpr": 2, - "bi_implication": 1, - "hlds_goal_expr": 2, - "SubGoalInfo0": 2, - "SubGoals0Prime": 2, - "SubGoals0": 2, - "polymorphism_process_fgti_goals": 5, - "RevMarkedSubGoals": 2, - "fgt_invariants_kept": 2, - "InvariantsStatus": 7, - "Reason": 2, - "fgt_invariants_broken": 2, - "introduce_partial_fgt_scopes": 1, - "deconstruct_top_down": 1, - "fgt_marked_goal": 2, - "fgt_invariants_status": 2, - "RevMarkedGoals": 4, - "OldInfo": 3, - "XVarPrime": 2, - "ModePrime": 2, - "UnificationPrime": 2, - "UnifyContextPrime": 2, - "rhs_functor": 5, - "ConsIdPrime": 2, - "YVarsPrime": 2, - "ConsId": 10, - "YVars": 4, - "polymorphism_process_unify_functor": 4, - "Changed": 10, - "VarSetBefore": 2, - "MaxVarBefore": 2, - "varset.max_var": 2, - "poly_info_get_num_reuses": 2, - "NumReusesBefore": 2, - "VarSetAfter": 2, - "MaxVarAfter": 2, - "NumReusesAfter": 2, - "MarkedGoal": 3, - "fgt_kept_goal": 1, - "fgt_broken_goal": 1, - ".RevMarkedGoals": 1, - "unify_mode": 2, - "Unification0": 8, - "_YVar": 1, - "unification_typeinfos": 5, - "_Changed": 3, - "Args": 11, - "Purity": 9, - "Groundness": 6, - "PredOrFunc": 6, - "EvalMethod": 8, - "LambdaVars": 13, - "Modes": 4, - "Det": 4, - "LambdaGoal0": 5, - "LambdaGoal1": 2, - "fixup_lambda_quantification": 1, - "LambdaGoal": 6, - "NonLocalTypeInfos": 3, - "set_of_var.to_sorted_list": 1, - "NonLocalTypeInfosList": 2, - "Y1": 2, - "NonLocals0": 10, - "goal_info_get_nonlocals": 6, - "NonLocals": 12, - "goal_info_set_nonlocals": 6, - "type_vars": 2, - "TypeVars": 8, - "get_type_info_locn": 1, - "TypeInfoLocns": 6, - "add_unification_typeinfos": 4, - "rtti_lookup_type_info_locn": 1, - "type_info_locn": 1, - "type_info_locn_var": 1, - "TypeInfoVars0": 2, - ".GoalInfo": 1, - "set_of_var.insert_list": 4, - ".Unification": 5, - "complicated_unify": 2, - "construct": 1, - "deconstruct": 2, - "simple_test": 1, - "X0": 8, - "ConsId0": 5, - "Mode0": 4, - "TypeOfX": 6, - "Arity": 5, - "closure_cons": 1, - "ShroudedPredProcId": 2, - "ProcId0": 3, - "unshroud_pred_proc_id": 1, - "type_is_higher_order_details": 1, - "_PredOrFunc": 1, - "CalleeArgTypes": 2, - "invalid_proc_id": 1, - "goal_info_add_feature": 1, - "feature_lambda_undetermined_mode": 1, - "GoalInfo1": 6, - "VarSet0": 2, - "Functor0": 6, - "poly_info_set_varset_and_types": 1, - "cons": 3, - "ConsTypeCtor": 2, - "remove_new_prefix": 1, - "OrigFunctor": 2, - "IsConstruction": 7, - "type_util.get_existq_cons_defn": 1, - "ConsDefn": 2, - "polymorphism_process_existq_unify_functor": 3, - "UnifyExpr": 2, - "Unify": 2, - "PredArgTypes": 10, - "Functor": 6, - "create_fresh_vars": 5, - "QualifiedPName": 5, - "qualified": 1, - "cons_id_dummy_type_ctor": 1, - "RHS": 2, - "CallUnifyContext": 2, - "LambdaGoalExpr": 2, - "not_builtin": 3, - "OutsideVars": 2, - "InsideVars": 2, - "set_of_var.intersect": 1, - "LambdaNonLocals": 2, - "GoalId": 8, - "goal_info_get_goal_id": 3, - "goal_info_init": 1, - "LambdaGoalInfo0": 2, - "goal_info_set_context": 1, - "LambdaGoalInfo1": 2, - "LambdaGoalInfo2": 2, - "goal_info_set_purity": 1, - "LambdaGoalInfo3": 2, - "goal_info_set_goal_id": 1, - "LambdaGoalInfo": 4, - "lambda_modes_and_det": 4, - "LambdaModes": 6, - "LambdaDet": 6, - "pred_info_is_pred_or_func": 1, - "ho_ground": 1, - "_LambdaModes0": 1, - "_LambdaDet0": 1, - "goal_to_conj_list": 1, - "LambdaGoalList0": 2, - "list.split_last": 1, - "LambdaGoalButLast0": 2, - "LastGoal0": 2, - "LastGoalExpr0": 2, - "LastGoalInfo0": 2, - "PredId0": 2, - "_DummyProcId": 1, - "Args0": 5, - "MaybeCallUnifyContext0": 2, - "QualifiedPName0": 2, - "LambdaGoalButLast": 2, - "LastGoalInfo": 2, - "MaybeCallUnifyContext": 4, - "LastGoalExpr": 2, - "LastGoal": 2, - "prog_vars": 1, - "determinism": 1, - "NumArgModes": 2, - "NumLambdaVars": 2, - "list.drop": 2, - "LambdaModesPrime": 2, - "proc_info_get_declared_determinism": 1, - "MaybeDet": 3, - "sorry": 1, - "varset.new_var": 1, - "add_var_type": 1, - "ctor_defn": 2, - "CtorDefn": 2, - "ActualRetType": 2, - "CtorTypeVarSet": 2, - "CtorExistQVars": 2, - "CtorKindMap": 2, - "CtorExistentialConstraints": 2, - "CtorArgTypes": 2, - "CtorRetType": 2, - "TypeVarSet0": 5, - "tvarset_merge_renaming": 3, - "CtorToParentRenaming": 6, - "apply_variable_renaming_to_tvar_list": 2, - "ParentExistQVars": 6, - "apply_variable_renaming_to_tvar_kind_map": 2, - "ParentKindMap": 7, - "apply_variable_renaming_to_prog_constraint_list": 1, - "ParentExistentialConstraints": 3, - "apply_variable_renaming_to_type_list": 4, - "ParentArgTypes": 6, - "apply_variable_renaming_to_type": 1, - "ParentRetType": 2, - "poly_info_set_typevarset": 3, - "type_list_subsumes_det": 3, - "ParentToActualTypeSubst": 6, - "NumExistentialConstraints": 3, - "lookup_hlds_constraint_list": 4, - "ActualExistentialConstraints": 4, - "ExtraTypeClassVarsMCAs": 2, - "ExtraTypeClassVars": 2, - "assumed": 2, - "make_existq_typeclass_info_vars": 2, - "constraint_list_get_tvars": 3, - "ParentExistConstrainedTVars": 4, - "ParentUnconstrainedExistQVars": 2, - "apply_rec_subst_to_tvar_list": 4, - "ActualExistentialTypes": 2, - "ExtraTypeInfoVarsMCAs": 2, - "ExtraTypeInfoVars": 2, - "ExtraTypeClassVars.": 1, - "bound": 1, - "Attributes": 2, - "ProcExtraArgs": 2, - "MaybeTraceRuntimeCond": 2, - "Impl": 14, - "foreign_arg_var": 1, - "CanOptAwayUnnamed": 11, - "polymorphism_process_foreign_proc_args": 3, - "ExtraArgs": 5, - "pragma_foreign_code_impl": 4, - "foreign_arg": 1, - "PredTypeVarSet": 8, - "UnivCs": 4, - "ExistCs": 4, - "UnivVars0": 2, - "get_constrained_vars": 2, - "UnivConstrainedVars": 2, - "ExistVars0": 2, - "ExistConstrainedVars": 2, - "PredTypeVars0": 2, - "PredTypeVars1": 2, - "PredTypeVars2": 2, - "PredTypeVars": 3, - "foreign_proc_add_typeclass_info": 4, - "ExistTypeClassArgInfos": 2, - "UnivTypeClassArgInfos": 2, - "TypeClassArgInfos": 2, - "list.filter": 1, - "X": 9, - "semidet": 2, - "ExistUnconstrainedVars": 2, - "UnivUnconstrainedVars": 2, - "foreign_proc_add_typeinfo": 4, - "ExistTypeArgInfos": 2, - "UnivTypeArgInfos": 2, - "TypeInfoArgInfos": 2, - "ArgInfos": 2, - "TypeInfoTypes": 2, - "type_info_type": 1, - "UnivTypes": 2, - "ExistTypes": 2, - "OrigArgTypes": 2, - "make_foreign_args": 1, - "tvarset": 3, - "box_policy": 2, - "Constraint": 2, - "MaybeArgName": 7, - "native_if_possible": 2, - "SymName": 4, - "sym_name_to_string_sep": 1, - "TypeVarNames": 2, - "underscore_and_tvar_name": 3, - "string.append_list": 1, - "ConstraintVarName": 3, - "foreign_code_does_not_use_variable": 4, - "TVar": 4, - "varset.search_name": 1, - "TypeVarName": 2, - "C_VarName": 3, - "VarName": 2, - "foreign_code_uses_variable": 1, - "TVarName": 2, - "TVarName0": 1, - "TVarName0.": 1, - "cache_maps": 3, - "case": 4, - "Case0": 2, - "Case": 2, - "MainConsId": 2, - "OtherConsIds": 2, - "PredExistQVars": 2, - "PredKindMap": 3, - "varset.is_empty": 1, - "PredToParentTypeRenaming": 6, - "ParentTVars": 4, - "apply_variable_renaming_to_prog_constraints": 1, - "ParentClassContext": 2, - "ParentUnivConstraints": 3, - "ParentExistConstraints": 3, - "ParentUnivConstrainedTVars": 2, - "ParentUnconstrainedTVars0": 2, - "ParentUnconstrainedTVars1": 2, - "ParentUnconstrainedTVars": 3, - "ParentUnconstrainedUnivTVars": 3, - "ParentUnconstrainedExistTVars": 2, - "NumUnivConstraints": 2, - "ActualUnivConstraints": 2, - "ActualExistQVarTypes": 2, - "prog_type.type_list_to_var_list": 1, - "ActualExistQVars0": 2, - "ActualExistQVars": 2, - "ExtraUnivClassVarsMCAs": 2, - "ExtraUnivClassGoals": 2, - "ExtraUnivClassVars": 2, - "ExtraExistClassVars": 2, - "ExtraExistClassGoals": 2, - "ActualUnconstrainedUnivTypes": 2, - "ExtraUnivTypeInfoVarsMCAs": 2, - "ExtraUnivTypeInfoGoals": 2, - "ExtraUnivTypeInfoVars": 2, - "ActualUnconstrainedExistTypes": 2, - "ExtraExistTypeInfoVarsMCAs": 2, - "ExtraExistTypeInfoGoals": 2, - "ExtraExistTypeInfoVars": 2, - "CalleePredInfo": 2, - "CalleeProcInfo": 3, - "CallArgs0": 3, - "BuiltinState": 2, - "TVarSet0": 2, - "ActualArgTypes0": 3, - "PredTVarSet": 2, - "_PredExistQVars": 1, - "CalleeHeadVars": 2, - "proc_info_get_rtti_varmaps": 1, - "CalleeRttiVarMaps": 2, - "NCallArgs0": 2, - "NPredArgs": 2, - "NExtraArgs": 3, - "OrigPredArgTypes0": 2, - "list.take": 1, - "CalleeExtraHeadVars0": 2, - "OrigPredArgTypes": 2, - "CalleeExtraHeadVars": 2, - "TVarSet": 2, - "PredToParentRenaming": 3, - "OrigParentArgTypes": 2, - "ParentToActualTSubst": 2, - "GetTypeInfoTypes": 2, - "ProgVar": 2, - "TypeInfoType": 2, - "rtti_varmaps_var_info": 1, - "VarInfo": 4, - "type_info_var": 1, - "typeclass_info_var": 1, - "non_rtti_var": 1, - "PredTypeInfoTypes": 2, - "ParentTypeInfoTypes": 2, - "apply_rec_subst_to_type_list": 1, - "ActualTypeInfoTypes": 2, - "Ctxt": 2, - "ExtraArgsConstArgs": 2, - "CallArgs": 2, - "NonLocals1": 2, - "CallGoalExpr": 2, - "CallGoal": 2, - "rot13_concise.": 1, - "state": 3, - "alphabet": 3, - "cycle": 4, - "rot_n": 2, - "Char": 12, - "RotChar": 8, - "char_to_string": 1, - "CharString": 2, - "if": 15, - "sub_string_search": 1, - "Index": 3, - "then": 3, - "NewIndex": 2, - "mod": 1, - "index_det": 1, - "else": 8, - "rot13": 11, - "read_char": 1, - "Res": 8, - "ok": 3, - "print": 3, - "ErrorCode": 4, - "error_message": 1, - "ErrorMessage": 4, - "stderr_stream": 1, - "StdErr": 8, - "nl": 1, - "rot13_ralph.": 1, - "io__state": 4, - "io__read_byte": 1, - "Result": 4, - "io__write_byte": 1, - "ErrNo": 2, - "io__error_message": 2, - "z": 1, - "Rot13": 2, - "<": 14, - "rem": 1, - "rot13_verbose.": 1, - "rot13a/2": 1, - "table": 1, - "alphabetic": 2, - "characters": 1, - "their": 1, - "equivalents": 1, - "fails": 1, - "input": 1, - "not": 7, - "rot13a": 55, - "rot13/2": 1, - "Applies": 1, - "algorithm": 1, - "a": 10, - "character.": 1, - "TmpChar": 2, - "io__read_char": 1, - "io__write_char": 1, - "io__stderr_stream": 1, - "io__write_string": 2, - "io__nl": 1, - "store.": 1, - "typeclass": 1, - "store": 52, - "T": 52, - "where": 8, - "S": 133, - "instance": 4, - "io.state": 3, - "store.init": 2, - "generic_mutvar": 15, - "io_mutvar": 1, - "store_mutvar": 1, - "store.new_mutvar": 1, - "store.copy_mutvar": 1, - "store.get_mutvar": 1, - "store.set_mutvar": 1, - "<=>": 5, - "new_cyclic_mutvar": 2, - "Func": 4, - "Mutvar": 23, - "Create": 1, - "new": 25, - "variable": 1, - "whose": 2, - "initialized": 2, - "with": 5, - "returned": 1, - "from": 1, - "specified": 1, - "function": 3, - "The": 2, - "argument": 6, - "passed": 2, - "mutvar": 6, - "itself": 4, - "has": 4, - "yet": 1, - "been": 1, - "safe": 2, - "because": 1, - "does": 3, - "get": 2, - "so": 3, - "it": 1, - "can": 1, - "t": 5, - "examine": 1, - "uninitialized": 1, - "predicate": 1, - "useful": 1, - "creating": 1, - "self": 1, - "referential": 1, - "values": 1, - "such": 2, - "as": 5, - "circular": 1, - "linked": 1, - "lists": 1, - "For": 1, - "example": 1, - "clist": 2, - "node": 1, - "store.new_cyclic_mutvar": 1, - "generic_ref": 20, - "io_ref": 1, - "store_ref": 1, - "store.new_ref": 1, - "store.ref_functor": 1, - "store.arg_ref": 1, - "ArgT": 4, - "store.new_arg_ref": 3, - "store.set_ref": 1, - "store.set_ref_value": 1, - "store.copy_ref_value": 1, - "store.extract_ref_value": 1, - "Nasty": 1, - "performance": 2, - "hacks": 1, - "WARNING": 1, - "use": 1, - "of": 10, - "these": 1, - "procedures": 2, - "dangerous": 1, - "Use": 1, - "them": 1, - "last": 1, - "resort": 1, - "critical": 1, - "and": 6, - "shows": 1, - "that": 2, - "using": 1, - "versions": 1, - "bottleneck": 1, - "These": 1, - "may": 1, - "vanish": 1, - "future": 1, - "Mercury": 1, - "unsafe_arg_ref": 1, - "same": 2, - "arg_ref": 12, - "unsafe_new_arg_ref": 1, - "new_arg_ref": 1, - "except": 1, - "they": 4, - "doesn": 1, - "check": 1, - "errors": 1, - "don": 3, - "work": 3, - "no_tag": 1, - "types": 3, - "exactly": 2, - "one": 2, - "functor": 2, - "which": 2, - "arguments": 2, - "occupy": 1, - "word": 2, - "other": 1, - "functors.": 1, - "store.unsafe_arg_ref": 1, - "store.unsafe_new_arg_ref": 1, - "implementation": 1, - "require": 1, - "just": 1, - "real": 1, - "representation": 1, - "pragma": 41, - "foreign_type": 10, - "MR_Word": 24, - "can_pass_as_mercury_type": 5, - "equality": 5, - "store_equal": 7, - "comparison": 5, - "store_compare": 7, - "int32": 1, - "Java": 12, - "Erlang": 3, - "attempt": 2, - "two": 2, - "stores": 2, - "comparison_result": 1, - "compare": 1, - "Mutvars": 1, - "references": 1, - "are": 1, - "each": 1, - "represented": 1, - "pointer": 1, - "single": 1, - "on": 1, - "heap": 1, - "private_builtin.ref": 2, - "ref": 2, - "store.do_init": 6, - "foreign_proc": 28, - "_S0": 16, - "will_not_call_mercury": 28, - "will_not_modify_trail": 7, - "new_mutvar": 5, - "Val": 45, - "S0": 23, - "get_mutvar": 5, - "set_mutvar": 5, - "_S": 12, - "copy_mutvar": 1, - "Copy": 2, - "Value": 4, - "store.unsafe_new_uninitialized_mutvar": 1, - "unsafe_new_uninitialized_mutvar": 4, - "MR_offset_incr_hp_msg": 5, - "MR_SIZE_SLOT_SIZE": 10, - "1": 5, - "MR_ALLOC_ID": 5, - "2": 2, - "MR_define_size_slot": 5, - "0": 2, - "object": 21, - "MutVar": 4, - "Store": 5, - "apply": 1, - "Ref": 41, - "foreign_code": 2, - "public": 17, - "class": 4, - "Object": 9, - "referenced": 4, - "obj": 7, - "Specific": 2, - "field": 20, - "or": 2, - "null": 8, - "specify": 2, - "GetFields": 2, - "return": 6, - "fields": 3, - "any": 2, - "particular": 2, - "order": 2, - "really": 2, - "usable": 2, - "System": 1, - "Reflection": 1, - "FieldInfo": 1, - "Constructors": 2, - "init": 8, - "setField": 4, - "Set": 2, - "according": 2, - "given": 2, - "index": 2, - "void": 4, - "GetType": 1, - "reference": 4, - "getValue": 4, - "GetValue": 1, - "Update": 2, - "setValue": 2, - "SetValue": 1, - "static": 1, - "lang": 28, - "getDeclaredFields": 2, - "reflect": 1, - "Field": 5, - "try": 3, - "getClass": 1, - "catch": 11, - "SecurityException": 1, - "se": 1, - "throw": 11, - "RuntimeException": 11, - "Security": 1, - "manager": 1, - "denied": 1, - "access": 3, - "ArrayIndexOutOfBoundsException": 1, - "e": 13, - "No": 1, - "Exception": 3, - "Unable": 3, - "getMessage": 3, - "IllegalAccessException": 2, - "inaccessible": 2, - "IllegalArgumentException": 2, - "mismatch": 2, - "NullPointerException": 2, - "new_ref": 4, - "ets": 3, - "insert": 1, - "copy_ref_value": 1, - "unsafe_ref_value": 6, - "store.unsafe_ref_value": 1, - "lookup": 1, - "ref_functor": 1, - "canonicalize": 1, - "foreign_decl": 1, - "include": 4, - "mercury_type_info": 1, - "h": 4, - "mercury_heap": 1, - "mercury_misc": 1, - "MR_fatal_error": 5, - "mercury_deconstruct": 1, - "MR_arg": 3, - "ArgNum": 7, - "ArgRef": 22, - "may_not_duplicate": 1, - "MR_TypeInfo": 10, - "arg_type_info": 6, - "exp_arg_type_info": 6, - "MR_DuArgLocn": 2, - "arg_locn": 9, - "TypeInfo_for_T": 2, - "TypeInfo_for_ArgT": 2, - "MR_save_transient_registers": 2, - "MR_NONCANON_ABORT": 2, - "number": 2, - "range": 2, - "MR_compare_type_info": 2, - "MR_COMPARE_EQUAL": 2, - "wrong": 2, - "MR_restore_transient_registers": 2, - "NULL": 2, - "MR_arg_bits": 2, - "store.ref/2": 3, - "MR_arg_value": 2, - "C#": 6, - "store.Ref": 8, - "Ref.getValue": 6, - "*arg_ref": 1, - "*arg_locn": 1, - "&": 7, - "&&": 1, - "ValRef": 1, - "Ref.setValue": 3, - "ValRef.getValue": 2, - "*Ptr": 2, - "Ptr": 4, - "MR_strip_tag": 2, - "Arg": 6 - }, - "Monkey": { - "Strict": 1, - "sample": 1, - "class": 1, - "from": 1, - "the": 1, - "documentation": 1, - "Class": 3, - "Game": 1, - "Extends": 2, - "App": 1, - "Function": 2, - "New": 1, - "(": 12, - ")": 12, - "End": 8, - "DrawSpiral": 3, - "clock": 3, - "Local": 3, - "w": 3, - "DeviceWidth/2": 1, - "For": 1, - "i#": 1, - "Until": 1, - "w*1.5": 1, - "Step": 1, - ".2": 1, - "x#": 1, - "y#": 1, - "x": 2, - "+": 5, - "i*Sin": 1, - "i*3": 1, - "y": 2, - "i*Cos": 1, - "i*2": 1, - "DrawRect": 1, - "Next": 1, - "hitbox.Collide": 1, - "event.pos": 1, - "Field": 2, - "updateCount": 3, - "Method": 4, - "OnCreate": 1, - "Print": 2, - "SetUpdateRate": 1, - "OnUpdate": 1, - "OnRender": 1, - "Cls": 1, - "updateCount*1.1": 1, - "Enemy": 1, - "Die": 1, - "Abstract": 1, - "field": 1, - "testField": 1, - "Bool": 2, - "True": 2, - "oss": 1, - "he": 2, - "-": 2, - "killed": 1, - "me": 1, - "b": 6, - "extending": 1, - "with": 1, - "generics": 1, - "VectorNode": 1, - "Node": 1, - "": 1, - "array": 1, - "syntax": 1, - "Global": 14, - "listOfStuff": 3, - "String": 4, - "[": 6, - "]": 6, - "lessStuff": 1, - "oneStuff": 1, - "a": 3, - "comma": 1, - "separated": 1, - "sequence": 1, - "text": 1, - "worstCase": 1, - "worst.List": 1, - "": 1, - "escape": 1, - "characers": 1, - "in": 1, - "strings": 1, - "string3": 1, - "string4": 1, - "string5": 1, - "string6": 1, - "prints": 1, - ".ToUpper": 1, - "Boolean": 1, - "shorttype": 1, - "boolVariable1": 1, - "boolVariable2": 1, - "False": 1, - "preprocessor": 1, - "keywords": 1, - "#If": 1, - "TARGET": 2, - "DoStuff": 1, - "#ElseIf": 1, - "DoOtherStuff": 1, - "#End": 1, - "operators": 1, - "|": 2, - "&": 1, - "c": 1 - }, - "Moocode": { - "@program": 29, - "toy": 3, - "wind": 1, - "this.wound": 8, - "+": 39, - ";": 505, - "player": 2, - "tell": 1, - "(": 600, - "this.name": 4, - ")": 593, - "player.location": 1, - "announce": 1, - "player.name": 1, - ".": 30, - "while": 15, - "read": 1, - "endwhile": 14, - "I": 1, - "M": 1, - "P": 1, - "O": 1, - "R": 1, - "T": 2, - "A": 1, - "N": 1, - "The": 2, - "following": 2, - "code": 43, - "cannot": 1, - "be": 1, - "used": 1, - "as": 28, - "is.": 1, - "You": 1, - "will": 1, - "need": 1, - "to": 1, - "rewrite": 1, - "functionality": 1, - "that": 3, - "is": 6, - "not": 2, - "present": 1, - "in": 43, - "your": 1, - "server/core.": 1, - "most": 1, - "straight": 1, - "-": 98, - "forward": 1, - "target": 7, - "other": 1, - "than": 1, - "Stunt/Improvise": 1, - "a": 12, - "server/core": 1, - "provides": 1, - "map": 5, - "datatype": 1, - "and": 1, - "anonymous": 1, - "objects.": 1, - "Installation": 1, - "my": 1, - "server": 1, - "uses": 1, - "the": 4, - "object": 1, - "numbers": 1, - "#36819": 1, - "MOOcode": 4, - "Experimental": 2, - "Language": 2, - "Package": 2, - "#36820": 1, - "Changelog": 1, - "#36821": 1, - "Dictionary": 1, - "#36822": 1, - "Compiler": 2, - "#38128": 1, - "Syntax": 4, - "Tree": 1, - "Pretty": 1, - "Printer": 1, - "#37644": 1, - "Tokenizer": 2, - "Prototype": 25, - "#37645": 1, - "Parser": 2, - "#37648": 1, - "Symbol": 2, - "#37649": 1, - "Literal": 1, - "#37650": 1, - "Statement": 8, - "#37651": 1, - "Operator": 11, - "#37652": 1, - "Control": 1, - "Flow": 1, - "#37653": 1, - "Assignment": 2, - "#38140": 1, - "Compound": 1, - "#38123": 1, - "Prefix": 1, - "#37654": 1, - "Infix": 1, - "#37655": 1, - "Name": 1, - "#37656": 1, - "Bracket": 1, - "#37657": 1, - "Brace": 1, - "#37658": 1, - "If": 1, - "#38119": 1, - "For": 1, - "#38120": 1, - "Loop": 1, - "#38126": 1, - "Fork": 1, - "#38127": 1, - "Try": 1, - "#37659": 1, - "Invocation": 1, - "#37660": 1, - "Verb": 1, - "Selector": 2, - "#37661": 1, - "Property": 1, - "#38124": 1, - "Error": 1, - "Catching": 1, - "#38122": 1, - "Positional": 1, - "#38141": 1, - "From": 1, - "#37662": 1, - "Utilities": 1, - "#36823": 1, - "Tests": 4, - "#36824": 1, - "#37646": 1, - "#37647": 1, - "parent": 1, - "plastic.tokenizer_proto": 4, - "_": 4, - "_ensure_prototype": 4, - "application/x": 27, - "moocode": 27, - "typeof": 11, - "this": 114, - "OBJ": 3, - "||": 19, - "raise": 23, - "E_INVARG": 3, - "_ensure_instance": 7, - "ANON": 2, - "plastic.compiler": 3, - "_lookup": 2, - "private": 1, - "{": 112, - "name": 9, - "}": 112, - "args": 26, - "if": 90, - "value": 73, - "this.variable_map": 3, - "[": 99, - "]": 102, - "E_RANGE": 17, - "return": 61, - "else": 45, - "tostr": 51, - "random": 3, - "this.reserved_names": 1, - "endif": 93, - "compile": 1, - "source": 32, - "options": 3, - "tokenizer": 6, - "this.plastic.tokenizer_proto": 2, - "create": 16, - "parser": 89, - "this.plastic.parser_proto": 2, - "compiler": 2, - "try": 2, - "statements": 13, - "except": 2, - "ex": 4, - "ANY": 3, - ".tokenizer.row": 1, - "endtry": 2, - "for": 31, - "statement": 29, - "statement.type": 10, - "@source": 3, - "p": 82, - "@compiler": 1, - "endfor": 31, - "ticks_left": 4, - "<": 13, - "seconds_left": 4, - "&&": 39, - "suspend": 4, - "statement.value": 20, - "elseif": 41, - "_generate": 1, - "isa": 21, - "this.plastic.sign_operator_proto": 1, - "|": 9, - "statement.first": 18, - "statement.second": 13, - "this.plastic.control_flow_statement_proto": 1, - "first": 22, - "statement.id": 3, - "this.plastic.if_statement_proto": 1, - "s": 47, - "respond_to": 9, - "@code": 28, - "@this": 13, - "i": 29, - "length": 11, - "LIST": 6, - "this.plastic.for_statement_proto": 1, - "statement.subtype": 2, - "this.plastic.loop_statement_proto": 1, - "prefix": 4, - "this.plastic.fork_statement_proto": 1, - "this.plastic.try_statement_proto": 1, - "x": 9, - "@x": 3, - "join": 6, - "this.plastic.assignment_operator_proto": 1, - "statement.first.type": 1, - "res": 19, - "rest": 3, - "v": 17, - "statement.first.value": 1, - "v.type": 2, - "v.first": 2, - "v.second": 1, - "this.plastic.bracket_operator_proto": 1, - "statement.third": 4, - "this.plastic.brace_operator_proto": 1, - "this.plastic.invocation_operator_proto": 1, - "@a": 2, - "statement.second.type": 2, - "this.plastic.property_selector_operator_proto": 1, - "this.plastic.error_catching_operator_proto": 1, - "second": 18, - "this.plastic.literal_proto": 1, - "toliteral": 1, - "this.plastic.positional_symbol_proto": 1, - "this.plastic.prefix_operator_proto": 3, - "this.plastic.infix_operator_proto": 1, - "this.plastic.traditional_ternary_operator_proto": 1, - "this.plastic.name_proto": 1, - "plastic.printer": 2, - "_print": 4, - "indent": 4, - "result": 7, - "item": 2, - "@result": 2, - "E_PROPNF": 1, - "print": 1, - "instance": 59, - "instance.row": 1, - "instance.column": 1, - "instance.source": 1, - "advance": 16, - "this.token": 21, - "this.source": 3, - "row": 23, - "this.row": 2, - "column": 63, - "this.column": 2, - "eol": 5, - "block_comment": 6, - "inline_comment": 4, - "loop": 14, - "len": 3, - "continue": 16, - "next_two": 4, - "column..column": 1, - "c": 44, - "break": 6, - "re": 1, - "not.": 1, - "Worse": 1, - "*": 4, - "valid": 2, - "error": 6, - "like": 4, - "E_PERM": 4, - "treated": 2, - "literal": 2, - "an": 2, - "invalid": 2, - "E_FOO": 1, - "variable.": 1, - "Any": 1, - "starts": 1, - "with": 1, - "characters": 1, - "*now*": 1, - "but": 1, - "errors": 1, - "are": 1, - "errors.": 1, - "*/": 1, - "<=>": 8, - "z": 4, - "col1": 6, - "mark": 2, - "start": 2, - "1": 13, - "9": 4, - "col2": 4, - "chars": 21, - "index": 2, - "E_": 1, - "token": 24, - "type": 9, - "this.errors": 1, - "col1..col2": 2, - "toobj": 1, - "float": 4, - "0": 1, - "cc": 1, - "e": 1, - "tofloat": 1, - "toint": 1, - "esc": 1, - "q": 1, - "col1..column": 1, - "plastic.parser_proto": 3, - "@options": 1, - "instance.tokenizer": 1, - "instance.symbols": 1, - "plastic": 1, - "this.plastic": 1, - "symbol": 65, - "plastic.name_proto": 1, - "plastic.literal_proto": 1, - "plastic.operator_proto": 10, - "plastic.prefix_operator_proto": 1, - "plastic.error_catching_operator_proto": 3, - "plastic.assignment_operator_proto": 1, - "plastic.compound_assignment_operator_proto": 5, - "plastic.traditional_ternary_operator_proto": 2, - "plastic.infix_operator_proto": 13, - "plastic.sign_operator_proto": 2, - "plastic.bracket_operator_proto": 1, - "plastic.brace_operator_proto": 1, - "plastic.control_flow_statement_proto": 3, - "plastic.if_statement_proto": 1, - "plastic.for_statement_proto": 1, - "plastic.loop_statement_proto": 2, - "plastic.fork_statement_proto": 1, - "plastic.try_statement_proto": 1, - "plastic.from_statement_proto": 2, - "plastic.verb_selector_operator_proto": 2, - "plastic.property_selector_operator_proto": 2, - "plastic.invocation_operator_proto": 1, - "id": 14, - "bp": 3, - "proto": 4, - "nothing": 1, - "this.plastic.symbol_proto": 2, - "this.symbols": 4, - "clone": 2, - "this.token.type": 1, - "this.token.value": 1, - "this.token.eol": 1, - "operator": 1, - "variable": 1, - "identifier": 1, - "keyword": 1, - "Unexpected": 1, - "end": 2, - "Expected": 1, - "t": 1, - "call": 1, - "nud": 2, - "on": 1, - "@definition": 1, - "new": 4, - "pop": 4, - "delete": 1, - "plastic.utilities": 6, - "suspend_if_necessary": 4, - "parse_map_sequence": 1, - "separator": 6, - "infix": 3, - "terminator": 6, - "symbols": 7, - "ids": 6, - "@ids": 2, - "push": 3, - "@symbol": 2, - ".id": 13, - "key": 7, - "expression": 19, - "@map": 1, - "parse_list_sequence": 2, - "list": 3, - "@list": 1, - "validate_scattering_pattern": 1, - "pattern": 5, - "state": 8, - "element": 1, - "element.type": 3, - "element.id": 2, - "element.first.type": 2, - "children": 4, - "node": 3, - "node.value": 1, - "@children": 1, - "match": 1, - "root": 2, - "keys": 3, - "matches": 3, - "stack": 4, - "next": 2, - "top": 5, - "@stack": 2, - "top.": 1, - "@matches": 1, - "plastic.symbol_proto": 2, - "opts": 2, - "instance.id": 1, - "instance.value": 1, - "instance.bp": 1, - "k": 3, - "instance.": 1, - "parents": 3, - "ancestor": 2, - "ancestors": 1, - "property": 1, - "properties": 1, - "this.type": 8, - "this.first": 8, - "import": 8, - "this.second": 7, - "left": 2, - "this.third": 3, - "sequence": 2, - "led": 4, - "this.bp": 2, - "second.type": 2, - "make_identifier": 4, - "first.id": 1, - "parser.symbols": 2, - "reserve_keyword": 2, - "this.plastic.utilities": 1, - "third": 4, - "third.id": 2, - "second.id": 1, - "std": 1, - "reserve_statement": 1, - "types": 7, - ".type": 1, - "target.type": 3, - "target.value": 3, - "target.id": 4, - "temp": 4, - "temp.id": 1, - "temp.first.id": 1, - "temp.first.type": 2, - "temp.second.type": 1, - "temp.first": 2, - "imports": 5, - "import.type": 2, - "@imports": 2, - "parser.plastic.invocation_operator_proto": 1, - "temp.type": 1, - "parser.plastic.name_proto": 2, - "temp.first.value": 1, - "temp.second": 1, - "first.type": 1, - "parser.imports": 2, - "import.id": 2, - "parser.plastic.assignment_operator_proto": 1, - "result.type": 1, - "result.first": 1, - "result.second": 1, - "@verb": 1, - "do_the_work": 3, - "none": 1, - "object_utils": 1, - "this.location": 3, - "room": 1, - "announce_all": 2, - "continue_msg": 1, - "fork": 1, - "endfork": 1, - "wind_down_msg": 1 - }, - "MoonScript": { - "types": 2, - "require": 5, - "util": 2, - "data": 1, - "import": 5, - "reversed": 2, - "unpack": 22, - "from": 4, - "ntype": 16, - "mtype": 3, - "build": 7, - "smart_node": 7, - "is_slice": 2, - "value_is_singular": 3, - "insert": 18, - "table": 2, - "NameProxy": 14, - "LocalName": 2, - "destructure": 1, - "local": 1, - "implicitly_return": 2, - "class": 4, - "Run": 8, - "new": 2, - "(": 54, - "@fn": 1, - ")": 54, - "self": 2, - "[": 79, - "]": 79, - "call": 3, - "state": 2, - "self.fn": 1, - "-": 51, - "transform": 2, - "the": 4, - "last": 6, - "stm": 16, - "is": 2, - "a": 4, - "list": 6, - "of": 1, - "stms": 4, - "will": 1, - "puke": 1, - "on": 1, - "group": 1, - "apply_to_last": 6, - "fn": 3, - "find": 2, - "real": 1, - "exp": 17, - "last_exp_id": 3, - "for": 20, - "i": 15, - "#stms": 1, - "if": 43, - "and": 8, - "break": 1, - "return": 11, - "in": 18, - "ipairs": 3, - "else": 22, - "body": 26, - "sindle": 1, - "expression/statement": 1, - "is_singular": 2, - "false": 2, - "#body": 1, - "true": 4, - "find_assigns": 2, - "out": 9, - "{": 135, - "}": 136, - "thing": 4, - "*body": 2, - "switch": 7, - "when": 12, - "table.insert": 3, - "extract": 1, - "names": 16, - "hoist_declarations": 1, - "assigns": 5, - "hoist": 1, - "plain": 1, - "old": 1, - "*find_assigns": 1, - "name": 31, - "*names": 3, - "type": 5, - "after": 1, - "runs": 1, - "idx": 4, - "while": 3, - "do": 2, - "+": 2, - "expand_elseif_assign": 2, - "ifstm": 5, - "#ifstm": 1, - "case": 13, - "split": 4, - "constructor_name": 2, - "with_continue_listener": 4, - "continue_name": 13, - "nil": 8, - "@listen": 1, - "unless": 6, - "@put_name": 2, - "build.group": 14, - "@splice": 1, - "lines": 2, - "Transformer": 2, - "@transformers": 3, - "@seen_nodes": 3, - "setmetatable": 1, - "__mode": 1, - "scope": 4, - "node": 68, - "...": 10, - "transformer": 3, - "res": 3, - "or": 6, - "bind": 1, - "@transform": 2, - "__call": 1, - "can_transform": 1, - "construct_comprehension": 2, - "inner": 2, - "clauses": 4, - "current_stms": 7, - "_": 10, - "clause": 4, - "t": 10, - "iter": 2, - "elseif": 1, - "cond": 11, - "error": 4, - "..t": 1, - "Statement": 2, - "root_stms": 1, - "@": 1, - "assign": 9, - "values": 10, - "bubble": 1, - "cascading": 2, - "transformed": 2, - "#values": 1, - "value": 7, - "@transform.statement": 2, - "types.cascading": 1, - "ret": 16, - "types.is_value": 1, - "destructure.has_destructure": 2, - "destructure.split_assign": 1, - "continue": 1, - "@send": 1, - "build.assign_one": 11, - "export": 1, - "they": 1, - "are": 1, - "included": 1, - "#node": 3, - "cls": 5, - "cls.name": 1, - "build.assign": 3, - "update": 1, - "op": 2, - "op_final": 3, - "match": 1, - "..op": 1, - "not": 2, - "source": 7, - "stubs": 1, - "real_names": 4, - "build.chain": 7, - "base": 8, - "stub": 4, - "*stubs": 2, - "source_name": 3, - "comprehension": 1, - "action": 4, - "decorated": 1, - "dec": 6, - "wrapped": 4, - "fail": 5, - "..": 1, - "build.declare": 1, - "*stm": 1, - "expand": 1, - "destructure.build_assign": 2, - "build.do": 2, - "apply": 1, - "decorator": 1, - "mutate": 1, - "all": 1, - "bodies": 1, - "body_idx": 3, - "with": 3, - "block": 2, - "scope_name": 5, - "named_assign": 2, - "assign_name": 1, - "@set": 1, - "foreach": 1, - "node.iter": 1, - "destructures": 5, - "node.names": 3, - "proxy": 2, - "next": 1, - "node.body": 9, - "index_name": 3, - "list_name": 6, - "slice_var": 3, - "bounds": 3, - "slice": 7, - "#list": 1, - "table.remove": 2, - "max_tmp_name": 5, - "index": 2, - "conds": 3, - "exp_name": 3, - "convert": 1, - "into": 1, - "statment": 1, - "convert_cond": 2, - "case_exps": 3, - "cond_exp": 5, - "first": 3, - "if_stm": 5, - "*conds": 1, - "if_cond": 4, - "parent_assign": 3, - "parent_val": 1, - "apart": 1, - "properties": 4, - "statements": 4, - "item": 3, - "tuple": 8, - "*item": 1, - "constructor": 7, - "*properties": 1, - "key": 3, - "parent_cls_name": 5, - "base_name": 4, - "self_name": 4, - "cls_name": 1, - "build.fndef": 3, - "args": 3, - "arrow": 1, - "then": 2, - "constructor.arrow": 1, - "real_name": 6, - "#real_name": 1, - "build.table": 2, - "look": 1, - "up": 1, - "object": 1, - "class_lookup": 3, - "cls_mt": 2, - "out_body": 1, - "make": 1, - "sure": 1, - "we": 1, - "don": 1, - "string": 1, - "parens": 2, - "colon_stub": 1, - "super": 1, - "dot": 1, - "varargs": 2, - "arg_list": 1, - "Value": 1 - }, - "NSIS": { - ";": 39, - "bigtest.nsi": 1, - "This": 2, - "script": 1, - "attempts": 1, - "to": 6, - "test": 1, - "most": 1, - "of": 3, - "the": 4, - "functionality": 1, - "NSIS": 3, - "exehead.": 1, - "-": 205, - "ifdef": 2, - "HAVE_UPX": 1, - "packhdr": 1, - "tmp.dat": 1, - "endif": 4, - "NOCOMPRESS": 1, - "SetCompress": 1, - "off": 1, - "Name": 1, - "Caption": 1, - "Icon": 1, - "OutFile": 1, - "SetDateSave": 1, - "on": 6, - "SetDatablockOptimize": 1, - "CRCCheck": 1, - "SilentInstall": 1, - "normal": 1, - "BGGradient": 1, - "FFFFFF": 1, - "InstallColors": 1, - "FF8080": 1, - "XPStyle": 1, - "InstallDir": 1, - "InstallDirRegKey": 1, - "HKLM": 9, - "CheckBitmap": 1, - "LicenseText": 1, - "LicenseData": 1, - "RequestExecutionLevel": 1, - "admin": 1, - "Page": 4, - "license": 1, - "components": 1, - "directory": 3, - "instfiles": 2, - "UninstPage": 2, - "uninstConfirm": 1, - "ifndef": 2, - "NOINSTTYPES": 1, - "only": 1, - "if": 4, - "not": 2, - "defined": 1, - "InstType": 6, - "/NOCUSTOM": 1, - "/COMPONENTSONLYONCUSTOM": 1, - "AutoCloseWindow": 1, - "false": 1, - "ShowInstDetails": 1, - "show": 1, - "Section": 5, - "empty": 1, - "string": 1, - "makes": 1, - "it": 3, - "hidden": 1, - "so": 1, - "would": 1, - "starting": 1, - "with": 1, - "write": 2, - "reg": 1, - "info": 1, - "StrCpy": 2, - "DetailPrint": 1, - "WriteRegStr": 4, - "SOFTWARE": 7, - "NSISTest": 7, - "BigNSISTest": 8, - "uninstall": 2, - "strings": 1, - "SetOutPath": 3, - "INSTDIR": 15, - "File": 3, - "/a": 1, - "CreateDirectory": 1, - "recursively": 1, - "create": 1, - "a": 2, - "for": 2, - "fun.": 1, - "WriteUninstaller": 1, - "Nop": 1, - "fun": 1, - "SectionEnd": 5, - "SectionIn": 4, - "Start": 2, - "MessageBox": 11, - "MB_OK": 8, - "MB_YESNO": 3, - "IDYES": 2, - "MyLabel": 2, - "SectionGroup": 2, - "/e": 1, - "SectionGroup1": 1, - "WriteRegDword": 3, - "xdeadbeef": 1, - "WriteRegBin": 1, - "WriteINIStr": 5, - "Call": 6, - "MyFunctionTest": 1, - "DeleteINIStr": 1, - "DeleteINISec": 1, - "ReadINIStr": 1, - "StrCmp": 1, - "INIDelSuccess": 2, - "ClearErrors": 1, - "ReadRegStr": 1, - "HKCR": 1, - "xyz_cc_does_not_exist": 1, - "IfErrors": 1, - "NoError": 2, - "Goto": 1, - "ErrorYay": 2, - "CSCTest": 1, - "Group2": 1, - "BeginTestSection": 1, - "IfFileExists": 1, - "BranchTest69": 1, - "|": 3, - "MB_ICONQUESTION": 1, - "IDNO": 1, - "NoOverwrite": 1, - "skipped": 2, - "file": 4, - "doesn": 2, - "s": 1, - "icon": 1, - "start": 1, - "minimized": 1, - "and": 1, - "give": 1, - "hotkey": 1, - "(": 5, - "Ctrl": 1, - "+": 2, - "Shift": 1, - "Q": 2, - ")": 5, - "CreateShortCut": 2, - "SW_SHOWMINIMIZED": 1, - "CONTROL": 1, - "SHIFT": 1, - "MyTestVar": 1, - "myfunc": 1, - "test.ini": 2, - "MySectionIni": 1, - "Value1": 1, - "failed": 1, - "TextInSection": 1, - "will": 1, - "example2.": 1, - "Hit": 1, - "next": 1, - "continue.": 1, - "{": 8, - "NSISDIR": 1, - "}": 8, - "Contrib": 1, - "Graphics": 1, - "Icons": 1, - "nsis1": 1, - "uninstall.ico": 1, - "Uninstall": 2, - "Software": 1, - "Microsoft": 1, - "Windows": 3, - "CurrentVersion": 1, - "silent.nsi": 1, - "LogicLib.nsi": 1, - "bt": 1, - "uninst.exe": 1, - "SMPROGRAMS": 2, - "Big": 1, - "Test": 2, - "*.*": 2, - "BiG": 1, - "Would": 1, - "you": 1, - "like": 1, - "remove": 1, - "cpdest": 3, - "MyProjectFamily": 2, - "MyProject": 1, - "Note": 1, - "could": 1, - "be": 1, - "removed": 1, - "IDOK": 1, - "t": 1, - "exist": 1, - "NoErrorMsg": 1, - "x64.nsh": 1, - "A": 1, - "few": 1, - "simple": 1, - "macros": 1, - "handle": 1, - "installations": 1, - "x64": 1, - "machines.": 1, - "RunningX64": 4, - "checks": 1, - "installer": 1, - "is": 2, - "running": 1, - "x64.": 1, - "If": 1, - "EndIf": 1, - "DisableX64FSRedirection": 4, - "disables": 1, - "system": 2, - "redirection.": 2, - "EnableX64FSRedirection": 4, - "enables": 1, - "SYSDIR": 1, - "some.dll": 2, - "#": 3, - "extracts": 2, - "C": 2, - "System32": 1, - "SysWOW64": 1, - "___X64__NSH___": 3, - "define": 4, - "include": 1, - "LogicLib.nsh": 1, - "macro": 3, - "_RunningX64": 1, - "_a": 1, - "_b": 1, - "_t": 2, - "_f": 2, - "insertmacro": 2, - "_LOGICLIB_TEMP": 3, - "System": 4, - "kernel32": 4, - "GetCurrentProcess": 1, - "i.s": 1, - "IsWow64Process": 1, - "*i.s": 1, - "Pop": 1, - "_": 1, - "macroend": 3, - "Wow64EnableWow64FsRedirection": 2, - "i0": 1, - "i1": 1 - }, - "Nemerle": { - "using": 1, - "System.Console": 1, - ";": 2, - "module": 1, - "Program": 1, - "{": 2, - "Main": 1, - "(": 2, - ")": 2, - "void": 1, - "WriteLine": 1, - "}": 2 - }, - "NetLogo": { - "patches": 7, - "-": 28, - "own": 1, - "[": 17, - "living": 6, - ";": 12, - "indicates": 1, - "if": 2, - "the": 6, - "cell": 10, - "is": 1, - "live": 4, - "neighbors": 5, - "counts": 1, - "how": 1, - "many": 1, - "neighboring": 1, - "cells": 2, - "are": 1, - "alive": 1, - "]": 17, - "to": 6, - "setup": 2, - "blank": 1, - "clear": 2, - "all": 5, - "ask": 6, - "death": 5, - "reset": 2, - "ticks": 2, - "end": 6, - "random": 2, - "ifelse": 3, - "float": 1, - "<": 1, - "initial": 1, - "density": 1, - "birth": 4, - "set": 5, - "true": 1, - "pcolor": 2, - "fgcolor": 1, - "false": 1, - "bgcolor": 1, - "go": 1, - "count": 1, - "with": 2, - "Starting": 1, - "a": 1, - "new": 1, - "here": 1, - "ensures": 1, - "that": 1, - "finish": 1, - "executing": 2, - "first": 1, - "before": 1, - "any": 1, - "of": 2, - "them": 1, - "start": 1, - "second": 1, - "ask.": 1, - "This": 1, - "keeps": 1, - "in": 2, - "synch": 1, - "each": 2, - "other": 1, - "so": 1, - "births": 1, - "and": 1, - "deaths": 1, - "at": 1, - "generation": 1, - "happen": 1, - "lockstep.": 1, - "tick": 1, - "draw": 1, - "let": 1, - "erasing": 2, - "patch": 2, - "mouse": 5, - "xcor": 2, - "ycor": 2, - "while": 1, - "down": 1, - "display": 1 - }, - "Nginx": { - "user": 1, - "www": 2, - ";": 35, - "worker_processes": 1, - "error_log": 1, - "logs/error.log": 1, - "pid": 1, - "logs/nginx.pid": 1, - "worker_rlimit_nofile": 1, - "events": 1, - "{": 10, - "worker_connections": 1, - "}": 10, - "http": 3, - "include": 3, - "conf/mime.types": 1, - "/etc/nginx/proxy.conf": 1, - "/etc/nginx/fastcgi.conf": 1, - "index": 1, - "index.html": 1, - "index.htm": 1, - "index.php": 1, - "default_type": 1, - "application/octet": 1, - "-": 2, - "stream": 1, - "log_format": 1, - "main": 5, - "access_log": 4, - "logs/access.log": 1, - "sendfile": 1, - "on": 2, - "tcp_nopush": 1, - "server_names_hash_bucket_size": 1, - "#": 4, - "this": 1, - "seems": 1, - "to": 1, - "be": 1, - "required": 1, - "for": 1, - "some": 1, - "vhosts": 1, - "server": 7, - "php/fastcgi": 1, - "listen": 3, - "server_name": 3, - "domain1.com": 1, - "www.domain1.com": 1, - "logs/domain1.access.log": 1, - "root": 2, - "html": 1, - "location": 4, - ".php": 1, - "fastcgi_pass": 1, - "simple": 2, - "reverse": 1, - "proxy": 1, - "domain2.com": 1, - "www.domain2.com": 1, - "logs/domain2.access.log": 1, - "/": 4, - "(": 1, - "images": 1, - "|": 6, - "javascript": 1, - "js": 1, - "css": 1, - "flash": 1, - "media": 1, - "static": 1, - ")": 1, - "/var/www/virtual/big.server.com/htdocs": 1, - "expires": 1, - "d": 1, - "proxy_pass": 2, - "//127.0.0.1": 1, - "upstream": 1, - "big_server_com": 1, - "weight": 2, - "load": 1, - "balancing": 1, - "big.server.com": 1, - "logs/big.server.access.log": 1, - "//big_server_com": 1 - }, - "Nimrod": { - "echo": 1 - }, - "Nit": { - "#": 196, - "import": 18, - "gtk": 1, - "class": 20, - "CalculatorContext": 7, - "var": 157, - "result": 16, - "nullable": 11, - "Float": 3, - "null": 39, - "last_op": 4, - "Char": 7, - "current": 26, - "after_point": 12, - "Int": 47, - "fun": 57, - "push_op": 2, - "(": 448, - "op": 11, - ")": 448, - "do": 83, - "apply_last_op_if_any": 2, - "if": 89, - "then": 81, - "self.result": 2, - "else": 63, - "store": 1, - "for": 27, - "next": 9, - "end": 117, - "prepare": 1, - "push_digit": 1, - "digit": 1, - "*": 14, - "+": 39, - "digit.to_f": 2, - "pow": 1, - "after_point.to_f": 1, - "self.after_point": 1, - "-": 70, - "self.current": 3, - "switch_to_decimals": 1, - "return": 54, - "/": 4, - "CalculatorGui": 2, - "super": 10, - "GtkCallable": 1, - "win": 2, - "GtkWindow": 2, - "container": 3, - "GtkGrid": 2, - "lbl_disp": 3, - "GtkLabel": 2, - "but_eq": 3, - "GtkButton": 2, - "but_dot": 3, - "context": 9, - "new": 164, - "redef": 30, - "signal": 1, - "sender": 3, - "user_data": 5, - "context.after_point": 1, - "after_point.abs": 1, - "isa": 12, - "is": 25, - "an": 4, - "operation": 1, - "c": 17, - "but_dot.sensitive": 2, - "false": 8, - "context.switch_to_decimals": 4, - "lbl_disp.text": 3, - "true": 6, - "context.push_op": 15, - "s": 68, - "context.result.to_precision_native": 1, - "index": 7, - "i": 20, - "in": 39, - "s.length.times": 1, - "chiffre": 3, - "s.chars": 2, - "[": 106, - "]": 80, - "and": 10, - "s.substring": 2, - "s.length": 2, - "a": 40, - "number": 7, - "n": 16, - "context.push_digit": 25, - "context.current.to_precision_native": 1, - "init": 6, - "init_gtk": 1, - "win.add": 1, - "container.attach": 7, - "digits": 1, - "but": 6, - "GtkButton.with_label": 5, - "n.to_s": 1, - "but.request_size": 2, - "but.signal_connect": 2, - "self": 41, - "%": 3, - "/3": 1, - "operators": 2, - "r": 21, - "op.to_s": 1, - "but_eq.request_size": 1, - "but_eq.signal_connect": 1, - ".": 6, - "but_dot.request_size": 1, - "but_dot.signal_connect": 1, - "#C": 1, - "but_c": 2, - "but_c.request_size": 1, - "but_c.signal_connect": 1, - "win.show_all": 1, - "context.result.to_precision": 6, - "assert": 24, - "print": 135, - "#test": 2, - "multiple": 1, - "decimals": 1, - "button": 1, - ".environ": 3, - "app": 1, - "run_gtk": 1, - "module": 18, - "callback_chimpanze": 1, - "callback_monkey": 2, - "Chimpanze": 2, - "MonkeyActionCallable": 7, - "create": 1, - "monkey": 4, - "Monkey": 4, - "Invoking": 1, - "method": 17, - "which": 4, - "will": 8, - "take": 1, - "some": 1, - "time": 1, - "to": 18, - "compute": 1, - "be": 9, - "back": 1, - "wokeUp": 4, - "with": 2, - "information.": 1, - "Callback": 1, - "defined": 4, - "Interface": 1, - "monkey.wokeUpAction": 1, - "Inherit": 1, - "callback": 11, - "by": 5, - "interface": 3, - "Back": 2, - "of": 31, - "wokeUpAction": 2, - "message": 9, - "Object": 7, - "m": 5, - "m.create": 1, - "{": 14, - "#include": 2, - "": 1, - "": 1, - "typedef": 2, - "struct": 2, - "int": 4, - "id": 2, - ";": 34, - "age": 2, - "}": 14, - "CMonkey": 6, - "toCall": 6, - "MonkeyAction": 5, - "//": 13, - "Method": 1, - "reproduce": 3, - "answer": 1, - "Please": 1, - "note": 1, - "that": 2, - "function": 2, - "pointer": 2, - "only": 6, - "used": 1, - "the": 57, - "void": 3, - "cbMonkey": 2, - "*mkey": 2, - "callbackFunc": 2, - "CMonkey*": 1, - "MonkeyAction*": 1, - "*data": 3, - "sleep": 5, - "mkey": 2, - "data": 6, - "background": 1, - "treatment": 1, - "redirected": 1, - "nit_monkey_callback_func": 2, - "To": 1, - "call": 3, - "your": 1, - "signature": 1, - "must": 1, - "written": 2, - "like": 1, - "this": 2, - "": 1, - "Name": 1, - "_": 1, - "": 1, - "...": 1, - "MonkeyActionCallable_wokeUp": 1, - "abstract": 2, - "extern": 2, - "*monkey": 1, - "malloc": 2, - "sizeof": 2, - "get": 1, - "Must": 1, - "as": 1, - "Nit/C": 1, - "because": 4, - "C": 4, - "inside": 1, - "MonkeyActionCallable.wokeUp": 1, - "Allocating": 1, - "memory": 1, - "keep": 2, - "reference": 2, - "received": 1, - "parameters": 1, - "receiver": 1, - "Message": 1, - "Incrementing": 1, - "counter": 1, - "prevent": 1, - "from": 8, - "releasing": 1, - "MonkeyActionCallable_incr_ref": 1, - "Object_incr_ref": 1, - "Calling": 1, - "passing": 1, - "Receiver": 1, - "Function": 1, - "object": 2, - "Datas": 1, - "recv": 12, - "&": 1, - "circular_list": 1, - "CircularList": 6, - "E": 15, - "Like": 1, - "standard": 1, - "Array": 12, - "or": 9, - "LinkedList": 1, - "Sequence.": 1, - "Sequence": 1, - "The": 11, - "first": 7, - "node": 10, - "list": 10, - "any": 1, - "special": 1, - "case": 1, - "empty": 1, - "handled": 1, - "private": 5, - "CLNode": 6, - "iterator": 1, - "CircularListIterator": 2, - "self.node.item": 2, - "push": 3, - "e": 4, - "new_node": 4, - "self.node": 13, - "not": 12, - "one": 3, - "so": 4, - "attach": 1, - "nodes": 3, - "correctly.": 2, - "old_last_node": 2, - "n.prev": 4, - "new_node.next": 1, - "new_node.prev": 1, - "old_last_node.next": 1, - "pop": 2, - "prev": 3, - "n.item": 1, - "detach": 1, - "prev_prev": 2, - "prev.prev": 1, - "prev_prev.next": 1, - "prev.item": 1, - "unshift": 1, - "Circularity": 2, - "has": 3, - "benefits.": 2, - "self.node.prev": 1, - "shift": 1, - "self.node.next": 2, - "self.pop": 1, - "Move": 1, - "at": 2, - "last": 2, - "position": 2, - "second": 1, - "etc.": 1, - "rotate": 1, - "n.next": 1, - "Sort": 1, - "using": 1, - "Josephus": 1, - "algorithm.": 1, - "josephus": 1, - "step": 2, - "res": 1, - "while": 4, - "self.is_empty": 1, - "count": 2, - "self.rotate": 1, - "kill": 1, - "x": 16, - "self.shift": 1, - "res.add": 1, - "res.node": 1, - "item": 5, - "circular": 3, - "list.": 4, - "Because": 2, - "circularity": 1, - "there": 2, - "always": 1, - "default": 2, - "let": 1, - "it": 1, - "previous": 4, - "Coherence": 1, - "between": 1, - "maintained": 1, - "IndexedIterator": 1, - "pointed.": 1, - "Is": 1, - "empty.": 4, - "iterated.": 1, - "is_ok": 1, - "Empty": 1, - "lists": 2, - "are": 4, - "OK.": 2, - "Pointing": 1, - "again": 1, - "self.index": 3, - "self.list.node": 1, - "list.node": 1, - "self.list": 1, - "i.add_all": 1, - "i.first": 1, - "i.join": 3, - "i.push": 1, - "i.shift": 1, - "i.pop": 1, - "i.unshift": 1, - "i.josephus": 1, - "clock": 4, - "Clock": 10, - "total": 1, - "minutes": 12, - "total_minutes": 2, - "Note": 7, - "read": 1, - "acces": 1, - "public": 1, - "write": 1, - "access": 1, - "private.": 1, - "hour": 3, - "self.total_minutes": 8, - "set": 2, - "hour.": 1, - "<": 11, - "changed": 1, - "accordinlgy": 1, - "self.hours": 1, - "hours": 9, - "updated": 1, - "h": 7, - "arrow": 2, - "interval": 1, - "hour_pos": 2, - "replace": 1, - "updated.": 1, - "to_s": 3, - "reset": 1, - "hours*60": 1, - "self.reset": 1, - "o": 5, - "type": 2, - "test": 1, - "required": 1, - "Thanks": 1, - "adaptive": 1, - "typing": 1, - "no": 1, - "downcast": 1, - "i.e.": 1, - "code": 3, - "safe": 4, - "o.total_minutes": 2, - "c.minutes": 1, - "c.hours": 1, - "c2": 2, - "c2.minutes": 1, - "clock_more": 1, - "now": 1, - "comparable": 1, - "Comparable": 1, - "Comparaison": 1, - "make": 1, - "sense": 1, - "other": 2, - "OTHER": 1, - "Comparable.": 1, - "All": 1, - "methods": 2, - "rely": 1, - "on": 1, - "c1": 1, - "c3": 1, - "c1.minutes": 1, - "curl_http": 1, - "curl": 11, - "MyHttpFetcher": 2, - "CurlCallbacks": 1, - "Curl": 4, - "our_body": 1, - "String": 14, - "self.curl": 1, - "Release": 1, - "destroy": 1, - "self.curl.destroy": 1, - "Header": 1, - "header_callback": 1, - "line": 3, - "We": 1, - "silent": 1, - "testing": 1, - "purposes": 2, - "#if": 1, - "line.has_prefix": 1, - "Body": 1, - "body_callback": 1, - "self.our_body": 1, - "Stream": 1, - "Cf": 1, - "No": 1, - "registered": 1, - "stream_callback": 1, - "buffer": 1, - "size": 8, - "args.length": 3, - "url": 2, - "args": 9, - "request": 1, - "CurlHTTPRequest": 1, - "HTTP": 3, - "Get": 2, - "Request": 3, - "request.verbose": 3, - "getResponse": 3, - "request.execute": 2, - "CurlResponseSuccess": 2, - "CurlResponseFailed": 5, - "Post": 1, - "myHttpFetcher": 2, - "request.delegate": 1, - "postDatas": 5, - "HeaderMap": 3, - "request.datas": 1, - "postResponse": 3, - "file": 1, - "headers": 3, - "request.headers": 1, - "downloadResponse": 3, - "request.download_to_file": 1, - "CurlFileResponseSuccess": 1, - "Program": 1, - "logic": 1, - "curl_mail": 1, - "mail_request": 1, - "CurlMailRequest": 1, - "response": 5, - "mail_request.set_outgoing_server": 1, - "mail_request.from": 1, - "mail_request.to": 1, - "mail_request.cc": 1, - "mail_request.bcc": 1, - "headers_body": 4, - "mail_request.headers_body": 1, - "mail_request.body": 1, - "mail_request.subject": 1, - "mail_request.verbose": 1, - "mail_request.execute": 1, - "CurlMailResponseSuccess": 1, - "draw_operation": 1, - "enum": 3, - "n_chars": 1, - "abs": 2, - "log10f": 1, - "float": 1, - "as_operator": 1, - "b": 10, - "abort": 2, - "override_dispc": 1, - "Bool": 2, - "lines": 7, - "Line": 53, - "P": 51, - "s/2": 23, - "y": 9, - "lines.add": 1, - "q4": 4, - "s/4": 1, - "l": 4, - "lines.append": 1, - "tl": 2, - "tr": 2, - "hack": 3, - "support": 1, - "bug": 1, - "evaluation": 1, - "software": 1, - "draw": 1, - "dispc": 2, - "gap": 1, - "w": 3, - "length": 2, - "*gap": 1, - "map": 8, - ".filled_with": 1, - "ci": 2, - "self.chars": 1, - "local_dispc": 4, - "c.override_dispc": 1, - "c.lines": 1, - "line.o.x": 1, - "ci*size": 1, - "ci*gap": 1, - "line.o.y": 1, - "line.len": 1, - "map.length": 3, - ".length": 1, - "line.step_x": 1, - "line.step_y": 1, - "printn": 10, - "step_x": 1, - "step_y": 1, - "len": 1, - "op_char": 3, - "disp_char": 6, - "disp_size": 6, - "disp_gap": 6, - "gets.to_i": 4, - "gets.chars": 2, - "op_char.as_operator": 1, - "len_a": 2, - "a.n_chars": 1, - "len_b": 2, - "b.n_chars": 1, - "len_res": 3, - "result.n_chars": 1, - "max_len": 5, - "len_a.max": 1, - "len_b.max": 1, - "d": 6, - "line_a": 3, - "a.to_s": 1, - "line_a.draw": 1, - "line_b": 3, - "op_char.to_s": 1, - "b.to_s": 1, - "line_b.draw": 1, - "disp_size*max_len": 1, - "*disp_gap": 1, - "line_res": 3, - "result.to_s": 1, - "line_res.draw": 1, - "drop_privileges": 1, - "privileges": 1, - "opts": 1, - "OptionContext": 1, - "opt_ug": 2, - "OptionUserAndGroup.for_dropping_privileges": 1, - "opt_ug.mandatory": 1, - "opts.add_option": 1, - "opts.parse": 1, - "opts.errors.is_empty": 1, - "opts.errors": 1, - "opts.usage": 1, - "exit": 3, - "user_group": 2, - "opt_ug.value": 1, - "user_group.drop_privileges": 1, - "extern_methods": 1, - "Returns": 1, - "th": 2, - "fibonnaci": 1, - "implemented": 1, - "here": 1, - "optimization": 1, - "fib": 5, - "Int_fib": 3, - "System": 1, - "seconds": 1, - "Return": 4, - "atan2l": 1, - "libmath": 1, - "atan_with": 2, - "atan2": 1, - "This": 1, - "Nit": 2, - "It": 1, - "use": 1, - "local": 1, - "operator": 1, - "all": 3, - "objects": 1, - "String.to_cstring": 2, - "equivalent": 1, - "char*": 1, - "foo": 3, - "long": 2, - "recv_fib": 2, - "recv_plus_fib": 2, - "Int__plus": 1, - "nit_string": 2, - "Int_to_s": 1, - "char": 1, - "*c_string": 1, - "String_to_cstring": 1, - "printf": 1, - "c_string": 1, - "Equivalent": 1, - "pure": 1, - "bar": 2, - "fibonacci": 3, - "Calculate": 1, - "element": 1, - "sequence.": 1, - ".fibonacci": 2, - "usage": 3, - "args.first.to_i.fibonacci": 1, - "html": 1, - "NitHomepage": 2, - "HTMLPage": 1, - "head": 5, - "add": 35, - ".attr": 17, - ".text": 27, - "body": 1, - "open": 14, - ".add_class": 4, - "add_html": 7, - "close": 14, - "page": 1, - "page.write_to": 1, - "stdout": 2, - "page.write_to_file": 1, - "int_stack": 1, - "IntStack": 2, - "Null": 1, - "means": 1, - "stack": 3, - "ISNode": 4, - "Add": 2, - "integer": 2, - "stack.": 2, - "val": 5, - "self.head": 5, - "Remove": 1, - "pushed": 1, - "integer.": 1, - "followings": 2, - "statically": 3, - "head.val": 1, - "head.next": 1, - "sum": 12, - "integers": 1, - "sumall": 1, - "cur": 3, - "condition": 1, - "cur.val": 1, - "cur.next": 1, - "attributes": 1, - "have": 1, - "value": 2, - "free": 2, - "constructor": 2, - "implicitly": 2, - "defined.": 2, - "stored": 1, - "node.": 1, - "any.": 1, - "A": 1, - "l.push": 4, - "l.sumall": 1, - "loop": 2, - "l.pop": 5, - "break": 2, - "following": 1, - "gives": 2, - "alternative": 1, - "opengles2_hello_triangle": 1, - "glesv2": 1, - "egl": 1, - "mnit_linux": 1, - "sdl": 1, - "x11": 1, - "window_width": 2, - "window_height": 2, - "##": 6, - "SDL": 2, - "sdl_display": 1, - "SDLDisplay": 1, - "sdl_wm_info": 1, - "SDLSystemWindowManagerInfo": 1, - "x11_window_handle": 2, - "sdl_wm_info.x11_window_handle": 1, - "X11": 1, - "x_display": 3, - "x_open_default_display": 1, - "EGL": 2, - "egl_display": 6, - "EGLDisplay": 1, - "egl_display.is_valid": 2, - "egl_display.initialize": 1, - "egl_display.error": 3, - "config_chooser": 1, - "EGLConfigChooser": 1, - "#config_chooser.surface_type_egl": 1, - "config_chooser.blue_size": 1, - "config_chooser.green_size": 1, - "config_chooser.red_size": 1, - "#config_chooser.alpha_size": 1, - "#config_chooser.depth_size": 1, - "#config_chooser.stencil_size": 1, - "#config_chooser.sample_buffers": 1, - "config_chooser.close": 1, - "configs": 3, - "config_chooser.choose": 1, - "configs.is_empty": 1, - "config": 4, - "attribs": 1, - "config.attribs": 2, - "configs.first": 1, - "format": 1, - ".native_visual_id": 1, - "surface": 5, - "egl_display.create_window_surface": 1, - "surface.is_ok": 1, - "egl_display.create_context": 1, - "context.is_ok": 1, - "make_current_res": 2, - "egl_display.make_current": 2, - "width": 2, - "surface.attribs": 2, - ".width": 1, - "height": 2, - ".height": 1, - "egl_bind_opengl_es_api": 1, - "GLESv2": 1, - "assert_no_gl_error": 6, - "gl_shader_compiler": 1, - "gl_error.to_s": 1, - "program": 1, - "GLProgram": 1, - "program.is_ok": 1, - "program.info_log": 1, - "vertex_shader": 2, - "GLVertexShader": 1, - "vertex_shader.is_ok": 1, - "vertex_shader.source": 1, - "vertex_shader.compile": 1, - "vertex_shader.is_compiled": 1, - "fragment_shader": 2, - "GLFragmentShader": 1, - "fragment_shader.is_ok": 1, - "fragment_shader.source": 1, - "fragment_shader.compile": 1, - "fragment_shader.is_compiled": 1, - "program.attach_shader": 2, - "program.bind_attrib_location": 1, - "program.link": 1, - "program.is_linked": 1, - "vertices": 2, - "vertex_array": 1, - "VertexArray": 1, - "vertex_array.attrib_pointer": 1, - "gl_clear_color": 1, - "gl_viewport": 1, - "gl_clear_color_buffer": 1, - "program.use": 1, - "vertex_array.enable": 1, - "vertex_array.draw_arrays_triangles": 1, - "egl_display.swap_buffers": 1, - "program.delete": 1, - "vertex_shader.delete": 1, - "fragment_shader.delete": 1, - "EGLSurface.none": 2, - "EGLContext.none": 1, - "egl_display.destroy_context": 1, - "egl_display.destroy_surface": 1, - "sdl_display.destroy": 1, - "print_arguments": 1, - "procedural_array": 1, - "array_sum": 2, - "array_sum_alt": 2, - "a.length": 1, - "socket_client": 1, - "socket": 6, - "Socket.client": 1, - ".to_i": 2, - "s.connected": 1, - "s.write": 1, - "s.close": 1, - "socket_server": 1, - "args.is_empty": 1, - "Socket.server": 1, - "clients": 2, - "Socket": 1, - "max": 2, - "fs": 1, - "SocketObserver": 1, - "fs.readset.set": 2, - "fs.select": 1, - "fs.readset.is_set": 1, - "ns": 1, - "socket.accept": 1, - "ns.write": 1, - "ns.close": 1, - "template": 1, - "###": 2, - "Here": 2, - "definition": 1, - "specific": 1, - "templates": 2, - "TmplComposers": 2, - "Template": 3, - "Short": 2, - "composers": 4, - "TmplComposer": 3, - "Detailled": 1, - "composer_details": 2, - "TmplComposerDetail": 3, - "composer": 1, - "both": 1, - "add_composer": 1, - "firstname": 5, - "lastname": 6, - "birth": 5, - "death": 5, - "composers.add": 1, - "composer_details.add": 1, - "rendering": 3, - "add_all": 2, - "name": 4, - "self.name": 1, - "self.firstname": 1, - "self.lastname": 1, - "self.birth": 1, - "self.death": 1, - "simple": 1, - "f": 1, - "f.add_composer": 3, - "f.write_to": 1, - "websocket_server": 1, - "websocket": 1, - "sock": 1, - "WebSocket": 1, - "msg": 8, - "sock.listener.eof": 2, - "sys.errno.strerror": 1, - "sock.accept": 2, - "sock.connected": 1, - "sys.stdin.poll_in": 1, - "gets": 1, - "sock.close": 1, - "sock.disconnect_client": 1, - "sock.write": 1, - "sock.can_read": 1, - "sock.read_line": 1 - }, - "Nix": { - "{": 8, - "stdenv": 1, - "fetchurl": 2, - "fetchgit": 5, - "openssl": 2, - "zlib": 2, - "pcre": 2, - "libxml2": 2, - "libxslt": 2, - "expat": 2, - "rtmp": 4, - "false": 4, - "fullWebDAV": 3, - "syslog": 4, - "moreheaders": 3, - "...": 1, - "}": 8, - "let": 1, - "version": 2, - ";": 32, - "mainSrc": 2, - "url": 5, - "sha256": 5, - "-": 12, - "ext": 5, - "git": 2, - "//github.com/arut/nginx": 2, - "module.git": 3, - "rev": 4, - "dav": 2, - "https": 2, - "//github.com/yaoweibin/nginx_syslog_patch.git": 1, - "//github.com/agentzh/headers": 1, - "more": 1, - "nginx": 1, - "in": 1, - "stdenv.mkDerivation": 1, - "rec": 1, - "name": 1, - "src": 1, - "buildInputs": 1, - "[": 5, - "]": 5, - "+": 10, - "stdenv.lib.optional": 5, - "patches": 1, - "if": 1, - "then": 1, - "else": 1, - "configureFlags": 1, - "preConfigure": 1, - "export": 1, - "NIX_CFLAGS_COMPILE": 1, - "postInstall": 1, - "mv": 1, - "out/sbin": 1, - "out/bin": 1, - "meta": 1, - "description": 1, - "maintainers": 1, - "stdenv.lib.maintainers.raskin": 1, - "platforms": 1, - "stdenv.lib.platforms.all": 1, - "inherit": 1 - }, - "Nu": { - "SHEBANG#!nush": 1, - "(": 14, - "puts": 1, - ")": 14, - ";": 22, - "main.nu": 1, - "Entry": 1, - "point": 1, - "for": 1, - "a": 1, - "Nu": 1, - "program.": 1, - "Copyright": 1, - "c": 1, - "Tim": 1, - "Burks": 1, - "Neon": 1, - "Design": 1, - "Technology": 1, - "Inc.": 1, - "load": 4, - "basics": 1, - "cocoa": 1, - "definitions": 1, - "menu": 1, - "generation": 1, - "Aaron": 1, - "Hillegass": 1, - "t": 1, - "retain": 1, - "it.": 1, - "NSApplication": 2, - "sharedApplication": 2, - "setDelegate": 1, - "set": 1, - "delegate": 1, - "ApplicationDelegate": 1, - "alloc": 1, - "init": 1, - "this": 1, - "makes": 1, - "the": 3, - "application": 1, - "window": 1, - "take": 1, - "focus": 1, - "when": 1, - "we": 1, - "ve": 1, - "started": 1, - "it": 1, - "from": 1, - "terminal": 1, - "activateIgnoringOtherApps": 1, - "YES": 1, - "run": 1, - "main": 1, - "Cocoa": 1, - "event": 1, - "loop": 1, - "NSApplicationMain": 1, - "nil": 1 - }, - "OCaml": { - "{": 11, - "shared": 1, - "open": 4, - "Eliom_content": 1, - "Html5.D": 1, - "Eliom_parameter": 1, - "}": 13, - "server": 2, - "module": 5, - "Example": 1, - "Eliom_registration.App": 1, - "(": 21, - "struct": 5, - "let": 13, - "application_name": 1, - "end": 5, - ")": 23, - "main": 2, - "Eliom_service.service": 1, - "path": 1, - "[": 13, - "]": 13, - "get_params": 1, - "unit": 5, - "client": 1, - "hello_popup": 2, - "Dom_html.window##alert": 1, - "Js.string": 1, - "_": 2, - "Example.register": 1, - "service": 1, - "fun": 9, - "-": 22, - "Lwt.return": 1, - "html": 1, - "head": 1, - "title": 1, - "pcdata": 4, - "body": 1, - "h1": 1, - ";": 14, - "p": 1, - "h2": 1, - "a": 4, - "a_onclick": 1, - "type": 2, - "Ops": 2, - "@": 6, - "f": 10, - "k": 21, - "|": 15, - "x": 14, - "List": 1, - "rec": 3, - "map": 3, - "l": 8, - "match": 4, - "with": 4, - "hd": 6, - "tl": 6, - "fold": 2, - "acc": 5, - "Option": 1, - "opt": 2, - "None": 5, - "Some": 5, - "Lazy": 1, - "option": 1, - "mutable": 1, - "waiters": 5, - "make": 1, - "push": 4, - "cps": 7, - "value": 3, - "force": 1, - "l.value": 2, - "when": 1, - "l.waiters": 5, - "<->": 3, - "function": 1, - "Base.List.iter": 1, - "l.push": 1, - "<": 1, - "get_state": 1, - "lazy_from_val": 1 - }, - "Objective-C": { - "//": 317, - "#import": 53, - "": 4, - "#if": 41, - "TARGET_OS_IPHONE": 11, - "": 1, - "__IPHONE_OS_VERSION_MAX_ALLOWED": 4, - "__IPHONE_4_0": 6, - "": 1, - "Necessary": 1, - "for": 99, - "background": 1, - "task": 1, - "support": 4, - "#endif": 59, - "": 2, - "@class": 4, - "ASIDataDecompressor": 4, - ";": 2003, - "extern": 6, - "NSString": 127, - "*ASIHTTPRequestVersion": 2, - "#ifndef": 9, - "__IPHONE_3_2": 2, - "#define": 65, - "__MAC_10_5": 2, - "__MAC_10_6": 2, - "typedef": 47, - "enum": 17, - "_ASIAuthenticationState": 1, - "{": 541, - "ASINoAuthenticationNeededYet": 3, - "ASIHTTPAuthenticationNeeded": 1, - "ASIProxyAuthenticationNeeded": 1, - "}": 532, - "ASIAuthenticationState": 5, - "_ASINetworkErrorType": 1, - "ASIConnectionFailureErrorType": 2, - "ASIRequestTimedOutErrorType": 2, - "ASIAuthenticationErrorType": 3, - "ASIRequestCancelledErrorType": 2, - "ASIUnableToCreateRequestErrorType": 2, - "ASIInternalErrorWhileBuildingRequestType": 3, - "ASIInternalErrorWhileApplyingCredentialsType": 1, - "ASIFileManagementError": 2, - "ASITooMuchRedirectionErrorType": 3, - "ASIUnhandledExceptionError": 3, - "ASICompressionError": 1, - "ASINetworkErrorType": 1, - "NSString*": 13, - "const": 28, - "NetworkRequestErrorDomain": 12, - "unsigned": 62, - "long": 71, - "ASIWWANBandwidthThrottleAmount": 2, - "NS_BLOCKS_AVAILABLE": 8, - "void": 253, - "(": 2109, - "ASIBasicBlock": 15, - ")": 2106, - "ASIHeadersBlock": 3, - "NSDictionary": 37, - "*responseHeaders": 2, - "ASISizeBlock": 5, - "size": 12, - "ASIProgressBlock": 5, - "total": 4, - "ASIDataBlock": 3, - "NSData": 28, - "*data": 2, - "@interface": 23, - "ASIHTTPRequest": 31, - "NSOperation": 1, - "": 1, - "The": 15, - "url": 24, - "this": 50, - "operation": 2, - "should": 8, - "include": 1, - "GET": 1, - "params": 1, - "in": 42, - "the": 197, - "query": 1, - "string": 9, - "where": 1, - "appropriate": 4, - "NSURL": 21, - "*url": 2, - "Will": 7, - "always": 2, - "contain": 4, - "original": 2, - "used": 16, - "making": 1, - "request": 113, - "value": 21, - "of": 34, - "can": 20, - "change": 2, - "when": 46, - "a": 78, - "is": 77, - "redirected": 2, - "*originalURL": 2, - "Temporarily": 1, - "stores": 1, - "we": 73, - "are": 15, - "about": 4, - "to": 115, - "redirect": 4, - "to.": 2, - "be": 49, - "nil": 131, - "again": 1, - "do": 5, - "*redirectURL": 2, - "delegate": 29, - "-": 595, - "will": 57, - "notified": 2, - "various": 1, - "changes": 4, - "state": 35, - "via": 5, - "ASIHTTPRequestDelegate": 1, - "protocol": 10, - "id": 170, - "": 1, - "Another": 1, - "that": 23, - "also": 1, - "status": 4, - "and": 44, - "progress": 13, - "updates": 2, - "Generally": 1, - "you": 10, - "won": 3, - "s": 35, - "more": 5, - "likely": 1, - "sessionCookies": 2, - "NSMutableArray": 31, - "*requestCookies": 2, - "populated": 1, - "with": 19, - "cookies": 5, - "NSArray": 27, - "*responseCookies": 3, - "If": 30, - "use": 26, - "useCookiePersistence": 3, - "true": 9, - "network": 4, - "requests": 21, - "present": 3, - "valid": 5, - "from": 18, - "previous": 2, - "BOOL": 137, - "useKeychainPersistence": 4, - "attempt": 3, - "read": 3, - "credentials": 35, - "keychain": 7, - "save": 3, - "them": 10, - "they": 6, - "successfully": 4, - "presented": 2, - "useSessionPersistence": 6, - "reuse": 3, - "duration": 1, - "session": 5, - "until": 2, - "clearSession": 2, - "called": 3, - "allowCompressedResponse": 3, - "inform": 1, - "server": 8, - "accept": 2, - "compressed": 2, - "data": 27, - "automatically": 2, - "decompress": 1, - "gzipped": 7, - "responses.": 1, - "Default": 10, - "true.": 1, - "shouldCompressRequestBody": 6, - "body": 8, - "gzipped.": 1, - "false.": 1, - "You": 1, - "probably": 4, - "need": 10, - "enable": 1, - "feature": 1, - "on": 26, - "your": 2, - "webserver": 1, - "make": 3, - "work.": 1, - "Tested": 1, - "apache": 1, - "only.": 1, - "When": 15, - "downloadDestinationPath": 11, - "set": 24, - "result": 4, - "downloaded": 6, - "file": 14, - "at": 10, - "location": 3, - "not": 29, - "download": 9, - "stored": 9, - "memory": 3, - "*downloadDestinationPath": 2, - "files": 5, - "Once": 2, - "complete": 12, - "decompressed": 3, - "if": 297, - "necessary": 2, - "moved": 2, - "*temporaryFileDownloadPath": 2, - "response": 17, - "shouldWaitToInflateCompressedResponses": 4, - "NO": 30, - "created": 3, - "path": 11, - "containing": 1, - "inflated": 6, - "as": 17, - "it": 28, - "comes": 3, - "*temporaryUncompressedDataDownloadPath": 2, - "Used": 13, - "writing": 2, - "NSOutputStream": 6, - "*fileDownloadOutputStream": 2, - "*inflatedFileDownloadOutputStream": 2, - "fails": 2, - "or": 18, - "completes": 6, - "finished": 3, - "cancelled": 5, - "an": 20, - "error": 75, - "occurs": 1, - "NSError": 51, - "code": 16, - "Connection": 1, - "failure": 1, - "occurred": 1, - "inspect": 1, - "[": 1227, - "userInfo": 15, - "]": 1227, - "objectForKey": 29, - "NSUnderlyingErrorKey": 3, - "information": 5, - "*error": 3, - "Username": 2, - "password": 11, - "authentication": 18, - "*username": 2, - "*password": 2, - "User": 1, - "Agent": 1, - "*userAgentString": 2, - "Domain": 2, - "NTLM": 6, - "*domain": 2, - "proxy": 11, - "*proxyUsername": 2, - "*proxyPassword": 2, - "*proxyDomain": 2, - "Delegate": 2, - "displaying": 2, - "upload": 4, - "usually": 2, - "NSProgressIndicator": 4, - "but": 5, - "supply": 2, - "different": 4, - "object": 36, - "handle": 4, - "yourself": 4, - "": 2, - "uploadProgressDelegate": 8, - "downloadProgressDelegate": 10, - "Whether": 1, - "t": 15, - "want": 5, - "hassle": 1, - "adding": 1, - "authenticating": 2, - "proxies": 3, - "their": 3, - "apps": 1, - "shouldPresentProxyAuthenticationDialog": 2, - "CFHTTPAuthenticationRef": 2, - "proxyAuthentication": 7, - "*proxyCredentials": 2, - "during": 4, - "int": 55, - "proxyAuthenticationRetryCount": 4, - "Authentication": 3, - "scheme": 5, - "Basic": 2, - "Digest": 2, - "*proxyAuthenticationScheme": 2, - "Realm": 1, - "required": 2, - "*proxyAuthenticationRealm": 3, - "HTTP": 9, - "eg": 2, - "OK": 1, - "Not": 2, - "found": 4, - "etc": 1, - "responseStatusCode": 3, - "Description": 1, - "*responseStatusMessage": 3, - "Size": 3, - "contentLength": 6, - "partially": 1, - "content": 5, - "partialDownloadSize": 8, - "POST": 2, - "payload": 1, - "postLength": 6, - "amount": 12, - "totalBytesRead": 4, - "uploaded": 2, - "totalBytesSent": 5, - "Last": 2, - "incrementing": 2, - "lastBytesRead": 3, - "sent": 6, - "lastBytesSent": 3, - "This": 7, - "lock": 19, - "prevents": 1, - "being": 4, - "inopportune": 1, - "moment": 1, - "NSRecursiveLock": 13, - "*cancelledLock": 2, - "Called": 6, - "implemented": 7, - "starts.": 1, - "requestStarted": 3, - "SEL": 19, - "didStartSelector": 2, - "receives": 3, - "headers.": 1, - "didReceiveResponseHeaders": 2, - "didReceiveResponseHeadersSelector": 2, - "Location": 1, - "header": 20, - "shouldRedirect": 3, - "YES": 62, - "then": 1, - "needed": 3, - "restart": 1, - "by": 12, - "calling": 1, - "redirectToURL": 2, - "simply": 1, - "cancel": 5, - "willRedirectSelector": 2, - "successfully.": 1, - "requestFinished": 4, - "didFinishSelector": 2, - "fails.": 1, - "requestFailed": 2, - "didFailSelector": 2, - "data.": 1, - "didReceiveData": 2, - "implement": 1, - "method": 5, - "must": 6, - "populate": 1, - "responseData": 5, - "write": 4, - "didReceiveDataSelector": 2, - "recording": 1, - "something": 1, - "last": 1, - "happened": 1, - "compare": 4, - "current": 2, - "date": 3, - "time": 9, - "out": 7, - "NSDate": 9, - "*lastActivityTime": 2, - "Number": 1, - "seconds": 2, - "wait": 1, - "before": 6, - "timing": 1, - "default": 8, - "NSTimeInterval": 10, - "timeOutSeconds": 3, - "HEAD": 10, - "length": 32, - "starts": 2, - "shouldResetUploadProgress": 3, - "shouldResetDownloadProgress": 3, - "showAccurateProgress": 7, - "preset": 2, - "*mainRequest": 2, - "only": 12, - "update": 6, - "indicator": 4, - "according": 2, - "how": 2, - "much": 2, - "has": 6, - "received": 5, - "so": 15, - "far": 2, - "Also": 1, - "see": 1, - "comments": 1, - "ASINetworkQueue.h": 1, - "ensure": 1, - "incremented": 4, - "once": 3, - "updatedProgress": 3, - "Prevents": 1, - "post": 2, - "built": 2, - "than": 9, - "largely": 1, - "subclasses": 2, - "haveBuiltPostBody": 3, - "internally": 3, - "may": 8, - "reflect": 1, - "internal": 2, - "buffer": 7, - "CFNetwork": 3, - "/": 18, - "PUT": 1, - "operations": 1, - "sizes": 1, - "greater": 1, - "uploadBufferSize": 6, - "timeout": 6, - "unless": 2, - "bytes": 8, - "have": 15, - "been": 1, - "Likely": 1, - "KB": 4, - "iPhone": 3, - "Mac": 2, - "OS": 1, - "X": 1, - "Leopard": 1, - "x": 10, - "Text": 1, - "encoding": 7, - "responses": 5, - "send": 2, - "Content": 1, - "Type": 1, - "charset": 5, - "value.": 1, - "Defaults": 2, - "NSISOLatin1StringEncoding": 2, - "NSStringEncoding": 6, - "defaultResponseEncoding": 4, - "text": 12, - "didn": 3, - "set.": 1, - "responseEncoding": 3, - "Tells": 1, - "delete": 1, - "partial": 2, - "downloads": 1, - "allows": 1, - "existing": 1, - "resume": 2, - "download.": 1, - "NO.": 1, - "allowResumeForFileDownloads": 2, - "Custom": 1, - "user": 6, - "associated": 1, - "*userInfo": 2, - "NSInteger": 56, - "tag": 2, - "Use": 6, - "rather": 4, - "defaults": 2, - "false": 3, - "useHTTPVersionOne": 3, - "get": 4, - "tell": 2, - "main": 8, - "loop": 1, - "stop": 4, - "retry": 3, - "new": 10, - "needsRedirect": 3, - "Incremented": 1, - "every": 3, - "redirects.": 1, - "reaches": 1, - "give": 2, - "up": 4, - "redirectCount": 2, - "check": 1, - "secure": 1, - "certificate": 2, - "self": 500, - "signed": 1, - "certificates": 2, - "development": 1, - "DO": 1, - "NOT": 1, - "USE": 1, - "IN": 1, - "PRODUCTION": 1, - "validatesSecureCertificate": 3, - "SecIdentityRef": 3, - "clientCertificateIdentity": 5, - "*clientCertificates": 2, - "Details": 1, - "could": 1, - "these": 3, - "best": 1, - "local": 1, - "*PACurl": 2, - "See": 5, - "values": 3, - "above.": 1, - "No": 1, - "yet": 1, - "authenticationNeeded": 3, - "ASIHTTPRequests": 1, - "store": 4, - "same": 6, - "asked": 3, - "avoids": 1, - "extra": 1, - "round": 1, - "trip": 1, - "after": 5, - "succeeded": 1, - "which": 1, - "efficient": 1, - "authenticated": 1, - "large": 1, - "bodies": 1, - "slower": 1, - "connections": 3, - "Set": 4, - "explicitly": 2, - "affects": 1, - "cache": 17, - "YES.": 1, - "Credentials": 1, - "never": 1, - "asks": 1, - "For": 2, - "using": 8, - "authenticationScheme": 4, - "*": 311, - "kCFHTTPAuthenticationSchemeBasic": 2, - "very": 2, - "first": 9, - "shouldPresentCredentialsBeforeChallenge": 4, - "hasn": 1, - "doing": 1, - "anything": 1, - "expires": 1, - "persistentConnectionTimeoutSeconds": 4, - "yes": 1, - "keep": 2, - "alive": 1, - "connectionCanBeReused": 4, - "Stores": 1, - "persistent": 5, - "connection": 17, - "currently": 4, - "use.": 1, - "It": 2, - "particular": 2, - "specify": 2, - "expire": 2, - "A": 4, - "host": 9, - "port": 17, - "connection.": 2, - "These": 1, - "determine": 1, - "whether": 1, - "reused": 2, - "subsequent": 2, - "all": 3, - "match": 1, - "An": 2, - "determining": 1, - "available": 1, - "number": 2, - "reference": 1, - "don": 2, - "ve": 7, - "opened": 3, - "one.": 1, - "stream": 13, - "closed": 1, - "+": 195, - "released": 2, - "either": 1, - "another": 1, - "timer": 5, - "fires": 1, - "NSMutableDictionary": 18, - "*connectionInfo": 2, - "automatic": 1, - "redirects": 2, - "standard": 1, - "follow": 1, - "behaviour": 2, - "most": 1, - "browsers": 1, - "shouldUseRFC2616RedirectBehaviour": 2, - "record": 1, - "downloading": 5, - "downloadComplete": 2, - "ID": 1, - "uniquely": 1, - "identifies": 1, - "primarily": 1, - "debugging": 1, - "NSNumber": 11, - "*requestID": 3, - "ASIHTTPRequestRunLoopMode": 2, - "synchronous": 1, - "NSDefaultRunLoopMode": 2, - "other": 3, - "*runLoopMode": 2, - "checks": 1, - "NSTimer": 5, - "*statusTimer": 2, - "setDefaultCache": 2, - "configure": 2, - "": 9, - "downloadCache": 5, - "policy": 7, - "ASICacheDelegate.h": 2, - "possible": 3, - "ASICachePolicy": 4, - "cachePolicy": 3, - "storage": 2, - "ASICacheStoragePolicy": 2, - "cacheStoragePolicy": 2, - "was": 4, - "pulled": 1, - "didUseCachedResponse": 3, - "secondsToCache": 3, - "custom": 2, - "interval": 1, - "expiring": 1, - "&&": 123, - "shouldContinueWhenAppEntersBackground": 3, - "UIBackgroundTaskIdentifier": 1, - "backgroundTask": 7, - "helper": 1, - "inflate": 2, - "*dataDecompressor": 2, - "Controls": 1, - "without": 1, - "responseString": 3, - "All": 2, - "no": 7, - "raw": 3, - "discarded": 1, - "rawResponseData": 4, - "temporaryFileDownloadPath": 2, - "normal": 1, - "temporaryUncompressedDataDownloadPath": 3, - "contents": 1, - "into": 1, - "Setting": 1, - "especially": 1, - "useful": 1, - "users": 1, - "conjunction": 1, - "streaming": 1, - "parser": 3, - "allow": 1, - "passed": 2, - "while": 11, - "still": 2, - "running": 4, - "behind": 1, - "scenes": 1, - "PAC": 7, - "own": 3, - "isPACFileRequest": 3, - "http": 4, - "https": 1, - "webservers": 1, - "*PACFileRequest": 2, - "asynchronously": 1, - "reading": 1, - "URLs": 2, - "NSInputStream": 7, - "*PACFileReadStream": 2, - "storing": 1, - "NSMutableData": 5, - "*PACFileData": 2, - "startSynchronous.": 1, - "Currently": 1, - "detection": 2, - "synchronously": 1, - "isSynchronous": 2, - "//block": 12, - "execute": 4, - "startedBlock": 5, - "headers": 11, - "headersReceivedBlock": 5, - "completionBlock": 5, - "failureBlock": 5, - "bytesReceivedBlock": 8, - "bytesSentBlock": 5, - "downloadSizeIncrementedBlock": 5, - "uploadSizeIncrementedBlock": 5, - "handling": 4, - "dataReceivedBlock": 5, - "authenticationNeededBlock": 5, - "proxyAuthenticationNeededBlock": 5, - "redirections": 1, - "requestRedirectedBlock": 5, - "#pragma": 44, - "mark": 42, - "init": 34, - "dealloc": 13, - "initWithURL": 4, - "newURL": 16, - "requestWithURL": 7, - "usingCache": 5, - "andCachePolicy": 3, - "setStartedBlock": 1, - "aStartedBlock": 1, - "setHeadersReceivedBlock": 1, - "aReceivedBlock": 2, - "setCompletionBlock": 1, - "aCompletionBlock": 1, - "setFailedBlock": 1, - "aFailedBlock": 1, - "setBytesReceivedBlock": 1, - "aBytesReceivedBlock": 1, - "setBytesSentBlock": 1, - "aBytesSentBlock": 1, - "setDownloadSizeIncrementedBlock": 1, - "aDownloadSizeIncrementedBlock": 1, - "setUploadSizeIncrementedBlock": 1, - "anUploadSizeIncrementedBlock": 1, - "setDataReceivedBlock": 1, - "setAuthenticationNeededBlock": 1, - "anAuthenticationBlock": 1, - "setProxyAuthenticationNeededBlock": 1, - "aProxyAuthenticationBlock": 1, - "setRequestRedirectedBlock": 1, - "aRedirectBlock": 1, - "setup": 2, - "addRequestHeader": 5, - "applyCookieHeader": 2, - "buildRequestHeaders": 3, - "applyAuthorizationHeader": 2, - "buildPostBody": 3, - "appendPostData": 3, - "appendPostDataFromFile": 3, - "isResponseCompressed": 3, - "startSynchronous": 2, - "startAsynchronous": 2, - "clearDelegatesAndCancel": 2, - "HEADRequest": 1, - "upload/download": 1, - "updateProgressIndicators": 1, - "updateUploadProgress": 3, - "updateDownloadProgress": 3, - "removeUploadProgressSoFar": 1, - "incrementDownloadSizeBy": 1, - "incrementUploadSizeBy": 3, - "updateProgressIndicator": 4, - "withProgress": 4, - "ofTotal": 4, - "performSelector": 7, - "selector": 12, - "onTarget": 7, - "target": 5, - "withObject": 10, - "callerToRetain": 7, - "caller": 1, - "talking": 1, - "delegates": 2, - "requestReceivedResponseHeaders": 1, - "newHeaders": 1, - "failWithError": 11, - "theError": 6, - "retryUsingNewConnection": 1, - "parsing": 2, - "readResponseHeaders": 2, - "parseStringEncodingFromHeaders": 2, - "parseMimeType": 2, - "**": 27, - "mimeType": 2, - "andResponseEncoding": 2, - "stringEncoding": 1, - "fromContentType": 2, - "contentType": 1, - "stuff": 1, - "applyCredentials": 1, - "newCredentials": 16, - "applyProxyCredentials": 2, - "findCredentials": 1, - "findProxyCredentials": 2, - "retryUsingSuppliedCredentials": 1, - "cancelAuthentication": 1, - "attemptToApplyCredentialsAndResume": 1, - "attemptToApplyProxyCredentialsAndResume": 1, - "showProxyAuthenticationDialog": 1, - "showAuthenticationDialog": 1, - "addBasicAuthenticationHeaderWithUsername": 2, - "theUsername": 1, - "andPassword": 2, - "thePassword": 1, - "handlers": 1, - "handleNetworkEvent": 2, - "CFStreamEventType": 2, - "type": 5, - "handleBytesAvailable": 1, - "handleStreamComplete": 1, - "handleStreamError": 1, - "cleanup": 1, - "markAsFinished": 4, - "removeTemporaryDownloadFile": 1, - "removeTemporaryUncompressedDownloadFile": 1, - "removeTemporaryUploadFile": 1, - "removeTemporaryCompressedUploadFile": 1, - "removeFileAtPath": 1, - "err": 8, - "connectionID": 1, - "expirePersistentConnections": 1, - "defaultTimeOutSeconds": 3, - "setDefaultTimeOutSeconds": 1, - "newTimeOutSeconds": 1, - "client": 1, - "setClientCertificateIdentity": 1, - "anIdentity": 1, - "sessionProxyCredentialsStore": 1, - "sessionCredentialsStore": 1, - "storeProxyAuthenticationCredentialsInSessionStore": 1, - "storeAuthenticationCredentialsInSessionStore": 2, - "removeProxyAuthenticationCredentialsFromSessionStore": 1, - "removeAuthenticationCredentialsFromSessionStore": 3, - "findSessionProxyAuthenticationCredentials": 1, - "findSessionAuthenticationCredentials": 2, - "saveCredentialsToKeychain": 3, - "saveCredentials": 4, - "NSURLCredential": 8, - "forHost": 2, - "realm": 14, - "forProxy": 2, - "savedCredentialsForHost": 1, - "savedCredentialsForProxy": 1, - "removeCredentialsForHost": 1, - "removeCredentialsForProxy": 1, - "setSessionCookies": 1, - "newSessionCookies": 1, - "addSessionCookie": 1, - "NSHTTPCookie": 1, - "newCookie": 1, - "agent": 2, - "defaultUserAgentString": 1, - "setDefaultUserAgentString": 1, - "mime": 1, - "mimeTypeForFileAtPath": 1, - "bandwidth": 3, - "measurement": 1, - "throttling": 1, - "maxBandwidthPerSecond": 2, - "setMaxBandwidthPerSecond": 1, - "averageBandwidthUsedPerSecond": 2, - "performThrottling": 2, - "isBandwidthThrottled": 2, - "incrementBandwidthUsedInLastSecond": 1, - "setShouldThrottleBandwidthForWWAN": 1, - "throttle": 1, - "throttleBandwidthForWWANUsingLimit": 1, - "limit": 1, - "reachability": 1, - "isNetworkReachableViaWWAN": 1, - "queue": 12, - "NSOperationQueue": 4, - "sharedQueue": 4, - "defaultCache": 3, - "maxUploadReadLength": 1, - "activity": 1, - "isNetworkInUse": 1, - "setShouldUpdateNetworkActivityIndicator": 1, - "shouldUpdate": 1, - "showNetworkActivityIndicator": 1, - "hideNetworkActivityIndicator": 1, - "miscellany": 1, - "base64forData": 1, - "theData": 1, - "expiryDateForRequest": 1, - "maxAge": 2, - "dateFromRFC1123String": 1, - "isMultitaskingSupported": 2, - "threading": 1, - "NSThread": 4, - "threadForRequest": 3, - "@property": 150, - "retain": 73, - "*proxyHost": 1, - "assign": 84, - "proxyPort": 2, - "*proxyType": 1, - "setter": 2, - "setURL": 3, - "nonatomic": 40, - "readonly": 19, - "*authenticationRealm": 2, - "*requestHeaders": 1, - "*requestCredentials": 1, - "*rawResponseData": 1, - "*requestMethod": 1, - "*postBody": 1, - "*postBodyFilePath": 1, - "shouldStreamPostDataFromDisk": 4, - "didCreateTemporaryPostDataFile": 1, - "*authenticationScheme": 1, - "shouldPresentAuthenticationDialog": 1, - "authenticationRetryCount": 2, - "haveBuiltRequestHeaders": 1, - "inProgress": 4, - "numberOfTimesToRetryOnTimeout": 2, - "retryCount": 3, - "shouldAttemptPersistentConnection": 2, - "@end": 37, - "": 1, - "#else": 8, - "": 1, - "@": 258, - "static": 102, - "*defaultUserAgent": 1, - "*ASIHTTPRequestRunLoopMode": 1, - "CFOptionFlags": 1, - "kNetworkEvents": 1, - "kCFStreamEventHasBytesAvailable": 1, - "|": 13, - "kCFStreamEventEndEncountered": 1, - "kCFStreamEventErrorOccurred": 1, - "*sessionCredentialsStore": 1, - "*sessionProxyCredentialsStore": 1, - "*sessionCredentialsLock": 1, - "*sessionCookies": 1, - "RedirectionLimit": 1, - "ReadStreamClientCallBack": 1, - "CFReadStreamRef": 5, - "readStream": 5, - "*clientCallBackInfo": 1, - "ASIHTTPRequest*": 1, - "clientCallBackInfo": 1, - "*progressLock": 1, - "*ASIRequestCancelledError": 1, - "*ASIRequestTimedOutError": 1, - "*ASIAuthenticationError": 1, - "*ASIUnableToCreateRequestError": 1, - "*ASITooMuchRedirectionError": 1, - "*bandwidthUsageTracker": 1, - "nextConnectionNumberToCreate": 1, - "*persistentConnectionsPool": 1, - "*connectionsLock": 1, - "nextRequestID": 1, - "bandwidthUsedInLastSecond": 1, - "*bandwidthMeasurementDate": 1, - "NSLock": 2, - "*bandwidthThrottlingLock": 1, - "shouldThrottleBandwidthForWWANOnly": 1, - "*sessionCookiesLock": 1, - "*delegateAuthenticationLock": 1, - "*throttleWakeUpTime": 1, - "runningRequestCount": 1, - "shouldUpdateNetworkActivityIndicator": 1, - "*networkThread": 1, - "*sharedQueue": 1, - "cancelLoad": 3, - "destroyReadStream": 3, - "scheduleReadStream": 1, - "unscheduleReadStream": 1, - "willAskDelegateForCredentials": 1, - "willAskDelegateForProxyCredentials": 1, - "askDelegateForProxyCredentials": 1, - "askDelegateForCredentials": 1, - "failAuthentication": 1, - "measureBandwidthUsage": 1, - "recordBandwidthUsage": 1, - "startRequest": 3, - "updateStatus": 2, - "checkRequestStatus": 2, - "reportFailure": 3, - "reportFinished": 1, - "performRedirect": 1, - "shouldTimeOut": 2, - "willRedirect": 1, - "willAskDelegateToConfirmRedirect": 1, - "performInvocation": 2, - "NSInvocation": 4, - "invocation": 4, - "releasingObject": 2, - "objectToRelease": 1, - "hideNetworkActivityIndicatorAfterDelay": 1, - "hideNetworkActivityIndicatorIfNeeeded": 1, - "runRequests": 1, - "configureProxies": 2, - "fetchPACFile": 1, - "finishedDownloadingPACFile": 1, - "theRequest": 1, - "runPACScript": 1, - "script": 1, - "timeOutPACRead": 1, - "useDataFromCache": 2, - "updatePartialDownloadSize": 1, - "registerForNetworkReachabilityNotifications": 1, - "unsubscribeFromNetworkReachabilityNotifications": 1, - "reachabilityChanged": 1, - "NSNotification": 2, - "note": 1, - "performBlockOnMainThread": 2, - "block": 18, - "releaseBlocksOnMainThread": 4, - "releaseBlocks": 3, - "blocks": 16, - "callBlock": 1, - "*postBodyWriteStream": 1, - "*postBodyReadStream": 1, - "*compressedPostBody": 1, - "*compressedPostBodyFilePath": 1, - "willRetryRequest": 1, - "*readStream": 1, - "readStreamIsScheduled": 1, - "setSynchronous": 2, - "@implementation": 13, - "initialize": 1, - "class": 30, - "persistentConnectionsPool": 3, - "alloc": 47, - "connectionsLock": 3, - "progressLock": 1, - "bandwidthThrottlingLock": 1, - "sessionCookiesLock": 1, - "sessionCredentialsLock": 1, - "delegateAuthenticationLock": 1, - "bandwidthUsageTracker": 1, - "initWithCapacity": 2, - "ASIRequestTimedOutError": 1, - "initWithDomain": 5, - "dictionaryWithObjectsAndKeys": 10, - "NSLocalizedDescriptionKey": 10, - "ASIAuthenticationError": 1, - "ASIRequestCancelledError": 2, - "ASIUnableToCreateRequestError": 3, - "ASITooMuchRedirectionError": 1, - "setMaxConcurrentOperationCount": 1, - "setRequestMethod": 3, - "setRunLoopMode": 2, - "setShouldAttemptPersistentConnection": 2, - "setPersistentConnectionTimeoutSeconds": 2, - "setShouldPresentCredentialsBeforeChallenge": 1, - "setShouldRedirect": 1, - "setShowAccurateProgress": 1, - "setShouldResetDownloadProgress": 1, - "setShouldResetUploadProgress": 1, - "setAllowCompressedResponse": 1, - "setShouldWaitToInflateCompressedResponses": 1, - "setDefaultResponseEncoding": 1, - "setShouldPresentProxyAuthenticationDialog": 1, - "setTimeOutSeconds": 1, - "setUseSessionPersistence": 1, - "setUseCookiePersistence": 1, - "setValidatesSecureCertificate": 1, - "setRequestCookies": 2, - "autorelease": 21, - "setDidStartSelector": 1, - "@selector": 28, - "setDidReceiveResponseHeadersSelector": 1, - "setWillRedirectSelector": 1, - "willRedirectToURL": 1, - "setDidFinishSelector": 1, - "setDidFailSelector": 1, - "setDidReceiveDataSelector": 1, - "setCancelledLock": 1, - "setDownloadCache": 3, - "return": 165, - "ASIUseDefaultCachePolicy": 1, - "*request": 1, - "setCachePolicy": 1, - "setAuthenticationNeeded": 2, - "requestAuthentication": 7, - "CFRelease": 19, - "redirectURL": 1, - "release": 66, - "statusTimer": 3, - "invalidate": 2, - "postBody": 11, - "compressedPostBody": 4, - "requestHeaders": 6, - "requestCookies": 1, - "fileDownloadOutputStream": 1, - "inflatedFileDownloadOutputStream": 1, - "username": 8, - "domain": 2, - "authenticationRealm": 4, - "requestCredentials": 1, - "proxyHost": 2, - "proxyType": 1, - "proxyUsername": 3, - "proxyPassword": 3, - "proxyDomain": 1, - "proxyAuthenticationRealm": 2, - "proxyAuthenticationScheme": 2, - "proxyCredentials": 1, - "originalURL": 1, - "lastActivityTime": 1, - "responseCookies": 1, - "responseHeaders": 5, - "requestMethod": 13, - "cancelledLock": 37, - "postBodyFilePath": 7, - "compressedPostBodyFilePath": 4, - "postBodyWriteStream": 7, - "postBodyReadStream": 2, - "PACurl": 1, - "clientCertificates": 2, - "responseStatusMessage": 1, - "connectionInfo": 13, - "requestID": 2, - "dataDecompressor": 1, - "userAgentString": 1, - "super": 25, - "*blocks": 1, - "array": 84, - "addObject": 16, - "performSelectorOnMainThread": 2, - "waitUntilDone": 4, - "isMainThread": 2, - "Blocks": 1, - "exits": 1, - "setRequestHeaders": 2, - "dictionaryWithCapacity": 2, - "setObject": 9, - "forKey": 9, - "Are": 1, - "submitting": 1, - "disk": 1, - "were": 5, - "close": 5, - "setPostBodyWriteStream": 2, - "*path": 1, - "setCompressedPostBodyFilePath": 1, - "NSTemporaryDirectory": 2, - "stringByAppendingPathComponent": 2, - "NSProcessInfo": 2, - "processInfo": 2, - "globallyUniqueString": 2, - "*err": 3, - "ASIDataCompressor": 2, - "compressDataFromFile": 1, - "toFile": 1, - "&": 36, - "else": 35, - "setPostLength": 3, - "NSFileManager": 1, - "attributesOfItemAtPath": 1, - "fileSize": 1, - "errorWithDomain": 6, - "stringWithFormat": 6, - "Otherwise": 2, - "*compressedBody": 1, - "compressData": 1, - "setCompressedPostBody": 1, - "compressedBody": 1, - "isEqualToString": 13, - "||": 42, - "setHaveBuiltPostBody": 1, - "setupPostBody": 3, - "setPostBodyFilePath": 1, - "setDidCreateTemporaryPostDataFile": 1, - "initToFileAtPath": 1, - "append": 1, - "open": 2, - "setPostBody": 1, - "maxLength": 3, - "appendData": 2, - "*stream": 1, - "initWithFileAtPath": 1, - "NSUInteger": 93, - "bytesRead": 5, - "hasBytesAvailable": 1, - "char": 19, - "*256": 1, - "sizeof": 13, - "break": 13, - "dataWithBytes": 1, - "*m": 1, - "unlock": 20, - "m": 1, - "newRequestMethod": 3, - "*u": 1, - "u": 4, - "isEqual": 4, - "NULL": 152, - "setRedirectURL": 2, - "d": 11, - "setDelegate": 4, - "newDelegate": 6, - "q": 2, - "setQueue": 2, - "newQueue": 3, - "cancelOnRequestThread": 2, - "DEBUG_REQUEST_STATUS": 4, - "ASI_DEBUG_LOG": 11, - "isCancelled": 6, - "setComplete": 3, - "CFRetain": 4, - "willChangeValueForKey": 1, - "didChangeValueForKey": 1, - "onThread": 2, - "Clear": 3, - "setDownloadProgressDelegate": 2, - "setUploadProgressDelegate": 2, - "initWithBytes": 1, - "*encoding": 1, - "rangeOfString": 1, - ".location": 1, - "NSNotFound": 1, - "uncompressData": 1, - "DEBUG_THROTTLING": 2, - "setInProgress": 3, - "NSRunLoop": 2, - "currentRunLoop": 2, - "runMode": 1, - "runLoopMode": 2, - "beforeDate": 1, - "distantFuture": 1, - "start": 3, - "addOperation": 1, - "concurrency": 1, - "isConcurrent": 1, - "isFinished": 1, - "isExecuting": 1, - "logic": 1, - "@try": 1, - "UIBackgroundTaskInvalid": 3, - "UIApplication": 2, - "sharedApplication": 2, - "beginBackgroundTaskWithExpirationHandler": 1, - "dispatch_async": 1, - "dispatch_get_main_queue": 1, - "endBackgroundTask": 1, - "generated": 3, - "ASINetworkQueue": 4, - "already.": 1, - "proceed.": 1, - "setDidUseCachedResponse": 1, - "Must": 1, - "call": 8, - "create": 1, - "needs": 1, - "mainRequest": 9, - "ll": 6, - "already": 4, - "CFHTTPMessageRef": 3, - "Create": 1, - "request.": 1, - "CFHTTPMessageCreateRequest": 1, - "kCFAllocatorDefault": 3, - "CFStringRef": 1, - "CFURLRef": 1, - "kCFHTTPVersion1_0": 1, - "kCFHTTPVersion1_1": 1, - "//If": 2, - "let": 8, - "generate": 1, - "its": 9, - "Even": 1, - "chance": 2, - "add": 5, - "ASIS3Request": 1, - "does": 3, - "process": 1, - "@catch": 1, - "NSException": 19, - "*exception": 1, - "*underlyingError": 1, - "exception": 3, - "name": 7, - "reason": 1, - "NSLocalizedFailureReasonErrorKey": 1, - "underlyingError": 1, - "@finally": 1, - "Do": 3, - "DEBUG_HTTP_AUTHENTICATION": 4, - "*credentials": 1, - "auth": 2, - "basic": 3, - "any": 3, - "cached": 2, - "key": 32, - "challenge": 1, - "apply": 2, - "like": 1, - "CFHTTPMessageApplyCredentialDictionary": 2, - "CFDictionaryRef": 1, - "setAuthenticationScheme": 1, - "happens": 4, - "%": 30, - "re": 9, - "retrying": 1, - "our": 6, - "measure": 1, - "throttled": 1, - "setPostBodyReadStream": 2, - "ASIInputStream": 2, - "inputStreamWithData": 2, - "setReadStream": 2, - "NSMakeCollectable": 3, - "CFReadStreamCreateForStreamedHTTPRequest": 1, - "CFReadStreamCreateForHTTPRequest": 1, - "lowercaseString": 1, - "*sslProperties": 2, - "initWithObjectsAndKeys": 1, - "numberWithBool": 3, - "kCFStreamSSLAllowsExpiredCertificates": 1, - "kCFStreamSSLAllowsAnyRoot": 1, - "kCFStreamSSLValidatesCertificateChain": 1, - "kCFNull": 1, - "kCFStreamSSLPeerName": 1, - "CFReadStreamSetProperty": 1, - "kCFStreamPropertySSLSettings": 1, - "CFTypeRef": 1, - "sslProperties": 2, - "*certificates": 1, - "arrayWithCapacity": 2, - "count": 99, - "*oldStream": 1, - "redirecting": 2, - "connecting": 2, - "intValue": 4, - "setConnectionInfo": 2, - "Check": 1, - "expired": 1, - "timeIntervalSinceNow": 1, - "<": 56, - "DEBUG_PERSISTENT_CONNECTIONS": 3, - "removeObject": 2, - "//Some": 1, - "previously": 1, - "there": 1, - "one": 1, - "We": 7, - "just": 4, - "old": 5, - "//lists.apple.com/archives/Macnetworkprog/2006/Mar/msg00119.html": 1, - "oldStream": 4, - "streamSuccessfullyOpened": 1, - "setConnectionCanBeReused": 2, - "Record": 1, - "started": 1, - "nothing": 2, - "setLastActivityTime": 1, - "setStatusTimer": 2, - "timerWithTimeInterval": 1, - "repeats": 1, - "addTimer": 1, - "forMode": 1, - "here": 2, - "safely": 1, - "***Black": 1, - "magic": 1, - "warning***": 1, - "reliable": 1, - "way": 1, - "track": 1, - "strong": 4, - "slow.": 1, - "secondsSinceLastActivity": 1, - "*1.5": 1, - "updating": 1, - "checking": 1, - "told": 1, - "us": 2, - "auto": 2, - "resuming": 1, - "Range": 1, - "take": 1, - "account": 1, - "perhaps": 1, - "setTotalBytesSent": 1, - "CFReadStreamCopyProperty": 2, - "kCFStreamPropertyHTTPRequestBytesWrittenCount": 1, - "unsignedLongLongValue": 1, - "middle": 1, - "said": 1, - "might": 4, - "MaxValue": 2, - "UIProgressView": 2, - "double": 3, - "max": 7, - "setMaxValue": 2, - "examined": 1, - "since": 1, - "authenticate": 1, - "bytesReadSoFar": 3, - "setUpdatedProgress": 1, - "didReceiveBytes": 2, - "totalSize": 2, - "setLastBytesRead": 1, - "pass": 5, - "pointer": 2, - "directly": 1, - "itself": 1, - "setArgument": 4, - "atIndex": 6, - "argumentNumber": 1, - "callback": 3, - "NSMethodSignature": 1, - "*cbSignature": 1, - "methodSignatureForSelector": 1, - "*cbInvocation": 1, - "invocationWithMethodSignature": 1, - "cbSignature": 1, - "cbInvocation": 5, - "setSelector": 1, - "setTarget": 1, - "forget": 2, - "know": 3, - "removeObjectForKey": 1, - "dateWithTimeIntervalSinceNow": 1, - "ignore": 1, - "ASIFallbackToCacheIfLoadFailsCachePolicy": 2, - "canUseCachedDataForRequest": 1, - "setError": 2, - "*failedRequest": 1, - "compatible": 1, - "fail": 1, - "failedRequest": 4, - "message": 2, - "kCFStreamPropertyHTTPResponseHeader": 1, - "Make": 1, - "sure": 1, - "tells": 1, - "keepAliveHeader": 2, - "NSScanner": 2, - "*scanner": 1, - "scannerWithString": 1, - "scanner": 5, - "scanString": 2, - "intoString": 3, - "scanInt": 2, - "scanUpToString": 1, - "what": 3, - "hard": 1, - "throw": 1, - "away.": 1, - "*userAgentHeader": 1, - "*acceptHeader": 1, - "userAgentHeader": 2, - "acceptHeader": 2, - "setHaveBuiltRequestHeaders": 1, - "Force": 2, - "rebuild": 2, - "cookie": 1, - "incase": 1, - "got": 1, - "some": 1, - "remain": 1, - "ones": 3, - "URLWithString": 1, - "valueForKey": 2, - "relativeToURL": 1, - "absoluteURL": 1, - "setNeedsRedirect": 1, - "means": 1, - "manually": 1, - "added": 5, - "those": 1, - "global": 1, - "But": 1, - "safest": 1, - "option": 1, - "responseCode": 1, - "Handle": 1, - "*mimeType": 1, - "setResponseEncoding": 2, - "saveProxyCredentialsToKeychain": 1, - "*authenticationCredentials": 2, - "credentialWithUser": 2, - "kCFHTTPAuthenticationUsername": 2, - "kCFHTTPAuthenticationPassword": 2, - "persistence": 2, - "NSURLCredentialPersistencePermanent": 2, - "authenticationCredentials": 4, - "setProxyAuthenticationRetryCount": 1, - "Apply": 1, - "whatever": 1, - "ok": 1, - "CFMutableDictionaryRef": 1, - "*sessionCredentials": 1, - "dictionary": 64, - "sessionCredentials": 6, - "setRequestCredentials": 1, - "*newCredentials": 1, - "*user": 1, - "*pass": 1, - "*theRequest": 1, - "try": 3, - "connect": 1, - "website": 1, - "kCFHTTPAuthenticationSchemeNTLM": 1, - "Ok": 1, - "extract": 1, - "NSArray*": 1, - "ntlmComponents": 1, - "componentsSeparatedByString": 1, - "AUTH": 6, - "Request": 6, - "parent": 1, - "properties": 1, - "ASIAuthenticationDialog": 2, - "had": 1, - "Foo": 2, - "NSObject": 5, - "": 2, - "FooAppDelegate": 2, - "": 1, - "@private": 2, - "NSWindow": 2, - "*window": 2, - "IBOutlet": 1, - "@synthesize": 7, - "window": 1, - "applicationDidFinishLaunching": 1, - "aNotification": 1, - "argc": 1, - "*argv": 1, - "NSLog": 4, - "#include": 18, - "": 1, - "": 2, - "": 2, - "": 1, - "": 1, - "#ifdef": 10, - "__OBJC__": 4, - "": 2, - "": 2, - "": 2, - "": 1, - "": 2, - "": 1, - "__cplusplus": 2, - "NSINTEGER_DEFINED": 3, - "defined": 16, - "__LP64__": 4, - "NS_BUILD_32_LIKE_64": 3, - "NSIntegerMin": 3, - "LONG_MIN": 3, - "NSIntegerMax": 4, - "LONG_MAX": 3, - "NSUIntegerMax": 7, - "ULONG_MAX": 3, - "INT_MIN": 3, - "INT_MAX": 2, - "UINT_MAX": 3, - "_JSONKIT_H_": 3, - "__GNUC__": 14, - "__APPLE_CC__": 2, - "JK_DEPRECATED_ATTRIBUTE": 6, - "__attribute__": 3, - "deprecated": 1, - "JSONKIT_VERSION_MAJOR": 1, - "JSONKIT_VERSION_MINOR": 1, - "JKFlags": 5, - "JKParseOptionNone": 1, - "JKParseOptionStrict": 1, - "JKParseOptionComments": 2, - "<<": 16, - "JKParseOptionUnicodeNewlines": 2, - "JKParseOptionLooseUnicode": 2, - "JKParseOptionPermitTextAfterValidJSON": 2, - "JKParseOptionValidFlags": 1, - "JKParseOptionFlags": 12, - "JKSerializeOptionNone": 3, - "JKSerializeOptionPretty": 2, - "JKSerializeOptionEscapeUnicode": 2, - "JKSerializeOptionEscapeForwardSlashes": 2, - "JKSerializeOptionValidFlags": 1, - "JKSerializeOptionFlags": 16, - "struct": 20, - "JKParseState": 18, - "Opaque": 1, - "private": 1, - "type.": 3, - "JSONDecoder": 2, - "*parseState": 16, - "decoder": 1, - "decoderWithParseOptions": 1, - "parseOptionFlags": 11, - "initWithParseOptions": 1, - "clearCache": 1, - "parseUTF8String": 2, - "size_t": 23, - "Deprecated": 4, - "JSONKit": 11, - "v1.4.": 4, - "objectWithUTF8String": 4, - "instead.": 4, - "parseJSONData": 2, - "jsonData": 6, - "objectWithData": 7, - "mutableObjectWithUTF8String": 2, - "mutableObjectWithData": 2, - "////////////": 4, - "Deserializing": 1, - "methods": 2, - "JSONKitDeserializing": 2, - "objectFromJSONString": 1, - "objectFromJSONStringWithParseOptions": 2, - "mutableObjectFromJSONString": 1, - "mutableObjectFromJSONStringWithParseOptions": 2, - "objectFromJSONData": 1, - "objectFromJSONDataWithParseOptions": 2, - "mutableObjectFromJSONData": 1, - "mutableObjectFromJSONDataWithParseOptions": 2, - "Serializing": 1, - "JSONKitSerializing": 3, - "JSONData": 3, - "Invokes": 2, - "JSONDataWithOptions": 8, - "includeQuotes": 6, - "serializeOptions": 14, - "JSONString": 3, - "JSONStringWithOptions": 8, - "serializeUnsupportedClassesUsingDelegate": 4, - "__BLOCKS__": 1, - "JSONKitSerializingBlockAdditions": 2, - "serializeUnsupportedClassesUsingBlock": 4, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "//#include": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "//#import": 1, - "": 1, - "": 1, - "": 1, - "__has_feature": 3, - "JK_ENABLE_CF_TRANSFER_OWNERSHIP_CALLBACKS": 2, - "#warning": 1, - "As": 1, - "v1.4": 1, - "longer": 2, - "required.": 1, - "option.": 1, - "__OBJC_GC__": 1, - "#error": 6, - "Objective": 2, - "C": 6, - "Garbage": 1, - "Collection": 1, - "objc_arc": 1, - "Automatic": 1, - "Reference": 1, - "Counting": 1, - "ARC": 1, - "xffffffffU": 1, - "fffffff": 1, - "ULLONG_MAX": 1, - "xffffffffffffffffULL": 1, - "LLONG_MIN": 1, - "fffffffffffffffLL": 1, - "LL": 1, - "requires": 4, - "types": 2, - "bits": 1, - "respectively.": 1, - "WORD_BIT": 1, - "LONG_BIT": 1, - "bit": 1, - "architectures.": 1, - "SIZE_MAX": 1, - "SSIZE_MAX": 1, - "JK_HASH_INIT": 1, - "UL": 138, - "JK_FAST_TRAILING_BYTES": 2, - "JK_CACHE_SLOTS_BITS": 2, - "JK_CACHE_SLOTS": 1, - "JK_CACHE_PROBES": 1, - "JK_INIT_CACHE_AGE": 1, - "JK_TOKENBUFFER_SIZE": 1, - "JK_STACK_OBJS": 1, - "JK_JSONBUFFER_SIZE": 1, - "JK_UTF8BUFFER_SIZE": 1, - "JK_ENCODE_CACHE_SLOTS": 1, - "JK_ATTRIBUTES": 15, - "attr": 3, - "...": 11, - "##__VA_ARGS__": 7, - "JK_EXPECTED": 4, - "cond": 12, - "expect": 3, - "__builtin_expect": 1, - "JK_EXPECT_T": 22, - "U": 2, - "JK_EXPECT_F": 14, - "JK_PREFETCH": 2, - "ptr": 3, - "__builtin_prefetch": 1, - "JK_STATIC_INLINE": 10, - "__inline__": 1, - "always_inline": 1, - "JK_ALIGNED": 1, - "arg": 11, - "aligned": 1, - "JK_UNUSED_ARG": 2, - "unused": 3, - "JK_WARN_UNUSED": 1, - "warn_unused_result": 9, - "JK_WARN_UNUSED_CONST": 1, - "JK_WARN_UNUSED_PURE": 1, - "pure": 2, - "JK_WARN_UNUSED_SENTINEL": 1, - "sentinel": 1, - "JK_NONNULL_ARGS": 1, - "nonnull": 6, - "JK_WARN_UNUSED_NONNULL_ARGS": 1, - "JK_WARN_UNUSED_CONST_NONNULL_ARGS": 1, - "JK_WARN_UNUSED_PURE_NONNULL_ARGS": 1, - "__GNUC_MINOR__": 3, - "JK_ALLOC_SIZE_NON_NULL_ARGS_WARN_UNUSED": 2, - "nn": 4, - "alloc_size": 1, - "JKArray": 14, - "JKDictionaryEnumerator": 4, - "JKDictionary": 22, - "JSONNumberStateStart": 1, - "JSONNumberStateFinished": 1, - "JSONNumberStateError": 1, - "JSONNumberStateWholeNumberStart": 1, - "JSONNumberStateWholeNumberMinus": 1, - "JSONNumberStateWholeNumberZero": 1, - "JSONNumberStateWholeNumber": 1, - "JSONNumberStatePeriod": 1, - "JSONNumberStateFractionalNumberStart": 1, - "JSONNumberStateFractionalNumber": 1, - "JSONNumberStateExponentStart": 1, - "JSONNumberStateExponentPlusMinus": 1, - "JSONNumberStateExponent": 1, - "JSONStringStateStart": 1, - "JSONStringStateParsing": 1, - "JSONStringStateFinished": 1, - "JSONStringStateError": 1, - "JSONStringStateEscape": 1, - "JSONStringStateEscapedUnicode1": 1, - "JSONStringStateEscapedUnicode2": 1, - "JSONStringStateEscapedUnicode3": 1, - "JSONStringStateEscapedUnicode4": 1, - "JSONStringStateEscapedUnicodeSurrogate1": 1, - "JSONStringStateEscapedUnicodeSurrogate2": 1, - "JSONStringStateEscapedUnicodeSurrogate3": 1, - "JSONStringStateEscapedUnicodeSurrogate4": 1, - "JSONStringStateEscapedNeedEscapeForSurrogate": 1, - "JSONStringStateEscapedNeedEscapedUForSurrogate": 1, - "JKParseAcceptValue": 2, - "JKParseAcceptComma": 2, - "JKParseAcceptEnd": 3, - "JKParseAcceptValueOrEnd": 1, - "JKParseAcceptCommaOrEnd": 1, - "JKClassUnknown": 1, - "JKClassString": 1, - "JKClassNumber": 1, - "JKClassArray": 1, - "JKClassDictionary": 1, - "JKClassNull": 1, - "JKManagedBufferOnStack": 1, - "JKManagedBufferOnHeap": 1, - "JKManagedBufferLocationMask": 1, - "JKManagedBufferLocationShift": 1, - "JKManagedBufferMustFree": 1, - "JKManagedBufferFlags": 1, - "JKObjectStackOnStack": 1, - "JKObjectStackOnHeap": 1, - "JKObjectStackLocationMask": 1, - "JKObjectStackLocationShift": 1, - "JKObjectStackMustFree": 1, - "JKObjectStackFlags": 1, - "JKTokenTypeInvalid": 1, - "JKTokenTypeNumber": 1, - "JKTokenTypeString": 1, - "JKTokenTypeObjectBegin": 1, - "JKTokenTypeObjectEnd": 1, - "JKTokenTypeArrayBegin": 1, - "JKTokenTypeArrayEnd": 1, - "JKTokenTypeSeparator": 1, - "JKTokenTypeComma": 1, - "JKTokenTypeTrue": 1, - "JKTokenTypeFalse": 1, - "JKTokenTypeNull": 1, - "JKTokenTypeWhiteSpace": 1, - "JKTokenType": 2, - "JKValueTypeNone": 1, - "JKValueTypeString": 1, - "JKValueTypeLongLong": 1, - "JKValueTypeUnsignedLongLong": 1, - "JKValueTypeDouble": 1, - "JKValueType": 1, - "JKEncodeOptionAsData": 1, - "JKEncodeOptionAsString": 1, - "JKEncodeOptionAsTypeMask": 1, - "JKEncodeOptionCollectionObj": 1, - "JKEncodeOptionStringObj": 1, - "JKEncodeOptionStringObjTrimQuotes": 1, - "JKEncodeOptionType": 2, - "JKHash": 4, - "JKTokenCacheItem": 2, - "JKTokenCache": 2, - "JKTokenValue": 2, - "JKParseToken": 2, - "JKPtrRange": 2, - "JKObjectStack": 5, - "JKBuffer": 2, - "JKConstBuffer": 2, - "JKConstPtrRange": 2, - "JKRange": 2, - "JKManagedBuffer": 5, - "JKFastClassLookup": 2, - "JKEncodeCache": 6, - "JKEncodeState": 11, - "JKObjCImpCache": 2, - "JKHashTableEntry": 21, - "serializeObject": 1, - "options": 6, - "optionFlags": 1, - "encodeOption": 2, - "JKSERIALIZER_BLOCKS_PROTO": 1, - "releaseState": 1, - "keyHash": 21, - "uint32_t": 1, - "UTF32": 11, - "uint16_t": 1, - "UTF16": 1, - "uint8_t": 1, - "UTF8": 2, - "conversionOK": 1, - "sourceExhausted": 1, - "targetExhausted": 1, - "sourceIllegal": 1, - "ConversionResult": 1, - "UNI_REPLACEMENT_CHAR": 1, - "FFFD": 1, - "UNI_MAX_BMP": 1, - "FFFF": 3, - "UNI_MAX_UTF16": 1, - "UNI_MAX_UTF32": 1, - "FFFFFFF": 1, - "UNI_MAX_LEGAL_UTF32": 1, - "UNI_SUR_HIGH_START": 1, - "xD800": 1, - "UNI_SUR_HIGH_END": 1, - "xDBFF": 1, - "UNI_SUR_LOW_START": 1, - "xDC00": 1, - "UNI_SUR_LOW_END": 1, - "xDFFF": 1, - "trailingBytesForUTF8": 1, - "offsetsFromUTF8": 1, - "E2080UL": 1, - "C82080UL": 1, - "xFA082080UL": 1, - "firstByteMark": 1, - "xC0": 1, - "xE0": 1, - "xF0": 1, - "xF8": 1, - "xFC": 1, - "JK_AT_STRING_PTR": 1, - "stringBuffer.bytes.ptr": 2, - "JK_END_STRING_PTR": 1, - "stringBuffer.bytes.length": 1, - "*_JKArrayCreate": 2, - "*objects": 5, - "mutableCollection": 7, - "_JKArrayInsertObjectAtIndex": 3, - "*array": 9, - "newObject": 12, - "objectIndex": 48, - "_JKArrayReplaceObjectAtIndexWithObject": 3, - "_JKArrayRemoveObjectAtIndex": 3, - "_JKDictionaryCapacityForCount": 4, - "*_JKDictionaryCreate": 2, - "*keys": 2, - "*keyHashes": 2, - "*_JKDictionaryHashEntry": 2, - "*dictionary": 13, - "_JKDictionaryCapacity": 3, - "_JKDictionaryResizeIfNeccessary": 3, - "_JKDictionaryRemoveObjectWithEntry": 3, - "*entry": 4, - "_JKDictionaryAddObject": 4, - "*_JKDictionaryHashTableEntryForKey": 2, - "aKey": 13, - "_JSONDecoderCleanup": 1, - "*decoder": 1, - "_NSStringObjectFromJSONString": 1, - "*jsonString": 1, - "**error": 1, - "jk_managedBuffer_release": 1, - "*managedBuffer": 3, - "jk_managedBuffer_setToStackBuffer": 1, - "*ptr": 2, - "*jk_managedBuffer_resize": 1, - "newSize": 1, - "jk_objectStack_release": 1, - "*objectStack": 3, - "jk_objectStack_setToStackBuffer": 1, - "**objects": 1, - "**keys": 1, - "CFHashCode": 1, - "*cfHashes": 1, - "jk_objectStack_resize": 1, - "newCount": 1, - "jk_error": 1, - "*format": 7, - "jk_parse_string": 1, - "jk_parse_number": 1, - "jk_parse_is_newline": 1, - "*atCharacterPtr": 1, - "jk_parse_skip_newline": 1, - "jk_parse_skip_whitespace": 1, - "jk_parse_next_token": 1, - "jk_error_parse_accept_or3": 1, - "*or1String": 1, - "*or2String": 1, - "*or3String": 1, - "*jk_create_dictionary": 1, - "startingObjectIndex": 1, - "*jk_parse_dictionary": 1, - "*jk_parse_array": 1, - "*jk_object_for_token": 1, - "*jk_cachedObjects": 1, - "jk_cache_age": 1, - "jk_set_parsed_token": 1, - "advanceBy": 1, - "jk_encode_error": 1, - "*encodeState": 9, - "jk_encode_printf": 1, - "*cacheSlot": 4, - "startingAtIndex": 4, - "jk_encode_write": 1, - "jk_encode_writePrettyPrintWhiteSpace": 1, - "jk_encode_write1slow": 2, - "ssize_t": 2, - "depthChange": 2, - "jk_encode_write1fast": 2, - "jk_encode_writen": 1, - "jk_encode_object_hash": 1, - "*objectPtr": 2, - "jk_encode_updateCache": 1, - "jk_encode_add_atom_to_buffer": 1, - "jk_encode_write1": 1, - "es": 3, - "dc": 3, - "f": 8, - "_jk_encode_prettyPrint": 1, - "jk_min": 1, - "b": 4, - "jk_max": 3, - "jk_calculateHash": 1, - "currentHash": 1, - "c": 7, - "Class": 3, - "_JKArrayClass": 5, - "_JKArrayInstanceSize": 4, - "_JKDictionaryClass": 5, - "_JKDictionaryInstanceSize": 4, - "_jk_NSNumberClass": 2, - "NSNumberAllocImp": 2, - "_jk_NSNumberAllocImp": 2, - "NSNumberInitWithUnsignedLongLongImp": 2, - "_jk_NSNumberInitWithUnsignedLongLongImp": 2, - "jk_collectionClassLoadTimeInitialization": 2, - "constructor": 1, - "NSAutoreleasePool": 2, - "*pool": 1, - "Though": 1, - "technically": 1, - "run": 1, - "environment": 1, - "load": 1, - "initialization": 1, - "less": 1, - "ideal.": 1, - "objc_getClass": 2, - "class_getInstanceSize": 2, - "methodForSelector": 2, - "temp_NSNumber": 4, - "initWithUnsignedLongLong": 1, - "pool": 2, - "": 2, - "NSMutableCopying": 2, - "NSFastEnumeration": 2, - "capacity": 51, - "mutations": 20, - "allocWithZone": 4, - "NSZone": 4, - "zone": 8, - "raise": 18, - "NSInvalidArgumentException": 6, - "format": 18, - "NSStringFromClass": 18, - "NSStringFromSelector": 16, - "_cmd": 16, - "NSCParameterAssert": 19, - "objects": 58, - "calloc": 5, - "Directly": 2, - "allocate": 2, - "instance": 2, - "calloc.": 2, - "isa": 2, - "malloc": 1, - "memcpy": 2, - "<=>": 15, - "*newObjects": 1, - "newObjects": 2, - "realloc": 1, - "NSMallocException": 2, - "memset": 1, - "memmove": 2, - "atObject": 12, - "free": 4, - "NSParameterAssert": 15, - "getObjects": 2, - "objectsPtr": 3, - "range": 8, - "NSRange": 1, - "NSMaxRange": 4, - "NSRangeException": 6, - "range.location": 2, - "range.length": 1, - "objectAtIndex": 8, - "countByEnumeratingWithState": 2, - "NSFastEnumerationState": 2, - "stackbuf": 8, - "len": 6, - "mutationsPtr": 2, - "itemsPtr": 2, - "enumeratedCount": 8, - "insertObject": 1, - "anObject": 16, - "NSInternalInconsistencyException": 4, - "__clang_analyzer__": 3, - "Stupid": 2, - "clang": 3, - "analyzer...": 2, - "Issue": 2, - "#19.": 2, - "removeObjectAtIndex": 1, - "replaceObjectAtIndex": 1, - "copyWithZone": 1, - "initWithObjects": 2, - "mutableCopyWithZone": 1, - "NSEnumerator": 2, - "collection": 11, - "nextObject": 6, - "initWithJKDictionary": 3, - "initDictionary": 4, - "allObjects": 2, - "arrayWithObjects": 1, - "_JKDictionaryHashEntry": 2, - "returnObject": 3, - "entry": 41, - ".key": 11, - "jk_dictionaryCapacities": 4, - "bottom": 6, - "top": 8, - "mid": 5, - "tableSize": 2, - "lround": 1, - "floor": 1, - "capacityForCount": 4, - "resize": 3, - "oldCapacity": 2, - "NS_BLOCK_ASSERTIONS": 1, - "oldCount": 2, - "*oldEntry": 1, - "idx": 33, - "oldEntry": 9, - ".keyHash": 2, - ".object": 7, - "keys": 5, - "keyHashes": 2, - "atEntry": 45, - "removeIdx": 3, - "entryIdx": 4, - "*atEntry": 3, - "addKeyEntry": 2, - "addIdx": 5, - "*atAddEntry": 1, - "atAddEntry": 6, - "keyEntry": 4, - "CFEqual": 2, - "CFHash": 1, - "table": 7, - "would": 2, - "now.": 1, - "entryForKey": 3, - "_JKDictionaryHashTableEntryForKey": 1, - "andKeys": 1, - "arrayIdx": 5, - "keyEnumerator": 1, - "copy": 4, - "Why": 1, - "earth": 1, - "complain": 1, - "doesn": 1, - "Internal": 2, - "Unable": 2, - "temporary": 2, - "buffer.": 2, - "line": 2, - "#": 2, - "ld": 2, - "Invalid": 1, - "character": 1, - "x.": 1, - "n": 7, - "r": 6, - "F": 1, - ".": 2, - "e": 1, - "Unexpected": 1, - "token": 1, - "wanted": 1, - "Expected": 3, - "MainMenuViewController": 2, - "TTTableViewController": 1, - "///////////////////////////////////////////////////////////////////////////////////////////////////": 24, - "initWithNibName": 3, - "nibNameOrNil": 1, - "bundle": 3, - "NSBundle": 1, - "nibBundleOrNil": 1, - "self.title": 2, - "//self.variableHeightRows": 1, - "self.tableViewStyle": 1, - "UITableViewStyleGrouped": 1, - "self.dataSource": 1, - "TTSectionedDataSource": 1, - "dataSourceWithObjects": 1, - "TTTableTextItem": 48, - "itemWithText": 48, - "URL": 48, - "PlaygroundViewController": 2, - "UIViewController": 2, - "UIScrollView*": 1, - "_scrollView": 9, - "": 1, - "CGFloat": 44, - "kFramePadding": 7, - "kElementSpacing": 3, - "kGroupSpacing": 5, - "addHeader": 5, - "yOffset": 42, - "UILabel*": 2, - "label": 6, - "UILabel": 2, - "initWithFrame": 12, - "CGRectZero": 5, - "label.text": 2, - "label.font": 3, - "UIFont": 3, - "systemFontOfSize": 2, - "label.numberOfLines": 2, - "CGRect": 41, - "frame": 38, - "label.frame": 4, - "frame.origin.x": 3, - "frame.origin.y": 16, - "frame.size.width": 4, - "frame.size.height": 15, - "sizeWithFont": 2, - "constrainedToSize": 2, - "CGSizeMake": 3, - ".height": 4, - "addSubview": 8, - "label.frame.size.height": 2, - "TT_RELEASE_SAFELY": 12, - "addText": 5, - "loadView": 4, - "UIScrollView": 1, - "self.view.bounds": 2, - "_scrollView.autoresizingMask": 1, - "UIViewAutoresizingFlexibleWidth": 4, - "UIViewAutoresizingFlexibleHeight": 1, - "self.view": 4, - "NSLocalizedString": 9, - "UIButton*": 1, - "button": 5, - "UIButton": 1, - "buttonWithType": 1, - "UIButtonTypeRoundedRect": 1, - "setTitle": 1, - "forState": 4, - "UIControlStateNormal": 1, - "addTarget": 1, - "action": 1, - "debugTestAction": 2, - "forControlEvents": 1, - "UIControlEventTouchUpInside": 1, - "sizeToFit": 1, - "button.frame": 2, - "TTCurrentLocale": 2, - "displayNameForKey": 1, - "NSLocaleIdentifier": 1, - "localeIdentifier": 1, - "TTPathForBundleResource": 1, - "TTPathForDocumentsResource": 1, - "dataUsingEncoding": 2, - "NSUTF8StringEncoding": 2, - "md5Hash": 1, - "setContentSize": 1, - "viewDidUnload": 2, - "viewDidAppear": 2, - "animated": 27, - "flashScrollIndicators": 1, - "DEBUG": 1, - "TTDPRINTMETHODNAME": 1, - "TTDPRINT": 9, - "TTMAXLOGLEVEL": 1, - "TTDERROR": 1, - "TTLOGLEVEL_ERROR": 1, - "TTDWARNING": 1, - "TTLOGLEVEL_WARNING": 1, - "TTDINFO": 1, - "TTLOGLEVEL_INFO": 1, - "TTDCONDITIONLOG": 3, - "rand": 1, - "TTDASSERT": 2, - "SBJsonParser": 2, - "maxDepth": 2, - "NSData*": 1, - "objectWithString": 5, - "repr": 5, - "jsonText": 1, - "NSError**": 2, - "self.maxDepth": 2, - "Methods": 1, - "self.error": 3, - "SBJsonStreamParserAccumulator": 2, - "*accumulator": 1, - "SBJsonStreamParserAdapter": 2, - "*adapter": 1, - "adapter.delegate": 1, - "accumulator": 1, - "SBJsonStreamParser": 2, - "*parser": 1, - "parser.maxDepth": 1, - "parser.delegate": 1, - "adapter": 1, - "switch": 3, - "parse": 1, - "case": 8, - "SBJsonStreamParserComplete": 1, - "accumulator.value": 1, - "SBJsonStreamParserWaitingForData": 1, - "SBJsonStreamParserError": 1, - "parser.error": 1, - "error_": 2, - "tmp": 3, - "*ui": 1, - "*error_": 1, - "ui": 1, - "StyleViewController": 2, - "TTViewController": 1, - "TTStyle*": 7, - "_style": 8, - "_styleHighlight": 6, - "_styleDisabled": 6, - "_styleSelected": 6, - "_styleType": 6, - "kTextStyleType": 2, - "kViewStyleType": 2, - "kImageStyleType": 2, - "initWithStyleName": 1, - "styleType": 3, - "TTStyleSheet": 4, - "globalStyleSheet": 4, - "styleWithSelector": 4, - "UIControlStateHighlighted": 1, - "UIControlStateDisabled": 1, - "UIControlStateSelected": 1, - "addTextView": 5, - "title": 2, - "style": 29, - "textFrame": 3, - "TTRectInset": 3, - "UIEdgeInsetsMake": 3, - "StyleView*": 2, - "StyleView": 2, - "text.text": 1, - "TTStyleContext*": 1, - "context": 4, - "TTStyleContext": 1, - "context.frame": 1, - "context.delegate": 1, - "context.font": 1, - "systemFontSize": 1, - "CGSize": 5, - "addToSize": 1, - "CGSizeZero": 1, - "size.width": 1, - "size.height": 1, - "textFrame.size": 1, - "text.frame": 1, - "text.style": 1, - "text.backgroundColor": 1, - "UIColor": 3, - "colorWithRed": 3, - "green": 3, - "blue": 3, - "alpha": 3, - "text.autoresizingMask": 1, - "UIViewAutoresizingFlexibleBottomMargin": 3, - "addView": 5, - "viewFrame": 4, - "view": 11, - "view.style": 2, - "view.backgroundColor": 2, - "view.autoresizingMask": 2, - "addImageView": 5, - "TTImageView*": 1, - "TTImageView": 1, - "view.urlPath": 1, - "imageFrame": 2, - "view.frame": 2, - "imageFrame.size": 1, - "view.image.size": 1, - "TUITableViewStylePlain": 2, - "regular": 1, - "TUITableViewStyleGrouped": 1, - "grouped": 1, - "stick": 1, - "scroll": 3, - "TUITableViewStyle": 4, - "TUITableViewScrollPositionNone": 2, - "TUITableViewScrollPositionTop": 2, - "TUITableViewScrollPositionMiddle": 1, - "TUITableViewScrollPositionBottom": 1, - "TUITableViewScrollPositionToVisible": 3, - "supported": 1, - "TUITableViewScrollPosition": 5, - "TUITableViewInsertionMethodBeforeIndex": 1, - "NSOrderedAscending": 4, - "TUITableViewInsertionMethodAtIndex": 1, - "NSOrderedSame": 1, - "TUITableViewInsertionMethodAfterIndex": 1, - "NSOrderedDescending": 4, - "TUITableViewInsertionMethod": 3, - "TUITableViewCell": 23, - "@protocol": 3, - "TUITableViewDataSource": 2, - "TUITableView": 25, - "TUITableViewDelegate": 1, - "": 1, - "TUIScrollViewDelegate": 1, - "tableView": 45, - "heightForRowAtIndexPath": 2, - "TUIFastIndexPath": 89, - "indexPath": 47, - "@optional": 2, - "willDisplayCell": 2, - "cell": 21, - "forRowAtIndexPath": 2, - "subview": 1, - "didSelectRowAtIndexPath": 3, - "left/right": 2, - "mouse": 2, - "down": 1, - "up/down": 1, - "didDeselectRowAtIndexPath": 3, - "didClickRowAtIndexPath": 1, - "withEvent": 2, - "NSEvent": 3, - "event": 8, - "look": 1, - "clickCount": 1, - "TUITableView*": 1, - "shouldSelectRowAtIndexPath": 3, - "TUIFastIndexPath*": 1, - "forEvent": 3, - "NSEvent*": 1, - "NSMenu": 1, - "menuForRowAtIndexPath": 1, - "tableViewWillReloadData": 3, - "tableViewDidReloadData": 3, - "targetIndexPathForMoveFromRowAtIndexPath": 1, - "fromPath": 1, - "toProposedIndexPath": 1, - "proposedPath": 1, - "TUIScrollView": 1, - "__unsafe_unretained": 2, - "": 4, - "_dataSource": 6, - "weak": 2, - "_sectionInfo": 27, - "TUIView": 17, - "_pullDownView": 4, - "_headerView": 8, - "_lastSize": 1, - "_contentHeight": 7, - "NSMutableIndexSet": 6, - "_visibleSectionHeaders": 6, - "_visibleItems": 14, - "_reusableTableCells": 5, - "_selectedIndexPath": 9, - "_indexPathShouldBeFirstResponder": 2, - "_futureMakeFirstResponderToken": 2, - "_keepVisibleIndexPathForReload": 2, - "_relativeOffsetForReload": 2, - "drag": 1, - "reorder": 1, - "_dragToReorderCell": 5, - "CGPoint": 7, - "_currentDragToReorderLocation": 1, - "_currentDragToReorderMouseOffset": 1, - "_currentDragToReorderIndexPath": 1, - "_currentDragToReorderInsertionMethod": 1, - "_previousDragToReorderIndexPath": 1, - "_previousDragToReorderInsertionMethod": 1, - "animateSelectionChanges": 3, - "forceSaveScrollPosition": 1, - "derepeaterEnabled": 1, - "layoutSubviewsReentrancyGuard": 1, - "didFirstLayout": 1, - "dataSourceNumberOfSectionsInTableView": 1, - "delegateTableViewWillDisplayCellForRowAtIndexPath": 1, - "maintainContentOffsetAfterReload": 3, - "_tableFlags": 1, - "creation.": 1, - "calls": 1, - "UITableViewStylePlain": 1, - "unsafe_unretained": 2, - "dataSource": 2, - "": 4, - "readwrite": 1, - "reloadData": 3, - "reloadDataMaintainingVisibleIndexPath": 2, - "relativeOffset": 5, - "reloadLayout": 2, - "numberOfSections": 10, - "numberOfRowsInSection": 9, - "section": 60, - "rectForHeaderOfSection": 4, - "rectForSection": 3, - "rectForRowAtIndexPath": 7, - "NSIndexSet": 4, - "indexesOfSectionsInRect": 2, - "rect": 10, - "indexesOfSectionHeadersInRect": 2, - "indexPathForCell": 2, - "returns": 4, - "visible": 16, - "indexPathsForRowsInRect": 3, - "indexPathForRowAtPoint": 2, - "point": 11, - "indexPathForRowAtVerticalOffset": 2, - "offset": 23, - "indexOfSectionWithHeaderAtPoint": 2, - "indexOfSectionWithHeaderAtVerticalOffset": 2, - "enumerateIndexPathsUsingBlock": 2, - "*indexPath": 11, - "*stop": 7, - "enumerateIndexPathsWithOptions": 2, - "NSEnumerationOptions": 4, - "usingBlock": 6, - "enumerateIndexPathsFromIndexPath": 4, - "fromIndexPath": 6, - "toIndexPath": 12, - "withOptions": 4, - "headerViewForSection": 6, - "cellForRowAtIndexPath": 9, - "index": 11, - "visibleCells": 3, - "order": 1, - "sortedVisibleCells": 2, - "indexPathsForVisibleRows": 2, - "scrollToRowAtIndexPath": 3, - "atScrollPosition": 3, - "scrollPosition": 9, - "indexPathForSelectedRow": 4, - "representing": 1, - "row": 36, - "selection.": 1, - "indexPathForFirstRow": 2, - "indexPathForLastRow": 2, - "selectRowAtIndexPath": 3, - "deselectRowAtIndexPath": 3, - "*pullDownView": 1, - "pullDownViewIsVisible": 3, - "*headerView": 6, - "dequeueReusableCellWithIdentifier": 2, - "identifier": 7, - "": 1, - "@required": 1, - "canMoveRowAtIndexPath": 2, - "moveRowAtIndexPath": 2, - "numberOfSectionsInTableView": 3, - "NSIndexPath": 5, - "indexPathForRow": 11, - "inSection": 11, - "HEADER_Z_POSITION": 2, - "beginning": 1, - "height": 19, - "TUITableViewRowInfo": 3, - "TUITableViewSection": 16, - "*_tableView": 1, - "*_headerView": 1, - "reusable": 1, - "similar": 1, - "UITableView": 1, - "sectionIndex": 23, - "numberOfRows": 13, - "sectionHeight": 9, - "sectionOffset": 8, - "*rowInfo": 1, - "initWithNumberOfRows": 2, - "_tableView": 3, - "rowInfo": 7, - "_setupRowHeights": 2, - "*header": 1, - "self.headerView": 2, - "roundf": 2, - "header.frame.size.height": 1, - "i": 41, - "h": 3, - "_tableView.delegate": 1, - ".offset": 2, - "rowHeight": 2, - "sectionRowOffset": 2, - "tableRowOffset": 2, - "headerHeight": 4, - "self.headerView.frame.size.height": 1, - "headerView": 14, - "_tableView.dataSource": 3, - "respondsToSelector": 8, - "_headerView.autoresizingMask": 1, - "TUIViewAutoresizingFlexibleWidth": 1, - "_headerView.layer.zPosition": 1, - "Private": 1, - "_updateSectionInfo": 2, - "_updateDerepeaterViews": 2, - "pullDownView": 1, - "_tableFlags.animateSelectionChanges": 3, - "_tableFlags.delegateTableViewWillDisplayCellForRowAtIndexPath": 1, - "setDataSource": 1, - "_tableFlags.dataSourceNumberOfSectionsInTableView": 2, - "setAnimateSelectionChanges": 1, - "*s": 3, - "y": 12, - "CGRectMake": 8, - "self.bounds.size.width": 4, - "indexPath.section": 3, - "indexPath.row": 1, - "*section": 8, - "removeFromSuperview": 4, - "removeAllIndexes": 2, - "*sections": 1, - "bounds": 2, - ".size.height": 1, - "self.contentInset.top*2": 1, - "section.sectionOffset": 1, - "sections": 4, - "self.contentInset.bottom": 1, - "_enqueueReusableCell": 2, - "*identifier": 1, - "cell.reuseIdentifier": 1, - "*c": 1, - "lastObject": 1, - "removeLastObject": 1, - "prepareForReuse": 1, - "allValues": 1, - "SortCells": 1, - "*a": 2, - "*b": 2, - "*ctx": 1, - "a.frame.origin.y": 2, - "b.frame.origin.y": 2, - "*v": 2, - "v": 4, - "sortedArrayUsingComparator": 1, - "NSComparator": 1, - "NSComparisonResult": 1, - "INDEX_PATHS_FOR_VISIBLE_ROWS": 4, - "allKeys": 1, - "*i": 4, - "*cell": 7, - "*indexes": 2, - "CGRectIntersectsRect": 5, - "indexes": 4, - "addIndex": 3, - "*indexPaths": 1, - "cellRect": 7, - "indexPaths": 2, - "CGRectContainsPoint": 1, - "cellRect.origin.y": 1, - "origin": 1, - "brief": 1, - "Obtain": 1, - "whose": 2, - "specified": 1, - "exists": 1, - "negative": 1, - "returned": 1, - "param": 1, - "p": 3, - "0": 2, - "width": 1, - "point.y": 1, - "section.headerView": 9, - "sectionLowerBound": 2, - "fromIndexPath.section": 1, - "sectionUpperBound": 3, - "toIndexPath.section": 1, - "rowLowerBound": 2, - "fromIndexPath.row": 1, - "rowUpperBound": 3, - "toIndexPath.row": 1, - "irow": 3, - "lower": 1, - "bound": 1, - "iteration...": 1, - "rowCount": 3, - "j": 5, - "FALSE": 2, - "...then": 1, - "zero": 1, - "iterations": 1, - "_topVisibleIndexPath": 1, - "*topVisibleIndex": 1, - "sortedArrayUsingSelector": 1, - "topVisibleIndex": 2, - "setFrame": 2, - "_tableFlags.forceSaveScrollPosition": 1, - "setContentOffset": 2, - "_tableFlags.didFirstLayout": 1, - "prevent": 2, - "layout": 3, - "pinned": 5, - "isKindOfClass": 2, - "TUITableViewSectionHeader": 5, - ".pinnedToViewport": 2, - "TRUE": 1, - "pinnedHeader": 1, - "CGRectGetMaxY": 2, - "headerFrame": 4, - "pinnedHeader.frame.origin.y": 1, - "intersecting": 1, - "push": 1, - "upwards.": 1, - "pinnedHeaderFrame": 2, - "pinnedHeader.frame": 2, - "pinnedHeaderFrame.origin.y": 1, - "notify": 3, - "section.headerView.frame": 1, - "setNeedsLayout": 3, - "section.headerView.superview": 1, - "remove": 4, - "offscreen": 2, - "toRemove": 1, - "enumerateIndexesUsingBlock": 1, - "removeIndex": 1, - "_layoutCells": 3, - "visibleCellsNeedRelayout": 5, - "remaining": 1, - "cells": 7, - "cell.frame": 1, - "cell.layer.zPosition": 1, - "visibleRect": 3, - "Example": 1, - "*oldVisibleIndexPaths": 1, - "*newVisibleIndexPaths": 1, - "*indexPathsToRemove": 1, - "oldVisibleIndexPaths": 2, - "mutableCopy": 2, - "indexPathsToRemove": 2, - "removeObjectsInArray": 2, - "newVisibleIndexPaths": 2, - "*indexPathsToAdd": 1, - "indexPathsToAdd": 2, - "newly": 1, - "superview": 1, - "bringSubviewToFront": 1, - "self.contentSize": 3, - "headerViewRect": 3, - "s.height": 3, - "_headerView.frame.size.height": 2, - "visible.size.width": 3, - "_headerView.frame": 1, - "_headerView.hidden": 4, - "show": 2, - "pullDownRect": 4, - "_pullDownView.frame.size.height": 2, - "_pullDownView.hidden": 4, - "_pullDownView.frame": 1, - "self.delegate": 10, - "recycle": 1, - "regenerated": 3, - "layoutSubviews": 5, - "because": 1, - "dragged": 1, - "clear": 3, - "removeAllObjects": 1, - "laid": 1, - "next": 2, - "_tableFlags.layoutSubviewsReentrancyGuard": 3, - "setAnimationsEnabled": 1, - "CATransaction": 3, - "begin": 1, - "setDisableActions": 1, - "_preLayoutCells": 2, - "munge": 2, - "contentOffset": 2, - "_layoutSectionHeaders": 2, - "_tableFlags.derepeaterEnabled": 1, - "commit": 1, - "selected": 2, - "overlapped": 1, - "r.size.height": 4, - "headerFrame.size.height": 1, - "r.origin.y": 1, - "v.size.height": 2, - "scrollRectToVisible": 2, - "sec": 3, - "_makeRowAtIndexPathFirstResponder": 2, - "responder": 2, - "made": 1, - "acceptsFirstResponder": 1, - "self.nsWindow": 3, - "makeFirstResponderIfNotAlreadyInResponderChain": 1, - "futureMakeFirstResponderRequestToken": 1, - "*oldIndexPath": 1, - "oldIndexPath": 2, - "setSelected": 2, - "setNeedsDisplay": 2, - "selection": 3, - "actually": 2, - "NSResponder": 1, - "*firstResponder": 1, - "firstResponder": 3, - "indexPathForFirstVisibleRow": 2, - "*firstIndexPath": 1, - "firstIndexPath": 4, - "indexPathForLastVisibleRow": 2, - "*lastIndexPath": 5, - "lastIndexPath": 8, - "performKeyAction": 2, - "repeative": 1, - "press": 1, - "noCurrentSelection": 2, - "isARepeat": 1, - "TUITableViewCalculateNextIndexPathBlock": 3, - "selectValidIndexPath": 3, - "*startForNoSelection": 2, - "calculateNextIndexPath": 4, - "foundValidNextRow": 4, - "*newIndexPath": 1, - "newIndexPath": 6, - "startForNoSelection": 1, - "_delegate": 2, - "self.animateSelectionChanges": 1, - "charactersIgnoringModifiers": 1, - "characterAtIndex": 1, - "NSUpArrowFunctionKey": 1, - "lastIndexPath.section": 2, - "lastIndexPath.row": 2, - "rowsInSection": 7, - "NSDownArrowFunctionKey": 1, - "_tableFlags.maintainContentOffsetAfterReload": 2, - "setMaintainContentOffsetAfterReload": 1, - "newValue": 2, - "indexPathWithIndexes": 1, - "indexAtPosition": 2 - }, - "Objective-C++": { - "#include": 26, - "": 1, - "": 1, - "#if": 10, - "(": 612, - "defined": 1, - "OBJC_API_VERSION": 2, - ")": 610, - "&&": 12, - "static": 16, - "inline": 3, - "IMP": 4, - "method_setImplementation": 2, - "Method": 2, - "m": 3, - "i": 29, - "{": 151, - "oi": 2, - "-": 175, - "method_imp": 2, - ";": 494, - "return": 149, - "}": 148, - "#endif": 19, - "namespace": 1, - "WebCore": 1, - "ENABLE": 10, - "DRAG_SUPPORT": 7, - "const": 16, - "double": 1, - "EventHandler": 30, - "TextDragDelay": 1, - "RetainPtr": 4, - "": 4, - "&": 21, - "currentNSEventSlot": 6, - "DEFINE_STATIC_LOCAL": 1, - "event": 30, - "NSEvent": 21, - "*EventHandler": 2, - "currentNSEvent": 13, - ".get": 1, - "class": 14, - "CurrentEventScope": 14, - "WTF_MAKE_NONCOPYABLE": 1, - "public": 1, - "*": 34, - "private": 1, - "m_savedCurrentEvent": 3, - "#ifndef": 3, - "NDEBUG": 2, - "m_event": 3, - "*event": 11, - "ASSERT": 13, - "bool": 26, - "wheelEvent": 5, - "Page*": 7, - "page": 33, - "m_frame": 24, - "if": 104, - "false": 40, - "scope": 6, - "PlatformWheelEvent": 2, - "chrome": 8, - "platformPageClient": 4, - "handleWheelEvent": 2, - "wheelEvent.isAccepted": 1, - "PassRefPtr": 2, - "": 1, - "currentKeyboardEvent": 1, - "[": 268, - "NSApp": 5, - "currentEvent": 2, - "]": 266, - "switch": 4, - "type": 10, - "case": 25, - "NSKeyDown": 4, - "PlatformKeyboardEvent": 6, - "platformEvent": 2, - "platformEvent.disambiguateKeyDownEvent": 1, - "RawKeyDown": 1, - "KeyboardEvent": 2, - "create": 3, - "document": 6, - "defaultView": 2, - "NSKeyUp": 3, - "default": 3, - "keyEvent": 2, - "BEGIN_BLOCK_OBJC_EXCEPTIONS": 13, - "||": 18, - "END_BLOCK_OBJC_EXCEPTIONS": 13, - "void": 18, - "focusDocumentView": 1, - "FrameView*": 7, - "frameView": 4, - "view": 28, - "NSView": 14, - "*documentView": 1, - "documentView": 2, - "focusNSView": 1, - "focusController": 1, - "setFocusedFrame": 1, - "passWidgetMouseDownEventToWidget": 3, - "MouseEventWithHitTestResults": 7, - "RenderObject*": 2, - "target": 6, - "targetNode": 3, - "renderer": 7, - "isWidget": 2, - "passMouseDownEventToWidget": 3, - "toRenderWidget": 3, - "widget": 18, - "RenderWidget*": 1, - "renderWidget": 2, - "lastEventIsMouseUp": 2, - "*currentEventAfterHandlingMouseDown": 1, - "currentEventAfterHandlingMouseDown": 3, - "NSLeftMouseUp": 3, - "timestamp": 8, - "Widget*": 3, - "pWidget": 2, - "RefPtr": 1, - "": 1, - "LOG_ERROR": 1, - "true": 29, - "platformWidget": 6, - "*nodeView": 1, - "nodeView": 9, - "superview": 5, - "*view": 4, - "hitTest": 2, - "convertPoint": 2, - "locationInWindow": 4, - "fromView": 3, - "nil": 25, - "client": 3, - "firstResponder": 1, - "clickCount": 8, - "<=>": 1, - "1": 1, - "acceptsFirstResponder": 1, - "needsPanelToBecomeKey": 1, - "makeFirstResponder": 1, - "wasDeferringLoading": 3, - "defersLoading": 1, - "setDefersLoading": 2, - "m_sendingEventToSubview": 24, - "*outerView": 1, - "getOuterView": 1, - "beforeMouseDown": 1, - "outerView": 2, - "widget.get": 2, - "mouseDown": 2, - "afterMouseDown": 1, - "m_mouseDownView": 5, - "m_mouseDownWasInSubframe": 7, - "m_mousePressed": 2, - "findViewInSubviews": 3, - "*superview": 1, - "*target": 1, - "NSEnumerator": 1, - "*e": 1, - "subviews": 1, - "objectEnumerator": 1, - "*subview": 1, - "while": 4, - "subview": 3, - "e": 1, - "nextObject": 1, - "mouseDownViewIfStillGood": 3, - "*mouseDownView": 1, - "mouseDownView": 3, - "topFrameView": 3, - "*topView": 1, - "topView": 2, - "eventLoopHandleMouseDragged": 1, - "mouseDragged": 2, - "//": 7, - "eventLoopHandleMouseUp": 1, - "mouseUp": 2, - "passSubframeEventToSubframe": 4, - "Frame*": 5, - "subframe": 13, - "HitTestResult*": 2, - "hoveredNode": 5, - "NSLeftMouseDragged": 1, - "NSOtherMouseDragged": 1, - "NSRightMouseDragged": 1, - "dragController": 1, - "didInitiateDrag": 1, - "NSMouseMoved": 2, - "eventHandler": 6, - "handleMouseMoveEvent": 3, - "currentPlatformMouseEvent": 8, - "NSLeftMouseDown": 3, - "Node*": 1, - "node": 3, - "isFrameView": 2, - "handleMouseReleaseEvent": 3, - "originalNSScrollViewScrollWheel": 4, - "_nsScrollViewScrollWheelShouldRetainSelf": 3, - "selfRetainingNSScrollViewScrollWheel": 3, - "NSScrollView": 2, - "SEL": 2, - "nsScrollViewScrollWheelShouldRetainSelf": 2, - "isMainThread": 3, - "setNSScrollViewScrollWheelShouldRetainSelf": 3, - "shouldRetain": 2, - "method": 2, - "class_getInstanceMethod": 1, - "objc_getRequiredClass": 1, - "@selector": 4, - "scrollWheel": 2, - "reinterpret_cast": 1, - "": 1, - "*self": 1, - "selector": 2, - "shouldRetainSelf": 3, - "self": 70, - "retain": 1, - "release": 1, - "passWheelEventToWidget": 1, - "NSView*": 1, - "static_cast": 1, - "": 1, - "frame": 3, - "NSScrollWheel": 1, - "v": 6, - "loader": 1, - "resetMultipleFormSubmissionProtection": 1, - "handleMousePressEvent": 2, - "int": 36, - "%": 2, - "handleMouseDoubleClickEvent": 1, - "else": 11, - "sendFakeEventsAfterWidgetTracking": 1, - "*initiatingEvent": 1, - "eventType": 5, - "initiatingEvent": 22, - "*fakeEvent": 1, - "fakeEvent": 6, - "mouseEventWithType": 2, - "location": 3, - "modifierFlags": 6, - "windowNumber": 6, - "context": 6, - "eventNumber": 3, - "pressure": 3, - "postEvent": 3, - "atStart": 3, - "YES": 6, - "keyEventWithType": 1, - "characters": 3, - "charactersIgnoringModifiers": 2, - "isARepeat": 2, - "keyCode": 2, - "window": 1, - "convertScreenToBase": 1, - "mouseLocation": 1, - "mouseMoved": 2, - "frameHasPlatformWidget": 4, - "passMousePressEventToSubframe": 1, - "mev": 6, - "mev.event": 3, - "passMouseMoveEventToSubframe": 1, - "m_mouseDownMayStartDrag": 1, - "passMouseReleaseEventToSubframe": 1, - "PlatformMouseEvent": 5, - "*windowView": 1, - "windowView": 2, - "CONTEXT_MENUS": 2, - "sendContextMenuEvent": 2, - "eventMayStartDrag": 2, - "eventActivatedView": 1, - "m_activationEventNumber": 1, - "event.eventNumber": 1, - "": 1, - "createDraggingClipboard": 1, - "NSPasteboard": 2, - "*pasteboard": 1, - "pasteboardWithName": 1, - "NSDragPboard": 1, - "pasteboard": 2, - "declareTypes": 1, - "NSArray": 3, - "array": 2, - "owner": 15, - "ClipboardMac": 1, - "Clipboard": 1, - "DragAndDrop": 1, - "ClipboardWritable": 1, - "tabsToAllFormControls": 1, - "KeyboardEvent*": 1, - "KeyboardUIMode": 1, - "keyboardUIMode": 5, - "handlingOptionTab": 4, - "isKeyboardOptionTab": 1, - "KeyboardAccessTabsToLinks": 2, - "KeyboardAccessFull": 1, - "needsKeyboardEventDisambiguationQuirks": 2, - "Document*": 1, - "applicationIsSafari": 1, - "url": 2, - ".protocolIs": 2, - "Settings*": 1, - "settings": 5, - "DASHBOARD_SUPPORT": 1, - "usesDashboardBackwardCompatibilityMode": 1, - "unsigned": 2, - "accessKeyModifiers": 1, - "AXObjectCache": 1, - "accessibilityEnhancedUserInterfaceEnabled": 1, - "CtrlKey": 2, - "|": 3, - "AltKey": 1, - "#import": 3, - "": 1, - "": 1, - "#ifdef": 6, - "OODEBUG": 1, - "#define": 1, - "OODEBUG_SQL": 4, - "OOOODatabase": 1, - "OODB": 1, - "NSString": 25, - "*kOOObject": 1, - "@": 28, - "*kOOInsert": 1, - "*kOOUpdate": 1, - "*kOOExecSQL": 1, - "#pragma": 5, - "mark": 5, - "OORecord": 3, - "abstract": 1, - "superclass": 1, - "for": 14, - "records": 1, - "@implementation": 7, - "+": 55, - "id": 19, - "record": 18, - "OO_AUTORETURNS": 2, - "OO_AUTORELEASE": 3, - "alloc": 11, - "init": 4, - "insert": 7, - "*record": 4, - "insertWithParent": 1, - "parent": 10, - "OODatabase": 26, - "sharedInstance": 37, - "copyJoinKeysFrom": 1, - "to": 6, - "delete": 4, - "update": 4, - "indate": 4, - "upsert": 4, - "commit": 6, - "rollback": 5, - "setNilValueForKey": 1, - "key": 2, - "OOReference": 2, - "": 1, - "zeroForNull": 4, - "NSNumber": 4, - "numberWithInt": 1, - "setValue": 1, - "forKey": 1, - "OOArray": 16, - "": 14, - "select": 21, - "intoClass": 11, - "joinFrom": 10, - "cOOString": 15, - "sql": 21, - "selectRecordsRelatedTo": 1, - "importFrom": 1, - "OOFile": 4, - "file": 2, - "delimiter": 4, - "delim": 4, - "rows": 2, - "OOMetaData": 21, - "import": 1, - "file.string": 1, - "insertArray": 3, - "BOOL": 11, - "exportTo": 1, - "file.save": 1, - "export": 1, - "bindToView": 1, - "OOView": 2, - "delegate": 4, - "bindRecord": 1, - "toView": 1, - "updateFromView": 1, - "updateRecord": 1, - "description": 6, - "*metaData": 14, - "metaDataForClass": 3, - "hack": 1, - "required": 2, - "where": 1, - "contains": 1, - "a": 9, - "field": 1, - "avoid": 1, - "recursion": 1, - "OOStringArray": 6, - "ivars": 5, - "<<": 2, - "metaData": 26, - "encode": 3, - "dictionaryWithValuesForKeys": 3, - "@end": 14, - "OOAdaptor": 6, - "all": 3, - "methods": 1, - "by": 1, - "objsql": 1, - "access": 2, - "database": 12, - "@interface": 6, - "NSObject": 1, - "sqlite3": 1, - "*db": 1, - "sqlite3_stmt": 1, - "*stmt": 1, - "struct": 5, - "_str_link": 5, - "*next": 2, - "char": 9, - "str": 7, - "*strs": 1, - "OO_UNSAFE": 1, - "*owner": 3, - "initPath": 5, - "path": 9, - "prepare": 4, - "bindCols": 5, - "cOOStringArray": 3, - "columns": 7, - "values": 29, - "cOOValueDictionary": 2, - "startingAt": 5, - "pno": 13, - "bindNulls": 8, - "bindResultsIntoInstancesOfClass": 4, - "Class": 9, - "recordClass": 16, - "sqlite_int64": 2, - "lastInsertRowID": 2, - "NSData": 3, - "OOExtras": 9, - "initWithDescription": 1, - "is": 2, - "the": 5, - "low": 1, - "level": 1, - "interface": 1, - "particular": 2, - "": 1, - "sharedInstanceForPath": 2, - "OODocument": 1, - ".path": 1, - "OONil": 1, - "OO_RELEASE": 6, - "exec": 10, - "fmt": 9, - "...": 3, - "va_list": 3, - "argp": 12, - "va_start": 3, - "*sql": 5, - "initWithFormat": 3, - "arguments": 3, - "va_end": 3, - "objects": 4, - "deleteArray": 2, - "object": 13, - "commitTransaction": 3, - "super": 3, - "adaptor": 1, - "registerSubclassesOf": 1, - "recordSuperClass": 2, - "numClasses": 5, - "objc_getClassList": 2, - "NULL": 4, - "*classes": 2, - "malloc": 2, - "sizeof": 2, - "": 1, - "viewClasses": 4, - "classNames": 4, - "scan": 1, - "registered": 2, - "classes": 12, - "relevant": 1, - "subclasses": 1, - "c": 14, - "<": 5, - "superClass": 5, - "class_getName": 4, - "class_getSuperclass": 1, - "respondsToSelector": 2, - "ooTableSql": 1, - "tableMetaDataForClass": 8, - "break": 6, - "delay": 1, - "creation": 1, - "views": 1, - "until": 1, - "after": 1, - "tables": 1, - "": 1, - "in": 9, - "order": 1, - "free": 3, - "Register": 1, - "list": 1, - "of": 2, - "before": 1, - "using": 2, - "them": 2, - "so": 2, - "can": 1, - "determine": 1, - "relationships": 1, - "between": 1, - "registerTableClassesNamed": 1, - "tableClass": 2, - "NSBundle": 1, - "mainBundle": 1, - "classNamed": 1, - "Send": 1, - "any": 2, - "SQL": 1, - "Sql": 1, - "format": 1, - "string": 1, - "escape": 1, - "Any": 1, - "results": 3, - "returned": 1, - "are": 1, - "placed": 1, - "as": 1, - "an": 1, - "dictionary": 1, - "results.": 1, - "*/": 1, - "errcode": 12, - "OOString": 6, - "stringForSql": 2, - "*aColumnName": 1, - "**results": 1, - "allKeys": 1, - "objectAtIndex": 1, - "OOValueDictionary": 5, - "joinValues": 4, - "sharedColumns": 5, - "*parentMetaData": 1, - "parentMetaData": 2, - "naturalJoinTo": 1, - "joinableColumns": 1, - "whereClauseFor": 2, - "qualifyNulls": 2, - "NO": 3, - "ooOrderBy": 2, - "OOFormat": 5, - "NSLog": 4, - "*joinValues": 1, - "*adaptor": 7, - "": 1, - "tablesRelatedByNaturalJoinFrom": 1, - "tablesWithNaturalJoin": 5, - "**tablesWithNaturalJoin": 1, - "*childMetaData": 1, - "tableMetaDataByClassName": 3, - "prepareSql": 1, - "toTable": 1, - "childMetaData": 1, - "OODictionary": 2, - "": 1, - "tmpResults": 1, - "kOOExecSQL": 1, - "*exec": 2, - "OOWarn": 9, - "errmsg": 5, - "continue": 3, - "OORef": 2, - "": 1, - "*values": 3, - "kOOObject": 3, - "isInsert": 4, - "kOOInsert": 1, - "isUpdate": 5, - "kOOUpdate": 2, - "newValues": 3, - "changedCols": 4, - "*name": 4, - "*newValues": 1, - "name": 9, - "isEqual": 1, - "tableName": 4, - "columns/": 1, - "nchanged": 4, - "*object": 1, - "lastSQL": 4, - "**changedCols": 1, - "quote": 2, - "commaQuote": 2, - "": 1, - "commited": 2, - "updateCount": 2, - "transaction": 2, - "updated": 2, - "NSMutableDictionary": 1, - "*d": 1, - "*transaction": 1, - "d": 2, - "": 1, - "OO_ARC": 1, - "boxed": 1, - "valueForKey": 1, - "pointerValue": 1, - "setValuesForKeysWithDictionary": 2, - "decode": 2, - "count": 1, - "className": 3, - "createTableSQL": 2, - "*idx": 1, - "indexes": 1, - "idx": 2, - "implements": 1, - ".directory": 1, - ".mkdir": 1, - "sqlite3_open": 1, - "db": 8, - "SQLITE_OK": 6, - "*path": 1, - "sqlite3_prepare_v2": 1, - "stmt": 20, - "sqlite3_errmsg": 3, - "bindValue": 2, - "value": 26, - "asParameter": 2, - "OODEBUG_BIND": 1, - "OONull": 3, - "sqlite3_bind_null": 1, - "OOSQL_THREAD_SAFE_BUT_USES_MORE_MEMORY": 1, - "isKindOfClass": 3, - "sqlite3_bind_text": 2, - "UTF8String": 1, - "SQLITE_STATIC": 3, - "#else": 1, - "len": 4, - "lengthOfBytesUsingEncoding": 1, - "NSUTF8StringEncoding": 3, - "*str": 2, - "next": 3, - "strs": 6, - "getCString": 1, - "maxLength": 1, - "encoding": 2, - "sqlite3_bind_blob": 1, - "bytes": 5, - "length": 4, - "*type": 1, - "objCType": 1, - "sqlite3_bind_int": 1, - "intValue": 3, - "sqlite3_bind_int64": 1, - "longLongValue": 1, - "sqlite3_bind_double": 1, - "doubleValue": 1, - "*columns": 1, - "valuesForNextRow": 2, - "ncols": 2, - "sqlite3_column_count": 1, - "sqlite3_column_name": 1, - "sqlite3_column_type": 2, - "SQLITE_NULL": 1, - "SQLITE_INTEGER": 1, - "initWithLongLong": 1, - "sqlite3_column_int64": 1, - "SQLITE_FLOAT": 1, - "initWithDouble": 1, - "sqlite3_column_double": 1, - "SQLITE_TEXT": 1, - "*bytes": 2, - "sqlite3_column_text": 1, - "NSMutableString": 1, - "initWithBytes": 2, - "sqlite3_column_bytes": 2, - "SQLITE_BLOB": 1, - "sqlite3_column_blob": 1, - "out": 4, - "awakeFromDB": 4, - "instancesRespondToSelector": 1, - "sqlite3_step": 1, - "SQLITE_ROW": 1, - "SQLITE_DONE": 1, - "out.alloc": 1, - "sqlite3_changes": 1, - "sqlite3_finalize": 1, - "sqlite3_last_insert_rowid": 1, - "dealloc": 1, - "sqlite3_close": 1, - "OO_DEALLOC": 1, - "instances": 1, - "represent": 1, - "table": 1, - "and": 2, - "it": 2, - "s": 2, - "l": 1, - "C": 1, - "S": 1, - "I": 1, - "L": 1, - "q": 1, - "Q": 1, - "f": 1, - "_": 2, - "tag": 1, - "A": 2, - "<'>": 1, - "iptr": 4, - "*optr": 1, - "unhex": 2, - "*iptr": 1, - "*16": 1, - "hex": 1, - "initWithBytesNoCopy": 1, - "optr": 1, - "freeWhenDone": 1, - "stringValue": 4, - "charValue": 1, - "shortValue": 1, - "OOReplace": 2, - "reformat": 4, - "NSDictionary": 2, - "__IPHONE_OS_VERSION_MIN_REQUIRED": 1, - "UISwitch": 2, - "text": 1, - "self.on": 1 - }, - "Omgrofl": { - "lol": 14, - "iz": 11, - "wtf": 1, - "liek": 1, - "lmao": 1, - "brb": 1, - "w00t": 1, - "Hello": 1, - "World": 1, - "rofl": 13, - "lool": 5, - "loool": 6, - "stfu": 1 - }, - "Opa": { - "server": 1, - "Server.one_page_server": 1, - "(": 4, - "-": 1, - "

    ": 2, - "Hello": 2, - "world": 2, - "

    ": 2, - ")": 4, - "Server.start": 1, - "Server.http": 1, - "{": 2, - "page": 1, - "function": 1, - "}": 2, - "title": 1 - }, - "Opal": { - "-": 4, - "Deepak": 1, - "Chopra": 1, - "nonsense": 1, - "text": 1, - "generator": 1, - "see": 1, - "https": 1, - "//github.com/StoneCypher/DeepakChopra_Opal/": 1, - "starts": 1, - "[": 4, - "]": 4, - "middles": 1, - "qualifiers": 1, - "finishes": 1, - "alert": 1, - "starts.sample": 1, - "+": 3, - "middles.sample": 1, - "qualifiers.sample": 1, - "finishes.sample": 1 - }, - "OpenCL": { - "double": 3, - "run_fftw": 1, - "(": 18, - "int": 3, - "n": 4, - "const": 4, - "float": 3, - "*": 5, - "x": 5, - "y": 4, - ")": 18, - "{": 4, - "fftwf_plan": 1, - "p1": 3, - "fftwf_plan_dft_1d": 1, - "fftwf_complex": 2, - "FFTW_FORWARD": 1, - "FFTW_ESTIMATE": 1, - ";": 12, - "nops": 3, - "t": 4, - "cl": 2, - "realTime": 2, - "for": 1, - "op": 3, - "<": 1, - "+": 4, - "fftwf_execute": 1, - "}": 4, - "-": 1, - "/": 1, - "fftwf_destroy_plan": 1, - "return": 1, - "typedef": 1, - "foo_t": 3, - "#ifndef": 1, - "ZERO": 3, - "#define": 2, - "#endif": 1, - "FOO": 1, - "__kernel": 1, - "void": 1, - "foo": 1, - "__global": 1, - "__local": 1, - "uint": 1, - "barrier": 1, - "CLK_LOCAL_MEM_FENCE": 1, - "if": 1, - "*x": 1 - }, - "OpenEdge ABL": { - "USING": 3, - "Progress.Lang.*.": 3, - "CLASS": 2, - "email.Email": 2, - "USE": 2, - "-": 73, - "WIDGET": 2, - "POOL": 2, - "&": 3, - "SCOPED": 1, - "DEFINE": 16, - "QUOTES": 1, - "@#": 1, - "%": 2, - "*": 2, - "+": 21, - "._MIME_BOUNDARY_.": 1, - "#@": 1, - "WIN": 1, - "From": 4, - "To": 8, - "CC": 2, - "BCC": 2, - "Personal": 1, - "Private": 1, - "Company": 2, - "confidential": 2, - "normal": 1, - "urgent": 2, - "non": 1, - "Cannot": 3, - "locate": 3, - "file": 6, - "in": 3, - "the": 3, - "filesystem": 3, - "R": 3, - "File": 3, - "exists": 3, - "but": 3, - "is": 3, - "not": 3, - "readable": 3, - "Error": 3, - "copying": 3, - "from": 3, - "<\">": 8, - "ttSenders": 2, - "cEmailAddress": 8, - "n": 13, - "ttToRecipients": 1, - "Reply": 3, - "ttReplyToRecipients": 1, - "Cc": 2, - "ttCCRecipients": 1, - "Bcc": 2, - "ttBCCRecipients": 1, - "Return": 1, - "Receipt": 1, - "ttDeliveryReceiptRecipients": 1, - "Disposition": 3, - "Notification": 1, - "ttReadReceiptRecipients": 1, - "Subject": 2, - "Importance": 3, - "H": 1, - "High": 1, - "L": 1, - "Low": 1, - "Sensitivity": 2, - "Priority": 2, - "Date": 4, - "By": 1, - "Expiry": 2, - "Mime": 1, - "Version": 1, - "Content": 10, - "Type": 4, - "multipart/mixed": 1, - ";": 5, - "boundary": 1, - "text/plain": 2, - "charset": 2, - "Transfer": 4, - "Encoding": 4, - "base64": 2, - "bit": 2, - "application/octet": 1, - "stream": 1, - "attachment": 2, - "filename": 2, - "ttAttachments.cFileName": 2, - "cNewLine.": 1, - "RETURN": 7, - "lcReturnData.": 1, - "END": 12, - "METHOD.": 6, - "METHOD": 6, - "PUBLIC": 6, - "CHARACTER": 9, - "send": 1, - "(": 44, - ")": 44, - "objSendEmailAlgorithm": 1, - "sendEmail": 2, - "INPUT": 11, - "THIS": 1, - "OBJECT": 2, - ".": 14, - "CLASS.": 2, - "MESSAGE": 2, - "INTERFACE": 1, - "email.SendEmailAlgorithm": 1, - "ipobjEmail": 1, - "AS": 21, - "INTERFACE.": 1, - "PARAMETER": 3, - "objSendEmailAlg": 2, - "email.SendEmailSocket": 1, - "NO": 13, - "UNDO.": 12, - "VARIABLE": 12, - "vbuffer": 9, - "MEMPTR": 2, - "vstatus": 1, - "LOGICAL": 1, - "vState": 2, - "INTEGER": 6, - "ASSIGN": 2, - "vstate": 1, - "FUNCTION": 1, - "getHostname": 1, - "RETURNS": 1, - "cHostname": 1, - "THROUGH": 1, - "hostname": 1, - "ECHO.": 1, - "IMPORT": 1, - "UNFORMATTED": 1, - "cHostname.": 2, - "CLOSE.": 1, - "FUNCTION.": 1, - "PROCEDURE": 2, - "newState": 2, - "INTEGER.": 1, - "pstring": 4, - "CHARACTER.": 1, - "newState.": 1, - "IF": 2, - "THEN": 2, - "RETURN.": 1, - "SET": 5, - "SIZE": 5, - "LENGTH": 3, - "PUT": 1, - "STRING": 7, - "pstring.": 1, - "SELF": 4, - "WRITE": 1, - "PROCEDURE.": 2, - "ReadSocketResponse": 1, - "vlength": 5, - "str": 3, - "v": 1, - "GET": 3, - "BYTES": 2, - "AVAILABLE": 2, - "VIEW": 1, - "ALERT": 1, - "BOX.": 1, - "DO": 2, - "READ": 1, - "handleResponse": 1, - "END.": 2, - "email.Util": 1, - "FINAL": 1, - "PRIVATE": 1, - "STATIC": 5, - "cMonthMap": 2, - "EXTENT": 1, - "INITIAL": 1, - "[": 2, - "]": 2, - "ABLDateTimeToEmail": 3, - "ipdttzDateTime": 6, - "DATETIME": 3, - "TZ": 2, - "DAY": 1, - "MONTH": 1, - "YEAR": 1, - "TRUNCATE": 2, - "MTIME": 1, - "/": 2, - "ABLTimeZoneToString": 2, - "TIMEZONE": 1, - "ipdtDateTime": 2, - "ipiTimeZone": 3, - "ABSOLUTE": 1, - "MODULO": 1, - "LONGCHAR": 4, - "ConvertDataToBase64": 1, - "iplcNonEncodedData": 2, - "lcPreBase64Data": 4, - "lcPostBase64Data": 3, - "mptrPostBase64Data": 3, - "i": 3, - "COPY": 1, - "LOB": 1, - "FROM": 1, - "TO": 2, - "mptrPostBase64Data.": 1, - "BASE64": 1, - "ENCODE": 1, - "BY": 1, - "SUBSTRING": 1, - "CHR": 2, - "lcPostBase64Data.": 1 - }, - "OpenSCAD": { - "fn": 1, - ";": 6, - "difference": 1, - "(": 11, - ")": 11, - "{": 2, - "union": 1, - "translate": 4, - "[": 5, - "]": 5, - "cube": 1, - "center": 3, - "true": 3, - "cylinder": 2, - "h": 2, - "r1": 1, - "r2": 1, - "sphere": 2, - "r": 3, - "}": 2 - }, - "Org": { - "#": 13, - "+": 13, - "OPTIONS": 1, - "H": 1, - "num": 1, - "nil": 4, - "toc": 2, - "n": 1, - "@": 1, - "t": 10, - "|": 4, - "-": 30, - "f": 2, - "*": 3, - "TeX": 1, - "LaTeX": 1, - "skip": 1, - "d": 2, - "(": 11, - "HIDE": 1, - ")": 11, - "tags": 2, - "not": 1, - "in": 2, - "STARTUP": 1, - "align": 1, - "fold": 1, - "nodlcheck": 1, - "hidestars": 1, - "oddeven": 1, - "lognotestate": 1, - "SEQ_TODO": 1, - "TODO": 1, - "INPROGRESS": 1, - "i": 1, - "WAITING": 1, - "w@": 1, - "DONE": 1, - "CANCELED": 1, - "c@": 1, - "TAGS": 1, - "Write": 1, - "w": 1, - "Update": 1, - "u": 1, - "Fix": 1, - "Check": 1, - "c": 1, - "TITLE": 1, - "org": 10, - "ruby": 6, - "AUTHOR": 1, - "Brian": 1, - "Dewey": 1, - "EMAIL": 1, - "bdewey@gmail.com": 1, - "LANGUAGE": 1, - "en": 1, - "PRIORITIES": 1, - "A": 1, - "C": 1, - "B": 1, - "CATEGORY": 1, - "worg": 1, - "{": 1, - "Back": 1, - "to": 8, - "Worg": 1, - "rubygems": 2, - "ve": 1, - "already": 1, - "created": 1, - "a": 4, - "site.": 1, - "Make": 1, - "sure": 1, - "you": 2, - "have": 1, - "installed": 1, - "sudo": 1, - "gem": 1, - "install": 1, - ".": 1, - "You": 1, - "need": 1, - "register": 1, - "new": 2, - "Webby": 3, - "filter": 3, - "handle": 1, - "mode": 2, - "content.": 2, - "makes": 1, - "this": 2, - "easy.": 1, - "In": 1, - "the": 6, - "lib/": 1, - "folder": 1, - "of": 2, - "your": 2, - "site": 1, - "create": 1, - "file": 1, - "orgmode.rb": 1, - "BEGIN_EXAMPLE": 2, - "require": 1, - "Filters.register": 1, - "do": 2, - "input": 3, - "Orgmode": 2, - "Parser.new": 1, - ".to_html": 1, - "end": 1, - "END_EXAMPLE": 1, - "This": 2, - "code": 1, - "creates": 1, - "that": 1, - "will": 1, - "use": 1, - "parser": 1, - "translate": 1, - "into": 1, - "HTML.": 1, - "Create": 1, - "For": 1, - "example": 1, - "title": 2, - "Parser": 1, - "created_at": 1, - "status": 2, - "Under": 1, - "development": 1, - "erb": 1, - "orgmode": 3, - "<%=>": 2, - "page": 2, - "Status": 1, - "Description": 1, - "Helpful": 1, - "Ruby": 1, - "routines": 1, - "for": 3, - "parsing": 1, - "files.": 1, - "The": 3, - "most": 1, - "significant": 1, - "thing": 2, - "library": 1, - "does": 1, - "today": 1, - "is": 5, - "convert": 1, - "files": 1, - "textile.": 1, - "Currently": 1, - "cannot": 1, - "much": 1, - "customize": 1, - "conversion.": 1, - "supplied": 1, - "textile": 1, - "conversion": 1, - "optimized": 1, - "extracting": 1, - "from": 1, - "orgfile": 1, - "as": 1, - "opposed": 1, - "History": 1, - "**": 1, - "Version": 1, - "first": 1, - "output": 2, - "HTML": 2, - "gets": 1, - "class": 1, - "now": 1, - "indented": 1, - "Proper": 1, - "support": 1, - "multi": 1, - "paragraph": 2, - "list": 1, - "items.": 1, - "See": 1, - "part": 1, - "last": 1, - "bullet.": 1, - "Fixed": 1, - "bugs": 1, - "wouldn": 1, - "s": 1, - "all": 1, - "there": 1, - "it": 1 - }, - "Ox": { - "#include": 2, - "Kapital": 4, - "(": 119, - "L": 2, - "const": 4, - "N": 5, - "entrant": 8, - "exit": 2, - "KP": 14, - ")": 119, - "{": 22, - "StateVariable": 1, - ";": 91, - "this.entrant": 1, - "this.exit": 1, - "this.KP": 1, - "actual": 2, - "Kbar*vals/": 1, - "-": 31, - "upper": 3, - "log": 2, - ".Inf": 2, - "}": 22, - "Transit": 1, - "FeasA": 2, - "decl": 3, - "ent": 5, - "CV": 7, - "stayout": 3, - "[": 25, - "]": 25, - "exit.pos": 1, - "tprob": 5, - "sigu": 2, - "SigU": 2, - "if": 5, - "v": 2, - "&&": 1, - "return": 10, - "<0>": 1, - "ones": 1, - "probn": 2, - "Kbe": 2, - "/sigu": 1, - "Kb0": 2, - "+": 14, - "Kb2": 2, - "*upper": 1, - "/": 1, - "vals": 1, - "tprob.*": 1, - "zeros": 4, - ".*stayout": 1, - "FirmEntry": 6, - "Run": 1, - "Initialize": 3, - "GenerateSample": 2, - "BDP": 2, - "BayesianDP": 1, - "Rust": 1, - "Reachable": 2, - "sige": 2, - "new": 19, - "StDeviations": 1, - "<0.3,0.3>": 1, - "LaggedAction": 1, - "d": 2, - "array": 1, - "Kparams": 1, - "Positive": 4, - "Free": 1, - "Kb1": 1, - "Determined": 1, - "EndogenousStates": 1, - "K": 3, - "KN": 1, - "SetDelta": 1, - "Probability": 1, - "kcoef": 3, - "ecost": 3, - "Negative": 1, - "CreateSpaces": 1, - "Volume": 3, - "LOUD": 1, - "EM": 4, - "ValueIteration": 1, - "//": 17, - "Solve": 1, - "data": 4, - "DataSet": 1, - "Simulate": 1, - "DataN": 1, - "DataT": 1, - "FALSE": 1, - "Print": 1, - "ImaiJainChing": 1, - "delta": 1, - "*CV": 2, - "Utility": 1, - "u": 2, - "ent*CV": 1, - "*AV": 1, - "|": 1, - "ParallelObjective": 1, - "obj": 18, - "DONOTUSECLIENT": 2, - "isclass": 1, - "obj.p2p": 2, - "oxwarning": 1, - "obj.L": 1, - "P2P": 2, - "ObjClient": 4, - "ObjServer": 7, - "this.obj": 2, - "Execute": 4, - "basetag": 2, - "STOP_TAG": 1, - "iml": 1, - "obj.NvfuncTerms": 2, - "Nparams": 6, - "obj.nstruct": 2, - "Loop": 2, - "nxtmsgsz": 2, - "//free": 1, - "param": 1, - "length": 1, - "is": 1, - "no": 2, - "greater": 1, - "than": 1, - "QUIET": 2, - "println": 2, - "ID": 2, - "Server": 1, - "Recv": 1, - "ANY_TAG": 1, - "//receive": 1, - "the": 1, - "ending": 1, - "parameter": 1, - "vector": 1, - "Encode": 3, - "Buffer": 8, - "//encode": 1, - "it.": 1, - "Decode": 1, - "obj.nfree": 1, - "obj.cur.V": 1, - "vfunc": 2, - "CstrServer": 3, - "SepServer": 3, - "Lagrangian": 1, - "rows": 1, - "obj.cur": 1, - "Vec": 1, - "obj.Kvar.v": 1, - "imod": 1, - "Tag": 1, - "obj.K": 1, - "TRUE": 1, - "obj.Kvar": 1, - "PDF": 1, - "*": 5, - "nldge": 1, - "ParticleLogLikeli": 1, - "it": 5, - "ip": 1, - "mss": 3, - "mbas": 1, - "ms": 8, - "my": 4, - "mx": 7, - "vw": 7, - "vwi": 4, - "dws": 3, - "mhi": 3, - "mhdet": 2, - "loglikeli": 4, - "mData": 4, - "vxm": 1, - "vxs": 1, - "mxm": 1, - "<": 4, - "mxsu": 1, - "mxsl": 1, - "time": 2, - "timeall": 1, - "timeran": 1, - "timelik": 1, - "timefun": 1, - "timeint": 1, - "timeres": 1, - "GetData": 1, - "m_asY": 1, - "sqrt": 1, - "*M_PI": 1, - "m_cY": 1, - "determinant": 2, - "m_mMSbE.": 2, - "covariance": 2, - "invert": 2, - "of": 2, - "measurement": 1, - "shocks": 1, - "m_vSss": 1, - "m_cPar": 4, - "m_cS": 1, - "start": 1, - "particles": 2, - "m_vXss": 1, - "m_cX": 1, - "steady": 1, - "state": 3, - "and": 1, - "policy": 2, - "init": 1, - "likelihood": 1, - "//timeall": 1, - "timer": 3, - "for": 2, - "sizer": 1, - "rann": 1, - "m_cSS": 1, - "m_mSSbE": 1, - "noise": 1, - "fg": 1, - "&": 2, - "transition": 1, - "prior": 1, - "as": 1, - "proposal": 1, - "m_oApprox.FastInterpolate": 1, - "interpolate": 1, - "fy": 1, - "m_cMS": 1, - "evaluate": 1, - "importance": 1, - "weights": 2, - "observation": 1, - "error": 1, - "exp": 2, - "outer": 1, - "/mhdet": 2, - "sumr": 1, - "my*mhi": 1, - ".*my": 1, - ".": 3, - ".NaN": 1, - "can": 1, - "happen": 1, - "extrem": 1, - "sumc": 1, - "or": 1, - "extremely": 1, - "wrong": 1, - "parameters": 1, - "dws/m_cPar": 1, - "loglikelihood": 1, - "contribution": 1, - "//timelik": 1, - "/100": 1, - "//time": 1, - "resample": 1, - "vw/dws": 1, - "selection": 1, - "step": 1, - "in": 1, - "c": 1, - "on": 1, - "normalized": 1 - }, - "Oxygene": { - "": 1, - "DefaultTargets=": 1, - "xmlns=": 1, - "": 3, - "": 1, - "Loops": 2, - "": 1, - "": 1, - "exe": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "False": 4, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "Properties": 1, - "App.ico": 1, - "": 1, - "": 1, - "Condition=": 3, - "Release": 2, - "": 1, - "": 1, - "{": 1, - "BD89C": 1, - "-": 4, - "B610": 1, - "CEE": 1, - "CAF": 1, - "C515D88E2C94": 1, - "}": 1, - "": 1, - "": 3, - "": 1, - "DEBUG": 1, - ";": 2, - "TRACE": 1, - "": 1, - "": 2, - ".": 2, - "bin": 2, - "Debug": 1, - "": 2, - "": 1, - "True": 3, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "Project=": 1, - "": 2, - "": 5, - "Include=": 12, - "": 5, - "(": 5, - "Framework": 5, - ")": 5, - "mscorlib.dll": 1, - "": 5, - "": 5, - "System.dll": 1, - "ProgramFiles": 1, - "Reference": 1, - "Assemblies": 1, - "Microsoft": 1, - "v3.5": 1, - "System.Core.dll": 1, - "": 1, - "": 1, - "System.Data.dll": 1, - "System.Xml.dll": 1, - "": 2, - "": 4, - "": 1, - "": 1, - "": 2, - "ResXFileCodeGenerator": 1, - "": 2, - "": 1, - "": 1, - "SettingsSingleFileGenerator": 1, - "": 1, - "": 1 - }, - "PAWN": { - "//": 22, - "-": 1551, - "#include": 5, - "": 1, - "": 1, - "": 1, - "#pragma": 1, - "tabsize": 1, - "#define": 5, - "COLOR_WHITE": 2, - "xFFFFFFFF": 2, - "COLOR_NORMAL_PLAYER": 3, - "xFFBB7777": 1, - "CITY_LOS_SANTOS": 7, - "CITY_SAN_FIERRO": 4, - "CITY_LAS_VENTURAS": 6, - "new": 13, - "total_vehicles_from_files": 19, - ";": 257, - "gPlayerCitySelection": 21, - "[": 56, - "MAX_PLAYERS": 3, - "]": 56, - "gPlayerHasCitySelected": 6, - "gPlayerLastCitySelectionTick": 5, - "Text": 5, - "txtClassSelHelper": 14, - "txtLosSantos": 7, - "txtSanFierro": 7, - "txtLasVenturas": 7, - "thisanimid": 1, - "lastanimid": 1, - "main": 1, - "(": 273, - ")": 273, - "{": 39, - "print": 3, - "}": 39, - "public": 6, - "OnPlayerConnect": 1, - "playerid": 132, - "GameTextForPlayer": 1, - "SendClientMessage": 1, - "GetTickCount": 4, - "//SetPlayerColor": 2, - "//Kick": 1, - "return": 17, - "OnPlayerSpawn": 1, - "if": 28, - "IsPlayerNPC": 3, - "randSpawn": 16, - "SetPlayerInterior": 7, - "TogglePlayerClock": 2, - "ResetPlayerMoney": 3, - "GivePlayerMoney": 2, - "random": 3, - "sizeof": 3, - "gRandomSpawns_LosSantos": 5, - "SetPlayerPos": 6, - "SetPlayerFacingAngle": 6, - "else": 9, - "gRandomSpawns_SanFierro": 5, - "gRandomSpawns_LasVenturas": 5, - "SetPlayerSkillLevel": 11, - "WEAPONSKILL_PISTOL": 1, - "WEAPONSKILL_PISTOL_SILENCED": 1, - "WEAPONSKILL_DESERT_EAGLE": 1, - "WEAPONSKILL_SHOTGUN": 1, - "WEAPONSKILL_SAWNOFF_SHOTGUN": 1, - "WEAPONSKILL_SPAS12_SHOTGUN": 1, - "WEAPONSKILL_MICRO_UZI": 1, - "WEAPONSKILL_MP5": 1, - "WEAPONSKILL_AK47": 1, - "WEAPONSKILL_M4": 1, - "WEAPONSKILL_SNIPERRIFLE": 1, - "GivePlayerWeapon": 1, - "WEAPON_COLT45": 1, - "//GivePlayerWeapon": 1, - "WEAPON_MP5": 1, - "OnPlayerDeath": 1, - "killerid": 3, - "reason": 1, - "playercash": 4, - "INVALID_PLAYER_ID": 1, - "GetPlayerMoney": 1, - "ClassSel_SetupCharSelection": 2, - "SetPlayerCameraPos": 6, - "SetPlayerCameraLookAt": 6, - "ClassSel_InitCityNameText": 4, - "txtInit": 7, - "TextDrawUseBox": 2, - "TextDrawLetterSize": 2, - "TextDrawFont": 2, - "TextDrawSetShadow": 2, - "TextDrawSetOutline": 2, - "TextDrawColor": 2, - "xEEEEEEFF": 1, - "TextDrawBackgroundColor": 2, - "FF": 2, - "ClassSel_InitTextDraws": 2, - "TextDrawCreate": 4, - "TextDrawBoxColor": 1, - "BB": 1, - "TextDrawTextSize": 1, - "ClassSel_SetupSelectedCity": 3, - "TextDrawShowForPlayer": 4, - "TextDrawHideForPlayer": 10, - "ClassSel_SwitchToNextCity": 3, - "+": 19, - "PlayerPlaySound": 2, - "ClassSel_SwitchToPreviousCity": 2, - "<": 3, - "ClassSel_HandleCitySelection": 2, - "Keys": 3, - "ud": 2, - "lr": 4, - "GetPlayerKeys": 1, - "&": 1, - "KEY_FIRE": 1, - "TogglePlayerSpectating": 2, - "OnPlayerRequestClass": 1, - "classid": 1, - "GetPlayerState": 2, - "PLAYER_STATE_SPECTATING": 2, - "OnGameModeInit": 1, - "SetGameModeText": 1, - "ShowPlayerMarkers": 1, - "PLAYER_MARKERS_MODE_GLOBAL": 1, - "ShowNameTags": 1, - "SetNameTagDrawDistance": 1, - "EnableStuntBonusForAll": 1, - "DisableInteriorEnterExits": 1, - "SetWeather": 1, - "SetWorldTime": 1, - "//UsePlayerPedAnims": 1, - "//ManualVehicleEngineAndLights": 1, - "//LimitGlobalChatRadius": 1, - "AddPlayerClass": 69, - "//AddPlayerClass": 1, - "LoadStaticVehiclesFromFile": 17, - "printf": 1, - "OnPlayerUpdate": 1, - "IsPlayerConnected": 1, - "&&": 2, - "GetPlayerInterior": 1, - "GetPlayerWeapon": 2, - "SetPlayerArmedWeapon": 1, - "fists": 1, - "no": 1, - "syncing": 1, - "until": 1, - "they": 1, - "change": 1, - "their": 1, - "weapon": 1, - "WEAPON_MINIGUN": 1, - "Kick": 1 - }, - "PHP": { - "<": 11, - "php": 14, - "namespace": 28, - "Symfony": 24, - "Component": 24, - "Console": 17, - ";": 1383, - "use": 23, - "Input": 6, - "InputInterface": 4, - "ArgvInput": 2, - "ArrayInput": 3, - "InputDefinition": 2, - "InputOption": 15, - "InputArgument": 3, - "Output": 5, - "OutputInterface": 6, - "ConsoleOutput": 2, - "ConsoleOutputInterface": 2, - "Command": 6, - "HelpCommand": 2, - "ListCommand": 2, - "Helper": 3, - "HelperSet": 3, - "FormatterHelper": 2, - "DialogHelper": 2, - "class": 21, - "Application": 3, - "{": 974, - "private": 24, - "commands": 39, - "wantHelps": 4, - "false": 154, - "runningCommand": 5, - "name": 181, - "version": 8, - "catchExceptions": 4, - "autoExit": 4, - "definition": 3, - "helperSet": 6, - "public": 202, - "function": 205, - "__construct": 8, - "(": 2416, - ")": 2417, - "this": 928, - "-": 1271, - "true": 133, - "array": 296, - "getDefaultHelperSet": 2, - "getDefaultInputDefinition": 2, - "foreach": 94, - "getDefaultCommands": 2, - "as": 96, - "command": 41, - "add": 7, - "}": 972, - "run": 4, - "input": 20, - "null": 164, - "output": 60, - "if": 450, - "new": 74, - "try": 3, - "statusCode": 14, - "doRun": 2, - "catch": 3, - "Exception": 1, - "e": 18, - "throw": 19, - "instanceof": 8, - "renderException": 3, - "getErrorOutput": 2, - "else": 70, - "getCode": 1, - "is_numeric": 7, - "&&": 119, - "exit": 7, - "return": 305, - "getCommandName": 2, - "hasParameterOption": 7, - "setDecorated": 2, - "elseif": 31, - "setInteractive": 2, - "function_exists": 4, - "getHelperSet": 3, - "has": 7, - "inputStream": 2, - "get": 12, - "getInputStream": 1, - "posix_isatty": 1, - "setVerbosity": 2, - "VERBOSITY_QUIET": 1, - "VERBOSITY_VERBOSE": 2, - "writeln": 13, - "getLongVersion": 3, - "find": 17, - "setHelperSet": 1, - "getDefinition": 2, - "getHelp": 2, - "messages": 16, - "sprintf": 27, - "getOptions": 1, - "option": 5, - "[": 672, - "]": 672, - ".": 169, - "getName": 14, - "getShortcut": 2, - "getDescription": 3, - "implode": 8, - "PHP_EOL": 3, - "setCatchExceptions": 1, - "boolean": 4, - "Boolean": 4, - "setAutoExit": 1, - "setName": 1, - "getVersion": 3, - "setVersion": 1, - "register": 1, - "addCommands": 1, - "setApplication": 2, - "isEnabled": 1, - "getAliases": 3, - "alias": 87, - "isset": 101, - "InvalidArgumentException": 9, - "helpCommand": 3, - "setCommand": 1, - "getNamespaces": 3, - "namespaces": 4, - "extractNamespace": 7, - "array_values": 5, - "array_unique": 4, - "array_filter": 2, - "findNamespace": 4, - "allNamespaces": 3, - "n": 12, - "explode": 9, - "found": 4, - "i": 36, - "part": 10, - "abbrevs": 31, - "static": 6, - "getAbbreviations": 4, - "array_map": 2, - "p": 3, - "message": 12, - "<=>": 3, - "alternatives": 10, - "findAlternativeNamespace": 2, - "count": 32, - "getAbbreviationSuggestions": 4, - "searchName": 13, - "pos": 3, - "strrpos": 2, - "substr": 6, - "namespace.substr": 1, - "suggestions": 2, - "aliases": 8, - "findAlternativeCommands": 2, - "all": 11, - "substr_count": 1, - "+": 12, - "names": 3, - "for": 8, - "len": 11, - "strlen": 14, - "abbrev": 4, - "asText": 1, - "raw": 2, - "width": 7, - "sortCommands": 4, - "space": 5, - "space.": 1, - "asXml": 2, - "asDom": 2, - "dom": 12, - "DOMDocument": 2, - "formatOutput": 1, - "appendChild": 10, - "xml": 5, - "createElement": 6, - "commandsXML": 3, - "setAttribute": 2, - "namespacesXML": 3, - "namespaceArrayXML": 4, - "continue": 7, - "commandXML": 3, - "createTextNode": 1, - "node": 42, - "getElementsByTagName": 1, - "item": 9, - "importNode": 3, - "saveXml": 1, - "string": 5, - "encoding": 2, - "mb_detect_encoding": 1, - "mb_strlen": 1, - "do": 2, - "title": 3, - "get_class": 4, - "getTerminalWidth": 3, - "PHP_INT_MAX": 1, - "lines": 3, - "preg_split": 1, - "getMessage": 1, - "line": 10, - "str_split": 1, - "max": 2, - "str_repeat": 2, - "title.str_repeat": 1, - "line.str_repeat": 1, - "message.": 1, - "getVerbosity": 1, - "trace": 12, - "getTrace": 1, - "array_unshift": 2, - "getFile": 2, - "getLine": 2, - "type": 62, - "file": 3, - "while": 6, - "getPrevious": 1, - "getSynopsis": 1, - "protected": 59, - "defined": 5, - "ansicon": 4, - "getenv": 2, - "preg_replace": 4, - "preg_match": 6, - "getSttyColumns": 3, - "match": 4, - "getTerminalHeight": 1, - "trim": 3, - "getFirstArgument": 1, - "REQUIRED": 1, - "VALUE_NONE": 7, - "descriptorspec": 2, - "process": 10, - "proc_open": 1, - "pipes": 4, - "is_resource": 1, - "info": 5, - "stream_get_contents": 1, - "fclose": 2, - "proc_close": 1, - "namespacedCommands": 5, - "key": 64, - "ksort": 2, - "&": 19, - "limit": 3, - "parts": 4, - "array_pop": 1, - "array_slice": 1, - "callback": 5, - "findAlternatives": 3, - "collection": 3, - "call_user_func": 2, - "lev": 6, - "levenshtein": 2, - "3": 1, - "strpos": 15, - "values": 53, - "/": 1, - "||": 52, - "value": 53, - "asort": 1, - "array_keys": 7, - "BrowserKit": 1, - "DomCrawler": 5, - "Crawler": 2, - "Link": 3, - "Form": 4, - "Process": 1, - "PhpProcess": 2, - "abstract": 2, - "Client": 1, - "history": 15, - "cookieJar": 9, - "server": 20, - "request": 76, - "response": 33, - "crawler": 7, - "insulated": 7, - "redirect": 6, - "followRedirects": 5, - "History": 2, - "CookieJar": 2, - "setServerParameters": 2, - "followRedirect": 4, - "insulate": 1, - "class_exists": 2, - "RuntimeException": 2, - "array_merge": 32, - "setServerParameter": 1, - "getServerParameter": 1, - "default": 9, - "getHistory": 1, - "getCookieJar": 1, - "getCrawler": 1, - "getResponse": 1, - "getRequest": 1, - "click": 1, - "link": 10, - "submit": 2, - "getMethod": 6, - "getUri": 8, - "form": 7, - "setValues": 2, - "getPhpValues": 2, - "getPhpFiles": 2, - "method": 31, - "uri": 23, - "parameters": 4, - "files": 7, - "content": 4, - "changeHistory": 4, - "getAbsoluteUri": 2, - "isEmpty": 2, - "current": 4, - "parse_url": 3, - "PHP_URL_HOST": 1, - "PHP_URL_SCHEME": 1, - "Request": 3, - "allValues": 1, - "filterRequest": 2, - "doRequestInProcess": 2, - "doRequest": 2, - "filterResponse": 2, - "updateFromResponse": 1, - "getHeader": 2, - "createCrawlerFromContent": 2, - "getContent": 2, - "getScript": 2, - "sys_get_temp_dir": 2, - "isSuccessful": 1, - "getOutput": 3, - "unserialize": 1, - "LogicException": 4, - "addContent": 1, - "back": 2, - "requestFromRequest": 4, - "forward": 2, - "reload": 1, - "empty": 96, - "restart": 1, - "clear": 2, - "currentUri": 7, - "path": 20, - "PHP_URL_PATH": 1, - "path.": 1, - "getParameters": 1, - "getFiles": 3, - "getServer": 1, - "": 3, - "CakePHP": 6, - "tm": 6, - "Rapid": 2, - "Development": 2, - "Framework": 2, - "http": 14, - "cakephp": 4, - "org": 10, - "Copyright": 5, - "2005": 4, - "2012": 4, - "Cake": 7, - "Software": 5, - "Foundation": 4, - "Inc": 4, - "cakefoundation": 4, - "Licensed": 2, - "under": 2, - "The": 4, - "MIT": 4, - "License": 4, - "Redistributions": 2, - "of": 10, - "must": 2, - "retain": 2, - "the": 11, - "above": 2, - "copyright": 5, - "notice": 2, - "Project": 2, - "package": 2, - "Controller": 4, - "since": 2, - "v": 17, - "0": 4, - "2": 2, - "9": 1, - "license": 6, - "www": 4, - "opensource": 2, - "licenses": 2, - "mit": 2, - "App": 20, - "uses": 46, - "CakeResponse": 2, - "Network": 1, - "ClassRegistry": 9, - "Utility": 6, - "ComponentCollection": 2, - "View": 9, - "CakeEvent": 13, - "Event": 6, - "CakeEventListener": 4, - "CakeEventManager": 5, - "controller": 3, - "organization": 1, - "business": 1, - "logic": 1, - "Provides": 1, - "basic": 1, - "functionality": 1, - "such": 1, - "rendering": 1, - "views": 1, - "inside": 1, - "layouts": 1, - "automatic": 1, - "model": 34, - "availability": 1, - "redirection": 2, - "callbacks": 4, - "and": 5, - "more": 1, - "Controllers": 2, - "should": 1, - "provide": 1, - "a": 11, - "number": 1, - "action": 7, - "methods": 5, - "These": 1, - "are": 5, - "on": 4, - "that": 2, - "not": 2, - "prefixed": 1, - "with": 5, - "_": 1, - "Each": 1, - "serves": 1, - "an": 1, - "endpoint": 1, - "performing": 2, - "specific": 1, - "resource": 1, - "or": 9, - "resources": 1, - "For": 2, - "example": 2, - "adding": 1, - "editing": 1, - "object": 14, - "listing": 1, - "set": 26, - "objects": 5, - "You": 2, - "can": 2, - "access": 1, - "using": 2, - "contains": 1, - "POST": 1, - "GET": 1, - "FILES": 1, - "*": 25, - "were": 1, - "request.": 1, - "After": 1, - "required": 2, - "actions": 2, - "controllers": 2, - "responsible": 1, - "creating": 1, - "response.": 2, - "This": 1, - "usually": 1, - "takes": 1, - "generated": 1, - "possibly": 1, - "to": 6, - "another": 1, - "action.": 1, - "In": 1, - "either": 1, - "case": 31, - "allows": 1, - "you": 1, - "manipulate": 1, - "aspects": 1, - "created": 8, - "by": 2, - "Dispatcher": 1, - "based": 2, - "routing.": 1, - "By": 1, - "conventional": 1, - "names.": 1, - "/posts/index": 1, - "maps": 1, - "PostsController": 1, - "index": 5, - "re": 1, - "map": 1, - "urls": 1, - "Router": 5, - "connect": 1, - "@package": 2, - "Cake.Controller": 1, - "@property": 8, - "AclComponent": 1, - "Acl": 1, - "AuthComponent": 1, - "Auth": 1, - "CookieComponent": 1, - "Cookie": 1, - "EmailComponent": 1, - "Email": 1, - "PaginatorComponent": 1, - "Paginator": 1, - "RequestHandlerComponent": 1, - "RequestHandler": 1, - "SecurityComponent": 1, - "Security": 1, - "SessionComponent": 1, - "Session": 1, - "@link": 2, - "//book.cakephp.org/2.0/en/controllers.html": 1, - "*/": 2, - "extends": 3, - "Object": 4, - "implements": 3, - "helpers": 1, - "_responseClass": 1, - "viewPath": 3, - "layoutPath": 1, - "viewVars": 3, - "view": 5, - "layout": 5, - "autoRender": 6, - "autoLayout": 2, - "Components": 7, - "components": 1, - "viewClass": 10, - "ext": 1, - "plugin": 31, - "cacheAction": 1, - "passedArgs": 2, - "scaffold": 2, - "modelClass": 25, - "modelKey": 2, - "validationErrors": 50, - "_mergeParent": 4, - "_eventManager": 12, - "Inflector": 12, - "singularize": 4, - "underscore": 3, - "childMethods": 2, - "get_class_methods": 2, - "parentMethods": 2, - "array_diff": 3, - "CakeRequest": 5, - "setRequest": 2, - "parent": 14, - "__isset": 2, - "switch": 6, - "is_array": 37, - "list": 29, - "pluginSplit": 12, - "loadModel": 3, - "__get": 2, - "params": 34, - "load": 3, - "settings": 2, - "__set": 1, - "camelize": 3, - "array_key_exists": 11, - "invokeAction": 1, - "ReflectionMethod": 2, - "_isPrivateAction": 2, - "PrivateActionException": 1, - "invokeArgs": 1, - "ReflectionException": 1, - "_getScaffold": 2, - "MissingActionException": 1, - "privateAction": 4, - "isPublic": 1, - "in_array": 26, - "prefixes": 4, - "prefix": 2, - "Scaffold": 1, - "_mergeControllerVars": 2, - "pluginController": 9, - "pluginDot": 4, - "mergeParent": 2, - "is_subclass_of": 3, - "pluginVars": 3, - "appVars": 6, - "merge": 12, - "_mergeVars": 5, - "get_class_vars": 2, - "_mergeUses": 3, - "implementedEvents": 2, - "constructClasses": 1, - "init": 4, - "getEventManager": 13, - "attach": 4, - "startupProcess": 1, - "dispatch": 11, - "shutdownProcess": 1, - "httpCodes": 3, - "code": 4, - "id": 82, - "MissingModelException": 1, - "url": 18, - "status": 15, - "extract": 9, - "EXTR_OVERWRITE": 3, - "event": 35, - "//TODO": 1, - "Remove": 1, - "following": 1, - "when": 1, - "events": 1, - "fully": 1, - "migrated": 1, - "break": 19, - "breakOn": 4, - "collectReturn": 1, - "isStopped": 4, - "result": 21, - "_parseBeforeRedirect": 2, - "session_write_close": 1, - "header": 3, - "is_string": 7, - "codes": 3, - "array_flip": 1, - "send": 1, - "_stop": 1, - "resp": 6, - "compact": 8, - "one": 19, - "two": 6, - "data": 187, - "array_combine": 2, - "setAction": 1, - "args": 5, - "func_get_args": 5, - "unset": 22, - "call_user_func_array": 3, - "validate": 9, - "errors": 9, - "validateErrors": 1, - "invalidFields": 2, - "render": 3, - "className": 27, - "models": 6, - "keys": 19, - "currentModel": 2, - "currentObject": 6, - "getObject": 1, - "is_a": 1, - "location": 1, - "body": 1, - "referer": 5, - "local": 2, - "disableCache": 2, - "flash": 1, - "pause": 2, - "postConditions": 1, - "op": 9, - "bool": 5, - "exclusive": 2, - "cond": 5, - "arrayOp": 2, - "fields": 60, - "field": 88, - "fieldOp": 11, - "strtoupper": 3, - "paginate": 3, - "scope": 2, - "whitelist": 14, - "beforeFilter": 1, - "beforeRender": 1, - "beforeRedirect": 1, - "afterFilter": 1, - "beforeScaffold": 2, - "_beforeScaffold": 1, - "afterScaffoldSave": 2, - "_afterScaffoldSave": 1, - "afterScaffoldSaveError": 2, - "_afterScaffoldSaveError": 1, - "scaffoldError": 2, - "_scaffoldError": 1, - "php_help": 1, - "arg": 1, - "t": 26, - "php_permission": 1, - "TRUE": 1, - "php_eval": 1, - "global": 2, - "theme_path": 5, - "theme_info": 3, - "conf": 2, - "old_theme_path": 2, - "drupal_get_path": 1, - "dirname": 1, - "filename": 1, - "ob_start": 1, - "print": 1, - "eval": 1, - "ob_get_contents": 1, - "ob_end_clean": 1, - "_php_filter_tips": 1, - "filter": 1, - "format": 3, - "long": 2, - "FALSE": 2, - "base_url": 1, - "php_filter_info": 1, - "filters": 2, - "SHEBANG#!php": 4, - "": 1, - "aMenuLinks": 1, - "Array": 13, - "Blog": 1, - "SITE_DIR": 4, - "Photos": 1, - "photo": 1, - "About": 1, - "me": 1, - "about": 1, - "Contact": 1, - "contacts": 1, - "Field": 9, - "FormField": 3, - "ArrayAccess": 1, - "button": 6, - "DOMNode": 3, - "initialize": 2, - "getFormNode": 1, - "getValues": 3, - "isDisabled": 2, - "FileFormField": 3, - "hasValue": 1, - "getValue": 2, - "qs": 4, - "http_build_query": 3, - "parse_str": 2, - "queryString": 2, - "sep": 1, - "sep.": 1, - "getRawUri": 1, - "getAttribute": 10, - "remove": 4, - "offsetExists": 1, - "offsetGet": 1, - "offsetSet": 1, - "offsetUnset": 1, - "setNode": 1, - "nodeName": 13, - "parentNode": 1, - "FormFieldRegistry": 2, - "document": 6, - "root": 4, - "xpath": 2, - "DOMXPath": 1, - "query": 102, - "hasAttribute": 1, - "InputFormField": 2, - "ChoiceFormField": 2, - "addChoice": 1, - "TextareaFormField": 1, - "base": 8, - "segments": 13, - "getSegments": 4, - "target": 20, - "array_shift": 5, - "self": 1, - "create": 13, - "k": 7, - "setValue": 1, - "walk": 3, - "registry": 4, - "m": 5, - "relational": 2, - "mapper": 2, - "DBO": 2, - "backed": 2, - "mapping": 1, - "database": 2, - "tables": 5, - "PHP": 1, - "versions": 1, - "5": 1, - "Model": 5, - "10": 1, - "Validation": 1, - "String": 5, - "Set": 9, - "BehaviorCollection": 2, - "ModelBehavior": 1, - "ConnectionManager": 2, - "Xml": 2, - "Automatically": 1, - "selects": 1, - "table": 21, - "pluralized": 1, - "lowercase": 1, - "User": 1, - "is": 1, - "have": 2, - "at": 1, - "least": 1, - "primary": 3, - "key.": 1, - "Cake.Model": 1, - "//book.cakephp.org/2.0/en/models.html": 1, - "useDbConfig": 7, - "useTable": 12, - "displayField": 4, - "schemaName": 1, - "primaryKey": 38, - "_schema": 11, - "validationDomain": 1, - "tablePrefix": 8, - "tableToModel": 4, - "cacheQueries": 1, - "belongsTo": 7, - "hasOne": 2, - "hasMany": 2, - "hasAndBelongsToMany": 24, - "actsAs": 2, - "Behaviors": 6, - "cacheSources": 7, - "findQueryType": 3, - "recursive": 9, - "order": 4, - "virtualFields": 8, - "_associationKeys": 2, - "_associations": 5, - "__backAssociation": 22, - "__backInnerAssociation": 1, - "__backOriginalAssociation": 1, - "__backContainableAssociation": 1, - "_insertID": 1, - "_sourceConfigured": 1, - "findMethods": 3, - "ds": 3, - "addObject": 2, - "parentClass": 3, - "get_parent_class": 1, - "tableize": 2, - "_createLinks": 3, - "__call": 1, - "dispatchMethod": 1, - "getDataSource": 15, - "relation": 7, - "assocKey": 13, - "dynamic": 2, - "isKeySet": 1, - "AppModel": 1, - "_constructLinkedModel": 2, - "schema": 11, - "hasField": 7, - "setDataSource": 2, - "property_exists": 3, - "bindModel": 1, - "reset": 6, - "assoc": 75, - "assocName": 6, - "unbindModel": 1, - "_generateAssociation": 2, - "dynamicWith": 3, - "sort": 1, - "setSource": 1, - "tableName": 4, - "db": 45, - "method_exists": 5, - "sources": 3, - "listSources": 1, - "strtolower": 1, - "MissingTableException": 1, - "is_object": 2, - "SimpleXMLElement": 1, - "_normalizeXmlData": 3, - "toArray": 1, - "reverse": 1, - "_setAliasData": 2, - "modelName": 3, - "fieldSet": 3, - "fieldName": 6, - "fieldValue": 7, - "deconstruct": 2, - "getAssociated": 4, - "getColumnType": 4, - "useNewDate": 2, - "dateFields": 5, - "timeFields": 2, - "date": 9, - "val": 27, - "columns": 5, - "str_replace": 3, - "describe": 1, - "getColumnTypes": 1, - "trigger_error": 1, - "__d": 1, - "E_USER_WARNING": 1, - "cols": 7, - "column": 10, - "startQuote": 4, - "endQuote": 4, - "checkVirtual": 3, - "isVirtualField": 3, - "hasMethod": 2, - "getVirtualField": 1, - "filterKey": 2, - "defaults": 6, - "properties": 4, - "read": 2, - "conditions": 41, - "saveField": 1, - "options": 85, - "save": 9, - "fieldList": 1, - "_whitelist": 4, - "keyPresentAndEmpty": 2, - "exists": 6, - "validates": 60, - "updateCol": 6, - "colType": 4, - "time": 3, - "strtotime": 1, - "joined": 5, - "x": 4, - "y": 2, - "success": 10, - "cache": 2, - "_prepareUpdateFields": 2, - "update": 2, - "fInfo": 4, - "isUUID": 5, - "j": 2, - "array_search": 1, - "uuid": 3, - "updateCounterCache": 6, - "_saveMulti": 2, - "_clearCache": 2, - "join": 22, - "joinModel": 8, - "keyInfo": 4, - "withModel": 4, - "pluginName": 1, - "dbMulti": 6, - "newData": 5, - "newValues": 8, - "newJoins": 7, - "primaryAdded": 3, - "idField": 3, - "row": 17, - "keepExisting": 3, - "associationForeignKey": 5, - "links": 4, - "oldLinks": 4, - "delete": 9, - "oldJoin": 4, - "insertMulti": 1, - "foreignKey": 11, - "fkQuoted": 3, - "escapeField": 6, - "intval": 4, - "updateAll": 3, - "foreignKeys": 3, - "included": 3, - "array_intersect": 1, - "old": 2, - "saveAll": 1, - "numeric": 1, - "validateMany": 4, - "saveMany": 3, - "validateAssociated": 5, - "saveAssociated": 5, - "transactionBegun": 4, - "begin": 2, - "record": 10, - "saved": 18, - "commit": 2, - "rollback": 2, - "associations": 9, - "association": 47, - "notEmpty": 4, - "_return": 3, - "recordData": 2, - "cascade": 10, - "_deleteDependent": 3, - "_deleteLinks": 3, - "_collectForeignKeys": 2, - "savedAssociatons": 3, - "deleteAll": 2, - "records": 6, - "ids": 8, - "_id": 2, - "getID": 2, - "hasAny": 1, - "buildQuery": 2, - "is_null": 1, - "results": 22, - "resetAssociations": 3, - "_filterResults": 2, - "ucfirst": 2, - "modParams": 2, - "_findFirst": 1, - "state": 15, - "_findCount": 1, - "calculate": 2, - "expression": 1, - "_findList": 1, - "tokenize": 1, - "lst": 4, - "combine": 1, - "_findNeighbors": 1, - "prevVal": 2, - "return2": 6, - "_findThreaded": 1, - "nest": 1, - "isUnique": 1, - "is_bool": 1, - "sql": 1, - "echo": 2, - "Yii": 3, - "console": 3, - "bootstrap": 1, - "yiiframework": 2, - "com": 2, - "c": 1, - "2008": 1, - "LLC": 1, - "YII_DEBUG": 2, - "define": 2, - "fcgi": 1, - "doesn": 1, - "STDIN": 3, - "fopen": 1, - "stdin": 1, - "r": 1, - "require": 3, - "__DIR__": 3, - "vendor": 2, - "yiisoft": 1, - "yii2": 1, - "yii": 2, - "autoload": 1, - "config": 3, - "application": 2 - }, - "Pan": { - "object": 1, - "template": 1, - "pantest": 1, - ";": 32, - "xFF": 1, - "e": 2, - "-": 2, - "E10": 1, - "variable": 4, - "TEST": 2, - "to_string": 1, - "(": 8, - ")": 8, - "+": 2, - "value": 1, - "undef": 1, - "null": 1, - "error": 1, - "include": 1, - "{": 5, - "}": 5, - "pkg_repl": 2, - "PKG_ARCH_DEFAULT": 1, - "function": 1, - "show_things_view_for_stuff": 1, - "thing": 2, - "ARGV": 1, - "[": 2, - "]": 2, - "foreach": 1, - "i": 1, - "mything": 2, - "STUFF": 1, - "if": 1, - "return": 2, - "true": 2, - "else": 1, - "SELF": 1, - "false": 2, - "HERE": 1, - "<<": 1, - "EOF": 2, - "This": 1, - "example": 1, - "demonstrates": 1, - "an": 1, - "in": 1, - "line": 1, - "heredoc": 1, - "style": 1, - "config": 1, - "file": 1, - "main": 1, - "awesome": 1, - "small": 1, - "#This": 1, - "should": 1, - "be": 1, - "highlighted": 1, - "normally": 1, - "again.": 1 - }, - "Parrot Assembly": { - "SHEBANG#!parrot": 1, - ".pcc_sub": 1, - "main": 2, - "say": 1, - "end": 1 - }, - "Parrot Internal Representation": { - "SHEBANG#!parrot": 1, - ".sub": 1, - "main": 1, - "say": 1, - ".end": 1 - }, - "Pascal": { - "program": 1, - "gmail": 1, - ";": 6, - "uses": 1, - "Forms": 1, - "Unit2": 1, - "in": 1, - "{": 2, - "Form2": 2, - "}": 2, - "R": 1, - "*.res": 1, - "begin": 1, - "Application.Initialize": 1, - "Application.MainFormOnTaskbar": 1, - "True": 1, - "Application.CreateForm": 1, - "(": 1, - "TForm2": 1, - ")": 1, - "Application.Run": 1, - "end.": 1 - }, - "Perl": { - "package": 14, - "App": 131, - "Ack": 136, - ";": 1376, - "use": 88, - "warnings": 19, - "strict": 22, - "File": 54, - "Next": 27, - "Plugin": 2, - "Basic": 11, - "head1": 36, - "NAME": 6, - "-": 1075, - "A": 2, - "container": 1, - "for": 88, - "functions": 2, - "the": 153, - "ack": 38, - "program": 7, - "VERSION": 15, - "Version": 1, - "cut": 28, - "our": 34, - "COPYRIGHT": 7, - "BEGIN": 7, - "{": 1394, - "}": 1407, - "fh": 28, - "*STDOUT": 6, - "%": 82, - "types": 26, - "type_wanted": 20, - "mappings": 29, - "ignore_dirs": 12, - "input_from_pipe": 8, - "output_to_pipe": 12, - "dir_sep_chars": 10, - "is_cygwin": 6, - "is_windows": 12, - "Spec": 13, - "(": 1137, - ")": 1136, - "Glob": 4, - "Getopt": 6, - "Long": 6, - "_MTN": 2, - "blib": 2, - "CVS": 5, - "RCS": 2, - "SCCS": 2, - "_darcs": 2, - "_sgbak": 2, - "_build": 2, - "actionscript": 2, - "[": 200, - "qw": 35, - "as": 40, - "mxml": 2, - "]": 196, - "ada": 4, - "adb": 2, - "ads": 2, - "asm": 4, - "s": 35, - "batch": 2, - "bat": 2, - "cmd": 2, - "binary": 3, - "q": 5, - "Binary": 2, - "files": 42, - "defined": 54, - "by": 19, - "Perl": 9, - "T": 2, - "op": 2, - "default": 19, - "off": 4, - "tt": 4, - "tt2": 2, - "ttml": 2, - "vb": 4, - "bas": 2, - "cls": 2, - "frm": 2, - "ctl": 2, - "resx": 2, - "verilog": 2, - "v": 19, - "vh": 2, - "sv": 2, - "vhdl": 4, - "vhd": 2, - "vim": 4, - "yaml": 4, - "yml": 2, - "xml": 6, - "dtd": 2, - "xsl": 2, - "xslt": 2, - "ent": 2, - "while": 33, - "my": 458, - "type": 69, - "exts": 6, - "each": 14, - "if": 322, - "ref": 33, - "ext": 14, - "@": 54, - "push": 37, - "_": 104, - "mk": 2, - "mak": 2, - "not": 56, - "t": 21, - "p": 10, - "STDIN": 2, - "O": 4, - "eq": 62, - "/MSWin32/": 2, - "quotemeta": 5, - "catfile": 4, - "SYNOPSIS": 6, - "If": 15, - "you": 44, - "want": 7, - "to": 101, - "know": 4, - "about": 4, - "F": 24, - "": 13, - "see": 5, - "file": 57, - "itself.": 3, - "No": 4, - "user": 5, - "serviceable": 1, - "parts": 1, - "inside.": 1, - "is": 74, - "all": 28, - "that": 35, - "should": 8, - "this.": 1, - "FUNCTIONS": 1, - "head2": 34, - "read_ackrc": 4, - "Reads": 1, - "contents": 2, - "of": 67, - ".ackrc": 1, - "and": 92, - "returns": 4, - "arguments.": 1, - "sub": 232, - "@files": 12, - "ENV": 41, - "ACKRC": 2, - "@dirs": 4, - "HOME": 4, - "USERPROFILE": 2, - "dir": 27, - "grep": 17, - "bsd_glob": 4, - "GLOB_TILDE": 2, - "filename": 72, - "&&": 84, - "e": 21, - "open": 10, - "or": 51, - "die": 38, - "@lines": 21, - "/./": 2, - "/": 82, - "s*#/": 2, - "<$fh>": 4, - "chomp": 4, - "close": 22, - "s/": 28, - "+": 126, - "//": 9, - "return": 168, - "get_command_line_options": 4, - "Gets": 3, - "command": 16, - "line": 21, - "arguments": 2, - "does": 11, - "specific": 2, - "tweaking.": 1, - "opt": 291, - "pager": 19, - "ACK_PAGER_COLOR": 7, - "||": 52, - "ACK_PAGER": 5, - "getopt_specs": 6, - "m": 17, - "after_context": 16, - "before_context": 18, - "shift": 170, - "val": 26, - "break": 14, - "c": 6, - "count": 23, - "color": 38, - "ACK_COLOR_MATCH": 5, - "ACK_COLOR_FILENAME": 5, - "ACK_COLOR_LINENO": 4, - "column": 4, - "#": 106, - "ignore": 7, - "this": 22, - "option": 7, - "it": 30, - "handled": 2, - "beforehand": 2, - "f": 25, - "flush": 8, - "follow": 7, - "G": 11, - "heading": 18, - "h": 6, - "H": 6, - "i": 27, - "invert_file_match": 8, - "lines": 20, - "l": 17, - "regex": 42, - "n": 19, - "o": 17, - "output": 40, - "undef": 17, - "passthru": 9, - "print0": 7, - "Q": 7, - "show_types": 4, - "smart_case": 3, - "sort_files": 11, - "u": 10, - "w": 7, - "remove_dir_sep": 7, - "delete": 10, - "print_version_statement": 2, - "exit": 19, - "show_help": 3, - "@_": 45, - "show_help_types": 2, - "require": 13, - "Pod": 4, - "Usage": 4, - "pod2usage": 2, - "verbose": 2, - "exitval": 2, - "dummy": 2, - "wanted": 4, - "no//": 2, - "must": 7, - "be": 39, - "later": 2, - "exists": 31, - "else": 71, - "qq": 18, - "Unknown": 2, - "unshift": 4, - "@ARGV": 12, - "split": 15, - "ACK_OPTIONS": 5, - "def_types_from_ARGV": 5, - "filetypes_supported": 5, - "parser": 12, - "Parser": 4, - "new": 56, - "configure": 4, - "getoptions": 4, - "to_screen": 10, - "defaults": 16, - "eval": 8, - "Win32": 9, - "Console": 2, - "ANSI": 3, - "key": 20, - "value": 14, - "<": 15, - "join": 7, - "map": 10, - "@ret": 10, - "from": 20, - "warn": 22, - "..": 7, - "uniq": 4, - "@uniq": 2, - "sort": 9, - "a": 88, - "<=>": 2, - "b": 6, - "keys": 19, - "numerical": 2, - "occurs": 2, - "only": 11, - "once": 4, - "Go": 1, - "through": 10, - "look": 2, - "I": 68, - "<--type-set>": 1, - "foo=": 1, - "bar": 3, - "<--type-add>": 1, - "xml=": 1, - ".": 166, - "Remove": 1, - "them": 5, - "add": 9, - "supported": 1, - "filetypes": 8, - "i.e.": 2, - "into": 8, - "etc.": 3, - "@typedef": 8, - "td": 6, - "set": 12, - "Builtin": 4, - "cannot": 4, - "changed.": 4, - "ne": 11, - "delete_type": 5, - "Type": 2, - "exist": 5, - "creating": 3, - "with": 28, - "...": 2, - "unless": 39, - "@exts": 8, - ".//": 2, - "Cannot": 4, - "append": 2, - "Removes": 1, - "internal": 1, - "structures": 1, - "containing": 5, - "information": 2, - "type_wanted.": 1, - "Internal": 2, - "error": 4, - "builtin": 2, - "ignoredir_filter": 5, - "Standard": 1, - "filter": 12, - "pass": 1, - "L": 34, - "": 1, - "descend_filter.": 1, - "It": 3, - "true": 3, - "directory": 8, - "any": 4, - "ones": 1, - "we": 9, - "ignore.": 1, - "path": 29, - "This": 27, - "removes": 1, - "trailing": 1, - "separator": 4, - "there": 6, - "one": 9, - "its": 2, - "argument": 1, - "Returns": 10, - "list": 10, - "<$filename>": 1, - "could": 2, - "be.": 1, - "For": 5, - "example": 5, - "": 1, - "The": 22, - "filetype": 1, - "will": 9, - "C": 56, - "": 1, - "can": 30, - "skipped": 2, - "something": 3, - "avoid": 1, - "searching": 6, - "even": 4, - "under": 5, - "a.": 1, - "constant": 2, - "TEXT": 16, - "basename": 9, - ".*": 5, - "is_searchable": 8, - "lc_basename": 8, - "lc": 5, - "r": 18, - "B": 76, - "header": 17, - "SHEBANG#!#!": 2, - "ruby": 3, - "|": 31, - "lua": 2, - "erl": 2, - "hp": 2, - "ython": 2, - "d": 9, - "d.": 2, - "*": 8, - "b/": 4, - "ba": 2, - "k": 6, - "z": 2, - "sh": 2, - "/i": 2, - "search": 11, - "false": 1, - "regular": 3, - "expression": 9, - "found.": 4, - "www": 2, - "U": 2, - "y": 8, - "tr/": 2, - "x": 12, - "w/": 3, - "nOo_/": 2, - "_thpppt": 3, - "_get_thpppt": 3, - "print": 46, - "_bar": 3, - "<<": 10, - "&": 27, - "*I": 2, - "g": 7, - "#.": 6, - ".#": 4, - "I#": 2, - "#I": 6, - "#7": 4, - "results.": 2, - "on": 27, - "when": 19, - "used": 13, - "interactively": 6, - "no": 22, - "Print": 6, - "between": 4, - "results": 8, - "different": 3, - "files.": 6, - "group": 2, - "Same": 8, - "nogroup": 2, - "noheading": 2, - "nobreak": 2, - "Highlight": 2, - "matching": 15, - "text": 6, - "redirected": 2, - "Windows": 4, - "colour": 2, - "COLOR": 6, - "match": 24, - "lineno": 2, - "Set": 3, - "filenames": 7, - "matches": 7, - "numbers.": 2, - "Flush": 2, - "immediately": 2, - "non": 2, - "goes": 2, - "pipe": 4, - "finding": 2, - "Only": 7, - "found": 11, - "without": 3, - "searching.": 2, - "PATTERN": 8, - "specified.": 4, - "REGEX": 2, - "but": 4, - "REGEX.": 2, - "Sort": 2, - "lexically.": 3, - "invert": 2, - "Print/search": 2, - "handle": 3, - "do": 16, - "g/": 2, - "G.": 2, - "show": 3, - "Show": 2, - "which": 7, - "has.": 2, - "inclusion/exclusion": 2, - "All": 5, - "searched": 5, - "Ignores": 2, - ".svn": 3, - "other": 6, - "ignored": 6, - "directories": 9, - "unrestricted": 2, - "name": 60, - "Add/Remove": 2, - "dirs": 2, - "R": 2, - "recurse": 2, - "Recurse": 3, - "subdirectories": 2, - "END_OF_HELP": 2, - "VMS": 2, - "vd": 2, - "Term": 6, - "ANSIColor": 8, - "black": 3, - "on_yellow": 3, - "bold": 5, - "green": 3, - "yellow": 3, - "printing": 2, - "qr/": 13, - "last_output_line": 6, - "any_output": 10, - "keep_context": 8, - "@before": 16, - "before_starts_at_line": 10, - "after": 18, - "number": 4, - "still": 4, - "res": 59, - "next_text": 8, - "has_lines": 4, - "scalar": 3, - "m/": 12, - "regex/": 9, - "next": 9, - "print_match_or_context": 13, - "elsif": 26, - "last": 17, - "max": 12, - "nmatches": 61, - "show_filename": 35, - "context_overall_output_count": 6, - "print_blank_line": 2, - "is_binary": 4, - "search_resource": 7, - "is_match": 7, - "starting_line_no": 1, - "match_start": 5, - "match_end": 3, - "Prints": 4, - "out": 3, - "context": 1, - "around": 5, - "match.": 3, - "opts": 2, - "array": 7, - "line_no": 12, - "show_column": 4, - "display_filename": 8, - "colored": 6, - "print_first_filename": 2, - "sep": 8, - "output_func": 8, - "print_separator": 2, - "print_filename": 2, - "display_line_no": 4, - "print_line_no": 2, - "regex/go": 2, - "regex/Term": 2, - "substr": 2, - "/eg": 2, - "z/": 2, - "K/": 2, - "z//": 2, - "print_column_no": 2, - "scope": 4, - "TOTAL_COUNT_SCOPE": 2, - "total_count": 10, - "get_total_count": 4, - "reset_total_count": 4, - "search_and_list": 8, - "Optimized": 1, - "version": 2, - "lines.": 3, - "ors": 11, - "record": 3, - "show_total": 6, - "print_count": 4, - "print_count0": 2, - "filetypes_supported_set": 9, - "True/False": 1, - "are": 26, - "print_files": 4, - "iter": 23, - "returned": 3, - "iterator": 3, - "<$regex>": 1, - "<$one>": 1, - "stop": 1, - "first.": 1, - "<$ors>": 1, - "<\"\\n\">": 1, - "defines": 2, - "what": 15, - "filename.": 1, - "print_files_with_matches": 4, - "where": 4, - "was": 2, - "repo": 18, - "Repository": 11, - "next_resource": 6, - "print_matches": 4, - "tarballs_work": 4, - ".tar": 2, - ".gz": 2, - "Tar": 4, - "XXX": 4, - "Error": 2, - "checking": 2, - "needs_line_scan": 14, - "reset": 5, - "filetype_setup": 4, - "Minor": 1, - "housekeeping": 1, - "before": 1, - "go": 1, - "expand_filenames": 7, - "reference": 8, - "expanded": 3, - "globs": 1, - "EXPAND_FILENAMES_SCOPE": 4, - "argv": 12, - "attr": 6, - "foreach": 13, - "pattern": 10, - "@results": 14, - "didn": 2, - "ve": 2, - "tried": 2, - "load": 2, - "GetAttributes": 2, - "end": 10, - "attributes": 4, - "got": 2, - "get_starting_points": 4, - "starting": 2, - "@what": 14, - "reslash": 4, - "Assume": 2, - "current": 6, - "start_point": 4, - "_match": 8, - "target": 6, - "invert_flag": 4, - "get_iterator": 4, - "Return": 2, - "starting_point": 10, - "g_regex": 4, - "file_filter": 12, - "g_regex/": 6, - "Maybe": 2, - "is_interesting": 4, - "descend_filter": 11, - "error_handler": 5, - "msg": 5, - "follow_symlinks": 6, - "set_up_pager": 3, - "Unable": 2, - "going": 1, - "pipe.": 1, - "exit_from_ack": 5, - "Exit": 1, - "application": 15, - "correct": 1, - "code.": 2, - "otherwise": 2, - "handed": 1, - "in": 40, - "argument.": 1, - "rc": 11, - "LICENSE": 3, - "Copyright": 2, - "Andy": 2, - "Lester.": 2, - "free": 4, - "software": 3, - "redistribute": 4, - "and/or": 4, - "modify": 4, - "terms": 4, - "Artistic": 2, - "License": 2, - "v2.0.": 2, - "End": 3, - "SHEBANG#!perl": 6, - "##": 79, - "configuration": 3, - "options": 8, - "BASE_DIR": 1, - "CONFIG_FILE": 2, - "Config": 1, - "location": 5, - "DEBUG_LOG_FILE": 2, - "Specify": 2, - "create": 4, - "log": 4, - "writable": 2, - "nagios": 3, - "DEBUGLEVEL": 3, - "Nothing": 1, - "Errors": 1, - "Warnings": 1, - "Debug": 1, - "DEBUGOUTPUT": 8, - "STDERR": 5, - "STDOUT": 1, - "cgi": 4, - "Global": 1, - "vars": 1, - "DEBUG_TIMESTAMP": 5, - "Find": 1, - "how": 2, - "run": 3, - "ARGV": 5, - "test": 1, - "errors": 4, - "console": 1, - "read_config": 4, - "abort": 23, - "parse": 3, - "performance": 2, - "data": 5, - "started": 1, - "parse_perfdata": 2, - "CGI": 10, - "script": 1, - "web": 9, - "browser": 1, - "run_as_cgi": 2, - "some": 2, - "help": 3, - "info": 1, - "logfile": 1, - "write": 5, - "blank": 2, - "wrote": 1, - "anything...": 1, - "debug": 39, - "Program": 1, - "called": 5, - "graph_name": 18, - "param": 10, - "graph_iteration": 6, - "config": 67, - "display": 2, - "index": 2, - "graphs": 3, - "display_htmltemplate": 3, - "graph": 4, - "Display": 3, - "HTML": 6, - "page": 1, - "generate": 1, - "call": 4, - "rrdtool_cmdline": 11, - ".join": 5, - "expand": 1, - "variables": 1, - "rrdarchive": 1, - "f/": 1, - "rrdarchive/g": 1, - "t_start": 4, - "t_start/g": 1, - "t_end": 4, - "e/": 1, - "t_end/g": 1, - "t_descr": 3, - "d/": 1, - "t_descr/g": 1, - "Call": 1, - "rrdtool": 3, - "probably": 1, - "fixed": 1, - "better": 1, - "way": 3, - "like": 14, - "exec": 1, - "template": 3, - "variable": 3, - "substitution": 1, - "stuff": 1, - "": 1, - "big": 2, - "regex..": 1, - "/my": 1, - "varname": 8, - "date": 3, - "time": 6, - "localtime": 2, - "code": 10, - "return_html": 4, - "gn": 2, - "return_html.": 2, - "escape": 1, - "slash": 1, - "since": 2, - "were": 2, - "inside": 1, - "an": 17, - "displaying": 1, - "actual": 1, - "images": 1, - "iteration_id": 2, - "unknown": 1, - "/eig": 1, - "thought": 1, - "would": 6, - "never": 2, - "Process": 1, - "incoming": 1, - "check": 3, - "plugin": 1, - "insert": 1, - "values": 7, - "rrd": 3, - "archives": 2, - "rrd_updates": 13, - "Provide": 1, - "more": 3, - "symbolic": 1, - "names": 3, - "same": 4, - "macros": 1, - "LASTCHECK": 1, - "HOSTNAME": 2, - "SERVICEDESCR": 2, - "SERVICESTATE": 1, - "OUTPUT": 2, - "PERFDATA": 2, - "host_and_descr_found": 3, - "Loop": 4, - "host_regexes": 1, - "host_regex": 5, - "service_description_regexes": 1, - "service_regex": 4, - "host_regex/i": 1, - "service_regex/i": 1, - "InsertValue": 1, - "host": 1, - "service_description": 1, - "insert_value": 10, - "regexes": 4, - "output/perfdata": 1, - "regex_string": 1, - "regex_string/": 2, - "Insert": 1, - "RRD": 3, - "calling": 1, - "may": 4, - "several": 1, - "archive": 9, - "rrdarchive_filename": 3, - "Create": 1, - "Archive": 1, - "according": 1, - "rrdarchive_filename.": 3, - "rrdtool_cmdline.": 1, - "Check": 1, - "wheter": 1, - "Assemle": 1, - "result": 3, - "Read": 1, - "CONFIG": 2, - "line_counter": 2, - "": 1, - "@args": 11, - "shellwords": 1, - "orig_confline": 1, - "args": 37, - "uc": 1, - "INSERTVALUE": 1, - "rrd_filename": 2, - "rrdcreatetemplate": 4, - "hostname_regex": 4, - "servicedescr_regex": 4, - "regex_template": 3, - "verify": 3, - "hostname": 2, - "service": 1, - "description": 2, - "s*": 1, - "#/": 1, - "comment": 1, - "row": 1, - "nuthin": 1, - "RRDToolPath": 1, - "PlotTemplate": 1, - "htmltemplate": 2, - "parameters..": 2, - "@params": 7, - "GraphTimeTemplate": 1, - "time_template": 2, - "@t_descr": 2, - "workaround": 1, - "string": 6, - "RRDCreateTemplate": 1, - "ValueRegexTemplate": 1, - "template_name": 3, - "@regexes": 2, - "perfdata": 1, - "regex_what": 2, - "dsa_name": 2, - "RRDARCHIVEPATH": 1, - "HTMLTemplatePath": 1, - "GraphIndexTemplate": 1, - "GRAPH": 1, - "rrdfilename": 1, - "graphtimetemplate": 1, - "plottemplate": 1, - "Write": 1, - "output/logging": 1, - "level": 3, - "timestamp": 1, - "msg.": 2, - "SHEBANG#!#! perl": 4, - "examples/benchmarks/fib.pl": 1, - "Fibonacci": 2, - "Benchmark": 1, - "DESCRIPTION": 4, - "Calculates": 1, - "Number": 1, - "": 1, - "unspecified": 1, - "fib": 4, - "N": 2, - "SEE": 4, - "ALSO": 4, - "": 1, - "MAIN": 1, - "main": 3, - "env_is_usable": 3, - "th": 1, - "pt": 1, - "env": 76, - "@keys": 2, - "ACK_/": 1, - "@ENV": 1, - "load_colors": 1, - "ACK_SWITCHES": 1, - "Unbuffer": 1, - "mode": 1, - "build_regex": 3, - "nargs": 2, - "Resource": 5, - "file_matching": 2, - "check_regex": 2, - "finder": 1, - "FILE...": 1, - "DIRECTORY...": 1, - "designed": 1, - "replacement": 1, - "uses": 2, - "": 5, - "searches": 1, - "named": 3, - "input": 9, - "FILEs": 1, - "standard": 1, - "given": 10, - "PATTERN.": 1, - "By": 2, - "prints": 2, - "also": 7, - "actually": 1, - "let": 1, - "take": 5, - "advantage": 1, - ".wango": 1, - "won": 1, - "throw": 1, - "away": 1, - "because": 3, - "times": 2, - "symlinks": 1, - "than": 5, - "whatever": 1, - "specified": 3, - "line.": 4, - "default.": 2, - "item": 44, - "": 11, - "paths": 3, - "included": 1, - "search.": 1, - "entire": 3, - "matched": 1, - "against": 1, - "shell": 4, - "glob.": 1, - "<-i>": 5, - "<-w>": 2, - "<-v>": 3, - "<-Q>": 4, - "apply": 3, - "relative": 1, - "convenience": 1, - "shortcut": 2, - "<-f>": 6, - "<--group>": 2, - "<--nogroup>": 2, - "groups": 1, - "with.": 1, - "interactively.": 1, - "per": 1, - "grep.": 2, - "redirected.": 1, - "<-H>": 1, - "<--with-filename>": 1, - "<-h>": 1, - "<--no-filename>": 1, - "Suppress": 1, - "prefixing": 1, - "multiple": 5, - "searched.": 1, - "<--help>": 1, - "short": 1, - "statement.": 1, - "<--ignore-case>": 1, - "Ignore": 3, - "case": 3, - "strings.": 1, - "applies": 3, - "<-g>": 5, - "<-G>": 3, - "options.": 4, - "": 2, - "etc": 2, - "May": 2, - "directories.": 2, - "mason": 1, - "users": 4, - "wish": 1, - "include": 1, - "<--ignore-dir=data>": 1, - "<--noignore-dir>": 1, - "allows": 4, - "normally": 1, - "perhaps": 1, - "research": 1, - "<.svn/props>": 1, - "always": 5, - "simple": 2, - "name.": 1, - "Nested": 1, - "": 1, - "NOT": 1, - "supported.": 1, - "You": 4, - "need": 5, - "specify": 1, - "<--ignore-dir=foo>": 1, - "then": 4, - "foo": 6, - "taken": 1, - "account": 1, - "explicitly": 1, - "": 2, - "file.": 3, - "Multiple": 1, - "<--line>": 1, - "comma": 1, - "separated": 2, - "<--line=3,5,7>": 1, - "<--line=4-7>": 1, - "works.": 1, - "ascending": 1, - "order": 2, - "matter": 1, - "<-l>": 2, - "<--files-with-matches>": 1, - "instead": 4, - "text.": 1, - "<-L>": 1, - "<--files-without-matches>": 1, - "": 2, - "equivalent": 2, - "specifying": 1, - "explicitly.": 1, - "helpful": 2, - "don": 2, - "": 1, - "via": 1, - "": 4, - "": 4, - "environment": 2, - "variables.": 1, - "Using": 3, - "suppress": 3, - "grouping": 3, - "coloring": 3, - "piping": 3, - "does.": 2, - "<--passthru>": 1, - "whether": 1, - "they": 1, - "expression.": 1, - "Highlighting": 1, - "work": 3, - "though": 1, - "so": 4, - "highlight": 1, - "seeing": 1, - "tail": 1, - "/access.log": 1, - "<--print0>": 1, - "works": 1, - "conjunction": 1, - "null": 1, - "byte": 1, - "usual": 1, - "newline.": 1, - "dealing": 1, - "contain": 3, - "whitespace": 1, - "e.g.": 2, - "html": 1, - "xargs": 2, - "rm": 1, - "<--literal>": 1, - "Quote": 1, - "metacharacters": 2, - "treated": 1, - "literal.": 1, - "<-r>": 1, - "<-R>": 1, - "<--recurse>": 1, - "just": 2, - "here": 2, - "compatibility": 2, - "turning": 1, - "<--no-recurse>": 1, - "off.": 1, - "<--smart-case>": 1, - "<--no-smart-case>": 1, - "strings": 1, - "contains": 2, - "uppercase": 1, - "characters.": 1, - "similar": 1, - "": 1, - "vim.": 1, - "overrides": 2, - "option.": 1, - "<--sort-files>": 1, - "Sorts": 1, - "Use": 6, - "your": 20, - "listings": 1, - "deterministic": 1, - "runs": 1, - "<--show-types>": 1, - "Outputs": 1, - "associates": 1, - "Works": 1, - "<--thpppt>": 1, - "important": 1, - "Bill": 1, - "Cat": 1, - "logo.": 1, - "Note": 5, - "exact": 1, - "spelling": 1, - "<--thpppppt>": 1, - "important.": 1, - "make": 3, - "perl": 9, - "php": 2, - "python": 1, - "looks": 2, - "location.": 1, - "specifies": 1, - "placed": 1, - "front": 1, - "explicit": 1, - "Specifies": 4, - "recognized": 1, - "clear": 2, - "dark": 1, - "underline": 1, - "underscore": 2, - "blink": 1, - "reverse": 1, - "concealed": 1, - "red": 1, - "blue": 1, - "magenta": 1, - "on_black": 1, - "on_red": 1, - "on_green": 1, - "on_blue": 1, - "on_magenta": 1, - "on_cyan": 1, - "on_white.": 1, - "Case": 1, - "significant.": 1, - "Underline": 1, - "reset.": 1, - "alone": 1, - "sets": 4, - "foreground": 1, - "on_color": 1, - "background": 1, - "color.": 2, - "<--color-filename>": 1, - "printed": 1, - "<--color>": 1, - "mode.": 1, - "<--color-lineno>": 1, - "See": 1, - "": 1, - "specifications.": 1, - "such": 6, - "": 1, - "": 1, - "": 1, - "send": 1, - "output.": 1, - "except": 1, - "assume": 1, - "support": 2, - "both": 1, - "understands": 1, - "sequences.": 1, - "back": 4, - "ACK": 2, - "OTHER": 1, - "TOOLS": 1, - "Vim": 3, - "integration": 3, - "integrates": 1, - "easily": 2, - "editor.": 1, - "<.vimrc>": 1, - "grepprg": 1, - "That": 3, - "examples": 1, - "<-a>": 1, - "flags.": 1, - "Now": 1, - "step": 1, - "Dumper": 1, - "perllib": 1, - "Emacs": 1, - "Phil": 1, - "Jackson": 1, - "put": 1, - "together": 2, - "": 1, - "extension": 1, - "": 1, - "TextMate": 2, - "Pedro": 1, - "Melo": 1, - "who": 1, - "writes": 1, - "Shell": 2, - "Code": 1, - "greater": 1, - "normal": 1, - "<$?=256>": 1, - "": 1, - "backticks.": 1, - "used.": 1, - "at": 4, - "least": 1, - "returned.": 1, - "DEBUGGING": 1, - "PROBLEMS": 1, - "gives": 2, - "re": 3, - "expecting": 1, - "forgotten": 1, - "<--noenv>": 1, - "<.ackrc>": 1, - "remember.": 1, - "Put": 1, - "definitions": 1, - "it.": 1, - "smart": 1, - "too.": 1, - "there.": 1, - "working": 1, - "codesets": 1, - "tree": 2, - "ideal": 1, - "sending": 1, - "": 1, - "prefer": 1, - "doubt": 1, - "day": 1, - "find": 1, - "trouble": 1, - "spots": 1, - "website": 1, - "visitor.": 1, - "had": 1, - "problem": 1, - "loading": 1, - "": 1, - "took": 1, - "access": 2, - "scanned": 1, - "twice.": 1, - "aa.bb.cc.dd": 1, - "/path/to/access.log": 1, - "B5": 1, - "troublesome.gif": 1, - "first": 1, - "finds": 2, - "Apache": 2, - "IP.": 1, - "second": 1, - "troublesome": 1, - "GIF": 1, - "shows": 1, - "previous": 1, - "five": 1, - "case.": 1, - "Share": 1, - "knowledge": 1, - "Join": 1, - "mailing": 1, - "list.": 1, - "Send": 1, - "me": 1, - "tips": 1, - "here.": 1, - "FAQ": 1, - "Why": 3, - "isn": 1, - "doesn": 8, - "behavior": 3, - "driven": 1, - "filetype.": 1, - "": 1, - "kind": 1, - "ignores": 1, - "switch": 1, - "you.": 1, - "source": 2, - "compiled": 1, - "object": 6, - "control": 1, - "metadata": 1, - "wastes": 1, - "lot": 1, - "those": 2, - "well": 2, - "returning": 1, - "things": 2, - "great": 1, - "did": 1, - "replace": 3, - "read": 6, - "only.": 1, - "has": 3, - "perfectly": 1, - "good": 2, - "using": 5, - "<-p>": 1, - "<-n>": 1, - "switches.": 1, - "certainly": 2, - "select": 1, - "update.": 1, - "change": 1, - "PHP": 1, - "Unix": 1, - "Can": 1, - "recognize": 1, - "<.xyz>": 1, - "already": 2, - "program/package": 1, - "ack.": 2, - "Yes": 1, - "know.": 1, - "nothing": 1, - "suggest": 1, - "symlink": 1, - "points": 1, - "": 1, - "crucial": 1, - "benefits": 1, - "having": 1, - "Regan": 1, - "Slaven": 1, - "ReziE": 1, - "<0x107>": 1, - "Mark": 1, - "Stosberg": 1, - "David": 1, - "Alan": 1, - "Pisoni": 1, - "Adriano": 1, - "Ferreira": 1, - "James": 1, - "Keenan": 1, - "Leland": 1, - "Johnson": 1, - "Ricardo": 1, - "Signes": 1, - "Pete": 1, - "Krawczyk.": 1, - "files_defaults": 3, - "skip_dirs": 3, - "CORE": 3, - "curdir": 1, - "updir": 1, - "__PACKAGE__": 1, - "parms": 15, - "@queue": 8, - "_setup": 2, - "fullpath": 12, - "splice": 2, - "local": 5, - "wantarray": 3, - "_candidate_files": 2, - "sort_standard": 2, - "cmp": 2, - "sort_reverse": 1, - "@parts": 3, - "passed_parms": 6, - "copy": 4, - "parm": 1, - "hash": 11, - "badkey": 1, - "caller": 2, - "start": 7, - "dh": 4, - "opendir": 1, - "@newfiles": 5, - "sort_sub": 4, - "readdir": 1, - "has_stat": 3, - "catdir": 3, - "closedir": 1, - "": 1, - "these": 4, - "updated": 1, - "update": 1, - "message": 1, - "bak": 1, - "core": 1, - "swp": 1, - "min": 3, - "js": 1, - "1": 1, - "str": 12, - "regex_is_lc": 2, - "S": 1, - ".*//": 1, - "_my_program": 3, - "Basename": 2, - "FAIL": 12, - "Carp": 11, - "confess": 2, - "@ISA": 2, - "class": 8, - "self": 141, - "bless": 7, - "could_be_binary": 4, - "opened": 1, - "id": 6, - "*STDIN": 2, - "size": 5, - "_000": 1, - "buffer": 9, - "sysread": 1, - "regex/m": 1, - "seek": 4, - "readline": 1, - "nexted": 3, - "Fast": 3, - "XML": 2, - "Hash": 11, - "XS": 2, - "FindBin": 1, - "Bin": 3, - "#use": 1, - "lib": 2, - "_stop": 4, - "request": 11, - "SIG": 3, - "nginx": 2, - "external": 2, - "fcgi": 2, - "Ext_Request": 1, - "FCGI": 1, - "Request": 11, - "*STDERR": 1, - "int": 2, - "conv": 2, - "use_attr": 1, - "indent": 1, - "xml_decl": 1, - "tmpl_path": 2, - "tmpl": 5, - "nick": 1, - "parent": 5, - "third_party": 1, - "artist_name": 2, - "venue": 2, - "event": 2, - "zA": 1, - "Z0": 1, - "Content": 2, - "application/xml": 1, - "charset": 2, - "utf": 2, - "hash2xml": 1, - "text/html": 1, - "nError": 1, - "M": 1, - "system": 1, - "Foo": 11, - "Bar": 1, - "@array": 1, - "pod": 1, - "Catalyst": 10, - "PSGI": 10, - "How": 1, - "": 3, - "specification": 3, - "interface": 1, - "servers": 2, - "based": 2, - "applications": 2, - "frameworks.": 1, - "supports": 1, - "writing": 1, - "portable": 1, - "various": 2, - "methods": 4, - "standalone": 1, - "server": 2, - "mod_perl": 3, - "FastCGI": 2, - "": 3, - "implementation": 1, - "running": 1, - "applications.": 1, - "Engine": 1, - "XXXX": 1, - "classes": 2, - "environments": 1, - "been": 1, - "changed": 1, - "done": 2, - "implementing": 1, - "possible": 2, - "manually": 2, - "": 1, - "root": 1, - "application.": 1, - "own": 4, - ".psgi": 7, - "Writing": 2, - "alternate": 1, - "": 1, - "extensions": 1, - "implement": 2, - "": 1, - "": 1, - "": 1, - "simplest": 1, - "<.psgi>": 1, - "": 1, - "TestApp": 5, - "app": 2, - "psgi_app": 3, - "middleware": 2, - "components": 2, - "automatically": 2, - "": 1, - "applied": 1, - "psgi": 2, - "yourself.": 2, - "Details": 1, - "below.": 1, - "Additional": 1, - "": 1, - "What": 1, - "generates": 2, - "": 1, - "setting": 2, - "wrapped": 1, - "": 1, - "engine": 1, - "fixes": 1, - "uniform": 1, - "behaviour": 2, - "contained": 1, - "over": 2, - "": 1, - "": 1, - "override": 1, - "providing": 2, - "none": 1, - "MyApp": 1, - "Thus": 1, - "functionality": 1, - "ll": 1, - "An": 1, - "apply_default_middlewares": 2, - "method": 8, - "supplied": 1, - "wrap": 1, - "middlewares": 1, - "means": 3, - "auto": 1, - "generated": 1, - "": 1, - "": 1, - "AUTHORS": 2, - "Contributors": 1, - "Catalyst.pm": 1, - "library": 2, - "software.": 1, - "Plack": 25, - "_001": 1, - "HTTP": 16, - "Headers": 8, - "MultiValue": 9, - "Body": 2, - "Upload": 2, - "TempBuffer": 2, - "URI": 11, - "Escape": 6, - "_deprecated": 8, - "alt": 1, - "carp": 2, - "croak": 3, - "required": 2, - "address": 2, - "REMOTE_ADDR": 1, - "remote_host": 2, - "REMOTE_HOST": 1, - "protocol": 1, - "SERVER_PROTOCOL": 1, - "REQUEST_METHOD": 1, - "port": 1, - "SERVER_PORT": 2, - "REMOTE_USER": 1, - "request_uri": 1, - "REQUEST_URI": 2, - "path_info": 4, - "PATH_INFO": 3, - "script_name": 1, - "SCRIPT_NAME": 2, - "scheme": 3, - "secure": 2, - "body": 30, - "content_length": 4, - "CONTENT_LENGTH": 3, - "content_type": 5, - "CONTENT_TYPE": 2, - "session": 1, - "session_options": 1, - "logger": 1, - "cookies": 9, - "HTTP_COOKIE": 3, - "@pairs": 2, - "pair": 4, - "uri_unescape": 1, - "query_parameters": 3, - "uri": 11, - "query_form": 2, - "content": 8, - "_parse_request_body": 4, - "cl": 10, - "raw_body": 1, - "headers": 56, - "field": 2, - "HTTPS": 1, - "_//": 1, - "CONTENT": 1, - "COOKIE": 1, - "content_encoding": 5, - "referer": 3, - "user_agent": 3, - "body_parameters": 3, - "parameters": 8, - "query": 4, - "flatten": 3, - "uploads": 5, - "url_scheme": 1, - "params": 1, - "query_params": 1, - "body_params": 1, - "cookie": 6, - "get_all": 2, - "upload": 13, - "raw_uri": 1, - "base": 10, - "path_query": 1, - "_uri_base": 3, - "path_escape_class": 2, - "uri_escape": 3, - "QUERY_STRING": 3, - "canonical": 2, - "HTTP_HOST": 1, - "SERVER_NAME": 1, - "new_response": 4, - "Response": 16, - "ct": 3, - "cleanup": 1, - "spin": 2, - "chunk": 4, - "length": 1, - "rewind": 1, - "from_mixed": 2, - "@uploads": 3, - "@obj": 3, - "_make_upload": 2, - "__END__": 2, - "Portable": 2, - "app_or_middleware": 1, - "req": 28, - "finalize": 5, - "": 2, - "provides": 1, - "consistent": 1, - "API": 2, - "objects": 2, - "across": 1, - "environments.": 1, - "CAVEAT": 1, - "module": 2, - "intended": 1, - "developers": 3, - "framework": 2, - "rather": 2, - "directly": 1, - "recommended": 1, - "yet": 1, - "too": 1, - "low": 1, - "level.": 1, - "encouraged": 1, - "frameworks": 2, - "": 1, - "modules": 1, - "": 1, - "provide": 1, - "higher": 1, - "top": 1, - "PSGI.": 1, - "METHODS": 2, - "Some": 1, - "earlier": 1, - "versions": 1, - "deprecated": 1, - "Take": 1, - "": 1, - "Unless": 1, - "noted": 1, - "": 1, - "passing": 1, - "accessor": 1, - "set.": 1, - "": 2, - "request.": 1, - "uploads.": 2, - "": 2, - "": 1, - "objects.": 1, - "Shortcut": 6, - "content_encoding.": 1, - "content_length.": 1, - "content_type.": 1, - "header.": 2, - "referer.": 1, - "user_agent.": 1, - "GET": 1, - "POST": 1, - "CGI.pm": 2, - "compatible": 1, - "method.": 1, - "alternative": 1, - "accessing": 1, - "parameters.": 3, - "Unlike": 1, - "": 1, - "allow": 1, - "modifying": 1, - "@values": 1, - "convenient": 1, - "@fields": 1, - "Creates": 2, - "": 3, - "object.": 4, - "Handy": 1, - "remove": 2, - "dependency": 1, - "easy": 1, - "subclassing": 1, - "duck": 1, - "typing": 1, - "overriding": 1, - "generation": 1, - "middlewares.": 1, - "Parameters": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "store": 1, - "plain": 2, - "": 1, - "scalars": 1, - "references": 1, - "ARRAY": 1, - "twice": 1, - "efficiency.": 1, - "DISPATCHING": 1, - "wants": 1, - "dispatch": 1, - "route": 1, - "actions": 1, - "sure": 1, - "": 1, - "virtual": 1, - "regardless": 1, - "mounted.": 1, - "hosted": 1, - "scripts": 1, - "multiplexed": 1, - "tools": 1, - "": 1, - "idea": 1, - "subclass": 1, - "define": 1, - "uri_for": 2, - "So": 1, - "say": 1, - "link": 1, - "signoff": 1, - "": 1, - "empty.": 1, - "older": 1, - "instead.": 1, - "Cookie": 2, - "handling": 1, - "simplified": 1, - "encoding": 2, - "decoding": 1, - "totally": 1, - "up": 1, - "framework.": 1, - "Also": 1, - "": 1, - "now": 1, - "": 1, - "Simple": 1, - "longer": 1, - "have": 2, - "wacky": 1, - "simply": 1, - "Tatsuhiko": 2, - "Miyagawa": 2, - "Kazuhiro": 1, - "Osawa": 1, - "Tokuhiro": 2, - "Matsuno": 2, - "": 1, - "": 1, - "Util": 3, - "Accessor": 1, - "status": 17, - "Scalar": 2, - "redirect": 1, - "url": 2, - "clone": 1, - "_finalize_cookies": 2, - "/chr": 1, - "/ge": 1, - "LWS": 1, - "single": 1, - "SP": 1, - "//g": 1, - "CR": 1, - "LF": 1, - "char": 1, - "invalid": 1, - "header_field_names": 1, - "_body": 2, - "blessed": 1, - "overload": 1, - "Method": 1, - "_bake_cookie": 2, - "push_header": 1, - "@cookie": 7, - "domain": 3, - "_date": 2, - "expires": 7, - "httponly": 1, - "@MON": 1, - "Jan": 1, - "Feb": 1, - "Mar": 1, - "Apr": 1, - "Jun": 1, - "Jul": 1, - "Aug": 1, - "Sep": 1, - "Oct": 1, - "Nov": 1, - "Dec": 1, - "@WDAY": 1, - "Sun": 1, - "Mon": 1, - "Tue": 1, - "Wed": 1, - "Thu": 1, - "Fri": 1, - "Sat": 1, - "sec": 2, - "hour": 2, - "mday": 2, - "mon": 2, - "year": 3, - "wday": 2, - "gmtime": 1, - "sprintf": 1, - "WDAY": 1, - "MON": 1, - "response": 5, - "psgi_handler": 1, - "API.": 1, - "Sets": 2, - "gets": 2, - "": 1, - "alias.": 2, - "response.": 1, - "Setter": 2, - "either": 2, - "headers.": 1, - "body_str": 1, - "io": 1, - "body.": 1, - "IO": 1, - "Handle": 1, - "": 1, - "X": 2, - "text/plain": 1, - "gzip": 1, - "normalize": 1, - "string.": 1, - "Users": 1, - "responsible": 1, - "properly": 1, - "": 1, - "their": 1, - "corresponding": 1, - "": 2, - "everything": 1, - "": 1, - "": 2, - "": 1, - "": 1, - "": 1, - "integer": 1, - "epoch": 1, - "": 1, - "convert": 1, - "formats": 1, - "<+3M>": 1, - "reference.": 1, - "AUTHOR": 1, - "Test": 2, - "Base": 1, - "__DATA__": 1, - "Strict": 1 - }, - "Perl6": { - "token": 6, - "pod_formatting_code": 1, - "{": 29, - "": 1, - "<[A..Z]>": 1, - "*POD_IN_FORMATTINGCODE": 1, - "}": 27, - "": 1, - "[": 1, - "": 1, - "#": 13, - "N*": 1, - "role": 10, - "q": 5, - "stopper": 2, - "MAIN": 1, - "quote": 1, - ")": 19, - "backslash": 3, - "sym": 3, - "<\\\\>": 1, - "": 1, - "": 1, - "": 1, - "": 1, - ".": 1, - "method": 2, - "tweak_q": 1, - "(": 16, - "v": 2, - "self.panic": 2, - "tweak_qq": 1, - "qq": 5, - "does": 7, - "b1": 1, - "c1": 1, - "s1": 1, - "a1": 1, - "h1": 1, - "f1": 1, - "Too": 2, - "late": 2, - "for": 2, - "SHEBANG#!perl": 1, - "use": 1, - "v6": 1, - ";": 19, - "my": 10, - "string": 7, - "if": 1, - "eq": 1, - "say": 10, - "regex": 2, - "http": 1, - "-": 3, - "verb": 1, - "|": 9, - "multi": 2, - "line": 5, - "comment": 2, - "I": 1, - "there": 1, - "m": 2, - "even": 1, - "specialer": 1, - "nesting": 1, - "work": 1, - "<": 3, - "trying": 1, - "mixed": 1, - "delimiters": 1, - "": 1, - "arbitrary": 2, - "delimiter": 2, - "Hooray": 1, - "": 1, - "with": 9, - "whitespace": 1, - "<<": 1, - "more": 1, - "strings": 1, - "%": 1, - "hash": 1, - "Hash.new": 1, - "begin": 1, - "pod": 1, - "Here": 1, - "t": 2, - "highlighted": 1, - "table": 1, - "Of": 1, - "things": 1, - "A": 3, - "single": 3, - "declarator": 7, - "a": 8, - "keyword": 7, - "like": 7, - "Another": 2, - "block": 2, - "brace": 1, - "More": 2, - "blocks": 2, - "don": 2, - "x": 2, - "foo": 3, - "Rob": 1, - "food": 1, - "match": 1, - "sub": 1, - "something": 1, - "Str": 1, - "D": 1, - "value": 1, - "...": 1, - "s": 1, - "some": 2, - "stuff": 1, - "chars": 1, - "/": 1, - "": 1, - "": 1, - "roleq": 1 - }, - "PigLatin": { - "REGISTER": 1, - "SOME_JAR": 1, - ";": 4, - "A": 2, - "LOAD": 1, - "USING": 1, - "PigStorage": 1, - "(": 2, - ")": 2, - "AS": 1, - "name": 2, - "chararray": 1, - "age": 1, - "int": 1, - "-": 2, - "Load": 1, - "person": 1, - "B": 2, - "FOREACH": 1, - "generate": 1, - "DUMP": 1 - }, - "Pike": { - "#pike": 2, - "__REAL_VERSION__": 2, - "constant": 13, - "Generic": 1, - "__builtin.GenericError": 1, - ";": 149, - "Index": 1, - "__builtin.IndexError": 1, - "BadArgument": 1, - "__builtin.BadArgumentError": 1, - "Math": 1, - "__builtin.MathError": 1, - "Resource": 1, - "__builtin.ResourceError": 1, - "Permission": 1, - "__builtin.PermissionError": 1, - "Decode": 1, - "__builtin.DecodeError": 1, - "Cpp": 1, - "__builtin.CppError": 1, - "Compilation": 1, - "__builtin.CompilationError": 1, - "MasterLoad": 1, - "__builtin.MasterLoadError": 1, - "ModuleLoad": 1, - "__builtin.ModuleLoadError": 1, - "//": 85, - "Returns": 2, - "an": 2, - "Error": 2, - "object": 5, - "for": 1, - "any": 1, - "argument": 2, - "it": 2, - "receives.": 1, - "If": 1, - "the": 4, - "already": 1, - "is": 2, - "or": 1, - "empty": 1, - "does": 1, - "nothing.": 1, - "mkerror": 1, - "(": 218, - "mixed": 8, - "error": 14, - ")": 218, - "{": 51, - "if": 35, - "UNDEFINED": 1, - "return": 41, - "objectp": 1, - "&&": 2, - "-": 50, - "is_generic_error": 1, - "arrayp": 2, - "Error.Generic": 3, - "@error": 1, - "stringp": 1, - "sprintf": 3, - "}": 51, - "A": 2, - "string": 20, - "wrapper": 1, - "that": 1, - "pretends": 1, - "to": 7, - "be": 3, - "a": 6, - "@": 36, - "[": 45, - "Stdio.File": 32, - "]": 45, - "in": 1, - "addition": 1, - "some": 1, - "features": 1, - "of": 3, - "Stdio.FILE": 4, - "object.": 2, - "This": 1, - "can": 2, - "used": 1, - "distinguish": 1, - "FakeFile": 3, - "from": 1, - "real": 1, - "is_fake_file": 1, - "protected": 12, - "data": 34, - "int": 31, - "ptr": 27, - "r": 10, - "w": 6, - "mtime": 4, - "function": 21, - "read_cb": 5, - "read_oob_cb": 5, - "write_cb": 5, - "write_oob_cb": 5, - "close_cb": 5, - "@seealso": 33, - "close": 2, - "void": 25, - "|": 14, - "direction": 5, - "lower_case": 2, - "||": 2, - "cr": 2, - "has_value": 4, - "cw": 2, - "@decl": 1, - "create": 3, - "type": 11, - "pointer": 1, - "_data": 3, - "_ptr": 2, - "time": 3, - "else": 5, - "make_type_str": 3, - "+": 19, - "dup": 2, - "this_program": 3, - "Always": 3, - "returns": 4, - "errno": 2, - "size": 3, - "and": 1, - "creation": 1, - "string.": 2, - "Stdio.Stat": 3, - "stat": 1, - "st": 6, - "sizeof": 21, - "ctime": 1, - "atime": 1, - "line_iterator": 2, - "String.SplitIterator": 3, - "trim": 2, - "id": 3, - "query_id": 2, - "set_id": 2, - "_id": 2, - "read_function": 2, - "nbytes": 2, - "lambda": 1, - "read": 3, - "peek": 2, - "float": 1, - "timeout": 1, - "query_address": 2, - "is_local": 1, - "len": 4, - "not_all": 1, - "<": 3, - "start": 1, - "zero_type": 1, - "start..ptr": 1, - "gets": 2, - "ret": 7, - "sscanf": 1, - "getchar": 2, - "c": 4, - "catch": 1, - "unread": 2, - "s": 5, - "..ptr": 2, - "ptr..": 1, - "seek": 2, - "pos": 8, - "mult": 2, - "add": 2, - "pos*mult": 1, - "strlen": 2, - "sync": 2, - "tell": 2, - "truncate": 2, - "length": 2, - "..length": 1, - "write": 2, - "array": 1, - "str": 12, - "...": 2, - "extra": 2, - "str*": 1, - "@extra": 1, - "..": 1, - "set_blocking": 3, - "set_blocking_keep_callbacks": 3, - "set_nonblocking": 1, - "rcb": 2, - "wcb": 2, - "ccb": 2, - "rocb": 2, - "wocb": 2, - "set_nonblocking_keep_callbacks": 1, - "set_close_callback": 2, - "cb": 10, - "set_read_callback": 2, - "set_read_oob_callback": 2, - "set_write_callback": 2, - "set_write_oob_callback": 2, - "query_close_callback": 2, - "query_read_callback": 2, - "query_read_oob_callback": 2, - "query_write_callback": 2, - "query_write_oob_callback": 2, - "_sprintf": 1, - "t": 2, - "casted": 1, - "cast": 1, - "switch": 1, - "case": 2, - "this": 5, - "Sizeof": 1, - "on": 1, - "its": 1, - "contents.": 1, - "_sizeof": 1, - "@ignore": 1, - "#define": 1, - "NOPE": 20, - "X": 2, - "args": 1, - "#X": 1, - "assign": 1, - "async_connect": 1, - "connect": 1, - "connect_unix": 1, - "open": 1, - "open_socket": 1, - "pipe": 1, - "tcgetattr": 1, - "tcsetattr": 1, - "dup2": 1, - "lock": 1, - "We": 4, - "could": 4, - "implement": 4, - "mode": 1, - "proxy": 1, - "query_fd": 1, - "read_oob": 1, - "set_close_on_exec": 1, - "set_keepalive": 1, - "trylock": 1, - "write_oob": 1, - "@endignore": 1 - }, - "Pod": { - "Id": 1, - "contents.pod": 1, - "v": 1, - "/05/04": 1, - "tower": 1, - "Exp": 1, - "begin": 3, - "html": 7, - "": 1, - "end": 4, - "head1": 2, - "Net": 12, - "Z3950": 12, - "AsyncZ": 16, - "head2": 3, - "Intro": 1, - "adds": 1, - "an": 3, - "additional": 1, - "layer": 1, - "of": 19, - "asynchronous": 4, - "support": 1, - "for": 11, - "the": 29, - "module": 6, - "through": 1, - "use": 1, - "multiple": 1, - "forked": 1, - "processes.": 1, - "I": 8, - "hope": 1, - "that": 9, - "users": 1, - "will": 1, - "also": 2, - "find": 1, - "it": 3, - "provides": 1, - "a": 8, - "convenient": 2, - "front": 1, - "to": 9, - "C": 13, - "": 1, - ".": 5, - "My": 1, - "initial": 1, - "idea": 1, - "was": 1, - "write": 1, - "something": 2, - "would": 1, - "provide": 1, - "means": 1, - "processing": 1, - "and": 14, - "formatting": 2, - "Z39.50": 1, - "records": 4, - "which": 3, - "did": 1, - "using": 1, - "": 2, - "synchronous": 1, - "code.": 1, - "But": 3, - "wanted": 1, - "could": 1, - "handle": 1, - "queries": 1, - "large": 1, - "numbers": 1, - "servers": 1, - "at": 1, - "one": 1, - "session.": 1, - "Working": 1, - "on": 1, - "this": 3, - "part": 3, - "my": 1, - "project": 1, - "found": 1, - "had": 1, - "trouble": 1, - "with": 6, - "features": 1, - "so": 1, - "ended": 1, - "up": 1, - "what": 1, - "have": 3, - "here.": 1, - "give": 2, - "more": 4, - "detailed": 4, - "account": 2, - "in": 9, - "": 4, - "href=": 5, - "": 1, - "DESCRIPTION": 1, - "": 1, - "": 5, - "section": 2, - "": 5, - "AsyncZ.html": 2, - "": 6, - "pod": 3, - "B": 1, - "": 1, - "": 1, - "cut": 3, - "Documentation": 1, - "over": 2, - "item": 10, - "AsyncZ.pod": 1, - "This": 4, - "is": 8, - "starting": 2, - "point": 2, - "gives": 2, - "overview": 2, - "describes": 2, - "basic": 4, - "mechanics": 2, - "its": 2, - "workings": 2, - "details": 5, - "particulars": 2, - "objects": 2, - "methods.": 2, - "see": 2, - "L": 1, - "": 1, - "explanations": 2, - "sample": 2, - "scripts": 2, - "come": 2, - "": 2, - "distribution.": 2, - "Options.pod": 1, - "document": 2, - "various": 2, - "options": 2, - "can": 4, - "be": 2, - "set": 2, - "modify": 2, - "behavior": 2, - "Index": 1, - "Report.pod": 2, - "deals": 2, - "how": 4, - "are": 7, - "treated": 2, - "line": 4, - "by": 2, - "you": 4, - "affect": 2, - "apearance": 2, - "record": 2, - "s": 2, - "HOW": 2, - "TO.": 2, - "back": 2, - "": 1, - "The": 6, - "Modules": 1, - "There": 2, - "modules": 5, - "than": 2, - "there": 2, - "documentation.": 2, - "reason": 2, - "only": 2, - "full": 2, - "complete": 2, - "access": 9, - "other": 2, - "either": 2, - "internal": 2, - "": 1, - "or": 4, - "accessed": 2, - "indirectly": 2, - "indirectly.": 2, - "head3": 1, - "Here": 1, - "main": 1, - "direct": 2, - "documented": 7, - "": 4, - "": 2, - "documentation": 4, - "ErrMsg": 1, - "User": 1, - "error": 1, - "message": 1, - "handling": 2, - "indirect": 2, - "Errors": 1, - "Error": 1, - "debugging": 1, - "limited": 2, - "Report": 1, - "Module": 1, - "reponsible": 1, - "fetching": 1, - "ZLoop": 1, - "Event": 1, - "loop": 1, - "child": 3, - "processes": 3, - "no": 2, - "not": 2, - "ZSend": 1, - "Connection": 1, - "Options": 2, - "_params": 1, - "INDEX": 1 - }, - "PogoScript": { - "httpism": 1, - "require": 3, - "async": 1, - "resolve": 2, - ".resolve": 1, - "exports.squash": 1, - "(": 38, - "url": 5, - ")": 38, - "html": 15, - "httpism.get": 2, - ".body": 2, - "squash": 2, - "callback": 2, - "replacements": 6, - "sort": 2, - "links": 2, - "in": 11, - ".concat": 1, - "scripts": 2, - "for": 2, - "each": 2, - "@": 6, - "r": 1, - "{": 3, - "r.url": 1, - "r.href": 1, - "}": 3, - "async.map": 1, - "get": 2, - "err": 2, - "requested": 2, - "replace": 2, - "replacements.sort": 1, - "a": 1, - "b": 1, - "a.index": 1, - "-": 1, - "b.index": 1, - "replacement": 2, - "replacement.body": 1, - "replacement.url": 1, - "i": 3, - "parts": 3, - "rep": 1, - "rep.index": 1, - "+": 2, - "rep.length": 1, - "html.substr": 1, - "link": 2, - "reg": 5, - "r/": 2, - "": 1, - "]": 7, - "*href": 1, - "[": 5, - "*": 2, - "/": 2, - "|": 2, - "s*": 2, - "<\\/link\\>": 1, - "/gi": 2, - "elements": 5, - "matching": 3, - "as": 3, - "script": 2, - "": 1, - "*src": 1, - "<\\/script\\>": 1, - "tag": 3, - "while": 1, - "m": 1, - "reg.exec": 1, - "elements.push": 1, - "index": 1, - "m.index": 1, - "length": 1, - "m.0.length": 1, - "href": 1, - "m.1": 1 - }, - "PostScript": { - "%": 23, - "PS": 1, - "-": 4, - "Adobe": 1, - "Creator": 1, - "Aaron": 1, - "Puchert": 1, - "Title": 1, - "The": 1, - "Sierpinski": 1, - "triangle": 1, - "Pages": 1, - "PageOrder": 1, - "Ascend": 1, - "BeginProlog": 1, - "/pageset": 1, - "{": 4, - "scale": 1, - "set": 1, - "cm": 1, - "translate": 1, - "setlinewidth": 1, - "}": 4, - "def": 2, - "/sierpinski": 1, - "dup": 4, - "gt": 1, - "[": 6, - "]": 6, - "concat": 5, - "sub": 3, - "sierpinski": 4, - "newpath": 1, - "moveto": 1, - "lineto": 2, - "closepath": 1, - "fill": 1, - "ifelse": 1, - "pop": 1, - "EndProlog": 1, - "BeginSetup": 1, - "<<": 1, - "/PageSize": 1, - "setpagedevice": 1, - "A4": 1, - "EndSetup": 1, - "Page": 1, - "Test": 1, - "pageset": 1, - "sqrt": 1, - "showpage": 1, - "EOF": 1 - }, - "PowerShell": { - "Write": 2, - "-": 2, - "Host": 2, - "function": 1, - "hello": 1, - "(": 1, - ")": 1, - "{": 1, - "}": 1 - }, - "Processing": { - "void": 2, - "setup": 1, - "(": 17, - ")": 17, - "{": 2, - "size": 1, - ";": 15, - "background": 1, - "noStroke": 1, - "}": 2, - "draw": 1, - "fill": 6, - "triangle": 2, - "rect": 1, - "quad": 1, - "ellipse": 1, - "arc": 1, - "PI": 1, - "TWO_PI": 1 - }, - "Prolog": { - "-": 354, - "module": 4, - "(": 1165, - "cpa_admin": 1, - "[": 291, - "change_password_form//1": 1, - "]": 289, - ")": 1162, - ".": 235, - "use_module": 21, - "user": 45, - "user_db": 1, - "library": 19, - "http/http_parameters": 1, - "http/http_session": 1, - "http/html_write": 1, - "http/html_head": 1, - "http/mimetype": 1, - "http/http_dispatch": 1, - "url": 1, - "debug": 5, - "lists": 1, - "option": 8, - "http_settings": 1, - "http_handler": 20, - "cliopatria": 38, - "list_users": 13, - "create_admin": 3, - "add_user_form": 4, - "add_openid_server_form": 4, - "add_user": 6, - "self_register": 4, - "add_openid_server": 3, - "edit_user_form": 7, - "edit_user": 4, - "del_user": 5, - "edit_openid_server_form": 6, - "edit_openid_server": 4, - "del_openid_server": 4, - "change_password_form": 7, - "change_password": 5, - "login_form": 4, - "user_login": 4, - "user_logout": 4, - "settings": 4, - "save_settings": 3, - "%": 194, - "+": 47, - "Request": 46, - "HTTP": 4, - "Handler": 1, - "listing": 1, - "registered": 3, - "users.": 2, - "_Request": 11, - "authorized": 13, - "admin": 31, - "if_allowed": 4, - "edit": 15, - "true": 32, - "UserOptions": 5, - "openid": 5, - "OpenIDOptions": 2, - "reply_html_page": 15, - "default": 16, - "title": 13, - "h1": 15, - "user_table": 3, - "p": 11, - "action": 18, - "location_by_id": 13, - "openid_server_table": 4, - "Token": 2, - "Options": 43, - "logged_on": 4, - "User": 77, - "anonymous": 2, - "catch": 2, - "check_permission": 1, - "_": 62, - "fail": 3, - "//": 7, - "HTML": 4, - "component": 3, - "generating": 1, - "a": 25, - "table": 9, - "of": 10, - "{": 22, - "setof": 3, - "U": 2, - "current_user": 6, - "Users": 2, - "}": 22, - "html": 25, - "class": 14, - "block": 2, - "tr": 16, - "th": 12, - "|": 44, - "T": 4, - "user_property": 8, - "realname": 18, - "Name": 19, - "findall": 1, - "Idle": 6, - "Login": 9, - "connection": 1, - "Pairs0": 2, - "keysort": 1, - "Pairs": 4, - "OnLine": 4, - ";": 37, - "length": 9, - "N": 7, - "online": 3, - "td": 20, - "on_since": 3, - "idle": 3, - "edit_user_button": 3, - "href": 6, - "encode": 4, - "_Idle": 1, - "_Connections": 2, - "format_time": 1, - "string": 10, - "Date": 2, - "_Login": 1, - "mmss_duration": 2, - "String": 10, - "Time": 3, - "in": 1, - "seconds": 1, - "Secs": 4, - "is": 24, - "round": 1, - "Hour": 2, - "Min": 4, - "mod": 2, - "Sec": 2, - "format": 9, - "Create": 2, - "the": 14, - "administrator": 1, - "login.": 2, - "throw": 12, - "error": 13, - "permission_error": 4, - "create": 3, - "context": 3, - "align": 16, - "center": 6, - "new_user_form": 3, - "real_name": 2, - "Form": 3, - "to": 19, - "register": 3, - "user.": 2, - "value": 11, - "PermUser": 3, - "form": 14, - "method": 6, - "input": 25, - "pwd1": 5, - "type": 16, - "password": 21, - "pwd2": 5, - "permissions": 5, - "buttons": 5, - "colspan": 6, - "right": 11, - "submit": 6, - "Label": 10, - "name": 8, - "size": 5, - "Only": 1, - "provide": 1, - "field": 4, - "if": 4, - "this": 1, - "not": 1, - "already": 2, - "given.": 1, - "This": 2, - "because": 1, - "firefox": 1, - "determines": 1, - "login": 3, - "from": 3, - "text": 6, - "immediately": 1, - "above": 1, - "entry.": 1, - "Other": 1, - "browsers": 1, - "may": 1, - "do": 1, - "it": 1, - "different": 1, - "so": 1, - "only": 2, - "having": 1, - "one": 1, - "probably": 1, - "savest": 1, - "solution.": 1, - "RealName": 13, - "hidden": 7, - "_Options": 1, - "API": 1, - "new": 6, - "The": 3, - "current": 3, - "must": 3, - "have": 1, - "administrative": 2, - "rights": 2, - "or": 3, - "database": 1, - "be": 6, - "empty.": 1, - "FirstUser": 2, - "http_parameters": 10, - "Password": 13, - "Retype": 4, - "read": 13, - "Read": 12, - "write": 11, - "Write": 12, - "Admin": 12, - "attribute_declarations": 10, - "attribute_decl": 21, - "password_mismatch": 2, - "password_hash": 3, - "Hash": 6, - "phrase": 6, - "allow": 17, - "Allow": 11, - "user_add": 3, - "reply_login": 5, - "Self": 1, - "and": 6, - "enable_self_register": 3, - "set": 2, - "true.": 1, - "limited": 1, - "annotate": 2, - "access.": 1, - "Returns": 1, - "forbidden": 3, - "false": 5, - "exists": 1, - "http_location_by_id": 1, - "MyUrl": 3, - "setting": 1, - "http_reply": 3, - "properties": 3, - "User.": 1, - "b": 6, - "i": 1, - "Term": 16, - "..": 11, - "Value": 15, - "O2": 6, - "p_name": 2, - "permission_checkbox": 4, - "Actions": 3, - "openid_server_property": 3, - "pterm": 5, - "Action": 17, - "memberchk": 4, - "Opts": 4, - "checked": 2, - "def_user_permissions": 3, - "DefPermissions": 2, - "checkbox": 1, - "Handle": 3, - "reply": 3, - "form.": 2, - "optional": 6, - "description": 18, - "modify_user": 2, - "modify_permissions": 2, - "Property": 6, - "_Name": 2, - "var": 7, - "set_user_property": 3, - "Access": 2, - "on": 2, - "_Access": 1, - "off": 5, - "_Repositiory": 2, - "_Action": 3, - "Delete": 2, - "delete": 2, - "user_del": 1, - "change": 2, - "context_error": 2, - "not_logged_in": 2, - "UserID": 1, - "that": 2, - "shows": 1, - "for": 4, - "changing": 1, - "UserID.": 1, - "id": 3, - "user_or_old": 3, - "pwd0": 2, - "handler": 2, - "password.": 1, - "logged": 1, - "on.": 1, - "New": 3, - "existence_error": 1, - "validate_password": 2, - "presents": 1, - "If": 2, - "there": 1, - "parameter": 2, - "return_to": 3, - "openid.return_to": 1, - "using": 1, - "redirect": 1, - "given": 2, - "URL.": 1, - "Otherwise": 1, - "display": 1, - "welcome": 1, - "page.": 1, - "ReturnTo": 6, - "Extra": 3, - "moved_temporary": 1, - "Logout": 1, - "logout": 1, - "Param": 1, - "DeclObtions": 1, - "semidet.": 4, - "Provide": 1, - "reusable": 1, - "declarations": 1, - "calls": 2, - "http_parameters/3.": 1, - "openid_server": 9, - "bool": 4, - "Def": 2, - "oneof": 1, - "Return": 1, - "an": 3, - "page": 1, - "add": 2, - "OpenID": 4, - "server.": 1, - "new_openid_form": 2, - "new_openid_form//": 1, - "det.": 5, - "Present": 1, - "provider.": 1, - "openid_description": 1, - "code": 2, - "canonical_url": 1, - "URL0": 2, - "URL": 4, - "parse_url": 2, - "Parts": 2, - "Server": 30, - "openid_property": 2, - "List": 1, - "servers": 1, - "S": 2, - "openid_current_server": 1, - "Servers": 2, - "openid_list_servers": 4, - "H": 2, - "openid_list_server": 2, - "openid_field": 3, - "edit_openid_button": 3, - "Field": 2, - "server": 1, - "Description": 2, - "modify_openid": 2, - "openid_modify_permissions": 2, - "openid_set_property": 2, - "openid_del_server": 1, - "Show": 1, - "settings.": 3, - "has": 1, - "editing": 1, - "edit_settings": 2, - "Edit": 4, - "http_show_settings": 1, - "hide_module": 1, - "warn_no_edit": 3, - "settings_no_edit": 1, - "Save": 1, - "modified": 1, - "http_apply_settings": 1, - "save": 1, - "with": 3, - "br": 1, - "SHEBANG#!swipl": 1, - "set_prolog_flag": 1, - "verbose": 1, - "silent": 1, - "dleak": 2, - "initialization": 1, - "main": 2, - "halt.": 1, - "current_prolog_flag": 1, - "argv": 1, - "File": 2, - "subset": 2, - "Set": 4, - "Subset": 6, - "append": 3, - "L1": 1, - "powerset": 1, - "bagof": 1, - "format_spec": 12, - "format_error/2": 1, - "format_spec/2": 1, - "format_spec//1": 1, - "spec_arity/2": 1, - "spec_types/2": 1, - "dcg/basics": 1, - "eos//0": 1, - "integer//1": 1, - "string_without//2": 1, - "when": 3, - "when/2": 1, - "mavis": 1, - "format_error": 8, - "Goal": 29, - "Error": 25, - "nondet.": 1, - "Format": 23, - "Args": 19, - "format_error_": 5, - "Spec": 10, - "is_list": 1, - "spec_types": 8, - "Types": 16, - "types_error": 3, - "TypesLen": 3, - "ArgsLen": 3, - "types_error_": 4, - "Arg": 6, - "Type": 3, - "ground": 5, - "is_of_type": 2, - "message_to_string": 1, - "type_error": 1, - "_Location": 1, - "multifile": 2, - "check": 3, - "checker/2.": 2, - "dynamic": 2, - "checker": 3, - "format_fail/3.": 1, - "prolog_walk_code": 1, - "module_class": 1, - "infer_meta_predicates": 1, - "autoload": 1, - "format/": 1, - "are": 3, - "always": 1, - "loaded": 1, - "undefined": 1, - "ignore": 1, - "trace_reference": 1, - "on_trace": 1, - "check_format": 3, - "retract": 1, - "format_fail": 2, - "Location": 6, - "print_message": 1, - "warning": 1, - "fail.": 3, - "iterate": 1, - "all": 1, - "errors": 2, - "checker.": 1, - "succeed": 2, - "even": 1, - "no": 1, - "found": 1, - "Module": 4, - "_Caller": 1, - "predicate_property": 1, - "imported_from": 1, - "Source": 2, - "system": 1, - "prolog_debug": 1, - "can_check": 2, - "assert": 2, - "avoid": 1, - "printing": 1, - "goals": 1, - "once": 3, - "clause": 1, - "prolog": 2, - "message": 1, - "message_location": 1, - "eos.": 1, - "escape": 2, - "Numeric": 4, - "Modifier": 2, - "Rest": 12, - "numeric_argument": 5, - "modifier_argument": 3, - "Codes": 21, - "string_codes": 4, - "string_without": 1, - "list": 4, - "text_codes": 6, - "spec_arity": 2, - "FormatSpec": 2, - "Arity": 3, - "positive_integer": 1, - "Item": 2, - "Items": 2, - "item_types": 3, - "numeric_types": 5, - "action_types": 18, - "number": 3, - "character": 2, - "star": 2, - "nothing": 2, - "atom_codes": 4, - "Code": 2, - "Text": 1, - "codes": 5, - "Var": 5, - "Atom": 3, - "atom": 6, - "integer": 7, - "C": 5, - "colon": 1, - "no_colon": 1, - "is_action": 4, - "multi.": 1, - "d": 3, - "e": 1, - "float": 3, - "f": 1, - "G": 2, - "I": 1, - "n": 1, - "any": 3, - "r": 1, - "s": 2, - "t": 1, - "W": 1, - "func": 13, - "op": 2, - "xfy": 2, - "/2": 3, - "list_util": 1, - "xfy_list/3": 1, - "function_expansion": 5, - "arithmetic": 2, - "wants_func": 4, - "prolog_load_context": 1, - "we": 1, - "don": 1, - "used": 1, - "at": 3, - "compile": 3, - "time": 3, - "macro": 1, - "expansion.": 1, - "compile_function/4.": 1, - "compile_function": 8, - "Expr": 5, - "In": 15, - "Out": 16, - "evaluable/1": 1, - "throws": 1, - "exception": 1, - "strings": 1, - "evaluable": 1, - "term_variables": 1, - "F": 26, - "function_composition_term": 2, - "Functor": 8, - "format_template": 7, - "has_type": 2, - "explicit": 1, - "Dict": 3, - "is_dict": 1, - "get_dict": 1, - "Function": 5, - "Argument": 1, - "Apply": 1, - "Argument.": 1, - "A": 1, - "predicate": 4, - "whose": 2, - "final": 1, - "argument": 2, - "generates": 1, - "output": 1, - "penultimate": 1, - "accepts": 1, - "input.": 1, - "realized": 1, - "by": 2, - "expanding": 1, - "function": 2, - "application": 2, - "chained": 1, - "time.": 1, - "itself": 1, - "can": 3, - "chained.": 2, - "Reversed": 2, - "reverse": 4, - "sort": 2, - "c": 2, - "meta_predicate": 2, - "call": 4, - "X": 10, - "Y": 7, - "defer": 1, - "until": 1, - "run": 1, - "P": 2, - "Creates": 1, - "composing": 1, - "G.": 1, - "functions": 2, - "composed": 1, - "compiled": 1, - "which": 1, - "behaves": 1, - "like": 1, - "function.": 1, - "composition": 1, - "Composed": 1, - "also": 1, - "applied": 1, - "/2.": 1, - "fix": 1, - "syntax": 1, - "highlighting": 1, - "functions_to_compose": 2, - "Funcs": 7, - "functor": 1, - "Op": 3, - "xfy_list": 2, - "thread_state": 4, - "Goals": 2, - "Tmp": 3, - "instantiation_error": 1, - "NewArgs": 2, - "variant_sha1": 1, - "Sha": 2, - "current_predicate": 1, - "Functor/2": 2, - "RevFuncs": 2, - "Threaded": 2, - "Body": 2, - "Head": 2, - "compile_predicates": 1, - "Output": 2, - "compound": 1, - "arg": 1, - "Args0": 2, - "nth1": 2, - "lib": 1, - "ic": 1, - "vabs": 2, - "Val": 8, - "AbsVal": 10, - "#": 9, - "labeling": 2, - "vabsIC": 1, - "faitListe": 3, - "First": 2, - "Taille": 2, - "Max": 2, - "Min..Max": 1, - "Taille1": 2, - "suite": 3, - "Xi": 5, - "Xi1": 7, - "Xi2": 7, - "checkRelation": 3, - "VabsXi1": 2, - "Xi.": 1, - "checkPeriode": 3, - "ListVar": 2, - "Length": 2, - "<": 1, - "X1": 2, - "X2": 2, - "X3": 2, - "X4": 2, - "X5": 2, - "X6": 2, - "X7": 2, - "X8": 2, - "X9": 2, - "X10": 3, - "male": 3, - "john": 2, - "peter": 3, - "female": 2, - "vick": 2, - "christie": 3, - "parents": 4, - "brother": 1, - "M": 2, - "turing": 1, - "Tape0": 2, - "Tape": 2, - "perform": 4, - "q0": 1, - "Ls": 12, - "Rs": 16, - "Ls1": 4, - "qf": 1, - "Q0": 2, - "Ls0": 6, - "Rs0": 6, - "symbol": 3, - "Sym": 6, - "RsRest": 2, - "rule": 1, - "Q1": 2, - "NewSym": 2, - "Rs1": 2, - "left": 4, - "stay": 1, - "L": 2 - }, - "Propeller Spin": { - "{": 26, - "*****************************************": 4, - "*": 143, - "x4": 4, - "Keypad": 1, - "Reader": 1, - "v1.0": 4, - "Author": 8, - "Beau": 2, - "Schwabe": 2, - "Copyright": 10, - "(": 356, - "c": 33, - ")": 356, - "Parallax": 10, - "See": 10, - "end": 12, - "of": 108, - "file": 9, - "for": 70, - "terms": 9, - "use.": 9, - "}": 26, - "Operation": 2, - "This": 3, - "object": 7, - "uses": 2, - "a": 72, - "capacitive": 1, - "PIN": 1, - "approach": 1, - "to": 191, - "reading": 1, - "the": 136, - "keypad.": 1, - "To": 3, - "do": 26, - "so": 11, - "ALL": 2, - "pins": 26, - "are": 18, - "made": 2, - "LOW": 2, - "and": 95, - "an": 12, - "OUTPUT": 2, - "I/O": 3, - "pins.": 1, - "Then": 1, - "set": 42, - "INPUT": 2, - "state.": 1, - "At": 1, - "this": 26, - "point": 21, - "only": 63, - "one": 4, - "pin": 18, - "is": 51, - "HIGH": 3, - "at": 26, - "time.": 2, - "If": 2, - "closed": 1, - "then": 5, - "will": 12, - "be": 46, - "read": 29, - "on": 12, - "input": 2, - "otherwise": 1, - "returned.": 1, - "The": 17, - "keypad": 4, - "decoding": 1, - "routine": 1, - "requires": 3, - "two": 6, - "subroutines": 1, - "returns": 6, - "entire": 1, - "matrix": 1, - "into": 19, - "single": 2, - "WORD": 1, - "variable": 1, - "indicating": 1, - "which": 16, - "buttons": 2, - "pressed.": 1, - "Multiple": 1, - "button": 2, - "presses": 1, - "allowed": 1, - "with": 8, - "understanding": 1, - "that": 10, - "BOX": 2, - "entries": 1, - "can": 4, - "confused.": 1, - "An": 1, - "example": 3, - "entry...": 1, - "or": 43, - "#": 97, - "etc.": 1, - "where": 2, - "any": 15, - "pressed": 3, - "evaluate": 1, - "non": 3, - "as": 8, - "being": 2, - "even": 1, - "when": 3, - "they": 2, - "not.": 1, - "There": 1, - "no": 7, - "danger": 1, - "physical": 1, - "electrical": 1, - "damage": 1, - "s": 16, - "just": 2, - "way": 1, - "sensing": 1, - "method": 2, - "happens": 1, - "work.": 1, - "Schematic": 1, - "No": 2, - "resistors": 4, - "capacitors.": 1, - "connections": 1, - "directly": 1, - "from": 21, - "Clear": 2, - "value": 51, - "ReadRow": 4, - "Shift": 3, - "left": 12, - "by": 17, - "preset": 1, - "P0": 2, - "P7": 2, - "LOWs": 1, - "dira": 3, - "[": 35, - "]": 34, - "make": 16, - "INPUTSs": 1, - "...": 5, - "now": 3, - "act": 1, - "like": 4, - "tiny": 1, - "capacitors": 1, - "outa": 2, - "n": 4, - "Pin": 1, - "OUTPUT...": 1, - "Make": 1, - ";": 2, - "charge": 10, - "+": 759, - "ina": 3, - "Pn": 1, - "remain": 1, - "discharged": 1, - "DAT": 7, - "TERMS": 9, - "OF": 49, - "USE": 19, - "MIT": 9, - "License": 9, - "Permission": 9, - "hereby": 9, - "granted": 9, - "free": 10, - "person": 9, - "obtaining": 9, - "copy": 21, - "software": 9, - "associated": 11, - "documentation": 9, - "files": 9, - "deal": 9, - "in": 53, - "Software": 28, - "without": 19, - "restriction": 9, - "including": 9, - "limitation": 9, - "rights": 9, - "use": 19, - "modify": 9, - "merge": 9, - "publish": 9, - "distribute": 9, - "sublicense": 9, - "and/or": 9, - "sell": 9, - "copies": 18, - "permit": 9, - "persons": 9, - "whom": 9, - "furnished": 9, - "subject": 9, - "following": 9, - "conditions": 9, - "above": 11, - "copyright": 9, - "notice": 18, - "permission": 9, - "shall": 9, - "included": 9, - "all": 14, - "substantial": 9, - "portions": 9, - "Software.": 9, - "THE": 59, - "SOFTWARE": 19, - "IS": 10, - "PROVIDED": 9, - "WITHOUT": 10, - "WARRANTY": 10, - "ANY": 20, - "KIND": 10, - "EXPRESS": 10, - "OR": 70, - "IMPLIED": 10, - "INCLUDING": 10, - "BUT": 10, - "NOT": 11, - "LIMITED": 10, - "TO": 10, - "WARRANTIES": 10, - "MERCHANTABILITY": 10, - "FITNESS": 10, - "FOR": 20, - "A": 21, - "PARTICULAR": 10, - "PURPOSE": 10, - "AND": 10, - "NONINFRINGEMENT.": 10, - "IN": 40, - "NO": 10, - "EVENT": 10, - "SHALL": 10, - "AUTHORS": 10, - "COPYRIGHT": 10, - "HOLDERS": 10, - "BE": 10, - "LIABLE": 10, - "CLAIM": 10, - "DAMAGES": 10, - "OTHER": 20, - "LIABILITY": 10, - "WHETHER": 10, - "AN": 10, - "ACTION": 10, - "CONTRACT": 10, - "TORT": 10, - "OTHERWISE": 10, - "ARISING": 10, - "FROM": 10, - "OUT": 10, - "CONNECTION": 10, - "WITH": 10, - "DEALINGS": 10, - "SOFTWARE.": 10, - "****************************************": 4, - "Debug_Lcd": 1, - "v1.2": 2, - "Authors": 1, - "Jon": 2, - "Williams": 2, - "Jeff": 2, - "Martin": 2, - "Inc.": 8, - "Debugging": 1, - "wrapper": 1, - "Serial_Lcd": 1, - "-": 486, - "March": 1, - "Updated": 4, - "conform": 1, - "Propeller": 3, - "initialization": 2, - "standards.": 1, - "v1.1": 8, - "April": 1, - "consistency.": 1, - "OBJ": 2, - "lcd": 2, - "number": 27, - "string": 8, - "conversion": 1, - "PUB": 63, - "init": 2, - "baud": 2, - "lines": 24, - "okay": 11, - "Initializes": 1, - "serial": 1, - "LCD": 4, - "true": 6, - "if": 53, - "parameters": 19, - "lcd.init": 1, - "finalize": 1, - "Finalizes": 1, - "frees": 6, - "floats": 1, - "lcd.finalize": 1, - "putc": 1, - "txbyte": 2, - "Send": 1, - "byte": 27, - "terminal": 4, - "lcd.putc": 1, - "str": 3, - "strAddr": 2, - "Print": 15, - "zero": 10, - "terminated": 4, - "lcd.str": 8, - "dec": 3, - "signed": 4, - "decimal": 5, - "num.dec": 1, - "decf": 1, - "width": 9, - "Prints": 2, - "space": 1, - "padded": 2, - "fixed": 1, - "field": 4, - "num.decf": 1, - "decx": 1, - "digits": 23, - "negative": 2, - "num.decx": 1, - "hex": 3, - "hexadecimal": 4, - "num.hex": 1, - "ihex": 1, - "indicated": 2, - "num.ihex": 1, - "bin": 3, - "binary": 4, - "num.bin": 1, - "ibin": 1, - "%": 162, - "num.ibin": 1, - "cls": 1, - "Clears": 2, - "moves": 1, - "cursor": 9, - "home": 4, - "position": 9, - "lcd.cls": 1, - "Moves": 2, - "lcd.home": 1, - "gotoxy": 1, - "col": 9, - "line": 33, - "col/line": 1, - "lcd.gotoxy": 1, - "clrln": 1, - "lcd.clrln": 1, - "type": 4, - "Selects": 1, - "off": 8, - "blink": 4, - "lcd.cursor": 1, - "display": 23, - "status": 15, - "Controls": 1, - "visibility": 1, - "false": 7, - "hide": 1, - "contents": 3, - "clearing": 1, - "lcd.displayOn": 1, - "else": 3, - "lcd.displayOff": 1, - "custom": 2, - "char": 2, - "chrDataAddr": 3, - "Installs": 1, - "character": 6, - "map": 1, - "address": 16, - "definition": 9, - "array": 1, - "lcd.custom": 1, - "backLight": 1, - "Enable": 1, - "disable": 7, - "backlight": 1, - "affects": 1, - "backlit": 1, - "models": 1, - "lcd.backLight": 1, - "***************************************": 12, - "Graphics": 3, - "Driver": 4, - "Chip": 7, - "Gracey": 7, - "Theory": 1, - "cog": 39, - "launched": 1, - "processes": 1, - "commands": 1, - "via": 5, - "routines.": 1, - "Points": 1, - "arcs": 1, - "sprites": 1, - "text": 9, - "polygons": 1, - "rasterized": 1, - "specified": 1, - "stretch": 1, - "memory": 2, - "serves": 1, - "generic": 1, - "bitmap": 15, - "buffer.": 1, - "displayed": 1, - "TV.SRC": 1, - "VGA.SRC": 1, - "driver.": 3, - "GRAPHICS_DEMO.SRC": 1, - "usage": 1, - "example.": 1, - "CON": 4, - "#1": 47, - "_setup": 1, - "_color": 2, - "_width": 2, - "_plot": 2, - "_line": 2, - "_arc": 2, - "_vec": 2, - "_vecarc": 2, - "_pix": 1, - "_pixarc": 1, - "_text": 2, - "_textarc": 1, - "_textmode": 2, - "_fill": 1, - "_loop": 5, - "VAR": 10, - "long": 122, - "command": 7, - "bitmap_base": 7, - "pixel": 40, - "data": 47, - "slices": 3, - "text_xs": 1, - "text_ys": 1, - "text_sp": 1, - "text_just": 1, - "font": 3, - "pointer": 14, - "same": 7, - "instances": 1, - "stop": 9, - "cognew": 4, - "@loop": 1, - "@command": 1, - "Stop": 6, - "graphics": 4, - "driver": 17, - "cogstop": 3, - "setup": 3, - "x_tiles": 9, - "y_tiles": 9, - "x_origin": 2, - "y_origin": 2, - "base_ptr": 3, - "|": 22, - "bases_ptr": 3, - "slices_ptr": 1, - "Set": 5, - "x": 112, - "tiles": 19, - "x16": 7, - "pixels": 14, - "each": 11, - "y": 80, - "relative": 2, - "center": 10, - "base": 6, - "setcommand": 13, - "write": 36, - "bases": 2, - "<<": 70, - "retain": 2, - "high": 7, - "level": 5, - "bitmap_longs": 1, - "clear": 5, - "dest_ptr": 2, - "Copy": 1, - "double": 2, - "buffered": 1, - "flicker": 5, - "destination": 1, - "color": 39, - "bit": 35, - "pattern": 2, - "code": 3, - "bits": 29, - "@colors": 2, - "&": 21, - "determine": 2, - "shape/width": 2, - "w": 8, - "F": 18, - "pixel_width": 1, - "pixel_passes": 2, - "@w": 1, - "update": 7, - "new": 6, - "repeat": 18, - "i": 24, - "p": 8, - "E": 7, - "r": 4, - "<": 14, - "colorwidth": 1, - "plot": 17, - "Plot": 3, - "@x": 6, - "Draw": 7, - "endpoint": 1, - "arc": 21, - "xr": 7, - "yr": 7, - "angle": 23, - "anglestep": 2, - "steps": 9, - "arcmode": 2, - "radii": 3, - "initial": 6, - "FFF": 3, - "..359.956": 3, - "step": 9, - "leaves": 1, - "between": 4, - "points": 2, - "vec": 1, - "vecscale": 5, - "vecangle": 5, - "vecdef_ptr": 5, - "vector": 12, - "sprite": 14, - "scale": 7, - "rotation": 3, - "Vector": 2, - "word": 212, - "length": 4, - "vecarc": 2, - "pix": 3, - "pixrot": 3, - "pixdef_ptr": 3, - "mirror": 1, - "Pixel": 1, - "justify": 4, - "draw": 5, - "textarc": 1, - "string_ptr": 6, - "justx": 2, - "justy": 3, - "it": 8, - "may": 6, - "necessary": 1, - "call": 44, - ".finish": 1, - "immediately": 1, - "afterwards": 1, - "prevent": 1, - "subsequent": 1, - "clobbering": 1, - "drawn": 1, - "@justx": 1, - "@x_scale": 1, - "get": 30, - "half": 2, - "min": 4, - "max": 6, - "pmin": 1, - "round/square": 1, - "corners": 1, - "y2": 7, - "x2": 6, - "fill": 3, - "pmax": 2, - "triangle": 3, - "sides": 1, - "polygon": 1, - "tri": 2, - "x3": 4, - "y3": 5, - "y4": 1, - "x1": 5, - "y1": 7, - "xy": 1, - "solid": 1, - "/": 27, - "finish": 2, - "Wait": 2, - "current": 3, - "insure": 2, - "safe": 1, - "manually": 1, - "manipulate": 1, - "while": 5, - "primitives": 1, - "xa0": 53, - "start": 16, - "ya1": 3, - "ya2": 1, - "ya3": 2, - "ya4": 40, - "ya5": 3, - "ya6": 21, - "ya7": 9, - "ya8": 19, - "ya9": 5, - "yaA": 18, - "yaB": 4, - "yaC": 12, - "yaD": 4, - "yaE": 1, - "yaF": 1, - "xb0": 19, - "yb1": 2, - "yb2": 1, - "yb3": 4, - "yb4": 15, - "yb5": 2, - "yb6": 7, - "yb7": 3, - "yb8": 20, - "yb9": 5, - "ybA": 8, - "ybB": 1, - "ybC": 32, - "ybD": 1, - "ybE": 1, - "ybF": 1, - "ax1": 11, - "radius": 2, - "ay2": 23, - "ay3": 6, - "ay4": 4, - "a0": 8, - "a2": 1, - "farc": 41, - "another": 7, - "arc/line": 1, - "Round": 1, - "recipes": 1, - "C": 11, - "D": 18, - "fline": 88, - "xa2": 48, - "xb2": 26, - "xa1": 8, - "xb1": 2, - "more": 90, - "xa3": 8, - "xb3": 6, - "xb4": 35, - "a9": 3, - "ax2": 30, - "ay1": 10, - "a7": 2, - "aE": 1, - "aC": 2, - ".": 2, - "aF": 4, - "aD": 3, - "aB": 2, - "xa4": 13, - "a8": 8, - "@": 1, - "a4": 3, - "B": 15, - "H": 1, - "J": 1, - "L": 5, - "N": 1, - "P": 6, - "R": 3, - "T": 5, - "aA": 5, - "V": 7, - "X": 4, - "Z": 1, - "b": 1, - "d": 2, - "f": 2, - "h": 2, - "j": 2, - "l": 2, - "t": 10, - "v": 1, - "z": 4, - "delta": 10, - "bullet": 1, - "fx": 1, - "*************************************": 2, - "org": 2, - "loop": 14, - "rdlong": 16, - "t1": 139, - "par": 20, - "wz": 21, - "arguments": 1, - "mov": 154, - "t2": 90, - "t3": 10, - "#8": 14, - "arg": 3, - "arg0": 12, - "add": 92, - "d0": 11, - "#4": 8, - "djnz": 24, - "wrlong": 6, - "dx": 20, - "dy": 15, - "arg1": 3, - "ror": 4, - "#16": 6, - "jump": 1, - "jumps": 6, - "color_": 1, - "plot_": 2, - "arc_": 2, - "vecarc_": 1, - "pixarc_": 1, - "textarc_": 2, - "fill_": 1, - "setup_": 1, - "xlongs": 4, - "xorigin": 2, - "yorigin": 4, - "arg3": 12, - "basesptr": 4, - "arg5": 6, - "jmp": 24, - "#loop": 9, - "width_": 1, - "pwidth": 3, - "passes": 3, - "#plotd": 3, - "line_": 1, - "#linepd": 2, - "arg7": 6, - "#3": 7, - "cmp": 16, - "exit": 5, - "px": 14, - "py": 11, - "mode": 7, - "if_z": 11, - "#plotp": 3, - "test": 38, - "arg4": 5, - "iterations": 1, - "vecdef": 1, - "rdword": 10, - "t7": 8, - "add/sub": 1, - "to/from": 1, - "t6": 7, - "sumc": 4, - "#multiply": 2, - "round": 1, - "up": 4, - "/2": 1, - "lsb": 1, - "shr": 24, - "t4": 7, - "if_nc": 15, - "h8000": 5, - "wc": 57, - "if_c": 37, - "xwords": 1, - "ywords": 1, - "xxxxxxxx": 2, - "save": 1, - "actual": 4, - "sy": 5, - "rdbyte": 3, - "origin": 1, - "adjust": 4, - "neg": 2, - "sub": 12, - "arg2": 7, - "sumnc": 7, - "if_nz": 18, - "yline": 1, - "sx": 4, - "#0": 20, - "next": 16, - "#2": 15, - "shl": 21, - "t5": 4, - "xpixel": 2, - "rol": 1, - "muxc": 5, - "pcolor": 5, - "color1": 2, - "color2": 2, - "@string": 1, - "#arcmod": 1, - "text_": 1, - "chr": 4, - "done": 3, - "scan": 7, - "tjz": 8, - "def": 2, - "extract": 4, - "_0001_1": 1, - "#fontb": 3, - "textsy": 2, - "starting": 1, - "_0011_0": 1, - "#11": 1, - "#arcd": 1, - "#fontxy": 1, - "advance": 2, - "textsx": 3, - "_0111_0": 1, - "setd_ret": 1, - "fontxy_ret": 1, - "ret": 17, - "fontb": 1, - "multiply": 8, - "fontb_ret": 1, - "textmode_": 1, - "textsp": 2, - "da": 1, - "db": 1, - "db2": 1, - "linechange": 1, - "lines_minus_1": 1, - "right": 9, - "fractions": 1, - "pre": 1, - "increment": 1, - "counter": 1, - "yloop": 2, - "integers": 1, - "base0": 17, - "base1": 10, - "sar": 8, - "cmps": 3, - "out": 24, - "range": 2, - "ylongs": 6, - "skip": 5, - "mins": 1, - "mask": 3, - "mask0": 8, - "#5": 2, - "ready": 10, - "count": 4, - "mask1": 6, - "bits0": 6, - "bits1": 5, - "pass": 5, - "not": 6, - "full": 3, - "longs": 15, - "deltas": 1, - "linepd": 1, - "wr": 2, - "direction": 2, - "abs": 1, - "dominant": 2, - "axis": 1, - "last": 6, - "ratio": 1, - "xloop": 1, - "linepd_ret": 1, - "plotd": 1, - "wide": 3, - "bounds": 2, - "#plotp_ret": 2, - "#7": 2, - "store": 1, - "writes": 1, - "pair": 1, - "account": 1, - "special": 1, - "case": 5, - "andn": 7, - "slice": 7, - "shift0": 1, - "colorize": 1, - "upper": 2, - "subx": 1, - "#wslice": 1, - "offset": 14, - "Get": 2, - "args": 5, - "move": 2, - "using": 1, - "first": 9, - "arg6": 1, - "arcmod_ret": 1, - "arg2/t4": 1, - "arg4/t6": 1, - "arcd": 1, - "#setd": 1, - "#polarx": 1, - "Polar": 1, - "cartesian": 1, - "polarx": 1, - "sine_90": 2, - "sine": 7, - "quadrant": 3, - "nz": 3, - "negate": 2, - "table": 9, - "sine_table": 1, - "shift": 7, - "final": 3, - "sine/cosine": 1, - "integer": 2, - "negnz": 3, - "sine_180": 1, - "shifted": 1, - "multiplier": 3, - "product": 1, - "Defined": 1, - "constants": 2, - "hFFFFFFFF": 1, - "FFFFFFFF": 1, - "fontptr": 1, - "Undefined": 2, - "temps": 1, - "res": 89, - "pointers": 2, - "slicesptr": 1, - "line/plot": 1, - "coordinates": 1, - "Inductive": 1, - "Sensor": 1, - "Demo": 1, - "Test": 2, - "Circuit": 1, - "pF": 1, - "K": 4, - "M": 1, - "FPin": 2, - "SDF": 1, - "sigma": 3, - "feedback": 2, - "SDI": 1, - "GND": 4, - "Coils": 1, - "Wire": 1, - "used": 9, - "was": 2, - "GREEN": 2, - "about": 4, - "gauge": 1, - "Coke": 3, - "Can": 3, - "form": 7, - "MHz": 16, - "BIC": 1, - "pen": 1, - "How": 1, - "does": 2, - "work": 2, - "Note": 1, - "reported": 2, - "resonate": 5, - "frequency": 18, - "LC": 8, - "frequency.": 2, - "Instead": 1, - "voltage": 5, - "produced": 1, - "circuit": 5, - "clipped.": 1, - "In": 2, - "below": 4, - "When": 1, - "you": 5, - "apply": 1, - "small": 1, - "specific": 1, - "near": 1, - "uncommon": 1, - "measure": 1, - "times": 3, - "amount": 1, - "applying": 1, - "circuit.": 1, - "through": 1, - "diode": 2, - "basically": 1, - "feeds": 1, - "divide": 3, - "divider": 1, - "...So": 1, - "order": 1, - "see": 2, - "ADC": 2, - "sweep": 2, - "result": 6, - "output": 11, - "needs": 1, - "generate": 1, - "Volts": 1, - "ground.": 1, - "drop": 1, - "across": 1, - "since": 1, - "sensitive": 1, - "works": 1, - "after": 2, - "divider.": 1, - "typical": 1, - "magnitude": 1, - "applied": 2, - "might": 1, - "look": 2, - "something": 1, - "*****": 4, - "...With": 1, - "looks": 1, - "X****": 1, - "...The": 1, - "denotes": 1, - "location": 1, - "reason": 1, - "slightly": 1, - "reasons": 1, - "really.": 1, - "lazy": 1, - "I": 1, - "didn": 1, - "acts": 1, - "dead": 1, - "short.": 1, - "situation": 1, - "exactly": 1, - "great": 1, - "gr.start": 2, - "gr.setup": 2, - "FindResonateFrequency": 1, - "DisplayInductorValue": 2, - "Freq.Synth": 1, - "FValue": 1, - "ADC.SigmaDelta": 1, - "@FTemp": 1, - "gr.clear": 1, - "gr.copy": 2, - "display_base": 2, - "Option": 2, - "Start": 6, - "*********************************************": 2, - "Frequency": 1, - "LowerFrequency": 2, - "*100/": 1, - "UpperFrequency": 1, - "gr.colorwidth": 4, - "gr.plot": 3, - "gr.line": 3, - "FTemp/1024": 1, - "Finish": 1, - "PS/2": 1, - "Keyboard": 1, - "v1.0.1": 2, - "REVISION": 2, - "HISTORY": 2, - "/15/2006": 2, - "Tool": 1, - "par_tail": 1, - "key": 4, - "buffer": 4, - "head": 1, - "par_present": 1, - "states": 1, - "par_keys": 1, - "******************************************": 2, - "entry": 1, - "movd": 10, - "#_dpin": 1, - "masks": 1, - "dmask": 4, - "_dpin": 3, - "cmask": 2, - "_cpin": 2, - "reset": 14, - "parameter": 14, - "_head": 6, - "_present/_states": 1, - "dlsb": 2, - "stat": 6, - "Update": 1, - "_head/_present/_states": 1, - "#1*4": 1, - "scancode": 2, - "state": 2, - "#receive": 1, - "AA": 1, - "extended": 1, - "if_nc_and_z": 2, - "F0": 3, - "unknown": 2, - "ignore": 2, - "#newcode": 1, - "_states": 2, - "set/clear": 1, - "#_states": 1, - "reg": 5, - "muxnc": 5, - "cmpsub": 4, - "shift/ctrl/alt/win": 1, - "pairs": 1, - "E0": 1, - "handle": 1, - "scrlock/capslock/numlock": 1, - "_000": 5, - "_locks": 5, - "#29": 1, - "change": 3, - "configure": 3, - "flag": 5, - "leds": 3, - "check": 5, - "shift1": 1, - "if_nz_and_c": 4, - "#@shift1": 1, - "@table": 1, - "#look": 1, - "alpha": 1, - "considering": 1, - "capslock": 1, - "if_nz_and_nc": 1, - "xor": 8, - "flags": 1, - "alt": 1, - "room": 1, - "valid": 2, - "enter": 1, - "FF": 3, - "#11*4": 1, - "wrword": 1, - "F3": 1, - "keyboard": 3, - "lock": 1, - "#transmit": 2, - "rev": 1, - "rcl": 2, - "_present": 2, - "#update": 1, - "Lookup": 2, - "perform": 2, - "lookup": 1, - "movs": 9, - "#table": 1, - "#27": 1, - "#rand": 1, - "Transmit": 1, - "pull": 2, - "clock": 4, - "low": 5, - "napshr": 3, - "#13": 3, - "#18": 2, - "release": 1, - "transmit_bit": 1, - "#wait_c0": 2, - "_d2": 1, - "wcond": 3, - "c1": 2, - "c0d0": 2, - "wait": 6, - "until": 3, - "#wait": 2, - "#receive_ack": 1, - "ack": 1, - "error": 1, - "#reset": 2, - "transmit_ret": 1, - "receive": 1, - "receive_bit": 1, - "pause": 1, - "us": 1, - "#nap": 1, - "_d3": 1, - "#receive_bit": 1, - "align": 1, - "isolate": 1, - "look_ret": 1, - "receive_ack_ret": 1, - "receive_ret": 1, - "wait_c0": 1, - "c0": 1, - "timeout": 1, - "ms": 4, - "wloop": 1, - "required": 4, - "_d4": 1, - "replaced": 1, - "c0/c1/c0d0/c1d1": 1, - "if_never": 1, - "replacements": 1, - "#wloop": 3, - "if_c_or_nz": 1, - "c1d1": 1, - "if_nc_or_z": 1, - "nap": 5, - "scales": 1, - "time": 7, - "snag": 1, - "cnt": 2, - "elapses": 1, - "nap_ret": 1, - "F9": 1, - "F5": 1, - "D2": 1, - "F1": 2, - "D1": 1, - "F12": 1, - "F10": 1, - "D7": 1, - "F6": 1, - "D3": 1, - "Tab": 2, - "Alt": 2, - "F3F2": 1, - "q": 1, - "Win": 2, - "Space": 2, - "Apps": 1, - "Power": 1, - "Sleep": 1, - "EF2F": 1, - "CapsLock": 1, - "Enter": 3, - "WakeUp": 1, - "BackSpace": 1, - "C5E1": 1, - "C0E4": 1, - "Home": 1, - "Insert": 1, - "C9EA": 1, - "Down": 1, - "E5": 1, - "Right": 1, - "C2E8": 1, - "Esc": 1, - "DF": 2, - "F11": 1, - "EC": 1, - "PageDn": 1, - "ED": 1, - "PrScr": 1, - "C6E9": 1, - "ScrLock": 1, - "D6": 1, - "Uninitialized": 3, - "_________": 5, - "Key": 1, - "Codes": 1, - "keypress": 1, - "keystate": 2, - "E0..FF": 1, - "AS": 1, - "TV": 9, - "May": 2, - "tile": 41, - "size": 5, - "enable": 5, - "efficient": 2, - "tv_mode": 2, - "NTSC": 11, - "lntsc": 3, - "cycles": 4, - "per": 4, - "sync": 10, - "fpal": 2, - "_433_618": 2, - "PAL": 10, - "spal": 3, - "colortable": 7, - "inside": 2, - "tvptr": 3, - "starts": 4, - "available": 4, - "@entry": 3, - "Assembly": 2, - "language": 2, - "Entry": 2, - "tasks": 6, - "#10": 2, - "Superfield": 2, - "_mode": 7, - "interlace": 20, - "vinv": 2, - "hsync": 5, - "waitvid": 3, - "burst": 2, - "sync_high2": 2, - "task": 2, - "section": 4, - "undisturbed": 2, - "black": 2, - "visible": 7, - "vb": 2, - "leftmost": 1, - "_vt": 3, - "vertical": 29, - "expand": 3, - "vert": 1, - "vscl": 12, - "hb": 2, - "horizontal": 21, - "hx": 5, - "colors": 18, - "screen": 13, - "video": 7, - "repoint": 2, - "hf": 2, - "linerot": 5, - "field1": 4, - "unless": 2, - "invisible": 8, - "if_z_eq_c": 1, - "#hsync": 1, - "vsync": 4, - "pulses": 2, - "vsync1": 2, - "#sync_low1": 1, - "hhalf": 2, - "field2": 1, - "#superfield": 1, - "Blank": 1, - "Horizontal": 1, - "pal": 2, - "toggle": 1, - "phaseflip": 4, - "phasemask": 2, - "sync_scale1": 1, - "blank": 2, - "hsync_ret": 1, - "vsync_high": 1, - "#sync_high1": 1, - "Tasks": 1, - "performed": 1, - "sections": 1, - "during": 2, - "back": 8, - "porch": 9, - "load": 3, - "#_enable": 1, - "_pins": 4, - "_enable": 2, - "#disabled": 2, - "break": 6, - "return": 15, - "later": 6, - "rd": 1, - "#wtab": 1, - "ltab": 1, - "#ltab": 1, - "CLKFREQ": 10, - "cancel": 1, - "_broadcast": 4, - "m8": 3, - "jmpret": 5, - "taskptr": 3, - "taskret": 4, - "ctra": 5, - "pll": 5, - "fcolor": 4, - "#divide": 2, - "vco": 3, - "movi": 3, - "_111": 1, - "ctrb": 4, - "limit": 4, - "m128": 2, - "_100": 1, - "within": 5, - "_001": 1, - "frqb": 2, - "swap": 2, - "broadcast/baseband": 1, - "strip": 3, - "chroma": 19, - "baseband": 18, - "_auralcog": 1, - "_hx": 4, - "consider": 2, - "lineadd": 4, - "lineinc": 3, - "/160": 2, - "loaded": 3, - "#9": 2, - "FC": 2, - "_colors": 2, - "colorreg": 3, - "d6": 3, - "colorloop": 1, - "keep": 2, - "loading": 2, - "m1": 4, - "multiply_ret": 2, - "Disabled": 2, - "try": 2, - "again": 2, - "reload": 1, - "_000_000": 6, - "d0s1": 1, - "F0F0F0F0": 1, - "pins0": 1, - "_01110000_00001111_00000111": 1, - "pins1": 1, - "_11110111_01111111_01110111": 1, - "sync_high1": 1, - "_101010_0101": 1, - "NTSC/PAL": 2, - "metrics": 1, - "tables": 1, - "wtab": 1, - "sntsc": 3, - "lpal": 3, - "hrest": 2, - "vvis": 2, - "vrep": 2, - "_8A": 1, - "_AA": 1, - "sync_scale2": 1, - "_00000000_01_10101010101010_0101": 1, - "m2": 1, - "Parameter": 4, - "/non": 4, - "tccip": 3, - "_screen": 3, - "@long": 2, - "_ht": 2, - "_ho": 2, - "fit": 2, - "contiguous": 1, - "tv_status": 4, - "off/on": 3, - "tv_pins": 5, - "ntsc/pal": 3, - "tv_screen": 5, - "tv_ht": 5, - "tv_hx": 5, - "expansion": 8, - "tv_ho": 5, - "tv_broadcast": 4, - "aural": 13, - "fm": 6, - "preceding": 2, - "copied": 2, - "your": 2, - "code.": 2, - "After": 2, - "setting": 2, - "variables": 3, - "@tv_status": 3, - "All": 2, - "reloaded": 2, - "superframe": 2, - "allowing": 2, - "live": 2, - "changes.": 2, - "minimize": 2, - "correlate": 2, - "changes": 3, - "tv_status.": 1, - "Experimentation": 2, - "optimize": 2, - "some": 3, - "parameters.": 2, - "descriptions": 2, - "sets": 3, - "indicate": 2, - "disabled": 3, - "tv_enable": 2, - "requirement": 2, - "currently": 4, - "outputting": 4, - "driven": 2, - "reduces": 2, - "power": 3, - "_______": 2, - "select": 9, - "group": 7, - "_0111": 6, - "broadcast": 19, - "_1111": 6, - "_0000": 4, - "active": 3, - "top": 10, - "nibble": 4, - "bottom": 5, - "signal": 8, - "arranged": 3, - "attach": 1, - "ohm": 10, - "resistor": 4, - "sum": 7, - "/560/1100": 2, - "subcarrier": 3, - "network": 1, - "visual": 1, - "carrier": 1, - "selects": 4, - "x32": 6, - "tileheight": 4, - "controls": 4, - "mixing": 2, - "mix": 2, - "black/white": 2, - "composite": 1, - "progressive": 2, - "less": 5, - "good": 5, - "motion": 2, - "interlaced": 5, - "doubles": 1, - "format": 1, - "ticks": 11, - "must": 18, - "least": 14, - "_318_180": 1, - "_579_545": 1, - "Hz": 5, - "_734_472": 1, - "itself": 1, - "words": 5, - "define": 10, - "tv_vt": 3, - "has": 4, - "bitfields": 2, - "colorset": 2, - "ptr": 5, - "pixelgroup": 2, - "colorset*": 2, - "pixelgroup**": 2, - "ppppppppppcccc00": 2, - "colorsets": 4, - "four": 8, - "**": 2, - "pixelgroups": 2, - "": 5, - "tv_colors": 2, - "fields": 2, - "values": 2, - "luminance": 2, - "modulation": 4, - "adds/subtracts": 1, - "beware": 1, - "modulated": 1, - "produce": 1, - "saturated": 1, - "toggling": 1, - "levels": 1, - "because": 1, - "abruptly": 1, - "rather": 1, - "against": 1, - "white": 2, - "background": 1, - "best": 1, - "appearance": 1, - "_____": 6, - "practical": 2, - "/30": 1, - "factor": 4, - "sure": 4, - "||": 5, - "than": 5, - "tv_vx": 2, - "tv_vo": 2, - "pos/neg": 4, - "centered": 2, - "image": 2, - "shifts": 4, - "right/left": 2, - "up/down": 2, - "____________": 1, - "expressed": 1, - "ie": 1, - "channel": 1, - "_250_000": 2, - "modulator": 2, - "turned": 2, - "saves": 2, - "broadcasting": 1, - "___________": 1, - "tv_auralcog": 1, - "supply": 1, - "selected": 1, - "bandwidth": 2, - "KHz": 3, - "vary": 1, - "Terminal": 1, - "instead": 1, - "minimum": 2, - "x_scale": 4, - "x_spacing": 4, - "normal": 1, - "x_chr": 2, - "y_chr": 5, - "y_scale": 3, - "y_spacing": 3, - "y_offset": 2, - "x_limit": 2, - "x_screen": 1, - "y_limit": 3, - "y_screen": 4, - "y_max": 3, - "y_screen_bytes": 2, - "y_scroll": 2, - "y_scroll_longs": 4, - "y_clear": 2, - "y_clear_longs": 2, - "paramcount": 1, - "ccinp": 1, - "tv_hc": 1, - "cells": 1, - "cell": 1, - "@bitmap": 1, - "FC0": 1, - "gr.textmode": 1, - "gr.width": 1, - "tv.stop": 2, - "gr.stop": 1, - "schemes": 1, - "tab": 3, - "gr.color": 1, - "gr.text": 1, - "@c": 1, - "gr.finish": 2, - "newline": 3, - "strsize": 2, - "_000_000_000": 2, - "//": 4, - "elseif": 2, - "lookupz": 2, - "..": 4, - "PRI": 1, - "longmove": 2, - "longfill": 2, - "tvparams": 1, - "tvparams_pins": 1, - "_0101": 1, - "vc": 1, - "vx": 2, - "vo": 1, - "auralcog": 1, - "color_schemes": 1, - "BC_6C_05_02": 1, - "E_0D_0C_0A": 1, - "E_6D_6C_6A": 1, - "BE_BD_BC_BA": 1, - "Text": 1, - "x13": 2, - "cols": 5, - "rows": 4, - "screensize": 4, - "lastrow": 2, - "tv_count": 2, - "row": 4, - "tv": 2, - "basepin": 3, - "setcolors": 2, - "@palette": 1, - "@tv_params": 1, - "@screen": 3, - "tv.start": 1, - "stringptr": 3, - "k": 1, - "Output": 1, - "backspace": 1, - "spaces": 1, - "follows": 4, - "Y": 2, - "others": 1, - "printable": 1, - "characters": 1, - "wordfill": 2, - "print": 2, - "A..": 1, - "other": 1, - "colorptr": 2, - "fore": 3, - "Override": 1, - "default": 1, - "palette": 2, - "list": 1, - "scroll": 1, - "hc": 1, - "ho": 1, - "dark": 2, - "blue": 3, - "BB": 1, - "yellow": 1, - "brown": 1, - "cyan": 3, - "red": 2, - "pink": 1, - "VGA": 8, - "vga_mode": 3, - "vgaptr": 3, - "hv": 5, - "bcolor": 3, - "#colortable": 2, - "#blank_line": 3, - "nobl": 1, - "_vx": 1, - "nobp": 1, - "nofp": 1, - "#blank_hsync": 1, - "front": 4, - "vf": 1, - "nofl": 1, - "#tasks": 1, - "before": 1, - "_vs": 2, - "except": 1, - "#blank_vsync": 1, - "#field": 1, - "superfield": 1, - "blank_vsync": 1, - "h2": 2, - "if_c_and_nz": 1, - "blank_hsync": 1, - "_hf": 1, - "invisble": 1, - "_hb": 1, - "#hv": 1, - "blank_hsync_ret": 1, - "blank_line_ret": 1, - "blank_vsync_ret": 1, - "_status": 1, - "#paramcount": 1, - "directions": 1, - "_rate": 3, - "pllmin": 1, - "_011": 1, - "rate": 6, - "hvbase": 5, - "frqa": 3, - "vmask": 1, - "hmask": 1, - "vcfg": 2, - "colormask": 1, - "waitcnt": 3, - "#entry": 1, - "Initialized": 1, - "lowest": 1, - "pllmax": 1, - "*16": 1, - "m4": 1, - "tihv": 1, - "_hd": 1, - "_hs": 1, - "_vd": 1, - "underneath": 1, - "BF": 1, - "___": 1, - "/1/2": 1, - "off/visible/invisible": 1, - "vga_enable": 3, - "pppttt": 1, - "vga_colors": 2, - "vga_vt": 6, - "vga_vx": 4, - "vga_vo": 4, - "vga_hf": 2, - "vga_hb": 2, - "vga_vf": 2, - "vga_vb": 2, - "tick": 2, - "@vga_status": 1, - "vga_status.": 1, - "__________": 4, - "vga_status": 1, - "________": 3, - "vga_pins": 1, - "monitors": 1, - "allows": 1, - "polarity": 1, - "respectively": 1, - "vga_screen": 1, - "vga_ht": 3, - "care": 1, - "suggested": 1, - "bits/pins": 3, - "green": 1, - "bit/pin": 1, - "signals": 1, - "connect": 3, - "RED": 1, - "BLUE": 1, - "connector": 3, - "always": 2, - "HSYNC": 1, - "VSYNC": 1, - "______": 14, - "vga_hx": 3, - "vga_ho": 2, - "equal": 1, - "vga_hd": 2, - "exceed": 1, - "vga_vd": 2, - "recommended": 2, - "vga_hs": 1, - "vga_vs": 1, - "vga_rate": 2, - "should": 1, - "Vocal": 2, - "Tract": 2, - "October": 1, - "synthesizes": 1, - "human": 1, - "vocal": 10, - "tract": 12, - "real": 2, - "It": 1, - "MHz.": 1, - "controlled": 1, - "reside": 1, - "parent": 1, - "aa": 2, - "ga": 5, - "gp": 2, - "vp": 3, - "vr": 1, - "f1": 4, - "f2": 1, - "f3": 3, - "f4": 2, - "na": 2, - "nf": 2, - "fa": 2, - "ff": 2, - "values.": 2, - "Before": 1, - "were": 1, - "interpolation": 1, - "shy": 1, - "frame": 12, - "makes": 1, - "behave": 1, - "sensibly": 1, - "gaps.": 1, - "frame_buffers": 2, - "bytes": 2, - "frame_longs": 3, - "frame_bytes": 1, - "...must": 1, - "dira_": 3, - "dirb_": 1, - "ctra_": 1, - "ctrb_": 3, - "frqa_": 3, - "cnt_": 1, - "many": 1, - "...contiguous": 1, - "tract_ptr": 3, - "pos_pin": 7, - "neg_pin": 6, - "fm_offset": 5, - "positive": 1, - "also": 1, - "enabled": 2, - "generation": 2, - "_500_000": 1, - "Remember": 1, - "duty": 2, - "Ready": 1, - "clkfreq": 2, - "Launch": 1, - "@attenuation": 1, - "Reset": 1, - "buffers": 1, - "@index": 1, - "constant": 3, - "frame_buffer_longs": 2, - "set_attenuation": 1, - "master": 2, - "attenuation": 3, - "initially": 2, - "set_pace": 2, - "percentage": 3, - "pace": 3, - "go": 1, - "Queue": 1, - "transition": 1, - "over": 2, - "Load": 1, - "bytemove": 1, - "@frames": 1, - "index": 5, - "Increment": 1, - "Returns": 4, - "queue": 2, - "useful": 2, - "checking": 1, - "would": 1, - "have": 1, - "frames": 2, - "empty": 2, - "detecting": 1, - "finished": 1, - "sample_ptr": 1, - "receives": 1, - "audio": 1, - "samples": 1, - "updated": 1, - "@sample": 1, - "aural_id": 1, - "id": 2, - "executing": 1, - "algorithm": 1, - "connecting": 1, - "Initialization": 1, - "reserved": 3, - "clear_cnt": 1, - "#2*15": 1, - "hub": 1, - "minst": 3, - "d0s0": 3, - "mult_ret": 1, - "antilog_ret": 1, - "assemble": 1, - "cordic": 4, - "reserves": 2, - "cstep": 1, - "instruction": 2, - "prepare": 1, - "cnt_value": 3, - "cnt_ticks": 3, - "Loop": 1, - "sample": 2, - "period": 1, - "cycle": 1, - "driving": 1, - "h80000000": 2, - "White": 1, - "noise": 3, - "source": 2, - "lfsr": 1, - "lfsr_taps": 2, - "Aspiration": 1, - "vibrato": 3, - "vphase": 2, - "glottal": 2, - "pitch": 5, - "mesh": 1, - "tune": 2, - "convert": 1, - "log": 2, - "phase": 2, - "gphase": 3, - "formant2": 2, - "rotate": 2, - "f2x": 3, - "f2y": 3, - "#cordic": 2, - "formant4": 2, - "f4x": 3, - "f4y": 3, - "subtract": 1, - "nx": 4, - "negated": 1, - "nasal": 2, - "amplitude": 3, - "#mult": 1, - "fphase": 4, - "frication": 2, - "#sine": 1, - "Handle": 1, - "frame_ptr": 6, - "past": 1, - "miscellaneous": 2, - "frame_index": 3, - "stepsize": 2, - "step_size": 5, - "h00FFFFFF": 2, - "final1": 2, - "finali": 2, - "iterate": 3, - "aa..ff": 4, - "accurate": 1, - "accumulation": 1, - "step_acc": 3, - "set2": 3, - "#par_curr": 1, - "set3": 2, - "#par_next": 1, - "set4": 3, - "#par_step": 1, - "#24": 1, - "par_curr": 3, - "absolute": 1, - "msb": 2, - "nr": 1, - "mult": 2, - "par_step": 1, - "frame_cnt": 2, - "step1": 2, - "stepi": 1, - "stepframe": 1, - "#frame_bytes": 1, - "par_next": 2, - "Math": 1, - "Subroutines": 1, - "Antilog": 1, - "whole": 2, - "fraction": 1, - "antilog": 2, - "FFEA0000": 1, - "h00000FFE": 2, - "insert": 2, - "leading": 1, - "Scaled": 1, - "unsigned": 3, - "h00001000": 2, - "negc": 1, - "Multiply": 1, - "#15": 1, - "mult_step": 1, - "Cordic": 1, - "degree": 1, - "#cordic_steps": 1, - "gets": 1, - "assembled": 1, - "cordic_dx": 1, - "incremented": 1, - "cordic_a": 1, - "cordic_delta": 2, - "linear": 1, - "register": 1, - "B901476": 1, - "greater": 1, - "h40000000": 1, - "h01000000": 1, - "FFFFFF": 1, - "h00010000": 1, - "h0000D000": 1, - "D000": 1, - "h00007000": 1, - "FFE": 1, - "h00000800": 1, - "registers": 2, - "startup": 2, - "Data": 1, - "zeroed": 1, - "cleared": 1, - "f1x": 1, - "f1y": 1, - "f3x": 1, - "f3y": 1, - "aspiration": 1, - "***": 1, - "mult_steps": 1, - "assembly": 1, - "area": 1, - "w/ret": 1, - "cordic_ret": 1 - }, - "Protocol Buffer": { - "package": 1, - "tutorial": 1, - ";": 13, - "option": 2, - "java_package": 1, - "java_outer_classname": 1, - "message": 3, - "Person": 2, - "{": 4, - "required": 3, - "string": 3, - "name": 1, - "int32": 1, - "id": 1, - "optional": 2, - "email": 1, - "enum": 1, - "PhoneType": 2, - "MOBILE": 1, - "HOME": 2, - "WORK": 1, - "}": 4, - "PhoneNumber": 2, - "number": 1, - "type": 1, - "[": 1, - "default": 1, - "]": 1, - "repeated": 2, - "phone": 1, - "AddressBook": 1, - "person": 1 - }, - "PureScript": { - "module": 4, - "Control.Arrow": 1, - "where": 20, - "import": 32, - "Data.Tuple": 3, - "class": 4, - "Arrow": 5, - "a": 46, - "arr": 10, - "forall": 26, - "b": 49, - "c.": 3, - "(": 111, - "-": 88, - "c": 17, - ")": 115, - "first": 4, - "d.": 2, - "Tuple": 21, - "d": 6, - "instance": 12, - "arrowFunction": 1, - "f": 28, - "second": 3, - "Category": 3, - "swap": 4, - "b.": 1, - "x": 26, - "y": 2, - "infixr": 3, - "***": 2, - "&&": 3, - "&": 3, - ".": 2, - "g": 4, - "ArrowZero": 1, - "zeroArrow": 1, - "<+>": 2, - "ArrowPlus": 1, - "Data.Foreign": 2, - "Foreign": 12, - "..": 1, - "ForeignParser": 29, - "parseForeign": 6, - "parseJSON": 3, - "ReadForeign": 11, - "read": 10, - "prop": 3, - "Prelude": 3, - "Data.Array": 3, - "Data.Either": 1, - "Data.Maybe": 3, - "Data.Traversable": 2, - "foreign": 6, - "data": 3, - "*": 1, - "fromString": 2, - "String": 13, - "Either": 6, - "readPrimType": 5, - "a.": 6, - "readMaybeImpl": 2, - "Maybe": 5, - "readPropImpl": 2, - "showForeignImpl": 2, - "showForeign": 1, - "Prelude.Show": 1, - "show": 5, - "p": 11, - "json": 2, - "monadForeignParser": 1, - "Prelude.Monad": 1, - "return": 6, - "_": 7, - "Right": 9, - "case": 9, - "of": 9, - "Left": 8, - "err": 8, - "applicativeForeignParser": 1, - "Prelude.Applicative": 1, - "pure": 1, - "<*>": 2, - "<$>": 8, - "functorForeignParser": 1, - "Prelude.Functor": 1, - "readString": 1, - "readNumber": 1, - "Number": 1, - "readBoolean": 1, - "Boolean": 1, - "readArray": 1, - "[": 5, - "]": 5, - "let": 4, - "arrayItem": 2, - "i": 2, - "result": 4, - "+": 30, - "in": 2, - "xs": 3, - "traverse": 2, - "zip": 1, - "range": 1, - "length": 3, - "readMaybe": 1, - "<<": 4, - "<": 13, - "Just": 7, - "Nothing": 7, - "Data.Map": 1, - "Map": 26, - "empty": 6, - "singleton": 5, - "insert": 10, - "lookup": 8, - "delete": 9, - "alter": 8, - "toList": 10, - "fromList": 3, - "union": 3, - "map": 8, - "qualified": 1, - "as": 1, - "P": 1, - "concat": 3, - "Data.Foldable": 2, - "foldl": 4, - "k": 108, - "v": 57, - "Leaf": 15, - "|": 9, - "Branch": 27, - "{": 25, - "key": 13, - "value": 8, - "left": 15, - "right": 14, - "}": 26, - "eqMap": 1, - "P.Eq": 11, - "m1": 6, - "m2": 6, - "P.": 11, - "/": 1, - "P.not": 1, - "showMap": 1, - "P.Show": 3, - "m": 6, - "P.show": 1, - "v.": 11, - "P.Ord": 9, - "b@": 6, - "k1": 16, - "b.left": 9, - "b.right": 8, - "findMinKey": 5, - "glue": 4, - "minKey": 3, - "root": 2, - "b.key": 1, - "b.value": 2, - "v1": 3, - "v2.": 1, - "v2": 2, - "ReactiveJQueryTest": 1, - "flip": 2, - "Control.Monad": 1, - "Control.Monad.Eff": 1, - "Control.Monad.JQuery": 1, - "Control.Reactive": 1, - "Control.Reactive.JQuery": 1, - "head": 2, - "Data.Monoid": 1, - "Debug.Trace": 1, - "Global": 1, - "parseInt": 1, - "main": 1, - "do": 4, - "personDemo": 2, - "todoListDemo": 1, - "greet": 1, - "firstName": 2, - "lastName": 2, - "Create": 3, - "new": 1, - "reactive": 1, - "variables": 1, - "to": 3, - "hold": 1, - "the": 3, - "user": 1, - "readRArray": 1, - "insertRArray": 1, - "text": 5, - "completed": 2, - "paragraph": 2, - "display": 2, - "next": 1, - "task": 4, - "nextTaskLabel": 3, - "create": 2, - "append": 2, - "nextTask": 2, - "toComputedArray": 2, - "toComputed": 2, - "bindTextOneWay": 2, - "counter": 3, - "counterLabel": 3, - "rs": 2, - "cs": 2, - "<->": 1, - "if": 1, - "then": 1, - "else": 1, - "entry": 1, - "entry.completed": 1 - }, - "Python": { - "SHEBANG#!python": 5, - "from": 37, - "model": 9, - "import": 59, - "Feed": 1, - "session": 1, - "datetime": 1, - "sys": 4, - "argv": 5, - "session.argv": 1, - "(": 859, - ")": 871, - "feed": 1, - "Feed.get": 1, - "guid": 1, - "[": 168, - "]": 168, - "action": 5, - "if": 162, - "when": 4, - "feed.notify_interval": 1, - "*": 39, - "feed.notify_unit": 1, - "elif": 5, - "len": 12, - "int": 2, - "else": 35, - "print": 40, - "%": 34, - "sys.exit": 2, - "feed.notify_next": 1, - "datetime.datetime.utcnow": 1, - "+": 52, - "datetime.timedelta": 1, - "seconds": 1, - "feed.save": 1, - "response": 1, - "t": 9, - "be": 2, - "notified": 1, - "for": 70, - "another": 2, - "": 1, - "class=": 2, - "{": 28, - "duration": 1, - "}": 28, - "": 1, - ".": 2, - "

    ": 3, - "

    ": 2, - "Actions": 1, - "

    ": 1, - "": 2, - "": 1, - "": 1, - "month": 1, - "week": 1, - "day": 1, - "hour": 1, - "minute": 1, - "second": 1, - "s": 2, - ".join": 5, - "duration_list": 1, - "xspacing": 4, - "#": 28, - "How": 2, - "far": 1, - "apart": 1, - "should": 1, - "each": 1, - "horizontal": 1, - "location": 1, - "spaced": 1, - "maxwaves": 3, - "total": 1, - "of": 5, - "waves": 1, - "to": 5, - "add": 1, - "together": 1, - "theta": 3, - "amplitude": 3, - "Height": 1, - "wave": 2, - "dx": 8, - "yvalues": 7, - "def": 87, - "setup": 2, - "size": 5, - "frameRate": 1, - "colorMode": 1, - "RGB": 1, - "w": 2, - "width": 1, - "i": 13, - "in": 91, - "range": 5, - "amplitude.append": 1, - "random": 2, - "period": 2, - "many": 1, - "pixels": 1, - "before": 1, - "repeats": 1, - "dx.append": 1, - "TWO_PI": 1, - "/": 26, - "_": 6, - "yvalues.append": 1, - "draw": 2, - "background": 2, - "calcWave": 2, - "renderWave": 2, - "j": 7, - "x": 34, - "sin": 1, - "cos": 1, - "noStroke": 2, - "fill": 2, - "ellipseMode": 1, - "CENTER": 1, - "v": 19, - "enumerate": 2, - "ellipse": 1, - "height": 1, - "os": 2, - "json": 1, - "c4d": 1, - "c4dtools": 1, - "itertools": 1, - "c4d.modules": 1, - "graphview": 1, - "as": 14, - "gv": 1, - "c4dtools.misc": 1, - "graphnode": 1, - "res": 3, - "importer": 1, - "c4dtools.prepare": 1, - "__file__": 1, - "__res__": 1, - "settings": 2, - "c4dtools.helpers.Attributor": 2, - "res.file": 3, - "align_nodes": 2, - "nodes": 11, - "mode": 5, - "spacing": 7, - "r": 9, - "modes": 3, - "not": 69, - "return": 68, - "raise": 23, - "ValueError": 6, - "get_0": 12, - "lambda": 6, - "x.x": 1, - "get_1": 4, - "x.y": 1, - "set_0": 6, - "setattr": 16, - "set_1": 4, - "graphnode.GraphNode": 1, - "n": 6, - "nodes.sort": 1, - "key": 6, - "n.position": 1, - "midpoint": 3, - "graphnode.find_nodes_mid": 1, - "first_position": 2, - ".position": 1, - "new_positions": 2, - "prev_offset": 6, - "node": 2, - "position": 12, - "node.position": 2, - "-": 36, - "node.size": 1, - "<": 2, - "new_positions.append": 1, - "bbox_size": 2, - "bbox_size_2": 2, - "itertools.izip": 1, - "align_nodes_shortcut": 3, - "master": 2, - "gv.GetMaster": 1, - "root": 3, - "master.GetRoot": 1, - "graphnode.find_selected_nodes": 1, - "master.AddUndo": 1, - "c4d.EventAdd": 1, - "True": 25, - "class": 19, - "XPAT_Options": 3, - "defaults": 1, - "__init__": 7, - "self": 113, - "filename": 12, - "None": 92, - "super": 4, - ".__init__": 3, - "self.load": 1, - "load": 1, - "is": 31, - "settings.options_filename": 2, - "os.path.isfile": 1, - "self.dict_": 2, - "self.defaults.copy": 2, - "with": 2, - "open": 2, - "fp": 4, - "self.dict_.update": 1, - "json.load": 1, - "self.save": 1, - "save": 2, - "values": 15, - "dict": 4, - "k": 7, - "self.dict_.iteritems": 1, - "self.defaults": 1, - "json.dump": 1, - "XPAT_OptionsDialog": 2, - "c4d.gui.GeDialog": 1, - "CreateLayout": 1, - "self.LoadDialogResource": 1, - "res.DLG_OPTIONS": 1, - "InitValues": 1, - "self.SetLong": 2, - "res.EDT_HSPACE": 2, - "options.hspace": 3, - "res.EDT_VSPACE": 2, - "options.vspace": 3, - "Command": 1, - "id": 2, - "msg": 1, - "res.BTN_SAVE": 1, - "self.GetLong": 2, - "options.save": 1, - "self.Close": 1, - "XPAT_Command_OpenOptionsDialog": 2, - "c4dtools.plugins.Command": 3, - "self._dialog": 4, - "@property": 2, - "dialog": 1, - "PLUGIN_ID": 3, - "PLUGIN_NAME": 3, - "res.string.XPAT_COMMAND_OPENOPTIONSDIALOG": 1, - "PLUGIN_HELP": 3, - "res.string.XPAT_COMMAND_OPENOPTIONSDIALOG_HELP": 1, - "Execute": 3, - "doc": 3, - "self.dialog.Open": 1, - "c4d.DLG_TYPE_MODAL": 1, - "XPAT_Command_AlignHorizontal": 1, - "res.string.XPAT_COMMAND_ALIGNHORIZONTAL": 1, - "PLUGIN_ICON": 2, - "res.string.XPAT_COMMAND_ALIGNHORIZONTAL_HELP": 1, - "XPAT_Command_AlignVertical": 1, - "res.string.XPAT_COMMAND_ALIGNVERTICAL": 1, - "res.string.XPAT_COMMAND_ALIGNVERTICAL_HELP": 1, - "options": 4, - "__name__": 3, - "c4dtools.plugins.main": 1, - "__future__": 2, - "unicode_literals": 1, - "copy": 1, - "functools": 1, - "update_wrapper": 2, - "future_builtins": 1, - "zip": 8, - "django.db.models.manager": 1, - "Imported": 1, - "register": 1, - "signal": 1, - "handler.": 1, - "django.conf": 1, - "django.core.exceptions": 1, - "ObjectDoesNotExist": 2, - "MultipleObjectsReturned": 2, - "FieldError": 4, - "ValidationError": 8, - "NON_FIELD_ERRORS": 3, - "django.core": 1, - "validators": 1, - "django.db.models.fields": 1, - "AutoField": 2, - "FieldDoesNotExist": 2, - "django.db.models.fields.related": 1, - "ManyToOneRel": 3, - "OneToOneField": 3, - "add_lazy_relation": 2, - "django.db": 1, - "router": 1, - "transaction": 1, - "DatabaseError": 3, - "DEFAULT_DB_ALIAS": 2, - "django.db.models.query": 1, - "Q": 3, - "django.db.models.query_utils": 2, - "DeferredAttribute": 3, - "django.db.models.deletion": 1, - "Collector": 2, - "django.db.models.options": 1, - "Options": 2, - "django.db.models": 1, - "signals": 1, - "django.db.models.loading": 1, - "register_models": 2, - "get_model": 3, - "django.utils.translation": 1, - "ugettext_lazy": 1, - "django.utils.functional": 1, - "curry": 6, - "django.utils.encoding": 1, - "smart_str": 3, - "force_unicode": 3, - "django.utils.text": 1, - "get_text_list": 2, - "capfirst": 6, - "ModelBase": 4, - "type": 6, - "__new__": 2, - "cls": 32, - "name": 39, - "bases": 6, - "attrs": 7, - "super_new": 3, - ".__new__": 1, - "parents": 8, - "b": 11, - "isinstance": 11, - "module": 6, - "attrs.pop": 2, - "new_class": 9, - "attr_meta": 5, - "abstract": 3, - "getattr": 30, - "False": 28, - "meta": 12, - "base_meta": 2, - "model_module": 1, - "sys.modules": 1, - "new_class.__module__": 1, - "kwargs": 9, - "model_module.__name__.split": 1, - "new_class.add_to_class": 7, - "**kwargs": 9, - "subclass_exception": 3, - "tuple": 3, - "x.DoesNotExist": 1, - "hasattr": 11, - "and": 35, - "x._meta.abstract": 2, - "or": 27, - "x.MultipleObjectsReturned": 1, - "base_meta.abstract": 1, - "new_class._meta.ordering": 1, - "base_meta.ordering": 1, - "new_class._meta.get_latest_by": 1, - "base_meta.get_latest_by": 1, - "is_proxy": 5, - "new_class._meta.proxy": 1, - "new_class._default_manager": 2, - "new_class._base_manager": 2, - "new_class._default_manager._copy_to_model": 1, - "new_class._base_manager._copy_to_model": 1, - "m": 3, - "new_class._meta.app_label": 3, - "seed_cache": 2, - "only_installed": 2, - "obj_name": 2, - "obj": 4, - "attrs.items": 1, - "new_fields": 2, - "new_class._meta.local_fields": 3, - "new_class._meta.local_many_to_many": 2, - "new_class._meta.virtual_fields": 1, - "field_names": 5, - "set": 3, - "f.name": 5, - "f": 19, - "base": 13, - "parent": 5, - "parent._meta.abstract": 1, - "parent._meta.fields": 1, - "TypeError": 4, - "continue": 10, - "new_class._meta.setup_proxy": 1, - "new_class._meta.concrete_model": 2, - "base._meta.concrete_model": 2, - "o2o_map": 3, - "f.rel.to": 1, - "original_base": 1, - "parent_fields": 3, - "base._meta.local_fields": 1, - "base._meta.local_many_to_many": 1, - "field": 32, - "field.name": 14, - "base.__name__": 2, - "base._meta.abstract": 2, - "attr_name": 3, - "base._meta.module_name": 1, - "auto_created": 1, - "parent_link": 1, - "new_class._meta.parents": 1, - "copy.deepcopy": 2, - "new_class._meta.parents.update": 1, - "base._meta.parents": 1, - "new_class.copy_managers": 2, - "base._meta.abstract_managers": 1, - "original_base._meta.concrete_managers": 1, - "base._meta.virtual_fields": 1, - "attr_meta.abstract": 1, - "new_class.Meta": 1, - "new_class._prepare": 1, - "copy_managers": 1, - "base_managers": 2, - "base_managers.sort": 1, - "mgr_name": 3, - "manager": 3, - "val": 14, - "new_manager": 2, - "manager._copy_to_model": 1, - "cls.add_to_class": 1, - "add_to_class": 1, - "value": 9, - "value.contribute_to_class": 1, - "_prepare": 1, - "opts": 5, - "cls._meta": 3, - "opts._prepare": 1, - "opts.order_with_respect_to": 2, - "cls.get_next_in_order": 1, - "cls._get_next_or_previous_in_order": 2, - "is_next": 9, - "cls.get_previous_in_order": 1, - "make_foreign_order_accessors": 2, - "field.rel.to": 2, - "cls.__name__.lower": 2, - "method_get_order": 2, - "method_set_order": 2, - "opts.order_with_respect_to.rel.to": 1, - "cls.__doc__": 3, - "cls.__name__": 1, - "f.attname": 5, - "opts.fields": 1, - "cls.get_absolute_url": 3, - "get_absolute_url": 2, - "signals.class_prepared.send": 1, - "sender": 5, - "ModelState": 2, - "object": 6, - "db": 2, - "self.db": 1, - "self.adding": 1, - "Model": 2, - "__metaclass__": 3, - "_deferred": 1, - "*args": 4, - "signals.pre_init.send": 1, - "self.__class__": 10, - "args": 8, - "self._state": 1, - "args_len": 2, - "self._meta.fields": 5, - "IndexError": 2, - "fields_iter": 4, - "iter": 1, - "field.attname": 17, - "kwargs.pop": 6, - "field.rel": 2, - "is_related_object": 3, - "self.__class__.__dict__.get": 2, - "try": 17, - "rel_obj": 3, - "except": 17, - "KeyError": 3, - "field.get_default": 3, - "field.null": 1, - "prop": 5, - "kwargs.keys": 2, - "property": 2, - "AttributeError": 1, - "pass": 4, - "signals.post_init.send": 1, - "instance": 5, - "__repr__": 2, - "u": 9, - "unicode": 8, - "UnicodeEncodeError": 1, - "UnicodeDecodeError": 1, - "self.__class__.__name__": 3, - "__str__": 1, - ".encode": 1, - "__eq__": 1, - "other": 4, - "self._get_pk_val": 6, - "other._get_pk_val": 1, - "__ne__": 1, - "self.__eq__": 1, - "__hash__": 1, - "hash": 1, - "__reduce__": 1, - "data": 22, - "self.__dict__": 1, - "defers": 2, - "self._deferred": 1, - "deferred_class_factory": 2, - "factory": 5, - "defers.append": 1, - "self._meta.proxy_for_model": 1, - "simple_class_factory": 2, - "model_unpickle": 2, - "_get_pk_val": 2, - "self._meta": 2, - "meta.pk.attname": 2, - "_set_pk_val": 2, - "self._meta.pk.attname": 2, - "pk": 5, - "serializable_value": 1, - "field_name": 8, - "self._meta.get_field_by_name": 1, - "force_insert": 7, - "force_update": 10, - "using": 30, - "update_fields": 23, - "frozenset": 2, - "field.primary_key": 1, - "non_model_fields": 2, - "update_fields.difference": 1, - "self.save_base": 2, - "save.alters_data": 1, - "save_base": 1, - "raw": 9, - "origin": 7, - "router.db_for_write": 2, - "assert": 7, - "meta.proxy": 5, - "meta.auto_created": 2, - "signals.pre_save.send": 1, - "org": 3, - "meta.parents.items": 1, - "parent._meta.pk.attname": 2, - "parent._meta": 1, - "non_pks": 5, - "meta.local_fields": 2, - "f.primary_key": 2, - "pk_val": 4, - "pk_set": 5, - "record_exists": 5, - "cls._base_manager": 1, - "manager.using": 3, - ".filter": 7, - ".exists": 1, - "f.pre_save": 1, - "rows": 3, - "._update": 1, - "meta.order_with_respect_to": 2, - "order_value": 2, - ".count": 1, - "self._order": 1, - "fields": 12, - "update_pk": 3, - "bool": 2, - "meta.has_auto_field": 1, - "result": 2, - "manager._insert": 1, - "return_id": 1, - "transaction.commit_unless_managed": 2, - "self._state.db": 2, - "self._state.adding": 4, - "signals.post_save.send": 1, - "created": 1, - "save_base.alters_data": 1, - "delete": 1, - "self._meta.object_name": 1, - "collector": 1, - "collector.collect": 1, - "collector.delete": 1, - "delete.alters_data": 1, - "_get_FIELD_display": 1, - "field.flatchoices": 1, - ".get": 2, - "strings_only": 1, - "_get_next_or_previous_by_FIELD": 1, - "self.pk": 6, - "op": 6, - "order": 5, - "param": 3, - "q": 4, - "|": 1, - "qs": 6, - "self.__class__._default_manager.using": 1, - "*kwargs": 1, - ".order_by": 2, - "self.DoesNotExist": 1, - "self.__class__._meta.object_name": 1, - "_get_next_or_previous_in_order": 1, - "cachename": 4, - "order_field": 1, - "self._meta.order_with_respect_to": 1, - "self._default_manager.filter": 1, - "order_field.name": 1, - "order_field.attname": 1, - "self._default_manager.values": 1, - "self._meta.pk.name": 1, - "prepare_database_save": 1, - "unused": 1, - "clean": 1, - "validate_unique": 1, - "exclude": 23, - "unique_checks": 6, - "date_checks": 6, - "self._get_unique_checks": 1, - "errors": 20, - "self._perform_unique_checks": 1, - "date_errors": 1, - "self._perform_date_checks": 1, - "date_errors.items": 1, - "errors.setdefault": 3, - ".extend": 2, - "_get_unique_checks": 1, - "unique_togethers": 2, - "self._meta.unique_together": 1, - "parent_class": 4, - "self._meta.parents.keys": 2, - "parent_class._meta.unique_together": 2, - "unique_togethers.append": 1, - "model_class": 11, - "unique_together": 2, - "check": 4, - "break": 2, - "unique_checks.append": 2, - "fields_with_class": 2, - "self._meta.local_fields": 1, - "fields_with_class.append": 1, - "parent_class._meta.local_fields": 1, - "f.unique": 1, - "f.unique_for_date": 3, - "date_checks.append": 3, - "f.unique_for_year": 3, - "f.unique_for_month": 3, - "_perform_unique_checks": 1, - "unique_check": 10, - "lookup_kwargs": 8, - "self._meta.get_field": 1, - "lookup_value": 3, - "str": 2, - "lookup_kwargs.keys": 1, - "model_class._default_manager.filter": 2, - "*lookup_kwargs": 2, - "model_class_pk": 3, - "model_class._meta": 2, - "qs.exclude": 2, - "qs.exists": 2, - ".append": 2, - "self.unique_error_message": 1, - "_perform_date_checks": 1, - "lookup_type": 7, - "unique_for": 9, - "date": 3, - "date.day": 1, - "date.month": 1, - "date.year": 1, - "self.date_error_message": 1, - "date_error_message": 1, - "opts.get_field": 4, - ".verbose_name": 3, - "unique_error_message": 1, - "model_name": 3, - "opts.verbose_name": 1, - "field_label": 2, - "field.verbose_name": 1, - "field.error_messages": 1, - "field_labels": 4, - "map": 1, - "full_clean": 1, - "self.clean_fields": 1, - "e": 13, - "e.update_error_dict": 3, - "self.clean": 1, - "errors.keys": 1, - "exclude.append": 1, - "self.validate_unique": 1, - "clean_fields": 1, - "raw_value": 3, - "f.blank": 1, - "validators.EMPTY_VALUES": 1, - "f.clean": 1, - "e.messages": 1, - "############################################": 2, - "ordered_obj": 2, - "id_list": 2, - "rel_val": 4, - "ordered_obj._meta.order_with_respect_to.rel.field_name": 2, - "order_name": 4, - "ordered_obj._meta.order_with_respect_to.name": 2, - "ordered_obj.objects.filter": 2, - ".update": 1, - "_order": 1, - "pk_name": 3, - "ordered_obj._meta.pk.name": 1, - ".values": 1, - "##############################################": 2, - "func": 2, - "settings.ABSOLUTE_URL_OVERRIDES.get": 1, - "opts.app_label": 1, - "opts.module_name": 1, - "########": 2, - "Empty": 1, - "cls.__new__": 1, - "model_unpickle.__safe_for_unpickle__": 1, - ".globals": 1, - "request": 1, - "http_method_funcs": 2, - "View": 2, - "A": 1, - "which": 1, - "methods": 5, - "pluggable": 1, - "view": 2, - "can": 1, - "handle.": 1, - "The": 1, - "canonical": 1, - "way": 1, - "decorate": 2, - "based": 1, - "views": 1, - "as_view": 1, - "However": 1, - "since": 1, - "moves": 1, - "parts": 1, - "logic": 1, - "declaration": 1, - "place": 1, - "where": 1, - "it": 1, - "also": 1, - "used": 1, - "instantiating": 1, - "view.view_class": 1, - "view.__name__": 1, - "view.__doc__": 1, - "view.__module__": 1, - "cls.__module__": 1, - "view.methods": 1, - "cls.methods": 1, - "MethodViewType": 2, - "d": 5, - "rv": 2, - "type.__new__": 1, - "rv.methods": 2, - "methods.add": 1, - "key.upper": 1, - "sorted": 1, - "MethodView": 1, - "dispatch_request": 1, - "meth": 5, - "request.method.lower": 1, - "request.method": 2, - "P3D": 1, - "lights": 1, - "camera": 1, - "mouseY": 1, - "eyeX": 1, - "eyeY": 1, - "eyeZ": 1, - "centerX": 1, - "centerY": 1, - "centerZ": 1, - "upX": 1, - "upY": 1, - "upZ": 1, - "box": 1, - "stroke": 1, - "line": 3, - "google.protobuf": 4, - "descriptor": 1, - "_descriptor": 1, - "message": 1, - "_message": 1, - "reflection": 1, - "_reflection": 1, - "descriptor_pb2": 1, - "DESCRIPTOR": 3, - "_descriptor.FileDescriptor": 1, - "package": 1, - "serialized_pb": 1, - "_PERSON": 3, - "_descriptor.Descriptor": 1, - "full_name": 2, - "file": 1, - "containing_type": 2, - "_descriptor.FieldDescriptor": 1, - "index": 1, - "number": 1, - "cpp_type": 1, - "label": 18, - "has_default_value": 1, - "default_value": 1, - "message_type": 1, - "enum_type": 1, - "is_extension": 1, - "extension_scope": 1, - "extensions": 1, - "nested_types": 1, - "enum_types": 1, - "is_extendable": 1, - "extension_ranges": 1, - "serialized_start": 1, - "serialized_end": 1, - "DESCRIPTOR.message_types_by_name": 1, - "Person": 1, - "_message.Message": 1, - "_reflection.GeneratedProtocolMessageType": 1, - "main": 4, - "usage": 3, - "string": 1, - "command": 4, - "sys.argv": 2, - "printDelimiter": 4, - "get": 1, - "a": 2, - "list": 1, - "git": 1, - "directories": 1, - "specified": 1, - "gitDirectories": 2, - "getSubdirectories": 2, - "isGitDirectory": 2, - "gitDirectory": 2, - "os.chdir": 1, - "os.getcwd": 1, - "os.system": 1, - "directory": 9, - "filter": 3, - "os.path.abspath": 1, - "subdirectories": 3, - "os.walk": 1, - ".next": 1, - "os.path.isdir": 1, - "argparse": 1, - "matplotlib.pyplot": 1, - "pl": 1, - "numpy": 1, - "np": 1, - "scipy.optimize": 1, - "prettytable": 1, - "PrettyTable": 6, - "__docformat__": 1, - "S": 4, - "phif": 7, - "U": 10, - "_parse_args": 2, - "V": 12, - "np.genfromtxt": 8, - "delimiter": 8, - "U_err": 7, - "offset": 13, - "np.mean": 1, - "np.linspace": 9, - "min": 10, - "max": 11, - "y": 10, - "np.ones": 11, - "x.size": 2, - "pl.plot": 9, - "**6": 6, - ".format": 11, - "pl.errorbar": 8, - "yerr": 8, - "linestyle": 8, - "marker": 4, - "pl.grid": 5, - "pl.legend": 5, - "loc": 5, - "pl.title": 5, - "pl.xlabel": 5, - "ur": 11, - "pl.ylabel": 5, - "pl.savefig": 5, - "pl.clf": 5, - "glanz": 13, - "matt": 13, - "schwarz": 13, - "weiss": 13, - "T0": 1, - "T0_err": 2, - "glanz_phi": 4, - "matt_phi": 4, - "schwarz_phi": 4, - "weiss_phi": 4, - "T_err": 7, - "sigma": 4, - "boltzmann": 12, - "T": 6, - "epsilon": 7, - "T**4": 1, - "glanz_popt": 3, - "glanz_pconv": 1, - "op.curve_fit": 6, - "matt_popt": 3, - "matt_pconv": 1, - "schwarz_popt": 3, - "schwarz_pconv": 1, - "weiss_popt": 3, - "weiss_pconv": 1, - "glanz_x": 3, - "glanz_y": 2, - "*glanz_popt": 1, - "color": 8, - "matt_x": 3, - "matt_y": 2, - "*matt_popt": 1, - "schwarz_x": 3, - "schwarz_y": 2, - "*schwarz_popt": 1, - "weiss_x": 3, - "weiss_y": 2, - "*weiss_popt": 1, - "np.sqrt": 17, - "glanz_pconv.diagonal": 2, - "matt_pconv.diagonal": 2, - "schwarz_pconv.diagonal": 2, - "weiss_pconv.diagonal": 2, - "xerr": 6, - "U_err/S": 4, - "header": 5, - "glanz_table": 2, - "row": 10, - ".size": 4, - "*T_err": 4, - "glanz_phi.size": 1, - "*U_err/S": 4, - "glanz_table.add_row": 1, - "matt_table": 2, - "matt_phi.size": 1, - "matt_table.add_row": 1, - "schwarz_table": 2, - "schwarz_phi.size": 1, - "schwarz_table.add_row": 1, - "weiss_table": 2, - "weiss_phi.size": 1, - "weiss_table.add_row": 1, - "T0**4": 1, - "phi": 5, - "c": 3, - "a*x": 1, - "d**": 2, - "dy": 4, - "dx_err": 3, - "np.abs": 1, - "dy_err": 2, - "popt": 5, - "pconv": 2, - "*popt": 2, - "pconv.diagonal": 3, - "table": 2, - "table.align": 1, - "dy.size": 1, - "*dy_err": 1, - "table.add_row": 1, - "U1": 3, - "I1": 3, - "U2": 2, - "I_err": 2, - "p": 1, - "R": 1, - "R_err": 2, - "/I1": 1, - "**2": 2, - "U1/I1**2": 1, - "phi_err": 3, - "alpha": 2, - "beta": 1, - "R0": 6, - "R0_err": 2, - "alpha*R0": 2, - "*np.sqrt": 6, - "*beta*R": 5, - "alpha**2*R0": 5, - "*beta*R0": 7, - "*beta*R0*T0": 2, - "epsilon_err": 2, - "f1": 1, - "f2": 1, - "f3": 1, - "alpha**2": 1, - "*beta": 1, - "*beta*T0": 1, - "*beta*R0**2": 1, - "f1**2": 1, - "f2**2": 1, - "f3**2": 1, - "parser": 1, - "argparse.ArgumentParser": 1, - "description": 1, - "#parser.add_argument": 3, - "metavar": 1, - "nargs": 1, - "help": 2, - "dest": 1, - "default": 1, - "version": 6, - "parser.parse_args": 1, - "absolute_import": 1, - "division": 1, - "with_statement": 1, - "Cookie": 1, - "logging": 1, - "socket": 1, - "time": 1, - "tornado.escape": 1, - "utf8": 2, - "native_str": 4, - "parse_qs_bytes": 3, - "tornado": 3, - "httputil": 1, - "iostream": 1, - "tornado.netutil": 1, - "TCPServer": 2, - "stack_context": 1, - "tornado.util": 1, - "bytes_type": 2, - "ssl": 2, - "Python": 1, - "ImportError": 1, - "HTTPServer": 1, - "request_callback": 4, - "no_keep_alive": 4, - "io_loop": 3, - "xheaders": 4, - "ssl_options": 3, - "self.request_callback": 5, - "self.no_keep_alive": 4, - "self.xheaders": 3, - "TCPServer.__init__": 1, - "handle_stream": 1, - "stream": 4, - "address": 4, - "HTTPConnection": 2, - "_BadRequestException": 5, - "Exception": 2, - "self.stream": 1, - "self.address": 3, - "self._request": 7, - "self._request_finished": 4, - "self._header_callback": 3, - "stack_context.wrap": 2, - "self._on_headers": 1, - "self.stream.read_until": 2, - "self._write_callback": 5, - "write": 2, - "chunk": 5, - "callback": 7, - "self.stream.closed": 1, - "self.stream.write": 2, - "self._on_write_complete": 1, - "finish": 2, - "self.stream.writing": 2, - "self._finish_request": 2, - "_on_write_complete": 1, - "_finish_request": 1, - "disconnect": 5, - "connection_header": 5, - "self._request.headers.get": 2, - "connection_header.lower": 1, - "self._request.supports_http_1_1": 1, - "self._request.headers": 1, - "self._request.method": 2, - "self.stream.close": 2, - "_on_headers": 1, - "data.decode": 1, - "eol": 3, - "data.find": 1, - "start_line": 1, - "method": 5, - "uri": 5, - "start_line.split": 1, - "version.startswith": 1, - "headers": 5, - "httputil.HTTPHeaders.parse": 1, - "self.stream.socket": 1, - "socket.AF_INET": 2, - "socket.AF_INET6": 1, - "remote_ip": 8, - "HTTPRequest": 2, - "connection": 5, - "content_length": 6, - "headers.get": 2, - "self.stream.max_buffer_size": 1, - "self.stream.read_bytes": 1, - "self._on_request_body": 1, - "logging.info": 1, - "_on_request_body": 1, - "self._request.body": 2, - "content_type": 1, - "content_type.startswith": 2, - "arguments": 2, - "arguments.iteritems": 2, - "self._request.arguments.setdefault": 1, - "content_type.split": 1, - "sep": 2, - "field.strip": 1, - ".partition": 1, - "httputil.parse_multipart_form_data": 1, - "self._request.arguments": 1, - "self._request.files": 1, - "logging.warning": 1, - "body": 2, - "protocol": 4, - "host": 2, - "files": 2, - "self.method": 1, - "self.uri": 2, - "self.version": 2, - "self.headers": 4, - "httputil.HTTPHeaders": 1, - "self.body": 1, - "connection.xheaders": 1, - "self.remote_ip": 4, - "self.headers.get": 5, - "self._valid_ip": 1, - "self.protocol": 7, - "connection.stream": 1, - "iostream.SSLIOStream": 1, - "self.host": 2, - "self.files": 1, - "self.connection": 1, - "self._start_time": 3, - "time.time": 3, - "self._finish_time": 4, - "self.path": 1, - "self.query": 2, - "uri.partition": 1, - "self.arguments": 2, - "supports_http_1_1": 1, - "cookies": 1, - "self._cookies": 3, - "Cookie.SimpleCookie": 1, - "self._cookies.load": 1, - "self.connection.write": 1, - "self.connection.finish": 1, - "full_url": 1, - "request_time": 1, - "get_ssl_certificate": 1, - "self.connection.stream.socket.getpeercert": 1, - "ssl.SSLError": 1, - "_valid_ip": 1, - "ip": 2, - "socket.getaddrinfo": 1, - "socket.AF_UNSPEC": 1, - "socket.SOCK_STREAM": 1, - "socket.AI_NUMERICHOST": 1, - "socket.gaierror": 1, - "e.args": 1, - "socket.EAI_NONAME": 1 - }, - "QMake": { - "QT": 4, - "+": 13, - "core": 2, - "gui": 2, - "greaterThan": 1, - "(": 8, - "QT_MAJOR_VERSION": 1, - ")": 8, - "widgets": 1, - "contains": 2, - "QT_CONFIG": 2, - "opengl": 2, - "|": 1, - "opengles2": 1, - "{": 6, - "}": 6, - "else": 2, - "DEFINES": 1, - "QT_NO_OPENGL": 1, - "TEMPLATE": 2, - "app": 2, - "win32": 2, - "TARGET": 3, - "BlahApp": 1, - "RC_FILE": 1, - "Resources/winres.rc": 1, - "blahapp": 1, - "include": 1, - "functions.pri": 1, - "SOURCES": 2, - "file.cpp": 2, - "HEADERS": 2, - "file.h": 2, - "FORMS": 2, - "file.ui": 1, - "RESOURCES": 1, - "res.qrc": 1, - "exists": 1, - ".git/HEAD": 1, - "system": 2, - "git": 1, - "rev": 1, - "-": 1, - "parse": 1, - "HEAD": 1, - "rev.txt": 2, - "echo": 1, - "ThisIsNotAGitRepo": 1, - "SHEBANG#!qmake": 1, - "message": 1, - "This": 1, - "is": 1, - "QMake.": 1, - "CONFIG": 1, - "qt": 1, - "simpleapp": 1, - "file2.c": 1, - "This/Is/Folder/file3.cpp": 1, - "file2.h": 1, - "This/Is/Folder/file3.h": 1, - "This/Is/Folder/file3.ui": 1, - "Test.ui": 1 - }, - "R": { - "df.residual.mira": 1, - "<": 46, - "-": 53, - "function": 18, - "(": 219, - "object": 12, - "...": 4, - ")": 220, - "{": 58, - "fit": 2, - "analyses": 1, - "[": 23, - "]": 24, - "return": 8, - "df.residual": 2, - "}": 58, - "df.residual.lme": 1, - "fixDF": 1, - "df.residual.mer": 1, - "sum": 1, - "object@dims": 1, - "*": 2, - "c": 11, - "+": 4, - "df.residual.default": 1, - "q": 3, - "df": 3, - "if": 19, - "is.null": 8, - "mk": 2, - "try": 3, - "coef": 1, - "silent": 3, - "TRUE": 14, - "mn": 2, - "f": 9, - "fitted": 1, - "inherits": 6, - "|": 3, - "NULL": 2, - "n": 3, - "ifelse": 1, - "is.data.frame": 1, - "is.matrix": 1, - "nrow": 1, - "length": 3, - "k": 3, - "max": 1, - "SHEBANG#!Rscript": 2, - "#": 45, - "MedianNorm": 2, - "data": 13, - "geomeans": 3, - "<->": 1, - "exp": 1, - "rowMeans": 1, - "log": 5, - "apply": 2, - "2": 1, - "cnts": 2, - "median": 1, - "library": 1, - "print_usage": 2, - "file": 4, - "stderr": 1, - "cat": 1, - "spec": 2, - "matrix": 3, - "byrow": 3, - "ncol": 3, - "opt": 23, - "getopt": 1, - "help": 1, - "stdout": 1, - "status": 1, - "height": 7, - "out": 4, - "res": 6, - "width": 7, - "ylim": 7, - "read.table": 1, - "header": 1, - "sep": 4, - "quote": 1, - "nsamp": 8, - "dim": 1, - "outfile": 4, - "sprintf": 2, - "png": 2, - "h": 13, - "hist": 4, - "plot": 7, - "FALSE": 9, - "mids": 4, - "density": 4, - "type": 3, - "col": 4, - "rainbow": 4, - "main": 2, - "xlab": 2, - "ylab": 2, - "for": 4, - "i": 6, - "in": 8, - "lines": 6, - "devnum": 2, - "dev.off": 2, - "size.factors": 2, - "data.matrix": 1, - "data.norm": 3, - "t": 1, - "x": 3, - "/": 1, - "ParseDates": 2, - "dates": 3, - "unlist": 2, - "strsplit": 3, - "days": 2, - "times": 2, - "hours": 2, - "all.days": 2, - "all.hours": 2, - "data.frame": 1, - "Day": 2, - "factor": 2, - "levels": 2, - "Hour": 2, - "Main": 2, - "system": 1, - "intern": 1, - "punchcard": 4, - "as.data.frame": 1, - "table": 1, - "ggplot2": 6, - "ggplot": 1, - "aes": 2, - "y": 1, - "geom_point": 1, - "size": 1, - "Freq": 1, - "scale_size": 1, - "range": 1, - "ggsave": 1, - "filename": 1, - "hello": 2, - "print": 1, - "module": 25, - "code": 21, - "available": 1, - "via": 1, - "the": 16, - "environment": 4, - "like": 1, - "it": 3, - "returns.": 1, - "@param": 2, - "an": 1, - "identifier": 1, - "specifying": 1, - "full": 1, - "path": 9, - "search": 5, - "see": 1, - "Details": 1, - "even": 1, - "attach": 11, - "is": 7, - "optionally": 1, - "attached": 2, - "to": 9, - "of": 2, - "current": 2, - "scope": 1, - "defaults": 1, - ".": 7, - "However": 1, - "interactive": 2, - "invoked": 1, - "directly": 1, - "from": 5, - "terminal": 1, - "only": 1, - "i.e.": 1, - "not": 4, - "within": 1, - "modules": 4, - "import.attach": 1, - "can": 3, - "be": 8, - "set": 2, - "or": 1, - "depending": 1, - "on": 2, - "user": 1, - "s": 2, - "preference.": 1, - "attach_operators": 3, - "causes": 1, - "emph": 3, - "operators": 3, - "by": 2, - "default": 1, - "path.": 1, - "Not": 1, - "attaching": 1, - "them": 1, - "therefore": 1, - "drastically": 1, - "limits": 1, - "a": 6, - "usefulness.": 1, - "Modules": 1, - "are": 4, - "searched": 1, - "options": 1, - "priority.": 1, - "The": 5, - "directory": 1, - "always": 1, - "considered": 1, - "first.": 1, - "That": 1, - "local": 3, - "./a.r": 1, - "will": 2, - "loaded.": 1, - "Module": 1, - "names": 2, - "fully": 1, - "qualified": 1, - "refer": 1, - "nested": 1, - "paths.": 1, - "See": 1, - "import": 5, - "executed": 1, - "global": 1, - "effect": 1, - "same.": 1, - "When": 1, - "used": 2, - "globally": 1, - "inside": 1, - "newly": 2, - "outside": 1, - "nor": 1, - "other": 2, - "which": 3, - "might": 1, - "loaded": 4, - "@examples": 1, - "@seealso": 3, - "reload": 3, - "@export": 2, - "substitute": 2, - "stopifnot": 3, - "missing": 1, - "&&": 2, - "module_name": 7, - "getOption": 1, - "else": 4, - "class": 4, - "module_path": 15, - "find_module": 1, - "stop": 1, - "attr": 2, - "message": 1, - "containing_modules": 3, - "module_init_files": 1, - "mapply": 1, - "do_import": 4, - "mod_ns": 5, - "as.character": 3, - "module_parent": 8, - "parent.frame": 2, - "mod_env": 7, - "exhibit_namespace": 3, - "identical": 2, - ".GlobalEnv": 2, - "name": 10, - "environmentName": 2, - "parent.env": 4, - "export_operators": 2, - "invisible": 1, - "is_module_loaded": 1, - "get_loaded_module": 1, - "namespace": 13, - "structure": 3, - "new.env": 1, - "parent": 9, - ".BaseNamespaceEnv": 1, - "paste": 3, - "source": 3, - "chdir": 1, - "envir": 5, - "cache_module": 1, - "exported_functions": 2, - "lsf.str": 2, - "list2env": 2, - "sapply": 2, - "get": 2, - "ops": 2, - "is_predefined": 2, - "%": 2, - "is_op": 2, - "prefix": 3, - "||": 1, - "grepl": 1, - "Filter": 1, - "op_env": 4, - "cache.": 1, - "@note": 1, - "Any": 1, - "references": 1, - "remain": 1, - "unchanged": 1, - "and": 5, - "files": 1, - "would": 1, - "have": 1, - "happened": 1, - "without": 1, - "unload": 2, - "should": 2, - "production": 1, - "code.": 1, - "does": 1, - "currently": 1, - "detach": 1, - "environments.": 1, - "Reload": 1, - "given": 1, - "Remove": 1, - "cache": 1, - "forcing": 1, - "reload.": 1, - "reloaded": 1, - "reference": 1, - "unloaded": 1, - "still": 1, - "work.": 1, - "Reloading": 1, - "primarily": 1, - "useful": 1, - "testing": 1, - "during": 1, - "module_ref": 3, - "rm": 1, - "list": 1, - ".loaded_modules": 1, - "whatnot.": 1, - "assign": 1, - "##polyg": 1, - "vector": 2, - "##numpoints": 1, - "number": 1, - "##output": 1, - "output": 1, - "##": 1, - "Example": 1, - "scripts": 1, - "group": 1, - "pts": 1, - "spsample": 1, - "polyg": 1, - "numpoints": 1, - "docType": 1, - "package": 5, - "scholar": 6, - "alias": 2, - "title": 1, - "reads": 1, - "url": 2, - "http": 2, - "//scholar.google.com": 1, - "Dates": 1, - "citation": 2, - "counts": 1, - "estimated": 1, - "determined": 1, - "automatically": 1, - "computer": 1, - "program.": 1, - "Use": 1, - "at": 2, - "your": 1, - "own": 1, - "risk.": 1, - "description": 1, - "provides": 1, - "functions": 3, - "extract": 1, - "Google": 2, - "Scholar.": 1, - "There": 1, - "also": 1, - "convenience": 1, - "comparing": 1, - "multiple": 1, - "scholars": 1, - "predicting": 1, - "index": 1, - "scores": 1, - "based": 1, - "past": 1, - "publication": 1, - "records.": 1, - "note": 1, - "A": 1, - "complementary": 1, - "Scholar": 1, - "found": 1, - "//biostat.jhsph.edu/": 1, - "jleek/code/googleCite.r": 1, - "was": 1, - "developed": 1, - "independently.": 1 - }, - "RDoc": { - "RDoc": 7, - "-": 9, - "Ruby": 4, - "Documentation": 2, - "System": 1, - "home": 1, - "https": 3, - "//github.com/rdoc/rdoc": 1, - "rdoc": 7, - "http": 1, - "//docs.seattlerb.org/rdoc": 1, - "bugs": 1, - "//github.com/rdoc/rdoc/issues": 1, - "code": 1, - "quality": 1, - "{": 1, - "": 1, - "src=": 1, - "alt=": 1, - "}": 1, - "[": 3, - "//codeclimate.com/github/rdoc/rdoc": 1, - "]": 3, - "Description": 1, - "produces": 1, - "HTML": 1, - "and": 9, - "command": 4, - "line": 1, - "documentation": 8, - "for": 9, - "projects.": 1, - "includes": 1, - "the": 12, - "+": 8, - "ri": 1, - "tools": 1, - "generating": 1, - "displaying": 1, - "from": 1, - "line.": 1, - "Generating": 1, - "Once": 1, - "installed": 1, - "you": 3, - "can": 2, - "create": 1, - "using": 1, - "options": 1, - "names...": 1, - "For": 1, - "an": 1, - "up": 1, - "to": 4, - "date": 1, - "option": 1, - "summary": 1, - "type": 2, - "help": 1, - "A": 1, - "typical": 1, - "use": 1, - "might": 1, - "be": 3, - "generate": 1, - "a": 5, - "package": 1, - "of": 2, - "source": 2, - "(": 3, - "such": 1, - "as": 1, - "itself": 1, - ")": 3, - ".": 2, - "This": 2, - "generates": 1, - "all": 1, - "C": 1, - "files": 2, - "in": 4, - "below": 1, - "current": 1, - "directory.": 1, - "These": 1, - "will": 1, - "stored": 1, - "tree": 1, - "starting": 1, - "subdirectory": 1, - "doc": 1, - "You": 2, - "make": 2, - "this": 1, - "slightly": 1, - "more": 1, - "useful": 1, - "your": 1, - "readers": 1, - "by": 1, - "having": 1, - "index": 1, - "page": 1, - "contain": 1, - "primary": 1, - "file.": 1, - "In": 1, - "our": 1, - "case": 1, - "we": 1, - "could": 1, - "#": 1, - "rdoc/rdoc": 1, - "s": 1, - "OK": 1, - "file": 1, - "bug": 1, - "report": 1, - "anything": 1, - "t": 1, - "figure": 1, - "out": 1, - "how": 1, - "produce": 1, - "output": 1, - "like": 1, - "that": 1, - "is": 4, - "probably": 1, - "bug.": 1, - "License": 1, - "Copyright": 1, - "c": 2, - "Dave": 1, - "Thomas": 1, - "The": 1, - "Pragmatic": 1, - "Programmers.": 1, - "Portions": 2, - "Eric": 1, - "Hodel.": 1, - "copyright": 1, - "others": 1, - "see": 1, - "individual": 1, - "LEGAL.rdoc": 1, - "details.": 1, - "free": 1, - "software": 2, - "may": 1, - "redistributed": 1, - "under": 1, - "terms": 1, - "specified": 1, - "LICENSE.rdoc.": 1, - "Warranty": 1, - "provided": 1, - "without": 2, - "any": 1, - "express": 1, - "or": 1, - "implied": 2, - "warranties": 2, - "including": 1, - "limitation": 1, - "merchantability": 1, - "fitness": 1, - "particular": 1, - "purpose.": 1 - }, - "RMarkdown": { - "Some": 1, - "text.": 1, - "##": 1, - "A": 1, - "graphic": 1, - "in": 1, - "R": 1, - "{": 1, - "r": 1, - "}": 1, - "plot": 1, - "(": 3, - ")": 3, - "hist": 1, - "rnorm": 1 - }, - "Racket": { - ";": 3, - "Clean": 1, - "simple": 1, - "and": 1, - "efficient": 1, - "code": 1, - "-": 94, - "that": 2, - "s": 1, - "the": 3, - "power": 1, - "of": 4, - "Racket": 2, - "http": 1, - "//racket": 1, - "lang.org/": 1, - "(": 23, - "define": 1, - "bottles": 4, - "n": 8, - "more": 2, - ")": 23, - "printf": 2, - "case": 1, - "[": 16, - "]": 16, - "else": 1, - "if": 1, - "for": 2, - "in": 3, - "range": 1, - "sub1": 1, - "displayln": 2, - "#lang": 1, - "scribble/manual": 1, - "@": 3, - "require": 1, - "scribble/bnf": 1, - "@title": 1, - "{": 2, - "Scribble": 3, - "The": 1, - "Documentation": 1, - "Tool": 1, - "}": 2, - "@author": 1, - "is": 3, - "a": 1, - "collection": 1, - "tools": 1, - "creating": 1, - "prose": 2, - "documents": 1, - "papers": 1, - "books": 1, - "library": 1, - "documentation": 1, - "etc.": 1, - "HTML": 1, - "or": 2, - "PDF": 1, - "via": 1, - "Latex": 1, - "form.": 1, - "More": 1, - "generally": 1, - "helps": 1, - "you": 1, - "write": 1, - "programs": 1, - "are": 1, - "rich": 1, - "textual": 1, - "content": 2, - "whether": 1, - "to": 2, - "be": 2, - "typeset": 1, - "any": 1, - "other": 1, - "form": 1, - "text": 1, - "generated": 1, - "programmatically.": 1, - "This": 1, - "document": 1, - "itself": 1, - "written": 1, - "using": 1, - "Scribble.": 1, - "You": 1, - "can": 1, - "see": 1, - "its": 1, - "source": 1, - "at": 1, - "let": 1, - "url": 3, - "link": 1, - "starting": 1, - "with": 1, - "@filepath": 1, - "scribble.scrbl": 1, - "file.": 1, - "@table": 1, - "contents": 1, - "@include": 8, - "section": 9, - "@index": 1 - }, - "Ragel in Ruby Host": { - "begin": 3, - "%": 34, - "{": 19, - "machine": 3, - "ephemeris_parser": 1, - ";": 38, - "action": 9, - "mark": 6, - "p": 8, - "}": 19, - "parse_start_time": 2, - "parser.start_time": 1, - "data": 15, - "[": 20, - "mark..p": 4, - "]": 20, - ".pack": 6, - "(": 33, - ")": 33, - "parse_stop_time": 2, - "parser.stop_time": 1, - "parse_step_size": 2, - "parser.step_size": 1, - "parse_ephemeris_table": 2, - "fhold": 1, - "parser.ephemeris_table": 1, - "ws": 2, - "t": 1, - "r": 1, - "n": 1, - "adbc": 2, - "|": 11, - "year": 2, - "digit": 7, - "month": 2, - "upper": 1, - "lower": 1, - "date": 2, - "hours": 2, - "minutes": 2, - "seconds": 2, - "tz": 2, - "datetime": 3, - "time_unit": 2, - "s": 4, - "soe": 2, - "eoe": 2, - "ephemeris_table": 3, - "alnum": 1, - "*": 9, - "-": 5, - "./": 1, - "start_time": 4, - "space*": 2, - "stop_time": 4, - "step_size": 3, - "+": 7, - "ephemeris": 2, - "main": 3, - "any*": 3, - "end": 23, - "require": 1, - "module": 1, - "Tengai": 1, - "EPHEMERIS_DATA": 2, - "Struct.new": 1, - ".freeze": 1, - "class": 3, - "EphemerisParser": 1, - "<": 1, - "def": 10, - "self.parse": 1, - "parser": 2, - "new": 1, - "data.unpack": 1, - "if": 4, - "data.is_a": 1, - "String": 1, - "eof": 3, - "data.length": 3, - "write": 9, - "init": 3, - "exec": 3, - "time": 6, - "super": 2, - "parse_time": 3, - "private": 1, - "DateTime.parse": 1, - "simple_scanner": 1, - "Emit": 4, - "emit": 4, - "ts": 4, - "..": 1, - "te": 1, - "foo": 8, - "any": 4, - "#": 4, - "SimpleScanner": 1, - "attr_reader": 2, - "path": 8, - "initialize": 2, - "@path": 2, - "stdout.puts": 2, - "perform": 2, - "pe": 4, - "ignored": 4, - "leftover": 8, - "File.open": 2, - "do": 2, - "f": 2, - "while": 2, - "chunk": 2, - "f.read": 2, - "ENV": 2, - ".to_i": 2, - "chunk.unpack": 2, - "||": 1, - "ts..pe": 1, - "else": 2, - "SimpleScanner.new": 1, - "ARGV": 2, - "s.perform": 2, - "simple_tokenizer": 1, - "MyTs": 2, - "my_ts": 6, - "MyTe": 2, - "my_te": 6, - "my_ts...my_te": 1, - "nil": 4, - "SimpleTokenizer": 1, - "my_ts..": 1, - "SimpleTokenizer.new": 1 - }, - "Rebol": { - "REBOL": 5, - "[": 54, - "System": 1, - "Title": 2, - "Rights": 1, - "{": 8, - "Copyright": 1, - "Technologies": 2, - "is": 4, - "a": 2, - "trademark": 1, - "of": 1, - "}": 8, - "License": 2, - "Licensed": 1, - "under": 1, - "the": 3, - "Apache": 1, - "Version": 1, - "See": 1, - "http": 1, - "//www.apache.org/licenses/LICENSE": 1, - "-": 26, - "Purpose": 1, - "These": 1, - "are": 2, - "used": 3, - "to": 2, - "define": 1, - "natives": 1, - "and": 2, - "actions.": 1, - "Bind": 1, - "attributes": 1, - "for": 4, - "this": 1, - "block": 5, - "BIND_SET": 1, - "SHALLOW": 1, - "]": 61, - ";": 19, - "Special": 1, - "as": 1, - "spec": 3, - "datatype": 2, - "test": 1, - "functions": 1, - "(": 30, - "e.g.": 1, - "time": 2, - ")": 33, - "value": 1, - "any": 1, - "type": 1, - "The": 1, - "native": 5, - "function": 3, - "must": 1, - "be": 1, - "defined": 1, - "first.": 1, - "This": 1, - "special": 1, - "boot": 1, - "created": 1, - "manually": 1, - "within": 1, - "C": 1, - "code.": 1, - "Creates": 2, - "internal": 2, - "usage": 2, - "only": 2, - ".": 4, - "no": 3, - "check": 2, - "required": 2, - "we": 2, - "know": 2, - "it": 2, - "correct": 2, - "action": 2, - "Rebol": 4, - "re": 20, - "func": 5, - "s": 5, - "/i": 1, - "rejoin": 1, - "compose": 1, - "either": 1, - "i": 1, - "little": 1, - "helper": 1, - "standard": 1, - "grammar": 1, - "regex": 2, - "date": 6, - "naive": 1, - "string": 1, - "|": 22, - "S": 3, - "*": 7, - "<(?:[^^\\>": 1, - "d": 3, - "+": 6, - "/": 5, - "@": 1, - "%": 2, - "A": 3, - "F": 1, - "url": 1, - "PR_LITERAL": 10, - "string_url": 1, - "email": 1, - "string_email": 1, - "binary": 1, - "binary_base_two": 1, - "binary_base_sixty_four": 1, - "binary_base_sixteen": 1, - "re/i": 2, - "issue": 1, - "string_issue": 1, - "values": 1, - "value_date": 1, - "value_time": 1, - "tuple": 1, - "value_tuple": 1, - "pair": 1, - "value_pair": 1, - "number": 2, - "PR": 1, - "Za": 2, - "z0": 2, - "<[=>": 1, - "rebol": 1, - "red": 1, - "/system": 1, - "world": 1, - "topaz": 1, - "true": 1, - "false": 1, - "yes": 1, - "on": 1, - "off": 1, - "none": 1, - "#": 1, - "hello": 8, - "print": 4, - "author": 1 - }, - "Red": { - "Red": 3, - "[": 111, - "Title": 2, - "Author": 1, - "]": 114, - "File": 1, - "%": 2, - "console.red": 1, - "Tabs": 1, - "Rights": 1, - "License": 2, - "{": 11, - "Distributed": 1, - "under": 1, - "the": 3, - "Boost": 1, - "Software": 1, - "Version": 1, - "See": 1, - "https": 1, - "//github.com/dockimbel/Red/blob/master/BSL": 1, - "-": 74, - "License.txt": 1, - "}": 11, - "Purpose": 2, - "Language": 2, - "http": 2, - "//www.red": 2, - "lang.org/": 2, - "#system": 1, - "global": 1, - "#either": 3, - "OS": 3, - "MacOSX": 2, - "History": 1, - "library": 1, - "cdecl": 3, - "add": 2, - "history": 2, - ";": 31, - "Add": 1, - "line": 9, - "to": 2, - "history.": 1, - "c": 7, - "string": 10, - "rl": 4, - "insert": 3, - "wrapper": 2, - "func": 1, - "count": 3, - "integer": 16, - "key": 3, - "return": 10, - "Windows": 2, - "system/platform": 1, - "ret": 5, - "AttachConsole": 1, - "if": 2, - "zero": 3, - "print": 5, - "halt": 2, - "SetConsoleTitle": 1, - "as": 4, - "string/rs": 1, - "head": 1, - "str": 4, - "bind": 1, - "tab": 3, - "input": 2, - "routine": 1, - "prompt": 3, - "/local": 1, - "len": 1, - "buffer": 4, - "string/load": 1, - "+": 1, - "length": 1, - "free": 1, - "byte": 3, - "ptr": 14, - "SET_RETURN": 1, - "(": 6, - ")": 4, - "delimiters": 1, - "function": 6, - "block": 3, - "list": 1, - "copy": 2, - "none": 1, - "foreach": 1, - "case": 2, - "escaped": 2, - "no": 2, - "in": 2, - "comment": 2, - "switch": 3, - "#": 8, - "mono": 3, - "mode": 3, - "cnt/1": 1, - "red": 1, - "eval": 1, - "code": 3, - "load/all": 1, - "unless": 1, - "tail": 1, - "set/any": 1, - "not": 1, - "script/2": 1, - "do": 2, - "skip": 1, - "script": 1, - "quit": 2, - "init": 1, - "console": 2, - "Console": 1, - "alpha": 1, - "version": 3, - "only": 1, - "ASCII": 1, - "supported": 1, - "Red/System": 1, - "#include": 1, - "../common/FPU": 1, - "configuration.reds": 1, - "C": 1, - "types": 1, - "#define": 2, - "time": 2, - "long": 2, - "clock": 1, - "date": 1, - "alias": 2, - "struct": 5, - "second": 1, - "minute": 1, - "hour": 1, - "day": 1, - "month": 1, - "year": 1, - "Since": 1, - "weekday": 1, - "since": 1, - "Sunday": 1, - "yearday": 1, - "daylight": 1, - "saving": 1, - "Negative": 1, - "unknown": 1, - "#import": 1, - "LIBC": 1, - "file": 1, - "Error": 1, - "handling": 1, - "form": 1, - "error": 5, - "Return": 1, - "description.": 1, - "Print": 1, - "standard": 1, - "output.": 1, - "Memory": 1, - "management": 1, - "make": 1, - "Allocate": 1, - "filled": 1, - "memory.": 1, - "chunks": 1, - "size": 5, - "binary": 4, - "resize": 1, - "Resize": 1, - "memory": 2, - "allocation.": 1, - "JVM": 6, - "reserved0": 1, - "int": 6, - "reserved1": 1, - "reserved2": 1, - "DestroyJavaVM": 1, - "JNICALL": 5, - "vm": 5, - "jint": 5, - "AttachCurrentThread": 1, - "penv": 3, - "p": 3, - "args": 2, - "DetachCurrentThread": 1, - "GetEnv": 1, - "AttachCurrentThreadAsDaemon": 1, - "just": 2, - "some": 2, - "datatypes": 1, - "for": 1, - "testing": 1, - "#some": 1, - "hash": 1, - "FF0000": 3, - "FF000000": 2, - "with": 4, - "instead": 1, - "of": 1, - "space": 2, - "/wAAAA": 1, - "/wAAA": 2, - "A": 2, - "inside": 2, - "char": 1, - "bla": 2, - "ff": 1, - "foo": 3, - "numbers": 1, - "which": 1, - "interpreter": 1, - "path": 1, - "h": 1, - "#if": 1, - "type": 1, - "exe": 1, - "push": 3, - "system/stack/frame": 2, - "save": 1, - "previous": 1, - "frame": 2, - "pointer": 2, - "system/stack/top": 1, - "@@": 1, - "reposition": 1, - "after": 1, - "catch": 1, - "flag": 1, - "CATCH_ALL": 1, - "exceptions": 1, - "root": 1, - "barrier": 1, - "keep": 1, - "stack": 1, - "aligned": 1, - "on": 1, - "bit": 1 - }, - "RobotFramework": { - "***": 16, - "Settings": 3, - "Documentation": 3, - "Example": 3, - "test": 6, - "cases": 2, - "using": 4, - "the": 9, - "data": 2, - "-": 16, - "driven": 4, - "testing": 2, - "approach.": 2, - "...": 28, - "Tests": 1, - "use": 2, - "Calculate": 3, - "keyword": 5, - "created": 1, - "in": 5, - "this": 1, - "file": 1, - "that": 5, - "turn": 1, - "uses": 1, - "keywords": 3, - "CalculatorLibrary": 5, - ".": 4, - "An": 1, - "exception": 1, - "is": 6, - "last": 1, - "has": 5, - "a": 4, - "custom": 1, - "_template": 1, - "keyword_.": 1, - "The": 2, - "style": 3, - "works": 3, - "well": 3, - "when": 2, - "you": 1, - "need": 3, - "to": 5, - "repeat": 1, - "same": 1, - "workflow": 3, - "multiple": 2, - "times.": 1, - "Notice": 1, - "one": 1, - "of": 3, - "these": 1, - "tests": 5, - "fails": 1, - "on": 1, - "purpose": 1, - "show": 1, - "how": 1, - "failures": 1, - "look": 1, - "like.": 1, - "Test": 4, - "Template": 2, - "Library": 3, - "Cases": 3, - "Expression": 1, - "Expected": 1, - "Addition": 2, - "+": 6, - "Subtraction": 1, - "Multiplication": 1, - "*": 4, - "Division": 2, - "/": 5, - "Failing": 1, - "Calculation": 3, - "error": 4, - "[": 4, - "]": 4, - "should": 9, - "fail": 2, - "kekkonen": 1, - "Invalid": 2, - "button": 13, - "{": 15, - "EMPTY": 3, - "}": 15, - "expression.": 1, - "by": 3, - "zero.": 1, - "Keywords": 2, - "Arguments": 2, - "expression": 5, - "expected": 4, - "Push": 16, - "buttons": 4, - "C": 4, - "Result": 8, - "be": 9, - "Should": 2, - "cause": 1, - "equal": 1, - "#": 2, - "Using": 1, - "BuiltIn": 1, - "case": 1, - "gherkin": 1, - "syntax.": 1, - "This": 3, - "similar": 1, - "examples.": 1, - "difference": 1, - "higher": 1, - "abstraction": 1, - "level": 1, - "and": 2, - "their": 1, - "arguments": 1, - "are": 1, - "embedded": 1, - "into": 1, - "names.": 1, - "kind": 2, - "_gherkin_": 2, - "syntax": 1, - "been": 3, - "made": 1, - "popular": 1, - "http": 1, - "//cukes.info": 1, - "|": 1, - "Cucumber": 1, - "It": 1, - "especially": 1, - "act": 1, - "as": 1, - "examples": 1, - "easily": 1, - "understood": 1, - "also": 2, - "business": 2, - "people.": 1, - "Given": 1, - "calculator": 1, - "cleared": 2, - "When": 1, - "user": 2, - "types": 2, - "pushes": 2, - "equals": 2, - "Then": 1, - "result": 2, - "Calculator": 1, - "User": 2, - "All": 1, - "contain": 1, - "constructed": 1, - "from": 1, - "Creating": 1, - "new": 1, - "or": 1, - "editing": 1, - "existing": 1, - "easy": 1, - "even": 1, - "for": 2, - "people": 2, - "without": 1, - "programming": 1, - "skills.": 1, - "normal": 1, - "automation.": 1, - "If": 1, - "understand": 1, - "may": 1, - "work": 1, - "better.": 1, - "Simple": 1, - "calculation": 2, - "Longer": 1, - "Clear": 1, - "built": 1, - "variable": 1 - }, - "Ruby": { - "Pry.config.commands.import": 1, - "Pry": 1, - "ExtendedCommands": 1, - "Experimental": 1, - "Pry.config.pager": 1, - "false": 29, - "Pry.config.color": 1, - "Pry.config.commands.alias_command": 1, - "Pry.config.commands.command": 1, - "do": 38, - "|": 93, - "*args": 17, - "output.puts": 1, - "end": 239, - "Pry.config.history.should_save": 1, - "Pry.config.prompt": 1, - "[": 58, - "proc": 2, - "{": 70, - "}": 70, - "]": 58, - "Pry.plugins": 1, - ".disable": 1, - "appraise": 2, - "gem": 3, - "load": 3, - "Dir": 4, - ".each": 4, - "plugin": 3, - "(": 244, - ")": 256, - "task": 2, - "default": 2, - "puts": 12, - "module": 8, - "Foo": 1, - "require": 58, - "class": 7, - "Formula": 2, - "include": 3, - "FileUtils": 1, - "attr_reader": 5, - "name": 51, - "path": 16, - "url": 12, - "version": 10, - "homepage": 2, - "specs": 14, - "downloader": 6, - "standard": 2, - "unstable": 2, - "head": 3, - "bottle_version": 2, - "bottle_url": 3, - "bottle_sha1": 2, - "buildpath": 1, - "def": 143, - "initialize": 2, - "nil": 21, - "set_instance_variable": 12, - "if": 72, - "@head": 4, - "and": 6, - "not": 3, - "@url": 8, - "or": 7, - "ARGV.build_head": 2, - "@version": 10, - "@spec_to_use": 4, - "@unstable": 2, - "else": 25, - "@standard.nil": 1, - "SoftwareSpecification.new": 3, - "@specs": 3, - "@standard": 3, - "raise": 17, - "@url.nil": 1, - "@name": 3, - "validate_variable": 7, - "@path": 1, - "path.nil": 1, - "self.class.path": 1, - "Pathname.new": 3, - "||": 22, - "@spec_to_use.detect_version": 1, - "CHECKSUM_TYPES.each": 1, - "type": 10, - "@downloader": 2, - "download_strategy.new": 2, - "@spec_to_use.url": 1, - "@spec_to_use.specs": 1, - "@bottle_url": 2, - "bottle_base_url": 1, - "+": 47, - "bottle_filename": 1, - "self": 11, - "@bottle_sha1": 2, - "installed": 2, - "return": 25, - "installed_prefix.children.length": 1, - "rescue": 13, - "explicitly_requested": 1, - "ARGV.named.empty": 1, - "ARGV.formulae.include": 1, - "linked_keg": 1, - "HOMEBREW_REPOSITORY/": 2, - "/@name": 1, - "installed_prefix": 1, - "head_prefix": 2, - "HOMEBREW_CELLAR": 2, - "head_prefix.directory": 1, - "prefix": 14, - "rack": 1, - ";": 41, - "prefix.parent": 1, - "bin": 1, - "doc": 1, - "info": 2, - "lib": 1, - "libexec": 1, - "man": 9, - "man1": 1, - "man2": 1, - "man3": 1, - "man4": 1, - "man5": 1, - "man6": 1, - "man7": 1, - "man8": 1, - "sbin": 1, - "share": 1, - "etc": 1, - "HOMEBREW_PREFIX": 2, - "var": 1, - "plist_name": 2, - "plist_path": 1, - "download_strategy": 1, - "@spec_to_use.download_strategy": 1, - "cached_download": 1, - "@downloader.cached_location": 1, - "caveats": 1, - "options": 3, - "patches": 2, - "keg_only": 2, - "self.class.keg_only_reason": 1, - "fails_with": 2, - "cc": 3, - "self.class.cc_failures.nil": 1, - "Compiler.new": 1, - "unless": 15, - "cc.is_a": 1, - "Compiler": 1, - "self.class.cc_failures.find": 1, - "failure": 1, - "next": 1, - "failure.compiler": 1, - "cc.name": 1, - "failure.build.zero": 1, - "failure.build": 1, - "cc.build": 1, - "skip_clean": 2, - "true": 15, - "self.class.skip_clean_all": 1, - "to_check": 2, - "path.relative_path_from": 1, - ".to_s": 3, - "self.class.skip_clean_paths.include": 1, - "brew": 2, - "stage": 2, - "begin": 9, - "patch": 3, - "yield": 5, - "Interrupt": 2, - "RuntimeError": 1, - "SystemCallError": 1, - "e": 8, - "#": 100, - "don": 1, - "config.log": 2, - "t": 3, - "a": 10, - "std_autotools": 1, - "variant": 1, - "because": 1, - "autotools": 1, - "is": 3, - "lot": 1, - "std_cmake_args": 1, - "%": 10, - "W": 1, - "-": 34, - "DCMAKE_INSTALL_PREFIX": 1, - "DCMAKE_BUILD_TYPE": 1, - "None": 1, - "DCMAKE_FIND_FRAMEWORK": 1, - "LAST": 1, - "Wno": 1, - "dev": 1, - "self.class_s": 2, - "#remove": 1, - "invalid": 1, - "characters": 1, - "then": 4, - "camelcase": 1, - "it": 1, - "name.capitalize.gsub": 1, - "/": 34, - "_.": 1, - "s": 2, - "zA": 1, - "Z0": 1, - "upcase": 1, - ".gsub": 5, - "self.names": 1, - ".map": 6, - "f": 11, - "File.basename": 2, - ".sort": 2, - "self.all": 1, - "map": 1, - "self.map": 1, - "rv": 3, - "each": 1, - "<<": 15, - "self.each": 1, - "names.each": 1, - "n": 4, - "Formula.factory": 2, - "onoe": 2, - "inspect": 2, - "self.aliases": 1, - "self.canonical_name": 1, - "name.to_s": 3, - "name.kind_of": 2, - "Pathname": 2, - "formula_with_that_name": 1, - "HOMEBREW_REPOSITORY": 4, - "possible_alias": 1, - "possible_cached_formula": 1, - "HOMEBREW_CACHE_FORMULA": 2, - "name.include": 2, - "r": 3, - ".": 3, - "tapd": 1, - ".downcase": 2, - "tapd.find_formula": 1, - "relative_pathname": 1, - "relative_pathname.stem.to_s": 1, - "tapd.directory": 1, - "elsif": 7, - "formula_with_that_name.file": 1, - "formula_with_that_name.readable": 1, - "possible_alias.file": 1, - "possible_alias.realpath.basename": 1, - "possible_cached_formula.file": 1, - "possible_cached_formula.to_s": 1, - "self.factory": 1, - "https": 1, - "ftp": 1, - "//": 3, - ".basename": 1, - "target_file": 6, - "name.basename": 1, - "HOMEBREW_CACHE_FORMULA.mkpath": 1, - "FileUtils.rm": 1, - "force": 1, - "curl": 1, - "install_type": 4, - "from_url": 1, - "Formula.canonical_name": 1, - ".rb": 1, - "path.stem": 1, - "from_path": 1, - "path.to_s": 3, - "Formula.path": 1, - "from_name": 2, - "klass_name": 2, - "klass": 16, - "Object.const_get": 1, - "NameError": 2, - "LoadError": 3, - "klass.new": 2, - "FormulaUnavailableError.new": 1, - "tap": 1, - "path.realpath.to_s": 1, - "/Library/Taps/": 1, - "w": 6, - "self.path": 1, - "mirrors": 4, - "self.class.mirrors": 1, - "deps": 1, - "self.class.dependencies.deps": 1, - "external_deps": 1, - "self.class.dependencies.external_deps": 1, - "recursive_deps": 1, - "Formula.expand_deps": 1, - ".flatten.uniq": 1, - "self.expand_deps": 1, - "f.deps.map": 1, - "dep": 3, - "f_dep": 3, - "dep.to_s": 1, - "expand_deps": 1, - "protected": 1, - "system": 1, - "cmd": 6, - "pretty_args": 1, - "args.dup": 1, - "pretty_args.delete": 1, - "ARGV.verbose": 2, - "ohai": 3, - ".strip": 1, - "removed_ENV_variables": 2, - "case": 5, - "args.empty": 1, - "cmd.split": 1, - ".first": 1, - "when": 11, - "ENV.remove_cc_etc": 1, - "safe_system": 4, - "rd": 1, - "wr": 3, - "IO.pipe": 1, - "pid": 1, - "fork": 1, - "rd.close": 1, - "stdout.reopen": 1, - "stderr.reopen": 1, - "args.collect": 1, - "arg": 1, - "arg.to_s": 1, - "exec": 2, - "exit": 2, - "never": 1, - "gets": 1, - "here": 1, - "threw": 1, - "failed": 3, - "wr.close": 1, - "out": 4, - "rd.read": 1, - "until": 1, - "rd.eof": 1, - "Process.wait": 1, - ".success": 1, - "removed_ENV_variables.each": 1, - "key": 8, - "value": 4, - "ENV": 4, - "ENV.kind_of": 1, - "Hash": 3, - "BuildError.new": 1, - "args": 5, - "public": 2, - "fetch": 2, - "install_bottle": 1, - "CurlBottleDownloadStrategy.new": 1, - "mirror_list": 2, - "HOMEBREW_CACHE.mkpath": 1, - "fetched": 4, - "downloader.fetch": 1, - "CurlDownloadStrategyError": 1, - "mirror_list.empty": 1, - "mirror_list.shift.values_at": 1, - "retry": 2, - "checksum_type": 2, - "CHECKSUM_TYPES.detect": 1, - "instance_variable_defined": 2, - "verify_download_integrity": 2, - "fn": 2, - "args.length": 1, - "md5": 2, - "supplied": 4, - "instance_variable_get": 2, - "type.to_s.upcase": 1, - "hasher": 2, - "Digest.const_get": 1, - "hash": 2, - "fn.incremental_hash": 1, - "supplied.empty": 1, - "message": 2, - "EOF": 2, - "mismatch": 1, - "Expected": 1, - "Got": 1, - "Archive": 1, - "To": 1, - "an": 1, - "incomplete": 1, - "download": 1, - "remove": 1, - "the": 8, - "file": 1, - "above.": 1, - "supplied.upcase": 1, - "hash.upcase": 1, - "opoo": 1, - "private": 3, - "CHECKSUM_TYPES": 2, - "sha1": 4, - "sha256": 1, - ".freeze": 1, - "fetched.kind_of": 1, - "mktemp": 1, - "downloader.stage": 1, - "@buildpath": 2, - "Pathname.pwd": 1, - "patch_list": 1, - "Patches.new": 1, - "patch_list.empty": 1, - "patch_list.external_patches": 1, - "patch_list.download": 1, - "patch_list.each": 1, - "p": 2, - "p.compression": 1, - "gzip": 1, - "p.compressed_filename": 2, - "bzip2": 1, - "*": 3, - "p.patch_args": 1, - "v": 2, - "v.to_s.empty": 1, - "s/": 1, - "class_value": 3, - "self.class.send": 1, - "instance_variable_set": 1, - "self.method_added": 1, - "method": 4, - "self.attr_rw": 1, - "attrs": 1, - "attrs.each": 1, - "attr": 4, - "class_eval": 1, - "Q": 1, - "val": 10, - "val.nil": 3, - "@#": 2, - "attr_rw": 4, - "keg_only_reason": 1, - "skip_clean_all": 2, - "cc_failures": 1, - "stable": 2, - "&": 31, - "block": 30, - "block_given": 5, - "instance_eval": 2, - "ARGV.build_devel": 2, - "devel": 1, - "@mirrors": 3, - "clear": 1, - "from": 1, - "release": 1, - "bottle": 1, - "bottle_block": 1, - "Class.new": 2, - "self.version": 1, - "self.url": 1, - "self.sha1": 1, - "sha1.shift": 1, - "@sha1": 6, - "MacOS.cat": 1, - "String": 2, - "MacOS.lion": 1, - "self.data": 1, - "&&": 8, - "bottle_block.instance_eval": 1, - "@bottle_version": 1, - "bottle_block.data": 1, - "mirror": 1, - "@mirrors.uniq": 1, - "dependencies": 1, - "@dependencies": 1, - "DependencyCollector.new": 1, - "depends_on": 1, - "dependencies.add": 1, - "paths": 3, - "all": 1, - "@skip_clean_all": 2, - "@skip_clean_paths": 3, - ".flatten.each": 1, - "p.to_s": 2, - "@skip_clean_paths.include": 1, - "skip_clean_paths": 1, - "reason": 2, - "explanation": 1, - "@keg_only_reason": 1, - "KegOnlyReason.new": 1, - "explanation.to_s.chomp": 1, - "compiler": 3, - "@cc_failures": 2, - "CompilerFailures.new": 1, - "CompilerFailure.new": 2, - "Grit": 1, - "ActiveSupport": 1, - "Inflector": 1, - "extend": 2, - "pluralize": 3, - "word": 10, - "apply_inflections": 3, - "inflections.plurals": 1, - "singularize": 2, - "inflections.singulars": 1, - "camelize": 2, - "term": 1, - "uppercase_first_letter": 2, - "string": 4, - "term.to_s": 1, - "string.sub": 2, - "z": 7, - "d": 6, - "*/": 1, - "inflections.acronyms": 1, - ".capitalize": 1, - "inflections.acronym_regex": 2, - "b": 4, - "A": 5, - "Z_": 1, - "string.gsub": 1, - "_": 2, - "/i": 2, - "underscore": 3, - "camel_cased_word": 6, - "camel_cased_word.to_s.dup": 1, - "word.gsub": 4, - "Za": 1, - "Z": 3, - "word.tr": 1, - "word.downcase": 1, - "humanize": 2, - "lower_case_and_underscored_word": 1, - "result": 8, - "lower_case_and_underscored_word.to_s.dup": 1, - "inflections.humans.each": 1, - "rule": 4, - "replacement": 4, - "break": 4, - "result.sub": 2, - "result.gsub": 2, - "/_id": 1, - "result.tr": 1, - "match": 6, - "w/": 1, - ".upcase": 1, - "titleize": 1, - "": 1, - "capitalize": 1, - "Create": 1, - "of": 1, - "table": 2, - "like": 1, - "Rails": 1, - "does": 1, - "for": 1, - "models": 1, - "to": 1, - "names": 2, - "This": 1, - "uses": 1, - "on": 2, - "last": 4, - "in": 3, - "RawScaledScorer": 1, - "tableize": 2, - "class_name": 2, - "classify": 1, - "table_name": 1, - "table_name.to_s.sub": 1, - "/.*": 1, - "./": 1, - "dasherize": 1, - "underscored_word": 1, - "underscored_word.tr": 1, - "demodulize": 1, - "i": 2, - "path.rindex": 2, - "..": 1, - "deconstantize": 1, - "implementation": 1, - "based": 1, - "one": 1, - "facets": 1, - "id": 1, - "outside": 2, - "inside": 2, - "owned": 1, - "constant": 4, - "constant.ancestors.inject": 1, - "const": 3, - "ancestor": 3, - "Object": 1, - "ancestor.const_defined": 1, - "constant.const_get": 1, - "safe_constantize": 1, - "constantize": 1, - "e.message": 2, - "uninitialized": 1, - "wrong": 1, - "const_regexp": 3, - "e.name.to_s": 1, - "camel_cased_word.to_s": 1, - "ArgumentError": 1, - "/not": 1, - "missing": 1, - "ordinal": 1, - "number": 2, - ".include": 1, - "number.to_i.abs": 2, - "ordinalize": 1, - "nodoc": 3, - "parts": 1, - "camel_cased_word.split": 1, - "parts.pop": 1, - "parts.reverse.inject": 1, - "acc": 2, - "part": 1, - "part.empty": 1, - "rules": 1, - "word.to_s.dup": 1, - "word.empty": 1, - "inflections.uncountables.include": 1, - "result.downcase": 1, - "Z/": 1, - "rules.each": 1, - ".unshift": 1, - "File.dirname": 4, - "__FILE__": 3, - "For": 1, - "use/testing": 1, - "no": 1, - "require_all": 4, - "glob": 2, - "File.join": 6, - "Jekyll": 3, - "VERSION": 1, - "DEFAULTS": 2, - "Dir.pwd": 3, - "self.configuration": 1, - "override": 3, - "source": 2, - "config_file": 2, - "config": 3, - "YAML.load_file": 1, - "config.is_a": 1, - "stdout.puts": 1, - "err": 1, - "stderr.puts": 2, - "err.to_s": 1, - "DEFAULTS.deep_merge": 1, - ".deep_merge": 1, - "Jenkins": 1, - "Plugin": 1, - "Specification.new": 1, - "plugin.name": 1, - "plugin.display_name": 1, - "plugin.version": 1, - "plugin.description": 1, - "plugin.url": 1, - "plugin.developed_by": 1, - "plugin.uses_repository": 1, - "github": 1, - "plugin.depends_on": 1, - "#plugin.depends_on": 1, - "SHEBANG#!macruby": 1, - "object": 2, - "@user": 1, - "person": 1, - "attributes": 2, - "username": 1, - "email": 1, - "location": 1, - "created_at": 1, - "registered_at": 1, - "node": 2, - "role": 1, - "user": 1, - "user.is_admin": 1, - "child": 1, - "phone_numbers": 1, - "pnumbers": 1, - "extends": 1, - "node_numbers": 1, - "u": 1, - "partial": 1, - "u.phone_numbers": 1, - "Resque": 3, - "Helpers": 1, - "redis": 7, - "server": 11, - "/redis": 1, - "Redis.connect": 2, - "thread_safe": 2, - "namespace": 3, - "server.split": 2, - "host": 3, - "port": 4, - "db": 3, - "Redis.new": 1, - "resque": 2, - "@redis": 6, - "Redis": 3, - "Namespace.new": 2, - "Namespace": 1, - "@queues": 2, - "Hash.new": 1, - "h": 2, - "Queue.new": 1, - "coder": 3, - "@coder": 1, - "MultiJsonCoder.new": 1, - "attr_writer": 4, - "self.redis": 2, - "Redis.respond_to": 1, - "connect": 1, - "redis_id": 2, - "redis.respond_to": 2, - "redis.server": 1, - "nodes": 1, - "distributed": 1, - "redis.nodes.map": 1, - "n.id": 1, - ".join": 1, - "redis.client.id": 1, - "before_first_fork": 2, - "@before_first_fork": 2, - "before_fork": 2, - "@before_fork": 2, - "after_fork": 2, - "@after_fork": 2, - "to_s": 1, - "attr_accessor": 2, - "inline": 3, - "alias": 1, - "push": 1, - "queue": 24, - "item": 4, - "pop": 1, - ".pop": 1, - "ThreadError": 1, - "size": 3, - ".size": 1, - "peek": 1, - "start": 7, - "count": 5, - ".slice": 1, - "list_range": 1, - "decode": 2, - "redis.lindex": 1, - "Array": 2, - "redis.lrange": 1, - "queues": 3, - "redis.smembers": 1, - "remove_queue": 1, - ".destroy": 1, - "@queues.delete": 1, - "queue.to_s": 1, - "enqueue": 1, - "enqueue_to": 2, - "queue_from_class": 4, - "before_hooks": 2, - "Plugin.before_enqueue_hooks": 1, - ".collect": 2, - "hook": 9, - "klass.send": 4, - "before_hooks.any": 2, - "Job.create": 1, - "Plugin.after_enqueue_hooks": 1, - "dequeue": 1, - "Plugin.before_dequeue_hooks": 1, - "Job.destroy": 1, - "Plugin.after_dequeue_hooks": 1, - "klass.instance_variable_get": 1, - "@queue": 1, - "klass.respond_to": 1, - "klass.queue": 1, - "reserve": 1, - "Job.reserve": 1, - "validate": 1, - "NoQueueError.new": 1, - "klass.to_s.empty": 1, - "NoClassError.new": 1, - "workers": 2, - "Worker.all": 1, - "working": 2, - "Worker.working": 1, - "remove_worker": 1, - "worker_id": 2, - "worker": 1, - "Worker.find": 1, - "worker.unregister_worker": 1, - "pending": 1, - "queues.inject": 1, - "m": 3, - "k": 2, - "processed": 2, - "Stat": 2, - "queues.size": 1, - "workers.size.to_i": 1, - "working.size": 1, - "servers": 1, - "environment": 2, - "keys": 6, - "redis.keys": 1, - "key.sub": 1, - "SHEBANG#!ruby": 2, - "SHEBANG#!rake": 1, - "Sinatra": 2, - "Request": 2, - "<": 2, - "Rack": 1, - "accept": 1, - "@env": 2, - "entries": 1, - ".to_s.split": 1, - "entries.map": 1, - "accept_entry": 1, - ".sort_by": 1, - "first": 1, - "preferred_type": 1, - "self.defer": 1, - "pattern": 1, - "path.respond_to": 5, - "path.keys": 1, - "path.names": 1, - "TypeError": 1, - "URI": 3, - "URI.const_defined": 1, - "Parser": 1, - "Parser.new": 1, - "encoded": 1, - "char": 4, - "enc": 5, - "URI.escape": 1, - "helpers": 3, - "data": 1, - "reset": 1, - "set": 36, - "development": 6, - ".to_sym": 1, - "raise_errors": 1, - "Proc.new": 11, - "test": 5, - "dump_errors": 1, - "show_exceptions": 1, - "sessions": 1, - "logging": 2, - "protection": 1, - "method_override": 4, - "use_code": 1, - "default_encoding": 1, - "add_charset": 1, - "javascript": 1, - "xml": 2, - "xhtml": 1, - "json": 1, - "settings.add_charset": 1, - "text": 3, - "session_secret": 3, - "SecureRandom.hex": 1, - "NotImplementedError": 1, - "Kernel.rand": 1, - "**256": 1, - "alias_method": 2, - "methodoverride": 2, - "run": 2, - "via": 1, - "at": 1, - "running": 2, - "built": 1, - "now": 1, - "http": 1, - "webrick": 1, - "bind": 1, - "ruby_engine": 6, - "defined": 1, - "RUBY_ENGINE": 2, - "server.unshift": 6, - "ruby_engine.nil": 1, - "absolute_redirects": 1, - "prefixed_redirects": 1, - "empty_path_info": 1, - "app_file": 4, - "root": 5, - "File.expand_path": 1, - "views": 1, - "reload_templates": 1, - "lock": 1, - "threaded": 1, - "public_folder": 3, - "static": 1, - "File.exist": 1, - "static_cache_control": 1, - "error": 3, - "Exception": 1, - "response.status": 1, - "content_type": 3, - "configure": 2, - "get": 2, - "filename": 2, - "png": 1, - "send_file": 1, - "NotFound": 1, - "HTML": 2, - "": 1, - "html": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "

    ": 1, - "doesn": 1, - "rsquo": 1, - "know": 1, - "this": 2, - "ditty.": 1, - "

    ": 1, - "": 1, - "src=": 1, - "
    ": 1, - "id=": 1, - "Try": 1, - "
    ": 1,
    -      "request.request_method.downcase": 1,
    -      "nend": 1,
    -      "
    ": 1, - "
    ": 1, - "": 1, - "": 1, - "Application": 2, - "Base": 2, - "super": 3, - "self.register": 2, - "extensions": 6, - "added_methods": 2, - "extensions.map": 1, - "m.public_instance_methods": 1, - ".flatten": 1, - "Delegator.delegate": 1, - "Delegator": 1, - "self.delegate": 1, - "methods": 1, - "methods.each": 1, - "method_name": 5, - "define_method": 1, - "respond_to": 1, - "Delegator.target.send": 1, - "delegate": 1, - "put": 1, - "post": 1, - "delete": 1, - "template": 1, - "layout": 1, - "before": 1, - "after": 1, - "not_found": 1, - "mime_type": 1, - "enable": 1, - "disable": 1, - "use": 1, - "production": 1, - "settings": 2, - "target": 1, - "self.target": 1, - "Wrapper": 1, - "stack": 2, - "instance": 2, - "@stack": 1, - "@instance": 2, - "@instance.settings": 1, - "call": 1, - "env": 2, - "@stack.call": 1, - "self.new": 1, - "base": 4, - "base.class_eval": 1, - "Delegator.target.register": 1, - "self.helpers": 1, - "Delegator.target.helpers": 1, - "self.use": 1, - "Delegator.target.use": 1, - "SHEBANG#!python": 1 - }, - "Rust": { - "//": 20, - "use": 10, - "cell": 1, - "Cell": 2, - ";": 218, - "cmp": 1, - "Eq": 2, - "option": 4, - "result": 18, - "Result": 3, - "comm": 5, - "{": 213, - "stream": 21, - "Chan": 4, - "GenericChan": 1, - "GenericPort": 1, - "Port": 3, - "SharedChan": 4, - "}": 210, - "prelude": 1, - "*": 1, - "task": 39, - "rt": 29, - "task_id": 2, - "sched_id": 2, - "rust_task": 1, - "util": 4, - "replace": 8, - "mod": 5, - "local_data_priv": 1, - "pub": 26, - "local_data": 1, - "spawn": 15, - "///": 13, - "A": 6, - "handle": 3, - "to": 6, - "a": 9, - "scheduler": 6, - "#": 61, - "[": 61, - "deriving_eq": 3, - "]": 61, - "enum": 4, - "Scheduler": 4, - "SchedulerHandle": 2, - "(": 429, - ")": 434, - "Task": 2, - "TaskHandle": 2, - "TaskResult": 4, - "Success": 6, - "Failure": 6, - "impl": 3, - "for": 10, - "pure": 2, - "fn": 89, - "eq": 1, - "&": 30, - "self": 15, - "other": 4, - "-": 33, - "bool": 6, - "match": 4, - "|": 20, - "true": 9, - "_": 4, - "false": 7, - "ne": 1, - ".eq": 1, - "modes": 1, - "SchedMode": 4, - "Run": 3, - "on": 5, - "the": 10, - "default": 1, - "DefaultScheduler": 2, - "current": 1, - "CurrentScheduler": 2, - "specific": 1, - "ExistingScheduler": 1, - "PlatformThread": 2, - "All": 1, - "tasks": 1, - "run": 1, - "in": 3, - "same": 1, - "OS": 3, - "thread": 2, - "SingleThreaded": 4, - "Tasks": 2, - "are": 2, - "distributed": 2, - "among": 2, - "available": 1, - "CPUs": 1, - "ThreadPerCore": 2, - "Each": 1, - "runs": 1, - "its": 1, - "own": 1, - "ThreadPerTask": 1, - "fixed": 1, - "number": 1, - "of": 3, - "threads": 1, - "ManualThreads": 3, - "uint": 7, - "struct": 7, - "SchedOpts": 4, - "mode": 9, - "foreign_stack_size": 3, - "Option": 4, - "": 2, - "TaskOpts": 12, - "linked": 15, - "supervised": 11, - "mut": 16, - "notify_chan": 24, - "<": 3, - "": 3, - "sched": 10, - "TaskBuilder": 21, - "opts": 21, - "gen_body": 4, - "@fn": 2, - "v": 6, - "can_not_copy": 11, - "": 1, - "consumed": 4, - "default_task_opts": 4, - "body": 6, - "Identity": 1, - "function": 1, - "None": 23, - "doc": 1, - "hidden": 1, - "FIXME": 1, - "#3538": 1, - "priv": 1, - "consume": 1, - "if": 7, - "self.consumed": 2, - "fail": 17, - "Fake": 1, - "move": 1, - "let": 84, - "self.opts.notify_chan": 7, - "self.opts.linked": 4, - "self.opts.supervised": 5, - "self.opts.sched": 6, - "self.gen_body": 2, - "unlinked": 1, - "..": 8, - "self.consume": 7, - "future_result": 1, - "blk": 2, - "self.opts.notify_chan.is_some": 1, - "notify_pipe_po": 2, - "notify_pipe_ch": 2, - "Some": 8, - "Configure": 1, - "custom": 1, - "task.": 1, - "sched_mode": 1, - "add_wrapper": 1, - "wrapper": 2, - "prev_gen_body": 2, - "f": 38, - "x": 7, - "x.opts.linked": 1, - "x.opts.supervised": 1, - "x.opts.sched": 1, - "spawn_raw": 1, - "x.gen_body": 1, - "Runs": 1, - "while": 2, - "transfering": 1, - "ownership": 1, - "one": 1, - "argument": 1, - "child.": 1, - "spawn_with": 2, - "": 2, - "arg": 5, - "do": 49, - "self.spawn": 1, - "arg.take": 1, - "try": 5, - "": 2, - "T": 2, - "": 2, - "po": 11, - "ch": 26, - "": 1, - "fr_task_builder": 1, - "self.future_result": 1, - "+": 4, - "r": 6, - "fr_task_builder.spawn": 1, - "||": 11, - "ch.send": 11, - "unwrap": 3, - ".recv": 3, - "Ok": 3, - "po.recv": 10, - "Err": 2, - ".spawn": 9, - "spawn_unlinked": 6, - ".unlinked": 3, - "spawn_supervised": 5, - ".supervised": 2, - ".spawn_with": 1, - "spawn_sched": 8, - ".sched_mode": 2, - ".try": 1, - "yield": 16, - "Yield": 1, - "control": 1, - "unsafe": 31, - "task_": 2, - "rust_get_task": 5, - "killed": 3, - "rust_task_yield": 1, - "&&": 1, - "failing": 2, - "True": 1, - "running": 2, - "has": 1, - "failed": 1, - "rust_task_is_unwinding": 1, - "get_task": 1, - "Get": 1, - "get_task_id": 1, - "get_scheduler": 1, - "rust_get_sched_id": 6, - "unkillable": 5, - "": 3, - "U": 6, - "AllowFailure": 5, - "t": 24, - "*rust_task": 6, - "drop": 3, - "rust_task_allow_kill": 3, - "self.t": 4, - "_allow_failure": 2, - "rust_task_inhibit_kill": 3, - "The": 1, - "inverse": 1, - "unkillable.": 1, - "Only": 1, - "ever": 1, - "be": 2, - "used": 1, - "nested": 1, - ".": 1, - "rekillable": 1, - "DisallowFailure": 5, - "atomically": 3, - "DeferInterrupts": 5, - "rust_task_allow_yield": 1, - "_interrupts": 1, - "rust_task_inhibit_yield": 1, - "test": 31, - "should_fail": 11, - "ignore": 16, - "cfg": 16, - "windows": 14, - "test_cant_dup_task_builder": 1, - "b": 2, - "b.spawn": 2, - "should": 2, - "have": 1, - "been": 1, - "by": 1, - "previous": 1, - "call": 1, - "test_spawn_unlinked_unsup_no_fail_down": 1, - "grandchild": 1, - "sends": 1, - "port": 3, - "ch.clone": 2, - "iter": 8, - "repeat": 8, - "If": 1, - "first": 1, - "grandparent": 1, - "hangs.": 1, - "Shouldn": 1, - "leave": 1, - "child": 3, - "hanging": 1, - "around.": 1, - "test_spawn_linked_sup_fail_up": 1, - "fails": 4, - "parent": 2, - "_ch": 1, - "<()>": 6, - "opts.linked": 2, - "opts.supervised": 2, - "b0": 5, - "b1": 3, - "b1.spawn": 3, - "We": 1, - "get": 1, - "punted": 1, - "awake": 1, - "test_spawn_linked_sup_fail_down": 1, - "loop": 5, - "*both*": 1, - "mechanisms": 1, - "would": 1, - "wrong": 1, - "this": 1, - "didn": 1, - "s": 1, - "failure": 1, - "propagate": 1, - "across": 1, - "gap": 1, - "test_spawn_failure_propagate_secondborn": 1, - "test_spawn_failure_propagate_nephew_or_niece": 1, - "test_spawn_linked_sup_propagate_sibling": 1, - "test_run_basic": 1, - "Wrapper": 5, - "test_add_wrapper": 1, - "b0.add_wrapper": 1, - "ch.f.swap_unwrap": 4, - "test_future_result": 1, - ".future_result": 4, - "assert": 10, - "test_back_to_the_future_result": 1, - "test_try_success": 1, - "test_try_fail": 1, - "test_spawn_sched_no_threads": 1, - "u": 2, - "test_spawn_sched": 1, - "i": 3, - "int": 5, - "parent_sched_id": 4, - "child_sched_id": 5, - "else": 1, - "test_spawn_sched_childs_on_default_sched": 1, - "default_id": 2, - "nolink": 1, - "extern": 1, - "testrt": 9, - "rust_dbg_lock_create": 2, - "*libc": 6, - "c_void": 6, - "rust_dbg_lock_destroy": 2, - "lock": 13, - "rust_dbg_lock_lock": 3, - "rust_dbg_lock_unlock": 3, - "rust_dbg_lock_wait": 2, - "rust_dbg_lock_signal": 2, - "test_spawn_sched_blocking": 1, - "start_po": 1, - "start_ch": 1, - "fin_po": 1, - "fin_ch": 1, - "start_ch.send": 1, - "fin_ch.send": 1, - "start_po.recv": 1, - "pingpong": 3, - "": 2, - "val": 4, - "setup_po": 1, - "setup_ch": 1, - "parent_po": 2, - "parent_ch": 2, - "child_po": 2, - "child_ch": 4, - "setup_ch.send": 1, - "setup_po.recv": 1, - "child_ch.send": 1, - "fin_po.recv": 1, - "avoid_copying_the_body": 5, - "spawnfn": 2, - "p": 3, - "x_in_parent": 2, - "ptr": 2, - "addr_of": 2, - "as": 7, - "x_in_child": 4, - "p.recv": 1, - "test_avoid_copying_the_body_spawn": 1, - "test_avoid_copying_the_body_task_spawn": 1, - "test_avoid_copying_the_body_try": 1, - "test_avoid_copying_the_body_unlinked": 1, - "test_platform_thread": 1, - "test_unkillable": 1, - "pp": 2, - "*uint": 1, - "cast": 2, - "transmute": 2, - "_p": 1, - "test_unkillable_nested": 1, - "Here": 1, - "test_atomically_nested": 1, - "test_child_doesnt_ref_parent": 1, - "const": 1, - "generations": 2, - "child_no": 3, - "return": 1, - "test_sched_thread_per_core": 1, - "chan": 2, - "cores": 2, - "rust_num_threads": 1, - "reported_threads": 2, - "rust_sched_threads": 2, - "chan.send": 2, - "port.recv": 2, - "test_spawn_thread_on_demand": 1, - "max_threads": 2, - "running_threads": 2, - "rust_sched_current_nonlazy_threads": 2, - "port2": 1, - "chan2": 1, - "chan2.send": 1, - "running_threads2": 2, - "port2.recv": 1 - }, - "SAS": { - "libname": 1, - "source": 1, - "data": 6, - "work.working_copy": 5, - ";": 22, - "set": 3, - "source.original_file.sas7bdat": 1, - "run": 6, - "if": 2, - "Purge": 1, - "then": 2, - "delete": 1, - "ImportantVariable": 1, - ".": 1, - "MissingFlag": 1, - "proc": 2, - "surveyselect": 1, - "work.data": 1, - "out": 2, - "work.boot": 2, - "method": 1, - "urs": 1, - "reps": 1, - "seed": 2, - "sampsize": 1, - "outhits": 1, - "samplingunit": 1, - "Site": 1, - "PROC": 1, - "MI": 1, - "work.bootmi": 2, - "nimpute": 1, - "round": 1, - "By": 2, - "Replicate": 2, - "VAR": 1, - "Variable1": 2, - "Variable2": 2, - "logistic": 1, - "descending": 1, - "_Imputation_": 1, - "model": 1, - "Outcome": 1, - "/": 1, - "risklimits": 1 - }, - "SCSS": { - "blue": 4, - "#3bbfce": 1, - ";": 7, - "margin": 4, - "px": 1, - ".content": 1, - "-": 3, - "navigation": 1, - "{": 2, - "border": 2, - "color": 3, - "darken": 1, - "(": 1, - "%": 1, - ")": 1, - "}": 2, - ".border": 1, - "padding": 1, - "/": 2 - }, - "SQF": { - "private": 2, - "[": 4, - "]": 4, - ";": 32, - "AGM_Core_remoteFnc": 2, - "_this": 4, - "_arguments": 6, - "select": 4, - "_function": 6, - "call": 6, - "compile": 1, - "(": 12, - ")": 12, - "_unit": 6, - "if": 7, - "isNil": 1, - "then": 6, - "{": 16, - "}": 16, - "typeName": 1, - "exitWith": 1, - "switch": 1, - "do": 1, - "case": 4, - "isServer": 3, - "else": 4, - "publicVariableServer": 3, - "set": 1, - "publicVariable": 1, - "isDedicated": 1, - "local": 1, - "_id": 2, - "owner": 1, - "publicVariableClient": 1, - "#include": 1, - "": 1, - "#define": 4, - "SET": 1, - "VAR": 5, - "VALUE": 2, - "#VAR": 1, - "CONV": 1, - "ARRAY": 2, - "POOL": 2, - "find": 1, - "ALL_HITPOINTS_MAN": 1, - "ALL_HITPOINTS_VEH": 1 - }, - "SQL": { - "IF": 13, - "EXISTS": 12, - "(": 131, - "SELECT": 4, - "*": 3, - "FROM": 1, - "DBO.SYSOBJECTS": 1, - "WHERE": 1, - "ID": 2, - "OBJECT_ID": 1, - "N": 7, - ")": 131, - "AND": 1, - "OBJECTPROPERTY": 1, - "id": 22, - "DROP": 3, - "PROCEDURE": 1, - "dbo.AvailableInSearchSel": 2, - "GO": 4, - "CREATE": 10, - "Procedure": 1, - "AvailableInSearchSel": 1, - "AS": 1, - "UNION": 2, - "ALL": 2, - "DB_NAME": 1, - "BEGIN": 1, - "GRANT": 1, - "EXECUTE": 1, - "ON": 1, - "TO": 1, - "[": 1, - "rv": 1, - "]": 1, - "END": 1, - "SHOW": 2, - "WARNINGS": 2, - ";": 31, - "-": 496, - "Table": 9, - "structure": 9, - "for": 15, - "table": 17, - "articles": 4, - "TABLE": 10, - "NOT": 46, - "int": 28, - "NULL": 91, - "AUTO_INCREMENT": 9, - "title": 4, - "varchar": 22, - "DEFAULT": 22, - "content": 2, - "longtext": 1, - "date_posted": 4, - "datetime": 10, - "created_by": 2, - "last_modified": 2, - "last_modified_by": 2, - "ordering": 2, - "is_published": 2, - "PRIMARY": 9, - "KEY": 13, - "Dumping": 6, - "data": 6, - "INSERT": 6, - "INTO": 6, - "VALUES": 6, - "challenges": 4, - "pkg_name": 2, - "description": 2, - "text": 1, - "author": 2, - "category": 2, - "visibility": 2, - "publish": 2, - "abstract": 2, - "level": 2, - "duration": 2, - "goal": 2, - "solution": 2, - "availability": 2, - "default_points": 2, - "default_duration": 2, - "challenge_attempts": 2, - "user_id": 8, - "challenge_id": 7, - "time": 1, - "status": 1, - "challenge_attempt_count": 2, - "tries": 1, - "UNIQUE": 4, - "classes": 4, - "name": 3, - "date_created": 6, - "archive": 2, - "class_challenges": 4, - "class_id": 5, - "class_memberships": 4, - "users": 4, - "username": 3, - "full_name": 2, - "email": 2, - "password": 2, - "joined": 2, - "last_visit": 2, - "is_activated": 2, - "type": 3, - "token": 3, - "user_has_challenge_token": 3, - "create": 2, - "FILIAL": 10, - "NUMBER": 1, - "not": 5, - "null": 4, - "title_ua": 1, - "VARCHAR2": 4, - "title_ru": 1, - "title_eng": 1, - "remove_date": 1, - "DATE": 2, - "modify_date": 1, - "modify_user": 1, - "alter": 1, - "add": 1, - "constraint": 1, - "PK_ID": 1, - "primary": 1, - "key": 1, - "grant": 8, - "select": 10, - "on": 8, - "to": 8, - "ATOLL": 1, - "CRAMER2GIS": 1, - "DMS": 1, - "HPSM2GIS": 1, - "PLANMONITOR": 1, - "SIEBEL": 1, - "VBIS": 1, - "VPORTAL": 1, - "if": 1, - "exists": 1, - "from": 2, - "sysobjects": 1, - "where": 2, - "and": 1, - "in": 1, - "exec": 1, - "%": 2, - "object_ddl": 1, - "go": 1, - "use": 1, - "translog": 1, - "VIEW": 1, - "suspendedtoday": 2, - "view": 1, - "as": 1, - "suspended": 1, - "datediff": 1, - "now": 1 - }, - "STON": { - "[": 11, - "]": 11, - "{": 15, - "#a": 1, - "#b": 1, - "}": 15, - "Rectangle": 1, - "#origin": 1, - "Point": 2, - "-": 2, - "#corner": 1, - "TestDomainObject": 1, - "#created": 1, - "DateAndTime": 2, - "#modified": 1, - "#integer": 1, - "#float": 1, - "#description": 1, - "#color": 1, - "#green": 1, - "#tags": 1, - "#two": 1, - "#beta": 1, - "#medium": 1, - "#bytes": 1, - "ByteArray": 1, - "#boolean": 1, - "false": 1, - "ZnResponse": 1, - "#headers": 2, - "ZnHeaders": 1, - "ZnMultiValueDictionary": 1, - "#entity": 1, - "ZnStringEntity": 1, - "#contentType": 1, - "ZnMimeType": 1, - "#main": 1, - "#sub": 1, - "#parameters": 1, - "#contentLength": 1, - "#string": 1, - "#encoder": 1, - "ZnUTF8Encoder": 1, - "#statusLine": 1, - "ZnStatusLine": 1, - "#version": 1, - "#code": 1, - "#reason": 1 - }, - "Sass": { - "blue": 7, - "#3bbfce": 2, - ";": 6, - "margin": 8, - "px": 3, - ".content_navigation": 1, - "{": 2, - "color": 4, - "}": 2, - ".border": 2, - "padding": 2, - "/": 4, - "border": 3, - "solid": 1, - ".content": 1, - "-": 3, - "navigation": 1, - "darken": 1, - "(": 1, - "%": 1, - ")": 1 - }, - "Scala": { - "SHEBANG#!sh": 2, - "exec": 2, - "scala": 2, - "#": 2, - "object": 3, - "Beers": 1, - "extends": 1, - "Application": 1, - "{": 21, - "def": 10, - "bottles": 3, - "(": 67, - "qty": 12, - "Int": 11, - "f": 4, - "String": 5, - ")": 67, - "//": 29, - "higher": 1, - "-": 5, - "order": 1, - "functions": 2, - "match": 2, - "case": 8, - "+": 49, - "x": 3, - "}": 22, - "beers": 3, - "sing": 3, - "implicit": 3, - "song": 3, - "takeOne": 2, - "nextQty": 2, - "nested": 1, - "if": 2, - "else": 2, - "refrain": 2, - ".capitalize": 1, - "tail": 1, - "recursion": 1, - "val": 6, - "headOfSong": 1, - "println": 8, - "parameter": 1, - "name": 4, - "version": 1, - "organization": 1, - "libraryDependencies": 3, - "%": 12, - "Seq": 3, - "libosmVersion": 4, - "from": 1, - "maxErrors": 1, - "pollInterval": 1, - "javacOptions": 1, - "scalacOptions": 1, - "scalaVersion": 1, - "initialCommands": 2, - "in": 12, - "console": 1, - "mainClass": 2, - "Compile": 4, - "packageBin": 1, - "Some": 6, - "run": 1, - "watchSources": 1, - "<+=>": 1, - "baseDirectory": 1, - "map": 1, - "_": 2, - "input": 1, - "add": 2, - "a": 4, - "maven": 2, - "style": 2, - "repository": 2, - "resolvers": 2, - "at": 4, - "url": 3, - "sequence": 1, - "of": 1, - "repositories": 1, - "define": 1, - "the": 5, - "to": 7, - "publish": 1, - "publishTo": 1, - "set": 2, - "Ivy": 1, - "logging": 1, - "be": 1, - "highest": 1, - "level": 1, - "ivyLoggingLevel": 1, - "UpdateLogging": 1, - "Full": 1, - "disable": 1, - "updating": 1, - "dynamic": 1, - "revisions": 1, - "including": 1, - "SNAPSHOT": 1, - "versions": 1, - "offline": 1, - "true": 5, - "prompt": 1, - "for": 1, - "this": 1, - "build": 1, - "include": 1, - "project": 1, - "id": 1, - "shellPrompt": 2, - "ThisBuild": 1, - "state": 3, - "Project.extract": 1, - ".currentRef.project": 1, - "System.getProperty": 1, - "showTiming": 1, - "false": 7, - "showSuccess": 1, - "timingFormat": 1, - "import": 9, - "java.text.DateFormat": 1, - "DateFormat.getDateTimeInstance": 1, - "DateFormat.SHORT": 2, - "crossPaths": 1, - "fork": 2, - "Test": 3, - "javaOptions": 1, - "parallelExecution": 2, - "javaHome": 1, - "file": 3, - "scalaHome": 1, - "aggregate": 1, - "clean": 1, - "logLevel": 2, - "compile": 1, - "Level.Warn": 2, - "persistLogLevel": 1, - "Level.Debug": 1, - "traceLevel": 2, - "unmanagedJars": 1, - "publishArtifact": 2, - "packageDoc": 2, - "artifactClassifier": 1, - "retrieveManaged": 1, - "credentials": 2, - "Credentials": 2, - "Path.userHome": 1, - "/": 2, - "math.random": 1, - "scala.language.postfixOps": 1, - "scala.util._": 1, - "scala.util.": 1, - "Try": 1, - "Success": 2, - "Failure": 2, - "scala.concurrent._": 1, - "duration._": 1, - "ExecutionContext.Implicits.global": 1, - "scala.concurrent.": 1, - "ExecutionContext": 1, - "CanAwait": 1, - "OnCompleteRunnable": 1, - "TimeoutException": 1, - "ExecutionException": 1, - "blocking": 3, - "node11": 1, - "Welcome": 1, - "Scala": 1, - "worksheet": 1, - "retry": 3, - "[": 11, - "T": 8, - "]": 11, - "n": 3, - "block": 8, - "Future": 5, - "ns": 1, - "Iterator": 2, - ".iterator": 1, - "attempts": 1, - "ns.map": 1, - "failed": 2, - "Future.failed": 1, - "new": 1, - "Exception": 2, - "attempts.foldLeft": 1, - "fallbackTo": 1, - "scala.concurrent.Future": 1, - "scala.concurrent.Fut": 1, - "|": 19, - "ure": 1, - "rb": 3, - "i": 9, - "Thread.sleep": 2, - "*random.toInt": 1, - "i.toString": 5, - "ri": 2, - "onComplete": 1, - "s": 1, - "s.toString": 1, - "t": 1, - "t.toString": 1, - "r": 1, - "r.toString": 1, - "Unit": 1, - "toList": 1, - ".foreach": 1, - "Iteration": 5, - "java.lang.Exception": 1, - "Hi": 10, - "HelloWorld": 1, - "main": 1, - "args": 1, - "Array": 1 - }, - "Scaml": { - "%": 1, - "p": 1, - "Hello": 1, - "World": 1 - }, - "Scheme": { - "(": 366, - "import": 1, - "rnrs": 1, - ")": 380, - "only": 1, - "surfage": 4, - "s1": 1, - "lists": 1, - "filter": 4, - "-": 192, - "map": 4, - "gl": 12, - "glut": 2, - "dharmalab": 2, - "records": 1, - "define": 30, - "record": 5, - "type": 5, - "math": 1, - "basic": 2, - "agave": 4, - "glu": 1, - "compat": 1, - "geometry": 1, - "pt": 49, - "glamour": 2, - "window": 2, - "misc": 1, - "s19": 1, - "time": 24, - "s27": 1, - "random": 27, - "bits": 1, - "s42": 1, - "eager": 1, - "comprehensions": 1, - ";": 1684, - "utilities": 1, - "say": 9, - ".": 2, - "args": 2, - "for": 7, - "each": 7, - "display": 4, - "newline": 2, - "translate": 6, - "p": 6, - "glTranslated": 1, - "x": 10, - "y": 3, - "radians": 8, - "/": 7, - "pi": 2, - "degrees": 2, - "angle": 6, - "a": 19, - "cos": 1, - "sin": 1, - "current": 15, - "in": 14, - "nanoseconds": 2, - "let": 2, - "val": 3, - "+": 28, - "second": 1, - "nanosecond": 1, - "seconds": 12, - "micro": 1, - "milli": 1, - "base": 2, - "step": 1, - "score": 5, - "level": 5, - "ships": 1, - "spaceship": 5, - "fields": 4, - "mutable": 14, - "pos": 16, - "vel": 4, - "theta": 1, - "force": 1, - "particle": 8, - "birth": 2, - "lifetime": 1, - "color": 2, - "particles": 11, - "asteroid": 14, - "radius": 6, - "number": 3, - "of": 3, - "starting": 3, - "asteroids": 15, - "#f": 5, - "bullet": 16, - "pack": 12, - "is": 8, - "initialize": 1, - "size": 1, - "title": 1, - "reshape": 1, - "width": 8, - "height": 8, - "source": 2, - "randomize": 1, - "default": 1, - "wrap": 4, - "mod": 2, - "ship": 8, - "make": 11, - "ammo": 9, - "set": 19, - "list": 6, - "ec": 6, - "i": 6, - "inexact": 16, - "integer": 25, - "buffered": 1, - "procedure": 1, - "lambda": 12, - "background": 1, - "glColor3f": 5, - "matrix": 5, - "excursion": 5, - "ship.pos": 5, - "glRotated": 2, - "ship.theta": 10, - "glutWireCone": 1, - "par": 6, - "c": 4, - "vector": 6, - "ref": 3, - "glutWireSphere": 3, - "bullets": 7, - "pack.pos": 3, - "glutWireCube": 1, - "last": 3, - "dt": 7, - "update": 2, - "system": 2, - "pt*n": 8, - "ship.vel": 5, - "pack.vel": 1, - "cond": 2, - "par.birth": 1, - "par.lifetime": 1, - "else": 2, - "par.pos": 2, - "par.vel": 1, - "bullet.birth": 1, - "bullet.pos": 2, - "bullet.vel": 1, - "a.pos": 2, - "a.vel": 1, - "if": 1, - "<": 1, - "a.radius": 1, - "contact": 2, - "b": 4, - "when": 5, - "<=>": 3, - "distance": 3, - "begin": 2, - "1": 2, - "f": 1, - "append": 4, - "4": 1, - "50": 4, - "0": 7, - "100": 6, - "2": 1, - "n": 2, - "null": 1, - "10": 1, - "5": 1, - "glutIdleFunc": 1, - "glutPostRedisplay": 1, - "glutKeyboardFunc": 1, - "key": 2, - "case": 1, - "char": 1, - "#": 6, - "w": 1, - "d": 1, - "s": 1, - "space": 1, - "cons": 1, - "glutMainLoop": 1, - "library": 1, - "libs": 1, - "export": 1, - "list2": 2, - "objs": 2, - "should": 1, - "not": 1, - "be": 1, - "exported": 1 - }, - "Scilab": { - "function": 1, - "[": 1, - "a": 4, - "b": 4, - "]": 1, - "myfunction": 1, - "(": 7, - "d": 2, - "e": 4, - "f": 2, - ")": 7, - "+": 5, - "%": 4, - "pi": 3, - ";": 7, - "cos": 1, - "cosh": 1, - "if": 1, - "then": 1, - "-": 2, - "e.field": 1, - "else": 1, - "home": 1, - "return": 1, - "end": 1, - "myvar": 1, - "endfunction": 1, - "disp": 1, - "assert_checkequal": 1, - "assert_checkfalse": 1 - }, - "Shell": { - "SHEBANG#!bash": 9, - "typeset": 5, - "-": 397, - "i": 2, - "n": 28, - "bottles": 6, - "no": 16, - "while": 3, - "[": 85, - "]": 85, - "do": 8, - "echo": 85, - "case": 9, - "{": 63, - "}": 61, - "in": 25, - ")": 154, - "%": 5, - "s": 14, - ";": 138, - "esac": 7, - "done": 8, - "exit": 10, - "/usr/bin/clear": 2, - "##": 28, - "if": 39, - "z": 12, - "then": 41, - "export": 25, - "SCREENDIR": 2, - "fi": 34, - "PATH": 14, - "/usr/local/bin": 6, - "/usr/local/sbin": 6, - "/usr/xpg4/bin": 4, - "/usr/sbin": 6, - "/usr/bin": 8, - "/usr/sfw/bin": 4, - "/usr/ccs/bin": 4, - "/usr/openwin/bin": 4, - "/opt/mysql/current/bin": 4, - "MANPATH": 2, - "/usr/local/man": 2, - "/usr/share/man": 2, - "Random": 2, - "ENV...": 2, - "TERM": 4, - "COLORTERM": 2, - "CLICOLOR": 2, - "#": 53, - "can": 3, - "be": 3, - "set": 21, - "to": 33, - "anything": 2, - "actually": 2, - "DISPLAY": 2, - "r": 17, - "&&": 65, - ".": 5, - "function": 6, - "ls": 6, - "command": 5, - "Fh": 2, - "l": 8, - "list": 3, - "long": 2, - "format...": 2, - "ll": 2, - "|": 29, - "less": 2, - "XF": 2, - "pipe": 2, - "into": 3, - "#CDPATH": 2, - "HISTIGNORE": 2, - "HISTCONTROL": 2, - "ignoreboth": 2, - "shopt": 13, - "cdspell": 2, - "extglob": 2, - "progcomp": 2, - "complete": 82, - "f": 68, - "X": 54, - "bunzip2": 2, - "bzcat": 2, - "bzcmp": 2, - "bzdiff": 2, - "bzegrep": 2, - "bzfgrep": 2, - "bzgrep": 2, - "unzip": 2, - "zipinfo": 2, - "compress": 2, - "znew": 2, - "gunzip": 2, - "zcmp": 2, - "zdiff": 2, - "zcat": 2, - "zegrep": 2, - "zfgrep": 2, - "zgrep": 2, - "zless": 2, - "zmore": 2, - "uncompress": 2, - "ee": 2, - "display": 2, - "xv": 2, - "qiv": 2, - "gv": 2, - "ggv": 2, - "xdvi": 2, - "dvips": 2, - "dviselect": 2, - "dvitype": 2, - "acroread": 2, - "xpdf": 2, - "makeinfo": 2, - "texi2html": 2, - "tex": 2, - "latex": 2, - "slitex": 2, - "jadetex": 2, - "pdfjadetex": 2, - "pdftex": 2, - "pdflatex": 2, - "texi2dvi": 2, - "mpg123": 2, - "mpg321": 2, - "xine": 2, - "aviplay": 2, - "realplay": 2, - "xanim": 2, - "ogg123": 2, - "gqmpeg": 2, - "freeamp": 2, - "xmms": 2, - "xfig": 2, - "timidity": 2, - "playmidi": 2, - "vi": 2, - "vim": 2, - "gvim": 2, - "rvim": 2, - "view": 2, - "rview": 2, - "rgvim": 2, - "rgview": 2, - "gview": 2, - "emacs": 2, - "wine": 2, - "bzme": 2, - "netscape": 2, - "mozilla": 2, - "lynx": 2, - "opera": 2, - "w3m": 2, - "galeon": 2, - "curl": 8, - "dillo": 2, - "elinks": 2, - "links": 2, - "u": 2, - "su": 2, - "passwd": 2, - "groups": 2, - "user": 2, - "commands": 8, - "see": 4, - "only": 6, - "users": 2, - "A": 10, - "stopped": 4, - "P": 4, - "bg": 4, - "completes": 10, - "with": 12, - "jobs": 4, - "j": 2, - "fg": 2, - "disown": 2, - "other": 2, - "job": 3, - "v": 11, - "readonly": 4, - "unset": 10, - "and": 5, - "shell": 4, - "variables": 2, - "setopt": 8, - "options": 8, - "helptopic": 2, - "help": 5, - "helptopics": 2, - "a": 12, - "unalias": 4, - "aliases": 2, - "binding": 2, - "bind": 4, - "readline": 2, - "bindings": 2, - "(": 107, - "make": 6, - "this": 6, - "more": 3, - "intelligent": 2, - "c": 2, - "type": 5, - "which": 10, - "man": 6, - "#sudo": 2, - "on": 4, - "d": 9, - "pushd": 2, - "cd": 11, - "rmdir": 2, - "Make": 2, - "directory": 5, - "directories": 2, - "W": 2, - "alias": 42, - "filenames": 2, - "for": 7, - "PS1": 2, - "..": 2, - "cd..": 2, - "t": 3, - "csh": 2, - "is": 11, - "same": 2, - "as": 2, - "bash...": 2, - "quit": 2, - "q": 8, - "even": 3, - "shorter": 2, - "D": 2, - "rehash": 2, - "source": 7, - "/.bashrc": 3, - "after": 2, - "I": 2, - "edit": 2, - "it": 2, - "pg": 2, - "patch": 2, - "sed": 14, - "awk": 2, - "diff": 2, - "grep": 8, - "find": 2, - "ps": 2, - "whoami": 2, - "ping": 2, - "histappend": 2, - "PROMPT_COMMAND": 2, - "umask": 2, - "path": 13, - "/opt/local/bin": 2, - "/opt/local/sbin": 2, - "/bin": 4, - "prompt": 2, - "history": 18, - "endif": 2, - "stty": 2, - "istrip": 2, - "dirpersiststore": 2, - "##############################################################################": 16, - "#Import": 2, - "the": 17, - "agnostic": 2, - "Bash": 3, - "or": 3, - "Zsh": 2, - "environment": 2, - "config": 4, - "/.profile": 2, - "HISTSIZE": 2, - "#How": 2, - "many": 2, - "lines": 2, - "of": 6, - "keep": 3, - "memory": 3, - "HISTFILE": 2, - "/.zsh_history": 2, - "#Where": 2, - "save": 4, - "disk": 5, - "SAVEHIST": 2, - "#Number": 2, - "entries": 2, - "HISTDUP": 2, - "erase": 2, - "#Erase": 2, - "duplicates": 2, - "file": 9, - "appendhistory": 2, - "#Append": 2, - "overwriting": 2, - "sharehistory": 2, - "#Share": 2, - "across": 2, - "terminals": 2, - "incappendhistory": 2, - "#Immediately": 2, - "append": 2, - "not": 2, - "just": 2, - "when": 2, - "term": 2, - "killed": 2, - "#.": 2, - "/.dotfiles/z": 4, - "zsh/z.sh": 2, - "#function": 2, - "precmd": 2, - "rupa/z.sh": 2, - "fpath": 6, - "HOME/.zsh/func": 2, - "U": 2, - "docker": 1, - "version": 12, - "from": 1, - "ubuntu": 1, - "maintainer": 1, - "Solomon": 1, - "Hykes": 1, - "": 1, - "run": 13, - "apt": 6, - "get": 6, - "install": 8, - "y": 5, - "git": 16, - "https": 2, - "//go.googlecode.com/files/go1.1.1.linux": 1, - "amd64.tar.gz": 1, - "tar": 1, - "C": 1, - "/usr/local": 1, - "xz": 1, - "env": 4, - "/usr/local/go/bin": 2, - "/sbin": 2, - "GOPATH": 1, - "/go": 1, - "CGO_ENABLED": 1, - "/tmp": 1, - "t.go": 1, - "go": 2, - "test": 1, - "PKG": 12, - "github.com/kr/pty": 1, - "REV": 6, - "c699": 1, - "clone": 5, - "http": 3, - "//": 3, - "/go/src/": 6, - "checkout": 3, - "github.com/gorilla/context/": 1, - "d61e5": 1, - "github.com/gorilla/mux/": 1, - "b36453141c": 1, - "iptables": 1, - "/etc/apt/sources.list": 1, - "update": 2, - "lxc": 1, - "aufs": 1, - "tools": 1, - "add": 1, - "/go/src/github.com/dotcloud/docker": 1, - "/go/src/github.com/dotcloud/docker/docker": 1, - "ldflags": 1, - "/go/bin": 1, - "cmd": 1, - "pkgname": 1, - "stud": 4, - "pkgver": 1, - "pkgrel": 1, - "pkgdesc": 1, - "arch": 1, - "i686": 1, - "x86_64": 1, - "url": 4, - "license": 1, - "depends": 1, - "libev": 1, - "openssl": 1, - "makedepends": 1, - "provides": 1, - "conflicts": 1, - "_gitroot": 1, - "//github.com/bumptech/stud.git": 1, - "_gitname": 1, - "build": 2, - "msg": 4, - "pull": 3, - "origin": 1, - "else": 10, - "rm": 2, - "rf": 1, - "package": 1, - "PREFIX": 1, - "/usr": 1, - "DESTDIR": 1, - "Dm755": 1, - "init.stud": 1, - "mkdir": 2, - "p": 2, - "script": 1, - "dotfile": 1, - "repository": 3, - "does": 1, - "lot": 1, - "fun": 2, - "stuff": 3, - "like": 1, - "turning": 1, - "normal": 1, - "dotfiles": 1, - "eg": 1, - ".bashrc": 1, - "symlinks": 1, - "away": 1, - "optionally": 1, - "moving": 1, - "old": 4, - "files": 1, - "so": 1, - "that": 1, - "they": 1, - "preserved": 1, - "setting": 2, - "up": 1, - "cron": 1, - "automate": 1, - "aforementioned": 1, - "maybe": 1, - "some": 1, - "nocasematch": 1, - "This": 1, - "makes": 1, - "pattern": 1, - "matching": 1, - "insensitive": 1, - "POSTFIX": 1, - "URL": 1, - "PUSHURL": 1, - "overwrite": 3, - "true": 2, - "print_help": 2, - "e": 4, - "opt": 3, - "@": 3, - "k": 1, - "local": 22, - "false": 2, - "h": 3, - ".*": 2, - "o": 3, - "continue": 1, - "mv": 1, - "ln": 1, - "remote.origin.url": 1, - "remote.origin.pushurl": 1, - "crontab": 1, - ".jobs.cron": 1, - "x": 1, - "system": 1, - "exec": 3, - "rbenv": 2, - "versions": 1, - "bare": 1, - "&": 5, - "prefix": 1, - "/dev/null": 6, - "rvm_ignore_rvmrc": 1, - "declare": 22, - "rvmrc": 3, - "rvm_rvmrc_files": 3, - "ef": 1, - "+": 1, - "GREP_OPTIONS": 1, - "printf": 4, - "rvm_path": 4, - "UID": 1, - "elif": 4, - "rvm_is_not_a_shell_function": 2, - "rvm_path/scripts": 1, - "rvm": 1, - "sbt_release_version": 2, - "sbt_snapshot_version": 2, - "SNAPSHOT": 3, - "sbt_jar": 3, - "sbt_dir": 2, - "sbt_create": 2, - "sbt_snapshot": 1, - "sbt_launch_dir": 3, - "scala_version": 3, - "java_home": 1, - "sbt_explicit_version": 7, - "verbose": 6, - "debug": 11, - "quiet": 6, - "build_props_sbt": 3, - "project/build.properties": 9, - "versionLine": 2, - "sbt.version": 3, - "versionString": 3, - "versionLine##sbt.version": 1, - "update_build_props_sbt": 2, - "ver": 5, - "return": 3, - "perl": 3, - "pi": 1, - "||": 12, - "Updated": 1, - "Previous": 1, - "value": 1, - "was": 1, - "sbt_version": 8, - "echoerr": 3, - "vlog": 1, - "dlog": 8, - "get_script_path": 2, - "L": 1, - "target": 1, - "readlink": 1, - "get_mem_opts": 3, - "mem": 4, - "perm": 6, - "/": 2, - "<": 2, - "codecache": 1, - "die": 2, - "make_url": 3, - "groupid": 1, - "category": 1, - "default_jvm_opts": 1, - "default_sbt_opts": 1, - "default_sbt_mem": 2, - "noshare_opts": 1, - "sbt_opts_file": 1, - "jvm_opts_file": 1, - "latest_28": 1, - "latest_29": 1, - "latest_210": 1, - "script_path": 1, - "script_dir": 1, - "script_name": 2, - "java_cmd": 2, - "java": 2, - "sbt_mem": 5, - "residual_args": 4, - "java_args": 3, - "scalac_args": 4, - "sbt_commands": 2, - "build_props_scala": 1, - "build.scala.versions": 1, - "versionLine##build.scala.versions": 1, - "execRunner": 2, - "arg": 3, - "sbt_groupid": 3, - "*": 11, - "org.scala": 4, - "tools.sbt": 3, - "sbt": 18, - "sbt_artifactory_list": 2, - "version0": 2, - "F": 1, - "pe": 1, - "make_release_url": 2, - "releases": 1, - "make_snapshot_url": 2, - "snapshots": 1, - "head": 1, - "jar_url": 1, - "jar_file": 1, - "download_url": 2, - "jar": 3, - "dirname": 1, - "fail": 1, - "silent": 1, - "output": 1, - "wget": 2, - "O": 1, - "acquire_sbt_jar": 1, - "sbt_url": 1, - "usage": 2, - "cat": 3, - "<<": 2, - "EOM": 3, - "Usage": 1, - "print": 1, - "message": 1, - "runner": 1, - "chattier": 1, - "log": 2, - "level": 2, - "Debug": 1, - "Error": 1, - "colors": 2, - "disable": 1, - "ANSI": 1, - "color": 1, - "codes": 1, - "create": 2, - "start": 1, - "current": 1, - "contains": 2, - "project": 1, - "dir": 3, - "": 3, - "global": 1, - "settings/plugins": 1, - "default": 4, - "/.sbt/": 1, - "": 1, - "boot": 3, - "shared": 1, - "/.sbt/boot": 1, - "series": 1, - "ivy": 2, - "Ivy": 1, - "/.ivy2": 1, - "": 1, - "share": 2, - "use": 1, - "all": 1, - "caches": 1, - "sharing": 1, - "offline": 3, - "put": 1, - "mode": 2, - "jvm": 2, - "": 1, - "Turn": 1, - "JVM": 1, - "debugging": 1, - "open": 1, - "at": 1, - "given": 2, - "port.": 1, - "batch": 2, - "Disable": 1, - "interactive": 1, - "The": 1, - "way": 1, - "accomplish": 1, - "pre": 1, - "there": 2, - "build.properties": 1, - "an": 1, - "property": 1, - "disk.": 1, - "That": 1, - "scalacOptions": 3, - "S": 2, - "stripped": 1, - "In": 1, - "duplicated": 1, - "conflicting": 1, - "order": 1, - "above": 1, - "shows": 1, - "precedence": 1, - "JAVA_OPTS": 1, - "lowest": 1, - "line": 1, - "highest.": 1, - "addJava": 9, - "addSbt": 12, - "addScalac": 2, - "addResidual": 2, - "addResolver": 1, - "addDebugger": 2, - "get_jvm_opts": 2, - "process_args": 2, - "require_arg": 12, - "gt": 1, - "shift": 28, - "integer": 1, - "inc": 1, - "port": 1, - "snapshot": 1, - "launch": 1, - "scala": 3, - "home": 2, - "D*": 1, - "J*": 1, - "S*": 1, - "sbtargs": 3, - "IFS": 1, - "read": 1, - "<\"$sbt_opts_file\">": 1, - "process": 1, - "combined": 1, - "args": 2, - "reset": 1, - "residuals": 1, - "argumentCount=": 1, - "we": 1, - "were": 1, - "any": 1, - "opts": 1, - "eq": 1, - "0": 1, - "ThisBuild": 1, - "Update": 1, - "properties": 1, - "explicit": 1, - "gives": 1, - "us": 1, - "choice": 1, - "Detected": 1, - "Overriding": 1, - "alert": 1, - "them": 1, - "here": 1, - "argumentCount": 1, - "./build.sbt": 1, - "./project": 1, - "pwd": 1, - "doesn": 1, - "understand": 1, - "iflast": 1, - "#residual_args": 1, - "SHEBANG#!sh": 2, - "SHEBANG#!zsh": 2, - "day": 1, - "month": 1, - "year": 1, - "hour": 1, - "minute": 1, - "second": 1, - "name": 1, - "foodforthought.jpg": 1, - "name##*fo": 1 - }, - "ShellSession": { - "echo": 2, - "FOOBAR": 2, - "Hello": 2, - "World": 2, - "gem": 4, - "install": 4, - "nokogiri": 6, - "...": 4, - "Building": 2, - "native": 2, - "extensions.": 2, - "This": 4, - "could": 2, - "take": 2, - "a": 4, - "while...": 2, - "checking": 1, - "for": 4, - "libxml/parser.h...": 1, - "***": 2, - "extconf.rb": 1, - "failed": 1, - "Could": 2, - "not": 2, - "create": 1, - "Makefile": 1, - "due": 1, - "to": 3, - "some": 1, - "reason": 2, - "probably": 1, - "lack": 1, - "of": 2, - "necessary": 1, - "libraries": 1, - "and/or": 1, - "headers.": 1, - "Check": 1, - "the": 2, - "mkmf.log": 1, - "file": 1, - "more": 1, - "details.": 1, - "You": 1, - "may": 1, - "need": 1, - "configuration": 1, - "options.": 1, - "brew": 2, - "tap": 2, - "homebrew/dupes": 1, - "Cloning": 1, - "into": 1, - "remote": 3, - "Counting": 1, - "objects": 3, - "done.": 4, - "Compressing": 1, - "%": 5, - "(": 6, - "/591": 1, - ")": 6, - "Total": 1, - "delta": 2, - "reused": 1, - "Receiving": 1, - "/1034": 1, - "KiB": 1, - "|": 1, - "bytes/s": 1, - "Resolving": 1, - "deltas": 1, - "/560": 1, - "Checking": 1, - "connectivity...": 1, - "done": 1, - "Warning": 1, - "homebrew/dupes/lsof": 1, - "over": 1, - "mxcl/master/lsof": 1, - "Tapped": 1, - "formula": 4, - "apple": 1, - "-": 12, - "gcc42": 1, - "Downloading": 1, - "http": 2, - "//r.research.att.com/tools/gcc": 1, - "darwin11.pkg": 1, - "########################################################################": 1, - "Caveats": 1, - "NOTE": 1, - "provides": 1, - "components": 1, - "that": 1, - "were": 1, - "removed": 1, - "from": 3, - "XCode": 2, - "in": 2, - "release.": 1, - "There": 1, - "is": 2, - "no": 1, - "this": 1, - "if": 1, - "you": 1, - "are": 1, - "using": 1, - "version": 1, - "prior": 1, - "contains": 1, - "compilers": 2, - "built": 2, - "Apple": 1, - "s": 1, - "GCC": 1, - "sources": 1, - "build": 1, - "available": 1, - "//opensource.apple.com/tarballs/gcc": 1, - "All": 1, - "have": 1, - "suffix.": 1, - "A": 1, - "GFortran": 1, - "compiler": 1, - "also": 1, - "included.": 1, - "Summary": 1, - "/usr/local/Cellar/apple": 1, - "gcc42/4.2.1": 1, - "files": 1, - "M": 1, - "seconds": 1, - "v": 1, - "Fetching": 1, - "Successfully": 1, - "installed": 2, - "Installing": 2, - "ri": 1, - "documentation": 2, - "RDoc": 1 - }, - "Shen": { - "*": 47, - "graph.shen": 1, - "-": 747, - "a": 30, - "library": 3, - "for": 12, - "graph": 52, - "definition": 1, - "and": 16, - "manipulation": 1, - "Copyright": 2, - "(": 267, - "C": 6, - ")": 250, - "Eric": 2, - "Schulte": 2, - "***": 5, - "License": 2, - "Redistribution": 2, - "use": 2, - "in": 13, - "source": 4, - "binary": 4, - "forms": 2, - "with": 8, - "or": 2, - "without": 2, - "modification": 2, - "are": 7, - "permitted": 2, - "provided": 4, - "that": 3, - "the": 29, - "following": 6, - "conditions": 6, - "met": 2, - "Redistributions": 4, - "of": 20, - "code": 2, - "must": 4, - "retain": 2, - "above": 4, - "copyright": 4, - "notice": 4, - "this": 4, - "list": 32, - "disclaimer.": 2, - "form": 2, - "reproduce": 2, - "disclaimer": 2, - "documentation": 2, - "and/or": 2, - "other": 2, - "materials": 2, - "distribution.": 2, - "THIS": 4, - "SOFTWARE": 4, - "IS": 2, - "PROVIDED": 2, - "BY": 2, - "THE": 10, - "COPYRIGHT": 4, - "HOLDERS": 2, - "AND": 8, - "CONTRIBUTORS": 4, - "ANY": 8, - "EXPRESS": 2, - "OR": 16, - "IMPLIED": 4, - "WARRANTIES": 4, - "INCLUDING": 6, - "BUT": 4, - "NOT": 4, - "LIMITED": 4, - "TO": 4, - "OF": 16, - "MERCHANTABILITY": 2, - "FITNESS": 2, - "FOR": 4, - "A": 32, - "PARTICULAR": 2, - "PURPOSE": 2, - "ARE": 2, - "DISCLAIMED.": 2, - "IN": 6, - "NO": 2, - "EVENT": 2, - "SHALL": 2, - "HOLDER": 2, - "BE": 2, - "LIABLE": 2, - "DIRECT": 2, - "INDIRECT": 2, - "INCIDENTAL": 2, - "SPECIAL": 2, - "EXEMPLARY": 2, - "CONSEQUENTIAL": 2, - "DAMAGES": 2, - "PROCUREMENT": 2, - "SUBSTITUTE": 2, - "GOODS": 2, - "SERVICES": 2, - ";": 12, - "LOSS": 2, - "USE": 4, - "DATA": 2, - "PROFITS": 2, - "BUSINESS": 2, - "INTERRUPTION": 2, - "HOWEVER": 2, - "CAUSED": 2, - "ON": 2, - "THEORY": 2, - "LIABILITY": 4, - "WHETHER": 2, - "CONTRACT": 2, - "STRICT": 2, - "TORT": 2, - "NEGLIGENCE": 2, - "OTHERWISE": 2, - "ARISING": 2, - "WAY": 2, - "OUT": 2, - "EVEN": 2, - "IF": 2, - "ADVISED": 2, - "POSSIBILITY": 2, - "SUCH": 2, - "DAMAGE.": 2, - "Commentary": 2, - "Graphs": 1, - "represented": 1, - "as": 2, - "two": 1, - "dictionaries": 1, - "one": 2, - "vertices": 17, - "edges.": 1, - "It": 1, - "is": 5, - "important": 1, - "to": 16, - "note": 1, - "dictionary": 3, - "implementation": 1, - "used": 2, - "able": 1, - "accept": 1, - "arbitrary": 1, - "data": 17, - "structures": 1, - "keys.": 1, - "This": 1, - "structure": 2, - "technically": 1, - "encodes": 1, - "hypergraphs": 1, - "generalization": 1, - "graphs": 1, - "which": 1, - "each": 1, - "edge": 32, - "may": 1, - "contain": 2, - "any": 1, - "number": 12, - ".": 1, - "Examples": 1, - "regular": 1, - "G": 25, - "hypergraph": 1, - "H": 3, - "corresponding": 1, - "given": 4, - "below.": 1, - "": 3, - "Vertices": 11, - "Edges": 9, - "+": 33, - "Graph": 65, - "hash": 8, - "|": 103, - "key": 9, - "value": 17, - "b": 13, - "c": 11, - "g": 19, - "[": 93, - "]": 91, - "d": 12, - "e": 14, - "f": 10, - "Hypergraph": 1, - "h": 3, - "i": 3, - "j": 2, - "associated": 1, - "edge/vertex": 1, - "@p": 17, - "V": 48, - "#": 4, - "E": 20, - "edges": 17, - "M": 4, - "vertex": 29, - "associations": 1, - "size": 2, - "all": 3, - "stored": 1, - "dict": 39, - "sizeof": 4, - "int": 1, - "indices": 1, - "into": 1, - "&": 1, - "Edge": 11, - "dicts": 3, - "entry": 2, - "storage": 2, - "Vertex": 3, - "Code": 1, - "require": 2, - "sequence": 2, - "datatype": 1, - "dictoinary": 1, - "vector": 4, - "symbol": 1, - "package": 2, - "add": 25, - "has": 5, - "neighbors": 8, - "connected": 21, - "components": 8, - "partition": 7, - "bipartite": 3, - "included": 2, - "from": 3, - "take": 2, - "drop": 2, - "while": 2, - "range": 1, - "flatten": 1, - "filter": 2, - "complement": 1, - "seperate": 1, - "zip": 1, - "indexed": 1, - "reduce": 3, - "mapcon": 3, - "unique": 3, - "frequencies": 1, - "shuffle": 1, - "pick": 1, - "remove": 2, - "first": 2, - "interpose": 1, - "subset": 3, - "cartesian": 1, - "product": 1, - "<-dict>": 5, - "contents": 1, - "keys": 3, - "vals": 1, - "make": 10, - "define": 34, - "X": 4, - "<-address>": 5, - "0": 1, - "create": 1, - "specified": 1, - "sizes": 2, - "}": 22, - "Vertsize": 2, - "Edgesize": 2, - "let": 9, - "absvector": 1, - "do": 8, - "address": 5, - "defmacro": 3, - "macro": 3, - "return": 4, - "taking": 1, - "optional": 1, - "N": 7, - "vert": 12, - "1": 1, - "2": 3, - "{": 15, - "get": 3, - "Value": 3, - "if": 8, - "tuple": 3, - "fst": 3, - "error": 7, - "string": 3, - "resolve": 6, - "Vector": 2, - "Index": 2, - "Place": 6, - "nth": 1, - "<-vector>": 2, - "Vert": 5, - "Val": 5, - "trap": 4, - "snd": 2, - "map": 5, - "lambda": 1, - "w": 4, - "B": 2, - "Data": 2, - "w/o": 5, - "D": 4, - "update": 5, - "an": 3, - "s": 1, - "Vs": 4, - "Store": 6, - "<": 4, - "limit": 2, - "VertLst": 2, - "/.": 4, - "Contents": 5, - "adjoin": 2, - "length": 5, - "EdgeID": 3, - "EdgeLst": 2, - "p": 1, - "boolean": 4, - "Return": 1, - "Already": 5, - "New": 5, - "Reachable": 2, - "difference": 3, - "append": 1, - "including": 1, - "itself": 1, - "fully": 1, - "Acc": 2, - "true": 1, - "_": 1, - "VS": 4, - "Component": 6, - "ES": 3, - "Con": 8, - "verts": 4, - "cons": 1, - "place": 3, - "partitions": 1, - "element": 2, - "simple": 3, - "CS": 3, - "Neighbors": 3, - "empty": 1, - "intersection": 1, - "check": 1, - "tests": 1, - "set": 1, - "chris": 6, - "patton": 2, - "eric": 1, - "nobody": 2, - "fail": 1, - "when": 1, - "wrapper": 1, - "function": 1, - "html.shen": 1, - "html": 2, - "generation": 1, - "functions": 1, - "shen": 1, - "The": 1, - "standard": 1, - "lisp": 1, - "conversion": 1, - "tool": 1, - "suite.": 1, - "Follows": 1, - "some": 1, - "convertions": 1, - "Clojure": 1, - "tasks": 1, - "stuff": 1, - "todo1": 1, - "today": 1, - "attributes": 1, - "AS": 1, - "load": 1, - "JSON": 1, - "Lexer": 1, - "Read": 1, - "stream": 1, - "characters": 4, - "Whitespace": 4, - "not": 1, - "strings": 2, - "should": 2, - "be": 2, - "discarded.": 1, - "preserved": 1, - "Strings": 1, - "can": 1, - "escaped": 1, - "double": 1, - "quotes.": 1, - "e.g.": 2, - "whitespacep": 2, - "ASCII": 2, - "Space.": 1, - "All": 1, - "others": 1, - "whitespace": 7, - "table.": 1, - "Char": 4, - "member": 1, - "replace": 3, - "@s": 4, - "Suffix": 4, - "where": 2, - "Prefix": 2, - "fetch": 1, - "until": 1, - "unescaped": 1, - "doublequote": 1, - "c#34": 5, - "WhitespaceChar": 2, - "Chars": 4, - "strip": 2, - "chars": 2, - "tokenise": 1, - "JSONString": 2, - "CharList": 2, - "explode": 1 - }, - "Slash": { - "<%>": 1, - "class": 11, - "Env": 1, - "def": 18, - "init": 4, - "memory": 3, - "ptr": 9, - "0": 3, - "ptr=": 1, - "current_value": 5, - "current_value=": 1, - "value": 1, - "AST": 4, - "Next": 1, - "eval": 10, - "env": 16, - "Prev": 1, - "Inc": 1, - "Dec": 1, - "Output": 1, - "print": 1, - "char": 5, - "Input": 1, - "Sequence": 2, - "nodes": 6, - "for": 2, - "node": 2, - "in": 2, - "Loop": 1, - "seq": 4, - "while": 1, - "Parser": 1, - "str": 2, - "chars": 2, - "split": 1, - "parse": 1, - "stack": 3, - "_parse_char": 2, - "if": 1, - "length": 1, - "1": 1, - "throw": 1, - "SyntaxError": 1, - "new": 2, - "unexpected": 2, - "end": 1, - "of": 1, - "input": 1, - "last": 1, - "switch": 1, - "<": 1, - "+": 1, - "-": 1, - ".": 1, - "[": 1, - "]": 1, - ")": 7, - ";": 6, - "}": 3, - "@stack.pop": 1, - "_add": 1, - "(": 6, - "Loop.new": 1, - "Sequence.new": 1, - "src": 2, - "File.read": 1, - "ARGV.first": 1, - "ast": 1, - "Parser.new": 1, - ".parse": 1, - "ast.eval": 1, - "Env.new": 1 - }, - "Slim": { - "doctype": 1, - "html": 2, - "head": 1, - "title": 1, - "Slim": 2, - "Examples": 1, - "meta": 2, - "name": 2, - "content": 2, - "author": 2, - "javascript": 1, - "alert": 1, - "(": 1, - ")": 1, - "body": 1, - "h1": 1, - "Markup": 1, - "examples": 1, - "#content": 1, - "p": 2, - "This": 1, - "example": 1, - "shows": 1, - "you": 2, - "how": 1, - "a": 1, - "basic": 1, - "file": 1, - "looks": 1, - "like.": 1, - "yield": 1, - "-": 3, - "unless": 1, - "items.empty": 1, - "table": 1, - "for": 1, - "item": 1, - "in": 1, - "items": 2, - "do": 1, - "tr": 1, - "td.name": 1, - "item.name": 1, - "td.price": 1, - "item.price": 1, - "else": 1, - "|": 2, - "No": 1, - "found.": 1, - "Please": 1, - "add": 1, - "some": 1, - "inventory.": 1, - "Thank": 1, - "div": 1, - "id": 1, - "render": 1, - "Copyright": 1, - "#": 2, - "{": 2, - "year": 1, - "}": 2 - }, - "Smalltalk": { - "Object": 1, - "subclass": 2, - "#Philosophers": 1, - "instanceVariableNames": 1, - "classVariableNames": 1, - "poolDictionaries": 1, - "category": 1, - "Philosophers": 3, - "class": 1, - "methodsFor": 2, - "new": 4, - "self": 25, - "shouldNotImplement": 1, - "quantity": 2, - "super": 1, - "initialize": 3, - "dine": 4, - "seconds": 2, - "(": 19, - "Delay": 3, - "forSeconds": 1, - ")": 19, - "wait.": 5, - "philosophers": 2, - "do": 1, - "[": 18, - "each": 5, - "|": 18, - "terminate": 1, - "]": 18, - ".": 16, - "size": 4, - "leftFork": 6, - "n": 11, - "forks": 5, - "at": 3, - "rightFork": 6, - "ifTrue": 1, - "ifFalse": 1, - "+": 1, - "eating": 3, - "Semaphore": 2, - "new.": 2, - "-": 1, - "timesRepeat": 1, - "signal": 1, - "randy": 3, - "Random": 1, - "to": 2, - "collect": 2, - "forMutualExclusion": 1, - "philosopher": 2, - "philosopherCode": 3, - "status": 8, - "n.": 2, - "printString": 1, - "true": 2, - "whileTrue": 1, - "Transcript": 5, - "nextPutAll": 5, - ";": 8, - "nl.": 5, - "forMilliseconds": 2, - "next": 2, - "*": 2, - "critical": 1, - "signal.": 2, - "newProcess": 1, - "priority": 1, - "Processor": 1, - "userBackgroundPriority": 1, - "name": 1, - "resume": 1, - "yourself": 1, - "Koan": 1, - "TestBasic": 1, - "": 1, - "A": 1, - "collection": 1, - "of": 1, - "introductory": 1, - "tests": 2, - "testDeclarationAndAssignment": 1, - "declaration": 2, - "anotherDeclaration": 2, - "_": 1, - "expect": 10, - "fillMeIn": 10, - "toEqual": 10, - "declaration.": 1, - "anotherDeclaration.": 1, - "testEqualSignIsNotAnAssignmentOperator": 1, - "variableA": 6, - "variableB": 5, - "value": 2, - "variableB.": 2, - "testMultipleStatementsInASingleLine": 1, - "variableC": 2, - "variableA.": 1, - "variableC.": 1, - "testInequality": 1, - "testLogicalOr": 1, - "expression": 4, - "<": 2, - "expression.": 2, - "testLogicalAnd": 1, - "&": 1, - "testNot": 1, - "not.": 1, - "testSimpleChainMatches": 1, - "e": 11, - "eCtrl": 3, - "eventKey": 3, - "e.": 1, - "ctrl": 5, - "true.": 1, - "assert": 2, - "matches": 4, - "{": 4, - "}": 4, - "eCtrl.": 2, - "deny": 2, - "a": 1 - }, - "SourcePawn": { - "//#define": 1, - "DEBUG": 2, - "#if": 1, - "defined": 1, - "#define": 7, - "assert": 2, - "(": 233, - "%": 18, - ")": 234, - "if": 44, - "ThrowError": 2, - ";": 213, - "assert_msg": 2, - "#else": 1, - "#endif": 1, - "#pragma": 1, - "semicolon": 1, - "#include": 3, - "": 1, - "": 1, - "": 1, - "public": 21, - "Plugin": 1, - "myinfo": 1, - "{": 73, - "name": 7, - "author": 1, - "description": 1, - "version": 1, - "SOURCEMOD_VERSION": 1, - "url": 1, - "}": 71, - "new": 62, - "Handle": 51, - "g_Cvar_Winlimit": 5, - "INVALID_HANDLE": 56, - "g_Cvar_Maxrounds": 5, - "g_Cvar_Fraglimit": 6, - "g_Cvar_Bonusroundtime": 6, - "g_Cvar_StartTime": 3, - "g_Cvar_StartRounds": 5, - "g_Cvar_StartFrags": 3, - "g_Cvar_ExtendTimeStep": 2, - "g_Cvar_ExtendRoundStep": 2, - "g_Cvar_ExtendFragStep": 2, - "g_Cvar_ExcludeMaps": 3, - "g_Cvar_IncludeMaps": 2, - "g_Cvar_NoVoteMode": 2, - "g_Cvar_Extend": 2, - "g_Cvar_DontChange": 2, - "g_Cvar_EndOfMapVote": 8, - "g_Cvar_VoteDuration": 3, - "g_Cvar_RunOff": 2, - "g_Cvar_RunOffPercent": 2, - "g_VoteTimer": 7, - "g_RetryTimer": 4, - "g_MapList": 8, - "g_NominateList": 7, - "g_NominateOwners": 7, - "g_OldMapList": 7, - "g_NextMapList": 2, - "g_VoteMenu": 1, - "g_Extends": 2, - "g_TotalRounds": 7, - "bool": 10, - "g_HasVoteStarted": 7, - "g_WaitingForVote": 4, - "g_MapVoteCompleted": 9, - "g_ChangeMapAtRoundEnd": 6, - "g_ChangeMapInProgress": 4, - "g_mapFileSerial": 3, - "-": 12, - "g_NominateCount": 3, - "MapChange": 4, - "g_ChangeTime": 1, - "g_NominationsResetForward": 3, - "g_MapVoteStartedForward": 2, - "MAXTEAMS": 4, - "g_winCount": 4, - "[": 19, - "]": 19, - "VOTE_EXTEND": 1, - "VOTE_DONTCHANGE": 1, - "OnPluginStart": 1, - "LoadTranslations": 2, - "arraySize": 5, - "ByteCountToCells": 1, - "PLATFORM_MAX_PATH": 6, - "CreateArray": 5, - "CreateConVar": 15, - "_": 18, - "true": 26, - "RegAdminCmd": 2, - "Command_Mapvote": 2, - "ADMFLAG_CHANGEMAP": 2, - "Command_SetNextmap": 2, - "FindConVar": 4, - "||": 15, - "decl": 5, - "String": 11, - "folder": 5, - "GetGameFolderName": 1, - "sizeof": 6, - "strcmp": 3, - "HookEvent": 6, - "Event_TeamPlayWinPanel": 3, - "Event_TFRestartRound": 2, - "else": 5, - "Event_RoundEnd": 3, - "Event_PlayerDeath": 2, - "AutoExecConfig": 1, - "//Change": 1, - "the": 5, - "mp_bonusroundtime": 1, - "max": 1, - "so": 1, - "that": 2, - "we": 2, - "have": 2, - "time": 9, - "to": 4, - "display": 2, - "vote": 6, - "//If": 1, - "you": 1, - "a": 1, - "during": 2, - "bonus": 2, - "good": 1, - "defaults": 1, - "are": 1, - "duration": 1, - "and": 1, - "mp_bonustime": 1, - "SetConVarBounds": 1, - "ConVarBound_Upper": 1, - "CreateGlobalForward": 2, - "ET_Ignore": 2, - "Param_String": 1, - "Param_Cell": 1, - "APLRes": 1, - "AskPluginLoad2": 1, - "myself": 1, - "late": 1, - "error": 1, - "err_max": 1, - "RegPluginLibrary": 1, - "CreateNative": 9, - "Native_NominateMap": 1, - "Native_RemoveNominationByMap": 1, - "Native_RemoveNominationByOwner": 1, - "Native_InitiateVote": 1, - "Native_CanVoteStart": 2, - "Native_CheckVoteDone": 2, - "Native_GetExcludeMapList": 2, - "Native_GetNominatedMapList": 2, - "Native_EndOfMapVoteEnabled": 2, - "return": 23, - "APLRes_Success": 1, - "OnConfigsExecuted": 1, - "ReadMapList": 1, - "MAPLIST_FLAG_CLEARARRAY": 1, - "|": 1, - "MAPLIST_FLAG_MAPSFOLDER": 1, - "LogError": 2, - "CreateNextVote": 1, - "SetupTimeleftTimer": 3, - "false": 8, - "ClearArray": 2, - "for": 9, - "i": 13, - "<": 5, - "+": 12, - "&&": 5, - "GetConVarInt": 10, - "GetConVarFloat": 2, - "<=>": 1, - "Warning": 1, - "Bonus": 1, - "Round": 1, - "Time": 2, - "shorter": 1, - "than": 1, - "Vote": 4, - "Votes": 1, - "round": 1, - "may": 1, - "not": 1, - "complete": 1, - "OnMapEnd": 1, - "map": 27, - "GetCurrentMap": 1, - "PushArrayString": 3, - "GetArraySize": 8, - "RemoveFromArray": 3, - "OnClientDisconnect": 1, - "client": 9, - "index": 8, - "FindValueInArray": 1, - "oldmap": 4, - "GetArrayString": 3, - "Call_StartForward": 1, - "Call_PushString": 1, - "Call_PushCell": 1, - "GetArrayCell": 2, - "Call_Finish": 1, - "Action": 3, - "args": 3, - "ReplyToCommand": 2, - "Plugin_Handled": 4, - "GetCmdArg": 1, - "IsMapValid": 1, - "ShowActivity": 1, - "LogAction": 1, - "SetNextMap": 1, - "OnMapTimeLeftChanged": 1, - "GetMapTimeLeft": 1, - "startTime": 4, - "*": 1, - "GetConVarBool": 6, - "InitiateVote": 8, - "MapChange_MapEnd": 6, - "KillTimer": 1, - "//g_VoteTimer": 1, - "CreateTimer": 3, - "float": 2, - "Timer_StartMapVote": 3, - "TIMER_FLAG_NO_MAPCHANGE": 4, - "data": 8, - "CreateDataTimer": 1, - "WritePackCell": 2, - "ResetPack": 1, - "timer": 2, - "Plugin_Stop": 2, - "mapChange": 2, - "ReadPackCell": 2, - "hndl": 2, - "event": 11, - "const": 4, - "dontBroadcast": 4, - "Timer_ChangeMap": 2, - "bluescore": 2, - "GetEventInt": 7, - "redscore": 2, - "StrEqual": 1, - "CheckMaxRounds": 3, - "switch": 1, - "case": 2, - "CheckWinLimit": 4, - "//We": 1, - "need": 2, - "do": 1, - "nothing": 1, - "on": 1, - "winning_team": 1, - "this": 1, - "indicates": 1, - "stalemate.": 1, - "default": 1, - "winner": 9, - "//": 3, - "Nuclear": 1, - "Dawn": 1, - "SetFailState": 1, - "winner_score": 2, - "winlimit": 3, - "roundcount": 2, - "maxrounds": 3, - "fragger": 3, - "GetClientOfUserId": 1, - "GetClientFrags": 1, - "when": 2, - "inputlist": 1, - "IsVoteInProgress": 1, - "Can": 1, - "t": 7, - "be": 1, - "excluded": 1, - "from": 1, - "as": 2, - "they": 1, - "weren": 1, - "nominationsToAdd": 1, - "Change": 2, - "Extend": 2, - "Map": 5, - "Voting": 7, - "next": 5, - "has": 5, - "started.": 1, - "SM": 5, - "Nextmap": 5, - "Started": 1, - "Current": 2, - "Extended": 1, - "finished.": 3, - "The": 1, - "current": 1, - "been": 1, - "extended.": 1, - "Stays": 1, - "was": 3, - "Finished": 1, - "s.": 1, - "Runoff": 2, - "Starting": 2, - "indecisive": 1, - "beginning": 1, - "runoff": 1, - "T": 3, - "Dont": 1, - "because": 1, - "outside": 1, - "request": 1, - "inputarray": 1, - "plugin": 5, - "numParams": 5, - "CanVoteStart": 1, - "array": 3, - "GetNativeCell": 3, - "size": 2, - "maparray": 3, - "ownerarray": 3, - "If": 1, - "optional": 1, - "parameter": 1, - "an": 1, - "owner": 1, - "list": 1, - "passed": 1, - "then": 1, - "fill": 1, - "out": 1, - "well": 1, - "PushArrayCell": 1 - }, - "Squirrel": { - "//example": 1, - "from": 1, - "http": 1, - "//www.squirrel": 1, - "-": 1, - "lang.org/#documentation": 1, - "local": 3, - "table": 1, - "{": 10, - "a": 2, - "subtable": 1, - "array": 3, - "[": 3, - "]": 3, - "}": 10, - "+": 2, - "b": 1, - ";": 15, - "foreach": 1, - "(": 10, - "i": 1, - "val": 2, - "in": 1, - ")": 10, - "print": 2, - "typeof": 1, - "/////////////////////////////////////////////": 1, - "class": 2, - "Entity": 3, - "constructor": 2, - "etype": 2, - "entityname": 4, - "name": 2, - "type": 2, - "x": 2, - "y": 2, - "z": 2, - "null": 2, - "function": 2, - "MoveTo": 1, - "newx": 2, - "newy": 2, - "newz": 2, - "Player": 2, - "extends": 1, - "base.constructor": 1, - "DoDomething": 1, - "newplayer": 1, - "newplayer.MoveTo": 1 - }, - "Standard ML": { - "structure": 15, - "LazyBase": 4, - "LAZY_BASE": 5, - "struct": 13, - "type": 6, - "a": 78, - "exception": 2, - "Undefined": 6, - "fun": 60, - "delay": 6, - "f": 46, - "force": 18, - "(": 840, - ")": 845, - "val": 147, - "undefined": 2, - "fn": 127, - "raise": 6, - "end": 55, - "LazyMemoBase": 4, - "datatype": 29, - "|": 226, - "Done": 2, - "of": 91, - "lazy": 13, - "unit": 7, - "-": 20, - "let": 44, - "open": 9, - "B": 2, - "inject": 5, - "x": 74, - "isUndefined": 4, - "ignore": 3, - ";": 21, - "false": 32, - "handle": 4, - "true": 36, - "toString": 4, - "if": 51, - "then": 51, - "else": 51, - "eqBy": 5, - "p": 10, - "y": 50, - "eq": 3, - "op": 2, - "compare": 8, - "Ops": 3, - "map": 3, - "Lazy": 2, - "LazyFn": 4, - "LazyMemo": 2, - "signature": 2, - "sig": 2, - "LAZY": 1, - "bool": 9, - "string": 14, - "*": 9, - "order": 2, - "b": 58, - "functor": 2, - "Main": 1, - "S": 2, - "MAIN_STRUCTS": 1, - "MAIN": 1, - "Compile": 3, - "Place": 1, - "t": 23, - "Files": 3, - "Generated": 4, - "MLB": 4, - "O": 4, - "OUT": 3, - "SML": 6, - "TypeCheck": 3, - "toInt": 1, - "int": 1, - "OptPred": 1, - "Target": 1, - "Yes": 1, - "Show": 1, - "Anns": 1, - "PathMap": 1, - "gcc": 5, - "ref": 45, - "arScript": 3, - "asOpts": 6, - "{": 79, - "opt": 34, - "pred": 15, - "OptPred.t": 3, - "}": 79, - "list": 10, - "[": 104, - "]": 108, - "ccOpts": 6, - "linkOpts": 6, - "buildConstants": 2, - "debugRuntime": 3, - "debugFormat": 5, - "Dwarf": 3, - "DwarfPlus": 3, - "Dwarf2": 3, - "Stabs": 3, - "StabsPlus": 3, - "option": 6, - "NONE": 47, - "expert": 3, - "explicitAlign": 3, - "Control.align": 1, - "explicitChunk": 2, - "Control.chunk": 1, - "explicitCodegen": 5, - "Native": 5, - "Explicit": 5, - "Control.codegen": 3, - "keepGenerated": 3, - "keepO": 3, - "output": 16, - "profileSet": 3, - "profileTimeSet": 3, - "runtimeArgs": 3, - "show": 2, - "Show.t": 1, - "stop": 10, - "Place.OUT": 1, - "parseMlbPathVar": 3, - "line": 9, - "String.t": 1, - "case": 83, - "String.tokens": 7, - "Char.isSpace": 8, - "var": 3, - "path": 7, - "SOME": 68, - "_": 83, - "readMlbPathMap": 2, - "file": 14, - "File.t": 12, - "not": 1, - "File.canRead": 1, - "Error.bug": 14, - "concat": 52, - "List.keepAllMap": 4, - "File.lines": 2, - "String.forall": 4, - "v": 4, - "targetMap": 5, - "arch": 11, - "MLton.Platform.Arch.t": 3, - "os": 13, - "MLton.Platform.OS.t": 3, - "target": 28, - "Promise.lazy": 1, - "targetsDir": 5, - "OS.Path.mkAbsolute": 4, - "relativeTo": 4, - "Control.libDir": 1, - "potentialTargets": 2, - "Dir.lsDirs": 1, - "targetDir": 5, - "osFile": 2, - "OS.Path.joinDirFile": 3, - "dir": 4, - "archFile": 2, - "File.contents": 2, - "List.first": 2, - "MLton.Platform.OS.fromString": 1, - "MLton.Platform.Arch.fromString": 1, - "in": 40, - "setTargetType": 3, - "usage": 48, - "List.peek": 7, - "...": 23, - "Control": 3, - "Target.arch": 2, - "Target.os": 2, - "hasCodegen": 8, - "cg": 21, - "z": 73, - "Control.Target.arch": 4, - "Control.Target.os": 2, - "Control.Format.t": 1, - "AMD64": 2, - "x86Codegen": 9, - "X86": 3, - "amd64Codegen": 8, - "<": 3, - "Darwin": 6, - "orelse": 7, - "Control.format": 3, - "Executable": 5, - "Archive": 4, - "hasNativeCodegen": 2, - "defaultAlignIs8": 3, - "Alpha": 1, - "ARM": 1, - "HPPA": 1, - "IA64": 1, - "MIPS": 1, - "Sparc": 1, - "S390": 1, - "makeOptions": 3, - "s": 168, - "Fail": 2, - "reportAnnotation": 4, - "flag": 12, - "e": 18, - "Control.Elaborate.Bad": 1, - "Control.Elaborate.Deprecated": 1, - "ids": 2, - "Control.warnDeprecated": 1, - "Out.output": 2, - "Out.error": 3, - "List.toString": 1, - "Control.Elaborate.Id.name": 1, - "Control.Elaborate.Good": 1, - "Control.Elaborate.Other": 1, - "Popt": 1, - "tokenizeOpt": 4, - "opts": 4, - "List.foreach": 5, - "tokenizeTargetOpt": 4, - "List.map": 3, - "Normal": 29, - "SpaceString": 48, - "Align4": 2, - "Align8": 2, - "Expert": 72, - "o": 8, - "List.push": 22, - "OptPred.Yes": 6, - "boolRef": 20, - "ChunkPerFunc": 1, - "OneChunk": 1, - "String.hasPrefix": 2, - "prefix": 3, - "String.dropPrefix": 1, - "Char.isDigit": 3, - "Int.fromString": 4, - "n": 4, - "Coalesce": 1, - "limit": 1, - "Bool": 10, - "closureConvertGlobalize": 1, - "closureConvertShrink": 1, - "String.concatWith": 2, - "Control.Codegen.all": 2, - "Control.Codegen.toString": 2, - "name": 7, - "value": 4, - "Compile.setCommandLineConstant": 2, - "contifyIntoMain": 1, - "debug": 4, - "Control.Elaborate.processDefault": 1, - "Control.defaultChar": 1, - "Control.defaultInt": 5, - "Control.defaultReal": 2, - "Control.defaultWideChar": 2, - "Control.defaultWord": 4, - "Regexp.fromString": 7, - "re": 34, - "Regexp.compileDFA": 4, - "diagPasses": 1, - "Control.Elaborate.processEnabled": 2, - "dropPasses": 1, - "intRef": 8, - "errorThreshhold": 1, - "emitMain": 1, - "exportHeader": 3, - "Control.Format.all": 2, - "Control.Format.toString": 2, - "gcCheck": 1, - "Limit": 1, - "First": 1, - "Every": 1, - "Native.IEEEFP": 1, - "indentation": 1, - "Int": 8, - "i": 8, - "inlineNonRec": 6, - "small": 19, - "product": 19, - "#product": 1, - "inlineIntoMain": 1, - "loops": 18, - "inlineLeafA": 6, - "repeat": 18, - "size": 19, - "inlineLeafB": 6, - "keepCoreML": 1, - "keepDot": 1, - "keepMachine": 1, - "keepRSSA": 1, - "keepSSA": 1, - "keepSSA2": 1, - "keepSXML": 1, - "keepXML": 1, - "keepPasses": 1, - "libname": 9, - "loopPasses": 1, - "Int.toString": 3, - "markCards": 1, - "maxFunctionSize": 1, - "mlbPathVars": 4, - "@": 3, - "Native.commented": 1, - "Native.copyProp": 1, - "Native.cutoff": 1, - "Native.liveTransfer": 1, - "Native.liveStack": 1, - "Native.moveHoist": 1, - "Native.optimize": 1, - "Native.split": 1, - "Native.shuffle": 1, - "err": 1, - "optimizationPasses": 1, - "il": 10, - "set": 10, - "Result.Yes": 6, - "Result.No": 5, - "polyvariance": 9, - "hofo": 12, - "rounds": 12, - "preferAbsPaths": 1, - "profPasses": 1, - "profile": 6, - "ProfileNone": 2, - "ProfileAlloc": 1, - "ProfileCallStack": 3, - "ProfileCount": 1, - "ProfileDrop": 1, - "ProfileLabel": 1, - "ProfileTimeLabel": 4, - "ProfileTimeField": 2, - "profileBranch": 1, - "Regexp": 3, - "seq": 3, - "anys": 6, - "compileDFA": 3, - "profileC": 1, - "profileInclExcl": 2, - "profileIL": 3, - "ProfileSource": 1, - "ProfileSSA": 1, - "ProfileSSA2": 1, - "profileRaise": 2, - "profileStack": 1, - "profileVal": 1, - "Show.Anns": 1, - "Show.PathMap": 1, - "showBasis": 1, - "showDefUse": 1, - "showTypes": 1, - "Control.optimizationPasses": 4, - "String.equals": 4, - "Place.Files": 2, - "Place.Generated": 2, - "Place.O": 3, - "Place.TypeCheck": 1, - "#target": 2, - "Self": 2, - "Cross": 2, - "SpaceString2": 6, - "OptPred.Target": 6, - "#1": 1, - "trace": 4, - "#2": 2, - "typeCheck": 1, - "verbosity": 4, - "Silent": 3, - "Top": 5, - "Pass": 1, - "Detail": 1, - "warnAnn": 1, - "warnDeprecated": 1, - "zoneCutDepth": 1, - "style": 6, - "arg": 3, - "desc": 3, - "mainUsage": 3, - "parse": 2, - "Popt.makeUsage": 1, - "showExpert": 1, - "commandLine": 5, - "args": 8, - "lib": 2, - "libDir": 2, - "OS.Path.mkCanonical": 1, - "result": 1, - "targetStr": 3, - "libTargetDir": 1, - "targetArch": 4, - "archStr": 1, - "String.toLower": 2, - "MLton.Platform.Arch.toString": 2, - "targetOS": 5, - "OSStr": 2, - "MLton.Platform.OS.toString": 1, - "positionIndependent": 3, - "format": 7, - "MinGW": 4, - "Cygwin": 4, - "Library": 6, - "LibArchive": 3, - "Control.positionIndependent": 1, - "align": 1, - "codegen": 4, - "CCodegen": 1, - "MLton.Rusage.measureGC": 1, - "exnHistory": 1, - "Bool.toString": 1, - "Control.profile": 1, - "Control.ProfileCallStack": 1, - "sizeMap": 1, - "Control.libTargetDir": 1, - "ty": 4, - "Bytes.toBits": 1, - "Bytes.fromInt": 1, - "lookup": 4, - "use": 2, - "on": 1, - "must": 1, - "x86": 1, - "with": 1, - "ieee": 1, - "fp": 1, - "can": 1, - "No": 1, - "Out.standard": 1, - "input": 22, - "rest": 3, - "inputFile": 1, - "File.base": 5, - "File.fileOf": 1, - "start": 6, - "base": 3, - "rec": 1, - "loop": 3, - "suf": 14, - "hasNum": 2, - "sufs": 2, - "String.hasSuffix": 2, - "suffix": 8, - "Place.t": 1, - "List.exists": 1, - "File.withIn": 1, - "csoFiles": 1, - "Place.compare": 1, - "GREATER": 5, - "Place.toString": 2, - "EQUAL": 5, - "LESS": 5, - "printVersion": 1, - "tempFiles": 3, - "tmpDir": 2, - "tmpVar": 2, - "default": 2, - "MLton.Platform.OS.host": 2, - "Process.getEnv": 1, - "d": 32, - "temp": 3, - "out": 9, - "File.temp": 1, - "OS.Path.concat": 1, - "Out.close": 2, - "maybeOut": 10, - "maybeOutBase": 4, - "File.extension": 3, - "outputBase": 2, - "ext": 1, - "OS.Path.splitBaseExt": 1, - "defLibname": 6, - "OS.Path.splitDirFile": 1, - "String.extract": 1, - "toAlNum": 2, - "c": 42, - "Char.isAlphaNum": 1, - "#": 3, - "CharVector.map": 1, - "atMLtons": 1, - "Vector.fromList": 1, - "tokenize": 1, - "rev": 2, - "gccDebug": 3, - "asDebug": 2, - "compileO": 3, - "inputs": 7, - "libOpts": 2, - "System.system": 4, - "List.concat": 4, - "linkArchives": 1, - "String.contains": 1, - "File.move": 1, - "from": 1, - "to": 1, - "mkOutputO": 3, - "Counter.t": 3, - "File.dirOf": 2, - "Counter.next": 1, - "compileC": 2, - "debugSwitches": 2, - "compileS": 2, - "compileCSO": 1, - "List.forall": 1, - "Counter.new": 1, - "oFiles": 2, - "List.fold": 1, - "ac": 4, - "extension": 6, - "Option.toString": 1, - "mkCompileSrc": 1, - "listFiles": 2, - "elaborate": 1, - "compile": 2, - "outputs": 2, - "r": 3, - "make": 1, - "Int.inc": 1, - "Out.openOut": 1, - "print": 4, - "outputHeader": 2, - "done": 3, - "Control.No": 1, - "l": 2, - "Layout.output": 1, - "Out.newline": 1, - "Vector.foreach": 1, - "String.translate": 1, - "/": 1, - "Type": 1, - "Check": 1, - ".c": 1, - ".s": 1, - "invalid": 1, - "MLton": 1, - "Exn.finally": 1, - "File.remove": 1, - "doit": 1, - "Process.makeCommandLine": 1, - "main": 1, - "mainWrapped": 1, - "OS.Process.exit": 1, - "CommandLine.arguments": 1, - "RedBlackTree": 1, - "key": 16, - "entry": 12, - "dict": 17, - "Empty": 15, - "Red": 41, - "local": 1, - "lk": 4, - "tree": 4, - "and": 2, - "zipper": 3, - "TOP": 5, - "LEFTB": 10, - "RIGHTB": 10, - "delete": 3, - "zip": 19, - "Black": 40, - "LEFTR": 8, - "RIGHTR": 9, - "bbZip": 28, - "w": 17, - "delMin": 8, - "Match": 1, - "joinRed": 3, - "needB": 2, - "del": 8, - "NotFound": 2, - "entry1": 16, - "as": 7, - "key1": 8, - "datum1": 4, - "joinBlack": 1, - "insertShadow": 3, - "datum": 1, - "oldEntry": 7, - "ins": 8, - "left": 10, - "right": 10, - "restore_left": 1, - "restore_right": 1, - "app": 3, - "ap": 7, - "new": 1, - "insert": 2, - "table": 14, - "clear": 1 - }, - "Stata": { - "local": 6, - "inname": 1, - "outname": 1, - "program": 2, - "hello": 1, - "vers": 1, - "display": 1, - "end": 4, - "{": 441, - "*": 25, - "version": 2, - "mar2014": 1, - "}": 440, - "...": 30, - "Hello": 1, - "world": 1, - "p_end": 47, - "MAXDIM": 1, - "smcl": 1, - "Matthew": 2, - "White": 2, - "jan2014": 1, - "title": 7, - "Title": 1, - "phang": 4, - "cmd": 111, - "odkmeta": 17, - "hline": 1, - "Create": 4, - "a": 30, - "do": 22, - "-": 42, - "file": 18, - "to": 23, - "import": 9, - "ODK": 6, - "data": 4, - "marker": 10, - "syntax": 1, - "Syntax": 1, - "p": 2, - "using": 10, - "it": 61, - "help": 27, - "filename": 3, - "opt": 25, - "csv": 9, - "(": 60, - "csvfile": 3, - ")": 61, - "Using": 7, - "histogram": 2, - "as": 29, - "template.": 8, - "notwithstanding": 1, - "is": 31, - "rarely": 1, - "preceded": 3, - "by": 7, - "an": 6, - "underscore.": 1, - "cmdab": 5, - "s": 10, - "urvey": 2, - "surveyfile": 5, - "odkmeta##surveyopts": 2, - "surveyopts": 4, - "cho": 2, - "ices": 2, - "choicesfile": 4, - "odkmeta##choicesopts": 2, - "choicesopts": 5, - "[": 6, - "options": 1, - "]": 6, - "odbc": 2, - "the": 67, - "position": 1, - "of": 36, - "last": 1, - "character": 1, - "in": 24, - "first": 2, - "column": 18, - "+": 2, - "synoptset": 5, - "tabbed": 4, - "synopthdr": 4, - "synoptline": 8, - "syntab": 6, - "Main": 3, - "heckman": 2, - "p2coldent": 3, - "name": 20, - ".csv": 2, - "that": 21, - "contains": 3, - "metadata": 5, - "from": 6, - "survey": 14, - "worksheet": 5, - "choices": 10, - "Fields": 2, - "synopt": 16, - "drop": 1, - "attrib": 2, - "headers": 8, - "not": 8, - "field": 25, - "attributes": 10, - "with": 10, - "keep": 1, - "only": 3, - "rel": 1, - "ax": 1, - "ignore": 1, - "fields": 7, - "exist": 1, - "Lists": 1, - "ca": 1, - "oth": 1, - "er": 1, - "odkmeta##other": 1, - "other": 14, - "Stata": 5, - "value": 14, - "values": 3, - "select": 6, - "or_other": 5, - ";": 15, - "default": 8, - "max": 2, - "one": 5, - "line": 4, - "write": 1, - "each": 7, - "list": 13, - "on": 7, - "single": 1, - "Options": 1, - "replace": 7, - "overwrite": 1, - "existing": 1, - "p2colreset": 4, - "and": 18, - "are": 13, - "required.": 1, - "Change": 1, - "t": 2, - "ype": 1, - "header": 15, - "type": 7, - "attribute": 10, - "la": 2, - "bel": 2, - "label": 9, - "d": 1, - "isabled": 1, - "disabled": 4, - "li": 1, - "stname": 1, - "list_name": 6, - "maximum": 3, - "plus": 2, - "min": 2, - "minimum": 2, - "minus": 1, - "#": 6, - "constant": 2, - "for": 13, - "all": 3, - "labels": 8, - "description": 1, - "Description": 1, - "pstd": 20, - "creates": 1, - "worksheets": 1, - "XLSForm.": 1, - "The": 9, - "saved": 1, - "completes": 2, - "following": 1, - "tasks": 3, - "order": 1, - "anova": 1, - "phang2": 23, - "o": 12, - "Import": 2, - "lists": 2, - "Add": 1, - "char": 4, - "characteristics": 4, - "Split": 1, - "select_multiple": 6, - "variables": 8, - "Drop": 1, - "note": 1, - "format": 1, - "Format": 1, - "date": 1, - "time": 1, - "datetime": 1, - "Attach": 2, - "variable": 14, - "notes": 1, - "merge": 3, - "Merge": 1, - "repeat": 6, - "groups": 4, - "After": 1, - "have": 2, - "been": 1, - "split": 4, - "can": 1, - "be": 12, - "removed": 1, - "without": 2, - "affecting": 1, - "tasks.": 1, - "User": 1, - "written": 2, - "supplements": 1, - "may": 2, - "make": 1, - "use": 3, - "any": 3, - "which": 6, - "imported": 4, - "characteristics.": 1, - "remarks": 1, - "Remarks": 1, - "uses": 3, - "helpb": 7, - "insheet": 4, - "data.": 1, - "long": 7, - "strings": 1, - "digits": 1, - "such": 2, - "simserial": 1, - "will": 9, - "numeric": 4, - "even": 1, - "if": 10, - "they": 2, - "more": 1, - "than": 3, - "digits.": 1, - "As": 1, - "result": 6, - "lose": 1, - "precision": 1, - ".": 22, - "makes": 1, - "limited": 1, - "mata": 1, - "Mata": 1, - "manage": 1, - "contain": 1, - "difficult": 1, - "characters.": 2, - "starts": 1, - "definitions": 1, - "several": 1, - "macros": 1, - "these": 4, - "constants": 1, - "uses.": 1, - "For": 4, - "instance": 1, - "macro": 1, - "datemask": 1, - "varname": 1, - "constraints": 1, - "names": 16, - "Further": 1, - "files": 1, - "often": 1, - "much": 1, - "longer": 1, - "length": 3, - "limit": 1, - "These": 2, - "differences": 1, - "convention": 1, - "lead": 1, - "three": 1, - "kinds": 1, - "problematic": 1, - "Long": 3, - "involve": 1, - "invalid": 1, - "combination": 1, - "characters": 3, - "example": 2, - "begins": 1, - "colon": 1, - "followed": 1, - "number.": 1, - "convert": 2, - "instead": 1, - "naming": 1, - "v": 6, - "concatenated": 1, - "positive": 1, - "integer": 1, - "v1": 1, - "unique": 1, - "but": 4, - "when": 1, - "converted": 3, - "truncated": 1, - "become": 3, - "duplicates.": 1, - "again": 1, - "names.": 6, - "form": 1, - "duplicates": 1, - "cannot": 2, - "chooses": 1, - "different": 1, - "Because": 1, - "problem": 2, - "recommended": 1, - "you": 1, - "If": 2, - "its": 3, - "characteristic": 2, - "odkmeta##Odk_bad_name": 1, - "Odk_bad_name": 3, - "otherwise": 1, - "Most": 1, - "depend": 1, - "There": 1, - "two": 2, - "exceptions": 1, - "variables.": 1, - "error": 4, - "has": 6, - "or": 7, - "splitting": 2, - "would": 1, - "duplicate": 4, - "reshape": 2, - "groups.": 1, - "there": 2, - "merging": 2, - "code": 1, - "datasets.": 1, - "Where": 1, - "renaming": 2, - "left": 1, - "user.": 1, - "section": 2, - "designated": 2, - "area": 2, - "renaming.": 3, - "In": 3, - "reshaping": 1, - "group": 4, - "own": 2, - "Many": 1, - "forms": 2, - "require": 1, - "others": 1, - "few": 1, - "need": 1, - "renamed": 1, - "should": 1, - "go": 1, - "areas.": 1, - "However": 1, - "some": 1, - "usually": 1, - "because": 1, - "many": 2, - "nested": 2, - "above": 1, - "this": 1, - "case": 1, - "work": 1, - "best": 1, - "Odk_group": 1, - "Odk_name": 1, - "Odk_is_other": 2, - "Odk_geopoint": 2, - "r": 2, - "varlist": 2, - "Odk_list_name": 2, - "foreach": 1, - "var": 5, - "*search": 1, - "n/a": 1, - "know": 1, - "don": 1, - "worksheet.": 1, - "requires": 1, - "comma": 1, - "separated": 2, - "text": 1, - "file.": 1, - "Strings": 1, - "embedded": 2, - "commas": 1, - "double": 3, - "quotes": 3, - "must": 2, - "enclosed": 1, - "another": 1, - "quote.": 1, - "pmore": 5, - "Each": 1, - "header.": 1, - "Use": 1, - "suboptions": 1, - "specify": 1, - "alternative": 1, - "respectively.": 1, - "All": 1, - "used.": 1, - "standardized": 1, - "follows": 1, - "replaced": 9, - "select_one": 3, - "begin_group": 1, - "begin": 2, - "end_group": 1, - "begin_repeat": 1, - "end_repeat": 1, - "addition": 1, - "specified": 1, - "attaches": 1, - "pmore2": 3, - "formed": 1, - "concatenating": 1, - "elements": 1, - "Odk_repeat": 1, - "nested.": 1, - "geopoint": 2, - "component": 1, - "Latitude": 1, - "Longitude": 1, - "Altitude": 1, - "Accuracy": 1, - "blank.": 1, - "imports": 4, - "XLSForm": 1, - "list.": 1, - "one.": 1, - "specifies": 4, - "vary": 1, - "definition": 1, - "rather": 1, - "multiple": 1, - "delimit": 1, - "#delimit": 1, - "dlgtab": 1, - "Other": 1, - "already": 2, - "exists.": 1, - "examples": 1, - "Examples": 1, - "named": 1, - "import.do": 7, - "including": 1, - "survey.csv": 1, - "choices.csv": 1, - "txt": 6, - "Same": 3, - "previous": 3, - "command": 3, - "appears": 2, - "fieldname": 3, - "survey_fieldname.csv": 1, - "valuename": 2, - "choices_valuename.csv": 1, - "except": 1, - "hint": 2, - "dropattrib": 2, - "does": 1, - "_all": 1, - "acknowledgements": 1, - "Acknowledgements": 1, - "Lindsey": 1, - "Shaughnessy": 1, - "Innovations": 2, - "Poverty": 2, - "Action": 2, - "assisted": 1, - "almost": 1, - "aspects": 1, - "development.": 1, - "She": 1, - "collaborated": 1, - "structure": 1, - "was": 1, - "very": 1, - "helpful": 1, - "tester": 1, - "contributed": 1, - "information": 1, - "about": 1, - "ODK.": 1, - "author": 1, - "Author": 1, - "mwhite@poverty": 1, - "action.org": 1, - "Setup": 1, - "sysuse": 1, - "auto": 1, - "Fit": 2, - "linear": 2, - "regression": 2, - "regress": 5, - "mpg": 1, - "weight": 4, - "foreign": 2, - "better": 1, - "physics": 1, - "standpoint": 1, - "gen": 1, - "gp100m": 2, - "/mpg": 1, - "Obtain": 1, - "beta": 2, - "coefficients": 1, - "refitting": 1, - "model": 1, - "Suppress": 1, - "intercept": 1, - "term": 1, - "noconstant": 1, - "Model": 1, - "bn.foreign": 1, - "hascons": 1, - "matrix": 3, - "tanh": 1, - "u": 3, - "eu": 4, - "emu": 4, - "exp": 2, - "return": 1, - "/": 1 - }, - "Stylus": { - "border": 6, - "-": 10, - "radius": 5, - "(": 1, - ")": 1, - "webkit": 1, - "arguments": 3, - "moz": 1, - "a.button": 1, - "px": 5, - "fonts": 2, - "helvetica": 1, - "arial": 1, - "sans": 1, - "serif": 1, - "body": 1, - "{": 1, - "padding": 3, - ";": 2, - "font": 1, - "px/1.4": 1, - "}": 1, - "form": 2, - "input": 2, - "[": 2, - "type": 2, - "text": 2, - "]": 2, - "solid": 1, - "#eee": 1, - "color": 2, - "#ddd": 1, - "textarea": 1, - "@extends": 2, - "foo": 2, - "#FFF": 1, - ".bar": 1, - "background": 1, - "#000": 1 - }, - "SuperCollider": { - "//boot": 1, - "server": 1, - "s.boot": 1, - ";": 18, - "(": 22, - "SynthDef": 1, - "{": 5, - "var": 1, - "sig": 7, - "resfreq": 3, - "Saw.ar": 1, - ")": 22, - "SinOsc.kr": 1, - "*": 3, - "+": 1, - "RLPF.ar": 1, - "Out.ar": 1, - "}": 5, - ".play": 2, - "do": 2, - "arg": 1, - "i": 1, - "Pan2.ar": 1, - "SinOsc.ar": 1, - "exprand": 1, - "LFNoise2.kr": 2, - "rrand": 2, - ".range": 2, - "**": 1, - "rand2": 1, - "a": 2, - "Env.perc": 1, - "-": 1, - "b": 1, - "a.delay": 2, - "a.test.plot": 1, - "b.test.plot": 1, - "Env": 1, - "[": 2, - "]": 2, - ".plot": 2, - "e": 1, - "Env.sine.asStream": 1, - "e.next.postln": 1, - "wait": 1, - ".fork": 1 - }, - "Swift": { - "let": 43, - "apples": 1, - "oranges": 1, - "appleSummary": 1, - "fruitSummary": 1, - "var": 42, - "shoppingList": 3, - "[": 18, - "]": 18, - "occupations": 2, - "emptyArray": 1, - "String": 27, - "(": 89, - ")": 89, - "emptyDictionary": 1, - "Dictionary": 1, - "": 1, - "Float": 1, - "//": 1, - "Went": 1, - "shopping": 1, - "and": 1, - "bought": 1, - "everything.": 1, - "individualScores": 2, - "teamScore": 4, - "for": 10, - "score": 2, - "in": 11, - "{": 77, - "if": 6, - "+": 15, - "}": 77, - "else": 1, - "optionalString": 2, - "nil": 1, - "optionalName": 2, - "greeting": 2, - "name": 21, - "vegetable": 2, - "switch": 4, - "case": 21, - "vegetableComment": 4, - "x": 1, - "where": 2, - "x.hasSuffix": 1, - "default": 2, - "interestingNumbers": 2, - "largest": 4, - "kind": 1, - "numbers": 6, - "number": 13, - "n": 5, - "while": 2, - "<": 4, - "*": 7, - "m": 5, - "do": 1, - "firstForLoop": 3, - "i": 6, - "secondForLoop": 3, - ";": 2, - "println": 1, - "func": 24, - "greet": 2, - "day": 1, - "-": 21, - "return": 30, - "getGasPrices": 2, - "Double": 11, - "sumOf": 3, - "Int...": 1, - "Int": 19, - "sum": 3, - "returnFifteen": 2, - "y": 3, - "add": 2, - "makeIncrementer": 2, - "addOne": 2, - "increment": 2, - "hasAnyMatches": 2, - "list": 2, - "condition": 2, - "Bool": 4, - "item": 4, - "true": 2, - "false": 2, - "lessThanTen": 2, - "numbers.map": 2, - "result": 5, - "sort": 1, - "class": 7, - "Shape": 2, - "numberOfSides": 4, - "simpleDescription": 14, - "myVariable": 2, - "myConstant": 1, - "shape": 1, - "shape.numberOfSides": 1, - "shapeDescription": 1, - "shape.simpleDescription": 1, - "NamedShape": 3, - "init": 4, - "self.name": 1, - "Square": 7, - "sideLength": 17, - "self.sideLength": 2, - "super.init": 2, - "area": 1, - "override": 2, - "test": 1, - "test.area": 1, - "test.simpleDescription": 1, - "EquilateralTriangle": 4, - "perimeter": 1, - "get": 2, - "set": 1, - "newValue": 1, - "/": 1, - "triangle": 3, - "triangle.perimeter": 2, - "triangle.sideLength": 2, - "TriangleAndSquare": 2, - "willSet": 2, - "square.sideLength": 1, - "newValue.sideLength": 2, - "square": 2, - "size": 4, - "triangleAndSquare": 1, - "triangleAndSquare.square.sideLength": 1, - "triangleAndSquare.triangle.sideLength": 2, - "triangleAndSquare.square": 1, - "Counter": 2, - "count": 2, - "incrementBy": 1, - "amount": 2, - "numberOfTimes": 2, - "times": 4, - "counter": 1, - "counter.incrementBy": 1, - "optionalSquare": 2, - ".sideLength": 1, - "enum": 4, - "Rank": 2, - "Ace": 1, - "Two": 1, - "Three": 1, - "Four": 1, - "Five": 1, - "Six": 1, - "Seven": 1, - "Eight": 1, - "Nine": 1, - "Ten": 1, - "Jack": 1, - "Queen": 1, - "King": 1, - "self": 3, - ".Ace": 1, - ".Jack": 1, - ".Queen": 1, - ".King": 1, - "self.toRaw": 1, - "ace": 1, - "Rank.Ace": 1, - "aceRawValue": 1, - "ace.toRaw": 1, - "convertedRank": 1, - "Rank.fromRaw": 1, - "threeDescription": 1, - "convertedRank.simpleDescription": 1, - "Suit": 2, - "Spades": 1, - "Hearts": 1, - "Diamonds": 1, - "Clubs": 1, - ".Spades": 2, - ".Hearts": 1, - ".Diamonds": 1, - ".Clubs": 1, - "hearts": 1, - "Suit.Hearts": 1, - "heartsDescription": 1, - "hearts.simpleDescription": 1, - "implicitInteger": 1, - "implicitDouble": 1, - "explicitDouble": 1, - "struct": 2, - "Card": 2, - "rank": 2, - "suit": 2, - "threeOfSpades": 1, - ".Three": 1, - "threeOfSpadesDescription": 1, - "threeOfSpades.simpleDescription": 1, - "ServerResponse": 1, - "Result": 1, - "Error": 1, - "success": 2, - "ServerResponse.Result": 1, - "failure": 1, - "ServerResponse.Error": 1, - ".Result": 1, - "sunrise": 1, - "sunset": 1, - "serverResponse": 2, - ".Error": 1, - "error": 1, - "protocol": 1, - "ExampleProtocol": 5, - "mutating": 3, - "adjust": 4, - "SimpleClass": 2, - "anotherProperty": 1, - "a": 2, - "a.adjust": 1, - "aDescription": 1, - "a.simpleDescription": 1, - "SimpleStructure": 2, - "b": 1, - "b.adjust": 1, - "bDescription": 1, - "b.simpleDescription": 1, - "extension": 1, - "protocolValue": 1, - "protocolValue.simpleDescription": 1, - "repeat": 2, - "": 1, - "ItemType": 3, - "OptionalValue": 2, - "": 1, - "None": 1, - "Some": 1, - "T": 5, - "possibleInteger": 2, - "": 1, - ".None": 1, - ".Some": 1, - "anyCommonElements": 2, - "": 1, - "U": 4, - "Sequence": 2, - "GeneratorType": 3, - "Element": 3, - "Equatable": 1, - "lhs": 2, - "rhs": 2, - "lhsItem": 2, - "rhsItem": 2, - "label": 2, - "width": 2, - "widthLabel": 1 - }, - "SystemVerilog": { - "module": 3, - "endpoint_phy_wrapper": 2, - "(": 92, - "input": 12, - "clk_sys_i": 2, - "clk_ref_i": 6, - "clk_rx_i": 3, - "rst_n_i": 3, - "IWishboneMaster.master": 2, - "src": 1, - "IWishboneSlave.slave": 1, - "snk": 1, - "sys": 1, - "output": 6, - "[": 17, - "]": 17, - "td_o": 2, - "rd_i": 2, - "txn_o": 2, - "txp_o": 2, - "rxn_i": 2, - "rxp_i": 2, - ")": 92, - ";": 32, - "wire": 12, - "rx_clock": 3, - "parameter": 2, - "g_phy_type": 6, - "gtx_data": 3, - "gtx_k": 3, - "gtx_disparity": 3, - "gtx_enc_error": 3, - "grx_data": 3, - "grx_clk": 1, - "grx_k": 3, - "grx_enc_error": 3, - "grx_bitslide": 2, - "gtp_rst": 2, - "tx_clock": 3, - "generate": 1, - "if": 5, - "begin": 4, - "assign": 2, - "wr_tbi_phy": 1, - "U_Phy": 1, - ".serdes_rst_i": 1, - ".serdes_loopen_i": 1, - "b0": 5, - ".serdes_enable_i": 1, - "b1": 2, - ".serdes_tx_data_i": 1, - ".serdes_tx_k_i": 1, - ".serdes_tx_disparity_o": 1, - ".serdes_tx_enc_err_o": 1, - ".serdes_rx_data_o": 1, - ".serdes_rx_k_o": 1, - ".serdes_rx_enc_err_o": 1, - ".serdes_rx_bitslide_o": 1, - ".tbi_refclk_i": 1, - ".tbi_rbclk_i": 1, - ".tbi_td_o": 1, - ".tbi_rd_i": 1, - ".tbi_syncen_o": 1, - ".tbi_loopen_o": 1, - ".tbi_prbsen_o": 1, - ".tbi_enable_o": 1, - "end": 4, - "else": 2, - "//": 3, - "wr_gtx_phy_virtex6": 1, - "#": 3, - ".g_simulation": 2, - "U_PHY": 1, - ".clk_ref_i": 2, - ".tx_clk_o": 1, - ".tx_data_i": 1, - ".tx_k_i": 1, - ".tx_disparity_o": 1, - ".tx_enc_err_o": 1, - ".rx_rbclk_o": 1, - ".rx_data_o": 1, - ".rx_k_o": 1, - ".rx_enc_err_o": 1, - ".rx_bitslide_o": 1, - ".rst_i": 1, - ".loopen_i": 1, - ".pad_txn0_o": 1, - ".pad_txp0_o": 1, - ".pad_rxn0_i": 1, - ".pad_rxp0_i": 1, - "endgenerate": 1, - "wr_endpoint": 1, - ".g_pcs_16bit": 1, - ".g_rx_buffer_size": 1, - ".g_with_rx_buffer": 1, - ".g_with_timestamper": 1, - ".g_with_dmtd": 1, - ".g_with_dpi_classifier": 1, - ".g_with_vlans": 1, - ".g_with_rtu": 1, - "DUT": 1, - ".clk_sys_i": 1, - ".clk_dmtd_i": 1, - ".rst_n_i": 1, - ".pps_csync_p1_i": 1, - ".src_dat_o": 1, - "snk.dat_i": 1, - ".src_adr_o": 1, - "snk.adr": 1, - ".src_sel_o": 1, - "snk.sel": 1, - ".src_cyc_o": 1, - "snk.cyc": 1, - ".src_stb_o": 1, - "snk.stb": 1, - ".src_we_o": 1, - "snk.we": 1, - ".src_stall_i": 1, - "snk.stall": 1, - ".src_ack_i": 1, - "snk.ack": 1, - ".src_err_i": 1, - ".rtu_full_i": 1, - ".rtu_rq_strobe_p1_o": 1, - ".rtu_rq_smac_o": 1, - ".rtu_rq_dmac_o": 1, - ".rtu_rq_vid_o": 1, - ".rtu_rq_has_vid_o": 1, - ".rtu_rq_prio_o": 1, - ".rtu_rq_has_prio_o": 1, - ".wb_cyc_i": 1, - "sys.cyc": 1, - ".wb_stb_i": 1, - "sys.stb": 1, - ".wb_we_i": 1, - "sys.we": 1, - ".wb_sel_i": 1, - "sys.sel": 1, - ".wb_adr_i": 1, - "sys.adr": 1, - ".wb_dat_i": 1, - "sys.dat_o": 1, - ".wb_dat_o": 1, - "sys.dat_i": 1, - ".wb_ack_o": 1, - "sys.ack": 1, - "endmodule": 2, - "fifo": 1, - "clk_50": 1, - "clk_2": 1, - "reset_n": 1, - "data_out": 1, - "empty": 1, - "priority_encoder": 1, - "INPUT_WIDTH": 3, - "OUTPUT_WIDTH": 3, - "logic": 2, - "-": 4, - "input_data": 2, - "output_data": 3, - "int": 1, - "ii": 6, - "always_comb": 1, - "for": 2, - "<": 1, - "+": 3, - "function": 1, - "integer": 2, - "log2": 4, - "x": 6, - "endfunction": 1 - }, - "TXL": { - "define": 12, - "program": 1, - "[": 38, - "expression": 9, - "]": 38, - "end": 12, - "term": 6, - "|": 3, - "addop": 2, - "primary": 4, - "mulop": 2, - "number": 10, - "(": 2, - ")": 2, - "-": 3, - "/": 3, - "rule": 12, - "main": 1, - "replace": 6, - "E": 3, - "construct": 1, - "NewE": 3, - "resolveAddition": 2, - "resolveSubtraction": 2, - "resolveMultiplication": 2, - "resolveDivision": 2, - "resolveParentheses": 2, - "where": 1, - "not": 1, - "by": 6, - "N1": 8, - "+": 2, - "N2": 8, - "*": 2, - "N": 2 - }, - "Tcl": { - "#": 7, - "package": 2, - "require": 2, - "Tcl": 2, - "namespace": 6, - "eval": 2, - "stream": 61, - "{": 148, - "export": 3, - "[": 76, - "a": 1, - "-": 5, - "z": 1, - "]": 76, - "*": 19, - "}": 148, - "ensemble": 1, - "create": 7, - "proc": 28, - "first": 24, - "restCmdPrefix": 2, - "return": 22, - "list": 18, - "lassign": 11, - "foldl": 1, - "cmdPrefix": 19, - "initialValue": 7, - "args": 13, - "set": 34, - "numStreams": 3, - "llength": 5, - "if": 14, - "FoldlSingleStream": 2, - "lindex": 5, - "elseif": 3, - "FoldlMultiStream": 2, - "else": 5, - "Usage": 4, - "foreach": 5, - "numArgs": 7, - "varName": 7, - "body": 8, - "ForeachSingleStream": 2, - "(": 11, - ")": 11, - "&&": 2, - "%": 1, - "end": 2, - "items": 5, - "lrange": 1, - "ForeachMultiStream": 2, - "fromList": 2, - "_list": 4, - "index": 4, - "expr": 4, - "+": 1, - "isEmpty": 10, - "map": 1, - "MapSingleStream": 3, - "MapMultiStream": 3, - "rest": 22, - "select": 2, - "while": 6, - "take": 2, - "num": 3, - "||": 1, - "<": 1, - "toList": 1, - "res": 10, - "lappend": 8, - "#################################": 2, - "acc": 9, - "streams": 5, - "firsts": 6, - "restStreams": 6, - "uplevel": 4, - "nextItems": 4, - "msg": 1, - "code": 1, - "error": 1, - "level": 1, - "XDG": 11, - "variable": 4, - "DEFAULTS": 8, - "DATA_HOME": 4, - "CONFIG_HOME": 4, - "CACHE_HOME": 4, - "RUNTIME_DIR": 3, - "DATA_DIRS": 4, - "CONFIG_DIRS": 4, - "SetDefaults": 3, - "ne": 2, - "file": 9, - "join": 9, - "env": 8, - "HOME": 3, - ".local": 1, - "share": 3, - ".config": 1, - ".cache": 1, - "/usr": 2, - "local": 1, - "/etc": 1, - "xdg": 1, - "XDGVarSet": 4, - "var": 11, - "info": 1, - "exists": 1, - "XDG_": 4, - "Dir": 4, - "subdir": 16, - "dir": 5, - "dict": 2, - "get": 2, - "Dirs": 3, - "rawDirs": 3, - "split": 1, - "outDirs": 3, - "XDG_RUNTIME_DIR": 1 - }, - "TeX": { - "ProvidesFile": 3, - "{": 1765, - "authortitle.cbx": 1, - "}": 1771, - "[": 96, - "abx@cbxid": 1, - "]": 95, - "ExecuteBibliographyOptions": 1, - "uniquename": 1, - "uniquelist": 1, - "autocite": 1, - "footnote": 2, - "renewcommand*": 1, - "iffinalcitedelim": 1, - "iflastcitekey": 1, - "newbool": 1, - "cbx": 7, - "parens": 8, - "newbibmacro*": 6, - "cite": 16, - "%": 321, - "iffieldundef": 22, - "shorthand": 8, - "ifnameundef": 2, - "labelname": 4, - "printnames": 2, - "setunit": 2, - "nametitledelim": 1, - "usebibmacro": 38, - "title": 4, - "citetitle": 4, - "textcite": 6, - "global": 4, - "booltrue": 1, - "addspace": 2, - "bibopenparen": 2, - "ifnumequal": 1, - "value": 1, - "citecount": 1, - "prenote": 8, - "printtext": 6, - "bibhyperref": 2, - "printfield": 9, - "labeltitle": 1, - "postnote": 11, - "ifbool": 3, - "bibcloseparen": 3, - "postnotedelim": 1, - "DeclareCiteCommand": 6, - "citeindex": 8, - "multicitedelim": 7, - "DeclareCiteCommand*": 2, - "parencite": 2, - "mkbibparens": 3, - "footcite": 1, - "mkbibfootnote": 2, - "footcitetext": 1, - "mkbibfootnotetext": 1, - "smartcite": 1, - "iffootnote": 1, - "boolfalse": 2, - "iffirstcitekey": 1, - "setcounter": 6, - "textcitetotal": 2, - "stepcounter": 1, - "textcitedelim": 1, - "DeclareMultiCiteCommand": 1, - "textcites": 1, - "endinput": 3, - "english.lbx": 1, - "abx@lbxid": 1, - "DeclareRedundantLanguages": 1, - "english": 2, - "american": 2, - "british": 1, - "canadian": 1, - "australian": 1, - "newzealand": 1, - "USenglish": 1, - "UKenglish": 1, - "DeclareBibliographyExtras": 1, - "protected": 16, - "def": 32, - "bibrangedash": 2, - "textendash": 1, - "penalty": 2, - "hyphenpenalty": 1, - "breakable": 1, - "dash": 1, - "bibdatedash": 9, - "finalandcomma": 109, - "addcomma": 1, - "finalandsemicolon": 1, - "addsemicolon": 1, - "mkbibordinal#1": 1, - "begingroup": 2, - "@tempcnta0#1": 1, - "relax": 6, - "number": 3, - "@tempcnta": 7, - "@whilenum": 2, - "do": 2, - "advance": 3, - "-": 15, - "ifnum": 4, - "fi": 17, - "ifcase": 1, - "th": 2, - "or": 4, - "st": 1, - "nd": 1, - "rd": 1, - "else": 10, - "endgroup": 2, - "mkbibmascord": 1, - "mkbibordinal": 3, - "mkbibfemord": 1, - "mkbibneutord": 1, - "mkbibdatelong#1#2#3": 1, - "#2": 21, - "mkbibmonth": 1, - "thefield": 8, - "#3": 14, - "#1": 50, - "space": 10, - "nobreakspace": 1, - "stripzeros": 2, - "iffieldbibstring": 2, - "bibstring": 2, - "mkbibdateshort#1#2#3": 1, - "mkdatezeros": 3, - "/": 4, - "savecommand": 4, - "mkbibrangecomp": 3, - "mkbibrangecompextra": 3, - "mkbibrangeterse": 3, - "mkbibrangeterseextra": 3, - "lbx@us@mkbibrangetrunc@long": 1, - "long": 2, - "lbx@us@mkbibrangetrunc@short": 1, - "short": 2, - "lbx@us@mkbibrangetruncextra@long": 1, - "lbx@us@mkbibrangetruncextra@short": 1, - "UndeclareBibliographyExtras": 1, - "restorecommand": 4, - "DeclareBibliographyStrings": 1, - "bibliography": 1, - "Bibliography": 2, - "references": 2, - "References": 3, - "shorthands": 1, - "List": 1, - "of": 24, - "Abbreviations": 2, - "editor": 25, - "ed": 21, - "adddot": 257, - "editors": 25, - "eds": 7, - "compiler": 2, - "comp": 4, - "compilers": 2, - "redactor": 2, - "red": 4, - "redactors": 2, - "reviser": 2, - "rev": 5, - "revisers": 2, - "founder": 2, - "found": 3, - "founders": 2, - "continuator": 1, - "continued": 3, - "cont": 3, - "FIXME": 5, - "unsure": 5, - "continuators": 1, - "collaborator": 2, - "collab": 3, - "collaborators": 2, - "translator": 16, - "trans": 51, - "translators": 16, - "commentator": 11, - "comm": 31, - "commentators": 11, - "annotator": 11, - "annot": 34, - "annotators": 11, - "commentary": 9, - "annotations": 11, - "introduction": 30, - "intro": 2, - "foreword": 30, - "forew": 20, - "afterword": 30, - "afterw": 20, - "editortr": 1, - "and": 200, - "adddotspace": 57, - "editorstr": 1, - "editorco": 1, - "editorsco": 1, - "editoran": 1, - "editorsan": 1, - "editorin": 1, - "introd": 18, - "editorsin": 1, - "editorfo": 1, - "editorsfo": 1, - "editoraf": 1, - "editorsaf": 1, - "editortrco": 1, - "ed.": 28, - "addabbrvspace": 52, - "editorstrco": 1, - "eds.": 17, - "editortran": 1, - "editorstran": 1, - "editortrin": 1, - "editorstrin": 1, - "editortrfo": 1, - "editorstrfo": 1, - "editortraf": 1, - "editorstraf": 1, - "editorcoin": 1, - "editorscoin": 1, - "editorcofo": 1, - "editorscofo": 1, - "editorcoaf": 1, - "editorscoaf": 1, - "editoranin": 1, - "editorsanin": 1, - "editoranfo": 1, - "editorsanfo": 1, - "editoranaf": 1, - "editorsanaf": 1, - "editortrcoin": 1, - "trans.": 24, - "editorstrcoin": 1, - "editortrcofo": 1, - "editorstrcofo": 1, - "editortrcoaf": 1, - "editorstrcoaf": 1, - "editortranin": 1, - "editorstranin": 1, - "editortranfo": 1, - "editorstranfo": 1, - "editortranaf": 1, - "editorstranaf": 1, - "translatorco": 1, - "translatorsco": 1, - "translatoran": 1, - "translatorsan": 1, - "translatorin": 1, - "translation": 19, - "translatorsin": 1, - "translatorfo": 1, - "translatorsfo": 1, - "translatoraf": 1, - "translatorsaf": 1, - "translatorcoin": 1, - "translatorscoin": 1, - "translatorcofo": 1, - "translatorscofo": 1, - "translatorcoaf": 1, - "translatorscoaf": 1, - "translatoranin": 1, - "translatorsanin": 1, - "translatoranfo": 1, - "translatorsanfo": 1, - "translatoranaf": 1, - "translatorsanaf": 1, - "byauthor": 1, - "by": 103, - "byeditor": 1, - "edited": 24, - "bycompiler": 1, - "compiled": 1, - "byredactor": 1, - "redacted": 1, - "byreviser": 1, - "revised": 1, - "byreviewer": 1, - "reviewed": 1, - "byfounder": 1, - "founded": 1, - "bycontinuator": 1, - "bycollaborator": 1, - "in": 37, - "collaboration": 1, - "with": 71, - "bytranslator": 1, - "translated": 26, - "lbx@lfromlang": 24, - "lbx@sfromlang": 24, - "bycommentator": 1, - "commented": 13, - "byannotator": 1, - "annotated": 13, - "withcommentator": 1, - "a": 24, - "comment": 2, - "withannotator": 1, - "annots": 1, - "withintroduction": 1, - "an": 40, - "withforeword": 1, - "withafterword": 1, - "byeditortr": 1, - "byeditorco": 1, - "byeditoran": 1, - "byeditorin": 1, - "introd.": 9, - "byeditorfo": 1, - "forew.": 9, - "byeditoraf": 1, - "afterw.": 9, - "byeditortrco": 1, - "byeditortran": 1, - "byeditortrin": 1, - "byeditortrfo": 1, - "byeditortraf": 1, - "byeditorcoin": 1, - "comm.": 9, - "byeditorcofo": 1, - "byeditorcoaf": 1, - "byeditoranin": 1, - "annot.": 6, - "byeditoranfo": 1, - "byeditoranaf": 1, - "byeditortrcoin": 1, - "byeditortrcofo": 1, - "byeditortrcoaf": 1, - "byeditortranin": 1, - "byeditortranfo": 1, - "byeditortranaf": 1, - "bytranslatorco": 1, - "bytranslatoran": 1, - "bytranslatorin": 1, - "bytranslatorfo": 1, - "bytranslatoraf": 1, - "bytranslatorcoin": 1, - "bytranslatorcofo": 1, - "bytranslatorcoaf": 1, - "bytranslatoranin": 1, - "bytranslatoranfo": 1, - "bytranslatoranaf": 1, - "andothers": 1, - "et": 4, - "al": 4, - "andmore": 1, - "volume": 3, - "vol": 2, - "volumes": 2, - "vols": 1, - "involumes": 1, - "jourvol": 1, - "jourser": 1, - "series": 3, - "ser": 3, - "book": 5, - "part": 3, - "issue": 3, - "newseries": 1, - "new": 3, - "oldseries": 1, - "old": 2, - "edition": 2, - "reprint": 3, - "repr": 3, - "reprintof": 1, - "reprintas": 1, - "reprinted": 2, - "as": 10, - "rpt": 1, - "reprintfrom": 1, - "from": 53, - "reviewof": 1, - "review": 1, - "translationof": 1, - "translationas": 1, - "translationfrom": 1, - "origpubas": 1, - "originally": 2, - "published": 4, - "orig": 2, - "pub": 2, - "origpubin": 1, - "astitle": 1, - "bypublisher": 1, - "page": 7, - "p": 2, - "pages": 5, - "pp": 2, - "column": 2, - "col": 1, - "columns": 2, - "cols": 1, - "line": 4, - "l": 1, - "lines": 2, - "ll": 1, - "nodate": 1, - "no": 2, - "date": 1, - "n": 6, - "d": 2, - "verse": 2, - "v": 1, - "verses": 2, - "vv": 1, - "section": 4, - "S": 3, - "sections": 2, - "paragraph": 2, - "par": 8, - "paragraphs": 2, - "inseries": 1, - "ofseries": 1, - "chapter": 11, - "chap": 2, - "mathesis": 1, - "Master": 1, - "s": 1, - "thesis": 6, - "MA": 1, - "phdthesis": 1, - "PhD": 2, - "candthesis": 1, - "Candidate": 1, - "Cand": 1, - "resreport": 1, - "research": 2, - "report": 2, - "rep": 2, - "techreport": 1, - "technical": 1, - "tech": 1, - "software": 3, - "computer": 1, - "datacd": 1, - "CD": 4, - "ROM": 2, - "audiocd": 1, - "audio": 2, - "version": 3, - "url": 3, - "address": 2, - "urlfrom": 1, - "available": 2, - "urlseen": 1, - "visited": 2, - "on": 8, - "inpreparation": 1, - "preparation": 2, - "submitted": 3, - "forthcoming": 3, - "inpress": 1, - "press": 2, - "prepublished": 1, - "pre": 2, - "citedas": 1, - "henceforth": 2, - "cited": 4, - "thiscite": 1, - "especially": 1, - "esp": 1, - "seenote": 1, - "see": 7, - "note": 1, - "quotedin": 1, - "quoted": 1, - "qtd": 1, - "idem": 7, - "idemsm": 1, - "idemsf": 1, - "eadem": 4, - "idemsn": 1, - "idempm": 1, - "eidem": 4, - "idempf": 1, - "eaedem": 2, - "idempn": 1, - "idempp": 1, - "ibidem": 2, - "ibid": 1, - "opcit": 1, - "op": 2, - "cit": 6, - "loccit": 1, - "loc": 2, - "confer": 1, - "cf": 2, - "sequens": 1, - "sq": 2, - "sequentes": 1, - "sqq": 2, - "passim": 2, - "pass": 1, - "seealso": 1, - "also": 2, - "backrefpage": 1, - "backrefpages": 1, - "january": 1, - "January": 1, - "Jan": 1, - "february": 1, - "February": 1, - "Feb": 1, - "march": 1, - "March": 1, - "Mar": 1, - "april": 1, - "April": 1, - "Apr": 1, - "may": 1, - "May": 2, - "june": 1, - "June": 2, - "july": 1, - "July": 2, - "august": 1, - "August": 1, - "Aug": 1, - "september": 1, - "September": 1, - "Sept": 1, - "october": 1, - "October": 1, - "Oct": 1, - "november": 1, - "November": 1, - "Nov": 1, - "december": 1, - "December": 1, - "Dec": 1, - "langamerican": 1, - "American": 4, - "langbrazilian": 1, - "Brazilian": 4, - "langcatalan": 1, - "Catalan": 4, - "langcroatian": 1, - "Croatian": 4, - "langczech": 1, - "Czech": 4, - "langdanish": 1, - "Danish": 4, - "langdutch": 1, - "Dutch": 4, - "langenglish": 1, - "English": 4, - "langfinnish": 1, - "Finnish": 4, - "langfrench": 1, - "French": 8, - "langgerman": 1, - "German": 8, - "langgreek": 1, - "Greek": 4, - "langitalian": 1, - "Italian": 4, - "langlatin": 1, - "Latin": 4, - "langnorwegian": 1, - "Norwegian": 4, - "langpolish": 1, - "Polish": 4, - "langportuguese": 1, - "Portuguese": 4, - "langrussian": 1, - "Russian": 4, - "langslovene": 1, - "Slovene": 4, - "langspanish": 1, - "Spanish": 4, - "langswedish": 1, - "Swedish": 4, - "fromamerican": 1, - "the": 61, - "frombrazilian": 1, - "fromcatalan": 1, - "fromcroatian": 1, - "fromczech": 1, - "fromdanish": 1, - "fromdutch": 1, - "fromenglish": 1, - "fromfinnish": 1, - "fromfrench": 1, - "fromgerman": 1, - "fromgreek": 1, - "fromitalian": 1, - "fromlatin": 1, - "fromnorwegian": 1, - "frompolish": 1, - "fromportuguese": 1, - "fromrussian": 1, - "fromslovene": 1, - "fromspanish": 1, - "fromswedish": 1, - "countryde": 1, - "Germany": 1, - "DE": 1, - "countryeu": 1, - "European": 6, - "Union": 2, - "EU": 1, - "countryep": 1, - "EP": 1, - "countryfr": 1, - "France": 1, - "FR": 1, - "countryuk": 1, - "United": 2, - "Kingdom": 1, - "GB": 1, - "countryus": 1, - "States": 1, - "America": 1, - "US": 1, - "patent": 13, - "pat": 12, - "patentde": 1, - "patenteu": 1, - "patentfr": 1, - "patentuk": 1, - "British": 4, - "patentus": 1, - "U.S": 4, - "patreq": 1, - "request": 6, - "req": 6, - "patreqde": 1, - "patreqeu": 1, - "patreqfr": 1, - "patrequk": 1, - "patrequs": 1, - "file": 3, - "library": 3, - "abstract": 4, - "annotation": 1, - "gdef": 10, - "lbx@us@mkbibrangetrunc@long#1#2": 1, - "#2year": 14, - "#2date": 4, - "iffieldsequal": 8, - "#2endyear": 22, - "csuse": 16, - "mkbibdate#1": 16, - "#2month": 10, - "#2day": 8, - "iffieldequalstr": 4, - "mbox": 4, - "#2endmonth": 8, - "#2endday": 8, - "lbx@us@mkbibrangetrunc@short#1#2": 1, - "lbx@us@mkbibrangetruncextra@long#1#2": 1, - "extrayear": 6, - "lbx@us@mkbibrangetruncextra@short#1#2": 1, - "ProvidesClass": 2, - "problemset": 1, - "DeclareOption*": 2, - "PassOptionsToClass": 2, - "final": 2, - "article": 2, - "DeclareOption": 2, - "worksheet": 1, - "providecommand": 45, - "@solutionvis": 3, - "expand": 1, - "@expand": 3, - "ProcessOptions": 2, - "LoadClass": 2, - "pt": 5, - "letterpaper": 1, - "RequirePackage": 20, - "top": 1, - "bottom": 1, - "left": 15, - "right": 16, - "geometry": 1, - "pgfkeys": 1, - "For": 13, - "mathtable": 2, - "environment.": 3, - "tabularx": 1, - "pset": 1, - "heading": 2, - "float": 1, - "Used": 6, - "for": 21, - "floats": 1, - "(": 12, - "tables": 1, - "figures": 1, - "etc.": 1, - ")": 12, - "graphicx": 1, - "inserting": 3, - "images.": 1, - "enumerate": 2, - "mathtools": 2, - "Required.": 7, - "Loads": 1, - "amsmath.": 1, - "amsthm": 1, - "theorem": 1, - "environments.": 1, - "amssymb": 1, - "booktabs": 1, - "esdiff": 1, - "derivatives": 4, - "partial": 2, - "Optional.": 1, - "shortintertext.": 1, - "fancyhdr": 2, - "customizing": 1, - "headers/footers.": 1, - "lastpage": 1, - "count": 1, - "header/footer.": 1, - "xcolor": 1, - "setting": 3, - "color": 3, - "hyperlinks": 2, - "obeyFinal": 1, - "Disable": 1, - "todos": 1, - "option": 1, - "class": 1, - "@todoclr": 2, - "linecolor": 1, - "todonotes": 1, - "keeping": 1, - "track": 1, - "to": 16, - "dos.": 1, - "colorlinks": 1, - "true": 1, - "linkcolor": 1, - "navy": 2, - "urlcolor": 1, - "black": 2, - "hyperref": 1, - "following": 2, - "urls": 2, - "document.": 1, - "Enables": 1, - "tag": 1, - "all": 2, - "hypcap": 1, - "definecolor": 2, - "gray": 1, - "To": 1, - "Dos.": 1, - "brightness": 1, - "RGB": 1, - "coloring": 1, - "setlength": 12, - "parskip": 1, - "ex": 2, - "Sets": 1, - "between": 1, - "paragraphs.": 2, - "parindent": 2, - "Indent": 1, - "first": 1, - "let": 11, - "VERBATIM": 2, - "verbatim": 2, - "verbatim@font": 1, - "small": 8, - "ttfamily": 1, - "usepackage": 2, - "caption": 1, - "footnotesize": 2, - "subcaption": 1, - "captionsetup": 4, - "table": 2, - "labelformat": 4, - "simple": 3, - "labelsep": 4, - "period": 3, - "labelfont": 4, - "bf": 4, - "figure": 2, - "subtable": 1, - "subfigure": 1, - "TRUE": 1, - "FALSE": 1, - "SHOW": 3, - "HIDE": 2, - "thispagestyle": 5, - "empty": 6, - "listoftodos": 1, - "clearpage": 4, - "pagenumbering": 1, - "arabic": 2, - "shortname": 2, - "authorname": 2, - "coursename": 3, - "assignment": 3, - "#4": 4, - "duedate": 2, - "#5": 2, - "begin": 11, - "minipage": 4, - "textwidth": 4, - "flushleft": 2, - "hypertarget": 1, - "@assignment": 2, - "textbf": 5, - "end": 12, - "flushright": 2, - "renewcommand": 10, - "headrulewidth": 1, - "footrulewidth": 1, - "pagestyle": 3, - "fancyplain": 4, - "fancyhf": 2, - "lfoot": 1, - "hyperlink": 1, - "cfoot": 1, - "rfoot": 1, - "thepage": 2, - "pageref": 1, - "LastPage": 1, - "newcounter": 1, - "theproblem": 3, - "Problem": 2, - "counter": 1, - "environment": 1, - "problem": 1, - "addtocounter": 2, - "equation": 1, - "noindent": 2, - ".": 3, - "textit": 1, - "Default": 2, - "is": 2, - "omit": 1, - "pagebreaks": 1, - "after": 1, - "solution": 2, - "qqed": 2, - "hfill": 3, - "rule": 1, - "mm": 2, - "pagebreak": 2, - "show": 1, - "solutions.": 1, - "vspace": 2, - "em": 8, - "Solution.": 1, - "ifnum#1": 2, - "Sum": 3, - "ensuremath": 15, - "sum_": 2, - "infsum": 2, - "infty": 2, - "Infinite": 1, - "sum": 1, - "Int": 1, - "x": 4, - "int_": 1, - "mathrm": 1, - "Integrate": 1, - "respect": 1, - "Lim": 2, - "displaystyle": 2, - "lim_": 1, - "Take": 1, - "limit": 1, - "infinity": 1, - "f": 1, - "Frac": 1, - "_": 1, - "Slanted": 1, - "fraction": 1, - "proper": 1, - "spacing.": 1, - "Usefule": 1, - "display": 2, - "fractions.": 1, - "eval": 1, - "vert_": 1, - "L": 1, - "hand": 2, - "sizing": 2, - "R": 1, - "D": 1, - "diff": 1, - "writing": 2, - "PD": 1, - "diffp": 1, - "full": 1, - "Forces": 1, - "style": 1, - "math": 4, - "mode": 4, - "Deg": 1, - "circ": 1, - "adding": 1, - "degree": 1, - "symbol": 4, - "even": 1, - "if": 1, - "not": 2, - "abs": 1, - "vert": 3, - "Absolute": 1, - "Value": 1, - "norm": 1, - "Vert": 2, - "Norm": 1, - "vector": 1, - "magnitude": 1, - "e": 1, - "times": 3, - "Scientific": 2, - "Notation": 2, - "E": 2, - "u": 1, - "text": 7, - "units": 1, - "Roman": 1, - "mc": 1, - "hspace": 3, - "comma": 1, - "into": 2, - "mtxt": 1, - "insterting": 1, - "either": 1, - "side.": 1, - "Option": 1, - "preceding": 1, - "punctuation.": 1, - "prob": 1, - "P": 2, - "cndprb": 1, - "right.": 1, - "cov": 1, - "Cov": 1, - "twovector": 1, - "r": 3, - "array": 6, - "threevector": 1, - "fourvector": 1, - "vecs": 4, - "vec": 2, - "bm": 2, - "bolded": 2, - "arrow": 2, - "vect": 3, - "unitvecs": 1, - "hat": 2, - "unitvect": 1, - "Div": 1, - "del": 3, - "cdot": 1, - "Curl": 1, - "Grad": 1, - "NeedsTeXFormat": 1, - "LaTeX2e": 1, - "reedthesis": 1, - "/01/27": 1, - "The": 4, - "Reed": 5, - "College": 5, - "Thesis": 5, - "Class": 4, - "CurrentOption": 1, - "AtBeginDocument": 1, - "fancyhead": 5, - "LE": 1, - "RO": 1, - "above": 1, - "makes": 2, - "your": 1, - "headers": 6, - "caps.": 2, - "If": 1, - "you": 1, - "would": 1, - "like": 1, - "different": 1, - "choose": 1, - "one": 1, - "options": 1, - "be": 3, - "sure": 1, - "remove": 1, - "both": 1, - "RE": 2, - "slshape": 2, - "nouppercase": 2, - "leftmark": 2, - "This": 2, - "RIGHT": 2, - "side": 2, - "italic": 1, - "use": 1, - "lowercase": 1, - "With": 1, - "Capitals": 1, - "When": 1, - "Specified.": 1, - "LO": 2, - "rightmark": 2, - "does": 1, - "same": 1, - "thing": 1, - "LEFT": 2, - "scshape": 2, - "will": 2, - "And": 1, - "so": 1, - "fancy": 1, - "oldthebibliography": 2, - "thebibliography": 2, - "endoldthebibliography": 2, - "endthebibliography": 1, - "renewenvironment": 2, - "addcontentsline": 5, - "toc": 5, - "bibname": 2, - "things": 1, - "psych": 1, - "majors": 1, - "out": 1, - "oldtheindex": 2, - "theindex": 2, - "endoldtheindex": 2, - "endtheindex": 1, - "indexname": 1, - "RToldchapter": 1, - "if@openright": 1, - "RTcleardoublepage": 3, - "@topnum": 1, - "z@": 2, - "@afterindentfalse": 1, - "secdef": 1, - "@chapter": 2, - "@schapter": 1, - "c@secnumdepth": 1, - "m@ne": 2, - "if@mainmatter": 1, - "refstepcounter": 1, - "typeout": 1, - "@chapapp": 2, - "thechapter.": 1, - "thechapter": 1, - "space#1": 1, - "chaptermark": 1, - "addtocontents": 2, - "lof": 1, - "protect": 2, - "addvspace": 2, - "p@": 3, - "lot": 1, - "if@twocolumn": 3, - "@topnewpage": 1, - "@makechapterhead": 2, - "@afterheading": 1, - "newcommand": 2, - "if@twoside": 1, - "ifodd": 1, - "c@page": 1, - "hbox": 15, - "newpage": 3, - "RToldcleardoublepage": 1, - "cleardoublepage": 4, - "oddsidemargin": 2, - ".5in": 3, - "evensidemargin": 2, - "textheight": 4, - "topmargin": 6, - "addtolength": 8, - "headheight": 4, - "headsep": 3, - ".6in": 1, - "division#1": 1, - "@division": 3, - "@latex@warning@no@line": 3, - "No": 3, - "noexpand": 3, - "division": 2, - "given": 3, - "department#1": 1, - "@department": 3, - "department": 1, - "thedivisionof#1": 1, - "@thedivisionof": 3, - "Division": 2, - "approvedforthe#1": 1, - "@approvedforthe": 3, - "advisor#1": 1, - "@advisor": 3, - "advisor": 1, - "altadvisor#1": 1, - "@altadvisor": 3, - "@altadvisortrue": 1, - "@empty": 1, - "newif": 1, - "if@altadvisor": 3, - "@altadvisorfalse": 1, - "contentsname": 1, - "Table": 1, - "Contents": 1, - "l@chapter": 1, - "c@tocdepth": 1, - "addpenalty": 1, - "@highpenalty": 2, - "vskip": 4, - "@plus": 1, - "@tempdima": 2, - "rightskip": 1, - "@pnumwidth": 3, - "parfillskip": 1, - "leavevmode": 1, - "bfseries": 3, - "leftskip": 2, - "hskip": 1, - "nobreak": 2, - "normalfont": 1, - "leaders": 1, - "m@th": 1, - "mkern": 2, - "@dotsep": 2, - "mu": 2, - "hb@xt@": 1, - "hss": 1, - "newenvironment": 1, - "@restonecoltrue": 1, - "onecolumn": 1, - "@restonecolfalse": 1, - "Abstract": 2, - "center": 7, - "fontsize": 7, - "selectfont": 6, - "if@restonecol": 1, - "twocolumn": 1, - "ifx": 1, - "@pdfoutput": 1, - "@undefined": 1, - "RTpercent": 3, - "@percentchar": 1, - "AtBeginDvi": 2, - "special": 2, - "LaTeX": 3, - "/12/04": 3, - "SN": 3, - "rawpostscript": 1, - "AtEndDocument": 1, - "pdfinfo": 1, - "/Creator": 1, - "maketitle": 1, - "titlepage": 2, - "footnoterule": 1, - "thanks": 1, - "baselineskip": 2, - "setbox0": 2, - "Requirements": 2, - "Degree": 2, - "null": 3, - "vfil": 8, - "@title": 1, - "centerline": 8, - "wd0": 7, - "hrulefill": 5, - "A": 1, - "Presented": 1, - "In": 1, - "Partial": 1, - "Fulfillment": 1, - "Bachelor": 1, - "Arts": 1, - "bigskip": 2, - "lineskip": 1, - ".75em": 1, - "tabular": 2, - "t": 1, - "c": 5, - "@author": 1, - "@date": 1, - "Approved": 2, - "just": 1, - "below": 2, - "cm": 2, - "copy0": 1, - "approved": 1, - "major": 1, - "sign": 1, - "makebox": 6, - "verbose.bbx": 1, - "abx@bbxid": 1, - "RequireBibliographyStyle": 1, - "authortitle": 1 - }, - "Tea": { - "<%>": 1, - "template": 1, - "foo": 1 - }, - "Turing": { - "function": 1, - "factorial": 4, - "(": 3, - "n": 9, - "int": 2, - ")": 3, - "real": 1, - "if": 2, - "then": 1, - "result": 2, - "else": 1, - "*": 1, - "-": 1, - "end": 3, - "var": 1, - "loop": 2, - "put": 3, - "..": 1, - "get": 1, - "exit": 1, - "when": 1 - }, - "TypeScript": { - "class": 3, - "Animal": 4, - "{": 9, - "constructor": 3, - "(": 18, - "public": 1, - "name": 5, - ")": 18, - "}": 9, - "move": 3, - "meters": 2, - "alert": 3, - "this.name": 1, - "+": 3, - ";": 8, - "Snake": 2, - "extends": 2, - "super": 2, - "super.move": 2, - "Horse": 2, - "var": 2, - "sam": 1, - "new": 2, - "tom": 1, - "sam.move": 1, - "tom.move": 1, - "console.log": 1 - }, - "UnrealScript": { - "//": 5, - "-": 220, - "class": 18, - "MutU2Weapons": 1, - "extends": 2, - "Mutator": 1, - "config": 18, - "(": 189, - "U2Weapons": 1, - ")": 189, - ";": 295, - "var": 30, - "string": 25, - "ReplacedWeaponClassNames0": 1, - "ReplacedWeaponClassNames1": 1, - "ReplacedWeaponClassNames2": 1, - "ReplacedWeaponClassNames3": 1, - "ReplacedWeaponClassNames4": 1, - "ReplacedWeaponClassNames5": 1, - "ReplacedWeaponClassNames6": 1, - "ReplacedWeaponClassNames7": 1, - "ReplacedWeaponClassNames8": 1, - "ReplacedWeaponClassNames9": 1, - "ReplacedWeaponClassNames10": 1, - "ReplacedWeaponClassNames11": 1, - "ReplacedWeaponClassNames12": 1, - "bool": 18, - "bConfigUseU2Weapon0": 1, - "bConfigUseU2Weapon1": 1, - "bConfigUseU2Weapon2": 1, - "bConfigUseU2Weapon3": 1, - "bConfigUseU2Weapon4": 1, - "bConfigUseU2Weapon5": 1, - "bConfigUseU2Weapon6": 1, - "bConfigUseU2Weapon7": 1, - "bConfigUseU2Weapon8": 1, - "bConfigUseU2Weapon9": 1, - "bConfigUseU2Weapon10": 1, - "bConfigUseU2Weapon11": 1, - "bConfigUseU2Weapon12": 1, - "//var": 8, - "byte": 4, - "bUseU2Weapon": 1, - "[": 125, - "]": 125, - "": 7, - "ReplacedWeaponClasses": 3, - "": 2, - "ReplacedWeaponPickupClasses": 1, - "": 3, - "ReplacedAmmoPickupClasses": 1, - "U2WeaponClasses": 2, - "//GE": 17, - "For": 3, - "default": 12, - "properties": 3, - "ONLY": 3, - "U2WeaponPickupClassNames": 1, - "U2AmmoPickupClassNames": 2, - "bIsVehicle": 4, - "bNotVehicle": 3, - "localized": 2, - "U2WeaponDisplayText": 1, - "U2WeaponDescText": 1, - "GUISelectOptions": 1, - "int": 10, - "FirePowerMode": 1, - "bExperimental": 3, - "bUseFieldGenerator": 2, - "bUseProximitySensor": 2, - "bIntegrateShieldReward": 2, - "IterationNum": 8, - "Weapons.Length": 1, - "const": 1, - "DamageMultiplier": 28, - "DamagePercentage": 3, - "bUseXMPFeel": 4, - "FlashbangModeString": 1, - "struct": 1, - "WeaponInfo": 2, - "{": 28, - "ReplacedWeaponClass": 1, - "Generated": 4, - "from": 6, - "ReplacedWeaponClassName.": 2, - "This": 3, - "is": 6, - "what": 1, - "we": 3, - "replace.": 1, - "ReplacedWeaponPickupClass": 1, - "UNUSED": 1, - "ReplacedAmmoPickupClass": 1, - "WeaponClass": 1, - "the": 31, - "weapon": 10, - "are": 1, - "going": 1, - "to": 4, - "put": 1, - "inside": 1, - "world.": 1, - "WeaponPickupClassName": 1, - "WeponClass.": 1, - "AmmoPickupClassName": 1, - "WeaponClass.": 1, - "bEnabled": 1, - "Structs": 1, - "can": 2, - "d": 1, - "thus": 1, - "still": 1, - "require": 1, - "bConfigUseU2WeaponX": 1, - "indicates": 1, - "that": 3, - "spawns": 1, - "a": 2, - "vehicle": 3, - "deployable": 1, - "turrets": 1, - ".": 2, - "These": 1, - "only": 2, - "work": 1, - "in": 4, - "gametypes": 1, - "duh.": 1, - "Opposite": 1, - "of": 1, - "works": 1, - "non": 1, - "gametypes.": 2, - "Think": 1, - "shotgun.": 1, - "}": 27, - "Weapons": 31, - "function": 5, - "PostBeginPlay": 1, - "local": 8, - "FireMode": 8, - "x": 65, - "//local": 3, - "ReplacedWeaponPickupClassName": 1, - "//IterationNum": 1, - "ArrayCount": 2, - "Level.Game.bAllowVehicles": 4, - "He": 1, - "he": 1, - "neat": 1, - "way": 1, - "get": 1, - "required": 1, - "number.": 1, - "for": 11, - "<": 9, - "+": 18, - ".bEnabled": 3, - "GetPropertyText": 5, - "needed": 1, - "use": 1, - "variables": 1, - "an": 1, - "array": 2, - "like": 1, - "fashion.": 1, - "//bUseU2Weapon": 1, - ".ReplacedWeaponClass": 5, - "DynamicLoadObject": 2, - "//ReplacedWeaponClasses": 1, - "//ReplacedWeaponPickupClassName": 1, - ".default.PickupClass": 1, - "if": 55, - ".ReplacedWeaponClass.default.FireModeClass": 4, - "None": 10, - "&&": 15, - ".default.AmmoClass": 1, - ".default.AmmoClass.default.PickupClass": 2, - ".ReplacedAmmoPickupClass": 2, - "break": 1, - ".WeaponClass": 7, - ".WeaponPickupClassName": 1, - ".WeaponClass.default.PickupClass": 1, - ".AmmoPickupClassName": 2, - ".bIsVehicle": 2, - ".bNotVehicle": 2, - "Super.PostBeginPlay": 1, - "ValidReplacement": 6, - "return": 47, - "CheckReplacement": 1, - "Actor": 1, - "Other": 23, - "out": 2, - "bSuperRelevant": 3, - "i": 12, - "WeaponLocker": 3, - "L": 2, - "xWeaponBase": 3, - ".WeaponType": 2, - "false": 3, - "true": 5, - "Weapon": 1, - "Other.IsA": 2, - "Other.Class": 2, - "Ammo": 1, - "ReplaceWith": 1, - "L.Weapons.Length": 1, - "L.Weapons": 2, - "//STARTING": 1, - "WEAPON": 1, - "xPawn": 6, - ".RequiredEquipment": 3, - "True": 2, - "Special": 1, - "handling": 1, - "Shield": 2, - "Reward": 2, - "integration": 1, - "ShieldPack": 7, - ".SetStaticMesh": 1, - "StaticMesh": 1, - ".Skins": 1, - "Shader": 2, - ".RepSkin": 1, - ".SetDrawScale": 1, - ".SetCollisionSize": 1, - ".PickupMessage": 1, - ".PickupSound": 1, - "Sound": 1, - "Super.CheckReplacement": 1, - "GetInventoryClassOverride": 1, - "InventoryClassName": 3, - "Super.GetInventoryClassOverride": 1, - "static": 2, - "FillPlayInfo": 1, - "PlayInfo": 3, - "": 1, - "Recs": 4, - "WeaponOptions": 17, - "Super.FillPlayInfo": 1, - ".static.GetWeaponList": 1, - "Recs.Length": 1, - ".ClassName": 1, - ".FriendlyName": 1, - "PlayInfo.AddSetting": 33, - "default.RulesGroup": 33, - "default.U2WeaponDisplayText": 33, - "event": 3, - "GetDescriptionText": 1, - "PropName": 35, - "default.U2WeaponDescText": 33, - "Super.GetDescriptionText": 1, - "PreBeginPlay": 1, - "float": 3, - "k": 29, - "Multiplier.": 1, - "Super.PreBeginPlay": 1, - "/100.0": 1, - "//log": 1, - "@k": 1, - "//Sets": 1, - "various": 1, - "settings": 1, - "match": 1, - "different": 1, - "games": 1, - ".default.DamagePercentage": 1, - "//Original": 1, - "U2": 3, - "compensate": 1, - "division": 1, - "errors": 1, - "Class": 105, - ".default.DamageMin": 12, - "*": 54, - ".default.DamageMax": 12, - ".default.Damage": 27, - ".default.myDamage": 4, - "//Dampened": 1, - "already": 1, - "no": 2, - "need": 1, - "rewrite": 1, - "else": 1, - "//General": 2, - "XMP": 4, - ".default.Spread": 1, - ".default.MaxAmmo": 7, - ".default.Speed": 8, - ".default.MomentumTransfer": 4, - ".default.ClipSize": 4, - ".default.FireLastReloadTime": 3, - ".default.DamageRadius": 4, - ".default.LifeSpan": 4, - ".default.ShakeRadius": 1, - ".default.ShakeMagnitude": 1, - ".default.MaxSpeed": 5, - ".default.FireRate": 3, - ".default.ReloadTime": 3, - "//3200": 1, - "too": 1, - "much": 1, - ".default.VehicleDamageScaling": 2, - "*k": 28, - "//Experimental": 1, - "options": 1, - "lets": 1, - "you": 2, - "Unuse": 1, - "EMPimp": 1, - "projectile": 1, - "and": 3, - "fire": 1, - "two": 1, - "CAR": 1, - "barrels": 1, - "//CAR": 1, - "nothing": 1, - "U2Weapons.U2AssaultRifleFire": 1, - "U2Weapons.U2AssaultRifleAltFire": 1, - "U2ProjectileConcussionGrenade": 1, - "U2Weapons.U2AssaultRifleInv": 1, - "U2Weapons.U2WeaponEnergyRifle": 1, - "U2Weapons.U2WeaponFlameThrower": 1, - "U2Weapons.U2WeaponPistol": 1, - "U2Weapons.U2AutoTurretDeploy": 1, - "U2Weapons.U2WeaponRocketLauncher": 1, - "U2Weapons.U2WeaponGrenadeLauncher": 1, - "U2Weapons.U2WeaponSniper": 2, - "U2Weapons.U2WeaponRocketTurret": 1, - "U2Weapons.U2WeaponLandMine": 1, - "U2Weapons.U2WeaponLaserTripMine": 1, - "U2Weapons.U2WeaponShotgun": 1, - "s": 7, - "Minigun.": 1, - "Enable": 5, - "Shock": 1, - "Lance": 1, - "Energy": 2, - "Rifle": 3, - "What": 7, - "should": 7, - "be": 8, - "replaced": 8, - "with": 9, - "Rifle.": 3, - "By": 7, - "it": 7, - "Bio": 1, - "Magnum": 2, - "Pistol": 1, - "Pistol.": 1, - "Onslaught": 1, - "Grenade": 1, - "Launcher.": 2, - "Shark": 2, - "Rocket": 4, - "Launcher": 1, - "Flak": 1, - "Cannon.": 1, - "Should": 1, - "Lightning": 1, - "Gun": 2, - "Widowmaker": 2, - "Sniper": 3, - "Classic": 1, - "here.": 1, - "Turret": 2, - "delpoyable": 1, - "deployable.": 1, - "Redeemer.": 1, - "Laser": 2, - "Trip": 2, - "Mine": 1, - "Mine.": 1, - "t": 2, - "replace": 1, - "Link": 1, - "matches": 1, - "vehicles.": 1, - "Crowd": 1, - "Pleaser": 1, - "Shotgun.": 1, - "have": 1, - "shields": 1, - "or": 2, - "damage": 1, - "filtering.": 1, - "If": 1, - "checked": 1, - "mutator": 1, - "produces": 1, - "Unreal": 4, - "II": 4, - "shield": 1, - "pickups.": 1, - "Choose": 1, - "between": 2, - "white": 1, - "overlay": 3, - "depending": 2, - "on": 2, - "player": 2, - "view": 1, - "style": 1, - "distance": 1, - "foolproof": 1, - "FM_DistanceBased": 1, - "Arena": 1, - "Add": 1, - "weapons": 1, - "other": 1, - "Fully": 1, - "customisable": 1, - "choose": 1, - "behaviour.": 1, - "US3HelloWorld": 1, - "GameInfo": 1, - "InitGame": 1, - "Options": 1, - "Error": 1, - "log": 1, - "defaultproperties": 1 - }, - "VCL": { - "sub": 23, - "vcl_recv": 2, - "{": 50, - "if": 14, - "(": 50, - "req.request": 18, - "&&": 14, - ")": 50, - "return": 33, - "pipe": 4, - ";": 48, - "}": 50, - "pass": 9, - "req.http.Authorization": 2, - "||": 4, - "req.http.Cookie": 2, - "lookup": 2, - "vcl_pipe": 2, - "vcl_pass": 2, - "vcl_hash": 2, - "set": 10, - "req.hash": 3, - "+": 17, - "req.url": 2, - "req.http.host": 4, - "else": 3, - "server.ip": 2, - "hash": 2, - "vcl_hit": 2, - "obj.cacheable": 2, - "deliver": 8, - "vcl_miss": 2, - "fetch": 3, - "vcl_fetch": 2, - "obj.http.Set": 1, - "-": 21, - "Cookie": 2, - "obj.prefetch": 1, - "s": 3, - "vcl_deliver": 2, - "vcl_discard": 1, - "discard": 2, - "vcl_prefetch": 1, - "vcl_timeout": 1, - "vcl_error": 2, - "obj.http.Content": 2, - "Type": 2, - "synthetic": 2, - "utf": 2, - "//W3C//DTD": 2, - "XHTML": 2, - "Strict//EN": 2, - "http": 3, - "//www.w3.org/TR/xhtml1/DTD/xhtml1": 2, - "strict.dtd": 2, - "obj.status": 4, - "obj.response": 6, - "req.xid": 2, - "//www.varnish": 1, - "cache.org/": 1, - "req.restarts": 1, - "req.http.x": 1, - "forwarded": 1, - "for": 1, - "req.http.X": 3, - "Forwarded": 3, - "For": 3, - "client.ip": 2, - "hash_data": 3, - "beresp.ttl": 2, - "<": 1, - "beresp.http.Set": 1, - "beresp.http.Vary": 1, - "hit_for_pass": 1, - "obj.http.Retry": 1, - "After": 1, - "vcl_init": 1, - "ok": 2, - "vcl_fini": 1 - }, - "VHDL": { - "-": 2, - "VHDL": 1, - "example": 1, - "file": 1, - "library": 1, - "ieee": 1, - ";": 7, - "use": 1, - "ieee.std_logic_1164.all": 1, - "entity": 2, - "inverter": 2, - "is": 2, - "port": 1, - "(": 1, - "a": 2, - "in": 1, - "std_logic": 2, - "b": 2, - "out": 1, - ")": 1, - "end": 2, - "architecture": 2, - "rtl": 1, - "of": 1, - "begin": 1, - "<": 1, - "not": 1 - }, - "Verilog": { - "////////////////////////////////////////////////////////////////////////////////": 14, - "//": 117, - "timescale": 10, - "ns": 8, - "/": 11, - "ps": 8, - "module": 18, - "button_debounce": 3, - "(": 378, - "input": 68, - "clk": 40, - "clock": 3, - "reset_n": 32, - "asynchronous": 2, - "reset": 13, - "button": 25, - "bouncy": 1, - "output": 42, - "reg": 26, - "debounce": 6, - "debounced": 1, - "-": 73, - "cycle": 1, - "signal": 3, - ")": 378, - ";": 287, - "parameter": 7, - "CLK_FREQUENCY": 4, - "DEBOUNCE_HZ": 4, - "localparam": 4, - "COUNT_VALUE": 2, - "WAIT": 6, - "FIRE": 4, - "COUNT": 4, - "[": 179, - "]": 179, - "state": 6, - "next_state": 6, - "count": 6, - "always": 23, - "@": 16, - "posedge": 11, - "or": 14, - "negedge": 8, - "<": 47, - "begin": 46, - "if": 23, - "end": 48, - "else": 22, - "case": 3, - "<=>": 4, - "1": 7, - "endcase": 3, - "default": 2, - "endmodule": 18, - "control": 1, - "en": 13, - "dsp_sel": 9, - "an": 6, - "wire": 67, - "a": 5, - "b": 3, - "c": 3, - "d": 3, - "e": 3, - "f": 2, - "g": 2, - "h": 2, - "i": 62, - "j": 2, - "k": 2, - "l": 2, - "assign": 23, - "FDRSE": 6, - "#": 10, - ".INIT": 6, - "b0": 27, - "Synchronous": 12, - ".S": 6, - "b1": 19, - "Initial": 6, - "value": 6, - "of": 8, - "register": 6, - "DFF2": 1, - ".Q": 6, - "Data": 13, - ".C": 6, - "Clock": 14, - ".CE": 6, - "enable": 6, - ".D": 6, - ".R": 6, - "set": 6, - "DFF0": 1, - "DFF6": 1, - "DFF4": 1, - "DFF10": 1, - "DFF8": 1, - "hex_display": 1, - "num": 5, - "hex0": 2, - "hex1": 2, - "hex2": 2, - "hex3": 2, - "seg_7": 4, - "hex_group0": 1, - ".num": 4, - ".en": 4, - ".seg": 4, - "hex_group1": 1, - "hex_group2": 1, - "hex_group3": 1, - "mux": 1, - "opA": 4, - "opB": 3, - "sum": 5, - "out": 5, - "cout": 4, - "b0000": 1, - "b01": 1, - "b11": 1, - "pipeline_registers": 1, - "BIT_WIDTH": 5, - "pipe_in": 4, - "pipe_out": 5, - "NUMBER_OF_STAGES": 7, - "generate": 3, - "genvar": 3, - "*": 4, - "BIT_WIDTH*": 5, - "pipe_gen": 6, - "for": 4, - "+": 36, - "pipeline": 2, - "BIT_WIDTH*i": 2, - "endgenerate": 3, - "ps2_mouse": 1, - "Input": 2, - "Reset": 1, - "inout": 2, - "ps2_clk": 3, - "PS2": 2, - "Bidirectional": 2, - "ps2_dat": 3, - "the_command": 2, - "Command": 1, - "to": 3, - "send": 2, - "mouse": 1, - "send_command": 2, - "Signal": 2, - "command_was_sent": 2, - "command": 1, - "finished": 1, - "sending": 1, - "error_communication_timed_out": 3, - "received_data": 2, - "Received": 1, - "data": 4, - "received_data_en": 4, - "If": 1, - "new": 1, - "has": 1, - "been": 1, - "received": 1, - "start_receiving_data": 3, - "wait_for_incoming_data": 3, - "ps2_clk_posedge": 3, - "Internal": 2, - "Wires": 1, - "ps2_clk_negedge": 3, - "idle_counter": 4, - "Registers": 2, - "ps2_clk_reg": 4, - "ps2_data_reg": 5, - "last_ps2_clk": 4, - "ns_ps2_transceiver": 13, - "State": 1, - "Machine": 1, - "s_ps2_transceiver": 8, - "PS2_STATE_0_IDLE": 10, - "h1": 1, - "PS2_STATE_2_COMMAND_OUT": 2, - "h3": 1, - "PS2_STATE_4_END_DELAYED": 4, - "Defaults": 1, - "PS2_STATE_1_DATA_IN": 3, - "||": 1, - "PS2_STATE_3_END_TRANSFER": 3, - "h00": 1, - "&&": 3, - "h01": 1, - "ps2_mouse_cmdout": 1, - "mouse_cmdout": 1, - ".clk": 6, - "Inputs": 2, - ".reset": 2, - ".the_command": 1, - ".send_command": 1, - ".ps2_clk_posedge": 2, - ".ps2_clk_negedge": 2, - ".ps2_clk": 1, - "Bidirectionals": 1, - ".ps2_dat": 1, - ".command_was_sent": 1, - "Outputs": 2, - ".error_communication_timed_out": 1, - "ps2_mouse_datain": 1, - "mouse_datain": 1, - ".wait_for_incoming_data": 1, - ".start_receiving_data": 1, - ".ps2_data": 1, - ".received_data": 1, - ".received_data_en": 1, - "ns/1ps": 2, - "e0": 1, - "x": 41, - "y": 21, - "{": 11, - "}": 11, - "e1": 1, - "ch": 1, - "z": 7, - "o": 6, - "&": 6, - "maj": 1, - "|": 2, - "s0": 1, - "s1": 1, - "sign_extender": 1, - "INPUT_WIDTH": 5, - "OUTPUT_WIDTH": 4, - "original": 3, - "sign_extended_original": 2, - "sign_extend": 3, - "gen_sign_extend": 1, - "sqrt_pipelined": 3, - "start": 12, - "optional": 2, - "INPUT_BITS": 28, - "radicand": 12, - "unsigned": 2, - "data_valid": 7, - "valid": 2, - "OUTPUT_BITS": 14, - "root": 8, - "number": 2, - "bits": 2, - "any": 1, - "integer": 1, - "%": 3, - "start_gen": 7, - "propagation": 1, - "OUTPUT_BITS*INPUT_BITS": 9, - "root_gen": 15, - "values": 3, - "radicand_gen": 10, - "mask_gen": 9, - "mask": 3, - "mask_4": 1, - "is": 4, - "odd": 1, - "this": 2, - "INPUT_BITS*": 27, - "<<": 2, - "i/2": 2, - "even": 1, - "pipeline_stage": 1, - "INPUT_BITS*i": 5, - "t_button_debounce": 1, - ".CLK_FREQUENCY": 1, - ".DEBOUNCE_HZ": 1, - ".reset_n": 3, - ".button": 1, - ".debounce": 1, - "initial": 3, - "bx": 4, - "#10": 10, - "#5": 3, - "#100": 1, - "#0.1": 8, - "t_div_pipelined": 1, - "dividend": 3, - "divisor": 5, - "div_by_zero": 2, - "quotient": 2, - "quotient_correct": 1, - "BITS": 2, - "div_pipelined": 2, - ".BITS": 1, - ".dividend": 1, - ".divisor": 1, - ".quotient": 1, - ".div_by_zero": 1, - ".start": 2, - ".data_valid": 2, - "#50": 2, - "#1": 1, - "#1000": 1, - "finish": 2, - "t_sqrt_pipelined": 1, - ".INPUT_BITS": 1, - ".radicand": 1, - ".root": 1, - "#10000": 1, - "vga": 1, - "wb_clk_i": 6, - "Mhz": 1, - "VDU": 1, - "wb_rst_i": 6, - "wb_dat_i": 3, - "wb_dat_o": 2, - "wb_adr_i": 3, - "wb_we_i": 3, - "wb_tga_i": 5, - "wb_sel_i": 3, - "wb_stb_i": 2, - "wb_cyc_i": 2, - "wb_ack_o": 2, - "vga_red_o": 2, - "vga_green_o": 2, - "vga_blue_o": 2, - "horiz_sync": 2, - "vert_sync": 2, - "csrm_adr_o": 2, - "csrm_sel_o": 2, - "csrm_we_o": 2, - "csrm_dat_o": 2, - "csrm_dat_i": 2, - "csr_adr_i": 3, - "csr_stb_i": 2, - "conf_wb_dat_o": 3, - "conf_wb_ack_o": 3, - "mem_wb_dat_o": 3, - "mem_wb_ack_o": 3, - "csr_adr_o": 2, - "csr_dat_i": 3, - "csr_stb_o": 3, - "v_retrace": 3, - "vh_retrace": 3, - "w_vert_sync": 3, - "shift_reg1": 3, - "graphics_alpha": 4, - "memory_mapping1": 3, - "write_mode": 3, - "raster_op": 3, - "read_mode": 3, - "bitmask": 3, - "set_reset": 3, - "enable_set_reset": 3, - "map_mask": 3, - "x_dotclockdiv2": 3, - "chain_four": 3, - "read_map_select": 3, - "color_compare": 3, - "color_dont_care": 3, - "wbm_adr_o": 3, - "wbm_sel_o": 3, - "wbm_we_o": 3, - "wbm_dat_o": 3, - "wbm_dat_i": 3, - "wbm_stb_o": 3, - "wbm_ack_i": 3, - "stb": 4, - "cur_start": 3, - "cur_end": 3, - "start_addr": 2, - "vcursor": 3, - "hcursor": 3, - "horiz_total": 3, - "end_horiz": 3, - "st_hor_retr": 3, - "end_hor_retr": 3, - "vert_total": 3, - "end_vert": 3, - "st_ver_retr": 3, - "end_ver_retr": 3, - "pal_addr": 3, - "pal_we": 3, - "pal_read": 3, - "pal_write": 3, - "dac_we": 3, - "dac_read_data_cycle": 3, - "dac_read_data_register": 3, - "dac_read_data": 3, - "dac_write_data_cycle": 3, - "dac_write_data_register": 3, - "dac_write_data": 3, - "vga_config_iface": 1, - "config_iface": 1, - ".wb_clk_i": 2, - ".wb_rst_i": 2, - ".wb_dat_i": 2, - ".wb_dat_o": 2, - ".wb_adr_i": 2, - ".wb_we_i": 2, - ".wb_sel_i": 2, - ".wb_stb_i": 2, - ".wb_ack_o": 2, - ".shift_reg1": 2, - ".graphics_alpha": 2, - ".memory_mapping1": 2, - ".write_mode": 2, - ".raster_op": 2, - ".read_mode": 2, - ".bitmask": 2, - ".set_reset": 2, - ".enable_set_reset": 2, - ".map_mask": 2, - ".x_dotclockdiv2": 2, - ".chain_four": 2, - ".read_map_select": 2, - ".color_compare": 2, - ".color_dont_care": 2, - ".pal_addr": 2, - ".pal_we": 2, - ".pal_read": 2, - ".pal_write": 2, - ".dac_we": 2, - ".dac_read_data_cycle": 2, - ".dac_read_data_register": 2, - ".dac_read_data": 2, - ".dac_write_data_cycle": 2, - ".dac_write_data_register": 2, - ".dac_write_data": 2, - ".cur_start": 2, - ".cur_end": 2, - ".start_addr": 1, - ".vcursor": 2, - ".hcursor": 2, - ".horiz_total": 2, - ".end_horiz": 2, - ".st_hor_retr": 2, - ".end_hor_retr": 2, - ".vert_total": 2, - ".end_vert": 2, - ".st_ver_retr": 2, - ".end_ver_retr": 2, - ".v_retrace": 2, - ".vh_retrace": 2, - "vga_lcd": 1, - "lcd": 1, - ".rst": 1, - ".csr_adr_o": 1, - ".csr_dat_i": 1, - ".csr_stb_o": 1, - ".vga_red_o": 1, - ".vga_green_o": 1, - ".vga_blue_o": 1, - ".horiz_sync": 1, - ".vert_sync": 1, - "vga_cpu_mem_iface": 1, - "cpu_mem_iface": 1, - ".wbs_adr_i": 1, - ".wbs_sel_i": 1, - ".wbs_we_i": 1, - ".wbs_dat_i": 1, - ".wbs_dat_o": 1, - ".wbs_stb_i": 1, - ".wbs_ack_o": 1, - ".wbm_adr_o": 1, - ".wbm_sel_o": 1, - ".wbm_we_o": 1, - ".wbm_dat_o": 1, - ".wbm_dat_i": 1, - ".wbm_stb_o": 1, - ".wbm_ack_i": 1, - "vga_mem_arbitrer": 1, - "mem_arbitrer": 1, - ".clk_i": 1, - ".rst_i": 1, - ".csr_adr_i": 1, - ".csr_dat_o": 1, - ".csr_stb_i": 1, - ".csrm_adr_o": 1, - ".csrm_sel_o": 1, - ".csrm_we_o": 1, - ".csrm_dat_o": 1, - ".csrm_dat_i": 1 - }, - "VimL": { - "no": 1, - "toolbar": 1, - "set": 7, - "guioptions": 1, - "-": 1, - "T": 1, - "nocompatible": 1, - "ignorecase": 1, - "incsearch": 1, - "smartcase": 1, - "showmatch": 1, - "showcmd": 1, - "syntax": 1, - "on": 1 - }, - "Visual Basic": { - "VERSION": 1, - "CLASS": 1, - "BEGIN": 1, - "MultiUse": 1, - "-": 9, - "NotPersistable": 1, - "DataBindingBehavior": 1, - "vbNone": 1, - "MTSTransactionMode": 1, - "*************************************************************************************************************************************************************************************************************************************************": 2, - "Copyright": 1, - "(": 20, - "c": 1, - ")": 20, - "David": 1, - "Briant": 1, - "All": 1, - "rights": 1, - "reserved": 1, - "Option": 1, - "Explicit": 1, - "Private": 25, - "Declare": 3, - "Function": 5, - "apiSetProp": 4, - "Lib": 3, - "Alias": 3, - "ByVal": 6, - "hwnd": 2, - "As": 34, - "Long": 10, - "lpString": 2, - "String": 13, - "hData": 1, - "apiGlobalAddAtom": 3, - "apiSetForegroundWindow": 1, - "myMouseEventsForm": 5, - "fMouseEventsForm": 2, - "WithEvents": 3, - "myAST": 3, - "cTP_AdvSysTray": 2, - "Attribute": 3, - "myAST.VB_VarHelpID": 1, - "myClassName": 2, - "myWindowName": 2, - "Const": 9, - "TEN_MILLION": 1, - "Single": 1, - "myListener": 1, - "VLMessaging.VLMMMFileListener": 1, - "myListener.VB_VarHelpID": 1, - "myMMFileTransports": 2, - "VLMessaging.VLMMMFileTransports": 1, - "myMMFileTransports.VB_VarHelpID": 1, - "myMachineID": 1, - "myRouterSeed": 1, - "myRouterIDsByMMTransportID": 1, - "New": 6, - "Dictionary": 3, - "myMMTransportIDsByRouterID": 2, - "myDirectoryEntriesByIDString": 1, - "GET_ROUTER_ID": 1, - "GET_ROUTER_ID_REPLY": 1, - "REGISTER_SERVICE": 1, - "REGISTER_SERVICE_REPLY": 1, - "UNREGISTER_SERVICE": 1, - "UNREGISTER_SERVICE_REPLY": 1, - "GET_SERVICES": 1, - "GET_SERVICES_REPLY": 1, - "Initialize": 1, - "/": 1, - "Release": 1, - "hide": 1, - "us": 1, - "from": 2, - "the": 7, - "Applications": 1, - "list": 1, - "in": 1, - "Windows": 1, - "Task": 1, - "Manager": 1, - "App.TaskVisible": 1, - "False": 1, - "create": 1, - "tray": 1, - "icon": 1, - "Set": 5, - "myAST.create": 1, - "myMouseEventsForm.icon": 1, - "make": 1, - "myself": 1, - "easily": 2, - "found": 1, - "myMouseEventsForm.hwnd": 3, - "End": 11, - "Sub": 9, - "shutdown": 1, - "myAST.destroy": 1, - "Nothing": 2, - "Unload": 1, - "myAST_RButtonUp": 1, - "Dim": 1, - "epm": 1, - "cTP_EasyPopupMenu": 1, - "menuItemSelected": 1, - "epm.addMenuItem": 3, - "MF_STRING": 3, - "epm.addSubmenuItem": 2, - "MF_SEPARATOR": 1, - "MF_CHECKED": 1, - "route": 2, - "to": 4, - "a": 4, - "remote": 1, - "machine": 1, - "Else": 1, - "for": 4, - "moment": 1, - "just": 1, - "between": 1, - "MMFileTransports": 1, - "If": 4, - "myMMTransportIDsByRouterID.Exists": 1, - "message.toAddress.RouterID": 2, - "Then": 1, - "transport": 1, - "transport.send": 1, - "messageToBytes": 1, - "message": 1, - "directoryEntryIDString": 2, - "serviceType": 2, - "address": 1, - "VLMAddress": 1, - "&": 7, - "address.MachineID": 1, - "address.RouterID": 1, - "address.AgentID": 1, - "myMMFileTransports_disconnecting": 1, - "id": 1, - "oReceived": 2, - "Boolean": 1, - "True": 1, - "@Code": 1, - "ViewData": 1, - "Code": 1, - "@section": 1, - "featured": 1, - "
    ": 1, - "class=": 7, - "
    ": 1, - "
    ": 1, - "

    ": 1, - "@ViewData": 2, - ".": 3, - "

    ": 1, - "

    ": 1, - "

    ": 1, - "
    ": 1, - "

    ": 1, - "To": 1, - "learn": 1, - "more": 4, - "about": 2, - "ASP.NET": 5, - "MVC": 4, - "visit": 2, - "": 5, - "href=": 5, - "title=": 2, - "http": 1, - "//asp.net/mvc": 1, - "": 5, - "The": 1, - "page": 1, - "features": 3, - "": 1, - "videos": 1, - "tutorials": 1, - "and": 6, - "samples": 1, - "": 1, - "help": 1, - "you": 4, - "get": 1, - "most": 1, - "MVC.": 1, - "have": 1, - "any": 1, - "questions": 1, - "our": 1, - "forums": 1, - "

    ": 1, - "
    ": 1, - "
    ": 1, - "Section": 1, - "

    ": 1, - "We": 1, - "suggest": 1, - "following": 1, - "

    ": 1, - "
      ": 1, - "
    1. ": 3, - "
      ": 3, - "Getting": 1, - "Started": 1, - "
      ": 3, - "gives": 2, - "powerful": 1, - "patterns": 1, - "based": 1, - "way": 1, - "build": 1, - "dynamic": 1, - "websites": 1, - "that": 5, - "enables": 1, - "clean": 1, - "separation": 1, - "of": 2, - "concerns": 1, - "full": 1, - "control": 1, - "over": 1, - "markup": 1, - "enjoyable": 1, - "agile": 1, - "development.": 1, - "includes": 1, - "many": 1, - "enable": 1, - "fast": 1, - "TDD": 1, - "friendly": 1, - "development": 1, - "creating": 1, - "sophisticated": 1, - "applications": 1, - "use": 1, - "latest": 1, - "web": 2, - "standards.": 1, - "Learn": 3, - "
    2. ": 3, - "Add": 1, - "NuGet": 2, - "packages": 1, - "jump": 1, - "start": 1, - "your": 2, - "coding": 1, - "makes": 1, - "it": 1, - "easy": 1, - "install": 1, - "update": 1, - "free": 1, - "libraries": 1, - "tools.": 1, - "Find": 1, - "Web": 1, - "Hosting": 1, - "You": 1, - "can": 1, - "find": 1, - "hosting": 1, - "company": 1, - "offers": 1, - "right": 1, - "mix": 1, - "price": 1, - "applications.": 1, - "
    ": 1, - "Module": 2, - "Module1": 1, - "Main": 1, - "Console.Out.WriteLine": 2 - }, - "Volt": { - "module": 1, - "main": 2, - ";": 53, - "import": 7, - "core.stdc.stdio": 1, - "core.stdc.stdlib": 1, - "watt.process": 1, - "watt.path": 1, - "results": 1, - "list": 1, - "cmd": 1, - "int": 8, - "(": 37, - ")": 37, - "{": 12, - "auto": 6, - "cmdGroup": 2, - "new": 3, - "CmdGroup": 1, - "bool": 4, - "printOk": 2, - "true": 4, - "printImprovments": 2, - "printFailing": 2, - "printRegressions": 2, - "string": 1, - "compiler": 3, - "getEnv": 1, - "if": 7, - "is": 2, - "null": 3, - "printf": 6, - ".ptr": 14, - "return": 2, - "-": 3, - "}": 12, - "///": 1, - "@todo": 1, - "Scan": 1, - "for": 4, - "files": 1, - "tests": 2, - "testList": 1, - "total": 5, - "passed": 5, - "failed": 5, - "improved": 3, - "regressed": 6, - "rets": 5, - "Result": 2, - "[": 6, - "]": 6, - "tests.length": 3, - "size_t": 3, - "i": 14, - "<": 3, - "+": 14, - ".runTest": 1, - "cmdGroup.waitAll": 1, - "ret": 1, - "ret.ok": 1, - "cast": 5, - "ret.hasPassed": 4, - "&&": 2, - "ret.test.ptr": 4, - "ret.msg.ptr": 4, - "else": 3, - "fflush": 2, - "stdout": 1, - "xml": 8, - "fopen": 1, - "fprintf": 2, - "rets.length": 1, - ".xmlLog": 1, - "fclose": 1, - "rate": 2, - "float": 2, - "/": 1, - "*": 1, - "f": 1, - "double": 1 - }, - "XC": { - "int": 2, - "main": 1, - "(": 1, - ")": 1, - "{": 2, - "x": 3, - ";": 4, - "chan": 1, - "c": 3, - "par": 1, - "<:>": 1, - "0": 1, - "}": 2, - "return": 1 - }, - "XML": { - "": 12, - "version=": 21, - "encoding=": 8, - "": 7, - "ToolsVersion=": 6, - "DefaultTargets=": 5, - "xmlns=": 8, - "": 21, - "Project=": 12, - "Condition=": 37, - "": 26, - "": 6, - "Debug": 10, - "": 6, - "": 6, - "AnyCPU": 10, - "": 6, - "": 5, - "{": 6, - "D9BF15": 1, - "-": 90, - "D10": 1, - "ABAD688E8B": 1, - "}": 6, - "": 5, - "": 4, - "Exe": 4, - "": 4, - "": 2, - "Properties": 3, - "": 2, - "": 5, - "csproj_sample": 1, - "": 5, - "": 4, - "csproj": 1, - "sample": 6, - "": 4, - "": 5, - "v4.5.1": 5, - "": 5, - "": 3, - "": 3, - "": 3, - "true": 24, - "": 3, - "": 25, - "": 6, - "": 6, - "": 5, - "": 5, - "": 6, - "full": 4, - "": 6, - "": 7, - "false": 11, - "": 7, - "": 8, - "bin": 11, - "": 8, - "": 6, - "DEBUG": 3, - ";": 52, - "TRACE": 6, - "": 6, - "": 4, - "prompt": 4, - "": 4, - "": 8, - "": 8, - "pdbonly": 3, - "Release": 6, - "": 26, - "": 30, - "Include=": 78, - "": 26, - "": 10, - "": 5, - "": 7, - "standalone=": 1, - "": 1, - "4": 1, - "0": 2, - "": 1, - "storage_type_id=": 1, - "": 14, - "moduleId=": 14, - "": 2, - "id=": 141, - "buildSystemId=": 2, - "name=": 270, - "": 2, - "": 2, - "": 12, - "point=": 12, - "": 2, - "": 7, - "": 2, - "artifactName=": 2, - "buildArtefactType=": 2, - "buildProperties=": 2, - "cleanCommand=": 2, - "description=": 4, - "cdt": 2, - "managedbuild": 2, - "config": 2, - "gnu": 2, - "exe": 2, - "debug": 1, - "1803931088": 1, - "parent=": 2, - "": 2, - "resourcePath=": 2, - "": 2, - "superClass=": 42, - "": 2, - "": 2, - "buildPath=": 2, - "keepEnvironmentInBuildfile=": 2, - "managedBuildOn=": 2, - "": 12, - "": 4, - "": 8, - "": 8, - "defaultValue=": 2, - "": 4, - "kind=": 6, - "paths=": 4, - "": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "flags=": 2, - "": 2, - "": 2, - "": 2, - "release": 1, - "32754498": 1, - "": 2, - "projectType=": 1, - "": 5, - "enabled=": 125, - "problemReportingEnabled=": 5, - "selectedProfileId=": 5, - "": 40, - "": 40, - "": 40, - "filePath=": 40, - "": 80, - "": 40, - "": 40, - "": 40, - "arguments=": 40, - "command=": 40, - "useDefault=": 40, - "": 40, - "": 40, - "": 4, - "instanceId=": 4, - "": 4, - "": 1, - "": 2, - "": 2, - "cfa7a11": 1, - "a5cd": 1, - "bd7b": 1, - "b210d4d51a29": 1, - "fsproj_sample": 2, - "": 1, - "": 1, - "": 3, - "fsproj": 1, - "": 3, - "": 2, - "": 2, - "": 5, - "fsproj_sample.XML": 2, - "": 5, - "": 2, - "": 2, - "": 2, - "True": 13, - "": 2, - "": 5, - "": 1, - "": 1, - "": 1, - "": 1, - "": 2, - "(": 65, - "MSBuildExtensionsPath32": 2, - ")": 58, - "..": 1, - "Microsoft": 2, - "SDKs": 1, - "F#": 1, - "Framework": 1, - "v4.0": 1, - "Microsoft.FSharp.Targets": 2, - "": 2, - "": 1, - "": 1, - "VisualStudio": 1, - "v": 1, - "VisualStudioVersion": 1, - "FSharp": 1, - "": 1, - "": 1, - "xmlns": 2, - "ea=": 2, - "": 4, - "This": 21, - "easyant": 3, - "module.ant": 1, - "file": 3, - "is": 123, - "optionnal": 1, - "and": 44, - "designed": 1, - "to": 164, - "customize": 1, - "your": 8, - "build": 1, - "with": 23, - "own": 2, - "specific": 8, - "target.": 1, - "": 4, - "": 2, - "": 2, - "my": 2, - "awesome": 1, - "additionnal": 1, - "target": 6, - "": 2, - "": 2, - "extensionOf=": 1, - "i": 2, - "would": 2, - "love": 1, - "could": 1, - "easily": 1, - "plug": 1, - "pre": 1, - "compile": 1, - "step": 1, - "": 1, - "": 1, - "": 1, - "organisation=": 3, - "module=": 3, - "revision=": 3, - "status=": 1, - "this": 77, - "a": 128, - "module.ivy": 1, - "for": 60, - "java": 1, - "standard": 1, - "application": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 2, - "visibility=": 2, - "": 1, - "": 1, - "": 4, - "org=": 1, - "rev=": 1, - "conf=": 1, - "default": 9, - "junit": 2, - "test": 7, - "/": 6, - "": 1, - "": 1, - "": 1, - "": 1, - "": 2, - "ReactiveUI": 2, - "": 2, - "": 1, - "": 1, - "": 120, - "": 121, - "IObservedChange": 5, - "generic": 3, - "interface": 4, - "that": 94, - "replaces": 1, - "the": 261, - "non": 1, - "PropertyChangedEventArgs.": 1, - "Note": 7, - "it": 16, - "used": 19, - "both": 2, - "Changing": 5, - "i.e.": 23, - "Changed": 4, - "Observables.": 2, - "In": 6, - "future": 2, - "will": 65, - "be": 57, - "Covariant": 1, - "which": 12, - "allow": 1, - "simpler": 1, - "casting": 1, - "between": 15, - "changes.": 2, - "": 122, - "": 120, - "The": 75, - "object": 42, - "has": 16, - "raised": 1, - "change.": 12, - "name": 7, - "of": 76, - "property": 74, - "changed": 18, - "on": 35, - "Sender.": 1, - "value": 44, - "changed.": 9, - "IMPORTANT": 1, - "NOTE": 1, - "often": 3, - "not": 9, - "set": 41, - "performance": 1, - "reasons": 1, - "unless": 1, - "you": 20, - "have": 17, - "explicitly": 1, - "requested": 1, - "an": 88, - "Observable": 56, - "via": 8, - "method": 34, - "such": 5, - "as": 25, - "ObservableForProperty.": 1, - "To": 4, - "retrieve": 3, - "use": 5, - "Value": 3, - "extension": 2, - "method.": 2, - "IReactiveNotifyPropertyChanged": 6, - "represents": 4, - "extended": 1, - "version": 3, - "INotifyPropertyChanged": 1, - "also": 17, - "exposes": 1, - "IEnableLogger": 1, - "dummy": 1, - "attaching": 1, - "any": 11, - "class": 11, - "give": 1, - "access": 3, - "Log": 2, - "When": 5, - "called": 5, - "fire": 11, - "change": 26, - "notifications": 22, - "neither": 3, - "traditional": 3, - "nor": 3, - "until": 7, - "return": 11, - "disposed.": 3, - "": 36, - "An": 26, - "when": 38, - "disposed": 4, - "reenables": 3, - "notifications.": 5, - "": 36, - "Represents": 4, - "fires": 6, - "*before*": 2, - "about": 5, - "should": 10, - "duplicate": 2, - "if": 27, - "same": 8, - "multiple": 6, - "times.": 4, - "*after*": 2, - "TSender": 1, - "helper": 5, - "adds": 2, - "typed": 2, - "versions": 2, - "Changed.": 1, - "IReactiveCollection": 3, - "collection": 27, - "can": 11, - "notify": 3, - "its": 4, - "contents": 2, - "are": 13, - "either": 1, - "items": 27, - "added/removed": 1, - "or": 24, - "itself": 2, - "changes": 13, - ".": 20, - "It": 2, - "important": 6, - "implement": 5, - "Changing/Changed": 1, - "from": 12, - "semantically": 3, - "Fires": 14, - "added": 6, - "once": 4, - "per": 2, - "item": 19, - "added.": 4, - "Functions": 2, - "add": 2, - "AddRange": 2, - "provided": 14, - "was": 6, - "before": 8, - "going": 4, - "collection.": 6, - "been": 5, - "removed": 4, - "providing": 20, - "removed.": 4, - "whenever": 18, - "number": 9, - "in": 45, - "new": 10, - "Count.": 4, - "previous": 2, - "Provides": 4, - "Item": 4, - "implements": 8, - "IReactiveNotifyPropertyChanged.": 4, - "only": 18, - "enabled": 8, - "ChangeTrackingEnabled": 2, - "True.": 2, - "Enables": 2, - "ItemChanging": 2, - "ItemChanged": 2, - "properties": 29, - "implementing": 2, - "rebroadcast": 2, - "through": 3, - "ItemChanging/ItemChanged.": 2, - "T": 1, - "type": 23, - "specified": 7, - "Observables": 4, - "IMessageBus": 1, - "act": 2, - "simple": 2, - "way": 2, - "ViewModels": 3, - "other": 9, - "objects": 4, - "communicate": 2, - "each": 7, - "loosely": 2, - "coupled": 2, - "way.": 2, - "Specifying": 2, - "messages": 22, - "go": 2, - "where": 4, - "done": 2, - "combination": 2, - "Type": 9, - "message": 30, - "well": 2, - "additional": 3, - "parameter": 6, - "unique": 12, - "string": 13, - "distinguish": 12, - "arbitrarily": 2, - "by": 14, - "client.": 2, - "Listen": 4, - "provides": 6, - "Message": 2, - "RegisterMessageSource": 4, - "SendMessage.": 2, - "": 12, - "listen": 6, - "to.": 7, - "": 12, - "": 84, - "A": 21, - "identical": 11, - "types": 10, - "one": 27, - "purpose": 10, - "leave": 10, - "null.": 10, - "": 83, - "Determins": 2, - "particular": 2, - "registered.": 2, - "message.": 1, - "posted": 3, - "Type.": 2, - "Registers": 3, - "representing": 20, - "stream": 7, - "send.": 4, - "Another": 2, - "part": 2, - "code": 4, - "then": 3, - "call": 5, - "Observable.": 6, - "subscribed": 2, - "sent": 2, - "out": 4, - "provided.": 5, - "Sends": 2, - "single": 2, - "using": 9, - "contract.": 2, - "Consider": 2, - "instead": 2, - "sending": 2, - "response": 2, - "events.": 2, - "actual": 2, - "send": 3, - "returns": 5, - "current": 10, - "logger": 2, - "allows": 15, - "log": 2, - "attached.": 1, - "data": 2, - "structure": 1, - "representation": 1, - "memoizing": 2, - "cache": 14, - "evaluate": 1, - "function": 13, - "but": 7, - "keep": 1, - "recently": 3, - "evaluated": 1, - "parameters.": 1, - "Since": 1, - "mathematical": 2, - "sense": 1, - "key": 12, - "*always*": 1, - "maps": 1, - "corresponding": 2, - "value.": 2, - "calculation": 8, - "function.": 6, - "returned": 2, - "Constructor": 2, - "whose": 7, - "results": 6, - "want": 2, - "Tag": 1, - "user": 2, - "defined": 1, - "size": 1, - "maintain": 1, - "after": 1, - "old": 1, - "start": 1, - "thrown": 1, - "out.": 1, - "result": 3, - "gets": 1, - "evicted": 2, - "because": 2, - "Invalidate": 2, - "Evaluates": 1, - "returning": 1, - "cached": 2, - "possible": 1, - "pass": 2, - "optional": 2, - "parameter.": 1, - "Ensure": 1, - "next": 1, - "time": 3, - "queried": 1, - "called.": 1, - "all": 4, - "Returns": 5, - "values": 4, - "currently": 2, - "MessageBus": 3, - "bus.": 1, - "scheduler": 11, - "post": 2, - "RxApp.DeferredScheduler": 2, - "default.": 2, - "Current": 1, - "RxApp": 1, - "global": 1, - "object.": 3, - "ViewModel": 8, - "another": 3, - "s": 3, - "Return": 1, - "instance": 2, - "type.": 3, - "registered": 1, - "ObservableAsPropertyHelper": 6, - "help": 1, - "backed": 1, - "read": 3, - "still": 1, - "created": 2, - "directly": 1, - "more": 16, - "ToProperty": 2, - "ObservableToProperty": 1, - "methods.": 2, - "so": 1, - "output": 1, - "chained": 2, - "example": 2, - "property.": 12, - "Constructs": 4, - "base": 3, - "on.": 6, - "action": 2, - "take": 2, - "typically": 1, - "t": 2, - "bindings": 13, - "null": 4, - "OAPH": 2, - "at": 2, - "startup.": 1, - "initial": 28, - "normally": 6, - "Dispatcher": 3, - "based": 9, - "last": 1, - "Exception": 1, - "steps": 1, - "taken": 1, - "ensure": 3, - "never": 3, - "complete": 1, - "fail.": 1, - "Converts": 2, - "automatically": 3, - "onChanged": 2, - "raise": 2, - "notification.": 2, - "equivalent": 2, - "convenient.": 1, - "Expression": 7, - "initialized": 2, - "backing": 9, - "field": 10, - "ReactiveObject": 11, - "ObservableAsyncMRUCache": 2, - "memoization": 2, - "asynchronous": 4, - "expensive": 2, - "compute": 1, - "MRU": 1, - "fixed": 1, - "limit": 5, - "cache.": 5, - "guarantees": 6, - "given": 11, - "flight": 2, - "subsequent": 1, - "requests": 4, - "wait": 3, - "first": 1, - "empty": 1, - "web": 6, - "image": 1, - "receives": 1, - "two": 1, - "concurrent": 5, - "issue": 2, - "WebRequest": 1, - "does": 1, - "mean": 1, - "request": 3, - "Concurrency": 1, - "limited": 1, - "maxConcurrent": 1, - "too": 1, - "many": 1, - "operations": 6, - "progress": 1, - "further": 1, - "queued": 1, - "slot": 1, - "available.": 1, - "performs": 1, - "asyncronous": 1, - "async": 3, - "CPU": 1, - "Observable.Return": 1, - "may": 1, - "result.": 2, - "*must*": 1, - "equivalently": 1, - "input": 2, - "being": 1, - "memoized": 1, - "calculationFunc": 2, - "depends": 1, - "varables": 1, - "than": 5, - "unpredictable.": 1, - "reached": 2, - "discarded.": 4, - "maximum": 2, - "regardless": 2, - "caches": 2, - "server.": 2, - "clean": 1, - "up": 25, - "manage": 1, - "disk": 1, - "download": 1, - "save": 2, - "temporary": 1, - "folder": 1, - "onRelease": 1, - "delete": 1, - "file.": 1, - "run": 7, - "defaults": 1, - "TaskpoolScheduler": 2, - "Issues": 1, - "fetch": 1, - "operation.": 1, - "operation": 2, - "finishes.": 1, - "If": 6, - "immediately": 3, - "upon": 1, - "subscribing": 1, - "returned.": 2, - "provide": 2, - "synchronous": 1, - "AsyncGet": 1, - "resulting": 1, - "Works": 2, - "like": 2, - "SelectMany": 2, - "memoizes": 2, - "selector": 5, - "calls.": 2, - "addition": 3, - "no": 4, - "selectors": 2, - "running": 4, - "concurrently": 2, - "queues": 2, - "rest.": 2, - "very": 2, - "services": 2, - "avoid": 2, - "potentially": 2, - "spamming": 2, - "server": 2, - "hundreds": 2, - "requests.": 2, - "similar": 3, - "passed": 1, - "SelectMany.": 1, - "similarly": 1, - "ObservableAsyncMRUCache.AsyncGet": 1, - "must": 2, - "sense.": 1, - "flattened": 2, - "selector.": 2, - "overload": 2, - "useful": 2, - "making": 3, - "service": 1, - "several": 1, - "places": 1, - "paths": 1, - "already": 1, - "configured": 1, - "ObservableAsyncMRUCache.": 1, - "notification": 6, - "Attempts": 1, - "expression": 3, - "expression.": 1, - "entire": 1, - "able": 1, - "followed": 1, - "otherwise": 1, - "Given": 3, - "fully": 3, - "filled": 1, - "SetValueToProperty": 1, - "apply": 3, - "target.property": 1, - "This.GetValue": 1, - "observed": 1, - "onto": 1, - "convert": 2, - "stream.": 3, - "ValueIfNotDefault": 1, - "filters": 1, - "BindTo": 1, - "takes": 1, - "applies": 1, - "Conceptually": 1, - "child": 2, - "without": 1, - "checks.": 1, - "set.": 3, - "x.Foo.Bar.Baz": 1, - "disconnects": 1, - "binding.": 1, - "ReactiveCollection.": 1, - "ReactiveCollection": 1, - "existing": 3, - "list.": 2, - "list": 1, - "populate": 1, - "anything": 2, - "Change": 2, - "Tracking": 2, - "Creates": 3, - "adding": 2, - "completes": 4, - "optionally": 2, - "ensuring": 2, - "delay.": 2, - "withDelay": 2, - "leak": 2, - "Timer.": 2, - "always": 4, - "UI": 2, - "thread.": 3, - "put": 2, - "into": 2, - "populated": 4, - "faster": 2, - "delay": 2, - "Select": 3, - "item.": 3, - "creating": 2, - "collections": 1, - "updated": 1, - "respective": 1, - "Model": 1, - "updated.": 1, - "Collection.Select": 1, - "mirror": 1, - "ObservableForProperty": 14, - "ReactiveObject.": 1, - "unlike": 13, - "Selector": 1, - "classes": 2, - "INotifyPropertyChanged.": 1, - "monitor": 1, - "RaiseAndSetIfChanged": 2, - "Setter": 2, - "write": 2, - "assumption": 4, - "named": 2, - "RxApp.GetFieldNameForPropertyNameFunc.": 2, - "almost": 2, - "keyword.": 2, - "newly": 2, - "intended": 5, - "Silverlight": 2, - "WP7": 1, - "reflection": 1, - "cannot": 1, - "private": 1, - "field.": 1, - "Reference": 1, - "Use": 15, - "custom": 4, - "raiseAndSetIfChanged": 1, - "doesn": 1, - "x": 1, - "x.SomeProperty": 1, - "suffice.": 1, - "RaisePropertyChanging": 2, - "mock": 4, - "scenarios": 4, - "manually": 4, - "fake": 4, - "invoke": 4, - "raisePropertyChanging": 4, - "faking": 4, - "RaisePropertyChanged": 2, - "helps": 1, - "make": 2, - "them": 1, - "compatible": 1, - "Rx.Net.": 1, - "declare": 1, - "initialize": 1, - "derive": 1, - "properties/methods": 1, - "MakeObjectReactiveHelper.": 1, - "InUnitTestRunner": 1, - "attempts": 1, - "determine": 1, - "heuristically": 1, - "unit": 3, - "framework.": 1, - "we": 1, - "determined": 1, - "framework": 1, - "running.": 1, - "GetFieldNameForProperty": 1, - "convention": 2, - "GetFieldNameForPropertyNameFunc.": 1, - "needs": 1, - "found.": 1, - "name.": 1, - "DeferredScheduler": 1, - "schedule": 2, - "work": 2, - "normal": 2, - "mode": 2, - "DispatcherScheduler": 1, - "Unit": 1, - "Test": 1, - "Immediate": 1, - "simplify": 1, - "writing": 1, - "common": 1, - "tests.": 1, - "background": 1, - "modes": 1, - "TPL": 1, - "Task": 1, - "Pool": 1, - "Threadpool": 1, - "Set": 3, - "provider": 1, - "usually": 1, - "entry": 1, - "MessageBus.Current.": 1, - "override": 1, - "naming": 1, - "one.": 1, - "WhenAny": 12, - "observe": 12, - "constructors": 12, - "need": 12, - "setup.": 12, - "": 1, - "": 1, - "": 1, - "": 1, - "c67af951": 1, - "d8d6376993e7": 1, - "nproj_sample": 2, - "": 1, - "": 1, - "": 1, - "Net": 1, - "": 1, - "": 1, - "ProgramFiles": 1, - "Nemerle": 3, - "": 1, - "": 1, - "NemerleBinPathRoot": 1, - "NemerleVersion": 1, - "": 1, - "nproj": 1, - "OutputPath": 1, - "AssemblyName": 1, - ".xml": 1, - "": 3, - "": 3, - "": 1, - "False": 1, - "": 1, - "": 2, - "Nemerle.dll": 1, - "": 2, - "": 1, - "Nemerle.Linq.dll": 1, - "": 1, - "": 1, - "": 1, - "TS": 1, - "": 1, - "language=": 1, - "": 1, - "MainWindow": 1, - "": 8, - "": 8, - "filename=": 8, - "line=": 8, - "": 8, - "United": 1, - "Kingdom": 1, - "": 8, - "": 8, - "Reino": 1, - "Unido": 1, - "": 8, - "": 8, - "God": 1, - "Queen": 1, - "Deus": 1, - "salve": 1, - "Rainha": 1, - "England": 1, - "Inglaterra": 1, - "Wales": 1, - "Gales": 1, - "Scotland": 1, - "Esc": 1, - "cia": 1, - "Northern": 1, - "Ireland": 1, - "Irlanda": 1, - "Norte": 1, - "Portuguese": 1, - "Portugu": 1, - "English": 1, - "Ingl": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "Sample": 2, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "Hugh": 2, - "Bot": 2, - "": 1, - "": 1, - "": 1, - "package": 1, - "nuget": 1, - "just": 1, - "works": 1, - "": 1, - "http": 2, - "//hubot.github.com": 1, - "": 1, - "": 1, - "": 1, - "https": 1, - "//github.com/github/hubot/LICENSEmd": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "src=": 1, - "target=": 1, - "": 1, - "": 1, - "MyCommon": 1, - "": 1, - "Name=": 1, - "": 1, - "Text=": 1, - "": 1, - "D377F": 1, - "A798": 1, - "B3FD04C": 1, - "": 1, - "vbproj_sample.Module1": 1, - "": 1, - "vbproj_sample": 1, - "vbproj": 3, - "": 1, - "Console": 3, - "": 1, - "": 2, - "": 2, - "": 2, - "": 2, - "sample.xml": 2, - "": 2, - "": 2, - "": 1, - "On": 2, - "": 1, - "": 1, - "Binary": 1, - "": 1, - "": 1, - "Off": 1, - "": 1, - "": 1, - "": 1, - "": 3, - "": 3, - "": 3, - "Application.myapp": 1, - "": 3, - "": 3, - "": 1, - "": 1, - "Resources.resx": 1, - "Settings.settings": 1, - "": 1, - "": 1, - "": 1, - "": 3, - "VbMyResourcesResXFileCodeGenerator": 1, - "": 3, - "": 3, - "Resources.Designer.vb": 1, - "": 3, - "": 2, - "My.Resources": 1, - "": 2, - "": 1, - "Designer": 1, - "": 1, - "": 1, - "MyApplicationCodeGenerator": 1, - "Application.Designer.vb": 1, - "": 2, - "SettingsSingleFileGenerator": 1, - "My": 1, - "Settings.Designer.vb": 1, - "Label=": 11, - "": 2, - "Win32": 2, - "": 2, - "BF6EED48": 1, - "BF18": 1, - "C54": 1, - "F": 1, - "BBF19EEDC7C": 1, - "": 1, - "ManagedCProj": 1, - "": 1, - "vcxprojsample": 1, - "": 2, - "Application": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "v120": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "Unicode": 2, - "": 2, - "": 4, - "": 4, - "": 2, - "": 2, - "": 2, - "": 8, - "Level3": 2, - "": 1, - "Disabled": 1, - "": 1, - "": 2, - "WIN32": 2, - "_DEBUG": 1, - "%": 2, - "PreprocessorDefinitions": 2, - "": 2, - "": 4, - "": 4, - "": 6, - "": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "": 2, - "NDEBUG": 1, - "": 2, - "": 4, - "": 2, - "Create": 2, - "": 2, - "": 10, - "": 3, - "FC737F1": 1, - "C7A5": 1, - "A066": 1, - "A32D752A2FF": 1, - "": 3, - "": 3, - "cpp": 1, - "c": 1, - "cc": 1, - "cxx": 1, - "def": 1, - "odl": 1, - "idl": 1, - "hpj": 1, - "bat": 1, - "asm": 1, - "asmx": 1, - "": 3, - "": 10, - "BD": 1, - "b04": 1, - "EB": 1, - "FBE52EBFB": 1, - "h": 1, - "hh": 1, - "hpp": 1, - "hxx": 1, - "hm": 1, - "inl": 1, - "inc": 1, - "xsd": 1, - "DA6AB6": 1, - "F800": 1, - "c08": 1, - "B7A": 1, - "BB121AAD01": 1, - "rc": 1, - "ico": 1, - "cur": 1, - "bmp": 1, - "dlg": 1, - "rc2": 1, - "rct": 1, - "rgs": 1, - "gif": 1, - "jpg": 1, - "jpeg": 1, - "jpe": 1, - "resx": 1, - "tiff": 1, - "tif": 1, - "png": 1, - "wav": 1, - "mfcribbon": 1, - "ms": 1, - "Header": 2, - "Files": 7, - "": 2, - "Resource": 2, - "": 1, - "Source": 3, - "": 1, - "": 1, - "compatVersion=": 1, - "": 1, - "FreeMedForms": 1, - "": 1, - "": 1, - "C": 1, - "Eric": 1, - "MAEKER": 1, - "MD": 1, - "": 1, - "": 1, - "GPLv3": 1, - "": 1, - "": 1, - "Patient": 1, - "": 1, - "XML": 1, - "form": 1, - "loader/saver": 1, - "FreeMedForms.": 1, - "": 1, - "//www.freemedforms.com/": 1, - "": 1, - "": 1, - "": 1, - "": 1 - }, - "XProc": { - "": 1, - "version=": 2, - "encoding=": 1, - "": 1, - "xmlns": 2, - "p=": 1, - "c=": 1, - "": 1, - "port=": 2, - "": 1, - "": 1, - "Hello": 1, - "world": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "": 1 - }, - "XQuery": { - "(": 38, - "-": 486, - "xproc.xqm": 1, - "core": 1, - "xqm": 1, - "contains": 1, - "entry": 2, - "points": 1, - "primary": 1, - "eval": 3, - "step": 5, - "function": 3, - "and": 3, - "control": 1, - "functions.": 1, - ")": 38, - "xquery": 1, - "version": 1, - "encoding": 1, - ";": 25, - "module": 6, - "namespace": 8, - "xproc": 17, - "declare": 24, - "namespaces": 5, - "p": 2, - "c": 1, - "err": 1, - "imports": 1, - "import": 4, - "util": 1, - "at": 4, - "const": 1, - "parse": 8, - "u": 2, - "options": 2, - "boundary": 1, - "space": 1, - "preserve": 1, - "option": 1, - "saxon": 1, - "output": 1, - "functions": 1, - "variable": 13, - "run": 2, - "run#6": 1, - "choose": 1, - "try": 1, - "catch": 1, - "group": 1, - "for": 1, - "each": 1, - "viewport": 1, - "library": 1, - "pipeline": 8, - "list": 1, - "all": 1, - "declared": 1, - "enum": 3, - "{": 5, - "": 1, - "name=": 1, - "ns": 1, - "": 1, - "}": 5, - "": 1, - "": 1, - "point": 1, - "stdin": 1, - "dflag": 1, - "tflag": 1, - "bindings": 2, - "STEP": 3, - "I": 1, - "preprocess": 1, - "let": 6, - "validate": 1, - "explicit": 3, - "AST": 2, - "name": 1, - "type": 1, - "ast": 1, - "element": 1, - "parse/@*": 1, - "sort": 1, - "parse/*": 1, - "II": 1, - "eval_result": 1, - "III": 1, - "serialize": 1, - "return": 2, - "results": 1, - "serialized_result": 2 - }, - "XSLT": { - "": 1, - "version=": 2, - "": 1, - "xmlns": 1, - "xsl=": 1, - "": 1, - "match=": 1, - "": 1, - "": 1, - "

    ": 1, - "My": 1, - "CD": 1, - "Collection": 1, - "

    ": 1, - "": 1, - "border=": 1, - "": 2, - "bgcolor=": 1, - "": 2, - "Artist": 1, - "": 2, - "": 1, - "select=": 3, - "": 2, - "": 1, - "
    ": 2, - "Title": 1, - "
    ": 2, - "": 2, - "
    ": 1, - "": 1, - "": 1, - "
    ": 1, - "
    ": 1 - }, - "Xojo": { - "#tag": 88, - "Class": 3, - "Protected": 1, - "App": 1, - "Inherits": 1, - "Application": 1, - "Constant": 3, - "Name": 31, - "kEditClear": 1, - "Type": 34, - "String": 3, - "Dynamic": 3, - "False": 14, - "Default": 9, - "Scope": 4, - "Public": 3, - "#Tag": 5, - "Instance": 5, - "Platform": 5, - "Windows": 2, - "Language": 5, - "Definition": 5, - "Linux": 2, - "EndConstant": 3, - "kFileQuit": 1, - "kFileQuitShortcut": 1, - "Mac": 1, - "OS": 1, - "ViewBehavior": 2, - "EndViewBehavior": 2, - "End": 27, - "EndClass": 1, - "Report": 2, - "Begin": 23, - "BillingReport": 1, - "Compatibility": 2, - "Units": 1, - "Width": 3, - "PageHeader": 1, - "Height": 5, - "Body": 1, - "PageFooter": 1, - "EndReport": 1, - "ReportCode": 1, - "EndReportCode": 1, - "Dim": 3, - "dbFile": 3, - "As": 4, - "FolderItem": 1, - "db": 1, - "New": 1, - "SQLiteDatabase": 1, - "GetFolderItem": 1, - "(": 7, - ")": 7, - "db.DatabaseFile": 1, - "If": 4, - "db.Connect": 1, - "Then": 1, - "db.SQLExecute": 2, - "_": 1, - "+": 5, - "db.Error": 1, - "then": 1, - "MsgBox": 3, - "db.ErrorMessage": 2, - "db.Rollback": 1, - "Else": 2, - "db.Commit": 1, - "Menu": 2, - "MainMenuBar": 1, - "MenuItem": 11, - "FileMenu": 1, - "SpecialMenu": 13, - "Text": 13, - "Index": 14, - "-": 14, - "AutoEnable": 13, - "True": 46, - "Visible": 41, - "QuitMenuItem": 1, - "FileQuit": 1, - "ShortcutKey": 6, - "Shortcut": 6, - "EditMenu": 1, - "EditUndo": 1, - "MenuModifier": 5, - "EditSeparator1": 1, - "EditCut": 1, - "EditCopy": 1, - "EditPaste": 1, - "EditClear": 1, - "EditSeparator2": 1, - "EditSelectAll": 1, - "UntitledSeparator": 1, - "AppleMenuItem": 1, - "AboutItem": 1, - "EndMenu": 1, - "Toolbar": 2, - "MyToolbar": 1, - "ToolButton": 2, - "FirstItem": 1, - "Caption": 3, - "HelpTag": 3, - "Style": 2, - "SecondItem": 1, - "EndToolbar": 1, - "Window": 2, - "Window1": 1, - "BackColor": 1, - "&": 1, - "cFFFFFF00": 1, - "Backdrop": 1, - "CloseButton": 1, - "Composite": 1, - "Frame": 1, - "FullScreen": 1, - "FullScreenButton": 1, - "HasBackColor": 1, - "ImplicitInstance": 1, - "LiveResize": 1, - "MacProcID": 1, - "MaxHeight": 1, - "MaximizeButton": 1, - "MaxWidth": 1, - "MenuBar": 1, - "MenuBarVisible": 1, - "MinHeight": 1, - "MinimizeButton": 1, - "MinWidth": 1, - "Placement": 1, - "Resizeable": 1, - "Title": 1, - "PushButton": 1, - "HelloWorldButton": 2, - "AutoDeactivate": 1, - "Bold": 1, - "ButtonStyle": 1, - "Cancel": 1, - "Enabled": 1, - "InitialParent": 1, - "Italic": 1, - "Left": 1, - "LockBottom": 1, - "LockedInPosition": 1, - "LockLeft": 1, - "LockRight": 1, - "LockTop": 1, - "TabIndex": 1, - "TabPanelIndex": 1, - "TabStop": 1, - "TextFont": 1, - "TextSize": 1, - "TextUnit": 1, - "Top": 1, - "Underline": 1, - "EndWindow": 1, - "WindowCode": 1, - "EndWindowCode": 1, - "Events": 1, - "Event": 1, - "Sub": 2, - "Action": 1, - "total": 4, - "Integer": 2, - "For": 1, - "i": 2, - "To": 1, - "Next": 1, - "Str": 1, - "EndEvent": 1, - "EndEvents": 1, - "ViewProperty": 28, - "true": 26, - "Group": 28, - "InitialValue": 23, - "EndViewProperty": 28, - "EditorType": 14, - "EnumValues": 2, - "EndEnumValues": 2 - }, - "Xtend": { - "package": 2, - "example2": 1, - "import": 7, - "org.junit.Test": 2, - "static": 4, - "org.junit.Assert.*": 2, - "class": 4, - "BasicExpressions": 2, - "{": 14, - "@Test": 7, - "def": 7, - "void": 7, - "literals": 5, - "(": 42, - ")": 42, - "//": 11, - "string": 1, - "work": 1, - "with": 2, - "single": 1, - "or": 1, - "double": 2, - "quotes": 1, - "assertEquals": 14, - "number": 1, - "big": 1, - "decimals": 1, - "in": 2, - "this": 1, - "case": 1, - "+": 6, - "*": 1, - "bd": 3, - "boolean": 1, - "true": 1, - "false": 1, - "getClass": 1, - "typeof": 1, - "}": 13, - "collections": 2, - "There": 1, - "are": 1, - "various": 1, - "methods": 2, - "to": 1, - "create": 1, - "and": 1, - "numerous": 1, - "extension": 2, - "which": 1, - "make": 1, - "working": 1, - "them": 1, - "convenient.": 1, - "val": 9, - "list": 1, - "newArrayList": 2, - "list.map": 1, - "[": 9, - "toUpperCase": 1, - "]": 9, - ".head": 1, - "set": 1, - "newHashSet": 1, - "set.filter": 1, - "it": 2, - ".size": 2, - "map": 1, - "newHashMap": 1, - "-": 5, - "map.get": 1, - "controlStructures": 1, - "looks": 1, - "like": 1, - "Java": 1, - "if": 1, - ".length": 1, - "but": 1, - "foo": 1, - "bar": 1, - "Never": 2, - "happens": 3, - "text": 2, - "never": 1, - "s": 1, - "cascades.": 1, - "Object": 1, - "someValue": 2, - "switch": 1, - "Number": 1, - "String": 2, - "loops": 1, - "for": 2, - "loop": 2, - "var": 1, - "counter": 8, - "i": 4, - "..": 1, - "while": 2, - "iterator": 1, - ".iterator": 2, - "iterator.hasNext": 1, - "iterator.next": 1, - "example6": 1, - "java.io.FileReader": 1, - "java.util.Set": 1, - "com.google.common.io.CharStreams.*": 1, - "Movies": 1, - "numberOfActionMovies": 1, - "movies.filter": 2, - "categories.contains": 1, - "yearOfBestMovieFrom80ies": 1, - ".contains": 1, - "year": 2, - ".sortBy": 1, - "rating": 3, - ".last.year": 1, - "sumOfVotesOfTop2": 1, - "long": 2, - "movies": 3, - "movies.sortBy": 1, - ".take": 1, - ".map": 1, - "numberOfVotes": 2, - ".reduce": 1, - "a": 2, - "b": 2, - "|": 2, - "_229": 1, - "new": 2, - "FileReader": 1, - ".readLines.map": 1, - "line": 1, - "segments": 1, - "line.split": 1, - "return": 1, - "Movie": 2, - "segments.next": 4, - "Integer": 1, - "parseInt": 1, - "Double": 1, - "parseDouble": 1, - "Long": 1, - "parseLong": 1, - "segments.toSet": 1, - "@Data": 1, - "title": 1, - "int": 1, - "Set": 1, - "": 1, - "categories": 1 - }, - "YAML": { - "gem": 1, - "-": 25, - "local": 1, - "gen": 1, - "rdoc": 2, - "run": 1, - "tests": 1, - "inline": 1, - "source": 1, - "line": 1, - "numbers": 1, - "gempath": 1, - "/usr/local/rubygems": 1, - "/home/gavin/.rubygems": 1, - "http_interactions": 1, - "request": 1, - "method": 1, - "get": 1, - "uri": 1, - "http": 1, - "//example.com/": 1, - "body": 3, - "headers": 2, - "{": 1, - "}": 1, - "response": 2, - "status": 1, - "code": 1, - "message": 1, - "OK": 1, - "Content": 2, - "Type": 1, - "text/html": 1, - ";": 1, - "charset": 1, - "utf": 1, - "Length": 1, - "This": 1, - "is": 1, - "the": 1, - "http_version": 1, - "recorded_at": 1, - "Tue": 1, - "Nov": 1, - "GMT": 1, - "recorded_with": 1, - "VCR": 1 - }, - "Zephir": { - "%": 10, - "{": 58, - "#define": 1, - "MAX_FACTOR": 3, - "}": 52, - "namespace": 4, - "Test": 4, - ";": 91, - "#include": 9, - "static": 1, - "long": 3, - "fibonacci": 4, - "(": 59, - "n": 5, - ")": 57, - "if": 39, - "<": 2, - "return": 26, - "else": 11, - "-": 25, - "+": 5, - "class": 3, - "Cblock": 1, - "public": 22, - "function": 22, - "testCblock1": 1, - "int": 3, - "a": 6, - "testCblock2": 1, - "#ifdef": 1, - "HAVE_CONFIG_H": 1, - "#endif": 1, - "": 1, - "": 1, - "": 1, - "": 1, - "ZEPHIR_INIT_CLASS": 2, - "Test_Router_Exception": 2, - "ZEPHIR_REGISTER_CLASS_EX": 1, - "Router": 3, - "Exception": 4, - "test": 1, - "router_exception": 1, - "zend_exception_get_default": 1, - "TSRMLS_C": 1, - "NULL": 1, - "SUCCESS": 1, - "extern": 1, - "zend_class_entry": 1, - "*test_router_exception_ce": 1, - "php": 1, - "extends": 1, - "Route": 1, - "protected": 9, - "_pattern": 3, - "_compiledPattern": 3, - "_paths": 3, - "_methods": 5, - "_hostname": 3, - "_converters": 3, - "_id": 2, - "_name": 3, - "_beforeMatch": 3, - "__construct": 1, - "pattern": 37, - "paths": 7, - "null": 11, - "httpMethods": 6, - "this": 28, - "reConfigure": 2, - "let": 51, - "compilePattern": 2, - "var": 4, - "idPattern": 6, - "memstr": 10, - "str_replace": 6, - ".": 5, - "via": 1, - "extractNamedParams": 2, - "string": 6, - "char": 1, - "ch": 27, - "tmp": 4, - "matches": 5, - "boolean": 1, - "notValid": 5, - "false": 3, - "cursor": 4, - "cursorVar": 5, - "marker": 4, - "bracketCount": 7, - "parenthesesCount": 5, - "foundPattern": 6, - "intermediate": 4, - "numberMatches": 4, - "route": 12, - "item": 7, - "variable": 5, - "regexp": 7, - "strlen": 1, - "<=>": 5, - "0": 9, - "for": 4, - "in": 4, - "1": 3, - "substr": 3, - "break": 9, - "&&": 6, - "z": 2, - "Z": 2, - "true": 2, - "<='9')>": 1, - "_": 1, - "2": 2, - "continue": 1, - "[": 14, - "]": 14, - "moduleName": 5, - "controllerName": 7, - "actionName": 4, - "parts": 9, - "routePaths": 5, - "realClassName": 1, - "namespaceName": 1, - "pcrePattern": 4, - "compiledPattern": 4, - "extracted": 4, - "typeof": 2, - "throw": 1, - "new": 1, - "explode": 1, - "switch": 1, - "count": 1, - "case": 3, - "controller": 1, - "action": 1, - "array": 1, - "The": 1, - "contains": 1, - "invalid": 1, - "#": 1, - "array_merge": 1, - "//Update": 1, - "the": 1, - "s": 1, - "name": 5, - "*": 2, - "@return": 1, - "*/": 1, - "getName": 1, - "setName": 1, - "beforeMatch": 1, - "callback": 2, - "getBeforeMatch": 1, - "getRouteId": 1, - "getPattern": 1, - "getCompiledPattern": 1, - "getPaths": 1, - "getReversedPaths": 1, - "reversed": 4, - "path": 3, - "position": 3, - "setHttpMethods": 1, - "getHttpMethods": 1, - "setHostname": 1, - "hostname": 2, - "getHostname": 1, - "convert": 1, - "converter": 2, - "getConverters": 1 - }, - "Zimpl": { - "#": 2, - "param": 1, - "columns": 2, - ";": 7, - "set": 3, - "I": 3, - "{": 2, - "..": 1, - "}": 2, - "IxI": 6, - "*": 2, - "TABU": 4, - "[": 8, - "": 3, - "in": 5, - "]": 8, - "": 2, - "with": 1, - "(": 6, - "m": 4, - "i": 8, - "or": 3, - "n": 4, - "j": 8, - ")": 6, - "and": 1, - "abs": 2, - "-": 3, - "var": 1, - "x": 4, - "binary": 1, - "maximize": 1, - "queens": 1, - "sum": 2, - "subto": 1, - "c1": 1, - "forall": 1, - "do": 1, - "card": 2 - }, - "edn": { - "[": 24, - "{": 22, - "db/id": 22, - "#db/id": 22, - "db.part/db": 6, - "]": 24, - "db/ident": 3, - "object/name": 18, - "db/doc": 4, - "db/valueType": 3, - "db.type/string": 2, - "db/index": 3, - "true": 3, - "db/cardinality": 3, - "db.cardinality/one": 3, - "db.install/_attribute": 3, - "}": 22, - "object/meanRadius": 18, - "db.type/double": 1, - "data/source": 2, - "db.part/tx": 2, - "db.part/user": 17 - }, - "fish": { - "#": 18, - "set": 49, - "-": 102, - "g": 1, - "IFS": 4, - "n": 5, - "t": 2, - "l": 15, - "configdir": 2, - "/.config": 1, - "if": 21, - "q": 9, - "XDG_CONFIG_HOME": 2, - "end": 33, - "not": 8, - "fish_function_path": 4, - "configdir/fish/functions": 1, - "__fish_sysconfdir/functions": 1, - "__fish_datadir/functions": 3, - "contains": 4, - "[": 13, - "]": 13, - "fish_complete_path": 4, - "configdir/fish/completions": 1, - "__fish_sysconfdir/completions": 1, - "__fish_datadir/completions": 3, - "test": 7, - "d": 3, - "/usr/xpg4/bin": 3, - "PATH": 6, - "path_list": 4, - "/bin": 1, - "/usr/bin": 1, - "/usr/X11R6/bin": 1, - "/usr/local/bin": 1, - "__fish_bin_dir": 1, - "switch": 3, - "USER": 1, - "case": 9, - "root": 1, - "/sbin": 1, - "/usr/sbin": 1, - "/usr/local/sbin": 1, - "for": 1, - "i": 5, - "in": 2, - "function": 6, - "fish_sigtrap_handler": 1, - "on": 2, - "signal": 1, - "TRAP": 1, - "no": 2, - "scope": 1, - "shadowing": 1, - "description": 2, - "breakpoint": 1, - "__fish_on_interactive": 2, - "event": 1, - "fish_prompt": 1, - "__fish_config_interactive": 1, - "functions": 5, - "e": 6, - "eval": 5, - "S": 1, - "If": 2, - "we": 2, - "are": 1, - "an": 1, - "interactive": 8, - "shell": 1, - "should": 2, - "enable": 1, - "full": 4, - "job": 5, - "control": 5, - "since": 1, - "it": 1, - "behave": 1, - "like": 2, - "the": 1, - "real": 1, - "code": 1, - "was": 1, - "executed.": 1, - "don": 1, - "do": 1, - "this": 1, - "commands": 1, - "that": 1, - "expect": 1, - "to": 1, - "be": 1, - "used": 1, - "interactively": 1, - "less": 1, - "wont": 1, - "work": 1, - "using": 1, - "eval.": 1, - "mode": 5, - "status": 7, - "is": 3, - "else": 3, - "none": 1, - "echo": 3, - "|": 3, - ".": 2, - "<": 1, - "&": 1, - "res": 2, - "return": 6, - "funced": 3, - "editor": 7, - "EDITOR": 1, - "funcname": 14, - "while": 2, - "argv": 9, - "h": 1, - "help": 1, - "__fish_print_help": 1, - "set_color": 4, - "red": 2, - "printf": 3, - "(": 7, - "_": 3, - ")": 7, - "normal": 2, - "begin": 2, - ";": 7, - "or": 3, - "init": 5, - "nend": 2, - "editor_cmd": 2, - "type": 1, - "f": 3, - "/dev/null": 2, - "fish": 3, - "z": 1, - "fish_indent": 2, - "indent": 1, - "prompt": 2, - "read": 1, - "p": 1, - "c": 1, - "s": 1, - "cmd": 2, - "TMPDIR": 2, - "/tmp": 1, - "tmpname": 8, - "%": 2, - "self": 2, - "random": 2, - "stat": 2, - "rm": 1 - }, - "wisp": { - ";": 199, - "#": 2, - "wisp": 6, - "Wisp": 13, - "is": 20, - "homoiconic": 1, - "JS": 17, - "dialect": 1, - "with": 6, - "a": 24, - "clojure": 2, - "syntax": 2, - "s": 7, - "-": 33, - "expressions": 6, - "and": 9, - "macros.": 1, - "code": 3, - "compiles": 1, - "to": 21, - "human": 1, - "readable": 1, - "javascript": 1, - "which": 3, - "one": 3, - "of": 16, - "they": 3, - "key": 3, - "differences": 1, - "from": 2, - "clojurescript.": 1, - "##": 2, - "data": 1, - "structures": 1, - "nil": 4, - "just": 3, - "like": 2, - "js": 1, - "undefined": 1, - "differenc": 1, - "that": 7, - "it": 10, - "shortcut": 1, - "for": 5, - "void": 2, - "(": 77, - ")": 75, - "in": 16, - "JS.": 2, - "Booleans": 1, - "booleans": 2, - "true": 6, - "/": 1, - "false": 2, - "are": 14, - "Numbers": 1, - "numbers": 2, - "Strings": 2, - "strings": 3, - "can": 13, - "be": 15, - "multiline": 1, - "Characters": 2, - "sugar": 1, - "single": 1, - "char": 1, - "Keywords": 3, - "symbolic": 2, - "identifiers": 2, - "evaluate": 2, - "themselves.": 1, - "keyword": 1, - "Since": 1, - "string": 1, - "constats": 1, - "fulfill": 1, - "this": 2, - "purpose": 2, - "keywords": 1, - "compile": 3, - "equivalent": 2, - "strings.": 1, - "window.addEventListener": 1, - "load": 1, - "handler": 1, - "invoked": 2, - "as": 4, - "functions": 8, - "desugars": 1, - "plain": 2, - "associated": 2, - "value": 2, - "access": 1, - "bar": 4, - "foo": 6, - "[": 22, - "]": 22, - "Vectors": 1, - "vectors": 1, - "arrays.": 1, - "Note": 3, - "Commas": 2, - "white": 1, - "space": 1, - "&": 6, - "used": 1, - "if": 7, - "desired": 1, - "Maps": 2, - "hash": 1, - "maps": 1, - "objects.": 1, - "unlike": 1, - "keys": 1, - "not": 4, - "arbitary": 1, - "types.": 1, - "{": 4, - "beep": 1, - "bop": 1, - "}": 4, - "optional": 2, - "but": 7, - "come": 1, - "handy": 1, - "separating": 1, - "pairs.": 1, - "b": 5, - "In": 5, - "future": 2, - "JSONs": 1, - "may": 1, - "made": 2, - "compatible": 1, - "map": 3, - "syntax.": 1, - "Lists": 1, - "You": 1, - "up": 1, - "lists": 1, - "representing": 1, - "expressions.": 1, - "The": 1, - "first": 4, - "item": 2, - "the": 9, - "expression": 6, - "function": 7, - "being": 1, - "rest": 7, - "items": 2, - "arguments.": 2, - "baz": 2, - "Conventions": 1, - "puts": 1, - "lot": 2, - "effort": 1, - "making": 1, - "naming": 1, - "conventions": 3, - "transparent": 1, - "by": 2, - "encouraning": 1, - "lisp": 1, - "then": 1, - "translating": 1, - "them": 1, - "dash": 1, - "delimited": 1, - "dashDelimited": 1, - "predicate": 1, - "isPredicate": 1, - "__privates__": 1, - "list": 2, - "vector": 1, - "listToVector": 1, - "As": 1, - "side": 2, - "effect": 1, - "some": 2, - "names": 1, - "expressed": 3, - "few": 1, - "ways": 1, - "although": 1, - "third": 2, - "expression.": 1, - "<": 1, - "number": 3, - "Else": 1, - "missing": 1, - "conditional": 1, - "evaluates": 2, - "result": 2, - "will": 6, - ".": 6, - "monday": 1, - "today": 1, - "Compbining": 1, - "everything": 1, - "an": 1, - "sometimes": 1, - "might": 1, - "want": 2, - "compbine": 1, - "multiple": 1, - "into": 2, - "usually": 3, - "evaluating": 1, - "have": 2, - "effects": 1, - "do": 4, - "console.log": 2, - "+": 9, - "Also": 1, - "special": 4, - "form": 10, - "many.": 1, - "If": 2, - "evaluation": 1, - "nil.": 1, - "Bindings": 1, - "Let": 1, - "containing": 1, - "lexical": 1, - "context": 1, - "simbols": 1, - "bindings": 1, - "forms": 1, - "bound": 1, - "their": 2, - "respective": 1, - "results.": 1, - "let": 2, - "c": 1, - "Functions": 1, - "fn": 15, - "x": 22, - "named": 1, - "similar": 2, - "increment": 1, - "also": 2, - "contain": 1, - "documentation": 1, - "metadata.": 1, - "Docstring": 1, - "metadata": 1, - "presented": 1, - "compiled": 2, - "yet": 1, - "comments": 1, - "function.": 1, - "incerement": 1, - "added": 1, - "makes": 1, - "capturing": 1, - "arguments": 7, - "easier": 1, - "than": 1, - "argument": 1, - "follows": 1, - "simbol": 1, - "capture": 1, - "all": 4, - "args": 1, - "array.": 1, - "rest.reduce": 1, - "sum": 3, - "Overloads": 1, - "overloaded": 1, - "depending": 1, - "on": 1, - "take": 2, - "without": 2, - "introspection": 1, - "version": 1, - "y": 6, - "more": 3, - "more.reduce": 1, - "does": 1, - "has": 2, - "variadic": 1, - "overload": 1, - "passed": 1, - "throws": 1, - "exception.": 1, - "Other": 1, - "Special": 1, - "Forms": 1, - "Instantiation": 1, - "type": 2, - "instantiation": 1, - "consice": 1, - "needs": 1, - "suffixed": 1, - "character": 1, - "Type.": 1, - "options": 2, - "More": 1, - "verbose": 1, - "there": 1, - "new": 2, - "Class": 1, - "Method": 1, - "calls": 3, - "method": 2, - "no": 1, - "different": 1, - "Any": 1, - "quoted": 1, - "prevent": 1, - "doesn": 1, - "t": 1, - "unless": 5, - "or": 2, - "macro": 7, - "try": 1, - "implemting": 1, - "understand": 1, - "use": 2, - "case": 1, - "We": 1, - "execute": 1, - "body": 4, - "condition": 4, - "defn": 2, - "Although": 1, - "following": 2, - "log": 1, - "anyway": 1, - "since": 1, - "exectued": 1, - "before": 1, - "called.": 1, - "Macros": 2, - "solve": 1, - "problem": 1, - "because": 1, - "immediately.": 1, - "Instead": 1, - "you": 1, - "get": 2, - "choose": 1, - "when": 1, - "evaluated.": 1, - "return": 1, - "instead.": 1, - "defmacro": 3, - "less": 1, - "how": 1, - "build": 1, - "implemented.": 1, - "define": 4, - "name": 2, - "def": 1, - "@body": 1, - "Now": 1, - "we": 2, - "above": 1, - "defined": 1, - "expanded": 2, - "time": 1, - "resulting": 1, - "diff": 1, - "program": 1, - "output.": 1, - "print": 1, - "message": 2, - ".log": 1, - "console": 1, - "Not": 1, - "macros": 2, - "via": 2, - "templating": 1, - "language": 1, - "available": 1, - "at": 1, - "hand": 1, - "assemble": 1, - "form.": 1, - "For": 2, - "instance": 1, - "ease": 1, - "functional": 1, - "chanining": 1, - "popular": 1, - "chaining.": 1, - "example": 1, - "API": 1, - "pioneered": 1, - "jQuery": 1, - "very": 2, - "common": 1, - "open": 2, - "target": 1, - "keypress": 2, - "filter": 2, - "isEnterKey": 1, - "getInputText": 1, - "reduce": 3, - "render": 2, - "Unfortunately": 1, - "though": 1, - "requires": 1, - "need": 1, - "methods": 1, - "dsl": 1, - "object": 1, - "limited.": 1, - "Making": 1, - "party": 1, - "second": 1, - "class.": 1, - "Via": 1, - "achieve": 1, - "chaining": 1, - "such": 1, - "tradeoffs.": 1, - "operations": 3, - "operation": 3, - "cons": 2, - "tagret": 1, - "enter": 1, - "input": 1, - "text": 1 - } - }, - "language_tokens": { - "ABAP": 1500, - "AGS Script": 2717, - "APL": 42, - "ATS": 4558, - "Agda": 376, - "Alloy": 1143, - "ApacheConf": 1449, - "Apex": 4408, - "AppleScript": 1862, - "Arduino": 20, - "AsciiDoc": 103, - "AspectJ": 324, - "Assembly": 743, - "AutoHotkey": 3, - "Awk": 544, - "BlitzBasic": 2065, - "BlitzMax": 40, - "Bluespec": 1298, - "Brightscript": 579, - "C": 59053, - "C#": 278, - "C++": 34739, - "COBOL": 90, - "CSS": 43867, - "Ceylon": 50, - "Chapel": 9607, - "Cirru": 244, - "Clojure": 1899, - "CoffeeScript": 2951, - "ColdFusion": 131, - "ColdFusion CFC": 611, - "Common Lisp": 2186, - "Component Pascal": 825, - "Coq": 18259, - "Creole": 134, - "Crystal": 1506, - "Cuda": 290, - "Cycript": 251, - "DM": 169, - "Dart": 74, - "Diff": 16, - "Dogescript": 30, - "E": 601, - "ECL": 281, - "Eagle": 30089, - "Elm": 628, - "Emacs Lisp": 1756, - "EmberScript": 45, - "Erlang": 2928, - "Forth": 1516, - "Frege": 5564, - "G-code": 432, - "GAMS": 363, - "GAP": 9944, - "GAS": 133, - "GDScript": 1958, - "GLSL": 4076, - "Game Maker Language": 13310, - "Gnuplot": 1023, - "Gosu": 410, - "Grace": 1381, - "Grammatical Framework": 10607, - "Groovy": 93, - "Groovy Server Pages": 91, - "HTML": 413, - "HTML+ERB": 213, - "Haml": 121, - "Handlebars": 69, - "Haskell": 302, - "Hy": 155, - "IDL": 418, - "IGOR Pro": 97, - "INI": 27, - "Idris": 148, - "Inform 7": 75, - "Ioke": 2, - "Isabelle": 136, - "JSON": 183, - "JSON5": 57, - "JSONLD": 18, - "JSONiq": 151, - "Jade": 3, - "Java": 8987, - "JavaScript": 77056, - "Julia": 247, - "KRL": 25, - "Kit": 6, - "Kotlin": 155, - "LFE": 1711, - "LSL": 198, - "Lasso": 9849, - "Latte": 759, - "Less": 39, - "Liquid": 633, - "Literate Agda": 478, - "Literate CoffeeScript": 275, - "LiveScript": 123, - "Logos": 93, - "Logtalk": 36, - "LookML": 99, - "Lua": 724, - "M": 23615, - "MTML": 93, - "Makefile": 50, - "Markdown": 1, - "Mask": 74, - "Mathematica": 1857, - "Matlab": 11942, - "Max": 714, - "MediaWiki": 766, - "Mercury": 31096, - "Monkey": 207, - "Moocode": 5234, - "MoonScript": 1718, - "NSIS": 725, - "Nemerle": 17, - "NetLogo": 243, - "Nginx": 179, - "Nimrod": 1, - "Nit": 5282, - "Nix": 188, - "Nu": 116, - "OCaml": 382, - "Objective-C": 26518, - "Objective-C++": 6021, - "Omgrofl": 57, - "Opa": 28, - "Opal": 32, - "OpenCL": 144, - "OpenEdge ABL": 762, - "OpenSCAD": 67, - "Org": 358, - "Ox": 1006, - "Oxygene": 157, - "PAWN": 3263, - "PHP": 20754, - "Pan": 130, - "Parrot Assembly": 6, - "Parrot Internal Representation": 5, - "Pascal": 30, - "Perl": 20690, - "Perl6": 372, - "PigLatin": 30, - "Pike": 1835, - "Pod": 658, - "PogoScript": 250, - "PostScript": 107, - "PowerShell": 12, - "Processing": 74, - "Prolog": 6948, - "Propeller Spin": 13519, - "Protocol Buffer": 63, - "PureScript": 1652, - "Python": 6725, - "QMake": 119, - "R": 1790, - "RDoc": 279, - "RMarkdown": 19, - "Racket": 331, - "Ragel in Ruby Host": 593, - "Rebol": 533, - "Red": 816, - "RobotFramework": 483, - "Ruby": 3893, - "Rust": 3566, - "SAS": 93, - "SCSS": 39, - "SQF": 196, - "SQL": 1485, - "STON": 100, - "Sass": 56, - "Scala": 750, - "Scaml": 4, - "Scheme": 3515, - "Scilab": 69, - "Shell": 3801, - "ShellSession": 233, - "Shen": 3472, - "Slash": 187, - "Slim": 77, - "Smalltalk": 423, - "SourcePawn": 2080, - "Squirrel": 130, - "Standard ML": 6567, - "Stata": 3133, - "Stylus": 76, - "SuperCollider": 133, - "Swift": 1128, - "SystemVerilog": 541, - "TXL": 213, - "Tcl": 1133, - "TeX": 8549, - "Tea": 3, - "Turing": 44, - "TypeScript": 109, - "UnrealScript": 2873, - "VCL": 545, - "VHDL": 42, - "Verilog": 3778, - "VimL": 20, - "Visual Basic": 581, - "Volt": 388, - "XC": 24, - "XML": 8236, - "XProc": 22, - "XQuery": 801, - "XSLT": 44, - "Xojo": 807, - "Xtend": 399, - "YAML": 77, - "Zephir": 1085, - "Zimpl": 123, - "edn": 227, - "fish": 636, - "wisp": 1363 - }, - "languages": { - "ABAP": 1, - "AGS Script": 4, - "APL": 1, - "ATS": 10, - "Agda": 1, - "Alloy": 3, - "ApacheConf": 3, - "Apex": 6, - "AppleScript": 7, - "Arduino": 1, - "AsciiDoc": 3, - "AspectJ": 2, - "Assembly": 1, - "AutoHotkey": 1, - "Awk": 1, - "BlitzBasic": 3, - "BlitzMax": 1, - "Bluespec": 2, - "Brightscript": 1, - "C": 29, - "C#": 2, - "C++": 29, - "COBOL": 4, - "CSS": 2, - "Ceylon": 1, - "Chapel": 5, - "Cirru": 9, - "Clojure": 8, - "CoffeeScript": 9, - "ColdFusion": 1, - "ColdFusion CFC": 2, - "Common Lisp": 3, - "Component Pascal": 2, - "Coq": 12, - "Creole": 1, - "Crystal": 3, - "Cuda": 2, - "Cycript": 1, - "DM": 1, - "Dart": 1, - "Diff": 1, - "Dogescript": 1, - "E": 6, - "ECL": 1, - "Eagle": 2, - "Elm": 3, - "Emacs Lisp": 2, - "EmberScript": 1, - "Erlang": 5, - "Forth": 7, - "Frege": 4, - "G-code": 4, - "GAMS": 1, - "GAP": 7, - "GAS": 1, - "GDScript": 4, - "GLSL": 7, - "Game Maker Language": 13, - "Gnuplot": 6, - "Gosu": 4, - "Grace": 2, - "Grammatical Framework": 41, - "Groovy": 5, - "Groovy Server Pages": 4, - "HTML": 2, - "HTML+ERB": 2, - "Haml": 2, - "Handlebars": 2, - "Haskell": 3, - "Hy": 2, - "IDL": 4, - "IGOR Pro": 2, - "INI": 2, - "Idris": 1, - "Inform 7": 2, - "Ioke": 1, - "Isabelle": 1, - "JSON": 4, - "JSON5": 2, - "JSONLD": 1, - "JSONiq": 2, - "Jade": 1, - "Java": 6, - "JavaScript": 24, - "Julia": 1, - "KRL": 1, - "Kit": 1, - "Kotlin": 1, - "LFE": 4, - "LSL": 1, - "Lasso": 4, - "Latte": 2, - "Less": 1, - "Liquid": 2, - "Literate Agda": 1, - "Literate CoffeeScript": 1, - "LiveScript": 1, - "Logos": 1, - "Logtalk": 1, - "LookML": 1, - "Lua": 3, - "M": 29, - "MTML": 1, - "Makefile": 2, - "Markdown": 1, - "Mask": 1, - "Mathematica": 6, - "Matlab": 39, - "Max": 3, - "MediaWiki": 1, - "Mercury": 9, - "Monkey": 1, - "Moocode": 3, - "MoonScript": 1, - "NSIS": 2, - "Nemerle": 1, - "NetLogo": 1, - "Nginx": 1, - "Nimrod": 1, - "Nit": 22, - "Nix": 1, - "Nu": 2, - "OCaml": 2, - "Objective-C": 19, - "Objective-C++": 2, - "Omgrofl": 1, - "Opa": 2, - "Opal": 1, - "OpenCL": 2, - "OpenEdge ABL": 5, - "OpenSCAD": 2, - "Org": 1, - "Ox": 3, - "Oxygene": 1, - "PAWN": 1, - "PHP": 10, - "Pan": 1, - "Parrot Assembly": 1, - "Parrot Internal Representation": 1, - "Pascal": 1, - "Perl": 17, - "Perl6": 3, - "PigLatin": 1, - "Pike": 2, - "Pod": 1, - "PogoScript": 1, - "PostScript": 1, - "PowerShell": 2, - "Processing": 1, - "Prolog": 8, - "Propeller Spin": 10, - "Protocol Buffer": 1, - "PureScript": 4, - "Python": 11, - "QMake": 4, - "R": 7, - "RDoc": 1, - "RMarkdown": 1, - "Racket": 2, - "Ragel in Ruby Host": 3, - "Rebol": 6, - "Red": 2, - "RobotFramework": 3, - "Ruby": 18, - "Rust": 1, - "SAS": 2, - "SCSS": 1, - "SQF": 2, - "SQL": 5, - "STON": 7, - "Sass": 2, - "Scala": 4, - "Scaml": 1, - "Scheme": 2, - "Scilab": 3, - "Shell": 38, - "ShellSession": 3, - "Shen": 3, - "Slash": 1, - "Slim": 1, - "Smalltalk": 3, - "SourcePawn": 1, - "Squirrel": 1, - "Standard ML": 5, - "Stata": 7, - "Stylus": 1, - "SuperCollider": 1, - "Swift": 43, - "SystemVerilog": 4, - "TXL": 1, - "Tcl": 2, - "TeX": 5, - "Tea": 1, - "Turing": 1, - "TypeScript": 3, - "UnrealScript": 2, - "VCL": 2, - "VHDL": 1, - "Verilog": 13, - "VimL": 2, - "Visual Basic": 3, - "Volt": 1, - "XC": 1, - "XML": 14, - "XProc": 1, - "XQuery": 1, - "XSLT": 1, - "Xojo": 6, - "Xtend": 2, - "YAML": 2, - "Zephir": 5, - "Zimpl": 1, - "edn": 1, - "fish": 3, - "wisp": 1 - }, - "md5": "c4591bd0be052bcbb2ab31e06fe4c730" -} \ No newline at end of file From 015af19eaf1067d578bcc1b36a36c8426be1f53f Mon Sep 17 00:00:00 2001 From: Brandon Keepers Date: Tue, 16 Sep 2014 10:18:33 -0400 Subject: [PATCH 257/268] Move `Samples::DATA` constant to `Samples.cache` method --- Rakefile | 2 +- lib/linguist/language.rb | 8 ++++---- lib/linguist/samples.rb | 8 +++++--- test/test_classifier.rb | 6 +++--- test/test_samples.rb | 6 +++--- 5 files changed, 16 insertions(+), 14 deletions(-) diff --git a/Rakefile b/Rakefile index 9c3aa2ee..70f0f787 100644 --- a/Rakefile +++ b/Rakefile @@ -99,7 +99,7 @@ namespace :classifier do next if file_language.nil? || file_language == 'Text' begin data = open(file_url).read - guessed_language, score = Linguist::Classifier.classify(Linguist::Samples::DATA, data).first + guessed_language, score = Linguist::Classifier.classify(Linguist::Samples.cache, data).first total += 1 guessed_language == file_language ? correct += 1 : incorrect += 1 diff --git a/lib/linguist/language.rb b/lib/linguist/language.rb index e9e519b8..9c53eb9d 100644 --- a/lib/linguist/language.rb +++ b/lib/linguist/language.rb @@ -136,7 +136,7 @@ module Linguist elsif (determined = Heuristics.find_by_heuristics(data, possible_language_names)) && !determined.empty? determined.first # Lastly, fall back to the probabilistic classifier. - elsif classified = Classifier.classify(Samples::DATA, data, possible_language_names).first + elsif classified = Classifier.classify(Samples.cache, data, possible_language_names).first # Return the actual Language object based of the string language name (i.e., first element of `#classify`) Language[classified[0]] end @@ -510,9 +510,9 @@ module Linguist end end - extensions = Samples::DATA['extnames'] - interpreters = Samples::DATA['interpreters'] - filenames = Samples::DATA['filenames'] + extensions = Samples.cache['extnames'] + interpreters = Samples.cache['interpreters'] + filenames = Samples.cache['filenames'] popular = YAML.load_file(File.expand_path("../popular.yml", __FILE__)) languages_yml = File.expand_path("../languages.yml", __FILE__) diff --git a/lib/linguist/samples.rb b/lib/linguist/samples.rb index 9a291b2d..920bb87e 100644 --- a/lib/linguist/samples.rb +++ b/lib/linguist/samples.rb @@ -17,9 +17,11 @@ module Linguist PATH = File.expand_path('../samples.json', __FILE__) # Hash of serialized samples object - if File.exist?(PATH) - serializer = defined?(JSON) ? JSON : YAML - DATA = serializer.load(File.read(PATH)) + def self.cache + @cache ||= begin + serializer = defined?(JSON) ? JSON : YAML + serializer.load(File.read(PATH)) + end end # Public: Iterate over each sample. diff --git a/test/test_classifier.rb b/test/test_classifier.rb index 0a477831..87c6feb2 100644 --- a/test/test_classifier.rb +++ b/test/test_classifier.rb @@ -44,12 +44,12 @@ class TestClassifier < Test::Unit::TestCase end def test_instance_classify_empty - results = Classifier.classify(Samples::DATA, "") + results = Classifier.classify(Samples.cache, "") assert results.first[1] < 0.5, results.first.inspect end def test_instance_classify_nil - assert_equal [], Classifier.classify(Samples::DATA, nil) + assert_equal [], Classifier.classify(Samples.cache, nil) end def test_classify_ambiguous_languages @@ -58,7 +58,7 @@ class TestClassifier < Test::Unit::TestCase languages = Language.find_by_filename(sample[:path]).map(&:name) next unless languages.length > 1 - results = Classifier.classify(Samples::DATA, File.read(sample[:path]), languages) + results = Classifier.classify(Samples.cache, File.read(sample[:path]), languages) assert_equal language.name, results.first[0], "#{sample[:path]}\n#{results.inspect}" end end diff --git a/test/test_samples.rb b/test/test_samples.rb index 3ee5b64d..899992dd 100644 --- a/test/test_samples.rb +++ b/test/test_samples.rb @@ -8,7 +8,7 @@ class TestSamples < Test::Unit::TestCase include Linguist def test_up_to_date - assert serialized = Samples::DATA + assert serialized = Samples.cache assert latest = Samples.data # Just warn, it shouldn't scare people off by breaking the build. @@ -29,7 +29,7 @@ class TestSamples < Test::Unit::TestCase end def test_verify - assert data = Samples::DATA + assert data = Samples.cache assert_equal data['languages_total'], data['languages'].inject(0) { |n, (_, c)| n += c } assert_equal data['tokens_total'], data['language_tokens'].inject(0) { |n, (_, c)| n += c } @@ -38,7 +38,7 @@ class TestSamples < Test::Unit::TestCase # Check that there aren't samples with extensions that aren't explicitly defined in languages.yml def test_parity - extensions = Samples::DATA['extnames'] + extensions = Samples.cache['extnames'] languages_yml = File.expand_path("../../lib/linguist/languages.yml", __FILE__) languages = YAML.load_file(languages_yml) From e67c1789b833c9cf18200d35b90e8765f5a08c4e Mon Sep 17 00:00:00 2001 From: Brandon Keepers Date: Tue, 16 Sep 2014 10:26:35 -0400 Subject: [PATCH 258/268] Generate samples.json before building gem --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 70f0f787..cebcd9e1 100644 --- a/Rakefile +++ b/Rakefile @@ -16,7 +16,7 @@ task :samples do File.open('lib/linguist/samples.json', 'w') { |io| io.write json } end -task :build_gem do +task :build_gem => :samples do languages = YAML.load_file("lib/linguist/languages.yml") File.write("lib/linguist/languages.json", JSON.dump(languages)) `gem build github-linguist.gemspec` From 3284450dc42de8befd466071185a4224c9a6ab82 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Thu, 18 Sep 2014 13:56:41 -0500 Subject: [PATCH 259/268] Make sure samples.json is present before running tests --- Rakefile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Rakefile b/Rakefile index cebcd9e1..ea6351f4 100644 --- a/Rakefile +++ b/Rakefile @@ -6,8 +6,17 @@ require 'pry' task :default => :test +Rake::Task["test"].enhance [:check_samples] + Rake::TestTask.new +desc "Check that we have samples.json generated" +task :check_samples do + unless File.exist?('lib/linguist/samples.json') + Rake::Task[:samples].invoke + end +end + task :samples do require 'linguist/samples' require 'yajl' From 24a36bf4bba782e080f72cc50a1dc56f07855b4b Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Thu, 18 Sep 2014 14:06:11 -0500 Subject: [PATCH 260/268] Removing docs about generating samples --- README.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/README.md b/README.md index d497e8c2..a51dc919 100644 --- a/README.md +++ b/README.md @@ -102,10 +102,6 @@ We try to only add languages once they have some usage on GitHub, so please note Almost all bug fixes or new language additions should come with some additional code samples. Just drop them under [`samples/`](https://github.com/github/linguist/tree/master/samples) in the correct subdirectory and our test suite will automatically test them. In most cases you shouldn't need to add any new assertions. -To update the `samples.json` after adding new files to [`samples/`](https://github.com/github/linguist/tree/master/samples): - - bundle exec rake samples - ### A note on language extensions Linguist has a number of methods available to it for identifying the language of a particular file. The initial lookup is based upon the extension of the file, possible file extensions are defined in an array called `extensions`. Take a look at this example for example for `Perl`: From f2b377fae892c391c67789e35967db3224760a43 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Thu, 18 Sep 2014 14:07:14 -0500 Subject: [PATCH 261/268] Removing unnecessary Travis build step --- .travis.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index c851f345..7496cfe7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,8 +3,6 @@ before_install: - git fetch origin v2.0.0:v2.0.0 - sudo apt-get install libicu-dev -y - gem update --system 2.1.11 -before_script: - - bundle exec rake samples rvm: - 1.9.3 - 2.0.0 From e21f35039bf362cda09a74cd720076dc9d343472 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Thu, 18 Sep 2014 14:11:08 -0500 Subject: [PATCH 262/268] Is this still needed? --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c851f345..7c497907 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,6 @@ before_install: - git fetch origin master:master - git fetch origin v2.0.0:v2.0.0 - sudo apt-get install libicu-dev -y - - gem update --system 2.1.11 before_script: - bundle exec rake samples rvm: From ca59303dba5b5459e7eb3b0dc2b44fa47db41026 Mon Sep 17 00:00:00 2001 From: Arfon Smith Date: Thu, 18 Sep 2014 14:25:36 -0500 Subject: [PATCH 263/268] Preferred syntax --- Rakefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Rakefile b/Rakefile index ea6351f4..60e3565a 100644 --- a/Rakefile +++ b/Rakefile @@ -6,10 +6,11 @@ require 'pry' task :default => :test -Rake::Task["test"].enhance [:check_samples] - Rake::TestTask.new +# Extend test task to check for samples +task :test => :check_samples + desc "Check that we have samples.json generated" task :check_samples do unless File.exist?('lib/linguist/samples.json') From 92212d26528c009d3a5abe7f83537d85d4fef5ac Mon Sep 17 00:00:00 2001 From: Lars Brinkhoff Date: Fri, 19 Sep 2014 13:51:19 +0200 Subject: [PATCH 264/268] Add Groff sample. --- samples/Groff/sample.4 | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 samples/Groff/sample.4 diff --git a/samples/Groff/sample.4 b/samples/Groff/sample.4 new file mode 100644 index 00000000..061dfc2e --- /dev/null +++ b/samples/Groff/sample.4 @@ -0,0 +1,13 @@ +.TH FOO 1 +.SH NAME +foo \- bar +.SH SYNOPSIS +.B foo +.I bar +.SH DESCRIPTION +Foo bar +.BR baz +quux. +.PP +.B Foo +bar baz. From ebe45e6f37dd66e2ccd436acc35365605e250a88 Mon Sep 17 00:00:00 2001 From: Vivek Galatage Date: Sun, 21 Sep 2014 10:27:54 +0530 Subject: [PATCH 265/268] Adding JavaScript syntax support for JavaScriptBuild (.jsb) files jsb is a meta build system [1] which can generate actual build files for GNU make, ninja, visual studio etc. These files are pure javascript files. Just to differentiate them from rest of the javascript files, these are marked as .jsb file. [1] https://github.com/vivekgalatage/jsb --- lib/linguist/languages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 7923b7da..29aa83e9 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -1163,6 +1163,7 @@ JavaScript: - .es6 - .frag - .jake + - .jsb - .jsfl - .jsm - .jss From d8b4d4639c52885ba30b3148f1f93a90c4dc26b3 Mon Sep 17 00:00:00 2001 From: Vivek Galatage Date: Mon, 22 Sep 2014 00:15:35 +0530 Subject: [PATCH 266/268] Sample JSBuild file showing the usage javascript as scripting language. --- samples/JavaScript/jsbuild.jsb | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 samples/JavaScript/jsbuild.jsb diff --git a/samples/JavaScript/jsbuild.jsb b/samples/JavaScript/jsbuild.jsb new file mode 100644 index 00000000..8d14ff16 --- /dev/null +++ b/samples/JavaScript/jsbuild.jsb @@ -0,0 +1,12 @@ +jsb.library('mylibrary', jsb.STATIC_LIBRARY, function(libObject) { + libObject.outputName = 'mylibrary'; + libObject.cflags = [ '-Wall' ]; + libObject.ldflags = [ '-pthread' ]; + libObject.includePaths = [ 'src/include' ]; + libObject.sources = [ + 'src/main.cpp', + 'src/app.cpp' + ]; +}); + +jsb.build(); From 19b87212257c1956999767cad790205499c807d4 Mon Sep 17 00:00:00 2001 From: Keith Rarick Date: Mon, 22 Sep 2014 00:50:16 -0700 Subject: [PATCH 267/268] Add Go dependencies to vendor.yml and test_blob.rb --- lib/linguist/vendor.yml | 3 +++ test/test_blob.rb | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/lib/linguist/vendor.yml b/lib/linguist/vendor.yml index 270ad593..6c87f10a 100644 --- a/lib/linguist/vendor.yml +++ b/lib/linguist/vendor.yml @@ -33,6 +33,9 @@ # Erlang bundles - ^rebar$ +# Go dependencies +- Godeps/_workspace/ + # Bootstrap minified css and js - (^|/)bootstrap([^.]*)(\.min)?\.(js|css)$ diff --git a/test/test_blob.rb b/test/test_blob.rb index 968abf09..47c6574c 100644 --- a/test/test_blob.rb +++ b/test/test_blob.rb @@ -279,6 +279,10 @@ class TestBlob < Test::Unit::TestCase assert blob("app/bower_components/custom/custom.js").vendored? assert blob("vendor/assets/bower_components/custom/custom.js").vendored? + # Go dependencies + assert !blob("Godeps/Godeps.json").vendored? + assert blob("Godeps/_workspace/src/github.com/kr/s3/sign.go").vendored? + # Rails vendor/ assert blob("vendor/plugins/will_paginate/lib/will_paginate.rb").vendored? From 86aa4c3f3dee731c2462e82f8a2f8d031a6b09b6 Mon Sep 17 00:00:00 2001 From: Keith Rarick Date: Mon, 22 Sep 2014 00:54:54 -0700 Subject: [PATCH 268/268] Add Go dependencies to generated.rb and test_blob.rb --- lib/linguist/generated.rb | 9 +++++++++ test/test_blob.rb | 4 ++++ 2 files changed, 13 insertions(+) diff --git a/lib/linguist/generated.rb b/lib/linguist/generated.rb index 99863a91..0f911c45 100644 --- a/lib/linguist/generated.rb +++ b/lib/linguist/generated.rb @@ -63,6 +63,7 @@ module Linguist generated_jni_header? || composer_lock? || node_modules? || + godeps? || vcr_cassette? || generated_by_zephir? end @@ -231,6 +232,14 @@ module Linguist !!name.match(/node_modules\//) end + # Internal: Is the blob part of Godeps/, + # which are not meant for humans in pull requests. + # + # Returns true or false. + def godeps? + !!name.match(/Godeps\//) + end + # Internal: Is the blob a generated php composer lock file? # # Returns true or false. diff --git a/test/test_blob.rb b/test/test_blob.rb index 47c6574c..7c5a756a 100644 --- a/test/test_blob.rb +++ b/test/test_blob.rb @@ -262,6 +262,10 @@ class TestBlob < Test::Unit::TestCase assert Linguist::Generated.generated?("node_modules/grunt/lib/grunt.js", nil) + + # Godep saved dependencies + assert blob("Godeps/Godeps.json").generated? + assert blob("Godeps/_workspace/src/github.com/kr/s3/sign.go").generated? end def test_vendored
  • ": 1, - "class=": 7, - "
    ": 1, - "
    ": 1, - "

    ": 1, - "@ViewData": 2, - ".": 3, - "

    ": 1, - "

    ": 1, - "

    ": 1, - "
    ": 1, - "

    ": 1, - "To": 1, - "learn": 1, - "more": 4, - "about": 2, - "ASP.NET": 5, - "MVC": 4, - "visit": 2, - "": 5, - "href=": 5, - "title=": 2, - "http": 1, - "//asp.net/mvc": 1, - "": 5, - "The": 1, - "page": 1, - "features": 3, - "": 1, - "videos": 1, - "tutorials": 1, - "and": 6, - "samples": 1, - "": 1, - "help": 1, - "you": 4, - "get": 1, - "most": 1, - "MVC.": 1, - "have": 1, - "any": 1, - "questions": 1, - "our": 1, - "forums": 1, - "

    ": 1, - "
    ": 1, - "